diff --git a/kits/point-proven/README.md b/kits/point-proven/README.md index f11ae4820..e3c573c66 100644 --- a/kits/point-proven/README.md +++ b/kits/point-proven/README.md @@ -1,3 +1,5 @@ +![Landing Page Image](./docs/landingPage.png) + # Point Proven Index debate sources and build a citation-backed brief with key claims, clash points, agreed points, themes, and per-source summaries. @@ -111,8 +113,8 @@ This contribution is a **kit**: two Lamatic flows plus a **Next.js app** under ` ### Run the app locally ```bash -cd kits/point-proven/apps -cp .env.example .env.local # fill flow IDs + Lamatic API credentials +cd kits/point-proven/ +cp .env.example .env.local; mv .env.local ./apps/ # fill flow IDs + Lamatic API credentials npm install npm run dev ``` @@ -229,6 +231,13 @@ curl -sS -X POST "$LAMATIC_API_URL/v1/flow/$SYNTHESIZE_DIGEST_FLOW_ID/execute" \ | `agent.md` | Agent identity and operational reference | | `apps/` | Next.js UI + `apps/.env.example` → copy to `apps/.env.local` | +## Desired output: +### Indexed Source +![Indexed Source](./docs/indexed_source.png) + +### Built Brief +![Built Brief](./docs/built_brief.png) + --- *Contribution type: `kit` (flows + `apps/`).* diff --git a/kits/point-proven/apps/.env.example b/kits/point-proven/apps/.env.example deleted file mode 100644 index 191cfe159..000000000 --- a/kits/point-proven/apps/.env.example +++ /dev/null @@ -1,16 +0,0 @@ -# Point Proven — local env (kit app) -# Copy this file to .env.local in this same folder (apps/), then fill in real values. -# cp .env.example .env.local -# -# Firecrawl, Vector DB, embedding model, and LLM are configured in Lamatic Studio -# on the flow nodes — not in this file. - -# Lamatic API (Studio → Project → Settings / API keys) -LAMATIC_API_URL="https://" -LAMATIC_PROJECT_ID="" -LAMATIC_API_KEY="" - -# Deployed flow IDs (Studio → each flow → URL .../flow/, after Deploy) -# Index flow API Request should use Response Type = async so localhost can poll. -INDEX_ARTICLES_FLOW_ID="" -SYNTHESIZE_DIGEST_FLOW_ID="" diff --git a/kits/point-proven/apps/app/page.tsx b/kits/point-proven/apps/app/page.tsx index cc41a1f05..757758fca 100644 --- a/kits/point-proven/apps/app/page.tsx +++ b/kits/point-proven/apps/app/page.tsx @@ -31,6 +31,10 @@ import { Search, Sparkles, } from "lucide-react"; +import { SiGithub } from "@icons-pack/react-simple-icons"; + +const GITHUB_KIT_URL = + "https://github.com/Lamatic/AgentKit/tree/main/kits/point-proven"; const SOURCE_BOX_TIP = "Paste https://… article URLs here, or pick one template below. Bubbles appear inside this box. Only one template can be active at a time — switching replaces the URLs. After you index, this box locks."; @@ -75,11 +79,10 @@ function TemplateToggles({ type="button" size="sm" variant={isActive ? "secondary" : "outline"} - className={`h-8 text-xs ${ - isActive - ? "pointer-events-none opacity-55 grayscale" - : "" - }`} + className={`h-8 text-xs ${isActive + ? "pointer-events-none opacity-55 grayscale" + : "" + }`} disabled={disabled || isActive} aria-pressed={isActive} onClick={() => onSelect(t)} @@ -141,11 +144,11 @@ export default function Home() { prev.map((c) => c.id === id ? { - ...c, - status: "checking", - message: "Checking…", - httpStatus: undefined, - } + ...c, + status: "checking", + message: "Checking…", + httpStatus: undefined, + } : c ) ); @@ -176,10 +179,10 @@ export default function Home() { prev.map((c) => c.id === id ? { - ...c, - status: "error", - message: e instanceof Error ? e.message : "Check failed", - } + ...c, + status: "error", + message: e instanceof Error ? e.message : "Check failed", + } : c ) ); @@ -299,11 +302,11 @@ export default function Home() { prev.map((c) => c.id === id ? { - ...c, - status: "error", - message: "Enter a valid https://… URL", - httpStatus: undefined, - } + ...c, + status: "error", + message: "Enter a valid https://… URL", + httpStatus: undefined, + } : c ) ); @@ -442,9 +445,9 @@ export default function Home() { const first = errors[0]; const msg = first && - typeof first === "object" && - first !== null && - "message" in first + typeof first === "object" && + first !== null && + "message" in first ? String((first as { message: unknown }).message) : "All URLs failed to index."; throw new Error(msg); @@ -507,9 +510,20 @@ export default function Home() {
-

- Point Proven -

+
+

+ Point Proven +

+ + + +

Index your sources, get a cited brief for debate prep

@@ -546,11 +560,10 @@ export default function Home() {
@@ -759,11 +772,10 @@ export default function Home() { setActiveTemplateId(null); } }} - className={`min-h-[100px] w-full rounded-lg border bg-background px-3 py-2 text-sm outline-none transition-colors placeholder:text-muted-foreground ${ - queryEditable - ? "hover:border-primary/40 focus:border-primary/50 focus:ring-2 focus:ring-ring/30" - : "cursor-not-allowed opacity-80" - }`} + className={`min-h-[100px] w-full rounded-lg border bg-background px-3 py-2 text-sm outline-none transition-colors placeholder:text-muted-foreground ${queryEditable + ? "hover:border-primary/40 focus:border-primary/50 focus:ring-2 focus:ring-ring/30" + : "cursor-not-allowed opacity-80" + }`} placeholder="e.g. Does export-control retaliation against AI labs violate free speech protections?" /> diff --git a/kits/point-proven/apps/package-lock.json b/kits/point-proven/apps/package-lock.json index dc36c9b78..024fca60d 100644 --- a/kits/point-proven/apps/package-lock.json +++ b/kits/point-proven/apps/package-lock.json @@ -8,6 +8,7 @@ "name": "point-proven", "version": "0.1.0", "dependencies": { + "@icons-pack/react-simple-icons": "^13.11.1", "@radix-ui/react-label": "2.1.1", "@radix-ui/react-scroll-area": "1.2.2", "@radix-ui/react-separator": "1.1.1", @@ -19,7 +20,7 @@ "isomorphic-dompurify": "^2.26.0", "lamatic": "0.3.2", "lucide-react": "^0.454.0", - "next": "^15.5.22", + "next": "^16.3.0", "next-themes": "^0.4.6", "react": "19.2.1", "react-dom": "19.2.1", @@ -32,7 +33,7 @@ "@types/react": "^19", "@types/react-dom": "^19", "eslint": "^9", - "eslint-config-next": "15.5.0", + "eslint-config-next": "16.3.0", "postcss": "^8.5", "tailwindcss": "^4.1.9", "tw-animate-css": "1.3.3", @@ -87,15 +88,6 @@ "lru-cache": "^11.2.6" } }, - "node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": { - "version": "11.5.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", - "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", - "license": "BlueOak-1.0.0", - "engines": { - "node": "20 || >=22" - } - }, "node_modules/@asamuzakjp/generational-cache": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@asamuzakjp/generational-cache/-/generational-cache-1.0.1.tgz", @@ -111,6 +103,289 @@ "integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==", "license": "MIT" }, + "node_modules/@babel/code-frame": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz", + "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.29.7", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz", + "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz", + "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helpers": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.8.tgz", + "integrity": "sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.8", + "@babel/types": "^7.29.8", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", + "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.29.7", + "@babel/helper-validator-option": "^7.29.7", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz", + "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", + "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz", + "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7", + "@babel/traverse": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz", + "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", + "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz", + "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz", + "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.8.tgz", + "integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.8" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz", + "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.8.tgz", + "integrity": "sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.8", + "@babel/helper-globals": "^7.29.7", + "@babel/parser": "^7.29.8", + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.8", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.8.tgz", + "integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@bramus/specificity": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/@bramus/specificity/-/specificity-2.4.2.tgz", @@ -270,9 +545,9 @@ } }, "node_modules/@emnapi/runtime": { - "version": "1.11.2", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.2.tgz", - "integrity": "sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==", + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.3.tgz", + "integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==", "license": "MIT", "optional": true, "dependencies": { @@ -517,6 +792,15 @@ "url": "https://github.com/sponsors/nzakas" } }, + "node_modules/@icons-pack/react-simple-icons": { + "version": "13.11.1", + "resolved": "https://registry.npmjs.org/@icons-pack/react-simple-icons/-/react-simple-icons-13.11.1.tgz", + "integrity": "sha512-WbwN/o7dUHEjDCJh2p3RvDZ4kZ8nhfUSkUSm0bWuPTXIsoKgDJpwD5UkMCG22R/5kZH6lHAZXwuHWsKNtX7fYA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.13 || ^17 || ^18 || ^19" + } + }, "node_modules/@img/colour": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", @@ -528,9 +812,9 @@ } }, "node_modules/@img/sharp-darwin-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", - "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.35.3.tgz", + "integrity": "sha512-RMnFX7YQsMoh7lWfcM4NEHHymBX/rLuKNPVM84XE9ONPcaSCDgE7CHIHpSgPcO2xcRthgBy1HfNO319mwhIAkg==", "cpu": [ "arm64" ], @@ -540,19 +824,19 @@ "darwin" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.2.4" + "@img/sharp-libvips-darwin-arm64": "1.3.2" } }, "node_modules/@img/sharp-darwin-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", - "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.35.3.tgz", + "integrity": "sha512-Xo+5uFBtLN0BKqieTxiFzFPQAUlBbbH5iBKyRX/z1JrbnYsHTfKJnUfL8+p2TPXr1pXqao4eeL4Rl144uDpK9w==", "cpu": [ "x64" ], @@ -562,19 +846,38 @@ "darwin" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.2.4" + "@img/sharp-libvips-darwin-x64": "1.3.2" + } + }, + "node_modules/@img/sharp-freebsd-wasm32": { + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-freebsd-wasm32/-/sharp-freebsd-wasm32-0.35.3.tgz", + "integrity": "sha512-lUxcqWIj2wMQ9BrwNjngcr1gWUr5xgaGThBRqPPalIC2n67Cqj1uPh8NnA/ZhAg8hUbKl+kVHKwgUIwe6ZYPrg==", + "license": "Apache-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "dependencies": { + "@img/sharp-wasm32": "0.35.3" + }, + "engines": { + "node": ">=20.9.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", - "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.3.2.tgz", + "integrity": "sha512-9J6ypZFpQBj4YnePGoq/S38w6nz+vqg5WZLrLGY4YuSemdMq47GMLBPO42MzwdGwpg/agZ7xzZcFHa48xlywfg==", "cpu": [ "arm64" ], @@ -588,9 +891,9 @@ } }, "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", - "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.3.2.tgz", + "integrity": "sha512-m2pW1n6cns9VaubNwsZ+c3CRYjxNQWgJ5gPlnL1nbBcpkBvFm6SCFN5o0psFHI8w9n11NKhFkeEDns98tiqbEw==", "cpu": [ "x64" ], @@ -604,9 +907,9 @@ } }, "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", - "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.3.2.tgz", + "integrity": "sha512-1eMLzy92I4J6rmi4mAT8yC3HxOtniyGELlzGbNMLLeqe052ahFQ0h6LFq+lh5DsDIdYViIDst08abvSbcEdLXQ==", "cpu": [ "arm" ], @@ -620,9 +923,9 @@ } }, "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", - "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.3.2.tgz", + "integrity": "sha512-dqVSFynCox4C/J8kT16V7SIFAns0IjgLwkvYT7p8LQVmJ5OS5b6tI9IGflxTeuBS//zXeFIUbwt5dwxyZ17cnA==", "cpu": [ "arm64" ], @@ -636,9 +939,9 @@ } }, "node_modules/@img/sharp-libvips-linux-ppc64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", - "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.3.2.tgz", + "integrity": "sha512-3z0NHDxD6n5I9gc05U1eW1AyRm+Gznzq3naMrthPNqE6oYykcogW0l/jfpJdjYnuNl8R7yI9pNbE1XiUeyq0Aw==", "cpu": [ "ppc64" ], @@ -652,9 +955,9 @@ } }, "node_modules/@img/sharp-libvips-linux-riscv64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", - "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.3.2.tgz", + "integrity": "sha512-bsb4rI+NldGOsXuej2r8OdSS8+zXDVaCWxyWrcv6kneTOlgAHtZABRzBBCwdsPiD90J4myNJuHpg6kA20ImW/w==", "cpu": [ "riscv64" ], @@ -668,9 +971,9 @@ } }, "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", - "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.3.2.tgz", + "integrity": "sha512-/ABshyj8gCpyIrNXnHn4LorDJ0HHm1VhXPBlxZ8zAtfVPAaSafXPGn+sUSIRiwaSBy0mmFjSjiXI5mkcwdChKQ==", "cpu": [ "s390x" ], @@ -684,9 +987,9 @@ } }, "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", - "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.3.2.tgz", + "integrity": "sha512-ITPEtgffGJ0S6G9dRyw/366tJQqFRcHWPHhC+Stpg3Z8AEMrDrTr2lhdz4f/Y/HMbRh//7Z5mBzEpVdi62Oc3w==", "cpu": [ "x64" ], @@ -700,9 +1003,9 @@ } }, "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", - "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.3.2.tgz", + "integrity": "sha512-zE9EdiUzUmg5mDT5a1rk5fYJ6GWPloTwWBYDS14naqHsL+EaMpDj1AWnpLgh3u0YCORv2Tt50wrcrpYqkP97Kw==", "cpu": [ "arm64" ], @@ -716,9 +1019,9 @@ } }, "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", - "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.3.2.tgz", + "integrity": "sha512-m0lrLiUt+lBYnCFr8qV/65yMR4E/c7/wf78I5eKTdkEakFAlZ9QlzEM3QIhhAwVeUhLAHLcCq7a7Vszq/oFNZQ==", "cpu": [ "x64" ], @@ -732,9 +1035,9 @@ } }, "node_modules/@img/sharp-linux-arm": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", - "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.35.3.tgz", + "integrity": "sha512-affVWCTLooy8TSxbDx2qkzuDeaWLNVBA+P//FNBirHsXpP2fuBhk5AuboYUnrDnzoXes8GFjpTx0SBFOCRg+FA==", "cpu": [ "arm" ], @@ -744,19 +1047,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.2.4" + "@img/sharp-libvips-linux-arm": "1.3.2" } }, "node_modules/@img/sharp-linux-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", - "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.35.3.tgz", + "integrity": "sha512-QgKDspHPnrU+GQ55XPhGwyhC8acLVOOSyAvo1oVfFmrIXLkDNmGWzAfDZ4xK8oSA1qBQrALcHX0G5UZni/SuFQ==", "cpu": [ "arm64" ], @@ -766,19 +1069,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.2.4" + "@img/sharp-libvips-linux-arm64": "1.3.2" } }, "node_modules/@img/sharp-linux-ppc64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", - "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.35.3.tgz", + "integrity": "sha512-sMd8rDxmpLOwv/7N44klFjOD5DUO7FLdjiXDI0hoxYaf7Ar262dQIEkosE98bps+5HPLtp/EvNqeqQtOycP/IA==", "cpu": [ "ppc64" ], @@ -788,19 +1091,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-ppc64": "1.2.4" + "@img/sharp-libvips-linux-ppc64": "1.3.2" } }, "node_modules/@img/sharp-linux-riscv64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", - "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.35.3.tgz", + "integrity": "sha512-0Eob78yjlYPfL5vMNWAW55l3R9Y6BQS/gOfe0ZcP9mEz9ohhKSt4im1hayiknXgf8AWrFqMvJcKIdmLmEe7yeQ==", "cpu": [ "riscv64" ], @@ -810,19 +1113,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-riscv64": "1.2.4" + "@img/sharp-libvips-linux-riscv64": "1.3.2" } }, "node_modules/@img/sharp-linux-s390x": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", - "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.35.3.tgz", + "integrity": "sha512-KgAxQ0DxpNOq1rG2t5cgTgShJFGSuU7XO45cqC+1NVOuZnP6tlgZRuSYOfNupGkHID0o3cJOsw4DVeJpMovcGw==", "cpu": [ "s390x" ], @@ -832,19 +1135,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.2.4" + "@img/sharp-libvips-linux-s390x": "1.3.2" } }, "node_modules/@img/sharp-linux-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", - "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.35.3.tgz", + "integrity": "sha512-8pqvxubL2PGdhlPy6GLqzDYMUjyRmKAwKHYKixpdJYBUK7PJ0C029XdsnpFIdgRZG68fZiGdHVWcKPvtiPB4cA==", "cpu": [ "x64" ], @@ -854,19 +1157,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.2.4" + "@img/sharp-libvips-linux-x64": "1.3.2" } }, "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", - "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.35.3.tgz", + "integrity": "sha512-Vz0iQjzzcSX3HCbfwFfCSG/9SCIqyO0mH2sXyiHaAYfBk0cRsCWXRyQYX0ovCK/PAQBbTzQ0dsPQHh5MAFL59w==", "cpu": [ "arm64" ], @@ -876,19 +1179,19 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + "@img/sharp-libvips-linuxmusl-arm64": "1.3.2" } }, "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", - "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.35.3.tgz", + "integrity": "sha512-6O1NPKcDVj9QEdg7Hx549EX8U0rp6yXQERqru6yRN7fGBn32UvIRJUlWnk+8xDCiG76hXVBbX82NZ/ZKr0euIg==", "cpu": [ "x64" ], @@ -898,38 +1201,54 @@ "linux" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + "@img/sharp-libvips-linuxmusl-x64": "1.3.2" } }, "node_modules/@img/sharp-wasm32": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", - "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.35.3.tgz", + "integrity": "sha512-cZ0XkcYGpHZkqW6iCkqTcmUC0CD9DhD5d/qeZlZkfRBn6GnHniZXLUo5+9xw8Iv76YE6LQFN9YNBlKREcCG76w==", + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.11.1" + }, + "engines": { + "node": ">=20.9.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-webcontainers-wasm32": { + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-webcontainers-wasm32/-/sharp-webcontainers-wasm32-0.35.3.tgz", + "integrity": "sha512-2rnq7bX3NzeR2T4YWgz8qiG4h3TSdMe+vN1iQXpJleSJ3SM5zQ8Fy2SyyXAWlbxpEZ2Y+Z4u1BePgJEYbSy80Q==", "cpu": [ "wasm32" ], - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "license": "Apache-2.0", "optional": true, "dependencies": { - "@emnapi/runtime": "^1.7.0" + "@img/sharp-wasm32": "0.35.3" }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" } }, "node_modules/@img/sharp-win32-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", - "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.35.3.tgz", + "integrity": "sha512-4bPwFdMbeC4JQ8L8LOyWp6nsHcboP5fxkp6iPOXz2Vg49R42TuMs2whkJ5OAP4/Ul035qOzy0AecOF9VOscn4w==", "cpu": [ "arm64" ], @@ -939,16 +1258,16 @@ "win32" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" } }, "node_modules/@img/sharp-win32-ia32": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", - "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.35.3.tgz", + "integrity": "sha512-r53mXsBN6lFUDiST764SvgwUdHAqM4rPAiDzAmf4fLoB6X/rkfyTrLCg6+g17wJJiCmB3JYgHuUldCWUIRFSXw==", "cpu": [ "ia32" ], @@ -958,16 +1277,16 @@ "win32" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": "^20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" } }, "node_modules/@img/sharp-win32-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", - "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.35.3.tgz", + "integrity": "sha512-D4y1vNeZrIIJCN+uHaWVtH86B+aCrdMYYjicy9pXHvbGZeGYLLSd3wdVuC37FxVXlU1ARsk84eKWfWMXGYEqvA==", "cpu": [ "x64" ], @@ -977,7 +1296,7 @@ "win32" ], "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" @@ -1034,44 +1353,80 @@ } }, "node_modules/@napi-rs/wasm-runtime": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz", - "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.2.2.tgz", + "integrity": "sha512-JfB4kuJQjaoHuCTseIINHtHWeJnvgEcxjwA5t/Y00ZgaOO1Crz3fjT/p8kT28zA/Caz7oiUMn3d6H2yOVCVwuw==", "dev": true, "license": "MIT", "optional": true, "dependencies": { "@tybys/wasm-util": "^0.10.3" }, + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=23.5.0" + }, "funding": { "type": "github", "url": "https://github.com/sponsors/Brooooooklyn" }, "peerDependencies": { - "@emnapi/core": "^1.7.1", - "@emnapi/runtime": "^1.7.1" + "@emnapi/core": "^1.7.1 || ^2.0.0-alpha.3", + "@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.3" } }, "node_modules/@next/env": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/env/-/env-15.5.22.tgz", - "integrity": "sha512-O5BlKb3KtsHkvO0gjjV66PuJnAgCtIEIzwkt50HRAHsQkU1t77eksIXSZV84/WMtZJjWrnDUPKHVRi0D62nSAA==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.3.0.tgz", + "integrity": "sha512-o9r1S0BNiNreHP9Vs+Qnqd9kviDkJh8xIACY7UFZSmiGbbQRzPBBosvHzAU4TULHOIuOj/18RSsyz2qrREmIFw==", "license": "MIT" }, "node_modules/@next/eslint-plugin-next": { - "version": "15.5.0", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.5.0.tgz", - "integrity": "sha512-+k83U/fST66eQBjTltX2T9qUYd43ntAe+NZ5qeZVTQyTiFiHvTLtkpLKug4AnZAtuI/lwz5tl/4QDJymjVkybg==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.3.0.tgz", + "integrity": "sha512-OqgJ8PN0d04KcPhDX/PTY5tJUJZxlbrt7O7FBsm4XE0XW2JDrKnDXsc9uo9WUimJGPoo2j+JRGhyXApC//mvbw==", "dev": true, "license": "MIT", "dependencies": { + "@eslint-community/eslint-utils": "4.9.1", "fast-glob": "3.3.1" } }, + "node_modules/@next/eslint-plugin-next/node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, "node_modules/@next/swc-darwin-arm64": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.5.22.tgz", - "integrity": "sha512-/VISwtffSg8+fVvBbXdglsvruCsdbBC4dG25iU6xascKVqfQKsj/OtjGnOEkIS7pX5GB9e9/r5QprpicsGL3gw==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.3.0.tgz", + "integrity": "sha512-55hpqq18bEVAlxedlTt3tFqZmKg2nUXT1kn1G/BGEy0R13h3LwtwHPVzzjG6P4LLeOHE32PFDQUVaJEWvBEZBw==", "cpu": [ "arm64" ], @@ -1085,9 +1440,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.5.22.tgz", - "integrity": "sha512-NiA9ve8hbiuhG/Q17a2mZDRVxMTtg3rTOgjLnDaLlE+AEPAQlkkuKrfePEbeOrgYmX0U2KGX4EVEn09hXU5GlQ==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.3.0.tgz", + "integrity": "sha512-SOi96kSaF5T+0wW4koiM1bWzSPwjzTesC1p3df+FjdOi5LIQkBK/blxh7HdoKnNuI4PURF1OO7TZqtfnbWDSgw==", "cpu": [ "x64" ], @@ -1101,9 +1456,9 @@ } }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.5.22.tgz", - "integrity": "sha512-vAPa9vltW+UW/KWtjXeSUFgV3wb1x9d/BeyC6WFI6eBpL0D2f70oGwtOp6193mNW3qusrpgBzMQferPf+Zh8Dw==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.3.0.tgz", + "integrity": "sha512-P0gZAoPMF4dyTRzhmkV4PrqVzSOB6t4mC1oI3c4dqijJ+OVEVx5clIXAKR4/uQpsqw2KKM/0D5tVumcR2r5blg==", "cpu": [ "arm64" ], @@ -1117,9 +1472,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.5.22.tgz", - "integrity": "sha512-iknK80pWlNDnkdSr13bd8mMuG3Z2oTxODwsZHvuMY7caMk77+rBLdHVWsy8v2EVa3ZojJ/+wJX5fnq8va6Gv8A==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.3.0.tgz", + "integrity": "sha512-tXXGKJw0m37O0eKJARVTX/TheKPhz0QFVtVVZXmOig+9YKLQOSP6hvf2pxv5DO7CLEJyTHx3Pg043CDQkv1G4Q==", "cpu": [ "arm64" ], @@ -1133,9 +1488,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.5.22.tgz", - "integrity": "sha512-penuEdkwU2OOAiS+n4LE8T/VIoCfAI01QcLZTJ2xc3+l4Q22L/DzURocmI2LU1b+8BMQoLAP1Sze3uYAZT05Bg==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.3.0.tgz", + "integrity": "sha512-pjGxK5EY7yWml78ALejFkWmgHsU7wbFQrISiugpH6FbUJhgEvw3xFZ/EBAtLl7QtL0WdQKiG9eWJ3mOKGTukHw==", "cpu": [ "x64" ], @@ -1149,9 +1504,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.5.22.tgz", - "integrity": "sha512-ZM0BKJm3FZ+guG6WT6PcyOLtp6paZ5tngcJC/uUKvLW4Y0TQnnVi1+UGdo8Q6Yxp5gaS82pmC1rD/oFlhkWB3g==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.3.0.tgz", + "integrity": "sha512-sjo++Xx+lomlPs3HRsHWhVDyGG6ms1kGW5EtHLERdII8AyG1i+f6aq68xHREO6AEMlhjTNEWBSmfJfqm9orf7g==", "cpu": [ "x64" ], @@ -1165,9 +1520,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.5.22.tgz", - "integrity": "sha512-rY/YaumrZaS0//94BnHLF5VSRp0GFUO4GvXNuoCBb0cGSci96yO+p1JaNL2aq9YZAYv9cuZRziV02x5IQH/wjg==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.3.0.tgz", + "integrity": "sha512-C5JSgiO54wURdaxdEUIXqkz04uMqC9UmPX1gtDrV/5Tf1UowdWYI8uA5hfFbPolTlp0q4KZ60xlHePNibf0VIw==", "cpu": [ "arm64" ], @@ -1181,9 +1536,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.5.22.tgz", - "integrity": "sha512-s5IA4cyrbR2XK/5NWcu5dp8CfPBiKME+UhvNperia7uQybEgg5+LIhGMiY37WQE4rcI4owsDcU4IVUjLoTuDkA==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.3.0.tgz", + "integrity": "sha512-fDOggsweNb5SSw0ZKVk6U+gxSyGFFlIBY/LBc1r8GUj4u/6t6oArL+Pmkg0MBnsgR+KkdsURilVH4F3GXUGepA==", "cpu": [ "x64" ], @@ -1603,13 +1958,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.16.1.tgz", - "integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==", - "dev": true, - "license": "MIT" - }, "node_modules/@swc/helpers": { "version": "0.5.15", "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", @@ -1620,49 +1968,49 @@ } }, "node_modules/@tailwindcss/node": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.2.tgz", - "integrity": "sha512-yWP/sqEcBLaD8JuA6zNwxoYKr75qxTioYwlRwekj5Jr/I5GXnoJfjetH/psLUIv74cYTH2lBUEzBkinthoYcBg==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz", + "integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/remapping": "^2.3.5", - "enhanced-resolve": "5.21.6", + "enhanced-resolve": "^5.24.1", "jiti": "^2.7.0", "lightningcss": "1.32.0", "magic-string": "^0.30.21", "source-map-js": "^1.2.1", - "tailwindcss": "4.3.2" + "tailwindcss": "4.3.3" } }, "node_modules/@tailwindcss/oxide": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.2.tgz", - "integrity": "sha512-z8ZgnzX8gdNoWLBLqBPoh/sjnxkwvf9ZuWjnO0l0yIzbLa5/9S+eC5QxGZKRobVHIC3/1BoMWjHblqWjcgFgag==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz", + "integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==", "dev": true, "license": "MIT", "engines": { "node": ">= 20" }, "optionalDependencies": { - "@tailwindcss/oxide-android-arm64": "4.3.2", - "@tailwindcss/oxide-darwin-arm64": "4.3.2", - "@tailwindcss/oxide-darwin-x64": "4.3.2", - "@tailwindcss/oxide-freebsd-x64": "4.3.2", - "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.2", - "@tailwindcss/oxide-linux-arm64-gnu": "4.3.2", - "@tailwindcss/oxide-linux-arm64-musl": "4.3.2", - "@tailwindcss/oxide-linux-x64-gnu": "4.3.2", - "@tailwindcss/oxide-linux-x64-musl": "4.3.2", - "@tailwindcss/oxide-wasm32-wasi": "4.3.2", - "@tailwindcss/oxide-win32-arm64-msvc": "4.3.2", - "@tailwindcss/oxide-win32-x64-msvc": "4.3.2" + "@tailwindcss/oxide-android-arm64": "4.3.3", + "@tailwindcss/oxide-darwin-arm64": "4.3.3", + "@tailwindcss/oxide-darwin-x64": "4.3.3", + "@tailwindcss/oxide-freebsd-x64": "4.3.3", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3", + "@tailwindcss/oxide-linux-arm64-gnu": "4.3.3", + "@tailwindcss/oxide-linux-arm64-musl": "4.3.3", + "@tailwindcss/oxide-linux-x64-gnu": "4.3.3", + "@tailwindcss/oxide-linux-x64-musl": "4.3.3", + "@tailwindcss/oxide-wasm32-wasi": "4.3.3", + "@tailwindcss/oxide-win32-arm64-msvc": "4.3.3", + "@tailwindcss/oxide-win32-x64-msvc": "4.3.3" } }, "node_modules/@tailwindcss/oxide-android-arm64": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.2.tgz", - "integrity": "sha512-WHxqIuHpvZ5VtdX6GTl1Ik/Vp2YuN42Et+0CdeaVd/frQ9jAvGmvR8vLT+jk3e8/Q3x8kECB9+R17pgpp2BulA==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz", + "integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==", "cpu": [ "arm64" ], @@ -1677,9 +2025,9 @@ } }, "node_modules/@tailwindcss/oxide-darwin-arm64": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.2.tgz", - "integrity": "sha512-GZypeUY/IDJW3877KeM+O67vbXr3MBnbtEL4aYhNErv/JWZhye2vGSWWG9tB6iiqR2MqRNkY8IOUy4NdSZV26w==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz", + "integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==", "cpu": [ "arm64" ], @@ -1694,9 +2042,9 @@ } }, "node_modules/@tailwindcss/oxide-darwin-x64": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.2.tgz", - "integrity": "sha512-UIIzmefR6KO1sDU7MzRqAxC8iBpft/VhkGjTjnhoS6k7Z3rQ9wEgA1ODSiyH/tcSYssulNm4Ci3hOeK1jH7ccQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz", + "integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==", "cpu": [ "x64" ], @@ -1711,9 +2059,9 @@ } }, "node_modules/@tailwindcss/oxide-freebsd-x64": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.2.tgz", - "integrity": "sha512-GN+uAmcI6DNspnCDwtOAZrTz6oukJnp337qZvxqCGLd3BHBzJpO0ZbTLRvJNdztOeAmTzewewGIMPb0tk2R4WA==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz", + "integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==", "cpu": [ "x64" ], @@ -1728,9 +2076,9 @@ } }, "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.2.tgz", - "integrity": "sha512-4ABn7qSbdHRwTiDiuWNegCyb5+2FJ4vKIKc3DmKrvAFw7MU1Lm11dIkTPwUaFdTzc7IsOpDbqBrlh0x6y36U/w==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz", + "integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==", "cpu": [ "arm" ], @@ -1745,9 +2093,9 @@ } }, "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.2.tgz", - "integrity": "sha512-wDgEIGwoM8w8pufh9LVt1PahDgNdKXrLC2qfAnV3vAmococ9RWbxeAw4pxPttd/TsJfwjyLf90Dg1y9y8I6Emw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz", + "integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==", "cpu": [ "arm64" ], @@ -1762,9 +2110,9 @@ } }, "node_modules/@tailwindcss/oxide-linux-arm64-musl": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.2.tgz", - "integrity": "sha512-J5Nuk0uZQIiMTJj3LEx4sAA9tMFUoXQZFv1J6An+QGYe53HKRJuFDi0rpq/tuouCZeAbOBY3kQ6g8qeD4TUjtA==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz", + "integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==", "cpu": [ "arm64" ], @@ -1779,9 +2127,9 @@ } }, "node_modules/@tailwindcss/oxide-linux-x64-gnu": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.2.tgz", - "integrity": "sha512-kqCZpSKOBEJO4mz7OqWoofBZeXTAwaVGPj0ErAj7CojmhKpWVWVOnrt9dE8odoIraZq4oj3ausM37kXi+Tow8w==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz", + "integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==", "cpu": [ "x64" ], @@ -1796,9 +2144,9 @@ } }, "node_modules/@tailwindcss/oxide-linux-x64-musl": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.2.tgz", - "integrity": "sha512-cixpqbh2toJDmkuCRI68nXA8ZxNmdK9Y+9v5h3MC3ZQKy/0BO8AWzlkWyRM7JAFSGBlfig4YVTPsK6MVgqz1uw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz", + "integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==", "cpu": [ "x64" ], @@ -1813,9 +2161,9 @@ } }, "node_modules/@tailwindcss/oxide-wasm32-wasi": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.2.tgz", - "integrity": "sha512-4ec2Z/LOmRsAgU23CS4xeJfcJlmRg94A/XrbGRCF1gyU/zdDfRLYDVsS+ynSZCmGNxQ1jQriQOKMQeQxBA3Isw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz", + "integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==", "bundleDependencies": [ "@napi-rs/wasm-runtime", "@emnapi/core", @@ -1842,76 +2190,10 @@ "node": ">=14.0.0" } }, - "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": { - "version": "1.11.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@emnapi/wasi-threads": "1.2.2", - "tslib": "^2.4.0" - } - }, - "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": { - "version": "1.11.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": { - "version": "1.2.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": { - "version": "1.1.4", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@tybys/wasm-util": "^0.10.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" - }, - "peerDependencies": { - "@emnapi/core": "^1.7.1", - "@emnapi/runtime": "^1.7.1" - } - }, - "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": { - "version": "0.10.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": { - "version": "2.8.1", - "dev": true, - "inBundle": true, - "license": "0BSD", - "optional": true - }, "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.2.tgz", - "integrity": "sha512-Zyr/M0+XcYZu3bZrUytc7TXvrk0ftWfl8gN2MwekNDzhqhKRUucMPSeOzM0o0wH5AWOU49BsKRrfKxI2atCPMQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz", + "integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==", "cpu": [ "arm64" ], @@ -1926,9 +2208,9 @@ } }, "node_modules/@tailwindcss/oxide-win32-x64-msvc": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.2.tgz", - "integrity": "sha512-QI9BO7KlNZsp2GuO0jwAAj5jCDABOKXRkCk2XuKTSaNEFSdfzqswYVTtCHBNKHLsqyjFyFkqlDiwkNbTYSssMQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz", + "integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==", "cpu": [ "x64" ], @@ -1943,17 +2225,17 @@ } }, "node_modules/@tailwindcss/postcss": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.2.tgz", - "integrity": "sha512-rjVWYCa7Ngbi5AarT6k8TkxUG3Wl1QKzHdIZVsjZSzf36Jmo2IKZt/NHRAwly8oDkbBOH0YTu+CHuf9jPxMc+g==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.3.tgz", + "integrity": "sha512-JTSZZGQi1AyKirbLN3azmjVzef92tcX7h+iSqPdaeStyFpGpDlKvvpxeOE8njhbUanbRwr3z8DyzhICWnMtQeg==", "dev": true, "license": "MIT", "dependencies": { "@alloc/quick-lru": "^5.2.0", - "@tailwindcss/node": "4.3.2", - "@tailwindcss/oxide": "4.3.2", - "postcss": "^8.5.15", - "tailwindcss": "4.3.2" + "@tailwindcss/node": "4.3.3", + "@tailwindcss/oxide": "4.3.3", + "postcss": "^8.5.16", + "tailwindcss": "4.3.3" } }, "node_modules/@tybys/wasm-util": { @@ -1999,9 +2281,9 @@ } }, "node_modules/@types/react": { - "version": "19.2.17", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz", - "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==", + "version": "19.2.18", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.18.tgz", + "integrity": "sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==", "devOptional": true, "license": "MIT", "dependencies": { @@ -2009,9 +2291,9 @@ } }, "node_modules/@types/react-dom": { - "version": "19.2.3", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", - "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-Bsc+QHgp+P/F02XDzNCY9jnZNCUuLki36KT7VKrTXXLdHf+vHMNZnW1rVu5DNW/rCK+fya3DATySbLM4yhtKUw==", "devOptional": true, "license": "MIT", "peerDependencies": { @@ -2653,9 +2935,9 @@ } }, "node_modules/acorn": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz", - "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.18.0.tgz", + "integrity": "sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==", "dev": true, "license": "MIT", "bin": { @@ -2928,9 +3210,9 @@ } }, "node_modules/axe-core": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.12.1.tgz", - "integrity": "sha512-s7iGf5GaVMxEG0ENN9x+xTr7GFZCb1ZP/1uATUpCEK2X78nDB3RwbtFCo9pGAf9ru+VwoQ464DkaLEeRM08wJA==", + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.13.0.tgz", + "integrity": "sha512-UzGt8zg7Ny8djbYMhxl2zuEevVa7r2gJjYY5Lwr1xM7+XU2nd6CkIWFTVcCIbAP63vSz71NaVyyuSk9lHKcy0A==", "dev": true, "license": "MPL-2.0", "engines": { @@ -2954,6 +3236,18 @@ "dev": true, "license": "MIT" }, + "node_modules/baseline-browser-mapping": { + "version": "2.11.12", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.11.12.tgz", + "integrity": "sha512-r7WnVImvVCeFpf2DOXfy41aPWzeNg3H/A2X4dKmy1QL0MSyyk/e7z8ihJ3N6Nn2PsdhkVlqnEfnUE4a05P2aTA==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/bidi-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", @@ -2987,6 +3281,40 @@ "node": ">=8" } }, + "node_modules/browserslist": { + "version": "4.28.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.7.tgz", + "integrity": "sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.44", + "caniuse-lite": "^1.0.30001806", + "electron-to-chromium": "^1.5.393", + "node-releases": "^2.0.51", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, "node_modules/call-bind": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", @@ -3138,6 +3466,13 @@ "dev": true, "license": "MIT" }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", @@ -3181,15 +3516,6 @@ "node": ">=20" } }, - "node_modules/cssstyle/node_modules/lru-cache": { - "version": "11.5.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", - "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", - "license": "BlueOak-1.0.0", - "engines": { - "node": "20 || >=22" - } - }, "node_modules/csstype": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", @@ -3361,9 +3687,9 @@ } }, "node_modules/dompurify": { - "version": "3.4.12", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.12.tgz", - "integrity": "sha512-zQvGet8Z2sWbQhCmfFz/T5QWH2oBmjnqK3qvOjaqaNLrLEF912WamU+ohnTp0TCep/MFVHpdJuCZEdFOdTnEFg==", + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.13.tgz", + "integrity": "sha512-2vmYIoqjze2d+kakP8S/nS5shfsl587kzwEjcGlTdiksUVgFHnFCsLYDVj/JNqJVOQZGSYBTmuycv0PodwmnMQ==", "license": "(MPL-2.0 OR Apache-2.0)", "optionalDependencies": { "@types/trusted-types": "^2.0.7" @@ -3384,6 +3710,13 @@ "node": ">= 0.4" } }, + "node_modules/electron-to-chromium": { + "version": "1.5.402", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.402.tgz", + "integrity": "sha512-/oOpMaPT6Yg+6/1XQhyIPlzgj7Ye9zf+nNM2Uh6OcE2G2oNptWazFa+qB2Pdqqbsc9KnIDzgAntoYN0dbwOXwA==", + "dev": true, + "license": "ISC" + }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -3392,9 +3725,9 @@ "license": "MIT" }, "node_modules/enhanced-resolve": { - "version": "5.21.6", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz", - "integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==", + "version": "5.24.5", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.5.tgz", + "integrity": "sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==", "dev": true, "license": "MIT", "dependencies": { @@ -3616,6 +3949,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", @@ -3690,25 +4033,24 @@ } }, "node_modules/eslint-config-next": { - "version": "15.5.0", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-15.5.0.tgz", - "integrity": "sha512-Yl4hlOdBqstAuHnlBfx2RimBzWQwysM2SJNu5EzYVa2qS2ItPs7lgxL0sJJDudEx5ZZHfWPZ/6U8+FtDFWs7/w==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.3.0.tgz", + "integrity": "sha512-lPrf1kHsMJEZqO0uXkNB400c5MGrhrTk3BNX7P0ol4gt61+iUlQfjy9TyIOEA9eOXrf+5+mYbT/JsY8+zqUByQ==", "dev": true, "license": "MIT", "dependencies": { - "@next/eslint-plugin-next": "15.5.0", - "@rushstack/eslint-patch": "^1.10.3", - "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "@next/eslint-plugin-next": "16.3.0", "eslint-import-resolver-node": "^0.3.6", "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jsx-a11y": "^6.10.0", "eslint-plugin-react": "^7.37.0", - "eslint-plugin-react-hooks": "^5.0.0" + "eslint-plugin-react-hooks": "^7.0.0", + "globals": "16.4.0", + "typescript-eslint": "^8.46.0" }, "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", + "eslint": ">=9.0.0", "typescript": ">=3.3.1" }, "peerDependenciesMeta": { @@ -3717,6 +4059,19 @@ } } }, + "node_modules/eslint-config-next/node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/eslint-import-resolver-node": { "version": "0.3.10", "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.10.tgz", @@ -3920,16 +4275,23 @@ } }, "node_modules/eslint-plugin-react-hooks": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", - "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz", + "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, "engines": { - "node": ">=10" + "node": ">=18" }, "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0" } }, "node_modules/eslint-plugin-react/node_modules/semver": { @@ -4155,9 +4517,9 @@ } }, "node_modules/flatted": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.3.tgz", - "integrity": "sha512-/zipXxyO6rGvuNGDiULY9MvEGSkb2gaG4GGH4ygMi0ZZzyMHdUZBmntJmx5x1G2VuPytCwGN4xsJP6cw+sK+vQ==", + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.4.tgz", + "integrity": "sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==", "dev": true, "license": "ISC" }, @@ -4231,6 +4593,16 @@ "node": ">= 0.4" } }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/get-intrinsic": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", @@ -4289,9 +4661,9 @@ } }, "node_modules/get-tsconfig": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz", - "integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==", + "version": "4.14.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.1.tgz", + "integrity": "sha512-Dz/6HxkrxgNehhxLVeyv8sad9UzF2xBVeaKBQNDfJ5XiSXmp2gTR0eO0RWiT2NCKS5aGP9jjkOMggTN90qU50A==", "dev": true, "license": "MIT", "dependencies": { @@ -4458,6 +4830,23 @@ "node": ">= 0.4" } }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, "node_modules/html-encoding-sniffer": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz", @@ -5035,9 +5424,9 @@ "license": "MIT" }, "node_modules/js-yaml": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz", - "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.1.tgz", + "integrity": "sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==", "dev": true, "funding": [ { @@ -5097,6 +5486,19 @@ } } }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", @@ -5118,6 +5520,19 @@ "dev": true, "license": "MIT" }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, "node_modules/jsx-ast-utils": { "version": "3.3.5", "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", @@ -5481,6 +5896,15 @@ "loose-envify": "cli.js" } }, + "node_modules/lru-cache": { + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } + }, "node_modules/lucide-react": { "version": "0.454.0", "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.454.0.tgz", @@ -5570,9 +5994,9 @@ "license": "MIT" }, "node_modules/nanoid": { - "version": "3.3.16", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz", - "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==", + "version": "3.3.17", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.17.tgz", + "integrity": "sha512-xQLf0A3HOMlgHq0n247/LRuAOYmB7dXJ/DvAxGvsSBij45XtBSmQycu+F8ODbHwns/XyFZagyL1+J0Offw1E0g==", "funding": [ { "type": "github", @@ -5611,33 +6035,34 @@ "license": "MIT" }, "node_modules/next": { - "version": "15.5.22", - "resolved": "https://registry.npmjs.org/next/-/next-15.5.22.tgz", - "integrity": "sha512-mrtal1sRxO4YrlDS98sDuIvGZivKbFix8w7oAL9ZynfOgc3cADQOQgvwtMooc18Qr8bKzvQAcHwHZ0mbJ7zcfQ==", + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/next/-/next-16.3.0.tgz", + "integrity": "sha512-NEdGOzH+08eTXMUp9UYkA99Nhi5N6Thrhc1jgFOQgfgnGK/dA2hRwBpXep+exdFQrnwlRf/3Wixyp8lLBUpE2A==", "license": "MIT", "dependencies": { - "@next/env": "15.5.22", + "@next/env": "16.3.0", "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", "caniuse-lite": "^1.0.30001579", - "postcss": "8.4.31", + "postcss": "8.5.23", "styled-jsx": "5.1.6" }, "bin": { "next": "dist/bin/next" }, "engines": { - "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" + "node": ">=20.9.0" }, "optionalDependencies": { - "@next/swc-darwin-arm64": "15.5.22", - "@next/swc-darwin-x64": "15.5.22", - "@next/swc-linux-arm64-gnu": "15.5.22", - "@next/swc-linux-arm64-musl": "15.5.22", - "@next/swc-linux-x64-gnu": "15.5.22", - "@next/swc-linux-x64-musl": "15.5.22", - "@next/swc-win32-arm64-msvc": "15.5.22", - "@next/swc-win32-x64-msvc": "15.5.22", - "sharp": "^0.34.3" + "@next/swc-darwin-arm64": "16.3.0", + "@next/swc-darwin-x64": "16.3.0", + "@next/swc-linux-arm64-gnu": "16.3.0", + "@next/swc-linux-arm64-musl": "16.3.0", + "@next/swc-linux-x64-gnu": "16.3.0", + "@next/swc-linux-x64-musl": "16.3.0", + "@next/swc-win32-arm64-msvc": "16.3.0", + "@next/swc-win32-x64-msvc": "16.3.0", + "sharp": "^0.35.3" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", @@ -5673,9 +6098,9 @@ } }, "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "version": "8.5.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.23.tgz", + "integrity": "sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==", "funding": [ { "type": "opencollective", @@ -5692,9 +6117,9 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "nanoid": "^3.3.16", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -5729,6 +6154,16 @@ "semver": "bin/semver.js" } }, + "node_modules/node-releases": { + "version": "2.0.53", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.53.tgz", + "integrity": "sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -6003,9 +6438,9 @@ } }, "node_modules/postcss": { - "version": "8.5.25", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.25.tgz", - "integrity": "sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==", + "version": "8.5.26", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.26.tgz", + "integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==", "dev": true, "funding": [ { @@ -6023,7 +6458,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.16", + "nanoid": "^3.3.17", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -6385,48 +6820,53 @@ } }, "node_modules/sharp": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", - "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", - "hasInstallScript": true, + "version": "0.35.3", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.35.3.tgz", + "integrity": "sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==", "license": "Apache-2.0", "optional": true, "dependencies": { - "@img/colour": "^1.0.0", + "@img/colour": "^1.1.0", "detect-libc": "^2.1.2", - "semver": "^7.7.3" + "semver": "^7.8.5" }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.9.0" }, "funding": { "url": "https://opencollective.com/libvips" }, "optionalDependencies": { - "@img/sharp-darwin-arm64": "0.34.5", - "@img/sharp-darwin-x64": "0.34.5", - "@img/sharp-libvips-darwin-arm64": "1.2.4", - "@img/sharp-libvips-darwin-x64": "1.2.4", - "@img/sharp-libvips-linux-arm": "1.2.4", - "@img/sharp-libvips-linux-arm64": "1.2.4", - "@img/sharp-libvips-linux-ppc64": "1.2.4", - "@img/sharp-libvips-linux-riscv64": "1.2.4", - "@img/sharp-libvips-linux-s390x": "1.2.4", - "@img/sharp-libvips-linux-x64": "1.2.4", - "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", - "@img/sharp-libvips-linuxmusl-x64": "1.2.4", - "@img/sharp-linux-arm": "0.34.5", - "@img/sharp-linux-arm64": "0.34.5", - "@img/sharp-linux-ppc64": "0.34.5", - "@img/sharp-linux-riscv64": "0.34.5", - "@img/sharp-linux-s390x": "0.34.5", - "@img/sharp-linux-x64": "0.34.5", - "@img/sharp-linuxmusl-arm64": "0.34.5", - "@img/sharp-linuxmusl-x64": "0.34.5", - "@img/sharp-wasm32": "0.34.5", - "@img/sharp-win32-arm64": "0.34.5", - "@img/sharp-win32-ia32": "0.34.5", - "@img/sharp-win32-x64": "0.34.5" + "@img/sharp-darwin-arm64": "0.35.3", + "@img/sharp-darwin-x64": "0.35.3", + "@img/sharp-freebsd-wasm32": "0.35.3", + "@img/sharp-libvips-darwin-arm64": "1.3.2", + "@img/sharp-libvips-darwin-x64": "1.3.2", + "@img/sharp-libvips-linux-arm": "1.3.2", + "@img/sharp-libvips-linux-arm64": "1.3.2", + "@img/sharp-libvips-linux-ppc64": "1.3.2", + "@img/sharp-libvips-linux-riscv64": "1.3.2", + "@img/sharp-libvips-linux-s390x": "1.3.2", + "@img/sharp-libvips-linux-x64": "1.3.2", + "@img/sharp-libvips-linuxmusl-arm64": "1.3.2", + "@img/sharp-libvips-linuxmusl-x64": "1.3.2", + "@img/sharp-linux-arm": "0.35.3", + "@img/sharp-linux-arm64": "0.35.3", + "@img/sharp-linux-ppc64": "0.35.3", + "@img/sharp-linux-riscv64": "0.35.3", + "@img/sharp-linux-s390x": "0.35.3", + "@img/sharp-linux-x64": "0.35.3", + "@img/sharp-linuxmusl-arm64": "0.35.3", + "@img/sharp-linuxmusl-x64": "0.35.3", + "@img/sharp-webcontainers-wasm32": "0.35.3", + "@img/sharp-win32-arm64": "0.35.3", + "@img/sharp-win32-ia32": "0.35.3", + "@img/sharp-win32-x64": "0.35.3" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } } }, "node_modules/shebang-command": { @@ -6761,9 +7201,9 @@ } }, "node_modules/tailwindcss": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.2.tgz", - "integrity": "sha512-WtctNNSH8A9jlMIqxzuYumOHU5uGZyRv0Q5svQl+oEPy5w84YpBxdb7MdqyiSPQge5jTJ6zFQLq0PFygdccSBA==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz", + "integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==", "dev": true, "license": "MIT" }, @@ -6830,21 +7270,21 @@ } }, "node_modules/tldts": { - "version": "7.4.9", - "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.9.tgz", - "integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==", + "version": "7.4.10", + "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.10.tgz", + "integrity": "sha512-GgouD1B+sWwvkaEq8vXC15DjQitxbvs12oIXELpconwm+Tg3zfcEv4jgzq3vtKverDXsg3VI8aRgNL2Nra0Iog==", "license": "MIT", "dependencies": { - "tldts-core": "^7.4.9" + "tldts-core": "^7.4.10" }, "bin": { "tldts": "bin/cli.js" } }, "node_modules/tldts-core": { - "version": "7.4.9", - "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.9.tgz", - "integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==", + "version": "7.4.10", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.10.tgz", + "integrity": "sha512-KnQjp53ZekKgm/r3l+u8kJGGzYgrWdP8+Mql7a4vijh2WE0IrZWspQj/TpTxDho/YxO+AnOZnIjQcCD+q6iJsw==", "license": "MIT" }, "node_modules/to-regex-range": { @@ -6910,19 +7350,6 @@ "strip-bom": "^3.0.0" } }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", @@ -7044,6 +7471,30 @@ "node": ">=14.17" } }, + "node_modules/typescript-eslint": { + "version": "8.66.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.66.0.tgz", + "integrity": "sha512-QlEbBPz/RuJ1XUHj29nm3t0F/O/cSlEnntozqPOYHnnTGAXFamnMBu5i9Vn6vhUPHGAjR+Vl+5J8vPN/BMUrJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.66.0", + "@typescript-eslint/parser": "8.66.0", + "@typescript-eslint/typescript-estree": "8.66.0", + "@typescript-eslint/utils": "8.66.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, "node_modules/unbox-primitive": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", @@ -7117,6 +7568,37 @@ "@unrs/resolver-binding-win32-x64-msvc": "1.12.2" } }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -7301,6 +7783,13 @@ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "license": "MIT" }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", @@ -7313,6 +7802,29 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } + }, + "node_modules/zod": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz", + "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } } } } diff --git a/kits/point-proven/apps/package.json b/kits/point-proven/apps/package.json index 1a2b487dd..6f9a267f7 100644 --- a/kits/point-proven/apps/package.json +++ b/kits/point-proven/apps/package.json @@ -9,6 +9,7 @@ "start": "next start" }, "dependencies": { + "@icons-pack/react-simple-icons": "^13.11.1", "@radix-ui/react-label": "2.1.1", "@radix-ui/react-scroll-area": "1.2.2", "@radix-ui/react-separator": "1.1.1", @@ -20,7 +21,7 @@ "isomorphic-dompurify": "^2.26.0", "lamatic": "0.3.2", "lucide-react": "^0.454.0", - "next": "^15.5.22", + "next": "^16.3.0", "next-themes": "^0.4.6", "react": "19.2.1", "react-dom": "19.2.1", @@ -33,7 +34,7 @@ "@types/react": "^19", "@types/react-dom": "^19", "eslint": "^9", - "eslint-config-next": "15.5.0", + "eslint-config-next": "16.3.0", "postcss": "^8.5", "tailwindcss": "^4.1.9", "tw-animate-css": "1.3.3", diff --git a/kits/point-proven/apps/tsconfig.json b/kits/point-proven/apps/tsconfig.json index 4542ef14c..e7065716d 100644 --- a/kits/point-proven/apps/tsconfig.json +++ b/kits/point-proven/apps/tsconfig.json @@ -13,7 +13,7 @@ "incremental": true, "module": "esnext", "esModuleInterop": true, - "moduleResolution": "node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "react-jsx", @@ -23,7 +23,9 @@ } ], "paths": { - "@/*": ["./*"] + "@/*": [ + "./*" + ] } }, "include": [ diff --git a/kits/point-proven/docs/built_brief.png b/kits/point-proven/docs/built_brief.png new file mode 100644 index 000000000..2db61479c Binary files /dev/null and b/kits/point-proven/docs/built_brief.png differ diff --git a/kits/point-proven/docs/indexed_source.png b/kits/point-proven/docs/indexed_source.png new file mode 100644 index 000000000..4394779a1 Binary files /dev/null and b/kits/point-proven/docs/indexed_source.png differ diff --git a/kits/point-proven/docs/landingPage.png b/kits/point-proven/docs/landingPage.png new file mode 100644 index 000000000..45276aa6c Binary files /dev/null and b/kits/point-proven/docs/landingPage.png differ diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json new file mode 100644 index 000000000..14e4c542d --- /dev/null +++ b/node_modules/.package-lock.json @@ -0,0 +1,26 @@ +{ + "name": "AgentKit", + "lockfileVersion": 3, + "requires": true, + "packages": { + "node_modules/@icons-pack/react-simple-icons": { + "version": "13.11.1", + "resolved": "https://registry.npmjs.org/@icons-pack/react-simple-icons/-/react-simple-icons-13.11.1.tgz", + "integrity": "sha512-WbwN/o7dUHEjDCJh2p3RvDZ4kZ8nhfUSkUSm0bWuPTXIsoKgDJpwD5UkMCG22R/5kZH6lHAZXwuHWsKNtX7fYA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.13 || ^17 || ^18 || ^19" + } + }, + "node_modules/react": { + "version": "19.2.8", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.8.tgz", + "integrity": "sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + } + } +} diff --git a/node_modules/@icons-pack/react-simple-icons/LICENSE b/node_modules/@icons-pack/react-simple-icons/LICENSE new file mode 100644 index 000000000..dedb9902d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/LICENSE @@ -0,0 +1,22 @@ + +MIT License (MIT) + +Copyright (c) 2019 Jorge Luis Calleja A. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/@icons-pack/react-simple-icons/README.md b/node_modules/@icons-pack/react-simple-icons/README.md new file mode 100644 index 000000000..c7388d3ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/README.md @@ -0,0 +1,102 @@ +
+ react simple icons + +# react-simple-icons + +This package provides the [Simple Icons 16.1.0](https://github.com/simple-icons/simple-icons/releases/tag/16.1.0) +packaged as a set of [React](https://facebook.github.io/react/) components. + + [![www.npmjs.com!](https://img.shields.io/npm/v/@icons-pack/react-simple-icons?color=CB061D&style=flat-square)](https://www.npmjs.com/package/@icons-pack/react-simple-icons) + [![downloads](https://img.shields.io/npm/dw/@icons-pack/react-simple-icons?color=087BB4&style=flat-square)](https://www.npmjs.com/package/@icons-pack/react-simple-icons) + [![license](https://img.shields.io/npm/l/@icons-pack/react-simple-icons?color=008660&style=flat-square)](https://github.com/icons-pack/react-simple-icons/blob/main/LICENSE) +
+ +## Installation + +Install the package in your project directory with: + +```shell +npm i @icons-pack/react-simple-icons +``` + +> TypeScript Support + +## Usage + +You can use [simpleicons.org](https://simpleicons.org) to find a specific icon. When importing an icon, keep in mind +that the names of the icons are [upperCamelCase](https://github.com/samverschueren/uppercamelcase) , for instance: + +- [`Material Design`](https://simpleicons.org/?q=material) is exposed as + `{ SiMaterialdesign } from @icons-pack/react-simple-icons` +- [`azure devOps`](https://simpleicons.org/?q=azure%20devOps) is exposed as + `{ SiAzuredevops } from @icons-pack/react-simple-icons` + +## Demo + +[Edit codesandbox](https://codesandbox.io/s/interesting-yonath-x7o7g?file=/src/App.js) + +## Basic example + +```jsx +import { SiReact } from '@icons-pack/react-simple-icons'; + +function BasicExample() { + return ; +} +``` + +## Change title + +`@icons-pack/react-simple-icons` provides a default title referring to the component name + +> The `` element provides an accessible, short-text description of any SVG container element or graphics element. + +```jsx +import { SiReact } from '@icons-pack/react-simple-icons'; + +// title default "React" +function ChangeTitle() { + return <SiReact title='My title' color='#61DAFB' size={24} />; +} +``` + +## Use default color + +Set color as `default` to use the default color for each icon + +```jsx +import { SiReact } from '@icons-pack/react-simple-icons'; + +function DefaultColorExample() { + return <SiReact color='default' size={24} />; +} +``` + +### Use default color as hex + +Append `Hex` to the icon name to use the default color as hex string + +```jsx +import { SiReact, SiReactHex } from '@icons-pack/react-simple-icons'; + +function DefaultColorExample() { + return <SiReact color={SiReactHex} size={24} />; +} +``` + +## Custom styles + +```jsx +import { SiReact } from '@icons-pack/react-simple-icons'; + +function CustomStyles() { + return <SiReact className='myStyle' />; +} +``` + +```css +.myStyle { + width: 35px; + height: 35px; +} +``` diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.cjs new file mode 100644 index 000000000..123b63964 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40AEF0"; +const Si1001tracklists = React__namespace.forwardRef(function Si1001tracklists2({ title = "1001Tracklists", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.0957 1.334v1.3457H6.7461v1.3457H5.3984V5.371H4.0488v1.3457H2.6992v6.6816H1.3496v1.3477H0v2.4512h1.3496v1.3457h1.3496v1.3457h2.457v-7.836H3.8067V7.8223h1.3497V6.4766h1.3496V5.1309h1.3496V3.7852h8.289v1.3457h1.3496v1.3457h1.3496v1.3457h1.3497v4.2304h-1.3497v7.836h2.457V18.543h1.3497v-1.3457H24V14.746h-1.3496v-1.3477h-1.3496V6.7168h-1.3496V5.3711h-1.3496V4.0254h-1.3477V2.6797h-1.3496V1.334Zm1.3711 8v1.3515H8.1113v3.8165h2.4688v-4.0567h2.9512v4.3477h-1.3555v1.3515h-1.3535v2.4649h2.4668v-2.7051H16v-5.2188h-1.3555V9.334Zm1.3555 10.8691v2.463h2.4668v-2.463z" }) + ] + } + ); +}); + +exports.default = Si1001tracklists; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.d.ts new file mode 100644 index 000000000..d75fd18e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40AEF0"; +declare const Si1001tracklists: IconType; +export { Si1001tracklists as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.mjs new file mode 100644 index 000000000..608355ad7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1001tracklists.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40AEF0"; +const Si1001tracklists = React.forwardRef(function Si1001tracklists2({ title = "1001Tracklists", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.0957 1.334v1.3457H6.7461v1.3457H5.3984V5.371H4.0488v1.3457H2.6992v6.6816H1.3496v1.3477H0v2.4512h1.3496v1.3457h1.3496v1.3457h2.457v-7.836H3.8067V7.8223h1.3497V6.4766h1.3496V5.1309h1.3496V3.7852h8.289v1.3457h1.3496v1.3457h1.3496v1.3457h1.3497v4.2304h-1.3497v7.836h2.457V18.543h1.3497v-1.3457H24V14.746h-1.3496v-1.3477h-1.3496V6.7168h-1.3496V5.3711h-1.3496V4.0254h-1.3477V2.6797h-1.3496V1.334Zm1.3711 8v1.3515H8.1113v3.8165h2.4688v-4.0567h2.9512v4.3477h-1.3555v1.3515h-1.3535v2.4649h2.4668v-2.7051H16v-5.2188h-1.3555V9.334Zm1.3555 10.8691v2.463h2.4668v-2.463z" }) + ] + } + ); +}); + +export { Si1001tracklists as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.cjs new file mode 100644 index 000000000..690d90a0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003D8F"; +const Si1and1 = React__namespace.forwardRef(function Si1and12({ title = "1&1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm11.717 5.792c1.564 0 2.671 1.04 2.671 2.468 0 1.044-.428 1.819-1.746 2.915l1.952 2.648c.163-.147.303-1.046.274-1.777-.003-.087-.022-.341-.04-.62h1.814c0 .244.024.595.024.683 0 1.426-.224 2.327-.909 3.198L17.2 17.22h-2.232l-.503-.678c-.823.659-1.546.905-2.713.898-2.284-.013-3.857-1.173-4.005-3.239-.089-1.235.737-2.506 2.32-3.42C9.049 9.477 8.84 9.025 8.84 8.207c0-1.392 1.191-2.415 2.878-2.415zm-9.424.134h4.064v11.296H4.1V7.735H2.293zm14.45 0h4.065v11.296H18.55V7.735h-1.807zm-5.036 1.49c-.545 0-.931.358-.931.845 0 .47.14.726.79 1.562.772-.557 1.058-1.075 1.058-1.58 0-.504-.354-.828-.917-.828zm-.517 4.811c-1.002.663-1.404 1.31-1.386 1.919.03.928.806 1.522 1.948 1.522.703 0 1.174-.257 1.579-.594z" }) + ] + } + ); +}); + +exports.default = Si1and1; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.d.ts new file mode 100644 index 000000000..9bf0b01ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003D8F"; +declare const Si1and1: IconType; +export { Si1and1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.mjs new file mode 100644 index 000000000..9a71816d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1and1.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003D8F"; +const Si1and1 = React.forwardRef(function Si1and12({ title = "1&1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm11.717 5.792c1.564 0 2.671 1.04 2.671 2.468 0 1.044-.428 1.819-1.746 2.915l1.952 2.648c.163-.147.303-1.046.274-1.777-.003-.087-.022-.341-.04-.62h1.814c0 .244.024.595.024.683 0 1.426-.224 2.327-.909 3.198L17.2 17.22h-2.232l-.503-.678c-.823.659-1.546.905-2.713.898-2.284-.013-3.857-1.173-4.005-3.239-.089-1.235.737-2.506 2.32-3.42C9.049 9.477 8.84 9.025 8.84 8.207c0-1.392 1.191-2.415 2.878-2.415zm-9.424.134h4.064v11.296H4.1V7.735H2.293zm14.45 0h4.065v11.296H18.55V7.735h-1.807zm-5.036 1.49c-.545 0-.931.358-.931.845 0 .47.14.726.79 1.562.772-.557 1.058-1.075 1.058-1.58 0-.504-.354-.828-.917-.828zm-.517 4.811c-1.002.663-1.404 1.31-1.386 1.919.03.928.806 1.522 1.948 1.522.703 0 1.174-.257 1.579-.594z" }) + ] + } + ); +}); + +export { Si1and1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.cjs new file mode 100644 index 000000000..4d52e10eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#221E68"; +const Si1dot1dot1dot1 = React__namespace.forwardRef(function Si1dot1dot1dot12({ title = "1.1.1.1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.389 0A5.377 5.377 0 0 0 0 5.389V18.61A5.377 5.377 0 0 0 5.389 24H18.61A5.377 5.377 0 0 0 24 18.611V5.39A5.377 5.377 0 0 0 18.611 0Zm11.546 4.595h.942v3.122h.69v.868h-.69v1.201h-1.001V8.585H14.68v-.964zm-6.07.589h2.523v14.842h-3.094V9.79H6.68V7.805c.95-.042 1.616-.103 1.997-.184.606-.13 1.1-.39 1.48-.779.26-.266.457-.62.592-1.064.077-.267.116-.464.116-.594Zm5.989.73L15.513 7.72h1.365V5.915Z" }) + ] + } + ); +}); + +exports.default = Si1dot1dot1dot1; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.d.ts new file mode 100644 index 000000000..e7c6d7072 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#221E68"; +declare const Si1dot1dot1dot1: IconType; +export { Si1dot1dot1dot1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.mjs new file mode 100644 index 000000000..342cd8f0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1dot1dot1dot1.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#221E68"; +const Si1dot1dot1dot1 = React.forwardRef(function Si1dot1dot1dot12({ title = "1.1.1.1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.389 0A5.377 5.377 0 0 0 0 5.389V18.61A5.377 5.377 0 0 0 5.389 24H18.61A5.377 5.377 0 0 0 24 18.611V5.39A5.377 5.377 0 0 0 18.611 0Zm11.546 4.595h.942v3.122h.69v.868h-.69v1.201h-1.001V8.585H14.68v-.964zm-6.07.589h2.523v14.842h-3.094V9.79H6.68V7.805c.95-.042 1.616-.103 1.997-.184.606-.13 1.1-.39 1.48-.779.26-.266.457-.62.592-1.064.077-.267.116-.464.116-.594Zm5.989.73L15.513 7.72h1.365V5.915Z" }) + ] + } + ); +}); + +export { Si1dot1dot1dot1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.cjs new file mode 100644 index 000000000..4714a6c73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0854C1"; +const Si1panel = React__namespace.forwardRef(function Si1panel2({ title = "1Panel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 0 10.349 6v12L12 24 1.651 18V6zm0 .326L1.897 6.158v11.664L12 23.653l10.103-5.831V6.158zM8.84 20.523l-5.801-3.349V6.826L12 1.653l2.23 1.287-8.925 5.195v7.73l5.792 3.345zm6.299-17.058 5.822 3.361v10.348L12 22.347l-2.274-1.312 8.969-5.17v-7.73l-5.823-3.362zm-2.137 3.35v2.869l.024 7.666-.691.384-2.18-1.249.008-6.801H8.958L8.95 8.351l3.412-1.965z" }) + ] + } + ); +}); + +exports.default = Si1panel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.d.ts new file mode 100644 index 000000000..9119a7439 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0854C1"; +declare const Si1panel: IconType; +export { Si1panel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.mjs new file mode 100644 index 000000000..d61ffb119 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1panel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0854C1"; +const Si1panel = React.forwardRef(function Si1panel2({ title = "1Panel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 0 10.349 6v12L12 24 1.651 18V6zm0 .326L1.897 6.158v11.664L12 23.653l10.103-5.831V6.158zM8.84 20.523l-5.801-3.349V6.826L12 1.653l2.23 1.287-8.925 5.195v7.73l5.792 3.345zm6.299-17.058 5.822 3.361v10.348L12 22.347l-2.274-1.312 8.969-5.17v-7.73l-5.823-3.362zm-2.137 3.35v2.869l.024 7.666-.691.384-2.18-1.249.008-6.801H8.958L8.95 8.351l3.412-1.965z" }) + ] + } + ); +}); + +export { Si1panel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1password.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1password.cjs new file mode 100644 index 000000000..c6223fb96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1password.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B66BC"; +const Si1password = React__namespace.forwardRef(function Si1password2({ title = "1Password", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .007C5.373.007 0 5.376 0 11.999c0 6.624 5.373 11.994 12 11.994S24 18.623 24 12C24 5.376 18.627.007 12 .007Zm-.895 4.857h1.788c.484 0 .729.002.914.096a.86.86 0 0 1 .377.377c.094.185.095.428.095.912v6.016c0 .12 0 .182-.015.238a.427.427 0 0 1-.067.137.923.923 0 0 1-.174.162l-.695.564c-.113.092-.17.138-.191.194a.216.216 0 0 0 0 .15c.02.055.078.101.191.193l.695.565c.094.076.14.115.174.162.03.042.053.087.067.137a.936.936 0 0 1 .015.238v2.746c0 .484-.001.727-.095.912a.86.86 0 0 1-.377.377c-.185.094-.43.096-.914.096h-1.788c-.484 0-.726-.002-.912-.096a.86.86 0 0 1-.377-.377c-.094-.185-.095-.428-.095-.912v-6.016c0-.12 0-.182.015-.238a.437.437 0 0 1 .067-.139c.034-.047.08-.083.174-.16l.695-.564c.113-.092.17-.138.191-.194a.216.216 0 0 0 0-.15c-.02-.055-.078-.101-.191-.193l-.695-.565a.92.92 0 0 1-.174-.162.437.437 0 0 1-.067-.139.92.92 0 0 1-.015-.236V6.25c0-.484.001-.727.095-.912a.86.86 0 0 1 .377-.377c.186-.094.428-.096.912-.096z" }) + ] + } + ); +}); + +exports.default = Si1password; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1password.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si1password.d.ts new file mode 100644 index 000000000..9ae36365f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1password.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B66BC"; +declare const Si1password: IconType; +export { Si1password as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si1password.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si1password.mjs new file mode 100644 index 000000000..cf6c250f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si1password.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B66BC"; +const Si1password = React.forwardRef(function Si1password2({ title = "1Password", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .007C5.373.007 0 5.376 0 11.999c0 6.624 5.373 11.994 12 11.994S24 18.623 24 12C24 5.376 18.627.007 12 .007Zm-.895 4.857h1.788c.484 0 .729.002.914.096a.86.86 0 0 1 .377.377c.094.185.095.428.095.912v6.016c0 .12 0 .182-.015.238a.427.427 0 0 1-.067.137.923.923 0 0 1-.174.162l-.695.564c-.113.092-.17.138-.191.194a.216.216 0 0 0 0 .15c.02.055.078.101.191.193l.695.565c.094.076.14.115.174.162.03.042.053.087.067.137a.936.936 0 0 1 .015.238v2.746c0 .484-.001.727-.095.912a.86.86 0 0 1-.377.377c-.185.094-.43.096-.914.096h-1.788c-.484 0-.726-.002-.912-.096a.86.86 0 0 1-.377-.377c-.094-.185-.095-.428-.095-.912v-6.016c0-.12 0-.182.015-.238a.437.437 0 0 1 .067-.139c.034-.047.08-.083.174-.16l.695-.564c.113-.092.17-.138.191-.194a.216.216 0 0 0 0-.15c-.02-.055-.078-.101-.191-.193l-.695-.565a.92.92 0 0 1-.174-.162.437.437 0 0 1-.067-.139.92.92 0 0 1-.015-.236V6.25c0-.484.001-.727.095-.912a.86.86 0 0 1 .377-.377c.186-.094.428-.096.912-.096z" }) + ] + } + ); +}); + +export { Si1password as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.cjs new file mode 100644 index 000000000..656a305a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC1C24"; +const Si2fas = React__namespace.forwardRef(function Si2fas2({ title = "2FAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.918 0-1.833.12-2.72.355L4.07 1.748a2.64 2.64 0 0 0-1.96 2.547v9.115a7.913 7.913 0 0 0 3.552 6.606l5.697 3.765a1.32 1.32 0 0 0 1.467-.008l5.572-3.752a7.931 7.931 0 0 0 3.493-6.57V4.295a2.638 2.638 0 0 0-1.961-2.547L14.72.355A10.594 10.594 0 0 0 12 0ZM7.383 5.4h9.228c.726 0 1.32.594 1.32 1.32 0 .734-.587 1.32-1.32 1.32H7.383c-.727 0-1.32-.593-1.32-1.32 0-.726.593-1.32 1.32-1.32zM7.38 9.357h3.299c.727 0 1.32.595 1.32 1.32a1.32 1.32 0 0 1-1.318 1.32H7.38c-.726 0-1.32-.592-1.32-1.32 0-.725.594-1.32 1.32-1.32zm0 3.96c.727 0 1.32.593 1.32 1.32 0 .727-.586 1.318-1.32 1.318-.726 0-1.32-.592-1.32-1.318 0-.727.594-1.32 1.32-1.32z" }) + ] + } + ); +}); + +exports.default = Si2fas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.d.ts new file mode 100644 index 000000000..1c8908aec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC1C24"; +declare const Si2fas: IconType; +export { Si2fas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.mjs new file mode 100644 index 000000000..eff5eb72c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si2fas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC1C24"; +const Si2fas = React.forwardRef(function Si2fas2({ title = "2FAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.918 0-1.833.12-2.72.355L4.07 1.748a2.64 2.64 0 0 0-1.96 2.547v9.115a7.913 7.913 0 0 0 3.552 6.606l5.697 3.765a1.32 1.32 0 0 0 1.467-.008l5.572-3.752a7.931 7.931 0 0 0 3.493-6.57V4.295a2.638 2.638 0 0 0-1.961-2.547L14.72.355A10.594 10.594 0 0 0 12 0ZM7.383 5.4h9.228c.726 0 1.32.594 1.32 1.32 0 .734-.587 1.32-1.32 1.32H7.383c-.727 0-1.32-.593-1.32-1.32 0-.726.593-1.32 1.32-1.32zM7.38 9.357h3.299c.727 0 1.32.595 1.32 1.32a1.32 1.32 0 0 1-1.318 1.32H7.38c-.726 0-1.32-.592-1.32-1.32 0-.725.594-1.32 1.32-1.32zm0 3.96c.727 0 1.32.593 1.32 1.32 0 .727-.586 1.318-1.32 1.318-.726 0-1.32-.592-1.32-1.318 0-.727.594-1.32 1.32-1.32z" }) + ] + } + ); +}); + +export { Si2fas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si2k.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si2k.cjs new file mode 100644 index 000000000..5be56565d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si2k.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD0700"; +const Si2k = React__namespace.forwardRef(function Si2k2({ title = "2K", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .002v23.997h24V.002H0Zm10.962 5.592c2.36 0 4.443.416 3.799 2.423-.434 1.365-2.017 1.918-3.114 2.109l-2.757.489c-.655.114-1.039.277-1.3.549h6.012l-.818 2.529 3.446-2.529h3.755l-4.091 2.772 2.07 4.402h-3.766l-1.082-2.754-1.197.826-.619 1.928H8.471l1.718-5.374h-6.25C4.874 10.2 6.891 9.36 8.731 8.989l2.264-.457c.387-.07.64-.259.736-.557.136-.416-.32-.581-.994-.581-.784 0-1.604.074-1.984 1.005H5.646c1.009-2.474 3.483-2.805 5.316-2.805Z" }) + ] + } + ); +}); + +exports.default = Si2k; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si2k.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si2k.d.ts new file mode 100644 index 000000000..f99f5eb0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si2k.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD0700"; +declare const Si2k: IconType; +export { Si2k as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si2k.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si2k.mjs new file mode 100644 index 000000000..c06f27f4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si2k.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD0700"; +const Si2k = React.forwardRef(function Si2k2({ title = "2K", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .002v23.997h24V.002H0Zm10.962 5.592c2.36 0 4.443.416 3.799 2.423-.434 1.365-2.017 1.918-3.114 2.109l-2.757.489c-.655.114-1.039.277-1.3.549h6.012l-.818 2.529 3.446-2.529h3.755l-4.091 2.772 2.07 4.402h-3.766l-1.082-2.754-1.197.826-.619 1.928H8.471l1.718-5.374h-6.25C4.874 10.2 6.891 9.36 8.731 8.989l2.264-.457c.387-.07.64-.259.736-.557.136-.416-.32-.581-.994-.581-.784 0-1.604.074-1.984 1.005H5.646c1.009-2.474 3.483-2.805 5.316-2.805Z" }) + ] + } + ); +}); + +export { Si2k as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.cjs new file mode 100644 index 000000000..00f7d983b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5395FD"; +const Si30secondsofcode = React__namespace.forwardRef(function Si30secondsofcode2({ title = "30 seconds of code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.895 12c0 .734-.593 1.328-1.324 1.328h-.58a6.666 6.666 0 0 1-.389 5.09 6.633 6.633 0 0 1-2.22 2.508 6.6 6.6 0 0 1-9.028-1.619l-.044-.06c-.47-.563-.397-1.4.163-1.872a1.32 1.32 0 0 1 1.864.164l.158.207a3.972 3.972 0 0 0 3.523 1.63 3.96 3.96 0 0 0 3.226-2.163A3.997 3.997 0 0 0 7.771 12 3.977 3.977 0 0 0 9.45 9.927a3.997 3.997 0 0 0-1.537-4.644 3.96 3.96 0 0 0-5.417.971l-.158.208a1.32 1.32 0 0 1-1.864.163A1.332 1.332 0 0 1 .31 4.754l.044-.061a6.622 6.622 0 0 1 2.583-2.128 6.595 6.595 0 0 1 6.446.51 6.634 6.634 0 0 1 2.22 2.506 6.662 6.662 0 0 1 .389 5.09h.58c.73 0 1.323.595 1.323 1.329Zm-.067 5.21a8.28 8.28 0 0 1-1.196 2.811 6.628 6.628 0 0 0 4.717 1.964A6.654 6.654 0 0 0 24 15.328V8.672a6.654 6.654 0 0 0-6.651-6.657c-1.844 0-3.513.75-4.717 1.964a8.28 8.28 0 0 1 1.196 2.81 3.99 3.99 0 0 1 7.511 1.883v6.656a3.992 3.992 0 0 1-7.51 1.883Z" }) + ] + } + ); +}); + +exports.default = Si30secondsofcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.d.ts new file mode 100644 index 000000000..1aab4ec51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5395FD"; +declare const Si30secondsofcode: IconType; +export { Si30secondsofcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.mjs new file mode 100644 index 000000000..446e113f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si30secondsofcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5395FD"; +const Si30secondsofcode = React.forwardRef(function Si30secondsofcode2({ title = "30 seconds of code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.895 12c0 .734-.593 1.328-1.324 1.328h-.58a6.666 6.666 0 0 1-.389 5.09 6.633 6.633 0 0 1-2.22 2.508 6.6 6.6 0 0 1-9.028-1.619l-.044-.06c-.47-.563-.397-1.4.163-1.872a1.32 1.32 0 0 1 1.864.164l.158.207a3.972 3.972 0 0 0 3.523 1.63 3.96 3.96 0 0 0 3.226-2.163A3.997 3.997 0 0 0 7.771 12 3.977 3.977 0 0 0 9.45 9.927a3.997 3.997 0 0 0-1.537-4.644 3.96 3.96 0 0 0-5.417.971l-.158.208a1.32 1.32 0 0 1-1.864.163A1.332 1.332 0 0 1 .31 4.754l.044-.061a6.622 6.622 0 0 1 2.583-2.128 6.595 6.595 0 0 1 6.446.51 6.634 6.634 0 0 1 2.22 2.506 6.662 6.662 0 0 1 .389 5.09h.58c.73 0 1.323.595 1.323 1.329Zm-.067 5.21a8.28 8.28 0 0 1-1.196 2.811 6.628 6.628 0 0 0 4.717 1.964A6.654 6.654 0 0 0 24 15.328V8.672a6.654 6.654 0 0 0-6.651-6.657c-1.844 0-3.513.75-4.717 1.964a8.28 8.28 0 0 1 1.196 2.81 3.99 3.99 0 0 1 7.511 1.883v6.656a3.992 3.992 0 0 1-7.51 1.883Z" }) + ] + } + ); +}); + +export { Si30secondsofcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.cjs new file mode 100644 index 000000000..b7ab3af69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000C1F"; +const Si365datascience = React__namespace.forwardRef(function Si365datascience2({ title = "365 Data Science", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.4995 13.6448v-.8577h.8188c.5752 0 1.183-.152 1.1905-.6681 0-.3178-.2587-.7385-1.1666-.7385-.5024 0-1.183.1746-1.183.6832h-1.07c0-1.1993 1.2156-1.6326 2.2605-1.6326 1.07 0 2.2204.5086 2.2291 1.6916a1.1716 1.1716 0 0 1-.7861 1.0876c.5425.1746.9243.6995.9243 1.168 0 1.3588-1.3049 1.7581-2.3987 1.7581-1.0938 0-2.3108-.4345-2.3183-1.6979h1.0775c0 .5727.7862.7711 1.2483.7711.5426 0 1.2647-.2223 1.2647-.8188 0-.3328-.1871-.746-1.2081-.746zm5.0083-1.4304v.8339c.2512-.3768.8666-.5878 1.3124-.5878 1.1428 0 2.3422.4685 2.3422 1.8512 0 1.232-1.207 1.8436-2.3497 1.8436-1.1429 0-2.3673-.6116-2.3673-1.8587V12.222c0-1.2395 1.168-1.8184 2.3346-1.8184 1.232 0 2.3259.476 2.3259 1.6439H9.0422c0-.4923-.628-.7385-1.2396-.7385-.6405-.0075-1.2885.3341-1.2885.9369zm2.5934 2.0973c0-.6116-.5677-.9369-1.281-.9369-.7133 0-1.3212.3177-1.3124.9369.0088.6191.6079.908 1.3049.908.6718 0 1.2885-.2964 1.2885-.908zm5.9967-2.8119h-3.063v.977h1.1013c1.2082 0 2.2857.4848 2.2781 1.7872 0 1.2633-1.0787 1.8674-2.2216 1.8674-1.247 0-2.317-.437-2.3258-1.7406h1.0637c0 .6129.7133.771 1.2483.771.535 0 1.1742-.2385 1.1742-.8978.0088-.628-.6279-.81-1.2156-.81h-2.1488v-2.94h4.1092zm7.9169-3.6897a.9494.9494 0 0 0-.4559 1.7808l-1.9252 4.7183a.9444.9444 0 0 0-.7988.0829l-2.047-2.3422a.9432.9432 0 0 0-.089-1.27.9431.9431 0 0 0-1.4105 1.2412.943.943 0 0 0 1.2483.2498l2.0458 2.3422a.9518.9518 0 0 0-.2072.5927.9491.9491 0 0 0 .2654.6936.9493.9493 0 0 0 1.5701-.3198.9491.9491 0 0 0 .062-.3738.9432.9432 0 0 0-.3427-.7296l1.949-4.7723a.8264.8264 0 0 0 .137.0101.9493.9493 0 0 0 .9083-.5775.9493.9493 0 0 0-.2148-1.0547.9495.9495 0 0 0-.6936-.2654Z" }) + ] + } + ); +}); + +exports.default = Si365datascience; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.d.ts new file mode 100644 index 000000000..c1d288688 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000C1F"; +declare const Si365datascience: IconType; +export { Si365datascience as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.mjs new file mode 100644 index 000000000..828c3259e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si365datascience.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000C1F"; +const Si365datascience = React.forwardRef(function Si365datascience2({ title = "365 Data Science", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.4995 13.6448v-.8577h.8188c.5752 0 1.183-.152 1.1905-.6681 0-.3178-.2587-.7385-1.1666-.7385-.5024 0-1.183.1746-1.183.6832h-1.07c0-1.1993 1.2156-1.6326 2.2605-1.6326 1.07 0 2.2204.5086 2.2291 1.6916a1.1716 1.1716 0 0 1-.7861 1.0876c.5425.1746.9243.6995.9243 1.168 0 1.3588-1.3049 1.7581-2.3987 1.7581-1.0938 0-2.3108-.4345-2.3183-1.6979h1.0775c0 .5727.7862.7711 1.2483.7711.5426 0 1.2647-.2223 1.2647-.8188 0-.3328-.1871-.746-1.2081-.746zm5.0083-1.4304v.8339c.2512-.3768.8666-.5878 1.3124-.5878 1.1428 0 2.3422.4685 2.3422 1.8512 0 1.232-1.207 1.8436-2.3497 1.8436-1.1429 0-2.3673-.6116-2.3673-1.8587V12.222c0-1.2395 1.168-1.8184 2.3346-1.8184 1.232 0 2.3259.476 2.3259 1.6439H9.0422c0-.4923-.628-.7385-1.2396-.7385-.6405-.0075-1.2885.3341-1.2885.9369zm2.5934 2.0973c0-.6116-.5677-.9369-1.281-.9369-.7133 0-1.3212.3177-1.3124.9369.0088.6191.6079.908 1.3049.908.6718 0 1.2885-.2964 1.2885-.908zm5.9967-2.8119h-3.063v.977h1.1013c1.2082 0 2.2857.4848 2.2781 1.7872 0 1.2633-1.0787 1.8674-2.2216 1.8674-1.247 0-2.317-.437-2.3258-1.7406h1.0637c0 .6129.7133.771 1.2483.771.535 0 1.1742-.2385 1.1742-.8978.0088-.628-.6279-.81-1.2156-.81h-2.1488v-2.94h4.1092zm7.9169-3.6897a.9494.9494 0 0 0-.4559 1.7808l-1.9252 4.7183a.9444.9444 0 0 0-.7988.0829l-2.047-2.3422a.9432.9432 0 0 0-.089-1.27.9431.9431 0 0 0-1.4105 1.2412.943.943 0 0 0 1.2483.2498l2.0458 2.3422a.9518.9518 0 0 0-.2072.5927.9491.9491 0 0 0 .2654.6936.9493.9493 0 0 0 1.5701-.3198.9491.9491 0 0 0 .062-.3738.9432.9432 0 0 0-.3427-.7296l1.949-4.7723a.8264.8264 0 0 0 .137.0101.9493.9493 0 0 0 .9083-.5775.9493.9493 0 0 0-.2148-1.0547.9495.9495 0 0 0-.6936-.2654Z" }) + ] + } + ); +}); + +export { Si365datascience as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si3m.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si3m.cjs new file mode 100644 index 000000000..cafbdda61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si3m.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const Si3m = React__namespace.forwardRef(function Si3m2({ title = "3M", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.903 5.954L17.17 13.03l-1.739-7.076h-5.099v2.613C9.72 6.28 7.56 5.706 5.558 5.674 3.12 5.641.563 6.701.469 9.936h3.373c0-.977.747-1.536 1.588-1.523 1.032-.008 1.508.434 1.533 1.124-.036.597-.387 1.014-1.525 1.014H4.303V12.9h1.03c.584 0 1.399.319 1.431 1.155.04.995-.652 1.435-1.501 1.443-1.517-.053-1.763-1.225-1.763-2.23H0c.015.677-.151 5.091 5.337 5.059 2.629.025 4.464-1.085 5.003-2.613v2.342h3.455v-7.632l1.867 7.634h3.018l1.875-7.626v7.634H24V5.954h-5.097zm-8.561 7.06c-.429-.893-1.034-1.284-1.376-1.407.714-.319 1.09-.751 1.376-1.614v3.021z" }) + ] + } + ); +}); + +exports.default = Si3m; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si3m.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si3m.d.ts new file mode 100644 index 000000000..8824f41c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si3m.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const Si3m: IconType; +export { Si3m as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si3m.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si3m.mjs new file mode 100644 index 000000000..95a308d41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si3m.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const Si3m = React.forwardRef(function Si3m2({ title = "3M", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.903 5.954L17.17 13.03l-1.739-7.076h-5.099v2.613C9.72 6.28 7.56 5.706 5.558 5.674 3.12 5.641.563 6.701.469 9.936h3.373c0-.977.747-1.536 1.588-1.523 1.032-.008 1.508.434 1.533 1.124-.036.597-.387 1.014-1.525 1.014H4.303V12.9h1.03c.584 0 1.399.319 1.431 1.155.04.995-.652 1.435-1.501 1.443-1.517-.053-1.763-1.225-1.763-2.23H0c.015.677-.151 5.091 5.337 5.059 2.629.025 4.464-1.085 5.003-2.613v2.342h3.455v-7.632l1.867 7.634h3.018l1.875-7.626v7.634H24V5.954h-5.097zm-8.561 7.06c-.429-.893-1.034-1.284-1.376-1.407.714-.319 1.09-.751 1.376-1.614v3.021z" }) + ] + } + ); +}); + +export { Si3m as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si42.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si42.cjs new file mode 100644 index 000000000..dc0e33490 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si42.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const Si42 = React__namespace.forwardRef(function Si422({ title = "42", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.581 16.851H24v-4.439ZM24 3.574h-4.419v4.42l-4.419 4.418v4.44h4.419v-4.44L24 7.993Zm-4.419 0h-4.419v4.42zm-6.324 8.838H4.419l8.838-8.838H8.838L0 12.412v3.595h8.838v4.419h4.419z" }) + ] + } + ); +}); + +exports.default = Si42; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si42.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si42.d.ts new file mode 100644 index 000000000..6c98c87ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si42.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const Si42: IconType; +export { Si42 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si42.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si42.mjs new file mode 100644 index 000000000..b309a6784 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si42.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const Si42 = React.forwardRef(function Si422({ title = "42", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.581 16.851H24v-4.439ZM24 3.574h-4.419v4.42l-4.419 4.418v4.44h4.419v-4.44L24 7.993Zm-4.419 0h-4.419v4.42zm-6.324 8.838H4.419l8.838-8.838H8.838L0 12.412v3.595h8.838v4.419h4.419z" }) + ] + } + ); +}); + +export { Si42 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.cjs new file mode 100644 index 000000000..db1fb9a82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006600"; +const Si4chan = React__namespace.forwardRef(function Si4chan2({ title = "4chan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.07 8.82S9.803 1.079 5.145 1.097C2.006 1.109.78 4.124 3.055 4.802c0 0-2.698.973-2.698 2.697 0 1.725 4.274 3.54 10.713 1.32zm1.931 5.924s.904 7.791 5.558 7.991c3.136.135 4.503-2.82 2.262-3.604 0 0 2.74-.845 2.82-2.567.08-1.723-4.105-3.737-10.64-1.82zm-3.672-1.55s-7.532 2.19-6.952 6.813c.39 3.114 3.53 3.969 3.93 1.63 0 0 1.29 2.559 3.002 2.351 1.712-.208 3-4.67.02-10.794zm5.623-2.467s7.727-1.35 7.66-6.008c-.046-3.138-3.074-4.333-3.728-2.051 0 0-1-2.686-2.726-2.668-1.724.018-3.494 4.312-1.206 10.727z" }) + ] + } + ); +}); + +exports.default = Si4chan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.d.ts new file mode 100644 index 000000000..9baca4122 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006600"; +declare const Si4chan: IconType; +export { Si4chan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.mjs new file mode 100644 index 000000000..509240bb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si4chan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006600"; +const Si4chan = React.forwardRef(function Si4chan2({ title = "4chan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.07 8.82S9.803 1.079 5.145 1.097C2.006 1.109.78 4.124 3.055 4.802c0 0-2.698.973-2.698 2.697 0 1.725 4.274 3.54 10.713 1.32zm1.931 5.924s.904 7.791 5.558 7.991c3.136.135 4.503-2.82 2.262-3.604 0 0 2.74-.845 2.82-2.567.08-1.723-4.105-3.737-10.64-1.82zm-3.672-1.55s-7.532 2.19-6.952 6.813c.39 3.114 3.53 3.969 3.93 1.63 0 0 1.29 2.559 3.002 2.351 1.712-.208 3-4.67.02-10.794zm5.623-2.467s7.727-1.35 7.66-6.008c-.046-3.138-3.074-4.333-3.728-2.051 0 0-1-2.686-2.726-2.668-1.724.018-3.494 4.312-1.206 10.727z" }) + ] + } + ); +}); + +export { Si4chan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si4d.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si4d.cjs new file mode 100644 index 000000000..757ca05d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si4d.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004088"; +const Si4d = React__namespace.forwardRef(function Si4d2({ title = "4D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.64 0v24H3.36V0h17.28zM10.49 11.827c-.115.138-5.882 6.789-5.983 6.9-.058.07-.187.194-.187.36 0 .153.187.208.36.208h4.4v-1.067H5.83c.49-.61 3.38-3.824 3.696-4.226v5.34c0 .194-.005.965-.043 1.602-.029.43-.13.637-.661.693-.23.027-.533.041-.662.041-.072 0-.115.083-.115.18 0 .097.072.167.23.167.777 0 1.539-.042 1.942-.042 1.236 0 2.646.097 3.178.097 2.618 0 4.099-.97 4.746-1.607.791-.776 1.539-2.093 1.539-3.81 0-1.622-.662-2.758-1.38-3.465-1.54-1.565-3.913-1.565-5.682-1.565-.56 0-1.035.027-1.064.027-.388.042-.345-.124-.59-.138-.158-.014-.258.055-.474.305zm1.898.443c1.108 0 2.719.166 4.027 1.372.604.554 1.367 1.676 1.367 3.408 0 1.414-.288 2.66-1.194 3.409-.849.706-1.812.984-3.265.984-1.122 0-1.683-.291-1.87-.54-.115-.153-.172-.694-.186-1.04 0-.097-.015-.29-.015-.568h1.021c.245 0 .317-.055.389-.18.1-.18.244-.735.244-.86 0-.11-.057-.166-.13-.166-.086 0-.273.139-.647.139h-.877v-5.584c0-.152.058-.222.173-.277.115-.056.676-.097.963-.097z" }) + ] + } + ); +}); + +exports.default = Si4d; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si4d.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si4d.d.ts new file mode 100644 index 000000000..55761c145 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si4d.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004088"; +declare const Si4d: IconType; +export { Si4d as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si4d.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si4d.mjs new file mode 100644 index 000000000..a51db7e72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si4d.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004088"; +const Si4d = React.forwardRef(function Si4d2({ title = "4D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.64 0v24H3.36V0h17.28zM10.49 11.827c-.115.138-5.882 6.789-5.983 6.9-.058.07-.187.194-.187.36 0 .153.187.208.36.208h4.4v-1.067H5.83c.49-.61 3.38-3.824 3.696-4.226v5.34c0 .194-.005.965-.043 1.602-.029.43-.13.637-.661.693-.23.027-.533.041-.662.041-.072 0-.115.083-.115.18 0 .097.072.167.23.167.777 0 1.539-.042 1.942-.042 1.236 0 2.646.097 3.178.097 2.618 0 4.099-.97 4.746-1.607.791-.776 1.539-2.093 1.539-3.81 0-1.622-.662-2.758-1.38-3.465-1.54-1.565-3.913-1.565-5.682-1.565-.56 0-1.035.027-1.064.027-.388.042-.345-.124-.59-.138-.158-.014-.258.055-.474.305zm1.898.443c1.108 0 2.719.166 4.027 1.372.604.554 1.367 1.676 1.367 3.408 0 1.414-.288 2.66-1.194 3.409-.849.706-1.812.984-3.265.984-1.122 0-1.683-.291-1.87-.54-.115-.153-.172-.694-.186-1.04 0-.097-.015-.29-.015-.568h1.021c.245 0 .317-.055.389-.18.1-.18.244-.735.244-.86 0-.11-.057-.166-.13-.166-.086 0-.273.139-.647.139h-.877v-5.584c0-.152.058-.222.173-.277.115-.056.676-.097.963-.097z" }) + ] + } + ); +}); + +export { Si4d as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si500px.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si500px.cjs new file mode 100644 index 000000000..2e6921b58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si500px.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const Si500px = React__namespace.forwardRef(function Si500px2({ title = "500px", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.451 8.9995A3.0005 3.0005 0 1 0 10.4514 12a3.0275 3.0275 0 0 0-3.0006-3.0005Zm0 5.371A2.3554 2.3554 0 1 1 9.7912 12a2.3704 2.3704 0 0 1-2.3404 2.3704Zm6.448-5.371A3.0005 3.0005 0 1 0 16.8997 12a3.0005 3.0005 0 0 0-3.0005-3.0005Zm0 5.371A2.3554 2.3554 0 1 1 16.2396 12a2.3314 2.3314 0 0 1-2.3404 2.3704zM2.29 10.7997a2.0224 2.0224 0 0 0-1.5903.42V9.6297h2.7005c.09 0 .15-.03.15-.3 0-.2701-.12-.2701-.18-.2701H.3997a.27.27 0 0 0-.27.27V11.97c0 .15.09.18.24.21a.228.228 0 0 0 .27-.06A1.7073 1.7073 0 0 1 2.14 11.4 1.5603 1.5603 0 0 1 3.4902 12.72 1.5183 1.5183 0 0 1 2.17 14.4004h-.18a1.5303 1.5303 0 0 1-1.4103-.9901c-.03-.09-.09-.15-.33-.06-.2401.09-.2701.15-.2401.24a2.1274 2.1274 0 0 0 2.7005 1.2602A2.1274 2.1274 0 0 0 3.9703 12.15 2.1004 2.1004 0 0 0 2.29 10.7998zm16.65-1.7703a1.6263 1.6263 0 0 0-1.4403 1.6203v2.6704c0 .15.12.18.3.18s.3001-.03.3001-.18v-2.6704a1.0082 1.0082 0 0 1 .8702-1.0202.9872.9872 0 0 1 .7501.24.9572.9572 0 0 1 .33.7202 1.2002 1.2002 0 0 1-.21.57A.9452.9452 0 0 1 19 11.55c-.12 0-.21 0-.24.27 0 .1801 0 .2701.15.3001a1.4763 1.4763 0 0 0 .8701-.18 1.6113 1.6113 0 0 0 .8702-1.2602 1.5543 1.5543 0 0 0-1.4463-1.6803.8311.8311 0 0 1-.264.03zm3.9307 1.5602 1.0802-1.0801c.03-.03.12-.12-.06-.3301a.3.3 0 0 0-.2101-.12.156.156 0 0 0-.12.06l-1.0802 1.0802-1.0802-1.1102c-.09-.09-.18-.06-.33.06-.15.12-.15.24-.06.33l1.0801 1.0802-1.0862 1.1102a.228.228 0 0 0-.06.12.252.252 0 0 0 .12.2101.483.483 0 0 0 .21.12.318.318 0 0 0 .1501-.06l1.0802-1.0802 1.0802 1.0802a.156.156 0 0 0 .12.06.3.3 0 0 0 .21-.12c.09-.12.12-.24.03-.3z" }) + ] + } + ); +}); + +exports.default = Si500px; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si500px.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si500px.d.ts new file mode 100644 index 000000000..d34677b60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si500px.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const Si500px: IconType; +export { Si500px as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si500px.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si500px.mjs new file mode 100644 index 000000000..59611e29e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si500px.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const Si500px = React.forwardRef(function Si500px2({ title = "500px", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.451 8.9995A3.0005 3.0005 0 1 0 10.4514 12a3.0275 3.0275 0 0 0-3.0006-3.0005Zm0 5.371A2.3554 2.3554 0 1 1 9.7912 12a2.3704 2.3704 0 0 1-2.3404 2.3704Zm6.448-5.371A3.0005 3.0005 0 1 0 16.8997 12a3.0005 3.0005 0 0 0-3.0005-3.0005Zm0 5.371A2.3554 2.3554 0 1 1 16.2396 12a2.3314 2.3314 0 0 1-2.3404 2.3704zM2.29 10.7997a2.0224 2.0224 0 0 0-1.5903.42V9.6297h2.7005c.09 0 .15-.03.15-.3 0-.2701-.12-.2701-.18-.2701H.3997a.27.27 0 0 0-.27.27V11.97c0 .15.09.18.24.21a.228.228 0 0 0 .27-.06A1.7073 1.7073 0 0 1 2.14 11.4 1.5603 1.5603 0 0 1 3.4902 12.72 1.5183 1.5183 0 0 1 2.17 14.4004h-.18a1.5303 1.5303 0 0 1-1.4103-.9901c-.03-.09-.09-.15-.33-.06-.2401.09-.2701.15-.2401.24a2.1274 2.1274 0 0 0 2.7005 1.2602A2.1274 2.1274 0 0 0 3.9703 12.15 2.1004 2.1004 0 0 0 2.29 10.7998zm16.65-1.7703a1.6263 1.6263 0 0 0-1.4403 1.6203v2.6704c0 .15.12.18.3.18s.3001-.03.3001-.18v-2.6704a1.0082 1.0082 0 0 1 .8702-1.0202.9872.9872 0 0 1 .7501.24.9572.9572 0 0 1 .33.7202 1.2002 1.2002 0 0 1-.21.57A.9452.9452 0 0 1 19 11.55c-.12 0-.21 0-.24.27 0 .1801 0 .2701.15.3001a1.4763 1.4763 0 0 0 .8701-.18 1.6113 1.6113 0 0 0 .8702-1.2602 1.5543 1.5543 0 0 0-1.4463-1.6803.8311.8311 0 0 1-.264.03zm3.9307 1.5602 1.0802-1.0801c.03-.03.12-.12-.06-.3301a.3.3 0 0 0-.2101-.12.156.156 0 0 0-.12.06l-1.0802 1.0802-1.0802-1.1102c-.09-.09-.18-.06-.33.06-.15.12-.15.24-.06.33l1.0801 1.0802-1.0862 1.1102a.228.228 0 0 0-.06.12.252.252 0 0 0 .12.2101.483.483 0 0 0 .21.12.318.318 0 0 0 .1501-.06l1.0802-1.0802 1.0802 1.0802a.156.156 0 0 0 .12.06.3.3 0 0 0 .21-.12c.09-.12.12-.24.03-.3z" }) + ] + } + ); +}); + +export { Si500px as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.cjs new file mode 100644 index 000000000..831620ea8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const Si7zip = React__namespace.forwardRef(function Si7zip2({ title = "7Zip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 18.858h24V8.181H10.717V5.142H0ZM2.021 7.271h6.657v1.994c-1.74 2.09-2.84 4.502-2.948 7.404H3.477c.09-2.501.353-4.954 2.283-6.994l.033-.033H2.021Zm8.45 1.253h13.215v10.143H10.47Zm6.01 1.213v6.871h1.482v-6.87Zm2.755.043v6.912h1.616v-2.42h1.029c.43-.001.754-.29.969-.716.427-.848.429-2.257-.024-3.092-.227-.419-.571-.697-1.033-.684zm-7.924.002v1.596h2.217l-2.304 3.736v1.54h4.287V15.1h-2.698l2.786-3.909v-1.41Zm9.452 1.512h.595c.164-.006.287.081.371.217.17.273.172.736.004.99a.364.364 0 0 1-.373.176l-.55.047z" }) + ] + } + ); +}); + +exports.default = Si7zip; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.d.ts new file mode 100644 index 000000000..b4fab2bfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const Si7zip: IconType; +export { Si7zip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.mjs new file mode 100644 index 000000000..43ef86f50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si7zip.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const Si7zip = React.forwardRef(function Si7zip2({ title = "7Zip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 18.858h24V8.181H10.717V5.142H0ZM2.021 7.271h6.657v1.994c-1.74 2.09-2.84 4.502-2.948 7.404H3.477c.09-2.501.353-4.954 2.283-6.994l.033-.033H2.021Zm8.45 1.253h13.215v10.143H10.47Zm6.01 1.213v6.871h1.482v-6.87Zm2.755.043v6.912h1.616v-2.42h1.029c.43-.001.754-.29.969-.716.427-.848.429-2.257-.024-3.092-.227-.419-.571-.697-1.033-.684zm-7.924.002v1.596h2.217l-2.304 3.736v1.54h4.287V15.1h-2.698l2.786-3.909v-1.41Zm9.452 1.512h.595c.164-.006.287.081.371.217.17.273.172.736.004.99a.364.364 0 0 1-.373.176l-.55.047z" }) + ] + } + ); +}); + +export { Si7zip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.cjs new file mode 100644 index 000000000..133b94c70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE5F50"; +const Si99designs = React__namespace.forwardRef(function Si99designs2({ title = "99designs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.6504 13.7786c0 1.163-.943 2.1059-2.1059 2.1059-1.163 0-2.1059-.943-2.1059-2.1059 0-1.163.943-2.1059 2.1059-2.1059 1.163 0 2.1059.943 2.1059 2.106zm-7.557-3.5718c0 1.0842-.8775 2.0229-2.0228 2.0229-1.117 0-2.0231-.9059-2.0231-2.0229s.906-2.0231 2.0231-2.0231c1.117 0 2.0229.906 2.0229 2.0231zm-7.6605 0c0 1.0822-.8759 2.0229-2.0231 2.0229-1.117 0-2.0228-.9059-2.0228-2.0229s.9058-2.0231 2.0228-2.0231 2.0231.906 2.0231 2.0231zm11.008 7.663c.9166.3985 2.2434.466 3.1223.0578.392-.182.7534-.4776 1.0847-.8858v.8776H24V6.0624h-2.4847v4.2717c-.707-.6853-1.4491-.9773-2.451-.9773-1.0589 0-1.9244.3524-2.5844.9162.0003-.0221.0006-.044.0006-.0662 0-2.435-1.9751-4.4098-4.4099-4.4098-1.6397 0-3.0704.8951-3.8305 2.2236C7.4803 6.692 6.0493 5.797 4.4098 5.797 1.9748 5.797 0 7.7718 0 10.2068c0 2.3312 1.81 4.2403 4.101 4.399L2.188 17.9193H5.057c1.061-1.8422 2.1222-3.6844 3.1831-5.5266.712 1.244 2.0124 2.1083 3.5216 2.213l-1.913 3.3136h2.8688l2.2372-3.8842c.0665 1.5842.868 3.1305 2.4863 3.8345" }) + ] + } + ); +}); + +exports.default = Si99designs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.d.ts new file mode 100644 index 000000000..c1affeb80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE5F50"; +declare const Si99designs: IconType; +export { Si99designs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.mjs new file mode 100644 index 000000000..bf7683d31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si99designs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE5F50"; +const Si99designs = React.forwardRef(function Si99designs2({ title = "99designs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.6504 13.7786c0 1.163-.943 2.1059-2.1059 2.1059-1.163 0-2.1059-.943-2.1059-2.1059 0-1.163.943-2.1059 2.1059-2.1059 1.163 0 2.1059.943 2.1059 2.106zm-7.557-3.5718c0 1.0842-.8775 2.0229-2.0228 2.0229-1.117 0-2.0231-.9059-2.0231-2.0229s.906-2.0231 2.0231-2.0231c1.117 0 2.0229.906 2.0229 2.0231zm-7.6605 0c0 1.0822-.8759 2.0229-2.0231 2.0229-1.117 0-2.0228-.9059-2.0228-2.0229s.9058-2.0231 2.0228-2.0231 2.0231.906 2.0231 2.0231zm11.008 7.663c.9166.3985 2.2434.466 3.1223.0578.392-.182.7534-.4776 1.0847-.8858v.8776H24V6.0624h-2.4847v4.2717c-.707-.6853-1.4491-.9773-2.451-.9773-1.0589 0-1.9244.3524-2.5844.9162.0003-.0221.0006-.044.0006-.0662 0-2.435-1.9751-4.4098-4.4099-4.4098-1.6397 0-3.0704.8951-3.8305 2.2236C7.4803 6.692 6.0493 5.797 4.4098 5.797 1.9748 5.797 0 7.7718 0 10.2068c0 2.3312 1.81 4.2403 4.101 4.399L2.188 17.9193H5.057c1.061-1.8422 2.1222-3.6844 3.1831-5.5266.712 1.244 2.0124 2.1083 3.5216 2.213l-1.913 3.3136h2.8688l2.2372-3.8842c.0665 1.5842.868 3.1305 2.4863 3.8345" }) + ] + } + ); +}); + +export { Si99designs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.cjs b/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.cjs new file mode 100644 index 000000000..505d8607f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const Si9gag = React__namespace.forwardRef(function Si9gag2({ title = "9GAG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.279 21.008 5.193-2.995V5.992l-5.193-2.996C14.423 1.348 12.048 0 12 0c-.048 0-2.423 1.348-5.279 2.996L1.528 5.992v2.354l5.193 2.996c2.856 1.648 5.232 2.996 5.28 2.996.048 0 1.469-.797 3.157-1.772a229.633 229.633 0 0 1 3.097-1.772c.016 0 .027 1.096.027 2.437l-.002 2.436-3.076 1.772c-1.692.975-3.115 1.783-3.163 1.795-.048.013-1.471-.776-3.162-1.752-1.69-.976-3.113-1.775-3.161-1.775-.155 0-4.036 2.274-4.011 2.35.031.093 10.136 5.937 10.276 5.943.057.002 2.44-1.344 5.296-2.992ZM9.847 8.391c-1.118-.65-2.033-1.2-2.033-1.222 0-.071 4.06-2.376 4.186-2.376.125 0 4.186 2.305 4.186 2.376 0 .063-4.047 2.375-4.184 2.39-.068.007-1.037-.519-2.155-1.168Z" }) + ] + } + ); +}); + +exports.default = Si9gag; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.d.ts new file mode 100644 index 000000000..13a5c953c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const Si9gag: IconType; +export { Si9gag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.mjs b/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.mjs new file mode 100644 index 000000000..44f205f9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/Si9gag.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const Si9gag = React.forwardRef(function Si9gag2({ title = "9GAG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.279 21.008 5.193-2.995V5.992l-5.193-2.996C14.423 1.348 12.048 0 12 0c-.048 0-2.423 1.348-5.279 2.996L1.528 5.992v2.354l5.193 2.996c2.856 1.648 5.232 2.996 5.28 2.996.048 0 1.469-.797 3.157-1.772a229.633 229.633 0 0 1 3.097-1.772c.016 0 .027 1.096.027 2.437l-.002 2.436-3.076 1.772c-1.692.975-3.115 1.783-3.163 1.795-.048.013-1.471-.776-3.162-1.752-1.69-.976-3.113-1.775-3.161-1.775-.155 0-4.036 2.274-4.011 2.35.031.093 10.136 5.937 10.276 5.943.057.002 2.44-1.344 5.296-2.992ZM9.847 8.391c-1.118-.65-2.033-1.2-2.033-1.222 0-.071 4.06-2.376 4.186-2.376.125 0 4.186 2.305 4.186 2.376 0 .063-4.047 2.375-4.184 2.39-.068.007-1.037-.519-2.155-1.168Z" }) + ] + } + ); +}); + +export { Si9gag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.cjs new file mode 100644 index 000000000..44a01d834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF000F"; +const SiAbb = React__namespace.forwardRef(function SiAbb2({ title = "ABB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.086 16.594v-4.427h3.035c.25.418.362.947.362 1.476 0 1.559-1.17 2.867-2.84 2.951zm-.279-4.455v4.455h-2.784v-4.455zm3.147-.278h-2.868V7.406h.668c1.086 0 1.949.863 1.949 1.949 0 .64-.334 1.225-.835 1.587.417.223.807.529 1.086.919m-3.147-4.455v4.455h-2.784V7.406zm7.796 9.188v-4.427h3.035c.251.418.362.947.362 1.476 0 1.559-1.169 2.867-2.84 2.951zm-.278-4.455v4.455h-2.784v-4.455zm3.146-.278h-2.868V7.406h.668c1.086 0 1.949.863 1.949 1.949 0 .64-.334 1.225-.835 1.587.418.223.808.529 1.086.919m-3.146-4.455v4.455h-2.784V7.406zM1.587 12.139h2.868v2.506H2.979l-.668 1.949H0zm2.868-4.733v4.455H1.671l1.587-4.455zm.278 7.239v-2.506h2.868l1.587 4.455H6.877l-.668-1.949zm2.784-2.784H4.733V7.406H5.93z" }) + ] + } + ); +}); + +exports.default = SiAbb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.d.ts new file mode 100644 index 000000000..df95a6cd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF000F"; +declare const SiAbb: IconType; +export { SiAbb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.mjs new file mode 100644 index 000000000..649cf7ffb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF000F"; +const SiAbb = React.forwardRef(function SiAbb2({ title = "ABB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.086 16.594v-4.427h3.035c.25.418.362.947.362 1.476 0 1.559-1.17 2.867-2.84 2.951zm-.279-4.455v4.455h-2.784v-4.455zm3.147-.278h-2.868V7.406h.668c1.086 0 1.949.863 1.949 1.949 0 .64-.334 1.225-.835 1.587.417.223.807.529 1.086.919m-3.147-4.455v4.455h-2.784V7.406zm7.796 9.188v-4.427h3.035c.251.418.362.947.362 1.476 0 1.559-1.169 2.867-2.84 2.951zm-.278-4.455v4.455h-2.784v-4.455zm3.146-.278h-2.868V7.406h.668c1.086 0 1.949.863 1.949 1.949 0 .64-.334 1.225-.835 1.587.418.223.808.529 1.086.919m-3.146-4.455v4.455h-2.784V7.406zM1.587 12.139h2.868v2.506H2.979l-.668 1.949H0zm2.868-4.733v4.455H1.671l1.587-4.455zm.278 7.239v-2.506h2.868l1.587 4.455H6.877l-.668-1.949zm2.784-2.784H4.733V7.406H5.93z" }) + ] + } + ); +}); + +export { SiAbb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.cjs new file mode 100644 index 000000000..1ada162d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008FC7"; +const SiAbbott = React__namespace.forwardRef(function SiAbbott2({ title = "Abbott", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.812 2.4H0v3.197h19.773V5.6a1.03 1.03 0 0 1 1.032 1.031v10.742l-.004.007a1.034 1.034 0 0 1-1.034 1.025H4.23c-.569 0-1.033-.46-1.033-1.033v-4.34c0-.57.464-1.032 1.033-1.032H17.6V8.803H3.188A3.185 3.185 0 0 0 0 11.99v6.423A3.188 3.188 0 0 0 3.188 21.6h17.624A3.187 3.187 0 0 0 24 18.412V5.587A3.186 3.186 0 0 0 20.812 2.4" }) + ] + } + ); +}); + +exports.default = SiAbbott; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.d.ts new file mode 100644 index 000000000..b6bfe1d12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008FC7"; +declare const SiAbbott: IconType; +export { SiAbbott as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.mjs new file mode 100644 index 000000000..bbf80880b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbott.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008FC7"; +const SiAbbott = React.forwardRef(function SiAbbott2({ title = "Abbott", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.812 2.4H0v3.197h19.773V5.6a1.03 1.03 0 0 1 1.032 1.031v10.742l-.004.007a1.034 1.034 0 0 1-1.034 1.025H4.23c-.569 0-1.033-.46-1.033-1.033v-4.34c0-.57.464-1.032 1.033-1.032H17.6V8.803H3.188A3.185 3.185 0 0 0 0 11.99v6.423A3.188 3.188 0 0 0 3.188 21.6h17.624A3.187 3.187 0 0 0 24 18.412V5.587A3.186 3.186 0 0 0 20.812 2.4" }) + ] + } + ); +}); + +export { SiAbbott as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.cjs new file mode 100644 index 000000000..7b191096e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#071D49"; +const SiAbbvie = React__namespace.forwardRef(function SiAbbvie2({ title = "Abbvie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.186 20.17c-1.533 0-2.14-.612-2.347-1.838l-.406-1.74c-.413.72-2.453 3.579-6.945 3.579H8.89C1.94 20.17 0 15.467 0 12c0-3.885 2.347-8.17 8.884-8.17h4.905c5.005 0 7.759 2.853 8.372 6.431.512 2.96 1.839 9.91 1.839 9.91zM13.076 6.378h-3.88c-4.698 0-6.231 2.965-6.231 5.623 0 2.653 1.533 5.618 6.236 5.618h3.875c4.904 0 6.236-3.065 6.236-5.618 0-2.246-1.231-5.618-6.236-5.618z" }) + ] + } + ); +}); + +exports.default = SiAbbvie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.d.ts new file mode 100644 index 000000000..23490339c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#071D49"; +declare const SiAbbvie: IconType; +export { SiAbbvie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.mjs new file mode 100644 index 000000000..e9315464e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbbvie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#071D49"; +const SiAbbvie = React.forwardRef(function SiAbbvie2({ title = "Abbvie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.186 20.17c-1.533 0-2.14-.612-2.347-1.838l-.406-1.74c-.413.72-2.453 3.579-6.945 3.579H8.89C1.94 20.17 0 15.467 0 12c0-3.885 2.347-8.17 8.884-8.17h4.905c5.005 0 7.759 2.853 8.372 6.431.512 2.96 1.839 9.91 1.839 9.91zM13.076 6.378h-3.88c-4.698 0-6.231 2.965-6.231 5.623 0 2.653 1.533 5.618 6.236 5.618h3.875c4.904 0 6.236-3.065 6.236-5.618 0-2.246-1.231-5.618-6.236-5.618z" }) + ] + } + ); +}); + +export { SiAbbvie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.cjs new file mode 100644 index 000000000..66f21c474 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#897BFF"; +const SiAbdownloadmanager = React__namespace.forwardRef(function SiAbdownloadmanager2({ title = "AB Download Manager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.98 0c-.235 0-.425.2-.425.446V8.92c0 .246-.19.446-.425.446h-.704c-.346 0-.547.41-.346.705l2.574 3.782c.17.25.522.25.692 0l2.574-3.782c.201-.295 0-.705-.346-.705h-.704a.436.436 0 0 1-.425-.446V.446A.436.436 0 0 0 13.02 0ZM7.387 1.562a.732.732 0 0 0-.405.161l-1.096.883a.77.77 0 0 0-.123 1.066.735.735 0 0 0 1.045.126l1.096-.882a.77.77 0 0 0 .123-1.067.738.738 0 0 0-.64-.287Zm9.346 0a.737.737 0 0 0-.64.287.77.77 0 0 0 .123 1.067l1.096.882c.323.26.79.204 1.045-.126a.77.77 0 0 0-.123-1.066l-1.096-.883a.733.733 0 0 0-.405-.16ZM3.039 6.036a.745.745 0 0 0-.675.48l-.512 1.326c-.15.39.037.831.42.985a.74.74 0 0 0 .965-.428l.512-1.325a.765.765 0 0 0-.419-.985.728.728 0 0 0-.291-.053Zm18.042 0a.738.738 0 0 0-.29.053.765.765 0 0 0-.42.985l.512 1.325a.74.74 0 0 0 .965.428.765.765 0 0 0 .42-.985l-.512-1.325a.745.745 0 0 0-.675-.481ZM0 12a12 12 0 0 0 .913 4.592 11.997 11.997 0 0 0 2.42 3.703c.684-.681 1.565-1 2.489-1.053.925-.055 1.893.156 2.745.532a8.497 8.497 0 0 0 6.866 0c1.702-.751 3.865-.843 5.234.52a11.997 11.997 0 0 0 2.42-3.702A12 12 0 0 0 24 12h-3.687c-1.301 0-2.315 1.094-2.813 2.296a6 6 0 0 1-11.087 0C5.915 13.094 4.902 12 3.601 12Zm5.875 7.769c-.727.04-1.407.275-1.957.727-.073.06-.14.119-.204.18a11.997 11.997 0 0 0 3.694 2.41 12 12 0 0 0 9.184 0 11.997 11.997 0 0 0 3.694-2.41 3.977 3.977 0 0 0-.204-.18c-1.173-.963-2.96-.892-4.436-.24a9.023 9.023 0 0 1-7.292 0c-.478-.211-1.418-.546-2.48-.487Z" }) + ] + } + ); +}); + +exports.default = SiAbdownloadmanager; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.d.ts new file mode 100644 index 000000000..ba2112d27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#897BFF"; +declare const SiAbdownloadmanager: IconType; +export { SiAbdownloadmanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.mjs new file mode 100644 index 000000000..659d1c340 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbdownloadmanager.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#897BFF"; +const SiAbdownloadmanager = React.forwardRef(function SiAbdownloadmanager2({ title = "AB Download Manager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.98 0c-.235 0-.425.2-.425.446V8.92c0 .246-.19.446-.425.446h-.704c-.346 0-.547.41-.346.705l2.574 3.782c.17.25.522.25.692 0l2.574-3.782c.201-.295 0-.705-.346-.705h-.704a.436.436 0 0 1-.425-.446V.446A.436.436 0 0 0 13.02 0ZM7.387 1.562a.732.732 0 0 0-.405.161l-1.096.883a.77.77 0 0 0-.123 1.066.735.735 0 0 0 1.045.126l1.096-.882a.77.77 0 0 0 .123-1.067.738.738 0 0 0-.64-.287Zm9.346 0a.737.737 0 0 0-.64.287.77.77 0 0 0 .123 1.067l1.096.882c.323.26.79.204 1.045-.126a.77.77 0 0 0-.123-1.066l-1.096-.883a.733.733 0 0 0-.405-.16ZM3.039 6.036a.745.745 0 0 0-.675.48l-.512 1.326c-.15.39.037.831.42.985a.74.74 0 0 0 .965-.428l.512-1.325a.765.765 0 0 0-.419-.985.728.728 0 0 0-.291-.053Zm18.042 0a.738.738 0 0 0-.29.053.765.765 0 0 0-.42.985l.512 1.325a.74.74 0 0 0 .965.428.765.765 0 0 0 .42-.985l-.512-1.325a.745.745 0 0 0-.675-.481ZM0 12a12 12 0 0 0 .913 4.592 11.997 11.997 0 0 0 2.42 3.703c.684-.681 1.565-1 2.489-1.053.925-.055 1.893.156 2.745.532a8.497 8.497 0 0 0 6.866 0c1.702-.751 3.865-.843 5.234.52a11.997 11.997 0 0 0 2.42-3.702A12 12 0 0 0 24 12h-3.687c-1.301 0-2.315 1.094-2.813 2.296a6 6 0 0 1-11.087 0C5.915 13.094 4.902 12 3.601 12Zm5.875 7.769c-.727.04-1.407.275-1.957.727-.073.06-.14.119-.204.18a11.997 11.997 0 0 0 3.694 2.41 12 12 0 0 0 9.184 0 11.997 11.997 0 0 0 3.694-2.41 3.977 3.977 0 0 0-.204-.18c-1.173-.963-2.96-.892-4.436-.24a9.023 9.023 0 0 1-7.292 0c-.478-.211-1.418-.546-2.48-.487Z" }) + ] + } + ); +}); + +export { SiAbdownloadmanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.cjs new file mode 100644 index 000000000..c58b2f39b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiAboutdotme = React__namespace.forwardRef(function SiAboutdotme2({ title = "about.me", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.158 9.897v4.131h.65v-.408c.23.297.577.483.961.483.768 0 1.332-.582 1.332-1.573 0-.967-.558-1.568-1.332-1.568-.372 0-.719.168-.96.49V9.897Zm10.285.322v.818h-.495v.563h.495v1.729c0 .501.26.774.769.774.297 0 .49-.087.607-.192l-.155-.496a.4.4 0 0 1-.285.112c-.186 0-.285-.155-.285-.36V11.6h.607v-.563h-.607v-.818zm-5.488.743c-.954 0-1.536.706-1.536 1.567 0 .855.582 1.574 1.536 1.574s1.537-.719 1.537-1.574c0-.86-.583-1.567-1.537-1.567m14.577 0c-.886 0-1.518.7-1.518 1.567 0 .948.663 1.574 1.567 1.574.47 0 .91-.155 1.214-.44l-.297-.427c-.217.216-.557.334-.855.334-.564 0-.898-.378-.948-.824H24v-.16c0-.942-.57-1.624-1.468-1.624m-4.576 0c-.459 0-.849.298-.979.477v-.402h-.65v2.991h.65v-2.093c.137-.192.403-.397.694-.397.354 0 .49.217.49.54v1.95h.65v-2.093c.13-.199.403-.397.694-.397.353 0 .495.217.495.54v1.95h.65v-2.161c0-.607-.315-.905-.86-.905-.453 0-.85.28-1.016.545-.1-.322-.372-.545-.818-.545m-16.55 0c-.477 0-.91.15-1.257.484l.272.452a1.2 1.2 0 0 1 .886-.384c.41 0 .7.21.7.557v.446c-.223-.254-.563-.384-.972-.384-.49 0-1.035.285-1.035.979 0 .656.551.99 1.035.99.396 0 .75-.142.972-.402v.328h.65V12.04c0-.799-.582-1.078-1.25-1.078m8.449.075v2.118c0 .607.322.948.966.948.47 0 .842-.235 1.053-.471v.396h.65v-2.991h-.65v2.1a.99.99 0 0 1-.762.39c-.372 0-.607-.149-.607-.613v-1.877zm12.67.458c.589 0 .83.434.85.787H21.69c.025-.36.285-.787.837-.787m-17.942.043c.514 0 .843.415.843.992 0 .582-.329.997-.843.997a.98.98 0 0 1-.774-.397v-1.189a.98.98 0 0 1 .774-.403m3.372 0c.558 0 .861.465.861.991 0 .533-.303.998-.86.998-.552 0-.862-.465-.862-.997 0-.527.31-.992.861-.992m-6.66 1.041c.279 0 .557.105.712.31v.458c-.155.204-.433.31-.712.31-.366 0-.644-.21-.644-.539 0-.322.278-.539.644-.539m14.269.65a.44.44 0 0 0-.434.428c0 .235.198.44.434.44a.445.445 0 0 0 .434-.44.44.44 0 0 0-.434-.428" }) + ] + } + ); +}); + +exports.default = SiAboutdotme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.d.ts new file mode 100644 index 000000000..60515c620 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiAboutdotme: IconType; +export { SiAboutdotme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.mjs new file mode 100644 index 000000000..112d0b11f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAboutdotme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiAboutdotme = React.forwardRef(function SiAboutdotme2({ title = "about.me", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.158 9.897v4.131h.65v-.408c.23.297.577.483.961.483.768 0 1.332-.582 1.332-1.573 0-.967-.558-1.568-1.332-1.568-.372 0-.719.168-.96.49V9.897Zm10.285.322v.818h-.495v.563h.495v1.729c0 .501.26.774.769.774.297 0 .49-.087.607-.192l-.155-.496a.4.4 0 0 1-.285.112c-.186 0-.285-.155-.285-.36V11.6h.607v-.563h-.607v-.818zm-5.488.743c-.954 0-1.536.706-1.536 1.567 0 .855.582 1.574 1.536 1.574s1.537-.719 1.537-1.574c0-.86-.583-1.567-1.537-1.567m14.577 0c-.886 0-1.518.7-1.518 1.567 0 .948.663 1.574 1.567 1.574.47 0 .91-.155 1.214-.44l-.297-.427c-.217.216-.557.334-.855.334-.564 0-.898-.378-.948-.824H24v-.16c0-.942-.57-1.624-1.468-1.624m-4.576 0c-.459 0-.849.298-.979.477v-.402h-.65v2.991h.65v-2.093c.137-.192.403-.397.694-.397.354 0 .49.217.49.54v1.95h.65v-2.093c.13-.199.403-.397.694-.397.353 0 .495.217.495.54v1.95h.65v-2.161c0-.607-.315-.905-.86-.905-.453 0-.85.28-1.016.545-.1-.322-.372-.545-.818-.545m-16.55 0c-.477 0-.91.15-1.257.484l.272.452a1.2 1.2 0 0 1 .886-.384c.41 0 .7.21.7.557v.446c-.223-.254-.563-.384-.972-.384-.49 0-1.035.285-1.035.979 0 .656.551.99 1.035.99.396 0 .75-.142.972-.402v.328h.65V12.04c0-.799-.582-1.078-1.25-1.078m8.449.075v2.118c0 .607.322.948.966.948.47 0 .842-.235 1.053-.471v.396h.65v-2.991h-.65v2.1a.99.99 0 0 1-.762.39c-.372 0-.607-.149-.607-.613v-1.877zm12.67.458c.589 0 .83.434.85.787H21.69c.025-.36.285-.787.837-.787m-17.942.043c.514 0 .843.415.843.992 0 .582-.329.997-.843.997a.98.98 0 0 1-.774-.397v-1.189a.98.98 0 0 1 .774-.403m3.372 0c.558 0 .861.465.861.991 0 .533-.303.998-.86.998-.552 0-.862-.465-.862-.997 0-.527.31-.992.861-.992m-6.66 1.041c.279 0 .557.105.712.31v.458c-.155.204-.433.31-.712.31-.366 0-.644-.21-.644-.539 0-.322.278-.539.644-.539m14.269.65a.44.44 0 0 0-.434.428c0 .235.198.44.434.44a.445.445 0 0 0 .434-.44.44.44 0 0 0-.434-.428" }) + ] + } + ); +}); + +export { SiAboutdotme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.cjs new file mode 100644 index 000000000..a52cf138c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#191A1B"; +const SiAbstract = React__namespace.forwardRef(function SiAbstract2({ title = "Abstract", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c9.601 0 12 2.399 12 12 0 9.601-2.399 12-12 12-9.601 0-12-2.399-12-12C0 2.399 2.399 0 12 0zm-1.969 18.564c2.524.003 4.604-2.07 4.609-4.595 0-2.521-2.074-4.595-4.595-4.595S5.45 11.449 5.45 13.969c0 2.516 2.065 4.588 4.581 4.595zm8.344-.189V5.625H5.625v2.247h10.498v10.503h2.252zm-8.344-6.748a2.343 2.343 0 11-.002 4.686 2.343 2.343 0 01.002-4.686z" }) + ] + } + ); +}); + +exports.default = SiAbstract; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.d.ts new file mode 100644 index 000000000..a2d05a0fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#191A1B"; +declare const SiAbstract: IconType; +export { SiAbstract as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.mjs new file mode 100644 index 000000000..08cd88cb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbstract.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#191A1B"; +const SiAbstract = React.forwardRef(function SiAbstract2({ title = "Abstract", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c9.601 0 12 2.399 12 12 0 9.601-2.399 12-12 12-9.601 0-12-2.399-12-12C0 2.399 2.399 0 12 0zm-1.969 18.564c2.524.003 4.604-2.07 4.609-4.595 0-2.521-2.074-4.595-4.595-4.595S5.45 11.449 5.45 13.969c0 2.516 2.065 4.588 4.581 4.595zm8.344-.189V5.625H5.625v2.247h10.498v10.503h2.252zm-8.344-6.748a2.343 2.343 0 11-.002 4.686 2.343 2.343 0 01.002-4.686z" }) + ] + } + ); +}); + +export { SiAbstract as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.cjs new file mode 100644 index 000000000..2eadff928 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00465B"; +const SiAbusedotch = React__namespace.forwardRef(function SiAbusedotch2({ title = "abuse.ch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.8924 10.3775c.0193 0 .1179-.1827.3828-.2534.1078-.0287.3585-.0506.5405.0957.14.1127.1843.2965.1843.4838v1.127h-.2747V10.748c0-.362-.1831-.4094-.3296-.4094-.2709 0-.444.2105-.5033.296v1.1961h-.2746v-2.566h.2746zm-.9543.0514c-.189-.072-.391-.1213-.6007-.0514-.1745.0582-.2643.1976-.3101.3154-.032.084-.0479.1885-.0479.3137 0 .1758.0436.332.1436.4519.1925.2208.5373.2171.8417.0921v.2286c-.066.0388-.1671.0616-.186.0656-.088.0215-.5326.111-.8418-.179-.3632-.3404-.2155-.937-.2109-.9551.038-.1422.1081-.2924.2357-.4058.348-.3025.805-.2036.9764-.1046zm-5.9987 2.7958h1.7657v.5501h-2.423v-3.5904h2.3264v.5501h-1.669v.9285h1.4329v.55h-1.433zm-2.2842-.4803c0-.3335-.317-.4122-.8104-.5125a4.1973 4.1973 0 0 1-.3998-.1074c-.3907-.132-.5171-.3607-.5662-.4588-.1187-.2373-.1168-.6487.0134-.9231.2446-.5224.7924-.6253 1.186-.6253.444 0 .8488.1051 1.0761.2013v.5635c-.186-.0733-.365-.1261-.5367-.1583-.2899-.058-1.1565-.181-1.1565.4213 0 .0776.0048.2482.2146.373.2305.1308.4677.1222.9366.2683.1395.0412.263.0993.3703.1744.1073.0752.1923.1736.2549.2952.0626.1199.0939.2737.0939.4616 0 .3168-.1006.6336-.4132.8533-.3229.2255-.7791.271-1.0949.271-.3327 0-.7674-.0646-1.0465-.22v-.5555c.3126.1358.6309.22 1.0385.22.3188 0 .8399-.0718.8399-.542zm-5.2521.8855c-.5869-.3576-.5957-1.0336-.5957-1.331v-2.1145h.6574V12.24c0 .242.0154.7371.3891.9419.2631.1406.66.1406.923 0 .374-.2048.3892-.7003.3892-.9419v-2.0555h.6574v2.1146c0 .1502-.0089.2862-.0268.4078-.036.2726-.1623.6781-.577.9231-.4836.2828-1.3341.2865-1.8166 0zm-1.6215-2.4902c0 .1557-.0348.2988-.1046.4294-.0698.1288-.1852.2361-.3462.322v.0107c.1734.059.4509.1987.5582.5072.077.2086.0707.5612-.1422.8506-.0698.093-.1628.179-.2791.2576-.3154.2135-.7248.2434-.9768.255-.4364.0058-.873.0027-1.3095.0027v-3.5904h1.2478c.2853 0 .6671.0247.9607.2361.2757.193.3917.4718.3917.7191zM4.839 12.2131v1.0116h.4293a4.68 4.68 0 0 0 .2952-.008c.2888-.0252.5883-.114.6681-.3622.018-.0576.1233-.455-.3193-.5957-.1148-.0357-.2588-.0457-.4508-.0457zm.593-.5501c.1444 0 .4811-.0001.6091-.2227.0837-.143.0917-.3476-.008-.4991-.1227-.191-.418-.2067-.6548-.2067H4.839v.9285zm-4.0061-1.4794L0 13.7736h.7012c.2284-.5948.457-1.1895.6855-1.7843.0984-.252.2107-.5654.336-.9409h.0117c.3084.92.6724 1.8201 1.0215 2.7252h.6953l-1.4258-3.59zm17.604 5.3065h.2932V8.51h-.2932z" }) + ] + } + ); +}); + +exports.default = SiAbusedotch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.d.ts new file mode 100644 index 000000000..01a5d42b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00465B"; +declare const SiAbusedotch: IconType; +export { SiAbusedotch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.mjs new file mode 100644 index 000000000..579b8db8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAbusedotch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00465B"; +const SiAbusedotch = React.forwardRef(function SiAbusedotch2({ title = "abuse.ch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.8924 10.3775c.0193 0 .1179-.1827.3828-.2534.1078-.0287.3585-.0506.5405.0957.14.1127.1843.2965.1843.4838v1.127h-.2747V10.748c0-.362-.1831-.4094-.3296-.4094-.2709 0-.444.2105-.5033.296v1.1961h-.2746v-2.566h.2746zm-.9543.0514c-.189-.072-.391-.1213-.6007-.0514-.1745.0582-.2643.1976-.3101.3154-.032.084-.0479.1885-.0479.3137 0 .1758.0436.332.1436.4519.1925.2208.5373.2171.8417.0921v.2286c-.066.0388-.1671.0616-.186.0656-.088.0215-.5326.111-.8418-.179-.3632-.3404-.2155-.937-.2109-.9551.038-.1422.1081-.2924.2357-.4058.348-.3025.805-.2036.9764-.1046zm-5.9987 2.7958h1.7657v.5501h-2.423v-3.5904h2.3264v.5501h-1.669v.9285h1.4329v.55h-1.433zm-2.2842-.4803c0-.3335-.317-.4122-.8104-.5125a4.1973 4.1973 0 0 1-.3998-.1074c-.3907-.132-.5171-.3607-.5662-.4588-.1187-.2373-.1168-.6487.0134-.9231.2446-.5224.7924-.6253 1.186-.6253.444 0 .8488.1051 1.0761.2013v.5635c-.186-.0733-.365-.1261-.5367-.1583-.2899-.058-1.1565-.181-1.1565.4213 0 .0776.0048.2482.2146.373.2305.1308.4677.1222.9366.2683.1395.0412.263.0993.3703.1744.1073.0752.1923.1736.2549.2952.0626.1199.0939.2737.0939.4616 0 .3168-.1006.6336-.4132.8533-.3229.2255-.7791.271-1.0949.271-.3327 0-.7674-.0646-1.0465-.22v-.5555c.3126.1358.6309.22 1.0385.22.3188 0 .8399-.0718.8399-.542zm-5.2521.8855c-.5869-.3576-.5957-1.0336-.5957-1.331v-2.1145h.6574V12.24c0 .242.0154.7371.3891.9419.2631.1406.66.1406.923 0 .374-.2048.3892-.7003.3892-.9419v-2.0555h.6574v2.1146c0 .1502-.0089.2862-.0268.4078-.036.2726-.1623.6781-.577.9231-.4836.2828-1.3341.2865-1.8166 0zm-1.6215-2.4902c0 .1557-.0348.2988-.1046.4294-.0698.1288-.1852.2361-.3462.322v.0107c.1734.059.4509.1987.5582.5072.077.2086.0707.5612-.1422.8506-.0698.093-.1628.179-.2791.2576-.3154.2135-.7248.2434-.9768.255-.4364.0058-.873.0027-1.3095.0027v-3.5904h1.2478c.2853 0 .6671.0247.9607.2361.2757.193.3917.4718.3917.7191zM4.839 12.2131v1.0116h.4293a4.68 4.68 0 0 0 .2952-.008c.2888-.0252.5883-.114.6681-.3622.018-.0576.1233-.455-.3193-.5957-.1148-.0357-.2588-.0457-.4508-.0457zm.593-.5501c.1444 0 .4811-.0001.6091-.2227.0837-.143.0917-.3476-.008-.4991-.1227-.191-.418-.2067-.6548-.2067H4.839v.9285zm-4.0061-1.4794L0 13.7736h.7012c.2284-.5948.457-1.1895.6855-1.7843.0984-.252.2107-.5654.336-.9409h.0117c.3084.92.6724 1.8201 1.0215 2.7252h.6953l-1.4258-3.59zm17.604 5.3065h.2932V8.51h-.2932z" }) + ] + } + ); +}); + +export { SiAbusedotch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.cjs new file mode 100644 index 000000000..e83726a80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41454A"; +const SiAcademia = React__namespace.forwardRef(function SiAcademia2({ title = "Academia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.033 21.18L13.77.459H7.869l1.049 2.623L1.836 21.18C1.574 22.098.787 22.23 0 22.361v1.18h6.82v-1.18C4.984 22.23 3.934 21.967 4.721 20c.131-.131.656-1.574 1.311-3.41h8.393l1.18 3.016c.131.525.262.918.262 1.311 0 1.049-.918 1.443-2.623 1.443v1.18H24v-1.18c-.918-.13-1.705-.393-1.967-1.18zM6.82 14.361a363.303 363.303 0 0 0 3.279-8.525l3.41 8.525H6.82z" }) + ] + } + ); +}); + +exports.default = SiAcademia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.d.ts new file mode 100644 index 000000000..ee9df3473 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41454A"; +declare const SiAcademia: IconType; +export { SiAcademia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.mjs new file mode 100644 index 000000000..15b1d27fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcademia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41454A"; +const SiAcademia = React.forwardRef(function SiAcademia2({ title = "Academia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.033 21.18L13.77.459H7.869l1.049 2.623L1.836 21.18C1.574 22.098.787 22.23 0 22.361v1.18h6.82v-1.18C4.984 22.23 3.934 21.967 4.721 20c.131-.131.656-1.574 1.311-3.41h8.393l1.18 3.016c.131.525.262.918.262 1.311 0 1.049-.918 1.443-2.623 1.443v1.18H24v-1.18c-.918-.13-1.705-.393-1.967-1.18zM6.82 14.361a363.303 363.303 0 0 0 3.279-8.525l3.41 8.525H6.82z" }) + ] + } + ); +}); + +export { SiAcademia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.cjs new file mode 100644 index 000000000..fa3fc6c06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A100FF"; +const SiAccenture = React__namespace.forwardRef(function SiAccenture2({ title = "Accenture", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.66 16.95 13.242-4.926L.66 6.852V0l22.68 9.132v5.682L.66 24Z" }) + ] + } + ); +}); + +exports.default = SiAccenture; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.d.ts new file mode 100644 index 000000000..f1024e559 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A100FF"; +declare const SiAccenture: IconType; +export { SiAccenture as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.mjs new file mode 100644 index 000000000..898919198 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccenture.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A100FF"; +const SiAccenture = React.forwardRef(function SiAccenture2({ title = "Accenture", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.66 16.95 13.242-4.926L.66 6.852V0l22.68 9.132v5.682L.66 24Z" }) + ] + } + ); +}); + +export { SiAccenture as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.cjs new file mode 100644 index 000000000..41e31a87e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A9225C"; +const SiAccusoft = React__namespace.forwardRef(function SiAccusoft2({ title = "Accusoft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.1774 4.2143c-.3824.0022-4.0063.02-4.3665.0222-.618.0044-.776-.0044-.8738.109-.0511.06-.1334.1645.1535.5246.2868.358 8.7775 11.221 8.9931 11.481.2735.3313.527.4447.638.4625.178.0267.4003-.0667.5203-.1134.1179-.0467 4.3243-1.7853 4.4155-1.8342.14-.0756.1312-.289.0378-.4469-.0934-.16-.229-.3335-.3069-.429-.08-.0957-7.6903-9.1956-7.7703-9.2956-.1467-.1845-.3602-.3602-.4447-.389-.0845-.029-.2045-.0935-.996-.0912zm-4.0152 5.1313s-.4492.06-.9427.5625c-.338.349-9.0776 8.9487-9.1243 9.0154-.0423.06-.1468.1756-.0645.2401.0422.0333.4513-.1.6559-.1734.0289 0 4.2931-1.3607 4.2931-1.3607.02-.0222-.0022-.0022.0222-.02-.0133-.189-.0289-.9804-.0355-1.036-.02-.1579.0556-.2223.109-.258.0533-.0355.1533-.0755.1533-.0755l3.4706-1.265c.0222-.029 3.3193-3.0638 3.3838-3.1216v-.0422c-.029-.0222-.04-.06-.0645-.0867-.0156-.0067-1.8564-2.3856-1.8564-2.3789zm1.8497 5.0624c-.1156.0089-.3601.029-.5424.109-.1823.08-5.4426 1.9787-5.6316 2.052-.189.0734-.4269.1334-.4135.2846.0066.0934.0733.1.1734.1312.1.0333 11.2786 2.5212 11.5477 2.5768.269.0556 1.1294.2934 1.5763.2045.24-.0334.3535-.0934.4313-.14.0778-.0467 4.6422-2.8503 4.7156-2.9037.0711-.0533.1223-.0889.1312-.1756.0044-.0333-.0912-.109-.1957-.1312a321.6128 321.6128 0 0 0-1.1139-.2179l-.309-.0555s-4.311 1.8897-4.4065 1.9342c-.12.0556-.2935.1-.4447.0867-.3157-.0289-.558-.2067-.9293-.6336l-2.1388-2.7724s-.936-.1512-1.2673-.1957c-.3313-.0445-1.0671-.16-1.1828-.1534z" }) + ] + } + ); +}); + +exports.default = SiAccusoft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.d.ts new file mode 100644 index 000000000..caf4204f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A9225C"; +declare const SiAccusoft: IconType; +export { SiAccusoft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.mjs new file mode 100644 index 000000000..1401124eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccusoft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A9225C"; +const SiAccusoft = React.forwardRef(function SiAccusoft2({ title = "Accusoft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.1774 4.2143c-.3824.0022-4.0063.02-4.3665.0222-.618.0044-.776-.0044-.8738.109-.0511.06-.1334.1645.1535.5246.2868.358 8.7775 11.221 8.9931 11.481.2735.3313.527.4447.638.4625.178.0267.4003-.0667.5203-.1134.1179-.0467 4.3243-1.7853 4.4155-1.8342.14-.0756.1312-.289.0378-.4469-.0934-.16-.229-.3335-.3069-.429-.08-.0957-7.6903-9.1956-7.7703-9.2956-.1467-.1845-.3602-.3602-.4447-.389-.0845-.029-.2045-.0935-.996-.0912zm-4.0152 5.1313s-.4492.06-.9427.5625c-.338.349-9.0776 8.9487-9.1243 9.0154-.0423.06-.1468.1756-.0645.2401.0422.0333.4513-.1.6559-.1734.0289 0 4.2931-1.3607 4.2931-1.3607.02-.0222-.0022-.0022.0222-.02-.0133-.189-.0289-.9804-.0355-1.036-.02-.1579.0556-.2223.109-.258.0533-.0355.1533-.0755.1533-.0755l3.4706-1.265c.0222-.029 3.3193-3.0638 3.3838-3.1216v-.0422c-.029-.0222-.04-.06-.0645-.0867-.0156-.0067-1.8564-2.3856-1.8564-2.3789zm1.8497 5.0624c-.1156.0089-.3601.029-.5424.109-.1823.08-5.4426 1.9787-5.6316 2.052-.189.0734-.4269.1334-.4135.2846.0066.0934.0733.1.1734.1312.1.0333 11.2786 2.5212 11.5477 2.5768.269.0556 1.1294.2934 1.5763.2045.24-.0334.3535-.0934.4313-.14.0778-.0467 4.6422-2.8503 4.7156-2.9037.0711-.0533.1223-.0889.1312-.1756.0044-.0333-.0912-.109-.1957-.1312a321.6128 321.6128 0 0 0-1.1139-.2179l-.309-.0555s-4.311 1.8897-4.4065 1.9342c-.12.0556-.2935.1-.4447.0867-.3157-.0289-.558-.2067-.9293-.6336l-2.1388-2.7724s-.936-.1512-1.2673-.1957c-.3313-.0445-1.0671-.16-1.1828-.1534z" }) + ] + } + ); +}); + +export { SiAccusoft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.cjs new file mode 100644 index 000000000..3f9e9200e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiAccuweather = React__namespace.forwardRef(function SiAccuweather2({ title = "AccuWeather", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.74 6.772a7.436 7.436 0 0 1 10.519 0 7.432 7.432 0 0 1 0 10.515 7.436 7.436 0 0 1-10.52 0c-2.904-2.905-2.904-7.64 0-10.515M12 20.337c-4.59 0-8.338-3.747-8.338-8.337s3.748-8.308 8.338-8.308c4.591 0 8.31 3.748 8.31 8.308 0 4.619-3.719 8.337-8.31 8.337zm12-8.366L21.27 9.5l1.103-3.514-3.603-.784-.784-3.602-3.515 1.133L11.97.004l-2.47 2.73L5.986 1.63 5.2 5.231l-3.602.785 1.133 3.515L0 12.03l2.732 2.47-1.105 3.514 3.603.784.784 3.603 3.516-1.134 2.5 2.731 2.468-2.73 3.516 1.103.785-3.602 3.603-.813-1.134-3.515L24 11.97z" }) + ] + } + ); +}); + +exports.default = SiAccuweather; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.d.ts new file mode 100644 index 000000000..5b96cb760 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiAccuweather: IconType; +export { SiAccuweather as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.mjs new file mode 100644 index 000000000..398b97a0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAccuweather.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiAccuweather = React.forwardRef(function SiAccuweather2({ title = "AccuWeather", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.74 6.772a7.436 7.436 0 0 1 10.519 0 7.432 7.432 0 0 1 0 10.515 7.436 7.436 0 0 1-10.52 0c-2.904-2.905-2.904-7.64 0-10.515M12 20.337c-4.59 0-8.338-3.747-8.338-8.337s3.748-8.308 8.338-8.308c4.591 0 8.31 3.748 8.31 8.308 0 4.619-3.719 8.337-8.31 8.337zm12-8.366L21.27 9.5l1.103-3.514-3.603-.784-.784-3.602-3.515 1.133L11.97.004l-2.47 2.73L5.986 1.63 5.2 5.231l-3.602.785 1.133 3.515L0 12.03l2.732 2.47-1.105 3.514 3.603.784.784 3.603 3.516-1.134 2.5 2.731 2.468-2.73 3.516 1.103.785-3.602 3.603-.813-1.134-3.515L24 11.97z" }) + ] + } + ); +}); + +export { SiAccuweather as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.cjs new file mode 100644 index 000000000..1940f5066 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#83B81A"; +const SiAcer = React__namespace.forwardRef(function SiAcer2({ title = "Acer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.943 9.364c-.085-.113-.17-.198-.595-.226-.113 0-.453-.029-1.048-.029-1.56 0-2.636.482-3.175 1.417.142-.935-.765-1.417-2.749-1.417-2.324 0-3.798.935-4.393 2.834-.226.709-.226 1.276-.056 1.73h-.567c-.425.027-.992.056-1.36.056-.85 0-1.39-.142-1.588-.425-.17-.255-.17-.737.057-1.446.368-1.162 1.247-1.672 2.664-1.672.737 0 1.445.085 1.445.085.085 0 .142-.113.142-.198l-.028-.085-.057-.397c-.028-.255-.227-.397-.567-.453-.311-.029-.567-.029-.907-.029h-.028c-1.842 0-3.146.624-3.854 1.814.255-1.219-.596-1.814-2.551-1.814-1.105 0-1.9.029-2.353.085-.368.057-.595.199-.68.454l-.17.51c-.028.085.029.142.142.142.085 0 .425-.057.992-.086a24.816 24.816 0 0 1 1.672-.085c1.077 0 1.559.284 1.389.822-.029.114-.114.199-.255.227-1.02.17-1.842.284-2.438.369-1.7.226-2.692.736-2.947 1.587-.369 1.162.538 1.728 2.72 1.728 1.078 0 2.013-.056 2.75-.198.425-.085.652-.17.737-.453l.396-1.304c-.028 1.304.85 1.955 2.721 1.955.794 0 1.559-.028 1.927-.085.369-.056.567-.141.652-.425l.085-.396c.397.623 1.276.935 2.608.935 1.417 0 2.239-.029 2.465-.114a.523.523 0 0 0 .369-.311l.028-.085.17-.539c.029-.085-.028-.142-.142-.142l-.906.057c-.596.029-1.077.057-1.418.057-.651 0-1.076-.057-1.332-.142-.368-.142-.538-.397-.51-.822l2.863-.368c1.275-.17 2.154-.567 2.579-1.19l-.992 3.315c-.028.057 0 .114.028.142.029.028.085.057.199.057h1.19c.198 0 .283-.114.312-.199l1.048-3.656c.142-.481.567-.708 1.36-.708.71 0 1.22 0 1.56.028h.028c.057 0 .17-.028.255-.17l.17-.51c0-.085 0-.17-.057-.227zM4.841 13.73c-.368.057-.907.085-1.587.085-1.219 0-1.729-.255-1.587-.737.113-.34.425-.567.935-.624l2.75-.368zm12.669-2.95c-.114.369-.652.624-1.616.766l-2.295.311.056-.198c.199-.624.454-1.02.794-1.247.34-.227.907-.34 1.7-.34 1.05.028 1.503.255 1.36.708Z" }) + ] + } + ); +}); + +exports.default = SiAcer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.d.ts new file mode 100644 index 000000000..4f5dc9b12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#83B81A"; +declare const SiAcer: IconType; +export { SiAcer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.mjs new file mode 100644 index 000000000..2141a0562 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#83B81A"; +const SiAcer = React.forwardRef(function SiAcer2({ title = "Acer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.943 9.364c-.085-.113-.17-.198-.595-.226-.113 0-.453-.029-1.048-.029-1.56 0-2.636.482-3.175 1.417.142-.935-.765-1.417-2.749-1.417-2.324 0-3.798.935-4.393 2.834-.226.709-.226 1.276-.056 1.73h-.567c-.425.027-.992.056-1.36.056-.85 0-1.39-.142-1.588-.425-.17-.255-.17-.737.057-1.446.368-1.162 1.247-1.672 2.664-1.672.737 0 1.445.085 1.445.085.085 0 .142-.113.142-.198l-.028-.085-.057-.397c-.028-.255-.227-.397-.567-.453-.311-.029-.567-.029-.907-.029h-.028c-1.842 0-3.146.624-3.854 1.814.255-1.219-.596-1.814-2.551-1.814-1.105 0-1.9.029-2.353.085-.368.057-.595.199-.68.454l-.17.51c-.028.085.029.142.142.142.085 0 .425-.057.992-.086a24.816 24.816 0 0 1 1.672-.085c1.077 0 1.559.284 1.389.822-.029.114-.114.199-.255.227-1.02.17-1.842.284-2.438.369-1.7.226-2.692.736-2.947 1.587-.369 1.162.538 1.728 2.72 1.728 1.078 0 2.013-.056 2.75-.198.425-.085.652-.17.737-.453l.396-1.304c-.028 1.304.85 1.955 2.721 1.955.794 0 1.559-.028 1.927-.085.369-.056.567-.141.652-.425l.085-.396c.397.623 1.276.935 2.608.935 1.417 0 2.239-.029 2.465-.114a.523.523 0 0 0 .369-.311l.028-.085.17-.539c.029-.085-.028-.142-.142-.142l-.906.057c-.596.029-1.077.057-1.418.057-.651 0-1.076-.057-1.332-.142-.368-.142-.538-.397-.51-.822l2.863-.368c1.275-.17 2.154-.567 2.579-1.19l-.992 3.315c-.028.057 0 .114.028.142.029.028.085.057.199.057h1.19c.198 0 .283-.114.312-.199l1.048-3.656c.142-.481.567-.708 1.36-.708.71 0 1.22 0 1.56.028h.028c.057 0 .17-.028.255-.17l.17-.51c0-.085 0-.17-.057-.227zM4.841 13.73c-.368.057-.907.085-1.587.085-1.219 0-1.729-.255-1.587-.737.113-.34.425-.567.935-.624l2.75-.368zm12.669-2.95c-.114.369-.652.624-1.616.766l-2.295.311.056-.198c.199-.624.454-1.02.794-1.247.34-.227.907-.34 1.7-.34 1.05.028 1.503.255 1.36.708Z" }) + ] + } + ); +}); + +export { SiAcer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.cjs new file mode 100644 index 000000000..c423fc4a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0085CA"; +const SiAcm = React__namespace.forwardRef(function SiAcm2({ title = "ACM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.435 12.25c-.08.025-.15.072-.202.135-.048.072-.073.158-.07.245 0 .15.038.252.12.308.077.056.194.082.352.082.087 0 .174-.02.264-.06.09-.038.174-.095.245-.165v-.66c-.168.015-.303.03-.405.045-.105.01-.207.034-.305.07zM12 0L0 12l12 12 12-12L12 0zm0 19.357C7.938 19.355 4.645 16.063 4.643 12 4.645 7.938 7.938 4.644 12 4.642c4.063.002 7.355 3.295 7.357 7.358-.002 4.063-3.294 7.355-7.357 7.357zM12 5.377v.002c-3.654 0-6.62 2.966-6.62 6.62s2.966 6.62 6.62 6.62 6.62-2.966 6.62-6.62c0-3.656-2.964-6.62-6.62-6.623zm-2.862 8.246h-.995v-.336l-.182.154c-.142.108-.304.188-.477.233-.082.02-.202.035-.352.035-.262.007-.515-.097-.698-.285-.187-.19-.277-.426-.277-.716 0-.238.046-.427.14-.574.1-.15.24-.27.405-.348.205-.09.423-.152.646-.18.25-.033.516-.06.803-.078v-.017c0-.176-.066-.297-.196-.363-.13-.07-.322-.102-.58-.102-.117 0-.254.02-.41.063-.158.044-.308.1-.458.164H6.42v-.77c.097-.03.256-.062.48-.1.217-.04.438-.06.663-.06.55 0 .95.092 1.2.276.25.183.375.462.375.837v2.168zm3.22-.167c-.07.028-.134.056-.2.086-.074.03-.15.058-.23.08-.094.024-.186.044-.27.06-.084.014-.196.022-.336.022-.263 0-.506-.033-.723-.1-.21-.062-.406-.165-.57-.307-.163-.142-.292-.32-.373-.52-.09-.21-.135-.457-.135-.738-.008-.27.042-.535.146-.78.09-.204.224-.384.392-.53.165-.134.355-.233.56-.29.22-.066.447-.096.675-.096.37 0 .732.087 1.06.255v.854h-.127c-.048-.043-.096-.085-.147-.124-.06-.048-.122-.09-.188-.126-.167-.095-.357-.144-.55-.14-.254 0-.45.086-.59.263-.138.177-.21.414-.21.714 0 .32.075.56.225.715.15.157.347.235.592.235.11 0 .222-.013.33-.042.153-.043.295-.12.415-.225.048-.04.088-.082.123-.11h.13v.843zm4.333.173v-1.597c0-.157 0-.29-.007-.397-.002-.09-.02-.18-.052-.263-.023-.066-.07-.12-.13-.15-.153-.064-.325-.063-.478.002-.086.04-.168.087-.244.14v2.263h-.993v-1.595c0-.156-.003-.286-.01-.396-.003-.09-.02-.18-.05-.264-.027-.066-.076-.12-.136-.15-.06-.033-.145-.048-.25-.048-.083 0-.165.02-.24.056-.078.04-.152.086-.228.136v2.262h-.995V10.44h.993v.356c.144-.125.296-.233.46-.323.148-.08.314-.12.484-.12.182-.004.36.045.514.14.153.1.27.244.34.414.19-.177.37-.314.54-.41.17-.096.34-.145.515-.145.136-.002.27.023.396.075.115.044.22.116.3.21.09.106.16.23.2.364.045.142.066.328.066.553v2.076h-.995z" }) + ] + } + ); +}); + +exports.default = SiAcm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.d.ts new file mode 100644 index 000000000..3e40857a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0085CA"; +declare const SiAcm: IconType; +export { SiAcm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.mjs new file mode 100644 index 000000000..adde303a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0085CA"; +const SiAcm = React.forwardRef(function SiAcm2({ title = "ACM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.435 12.25c-.08.025-.15.072-.202.135-.048.072-.073.158-.07.245 0 .15.038.252.12.308.077.056.194.082.352.082.087 0 .174-.02.264-.06.09-.038.174-.095.245-.165v-.66c-.168.015-.303.03-.405.045-.105.01-.207.034-.305.07zM12 0L0 12l12 12 12-12L12 0zm0 19.357C7.938 19.355 4.645 16.063 4.643 12 4.645 7.938 7.938 4.644 12 4.642c4.063.002 7.355 3.295 7.357 7.358-.002 4.063-3.294 7.355-7.357 7.357zM12 5.377v.002c-3.654 0-6.62 2.966-6.62 6.62s2.966 6.62 6.62 6.62 6.62-2.966 6.62-6.62c0-3.656-2.964-6.62-6.62-6.623zm-2.862 8.246h-.995v-.336l-.182.154c-.142.108-.304.188-.477.233-.082.02-.202.035-.352.035-.262.007-.515-.097-.698-.285-.187-.19-.277-.426-.277-.716 0-.238.046-.427.14-.574.1-.15.24-.27.405-.348.205-.09.423-.152.646-.18.25-.033.516-.06.803-.078v-.017c0-.176-.066-.297-.196-.363-.13-.07-.322-.102-.58-.102-.117 0-.254.02-.41.063-.158.044-.308.1-.458.164H6.42v-.77c.097-.03.256-.062.48-.1.217-.04.438-.06.663-.06.55 0 .95.092 1.2.276.25.183.375.462.375.837v2.168zm3.22-.167c-.07.028-.134.056-.2.086-.074.03-.15.058-.23.08-.094.024-.186.044-.27.06-.084.014-.196.022-.336.022-.263 0-.506-.033-.723-.1-.21-.062-.406-.165-.57-.307-.163-.142-.292-.32-.373-.52-.09-.21-.135-.457-.135-.738-.008-.27.042-.535.146-.78.09-.204.224-.384.392-.53.165-.134.355-.233.56-.29.22-.066.447-.096.675-.096.37 0 .732.087 1.06.255v.854h-.127c-.048-.043-.096-.085-.147-.124-.06-.048-.122-.09-.188-.126-.167-.095-.357-.144-.55-.14-.254 0-.45.086-.59.263-.138.177-.21.414-.21.714 0 .32.075.56.225.715.15.157.347.235.592.235.11 0 .222-.013.33-.042.153-.043.295-.12.415-.225.048-.04.088-.082.123-.11h.13v.843zm4.333.173v-1.597c0-.157 0-.29-.007-.397-.002-.09-.02-.18-.052-.263-.023-.066-.07-.12-.13-.15-.153-.064-.325-.063-.478.002-.086.04-.168.087-.244.14v2.263h-.993v-1.595c0-.156-.003-.286-.01-.396-.003-.09-.02-.18-.05-.264-.027-.066-.076-.12-.136-.15-.06-.033-.145-.048-.25-.048-.083 0-.165.02-.24.056-.078.04-.152.086-.228.136v2.262h-.995V10.44h.993v.356c.144-.125.296-.233.46-.323.148-.08.314-.12.484-.12.182-.004.36.045.514.14.153.1.27.244.34.414.19-.177.37-.314.54-.41.17-.096.34-.145.515-.145.136-.002.27.023.396.075.115.044.22.116.3.21.09.106.16.23.2.364.045.142.066.328.066.553v2.076h-.995z" }) + ] + } + ); +}); + +export { SiAcm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.cjs new file mode 100644 index 000000000..8fd331dee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3499FE"; +const SiAcode = React__namespace.forwardRef(function SiAcode2({ title = "Acode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.846 3.139c-.38 0-.73.405-.73.956q0 .127.027.262c.765 3.946 2.288 11.91 3 15.682.1.535.492.799.751.799h1.713c.31 0 .743-.397.743-.756a.4.4 0 0 0-.006-.072c-.118-.682-.243-1.404-.371-2.153a1.2 1.2 0 0 1-.64-.275 1.37 1.37 0 0 1-.435-.562c-.195-.483-.214-1.152.274-1.637q.138-.137.32-.322c-.686-4.002-1.413-8.274-1.889-11.079-.072-.427-.45-.843-.773-.843zm-1.666.023c-.323 0-.701.416-.774.844-.476 2.808-1.204 7.085-1.89 11.09l.312.314c.488.485.469 1.152.274 1.635v.002c-.093.229-.242.41-.434.562a1.2 1.2 0 0 1-.633.274l-.369 2.148a.4.4 0 0 0-.006.072c0 .36.432.758.742.758h1.713c.26 0 .651-.264.752-.799.441-2.338 1.194-6.29 1.885-9.894-.418-2.182-.812-4.232-1.1-5.715-.092-.476.006-.947.24-1.29zm6.894 4.145c-.3-.001-.609.277-.71.529-.131.322-.131.803.161 1.094.794.788 3.078 3.177 3.295 3.404-.217.228-2.5 2.614-3.295 3.402-.175.175-.245.418-.245.654 0 .158.031.313.083.442.102.252.41.53.711.53.529-.003 1.644 0 2.172 0 .195 0 .37-.103.545-.28.953-.964 2.767-2.836 3.781-3.912.068-.071.139-.135.194-.193a.87.87 0 0 0 .234-.602c0-.044-.004-.098-.008-.143a.84.84 0 0 0-.226-.54c-.055-.059-.126-.123-.194-.194a292 292 0 0 0-3.781-3.912c-.175-.177-.35-.28-.545-.28-.528 0-1.643.003-2.172 0m-12.32.027c-.195 0-.37.102-.545.28-.953.964-2.767 2.835-3.781 3.911-.068.072-.139.134-.194.192a.85.85 0 0 0-.226.543 2 2 0 0 0-.008.142c0 .168.046.403.234.602.055.058.126.122.194.193a292 292 0 0 0 3.781 3.912c.175.177.35.28.545.28.528 0 1.643-.002 2.172 0 .3 0 .609-.28.71-.532.131-.322.131-.803-.161-1.093-.794-.789-3.078-3.176-3.295-3.403.217-.227 2.501-2.615 3.295-3.404.175-.174.245-.417.245-.653 0-.157-.031-.312-.083-.44-.102-.252-.41-.531-.711-.53-.53.002-1.644 0-2.172 0z" }) + ] + } + ); +}); + +exports.default = SiAcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.d.ts new file mode 100644 index 000000000..c02e5910c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3499FE"; +declare const SiAcode: IconType; +export { SiAcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.mjs new file mode 100644 index 000000000..399e9a854 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3499FE"; +const SiAcode = React.forwardRef(function SiAcode2({ title = "Acode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.846 3.139c-.38 0-.73.405-.73.956q0 .127.027.262c.765 3.946 2.288 11.91 3 15.682.1.535.492.799.751.799h1.713c.31 0 .743-.397.743-.756a.4.4 0 0 0-.006-.072c-.118-.682-.243-1.404-.371-2.153a1.2 1.2 0 0 1-.64-.275 1.37 1.37 0 0 1-.435-.562c-.195-.483-.214-1.152.274-1.637q.138-.137.32-.322c-.686-4.002-1.413-8.274-1.889-11.079-.072-.427-.45-.843-.773-.843zm-1.666.023c-.323 0-.701.416-.774.844-.476 2.808-1.204 7.085-1.89 11.09l.312.314c.488.485.469 1.152.274 1.635v.002c-.093.229-.242.41-.434.562a1.2 1.2 0 0 1-.633.274l-.369 2.148a.4.4 0 0 0-.006.072c0 .36.432.758.742.758h1.713c.26 0 .651-.264.752-.799.441-2.338 1.194-6.29 1.885-9.894-.418-2.182-.812-4.232-1.1-5.715-.092-.476.006-.947.24-1.29zm6.894 4.145c-.3-.001-.609.277-.71.529-.131.322-.131.803.161 1.094.794.788 3.078 3.177 3.295 3.404-.217.228-2.5 2.614-3.295 3.402-.175.175-.245.418-.245.654 0 .158.031.313.083.442.102.252.41.53.711.53.529-.003 1.644 0 2.172 0 .195 0 .37-.103.545-.28.953-.964 2.767-2.836 3.781-3.912.068-.071.139-.135.194-.193a.87.87 0 0 0 .234-.602c0-.044-.004-.098-.008-.143a.84.84 0 0 0-.226-.54c-.055-.059-.126-.123-.194-.194a292 292 0 0 0-3.781-3.912c-.175-.177-.35-.28-.545-.28-.528 0-1.643.003-2.172 0m-12.32.027c-.195 0-.37.102-.545.28-.953.964-2.767 2.835-3.781 3.911-.068.072-.139.134-.194.192a.85.85 0 0 0-.226.543 2 2 0 0 0-.008.142c0 .168.046.403.234.602.055.058.126.122.194.193a292 292 0 0 0 3.781 3.912c.175.177.35.28.545.28.528 0 1.643-.002 2.172 0 .3 0 .609-.28.71-.532.131-.322.131-.803-.161-1.093-.794-.789-3.078-3.176-3.295-3.403.217-.227 2.501-2.615 3.295-3.404.175-.174.245-.417.245-.653 0-.157-.031-.312-.083-.44-.102-.252-.41-.531-.711-.53-.53.002-1.644 0-2.172 0z" }) + ] + } + ); +}); + +export { SiAcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.cjs new file mode 100644 index 000000000..5a332a054 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3A4259"; +const SiActigraph = React__namespace.forwardRef(function SiActigraph2({ title = "ActiGraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.18899 0 .8597 24h4.15078L12 4.97502h.0304L18.9587 24h4.1816L14.18736.91564C13.97372.36626 13.44452 0 12.85444 0ZM12 13.71434a2.47223 2.47223 0 0 0-2.4723 2.47211A2.47223 2.47223 0 0 0 12 18.65876a2.47223 2.47223 0 0 0 2.47211-2.4723 2.47223 2.47223 0 0 0-2.4721-2.47212z" }) + ] + } + ); +}); + +exports.default = SiActigraph; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.d.ts new file mode 100644 index 000000000..facd3266f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3A4259"; +declare const SiActigraph: IconType; +export { SiActigraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.mjs new file mode 100644 index 000000000..d6900fa77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActigraph.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3A4259"; +const SiActigraph = React.forwardRef(function SiActigraph2({ title = "ActiGraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.18899 0 .8597 24h4.15078L12 4.97502h.0304L18.9587 24h4.1816L14.18736.91564C13.97372.36626 13.44452 0 12.85444 0ZM12 13.71434a2.47223 2.47223 0 0 0-2.4723 2.47211A2.47223 2.47223 0 0 0 12 18.65876a2.47223 2.47223 0 0 0 2.47211-2.4723 2.47223 2.47223 0 0 0-2.4721-2.47212z" }) + ] + } + ); +}); + +export { SiActigraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.cjs new file mode 100644 index 000000000..12dd9d8de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB746"; +const SiActiveloop = React__namespace.forwardRef(function SiActiveloop2({ title = "Activeloop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.7361.0003a8.5022 8.5022 0 0 0-2.7609.4702c-.3783.1325-1.2203.4447-1.5419.6056.0128 0-.008 0 .0401-.0006.0935-.0238.8998-.151 1.1045-.151.0834-.002.166-.004.2481-.004 1.2312-.004 2.3252.2387 3.469 1.0638 1.6364 1.1735 2.7617 3.1987 3.1116 5.1009.2968 1.8754.058 3.8578-.539 5.7067-.8609 2.328-2.459 4.1353-4.3602 5.1857a.6094.6094 0 0 1-.038.0188c1.6566-.1906 3.3363-.8961 4.7763-2.0437.804-.6435 1.542-1.429 2.1756-2.347.5676-.8328 1.0025-1.7034 1.3145-2.593.792-2.2732.7474-4.64-.0864-6.5953-.003-.007-.004-.0114-.008-.02-.5296-1.2397-1.3621-2.309-2.5066-3.0945C16.8462.4216 15.2953-.005 13.736 0zM9.46 1.0828c-1.6656.1448-3.1906.971-3.914 1.4507-1.3998.9275-2.5442 2.1104-3.3955 3.4447-2.4213 3.7855-2.5442 8.7916.0946 12.7757 3.5659 5.3848 10.8204 6.8706 16.2116 3.3029 5.3818-3.5677 6.867-10.8262 3.3011-16.211a11.3559 11.3559 0 0 0-1.1047-1.4241l.1494.3073c.8323 1.959.8229 4.5048.0378 6.776-.3122.8897-.7473 1.7603-1.3148 2.593-.6338.918-1.3998 1.6563-2.2322 2.2714-2.743 2.0157-5.467 1.6655-5.4576 1.675-.8876-.0283-1.6979-.2138-2.4495-.4167-2.7807-.8422-4.5871-2.9052-4.502-5.5455.104-3.2555 3.282-5.801 7.1033-5.678.7093.0189 1.3809.1419 2.024.3217 1.2296.3501 2.5916 1.2017 3.424 2.2048l.0469.0548c-.0003-.4859-.017-1.0982-.1797-1.8623-.4068-1.8928-1.4659-3.596-3.1306-4.7411-1.239-.8517-2.6578-1.2492-4.086-1.3154-.209-.008-.4173-.0008-.626.016zm2.389 5.4591c-3.561.0366-6.4667 2.4597-6.5675 5.531-.0795 2.4028 1.5808 4.5078 4.0022 5.447a4.8728 4.8728 0 0 1-.1594-.2c-1.7566-2.3467-1.2053-6.0692 1.3878-8.6636 1.21-1.2118 2.4454-1.7402 3.0135-1.9512 0 0-.6286-.1413-1.3301-.159-.1326-.006-.3466-.004-.3466-.004z" }) + ] + } + ); +}); + +exports.default = SiActiveloop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.d.ts new file mode 100644 index 000000000..cc5086a58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB746"; +declare const SiActiveloop: IconType; +export { SiActiveloop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.mjs new file mode 100644 index 000000000..13f3bc84d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActiveloop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB746"; +const SiActiveloop = React.forwardRef(function SiActiveloop2({ title = "Activeloop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.7361.0003a8.5022 8.5022 0 0 0-2.7609.4702c-.3783.1325-1.2203.4447-1.5419.6056.0128 0-.008 0 .0401-.0006.0935-.0238.8998-.151 1.1045-.151.0834-.002.166-.004.2481-.004 1.2312-.004 2.3252.2387 3.469 1.0638 1.6364 1.1735 2.7617 3.1987 3.1116 5.1009.2968 1.8754.058 3.8578-.539 5.7067-.8609 2.328-2.459 4.1353-4.3602 5.1857a.6094.6094 0 0 1-.038.0188c1.6566-.1906 3.3363-.8961 4.7763-2.0437.804-.6435 1.542-1.429 2.1756-2.347.5676-.8328 1.0025-1.7034 1.3145-2.593.792-2.2732.7474-4.64-.0864-6.5953-.003-.007-.004-.0114-.008-.02-.5296-1.2397-1.3621-2.309-2.5066-3.0945C16.8462.4216 15.2953-.005 13.736 0zM9.46 1.0828c-1.6656.1448-3.1906.971-3.914 1.4507-1.3998.9275-2.5442 2.1104-3.3955 3.4447-2.4213 3.7855-2.5442 8.7916.0946 12.7757 3.5659 5.3848 10.8204 6.8706 16.2116 3.3029 5.3818-3.5677 6.867-10.8262 3.3011-16.211a11.3559 11.3559 0 0 0-1.1047-1.4241l.1494.3073c.8323 1.959.8229 4.5048.0378 6.776-.3122.8897-.7473 1.7603-1.3148 2.593-.6338.918-1.3998 1.6563-2.2322 2.2714-2.743 2.0157-5.467 1.6655-5.4576 1.675-.8876-.0283-1.6979-.2138-2.4495-.4167-2.7807-.8422-4.5871-2.9052-4.502-5.5455.104-3.2555 3.282-5.801 7.1033-5.678.7093.0189 1.3809.1419 2.024.3217 1.2296.3501 2.5916 1.2017 3.424 2.2048l.0469.0548c-.0003-.4859-.017-1.0982-.1797-1.8623-.4068-1.8928-1.4659-3.596-3.1306-4.7411-1.239-.8517-2.6578-1.2492-4.086-1.3154-.209-.008-.4173-.0008-.626.016zm2.389 5.4591c-3.561.0366-6.4667 2.4597-6.5675 5.531-.0795 2.4028 1.5808 4.5078 4.0022 5.447a4.8728 4.8728 0 0 1-.1594-.2c-1.7566-2.3467-1.2053-6.0692 1.3878-8.6636 1.21-1.2118 2.4454-1.7402 3.0135-1.9512 0 0-.6286-.1413-1.3301-.159-.1326-.006-.3466-.004-.3466-.004z" }) + ] + } + ); +}); + +export { SiActiveloop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.cjs new file mode 100644 index 000000000..86457abfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiActivision = React__namespace.forwardRef(function SiActivision2({ title = "Activision", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.88 8.91L0 14.284h.985l.27-.718h1.252l.269.718h.985zm3.224.359l-.537.984h2.15v4.03H7.7v-4.03h1.522l1.882 4.837 1.791-4.837h4.567l-.537-.984H12.18l-1.074 2.865L9.94 9.269zm16.21 1.163v3.762h.986v-1.523l1.7 1.702v-3.76h-.896v1.342zm-15.94.09c-1.075 0-1.881.807-1.881 1.881 0 1.075.806 1.88 1.88 1.88.448 0 .895-.179 1.164-.447L6 12.94c-.18.18-.358.27-.627.27a.897.897 0 0 1-.895-.896c0-.448.358-.896.895-.896.18 0 .448.089.537.268l.627-.715c-.27-.269-.716-.448-1.164-.448zm7.522 0v3.672h.985v-3.671zm2.148 0c-.358 0-.804.18-.804.896 0 .896 1.074 1.433.985 1.792-.09.179-.27.178-.359.178h-.626v.806h1.074c.448 0 .895-.269.895-.806 0-.985-1.253-1.611-.984-1.97 0-.09.178-.09.178-.09h.628v-.805zm1.255 0v3.672h.984v-3.671zm3.045 0c-1.075 0-1.88.807-1.88 1.881 0 .985.805 1.88 1.88 1.88 1.074 0 1.88-.805 1.88-1.88 0-1.074-.806-1.88-1.88-1.88zm-11.016.09v3.672h.986v-3.672zm11.016.896c.448 0 .895.358.895.895a.897.897 0 0 1-.895.896c-.538 0-.985-.358-.896-.896 0-.448.358-.895.896-.895zm-17.464.178l.27.896h-.54z" }) + ] + } + ); +}); + +exports.default = SiActivision; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.d.ts new file mode 100644 index 000000000..4e2cdcbdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiActivision: IconType; +export { SiActivision as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.mjs new file mode 100644 index 000000000..fcb8de3d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActivision.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiActivision = React.forwardRef(function SiActivision2({ title = "Activision", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.88 8.91L0 14.284h.985l.27-.718h1.252l.269.718h.985zm3.224.359l-.537.984h2.15v4.03H7.7v-4.03h1.522l1.882 4.837 1.791-4.837h4.567l-.537-.984H12.18l-1.074 2.865L9.94 9.269zm16.21 1.163v3.762h.986v-1.523l1.7 1.702v-3.76h-.896v1.342zm-15.94.09c-1.075 0-1.881.807-1.881 1.881 0 1.075.806 1.88 1.88 1.88.448 0 .895-.179 1.164-.447L6 12.94c-.18.18-.358.27-.627.27a.897.897 0 0 1-.895-.896c0-.448.358-.896.895-.896.18 0 .448.089.537.268l.627-.715c-.27-.269-.716-.448-1.164-.448zm7.522 0v3.672h.985v-3.671zm2.148 0c-.358 0-.804.18-.804.896 0 .896 1.074 1.433.985 1.792-.09.179-.27.178-.359.178h-.626v.806h1.074c.448 0 .895-.269.895-.806 0-.985-1.253-1.611-.984-1.97 0-.09.178-.09.178-.09h.628v-.805zm1.255 0v3.672h.984v-3.671zm3.045 0c-1.075 0-1.88.807-1.88 1.881 0 .985.805 1.88 1.88 1.88 1.074 0 1.88-.805 1.88-1.88 0-1.074-.806-1.88-1.88-1.88zm-11.016.09v3.672h.986v-3.672zm11.016.896c.448 0 .895.358.895.895a.897.897 0 0 1-.895.896c-.538 0-.985-.358-.896-.896 0-.448.358-.895.896-.895zm-17.464.178l.27.896h-.54z" }) + ] + } + ); +}); + +export { SiActivision as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.cjs new file mode 100644 index 000000000..f8901f8e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F1007E"; +const SiActivitypub = React__namespace.forwardRef(function SiActivitypub2({ title = "ActivityPub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.91 4.442L0 10.74v2.52L8.727 8.22v10.077l2.182 1.26zM6.545 12l-4.364 2.52 4.364 2.518zm6.545-2.52L17.455 12l-4.364 2.52zm0-5.038L24 10.74v2.52l-10.91 6.298v-2.52L21.819 12 13.091 6.96z" }) + ] + } + ); +}); + +exports.default = SiActivitypub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.d.ts new file mode 100644 index 000000000..80aa3c805 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F1007E"; +declare const SiActivitypub: IconType; +export { SiActivitypub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.mjs new file mode 100644 index 000000000..0bd8d0f24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActivitypub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F1007E"; +const SiActivitypub = React.forwardRef(function SiActivitypub2({ title = "ActivityPub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.91 4.442L0 10.74v2.52L8.727 8.22v10.077l2.182 1.26zM6.545 12l-4.364 2.52 4.364 2.518zm6.545-2.52L17.455 12l-4.364 2.52zm0-5.038L24 10.74v2.52l-10.91 6.298v-2.52L21.819 12 13.091 6.96z" }) + ] + } + ); +}); + +export { SiActivitypub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActix.cjs new file mode 100644 index 000000000..dc77a0c22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiActix = React__namespace.forwardRef(function SiActix2({ title = "Actix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.583 3.895c-.27.22-.788.078-1.164-.334-.156.156-.269.298-.411.454.411.334.596.866.376 1.114-.22.27-.752.22-1.163-.113-.114.156-.22.333-.334.489.454.298.674.752.518 1.057s-.674.334-1.163.078c-.079.192-.192.376-.27.518.489.22.752.596.631.944-.113.298-.596.411-1.085.269-.078.192-.114.376-.156.568.489.156.816.489.752.787-.078.334-.518.518-1.008.454-.028.192-.028.412-.078.596.49.078.866.334.866.674 0 .341-.412.568-.894.596v.596c.49 0 .894.22.944.518.028.298-.298.631-.788.709.028.192.078.412.114.596.489-.078.893.078.972.376.078.298-.192.674-.632.816.078.192.114.376.192.568.454-.156.894-.029 1.007.22.114.298-.078.674-.518.943.078.192.192.334.298.518.412-.22.866-.192 1.008.078.191.27 0 .674-.334.972.114.156.22.333.376.489.376-.269.816-.297 1.007-.078.22.22.114.674-.191 1.008.156.156.298.298.454.411.333-.333.752-.454 1.007-.269.249.191.22.631-.028 1.057.156.113.333.22.489.333.298-.376.674-.567.944-.411s.333.596.114 1.057c.191.113.376.191.517.269.22-.411.596-.674.894-.567.298.113.412.567.298 1.007.192.078.376.114.568.192.156-.454.489-.752.787-.71.298.078.49.49.454.972.192.029.412.078.596.078.078-.489.334-.865.674-.816.334 0 .568.412.596.944h.596c0-.49.22-.894.518-.944.333-.028.631.334.752.816.191-.028.411-.078.596-.113-.114-.49.078-.944.376-1.057.333-.078.709.22.865.752.192-.078.376-.114.568-.192-.192-.489-.114-.972.191-1.114.298-.142.752.156.972.632.192-.078.376-.192.518-.27-.269-.454-.269-.972 0-1.163.298-.192.788.028 1.086.489.156-.113.333-.22.489-.376-.376-.411-.454-.943-.191-1.163.269-.22.787-.078 1.163.333.156-.156.298-.298.412-.411-.455-.376-.596-.866-.412-1.114.22-.27.752-.22 1.192.156l.028.028c.114-.156.27-.333.376-.489-.489-.298-.752-.752-.596-1.086.192-.298.71-.333 1.192-.028l.029.028c.113-.191.191-.376.269-.567h-.028c-.518-.192-.866-.632-.752-.972.113-.348.674-.454 1.192-.22.028 0 .028.028.078.028.078-.191.156-.411.191-.596h-.078c-.567-.113-.972-.489-.894-.815.078-.334.596-.518 1.164-.412.028 0 .078 0 .113.029.029-.22.078-.412.114-.632h-.114c-.567-.028-1.007-.333-1.007-.674 0-.34.489-.631 1.057-.596H24v-.631h-.114c-.567.078-1.057-.192-1.085-.518-.028-.333.376-.674.972-.752h.156c-.028-.22-.078-.411-.113-.631-.029 0-.078.028-.157.028-.567.156-1.085 0-1.163-.333-.113-.334.27-.752.816-.894.028 0 .113-.029.156-.029-.078-.22-.156-.411-.22-.596-.028.029-.078.029-.156.078-.518.22-1.057.156-1.192-.156-.156-.333.156-.787.674-1.007.078-.028.114-.028.192-.078-.114-.192-.192-.376-.298-.568-.029.029-.078.078-.156.114-.49.298-1.008.333-1.242.028-.191-.298.028-.787.518-1.114.028-.028.113-.078.156-.078-.113-.191-.27-.333-.411-.517-.029.028-.078.078-.114.113-.411.376-.972.49-1.192.22s-.078-.787.334-1.163c.028-.029.113-.079.156-.114-.156-.156-.298-.298-.49-.454-.028.028-.078.078-.113.156-.376.454-.866.631-1.164.412-.269-.22-.22-.752.156-1.192.029-.029.078-.114.114-.156-.192-.114-.334-.27-.518-.376-.028.028-.028.113-.078.156-.298.489-.752.752-1.086.596-.298-.192-.333-.71-.028-1.192.028-.029.078-.114.114-.156-.192-.114-.376-.192-.596-.298 0 .028-.029.113-.029.156-.191.518-.631.865-.972.752-.347-.114-.454-.674-.22-1.192.029-.028.029-.114.078-.156-.191-.078-.411-.114-.631-.192 0 .029 0 .078-.028.156-.114.568-.49.972-.816.894-.334-.078-.518-.596-.412-1.163 0-.029.029-.114.029-.156-.22-.029-.412-.078-.632-.078v.113c-.028.568-.333 1.008-.674 1.008-.333 0-.631-.49-.595-1.057V.078h-.632v.114c.078.567-.191 1.057-.518 1.085-.333.028-.674-.376-.752-.972V.192c-.191.028-.411.078-.596.113 0 .028 0 .028.029.078.156.568 0 1.086-.334 1.164-.333.113-.752-.27-.894-.816V.653c-.191.078-.376.156-.596.22 0 0 0 .028.029.028.22.518.156 1.057-.156 1.192-.334.156-.788-.156-1.008-.674V1.39c-.191.114-.376.192-.518.298.298.49.334 1.008.029 1.242-.298.191-.788-.028-1.114-.518-.156.114-.333.27-.489.376.333.369.439.887.177 1.107m-.518 6.491c-.454-.156-.709-.631-.568-1.085.157-.454.632-.71 1.086-.568.454.156.709.631.567 1.086-.113.446-.631.709-1.085.567m.78 8.194c-2.17-2.391-3.114-5.725-1.837-6.889 1.241-1.113 4.044.49 6.257 2.881 2.171 2.39 3.554 5.313 2.277 6.477-1.269 1.135-4.526-.107-6.697-2.469m9.138 2.171c-.49.113-.944-.192-1.057-.674-.114-.49.191-.944.674-1.057.489-.114.943.191 1.057.674.085.511-.213.95-.674 1.057m6.073-12.798c1.603.518 2.17 3.93 1.191 7.002s-3.412 5.555-5.015 5.065c-1.604-.518-1.604-3.788-.632-6.86.965-3.036 2.852-5.746 4.456-5.207m-1.384-2.029c.334.376.298.894-.078 1.241-.376.348-.894.298-1.241-.078-.348-.376-.298-.894.078-1.241.376-.298.943-.256 1.241.078m-4.909 4.498c.894.971.816 2.468-.156 3.362s-2.469.816-3.363-.156-.816-2.469.156-3.363c.958-.901 2.469-.822 3.363.157M9.946 2.554c3.143-.674 6.513.191 6.889 1.837s-2.469 3.257-5.612 3.966c-3.143.674-6.399.412-6.746-1.241-.384-1.682 2.319-3.881 5.469-4.562" }) + ] + } + ); +}); + +exports.default = SiActix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiActix.d.ts new file mode 100644 index 000000000..bbf24a590 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiActix: IconType; +export { SiActix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActix.mjs new file mode 100644 index 000000000..962a5ff1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiActix = React.forwardRef(function SiActix2({ title = "Actix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.583 3.895c-.27.22-.788.078-1.164-.334-.156.156-.269.298-.411.454.411.334.596.866.376 1.114-.22.27-.752.22-1.163-.113-.114.156-.22.333-.334.489.454.298.674.752.518 1.057s-.674.334-1.163.078c-.079.192-.192.376-.27.518.489.22.752.596.631.944-.113.298-.596.411-1.085.269-.078.192-.114.376-.156.568.489.156.816.489.752.787-.078.334-.518.518-1.008.454-.028.192-.028.412-.078.596.49.078.866.334.866.674 0 .341-.412.568-.894.596v.596c.49 0 .894.22.944.518.028.298-.298.631-.788.709.028.192.078.412.114.596.489-.078.893.078.972.376.078.298-.192.674-.632.816.078.192.114.376.192.568.454-.156.894-.029 1.007.22.114.298-.078.674-.518.943.078.192.192.334.298.518.412-.22.866-.192 1.008.078.191.27 0 .674-.334.972.114.156.22.333.376.489.376-.269.816-.297 1.007-.078.22.22.114.674-.191 1.008.156.156.298.298.454.411.333-.333.752-.454 1.007-.269.249.191.22.631-.028 1.057.156.113.333.22.489.333.298-.376.674-.567.944-.411s.333.596.114 1.057c.191.113.376.191.517.269.22-.411.596-.674.894-.567.298.113.412.567.298 1.007.192.078.376.114.568.192.156-.454.489-.752.787-.71.298.078.49.49.454.972.192.029.412.078.596.078.078-.489.334-.865.674-.816.334 0 .568.412.596.944h.596c0-.49.22-.894.518-.944.333-.028.631.334.752.816.191-.028.411-.078.596-.113-.114-.49.078-.944.376-1.057.333-.078.709.22.865.752.192-.078.376-.114.568-.192-.192-.489-.114-.972.191-1.114.298-.142.752.156.972.632.192-.078.376-.192.518-.27-.269-.454-.269-.972 0-1.163.298-.192.788.028 1.086.489.156-.113.333-.22.489-.376-.376-.411-.454-.943-.191-1.163.269-.22.787-.078 1.163.333.156-.156.298-.298.412-.411-.455-.376-.596-.866-.412-1.114.22-.27.752-.22 1.192.156l.028.028c.114-.156.27-.333.376-.489-.489-.298-.752-.752-.596-1.086.192-.298.71-.333 1.192-.028l.029.028c.113-.191.191-.376.269-.567h-.028c-.518-.192-.866-.632-.752-.972.113-.348.674-.454 1.192-.22.028 0 .028.028.078.028.078-.191.156-.411.191-.596h-.078c-.567-.113-.972-.489-.894-.815.078-.334.596-.518 1.164-.412.028 0 .078 0 .113.029.029-.22.078-.412.114-.632h-.114c-.567-.028-1.007-.333-1.007-.674 0-.34.489-.631 1.057-.596H24v-.631h-.114c-.567.078-1.057-.192-1.085-.518-.028-.333.376-.674.972-.752h.156c-.028-.22-.078-.411-.113-.631-.029 0-.078.028-.157.028-.567.156-1.085 0-1.163-.333-.113-.334.27-.752.816-.894.028 0 .113-.029.156-.029-.078-.22-.156-.411-.22-.596-.028.029-.078.029-.156.078-.518.22-1.057.156-1.192-.156-.156-.333.156-.787.674-1.007.078-.028.114-.028.192-.078-.114-.192-.192-.376-.298-.568-.029.029-.078.078-.156.114-.49.298-1.008.333-1.242.028-.191-.298.028-.787.518-1.114.028-.028.113-.078.156-.078-.113-.191-.27-.333-.411-.517-.029.028-.078.078-.114.113-.411.376-.972.49-1.192.22s-.078-.787.334-1.163c.028-.029.113-.079.156-.114-.156-.156-.298-.298-.49-.454-.028.028-.078.078-.113.156-.376.454-.866.631-1.164.412-.269-.22-.22-.752.156-1.192.029-.029.078-.114.114-.156-.192-.114-.334-.27-.518-.376-.028.028-.028.113-.078.156-.298.489-.752.752-1.086.596-.298-.192-.333-.71-.028-1.192.028-.029.078-.114.114-.156-.192-.114-.376-.192-.596-.298 0 .028-.029.113-.029.156-.191.518-.631.865-.972.752-.347-.114-.454-.674-.22-1.192.029-.028.029-.114.078-.156-.191-.078-.411-.114-.631-.192 0 .029 0 .078-.028.156-.114.568-.49.972-.816.894-.334-.078-.518-.596-.412-1.163 0-.029.029-.114.029-.156-.22-.029-.412-.078-.632-.078v.113c-.028.568-.333 1.008-.674 1.008-.333 0-.631-.49-.595-1.057V.078h-.632v.114c.078.567-.191 1.057-.518 1.085-.333.028-.674-.376-.752-.972V.192c-.191.028-.411.078-.596.113 0 .028 0 .028.029.078.156.568 0 1.086-.334 1.164-.333.113-.752-.27-.894-.816V.653c-.191.078-.376.156-.596.22 0 0 0 .028.029.028.22.518.156 1.057-.156 1.192-.334.156-.788-.156-1.008-.674V1.39c-.191.114-.376.192-.518.298.298.49.334 1.008.029 1.242-.298.191-.788-.028-1.114-.518-.156.114-.333.27-.489.376.333.369.439.887.177 1.107m-.518 6.491c-.454-.156-.709-.631-.568-1.085.157-.454.632-.71 1.086-.568.454.156.709.631.567 1.086-.113.446-.631.709-1.085.567m.78 8.194c-2.17-2.391-3.114-5.725-1.837-6.889 1.241-1.113 4.044.49 6.257 2.881 2.171 2.39 3.554 5.313 2.277 6.477-1.269 1.135-4.526-.107-6.697-2.469m9.138 2.171c-.49.113-.944-.192-1.057-.674-.114-.49.191-.944.674-1.057.489-.114.943.191 1.057.674.085.511-.213.95-.674 1.057m6.073-12.798c1.603.518 2.17 3.93 1.191 7.002s-3.412 5.555-5.015 5.065c-1.604-.518-1.604-3.788-.632-6.86.965-3.036 2.852-5.746 4.456-5.207m-1.384-2.029c.334.376.298.894-.078 1.241-.376.348-.894.298-1.241-.078-.348-.376-.298-.894.078-1.241.376-.298.943-.256 1.241.078m-4.909 4.498c.894.971.816 2.468-.156 3.362s-2.469.816-3.363-.156-.816-2.469.156-3.363c.958-.901 2.469-.822 3.363.157M9.946 2.554c3.143-.674 6.513.191 6.889 1.837s-2.469 3.257-5.612 3.966c-3.143.674-6.399.412-6.746-1.241-.384-1.682 2.319-3.881 5.469-4.562" }) + ] + } + ); +}); + +export { SiActix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.cjs new file mode 100644 index 000000000..f8e73f4c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6B46C1"; +const SiActualbudget = React__namespace.forwardRef(function SiActualbudget2({ title = "Actual Budget", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.442 10.779.737 2.01-16.758 6.145a.253.253 0 0 1-.324-.15l-.563-1.536a.253.253 0 0 1 .15-.324zM1.13 23.309 12.036.145A.253.253 0 0 1 12.265 0h.478c.097 0 .185.055.227.142l7.036 14.455 2.206-.848c.13-.05.277.015.327.145l.587 1.526a.253.253 0 0 1-.145.327l-2.034.783 2.51 5.156a.253.253 0 0 1-.117.338l-1.47.716a.253.253 0 0 1-.339-.117l-2.59-5.322-17.37 6.682a.253.253 0 0 1-.328-.145c0-.001 0-.003-.002-.004l-.12-.33a.252.252 0 0 1 .009-.195zM12.528 4.127 4.854 20.425 18 15.369z" }) + ] + } + ); +}); + +exports.default = SiActualbudget; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.d.ts new file mode 100644 index 000000000..844dbbd41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6B46C1"; +declare const SiActualbudget: IconType; +export { SiActualbudget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.mjs new file mode 100644 index 000000000..d35850e03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiActualbudget.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6B46C1"; +const SiActualbudget = React.forwardRef(function SiActualbudget2({ title = "Actual Budget", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.442 10.779.737 2.01-16.758 6.145a.253.253 0 0 1-.324-.15l-.563-1.536a.253.253 0 0 1 .15-.324zM1.13 23.309 12.036.145A.253.253 0 0 1 12.265 0h.478c.097 0 .185.055.227.142l7.036 14.455 2.206-.848c.13-.05.277.015.327.145l.587 1.526a.253.253 0 0 1-.145.327l-2.034.783 2.51 5.156a.253.253 0 0 1-.117.338l-1.47.716a.253.253 0 0 1-.339-.117l-2.59-5.322-17.37 6.682a.253.253 0 0 1-.328-.145c0-.001 0-.003-.002-.004l-.12-.33a.252.252 0 0 1 .009-.195zM12.528 4.127 4.854 20.425 18 15.369z" }) + ] + } + ); +}); + +export { SiActualbudget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.cjs new file mode 100644 index 000000000..d3a6c54bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAcura = React__namespace.forwardRef(function SiAcura2({ title = "Acura", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.77 10.908c-.23-4.018-1.492-6.89-3.33-8.496C18.489.689 14.814 0 12.057 0c-2.87 0-6.43.689-8.382 2.412C1.839 4.019.46 7.004.23 10.908c-.23 3.675.574 7.81 2.641 10.106C4.823 23.31 8.843 24 11.943 24s7.12-.689 9.072-2.986c2.18-2.296 2.986-6.316 2.755-10.106m-12.4-9.761h1.377v8.73H11.37ZM1.839 14.585c-.116-1.493-.575-6.89 1.607-9.99.919-1.38 2.182-2.297 3.56-2.757 1.838-.689 4.134-.689 4.134-.689-.919 2.181-2.641 6.89-2.985 7.924-.46 1.263-.804 1.952-1.15 4.248-.229 1.838-.688 6.546-.688 8.612-2.641-1.262-4.133-3.56-4.478-7.35m15.847 7.466c-1.723.803-3.905.918-5.628.918-1.722 0-3.903-.23-5.626-.918.574-1.607 3.33-8.269 4.823-10.91h1.608c1.493 2.643 4.248 9.417 4.823 10.91m4.592-7.466c-.344 3.79-1.837 6.088-4.363 7.35-.115-2.066-.459-6.774-.689-8.612-.345-2.296-.688-2.985-1.148-4.248-.345-1.034-2.182-5.742-2.986-7.924 0 0 2.181 0 4.134.69 1.378.458 2.642 1.377 3.56 2.756 1.952 3.1 1.607 8.497 1.493 9.99" }) + ] + } + ); +}); + +exports.default = SiAcura; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.d.ts new file mode 100644 index 000000000..634c1325e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAcura: IconType; +export { SiAcura as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.mjs new file mode 100644 index 000000000..3baf4503c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAcura.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAcura = React.forwardRef(function SiAcura2({ title = "Acura", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.77 10.908c-.23-4.018-1.492-6.89-3.33-8.496C18.489.689 14.814 0 12.057 0c-2.87 0-6.43.689-8.382 2.412C1.839 4.019.46 7.004.23 10.908c-.23 3.675.574 7.81 2.641 10.106C4.823 23.31 8.843 24 11.943 24s7.12-.689 9.072-2.986c2.18-2.296 2.986-6.316 2.755-10.106m-12.4-9.761h1.377v8.73H11.37ZM1.839 14.585c-.116-1.493-.575-6.89 1.607-9.99.919-1.38 2.182-2.297 3.56-2.757 1.838-.689 4.134-.689 4.134-.689-.919 2.181-2.641 6.89-2.985 7.924-.46 1.263-.804 1.952-1.15 4.248-.229 1.838-.688 6.546-.688 8.612-2.641-1.262-4.133-3.56-4.478-7.35m15.847 7.466c-1.723.803-3.905.918-5.628.918-1.722 0-3.903-.23-5.626-.918.574-1.607 3.33-8.269 4.823-10.91h1.608c1.493 2.643 4.248 9.417 4.823 10.91m4.592-7.466c-.344 3.79-1.837 6.088-4.363 7.35-.115-2.066-.459-6.774-.689-8.612-.345-2.296-.688-2.985-1.148-4.248-.345-1.034-2.182-5.742-2.986-7.924 0 0 2.181 0 4.134.69 1.378.458 2.642 1.377 3.56 2.756 1.952 3.1 1.607 8.497 1.493 9.99" }) + ] + } + ); +}); + +export { SiAcura as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAda.cjs new file mode 100644 index 000000000..66206a69a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAda = React__namespace.forwardRef(function SiAda2({ title = "Ada", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.869 13.45c0-.428.45-.585 1.18-.663.606-.068 1.09-.169 1.404-.371v.539c0 .644-.542.957-1.265 1.028a47.006 47 0 0 0-.925-.077c-.25-.095-.394-.256-.394-.457m-13.99.19h3.113l.256.755a33.004 33 0 0 0-3.96.97zM6.43 9.056l1.09 3.202H5.34zm6.921 1.606c.82 0 1.483.742 1.483 1.663 0 .651-.348 1.212-.852 1.473a47.006 47 0 0 0-1.152.053c-.562-.227-.961-.812-.961-1.526 0-.944.663-1.663 1.483-1.663m9.484 3.657v-3.072c0-.461-.18-1.978-2.529-1.978-1.516 0-2.572.82-2.718 1.921h1.483c.134-.494.741-.73 1.27-.73.662 0 1.055.247 1.055.55 0 .472-.685.585-1.651.675-1.28.112-2.37.449-2.37 1.752q0 .194.035.367a51.006 51 0 0 0-1.092-.028V6.844h-1.484v3.123a2.43 2.43 0 0 0-1.707-.674c-1.505 0-2.752 1.303-2.752 3.022a3.2 3.2 0 0 0 .474 1.702 38.005 38 0 0 0-1.12.14L7.376 7.406H5.498l-2.992 8.587A22.003 22 0 0 0 0 17.156c3.835-1.673 13.295-3.938 24-2.55-.051-.057-.466-.166-1.164-.286" }) + ] + } + ); +}); + +exports.default = SiAda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAda.d.ts new file mode 100644 index 000000000..cd4f84ffa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAda: IconType; +export { SiAda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAda.mjs new file mode 100644 index 000000000..b523c824b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAda = React.forwardRef(function SiAda2({ title = "Ada", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.869 13.45c0-.428.45-.585 1.18-.663.606-.068 1.09-.169 1.404-.371v.539c0 .644-.542.957-1.265 1.028a47.006 47 0 0 0-.925-.077c-.25-.095-.394-.256-.394-.457m-13.99.19h3.113l.256.755a33.004 33 0 0 0-3.96.97zM6.43 9.056l1.09 3.202H5.34zm6.921 1.606c.82 0 1.483.742 1.483 1.663 0 .651-.348 1.212-.852 1.473a47.006 47 0 0 0-1.152.053c-.562-.227-.961-.812-.961-1.526 0-.944.663-1.663 1.483-1.663m9.484 3.657v-3.072c0-.461-.18-1.978-2.529-1.978-1.516 0-2.572.82-2.718 1.921h1.483c.134-.494.741-.73 1.27-.73.662 0 1.055.247 1.055.55 0 .472-.685.585-1.651.675-1.28.112-2.37.449-2.37 1.752q0 .194.035.367a51.006 51 0 0 0-1.092-.028V6.844h-1.484v3.123a2.43 2.43 0 0 0-1.707-.674c-1.505 0-2.752 1.303-2.752 3.022a3.2 3.2 0 0 0 .474 1.702 38.005 38 0 0 0-1.12.14L7.376 7.406H5.498l-2.992 8.587A22.003 22 0 0 0 0 17.156c3.835-1.673 13.295-3.938 24-2.55-.051-.057-.466-.166-1.164-.286" }) + ] + } + ); +}); + +export { SiAda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.cjs new file mode 100644 index 000000000..67abacf6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAdafruit = React__namespace.forwardRef(function SiAdafruit2({ title = "Adafruit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.399 12.794c-.924.148-1.722-.037-1.781-.412-.06-.375.64-.798 1.565-.945.924-.147 1.721.038 1.78.412.06.374-.64.798-1.564.945m-.878 3.86c-.338.172-.957-.363-1.382-1.196-.426-.834-.497-1.65-.158-1.822.338-.172.956.363 1.382 1.196.425.833.497 1.65.158 1.822m-3.64-1.552c-.662.662-1.415.981-1.683.713-.27-.268.05-1.022.71-1.684.66-.663 1.414-.982 1.683-.714.269.268-.05 1.023-.71 1.685m-2.531-4.61c.171-.339.987-.268 1.82.156.834.424 1.372 1.042 1.2 1.38-.173.338-.988.269-1.822-.155-.834-.424-1.37-1.043-1.198-1.381m4.8-2.45c.375.058.56.856.414 1.78-.145.925-.566 1.625-.942 1.567-.374-.06-.56-.857-.415-1.78.145-.925.567-1.626.943-1.568m11.835 2.53c-.078-.491-.345-.632-.989-.837l-3.762-1.2s-2.283-.863-3.974.357c-.228.164-.464.351-.7.55.198-.236.385-.472.55-.7 1.215-1.694.349-3.975.349-3.975l-1.207-3.761c-.207-.643-.347-.91-.84-.986-.492-.078-.707.132-1.101.68l-2.305 3.209s-1.524 1.903-.888 3.89c.086.266.191.549.308.836a12.215 12.215 0 0 0-.497-.74C7.693 6.215 5.258 6.332 5.258 6.332S1.82 6.32 1.308 6.32c-.676-.003-.972.05-1.198.493-.226.443-.093.714.307 1.258.303.415 2.34 3.183 2.34 3.183S4.095 13.292 6.18 13.3c.28.001.58-.012.889-.034a12.317 12.317 0 0 0-.855.244c-1.98.656-2.619 3.01-2.619 3.01L2.36 20.273c-.21.64-.252.939.1 1.29.352.353.65.31 1.291.098.489-.16 3.75-1.242 3.75-1.242s2.352-.644 3.004-2.624c.088-.266.169-.556.243-.854a11.1 11.1 0 0 0-.03.887c.01 2.085 2.051 3.421 2.051 3.421l3.186 2.333c.546.398.816.531 1.26.305.443-.226.495-.523.491-1.199l-.022-3.95s.114-2.435-1.567-3.668a11.93 11.93 0 0 0-.739-.495c.287.115.568.22.836.304 1.986.633 3.888-.894 3.888-.894l3.204-2.31c.547-.395.756-.612.679-1.104" }) + ] + } + ); +}); + +exports.default = SiAdafruit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.d.ts new file mode 100644 index 000000000..8f06e597e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAdafruit: IconType; +export { SiAdafruit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.mjs new file mode 100644 index 000000000..2d519e1c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdafruit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAdafruit = React.forwardRef(function SiAdafruit2({ title = "Adafruit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.399 12.794c-.924.148-1.722-.037-1.781-.412-.06-.375.64-.798 1.565-.945.924-.147 1.721.038 1.78.412.06.374-.64.798-1.564.945m-.878 3.86c-.338.172-.957-.363-1.382-1.196-.426-.834-.497-1.65-.158-1.822.338-.172.956.363 1.382 1.196.425.833.497 1.65.158 1.822m-3.64-1.552c-.662.662-1.415.981-1.683.713-.27-.268.05-1.022.71-1.684.66-.663 1.414-.982 1.683-.714.269.268-.05 1.023-.71 1.685m-2.531-4.61c.171-.339.987-.268 1.82.156.834.424 1.372 1.042 1.2 1.38-.173.338-.988.269-1.822-.155-.834-.424-1.37-1.043-1.198-1.381m4.8-2.45c.375.058.56.856.414 1.78-.145.925-.566 1.625-.942 1.567-.374-.06-.56-.857-.415-1.78.145-.925.567-1.626.943-1.568m11.835 2.53c-.078-.491-.345-.632-.989-.837l-3.762-1.2s-2.283-.863-3.974.357c-.228.164-.464.351-.7.55.198-.236.385-.472.55-.7 1.215-1.694.349-3.975.349-3.975l-1.207-3.761c-.207-.643-.347-.91-.84-.986-.492-.078-.707.132-1.101.68l-2.305 3.209s-1.524 1.903-.888 3.89c.086.266.191.549.308.836a12.215 12.215 0 0 0-.497-.74C7.693 6.215 5.258 6.332 5.258 6.332S1.82 6.32 1.308 6.32c-.676-.003-.972.05-1.198.493-.226.443-.093.714.307 1.258.303.415 2.34 3.183 2.34 3.183S4.095 13.292 6.18 13.3c.28.001.58-.012.889-.034a12.317 12.317 0 0 0-.855.244c-1.98.656-2.619 3.01-2.619 3.01L2.36 20.273c-.21.64-.252.939.1 1.29.352.353.65.31 1.291.098.489-.16 3.75-1.242 3.75-1.242s2.352-.644 3.004-2.624c.088-.266.169-.556.243-.854a11.1 11.1 0 0 0-.03.887c.01 2.085 2.051 3.421 2.051 3.421l3.186 2.333c.546.398.816.531 1.26.305.443-.226.495-.523.491-1.199l-.022-3.95s.114-2.435-1.567-3.668a11.93 11.93 0 0 0-.739-.495c.287.115.568.22.836.304 1.986.633 3.888-.894 3.888-.894l3.204-2.31c.547-.395.756-.612.679-1.104" }) + ] + } + ); +}); + +export { SiAdafruit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.cjs new file mode 100644 index 000000000..576af5508 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B71C1C"; +const SiAdaway = React__namespace.forwardRef(function SiAdaway2({ title = "AdAway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.049 0 .014 7.016 0 16.951l7.016 7.035 9.935.014 7.035-7.015L24 7.049 16.984.014zm-1.87 6.52c.456-.046 2.886.98 5.768.99 1.48.091 2.039.52 2.455.956.932.878 1.135 1.324 2.315.755.48-.231 1.072-1.6 1.739-1.747.52-.076 1.283.58 1.474.77.21.205.399.396.598.487-.684.037-1.632 1.634-1.657 2.99.137 3.791-1.57 3.582-3.248 5.437-.535.51-.836 1.578-.836 2.553l-.705-.021c-.418.01-.895-.535-1.126-.899-.44-.735-.897.673-1.583-.48.031-.383-1.833-.457-.762-1.348 2.53-1.79 3.764-2.168 3.711-2.708-.062-.638-1.545-.06-2.884-.122-2.213-.102-1.97-1.504-2.166-2.157-1.857-1.034 1.428-1.52-.015-1.826-.705-.111-1.949.15-2.21-1.069.235.291 3.32-.304 2.077-.498-1.725-.783-2.21-.364-2.926-1.835-.124-.15-.124-.218-.019-.228Zm12.575 1.903a.261.261 0 0 0-.26.26.261.261 0 0 0 .26.262.261.261 0 0 0 .261-.261.261.261 0 0 0-.26-.261z" }) + ] + } + ); +}); + +exports.default = SiAdaway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.d.ts new file mode 100644 index 000000000..332f89941 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B71C1C"; +declare const SiAdaway: IconType; +export { SiAdaway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.mjs new file mode 100644 index 000000000..c067d9798 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdaway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B71C1C"; +const SiAdaway = React.forwardRef(function SiAdaway2({ title = "AdAway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.049 0 .014 7.016 0 16.951l7.016 7.035 9.935.014 7.035-7.015L24 7.049 16.984.014zm-1.87 6.52c.456-.046 2.886.98 5.768.99 1.48.091 2.039.52 2.455.956.932.878 1.135 1.324 2.315.755.48-.231 1.072-1.6 1.739-1.747.52-.076 1.283.58 1.474.77.21.205.399.396.598.487-.684.037-1.632 1.634-1.657 2.99.137 3.791-1.57 3.582-3.248 5.437-.535.51-.836 1.578-.836 2.553l-.705-.021c-.418.01-.895-.535-1.126-.899-.44-.735-.897.673-1.583-.48.031-.383-1.833-.457-.762-1.348 2.53-1.79 3.764-2.168 3.711-2.708-.062-.638-1.545-.06-2.884-.122-2.213-.102-1.97-1.504-2.166-2.157-1.857-1.034 1.428-1.52-.015-1.826-.705-.111-1.949.15-2.21-1.069.235.291 3.32-.304 2.077-.498-1.725-.783-2.21-.364-2.926-1.835-.124-.15-.124-.218-.019-.228Zm12.575 1.903a.261.261 0 0 0-.26.26.261.261 0 0 0 .26.262.261.261 0 0 0 .261-.261.261.261 0 0 0-.26-.261z" }) + ] + } + ); +}); + +export { SiAdaway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.cjs new file mode 100644 index 000000000..5975b5e88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F40D12"; +const SiAdblock = React__namespace.forwardRef(function SiAdblock2({ title = "AdBlock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.775 0a1.8 1.8 0 0 0-1.273.527L.528 6.503A1.8 1.8 0 0 0 0 7.775v8.45c0 .478.19.936.528 1.274l5.974 5.974A1.8 1.8 0 0 0 7.775 24h8.45a1.8 1.8 0 0 0 1.273-.527l5.975-5.974A1.8 1.8 0 0 0 24 16.225v-8.45a1.8 1.8 0 0 0-.527-1.272L17.498.527A1.8 1.8 0 0 0 16.225 0zm4.427 3c1.02 0 .958 1.108.958 1.108v6.784s-.009.218.16.218c.188 0 .175-.226.175-.226l-.002-5.63s-.05-.986.959-.986c1.01 0 .97.983.97.983v7.621s.014.158.141.158c.127 0 .944-2.122.944-2.122s.451-1.497 2.576-1.1c.038.008-.167.688-.167.688l-2.283 6.556S15.69 20.7 11.714 20.7c-5.044 0-4.808-5.407-4.814-5.405V7.562s-.016-.99.897-.99c.858 0 .849.99.849.99l.007 3.583s-.004.172.167.172c.16 0 .141-.172.141-.172l.01-5.926s-.055-1.162.966-1.162c1.04 0 .983 1.142.983 1.142v5.611s-.005.204.152.204c.168 0 .154-.206.154-.206l.01-6.693S11.18 3 12.202 3Z" }) + ] + } + ); +}); + +exports.default = SiAdblock; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.d.ts new file mode 100644 index 000000000..c8b881460 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F40D12"; +declare const SiAdblock: IconType; +export { SiAdblock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.mjs new file mode 100644 index 000000000..cbe81a9a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblock.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F40D12"; +const SiAdblock = React.forwardRef(function SiAdblock2({ title = "AdBlock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.775 0a1.8 1.8 0 0 0-1.273.527L.528 6.503A1.8 1.8 0 0 0 0 7.775v8.45c0 .478.19.936.528 1.274l5.974 5.974A1.8 1.8 0 0 0 7.775 24h8.45a1.8 1.8 0 0 0 1.273-.527l5.975-5.974A1.8 1.8 0 0 0 24 16.225v-8.45a1.8 1.8 0 0 0-.527-1.272L17.498.527A1.8 1.8 0 0 0 16.225 0zm4.427 3c1.02 0 .958 1.108.958 1.108v6.784s-.009.218.16.218c.188 0 .175-.226.175-.226l-.002-5.63s-.05-.986.959-.986c1.01 0 .97.983.97.983v7.621s.014.158.141.158c.127 0 .944-2.122.944-2.122s.451-1.497 2.576-1.1c.038.008-.167.688-.167.688l-2.283 6.556S15.69 20.7 11.714 20.7c-5.044 0-4.808-5.407-4.814-5.405V7.562s-.016-.99.897-.99c.858 0 .849.99.849.99l.007 3.583s-.004.172.167.172c.16 0 .141-.172.141-.172l.01-5.926s-.055-1.162.966-1.162c1.04 0 .983 1.142.983 1.142v5.611s-.005.204.152.204c.168 0 .154-.206.154-.206l.01-6.693S11.18 3 12.202 3Z" }) + ] + } + ); +}); + +export { SiAdblock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.cjs new file mode 100644 index 000000000..f9c7650df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C70D2C"; +const SiAdblockplus = React__namespace.forwardRef(function SiAdblockplus2({ title = "Adblock Plus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.027 0L0 7.027v9.941L7.027 24h9.941L24 16.968v-9.94L16.973 0zm.202.48h9.542l6.749 6.749v9.542l-6.749 6.749H7.23L.48 16.771V7.23zm.557 1.344L1.824 7.786v8.428l5.962 5.962h8.428l5.962-5.962V7.786l-5.962-5.962zM4.396 7.68H6.38l2.285 8.41H6.917l-.447-2.002H4.238l-.446 1.997h-1.68zm5.3 0h2.491c.355-.005.71.029 1.061.096.302.058.595.173.85.34.24.164.436.385.57.644.14.269.207.605.207 1.008 0 .192-.024.384-.072.566-.048.188-.12.365-.216.528-.1.168-.23.317-.379.437-.163.13-.35.226-.547.283v.053c.523.11.917.327 1.18.643.265.317.399.759.399 1.33 0 .432-.072.802-.216 1.109-.14.302-.346.561-.605.768-.269.206-.576.36-.902.451-.36.1-.735.154-1.109.149H9.696zm6.667 0h2.669c.374-.005.749.043 1.114.134.33.082.643.236.907.452.269.225.48.513.61.84.148.345.225.772.225 1.281 0 .49-.077.917-.23 1.277-.14.34-.35.643-.624.888a2.553 2.553 0 0 1-.908.518 3.551 3.551 0 0 1-1.099.168H18.01v2.852h-1.647zM5.328 9.125c-.091.446-.182.907-.274 1.373-.09.465-.192.912-.297 1.334l-.178.773h1.555l-.168-.773a31.5 31.5 0 0 1-.302-1.34 55.623 55.623 0 0 0-.293-1.367zm6.005.029v1.92h.773c.403 0 .696-.092.878-.279.182-.187.274-.437.274-.753 0-.317-.092-.548-.279-.682-.187-.134-.475-.206-.864-.206zm6.681.038v2.54h.917c.898 0 1.344-.447 1.344-1.34 0-.437-.115-.749-.34-.931-.226-.183-.562-.269-1.004-.269zm-6.681 3.22v2.204h.931c.902 0 1.354-.384 1.354-1.147 0-.37-.11-.639-.336-.807-.226-.168-.562-.25-1.018-.25z" }) + ] + } + ); +}); + +exports.default = SiAdblockplus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.d.ts new file mode 100644 index 000000000..9df9f2bc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C70D2C"; +declare const SiAdblockplus: IconType; +export { SiAdblockplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.mjs new file mode 100644 index 000000000..b812bca03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdblockplus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C70D2C"; +const SiAdblockplus = React.forwardRef(function SiAdblockplus2({ title = "Adblock Plus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.027 0L0 7.027v9.941L7.027 24h9.941L24 16.968v-9.94L16.973 0zm.202.48h9.542l6.749 6.749v9.542l-6.749 6.749H7.23L.48 16.771V7.23zm.557 1.344L1.824 7.786v8.428l5.962 5.962h8.428l5.962-5.962V7.786l-5.962-5.962zM4.396 7.68H6.38l2.285 8.41H6.917l-.447-2.002H4.238l-.446 1.997h-1.68zm5.3 0h2.491c.355-.005.71.029 1.061.096.302.058.595.173.85.34.24.164.436.385.57.644.14.269.207.605.207 1.008 0 .192-.024.384-.072.566-.048.188-.12.365-.216.528-.1.168-.23.317-.379.437-.163.13-.35.226-.547.283v.053c.523.11.917.327 1.18.643.265.317.399.759.399 1.33 0 .432-.072.802-.216 1.109-.14.302-.346.561-.605.768-.269.206-.576.36-.902.451-.36.1-.735.154-1.109.149H9.696zm6.667 0h2.669c.374-.005.749.043 1.114.134.33.082.643.236.907.452.269.225.48.513.61.84.148.345.225.772.225 1.281 0 .49-.077.917-.23 1.277-.14.34-.35.643-.624.888a2.553 2.553 0 0 1-.908.518 3.551 3.551 0 0 1-1.099.168H18.01v2.852h-1.647zM5.328 9.125c-.091.446-.182.907-.274 1.373-.09.465-.192.912-.297 1.334l-.178.773h1.555l-.168-.773a31.5 31.5 0 0 1-.302-1.34 55.623 55.623 0 0 0-.293-1.367zm6.005.029v1.92h.773c.403 0 .696-.092.878-.279.182-.187.274-.437.274-.753 0-.317-.092-.548-.279-.682-.187-.134-.475-.206-.864-.206zm6.681.038v2.54h.917c.898 0 1.344-.447 1.344-1.34 0-.437-.115-.749-.34-.931-.226-.183-.562-.269-1.004-.269zm-6.681 3.22v2.204h.931c.902 0 1.354-.384 1.354-1.147 0-.37-.11-.639-.336-.807-.226-.168-.562-.25-1.018-.25z" }) + ] + } + ); +}); + +export { SiAdblockplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.cjs new file mode 100644 index 000000000..e60b7eea7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#19216C"; +const SiAddydotio = React__namespace.forwardRef(function SiAddydotio2({ title = "addy.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 6.81V6c0-.305-.033-.605-.075-.9C17.489 2.217 15 0 12 0S6.51 2.217 6.075 5.1A5.733 5.733 0 0 0 6 6v.81A5.987 5.987 0 0 0 3 12v6a6 6 0 0 0 6 6h6c0-1.655-1.345-3-3-3H9c-1.655 0-3-1.345-3-3v-6c0-1.655 1.345-3 3-3h6c1.655 0 3 1.345 3 3v1.5a3 3 0 0 1-1.5 2.597V12c0-.83-.67-1.5-1.5-1.5H9c-.83 0-1.5.67-1.5 1.5v6c0 .83.67 1.5 1.5 1.5h6c1.055 0 2.04-.272 2.902-.75A5.996 5.996 0 0 0 21 13.5V12a5.987 5.987 0 0 0-3-5.19Zm-4.5 9.69h-3v-3h3zM9 6c0-.548.15-1.06.408-1.5A2.998 2.998 0 0 1 12 3c1.106 0 2.077.605 2.592 1.5.258.44.408.952.408 1.5Z" }) + ] + } + ); +}); + +exports.default = SiAddydotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.d.ts new file mode 100644 index 000000000..53a80dc73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#19216C"; +declare const SiAddydotio: IconType; +export { SiAddydotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.mjs new file mode 100644 index 000000000..596d49ec8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAddydotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#19216C"; +const SiAddydotio = React.forwardRef(function SiAddydotio2({ title = "addy.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18 6.81V6c0-.305-.033-.605-.075-.9C17.489 2.217 15 0 12 0S6.51 2.217 6.075 5.1A5.733 5.733 0 0 0 6 6v.81A5.987 5.987 0 0 0 3 12v6a6 6 0 0 0 6 6h6c0-1.655-1.345-3-3-3H9c-1.655 0-3-1.345-3-3v-6c0-1.655 1.345-3 3-3h6c1.655 0 3 1.345 3 3v1.5a3 3 0 0 1-1.5 2.597V12c0-.83-.67-1.5-1.5-1.5H9c-.83 0-1.5.67-1.5 1.5v6c0 .83.67 1.5 1.5 1.5h6c1.055 0 2.04-.272 2.902-.75A5.996 5.996 0 0 0 21 13.5V12a5.987 5.987 0 0 0-3-5.19Zm-4.5 9.69h-3v-3h3zM9 6c0-.548.15-1.06.408-1.5A2.998 2.998 0 0 1 12 3c1.106 0 2.077.605 2.592 1.5.258.44.408.952.408 1.5Z" }) + ] + } + ); +}); + +export { SiAddydotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.cjs new file mode 100644 index 000000000..5f8bbeb83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#68BC71"; +const SiAdguard = React__namespace.forwardRef(function SiAdguard2({ title = "AdGuard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C8.249 0 3.725.861 0 2.755 0 6.845-.051 17.037 12 24 24.051 17.037 24 6.845 24 2.755 20.275.861 15.751 0 12 0zm-.106 15.429L6.857 9.612c.331-.239 1.75-1.143 2.794.042l2.187 2.588c.009-.001 5.801-5.948 5.815-5.938.246-.22.694-.503 1.204-.101l-6.963 9.226z" }) + ] + } + ); +}); + +exports.default = SiAdguard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.d.ts new file mode 100644 index 000000000..6ed6db7e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#68BC71"; +declare const SiAdguard: IconType; +export { SiAdguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.mjs new file mode 100644 index 000000000..136fc6f5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdguard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#68BC71"; +const SiAdguard = React.forwardRef(function SiAdguard2({ title = "AdGuard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C8.249 0 3.725.861 0 2.755 0 6.845-.051 17.037 12 24 24.051 17.037 24 6.845 24 2.755 20.275.861 15.751 0 12 0zm-.106 15.429L6.857 9.612c.331-.239 1.75-1.143 2.794.042l2.187 2.588c.009-.001 5.801-5.948 5.815-5.938.246-.22.694-.503 1.204-.101l-6.963 9.226z" }) + ] + } + ); +}); + +export { SiAdguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.cjs new file mode 100644 index 000000000..5717ccad7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAdidas = React__namespace.forwardRef(function SiAdidas2({ title = "Adidas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m24 19.535-8.697-15.07-4.659 2.687 7.145 12.383Zm-8.287 0L9.969 9.59 5.31 12.277l4.192 7.258ZM4.658 14.723l2.776 4.812H1.223L0 17.41Z" }) + ] + } + ); +}); + +exports.default = SiAdidas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.d.ts new file mode 100644 index 000000000..b20b671ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAdidas: IconType; +export { SiAdidas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.mjs new file mode 100644 index 000000000..36ac1c7aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdidas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAdidas = React.forwardRef(function SiAdidas2({ title = "Adidas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m24 19.535-8.697-15.07-4.659 2.687 7.145 12.383Zm-8.287 0L9.969 9.59 5.31 12.277l4.192 7.258ZM4.658 14.723l2.776 4.812H1.223L0 17.41Z" }) + ] + } + ); +}); + +export { SiAdidas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.cjs new file mode 100644 index 000000000..f5db8f628 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34567C"; +const SiAdminer = React__namespace.forwardRef(function SiAdminer2({ title = "Adminer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.521 8.297a.53.53 0 0 1-.53.53.53.53 0 0 1-.531-.53.53.53 0 0 1 .53-.53.53.53 0 0 1 .531.53zm-1.085-6.122c-.264-.008-.438.01-.438.01l.076.836s.577-.045 1.12.107c.272.076.521.198.689.369.167.17.277.382.277.758 0 .196-.052.296-.139.39a.964.964 0 0 1-.378.232c-.312.113-.65.116-.65.116l-.422-.002v2.174h.84V5.758c.177-.017.25.004.517-.092.241-.087.502-.223.714-.455A1.42 1.42 0 0 0 24 4.255c0-.565-.208-1.03-.518-1.346-.31-.316-.697-.488-1.061-.59a4.193 4.193 0 0 0-.985-.144ZM17.892 3.79l-2.874 2.487 2.886 2.451.544-.64-2.14-1.817 2.133-1.846zM6.587 5.108c-1.734 0-3.302.186-4.47.5-.584.157-1.068.343-1.438.579-.37.235-.679.56-.679 1V19.747c0 .287.145.54.337.73.191.191.437.343.732.48.59.275 1.39.49 2.37.641 1.96.305 4.335.305 6.295 0 .98-.152 1.78-.366 2.37-.64.296-.138.54-.29.732-.48.191-.19.337-.444.337-.731V7.187c0-.44-.309-.765-.68-1-.37-.236-.853-.422-1.437-.579-1.167-.314-2.736-.5-4.47-.5Zm0 .84c1.672 0 3.187.185 4.25.471.533.143.953.315 1.207.476.253.161.29.274.29.292 0 .018-.037.13-.29.29-.254.162-.674.334-1.206.477-1.064.287-2.579.472-4.251.472-1.673 0-3.188-.185-4.252-.472-.532-.143-.952-.315-1.205-.476-.254-.162-.29-.273-.29-.291 0-.018.036-.13.29-.292.253-.161.673-.333 1.205-.476 1.064-.286 2.58-.471 4.252-.471ZM.839 8.25c.352.2.76.374 1.278.514 1.168.314 2.736.5 4.47.5 1.733 0 3.302-.186 4.47-.5.518-.14.925-.315 1.276-.514v3.123c0 .01 0 .047-.09.135a1.835 1.835 0 0 1-.493.313c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.829 1.829 0 0 1-.494-.313c-.088-.088-.09-.126-.09-.135Zm0 4.182c.083.047.137.107.23.15.59.276 1.39.49 2.37.642 1.96.304 4.335.304 6.295 0 .98-.152 1.78-.366 2.37-.642.093-.043.147-.103.23-.15v3.127c0 .01-.002.047-.09.135a1.834 1.834 0 0 1-.494.314c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.828 1.828 0 0 1-.494-.314c-.088-.088-.09-.126-.09-.135zm0 4.187c.083.047.137.107.23.15.59.275 1.39.49 2.37.642 1.96.304 4.335.304 6.295 0 .98-.153 1.78-.367 2.37-.642.093-.043.147-.103.23-.15v3.127c0 .01-.002.047-.09.135a1.834 1.834 0 0 1-.494.314c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.828 1.828 0 0 1-.494-.314c-.088-.088-.09-.126-.09-.135Z" }) + ] + } + ); +}); + +exports.default = SiAdminer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.d.ts new file mode 100644 index 000000000..be12a72a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34567C"; +declare const SiAdminer: IconType; +export { SiAdminer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.mjs new file mode 100644 index 000000000..8b57f4aa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdminer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34567C"; +const SiAdminer = React.forwardRef(function SiAdminer2({ title = "Adminer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.521 8.297a.53.53 0 0 1-.53.53.53.53 0 0 1-.531-.53.53.53 0 0 1 .53-.53.53.53 0 0 1 .531.53zm-1.085-6.122c-.264-.008-.438.01-.438.01l.076.836s.577-.045 1.12.107c.272.076.521.198.689.369.167.17.277.382.277.758 0 .196-.052.296-.139.39a.964.964 0 0 1-.378.232c-.312.113-.65.116-.65.116l-.422-.002v2.174h.84V5.758c.177-.017.25.004.517-.092.241-.087.502-.223.714-.455A1.42 1.42 0 0 0 24 4.255c0-.565-.208-1.03-.518-1.346-.31-.316-.697-.488-1.061-.59a4.193 4.193 0 0 0-.985-.144ZM17.892 3.79l-2.874 2.487 2.886 2.451.544-.64-2.14-1.817 2.133-1.846zM6.587 5.108c-1.734 0-3.302.186-4.47.5-.584.157-1.068.343-1.438.579-.37.235-.679.56-.679 1V19.747c0 .287.145.54.337.73.191.191.437.343.732.48.59.275 1.39.49 2.37.641 1.96.305 4.335.305 6.295 0 .98-.152 1.78-.366 2.37-.64.296-.138.54-.29.732-.48.191-.19.337-.444.337-.731V7.187c0-.44-.309-.765-.68-1-.37-.236-.853-.422-1.437-.579-1.167-.314-2.736-.5-4.47-.5Zm0 .84c1.672 0 3.187.185 4.25.471.533.143.953.315 1.207.476.253.161.29.274.29.292 0 .018-.037.13-.29.29-.254.162-.674.334-1.206.477-1.064.287-2.579.472-4.251.472-1.673 0-3.188-.185-4.252-.472-.532-.143-.952-.315-1.205-.476-.254-.162-.29-.273-.29-.291 0-.018.036-.13.29-.292.253-.161.673-.333 1.205-.476 1.064-.286 2.58-.471 4.252-.471ZM.839 8.25c.352.2.76.374 1.278.514 1.168.314 2.736.5 4.47.5 1.733 0 3.302-.186 4.47-.5.518-.14.925-.315 1.276-.514v3.123c0 .01 0 .047-.09.135a1.835 1.835 0 0 1-.493.313c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.829 1.829 0 0 1-.494-.313c-.088-.088-.09-.126-.09-.135Zm0 4.182c.083.047.137.107.23.15.59.276 1.39.49 2.37.642 1.96.304 4.335.304 6.295 0 .98-.152 1.78-.366 2.37-.642.093-.043.147-.103.23-.15v3.127c0 .01-.002.047-.09.135a1.834 1.834 0 0 1-.494.314c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.828 1.828 0 0 1-.494-.314c-.088-.088-.09-.126-.09-.135zm0 4.187c.083.047.137.107.23.15.59.275 1.39.49 2.37.642 1.96.304 4.335.304 6.295 0 .98-.153 1.78-.367 2.37-.642.093-.043.147-.103.23-.15v3.127c0 .01-.002.047-.09.135a1.834 1.834 0 0 1-.494.314c-.475.221-1.217.429-2.145.573-1.856.288-4.181.288-6.038 0-.928-.144-1.67-.352-2.144-.573a1.828 1.828 0 0 1-.494-.314c-.088-.088-.09-.126-.09-.135Z" }) + ] + } + ); +}); + +export { SiAdminer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.cjs new file mode 100644 index 000000000..47afebc84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A45FF"; +const SiAdonisjs = React__namespace.forwardRef(function SiAdonisjs2({ title = "AdonisJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12c0 9.68 2.32 12 12 12s12-2.32 12-12S21.68 0 12 0 0 2.32 0 12Zm4.84 2.492 3.762-8.555C9.238 4.498 10.46 3.716 12 3.716c1.54 0 2.762.781 3.398 2.223l3.762 8.554c.172.418.32.953.32 1.418 0 2.125-1.492 3.617-3.617 3.617-.726 0-1.3-.183-1.883-.37-.597-.192-1.203-.387-1.98-.387-.77 0-1.39.195-1.996.386-.59.188-1.168.371-1.867.371-2.125 0-3.617-1.492-3.617-3.617 0-.465.148-1 .32-1.418ZM12 7.43l-3.715 8.406c1.102-.512 2.371-.758 3.715-.758 1.297 0 2.613.246 3.664.758Z" }) + ] + } + ); +}); + +exports.default = SiAdonisjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.d.ts new file mode 100644 index 000000000..f1bb9d196 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A45FF"; +declare const SiAdonisjs: IconType; +export { SiAdonisjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.mjs new file mode 100644 index 000000000..911d45624 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdonisjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A45FF"; +const SiAdonisjs = React.forwardRef(function SiAdonisjs2({ title = "AdonisJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12c0 9.68 2.32 12 12 12s12-2.32 12-12S21.68 0 12 0 0 2.32 0 12Zm4.84 2.492 3.762-8.555C9.238 4.498 10.46 3.716 12 3.716c1.54 0 2.762.781 3.398 2.223l3.762 8.554c.172.418.32.953.32 1.418 0 2.125-1.492 3.617-3.617 3.617-.726 0-1.3-.183-1.883-.37-.597-.192-1.203-.387-1.98-.387-.77 0-1.39.195-1.996.386-.59.188-1.168.371-1.867.371-2.125 0-3.617-1.492-3.617-3.617 0-.465.148-1 .32-1.418ZM12 7.43l-3.715 8.406c1.102-.512 2.371-.758 3.715-.758 1.297 0 2.613.246 3.664.758Z" }) + ] + } + ); +}); + +export { SiAdonisjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.cjs new file mode 100644 index 000000000..2dd4f0bcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D0271D"; +const SiAdp = React__namespace.forwardRef(function SiAdp2({ title = "ADP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.08584 11.9999a3.13031 3.13031 0 0 1-3.12003 3.12002h-1.2v-1.37144h1.2a1.74859 1.74859 0 1 0 0-3.49717h-1.2V8.87987h1.2a3.13031 3.13031 0 0 1 3.12003 3.12002M8.43436 8.87987v2.53716H6.27434l-.78858 1.37144H9.8058v-3.9086Zm15.56584 1.9543a4.28575 4.28575 0 0 1-4.28575 4.28575v2.33145h-3.70289V15.6342a5.36233 5.36233 0 0 1-4.08003 1.81716H8.43436v-2.33145H5.69148l-1.37144 2.33145H0L6.34291 6.54842h5.6229a5.59548 5.59548 0 0 1 4.08004 1.81716V6.54842h3.70289a4.2789 4.2789 0 0 1 4.25146 4.28575m-12.03439 5.24576a4.09032 4.09032 0 0 0 3.7029-2.33145h1.74858v2.33145h.96v-2.33145h1.37145a2.91088 2.91088 0 0 0 2.9143-2.91431 2.94174 2.94174 0 0 0-2.94859-2.91431H17.383v3.49717h-1.37144a4.11432 4.11432 0 0 0-4.04575-3.49717H7.16577l-4.76575 8.16007h1.13144l1.37144-2.33145h4.9029v2.33145zm7.74864-7.20006h-1.37144v1.37144h1.37144a.57943.57943 0 0 1 .58286.58286.6.6 0 0 1-.58286.58286h-1.37144v1.37144h1.37144a1.9543 1.9543 0 0 0 1.9543-1.9543 1.97487 1.97487 0 0 0-1.9543-1.9543 M21.63447 16.76565a.54858.54858 0 1 1-.54858-.54858.54172.54172 0 0 1 .54858.54858m.13714 0a.68572.68572 0 1 0-.68572.68572.68572.68572 0 0 0 .68572-.68572 M21.12018 16.45707a.13714.13714 0 1 1 0 .2743h-.13715v-.2743zm.17143-.03428a.26057.26057 0 0 0-.17143-.06857h-.2743v.82286h.10287v-.30857h.13714l.17143.30857h.13714l-.20571-.34286c.03428 0 .06857-.03429.10286-.06857a.20572.20572 0 0 0 .03428-.13715.192.192 0 0 0-.03428-.20571" }) + ] + } + ); +}); + +exports.default = SiAdp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.d.ts new file mode 100644 index 000000000..fa3bbfd0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D0271D"; +declare const SiAdp: IconType; +export { SiAdp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.mjs new file mode 100644 index 000000000..6ea86c077 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D0271D"; +const SiAdp = React.forwardRef(function SiAdp2({ title = "ADP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.08584 11.9999a3.13031 3.13031 0 0 1-3.12003 3.12002h-1.2v-1.37144h1.2a1.74859 1.74859 0 1 0 0-3.49717h-1.2V8.87987h1.2a3.13031 3.13031 0 0 1 3.12003 3.12002M8.43436 8.87987v2.53716H6.27434l-.78858 1.37144H9.8058v-3.9086Zm15.56584 1.9543a4.28575 4.28575 0 0 1-4.28575 4.28575v2.33145h-3.70289V15.6342a5.36233 5.36233 0 0 1-4.08003 1.81716H8.43436v-2.33145H5.69148l-1.37144 2.33145H0L6.34291 6.54842h5.6229a5.59548 5.59548 0 0 1 4.08004 1.81716V6.54842h3.70289a4.2789 4.2789 0 0 1 4.25146 4.28575m-12.03439 5.24576a4.09032 4.09032 0 0 0 3.7029-2.33145h1.74858v2.33145h.96v-2.33145h1.37145a2.91088 2.91088 0 0 0 2.9143-2.91431 2.94174 2.94174 0 0 0-2.94859-2.91431H17.383v3.49717h-1.37144a4.11432 4.11432 0 0 0-4.04575-3.49717H7.16577l-4.76575 8.16007h1.13144l1.37144-2.33145h4.9029v2.33145zm7.74864-7.20006h-1.37144v1.37144h1.37144a.57943.57943 0 0 1 .58286.58286.6.6 0 0 1-.58286.58286h-1.37144v1.37144h1.37144a1.9543 1.9543 0 0 0 1.9543-1.9543 1.97487 1.97487 0 0 0-1.9543-1.9543 M21.63447 16.76565a.54858.54858 0 1 1-.54858-.54858.54172.54172 0 0 1 .54858.54858m.13714 0a.68572.68572 0 1 0-.68572.68572.68572.68572 0 0 0 .68572-.68572 M21.12018 16.45707a.13714.13714 0 1 1 0 .2743h-.13715v-.2743zm.17143-.03428a.26057.26057 0 0 0-.17143-.06857h-.2743v.82286h.10287v-.30857h.13714l.17143.30857h.13714l-.20571-.34286c.03428 0 .06857-.03429.10286-.06857a.20572.20572 0 0 0 .03428-.13715.192.192 0 0 0-.03428-.20571" }) + ] + } + ); +}); + +export { SiAdp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.cjs new file mode 100644 index 000000000..3e6d392fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0DBDFF"; +const SiAdroll = React__namespace.forwardRef(function SiAdroll2({ title = "Adroll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0-6.01-4.727-10.886-10.886-10.886a10.863 10.863 0 0 0-9.508 5.578L8.914 12c0-2.323 1.958-4.2 4.2-4.2 2.377 0 4.2 1.877 4.2 4.2s-1.836 4.2-4.2 4.2H4.065A4.07 4.07 0 0 0 0 20.266v2.62h13.114C19.232 22.886 24 18.01 24 12" }) + ] + } + ); +}); + +exports.default = SiAdroll; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.d.ts new file mode 100644 index 000000000..1ba93e885 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0DBDFF"; +declare const SiAdroll: IconType; +export { SiAdroll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.mjs new file mode 100644 index 000000000..c54621e21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdroll.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0DBDFF"; +const SiAdroll = React.forwardRef(function SiAdroll2({ title = "Adroll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0-6.01-4.727-10.886-10.886-10.886a10.863 10.863 0 0 0-9.508 5.578L8.914 12c0-2.323 1.958-4.2 4.2-4.2 2.377 0 4.2 1.877 4.2 4.2s-1.836 4.2-4.2 4.2H4.065A4.07 4.07 0 0 0 0 20.266v2.62h13.114C19.232 22.886 24 18.01 24 12" }) + ] + } + ); +}); + +export { SiAdroll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.cjs new file mode 100644 index 000000000..539e27975 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFF66"; +const SiAdventofcode = React__namespace.forwardRef(function SiAdventofcode2({ title = "Advent Of Code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.05 13.236 6.498 9.606L18.91 24l-6.905-9.47L5.1 24l-1.637-1.158 6.498-9.606L.553 9.22l.615-1.69 9.596 3.463L11.087 0h1.826l.323 10.993 9.596-3.462.615 1.69-9.387 4.015z" }) + ] + } + ); +}); + +exports.default = SiAdventofcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.d.ts new file mode 100644 index 000000000..fc227edad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFF66"; +declare const SiAdventofcode: IconType; +export { SiAdventofcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.mjs new file mode 100644 index 000000000..5ce26ffc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdventofcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFF66"; +const SiAdventofcode = React.forwardRef(function SiAdventofcode2({ title = "Advent Of Code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.05 13.236 6.498 9.606L18.91 24l-6.905-9.47L5.1 24l-1.637-1.158 6.498-9.606L.553 9.22l.615-1.69 9.596 3.463L11.087 0h1.826l.323 10.993 9.596-3.462.615 1.69-9.387 4.015z" }) + ] + } + ); +}); + +export { SiAdventofcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.cjs new file mode 100644 index 000000000..ef19c7cd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0ABF53"; +const SiAdyen = React__namespace.forwardRef(function SiAdyen2({ title = "Adyen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.64703 9.88245v2.93377c0 .13405.10867.24271.24272.24271h.46316V9.88245h1.76474v5.1503c0 .46916-.38033.8495-.8495.8495H9.94303v-1.23507h2.40991v-.52942h-1.62108c-.46917 0-.8495-.38033-.8495-.8495V9.88245h1.76467Zm-8.26124.00001c.46917 0 .8495.38034.8495.8495v3.3858H.8495c-.46916 0-.8495-.38033-.8495-.8495v-.94805c0-.46917.38034-.8495.8495-.8495h.91521v1.3455c0 .13406.10867.24272.24272.24272h.46316V11.184c0-.13405-.10867-.24271-.24272-.24271l-2.16719-.00002V9.88246Zm5.79068-1.76471v6.00001H5.79068c-.46917 0-.8495-.38033-.8495-.8495v-2.53631c0-.46917.38033-.8495.8495-.8495h.91515v2.93377c0 .13405.10867.24271.24272.24271h.46316l.00005-4.94118h1.76471Zm9.03286 1.76471a.8495.8495 0 0 1 .8495.8495v.94805c0 .46917-.38033.8495-.8495.8495h-.9152v-1.3455c0-.13404-.10868-.2427-.24272-.2427h-.46317v1.8749c0 .13406.10867.24272.24272.24272h2.16719v1.05883h-3.32511c-.46917 0-.8495-.38033-.8495-.8495v-3.3858Zm4.94117 0c.46916 0 .8495.38034.8495.8495v3.3858h-1.7647V11.184c-.0004-.13388-.10884-.24232-.24272-.24272h-.46316v3.1765H19.7647V9.88245Z" }) + ] + } + ); +}); + +exports.default = SiAdyen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.d.ts new file mode 100644 index 000000000..f6413c23a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0ABF53"; +declare const SiAdyen: IconType; +export { SiAdyen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.mjs new file mode 100644 index 000000000..b94082118 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAdyen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0ABF53"; +const SiAdyen = React.forwardRef(function SiAdyen2({ title = "Adyen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.64703 9.88245v2.93377c0 .13405.10867.24271.24272.24271h.46316V9.88245h1.76474v5.1503c0 .46916-.38033.8495-.8495.8495H9.94303v-1.23507h2.40991v-.52942h-1.62108c-.46917 0-.8495-.38033-.8495-.8495V9.88245h1.76467Zm-8.26124.00001c.46917 0 .8495.38034.8495.8495v3.3858H.8495c-.46916 0-.8495-.38033-.8495-.8495v-.94805c0-.46917.38034-.8495.8495-.8495h.91521v1.3455c0 .13406.10867.24272.24272.24272h.46316V11.184c0-.13405-.10867-.24271-.24272-.24271l-2.16719-.00002V9.88246Zm5.79068-1.76471v6.00001H5.79068c-.46917 0-.8495-.38033-.8495-.8495v-2.53631c0-.46917.38033-.8495.8495-.8495h.91515v2.93377c0 .13405.10867.24271.24272.24271h.46316l.00005-4.94118h1.76471Zm9.03286 1.76471a.8495.8495 0 0 1 .8495.8495v.94805c0 .46917-.38033.8495-.8495.8495h-.9152v-1.3455c0-.13404-.10868-.2427-.24272-.2427h-.46317v1.8749c0 .13406.10867.24272.24272.24272h2.16719v1.05883h-3.32511c-.46917 0-.8495-.38033-.8495-.8495v-3.3858Zm4.94117 0c.46916 0 .8495.38034.8495.8495v3.3858h-1.7647V11.184c-.0004-.13388-.10884-.24232-.24272-.24272h-.46316v3.1765H19.7647V9.88245Z" }) + ] + } + ); +}); + +export { SiAdyen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.cjs new file mode 100644 index 000000000..9fcd314f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005E9D"; +const SiAegisauthenticator = React__namespace.forwardRef(function SiAegisauthenticator2({ title = "Aegis Authenticator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.9487 19.8732-.0074.0133a1.483 1.483 0 0 0-.0013 1.469l.3165.5565c.2639.4638.7563.75 1.2897.75h.0163c1.139 0 1.853-1.2301 1.2883-2.219l-.325-.5697c-.5693-.9974-2.0074-.9974-2.577-.0002m3.4905-6.1074a1.483 1.483 0 0 0-.0013 1.4688l3.7964 6.6769c.2639.4638.756.7503 1.2897.7503h.0156c1.139 0 1.853-1.2301 1.2883-2.219l-3.8118-6.677c-.5693-.9974-2.0077-.9974-2.5768 0m.3275-11.692L.1972 20.4648c-.5618.9775.1438 2.1969 1.2713 2.1969a1.467 1.467 0 0 0 1.2734-.7393l7.9513-13.9285c.5632-.9867 1.9861-.9855 2.548.0026l7.9175 13.9239a1.466 1.466 0 0 0 1.2746.7416h.0982c1.1255 0 1.8313-1.2152 1.2736-2.193L13.3116 2.0776c-.5616-.9844-1.98-.9867-2.5448-.0039" }) + ] + } + ); +}); + +exports.default = SiAegisauthenticator; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.d.ts new file mode 100644 index 000000000..9c9921c47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005E9D"; +declare const SiAegisauthenticator: IconType; +export { SiAegisauthenticator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.mjs new file mode 100644 index 000000000..3efd0702c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAegisauthenticator.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005E9D"; +const SiAegisauthenticator = React.forwardRef(function SiAegisauthenticator2({ title = "Aegis Authenticator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.9487 19.8732-.0074.0133a1.483 1.483 0 0 0-.0013 1.469l.3165.5565c.2639.4638.7563.75 1.2897.75h.0163c1.139 0 1.853-1.2301 1.2883-2.219l-.325-.5697c-.5693-.9974-2.0074-.9974-2.577-.0002m3.4905-6.1074a1.483 1.483 0 0 0-.0013 1.4688l3.7964 6.6769c.2639.4638.756.7503 1.2897.7503h.0156c1.139 0 1.853-1.2301 1.2883-2.219l-3.8118-6.677c-.5693-.9974-2.0077-.9974-2.5768 0m.3275-11.692L.1972 20.4648c-.5618.9775.1438 2.1969 1.2713 2.1969a1.467 1.467 0 0 0 1.2734-.7393l7.9513-13.9285c.5632-.9867 1.9861-.9855 2.548.0026l7.9175 13.9239a1.466 1.466 0 0 0 1.2746.7416h.0982c1.1255 0 1.8313-1.2152 1.2736-2.193L13.3116 2.0776c-.5616-.9844-1.98-.9867-2.5448-.0039" }) + ] + } + ); +}); + +export { SiAegisauthenticator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.cjs new file mode 100644 index 000000000..67f66bb7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02458D"; +const SiAeroflot = React__namespace.forwardRef(function SiAeroflot2({ title = "Aeroflot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.066 12.725c-.056-.135-.097-.272-.143-.406l-6.675.406 1.35.693zm.909 1.247c-.057-.042-.115-.1-.17-.15a1.822 1.822 0 0 1-.287-.318l-3.333.67 1.419.509zm2.64-.286c.16-.025.4-.122.588-.268l-.968-2.032 1.005-.51-.848-.782c-.602.292-1.206.58-1.809.868l.43 1.025.694-.33zm1.65-4.241c.387.5.655 1.081.782 1.7h-.61a3.884 3.884 0 0 0-.172-.57c-.41-1.142-1.25-1.956-2.216-2.633-.127-.078-.241-.164-.37-.238.129.044.243.086.37.136.88.372 1.662.885 2.216 1.605m.185 6.517c-.225.114-.455.22-.682.33l-.565-1.193c-.37.139-.76.215-1.154.226-.424.02-.847-.04-1.249-.176l-.483 1.143c-.157.014-.374 0-.512-.106a.378.378 0 0 1-.169-.224c.204-.356.389-.723.579-1.087-.127-.088-.24-.152-.355-.27l.344-.437c.582.38 1.22.585 1.845.585.627.022 1.25-.192 1.832-.628.19.055.385.119.541.18-.058.046-.1.087-.157.136-.114.12-.213.242-.398.346.188.395.387.784.583 1.175zm7.785-3.431L24 11.343h-9.55c0 .422-.06.784-.185 1.1-.369 1.005-1.291 1.487-2.216 1.469-.908-.027-1.834-.524-2.244-1.441a2.745 2.745 0 0 1-.229-1.128H0l1.75 1.188 7.316-.404c.138.553.397 1.037.74 1.395a3.065 3.065 0 0 0 2.243 1.01 2.79 2.79 0 0 0 2.216-.992c.312-.362.554-.826.694-1.385zm-.48.194l-1.352.663L15 12.725a9.5 9.5 0 0 0 .129-.406zm-3.907 1.462l-1.48.52a357.77 357.77 0 0 1-2.286-.735c.069-.06.125-.117.183-.196.085-.074.157-.176.242-.254zm.711-.09l1.177-.575-4.86-.614c-.043.164-.171.298-.256.432zm-13.116 0l-1.179-.542 4.885-.635c.09.152.171.286.27.42Z" }) + ] + } + ); +}); + +exports.default = SiAeroflot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.d.ts new file mode 100644 index 000000000..0ccde5e46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02458D"; +declare const SiAeroflot: IconType; +export { SiAeroflot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.mjs new file mode 100644 index 000000000..728648233 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAeroflot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02458D"; +const SiAeroflot = React.forwardRef(function SiAeroflot2({ title = "Aeroflot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.066 12.725c-.056-.135-.097-.272-.143-.406l-6.675.406 1.35.693zm.909 1.247c-.057-.042-.115-.1-.17-.15a1.822 1.822 0 0 1-.287-.318l-3.333.67 1.419.509zm2.64-.286c.16-.025.4-.122.588-.268l-.968-2.032 1.005-.51-.848-.782c-.602.292-1.206.58-1.809.868l.43 1.025.694-.33zm1.65-4.241c.387.5.655 1.081.782 1.7h-.61a3.884 3.884 0 0 0-.172-.57c-.41-1.142-1.25-1.956-2.216-2.633-.127-.078-.241-.164-.37-.238.129.044.243.086.37.136.88.372 1.662.885 2.216 1.605m.185 6.517c-.225.114-.455.22-.682.33l-.565-1.193c-.37.139-.76.215-1.154.226-.424.02-.847-.04-1.249-.176l-.483 1.143c-.157.014-.374 0-.512-.106a.378.378 0 0 1-.169-.224c.204-.356.389-.723.579-1.087-.127-.088-.24-.152-.355-.27l.344-.437c.582.38 1.22.585 1.845.585.627.022 1.25-.192 1.832-.628.19.055.385.119.541.18-.058.046-.1.087-.157.136-.114.12-.213.242-.398.346.188.395.387.784.583 1.175zm7.785-3.431L24 11.343h-9.55c0 .422-.06.784-.185 1.1-.369 1.005-1.291 1.487-2.216 1.469-.908-.027-1.834-.524-2.244-1.441a2.745 2.745 0 0 1-.229-1.128H0l1.75 1.188 7.316-.404c.138.553.397 1.037.74 1.395a3.065 3.065 0 0 0 2.243 1.01 2.79 2.79 0 0 0 2.216-.992c.312-.362.554-.826.694-1.385zm-.48.194l-1.352.663L15 12.725a9.5 9.5 0 0 0 .129-.406zm-3.907 1.462l-1.48.52a357.77 357.77 0 0 1-2.286-.735c.069-.06.125-.117.183-.196.085-.074.157-.176.242-.254zm.711-.09l1.177-.575-4.86-.614c-.043.164-.171.298-.256.432zm-13.116 0l-1.179-.542 4.885-.635c.09.152.171.286.27.42Z" }) + ] + } + ); +}); + +export { SiAeroflot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.cjs new file mode 100644 index 000000000..dbf6d92af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B2343"; +const SiAeromexico = React__namespace.forwardRef(function SiAeromexico2({ title = "Aeroméxico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.354 12.222c.044.156 0 .422-.267.489a3.74 3.74 0 0 1-.666.11c-.377.045-.355.356-.355.534v2.264c0 .31-.244 1.354-1.443 1.354H16.87c-1.043 0-1.864-.866-1.864-1.798V9.803c-.022-.932.821-1.554 1.576-1.532.377 0 .644.111.843.222.444.2.933.444 1.577.755 0 0 1.02-.733 1.087-.777.355-.244.688-.067.8.155.377.733 1.087 2.22 1.465 3.596zm1.642-4.018a3.283 3.283 0 0 0-3.219-3.33c-1.709-.044-2.663.578-3.019.755-.022.023-.066 0-.11-.044-.311-.31-1-.777-1.754-.999-.111-.022-.133-.2 0-.2a13.3 13.3 0 0 1 3.64.111c.134.023.245-.066.178-.177-.044-.089-.067-.133-.133-.289-.156-.31-.533-.644-1.021-.777-1.266-.355-3.441-.666-5.394-.666-2.176-.022-4.484.422-5.062.555-.133.023-.333.09-.377.09-.111 0-.155.155-.089.221l.222.222c.067.089.111.222-.022.355L3.796 7.65H6.57c.177 0 .355.155.355.355 0 .177-.156.355-.333.355H2.997l-1.088.999h4.706c.178 0 .333.2.333.355 0 .155-.133.355-.333.355H1.11L0 11.09h9.501c.177 0 .333.2.333.355 0 .2-.133.378-.333.378H0v.999h9.479c.222 0 .333.2.333.377 0 .156-.156.333-.356.333H0v1h12.386c.2 0 .334.177.334.377 0 .177-.156.355-.334.355H3.33v.999h9.079c.177 0 .31.2.31.377s-.155.355-.31.355l-.178-.022H3.33v.999h10.455s.377-.866.377-1.843V9.403c0-.532.222-1.42 1.31-1.664.022 0 .067-.023.089-.023 3.085-.732 6.26-.066 8.058.71.333.156.4-.11.377-.222zM6.66 21.413h2.11c1.886-.022 3.107-1.02 3.107-1.02H6.659v1.02zm0-1.731h6.06c.29-.289.644-.8.733-.999H6.659v.999Z" }) + ] + } + ); +}); + +exports.default = SiAeromexico; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.d.ts new file mode 100644 index 000000000..4dc221f8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B2343"; +declare const SiAeromexico: IconType; +export { SiAeromexico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.mjs new file mode 100644 index 000000000..09d847d4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAeromexico.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B2343"; +const SiAeromexico = React.forwardRef(function SiAeromexico2({ title = "Aeroméxico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.354 12.222c.044.156 0 .422-.267.489a3.74 3.74 0 0 1-.666.11c-.377.045-.355.356-.355.534v2.264c0 .31-.244 1.354-1.443 1.354H16.87c-1.043 0-1.864-.866-1.864-1.798V9.803c-.022-.932.821-1.554 1.576-1.532.377 0 .644.111.843.222.444.2.933.444 1.577.755 0 0 1.02-.733 1.087-.777.355-.244.688-.067.8.155.377.733 1.087 2.22 1.465 3.596zm1.642-4.018a3.283 3.283 0 0 0-3.219-3.33c-1.709-.044-2.663.578-3.019.755-.022.023-.066 0-.11-.044-.311-.31-1-.777-1.754-.999-.111-.022-.133-.2 0-.2a13.3 13.3 0 0 1 3.64.111c.134.023.245-.066.178-.177-.044-.089-.067-.133-.133-.289-.156-.31-.533-.644-1.021-.777-1.266-.355-3.441-.666-5.394-.666-2.176-.022-4.484.422-5.062.555-.133.023-.333.09-.377.09-.111 0-.155.155-.089.221l.222.222c.067.089.111.222-.022.355L3.796 7.65H6.57c.177 0 .355.155.355.355 0 .177-.156.355-.333.355H2.997l-1.088.999h4.706c.178 0 .333.2.333.355 0 .155-.133.355-.333.355H1.11L0 11.09h9.501c.177 0 .333.2.333.355 0 .2-.133.378-.333.378H0v.999h9.479c.222 0 .333.2.333.377 0 .156-.156.333-.356.333H0v1h12.386c.2 0 .334.177.334.377 0 .177-.156.355-.334.355H3.33v.999h9.079c.177 0 .31.2.31.377s-.155.355-.31.355l-.178-.022H3.33v.999h10.455s.377-.866.377-1.843V9.403c0-.532.222-1.42 1.31-1.664.022 0 .067-.023.089-.023 3.085-.732 6.26-.066 8.058.71.333.156.4-.11.377-.222zM6.66 21.413h2.11c1.886-.022 3.107-1.02 3.107-1.02H6.659v1.02zm0-1.731h6.06c.29-.289.644-.8.733-.999H6.659v.999Z" }) + ] + } + ); +}); + +export { SiAeromexico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.cjs new file mode 100644 index 000000000..d0199c921 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#946CE6"; +const SiAfdian = React__namespace.forwardRef(function SiAfdian2({ title = "AFDIAN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 14.234a.567.567 0 1 0 0 1.134.567.567 0 0 0 0-1.134m5.351 1.705a.567.567 0 1 0 0 1.135.567.567 0 0 0 0-1.135m8.401 1.436c-.189.095-.461.1-.713.013-.169-.06-.352-.116-.534-.172-.339-.104-.904-.276-1.011-.407a.533.533 0 1 0-.853.643c.059.08.139.146.22.209-.816 1.131-4.398 3.382-9.464 2.273-2.283-.5-3.819-1.413-4.444-2.639-.451-.885-.348-1.797-.133-2.293.62-1.29 5.097-4.261 7.955-5.943a.537.537 0 0 0 .188-.733c-.149-.254-.49-.356-.73-.189-.231.135-1.015.601-2.015 1.236-.338-.227-.923-.508-1.86-.6-1.486-.148-4.92-.805-6.029-1.275C2.535 7.162.731 6.27 1.131 5.267c.092-.234.527-.613 1.47-.974a8.5 8.5 0 0 1 1.995-.492l-.212.103c-.642.312-1.343.662-1.813 1.075-.034-.022-.07-.044-.094-.069a.527.527 0 0 0-.754-.017.533.533 0 0 0-.017.756c.19.2.471.35.829.465l.039.014c1.245.383 3.458.336 6.578.211 1.345-.052 2.615-.102 3.674-.082 3.512.07 6.152 1.469 8.07 4.279 1.178 1.725.753 3.426.079 4.903a1.4 1.4 0 0 1-.231-.222.54.54 0 0 0-.75-.085.535.535 0 0 0-.086.751c.109.137.665.778 1.355.724l.037-.002c.021-.003.042.001.064-.003.472-.086.768-.063 1.045.111.367.232.547.37.511.485-.021.073-.076.125-.168.177M8.19 11.418l-.315.231a1.6 1.6 0 0 1-.243-.32c.123-.038.33.007.558.089m14.733 4.356a1.9 1.9 0 0 0-.81-.27c.632-1.544 1.034-3.565-.336-5.572-2.096-3.072-5.101-4.668-8.93-4.744-1.091-.022-2.377.029-3.737.083-1.58.063-3.683.145-5.112.027.285-.155.588-.304.851-.431 1.006-.49 1.797-.872 1.535-1.548-.137-.396-.547-.603-1.219-.618C3.748 2.669.688 3.489.138 4.872c-.31.779-.361 2.282 2.775 3.61 1.29.548 4.934 1.216 6.341 1.355.397.039.701.119.931.205a75 75 0 0 0-.986.664c-.577-.329-1.521-.718-2.226-.237a.94.94 0 0 0-.435.768c-.01.385.224.763.486 1.066-1.038.83-1.877 1.634-2.175 2.253-.332.762-.467 2.008.153 3.224.786 1.544 2.524 2.62 5.166 3.199 3.454.755 6.437.075 8.411-.966 1.099-.579 1.878-1.27 2.257-1.887l.356.113c.169.051.338.103.496.159.522.181 1.1.157 1.545-.068l.025-.013c.336-.177.577-.46.683-.803.285-.922-.528-1.432-1.018-1.74" }) + ] + } + ); +}); + +exports.default = SiAfdian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.d.ts new file mode 100644 index 000000000..66979458e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#946CE6"; +declare const SiAfdian: IconType; +export { SiAfdian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.mjs new file mode 100644 index 000000000..022f4cedb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAfdian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#946CE6"; +const SiAfdian = React.forwardRef(function SiAfdian2({ title = "AFDIAN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9 14.234a.567.567 0 1 0 0 1.134.567.567 0 0 0 0-1.134m5.351 1.705a.567.567 0 1 0 0 1.135.567.567 0 0 0 0-1.135m8.401 1.436c-.189.095-.461.1-.713.013-.169-.06-.352-.116-.534-.172-.339-.104-.904-.276-1.011-.407a.533.533 0 1 0-.853.643c.059.08.139.146.22.209-.816 1.131-4.398 3.382-9.464 2.273-2.283-.5-3.819-1.413-4.444-2.639-.451-.885-.348-1.797-.133-2.293.62-1.29 5.097-4.261 7.955-5.943a.537.537 0 0 0 .188-.733c-.149-.254-.49-.356-.73-.189-.231.135-1.015.601-2.015 1.236-.338-.227-.923-.508-1.86-.6-1.486-.148-4.92-.805-6.029-1.275C2.535 7.162.731 6.27 1.131 5.267c.092-.234.527-.613 1.47-.974a8.5 8.5 0 0 1 1.995-.492l-.212.103c-.642.312-1.343.662-1.813 1.075-.034-.022-.07-.044-.094-.069a.527.527 0 0 0-.754-.017.533.533 0 0 0-.017.756c.19.2.471.35.829.465l.039.014c1.245.383 3.458.336 6.578.211 1.345-.052 2.615-.102 3.674-.082 3.512.07 6.152 1.469 8.07 4.279 1.178 1.725.753 3.426.079 4.903a1.4 1.4 0 0 1-.231-.222.54.54 0 0 0-.75-.085.535.535 0 0 0-.086.751c.109.137.665.778 1.355.724l.037-.002c.021-.003.042.001.064-.003.472-.086.768-.063 1.045.111.367.232.547.37.511.485-.021.073-.076.125-.168.177M8.19 11.418l-.315.231a1.6 1.6 0 0 1-.243-.32c.123-.038.33.007.558.089m14.733 4.356a1.9 1.9 0 0 0-.81-.27c.632-1.544 1.034-3.565-.336-5.572-2.096-3.072-5.101-4.668-8.93-4.744-1.091-.022-2.377.029-3.737.083-1.58.063-3.683.145-5.112.027.285-.155.588-.304.851-.431 1.006-.49 1.797-.872 1.535-1.548-.137-.396-.547-.603-1.219-.618C3.748 2.669.688 3.489.138 4.872c-.31.779-.361 2.282 2.775 3.61 1.29.548 4.934 1.216 6.341 1.355.397.039.701.119.931.205a75 75 0 0 0-.986.664c-.577-.329-1.521-.718-2.226-.237a.94.94 0 0 0-.435.768c-.01.385.224.763.486 1.066-1.038.83-1.877 1.634-2.175 2.253-.332.762-.467 2.008.153 3.224.786 1.544 2.524 2.62 5.166 3.199 3.454.755 6.437.075 8.411-.966 1.099-.579 1.878-1.27 2.257-1.887l.356.113c.169.051.338.103.496.159.522.181 1.1.157 1.545-.068l.025-.013c.336-.177.577-.46.683-.803.285-.922-.528-1.432-1.018-1.74" }) + ] + } + ); +}); + +export { SiAfdian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.cjs new file mode 100644 index 000000000..35110ec03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E96EB"; +const SiAffine = React__namespace.forwardRef(function SiAffine2({ title = "AFFiNE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9948 1.3766c-.5962.0055-1.1835.3117-1.496.8633C9.3218 4.294 1.088 18.5025.1273 20.2343c-.3903.9368.1537 2.0479 1.131 2.3204.4061.1076.8337.0533 1.203.0664 5.3733.005 14.2336-.0065 19.6234 0 .1562.0029.4285-.0014.6583-.0664.709-.1974 1.2348-.8705 1.2558-1.6055.008-.2436-.0369-.4874-.125-.713-.1113-.2414-.1953-.3671-.287-.5312l-.545-.9434L14.321 3.656l-.5449-.9434-.2734-.4726c-.1236-.2046-.2846-.39-.4805-.5352-.3071-.2255-.6696-.3314-1.0274-.3281Zm.006 1.3008c.1467.0004.2936.0735.375.2148.1655.2769.6486 1.1385.8164 1.416 1.8312 3.1736 4.1148 7.1296 6.3047 10.9221L10.3581 5.0895c.329-.5697 1.1259-1.952 1.2676-2.1973v-.002c.0814-.1421.2287-.2133.375-.2128zm-2.213 3.4668 7.5548 7.8459c-.0189-.0085-.0377-.017-.0567-.0254L9.2858 8.5232c.0712-.622.1933-1.2419.3496-1.8555zM8.3698 8.535 4.2213 21.3203c-.5326-.0002-1.2787.0002-1.7598 0-.1099-.0007-.6827.0033-.7579-.004-.2804-.005-.478-.3305-.371-.5878.6398-1.1206 4.1786-7.2439 7.0372-12.1936Zm.8437 1.205 5.5743 3.4318-5.504-2.2774A9.1593 9.1593 0 0 1 9.2135 9.74zm-.8594 1.377-.6972 9.465c-.7194.3027-1.4733.537-2.2403.7247zm1.1524.9083 3.5528 1.2246h-3.086a7.1294 7.1294 0 0 1-.33-.7734c-.0508-.1501-.0956-.3-.1368-.4512zm-.5527.8516c.0161.0437.0318.0873.0488.1308l.834 6.338c-.3456.2621-.7092.496-1.088.707zm1.8652 1.168h2.3653c.18 0 .2928.1935.2031.3496l-1.1836 2.0488a.233.233 0 0 1-.4043 0h-.002l-1.1816-2.0488c-.0904-.1561.0224-.3496.203-.3496zm3.6778.0156a7.161 7.161 0 0 1 .832.0996 7.847 7.847 0 0 1 .463.1094l-2.8419 2.4668zm2.381.58a9.1839 9.1839 0 0 1 1.0566.5274l-5.879 3.1739zm-6.8889.2579 1.543 2.6719a7.1154 7.1154 0 0 1-.5039.67 7.8136 7.8136 0 0 1-.3223.3456zm8.965.9453c.2738.2038.5382.4222.797.6485l.9863 1.0234L10.028 20.168c.0195-.0135.0392-.0274.0586-.041zm2.4473 2.6856c.3799.6581.848 1.4656 1.1934 2.0645.0608.0998.0519.1041.0742.1367.0948.2291-.0458.5041-.2793.5742-.0303.0015-.0577.0146-.0918.0118-.0057.005-.129.0039-.2129.0039-3.7797-.001-8.9869-.0003-13.7893 0z" }) + ] + } + ); +}); + +exports.default = SiAffine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.d.ts new file mode 100644 index 000000000..661b79e1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E96EB"; +declare const SiAffine: IconType; +export { SiAffine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.mjs new file mode 100644 index 000000000..9fb1afb35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAffine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E96EB"; +const SiAffine = React.forwardRef(function SiAffine2({ title = "AFFiNE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9948 1.3766c-.5962.0055-1.1835.3117-1.496.8633C9.3218 4.294 1.088 18.5025.1273 20.2343c-.3903.9368.1537 2.0479 1.131 2.3204.4061.1076.8337.0533 1.203.0664 5.3733.005 14.2336-.0065 19.6234 0 .1562.0029.4285-.0014.6583-.0664.709-.1974 1.2348-.8705 1.2558-1.6055.008-.2436-.0369-.4874-.125-.713-.1113-.2414-.1953-.3671-.287-.5312l-.545-.9434L14.321 3.656l-.5449-.9434-.2734-.4726c-.1236-.2046-.2846-.39-.4805-.5352-.3071-.2255-.6696-.3314-1.0274-.3281Zm.006 1.3008c.1467.0004.2936.0735.375.2148.1655.2769.6486 1.1385.8164 1.416 1.8312 3.1736 4.1148 7.1296 6.3047 10.9221L10.3581 5.0895c.329-.5697 1.1259-1.952 1.2676-2.1973v-.002c.0814-.1421.2287-.2133.375-.2128zm-2.213 3.4668 7.5548 7.8459c-.0189-.0085-.0377-.017-.0567-.0254L9.2858 8.5232c.0712-.622.1933-1.2419.3496-1.8555zM8.3698 8.535 4.2213 21.3203c-.5326-.0002-1.2787.0002-1.7598 0-.1099-.0007-.6827.0033-.7579-.004-.2804-.005-.478-.3305-.371-.5878.6398-1.1206 4.1786-7.2439 7.0372-12.1936Zm.8437 1.205 5.5743 3.4318-5.504-2.2774A9.1593 9.1593 0 0 1 9.2135 9.74zm-.8594 1.377-.6972 9.465c-.7194.3027-1.4733.537-2.2403.7247zm1.1524.9083 3.5528 1.2246h-3.086a7.1294 7.1294 0 0 1-.33-.7734c-.0508-.1501-.0956-.3-.1368-.4512zm-.5527.8516c.0161.0437.0318.0873.0488.1308l.834 6.338c-.3456.2621-.7092.496-1.088.707zm1.8652 1.168h2.3653c.18 0 .2928.1935.2031.3496l-1.1836 2.0488a.233.233 0 0 1-.4043 0h-.002l-1.1816-2.0488c-.0904-.1561.0224-.3496.203-.3496zm3.6778.0156a7.161 7.161 0 0 1 .832.0996 7.847 7.847 0 0 1 .463.1094l-2.8419 2.4668zm2.381.58a9.1839 9.1839 0 0 1 1.0566.5274l-5.879 3.1739zm-6.8889.2579 1.543 2.6719a7.1154 7.1154 0 0 1-.5039.67 7.8136 7.8136 0 0 1-.3223.3456zm8.965.9453c.2738.2038.5382.4222.797.6485l.9863 1.0234L10.028 20.168c.0195-.0135.0392-.0274.0586-.041zm2.4473 2.6856c.3799.6581.848 1.4656 1.1934 2.0645.0608.0998.0519.1041.0742.1367.0948.2291-.0458.5041-.2793.5742-.0303.0015-.0577.0146-.0918.0118-.0057.005-.129.0039-.2129.0039-3.7797-.001-8.9869-.0003-13.7893 0z" }) + ] + } + ); +}); + +export { SiAffine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.cjs new file mode 100644 index 000000000..7450adecf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF2D5E"; +const SiAframe = React__namespace.forwardRef(function SiAframe2({ title = "A-Frame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.37 17.07H6.57L4.24 24H3.01l8.23-24h1.52l8.23 24h-1.3zm-.39-1.13l-5-14.96-5.03 14.98h10.03Z" }) + ] + } + ); +}); + +exports.default = SiAframe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.d.ts new file mode 100644 index 000000000..6c93bead3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF2D5E"; +declare const SiAframe: IconType; +export { SiAframe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.mjs new file mode 100644 index 000000000..1498030d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAframe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF2D5E"; +const SiAframe = React.forwardRef(function SiAframe2({ title = "A-Frame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.37 17.07H6.57L4.24 24H3.01l8.23-24h1.52l8.23 24h-1.3zm-.39-1.13l-5-14.96-5.03 14.98h10.03Z" }) + ] + } + ); +}); + +export { SiAframe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.cjs new file mode 100644 index 000000000..d4de47a58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B2FCE4"; +const SiAfterpay = React__namespace.forwardRef(function SiAfterpay2({ title = "Afterpay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12Zm1.236 4.924a2.21 2.21 0 0 1 1.15.299l4.457 2.557c1.495.857 1.495 3.013 0 3.87l-4.457 2.558c-1.488.854-3.342-.22-3.342-1.935v-.34a.441.441 0 0 0-.66-.383L6.287 13.9a.441.441 0 0 0 0 .765l4.096 2.35a.44.44 0 0 0 .661-.382v-.685c0-.333.36-.542.649-.376l1.041.597a.441.441 0 0 1 .222.383v.29c0 1.715-1.854 2.789-3.342 1.935L5.157 16.22c-1.495-.857-1.495-3.013 0-3.87l4.457-2.558c1.488-.854 3.342.22 3.342 1.935v.34c0 .34.366.551.66.383l4.097-2.35a.441.441 0 0 0 0-.765l-4.096-2.351a.441.441 0 0 0-.661.382v.685c0 .333-.36.541-.649.375l-1.041-.597a.442.442 0 0 1-.222-.383v-.29c0-1.285 1.043-2.21 2.192-2.233z" }) + ] + } + ); +}); + +exports.default = SiAfterpay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.d.ts new file mode 100644 index 000000000..270e47172 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B2FCE4"; +declare const SiAfterpay: IconType; +export { SiAfterpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.mjs new file mode 100644 index 000000000..b9dbe8294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAfterpay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B2FCE4"; +const SiAfterpay = React.forwardRef(function SiAfterpay2({ title = "Afterpay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12Zm1.236 4.924a2.21 2.21 0 0 1 1.15.299l4.457 2.557c1.495.857 1.495 3.013 0 3.87l-4.457 2.558c-1.488.854-3.342-.22-3.342-1.935v-.34a.441.441 0 0 0-.66-.383L6.287 13.9a.441.441 0 0 0 0 .765l4.096 2.35a.44.44 0 0 0 .661-.382v-.685c0-.333.36-.542.649-.376l1.041.597a.441.441 0 0 1 .222.383v.29c0 1.715-1.854 2.789-3.342 1.935L5.157 16.22c-1.495-.857-1.495-3.013 0-3.87l4.457-2.558c1.488-.854 3.342.22 3.342 1.935v.34c0 .34.366.551.66.383l4.097-2.35a.441.441 0 0 0 0-.765l-4.096-2.351a.441.441 0 0 0-.661.382v.685c0 .333-.36.541-.649.375l-1.041-.597a.442.442 0 0 1-.222-.383v-.29c0-1.285 1.043-2.21 2.192-2.233z" }) + ] + } + ); +}); + +export { SiAfterpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.cjs new file mode 100644 index 000000000..6506b5103 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6B2B"; +const SiAftership = React__namespace.forwardRef(function SiAftership2({ title = "AfterShip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.549 9.604a10.462 10.462 0 0 0-3.388-6.838A10.632 10.632 0 0 0 12 0a10.64 10.64 0 0 0-7.16 2.764 10.465 10.465 0 0 0-3.428 7.74c0 2.371.81 4.672 2.298 6.529a10.617 10.617 0 0 0 5.895 3.698L12 24l2.395-3.27a10.593 10.593 0 0 0 5.895-3.697 10.442 10.442 0 0 0 2.26-7.43zm-11.306 6.28a.26.26 0 0 1-.034.125.254.254 0 0 1-.347.092l-3.906-2.237a1.005 1.005 0 0 1-.505-.865V8.624a.26.26 0 0 1 .033-.126.254.254 0 0 1 .347-.092l3.907 2.237c.152.089.281.214.368.366.09.151.135.324.135.5v4.372zM12 9.48c-.176 0-.35-.047-.503-.133L7.5 7.057a.241.241 0 0 1-.09-.092.249.249 0 0 1 .09-.342l3.997-2.289a1.025 1.025 0 0 1 1.007 0l3.996 2.29a.24.24 0 0 1 .09.092.247.247 0 0 1 0 .25.271.271 0 0 1-.09.092l-3.997 2.289A1.005 1.005 0 0 1 12 9.48ZM17.546 13a.996.996 0 0 1-.503.866l-3.908 2.237a.254.254 0 0 1-.38-.218V11.51c0-.175.047-.348.135-.501.089-.152.216-.28.368-.366l3.907-2.238a.254.254 0 0 1 .38.219z" }) + ] + } + ); +}); + +exports.default = SiAftership; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.d.ts new file mode 100644 index 000000000..2479b13fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6B2B"; +declare const SiAftership: IconType; +export { SiAftership as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.mjs new file mode 100644 index 000000000..0e15c64e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAftership.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6B2B"; +const SiAftership = React.forwardRef(function SiAftership2({ title = "AfterShip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.549 9.604a10.462 10.462 0 0 0-3.388-6.838A10.632 10.632 0 0 0 12 0a10.64 10.64 0 0 0-7.16 2.764 10.465 10.465 0 0 0-3.428 7.74c0 2.371.81 4.672 2.298 6.529a10.617 10.617 0 0 0 5.895 3.698L12 24l2.395-3.27a10.593 10.593 0 0 0 5.895-3.697 10.442 10.442 0 0 0 2.26-7.43zm-11.306 6.28a.26.26 0 0 1-.034.125.254.254 0 0 1-.347.092l-3.906-2.237a1.005 1.005 0 0 1-.505-.865V8.624a.26.26 0 0 1 .033-.126.254.254 0 0 1 .347-.092l3.907 2.237c.152.089.281.214.368.366.09.151.135.324.135.5v4.372zM12 9.48c-.176 0-.35-.047-.503-.133L7.5 7.057a.241.241 0 0 1-.09-.092.249.249 0 0 1 .09-.342l3.997-2.289a1.025 1.025 0 0 1 1.007 0l3.996 2.29a.24.24 0 0 1 .09.092.247.247 0 0 1 0 .25.271.271 0 0 1-.09.092l-3.997 2.289A1.005 1.005 0 0 1 12 9.48ZM17.546 13a.996.996 0 0 1-.503.866l-3.908 2.237a.254.254 0 0 1-.38-.218V11.51c0-.175.047-.348.135-.501.089-.152.216-.28.368-.366l3.907-2.238a.254.254 0 0 1 .38.219z" }) + ] + } + ); +}); + +export { SiAftership as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.cjs new file mode 100644 index 000000000..096bbb7a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#099DFD"; +const SiAgora = React__namespace.forwardRef(function SiAgora2({ title = "Agora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.4393 11.6804a1.351 1.351 0 1 1 1.3496-1.351 1.3523 1.3523 0 0 1-1.3496 1.351m0-3.8006a2.4496 2.4496 0 1 0 2.4495 2.4496 2.4537 2.4537 0 0 0-2.4495-2.4496m4.0693.631-.0301.0301-.033.0315-.022-.0397-.0191-.033a1.17 1.17 0 0 0-.8695-.6034l-.092-.0178v4.9019l.092-.0123a1.1383 1.1383 0 0 0 1.008-1.1536v-1.285a1.362 1.362 0 0 1 1.211-1.3428l.0728-.0082V7.8812l-.0878.0096a2.086 2.086 0 0 0-1.2344.6227M2.4477 11.6817a1.351 1.351 0 1 1 1.351-1.3509 1.3523 1.3523 0 0 1-1.351 1.351m1.5731-3.3192-.0206.0274-.0205.0275-.0275-.0206-.026-.0206a2.4496 2.4496 0 1 0-1.4785 4.404 2.4235 2.4235 0 0 0 1.4785-.4978l.026-.0192.0275-.022.0204.0289.0206.0274a1.1685 1.1685 0 0 0 .786.4718l.0905.0124v-4.902l-.0905.0124a1.17 1.17 0 0 0-.786.4704m17.5298 3.3191a1.351 1.351 0 1 1 1.3523-1.3509 1.3523 1.3523 0 0 1-1.351 1.351m2.3577-3.7896a1.1754 1.1754 0 0 0-.7872.4704l-.0192.026-.0206.029-.0274-.0207-.026-.0206a2.4496 2.4496 0 1 0-1.4786 4.4014 2.4235 2.4235 0 0 0 1.4785-.498l.026-.0191.0275-.022.0206.0289.0192.0274a1.174 1.174 0 0 0 .7872.4718L24 12.779V7.8798ZM7.9778 8.9785a1.351 1.351 0 1 1-1.3524 1.351 1.3523 1.3523 0 0 1 1.355-1.351M9.5099 12.24a2.444 2.444 0 0 0 .5006-3.2835 1.9775 1.9775 0 0 0-.1125-.1523 1.1877 1.1877 0 0 0 .524-.8325l.0137-.0919H7.9683A2.4482 2.4482 0 0 0 6.4444 12.24a2.4427 2.4427 0 0 0-.2935.2743l.7461.823a1.351 1.351 0 1 1 1.7831 1.9613l.7475.8229a2.4469 2.4469 0 0 0 .07-3.876" }) + ] + } + ); +}); + +exports.default = SiAgora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.d.ts new file mode 100644 index 000000000..b82df989a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#099DFD"; +declare const SiAgora: IconType; +export { SiAgora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.mjs new file mode 100644 index 000000000..0f91b01aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAgora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#099DFD"; +const SiAgora = React.forwardRef(function SiAgora2({ title = "Agora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.4393 11.6804a1.351 1.351 0 1 1 1.3496-1.351 1.3523 1.3523 0 0 1-1.3496 1.351m0-3.8006a2.4496 2.4496 0 1 0 2.4495 2.4496 2.4537 2.4537 0 0 0-2.4495-2.4496m4.0693.631-.0301.0301-.033.0315-.022-.0397-.0191-.033a1.17 1.17 0 0 0-.8695-.6034l-.092-.0178v4.9019l.092-.0123a1.1383 1.1383 0 0 0 1.008-1.1536v-1.285a1.362 1.362 0 0 1 1.211-1.3428l.0728-.0082V7.8812l-.0878.0096a2.086 2.086 0 0 0-1.2344.6227M2.4477 11.6817a1.351 1.351 0 1 1 1.351-1.3509 1.3523 1.3523 0 0 1-1.351 1.351m1.5731-3.3192-.0206.0274-.0205.0275-.0275-.0206-.026-.0206a2.4496 2.4496 0 1 0-1.4785 4.404 2.4235 2.4235 0 0 0 1.4785-.4978l.026-.0192.0275-.022.0204.0289.0206.0274a1.1685 1.1685 0 0 0 .786.4718l.0905.0124v-4.902l-.0905.0124a1.17 1.17 0 0 0-.786.4704m17.5298 3.3191a1.351 1.351 0 1 1 1.3523-1.3509 1.3523 1.3523 0 0 1-1.351 1.351m2.3577-3.7896a1.1754 1.1754 0 0 0-.7872.4704l-.0192.026-.0206.029-.0274-.0207-.026-.0206a2.4496 2.4496 0 1 0-1.4786 4.4014 2.4235 2.4235 0 0 0 1.4785-.498l.026-.0191.0275-.022.0206.0289.0192.0274a1.174 1.174 0 0 0 .7872.4718L24 12.779V7.8798ZM7.9778 8.9785a1.351 1.351 0 1 1-1.3524 1.351 1.3523 1.3523 0 0 1 1.355-1.351M9.5099 12.24a2.444 2.444 0 0 0 .5006-3.2835 1.9775 1.9775 0 0 0-.1125-.1523 1.1877 1.1877 0 0 0 .524-.8325l.0137-.0919H7.9683A2.4482 2.4482 0 0 0 6.4444 12.24a2.4427 2.4427 0 0 0-.2935.2743l.7461.823a1.351 1.351 0 1 1 1.7831 1.9613l.7475.8229a2.4469 2.4469 0 0 0 .07-3.876" }) + ] + } + ); +}); + +export { SiAgora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAib.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAib.cjs new file mode 100644 index 000000000..a90eeb866 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAib.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7F2B7B"; +const SiAib = React__namespace.forwardRef(function SiAib2({ title = "AIB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.8125.004c-.045.0116-.0796.0506-.0977.1073-.1266.4015-.6012 3.0184.7286 3.129 4.032.3342 3.338 3.6082 6.2832 4.2148v1.0703H9.6328l-.9453.9297h3.039v1.8183H9.1642c-2.0105 0-2.8492-1.3788-2.5196-2.4277.2838-.9032 2.2103-2.6043-.1308-3.334.7429 2.0266-2.4297 1.7762-2.4297 4.8945 0 2.4346 2.8034 3.3262 5.08 3.3262h6.3712c2.2766 0 5.08-.8916 5.08-3.3262 0-3.1183-3.1726-2.868-2.4297-4.8945-2.341.7297-.4126 2.4308-.1289 3.334.3296 1.0489-.511 2.4277-2.5214 2.4277h-2.5625V9.4551h3.039l-.9453-.9297h-2.0937V7.459c2.39-.49 2.6793-2.8833 4.3183-4.0488.7411-.5268 2.0625-.5293 2.0625-.5293s-1.8286-1.3563-2.0254-1.502c-.1964-.1456-.6423-.455-1.168-.455-.6355 0-1.5042.9231-2.1015 1.3046-1.279.818-4.0935 2.129-9.086-2.17-.059-.0509-.1151-.0663-.1601-.0546zm11.4766 1.7577c.3063 0 .5546.248.5546.5547a.5545.5545 0 01-.5546.5547.5543.5543 0 01-.5547-.5547c0-.3067.248-.5547.5547-.5547zM5.8945 15.9551L2.713 24H4.375l.7363-1.8867h3.127L8.9843 24h1.6876l-3.0137-7.625c-.0984-.2494-.3452-.42-.6133-.42zm5.17 0v.3672c.0472.0203.0956.043.1386.0625.2022.1428.3457.4904.3457.8984l.002 6.4297c0 .1582.127.2871.2851.2871h1.8243v-.3672c-.0476-.021-.0969-.043-.1407-.0625-.2022-.1428-.3457-.4925-.3457-.9004V16.242c0-.1578-.127-.287-.2851-.287zm3.832 0V24h3.8047c1.6017 0 2.586-1.0737 2.586-2.1816 0-.8782-.5965-1.6329-1.4532-1.9746.579-.3973.9531-1.0128.9531-1.707 0-1.1076-.9842-2.1817-2.586-2.1817zm1.5156 1.3887h1.8496c.534 0 .9668.4332.9668.9667 0 .5179-.4078.9386-.92.963h-1.8964zm-9.7266.8945l1 2.4765H5.6797zm9.7266 2.4433h2.3828c.534 0 .9356.4294.9356.963 0 .5335-.4349.9667-.9688.9667h-2.3496Z" }) + ] + } + ); +}); + +exports.default = SiAib; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAib.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAib.d.ts new file mode 100644 index 000000000..af981923b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAib.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7F2B7B"; +declare const SiAib: IconType; +export { SiAib as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAib.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAib.mjs new file mode 100644 index 000000000..5bbd12511 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAib.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7F2B7B"; +const SiAib = React.forwardRef(function SiAib2({ title = "AIB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.8125.004c-.045.0116-.0796.0506-.0977.1073-.1266.4015-.6012 3.0184.7286 3.129 4.032.3342 3.338 3.6082 6.2832 4.2148v1.0703H9.6328l-.9453.9297h3.039v1.8183H9.1642c-2.0105 0-2.8492-1.3788-2.5196-2.4277.2838-.9032 2.2103-2.6043-.1308-3.334.7429 2.0266-2.4297 1.7762-2.4297 4.8945 0 2.4346 2.8034 3.3262 5.08 3.3262h6.3712c2.2766 0 5.08-.8916 5.08-3.3262 0-3.1183-3.1726-2.868-2.4297-4.8945-2.341.7297-.4126 2.4308-.1289 3.334.3296 1.0489-.511 2.4277-2.5214 2.4277h-2.5625V9.4551h3.039l-.9453-.9297h-2.0937V7.459c2.39-.49 2.6793-2.8833 4.3183-4.0488.7411-.5268 2.0625-.5293 2.0625-.5293s-1.8286-1.3563-2.0254-1.502c-.1964-.1456-.6423-.455-1.168-.455-.6355 0-1.5042.9231-2.1015 1.3046-1.279.818-4.0935 2.129-9.086-2.17-.059-.0509-.1151-.0663-.1601-.0546zm11.4766 1.7577c.3063 0 .5546.248.5546.5547a.5545.5545 0 01-.5546.5547.5543.5543 0 01-.5547-.5547c0-.3067.248-.5547.5547-.5547zM5.8945 15.9551L2.713 24H4.375l.7363-1.8867h3.127L8.9843 24h1.6876l-3.0137-7.625c-.0984-.2494-.3452-.42-.6133-.42zm5.17 0v.3672c.0472.0203.0956.043.1386.0625.2022.1428.3457.4904.3457.8984l.002 6.4297c0 .1582.127.2871.2851.2871h1.8243v-.3672c-.0476-.021-.0969-.043-.1407-.0625-.2022-.1428-.3457-.4925-.3457-.9004V16.242c0-.1578-.127-.287-.2851-.287zm3.832 0V24h3.8047c1.6017 0 2.586-1.0737 2.586-2.1816 0-.8782-.5965-1.6329-1.4532-1.9746.579-.3973.9531-1.0128.9531-1.707 0-1.1076-.9842-2.1817-2.586-2.1817zm1.5156 1.3887h1.8496c.534 0 .9668.4332.9668.9667 0 .5179-.4078.9386-.92.963h-1.8964zm-9.7266.8945l1 2.4765H5.6797zm9.7266 2.4433h2.3828c.534 0 .9356.4294.9356.963 0 .5335-.4349.9667-.9688.9667h-2.3496Z" }) + ] + } + ); +}); + +export { SiAib as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.cjs new file mode 100644 index 000000000..28e9f81e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAidungeon = React__namespace.forwardRef(function SiAidungeon2({ title = "AI Dungeon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm5.646 13.002H7.21c.117 0 .213.095.213.213v.123c0 .117-.096.21-.213.21h-.457v1.68h.457c.117 0 .213.096.213.213v.123c0 .118-.096.211-.213.211H5.646a.21.21 0 01-.21-.21v-.124c0-.117.093-.212.21-.212h.46v-1.68h-.46a.21.21 0 01-.21-.211v-.123c0-.118.093-.213.21-.213zm-2.833.023h.958c.13 0 .19.093.235.235l.756 1.974h.06c.13 0 .235.105.235.235v.09c0 .13-.105.234-.235.234h-.816a.234.234 0 01-.235-.234v-.09c0-.13.105-.235.235-.235h.101l-.074-.224h-.969l-.078.224h.178a.2.2 0 01.201.202v.132a.2.2 0 01-.2.202H2.35a.2.2 0 01-.202-.202v-.132a.2.2 0 01.202-.202h.113l.625-1.707h-.276a.234.234 0 01-.234-.234v-.033c0-.13.105-.235.235-.235zm.748.557l-.317.908h.617zm14.109 3.885h.002c.736 0 1.333.649 1.332 1.449 0 .8-.597 1.448-1.332 1.447-.736 0-1.332-.647-1.332-1.447-.001-.8.595-1.448 1.33-1.45zm-4.71.002c.118 0 .212.097.212.219 0 .226-.004.447 0 .671 0 0 .036.268-.223.264-.285-.004-.198-.263-.408-.514-.085-.1-.14-.124-.377-.127-.387-.003-.736.16-.734.9 0 .391.143.931.68.956.156.007.452-.072.452-.072v-.348h-.289a.218.218 0 01-.218-.219v-.082c0-.121.097-.219.218-.219h.977c.121 0 .219.098.219.22v.081a.218.218 0 01-.219.219h-.068l.004.686s-.3.26-1.088.253c-.995-.007-1.356-.78-1.354-1.437.003-.855.61-1.433 1.244-1.441.332-.005.583.078.778.17.02-.1.093-.18.195-.18zm.868.062h1.985c.12 0 .218.098.218.219v.64a.218.218 0 01-.218.22h-.086a.218.218 0 01-.22-.22v-.312h-1.044c0 .006.006.01.006.016v.508h.375v-.055c0-.121.097-.219.219-.219h.054c.121 0 .219.098.219.219v.633a.218.218 0 01-.219.218h-.055a.218.218 0 01-.218-.218v-.055h-.375v.617c0 .003-.004.005-.004.008h1.043v-.313c0-.12.097-.218.219-.218h.086c.12 0 .218.097.218.218v.641a.218.218 0 01-.218.219h-1.985a.218.218 0 01-.219-.219v-.11c0-.12.098-.218.22-.218l.054-.008v-1.648c0-.006.005-.01.006-.016h-.06a.218.218 0 01-.22-.219v-.109c0-.121.098-.219.22-.219zm-10.264.002c.426.02 1.278.202 1.295 1.35.025 1.576-1.502 1.398-1.502 1.398h-.81a.218.218 0 01-.219-.218v-.07c0-.122.098-.22.219-.22h.062l.014-1.726h-.068a.218.218 0 01-.22-.219v-.07c0-.121.099-.219.22-.219.34 0 .673.007 1.01-.006zm1.725 0h.746c.121 0 .219.098.219.219v.088a.218.218 0 01-.219.219h-.08l.004 1.414c-.002.211.176.343.47.347.253.005.468-.132.471-.353v-1.404h-.074a.218.218 0 01-.219-.22v-.087c0-.121.098-.219.22-.219h.743c.122 0 .22.098.22.219v.088a.218.218 0 01-.22.218h-.08l-.004 1.29c0 .494-.24 1.015-1.062 1.015-.765 0-1.09-.457-1.076-1.021l-.006-1.287h-.053a.218.218 0 01-.219-.22v-.087c0-.121.098-.219.22-.219zm4.266.006h.816c.121 0 .219.098.219.219v.076a.218.218 0 01-.219.219h-.074l.017 2.16c-.014.053-.04.086-.123.105a.928.928 0 01-.308.006c-.09-.03-.14-.089-.194-.15l-.96-1.617.01 1.22h.212c.121 0 .219.098.219.22v.075a.218.218 0 01-.219.22h-.816a.218.218 0 01-.219-.22v-.076c0-.12.098-.218.219-.218h.043l.01-1.74h-.036a.218.218 0 01-.218-.22v-.054c0-.122.097-.22.218-.22h.5c.122 0 .158.054.246.22l.852 1.515.012-1.226h-.207a.218.218 0 01-.22-.219v-.076c0-.121.098-.219.22-.219zm11.25 0h.816c.121 0 .219.098.219.219v.076a.218.218 0 01-.219.219h-.074l.017 2.16c-.014.053-.04.086-.123.105a.928.928 0 01-.308.006c-.09-.03-.14-.089-.194-.15l-.96-1.617.01 1.22h.212c.121 0 .219.098.219.22v.075a.218.218 0 01-.219.22h-.816a.218.218 0 01-.219-.22v-.076c0-.12.098-.218.219-.218h.043l.01-1.74h-.036a.218.218 0 01-.218-.22v-.054c0-.121.097-.219.218-.219h.5c.122 0 .158.053.247.219L21 19.279l.012-1.226h-.207a.218.218 0 01-.22-.219v-.076c0-.121.098-.219.22-.219zm-3.768 1.377c0 .5.285.904.635.904.35 0 .634-.404.635-.904 0-.5-.284-.906-.635-.906-.39 0-.632.503-.635.906zm-13.783-.869l.006 1.707c.347-.026.924.007.922-.861-.003-.84-.673-.856-.928-.846z" }) + ] + } + ); +}); + +exports.default = SiAidungeon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.d.ts new file mode 100644 index 000000000..6c228f856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAidungeon: IconType; +export { SiAidungeon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.mjs new file mode 100644 index 000000000..83c95f16e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAidungeon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAidungeon = React.forwardRef(function SiAidungeon2({ title = "AI Dungeon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm5.646 13.002H7.21c.117 0 .213.095.213.213v.123c0 .117-.096.21-.213.21h-.457v1.68h.457c.117 0 .213.096.213.213v.123c0 .118-.096.211-.213.211H5.646a.21.21 0 01-.21-.21v-.124c0-.117.093-.212.21-.212h.46v-1.68h-.46a.21.21 0 01-.21-.211v-.123c0-.118.093-.213.21-.213zm-2.833.023h.958c.13 0 .19.093.235.235l.756 1.974h.06c.13 0 .235.105.235.235v.09c0 .13-.105.234-.235.234h-.816a.234.234 0 01-.235-.234v-.09c0-.13.105-.235.235-.235h.101l-.074-.224h-.969l-.078.224h.178a.2.2 0 01.201.202v.132a.2.2 0 01-.2.202H2.35a.2.2 0 01-.202-.202v-.132a.2.2 0 01.202-.202h.113l.625-1.707h-.276a.234.234 0 01-.234-.234v-.033c0-.13.105-.235.235-.235zm.748.557l-.317.908h.617zm14.109 3.885h.002c.736 0 1.333.649 1.332 1.449 0 .8-.597 1.448-1.332 1.447-.736 0-1.332-.647-1.332-1.447-.001-.8.595-1.448 1.33-1.45zm-4.71.002c.118 0 .212.097.212.219 0 .226-.004.447 0 .671 0 0 .036.268-.223.264-.285-.004-.198-.263-.408-.514-.085-.1-.14-.124-.377-.127-.387-.003-.736.16-.734.9 0 .391.143.931.68.956.156.007.452-.072.452-.072v-.348h-.289a.218.218 0 01-.218-.219v-.082c0-.121.097-.219.218-.219h.977c.121 0 .219.098.219.22v.081a.218.218 0 01-.219.219h-.068l.004.686s-.3.26-1.088.253c-.995-.007-1.356-.78-1.354-1.437.003-.855.61-1.433 1.244-1.441.332-.005.583.078.778.17.02-.1.093-.18.195-.18zm.868.062h1.985c.12 0 .218.098.218.219v.64a.218.218 0 01-.218.22h-.086a.218.218 0 01-.22-.22v-.312h-1.044c0 .006.006.01.006.016v.508h.375v-.055c0-.121.097-.219.219-.219h.054c.121 0 .219.098.219.219v.633a.218.218 0 01-.219.218h-.055a.218.218 0 01-.218-.218v-.055h-.375v.617c0 .003-.004.005-.004.008h1.043v-.313c0-.12.097-.218.219-.218h.086c.12 0 .218.097.218.218v.641a.218.218 0 01-.218.219h-1.985a.218.218 0 01-.219-.219v-.11c0-.12.098-.218.22-.218l.054-.008v-1.648c0-.006.005-.01.006-.016h-.06a.218.218 0 01-.22-.219v-.109c0-.121.098-.219.22-.219zm-10.264.002c.426.02 1.278.202 1.295 1.35.025 1.576-1.502 1.398-1.502 1.398h-.81a.218.218 0 01-.219-.218v-.07c0-.122.098-.22.219-.22h.062l.014-1.726h-.068a.218.218 0 01-.22-.219v-.07c0-.121.099-.219.22-.219.34 0 .673.007 1.01-.006zm1.725 0h.746c.121 0 .219.098.219.219v.088a.218.218 0 01-.219.219h-.08l.004 1.414c-.002.211.176.343.47.347.253.005.468-.132.471-.353v-1.404h-.074a.218.218 0 01-.219-.22v-.087c0-.121.098-.219.22-.219h.743c.122 0 .22.098.22.219v.088a.218.218 0 01-.22.218h-.08l-.004 1.29c0 .494-.24 1.015-1.062 1.015-.765 0-1.09-.457-1.076-1.021l-.006-1.287h-.053a.218.218 0 01-.219-.22v-.087c0-.121.098-.219.22-.219zm4.266.006h.816c.121 0 .219.098.219.219v.076a.218.218 0 01-.219.219h-.074l.017 2.16c-.014.053-.04.086-.123.105a.928.928 0 01-.308.006c-.09-.03-.14-.089-.194-.15l-.96-1.617.01 1.22h.212c.121 0 .219.098.219.22v.075a.218.218 0 01-.219.22h-.816a.218.218 0 01-.219-.22v-.076c0-.12.098-.218.219-.218h.043l.01-1.74h-.036a.218.218 0 01-.218-.22v-.054c0-.122.097-.22.218-.22h.5c.122 0 .158.054.246.22l.852 1.515.012-1.226h-.207a.218.218 0 01-.22-.219v-.076c0-.121.098-.219.22-.219zm11.25 0h.816c.121 0 .219.098.219.219v.076a.218.218 0 01-.219.219h-.074l.017 2.16c-.014.053-.04.086-.123.105a.928.928 0 01-.308.006c-.09-.03-.14-.089-.194-.15l-.96-1.617.01 1.22h.212c.121 0 .219.098.219.22v.075a.218.218 0 01-.219.22h-.816a.218.218 0 01-.219-.22v-.076c0-.12.098-.218.219-.218h.043l.01-1.74h-.036a.218.218 0 01-.218-.22v-.054c0-.121.097-.219.218-.219h.5c.122 0 .158.053.247.219L21 19.279l.012-1.226h-.207a.218.218 0 01-.22-.219v-.076c0-.121.098-.219.22-.219zm-3.768 1.377c0 .5.285.904.635.904.35 0 .634-.404.635-.904 0-.5-.284-.906-.635-.906-.39 0-.632.503-.635.906zm-13.783-.869l.006 1.707c.347-.026.924.007.922-.861-.003-.84-.673-.856-.928-.846z" }) + ] + } + ); +}); + +export { SiAidungeon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.cjs new file mode 100644 index 000000000..5d011ec81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C5BB4"; +const SiAiohttp = React__namespace.forwardRef(function SiAiohttp2({ title = "AIOHTTP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12C.01 5.377 5.377.01 12 0c6.623.01 11.99 5.377 12 12-.01 6.623-5.377 11.99-12 12C5.377 23.99.01 18.623 0 12zm12 11.004a10.948 10.948 0 0 0 6.81-2.367l-.303-.656a.746.746 0 0 1-.621-1.347l-.722-1.563a1.244 1.244 0 0 1-1.543-.734l-2.474.633v.012a.747.747 0 1 1-1.475-.178L8.2 15.31a1.244 1.244 0 0 1-1.278.607l-.748 2.59a.747.747 0 0 1-.17 1.388l.052 1.36A10.935 10.935 0 0 0 12 23.003zM5.75 21.05l-.044-1.142a.747.747 0 0 1 .18-1.482l.749-2.59a1.245 1.245 0 0 1-.759-1.147l-4.674-.566A11.035 11.035 0 0 0 5.75 21.05zm13.3-.608a11.083 11.083 0 0 0 2.74-3.421l-3.826-.751a1.245 1.245 0 0 1-.528.672l.732 1.588a.747.747 0 0 1 .598 1.3l.285.612zm2.878-3.698A10.934 10.934 0 0 0 23.004 12a10.95 10.95 0 0 0-2.492-6.965L19 5.551a.749.749 0 0 1-.726.922.747.747 0 0 1-.682-.442L14.449 7.1a2.492 2.492 0 0 1-1.015 2.737l2.857 4.901a1.245 1.245 0 0 1 1.732 1.236l3.904.77zm-8.846-.068l2.465-.63a1.242 1.242 0 0 1 .486-1.157l-2.856-4.9a2.478 2.478 0 0 1-2.444-.11l-2.77 3.892a1.242 1.242 0 0 1 .354 1.263l3.483 1.497a.746.746 0 0 1 1.282.143v.002zm-7.17-2.284a1.246 1.246 0 0 1 1.81-.794l2.77-3.89a2.484 2.484 0 0 1-.93-1.94c0-.603.219-1.186.617-1.64L6.476 2.487a11.013 11.013 0 0 0-5.33 11.328l4.765.578zm8.44-7.572l3.174-1.083v-.01a.747.747 0 0 1 1.345-.448l1.433-.489A10.982 10.982 0 0 0 6.745 2.333l3.64 3.581a2.49 2.49 0 0 1 3.967.904l-.002.003z" }) + ] + } + ); +}); + +exports.default = SiAiohttp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.d.ts new file mode 100644 index 000000000..93966c778 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C5BB4"; +declare const SiAiohttp: IconType; +export { SiAiohttp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.mjs new file mode 100644 index 000000000..6d168210f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAiohttp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C5BB4"; +const SiAiohttp = React.forwardRef(function SiAiohttp2({ title = "AIOHTTP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12C.01 5.377 5.377.01 12 0c6.623.01 11.99 5.377 12 12-.01 6.623-5.377 11.99-12 12C5.377 23.99.01 18.623 0 12zm12 11.004a10.948 10.948 0 0 0 6.81-2.367l-.303-.656a.746.746 0 0 1-.621-1.347l-.722-1.563a1.244 1.244 0 0 1-1.543-.734l-2.474.633v.012a.747.747 0 1 1-1.475-.178L8.2 15.31a1.244 1.244 0 0 1-1.278.607l-.748 2.59a.747.747 0 0 1-.17 1.388l.052 1.36A10.935 10.935 0 0 0 12 23.003zM5.75 21.05l-.044-1.142a.747.747 0 0 1 .18-1.482l.749-2.59a1.245 1.245 0 0 1-.759-1.147l-4.674-.566A11.035 11.035 0 0 0 5.75 21.05zm13.3-.608a11.083 11.083 0 0 0 2.74-3.421l-3.826-.751a1.245 1.245 0 0 1-.528.672l.732 1.588a.747.747 0 0 1 .598 1.3l.285.612zm2.878-3.698A10.934 10.934 0 0 0 23.004 12a10.95 10.95 0 0 0-2.492-6.965L19 5.551a.749.749 0 0 1-.726.922.747.747 0 0 1-.682-.442L14.449 7.1a2.492 2.492 0 0 1-1.015 2.737l2.857 4.901a1.245 1.245 0 0 1 1.732 1.236l3.904.77zm-8.846-.068l2.465-.63a1.242 1.242 0 0 1 .486-1.157l-2.856-4.9a2.478 2.478 0 0 1-2.444-.11l-2.77 3.892a1.242 1.242 0 0 1 .354 1.263l3.483 1.497a.746.746 0 0 1 1.282.143v.002zm-7.17-2.284a1.246 1.246 0 0 1 1.81-.794l2.77-3.89a2.484 2.484 0 0 1-.93-1.94c0-.603.219-1.186.617-1.64L6.476 2.487a11.013 11.013 0 0 0-5.33 11.328l4.765.578zm8.44-7.572l3.174-1.083v-.01a.747.747 0 0 1 1.345-.448l1.433-.489A10.982 10.982 0 0 0 6.745 2.333l3.64 3.581a2.49 2.49 0 0 1 3.967.904l-.002.003z" }) + ] + } + ); +}); + +export { SiAiohttp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.cjs new file mode 100644 index 000000000..6f0ac6604 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7A1FA2"; +const SiAiqfome = React__namespace.forwardRef(function SiAiqfome2({ title = "Aiqfome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.748 9.195c.607.277.992 1.139 1.04 2.342.033.797-.06 1.399-.303 1.925-.564 1.209-1.578 1.252-2.163.092-.25-.488-.358-1.025-.358-1.778.006-.803.092-1.274.347-1.795.363-.742.895-1.035 1.437-.786zm9.768.076c.591.39.998 1.627.916 2.776-.092 1.371-.699 2.358-1.436 2.358-.407 0-.824-.358-1.095-.943-.45-.976-.423-2.613.065-3.567.363-.716 1.024-.981 1.55-.624zM12.388.029c.223.032.255.06.38.292.184.336.298.456.64.678.314.2.314.211.206.726-.093.434-.039.862.162 1.247.293.58 1.111 1.187 1.86 1.377.281.076.395.081.737.022.222-.033.439-.049.482-.033.049.022.163.2.26.401.217.467.76 1.025 1.193 1.226.705.33 1.47.314 2.206-.05.206-.102.412-.167.461-.151.043.016.168.14.276.271.109.136.326.309.478.385.249.13.341.146.753.14.325-.005.488.012.526.06.157.19.59 2.201.775 3.584.163 1.241.179 4.017.027 5.23-.2 1.644-.498 3.053-.91 4.321-.293.9-.553 1.491-1.09 2.456C20.997 23.675 20.682 24 20.086 24a2.01 2.01 0 0 1-.493-.06c-.353-.119-.895-.536-1.73-1.328-.986-.932-1.404-1.257-1.924-1.512-.634-.315-1.258-.342-1.8-.076-.13.065-.498.358-.807.656-.65.618-.9.753-1.47.791-.704.044-1.1-.135-2.206-.992-.471-.363-.818-.526-1.203-.558-.466-.038-.808.081-1.561.537-.743.45-1.139.59-1.654.59-1.073 0-2.006-.66-2.965-2.097C1.205 18.34.424 16.09.17 13.863c-.098-.84-.114-2.537-.033-3.367.428-4.266 2.494-7.53 5.828-9.193C7.005.783 8.149.419 9.455.197c.976-.163 2.413-.244 2.933-.168zm-2.239 1.48C7.64 1.758 5.2 3.113 3.731 5.065c-1.529 2.033-2.38 5.399-2.07 8.19.2 1.85.964 3.947 1.989 5.487.52.78.72.997 1.084 1.176.553.271 1.122.174 1.827-.309.629-.434 1.28-.623 1.978-.585.71.043.982.184 2.055 1.1.634.542 1.182.602 1.794.195.136-.092.44-.325.678-.52.764-.634 1.35-.857 2.277-.862 1.16-.006 1.913.428 2.981 1.73.868 1.05 1.204 1.268 1.68 1.089.781-.298 1.567-2.082 2.082-4.716.683-3.48.553-6.522-.352-8.37-.293-.608-.645-.998-.976-1.095-.206-.06-.27-.055-.704.086-.418.136-.564.158-1.106.158-.51 0-.689-.028-.992-.13-.58-.196-.84-.434-1.486-1.356-.298-.428-.558-.569-1.263-.71-1.3-.25-1.832-.477-2.293-.976-.434-.466-.71-1.09-.91-2.054-.055-.282-.152-.591-.212-.689-.222-.357-.759-.488-1.643-.395z" }) + ] + } + ); +}); + +exports.default = SiAiqfome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.d.ts new file mode 100644 index 000000000..e783c5ca3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7A1FA2"; +declare const SiAiqfome: IconType; +export { SiAiqfome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.mjs new file mode 100644 index 000000000..00822024f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAiqfome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7A1FA2"; +const SiAiqfome = React.forwardRef(function SiAiqfome2({ title = "Aiqfome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.748 9.195c.607.277.992 1.139 1.04 2.342.033.797-.06 1.399-.303 1.925-.564 1.209-1.578 1.252-2.163.092-.25-.488-.358-1.025-.358-1.778.006-.803.092-1.274.347-1.795.363-.742.895-1.035 1.437-.786zm9.768.076c.591.39.998 1.627.916 2.776-.092 1.371-.699 2.358-1.436 2.358-.407 0-.824-.358-1.095-.943-.45-.976-.423-2.613.065-3.567.363-.716 1.024-.981 1.55-.624zM12.388.029c.223.032.255.06.38.292.184.336.298.456.64.678.314.2.314.211.206.726-.093.434-.039.862.162 1.247.293.58 1.111 1.187 1.86 1.377.281.076.395.081.737.022.222-.033.439-.049.482-.033.049.022.163.2.26.401.217.467.76 1.025 1.193 1.226.705.33 1.47.314 2.206-.05.206-.102.412-.167.461-.151.043.016.168.14.276.271.109.136.326.309.478.385.249.13.341.146.753.14.325-.005.488.012.526.06.157.19.59 2.201.775 3.584.163 1.241.179 4.017.027 5.23-.2 1.644-.498 3.053-.91 4.321-.293.9-.553 1.491-1.09 2.456C20.997 23.675 20.682 24 20.086 24a2.01 2.01 0 0 1-.493-.06c-.353-.119-.895-.536-1.73-1.328-.986-.932-1.404-1.257-1.924-1.512-.634-.315-1.258-.342-1.8-.076-.13.065-.498.358-.807.656-.65.618-.9.753-1.47.791-.704.044-1.1-.135-2.206-.992-.471-.363-.818-.526-1.203-.558-.466-.038-.808.081-1.561.537-.743.45-1.139.59-1.654.59-1.073 0-2.006-.66-2.965-2.097C1.205 18.34.424 16.09.17 13.863c-.098-.84-.114-2.537-.033-3.367.428-4.266 2.494-7.53 5.828-9.193C7.005.783 8.149.419 9.455.197c.976-.163 2.413-.244 2.933-.168zm-2.239 1.48C7.64 1.758 5.2 3.113 3.731 5.065c-1.529 2.033-2.38 5.399-2.07 8.19.2 1.85.964 3.947 1.989 5.487.52.78.72.997 1.084 1.176.553.271 1.122.174 1.827-.309.629-.434 1.28-.623 1.978-.585.71.043.982.184 2.055 1.1.634.542 1.182.602 1.794.195.136-.092.44-.325.678-.52.764-.634 1.35-.857 2.277-.862 1.16-.006 1.913.428 2.981 1.73.868 1.05 1.204 1.268 1.68 1.089.781-.298 1.567-2.082 2.082-4.716.683-3.48.553-6.522-.352-8.37-.293-.608-.645-.998-.976-1.095-.206-.06-.27-.055-.704.086-.418.136-.564.158-1.106.158-.51 0-.689-.028-.992-.13-.58-.196-.84-.434-1.486-1.356-.298-.428-.558-.569-1.263-.71-1.3-.25-1.832-.477-2.293-.976-.434-.466-.71-1.09-.91-2.054-.055-.282-.152-.591-.212-.689-.222-.357-.759-.488-1.643-.395z" }) + ] + } + ); +}); + +export { SiAiqfome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.cjs new file mode 100644 index 000000000..350a3e442 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiAirasia = React__namespace.forwardRef(function SiAirasia2({ title = "AirAsia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.54 14.49c-1.278 0-2.264-.998-2.264-2.276 0-1.252.98-2.27 2.264-2.27 1.232 0 2.238 1.018 2.238 2.27 0 1.278-1.005 2.277-2.239 2.277zm3.074-7.854l-.214.998c-.59-1.18-2.348-1.297-3.295-1.297-2.952 0-5.527 2.841-5.527 6.746 0 3.14 1.875 5.111 4.23 5.111 1.316 0 2.432-.304 3.353-1.4l-.24 1.102h3.711l1.692-11.26c-1.238-.001-2.482.01-3.71 0zM12 0c6.63 0 12 5.37 12 12s-5.37 12-12 12S0 18.63 0 12 5.37 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiAirasia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.d.ts new file mode 100644 index 000000000..ce80a19b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiAirasia: IconType; +export { SiAirasia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.mjs new file mode 100644 index 000000000..29982a553 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirasia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiAirasia = React.forwardRef(function SiAirasia2({ title = "AirAsia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.54 14.49c-1.278 0-2.264-.998-2.264-2.276 0-1.252.98-2.27 2.264-2.27 1.232 0 2.238 1.018 2.238 2.27 0 1.278-1.005 2.277-2.239 2.277zm3.074-7.854l-.214.998c-.59-1.18-2.348-1.297-3.295-1.297-2.952 0-5.527 2.841-5.527 6.746 0 3.14 1.875 5.111 4.23 5.111 1.316 0 2.432-.304 3.353-1.4l-.24 1.102h3.711l1.692-11.26c-1.238-.001-2.482.01-3.71 0zM12 0c6.63 0 12 5.37 12 12s-5.37 12-12 12S0 18.63 0 12 5.37 0 12 0Z" }) + ] + } + ); +}); + +export { SiAirasia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.cjs new file mode 100644 index 000000000..780d24e34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5A5F"; +const SiAirbnb = React__namespace.forwardRef(function SiAirbnb2({ title = "Airbnb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001 18.275c-1.353-1.697-2.148-3.184-2.413-4.457-.263-1.027-.16-1.848.291-2.465.477-.71 1.188-1.056 2.121-1.056s1.643.345 2.12 1.063c.446.61.558 1.432.286 2.465-.291 1.298-1.085 2.785-2.412 4.458zm9.601 1.14c-.185 1.246-1.034 2.28-2.2 2.783-2.253.98-4.483-.583-6.392-2.704 3.157-3.951 3.74-7.028 2.385-9.018-.795-1.14-1.933-1.695-3.394-1.695-2.944 0-4.563 2.49-3.927 5.382.37 1.565 1.352 3.343 2.917 5.332-.98 1.085-1.91 1.856-2.732 2.333-.636.344-1.245.558-1.828.609-2.679.399-4.778-2.2-3.825-4.88.132-.345.395-.98.845-1.961l.025-.053c1.464-3.178 3.242-6.79 5.285-10.795l.053-.132.58-1.116c.45-.822.635-1.19 1.351-1.643.346-.21.77-.315 1.246-.315.954 0 1.698.558 2.016 1.007.158.239.345.557.582.953l.558 1.089.08.159c2.041 4.004 3.821 7.608 5.279 10.794l.026.025.533 1.22.318.764c.243.613.294 1.222.213 1.858zm1.22-2.39c-.186-.583-.505-1.271-.9-2.094v-.03c-1.889-4.006-3.642-7.608-5.307-10.844l-.111-.163C15.317 1.461 14.468 0 12.001 0c-2.44 0-3.476 1.695-4.535 3.898l-.081.16c-1.669 3.236-3.421 6.843-5.303 10.847v.053l-.559 1.22c-.21.504-.317.768-.345.847C-.172 20.74 2.611 24 5.98 24c.027 0 .132 0 .265-.027h.372c1.75-.213 3.554-1.325 5.384-3.317 1.829 1.989 3.635 3.104 5.382 3.317h.372c.133.027.239.027.265.027 3.37.003 6.152-3.261 4.802-6.975z" }) + ] + } + ); +}); + +exports.default = SiAirbnb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.d.ts new file mode 100644 index 000000000..6a2ee4840 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5A5F"; +declare const SiAirbnb: IconType; +export { SiAirbnb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.mjs new file mode 100644 index 000000000..5432331cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbnb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5A5F"; +const SiAirbnb = React.forwardRef(function SiAirbnb2({ title = "Airbnb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001 18.275c-1.353-1.697-2.148-3.184-2.413-4.457-.263-1.027-.16-1.848.291-2.465.477-.71 1.188-1.056 2.121-1.056s1.643.345 2.12 1.063c.446.61.558 1.432.286 2.465-.291 1.298-1.085 2.785-2.412 4.458zm9.601 1.14c-.185 1.246-1.034 2.28-2.2 2.783-2.253.98-4.483-.583-6.392-2.704 3.157-3.951 3.74-7.028 2.385-9.018-.795-1.14-1.933-1.695-3.394-1.695-2.944 0-4.563 2.49-3.927 5.382.37 1.565 1.352 3.343 2.917 5.332-.98 1.085-1.91 1.856-2.732 2.333-.636.344-1.245.558-1.828.609-2.679.399-4.778-2.2-3.825-4.88.132-.345.395-.98.845-1.961l.025-.053c1.464-3.178 3.242-6.79 5.285-10.795l.053-.132.58-1.116c.45-.822.635-1.19 1.351-1.643.346-.21.77-.315 1.246-.315.954 0 1.698.558 2.016 1.007.158.239.345.557.582.953l.558 1.089.08.159c2.041 4.004 3.821 7.608 5.279 10.794l.026.025.533 1.22.318.764c.243.613.294 1.222.213 1.858zm1.22-2.39c-.186-.583-.505-1.271-.9-2.094v-.03c-1.889-4.006-3.642-7.608-5.307-10.844l-.111-.163C15.317 1.461 14.468 0 12.001 0c-2.44 0-3.476 1.695-4.535 3.898l-.081.16c-1.669 3.236-3.421 6.843-5.303 10.847v.053l-.559 1.22c-.21.504-.317.768-.345.847C-.172 20.74 2.611 24 5.98 24c.027 0 .132 0 .265-.027h.372c1.75-.213 3.554-1.325 5.384-3.317 1.829 1.989 3.635 3.104 5.382 3.317h.372c.133.027.239.027.265.027 3.37.003 6.152-3.261 4.802-6.975z" }) + ] + } + ); +}); + +export { SiAirbnb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.cjs new file mode 100644 index 000000000..723b6866e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA500"; +const SiAirbrake = React__namespace.forwardRef(function SiAirbrake2({ title = "Airbrake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.815.576 24 23.424h-6.072L10.679.576Zm-6.456 0 1.872 5.929-2.447 7.751c1.038.183 2.09.28 3.144.288.576 0 1.175-.048 1.824-.096l1.151 3.912a28.7 28.7 0 0 1-2.951.169 26.568 26.568 0 0 1-4.32-.361L5.88 23.424H0L8.181.576Z" }) + ] + } + ); +}); + +exports.default = SiAirbrake; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.d.ts new file mode 100644 index 000000000..8d58f51e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA500"; +declare const SiAirbrake: IconType; +export { SiAirbrake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.mjs new file mode 100644 index 000000000..e0eb03504 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbrake.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA500"; +const SiAirbrake = React.forwardRef(function SiAirbrake2({ title = "Airbrake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.815.576 24 23.424h-6.072L10.679.576Zm-6.456 0 1.872 5.929-2.447 7.751c1.038.183 2.09.28 3.144.288.576 0 1.175-.048 1.824-.096l1.151 3.912a28.7 28.7 0 0 1-2.951.169 26.568 26.568 0 0 1-4.32-.361L5.88 23.424H0L8.181.576Z" }) + ] + } + ); +}); + +export { SiAirbrake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.cjs new file mode 100644 index 000000000..3a2c8263a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00205B"; +const SiAirbus = React__namespace.forwardRef(function SiAirbus2({ title = "Airbus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.0673 11.296c0-.8153-.5311-1.4329-1.6304-1.4329h-2.211v4.2614h1.0375v-3.335H9.437c.4323 0 .5928.247.5928.5311 0 .2965-.1605.5312-.5928.5312H8.4363l1.4329 2.2727h1.1858s-.9758-1.5316-.9635-1.5316c.5929-.1359.9758-.5558.9758-1.297M5.4966 9.8631h1.0376v4.2614H5.4966Zm-3.3227 0L0 14.137h1.1734l.3459-.7164h1.754l-.4324-.9017h-.877l.6424-1.3093h.0123l1.4575 2.9274h1.1982L3.1003 9.863Zm12.6854 2.0504c.3335-.1852.5065-.4693.5065-.9017 0-.6917-.5188-1.1487-1.3711-1.1487h-2.4333v4.2614h2.5198c.877 0 1.4575-.4693 1.4575-1.1981.0123-.494-.2718-.8646-.6794-1.0129m-2.2604-1.1487h1.3835c.21 0 .3705.1606.3705.3706s-.1606.3705-.3705.3705h-1.3835zm1.4205 2.4704H12.599v-.8646h1.4205c.247 0 .4447.1852.4447.4323 0 .247-.1977.4323-.4447.4323m4.8049-.9882c0 .6423-.2964 1.0005-.8893 1.0005-.5806 0-.877-.3582-.877-1.0005V9.8631h-1.0623v2.3098c0 1.3217.6917 2.0504 1.9516 2.0504 1.26 0 1.9516-.7287 1.9516-2.0504V9.8631h-1.0623v2.384zm3.8414-.6793c-.9881-.2347-1.1981-.2594-1.1981-.5435 0-.2223.247-.3211.667-.3211.5558 0 1.1364.1358 1.4699.3458l.3335-.8646c-.4447-.247-1.0623-.4076-1.8034-.4076-1.0993 0-1.717.5434-1.717 1.2846 0 .7905.4571 1.1116 1.5194 1.334.8276.1852 1.0005.2964 1.0005.531 0 .2471-.2224.3583-.6794.3583-.6546 0-1.2352-.1606-1.7045-.42l-.3212.914c.5188.2718 1.2846.4447 2.0504.4447 1.0746 0 1.717-.494 1.717-1.334.0123-.6793-.42-1.1116-1.334-1.3216" }) + ] + } + ); +}); + +exports.default = SiAirbus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.d.ts new file mode 100644 index 000000000..e3170a11a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00205B"; +declare const SiAirbus: IconType; +export { SiAirbus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.mjs new file mode 100644 index 000000000..6a6099413 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00205B"; +const SiAirbus = React.forwardRef(function SiAirbus2({ title = "Airbus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.0673 11.296c0-.8153-.5311-1.4329-1.6304-1.4329h-2.211v4.2614h1.0375v-3.335H9.437c.4323 0 .5928.247.5928.5311 0 .2965-.1605.5312-.5928.5312H8.4363l1.4329 2.2727h1.1858s-.9758-1.5316-.9635-1.5316c.5929-.1359.9758-.5558.9758-1.297M5.4966 9.8631h1.0376v4.2614H5.4966Zm-3.3227 0L0 14.137h1.1734l.3459-.7164h1.754l-.4324-.9017h-.877l.6424-1.3093h.0123l1.4575 2.9274h1.1982L3.1003 9.863Zm12.6854 2.0504c.3335-.1852.5065-.4693.5065-.9017 0-.6917-.5188-1.1487-1.3711-1.1487h-2.4333v4.2614h2.5198c.877 0 1.4575-.4693 1.4575-1.1981.0123-.494-.2718-.8646-.6794-1.0129m-2.2604-1.1487h1.3835c.21 0 .3705.1606.3705.3706s-.1606.3705-.3705.3705h-1.3835zm1.4205 2.4704H12.599v-.8646h1.4205c.247 0 .4447.1852.4447.4323 0 .247-.1977.4323-.4447.4323m4.8049-.9882c0 .6423-.2964 1.0005-.8893 1.0005-.5806 0-.877-.3582-.877-1.0005V9.8631h-1.0623v2.3098c0 1.3217.6917 2.0504 1.9516 2.0504 1.26 0 1.9516-.7287 1.9516-2.0504V9.8631h-1.0623v2.384zm3.8414-.6793c-.9881-.2347-1.1981-.2594-1.1981-.5435 0-.2223.247-.3211.667-.3211.5558 0 1.1364.1358 1.4699.3458l.3335-.8646c-.4447-.247-1.0623-.4076-1.8034-.4076-1.0993 0-1.717.5434-1.717 1.2846 0 .7905.4571 1.1116 1.5194 1.334.8276.1852 1.0005.2964 1.0005.531 0 .2471-.2224.3583-.6794.3583-.6546 0-1.2352-.1606-1.7045-.42l-.3212.914c.5188.2718 1.2846.4447 2.0504.4447 1.0746 0 1.717-.494 1.717-1.334.0123-.6793-.42-1.1116-1.334-1.3216" }) + ] + } + ); +}); + +export { SiAirbus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.cjs new file mode 100644 index 000000000..3aec07db1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#615EFF"; +const SiAirbyte = React__namespace.forwardRef(function SiAirbyte2({ title = "Airbyte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.308 2.914C10.876.027 15.128-.819 18.624.848c4.644 2.21 6.339 7.846 3.809 12.194l-5.687 9.77c-.319.547-.842.944-1.455 1.107-.613.163-1.267.079-1.818-.236l6.887-11.832c1.835-3.155.608-7.243-2.758-8.854-2.528-1.208-5.613-.604-7.482 1.473-1.031 1.139-1.608 2.613-1.628 4.145-.018 1.532.524 3.019 1.524 4.185.179.21.372.406.579.588l-4.021 6.919c-.157.273-.365.51-.617.699-.249.189-.534.329-.838.411-.303.081-.621.1-.93.061-.313-.041-.614-.143-.885-.298l4.364-7.513C7.041 12.77 6.59 11.763 6.34 10.7l-2.675 4.612c-.317.545-.842.944-1.453 1.107-.615.164-1.269.079-1.818-.237L7.31 4.284c.29-.487.622-.948.998-1.37Zm7.983 3.784c1.666.956 2.242 3.081 1.277 4.734L10.936 22.81c-.317.547-.84.945-1.455 1.109-.612.162-1.268.079-1.816-.237l6.159-10.596c-.495-.1-.96-.308-1.365-.61-.405-.3-.743-.682-.981-1.122-.242-.441-.385-.928-.418-1.428-.033-.501.045-1.002.224-1.47.18-.468.462-.893.824-1.242.362-.35.795-.618 1.273-.784.474-.168.982-.23 1.485-.183.502.046.989.2 1.425.451Zm-2.412 2.139c-.114.087-.21.196-.282.32-.106.186-.158.398-.144.613.014.215.092.42.224.592.13.167.31.297.515.367.207.068.427.077.636.02.209-.056.396-.172.54-.334.143-.161.234-.36.263-.574.027-.213-.008-.43-.105-.622-.097-.195-.246-.354-.433-.46-.126-.072-.263-.118-.406-.136-.143-.02-.286-.01-.424.026-.14.038-.271.101-.384.188Z" }) + ] + } + ); +}); + +exports.default = SiAirbyte; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.d.ts new file mode 100644 index 000000000..0787da16d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#615EFF"; +declare const SiAirbyte: IconType; +export { SiAirbyte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.mjs new file mode 100644 index 000000000..488f942a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirbyte.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#615EFF"; +const SiAirbyte = React.forwardRef(function SiAirbyte2({ title = "Airbyte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.308 2.914C10.876.027 15.128-.819 18.624.848c4.644 2.21 6.339 7.846 3.809 12.194l-5.687 9.77c-.319.547-.842.944-1.455 1.107-.613.163-1.267.079-1.818-.236l6.887-11.832c1.835-3.155.608-7.243-2.758-8.854-2.528-1.208-5.613-.604-7.482 1.473-1.031 1.139-1.608 2.613-1.628 4.145-.018 1.532.524 3.019 1.524 4.185.179.21.372.406.579.588l-4.021 6.919c-.157.273-.365.51-.617.699-.249.189-.534.329-.838.411-.303.081-.621.1-.93.061-.313-.041-.614-.143-.885-.298l4.364-7.513C7.041 12.77 6.59 11.763 6.34 10.7l-2.675 4.612c-.317.545-.842.944-1.453 1.107-.615.164-1.269.079-1.818-.237L7.31 4.284c.29-.487.622-.948.998-1.37Zm7.983 3.784c1.666.956 2.242 3.081 1.277 4.734L10.936 22.81c-.317.547-.84.945-1.455 1.109-.612.162-1.268.079-1.816-.237l6.159-10.596c-.495-.1-.96-.308-1.365-.61-.405-.3-.743-.682-.981-1.122-.242-.441-.385-.928-.418-1.428-.033-.501.045-1.002.224-1.47.18-.468.462-.893.824-1.242.362-.35.795-.618 1.273-.784.474-.168.982-.23 1.485-.183.502.046.989.2 1.425.451Zm-2.412 2.139c-.114.087-.21.196-.282.32-.106.186-.158.398-.144.613.014.215.092.42.224.592.13.167.31.297.515.367.207.068.427.077.636.02.209-.056.396-.172.54-.334.143-.161.234-.36.263-.574.027-.213-.008-.43-.105-.622-.097-.195-.246-.354-.433-.46-.126-.072-.263-.118-.406-.136-.143-.02-.286-.01-.424.026-.14.038-.271.101-.384.188Z" }) + ] + } + ); +}); + +export { SiAirbyte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.cjs new file mode 100644 index 000000000..1758b6119 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B388"; +const SiAircall = React__namespace.forwardRef(function SiAircall2({ title = "Aircall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.451 5.906a6.978 6.978 0 0 0-5.375-5.39C16.727.204 14.508 0 12 0S7.273.204 5.924.516a6.978 6.978 0 0 0-5.375 5.39C.237 7.26.034 9.485.034 12s.203 4.74.515 6.094a6.978 6.978 0 0 0 5.375 5.39C7.273 23.796 9.492 24 12 24s4.727-.204 6.076-.516a6.978 6.978 0 0 0 5.375-5.39c.311-1.354.515-3.578.515-6.094 0-2.515-.203-4.74-.515-6.094zm-5.873 12.396l-.003.001c-.428.152-1.165.283-2.102.377l-.147.014a.444.444 0 0 1-.45-.271 1.816 1.816 0 0 0-1.296-1.074c-.351-.081-.928-.134-1.58-.134s-1.229.053-1.58.134a1.817 1.817 0 0 0-1.291 1.062.466.466 0 0 1-.471.281 8 8 0 0 0-.129-.012c-.938-.094-1.676-.224-2.105-.377l-.003-.001a.76.76 0 0 1-.492-.713c0-.032.003-.066.005-.098.073-.979.666-3.272 1.552-5.89C8.5 8.609 9.559 6.187 10.037 5.714a1.029 1.029 0 0 1 .404-.26l.004-.002c.314-.106.892-.178 1.554-.178.663 0 1.241.071 1.554.178l.005.002a1.025 1.025 0 0 1 .405.26c.478.472 1.537 2.895 2.549 5.887.886 2.617 1.479 4.91 1.552 5.89.002.032.005.066.005.098a.76.76 0 0 1-.491.713z" }) + ] + } + ); +}); + +exports.default = SiAircall; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.d.ts new file mode 100644 index 000000000..4bf086856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B388"; +declare const SiAircall: IconType; +export { SiAircall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.mjs new file mode 100644 index 000000000..e010e1231 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAircall.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B388"; +const SiAircall = React.forwardRef(function SiAircall2({ title = "Aircall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.451 5.906a6.978 6.978 0 0 0-5.375-5.39C16.727.204 14.508 0 12 0S7.273.204 5.924.516a6.978 6.978 0 0 0-5.375 5.39C.237 7.26.034 9.485.034 12s.203 4.74.515 6.094a6.978 6.978 0 0 0 5.375 5.39C7.273 23.796 9.492 24 12 24s4.727-.204 6.076-.516a6.978 6.978 0 0 0 5.375-5.39c.311-1.354.515-3.578.515-6.094 0-2.515-.203-4.74-.515-6.094zm-5.873 12.396l-.003.001c-.428.152-1.165.283-2.102.377l-.147.014a.444.444 0 0 1-.45-.271 1.816 1.816 0 0 0-1.296-1.074c-.351-.081-.928-.134-1.58-.134s-1.229.053-1.58.134a1.817 1.817 0 0 0-1.291 1.062.466.466 0 0 1-.471.281 8 8 0 0 0-.129-.012c-.938-.094-1.676-.224-2.105-.377l-.003-.001a.76.76 0 0 1-.492-.713c0-.032.003-.066.005-.098.073-.979.666-3.272 1.552-5.89C8.5 8.609 9.559 6.187 10.037 5.714a1.029 1.029 0 0 1 .404-.26l.004-.002c.314-.106.892-.178 1.554-.178.663 0 1.241.071 1.554.178l.005.002a1.025 1.025 0 0 1 .405.26c.478.472 1.537 2.895 2.549 5.887.886 2.617 1.479 4.91 1.552 5.89.002.032.005.066.005.098a.76.76 0 0 1-.491.713z" }) + ] + } + ); +}); + +export { SiAircall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.cjs new file mode 100644 index 000000000..3ab4fd6f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F01428"; +const SiAircanada = React__namespace.forwardRef(function SiAircanada2({ title = "Air Canada", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.394 16.958c0-.789.338-.902 1.127-.451a54.235 54.235 0 0 0 2.704 1.465c0-.45.451-.789 1.24-.564.789.226 1.577.338 1.577.338s-.45-1.014-.676-1.464c-.338-.789 0-1.24.338-1.352 0 0-.45-.338-.789-.564-.676-.45-.563-1.014.113-1.24.902-.45 2.141-.9 2.141-.9-.338-.226-.789-.79-.338-1.578.45-.676 1.24-1.69 1.24-1.69H18.93c-.79 0-1.015-.676-1.015-1.127 0 0-1.239.901-2.14 1.465-.79.563-1.465 0-1.352-.902a37 37 0 0 0 .338-2.93c-.451.451-1.24.339-1.69-.337-.564-1.127-1.127-2.48-1.127-2.48S11.38 4 10.817 5.128c-.338.676-1.127.788-1.578.45a37 37 0 0 0 .338 2.93c.113.789-.563 1.352-1.352.789-.901-.564-2.253-1.465-2.253-1.465 0 .45-.226 1.014-1.014 1.127H2.817s.789 1.014 1.24 1.69c.45.676 0 1.352-.339 1.577 0 0 1.127.564 2.141.902.676.338.902.788.113 1.24-.226.225-.789.563-.789.563.45.112.789.563.45 1.352-.225.45-.675 1.464-.675 1.464s.788-.225 1.577-.338c.789-.225 1.127.226 1.24.564 0 0 1.352-.789 2.704-1.465.676-.45 1.127-.225 1.127.45v1.916c0 1.127-.226 2.254-.564 2.93-5.07-.564-9.352-4.62-9.352-10.028 0-5.521 4.62-10.029 10.366-10.029 5.747 0 10.367 4.508 10.367 10.029 0 5.183-4.057 9.464-9.24 10.028v1.352C19.268 22.592 24 17.746 24 11.775 24 5.352 18.592.282 11.944.282 5.408.282 0 5.352 0 11.662c0 5.521 4.169 10.14 9.69 11.155.902.225 1.465.338 2.028.901.564-1.126.676-3.38.676-4.62Z" }) + ] + } + ); +}); + +exports.default = SiAircanada; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.d.ts new file mode 100644 index 000000000..2eedf6c9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F01428"; +declare const SiAircanada: IconType; +export { SiAircanada as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.mjs new file mode 100644 index 000000000..67f1af0e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAircanada.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F01428"; +const SiAircanada = React.forwardRef(function SiAircanada2({ title = "Air Canada", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.394 16.958c0-.789.338-.902 1.127-.451a54.235 54.235 0 0 0 2.704 1.465c0-.45.451-.789 1.24-.564.789.226 1.577.338 1.577.338s-.45-1.014-.676-1.464c-.338-.789 0-1.24.338-1.352 0 0-.45-.338-.789-.564-.676-.45-.563-1.014.113-1.24.902-.45 2.141-.9 2.141-.9-.338-.226-.789-.79-.338-1.578.45-.676 1.24-1.69 1.24-1.69H18.93c-.79 0-1.015-.676-1.015-1.127 0 0-1.239.901-2.14 1.465-.79.563-1.465 0-1.352-.902a37 37 0 0 0 .338-2.93c-.451.451-1.24.339-1.69-.337-.564-1.127-1.127-2.48-1.127-2.48S11.38 4 10.817 5.128c-.338.676-1.127.788-1.578.45a37 37 0 0 0 .338 2.93c.113.789-.563 1.352-1.352.789-.901-.564-2.253-1.465-2.253-1.465 0 .45-.226 1.014-1.014 1.127H2.817s.789 1.014 1.24 1.69c.45.676 0 1.352-.339 1.577 0 0 1.127.564 2.141.902.676.338.902.788.113 1.24-.226.225-.789.563-.789.563.45.112.789.563.45 1.352-.225.45-.675 1.464-.675 1.464s.788-.225 1.577-.338c.789-.225 1.127.226 1.24.564 0 0 1.352-.789 2.704-1.465.676-.45 1.127-.225 1.127.45v1.916c0 1.127-.226 2.254-.564 2.93-5.07-.564-9.352-4.62-9.352-10.028 0-5.521 4.62-10.029 10.366-10.029 5.747 0 10.367 4.508 10.367 10.029 0 5.183-4.057 9.464-9.24 10.028v1.352C19.268 22.592 24 17.746 24 11.775 24 5.352 18.592.282 11.944.282 5.408.282 0 5.352 0 11.662c0 5.521 4.169 10.14 9.69 11.155.902.225 1.465.338 2.028.901.564-1.126.676-3.38.676-4.62Z" }) + ] + } + ); +}); + +export { SiAircanada as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.cjs new file mode 100644 index 000000000..d72e8a0de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E30E17"; +const SiAirchina = React__namespace.forwardRef(function SiAirchina2({ title = "Air China", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.75 23.377c3.431.96 7.361-1.449 7.361-5.442v-4.713c0-1.377 1.147-3.19 3.212-3.19 2.17 0 3.201 1.949 3.201 3.19 0 .792-.313 2.377-1.804 2.377-1.188 0-1.95-1.21-1.574-2.2-.083.333.093.657.449.657.343 0 .532-.324.468-.73 0-.083-.104-.834-.939-.834-.698 0-.927.636-.927.948v4.193c0 4.483-4.88 7.798-9.447 5.744M3.508 19.99s2.303 2.336 5.338.573c2.012-1.167 2.075-3.598 2.075-3.598v-5.431s-.084-2.722 2.366-4.672c1.711-1.345 3.296-1.252 4.39-1.387 2.806-.344 4.057-2.116 4.057-2.116.031.302-.272 3.555-3.785 4.483-.72.188-4.578-.187-4.578 4.275v5.38c0 1.126-.27 3.118-2.377 4.526-2.169 1.439-5.683 1.21-7.486-2.033M1.047 8.759H3.85c0-.5.428-1.471 1.523-1.471.427 0 .5.095 1.052-.02.72-.24 1.043-.657 1.19-.99 0 0 .28 1.187-.845 1.813-.637.345-1.616.074-1.616.074s-.792-.115-.897.593c.449 0 1.147.449 1.147 1.22v6.528c0 .469.375.96.949.96a.95.95 0 0 0 .949-.96v-4.578c0-6.757 5.255-9.56 8.31-9.79 2.533-.188 4.244.04 7.34-2.138 0 0-.97 3.796-5.358 4.703-.804.166-3.224-.115-5.497 2.252-1.803 1.877-1.99 3.608-1.99 5.891v4.035c0 1.762-1.419 3.545-3.587 3.545-2.096 0-3.566-1.668-3.566-3.545v-6.85c0-.563-.406-1.074-1.054-1.074h-.854Z" }) + ] + } + ); +}); + +exports.default = SiAirchina; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.d.ts new file mode 100644 index 000000000..a7e5ed8d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E30E17"; +declare const SiAirchina: IconType; +export { SiAirchina as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.mjs new file mode 100644 index 000000000..247cc58ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirchina.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E30E17"; +const SiAirchina = React.forwardRef(function SiAirchina2({ title = "Air China", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.75 23.377c3.431.96 7.361-1.449 7.361-5.442v-4.713c0-1.377 1.147-3.19 3.212-3.19 2.17 0 3.201 1.949 3.201 3.19 0 .792-.313 2.377-1.804 2.377-1.188 0-1.95-1.21-1.574-2.2-.083.333.093.657.449.657.343 0 .532-.324.468-.73 0-.083-.104-.834-.939-.834-.698 0-.927.636-.927.948v4.193c0 4.483-4.88 7.798-9.447 5.744M3.508 19.99s2.303 2.336 5.338.573c2.012-1.167 2.075-3.598 2.075-3.598v-5.431s-.084-2.722 2.366-4.672c1.711-1.345 3.296-1.252 4.39-1.387 2.806-.344 4.057-2.116 4.057-2.116.031.302-.272 3.555-3.785 4.483-.72.188-4.578-.187-4.578 4.275v5.38c0 1.126-.27 3.118-2.377 4.526-2.169 1.439-5.683 1.21-7.486-2.033M1.047 8.759H3.85c0-.5.428-1.471 1.523-1.471.427 0 .5.095 1.052-.02.72-.24 1.043-.657 1.19-.99 0 0 .28 1.187-.845 1.813-.637.345-1.616.074-1.616.074s-.792-.115-.897.593c.449 0 1.147.449 1.147 1.22v6.528c0 .469.375.96.949.96a.95.95 0 0 0 .949-.96v-4.578c0-6.757 5.255-9.56 8.31-9.79 2.533-.188 4.244.04 7.34-2.138 0 0-.97 3.796-5.358 4.703-.804.166-3.224-.115-5.497 2.252-1.803 1.877-1.99 3.608-1.99 5.891v4.035c0 1.762-1.419 3.545-3.587 3.545-2.096 0-3.566-1.668-3.566-3.545v-6.85c0-.563-.406-1.074-1.054-1.074h-.854Z" }) + ] + } + ); +}); + +export { SiAirchina as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.cjs new file mode 100644 index 000000000..36269b668 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002157"; +const SiAirfrance = React__namespace.forwardRef(function SiAirfrance2({ title = "Air France", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.776 3.9L5.184 16.332C4.051 17.969 2.208 19.548 0 19.721v.379h9.552c2.544 0 4.397-1.656 5.616-3.48L24 3.9Z" }) + ] + } + ); +}); + +exports.default = SiAirfrance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.d.ts new file mode 100644 index 000000000..073b8ec07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002157"; +declare const SiAirfrance: IconType; +export { SiAirfrance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.mjs new file mode 100644 index 000000000..f63fc359f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirfrance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002157"; +const SiAirfrance = React.forwardRef(function SiAirfrance2({ title = "Air France", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.776 3.9L5.184 16.332C4.051 17.969 2.208 19.548 0 19.721v.379h9.552c2.544 0 4.397-1.656 5.616-3.48L24 3.9Z" }) + ] + } + ); +}); + +export { SiAirfrance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.cjs new file mode 100644 index 000000000..4418ff2a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA0E29"; +const SiAirindia = React__namespace.forwardRef(function SiAirindia2({ title = "Air India", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.483.001C6.247.043 4.102 1.018 2.092 2.898c.141-.065-.545.44-1.637 1.676.013.006-.009.017-.013.025 0 0 .014.037.14-.064.75-.61 3.198-2.893 9.86.101a276.52 276.52 0 0 0 6.42 2.78s1.027 3.236 2.207 6.637c2.398 6.89-.087 9.135-.76 9.82-.102.114-.064.127-.064.127a16.746 16.746 0 0 0 2.385-2.08c1.624-1.637 2.588-3.428 2.855-5.344.254-1.878-.203-3.5-.584-4.566-.266-.75-.481-1.346-.672-1.88-.862-2.423-1.028-2.867-1.625-5.29l-.203-.8c-.023-.003.009-.016.014-.025l-.787-.254c-2.386-.774-2.804-.964-5.165-2.017-.52-.229-1.103-.496-1.826-.813-.85-.368-2.146-.875-3.707-.926a8.027 8.027 0 0 0-.447-.004Z" }) + ] + } + ); +}); + +exports.default = SiAirindia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.d.ts new file mode 100644 index 000000000..5e7b6b84a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA0E29"; +declare const SiAirindia: IconType; +export { SiAirindia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.mjs new file mode 100644 index 000000000..2312fb702 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirindia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA0E29"; +const SiAirindia = React.forwardRef(function SiAirindia2({ title = "Air India", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.483.001C6.247.043 4.102 1.018 2.092 2.898c.141-.065-.545.44-1.637 1.676.013.006-.009.017-.013.025 0 0 .014.037.14-.064.75-.61 3.198-2.893 9.86.101a276.52 276.52 0 0 0 6.42 2.78s1.027 3.236 2.207 6.637c2.398 6.89-.087 9.135-.76 9.82-.102.114-.064.127-.064.127a16.746 16.746 0 0 0 2.385-2.08c1.624-1.637 2.588-3.428 2.855-5.344.254-1.878-.203-3.5-.584-4.566-.266-.75-.481-1.346-.672-1.88-.862-2.423-1.028-2.867-1.625-5.29l-.203-.8c-.023-.003.009-.016.014-.025l-.787-.254c-2.386-.774-2.804-.964-5.165-2.017-.52-.229-1.103-.496-1.826-.813-.85-.368-2.146-.875-3.707-.926a8.027 8.027 0 0 0-.447-.004Z" }) + ] + } + ); +}); + +export { SiAirindia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.cjs new file mode 100644 index 000000000..fade6f0f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAirplayaudio = React__namespace.forwardRef(function SiAirplayaudio2({ title = "AirPlay Audio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.908.183a12.012 12.012 0 00-8.044 3.172c-4.882 4.475-5.166 12.08-.692 16.962.204.244.448.447.692.692a.315.315 0 00.408-.04l.53-.61a.32.32 0 000-.448C.53 15.965.243 9.253 4.23 4.982 8.217.711 14.889.427 19.16 4.414c4.271 3.986 4.555 10.655.568 14.927-.203.203-.365.407-.568.57a.32.32 0 000 .447l.53.611a.37.37 0 00.446.04c4.882-4.516 5.166-12.081.692-16.962a11.98 11.98 0 00-8.92-3.864zm.387 3.518A8.607 8.607 0 006.143 6c-3.458 3.213-3.66 8.623-.447 12.08.122.123.243.285.406.407a.319.319 0 00.447 0l.53-.61a.32.32 0 000-.446A7.263 7.263 0 014.8 12.183c0-3.946 3.212-7.16 7.158-7.16s7.16 3.253 7.16 7.199a7.207 7.207 0 01-2.238 5.209.319.319 0 000 .447l.529.61c.122.121.325.162.447.04a8.599 8.599 0 00.408-12.122 8.494 8.494 0 00-5.97-2.705zm-.266 3.316A5.198 5.198 0 008.34 8.48c-2.075 1.993-2.115 5.247-.122 7.322l.121.123a.319.319 0 00.447 0l.53-.611a.32.32 0 000-.448 3.814 3.814 0 01-1.098-2.683 3.732 3.732 0 013.742-3.742 3.732 3.732 0 013.742 3.742c0 1.017-.406 1.951-1.139 2.683a.32.32 0 000 .448l.53.61a.32.32 0 00.447 0c2.034-1.992 2.116-5.246.123-7.321a5.128 5.128 0 00-3.633-1.586zm.006 7.744a.599.599 0 00-.402.146l-.04.041-7.159 8.055a.506.506 0 00.041.69.437.437 0 00.283.124h14.36a.495.495 0 00.489-.488.463.463 0 00-.121-.326l-7.08-8.055a.5.5 0 00-.37-.187z" }) + ] + } + ); +}); + +exports.default = SiAirplayaudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.d.ts new file mode 100644 index 000000000..882333e00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAirplayaudio: IconType; +export { SiAirplayaudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.mjs new file mode 100644 index 000000000..3ecd88db7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayaudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAirplayaudio = React.forwardRef(function SiAirplayaudio2({ title = "AirPlay Audio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.908.183a12.012 12.012 0 00-8.044 3.172c-4.882 4.475-5.166 12.08-.692 16.962.204.244.448.447.692.692a.315.315 0 00.408-.04l.53-.61a.32.32 0 000-.448C.53 15.965.243 9.253 4.23 4.982 8.217.711 14.889.427 19.16 4.414c4.271 3.986 4.555 10.655.568 14.927-.203.203-.365.407-.568.57a.32.32 0 000 .447l.53.611a.37.37 0 00.446.04c4.882-4.516 5.166-12.081.692-16.962a11.98 11.98 0 00-8.92-3.864zm.387 3.518A8.607 8.607 0 006.143 6c-3.458 3.213-3.66 8.623-.447 12.08.122.123.243.285.406.407a.319.319 0 00.447 0l.53-.61a.32.32 0 000-.446A7.263 7.263 0 014.8 12.183c0-3.946 3.212-7.16 7.158-7.16s7.16 3.253 7.16 7.199a7.207 7.207 0 01-2.238 5.209.319.319 0 000 .447l.529.61c.122.121.325.162.447.04a8.599 8.599 0 00.408-12.122 8.494 8.494 0 00-5.97-2.705zm-.266 3.316A5.198 5.198 0 008.34 8.48c-2.075 1.993-2.115 5.247-.122 7.322l.121.123a.319.319 0 00.447 0l.53-.611a.32.32 0 000-.448 3.814 3.814 0 01-1.098-2.683 3.732 3.732 0 013.742-3.742 3.732 3.732 0 013.742 3.742c0 1.017-.406 1.951-1.139 2.683a.32.32 0 000 .448l.53.61a.32.32 0 00.447 0c2.034-1.992 2.116-5.246.123-7.321a5.128 5.128 0 00-3.633-1.586zm.006 7.744a.599.599 0 00-.402.146l-.04.041-7.159 8.055a.506.506 0 00.041.69.437.437 0 00.283.124h14.36a.495.495 0 00.489-.488.463.463 0 00-.121-.326l-7.08-8.055a.5.5 0 00-.37-.187z" }) + ] + } + ); +}); + +export { SiAirplayaudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.cjs new file mode 100644 index 000000000..3244986a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAirplayvideo = React__namespace.forwardRef(function SiAirplayvideo2({ title = "AirPlay Video", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.412 1.32c-1.178 0-1.584.122-2.031.366A2.449 2.449 0 00.365 2.7C.122 3.148 0 3.553 0 4.771v9.137c0 1.178.122 1.585.365 2.031.244.447.57.772 1.016 1.016.406.244.813.365 2.031.365h2.72l1.138-1.34H3.006c-.325.041-.69-.001-1.016-.164-.203-.08-.366-.283-.488-.486-.122-.325-.203-.65-.162-1.016V4.406c-.04-.325 0-.69.162-1.015.081-.203.285-.365.488-.487.325-.122.65-.204 1.016-.164h17.867c.325-.04.69.002 1.016.164.203.082.364.284.486.487.122.324.203.65.162 1.015v9.95c.04.324 0 .69-.162 1.015-.081.203-.283.365-.486.486-.325.122-.65.203-1.016.163h-4.264l1.137 1.341 2.803-.04c1.218 0 1.623-.122 2.07-.366a2.449 2.449 0 001.016-1.016c.243-.406.365-.813.365-2.03V4.77c0-1.218-.122-1.623-.365-2.07a2.449 2.449 0 00-1.016-1.015c-.447-.244-.852-.366-2.07-.366H3.412zm8.451 12.198a.501.501 0 00-.37.187l-7.106 8.162a.465.465 0 00-.123.326.47.47 0 00.488.487h14.293c.122 0 .245-.04.326-.121.203-.163.204-.489.041-.692l-7.107-8.162-.041-.04a.594.594 0 00-.4-.147z" }) + ] + } + ); +}); + +exports.default = SiAirplayvideo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.d.ts new file mode 100644 index 000000000..a17a8cb2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAirplayvideo: IconType; +export { SiAirplayvideo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.mjs new file mode 100644 index 000000000..c5d814155 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirplayvideo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAirplayvideo = React.forwardRef(function SiAirplayvideo2({ title = "AirPlay Video", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.412 1.32c-1.178 0-1.584.122-2.031.366A2.449 2.449 0 00.365 2.7C.122 3.148 0 3.553 0 4.771v9.137c0 1.178.122 1.585.365 2.031.244.447.57.772 1.016 1.016.406.244.813.365 2.031.365h2.72l1.138-1.34H3.006c-.325.041-.69-.001-1.016-.164-.203-.08-.366-.283-.488-.486-.122-.325-.203-.65-.162-1.016V4.406c-.04-.325 0-.69.162-1.015.081-.203.285-.365.488-.487.325-.122.65-.204 1.016-.164h17.867c.325-.04.69.002 1.016.164.203.082.364.284.486.487.122.324.203.65.162 1.015v9.95c.04.324 0 .69-.162 1.015-.081.203-.283.365-.486.486-.325.122-.65.203-1.016.163h-4.264l1.137 1.341 2.803-.04c1.218 0 1.623-.122 2.07-.366a2.449 2.449 0 001.016-1.016c.243-.406.365-.813.365-2.03V4.77c0-1.218-.122-1.623-.365-2.07a2.449 2.449 0 00-1.016-1.015c-.447-.244-.852-.366-2.07-.366H3.412zm8.451 12.198a.501.501 0 00-.37.187l-7.106 8.162a.465.465 0 00-.123.326.47.47 0 00.488.487h14.293c.122 0 .245-.04.326-.121.203-.163.204-.489.041-.692l-7.107-8.162-.041-.04a.594.594 0 00-.4-.147z" }) + ] + } + ); +}); + +export { SiAirplayvideo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.cjs new file mode 100644 index 000000000..1ea15c20f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E203F"; +const SiAirserbia = React__namespace.forwardRef(function SiAirserbia2({ title = "Air Serbia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.667 3.754-1.148.002-.455.169s-.25.062-.416.482l-.343 1.079s-.094.358-.118.903c-.018.546-.008.019-.008.019s-.026.81-.119 1.055l-.184.643c-.27.634-.546.945-.551.955l-1.032 1.193v.005l-.292.327-.287-.327.006-.006-.639-.725-.086-.104h-.004l-.32-.362c-.003-.01-.294-.343-.566-1.01l-.172-.588c-.093-.245-.12-1.055-.12-1.055s.011.527-.01-.019a4.555 4.555 0 0 0-.113-.903l-.346-1.079c-.169-.42-.415-.483-.415-.483l-.453-.168-1.15-.002-.184.268c-.205.193-.258.116-.531.158-.217.03-.294.043-.473.181-.231.188-.264.434-.264.434v.465l.014.319.262-.325c.443-.018 1.06.252 1.06.252l-.074.182c-.064.144-.063.268-.063.268s-.032.526-.095.84c-.018.092-.03.245-.085.398-.091.268-.564.793-.67.913l-.594.638c-.454-.366-1.24-.853-2.244-.891C2.312 7.81 1.275 8.27.3 9.223L0 9.521l.225.352c.034.055.833 1.292 2.274 1.57.93.181 1.946-.102 2.908-.791l-.703-.793c-.713.515-1.36.686-1.998.565-.598-.114-1.057-.487-1.325-.773.649-.526 1.303-.786 1.95-.76 1.137.041 1.942.932 1.947.94l1.685 1.948.69-.797-1.292-1.49 1.512-1.881.614-.768c.144.761.834 2.071 1.128 2.527l-1.677 1.948-.67.78-.008.01-.006.01-.713.826c-.373.394-1.675 1.679-3.203 2.497 0 0 .48.329 1.107.323.377-.008.813-.14 1.225-.533.17-.158.42-.385.667-.615 0 0-.114.274.155.781.212.386.573.62 1.073.636.777.03 1.333-.375 1.718-.845l-.554-.61s-.5.714-1.114.278c-.225-.212-.206-.57-.206-.57s-.01-.12.109-.373c.417-.705 1.56-2.19 2.236-3.058l.521-.66.747.858.002-.004.291.338-.002.006.02.018-1.303 1.61.59.667L12 12.182v.005l.004-.005 1.685 1.871.7.787.247.26.175.192c.382.42.914.767 1.627.741.5-.017.864-.25 1.075-.636.271-.506.156-.781.156-.781.247.23.493.457.665.615 1.107 1.05 2.331.21 2.331.21-1.523-.818-2.825-2.103-3.195-2.496l-.408-.47-.852.95c.41.565.394.861.394.861s.011.36-.212.571c-.607.441-1.149-.318-1.149-.318l-1.692-2.052-.005-.012-.873-1.07.017-.017.644-.742h-.004l.39-.45.173.214 1.105 1.492.778-.919-1.267-1.475-.001.003-.122-.14c.296-.457.983-1.767 1.126-2.528l.617.768 1.51 1.881-.31.358-1.268 1.468-1.1 1.26-.325.384.688.794.54-.632v.003l.064-.068.82-.947.48-.556 1.495-1.726c.008-.007.805-.898 1.947-.939.652-.026 1.302.234 1.949.76-.269.286-.724.659-1.322.773-.64.12-1.294-.056-2.008-.566l-.686.788c.962.69 1.966.978 2.902.798 1.435-.28 2.233-1.516 2.269-1.57L24 9.52l-.297-.298c-.978-.952-2.017-1.413-3.088-1.368l.001-.001c-.851.032-1.542.384-2.012.716l-.052.037c-.004.001-.012.012-.013.012-.062.046-.124.085-.173.126l-.743-.8c-.176-.213-.453-.557-.521-.75-.057-.154-.071-.307-.084-.399a8.035 8.035 0 0 1-.099-.84s0-.124-.058-.268l-.073-.182s.618-.27 1.054-.252l.27.325.004-.319v-.465s-.028-.247-.265-.434c-.178-.138-.256-.15-.47-.18-.275-.042-.32.034-.525-.159zm-7.648 8.8-.633.84.718.836.84.992 1.074 1.239.692-.794-1.37-1.573-.684-.798zm4.374 1.841-.966 1.12-1.115 1.284c-1.118 1.04-1.204 1.43-1.204 1.43-.467 1.174.15 2.017.15 2.017.089-.733.713-1.444.935-1.72l.433-.496v-.002l1.534-1.775.91-1.046zm-.41 2.709-.706.83.08.094-.002.002.43.496c.225.276.845.987.937 1.72 0 0 .613-.843.15-2.018 0 0-.07-.313-.888-1.124z" }) + ] + } + ); +}); + +exports.default = SiAirserbia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.d.ts new file mode 100644 index 000000000..213079161 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E203F"; +declare const SiAirserbia: IconType; +export { SiAirserbia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.mjs new file mode 100644 index 000000000..d47b2ed31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirserbia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E203F"; +const SiAirserbia = React.forwardRef(function SiAirserbia2({ title = "Air Serbia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.667 3.754-1.148.002-.455.169s-.25.062-.416.482l-.343 1.079s-.094.358-.118.903c-.018.546-.008.019-.008.019s-.026.81-.119 1.055l-.184.643c-.27.634-.546.945-.551.955l-1.032 1.193v.005l-.292.327-.287-.327.006-.006-.639-.725-.086-.104h-.004l-.32-.362c-.003-.01-.294-.343-.566-1.01l-.172-.588c-.093-.245-.12-1.055-.12-1.055s.011.527-.01-.019a4.555 4.555 0 0 0-.113-.903l-.346-1.079c-.169-.42-.415-.483-.415-.483l-.453-.168-1.15-.002-.184.268c-.205.193-.258.116-.531.158-.217.03-.294.043-.473.181-.231.188-.264.434-.264.434v.465l.014.319.262-.325c.443-.018 1.06.252 1.06.252l-.074.182c-.064.144-.063.268-.063.268s-.032.526-.095.84c-.018.092-.03.245-.085.398-.091.268-.564.793-.67.913l-.594.638c-.454-.366-1.24-.853-2.244-.891C2.312 7.81 1.275 8.27.3 9.223L0 9.521l.225.352c.034.055.833 1.292 2.274 1.57.93.181 1.946-.102 2.908-.791l-.703-.793c-.713.515-1.36.686-1.998.565-.598-.114-1.057-.487-1.325-.773.649-.526 1.303-.786 1.95-.76 1.137.041 1.942.932 1.947.94l1.685 1.948.69-.797-1.292-1.49 1.512-1.881.614-.768c.144.761.834 2.071 1.128 2.527l-1.677 1.948-.67.78-.008.01-.006.01-.713.826c-.373.394-1.675 1.679-3.203 2.497 0 0 .48.329 1.107.323.377-.008.813-.14 1.225-.533.17-.158.42-.385.667-.615 0 0-.114.274.155.781.212.386.573.62 1.073.636.777.03 1.333-.375 1.718-.845l-.554-.61s-.5.714-1.114.278c-.225-.212-.206-.57-.206-.57s-.01-.12.109-.373c.417-.705 1.56-2.19 2.236-3.058l.521-.66.747.858.002-.004.291.338-.002.006.02.018-1.303 1.61.59.667L12 12.182v.005l.004-.005 1.685 1.871.7.787.247.26.175.192c.382.42.914.767 1.627.741.5-.017.864-.25 1.075-.636.271-.506.156-.781.156-.781.247.23.493.457.665.615 1.107 1.05 2.331.21 2.331.21-1.523-.818-2.825-2.103-3.195-2.496l-.408-.47-.852.95c.41.565.394.861.394.861s.011.36-.212.571c-.607.441-1.149-.318-1.149-.318l-1.692-2.052-.005-.012-.873-1.07.017-.017.644-.742h-.004l.39-.45.173.214 1.105 1.492.778-.919-1.267-1.475-.001.003-.122-.14c.296-.457.983-1.767 1.126-2.528l.617.768 1.51 1.881-.31.358-1.268 1.468-1.1 1.26-.325.384.688.794.54-.632v.003l.064-.068.82-.947.48-.556 1.495-1.726c.008-.007.805-.898 1.947-.939.652-.026 1.302.234 1.949.76-.269.286-.724.659-1.322.773-.64.12-1.294-.056-2.008-.566l-.686.788c.962.69 1.966.978 2.902.798 1.435-.28 2.233-1.516 2.269-1.57L24 9.52l-.297-.298c-.978-.952-2.017-1.413-3.088-1.368l.001-.001c-.851.032-1.542.384-2.012.716l-.052.037c-.004.001-.012.012-.013.012-.062.046-.124.085-.173.126l-.743-.8c-.176-.213-.453-.557-.521-.75-.057-.154-.071-.307-.084-.399a8.035 8.035 0 0 1-.099-.84s0-.124-.058-.268l-.073-.182s.618-.27 1.054-.252l.27.325.004-.319v-.465s-.028-.247-.265-.434c-.178-.138-.256-.15-.47-.18-.275-.042-.32.034-.525-.159zm-7.648 8.8-.633.84.718.836.84.992 1.074 1.239.692-.794-1.37-1.573-.684-.798zm4.374 1.841-.966 1.12-1.115 1.284c-1.118 1.04-1.204 1.43-1.204 1.43-.467 1.174.15 2.017.15 2.017.089-.733.713-1.444.935-1.72l.433-.496v-.002l1.534-1.775.91-1.046zm-.41 2.709-.706.83.08.094-.002.002.43.496c.225.276.845.987.937 1.72 0 0 .613-.843.15-2.018 0 0-.07-.313-.888-1.124z" }) + ] + } + ); +}); + +export { SiAirserbia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.cjs new file mode 100644 index 000000000..e21a4f466 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18BFFF"; +const SiAirtable = React__namespace.forwardRef(function SiAirtable2({ title = "Airtable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.992 1.966c-.434 0-.87.086-1.28.257L1.779 5.917c-.503.208-.49.908.012 1.116l8.982 3.558a3.266 3.266 0 0 0 2.454 0l8.982-3.558c.503-.196.503-.908.012-1.116l-8.957-3.694a3.255 3.255 0 0 0-1.272-.257zM23.4 8.056a.589.589 0 0 0-.222.045l-10.012 3.877a.612.612 0 0 0-.38.564v8.896a.6.6 0 0 0 .821.552L23.62 18.1a.583.583 0 0 0 .38-.551V8.653a.6.6 0 0 0-.6-.596zM.676 8.095a.644.644 0 0 0-.48.19C.086 8.396 0 8.53 0 8.69v8.355c0 .442.515.737.908.54l6.27-3.006.307-.147 2.969-1.436c.466-.22.43-.908-.061-1.092L.883 8.138a.57.57 0 0 0-.207-.044z" }) + ] + } + ); +}); + +exports.default = SiAirtable; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.d.ts new file mode 100644 index 000000000..3b6e4917f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18BFFF"; +declare const SiAirtable: IconType; +export { SiAirtable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.mjs new file mode 100644 index 000000000..6c2cfa405 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtable.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18BFFF"; +const SiAirtable = React.forwardRef(function SiAirtable2({ title = "Airtable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.992 1.966c-.434 0-.87.086-1.28.257L1.779 5.917c-.503.208-.49.908.012 1.116l8.982 3.558a3.266 3.266 0 0 0 2.454 0l8.982-3.558c.503-.196.503-.908.012-1.116l-8.957-3.694a3.255 3.255 0 0 0-1.272-.257zM23.4 8.056a.589.589 0 0 0-.222.045l-10.012 3.877a.612.612 0 0 0-.38.564v8.896a.6.6 0 0 0 .821.552L23.62 18.1a.583.583 0 0 0 .38-.551V8.653a.6.6 0 0 0-.6-.596zM.676 8.095a.644.644 0 0 0-.48.19C.086 8.396 0 8.53 0 8.69v8.355c0 .442.515.737.908.54l6.27-3.006.307-.147 2.969-1.436c.466-.22.43-.908-.061-1.092L.883 8.138a.57.57 0 0 0-.207-.044z" }) + ] + } + ); +}); + +export { SiAirtable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.cjs new file mode 100644 index 000000000..36f51eab0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E40000"; +const SiAirtel = React__namespace.forwardRef(function SiAirtel2({ title = "Airtel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.137 23.862c.79 0 1.708-.19 2.751-.554 1.55-.538 2.784-1.281 3.986-2.009l.316-.205a29.733 29.733 0 0 0 3.764-2.72 16.574 16.574 0 0 0 5.457-7.529c.395-1.138.949-3.384.268-5.487a7.117 7.117 0 0 0-2.862-3.749c-.158-.126-1.898-1.47-5.203-1.47-3.005 0-6.31 1.107-9.806 3.32l-.11.08-.317.205a20.133 20.133 0 0 0-2.309 1.693C1.585 6.813-.091 9.106.004 11.067c.031.79.427 1.534 1.075 2.008a3.472 3.472 0 0 0 2.214.68c1.803 0 3.765-.948 5.109-1.74l.253-.157.696-.443.237-.158c1.898-1.234 3.875-2.515 6.105-3.258a5.255 5.255 0 0 1 1.55-.285 3.163 3.163 0 0 1 .664.08 2.112 2.112 0 0 1 1.47 1.106c.523 1.012.396 2.61-.316 4.08a17.871 17.871 0 0 1-4.887 5.836 19.488 19.488 0 0 1-3.194 2.215l-.095.031a9.634 9.634 0 0 1-1.471.696l-.08.032-.41.158c-2.23.57-.87-1.329-.87-1.329.474-.537.98-1.028 1.518-1.502.316-.269.633-.554.933-.854l.064-.063c.395-.38.933-.902.901-1.645-.047-.98-1.075-1.582-2.056-1.613h-.063c-.95 0-1.819.522-2.404.98a7.27 7.27 0 0 0-1.598 1.74c-.6.901-1.85 3.226-.632 5.077.49.743 1.313 1.123 2.42 1.123z" }) + ] + } + ); +}); + +exports.default = SiAirtel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.d.ts new file mode 100644 index 000000000..a18fe43a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E40000"; +declare const SiAirtel: IconType; +export { SiAirtel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.mjs new file mode 100644 index 000000000..70d649644 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E40000"; +const SiAirtel = React.forwardRef(function SiAirtel2({ title = "Airtel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.137 23.862c.79 0 1.708-.19 2.751-.554 1.55-.538 2.784-1.281 3.986-2.009l.316-.205a29.733 29.733 0 0 0 3.764-2.72 16.574 16.574 0 0 0 5.457-7.529c.395-1.138.949-3.384.268-5.487a7.117 7.117 0 0 0-2.862-3.749c-.158-.126-1.898-1.47-5.203-1.47-3.005 0-6.31 1.107-9.806 3.32l-.11.08-.317.205a20.133 20.133 0 0 0-2.309 1.693C1.585 6.813-.091 9.106.004 11.067c.031.79.427 1.534 1.075 2.008a3.472 3.472 0 0 0 2.214.68c1.803 0 3.765-.948 5.109-1.74l.253-.157.696-.443.237-.158c1.898-1.234 3.875-2.515 6.105-3.258a5.255 5.255 0 0 1 1.55-.285 3.163 3.163 0 0 1 .664.08 2.112 2.112 0 0 1 1.47 1.106c.523 1.012.396 2.61-.316 4.08a17.871 17.871 0 0 1-4.887 5.836 19.488 19.488 0 0 1-3.194 2.215l-.095.031a9.634 9.634 0 0 1-1.471.696l-.08.032-.41.158c-2.23.57-.87-1.329-.87-1.329.474-.537.98-1.028 1.518-1.502.316-.269.633-.554.933-.854l.064-.063c.395-.38.933-.902.901-1.645-.047-.98-1.075-1.582-2.056-1.613h-.063c-.95 0-1.819.522-2.404.98a7.27 7.27 0 0 0-1.598 1.74c-.6.901-1.85 3.226-.632 5.077.49.743 1.313 1.123 2.42 1.123z" }) + ] + } + ); +}); + +export { SiAirtel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.cjs new file mode 100644 index 000000000..61d577995 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#172B54"; +const SiAirtransat = React__namespace.forwardRef(function SiAirtransat2({ title = "Air Transat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.611 0c-2.931.916-5.68 3.434-8.474 6.137C5.564 6.32 1.672 7.74 1.26 7.969c4.122 2.152 5.129 3.115 5.129 3.115s-1.374 3.938-1.649 6.457c.916-2.244 2.702-5.312 3.801-6.777-1.511-1.237-4.35-2.565-4.35-2.565s2.244-.962 6.733-1.191c0 0 1.878-3.619 6.687-7.008zm-2.244 3.344c-.412.87-1.146 2.793-1.283 4.213 3.16.229 5.312.963 5.312.963s-3.205 1.19-4.992 2.609c.32.779 1.055 3.07 1.467 4.855-.687-.64-2.748-2.336-4.26-3.252C9.596 13.511 4.1 18.962 1.031 24c1.328-1.374 5.267-5.817 10.58-9.023 1.1.64 6.137 3.939 6.137 3.939s-1.1-5.862-1.512-7.236c1.558-1.054 4.214-2.52 6.733-3.3-3.527-1.419-7.832-1.784-7.832-1.784s-.09-1.1.23-3.252z" }) + ] + } + ); +}); + +exports.default = SiAirtransat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.d.ts new file mode 100644 index 000000000..0cefe70a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#172B54"; +declare const SiAirtransat: IconType; +export { SiAirtransat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.mjs new file mode 100644 index 000000000..3427877f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAirtransat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#172B54"; +const SiAirtransat = React.forwardRef(function SiAirtransat2({ title = "Air Transat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.611 0c-2.931.916-5.68 3.434-8.474 6.137C5.564 6.32 1.672 7.74 1.26 7.969c4.122 2.152 5.129 3.115 5.129 3.115s-1.374 3.938-1.649 6.457c.916-2.244 2.702-5.312 3.801-6.777-1.511-1.237-4.35-2.565-4.35-2.565s2.244-.962 6.733-1.191c0 0 1.878-3.619 6.687-7.008zm-2.244 3.344c-.412.87-1.146 2.793-1.283 4.213 3.16.229 5.312.963 5.312.963s-3.205 1.19-4.992 2.609c.32.779 1.055 3.07 1.467 4.855-.687-.64-2.748-2.336-4.26-3.252C9.596 13.511 4.1 18.962 1.031 24c1.328-1.374 5.267-5.817 10.58-9.023 1.1.64 6.137 3.939 6.137 3.939s-1.1-5.862-1.512-7.236c1.558-1.054 4.214-2.52 6.733-3.3-3.527-1.419-7.832-1.784-7.832-1.784s-.09-1.1.23-3.252z" }) + ] + } + ); +}); + +export { SiAirtransat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.cjs new file mode 100644 index 000000000..db15cfde9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#23C8D2"; +const SiAjv = React__namespace.forwardRef(function SiAjv2({ title = "Ajv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.705 4.718a980.02 980.02 0 0 1 1.211 3.19l2.962 7.886c.198.526-.054 1.17-.583 1.366-.311.116-.655.06-.926-.11l-1.454 1.418c.81.775 1.985 1.034 3.116.614 1.602-.593 2.387-2.416 1.79-4.008L10.984 4.718zm4.153.013 4.57 11.72 1.924.008L24 4.783l-2.404-.011-3.193 8.832-3.141-8.861zm-8.309.013L0 16.421l2.354.01 1.092-2.91 4.112.019 1.08 2.92 2.355.012L6.572 4.754zm.999 2.592L7.15 11.94l-3.316-.016z" }) + ] + } + ); +}); + +exports.default = SiAjv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.d.ts new file mode 100644 index 000000000..96ed239d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#23C8D2"; +declare const SiAjv: IconType; +export { SiAjv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.mjs new file mode 100644 index 000000000..b774e5ea6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAjv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#23C8D2"; +const SiAjv = React.forwardRef(function SiAjv2({ title = "Ajv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.705 4.718a980.02 980.02 0 0 1 1.211 3.19l2.962 7.886c.198.526-.054 1.17-.583 1.366-.311.116-.655.06-.926-.11l-1.454 1.418c.81.775 1.985 1.034 3.116.614 1.602-.593 2.387-2.416 1.79-4.008L10.984 4.718zm4.153.013 4.57 11.72 1.924.008L24 4.783l-2.404-.011-3.193 8.832-3.141-8.861zm-8.309.013L0 16.421l2.354.01 1.092-2.91 4.112.019 1.08 2.92 2.355.012L6.572 4.754zm.999 2.592L7.15 11.94l-3.316-.016z" }) + ] + } + ); +}); + +export { SiAjv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.cjs new file mode 100644 index 000000000..29eb0a85c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0096D6"; +const SiAkamai = React__namespace.forwardRef(function SiAkamai2({ title = "Akamai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.0548 0C6.384 0 .961 5.3802.961 12.0078.961 18.6354 6.3698 24 13.0548 24c.6168 0 .6454-.3572.0859-.5293-4.9349-1.5063-8.5352-6.069-8.5352-11.4629 0-5.4656 3.6725-10.0706 8.6934-11.5195C13.8153.3448 13.6716 0 13.0548 0Zm2.3242 1.8223c-5.2648 0-9.5254 4.2606-9.5254 9.5254 0 1.2193.2285 2.3818.6445 3.4433.1722.459.4454.4584.4024.0137-.0287-.3156-.0567-.6447-.0567-.9746 0-5.2648 4.2606-9.5254 9.5254-9.5254 4.9779 0 6.4698 2.2235 6.6563 2.08.2008-.1577-1.808-4.5624-7.6465-4.5624zm.4687 4.0703c-1.8622.0592-3.651.7168-5.1035 1.8554-.2582.2009-.1567.3284.1445.1993 2.4675-1.076 5.5812-1.1046 8.6368-.043 2.0514.7173 3.2413 1.7364 3.3418 1.6934.1578-.0718-1.1915-2.2226-3.6446-3.1407-1.1135-.4196-2.2576-.6-3.375-.5644z" }) + ] + } + ); +}); + +exports.default = SiAkamai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.d.ts new file mode 100644 index 000000000..d31381123 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0096D6"; +declare const SiAkamai: IconType; +export { SiAkamai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.mjs new file mode 100644 index 000000000..4058bfe71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkamai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0096D6"; +const SiAkamai = React.forwardRef(function SiAkamai2({ title = "Akamai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.0548 0C6.384 0 .961 5.3802.961 12.0078.961 18.6354 6.3698 24 13.0548 24c.6168 0 .6454-.3572.0859-.5293-4.9349-1.5063-8.5352-6.069-8.5352-11.4629 0-5.4656 3.6725-10.0706 8.6934-11.5195C13.8153.3448 13.6716 0 13.0548 0Zm2.3242 1.8223c-5.2648 0-9.5254 4.2606-9.5254 9.5254 0 1.2193.2285 2.3818.6445 3.4433.1722.459.4454.4584.4024.0137-.0287-.3156-.0567-.6447-.0567-.9746 0-5.2648 4.2606-9.5254 9.5254-9.5254 4.9779 0 6.4698 2.2235 6.6563 2.08.2008-.1577-1.808-4.5624-7.6465-4.5624zm.4687 4.0703c-1.8622.0592-3.651.7168-5.1035 1.8554-.2582.2009-.1567.3284.1445.1993 2.4675-1.076 5.5812-1.1046 8.6368-.043 2.0514.7173 3.2413 1.7364 3.3418 1.6934.1578-.0718-1.1915-2.2226-3.6446-3.1407-1.1135-.4196-2.2576-.6-3.375-.5644z" }) + ] + } + ); +}); + +export { SiAkamai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.cjs new file mode 100644 index 000000000..2b422c1cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6300"; +const SiAkasaair = React__namespace.forwardRef(function SiAkasaair2({ title = "Akasa Air", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.7315 1.8005c-2.297 0-3.2705.731-4.165 2.3824l-.6291 1.1158a3.2264 3.2264 0 0 0-.5293 1.4828c.026.4297.1655.8441.4064 1.201l5.0022 8.9444c1.789 3.1968 4.0007 4.9858 8.7642 4.9858.4075 0 .508-.2434.344-.5292L17.4367 9.793C16.14 7.4536 15.69 5.7656 15.69 4.5483a3.5322 3.5322 0 0 1 .8143-2.425c.1218-.1376.101-.3228-.1425-.3228ZM7.8123 8.8558c-.1218 0-.201.084-.3228.285L.0787 21.7113a.3929.3929 0 0 0-.0786.2441c0 .2435.386.2442.4866.2442 5.335 0 9.041-3.2553 9.041-7.9712a10.0555 10.0555 0 0 0-1.409-5.107c-.1006-.1589-.1847-.2655-.3064-.2655Z" }) + ] + } + ); +}); + +exports.default = SiAkasaair; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.d.ts new file mode 100644 index 000000000..4b3cc6b51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6300"; +declare const SiAkasaair: IconType; +export { SiAkasaair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.mjs new file mode 100644 index 000000000..6220e4a3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkasaair.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6300"; +const SiAkasaair = React.forwardRef(function SiAkasaair2({ title = "Akasa Air", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.7315 1.8005c-2.297 0-3.2705.731-4.165 2.3824l-.6291 1.1158a3.2264 3.2264 0 0 0-.5293 1.4828c.026.4297.1655.8441.4064 1.201l5.0022 8.9444c1.789 3.1968 4.0007 4.9858 8.7642 4.9858.4075 0 .508-.2434.344-.5292L17.4367 9.793C16.14 7.4536 15.69 5.7656 15.69 4.5483a3.5322 3.5322 0 0 1 .8143-2.425c.1218-.1376.101-.3228-.1425-.3228ZM7.8123 8.8558c-.1218 0-.201.084-.3228.285L.0787 21.7113a.3929.3929 0 0 0-.0786.2441c0 .2435.386.2442.4866.2442 5.335 0 9.041-3.2553 9.041-7.9712a10.0555 10.0555 0 0 0-1.409-5.107c-.1006-.1589-.1847-.2655-.3064-.2655Z" }) + ] + } + ); +}); + +export { SiAkasaair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.cjs new file mode 100644 index 000000000..70f350162 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6DA252"; +const SiAkaunting = React__namespace.forwardRef(function SiAkaunting2({ title = "Akaunting", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.146 18.673a7.352 7.352 0 0 1-3.148.704 7.344 7.344 0 0 1-4.538-1.561l-3.013 3.511A11.956 11.956 0 0 0 11.998 24c1.913 0 3.721-.448 5.326-1.244l-2.178-4.083Zm4.229 2.792V24h4.623V12c0-6.627-5.372-12-12-12C5.473 0 .165 5.208.002 11.693h4.626a7.377 7.377 0 1 1 11.034 6.711l2.177 4.081a12 12 0 0 0 1.536-1.02ZM7.016 17.44a7.352 7.352 0 0 1-2.389-5.165H.002a11.97 11.97 0 0 0 4.002 8.675l3.012-3.51Z" }) + ] + } + ); +}); + +exports.default = SiAkaunting; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.d.ts new file mode 100644 index 000000000..c952cfa63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6DA252"; +declare const SiAkaunting: IconType; +export { SiAkaunting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.mjs new file mode 100644 index 000000000..3fb986c8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkaunting.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6DA252"; +const SiAkaunting = React.forwardRef(function SiAkaunting2({ title = "Akaunting", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.146 18.673a7.352 7.352 0 0 1-3.148.704 7.344 7.344 0 0 1-4.538-1.561l-3.013 3.511A11.956 11.956 0 0 0 11.998 24c1.913 0 3.721-.448 5.326-1.244l-2.178-4.083Zm4.229 2.792V24h4.623V12c0-6.627-5.372-12-12-12C5.473 0 .165 5.208.002 11.693h4.626a7.377 7.377 0 1 1 11.034 6.711l2.177 4.081a12 12 0 0 0 1.536-1.02ZM7.016 17.44a7.352 7.352 0 0 1-2.389-5.165H.002a11.97 11.97 0 0 0 4.002 8.675l3.012-3.51Z" }) + ] + } + ); +}); + +export { SiAkaunting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.cjs new file mode 100644 index 000000000..41f139506 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AF38F9"; +const SiAkiflow = React__namespace.forwardRef(function SiAkiflow2({ title = "Akiflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.425 5.2 5.457 18h5.795l.948-2.99.947 2.99h5.795L14.974 5.2Zm.836.8h4.124l3.472 11.2h-4.124l-1.152-3.632Zm-.543.957 2.063 6.728-1.113 3.515H6.543ZM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Zm0 .8C18.186.8 23.2 5.813 23.2 12c0 6.186-5.014 11.2-11.2 11.2C5.814 23.2.8 18.186.8 12 .8 5.814 5.814.8 12 .8Z" }) + ] + } + ); +}); + +exports.default = SiAkiflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.d.ts new file mode 100644 index 000000000..a1badf5fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AF38F9"; +declare const SiAkiflow: IconType; +export { SiAkiflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.mjs new file mode 100644 index 000000000..9174786e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAkiflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AF38F9"; +const SiAkiflow = React.forwardRef(function SiAkiflow2({ title = "Akiflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.425 5.2 5.457 18h5.795l.948-2.99.947 2.99h5.795L14.974 5.2Zm.836.8h4.124l3.472 11.2h-4.124l-1.152-3.632Zm-.543.957 2.063 6.728-1.113 3.515H6.543ZM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Zm0 .8C18.186.8 23.2 5.813 23.2 12c0 6.186-5.014 11.2-11.2 11.2C5.814 23.2.8 18.186.8 12 .8 5.814 5.814.8 12 .8Z" }) + ] + } + ); +}); + +export { SiAkiflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.cjs new file mode 100644 index 000000000..4f773cda5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F46D01"; +const SiAlacritty = React__namespace.forwardRef(function SiAlacritty2({ title = "Alacritty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.065 0-8.57 21.269h3.595l6.91-16.244 6.91 16.244h3.594l-8.57-21.269zm1.935 9.935c-0.76666 1.8547-1.5334 3.7094-2.298 5.565 1.475 4.54 1.475 4.54 2.298 8.5 0.823-3.96 0.823-3.96 2.297-8.5-0.76637-1.8547-1.5315-3.7099-2.297-5.565z" }) + ] + } + ); +}); + +exports.default = SiAlacritty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.d.ts new file mode 100644 index 000000000..86ef93be3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F46D01"; +declare const SiAlacritty: IconType; +export { SiAlacritty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.mjs new file mode 100644 index 000000000..0cc2bdcf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlacritty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F46D01"; +const SiAlacritty = React.forwardRef(function SiAlacritty2({ title = "Alacritty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.065 0-8.57 21.269h3.595l6.91-16.244 6.91 16.244h3.594l-8.57-21.269zm1.935 9.935c-0.76666 1.8547-1.5334 3.7094-2.298 5.565 1.475 4.54 1.475 4.54 2.298 8.5 0.823-3.96 0.823-3.96 2.297-8.5-0.76637-1.8547-1.5315-3.7099-2.297-5.565z" }) + ] + } + ); +}); + +export { SiAlacritty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.cjs new file mode 100644 index 000000000..eeda6d643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FF7B"; +const SiAlamy = React__namespace.forwardRef(function SiAlamy2({ title = "Alamy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Zm.058-18.533c2.515 0 3.482 1.404 3.482 3.959v7.04c0 .78 0 1.21.193 1.872H13.47c-.406-.331-.503-1.072-.503-1.423-.464 1.111-1.102 1.618-2.224 1.618-1.354 0-2.476-1.014-2.476-3.257 0-2.626 1.618-3.566 2.956-4.343.937-.545 1.736-1.009 1.744-1.917 0-.858-.29-1.15-.909-1.15-.696 0-.987.468-.987 1.56v.429H8.5v-.37c0-2.614 1.006-4.018 3.559-4.018Zm-.213 10.667c.6 0 .948-.526 1.122-.8v-3.393c-.209.345-.544.621-.887.904-.608.5-1.24 1.023-1.24 1.983 0 .838.367 1.306 1.005 1.306Z" }) + ] + } + ); +}); + +exports.default = SiAlamy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.d.ts new file mode 100644 index 000000000..1f165d9ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FF7B"; +declare const SiAlamy: IconType; +export { SiAlamy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.mjs new file mode 100644 index 000000000..b717bc32c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlamy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FF7B"; +const SiAlamy = React.forwardRef(function SiAlamy2({ title = "Alamy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Zm.058-18.533c2.515 0 3.482 1.404 3.482 3.959v7.04c0 .78 0 1.21.193 1.872H13.47c-.406-.331-.503-1.072-.503-1.423-.464 1.111-1.102 1.618-2.224 1.618-1.354 0-2.476-1.014-2.476-3.257 0-2.626 1.618-3.566 2.956-4.343.937-.545 1.736-1.009 1.744-1.917 0-.858-.29-1.15-.909-1.15-.696 0-.987.468-.987 1.56v.429H8.5v-.37c0-2.614 1.006-4.018 3.559-4.018Zm-.213 10.667c.6 0 .948-.526 1.122-.8v-3.393c-.209.345-.544.621-.887.904-.608.5-1.24 1.023-1.24 1.983 0 .838.367 1.306 1.005 1.306Z" }) + ] + } + ); +}); + +export { SiAlamy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.cjs new file mode 100644 index 000000000..4fc188519 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#04ACE6"; +const SiAlbertheijn = React__namespace.forwardRef(function SiAlbertheijn2({ title = "Albert Heijn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.652 0c-.354.002-.714.09-1.047.276L4.475 5.924c-.456.26-.881.716-1.075 1.362l-2.718 9.44c-.326 1.13.311 2.314 1.423 2.646l15.968 4.542c1.111.33 2.277-.318 2.603-1.448l2.641-9.258c.172-.543.076-1.213-.192-1.737L17.59 1.162A2.19 2.19 0 0 0 15.652 0zM12.97 6.373s-.008 4.23 0 4.225c.899-1.295 1.712-2.577 3.234-2.577 1.684-.001 2.597 1.409 2.602 2.595l-.007 7.596h-1.891l-.009-7.19c0-.988-.793-.986-.804-.986-.64 0-1.816 1.605-3.125 3.386v4.793l-1.913.002-.002-2.219S9.79 18.217 7.897 18.22c-2.148 0-2.877-1.476-2.882-5.015-.004-3.37.474-5.175 2.777-5.177 1.751-.001 3.256 2.55 3.256 2.55V8.963zm-5.15 3.658c-.88 0-.957.93-.954 3.17.003 2.242.124 3.115.95 3.115 1.124-.001 2.895-2.86 2.895-2.86S8.955 10.03 7.82 10.03z" }) + ] + } + ); +}); + +exports.default = SiAlbertheijn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.d.ts new file mode 100644 index 000000000..4f280c67e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#04ACE6"; +declare const SiAlbertheijn: IconType; +export { SiAlbertheijn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.mjs new file mode 100644 index 000000000..9bc3bc0cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlbertheijn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#04ACE6"; +const SiAlbertheijn = React.forwardRef(function SiAlbertheijn2({ title = "Albert Heijn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.652 0c-.354.002-.714.09-1.047.276L4.475 5.924c-.456.26-.881.716-1.075 1.362l-2.718 9.44c-.326 1.13.311 2.314 1.423 2.646l15.968 4.542c1.111.33 2.277-.318 2.603-1.448l2.641-9.258c.172-.543.076-1.213-.192-1.737L17.59 1.162A2.19 2.19 0 0 0 15.652 0zM12.97 6.373s-.008 4.23 0 4.225c.899-1.295 1.712-2.577 3.234-2.577 1.684-.001 2.597 1.409 2.602 2.595l-.007 7.596h-1.891l-.009-7.19c0-.988-.793-.986-.804-.986-.64 0-1.816 1.605-3.125 3.386v4.793l-1.913.002-.002-2.219S9.79 18.217 7.897 18.22c-2.148 0-2.877-1.476-2.882-5.015-.004-3.37.474-5.175 2.777-5.177 1.751-.001 3.256 2.55 3.256 2.55V8.963zm-5.15 3.658c-.88 0-.957.93-.954 3.17.003 2.242.124 3.115.95 3.115 1.124-.001 2.895-2.86 2.895-2.86S8.955 10.03 7.82 10.03z" }) + ] + } + ); +}); + +export { SiAlbertheijn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.cjs new file mode 100644 index 000000000..278771a1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDF6F"; +const SiAlby = React__namespace.forwardRef(function SiAlby2({ title = "Alby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.08 9.322c-3.77 0-6.96 2.33-8.05 5.57-.36 1.04.25 2.13 1.27 2.55 2.15.87 4.46 1.32 6.78 1.32s4.62-.45 6.78-1.32c1.02-.42 1.63-1.51 1.27-2.55-1.09-3.24-4.29-5.57-8.05-5.57zm-2.92 6.61c-1.09 0-1.97-.7-1.97-1.57s.89-1.57 1.97-1.57 1.97.7 1.97 1.57-.88 1.57-1.97 1.57zm5.63 0c-1.08 0-1.96-.7-1.96-1.57s.87-1.57 1.96-1.57 1.97.7 1.97 1.57-.88 1.57-1.97 1.57zm4.79-8.14.91-.91c.75.42 1.67.4 2.4-.06 1.11-.69 1.44-2.14.75-3.25a2.355 2.355 0 0 0-3.25-.75 2.358 2.358 0 0 0-.76 3.25l-.92.92c-1.87-1.53-4.15-2.44-6.63-2.44s-4.81.93-6.7 2.5l-1-1c.45-.74.46-1.66.03-2.41a2.357 2.357 0 0 0-3.22-.87 2.36 2.36 0 0 0-.88 3.22 2.37 2.37 0 0 0 3.23.88l.98.98c-1.93 1.94-3.3 4.61-3.83 7.6-.28 1.66.57 3.29 2.09 3.99 2.92 1.39 6.11 2.11 9.34 2.1 3.2 0 6.36-.7 9.25-2.06a3.695 3.695 0 0 0 2.16-3.37c0-.2-.01-.41-.05-.62-.54-3.04-1.93-5.75-3.9-7.7zm1.29 10.63a20.394 20.394 0 0 1-8.75 1.95c-3.06.01-6.08-.67-8.83-1.99a2.504 2.504 0 0 1-1.44-2.7c1.03-5.76 5.28-9.94 10.23-9.94s9.22 4.2 10.24 9.97c.19 1.12-.4 2.22-1.45 2.71z" }) + ] + } + ); +}); + +exports.default = SiAlby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.d.ts new file mode 100644 index 000000000..24a2d704b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDF6F"; +declare const SiAlby: IconType; +export { SiAlby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.mjs new file mode 100644 index 000000000..a59b54a09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDF6F"; +const SiAlby = React.forwardRef(function SiAlby2({ title = "Alby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.08 9.322c-3.77 0-6.96 2.33-8.05 5.57-.36 1.04.25 2.13 1.27 2.55 2.15.87 4.46 1.32 6.78 1.32s4.62-.45 6.78-1.32c1.02-.42 1.63-1.51 1.27-2.55-1.09-3.24-4.29-5.57-8.05-5.57zm-2.92 6.61c-1.09 0-1.97-.7-1.97-1.57s.89-1.57 1.97-1.57 1.97.7 1.97 1.57-.88 1.57-1.97 1.57zm5.63 0c-1.08 0-1.96-.7-1.96-1.57s.87-1.57 1.96-1.57 1.97.7 1.97 1.57-.88 1.57-1.97 1.57zm4.79-8.14.91-.91c.75.42 1.67.4 2.4-.06 1.11-.69 1.44-2.14.75-3.25a2.355 2.355 0 0 0-3.25-.75 2.358 2.358 0 0 0-.76 3.25l-.92.92c-1.87-1.53-4.15-2.44-6.63-2.44s-4.81.93-6.7 2.5l-1-1c.45-.74.46-1.66.03-2.41a2.357 2.357 0 0 0-3.22-.87 2.36 2.36 0 0 0-.88 3.22 2.37 2.37 0 0 0 3.23.88l.98.98c-1.93 1.94-3.3 4.61-3.83 7.6-.28 1.66.57 3.29 2.09 3.99 2.92 1.39 6.11 2.11 9.34 2.1 3.2 0 6.36-.7 9.25-2.06a3.695 3.695 0 0 0 2.16-3.37c0-.2-.01-.41-.05-.62-.54-3.04-1.93-5.75-3.9-7.7zm1.29 10.63a20.394 20.394 0 0 1-8.75 1.95c-3.06.01-6.08-.67-8.83-1.99a2.504 2.504 0 0 1-1.44-2.7c1.03-5.76 5.28-9.94 10.23-9.94s9.22 4.2 10.24 9.97c.19 1.12-.4 2.22-1.45 2.71z" }) + ] + } + ); +}); + +export { SiAlby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.cjs new file mode 100644 index 000000000..b95bce34e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C0C0E"; +const SiAlchemy = React__namespace.forwardRef(function SiAlchemy2({ title = "Alchemy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0059 1.7635a.4383.4383 0 0 0-.2149.0547.4214.4214 0 0 0-.1562.1523L9.3613 5.834a.8191.8191 0 0 0-.1133.416c0 .146.0388.2896.1133.416l4.9512 8.4123a.8444.8444 0 0 0 .3125.3047.8584.8584 0 0 0 .4239.1113h4.5489a.4358.4358 0 0 0 .2129-.0566.4185.4185 0 0 0 .1543-.1524.4106.4106 0 0 0 .0586-.207.416.416 0 0 0-.0567-.209L12.3711 1.9745a.416.416 0 0 0-.1543-.1524.4276.4276 0 0 0-.211-.0586zM8.0195 8.5058a.4277.4277 0 0 0-.211.0566.4235.4235 0 0 0-.1562.1524L.0584 21.6095a.4083.4083 0 0 0-.002.418.4188.4188 0 0 0 .1563.1524c.065.0365.138.057.2129.0566h4.5509a.8586.8586 0 0 0 .4238-.1113.8389.8389 0 0 0 .3105-.3047l4.9532-8.4123a.8194.8194 0 0 0 .1133-.416.8264.8264 0 0 0-.1133-.418L8.3886 8.7148a.4235.4235 0 0 0-.1562-.1524.435.435 0 0 0-.213-.0566Zm3.0117 8.8244a.8645.8645 0 0 0-.4258.1113.8385.8385 0 0 0-.3105.3047l-2.2754 3.8614a.4123.4123 0 0 0-.0567.209.4059.4059 0 0 0 .0567.207.4228.4228 0 0 0 .1543.1543.432.432 0 0 0 .2129.0547h15.1897a.4319.4319 0 0 0 .2129-.0547.4222.4222 0 0 0 .1543-.1543.4059.4059 0 0 0 .0566-.207.4122.4122 0 0 0-.0566-.209L21.67 17.7462a.8384.8384 0 0 0-.3106-.3047.8573.8573 0 0 0-.4238-.1113z" }) + ] + } + ); +}); + +exports.default = SiAlchemy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.d.ts new file mode 100644 index 000000000..46cc4b662 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C0C0E"; +declare const SiAlchemy: IconType; +export { SiAlchemy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.mjs new file mode 100644 index 000000000..502434c81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlchemy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C0C0E"; +const SiAlchemy = React.forwardRef(function SiAlchemy2({ title = "Alchemy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0059 1.7635a.4383.4383 0 0 0-.2149.0547.4214.4214 0 0 0-.1562.1523L9.3613 5.834a.8191.8191 0 0 0-.1133.416c0 .146.0388.2896.1133.416l4.9512 8.4123a.8444.8444 0 0 0 .3125.3047.8584.8584 0 0 0 .4239.1113h4.5489a.4358.4358 0 0 0 .2129-.0566.4185.4185 0 0 0 .1543-.1524.4106.4106 0 0 0 .0586-.207.416.416 0 0 0-.0567-.209L12.3711 1.9745a.416.416 0 0 0-.1543-.1524.4276.4276 0 0 0-.211-.0586zM8.0195 8.5058a.4277.4277 0 0 0-.211.0566.4235.4235 0 0 0-.1562.1524L.0584 21.6095a.4083.4083 0 0 0-.002.418.4188.4188 0 0 0 .1563.1524c.065.0365.138.057.2129.0566h4.5509a.8586.8586 0 0 0 .4238-.1113.8389.8389 0 0 0 .3105-.3047l4.9532-8.4123a.8194.8194 0 0 0 .1133-.416.8264.8264 0 0 0-.1133-.418L8.3886 8.7148a.4235.4235 0 0 0-.1562-.1524.435.435 0 0 0-.213-.0566Zm3.0117 8.8244a.8645.8645 0 0 0-.4258.1113.8385.8385 0 0 0-.3105.3047l-2.2754 3.8614a.4123.4123 0 0 0-.0567.209.4059.4059 0 0 0 .0567.207.4228.4228 0 0 0 .1543.1543.432.432 0 0 0 .2129.0547h15.1897a.4319.4319 0 0 0 .2129-.0547.4222.4222 0 0 0 .1543-.1543.4059.4059 0 0 0 .0566-.207.4122.4122 0 0 0-.0566-.209L21.67 17.7462a.8384.8384 0 0 0-.3106-.3047.8573.8573 0 0 0-.4238-.1113z" }) + ] + } + ); +}); + +export { SiAlchemy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.cjs new file mode 100644 index 000000000..0d42fadb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2490D7"; +const SiAldinord = React__namespace.forwardRef(function SiAldinord2({ title = "Aldi Nord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.812 2.057 6.086 13.73c-.349.523-.581.89-.592 1.461-.01.541.128 1.027.395 1.495h1.46a2.11 2.11 0 0 1-.546-1.531c.007-.125.03-.28.067-.405h9.833a1.933 1.933 0 0 0-.297-.583H7.145a11.3 11.3 0 0 1 .379-.604l.507-.76h7.47l-.408-.614H8.44l6.702-10.132zm-3.502 0L3.092 12.963c-.549.823-.806 1.304-.806 2.068 0 .871.232 1.255.409 1.655h1.153a4.007 4.007 0 0 1-.096-.232 3.327 3.327 0 0 1-.233-1.23c.02-.811.302-1.356.772-2.058l7.381-11.109zm6.34 14.629c.338-.352.58-.927.547-1.532-.028-.517-.343-1.026-.72-1.591l-4.234-6.35.648-.974 4.993 7.491c.348.523.58.89.592 1.461a2.833 2.833 0 0 1-.395 1.495h-1.43zm3.508 0c.041-.09.062-.144.094-.23.123-.324.27-.768.26-1.231-.02-.812-.302-1.357-.773-2.059l-5.745-8.58.665-.996 6.25 9.373c.548.824.805 1.303.805 2.068 0 .871-.232 1.255-.409 1.655zm-17.53.457v4.8h18.743v-4.8zm3.588.571h1.672l1.873 3.658H8.104l-.176-.385H6.177L6 21.372H4.343zm3.761 0h1.67v2.601h1.435v1.057H9.977zm3.422 0h2.43c1.002 0 1.814.82 1.814 1.83a1.822 1.822 0 0 1-1.815 1.828h-2.43zm4.614 0h1.644v3.658h-1.644zm-2.974 1.034v1.59h.352c.41 0 .743-.356.743-.795 0-.44-.332-.795-.743-.795zm-7.996.465-.374.811h.767zm.84-6.189h7.767l.614.922H7.276c.088-.145.607-.922.607-.922m4.035-10.967L4.488 13.24c-.465.695-.731 1.214-.75 1.99-.01.452.128 1.013.337 1.457h1.576a2.942 2.942 0 0 1-.376-1.497c.012-.615.266-1.01.614-1.531l7.678-11.6zm6.431 14.629a2.94 2.94 0 0 0 .376-1.497c-.012-.615-.266-1.01-.613-1.532l-5.079-7.625.827-1.247 5.652 8.454c.465.695.732 1.214.75 1.99.011.452-.128 1.013-.338 1.457H18.35zM23.429 0H.57v24h22.86zm-.915 23.086H1.486V.914h21.028z" }) + ] + } + ); +}); + +exports.default = SiAldinord; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.d.ts new file mode 100644 index 000000000..66c87eb4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2490D7"; +declare const SiAldinord: IconType; +export { SiAldinord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.mjs new file mode 100644 index 000000000..07bf8dc1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAldinord.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2490D7"; +const SiAldinord = React.forwardRef(function SiAldinord2({ title = "Aldi Nord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.812 2.057 6.086 13.73c-.349.523-.581.89-.592 1.461-.01.541.128 1.027.395 1.495h1.46a2.11 2.11 0 0 1-.546-1.531c.007-.125.03-.28.067-.405h9.833a1.933 1.933 0 0 0-.297-.583H7.145a11.3 11.3 0 0 1 .379-.604l.507-.76h7.47l-.408-.614H8.44l6.702-10.132zm-3.502 0L3.092 12.963c-.549.823-.806 1.304-.806 2.068 0 .871.232 1.255.409 1.655h1.153a4.007 4.007 0 0 1-.096-.232 3.327 3.327 0 0 1-.233-1.23c.02-.811.302-1.356.772-2.058l7.381-11.109zm6.34 14.629c.338-.352.58-.927.547-1.532-.028-.517-.343-1.026-.72-1.591l-4.234-6.35.648-.974 4.993 7.491c.348.523.58.89.592 1.461a2.833 2.833 0 0 1-.395 1.495h-1.43zm3.508 0c.041-.09.062-.144.094-.23.123-.324.27-.768.26-1.231-.02-.812-.302-1.357-.773-2.059l-5.745-8.58.665-.996 6.25 9.373c.548.824.805 1.303.805 2.068 0 .871-.232 1.255-.409 1.655zm-17.53.457v4.8h18.743v-4.8zm3.588.571h1.672l1.873 3.658H8.104l-.176-.385H6.177L6 21.372H4.343zm3.761 0h1.67v2.601h1.435v1.057H9.977zm3.422 0h2.43c1.002 0 1.814.82 1.814 1.83a1.822 1.822 0 0 1-1.815 1.828h-2.43zm4.614 0h1.644v3.658h-1.644zm-2.974 1.034v1.59h.352c.41 0 .743-.356.743-.795 0-.44-.332-.795-.743-.795zm-7.996.465-.374.811h.767zm.84-6.189h7.767l.614.922H7.276c.088-.145.607-.922.607-.922m4.035-10.967L4.488 13.24c-.465.695-.731 1.214-.75 1.99-.01.452.128 1.013.337 1.457h1.576a2.942 2.942 0 0 1-.376-1.497c.012-.615.266-1.01.614-1.531l7.678-11.6zm6.431 14.629a2.94 2.94 0 0 0 .376-1.497c-.012-.615-.266-1.01-.613-1.532l-5.079-7.625.827-1.247 5.652 8.454c.465.695.732 1.214.75 1.99.011.452-.128 1.013-.338 1.457H18.35zM23.429 0H.57v24h22.86zm-.915 23.086H1.486V.914h21.028z" }) + ] + } + ); +}); + +export { SiAldinord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.cjs new file mode 100644 index 000000000..b6bad9fb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00005F"; +const SiAldisud = React__namespace.forwardRef(function SiAldisud2({ title = "Aldi Süd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.164 10.92c-.243-.558-.558-.655-1.044-.655h-4.368l-.412 1.189a.727.727 0 0 1-.097.243h5.533c.315 0 .582.048.8.315h.049c0 .024-.437-1.02-.461-1.092zm-.898-2.135c-.243-.51-.534-.583-1.02-.583h-2.79l-.485 1.432h3.955c.364 0 .631.049.825.315h.049s-.486-1.043-.534-1.164zm-.874-2.063c-.267-.534-.534-.582-1.019-.582h-1.238l-.485 1.43h2.403c.34 0 .63.049.825.316h.048c0-.025-.485-1.02-.534-1.165zM9.355 3.519c-.68 0-.97.485-1.238 1.237L5.424 12.74h.68c.679 0 .97-.485 1.237-1.237l2.354-6.94c.194-.607.485-.947.922-.996V3.52zm4.416-.025c-.679 0-.97.486-1.237 1.238l-2.354 6.916c-.194.607-.461.947-.898.995v.049h1.213c.68 0 .971-.486 1.238-1.238l2.354-6.916c.194-.607.485-.946.922-.995v-.049zm-2.208 0c-.68 0-.97.486-1.237 1.238l-2.33 6.94c-.194.607-.461.947-.898.995v.049h1.213c.68 0 .971-.485 1.238-1.238l2.354-6.916c.194-.606.485-.946.922-.995V3.52c-.218-.025-1.213-.025-1.262-.025zm.364 16.842c-.558 0-.655-.243-.655-.825v-.923h.461v1.044c0 .267.024.388.218.388.17 0 .219-.097.219-.388v-1.044h.437v.923c0 .63-.17.825-.68.825zm.316-1.917a.217.217 0 0 1-.219-.219c0-.121.097-.242.219-.242.121 0 .218.12.218.242a.217.217 0 0 1-.218.219zm-.631 0a.217.217 0 0 1-.219-.219c0-.121.097-.242.219-.242.121 0 .218.12.218.242a.217.217 0 0 1-.218.219zm1.31 1.868v-1.699h.485c.607 0 .874.122.874.85s-.267.85-.874.85zm.558-.291c.243 0 .34-.146.34-.558 0-.388-.097-.558-.34-.558h-.097v1.116zm-3.154.34c-.267 0-.461-.049-.559-.073l.073-.316c.17.049.291.073.389.073.12 0 .266-.024.266-.17 0-.097-.12-.17-.242-.242h-.024c-.195-.122-.413-.243-.413-.51 0-.315.218-.485.63-.485.22 0 .34.024.51.073l-.072.29a.924.924 0 0 0-.364-.072c-.146 0-.243.048-.243.17 0 .097.121.17.267.242h.024c.194.122.437.243.437.51 0 .316-.218.51-.68.51zM8.36 17.569c-.049-.194-.121-.534-.17-.68H6.855c-.048.146-.12.486-.17.68H5.497c.51-1.601.728-2.257 1.31-3.688h1.457c.558 1.407.8 2.087 1.31 3.688zm-1.335-1.456h.995c-.145-.485-.412-1.31-.485-1.553-.097.219-.364 1.044-.51 1.553zm3.834 1.456c-.63 0-.97-.364-.97-.995v-2.693h1.116v2.475c0 .315.097.388.413.388h1.092l.17.825zm6.334-3.688h1.116v3.688h-1.116zm-4.077 3.688v-3.688h1.53c1.14 0 1.916.46 1.916 1.82 0 1.31-.63 1.868-1.868 1.868zm1.117-.8h.315c.68 0 .946-.316.946-1.068 0-.728-.34-1.02-.995-1.02h-.266zm5.532 4.732c0 .17-.145.29-.29.29H4.55a.295.295 0 0 1-.291-.29V2.475c0-.17.145-.291.291-.291h14.924c.17 0 .291.146.291.291zM4.065 1.626a.383.383 0 0 0-.389.388v19.948c0 .218.17.388.389.388h15.87c.219 0 .389-.17.389-.388V2.014a.383.383 0 0 0-.389-.388zM2.803 0a.808.808 0 0 0-.801.8v22.4c0 .436.364.8.8.8h18.395a.808.808 0 0 0 .801-.8V.8c0-.436-.364-.8-.8-.8zm.704.946h17.01a.54.54 0 0 1 .535.534l-.025 21.04a.539.539 0 0 1-.534.534H3.507a.539.539 0 0 1-.534-.534V1.48a.54.54 0 0 1 .534-.534z" }) + ] + } + ); +}); + +exports.default = SiAldisud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.d.ts new file mode 100644 index 000000000..ef98467a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00005F"; +declare const SiAldisud: IconType; +export { SiAldisud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.mjs new file mode 100644 index 000000000..0c1c7bc26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAldisud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00005F"; +const SiAldisud = React.forwardRef(function SiAldisud2({ title = "Aldi Süd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.164 10.92c-.243-.558-.558-.655-1.044-.655h-4.368l-.412 1.189a.727.727 0 0 1-.097.243h5.533c.315 0 .582.048.8.315h.049c0 .024-.437-1.02-.461-1.092zm-.898-2.135c-.243-.51-.534-.583-1.02-.583h-2.79l-.485 1.432h3.955c.364 0 .631.049.825.315h.049s-.486-1.043-.534-1.164zm-.874-2.063c-.267-.534-.534-.582-1.019-.582h-1.238l-.485 1.43h2.403c.34 0 .63.049.825.316h.048c0-.025-.485-1.02-.534-1.165zM9.355 3.519c-.68 0-.97.485-1.238 1.237L5.424 12.74h.68c.679 0 .97-.485 1.237-1.237l2.354-6.94c.194-.607.485-.947.922-.996V3.52zm4.416-.025c-.679 0-.97.486-1.237 1.238l-2.354 6.916c-.194.607-.461.947-.898.995v.049h1.213c.68 0 .971-.486 1.238-1.238l2.354-6.916c.194-.607.485-.946.922-.995v-.049zm-2.208 0c-.68 0-.97.486-1.237 1.238l-2.33 6.94c-.194.607-.461.947-.898.995v.049h1.213c.68 0 .971-.485 1.238-1.238l2.354-6.916c.194-.606.485-.946.922-.995V3.52c-.218-.025-1.213-.025-1.262-.025zm.364 16.842c-.558 0-.655-.243-.655-.825v-.923h.461v1.044c0 .267.024.388.218.388.17 0 .219-.097.219-.388v-1.044h.437v.923c0 .63-.17.825-.68.825zm.316-1.917a.217.217 0 0 1-.219-.219c0-.121.097-.242.219-.242.121 0 .218.12.218.242a.217.217 0 0 1-.218.219zm-.631 0a.217.217 0 0 1-.219-.219c0-.121.097-.242.219-.242.121 0 .218.12.218.242a.217.217 0 0 1-.218.219zm1.31 1.868v-1.699h.485c.607 0 .874.122.874.85s-.267.85-.874.85zm.558-.291c.243 0 .34-.146.34-.558 0-.388-.097-.558-.34-.558h-.097v1.116zm-3.154.34c-.267 0-.461-.049-.559-.073l.073-.316c.17.049.291.073.389.073.12 0 .266-.024.266-.17 0-.097-.12-.17-.242-.242h-.024c-.195-.122-.413-.243-.413-.51 0-.315.218-.485.63-.485.22 0 .34.024.51.073l-.072.29a.924.924 0 0 0-.364-.072c-.146 0-.243.048-.243.17 0 .097.121.17.267.242h.024c.194.122.437.243.437.51 0 .316-.218.51-.68.51zM8.36 17.569c-.049-.194-.121-.534-.17-.68H6.855c-.048.146-.12.486-.17.68H5.497c.51-1.601.728-2.257 1.31-3.688h1.457c.558 1.407.8 2.087 1.31 3.688zm-1.335-1.456h.995c-.145-.485-.412-1.31-.485-1.553-.097.219-.364 1.044-.51 1.553zm3.834 1.456c-.63 0-.97-.364-.97-.995v-2.693h1.116v2.475c0 .315.097.388.413.388h1.092l.17.825zm6.334-3.688h1.116v3.688h-1.116zm-4.077 3.688v-3.688h1.53c1.14 0 1.916.46 1.916 1.82 0 1.31-.63 1.868-1.868 1.868zm1.117-.8h.315c.68 0 .946-.316.946-1.068 0-.728-.34-1.02-.995-1.02h-.266zm5.532 4.732c0 .17-.145.29-.29.29H4.55a.295.295 0 0 1-.291-.29V2.475c0-.17.145-.291.291-.291h14.924c.17 0 .291.146.291.291zM4.065 1.626a.383.383 0 0 0-.389.388v19.948c0 .218.17.388.389.388h15.87c.219 0 .389-.17.389-.388V2.014a.383.383 0 0 0-.389-.388zM2.803 0a.808.808 0 0 0-.801.8v22.4c0 .436.364.8.8.8h18.395a.808.808 0 0 0 .801-.8V.8c0-.436-.364-.8-.8-.8zm.704.946h17.01a.54.54 0 0 1 .535.534l-.025 21.04a.539.539 0 0 1-.534.534H3.507a.539.539 0 0 1-.534-.534V1.48a.54.54 0 0 1 .534-.534z" }) + ] + } + ); +}); + +export { SiAldisud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.cjs new file mode 100644 index 000000000..7e6633f0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C1F87"; +const SiAlfred = React__namespace.forwardRef(function SiAlfred2({ title = "Alfred", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 15.902c0-1.142 1.133-2.184 3-2.977v-1.827c0-4.142 4.029-7.5 9-7.5s9 3.358 9 7.5v1.827c1.867.793 3 1.835 3 2.977 0 2.485-5.373 4.5-12 4.5s-12-2.015-12-4.5z" }) + ] + } + ); +}); + +exports.default = SiAlfred; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.d.ts new file mode 100644 index 000000000..ce452c7dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C1F87"; +declare const SiAlfred: IconType; +export { SiAlfred as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.mjs new file mode 100644 index 000000000..1dde3689c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlfred.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C1F87"; +const SiAlfred = React.forwardRef(function SiAlfred2({ title = "Alfred", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 15.902c0-1.142 1.133-2.184 3-2.977v-1.827c0-4.142 4.029-7.5 9-7.5s9 3.358 9 7.5v1.827c1.867.793 3 1.835 3 2.977 0 2.485-5.373 4.5-12 4.5s-12-2.015-12-4.5z" }) + ] + } + ); +}); + +export { SiAlfred as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.cjs new file mode 100644 index 000000000..753548600 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003DFF"; +const SiAlgolia = React__namespace.forwardRef(function SiAlgolia2({ title = "Algolia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.445 0 .103 5.285.01 11.817c-.097 6.634 5.285 12.131 11.92 12.17a11.91 11.91 0 0 0 5.775-1.443.281.281 0 0 0 .052-.457l-1.122-.994a.79.79 0 0 0-.833-.14 9.693 9.693 0 0 1-3.923.77c-5.36-.067-9.692-4.527-9.607-9.888.084-5.293 4.417-9.573 9.73-9.573h9.73v17.296l-5.522-4.907a.407.407 0 0 0-.596.063 4.52 4.52 0 0 1-3.934 1.793 4.538 4.538 0 0 1-4.192-4.168 4.53 4.53 0 0 1 4.512-4.872 4.532 4.532 0 0 1 4.509 4.126c.018.205.11.397.265.533l1.438 1.275a.28.28 0 0 0 .462-.158 6.82 6.82 0 0 0 .099-1.725c-.232-3.376-2.966-6.092-6.345-6.3-3.873-.24-7.11 2.79-7.214 6.588-.1 3.7 2.933 6.892 6.634 6.974a6.75 6.75 0 0 0 4.136-1.294l7.212 6.394a.48.48 0 0 0 .797-.36V.456A.456.456 0 0 0 23.54 0Z" }) + ] + } + ); +}); + +exports.default = SiAlgolia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.d.ts new file mode 100644 index 000000000..2c772302c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003DFF"; +declare const SiAlgolia: IconType; +export { SiAlgolia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.mjs new file mode 100644 index 000000000..0a32aef02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgolia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003DFF"; +const SiAlgolia = React.forwardRef(function SiAlgolia2({ title = "Algolia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.445 0 .103 5.285.01 11.817c-.097 6.634 5.285 12.131 11.92 12.17a11.91 11.91 0 0 0 5.775-1.443.281.281 0 0 0 .052-.457l-1.122-.994a.79.79 0 0 0-.833-.14 9.693 9.693 0 0 1-3.923.77c-5.36-.067-9.692-4.527-9.607-9.888.084-5.293 4.417-9.573 9.73-9.573h9.73v17.296l-5.522-4.907a.407.407 0 0 0-.596.063 4.52 4.52 0 0 1-3.934 1.793 4.538 4.538 0 0 1-4.192-4.168 4.53 4.53 0 0 1 4.512-4.872 4.532 4.532 0 0 1 4.509 4.126c.018.205.11.397.265.533l1.438 1.275a.28.28 0 0 0 .462-.158 6.82 6.82 0 0 0 .099-1.725c-.232-3.376-2.966-6.092-6.345-6.3-3.873-.24-7.11 2.79-7.214 6.588-.1 3.7 2.933 6.892 6.634 6.974a6.75 6.75 0 0 0 4.136-1.294l7.212 6.394a.48.48 0 0 0 .797-.36V.456A.456.456 0 0 0 23.54 0Z" }) + ] + } + ); +}); + +export { SiAlgolia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.cjs new file mode 100644 index 000000000..481f69249 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAlgorand = React__namespace.forwardRef(function SiAlgorand2({ title = "Algorand", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.874 0h3.673l1.61 5.963h3.789l-2.588 4.5 3.624 13.533h-3.757l-2.44-9.077-5.247 9.079H8.345l8.107-14.051-1.304-4.878L4.215 24H.018Z" }) + ] + } + ); +}); + +exports.default = SiAlgorand; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.d.ts new file mode 100644 index 000000000..482bca66f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAlgorand: IconType; +export { SiAlgorand as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.mjs new file mode 100644 index 000000000..984a93843 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlgorand.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAlgorand = React.forwardRef(function SiAlgorand2({ title = "Algorand", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.874 0h3.673l1.61 5.963h3.789l-2.588 4.5 3.624 13.533h-3.757l-2.44-9.077-5.247 9.079H8.345l8.107-14.051-1.304-4.878L4.215 24H.018Z" }) + ] + } + ); +}); + +export { SiAlgorand as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.cjs new file mode 100644 index 000000000..5e069d0cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6A00"; +const SiAlibabacloud = React__namespace.forwardRef(function SiAlibabacloud2({ title = "Alibaba Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.996 4.517h5.291L8.01 6.324 4.153 7.506a1.668 1.668 0 0 0-1.165 1.601v5.786a1.668 1.668 0 0 0 1.165 1.6l3.857 1.183 1.277 1.807H3.996A3.996 3.996 0 0 1 0 15.487V8.513a3.996 3.996 0 0 1 3.996-3.996m16.008 0h-5.291l1.277 1.807 3.857 1.182c.715.227 1.17.889 1.165 1.601v5.786a1.668 1.668 0 0 1-1.165 1.6l-3.857 1.183-1.277 1.807h5.291A3.996 3.996 0 0 0 24 15.487V8.513a3.996 3.996 0 0 0-3.996-3.996m-4.007 8.345H8.002v-1.804h7.995Z" }) + ] + } + ); +}); + +exports.default = SiAlibabacloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.d.ts new file mode 100644 index 000000000..086abb65b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6A00"; +declare const SiAlibabacloud: IconType; +export { SiAlibabacloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.mjs new file mode 100644 index 000000000..f585d71a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabacloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6A00"; +const SiAlibabacloud = React.forwardRef(function SiAlibabacloud2({ title = "Alibaba Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.996 4.517h5.291L8.01 6.324 4.153 7.506a1.668 1.668 0 0 0-1.165 1.601v5.786a1.668 1.668 0 0 0 1.165 1.6l3.857 1.183 1.277 1.807H3.996A3.996 3.996 0 0 1 0 15.487V8.513a3.996 3.996 0 0 1 3.996-3.996m16.008 0h-5.291l1.277 1.807 3.857 1.182c.715.227 1.17.889 1.165 1.601v5.786a1.668 1.668 0 0 1-1.165 1.6l-3.857 1.183-1.277 1.807h5.291A3.996 3.996 0 0 0 24 15.487V8.513a3.996 3.996 0 0 0-3.996-3.996m-4.007 8.345H8.002v-1.804h7.995Z" }) + ] + } + ); +}); + +export { SiAlibabacloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.cjs new file mode 100644 index 000000000..2f0afadf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6A00"; +const SiAlibabadotcom = React__namespace.forwardRef(function SiAlibabadotcom2({ title = "Alibaba.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.391 16.22c-.963.044-.865-.459-.302-1.234 1.32-1.768 3.82-4.236 3.906-5.982.151-2.283-2.143-3.026-4.501-3.004-1.645.022-3.344.492-4.501.906C5 8.315 2.489 10.576.909 13.076-.768 15.554-.216 17.923 3.322 18c2.716-.109 4.48-.862 6.32-1.802.01 0-5.086 1.453-6.958.383l-.008-.002c-.193-.11-.404-.264-.457-.683-.012-.885 1.46-1.802 2.283-2.097v-1.533a5.374 5.374 0 0 0 1.955.366 5.378 5.378 0 0 0 3.472-1.265c.037.13.056.278.044.447h.371c.048-.394-.172-.706-.172-.706-.333-.529-.915-.52-.915-.52s.315.137.529.466a4.953 4.953 0 0 1-4.665.932l1.21-1.2-.336-.874c2.435-.852 4.48-1.507 7.812-2.085l-.746-.624.389-.24c2.01.568 3.325.985 3.253 2.051a2.672 2.672 0 0 1-.202.611c-.584 1.158-2.326 3.09-3.029 3.898-.465.535-.92 1.06-1.245 1.562-.335.503-.54.971-.551 1.42.043 3.504 10.334-1.64 12.324-3.003-2.943 1.266-6.113 2.489-9.609 2.718Z" }) + ] + } + ); +}); + +exports.default = SiAlibabadotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.d.ts new file mode 100644 index 000000000..93f9e53e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6A00"; +declare const SiAlibabadotcom: IconType; +export { SiAlibabadotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.mjs new file mode 100644 index 000000000..fbb8d518d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlibabadotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6A00"; +const SiAlibabadotcom = React.forwardRef(function SiAlibabadotcom2({ title = "Alibaba.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.391 16.22c-.963.044-.865-.459-.302-1.234 1.32-1.768 3.82-4.236 3.906-5.982.151-2.283-2.143-3.026-4.501-3.004-1.645.022-3.344.492-4.501.906C5 8.315 2.489 10.576.909 13.076-.768 15.554-.216 17.923 3.322 18c2.716-.109 4.48-.862 6.32-1.802.01 0-5.086 1.453-6.958.383l-.008-.002c-.193-.11-.404-.264-.457-.683-.012-.885 1.46-1.802 2.283-2.097v-1.533a5.374 5.374 0 0 0 1.955.366 5.378 5.378 0 0 0 3.472-1.265c.037.13.056.278.044.447h.371c.048-.394-.172-.706-.172-.706-.333-.529-.915-.52-.915-.52s.315.137.529.466a4.953 4.953 0 0 1-4.665.932l1.21-1.2-.336-.874c2.435-.852 4.48-1.507 7.812-2.085l-.746-.624.389-.24c2.01.568 3.325.985 3.253 2.051a2.672 2.672 0 0 1-.202.611c-.584 1.158-2.326 3.09-3.029 3.898-.465.535-.92 1.06-1.245 1.562-.335.503-.54.971-.551 1.42.043 3.504 10.334-1.64 12.324-3.003-2.943 1.266-6.113 2.489-9.609 2.718Z" }) + ] + } + ); +}); + +export { SiAlibabadotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.cjs new file mode 100644 index 000000000..74e4bc9d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#541BAE"; +const SiAlienware = React__namespace.forwardRef(function SiAlienware2({ title = "Alienware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.382 9.4054c-.0649-.6486-.1297-1.3622-.2595-2.0108-.1297-.6487-.2594-1.2973-.5189-1.946-.1297-.3243-.2595-.6486-.3892-.908-.1297-.3244-.3243-.5838-.454-.9082-.1946-.2594-.3892-.5838-.5838-.8432-.1946-.2595-.454-.519-.7135-.7135-.454-.3892-.973-.7784-1.5568-1.1027-.5838-.3244-1.2324-.5838-1.881-.7135C13.3765.0649 12.7278 0 12.0143 0c-.7135 0-1.3621.0649-2.0108.2595C9.355.3892 8.7712.6486 8.1874.973c-.6487.3243-1.1676.7135-1.6865 1.1675-.2595.1946-.454.454-.7135.7136l-.5838.7783c-.1297.3244-.3243.5838-.454.9081l-.3892.973c-.1946.6487-.3892 1.2973-.519 1.946-.1297.6486-.1946 1.2973-.2594 2.0108-.0649.7135 0 1.2973 0 1.946 0 .6486.0648 1.2972.1946 2.0107l.1946.973c.0648.3243.1946.6486.3243.973.454 1.2324 1.1676 2.4 1.881 3.5027.3893.5838.7785 1.1027 1.1676 1.6216.3892.519.7784 1.1027 1.2325 1.5568.1946.2594.454.454.7135.7135.2594.1946.519.3892.8432.5837.2595.1946.5838.3244.9081.4541.1298.0649.3244.1297.4541.1297.1946 0 .3243.0649.519.0649.1945 0 .3242 0 .5188-.0649.1946 0 .3244-.0648.454-.1297.3244-.1297.6487-.2595.9082-.454.2595-.1946.5838-.3892.8432-.5838.2595-.1946.519-.454.7136-.7135.454-.519.8432-1.0379 1.2324-1.5568.3892-.519.7784-1.1027 1.1676-1.6216.7135-1.1027 1.427-2.2703 1.881-3.5027.1298-.3244.2595-.6487.3244-.973.0648-.3243.1946-.6486.1946-.973.1297-.6486.1945-1.2973.1945-2.0108 0-.6486 0-1.3621-.0648-2.0108zM4.8144 12.0649s3.6973.8432 6.0973 5.8378c-.0649 0-6.4216-.1297-6.0973-5.8378zm8.3676 5.8378c2.3351-4.9946 6.0973-5.8378 6.0973-5.8378.3243 5.708-6.0973 5.8378-6.0973 5.8378z" }) + ] + } + ); +}); + +exports.default = SiAlienware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.d.ts new file mode 100644 index 000000000..8bebbfa18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#541BAE"; +declare const SiAlienware: IconType; +export { SiAlienware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.mjs new file mode 100644 index 000000000..d60e34c31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlienware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#541BAE"; +const SiAlienware = React.forwardRef(function SiAlienware2({ title = "Alienware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.382 9.4054c-.0649-.6486-.1297-1.3622-.2595-2.0108-.1297-.6487-.2594-1.2973-.5189-1.946-.1297-.3243-.2595-.6486-.3892-.908-.1297-.3244-.3243-.5838-.454-.9082-.1946-.2594-.3892-.5838-.5838-.8432-.1946-.2595-.454-.519-.7135-.7135-.454-.3892-.973-.7784-1.5568-1.1027-.5838-.3244-1.2324-.5838-1.881-.7135C13.3765.0649 12.7278 0 12.0143 0c-.7135 0-1.3621.0649-2.0108.2595C9.355.3892 8.7712.6486 8.1874.973c-.6487.3243-1.1676.7135-1.6865 1.1675-.2595.1946-.454.454-.7135.7136l-.5838.7783c-.1297.3244-.3243.5838-.454.9081l-.3892.973c-.1946.6487-.3892 1.2973-.519 1.946-.1297.6486-.1946 1.2973-.2594 2.0108-.0649.7135 0 1.2973 0 1.946 0 .6486.0648 1.2972.1946 2.0107l.1946.973c.0648.3243.1946.6486.3243.973.454 1.2324 1.1676 2.4 1.881 3.5027.3893.5838.7785 1.1027 1.1676 1.6216.3892.519.7784 1.1027 1.2325 1.5568.1946.2594.454.454.7135.7135.2594.1946.519.3892.8432.5837.2595.1946.5838.3244.9081.4541.1298.0649.3244.1297.4541.1297.1946 0 .3243.0649.519.0649.1945 0 .3242 0 .5188-.0649.1946 0 .3244-.0648.454-.1297.3244-.1297.6487-.2595.9082-.454.2595-.1946.5838-.3892.8432-.5838.2595-.1946.519-.454.7136-.7135.454-.519.8432-1.0379 1.2324-1.5568.3892-.519.7784-1.1027 1.1676-1.6216.7135-1.1027 1.427-2.2703 1.881-3.5027.1298-.3244.2595-.6487.3244-.973.0648-.3243.1946-.6486.1946-.973.1297-.6486.1945-1.2973.1945-2.0108 0-.6486 0-1.3621-.0648-2.0108zM4.8144 12.0649s3.6973.8432 6.0973 5.8378c-.0649 0-6.4216-.1297-6.0973-5.8378zm8.3676 5.8378c2.3351-4.9946 6.0973-5.8378 6.0973-5.8378.3243 5.708-6.0973 5.8378-6.0973 5.8378z" }) + ] + } + ); +}); + +export { SiAlienware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.cjs new file mode 100644 index 000000000..7c240f2f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4747"; +const SiAliexpress = React__namespace.forwardRef(function SiAliexpress2({ title = "AliExpress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.166 9.096a.022.022 0 0 0-.022.021c0 .396-.32.717-.713.717a.021.021 0 0 0-.021.022c0 .012.01.021.021.021.394 0 .713.322.713.718 0 .012.01.021.022.021.011 0 .021-.01.021-.021A.717.717 0 0 1 5.9 9.88a.021.021 0 0 0 0-.043.716.716 0 0 1-.713-.718v-.002a.021.021 0 0 0-.006-.015.022.022 0 0 0-.015-.006zm-3.693.526L0 13.462h.48l.355-.922h1.782l.354.922h.481L1.98 9.622zm2.264.002v3.838h.491V9.624zm2.375 0v3.838h2.413v-.502H6.613v-1.19H8.19v-.477H6.613v-1.166h1.773v-.502zm-4.386.592l.698 1.82H1.028zm14.689.402a1.466 1.466 0 0 0-.966.366V10.7h-.491v2.763h.49c.002-.477 0-.955.002-1.433a.969.969 0 0 1 .965-.918zm4.18.007c-.053 0-.105.003-.158.01-.315.031-.606.175-.753.377a.689.689 0 0 0-.14.465c.007.2.066.357.233.496.184.147.42.2.657.259.311.067.426.095.546.186.08.07.133.127.136.27 0 .25-.221.372-.42.41a.89.89 0 0 1-.894-.344l-.371.288c.33.382.777.505 1.09.5.54-.01.891-.217 1.029-.534.066-.153.063-.309.063-.38a.677.677 0 0 0-.267-.545c-.228-.177-.583-.228-.636-.242-.437-.078-.658-.196-.697-.341-.043-.192.102-.35.297-.411a.76.76 0 0 1 .857.277l.367-.247a1.166 1.166 0 0 0-.939-.494zm2.387 0c-.052 0-.105.003-.157.01-.316.031-.607.175-.753.377a.689.689 0 0 0-.14.465c.006.2.065.357.233.496.183.147.42.2.657.259.31.067.426.095.545.186.081.07.134.127.136.27.001.25-.221.372-.42.41a.89.89 0 0 1-.894-.344l-.371.288c.33.382.777.505 1.09.5.541-.01.891-.217 1.03-.534.065-.153.062-.309.062-.38a.677.677 0 0 0-.267-.545c-.227-.177-.583-.228-.636-.242-.437-.078-.658-.196-.696-.341-.043-.192.101-.35.297-.411a.76.76 0 0 1 .857.277l.367-.247a1.167 1.167 0 0 0-.94-.494zm-9.84.002a1.461 1.461 0 0 0-1.42 1.117 1.305 1.305 0 0 0-.041.327v2.833h.491v-1.813c.17.18.487.42.96.454a1.447 1.447 0 0 0 1.208-.627 1.457 1.457 0 0 0-1.199-2.292zm4.804 0a1.448 1.448 0 0 0-1.288 2.08c.255.53.811.87 1.412.833a1.452 1.452 0 0 0 1.012-.51l-.363-.291a.968.968 0 0 1-1.106.273 1.01 1.01 0 0 1-.602-.69h2.239l.002-.427a1.295 1.295 0 0 0-1.306-1.268zm-9.2.08l1.062 1.377-1.062 1.378h.581l.779-1.01.778 1.01h.581l-1.062-1.378 1.062-1.378h-.581l-.778 1.01-.779-1.01zm-3.825.015v2.74h.49v-2.74zm8.233.37a.96.96 0 0 1 .95.993.963.963 0 0 1-.863.998.962.962 0 0 1-1.034-.739c-.074-.382 0-.746.307-1.019a.959.959 0 0 1 .64-.233zm4.79.015a.823.823 0 0 1 .819.755h-1.76a.964.964 0 0 1 .94-.755z" }) + ] + } + ); +}); + +exports.default = SiAliexpress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.d.ts new file mode 100644 index 000000000..6d2892785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4747"; +declare const SiAliexpress: IconType; +export { SiAliexpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.mjs new file mode 100644 index 000000000..60b17527b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAliexpress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4747"; +const SiAliexpress = React.forwardRef(function SiAliexpress2({ title = "AliExpress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.166 9.096a.022.022 0 0 0-.022.021c0 .396-.32.717-.713.717a.021.021 0 0 0-.021.022c0 .012.01.021.021.021.394 0 .713.322.713.718 0 .012.01.021.022.021.011 0 .021-.01.021-.021A.717.717 0 0 1 5.9 9.88a.021.021 0 0 0 0-.043.716.716 0 0 1-.713-.718v-.002a.021.021 0 0 0-.006-.015.022.022 0 0 0-.015-.006zm-3.693.526L0 13.462h.48l.355-.922h1.782l.354.922h.481L1.98 9.622zm2.264.002v3.838h.491V9.624zm2.375 0v3.838h2.413v-.502H6.613v-1.19H8.19v-.477H6.613v-1.166h1.773v-.502zm-4.386.592l.698 1.82H1.028zm14.689.402a1.466 1.466 0 0 0-.966.366V10.7h-.491v2.763h.49c.002-.477 0-.955.002-1.433a.969.969 0 0 1 .965-.918zm4.18.007c-.053 0-.105.003-.158.01-.315.031-.606.175-.753.377a.689.689 0 0 0-.14.465c.007.2.066.357.233.496.184.147.42.2.657.259.311.067.426.095.546.186.08.07.133.127.136.27 0 .25-.221.372-.42.41a.89.89 0 0 1-.894-.344l-.371.288c.33.382.777.505 1.09.5.54-.01.891-.217 1.029-.534.066-.153.063-.309.063-.38a.677.677 0 0 0-.267-.545c-.228-.177-.583-.228-.636-.242-.437-.078-.658-.196-.697-.341-.043-.192.102-.35.297-.411a.76.76 0 0 1 .857.277l.367-.247a1.166 1.166 0 0 0-.939-.494zm2.387 0c-.052 0-.105.003-.157.01-.316.031-.607.175-.753.377a.689.689 0 0 0-.14.465c.006.2.065.357.233.496.183.147.42.2.657.259.31.067.426.095.545.186.081.07.134.127.136.27.001.25-.221.372-.42.41a.89.89 0 0 1-.894-.344l-.371.288c.33.382.777.505 1.09.5.541-.01.891-.217 1.03-.534.065-.153.062-.309.062-.38a.677.677 0 0 0-.267-.545c-.227-.177-.583-.228-.636-.242-.437-.078-.658-.196-.696-.341-.043-.192.101-.35.297-.411a.76.76 0 0 1 .857.277l.367-.247a1.167 1.167 0 0 0-.94-.494zm-9.84.002a1.461 1.461 0 0 0-1.42 1.117 1.305 1.305 0 0 0-.041.327v2.833h.491v-1.813c.17.18.487.42.96.454a1.447 1.447 0 0 0 1.208-.627 1.457 1.457 0 0 0-1.199-2.292zm4.804 0a1.448 1.448 0 0 0-1.288 2.08c.255.53.811.87 1.412.833a1.452 1.452 0 0 0 1.012-.51l-.363-.291a.968.968 0 0 1-1.106.273 1.01 1.01 0 0 1-.602-.69h2.239l.002-.427a1.295 1.295 0 0 0-1.306-1.268zm-9.2.08l1.062 1.377-1.062 1.378h.581l.779-1.01.778 1.01h.581l-1.062-1.378 1.062-1.378h-.581l-.778 1.01-.779-1.01zm-3.825.015v2.74h.49v-2.74zm8.233.37a.96.96 0 0 1 .95.993.963.963 0 0 1-.863.998.962.962 0 0 1-1.034-.739c-.074-.382 0-.746.307-1.019a.959.959 0 0 1 .64-.233zm4.79.015a.823.823 0 0 1 .819.755h-1.76a.964.964 0 0 1 .94-.755z" }) + ] + } + ); +}); + +export { SiAliexpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.cjs new file mode 100644 index 000000000..18628715b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1677FF"; +const SiAlipay = React__namespace.forwardRef(function SiAlipay2({ title = "Alipay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.695 15.07c3.426 1.158 4.203 1.22 4.203 1.22V3.846c0-2.124-1.705-3.845-3.81-3.845H3.914C1.808.001.102 1.722.102 3.846v16.31c0 2.123 1.706 3.845 3.813 3.845h16.173c2.105 0 3.81-1.722 3.81-3.845v-.157s-6.19-2.602-9.315-4.119c-2.096 2.602-4.8 4.181-7.607 4.181-4.75 0-6.361-4.19-4.112-6.949.49-.602 1.324-1.175 2.617-1.497 2.025-.502 5.247.313 8.266 1.317a16.796 16.796 0 0 0 1.341-3.302H5.781v-.952h4.799V6.975H4.77v-.953h5.81V3.591s0-.409.411-.409h2.347v2.84h5.744v.951h-5.744v1.704h4.69a19.453 19.453 0 0 1-1.986 5.06c1.424.52 2.702 1.011 3.654 1.333m-13.81-2.032c-.596.06-1.71.325-2.321.869-1.83 1.608-.735 4.55 2.968 4.55 2.151 0 4.301-1.388 5.99-3.61-2.403-1.182-4.438-2.028-6.637-1.809" }) + ] + } + ); +}); + +exports.default = SiAlipay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.d.ts new file mode 100644 index 000000000..9a49e06f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1677FF"; +declare const SiAlipay: IconType; +export { SiAlipay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.mjs new file mode 100644 index 000000000..6a0ecc143 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlipay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1677FF"; +const SiAlipay = React.forwardRef(function SiAlipay2({ title = "Alipay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.695 15.07c3.426 1.158 4.203 1.22 4.203 1.22V3.846c0-2.124-1.705-3.845-3.81-3.845H3.914C1.808.001.102 1.722.102 3.846v16.31c0 2.123 1.706 3.845 3.813 3.845h16.173c2.105 0 3.81-1.722 3.81-3.845v-.157s-6.19-2.602-9.315-4.119c-2.096 2.602-4.8 4.181-7.607 4.181-4.75 0-6.361-4.19-4.112-6.949.49-.602 1.324-1.175 2.617-1.497 2.025-.502 5.247.313 8.266 1.317a16.796 16.796 0 0 0 1.341-3.302H5.781v-.952h4.799V6.975H4.77v-.953h5.81V3.591s0-.409.411-.409h2.347v2.84h5.744v.951h-5.744v1.704h4.69a19.453 19.453 0 0 1-1.986 5.06c1.424.52 2.702 1.011 3.654 1.333m-13.81-2.032c-.596.06-1.71.325-2.321.869-1.83 1.608-.735 4.55 2.968 4.55 2.151 0 4.301-1.388 5.99-3.61-2.403-1.182-4.438-2.028-6.637-1.809" }) + ] + } + ); +}); + +export { SiAlipay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.cjs new file mode 100644 index 000000000..f2b7772b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#70C6BE"; +const SiAlist = React__namespace.forwardRef(function SiAlist2({ title = "AList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.083 11.45c.38-.06.782.03 1.097.251.239.184.405.46.452.76.033.226.01.462-.073.677-.064.186-.156.36-.259.528L8.908 21.05c-.187.308-.358.628-.574.917a1.68 1.68 0 0 1-.58.466c-.478.255-1.102.1-1.466-.283a1.079 1.079 0 0 1-.306-.7c-.021-.269.038-.54.16-.78a6.9 6.9 0 0 1 .366-.677c.643-1.083 1.281-2.169 1.923-3.252.878-1.49 1.77-2.972 2.654-4.458.094-.17.21-.325.342-.466.178-.18.403-.326.656-.366zm.128-10.007c.253-.03.517.028.728.172.319.206.544.52.735.841.864 1.449 1.734 2.894 2.598 4.343 1.15 1.938 2.3 3.875 3.448 5.814.793 1.342 1.59 2.682 2.388 4.02.526.895 1.07 1.78 1.572 2.687.217.38.336.818.318 1.257-.012.339-.074.687-.252.98-.25.415-.668.708-1.122.86a2.25 2.25 0 0 1-.755.147h-8.451a2.133 2.133 0 0 1-.716-.121 1.467 1.467 0 0 1-.46-.286c-.223-.22-.367-.532-.328-.848.02-.221.074-.44.165-.642.089-.208.213-.398.32-.596.472-.84.966-1.668 1.479-2.484.164-.256.307-.533.535-.742.241-.221.545-.395.877-.417.267-.011.53.08.753.224.251.148.449.393.515.679.096.362-.007.743-.16 1.074-.173.375-.418.716-.55 1.11-.024.09-.057.203.01.282a.548.548 0 0 0 .25.111c.256.057.52.043.78.044h2.874c.19-.003.38.006.57-.005.136-.015.286-.038.392-.133.07-.063.08-.168.053-.253a2.572 2.572 0 0 0-.259-.53c-2.554-4.363-5.095-8.734-7.677-13.081-.084-.14-.156-.292-.277-.405a.242.242 0 0 0-.23-.066c-.069.025-.115.086-.161.14-.114.145-.216.3-.31.458-.444.723-.87 1.458-1.306 2.186l-7.53 12.675c-.156.286-.322.567-.503.84-.158.233-.35.451-.599.592-.292.169-.653.236-.98.139a1.441 1.441 0 0 1-.642-.38C.086 21.915-.01 21.6 0 21.3c.011-.316.117-.625.276-.896a1510.95 1510.95 0 0 1 4.598-7.753c.792-1.337 1.58-2.676 2.377-4.01.806-1.352 1.613-2.703 2.415-4.057.448-.763.899-1.524 1.369-2.273a2.12 2.12 0 0 1 .557-.614c.185-.126.392-.234.618-.254z" }) + ] + } + ); +}); + +exports.default = SiAlist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.d.ts new file mode 100644 index 000000000..95350683c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#70C6BE"; +declare const SiAlist: IconType; +export { SiAlist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.mjs new file mode 100644 index 000000000..cc8f7ac85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#70C6BE"; +const SiAlist = React.forwardRef(function SiAlist2({ title = "AList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.083 11.45c.38-.06.782.03 1.097.251.239.184.405.46.452.76.033.226.01.462-.073.677-.064.186-.156.36-.259.528L8.908 21.05c-.187.308-.358.628-.574.917a1.68 1.68 0 0 1-.58.466c-.478.255-1.102.1-1.466-.283a1.079 1.079 0 0 1-.306-.7c-.021-.269.038-.54.16-.78a6.9 6.9 0 0 1 .366-.677c.643-1.083 1.281-2.169 1.923-3.252.878-1.49 1.77-2.972 2.654-4.458.094-.17.21-.325.342-.466.178-.18.403-.326.656-.366zm.128-10.007c.253-.03.517.028.728.172.319.206.544.52.735.841.864 1.449 1.734 2.894 2.598 4.343 1.15 1.938 2.3 3.875 3.448 5.814.793 1.342 1.59 2.682 2.388 4.02.526.895 1.07 1.78 1.572 2.687.217.38.336.818.318 1.257-.012.339-.074.687-.252.98-.25.415-.668.708-1.122.86a2.25 2.25 0 0 1-.755.147h-8.451a2.133 2.133 0 0 1-.716-.121 1.467 1.467 0 0 1-.46-.286c-.223-.22-.367-.532-.328-.848.02-.221.074-.44.165-.642.089-.208.213-.398.32-.596.472-.84.966-1.668 1.479-2.484.164-.256.307-.533.535-.742.241-.221.545-.395.877-.417.267-.011.53.08.753.224.251.148.449.393.515.679.096.362-.007.743-.16 1.074-.173.375-.418.716-.55 1.11-.024.09-.057.203.01.282a.548.548 0 0 0 .25.111c.256.057.52.043.78.044h2.874c.19-.003.38.006.57-.005.136-.015.286-.038.392-.133.07-.063.08-.168.053-.253a2.572 2.572 0 0 0-.259-.53c-2.554-4.363-5.095-8.734-7.677-13.081-.084-.14-.156-.292-.277-.405a.242.242 0 0 0-.23-.066c-.069.025-.115.086-.161.14-.114.145-.216.3-.31.458-.444.723-.87 1.458-1.306 2.186l-7.53 12.675c-.156.286-.322.567-.503.84-.158.233-.35.451-.599.592-.292.169-.653.236-.98.139a1.441 1.441 0 0 1-.642-.38C.086 21.915-.01 21.6 0 21.3c.011-.316.117-.625.276-.896a1510.95 1510.95 0 0 1 4.598-7.753c.792-1.337 1.58-2.676 2.377-4.01.806-1.352 1.613-2.703 2.415-4.057.448-.763.899-1.524 1.369-2.273a2.12 2.12 0 0 1 .557-.614c.185-.126.392-.234.618-.254z" }) + ] + } + ); +}); + +export { SiAlist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.cjs new file mode 100644 index 000000000..7552b2ddb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5A00"; +const SiAllegro = React__namespace.forwardRef(function SiAllegro2({ title = "Allegro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.59 7.981a.124.124 0 0 0-.122.124v5.917a.124.124 0 0 0 .124.124h.72a.124.124 0 0 0 .124-.124h-.002V8.105a.124.124 0 0 0-.124-.124Zm1.691 0a.124.124 0 0 0-.124.124v5.917a.124.124 0 0 0 .124.124h.72a.124.124 0 0 0 .123-.124V8.105a.124.124 0 0 0-.122-.124Zm12.667 1.776a1.868 1.868 0 0 0-1.317.532 1.674 1.674 0 0 0-.531 1.254v2.48a.124.124 0 0 0 .123.123h.72a.124.124 0 0 0 .124-.124v-2.427c0-.752.5-1.113 1.314-.946a.13.13 0 0 0 .168-.142v-.495c0-.13-.014-.18-.1-.208a2.794 2.794 0 0 0-.501-.047Zm-4.626 0a2.193 2.193 0 0 0-1.732.849 2.355 2.355 0 0 0 0 2.678 2.13 2.131 0 0 0 1.732.849 2.21 2.21 0 0 0 1.234-.372v.53c0 .717-.627.848-1.03.873a4.73 4.73 0 0 1-.826-.045c-.11-.017-.188 0-.188.119v.636a.109.109 0 0 0 .114.103c.933.08 1.56.064 2.032-.206a1.537 1.537 0 0 0 .69-.875 2.928 2.928 0 0 0 .117-.874v-2.077h.002a2.245 2.245 0 0 0-.412-1.34 2.193 2.193 0 0 0-1.733-.848Zm-12.255.002a2.903 2.903 0 0 0-1.465.39.092.092 0 0 0-.045.08l.038.63a.112.112 0 0 0 .185.065c.627-.387 1.38-.459 1.764-.265a.67.67 0 0 1 .335.605v.092H1.832c-.45 0-1.83.167-1.83 1.434v.014a1.229 1.229 0 0 0 .45 1.017 1.768 1.768 0 0 0 1.118.32h2.118a.124.124 0 0 0 .124-.125v-2.51l-.002.004c0-.57-.127-1.004-.402-1.303-.274-.3-.827-.45-1.34-.45zm7.707 0c-1.28 0-1.84.858-2.02 1.585a2.44 2.44 0 0 0-.074.6 2.277 2.277 0 0 0 .412 1.338 2.198 2.198 0 0 0 1.733.85c.691.024 1.153-.093 1.506-.294a.196.196 0 0 0 .084-.212v-.558c0-.114-.069-.167-.167-.098a2.185 2.185 0 0 1-1.393.334 1.14 1.14 0 0 1-1.118-1.016h2.845a.117.117 0 0 0 .117-.116c.05-.778-.175-2.413-1.925-2.413Zm12.08 0a2.193 2.193 0 0 0-1.731.848 2.275 2.275 0 0 0-.412 1.34 2.275 2.275 0 0 0 .412 1.339 2.193 2.193 0 0 0 3.465 0 2.277 2.277 0 0 0 .412-1.34 2.277 2.277 0 0 0-.412-1.339 2.193 2.193 0 0 0-1.733-.848Zm-7.532.833c1.157 0 1.196 1.18 1.196 1.351 0 .171-.039 1.351-1.196 1.351-.517 0-.89-.378-1.047-.849a1.552 1.552 0 0 1 0-1.004c.157-.47.53-.849 1.047-.849zm-4.546.004a.86.86 0 0 1 .91.922H8.754a.968.968 0 0 1 1.024-.922zm12.078 0c.515-.012.89.378 1.048.848a1.553 1.553 0 0 1 0 1.003v.002c-.158.47-.531.837-1.048.848-.518.012-.89-.378-1.047-.848a1.552 1.552 0 0 1 0-1.005c.158-.47.53-.837 1.047-.848zM1.89 12.121h.99v1.246H1.63a.773.773 0 0 1-.444-.156.492.492 0 0 1-.21-.412c0-.226.153-.678.914-.678z" }) + ] + } + ); +}); + +exports.default = SiAllegro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.d.ts new file mode 100644 index 000000000..49f3cf6c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5A00"; +declare const SiAllegro: IconType; +export { SiAllegro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.mjs new file mode 100644 index 000000000..659e3c4b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAllegro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5A00"; +const SiAllegro = React.forwardRef(function SiAllegro2({ title = "Allegro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.59 7.981a.124.124 0 0 0-.122.124v5.917a.124.124 0 0 0 .124.124h.72a.124.124 0 0 0 .124-.124h-.002V8.105a.124.124 0 0 0-.124-.124Zm1.691 0a.124.124 0 0 0-.124.124v5.917a.124.124 0 0 0 .124.124h.72a.124.124 0 0 0 .123-.124V8.105a.124.124 0 0 0-.122-.124Zm12.667 1.776a1.868 1.868 0 0 0-1.317.532 1.674 1.674 0 0 0-.531 1.254v2.48a.124.124 0 0 0 .123.123h.72a.124.124 0 0 0 .124-.124v-2.427c0-.752.5-1.113 1.314-.946a.13.13 0 0 0 .168-.142v-.495c0-.13-.014-.18-.1-.208a2.794 2.794 0 0 0-.501-.047Zm-4.626 0a2.193 2.193 0 0 0-1.732.849 2.355 2.355 0 0 0 0 2.678 2.13 2.131 0 0 0 1.732.849 2.21 2.21 0 0 0 1.234-.372v.53c0 .717-.627.848-1.03.873a4.73 4.73 0 0 1-.826-.045c-.11-.017-.188 0-.188.119v.636a.109.109 0 0 0 .114.103c.933.08 1.56.064 2.032-.206a1.537 1.537 0 0 0 .69-.875 2.928 2.928 0 0 0 .117-.874v-2.077h.002a2.245 2.245 0 0 0-.412-1.34 2.193 2.193 0 0 0-1.733-.848Zm-12.255.002a2.903 2.903 0 0 0-1.465.39.092.092 0 0 0-.045.08l.038.63a.112.112 0 0 0 .185.065c.627-.387 1.38-.459 1.764-.265a.67.67 0 0 1 .335.605v.092H1.832c-.45 0-1.83.167-1.83 1.434v.014a1.229 1.229 0 0 0 .45 1.017 1.768 1.768 0 0 0 1.118.32h2.118a.124.124 0 0 0 .124-.125v-2.51l-.002.004c0-.57-.127-1.004-.402-1.303-.274-.3-.827-.45-1.34-.45zm7.707 0c-1.28 0-1.84.858-2.02 1.585a2.44 2.44 0 0 0-.074.6 2.277 2.277 0 0 0 .412 1.338 2.198 2.198 0 0 0 1.733.85c.691.024 1.153-.093 1.506-.294a.196.196 0 0 0 .084-.212v-.558c0-.114-.069-.167-.167-.098a2.185 2.185 0 0 1-1.393.334 1.14 1.14 0 0 1-1.118-1.016h2.845a.117.117 0 0 0 .117-.116c.05-.778-.175-2.413-1.925-2.413Zm12.08 0a2.193 2.193 0 0 0-1.731.848 2.275 2.275 0 0 0-.412 1.34 2.275 2.275 0 0 0 .412 1.339 2.193 2.193 0 0 0 3.465 0 2.277 2.277 0 0 0 .412-1.34 2.277 2.277 0 0 0-.412-1.339 2.193 2.193 0 0 0-1.733-.848Zm-7.532.833c1.157 0 1.196 1.18 1.196 1.351 0 .171-.039 1.351-1.196 1.351-.517 0-.89-.378-1.047-.849a1.552 1.552 0 0 1 0-1.004c.157-.47.53-.849 1.047-.849zm-4.546.004a.86.86 0 0 1 .91.922H8.754a.968.968 0 0 1 1.024-.922zm12.078 0c.515-.012.89.378 1.048.848a1.553 1.553 0 0 1 0 1.003v.002c-.158.47-.531.837-1.048.848-.518.012-.89-.378-1.047-.848a1.552 1.552 0 0 1 0-1.005c.158-.47.53-.837 1.047-.848zM1.89 12.121h.99v1.246H1.63a.773.773 0 0 1-.444-.156.492.492 0 0 1-.21-.412c0-.226.153-.678.914-.678z" }) + ] + } + ); +}); + +export { SiAllegro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.cjs new file mode 100644 index 000000000..479c3b85d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1578D3"; +const SiAlliedmodders = React__namespace.forwardRef(function SiAlliedmodders2({ title = "AlliedModders", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.588 1.077A.615.615 0 0 0 0 1.69v20.617c0 .34.275.615.615.615h8.309c.34 0 .615-.275.615-.615v-1.746l.647 1.94a.615.615 0 0 0 .584.421h6.77a.615.615 0 0 0 .585-.427l.035-.11c.04.307.3.537.61.537h4.615c.34 0 .615-.275.615-.615V8.153a.615.615 0 0 0-.447-.592l-4.307-1.23a.615.615 0 0 0-.744.37l-1.887 4.907v-5.55a.615.615 0 0 0-.443-.593l-3.385-.98a.615.615 0 0 0-.787.59v6.15l-2.809-7.48a.615.615 0 0 0-.408-.375l-8-2.272a.615.615 0 0 0-.195-.021zm.027.613l8 2.272 4 10.652v-9.54L16 6.058v8.865l3.076-8 4.309 1.231v14.154H18.77v-2.463h1.845v-7.076l-3.076 9.54h-6.77L6.155 8.46v11.078h2.77v2.77H.615zm.615.816V21.69h7.08v-1.537H6.154a.615.615 0 0 1-.615-.615V8.46c.002-.698.979-.855 1.2-.194l4.474 13.424h5.877l2.94-9.111c.215-.668 1.201-.513 1.2.19v7.075c0 .34-.275.615-.615.616h-1.23v1.23h3.385V8.616l-3.32-.947-2.876 7.474c-.245.635-1.188.46-1.19-.22V6.52l-2.154-.625v8.719c0 .685-.95.857-1.19.217L8.147 4.467zm5.54 9.747l2.224 6.67c-.734-.01-1.485 0-2.224 0zM20 16.683v2.546h-.822Z" }) + ] + } + ); +}); + +exports.default = SiAlliedmodders; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.d.ts new file mode 100644 index 000000000..81827f6e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1578D3"; +declare const SiAlliedmodders: IconType; +export { SiAlliedmodders as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.mjs new file mode 100644 index 000000000..b7f7d67e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlliedmodders.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1578D3"; +const SiAlliedmodders = React.forwardRef(function SiAlliedmodders2({ title = "AlliedModders", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.588 1.077A.615.615 0 0 0 0 1.69v20.617c0 .34.275.615.615.615h8.309c.34 0 .615-.275.615-.615v-1.746l.647 1.94a.615.615 0 0 0 .584.421h6.77a.615.615 0 0 0 .585-.427l.035-.11c.04.307.3.537.61.537h4.615c.34 0 .615-.275.615-.615V8.153a.615.615 0 0 0-.447-.592l-4.307-1.23a.615.615 0 0 0-.744.37l-1.887 4.907v-5.55a.615.615 0 0 0-.443-.593l-3.385-.98a.615.615 0 0 0-.787.59v6.15l-2.809-7.48a.615.615 0 0 0-.408-.375l-8-2.272a.615.615 0 0 0-.195-.021zm.027.613l8 2.272 4 10.652v-9.54L16 6.058v8.865l3.076-8 4.309 1.231v14.154H18.77v-2.463h1.845v-7.076l-3.076 9.54h-6.77L6.155 8.46v11.078h2.77v2.77H.615zm.615.816V21.69h7.08v-1.537H6.154a.615.615 0 0 1-.615-.615V8.46c.002-.698.979-.855 1.2-.194l4.474 13.424h5.877l2.94-9.111c.215-.668 1.201-.513 1.2.19v7.075c0 .34-.275.615-.615.616h-1.23v1.23h3.385V8.616l-3.32-.947-2.876 7.474c-.245.635-1.188.46-1.19-.22V6.52l-2.154-.625v8.719c0 .685-.95.857-1.19.217L8.147 4.467zm5.54 9.747l2.224 6.67c-.734-.01-1.485 0-2.224 0zM20 16.683v2.546h-.822Z" }) + ] + } + ); +}); + +export { SiAlliedmodders as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.cjs new file mode 100644 index 000000000..a920980ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#142800"; +const SiAlltrails = React__namespace.forwardRef(function SiAlltrails2({ title = "AllTrails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.441 8.451c-.653-1.247-1.158-1.841-1.813-1.841-.731 0-1.053.387-1.494 1.079-.357.464-.7 1.1-1.273 1.036-.604-.063-.954-1.491-1.41-2.686-.625-1.63-.985-3.322-2.024-3.322-.593 0-1.111.54-1.915 1.747l-8.301 12.73c-.954 1.593-1.753 2.704-.742 3.748 1.187 1.142 3.975-.857 5.883-2.063 1.908-1.205 3.859-2.38 6.615-2.316 3.71.085 5.512 3.808 7.76 4.516 1.526.487 2.926-.074 3.223-1.65.174-.866-.129-1.707-.547-2.604zm-.254 7.467c-.753.56-1.803-.339-2.481-.72-.72-.401-1.94-1.364-4.124-1.332-1.78.021-2.745.687-3.805 1.407-2.3 1.565-4.379 3.384-4.972 2.443-.382-.603.646-1.809 3.063-5.574 1.718-2.676 2.927-4.813 3.785-4.813.948 0 1 .93 1.145 1.883.272 1.518 1.014 2.308 1.978 2.433 1.08.146 2.014-.76 2.756-.751.693.014 1.15 1.018 1.722 2.065.725 1.301 1.482 2.546.933 2.959z" }) + ] + } + ); +}); + +exports.default = SiAlltrails; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.d.ts new file mode 100644 index 000000000..803781eeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#142800"; +declare const SiAlltrails: IconType; +export { SiAlltrails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.mjs new file mode 100644 index 000000000..0c65aa73e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlltrails.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#142800"; +const SiAlltrails = React.forwardRef(function SiAlltrails2({ title = "AllTrails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.441 8.451c-.653-1.247-1.158-1.841-1.813-1.841-.731 0-1.053.387-1.494 1.079-.357.464-.7 1.1-1.273 1.036-.604-.063-.954-1.491-1.41-2.686-.625-1.63-.985-3.322-2.024-3.322-.593 0-1.111.54-1.915 1.747l-8.301 12.73c-.954 1.593-1.753 2.704-.742 3.748 1.187 1.142 3.975-.857 5.883-2.063 1.908-1.205 3.859-2.38 6.615-2.316 3.71.085 5.512 3.808 7.76 4.516 1.526.487 2.926-.074 3.223-1.65.174-.866-.129-1.707-.547-2.604zm-.254 7.467c-.753.56-1.803-.339-2.481-.72-.72-.401-1.94-1.364-4.124-1.332-1.78.021-2.745.687-3.805 1.407-2.3 1.565-4.379 3.384-4.972 2.443-.382-.603.646-1.809 3.063-5.574 1.718-2.676 2.927-4.813 3.785-4.813.948 0 1 .93 1.145 1.883.272 1.518 1.014 2.308 1.978 2.433 1.08.146 2.014-.76 2.756-.751.693.014 1.15 1.018 1.722 2.065.725 1.301 1.482 2.546.933 2.959z" }) + ] + } + ); +}); + +export { SiAlltrails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.cjs new file mode 100644 index 000000000..0d48e3ea9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAlmalinux = React__namespace.forwardRef(function SiAlmalinux2({ title = "AlmaLinux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.994 15.133c.079 1.061-.668 1.927-1.69 2.005a1.8 1.8 0 0 1-1.928-1.651c-.078-1.062.63-1.849 1.691-1.967 1.023-.078 1.849.59 1.927 1.613zm-12.623 4.955c-.944 0-1.73.786-1.73 1.809 0 1.14.747 1.848 1.887 1.848.904-.04 1.691-.865 1.691-1.809 0-.983-.904-1.848-1.848-1.848zm1.061-9.675c-.039-.865-.078-1.73.08-2.556.156-.944.314-1.887.904-2.674.707-.983 1.809-.944 2.399.118.314.511.432 1.062.471 1.652 0 .354.158.432.472.393.944-.157 1.888-.157 2.792.197.118.039.236.118.394 0 .314-.276.393-1.652.196-2.006-.354-.63-.904-.55-1.455-.55-.629.039-1.18-.158-1.612-.67-.393-.471-.511-1.06-.59-1.65-.04-.276-.079-.512-.315-.709-.55-.55-1.809-.432-2.477.118-2.556 2.045-2.989 5.467-1.534 8.18.04.118.118.236.275.157zm7.984 3.658c.354-.511.865-.747 1.415-.983a.973.973 0 0 0 .59-.472c.354-.669-.078-1.81-.747-2.36-2.595-2.006-5.938-1.612-8.18.433-.118.078-.157.196-.078.314.786-.236 1.612-.472 2.477-.51.905-.08 1.848-.158 2.753.235 1.14.472 1.337 1.534.472 2.36-.393.393-.905.668-1.455.825-.315.08-.354.236-.236.551.354.865.59 1.77.472 2.753-.04.157-.079.275.078.393.354.236 1.691 0 1.967-.275.511-.472.314-1.023.196-1.534-.157-.63-.078-1.219.276-1.73zm-7.197-2.045c-.118-.079-.197-.118-.315 0 .472.708.905 1.455 1.259 2.241.314.866.668 1.73.55 2.714-.118 1.18-1.1 1.69-2.123 1.101-.511-.275-.905-.669-1.22-1.14-.196-.276-.393-.276-.629-.08-.747.63-1.533 1.102-2.516 1.26-.158 0-.315 0-.394.157-.118.393.472 1.612.826 1.809.59.354 1.062 0 1.534-.276.55-.314 1.101-.432 1.73-.236.59.197.983.63 1.337 1.102.158.196.315.353.63.432.747.197 1.77-.59 2.084-1.376 1.18-3.028-.157-6.135-2.753-7.708zm-2.556 2.438c.472-.669.826-1.416.983-2.202-.157-.04-.197.04-.315.078-.904.944-1.848 1.849-3.067 2.478-.472.236-.983.433-1.534.433-.865 0-1.376-.551-1.298-1.416a2.92 2.92 0 0 1 .787-1.849c.236-.275.236-.432-.04-.668-.786-.55-1.494-1.22-1.848-2.124-.078-.275-.275-.275-.51-.157a4.293 4.293 0 0 0-.434.236c-1.022.63-1.14 1.416-.275 2.28.63.63.944 1.338.708 2.203-.118.433-.354.747-.63 1.101a.95.95 0 0 0-.235.787c.079.747.826 1.494 1.73 1.573 2.517.236 4.562-.63 5.978-2.753zm-4.68-5.152c1.376 1.18 3.067 1.455 4.837 1.377.157 0 .315 0 .354-.118.04-.197-.157-.197-.275-.236-.826-.354-1.691-.63-2.438-1.14S6.848 8.25 6.534 7.266c-.236-.747.078-1.415.825-1.651.669-.236 1.337-.236 1.967 0 .393.157.55.078.629-.354.118-.747.354-1.455.826-2.085.55-.786.55-.865-.354-1.376-.04 0-.04-.04-.079-.04-.865-.471-1.534-.196-1.848.709-.472 1.376-1.377 1.887-2.832 1.612-.196-.04-.393-.079-.472-.079-.747.118-1.18.55-1.297 1.14-.158 1.81.786 3.107 2.084 4.17zm-2.32 3.658c-.079-.944-1.023-1.652-2.045-1.534-.905.079-1.691 1.022-1.613 1.966.08.983 1.023 1.77 1.967 1.652 1.14-.079 1.73-1.18 1.69-2.084zm15.18-8.298c.943-.079 1.73-.983 1.651-1.927-.078-.983-1.022-1.77-2.005-1.691-1.023.079-1.73.983-1.652 1.966s.983 1.73 2.006 1.652zm-12.27-.826c1.062-.157 1.77-1.023 1.652-2.045C8.107.897 7.163.149 6.18.267c-1.062.118-1.691.944-1.573 2.085.118.865 1.061 1.612 1.966 1.494z" }) + ] + } + ); +}); + +exports.default = SiAlmalinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.d.ts new file mode 100644 index 000000000..3f80c25dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAlmalinux: IconType; +export { SiAlmalinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.mjs new file mode 100644 index 000000000..e7180dffd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlmalinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAlmalinux = React.forwardRef(function SiAlmalinux2({ title = "AlmaLinux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.994 15.133c.079 1.061-.668 1.927-1.69 2.005a1.8 1.8 0 0 1-1.928-1.651c-.078-1.062.63-1.849 1.691-1.967 1.023-.078 1.849.59 1.927 1.613zm-12.623 4.955c-.944 0-1.73.786-1.73 1.809 0 1.14.747 1.848 1.887 1.848.904-.04 1.691-.865 1.691-1.809 0-.983-.904-1.848-1.848-1.848zm1.061-9.675c-.039-.865-.078-1.73.08-2.556.156-.944.314-1.887.904-2.674.707-.983 1.809-.944 2.399.118.314.511.432 1.062.471 1.652 0 .354.158.432.472.393.944-.157 1.888-.157 2.792.197.118.039.236.118.394 0 .314-.276.393-1.652.196-2.006-.354-.63-.904-.55-1.455-.55-.629.039-1.18-.158-1.612-.67-.393-.471-.511-1.06-.59-1.65-.04-.276-.079-.512-.315-.709-.55-.55-1.809-.432-2.477.118-2.556 2.045-2.989 5.467-1.534 8.18.04.118.118.236.275.157zm7.984 3.658c.354-.511.865-.747 1.415-.983a.973.973 0 0 0 .59-.472c.354-.669-.078-1.81-.747-2.36-2.595-2.006-5.938-1.612-8.18.433-.118.078-.157.196-.078.314.786-.236 1.612-.472 2.477-.51.905-.08 1.848-.158 2.753.235 1.14.472 1.337 1.534.472 2.36-.393.393-.905.668-1.455.825-.315.08-.354.236-.236.551.354.865.59 1.77.472 2.753-.04.157-.079.275.078.393.354.236 1.691 0 1.967-.275.511-.472.314-1.023.196-1.534-.157-.63-.078-1.219.276-1.73zm-7.197-2.045c-.118-.079-.197-.118-.315 0 .472.708.905 1.455 1.259 2.241.314.866.668 1.73.55 2.714-.118 1.18-1.1 1.69-2.123 1.101-.511-.275-.905-.669-1.22-1.14-.196-.276-.393-.276-.629-.08-.747.63-1.533 1.102-2.516 1.26-.158 0-.315 0-.394.157-.118.393.472 1.612.826 1.809.59.354 1.062 0 1.534-.276.55-.314 1.101-.432 1.73-.236.59.197.983.63 1.337 1.102.158.196.315.353.63.432.747.197 1.77-.59 2.084-1.376 1.18-3.028-.157-6.135-2.753-7.708zm-2.556 2.438c.472-.669.826-1.416.983-2.202-.157-.04-.197.04-.315.078-.904.944-1.848 1.849-3.067 2.478-.472.236-.983.433-1.534.433-.865 0-1.376-.551-1.298-1.416a2.92 2.92 0 0 1 .787-1.849c.236-.275.236-.432-.04-.668-.786-.55-1.494-1.22-1.848-2.124-.078-.275-.275-.275-.51-.157a4.293 4.293 0 0 0-.434.236c-1.022.63-1.14 1.416-.275 2.28.63.63.944 1.338.708 2.203-.118.433-.354.747-.63 1.101a.95.95 0 0 0-.235.787c.079.747.826 1.494 1.73 1.573 2.517.236 4.562-.63 5.978-2.753zm-4.68-5.152c1.376 1.18 3.067 1.455 4.837 1.377.157 0 .315 0 .354-.118.04-.197-.157-.197-.275-.236-.826-.354-1.691-.63-2.438-1.14S6.848 8.25 6.534 7.266c-.236-.747.078-1.415.825-1.651.669-.236 1.337-.236 1.967 0 .393.157.55.078.629-.354.118-.747.354-1.455.826-2.085.55-.786.55-.865-.354-1.376-.04 0-.04-.04-.079-.04-.865-.471-1.534-.196-1.848.709-.472 1.376-1.377 1.887-2.832 1.612-.196-.04-.393-.079-.472-.079-.747.118-1.18.55-1.297 1.14-.158 1.81.786 3.107 2.084 4.17zm-2.32 3.658c-.079-.944-1.023-1.652-2.045-1.534-.905.079-1.691 1.022-1.613 1.966.08.983 1.023 1.77 1.967 1.652 1.14-.079 1.73-1.18 1.69-2.084zm15.18-8.298c.943-.079 1.73-.983 1.651-1.927-.078-.983-1.022-1.77-2.005-1.691-1.023.079-1.73.983-1.652 1.966s.983 1.73 2.006 1.652zm-12.27-.826c1.062-.157 1.77-1.023 1.652-2.045C8.107.897 7.163.149 6.18.267c-1.062.118-1.691.944-1.573 2.085.118.865 1.061 1.612 1.966 1.494z" }) + ] + } + ); +}); + +export { SiAlmalinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.cjs new file mode 100644 index 000000000..9b030b8cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8BC0D0"; +const SiAlpinedotjs = React__namespace.forwardRef(function SiAlpinedotjs2({ title = "Alpine.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m24 12-5.72 5.746-5.724-5.741 5.724-5.75L24 12zM5.72 6.254 0 12l5.72 5.746h11.44L5.72 6.254z" }) + ] + } + ); +}); + +exports.default = SiAlpinedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.d.ts new file mode 100644 index 000000000..2e63aac40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8BC0D0"; +declare const SiAlpinedotjs: IconType; +export { SiAlpinedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.mjs new file mode 100644 index 000000000..8b235f8e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8BC0D0"; +const SiAlpinedotjs = React.forwardRef(function SiAlpinedotjs2({ title = "Alpine.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m24 12-5.72 5.746-5.724-5.741 5.724-5.75L24 12zM5.72 6.254 0 12l5.72 5.746h11.44L5.72 6.254z" }) + ] + } + ); +}); + +export { SiAlpinedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.cjs new file mode 100644 index 000000000..fab465868 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D597F"; +const SiAlpinelinux = React__namespace.forwardRef(function SiAlpinelinux2({ title = "Alpine Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.998 1.607L0 12l5.998 10.393h12.004L24 12 18.002 1.607H5.998zM9.965 7.12L12.66 9.9l1.598 1.595.002-.002 2.41 2.363c-.2.14-.386.252-.563.344a3.756 3.756 0 01-.496.217 2.702 2.702 0 01-.425.111c-.131.023-.25.034-.358.034-.13 0-.242-.014-.338-.034a1.317 1.317 0 01-.24-.072.95.95 0 01-.2-.113l-1.062-1.092-3.039-3.041-1.1 1.053-3.07 3.072a.974.974 0 01-.2.111 1.274 1.274 0 01-.237.073c-.096.02-.209.033-.338.033-.108 0-.227-.009-.358-.031a2.7 2.7 0 01-.425-.114 3.748 3.748 0 01-.496-.217 5.228 5.228 0 01-.563-.343l6.803-6.727zm4.72.785l4.579 4.598 1.382 1.353a5.24 5.24 0 01-.564.344 3.73 3.73 0 01-.494.217 2.697 2.697 0 01-.426.111c-.13.023-.251.034-.36.034-.129 0-.241-.014-.337-.034a1.285 1.285 0 01-.385-.146c-.033-.02-.05-.036-.053-.04l-1.232-1.218-2.111-2.111-.334.334L12.79 9.8l1.896-1.897zm-5.966 4.12v2.529a2.128 2.128 0 01-.356-.035 2.765 2.765 0 01-.422-.116 3.708 3.708 0 01-.488-.214 5.217 5.217 0 01-.555-.34l1.82-1.825Z" }) + ] + } + ); +}); + +exports.default = SiAlpinelinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.d.ts new file mode 100644 index 000000000..b4bc70c7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D597F"; +declare const SiAlpinelinux: IconType; +export { SiAlpinelinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.mjs new file mode 100644 index 000000000..c63e77a07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlpinelinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D597F"; +const SiAlpinelinux = React.forwardRef(function SiAlpinelinux2({ title = "Alpine Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.998 1.607L0 12l5.998 10.393h12.004L24 12 18.002 1.607H5.998zM9.965 7.12L12.66 9.9l1.598 1.595.002-.002 2.41 2.363c-.2.14-.386.252-.563.344a3.756 3.756 0 01-.496.217 2.702 2.702 0 01-.425.111c-.131.023-.25.034-.358.034-.13 0-.242-.014-.338-.034a1.317 1.317 0 01-.24-.072.95.95 0 01-.2-.113l-1.062-1.092-3.039-3.041-1.1 1.053-3.07 3.072a.974.974 0 01-.2.111 1.274 1.274 0 01-.237.073c-.096.02-.209.033-.338.033-.108 0-.227-.009-.358-.031a2.7 2.7 0 01-.425-.114 3.748 3.748 0 01-.496-.217 5.228 5.228 0 01-.563-.343l6.803-6.727zm4.72.785l4.579 4.598 1.382 1.353a5.24 5.24 0 01-.564.344 3.73 3.73 0 01-.494.217 2.697 2.697 0 01-.426.111c-.13.023-.251.034-.36.034-.129 0-.241-.014-.337-.034a1.285 1.285 0 01-.385-.146c-.033-.02-.05-.036-.053-.04l-1.232-1.218-2.111-2.111-.334.334L12.79 9.8l1.896-1.897zm-5.966 4.12v2.529a2.128 2.128 0 01-.356-.035 2.765 2.765 0 01-.422-.116 3.708 3.708 0 01-.488-.214 5.217 5.217 0 01-.555-.34l1.82-1.825Z" }) + ] + } + ); +}); + +export { SiAlpinelinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.cjs new file mode 100644 index 000000000..5be31574b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0289D5"; +const SiAlternativeto = React__namespace.forwardRef(function SiAlternativeto2({ title = "AlternativeTo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .416C18.398.416 23.584 5.602 23.584 12S18.398 23.584 12 23.584.416 18.397.416 12 5.602.416 12 .416M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.616 0 12 0m6.509 18.136-.056.012q.051.177.094.345l.202.812q.688-.639 1.249-1.394c-.305.036-.618.074-.923.117-.188.026-.372.066-.567.108zm.931-4.295c-3.783-.612-7.762.613-10.989 2.561-.757.457-1.59.91-2.129 1.632-.368.494-.561 1.081-.679 1.68q.464.381.975.704l.002-.099c.013-.41.064-.827.229-1.206.182-.42.478-.679.843-.938.756-.538 1.598-.967 2.412-1.392.055-.03.134-.029.202-.043.015.062.048.125.043.185-.02.283-.014.567-.007.85.022 1.016.088 2.032.157 3.047q.035.525.072 1.049.693.096 1.391.097a9.94 9.94 0 0 0 6.093-2.074l-.425-1.471q-.009-.032-.02-.063l-.064.017c-1.237.343-2.495.826-3.845 1.476l-.036.018c-.059.031-.14.074-.237.074h-.002c-.118 0-.278-.065-.34-.189-.064-.128-.017-.305.064-.398.066-.075.152-.121.22-.158l.038-.02a18.3 18.3 0 0 1 3.913-1.63l-.07-.179c-.101-.26-.205-.53-.32-.789-.148-.333-.317-.666-.48-.988l-.084-.167c-.054-.107-.109-.248-.055-.388a.34.34 0 0 1 .205-.192c.175-.064.436.065.511.214.415.816.77 1.546 1.087 2.23l.029.056.047-.008a9 9 0 0 1 2.342-.229 10 10 0 0 0 .886-1.91c-.545-.699-1.194-1.231-1.98-1.358zm2.428-2.827a8 8 0 0 0-.098-.649q-.046-.24-.096-.478c-.036-.171-.066-.344-.109-.514a9.2 9.2 0 0 0-1.158-2.73 9 9 0 0 0-.867-1.165 10 10 0 0 0-1.026-1.015 10.2 10.2 0 0 0-5.943-2.409 10 10 0 0 0-1.47.013 9.8 9.8 0 0 0-2.922.716 9 9 0 0 0-.709.33q-.164.085-.325.175a10.1 10.1 0 0 0-5.017 7.83c-.05.942.017 1.886.194 2.813h-.001s.191 1.124.298 1.334c.526 1.989 1.443 3.744 2.648 3.419a.167.167 0 0 0 .111-.208q-.003-.011-.008-.021a.95.95 0 0 1-.523-.377c-.666-1.117 2.723-3.509 7.351-5.269 4.252-1.619 8.091-2.144 8.965-1.285.173.141.24.376.168.588a3.03 3.03 0 0 1-.934 1.43.19.19 0 0 0 0 .269.18.18 0 0 0 .244.011 3.54 3.54 0 0 0 1.17-1.682c.028-.085.034-.187.045-.276a3.8 3.8 0 0 0 .011-.851zM6.253 14.668c-.566.402-1.553 1.122-1.967 1.925-.161.31-.312.069-.406-.107a10 10 0 0 1-.541-1.518l-.001-.003c-.066-.241-.282-1.04-.303-1.277l.001-.001a10.8 10.8 0 0 1-.187-2.638 9.35 9.35 0 0 1 4.635-7.227 10 10 0 0 1 .715-.362c.236-.107 1.191-.463.246.375a8.4 8.4 0 0 0-2.727 5.482c-.092 1.076.221 3.091.773 4.57.173.463.031.592-.238.782zM17.46 9.7a.44.44 0 0 1-.296.193c-1.068.149-2.12.398-3.14.745a.45.45 0 0 1-.356-.044.44.44 0 0 1-.203-.295l-.08-.369a.2.2 0 0 1 .114-.227 12.6 12.6 0 0 1 3.736-.863.19.19 0 0 1 .198.157l.084.354c.03.119.01.246-.057.349m2.032-1.876a.166.166 0 0 1-.183.106c-2.948-.438-7.069 1.073-7.069 1.073a17.7 17.7 0 0 0-4.049 1.912.493.493 0 0 1-.754-.319 8 8 0 0 1-.131-1.14 5.8 5.8 0 0 1 .575-3.012q.04-.078.087-.154a.1.1 0 0 1 .018-.037l.015-.025.035-.06.017-.027c1.429-2.34 4.636-3.273 7.197-2.511a7.43 7.43 0 0 1 3.335 2.123c.141.165 1.09 1.485.907 2.071m-1.533-1.599-.002.005a4 4 0 0 0-1.907-1.67 5.84 5.84 0 0 0-2.824-.43 3.8 3.8 0 0 0-1 .22.14.14 0 0 0-.097.148.135.135 0 0 0 .132.117 8.3 8.3 0 0 1 2.177.058c2.651.53 3.5 1.806 3.593 1.856.027.013.058-.013.045-.039a3 3 0 0 0-.117-.265" }) + ] + } + ); +}); + +exports.default = SiAlternativeto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.d.ts new file mode 100644 index 000000000..c133ae1d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0289D5"; +declare const SiAlternativeto: IconType; +export { SiAlternativeto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.mjs new file mode 100644 index 000000000..d157479f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlternativeto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0289D5"; +const SiAlternativeto = React.forwardRef(function SiAlternativeto2({ title = "AlternativeTo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .416C18.398.416 23.584 5.602 23.584 12S18.398 23.584 12 23.584.416 18.397.416 12 5.602.416 12 .416M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.616 0 12 0m6.509 18.136-.056.012q.051.177.094.345l.202.812q.688-.639 1.249-1.394c-.305.036-.618.074-.923.117-.188.026-.372.066-.567.108zm.931-4.295c-3.783-.612-7.762.613-10.989 2.561-.757.457-1.59.91-2.129 1.632-.368.494-.561 1.081-.679 1.68q.464.381.975.704l.002-.099c.013-.41.064-.827.229-1.206.182-.42.478-.679.843-.938.756-.538 1.598-.967 2.412-1.392.055-.03.134-.029.202-.043.015.062.048.125.043.185-.02.283-.014.567-.007.85.022 1.016.088 2.032.157 3.047q.035.525.072 1.049.693.096 1.391.097a9.94 9.94 0 0 0 6.093-2.074l-.425-1.471q-.009-.032-.02-.063l-.064.017c-1.237.343-2.495.826-3.845 1.476l-.036.018c-.059.031-.14.074-.237.074h-.002c-.118 0-.278-.065-.34-.189-.064-.128-.017-.305.064-.398.066-.075.152-.121.22-.158l.038-.02a18.3 18.3 0 0 1 3.913-1.63l-.07-.179c-.101-.26-.205-.53-.32-.789-.148-.333-.317-.666-.48-.988l-.084-.167c-.054-.107-.109-.248-.055-.388a.34.34 0 0 1 .205-.192c.175-.064.436.065.511.214.415.816.77 1.546 1.087 2.23l.029.056.047-.008a9 9 0 0 1 2.342-.229 10 10 0 0 0 .886-1.91c-.545-.699-1.194-1.231-1.98-1.358zm2.428-2.827a8 8 0 0 0-.098-.649q-.046-.24-.096-.478c-.036-.171-.066-.344-.109-.514a9.2 9.2 0 0 0-1.158-2.73 9 9 0 0 0-.867-1.165 10 10 0 0 0-1.026-1.015 10.2 10.2 0 0 0-5.943-2.409 10 10 0 0 0-1.47.013 9.8 9.8 0 0 0-2.922.716 9 9 0 0 0-.709.33q-.164.085-.325.175a10.1 10.1 0 0 0-5.017 7.83c-.05.942.017 1.886.194 2.813h-.001s.191 1.124.298 1.334c.526 1.989 1.443 3.744 2.648 3.419a.167.167 0 0 0 .111-.208q-.003-.011-.008-.021a.95.95 0 0 1-.523-.377c-.666-1.117 2.723-3.509 7.351-5.269 4.252-1.619 8.091-2.144 8.965-1.285.173.141.24.376.168.588a3.03 3.03 0 0 1-.934 1.43.19.19 0 0 0 0 .269.18.18 0 0 0 .244.011 3.54 3.54 0 0 0 1.17-1.682c.028-.085.034-.187.045-.276a3.8 3.8 0 0 0 .011-.851zM6.253 14.668c-.566.402-1.553 1.122-1.967 1.925-.161.31-.312.069-.406-.107a10 10 0 0 1-.541-1.518l-.001-.003c-.066-.241-.282-1.04-.303-1.277l.001-.001a10.8 10.8 0 0 1-.187-2.638 9.35 9.35 0 0 1 4.635-7.227 10 10 0 0 1 .715-.362c.236-.107 1.191-.463.246.375a8.4 8.4 0 0 0-2.727 5.482c-.092 1.076.221 3.091.773 4.57.173.463.031.592-.238.782zM17.46 9.7a.44.44 0 0 1-.296.193c-1.068.149-2.12.398-3.14.745a.45.45 0 0 1-.356-.044.44.44 0 0 1-.203-.295l-.08-.369a.2.2 0 0 1 .114-.227 12.6 12.6 0 0 1 3.736-.863.19.19 0 0 1 .198.157l.084.354c.03.119.01.246-.057.349m2.032-1.876a.166.166 0 0 1-.183.106c-2.948-.438-7.069 1.073-7.069 1.073a17.7 17.7 0 0 0-4.049 1.912.493.493 0 0 1-.754-.319 8 8 0 0 1-.131-1.14 5.8 5.8 0 0 1 .575-3.012q.04-.078.087-.154a.1.1 0 0 1 .018-.037l.015-.025.035-.06.017-.027c1.429-2.34 4.636-3.273 7.197-2.511a7.43 7.43 0 0 1 3.335 2.123c.141.165 1.09 1.485.907 2.071m-1.533-1.599-.002.005a4 4 0 0 0-1.907-1.67 5.84 5.84 0 0 0-2.824-.43 3.8 3.8 0 0 0-1 .22.14.14 0 0 0-.097.148.135.135 0 0 0 .132.117 8.3 8.3 0 0 1 2.177.058c2.651.53 3.5 1.806 3.593 1.856.027.013.058-.013.045-.039a3 3 0 0 0-.117-.265" }) + ] + } + ); +}); + +export { SiAlternativeto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.cjs new file mode 100644 index 000000000..b955a2c13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E9568E"; +const SiAlwaysdata = React__namespace.forwardRef(function SiAlwaysdata2({ title = "Alwaysdata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.0536 15.2543c1.2615 1.2625 1.2622 3.3114 0 4.5728-1.2617 1.2621-3.3068 1.2607-4.5687-.0018-.9599-.9598-1.1874-2.3713-.6878-3.5476L12.97 8.9472a2.903 2.903 0 0 1-.765-.0068l-4.6071 6.2009c.2567.7533.0937 1.6183-.5072 2.2176-.8397.8413-2.2063.8399-3.0474-.0017-.6534-.6533-.7916-1.622-.428-2.4164l-2.0027-2.9336c-.0585.0072-.116.0176-.1766.0176-.7923 0-1.4359-.642-1.4359-1.4356 0-.7928.6436-1.4359 1.436-1.4359.7936 0 1.4358.6431 1.4358 1.436 0 .2516-.0703.485-.1838.6904l2.0731 2.5544c.5163-.2096 1.069-.191 1.5494-.0132l3.8572-6.2123c-.686-1.107-.5521-2.5782.4096-3.5401 1.1215-1.1218 2.9412-1.1218 4.0608-.0007.8791.8786 1.0666 2.1881.5676 3.2539l5.24 7.0044c.9312-.0937 1.8947.215 2.608.9282z" }) + ] + } + ); +}); + +exports.default = SiAlwaysdata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.d.ts new file mode 100644 index 000000000..d95897363 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E9568E"; +declare const SiAlwaysdata: IconType; +export { SiAlwaysdata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.mjs new file mode 100644 index 000000000..498c78a26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAlwaysdata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E9568E"; +const SiAlwaysdata = React.forwardRef(function SiAlwaysdata2({ title = "Alwaysdata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.0536 15.2543c1.2615 1.2625 1.2622 3.3114 0 4.5728-1.2617 1.2621-3.3068 1.2607-4.5687-.0018-.9599-.9598-1.1874-2.3713-.6878-3.5476L12.97 8.9472a2.903 2.903 0 0 1-.765-.0068l-4.6071 6.2009c.2567.7533.0937 1.6183-.5072 2.2176-.8397.8413-2.2063.8399-3.0474-.0017-.6534-.6533-.7916-1.622-.428-2.4164l-2.0027-2.9336c-.0585.0072-.116.0176-.1766.0176-.7923 0-1.4359-.642-1.4359-1.4356 0-.7928.6436-1.4359 1.436-1.4359.7936 0 1.4358.6431 1.4358 1.436 0 .2516-.0703.485-.1838.6904l2.0731 2.5544c.5163-.2096 1.069-.191 1.5494-.0132l3.8572-6.2123c-.686-1.107-.5521-2.5782.4096-3.5401 1.1215-1.1218 2.9412-1.1218 4.0608-.0007.8791.8786 1.0666 2.1881.5676 3.2539l5.24 7.0044c.9312-.0937 1.8947.215 2.608.9282z" }) + ] + } + ); +}); + +export { SiAlwaysdata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.cjs new file mode 100644 index 000000000..668cdab69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiAmd = React__namespace.forwardRef(function SiAmd2({ title = "AMD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.324 9.137l1.559 1.56h2.556v2.557L24 14.814V9.137zM2 9.52l-2 4.96h1.309l.37-.982H3.9l.408.982h1.338L3.432 9.52zm4.209 0v4.955h1.238v-3.092l1.338 1.562h.188l1.338-1.556v3.091h1.238V9.52H10.47l-1.592 1.845L7.287 9.52zm6.283 0v4.96h2.057c1.979 0 2.88-1.046 2.88-2.472 0-1.36-.937-2.488-2.747-2.488zm1.237.91h.792c1.17 0 1.63.711 1.63 1.57 0 .728-.372 1.572-1.616 1.572h-.806zm-10.985.273l.791 1.932H2.008zm17.137.307l-1.604 1.603v2.25h2.246l1.604-1.607h-2.246z" }) + ] + } + ); +}); + +exports.default = SiAmd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.d.ts new file mode 100644 index 000000000..d9bf3d0a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiAmd: IconType; +export { SiAmd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.mjs new file mode 100644 index 000000000..710e17360 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiAmd = React.forwardRef(function SiAmd2({ title = "AMD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.324 9.137l1.559 1.56h2.556v2.557L24 14.814V9.137zM2 9.52l-2 4.96h1.309l.37-.982H3.9l.408.982h1.338L3.432 9.52zm4.209 0v4.955h1.238v-3.092l1.338 1.562h.188l1.338-1.556v3.091h1.238V9.52H10.47l-1.592 1.845L7.287 9.52zm6.283 0v4.96h2.057c1.979 0 2.88-1.046 2.88-2.472 0-1.36-.937-2.488-2.747-2.488zm1.237.91h.792c1.17 0 1.63.711 1.63 1.57 0 .728-.372 1.572-1.616 1.572h-.806zm-10.985.273l.791 1.932H2.008zm17.137.307l-1.604 1.603v2.25h2.246l1.604-1.607h-2.246z" }) + ] + } + ); +}); + +export { SiAmd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.cjs new file mode 100644 index 000000000..33003d2bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D8C3C"; +const SiAmeba = React__namespace.forwardRef(function SiAmeba2({ title = "Ameba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.575 9.815c0-.653.624-1.161 1.429-1.161s1.429.508 1.429 1.16c0 .653-.624 1.162-1.429 1.162s-1.429-.509-1.429-1.161zM16.107 0c-.303.008-.603.155-.875.467-.397.46-1.111 1.268-1.6 1.748-.641.624-1.056.765-1.626.765-.57 0-.978-.132-1.629-.765-.488-.47-1.212-1.287-1.6-1.748-.435-.49-.94-.566-1.42-.336-.398.192-.624.585-.652 1.2a55.63 55.63 0 0 0-.002 1.423c.004.73.007 1.534-.008 2.014-.027.96-.099 1.543-.496 2.378-.335.71-.876 1.91-.931 3.512a19.72 19.72 0 0 0 .08 2.516c.052.634.098 1.202.054 1.9-.072 1.113-.48 1.66-1.066 2.065l-.078.052c-.728.503-1.133.783-1.36 1.358-.163.423-.163 1.026.317 1.285.307.164.678.136 1.058-.027.075-.032.15-.069.225-.104.22-.106.436-.21.652-.195.226.01.407.143.434.527.036.403.208.567.488.567.226 0 .435-.163.598-.604l.084-.242c.123-.361.217-.64.44-.64.29.01.351.334.37.794.027.662-.207 1.172-.67 1.623-.532.518-.93 1.009-.785 1.65.1.453.57.75 1.31.788.76.029 1.99.038 2.84.02.797-.02 1.258-.385 1.348-.874.057-.29.002-.482-.052-.666-.048-.164-.096-.32-.057-.533.045-.25.263-.356.498-.356s.46.106.496.356c.034.208-.01.362-.058.523-.054.187-.112.381-.05.676.1.48.552.844 1.348.873.85.02 2.08.01 2.83-.03.742-.037 1.212-.335 1.311-.786.145-.643-.251-1.124-.785-1.65-.46-.453-.697-.96-.67-1.622.018-.46.09-.787.371-.797.225-.008.32.275.443.645.026.076.052.156.082.238.162.441.37.606.596.606.28 0 .452-.175.488-.569.036-.393.217-.517.434-.527.216-.014.432.09.652.195.075.036.152.072.227.104.389.163.749.19 1.057.027.498-.26.499-.863.336-1.285-.232-.587-.642-.867-1.409-1.39l-.03-.02c-.589-.403-.995-.952-1.067-2.065-.044-.699.002-1.266.054-1.9.056-.682.118-1.44.08-2.514-.054-1.593-.594-2.803-.93-3.513-.397-.825-.47-1.42-.497-2.38a71.47 71.47 0 0 1-.006-2.013c.003-.597.005-1.142-.004-1.414-.018-.605-.254-.997-.643-1.2a1.147 1.147 0 0 0-.545-.13Zm-7.6 7.08h.032c.335 0 .615.287.615.652 0 .355-.27.653-.615.653a.63.63 0 0 1-.613-.653c0-.343.254-.634.582-.652zm6.929 0h.033c.334 0 .613.287.613.652 0 .355-.27.653-.613.653a.63.63 0 0 1-.615-.653c0-.343.253-.634.582-.652zm-3.442 1.246c1.447 0 2.488.346 3.483 1.248.687.624 1.14 1.862.597 2.783-.262.47-.769.846-1.375.903-.805.077-1.302-.23-1.619-.604-.307-.356-.633-.691-1.094-.691-.46 0-.786.334-1.093.69-.317.374-.824.682-1.62.605a1.803 1.803 0 0 1-1.375-.903c-.515-.93-.071-2.169.616-2.783 1.004-.902 2.033-1.248 3.48-1.248Zm.01 6.278c1.574 0 2.867 1.363 2.867 3.042 0 1.68-1.284 3.043-2.867 3.043-1.582 0-2.867-1.363-2.867-3.043 0-1.68 1.285-3.042 2.867-3.042z" }) + ] + } + ); +}); + +exports.default = SiAmeba; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.d.ts new file mode 100644 index 000000000..7e0aa9a98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D8C3C"; +declare const SiAmeba: IconType; +export { SiAmeba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.mjs new file mode 100644 index 000000000..ebd422c64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmeba.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D8C3C"; +const SiAmeba = React.forwardRef(function SiAmeba2({ title = "Ameba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.575 9.815c0-.653.624-1.161 1.429-1.161s1.429.508 1.429 1.16c0 .653-.624 1.162-1.429 1.162s-1.429-.509-1.429-1.161zM16.107 0c-.303.008-.603.155-.875.467-.397.46-1.111 1.268-1.6 1.748-.641.624-1.056.765-1.626.765-.57 0-.978-.132-1.629-.765-.488-.47-1.212-1.287-1.6-1.748-.435-.49-.94-.566-1.42-.336-.398.192-.624.585-.652 1.2a55.63 55.63 0 0 0-.002 1.423c.004.73.007 1.534-.008 2.014-.027.96-.099 1.543-.496 2.378-.335.71-.876 1.91-.931 3.512a19.72 19.72 0 0 0 .08 2.516c.052.634.098 1.202.054 1.9-.072 1.113-.48 1.66-1.066 2.065l-.078.052c-.728.503-1.133.783-1.36 1.358-.163.423-.163 1.026.317 1.285.307.164.678.136 1.058-.027.075-.032.15-.069.225-.104.22-.106.436-.21.652-.195.226.01.407.143.434.527.036.403.208.567.488.567.226 0 .435-.163.598-.604l.084-.242c.123-.361.217-.64.44-.64.29.01.351.334.37.794.027.662-.207 1.172-.67 1.623-.532.518-.93 1.009-.785 1.65.1.453.57.75 1.31.788.76.029 1.99.038 2.84.02.797-.02 1.258-.385 1.348-.874.057-.29.002-.482-.052-.666-.048-.164-.096-.32-.057-.533.045-.25.263-.356.498-.356s.46.106.496.356c.034.208-.01.362-.058.523-.054.187-.112.381-.05.676.1.48.552.844 1.348.873.85.02 2.08.01 2.83-.03.742-.037 1.212-.335 1.311-.786.145-.643-.251-1.124-.785-1.65-.46-.453-.697-.96-.67-1.622.018-.46.09-.787.371-.797.225-.008.32.275.443.645.026.076.052.156.082.238.162.441.37.606.596.606.28 0 .452-.175.488-.569.036-.393.217-.517.434-.527.216-.014.432.09.652.195.075.036.152.072.227.104.389.163.749.19 1.057.027.498-.26.499-.863.336-1.285-.232-.587-.642-.867-1.409-1.39l-.03-.02c-.589-.403-.995-.952-1.067-2.065-.044-.699.002-1.266.054-1.9.056-.682.118-1.44.08-2.514-.054-1.593-.594-2.803-.93-3.513-.397-.825-.47-1.42-.497-2.38a71.47 71.47 0 0 1-.006-2.013c.003-.597.005-1.142-.004-1.414-.018-.605-.254-.997-.643-1.2a1.147 1.147 0 0 0-.545-.13Zm-7.6 7.08h.032c.335 0 .615.287.615.652 0 .355-.27.653-.615.653a.63.63 0 0 1-.613-.653c0-.343.254-.634.582-.652zm6.929 0h.033c.334 0 .613.287.613.652 0 .355-.27.653-.613.653a.63.63 0 0 1-.615-.653c0-.343.253-.634.582-.652zm-3.442 1.246c1.447 0 2.488.346 3.483 1.248.687.624 1.14 1.862.597 2.783-.262.47-.769.846-1.375.903-.805.077-1.302-.23-1.619-.604-.307-.356-.633-.691-1.094-.691-.46 0-.786.334-1.093.69-.317.374-.824.682-1.62.605a1.803 1.803 0 0 1-1.375-.903c-.515-.93-.071-2.169.616-2.783 1.004-.902 2.033-1.248 3.48-1.248Zm.01 6.278c1.574 0 2.867 1.363 2.867 3.042 0 1.68-1.284 3.043-2.867 3.043-1.582 0-2.867-1.363-2.867-3.043 0-1.68 1.285-3.042 2.867-3.042z" }) + ] + } + ); +}); + +export { SiAmeba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.cjs new file mode 100644 index 000000000..18fb473ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0078D2"; +const SiAmericanairlines = React__namespace.forwardRef(function SiAmericanairlines2({ title = "American Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .244h3.264c1.377 0 1.942.563 2.499 1.116.637.58 2.57 3.196 6.657 8.303H7.997c-1.809 0-2.38-.308-3.08-1.375zm10.424 17.072l-2.427-4.013c-.292-.455-.372-.854-.372-1.318 0-.51.217-.79 1.053-1.233.973-.466 2.933-.67 4.954-.67 3.283 0 4.07 1.055 4.405 2.192 0 0-.464-.185-1.554-.185-3.459 0-6.223 1.68-6.223 4.221 0 .534.164 1.006.164 1.006zm4.936-3.417c-2.547.089-5.032 1.869-4.936 3.416l2.7 4.486c.836 1.344 2.215 1.955 3.932 1.955H24l-8.13-9.852a5.55 5.55 0 0 0-.51-.005Z" }) + ] + } + ); +}); + +exports.default = SiAmericanairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.d.ts new file mode 100644 index 000000000..59d8cdf72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0078D2"; +declare const SiAmericanairlines: IconType; +export { SiAmericanairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.mjs new file mode 100644 index 000000000..29a343d14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0078D2"; +const SiAmericanairlines = React.forwardRef(function SiAmericanairlines2({ title = "American Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .244h3.264c1.377 0 1.942.563 2.499 1.116.637.58 2.57 3.196 6.657 8.303H7.997c-1.809 0-2.38-.308-3.08-1.375zm10.424 17.072l-2.427-4.013c-.292-.455-.372-.854-.372-1.318 0-.51.217-.79 1.053-1.233.973-.466 2.933-.67 4.954-.67 3.283 0 4.07 1.055 4.405 2.192 0 0-.464-.185-1.554-.185-3.459 0-6.223 1.68-6.223 4.221 0 .534.164 1.006.164 1.006zm4.936-3.417c-2.547.089-5.032 1.869-4.936 3.416l2.7 4.486c.836 1.344 2.215 1.955 3.932 1.955H24l-8.13-9.852a5.55 5.55 0 0 0-.51-.005Z" }) + ] + } + ); +}); + +export { SiAmericanairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.cjs new file mode 100644 index 000000000..a9d9e9f10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E77BC"; +const SiAmericanexpress = React__namespace.forwardRef(function SiAmericanexpress2({ title = "American Express", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.015 14.378c0-.32-.135-.496-.344-.622-.21-.12-.464-.135-.81-.135h-1.543v2.82h.675v-1.027h.72c.24 0 .39.024.478.125.12.13.104.38.104.55v.35h.66v-.555c-.002-.25-.017-.376-.108-.516-.06-.08-.18-.18-.33-.234l.02-.008c.18-.072.48-.297.48-.747zm-.87.407l-.028-.002c-.09.053-.195.058-.33.058h-.81v-.63h.824c.12 0 .24 0 .33.05.098.048.156.147.15.255 0 .12-.045.215-.134.27zM20.297 15.837H19v.6h1.304c.676 0 1.05-.278 1.05-.884 0-.28-.066-.448-.187-.582-.153-.133-.392-.193-.73-.207l-.376-.015c-.104 0-.18 0-.255-.03-.09-.03-.15-.105-.15-.21 0-.09.017-.166.09-.21.083-.046.177-.066.272-.06h1.23v-.602h-1.35c-.704 0-.958.437-.958.84 0 .9.776.855 1.407.87.104 0 .18.015.225.06.046.03.082.106.082.18 0 .077-.035.15-.08.18-.06.053-.15.07-.277.07zM0 0v10.096L.81 8.22h1.75l.225.464V8.22h2.043l.45 1.02.437-1.013h6.502c.295 0 .56.057.756.236v-.23h1.787v.23c.307-.17.686-.23 1.12-.23h2.606l.24.466v-.466h1.918l.254.465v-.466h1.858v3.948H20.87l-.36-.6v.585h-2.353l-.256-.63h-.583l-.27.614h-1.213c-.48 0-.84-.104-1.08-.24v.24h-2.89v-.884c0-.12-.03-.12-.105-.135h-.105v1.036H6.067v-.48l-.21.48H4.69l-.202-.48v.465H2.235l-.256-.624H1.4l-.256.624H0V24h23.786v-7.108c-.27.135-.613.18-.973.18H21.09v-.255c-.21.165-.57.255-.914.255H14.71v-.9c0-.12-.018-.12-.12-.12h-.075v1.022h-1.8v-1.066c-.298.136-.643.15-.928.136h-.214v.915h-2.18l-.54-.617-.57.6H4.742v-3.93h3.61l.518.602.554-.6h2.412c.28 0 .74.03.942.225v-.24h2.177c.202 0 .644.045.903.225v-.24h3.265v.24c.163-.164.508-.24.803-.24h1.89v.24c.194-.15.464-.24.84-.24h1.176V0H0zM21.156 14.955c.004.005.006.012.01.016.01.01.024.01.032.02l-.042-.035zM23.828 13.082h.065v.555h-.065zM23.865 15.03v-.005c-.03-.025-.046-.048-.075-.07-.15-.153-.39-.215-.764-.225l-.36-.012c-.12 0-.194-.007-.27-.03-.09-.03-.15-.105-.15-.21 0-.09.03-.16.09-.204.076-.045.15-.05.27-.05h1.223v-.588h-1.283c-.69 0-.96.437-.96.84 0 .9.78.855 1.41.87.104 0 .18.015.224.06.046.03.076.106.076.18 0 .07-.034.138-.09.18-.045.056-.136.07-.27.07h-1.288v.605h1.287c.42 0 .734-.118.9-.36h.03c.09-.134.135-.3.135-.523 0-.24-.045-.39-.135-.526zM18.597 14.208v-.583h-2.235V16.458h2.235v-.585h-1.57v-.57h1.533v-.584h-1.532v-.51M13.51 8.787h.685V11.6h-.684zM13.126 9.543l-.007.006c0-.314-.13-.5-.34-.624-.217-.125-.47-.135-.81-.135H10.43v2.82h.674v-1.034h.72c.24 0 .39.03.487.12.122.136.107.378.107.548v.354h.677v-.553c0-.25-.016-.375-.11-.516-.09-.107-.202-.19-.33-.237.172-.07.472-.3.472-.75zm-.855.396h-.015c-.09.054-.195.056-.33.056H11.1v-.623h.825c.12 0 .24.004.33.05.09.04.15.128.15.25s-.047.22-.134.266zM15.92 9.373h.632v-.6h-.644c-.464 0-.804.105-1.02.33-.286.3-.362.69-.362 1.11 0 .512.123.833.36 1.074.232.238.645.31.97.31h.78l.255-.627h1.39l.262.627h1.36v-2.11l1.272 2.11h.95l.002.002V8.786h-.684v1.963l-1.18-1.96h-1.02V11.4L18.11 8.744h-1.004l-.943 2.22h-.3c-.177 0-.362-.03-.468-.134-.125-.15-.186-.36-.186-.662 0-.285.08-.51.194-.63.133-.135.272-.165.516-.165zm1.668-.108l.464 1.118v.002h-.93l.466-1.12zM2.38 10.97l.254.628H4V9.393l.972 2.205h.584l.973-2.202.015 2.202h.69v-2.81H6.118l-.807 1.904-.876-1.905H3.343v2.663L2.205 8.787h-.997L.01 11.597h.72l.26-.626h1.39zm-.688-1.705l.46 1.118-.003.002h-.915l.457-1.12zM11.856 13.62H9.714l-.85.923-.825-.922H5.346v2.82H8l.855-.932.824.93h1.302v-.94h.838c.6 0 1.17-.164 1.17-.945l-.006-.003c0-.78-.598-.93-1.128-.93zM7.67 15.853l-.014-.002H6.02v-.557h1.47v-.574H6.02v-.51H7.7l.733.82-.764.824zm2.642.33l-1.03-1.147 1.03-1.108v2.253zm1.553-1.258h-.885v-.717h.885c.24 0 .42.098.42.344 0 .243-.15.372-.42.372zM9.967 9.373v-.586H7.73V11.6h2.237v-.58H8.4v-.564h1.527V9.88H8.4v-.507" }) + ] + } + ); +}); + +exports.default = SiAmericanexpress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.d.ts new file mode 100644 index 000000000..a15fae71c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E77BC"; +declare const SiAmericanexpress: IconType; +export { SiAmericanexpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.mjs new file mode 100644 index 000000000..a8d5c47b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmericanexpress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E77BC"; +const SiAmericanexpress = React.forwardRef(function SiAmericanexpress2({ title = "American Express", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.015 14.378c0-.32-.135-.496-.344-.622-.21-.12-.464-.135-.81-.135h-1.543v2.82h.675v-1.027h.72c.24 0 .39.024.478.125.12.13.104.38.104.55v.35h.66v-.555c-.002-.25-.017-.376-.108-.516-.06-.08-.18-.18-.33-.234l.02-.008c.18-.072.48-.297.48-.747zm-.87.407l-.028-.002c-.09.053-.195.058-.33.058h-.81v-.63h.824c.12 0 .24 0 .33.05.098.048.156.147.15.255 0 .12-.045.215-.134.27zM20.297 15.837H19v.6h1.304c.676 0 1.05-.278 1.05-.884 0-.28-.066-.448-.187-.582-.153-.133-.392-.193-.73-.207l-.376-.015c-.104 0-.18 0-.255-.03-.09-.03-.15-.105-.15-.21 0-.09.017-.166.09-.21.083-.046.177-.066.272-.06h1.23v-.602h-1.35c-.704 0-.958.437-.958.84 0 .9.776.855 1.407.87.104 0 .18.015.225.06.046.03.082.106.082.18 0 .077-.035.15-.08.18-.06.053-.15.07-.277.07zM0 0v10.096L.81 8.22h1.75l.225.464V8.22h2.043l.45 1.02.437-1.013h6.502c.295 0 .56.057.756.236v-.23h1.787v.23c.307-.17.686-.23 1.12-.23h2.606l.24.466v-.466h1.918l.254.465v-.466h1.858v3.948H20.87l-.36-.6v.585h-2.353l-.256-.63h-.583l-.27.614h-1.213c-.48 0-.84-.104-1.08-.24v.24h-2.89v-.884c0-.12-.03-.12-.105-.135h-.105v1.036H6.067v-.48l-.21.48H4.69l-.202-.48v.465H2.235l-.256-.624H1.4l-.256.624H0V24h23.786v-7.108c-.27.135-.613.18-.973.18H21.09v-.255c-.21.165-.57.255-.914.255H14.71v-.9c0-.12-.018-.12-.12-.12h-.075v1.022h-1.8v-1.066c-.298.136-.643.15-.928.136h-.214v.915h-2.18l-.54-.617-.57.6H4.742v-3.93h3.61l.518.602.554-.6h2.412c.28 0 .74.03.942.225v-.24h2.177c.202 0 .644.045.903.225v-.24h3.265v.24c.163-.164.508-.24.803-.24h1.89v.24c.194-.15.464-.24.84-.24h1.176V0H0zM21.156 14.955c.004.005.006.012.01.016.01.01.024.01.032.02l-.042-.035zM23.828 13.082h.065v.555h-.065zM23.865 15.03v-.005c-.03-.025-.046-.048-.075-.07-.15-.153-.39-.215-.764-.225l-.36-.012c-.12 0-.194-.007-.27-.03-.09-.03-.15-.105-.15-.21 0-.09.03-.16.09-.204.076-.045.15-.05.27-.05h1.223v-.588h-1.283c-.69 0-.96.437-.96.84 0 .9.78.855 1.41.87.104 0 .18.015.224.06.046.03.076.106.076.18 0 .07-.034.138-.09.18-.045.056-.136.07-.27.07h-1.288v.605h1.287c.42 0 .734-.118.9-.36h.03c.09-.134.135-.3.135-.523 0-.24-.045-.39-.135-.526zM18.597 14.208v-.583h-2.235V16.458h2.235v-.585h-1.57v-.57h1.533v-.584h-1.532v-.51M13.51 8.787h.685V11.6h-.684zM13.126 9.543l-.007.006c0-.314-.13-.5-.34-.624-.217-.125-.47-.135-.81-.135H10.43v2.82h.674v-1.034h.72c.24 0 .39.03.487.12.122.136.107.378.107.548v.354h.677v-.553c0-.25-.016-.375-.11-.516-.09-.107-.202-.19-.33-.237.172-.07.472-.3.472-.75zm-.855.396h-.015c-.09.054-.195.056-.33.056H11.1v-.623h.825c.12 0 .24.004.33.05.09.04.15.128.15.25s-.047.22-.134.266zM15.92 9.373h.632v-.6h-.644c-.464 0-.804.105-1.02.33-.286.3-.362.69-.362 1.11 0 .512.123.833.36 1.074.232.238.645.31.97.31h.78l.255-.627h1.39l.262.627h1.36v-2.11l1.272 2.11h.95l.002.002V8.786h-.684v1.963l-1.18-1.96h-1.02V11.4L18.11 8.744h-1.004l-.943 2.22h-.3c-.177 0-.362-.03-.468-.134-.125-.15-.186-.36-.186-.662 0-.285.08-.51.194-.63.133-.135.272-.165.516-.165zm1.668-.108l.464 1.118v.002h-.93l.466-1.12zM2.38 10.97l.254.628H4V9.393l.972 2.205h.584l.973-2.202.015 2.202h.69v-2.81H6.118l-.807 1.904-.876-1.905H3.343v2.663L2.205 8.787h-.997L.01 11.597h.72l.26-.626h1.39zm-.688-1.705l.46 1.118-.003.002h-.915l.457-1.12zM11.856 13.62H9.714l-.85.923-.825-.922H5.346v2.82H8l.855-.932.824.93h1.302v-.94h.838c.6 0 1.17-.164 1.17-.945l-.006-.003c0-.78-.598-.93-1.128-.93zM7.67 15.853l-.014-.002H6.02v-.557h1.47v-.574H6.02v-.51H7.7l.733.82-.764.824zm2.642.33l-1.03-1.147 1.03-1.108v2.253zm1.553-1.258h-.885v-.717h.885c.24 0 .42.098.42.344 0 .243-.15.372-.42.372zM9.967 9.373v-.586H7.73V11.6h2.237v-.58H8.4v-.564h1.527V9.88H8.4v-.507" }) + ] + } + ); +}); + +export { SiAmericanexpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.cjs new file mode 100644 index 000000000..960af5002 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAmg = React__namespace.forwardRef(function SiAmg2({ title = "AMG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9998 11.8942a.1216.1216 0 0 0-.127-.1271H21.607a.1216.1216 0 0 0-.1271.127v.1906a.1419.1419 0 0 0 .127.1482h1.419c.0847 0 .0847.0424.0847.1482v.0202c0 .1058 0 .1271-.0847.1271h-2.901a.1216.1216 0 0 1-.1271-.127v-.8248a.1216.1216 0 0 1 .127-.1271h3.7267a.1216.1216 0 0 0 .127-.1271v-.3177a.1216.1216 0 0 0-.127-.127h-4.616a.1216.1216 0 0 0-.127.127v2.054a.1216.1216 0 0 0 .127.127h4.616a.1216.1216 0 0 0 .127-.127v-1.1645m-7.3686.5505a.316.316 0 0 1-.1906.0847h-.5929a.316.316 0 0 1-.1907-.0847l-1.1221-.72c-.0635-.0423-.1271-.0212-.1271.0635v1.207a.1216.1216 0 0 1-.1271.1271h-.593a.1419.1419 0 0 1-.148-.127v-2.054c0-.0847.0633-.127.148-.127h.6353a.5067.5067 0 0 1 .1906.0633l1.5247.9953a.1587.1587 0 0 0 .1905 0l1.5245-.9953a.2961.2961 0 0 1 .1907-.0634h.6353a.1216.1216 0 0 1 .1269.1271v2.054a.1216.1216 0 0 1-.1269.127h-.5929a.1419.1419 0 0 1-.1484-.127v-1.2071q0-.1271-.127-.0635zm-6.6066-1.0165c-.0424 0-.0634.0203-.1058.0636l-.36.4662c-.0213.0424 0 .0635.0203.0635h2.6045c.0847 0 .0847-.0424.0847-.1058v-.318c0-.1059 0-.1482-.0847-.1482h-2.159zm-1.5245 1.7152h-.7631a.0713.0713 0 0 1-.0635-.1058L9.2825 10.92a.2145.2145 0 0 1 .1483-.0847h3.515a.1638.1638 0 0 1 .1482.1694v2.0116a.1216.1216 0 0 1-.127.1271h-.593a.1216.1216 0 0 1-.127-.127V12.72c0-.0847 0-.106-.0848-.106H9.0717a.1419.1419 0 0 0-.1271.0847v.0203l-.2329.2963a.3677.3677 0 0 1-.2329.1271zm-1.5458 0a.3217.3217 0 0 0 .2117-.127l1.5881-2.054c.0636-.0847.0203-.1482-.0424-.1482h-.3176a.2145.2145 0 0 0-.1482.0847l-1.6305 2.1174a.0716.0716 0 0 0 .0636.106h.2753zm-1.101 0a.322.322 0 0 0 .2116-.127l1.5881-2.054c.0634-.0847.0213-.1482-.0424-.1482h-.4447a.2145.2145 0 0 0-.1482.0847L5.366 13.0163a.0716.0716 0 0 0 .0636.106h.4024zm-1.8 0a.0713.0713 0 0 1-.0635-.1058L5.599 10.92a.214.214 0 0 1 .1482-.0847h.6563c.0847 0 .106.0636.0424.1484l-1.5883 2.054a.2888.2888 0 0 1-.2116.127h-.6142zm-1.5034 0a.0713.0713 0 0 1-.0634-.1058L4.0957 10.92a.2145.2145 0 0 1 .1482-.0847h.8681c.0847 0 .1058.0636.0424.1484l-1.5881 2.054a.2888.2888 0 0 1-.2118.127h-.8258zm-2.4563 0a.0713.0713 0 0 1-.0634-.1058L1.6394 10.92a.2145.2145 0 0 1 .1482-.0847h1.9268c.0847 0 .106.0636.0424.1484l-1.5881 2.054a.2888.2888 0 0 1-.2116.127H.072Z" }) + ] + } + ); +}); + +exports.default = SiAmg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.d.ts new file mode 100644 index 000000000..bdd98473c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAmg: IconType; +export { SiAmg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.mjs new file mode 100644 index 000000000..c7e190169 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAmg = React.forwardRef(function SiAmg2({ title = "AMG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9998 11.8942a.1216.1216 0 0 0-.127-.1271H21.607a.1216.1216 0 0 0-.1271.127v.1906a.1419.1419 0 0 0 .127.1482h1.419c.0847 0 .0847.0424.0847.1482v.0202c0 .1058 0 .1271-.0847.1271h-2.901a.1216.1216 0 0 1-.1271-.127v-.8248a.1216.1216 0 0 1 .127-.1271h3.7267a.1216.1216 0 0 0 .127-.1271v-.3177a.1216.1216 0 0 0-.127-.127h-4.616a.1216.1216 0 0 0-.127.127v2.054a.1216.1216 0 0 0 .127.127h4.616a.1216.1216 0 0 0 .127-.127v-1.1645m-7.3686.5505a.316.316 0 0 1-.1906.0847h-.5929a.316.316 0 0 1-.1907-.0847l-1.1221-.72c-.0635-.0423-.1271-.0212-.1271.0635v1.207a.1216.1216 0 0 1-.1271.1271h-.593a.1419.1419 0 0 1-.148-.127v-2.054c0-.0847.0633-.127.148-.127h.6353a.5067.5067 0 0 1 .1906.0633l1.5247.9953a.1587.1587 0 0 0 .1905 0l1.5245-.9953a.2961.2961 0 0 1 .1907-.0634h.6353a.1216.1216 0 0 1 .1269.1271v2.054a.1216.1216 0 0 1-.1269.127h-.5929a.1419.1419 0 0 1-.1484-.127v-1.2071q0-.1271-.127-.0635zm-6.6066-1.0165c-.0424 0-.0634.0203-.1058.0636l-.36.4662c-.0213.0424 0 .0635.0203.0635h2.6045c.0847 0 .0847-.0424.0847-.1058v-.318c0-.1059 0-.1482-.0847-.1482h-2.159zm-1.5245 1.7152h-.7631a.0713.0713 0 0 1-.0635-.1058L9.2825 10.92a.2145.2145 0 0 1 .1483-.0847h3.515a.1638.1638 0 0 1 .1482.1694v2.0116a.1216.1216 0 0 1-.127.1271h-.593a.1216.1216 0 0 1-.127-.127V12.72c0-.0847 0-.106-.0848-.106H9.0717a.1419.1419 0 0 0-.1271.0847v.0203l-.2329.2963a.3677.3677 0 0 1-.2329.1271zm-1.5458 0a.3217.3217 0 0 0 .2117-.127l1.5881-2.054c.0636-.0847.0203-.1482-.0424-.1482h-.3176a.2145.2145 0 0 0-.1482.0847l-1.6305 2.1174a.0716.0716 0 0 0 .0636.106h.2753zm-1.101 0a.322.322 0 0 0 .2116-.127l1.5881-2.054c.0634-.0847.0213-.1482-.0424-.1482h-.4447a.2145.2145 0 0 0-.1482.0847L5.366 13.0163a.0716.0716 0 0 0 .0636.106h.4024zm-1.8 0a.0713.0713 0 0 1-.0635-.1058L5.599 10.92a.214.214 0 0 1 .1482-.0847h.6563c.0847 0 .106.0636.0424.1484l-1.5883 2.054a.2888.2888 0 0 1-.2116.127h-.6142zm-1.5034 0a.0713.0713 0 0 1-.0634-.1058L4.0957 10.92a.2145.2145 0 0 1 .1482-.0847h.8681c.0847 0 .1058.0636.0424.1484l-1.5881 2.054a.2888.2888 0 0 1-.2118.127h-.8258zm-2.4563 0a.0713.0713 0 0 1-.0634-.1058L1.6394 10.92a.2145.2145 0 0 1 .1482-.0847h1.9268c.0847 0 .106.0636.0424.1484l-1.5881 2.054a.2888.2888 0 0 1-.2116.127H.072Z" }) + ] + } + ); +}); + +export { SiAmg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.cjs new file mode 100644 index 000000000..9228b0fa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005AF0"; +const SiAmp = React__namespace.forwardRef(function SiAmp2({ title = "AMP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.628 0 12 5.373 12 12s-5.372 12-12 12C5.373 24 0 18.627 0 12S5.373 0 12 0zm-.92 19.278l5.034-8.377a.444.444 0 00.097-.268.455.455 0 00-.455-.455l-2.851.004.924-5.468-.927-.003-5.018 8.367s-.1.183-.1.291c0 .251.204.455.455.455l2.831-.004-.901 5.458z" }) + ] + } + ); +}); + +exports.default = SiAmp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.d.ts new file mode 100644 index 000000000..8a6116654 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005AF0"; +declare const SiAmp: IconType; +export { SiAmp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.mjs new file mode 100644 index 000000000..7a46d80d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005AF0"; +const SiAmp = React.forwardRef(function SiAmp2({ title = "AMP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.628 0 12 5.373 12 12s-5.372 12-12 12C5.373 24 0 18.627 0 12S5.373 0 12 0zm-.92 19.278l5.034-8.377a.444.444 0 00.097-.268.455.455 0 00-.455-.455l-2.851.004.924-5.468-.927-.003-5.018 8.367s-.1.183-.1.291c0 .251.204.455.455.455l2.831-.004-.901 5.458z" }) + ] + } + ); +}); + +export { SiAmp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.cjs new file mode 100644 index 000000000..fa2dca78d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1D24"; +const SiAmul = React__namespace.forwardRef(function SiAmul2({ title = "Amul", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.794 11.772c-.104-.443-.546-1.492-.786-1.796-.04-.031-.062-.046-.078-.068l-.718 1.748s.375.091.796.148c.271.03.558.03.786-.032zm17-1.593v3.536c0 .7-.282.59-.385.613l1.209 1.018L24 14.236c-.014-.086-.063-.171-.124-.195-.475.294-.443-.302-.443-.302V9.527c0-.528-.933-1.097-1.285-.986l-1.304 1.297c.015.054.06.162.203.186.61-.56.747 0 .747.155zm-5.576 2.184v1.5c0 .528-.2.428-.348.488.412.218.972.668 1.454 1.011l1.446-.916 1.073.94 1.266-1.236s-.016-.18-.17-.171c-.444.436-.575-.288-.575-.288v-1.833c0-.801-1.028-.98-1.244-.972l-1.035 1.01a.4.4 0 00.194.165c.484-.382.567.17.567.17v1.5c-.014.62-1.14.847-1.14.008v-2.09c-.095-.576-.912-.895-1.028-.794l-1.181.972c.055.093.06.204.207.187.523-.367.514.349.514.349zm-7.805-.287v1.632c0 .45-.334.442-.44.465l1.274 1.104 1.227-1.08a.487.487 0 00-.115-.178c-.203.107-.357.046-.357-.22v-1.654c.108-.512.838-.397.838-.047v1.696c-.018.34-.156.488-.31.535l1.156.956 1.243-1.043c-.02-.085-.02-.16-.129-.2-.124.008-.357.25-.357-.288v-1.617c.256-.653.885-.31.91.055v1.516c-.009.357-.074.583-.366.683l1.204.94 1.276-1.15c0-.077-.11-.157-.15-.178-.419.364-.396-.095-.402-.165v-2.09c-.017-.365-.7-1.125-1.61-.783l-.91.668c-.484-.824-1.19-.847-1.378-.8-.308.044-.962.838-1.038.713-.288-.713-1.053-.728-1.209-.706l-1.07.924c.054.117.141.132.2.155.289-.17.485-.132.513.157zm-5.571.491l-.334.906.79.506c.112.071.253.024.476-.18l.157.157c-.357.41-.73.8-1.096 1.212-.482-.442-1.05-.877-1.594-.877-.628.013-1.213.62-.606 1.717.017.022-.094.138-.156.09-.465-.395-.652-1.482-.286-2.095.256-.397.72-.785 1.513-.693l.313-.85c-.287-.113-.598 0-.988.308.132-.67.551-1.136 1.412-1.252l.882-2.114c-.467-.187-.903.04-1.12.436-.132-.017-.225-.063-.25-.147l.903-1.68c.44-.153.817-.153 1.151-.048 1.376.436 2.067 2.76 3.098 5.325.095.248.221.271.516-.046l.21.186-1.86 1.85-.856-2.558c0 .022-.417.125-1.107.063a5.65 5.65 0 01-1.168-.216z" }) + ] + } + ); +}); + +exports.default = SiAmul; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.d.ts new file mode 100644 index 000000000..f993e8d7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1D24"; +declare const SiAmul: IconType; +export { SiAmul as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.mjs new file mode 100644 index 000000000..0f3bfa17b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAmul.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1D24"; +const SiAmul = React.forwardRef(function SiAmul2({ title = "Amul", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.794 11.772c-.104-.443-.546-1.492-.786-1.796-.04-.031-.062-.046-.078-.068l-.718 1.748s.375.091.796.148c.271.03.558.03.786-.032zm17-1.593v3.536c0 .7-.282.59-.385.613l1.209 1.018L24 14.236c-.014-.086-.063-.171-.124-.195-.475.294-.443-.302-.443-.302V9.527c0-.528-.933-1.097-1.285-.986l-1.304 1.297c.015.054.06.162.203.186.61-.56.747 0 .747.155zm-5.576 2.184v1.5c0 .528-.2.428-.348.488.412.218.972.668 1.454 1.011l1.446-.916 1.073.94 1.266-1.236s-.016-.18-.17-.171c-.444.436-.575-.288-.575-.288v-1.833c0-.801-1.028-.98-1.244-.972l-1.035 1.01a.4.4 0 00.194.165c.484-.382.567.17.567.17v1.5c-.014.62-1.14.847-1.14.008v-2.09c-.095-.576-.912-.895-1.028-.794l-1.181.972c.055.093.06.204.207.187.523-.367.514.349.514.349zm-7.805-.287v1.632c0 .45-.334.442-.44.465l1.274 1.104 1.227-1.08a.487.487 0 00-.115-.178c-.203.107-.357.046-.357-.22v-1.654c.108-.512.838-.397.838-.047v1.696c-.018.34-.156.488-.31.535l1.156.956 1.243-1.043c-.02-.085-.02-.16-.129-.2-.124.008-.357.25-.357-.288v-1.617c.256-.653.885-.31.91.055v1.516c-.009.357-.074.583-.366.683l1.204.94 1.276-1.15c0-.077-.11-.157-.15-.178-.419.364-.396-.095-.402-.165v-2.09c-.017-.365-.7-1.125-1.61-.783l-.91.668c-.484-.824-1.19-.847-1.378-.8-.308.044-.962.838-1.038.713-.288-.713-1.053-.728-1.209-.706l-1.07.924c.054.117.141.132.2.155.289-.17.485-.132.513.157zm-5.571.491l-.334.906.79.506c.112.071.253.024.476-.18l.157.157c-.357.41-.73.8-1.096 1.212-.482-.442-1.05-.877-1.594-.877-.628.013-1.213.62-.606 1.717.017.022-.094.138-.156.09-.465-.395-.652-1.482-.286-2.095.256-.397.72-.785 1.513-.693l.313-.85c-.287-.113-.598 0-.988.308.132-.67.551-1.136 1.412-1.252l.882-2.114c-.467-.187-.903.04-1.12.436-.132-.017-.225-.063-.25-.147l.903-1.68c.44-.153.817-.153 1.151-.048 1.376.436 2.067 2.76 3.098 5.325.095.248.221.271.516-.046l.21.186-1.86 1.85-.856-2.558c0 .022-.417.125-1.107.063a5.65 5.65 0 01-1.168-.216z" }) + ] + } + ); +}); + +export { SiAmul as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAna.cjs new file mode 100644 index 000000000..2a4a3eaf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13448F"; +const SiAna = React__namespace.forwardRef(function SiAna2({ title = "ANA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.11 8.975l-3.454 6.05h3.432l3.455-6.05zm3.933 0l-3.455 6.05h.959L24 8.975zm-10.01.781H14.8l.403 5.27h-1.31l-.025-.58a.206.206 0 0 0-.202-.227h-1.867l.429-.757h1.21c.151 0 .328.026.328-.202l-.202-2.37c0-.15-.126-.226-.227-.075L11.193 15h-.882zm-9.983 0h1.74l.353 5.27h-1.31l-.026-.58a.226.226 0 0 0-.227-.227H1.563l.429-.757h1.386c.151 0 .328.026.328-.202l-.151-2.37c0-.15-.126-.226-.227-.075L.882 15H0zm3.278 0h1.79l1.16 4.084c.05.126.15.101.176 0l.756-4.084h.782l-.933 5.27H8.244l-1.135-4.034c-.025-.101-.151-.127-.176 0l-.706 4.033h-.832Z" }) + ] + } + ); +}); + +exports.default = SiAna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAna.d.ts new file mode 100644 index 000000000..dc6e6d863 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13448F"; +declare const SiAna: IconType; +export { SiAna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAna.mjs new file mode 100644 index 000000000..7db972b06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13448F"; +const SiAna = React.forwardRef(function SiAna2({ title = "ANA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.11 8.975l-3.454 6.05h3.432l3.455-6.05zm3.933 0l-3.455 6.05h.959L24 8.975zm-10.01.781H14.8l.403 5.27h-1.31l-.025-.58a.206.206 0 0 0-.202-.227h-1.867l.429-.757h1.21c.151 0 .328.026.328-.202l-.202-2.37c0-.15-.126-.226-.227-.075L11.193 15h-.882zm-9.983 0h1.74l.353 5.27h-1.31l-.026-.58a.226.226 0 0 0-.227-.227H1.563l.429-.757h1.386c.151 0 .328.026.328-.202l-.151-2.37c0-.15-.126-.226-.227-.075L.882 15H0zm3.278 0h1.79l1.16 4.084c.05.126.15.101.176 0l.756-4.084h.782l-.933 5.27H8.244l-1.135-4.034c-.025-.101-.151-.127-.176 0l-.706 4.033h-.832Z" }) + ] + } + ); +}); + +export { SiAna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.cjs new file mode 100644 index 000000000..e3355277c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#44A833"; +const SiAnaconda = React__namespace.forwardRef(function SiAnaconda2({ title = "Anaconda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.045.033a12.181 12.182 0 00-1.361.078 17.512 17.513 0 011.813 1.433l.48.438-.465.45a15.047 15.048 0 00-1.126 1.205l-.178.215a8.527 8.527 0 01.86-.05 8.154 8.155 0 11-4.286 15.149 15.764 15.765 0 01-1.841.106h-.86a21.847 21.848 0 00.264 2.866 11.966 11.967 0 106.7-21.89zM8.17.678a12.181 12.182 0 00-2.624 1.275 15.506 15.507 0 011.813.43A18.551 18.552 0 018.17.678zM9.423.75a16.237 16.238 0 00-.995 1.998 16.15 16.152 0 011.605.66 6.98 6.98 0 01.43-.509c.234-.286.472-.559.716-.817A15.047 15.048 0 009.423.75zM4.68 2.949a14.969 14.97 0 000 2.336c.587-.065 1.196-.1 1.812-.107a16.617 16.617 0 01.48-1.748 16.48 16.481 0 00-2.292-.481zM3.62 3.5A11.938 11.938 0 001.762 5.88a17.004 17.004 0 011.877-.444A17.39 17.391 0 013.62 3.5zm4.406.287c-.143.437-.265.888-.38 1.347a8.255 8.255 0 011.67-.803c-.423-.2-.845-.38-1.29-.544zM6.3 6.216a14.051 14.052 0 00-1.555.108c.064.523.157 1.038.272 1.554a8.39 8.391 0 011.283-1.662zm-2.55.137a15.313 15.313 0 00-2.602.716h-.078v.079a17.104 17.105 0 001.267 2.544l.043.071.072-.049a16.309 16.31 0 011.734-1.083l.057-.035V8.54a16.867 16.868 0 01-.408-2.094v-.092zM.644 8.095l-.063.2A11.844 11.845 0 000 11.655v.209l.143-.152a17.706 17.707 0 011.584-1.447l.057-.043-.043-.064a16.18 16.18 0 01-1.025-1.87zm3.77 1.253l-.18.1c-.465.273-.93.573-1.375.889l-.065.05.05.064c.309.437.645.867.996 1.276l.137.165v-.208a8.176 8.176 0 01.364-2.15zM2.2 10.853l-.072.05a16.574 16.574 0 00-1.813 1.734l-.058.058.066.057a15.449 15.45 0 001.991 1.483l.072.05.043-.08a16.738 16.74 0 011.053-1.64v-.05l-.043-.05a16.99 16.99 0 01-1.19-1.54zm1.855 2.071l-.121.172a15.363 15.363 0 00-.917 1.433l-.043.072.071.043a16.61 16.61 0 001.562.766l.193.086-.086-.193a8.04 8.04 0 01-.66-2.172zm-3.976.48v.2a11.758 11.759 0 00.946 3.326l.078.186.072-.194a16.215 16.216 0 01.845-2l.057-.063-.064-.043a17.197 17.198 0 01-1.776-1.284zm2.543 1.805l-.035.08a15.764 15.765 0 00-.983 2.479v.08h.086a16.15 16.152 0 002.688.5l.072.007v-.086a17.562 17.563 0 01.164-2.056v-.065H4.55a16.266 16.266 0 01-1.849-.896zm2.544 1.169v.114a17.254 17.255 0 00-.151 1.828v.078h.931c.287 0 .624.014.946 0h.209l-.166-.129a8.011 8.011 0 01-1.64-1.834zm-3.29 2.1l.115.172a11.988 11.988 0 002.502 2.737l.157.129v-.201a22.578 22.58 0 01-.2-2.336v-.071h-.072a16.23 16.23 0 01-2.3-.387z" }) + ] + } + ); +}); + +exports.default = SiAnaconda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.d.ts new file mode 100644 index 000000000..61c01dcbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#44A833"; +declare const SiAnaconda: IconType; +export { SiAnaconda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.mjs new file mode 100644 index 000000000..cbd1d47e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnaconda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#44A833"; +const SiAnaconda = React.forwardRef(function SiAnaconda2({ title = "Anaconda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.045.033a12.181 12.182 0 00-1.361.078 17.512 17.513 0 011.813 1.433l.48.438-.465.45a15.047 15.048 0 00-1.126 1.205l-.178.215a8.527 8.527 0 01.86-.05 8.154 8.155 0 11-4.286 15.149 15.764 15.765 0 01-1.841.106h-.86a21.847 21.848 0 00.264 2.866 11.966 11.967 0 106.7-21.89zM8.17.678a12.181 12.182 0 00-2.624 1.275 15.506 15.507 0 011.813.43A18.551 18.552 0 018.17.678zM9.423.75a16.237 16.238 0 00-.995 1.998 16.15 16.152 0 011.605.66 6.98 6.98 0 01.43-.509c.234-.286.472-.559.716-.817A15.047 15.048 0 009.423.75zM4.68 2.949a14.969 14.97 0 000 2.336c.587-.065 1.196-.1 1.812-.107a16.617 16.617 0 01.48-1.748 16.48 16.481 0 00-2.292-.481zM3.62 3.5A11.938 11.938 0 001.762 5.88a17.004 17.004 0 011.877-.444A17.39 17.391 0 013.62 3.5zm4.406.287c-.143.437-.265.888-.38 1.347a8.255 8.255 0 011.67-.803c-.423-.2-.845-.38-1.29-.544zM6.3 6.216a14.051 14.052 0 00-1.555.108c.064.523.157 1.038.272 1.554a8.39 8.391 0 011.283-1.662zm-2.55.137a15.313 15.313 0 00-2.602.716h-.078v.079a17.104 17.105 0 001.267 2.544l.043.071.072-.049a16.309 16.31 0 011.734-1.083l.057-.035V8.54a16.867 16.868 0 01-.408-2.094v-.092zM.644 8.095l-.063.2A11.844 11.845 0 000 11.655v.209l.143-.152a17.706 17.707 0 011.584-1.447l.057-.043-.043-.064a16.18 16.18 0 01-1.025-1.87zm3.77 1.253l-.18.1c-.465.273-.93.573-1.375.889l-.065.05.05.064c.309.437.645.867.996 1.276l.137.165v-.208a8.176 8.176 0 01.364-2.15zM2.2 10.853l-.072.05a16.574 16.574 0 00-1.813 1.734l-.058.058.066.057a15.449 15.45 0 001.991 1.483l.072.05.043-.08a16.738 16.74 0 011.053-1.64v-.05l-.043-.05a16.99 16.99 0 01-1.19-1.54zm1.855 2.071l-.121.172a15.363 15.363 0 00-.917 1.433l-.043.072.071.043a16.61 16.61 0 001.562.766l.193.086-.086-.193a8.04 8.04 0 01-.66-2.172zm-3.976.48v.2a11.758 11.759 0 00.946 3.326l.078.186.072-.194a16.215 16.216 0 01.845-2l.057-.063-.064-.043a17.197 17.198 0 01-1.776-1.284zm2.543 1.805l-.035.08a15.764 15.765 0 00-.983 2.479v.08h.086a16.15 16.152 0 002.688.5l.072.007v-.086a17.562 17.563 0 01.164-2.056v-.065H4.55a16.266 16.266 0 01-1.849-.896zm2.544 1.169v.114a17.254 17.255 0 00-.151 1.828v.078h.931c.287 0 .624.014.946 0h.209l-.166-.129a8.011 8.011 0 01-1.64-1.834zm-3.29 2.1l.115.172a11.988 11.988 0 002.502 2.737l.157.129v-.201a22.578 22.58 0 01-.2-2.336v-.071h-.072a16.23 16.23 0 01-2.3-.387z" }) + ] + } + ); +}); + +export { SiAnaconda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.cjs new file mode 100644 index 000000000..ece2c6eac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1A1A"; +const SiAnalogue = React__namespace.forwardRef(function SiAnalogue2({ title = "Analogue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.468 12.804a5.145 5.145 0 10-.644 10.27 5.145 5.145 0 00.644-10.27zm17.841 2.562L16.45 3.484a5.146 5.146 0 00-8.912 5.15l6.86 11.878a5.148 5.148 0 007.031 1.885 5.146 5.146 0 001.881-7.031z" }) + ] + } + ); +}); + +exports.default = SiAnalogue; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.d.ts new file mode 100644 index 000000000..27d4fed27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1A1A"; +declare const SiAnalogue: IconType; +export { SiAnalogue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.mjs new file mode 100644 index 000000000..8414e61e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnalogue.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1A1A"; +const SiAnalogue = React.forwardRef(function SiAnalogue2({ title = "Analogue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.468 12.804a5.145 5.145 0 10-.644 10.27 5.145 5.145 0 00.644-10.27zm17.841 2.562L16.45 3.484a5.146 5.146 0 00-8.912 5.15l6.86 11.878a5.148 5.148 0 007.031 1.885 5.146 5.146 0 001.881-7.031z" }) + ] + } + ); +}); + +export { SiAnalogue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.cjs new file mode 100644 index 000000000..9632b2cdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#173B3F"; +const SiAndela = React__namespace.forwardRef(function SiAndela2({ title = "Andela", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.999 4.586 13.956.511A3.94 3.94 0 0 0 12 0c-.713 0-1.378.183-1.946.511L2.982 4.586a4.013 4.013 0 0 0-1.917 3.42v7.997a3.99 3.99 0 0 0 1.927 3.421l7.014 4.046c.587.337 1.262.53 1.994.53.723 0 1.407-.193 1.994-.53l6.937-4.008a4.008 4.008 0 0 0 2.004-3.468V7.997a4.003 4.003 0 0 0-1.936-3.411Zm.298 7.534h-.038c-5.039.02-9.143 4.143-9.143 9.182a.117.117 0 0 1-.116.116.118.118 0 0 1-.116-.116v-.038c-.019-5.039-4.143-9.144-9.181-9.144a.116.116 0 0 1-.116-.115c0-.068.058-.116.116-.116h.038c5.039-.019 9.143-4.143 9.143-9.182 0-.067.058-.115.116-.115.067 0 .116.058.116.115 0 5.059 4.114 9.182 9.181 9.182.068 0 .116.058.116.116.01.067-.048.115-.116.115Z" }) + ] + } + ); +}); + +exports.default = SiAndela; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.d.ts new file mode 100644 index 000000000..4cd2d8741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#173B3F"; +declare const SiAndela: IconType; +export { SiAndela as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.mjs new file mode 100644 index 000000000..ae18b8d37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndela.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#173B3F"; +const SiAndela = React.forwardRef(function SiAndela2({ title = "Andela", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.999 4.586 13.956.511A3.94 3.94 0 0 0 12 0c-.713 0-1.378.183-1.946.511L2.982 4.586a4.013 4.013 0 0 0-1.917 3.42v7.997a3.99 3.99 0 0 0 1.927 3.421l7.014 4.046c.587.337 1.262.53 1.994.53.723 0 1.407-.193 1.994-.53l6.937-4.008a4.008 4.008 0 0 0 2.004-3.468V7.997a4.003 4.003 0 0 0-1.936-3.411Zm.298 7.534h-.038c-5.039.02-9.143 4.143-9.143 9.182a.117.117 0 0 1-.116.116.118.118 0 0 1-.116-.116v-.038c-.019-5.039-4.143-9.144-9.181-9.144a.116.116 0 0 1-.116-.115c0-.068.058-.116.116-.116h.038c5.039-.019 9.143-4.143 9.143-9.182 0-.067.058-.115.116-.115.067 0 .116.058.116.115 0 5.059 4.114 9.182 9.181 9.182.068 0 .116.058.116.116.01.067-.048.115-.116.115Z" }) + ] + } + ); +}); + +export { SiAndela as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.cjs new file mode 100644 index 000000000..a12349436 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DDC84"; +const SiAndroid = React__namespace.forwardRef(function SiAndroid2({ title = "Android", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.4395 5.5586c-.675 1.1664-1.352 2.3318-2.0274 3.498-.0366-.0155-.0742-.0286-.1113-.043-1.8249-.6957-3.484-.8-4.42-.787-1.8551.0185-3.3544.4643-4.2597.8203-.084-.1494-1.7526-3.021-2.0215-3.4864a1.1451 1.1451 0 0 0-.1406-.1914c-.3312-.364-.9054-.4859-1.379-.203-.475.282-.7136.9361-.3886 1.5019 1.9466 3.3696-.0966-.2158 1.9473 3.3593.0172.031-.4946.2642-1.3926 1.0177C2.8987 12.176.452 14.772 0 18.9902h24c-.119-1.1108-.3686-2.099-.7461-3.0683-.7438-1.9118-1.8435-3.2928-2.7402-4.1836a12.1048 12.1048 0 0 0-2.1309-1.6875c.6594-1.122 1.312-2.2559 1.9649-3.3848.2077-.3615.1886-.7956-.0079-1.1191a1.1001 1.1001 0 0 0-.8515-.5332c-.5225-.0536-.9392.3128-1.0488.5449zm-.0391 8.461c.3944.5926.324 1.3306-.1563 1.6503-.4799.3197-1.188.0985-1.582-.4941-.3944-.5927-.324-1.3307.1563-1.6504.4727-.315 1.1812-.1086 1.582.4941zM7.207 13.5273c.4803.3197.5506 1.0577.1563 1.6504-.394.5926-1.1038.8138-1.584.4941-.48-.3197-.5503-1.0577-.1563-1.6504.4008-.6021 1.1087-.8106 1.584-.4941z" }) + ] + } + ); +}); + +exports.default = SiAndroid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.d.ts new file mode 100644 index 000000000..9fadd949d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DDC84"; +declare const SiAndroid: IconType; +export { SiAndroid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.mjs new file mode 100644 index 000000000..e95884f21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DDC84"; +const SiAndroid = React.forwardRef(function SiAndroid2({ title = "Android", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.4395 5.5586c-.675 1.1664-1.352 2.3318-2.0274 3.498-.0366-.0155-.0742-.0286-.1113-.043-1.8249-.6957-3.484-.8-4.42-.787-1.8551.0185-3.3544.4643-4.2597.8203-.084-.1494-1.7526-3.021-2.0215-3.4864a1.1451 1.1451 0 0 0-.1406-.1914c-.3312-.364-.9054-.4859-1.379-.203-.475.282-.7136.9361-.3886 1.5019 1.9466 3.3696-.0966-.2158 1.9473 3.3593.0172.031-.4946.2642-1.3926 1.0177C2.8987 12.176.452 14.772 0 18.9902h24c-.119-1.1108-.3686-2.099-.7461-3.0683-.7438-1.9118-1.8435-3.2928-2.7402-4.1836a12.1048 12.1048 0 0 0-2.1309-1.6875c.6594-1.122 1.312-2.2559 1.9649-3.3848.2077-.3615.1886-.7956-.0079-1.1191a1.1001 1.1001 0 0 0-.8515-.5332c-.5225-.0536-.9392.3128-1.0488.5449zm-.0391 8.461c.3944.5926.324 1.3306-.1563 1.6503-.4799.3197-1.188.0985-1.582-.4941-.3944-.5927-.324-1.3307.1563-1.6504.4727-.315 1.1812-.1086 1.582.4941zM7.207 13.5273c.4803.3197.5506 1.0577.1563 1.6504-.394.5926-1.1038.8138-1.584.4941-.48-.3197-.5503-1.0577-.1563-1.6504.4008-.6021 1.1087-.8106 1.584-.4941z" }) + ] + } + ); +}); + +export { SiAndroid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.cjs new file mode 100644 index 000000000..3a0c18cdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DDC84"; +const SiAndroidauto = React__namespace.forwardRef(function SiAndroidauto2({ title = "Android Auto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.6 0-1.11.32-1.39.8L.48 18.4a1.6 1.6 0 0 0 1.39 2.4h2l7.7-13.58.43-.77 8.13 14.35h2a1.6 1.6 0 0 0 1.39-2.4L13.39.8A1.6 1.6 0 0 0 12 0zm0 7.47l-9.07 16 .54.53L12 20.8l8.53 3.2.54-.53z" }) + ] + } + ); +}); + +exports.default = SiAndroidauto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.d.ts new file mode 100644 index 000000000..a715ba1e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DDC84"; +declare const SiAndroidauto: IconType; +export { SiAndroidauto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.mjs new file mode 100644 index 000000000..579c881e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidauto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DDC84"; +const SiAndroidauto = React.forwardRef(function SiAndroidauto2({ title = "Android Auto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.6 0-1.11.32-1.39.8L.48 18.4a1.6 1.6 0 0 0 1.39 2.4h2l7.7-13.58.43-.77 8.13 14.35h2a1.6 1.6 0 0 0 1.39-2.4L13.39.8A1.6 1.6 0 0 0 12 0zm0 7.47l-9.07 16 .54.53L12 20.8l8.53 3.2.54-.53z" }) + ] + } + ); +}); + +export { SiAndroidauto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.cjs new file mode 100644 index 000000000..cdf7b4080 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DDC84"; +const SiAndroidstudio = React__namespace.forwardRef(function SiAndroidstudio2({ title = "Android Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.2693 10.3368c-.3321 0-.6026.2705-.6026.6031v9.8324h-1.7379l-3.3355-6.9396c.476-.5387.6797-1.286.5243-2.0009a2.2862 2.2862 0 0 0-1.2893-1.6248v-.8124c.0121-.2871-.1426-.5787-.4043-.7407-.1391-.0825-.2884-.1234-.4402-.1234a.8478.8478 0 0 0-.4318.1182c-.2701.1671-.4248.4587-.4123.7662l-.0003.721c-1.0149.3668-1.6619 1.4153-1.4867 2.5197a2.282 2.282 0 0 0 .5916 1.2103l-3.2096 6.9064H4.0928c-1.0949-.007-1.9797-.8948-1.9832-1.9896V5.016c-.0055 1.1024.8836 2.0006 1.9859 2.0062a2.024 2.024 0 0 0 .1326-.0037h14.7453s2.5343-.2189 2.8619 1.5392c-.2491.0287-.4449.2321-.4449.4889 0 .7115-.5791 1.2901-1.3028 1.2901h-.8183zM17.222 22.5366c.2347.4837.0329 1.066-.4507 1.3007-.1296.0629-.2666.0895-.4018.0927a.9738.9738 0 0 1-.3194-.0455c-.024-.0078-.046-.0209-.0694-.0305a.9701.9701 0 0 1-.2277-.1321c-.0247-.0192-.0495-.038-.0724-.0598-.0825-.0783-.1574-.1672-.21-.2757l-1.2554-2.6143-1.5585-3.2452a.7725.7725 0 0 0-.6995-.4443h-.0024a.792.792 0 0 0-.7083.4443l-1.5109 3.2452-1.2321 2.6464a.9722.9722 0 0 1-.7985.5795c-.0626.0053-.1238-.0024-.185-.0087-.0344-.0036-.069-.0053-.1025-.0124-.0489-.0103-.0954-.0278-.142-.0452-.0301-.0113-.0613-.0197-.0901-.0339-.0496-.0244-.0948-.0565-.1397-.0889-.0217-.0156-.0457-.0275-.0662-.045a.9862.9862 0 0 1-.1695-.1844.9788.9788 0 0 1-.0708-.9852l.8469-1.8223 3.2676-7.0314a1.7964 1.7964 0 0 1-.7072-1.1637c-.1555-.9799.5129-1.9003 1.4928-2.0559V9.3946a.3542.3542 0 0 1 .1674-.3155.3468.3468 0 0 1 .3541 0 .354.354 0 0 1 .1674.3155v1.159l.0129.0064a1.8028 1.8028 0 0 1 1.2878 1.378 1.7835 1.7835 0 0 1-.6439 1.7836l3.3889 7.0507.8481 1.7643zM12.9841 12.306c.0042-.6081-.4854-1.1044-1.0935-1.1085a1.1204 1.1204 0 0 0-.7856.3219 1.101 1.101 0 0 0-.323.7716c-.0042.6081.4854 1.1044 1.0935 1.1085h.0077c.6046 0 1.0967-.488 1.1009-1.0935zm-1.027 5.2768c-.1119.0005-.2121.0632-.2571.1553l-1.4127 3.0342h3.3733l-1.4564-3.0328a.274.274 0 0 0-.2471-.1567zm8.1432-6.7459l-.0129-.0001h-.8177a.103.103 0 0 0-.103.103v12.9103a.103.103 0 0 0 .0966.103h.8435c.9861-.0035 1.7836-.804 1.7836-1.79V9.0468c0 .9887-.8014 1.7901-1.7901 1.7901zM2.6098 5.0161v.019c.0039.816.6719 1.483 1.4874 1.4869a12.061 12.061 0 0 1 .1309-.0034h1.1286c.1972-1.315.7607-2.525 1.638-3.4859H4.0993c-.9266.0031-1.6971.6401-1.9191 1.4975.2417.0355.4296.235.4296.4859zm6.3381-2.8977L7.9112.3284a.219.219 0 0 1 0-.2189A.2384.2384 0 0 1 8.098 0a.219.219 0 0 1 .1867.1094l1.0496 1.8158a6.4907 6.4907 0 0 1 5.3186 0L15.696.1094a.2189.2189 0 0 1 .3734.2189l-1.0302 1.79c1.6671.9125 2.7974 2.5439 3.0975 4.4018l-12.286-.0014c.3004-1.8572 1.4305-3.488 3.0972-4.4003zm5.3774 2.6202a.515.515 0 0 0 .5271.5028.515.515 0 0 0 .5151-.5151.5213.5213 0 0 0-.8885-.367.5151.5151 0 0 0-.1537.3793zm-5.7178-.0067a.5151.5151 0 0 0 .5207.5095.5086.5086 0 0 0 .367-.1481.5215.5215 0 1 0-.734-.7341.515.515 0 0 0-.1537.3727z" }) + ] + } + ); +}); + +exports.default = SiAndroidstudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.d.ts new file mode 100644 index 000000000..b55a07d08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DDC84"; +declare const SiAndroidstudio: IconType; +export { SiAndroidstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.mjs new file mode 100644 index 000000000..dba58c952 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAndroidstudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DDC84"; +const SiAndroidstudio = React.forwardRef(function SiAndroidstudio2({ title = "Android Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.2693 10.3368c-.3321 0-.6026.2705-.6026.6031v9.8324h-1.7379l-3.3355-6.9396c.476-.5387.6797-1.286.5243-2.0009a2.2862 2.2862 0 0 0-1.2893-1.6248v-.8124c.0121-.2871-.1426-.5787-.4043-.7407-.1391-.0825-.2884-.1234-.4402-.1234a.8478.8478 0 0 0-.4318.1182c-.2701.1671-.4248.4587-.4123.7662l-.0003.721c-1.0149.3668-1.6619 1.4153-1.4867 2.5197a2.282 2.282 0 0 0 .5916 1.2103l-3.2096 6.9064H4.0928c-1.0949-.007-1.9797-.8948-1.9832-1.9896V5.016c-.0055 1.1024.8836 2.0006 1.9859 2.0062a2.024 2.024 0 0 0 .1326-.0037h14.7453s2.5343-.2189 2.8619 1.5392c-.2491.0287-.4449.2321-.4449.4889 0 .7115-.5791 1.2901-1.3028 1.2901h-.8183zM17.222 22.5366c.2347.4837.0329 1.066-.4507 1.3007-.1296.0629-.2666.0895-.4018.0927a.9738.9738 0 0 1-.3194-.0455c-.024-.0078-.046-.0209-.0694-.0305a.9701.9701 0 0 1-.2277-.1321c-.0247-.0192-.0495-.038-.0724-.0598-.0825-.0783-.1574-.1672-.21-.2757l-1.2554-2.6143-1.5585-3.2452a.7725.7725 0 0 0-.6995-.4443h-.0024a.792.792 0 0 0-.7083.4443l-1.5109 3.2452-1.2321 2.6464a.9722.9722 0 0 1-.7985.5795c-.0626.0053-.1238-.0024-.185-.0087-.0344-.0036-.069-.0053-.1025-.0124-.0489-.0103-.0954-.0278-.142-.0452-.0301-.0113-.0613-.0197-.0901-.0339-.0496-.0244-.0948-.0565-.1397-.0889-.0217-.0156-.0457-.0275-.0662-.045a.9862.9862 0 0 1-.1695-.1844.9788.9788 0 0 1-.0708-.9852l.8469-1.8223 3.2676-7.0314a1.7964 1.7964 0 0 1-.7072-1.1637c-.1555-.9799.5129-1.9003 1.4928-2.0559V9.3946a.3542.3542 0 0 1 .1674-.3155.3468.3468 0 0 1 .3541 0 .354.354 0 0 1 .1674.3155v1.159l.0129.0064a1.8028 1.8028 0 0 1 1.2878 1.378 1.7835 1.7835 0 0 1-.6439 1.7836l3.3889 7.0507.8481 1.7643zM12.9841 12.306c.0042-.6081-.4854-1.1044-1.0935-1.1085a1.1204 1.1204 0 0 0-.7856.3219 1.101 1.101 0 0 0-.323.7716c-.0042.6081.4854 1.1044 1.0935 1.1085h.0077c.6046 0 1.0967-.488 1.1009-1.0935zm-1.027 5.2768c-.1119.0005-.2121.0632-.2571.1553l-1.4127 3.0342h3.3733l-1.4564-3.0328a.274.274 0 0 0-.2471-.1567zm8.1432-6.7459l-.0129-.0001h-.8177a.103.103 0 0 0-.103.103v12.9103a.103.103 0 0 0 .0966.103h.8435c.9861-.0035 1.7836-.804 1.7836-1.79V9.0468c0 .9887-.8014 1.7901-1.7901 1.7901zM2.6098 5.0161v.019c.0039.816.6719 1.483 1.4874 1.4869a12.061 12.061 0 0 1 .1309-.0034h1.1286c.1972-1.315.7607-2.525 1.638-3.4859H4.0993c-.9266.0031-1.6971.6401-1.9191 1.4975.2417.0355.4296.235.4296.4859zm6.3381-2.8977L7.9112.3284a.219.219 0 0 1 0-.2189A.2384.2384 0 0 1 8.098 0a.219.219 0 0 1 .1867.1094l1.0496 1.8158a6.4907 6.4907 0 0 1 5.3186 0L15.696.1094a.2189.2189 0 0 1 .3734.2189l-1.0302 1.79c1.6671.9125 2.7974 2.5439 3.0975 4.4018l-12.286-.0014c.3004-1.8572 1.4305-3.488 3.0972-4.4003zm5.3774 2.6202a.515.515 0 0 0 .5271.5028.515.515 0 0 0 .5151-.5151.5213.5213 0 0 0-.8885-.367.5151.5151 0 0 0-.1537.3793zm-5.7178-.0067a.5151.5151 0 0 0 .5207.5095.5086.5086 0 0 0 .367-.1481.5215.5215 0 1 0-.734-.7341.515.515 0 0 0-.1537.3727z" }) + ] + } + ); +}); + +export { SiAndroidstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.cjs new file mode 100644 index 000000000..2baaae42b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0F0F11"; +const SiAngular = React__namespace.forwardRef(function SiAngular2({ title = "Angular", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.712 17.711H7.288l-1.204 2.916L12 24l5.916-3.373-1.204-2.916ZM14.692 0l7.832 16.855.814-12.856L14.692 0ZM9.308 0 .662 3.999l.814 12.856L9.308 0Zm-.405 13.93h6.198L12 6.396 8.903 13.93Z" }) + ] + } + ); +}); + +exports.default = SiAngular; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.d.ts new file mode 100644 index 000000000..4a057b813 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0F0F11"; +declare const SiAngular: IconType; +export { SiAngular as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.mjs new file mode 100644 index 000000000..f8c844c89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAngular.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0F0F11"; +const SiAngular = React.forwardRef(function SiAngular2({ title = "Angular", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.712 17.711H7.288l-1.204 2.916L12 24l5.916-3.373-1.204-2.916ZM14.692 0l7.832 16.855.814-12.856L14.692 0ZM9.308 0 .662 3.999l.814 12.856L9.308 0Zm-.405 13.93h6.198L12 6.396 8.903 13.93Z" }) + ] + } + ); +}); + +export { SiAngular as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.cjs new file mode 100644 index 000000000..d75d08c84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41B1EA"; +const SiAnichart = React__namespace.forwardRef(function SiAnichart2({ title = "AniChart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.293 2.951a9 9 0 0 0-5.162 1.62l1.572 4.483a4.68 4.68 0 0 1 3.596-1.706c1.068 0 2.113.364 2.935 1.045.51.41.957.487 1.468.07l1.837-1.438c.552-.44.622-.98.135-1.467a9.12 9.12 0 0 0-6.38-2.607M6.3 3.127 0 21.05h4.89l1.068-3.1h5.33l1.04 3.1h4.871L10.92 3.127Zm2.3 5.882 1.674 4.966h-3.2Zm12.386 6.318c-.272-.014-.544.103-.845.327-.81.646-1.808.98-2.841.98q-.502 0-.976-.102l1.58 4.508a9.13 9.13 0 0 0 5.583-2.421c.517-.494.446-1.057-.058-1.497l-1.797-1.515c-.223-.18-.434-.27-.646-.28" }) + ] + } + ); +}); + +exports.default = SiAnichart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.d.ts new file mode 100644 index 000000000..fdd96200a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41B1EA"; +declare const SiAnichart: IconType; +export { SiAnichart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.mjs new file mode 100644 index 000000000..dfb7591c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnichart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41B1EA"; +const SiAnichart = React.forwardRef(function SiAnichart2({ title = "AniChart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.293 2.951a9 9 0 0 0-5.162 1.62l1.572 4.483a4.68 4.68 0 0 1 3.596-1.706c1.068 0 2.113.364 2.935 1.045.51.41.957.487 1.468.07l1.837-1.438c.552-.44.622-.98.135-1.467a9.12 9.12 0 0 0-6.38-2.607M6.3 3.127 0 21.05h4.89l1.068-3.1h5.33l1.04 3.1h4.871L10.92 3.127Zm2.3 5.882 1.674 4.966h-3.2Zm12.386 6.318c-.272-.014-.544.103-.845.327-.81.646-1.808.98-2.841.98q-.502 0-.976-.102l1.58 4.508a9.13 9.13 0 0 0 5.583-2.421c.517-.494.446-1.057-.058-1.497l-1.797-1.515c-.223-.18-.434-.27-.646-.28" }) + ] + } + ); +}); + +export { SiAnichart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.cjs new file mode 100644 index 000000000..8f6f272e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02A9FF"; +const SiAnilist = React__namespace.forwardRef(function SiAnilist2({ title = "AniList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 17.53v2.421c0 .71-.391 1.101-1.1 1.101h-5l-.057-.165L11.84 3.736c.106-.502.46-.788 1.053-.788h2.422c.71 0 1.1.391 1.1 1.1v12.38H22.9c.71 0 1.1.392 1.1 1.101zM11.034 2.947l6.337 18.104h-4.918l-1.052-3.131H6.019l-1.077 3.131H0L6.361 2.948h4.673zm-.66 10.96-1.69-5.014-1.541 5.015h3.23z" }) + ] + } + ); +}); + +exports.default = SiAnilist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.d.ts new file mode 100644 index 000000000..88ab1bece --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02A9FF"; +declare const SiAnilist: IconType; +export { SiAnilist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.mjs new file mode 100644 index 000000000..466a0ad43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnilist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02A9FF"; +const SiAnilist = React.forwardRef(function SiAnilist2({ title = "AniList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 17.53v2.421c0 .71-.391 1.101-1.1 1.101h-5l-.057-.165L11.84 3.736c.106-.502.46-.788 1.053-.788h2.422c.71 0 1.1.391 1.1 1.1v12.38H22.9c.71 0 1.1.392 1.1 1.101zM11.034 2.947l6.337 18.104h-4.918l-1.052-3.131H6.019l-1.077 3.131H0L6.361 2.948h4.673zm-.66 10.96-1.69-5.014-1.541 5.015h3.23z" }) + ] + } + ); +}); + +export { SiAnilist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.cjs new file mode 100644 index 000000000..f051dc412 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0073FF"; +const SiAnimalplanet = React__namespace.forwardRef(function SiAnimalplanet2({ title = "Animal Planet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.814 5.94-.494.858c2.605.509 4.118 1.618 4.118 2.917 0 .865-.649 1.696-1.762 1.696-1.699 0-2.949-2.673-2.949-2.673-.356-.011-.993-.026-.993-.026s-1.822-2.342-4.595-3.168v3.798c.244.205.559.499.855.863-1.252-.757-2.552-1.317-4.847-1.317-2.496 0-5.547 1.007-7.242 3.763l.178.322c.773-.873 1.968-1.402 2.006-1.416C1.424 13.012.469 15.427 0 16.998l1.456 1.457a10.687 10.687 0 0 1 8.055-3.588c2.77 0 5.582 1.157 7.534 3.157l1.577-1.579c-1.324-2.263-2.924-3.861-2.972-3.909.068.031 1.487.85 3.975.85 2.312 0 4.375-1.285 4.375-3.203 0-2.292-1.965-3.745-5.186-4.243" }) + ] + } + ); +}); + +exports.default = SiAnimalplanet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.d.ts new file mode 100644 index 000000000..496726375 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0073FF"; +declare const SiAnimalplanet: IconType; +export { SiAnimalplanet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.mjs new file mode 100644 index 000000000..a72fccd67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimalplanet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0073FF"; +const SiAnimalplanet = React.forwardRef(function SiAnimalplanet2({ title = "Animal Planet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.814 5.94-.494.858c2.605.509 4.118 1.618 4.118 2.917 0 .865-.649 1.696-1.762 1.696-1.699 0-2.949-2.673-2.949-2.673-.356-.011-.993-.026-.993-.026s-1.822-2.342-4.595-3.168v3.798c.244.205.559.499.855.863-1.252-.757-2.552-1.317-4.847-1.317-2.496 0-5.547 1.007-7.242 3.763l.178.322c.773-.873 1.968-1.402 2.006-1.416C1.424 13.012.469 15.427 0 16.998l1.456 1.457a10.687 10.687 0 0 1 8.055-3.588c2.77 0 5.582 1.157 7.534 3.157l1.577-1.579c-1.324-2.263-2.924-3.861-2.972-3.909.068.031 1.487.85 3.975.85 2.312 0 4.375-1.285 4.375-3.203 0-2.292-1.965-3.745-5.186-4.243" }) + ] + } + ); +}); + +export { SiAnimalplanet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.cjs new file mode 100644 index 000000000..3be9f026f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAnimedotjs = React__namespace.forwardRef(function SiAnimedotjs2({ title = "Anime.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .0012c2.8931 0 5.547 1.0238 7.6193 2.7288H24c-.2493 1.6968-.4997 3.3933-.748 5.0903C23.7357 9.1218 24 10.53 24 12c0 6.6274-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0Zm.7271 5.2c-1.9911 0-3.5191.1-4.584.2987-1.0648.1991-1.844.5497-2.3374 1.0518-.4935.5021-.8095 1.2467-.948 2.2336l-.052.3896h4.3235l.014-.078c.052-.2944.1602-.5238.3247-.6883.3758-.3758 1.3594-.4805 2.74-.4805.6975 0 1.3993-.016 2.0907.091.355.061.619.1862.7922.3766.1731.1905.2597.4935.2597.909-.042.6074-.1174 1.2126-.1818 1.8181h-.078c-.3117-.4156-.8138-.7143-1.5064-.8961-.9452-.2481-2.0153-.2727-3.4023-.2727-1.5756 0-2.7876.1039-3.636.3117-.8484.2078-1.4718.5627-1.87 1.0648-.3982.5021-.6666 1.238-.8051 2.2076-.074.5178-.1517 1.0343-.1558 1.5583 0 .7445.1731 1.3332.5194 1.7661.3463.4329.9047.7445 1.6752.935.7705.1904 1.8223.2857 3.1555.2857.9631 0 1.9304 0 2.8829-.1559.5714-.1038 1.0302-.2683 1.3765-.4934.3463-.2251.7012-.5454 1.0648-.961h.052l-.2338 1.4025h4.4931l.935-6.5968c.1212-.9177.1818-1.6016.1818-2.0518 0-.598-.053-.9743-.1354-1.3516l-2.6242.0009c.1123-.7649.2252-1.5297.3381-2.2946-.07-.02-.1415-.038-.2146-.056-1.2124-.2886-2.6154-.3246-4.4542-.3246Zm-.8051 7.298c.8311 0 1.4588.026 1.883.078.4242.052.7142.1428.87.2727.1558.1298.2338.316.2338.5584 0 .055-.037.9918-.4156 1.3895-.1731.1818-.4848.3116-.935.3895-.5642.098-1.3136.1169-2.3374.1169-.7792 0-1.3808-.026-1.805-.078-.4243-.052-.7316-.1515-.922-.2987-.1905-.1472-.2857-.3506-.2857-.6103.053-.6238.1306-1.0137.3895-1.2856.1732-.1818.4892-.316.948-.4026.5853-.1104 1.3454-.1299 2.3764-.1299zm11.1111-8.928h-4.4973l-.5111 3.4752h4.4973z" }) + ] + } + ); +}); + +exports.default = SiAnimedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.d.ts new file mode 100644 index 000000000..21bc88959 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAnimedotjs: IconType; +export { SiAnimedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.mjs new file mode 100644 index 000000000..cefd0e35f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnimedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAnimedotjs = React.forwardRef(function SiAnimedotjs2({ title = "Anime.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .0012c2.8931 0 5.547 1.0238 7.6193 2.7288H24c-.2493 1.6968-.4997 3.3933-.748 5.0903C23.7357 9.1218 24 10.53 24 12c0 6.6274-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0Zm.7271 5.2c-1.9911 0-3.5191.1-4.584.2987-1.0648.1991-1.844.5497-2.3374 1.0518-.4935.5021-.8095 1.2467-.948 2.2336l-.052.3896h4.3235l.014-.078c.052-.2944.1602-.5238.3247-.6883.3758-.3758 1.3594-.4805 2.74-.4805.6975 0 1.3993-.016 2.0907.091.355.061.619.1862.7922.3766.1731.1905.2597.4935.2597.909-.042.6074-.1174 1.2126-.1818 1.8181h-.078c-.3117-.4156-.8138-.7143-1.5064-.8961-.9452-.2481-2.0153-.2727-3.4023-.2727-1.5756 0-2.7876.1039-3.636.3117-.8484.2078-1.4718.5627-1.87 1.0648-.3982.5021-.6666 1.238-.8051 2.2076-.074.5178-.1517 1.0343-.1558 1.5583 0 .7445.1731 1.3332.5194 1.7661.3463.4329.9047.7445 1.6752.935.7705.1904 1.8223.2857 3.1555.2857.9631 0 1.9304 0 2.8829-.1559.5714-.1038 1.0302-.2683 1.3765-.4934.3463-.2251.7012-.5454 1.0648-.961h.052l-.2338 1.4025h4.4931l.935-6.5968c.1212-.9177.1818-1.6016.1818-2.0518 0-.598-.053-.9743-.1354-1.3516l-2.6242.0009c.1123-.7649.2252-1.5297.3381-2.2946-.07-.02-.1415-.038-.2146-.056-1.2124-.2886-2.6154-.3246-4.4542-.3246Zm-.8051 7.298c.8311 0 1.4588.026 1.883.078.4242.052.7142.1428.87.2727.1558.1298.2338.316.2338.5584 0 .055-.037.9918-.4156 1.3895-.1731.1818-.4848.3116-.935.3895-.5642.098-1.3136.1169-2.3374.1169-.7792 0-1.3808-.026-1.805-.078-.4243-.052-.7316-.1515-.922-.2987-.1905-.1472-.2857-.3506-.2857-.6103.053-.6238.1306-1.0137.3895-1.2856.1732-.1818.4892-.316.948-.4026.5853-.1104 1.3454-.1299 2.3764-.1299zm11.1111-8.928h-4.4973l-.5111 3.4752h4.4973z" }) + ] + } + ); +}); + +export { SiAnimedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.cjs new file mode 100644 index 000000000..006798b0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#88F387"; +const SiAnkermake = React__namespace.forwardRef(function SiAnkermake2({ title = "AnkerMake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.35 10.462 3.075 3.122c.187.187.187.42 0 .606l-3.122 3.123c-.186.186-.42.186-.606 0L8.575 14.19c-.187-.186-.187-.419 0-.606l3.169-3.122c.186-.186.419-.186.606 0Zm-1.585-1.584c.14.186.14.419-.047.605l-3.122 3.123c-.186.186-.419.186-.606 0l-1.724-1.724v12.675H0V.443h2.33l8.435 8.435ZM21.717.443H24v23.114h-5.266V10.882l-1.724 1.724c-.187.186-.42.186-.606 0l-3.122-3.123c-.187-.186-.187-.419 0-.605L21.717.443Z" }) + ] + } + ); +}); + +exports.default = SiAnkermake; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.d.ts new file mode 100644 index 000000000..f7c1a6b98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#88F387"; +declare const SiAnkermake: IconType; +export { SiAnkermake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.mjs new file mode 100644 index 000000000..a34af7efb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnkermake.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#88F387"; +const SiAnkermake = React.forwardRef(function SiAnkermake2({ title = "AnkerMake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.35 10.462 3.075 3.122c.187.187.187.42 0 .606l-3.122 3.123c-.186.186-.42.186-.606 0L8.575 14.19c-.187-.186-.187-.419 0-.606l3.169-3.122c.186-.186.419-.186.606 0Zm-1.585-1.584c.14.186.14.419-.047.605l-3.122 3.123c-.186.186-.419.186-.606 0l-1.724-1.724v12.675H0V.443h2.33l8.435 8.435ZM21.717.443H24v23.114h-5.266V10.882l-1.724 1.724c-.187.186-.42.186-.606 0l-3.122-3.123c-.187-.186-.187-.419 0-.605L21.717.443Z" }) + ] + } + ); +}); + +export { SiAnkermake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.cjs new file mode 100644 index 000000000..444d2909c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#80C2EE"; +const SiAnki = React__namespace.forwardRef(function SiAnki2({ title = "Anki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.845 22.627-.169.131-.182.091c-.109.042-.23.069-.362.079-.27.021-.611-.036-.989-.16-.686-.223-1.537-.67-2.256-.973-.343-.145-.633-.281-.829-.254-.197.027-.44.236-.73.467-.611.486-1.311 1.145-1.91 1.546-.331.22-.644.368-.91.42-.13.026-.255.032-.37.021l-.201-.038-.196-.082-.177-.119-.143-.145a1.3 1.3 0 0 1-.187-.32c-.104-.25-.154-.593-.154-.99.001-.721.164-1.669.23-2.447.031-.37.07-.687-.016-.866-.087-.178-.359-.345-.67-.55-.65-.431-1.494-.893-2.06-1.34-.312-.246-.548-.498-.681-.735a1.3 1.3 0 0 1-.134-.345l-.025-.202.016-.213.059-.205.094-.18c.064-.097.145-.191.246-.277.207-.175.517-.33.895-.452.685-.222 1.637-.361 2.397-.539.362-.084.676-.145.819-.281.144-.138.217-.45.316-.808.209-.752.387-1.696.638-2.373.138-.373.305-.676.489-.874.091-.098.187-.176.286-.235l.185-.086.207-.051.214-.006.2.033c.113.03.226.079.339.148.231.143.473.389.706.711.424.584.85 1.446 1.253 2.114.192.318.347.598.522.692.174.094.494.068.865.052.78-.034 1.734-.157 2.455-.128.397.017.736.081.983.195.12.055.223.123.31.201l.14.148.112.181.072.201.03.202c.007.115-.005.238-.036.368-.063.263-.223.57-.457.891-.425.583-1.113 1.254-1.623 1.845-.244.281-.463.514-.498.71-.035.194.089.49.219.838.273.731.684 1.601.879 2.295.108.382.151.725.119.995-.015.131-.049.252-.095.358l-.098.179zm-1.54-18.929c-.018-.057-.07-.226-.122-.346-.17-.387-.418-.846-.544-1.216-.166-.483-.099-.88.102-1.096.201-.214.592-.308 1.086-.177.377.1.851.316 1.249.458.125.044.297.084.354.096.047-.032.193-.134.291-.221.316-.282.675-.659.988-.894.408-.305.807-.366 1.074-.241.266.124.476.468.504.977.021.391-.037.909-.049 1.331-.004.132.011.309.017.366.046.035.187.142.301.209.365.213.835.438 1.155.662.417.294.597.655.56.947-.035.293-.296.599-.773.782-.365.141-.875.246-1.28.364-.126.037-.29.106-.343.129-.019.056-.077.223-.105.351-.091.413-.159.93-.274 1.304-.151.487-.438.77-.727.826s-.661-.098-.983-.494c-.246-.303-.504-.756-.742-1.105-.074-.11-.19-.243-.229-.287-.058-.001-.235-.004-.366.009-.421.042-.933.135-1.324.141-.51.008-.867-.177-1.011-.435-.142-.257-.11-.659.167-1.088.212-.328.563-.713.822-1.047.08-.104.171-.256.202-.305" }) + ] + } + ); +}); + +exports.default = SiAnki; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.d.ts new file mode 100644 index 000000000..b4d98ddc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#80C2EE"; +declare const SiAnki: IconType; +export { SiAnki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.mjs new file mode 100644 index 000000000..66d84495a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnki.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#80C2EE"; +const SiAnki = React.forwardRef(function SiAnki2({ title = "Anki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.845 22.627-.169.131-.182.091c-.109.042-.23.069-.362.079-.27.021-.611-.036-.989-.16-.686-.223-1.537-.67-2.256-.973-.343-.145-.633-.281-.829-.254-.197.027-.44.236-.73.467-.611.486-1.311 1.145-1.91 1.546-.331.22-.644.368-.91.42-.13.026-.255.032-.37.021l-.201-.038-.196-.082-.177-.119-.143-.145a1.3 1.3 0 0 1-.187-.32c-.104-.25-.154-.593-.154-.99.001-.721.164-1.669.23-2.447.031-.37.07-.687-.016-.866-.087-.178-.359-.345-.67-.55-.65-.431-1.494-.893-2.06-1.34-.312-.246-.548-.498-.681-.735a1.3 1.3 0 0 1-.134-.345l-.025-.202.016-.213.059-.205.094-.18c.064-.097.145-.191.246-.277.207-.175.517-.33.895-.452.685-.222 1.637-.361 2.397-.539.362-.084.676-.145.819-.281.144-.138.217-.45.316-.808.209-.752.387-1.696.638-2.373.138-.373.305-.676.489-.874.091-.098.187-.176.286-.235l.185-.086.207-.051.214-.006.2.033c.113.03.226.079.339.148.231.143.473.389.706.711.424.584.85 1.446 1.253 2.114.192.318.347.598.522.692.174.094.494.068.865.052.78-.034 1.734-.157 2.455-.128.397.017.736.081.983.195.12.055.223.123.31.201l.14.148.112.181.072.201.03.202c.007.115-.005.238-.036.368-.063.263-.223.57-.457.891-.425.583-1.113 1.254-1.623 1.845-.244.281-.463.514-.498.71-.035.194.089.49.219.838.273.731.684 1.601.879 2.295.108.382.151.725.119.995-.015.131-.049.252-.095.358l-.098.179zm-1.54-18.929c-.018-.057-.07-.226-.122-.346-.17-.387-.418-.846-.544-1.216-.166-.483-.099-.88.102-1.096.201-.214.592-.308 1.086-.177.377.1.851.316 1.249.458.125.044.297.084.354.096.047-.032.193-.134.291-.221.316-.282.675-.659.988-.894.408-.305.807-.366 1.074-.241.266.124.476.468.504.977.021.391-.037.909-.049 1.331-.004.132.011.309.017.366.046.035.187.142.301.209.365.213.835.438 1.155.662.417.294.597.655.56.947-.035.293-.296.599-.773.782-.365.141-.875.246-1.28.364-.126.037-.29.106-.343.129-.019.056-.077.223-.105.351-.091.413-.159.93-.274 1.304-.151.487-.438.77-.727.826s-.661-.098-.983-.494c-.246-.303-.504-.756-.742-1.105-.074-.11-.19-.243-.229-.287-.058-.001-.235-.004-.366.009-.421.042-.933.135-1.324.141-.51.008-.867-.177-1.011-.435-.142-.257-.11-.659.167-1.088.212-.328.563-.713.822-1.047.08-.104.171-.256.202-.305" }) + ] + } + ); +}); + +export { SiAnki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.cjs new file mode 100644 index 000000000..196e54877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE0000"; +const SiAnsible = React__namespace.forwardRef(function SiAnsible2({ title = "Ansible", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.617 11.473l4.686 3.695-3.102-7.662zM12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12S18.629 0 12 0zm5.797 17.305c-.011.471-.403.842-.875.83-.236 0-.416-.09-.664-.293l-6.19-5-2.079 5.203H6.191L11.438 5.44c.124-.314.427-.52.764-.506.326-.014.63.189.742.506l4.774 11.494c.045.111.08.234.08.348-.001.009-.001.009-.001.023z" }) + ] + } + ); +}); + +exports.default = SiAnsible; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.d.ts new file mode 100644 index 000000000..768fa0bb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE0000"; +declare const SiAnsible: IconType; +export { SiAnsible as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.mjs new file mode 100644 index 000000000..7c481f918 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsible.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE0000"; +const SiAnsible = React.forwardRef(function SiAnsible2({ title = "Ansible", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.617 11.473l4.686 3.695-3.102-7.662zM12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12S18.629 0 12 0zm5.797 17.305c-.011.471-.403.842-.875.83-.236 0-.416-.09-.664-.293l-6.19-5-2.079 5.203H6.191L11.438 5.44c.124-.314.427-.52.764-.506.326-.014.63.189.742.506l4.774 11.494c.045.111.08.234.08.348-.001.009-.001.009-.001.023z" }) + ] + } + ); +}); + +export { SiAnsible as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.cjs new file mode 100644 index 000000000..70c92f4f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0033FF"; +const SiAnswer = React__namespace.forwardRef(function SiAnswer2({ title = "Answer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.486 0c-1.92 0-2.881 0-3.615.373A3.428 3.428 0 0 0 .373 1.871C-.001 2.605 0 3.566 0 5.486v9.6c0 1.92 0 2.88.373 3.613.329.645.853 1.17 1.498 1.498.734.374 1.695.375 3.615.375h11.657V24l.793-.396c2.201-1.101 3.3-1.652 4.105-2.473a6.852 6.852 0 0 0 1.584-2.56C24 17.483 24 16.251 24 13.79V5.486c0-1.92 0-2.881-.373-3.615A3.428 3.428 0 0 0 22.129.373C21.395-.001 20.434 0 18.514 0H5.486zm1.371 10.285h10.286a5.142 5.142 0 0 1-10.286.024v-.024z" }) + ] + } + ); +}); + +exports.default = SiAnswer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.d.ts new file mode 100644 index 000000000..2066b120f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0033FF"; +declare const SiAnswer: IconType; +export { SiAnswer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.mjs new file mode 100644 index 000000000..61b5efbcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnswer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0033FF"; +const SiAnswer = React.forwardRef(function SiAnswer2({ title = "Answer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.486 0c-1.92 0-2.881 0-3.615.373A3.428 3.428 0 0 0 .373 1.871C-.001 2.605 0 3.566 0 5.486v9.6c0 1.92 0 2.88.373 3.613.329.645.853 1.17 1.498 1.498.734.374 1.695.375 3.615.375h11.657V24l.793-.396c2.201-1.101 3.3-1.652 4.105-2.473a6.852 6.852 0 0 0 1.584-2.56C24 17.483 24 16.251 24 13.79V5.486c0-1.92 0-2.881-.373-3.615A3.428 3.428 0 0 0 22.129.373C21.395-.001 20.434 0 18.514 0H5.486zm1.371 10.285h10.286a5.142 5.142 0 0 1-10.286.024v-.024z" }) + ] + } + ); +}); + +export { SiAnswer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.cjs new file mode 100644 index 000000000..aa698ef3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB71B"; +const SiAnsys = React__namespace.forwardRef(function SiAnsys2({ title = "Ansys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.0424 10.089l-.993 2.4233-.9932-2.4233h-1.227l1.6066 3.921-.7039 1.7179h1.227l2.3104-5.639zm4.667 2.1272c-.1936-.1936-.5004-.3377-.9209-.4332l-.6984-.1599c-.1678-.0447-.2858-.0923-.3531-.143-.0673-.0506-.101-.1207-.101-.2101 0-.1232.0562-.2186.1683-.2859.112-.0673.2664-.101.4628-.101.426 0 .858.1513 1.2954.4542l.3362-.841c-.2241-.1627-.4767-.2886-.757-.3784a2.8304 2.8304 0 0 0-.8663-.1347c-.3476 0-.6576.0562-.9292.1683-.2724.112-.4826.2665-.631.4624-.1485.1964-.223.4237-.223.6814 0 .3254.0939.582.282.7696.1876.188.4806.3267.8789.4165l.673.1517c.2075.0447.3492.0954.4248.1512.076.0562.1136.1346.1136.2356 0 .1124-.0546.2007-.1639.2648-.1092.0645-.262.0966-.4584.0966-.2748 0-.5468-.042-.816-.1259-.2692-.0843-.5163-.2019-.7403-.3531l-.3366.8745c.23.1628.5032.2875.8204.3746.3167.0867.6655.1302 1.0471.1302.555 0 .991-.1136 1.3081-.3408.3167-.2273.4751-.5397.4751-.938-.0008-.331-.0974-.593-.2906-.7866zm-9.3815-.4332l-.698-.1599c-.1682-.0447-.2862-.0923-.3535-.143-.0669-.0506-.1006-.1207-.1006-.2101 0-.1232.0558-.2186.168-.2859.112-.0673.2664-.101.4627-.101.426 0 .858.1513 1.2955.4542l.3365-.841c-.2245-.1627-.4767-.2886-.757-.3784a2.8323 2.8323 0 0 0-.8663-.1347c-.348 0-.6576.0562-.9296.1683-.272.112-.4822.2665-.6306.4624-.1489.1964-.223.4237-.223.6814 0 .3254.0943.582.282.7696.1876.188.481.3267.8793.4165l.673.1517c.2075.0447.3488.0954.4248.1512.0756.0562.1137.1346.1137.2356 0 .1124-.0546.2007-.164.2648-.1092.0645-.2624.0966-.4584.0966-.2748 0-.5468-.042-.816-.1259-.2688-.0843-.5159-.2019-.7403-.3531l-.3362.8745c.2297.1628.5032.2875.82.3746.3167.0867.6659.1302 1.0471.1302.5551 0 .991-.1136 1.3081-.3408.3168-.2273.4751-.5397.4751-.938 0-.3305-.0966-.593-.2902-.7862-.1944-.194-.5012-.3381-.922-.4336zM9.823 9.9828c-.2918 0-.5539.059-.7863.1766-.2328.1176-.422.2886-.5677.5131v-.5887H7.2325v4.1301h1.27v-2.3133c0-.2803.08-.5048.24-.673.1595-.1683.3713-.2526.635-.2526.219 0 .3797.0645.4838.1936.1037.129.1556.3337.1556.614v2.431h1.27v-2.49c0-.5831-.1207-1.019-.3618-1.308-.2415-.2882-.6089-.4328-1.1022-.4328zM4.4334 8.4594l-.8176 1.9954 1.5381 3.7544h1.7262zm-.3726-.1873H2.4325L0 14.2091h1.6284z" }) + ] + } + ); +}); + +exports.default = SiAnsys; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.d.ts new file mode 100644 index 000000000..d28c69100 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB71B"; +declare const SiAnsys: IconType; +export { SiAnsys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.mjs new file mode 100644 index 000000000..dc70c10bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnsys.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB71B"; +const SiAnsys = React.forwardRef(function SiAnsys2({ title = "Ansys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.0424 10.089l-.993 2.4233-.9932-2.4233h-1.227l1.6066 3.921-.7039 1.7179h1.227l2.3104-5.639zm4.667 2.1272c-.1936-.1936-.5004-.3377-.9209-.4332l-.6984-.1599c-.1678-.0447-.2858-.0923-.3531-.143-.0673-.0506-.101-.1207-.101-.2101 0-.1232.0562-.2186.1683-.2859.112-.0673.2664-.101.4628-.101.426 0 .858.1513 1.2954.4542l.3362-.841c-.2241-.1627-.4767-.2886-.757-.3784a2.8304 2.8304 0 0 0-.8663-.1347c-.3476 0-.6576.0562-.9292.1683-.2724.112-.4826.2665-.631.4624-.1485.1964-.223.4237-.223.6814 0 .3254.0939.582.282.7696.1876.188.4806.3267.8789.4165l.673.1517c.2075.0447.3492.0954.4248.1512.076.0562.1136.1346.1136.2356 0 .1124-.0546.2007-.1639.2648-.1092.0645-.262.0966-.4584.0966-.2748 0-.5468-.042-.816-.1259-.2692-.0843-.5163-.2019-.7403-.3531l-.3366.8745c.23.1628.5032.2875.8204.3746.3167.0867.6655.1302 1.0471.1302.555 0 .991-.1136 1.3081-.3408.3167-.2273.4751-.5397.4751-.938-.0008-.331-.0974-.593-.2906-.7866zm-9.3815-.4332l-.698-.1599c-.1682-.0447-.2862-.0923-.3535-.143-.0669-.0506-.1006-.1207-.1006-.2101 0-.1232.0558-.2186.168-.2859.112-.0673.2664-.101.4627-.101.426 0 .858.1513 1.2955.4542l.3365-.841c-.2245-.1627-.4767-.2886-.757-.3784a2.8323 2.8323 0 0 0-.8663-.1347c-.348 0-.6576.0562-.9296.1683-.272.112-.4822.2665-.6306.4624-.1489.1964-.223.4237-.223.6814 0 .3254.0943.582.282.7696.1876.188.481.3267.8793.4165l.673.1517c.2075.0447.3488.0954.4248.1512.0756.0562.1137.1346.1137.2356 0 .1124-.0546.2007-.164.2648-.1092.0645-.2624.0966-.4584.0966-.2748 0-.5468-.042-.816-.1259-.2688-.0843-.5159-.2019-.7403-.3531l-.3362.8745c.2297.1628.5032.2875.82.3746.3167.0867.6659.1302 1.0471.1302.5551 0 .991-.1136 1.3081-.3408.3168-.2273.4751-.5397.4751-.938 0-.3305-.0966-.593-.2902-.7862-.1944-.194-.5012-.3381-.922-.4336zM9.823 9.9828c-.2918 0-.5539.059-.7863.1766-.2328.1176-.422.2886-.5677.5131v-.5887H7.2325v4.1301h1.27v-2.3133c0-.2803.08-.5048.24-.673.1595-.1683.3713-.2526.635-.2526.219 0 .3797.0645.4838.1936.1037.129.1556.3337.1556.614v2.431h1.27v-2.49c0-.5831-.1207-1.019-.3618-1.308-.2415-.2882-.6089-.4328-1.1022-.4328zM4.4334 8.4594l-.8176 1.9954 1.5381 3.7544h1.7262zm-.3726-.1873H2.4325L0 14.2091h1.6284z" }) + ] + } + ); +}); + +export { SiAnsys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.cjs new file mode 100644 index 000000000..e739810d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D70010"; +const SiAnta = React__namespace.forwardRef(function SiAnta2({ title = "Anta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 15.2372a20.744 20.744 0 0 0-9.86-7.5087 31.2657 31.2657 0 0 1 6.9097 1.0135l-1.5536-1.3192A29.1614 29.1614 0 0 0 9.0497 5.509a29.0797 29.0797 0 0 0-6.4051.7036L0 8.032c.335 0 .8376-.021 1.1747-.021a25.1537 25.1537 0 0 1 20.4571 10.48ZM9.1963 12.9758h3.3334l-.3329 1.183h-1.0532L9.9333 18.491H8.7692l1.206-4.3322H8.8655zm-3.771 0H6.468l.4376 2.9544.8229-2.9544h1.1977l-1.537 5.5152H6.221l-.4041-2.743-.7643 2.743H3.8841ZM0 18.491l2.8225-5.5131h1.181L3.769 18.491H2.5838l.0545-.7391H1.5264l-.3601.7391zm2.0206-1.8844h.6889l.2094-1.9474zm8.2122 1.8844 2.8288-5.5131h1.1768l-.2346 5.5131h-1.181l.0524-.7391h-1.1076l-.3644.7391zm2.0247-1.8844h.689l.2093-1.9474z" }) + ] + } + ); +}); + +exports.default = SiAnta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.d.ts new file mode 100644 index 000000000..a2f40db88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D70010"; +declare const SiAnta: IconType; +export { SiAnta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.mjs new file mode 100644 index 000000000..96b3eaec3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D70010"; +const SiAnta = React.forwardRef(function SiAnta2({ title = "Anta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 15.2372a20.744 20.744 0 0 0-9.86-7.5087 31.2657 31.2657 0 0 1 6.9097 1.0135l-1.5536-1.3192A29.1614 29.1614 0 0 0 9.0497 5.509a29.0797 29.0797 0 0 0-6.4051.7036L0 8.032c.335 0 .8376-.021 1.1747-.021a25.1537 25.1537 0 0 1 20.4571 10.48ZM9.1963 12.9758h3.3334l-.3329 1.183h-1.0532L9.9333 18.491H8.7692l1.206-4.3322H8.8655zm-3.771 0H6.468l.4376 2.9544.8229-2.9544h1.1977l-1.537 5.5152H6.221l-.4041-2.743-.7643 2.743H3.8841ZM0 18.491l2.8225-5.5131h1.181L3.769 18.491H2.5838l.0545-.7391H1.5264l-.3601.7391zm2.0206-1.8844h.6889l.2094-1.9474zm8.2122 1.8844 2.8288-5.5131h1.1768l-.2346 5.5131h-1.181l.0524-.7391h-1.1076l-.3644.7391zm2.0247-1.8844h.689l.2093-1.9474z" }) + ] + } + ); +}); + +export { SiAnta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.cjs new file mode 100644 index 000000000..8d6b86282 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0170FE"; +const SiAntdesign = React__namespace.forwardRef(function SiAntdesign2({ title = "Ant Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.4511 6.6808c.5091-.5064.5091-1.3316 0-1.838l-1.8729-1.873.0027.0027c-.4957-.4957-1.3478-1.3478-2.5535-2.5508-.568-.5547-1.487-.5493-2.0498.0134L.426 10.9787a1.4426 1.4426 0 0 0 0 2.047l10.549 10.541a1.4506 1.4506 0 0 0 2.0497 0l4.4238-4.4211c.509-.5064.509-1.3317 0-1.8381a1.3049 1.3049 0 0 0-1.8408 0l-3.3493 3.3546c-.1393.1394-.3564.1394-.4957 0l-8.4268-8.4188c-.1394-.1393-.1394-.3563 0-.4956L11.76 3.3289c.0107-.0108.0241-.0188.0349-.0295.1393-.1099.3322-.0992.4608.0295l3.3547 3.352c.509.509 1.3343.509 1.8407 0zm-8.2446 5.375a2.8482 2.8456 0 1 0 5.6965 0 2.8482 2.8456 0 1 0-5.6965 0zm14.3672-1.0343l-3.293-3.277c-.5092-.5063-1.3344-.5063-1.8408.0028a1.2968 1.2968 0 0 0 0 1.838l2.2239 2.2213c.1393.1393.1393.3564 0 .4957l-2.1918 2.189a1.2968 1.2968 0 0 0 0 1.8382 1.3049 1.3049 0 0 0 1.8408 0l3.2635-3.2609a1.445 1.445 0 0 0-.0026-2.047Z" }) + ] + } + ); +}); + +exports.default = SiAntdesign; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.d.ts new file mode 100644 index 000000000..4adf20165 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0170FE"; +declare const SiAntdesign: IconType; +export { SiAntdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.mjs new file mode 100644 index 000000000..21691dd59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntdesign.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0170FE"; +const SiAntdesign = React.forwardRef(function SiAntdesign2({ title = "Ant Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.4511 6.6808c.5091-.5064.5091-1.3316 0-1.838l-1.8729-1.873.0027.0027c-.4957-.4957-1.3478-1.3478-2.5535-2.5508-.568-.5547-1.487-.5493-2.0498.0134L.426 10.9787a1.4426 1.4426 0 0 0 0 2.047l10.549 10.541a1.4506 1.4506 0 0 0 2.0497 0l4.4238-4.4211c.509-.5064.509-1.3317 0-1.8381a1.3049 1.3049 0 0 0-1.8408 0l-3.3493 3.3546c-.1393.1394-.3564.1394-.4957 0l-8.4268-8.4188c-.1394-.1393-.1394-.3563 0-.4956L11.76 3.3289c.0107-.0108.0241-.0188.0349-.0295.1393-.1099.3322-.0992.4608.0295l3.3547 3.352c.509.509 1.3343.509 1.8407 0zm-8.2446 5.375a2.8482 2.8456 0 1 0 5.6965 0 2.8482 2.8456 0 1 0-5.6965 0zm14.3672-1.0343l-3.293-3.277c-.5092-.5063-1.3344-.5063-1.8408.0028a1.2968 1.2968 0 0 0 0 1.838l2.2239 2.2213c.1393.1393.1393.3564 0 .4957l-2.1918 2.189a1.2968 1.2968 0 0 0 0 1.8382 1.3049 1.3049 0 0 0 1.8408 0l3.2635-3.2609a1.445 1.445 0 0 0-.0026-2.047Z" }) + ] + } + ); +}); + +export { SiAntdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.cjs new file mode 100644 index 000000000..f713d3071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7328"; +const SiAntena3 = React__namespace.forwardRef(function SiAntena32({ title = "Antena 3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.997 10.755a7.222 7.222 0 00-.997-.083c-.111 0-.497.008-.998.083-2.919.438-4.948 2.08-6.201 4.695-.641 1.336-.357 2.255.8 3.166.068.054.137.106.205.158.213.143.423.28.627.414 3.026 1.975 4.133 2.676 4.58 2.881.186.085.512.244.962.255h.048c.45-.011.777-.17.963-.255.446-.205 1.553-.907 4.579-2.882.205-.134.415-.272.629-.415a22.7 22.7 0 00.203-.156c1.157-.911 1.441-1.83.8-3.166-1.251-2.614-3.281-4.257-6.2-4.695zm7.252 4.36c.637.774 1.205.834 1.843.387.85-.597 1.894-2.857 1.908-4.724-.05-5.112-5.337-8.666-10.648-9.093-.212-.02-.534-.026-.777.153-.247.182-.292.457-.113.812.305.603.708 1.147 1.092 1.7 1.928 2.77 3.56 5.72 5.298 8.607.442.734.85 1.492 1.397 2.157zM5.148 12.956c1.738-2.886 3.37-5.837 5.297-8.607.385-.553.787-1.097 1.092-1.7.18-.355.135-.63-.113-.812-.243-.18-.565-.173-.777-.153C5.337 2.112.05 5.665 0 10.778c.013 1.867 1.057 4.128 1.908 4.724.638.447 1.206.387 1.843-.388.546-.665.954-1.423 1.397-2.157Z" }) + ] + } + ); +}); + +exports.default = SiAntena3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.d.ts new file mode 100644 index 000000000..ba5adafd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7328"; +declare const SiAntena3: IconType; +export { SiAntena3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.mjs new file mode 100644 index 000000000..eabcf9477 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntena3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7328"; +const SiAntena3 = React.forwardRef(function SiAntena32({ title = "Antena 3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.997 10.755a7.222 7.222 0 00-.997-.083c-.111 0-.497.008-.998.083-2.919.438-4.948 2.08-6.201 4.695-.641 1.336-.357 2.255.8 3.166.068.054.137.106.205.158.213.143.423.28.627.414 3.026 1.975 4.133 2.676 4.58 2.881.186.085.512.244.962.255h.048c.45-.011.777-.17.963-.255.446-.205 1.553-.907 4.579-2.882.205-.134.415-.272.629-.415a22.7 22.7 0 00.203-.156c1.157-.911 1.441-1.83.8-3.166-1.251-2.614-3.281-4.257-6.2-4.695zm7.252 4.36c.637.774 1.205.834 1.843.387.85-.597 1.894-2.857 1.908-4.724-.05-5.112-5.337-8.666-10.648-9.093-.212-.02-.534-.026-.777.153-.247.182-.292.457-.113.812.305.603.708 1.147 1.092 1.7 1.928 2.77 3.56 5.72 5.298 8.607.442.734.85 1.492 1.397 2.157zM5.148 12.956c1.738-2.886 3.37-5.837 5.297-8.607.385-.553.787-1.097 1.092-1.7.18-.355.135-.63-.113-.812-.243-.18-.565-.173-.777-.153C5.337 2.112.05 5.665 0 10.778c.013 1.867 1.057 4.128 1.908 4.724.638.447 1.206.387 1.843-.388.546-.665.954-1.423 1.397-2.157Z" }) + ] + } + ); +}); + +export { SiAntena3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.cjs new file mode 100644 index 000000000..05a13e5fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#364FF3"; +const SiAntennapod = React__namespace.forwardRef(function SiAntennapod2({ title = "AntennaPod", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 7.188 10.98l3.339-9.459a2.118 2.118 0 1 1 2.946 0l3.339 9.46A12 12 0 0 0 24 12 12 12 0 0 0 12 0m0 2.824a9.177 9.177 0 0 1 4.969 16.892l-.486-1.376a7.765 7.765 0 1 0-8.967 0l-.485 1.376A9.177 9.177 0 0 1 12 2.824m0 3.529a5.647 5.647 0 0 1 3.739 9.879l-.521-1.478a4.235 4.235 0 1 0-6.436 0l-.522 1.478A5.647 5.647 0 0 1 12 6.353m0 8.298-1.618 4.584a7.4 7.4 0 0 0 3.236 0zm-2.21 6.258-.937 2.656A12 12 0 0 0 12 24a12 12 0 0 0 3.146-.435l-.937-2.656a9.2 9.2 0 0 1-2.209.267 9.2 9.2 0 0 1-2.21-.267" }) + ] + } + ); +}); + +exports.default = SiAntennapod; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.d.ts new file mode 100644 index 000000000..190ec5526 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#364FF3"; +declare const SiAntennapod: IconType; +export { SiAntennapod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.mjs new file mode 100644 index 000000000..66a95845c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntennapod.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#364FF3"; +const SiAntennapod = React.forwardRef(function SiAntennapod2({ title = "AntennaPod", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 7.188 10.98l3.339-9.459a2.118 2.118 0 1 1 2.946 0l3.339 9.46A12 12 0 0 0 24 12 12 12 0 0 0 12 0m0 2.824a9.177 9.177 0 0 1 4.969 16.892l-.486-1.376a7.765 7.765 0 1 0-8.967 0l-.485 1.376A9.177 9.177 0 0 1 12 2.824m0 3.529a5.647 5.647 0 0 1 3.739 9.879l-.521-1.478a4.235 4.235 0 1 0-6.436 0l-.522 1.478A5.647 5.647 0 0 1 12 6.353m0 8.298-1.618 4.584a7.4 7.4 0 0 0 3.236 0zm-2.21 6.258-.937 2.656A12 12 0 0 0 12 24a12 12 0 0 0 3.146-.435l-.937-2.656a9.2 9.2 0 0 1-2.209.267 9.2 9.2 0 0 1-2.21-.267" }) + ] + } + ); +}); + +export { SiAntennapod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.cjs new file mode 100644 index 000000000..fc0179a0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#191919"; +const SiAnthropic = React__namespace.forwardRef(function SiAnthropic2({ title = "Anthropic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" }) + ] + } + ); +}); + +exports.default = SiAnthropic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.d.ts new file mode 100644 index 000000000..7a405c0d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#191919"; +declare const SiAnthropic: IconType; +export { SiAnthropic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.mjs new file mode 100644 index 000000000..5866fbf8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnthropic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#191919"; +const SiAnthropic = React.forwardRef(function SiAnthropic2({ title = "Anthropic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" }) + ] + } + ); +}); + +export { SiAnthropic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.cjs new file mode 100644 index 000000000..9e40a91c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8B5DFF"; +const SiAntv = React__namespace.forwardRef(function SiAntv2({ title = "AntV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.837 1.418c-.363 0-3.064.002-3.545 0-.188 0-.446.1-.62.2-.538.305-.855 1.123-.558 1.735L10.69 21.71c.357.617.801.87 1.324.871.63.001 1.038-.454 1.18-.7.635-1.088 6.214-10.707 6.214-10.707a1.285 1.285 0 0 0-.497-1.694c-.596-.348-1.397-.197-1.744.388-.307.517-4.58 7.888-4.886 8.413-.156.267-.463.2-.585-.017-.216-.383-5.255-9.13-7.833-13.605l.005.004c-.066-.103-.15-.328-.043-.509.09-.155.279-.138.372-.138h9.535a1.3 1.3 0 0 0 0-2.6zm12.737.029v.003a1.3 1.3 0 0 0 0 2.593v.003l2.386.002c.309 0 .406.3.28.514L19.053 6.59l.002.002a1.3 1.3 0 0 0 2.243 1.303l.002.002 2.425-4.2c.354-.62.349-1.13.086-1.582-.315-.544-.915-.667-1.2-.667Zm-2.839 5.642-.038.002H9.71a.54.54 0 0 0-.523.55c0 .12.037.23.098.32l2.505 4.275q.014.028.032.055l.003.005a.47.47 0 0 0 .39.207c.194 0 .36-.12.435-.294l2.506-4.306a.515.515 0 0 0-.42-.814" }) + ] + } + ); +}); + +exports.default = SiAntv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.d.ts new file mode 100644 index 000000000..78af3e57b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8B5DFF"; +declare const SiAntv: IconType; +export { SiAntv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.mjs new file mode 100644 index 000000000..2de76567e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAntv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8B5DFF"; +const SiAntv = React.forwardRef(function SiAntv2({ title = "AntV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.837 1.418c-.363 0-3.064.002-3.545 0-.188 0-.446.1-.62.2-.538.305-.855 1.123-.558 1.735L10.69 21.71c.357.617.801.87 1.324.871.63.001 1.038-.454 1.18-.7.635-1.088 6.214-10.707 6.214-10.707a1.285 1.285 0 0 0-.497-1.694c-.596-.348-1.397-.197-1.744.388-.307.517-4.58 7.888-4.886 8.413-.156.267-.463.2-.585-.017-.216-.383-5.255-9.13-7.833-13.605l.005.004c-.066-.103-.15-.328-.043-.509.09-.155.279-.138.372-.138h9.535a1.3 1.3 0 0 0 0-2.6zm12.737.029v.003a1.3 1.3 0 0 0 0 2.593v.003l2.386.002c.309 0 .406.3.28.514L19.053 6.59l.002.002a1.3 1.3 0 0 0 2.243 1.303l.002.002 2.425-4.2c.354-.62.349-1.13.086-1.582-.315-.544-.915-.667-1.2-.667Zm-2.839 5.642-.038.002H9.71a.54.54 0 0 0-.523.55c0 .12.037.23.098.32l2.505 4.275q.014.028.032.055l.003.005a.47.47 0 0 0 .39.207c.194 0 .36-.12.435-.294l2.506-4.306a.515.515 0 0 0-.42-.814" }) + ] + } + ); +}); + +export { SiAntv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.cjs new file mode 100644 index 000000000..09b65cdfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#476695"; +const SiAnycubic = React__namespace.forwardRef(function SiAnycubic2({ title = "Anycubic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.762.534 8.728 3.481 8.469 7.449-6.494-.631L6.762.534Zm10.72 10.463 6.518.581-7.826 8.749-8.649 3.139 9.957-12.469ZM6.592.601l10.699 10.331L7.355 23.44 0 12.465 6.592.601Z" }) + ] + } + ); +}); + +exports.default = SiAnycubic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.d.ts new file mode 100644 index 000000000..9152a9e03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#476695"; +declare const SiAnycubic: IconType; +export { SiAnycubic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.mjs new file mode 100644 index 000000000..78f764bc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnycubic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#476695"; +const SiAnycubic = React.forwardRef(function SiAnycubic2({ title = "Anycubic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.762.534 8.728 3.481 8.469 7.449-6.494-.631L6.762.534Zm10.72 10.463 6.518.581-7.826 8.749-8.649 3.139 9.957-12.469ZM6.592.601l10.699 10.331L7.355 23.44 0 12.465 6.592.601Z" }) + ] + } + ); +}); + +export { SiAnycubic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.cjs new file mode 100644 index 000000000..281935dd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF443B"; +const SiAnydesk = React__namespace.forwardRef(function SiAnydesk2({ title = "AnyDesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.322 3.677L0 12l8.322 8.323L16.645 12zm7.371.01l-1.849 1.85 6.49 6.456-6.49 6.49 1.85 1.817L24 11.993Z" }) + ] + } + ); +}); + +exports.default = SiAnydesk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.d.ts new file mode 100644 index 000000000..7a41d2f86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF443B"; +declare const SiAnydesk: IconType; +export { SiAnydesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.mjs new file mode 100644 index 000000000..4100f0c15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnydesk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF443B"; +const SiAnydesk = React.forwardRef(function SiAnydesk2({ title = "AnyDesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.322 3.677L0 12l8.322 8.323L16.645 12zm7.371.01l-1.849 1.85 6.49 6.456-6.49 6.49 1.85 1.817L24 11.993Z" }) + ] + } + ); +}); + +export { SiAnydesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.cjs new file mode 100644 index 000000000..1502fe495 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6A7B"; +const SiAnytype = React__namespace.forwardRef(function SiAnytype2({ title = "Anytype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.333 0h13.334A5.322 5.322 0 0 1 24 5.333v13.334A5.322 5.322 0 0 1 18.667 24H5.333A5.322 5.322 0 0 1 0 18.667V5.333A5.322 5.322 0 0 1 5.333 0Zm10.334 7.667v-3H6.344v3zm0 0v11.666h3V7.667ZM9.5 19.333a4.833 4.833 0 1 0 0-9.666 4.833 4.833 0 0 0 0 9.666z" }) + ] + } + ); +}); + +exports.default = SiAnytype; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.d.ts new file mode 100644 index 000000000..e5bb3813b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6A7B"; +declare const SiAnytype: IconType; +export { SiAnytype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.mjs new file mode 100644 index 000000000..9d827a359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAnytype.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6A7B"; +const SiAnytype = React.forwardRef(function SiAnytype2({ title = "Anytype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.333 0h13.334A5.322 5.322 0 0 1 24 5.333v13.334A5.322 5.322 0 0 1 18.667 24H5.333A5.322 5.322 0 0 1 0 18.667V5.333A5.322 5.322 0 0 1 5.333 0Zm10.334 7.667v-3H6.344v3zm0 0v11.666h3V7.667ZM9.5 19.333a4.833 4.833 0 1 0 0-9.666 4.833 4.833 0 0 0 0 9.666z" }) + ] + } + ); +}); + +export { SiAnytype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApache.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApache.cjs new file mode 100644 index 000000000..f6b52ae94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApache.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D22128"; +const SiApache = React__namespace.forwardRef(function SiApache2({ title = "Apache", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.805 2.197v.066h.156v.44h.072v-.44h.156v-.066zm.9 0l-.175.353-.172-.353h-.087v.506h.067V2.3l.172.35h.045l.172-.35v.404h.066v-.506zm-4.257 1c-.204.31-.424.66-.66 1.06l-.04.062a44.457 44.457 0 00-1.265 2.29c-.187.36-.38.742-.577 1.146l2.267-.25c.66-.302.955-.578 1.242-.976a15.5 15.5 0 00.23-.342c.23-.363.46-.763.663-1.16.197-.386.37-.767.505-1.11.083-.22.15-.422.198-.6.042-.158.074-.307.1-.45-.884.15-1.965.295-2.668.33zM11.894 7.78l-.077.16c-.078.16-.157.32-.236.488-.086.18-.172.364-.26.552l-.132.287a75.265 75.265 0 00-1.427 3.3c-.163.397-.327.807-.493 1.23-.15.38-.297.765-.45 1.164l-.02.06c-.15.396-.3.802-.453 1.22l-.01.027.72-.08a.213.213 0 01-.042-.006c.863-.106 2.01-.75 2.75-1.547.342-.367.652-.8.94-1.306.213-.377.413-.795.604-1.258.168-.405.328-.843.48-1.318-.196.105-.423.18-.673.235a2.184 2.184 0 01-.273.046c.806-.31 1.314-.905 1.683-1.64a2.816 2.816 0 01-.968.428c-.06.012-.116.022-.174.03l-.043.006h.002c.278-.118.514-.248.718-.403a2.571 2.571 0 00.637-.698l.063-.104.077-.154a8.107 8.107 0 00.367-.85l.03-.088a3.04 3.04 0 00.123-.463.733.733 0 01-.094.065c-.243.145-.66.277-.996.34l.663-.074-.664.073h-.017l-.1.017c.006-.003.01-.006.017-.008l-2.265.25-.013.022zM8.27 16.45c-.117.323-.236.654-.355.992l-.005.015c-.016.046-.032.094-.05.142-.08.227-.15.432-.31.9.264.12.475.435.675.793a1.44 1.44 0 00-.466-.99c1.293.06 2.41-.27 2.99-1.217.05-.084.096-.173.14-.268-.26.333-.59.474-1.2.44 0 0-.004 0-.005.002l.004-.002c.9-.404 1.354-.79 1.754-1.433.094-.153.186-.32.28-.503-.788.81-1.702 1.04-2.664.865l-.72.078a6.43 6.43 0 00-.067.183zM15.42.112c-.376.222-1 .85-1.748 1.763l.686 1.294c.48-.687.97-1.307 1.462-1.836l.058-.062c-.02.02-.04.04-.057.062-.16.176-.644.74-1.375 1.863.703-.035 1.784-.18 2.666-.33.262-1.47-.258-2.142-.258-2.142s-.66-1.07-1.436-.61zm-3.084 6.402a40.253 40.253 0 011.306-2.26l.04-.064c.224-.352.45-.693.677-1.02l-.685-1.293-.157.192c-.197.245-.403.51-.613.79a39.853 39.853 0 00-2.016 2.97l-.022.038.893 1.763c.19-.378.38-.752.575-1.118zm-3.73 8.32c.158-.406.319-.81.483-1.225.156-.394.32-.79.484-1.19a91.133 91.133 0 011.6-3.604l.205-.424c.12-.243.237-.485.36-.724a.125.125 0 01.02-.04l-.895-1.763-.044.07c-.207.34-.414.687-.617 1.042a38.056 38.056 0 00-1.092 2.04l-.094.193a24.573 24.573 0 00-1.258 3.087 18.492 18.492 0 00-.52 1.997l.896 1.77c.117-.317.24-.638.364-.963zm-1.376-.476a13.38 13.38 0 00-.234 1.692c0 .02-.004.04-.005.06-.28-.45-1.03-.888-1.026-.884.537.778.944 1.55 1.005 2.31-.29.058-.684-.027-1.14-.195.475.436.83.556.97.588-.434.03-.89.328-1.346.67.668-.27 1.21-.38 1.596-.29-.61 1.74-1.23 3.655-1.843 5.69a.538.538 0 00.364-.354c.11-.368.84-2.786 1.978-5.965l.097-.27.028-.078c.12-.332.246-.672.374-1.02l.09-.237v-.004L7.24 14.3c-.003.02-.01.04-.012.06z" }) + ] + } + ); +}); + +exports.default = SiApache; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApache.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApache.d.ts new file mode 100644 index 000000000..753f1887e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApache.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D22128"; +declare const SiApache: IconType; +export { SiApache as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApache.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApache.mjs new file mode 100644 index 000000000..6bc15f8b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApache.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D22128"; +const SiApache = React.forwardRef(function SiApache2({ title = "Apache", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.805 2.197v.066h.156v.44h.072v-.44h.156v-.066zm.9 0l-.175.353-.172-.353h-.087v.506h.067V2.3l.172.35h.045l.172-.35v.404h.066v-.506zm-4.257 1c-.204.31-.424.66-.66 1.06l-.04.062a44.457 44.457 0 00-1.265 2.29c-.187.36-.38.742-.577 1.146l2.267-.25c.66-.302.955-.578 1.242-.976a15.5 15.5 0 00.23-.342c.23-.363.46-.763.663-1.16.197-.386.37-.767.505-1.11.083-.22.15-.422.198-.6.042-.158.074-.307.1-.45-.884.15-1.965.295-2.668.33zM11.894 7.78l-.077.16c-.078.16-.157.32-.236.488-.086.18-.172.364-.26.552l-.132.287a75.265 75.265 0 00-1.427 3.3c-.163.397-.327.807-.493 1.23-.15.38-.297.765-.45 1.164l-.02.06c-.15.396-.3.802-.453 1.22l-.01.027.72-.08a.213.213 0 01-.042-.006c.863-.106 2.01-.75 2.75-1.547.342-.367.652-.8.94-1.306.213-.377.413-.795.604-1.258.168-.405.328-.843.48-1.318-.196.105-.423.18-.673.235a2.184 2.184 0 01-.273.046c.806-.31 1.314-.905 1.683-1.64a2.816 2.816 0 01-.968.428c-.06.012-.116.022-.174.03l-.043.006h.002c.278-.118.514-.248.718-.403a2.571 2.571 0 00.637-.698l.063-.104.077-.154a8.107 8.107 0 00.367-.85l.03-.088a3.04 3.04 0 00.123-.463.733.733 0 01-.094.065c-.243.145-.66.277-.996.34l.663-.074-.664.073h-.017l-.1.017c.006-.003.01-.006.017-.008l-2.265.25-.013.022zM8.27 16.45c-.117.323-.236.654-.355.992l-.005.015c-.016.046-.032.094-.05.142-.08.227-.15.432-.31.9.264.12.475.435.675.793a1.44 1.44 0 00-.466-.99c1.293.06 2.41-.27 2.99-1.217.05-.084.096-.173.14-.268-.26.333-.59.474-1.2.44 0 0-.004 0-.005.002l.004-.002c.9-.404 1.354-.79 1.754-1.433.094-.153.186-.32.28-.503-.788.81-1.702 1.04-2.664.865l-.72.078a6.43 6.43 0 00-.067.183zM15.42.112c-.376.222-1 .85-1.748 1.763l.686 1.294c.48-.687.97-1.307 1.462-1.836l.058-.062c-.02.02-.04.04-.057.062-.16.176-.644.74-1.375 1.863.703-.035 1.784-.18 2.666-.33.262-1.47-.258-2.142-.258-2.142s-.66-1.07-1.436-.61zm-3.084 6.402a40.253 40.253 0 011.306-2.26l.04-.064c.224-.352.45-.693.677-1.02l-.685-1.293-.157.192c-.197.245-.403.51-.613.79a39.853 39.853 0 00-2.016 2.97l-.022.038.893 1.763c.19-.378.38-.752.575-1.118zm-3.73 8.32c.158-.406.319-.81.483-1.225.156-.394.32-.79.484-1.19a91.133 91.133 0 011.6-3.604l.205-.424c.12-.243.237-.485.36-.724a.125.125 0 01.02-.04l-.895-1.763-.044.07c-.207.34-.414.687-.617 1.042a38.056 38.056 0 00-1.092 2.04l-.094.193a24.573 24.573 0 00-1.258 3.087 18.492 18.492 0 00-.52 1.997l.896 1.77c.117-.317.24-.638.364-.963zm-1.376-.476a13.38 13.38 0 00-.234 1.692c0 .02-.004.04-.005.06-.28-.45-1.03-.888-1.026-.884.537.778.944 1.55 1.005 2.31-.29.058-.684-.027-1.14-.195.475.436.83.556.97.588-.434.03-.89.328-1.346.67.668-.27 1.21-.38 1.596-.29-.61 1.74-1.23 3.655-1.843 5.69a.538.538 0 00.364-.354c.11-.368.84-2.786 1.978-5.965l.097-.27.028-.078c.12-.332.246-.672.374-1.02l.09-.237v-.004L7.24 14.3c-.003.02-.01.04-.012.06z" }) + ] + } + ); +}); + +export { SiApache as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.cjs new file mode 100644 index 000000000..647343956 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#017CEE"; +const SiApacheairflow = React__namespace.forwardRef(function SiApacheairflow2({ title = "Apache Airflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.195 16.822l4.002-4.102C23.55 10.308 23.934 5.154 24 .43a.396.396 0 0 0-.246-.373.392.392 0 0 0-.437.09l-6.495 6.658-4.102-4.003C10.309.45 5.154.066.43 0H.423a.397.397 0 0 0-.277.683l6.658 6.494-4.003 4.103C.45 13.692.065 18.846 0 23.57a.398.398 0 0 0 .683.282l6.494-6.657 3.934 3.837.17.165c2.41 2.353 7.565 2.737 12.288 2.803h.006a.397.397 0 0 0 .277-.683l-6.657-6.495zm-.409-9.476c.04.115.05.24.031.344-.17.96-1.593 2.538-4.304 3.87a.597.597 0 0 0-.08-.079c1.432-3.155 1.828-5.61 1.175-7.322l3.058 2.984.12.203zm-.131 9.44a.73.73 0 0 1-.347.031c-.96-.171-2.537-1.594-3.87-4.307a.656.656 0 0 0 .08-.078l-.001.001c3.155 1.432 5.61 1.83 7.324 1.174l-2.969 3.043M23.568.392a.05.05 0 0 1 .052-.011c.018.006.03.024.029.043-.065 4.655-.437 9.726-2.703 12.05-1.53 1.565-4.326 1.419-8.283-.377.006-.037.021-.07.02-.108 0-.044-.017-.082-.026-.123 2.83-1.39 4.315-3.037 4.506-4.115.057-.322-.009-.542-.102-.688l6.507-6.67V.392zM.393.43A.045.045 0 0 1 .382.38C.39.36.403.343.425.35c4.655.065 9.727.438 12.05 2.703l.002.002c1.56 1.527 1.415 4.323-.379 8.28-.033-.005-.062-.02-.097-.02h-.008c-.045.001-.084.019-.126.027-1.39-2.83-3.037-4.314-4.115-4.506-.323-.057-.542.01-.688.103L.393.43zm11.94 11.563a.331.331 0 0 1-.327.335H12a.332.332 0 0 1-.004-.661c.172.016.333.144.335.326h.002zm-5.12 4.661a.722.722 0 0 1-.03-.345c.17-.96 1.595-2.54 4.309-3.873.013.016.019.035.033.05.013.012.03.017.044.028-1.434 3.158-1.83 5.613-1.177 7.326l-3.041-2.967m-.006-9.659a.735.735 0 0 1 .345-.031c.961.17 2.54 1.594 3.871 4.306a.597.597 0 0 0-.079.08c-2.167-.983-4.007-1.484-5.498-1.484-.68 0-1.289.103-1.825.308L7.128 7.35M.43 23.607c-.018.018-.038.015-.052.01-.019-.007-.028-.021-.028-.043.065-4.654.437-9.725 2.703-12.049 1.527-1.565 4.325-1.419 8.286.378-.006.035-.02.067-.02.104 0 .043.018.083.026.124-2.831 1.391-4.317 3.04-4.51 4.117-.057.322.01.542.103.688L.43 23.607zm23.144.042c-4.655-.065-9.726-.437-12.05-2.703l-.005-.006c-1.56-1.526-1.412-4.322.383-8.279.033.005.064.02.098.02h.009c.043 0 .08-.018.122-.027 1.39 2.832 3.036 4.317 4.115 4.51.083.014.16.021.23.021a.776.776 0 0 0 .45-.133l6.68 6.516c.02.02.016.04.01.052a.042.042 0 0 1-.042.029z" }) + ] + } + ); +}); + +exports.default = SiApacheairflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.d.ts new file mode 100644 index 000000000..2db051684 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#017CEE"; +declare const SiApacheairflow: IconType; +export { SiApacheairflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.mjs new file mode 100644 index 000000000..e980e6cb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheairflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#017CEE"; +const SiApacheairflow = React.forwardRef(function SiApacheairflow2({ title = "Apache Airflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.195 16.822l4.002-4.102C23.55 10.308 23.934 5.154 24 .43a.396.396 0 0 0-.246-.373.392.392 0 0 0-.437.09l-6.495 6.658-4.102-4.003C10.309.45 5.154.066.43 0H.423a.397.397 0 0 0-.277.683l6.658 6.494-4.003 4.103C.45 13.692.065 18.846 0 23.57a.398.398 0 0 0 .683.282l6.494-6.657 3.934 3.837.17.165c2.41 2.353 7.565 2.737 12.288 2.803h.006a.397.397 0 0 0 .277-.683l-6.657-6.495zm-.409-9.476c.04.115.05.24.031.344-.17.96-1.593 2.538-4.304 3.87a.597.597 0 0 0-.08-.079c1.432-3.155 1.828-5.61 1.175-7.322l3.058 2.984.12.203zm-.131 9.44a.73.73 0 0 1-.347.031c-.96-.171-2.537-1.594-3.87-4.307a.656.656 0 0 0 .08-.078l-.001.001c3.155 1.432 5.61 1.83 7.324 1.174l-2.969 3.043M23.568.392a.05.05 0 0 1 .052-.011c.018.006.03.024.029.043-.065 4.655-.437 9.726-2.703 12.05-1.53 1.565-4.326 1.419-8.283-.377.006-.037.021-.07.02-.108 0-.044-.017-.082-.026-.123 2.83-1.39 4.315-3.037 4.506-4.115.057-.322-.009-.542-.102-.688l6.507-6.67V.392zM.393.43A.045.045 0 0 1 .382.38C.39.36.403.343.425.35c4.655.065 9.727.438 12.05 2.703l.002.002c1.56 1.527 1.415 4.323-.379 8.28-.033-.005-.062-.02-.097-.02h-.008c-.045.001-.084.019-.126.027-1.39-2.83-3.037-4.314-4.115-4.506-.323-.057-.542.01-.688.103L.393.43zm11.94 11.563a.331.331 0 0 1-.327.335H12a.332.332 0 0 1-.004-.661c.172.016.333.144.335.326h.002zm-5.12 4.661a.722.722 0 0 1-.03-.345c.17-.96 1.595-2.54 4.309-3.873.013.016.019.035.033.05.013.012.03.017.044.028-1.434 3.158-1.83 5.613-1.177 7.326l-3.041-2.967m-.006-9.659a.735.735 0 0 1 .345-.031c.961.17 2.54 1.594 3.871 4.306a.597.597 0 0 0-.079.08c-2.167-.983-4.007-1.484-5.498-1.484-.68 0-1.289.103-1.825.308L7.128 7.35M.43 23.607c-.018.018-.038.015-.052.01-.019-.007-.028-.021-.028-.043.065-4.654.437-9.725 2.703-12.049 1.527-1.565 4.325-1.419 8.286.378-.006.035-.02.067-.02.104 0 .043.018.083.026.124-2.831 1.391-4.317 3.04-4.51 4.117-.057.322.01.542.103.688L.43 23.607zm23.144.042c-4.655-.065-9.726-.437-12.05-2.703l-.005-.006c-1.56-1.526-1.412-4.322.383-8.279.033.005.064.02.098.02h.009c.043 0 .08-.018.122-.027 1.39 2.832 3.036 4.317 4.115 4.51.083.014.16.021.23.021a.776.776 0 0 0 .45-.133l6.68 6.516c.02.02.016.04.01.052a.042.042 0 0 1-.042.029z" }) + ] + } + ); +}); + +export { SiApacheairflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.cjs new file mode 100644 index 000000000..dc516cd7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A81C7D"; +const SiApacheant = React__namespace.forwardRef(function SiApacheant2({ title = "Apache Ant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.006 17.292c-.245.167-.534.36-.618.445-.148.147-.322.455-.452.643-.129.187-.486.268-.687.16-.2-.107-.12-.08.12-.147.163-.045.882-.646 1.401-1.101h.236zm2.434-5.4c-.23-.013-.444-.003-.589.047-.428.147-1.352.696-1.5 1.03-.12.276-.25.515-.263.815a1.386 1.386 0 0 0-.05.122l2.402-2.014zm17.41 1.711s-.309-.312-.576-.432c-.268-.121-.255-.242-.415-.255a2.398 2.398 0 0 1-.697-.174c-.24-.107-.923-.388-1.218-.549a4.102 4.102 0 0 1-.563-.348c-.08-.067-.214-.058-.468-.018 0 0-.724.165-.978.285-.14.067-.378.194-.579.309l.072.167c.08-.062.174-.121.28-.167.334-.148.655-.282 1.03-.309.375-.026.429-.053.429-.053s.174-.027.375.08c.2.107 1.393.71 1.567.777.174.067.442.188.63.335.186.147.334.134.334.134s.134.147.335.281c.2.134.267.2.388.228.12.026.362.151.054-.29zm-8.087 5.291c-.268-.093-.616-.32-.657-.388-.04-.067-.16-.12-.16-.12s-.359-.421-.573-.836c0 0-.043-.104-.11-.258h-.255c.193.23.436.567.668.86.255.322.11.354.19.354s.026.054.093.12c.067.068.429.282.523.349.093.067.482.2.535.16.054-.04.08-.173.08-.173s-.067.026-.334-.068zm-2.43-5.217a1.1 1.1 0 0 0 .058-.078c.197-.296.425-.53.54-.78.042.011.086.02.128.022.01.251.127.45.216.61.06.113.208.243.367.362a2.133 2.133 0 0 0-.249.053s-1.089.22-1.29.327c-.202.107-.37.248-.498.207-.128-.042.213-.16.509-.383a.562.562 0 0 0 .219-.34m.73-1.842a1.235 1.235 0 0 0-.279.075 1.198 1.198 0 0 0-.367-.333c.048-.107.101-.24.188-.362.134-.187.268-.187.308-.04.025.089.097.415.15.66m2.007 1.235c.134.016.134.05.268.25.134.201.167.469.067.57-.1.1-.218.133-.502-.252-.285-.385-.006-.59.167-.568m-7.527-2.685a9.952 9.952 0 0 0-.688.452l7.131-5.98h.086l3.24 7.59a2.985 2.985 0 0 0-.301.188s-.106 0-.146.05l-.015-.01c-.067-.04-.495-.455-.495-.455-.215-.188-.577-.576-.804-.764-.228-.187-1.145-.478-1.526-.441-.358.034-.526.267-.618.495a2.4 2.4 0 0 0-.24-.361l-.294-.349s-.241 0-.482.161c-.146.097-.351.318-.49.476a.432.432 0 0 0-.26.073c-.174.147-1.165.844-1.205 1.018-.025.108-.066.18-.119.22a.374.374 0 0 0-.417-.073l-.036.016c-.025-.483-.092-1.748-.125-1.877-.04-.16-.12-.281-.254-.214-.134.066-.255.254-.255.455 0 .2.08.308.108.388.022.067.044 1.06.09 1.448-.176.098-.338.219-.385.36-.094.281-.08.388-.16.469a.288.288 0 0 1-.045.033c-.058-.055-.125-.11-.177-.163-.028-.122-.036-.26.074-.325.134-.081.134-.603 0-.657l-.134-.053s.241-.898.188-1.406c-.054-.51-.108-1.045-.215-1.126-.107-.08-.335-.04-.335-.04s-.307.174-.696.402m2.852 4.888c.135 0 .228.147.228.147s-.013.255.175.308c.187.054.696-.187.816-.294.12-.107.362.16.469.388.107.228.67 1.179.87 1.406.05.057.104.122.16.193H3.817c.253-.172.524-.353.562-.407.066-.092 1.185-1.211 1.307-1.436a.673.673 0 0 0 .214-.158.594.594 0 0 0 .18-.04c.362-.147.937-.602 1.219-1.004a3.38 3.38 0 0 0 .384-.687c.15-.118.27-.202.312-.21.134-.027.348-.094.348.133 0 .228.228.723.429 1.018.2.295.468.536.468.536s-.013.12.121.134c.134.013.254-.027.281.04.065.161.348.04.482-.08.134-.121.188.08.375-.04a.543.543 0 0 0 .268-.496.283.283 0 0 0-.112-.224l.018-.017s.16.011.32-.04a.934.934 0 0 0 .002.28c.04.336.268.55.401.55m-7.097 1.54c-.088.088-.362.335-.677.608H0l3.988-3.343c-.083.366-.066.882.243 1.543 0 0 .241.147.616.107.083-.008.202-.012.335-.026-.329.428-.73.958-.884 1.11m13.78-3.896c.05-.042.155-.17.308-.295l2.05 4.8h-6.117a33.173 33.173 0 0 0-.312-.715c-.187-.415-.804-1.634-1.072-1.7a.953.953 0 0 0-.79.173c-.187.161-.267.107-.361.04-.094-.066.014-.227-.04-.455a1.699 1.699 0 0 0-.116-.326.17.17 0 0 0 .143-.116c.053-.147.04-.214.227-.187.028.004.07.007.12.008a.301.301 0 0 0-.043.114c-.006.15.114.422.291.488s.929.394 1.086.236c.158-.157.858-.54.982-.609.125-.068.354-.115.432-.098.079.017.24.6.515 1.099.276.498.23.707.41.637.18-.07.177.134.342.13.166-.006.196.11.292.295.097.186.198.414.437.452.238.038 1.185.284 1.293.226.11-.059.114-.208-.16-.268-.275-.06-.919-.063-1.062-.162-.143-.1-.179-.628-.33-.689-.15-.06-.38-.137-.409-.198-.024-.052-.563-1.007-.77-1.517.273.117.695.282.953.365.375.12 1.018.321 1.286.321.17 0 .237-.06.263-.103a.9.9 0 0 0 .045.103c.053.094.133.16.133.16s-.026.054.054.094.63.121.83.309c.201.187.483.549.51.883.026.335.24.697.347.71.108.013.228 0 .12-.455-.106-.456-.267-.817-.521-1.018-.255-.201-.911-.522-.991-.563-.08-.04-.187-.147-.228-.147-.04 0-.027-.04-.094-.268a4.004 4.004 0 0 1-.035-.132c.017-.045.08-.215.102-.444.027-.267-.094-.856-.2-1.004 0 0-.011-.094-.013-.171.033.016.066.019.093-.003M6.77 11.924a4.581 4.581 0 0 0-.189-.02l.764-.642c-.114.167-.544.623-.544.623l-.03.04m2.44 1.915c.09.09.165.314.242.422-.056.177-.072.26.093.315.201.067.375-.027.375-.027s.025.029.065.064c-.167.097-.324.206-.373.27-.08.108-.174.054-.174.054s-.321-.535-.455-1.031a1.886 1.886 0 0 0-.053-.166c.106.022.204.023.28.099m-.051-3.63c.12-.067.228-.04.201.16-.027.202-.16 1.019-.174 1.327-.013.307.013.937.013.937s-.167.116-.148.247c-.05-.01-.088-.015-.106-.02-.054-.013.107-.548-.094-.682-.2-.134-.576.013-.71.08-.108.054-.313.09-.387.103a.384.384 0 0 0-.188-.25c-.099-.05-.331-.112-.6-.159l.425-.457s.322-.027.55-.188c.227-.16 1.098-1.031 1.218-1.098m-1.134 3.057c-.095.047-.185.12-.284.194a.267.267 0 0 0-.015-.13.612.612 0 0 1-.023-.25c.066.04.2.124.322.186" }) + ] + } + ); +}); + +exports.default = SiApacheant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.d.ts new file mode 100644 index 000000000..e38ecb69b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A81C7D"; +declare const SiApacheant: IconType; +export { SiApacheant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.mjs new file mode 100644 index 000000000..abb4a5d93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A81C7D"; +const SiApacheant = React.forwardRef(function SiApacheant2({ title = "Apache Ant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.006 17.292c-.245.167-.534.36-.618.445-.148.147-.322.455-.452.643-.129.187-.486.268-.687.16-.2-.107-.12-.08.12-.147.163-.045.882-.646 1.401-1.101h.236zm2.434-5.4c-.23-.013-.444-.003-.589.047-.428.147-1.352.696-1.5 1.03-.12.276-.25.515-.263.815a1.386 1.386 0 0 0-.05.122l2.402-2.014zm17.41 1.711s-.309-.312-.576-.432c-.268-.121-.255-.242-.415-.255a2.398 2.398 0 0 1-.697-.174c-.24-.107-.923-.388-1.218-.549a4.102 4.102 0 0 1-.563-.348c-.08-.067-.214-.058-.468-.018 0 0-.724.165-.978.285-.14.067-.378.194-.579.309l.072.167c.08-.062.174-.121.28-.167.334-.148.655-.282 1.03-.309.375-.026.429-.053.429-.053s.174-.027.375.08c.2.107 1.393.71 1.567.777.174.067.442.188.63.335.186.147.334.134.334.134s.134.147.335.281c.2.134.267.2.388.228.12.026.362.151.054-.29zm-8.087 5.291c-.268-.093-.616-.32-.657-.388-.04-.067-.16-.12-.16-.12s-.359-.421-.573-.836c0 0-.043-.104-.11-.258h-.255c.193.23.436.567.668.86.255.322.11.354.19.354s.026.054.093.12c.067.068.429.282.523.349.093.067.482.2.535.16.054-.04.08-.173.08-.173s-.067.026-.334-.068zm-2.43-5.217a1.1 1.1 0 0 0 .058-.078c.197-.296.425-.53.54-.78.042.011.086.02.128.022.01.251.127.45.216.61.06.113.208.243.367.362a2.133 2.133 0 0 0-.249.053s-1.089.22-1.29.327c-.202.107-.37.248-.498.207-.128-.042.213-.16.509-.383a.562.562 0 0 0 .219-.34m.73-1.842a1.235 1.235 0 0 0-.279.075 1.198 1.198 0 0 0-.367-.333c.048-.107.101-.24.188-.362.134-.187.268-.187.308-.04.025.089.097.415.15.66m2.007 1.235c.134.016.134.05.268.25.134.201.167.469.067.57-.1.1-.218.133-.502-.252-.285-.385-.006-.59.167-.568m-7.527-2.685a9.952 9.952 0 0 0-.688.452l7.131-5.98h.086l3.24 7.59a2.985 2.985 0 0 0-.301.188s-.106 0-.146.05l-.015-.01c-.067-.04-.495-.455-.495-.455-.215-.188-.577-.576-.804-.764-.228-.187-1.145-.478-1.526-.441-.358.034-.526.267-.618.495a2.4 2.4 0 0 0-.24-.361l-.294-.349s-.241 0-.482.161c-.146.097-.351.318-.49.476a.432.432 0 0 0-.26.073c-.174.147-1.165.844-1.205 1.018-.025.108-.066.18-.119.22a.374.374 0 0 0-.417-.073l-.036.016c-.025-.483-.092-1.748-.125-1.877-.04-.16-.12-.281-.254-.214-.134.066-.255.254-.255.455 0 .2.08.308.108.388.022.067.044 1.06.09 1.448-.176.098-.338.219-.385.36-.094.281-.08.388-.16.469a.288.288 0 0 1-.045.033c-.058-.055-.125-.11-.177-.163-.028-.122-.036-.26.074-.325.134-.081.134-.603 0-.657l-.134-.053s.241-.898.188-1.406c-.054-.51-.108-1.045-.215-1.126-.107-.08-.335-.04-.335-.04s-.307.174-.696.402m2.852 4.888c.135 0 .228.147.228.147s-.013.255.175.308c.187.054.696-.187.816-.294.12-.107.362.16.469.388.107.228.67 1.179.87 1.406.05.057.104.122.16.193H3.817c.253-.172.524-.353.562-.407.066-.092 1.185-1.211 1.307-1.436a.673.673 0 0 0 .214-.158.594.594 0 0 0 .18-.04c.362-.147.937-.602 1.219-1.004a3.38 3.38 0 0 0 .384-.687c.15-.118.27-.202.312-.21.134-.027.348-.094.348.133 0 .228.228.723.429 1.018.2.295.468.536.468.536s-.013.12.121.134c.134.013.254-.027.281.04.065.161.348.04.482-.08.134-.121.188.08.375-.04a.543.543 0 0 0 .268-.496.283.283 0 0 0-.112-.224l.018-.017s.16.011.32-.04a.934.934 0 0 0 .002.28c.04.336.268.55.401.55m-7.097 1.54c-.088.088-.362.335-.677.608H0l3.988-3.343c-.083.366-.066.882.243 1.543 0 0 .241.147.616.107.083-.008.202-.012.335-.026-.329.428-.73.958-.884 1.11m13.78-3.896c.05-.042.155-.17.308-.295l2.05 4.8h-6.117a33.173 33.173 0 0 0-.312-.715c-.187-.415-.804-1.634-1.072-1.7a.953.953 0 0 0-.79.173c-.187.161-.267.107-.361.04-.094-.066.014-.227-.04-.455a1.699 1.699 0 0 0-.116-.326.17.17 0 0 0 .143-.116c.053-.147.04-.214.227-.187.028.004.07.007.12.008a.301.301 0 0 0-.043.114c-.006.15.114.422.291.488s.929.394 1.086.236c.158-.157.858-.54.982-.609.125-.068.354-.115.432-.098.079.017.24.6.515 1.099.276.498.23.707.41.637.18-.07.177.134.342.13.166-.006.196.11.292.295.097.186.198.414.437.452.238.038 1.185.284 1.293.226.11-.059.114-.208-.16-.268-.275-.06-.919-.063-1.062-.162-.143-.1-.179-.628-.33-.689-.15-.06-.38-.137-.409-.198-.024-.052-.563-1.007-.77-1.517.273.117.695.282.953.365.375.12 1.018.321 1.286.321.17 0 .237-.06.263-.103a.9.9 0 0 0 .045.103c.053.094.133.16.133.16s-.026.054.054.094.63.121.83.309c.201.187.483.549.51.883.026.335.24.697.347.71.108.013.228 0 .12-.455-.106-.456-.267-.817-.521-1.018-.255-.201-.911-.522-.991-.563-.08-.04-.187-.147-.228-.147-.04 0-.027-.04-.094-.268a4.004 4.004 0 0 1-.035-.132c.017-.045.08-.215.102-.444.027-.267-.094-.856-.2-1.004 0 0-.011-.094-.013-.171.033.016.066.019.093-.003M6.77 11.924a4.581 4.581 0 0 0-.189-.02l.764-.642c-.114.167-.544.623-.544.623l-.03.04m2.44 1.915c.09.09.165.314.242.422-.056.177-.072.26.093.315.201.067.375-.027.375-.027s.025.029.065.064c-.167.097-.324.206-.373.27-.08.108-.174.054-.174.054s-.321-.535-.455-1.031a1.886 1.886 0 0 0-.053-.166c.106.022.204.023.28.099m-.051-3.63c.12-.067.228-.04.201.16-.027.202-.16 1.019-.174 1.327-.013.307.013.937.013.937s-.167.116-.148.247c-.05-.01-.088-.015-.106-.02-.054-.013.107-.548-.094-.682-.2-.134-.576.013-.71.08-.108.054-.313.09-.387.103a.384.384 0 0 0-.188-.25c-.099-.05-.331-.112-.6-.159l.425-.457s.322-.027.55-.188c.227-.16 1.098-1.031 1.218-1.098m-1.134 3.057c-.095.047-.185.12-.284.194a.267.267 0 0 0-.015-.13.612.612 0 0 1-.023-.25c.066.04.2.124.322.186" }) + ] + } + ); +}); + +export { SiApacheant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.cjs new file mode 100644 index 000000000..53ab8199d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#30638E"; +const SiApacheavro = React__namespace.forwardRef(function SiApacheavro2({ title = "Apache Avro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.704 3.324s-.464.428.024.982c.363.412.904.16.904.16s.5-.274.12-.85c-.492-.75-1.048-.292-1.048-.292ZM23.927 22 5.456 13.966S-.58 10.32.046 8.88c.608-1.393 5.988 1.415 6.557 1.544.569.13.886-.221.896-.466.017-.354-.799-1.366-.376-1.798.422-.431 1.8.408 1.8.408l1.12.757L23.926 22ZM24 21.924 11.81 8.74S9.615 6.306 9.706 5.61c.091-.698 3.007 1.527 3.007 1.527s.324.305.632.252c.307-.05-.022-.55-.022-.55s-.504-1.142-.167-1.347c.338-.203 1.191.657 1.191.657s.213.215.437.157c.224-.06.104-.539.104-.539s-1.542-3.471-.87-3.73c1.026-.396 2.487 2.476 2.977 3.37C17.118 5.654 24 21.924 24 21.924ZM4.978 5.611s-.626.404.07 1.181c.639.716 1.208.345 1.208.345s.59-.352.024-1.017c-.748-.877-1.302-.51-1.302-.51ZM21.288 21.215l-13.87-3.867-.885-2.551 14.755 6.418Z" }) + ] + } + ); +}); + +exports.default = SiApacheavro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.d.ts new file mode 100644 index 000000000..f2746c6cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#30638E"; +declare const SiApacheavro: IconType; +export { SiApacheavro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.mjs new file mode 100644 index 000000000..9c9333fa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheavro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#30638E"; +const SiApacheavro = React.forwardRef(function SiApacheavro2({ title = "Apache Avro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.704 3.324s-.464.428.024.982c.363.412.904.16.904.16s.5-.274.12-.85c-.492-.75-1.048-.292-1.048-.292ZM23.927 22 5.456 13.966S-.58 10.32.046 8.88c.608-1.393 5.988 1.415 6.557 1.544.569.13.886-.221.896-.466.017-.354-.799-1.366-.376-1.798.422-.431 1.8.408 1.8.408l1.12.757L23.926 22ZM24 21.924 11.81 8.74S9.615 6.306 9.706 5.61c.091-.698 3.007 1.527 3.007 1.527s.324.305.632.252c.307-.05-.022-.55-.022-.55s-.504-1.142-.167-1.347c.338-.203 1.191.657 1.191.657s.213.215.437.157c.224-.06.104-.539.104-.539s-1.542-3.471-.87-3.73c1.026-.396 2.487 2.476 2.977 3.37C17.118 5.654 24 21.924 24 21.924ZM4.978 5.611s-.626.404.07 1.181c.639.716 1.208.345 1.208.345s.59-.352.024-1.017c-.748-.877-1.302-.51-1.302-.51ZM21.288 21.215l-13.87-3.867-.885-2.551 14.755 6.418Z" }) + ] + } + ); +}); + +export { SiApacheavro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.cjs new file mode 100644 index 000000000..84177394b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1287B1"; +const SiApachecassandra = React__namespace.forwardRef(function SiApachecassandra2({ title = "Apache Cassandra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.374 10.53a3.102 3.102 0 0 1-.428-.222l.555.143c0 .02-.01.036-.01.055l-.117.025zm-.283 1.506-.315.253.852-1.079-1.078.391c.002.017.009.033.009.05a.57.57 0 0 1-.184.42c.102.217.228.424.375.616a3.2 3.2 0 0 1 .34-.651zm.717-2.347-.652-.82a.427.427 0 0 1-.506.162c-.054.073-.083.162-.13.24l1.258.463c.011-.015.019-.031.03-.045zm-1.666.444c-.07.314-.087.637-.05.956a.566.566 0 0 1 .451.475l.946-.606c-.067-.022-.126-.06-.191-.088l-1.119-.08.64-.14a3.186 3.186 0 0 1-.668-.554l-.01.037zM20.1 11.648c-.164.202.833 1.022.833 1.022s-1.654-1.022-2.234-.72c-.278.144.574.811 1.175 1.242-.428-.274-.982-.571-1.175-.408-.328.277 1.565 2.549 1.565 2.549s-2.145-2.322-2.36-2.209c-.214.114.593 1.224.593 1.224s-1.06-1.16-1.35-.959c-.29.202 1.514 3.218 1.514 3.218s-1.956-3.091-2.763-2.574c1.268 2.782.795 3.18.795 3.18s-.162-2.839-1.742-2.764c-.795.038.379 2.12.379 2.12s-1.08-1.902-1.8-1.864c1.326 2.51.854 3.53.854 3.53s.219-2.143-1.58-3.336c.682.606-.427 3.336-.427 3.336s.976-4.023-.719-3.256c-.268.121-.019 2.007-.019 2.007s-.34-2.158-.851-2.045c-.298.066-1.893 2.99-1.893 2.99s1.306-3.16.908-3.027c-.29.096-.833 1.4-.833 1.4s.265-1.287 0-1.363c-.264-.075-1.74 1.363-1.74 1.363s1.097-1.287.908-1.552c-.287-.402-.623-.42-1.022-.265-.581.226-1.363 1.287-1.363 1.287s.78-1.074.643-1.476c-.219-.647-2.46 1.249-2.46 1.249s1.325-1.25 1.022-1.514c-.303-.265-1.947-.183-2.46-.185-1.515-.004-2.039-.36-2.498-.724 1.987.997 3.803-.151 6.094.494l.21.06c-1.3-.558-2.144-1.378-2.226-2.354-.036-.416.074-.827.297-1.222.619-.4 1.29-.773 2.06-1.095a4 4 0 0 0-.064.698c0 2.44 2.203 4.417 4.92 4.417s4.92-1.977 4.92-4.417c0-.45-.083-.881-.223-1.29 1.431.404 2.45.968 3.132 1.335.022.092.045.184.053.279.024.274-.018.547-.11.814.095-.147.198-.288.28-.445.367-.997 1.855.227 1.855.227s-1.085-.454-1.06-.24c.026.215 1.628.96 1.628.96s-1.45-.455-1.362-.114c.088.34 1.817 1.703 1.817 1.703s-1.956-1.489-2.12-1.287zm-7.268 2.65.042-.008-.06.01zM9.256 9.753c.12.13.26.234.396.343l.927-.029-1.064-.788c-.093.154-.195.303-.26.474Zm10.62 3.44c.3.215.54.373.54.373s-.24-.181-.54-.374zM7.507 8.617c-.14.229-.214.492-.215.76a3.99 3.99 0 0 0 2.358 3.64c0-.005.002-.01.003-.014a3.19 3.19 0 0 1-.58-.788c-.648.099-.926-.794-.336-1.08a3.174 3.174 0 0 1 .138-1.388 3.162 3.162 0 0 1-.52-1.36c-.296.07-.579.147-.848.23Zm1.488.82c.108-.24.243-.46.402-.661a.435.435 0 0 1 .568-.557c.077-.059.166-.099.248-.15a16.17 16.17 0 0 0-1.727.284c.114.388.272.76.509 1.084Zm2.285 3.928c1.4 0 2.633-.723 3.344-1.816a3.399 3.399 0 0 0-1.265-.539l-.297-.023.916.9-1.197-.467.704 1.078-1.074-.832-.012.006.347 1.278-.596-1.134-.098 1.33-.401-1.326-.472 1.261.114-1.359c-.006-.002-.01-.006-.015-.008l-.814 1.154.286-1.067c-.34.322-.605.713-.781 1.146.095.102.197.198.303.29.322.083.66.128 1.008.128zm10.145-4.434c.971-.567 1.716-1.955 1.716-1.955s-1.893 1.955-3.205 1.665c1.186-.934 1.766-2.549 1.766-2.549s-1.506 2.325-2.448 2.423c1.086-.959 1.54-2.322 1.54-2.322s-1.237 1.817-2.196 1.944c1.287-1.161 1.338-1.893 1.338-1.893s-1.781 2.302-2.499 1.943c.858-.934 1.439-2.12 1.439-2.12s-1.489 2.019-1.893 1.69c-.277-.05.454-.958.454-.958s-.908.807-1.16.606c.454-.278 1.236-1.64 1.236-1.64S16 7.505 15.621 7.304l.731-1.483s-.73 1.483-1.715 1.23c.454-.58.63-1.112.63-1.112s-.756 1.213-1.69.885c-.22-.077.273-.635.273-.635s-.626.61-1.055.534c-.43-.076.025-.858.025-.858s-.757 1.186-.908 1.136c-.152-.05.075-.833.075-.833s-.555.908-.858.858c-.302-.05 0-.934 0-.934s-.328.984-.58.909c-.252-.076-.303-.656-.303-.656s-.068.788-.429.858c-2.725.53-5.728 1.69-9.489 5.45C3.887 10.738 5.3 7.91 11.962 7.659c5.044-.191 7.399 2.137 8.177 2.17C22.51 9.93 24 7.633 24 7.633s-1.489 1.716-2.574 1.3zm-7.74.872-.608.464v.001l.054.003a3.35 3.35 0 0 0 .554-.468zm1.583-.426c0-.536-.237-.929-.594-1.217a3.178 3.178 0 0 1-.165.825.393.393 0 0 1-.328.681c-.154.233-.34.445-.549.63l.661.034-.995.237c-.025.018-.045.041-.07.058a3.194 3.194 0 0 1 1.536.691c.32-.574.504-1.235.504-1.94zM10.99 7.996a3.5 3.5 0 0 0-.785.46.427.427 0 0 1-.013.357l.885.643.023-.016-.36-1.262.627 1.12c.018-.006.04-.006.058-.011l-.02-1.251.398 1.163.477-1.15.016 1.268c.004.001.007.005.012.007l.713-1.005-.363 1.218.009.01 1.04-.69-.759 1.05.002.005.95-.34c.012-.016.028-.029.041-.045a.395.395 0 0 1 .394-.632 3.43 3.43 0 0 0 .27-.784 13.99 13.99 0 0 0-2.798-.168c-.286.011-.55.033-.817.053Z" }) + ] + } + ); +}); + +exports.default = SiApachecassandra; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.d.ts new file mode 100644 index 000000000..91b4a3f51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1287B1"; +declare const SiApachecassandra: IconType; +export { SiApachecassandra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.mjs new file mode 100644 index 000000000..40b7d56d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecassandra.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1287B1"; +const SiApachecassandra = React.forwardRef(function SiApachecassandra2({ title = "Apache Cassandra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.374 10.53a3.102 3.102 0 0 1-.428-.222l.555.143c0 .02-.01.036-.01.055l-.117.025zm-.283 1.506-.315.253.852-1.079-1.078.391c.002.017.009.033.009.05a.57.57 0 0 1-.184.42c.102.217.228.424.375.616a3.2 3.2 0 0 1 .34-.651zm.717-2.347-.652-.82a.427.427 0 0 1-.506.162c-.054.073-.083.162-.13.24l1.258.463c.011-.015.019-.031.03-.045zm-1.666.444c-.07.314-.087.637-.05.956a.566.566 0 0 1 .451.475l.946-.606c-.067-.022-.126-.06-.191-.088l-1.119-.08.64-.14a3.186 3.186 0 0 1-.668-.554l-.01.037zM20.1 11.648c-.164.202.833 1.022.833 1.022s-1.654-1.022-2.234-.72c-.278.144.574.811 1.175 1.242-.428-.274-.982-.571-1.175-.408-.328.277 1.565 2.549 1.565 2.549s-2.145-2.322-2.36-2.209c-.214.114.593 1.224.593 1.224s-1.06-1.16-1.35-.959c-.29.202 1.514 3.218 1.514 3.218s-1.956-3.091-2.763-2.574c1.268 2.782.795 3.18.795 3.18s-.162-2.839-1.742-2.764c-.795.038.379 2.12.379 2.12s-1.08-1.902-1.8-1.864c1.326 2.51.854 3.53.854 3.53s.219-2.143-1.58-3.336c.682.606-.427 3.336-.427 3.336s.976-4.023-.719-3.256c-.268.121-.019 2.007-.019 2.007s-.34-2.158-.851-2.045c-.298.066-1.893 2.99-1.893 2.99s1.306-3.16.908-3.027c-.29.096-.833 1.4-.833 1.4s.265-1.287 0-1.363c-.264-.075-1.74 1.363-1.74 1.363s1.097-1.287.908-1.552c-.287-.402-.623-.42-1.022-.265-.581.226-1.363 1.287-1.363 1.287s.78-1.074.643-1.476c-.219-.647-2.46 1.249-2.46 1.249s1.325-1.25 1.022-1.514c-.303-.265-1.947-.183-2.46-.185-1.515-.004-2.039-.36-2.498-.724 1.987.997 3.803-.151 6.094.494l.21.06c-1.3-.558-2.144-1.378-2.226-2.354-.036-.416.074-.827.297-1.222.619-.4 1.29-.773 2.06-1.095a4 4 0 0 0-.064.698c0 2.44 2.203 4.417 4.92 4.417s4.92-1.977 4.92-4.417c0-.45-.083-.881-.223-1.29 1.431.404 2.45.968 3.132 1.335.022.092.045.184.053.279.024.274-.018.547-.11.814.095-.147.198-.288.28-.445.367-.997 1.855.227 1.855.227s-1.085-.454-1.06-.24c.026.215 1.628.96 1.628.96s-1.45-.455-1.362-.114c.088.34 1.817 1.703 1.817 1.703s-1.956-1.489-2.12-1.287zm-7.268 2.65.042-.008-.06.01zM9.256 9.753c.12.13.26.234.396.343l.927-.029-1.064-.788c-.093.154-.195.303-.26.474Zm10.62 3.44c.3.215.54.373.54.373s-.24-.181-.54-.374zM7.507 8.617c-.14.229-.214.492-.215.76a3.99 3.99 0 0 0 2.358 3.64c0-.005.002-.01.003-.014a3.19 3.19 0 0 1-.58-.788c-.648.099-.926-.794-.336-1.08a3.174 3.174 0 0 1 .138-1.388 3.162 3.162 0 0 1-.52-1.36c-.296.07-.579.147-.848.23Zm1.488.82c.108-.24.243-.46.402-.661a.435.435 0 0 1 .568-.557c.077-.059.166-.099.248-.15a16.17 16.17 0 0 0-1.727.284c.114.388.272.76.509 1.084Zm2.285 3.928c1.4 0 2.633-.723 3.344-1.816a3.399 3.399 0 0 0-1.265-.539l-.297-.023.916.9-1.197-.467.704 1.078-1.074-.832-.012.006.347 1.278-.596-1.134-.098 1.33-.401-1.326-.472 1.261.114-1.359c-.006-.002-.01-.006-.015-.008l-.814 1.154.286-1.067c-.34.322-.605.713-.781 1.146.095.102.197.198.303.29.322.083.66.128 1.008.128zm10.145-4.434c.971-.567 1.716-1.955 1.716-1.955s-1.893 1.955-3.205 1.665c1.186-.934 1.766-2.549 1.766-2.549s-1.506 2.325-2.448 2.423c1.086-.959 1.54-2.322 1.54-2.322s-1.237 1.817-2.196 1.944c1.287-1.161 1.338-1.893 1.338-1.893s-1.781 2.302-2.499 1.943c.858-.934 1.439-2.12 1.439-2.12s-1.489 2.019-1.893 1.69c-.277-.05.454-.958.454-.958s-.908.807-1.16.606c.454-.278 1.236-1.64 1.236-1.64S16 7.505 15.621 7.304l.731-1.483s-.73 1.483-1.715 1.23c.454-.58.63-1.112.63-1.112s-.756 1.213-1.69.885c-.22-.077.273-.635.273-.635s-.626.61-1.055.534c-.43-.076.025-.858.025-.858s-.757 1.186-.908 1.136c-.152-.05.075-.833.075-.833s-.555.908-.858.858c-.302-.05 0-.934 0-.934s-.328.984-.58.909c-.252-.076-.303-.656-.303-.656s-.068.788-.429.858c-2.725.53-5.728 1.69-9.489 5.45C3.887 10.738 5.3 7.91 11.962 7.659c5.044-.191 7.399 2.137 8.177 2.17C22.51 9.93 24 7.633 24 7.633s-1.489 1.716-2.574 1.3zm-7.74.872-.608.464v.001l.054.003a3.35 3.35 0 0 0 .554-.468zm1.583-.426c0-.536-.237-.929-.594-1.217a3.178 3.178 0 0 1-.165.825.393.393 0 0 1-.328.681c-.154.233-.34.445-.549.63l.661.034-.995.237c-.025.018-.045.041-.07.058a3.194 3.194 0 0 1 1.536.691c.32-.574.504-1.235.504-1.94zM10.99 7.996a3.5 3.5 0 0 0-.785.46.427.427 0 0 1-.013.357l.885.643.023-.016-.36-1.262.627 1.12c.018-.006.04-.006.058-.011l-.02-1.251.398 1.163.477-1.15.016 1.268c.004.001.007.005.012.007l.713-1.005-.363 1.218.009.01 1.04-.69-.759 1.05.002.005.95-.34c.012-.016.028-.029.041-.045a.395.395 0 0 1 .394-.632 3.43 3.43 0 0 0 .27-.784 13.99 13.99 0 0 0-2.798-.168c-.286.011-.55.033-.817.053Z" }) + ] + } + ); +}); + +export { SiApachecassandra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.cjs new file mode 100644 index 000000000..dc45cff0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2AA5DC"; +const SiApachecloudstack = React__namespace.forwardRef(function SiApachecloudstack2({ title = "Apache CloudStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.446 11.386c.326-.116 1.077-.462 1.228-1.23l-1.692-.114s-.458-.161-.705-.94c0 0-1.022-.55-.951-1.342 0 0 .158-.987 1.004-1.128 0 0 .882-.218 1.062 1.192 0 0 .415 1.194-.394 1.278 0 0-.175.385.46.402 0 0 .773.23 1.32-.229 0 0 .371-.341.812-.276 0 0 .095-.169-.09-.274 0 0-1.097-.939-1.289-2.267 0 0-.905-.126-1.018-.766 0 0-.211-.992.608-1.19 0 0 .522-.119.787 0 0 0 .667-1.817 2.57-2.128 0 0 1.573-.37 2.134.82 0 0 .232.647.106 1.19 0 0-.132.594.007.746 0 0 .509-.12.72.211.211.33.304 1.038-.119 1.203 0 0 .126.562-.297.945 0 0-1.342.78-1.725 1.44 0 0-.118.151-.178.204a1.354 1.354 0 01-.516.283s-.159.07-.337-.018c0 0-.053.265.245.311 0 0 .565-.078 1.18-.266l4.443-1.59s-.206-.555-.041-.826c0 0 .091-.144.174-.175.154-.059.338-.352.346-.581 0 0-.043-.58.373-.606 0 0 .4-.024.366.465l-.029.321s.61-.23.814.185c0 0 .412.836-.025 1.51 0 0-.643.633-1.489.235l-.29-.179s-5.168 2.14-5.228 2.28c0 0-.405.205-.707.753 0 0-1.037 1.85-1.572 2.34 0 0-.35.423-.601.528l.054.146c.347.037.601-.047.601-.047.965-.462 1.105-.106 1.105-.106.352.252.204.978.204.978 2.696 2.59-.204 5.128-.204 5.128-.455.198-.669 0-.669 0-.079-.119.67-.766.67-.766 1.368-1.64.156-3.412.156-3.412-2.023-2.18-4.05-.553-4.05-.553-.912 1.018-.78 2.128-.78 2.128-.159.317-.423.185-.423.185-.357-.423 0-1.533 0-1.533.529-1.23 1.652-1.732 1.652-1.732l.169-.136c.204-.935-.134-2.062-.134-2.062-.925-2.206-2.488-2.578-3.03-2.64.008.057.006.046-.001 0-.12-.013-.189-.012-.189-.012-2.317-.22-3.379 1.789-3.379 1.789-.62.55-.581 1.815-.581 1.815 1.524.343 1.898 1.295 1.898 1.295.106.396-.348.269-.348.269C5.22 13.69 4.51 13.635 4.51 13.635c-1.44-.26-2.414.664-2.414.664-.584.405-1.102 1.281-1.102 1.281C.157 17.06.68 18.472.68 18.472c.287 1.433 1.997 2.385 1.997 2.385.814.422 1.684.297 1.684.297.708-.162.544.211.544.211-.2.3-.469.304-.469.304-1.528.101-2.216-.414-2.216-.414C-1.195 19.11.347 15.59.347 15.59c1.6-3.119 4.19-2.458 4.19-2.458.052-.939.819-2.247.819-2.247 1.14-1.42 2.416-1.726 3.181-1.764l.004-.004s-.018-1.007.29-1.862c0 0 .16-.435.723-1.286.089-.134.37-.493.458-.82 0 0 .476-1.497-1.229-1.735 0 0-.543-.096-.898.19-.225.18-.437.286-.6.33 0 0-.806.277-.78-.238 0 0-.145-.767 1.68-.978 0 0 2.23-.383 2.49 1.388 0 0 .364 1.083-.958 2.709 0 0-.722 1.118-.557 2.334.045.007.068.013.068.013 2.326.404 3.211 2.212 3.211 2.212l.007.012zm.322.648l.797 1.602c1.387-.564 1.98-2.434 1.98-2.434.38-.942-.211-1.083-.211-1.083-.406-.106-.696.3-.696.3-.91 1.104-1.671 1.519-1.87 1.615zm4.284-8.153c-1.295-1.242-2.538.343-2.538.343-.766.978.08 2.353.08 2.353-.344.08-.503.317-.503.317-.237 1.19 1.11 2.009 1.11 2.009 1.031.687 1.666-.212 1.666-.212.264-.608 1.691-1.612 1.691-1.612.476-.476 0-1.004 0-1.004-.502-.357-.581-.978-.581-.978-.04-.529.04-1.176.04-1.176-.265-.476-.965-.04-.965-.04zm-3.714 1.19c-.08-.212-.35-.146-.35-.146-.535.099-.423.7-.423.7.04.417.476.483.476.483.013-.621.297-1.038.297-1.038zm4.943.468c-.06.126.066.212.066.212.177.117.343.324.343.324.08.072.205 0 .205 0 .17-.247-.125-.536-.125-.536-.198-.198-.49 0-.49 0zm-6.159 2.333s-.132-.674-.572-.86c0 0-.318-.083-.555.19 0 0-.437.445-.291.987 0 0 .251.595.916.718 0 0 .375.115.59-.454 0 0 .055-.176-.088-.581zm9.829-.328c.099.114.158.304.158.304.013.445.627.42.627.42.688.03.933-.4.933-.4.206-.357.127-1.049-.1-1.178-.228-.13-.732 0-.732 0 .122-.238.048-.615.048-.615-.044-.406-.386-.172-.386-.172-.206.154-.106.595-.106.595-.01.28-.372.405-.372.405-.276.283-.07.64-.07.64zm-5.92-1.962c-.01.12-.149.066-.149.066-.036-.26-.377-.323-.377-.323-.357.015-.356.28-.356.28-.199.123-.242-.056-.242-.056.116-.452.589-.36.589-.36.498.03.535.393.535.393zm.758.055s.027-.37.334-.44c0 0 .446-.143.64.256 0 0 .07.162.007.207 0 0-.14.051-.181-.192 0 0-.113-.22-.336-.173 0 0-.198.021-.248.23 0 0-.01.22-.216.112zm-1.676 1.235c.102-.062.247-.009.34.047.1.062.21.12.316.17.209.099.425.162.661.162.123 0 .254.012.374-.005.1-.014.203-.025.304-.035a.991.991 0 00.359-.096c.055-.029.11-.052.164-.084.05-.031.096-.072.144-.102.023-.014.082-.058.11-.053.035.006.069.103.06.136-.068.02-.133.074-.198.105-.09.044-.173.103-.255.16-.116.08-.252.192-.326.313-.173.283-.37.572-.656.749a.917.917 0 01-.495.119c-.166 0-.376-.03-.519-.12a.61.61 0 01-.29-.356c-.044-.158 0-.317 0-.478 0-.125.033-.31-.026-.42-.02-.038-.028-.027-.062-.057-.026-.022-.04-.065-.027-.113.002-.008.014-.043.022-.042zm1.291-.515a.137.137 0 01-.14.134.137.137 0 01-.14-.134c0-.074.062-.134.14-.134.077 0 .14.06.14.134zm.575-.023a.137.137 0 01-.14.134.137.137 0 01-.14-.134c0-.074.062-.134.14-.134.077 0 .14.06.14.134z" }) + ] + } + ); +}); + +exports.default = SiApachecloudstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.d.ts new file mode 100644 index 000000000..6a40bd89b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2AA5DC"; +declare const SiApachecloudstack: IconType; +export { SiApachecloudstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.mjs new file mode 100644 index 000000000..874bab7d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecloudstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2AA5DC"; +const SiApachecloudstack = React.forwardRef(function SiApachecloudstack2({ title = "Apache CloudStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.446 11.386c.326-.116 1.077-.462 1.228-1.23l-1.692-.114s-.458-.161-.705-.94c0 0-1.022-.55-.951-1.342 0 0 .158-.987 1.004-1.128 0 0 .882-.218 1.062 1.192 0 0 .415 1.194-.394 1.278 0 0-.175.385.46.402 0 0 .773.23 1.32-.229 0 0 .371-.341.812-.276 0 0 .095-.169-.09-.274 0 0-1.097-.939-1.289-2.267 0 0-.905-.126-1.018-.766 0 0-.211-.992.608-1.19 0 0 .522-.119.787 0 0 0 .667-1.817 2.57-2.128 0 0 1.573-.37 2.134.82 0 0 .232.647.106 1.19 0 0-.132.594.007.746 0 0 .509-.12.72.211.211.33.304 1.038-.119 1.203 0 0 .126.562-.297.945 0 0-1.342.78-1.725 1.44 0 0-.118.151-.178.204a1.354 1.354 0 01-.516.283s-.159.07-.337-.018c0 0-.053.265.245.311 0 0 .565-.078 1.18-.266l4.443-1.59s-.206-.555-.041-.826c0 0 .091-.144.174-.175.154-.059.338-.352.346-.581 0 0-.043-.58.373-.606 0 0 .4-.024.366.465l-.029.321s.61-.23.814.185c0 0 .412.836-.025 1.51 0 0-.643.633-1.489.235l-.29-.179s-5.168 2.14-5.228 2.28c0 0-.405.205-.707.753 0 0-1.037 1.85-1.572 2.34 0 0-.35.423-.601.528l.054.146c.347.037.601-.047.601-.047.965-.462 1.105-.106 1.105-.106.352.252.204.978.204.978 2.696 2.59-.204 5.128-.204 5.128-.455.198-.669 0-.669 0-.079-.119.67-.766.67-.766 1.368-1.64.156-3.412.156-3.412-2.023-2.18-4.05-.553-4.05-.553-.912 1.018-.78 2.128-.78 2.128-.159.317-.423.185-.423.185-.357-.423 0-1.533 0-1.533.529-1.23 1.652-1.732 1.652-1.732l.169-.136c.204-.935-.134-2.062-.134-2.062-.925-2.206-2.488-2.578-3.03-2.64.008.057.006.046-.001 0-.12-.013-.189-.012-.189-.012-2.317-.22-3.379 1.789-3.379 1.789-.62.55-.581 1.815-.581 1.815 1.524.343 1.898 1.295 1.898 1.295.106.396-.348.269-.348.269C5.22 13.69 4.51 13.635 4.51 13.635c-1.44-.26-2.414.664-2.414.664-.584.405-1.102 1.281-1.102 1.281C.157 17.06.68 18.472.68 18.472c.287 1.433 1.997 2.385 1.997 2.385.814.422 1.684.297 1.684.297.708-.162.544.211.544.211-.2.3-.469.304-.469.304-1.528.101-2.216-.414-2.216-.414C-1.195 19.11.347 15.59.347 15.59c1.6-3.119 4.19-2.458 4.19-2.458.052-.939.819-2.247.819-2.247 1.14-1.42 2.416-1.726 3.181-1.764l.004-.004s-.018-1.007.29-1.862c0 0 .16-.435.723-1.286.089-.134.37-.493.458-.82 0 0 .476-1.497-1.229-1.735 0 0-.543-.096-.898.19-.225.18-.437.286-.6.33 0 0-.806.277-.78-.238 0 0-.145-.767 1.68-.978 0 0 2.23-.383 2.49 1.388 0 0 .364 1.083-.958 2.709 0 0-.722 1.118-.557 2.334.045.007.068.013.068.013 2.326.404 3.211 2.212 3.211 2.212l.007.012zm.322.648l.797 1.602c1.387-.564 1.98-2.434 1.98-2.434.38-.942-.211-1.083-.211-1.083-.406-.106-.696.3-.696.3-.91 1.104-1.671 1.519-1.87 1.615zm4.284-8.153c-1.295-1.242-2.538.343-2.538.343-.766.978.08 2.353.08 2.353-.344.08-.503.317-.503.317-.237 1.19 1.11 2.009 1.11 2.009 1.031.687 1.666-.212 1.666-.212.264-.608 1.691-1.612 1.691-1.612.476-.476 0-1.004 0-1.004-.502-.357-.581-.978-.581-.978-.04-.529.04-1.176.04-1.176-.265-.476-.965-.04-.965-.04zm-3.714 1.19c-.08-.212-.35-.146-.35-.146-.535.099-.423.7-.423.7.04.417.476.483.476.483.013-.621.297-1.038.297-1.038zm4.943.468c-.06.126.066.212.066.212.177.117.343.324.343.324.08.072.205 0 .205 0 .17-.247-.125-.536-.125-.536-.198-.198-.49 0-.49 0zm-6.159 2.333s-.132-.674-.572-.86c0 0-.318-.083-.555.19 0 0-.437.445-.291.987 0 0 .251.595.916.718 0 0 .375.115.59-.454 0 0 .055-.176-.088-.581zm9.829-.328c.099.114.158.304.158.304.013.445.627.42.627.42.688.03.933-.4.933-.4.206-.357.127-1.049-.1-1.178-.228-.13-.732 0-.732 0 .122-.238.048-.615.048-.615-.044-.406-.386-.172-.386-.172-.206.154-.106.595-.106.595-.01.28-.372.405-.372.405-.276.283-.07.64-.07.64zm-5.92-1.962c-.01.12-.149.066-.149.066-.036-.26-.377-.323-.377-.323-.357.015-.356.28-.356.28-.199.123-.242-.056-.242-.056.116-.452.589-.36.589-.36.498.03.535.393.535.393zm.758.055s.027-.37.334-.44c0 0 .446-.143.64.256 0 0 .07.162.007.207 0 0-.14.051-.181-.192 0 0-.113-.22-.336-.173 0 0-.198.021-.248.23 0 0-.01.22-.216.112zm-1.676 1.235c.102-.062.247-.009.34.047.1.062.21.12.316.17.209.099.425.162.661.162.123 0 .254.012.374-.005.1-.014.203-.025.304-.035a.991.991 0 00.359-.096c.055-.029.11-.052.164-.084.05-.031.096-.072.144-.102.023-.014.082-.058.11-.053.035.006.069.103.06.136-.068.02-.133.074-.198.105-.09.044-.173.103-.255.16-.116.08-.252.192-.326.313-.173.283-.37.572-.656.749a.917.917 0 01-.495.119c-.166 0-.376-.03-.519-.12a.61.61 0 01-.29-.356c-.044-.158 0-.317 0-.478 0-.125.033-.31-.026-.42-.02-.038-.028-.027-.062-.057-.026-.022-.04-.065-.027-.113.002-.008.014-.043.022-.042zm1.291-.515a.137.137 0 01-.14.134.137.137 0 01-.14-.134c0-.074.062-.134.14-.134.077 0 .14.06.14.134zm.575-.023a.137.137 0 01-.14.134.137.137 0 01-.14-.134c0-.074.062-.134.14-.134.077 0 .14.06.14.134z" }) + ] + } + ); +}); + +export { SiApachecloudstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.cjs new file mode 100644 index 000000000..22dc8ce73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E8E8E8"; +const SiApachecordova = React__namespace.forwardRef(function SiApachecordova2({ title = "Apache Cordova", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.545,0.545H5.455L0,9.273l2.182,14.182h3.886l-0.273-3.273h1.909l0.273,3.273 h8.045l0.273-3.273h1.909l-0.273,3.273h3.886L24,9.273L18.545,0.545z M18.545,18H5.455L4.364,9.273l2.182-4.364h3.506L9.818,6.545 h4.364l-0.234-1.636h3.506l2.182,4.364L18.545,18z M15.545,11.045c0.301,0,0.545,0.908,0.545,2.029 c0,1.121-0.244,2.029-0.545,2.029c-0.301,0-0.545-0.908-0.545-2.029C15,11.954,15.244,11.045,15.545,11.045z M8.659,11.215 c0.301,0,0.545,0.908,0.545,2.029c0,1.121-0.244,2.029-0.545,2.029c-0.301,0-0.545-0.908-0.545-2.029 C8.114,12.123,8.358,11.215,8.659,11.215z" }) + ] + } + ); +}); + +exports.default = SiApachecordova; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.d.ts new file mode 100644 index 000000000..a3a922ef6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E8E8E8"; +declare const SiApachecordova: IconType; +export { SiApachecordova as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.mjs new file mode 100644 index 000000000..5118dd85f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecordova.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E8E8E8"; +const SiApachecordova = React.forwardRef(function SiApachecordova2({ title = "Apache Cordova", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.545,0.545H5.455L0,9.273l2.182,14.182h3.886l-0.273-3.273h1.909l0.273,3.273 h8.045l0.273-3.273h1.909l-0.273,3.273h3.886L24,9.273L18.545,0.545z M18.545,18H5.455L4.364,9.273l2.182-4.364h3.506L9.818,6.545 h4.364l-0.234-1.636h3.506l2.182,4.364L18.545,18z M15.545,11.045c0.301,0,0.545,0.908,0.545,2.029 c0,1.121-0.244,2.029-0.545,2.029c-0.301,0-0.545-0.908-0.545-2.029C15,11.954,15.244,11.045,15.545,11.045z M8.659,11.215 c0.301,0,0.545,0.908,0.545,2.029c0,1.121-0.244,2.029-0.545,2.029c-0.301,0-0.545-0.908-0.545-2.029 C8.114,12.123,8.358,11.215,8.659,11.215z" }) + ] + } + ); +}); + +export { SiApachecordova as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.cjs new file mode 100644 index 000000000..8247f64dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E42528"; +const SiApachecouchdb = React__namespace.forwardRef(function SiApachecouchdb2({ title = "Apache CouchDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.5 14.625c0 .995-.524 1.482-1.5 1.5H6c-.976-.018-1.5-.505-1.5-1.5s.524-1.482 1.5-1.5h12c.976.018 1.5.505 1.5 1.5m-1.5 2.25H6c-.976.018-1.5.505-1.5 1.5s.524 1.482 1.5 1.5h12c.976-.018 1.5-.505 1.5-1.5s-.524-1.482-1.5-1.5m3.75-8.248v-.001c-.976.017-1.5.504-1.5 1.499v8.25c0 .995.524 1.482 1.5 1.5v-.002c1.464-.052 2.25-1.514 2.25-4.498v-3.75c0-1.99-.786-2.964-2.25-2.998m-19.5-.001C.786 8.662 0 9.637 0 11.626v3.75c0 2.984.786 4.446 2.25 4.498v.001c.976-.017 1.5-.504 1.5-1.499v-8.25c0-.995-.524-1.482-1.5-1.5m19.5-.75c0-2.486-1.31-3.705-3.75-3.748v-.002H6v.002c-2.44.043-3.75 1.262-3.75 3.748v.001c1.464.026 2.25.757 2.25 2.249s.786 2.223 2.25 2.249v.001h10.5v-.001c1.464-.026 2.25-.757 2.25-2.249s.786-2.223 2.25-2.249z" }) + ] + } + ); +}); + +exports.default = SiApachecouchdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.d.ts new file mode 100644 index 000000000..aa55f20cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E42528"; +declare const SiApachecouchdb: IconType; +export { SiApachecouchdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.mjs new file mode 100644 index 000000000..1f9c3b9d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachecouchdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E42528"; +const SiApachecouchdb = React.forwardRef(function SiApachecouchdb2({ title = "Apache CouchDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.5 14.625c0 .995-.524 1.482-1.5 1.5H6c-.976-.018-1.5-.505-1.5-1.5s.524-1.482 1.5-1.5h12c.976.018 1.5.505 1.5 1.5m-1.5 2.25H6c-.976.018-1.5.505-1.5 1.5s.524 1.482 1.5 1.5h12c.976-.018 1.5-.505 1.5-1.5s-.524-1.482-1.5-1.5m3.75-8.248v-.001c-.976.017-1.5.504-1.5 1.499v8.25c0 .995.524 1.482 1.5 1.5v-.002c1.464-.052 2.25-1.514 2.25-4.498v-3.75c0-1.99-.786-2.964-2.25-2.998m-19.5-.001C.786 8.662 0 9.637 0 11.626v3.75c0 2.984.786 4.446 2.25 4.498v.001c.976-.017 1.5-.504 1.5-1.499v-8.25c0-.995-.524-1.482-1.5-1.5m19.5-.75c0-2.486-1.31-3.705-3.75-3.748v-.002H6v.002c-2.44.043-3.75 1.262-3.75 3.748v.001c1.464.026 2.25.757 2.25 2.249s.786 2.223 2.25 2.249v.001h10.5v-.001c1.464-.026 2.25-.757 2.25-2.249s.786-2.223 2.25-2.249z" }) + ] + } + ); +}); + +export { SiApachecouchdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.cjs new file mode 100644 index 000000000..50264d1e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#85CDF0"; +const SiApachedolphinscheduler = React__namespace.forwardRef(function SiApachedolphinscheduler2({ title = "Apache DolphinScheduler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.9086 1.8777c-1.1454 0-2.073.982-2.073 2.1273 0 1.2.9276 2.1274 2.073 2.1274h8.3996c1.1454 0 2.072-.982 2.072-2.1274 0-1.1999-.9266-2.1273-2.072-2.1273zm-4.8545.8725v.9278C1.418 3.787 0 5.2052 0 6.9505c0 1.7999 1.3631 3.2182 3.1085 3.2182h.5454c.3272 0 .5454-.2182.5454-.5454 0-.3273-.2182-.5454-.5454-.5454h-.5454c-1.1454 0-2.0177-.9275-2.0177-2.1274 0-1.1454.8725-2.0728 1.9633-2.1273v1.1451l1.5276-1.5819Zm4.8545 4.6914c-1.1454 0-2.073.981-2.073 2.1263 0 1.1454.9276 2.1273 2.073 2.1273h8.3996c1.1454 0 2.072-.982 2.072-2.1273 0-1.1454-.9266-2.1263-2.072-2.1263zm12.4903 1.7992c-.3273 0-.5454.2182-.5454.5455 0 .3272.2181.5454.5454.5454h.5454c1.1454 0 2.0176.9274 2.0176 2.1273 0 1.1454-.8724 2.0728-1.9633 2.1274v-1.1452l-1.5276 1.4722 1.5276 1.6363v-.9268c1.6363-.0546 2.9998-1.4183 2.9998-3.2182.0546-1.7999-1.3088-3.1639-3.0541-3.1639zm-12.4903 3.818c-1.1454 0-2.073.982-2.073 2.1273 0 .4364.1097.8723.3824 1.1995l.491-.163c.5455-.2181 1.1448-.6549 1.5266-.9822.109-.0545.1638-.1084.2184-.163.0545-.0545.1093-.1094.2184-.164.3272-.2727.7633-.6004 1.4178-.7095h.3814c.5454 0 1.0363.1639 1.3636.4911.109-.0545.2181-.1084.2727-.163.1636-.0545.2733-.1638.3824-.2183.109-.0546.272-.1098.4357-.1098.3272 0 .6545.1639.8181.4911.1091.2182.2186.6006-.1086 1.2006-.0546.109-.1639.2177-.2184.3814-.1636.3272-.3812.6545-.7084 1.0908h3.5995c1.1454 0 2.072-.982 2.072-2.1274 0-1.1999-.9266-2.1816-2.072-2.1816zm-6.4396.0511a.1768.1768 0 0 0-.0511.0032c-.3273.109-.327.982.2184 1.582.4363.4908.8179.873.8724 1.2548.1636 1.5272.4915 2.3455 1.2006 3.2182.4908.6 1.1447.927 1.7992 1.1451.0546-.1636.0552-.3276.1097-.4367.0546-.1091.0544-.2184.0544-.2184l.2183.0554c-.109.5454-.382 1.6354-.491 1.8536-.1091.3272-.2734.7092.4357.491 1.1453-.3817 2.0725-1.4726 2.4543-2.727h.164c-.0545.3272-.1631.6549-.3813.9821.3273-.109.6543-.218.8725-.327.709-.3272 1.4176-.819 1.7449-1.1462 1.5272-1.4181 2.0724-2.5081 2.5087-3.2171.4363-.7636-.163-.9818-.4357-.8182-.3272.1091-.7636.4364-1.0908.5454-.2727-.4908-.8186-.7098-1.5276-.6008-.6.1091-.9818.4911-1.3636.7638-.2727.2182-1.1456.9279-1.8546 1.2006-.7636.3272-1.5268.272-2.0176.163-.2727-.0545-1.418-.5452-.5998-2.236.3818-.8181.3266-1.3631.163-1.4722-.2182-.1636-.8718.3812-1.3081.7084-.358-.2557-1.3879-.751-1.6949-.767Zm8.5126 2.7857c.1636 0 .2727.1634.2727.327 0 .1637-.109.2725-.2727.327-.1636 0-.2727-.1633-.2727-.327 0-.1636.109-.327.2727-.327zm.0543.1086c-.0545 0-.1097.0542-.1097.1087 0 .0545.0552.1097.1097.1097.0546 0 .1087-.0552.1087-.1097 0-.0545-.0541-.1087-.1087-.1087zm.2727 3.4366c-.2727.2182-.6545.4902-1.0908.7084.2727.1636.7631.4363.9268.5454.2727.2182.6001.382.491-.327-.0545-.3273-.1634-.654-.327-.9268z" }) + ] + } + ); +}); + +exports.default = SiApachedolphinscheduler; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.d.ts new file mode 100644 index 000000000..8b3a3299d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#85CDF0"; +declare const SiApachedolphinscheduler: IconType; +export { SiApachedolphinscheduler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.mjs new file mode 100644 index 000000000..261c27635 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedolphinscheduler.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#85CDF0"; +const SiApachedolphinscheduler = React.forwardRef(function SiApachedolphinscheduler2({ title = "Apache DolphinScheduler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.9086 1.8777c-1.1454 0-2.073.982-2.073 2.1273 0 1.2.9276 2.1274 2.073 2.1274h8.3996c1.1454 0 2.072-.982 2.072-2.1274 0-1.1999-.9266-2.1273-2.072-2.1273zm-4.8545.8725v.9278C1.418 3.787 0 5.2052 0 6.9505c0 1.7999 1.3631 3.2182 3.1085 3.2182h.5454c.3272 0 .5454-.2182.5454-.5454 0-.3273-.2182-.5454-.5454-.5454h-.5454c-1.1454 0-2.0177-.9275-2.0177-2.1274 0-1.1454.8725-2.0728 1.9633-2.1273v1.1451l1.5276-1.5819Zm4.8545 4.6914c-1.1454 0-2.073.981-2.073 2.1263 0 1.1454.9276 2.1273 2.073 2.1273h8.3996c1.1454 0 2.072-.982 2.072-2.1273 0-1.1454-.9266-2.1263-2.072-2.1263zm12.4903 1.7992c-.3273 0-.5454.2182-.5454.5455 0 .3272.2181.5454.5454.5454h.5454c1.1454 0 2.0176.9274 2.0176 2.1273 0 1.1454-.8724 2.0728-1.9633 2.1274v-1.1452l-1.5276 1.4722 1.5276 1.6363v-.9268c1.6363-.0546 2.9998-1.4183 2.9998-3.2182.0546-1.7999-1.3088-3.1639-3.0541-3.1639zm-12.4903 3.818c-1.1454 0-2.073.982-2.073 2.1273 0 .4364.1097.8723.3824 1.1995l.491-.163c.5455-.2181 1.1448-.6549 1.5266-.9822.109-.0545.1638-.1084.2184-.163.0545-.0545.1093-.1094.2184-.164.3272-.2727.7633-.6004 1.4178-.7095h.3814c.5454 0 1.0363.1639 1.3636.4911.109-.0545.2181-.1084.2727-.163.1636-.0545.2733-.1638.3824-.2183.109-.0546.272-.1098.4357-.1098.3272 0 .6545.1639.8181.4911.1091.2182.2186.6006-.1086 1.2006-.0546.109-.1639.2177-.2184.3814-.1636.3272-.3812.6545-.7084 1.0908h3.5995c1.1454 0 2.072-.982 2.072-2.1274 0-1.1999-.9266-2.1816-2.072-2.1816zm-6.4396.0511a.1768.1768 0 0 0-.0511.0032c-.3273.109-.327.982.2184 1.582.4363.4908.8179.873.8724 1.2548.1636 1.5272.4915 2.3455 1.2006 3.2182.4908.6 1.1447.927 1.7992 1.1451.0546-.1636.0552-.3276.1097-.4367.0546-.1091.0544-.2184.0544-.2184l.2183.0554c-.109.5454-.382 1.6354-.491 1.8536-.1091.3272-.2734.7092.4357.491 1.1453-.3817 2.0725-1.4726 2.4543-2.727h.164c-.0545.3272-.1631.6549-.3813.9821.3273-.109.6543-.218.8725-.327.709-.3272 1.4176-.819 1.7449-1.1462 1.5272-1.4181 2.0724-2.5081 2.5087-3.2171.4363-.7636-.163-.9818-.4357-.8182-.3272.1091-.7636.4364-1.0908.5454-.2727-.4908-.8186-.7098-1.5276-.6008-.6.1091-.9818.4911-1.3636.7638-.2727.2182-1.1456.9279-1.8546 1.2006-.7636.3272-1.5268.272-2.0176.163-.2727-.0545-1.418-.5452-.5998-2.236.3818-.8181.3266-1.3631.163-1.4722-.2182-.1636-.8718.3812-1.3081.7084-.358-.2557-1.3879-.751-1.6949-.767Zm8.5126 2.7857c.1636 0 .2727.1634.2727.327 0 .1637-.109.2725-.2727.327-.1636 0-.2727-.1633-.2727-.327 0-.1636.109-.327.2727-.327zm.0543.1086c-.0545 0-.1097.0542-.1097.1087 0 .0545.0552.1097.1097.1097.0546 0 .1087-.0552.1087-.1097 0-.0545-.0541-.1087-.1087-.1087zm.2727 3.4366c-.2727.2182-.6545.4902-1.0908.7084.2727.1636.7631.4363.9268.5454.2727.2182.6001.382.491-.327-.0545-.3273-.1634-.654-.327-.9268z" }) + ] + } + ); +}); + +export { SiApachedolphinscheduler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.cjs new file mode 100644 index 000000000..f4cf0c9b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#444FD9"; +const SiApachedoris = React__namespace.forwardRef(function SiApachedoris2({ title = "Apache Doris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.666.0001c-.5355-.004-1.068.1072-1.5241.3384-.207.1048-.5749.3802-.8177.6118-1.0278.9803-1.2876 2.5138-.6553 3.8679.205.439.5068.7694 2.8476 3.1166 2.4527 2.4594 2.6352 2.6255 2.8852 2.6258.2446.0003.3647-.099 1.4408-1.19.9367-.9496 1.2306-1.2992 1.4536-1.7286.5966-1.149.6487-2.0513.174-3.014-.2264-.459-.4816-.7514-1.9012-2.176-.9018-.9052-1.7907-1.7496-1.9751-1.8765C10.0488.2005 9.3548.0052 8.666 0ZM3.5518 5.5737c-.2176.0031-.6097.085-.6097.3285v12.0904l.1642.175c.1123.1194.2498.1748.4342.1748.2545 0 .4436-.1738 3.349-3.0786 2.6868-2.6862 3.079-2.909 3.0791-3.305.0002-.3961-.3924-.6194-3.0784-3.306-2.8612-2.8619-3.0968-3.079-3.3384-3.079Zm13.0967.861c-.0481.0184-.112.1636-.1418.3225-.0756.403-.3719 1.109-.6572 1.5663-.1407.2253-2.2392 2.3955-5.049 5.2212-2.7513 2.7667-4.9104 4.9985-5.0468 5.2165-.4552.7275-.5967 1.3905-.4684 2.1964.222 1.3947 1.3263 2.6812 2.5486 2.9693.4667.11 1.618.0927 2.0329-.0305.2084-.062.526-.2112.7055-.3318.5023-.3373 9.341-9.0562 9.6463-9.5154.449-.6753.8356-1.0716.8395-1.9762-.0056-.5935-.1305-1.1138-1.0715-2.306-.5094-.6523-3.2341-3.3723-3.338-3.3324Z" }) + ] + } + ); +}); + +exports.default = SiApachedoris; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.d.ts new file mode 100644 index 000000000..fa03696b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#444FD9"; +declare const SiApachedoris: IconType; +export { SiApachedoris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.mjs new file mode 100644 index 000000000..9c134e09b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedoris.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#444FD9"; +const SiApachedoris = React.forwardRef(function SiApachedoris2({ title = "Apache Doris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.666.0001c-.5355-.004-1.068.1072-1.5241.3384-.207.1048-.5749.3802-.8177.6118-1.0278.9803-1.2876 2.5138-.6553 3.8679.205.439.5068.7694 2.8476 3.1166 2.4527 2.4594 2.6352 2.6255 2.8852 2.6258.2446.0003.3647-.099 1.4408-1.19.9367-.9496 1.2306-1.2992 1.4536-1.7286.5966-1.149.6487-2.0513.174-3.014-.2264-.459-.4816-.7514-1.9012-2.176-.9018-.9052-1.7907-1.7496-1.9751-1.8765C10.0488.2005 9.3548.0052 8.666 0ZM3.5518 5.5737c-.2176.0031-.6097.085-.6097.3285v12.0904l.1642.175c.1123.1194.2498.1748.4342.1748.2545 0 .4436-.1738 3.349-3.0786 2.6868-2.6862 3.079-2.909 3.0791-3.305.0002-.3961-.3924-.6194-3.0784-3.306-2.8612-2.8619-3.0968-3.079-3.3384-3.079Zm13.0967.861c-.0481.0184-.112.1636-.1418.3225-.0756.403-.3719 1.109-.6572 1.5663-.1407.2253-2.2392 2.3955-5.049 5.2212-2.7513 2.7667-4.9104 4.9985-5.0468 5.2165-.4552.7275-.5967 1.3905-.4684 2.1964.222 1.3947 1.3263 2.6812 2.5486 2.9693.4667.11 1.618.0927 2.0329-.0305.2084-.062.526-.2112.7055-.3318.5023-.3373 9.341-9.0562 9.6463-9.5154.449-.6753.8356-1.0716.8395-1.9762-.0056-.5935-.1305-1.1138-1.0715-2.306-.5094-.6523-3.2341-3.3723-3.338-3.3324Z" }) + ] + } + ); +}); + +export { SiApachedoris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.cjs new file mode 100644 index 000000000..1ea965050 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#29F1FB"; +const SiApachedruid = React__namespace.forwardRef(function SiApachedruid2({ title = "Apache Druid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.932 20.806c-.369 0-.738.007-1.109 0-.35-.007-.587-.206-.623-.5a.587.587 0 0 1 .53-.636c.79-.062 1.582-.063 2.372-.003a.548.548 0 0 1 .522.602c-.024.326-.253.526-.616.54zM1.792 8.345c-.392 0-.782.008-1.173.002-.327-.006-.577-.22-.614-.512-.037-.293.146-.544.499-.615.192-.032.388-.045.583-.039a81.515 81.515 0 0 1 1.597 0c.163 0 .325.019.483.056.288.073.445.318.411.617-.034.298-.214.477-.515.487-.424.014-.848.004-1.272.004zm7.588 8.417H4.292a2.464 2.464 0 0 1-.326-.007c-.294-.04-.48-.209-.508-.506-.029-.298.11-.501.391-.606.179-.065.365-.051.549-.051 3.347 0 6.695.005 10.042-.006 1.174-.004 2.187-.439 2.993-1.3.69-.738 1.053-1.63 1.16-2.635.085-.788-.027-1.513-.516-2.156-.544-.718-1.28-1.078-2.163-1.082-3.163-.013-6.328-.005-9.487-.01-.336 0-.673-.027-1.007-.058-.29-.027-.45-.201-.469-.492-.021-.317.141-.545.429-.6a1.55 1.55 0 0 1 .29-.015h10.177c1.71.004 3.187 1.038 3.726 2.654.383 1.147.246 2.304-.182 3.416-.824 2.135-2.762 3.448-5.055 3.454-1.652.005-3.304 0-4.956 0zm2.906-13.568c1.533 0 3.066-.008 4.598 0 2.935.018 5.629 1.892 6.653 4.626.442 1.181.538 2.403.412 3.657-.185 1.842-.735 3.552-1.776 5.084-1.608 2.365-3.873 3.68-6.679 4.118-.95.148-1.905.13-2.86.13-.397 0-.61-.181-.633-.51-.025-.351.196-.621.587-.645.434-.026.87-.004 1.305-.016 2.641-.072 4.928-.982 6.74-2.935 1.269-1.37 1.912-3.039 2.13-4.878.151-1.275.135-2.544-.37-3.752-.773-1.85-2.159-2.983-4.068-3.509-.74-.204-1.5-.243-2.26-.247-2.837-.017-5.675-.007-8.511-.007-.12 0-.24.004-.359-.006a.57.57 0 0 1-.517-.536.557.557 0 0 1 .456-.557c.13-.018.261-.024.392-.019h4.762Z" }) + ] + } + ); +}); + +exports.default = SiApachedruid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.d.ts new file mode 100644 index 000000000..a35078481 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#29F1FB"; +declare const SiApachedruid: IconType; +export { SiApachedruid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.mjs new file mode 100644 index 000000000..8d4859c2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachedruid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#29F1FB"; +const SiApachedruid = React.forwardRef(function SiApachedruid2({ title = "Apache Druid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.932 20.806c-.369 0-.738.007-1.109 0-.35-.007-.587-.206-.623-.5a.587.587 0 0 1 .53-.636c.79-.062 1.582-.063 2.372-.003a.548.548 0 0 1 .522.602c-.024.326-.253.526-.616.54zM1.792 8.345c-.392 0-.782.008-1.173.002-.327-.006-.577-.22-.614-.512-.037-.293.146-.544.499-.615.192-.032.388-.045.583-.039a81.515 81.515 0 0 1 1.597 0c.163 0 .325.019.483.056.288.073.445.318.411.617-.034.298-.214.477-.515.487-.424.014-.848.004-1.272.004zm7.588 8.417H4.292a2.464 2.464 0 0 1-.326-.007c-.294-.04-.48-.209-.508-.506-.029-.298.11-.501.391-.606.179-.065.365-.051.549-.051 3.347 0 6.695.005 10.042-.006 1.174-.004 2.187-.439 2.993-1.3.69-.738 1.053-1.63 1.16-2.635.085-.788-.027-1.513-.516-2.156-.544-.718-1.28-1.078-2.163-1.082-3.163-.013-6.328-.005-9.487-.01-.336 0-.673-.027-1.007-.058-.29-.027-.45-.201-.469-.492-.021-.317.141-.545.429-.6a1.55 1.55 0 0 1 .29-.015h10.177c1.71.004 3.187 1.038 3.726 2.654.383 1.147.246 2.304-.182 3.416-.824 2.135-2.762 3.448-5.055 3.454-1.652.005-3.304 0-4.956 0zm2.906-13.568c1.533 0 3.066-.008 4.598 0 2.935.018 5.629 1.892 6.653 4.626.442 1.181.538 2.403.412 3.657-.185 1.842-.735 3.552-1.776 5.084-1.608 2.365-3.873 3.68-6.679 4.118-.95.148-1.905.13-2.86.13-.397 0-.61-.181-.633-.51-.025-.351.196-.621.587-.645.434-.026.87-.004 1.305-.016 2.641-.072 4.928-.982 6.74-2.935 1.269-1.37 1.912-3.039 2.13-4.878.151-1.275.135-2.544-.37-3.752-.773-1.85-2.159-2.983-4.068-3.509-.74-.204-1.5-.243-2.26-.247-2.837-.017-5.675-.007-8.511-.007-.12 0-.24.004-.359-.006a.57.57 0 0 1-.517-.536.557.557 0 0 1 .456-.557c.13-.018.261-.024.392-.019h4.762Z" }) + ] + } + ); +}); + +export { SiApachedruid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.cjs new file mode 100644 index 000000000..dc50a3cfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AA344D"; +const SiApacheecharts = React__namespace.forwardRef(function SiApacheecharts2({ title = "Apache ECharts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm-.792 5.307c2.192-.025 4.366 1.134 5.43 3.304.909 1.852.878 3.61-.098 5.645-.477.995-.487 1.06-.241 1.578.214.452.727.779 1.221.779.454 0 1.15-.586 1.252-1.054.1-.454-.193-1.118-.607-1.377a10.11 10.11 0 0 1-.393-.255c-.129-.1.42-.38.741-.38.687 0 1.247.526 1.375 1.29.055.333.134.422.44.502.859.222 1.297 1.451.755 2.116-.22.27-.23.271-.305.042-.267-.801-.666-1.12-1.403-1.12-.319 0-.572.128-1.098.556-1.006.82-1.866 1.303-2.907 1.632-1.276.384-2.752.478-4.086.156-2.162-.431-4.232-2.11-5.252-4.257C4.758 11.782 5.135 9 7.033 7.077a5.924 5.924 0 0 1 4.175-1.77Z" }) + ] + } + ); +}); + +exports.default = SiApacheecharts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.d.ts new file mode 100644 index 000000000..8e1f5ffc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AA344D"; +declare const SiApacheecharts: IconType; +export { SiApacheecharts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.mjs new file mode 100644 index 000000000..4775e4538 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheecharts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AA344D"; +const SiApacheecharts = React.forwardRef(function SiApacheecharts2({ title = "Apache ECharts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm-.792 5.307c2.192-.025 4.366 1.134 5.43 3.304.909 1.852.878 3.61-.098 5.645-.477.995-.487 1.06-.241 1.578.214.452.727.779 1.221.779.454 0 1.15-.586 1.252-1.054.1-.454-.193-1.118-.607-1.377a10.11 10.11 0 0 1-.393-.255c-.129-.1.42-.38.741-.38.687 0 1.247.526 1.375 1.29.055.333.134.422.44.502.859.222 1.297 1.451.755 2.116-.22.27-.23.271-.305.042-.267-.801-.666-1.12-1.403-1.12-.319 0-.572.128-1.098.556-1.006.82-1.866 1.303-2.907 1.632-1.276.384-2.752.478-4.086.156-2.162-.431-4.232-2.11-5.252-4.257C4.758 11.782 5.135 9 7.033 7.077a5.924 5.924 0 0 1 4.175-1.77Z" }) + ] + } + ); +}); + +export { SiApacheecharts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.cjs new file mode 100644 index 000000000..30cbcd392 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6526F"; +const SiApacheflink = React__namespace.forwardRef(function SiApacheflink2({ title = "Apache Flink", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.192 13.236c.028.035.064.069.098.101l.024.022.008.004a.736.736 0 0 0 .179.065 8.117 8.117 0 0 1-.138-1.758c.027-.797.178-1.47.462-2.059a8.02 8.02 0 0 1 .315-.519s-.176 1.202-.202 1.673a7.104 7.104 0 0 0 .16 1.868l.072-.05c-.043-.389-.042-.8.004-1.22a6.987 6.987 0 0 1 .419-1.721 9.266 9.266 0 0 1 .973-1.892c-1.985.209-2.418 2.1-2.418 2.1s.017-.347.024-.434c.057-.649.123-.961.205-1.287-.13.238-.212.488-.271.688-.139.47-.216.949-.273 1.356a9.022 9.022 0 0 0-.096 1.289c.002.38.024.828.176 1.263.073.205.164.373.279.511zm1.44-.737c.179-.113.385-.2.626-.268.425-.119.889-.239 1.461-.379l.19-.046c.478-.116.974-.237 1.439-.415.283-.108.552-.25.824-.436.38-.26.721-.579 1.012-.951.154-.196.232-.349.309-.605l.114-.378s.464.519-.004 1.436c.297-.107.582-.413.798-.788.181-.315.491-1.451.491-1.451s.569.875-.105 2.011a1.59 1.59 0 0 0 .356-.227c2.507-2.49.349-3.899-.103-4.236a4.141 4.141 0 0 0-.982-.525L11 5.218c-.03-.013-.047-.033-.055-.042l-.321-.35.563.155c.079.021.154.042.228.064.614.182 1.082.4 1.472.686.445.325 2.142 1.751.348 3.837.556-.191 1.606-.772 1.962-1.272 1.713-2.405-.254-3.808-.17-3.808.019 0 .044.002.099.01a.44.44 0 0 0 .069.006c.036 0 .097-.006.109-.041.015-.042-.014-.122-.073-.168-.154-.117-.321-.202-.533-.169C12.926 4.4 12.3 3.85 12.3 3.85s2.482.129 2.562-.28a4.92 4.92 0 0 0-1.225-.912 6.697 6.697 0 0 0-2.228-.743c-1.207-.179-2.13.053-2.13.053.096-.121.574-.667 2.556-.511.802.063 1.564.316 2.27.669.182.091.29-.125.293-.223.004-.114.201.379.203.405.019-.049.096-.308.112-.308.047 0 .24.603.24.603.002-.024.257-.286.257-.286.076.343.066.514.047.562.002-.009.267-.172.267-.172s.152.638.412.891c.084.082.238.296.328.527.19-.133.421-.799.421-.799s.119.353.019.988c.007-.008.301-.219.301-.219s.042.449-.15 1.008a.572.572 0 0 0-.022.095c.162-.091.404-.388.404-.388l-.042.188c-.048.214-.137.629-.327.953a2.549 2.549 0 0 0-.29.686c.049-.045.099-.085.152-.12.1-.065.199-.117.293-.151l.232-.085c.392-.142.788-.309 1.173-.479.812-.359.631-.86.631-.86-.209.408-.966.816-.966.816s.98-.878.562-1.905c-.115.27-.224.538-.327.792-.144.353-.314.726-.59 1.055-.141.168-.286.29-.446.373a.686.686 0 0 1-.115.048l-.043.016s.172-.283.184-1.063c.004-.282.012-.571.012-.826v-.054c0-.132-.003-.263-.002-.395.005-.558.015-.982.132-1.373-.012-.022-.005-.045-.018-.068-.027-.046-.047-.099-.071-.157-.036-.089-.066-.178-.101-.275-.127-.36-.308-.538-.365-.588-.038.115-.271.591-.271.591s.001-.365-.001-.393c-.067-.511-1.33-.972-1.356-.988l.067.401s-.382-.028-.545-.284c-.034-.052-.084-.09-.13-.125l.09.306.093.214s-.296-.024-.435-.269c-.033-.057-.075-.121-.112-.189a.746.746 0 0 0-.574-.396 8.393 8.393 0 0 0-.601-.062 1.301 1.301 0 0 1-.479-.11L12.573 0l.046.087c.015.029.025.058.04.095l.008.022.032.078.048.172s-.353-.014-.765-.299c-.089-.062-.201-.062-.325-.072L11.622.08a4.192 4.192 0 0 0-.332-.014 3.097 3.097 0 0 0-.974.149c.035-.002.071-.003.106-.003l.067.001c.677.012.887.413.887.413s-.606 0-.785.023c-.209.027-.42.052-.616.106a5.102 5.102 0 0 0-1.622.796c-.124.088-.253.17-.389.256-.23.147-.424.341-.576.577a.357.357 0 0 0-.034.068c-.014.036-.008.039.015.051a.78.78 0 0 0 .168.061 2.353 2.353 0 0 1 1.786 2.005l.015.123c.035.307.072.623.056.944a3.413 3.413 0 0 1-.901 2.191c-.59.646-1.323.69-1.316.685.435-.406.722-.95.876-1.66a1.395 1.395 0 0 0-.084-.828.868.868 0 0 0-.016.047c-.097.276-.22.594-.447.857-.132.15-.312.322-.521.521-.911.867-2.435 2.317-2.409 4.623 0 .135.027.3.056.427zm13.967-5.836c-.113.098-.226.196-.341.292-.205.171-.351.28-.666.394-.276.099-.488-.124-.488-.124a1.3 1.3 0 0 0 .447-.389 7.968 7.968 0 0 0-1.154.71 2.41 2.41 0 0 0-.389.353c-.124.156-.205.318-.205.484v.002c0-.003.044-.005.053-.007a6.122 6.122 0 0 0 1.226-.49 16.006 16.006 0 0 0 1.757-1.074.334.334 0 0 1 .095-.048l.371-.106-.228.314a.288.288 0 0 1-.027.034c-.745.741-1.517 1.272-2.36 1.622a4.734 4.734 0 0 1-.492.174 9.201 9.201 0 0 0 1.513-.525c.537-.244.913-.483 1.22-.772.475-.45.814-.981 1.009-1.576a.732.732 0 0 0 .024-.1l-.111.033c-.127.037-.258.074-.373.13a2.367 2.367 0 0 0-.427.286c-.158.127-.321.269-.454.383zM1.578 14.987c.128.205.268.407.403.602l.021.031c-.351-1.236.223-1.982.223-1.982l.142.391c.036.101.091.199.167.302.147-.275.326-.538.534-.784a1.438 1.438 0 0 1-.472-.415c-.2-.264-.332-.581-.415-.996a5.507 5.507 0 0 1-.069-1.562c.015-.174.036-.348.059-.525a8.377 8.377 0 0 0-1.626 2.716.046.046 0 0 0 .003.021 9.438 9.438 0 0 0 1.03 2.201zM18.221 3.353a5.045 5.045 0 0 1 .366-1.933l.018-.041a.94.94 0 0 0-.246.252c-.168.242-.291.53-.397.932-.182.687-.29 1.427-.337 2.308.192-.205.507-.657.572-1.215.011-.094.024-.199.024-.303zm3.368 19.012c-.396-.065-1.234-.36-1.468-.945-.288.707.306 1.221.75 1.451.077.04.1.05.181.082.084.037-.165.494.045.704.21.21.409.148.487.148 0 0 .361.335.567.111.053-.058.098-.262.029-.385-.086-.152-.295-.124-.315-.124-.41.005-.373-.188-.311-.27.045-.059.132-.055.205-.055.017 0 .034.001.053.004.094.011.184.016.268.016.335 0 .726-.035.985-.179.186-.104.491-.456.475-.692-.017.006-.825.319-1.951.134zm2.324-7.785c-.038-.097-.085-.196-.126-.283l-.06-.126c-.021-.047-.044-.093-.066-.139-.055-.111-.112-.226-.151-.35-.034-.106-.043-.216-.052-.32a3.312 3.312 0 0 0-1.886-2.716 1.25 1.25 0 0 1-.215.417c-.09.12-.144.138-.262.138-.157 0-.18-.18-.133-.265a1.45 1.45 0 0 0 .196-.543c.033-.377-.177-.786-.435-1.068-.239-.261-.649-.564-.979-.663-.079.307.017.812.124 1.109.132.36.544 1.069.445 1.499 0 0-.029.275-.304.448-.153.096-.215.053-.215.053.294-.627.297-.891-.028-1.485-.245-.447-.358-.899-.27-1.398.003-.02.01-.04.014-.06a2.222 2.222 0 0 1-.088.199c-.25.439-.486.667-.628 1.121-.149.508.01 1.059.325 1.598a1.237 1.237 0 0 1-.553-.804 4.323 4.323 0 0 0-1.334 1.166c-.08.104-.175.191-.259.268a4.92 4.92 0 0 1-1.978 1.099c-.493.145-1.001.267-1.502.388l-.131.031c-.683.165-1.409.351-2.097.657-.792.352-1.42.757-1.918 1.239a4.412 4.412 0 0 0-1.326 2.593c-.114.781-.055 1.595.18 2.49.008.032-1.03-.941-.494-3.741a6.322 6.322 0 0 0-.236-.007l-.067.001c-1.933.058-2.737 1.123-2.737 1.123s.126-1.182 1.987-1.579c.14-.03 1.312-.293 1.352-.306.154-.314.341-.612.557-.889l-.166.026c-.319.05-.648.1-.975.143l-.252.03c-.577.074-1.174.149-1.74.316-.594.174-1.059.426-1.422.768-.389.366-.668.839-.852 1.442l-.023.086c-.013.05-.026.101-.045.151-.02.052-.024.11.018.22.348.923.945 1.723 1.774 2.376a7.587 7.587 0 0 0 2.146 1.18c.026.009.07.024.109.064l.348.337-.544-.13c-.064-.015-.127-.029-.191-.047-1.114-.306-2.085-.821-2.885-1.532-.273-.099-1.668-.794-2.26-1.936l-.099-.19s.757.746 1.288.855a5.59 5.59 0 0 1-.564-1.22.283.283 0 0 0-.049-.087C1.273 17.196.624 16.054.196 14.834a4.708 4.708 0 0 1-.085-.262c-.043.355-.064.71-.064 1.057 0 .11.955 2.647.955 2.647s-.42-.467-.768-1.059c0 0-.061-.199-.069-.212.149.897.439 1.74.863 2.521 1.167 2.147 2.956 3.554 5.47 4.212a7.73 7.73 0 0 0 1.955.255l7.855.007c.369 0 .652-.022.915-.07l.041-.007a1.47 1.47 0 0 1 .281-.034c.106.001.219.014.345.044l.062.015c.116.026.224.052.331.052 1.32.01 1.137-.785 1.137-.785-.055-.207-.295-.351-.557-.413a1.204 1.204 0 0 0-.28-.033c-.179 0-.367.041-.559.12l-.288.123-.172.075a1.317 1.317 0 0 1-.098.038.54.54 0 0 1-.17.036c-.199 0-.208-.195-.213-.312a.46.46 0 0 1 .169-.373c.093-.079.194-.156.302-.228.195-.132.396-.268.551-.446a1.49 1.49 0 0 0 .361-.699.825.825 0 0 0-.044-.469c-.014-.035-.027-.042-.04-.046a9.037 9.037 0 0 0-.368-.112c-.488-.137-.847-.342-1.127-.643a2.803 2.803 0 0 1-.439-.671 5.783 5.783 0 0 1-.416-1.096c-.159-.601-.536-1.083-1.15-1.472a3.536 3.536 0 0 0-1.557-.524c-.137-.015-.276-.021-.423-.028-.037-.002-.122-.013-.208-.024-.077-.01-.153-.021-.188-.022l-.21-.013s.054-.076.489-.242c.082-.031.167-.039.25-.054.201-.035.4-.053.59-.053.458 0 .891.106 1.288.314.494.26.888.656 1.206 1.211.173.302.309.626.416.992.021.07.038.14.058.216.035.134.071.271.122.396.307.756.876 1.198 1.69 1.315.216.031.426.046.626.046a3.48 3.48 0 0 0 1.077-.165c.455-.149.803-.382 1.062-.712a1.42 1.42 0 0 0 .255-.494l.035-.121.203.048c.043.011.086.021.13.03a.483.483 0 0 0 .094.009c.092 0 .186-.022.288-.044l.017-.004c.076-.017.15-.02.222-.023l.061-.003c.072 0 .132.048.159.093.031.053.081.083.175.104a.367.367 0 0 0 .075.007c.229 0 .47-.21.476-.416.003-.079-.018-.127-.07-.163-.041-.028-.083-.054-.131-.084l-.228-.143.152-.116a.245.245 0 0 1 .147-.051c.045 0 .085.013.12.028 0 0-.191-1.01-1.527-.716 0 0-.217.089-.328.131l-.052.02a.27.27 0 0 1-.101.019.358.358 0 0 1-.166-.047c-.468-.235-.926-.131-1.002-.131a2.28 2.28 0 0 1-.538-.059.222.222 0 0 1-.116-.067l-.086-.097a2.634 2.634 0 0 1-1.183-.197c-.436-.186-.784-.47-.995-.903a1.487 1.487 0 0 1-.15-.685l.026.067c.084.248.208.474.374.678.306.379.701.634 1.15.813.243.097.495.165.764.21 0 0 .955.036 1.38-.317.323-.18.614-.264.917-.264h.063c1.027-.001 1.118-.498 1.118-.498s.117.076.281.051a.666.666 0 0 0 .604-.63l-.34-.306-.072-.063-.134-.106.092-.105a.274.274 0 0 1 .207-.099c.046 0 .091.012.134.035.061.034.115.077.164.117l.051.04.064.05a.559.559 0 0 0-.036-.265zm-1.267-.273c-.038.106-.088.123-.199.099a.688.688 0 0 0-.181-.014c-.111.005-.221.024-.332.026-.277.005-.543-.045-.763-.225-.312-.256-.372-.559-.177-.943l.004.037a.745.745 0 0 0 .345.611c.18.121.385.17.595.196.17.021.338.05.487.142l.041.021a.043.043 0 0 1 .006-.007c-.029-.041-.039-.183-.024-.242a.565.565 0 0 0 .002-.297.622.622 0 0 1-.25.304.076.076 0 0 1-.053.02 2.53 2.53 0 0 1-.654-.233c-.186-.102-.283-.261-.234-.484a.198.198 0 0 0-.056-.189c-.023-.023-.043-.05-.067-.078.055-.051.102-.1.155-.143.05-.04.102-.078.158-.109.432-.245 1.016-.061 1.208.389.049.114.075.24.089.363.028.259-.013.511-.1.756zm-20.67 2.926c-.02-.237-.033-.474-.046-.756a.102.102 0 0 0-.021-.064c-.63-.909-1.089-1.696-1.446-2.476a7.292 7.292 0 0 1-.169-.394 7.748 7.748 0 0 0 1.682 3.694v-.004zm18.991 4.103c.176.117.395.203.732.287.34.085.653.125.966.125.185 0 .334-.019.47-.059a.81.81 0 0 0 .59-.639 6.03 6.03 0 0 0 .128-.713 1.798 1.798 0 0 0-.372-1.323c-.035.031-.07.061-.106.089a1.104 1.104 0 0 1-.198.121.658.658 0 0 1-.291.072.593.593 0 0 1-.281-.072.96.96 0 0 0-.461-.104c-.063 0-.131.005-.208.013-.027.003-.039.009-.054.04-.258.531-.683.908-1.298 1.154l-.017.007-.003.013a1.15 1.15 0 0 0-.001.454c.054.216.185.391.404.535zM14.99 9.512c-.516.525-1.141.958-1.964 1.364-.52.256-1.1.441-1.826.582-.415.081-.829.159-1.243.237l-.086.015-1.056.2c-.929.178-1.92.389-2.872.71-.691.234-1.224.481-1.677.779-.444.291-.75.591-.965.943a2.637 2.637 0 0 0-.146.291 5.696 5.696 0 0 1-.075.159.42.42 0 0 1-.076.114c-.484.473-.69 1.064-.613 1.756.046.416.176.821.395 1.236.127-.846.574-1.492 1.328-1.92.41-.233.863-.403 1.383-.517.526-.117 1.06-.214 1.561-.304l.307-.054c.516-.091 1.051-.184 1.558-.345.12-.038.238-.08.348-.121.147-.055.275-.12.391-.206.141-.105.289-.2.444-.291-.653-.015-1.76-.017-2.104-.019-.77-.004-1.3.06-1.964.312-.694.264-2.676 1.271-2.676 1.271s.985-1.054 2.837-1.844a7.858 7.858 0 0 1 2.928-.53c.275 0 .561.011.872.033.512.038 1.024.075 1.535.11l.014.001c.024 0 .05-.004.075-.011a10.63 10.63 0 0 1 1.572-.325c.175-.025.353-.061.528-.097-.034-.011-.069-.02-.103-.03a1.13 1.13 0 0 1-.118-.044l-.088-.035-.345-.233 1.296.028c.279 0 3.032-.443 4.21-3.723.078-.219.16-.437.223-.676a7.611 7.611 0 0 1-2.669 1.063 7.155 7.155 0 0 1-1.139.121zm4.784-1.871zm1.701 5.622a.27.27 0 1 0 .54 0 .27.27 0 0 0-.54 0z" }) + ] + } + ); +}); + +exports.default = SiApacheflink; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.d.ts new file mode 100644 index 000000000..b40990db1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6526F"; +declare const SiApacheflink: IconType; +export { SiApacheflink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.mjs new file mode 100644 index 000000000..9605a67f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheflink.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6526F"; +const SiApacheflink = React.forwardRef(function SiApacheflink2({ title = "Apache Flink", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.192 13.236c.028.035.064.069.098.101l.024.022.008.004a.736.736 0 0 0 .179.065 8.117 8.117 0 0 1-.138-1.758c.027-.797.178-1.47.462-2.059a8.02 8.02 0 0 1 .315-.519s-.176 1.202-.202 1.673a7.104 7.104 0 0 0 .16 1.868l.072-.05c-.043-.389-.042-.8.004-1.22a6.987 6.987 0 0 1 .419-1.721 9.266 9.266 0 0 1 .973-1.892c-1.985.209-2.418 2.1-2.418 2.1s.017-.347.024-.434c.057-.649.123-.961.205-1.287-.13.238-.212.488-.271.688-.139.47-.216.949-.273 1.356a9.022 9.022 0 0 0-.096 1.289c.002.38.024.828.176 1.263.073.205.164.373.279.511zm1.44-.737c.179-.113.385-.2.626-.268.425-.119.889-.239 1.461-.379l.19-.046c.478-.116.974-.237 1.439-.415.283-.108.552-.25.824-.436.38-.26.721-.579 1.012-.951.154-.196.232-.349.309-.605l.114-.378s.464.519-.004 1.436c.297-.107.582-.413.798-.788.181-.315.491-1.451.491-1.451s.569.875-.105 2.011a1.59 1.59 0 0 0 .356-.227c2.507-2.49.349-3.899-.103-4.236a4.141 4.141 0 0 0-.982-.525L11 5.218c-.03-.013-.047-.033-.055-.042l-.321-.35.563.155c.079.021.154.042.228.064.614.182 1.082.4 1.472.686.445.325 2.142 1.751.348 3.837.556-.191 1.606-.772 1.962-1.272 1.713-2.405-.254-3.808-.17-3.808.019 0 .044.002.099.01a.44.44 0 0 0 .069.006c.036 0 .097-.006.109-.041.015-.042-.014-.122-.073-.168-.154-.117-.321-.202-.533-.169C12.926 4.4 12.3 3.85 12.3 3.85s2.482.129 2.562-.28a4.92 4.92 0 0 0-1.225-.912 6.697 6.697 0 0 0-2.228-.743c-1.207-.179-2.13.053-2.13.053.096-.121.574-.667 2.556-.511.802.063 1.564.316 2.27.669.182.091.29-.125.293-.223.004-.114.201.379.203.405.019-.049.096-.308.112-.308.047 0 .24.603.24.603.002-.024.257-.286.257-.286.076.343.066.514.047.562.002-.009.267-.172.267-.172s.152.638.412.891c.084.082.238.296.328.527.19-.133.421-.799.421-.799s.119.353.019.988c.007-.008.301-.219.301-.219s.042.449-.15 1.008a.572.572 0 0 0-.022.095c.162-.091.404-.388.404-.388l-.042.188c-.048.214-.137.629-.327.953a2.549 2.549 0 0 0-.29.686c.049-.045.099-.085.152-.12.1-.065.199-.117.293-.151l.232-.085c.392-.142.788-.309 1.173-.479.812-.359.631-.86.631-.86-.209.408-.966.816-.966.816s.98-.878.562-1.905c-.115.27-.224.538-.327.792-.144.353-.314.726-.59 1.055-.141.168-.286.29-.446.373a.686.686 0 0 1-.115.048l-.043.016s.172-.283.184-1.063c.004-.282.012-.571.012-.826v-.054c0-.132-.003-.263-.002-.395.005-.558.015-.982.132-1.373-.012-.022-.005-.045-.018-.068-.027-.046-.047-.099-.071-.157-.036-.089-.066-.178-.101-.275-.127-.36-.308-.538-.365-.588-.038.115-.271.591-.271.591s.001-.365-.001-.393c-.067-.511-1.33-.972-1.356-.988l.067.401s-.382-.028-.545-.284c-.034-.052-.084-.09-.13-.125l.09.306.093.214s-.296-.024-.435-.269c-.033-.057-.075-.121-.112-.189a.746.746 0 0 0-.574-.396 8.393 8.393 0 0 0-.601-.062 1.301 1.301 0 0 1-.479-.11L12.573 0l.046.087c.015.029.025.058.04.095l.008.022.032.078.048.172s-.353-.014-.765-.299c-.089-.062-.201-.062-.325-.072L11.622.08a4.192 4.192 0 0 0-.332-.014 3.097 3.097 0 0 0-.974.149c.035-.002.071-.003.106-.003l.067.001c.677.012.887.413.887.413s-.606 0-.785.023c-.209.027-.42.052-.616.106a5.102 5.102 0 0 0-1.622.796c-.124.088-.253.17-.389.256-.23.147-.424.341-.576.577a.357.357 0 0 0-.034.068c-.014.036-.008.039.015.051a.78.78 0 0 0 .168.061 2.353 2.353 0 0 1 1.786 2.005l.015.123c.035.307.072.623.056.944a3.413 3.413 0 0 1-.901 2.191c-.59.646-1.323.69-1.316.685.435-.406.722-.95.876-1.66a1.395 1.395 0 0 0-.084-.828.868.868 0 0 0-.016.047c-.097.276-.22.594-.447.857-.132.15-.312.322-.521.521-.911.867-2.435 2.317-2.409 4.623 0 .135.027.3.056.427zm13.967-5.836c-.113.098-.226.196-.341.292-.205.171-.351.28-.666.394-.276.099-.488-.124-.488-.124a1.3 1.3 0 0 0 .447-.389 7.968 7.968 0 0 0-1.154.71 2.41 2.41 0 0 0-.389.353c-.124.156-.205.318-.205.484v.002c0-.003.044-.005.053-.007a6.122 6.122 0 0 0 1.226-.49 16.006 16.006 0 0 0 1.757-1.074.334.334 0 0 1 .095-.048l.371-.106-.228.314a.288.288 0 0 1-.027.034c-.745.741-1.517 1.272-2.36 1.622a4.734 4.734 0 0 1-.492.174 9.201 9.201 0 0 0 1.513-.525c.537-.244.913-.483 1.22-.772.475-.45.814-.981 1.009-1.576a.732.732 0 0 0 .024-.1l-.111.033c-.127.037-.258.074-.373.13a2.367 2.367 0 0 0-.427.286c-.158.127-.321.269-.454.383zM1.578 14.987c.128.205.268.407.403.602l.021.031c-.351-1.236.223-1.982.223-1.982l.142.391c.036.101.091.199.167.302.147-.275.326-.538.534-.784a1.438 1.438 0 0 1-.472-.415c-.2-.264-.332-.581-.415-.996a5.507 5.507 0 0 1-.069-1.562c.015-.174.036-.348.059-.525a8.377 8.377 0 0 0-1.626 2.716.046.046 0 0 0 .003.021 9.438 9.438 0 0 0 1.03 2.201zM18.221 3.353a5.045 5.045 0 0 1 .366-1.933l.018-.041a.94.94 0 0 0-.246.252c-.168.242-.291.53-.397.932-.182.687-.29 1.427-.337 2.308.192-.205.507-.657.572-1.215.011-.094.024-.199.024-.303zm3.368 19.012c-.396-.065-1.234-.36-1.468-.945-.288.707.306 1.221.75 1.451.077.04.1.05.181.082.084.037-.165.494.045.704.21.21.409.148.487.148 0 0 .361.335.567.111.053-.058.098-.262.029-.385-.086-.152-.295-.124-.315-.124-.41.005-.373-.188-.311-.27.045-.059.132-.055.205-.055.017 0 .034.001.053.004.094.011.184.016.268.016.335 0 .726-.035.985-.179.186-.104.491-.456.475-.692-.017.006-.825.319-1.951.134zm2.324-7.785c-.038-.097-.085-.196-.126-.283l-.06-.126c-.021-.047-.044-.093-.066-.139-.055-.111-.112-.226-.151-.35-.034-.106-.043-.216-.052-.32a3.312 3.312 0 0 0-1.886-2.716 1.25 1.25 0 0 1-.215.417c-.09.12-.144.138-.262.138-.157 0-.18-.18-.133-.265a1.45 1.45 0 0 0 .196-.543c.033-.377-.177-.786-.435-1.068-.239-.261-.649-.564-.979-.663-.079.307.017.812.124 1.109.132.36.544 1.069.445 1.499 0 0-.029.275-.304.448-.153.096-.215.053-.215.053.294-.627.297-.891-.028-1.485-.245-.447-.358-.899-.27-1.398.003-.02.01-.04.014-.06a2.222 2.222 0 0 1-.088.199c-.25.439-.486.667-.628 1.121-.149.508.01 1.059.325 1.598a1.237 1.237 0 0 1-.553-.804 4.323 4.323 0 0 0-1.334 1.166c-.08.104-.175.191-.259.268a4.92 4.92 0 0 1-1.978 1.099c-.493.145-1.001.267-1.502.388l-.131.031c-.683.165-1.409.351-2.097.657-.792.352-1.42.757-1.918 1.239a4.412 4.412 0 0 0-1.326 2.593c-.114.781-.055 1.595.18 2.49.008.032-1.03-.941-.494-3.741a6.322 6.322 0 0 0-.236-.007l-.067.001c-1.933.058-2.737 1.123-2.737 1.123s.126-1.182 1.987-1.579c.14-.03 1.312-.293 1.352-.306.154-.314.341-.612.557-.889l-.166.026c-.319.05-.648.1-.975.143l-.252.03c-.577.074-1.174.149-1.74.316-.594.174-1.059.426-1.422.768-.389.366-.668.839-.852 1.442l-.023.086c-.013.05-.026.101-.045.151-.02.052-.024.11.018.22.348.923.945 1.723 1.774 2.376a7.587 7.587 0 0 0 2.146 1.18c.026.009.07.024.109.064l.348.337-.544-.13c-.064-.015-.127-.029-.191-.047-1.114-.306-2.085-.821-2.885-1.532-.273-.099-1.668-.794-2.26-1.936l-.099-.19s.757.746 1.288.855a5.59 5.59 0 0 1-.564-1.22.283.283 0 0 0-.049-.087C1.273 17.196.624 16.054.196 14.834a4.708 4.708 0 0 1-.085-.262c-.043.355-.064.71-.064 1.057 0 .11.955 2.647.955 2.647s-.42-.467-.768-1.059c0 0-.061-.199-.069-.212.149.897.439 1.74.863 2.521 1.167 2.147 2.956 3.554 5.47 4.212a7.73 7.73 0 0 0 1.955.255l7.855.007c.369 0 .652-.022.915-.07l.041-.007a1.47 1.47 0 0 1 .281-.034c.106.001.219.014.345.044l.062.015c.116.026.224.052.331.052 1.32.01 1.137-.785 1.137-.785-.055-.207-.295-.351-.557-.413a1.204 1.204 0 0 0-.28-.033c-.179 0-.367.041-.559.12l-.288.123-.172.075a1.317 1.317 0 0 1-.098.038.54.54 0 0 1-.17.036c-.199 0-.208-.195-.213-.312a.46.46 0 0 1 .169-.373c.093-.079.194-.156.302-.228.195-.132.396-.268.551-.446a1.49 1.49 0 0 0 .361-.699.825.825 0 0 0-.044-.469c-.014-.035-.027-.042-.04-.046a9.037 9.037 0 0 0-.368-.112c-.488-.137-.847-.342-1.127-.643a2.803 2.803 0 0 1-.439-.671 5.783 5.783 0 0 1-.416-1.096c-.159-.601-.536-1.083-1.15-1.472a3.536 3.536 0 0 0-1.557-.524c-.137-.015-.276-.021-.423-.028-.037-.002-.122-.013-.208-.024-.077-.01-.153-.021-.188-.022l-.21-.013s.054-.076.489-.242c.082-.031.167-.039.25-.054.201-.035.4-.053.59-.053.458 0 .891.106 1.288.314.494.26.888.656 1.206 1.211.173.302.309.626.416.992.021.07.038.14.058.216.035.134.071.271.122.396.307.756.876 1.198 1.69 1.315.216.031.426.046.626.046a3.48 3.48 0 0 0 1.077-.165c.455-.149.803-.382 1.062-.712a1.42 1.42 0 0 0 .255-.494l.035-.121.203.048c.043.011.086.021.13.03a.483.483 0 0 0 .094.009c.092 0 .186-.022.288-.044l.017-.004c.076-.017.15-.02.222-.023l.061-.003c.072 0 .132.048.159.093.031.053.081.083.175.104a.367.367 0 0 0 .075.007c.229 0 .47-.21.476-.416.003-.079-.018-.127-.07-.163-.041-.028-.083-.054-.131-.084l-.228-.143.152-.116a.245.245 0 0 1 .147-.051c.045 0 .085.013.12.028 0 0-.191-1.01-1.527-.716 0 0-.217.089-.328.131l-.052.02a.27.27 0 0 1-.101.019.358.358 0 0 1-.166-.047c-.468-.235-.926-.131-1.002-.131a2.28 2.28 0 0 1-.538-.059.222.222 0 0 1-.116-.067l-.086-.097a2.634 2.634 0 0 1-1.183-.197c-.436-.186-.784-.47-.995-.903a1.487 1.487 0 0 1-.15-.685l.026.067c.084.248.208.474.374.678.306.379.701.634 1.15.813.243.097.495.165.764.21 0 0 .955.036 1.38-.317.323-.18.614-.264.917-.264h.063c1.027-.001 1.118-.498 1.118-.498s.117.076.281.051a.666.666 0 0 0 .604-.63l-.34-.306-.072-.063-.134-.106.092-.105a.274.274 0 0 1 .207-.099c.046 0 .091.012.134.035.061.034.115.077.164.117l.051.04.064.05a.559.559 0 0 0-.036-.265zm-1.267-.273c-.038.106-.088.123-.199.099a.688.688 0 0 0-.181-.014c-.111.005-.221.024-.332.026-.277.005-.543-.045-.763-.225-.312-.256-.372-.559-.177-.943l.004.037a.745.745 0 0 0 .345.611c.18.121.385.17.595.196.17.021.338.05.487.142l.041.021a.043.043 0 0 1 .006-.007c-.029-.041-.039-.183-.024-.242a.565.565 0 0 0 .002-.297.622.622 0 0 1-.25.304.076.076 0 0 1-.053.02 2.53 2.53 0 0 1-.654-.233c-.186-.102-.283-.261-.234-.484a.198.198 0 0 0-.056-.189c-.023-.023-.043-.05-.067-.078.055-.051.102-.1.155-.143.05-.04.102-.078.158-.109.432-.245 1.016-.061 1.208.389.049.114.075.24.089.363.028.259-.013.511-.1.756zm-20.67 2.926c-.02-.237-.033-.474-.046-.756a.102.102 0 0 0-.021-.064c-.63-.909-1.089-1.696-1.446-2.476a7.292 7.292 0 0 1-.169-.394 7.748 7.748 0 0 0 1.682 3.694v-.004zm18.991 4.103c.176.117.395.203.732.287.34.085.653.125.966.125.185 0 .334-.019.47-.059a.81.81 0 0 0 .59-.639 6.03 6.03 0 0 0 .128-.713 1.798 1.798 0 0 0-.372-1.323c-.035.031-.07.061-.106.089a1.104 1.104 0 0 1-.198.121.658.658 0 0 1-.291.072.593.593 0 0 1-.281-.072.96.96 0 0 0-.461-.104c-.063 0-.131.005-.208.013-.027.003-.039.009-.054.04-.258.531-.683.908-1.298 1.154l-.017.007-.003.013a1.15 1.15 0 0 0-.001.454c.054.216.185.391.404.535zM14.99 9.512c-.516.525-1.141.958-1.964 1.364-.52.256-1.1.441-1.826.582-.415.081-.829.159-1.243.237l-.086.015-1.056.2c-.929.178-1.92.389-2.872.71-.691.234-1.224.481-1.677.779-.444.291-.75.591-.965.943a2.637 2.637 0 0 0-.146.291 5.696 5.696 0 0 1-.075.159.42.42 0 0 1-.076.114c-.484.473-.69 1.064-.613 1.756.046.416.176.821.395 1.236.127-.846.574-1.492 1.328-1.92.41-.233.863-.403 1.383-.517.526-.117 1.06-.214 1.561-.304l.307-.054c.516-.091 1.051-.184 1.558-.345.12-.038.238-.08.348-.121.147-.055.275-.12.391-.206.141-.105.289-.2.444-.291-.653-.015-1.76-.017-2.104-.019-.77-.004-1.3.06-1.964.312-.694.264-2.676 1.271-2.676 1.271s.985-1.054 2.837-1.844a7.858 7.858 0 0 1 2.928-.53c.275 0 .561.011.872.033.512.038 1.024.075 1.535.11l.014.001c.024 0 .05-.004.075-.011a10.63 10.63 0 0 1 1.572-.325c.175-.025.353-.061.528-.097-.034-.011-.069-.02-.103-.03a1.13 1.13 0 0 1-.118-.044l-.088-.035-.345-.233 1.296.028c.279 0 3.032-.443 4.21-3.723.078-.219.16-.437.223-.676a7.611 7.611 0 0 1-2.669 1.063 7.155 7.155 0 0 1-1.139.121zm4.784-1.871zm1.701 5.622a.27.27 0 1 0 .54 0 .27.27 0 0 0-.54 0z" }) + ] + } + ); +}); + +export { SiApacheflink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.cjs new file mode 100644 index 000000000..8ede137ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#326CAC"; +const SiApachefreemarker = React__namespace.forwardRef(function SiApachefreemarker2({ title = "Apache FreeMarker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.06v-.311l1.16-.538v.281l-.867.392v.027l.868.402v.281L0 12.059zm3.18-.252h-.266l-.071.409h.303l-.054.271h-.293l-.07.394h-.273l.069-.394h-.362l-.07.394h-.275l.069-.394h-.254l.054-.271h.247l.071-.41h-.281l.054-.27h.274l.071-.42h.274l-.072.42h.363l.071-.42h.276l-.076.42h.276l-.054.27zm-.537 0h-.362l-.074.409h.362l.074-.41zm1.134-.65h1.097v.181h-.9v.62h.806v.179h-.806v.744h-.197v-1.725zm2.695 1.724-.363-.552a1.625 1.625 0 0 1-.11.005H5.54v.547h-.197v-1.725h.655c.216 0 .382.051.5.153.12.1.18.242.18.426a.6.6 0 0 1-.1.355.54.54 0 0 1-.289.202l.407.59h-.224zm-.474-.73c.158 0 .279-.034.363-.103.085-.07.128-.173.128-.308 0-.131-.043-.23-.128-.298-.084-.069-.205-.104-.363-.104H5.54v.814h.458zm1.305-.995h1.17v.182H7.5v.58h.87v.18H7.5v.6h1.006v.183H7.303v-1.725zm1.782 0h1.171v.182h-.974v.58h.87v.18h-.87v.6h1.006v.183H9.085v-1.725zm1.782 0h.24l.658 1.257.65-1.257h.242v1.725h-.185l-.003-1.437-.65 1.255h-.114l-.655-1.255v1.437h-.183v-1.725zm3.774 1.725-.194-.44h-.94l-.192.44h-.21l.775-1.725h.204l.772 1.725h-.215zm-1.052-.623h.779l-.392-.887-.387.887zm2.848.623-.363-.552a1.625 1.625 0 0 1-.11.005h-.459v.547h-.197v-1.725h.655c.216 0 .382.051.5.153.12.1.18.242.18.426a.6.6 0 0 1-.1.355.54.54 0 0 1-.289.202l.407.59h-.224zm-.474-.73c.158 0 .279-.034.363-.103.085-.07.128-.173.128-.308 0-.131-.043-.23-.128-.298-.084-.069-.205-.104-.363-.104h-.458v.814h.458zm2.712.73h-.239l-.635-.82-.336.367v.453h-.197v-1.725h.197v1.013l.927-1.013h.237l-.688.752.734.973zm.496-1.725h1.17v.182h-.973v.58h.87v.18h-.87v.6h1.005v.183h-1.202v-1.725zm2.91 1.725-.362-.552a1.625 1.625 0 0 1-.11.005h-.459v.547h-.197v-1.725h.655c.216 0 .382.051.5.153.12.1.18.242.18.426 0 .142-.033.26-.1.355s-.164.163-.289.202l.407.59h-.224zm-.473-.73c.158 0 .279-.034.363-.103.085-.07.128-.173.128-.308 0-.131-.043-.23-.128-.298-.084-.069-.205-.104-.363-.104h-.458v.814h.458zM24 11.75v.31l-1.16.535v-.281l.867-.402v-.027l-.868-.392v-.28l1.161.537z" }) + ] + } + ); +}); + +exports.default = SiApachefreemarker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.d.ts new file mode 100644 index 000000000..e17ce0d61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#326CAC"; +declare const SiApachefreemarker: IconType; +export { SiApachefreemarker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.mjs new file mode 100644 index 000000000..757733084 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachefreemarker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#326CAC"; +const SiApachefreemarker = React.forwardRef(function SiApachefreemarker2({ title = "Apache FreeMarker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.06v-.311l1.16-.538v.281l-.867.392v.027l.868.402v.281L0 12.059zm3.18-.252h-.266l-.071.409h.303l-.054.271h-.293l-.07.394h-.273l.069-.394h-.362l-.07.394h-.275l.069-.394h-.254l.054-.271h.247l.071-.41h-.281l.054-.27h.274l.071-.42h.274l-.072.42h.363l.071-.42h.276l-.076.42h.276l-.054.27zm-.537 0h-.362l-.074.409h.362l.074-.41zm1.134-.65h1.097v.181h-.9v.62h.806v.179h-.806v.744h-.197v-1.725zm2.695 1.724-.363-.552a1.625 1.625 0 0 1-.11.005H5.54v.547h-.197v-1.725h.655c.216 0 .382.051.5.153.12.1.18.242.18.426a.6.6 0 0 1-.1.355.54.54 0 0 1-.289.202l.407.59h-.224zm-.474-.73c.158 0 .279-.034.363-.103.085-.07.128-.173.128-.308 0-.131-.043-.23-.128-.298-.084-.069-.205-.104-.363-.104H5.54v.814h.458zm1.305-.995h1.17v.182H7.5v.58h.87v.18H7.5v.6h1.006v.183H7.303v-1.725zm1.782 0h1.171v.182h-.974v.58h.87v.18h-.87v.6h1.006v.183H9.085v-1.725zm1.782 0h.24l.658 1.257.65-1.257h.242v1.725h-.185l-.003-1.437-.65 1.255h-.114l-.655-1.255v1.437h-.183v-1.725zm3.774 1.725-.194-.44h-.94l-.192.44h-.21l.775-1.725h.204l.772 1.725h-.215zm-1.052-.623h.779l-.392-.887-.387.887zm2.848.623-.363-.552a1.625 1.625 0 0 1-.11.005h-.459v.547h-.197v-1.725h.655c.216 0 .382.051.5.153.12.1.18.242.18.426a.6.6 0 0 1-.1.355.54.54 0 0 1-.289.202l.407.59h-.224zm-.474-.73c.158 0 .279-.034.363-.103.085-.07.128-.173.128-.308 0-.131-.043-.23-.128-.298-.084-.069-.205-.104-.363-.104h-.458v.814h.458zm2.712.73h-.239l-.635-.82-.336.367v.453h-.197v-1.725h.197v1.013l.927-1.013h.237l-.688.752.734.973zm.496-1.725h1.17v.182h-.973v.58h.87v.18h-.87v.6h1.005v.183h-1.202v-1.725zm2.91 1.725-.362-.552a1.625 1.625 0 0 1-.11.005h-.459v.547h-.197v-1.725h.655c.216 0 .382.051.5.153.12.1.18.242.18.426 0 .142-.033.26-.1.355s-.164.163-.289.202l.407.59h-.224zm-.473-.73c.158 0 .279-.034.363-.103.085-.07.128-.173.128-.308 0-.131-.043-.23-.128-.298-.084-.069-.205-.104-.363-.104h-.458v.814h.458zM24 11.75v.31l-1.16.535v-.281l.867-.402v-.027l-.868-.392v-.28l1.161.537z" }) + ] + } + ); +}); + +export { SiApachefreemarker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.cjs new file mode 100644 index 000000000..edf6e94ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4298B8"; +const SiApachegroovy = React__namespace.forwardRef(function SiApachegroovy2({ title = "Apache Groovy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.997 6.012S10.315 8.8 9.516 10.155c-.155.058-.172.041-.341.207-.41-.47-.897-.041-1.028.22-.057-.566-.151-.567-.279-.694.074-.496.316-1.305-.241-1.884-1.078-.727-2.326 1.05-3.021 1.982l-.375.622c-1.546-.032-2.763.008-4.231-.021 1.79.67 1.864.686 4.026 1.506 0 .066.161.372.34.552.147.15.308.234.389.284-.106.054-.32.138-.385.258-.292.546.139.672.418 1.107.315.568.382.944 1.126.625.254-.11.562-.148.758-.21-.693 1.094-.87 1.392-2.083 3.274l.012.004c4.85-1.893 4.974-1.942 7.373-2.89 3.448 1.338 3.646 1.448 7.432 2.891-.529-.826-.89-1.343-1.274-1.995.151-.013.483-.046.777-.233.213-.135.463-.288.688-.574.443-.565.551-1.277.39-2.166-.078-.423-.235-.834-.213-.85 2.061-.778 2.304-.862 4.226-1.587-2.31.034-2.422.01-4.591.016-.036-.414-.244-.627-.882-.606-.238.039-.389.12-.5.445-.357-.657-.85-.464-1.06-.14-.275-.282-.917-.377-1.24-.17-.238-.112-.514-.112-.757.177-.175-.146-.23-.188-.614-.342-.886-1.497-1.622-2.692-2.36-3.951zm.012.802c.35.535 1.552 2.61 1.849 3.074-.337.023-.668.202-.918.562-.217-.224-.47-.445-.917-.463-.544-.093-.834.148-1.2.568-.108-.365-.53-.45-.896-.28.327-.519 1.872-3.122 2.082-3.46zM7.45 9.128c-.05 1.434-1.068 2.712-1.798 2.245-.551-.449.149-1.584.59-1.985-.033.307.246.498.023.77-.446.543-.27.936-.078.996.513.162 1.004-1.227 1.004-2.201 0-.625-.366-.613-1.086.136-.983 1.022-1.513 2.012-1.16 2.69.197.38.485.651.959.594.925-.11 1.483-1.254 1.543-1.988.148-.003.109.01.148-.02 0 .129.177.755.317 1.166.183.702.964 2.11-1.369 2.658-.44.11-.614.148-1.05.32-.213-.443-.263-.585-.697-1.013.588-.205.593-.185.972-.317 1.467-.51 1.908-.947 1.857-1.57 0 0 .018-.32-.185-.588a2.613 2.613 0 0 1-.293.645c-.437.68-1.296 1.101-2.06.833-.417-.146-.596-.466-.596-1.015 0-.703 1.601-2.735 2.387-3.08.555-.165.579.293.571.724zm6.502 1.3c.26.006.543.133.735.34.594.64.529 1.417.163 1.905-.435.581-1.532.324-1.791-.488-.12-.378.095-1.312.475-1.624a.628.628 0 0 1 .418-.132zm-2.113.066a.502.502 0 0 1 .117.017c.503.03.61.313.701.56.231.626.173 1.212-.301 1.691-.711.719-1.54.401-1.536-.567.014-.69.443-1.715 1.02-1.7zm1.868.038c-.383.287-.432 1.023-.08 1.296.138.13.215.22.613.256.273.024.704-.253.725-.527.01-.125-.013-.333-.312-.67-.252-.283-.579-.349-.661-.3-.265.156.021.28.125.383.162.163.2.234.125.282a.447.447 0 0 1-.372.057c-.105-.049-.456-.246-.163-.777zm3.759.003c.167.26.215.316.402.965.24.838.546 1.163.816 1.01.74-.418.148-1.476-.113-1.974.167-.002.134.007.286.005.12.471.086.387.407 1.813.385 1.706.442 2.16-.528 2.926-.446.352-1.103.37-1.667.34l-.636-.095c.438-.287.545-.557.542-1.116 1.278.535 1.959.132 2.23-.526.132-.317.086-.735-.04-1.471.008.6-.005.71-.084 1.007-.158.595-.547.76-.812.34-.102-.163-.345-.702-.42-1.282-.075-.58-.132-1.395-.5-1.736.04-.08.082-.17.117-.206zm-1.247.01c.258.068.572.204.74.52.234.436.388.668.376 1.447-.014.832-.34 1.055-.557 1.086-.278.04-.762.034-1.049-1.598-.095-.541-.268-1.056-.45-1.224.09-.11.097-.096.165-.204.091.1.17.27.298.777.202.808.387.975.745 1.02.558.072.778-.78.318-1.391-.1-.134-.365-.307-.503-.236.008.236.113.162.114.318-.026.185-.053.219-.113.32-.142-.056-.21-.078-.334-.291-.157-.31-.055-.6.25-.544zm-4.597.076c-.263.185-.594.8-.304 1.35.143.205.297.372.638.3.245-.051.671-.34.73-.749.052-.35-.456-1.028-.738-.87-.327.183-.128.314.074.511.185.18.052.289-.077.342-.258.106-.403.003-.467-.203-.065-.205-.01-.38.144-.68zm-2.867.064c.056.172.1.402.218.624.028.023.132 0 .269-.157.086-.1.185-.238.357-.463.104.095.113.166.142.219.073.13.225.12.273.106.168-.167.195-.275.306-.29.01.216.021.35-.257.677a.535.535 0 0 1-.501.172c-.12-.034-.199-.108-.389-.205-.258.04-.19.315-.143.546.12.611.5.855.832.675.116-.062.09-.062.312-.153-.038.388-.06.463.01.896-.541.301-.982.25-1.102-.506-.091-.632-.261-1.4-.415-1.556-.145-.147-.205-.195-.205-.195l.293-.39zm-7.114.082c.753.01 1.602.01 2.506.017-.13.318-.175.54-.193.854-.422-.163-1.877-.684-2.313-.871zm20.723.01c-.997.359-1.715.637-2.677 1.004-.105-.45-.124-.588-.219-.994 1.601-.005 1.628-.002 2.896-.01zm-6.978 2.04c.105.43.253.641.253.641.202.348.454.545.84.645.085.136.115.163.148.236.037.457.01.514-.344.774-.209.204-.218.497-.003.769.231.22.474.298 1.375.064.174.3.418.653.776 1.217-1.206-.455-2.868-1.103-6.43-2.49 0 0-4.169 1.62-6.404 2.491.935-1.474 1.012-1.599 1.677-2.63.225-.089.149-.053.349-.155.459-.245.827-.61 1.028-1.145.368.83.779.925 1.636.655.177-.082.38-.2.424-.518.46.413 1.432.49 2.142-.382.612.717 2.001.785 2.533-.171zm2.157.865s.04.129.064.169c-.101.003-.213 0-.213 0a.905.905 0 0 0 .149-.17z" }) + ] + } + ); +}); + +exports.default = SiApachegroovy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.d.ts new file mode 100644 index 000000000..3df2db770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4298B8"; +declare const SiApachegroovy: IconType; +export { SiApachegroovy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.mjs new file mode 100644 index 000000000..bf6e5f5fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachegroovy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4298B8"; +const SiApachegroovy = React.forwardRef(function SiApachegroovy2({ title = "Apache Groovy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.997 6.012S10.315 8.8 9.516 10.155c-.155.058-.172.041-.341.207-.41-.47-.897-.041-1.028.22-.057-.566-.151-.567-.279-.694.074-.496.316-1.305-.241-1.884-1.078-.727-2.326 1.05-3.021 1.982l-.375.622c-1.546-.032-2.763.008-4.231-.021 1.79.67 1.864.686 4.026 1.506 0 .066.161.372.34.552.147.15.308.234.389.284-.106.054-.32.138-.385.258-.292.546.139.672.418 1.107.315.568.382.944 1.126.625.254-.11.562-.148.758-.21-.693 1.094-.87 1.392-2.083 3.274l.012.004c4.85-1.893 4.974-1.942 7.373-2.89 3.448 1.338 3.646 1.448 7.432 2.891-.529-.826-.89-1.343-1.274-1.995.151-.013.483-.046.777-.233.213-.135.463-.288.688-.574.443-.565.551-1.277.39-2.166-.078-.423-.235-.834-.213-.85 2.061-.778 2.304-.862 4.226-1.587-2.31.034-2.422.01-4.591.016-.036-.414-.244-.627-.882-.606-.238.039-.389.12-.5.445-.357-.657-.85-.464-1.06-.14-.275-.282-.917-.377-1.24-.17-.238-.112-.514-.112-.757.177-.175-.146-.23-.188-.614-.342-.886-1.497-1.622-2.692-2.36-3.951zm.012.802c.35.535 1.552 2.61 1.849 3.074-.337.023-.668.202-.918.562-.217-.224-.47-.445-.917-.463-.544-.093-.834.148-1.2.568-.108-.365-.53-.45-.896-.28.327-.519 1.872-3.122 2.082-3.46zM7.45 9.128c-.05 1.434-1.068 2.712-1.798 2.245-.551-.449.149-1.584.59-1.985-.033.307.246.498.023.77-.446.543-.27.936-.078.996.513.162 1.004-1.227 1.004-2.201 0-.625-.366-.613-1.086.136-.983 1.022-1.513 2.012-1.16 2.69.197.38.485.651.959.594.925-.11 1.483-1.254 1.543-1.988.148-.003.109.01.148-.02 0 .129.177.755.317 1.166.183.702.964 2.11-1.369 2.658-.44.11-.614.148-1.05.32-.213-.443-.263-.585-.697-1.013.588-.205.593-.185.972-.317 1.467-.51 1.908-.947 1.857-1.57 0 0 .018-.32-.185-.588a2.613 2.613 0 0 1-.293.645c-.437.68-1.296 1.101-2.06.833-.417-.146-.596-.466-.596-1.015 0-.703 1.601-2.735 2.387-3.08.555-.165.579.293.571.724zm6.502 1.3c.26.006.543.133.735.34.594.64.529 1.417.163 1.905-.435.581-1.532.324-1.791-.488-.12-.378.095-1.312.475-1.624a.628.628 0 0 1 .418-.132zm-2.113.066a.502.502 0 0 1 .117.017c.503.03.61.313.701.56.231.626.173 1.212-.301 1.691-.711.719-1.54.401-1.536-.567.014-.69.443-1.715 1.02-1.7zm1.868.038c-.383.287-.432 1.023-.08 1.296.138.13.215.22.613.256.273.024.704-.253.725-.527.01-.125-.013-.333-.312-.67-.252-.283-.579-.349-.661-.3-.265.156.021.28.125.383.162.163.2.234.125.282a.447.447 0 0 1-.372.057c-.105-.049-.456-.246-.163-.777zm3.759.003c.167.26.215.316.402.965.24.838.546 1.163.816 1.01.74-.418.148-1.476-.113-1.974.167-.002.134.007.286.005.12.471.086.387.407 1.813.385 1.706.442 2.16-.528 2.926-.446.352-1.103.37-1.667.34l-.636-.095c.438-.287.545-.557.542-1.116 1.278.535 1.959.132 2.23-.526.132-.317.086-.735-.04-1.471.008.6-.005.71-.084 1.007-.158.595-.547.76-.812.34-.102-.163-.345-.702-.42-1.282-.075-.58-.132-1.395-.5-1.736.04-.08.082-.17.117-.206zm-1.247.01c.258.068.572.204.74.52.234.436.388.668.376 1.447-.014.832-.34 1.055-.557 1.086-.278.04-.762.034-1.049-1.598-.095-.541-.268-1.056-.45-1.224.09-.11.097-.096.165-.204.091.1.17.27.298.777.202.808.387.975.745 1.02.558.072.778-.78.318-1.391-.1-.134-.365-.307-.503-.236.008.236.113.162.114.318-.026.185-.053.219-.113.32-.142-.056-.21-.078-.334-.291-.157-.31-.055-.6.25-.544zm-4.597.076c-.263.185-.594.8-.304 1.35.143.205.297.372.638.3.245-.051.671-.34.73-.749.052-.35-.456-1.028-.738-.87-.327.183-.128.314.074.511.185.18.052.289-.077.342-.258.106-.403.003-.467-.203-.065-.205-.01-.38.144-.68zm-2.867.064c.056.172.1.402.218.624.028.023.132 0 .269-.157.086-.1.185-.238.357-.463.104.095.113.166.142.219.073.13.225.12.273.106.168-.167.195-.275.306-.29.01.216.021.35-.257.677a.535.535 0 0 1-.501.172c-.12-.034-.199-.108-.389-.205-.258.04-.19.315-.143.546.12.611.5.855.832.675.116-.062.09-.062.312-.153-.038.388-.06.463.01.896-.541.301-.982.25-1.102-.506-.091-.632-.261-1.4-.415-1.556-.145-.147-.205-.195-.205-.195l.293-.39zm-7.114.082c.753.01 1.602.01 2.506.017-.13.318-.175.54-.193.854-.422-.163-1.877-.684-2.313-.871zm20.723.01c-.997.359-1.715.637-2.677 1.004-.105-.45-.124-.588-.219-.994 1.601-.005 1.628-.002 2.896-.01zm-6.978 2.04c.105.43.253.641.253.641.202.348.454.545.84.645.085.136.115.163.148.236.037.457.01.514-.344.774-.209.204-.218.497-.003.769.231.22.474.298 1.375.064.174.3.418.653.776 1.217-1.206-.455-2.868-1.103-6.43-2.49 0 0-4.169 1.62-6.404 2.491.935-1.474 1.012-1.599 1.677-2.63.225-.089.149-.053.349-.155.459-.245.827-.61 1.028-1.145.368.83.779.925 1.636.655.177-.082.38-.2.424-.518.46.413 1.432.49 2.142-.382.612.717 2.001.785 2.533-.171zm2.157.865s.04.129.064.169c-.101.003-.213 0-.213 0a.905.905 0 0 0 .149-.17z" }) + ] + } + ); +}); + +export { SiApachegroovy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.cjs new file mode 100644 index 000000000..b3d60a85c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#578B34"; +const SiApacheguacamole = React__namespace.forwardRef(function SiApacheguacamole2({ title = "Apache Guacamole", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.324 23.984c-.7-.055-1.581-.198-2.236-.363a11.942 11.942 0 0 1-7.814-6.303c-.61-1.239-.967-2.383-1.127-3.61a9.074 9.074 0 0 0-.102-.639c-.058-.25-.058-1.891 0-2.142.024-.103.07-.39.102-.638.16-1.228.517-2.372 1.127-3.611A11.799 11.799 0 0 1 6.68 1.272C7.919.663 9.063.305 10.29.145c.248-.032.536-.078.639-.102.25-.057 1.892-.057 2.142 0 .103.024.391.07.638.102 1.228.16 2.372.518 3.611 1.127a11.799 11.799 0 0 1 5.406 5.406c.61 1.239.967 2.383 1.127 3.611.032.248.078.535.102.638.026.113.043.541.043 1.071 0 .531-.017.958-.043 1.071-.024.103-.07.391-.102.639-.16 1.227-.517 2.371-1.127 3.61a11.799 11.799 0 0 1-5.406 5.406c-1.239.61-2.383.967-3.611 1.127-.247.033-.526.075-.619.094-.234.049-1.334.073-1.766.039Zm1.551-4.36a10.307 10.307 0 0 0 1.868-.248c2.176-.486 3.95-1.695 5.122-3.492.398-.61.405-.712.027-.416-1.135.891-3.013 1.632-4.999 1.973-1.082.186-1.423.211-2.837.211-1.058 0-1.464-.015-1.865-.065-.998-.127-2.116-.366-2.944-.631-1.252-.4-2.535-1.056-3.199-1.637-.212-.186-.314-.243-.314-.177 0 .048.269.554.426.801 1.435 2.269 3.908 3.516 7.295 3.679l.676.034c.042.003.377-.011.744-.032Zm.233-3.907c1.801-.132 3.472-.507 5.054-1.134 1.175-.466 2.374-1.167 2.867-1.675.167-.172.211-.316.345-1.119.05-.301.134-.672.187-.826.076-.219.105-.404.135-.871.058-.893.007-1.261-.237-1.694-.139-.247-.469-.607-.64-.7l-.129-.069-.221.161c-.317.229-.326.246-.243.41.133.261.2.572.199.923-.003.631-.222 1.091-.798 1.675-2.165 2.198-7.956 2.956-12.17 1.594-1.933-.625-3.219-1.592-3.559-2.676-.085-.27-.095-.358-.08-.676.02-.451.088-.613.511-1.239.166-.244.353-.576.418-.739.065-.163.142-.343.172-.402.086-.166.006-.167-.293-.002-.631.35-1.294.878-1.644 1.31-.469.579-.591 1.01-.547 1.934.027.562.087.854.225 1.094.066.116.096.24.113.476.042.551.138 1.102.215 1.228.1.164.616.593 1.066.886 2.328 1.516 5.915 2.36 9.054 2.131Zm-.056-3.569c1.745-.108 3.299-.463 4.478-1.023.594-.283.934-.515 1.331-.909.414-.413.573-.703.6-1.102.019-.282-.072-.621-.172-.638-.045-.008-.901.459-1.53.835-.067.039-.13.063-.142.051a1.993 1.993 0 0 1-.072-.336c-.071-.44-.135-.573-.345-.718-.324-.225-.391-.298-.523-.572-.116-.241-.149-.28-.288-.334-.26-.102-.557-.299-.557-.368 0-.072.239-.753.39-1.112a3.34 3.34 0 0 0 .099-.249c0-.036-.833-.632-.956-.683-.16-.067-.723-.128-1.205-.13a3.688 3.688 0 0 1-1.258-.206c-.631-.208-.665-.211-1.217-.13-.435.063-.514.087-.698.206-.49.315-.879.428-1.478.43a4.01 4.01 0 0 0-.654.059c-.511.106-.66.182-1.031.528-.469.439-.777.645-1.337.897-.589.265-.655.311-.741.515-.199.469-.293.645-.522.976-.367.53-.453.736-.424 1.016.072.69.818 1.448 1.947 1.981 1.638.772 4.02 1.156 6.305 1.016Zm6.174-4.675c.945-.578 1.504-1.038 1.672-1.377.087-.177.076-.241-.075-.425-.373-.452-1.844-1.32-2.491-1.47-.299-.069-.359-.045-.539.217-.277.403-.946 1.948-.946 2.183 0 .032.084.103.187.159.164.09.204.137.315.37.107.226.157.286.319.387.12.074.235.187.304.3.185.297.165.291.445.136.139-.077.503-.292.809-.48Z" }) + ] + } + ); +}); + +exports.default = SiApacheguacamole; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.d.ts new file mode 100644 index 000000000..52b384359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#578B34"; +declare const SiApacheguacamole: IconType; +export { SiApacheguacamole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.mjs new file mode 100644 index 000000000..dcf1f594d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheguacamole.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#578B34"; +const SiApacheguacamole = React.forwardRef(function SiApacheguacamole2({ title = "Apache Guacamole", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.324 23.984c-.7-.055-1.581-.198-2.236-.363a11.942 11.942 0 0 1-7.814-6.303c-.61-1.239-.967-2.383-1.127-3.61a9.074 9.074 0 0 0-.102-.639c-.058-.25-.058-1.891 0-2.142.024-.103.07-.39.102-.638.16-1.228.517-2.372 1.127-3.611A11.799 11.799 0 0 1 6.68 1.272C7.919.663 9.063.305 10.29.145c.248-.032.536-.078.639-.102.25-.057 1.892-.057 2.142 0 .103.024.391.07.638.102 1.228.16 2.372.518 3.611 1.127a11.799 11.799 0 0 1 5.406 5.406c.61 1.239.967 2.383 1.127 3.611.032.248.078.535.102.638.026.113.043.541.043 1.071 0 .531-.017.958-.043 1.071-.024.103-.07.391-.102.639-.16 1.227-.517 2.371-1.127 3.61a11.799 11.799 0 0 1-5.406 5.406c-1.239.61-2.383.967-3.611 1.127-.247.033-.526.075-.619.094-.234.049-1.334.073-1.766.039Zm1.551-4.36a10.307 10.307 0 0 0 1.868-.248c2.176-.486 3.95-1.695 5.122-3.492.398-.61.405-.712.027-.416-1.135.891-3.013 1.632-4.999 1.973-1.082.186-1.423.211-2.837.211-1.058 0-1.464-.015-1.865-.065-.998-.127-2.116-.366-2.944-.631-1.252-.4-2.535-1.056-3.199-1.637-.212-.186-.314-.243-.314-.177 0 .048.269.554.426.801 1.435 2.269 3.908 3.516 7.295 3.679l.676.034c.042.003.377-.011.744-.032Zm.233-3.907c1.801-.132 3.472-.507 5.054-1.134 1.175-.466 2.374-1.167 2.867-1.675.167-.172.211-.316.345-1.119.05-.301.134-.672.187-.826.076-.219.105-.404.135-.871.058-.893.007-1.261-.237-1.694-.139-.247-.469-.607-.64-.7l-.129-.069-.221.161c-.317.229-.326.246-.243.41.133.261.2.572.199.923-.003.631-.222 1.091-.798 1.675-2.165 2.198-7.956 2.956-12.17 1.594-1.933-.625-3.219-1.592-3.559-2.676-.085-.27-.095-.358-.08-.676.02-.451.088-.613.511-1.239.166-.244.353-.576.418-.739.065-.163.142-.343.172-.402.086-.166.006-.167-.293-.002-.631.35-1.294.878-1.644 1.31-.469.579-.591 1.01-.547 1.934.027.562.087.854.225 1.094.066.116.096.24.113.476.042.551.138 1.102.215 1.228.1.164.616.593 1.066.886 2.328 1.516 5.915 2.36 9.054 2.131Zm-.056-3.569c1.745-.108 3.299-.463 4.478-1.023.594-.283.934-.515 1.331-.909.414-.413.573-.703.6-1.102.019-.282-.072-.621-.172-.638-.045-.008-.901.459-1.53.835-.067.039-.13.063-.142.051a1.993 1.993 0 0 1-.072-.336c-.071-.44-.135-.573-.345-.718-.324-.225-.391-.298-.523-.572-.116-.241-.149-.28-.288-.334-.26-.102-.557-.299-.557-.368 0-.072.239-.753.39-1.112a3.34 3.34 0 0 0 .099-.249c0-.036-.833-.632-.956-.683-.16-.067-.723-.128-1.205-.13a3.688 3.688 0 0 1-1.258-.206c-.631-.208-.665-.211-1.217-.13-.435.063-.514.087-.698.206-.49.315-.879.428-1.478.43a4.01 4.01 0 0 0-.654.059c-.511.106-.66.182-1.031.528-.469.439-.777.645-1.337.897-.589.265-.655.311-.741.515-.199.469-.293.645-.522.976-.367.53-.453.736-.424 1.016.072.69.818 1.448 1.947 1.981 1.638.772 4.02 1.156 6.305 1.016Zm6.174-4.675c.945-.578 1.504-1.038 1.672-1.377.087-.177.076-.241-.075-.425-.373-.452-1.844-1.32-2.491-1.47-.299-.069-.359-.045-.539.217-.277.403-.946 1.948-.946 2.183 0 .032.084.103.187.159.164.09.204.137.315.37.107.226.157.286.319.387.12.074.235.187.304.3.185.297.165.291.445.136.139-.077.503-.292.809-.48Z" }) + ] + } + ); +}); + +export { SiApacheguacamole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.cjs new file mode 100644 index 000000000..39f95244b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#66CCFF"; +const SiApachehadoop = React__namespace.forwardRef(function SiApachehadoop2({ title = "Apache Hadoop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.098 3.01c-1.133.277-1.466.474-1.842 1.787.478-.962.84-1.315 1.842-1.787zm3.228.076c-.834-.053-1.715.177-2.756.615a3.97 3.97 0 00-1.199.76c-.31.287-.576.62-.866 1.006a1.312 1.312 0 00-.468.095 1.868 1.868 0 00-.539.356c-.141.124-.28.252-.416.383v.002c-.123.12-.244.241-.363.365-.945.152-1.72.32-2.41.588a6.314 6.314 0 00-1.97 1.217c-.252.222-.482.469-.687.736a5.435 5.435 0 00-.503.803c-.13.142-.26.288-.399.414a1.45 1.45 0 01-.441.285c-.093.035-.133.058-.137.056-.004-.001-.008-.033-.012-.047.235-.21.267-.55.289-.86.03.034.053.068.082.113.031.047.062.095.1.142l.158.2.055-.249c.046-.208.081-.484.027-.724-.034-.153-.117-.315-.235-.393l.036-.09c.04-.1.08-.204.115-.303l.069-.193-.204.035c-.27.047-.852.366-1.261.791-.152.158-.284.33-.37.514a.984.984 0 00-.093.59.91.91 0 00.272.498c.03.12.058.223.087.316.033.104.068.198.112.29.119.247.31.398.529.468.182.059.369.066.566.02a3.83 3.83 0 00-.072.69 8.911 8.911 0 00.07 1.394c.013.093.028.184.045.275l-.107.291-.166.455-.37.365-.343.34a9.22 9.22 0 01-.082.08c-.232.224-.279.27-.213.662.04.241.119.484.242.72.114.216.267.427.463.624.245.245.647.55 1.066.71.245.092.488.138.723.097l-.039.11a4.046 4.046 0 01-.123.3c-.285.624.008.95.463 1.158.227.104.497.173.748.238l.168.045c.298.08.812.228 1.281.258.513.033.974-.073 1.098-.533.049-.182.078-.322.09-.459a2.33 2.33 0 00-.01-.406c.144-.32.21-.423.316-.578l.053-.08c.115-.17.168-.29.188-.426.018-.131.004-.262-.02-.461l-.011-.084a6.822 6.822 0 001.338.05l-.118.061-.055.03c-.395.203-.413.587-.289.984.112.357.343.723.487.945.303.467.592.861.943 1.076.368.226.786.253 1.328-.04.276-.15.363-.302.48-.507.038-.066.08-.133.126-.204.101-.05.382-.296.67-.534l.296-.242c.073.053.164.09.27.115.14.034.305.05.504.065.149.01.635.01.949.01h.227c.324.001.585-.016.783-.128.21-.119.334-.331.361-.71a1.28 1.28 0 00-.008-.378.946.946 0 00-.136-.312l-.014-.502-.016-.521a2.372 2.372 0 00-.068-.536 3.558 3.558 0 00-.18-.505c-.053-.127-.096-.245-.138-.36a5.756 5.756 0 00-.229-.547l.018-.123.181.174.266.258c.203.196.39.373.607.502.226.133.479.21.807.195a1.925 1.925 0 001.016-.385c.293-.216.528-.509.627-.832l.084-.279.07-.225c.482.082.998.11 1.498.057a3.7 3.7 0 001.351-.389 3.406 3.406 0 001.35-1.33h.002v-.002c.355-.616.555-1.34.63-2.088.062-.599.028-1.415-.097-2.2-.11-.701-.295-1.38-.55-1.87a.736.736 0 00-.137-.178 1.413 1.413 0 00-.51-.31c-.206-.07-.422-.084-.594.006a.485.485 0 00-.123.09 2.793 2.793 0 00-.3.388c-.106.153-.21.307-.337.414-.149.128-.327.202-.502.272a3.454 3.454 0 00-.261-.508 4.81 4.81 0 00-.399-.54 2.21 2.21 0 00-.365-.349 5.357 5.357 0 00-.41-.275c-.407-.255-.754-.559-1.108-.87-.16-.14-.323-.282-.482-.413-.842-.695-1.628-1.031-2.469-1.084zm-4.129.004c-.57.137-.68.245-.851.804.273-.41.43-.545.851-.804zm3.952.465c.829-.001 1.587.303 2.431 1.013.412.347.774.684 1.192.983-.152.013-.283.04-.455.107.21-.04.451 0 .67.04.06.039.124.078.189.116.295.174.463.27.662.547.21.294.386.589.541.912-.101-.036-.186-.067-.262-.09a.566.566 0 00-.533.034l-.012.006c-.163.079-.416.17-.586.197a.7.7 0 00.405-.006.565.565 0 00-.018.539.269.269 0 01-.02-.12.228.228 0 01.249-.208.233.233 0 01.187.33c-.117.02-.233.055-.353.1a4.41 4.41 0 00-.237.095 3.722 3.722 0 011.084-.02c.025.117.05.24.073.366l-.137.01-.012.002c-.174-.14-.367-.117-.633-.057-.806.184-.617.637-.988 1.318.385-.47.357-.962.984-1.11.147-.036.247-.078.346-.063-.178.09-.333.237-.394.41-.173.486-.065.895-.254 1.35.234-.407.249-.802.459-1.23.075-.153.354-.4.525-.403l.14-.002c.042.27.068.539.052.761a8.535 8.535 0 01-.198 1.24c.213-.272.31-.85.403-1.257.097-.424.07-.934-.014-1.389-.117-.625.527-.522.9-.816.275-.217.463-.564.715-.809.25-.243.644.114.742.352.426 1.03.62 2.65.508 3.69-.126 1.164-.69 2.437-1.719 3.01-1.31.732-2.854.285-4.156-.154-.278-.093-.47-.229-.715-.382.067.3.097.615.008.914-.14.474-.367 1.251.277 1.394.246.055.357.048.704-.13a1.3 1.3 0 01-.616.011.397.397 0 01-.314-.273c.06.044.16.066.33.107.478.115.932-.114 1.021-.445.052-.194.043-.295.153-.559.099.03.202.059.306.084l-.177.578c-.154.501-.752.904-1.28.895-.488-.009-.797-.314-1.134-.613l-.678-.6a5.228 5.228 0 01-1.658-.834c.4.472.673.732 1.232.967-.081.83-.37 1.436-.615 2.23-.111.36-.991 1.8-1.234 1.94-.174.1-1.26 1.016-1.465 1.136-.153.203-.287.483-.516.604-.698.37-1.148-.339-1.523-.936-.171-.272-.645-1.054-.23-1.273.39-.208.61-.357 1.009-.62.059.108.159.212.225.32l-.043-.352a2.752 2.752 0 01-.008-.596c.016-.206.03-.413.047-.62-.06.21-.179.42-.239.63-.024.084-.045.152-.056.214a7.05 7.05 0 01-2.682.034 16.76 16.76 0 00-.185-.926c-.018.278-.007 1.047-.008 1.476-.001.333-.016.448-.188.731-.16.265-.228.325-.453.773.019.283.019.47-.057.739-.125.446-1.386.098-1.718.007-.41-.112-1.256-.278-1.043-.824.187-.48.307-.986.398-1.658-.75-1.08-1.448-2.56-1.582-3.873-.104-1.019-.04-1.646.18-2.27.35-.987.837-1.843 1.62-2.53C5.778 7.89 6.767 7.516 8.316 7.28c-.373.417-.741.858-1.143 1.33-.406.479-.648.963-.906 1.487-.357.722-.348.996.125 1.63.407.547.627.794.804 1.328-.146.303-.2.56-.25.973.5.545.87.918 1.354 1.033.475.113.872.093 1.297-.125.944-.482 1.816-1.107 2.88-1.132.493-1.211.444-2.222.208-3.393-.162-.8-.227-1.557-.278-2.373-.2.84-.236 1.577-.088 2.414.18 1.008.318 2.124-.18 3.01-.962.073-1.788.658-2.655 1.107-.35.18-.712.198-1.098.092-.358-.098-.6-.334-.986-.78-.006-.446.095-.653.3-1.058.33-.65.695-1.255 1.094-1.894-.49.59-.953 1.084-1.338 1.677-.147-.419-.358-.633-.707-1.105-.34-.461-.375-.662-.12-1.196.255-.536.472-1.008.907-1.478.753-.813 1.443-1.717 2.266-2.518.447-.434.628-.42 1.22-.51a20.768 20.768 0 001.606-.31 22.5 22.5 0 01-1.553.08h-.015c.506-.646.799-1.006 1.62-1.363.95-.412 1.738-.652 2.47-.652zm.556 2.79c-1.101.276-1.307.739-1.166 1.45.121-.535.335-1.05 1.166-1.45zm-3.263.061c-.446.05-.89.096-1.336.139-.375.035-.436.03-.702.293-.403.399-.794 1.768-.92 2.316.198-.455.69-1.729 1.069-2.053.105-.09.18-.143.258-.183-.271.455-.252.566-.157 1.176.081-.62.295-.859.647-1.32a9.287 9.287 0 001.14-.368zm10.226.053c-.255.517-.65.95-1.185 1.215-.288.142-.47.093-.791.062.326.094.533.21.853.096.652-.233.967-.756 1.123-1.373zm-2.28.834c.023.047.046.096.067.144a.602.602 0 00-.05.041.572.572 0 00-.126-.181l.11-.004zm-3.26.4c-.36.166-.779.126-1.087.334-.271.184-.646.764-.922 1.01.2-.078.394-.212.57-.354.002.22.101.426.27.565a.31.31 0 01.092-.492.312.312 0 01.432.191c-.148.11-.284.238-.397.387a1.666 1.666 0 00-.24.44 4.222 4.222 0 012.002-1.294c-.2-.003-.437.034-.678.114a.732.732 0 00-.482-.614c.16-.085.316-.175.44-.287zm-1.042 1.64a.735.735 0 01-.125-.083.35.35 0 00.125.084zM1.32 8.34c-.953.672-1.19.978-1.062 2.338C.352 9.608.56 9.145 1.32 8.34zm-.808.404c-.482.336-.545.475-.5 1.059.105-.482.203-.664.5-1.059zm1.779.195c-.07.15-.118.264-.152.381-.147.508.066.962-.395 1.33.217.438.207.612.711.41.195-.078.355-.187.498-.316-.07.18-.133.361-.191.545l-.03.094c-.36.153-.834.25-1.015-.13a3.458 3.458 0 01-.203-.595c-.594-.615.294-1.427.777-1.719zm.123.276c.123.071.156.2.17.375-.073-.074-.132-.122-.227-.112.008-.06.019-.119.034-.177.007-.03.014-.058.023-.086zm14.87 3.267c-.131.022-.365.07-.495.092-.348.059-.387.142-.441.484l-.086.524a9.16 9.16 0 01.228-.568c.084-.184.132-.202.31-.3.127-.068.357-.163.483-.232zm-14.47 2.4c.274.946.738 1.876 1.255 2.657v.014a.993.993 0 01-.149.369c-.369.493-1.306-.23-1.578-.508-.297-.303-.496-.662-.543-.998-.034-.246-.001-.252.17-.426l.693-.701.153-.406zm12.405.62c.056.183.101.364.183.558.138.326.205.526.215.875l.032 1.106c.117.206.136.249.115.484-.043.481-.203.513-.625.506-.192-.003-.957-.007-1.15-.023-.274-.024-.429-.05-.512-.112.43-.316 1.162-1.619 1.304-2.068.151-.474.315-.888.438-1.326z" }) + ] + } + ); +}); + +exports.default = SiApachehadoop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.d.ts new file mode 100644 index 000000000..8711f2551 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#66CCFF"; +declare const SiApachehadoop: IconType; +export { SiApachehadoop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.mjs new file mode 100644 index 000000000..b0a36303e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehadoop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#66CCFF"; +const SiApachehadoop = React.forwardRef(function SiApachehadoop2({ title = "Apache Hadoop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.098 3.01c-1.133.277-1.466.474-1.842 1.787.478-.962.84-1.315 1.842-1.787zm3.228.076c-.834-.053-1.715.177-2.756.615a3.97 3.97 0 00-1.199.76c-.31.287-.576.62-.866 1.006a1.312 1.312 0 00-.468.095 1.868 1.868 0 00-.539.356c-.141.124-.28.252-.416.383v.002c-.123.12-.244.241-.363.365-.945.152-1.72.32-2.41.588a6.314 6.314 0 00-1.97 1.217c-.252.222-.482.469-.687.736a5.435 5.435 0 00-.503.803c-.13.142-.26.288-.399.414a1.45 1.45 0 01-.441.285c-.093.035-.133.058-.137.056-.004-.001-.008-.033-.012-.047.235-.21.267-.55.289-.86.03.034.053.068.082.113.031.047.062.095.1.142l.158.2.055-.249c.046-.208.081-.484.027-.724-.034-.153-.117-.315-.235-.393l.036-.09c.04-.1.08-.204.115-.303l.069-.193-.204.035c-.27.047-.852.366-1.261.791-.152.158-.284.33-.37.514a.984.984 0 00-.093.59.91.91 0 00.272.498c.03.12.058.223.087.316.033.104.068.198.112.29.119.247.31.398.529.468.182.059.369.066.566.02a3.83 3.83 0 00-.072.69 8.911 8.911 0 00.07 1.394c.013.093.028.184.045.275l-.107.291-.166.455-.37.365-.343.34a9.22 9.22 0 01-.082.08c-.232.224-.279.27-.213.662.04.241.119.484.242.72.114.216.267.427.463.624.245.245.647.55 1.066.71.245.092.488.138.723.097l-.039.11a4.046 4.046 0 01-.123.3c-.285.624.008.95.463 1.158.227.104.497.173.748.238l.168.045c.298.08.812.228 1.281.258.513.033.974-.073 1.098-.533.049-.182.078-.322.09-.459a2.33 2.33 0 00-.01-.406c.144-.32.21-.423.316-.578l.053-.08c.115-.17.168-.29.188-.426.018-.131.004-.262-.02-.461l-.011-.084a6.822 6.822 0 001.338.05l-.118.061-.055.03c-.395.203-.413.587-.289.984.112.357.343.723.487.945.303.467.592.861.943 1.076.368.226.786.253 1.328-.04.276-.15.363-.302.48-.507.038-.066.08-.133.126-.204.101-.05.382-.296.67-.534l.296-.242c.073.053.164.09.27.115.14.034.305.05.504.065.149.01.635.01.949.01h.227c.324.001.585-.016.783-.128.21-.119.334-.331.361-.71a1.28 1.28 0 00-.008-.378.946.946 0 00-.136-.312l-.014-.502-.016-.521a2.372 2.372 0 00-.068-.536 3.558 3.558 0 00-.18-.505c-.053-.127-.096-.245-.138-.36a5.756 5.756 0 00-.229-.547l.018-.123.181.174.266.258c.203.196.39.373.607.502.226.133.479.21.807.195a1.925 1.925 0 001.016-.385c.293-.216.528-.509.627-.832l.084-.279.07-.225c.482.082.998.11 1.498.057a3.7 3.7 0 001.351-.389 3.406 3.406 0 001.35-1.33h.002v-.002c.355-.616.555-1.34.63-2.088.062-.599.028-1.415-.097-2.2-.11-.701-.295-1.38-.55-1.87a.736.736 0 00-.137-.178 1.413 1.413 0 00-.51-.31c-.206-.07-.422-.084-.594.006a.485.485 0 00-.123.09 2.793 2.793 0 00-.3.388c-.106.153-.21.307-.337.414-.149.128-.327.202-.502.272a3.454 3.454 0 00-.261-.508 4.81 4.81 0 00-.399-.54 2.21 2.21 0 00-.365-.349 5.357 5.357 0 00-.41-.275c-.407-.255-.754-.559-1.108-.87-.16-.14-.323-.282-.482-.413-.842-.695-1.628-1.031-2.469-1.084zm-4.129.004c-.57.137-.68.245-.851.804.273-.41.43-.545.851-.804zm3.952.465c.829-.001 1.587.303 2.431 1.013.412.347.774.684 1.192.983-.152.013-.283.04-.455.107.21-.04.451 0 .67.04.06.039.124.078.189.116.295.174.463.27.662.547.21.294.386.589.541.912-.101-.036-.186-.067-.262-.09a.566.566 0 00-.533.034l-.012.006c-.163.079-.416.17-.586.197a.7.7 0 00.405-.006.565.565 0 00-.018.539.269.269 0 01-.02-.12.228.228 0 01.249-.208.233.233 0 01.187.33c-.117.02-.233.055-.353.1a4.41 4.41 0 00-.237.095 3.722 3.722 0 011.084-.02c.025.117.05.24.073.366l-.137.01-.012.002c-.174-.14-.367-.117-.633-.057-.806.184-.617.637-.988 1.318.385-.47.357-.962.984-1.11.147-.036.247-.078.346-.063-.178.09-.333.237-.394.41-.173.486-.065.895-.254 1.35.234-.407.249-.802.459-1.23.075-.153.354-.4.525-.403l.14-.002c.042.27.068.539.052.761a8.535 8.535 0 01-.198 1.24c.213-.272.31-.85.403-1.257.097-.424.07-.934-.014-1.389-.117-.625.527-.522.9-.816.275-.217.463-.564.715-.809.25-.243.644.114.742.352.426 1.03.62 2.65.508 3.69-.126 1.164-.69 2.437-1.719 3.01-1.31.732-2.854.285-4.156-.154-.278-.093-.47-.229-.715-.382.067.3.097.615.008.914-.14.474-.367 1.251.277 1.394.246.055.357.048.704-.13a1.3 1.3 0 01-.616.011.397.397 0 01-.314-.273c.06.044.16.066.33.107.478.115.932-.114 1.021-.445.052-.194.043-.295.153-.559.099.03.202.059.306.084l-.177.578c-.154.501-.752.904-1.28.895-.488-.009-.797-.314-1.134-.613l-.678-.6a5.228 5.228 0 01-1.658-.834c.4.472.673.732 1.232.967-.081.83-.37 1.436-.615 2.23-.111.36-.991 1.8-1.234 1.94-.174.1-1.26 1.016-1.465 1.136-.153.203-.287.483-.516.604-.698.37-1.148-.339-1.523-.936-.171-.272-.645-1.054-.23-1.273.39-.208.61-.357 1.009-.62.059.108.159.212.225.32l-.043-.352a2.752 2.752 0 01-.008-.596c.016-.206.03-.413.047-.62-.06.21-.179.42-.239.63-.024.084-.045.152-.056.214a7.05 7.05 0 01-2.682.034 16.76 16.76 0 00-.185-.926c-.018.278-.007 1.047-.008 1.476-.001.333-.016.448-.188.731-.16.265-.228.325-.453.773.019.283.019.47-.057.739-.125.446-1.386.098-1.718.007-.41-.112-1.256-.278-1.043-.824.187-.48.307-.986.398-1.658-.75-1.08-1.448-2.56-1.582-3.873-.104-1.019-.04-1.646.18-2.27.35-.987.837-1.843 1.62-2.53C5.778 7.89 6.767 7.516 8.316 7.28c-.373.417-.741.858-1.143 1.33-.406.479-.648.963-.906 1.487-.357.722-.348.996.125 1.63.407.547.627.794.804 1.328-.146.303-.2.56-.25.973.5.545.87.918 1.354 1.033.475.113.872.093 1.297-.125.944-.482 1.816-1.107 2.88-1.132.493-1.211.444-2.222.208-3.393-.162-.8-.227-1.557-.278-2.373-.2.84-.236 1.577-.088 2.414.18 1.008.318 2.124-.18 3.01-.962.073-1.788.658-2.655 1.107-.35.18-.712.198-1.098.092-.358-.098-.6-.334-.986-.78-.006-.446.095-.653.3-1.058.33-.65.695-1.255 1.094-1.894-.49.59-.953 1.084-1.338 1.677-.147-.419-.358-.633-.707-1.105-.34-.461-.375-.662-.12-1.196.255-.536.472-1.008.907-1.478.753-.813 1.443-1.717 2.266-2.518.447-.434.628-.42 1.22-.51a20.768 20.768 0 001.606-.31 22.5 22.5 0 01-1.553.08h-.015c.506-.646.799-1.006 1.62-1.363.95-.412 1.738-.652 2.47-.652zm.556 2.79c-1.101.276-1.307.739-1.166 1.45.121-.535.335-1.05 1.166-1.45zm-3.263.061c-.446.05-.89.096-1.336.139-.375.035-.436.03-.702.293-.403.399-.794 1.768-.92 2.316.198-.455.69-1.729 1.069-2.053.105-.09.18-.143.258-.183-.271.455-.252.566-.157 1.176.081-.62.295-.859.647-1.32a9.287 9.287 0 001.14-.368zm10.226.053c-.255.517-.65.95-1.185 1.215-.288.142-.47.093-.791.062.326.094.533.21.853.096.652-.233.967-.756 1.123-1.373zm-2.28.834c.023.047.046.096.067.144a.602.602 0 00-.05.041.572.572 0 00-.126-.181l.11-.004zm-3.26.4c-.36.166-.779.126-1.087.334-.271.184-.646.764-.922 1.01.2-.078.394-.212.57-.354.002.22.101.426.27.565a.31.31 0 01.092-.492.312.312 0 01.432.191c-.148.11-.284.238-.397.387a1.666 1.666 0 00-.24.44 4.222 4.222 0 012.002-1.294c-.2-.003-.437.034-.678.114a.732.732 0 00-.482-.614c.16-.085.316-.175.44-.287zm-1.042 1.64a.735.735 0 01-.125-.083.35.35 0 00.125.084zM1.32 8.34c-.953.672-1.19.978-1.062 2.338C.352 9.608.56 9.145 1.32 8.34zm-.808.404c-.482.336-.545.475-.5 1.059.105-.482.203-.664.5-1.059zm1.779.195c-.07.15-.118.264-.152.381-.147.508.066.962-.395 1.33.217.438.207.612.711.41.195-.078.355-.187.498-.316-.07.18-.133.361-.191.545l-.03.094c-.36.153-.834.25-1.015-.13a3.458 3.458 0 01-.203-.595c-.594-.615.294-1.427.777-1.719zm.123.276c.123.071.156.2.17.375-.073-.074-.132-.122-.227-.112.008-.06.019-.119.034-.177.007-.03.014-.058.023-.086zm14.87 3.267c-.131.022-.365.07-.495.092-.348.059-.387.142-.441.484l-.086.524a9.16 9.16 0 01.228-.568c.084-.184.132-.202.31-.3.127-.068.357-.163.483-.232zm-14.47 2.4c.274.946.738 1.876 1.255 2.657v.014a.993.993 0 01-.149.369c-.369.493-1.306-.23-1.578-.508-.297-.303-.496-.662-.543-.998-.034-.246-.001-.252.17-.426l.693-.701.153-.406zm12.405.62c.056.183.101.364.183.558.138.326.205.526.215.875l.032 1.106c.117.206.136.249.115.484-.043.481-.203.513-.625.506-.192-.003-.957-.007-1.15-.023-.274-.024-.429-.05-.512-.112.43-.316 1.162-1.619 1.304-2.068.151-.474.315-.888.438-1.326z" }) + ] + } + ); +}); + +export { SiApachehadoop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.cjs new file mode 100644 index 000000000..7bda5b1b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BE160C"; +const SiApachehbase = React__namespace.forwardRef(function SiApachehbase2({ title = "Apache HBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.429 20.977c-.0185-.0485-.0335-.1343-.0335-.1905 0-.153-.1178-.3548-.292-.5004-.0853-.0713-.2084-.21-.2736-.3082-.1388-.209-.2892-.291-.8447-.46-.609-.1853-.7962-.3443-.8511-.7232l-.0274-.1889-.111.1608c-.217.3145-.3606.3648-.6549.2291-.1868-.0861-.323-.094-.478-.0276-.0989.0423-.1173.0405-.182-.018-.069-.0625-.076-.0627-.1739-.0048-.0772.0456-.1396.0546-.2566.037-.187-.028-.287.0266-.4121.2249-.237.3755-.4059.2037-.405-.4122.0009-.684.3229-1.0716 1.2512-1.5058.4777-.2235.694-.3683.8272-.5536.1025-.1429.1116-.1479.1562-.0868.095.13.4224.7998.5787 1.1843.1781.438.232.5193.2995.4517.057-.057-.081-.4606-.3487-1.0205-.6645-1.3894-1.6463-2.3832-2.8717-2.9068-.5624-.2402-.8388-.2913-1.569-.29-.555.001-.6912.013-1.0662.0927-.5484.1165-1.1617.3128-1.9435.6217-.7875.3113-.7882.3113-1.5823.027-.3217-.115-.7072-.2405-.8569-.2787-.3058-.078-.7573-.0916-1.0112-.0305-.2928.0704-.7047.2907-1.2106.6473-.607.4278-.9336.5974-1.3687.7104-.3767.0979-.536.1831-.6298.337-.0749.1228-.0822.2215-.0254.346.0388.0852.4104.3564.845.6168.1179.0706.223.1424.2337.1597.0254.0411-.5634.3347-.9934.4954-.7646.2857-1.5864.4664-2.8254.6214-.8255.1032-.9662.1322-1.5824.3256-.246.0772-.602.1724-.7911.2117-.8345.1731-1.5908-.0321-1.7054-.463-.021-.0786-.0583-.1662-.0831-.1946-.1527-.1752-.2093-.5962-.111-.8255.0284-.0662.0856-.3216.127-.5676.143-.8468.2882-1.3048.601-1.8957.5478-1.0352 1.6387-2.3495 2.9601-3.5665.8732-.8041 1.703-1.4225 3.6212-2.6988 1.1856-.7888 1.197-.7989 1.3334-1.1792.0303-.0845.1774-.6285.3269-1.209.4655-1.808.764-2.4904 1.3185-3.0139.3128-.2953.8113-.4793 1.1012-.4066.1653.0415.1735.123.0589.5824-.191.7657-.2555 1.2498-.2573 1.9328-.002.6742.04.935.2 1.2509.2196.4333.3677.5169 1.228.6932 3.0422.6234 5.072 1.5605 6.5143 3.0074 1.3358 1.3401 2.4244 3.4373 3.1326 6.035l.1348.4944.258.1976c.6583.5043 1.027 1.0122 1.2235 1.6851.104.3561.0882 1.113-.0326 1.5595-.1288.4762-.2387.6764-.3715.6764-.0374 0-.0784-.037-.098-.0882zm.0564-.9989c.0124-.0493.0143-.2621.004-.473-.0319-.671-.239-1.1503-.7134-1.6507-.3643-.3844-1.0243-.8481-1.207-.8481-.0697 0-.0738.0122-.0557.1653.0108.091.0837.3339.162.5399s.151.4476.1617.5369c.0169.1425.008.1733-.0696.2513-.1072.1072-.2082.1122-.3625.0181-.0636-.0388-.1232-.063-.1324-.0538-.009.0092-.006.0793.007.1557.0469.2777.2078.3892.8252.572.905.268 1.091.391 1.234.8158.0305.0905.1213.0724.1468-.0294zM1.927 18.7054c.1586-.0285.4759-.1113.7052-.184.4928-.156.8703-.2346 1.9132-.398 1.2235-.1915 1.7158-.2934 2.2612-.4676.3468-.1108.6636-.2533.6614-.2975-.0007-.0139-.103-.0871-.2274-.1628s-.357-.2653-.517-.4214c-.1598-.156-.3056-.2838-.324-.2838-.0866 0-.305.122-.5804.3241-.789.5791-1.0654.6936-2.323.9617-.6239.133-.8454.2086-1.1371.3876-.4035.2475-.4905.2885-.7552.3562-.1477.0378-.3812.0687-.519.0687-.3596 0-.3996.1119-.0614.1717.1994.0352.5074.0165.9035-.0549m17.1388-.0708c.026-.0314.1135-.0866.1946-.1226l.1475-.0653.317.096c.3968.1204.917.1382 1.0578.0362l.2022-.1467c.071-.0515.1425-.0774.1806-.0653.0347.011.063.0147.063.0082 0-.035-.486-1.1468-.532-1.217l-.0546-.0833-.1731.1369c-.0952.0752-.418.284-.7172.464-.7685.462-1.0097.6976-.9515.9294.017.0673.0437.0866.1201.0866.0541 0 .1196-.0257.1455-.0571zM4.5789 16.6537c.0832-.0426.1663-.1024.1847-.1329.1444-.2396-.4315-.2143-.5867.0257-.041.0635-.0399.081.008.129.0771.0771.2154.0695.3938-.0218zm1.0839-.7518c.3703-.0994.7409-.2214.8543-.2812.237-.125.4383-.342.5817-.6267.0572-.1135.1639-.262.2372-.33s.1332-.1488.1332-.1793c0-.2679-.9203-.3896-1.5135-.2002-.719.2294-1.4056.9617-1.4222 1.5166-.0102.3401.1762.3567 1.1293.1008m14.1209-1.051c0-.0624-.2294-.3674-.3916-.5208-.3148-.2978-.6364-.4812-1.256-.7164-.3678-.1396-.5195-.2253-.5195-.2933 0-.016.0309-.06.0688-.0979.1932-.1931 1.1182.0449 1.7707.4556.2577.1622.5518.3912.797.6206.1876.1754.2185.1936.2185.1279 0-.1033-.1702-.415-.3775-.6913-.5186-.691-1.3624-1.2293-2.3065-1.471-.7628-.1955-1.4247-.2066-1.9894-.0335-.522.16-1.128.5373-1.7366 1.081-.8566.7651-1.1103.9784-1.3292 1.1175-.1316.0835-.2346.1669-.229.1852.006.0183.1043.0634.2194.1002l.2094.067.5105-.2346c1.0094-.4638 1.936-.7623 2.626-.846 1.0527-.1278 2.23.2049 3.285.9283.3217.2206.43.2764.43.2214m-9.3219 2.9102c-1.0828-.1338-2.1057-.5122-2.941-1.088-.1893-.1305-.2432-.1868-.252-.2634-.0218-.1903.1525-.3028.6232-.4024.414-.0876.6878-.2264 1.3143-.6665.8468-.595 1.1817-.73 1.7337-.6995.2583.0143.4198.0578 1.2761.3437 1.2836.4286 2.6449.9136 2.7472.9787.2346.1493-.1705.7007-.8057 1.0966-.4788.2984-1.111.5328-1.7605.6527-.3579.0661-1.55.0957-1.9353.0481m-8-5.3414c-.0135-.0349-.0156-.2051-.005-.3784.0476-.7618.4617-1.623 1.0257-2.1334.2161-.1956.5614-.4004.675-.4004.1132 0 .1835.1182.268.4504.0445.175.1142.3632.1549.4182s.0687.1046.0623.1102a56 56 0 0 1-.3556.2833c-.462.367-1.102.9582-1.4863 1.3733-.2623.2833-.319.3295-.3393.2768z" }) + ] + } + ); +}); + +exports.default = SiApachehbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.d.ts new file mode 100644 index 000000000..5f0f5410b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BE160C"; +declare const SiApachehbase: IconType; +export { SiApachehbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.mjs new file mode 100644 index 000000000..889ae7fcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BE160C"; +const SiApachehbase = React.forwardRef(function SiApachehbase2({ title = "Apache HBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.429 20.977c-.0185-.0485-.0335-.1343-.0335-.1905 0-.153-.1178-.3548-.292-.5004-.0853-.0713-.2084-.21-.2736-.3082-.1388-.209-.2892-.291-.8447-.46-.609-.1853-.7962-.3443-.8511-.7232l-.0274-.1889-.111.1608c-.217.3145-.3606.3648-.6549.2291-.1868-.0861-.323-.094-.478-.0276-.0989.0423-.1173.0405-.182-.018-.069-.0625-.076-.0627-.1739-.0048-.0772.0456-.1396.0546-.2566.037-.187-.028-.287.0266-.4121.2249-.237.3755-.4059.2037-.405-.4122.0009-.684.3229-1.0716 1.2512-1.5058.4777-.2235.694-.3683.8272-.5536.1025-.1429.1116-.1479.1562-.0868.095.13.4224.7998.5787 1.1843.1781.438.232.5193.2995.4517.057-.057-.081-.4606-.3487-1.0205-.6645-1.3894-1.6463-2.3832-2.8717-2.9068-.5624-.2402-.8388-.2913-1.569-.29-.555.001-.6912.013-1.0662.0927-.5484.1165-1.1617.3128-1.9435.6217-.7875.3113-.7882.3113-1.5823.027-.3217-.115-.7072-.2405-.8569-.2787-.3058-.078-.7573-.0916-1.0112-.0305-.2928.0704-.7047.2907-1.2106.6473-.607.4278-.9336.5974-1.3687.7104-.3767.0979-.536.1831-.6298.337-.0749.1228-.0822.2215-.0254.346.0388.0852.4104.3564.845.6168.1179.0706.223.1424.2337.1597.0254.0411-.5634.3347-.9934.4954-.7646.2857-1.5864.4664-2.8254.6214-.8255.1032-.9662.1322-1.5824.3256-.246.0772-.602.1724-.7911.2117-.8345.1731-1.5908-.0321-1.7054-.463-.021-.0786-.0583-.1662-.0831-.1946-.1527-.1752-.2093-.5962-.111-.8255.0284-.0662.0856-.3216.127-.5676.143-.8468.2882-1.3048.601-1.8957.5478-1.0352 1.6387-2.3495 2.9601-3.5665.8732-.8041 1.703-1.4225 3.6212-2.6988 1.1856-.7888 1.197-.7989 1.3334-1.1792.0303-.0845.1774-.6285.3269-1.209.4655-1.808.764-2.4904 1.3185-3.0139.3128-.2953.8113-.4793 1.1012-.4066.1653.0415.1735.123.0589.5824-.191.7657-.2555 1.2498-.2573 1.9328-.002.6742.04.935.2 1.2509.2196.4333.3677.5169 1.228.6932 3.0422.6234 5.072 1.5605 6.5143 3.0074 1.3358 1.3401 2.4244 3.4373 3.1326 6.035l.1348.4944.258.1976c.6583.5043 1.027 1.0122 1.2235 1.6851.104.3561.0882 1.113-.0326 1.5595-.1288.4762-.2387.6764-.3715.6764-.0374 0-.0784-.037-.098-.0882zm.0564-.9989c.0124-.0493.0143-.2621.004-.473-.0319-.671-.239-1.1503-.7134-1.6507-.3643-.3844-1.0243-.8481-1.207-.8481-.0697 0-.0738.0122-.0557.1653.0108.091.0837.3339.162.5399s.151.4476.1617.5369c.0169.1425.008.1733-.0696.2513-.1072.1072-.2082.1122-.3625.0181-.0636-.0388-.1232-.063-.1324-.0538-.009.0092-.006.0793.007.1557.0469.2777.2078.3892.8252.572.905.268 1.091.391 1.234.8158.0305.0905.1213.0724.1468-.0294zM1.927 18.7054c.1586-.0285.4759-.1113.7052-.184.4928-.156.8703-.2346 1.9132-.398 1.2235-.1915 1.7158-.2934 2.2612-.4676.3468-.1108.6636-.2533.6614-.2975-.0007-.0139-.103-.0871-.2274-.1628s-.357-.2653-.517-.4214c-.1598-.156-.3056-.2838-.324-.2838-.0866 0-.305.122-.5804.3241-.789.5791-1.0654.6936-2.323.9617-.6239.133-.8454.2086-1.1371.3876-.4035.2475-.4905.2885-.7552.3562-.1477.0378-.3812.0687-.519.0687-.3596 0-.3996.1119-.0614.1717.1994.0352.5074.0165.9035-.0549m17.1388-.0708c.026-.0314.1135-.0866.1946-.1226l.1475-.0653.317.096c.3968.1204.917.1382 1.0578.0362l.2022-.1467c.071-.0515.1425-.0774.1806-.0653.0347.011.063.0147.063.0082 0-.035-.486-1.1468-.532-1.217l-.0546-.0833-.1731.1369c-.0952.0752-.418.284-.7172.464-.7685.462-1.0097.6976-.9515.9294.017.0673.0437.0866.1201.0866.0541 0 .1196-.0257.1455-.0571zM4.5789 16.6537c.0832-.0426.1663-.1024.1847-.1329.1444-.2396-.4315-.2143-.5867.0257-.041.0635-.0399.081.008.129.0771.0771.2154.0695.3938-.0218zm1.0839-.7518c.3703-.0994.7409-.2214.8543-.2812.237-.125.4383-.342.5817-.6267.0572-.1135.1639-.262.2372-.33s.1332-.1488.1332-.1793c0-.2679-.9203-.3896-1.5135-.2002-.719.2294-1.4056.9617-1.4222 1.5166-.0102.3401.1762.3567 1.1293.1008m14.1209-1.051c0-.0624-.2294-.3674-.3916-.5208-.3148-.2978-.6364-.4812-1.256-.7164-.3678-.1396-.5195-.2253-.5195-.2933 0-.016.0309-.06.0688-.0979.1932-.1931 1.1182.0449 1.7707.4556.2577.1622.5518.3912.797.6206.1876.1754.2185.1936.2185.1279 0-.1033-.1702-.415-.3775-.6913-.5186-.691-1.3624-1.2293-2.3065-1.471-.7628-.1955-1.4247-.2066-1.9894-.0335-.522.16-1.128.5373-1.7366 1.081-.8566.7651-1.1103.9784-1.3292 1.1175-.1316.0835-.2346.1669-.229.1852.006.0183.1043.0634.2194.1002l.2094.067.5105-.2346c1.0094-.4638 1.936-.7623 2.626-.846 1.0527-.1278 2.23.2049 3.285.9283.3217.2206.43.2764.43.2214m-9.3219 2.9102c-1.0828-.1338-2.1057-.5122-2.941-1.088-.1893-.1305-.2432-.1868-.252-.2634-.0218-.1903.1525-.3028.6232-.4024.414-.0876.6878-.2264 1.3143-.6665.8468-.595 1.1817-.73 1.7337-.6995.2583.0143.4198.0578 1.2761.3437 1.2836.4286 2.6449.9136 2.7472.9787.2346.1493-.1705.7007-.8057 1.0966-.4788.2984-1.111.5328-1.7605.6527-.3579.0661-1.55.0957-1.9353.0481m-8-5.3414c-.0135-.0349-.0156-.2051-.005-.3784.0476-.7618.4617-1.623 1.0257-2.1334.2161-.1956.5614-.4004.675-.4004.1132 0 .1835.1182.268.4504.0445.175.1142.3632.1549.4182s.0687.1046.0623.1102a56 56 0 0 1-.3556.2833c-.462.367-1.102.9582-1.4863 1.3733-.2623.2833-.319.3295-.3393.2768z" }) + ] + } + ); +}); + +export { SiApachehbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.cjs new file mode 100644 index 000000000..92f035a75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDEE21"; +const SiApachehive = React__namespace.forwardRef(function SiApachehive2({ title = "Apache Hive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.902.258c-.331.216-.65.525-.994.877-.569.589-.947 1.164-1.526 1.59-.116.1-.441.26-.85.284-.192.01-.318.042-.672-.003-.312-.169-.608-.059-.897.287-.317.456-.72 1.322-.886 1.868-.345 1.39.533 2.536 1.375 3.42.749.73 1.18 1.188 1.488 1.859.233.435.405 1.032.592 1.45.067.133.053.132.235.172.39.084.934.084 1.417.126.209.003.496-.005.768-.033.375-.071.815-.14 1.185-.268.36-.09.682-.212.971-.325-.037.126-.313.249-.416.41-.962 1.376-1.24 2.605-1.09 4.51l-.008-.007.011.05.006.077c.097.874.298 1.6.6 2.43a6.8 6.8 0 0 0 .717 1.38c.072.101.152.205.238.31h-.002l.005.004c.93 1.13 2.706 2.45 5.098 2.986.457.062.975.029 1.463-.1 1.292-.392 3.925-1.319 3.925-1.319s-2.337.194-3.408.088c-.248-.039-.52-.052-.693-.221-.03-.037-.135-.25-.067-.251.093-.003.36-.113.77-.15-.877-.094-.865-.093-.929-.253a9.968 9.968 0 0 0-.409-.884c.386.033 1.24.08 1.529-.218 0 0-.505.058-.951.006a2.76 2.76 0 0 1-.484-.137c-.2-.079-.365-.103-.404-.154-.07-.177-.116-.236-.2-.473-.114-.315-.123-.665-.145-.986.292.36.664.663 1.157.818.006-.013.638.275 1.098.127l.088-.029c-.045.009-.307.02-.409-.03-.934-.398-1.075-.745-1.226-.918l-.403-.604c.123-.245.192-.254.355-.256.491.054.705.096 1.004.024.203.416.257.835.718 1.137 1.533.456 1.866-.135 2.237-.656 1.104.81 2.9 1.059 4.147.014 1.586-1.835 2.088-4.728 1.947-4.893-.198-.336-.457-.683-.68-.635-.796.217-1.09.62-1.877.529.094-.006.252-.008.253-.017.06-.667-.005-.99-.034-1.046-.24-.527-.554-1.082-.772-1.498-.057-.086-.223-.742-.5-1-.12-.102-.41-.37-.41-.37l-.026.285s.114.017.158.193c.079.322.313.854.542 1.33h-.37l.424.11c.228.465.437.852.467.888.193.312.148.673.155.98l-.11.055c-.017-.361-.405-.335-.732-.338l-.268-.066c.082.076.334.07.232.233-.086.046-.125.242-.174.407l-.145.007c.256.1.494.188.776.306l.142.021-.142.357-.193-.078-.007-.135c-.34-.136-.995-.193-1.019-.165-.242.237-.418.524-.609.8.262-.204.46-.512.813-.597.028-.003.378.065.568.098-.122.025-.32.034-.35.077-.269.332-.466.736-.697 1.105.319-.329.416-.666.957-.985.045-.03.375-.023.536.058-.051.183-.167.401-.26.607-.133.313-.386.601-.58.902.608-.74.435-.469.841-.946.17-.404.34-.84.497-1.271l.03-.016c.054.033.47-.008.795.012.559-.12.535-.367 1.018-.404.325-.025.358.586.353.634a7.248 7.248 0 0 1-.58 2.174c-.652 1.258-1.383 2.388-2.42 2.545-1.265.221-1.922-.332-2.608-.684l-.262.224c-.891.887-1.949.808-2.382-.351l-.003-.006a2.839 2.839 0 0 0-.092-.175c-.127-.246-.25-.495-.402-.724-1.338-1.058-.72-2.022-.364-2.632-.744-.188-1.73-.588-1.866-1.113-.219-1.7-.108-2.24.11-3.113-.996.21-2.006.419-3.077.776l-.001-.008c-.286.064-1.246.416-1.518.563-.617.179-1.13.366-1.917.563a2.934 2.934 0 0 1-.753-.002c-.566-.077-1.531-.008-1.593-.065-.383-.535-.488-1.493-.838-2.006l-.004-.005-.005-.004c-.203-.275-.441-.498-.675-.73C1.49 8.213.773 7.407.572 6.554c-.05-.252-.18-.513-.112-1.258l.002-.004.001-.003c.202-.697.53-1.265 1.087-1.834.58.01 1.153.022 1.6.108.205.034.631.09 1.071.254 1.115.415 2.587 1.097 2.587 1.097-1.105-.607-2.34-1.395-3.121-1.554-.117-.017-.188-.07-.222-.162 1.173-.69 1.388-1.502 2.16-2.23.353-.154.49-.232.79-.265 2.774.439 4.52 1.543 5.9 2.282.56.304 1.07.535 1.557.812.426.14 1.713 1.113 2.09 1.637.383.807.662 1.68.917 2.522.183.857.343 1.204.343 1.204s-.155-.716-.13-.845c.162.06.542.18.7.16 0 0-.705-.364-.797-.686-.296-1.033-.594-2.641-.674-2.725-.226-.284-1.168-1.005-1.746-1.339-.218-.126-.336-.204-.345-.26.184-.186.412-.433.617-.59.195-.15.374-.32.647-.42 1.2-.541 1.886.207 2.05.056 0 0-.259-.296-.144-.247.117.063.5.138.542.177.437.342 1.581 1.593 2.27 2.913.166.323.233.536.156.925-.077.39-.136.604-.22.864-.076.174-.505 1.365-.503 1.525-.087.653.28 1.471.28 1.471.003-.222-.014-.34.006-.499l.025-.284s-.016-.075-.013-.105c.019-.196.067-.361.081-.474.138-.853.377-1.467.65-2.216.08-.189.185-.294.18-.438.005-.255-.224-.598-.389-.933a10.141 10.141 0 0 0-.627-1.112c-.596-.857-1.103-1.527-2.033-1.947-.26-.114-1.284-.226-1.638-.16-.429.09-.797.178-1.092.367-.462.296-.826.755-1.252 1.025-.944-.472-1.4-.825-1.484-.874-.561-.3-1.234-.649-1.958-.98-.348-.321-2.504-1.096-4.479-1.25zm9.705 19.318c.004 0 .007-.001.007-.002zm1.957-16.262c.05.26.091.517.287.844.42.463.571.79.63.935.205.526.369 1.052.519 1.578-.05-.548-.237-1.136-.313-1.66-.043-.24-.954-1.68-1.123-1.697zm-7.078 2.51c1.051.267 2.609.274 3.368.743.011.041-.02.068-.066.09-.187-.026-.372-.077-.57-.03-.29.093-.548.269-.822.406.754-.154.965.027 1.538.075.62.236.985 1.375 1.394 1.696-.378-.827-.617-2.06-1.355-2.714-.917-.294-2.267-.226-3.487-.267zm6.987 4.916a3.036 3.036 0 0 0-.668.066c-.16.215-.17.433-.24.635.476-.525.665-.557 1.427-.666a4.429 4.429 0 0 0-.52-.035zm-7.787.365c.496 1.86 1.516 3.733 2.53 5.44.39.496.497.718 1.087 1.018-.049.103-.103.23-.162.376-1.132-.559-2.067-1.232-3.008-1.91-1.512-1.104-1.89-2.418-2.155-4.136a.363.363 0 0 1 .12-.108 4.556 4.556 0 0 1 1.588-.68zm8.185 1.135c-.466-.002-.851.16-1.351.482 0 0 .554-.08.544-.03-.037.175.048.575.073.602l.006-.005c0 .006-.003.008-.006.005l-.306.25c.654-.329 1.341-.263 2.039-.313 0 0-.588-.162-.552-.167.131-.019-.035-.613-.08-.626a4.2 4.2 0 0 1 .334-.094 2.81 2.81 0 0 0-.701-.104zm-1.351.482zm.904.081c.094.001.189.028.22.09a.484.484 0 0 1 .018.265.538.538 0 0 0-.395.12c-.071.07-.123-.347-.068-.412.034-.04.13-.064.225-.063zm3.017.298c.084-.001.256.009.287.12.02.062-.042.27-.072.292-.046.023-.356.003-.369-.061-.026-.076.037-.306.108-.348l.046-.003zm2.897.384l-.553.27c-.9.284-.954.03-1.29-.066.222.253.487.442.958.33.645-.196.667-.36.885-.534zm-16.499.699c.5 1.36 2.887 3.894 6.09 4.278l-.008.018c-.11.266-.202.724-.196 1.104l-.006.01c-4.155-.885-4.67-1.994-5.951-2.987-.093-.768-.105-1.602.071-2.423zm9.442 1.904c-.021 0-.033 0-.033.003-.296.21-.34.412-.334.586.491-.483.473-.485 1.19-.48a7.261 7.261 0 0 0-.823-.109zm.296.363c-.105.567-.487.97-.783 1.368-.059.093-.101.22.189.624.078.108.36.126.55.116-.193-.146-.488-.301-.536-.436.341.233.657.3.943.262.065-.007.146-.077.209-.183.127-.274.227-.34.328-.413l.232.29.262-.223c-.581-.455-1.07-.923-1.394-1.405zm-9.281 2.42c1.46.878 3.814 1.839 5.812 1.791.2.347.439.711.633 1.001-2.544.387-4.308-.391-5.387-.92l-.117-.118c-.345-.391-.676-1.134-.941-1.755zm6.884 3.456c.1.207.262.379.273.402.856 1.116-1.079.859-1.478.791-.71-.113-1.405-.391-2.065-.767 1.074-.021 2.208.06 3.27-.426Z" }) + ] + } + ); +}); + +exports.default = SiApachehive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.d.ts new file mode 100644 index 000000000..a08a97be8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDEE21"; +declare const SiApachehive: IconType; +export { SiApachehive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.mjs new file mode 100644 index 000000000..6a4d96248 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachehive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDEE21"; +const SiApachehive = React.forwardRef(function SiApachehive2({ title = "Apache Hive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.902.258c-.331.216-.65.525-.994.877-.569.589-.947 1.164-1.526 1.59-.116.1-.441.26-.85.284-.192.01-.318.042-.672-.003-.312-.169-.608-.059-.897.287-.317.456-.72 1.322-.886 1.868-.345 1.39.533 2.536 1.375 3.42.749.73 1.18 1.188 1.488 1.859.233.435.405 1.032.592 1.45.067.133.053.132.235.172.39.084.934.084 1.417.126.209.003.496-.005.768-.033.375-.071.815-.14 1.185-.268.36-.09.682-.212.971-.325-.037.126-.313.249-.416.41-.962 1.376-1.24 2.605-1.09 4.51l-.008-.007.011.05.006.077c.097.874.298 1.6.6 2.43a6.8 6.8 0 0 0 .717 1.38c.072.101.152.205.238.31h-.002l.005.004c.93 1.13 2.706 2.45 5.098 2.986.457.062.975.029 1.463-.1 1.292-.392 3.925-1.319 3.925-1.319s-2.337.194-3.408.088c-.248-.039-.52-.052-.693-.221-.03-.037-.135-.25-.067-.251.093-.003.36-.113.77-.15-.877-.094-.865-.093-.929-.253a9.968 9.968 0 0 0-.409-.884c.386.033 1.24.08 1.529-.218 0 0-.505.058-.951.006a2.76 2.76 0 0 1-.484-.137c-.2-.079-.365-.103-.404-.154-.07-.177-.116-.236-.2-.473-.114-.315-.123-.665-.145-.986.292.36.664.663 1.157.818.006-.013.638.275 1.098.127l.088-.029c-.045.009-.307.02-.409-.03-.934-.398-1.075-.745-1.226-.918l-.403-.604c.123-.245.192-.254.355-.256.491.054.705.096 1.004.024.203.416.257.835.718 1.137 1.533.456 1.866-.135 2.237-.656 1.104.81 2.9 1.059 4.147.014 1.586-1.835 2.088-4.728 1.947-4.893-.198-.336-.457-.683-.68-.635-.796.217-1.09.62-1.877.529.094-.006.252-.008.253-.017.06-.667-.005-.99-.034-1.046-.24-.527-.554-1.082-.772-1.498-.057-.086-.223-.742-.5-1-.12-.102-.41-.37-.41-.37l-.026.285s.114.017.158.193c.079.322.313.854.542 1.33h-.37l.424.11c.228.465.437.852.467.888.193.312.148.673.155.98l-.11.055c-.017-.361-.405-.335-.732-.338l-.268-.066c.082.076.334.07.232.233-.086.046-.125.242-.174.407l-.145.007c.256.1.494.188.776.306l.142.021-.142.357-.193-.078-.007-.135c-.34-.136-.995-.193-1.019-.165-.242.237-.418.524-.609.8.262-.204.46-.512.813-.597.028-.003.378.065.568.098-.122.025-.32.034-.35.077-.269.332-.466.736-.697 1.105.319-.329.416-.666.957-.985.045-.03.375-.023.536.058-.051.183-.167.401-.26.607-.133.313-.386.601-.58.902.608-.74.435-.469.841-.946.17-.404.34-.84.497-1.271l.03-.016c.054.033.47-.008.795.012.559-.12.535-.367 1.018-.404.325-.025.358.586.353.634a7.248 7.248 0 0 1-.58 2.174c-.652 1.258-1.383 2.388-2.42 2.545-1.265.221-1.922-.332-2.608-.684l-.262.224c-.891.887-1.949.808-2.382-.351l-.003-.006a2.839 2.839 0 0 0-.092-.175c-.127-.246-.25-.495-.402-.724-1.338-1.058-.72-2.022-.364-2.632-.744-.188-1.73-.588-1.866-1.113-.219-1.7-.108-2.24.11-3.113-.996.21-2.006.419-3.077.776l-.001-.008c-.286.064-1.246.416-1.518.563-.617.179-1.13.366-1.917.563a2.934 2.934 0 0 1-.753-.002c-.566-.077-1.531-.008-1.593-.065-.383-.535-.488-1.493-.838-2.006l-.004-.005-.005-.004c-.203-.275-.441-.498-.675-.73C1.49 8.213.773 7.407.572 6.554c-.05-.252-.18-.513-.112-1.258l.002-.004.001-.003c.202-.697.53-1.265 1.087-1.834.58.01 1.153.022 1.6.108.205.034.631.09 1.071.254 1.115.415 2.587 1.097 2.587 1.097-1.105-.607-2.34-1.395-3.121-1.554-.117-.017-.188-.07-.222-.162 1.173-.69 1.388-1.502 2.16-2.23.353-.154.49-.232.79-.265 2.774.439 4.52 1.543 5.9 2.282.56.304 1.07.535 1.557.812.426.14 1.713 1.113 2.09 1.637.383.807.662 1.68.917 2.522.183.857.343 1.204.343 1.204s-.155-.716-.13-.845c.162.06.542.18.7.16 0 0-.705-.364-.797-.686-.296-1.033-.594-2.641-.674-2.725-.226-.284-1.168-1.005-1.746-1.339-.218-.126-.336-.204-.345-.26.184-.186.412-.433.617-.59.195-.15.374-.32.647-.42 1.2-.541 1.886.207 2.05.056 0 0-.259-.296-.144-.247.117.063.5.138.542.177.437.342 1.581 1.593 2.27 2.913.166.323.233.536.156.925-.077.39-.136.604-.22.864-.076.174-.505 1.365-.503 1.525-.087.653.28 1.471.28 1.471.003-.222-.014-.34.006-.499l.025-.284s-.016-.075-.013-.105c.019-.196.067-.361.081-.474.138-.853.377-1.467.65-2.216.08-.189.185-.294.18-.438.005-.255-.224-.598-.389-.933a10.141 10.141 0 0 0-.627-1.112c-.596-.857-1.103-1.527-2.033-1.947-.26-.114-1.284-.226-1.638-.16-.429.09-.797.178-1.092.367-.462.296-.826.755-1.252 1.025-.944-.472-1.4-.825-1.484-.874-.561-.3-1.234-.649-1.958-.98-.348-.321-2.504-1.096-4.479-1.25zm9.705 19.318c.004 0 .007-.001.007-.002zm1.957-16.262c.05.26.091.517.287.844.42.463.571.79.63.935.205.526.369 1.052.519 1.578-.05-.548-.237-1.136-.313-1.66-.043-.24-.954-1.68-1.123-1.697zm-7.078 2.51c1.051.267 2.609.274 3.368.743.011.041-.02.068-.066.09-.187-.026-.372-.077-.57-.03-.29.093-.548.269-.822.406.754-.154.965.027 1.538.075.62.236.985 1.375 1.394 1.696-.378-.827-.617-2.06-1.355-2.714-.917-.294-2.267-.226-3.487-.267zm6.987 4.916a3.036 3.036 0 0 0-.668.066c-.16.215-.17.433-.24.635.476-.525.665-.557 1.427-.666a4.429 4.429 0 0 0-.52-.035zm-7.787.365c.496 1.86 1.516 3.733 2.53 5.44.39.496.497.718 1.087 1.018-.049.103-.103.23-.162.376-1.132-.559-2.067-1.232-3.008-1.91-1.512-1.104-1.89-2.418-2.155-4.136a.363.363 0 0 1 .12-.108 4.556 4.556 0 0 1 1.588-.68zm8.185 1.135c-.466-.002-.851.16-1.351.482 0 0 .554-.08.544-.03-.037.175.048.575.073.602l.006-.005c0 .006-.003.008-.006.005l-.306.25c.654-.329 1.341-.263 2.039-.313 0 0-.588-.162-.552-.167.131-.019-.035-.613-.08-.626a4.2 4.2 0 0 1 .334-.094 2.81 2.81 0 0 0-.701-.104zm-1.351.482zm.904.081c.094.001.189.028.22.09a.484.484 0 0 1 .018.265.538.538 0 0 0-.395.12c-.071.07-.123-.347-.068-.412.034-.04.13-.064.225-.063zm3.017.298c.084-.001.256.009.287.12.02.062-.042.27-.072.292-.046.023-.356.003-.369-.061-.026-.076.037-.306.108-.348l.046-.003zm2.897.384l-.553.27c-.9.284-.954.03-1.29-.066.222.253.487.442.958.33.645-.196.667-.36.885-.534zm-16.499.699c.5 1.36 2.887 3.894 6.09 4.278l-.008.018c-.11.266-.202.724-.196 1.104l-.006.01c-4.155-.885-4.67-1.994-5.951-2.987-.093-.768-.105-1.602.071-2.423zm9.442 1.904c-.021 0-.033 0-.033.003-.296.21-.34.412-.334.586.491-.483.473-.485 1.19-.48a7.261 7.261 0 0 0-.823-.109zm.296.363c-.105.567-.487.97-.783 1.368-.059.093-.101.22.189.624.078.108.36.126.55.116-.193-.146-.488-.301-.536-.436.341.233.657.3.943.262.065-.007.146-.077.209-.183.127-.274.227-.34.328-.413l.232.29.262-.223c-.581-.455-1.07-.923-1.394-1.405zm-9.281 2.42c1.46.878 3.814 1.839 5.812 1.791.2.347.439.711.633 1.001-2.544.387-4.308-.391-5.387-.92l-.117-.118c-.345-.391-.676-1.134-.941-1.755zm6.884 3.456c.1.207.262.379.273.402.856 1.116-1.079.859-1.478.791-.71-.113-1.405-.391-2.065-.767 1.074-.021 2.208.06 3.27-.426Z" }) + ] + } + ); +}); + +export { SiApachehive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.cjs new file mode 100644 index 000000000..d4e71f119 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D22128"; +const SiApachejmeter = React__namespace.forwardRef(function SiApachejmeter2({ title = "Apache JMeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.35 7.79s-.247-.4-.537-.228c-.14.084-.374.318-.653.658l.257.484a6.28 6.28 0 0 1 .517-.653c-.079.09-.246.298-.484.662.334-.023.666-.064.996-.123.099-.549-.096-.8-.096-.8zm-.386.228.022-.024zM.91 14.02a45.295 45.295 0 0 0-.774 2.33.198.198 0 0 1-.136.132c.23-.76.458-1.476.687-2.124-.143-.033-.346.007-.594.11.17-.13.339-.242.5-.252-.051-.011-.183-.057-.36-.22.169.063.316.094.422.072-.022-.282-.174-.57-.374-.86-.001-.002.28.161.383.33l.002-.023c.017-.22.048-.438.093-.654v-.002c.034-.174.076-.348.127-.522l.066-.223c.028-.087.06-.176.093-.27.11-.301.235-.596.375-.884l.036-.072c.128-.257.264-.511.408-.76.076-.133.154-.262.231-.39.007-.007.011-.017.017-.026L2.11 9.71l.008-.013c.236-.38.488-.75.754-1.108a8.36 8.36 0 0 1 .229-.296l.058-.072.256.482a10.46 10.46 0 0 0-.268.404c-.172.276-.335.559-.487.846l-.217.414-.222-.439.22.44-.007.015c-.044.09-.09.18-.133.27a6.9 6.9 0 0 0-.077.16l-.206.444a42.824 42.824 0 0 0-.57 1.344l-.18.457a6.523 6.523 0 0 1-.04.103c-.044.121-.091.239-.134.357v.004l-.033.088-.141.381-.01.029zm3.235-4.623a4.98 4.98 0 0 1-.334.562c-.106.149-.216.25-.457.363l.022-.004c.002-.002.003-.002.006-.002.125-.023.28-.074.37-.127a.184.184 0 0 0 .036-.024.846.846 0 0 1-.02.089c-.006.025-.016.054-.026.085l-.012.033-.036.092a2.985 2.985 0 0 1-.102.226c-.008.019-.018.038-.028.057l-.024.039a.85.85 0 0 1-.084.116l-.04.044a1.2 1.2 0 0 1-.113.101 1.231 1.231 0 0 1-.27.151l.017-.002.064-.011c.129-.031.251-.085.361-.16-.138.275-.326.497-.628.612l.052-.007.05-.011a.998.998 0 0 0 .254-.087 6.74 6.74 0 0 1-.18.492c-.071.174-.145.33-.225.47a2.577 2.577 0 0 1-.35.487c-.276.298-.705.54-1.027.58l.016.003c.366.076.745-.047.996-.324a2.685 2.685 0 0 1-.106.187c-.148.24-.318.386-.654.537.23.013.35-.041.448-.165a1.414 1.414 0 0 1-.052.1c-.215.356-.634.478-1.117.456a.54.54 0 0 1 .174.37c-.074-.134-.152-.251-.251-.297l.116-.334a.523.523 0 0 1 .02-.054v-.006l.132-.37a.837.837 0 0 0 .026-.07l.003-.01.17-.454.007-.022.168-.435c.061-.159.124-.312.184-.46.123-.301.25-.6.382-.897.052-.116.101-.228.152-.336l.05-.108.097-.205c.028-.063.059-.122.088-.183l.027-.058c.002-.002.003-.006.002-.011l.006-.001c.074-.15.143-.291.213-.423.15-.29.309-.576.474-.857l.013-.023c.088-.148.171-.28.246-.396.333-.023.665-.064.995-.12-.011.052-.022.107-.038.165a2.966 2.966 0 0 1-.075.225 4.142 4.142 0 0 1-.187.413h-.001zm2.351.674v4.596c0 .28-.041.527-.125.732a1.337 1.337 0 0 1-.35.512 1.37 1.37 0 0 1-.531.3c-.203.063-.43.095-.674.095a2.728 2.728 0 0 1-.659-.074.063.063 0 0 1-.046-.06v-.842a.063.063 0 0 1 .076-.062c.077.018.162.033.25.045.162.024.376.03.54-.01a.48.48 0 0 0 .332-.29.826.826 0 0 0 .052-.313v-4.63c0-.035.027-.063.062-.063h1.01c.036 0 .063.028.063.063zm8.588 1.44a1.352 1.352 0 0 0-.518-.334 1.887 1.887 0 0 0-.675-.114c-.254 0-.49.041-.702.125-.208.082-.395.21-.545.377a1.75 1.75 0 0 0-.35.619 2.704 2.704 0 0 0-.123.859c0 .32.044.606.135.848.092.24.222.443.386.603.164.157.364.276.59.355a2.3 2.3 0 0 0 .742.118c.143 0 .267-.005.377-.015a2.33 2.33 0 0 0 .61-.13c.095-.033.187-.074.273-.12a.06.06 0 0 0 .033-.055v-.77a.063.063 0 0 0-.09-.055 2.505 2.505 0 0 1-.827.265c-.102.01-.204.015-.307.014a.907.907 0 0 1-.332-.055.703.703 0 0 1-.243-.162.797.797 0 0 1-.155-.263 1.168 1.168 0 0 1-.058-.295h2.157a.063.063 0 0 0 .063-.062v-.483a2.126 2.126 0 0 0-.114-.725 1.462 1.462 0 0 0-.327-.544zm-1.758 1.029c.022-.216.081-.377.176-.478a.518.518 0 0 1 .395-.167.55.55 0 0 1 .246.052c.07.033.13.083.176.144a.647.647 0 0 1 .105.22c.02.071.033.148.038.229h-1.136zm10.673-1.387v.934a.062.062 0 0 1-.077.06.727.727 0 0 0-.254-.027l-.08-.004c-.121 0-.233.016-.337.047a.636.636 0 0 0-.253.145.672.672 0 0 0-.163.264c-.039.11-.059.248-.059.411v1.856a.063.063 0 0 1-.063.063h-.994a.063.063 0 0 1-.063-.063v-3.645c0-.035.028-.063.063-.063h.753c.028 0 .053.02.06.046l.124.462c.04-.067.085-.13.133-.191a.932.932 0 0 1 .487-.338 1.14 1.14 0 0 1 .434-.044c.033 0 .065 0 .096.006a.76.76 0 0 1 .084.011.279.279 0 0 1 .066.011.061.061 0 0 1 .044.059h-.001zm-5.956 2.794a.06.06 0 0 1 .027.05v.741a.06.06 0 0 1-.033.055 1.524 1.524 0 0 1-.364.125c-.304.068-.62.066-.924-.008a.91.91 0 0 1-.381-.207 1.036 1.036 0 0 1-.256-.397 1.819 1.819 0 0 1-.088-.608V12h-.414a.063.063 0 0 1-.062-.062v-.42a.06.06 0 0 1 .03-.053l.529-.323.28-.75a.062.062 0 0 1 .058-.04h.636c.035 0 .062.028.062.063v.714h.825c.034 0 .063.028.063.062v.747a.063.063 0 0 1-.063.063h-.825v1.695c0 .124.029.214.085.268a.315.315 0 0 0 .231.084c.094 0 .181-.011.263-.03.089-.022.177-.05.264-.08a.062.062 0 0 1 .057.007v.001zm-6.105-3.876v4.77a.063.063 0 0 1-.062.061h-.943a.063.063 0 0 1-.063-.063v-2.45l.014-.473.01-.242.008-.187-1.018 3.37a.062.062 0 0 1-.06.044h-.93a.063.063 0 0 1-.06-.044l-.929-3.32a24.947 24.947 0 0 1 .033.88c.003.074.005.142.005.204v2.218a.063.063 0 0 1-.063.063h-.903a.063.063 0 0 1-.063-.063V10.07c0-.034.027-.063.062-.063h1.376c.03 0 .053.02.061.047l.981 3.473 1.046-3.474a.063.063 0 0 1 .06-.044h1.376c.034 0 .062.027.062.061zm9.135 1.44a1.351 1.351 0 0 0-.517-.334 1.886 1.886 0 0 0-.676-.114c-.253 0-.49.041-.701.125-.208.082-.395.21-.545.377a1.75 1.75 0 0 0-.35.619c-.087.278-.13.568-.124.859 0 .32.046.606.135.848.093.24.223.443.387.603.164.157.364.276.59.355a2.3 2.3 0 0 0 .742.118c.143 0 .266-.005.376-.015a2.306 2.306 0 0 0 .884-.25.06.06 0 0 0 .033-.055v-.77a.063.063 0 0 0-.09-.055 2.5 2.5 0 0 1-.828.265c-.101.01-.204.015-.306.014a.905.905 0 0 1-.332-.055.7.7 0 0 1-.242-.162.799.799 0 0 1-.157-.263 1.165 1.165 0 0 1-.057-.295h2.157a.063.063 0 0 0 .063-.062v-.483a2.126 2.126 0 0 0-.114-.725 1.464 1.464 0 0 0-.328-.544zm-.765.58a.65.65 0 0 1 .106.22c.02.071.033.148.038.229h-1.137c.022-.216.082-.377.177-.478a.518.518 0 0 1 .395-.167.55.55 0 0 1 .246.052.48.48 0 0 1 .175.144zM6.26 7.63h-.137L5.41 9.336h.179l.218-.534h.769l.22.534h.18l-.714-1.708H6.26zm-.419 1.04.352-.844.341.844h-.693zm1.483.035h.555c.292 0 .489-.262.489-.54 0-.265-.211-.536-.503-.536h-.708v1.708h.166v-.632zm0-.926h.532c.187 0 .346.172.346.386 0 .207-.13.392-.332.392h-.546v-.778zm1.129 1.558.218-.534h.767l.22.534h.184l-.714-1.708H8.99l-.715 1.708h.177zm.606-1.51.342.843H8.71l.352-.844H9.06zm.778.643c0-.41.297-.85.81-.85a.672.672 0 0 1 .631.372l-.135.081a.538.538 0 0 0-.504-.303c-.408 0-.632.365-.632.709 0 .376.276.718.639.718a.58.58 0 0 0 .526-.318l.14.073c-.111.256-.414.397-.676.397-.468 0-.799-.447-.799-.88zm1.875.867h-.165V7.629h.165v.76h1.011v-.76h.169v1.708h-.169v-.799h-1.01v.799zm2.71 0h-1.145V7.629h1.124v.15h-.959v.616h.836v.142h-.837v.65h.982v.15z" }) + ] + } + ); +}); + +exports.default = SiApachejmeter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.d.ts new file mode 100644 index 000000000..712196e8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D22128"; +declare const SiApachejmeter: IconType; +export { SiApachejmeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.mjs new file mode 100644 index 000000000..31ebdc1d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachejmeter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D22128"; +const SiApachejmeter = React.forwardRef(function SiApachejmeter2({ title = "Apache JMeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.35 7.79s-.247-.4-.537-.228c-.14.084-.374.318-.653.658l.257.484a6.28 6.28 0 0 1 .517-.653c-.079.09-.246.298-.484.662.334-.023.666-.064.996-.123.099-.549-.096-.8-.096-.8zm-.386.228.022-.024zM.91 14.02a45.295 45.295 0 0 0-.774 2.33.198.198 0 0 1-.136.132c.23-.76.458-1.476.687-2.124-.143-.033-.346.007-.594.11.17-.13.339-.242.5-.252-.051-.011-.183-.057-.36-.22.169.063.316.094.422.072-.022-.282-.174-.57-.374-.86-.001-.002.28.161.383.33l.002-.023c.017-.22.048-.438.093-.654v-.002c.034-.174.076-.348.127-.522l.066-.223c.028-.087.06-.176.093-.27.11-.301.235-.596.375-.884l.036-.072c.128-.257.264-.511.408-.76.076-.133.154-.262.231-.39.007-.007.011-.017.017-.026L2.11 9.71l.008-.013c.236-.38.488-.75.754-1.108a8.36 8.36 0 0 1 .229-.296l.058-.072.256.482a10.46 10.46 0 0 0-.268.404c-.172.276-.335.559-.487.846l-.217.414-.222-.439.22.44-.007.015c-.044.09-.09.18-.133.27a6.9 6.9 0 0 0-.077.16l-.206.444a42.824 42.824 0 0 0-.57 1.344l-.18.457a6.523 6.523 0 0 1-.04.103c-.044.121-.091.239-.134.357v.004l-.033.088-.141.381-.01.029zm3.235-4.623a4.98 4.98 0 0 1-.334.562c-.106.149-.216.25-.457.363l.022-.004c.002-.002.003-.002.006-.002.125-.023.28-.074.37-.127a.184.184 0 0 0 .036-.024.846.846 0 0 1-.02.089c-.006.025-.016.054-.026.085l-.012.033-.036.092a2.985 2.985 0 0 1-.102.226c-.008.019-.018.038-.028.057l-.024.039a.85.85 0 0 1-.084.116l-.04.044a1.2 1.2 0 0 1-.113.101 1.231 1.231 0 0 1-.27.151l.017-.002.064-.011c.129-.031.251-.085.361-.16-.138.275-.326.497-.628.612l.052-.007.05-.011a.998.998 0 0 0 .254-.087 6.74 6.74 0 0 1-.18.492c-.071.174-.145.33-.225.47a2.577 2.577 0 0 1-.35.487c-.276.298-.705.54-1.027.58l.016.003c.366.076.745-.047.996-.324a2.685 2.685 0 0 1-.106.187c-.148.24-.318.386-.654.537.23.013.35-.041.448-.165a1.414 1.414 0 0 1-.052.1c-.215.356-.634.478-1.117.456a.54.54 0 0 1 .174.37c-.074-.134-.152-.251-.251-.297l.116-.334a.523.523 0 0 1 .02-.054v-.006l.132-.37a.837.837 0 0 0 .026-.07l.003-.01.17-.454.007-.022.168-.435c.061-.159.124-.312.184-.46.123-.301.25-.6.382-.897.052-.116.101-.228.152-.336l.05-.108.097-.205c.028-.063.059-.122.088-.183l.027-.058c.002-.002.003-.006.002-.011l.006-.001c.074-.15.143-.291.213-.423.15-.29.309-.576.474-.857l.013-.023c.088-.148.171-.28.246-.396.333-.023.665-.064.995-.12-.011.052-.022.107-.038.165a2.966 2.966 0 0 1-.075.225 4.142 4.142 0 0 1-.187.413h-.001zm2.351.674v4.596c0 .28-.041.527-.125.732a1.337 1.337 0 0 1-.35.512 1.37 1.37 0 0 1-.531.3c-.203.063-.43.095-.674.095a2.728 2.728 0 0 1-.659-.074.063.063 0 0 1-.046-.06v-.842a.063.063 0 0 1 .076-.062c.077.018.162.033.25.045.162.024.376.03.54-.01a.48.48 0 0 0 .332-.29.826.826 0 0 0 .052-.313v-4.63c0-.035.027-.063.062-.063h1.01c.036 0 .063.028.063.063zm8.588 1.44a1.352 1.352 0 0 0-.518-.334 1.887 1.887 0 0 0-.675-.114c-.254 0-.49.041-.702.125-.208.082-.395.21-.545.377a1.75 1.75 0 0 0-.35.619 2.704 2.704 0 0 0-.123.859c0 .32.044.606.135.848.092.24.222.443.386.603.164.157.364.276.59.355a2.3 2.3 0 0 0 .742.118c.143 0 .267-.005.377-.015a2.33 2.33 0 0 0 .61-.13c.095-.033.187-.074.273-.12a.06.06 0 0 0 .033-.055v-.77a.063.063 0 0 0-.09-.055 2.505 2.505 0 0 1-.827.265c-.102.01-.204.015-.307.014a.907.907 0 0 1-.332-.055.703.703 0 0 1-.243-.162.797.797 0 0 1-.155-.263 1.168 1.168 0 0 1-.058-.295h2.157a.063.063 0 0 0 .063-.062v-.483a2.126 2.126 0 0 0-.114-.725 1.462 1.462 0 0 0-.327-.544zm-1.758 1.029c.022-.216.081-.377.176-.478a.518.518 0 0 1 .395-.167.55.55 0 0 1 .246.052c.07.033.13.083.176.144a.647.647 0 0 1 .105.22c.02.071.033.148.038.229h-1.136zm10.673-1.387v.934a.062.062 0 0 1-.077.06.727.727 0 0 0-.254-.027l-.08-.004c-.121 0-.233.016-.337.047a.636.636 0 0 0-.253.145.672.672 0 0 0-.163.264c-.039.11-.059.248-.059.411v1.856a.063.063 0 0 1-.063.063h-.994a.063.063 0 0 1-.063-.063v-3.645c0-.035.028-.063.063-.063h.753c.028 0 .053.02.06.046l.124.462c.04-.067.085-.13.133-.191a.932.932 0 0 1 .487-.338 1.14 1.14 0 0 1 .434-.044c.033 0 .065 0 .096.006a.76.76 0 0 1 .084.011.279.279 0 0 1 .066.011.061.061 0 0 1 .044.059h-.001zm-5.956 2.794a.06.06 0 0 1 .027.05v.741a.06.06 0 0 1-.033.055 1.524 1.524 0 0 1-.364.125c-.304.068-.62.066-.924-.008a.91.91 0 0 1-.381-.207 1.036 1.036 0 0 1-.256-.397 1.819 1.819 0 0 1-.088-.608V12h-.414a.063.063 0 0 1-.062-.062v-.42a.06.06 0 0 1 .03-.053l.529-.323.28-.75a.062.062 0 0 1 .058-.04h.636c.035 0 .062.028.062.063v.714h.825c.034 0 .063.028.063.062v.747a.063.063 0 0 1-.063.063h-.825v1.695c0 .124.029.214.085.268a.315.315 0 0 0 .231.084c.094 0 .181-.011.263-.03.089-.022.177-.05.264-.08a.062.062 0 0 1 .057.007v.001zm-6.105-3.876v4.77a.063.063 0 0 1-.062.061h-.943a.063.063 0 0 1-.063-.063v-2.45l.014-.473.01-.242.008-.187-1.018 3.37a.062.062 0 0 1-.06.044h-.93a.063.063 0 0 1-.06-.044l-.929-3.32a24.947 24.947 0 0 1 .033.88c.003.074.005.142.005.204v2.218a.063.063 0 0 1-.063.063h-.903a.063.063 0 0 1-.063-.063V10.07c0-.034.027-.063.062-.063h1.376c.03 0 .053.02.061.047l.981 3.473 1.046-3.474a.063.063 0 0 1 .06-.044h1.376c.034 0 .062.027.062.061zm9.135 1.44a1.351 1.351 0 0 0-.517-.334 1.886 1.886 0 0 0-.676-.114c-.253 0-.49.041-.701.125-.208.082-.395.21-.545.377a1.75 1.75 0 0 0-.35.619c-.087.278-.13.568-.124.859 0 .32.046.606.135.848.093.24.223.443.387.603.164.157.364.276.59.355a2.3 2.3 0 0 0 .742.118c.143 0 .266-.005.376-.015a2.306 2.306 0 0 0 .884-.25.06.06 0 0 0 .033-.055v-.77a.063.063 0 0 0-.09-.055 2.5 2.5 0 0 1-.828.265c-.101.01-.204.015-.306.014a.905.905 0 0 1-.332-.055.7.7 0 0 1-.242-.162.799.799 0 0 1-.157-.263 1.165 1.165 0 0 1-.057-.295h2.157a.063.063 0 0 0 .063-.062v-.483a2.126 2.126 0 0 0-.114-.725 1.464 1.464 0 0 0-.328-.544zm-.765.58a.65.65 0 0 1 .106.22c.02.071.033.148.038.229h-1.137c.022-.216.082-.377.177-.478a.518.518 0 0 1 .395-.167.55.55 0 0 1 .246.052.48.48 0 0 1 .175.144zM6.26 7.63h-.137L5.41 9.336h.179l.218-.534h.769l.22.534h.18l-.714-1.708H6.26zm-.419 1.04.352-.844.341.844h-.693zm1.483.035h.555c.292 0 .489-.262.489-.54 0-.265-.211-.536-.503-.536h-.708v1.708h.166v-.632zm0-.926h.532c.187 0 .346.172.346.386 0 .207-.13.392-.332.392h-.546v-.778zm1.129 1.558.218-.534h.767l.22.534h.184l-.714-1.708H8.99l-.715 1.708h.177zm.606-1.51.342.843H8.71l.352-.844H9.06zm.778.643c0-.41.297-.85.81-.85a.672.672 0 0 1 .631.372l-.135.081a.538.538 0 0 0-.504-.303c-.408 0-.632.365-.632.709 0 .376.276.718.639.718a.58.58 0 0 0 .526-.318l.14.073c-.111.256-.414.397-.676.397-.468 0-.799-.447-.799-.88zm1.875.867h-.165V7.629h.165v.76h1.011v-.76h.169v1.708h-.169v-.799h-1.01v.799zm2.71 0h-1.145V7.629h1.124v.15h-.959v.616h.836v.142h-.837v.65h.982v.15z" }) + ] + } + ); +}); + +export { SiApachejmeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.cjs new file mode 100644 index 000000000..ff9f4c186 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiApachekafka = React__namespace.forwardRef(function SiApachekafka2({ title = "Apache Kafka", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.71 2.136a1.43 1.43 0 0 0-2.047 0h-.007a1.48 1.48 0 0 0-.421 1.042c0 .41.161.777.422 1.039l.007.007c.257.264.616.426 1.019.426.404 0 .766-.162 1.027-.426l.003-.007c.261-.262.421-.629.421-1.039 0-.408-.159-.777-.421-1.042H9.71zM8.683 22.295c.404 0 .766-.167 1.027-.429l.003-.008c.261-.261.421-.631.421-1.036 0-.41-.159-.778-.421-1.044H9.71a1.42 1.42 0 0 0-1.027-.432 1.4 1.4 0 0 0-1.02.432h-.007c-.26.266-.422.634-.422 1.044 0 .406.161.775.422 1.036l.007.008c.258.262.617.429 1.02.429zm7.89-4.462c.359-.096.683-.33.882-.684l.027-.052a1.47 1.47 0 0 0 .114-1.067 1.454 1.454 0 0 0-.675-.896l-.021-.014a1.425 1.425 0 0 0-1.078-.132c-.36.091-.684.335-.881.686-.2.349-.241.75-.146 1.119.099.363.33.691.675.896h.002c.346.203.737.239 1.101.144zm-6.405-7.342a2.083 2.083 0 0 0-1.485-.627c-.58 0-1.103.242-1.482.627-.378.385-.612.916-.612 1.507s.233 1.124.612 1.514a2.08 2.08 0 0 0 2.967 0c.379-.39.612-.923.612-1.514s-.233-1.122-.612-1.507zm-.835-2.51c.843.141 1.6.552 2.178 1.144h.004c.092.093.182.196.265.299l1.446-.851a3.176 3.176 0 0 1-.047-1.808 3.149 3.149 0 0 1 1.456-1.926l.025-.016a3.062 3.062 0 0 1 2.345-.306c.77.21 1.465.721 1.898 1.482v.002c.431.757.518 1.626.313 2.408a3.145 3.145 0 0 1-1.456 1.928l-.198.118h-.02a3.095 3.095 0 0 1-2.154.201 3.127 3.127 0 0 1-1.514-.944l-1.444.848a4.162 4.162 0 0 1 0 2.879l1.444.846c.413-.47.939-.789 1.514-.944a3.041 3.041 0 0 1 2.371.319l.048.023v.002a3.17 3.17 0 0 1 1.408 1.906 3.215 3.215 0 0 1-.313 2.405l-.026.053-.003-.005a3.147 3.147 0 0 1-1.867 1.436 3.096 3.096 0 0 1-2.371-.318v-.006a3.156 3.156 0 0 1-1.456-1.927 3.175 3.175 0 0 1 .047-1.805l-1.446-.848a3.905 3.905 0 0 1-.265.294l-.004.005a3.938 3.938 0 0 1-2.178 1.138v1.699a3.09 3.09 0 0 1 1.56.862l.002.004c.565.572.914 1.368.914 2.243 0 .873-.35 1.664-.914 2.239l-.002.009a3.1 3.1 0 0 1-2.21.931 3.1 3.1 0 0 1-2.206-.93h-.002v-.009a3.186 3.186 0 0 1-.916-2.239c0-.875.35-1.672.916-2.243v-.004h.002a3.1 3.1 0 0 1 1.558-.862v-1.699a3.926 3.926 0 0 1-2.176-1.138l-.006-.005a4.098 4.098 0 0 1-1.173-2.874c0-1.122.452-2.136 1.173-2.872h.006a3.947 3.947 0 0 1 2.176-1.144V6.289a3.137 3.137 0 0 1-1.558-.864h-.002v-.004a3.192 3.192 0 0 1-.916-2.243c0-.871.35-1.669.916-2.243l.002-.002A3.084 3.084 0 0 1 8.683 0c.861 0 1.641.355 2.21.932v.002h.002c.565.574.914 1.372.914 2.243 0 .876-.35 1.667-.914 2.243l-.002.005a3.142 3.142 0 0 1-1.56.864v1.692zm8.121-1.129l-.012-.019a1.452 1.452 0 0 0-.87-.668 1.43 1.43 0 0 0-1.103.146h.002c-.347.2-.58.529-.677.896-.095.365-.054.768.146 1.119l.007.009c.2.347.519.579.874.673.357.103.755.059 1.098-.144l.019-.009a1.47 1.47 0 0 0 .657-.885 1.493 1.493 0 0 0-.141-1.118" }) + ] + } + ); +}); + +exports.default = SiApachekafka; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.d.ts new file mode 100644 index 000000000..eda2f0a19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiApachekafka: IconType; +export { SiApachekafka as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.mjs new file mode 100644 index 000000000..d7cb83d94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekafka.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiApachekafka = React.forwardRef(function SiApachekafka2({ title = "Apache Kafka", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.71 2.136a1.43 1.43 0 0 0-2.047 0h-.007a1.48 1.48 0 0 0-.421 1.042c0 .41.161.777.422 1.039l.007.007c.257.264.616.426 1.019.426.404 0 .766-.162 1.027-.426l.003-.007c.261-.262.421-.629.421-1.039 0-.408-.159-.777-.421-1.042H9.71zM8.683 22.295c.404 0 .766-.167 1.027-.429l.003-.008c.261-.261.421-.631.421-1.036 0-.41-.159-.778-.421-1.044H9.71a1.42 1.42 0 0 0-1.027-.432 1.4 1.4 0 0 0-1.02.432h-.007c-.26.266-.422.634-.422 1.044 0 .406.161.775.422 1.036l.007.008c.258.262.617.429 1.02.429zm7.89-4.462c.359-.096.683-.33.882-.684l.027-.052a1.47 1.47 0 0 0 .114-1.067 1.454 1.454 0 0 0-.675-.896l-.021-.014a1.425 1.425 0 0 0-1.078-.132c-.36.091-.684.335-.881.686-.2.349-.241.75-.146 1.119.099.363.33.691.675.896h.002c.346.203.737.239 1.101.144zm-6.405-7.342a2.083 2.083 0 0 0-1.485-.627c-.58 0-1.103.242-1.482.627-.378.385-.612.916-.612 1.507s.233 1.124.612 1.514a2.08 2.08 0 0 0 2.967 0c.379-.39.612-.923.612-1.514s-.233-1.122-.612-1.507zm-.835-2.51c.843.141 1.6.552 2.178 1.144h.004c.092.093.182.196.265.299l1.446-.851a3.176 3.176 0 0 1-.047-1.808 3.149 3.149 0 0 1 1.456-1.926l.025-.016a3.062 3.062 0 0 1 2.345-.306c.77.21 1.465.721 1.898 1.482v.002c.431.757.518 1.626.313 2.408a3.145 3.145 0 0 1-1.456 1.928l-.198.118h-.02a3.095 3.095 0 0 1-2.154.201 3.127 3.127 0 0 1-1.514-.944l-1.444.848a4.162 4.162 0 0 1 0 2.879l1.444.846c.413-.47.939-.789 1.514-.944a3.041 3.041 0 0 1 2.371.319l.048.023v.002a3.17 3.17 0 0 1 1.408 1.906 3.215 3.215 0 0 1-.313 2.405l-.026.053-.003-.005a3.147 3.147 0 0 1-1.867 1.436 3.096 3.096 0 0 1-2.371-.318v-.006a3.156 3.156 0 0 1-1.456-1.927 3.175 3.175 0 0 1 .047-1.805l-1.446-.848a3.905 3.905 0 0 1-.265.294l-.004.005a3.938 3.938 0 0 1-2.178 1.138v1.699a3.09 3.09 0 0 1 1.56.862l.002.004c.565.572.914 1.368.914 2.243 0 .873-.35 1.664-.914 2.239l-.002.009a3.1 3.1 0 0 1-2.21.931 3.1 3.1 0 0 1-2.206-.93h-.002v-.009a3.186 3.186 0 0 1-.916-2.239c0-.875.35-1.672.916-2.243v-.004h.002a3.1 3.1 0 0 1 1.558-.862v-1.699a3.926 3.926 0 0 1-2.176-1.138l-.006-.005a4.098 4.098 0 0 1-1.173-2.874c0-1.122.452-2.136 1.173-2.872h.006a3.947 3.947 0 0 1 2.176-1.144V6.289a3.137 3.137 0 0 1-1.558-.864h-.002v-.004a3.192 3.192 0 0 1-.916-2.243c0-.871.35-1.669.916-2.243l.002-.002A3.084 3.084 0 0 1 8.683 0c.861 0 1.641.355 2.21.932v.002h.002c.565.574.914 1.372.914 2.243 0 .876-.35 1.667-.914 2.243l-.002.005a3.142 3.142 0 0 1-1.56.864v1.692zm8.121-1.129l-.012-.019a1.452 1.452 0 0 0-.87-.668 1.43 1.43 0 0 0-1.103.146h.002c-.347.2-.58.529-.677.896-.095.365-.054.768.146 1.119l.007.009c.2.347.519.579.874.673.357.103.755.059 1.098-.144l.019-.009a1.47 1.47 0 0 0 .657-.885 1.493 1.493 0 0 0-.141-1.118" }) + ] + } + ); +}); + +export { SiApachekafka as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.cjs new file mode 100644 index 000000000..df89881ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F09D13"; +const SiApachekylin = React__namespace.forwardRef(function SiApachekylin2({ title = "Apache Kylin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.033 16.459l-.59 1.29h.142l.155-.344h.72l.154.345h.144l-.59-1.291h-.135zm-.243.835l.31-.694.31.694h-.62zm1.154-.515v1.328h.131v-.54a.424.424 0 0 0 .369.192c.277 0 .483-.2.483-.494a.47.47 0 0 0-.483-.493.42.42 0 0 0-.374.2v-.192h-.126zm.49.107c.205 0 .362.153.362.378 0 .227-.157.379-.361.379-.207 0-.362-.152-.362-.379 0-.224.155-.378.362-.378zm1.487.864v-.602c0-.25-.142-.376-.392-.376a.616.616 0 0 0-.395.13l.059.099a.494.494 0 0 1 .323-.115c.18 0 .274.09.274.257v.059h-.308c-.278 0-.374.125-.374.275 0 .167.135.282.354.282.16 0 .275-.061.334-.16v.15h.125zm-.13-.292c-.052.128-.161.198-.309.198-.154 0-.245-.07-.245-.183 0-.1.06-.173.25-.173h.303v.158zm.525-.193c0 .228.155.378.367.378a.328.328 0 0 0 .282-.142l.098.066c-.077.125-.216.192-.38.192-.29 0-.5-.205-.5-.494 0-.29.21-.493.5-.493.164 0 .303.065.38.192l-.098.066a.33.33 0 0 0-.282-.144c-.212 0-.367.152-.367.379zm1.12-.884v.568c.072-.112.199-.177.363-.177.236 0 .398.137.398.415v.563h-.13v-.55c0-.205-.108-.31-.292-.31-.208 0-.34.13-.34.35v.51h-.13v-1.37h.13zm1.968.884c0-.292-.198-.493-.47-.493-.274 0-.475.205-.475.493 0 .287.207.494.51.494a.477.477 0 0 0 .374-.159l-.074-.085a.382.382 0 0 1-.297.128c-.212 0-.367-.135-.382-.338h.812l.002-.04zm-.814-.058a.337.337 0 0 1 .343-.322c.19 0 .329.132.345.322h-.688zm1.728-.748v.78l.758-.78h.157l-.559.584.598.707h-.162l-.528-.607-.264.267v.34h-.136v-1.291h.136zm1.292 1.383l.042-.094-.433-.969h.136l.365.825.365-.825h.13l-.486 1.087c-.08.19-.184.25-.322.25a.332.332 0 0 1-.236-.088l.06-.098a.243.243 0 0 0 .178.074c.086 0 .145-.04.2-.162zm.92-1.461v1.369h-.131v-1.37h.13zm.365.398h.13v.97h-.13v-.97zm.066-.212a.095.095 0 0 1-.095-.094c0-.05.042-.092.095-.092a.093.093 0 1 1 0 .186zm.556.212v.18c.07-.119.2-.187.369-.187.236 0 .398.137.398.415v.562h-.131v-.55c0-.204-.107-.309-.291-.309-.209 0-.34.13-.34.35v.51h-.13v-.97h.125zM2.086 15.41C.264 15.4.124 15.395.063 15.356c-.084-.055-.084-.137-.002-.302.223-.448.78-.76 1.676-.943.575-.116.917-.252 1.23-.487.374-.281.418-.538.12-.69a2.52 2.52 0 0 1-.868-.786c-.294-.447-.492-1.162-.492-1.778 0-.321.168-.938.36-1.323.282-.565.68-.963 1.236-1.235a3.043 3.043 0 0 1 1.25-.298c.085 0 .142-.014.178-.044.05-.04.052-.051.026-.13-.04-.119-.206-.266-.373-.328-.156-.058-.332-.085-.807-.122-.18-.013-.38-.04-.444-.06a.788.788 0 0 1-.411-.28c-.057-.085-.067-.126-.067-.259 0-.14.011-.179.098-.338.092-.168.13-.267.2-.522.023-.086.037-.102.09-.102.033 0 .1.031.148.07.292.23 1.183.53 1.571.53.246 0 .361-.035.453-.14.064-.073.071-.095.058-.181a1.036 1.036 0 0 0-.268-.502c-.14-.14-.426-.285-.694-.355a1.921 1.921 0 0 0-.504-.054c-.345-.004-.373.004-.563.163-.158.132-.21.12-.386-.089-.441-.522-.646-1.065-.518-1.37.041-.1.095-.121.467-.184.163-.027.498-.091.744-.143.965-.202 1.498-.268 2.164-.267.56.001.585-.006.736-.231.199-.297.271-.585.272-1.088 0-.406.018-.455.162-.455.113 0 .276.08.357.176.16.189.221.439.249 1.012.017.351.035.509.08.686.094.364.146.445.543.837.493.488.64.722.731 1.16.073.352.032.768-.107 1.085-.171.393-.579.845-1.033 1.147-.351.234-.757.427-2.302 1.097-.297.128-.61.27-.696.312-.559.282-1.082.816-1.283 1.31-.058.14-.07.21-.08.443-.016.43.076.72.34 1.07.181.242.53.508.791.606.323.121.776.127 1.154.016.37-.108.797-.361.747-.442-.026-.042-.08-.031-.245.048-.627.299-1.316.344-1.71.112a2.043 2.043 0 0 1-.55-.551c-.228-.386-.3-.932-.173-1.303a1.14 1.14 0 0 1 .313-.468c.24-.233.993-.618 2.46-1.258.868-.38 1.04-.464 1.342-.666a3.719 3.719 0 0 0 1.67-3.135c0-.148.01-.27.021-.27.028 0 .19.216.313.416.627 1.026.843 2.398.54 3.443-.284.978-.948 1.741-1.77 2.034a2.307 2.307 0 0 1-.88.14 2.57 2.57 0 0 1-.852-.13c-.467-.135-.814-.148-1.19-.044-.346.096-.52.235-.588.47a.682.682 0 0 0 .08.518c.086.16.165.215.323.228.234.019.547-.145.547-.287 0-.031-.07-.178-.156-.326-.086-.148-.156-.295-.156-.328 0-.089.084-.133.251-.133.22 0 .36.076.528.284.158.196.301.3.47.34.206.05.235.158.13.476-.175.522-.62 1.133-1.429 1.96a8.642 8.642 0 0 0-.596.66c-.224.319-.44.787-.565 1.224-.087.306-.164.384-.41.412-.039.005-.952.003-2.028-.004zM9.741 2.668a10.68 10.68 0 0 1 5.137-.638c2.634.336 4.891 1.67 6.295 3.72.499.728.699 1.143.7 1.451 0 .346-.242.533-.618.477a.98.98 0 0 1-.508-.271 24.729 24.729 0 0 1-.672-.781c-1.308-1.565-1.733-2.01-2.404-2.516a8.626 8.626 0 0 0-1.856-1.044c-1.82-.713-3.944-.805-6.106-.266-.494.123-.48.067.032-.132zM23.807 12.89c-.359.932-1.224 1.631-2.401 1.942-.939.247-1.7.244-2.46-.01a4.319 4.319 0 0 1-1.42-.84c-.22-.205-.294-.23-.294-.097 0 .067.034.124.18.306.231.285.336.488.316.613-.02.123-.104.19-.261.21-.185.022-2.544.004-2.593-.02-.104-.051.012-.31.203-.45.143-.104.275-.158.492-.199.184-.035.247-.075.247-.157 0-.02-.054-.146-.12-.278a2.606 2.606 0 0 1-.23-.723c-.024-.13-.177-.073-.319.117-.247.331-.419.856-.53 1.623-.056.377-.085.46-.18.502-.048.022-.56.028-2.072.026a104.858 104.858 0 0 1-2.07-.014c-.213-.04-.178-.254.08-.48.21-.184.703-.417 1.303-.616.406-.135.454-.173.452-.36-.002-.29-.235-.573-.873-1.06-.671-.511-.864-1.516-.43-2.235.261-.431.73-.782 1.2-.897.803-.196 1.43.033 1.722.628.11.225.182.477.16.563-.022.089-.093.071-.272-.066-.258-.198-.434-.27-.682-.28-.255-.01-.416.036-.552.16-.158.141-.198.244-.199.508 0 .208.007.242.077.392.377.796 1.599.95 2.453.308.278-.21.623-.788.724-1.216.043-.181.05-.267.04-.528-.009-.267-.02-.342-.082-.519-.155-.445-.343-.685-.672-.855-.503-.26-1.133-.33-1.989-.22-.728.092-1.493.059-1.95-.086-.2-.063-.27-.114-.27-.194 0-.067.023-.074.3-.094.428-.031.896-.147 1.651-.408.248-.086.556-.183.684-.215.783-.198 1.609-.252 2.218-.146.26.045.572.2.811.402.695.588 1.368 1.78 1.913 3.39.168.497.323.839.506 1.117.41.627.958 1.01 1.65 1.155.08.017.28.03.444.029a2.19 2.19 0 0 0 1.002-.235c.608-.289.977-.74 1.163-1.423.068-.25.075-.85.013-1.086-.144-.54-.492-.896-1.038-1.059-.239-.071-.773-.091-.942-.035a.877.877 0 0 0-.537.514c-.044.11-.054.186-.055.4-.002.237.005.278.062.4.174.371.505.547 1.031.548.26 0 .3.02.274.14-.03.136-.178.225-.437.265a1.667 1.667 0 0 1-.986-.13c-.308-.143-.595-.477-.72-.835a1.452 1.452 0 0 1-.021-.76 2.4 2.4 0 0 1 .368-.732c.399-.492 1.06-.746 1.775-.68 1.002.092 1.779.639 2.121 1.494.278.693.288 1.796.022 2.486zm-12.888.57c-.265.18-1.02.268-1.913.22-.547-.028-.6-.019-.639.113-.041.145.034.318.234.535.27.295.291.447.077.562-.098.052-.107.052-1.539.058-1.2.004-1.453 0-1.517-.029-.139-.06-.129-.264.021-.434.133-.15.178-.163.652-.178.387-.012.431-.017.462-.06a.189.189 0 0 0 .033-.095c0-.081-.102-.304-.212-.466-.175-.258-.205-.345-.206-.608-.001-.257.024-.317.175-.42.253-.172.937-.1 1.626.173.67.265 1.328.371 2.309.371.509 0 .585.005.597.038.019.047-.055.15-.16.22zm10.194 5.002c.047.04.038.178-.02.29-.123.242-.518.705-1.008 1.183-.842.821-1.599 1.354-2.673 1.884-1.593.786-3.18 1.16-4.87 1.148a19.02 19.02 0 0 1-.675-.012 10.35 10.35 0 0 1-2.395-.479c-2.186-.718-4.043-2.16-5.4-4.19-.375-.563-.517-.895-.538-1.256-.015-.254.011-.37.12-.531a.539.539 0 0 1 .242-.2c.156-.08.178-.084.396-.083.503.004.899.247 1.353.83.086.11.326.449.535.752.43.628.756 1.068 1.046 1.416.255.306.72.77.976.975.419.334 1.405.863 2.117 1.134 2.32.883 4.7.8 7.069-.247 1.22-.54 2.408-1.364 3.27-2.27.295-.31.4-.39.455-.344z" }) + ] + } + ); +}); + +exports.default = SiApachekylin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.d.ts new file mode 100644 index 000000000..07e749b6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F09D13"; +declare const SiApachekylin: IconType; +export { SiApachekylin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.mjs new file mode 100644 index 000000000..6b09459c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachekylin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F09D13"; +const SiApachekylin = React.forwardRef(function SiApachekylin2({ title = "Apache Kylin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.033 16.459l-.59 1.29h.142l.155-.344h.72l.154.345h.144l-.59-1.291h-.135zm-.243.835l.31-.694.31.694h-.62zm1.154-.515v1.328h.131v-.54a.424.424 0 0 0 .369.192c.277 0 .483-.2.483-.494a.47.47 0 0 0-.483-.493.42.42 0 0 0-.374.2v-.192h-.126zm.49.107c.205 0 .362.153.362.378 0 .227-.157.379-.361.379-.207 0-.362-.152-.362-.379 0-.224.155-.378.362-.378zm1.487.864v-.602c0-.25-.142-.376-.392-.376a.616.616 0 0 0-.395.13l.059.099a.494.494 0 0 1 .323-.115c.18 0 .274.09.274.257v.059h-.308c-.278 0-.374.125-.374.275 0 .167.135.282.354.282.16 0 .275-.061.334-.16v.15h.125zm-.13-.292c-.052.128-.161.198-.309.198-.154 0-.245-.07-.245-.183 0-.1.06-.173.25-.173h.303v.158zm.525-.193c0 .228.155.378.367.378a.328.328 0 0 0 .282-.142l.098.066c-.077.125-.216.192-.38.192-.29 0-.5-.205-.5-.494 0-.29.21-.493.5-.493.164 0 .303.065.38.192l-.098.066a.33.33 0 0 0-.282-.144c-.212 0-.367.152-.367.379zm1.12-.884v.568c.072-.112.199-.177.363-.177.236 0 .398.137.398.415v.563h-.13v-.55c0-.205-.108-.31-.292-.31-.208 0-.34.13-.34.35v.51h-.13v-1.37h.13zm1.968.884c0-.292-.198-.493-.47-.493-.274 0-.475.205-.475.493 0 .287.207.494.51.494a.477.477 0 0 0 .374-.159l-.074-.085a.382.382 0 0 1-.297.128c-.212 0-.367-.135-.382-.338h.812l.002-.04zm-.814-.058a.337.337 0 0 1 .343-.322c.19 0 .329.132.345.322h-.688zm1.728-.748v.78l.758-.78h.157l-.559.584.598.707h-.162l-.528-.607-.264.267v.34h-.136v-1.291h.136zm1.292 1.383l.042-.094-.433-.969h.136l.365.825.365-.825h.13l-.486 1.087c-.08.19-.184.25-.322.25a.332.332 0 0 1-.236-.088l.06-.098a.243.243 0 0 0 .178.074c.086 0 .145-.04.2-.162zm.92-1.461v1.369h-.131v-1.37h.13zm.365.398h.13v.97h-.13v-.97zm.066-.212a.095.095 0 0 1-.095-.094c0-.05.042-.092.095-.092a.093.093 0 1 1 0 .186zm.556.212v.18c.07-.119.2-.187.369-.187.236 0 .398.137.398.415v.562h-.131v-.55c0-.204-.107-.309-.291-.309-.209 0-.34.13-.34.35v.51h-.13v-.97h.125zM2.086 15.41C.264 15.4.124 15.395.063 15.356c-.084-.055-.084-.137-.002-.302.223-.448.78-.76 1.676-.943.575-.116.917-.252 1.23-.487.374-.281.418-.538.12-.69a2.52 2.52 0 0 1-.868-.786c-.294-.447-.492-1.162-.492-1.778 0-.321.168-.938.36-1.323.282-.565.68-.963 1.236-1.235a3.043 3.043 0 0 1 1.25-.298c.085 0 .142-.014.178-.044.05-.04.052-.051.026-.13-.04-.119-.206-.266-.373-.328-.156-.058-.332-.085-.807-.122-.18-.013-.38-.04-.444-.06a.788.788 0 0 1-.411-.28c-.057-.085-.067-.126-.067-.259 0-.14.011-.179.098-.338.092-.168.13-.267.2-.522.023-.086.037-.102.09-.102.033 0 .1.031.148.07.292.23 1.183.53 1.571.53.246 0 .361-.035.453-.14.064-.073.071-.095.058-.181a1.036 1.036 0 0 0-.268-.502c-.14-.14-.426-.285-.694-.355a1.921 1.921 0 0 0-.504-.054c-.345-.004-.373.004-.563.163-.158.132-.21.12-.386-.089-.441-.522-.646-1.065-.518-1.37.041-.1.095-.121.467-.184.163-.027.498-.091.744-.143.965-.202 1.498-.268 2.164-.267.56.001.585-.006.736-.231.199-.297.271-.585.272-1.088 0-.406.018-.455.162-.455.113 0 .276.08.357.176.16.189.221.439.249 1.012.017.351.035.509.08.686.094.364.146.445.543.837.493.488.64.722.731 1.16.073.352.032.768-.107 1.085-.171.393-.579.845-1.033 1.147-.351.234-.757.427-2.302 1.097-.297.128-.61.27-.696.312-.559.282-1.082.816-1.283 1.31-.058.14-.07.21-.08.443-.016.43.076.72.34 1.07.181.242.53.508.791.606.323.121.776.127 1.154.016.37-.108.797-.361.747-.442-.026-.042-.08-.031-.245.048-.627.299-1.316.344-1.71.112a2.043 2.043 0 0 1-.55-.551c-.228-.386-.3-.932-.173-1.303a1.14 1.14 0 0 1 .313-.468c.24-.233.993-.618 2.46-1.258.868-.38 1.04-.464 1.342-.666a3.719 3.719 0 0 0 1.67-3.135c0-.148.01-.27.021-.27.028 0 .19.216.313.416.627 1.026.843 2.398.54 3.443-.284.978-.948 1.741-1.77 2.034a2.307 2.307 0 0 1-.88.14 2.57 2.57 0 0 1-.852-.13c-.467-.135-.814-.148-1.19-.044-.346.096-.52.235-.588.47a.682.682 0 0 0 .08.518c.086.16.165.215.323.228.234.019.547-.145.547-.287 0-.031-.07-.178-.156-.326-.086-.148-.156-.295-.156-.328 0-.089.084-.133.251-.133.22 0 .36.076.528.284.158.196.301.3.47.34.206.05.235.158.13.476-.175.522-.62 1.133-1.429 1.96a8.642 8.642 0 0 0-.596.66c-.224.319-.44.787-.565 1.224-.087.306-.164.384-.41.412-.039.005-.952.003-2.028-.004zM9.741 2.668a10.68 10.68 0 0 1 5.137-.638c2.634.336 4.891 1.67 6.295 3.72.499.728.699 1.143.7 1.451 0 .346-.242.533-.618.477a.98.98 0 0 1-.508-.271 24.729 24.729 0 0 1-.672-.781c-1.308-1.565-1.733-2.01-2.404-2.516a8.626 8.626 0 0 0-1.856-1.044c-1.82-.713-3.944-.805-6.106-.266-.494.123-.48.067.032-.132zM23.807 12.89c-.359.932-1.224 1.631-2.401 1.942-.939.247-1.7.244-2.46-.01a4.319 4.319 0 0 1-1.42-.84c-.22-.205-.294-.23-.294-.097 0 .067.034.124.18.306.231.285.336.488.316.613-.02.123-.104.19-.261.21-.185.022-2.544.004-2.593-.02-.104-.051.012-.31.203-.45.143-.104.275-.158.492-.199.184-.035.247-.075.247-.157 0-.02-.054-.146-.12-.278a2.606 2.606 0 0 1-.23-.723c-.024-.13-.177-.073-.319.117-.247.331-.419.856-.53 1.623-.056.377-.085.46-.18.502-.048.022-.56.028-2.072.026a104.858 104.858 0 0 1-2.07-.014c-.213-.04-.178-.254.08-.48.21-.184.703-.417 1.303-.616.406-.135.454-.173.452-.36-.002-.29-.235-.573-.873-1.06-.671-.511-.864-1.516-.43-2.235.261-.431.73-.782 1.2-.897.803-.196 1.43.033 1.722.628.11.225.182.477.16.563-.022.089-.093.071-.272-.066-.258-.198-.434-.27-.682-.28-.255-.01-.416.036-.552.16-.158.141-.198.244-.199.508 0 .208.007.242.077.392.377.796 1.599.95 2.453.308.278-.21.623-.788.724-1.216.043-.181.05-.267.04-.528-.009-.267-.02-.342-.082-.519-.155-.445-.343-.685-.672-.855-.503-.26-1.133-.33-1.989-.22-.728.092-1.493.059-1.95-.086-.2-.063-.27-.114-.27-.194 0-.067.023-.074.3-.094.428-.031.896-.147 1.651-.408.248-.086.556-.183.684-.215.783-.198 1.609-.252 2.218-.146.26.045.572.2.811.402.695.588 1.368 1.78 1.913 3.39.168.497.323.839.506 1.117.41.627.958 1.01 1.65 1.155.08.017.28.03.444.029a2.19 2.19 0 0 0 1.002-.235c.608-.289.977-.74 1.163-1.423.068-.25.075-.85.013-1.086-.144-.54-.492-.896-1.038-1.059-.239-.071-.773-.091-.942-.035a.877.877 0 0 0-.537.514c-.044.11-.054.186-.055.4-.002.237.005.278.062.4.174.371.505.547 1.031.548.26 0 .3.02.274.14-.03.136-.178.225-.437.265a1.667 1.667 0 0 1-.986-.13c-.308-.143-.595-.477-.72-.835a1.452 1.452 0 0 1-.021-.76 2.4 2.4 0 0 1 .368-.732c.399-.492 1.06-.746 1.775-.68 1.002.092 1.779.639 2.121 1.494.278.693.288 1.796.022 2.486zm-12.888.57c-.265.18-1.02.268-1.913.22-.547-.028-.6-.019-.639.113-.041.145.034.318.234.535.27.295.291.447.077.562-.098.052-.107.052-1.539.058-1.2.004-1.453 0-1.517-.029-.139-.06-.129-.264.021-.434.133-.15.178-.163.652-.178.387-.012.431-.017.462-.06a.189.189 0 0 0 .033-.095c0-.081-.102-.304-.212-.466-.175-.258-.205-.345-.206-.608-.001-.257.024-.317.175-.42.253-.172.937-.1 1.626.173.67.265 1.328.371 2.309.371.509 0 .585.005.597.038.019.047-.055.15-.16.22zm10.194 5.002c.047.04.038.178-.02.29-.123.242-.518.705-1.008 1.183-.842.821-1.599 1.354-2.673 1.884-1.593.786-3.18 1.16-4.87 1.148a19.02 19.02 0 0 1-.675-.012 10.35 10.35 0 0 1-2.395-.479c-2.186-.718-4.043-2.16-5.4-4.19-.375-.563-.517-.895-.538-1.256-.015-.254.011-.37.12-.531a.539.539 0 0 1 .242-.2c.156-.08.178-.084.396-.083.503.004.899.247 1.353.83.086.11.326.449.535.752.43.628.756 1.068 1.046 1.416.255.306.72.77.976.975.419.334 1.405.863 2.117 1.134 2.32.883 4.7.8 7.069-.247 1.22-.54 2.408-1.364 3.27-2.27.295-.31.4-.39.455-.344z" }) + ] + } + ); +}); + +export { SiApachekylin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.cjs new file mode 100644 index 000000000..637064215 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#019B8F"; +const SiApachelucene = React__namespace.forwardRef(function SiApachelucene2({ title = "Apache Lucene", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.476 9.415a.747.747 0 0 0-.753.577q-.07.264.051.421.123.155.401.155a.8.8 0 0 0 .366-.083l.058-.23a1 1 0 0 1-.178.08.6.6 0 0 1-.17.025q-.152 0-.215-.097-.062-.1-.017-.272a.5.5 0 0 1 .158-.27.4.4 0 0 1 .268-.097q.085-.001.156.023a.5.5 0 0 1 .137.08l.059-.228a.6.6 0 0 0-.149-.063.7.7 0 0 0-.172-.021m-4.468.021-.702 1.11h.29l.122-.201h.448l.018.201h.287l-.121-1.11Zm1.19 0-.291 1.11h.287l.1-.385h.19a.6.6 0 0 0 .35-.094.45.45 0 0 0 .183-.27q.046-.174-.043-.267-.09-.094-.3-.094zm1.544 0-.701 1.11h.289l.123-.201h.448l.017.201h.288l-.122-1.11zm2.598 0-.29 1.11h.286l.123-.471h.423l-.122.471h.286l.291-1.11h-.287l-.112.422h-.422l.111-.422zm1.564 0-.29 1.11h.79l.057-.217h-.502l.066-.254h.457l.057-.217h-.46l.056-.207h.486l.057-.215Zm-5.473.207h.158q.083-.001.117.04.036.04.016.115a.2.2 0 0 1-.076.115.23.23 0 0 1-.14.04H8.35zm-1.32.053.037.442h-.305Zm2.735 0 .037.442h-.305Zm1.751 1.352c-.964 0-1.91.782-2.11 1.745-.202.964.415 1.746 1.38 1.746.828 0 1.643-.58 1.983-1.355h-.852c-.216.32-.585.544-.962.544-.516 0-.847-.418-.739-.935.108-.516.614-.936 1.13-.936.4 0 .69.252.749.606h.839c.014-.806-.566-1.415-1.418-1.415m2.219.053-.708 3.385h2.614l.146-.704H14.08l.125-.596h1.761l.149-.71h-1.762l.141-.673h1.789l.146-.702zm3.35 0-.71 3.385h.804l.48-2.285.87 2.285h1.021l.708-3.385h-.804l-.469 2.245-.78-2.245zm3.93 0-.708 3.385h2.515l.147-.704h-1.689l.123-.596h1.691l.149-.71h-1.691l.14-.673h1.691l.147-.702ZM0 11.142l.487.723H2.45l.016-.072.135-.65zm3.429 0-.135.65-.143.68-.416 1.988-.004.026h2.363l.004-.026.137-.65.008-.034H3.704l.551-2.634h-.224Zm2.71 0-.359 1.726q-.067.323-.066.582h.002l-.004.01q0 .096.01.184.037.326.199.533a.95.95 0 0 0 .438.309q.275.1.65.1.372-.001.689-.098.316-.098.565-.305a1.8 1.8 0 0 0 .426-.528q.177-.32.271-.77l.364-1.743h-.825l-.363 1.743q-.106.503-.333.747-.224.244-.639.244t-.541-.244q-.127-.243-.022-.747l.366-1.743zm-5.254 1.42 1.099 1.636.34-1.622.002-.013zm22.362 1.576v.064h.112v.272h.088v-.272h.111v-.064zm.38 0v.336h.082v-.246l.076.182h.057l.076-.182v.246H24v-.336h-.11l-.078.18-.076-.18z" }) + ] + } + ); +}); + +exports.default = SiApachelucene; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.d.ts new file mode 100644 index 000000000..dd9dc7972 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#019B8F"; +declare const SiApachelucene: IconType; +export { SiApachelucene as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.mjs new file mode 100644 index 000000000..c9f97973f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachelucene.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#019B8F"; +const SiApachelucene = React.forwardRef(function SiApachelucene2({ title = "Apache Lucene", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.476 9.415a.747.747 0 0 0-.753.577q-.07.264.051.421.123.155.401.155a.8.8 0 0 0 .366-.083l.058-.23a1 1 0 0 1-.178.08.6.6 0 0 1-.17.025q-.152 0-.215-.097-.062-.1-.017-.272a.5.5 0 0 1 .158-.27.4.4 0 0 1 .268-.097q.085-.001.156.023a.5.5 0 0 1 .137.08l.059-.228a.6.6 0 0 0-.149-.063.7.7 0 0 0-.172-.021m-4.468.021-.702 1.11h.29l.122-.201h.448l.018.201h.287l-.121-1.11Zm1.19 0-.291 1.11h.287l.1-.385h.19a.6.6 0 0 0 .35-.094.45.45 0 0 0 .183-.27q.046-.174-.043-.267-.09-.094-.3-.094zm1.544 0-.701 1.11h.289l.123-.201h.448l.017.201h.288l-.122-1.11zm2.598 0-.29 1.11h.286l.123-.471h.423l-.122.471h.286l.291-1.11h-.287l-.112.422h-.422l.111-.422zm1.564 0-.29 1.11h.79l.057-.217h-.502l.066-.254h.457l.057-.217h-.46l.056-.207h.486l.057-.215Zm-5.473.207h.158q.083-.001.117.04.036.04.016.115a.2.2 0 0 1-.076.115.23.23 0 0 1-.14.04H8.35zm-1.32.053.037.442h-.305Zm2.735 0 .037.442h-.305Zm1.751 1.352c-.964 0-1.91.782-2.11 1.745-.202.964.415 1.746 1.38 1.746.828 0 1.643-.58 1.983-1.355h-.852c-.216.32-.585.544-.962.544-.516 0-.847-.418-.739-.935.108-.516.614-.936 1.13-.936.4 0 .69.252.749.606h.839c.014-.806-.566-1.415-1.418-1.415m2.219.053-.708 3.385h2.614l.146-.704H14.08l.125-.596h1.761l.149-.71h-1.762l.141-.673h1.789l.146-.702zm3.35 0-.71 3.385h.804l.48-2.285.87 2.285h1.021l.708-3.385h-.804l-.469 2.245-.78-2.245zm3.93 0-.708 3.385h2.515l.147-.704h-1.689l.123-.596h1.691l.149-.71h-1.691l.14-.673h1.691l.147-.702ZM0 11.142l.487.723H2.45l.016-.072.135-.65zm3.429 0-.135.65-.143.68-.416 1.988-.004.026h2.363l.004-.026.137-.65.008-.034H3.704l.551-2.634h-.224Zm2.71 0-.359 1.726q-.067.323-.066.582h.002l-.004.01q0 .096.01.184.037.326.199.533a.95.95 0 0 0 .438.309q.275.1.65.1.372-.001.689-.098.316-.098.565-.305a1.8 1.8 0 0 0 .426-.528q.177-.32.271-.77l.364-1.743h-.825l-.363 1.743q-.106.503-.333.747-.224.244-.639.244t-.541-.244q-.127-.243-.022-.747l.366-1.743zm-5.254 1.42 1.099 1.636.34-1.622.002-.013zm22.362 1.576v.064h.112v.272h.088v-.272h.111v-.064zm.38 0v.336h.082v-.246l.076.182h.057l.076-.182v.246H24v-.336h-.11l-.078.18-.076-.18z" }) + ] + } + ); +}); + +export { SiApachelucene as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.cjs new file mode 100644 index 000000000..8e983a512 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C71A36"; +const SiApachemaven = React__namespace.forwardRef(function SiApachemaven2({ title = "Apache Maven", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.237.001c-.312-.013-.665.072-.828.457-.158.374-.283 1.188-.34 2.276l1.223.591c-.02-.737.007-1.43.076-2.066-.026.299-.056.96.006 2.039.019.342.049.725.088 1.15.002.024.002.047.007.069a45.485 45.485 0 0 0 .309 2.412c.057.368.126.752.195 1.16l-.01.01c.014.01.015.018.014.023l.03.16c.03.162.06.328.093.494l.108.553.056.289a61.72 61.72 0 0 0 .457 2.068c.09.382.186.78.287 1.186.098.386.199.783.309 1.193.096.362.199.735.303 1.117.003.018.012.036.015.055a145.826 145.826 0 0 0 .34 1.185l.049.174c.078.261.158.533.242.805a4.2 4.2 0 0 1-.293-.135l-.19-.654c-.02-.077-.042-.148-.062-.225l-.002-.004-.004-.002c-.087-.3-.17-.607-.257-.916-.023-.087-.044-.173-.069-.263l-.314-1.178c-.1-.381-.194-.765-.29-1.154-.094-.39-.185-.78-.277-1.172-.093-.401-.181-.8-.265-1.203-.085-.396-.161-.798-.24-1.193a50.315 50.315 0 0 1-.211-1.17c-.004-.013-.006-.03-.01-.041l.004-.002c-.057-.386-.116-.77-.174-1.15a60.905 60.905 0 0 1-.154-1.204 27.447 27.447 0 0 1-.172-2.41l-1.22-.59c-.004.074-.01.15-.013.23-.012.294-.02.605-.023.93a45.3 45.3 0 0 0 .006 1.157c.009.37.025.755.045 1.148.02.336.042.675.07 1.022l.002.039.006.004c.003.023.007.05.006.076.033.368.064.739.107 1.115a34.493 34.493 0 0 0 .303 2.125c.01.064.024.131.035.195a23.418 23.418 0 0 0 .547 2.32c.07.237.14.464.21.68.063.182.13.365.194.545.155.422.327.832.512 1.232l.006.004a.318.318 0 0 0 .02.05c.225.485.475.95.755 1.395.01.013.02.033.03.047-.455-.183-1.259-.098-1.253-.097.83.288 1.557.64 2.016 1.175-.183.2-.523.352-.953.477.594.064.924-.039 1.045-.092-.31.26-.483.732-.635 1.24.35-.57.696-.949 1.033-1.094.078.258.162.524.244.788A147.532 147.532 0 0 0 5.157 24a.56.56 0 0 0 .43-.312c.13-.282.83-1.775 1.908-3.875.413 1.303.88 2.679 1.386 4.109a.494.494 0 0 0 .076-.465 103.735 103.735 0 0 1-1.308-3.945c.154-.299.316-.612.484-.932.125.04.255.094.389.155.203.186.352.491.482.84a1.515 1.515 0 0 0-.334-1.098c1.335.258 2.547.09 3.287-.81a3.97 3.97 0 0 0 .192-.258c-.325.304-.682.404-1.313.273.996-.281 1.523-.617 2.035-1.22.12-.145.244-.303.371-.48-.943.722-1.927.822-2.9.493l-.045-.018c.914.02 2.203-.474 3.092-1.189.41-.33.796-.73 1.17-1.21.28-.359.55-.76.82-1.216.234-.393.468-.824.7-1.293a2.83 2.83 0 0 1-.74.137l-.144.008c-.048.002-.093 0-.146.002.885-.198 1.5-.74 1.994-1.447-.24.117-.628.262-1.07.297-.058.006-.12.006-.182.006-.013-.002-.028 0-.047-.002.306-.078.574-.178.81-.309a3.363 3.363 0 0 0 .358-.236c.044-.037.088-.07.13-.106.099-.086.193-.18.28-.287.028-.034.056-.063.08-.098.036-.05.073-.098.104-.146a8.388 8.388 0 0 0 .51-.828c.015-.031.032-.057.046-.088.04-.084.08-.16.11-.227.042-.099.074-.179.092-.238a.515.515 0 0 1-.108.051c-.273.112-.727.187-1.086.201-.004 0-.008 0-.013.004h-.067c.72-.214 1.067-.45 1.422-.818a13.883 13.883 0 0 0 1.154-1.428c.264-.37.505-.738.692-1.072a6.5 6.5 0 0 0 .298-.592c.066-.157.122-.305.172-.45-.466.01-.986.011-1.48 0 .495.01 1.015.007 1.484-.005.5-1.485.063-2.262.063-2.262s-.526-1.212-1.4-.851c-.426.175-1.172.73-2.083 1.56l.514 1.45a17.561 17.561 0 0 1 1.703-1.602c-.257.22-.807.726-1.615 1.644-.256.29-.537.624-.844.997-.017.02-.035.038-.047.06a51.435 51.435 0 0 0-1.666 2.187c-.248.34-.498.704-.765 1.088h-.016c.002.02-.004.028-.01.032l-.101.152c-.104.155-.213.31-.318.47l-.352.534c-.061.09-.124.181-.186.277-.184.282-.367.573-.558.873a97.351 97.351 0 0 0-1.428 2.338 96.866 96.866 0 0 0-1.341 2.343c-.012.017-.02.04-.034.057a197.256 197.256 0 0 0-.668 1.223l-.097.181c-.17.318-.346.642-.52.979 0 .004-.005.008-.006.013-.026.048-.05.093-.072.141-.117.222-.218.424-.45.87a1.352 1.352 0 0 0-.233-.182l.345-.65c.047-.089.096-.177.143-.27l.04-.077.546-1.001.13-.233v-.006l-.001-.006c.169-.31.345-.62.52-.94.051-.087.102-.173.153-.265.224-.395.454-.794.684-1.197a91.685 91.685 0 0 1 2.135-3.504c.247-.386.503-.77.754-1.152.092-.138.182-.272.279-.41a72.9 72.9 0 0 1 .48-.701c.007-.012.019-.024.026-.037h.006c.26-.356.517-.713.773-1.065.278-.373.554-.735.83-1.09a31.075 31.075 0 0 1 1.777-2.075l-.515-1.446c-.06.057-.126.116-.192.178a32.37 32.37 0 0 0-.758.729c-.295.294-.597.606-.912.935a46.032 46.032 0 0 0-1.632 1.838l-.03.033.002.008c-.017.02-.033.044-.054.064-.266.323-.538.649-.801.985a39.105 39.105 0 0 0-1.445 1.95c-.043.06-.085.126-.127.186a26.458 26.458 0 0 0-1.403 2.303c-.13.247-.256.485-.37.715-.096.195-.187.395-.278.591-.21.463-.398.93-.566 1.399l.002.006a.36.36 0 0 0-.026.058c-.108.303-.203.608-.29.914-.14.174-.302.325-.483.46a3.505 3.505 0 0 0-.131-.153 5.148 5.148 0 0 0 .824-2.211 6.4 6.4 0 0 0-.016-1.488c-.046-.4-.126-.82-.238-1.274-.097-.393-.217-.81-.363-1.248-.091.185-.22.367-.379.545l-.086.094c-.029.032-.06.06-.092.094.434-.674.486-1.397.358-2.148a2.722 2.722 0 0 1-.49.85c-.033.038-.072.077-.11.116-.01.007-.019.018-.033.028.144-.24.25-.467.318-.698a1.29 1.29 0 0 0 .04-.146 2.85 2.85 0 0 0 .038-.225l.018-.146a2.11 2.11 0 0 0-.002-.354c-.003-.04-.004-.076-.01-.113-.01-.055-.016-.105-.027-.154a7.416 7.416 0 0 0-.193-.84c-.01-.028-.015-.056-.026-.084-.027-.079-.048-.149-.072-.209a2.1 2.1 0 0 0-.09-.209.455.455 0 0 1-.035.1c-.102.24-.34.57-.557.8-.003.003-.007.005-.007.01l-.04.043c.318-.58.39-.946.385-1.398a12.274 12.274 0 0 0-.16-1.615 10.68 10.68 0 0 0-.232-1.104 5.853 5.853 0 0 0-.18-.558 6.337 6.337 0 0 0-.172-.391 26.18 26.18 0 0 0 .002-.004C5.576.341 4.82.124 4.82.124s-.27-.11-.582-.123zm3.38 15.783l.032.082v.002c-.06.033-.116.067-.178.097-.012.004-.024.012-.039.018a2.41 2.41 0 0 0 .186-.2zm-.603 1.626c.13.136.25.242.354.32l.07.227a1.866 1.866 0 0 0-.246.053l-.03-.098c-.024-.084-.048-.17-.076-.257l-.021-.073zm.26.875a2.34 2.34 0 0 1 .271.01l.07.229a.778.778 0 0 1 .247-.004l-.326.627a127.643 127.643 0 0 1-.262-.862z" }) + ] + } + ); +}); + +exports.default = SiApachemaven; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.d.ts new file mode 100644 index 000000000..e11583ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C71A36"; +declare const SiApachemaven: IconType; +export { SiApachemaven as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.mjs new file mode 100644 index 000000000..49b371619 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachemaven.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C71A36"; +const SiApachemaven = React.forwardRef(function SiApachemaven2({ title = "Apache Maven", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.237.001c-.312-.013-.665.072-.828.457-.158.374-.283 1.188-.34 2.276l1.223.591c-.02-.737.007-1.43.076-2.066-.026.299-.056.96.006 2.039.019.342.049.725.088 1.15.002.024.002.047.007.069a45.485 45.485 0 0 0 .309 2.412c.057.368.126.752.195 1.16l-.01.01c.014.01.015.018.014.023l.03.16c.03.162.06.328.093.494l.108.553.056.289a61.72 61.72 0 0 0 .457 2.068c.09.382.186.78.287 1.186.098.386.199.783.309 1.193.096.362.199.735.303 1.117.003.018.012.036.015.055a145.826 145.826 0 0 0 .34 1.185l.049.174c.078.261.158.533.242.805a4.2 4.2 0 0 1-.293-.135l-.19-.654c-.02-.077-.042-.148-.062-.225l-.002-.004-.004-.002c-.087-.3-.17-.607-.257-.916-.023-.087-.044-.173-.069-.263l-.314-1.178c-.1-.381-.194-.765-.29-1.154-.094-.39-.185-.78-.277-1.172-.093-.401-.181-.8-.265-1.203-.085-.396-.161-.798-.24-1.193a50.315 50.315 0 0 1-.211-1.17c-.004-.013-.006-.03-.01-.041l.004-.002c-.057-.386-.116-.77-.174-1.15a60.905 60.905 0 0 1-.154-1.204 27.447 27.447 0 0 1-.172-2.41l-1.22-.59c-.004.074-.01.15-.013.23-.012.294-.02.605-.023.93a45.3 45.3 0 0 0 .006 1.157c.009.37.025.755.045 1.148.02.336.042.675.07 1.022l.002.039.006.004c.003.023.007.05.006.076.033.368.064.739.107 1.115a34.493 34.493 0 0 0 .303 2.125c.01.064.024.131.035.195a23.418 23.418 0 0 0 .547 2.32c.07.237.14.464.21.68.063.182.13.365.194.545.155.422.327.832.512 1.232l.006.004a.318.318 0 0 0 .02.05c.225.485.475.95.755 1.395.01.013.02.033.03.047-.455-.183-1.259-.098-1.253-.097.83.288 1.557.64 2.016 1.175-.183.2-.523.352-.953.477.594.064.924-.039 1.045-.092-.31.26-.483.732-.635 1.24.35-.57.696-.949 1.033-1.094.078.258.162.524.244.788A147.532 147.532 0 0 0 5.157 24a.56.56 0 0 0 .43-.312c.13-.282.83-1.775 1.908-3.875.413 1.303.88 2.679 1.386 4.109a.494.494 0 0 0 .076-.465 103.735 103.735 0 0 1-1.308-3.945c.154-.299.316-.612.484-.932.125.04.255.094.389.155.203.186.352.491.482.84a1.515 1.515 0 0 0-.334-1.098c1.335.258 2.547.09 3.287-.81a3.97 3.97 0 0 0 .192-.258c-.325.304-.682.404-1.313.273.996-.281 1.523-.617 2.035-1.22.12-.145.244-.303.371-.48-.943.722-1.927.822-2.9.493l-.045-.018c.914.02 2.203-.474 3.092-1.189.41-.33.796-.73 1.17-1.21.28-.359.55-.76.82-1.216.234-.393.468-.824.7-1.293a2.83 2.83 0 0 1-.74.137l-.144.008c-.048.002-.093 0-.146.002.885-.198 1.5-.74 1.994-1.447-.24.117-.628.262-1.07.297-.058.006-.12.006-.182.006-.013-.002-.028 0-.047-.002.306-.078.574-.178.81-.309a3.363 3.363 0 0 0 .358-.236c.044-.037.088-.07.13-.106.099-.086.193-.18.28-.287.028-.034.056-.063.08-.098.036-.05.073-.098.104-.146a8.388 8.388 0 0 0 .51-.828c.015-.031.032-.057.046-.088.04-.084.08-.16.11-.227.042-.099.074-.179.092-.238a.515.515 0 0 1-.108.051c-.273.112-.727.187-1.086.201-.004 0-.008 0-.013.004h-.067c.72-.214 1.067-.45 1.422-.818a13.883 13.883 0 0 0 1.154-1.428c.264-.37.505-.738.692-1.072a6.5 6.5 0 0 0 .298-.592c.066-.157.122-.305.172-.45-.466.01-.986.011-1.48 0 .495.01 1.015.007 1.484-.005.5-1.485.063-2.262.063-2.262s-.526-1.212-1.4-.851c-.426.175-1.172.73-2.083 1.56l.514 1.45a17.561 17.561 0 0 1 1.703-1.602c-.257.22-.807.726-1.615 1.644-.256.29-.537.624-.844.997-.017.02-.035.038-.047.06a51.435 51.435 0 0 0-1.666 2.187c-.248.34-.498.704-.765 1.088h-.016c.002.02-.004.028-.01.032l-.101.152c-.104.155-.213.31-.318.47l-.352.534c-.061.09-.124.181-.186.277-.184.282-.367.573-.558.873a97.351 97.351 0 0 0-1.428 2.338 96.866 96.866 0 0 0-1.341 2.343c-.012.017-.02.04-.034.057a197.256 197.256 0 0 0-.668 1.223l-.097.181c-.17.318-.346.642-.52.979 0 .004-.005.008-.006.013-.026.048-.05.093-.072.141-.117.222-.218.424-.45.87a1.352 1.352 0 0 0-.233-.182l.345-.65c.047-.089.096-.177.143-.27l.04-.077.546-1.001.13-.233v-.006l-.001-.006c.169-.31.345-.62.52-.94.051-.087.102-.173.153-.265.224-.395.454-.794.684-1.197a91.685 91.685 0 0 1 2.135-3.504c.247-.386.503-.77.754-1.152.092-.138.182-.272.279-.41a72.9 72.9 0 0 1 .48-.701c.007-.012.019-.024.026-.037h.006c.26-.356.517-.713.773-1.065.278-.373.554-.735.83-1.09a31.075 31.075 0 0 1 1.777-2.075l-.515-1.446c-.06.057-.126.116-.192.178a32.37 32.37 0 0 0-.758.729c-.295.294-.597.606-.912.935a46.032 46.032 0 0 0-1.632 1.838l-.03.033.002.008c-.017.02-.033.044-.054.064-.266.323-.538.649-.801.985a39.105 39.105 0 0 0-1.445 1.95c-.043.06-.085.126-.127.186a26.458 26.458 0 0 0-1.403 2.303c-.13.247-.256.485-.37.715-.096.195-.187.395-.278.591-.21.463-.398.93-.566 1.399l.002.006a.36.36 0 0 0-.026.058c-.108.303-.203.608-.29.914-.14.174-.302.325-.483.46a3.505 3.505 0 0 0-.131-.153 5.148 5.148 0 0 0 .824-2.211 6.4 6.4 0 0 0-.016-1.488c-.046-.4-.126-.82-.238-1.274-.097-.393-.217-.81-.363-1.248-.091.185-.22.367-.379.545l-.086.094c-.029.032-.06.06-.092.094.434-.674.486-1.397.358-2.148a2.722 2.722 0 0 1-.49.85c-.033.038-.072.077-.11.116-.01.007-.019.018-.033.028.144-.24.25-.467.318-.698a1.29 1.29 0 0 0 .04-.146 2.85 2.85 0 0 0 .038-.225l.018-.146a2.11 2.11 0 0 0-.002-.354c-.003-.04-.004-.076-.01-.113-.01-.055-.016-.105-.027-.154a7.416 7.416 0 0 0-.193-.84c-.01-.028-.015-.056-.026-.084-.027-.079-.048-.149-.072-.209a2.1 2.1 0 0 0-.09-.209.455.455 0 0 1-.035.1c-.102.24-.34.57-.557.8-.003.003-.007.005-.007.01l-.04.043c.318-.58.39-.946.385-1.398a12.274 12.274 0 0 0-.16-1.615 10.68 10.68 0 0 0-.232-1.104 5.853 5.853 0 0 0-.18-.558 6.337 6.337 0 0 0-.172-.391 26.18 26.18 0 0 0 .002-.004C5.576.341 4.82.124 4.82.124s-.27-.11-.582-.123zm3.38 15.783l.032.082v.002c-.06.033-.116.067-.178.097-.012.004-.024.012-.039.018a2.41 2.41 0 0 0 .186-.2zm-.603 1.626c.13.136.25.242.354.32l.07.227a1.866 1.866 0 0 0-.246.053l-.03-.098c-.024-.084-.048-.17-.076-.257l-.021-.073zm.26.875a2.34 2.34 0 0 1 .271.01l.07.229a.778.778 0 0 1 .247-.004l-.326.627a127.643 127.643 0 0 1-.262-.862z" }) + ] + } + ); +}); + +export { SiApachemaven as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.cjs new file mode 100644 index 000000000..27536cc0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1B6AC6"; +const SiApachenetbeanside = React__namespace.forwardRef(function SiApachenetbeanside2({ title = "Apache NetBeans IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.8575 6.1211c-.0092-.0866-.0486-.1598-.121-.2104C22.7381 5.9098 12.1194.032 12.1185.03a.2487.2487 0 00-.2372 0c-.003 0-10.6129 5.8784-10.6145 5.8797-.0744.0497-.1156.1241-.1243.2124v11.8365c.0149.0565.0178.1253.071.161.0183.0788 10.6175 5.7985 10.6694 5.8507a.2456.2456 0 00.2343 0c.0025-.0017 10.6135-5.7957 10.6147-5.7984.0748-.0489.115-.1262.1256-.2133V6.1211zm-17.633 9.3292L1.6323 17.534V6.5401l3.5922 2.011zm13.551-6.8993l3.5922-2.0109v10.9938l-3.5922-2.0836zm-.7407-.1455c-2.0115 1.1316-4.0232 2.263-6.0348 3.3943a125706.698 125706.698 0 01-6.0349-3.3943L12 4.9349zM5.7143 15.4473V8.8265l6.0408 3.398v6.5444l-6.0408-3.3216zm6.5305 3.3216v-6.5444l6.0409-3.398v6.6208c-2.0135 1.1074-4.0272 2.2145-6.0408 3.3216zM12 .5247l10.1094 5.5984-3.5771 2.003-6.4104-3.6858a.2418.2418 0 00-.2439 0L5.4676 8.126l-3.577-2.003L12 .5248zM5.4728 15.8731l6.2823 3.4547v4.014L1.8868 17.952zm6.772 7.4686v-4.014l6.2824-3.4546 3.586 2.0789z" }) + ] + } + ); +}); + +exports.default = SiApachenetbeanside; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.d.ts new file mode 100644 index 000000000..3e6b149ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1B6AC6"; +declare const SiApachenetbeanside: IconType; +export { SiApachenetbeanside as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.mjs new file mode 100644 index 000000000..64cab6738 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenetbeanside.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1B6AC6"; +const SiApachenetbeanside = React.forwardRef(function SiApachenetbeanside2({ title = "Apache NetBeans IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.8575 6.1211c-.0092-.0866-.0486-.1598-.121-.2104C22.7381 5.9098 12.1194.032 12.1185.03a.2487.2487 0 00-.2372 0c-.003 0-10.6129 5.8784-10.6145 5.8797-.0744.0497-.1156.1241-.1243.2124v11.8365c.0149.0565.0178.1253.071.161.0183.0788 10.6175 5.7985 10.6694 5.8507a.2456.2456 0 00.2343 0c.0025-.0017 10.6135-5.7957 10.6147-5.7984.0748-.0489.115-.1262.1256-.2133V6.1211zm-17.633 9.3292L1.6323 17.534V6.5401l3.5922 2.011zm13.551-6.8993l3.5922-2.0109v10.9938l-3.5922-2.0836zm-.7407-.1455c-2.0115 1.1316-4.0232 2.263-6.0348 3.3943a125706.698 125706.698 0 01-6.0349-3.3943L12 4.9349zM5.7143 15.4473V8.8265l6.0408 3.398v6.5444l-6.0408-3.3216zm6.5305 3.3216v-6.5444l6.0409-3.398v6.6208c-2.0135 1.1074-4.0272 2.2145-6.0408 3.3216zM12 .5247l10.1094 5.5984-3.5771 2.003-6.4104-3.6858a.2418.2418 0 00-.2439 0L5.4676 8.126l-3.577-2.003L12 .5248zM5.4728 15.8731l6.2823 3.4547v4.014L1.8868 17.952zm6.772 7.4686v-4.014l6.2824-3.4546 3.586 2.0789z" }) + ] + } + ); +}); + +export { SiApachenetbeanside as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.cjs new file mode 100644 index 000000000..f0ab90a15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#728E9B"; +const SiApachenifi = React__namespace.forwardRef(function SiApachenifi2({ title = "Apache NiFi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.648 0a.093.093 0 0 0-.084.053A30.71 30.71 0 0 1 8.592 4.73c-2.09 2.728-5.145 6.466-5.145 10.364a8.201 8.201 0 0 0 8.201 8.2v-5.003c0-.106.087-.193.194-.193h2.81v-2.813c0-.106.087-.191.194-.191h5.004c0-3.9-3.056-7.636-5.145-10.364A30.712 30.712 0 0 1 11.732.053.094.094 0 0 0 11.648 0zm-1.632 3.867c.05 0 .08.034.037.112-.11.197-.218.397-.328.593-.396.702-.819 1.389-1.23 2.08-.196-.032-.39-.06-.585-.088.495-.651 1-1.296 1.48-1.959.153-.209.302-.423.454-.634a.24.24 0 0 1 .172-.104zM7.44 7.186c.221.035.444.076.666.119-.073.129-.15.256-.223.383a29.073 29.073 0 0 0-1.625 3.261c-.874 2.123-1.383 4.444-.77 6.707a8.222 8.222 0 0 0 2.217 3.74c.083.083-.02.216-.119.155a7.568 7.568 0 0 1-.93-.686A7.674 7.674 0 0 1 4.1 16.248c-.329-2.156.387-4.246 1.418-6.115a27.44 27.44 0 0 1 1.92-2.947zm7.931 8.435a.193.193 0 0 0-.191.191V18.3h2.677V15.62zm3.299 0V18.3h1.348a7.975 7.975 0 0 0 .515-2.678zm-6.303 3.004a.193.193 0 0 0-.191.193v2.485h2.678v-2.678Zm3.295.484v2.68h2.115a.562.562 0 0 0 .399-.162v-.004a.562.562 0 0 0 .16-.397V19.11zm3.674.182v1.98a7.999 7.999 0 0 0 1.217-1.98zm-6.969 2.824a.193.193 0 0 0-.191.192v1.672a7.997 7.997 0 0 0 2.678-.516v-1.348zm3.48.668V24a8.008 8.008 0 0 0 1.98-1.217z" }) + ] + } + ); +}); + +exports.default = SiApachenifi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.d.ts new file mode 100644 index 000000000..363fd0446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#728E9B"; +declare const SiApachenifi: IconType; +export { SiApachenifi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.mjs new file mode 100644 index 000000000..2b7e4ac68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachenifi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#728E9B"; +const SiApachenifi = React.forwardRef(function SiApachenifi2({ title = "Apache NiFi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.648 0a.093.093 0 0 0-.084.053A30.71 30.71 0 0 1 8.592 4.73c-2.09 2.728-5.145 6.466-5.145 10.364a8.201 8.201 0 0 0 8.201 8.2v-5.003c0-.106.087-.193.194-.193h2.81v-2.813c0-.106.087-.191.194-.191h5.004c0-3.9-3.056-7.636-5.145-10.364A30.712 30.712 0 0 1 11.732.053.094.094 0 0 0 11.648 0zm-1.632 3.867c.05 0 .08.034.037.112-.11.197-.218.397-.328.593-.396.702-.819 1.389-1.23 2.08-.196-.032-.39-.06-.585-.088.495-.651 1-1.296 1.48-1.959.153-.209.302-.423.454-.634a.24.24 0 0 1 .172-.104zM7.44 7.186c.221.035.444.076.666.119-.073.129-.15.256-.223.383a29.073 29.073 0 0 0-1.625 3.261c-.874 2.123-1.383 4.444-.77 6.707a8.222 8.222 0 0 0 2.217 3.74c.083.083-.02.216-.119.155a7.568 7.568 0 0 1-.93-.686A7.674 7.674 0 0 1 4.1 16.248c-.329-2.156.387-4.246 1.418-6.115a27.44 27.44 0 0 1 1.92-2.947zm7.931 8.435a.193.193 0 0 0-.191.191V18.3h2.677V15.62zm3.299 0V18.3h1.348a7.975 7.975 0 0 0 .515-2.678zm-6.303 3.004a.193.193 0 0 0-.191.193v2.485h2.678v-2.678Zm3.295.484v2.68h2.115a.562.562 0 0 0 .399-.162v-.004a.562.562 0 0 0 .16-.397V19.11zm3.674.182v1.98a7.999 7.999 0 0 0 1.217-1.98zm-6.969 2.824a.193.193 0 0 0-.191.192v1.672a7.997 7.997 0 0 0 2.678-.516v-1.348zm3.48.668V24a8.008 8.008 0 0 0 1.98-1.217z" }) + ] + } + ); +}); + +export { SiApachenifi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.cjs new file mode 100644 index 000000000..8bdeccd3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E85CD"; +const SiApacheopenoffice = React__namespace.forwardRef(function SiApacheopenoffice2({ title = "Apache OpenOffice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.371 0 12c0 .843.088 1.667.254 2.462a12.594 12.594 0 013.309-.44c1.836 0 3.579.392 5.152 1.099a12.536 12.536 0 017.303-2.332c1.704 0 3.33.339 4.811.953l.023.01a.186.186 0 01-.083.353l-.267-.02a12.525 12.525 0 00-.895-.032c-4.208 0-7.988 1.546-10.281 4.681l-.11.151a.183.183 0 01-.28.008C6.76 16.847 3.894 16.037.677 15.981 2.32 20.65 6.768 24 11.998 24 18.628 24 24 18.627 24 12c0-6.628-5.373-12-12.001-12zm9.395 7.181c-.042-.004-.114-.016-.16-.022a6.703 6.703 0 00-.405-.051c-2.447-.23-4.725.449-6.21 2.171-.063.064-.118.067-.179.003-1.181-1.34-2.864-1.935-4.795-2.118a7.24 7.24 0 00-2.01.09l-.01.001-.02.002a.125.125 0 01-.075-.223l.035-.02a7.23 7.23 0 014.05-.795c1.054.1 2.035.42 2.9.91a7.279 7.279 0 016.797-.255c.045.025.093.047.14.073a.116.116 0 01.067.11c0 .069-.044.134-.125.124z" }) + ] + } + ); +}); + +exports.default = SiApacheopenoffice; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.d.ts new file mode 100644 index 000000000..879cd9a9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E85CD"; +declare const SiApacheopenoffice: IconType; +export { SiApacheopenoffice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.mjs new file mode 100644 index 000000000..6f40df8af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheopenoffice.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E85CD"; +const SiApacheopenoffice = React.forwardRef(function SiApacheopenoffice2({ title = "Apache OpenOffice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.371 0 12c0 .843.088 1.667.254 2.462a12.594 12.594 0 013.309-.44c1.836 0 3.579.392 5.152 1.099a12.536 12.536 0 017.303-2.332c1.704 0 3.33.339 4.811.953l.023.01a.186.186 0 01-.083.353l-.267-.02a12.525 12.525 0 00-.895-.032c-4.208 0-7.988 1.546-10.281 4.681l-.11.151a.183.183 0 01-.28.008C6.76 16.847 3.894 16.037.677 15.981 2.32 20.65 6.768 24 11.998 24 18.628 24 24 18.627 24 12c0-6.628-5.373-12-12.001-12zm9.395 7.181c-.042-.004-.114-.016-.16-.022a6.703 6.703 0 00-.405-.051c-2.447-.23-4.725.449-6.21 2.171-.063.064-.118.067-.179.003-1.181-1.34-2.864-1.935-4.795-2.118a7.24 7.24 0 00-2.01.09l-.01.001-.02.002a.125.125 0 01-.075-.223l.035-.02a7.23 7.23 0 014.05-.795c1.054.1 2.035.42 2.9.91a7.279 7.279 0 016.797-.255c.045.025.093.047.14.073a.116.116 0 01.067.11c0 .069-.044.134-.125.124z" }) + ] + } + ); +}); + +export { SiApacheopenoffice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.cjs new file mode 100644 index 000000000..46f286e8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#50ABF1"; +const SiApacheparquet = React__namespace.forwardRef(function SiApacheparquet2({ title = "Apache Parquet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.953 20.391c-.95-1.013-.978-1.057-.807-1.248.27-.304 11.811-10.868 11.977-10.964.143-.083 1.558.6 1.867.902.119.115-.8 1.098-5.817 6.218-3.277 3.345-6.021 6.095-6.097 6.112-.076.016-.582-.442-1.123-1.02zM8.333 17.7c-.511-.515-.835-.92-.803-1.003.058-.152 6.693-5.515 6.817-5.51.153.005 1.714 1.191 1.714 1.302 0 .116-6.67 6.073-6.8 6.073-.038 0-.456-.388-.928-.862zM5.91 15.227c-.4-.448-.652-.81-.598-.86.28-.26 3.164-2.26 3.26-2.26.154.002 1.547 1.196 1.547 1.327 0 .161-3.124 2.566-3.334 2.566-.1 0-.494-.348-.875-.773zm-1.988-2.04c-.574-.58-.642-.69-.512-.81.187-.174 9.357-6.094 9.545-6.162.146-.053 1.417.716 1.417.858 0 .102-9.401 6.685-9.63 6.744-.091.023-.435-.241-.82-.63zm6.117-.935c-.379-.314-.687-.626-.684-.692.002-.066.337-.354.743-.64.406-.285 2.227-1.587 4.046-2.894 1.82-1.307 3.383-2.376 3.474-2.376.245 0 1.485.717 1.445.835-.057.173-8.012 6.336-8.179 6.337-.086 0-.467-.256-.845-.57zm-7.963-.923c-.452-.478-.518-.593-.4-.701.103-.093 5.783-3.449 6.47-3.821.114-.062 1.318.807 1.28.922-.05.15-6.456 4.172-6.645 4.172-.09 0-.408-.257-.705-.572Zm13.735.038c-.416-.298-.772-.59-.792-.65-.028-.083 3.74-3.215 4.595-3.818.166-.118.297-.079 1.01.301.45.24.818.485.817.545-.002.152-4.487 4.098-4.7 4.135-.096.016-.515-.214-.93-.513zM.547 9.707 0 9.156l.243-.158c.133-.086 2.841-1.563 6.018-3.282l5.775-3.126.553.27c.303.15.552.322.552.384 0 .084-11.875 7.018-12.02 7.018-.015 0-.274-.249-.574-.553zm8.88-2.79c-.269-.2-.487-.418-.487-.483s1.083-.755 2.406-1.534l2.405-1.417.617.33c.34.18.617.363.617.406 0 .122-4.715 3.07-4.904 3.067-.092-.001-.387-.167-.655-.368Zm4.816-.612c-.325-.2-.589-.418-.588-.484.002-.112 1.64-1.209 1.909-1.279.123-.032 1.226.55 1.315.694.027.044-.031.15-.128.237-.333.296-1.7 1.202-1.81 1.199-.06-.002-.374-.167-.698-.367z" }) + ] + } + ); +}); + +exports.default = SiApacheparquet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.d.ts new file mode 100644 index 000000000..3b4302641 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#50ABF1"; +declare const SiApacheparquet: IconType; +export { SiApacheparquet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.mjs new file mode 100644 index 000000000..7ebf0ff3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacheparquet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#50ABF1"; +const SiApacheparquet = React.forwardRef(function SiApacheparquet2({ title = "Apache Parquet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.953 20.391c-.95-1.013-.978-1.057-.807-1.248.27-.304 11.811-10.868 11.977-10.964.143-.083 1.558.6 1.867.902.119.115-.8 1.098-5.817 6.218-3.277 3.345-6.021 6.095-6.097 6.112-.076.016-.582-.442-1.123-1.02zM8.333 17.7c-.511-.515-.835-.92-.803-1.003.058-.152 6.693-5.515 6.817-5.51.153.005 1.714 1.191 1.714 1.302 0 .116-6.67 6.073-6.8 6.073-.038 0-.456-.388-.928-.862zM5.91 15.227c-.4-.448-.652-.81-.598-.86.28-.26 3.164-2.26 3.26-2.26.154.002 1.547 1.196 1.547 1.327 0 .161-3.124 2.566-3.334 2.566-.1 0-.494-.348-.875-.773zm-1.988-2.04c-.574-.58-.642-.69-.512-.81.187-.174 9.357-6.094 9.545-6.162.146-.053 1.417.716 1.417.858 0 .102-9.401 6.685-9.63 6.744-.091.023-.435-.241-.82-.63zm6.117-.935c-.379-.314-.687-.626-.684-.692.002-.066.337-.354.743-.64.406-.285 2.227-1.587 4.046-2.894 1.82-1.307 3.383-2.376 3.474-2.376.245 0 1.485.717 1.445.835-.057.173-8.012 6.336-8.179 6.337-.086 0-.467-.256-.845-.57zm-7.963-.923c-.452-.478-.518-.593-.4-.701.103-.093 5.783-3.449 6.47-3.821.114-.062 1.318.807 1.28.922-.05.15-6.456 4.172-6.645 4.172-.09 0-.408-.257-.705-.572Zm13.735.038c-.416-.298-.772-.59-.792-.65-.028-.083 3.74-3.215 4.595-3.818.166-.118.297-.079 1.01.301.45.24.818.485.817.545-.002.152-4.487 4.098-4.7 4.135-.096.016-.515-.214-.93-.513zM.547 9.707 0 9.156l.243-.158c.133-.086 2.841-1.563 6.018-3.282l5.775-3.126.553.27c.303.15.552.322.552.384 0 .084-11.875 7.018-12.02 7.018-.015 0-.274-.249-.574-.553zm8.88-2.79c-.269-.2-.487-.418-.487-.483s1.083-.755 2.406-1.534l2.405-1.417.617.33c.34.18.617.363.617.406 0 .122-4.715 3.07-4.904 3.067-.092-.001-.387-.167-.655-.368Zm4.816-.612c-.325-.2-.589-.418-.588-.484.002-.112 1.64-1.209 1.909-1.279.123-.032 1.226.55 1.315.694.027.044-.031.15-.128.237-.333.296-1.7 1.202-1.81 1.199-.06-.002-.374-.167-.698-.367z" }) + ] + } + ); +}); + +export { SiApacheparquet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.cjs new file mode 100644 index 000000000..bb9f0aac9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34A5DA"; +const SiApachepdfbox = React__namespace.forwardRef(function SiApachepdfbox2({ title = "Apache PDFBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.3345 1.8808c.0165.7973.1099 1.5857.2759 2.3557.1628.7548.3977 1.5025.8023 2.1732.1488.246.3186.4783.5077.6948a.475.475 0 0 1 .0404.4526 877 877 0 0 0-6.8253 1.99 841 841 0 0 0-6.8254 2.0531.26.26 0 0 1 .0328-.1744.268.268 0 0 1 .2127-.1315l11.4106-4.3878a14.7 14.7 0 0 1-.3442-2.5002 14.67 14.67 0 0 1 .0849-2.4784.3296.3296 0 0 1 .3673-.2623.316.316 0 0 1 .2585.217zM20.872.8805q-.015 0-.0304.0032L5.5643 1.9407c-.4358.0307-.8229.2841-1.0334.667-.2918.5312-.1966 1.1877.2464 1.5853.1198.1076.2614.1887.377.301a.96.96 0 0 1 .2152.313 3.998 3.998 0 0 1 .7178 4.1209 3.83 3.83 0 0 1-.891 1.3335l-3.0991-.6766 1.9623-4.871a.2404.2404 0 0 0-.1177-.3569.232.232 0 0 0-.2955.1303L1.313 9.4045l-.4955-.1816a.298.298 0 0 0-.242.0767.294.294 0 0 0-.0909.1716L0 17.444a.3594.3594 0 0 0 .5464-.0168 26.97 26.97 0 0 0 .9775-6.8762l5.7242.6422a.65.65 0 0 0 .322.0567.66.66 0 0 0 .322-.1147 407 407 0 0 1 5.2662-2.3868 416 416 0 0 1 5.2619-2.2981.28.28 0 0 1 .2035.1147.282.282 0 0 1 .0398.2539 4.34 4.34 0 0 0-.8405 1.0448c.005.0143.009.0286.0147.0425.0134.0357.0294.0706.0525.1012a.284.284 0 0 0 .4186.0353 4.018 4.018 0 0 1 2.7288-1.335.4.4 0 0 0 .1862-.3126.39.39 0 0 0-.0656-.2444 1.134 1.134 0 0 1-.8515-.3062l.8217-3.284a.676.676 0 0 0-.5233-.244 133.2 133.2 0 0 1-13.428.5112c-.1592.0242-.2866-.13-.2328-.2816a.189.189 0 0 1 .1765-.1259L20.6455 1.325a1.23 1.23 0 0 0 .2412-.1337c.0614-.0435.1256-.0994.1239-.1824-.001-.0735-.0624-.1298-.1326-.1307zm-.9923 2.3544a.198.198 0 0 1 .1339.1692l-.5447 1.4865a1.966 1.966 0 0 1-.8479.6157L7.66 7.9713l-.883-3.3971 13.1002-1.3399Zm3.9342 9.2118L8.7384 23.1217.1731 19.8916a11.66 11.66 0 0 0 2.8722-1.147 11.88 11.88 0 0 0 5.3922-6.4555.488.488 0 0 1 .5573-.2298.483.483 0 0 1 .351.4307l-.15 7.9055 14.0794-8.1534a.424.424 0 0 1 .3169-.0032.422.422 0 0 1 .2235.2044zm-.0549-4.115.005 3.2916a.288.288 0 0 1-.2604.1997.291.291 0 0 1-.2897-.1997l.0542-3.3429a.2434.2434 0 0 1 .2452-.2118.249.249 0 0 1 .2452.2627z" }) + ] + } + ); +}); + +exports.default = SiApachepdfbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.d.ts new file mode 100644 index 000000000..07fcd856a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34A5DA"; +declare const SiApachepdfbox: IconType; +export { SiApachepdfbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.mjs new file mode 100644 index 000000000..8f5f1b2eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepdfbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34A5DA"; +const SiApachepdfbox = React.forwardRef(function SiApachepdfbox2({ title = "Apache PDFBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.3345 1.8808c.0165.7973.1099 1.5857.2759 2.3557.1628.7548.3977 1.5025.8023 2.1732.1488.246.3186.4783.5077.6948a.475.475 0 0 1 .0404.4526 877 877 0 0 0-6.8253 1.99 841 841 0 0 0-6.8254 2.0531.26.26 0 0 1 .0328-.1744.268.268 0 0 1 .2127-.1315l11.4106-4.3878a14.7 14.7 0 0 1-.3442-2.5002 14.67 14.67 0 0 1 .0849-2.4784.3296.3296 0 0 1 .3673-.2623.316.316 0 0 1 .2585.217zM20.872.8805q-.015 0-.0304.0032L5.5643 1.9407c-.4358.0307-.8229.2841-1.0334.667-.2918.5312-.1966 1.1877.2464 1.5853.1198.1076.2614.1887.377.301a.96.96 0 0 1 .2152.313 3.998 3.998 0 0 1 .7178 4.1209 3.83 3.83 0 0 1-.891 1.3335l-3.0991-.6766 1.9623-4.871a.2404.2404 0 0 0-.1177-.3569.232.232 0 0 0-.2955.1303L1.313 9.4045l-.4955-.1816a.298.298 0 0 0-.242.0767.294.294 0 0 0-.0909.1716L0 17.444a.3594.3594 0 0 0 .5464-.0168 26.97 26.97 0 0 0 .9775-6.8762l5.7242.6422a.65.65 0 0 0 .322.0567.66.66 0 0 0 .322-.1147 407 407 0 0 1 5.2662-2.3868 416 416 0 0 1 5.2619-2.2981.28.28 0 0 1 .2035.1147.282.282 0 0 1 .0398.2539 4.34 4.34 0 0 0-.8405 1.0448c.005.0143.009.0286.0147.0425.0134.0357.0294.0706.0525.1012a.284.284 0 0 0 .4186.0353 4.018 4.018 0 0 1 2.7288-1.335.4.4 0 0 0 .1862-.3126.39.39 0 0 0-.0656-.2444 1.134 1.134 0 0 1-.8515-.3062l.8217-3.284a.676.676 0 0 0-.5233-.244 133.2 133.2 0 0 1-13.428.5112c-.1592.0242-.2866-.13-.2328-.2816a.189.189 0 0 1 .1765-.1259L20.6455 1.325a1.23 1.23 0 0 0 .2412-.1337c.0614-.0435.1256-.0994.1239-.1824-.001-.0735-.0624-.1298-.1326-.1307zm-.9923 2.3544a.198.198 0 0 1 .1339.1692l-.5447 1.4865a1.966 1.966 0 0 1-.8479.6157L7.66 7.9713l-.883-3.3971 13.1002-1.3399Zm3.9342 9.2118L8.7384 23.1217.1731 19.8916a11.66 11.66 0 0 0 2.8722-1.147 11.88 11.88 0 0 0 5.3922-6.4555.488.488 0 0 1 .5573-.2298.483.483 0 0 1 .351.4307l-.15 7.9055 14.0794-8.1534a.424.424 0 0 1 .3169-.0032.422.422 0 0 1 .2235.2044zm-.0549-4.115.005 3.2916a.288.288 0 0 1-.2604.1997.291.291 0 0 1-.2897-.1997l.0542-3.3429a.2434.2434 0 0 1 .2452-.2118.249.249 0 0 1 .2452.2627z" }) + ] + } + ); +}); + +export { SiApachepdfbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.cjs new file mode 100644 index 000000000..8c83e61ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#188FFF"; +const SiApachepulsar = React__namespace.forwardRef(function SiApachepulsar2({ title = "Apache Pulsar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 8.925h-5.866c-1.586-3.041-3.262-5.402-5.544-5.402-2.97 0-4.367 2.593-5.717 5.115l-.118.22H0v1.5h3.934c1.39 0 1.673.468 1.673.468-1.09 1.691-2.4 3.363-4.584 3.363H0v1.574h1.03c4.234 0 6.083-3.434 7.567-6.193 1.361-2.541 2.31-4.08 3.993-4.08 1.747 0 3.584 3.801 5.201 7.157.237.488.477.988.72 1.483-6.2.197-9.155 1.649-11.559 2.833-1.759.866-3.147 1.94-5.433 1.94H0v1.574h1.507c2.754 0 4.47-.85 6.295-1.751 2.53-1.243 5.398-2.652 12.157-2.652h3.907V14.5H21.66a1.18 1.18 0 01-.972-.393 70.83 70.83 0 01-1.133-2.321l-.511-1.047s.366-.393 1.38-.393H24Z" }) + ] + } + ); +}); + +exports.default = SiApachepulsar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.d.ts new file mode 100644 index 000000000..1bf8ae5c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#188FFF"; +declare const SiApachepulsar: IconType; +export { SiApachepulsar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.mjs new file mode 100644 index 000000000..4fa46177d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachepulsar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#188FFF"; +const SiApachepulsar = React.forwardRef(function SiApachepulsar2({ title = "Apache Pulsar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 8.925h-5.866c-1.586-3.041-3.262-5.402-5.544-5.402-2.97 0-4.367 2.593-5.717 5.115l-.118.22H0v1.5h3.934c1.39 0 1.673.468 1.673.468-1.09 1.691-2.4 3.363-4.584 3.363H0v1.574h1.03c4.234 0 6.083-3.434 7.567-6.193 1.361-2.541 2.31-4.08 3.993-4.08 1.747 0 3.584 3.801 5.201 7.157.237.488.477.988.72 1.483-6.2.197-9.155 1.649-11.559 2.833-1.759.866-3.147 1.94-5.433 1.94H0v1.574h1.507c2.754 0 4.47-.85 6.295-1.751 2.53-1.243 5.398-2.652 12.157-2.652h3.907V14.5H21.66a1.18 1.18 0 01-.972-.393 70.83 70.83 0 01-1.133-2.321l-.511-1.047s.366-.393 1.38-.393H24Z" }) + ] + } + ); +}); + +export { SiApachepulsar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.cjs new file mode 100644 index 000000000..95b7936d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D77310"; +const SiApacherocketmq = React__namespace.forwardRef(function SiApacherocketmq2({ title = "Apache RocketMQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.438 23.467c-.517-.638-1.106-1.89-1.217-2.587l-.082-.511h1.835c1.435 0 1.835.036 1.835.165 0 .352-.412 1.553-.709 2.066-.333.577-1.021 1.41-1.155 1.4-.043-.004-.272-.244-.507-.533zm-4.532-4.193c-1.251-3.005-1.231-6.784.056-10.63.786-2.35 2.652-5.689 4.413-7.9L11.967 0l.422.493c.763.893 2.612 3.731 3.28 5.036 1.32 2.578 2.055 4.993 2.264 7.438.197 2.302-.176 4.837-.962 6.533l-.338.731-.727-.433-.727-.433H11.95c-2.466 0-3.287.039-3.476.166-.136.091-.453.29-.705.441l-.458.276-.405-.974zm9.338-1.79c.779-2.623.532-6.253-.635-9.344-.683-1.81-2.085-4.319-3.211-5.747-.357-.452-.387-.466-.609-.265-.441.398-1.854 2.622-2.544 4.002-1.927 3.856-2.484 7.995-1.521 11.308l.196.672h8.138l.186-.626zM3.311 19.835c.037-.155.108-.565.157-.909.079-.549.189-.729.885-1.443l.795-.815.002.507c.003.641.302 1.799.631 2.445l.254.498H4.64c-1.384-.001-1.396-.003-1.329-.283zm14.944-.376c.271-.613.529-1.616.606-2.352.031-.299.066-.282.762.379s.738.735.908 1.631c.098.516.179.952.179.97 0 .017-.618.031-1.373.031h-1.373l.291-.659zm-6.477-4.504a2.173 2.173 0 0 1-2.17-2.17c0-1.196.973-2.17 2.17-2.17s2.17.973 2.17 2.17-.973 2.17-2.17 2.17zm0-3.865c-.935 0-1.696.761-1.696 1.695s.761 1.696 1.696 1.696c.935 0 1.696-.761 1.696-1.696s-.761-1.695-1.696-1.695zM9.455 9.457a.657.657 0 1 1 0 1.314.657.657 0 0 1 0-1.314zm-.357 4.665a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6zm5.212-5.18a1.069 1.069 0 1 1 0 2.138 1.069 1.069 0 0 1 0-2.138zm0 5.75a1.418 1.418 0 1 1 0 2.836 1.418 1.418 0 0 1 0-2.836zM9.447 10.68l.491-.491.729.729-.491.491-.729-.729zm4.066-.336l.539.539-.729.729-.539-.539.729-.729zm-3.572 3.362l.491.491-.729.729-.491-.491.729-.729zm2.721 1.064l.61-.59.779.754-.61.59-.779-.754zm-1.717-2.167a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554zm.794 0a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554zm.794 0a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554z" }) + ] + } + ); +}); + +exports.default = SiApacherocketmq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.d.ts new file mode 100644 index 000000000..817f853ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D77310"; +declare const SiApacherocketmq: IconType; +export { SiApacherocketmq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.mjs new file mode 100644 index 000000000..02c42d522 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApacherocketmq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D77310"; +const SiApacherocketmq = React.forwardRef(function SiApacherocketmq2({ title = "Apache RocketMQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.438 23.467c-.517-.638-1.106-1.89-1.217-2.587l-.082-.511h1.835c1.435 0 1.835.036 1.835.165 0 .352-.412 1.553-.709 2.066-.333.577-1.021 1.41-1.155 1.4-.043-.004-.272-.244-.507-.533zm-4.532-4.193c-1.251-3.005-1.231-6.784.056-10.63.786-2.35 2.652-5.689 4.413-7.9L11.967 0l.422.493c.763.893 2.612 3.731 3.28 5.036 1.32 2.578 2.055 4.993 2.264 7.438.197 2.302-.176 4.837-.962 6.533l-.338.731-.727-.433-.727-.433H11.95c-2.466 0-3.287.039-3.476.166-.136.091-.453.29-.705.441l-.458.276-.405-.974zm9.338-1.79c.779-2.623.532-6.253-.635-9.344-.683-1.81-2.085-4.319-3.211-5.747-.357-.452-.387-.466-.609-.265-.441.398-1.854 2.622-2.544 4.002-1.927 3.856-2.484 7.995-1.521 11.308l.196.672h8.138l.186-.626zM3.311 19.835c.037-.155.108-.565.157-.909.079-.549.189-.729.885-1.443l.795-.815.002.507c.003.641.302 1.799.631 2.445l.254.498H4.64c-1.384-.001-1.396-.003-1.329-.283zm14.944-.376c.271-.613.529-1.616.606-2.352.031-.299.066-.282.762.379s.738.735.908 1.631c.098.516.179.952.179.97 0 .017-.618.031-1.373.031h-1.373l.291-.659zm-6.477-4.504a2.173 2.173 0 0 1-2.17-2.17c0-1.196.973-2.17 2.17-2.17s2.17.973 2.17 2.17-.973 2.17-2.17 2.17zm0-3.865c-.935 0-1.696.761-1.696 1.695s.761 1.696 1.696 1.696c.935 0 1.696-.761 1.696-1.696s-.761-1.695-1.696-1.695zM9.455 9.457a.657.657 0 1 1 0 1.314.657.657 0 0 1 0-1.314zm-.357 4.665a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6zm5.212-5.18a1.069 1.069 0 1 1 0 2.138 1.069 1.069 0 0 1 0-2.138zm0 5.75a1.418 1.418 0 1 1 0 2.836 1.418 1.418 0 0 1 0-2.836zM9.447 10.68l.491-.491.729.729-.491.491-.729-.729zm4.066-.336l.539.539-.729.729-.539-.539.729-.729zm-3.572 3.362l.491.491-.729.729-.491-.491.729-.729zm2.721 1.064l.61-.59.779.754-.61.59-.779-.754zm-1.717-2.167a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554zm.794 0a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554zm.794 0a.277.277 0 1 1 0 .554.277.277 0 0 1 0-.554z" }) + ] + } + ); +}); + +export { SiApacherocketmq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.cjs new file mode 100644 index 000000000..9733fe19e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D9411E"; +const SiApachesolr = React__namespace.forwardRef(function SiApachesolr2({ title = "Apache Solr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.741 3.8L8.926 16.573l14.849-6.851A11.979 11.979 0 0 0 20.741 3.8M11.975 0c-1.637 0-3.197.328-4.619.921l-1.585 13.36L13.693.124A12.168 12.168 0 0 0 11.975 0m11.918 10.459l-14.07 7.874 13.201-1.566a11.976 11.976 0 0 0 .869-6.308m-5.188 11.527a12.084 12.084 0 0 0 3.8-4.16l-12.374 2.457 8.574 1.703zM14.417.249L7.53 15.177 20.306 3.36A11.978 11.978 0 0 0 14.417.249M12.98 24a11.938 11.938 0 0 0 3.774-.945l-6.931-.822L12.98 24zM1.016 7.08a11.944 11.944 0 0 0-1.013 3.864l1.867 3.337-.854-7.201zm5.298-5.665a12.076 12.076 0 0 0-4.236 3.784l1.743 8.773L6.314 1.415z" }) + ] + } + ); +}); + +exports.default = SiApachesolr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.d.ts new file mode 100644 index 000000000..b45b61e82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D9411E"; +declare const SiApachesolr: IconType; +export { SiApachesolr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.mjs new file mode 100644 index 000000000..c60bdfbdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesolr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D9411E"; +const SiApachesolr = React.forwardRef(function SiApachesolr2({ title = "Apache Solr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.741 3.8L8.926 16.573l14.849-6.851A11.979 11.979 0 0 0 20.741 3.8M11.975 0c-1.637 0-3.197.328-4.619.921l-1.585 13.36L13.693.124A12.168 12.168 0 0 0 11.975 0m11.918 10.459l-14.07 7.874 13.201-1.566a11.976 11.976 0 0 0 .869-6.308m-5.188 11.527a12.084 12.084 0 0 0 3.8-4.16l-12.374 2.457 8.574 1.703zM14.417.249L7.53 15.177 20.306 3.36A11.978 11.978 0 0 0 14.417.249M12.98 24a11.938 11.938 0 0 0 3.774-.945l-6.931-.822L12.98 24zM1.016 7.08a11.944 11.944 0 0 0-1.013 3.864l1.867 3.337-.854-7.201zm5.298-5.665a12.076 12.076 0 0 0-4.236 3.784l1.743 8.773L6.314 1.415z" }) + ] + } + ); +}); + +export { SiApachesolr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.cjs new file mode 100644 index 000000000..50abf1426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E25A1C"; +const SiApachespark = React__namespace.forwardRef(function SiApachespark2({ title = "Apache Spark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.812 0c-.425.013-.845.215-1.196.605a3.593 3.593 0 00-.493.722c-.355.667-.425 1.415-.556 2.143a551.9 551.9 0 00-.726 4.087c-.027.16-.096.227-.244.273C5.83 8.386 4.06 8.94 2.3 9.514c-.387.125-.773.289-1.114.506-1.042.665-1.196 1.753-.415 2.71.346.422.79.715 1.284.936 1.1.49 2.202.976 3.3 1.47.019.01.036.013.053.019h-.004l1.306.535c0 .023.002.045 0 .073-.2 2.03-.39 4.063-.58 6.095-.04.419-.012.831.134 1.23.317.87 1.065 1.148 1.881.701.372-.204.666-.497.937-.818 1.372-1.623 2.746-3.244 4.113-4.872.111-.133.205-.15.363-.098.349.117.697.231 1.045.347h.001c.02.012.045.02.073.03l.142.042c1.248.416 2.68.775 3.929 1.19.4.132.622.164 1.045.098.311-.048.592-.062.828-.236.602-.33.995-.957.988-1.682-.005-.427-.154-.813-.35-1.186-.82-1.556-1.637-3.113-2.461-4.666-.078-.148-.076-.243.037-.375 1.381-1.615 2.756-3.236 4.133-4.855.272-.32.513-.658.653-1.058.308-.878-.09-1.57-1-1.741a2.783 2.783 0 00-1.235.069c-1.974.521-3.947 1.041-5.918 1.57-.175.047-.26.015-.355-.144a353.08 353.08 0 00-2.421-4.018 4.61 4.61 0 00-.652-.849c-.371-.37-.802-.549-1.227-.536zm.172 3.703a.592.592 0 01.189.211c.87 1.446 1.742 2.89 2.609 4.338.07.118.135.16.277.121 1.525-.41 3.052-.813 4.579-1.217.367-.098.735-.193 1.103-.289a.399.399 0 01-.1.2c-1.259 1.48-2.516 2.962-3.779 4.438-.11.13-.12.22-.04.37.937 1.803 1.768 3.309 2.498 4.76l-3.696-1.019c-.538-.18-1.077-.358-1.615-.539-.163-.055-.25-.03-.36.1-1.248 1.488-2.504 2.97-3.759 4.454a.398.398 0 01-.18.132c.035-.378.068-.757.104-1.136.149-1.572.297-3.144.451-4.716-.03-.318.117-.405-.322-.545-1.493-.593-3.346-1.321-4.816-1.905a.595.595 0 01.24-.134c1.797-.57 3.595-1.14 5.394-1.705.127-.04.199-.092.211-.233.013-.148.05-.294.076-.441.241-1.363.483-2.726.726-4.088.068-.386.14-.771.21-1.157z" }) + ] + } + ); +}); + +exports.default = SiApachespark; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.d.ts new file mode 100644 index 000000000..e6a46c171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E25A1C"; +declare const SiApachespark: IconType; +export { SiApachespark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.mjs new file mode 100644 index 000000000..ccd08fe5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachespark.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E25A1C"; +const SiApachespark = React.forwardRef(function SiApachespark2({ title = "Apache Spark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.812 0c-.425.013-.845.215-1.196.605a3.593 3.593 0 00-.493.722c-.355.667-.425 1.415-.556 2.143a551.9 551.9 0 00-.726 4.087c-.027.16-.096.227-.244.273C5.83 8.386 4.06 8.94 2.3 9.514c-.387.125-.773.289-1.114.506-1.042.665-1.196 1.753-.415 2.71.346.422.79.715 1.284.936 1.1.49 2.202.976 3.3 1.47.019.01.036.013.053.019h-.004l1.306.535c0 .023.002.045 0 .073-.2 2.03-.39 4.063-.58 6.095-.04.419-.012.831.134 1.23.317.87 1.065 1.148 1.881.701.372-.204.666-.497.937-.818 1.372-1.623 2.746-3.244 4.113-4.872.111-.133.205-.15.363-.098.349.117.697.231 1.045.347h.001c.02.012.045.02.073.03l.142.042c1.248.416 2.68.775 3.929 1.19.4.132.622.164 1.045.098.311-.048.592-.062.828-.236.602-.33.995-.957.988-1.682-.005-.427-.154-.813-.35-1.186-.82-1.556-1.637-3.113-2.461-4.666-.078-.148-.076-.243.037-.375 1.381-1.615 2.756-3.236 4.133-4.855.272-.32.513-.658.653-1.058.308-.878-.09-1.57-1-1.741a2.783 2.783 0 00-1.235.069c-1.974.521-3.947 1.041-5.918 1.57-.175.047-.26.015-.355-.144a353.08 353.08 0 00-2.421-4.018 4.61 4.61 0 00-.652-.849c-.371-.37-.802-.549-1.227-.536zm.172 3.703a.592.592 0 01.189.211c.87 1.446 1.742 2.89 2.609 4.338.07.118.135.16.277.121 1.525-.41 3.052-.813 4.579-1.217.367-.098.735-.193 1.103-.289a.399.399 0 01-.1.2c-1.259 1.48-2.516 2.962-3.779 4.438-.11.13-.12.22-.04.37.937 1.803 1.768 3.309 2.498 4.76l-3.696-1.019c-.538-.18-1.077-.358-1.615-.539-.163-.055-.25-.03-.36.1-1.248 1.488-2.504 2.97-3.759 4.454a.398.398 0 01-.18.132c.035-.378.068-.757.104-1.136.149-1.572.297-3.144.451-4.716-.03-.318.117-.405-.322-.545-1.493-.593-3.346-1.321-4.816-1.905a.595.595 0 01.24-.134c1.797-.57 3.595-1.14 5.394-1.705.127-.04.199-.092.211-.233.013-.148.05-.294.076-.441.241-1.363.483-2.726.726-4.088.068-.386.14-.771.21-1.157z" }) + ] + } + ); +}); + +export { SiApachespark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.cjs new file mode 100644 index 000000000..3cb1fcf2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#225593"; +const SiApachestorm = React__namespace.forwardRef(function SiApachestorm2({ title = "Apache Storm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.95 12.021 2.196.03c3.08.043 4.486-.147 5.866-.79.788-.367 1.333-.858 1.65-1.483.212-.417.243-.591.211-1.184-.096-1.826-1.412-2.807-3.77-2.807-1.775 0-3.558.456-6.276 1.604-.702.296-1.289.526-1.305.51-.064-.063 4.824-4.72 5.773-5.5.895-.734 1.831-1.282 2.722-1.591.694-.242.894-.266 2.235-.269 1.248-.003 1.592.031 2.253.221 3.16.91 5.022 3.453 4.129 5.639-.062.151-.007.172.462.172 1.502 0 3.023.904 3.585 2.131.805 1.76.035 3.89-1.73 4.785-.924.468-1.55.562-4.085.615l-2.356.049-1.27.947-1.271.947 3.43.049 3.43.049-.54.414-3.892 3.008a1411.35 1411.35 0 0 1-4.204 3.243l-.85.649H9.41c-.524 0-.92-.04-.902-.09.018-.05 1.581-1.297 3.474-2.773 4.2-3.275 3.97-3.092 3.97-3.163 0-.032-1.528-.07-3.397-.084l-3.398-.026 1.017-.778c.56-.427 1.86-1.45 2.89-2.274l1.873-1.496 2.643-.037c2.42-.033 2.692-.055 3.218-.25 1.174-.435 1.778-1.195 1.78-2.24.003-.875-.374-1.452-1.23-1.886-.773-.393-1.46-.512-2.963-.512l-1.152-.001.392-.605c.463-.716.62-1.213.619-1.948-.002-.721-.281-1.319-.901-1.93-1.588-1.562-4.46-1.977-6.579-.95-.777.376-3.271 2.348-2.714 2.145.108-.039.793-.093 1.521-.12 2.099-.076 3.333.277 4.357 1.245 1.315 1.243 1.713 3.22.958 4.754-.787 1.597-2.703 2.581-5.658 2.906-.605.066-2.566.097-5.104.079L0 13.395l1.325-1.035c.728-.57 2.104-1.64 3.057-2.38l1.733-1.346h2.197L3.95 12.021z" }) + ] + } + ); +}); + +exports.default = SiApachestorm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.d.ts new file mode 100644 index 000000000..8a34cc826 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#225593"; +declare const SiApachestorm: IconType; +export { SiApachestorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.mjs new file mode 100644 index 000000000..dd54981b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachestorm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#225593"; +const SiApachestorm = React.forwardRef(function SiApachestorm2({ title = "Apache Storm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.95 12.021 2.196.03c3.08.043 4.486-.147 5.866-.79.788-.367 1.333-.858 1.65-1.483.212-.417.243-.591.211-1.184-.096-1.826-1.412-2.807-3.77-2.807-1.775 0-3.558.456-6.276 1.604-.702.296-1.289.526-1.305.51-.064-.063 4.824-4.72 5.773-5.5.895-.734 1.831-1.282 2.722-1.591.694-.242.894-.266 2.235-.269 1.248-.003 1.592.031 2.253.221 3.16.91 5.022 3.453 4.129 5.639-.062.151-.007.172.462.172 1.502 0 3.023.904 3.585 2.131.805 1.76.035 3.89-1.73 4.785-.924.468-1.55.562-4.085.615l-2.356.049-1.27.947-1.271.947 3.43.049 3.43.049-.54.414-3.892 3.008a1411.35 1411.35 0 0 1-4.204 3.243l-.85.649H9.41c-.524 0-.92-.04-.902-.09.018-.05 1.581-1.297 3.474-2.773 4.2-3.275 3.97-3.092 3.97-3.163 0-.032-1.528-.07-3.397-.084l-3.398-.026 1.017-.778c.56-.427 1.86-1.45 2.89-2.274l1.873-1.496 2.643-.037c2.42-.033 2.692-.055 3.218-.25 1.174-.435 1.778-1.195 1.78-2.24.003-.875-.374-1.452-1.23-1.886-.773-.393-1.46-.512-2.963-.512l-1.152-.001.392-.605c.463-.716.62-1.213.619-1.948-.002-.721-.281-1.319-.901-1.93-1.588-1.562-4.46-1.977-6.579-.95-.777.376-3.271 2.348-2.714 2.145.108-.039.793-.093 1.521-.12 2.099-.076 3.333.277 4.357 1.245 1.315 1.243 1.713 3.22.958 4.754-.787 1.597-2.703 2.581-5.658 2.906-.605.066-2.566.097-5.104.079L0 13.395l1.325-1.035c.728-.57 2.104-1.64 3.057-2.38l1.733-1.346h2.197L3.95 12.021z" }) + ] + } + ); +}); + +export { SiApachestorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.cjs new file mode 100644 index 000000000..ebe092fee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#20A6C9"; +const SiApachesuperset = React__namespace.forwardRef(function SiApachesuperset2({ title = "Apache Superset", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.168 6.045C2.603 6.045 0 8.579 0 12.014c0 3.434 2.603 5.941 6.168 5.941 2.184 0 3.888-1.026 5.775-3.078 1.53 2.033 4.037 3.136 5.89 3.078 3.566 0 6.167-2.503 6.167-5.941 0-3.438-2.601-5.97-6.168-5.97-2.864 0-5.138 2.425-5.771 3.173-.76-.9-1.674-1.665-2.682-2.274-1.019-.588-2.084-.898-3.211-.898Zm2.875 1.303c1.156.595 1.952 1.42 2.639 2.304-.534.63-1.245 1.483-1.739 2.07-.56-.658-1.58-1.907-2.609-2.308ZM6.186 9.703c1.018.027 1.81.458 3.435 2.408-1.158 1.378-2.202 2.244-3.435 2.244-1.51 0-2.41-.99-2.41-2.31s.906-2.382 2.41-2.342zm11.535 0c1.51 0 2.408 1.026 2.408 2.342 0 1.315-.862 2.301-2.402 2.31-.571-.037-1.529-.026-3.442-2.314l.074-.09.002.002c1.122-1.328 2.097-2.25 3.36-2.25zm-3.762 2.738c.61.68 1.795 1.988 2.713 2.24l-1.684 2.016h-.002c-.753-.371-2.031-1.134-2.716-2.215l1.689-2.04z" }) + ] + } + ); +}); + +exports.default = SiApachesuperset; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.d.ts new file mode 100644 index 000000000..6a5211235 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#20A6C9"; +declare const SiApachesuperset: IconType; +export { SiApachesuperset as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.mjs new file mode 100644 index 000000000..a99c6abe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachesuperset.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#20A6C9"; +const SiApachesuperset = React.forwardRef(function SiApachesuperset2({ title = "Apache Superset", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.168 6.045C2.603 6.045 0 8.579 0 12.014c0 3.434 2.603 5.941 6.168 5.941 2.184 0 3.888-1.026 5.775-3.078 1.53 2.033 4.037 3.136 5.89 3.078 3.566 0 6.167-2.503 6.167-5.941 0-3.438-2.601-5.97-6.168-5.97-2.864 0-5.138 2.425-5.771 3.173-.76-.9-1.674-1.665-2.682-2.274-1.019-.588-2.084-.898-3.211-.898Zm2.875 1.303c1.156.595 1.952 1.42 2.639 2.304-.534.63-1.245 1.483-1.739 2.07-.56-.658-1.58-1.907-2.609-2.308ZM6.186 9.703c1.018.027 1.81.458 3.435 2.408-1.158 1.378-2.202 2.244-3.435 2.244-1.51 0-2.41-.99-2.41-2.31s.906-2.382 2.41-2.342zm11.535 0c1.51 0 2.408 1.026 2.408 2.342 0 1.315-.862 2.301-2.402 2.31-.571-.037-1.529-.026-3.442-2.314l.074-.09.002.002c1.122-1.328 2.097-2.25 3.36-2.25zm-3.762 2.738c.61.68 1.795 1.988 2.713 2.24l-1.684 2.016h-.002c-.753-.371-2.031-1.134-2.716-2.215l1.689-2.04z" }) + ] + } + ); +}); + +export { SiApachesuperset as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.cjs new file mode 100644 index 000000000..561407dc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F8DC75"; +const SiApachetomcat = React__namespace.forwardRef(function SiApachetomcat2({ title = "Apache Tomcat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.66 3.494c-.377.637-.544 2.114-.502 3.162l-.005.004c.036.946.165 1.816.372 2.615-3.096.767-6.466 2.795-8.352 4.754-.882-1.19-1.232-2.168-1.336-2.908-.131-.936.092-1.794.646-2.482.867-1.077 2.098-1.153 3.365-.94-.025.2.001.391.081.51.335.494 2.135.668 3.21.189-.793-1.112-2.4-1.654-2.844-1.437a.762.762 0 00-.335.359c-.438-.078-.873-.137-1.19-.134-1.117.008-1.971.398-2.61 1.193-.628.78-.882 1.747-.734 2.8.14.996.633 2.055 1.46 3.154-.138.147-.27.293-.398.436C1.473 17.023 0 19.44 0 19.842v.207h2.658l-.046-.246c-.15-.793.15-1.785.763-2.526.386-.465 1.024-.996 2.027-1.241.891.87 2.027 1.794 3.291 2.685h1.976v-.208a.678.678 0 00-.327-.577c-.312-.204-.794-.232-1.237-.081-.421-.47-.658-1.098-.709-1.877 4.287.38 8.388 2.11 13.015 4.528h2.546l.033-.167c.048-.237-.082-.556-.346-.851-.456-.51-1.349-.752-2.095-.734-.514-.612-3.342-3.591-3.507-3.765a9.626 9.626 0 002.673-2.847h1.388v-.298H20.89a9.81 9.81 0 00.223-.419h.989v-.299h-.845c.628-1.359.975-2.918.942-4.625l.003.002c-.002-.468-.147-2.445-.415-2.989-.726.276-2.047 1.17-2.346 2.084a14.557 14.557 0 00-4.463.056c-.237-.984-1.423-1.736-2.318-2.16zm.164.577c.211 1.148.593 1.869 1.42 2.223.734-.21 1.58-.34 2.448-.388l.717 1.571.46-1.585c.876.029 1.736.142 2.485.349.762-.554 1.057-1.4 1.218-2.138.202.86.178 2.717.18 2.717a9.883 9.883 0 01-.158 1.988l-.824.35.726.11a9.19 9.19 0 01-.198.714l-.703.205.56.201c-.094.253-.2.5-.314.738h-1.16v.299h1.008a8.788 8.788 0 01-.238.419h-.77v.298h.583a8.634 8.634 0 01-2.921 2.748c-1.334-.664-2.341-1.634-3.079-2.748h.446v-.298h-.636a9.195 9.195 0 01-.236-.419h.872v-.299h-1.026a10.12 10.12 0 01-.46-1.094l.522-.147-.659-.263c-.066-.215-.127-.43-.18-.646l1.015-.069-1.16-.615c-.282-1.563-.225-3.08.062-4.221zm2.946 2.97c-.89 0-1.24.909-1.255.948l.252.094c.012-.033.302-.773 1.003-.773.154 0 .262.062.34.195.182.314.152.933 0 1.58h-1.227v.269h1.159a5.679 5.679 0 01-.496 1.225l-.064.112 1.537.967-.865.57.148.224.967-.637 1.043.681.143-.228-.967-.598 1.518-.986v-.001c-.318-.47-.42-.872-.286-1.329h.108l1.167-.001.002-.268h-1.175c.216-.51.52-.968 1.602-.968v-.27c-.999 0-1.596.397-1.883 1.238h-2.154c.15-.672.177-1.333-.046-1.715a.63.63 0 00-.57-.33zm.55 2.313h2.126c-.095.304-.057.763.178 1.157h-2.737c.166-.334.32-.74.433-1.157zm-3.683.321c.155.515.344.997.562 1.451h-.91v.299h1.06c.075.142.153.282.233.419H12.29v.298h1.478c.91 1.416 2.14 2.499 3.534 3.318a9.45 9.45 0 00.456-.28l.362.39-.61.938 1.04-.474.606.652-1.019.776 1.403-.363 1.905 2.05.16-.014c1.007-.086 1.58.46 1.73.63.112.124.179.237.215.326h-2.036c-4.67-2.437-8.771-4.155-13.127-4.53.01-.607.117-1.293.324-2.058l-.4-.108c-.213.786-.325 1.497-.338 2.134-.454-.03-.91-.046-1.371-.046-.391 0-.747.036-1.072.1a14.771 14.771 0 01-1.09-1.21c.546-.57 1.19-1.123 1.893-1.643l.967.668-.316-1.128c.297-.2.603-.394.914-.58l1.434.73-.673-1.162c.198-.106.398-.21.598-.31l2.007 1.346-.66-1.952a15.32 15.32 0 012.034-.667zm3.492 1.105h2.22l-1.084.715zM4.153 14.675c.273.337.577.678.91 1.021a4.104 4.104 0 00-2.007 1.316c-.629.76-.962 1.762-.886 2.622H.495c.337-.728 1.677-2.833 3.658-4.959z" }) + ] + } + ); +}); + +exports.default = SiApachetomcat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.d.ts new file mode 100644 index 000000000..cb8a99524 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F8DC75"; +declare const SiApachetomcat: IconType; +export { SiApachetomcat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.mjs new file mode 100644 index 000000000..c00547ad3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApachetomcat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F8DC75"; +const SiApachetomcat = React.forwardRef(function SiApachetomcat2({ title = "Apache Tomcat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.66 3.494c-.377.637-.544 2.114-.502 3.162l-.005.004c.036.946.165 1.816.372 2.615-3.096.767-6.466 2.795-8.352 4.754-.882-1.19-1.232-2.168-1.336-2.908-.131-.936.092-1.794.646-2.482.867-1.077 2.098-1.153 3.365-.94-.025.2.001.391.081.51.335.494 2.135.668 3.21.189-.793-1.112-2.4-1.654-2.844-1.437a.762.762 0 00-.335.359c-.438-.078-.873-.137-1.19-.134-1.117.008-1.971.398-2.61 1.193-.628.78-.882 1.747-.734 2.8.14.996.633 2.055 1.46 3.154-.138.147-.27.293-.398.436C1.473 17.023 0 19.44 0 19.842v.207h2.658l-.046-.246c-.15-.793.15-1.785.763-2.526.386-.465 1.024-.996 2.027-1.241.891.87 2.027 1.794 3.291 2.685h1.976v-.208a.678.678 0 00-.327-.577c-.312-.204-.794-.232-1.237-.081-.421-.47-.658-1.098-.709-1.877 4.287.38 8.388 2.11 13.015 4.528h2.546l.033-.167c.048-.237-.082-.556-.346-.851-.456-.51-1.349-.752-2.095-.734-.514-.612-3.342-3.591-3.507-3.765a9.626 9.626 0 002.673-2.847h1.388v-.298H20.89a9.81 9.81 0 00.223-.419h.989v-.299h-.845c.628-1.359.975-2.918.942-4.625l.003.002c-.002-.468-.147-2.445-.415-2.989-.726.276-2.047 1.17-2.346 2.084a14.557 14.557 0 00-4.463.056c-.237-.984-1.423-1.736-2.318-2.16zm.164.577c.211 1.148.593 1.869 1.42 2.223.734-.21 1.58-.34 2.448-.388l.717 1.571.46-1.585c.876.029 1.736.142 2.485.349.762-.554 1.057-1.4 1.218-2.138.202.86.178 2.717.18 2.717a9.883 9.883 0 01-.158 1.988l-.824.35.726.11a9.19 9.19 0 01-.198.714l-.703.205.56.201c-.094.253-.2.5-.314.738h-1.16v.299h1.008a8.788 8.788 0 01-.238.419h-.77v.298h.583a8.634 8.634 0 01-2.921 2.748c-1.334-.664-2.341-1.634-3.079-2.748h.446v-.298h-.636a9.195 9.195 0 01-.236-.419h.872v-.299h-1.026a10.12 10.12 0 01-.46-1.094l.522-.147-.659-.263c-.066-.215-.127-.43-.18-.646l1.015-.069-1.16-.615c-.282-1.563-.225-3.08.062-4.221zm2.946 2.97c-.89 0-1.24.909-1.255.948l.252.094c.012-.033.302-.773 1.003-.773.154 0 .262.062.34.195.182.314.152.933 0 1.58h-1.227v.269h1.159a5.679 5.679 0 01-.496 1.225l-.064.112 1.537.967-.865.57.148.224.967-.637 1.043.681.143-.228-.967-.598 1.518-.986v-.001c-.318-.47-.42-.872-.286-1.329h.108l1.167-.001.002-.268h-1.175c.216-.51.52-.968 1.602-.968v-.27c-.999 0-1.596.397-1.883 1.238h-2.154c.15-.672.177-1.333-.046-1.715a.63.63 0 00-.57-.33zm.55 2.313h2.126c-.095.304-.057.763.178 1.157h-2.737c.166-.334.32-.74.433-1.157zm-3.683.321c.155.515.344.997.562 1.451h-.91v.299h1.06c.075.142.153.282.233.419H12.29v.298h1.478c.91 1.416 2.14 2.499 3.534 3.318a9.45 9.45 0 00.456-.28l.362.39-.61.938 1.04-.474.606.652-1.019.776 1.403-.363 1.905 2.05.16-.014c1.007-.086 1.58.46 1.73.63.112.124.179.237.215.326h-2.036c-4.67-2.437-8.771-4.155-13.127-4.53.01-.607.117-1.293.324-2.058l-.4-.108c-.213.786-.325 1.497-.338 2.134-.454-.03-.91-.046-1.371-.046-.391 0-.747.036-1.072.1a14.771 14.771 0 01-1.09-1.21c.546-.57 1.19-1.123 1.893-1.643l.967.668-.316-1.128c.297-.2.603-.394.914-.58l1.434.73-.673-1.162c.198-.106.398-.21.598-.31l2.007 1.346-.66-1.952a15.32 15.32 0 012.034-.667zm3.492 1.105h2.22l-1.084.715zM4.153 14.675c.273.337.577.678.91 1.021a4.104 4.104 0 00-2.007 1.316c-.629.76-.962 1.762-.886 2.622H.495c.337-.728 1.677-2.833 3.658-4.959z" }) + ] + } + ); +}); + +export { SiApachetomcat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.cjs new file mode 100644 index 000000000..aa4636f64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED145B"; +const SiAparat = React__namespace.forwardRef(function SiAparat2({ title = "Aparat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0014 1.5938C2.7317 1.5906-1.9119 12.7965 4.641 19.3515c2.975 2.976 7.4496 3.8669 11.3374 2.257 3.8877-1.61 6.4228-5.4036 6.4228-9.6116 0-5.7441-4.6555-10.4012-10.3997-10.4031zM6.11 6.783c.5011-2.5982 3.8927-3.2936 5.376-1.1028 1.4834 2.1907-.4216 5.0816-3.02 4.5822-1.6118-.3098-2.6668-1.868-2.356-3.4794zm4.322 8.9882c-.5045 2.5971-3.8965 3.288-5.377 1.0959-1.4807-2.1922.427-5.0807 3.0247-4.5789 1.612.3114 2.6655 1.8714 2.3524 3.483zm1.2605-2.405c-1.1528-.2231-1.4625-1.7273-.4917-2.3877.9708-.6604 2.256.18 2.0401 1.3343-.1347.7198-.8294 1.1924-1.5484 1.0533zm6.197 3.8375c-.501 2.5981-3.8927 3.2935-5.376 1.1028-1.4834-2.1908.4217-5.0817 3.0201-4.5822 1.6117.3097 2.6667 1.8679 2.356 3.4794zm-1.9662-5.5018c-2.5981-.501-3.2935-3.8962-1.1027-5.3795 2.1907-1.4834 5.0816.4216 4.5822 3.02-.3082 1.6132-1.8668 2.6701-3.4795 2.3595zm-2.3348 11.5618l2.2646.611c1.9827.5263 4.0167-.6542 4.5433-2.6368l.639-2.4016a11.3828 11.3828 0 0 1-7.4469 4.4274zM21.232 3.5985l-2.363-.6284a11.3757 11.3757 0 0 1 4.3538 7.619l.6495-2.4578c.5194-1.9804-.6615-4.0076-2.6403-4.5328zM.6713 13.8086l-.5407 2.04c-.5263 1.9826.6542 4.0166 2.6368 4.5432l2.1066.5618a11.3792 11.3792 0 0 1-4.2027-7.145zM10.3583.702L8.1498.1261C6.166-.4024 4.1296.7785 3.603 2.763l-.5512 2.082A11.3757 11.3757 0 0 1 10.3583.702Z" }) + ] + } + ); +}); + +exports.default = SiAparat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.d.ts new file mode 100644 index 000000000..9d50e8a7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED145B"; +declare const SiAparat: IconType; +export { SiAparat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.mjs new file mode 100644 index 000000000..994df0cb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAparat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED145B"; +const SiAparat = React.forwardRef(function SiAparat2({ title = "Aparat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0014 1.5938C2.7317 1.5906-1.9119 12.7965 4.641 19.3515c2.975 2.976 7.4496 3.8669 11.3374 2.257 3.8877-1.61 6.4228-5.4036 6.4228-9.6116 0-5.7441-4.6555-10.4012-10.3997-10.4031zM6.11 6.783c.5011-2.5982 3.8927-3.2936 5.376-1.1028 1.4834 2.1907-.4216 5.0816-3.02 4.5822-1.6118-.3098-2.6668-1.868-2.356-3.4794zm4.322 8.9882c-.5045 2.5971-3.8965 3.288-5.377 1.0959-1.4807-2.1922.427-5.0807 3.0247-4.5789 1.612.3114 2.6655 1.8714 2.3524 3.483zm1.2605-2.405c-1.1528-.2231-1.4625-1.7273-.4917-2.3877.9708-.6604 2.256.18 2.0401 1.3343-.1347.7198-.8294 1.1924-1.5484 1.0533zm6.197 3.8375c-.501 2.5981-3.8927 3.2935-5.376 1.1028-1.4834-2.1908.4217-5.0817 3.0201-4.5822 1.6117.3097 2.6667 1.8679 2.356 3.4794zm-1.9662-5.5018c-2.5981-.501-3.2935-3.8962-1.1027-5.3795 2.1907-1.4834 5.0816.4216 4.5822 3.02-.3082 1.6132-1.8668 2.6701-3.4795 2.3595zm-2.3348 11.5618l2.2646.611c1.9827.5263 4.0167-.6542 4.5433-2.6368l.639-2.4016a11.3828 11.3828 0 0 1-7.4469 4.4274zM21.232 3.5985l-2.363-.6284a11.3757 11.3757 0 0 1 4.3538 7.619l.6495-2.4578c.5194-1.9804-.6615-4.0076-2.6403-4.5328zM.6713 13.8086l-.5407 2.04c-.5263 1.9826.6542 4.0166 2.6368 4.5432l2.1066.5618a11.3792 11.3792 0 0 1-4.2027-7.145zM10.3583.702L8.1498.1261C6.166-.4024 4.1296.7785 3.603 2.763l-.5512 2.082A11.3757 11.3757 0 0 1 10.3583.702Z" }) + ] + } + ); +}); + +export { SiAparat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.cjs new file mode 100644 index 000000000..2c1b2317f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F44A53"; +const SiApifox = React__namespace.forwardRef(function SiApifox2({ title = "Apifox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9747 10.0653a10.4564 10.4564 0 0 0-.456-2.3542 4.1208 4.1208 0 0 1-.364.7432A9.4202 9.4202 0 0 0 19.306 2.19 9.3682 9.3682 0 0 0 16.9823.9788a7.3504 7.3504 0 0 0-.3378-.1114 7.0423 7.0423 0 0 1 1.425 3.4709c.0056.044.0106.088.015.1325a.0606.0606 0 0 1 0 .01c.0045.0456.009.0913.0123.1375v.024a5.249 5.249 0 0 1 .0095.1368c.0028.0457.0049.0919.0066.1375 0 .0323 0 .0652.0033.0975a.1938.1938 0 0 0 0 .0155v.1648a7.0468 7.0468 0 0 1-1.267 4.0414 6.3345 6.3345 0 0 1 .0746 2.1955 6.1772 6.1772 0 0 0 1.164-.4013 6.1845 6.1845 0 0 0 .801-.4408c.0524.182.0969.3673.132.5566.0747.3914.112.789.1114 1.1873a6.3172 6.3172 0 0 1-.0708.9464 6.2386 6.2386 0 0 0 1.6144-.3897c.272-.1054.5361-.23.7905-.3729.0382.213.0653.4277.0812.6435.012.1566.0178.3147.0178.4743a6.3081 6.3081 0 0 1-.1341 1.2981 6.2523 6.2523 0 0 0 1.906-.3807 10.457 10.457 0 0 0 .6614-3.6713 8.6007 8.6007 0 0 0-.024-.8155zm-2.8073 5.7933a5.6853 5.6853 0 0 1-.3896.0128h-.1298a6.2501 6.2501 0 0 0 .1977-1.5676c0-.2356-.0132-.4712-.0395-.7053a6.2298 6.2298 0 0 1-1.9445.5945 6.0272 6.0272 0 0 1-.5723.05 6.2018 6.2018 0 0 0 .1147-.9278 6.4769 6.4769 0 0 0 .0078-.3124 6.2899 6.2899 0 0 0-.1414-1.332 6.2339 6.2339 0 0 1-2.1203.7759l-.0051-.0066a6.1778 6.1778 0 0 0 .1114-.8857 5.6166 5.6166 0 0 0 .0095-.3396c0-.3786-.034-.7564-.1019-1.1289a7.0574 7.0574 0 0 1-5.1175 2.1877 7.043 7.043 0 0 1-3.2465-.7872 6.2634 6.2634 0 0 0 1.2937-.6852 6.3 6.3 0 0 1-3.5727-5.6808 6.2958 6.2958 0 0 1 .1024-1.1345 6.196 6.196 0 0 1 .3012-1.0877 6.2072 6.2072 0 0 1 .4848-1.002 6.2628 6.2628 0 0 1 .7549-1.017 12.2123 12.2123 0 0 0-2.6843 1.67A12.2067 12.2067 0 0 0 .3279 9.1812 12.196 12.196 0 0 0 0 12.0013a12.1531 12.1531 0 0 0 1.4902 5.8507 6.251 6.251 0 0 1 .4453-1.7128 11.659 11.659 0 0 0 8.5845 6.9934 6.2357 6.2357 0 0 1-.8038-1.3833 11.008 11.008 0 0 0 3.1256.5338c.0941 0 .1887.0033.2834.0033a10.9836 10.9836 0 0 0 4.867-1.129 6.1759 6.1759 0 0 1-.7237-.4781 10.5065 10.5065 0 0 0 4.3203-3.0945 10.4688 10.4688 0 0 0 1.3555-2.0925 6.2582 6.2582 0 0 1-1.7769.3662z" }) + ] + } + ); +}); + +exports.default = SiApifox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.d.ts new file mode 100644 index 000000000..7798480c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F44A53"; +declare const SiApifox: IconType; +export { SiApifox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.mjs new file mode 100644 index 000000000..1d1874855 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApifox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F44A53"; +const SiApifox = React.forwardRef(function SiApifox2({ title = "Apifox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9747 10.0653a10.4564 10.4564 0 0 0-.456-2.3542 4.1208 4.1208 0 0 1-.364.7432A9.4202 9.4202 0 0 0 19.306 2.19 9.3682 9.3682 0 0 0 16.9823.9788a7.3504 7.3504 0 0 0-.3378-.1114 7.0423 7.0423 0 0 1 1.425 3.4709c.0056.044.0106.088.015.1325a.0606.0606 0 0 1 0 .01c.0045.0456.009.0913.0123.1375v.024a5.249 5.249 0 0 1 .0095.1368c.0028.0457.0049.0919.0066.1375 0 .0323 0 .0652.0033.0975a.1938.1938 0 0 0 0 .0155v.1648a7.0468 7.0468 0 0 1-1.267 4.0414 6.3345 6.3345 0 0 1 .0746 2.1955 6.1772 6.1772 0 0 0 1.164-.4013 6.1845 6.1845 0 0 0 .801-.4408c.0524.182.0969.3673.132.5566.0747.3914.112.789.1114 1.1873a6.3172 6.3172 0 0 1-.0708.9464 6.2386 6.2386 0 0 0 1.6144-.3897c.272-.1054.5361-.23.7905-.3729.0382.213.0653.4277.0812.6435.012.1566.0178.3147.0178.4743a6.3081 6.3081 0 0 1-.1341 1.2981 6.2523 6.2523 0 0 0 1.906-.3807 10.457 10.457 0 0 0 .6614-3.6713 8.6007 8.6007 0 0 0-.024-.8155zm-2.8073 5.7933a5.6853 5.6853 0 0 1-.3896.0128h-.1298a6.2501 6.2501 0 0 0 .1977-1.5676c0-.2356-.0132-.4712-.0395-.7053a6.2298 6.2298 0 0 1-1.9445.5945 6.0272 6.0272 0 0 1-.5723.05 6.2018 6.2018 0 0 0 .1147-.9278 6.4769 6.4769 0 0 0 .0078-.3124 6.2899 6.2899 0 0 0-.1414-1.332 6.2339 6.2339 0 0 1-2.1203.7759l-.0051-.0066a6.1778 6.1778 0 0 0 .1114-.8857 5.6166 5.6166 0 0 0 .0095-.3396c0-.3786-.034-.7564-.1019-1.1289a7.0574 7.0574 0 0 1-5.1175 2.1877 7.043 7.043 0 0 1-3.2465-.7872 6.2634 6.2634 0 0 0 1.2937-.6852 6.3 6.3 0 0 1-3.5727-5.6808 6.2958 6.2958 0 0 1 .1024-1.1345 6.196 6.196 0 0 1 .3012-1.0877 6.2072 6.2072 0 0 1 .4848-1.002 6.2628 6.2628 0 0 1 .7549-1.017 12.2123 12.2123 0 0 0-2.6843 1.67A12.2067 12.2067 0 0 0 .3279 9.1812 12.196 12.196 0 0 0 0 12.0013a12.1531 12.1531 0 0 0 1.4902 5.8507 6.251 6.251 0 0 1 .4453-1.7128 11.659 11.659 0 0 0 8.5845 6.9934 6.2357 6.2357 0 0 1-.8038-1.3833 11.008 11.008 0 0 0 3.1256.5338c.0941 0 .1887.0033.2834.0033a10.9836 10.9836 0 0 0 4.867-1.129 6.1759 6.1759 0 0 1-.7237-.4781 10.5065 10.5065 0 0 0 4.3203-3.0945 10.4688 10.4688 0 0 0 1.3555-2.0925 6.2582 6.2582 0 0 1-1.7769.3662z" }) + ] + } + ); +}); + +export { SiApifox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.cjs new file mode 100644 index 000000000..0fe690114 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6441"; +const SiApmterminals = React__namespace.forwardRef(function SiApmterminals2({ title = "APM Terminals", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.8 2.95 0 16.55v4.5L24 9.32V2.95zm.2 10.1-8.87 4.21v3.68l8.87-3.4Z" }) + ] + } + ); +}); + +exports.default = SiApmterminals; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.d.ts new file mode 100644 index 000000000..6089e1e02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6441"; +declare const SiApmterminals: IconType; +export { SiApmterminals as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.mjs new file mode 100644 index 000000000..6948d975a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApmterminals.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6441"; +const SiApmterminals = React.forwardRef(function SiApmterminals2({ title = "APM Terminals", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.8 2.95 0 16.55v4.5L24 9.32V2.95zm.2 10.1-8.87 4.21v3.68l8.87-3.4Z" }) + ] + } + ); +}); + +export { SiApmterminals as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.cjs new file mode 100644 index 000000000..0c86cfd3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#311C87"; +const SiApollographql = React__namespace.forwardRef(function SiApollographql2({ title = "Apollo GraphQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,0C5.372,0 0,5.373 0,12 0,18.628 5.372,24 12,24 18.627,24 24,18.628 24,12A12.014,12.014 0 0 0 23.527,8.657 0.6,0.6 0 0 0 22.4,9.066H22.398C22.663,10.009 22.8,10.994 22.8,12A10.73,10.73 0 0 1 19.637,19.637 10.729,10.729 0 0 1 12,22.8 10.73,10.73 0 0 1 4.363,19.637 10.728,10.728 0 0 1 1.2,12 10.73,10.73 0 0 1 4.363,4.363 10.728,10.728 0 0 1 12,1.2C14.576,1.2 17.013,2.096 18.958,3.74A1.466,1.466 0 1 0 19.82,2.9 11.953,11.953 0 0 0 12,0ZM10.56,5.88 6.36,16.782H8.99L9.677,14.934H13.646L12.927,12.892H10.314L12.014,8.201 15.038,16.781H17.669L13.47,5.88Z" }) + ] + } + ); +}); + +exports.default = SiApollographql; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.d.ts new file mode 100644 index 000000000..2bee2599a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#311C87"; +declare const SiApollographql: IconType; +export { SiApollographql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.mjs new file mode 100644 index 000000000..4b7846e08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApollographql.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#311C87"; +const SiApollographql = React.forwardRef(function SiApollographql2({ title = "Apollo GraphQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,0C5.372,0 0,5.373 0,12 0,18.628 5.372,24 12,24 18.627,24 24,18.628 24,12A12.014,12.014 0 0 0 23.527,8.657 0.6,0.6 0 0 0 22.4,9.066H22.398C22.663,10.009 22.8,10.994 22.8,12A10.73,10.73 0 0 1 19.637,19.637 10.729,10.729 0 0 1 12,22.8 10.73,10.73 0 0 1 4.363,19.637 10.728,10.728 0 0 1 1.2,12 10.73,10.73 0 0 1 4.363,4.363 10.728,10.728 0 0 1 12,1.2C14.576,1.2 17.013,2.096 18.958,3.74A1.466,1.466 0 1 0 19.82,2.9 11.953,11.953 0 0 0 12,0ZM10.56,5.88 6.36,16.782H8.99L9.677,14.934H13.646L12.927,12.892H10.314L12.014,8.201 15.038,16.781H17.669L13.47,5.88Z" }) + ] + } + ); +}); + +export { SiApollographql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.cjs new file mode 100644 index 000000000..5465fa68f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6236FF"; +const SiApostrophe = React__namespace.forwardRef(function SiApostrophe2({ title = "Apostrophe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.674 0c-.795.001-1.794.095-3.167.313l-4.6.729c-3.138.497-4.224 1.003-5.274 1.798a6.485 6.485 0 00-2.24 3.082c-.43 1.245-.577 2.434-.08 5.571l.729 4.6c.497 3.138 1.003 4.22 1.798 5.273a6.485 6.485 0 003.082 2.24c1.245.431 2.434.578 5.571.081l4.6-.729c3.138-.497 4.22-1.003 5.273-1.799a6.477 6.477 0 002.24-3.081c.431-1.245.578-2.434.082-5.571l-.73-4.6c-.497-3.138-1.003-4.224-1.799-5.274a6.477 6.477 0 00-3.081-2.24C17.378.152 16.695 0 15.674 0zm-5.319 4.566a.52.52 0 01.003 0 .52.52 0 01.52.444l.77 4.865a.52.52 0 01-.435.6l-4.859.77a.52.52 0 01-.602-.436l-.77-4.866a.52.52 0 01.435-.6l4.86-.77a.52.52 0 01.078-.007zM9.92 5.692l-3.823.605.612 3.83 3.813-.605zm6.504 2.91a3.274 3.274 0 01.497 6.513 3.258 3.258 0 01-3.713-2.726 3.274 3.274 0 013.216-3.787zm-.054 1.058a2.226 2.226 0 10.388 4.42 2.208 2.208 0 001.818-2.541 2.226 2.226 0 00-2.206-1.879zm-6.45 3a.52.52 0 01.424.208l3.824 4.964a.52.52 0 01-.333.839l-5.932.937a.52.52 0 01-.576-.695l2.108-5.901a.52.52 0 01.486-.352zm.18 1.611L8.61 18.438l4.186-.664z" }) + ] + } + ); +}); + +exports.default = SiApostrophe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.d.ts new file mode 100644 index 000000000..15724a303 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6236FF"; +declare const SiApostrophe: IconType; +export { SiApostrophe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.mjs new file mode 100644 index 000000000..10f33fd5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApostrophe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6236FF"; +const SiApostrophe = React.forwardRef(function SiApostrophe2({ title = "Apostrophe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.674 0c-.795.001-1.794.095-3.167.313l-4.6.729c-3.138.497-4.224 1.003-5.274 1.798a6.485 6.485 0 00-2.24 3.082c-.43 1.245-.577 2.434-.08 5.571l.729 4.6c.497 3.138 1.003 4.22 1.798 5.273a6.485 6.485 0 003.082 2.24c1.245.431 2.434.578 5.571.081l4.6-.729c3.138-.497 4.22-1.003 5.273-1.799a6.477 6.477 0 002.24-3.081c.431-1.245.578-2.434.082-5.571l-.73-4.6c-.497-3.138-1.003-4.224-1.799-5.274a6.477 6.477 0 00-3.081-2.24C17.378.152 16.695 0 15.674 0zm-5.319 4.566a.52.52 0 01.003 0 .52.52 0 01.52.444l.77 4.865a.52.52 0 01-.435.6l-4.859.77a.52.52 0 01-.602-.436l-.77-4.866a.52.52 0 01.435-.6l4.86-.77a.52.52 0 01.078-.007zM9.92 5.692l-3.823.605.612 3.83 3.813-.605zm6.504 2.91a3.274 3.274 0 01.497 6.513 3.258 3.258 0 01-3.713-2.726 3.274 3.274 0 013.216-3.787zm-.054 1.058a2.226 2.226 0 10.388 4.42 2.208 2.208 0 001.818-2.541 2.226 2.226 0 00-2.206-1.879zm-6.45 3a.52.52 0 01.424.208l3.824 4.964a.52.52 0 01-.333.839l-5.932.937a.52.52 0 01-.576-.695l2.108-5.901a.52.52 0 01.486-.352zm.18 1.611L8.61 18.438l4.186-.664z" }) + ] + } + ); +}); + +export { SiApostrophe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.cjs new file mode 100644 index 000000000..b731b7421 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiAppgallery = React__namespace.forwardRef(function SiAppgallery2({ title = "AppGallery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.734 0C1.804 0 0 1.803 0 6.733v10.535C0 22.198 1.803 24 6.734 24h10.529C22.193 24 24 22.197 24 17.268V6.733C24 1.803 22.197 0 17.266 0zM8 4h.565A3.439 3.439 0 0 0 12 7.435 3.439 3.439 0 0 0 15.435 4H16c0 2.206-1.794 4-4 4S8 6.206 8 4zm6.468 8h.52l.713 2.16.696-2.158h.66l-1.092 3.14h-.532l-.714-2.063-.714 2.063h-.528l-1.095-3.14h.678l.694 2.158zm6.236 0h.629v3.138h-.629zM2.666 12h.638v1.267h1.439V12h.637v3.142h-.637v-1.276h-1.44v1.276h-.637zm5.668 0h.637v1.772c0 .9-.496 1.417-1.36 1.417-.856 0-1.347-.507-1.347-1.39v-1.797H6.9v1.775c0 .524.255.805.719.805.46 0 .714-.273.714-.784zm2.344 0h.563l1.378 3.14h-.668l-.282-.654H10.23l-.286.654h-.651zm6.893.002h2.312v.572H18.2v.643h1.16v.573H18.2v.777h1.744v.573H17.57zm-6.623.793-.48 1.124h.964z" }) + ] + } + ); +}); + +exports.default = SiAppgallery; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.d.ts new file mode 100644 index 000000000..d3d8b84e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiAppgallery: IconType; +export { SiAppgallery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.mjs new file mode 100644 index 000000000..ac03fbbd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppgallery.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiAppgallery = React.forwardRef(function SiAppgallery2({ title = "AppGallery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.734 0C1.804 0 0 1.803 0 6.733v10.535C0 22.198 1.803 24 6.734 24h10.529C22.193 24 24 22.197 24 17.268V6.733C24 1.803 22.197 0 17.266 0zM8 4h.565A3.439 3.439 0 0 0 12 7.435 3.439 3.439 0 0 0 15.435 4H16c0 2.206-1.794 4-4 4S8 6.206 8 4zm6.468 8h.52l.713 2.16.696-2.158h.66l-1.092 3.14h-.532l-.714-2.063-.714 2.063h-.528l-1.095-3.14h.678l.694 2.158zm6.236 0h.629v3.138h-.629zM2.666 12h.638v1.267h1.439V12h.637v3.142h-.637v-1.276h-1.44v1.276h-.637zm5.668 0h.637v1.772c0 .9-.496 1.417-1.36 1.417-.856 0-1.347-.507-1.347-1.39v-1.797H6.9v1.775c0 .524.255.805.719.805.46 0 .714-.273.714-.784zm2.344 0h.563l1.378 3.14h-.668l-.282-.654H10.23l-.286.654h-.651zm6.893.002h2.312v.572H18.2v.643h1.16v.573H18.2v.777h1.744v.573H17.57zm-6.623.793-.48 1.124h.964z" }) + ] + } + ); +}); + +export { SiAppgallery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.cjs new file mode 100644 index 000000000..8a41841f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2322F0"; +const SiAppian = React__namespace.forwardRef(function SiAppian2({ title = "Appian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.646 6.117C19.538 1.763 17.883 0 13.636 0H7.34v4.066h4.57c1.799 0 2.807 0 2.807 1.655v2.375c-.828 0-2.88-.036-4.426-.036-4.246 0-5.83 1.727-5.937 6.117v3.742c.108 4.102 1.51 5.865 5.253 6.081l3.85-4.066c-.397.036-.864.036-1.44.036-1.798 0-2.806 0-2.806-1.655v-4.57c0-1.655 1.007-1.655 2.806-1.655 1.908 0 2.807 0 2.807 1.655v10.22h4.821z" }) + ] + } + ); +}); + +exports.default = SiAppian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.d.ts new file mode 100644 index 000000000..d0a040816 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2322F0"; +declare const SiAppian: IconType; +export { SiAppian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.mjs new file mode 100644 index 000000000..21d357467 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2322F0"; +const SiAppian = React.forwardRef(function SiAppian2({ title = "Appian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.646 6.117C19.538 1.763 17.883 0 13.636 0H7.34v4.066h4.57c1.799 0 2.807 0 2.807 1.655v2.375c-.828 0-2.88-.036-4.426-.036-4.246 0-5.83 1.727-5.937 6.117v3.742c.108 4.102 1.51 5.865 5.253 6.081l3.85-4.066c-.397.036-.864.036-1.44.036-1.798 0-2.806 0-2.806-1.655v-4.57c0-1.655 1.007-1.655 2.806-1.655 1.908 0 2.807 0 2.807 1.655v10.22h4.821z" }) + ] + } + ); +}); + +export { SiAppian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.cjs new file mode 100644 index 000000000..05cf2326c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#739FB9"; +const SiAppimage = React__namespace.forwardRef(function SiAppimage2({ title = "AppImage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.64 0C.735 0 0 .736 0 1.64v20.72C0 23.265.736 24 1.64 24h20.72c.904 0 1.64-.736 1.64-1.64V1.64C24 .735 23.264 0 22.36 0Zm8.56 2.42h3.6v3.6h1.912L12 10.22l-3.713-4.2H10.2Zm1.331 8.4h1.313c.103 0 .169.177.169.394v1.368c.417.096.81.266 1.162.488l.975-.975c.153-.153.32-.223.394-.15l.918.919c.074.073.004.24-.15.393l-.975.975c.223.352.393.745.488 1.163h1.369c.217 0 .394.065.394.169v1.312c0 .104-.177.169-.394.169h-1.369a3.74 3.74 0 0 1-.487 1.162l.974.975c.154.154.224.32.15.394l-.918.919c-.074.073-.24.003-.394-.15l-.975-.975a3.74 3.74 0 0 1-1.163.487v1.37c0 .216-.065.393-.168.393H11.53c-.103 0-.169-.177-.169-.394v-1.369a3.74 3.74 0 0 1-1.162-.487l-.975.975c-.153.153-.32.223-.394.15l-.918-.919c-.074-.073-.004-.24.15-.394l.974-.975a3.74 3.74 0 0 1-.487-1.162H7.181c-.217 0-.393-.065-.393-.169v-1.312c0-.104.176-.17.393-.17H8.55a3.74 3.74 0 0 1 .487-1.162l-.974-.975c-.154-.153-.224-.32-.15-.393l.918-.92c.074-.072.24-.002.394.15l.975.976a3.74 3.74 0 0 1 1.163-.488v-1.368c0-.217.065-.394.168-.394zm.656 3.731c-.917 0-1.668.752-1.668 1.669s.751 1.669 1.669 1.669c.917 0 1.668-.752 1.668-1.67 0-.916-.751-1.668-1.669-1.668z" }) + ] + } + ); +}); + +exports.default = SiAppimage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.d.ts new file mode 100644 index 000000000..5d5d2acdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#739FB9"; +declare const SiAppimage: IconType; +export { SiAppimage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.mjs new file mode 100644 index 000000000..80fc380fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppimage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#739FB9"; +const SiAppimage = React.forwardRef(function SiAppimage2({ title = "AppImage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.64 0C.735 0 0 .736 0 1.64v20.72C0 23.265.736 24 1.64 24h20.72c.904 0 1.64-.736 1.64-1.64V1.64C24 .735 23.264 0 22.36 0Zm8.56 2.42h3.6v3.6h1.912L12 10.22l-3.713-4.2H10.2Zm1.331 8.4h1.313c.103 0 .169.177.169.394v1.368c.417.096.81.266 1.162.488l.975-.975c.153-.153.32-.223.394-.15l.918.919c.074.073.004.24-.15.393l-.975.975c.223.352.393.745.488 1.163h1.369c.217 0 .394.065.394.169v1.312c0 .104-.177.169-.394.169h-1.369a3.74 3.74 0 0 1-.487 1.162l.974.975c.154.154.224.32.15.394l-.918.919c-.074.073-.24.003-.394-.15l-.975-.975a3.74 3.74 0 0 1-1.163.487v1.37c0 .216-.065.393-.168.393H11.53c-.103 0-.169-.177-.169-.394v-1.369a3.74 3.74 0 0 1-1.162-.487l-.975.975c-.153.153-.32.223-.394.15l-.918-.919c-.074-.073-.004-.24.15-.394l.974-.975a3.74 3.74 0 0 1-.487-1.162H7.181c-.217 0-.393-.065-.393-.169v-1.312c0-.104.176-.17.393-.17H8.55a3.74 3.74 0 0 1 .487-1.162l-.974-.975c-.154-.153-.224-.32-.15-.393l.918-.92c.074-.072.24-.002.394.15l.975.976a3.74 3.74 0 0 1 1.163-.488v-1.368c0-.217.065-.394.168-.394zm.656 3.731c-.917 0-1.668.752-1.668 1.669s.751 1.669 1.669 1.669c.917 0 1.668-.752 1.668-1.67 0-.916-.751-1.668-1.669-1.668z" }) + ] + } + ); +}); + +export { SiAppimage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.cjs new file mode 100644 index 000000000..881cbb042 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE376D"; +const SiAppium = React__namespace.forwardRef(function SiAppium2({ title = "Appium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.923 0C5.937 0 .976 4.384.07 10.115a11.943 11.943 0 0 1 7.645-2.754 11.982 11.982 0 0 1 9.43 4.58 11.942 11.942 0 0 0 1.015-8.769 12.066 12.066 0 0 0-.626-1.772l-.003-.008A11.968 11.968 0 0 0 11.923 0Zm7.721 2.754A12.002 12.002 0 0 1 9.398 16.521a12.082 12.082 0 0 0 9.02 5.617c.24-.119.766-.51 1.224-.89A11.971 11.971 0 0 0 23.995 12a11.98 11.98 0 0 0-4.35-9.247zM9.33 7.557a12.159 12.159 0 0 0-2.647.401A11.944 11.944 0 0 0 .01 12.595l-.005.006c.021.427.065.853.131 1.275C1.037 19.61 6 24 11.991 24c1.45 0 2.887-.26 4.243-.773a12 12 0 0 1-6.905-15.67z" }) + ] + } + ); +}); + +exports.default = SiAppium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.d.ts new file mode 100644 index 000000000..e97819386 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE376D"; +declare const SiAppium: IconType; +export { SiAppium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.mjs new file mode 100644 index 000000000..ef8468963 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE376D"; +const SiAppium = React.forwardRef(function SiAppium2({ title = "Appium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.923 0C5.937 0 .976 4.384.07 10.115a11.943 11.943 0 0 1 7.645-2.754 11.982 11.982 0 0 1 9.43 4.58 11.942 11.942 0 0 0 1.015-8.769 12.066 12.066 0 0 0-.626-1.772l-.003-.008A11.968 11.968 0 0 0 11.923 0Zm7.721 2.754A12.002 12.002 0 0 1 9.398 16.521a12.082 12.082 0 0 0 9.02 5.617c.24-.119.766-.51 1.224-.89A11.971 11.971 0 0 0 23.995 12a11.98 11.98 0 0 0-4.35-9.247zM9.33 7.557a12.159 12.159 0 0 0-2.647.401A11.944 11.944 0 0 0 .01 12.595l-.005.006c.021.427.065.853.131 1.275C1.037 19.61 6 24 11.991 24c1.45 0 2.887-.26 4.243-.773a12 12 0 0 1-6.905-15.67z" }) + ] + } + ); +}); + +export { SiAppium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApple.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApple.cjs new file mode 100644 index 000000000..c1a61054c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApple.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiApple = React__namespace.forwardRef(function SiApple2({ title = "Apple", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701" }) + ] + } + ); +}); + +exports.default = SiApple; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApple.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApple.d.ts new file mode 100644 index 000000000..9ce7ba9a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApple.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiApple: IconType; +export { SiApple as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApple.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApple.mjs new file mode 100644 index 000000000..af67cd019 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApple.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiApple = React.forwardRef(function SiApple2({ title = "Apple", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701" }) + ] + } + ); +}); + +export { SiApple as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.cjs new file mode 100644 index 000000000..2305f1a09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiApplearcade = React__namespace.forwardRef(function SiApplearcade2({ title = "Apple Arcade", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.198 18.24a.966.966 0 0 1-.194-.571v-.955s0-.571.563-.313c0 0 6.919 3.135 8.033 3.626a7.832 7.832 0 0 0 3.408.729 8.216 8.216 0 0 0 3.396-.729l8.037-3.626c.559-.258.559.313.559.313v.955a1.038 1.038 0 0 1-.198.575c-.19.258-.515.539-1.411.959-.713.337-6.23 2.818-6.995 3.17a8.008 8.008 0 0 1-3.4.729 8.336 8.336 0 0 1-3.82-.927c-1.435-.65-5.849-2.631-6.567-2.972-.9-.428-1.153-.654-1.411-.963zm1.411-5.973l6.987-3.17a7.975 7.975 0 0 1 2.164-.634v5.707c0 .396.571.697 1.236.697s1.141-.313 1.141-.697V8.479c.778.105 1.54.313 2.263.618l6.987 3.17c.579.273 1.609.761 1.609 1.538s-1.011 1.236-1.609 1.53l-6.987 3.17a8.2 8.2 0 0 1-3.396.729 7.832 7.832 0 0 1-3.408-.729l-6.987-3.17C1.011 15.042 0 14.574 0 13.801s1.03-1.264 1.609-1.534zm1.807 2.247c.77.396 1.683.396 2.453 0 .682-.396.686-1.026 0-1.419a2.705 2.705 0 0 0-2.453 0c-.68.392-.666 1.02 0 1.419zM12 7.595a3.35 3.35 0 1 1 3.349-3.351v.003c0 1.849-1.5 3.348-3.349 3.348z" }) + ] + } + ); +}); + +exports.default = SiApplearcade; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.d.ts new file mode 100644 index 000000000..c2faa7dc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiApplearcade: IconType; +export { SiApplearcade as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.mjs new file mode 100644 index 000000000..eb899de7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplearcade.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiApplearcade = React.forwardRef(function SiApplearcade2({ title = "Apple Arcade", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.198 18.24a.966.966 0 0 1-.194-.571v-.955s0-.571.563-.313c0 0 6.919 3.135 8.033 3.626a7.832 7.832 0 0 0 3.408.729 8.216 8.216 0 0 0 3.396-.729l8.037-3.626c.559-.258.559.313.559.313v.955a1.038 1.038 0 0 1-.198.575c-.19.258-.515.539-1.411.959-.713.337-6.23 2.818-6.995 3.17a8.008 8.008 0 0 1-3.4.729 8.336 8.336 0 0 1-3.82-.927c-1.435-.65-5.849-2.631-6.567-2.972-.9-.428-1.153-.654-1.411-.963zm1.411-5.973l6.987-3.17a7.975 7.975 0 0 1 2.164-.634v5.707c0 .396.571.697 1.236.697s1.141-.313 1.141-.697V8.479c.778.105 1.54.313 2.263.618l6.987 3.17c.579.273 1.609.761 1.609 1.538s-1.011 1.236-1.609 1.53l-6.987 3.17a8.2 8.2 0 0 1-3.396.729 7.832 7.832 0 0 1-3.408-.729l-6.987-3.17C1.011 15.042 0 14.574 0 13.801s1.03-1.264 1.609-1.534zm1.807 2.247c.77.396 1.683.396 2.453 0 .682-.396.686-1.026 0-1.419a2.705 2.705 0 0 0-2.453 0c-.68.392-.666 1.02 0 1.419zM12 7.595a3.35 3.35 0 1 1 3.349-3.351v.003c0 1.849-1.5 3.348-3.349 3.348z" }) + ] + } + ); +}); + +export { SiApplearcade as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.cjs new file mode 100644 index 000000000..de87f0df9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA243C"; +const SiApplemusic = React__namespace.forwardRef(function SiApplemusic2({ title = "Apple Music", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.994 6.124a9.23 9.23 0 00-.24-2.19c-.317-1.31-1.062-2.31-2.18-3.043a5.022 5.022 0 00-1.877-.726 10.496 10.496 0 00-1.564-.15c-.04-.003-.083-.01-.124-.013H5.986c-.152.01-.303.017-.455.026-.747.043-1.49.123-2.193.4-1.336.53-2.3 1.452-2.865 2.78-.192.448-.292.925-.363 1.408-.056.392-.088.785-.1 1.18 0 .032-.007.062-.01.093v12.223c.01.14.017.283.027.424.05.815.154 1.624.497 2.373.65 1.42 1.738 2.353 3.234 2.801.42.127.856.187 1.293.228.555.053 1.11.06 1.667.06h11.03a12.5 12.5 0 001.57-.1c.822-.106 1.596-.35 2.295-.81a5.046 5.046 0 001.88-2.207c.186-.42.293-.87.37-1.324.113-.675.138-1.358.137-2.04-.002-3.8 0-7.595-.003-11.393zm-6.423 3.99v5.712c0 .417-.058.827-.244 1.206-.29.59-.76.962-1.388 1.14-.35.1-.706.157-1.07.173-.95.045-1.773-.6-1.943-1.536a1.88 1.88 0 011.038-2.022c.323-.16.67-.25 1.018-.324.378-.082.758-.153 1.134-.24.274-.063.457-.23.51-.516a.904.904 0 00.02-.193c0-1.815 0-3.63-.002-5.443a.725.725 0 00-.026-.185c-.04-.15-.15-.243-.304-.234-.16.01-.318.035-.475.066-.76.15-1.52.303-2.28.456l-2.325.47-1.374.278c-.016.003-.032.01-.048.013-.277.077-.377.203-.39.49-.002.042 0 .086 0 .13-.002 2.602 0 5.204-.003 7.805 0 .42-.047.836-.215 1.227-.278.64-.77 1.04-1.434 1.233-.35.1-.71.16-1.075.172-.96.036-1.755-.6-1.92-1.544-.14-.812.23-1.685 1.154-2.075.357-.15.73-.232 1.108-.31.287-.06.575-.116.86-.177.383-.083.583-.323.6-.714v-.15c0-2.96 0-5.922.002-8.882 0-.123.013-.25.042-.37.07-.285.273-.448.546-.518.255-.066.515-.112.774-.165.733-.15 1.466-.296 2.2-.444l2.27-.46c.67-.134 1.34-.27 2.01-.403.22-.043.442-.088.663-.106.31-.025.523.17.554.482.008.073.012.148.012.223.002 1.91.002 3.822 0 5.732z" }) + ] + } + ); +}); + +exports.default = SiApplemusic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.d.ts new file mode 100644 index 000000000..24cd487eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA243C"; +declare const SiApplemusic: IconType; +export { SiApplemusic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.mjs new file mode 100644 index 000000000..c5dac1754 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplemusic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA243C"; +const SiApplemusic = React.forwardRef(function SiApplemusic2({ title = "Apple Music", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.994 6.124a9.23 9.23 0 00-.24-2.19c-.317-1.31-1.062-2.31-2.18-3.043a5.022 5.022 0 00-1.877-.726 10.496 10.496 0 00-1.564-.15c-.04-.003-.083-.01-.124-.013H5.986c-.152.01-.303.017-.455.026-.747.043-1.49.123-2.193.4-1.336.53-2.3 1.452-2.865 2.78-.192.448-.292.925-.363 1.408-.056.392-.088.785-.1 1.18 0 .032-.007.062-.01.093v12.223c.01.14.017.283.027.424.05.815.154 1.624.497 2.373.65 1.42 1.738 2.353 3.234 2.801.42.127.856.187 1.293.228.555.053 1.11.06 1.667.06h11.03a12.5 12.5 0 001.57-.1c.822-.106 1.596-.35 2.295-.81a5.046 5.046 0 001.88-2.207c.186-.42.293-.87.37-1.324.113-.675.138-1.358.137-2.04-.002-3.8 0-7.595-.003-11.393zm-6.423 3.99v5.712c0 .417-.058.827-.244 1.206-.29.59-.76.962-1.388 1.14-.35.1-.706.157-1.07.173-.95.045-1.773-.6-1.943-1.536a1.88 1.88 0 011.038-2.022c.323-.16.67-.25 1.018-.324.378-.082.758-.153 1.134-.24.274-.063.457-.23.51-.516a.904.904 0 00.02-.193c0-1.815 0-3.63-.002-5.443a.725.725 0 00-.026-.185c-.04-.15-.15-.243-.304-.234-.16.01-.318.035-.475.066-.76.15-1.52.303-2.28.456l-2.325.47-1.374.278c-.016.003-.032.01-.048.013-.277.077-.377.203-.39.49-.002.042 0 .086 0 .13-.002 2.602 0 5.204-.003 7.805 0 .42-.047.836-.215 1.227-.278.64-.77 1.04-1.434 1.233-.35.1-.71.16-1.075.172-.96.036-1.755-.6-1.92-1.544-.14-.812.23-1.685 1.154-2.075.357-.15.73-.232 1.108-.31.287-.06.575-.116.86-.177.383-.083.583-.323.6-.714v-.15c0-2.96 0-5.922.002-8.882 0-.123.013-.25.042-.37.07-.285.273-.448.546-.518.255-.066.515-.112.774-.165.733-.15 1.466-.296 2.2-.444l2.27-.46c.67-.134 1.34-.27 2.01-.403.22-.043.442-.088.663-.106.31-.025.523.17.554.482.008.073.012.148.012.223.002 1.91.002 3.822 0 5.732z" }) + ] + } + ); +}); + +export { SiApplemusic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.cjs new file mode 100644 index 000000000..5d64688c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD415E"; +const SiApplenews = React__namespace.forwardRef(function SiApplenews2({ title = "Apple News", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.9401c2.726 4.6726 6.3944 8.385 11.039 11.0582H1.4164C.634 23.9983 0 23.3639 0 22.5819v-9.6418ZM0 1.4138C0 .6337.632.0018 1.4116.0018h4.8082L24 17.7583v4.773c0 .3891-.1544.762-.4295 1.0373a1.4674 1.4674 0 0 1-1.037.4296h-4.774L0 6.2416M12.9634.0017h9.6182A1.4187 1.4187 0 0 1 24 1.4205v9.6256C21.2648 6.4935 17.6157 2.7745 12.9634.0017Z" }) + ] + } + ); +}); + +exports.default = SiApplenews; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.d.ts new file mode 100644 index 000000000..db02961a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD415E"; +declare const SiApplenews: IconType; +export { SiApplenews as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.mjs new file mode 100644 index 000000000..fd6c994a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplenews.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD415E"; +const SiApplenews = React.forwardRef(function SiApplenews2({ title = "Apple News", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.9401c2.726 4.6726 6.3944 8.385 11.039 11.0582H1.4164C.634 23.9983 0 23.3639 0 22.5819v-9.6418ZM0 1.4138C0 .6337.632.0018 1.4116.0018h4.8082L24 17.7583v4.773c0 .3891-.1544.762-.4295 1.0373a1.4674 1.4674 0 0 1-1.037.4296h-4.774L0 6.2416M12.9634.0017h9.6182A1.4187 1.4187 0 0 1 24 1.4205v9.6256C21.2648 6.4935 17.6157 2.7745 12.9634.0017Z" }) + ] + } + ); +}); + +export { SiApplenews as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.cjs new file mode 100644 index 000000000..d3a69af11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiApplepay = React__namespace.forwardRef(function SiApplepay2({ title = "Apple Pay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.15 4.318a42.16 42.16 0 0 0-.454.003c-.15.005-.303.013-.452.04a1.44 1.44 0 0 0-1.06.772c-.07.138-.114.278-.14.43-.028.148-.037.3-.04.45A10.2 10.2 0 0 0 0 6.222v11.557c0 .07.002.138.003.207.004.15.013.303.04.452.027.15.072.291.142.429a1.436 1.436 0 0 0 .63.63c.138.07.278.115.43.142.148.027.3.036.45.04l.208.003h20.194l.207-.003c.15-.004.303-.013.452-.04.15-.027.291-.071.428-.141a1.432 1.432 0 0 0 .631-.631c.07-.138.115-.278.141-.43.027-.148.036-.3.04-.45.002-.07.003-.138.003-.208l.001-.246V6.221c0-.07-.002-.138-.004-.207a2.995 2.995 0 0 0-.04-.452 1.446 1.446 0 0 0-1.2-1.201 3.022 3.022 0 0 0-.452-.04 10.448 10.448 0 0 0-.453-.003zm0 .512h19.942c.066 0 .131.002.197.003.115.004.25.01.375.032.109.02.2.05.287.094a.927.927 0 0 1 .407.407.997.997 0 0 1 .094.288c.022.123.028.258.031.374.002.065.003.13.003.197v11.552c0 .065 0 .13-.003.196-.003.115-.009.25-.032.375a.927.927 0 0 1-.5.693 1.002 1.002 0 0 1-.286.094 2.598 2.598 0 0 1-.373.032l-.2.003H1.906c-.066 0-.133-.002-.196-.003a2.61 2.61 0 0 1-.375-.032c-.109-.02-.2-.05-.288-.094a.918.918 0 0 1-.406-.407 1.006 1.006 0 0 1-.094-.288 2.531 2.531 0 0 1-.032-.373 9.588 9.588 0 0 1-.002-.197V6.224c0-.065 0-.131.002-.197.004-.114.01-.248.032-.375.02-.108.05-.199.094-.287a.925.925 0 0 1 .407-.406 1.03 1.03 0 0 1 .287-.094c.125-.022.26-.029.375-.032.065-.002.131-.002.196-.003zm4.71 3.7c-.3.016-.668.199-.88.456-.191.22-.36.58-.316.918.338.03.675-.169.888-.418.205-.258.345-.603.308-.955zm2.207.42v5.493h.852v-1.877h1.18c1.078 0 1.835-.739 1.835-1.812 0-1.07-.742-1.805-1.808-1.805zm.852.719h.982c.739 0 1.161.396 1.161 1.089 0 .692-.422 1.092-1.164 1.092h-.979zm-3.154.3c-.45.01-.83.28-1.05.28-.235 0-.593-.264-.981-.257a1.446 1.446 0 0 0-1.23.747c-.527.908-.139 2.255.374 2.995.249.366.549.769.944.754.373-.014.52-.242.973-.242.454 0 .586.242.98.235.41-.007.667-.366.915-.733.286-.417.403-.82.41-.841-.007-.008-.79-.308-.797-1.209-.008-.754.615-1.113.644-1.135-.352-.52-.9-.578-1.09-.593a1.123 1.123 0 0 0-.092-.002zm8.204.397c-.99 0-1.606.533-1.652 1.256h.777c.072-.358.369-.586.845-.586.502 0 .803.266.803.711v.309l-1.097.064c-.951.054-1.488.484-1.488 1.184 0 .72.548 1.207 1.332 1.207.526 0 1.032-.281 1.264-.727h.019v.659h.788v-2.76c0-.803-.62-1.317-1.591-1.317zm1.94.072l1.446 4.009c0 .003-.073.24-.073.247-.125.41-.33.571-.711.571-.069 0-.206 0-.267-.015v.666c.06.011.267.019.335.019.83 0 1.226-.312 1.568-1.283l1.5-4.214h-.868l-1.012 3.259h-.015l-1.013-3.26zm-1.167 2.189v.316c0 .521-.45.917-1.024.917-.442 0-.731-.228-.731-.579 0-.342.278-.56.769-.593z" }) + ] + } + ); +}); + +exports.default = SiApplepay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.d.ts new file mode 100644 index 000000000..053c8aaeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiApplepay: IconType; +export { SiApplepay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.mjs new file mode 100644 index 000000000..e2b7e64da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiApplepay = React.forwardRef(function SiApplepay2({ title = "Apple Pay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.15 4.318a42.16 42.16 0 0 0-.454.003c-.15.005-.303.013-.452.04a1.44 1.44 0 0 0-1.06.772c-.07.138-.114.278-.14.43-.028.148-.037.3-.04.45A10.2 10.2 0 0 0 0 6.222v11.557c0 .07.002.138.003.207.004.15.013.303.04.452.027.15.072.291.142.429a1.436 1.436 0 0 0 .63.63c.138.07.278.115.43.142.148.027.3.036.45.04l.208.003h20.194l.207-.003c.15-.004.303-.013.452-.04.15-.027.291-.071.428-.141a1.432 1.432 0 0 0 .631-.631c.07-.138.115-.278.141-.43.027-.148.036-.3.04-.45.002-.07.003-.138.003-.208l.001-.246V6.221c0-.07-.002-.138-.004-.207a2.995 2.995 0 0 0-.04-.452 1.446 1.446 0 0 0-1.2-1.201 3.022 3.022 0 0 0-.452-.04 10.448 10.448 0 0 0-.453-.003zm0 .512h19.942c.066 0 .131.002.197.003.115.004.25.01.375.032.109.02.2.05.287.094a.927.927 0 0 1 .407.407.997.997 0 0 1 .094.288c.022.123.028.258.031.374.002.065.003.13.003.197v11.552c0 .065 0 .13-.003.196-.003.115-.009.25-.032.375a.927.927 0 0 1-.5.693 1.002 1.002 0 0 1-.286.094 2.598 2.598 0 0 1-.373.032l-.2.003H1.906c-.066 0-.133-.002-.196-.003a2.61 2.61 0 0 1-.375-.032c-.109-.02-.2-.05-.288-.094a.918.918 0 0 1-.406-.407 1.006 1.006 0 0 1-.094-.288 2.531 2.531 0 0 1-.032-.373 9.588 9.588 0 0 1-.002-.197V6.224c0-.065 0-.131.002-.197.004-.114.01-.248.032-.375.02-.108.05-.199.094-.287a.925.925 0 0 1 .407-.406 1.03 1.03 0 0 1 .287-.094c.125-.022.26-.029.375-.032.065-.002.131-.002.196-.003zm4.71 3.7c-.3.016-.668.199-.88.456-.191.22-.36.58-.316.918.338.03.675-.169.888-.418.205-.258.345-.603.308-.955zm2.207.42v5.493h.852v-1.877h1.18c1.078 0 1.835-.739 1.835-1.812 0-1.07-.742-1.805-1.808-1.805zm.852.719h.982c.739 0 1.161.396 1.161 1.089 0 .692-.422 1.092-1.164 1.092h-.979zm-3.154.3c-.45.01-.83.28-1.05.28-.235 0-.593-.264-.981-.257a1.446 1.446 0 0 0-1.23.747c-.527.908-.139 2.255.374 2.995.249.366.549.769.944.754.373-.014.52-.242.973-.242.454 0 .586.242.98.235.41-.007.667-.366.915-.733.286-.417.403-.82.41-.841-.007-.008-.79-.308-.797-1.209-.008-.754.615-1.113.644-1.135-.352-.52-.9-.578-1.09-.593a1.123 1.123 0 0 0-.092-.002zm8.204.397c-.99 0-1.606.533-1.652 1.256h.777c.072-.358.369-.586.845-.586.502 0 .803.266.803.711v.309l-1.097.064c-.951.054-1.488.484-1.488 1.184 0 .72.548 1.207 1.332 1.207.526 0 1.032-.281 1.264-.727h.019v.659h.788v-2.76c0-.803-.62-1.317-1.591-1.317zm1.94.072l1.446 4.009c0 .003-.073.24-.073.247-.125.41-.33.571-.711.571-.069 0-.206 0-.267-.015v.666c.06.011.267.019.335.019.83 0 1.226-.312 1.568-1.283l1.5-4.214h-.868l-1.012 3.259h-.015l-1.013-3.26zm-1.167 2.189v.316c0 .521-.45.917-1.024.917-.442 0-.731-.228-.731-.579 0-.342.278-.56.769-.593z" }) + ] + } + ); +}); + +export { SiApplepay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.cjs new file mode 100644 index 000000000..56e12ca16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9933CC"; +const SiApplepodcasts = React__namespace.forwardRef(function SiApplepodcasts2({ title = "Apple Podcasts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.34 0A5.328 5.328 0 000 5.34v13.32A5.328 5.328 0 005.34 24h13.32A5.328 5.328 0 0024 18.66V5.34A5.328 5.328 0 0018.66 0zm6.525 2.568c2.336 0 4.448.902 6.056 2.587 1.224 1.272 1.912 2.619 2.264 4.392.12.59.12 2.2.007 2.864a8.506 8.506 0 01-3.24 5.296c-.608.46-2.096 1.261-2.336 1.261-.088 0-.096-.091-.056-.46.072-.592.144-.715.48-.856.536-.224 1.448-.874 2.008-1.435a7.644 7.644 0 002.008-3.536c.208-.824.184-2.656-.048-3.504-.728-2.696-2.928-4.792-5.624-5.352-.784-.16-2.208-.16-3 0-2.728.56-4.984 2.76-5.672 5.528-.184.752-.184 2.584 0 3.336.456 1.832 1.64 3.512 3.192 4.512.304.2.672.408.824.472.336.144.408.264.472.856.04.36.03.464-.056.464-.056 0-.464-.176-.896-.384l-.04-.03c-2.472-1.216-4.056-3.274-4.632-6.012-.144-.706-.168-2.392-.03-3.04.36-1.74 1.048-3.1 2.192-4.304 1.648-1.737 3.768-2.656 6.128-2.656zm.134 2.81c.409.004.803.04 1.106.106 2.784.62 4.76 3.408 4.376 6.174-.152 1.114-.536 2.03-1.216 2.88-.336.43-1.152 1.15-1.296 1.15-.023 0-.048-.272-.048-.603v-.605l.416-.496c1.568-1.878 1.456-4.502-.256-6.224-.664-.67-1.432-1.064-2.424-1.246-.64-.118-.776-.118-1.448-.008-1.02.167-1.81.562-2.512 1.256-1.72 1.704-1.832 4.342-.264 6.222l.413.496v.608c0 .336-.027.608-.06.608-.03 0-.264-.16-.512-.36l-.034-.011c-.832-.664-1.568-1.842-1.872-2.997-.184-.698-.184-2.024.008-2.72.504-1.878 1.888-3.335 3.808-4.019.41-.145 1.133-.22 1.814-.211zm-.13 2.99c.31 0 .62.06.844.178.488.253.888.745 1.04 1.259.464 1.578-1.208 2.96-2.72 2.254h-.015c-.712-.331-1.096-.956-1.104-1.77 0-.733.408-1.371 1.112-1.745.224-.117.534-.176.844-.176zm-.011 4.728c.988-.004 1.706.349 1.97.97.198.464.124 1.932-.218 4.302-.232 1.656-.36 2.074-.68 2.356-.44.39-1.064.498-1.656.288h-.003c-.716-.257-.87-.605-1.164-2.644-.341-2.37-.416-3.838-.218-4.302.262-.616.974-.966 1.97-.97z" }) + ] + } + ); +}); + +exports.default = SiApplepodcasts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.d.ts new file mode 100644 index 000000000..d1adbc229 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9933CC"; +declare const SiApplepodcasts: IconType; +export { SiApplepodcasts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.mjs new file mode 100644 index 000000000..b774c0e93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiApplepodcasts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9933CC"; +const SiApplepodcasts = React.forwardRef(function SiApplepodcasts2({ title = "Apple Podcasts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.34 0A5.328 5.328 0 000 5.34v13.32A5.328 5.328 0 005.34 24h13.32A5.328 5.328 0 0024 18.66V5.34A5.328 5.328 0 0018.66 0zm6.525 2.568c2.336 0 4.448.902 6.056 2.587 1.224 1.272 1.912 2.619 2.264 4.392.12.59.12 2.2.007 2.864a8.506 8.506 0 01-3.24 5.296c-.608.46-2.096 1.261-2.336 1.261-.088 0-.096-.091-.056-.46.072-.592.144-.715.48-.856.536-.224 1.448-.874 2.008-1.435a7.644 7.644 0 002.008-3.536c.208-.824.184-2.656-.048-3.504-.728-2.696-2.928-4.792-5.624-5.352-.784-.16-2.208-.16-3 0-2.728.56-4.984 2.76-5.672 5.528-.184.752-.184 2.584 0 3.336.456 1.832 1.64 3.512 3.192 4.512.304.2.672.408.824.472.336.144.408.264.472.856.04.36.03.464-.056.464-.056 0-.464-.176-.896-.384l-.04-.03c-2.472-1.216-4.056-3.274-4.632-6.012-.144-.706-.168-2.392-.03-3.04.36-1.74 1.048-3.1 2.192-4.304 1.648-1.737 3.768-2.656 6.128-2.656zm.134 2.81c.409.004.803.04 1.106.106 2.784.62 4.76 3.408 4.376 6.174-.152 1.114-.536 2.03-1.216 2.88-.336.43-1.152 1.15-1.296 1.15-.023 0-.048-.272-.048-.603v-.605l.416-.496c1.568-1.878 1.456-4.502-.256-6.224-.664-.67-1.432-1.064-2.424-1.246-.64-.118-.776-.118-1.448-.008-1.02.167-1.81.562-2.512 1.256-1.72 1.704-1.832 4.342-.264 6.222l.413.496v.608c0 .336-.027.608-.06.608-.03 0-.264-.16-.512-.36l-.034-.011c-.832-.664-1.568-1.842-1.872-2.997-.184-.698-.184-2.024.008-2.72.504-1.878 1.888-3.335 3.808-4.019.41-.145 1.133-.22 1.814-.211zm-.13 2.99c.31 0 .62.06.844.178.488.253.888.745 1.04 1.259.464 1.578-1.208 2.96-2.72 2.254h-.015c-.712-.331-1.096-.956-1.104-1.77 0-.733.408-1.371 1.112-1.745.224-.117.534-.176.844-.176zm-.011 4.728c.988-.004 1.706.349 1.97.97.198.464.124 1.932-.218 4.302-.232 1.656-.36 2.074-.68 2.356-.44.39-1.064.498-1.656.288h-.003c-.716-.257-.87-.605-1.164-2.644-.341-2.37-.416-3.838-.218-4.302.262-.616.974-.966 1.97-.97z" }) + ] + } + ); +}); + +export { SiApplepodcasts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.cjs new file mode 100644 index 000000000..babc59bad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAppletv = React__namespace.forwardRef(function SiAppletv2({ title = "Apple TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.57 17.735h-1.815l-3.34-9.203h1.633l2.02 5.987c.075.231.273.9.586 2.012l.297-.997.33-1.006 2.094-6.004H24zm-5.344-.066a5.76 5.76 0 0 1-1.55.207c-1.23 0-1.84-.693-1.84-2.087V9.646h-1.063V8.532h1.121V7.081l1.476-.602v2.062h1.707v1.113H13.38v5.805c0 .446.074.75.214.932.14.182.396.264.75.264.207 0 .495-.041.883-.115zm-7.29-5.343c.017 1.764 1.55 2.358 1.567 2.366-.017.042-.248.842-.808 1.658-.487.71-.99 1.418-1.79 1.435-.783.016-1.03-.462-1.93-.462-.89 0-1.17.445-1.913.478-.758.025-1.344-.775-1.838-1.484-.998-1.451-1.765-4.098-.734-5.88.51-.89 1.426-1.451 2.416-1.46.75-.016 1.468.512 1.93.512.461 0 1.327-.627 2.234-.536.38.016 1.452.157 2.136 1.154-.058.033-1.278.743-1.27 2.219M6.468 7.988c.404-.495.685-1.18.61-1.864-.585.025-1.294.388-1.723.883-.38.437-.71 1.138-.619 1.806.652.05 1.328-.338 1.732-.825Z" }) + ] + } + ); +}); + +exports.default = SiAppletv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.d.ts new file mode 100644 index 000000000..2649da5c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAppletv: IconType; +export { SiAppletv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.mjs new file mode 100644 index 000000000..94e688e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppletv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAppletv = React.forwardRef(function SiAppletv2({ title = "Apple TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.57 17.735h-1.815l-3.34-9.203h1.633l2.02 5.987c.075.231.273.9.586 2.012l.297-.997.33-1.006 2.094-6.004H24zm-5.344-.066a5.76 5.76 0 0 1-1.55.207c-1.23 0-1.84-.693-1.84-2.087V9.646h-1.063V8.532h1.121V7.081l1.476-.602v2.062h1.707v1.113H13.38v5.805c0 .446.074.75.214.932.14.182.396.264.75.264.207 0 .495-.041.883-.115zm-7.29-5.343c.017 1.764 1.55 2.358 1.567 2.366-.017.042-.248.842-.808 1.658-.487.71-.99 1.418-1.79 1.435-.783.016-1.03-.462-1.93-.462-.89 0-1.17.445-1.913.478-.758.025-1.344-.775-1.838-1.484-.998-1.451-1.765-4.098-.734-5.88.51-.89 1.426-1.451 2.416-1.46.75-.016 1.468.512 1.93.512.461 0 1.327-.627 2.234-.536.38.016 1.452.157 2.136 1.154-.058.033-1.278.743-1.27 2.219M6.468 7.988c.404-.495.685-1.18.61-1.864-.585.025-1.294.388-1.723.883-.38.437-.71 1.138-.619 1.806.652.05 1.328-.338 1.732-.825Z" }) + ] + } + ); +}); + +export { SiAppletv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.cjs new file mode 100644 index 000000000..a94fe3a02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DCAF74"; +const SiAppmanager = React__namespace.forwardRef(function SiAppmanager2({ title = "AppManager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.783.249c-.075 0-.142.038-.197.127-.208 1.515-.182 1.451-.53 3.616-.045.35-.244 1.257-.36 1.806-.109.55-.372 1.312-.561 2.06q-.27 1.106-.77 2.47a43 43 0 0 1-1.148 2.81q-.648 1.43-1.66 3.078a31 31 0 0 1-2.201 3.146q-.54.675-1.122 1.27c-.966 1.008-1.647 1.624-3.131 2.88-.536.573 1.167-.066 1.53-.24.842-.402.99-.493 1.71-.986.668-.514 1.292-1.123 1.593-1.411q.5-.473 1.567-1.783c1.611-.8 5.132-1.44 6.994-1.387 2.984.076 4.214.741 5.137 2.548.207.468.458 1.004.683 1.5q.35.743.838 1.363.5.635.931.635.42 0 1.148-.419.73-.405 1.283-.904c.378-.324.483-.515.483-.668q0-.067-.04-.094-.028-.027-.095-.014a.6.6 0 0 0-.122.014c-.045.009-.01-.026-.064-.008a.6.6 0 0 1-.122.013q-.648 0-1.66-1.58-1-1.593-2.12-4.078a356 356 0 0 1-2.215-5.077c-.729-1.728-1.557-3.372-2.313-5.029q-1.134-2.484-1.876-3.605c-.366-.562-1.131-2.049-1.59-2.053zm.916 6.615c-.007.122.825 1.594 2.149 4.612q2.025 4.618 2.025 4.767l-.027.014q-.04 0-.405-.068a11.6 11.6 0 0 0-2.336-.243q-3.173 0-6.414 1.58 1.093-1.485 1.998-3.133.918-1.647 1.432-2.93.526-1.283.877-2.363.365-1.08.514-1.661c.093-.335.173-.537.187-.575" }) + ] + } + ); +}); + +exports.default = SiAppmanager; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.d.ts new file mode 100644 index 000000000..f2f6162ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DCAF74"; +declare const SiAppmanager: IconType; +export { SiAppmanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.mjs new file mode 100644 index 000000000..1f1d3d9d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppmanager.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DCAF74"; +const SiAppmanager = React.forwardRef(function SiAppmanager2({ title = "AppManager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.783.249c-.075 0-.142.038-.197.127-.208 1.515-.182 1.451-.53 3.616-.045.35-.244 1.257-.36 1.806-.109.55-.372 1.312-.561 2.06q-.27 1.106-.77 2.47a43 43 0 0 1-1.148 2.81q-.648 1.43-1.66 3.078a31 31 0 0 1-2.201 3.146q-.54.675-1.122 1.27c-.966 1.008-1.647 1.624-3.131 2.88-.536.573 1.167-.066 1.53-.24.842-.402.99-.493 1.71-.986.668-.514 1.292-1.123 1.593-1.411q.5-.473 1.567-1.783c1.611-.8 5.132-1.44 6.994-1.387 2.984.076 4.214.741 5.137 2.548.207.468.458 1.004.683 1.5q.35.743.838 1.363.5.635.931.635.42 0 1.148-.419.73-.405 1.283-.904c.378-.324.483-.515.483-.668q0-.067-.04-.094-.028-.027-.095-.014a.6.6 0 0 0-.122.014c-.045.009-.01-.026-.064-.008a.6.6 0 0 1-.122.013q-.648 0-1.66-1.58-1-1.593-2.12-4.078a356 356 0 0 1-2.215-5.077c-.729-1.728-1.557-3.372-2.313-5.029q-1.134-2.484-1.876-3.605c-.366-.562-1.131-2.049-1.59-2.053zm.916 6.615c-.007.122.825 1.594 2.149 4.612q2.025 4.618 2.025 4.767l-.027.014q-.04 0-.405-.068a11.6 11.6 0 0 0-2.336-.243q-3.173 0-6.414 1.58 1.093-1.485 1.998-3.133.918-1.647 1.432-2.93.526-1.283.877-2.363.365-1.08.514-1.661c.093-.335.173-.537.187-.575" }) + ] + } + ); +}); + +export { SiAppmanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.cjs new file mode 100644 index 000000000..69e29b6d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21375A"; +const SiAppsignal = React__namespace.forwardRef(function SiAppsignal2({ title = "AppSignal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.003 7.328c-1.781 0-3.055 1.57-4.368 3.318-.815-3.714-1.72-7.424-4.601-7.424-2.881 0-3.789 3.71-4.617 7.427-1.31-1.752-2.584-3.32-4.365-3.32C1.918 7.329 0 8.098 0 10.986v5.24c0 2.832 1.512 3.527 2.42 3.766 1.565.406 5.334.786 9.578.786s8.013-.38 9.579-.786c.907-.24 2.423-.934 2.423-3.766v-5.24c0-2.888-1.92-3.658-3.052-3.658m-8.914-2.469c1.726 0 2.384 3.406 3.3 7.493-1.004 1.238-2.072 2.236-3.3 2.236-1.228 0-2.292-.998-3.3-2.236.857-3.822 1.519-7.493 3.3-7.493M1.664 16.242v-5.24c0-1.823.981-2.02 1.414-2.02 1.257 0 2.62 2.096 3.893 3.78-.91 3.818-1.873 6.143-4.145 5.664-.593-.16-1.15-.537-1.15-2.167m4.46 2.655c1.006-1.093 1.638-2.8 2.139-4.607 1.05 1.103 2.266 1.935 3.772 1.935 1.506 0 2.718-.832 3.773-1.935.488 1.807 1.13 3.514 2.135 4.607a67.507 67.507 0 0 1-11.806 0m16.282-2.655c0 1.637-.556 2.007-1.15 2.167-2.275.482-3.235-1.846-4.145-5.665 1.287-1.683 2.62-3.779 3.894-3.779.425 0 1.414.197 1.414 2.02z" }) + ] + } + ); +}); + +exports.default = SiAppsignal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.d.ts new file mode 100644 index 000000000..84f326d3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21375A"; +declare const SiAppsignal: IconType; +export { SiAppsignal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.mjs new file mode 100644 index 000000000..7e6dda6a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsignal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21375A"; +const SiAppsignal = React.forwardRef(function SiAppsignal2({ title = "AppSignal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.003 7.328c-1.781 0-3.055 1.57-4.368 3.318-.815-3.714-1.72-7.424-4.601-7.424-2.881 0-3.789 3.71-4.617 7.427-1.31-1.752-2.584-3.32-4.365-3.32C1.918 7.329 0 8.098 0 10.986v5.24c0 2.832 1.512 3.527 2.42 3.766 1.565.406 5.334.786 9.578.786s8.013-.38 9.579-.786c.907-.24 2.423-.934 2.423-3.766v-5.24c0-2.888-1.92-3.658-3.052-3.658m-8.914-2.469c1.726 0 2.384 3.406 3.3 7.493-1.004 1.238-2.072 2.236-3.3 2.236-1.228 0-2.292-.998-3.3-2.236.857-3.822 1.519-7.493 3.3-7.493M1.664 16.242v-5.24c0-1.823.981-2.02 1.414-2.02 1.257 0 2.62 2.096 3.893 3.78-.91 3.818-1.873 6.143-4.145 5.664-.593-.16-1.15-.537-1.15-2.167m4.46 2.655c1.006-1.093 1.638-2.8 2.139-4.607 1.05 1.103 2.266 1.935 3.772 1.935 1.506 0 2.718-.832 3.773-1.935.488 1.807 1.13 3.514 2.135 4.607a67.507 67.507 0 0 1-11.806 0m16.282-2.655c0 1.637-.556 2.007-1.15 2.167-2.275.482-3.235-1.846-4.145-5.665 1.287-1.683 2.62-3.779 3.894-3.779.425 0 1.414.197 1.414 2.02z" }) + ] + } + ); +}); + +export { SiAppsignal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.cjs new file mode 100644 index 000000000..729bba01c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A2F3D"; +const SiAppsmith = React__namespace.forwardRef(function SiAppsmith2({ title = "Appsmith", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.15 12.723v-1.845h-1.163v.422h.61v1.423h-.61v.421h1.774v-.421zm5.69 1.167v-.421H24v.421zm-.66-2.852q.213.214.213.604v1.502h-.552v-1.41q0-.43-.426-.43a.48.48 0 0 0-.36.152q-.147.151-.147.419v1.27h-.552v-3.023h.552v1.06q.259-.356.69-.356.37 0 .582.212zm-2.475.262h-.706v1.225q0 .11.06.153.058.044.198.043h.404v.422c-.12.012-.432.017-.505.017q-.368 0-.538-.138-.17-.138-.17-.441V11.3h-.513v-.422h.514v-.756h.55v.756h.706zm-4.447-.255q.208.22.209.602v1.497h-.553v-1.41q0-.43-.39-.43a.427.427 0 0 0-.343.152q-.129.151-.13.441v1.247h-.547v-1.41q0-.43-.395-.43a.421.421 0 0 0-.336.152q-.13.152-.13.442v1.247h-.552v-2.267h.536v.325q.232-.377.644-.377.518 0 .703.421.254-.421.702-.421.374 0 .582.22zm-5.83 1.379h.541q.022.21.138.299.117.087.367.087.448 0 .448-.272a.215.215 0 0 0-.097-.189q-.096-.066-.347-.11l-.259-.043q-.742-.123-.742-.685 0-.32.246-.503.245-.182.694-.182.97 0 1.001.767h-.522q-.009-.202-.127-.288-.118-.086-.351-.085-.396 0-.396.263a.207.207 0 0 0 .088.178q.088.063.29.099l.285.043q.413.075.6.238.186.162.186.452 0 .342-.263.527-.263.184-.742.184-.993.001-1.037-.78zm-.77-1.278q.272.325.272.865t-.272.86q-.276.324-.742.324-.466 0-.703-.346v1.154h-.552v-3.125h.531v.325q.246-.377.725-.377.463 0 .74.32zm-.874 1.594q.272 0 .43-.198.157-.197.153-.548 0-.347-.151-.53-.152-.182-.433-.182-.276 0-.43.19-.153.188-.153.54 0 .355.158.54.148.188.425.188zm-1.972-1.594q.272.325.272.865t-.272.86q-.276.324-.742.324-.466 0-.703-.346v1.154h-.552v-3.125h.531v.325q.246-.377.725-.377.464 0 .74.32zm-.874 1.594q.272 0 .43-.198.158-.197.153-.548 0-.347-.151-.53-.152-.182-.433-.182-.276 0-.43.19-.153.188-.153.54 0 .355.158.54.15.188.426.188zm-2.331.404q-.04-.07-.062-.276-.228.33-.728.33-.374 0-.595-.18Q0 12.837 0 12.516q0-.62.87-.706l.342-.03a.504.504 0 0 0 .245-.082.215.215 0 0 0 .075-.178q0-.145-.094-.213-.095-.068-.319-.068-.241 0-.347.081c-.07.055-.111.147-.122.28H.105q.048-.773 1.019-.774.944 0 .944.681v1.207q0 .3.092.43zm-.237-.484q.162-.143.162-.41v-.207a.473.473 0 0 1-.26.092l-.298.034q-.22.027-.313.103a.27.27 0 0 0-.094.222.276.276 0 0 0 .098.227q.099.081.283.081.26 0 .422-.142Zm14.282-2.142a.29.29 0 0 1-.09-.214.307.307 0 0 1 .307-.307.29.29 0 0 1 .215.09.3.3 0 0 1 .087.217.29.29 0 0 1-.09.215.295.295 0 0 1-.213.087.3.3 0 0 1-.216-.088z" }) + ] + } + ); +}); + +exports.default = SiAppsmith; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.d.ts new file mode 100644 index 000000000..a8ea5de65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A2F3D"; +declare const SiAppsmith: IconType; +export { SiAppsmith as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.mjs new file mode 100644 index 000000000..4ce422056 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppsmith.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A2F3D"; +const SiAppsmith = React.forwardRef(function SiAppsmith2({ title = "Appsmith", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.15 12.723v-1.845h-1.163v.422h.61v1.423h-.61v.421h1.774v-.421zm5.69 1.167v-.421H24v.421zm-.66-2.852q.213.214.213.604v1.502h-.552v-1.41q0-.43-.426-.43a.48.48 0 0 0-.36.152q-.147.151-.147.419v1.27h-.552v-3.023h.552v1.06q.259-.356.69-.356.37 0 .582.212zm-2.475.262h-.706v1.225q0 .11.06.153.058.044.198.043h.404v.422c-.12.012-.432.017-.505.017q-.368 0-.538-.138-.17-.138-.17-.441V11.3h-.513v-.422h.514v-.756h.55v.756h.706zm-4.447-.255q.208.22.209.602v1.497h-.553v-1.41q0-.43-.39-.43a.427.427 0 0 0-.343.152q-.129.151-.13.441v1.247h-.547v-1.41q0-.43-.395-.43a.421.421 0 0 0-.336.152q-.13.152-.13.442v1.247h-.552v-2.267h.536v.325q.232-.377.644-.377.518 0 .703.421.254-.421.702-.421.374 0 .582.22zm-5.83 1.379h.541q.022.21.138.299.117.087.367.087.448 0 .448-.272a.215.215 0 0 0-.097-.189q-.096-.066-.347-.11l-.259-.043q-.742-.123-.742-.685 0-.32.246-.503.245-.182.694-.182.97 0 1.001.767h-.522q-.009-.202-.127-.288-.118-.086-.351-.085-.396 0-.396.263a.207.207 0 0 0 .088.178q.088.063.29.099l.285.043q.413.075.6.238.186.162.186.452 0 .342-.263.527-.263.184-.742.184-.993.001-1.037-.78zm-.77-1.278q.272.325.272.865t-.272.86q-.276.324-.742.324-.466 0-.703-.346v1.154h-.552v-3.125h.531v.325q.246-.377.725-.377.463 0 .74.32zm-.874 1.594q.272 0 .43-.198.157-.197.153-.548 0-.347-.151-.53-.152-.182-.433-.182-.276 0-.43.19-.153.188-.153.54 0 .355.158.54.148.188.425.188zm-1.972-1.594q.272.325.272.865t-.272.86q-.276.324-.742.324-.466 0-.703-.346v1.154h-.552v-3.125h.531v.325q.246-.377.725-.377.464 0 .74.32zm-.874 1.594q.272 0 .43-.198.158-.197.153-.548 0-.347-.151-.53-.152-.182-.433-.182-.276 0-.43.19-.153.188-.153.54 0 .355.158.54.15.188.426.188zm-2.331.404q-.04-.07-.062-.276-.228.33-.728.33-.374 0-.595-.18Q0 12.837 0 12.516q0-.62.87-.706l.342-.03a.504.504 0 0 0 .245-.082.215.215 0 0 0 .075-.178q0-.145-.094-.213-.095-.068-.319-.068-.241 0-.347.081c-.07.055-.111.147-.122.28H.105q.048-.773 1.019-.774.944 0 .944.681v1.207q0 .3.092.43zm-.237-.484q.162-.143.162-.41v-.207a.473.473 0 0 1-.26.092l-.298.034q-.22.027-.313.103a.27.27 0 0 0-.094.222.276.276 0 0 0 .098.227q.099.081.283.081.26 0 .422-.142Zm14.282-2.142a.29.29 0 0 1-.09-.214.307.307 0 0 1 .307-.307.29.29 0 0 1 .215.09.3.3 0 0 1 .087.217.29.29 0 0 1-.09.215.295.295 0 0 1-.213.087.3.3 0 0 1-.216-.088z" }) + ] + } + ); +}); + +export { SiAppsmith as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.cjs new file mode 100644 index 000000000..5b42c090a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D96F6"; +const SiAppstore = React__namespace.forwardRef(function SiAppstore2({ title = "App Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.8086 14.9194l6.1107-11.0368c.0837-.1513.1682-.302.2437-.4584.0685-.142.1267-.2854.1646-.4403.0803-.3259.0588-.6656-.066-.9767-.1238-.3095-.3417-.5678-.6201-.7355a1.4175 1.4175 0 0 0-.921-.1924c-.3207.043-.6135.1935-.8443.4288-.1094.1118-.1996.2361-.2832.369-.092.1463-.175.2979-.259.4492l-.3864.6979-.3865-.6979c-.0837-.1515-.1667-.303-.2587-.4492-.0837-.1329-.1739-.2572-.2835-.369-.2305-.2353-.5233-.3857-.844-.429a1.4181 1.4181 0 0 0-.921.1926c-.2784.1677-.4964.426-.6203.7355-.1246.311-.1461.6508-.066.9767.038.155.0962.2984.1648.4403.0753.1564.1598.307.2437.4584l1.248 2.2543-4.8625 8.7825H2.0295c-.1676 0-.3351-.0007-.5026.0092-.1522.009-.3004.0284-.448.0714-.3108.0906-.5822.2798-.7783.548-.195.2665-.3006.5929-.3006.9279 0 .3352.1057.6612.3006.9277.196.2683.4675.4575.7782.548.1477.043.296.0623.4481.0715.1675.01.335.009.5026.009h13.0974c.0171-.0357.059-.1294.1-.2697.415-1.4151-.6156-2.843-2.0347-2.843zM3.113 18.5418l-.7922 1.5008c-.0818.1553-.1644.31-.2384.4705-.067.1458-.124.293-.1611.452-.0785.3346-.0576.6834.0645 1.0029.1212.3175.3346.583.607.7549.2727.172.5891.2416.9013.1975.3139-.044.6005-.1986.8263-.4402.1072-.1148.1954-.2424.2772-.3787.0902-.1503.1714-.3059.2535-.4612L6 19.4636c-.0896-.149-.9473-1.4704-2.887-.9218m20.5861-3.0056a1.4707 1.4707 0 0 0-.779-.5407c-.1476-.0425-.2961-.0616-.4483-.0705-.1678-.0099-.3352-.0091-.503-.0091H18.648l-4.3891-7.817c-.6655.7005-.9632 1.485-1.0773 2.1976-.1655 1.0333.0367 2.0934.546 3.0004l5.2741 9.3933c.084.1494.167.299.2591.4435.0837.131.1739.2537.2836.364.231.2323.5238.3809.8449.4232.3192.0424.643-.0244.9217-.1899.2784-.1653.4968-.4204.621-.7257.1246-.3072.146-.6425.0658-.9641-.0381-.1529-.0962-.2945-.165-.4346-.0753-.1543-.1598-.303-.2438-.4524l-1.216-2.1662h1.596c.1677 0 .3351.0009.5029-.009.1522-.009.3007-.028.4483-.0705a1.4707 1.4707 0 0 0 .779-.5407A1.5386 1.5386 0 0 0 24 16.452a1.539 1.539 0 0 0-.3009-.9158Z" }) + ] + } + ); +}); + +exports.default = SiAppstore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.d.ts new file mode 100644 index 000000000..be39ce8e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D96F6"; +declare const SiAppstore: IconType; +export { SiAppstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.mjs new file mode 100644 index 000000000..40bec416f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppstore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D96F6"; +const SiAppstore = React.forwardRef(function SiAppstore2({ title = "App Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.8086 14.9194l6.1107-11.0368c.0837-.1513.1682-.302.2437-.4584.0685-.142.1267-.2854.1646-.4403.0803-.3259.0588-.6656-.066-.9767-.1238-.3095-.3417-.5678-.6201-.7355a1.4175 1.4175 0 0 0-.921-.1924c-.3207.043-.6135.1935-.8443.4288-.1094.1118-.1996.2361-.2832.369-.092.1463-.175.2979-.259.4492l-.3864.6979-.3865-.6979c-.0837-.1515-.1667-.303-.2587-.4492-.0837-.1329-.1739-.2572-.2835-.369-.2305-.2353-.5233-.3857-.844-.429a1.4181 1.4181 0 0 0-.921.1926c-.2784.1677-.4964.426-.6203.7355-.1246.311-.1461.6508-.066.9767.038.155.0962.2984.1648.4403.0753.1564.1598.307.2437.4584l1.248 2.2543-4.8625 8.7825H2.0295c-.1676 0-.3351-.0007-.5026.0092-.1522.009-.3004.0284-.448.0714-.3108.0906-.5822.2798-.7783.548-.195.2665-.3006.5929-.3006.9279 0 .3352.1057.6612.3006.9277.196.2683.4675.4575.7782.548.1477.043.296.0623.4481.0715.1675.01.335.009.5026.009h13.0974c.0171-.0357.059-.1294.1-.2697.415-1.4151-.6156-2.843-2.0347-2.843zM3.113 18.5418l-.7922 1.5008c-.0818.1553-.1644.31-.2384.4705-.067.1458-.124.293-.1611.452-.0785.3346-.0576.6834.0645 1.0029.1212.3175.3346.583.607.7549.2727.172.5891.2416.9013.1975.3139-.044.6005-.1986.8263-.4402.1072-.1148.1954-.2424.2772-.3787.0902-.1503.1714-.3059.2535-.4612L6 19.4636c-.0896-.149-.9473-1.4704-2.887-.9218m20.5861-3.0056a1.4707 1.4707 0 0 0-.779-.5407c-.1476-.0425-.2961-.0616-.4483-.0705-.1678-.0099-.3352-.0091-.503-.0091H18.648l-4.3891-7.817c-.6655.7005-.9632 1.485-1.0773 2.1976-.1655 1.0333.0367 2.0934.546 3.0004l5.2741 9.3933c.084.1494.167.299.2591.4435.0837.131.1739.2537.2836.364.231.2323.5238.3809.8449.4232.3192.0424.643-.0244.9217-.1899.2784-.1653.4968-.4204.621-.7257.1246-.3072.146-.6425.0658-.9641-.0381-.1529-.0962-.2945-.165-.4346-.0753-.1543-.1598-.303-.2438-.4524l-1.216-2.1662h1.596c.1677 0 .3351.0009.5029-.009.1522-.009.3007-.028.4483-.0705a1.4707 1.4707 0 0 0 .779-.5407A1.5386 1.5386 0 0 0 24 16.452a1.539 1.539 0 0 0-.3009-.9158Z" }) + ] + } + ); +}); + +export { SiAppstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.cjs new file mode 100644 index 000000000..b279ddd6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B3E0"; +const SiAppveyor = React__namespace.forwardRef(function SiAppveyor2({ title = "AppVeyor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 12,0 C 18.6,0 24,5.4 24,12 24,18.6 18.6,24 12,24 5.4,24 0,18.6 0,12 0,5.4 5.4,0 12,0 Z m 2.94,14.34 C 16.26,12.66 16.08,10.26 14.4,9 12.78,7.74 10.38,8.04 9,9.72 7.68,11.4 7.86,13.8 9.54,15.06 c 1.68,1.26 4.08,0.96 5.4,-0.72 z m -6.42,7.8 c 0.72,0.3 2.28,0.6 3.06,0.6 l 5.22,-7.56 c 1.68,-2.52 1.26,-5.94 -1.08,-7.8 -2.1,-1.68 -5.04,-1.62 -7.14,0 l -7.26,5.58 c 0.18,1.92 0.72,2.88 0.72,2.94 l 4.14,-4.5 c -0.3,1.98 0.42,4.02 2.1,5.28 1.44,1.14 3.18,1.44 4.86,1.08 z" }) + ] + } + ); +}); + +exports.default = SiAppveyor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.d.ts new file mode 100644 index 000000000..079dae5ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B3E0"; +declare const SiAppveyor: IconType; +export { SiAppveyor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.mjs new file mode 100644 index 000000000..735b9a12f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppveyor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B3E0"; +const SiAppveyor = React.forwardRef(function SiAppveyor2({ title = "AppVeyor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 12,0 C 18.6,0 24,5.4 24,12 24,18.6 18.6,24 12,24 5.4,24 0,18.6 0,12 0,5.4 5.4,0 12,0 Z m 2.94,14.34 C 16.26,12.66 16.08,10.26 14.4,9 12.78,7.74 10.38,8.04 9,9.72 7.68,11.4 7.86,13.8 9.54,15.06 c 1.68,1.26 4.08,0.96 5.4,-0.72 z m -6.42,7.8 c 0.72,0.3 2.28,0.6 3.06,0.6 l 5.22,-7.56 c 1.68,-2.52 1.26,-5.94 -1.08,-7.8 -2.1,-1.68 -5.04,-1.62 -7.14,0 l -7.26,5.58 c 0.18,1.92 0.72,2.88 0.72,2.94 l 4.14,-4.5 c -0.3,1.98 0.42,4.02 2.1,5.28 1.44,1.14 3.18,1.44 4.86,1.08 z" }) + ] + } + ); +}); + +export { SiAppveyor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.cjs new file mode 100644 index 000000000..5c6fed9cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD366E"; +const SiAppwrite = React__namespace.forwardRef(function SiAppwrite2({ title = "Appwrite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 17.291v5.29H10.557A10.58 10.58 0 0 1 0 12.715v-1.43c.048-.735.174-1.463.374-2.171C1.63 4.673 5.713 1.419 10.557 1.419c4.844 0 8.927 3.254 10.183 7.695h-5.749a5.283 5.283 0 0 0-4.434-2.404 5.282 5.282 0 0 0-4.434 2.404A5.23 5.23 0 0 0 5.267 12a5.27 5.27 0 0 0 1.66 3.848 5.27 5.27 0 0 0 3.63 1.443H24Zm0-6.734v5.291h-9.813A5.276 5.276 0 0 0 15.848 12c0-.5-.07-.984-.199-1.443H24Z" }) + ] + } + ); +}); + +exports.default = SiAppwrite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.d.ts new file mode 100644 index 000000000..0ce1f9bab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD366E"; +declare const SiAppwrite: IconType; +export { SiAppwrite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.mjs new file mode 100644 index 000000000..0301c55df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAppwrite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD366E"; +const SiAppwrite = React.forwardRef(function SiAppwrite2({ title = "Appwrite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 17.291v5.29H10.557A10.58 10.58 0 0 1 0 12.715v-1.43c.048-.735.174-1.463.374-2.171C1.63 4.673 5.713 1.419 10.557 1.419c4.844 0 8.927 3.254 10.183 7.695h-5.749a5.283 5.283 0 0 0-4.434-2.404 5.282 5.282 0 0 0-4.434 2.404A5.23 5.23 0 0 0 5.267 12a5.27 5.27 0 0 0 1.66 3.848 5.27 5.27 0 0 0 3.63 1.443H24Zm0-6.734v5.291h-9.813A5.276 5.276 0 0 0 15.848 12c0-.5-.07-.984-.199-1.443H24Z" }) + ] + } + ); +}); + +export { SiAppwrite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.cjs new file mode 100644 index 000000000..e416ffb72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1904DA"; +const SiAqua = React__namespace.forwardRef(function SiAqua2({ title = "Aqua", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.7875 18.6811c.7687 0 .7695.7105.7695.7517.0003.2888-.1047.4303-.2229.5535l-3.6066 3.6127c-.2547.2557-.5963.4006-.9567.401H.879c-.1444.0002-.2889-.0409-.4238-.1226-.2628-.1525-.46-.4826-.4551-.8042v-4.3921h17.7874zM23.0632.0001c.3202-.0053.6491.1893.8014.4518.0814.1348.1354.279.1354.4234V13.757c0 .3601-.1402.7054-.3946.9602l-3.5466 3.5524c-.137.1371-.274.2744-.6027.2744-.0411 0-.8225 0-.8225-.7681V.0001h4.4296zM4.5539 5.482s.824 0 .824.7699v12.0934H.0001v-8.0648c0-.361.1397-.7072.3945-.9625L3.95 5.757c.1372-.1376.2744-.275.6039-.275zM18.2983.0002v5.377H6.255c-.7669 0-.7669-.8233-.7669-.8233 0-.3292.137-.4663.2739-.6035L9.3087.398a1.3545 1.3545 0 01.9585-.3977h8.0311z" }) + ] + } + ); +}); + +exports.default = SiAqua; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.d.ts new file mode 100644 index 000000000..afd90bcd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1904DA"; +declare const SiAqua: IconType; +export { SiAqua as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.mjs new file mode 100644 index 000000000..5293a1511 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAqua.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1904DA"; +const SiAqua = React.forwardRef(function SiAqua2({ title = "Aqua", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.7875 18.6811c.7687 0 .7695.7105.7695.7517.0003.2888-.1047.4303-.2229.5535l-3.6066 3.6127c-.2547.2557-.5963.4006-.9567.401H.879c-.1444.0002-.2889-.0409-.4238-.1226-.2628-.1525-.46-.4826-.4551-.8042v-4.3921h17.7874zM23.0632.0001c.3202-.0053.6491.1893.8014.4518.0814.1348.1354.279.1354.4234V13.757c0 .3601-.1402.7054-.3946.9602l-3.5466 3.5524c-.137.1371-.274.2744-.6027.2744-.0411 0-.8225 0-.8225-.7681V.0001h4.4296zM4.5539 5.482s.824 0 .824.7699v12.0934H.0001v-8.0648c0-.361.1397-.7072.3945-.9625L3.95 5.757c.1372-.1376.2744-.275.6039-.275zM18.2983.0002v5.377H6.255c-.7669 0-.7669-.8233-.7669-.8233 0-.3292.137-.4663.2739-.6035L9.3087.398a1.3545 1.3545 0 01.9585-.3977h8.0311z" }) + ] + } + ); +}); + +export { SiAqua as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAral.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAral.cjs new file mode 100644 index 000000000..16c5db45f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAral.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0063CB"; +const SiAral = React__namespace.forwardRef(function SiAral2({ title = "ARAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.393 10.02l-.48 1.959.99.001-.51-1.96zm3.892.082v1.187c.549-.002.958.03 1.229-.033.27-.062.404-.217.404-.592 0-.334-.12-.469-.385-.523-.264-.055-.672-.028-1.248-.04zm5.326-.079l-.48 1.96h.99l-.51-1.96zM11.996 0L0 11.998 12.004 24 24 12.004 11.996 0zM5.393 8.896c.366 0 .606.117.775.295.169.18.267.421.35.67l1.07 3.211s.134.276.144.567c.01.29-.104.599-.6.666-.355-.054-.536-.156-.657-.35-.122-.194-.184-.482-.305-.91H4.645c-.147.468-.195.757-.295.941-.1.184-.254.263-.616.317-.508-.054-.636-.369-.636-.67 0-.301.129-.588.129-.588l1.015-3.152c.08-.246.176-.495.348-.682.172-.187.42-.315.803-.315zm9.191.002c.366 0 .607.117.775.295.17.18.267.421.35.67l1.072 3.211s.135.276.145.567c.01.29-.104.599-.6.666-.356-.054-.536-.156-.658-.35-.122-.194-.186-.482-.307-.91h-1.525c-.147.468-.193.757-.293.941-.1.184-.256.263-.617.317-.509-.054-.635-.367-.635-.668 0-.301.127-.59.127-.59l1.016-3.152c.075-.233.17-.484.343-.674.174-.19.424-.323.807-.323zm3.346.002c.308 0 .483.114.58.291.097.178.117.418.117.672v3.207c.215.005 1.23 0 1.23 0 .29 0 .53.02.694.106.164.086.252.239.244.504-.01.361-.18.517-.406.582-.226.065-.509.039-.744.039h-1.766c-.375 0-.536-.165-.604-.436-.067-.27-.04-.645-.04-1.062v-2.94c-.014-.254.02-.496.126-.674.107-.177.288-.289.569-.289zm-8.645.104h1.098c.254 0 .51-.002.767.084.259.086.52.26.786.613.28.378.35.933.222 1.414-.128.481-.456.889-.972.969.187.348.804 1.283.804 1.283s.066.11.078.266c.012.155-.03.357-.25.539-.388.147-.633.106-.78.03-.149-.078-.2-.192-.2-.192s-.562-.964-.91-1.633h-.643v1.338s.01.154-.064.305c-.075.15-.236.298-.578.285-.327 0-.488-.155-.567-.309C7.997 13.842 8 13.69 8 13.69V9.861c0-.334.006-.549.17-.68.164-.13.486-.177 1.115-.177z" }) + ] + } + ); +}); + +exports.default = SiAral; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAral.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAral.d.ts new file mode 100644 index 000000000..185f4b8b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAral.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0063CB"; +declare const SiAral: IconType; +export { SiAral as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAral.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAral.mjs new file mode 100644 index 000000000..4ae2a9140 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAral.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0063CB"; +const SiAral = React.forwardRef(function SiAral2({ title = "ARAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.393 10.02l-.48 1.959.99.001-.51-1.96zm3.892.082v1.187c.549-.002.958.03 1.229-.033.27-.062.404-.217.404-.592 0-.334-.12-.469-.385-.523-.264-.055-.672-.028-1.248-.04zm5.326-.079l-.48 1.96h.99l-.51-1.96zM11.996 0L0 11.998 12.004 24 24 12.004 11.996 0zM5.393 8.896c.366 0 .606.117.775.295.169.18.267.421.35.67l1.07 3.211s.134.276.144.567c.01.29-.104.599-.6.666-.355-.054-.536-.156-.657-.35-.122-.194-.184-.482-.305-.91H4.645c-.147.468-.195.757-.295.941-.1.184-.254.263-.616.317-.508-.054-.636-.369-.636-.67 0-.301.129-.588.129-.588l1.015-3.152c.08-.246.176-.495.348-.682.172-.187.42-.315.803-.315zm9.191.002c.366 0 .607.117.775.295.17.18.267.421.35.67l1.072 3.211s.135.276.145.567c.01.29-.104.599-.6.666-.356-.054-.536-.156-.658-.35-.122-.194-.186-.482-.307-.91h-1.525c-.147.468-.193.757-.293.941-.1.184-.256.263-.617.317-.509-.054-.635-.367-.635-.668 0-.301.127-.59.127-.59l1.016-3.152c.075-.233.17-.484.343-.674.174-.19.424-.323.807-.323zm3.346.002c.308 0 .483.114.58.291.097.178.117.418.117.672v3.207c.215.005 1.23 0 1.23 0 .29 0 .53.02.694.106.164.086.252.239.244.504-.01.361-.18.517-.406.582-.226.065-.509.039-.744.039h-1.766c-.375 0-.536-.165-.604-.436-.067-.27-.04-.645-.04-1.062v-2.94c-.014-.254.02-.496.126-.674.107-.177.288-.289.569-.289zm-8.645.104h1.098c.254 0 .51-.002.767.084.259.086.52.26.786.613.28.378.35.933.222 1.414-.128.481-.456.889-.972.969.187.348.804 1.283.804 1.283s.066.11.078.266c.012.155-.03.357-.25.539-.388.147-.633.106-.78.03-.149-.078-.2-.192-.2-.192s-.562-.964-.91-1.633h-.643v1.338s.01.154-.064.305c-.075.15-.236.298-.578.285-.327 0-.488-.155-.567-.309C7.997 13.842 8 13.69 8 13.69V9.861c0-.334.006-.549.17-.68.164-.13.486-.177 1.115-.177z" }) + ] + } + ); +}); + +export { SiAral as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.cjs new file mode 100644 index 000000000..5c10d04ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DDDF72"; +const SiArangodb = React__namespace.forwardRef(function SiArangodb2({ title = "ArangoDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.885 3.75c-.32.007-.536.032-.61.041-.878.106-2.81.49-4.466 2.088-.921.89-1.501 2.153-1.783 2.826.251-.072.502-.13.75-.164.94-.131 1.8-.013 2.431.219.89-.158 1.474-.228 1.782-.227.953.004 2.003-.008 2.775.65.208.178.82.542.725 1.515-.084.867-.474 1.933-1.428 2.982-.574.632-1.686 1.444-3.059 2.15-.995.511-2.412 1.313-4.469 1.426-.331.019-.708.041-1.105.04-1.012-.004-2.48-.138-3.545-1.249-.221-.231-1.31-1.458-1.002-2.93.248-1.185 1.229-1.798 2.016-2.292.447-.281 1.05-.512 1.861-.754.585-.63 1.274-1.017 1.975-1.262-1.394.312-2.784.652-3.788 1.15-1.15.557-2.236 1.082-2.707 2.237-.287.707-.263 1.42-.191 1.892 0 0 .31 3.096 2.441 4.674 1.784 1.323 4.413 1.812 6.374 1.276 1.543-.294 3.015-1.738 4.24-3.004l.006.004c.392.186 1.295.584 2.027.963 1.692.873 2.864 1.054 3.47 1.16 1.317.23 3.368-.292 4.341-1.383.932-1.045 1.203-2.454.98-3.711-.067-.386-.066-1.073-.349-2.016-.222-.737-.333-1.104-.494-1.496-.31-.758-.705-1.373-1.295-2.137-1.382-1.784-2.072-2.679-3.2-3.39-1.834-1.16-3.74-1.297-4.703-1.278zm.713 1.135c.814.033 2.014.046 3.051.725.603.397 1.182.68 2.338 2.21 1.56 2.069 1.711 2.301 2.293 3.405.443.84.822 2.55.65 3.885-.05.387-.09 1.209-.95 2.021-1.157 1.093-3.13.97-3.337.946-.629-.077-1.113-.371-2.582-.934l-1.816-.744c-.121-.048-.245-.115-.37-.18.417-.499 1.182-1.488 1.497-2.111.231-.466.385-.985.488-1.37.078-.308.195-.765.244-1.204.025-.229.045-.463.049-.663.004-.207-.001-.244-.01-.402a4.156 4.156 0 0 0-.201-.926 2.408 2.408 0 0 0-.457-.748 2.623 2.623 0 0 0-.51-.367c-.208-.113-.474-.216-.646-.283-.32-.125-.585-.196-1.067-.256a5.006 5.006 0 0 0-.451-.016c-.547.005-1.274.08-2.338.237-.68.095-1.357.208-2.024.334l.002-.006c.69-1.402 1.67-2.392 3.35-2.983 1.075-.377 2.198-.595 2.797-.57zm.272 2.566a2.08 2.08 0 0 0-.721.112c.378.093.743.284 1.064.426.255.138.49.313.633.462.249.261.46.616.569.93.099.29.206.71.226 1.06.009.15.016.22.012.438a8.02 8.02 0 0 1-.053.711c-.054.488-.178.965-.256 1.272a7.829 7.829 0 0 1-.383 1.144c.239.004.47-.002.602-.025.937-.164 1.561-1.126 1.752-1.904.268-1.102-.285-2.02-.654-2.633-.349-.577-.963-1.384-2.073-1.834a2.09 2.09 0 0 0-.718-.159zM7.844 9.035a4.64 4.64 0 0 0-1.511.457c-.53.254-.99.648-1.573 1.335-.65.815-1.112 2.387-.76 2.81.18.218.275.24.34.283.901.436 1.724 1.035 3.068 1.114h1.118c.234.002.545-.05.632-.059 1.547-.254 3.605-1.349 3.526-2.88-.03-.573-.683-1.512-1.127-1.935-.431-.41-1.147-.788-1.454-.917-.266-.131-.576-.167-.888-.213-.47-.078-.972-.048-1.371.005z" }) + ] + } + ); +}); + +exports.default = SiArangodb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.d.ts new file mode 100644 index 000000000..303a93472 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DDDF72"; +declare const SiArangodb: IconType; +export { SiArangodb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.mjs new file mode 100644 index 000000000..f01c826e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArangodb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DDDF72"; +const SiArangodb = React.forwardRef(function SiArangodb2({ title = "ArangoDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.885 3.75c-.32.007-.536.032-.61.041-.878.106-2.81.49-4.466 2.088-.921.89-1.501 2.153-1.783 2.826.251-.072.502-.13.75-.164.94-.131 1.8-.013 2.431.219.89-.158 1.474-.228 1.782-.227.953.004 2.003-.008 2.775.65.208.178.82.542.725 1.515-.084.867-.474 1.933-1.428 2.982-.574.632-1.686 1.444-3.059 2.15-.995.511-2.412 1.313-4.469 1.426-.331.019-.708.041-1.105.04-1.012-.004-2.48-.138-3.545-1.249-.221-.231-1.31-1.458-1.002-2.93.248-1.185 1.229-1.798 2.016-2.292.447-.281 1.05-.512 1.861-.754.585-.63 1.274-1.017 1.975-1.262-1.394.312-2.784.652-3.788 1.15-1.15.557-2.236 1.082-2.707 2.237-.287.707-.263 1.42-.191 1.892 0 0 .31 3.096 2.441 4.674 1.784 1.323 4.413 1.812 6.374 1.276 1.543-.294 3.015-1.738 4.24-3.004l.006.004c.392.186 1.295.584 2.027.963 1.692.873 2.864 1.054 3.47 1.16 1.317.23 3.368-.292 4.341-1.383.932-1.045 1.203-2.454.98-3.711-.067-.386-.066-1.073-.349-2.016-.222-.737-.333-1.104-.494-1.496-.31-.758-.705-1.373-1.295-2.137-1.382-1.784-2.072-2.679-3.2-3.39-1.834-1.16-3.74-1.297-4.703-1.278zm.713 1.135c.814.033 2.014.046 3.051.725.603.397 1.182.68 2.338 2.21 1.56 2.069 1.711 2.301 2.293 3.405.443.84.822 2.55.65 3.885-.05.387-.09 1.209-.95 2.021-1.157 1.093-3.13.97-3.337.946-.629-.077-1.113-.371-2.582-.934l-1.816-.744c-.121-.048-.245-.115-.37-.18.417-.499 1.182-1.488 1.497-2.111.231-.466.385-.985.488-1.37.078-.308.195-.765.244-1.204.025-.229.045-.463.049-.663.004-.207-.001-.244-.01-.402a4.156 4.156 0 0 0-.201-.926 2.408 2.408 0 0 0-.457-.748 2.623 2.623 0 0 0-.51-.367c-.208-.113-.474-.216-.646-.283-.32-.125-.585-.196-1.067-.256a5.006 5.006 0 0 0-.451-.016c-.547.005-1.274.08-2.338.237-.68.095-1.357.208-2.024.334l.002-.006c.69-1.402 1.67-2.392 3.35-2.983 1.075-.377 2.198-.595 2.797-.57zm.272 2.566a2.08 2.08 0 0 0-.721.112c.378.093.743.284 1.064.426.255.138.49.313.633.462.249.261.46.616.569.93.099.29.206.71.226 1.06.009.15.016.22.012.438a8.02 8.02 0 0 1-.053.711c-.054.488-.178.965-.256 1.272a7.829 7.829 0 0 1-.383 1.144c.239.004.47-.002.602-.025.937-.164 1.561-1.126 1.752-1.904.268-1.102-.285-2.02-.654-2.633-.349-.577-.963-1.384-2.073-1.834a2.09 2.09 0 0 0-.718-.159zM7.844 9.035a4.64 4.64 0 0 0-1.511.457c-.53.254-.99.648-1.573 1.335-.65.815-1.112 2.387-.76 2.81.18.218.275.24.34.283.901.436 1.724 1.035 3.068 1.114h1.118c.234.002.545-.05.632-.059 1.547-.254 3.605-1.349 3.526-2.88-.03-.573-.683-1.512-1.127-1.935-.431-.41-1.147-.788-1.454-.917-.266-.131-.576-.167-.888-.213-.47-.078-.972-.048-1.371.005z" }) + ] + } + ); +}); + +export { SiArangodb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArc.cjs new file mode 100644 index 000000000..46685262f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FCBFBD"; +const SiArc = React__namespace.forwardRef(function SiArc2({ title = "Arc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9371 8.5089c.1471-.7147.0367-1.4661-.3364-2.0967-.4203-.7094-1.1035-1.1876-1.9075-1.3506a2.9178 2.9178 0 0 0-.5623-.0578h-.0105c-1.3768 0-2.5329.988-2.8061 2.3385-.1629.7935-.4782 1.5607-.9196 2.2701a.263.263 0 0 1-.2363.1205.2627.2627 0 0 1-.2209-.1468l-2.8587-5.9906c-.3626-.762-1.0142-1.361-1.8235-1.5975-1.3873-.4099-2.8166.2838-3.4052 1.524L5.897 9.7333c-.0788.1629-.31.1576-.3784-.0053v-.0052a2.8597 2.8597 0 0 0-2.6642-1.7972c-.3784 0-.7515.0736-1.1088.2207-1.4714.6148-2.1283 2.349-1.5187 3.8203.557 1.3295 1.4714 2.5855 2.659 3.668.084.0788.1103.1997.063.3048l-.9563 2.0074c-.6727 1.4188-.1314 3.1477 1.2664 3.8571.4099.2049.846.31 1.298.31 1.1035 0 2.123-.6411 2.5959-1.6395l.825-1.7289a.254.254 0 0 1 .3048-.1366c1.0037.2732 2.0127.4204 3.0058.4204 1.1193 0 2.2229-.1682 3.2896-.4782a.2626.2626 0 0 1 .3101.1366l.8145 1.7131c.4834 1.0195 1.4924 1.7131 2.6169 1.7184.4572 0 .8986-.0999 1.3138-.3101 1.403-.7094 1.939-2.4435 1.2664-3.8676L19.875 15.787c-.0473-.1051-.0263-.226.0578-.3048 1.9864-1.8497 3.4525-4.2723 4.0043-6.9733ZM6.2121 20.0172a1.835 1.835 0 0 1-.6764.7622 1.8352 1.8352 0 0 1-.9788.2835c-.2733 0-.5518-.063-.8093-.1891-.9038-.4467-1.2454-1.5713-.8093-2.4804l.7935-1.6658c.0684-.1471.2575-.1997.3837-.1051.1681.1209.3415.2365.5202.3521.6989.4467 1.4293.825 2.1808 1.1351.1419.0578.205.2154.1419.352l-.7462 1.5555Zm5.0763-2.0442c-4.2092 0-8.6548-2.8534-10.1262-6.4951a1.8286 1.8286 0 0 1 1.009-2.3805c.2259-.0893.4571-.1366.683-.1366.7252 0 1.4084.431 1.6974 1.1456.9196 2.2806 4.0043 4.2092 6.7368 4.2092.4204 0 .8408-.042 1.256-.1156a.2643.2643 0 0 1 .2837.1419l1.3768 2.9007c.0683.1471-.0105.3205-.1629.3626-.8986.2365-1.8182.3678-2.7536.3678Zm-.599-4.9291.6358-1.3348c.0526-.1051.205-.1051.2575 0l.6201 1.3033c.042.0841-.0158.1891-.1051.2049-.268.0368-.536.0578-.7988.0578a5.0634 5.0634 0 0 1-.4887-.0263c-.1103-.0157-.1629-.1208-.1208-.2049Zm8.4604 7.8246a1.831 1.831 0 0 1-2.0329-.2788 1.8292 1.8292 0 0 1-.4316-.5778l-4.987-10.4836c-.0998-.2102-.3994-.2102-.4939 0l-1.545 3.2529a.2623.2623 0 0 1-.3205.1366c-1.051-.3626-2.0495-.9774-2.7904-1.7184a.2552.2552 0 0 1-.0473-.2943l3.3421-7.031c.1156-.247.2943-.4677.5203-.6201 1.051-.6884 2.2806-.2575 2.7378.7041l6.8577 14.4248c.4309.9144.0946 2.0389-.8093 2.4856Zm-1.4451-9.6481a.258.258 0 0 1 .0315-.2732c.783-1.0037 1.3558-2.1756 1.6028-3.421.1734-.867.9354-1.4714 1.7919-1.4714.1472 0 .2943.0158.4467.0526.9722.2417 1.5344 1.2507 1.3295 2.2333-.4835 2.3017-1.6816 4.3879-3.3159 6.0222-.1313.1314-.3468.0946-.4256-.0683l-1.4609-3.0742Z" }) + ] + } + ); +}); + +exports.default = SiArc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArc.d.ts new file mode 100644 index 000000000..026eb4737 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FCBFBD"; +declare const SiArc: IconType; +export { SiArc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArc.mjs new file mode 100644 index 000000000..c8bfdc181 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FCBFBD"; +const SiArc = React.forwardRef(function SiArc2({ title = "Arc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9371 8.5089c.1471-.7147.0367-1.4661-.3364-2.0967-.4203-.7094-1.1035-1.1876-1.9075-1.3506a2.9178 2.9178 0 0 0-.5623-.0578h-.0105c-1.3768 0-2.5329.988-2.8061 2.3385-.1629.7935-.4782 1.5607-.9196 2.2701a.263.263 0 0 1-.2363.1205.2627.2627 0 0 1-.2209-.1468l-2.8587-5.9906c-.3626-.762-1.0142-1.361-1.8235-1.5975-1.3873-.4099-2.8166.2838-3.4052 1.524L5.897 9.7333c-.0788.1629-.31.1576-.3784-.0053v-.0052a2.8597 2.8597 0 0 0-2.6642-1.7972c-.3784 0-.7515.0736-1.1088.2207-1.4714.6148-2.1283 2.349-1.5187 3.8203.557 1.3295 1.4714 2.5855 2.659 3.668.084.0788.1103.1997.063.3048l-.9563 2.0074c-.6727 1.4188-.1314 3.1477 1.2664 3.8571.4099.2049.846.31 1.298.31 1.1035 0 2.123-.6411 2.5959-1.6395l.825-1.7289a.254.254 0 0 1 .3048-.1366c1.0037.2732 2.0127.4204 3.0058.4204 1.1193 0 2.2229-.1682 3.2896-.4782a.2626.2626 0 0 1 .3101.1366l.8145 1.7131c.4834 1.0195 1.4924 1.7131 2.6169 1.7184.4572 0 .8986-.0999 1.3138-.3101 1.403-.7094 1.939-2.4435 1.2664-3.8676L19.875 15.787c-.0473-.1051-.0263-.226.0578-.3048 1.9864-1.8497 3.4525-4.2723 4.0043-6.9733ZM6.2121 20.0172a1.835 1.835 0 0 1-.6764.7622 1.8352 1.8352 0 0 1-.9788.2835c-.2733 0-.5518-.063-.8093-.1891-.9038-.4467-1.2454-1.5713-.8093-2.4804l.7935-1.6658c.0684-.1471.2575-.1997.3837-.1051.1681.1209.3415.2365.5202.3521.6989.4467 1.4293.825 2.1808 1.1351.1419.0578.205.2154.1419.352l-.7462 1.5555Zm5.0763-2.0442c-4.2092 0-8.6548-2.8534-10.1262-6.4951a1.8286 1.8286 0 0 1 1.009-2.3805c.2259-.0893.4571-.1366.683-.1366.7252 0 1.4084.431 1.6974 1.1456.9196 2.2806 4.0043 4.2092 6.7368 4.2092.4204 0 .8408-.042 1.256-.1156a.2643.2643 0 0 1 .2837.1419l1.3768 2.9007c.0683.1471-.0105.3205-.1629.3626-.8986.2365-1.8182.3678-2.7536.3678Zm-.599-4.9291.6358-1.3348c.0526-.1051.205-.1051.2575 0l.6201 1.3033c.042.0841-.0158.1891-.1051.2049-.268.0368-.536.0578-.7988.0578a5.0634 5.0634 0 0 1-.4887-.0263c-.1103-.0157-.1629-.1208-.1208-.2049Zm8.4604 7.8246a1.831 1.831 0 0 1-2.0329-.2788 1.8292 1.8292 0 0 1-.4316-.5778l-4.987-10.4836c-.0998-.2102-.3994-.2102-.4939 0l-1.545 3.2529a.2623.2623 0 0 1-.3205.1366c-1.051-.3626-2.0495-.9774-2.7904-1.7184a.2552.2552 0 0 1-.0473-.2943l3.3421-7.031c.1156-.247.2943-.4677.5203-.6201 1.051-.6884 2.2806-.2575 2.7378.7041l6.8577 14.4248c.4309.9144.0946 2.0389-.8093 2.4856Zm-1.4451-9.6481a.258.258 0 0 1 .0315-.2732c.783-1.0037 1.3558-2.1756 1.6028-3.421.1734-.867.9354-1.4714 1.7919-1.4714.1472 0 .2943.0158.4467.0526.9722.2417 1.5344 1.2507 1.3295 2.2333-.4835 2.3017-1.6816 4.3879-3.3159 6.0222-.1313.1314-.3468.0946-.4256-.0683l-1.4609-3.0742Z" }) + ] + } + ); +}); + +export { SiArc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.cjs new file mode 100644 index 000000000..5c6a0fe59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C7AC3"; +const SiArcgis = React__namespace.forwardRef(function SiArcgis2({ title = "ArcGIS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a.84923.84923 0 0 0-.33766.07031l-8.5183 3.69444C2.1458 4.19776 1.4997 5.1816 1.4997 6.2697v13.2521l10.16264 4.40783c.21517.09333.46015.09407.67532.00073l8.5183-3.6959c.99824-.43301 1.64434-1.41685 1.64434-2.50495V4.47814L12.33766.06958C12.23007.02291 12.11516-.00005 12 0Zm0 4.83705c4.16294 0 7.53757 3.3746 7.53757 7.53757S16.163 19.91218 12 19.91218c-4.163 0-7.53757-3.37462-7.53757-7.53756S7.837 4.83705 12 4.83705zm-.3501 1.38871c-.89685-.02267-2.32742.2409-3.74645 1.6143.34958.55454.64544.97782.49 1.41801-.23127.65503-.5139.51378-1.07083.99466-.39567.34169.2067 1.01292-.31275 1.30595-.51945.29306-1.21315.6636-.94925 1.17557.2639.51196 1.4691.83013 1.95929 1.07522.49018.2451.92812.70605.6072 1.2371-.31403.51948-.53713 1.13083-.60134 1.60917 1.0549.94423 2.44706 1.51909 3.97423 1.51909 3.2928 0 5.81772-2.71048 5.96208-6.00017.04062-.92531-.93924-.93972-1.53447-.93972 0 0 .34061.92356.01831 1.43632-.3223.51278-.84968.76166-.83498 1.37699.01464.61533-.93743 1.5967-1.2598 1.9483-.32223.35163-.9228.74718-1.12796-.0586-.2051-.80579-.12596-1.47799.1084-2.04938.23442-.57136-.2174-.74707-.92068-.76174-.7032-.01463-1.0798-.10795-1.18656-1.19315-.08787-.89369 1.2429-1.84356 1.81426-1.84356.33406 0 1.45485.21963 1.50737-.34058.08056-.8593-.8204-1.04164-1.03934-1.60185C13.2877 7.58747 14.98596 6.60707 12 6.24993c-.10475-.01253-.22199-.02093-.3501-.02417z" }) + ] + } + ); +}); + +exports.default = SiArcgis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.d.ts new file mode 100644 index 000000000..e86eb375d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C7AC3"; +declare const SiArcgis: IconType; +export { SiArcgis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.mjs new file mode 100644 index 000000000..bef483328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArcgis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C7AC3"; +const SiArcgis = React.forwardRef(function SiArcgis2({ title = "ArcGIS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a.84923.84923 0 0 0-.33766.07031l-8.5183 3.69444C2.1458 4.19776 1.4997 5.1816 1.4997 6.2697v13.2521l10.16264 4.40783c.21517.09333.46015.09407.67532.00073l8.5183-3.6959c.99824-.43301 1.64434-1.41685 1.64434-2.50495V4.47814L12.33766.06958C12.23007.02291 12.11516-.00005 12 0Zm0 4.83705c4.16294 0 7.53757 3.3746 7.53757 7.53757S16.163 19.91218 12 19.91218c-4.163 0-7.53757-3.37462-7.53757-7.53756S7.837 4.83705 12 4.83705zm-.3501 1.38871c-.89685-.02267-2.32742.2409-3.74645 1.6143.34958.55454.64544.97782.49 1.41801-.23127.65503-.5139.51378-1.07083.99466-.39567.34169.2067 1.01292-.31275 1.30595-.51945.29306-1.21315.6636-.94925 1.17557.2639.51196 1.4691.83013 1.95929 1.07522.49018.2451.92812.70605.6072 1.2371-.31403.51948-.53713 1.13083-.60134 1.60917 1.0549.94423 2.44706 1.51909 3.97423 1.51909 3.2928 0 5.81772-2.71048 5.96208-6.00017.04062-.92531-.93924-.93972-1.53447-.93972 0 0 .34061.92356.01831 1.43632-.3223.51278-.84968.76166-.83498 1.37699.01464.61533-.93743 1.5967-1.2598 1.9483-.32223.35163-.9228.74718-1.12796-.0586-.2051-.80579-.12596-1.47799.1084-2.04938.23442-.57136-.2174-.74707-.92068-.76174-.7032-.01463-1.0798-.10795-1.18656-1.19315-.08787-.89369 1.2429-1.84356 1.81426-1.84356.33406 0 1.45485.21963 1.50737-.34058.08056-.8593-.8204-1.04164-1.03934-1.60185C13.2877 7.58747 14.98596 6.60707 12 6.24993c-.10475-.01253-.22199-.02093-.3501-.02417z" }) + ] + } + ); +}); + +export { SiArcgis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.cjs new file mode 100644 index 000000000..7d6db79d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D50A5"; +const SiArchicad = React__namespace.forwardRef(function SiArchicad2({ title = "Archicad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.5896 16.3222c-.779 0-1.4104-.6315-1.4104-1.4105 0-.779.6314-1.4104 1.4104-1.4104S24 14.1328 24 14.9117c0 .779-.6315 1.4105-1.4104 1.4105zM.1507 19.8272c-.35.6959-.0696 1.5438.6263 1.8938.6959.35 1.5438.0695 1.8938-.6263 0 0 7.8494-16.0114 14.2545-16.1487 4.2299-.0907 4.2313 5.642 4.2313 5.642 0 .779.6314 1.4104 1.4104 1.4104s1.4104-.6314 1.4104-1.4104c0 0 .0566-8.3813-7.0196-8.4569C8.7634 1.8711.1507 19.8272.1507 19.8272z" }) + ] + } + ); +}); + +exports.default = SiArchicad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.d.ts new file mode 100644 index 000000000..db7818f95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D50A5"; +declare const SiArchicad: IconType; +export { SiArchicad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.mjs new file mode 100644 index 000000000..050eeab8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchicad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D50A5"; +const SiArchicad = React.forwardRef(function SiArchicad2({ title = "Archicad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.5896 16.3222c-.779 0-1.4104-.6315-1.4104-1.4105 0-.779.6314-1.4104 1.4104-1.4104S24 14.1328 24 14.9117c0 .779-.6315 1.4105-1.4104 1.4105zM.1507 19.8272c-.35.6959-.0696 1.5438.6263 1.8938.6959.35 1.5438.0695 1.8938-.6263 0 0 7.8494-16.0114 14.2545-16.1487 4.2299-.0907 4.2313 5.642 4.2313 5.642 0 .779.6314 1.4104 1.4104 1.4104s1.4104-.6314 1.4104-1.4104c0 0 .0566-8.3813-7.0196-8.4569C8.7634 1.8711.1507 19.8272.1507 19.8272z" }) + ] + } + ); +}); + +export { SiArchicad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.cjs new file mode 100644 index 000000000..db324c6ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#990000"; +const SiArchiveofourown = React__namespace.forwardRef(function SiArchiveofourown2({ title = "Archive of Our Own", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.417 9.883c-.687 1.116-1.823 1.722-2.99 1.855-4.227.484-6.047-4.149-3.469-6.728 2.31-2.31 7.082-.9 7.005 2.899-.011.611-.166 1.357-.546 1.974zm-6.459-2.029c.142 3.596 4.764 3.682 5.687 1.054.815-2.324-1.12-4.199-3.19-3.897-1.523.221-2.553 1.411-2.497 2.843zM23.123 6.003c.284-.131.697-.412.837-.246.211.251-.459.475-.748.664-.918.6-1.731 1.227-2.477 2.049-.959 1.059-1.944 2.376-2.55 3.818.618.032 3.021.157 3.6 1.481.464 1.062-.387 2.156-1.32 2.627.663.414 1.81.945 1.745 1.898-.158 2.343-3.696 2.241-5.178.695-.244-.289-.358-.482-.25-.578.151-.134.326.186.676.476.225.187.377.251.572.354 1.301.683 3.339.403 3.478-.792.064-.554-.664-.955-1.217-1.204-.498-.224-1.514-.386-1.494-.952.02-.554.524-.45 1.03-.65.55-.217 1.004-.901 1.003-1.116-.005-.905-2.062-.888-3.221-.92-.275.606-.471 1.226-.692 2.158-.139.583-.151 1.897-.748 2.029-.737.164-1.014-.477-1.455-.991-.594-.69-1.436-1.637-1.942-2.223-3.033 1.002-5.392 2.091-8.256 3.712-1.311.742-2.063 1.59-2.545 1.354-.396-.194-.339-.633-.147-.887.393-.521.927-1.225 1.396-1.888.6-.849 1.054-1.667 1.373-2.445.692-1.688 1.23-4.72 1.475-5.859.088-.412.309-.348.322-.148.027.419-.237 2.047-.29 2.383-.436 2.781-.772 4.41-2.009 6.349 2.196-1.358 4.805-3.019 7.592-3.955C8.846 9.936 5.847 6.85 1.676 4.905 1.037 4.542 0 4.464 0 4.22c0-.271.781-.06 1.043.007 2.383.596 4.817 2.141 6.601 3.444 2.145 1.567 4.714 3.967 5.679 5.081.657-.226 2.286-.457 3.696-.496.752-1.58 2.55-4.018 4.788-5.442.413-.263.842-.594 1.316-.811zm-8.594 8.071c.423.428.742.934 1.11 1.398.174-.59.405-1.216.643-1.758-.619.082-1.281.203-1.753.36z" }) + ] + } + ); +}); + +exports.default = SiArchiveofourown; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.d.ts new file mode 100644 index 000000000..dcb6da36c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#990000"; +declare const SiArchiveofourown: IconType; +export { SiArchiveofourown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.mjs new file mode 100644 index 000000000..922f3f0bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchiveofourown.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#990000"; +const SiArchiveofourown = React.forwardRef(function SiArchiveofourown2({ title = "Archive of Our Own", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.417 9.883c-.687 1.116-1.823 1.722-2.99 1.855-4.227.484-6.047-4.149-3.469-6.728 2.31-2.31 7.082-.9 7.005 2.899-.011.611-.166 1.357-.546 1.974zm-6.459-2.029c.142 3.596 4.764 3.682 5.687 1.054.815-2.324-1.12-4.199-3.19-3.897-1.523.221-2.553 1.411-2.497 2.843zM23.123 6.003c.284-.131.697-.412.837-.246.211.251-.459.475-.748.664-.918.6-1.731 1.227-2.477 2.049-.959 1.059-1.944 2.376-2.55 3.818.618.032 3.021.157 3.6 1.481.464 1.062-.387 2.156-1.32 2.627.663.414 1.81.945 1.745 1.898-.158 2.343-3.696 2.241-5.178.695-.244-.289-.358-.482-.25-.578.151-.134.326.186.676.476.225.187.377.251.572.354 1.301.683 3.339.403 3.478-.792.064-.554-.664-.955-1.217-1.204-.498-.224-1.514-.386-1.494-.952.02-.554.524-.45 1.03-.65.55-.217 1.004-.901 1.003-1.116-.005-.905-2.062-.888-3.221-.92-.275.606-.471 1.226-.692 2.158-.139.583-.151 1.897-.748 2.029-.737.164-1.014-.477-1.455-.991-.594-.69-1.436-1.637-1.942-2.223-3.033 1.002-5.392 2.091-8.256 3.712-1.311.742-2.063 1.59-2.545 1.354-.396-.194-.339-.633-.147-.887.393-.521.927-1.225 1.396-1.888.6-.849 1.054-1.667 1.373-2.445.692-1.688 1.23-4.72 1.475-5.859.088-.412.309-.348.322-.148.027.419-.237 2.047-.29 2.383-.436 2.781-.772 4.41-2.009 6.349 2.196-1.358 4.805-3.019 7.592-3.955C8.846 9.936 5.847 6.85 1.676 4.905 1.037 4.542 0 4.464 0 4.22c0-.271.781-.06 1.043.007 2.383.596 4.817 2.141 6.601 3.444 2.145 1.567 4.714 3.967 5.679 5.081.657-.226 2.286-.457 3.696-.496.752-1.58 2.55-4.018 4.788-5.442.413-.263.842-.594 1.316-.811zm-8.594 8.071c.423.428.742.934 1.11 1.398.174-.59.405-1.216.643-1.758-.619.082-1.281.203-1.753.36z" }) + ] + } + ); +}); + +export { SiArchiveofourown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.cjs new file mode 100644 index 000000000..952d81d72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1793D1"; +const SiArchlinux = React__namespace.forwardRef(function SiArchlinux2({ title = "Arch Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.39.605C10.376 3.092 9.764 4.72 8.635 7.132c.693.734 1.543 1.589 2.923 2.554-1.484-.61-2.496-1.224-3.252-1.86C6.86 10.842 4.596 15.138 0 23.395c3.612-2.085 6.412-3.37 9.021-3.862a6.61 6.61 0 01-.171-1.547l.003-.115c.058-2.315 1.261-4.095 2.687-3.973 1.426.12 2.534 2.096 2.478 4.409a6.52 6.52 0 01-.146 1.243c2.58.505 5.352 1.787 8.914 3.844-.702-1.293-1.33-2.459-1.929-3.57-.943-.73-1.926-1.682-3.933-2.713 1.38.359 2.367.772 3.137 1.234-6.09-11.334-6.582-12.84-8.67-17.74zM22.898 21.36v-.623h-.234v-.084h.562v.084h-.234v.623h.331v-.707h.142l.167.5.034.107a2.26 2.26 0 01.038-.114l.17-.493H24v.707h-.091v-.593l-.206.593h-.084l-.205-.602v.602h-.091" }) + ] + } + ); +}); + +exports.default = SiArchlinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.d.ts new file mode 100644 index 000000000..6a54d0b88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1793D1"; +declare const SiArchlinux: IconType; +export { SiArchlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.mjs new file mode 100644 index 000000000..521f24261 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArchlinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1793D1"; +const SiArchlinux = React.forwardRef(function SiArchlinux2({ title = "Arch Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.39.605C10.376 3.092 9.764 4.72 8.635 7.132c.693.734 1.543 1.589 2.923 2.554-1.484-.61-2.496-1.224-3.252-1.86C6.86 10.842 4.596 15.138 0 23.395c3.612-2.085 6.412-3.37 9.021-3.862a6.61 6.61 0 01-.171-1.547l.003-.115c.058-2.315 1.261-4.095 2.687-3.973 1.426.12 2.534 2.096 2.478 4.409a6.52 6.52 0 01-.146 1.243c2.58.505 5.352 1.787 8.914 3.844-.702-1.293-1.33-2.459-1.929-3.57-.943-.73-1.926-1.682-3.933-2.713 1.38.359 2.367.772 3.137 1.234-6.09-11.334-6.582-12.84-8.67-17.74zM22.898 21.36v-.623h-.234v-.084h.562v.084h-.234v.623h.331v-.707h.142l.167.5.034.107a2.26 2.26 0 01.038-.114l.17-.493H24v.707h-.091v-.593l-.206.593h-.084l-.205-.602v.602h-.091" }) + ] + } + ); +}); + +export { SiArchlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.cjs new file mode 100644 index 000000000..cc88cba05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C61C3E"; +const SiArdour = React__namespace.forwardRef(function SiArdour2({ title = "Ardour", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1.606L0 22.394c1.45 0 .832-.885 1.565-.93.703 0 .559.44 1.044.44.846 0 .273-2.82 1.043-2.82.665 0 .48 2.038 1.044 2.038.288 0 .521-.811.521-1.81v-.945c0-1.304.234-2.364.522-2.364.288 0 .522 1.066.522 2.005 0 1.178.233 2.43.522 2.43.288 0 .521-1.263.521-2.805v-.44c0-1.69.234-3.065.522-3.065.288 0 .522 1.369.522 2.967 0 1.661.233 3.098.522 3.098.288 0 .521-1.437.521-3.18 0-1.737.234-3.146.522-3.146.288 0 .522 1.424.522 3.277 0 1.786.233 3.147.522 3.147.288 0 .521-1.367.521-2.87 0-1.386.234-2.657.522-2.657.288 0 .522 1.271.522 2.837v.472c0 1.415.233 2.56.521 2.56.289 0 .522-1.152.522-2.299 0-.973.234-1.989.522-1.989.288 0 .522 1.01.522 2.25v.57c0 1.058.233 1.908.521 1.908.289 0 .522-.84.522-1.614 0-.589.234-1.304.522-1.304.288 0 .522.709.522 1.581v.538c0 .696.233 1.272.521 1.272.595 0 .45-1.728 1.044-1.728.288 0 .522.43.522.962v.456c0 .385.233.685.521.685.59 0 .462-.782 1.044-.782.76 0 .197 1.076 1.043 1.076.512 0 .426-.18 1.044-.18.563 0 .493.359 1.565.359z" }) + ] + } + ); +}); + +exports.default = SiArdour; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.d.ts new file mode 100644 index 000000000..dfec01774 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C61C3E"; +declare const SiArdour: IconType; +export { SiArdour as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.mjs new file mode 100644 index 000000000..9c5d67496 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArdour.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C61C3E"; +const SiArdour = React.forwardRef(function SiArdour2({ title = "Ardour", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 1.606L0 22.394c1.45 0 .832-.885 1.565-.93.703 0 .559.44 1.044.44.846 0 .273-2.82 1.043-2.82.665 0 .48 2.038 1.044 2.038.288 0 .521-.811.521-1.81v-.945c0-1.304.234-2.364.522-2.364.288 0 .522 1.066.522 2.005 0 1.178.233 2.43.522 2.43.288 0 .521-1.263.521-2.805v-.44c0-1.69.234-3.065.522-3.065.288 0 .522 1.369.522 2.967 0 1.661.233 3.098.522 3.098.288 0 .521-1.437.521-3.18 0-1.737.234-3.146.522-3.146.288 0 .522 1.424.522 3.277 0 1.786.233 3.147.522 3.147.288 0 .521-1.367.521-2.87 0-1.386.234-2.657.522-2.657.288 0 .522 1.271.522 2.837v.472c0 1.415.233 2.56.521 2.56.289 0 .522-1.152.522-2.299 0-.973.234-1.989.522-1.989.288 0 .522 1.01.522 2.25v.57c0 1.058.233 1.908.521 1.908.289 0 .522-.84.522-1.614 0-.589.234-1.304.522-1.304.288 0 .522.709.522 1.581v.538c0 .696.233 1.272.521 1.272.595 0 .45-1.728 1.044-1.728.288 0 .522.43.522.962v.456c0 .385.233.685.521.685.59 0 .462-.782 1.044-.782.76 0 .197 1.076 1.043 1.076.512 0 .426-.18 1.044-.18.563 0 .493.359 1.565.359z" }) + ] + } + ); +}); + +export { SiArdour as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.cjs new file mode 100644 index 000000000..b011c1e8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00878F"; +const SiArduino = React__namespace.forwardRef(function SiArduino2({ title = "Arduino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.087 6.146c-.3 0-.607.017-.907.069-2.532.367-4.23 2.239-5.18 3.674-.95-1.435-2.648-3.307-5.18-3.674a6.49 6.49 0 0 0-.907-.069C2.648 6.146 0 8.77 0 12s2.656 5.854 5.913 5.854c.3 0 .607-.017.916-.069 2.531-.376 4.23-2.247 5.18-3.683.949 1.436 2.647 3.307 5.18 3.683.299.043.607.069.915.069C21.344 17.854 24 15.23 24 12s-2.656-5.854-5.913-5.854zM6.53 15.734a3.837 3.837 0 0 1-.625.043c-2.148 0-3.889-1.7-3.889-3.777 0-2.085 1.749-3.777 3.898-3.777.208 0 .416.017.624.043 2.39.35 3.847 2.768 4.347 3.734-.508.974-1.974 3.384-4.355 3.734zm11.558.043c-.208 0-.416-.017-.624-.043-2.39-.35-3.856-2.768-4.347-3.734.491-.966 1.957-3.384 4.347-3.734.208-.026.416-.043.624-.043 2.149 0 3.89 1.7 3.89 3.777 0 2.085-1.75 3.777-3.89 3.777zm1.65-4.404v1.134h-1.205v1.182h-1.156v-1.182H16.17v-1.134h1.206V10.19h1.156v1.183h1.206zM4.246 12.498H7.82v-1.125H4.245v1.125z" }) + ] + } + ); +}); + +exports.default = SiArduino; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.d.ts new file mode 100644 index 000000000..35ad55441 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00878F"; +declare const SiArduino: IconType; +export { SiArduino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.mjs new file mode 100644 index 000000000..64f0a3332 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArduino.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00878F"; +const SiArduino = React.forwardRef(function SiArduino2({ title = "Arduino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.087 6.146c-.3 0-.607.017-.907.069-2.532.367-4.23 2.239-5.18 3.674-.95-1.435-2.648-3.307-5.18-3.674a6.49 6.49 0 0 0-.907-.069C2.648 6.146 0 8.77 0 12s2.656 5.854 5.913 5.854c.3 0 .607-.017.916-.069 2.531-.376 4.23-2.247 5.18-3.683.949 1.436 2.647 3.307 5.18 3.683.299.043.607.069.915.069C21.344 17.854 24 15.23 24 12s-2.656-5.854-5.913-5.854zM6.53 15.734a3.837 3.837 0 0 1-.625.043c-2.148 0-3.889-1.7-3.889-3.777 0-2.085 1.749-3.777 3.898-3.777.208 0 .416.017.624.043 2.39.35 3.847 2.768 4.347 3.734-.508.974-1.974 3.384-4.355 3.734zm11.558.043c-.208 0-.416-.017-.624-.043-2.39-.35-3.856-2.768-4.347-3.734.491-.966 1.957-3.384 4.347-3.734.208-.026.416-.043.624-.043 2.149 0 3.89 1.7 3.89 3.777 0 2.085-1.75 3.777-3.89 3.777zm1.65-4.404v1.134h-1.205v1.182h-1.156v-1.182H16.17v-1.134h1.206V10.19h1.156v1.183h1.206zM4.246 12.498H7.82v-1.125H4.245v1.125z" }) + ] + } + ); +}); + +export { SiArduino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.cjs new file mode 100644 index 000000000..b824cc765 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF7B4D"; +const SiArgo = React__namespace.forwardRef(function SiArgo2({ title = "Argo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.581 0c.436.037.871.1 1.299.186 1.679.383 3.121 1.213 4.382 2.365 1.161 1.06 1.917 2.372 2.335 3.881.089.321.216.56.586.624.205.035.238.245.239.43.003.646.002 1.294.002 1.94l-.002 1.21c-.001.356-.116.479-.466.474-.211-.003-.293.119-.344.291-.146.489-.33.966-.552 1.426-.818 1.682-2.084 2.938-3.688 3.87-.077.045-.155.088-.233.131-.252.137-.258.146-.155.415.114.299.358.529.664.625.269.096.553.134.827.21a.672.672 0 0 1 .236.094c-.066.082-.156.067-.231.082-.36.073-.713.184-1.086.17a1.275 1.275 0 0 1-.438-.064c-.114-.045-.152-.006-.176.109a5.354 5.354 0 0 0-.084.92c-.015.617-.071 1.23-.112 1.844-.042.598-.018.651.558.842.281.094.563.187.842.286.069.024.15.038.192.117-.04.057-.098.035-.146.035-.493.003-.985.005-1.478.001-.524-.005-.806-.282-.845-.803-.055-.762-.12-1.524-.182-2.286a.947.947 0 0 0-.026-.12c-.079.455-.065.879-.084 1.298-.023.528-.008 1.057-.007 1.584 0 .27.086.388.335.483.359.135.711.295 1.114.262.141-.012.276.062.402.129.032.017.073.033.069.073-.004.043-.049.047-.084.045-.657-.019-1.317.065-1.972-.028-.323-.046-.533-.236-.631-.552-.094-.303-.114-.617-.137-.93-.046-.626-.078-1.253-.116-1.88a.222.222 0 0 0-.061-.171.282.282 0 0 0-.031.193c-.002.956-.002 1.911-.001 2.866 0 .388.123.575.494.708.481.172.976.298 1.47.423.11.028.225.047.242.192h-1.852c-.051-.01-.103-.022-.155-.03-.701-.1-1.001-.372-1.143-1.042l-.067-.331-.226-1.103c-.069.12-.118.25-.144.386-.083.399-.151.802-.243 1.2-.113.493-.444.763-.932.857l-.33.063H8.558c.057-.171.216-.185.355-.221.476-.127.96-.223 1.417-.409a.603.603 0 0 0 .397-.521c.058-.435.002-.865-.013-1.296a1.528 1.528 0 0 0-.078-.315.405.405 0 0 0-.071.207c-.026.296-.049.591-.075.886-.038.432-.273.716-.679.81a1.702 1.702 0 0 1-.37.045c-.557.003-1.115-.001-1.673-.005-.048 0-.109.019-.148-.065.178-.103.377-.168.582-.187a5.67 5.67 0 0 0 .939-.193c.42-.114.522-.249.512-.687-.023-.931-.091-1.86-.069-2.791.004-.184.001-.368.001-.551a2.387 2.387 0 0 0-.05.385 40.299 40.299 0 0 1-.186 2.623c-.052.513-.296.748-.804.805-.446.051-.889.002-1.332-.02-.108-.006-.234.012-.339-.064.043-.066.106-.07.16-.087.362-.115.725-.224 1.086-.344.246-.081.35-.235.355-.492a2.241 2.241 0 0 0-.003-.232 45.315 45.315 0 0 1-.105-2.149 5.487 5.487 0 0 0-.035-.478c-.024-.188-.131-.287-.295-.258-.505.092-.99-.006-1.473-.139-.059-.016-.134-.007-.178-.088a.986.986 0 0 1 .285-.09c.255-.052.507-.121.753-.208.312-.112.564-.347.695-.651.089-.203.056-.317-.112-.398-1.418-.683-2.512-1.73-3.391-3.017a8.152 8.152 0 0 1-1.123-2.447c-.067-.246-.156-.3-.383-.26-.306.053-.401.006-.535-.273v-3.49c.144-.303.205-.341.534-.329.235.01.247-.004.309-.242.396-1.508 1.082-2.861 2.171-3.988C6.9 1.42 8.523.631 10.34.203c.456-.108.922-.15 1.387-.203h.854Zm7.974 8.948a7.34 7.34 0 0 0-.048-.938 8.353 8.353 0 0 0-.099-.65c-.598-2.964-2.344-5.02-5.051-6.268-1.553-.715-3.21-.835-4.878-.511-3.248.633-5.396 2.583-6.539 5.652-.436 1.173-.495 2.406-.37 3.65.087.935.339 1.846.745 2.694.585 1.213 1.444 2.207 2.477 3.058.343.286.719.528 1.121.719.235.111.247.105.245-.146.006-.16.003-.32-.009-.48-.125-1.02-.142-2.045-.169-3.069a.392.392 0 0 0-.184-.353c-.385-.268-.713-.592-.921-1.019-.474-.97-.372-2.361.813-3.215.136-.097.217-.19.198-.373a1.724 1.724 0 0 1 .031-.442c.177-1.187.748-2.138 1.722-2.84.68-.492 1.442-.772 2.286-.782.483-.007.953.11 1.414.244 1.609.467 2.846 2.07 2.845 3.697a.64.64 0 0 0 .268.565c.463.371.821.83.943 1.426.22 1.077-.083 1.982-.979 2.634-.266.194-.347.406-.333.698.002.047 0 .095-.002.142l-.062 1.439c-.025.586-.138 1.165-.117 1.754.008.223.006.226.201.128a7.46 7.46 0 0 0 2.393-1.903c1.32-1.577 2.074-3.372 2.059-5.511ZM9.117 12.102c1.489.021 2.443-1.578 1.716-2.879a1.937 1.937 0 0 0-1.699-.991c-1.094-.004-1.954.822-1.958 1.881-.005 1.148.813 1.985 1.941 1.989Zm5.794 0c1.101.002 1.935-.823 1.935-1.917 0-1.091-.846-1.949-1.92-1.947-1.064.003-1.94.866-1.943 1.915-.003 1.105.831 1.948 1.928 1.949Zm-1.472 1.937c-.208.128-.407.277-.63.384-.536.257-1.063.257-1.579-.048-.158-.094-.308-.201-.464-.298-.047-.028-.092-.103-.15-.062-.044.03-.01.1-.001.151.037.179.064.362.082.544.027.565.293.992.742 1.31a.984.984 0 0 0 .791.186c.565-.119 1.025-.614 1.124-1.218.043-.266.005-.544.109-.803a.133.133 0 0 0-.024-.146Zm-8.78-4.92c-.012-1.102.143-2.055.54-2.961.633-1.443 1.642-2.553 2.98-3.374a.378.378 0 0 1 .459.067c.06.06.036.118.01.178a1.09 1.09 0 0 1-.48.51c-1.079.639-1.829 1.571-2.357 2.688a6.325 6.325 0 0 0-.618 2.986c.055 1.309.439 2.516 1.213 3.588.088.104.148.23.173.365.01.08.059.168-.031.228a.312.312 0 0 1-.288.041.502.502 0 0 1-.234-.185c-.72-.979-1.193-2.056-1.331-3.273-.036-.326-.004-.653-.036-.858ZM8.94 2.34a.373.373 0 0 1 .378-.382c.211.001.409.226.416.473.004.138-.309.39-.476.386-.189-.005-.318-.2-.318-.477Zm-.465 7.48a.609.609 0 0 1 .586-.631c.38-.003.671.271.675.633.004.356-.27.622-.639.621-.38-.002-.621-.241-.622-.623Zm6.496.623c-.381-.002-.625-.255-.621-.646a.635.635 0 0 1 .596-.613.656.656 0 0 1 .669.643c.001.354-.275.618-.644.616Z" }) + ] + } + ); +}); + +exports.default = SiArgo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.d.ts new file mode 100644 index 000000000..59190590e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF7B4D"; +declare const SiArgo: IconType; +export { SiArgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.mjs new file mode 100644 index 000000000..85ecf7cb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArgo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF7B4D"; +const SiArgo = React.forwardRef(function SiArgo2({ title = "Argo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.581 0c.436.037.871.1 1.299.186 1.679.383 3.121 1.213 4.382 2.365 1.161 1.06 1.917 2.372 2.335 3.881.089.321.216.56.586.624.205.035.238.245.239.43.003.646.002 1.294.002 1.94l-.002 1.21c-.001.356-.116.479-.466.474-.211-.003-.293.119-.344.291-.146.489-.33.966-.552 1.426-.818 1.682-2.084 2.938-3.688 3.87-.077.045-.155.088-.233.131-.252.137-.258.146-.155.415.114.299.358.529.664.625.269.096.553.134.827.21a.672.672 0 0 1 .236.094c-.066.082-.156.067-.231.082-.36.073-.713.184-1.086.17a1.275 1.275 0 0 1-.438-.064c-.114-.045-.152-.006-.176.109a5.354 5.354 0 0 0-.084.92c-.015.617-.071 1.23-.112 1.844-.042.598-.018.651.558.842.281.094.563.187.842.286.069.024.15.038.192.117-.04.057-.098.035-.146.035-.493.003-.985.005-1.478.001-.524-.005-.806-.282-.845-.803-.055-.762-.12-1.524-.182-2.286a.947.947 0 0 0-.026-.12c-.079.455-.065.879-.084 1.298-.023.528-.008 1.057-.007 1.584 0 .27.086.388.335.483.359.135.711.295 1.114.262.141-.012.276.062.402.129.032.017.073.033.069.073-.004.043-.049.047-.084.045-.657-.019-1.317.065-1.972-.028-.323-.046-.533-.236-.631-.552-.094-.303-.114-.617-.137-.93-.046-.626-.078-1.253-.116-1.88a.222.222 0 0 0-.061-.171.282.282 0 0 0-.031.193c-.002.956-.002 1.911-.001 2.866 0 .388.123.575.494.708.481.172.976.298 1.47.423.11.028.225.047.242.192h-1.852c-.051-.01-.103-.022-.155-.03-.701-.1-1.001-.372-1.143-1.042l-.067-.331-.226-1.103c-.069.12-.118.25-.144.386-.083.399-.151.802-.243 1.2-.113.493-.444.763-.932.857l-.33.063H8.558c.057-.171.216-.185.355-.221.476-.127.96-.223 1.417-.409a.603.603 0 0 0 .397-.521c.058-.435.002-.865-.013-1.296a1.528 1.528 0 0 0-.078-.315.405.405 0 0 0-.071.207c-.026.296-.049.591-.075.886-.038.432-.273.716-.679.81a1.702 1.702 0 0 1-.37.045c-.557.003-1.115-.001-1.673-.005-.048 0-.109.019-.148-.065.178-.103.377-.168.582-.187a5.67 5.67 0 0 0 .939-.193c.42-.114.522-.249.512-.687-.023-.931-.091-1.86-.069-2.791.004-.184.001-.368.001-.551a2.387 2.387 0 0 0-.05.385 40.299 40.299 0 0 1-.186 2.623c-.052.513-.296.748-.804.805-.446.051-.889.002-1.332-.02-.108-.006-.234.012-.339-.064.043-.066.106-.07.16-.087.362-.115.725-.224 1.086-.344.246-.081.35-.235.355-.492a2.241 2.241 0 0 0-.003-.232 45.315 45.315 0 0 1-.105-2.149 5.487 5.487 0 0 0-.035-.478c-.024-.188-.131-.287-.295-.258-.505.092-.99-.006-1.473-.139-.059-.016-.134-.007-.178-.088a.986.986 0 0 1 .285-.09c.255-.052.507-.121.753-.208.312-.112.564-.347.695-.651.089-.203.056-.317-.112-.398-1.418-.683-2.512-1.73-3.391-3.017a8.152 8.152 0 0 1-1.123-2.447c-.067-.246-.156-.3-.383-.26-.306.053-.401.006-.535-.273v-3.49c.144-.303.205-.341.534-.329.235.01.247-.004.309-.242.396-1.508 1.082-2.861 2.171-3.988C6.9 1.42 8.523.631 10.34.203c.456-.108.922-.15 1.387-.203h.854Zm7.974 8.948a7.34 7.34 0 0 0-.048-.938 8.353 8.353 0 0 0-.099-.65c-.598-2.964-2.344-5.02-5.051-6.268-1.553-.715-3.21-.835-4.878-.511-3.248.633-5.396 2.583-6.539 5.652-.436 1.173-.495 2.406-.37 3.65.087.935.339 1.846.745 2.694.585 1.213 1.444 2.207 2.477 3.058.343.286.719.528 1.121.719.235.111.247.105.245-.146.006-.16.003-.32-.009-.48-.125-1.02-.142-2.045-.169-3.069a.392.392 0 0 0-.184-.353c-.385-.268-.713-.592-.921-1.019-.474-.97-.372-2.361.813-3.215.136-.097.217-.19.198-.373a1.724 1.724 0 0 1 .031-.442c.177-1.187.748-2.138 1.722-2.84.68-.492 1.442-.772 2.286-.782.483-.007.953.11 1.414.244 1.609.467 2.846 2.07 2.845 3.697a.64.64 0 0 0 .268.565c.463.371.821.83.943 1.426.22 1.077-.083 1.982-.979 2.634-.266.194-.347.406-.333.698.002.047 0 .095-.002.142l-.062 1.439c-.025.586-.138 1.165-.117 1.754.008.223.006.226.201.128a7.46 7.46 0 0 0 2.393-1.903c1.32-1.577 2.074-3.372 2.059-5.511ZM9.117 12.102c1.489.021 2.443-1.578 1.716-2.879a1.937 1.937 0 0 0-1.699-.991c-1.094-.004-1.954.822-1.958 1.881-.005 1.148.813 1.985 1.941 1.989Zm5.794 0c1.101.002 1.935-.823 1.935-1.917 0-1.091-.846-1.949-1.92-1.947-1.064.003-1.94.866-1.943 1.915-.003 1.105.831 1.948 1.928 1.949Zm-1.472 1.937c-.208.128-.407.277-.63.384-.536.257-1.063.257-1.579-.048-.158-.094-.308-.201-.464-.298-.047-.028-.092-.103-.15-.062-.044.03-.01.1-.001.151.037.179.064.362.082.544.027.565.293.992.742 1.31a.984.984 0 0 0 .791.186c.565-.119 1.025-.614 1.124-1.218.043-.266.005-.544.109-.803a.133.133 0 0 0-.024-.146Zm-8.78-4.92c-.012-1.102.143-2.055.54-2.961.633-1.443 1.642-2.553 2.98-3.374a.378.378 0 0 1 .459.067c.06.06.036.118.01.178a1.09 1.09 0 0 1-.48.51c-1.079.639-1.829 1.571-2.357 2.688a6.325 6.325 0 0 0-.618 2.986c.055 1.309.439 2.516 1.213 3.588.088.104.148.23.173.365.01.08.059.168-.031.228a.312.312 0 0 1-.288.041.502.502 0 0 1-.234-.185c-.72-.979-1.193-2.056-1.331-3.273-.036-.326-.004-.653-.036-.858ZM8.94 2.34a.373.373 0 0 1 .378-.382c.211.001.409.226.416.473.004.138-.309.39-.476.386-.189-.005-.318-.2-.318-.477Zm-.465 7.48a.609.609 0 0 1 .586-.631c.38-.003.671.271.675.633.004.356-.27.622-.639.621-.38-.002-.621-.241-.622-.623Zm6.496.623c-.381-.002-.625-.255-.621-.646a.635.635 0 0 1 .596-.613.656.656 0 0 1 .669.643c.001.354-.275.618-.644.616Z" }) + ] + } + ); +}); + +export { SiArgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.cjs new file mode 100644 index 000000000..93774f8d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA291C"; +const SiArgos = React__namespace.forwardRef(function SiArgos2({ title = "Argos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 1.738v20.524h24V1.738zm5.93 5.546c.178 0 .434 0 .638.026.23 0 .307.077.333.281.051.792.23 4.217.256 4.907 0 .18-.103.23-.23.23H6.21c-.179 0-.256-.102-.256-.23 0-.255-.026-.92-.026-.92H3.987c-.204.358-.434.767-.537.946-.076.153-.178.179-.306.179h-.818c-.18 0-.23-.128-.153-.281C3.272 10.428 4.677 8.255 5.29 7.54c.178-.23.383-.23.638-.256zM5.831 8.48a.095.095 0 0 0-.03.032c-.46.562-1.048 1.483-1.38 2.122h1.507S5.88 9.15 5.853 8.51c0 0 0-.043-.021-.032zm14.666.237c.614 0 1.125.28 1.355.664.102.154.076.255-.077.332a3.512 3.512 0 0 1-.434.205c-.128.025-.23.025-.333-.102-.434-.512-1.047-.333-1.073-.051-.026.255.256.357.639.46.588.178 1.252.485 1.048 1.277-.205.818-.997 1.227-1.917 1.227-.588 0-1.253-.178-1.508-.792-.051-.128-.026-.23.077-.28.153-.103.307-.18.46-.231.128-.026.23 0 .306.102.18.256.384.384.716.384.307 0 .639-.129.613-.41-.025-.255-.408-.357-.613-.409-.383-.102-1.176-.28-1.176-.92 0-.792.741-1.38 1.917-1.456zm-3.834.076c1.227 0 1.79.818 1.534 1.994-.23 1.176-1.15 1.993-2.377 1.993-1.227 0-1.789-.817-1.533-1.993.255-1.176 1.15-1.994 2.376-1.994zm-4.421.026c.562 0 .869.332.945.46 0 .025.026.025.026 0 .025-.077.051-.128.051-.153.026-.128.128-.23.307-.23h.51c.154 0 .282.102.231.306a96.306 96.306 0 0 1-.741 3.067c-.384 1.482-1.15 2.224-2.3 2.224-.46 0-1.227-.128-1.56-.664-.076-.103-.102-.205.077-.333.154-.102.332-.153.486-.205.153-.05.204-.05.357.052a.906.906 0 0 0 .563.179c.409 0 .946-.23 1.201-1.1.026-.05 0-.05-.025-.025-.18.23-.563.383-.997.383-.537-.025-.869-.204-1.074-.536-.23-.358-.204-.997-.025-1.56.28-.894.971-1.865 1.968-1.865zm-3.86.026h.614c.127 0 .179.101.153.204-.025.102-.051.179-.051.204 0 .026.025.026.025.026.46-.41 1.049-.409 1.688-.409.102 0 .153.102.076.179-.23.23-.358.409-.511.639-.102.153-.18.204-.358.204-.409.026-.613.102-.767.205-.153.102-.307.434-.383.818a48.306 48.306 0 0 1-.332 1.61.224.224 0 0 1-.23.179h-.742c-.102 0-.178-.077-.153-.18.128-.715.64-3.117.716-3.475.026-.154.128-.204.256-.204zm8.205.792c-.69 0-.971.562-1.15 1.15-.154.588-.23 1.15.46 1.15.69 0 .97-.562 1.15-1.15.179-.588.23-1.15-.46-1.15zm-4.217.025c-.512-.025-.87.384-1.1 1.15-.127.41-.153 1.023.384 1.1.537.025.895-.358 1.099-1.1.128-.485.256-1.124-.383-1.15zM2.338 13.958a.32.32 0 0 1 .09.023c3.68 1.508 6.058 2.07 9.406 2.07 3.348 0 5.725-.562 9.43-2.07.256-.102.41.153.155.306-1.457.92-4.805 2.812-9.585 2.812-4.78 0-8.153-1.892-9.56-2.812-.223-.134-.133-.346.064-.329z" }) + ] + } + ); +}); + +exports.default = SiArgos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.d.ts new file mode 100644 index 000000000..caf027f35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA291C"; +declare const SiArgos: IconType; +export { SiArgos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.mjs new file mode 100644 index 000000000..2922117a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArgos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA291C"; +const SiArgos = React.forwardRef(function SiArgos2({ title = "Argos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 1.738v20.524h24V1.738zm5.93 5.546c.178 0 .434 0 .638.026.23 0 .307.077.333.281.051.792.23 4.217.256 4.907 0 .18-.103.23-.23.23H6.21c-.179 0-.256-.102-.256-.23 0-.255-.026-.92-.026-.92H3.987c-.204.358-.434.767-.537.946-.076.153-.178.179-.306.179h-.818c-.18 0-.23-.128-.153-.281C3.272 10.428 4.677 8.255 5.29 7.54c.178-.23.383-.23.638-.256zM5.831 8.48a.095.095 0 0 0-.03.032c-.46.562-1.048 1.483-1.38 2.122h1.507S5.88 9.15 5.853 8.51c0 0 0-.043-.021-.032zm14.666.237c.614 0 1.125.28 1.355.664.102.154.076.255-.077.332a3.512 3.512 0 0 1-.434.205c-.128.025-.23.025-.333-.102-.434-.512-1.047-.333-1.073-.051-.026.255.256.357.639.46.588.178 1.252.485 1.048 1.277-.205.818-.997 1.227-1.917 1.227-.588 0-1.253-.178-1.508-.792-.051-.128-.026-.23.077-.28.153-.103.307-.18.46-.231.128-.026.23 0 .306.102.18.256.384.384.716.384.307 0 .639-.129.613-.41-.025-.255-.408-.357-.613-.409-.383-.102-1.176-.28-1.176-.92 0-.792.741-1.38 1.917-1.456zm-3.834.076c1.227 0 1.79.818 1.534 1.994-.23 1.176-1.15 1.993-2.377 1.993-1.227 0-1.789-.817-1.533-1.993.255-1.176 1.15-1.994 2.376-1.994zm-4.421.026c.562 0 .869.332.945.46 0 .025.026.025.026 0 .025-.077.051-.128.051-.153.026-.128.128-.23.307-.23h.51c.154 0 .282.102.231.306a96.306 96.306 0 0 1-.741 3.067c-.384 1.482-1.15 2.224-2.3 2.224-.46 0-1.227-.128-1.56-.664-.076-.103-.102-.205.077-.333.154-.102.332-.153.486-.205.153-.05.204-.05.357.052a.906.906 0 0 0 .563.179c.409 0 .946-.23 1.201-1.1.026-.05 0-.05-.025-.025-.18.23-.563.383-.997.383-.537-.025-.869-.204-1.074-.536-.23-.358-.204-.997-.025-1.56.28-.894.971-1.865 1.968-1.865zm-3.86.026h.614c.127 0 .179.101.153.204-.025.102-.051.179-.051.204 0 .026.025.026.025.026.46-.41 1.049-.409 1.688-.409.102 0 .153.102.076.179-.23.23-.358.409-.511.639-.102.153-.18.204-.358.204-.409.026-.613.102-.767.205-.153.102-.307.434-.383.818a48.306 48.306 0 0 1-.332 1.61.224.224 0 0 1-.23.179h-.742c-.102 0-.178-.077-.153-.18.128-.715.64-3.117.716-3.475.026-.154.128-.204.256-.204zm8.205.792c-.69 0-.971.562-1.15 1.15-.154.588-.23 1.15.46 1.15.69 0 .97-.562 1.15-1.15.179-.588.23-1.15-.46-1.15zm-4.217.025c-.512-.025-.87.384-1.1 1.15-.127.41-.153 1.023.384 1.1.537.025.895-.358 1.099-1.1.128-.485.256-1.124-.383-1.15zM2.338 13.958a.32.32 0 0 1 .09.023c3.68 1.508 6.058 2.07 9.406 2.07 3.348 0 5.725-.562 9.43-2.07.256-.102.41.153.155.306-1.457.92-4.805 2.812-9.585 2.812-4.78 0-8.153-1.892-9.56-2.812-.223-.134-.133-.346.064-.329z" }) + ] + } + ); +}); + +export { SiArgos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.cjs new file mode 100644 index 000000000..52e71aeee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007ACC"; +const SiAriakit = React__namespace.forwardRef(function SiAriakit2({ title = "Ariakit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm6-12H6C2.69 0 0 2.69 0 6v12c0 3.31 2.69 6 6 6h12c3.31 0 6-2.69 6-6V6c0-3.31-2.69-6-6-6Zm5 18c0 2.76-2.24 5-5 5H6c-2.76 0-5-2.24-5-5V6c0-2.76 2.24-5 5-5h12c2.76 0 5 2.24 5 5v12ZM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5ZM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5Z" }) + ] + } + ); +}); + +exports.default = SiAriakit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.d.ts new file mode 100644 index 000000000..eca1fe348 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007ACC"; +declare const SiAriakit: IconType; +export { SiAriakit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.mjs new file mode 100644 index 000000000..459f6c101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAriakit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007ACC"; +const SiAriakit = React.forwardRef(function SiAriakit2({ title = "Ariakit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm6-12H6C2.69 0 0 2.69 0 6v12c0 3.31 2.69 6 6 6h12c3.31 0 6-2.69 6-6V6c0-3.31-2.69-6-6-6Zm5 18c0 2.76-2.24 5-5 5H6c-2.76 0-5-2.24-5-5V6c0-2.76 2.24-5 5-5h12c2.76 0 5 2.24 5 5v12ZM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5ZM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5Z" }) + ] + } + ); +}); + +export { SiAriakit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.cjs new file mode 100644 index 000000000..d94bc155f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C9292C"; +const SiArkecosystem = React__namespace.forwardRef(function SiArkecosystem2({ title = "ARK Ecosystem", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.8 0C.806 0 0 .805 0 1.8v20.4c0 .995.805 1.8 1.8 1.8h20.4c.995 0 1.8-.805 1.8-1.8V1.8c0-.995-.805-1.8-1.8-1.8H1.8zm10.223 4.39l9.29 15.098-9.29-9.82-9.351 9.82 9.351-15.097zm0 7.583l1.633 1.691h-3.285l1.652-1.691zM9.31 14.762h5.41l1.496 1.574H7.813l1.496-1.574z" }) + ] + } + ); +}); + +exports.default = SiArkecosystem; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.d.ts new file mode 100644 index 000000000..4e4cc6ceb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C9292C"; +declare const SiArkecosystem: IconType; +export { SiArkecosystem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.mjs new file mode 100644 index 000000000..2d7594da2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArkecosystem.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C9292C"; +const SiArkecosystem = React.forwardRef(function SiArkecosystem2({ title = "ARK Ecosystem", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.8 0C.806 0 0 .805 0 1.8v20.4c0 .995.805 1.8 1.8 1.8h20.4c.995 0 1.8-.805 1.8-1.8V1.8c0-.995-.805-1.8-1.8-1.8H1.8zm10.223 4.39l9.29 15.098-9.29-9.82-9.351 9.82 9.351-15.097zm0 7.583l1.633 1.691h-3.285l1.652-1.691zM9.31 14.762h5.41l1.496 1.574H7.813l1.496-1.574z" }) + ] + } + ); +}); + +export { SiArkecosystem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.cjs new file mode 100644 index 000000000..07655b9b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#49B48A"; +const SiArlo = React__namespace.forwardRef(function SiArlo2({ title = "Arlo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.21 11.172 4.963-5.792c.943-1.293 1.494-1.828 1.07-3.94l-7.367 8.6a7.907 7.907 0 0 0-1.896 5.487L9.763 11.87a5.775 5.775 0 0 0-.947-.829A9.979 9.979 0 0 0 7 10.051c.213-.076.43-.14.649-.194.385-.094.78-.144 1.176-.147.444 0 .881.07 1.3.237.416.168.82.432 1.212.858l.216.252 1.336-1.129c-.01-.011-.241-.283-.251-.292a5.09 5.09 0 0 0-1.86-1.308 5.233 5.233 0 0 0-1.953-.364c-.151 0-.299.007-.446.017-1.461.24-2.364 1.104-3.714 1.244.001.006-4.58 0-4.581.002-.101 0-.115.144-.017.163 1.202.24 3.341.699 4.844 1.214 1.142.529 2.24 1.205 3.106 2.022.17.135.317.271.439.405l4.283 4.87c.61.501 1.395.755 3.066.767a6.197 6.197 0 0 1-.695-1.337 6.173 6.173 0 0 1-.014-4.256 6.139 6.139 0 0 1 1.114-1.903zM24 22.56c-1.734-.022-2.489-.317-3.11-.888l-.962-1.093c-.065-.079-.13-.157-.197-.234l.011.023-1.704-1.937a4.794 4.794 0 0 1-.905-4.806 4.755 4.755 0 0 1 .871-1.482l4.208-4.892c.43 2.179-.192 2.666-1.21 4.09l-1.668 1.937a3.038 3.038 0 0 0-.739 1.989c.001.741.272 1.458.761 2.014L24 22.56z" }) + ] + } + ); +}); + +exports.default = SiArlo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.d.ts new file mode 100644 index 000000000..9d97b19c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#49B48A"; +declare const SiArlo: IconType; +export { SiArlo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.mjs new file mode 100644 index 000000000..6edd2f13f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArlo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#49B48A"; +const SiArlo = React.forwardRef(function SiArlo2({ title = "Arlo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.21 11.172 4.963-5.792c.943-1.293 1.494-1.828 1.07-3.94l-7.367 8.6a7.907 7.907 0 0 0-1.896 5.487L9.763 11.87a5.775 5.775 0 0 0-.947-.829A9.979 9.979 0 0 0 7 10.051c.213-.076.43-.14.649-.194.385-.094.78-.144 1.176-.147.444 0 .881.07 1.3.237.416.168.82.432 1.212.858l.216.252 1.336-1.129c-.01-.011-.241-.283-.251-.292a5.09 5.09 0 0 0-1.86-1.308 5.233 5.233 0 0 0-1.953-.364c-.151 0-.299.007-.446.017-1.461.24-2.364 1.104-3.714 1.244.001.006-4.58 0-4.581.002-.101 0-.115.144-.017.163 1.202.24 3.341.699 4.844 1.214 1.142.529 2.24 1.205 3.106 2.022.17.135.317.271.439.405l4.283 4.87c.61.501 1.395.755 3.066.767a6.197 6.197 0 0 1-.695-1.337 6.173 6.173 0 0 1-.014-4.256 6.139 6.139 0 0 1 1.114-1.903zM24 22.56c-1.734-.022-2.489-.317-3.11-.888l-.962-1.093c-.065-.079-.13-.157-.197-.234l.011.023-1.704-1.937a4.794 4.794 0 0 1-.905-4.806 4.755 4.755 0 0 1 .871-1.482l4.208-4.892c.43 2.179-.192 2.666-1.21 4.09l-1.668 1.937a3.038 3.038 0 0 0-.739 1.989c.001.741.272 1.458.761 2.014L24 22.56z" }) + ] + } + ); +}); + +export { SiArlo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArm.cjs new file mode 100644 index 000000000..c4bd796a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0091BD"; +const SiArm = React__namespace.forwardRef(function SiArm2({ title = "Arm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.419 8.534h1.614v6.911H5.419v-.72c-.71.822-1.573.933-2.07.933C1.218 15.658 0 13.882 0 11.985c0-2.253 1.542-3.633 3.37-3.633.507 0 1.4.132 2.049.984zm-3.765 3.491c0 1.198.751 2.202 1.918 2.202 1.015 0 1.959-.74 1.959-2.181 0-1.512-.934-2.233-1.959-2.233-1.167-.01-1.918.974-1.918 2.212zm7.297-3.49h1.613v.618a3 3 0 0 1 .67-.578c.314-.183.619-.233.984-.233.396 0 .822.06 1.269.324l-.66 1.462a1.432 1.432 0 0 0-.822-.244c-.345 0-.69.05-1.005.376-.446.477-.446 1.136-.446 1.593v3.582H8.94zm5.56 0h1.614v.639c.538-.66 1.177-.822 1.705-.822.72 0 1.4.345 1.786 1.015.579-.822 1.441-1.015 2.05-1.015.842 0 1.573.396 1.969 1.086.132.233.365.74.365 1.745v4.272h-1.614V11.65c0-.771-.08-1.086-.152-1.228-.101-.264-.345-.609-.923-.609-.396 0-.741.213-.954.508-.284.395-.315.984-.315 1.572v3.562H18.43V11.65c0-.771-.081-1.086-.152-1.228-.102-.264-.345-.609-.924-.609-.396 0-.74.213-.954.508-.284.395-.314.984-.314 1.572v3.562h-1.573z" }) + ] + } + ); +}); + +exports.default = SiArm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArm.d.ts new file mode 100644 index 000000000..25252b0ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0091BD"; +declare const SiArm: IconType; +export { SiArm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArm.mjs new file mode 100644 index 000000000..a27a71679 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0091BD"; +const SiArm = React.forwardRef(function SiArm2({ title = "Arm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.419 8.534h1.614v6.911H5.419v-.72c-.71.822-1.573.933-2.07.933C1.218 15.658 0 13.882 0 11.985c0-2.253 1.542-3.633 3.37-3.633.507 0 1.4.132 2.049.984zm-3.765 3.491c0 1.198.751 2.202 1.918 2.202 1.015 0 1.959-.74 1.959-2.181 0-1.512-.934-2.233-1.959-2.233-1.167-.01-1.918.974-1.918 2.212zm7.297-3.49h1.613v.618a3 3 0 0 1 .67-.578c.314-.183.619-.233.984-.233.396 0 .822.06 1.269.324l-.66 1.462a1.432 1.432 0 0 0-.822-.244c-.345 0-.69.05-1.005.376-.446.477-.446 1.136-.446 1.593v3.582H8.94zm5.56 0h1.614v.639c.538-.66 1.177-.822 1.705-.822.72 0 1.4.345 1.786 1.015.579-.822 1.441-1.015 2.05-1.015.842 0 1.573.396 1.969 1.086.132.233.365.74.365 1.745v4.272h-1.614V11.65c0-.771-.08-1.086-.152-1.228-.101-.264-.345-.609-.923-.609-.396 0-.741.213-.954.508-.284.395-.315.984-.315 1.572v3.562H18.43V11.65c0-.771-.081-1.086-.152-1.228-.102-.264-.345-.609-.924-.609-.396 0-.74.213-.954.508-.284.395-.314.984-.314 1.572v3.562h-1.573z" }) + ] + } + ); +}); + +export { SiArm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.cjs new file mode 100644 index 000000000..033787923 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#394049"; +const SiArmkeil = React__namespace.forwardRef(function SiArmkeil2({ title = "Arm Keil", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.028 10.06h.9v3.863h-.9v-.404c-.288.339-.712.53-1.157.523-1.19 0-1.871-.99-1.871-2.055 0-1.257.863-2.028 1.881-2.028.448-.01.874.195 1.147.55v-.45zm-2.11 1.945c0 .67.422 1.23 1.073 1.23.567 0 1.092-.413 1.092-1.221 0-.844-.523-1.248-1.092-1.248-.651 0-1.073.554-1.073 1.239zm4.08-1.945h.9v.349c.107-.127.234-.235.376-.321.168-.093.358-.138.55-.13.248-.005.492.059.706.185l-.367.816a.812.812 0 0 0-.459-.138c-.192 0-.385.028-.56.211-.246.266-.246.633-.246.89v2h-.9V10.06zm3.113 0h.9v.358a1.19 1.19 0 0 1 .954-.46c.411-.006.794.212 1 .568.32-.457.807-.567 1.147-.567.468 0 .88.22 1.102.606.073.128.202.412.202.972v2.386h-.9v-2.129c0-.431-.046-.606-.083-.688a.511.511 0 0 0-.514-.34.664.664 0 0 0-.532.283c-.156.221-.175.551-.175.882v1.992h-.899v-2.129c0-.431-.046-.606-.082-.688a.511.511 0 0 0-.514-.34.664.664 0 0 0-.532.283c-.157.221-.175.551-.175.882v1.992h-.9V10.06zm7.317 1.657 1.645-1.656h.579l-1.807 1.8 1.865 2.061h-.59l-1.581-1.772-.11.11v1.662H15V10.06h.429v1.657zm4.865-1.252h-1.575v1.147h1.531v.405h-1.531v1.5h1.575v.405h-2.004V10.06h2.004v.405zm1.216-.405v3.862h-.428V10.06h.428zm1.425 0v3.46H24v.405h-1.494V10.06h.428z" }) + ] + } + ); +}); + +exports.default = SiArmkeil; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.d.ts new file mode 100644 index 000000000..8f2835e14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#394049"; +declare const SiArmkeil: IconType; +export { SiArmkeil as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.mjs new file mode 100644 index 000000000..8783e8a75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArmkeil.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#394049"; +const SiArmkeil = React.forwardRef(function SiArmkeil2({ title = "Arm Keil", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.028 10.06h.9v3.863h-.9v-.404c-.288.339-.712.53-1.157.523-1.19 0-1.871-.99-1.871-2.055 0-1.257.863-2.028 1.881-2.028.448-.01.874.195 1.147.55v-.45zm-2.11 1.945c0 .67.422 1.23 1.073 1.23.567 0 1.092-.413 1.092-1.221 0-.844-.523-1.248-1.092-1.248-.651 0-1.073.554-1.073 1.239zm4.08-1.945h.9v.349c.107-.127.234-.235.376-.321.168-.093.358-.138.55-.13.248-.005.492.059.706.185l-.367.816a.812.812 0 0 0-.459-.138c-.192 0-.385.028-.56.211-.246.266-.246.633-.246.89v2h-.9V10.06zm3.113 0h.9v.358a1.19 1.19 0 0 1 .954-.46c.411-.006.794.212 1 .568.32-.457.807-.567 1.147-.567.468 0 .88.22 1.102.606.073.128.202.412.202.972v2.386h-.9v-2.129c0-.431-.046-.606-.083-.688a.511.511 0 0 0-.514-.34.664.664 0 0 0-.532.283c-.156.221-.175.551-.175.882v1.992h-.899v-2.129c0-.431-.046-.606-.082-.688a.511.511 0 0 0-.514-.34.664.664 0 0 0-.532.283c-.157.221-.175.551-.175.882v1.992h-.9V10.06zm7.317 1.657 1.645-1.656h.579l-1.807 1.8 1.865 2.061h-.59l-1.581-1.772-.11.11v1.662H15V10.06h.429v1.657zm4.865-1.252h-1.575v1.147h1.531v.405h-1.531v1.5h1.575v.405h-2.004V10.06h2.004v.405zm1.216-.405v3.862h-.428V10.06h.428zm1.425 0v3.46H24v.405h-1.494V10.06h.428z" }) + ] + } + ); +}); + +export { SiArmkeil as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.cjs new file mode 100644 index 000000000..f93b95b83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4E00"; +const SiArstechnica = React__namespace.forwardRef(function SiArstechnica2({ title = "Ars Technica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zM8.842 15.656H7.745l-.15-.98a3.457 3.457 0 0 1-2.592 1.13c-1.33 0-2.16-.798-2.16-2.044 0-1.828 1.561-2.56 4.636-2.876v-.315c0-.931-.548-1.247-1.396-1.247-.848 0-1.745.283-2.543.632l-.183-1.18c.881-.35 1.712-.615 2.842-.615 1.779 0 2.643.714 2.643 2.36v5.135zm3.191-4.337v4.337H10.67v-7.33h1.097L12 9.824c.515-.831 1.363-1.58 2.576-1.646l.216 1.313c-1.23.05-2.26.865-2.759 1.829zm6.2 4.487a6.017 6.017 0 0 1-2.676-.698l.2-1.296a4.587 4.587 0 0 0 2.592.847c.93 0 1.496-.349 1.496-.964s-.416-.93-1.745-1.246c-1.729-.432-2.41-.948-2.41-2.26 0-1.314.98-2.028 2.593-2.028a5.933 5.933 0 0 1 2.41.498l-.217 1.297a4.687 4.687 0 0 0-2.227-.632c-.83 0-1.263.316-1.263.848s.366.764 1.53 1.063c1.81.466 2.625.981 2.625 2.377s-1.014 2.194-2.908 2.194zM7.479 11.934v1.711c-.615.632-1.479 1.03-2.177 1.03s-1.097-.215-1.097-.98c0-.764.565-1.496 3.274-1.761z" }) + ] + } + ); +}); + +exports.default = SiArstechnica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.d.ts new file mode 100644 index 000000000..7ece79e22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4E00"; +declare const SiArstechnica: IconType; +export { SiArstechnica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.mjs new file mode 100644 index 000000000..abe9a4448 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArstechnica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4E00"; +const SiArstechnica = React.forwardRef(function SiArstechnica2({ title = "Ars Technica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zM8.842 15.656H7.745l-.15-.98a3.457 3.457 0 0 1-2.592 1.13c-1.33 0-2.16-.798-2.16-2.044 0-1.828 1.561-2.56 4.636-2.876v-.315c0-.931-.548-1.247-1.396-1.247-.848 0-1.745.283-2.543.632l-.183-1.18c.881-.35 1.712-.615 2.842-.615 1.779 0 2.643.714 2.643 2.36v5.135zm3.191-4.337v4.337H10.67v-7.33h1.097L12 9.824c.515-.831 1.363-1.58 2.576-1.646l.216 1.313c-1.23.05-2.26.865-2.759 1.829zm6.2 4.487a6.017 6.017 0 0 1-2.676-.698l.2-1.296a4.587 4.587 0 0 0 2.592.847c.93 0 1.496-.349 1.496-.964s-.416-.93-1.745-1.246c-1.729-.432-2.41-.948-2.41-2.26 0-1.314.98-2.028 2.593-2.028a5.933 5.933 0 0 1 2.41.498l-.217 1.297a4.687 4.687 0 0 0-2.227-.632c-.83 0-1.263.316-1.263.848s.366.764 1.53 1.063c1.81.466 2.625.981 2.625 2.377s-1.014 2.194-2.908 2.194zM7.479 11.934v1.711c-.615.632-1.479 1.03-2.177 1.03s-1.097-.215-1.097-.98c0-.764.565-1.496 3.274-1.761z" }) + ] + } + ); +}); + +export { SiArstechnica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.cjs new file mode 100644 index 000000000..80332636b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#417598"; +const SiArtifacthub = React__namespace.forwardRef(function SiArtifacthub2({ title = "Artifact Hub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9999 24.00044c-.617.0012-1.24209-.17217-1.78008-.50002l-7.50975-4.29263c-1.01763-.61684-1.64001-1.71772-1.64066-2.9077V7.72971c0-1.25305.63694-2.36948 1.76008-3.01013L10.25041.47895c1.08003-.63867 2.41512-.63767 3.49515.001l7.41975 4.23763c1.08007.59613 1.7714 1.7341 1.76266 3.01013v8.58195c0 .96773-.44338 2.16388-1.63666 2.89856l-7.51074 4.2922c-.56347.34395-1.19861.50002-1.78167.50002zm-.50002-21.34695L3.95513 6.96224c-.2006.1567-.37906.36914-.37902.76747l.001 8.67039c.03753.22045.11891.42808.37302.63459l7.55975 4.31663c.26601.172.66403.21.98504 0l7.51792-4.29663c.23173-.14844.37102-.38858.41002-.65359V7.72971c.0095-.29884-.13595-.5886-.37702-.76547L12.49993 2.6525c-.39058-.23932-.7592-.15575-1.00004.001z" }) + ] + } + ); +}); + +exports.default = SiArtifacthub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.d.ts new file mode 100644 index 000000000..4b894cc56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#417598"; +declare const SiArtifacthub: IconType; +export { SiArtifacthub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.mjs new file mode 100644 index 000000000..7643e7318 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtifacthub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#417598"; +const SiArtifacthub = React.forwardRef(function SiArtifacthub2({ title = "Artifact Hub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9999 24.00044c-.617.0012-1.24209-.17217-1.78008-.50002l-7.50975-4.29263c-1.01763-.61684-1.64001-1.71772-1.64066-2.9077V7.72971c0-1.25305.63694-2.36948 1.76008-3.01013L10.25041.47895c1.08003-.63867 2.41512-.63767 3.49515.001l7.41975 4.23763c1.08007.59613 1.7714 1.7341 1.76266 3.01013v8.58195c0 .96773-.44338 2.16388-1.63666 2.89856l-7.51074 4.2922c-.56347.34395-1.19861.50002-1.78167.50002zm-.50002-21.34695L3.95513 6.96224c-.2006.1567-.37906.36914-.37902.76747l.001 8.67039c.03753.22045.11891.42808.37302.63459l7.55975 4.31663c.26601.172.66403.21.98504 0l7.51792-4.29663c.23173-.14844.37102-.38858.41002-.65359V7.72971c.0095-.29884-.13595-.5886-.37702-.76547L12.49993 2.6525c-.39058-.23932-.7592-.15575-1.00004.001z" }) + ] + } + ); +}); + +export { SiArtifacthub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.cjs new file mode 100644 index 000000000..ede113658 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#10A0CC"; +const SiArtixlinux = React__namespace.forwardRef(function SiArtixlinux2({ title = "Artix Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L7.873 8.462l11.358 6.363zM6.626 11.018L.295 24l18.788-7.762zm13.846 6.352l-5.926 3.402L23.706 24Z" }) + ] + } + ); +}); + +exports.default = SiArtixlinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.d.ts new file mode 100644 index 000000000..fdcae9df3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#10A0CC"; +declare const SiArtixlinux: IconType; +export { SiArtixlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.mjs new file mode 100644 index 000000000..524e8ddae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtixlinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#10A0CC"; +const SiArtixlinux = React.forwardRef(function SiArtixlinux2({ title = "Artix Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L7.873 8.462l11.358 6.363zM6.626 11.018L.295 24l18.788-7.762zm13.846 6.352l-5.926 3.402L23.706 24Z" }) + ] + } + ); +}); + +export { SiArtixlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.cjs new file mode 100644 index 000000000..07d7c91fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13AFF0"; +const SiArtstation = React__namespace.forwardRef(function SiArtstation2({ title = "ArtStation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 17.723l2.027 3.505h.001a2.424 2.424 0 0 0 2.164 1.333h13.457l-2.792-4.838H0zm24 .025c0-.484-.143-.935-.388-1.314L15.728 2.728a2.424 2.424 0 0 0-2.142-1.289H9.419L21.598 22.54l1.92-3.325c.378-.637.482-.919.482-1.467zm-11.129-3.462L7.428 4.858l-5.444 9.428h10.887z" }) + ] + } + ); +}); + +exports.default = SiArtstation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.d.ts new file mode 100644 index 000000000..d942a39a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13AFF0"; +declare const SiArtstation: IconType; +export { SiArtstation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.mjs new file mode 100644 index 000000000..bf98dc07f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArtstation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13AFF0"; +const SiArtstation = React.forwardRef(function SiArtstation2({ title = "ArtStation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 17.723l2.027 3.505h.001a2.424 2.424 0 0 0 2.164 1.333h13.457l-2.792-4.838H0zm24 .025c0-.484-.143-.935-.388-1.314L15.728 2.728a2.424 2.424 0 0 0-2.142-1.289H9.419L21.598 22.54l1.92-3.325c.378-.637.482-.919.482-1.467zm-11.129-3.462L7.428 4.858l-5.444 9.428h10.887z" }) + ] + } + ); +}); + +export { SiArtstation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.cjs new file mode 100644 index 000000000..6b82d7960 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B31B1B"; +const SiArxiv = React__namespace.forwardRef(function SiArxiv2({ title = "arXiv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.8423 0a1.0037 1.0037 0 0 0-.922.6078c-.1536.3687-.0438.6275.2938 1.1113l6.9185 8.3597-1.0223 1.1058a1.0393 1.0393 0 0 0 .003 1.4229l1.2292 1.3135-5.4391 6.4444c-.2803.299-.4538.823-.2971 1.1986a1.0253 1.0253 0 0 0 .9585.635.9133.9133 0 0 0 .6891-.3405l5.783-6.126 7.4902 8.0051a.8527.8527 0 0 0 .6835.2597.9575.9575 0 0 0 .8777-.6138c.1577-.377-.017-.7502-.306-1.1407l-7.0518-8.3418 1.0632-1.13a.9626.9626 0 0 0 .0089-1.3165L4.6336.4639s-.3733-.4535-.768-.463zm0 .272h.0166c.2179.0052.4874.2715.5644.3639l.005.006.0052.0055 10.169 10.9905a.6915.6915 0 0 1-.0072.945l-1.0666 1.133-1.4982-1.7724-8.5994-10.39c-.3286-.472-.352-.6183-.2592-.841a.7307.7307 0 0 1 .6704-.4401Zm14.341 1.5701a.877.877 0 0 0-.6554.2418l-5.6962 6.1584 1.6944 1.8319 5.3089-6.5138c.3251-.4335.479-.6603.3247-1.0292a1.1205 1.1205 0 0 0-.9763-.689zm-7.6557 12.2823 1.3186 1.4135-5.7864 6.1295a.6494.6494 0 0 1-.4959.26.7516.7516 0 0 1-.706-.4669c-.1119-.2682.0359-.6864.2442-.9083l.0051-.0055.0047-.0055z" }) + ] + } + ); +}); + +exports.default = SiArxiv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.d.ts new file mode 100644 index 000000000..0583e59c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B31B1B"; +declare const SiArxiv: IconType; +export { SiArxiv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.mjs new file mode 100644 index 000000000..f312dc602 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiArxiv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B31B1B"; +const SiArxiv = React.forwardRef(function SiArxiv2({ title = "arXiv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.8423 0a1.0037 1.0037 0 0 0-.922.6078c-.1536.3687-.0438.6275.2938 1.1113l6.9185 8.3597-1.0223 1.1058a1.0393 1.0393 0 0 0 .003 1.4229l1.2292 1.3135-5.4391 6.4444c-.2803.299-.4538.823-.2971 1.1986a1.0253 1.0253 0 0 0 .9585.635.9133.9133 0 0 0 .6891-.3405l5.783-6.126 7.4902 8.0051a.8527.8527 0 0 0 .6835.2597.9575.9575 0 0 0 .8777-.6138c.1577-.377-.017-.7502-.306-1.1407l-7.0518-8.3418 1.0632-1.13a.9626.9626 0 0 0 .0089-1.3165L4.6336.4639s-.3733-.4535-.768-.463zm0 .272h.0166c.2179.0052.4874.2715.5644.3639l.005.006.0052.0055 10.169 10.9905a.6915.6915 0 0 1-.0072.945l-1.0666 1.133-1.4982-1.7724-8.5994-10.39c-.3286-.472-.352-.6183-.2592-.841a.7307.7307 0 0 1 .6704-.4401Zm14.341 1.5701a.877.877 0 0 0-.6554.2418l-5.6962 6.1584 1.6944 1.8319 5.3089-6.5138c.3251-.4335.479-.6603.3247-1.0292a1.1205 1.1205 0 0 0-.9763-.689zm-7.6557 12.2823 1.3186 1.4135-5.7864 6.1295a.6494.6494 0 0 1-.4959.26.7516.7516 0 0 1-.706-.4669c-.1119-.2682.0359-.6864.2442-.9083l.0051-.0055.0047-.0055z" }) + ] + } + ); +}); + +export { SiArxiv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.cjs new file mode 100644 index 000000000..2f7dd75e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A61200"; +const SiAsahilinux = React__namespace.forwardRef(function SiAsahilinux2({ title = "Asahi Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.835 0-1.72 1.323v.97h2.178zm-1.95.057L9.81 1.095l2.076 4.153zm.23 3.768V6.22l-1.057-2.113L6.43 5.678 12 8.009l5.57-2.331zM6.21 5.835.533 15.957 11.885 24V8.21L6.222 5.84Zm11.58 0-.012.004-5.6 2.345 7.512 10.449 3.777-2.675zm-3.955 7.926v5.422l1.952-2.711zm2.864 3.981-4.411 6.135 5.846-4.14z" }) + ] + } + ); +}); + +exports.default = SiAsahilinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.d.ts new file mode 100644 index 000000000..815e12848 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A61200"; +declare const SiAsahilinux: IconType; +export { SiAsahilinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.mjs new file mode 100644 index 000000000..cda860545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsahilinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A61200"; +const SiAsahilinux = React.forwardRef(function SiAsahilinux2({ title = "Asahi Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m13.835 0-1.72 1.323v.97h2.178zm-1.95.057L9.81 1.095l2.076 4.153zm.23 3.768V6.22l-1.057-2.113L6.43 5.678 12 8.009l5.57-2.331zM6.21 5.835.533 15.957 11.885 24V8.21L6.222 5.84Zm11.58 0-.012.004-5.6 2.345 7.512 10.449 3.777-2.675zm-3.955 7.926v5.422l1.952-2.711zm2.864 3.981-4.411 6.135 5.846-4.14z" }) + ] + } + ); +}); + +export { SiAsahilinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.cjs new file mode 100644 index 000000000..46bbfc203 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F06A6A"; +const SiAsana = React__namespace.forwardRef(function SiAsana2({ title = "Asana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.78 12.653c-2.882 0-5.22 2.336-5.22 5.22s2.338 5.22 5.22 5.22 5.22-2.34 5.22-5.22-2.336-5.22-5.22-5.22zm-13.56 0c-2.88 0-5.22 2.337-5.22 5.22s2.338 5.22 5.22 5.22 5.22-2.338 5.22-5.22-2.336-5.22-5.22-5.22zm12-6.525c0 2.883-2.337 5.22-5.22 5.22-2.882 0-5.22-2.337-5.22-5.22 0-2.88 2.338-5.22 5.22-5.22 2.883 0 5.22 2.34 5.22 5.22z" }) + ] + } + ); +}); + +exports.default = SiAsana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.d.ts new file mode 100644 index 000000000..93977434e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F06A6A"; +declare const SiAsana: IconType; +export { SiAsana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.mjs new file mode 100644 index 000000000..8222132a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F06A6A"; +const SiAsana = React.forwardRef(function SiAsana2({ title = "Asana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.78 12.653c-2.882 0-5.22 2.336-5.22 5.22s2.338 5.22 5.22 5.22 5.22-2.34 5.22-5.22-2.336-5.22-5.22-5.22zm-13.56 0c-2.88 0-5.22 2.337-5.22 5.22s2.338 5.22 5.22 5.22 5.22-2.338 5.22-5.22-2.336-5.22-5.22-5.22zm12-6.525c0 2.883-2.337 5.22-5.22 5.22-2.882 0-5.22-2.337-5.22-5.22 0-2.88 2.338-5.22 5.22-5.22 2.883 0 5.22 2.34 5.22 5.22z" }) + ] + } + ); +}); + +export { SiAsana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.cjs new file mode 100644 index 000000000..cbdad0658 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E40046"; +const SiAsciidoctor = React__namespace.forwardRef(function SiAsciidoctor2({ title = "Asciidoctor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.0685 0H5.9318C2.6579 0 0 2.6578 0 5.9316v12.1367C0 21.3421 2.658 24 5.9318 24h12.1367C21.3423 24 24 21.3421 24 18.0683V5.9316C24 2.6578 21.3423 0 18.0685 0zM10.708 15.4038H8.8102c-.0018.0045-.0031.009-.005.0135L7.1986 19.282a.5058.5058 0 11-.934-.3883l1.4507-3.49H4.8677a.5058.5058 0 110-1.0113h5.8403a.5058.5058 0 110 1.0113zm7.9189 4.1647a.5058.5058 0 01-.6545-.2886L12.6206 6.2306l-2.395 5.761h1.551a.5058.5058 0 110 1.0113H5.9369a.5058.5058 0 110-1.0113h3.194c.0015-.0038.0026-.0075.0042-.0112l3.0223-7.2693a.5058.5058 0 01.457-.3112.5058.5058 0 01.4774.3137L18.908 18.896a.5058.5058 0 01-.2812.6725z" }) + ] + } + ); +}); + +exports.default = SiAsciidoctor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.d.ts new file mode 100644 index 000000000..fe52036d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E40046"; +declare const SiAsciidoctor: IconType; +export { SiAsciidoctor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.mjs new file mode 100644 index 000000000..fb3fc05c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciidoctor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E40046"; +const SiAsciidoctor = React.forwardRef(function SiAsciidoctor2({ title = "Asciidoctor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.0685 0H5.9318C2.6579 0 0 2.6578 0 5.9316v12.1367C0 21.3421 2.658 24 5.9318 24h12.1367C21.3423 24 24 21.3421 24 18.0683V5.9316C24 2.6578 21.3423 0 18.0685 0zM10.708 15.4038H8.8102c-.0018.0045-.0031.009-.005.0135L7.1986 19.282a.5058.5058 0 11-.934-.3883l1.4507-3.49H4.8677a.5058.5058 0 110-1.0113h5.8403a.5058.5058 0 110 1.0113zm7.9189 4.1647a.5058.5058 0 01-.6545-.2886L12.6206 6.2306l-2.395 5.761h1.551a.5058.5058 0 110 1.0113H5.9369a.5058.5058 0 110-1.0113h3.194c.0015-.0038.0026-.0075.0042-.0112l3.0223-7.2693a.5058.5058 0 01.457-.3112.5058.5058 0 01.4774.3137L18.908 18.896a.5058.5058 0 01-.2812.6725z" }) + ] + } + ); +}); + +export { SiAsciidoctor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.cjs new file mode 100644 index 000000000..2fcfe06c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D40000"; +const SiAsciinema = React__namespace.forwardRef(function SiAsciinema2({ title = "asciinema", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.61 0V24L22.39 12L1.61 0M5.76 7.2L10.06 9.68L5.76 12.16V7.2M12.55 11.12L14.08 12L5.76 16.8V15.04L12.55 11.12Z" }) + ] + } + ); +}); + +exports.default = SiAsciinema; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.d.ts new file mode 100644 index 000000000..321afe148 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D40000"; +declare const SiAsciinema: IconType; +export { SiAsciinema as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.mjs new file mode 100644 index 000000000..a05ca952a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsciinema.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D40000"; +const SiAsciinema = React.forwardRef(function SiAsciinema2({ title = "asciinema", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.61 0V24L22.39 12L1.61 0M5.76 7.2L10.06 9.68L5.76 12.16V7.2M12.55 11.12L14.08 12L5.76 16.8V15.04L12.55 11.12Z" }) + ] + } + ); +}); + +export { SiAsciinema as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.cjs new file mode 100644 index 000000000..57d8f9dc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#68A51C"; +const SiAsda = React__namespace.forwardRef(function SiAsda2({ title = "ASDA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.7596 8.673h-2.475l-1.4114 4.0851c.0632-.3392.0743-.6104.0743-.7283 0-1.7114-.9805-3.3568-3.2843-3.3568h-2.6458l.0078 4.0635c-.2287-1.1546-1.2835-1.4639-2.5952-1.8626-.4902-.151-.7594-.3908-.6612-.6143.0839-.1952.3845-.2564.7494-.206.5564.0796 1.0008.2657 1.4287.4986l.5847-1.449c-.1318-.065-1.0792-.6337-2.2665-.6337-1.6557 0-2.7131.8078-2.7131 1.9999 0 1.0622.6542 1.6798 1.8572 2.026 1.2938.3753 1.6218.5263 1.5828.8984-.0335.3207-.8354.7113-2.7974-.4958l-.5829 1.2062-1.7994-5.431H2.3382L0 15.4244h1.9502l.3777-1.09h2.2875l.3886 1.0902h2.0473l-.2322-.6603c.6921.4 1.5504.7662 2.5772.7662 1.5728 0 2.4231-.859 2.626-1.6823v1.5764h2.638c1.5727 0 2.3953-.7498 2.8251-1.5524l-.5396 1.5524h1.9487l.39-1.0901h2.323l.3425 1.09H24L21.7594 8.673Zm-18.996 4.1365.7272-2.3196.6889 2.3196Zm11.2193.874v-3.2703h.465c.663 0 1.3867.2684 1.3867 1.6352 0 1.2105-.6392 1.6351-1.381 1.6351zm5.773-.874.6936-2.292.7224 2.292z" }) + ] + } + ); +}); + +exports.default = SiAsda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.d.ts new file mode 100644 index 000000000..49d3856a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#68A51C"; +declare const SiAsda: IconType; +export { SiAsda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.mjs new file mode 100644 index 000000000..a0bf3d016 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#68A51C"; +const SiAsda = React.forwardRef(function SiAsda2({ title = "ASDA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.7596 8.673h-2.475l-1.4114 4.0851c.0632-.3392.0743-.6104.0743-.7283 0-1.7114-.9805-3.3568-3.2843-3.3568h-2.6458l.0078 4.0635c-.2287-1.1546-1.2835-1.4639-2.5952-1.8626-.4902-.151-.7594-.3908-.6612-.6143.0839-.1952.3845-.2564.7494-.206.5564.0796 1.0008.2657 1.4287.4986l.5847-1.449c-.1318-.065-1.0792-.6337-2.2665-.6337-1.6557 0-2.7131.8078-2.7131 1.9999 0 1.0622.6542 1.6798 1.8572 2.026 1.2938.3753 1.6218.5263 1.5828.8984-.0335.3207-.8354.7113-2.7974-.4958l-.5829 1.2062-1.7994-5.431H2.3382L0 15.4244h1.9502l.3777-1.09h2.2875l.3886 1.0902h2.0473l-.2322-.6603c.6921.4 1.5504.7662 2.5772.7662 1.5728 0 2.4231-.859 2.626-1.6823v1.5764h2.638c1.5727 0 2.3953-.7498 2.8251-1.5524l-.5396 1.5524h1.9487l.39-1.0901h2.323l.3425 1.09H24L21.7594 8.673Zm-18.996 4.1365.7272-2.3196.6889 2.3196Zm11.2193.874v-3.2703h.465c.663 0 1.3867.2684 1.3867 1.6352 0 1.2105-.6392 1.6351-1.381 1.6351zm5.773-.874.6936-2.292.7224 2.292z" }) + ] + } + ); +}); + +export { SiAsda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.cjs new file mode 100644 index 000000000..4ae870edf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7D929E"; +const SiAseprite = React__namespace.forwardRef(function SiAseprite2({ title = "Aseprite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.006 0v1.6h15.988V0zm15.988 1.6v1.6h1.6V1.6zm1.6 1.6v14.4h-1.6v1.6H4.006v-1.6h-1.6V3.2H.809v17.6h1.599v1.6h1.599V24h15.988v-1.6h1.6v-1.6h1.598V3.2zm-19.187 0h1.599V1.6h-1.6zm4.796 3.2v6.4h1.6V6.4zm7.995 0v6.4h1.599V6.4z" }) + ] + } + ); +}); + +exports.default = SiAseprite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.d.ts new file mode 100644 index 000000000..df48cd797 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7D929E"; +declare const SiAseprite: IconType; +export { SiAseprite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.mjs new file mode 100644 index 000000000..475370ded --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAseprite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7D929E"; +const SiAseprite = React.forwardRef(function SiAseprite2({ title = "Aseprite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.006 0v1.6h15.988V0zm15.988 1.6v1.6h1.6V1.6zm1.6 1.6v14.4h-1.6v1.6H4.006v-1.6h-1.6V3.2H.809v17.6h1.599v1.6h1.599V24h15.988v-1.6h1.6v-1.6h1.598V3.2zm-19.187 0h1.599V1.6h-1.6zm4.796 3.2v6.4h1.6V6.4zm7.995 0v6.4h1.599V6.4z" }) + ] + } + ); +}); + +export { SiAseprite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.cjs new file mode 100644 index 000000000..a6da5d8f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007ACC"; +const SiAssemblyscript = React__namespace.forwardRef(function SiAssemblyscript2({ title = "AssemblyScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0h-9.225c0 1.406-1.04 2.813-2.756 2.813A2.766 2.766 0 019.234 0zm18.204 10.947c.707 0 1.314.137 1.82.412.517.264.96.717 1.33 1.361l-1.726 1.108c-.19-.338-.395-.58-.617-.728a1.422 1.422 0 00-.807-.222c-.327 0-.586.09-.776.27a.896.896 0 00-.285.68c0 .337.106.596.317.775.222.17.57.36 1.045.57l.554.238c.474.2.891.411 1.25.633.37.21.675.453.918.728.253.264.443.57.57.918.137.337.206.738.206 1.203a3 3 0 01-.285 1.33c-.18.38-.433.701-.76.965a3.419 3.419 0 01-1.171.601c-.443.127-.929.19-1.456.19a5.31 5.31 0 01-1.41-.174 4.624 4.624 0 01-1.139-.475 3.922 3.922 0 01-.886-.712 4.48 4.48 0 01-.602-.902L16.1 18.67c.242.39.527.712.855.966.337.253.78.38 1.33.38.463 0 .827-.1 1.091-.301.275-.211.412-.475.412-.792 0-.38-.143-.664-.428-.854-.285-.19-.68-.396-1.187-.618l-.554-.237a8.12 8.12 0 01-1.092-.554 3.64 3.64 0 01-.839-.696 2.887 2.887 0 01-.538-.903 3.375 3.375 0 01-.19-1.187c0-.411.074-.796.222-1.155a2.91 2.91 0 01.649-.934c.285-.264.628-.47 1.029-.617.4-.148.849-.222 1.345-.222zm-8.796.032h.19l4.922 10.858h-2.327l-.506-1.219H7.318l-.506 1.219H4.675zm.063 3.988a22.21 22.21 0 01-.206.697l-.205.649a6.979 6.979 0 01-.222.585l-.776 1.868h2.834l-.776-1.868a15.492 15.492 0 01-.237-.633 23.741 23.741 0 01-.412-1.298z" }) + ] + } + ); +}); + +exports.default = SiAssemblyscript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.d.ts new file mode 100644 index 000000000..cc6926ce9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007ACC"; +declare const SiAssemblyscript: IconType; +export { SiAssemblyscript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.mjs new file mode 100644 index 000000000..ed9a864a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAssemblyscript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007ACC"; +const SiAssemblyscript = React.forwardRef(function SiAssemblyscript2({ title = "AssemblyScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0h-9.225c0 1.406-1.04 2.813-2.756 2.813A2.766 2.766 0 019.234 0zm18.204 10.947c.707 0 1.314.137 1.82.412.517.264.96.717 1.33 1.361l-1.726 1.108c-.19-.338-.395-.58-.617-.728a1.422 1.422 0 00-.807-.222c-.327 0-.586.09-.776.27a.896.896 0 00-.285.68c0 .337.106.596.317.775.222.17.57.36 1.045.57l.554.238c.474.2.891.411 1.25.633.37.21.675.453.918.728.253.264.443.57.57.918.137.337.206.738.206 1.203a3 3 0 01-.285 1.33c-.18.38-.433.701-.76.965a3.419 3.419 0 01-1.171.601c-.443.127-.929.19-1.456.19a5.31 5.31 0 01-1.41-.174 4.624 4.624 0 01-1.139-.475 3.922 3.922 0 01-.886-.712 4.48 4.48 0 01-.602-.902L16.1 18.67c.242.39.527.712.855.966.337.253.78.38 1.33.38.463 0 .827-.1 1.091-.301.275-.211.412-.475.412-.792 0-.38-.143-.664-.428-.854-.285-.19-.68-.396-1.187-.618l-.554-.237a8.12 8.12 0 01-1.092-.554 3.64 3.64 0 01-.839-.696 2.887 2.887 0 01-.538-.903 3.375 3.375 0 01-.19-1.187c0-.411.074-.796.222-1.155a2.91 2.91 0 01.649-.934c.285-.264.628-.47 1.029-.617.4-.148.849-.222 1.345-.222zm-8.796.032h.19l4.922 10.858h-2.327l-.506-1.219H7.318l-.506 1.219H4.675zm.063 3.988a22.21 22.21 0 01-.206.697l-.205.649a6.979 6.979 0 01-.222.585l-.776 1.868h2.834l-.776-1.868a15.492 15.492 0 01-.237-.633 23.741 23.741 0 01-.412-1.298z" }) + ] + } + ); +}); + +export { SiAssemblyscript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.cjs new file mode 100644 index 000000000..3ce336c0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F68F1E"; +const SiAsterisk = React__namespace.forwardRef(function SiAsterisk2({ title = "Asterisk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.92474 1.7776c-1.5868-.006-2.72634.1583-4.0059.57625-.4307.1407-1.11947.41114-1.53049.60105s-1.17324.62818-1.69469.97591-1.31453.95274-1.76285 1.3415c-.4483.38876-1.13243 1.07288-1.52119 1.5212-.38875.44831-.93594 1.1598-1.21447 1.58005s-.52234.7479-.54218.72806c-.0821-.0821.68021-1.55226 1.21138-2.336l.57006-.8427-.61344.59485c-.33697.32716-.9366 1.0258-1.3353 1.55217s-.92949 1.32942-1.17729 1.78453c-.2478.45513-.59826 1.25105-.77764 1.76906l-.3253.94182v.18686c-.14567.47425-.20618.82312-.20545 1.37674.003.60684.0609 1.08074.20544 1.61182v.19538l.26954.79313c.14744.4362.43545 1.08232.64132 1.43444.20587.35211.6835.96441 1.05957 1.36318.37607.39876.97836.9227 1.3384 1.1618 1.07417.71335 2.16188 1.14074 3.5288 1.38487.43621.0779 1.3454.14382 2.01998.14871.6746.005 1.6949-.0605 2.26785-.1456s1.5643-.30574 2.20278-.48952c.6385-.18377 1.62088-.5359 2.1842-.78383l1.02548-.44923.65062.19518c.73972.2239 4.10778.98772 4.15461.94184.0169-.0165-.36632-.8263-.85199-1.80002l-.88297-1.77214.78383-.94184c.43255-.518 1.03592-1.3173 1.3384-1.77524.3025-.45795.76326-1.2833 1.0255-1.8341.26222-.5508.56867-1.3353.68158-1.74426.11292-.40896.25185-1.1359.30672-1.61724.0689-.60404.0673-1.14149-.006-1.73496-.0586-.4729-.21192-1.16555-.34079-1.53668s-.42997-1.01806-.6661-1.43754c-.54074-.96059-1.69132-2.13154-2.525-2.57147-.33479-.17667-.63723-.3222-.67539-.3222-.0382 0 .15568.17987.43374.39966.55794.44102 1.24622 1.27072 1.58625 1.91155l.22307.41516-.22307-.29743c-.12202-.16358-.55922-.63692-.97282-1.05027-.57349-.57315-.95288-.85022-1.59555-1.168-.548-.27098-1.18938-.48753-1.8341-.62273-.73249-.1536-1.36683-.20995-2.42895-.21377zm-.0496 1.09674c1.0863.002 1.5545.0494 2.15941.21068.4251.11334 1.07198.3469 1.43754.5205.47067.22351.88578.5356 1.41895 1.06885.57816.57824.84717.94844 1.16491 1.59555.22757.46348.4809 1.155.56076 1.53668.0799.3817.14467 1.03524.14562 1.45303.003 1.31394-.3635 2.79464-1.04098 4.198-.18427.38169-.52577.98397-.75905 1.3384s-.77228 1.0048-1.19588 1.44684c-.4236.44202-.76835.83226-.76835.86438 0 .0321.35691.60325.79313 1.27024s.79313 1.2502.79313 1.29503c0 .0448-.0232.0805-.0527.0805s-.69262-.24538-1.47162-.54527-1.53096-.54528-1.6699-.54528c-.13895 0-.49078.10608-.78384.23546-.96736.42709-2.77125.95962-3.74256 1.10604-.52582.0793-1.31114.13955-1.74736.13322-1.57475-.0228-2.75872-.2955-4.11434-.94803-.79414-.38227-1.07524-.58708-1.79383-1.30742-.64984-.65144-.93938-1.03166-1.21447-1.59865-.19842-.40895-.42859-1.01031-.5112-1.3353-.21292-.83764-.19273-2.23255.0465-3.1849.10833-.4313.4223-1.23948.69708-1.79693.2748-.55745.76385-1.36438 1.08745-1.79383s.9908-1.16322 1.48092-1.62963c.95198-.90593 2.10627-1.72182 3.23136-2.28333.97376-.48599 2.268-.92608 3.45134-1.1742.75897-.15914 1.35506-.21232 2.39797-.21068zM10.7033 5.2787l.0409 1.89897c.0351 1.63358.0207 1.89128-.1036 1.8436-.0794-.0305-.80422-.48575-1.61046-1.01155s-1.47836-.94257-1.49369-.92635c-.0823.0871-1.33617 2.22031-1.33627 2.27346-.00008.0346.73564.48078 1.63505.99141s1.63543.95078 1.63543.97805c0 .0273-.73602.46741-1.63543.97805s-1.63513.95676-1.63505.9914c.0001.0536 1.25446 2.18701 1.33724 2.27443.0159.0168.75297-.4196 1.63795-.9699l1.6091-1.0007-.0407 1.88715-.0405 1.88716h2.76277l-.0711-1.89394c-.0585-1.55786-.048-1.8797.0598-1.81397.0721.0439.73181.4535 1.46601.91028s1.41202.87183 1.50628.92228c.14504.0776.27851-.087.86864-1.07099.49096-.81865.66132-1.18318.57568-1.2321-.0669-.0382-.82975-.46984-1.69527-.95907l-1.57367-.88956.23527-.14813c.1294-.0815.88216-.51577 1.67281-.96526s1.44714-.82465 1.45884-.8336c.0117-.009-.2923-.53914-.67559-1.17826-.45485-.75844-.73775-1.13783-.81443-1.0923-.0646.0384-.49675.31373-.96023.6119-.46348.29815-1.1465.73747-1.5179.9763l-.6754.43412.0705-1.93634.0703-1.93654H12.085zM2.5788 9.24433c.00078-.00004.002 0 .003 0 .0273 0 .0496.0223.0496.0496s-.0223.0496-.0496.0496a.0497.0497 0 0 1-.0496-.0496c0-.0264.021-.0482.047-.0496z" }) + ] + } + ); +}); + +exports.default = SiAsterisk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.d.ts new file mode 100644 index 000000000..e90ef603a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F68F1E"; +declare const SiAsterisk: IconType; +export { SiAsterisk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.mjs new file mode 100644 index 000000000..e509f44f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsterisk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F68F1E"; +const SiAsterisk = React.forwardRef(function SiAsterisk2({ title = "Asterisk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.92474 1.7776c-1.5868-.006-2.72634.1583-4.0059.57625-.4307.1407-1.11947.41114-1.53049.60105s-1.17324.62818-1.69469.97591-1.31453.95274-1.76285 1.3415c-.4483.38876-1.13243 1.07288-1.52119 1.5212-.38875.44831-.93594 1.1598-1.21447 1.58005s-.52234.7479-.54218.72806c-.0821-.0821.68021-1.55226 1.21138-2.336l.57006-.8427-.61344.59485c-.33697.32716-.9366 1.0258-1.3353 1.55217s-.92949 1.32942-1.17729 1.78453c-.2478.45513-.59826 1.25105-.77764 1.76906l-.3253.94182v.18686c-.14567.47425-.20618.82312-.20545 1.37674.003.60684.0609 1.08074.20544 1.61182v.19538l.26954.79313c.14744.4362.43545 1.08232.64132 1.43444.20587.35211.6835.96441 1.05957 1.36318.37607.39876.97836.9227 1.3384 1.1618 1.07417.71335 2.16188 1.14074 3.5288 1.38487.43621.0779 1.3454.14382 2.01998.14871.6746.005 1.6949-.0605 2.26785-.1456s1.5643-.30574 2.20278-.48952c.6385-.18377 1.62088-.5359 2.1842-.78383l1.02548-.44923.65062.19518c.73972.2239 4.10778.98772 4.15461.94184.0169-.0165-.36632-.8263-.85199-1.80002l-.88297-1.77214.78383-.94184c.43255-.518 1.03592-1.3173 1.3384-1.77524.3025-.45795.76326-1.2833 1.0255-1.8341.26222-.5508.56867-1.3353.68158-1.74426.11292-.40896.25185-1.1359.30672-1.61724.0689-.60404.0673-1.14149-.006-1.73496-.0586-.4729-.21192-1.16555-.34079-1.53668s-.42997-1.01806-.6661-1.43754c-.54074-.96059-1.69132-2.13154-2.525-2.57147-.33479-.17667-.63723-.3222-.67539-.3222-.0382 0 .15568.17987.43374.39966.55794.44102 1.24622 1.27072 1.58625 1.91155l.22307.41516-.22307-.29743c-.12202-.16358-.55922-.63692-.97282-1.05027-.57349-.57315-.95288-.85022-1.59555-1.168-.548-.27098-1.18938-.48753-1.8341-.62273-.73249-.1536-1.36683-.20995-2.42895-.21377zm-.0496 1.09674c1.0863.002 1.5545.0494 2.15941.21068.4251.11334 1.07198.3469 1.43754.5205.47067.22351.88578.5356 1.41895 1.06885.57816.57824.84717.94844 1.16491 1.59555.22757.46348.4809 1.155.56076 1.53668.0799.3817.14467 1.03524.14562 1.45303.003 1.31394-.3635 2.79464-1.04098 4.198-.18427.38169-.52577.98397-.75905 1.3384s-.77228 1.0048-1.19588 1.44684c-.4236.44202-.76835.83226-.76835.86438 0 .0321.35691.60325.79313 1.27024s.79313 1.2502.79313 1.29503c0 .0448-.0232.0805-.0527.0805s-.69262-.24538-1.47162-.54527-1.53096-.54528-1.6699-.54528c-.13895 0-.49078.10608-.78384.23546-.96736.42709-2.77125.95962-3.74256 1.10604-.52582.0793-1.31114.13955-1.74736.13322-1.57475-.0228-2.75872-.2955-4.11434-.94803-.79414-.38227-1.07524-.58708-1.79383-1.30742-.64984-.65144-.93938-1.03166-1.21447-1.59865-.19842-.40895-.42859-1.01031-.5112-1.3353-.21292-.83764-.19273-2.23255.0465-3.1849.10833-.4313.4223-1.23948.69708-1.79693.2748-.55745.76385-1.36438 1.08745-1.79383s.9908-1.16322 1.48092-1.62963c.95198-.90593 2.10627-1.72182 3.23136-2.28333.97376-.48599 2.268-.92608 3.45134-1.1742.75897-.15914 1.35506-.21232 2.39797-.21068zM10.7033 5.2787l.0409 1.89897c.0351 1.63358.0207 1.89128-.1036 1.8436-.0794-.0305-.80422-.48575-1.61046-1.01155s-1.47836-.94257-1.49369-.92635c-.0823.0871-1.33617 2.22031-1.33627 2.27346-.00008.0346.73564.48078 1.63505.99141s1.63543.95078 1.63543.97805c0 .0273-.73602.46741-1.63543.97805s-1.63513.95676-1.63505.9914c.0001.0536 1.25446 2.18701 1.33724 2.27443.0159.0168.75297-.4196 1.63795-.9699l1.6091-1.0007-.0407 1.88715-.0405 1.88716h2.76277l-.0711-1.89394c-.0585-1.55786-.048-1.8797.0598-1.81397.0721.0439.73181.4535 1.46601.91028s1.41202.87183 1.50628.92228c.14504.0776.27851-.087.86864-1.07099.49096-.81865.66132-1.18318.57568-1.2321-.0669-.0382-.82975-.46984-1.69527-.95907l-1.57367-.88956.23527-.14813c.1294-.0815.88216-.51577 1.67281-.96526s1.44714-.82465 1.45884-.8336c.0117-.009-.2923-.53914-.67559-1.17826-.45485-.75844-.73775-1.13783-.81443-1.0923-.0646.0384-.49675.31373-.96023.6119-.46348.29815-1.1465.73747-1.5179.9763l-.6754.43412.0705-1.93634.0703-1.93654H12.085zM2.5788 9.24433c.00078-.00004.002 0 .003 0 .0273 0 .0496.0223.0496.0496s-.0223.0496-.0496.0496a.0497.0497 0 0 1-.0496-.0496c0-.0264.021-.0482.047-.0496z" }) + ] + } + ); +}); + +export { SiAsterisk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.cjs new file mode 100644 index 000000000..573e56d8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00665E"; +const SiAstonmartin = React__namespace.forwardRef(function SiAstonmartin2({ title = "Aston Martin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.383 9.258c-.158 0-.282.068-.338.182-.068.114-.057.262.022.387l.17.296c.09.16.214.182.304.205.08.012.136.023.192.137l.158.273c.125.228.26.25.362.273.079.012.158.023.259.205.102.182.249.456.621.569.034.012 3.601 1.059 3.613 1.059.373.126.474.262.587.433.068.102.26.376.711.501l3.432.933a.704.704 0 0 0 .711-.182l.621-.592c.091-.08.136-.114.192-.114.057 0 .102.034.192.114l.621.592c.113.091.339.273.712.182l3.431-.933c.463-.125.644-.399.711-.501.113-.171.215-.319.587-.433 0 0 3.568-1.047 3.613-1.059.361-.113.52-.387.621-.569.102-.182.169-.193.248-.205.102-.023.249-.045.373-.273l.158-.273c.068-.114.113-.125.192-.137.09-.023.214-.046.305-.205l.169-.296c.079-.136.091-.273.023-.387a.386.386 0 0 0-.339-.182h-9.675c-.158 0-.406 0-.666.262a.938.938 0 0 0-.169.239c-.079.148-.136.25-.407.25h-1.411c-.26 0-.327-.102-.406-.25a1.017 1.017 0 0 0-.17-.239c-.259-.262-.508-.262-.666-.262H.383Zm.001.239h9.675c.146 0 .316 0 .497.193.112.114.146.24.248.365H.812c-.293 0-.327 0-.417-.137l-.124-.216c-.034-.057-.045-.114-.023-.148.023-.034.068-.057.136-.057Zm13.569 0h9.675c.068 0 .113.023.136.057a.186.186 0 0 1-.023.148l-.124.216c-.09.137-.124.137-.418.137h-9.991c.102-.125.136-.251.248-.365.192-.193.351-.193.497-.193Zm-7.304.74h10.702v1.708H6.649v-1.708Zm10.894.023h5.566c-.023.034-.034.057-.056.08 0 0-.09.148-.124.227-.136.217-.204.216-.587.182l-4.799-.284v-.205Zm-16.641.011h5.566v.205l-4.798.285c-.383.022-.451.034-.587-.182l-.124-.228c-.023-.034-.045-.057-.057-.08Zm7.354.311a.341.341 0 0 0-.219.077.287.287 0 0 0-.09.204c0 .126.067.217.203.285.147.068.214.091.248.137a.115.115 0 0 1-.011.171.245.245 0 0 1-.135.034.453.453 0 0 1-.294-.125l.011.182c.085.043.177.07.271.079a.438.438 0 0 0 .26-.079c.124-.091.124-.285.045-.376-.056-.08-.147-.114-.316-.205-.079-.045-.113-.08-.113-.137 0-.113.147-.147.282-.102a.44.44 0 0 1 .124.068l-.011-.171a2.09 2.09 0 0 0-.113-.034c-.011 0-.07-.011-.142-.008Zm.368.008-.011.148c.124-.012.214-.023.293-.023v.865h.192v-.865c.046 0 .136 0 .294.023l-.011-.148h-.757Zm1.264 0c-.293 0-.496.205-.496.512 0 .296.203.513.496.513.294 0 .497-.217.497-.513 0-.307-.203-.512-.497-.512Zm4.957 0-.012.148c.124-.012.215-.023.294-.023v.877-.012h.192v-.865c.045 0 .135 0 .293.023l-.011-.148h-.756Zm-.508.011c-.102 0-.17 0-.226.011v.991h.192v-.421h.067l.305.421h.226l-.35-.444a.32.32 0 0 0 .158-.103.338.338 0 0 0 .057-.17c0-.148-.113-.217-.204-.251a.62.62 0 0 0-.225-.034Zm-6.932 0-.418.991h.169l.102-.251h.373l.09.251h.215l-.418-.991h-.113Zm3.138 0v.991h.136v-.672l.587.672h.102v-.991h-.136v.672l-.587-.672h-.102Zm1.468 0-.111.979h.156l.057-.603.282.569h.09l.271-.569.056.615h.204l-.113-.991h-.102l-.338.695-.35-.695h-.102Zm-.111.979h-.002v.012l.002-.012Zm1.601-.979-.417.991h.169l.101-.251h.373l.09.251h.215l-.418-.991h-.113Zm2.235 0v.991h.192v-.991h-.192Zm.384 0v.991h.136v-.672l.587.672h.102v-.991h-.136v.672l-.587-.672h-.102Zm-9.652.091v.251l-3.985.455c-.429.046-.519.057-.654-.137a1.834 1.834 0 0 1-.102-.159c-.023-.046-.045-.091-.079-.125.09-.012.192-.012.226-.012l4.594-.273Zm11.064 0 4.595.273c.034 0 .124.012.226.012-.023.034-.057.08-.079.125a1.834 1.834 0 0 1-.102.159c-.135.194-.226.183-.655.137l-3.985-.455v-.251Zm-7.644 0c.068 0 .114.011.159.046.135.114.135.33.135.352 0 .274-.136.399-.294.399-.146 0-.282-.125-.293-.398 0-.205.09-.399.293-.399Zm4.415.023h.067c.113 0 .204.046.204.171 0 .08-.046.171-.204.171-.022 0-.056-.012-.078-.012h.011v-.33Zm-6.887.136.147.376h-.282l.135-.376Zm6.096.001.147.375h-.282l.135-.375Zm4.043.318 4.03.455-.824.24c-.226.056-.429.034-.745-.023l-2.461-.41v-.262Zm-11.087 0v.262l-2.461.41c-.327.057-.531.08-.745.023l-.824-.239 4.03-.456Zm0 .478v.331l-.925.238c-.283.069-.452.103-.587.103-.192 0-.305-.045-.994-.25l2.506-.422Zm11.064 0 2.506.422c-.688.205-.801.25-.993.25-.135 0-.305-.023-.587-.102l-.926-.24v-.33Zm-9.449.479h.768c-.463.341-1.163.853-1.468 1.07a.853.853 0 0 1-.486.182c-.18 0-.259-.08-.361-.239-.056-.068-.113-.148-.18-.217.045-.011.09-.011.135-.034.271-.079.666-.284 1.592-.762Zm1.14 0h.643a66.598 66.598 0 0 1-1.309 1.389c-.113.113-.271.273-.508.273-.09 0-.079 0-.903-.228.158-.045.293-.137.361-.182.373-.251 1.31-.945 1.716-1.252Zm.937 0h.587c-.327.557-.768 1.297-.959 1.605-.091.148-.249.376-.542.376-.113.011-.125-.001-.836-.194.147-.08.248-.182.294-.239a74.643 74.643 0 0 0 1.456-1.548Zm.836 0h.53a79.998 79.998 0 0 1-.621 1.912c-.067.182-.158.41-.418.41-.09.011-.067.012-.88-.216.203-.125.327-.319.361-.387.226-.353.745-1.23 1.028-1.719Zm3.149 0h.644a58.301 58.301 0 0 0 1.716 1.252c.068.045.203.125.361.182-.834.228-.813.228-.903.228-.226 0-.395-.16-.508-.273a66.367 66.367 0 0 1-1.31-1.389Zm2.258 0h.836l1.174.296c.079.022.158.034.225.056-.666.205-.767.228-.88.228-.214 0-.497-.148-1.355-.58Zm-9.63.011h.836c-.858.432-1.141.581-1.355.581-.124-.012-.226-.035-.88-.228.067-.011.146-.034.225-.057l1.174-.296Zm4.99 0h.486c.124.398.564 1.787.643 1.992a.857.857 0 0 0 .136.274c-.012-.012-.034-.023-.046-.035l-.62-.592c-.102-.091-.204-.182-.35-.182-.147 0-.26.091-.351.182l-.62.592c-.023.012-.045.023-.057.035.045-.057.079-.137.136-.274.079-.205.519-1.605.643-1.992Zm.711 0h.531c.336.577.678 1.15 1.027 1.719.046.069.158.262.362.387-.813.216-.791.216-.881.216-.259 0-.35-.227-.418-.409-.079-.205-.496-1.549-.621-1.913Zm.791 0h.587c.372.399 1.151 1.229 1.456 1.548.045.046.147.148.294.239-.723.182-.723.194-.836.194-.293 0-.451-.228-.542-.376a95.865 95.865 0 0 1-.959-1.605Zm1.896 0h.768c.937.467 1.332.683 1.592.763l.135.034c-.079.057-.124.136-.18.216-.102.16-.181.239-.361.239-.17 0-.339-.079-.486-.182a75.759 75.759 0 0 1-1.468-1.07Z" }) + ] + } + ); +}); + +exports.default = SiAstonmartin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.d.ts new file mode 100644 index 000000000..6f1a9b9b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00665E"; +declare const SiAstonmartin: IconType; +export { SiAstonmartin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.mjs new file mode 100644 index 000000000..3ed225275 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstonmartin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00665E"; +const SiAstonmartin = React.forwardRef(function SiAstonmartin2({ title = "Aston Martin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.383 9.258c-.158 0-.282.068-.338.182-.068.114-.057.262.022.387l.17.296c.09.16.214.182.304.205.08.012.136.023.192.137l.158.273c.125.228.26.25.362.273.079.012.158.023.259.205.102.182.249.456.621.569.034.012 3.601 1.059 3.613 1.059.373.126.474.262.587.433.068.102.26.376.711.501l3.432.933a.704.704 0 0 0 .711-.182l.621-.592c.091-.08.136-.114.192-.114.057 0 .102.034.192.114l.621.592c.113.091.339.273.712.182l3.431-.933c.463-.125.644-.399.711-.501.113-.171.215-.319.587-.433 0 0 3.568-1.047 3.613-1.059.361-.113.52-.387.621-.569.102-.182.169-.193.248-.205.102-.023.249-.045.373-.273l.158-.273c.068-.114.113-.125.192-.137.09-.023.214-.046.305-.205l.169-.296c.079-.136.091-.273.023-.387a.386.386 0 0 0-.339-.182h-9.675c-.158 0-.406 0-.666.262a.938.938 0 0 0-.169.239c-.079.148-.136.25-.407.25h-1.411c-.26 0-.327-.102-.406-.25a1.017 1.017 0 0 0-.17-.239c-.259-.262-.508-.262-.666-.262H.383Zm.001.239h9.675c.146 0 .316 0 .497.193.112.114.146.24.248.365H.812c-.293 0-.327 0-.417-.137l-.124-.216c-.034-.057-.045-.114-.023-.148.023-.034.068-.057.136-.057Zm13.569 0h9.675c.068 0 .113.023.136.057a.186.186 0 0 1-.023.148l-.124.216c-.09.137-.124.137-.418.137h-9.991c.102-.125.136-.251.248-.365.192-.193.351-.193.497-.193Zm-7.304.74h10.702v1.708H6.649v-1.708Zm10.894.023h5.566c-.023.034-.034.057-.056.08 0 0-.09.148-.124.227-.136.217-.204.216-.587.182l-4.799-.284v-.205Zm-16.641.011h5.566v.205l-4.798.285c-.383.022-.451.034-.587-.182l-.124-.228c-.023-.034-.045-.057-.057-.08Zm7.354.311a.341.341 0 0 0-.219.077.287.287 0 0 0-.09.204c0 .126.067.217.203.285.147.068.214.091.248.137a.115.115 0 0 1-.011.171.245.245 0 0 1-.135.034.453.453 0 0 1-.294-.125l.011.182c.085.043.177.07.271.079a.438.438 0 0 0 .26-.079c.124-.091.124-.285.045-.376-.056-.08-.147-.114-.316-.205-.079-.045-.113-.08-.113-.137 0-.113.147-.147.282-.102a.44.44 0 0 1 .124.068l-.011-.171a2.09 2.09 0 0 0-.113-.034c-.011 0-.07-.011-.142-.008Zm.368.008-.011.148c.124-.012.214-.023.293-.023v.865h.192v-.865c.046 0 .136 0 .294.023l-.011-.148h-.757Zm1.264 0c-.293 0-.496.205-.496.512 0 .296.203.513.496.513.294 0 .497-.217.497-.513 0-.307-.203-.512-.497-.512Zm4.957 0-.012.148c.124-.012.215-.023.294-.023v.877-.012h.192v-.865c.045 0 .135 0 .293.023l-.011-.148h-.756Zm-.508.011c-.102 0-.17 0-.226.011v.991h.192v-.421h.067l.305.421h.226l-.35-.444a.32.32 0 0 0 .158-.103.338.338 0 0 0 .057-.17c0-.148-.113-.217-.204-.251a.62.62 0 0 0-.225-.034Zm-6.932 0-.418.991h.169l.102-.251h.373l.09.251h.215l-.418-.991h-.113Zm3.138 0v.991h.136v-.672l.587.672h.102v-.991h-.136v.672l-.587-.672h-.102Zm1.468 0-.111.979h.156l.057-.603.282.569h.09l.271-.569.056.615h.204l-.113-.991h-.102l-.338.695-.35-.695h-.102Zm-.111.979h-.002v.012l.002-.012Zm1.601-.979-.417.991h.169l.101-.251h.373l.09.251h.215l-.418-.991h-.113Zm2.235 0v.991h.192v-.991h-.192Zm.384 0v.991h.136v-.672l.587.672h.102v-.991h-.136v.672l-.587-.672h-.102Zm-9.652.091v.251l-3.985.455c-.429.046-.519.057-.654-.137a1.834 1.834 0 0 1-.102-.159c-.023-.046-.045-.091-.079-.125.09-.012.192-.012.226-.012l4.594-.273Zm11.064 0 4.595.273c.034 0 .124.012.226.012-.023.034-.057.08-.079.125a1.834 1.834 0 0 1-.102.159c-.135.194-.226.183-.655.137l-3.985-.455v-.251Zm-7.644 0c.068 0 .114.011.159.046.135.114.135.33.135.352 0 .274-.136.399-.294.399-.146 0-.282-.125-.293-.398 0-.205.09-.399.293-.399Zm4.415.023h.067c.113 0 .204.046.204.171 0 .08-.046.171-.204.171-.022 0-.056-.012-.078-.012h.011v-.33Zm-6.887.136.147.376h-.282l.135-.376Zm6.096.001.147.375h-.282l.135-.375Zm4.043.318 4.03.455-.824.24c-.226.056-.429.034-.745-.023l-2.461-.41v-.262Zm-11.087 0v.262l-2.461.41c-.327.057-.531.08-.745.023l-.824-.239 4.03-.456Zm0 .478v.331l-.925.238c-.283.069-.452.103-.587.103-.192 0-.305-.045-.994-.25l2.506-.422Zm11.064 0 2.506.422c-.688.205-.801.25-.993.25-.135 0-.305-.023-.587-.102l-.926-.24v-.33Zm-9.449.479h.768c-.463.341-1.163.853-1.468 1.07a.853.853 0 0 1-.486.182c-.18 0-.259-.08-.361-.239-.056-.068-.113-.148-.18-.217.045-.011.09-.011.135-.034.271-.079.666-.284 1.592-.762Zm1.14 0h.643a66.598 66.598 0 0 1-1.309 1.389c-.113.113-.271.273-.508.273-.09 0-.079 0-.903-.228.158-.045.293-.137.361-.182.373-.251 1.31-.945 1.716-1.252Zm.937 0h.587c-.327.557-.768 1.297-.959 1.605-.091.148-.249.376-.542.376-.113.011-.125-.001-.836-.194.147-.08.248-.182.294-.239a74.643 74.643 0 0 0 1.456-1.548Zm.836 0h.53a79.998 79.998 0 0 1-.621 1.912c-.067.182-.158.41-.418.41-.09.011-.067.012-.88-.216.203-.125.327-.319.361-.387.226-.353.745-1.23 1.028-1.719Zm3.149 0h.644a58.301 58.301 0 0 0 1.716 1.252c.068.045.203.125.361.182-.834.228-.813.228-.903.228-.226 0-.395-.16-.508-.273a66.367 66.367 0 0 1-1.31-1.389Zm2.258 0h.836l1.174.296c.079.022.158.034.225.056-.666.205-.767.228-.88.228-.214 0-.497-.148-1.355-.58Zm-9.63.011h.836c-.858.432-1.141.581-1.355.581-.124-.012-.226-.035-.88-.228.067-.011.146-.034.225-.057l1.174-.296Zm4.99 0h.486c.124.398.564 1.787.643 1.992a.857.857 0 0 0 .136.274c-.012-.012-.034-.023-.046-.035l-.62-.592c-.102-.091-.204-.182-.35-.182-.147 0-.26.091-.351.182l-.62.592c-.023.012-.045.023-.057.035.045-.057.079-.137.136-.274.079-.205.519-1.605.643-1.992Zm.711 0h.531c.336.577.678 1.15 1.027 1.719.046.069.158.262.362.387-.813.216-.791.216-.881.216-.259 0-.35-.227-.418-.409-.079-.205-.496-1.549-.621-1.913Zm.791 0h.587c.372.399 1.151 1.229 1.456 1.548.045.046.147.148.294.239-.723.182-.723.194-.836.194-.293 0-.451-.228-.542-.376a95.865 95.865 0 0 1-.959-1.605Zm1.896 0h.768c.937.467 1.332.683 1.592.763l.135.034c-.079.057-.124.136-.18.216-.102.16-.181.239-.361.239-.17 0-.339-.079-.486-.182a75.759 75.759 0 0 1-1.468-1.07Z" }) + ] + } + ); +}); + +export { SiAstonmartin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.cjs new file mode 100644 index 000000000..bd17bbf6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C2EDE"; +const SiAstra = React__namespace.forwardRef(function SiAstra2({ title = "Astra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.1452 5.3226 1.4517 2.9032c-1.6452 3.3194-3.2904 6.6484-4.9355 9.9677H5.758c2.0323-4.287 4.0646-8.5838 6.0968-12.871m2.7097 5.3226c1.229 2.516 2.4484 5.0322 3.6774 7.5483h-2.8064c-.3194-.7451-.6484-1.4806-.9678-2.2258H12l.0484-.0967c.842-1.742 1.6742-3.4839 2.5161-5.2258" }) + ] + } + ); +}); + +exports.default = SiAstra; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.d.ts new file mode 100644 index 000000000..72cd782ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C2EDE"; +declare const SiAstra: IconType; +export { SiAstra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.mjs new file mode 100644 index 000000000..805a87160 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstra.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C2EDE"; +const SiAstra = React.forwardRef(function SiAstra2({ title = "Astra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m-.1452 5.3226 1.4517 2.9032c-1.6452 3.3194-3.2904 6.6484-4.9355 9.9677H5.758c2.0323-4.287 4.0646-8.5838 6.0968-12.871m2.7097 5.3226c1.229 2.516 2.4484 5.0322 3.6774 7.5483h-2.8064c-.3194-.7451-.6484-1.4806-.9678-2.2258H12l.0484-.0967c.842-1.742 1.6742-3.4839 2.5161-5.2258" }) + ] + } + ); +}); + +export { SiAstra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.cjs new file mode 100644 index 000000000..800db44a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#261230"; +const SiAstral = React__namespace.forwardRef(function SiAstral2({ title = "Astral", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.44 0C.6422 0 0 .6422 0 1.44v21.12C0 23.3578.6422 24 1.44 24h21.12c.7978 0 1.44-.6422 1.44-1.44V1.44C24 .6422 23.3578 0 22.56 0Zm4.7998 4.8h11.5199c.7953 0 1.44.6447 1.44 1.44V19.2h-6.624v-4.32h-1.152v4.32H4.8V6.24c0-.7953.6446-1.44 1.4398-1.44m4.032 5.472v1.152h3.456v-1.152z" }) + ] + } + ); +}); + +exports.default = SiAstral; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.d.ts new file mode 100644 index 000000000..d07215125 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#261230"; +declare const SiAstral: IconType; +export { SiAstral as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.mjs new file mode 100644 index 000000000..1ccf4320a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstral.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#261230"; +const SiAstral = React.forwardRef(function SiAstral2({ title = "Astral", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.44 0C.6422 0 0 .6422 0 1.44v21.12C0 23.3578.6422 24 1.44 24h21.12c.7978 0 1.44-.6422 1.44-1.44V1.44C24 .6422 23.3578 0 22.56 0Zm4.7998 4.8h11.5199c.7953 0 1.44.6447 1.44 1.44V19.2h-6.624v-4.32h-1.152v4.32H4.8V6.24c0-.7953.6446-1.44 1.4398-1.44m4.032 5.472v1.152h3.456v-1.152z" }) + ] + } + ); +}); + +export { SiAstral as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.cjs new file mode 100644 index 000000000..ff8b32a98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BC52EE"; +const SiAstro = React__namespace.forwardRef(function SiAstro2({ title = "Astro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.358 20.162c-1.186-1.07-1.532-3.316-1.038-4.944.856 1.026 2.043 1.352 3.272 1.535 1.897.283 3.76.177 5.522-.678.202-.098.388-.229.608-.36.166.473.209.95.151 1.437-.14 1.185-.738 2.1-1.688 2.794-.38.277-.782.525-1.175.787-1.205.804-1.531 1.747-1.078 3.119l.044.148a3.158 3.158 0 0 1-1.407-1.188 3.31 3.31 0 0 1-.544-1.815c-.004-.32-.004-.642-.048-.958-.106-.769-.472-1.113-1.161-1.133-.707-.02-1.267.411-1.415 1.09-.012.053-.028.104-.045.165h.002zm-5.961-4.445s3.24-1.575 6.49-1.575l2.451-7.565c.092-.366.36-.614.662-.614.302 0 .57.248.662.614l2.45 7.565c3.85 0 6.491 1.575 6.491 1.575L16.088.727C15.93.285 15.663 0 15.303 0H8.697c-.36 0-.615.285-.784.727l-5.516 14.99z" }) + ] + } + ); +}); + +exports.default = SiAstro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.d.ts new file mode 100644 index 000000000..297bf13b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BC52EE"; +declare const SiAstro: IconType; +export { SiAstro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.mjs new file mode 100644 index 000000000..077392d53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAstro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BC52EE"; +const SiAstro = React.forwardRef(function SiAstro2({ title = "Astro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.358 20.162c-1.186-1.07-1.532-3.316-1.038-4.944.856 1.026 2.043 1.352 3.272 1.535 1.897.283 3.76.177 5.522-.678.202-.098.388-.229.608-.36.166.473.209.95.151 1.437-.14 1.185-.738 2.1-1.688 2.794-.38.277-.782.525-1.175.787-1.205.804-1.531 1.747-1.078 3.119l.044.148a3.158 3.158 0 0 1-1.407-1.188 3.31 3.31 0 0 1-.544-1.815c-.004-.32-.004-.642-.048-.958-.106-.769-.472-1.113-1.161-1.133-.707-.02-1.267.411-1.415 1.09-.012.053-.028.104-.045.165h.002zm-5.961-4.445s3.24-1.575 6.49-1.575l2.451-7.565c.092-.366.36-.614.662-.614.302 0 .57.248.662.614l2.45 7.565c3.85 0 6.491 1.575 6.491 1.575L16.088.727C15.93.285 15.663 0 15.303 0H8.697c-.36 0-.615.285-.784.727l-5.516 14.99z" }) + ] + } + ); +}); + +export { SiAstro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.cjs new file mode 100644 index 000000000..7ba968741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAsus = React__namespace.forwardRef(function SiAsus2({ title = "ASUS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.904 10.788V9.522h-4.656c-.972 0-1.41.6-1.482 1.182v.018-1.2h-1.368v1.266h1.362zm-6.144.456l-1.368-.078v1.458c0 .456-.228.594-1.02.594H14.28c-.654 0-.93-.186-.93-.594v-1.596l-1.386-.102v1.812h-.03c-.078-.528-.276-1.14-1.596-1.23L6 11.22c0 .666.474 1.062 1.218 1.14l3.024.306c.24.018.414.09.414.288 0 .216-.18.24-.456.24H5.946V11.22l-1.386-.09v3.348h5.646c1.26 0 1.662-.654 1.722-1.2h.03c.156.864.912 1.2 2.19 1.2h1.41c1.494 0 2.202-.456 2.202-1.524zm4.398.258l-4.338-.258c0 .666.438 1.11 1.182 1.17l3.09.24c.24.018.384.078.384.276 0 .186-.168.258-.516.258h-4.212v1.29h4.302c1.356 0 1.95-.474 1.95-1.554 0-.972-.534-1.338-1.842-1.422zm-10.194-1.98h1.386v1.266h-1.386zM3.798 11.07l-1.506-.15L0 14.478h1.686zm7.914-1.548h-4.23c-.984 0-1.416.612-1.518 1.2v-1.2H3.618c-.33 0-.486.102-.642.33l-.648.936h9.384Z" }) + ] + } + ); +}); + +exports.default = SiAsus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.d.ts new file mode 100644 index 000000000..93fc539f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAsus: IconType; +export { SiAsus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.mjs new file mode 100644 index 000000000..25fd33db7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAsus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAsus = React.forwardRef(function SiAsus2({ title = "ASUS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.904 10.788V9.522h-4.656c-.972 0-1.41.6-1.482 1.182v.018-1.2h-1.368v1.266h1.362zm-6.144.456l-1.368-.078v1.458c0 .456-.228.594-1.02.594H14.28c-.654 0-.93-.186-.93-.594v-1.596l-1.386-.102v1.812h-.03c-.078-.528-.276-1.14-1.596-1.23L6 11.22c0 .666.474 1.062 1.218 1.14l3.024.306c.24.018.414.09.414.288 0 .216-.18.24-.456.24H5.946V11.22l-1.386-.09v3.348h5.646c1.26 0 1.662-.654 1.722-1.2h.03c.156.864.912 1.2 2.19 1.2h1.41c1.494 0 2.202-.456 2.202-1.524zm4.398.258l-4.338-.258c0 .666.438 1.11 1.182 1.17l3.09.24c.24.018.384.078.384.276 0 .186-.168.258-.516.258h-4.212v1.29h4.302c1.356 0 1.95-.474 1.95-1.554 0-.972-.534-1.338-1.842-1.422zm-10.194-1.98h1.386v1.266h-1.386zM3.798 11.07l-1.506-.15L0 14.478h1.686zm7.914-1.548h-4.23c-.984 0-1.416.612-1.518 1.2v-1.2H3.618c-.33 0-.486.102-.642.33l-.648.936h9.384Z" }) + ] + } + ); +}); + +export { SiAsus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.cjs new file mode 100644 index 000000000..ea92f1f83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009FDB"; +const SiAtandt = React__namespace.forwardRef(function SiAtandt2({ title = "AT&T", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.584 21.438a12.077 12.077 0 0 0 7.349 2.495 12 12 0 0 0 7.887-2.967c-.944.607-3.64 2.023-7.887 2.023-3.708 0-6.068-.81-7.349-1.55m8.158.606c2.966 0 6.202-.809 8.09-2.427.539-.405 1.01-1.011 1.483-1.753.27-.472.539-1.011.741-1.483-1.82 2.63-7.011 4.315-12.404 4.315-3.776 0-7.888-1.214-9.506-3.573 1.483 3.236 6 4.92 11.596 4.92m-3.236-5.257C3.37 16.787.472 13.955 0 12c0 .674.067 1.483.202 2.09.068.27.27.674.607 1.079 1.483 1.55 5.191 3.707 11.595 3.707 8.697 0 10.72-2.898 11.124-3.842.27-.674.472-1.888.472-2.967v-.674c-.607 2.292-8.022 5.394-14.494 5.394m-8.427-9.91C.742 7.55.337 8.763.202 9.37c-.067.27 0 .404.068.607.741 1.55 4.45 4.044 13.078 4.044 5.259 0 9.371-1.28 10.045-3.64.135-.404.135-.876 0-1.483-.202-.674-.472-1.483-.809-2.09.068 3.101-8.562 5.124-12.944 5.124-4.719 0-8.696-1.888-8.696-4.248.067-.337.135-.606.135-.809M19.82 3.034c.068.067.068.135.068.27 0 1.348-4.045 3.64-10.517 3.64-4.787 0-5.663-1.753-5.663-2.9 0-.404.135-.808.472-1.213-.607.607-1.146 1.147-1.686 1.82-.202.27-.337.54-.337.675 0 2.36 5.865 3.977 11.259 3.977 5.797 0 8.427-1.887 8.427-3.573 0-.606-.203-.943-.81-1.618a17.301 17.301 0 0 0-1.213-1.078m-1.753-1.281A11.794 11.794 0 0 0 11.933.067C9.64.067 7.55.674 5.73 1.82c-.539.27-.876.54-.876.877 0 1.01 2.36 2.09 6.54 2.09 4.112 0 7.348-1.214 7.348-2.36.067-.202-.203-.405-.675-.674" }) + ] + } + ); +}); + +exports.default = SiAtandt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.d.ts new file mode 100644 index 000000000..073095a5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009FDB"; +declare const SiAtandt: IconType; +export { SiAtandt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.mjs new file mode 100644 index 000000000..e1124c189 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtandt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009FDB"; +const SiAtandt = React.forwardRef(function SiAtandt2({ title = "AT&T", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.584 21.438a12.077 12.077 0 0 0 7.349 2.495 12 12 0 0 0 7.887-2.967c-.944.607-3.64 2.023-7.887 2.023-3.708 0-6.068-.81-7.349-1.55m8.158.606c2.966 0 6.202-.809 8.09-2.427.539-.405 1.01-1.011 1.483-1.753.27-.472.539-1.011.741-1.483-1.82 2.63-7.011 4.315-12.404 4.315-3.776 0-7.888-1.214-9.506-3.573 1.483 3.236 6 4.92 11.596 4.92m-3.236-5.257C3.37 16.787.472 13.955 0 12c0 .674.067 1.483.202 2.09.068.27.27.674.607 1.079 1.483 1.55 5.191 3.707 11.595 3.707 8.697 0 10.72-2.898 11.124-3.842.27-.674.472-1.888.472-2.967v-.674c-.607 2.292-8.022 5.394-14.494 5.394m-8.427-9.91C.742 7.55.337 8.763.202 9.37c-.067.27 0 .404.068.607.741 1.55 4.45 4.044 13.078 4.044 5.259 0 9.371-1.28 10.045-3.64.135-.404.135-.876 0-1.483-.202-.674-.472-1.483-.809-2.09.068 3.101-8.562 5.124-12.944 5.124-4.719 0-8.696-1.888-8.696-4.248.067-.337.135-.606.135-.809M19.82 3.034c.068.067.068.135.068.27 0 1.348-4.045 3.64-10.517 3.64-4.787 0-5.663-1.753-5.663-2.9 0-.404.135-.808.472-1.213-.607.607-1.146 1.147-1.686 1.82-.202.27-.337.54-.337.675 0 2.36 5.865 3.977 11.259 3.977 5.797 0 8.427-1.887 8.427-3.573 0-.606-.203-.943-.81-1.618a17.301 17.301 0 0 0-1.213-1.078m-1.753-1.281A11.794 11.794 0 0 0 11.933.067C9.64.067 7.55.674 5.73 1.82c-.539.27-.876.54-.876.877 0 1.01 2.36 2.09 6.54 2.09 4.112 0 7.348-1.214 7.348-2.36.067-.202-.203-.405-.675-.674" }) + ] + } + ); +}); + +export { SiAtandt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.cjs new file mode 100644 index 000000000..089d3af2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E4202E"; +const SiAtari = React__namespace.forwardRef(function SiAtari2({ title = "Atari", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 21.653s3.154-.355 5.612-2.384c2.339-1.93 3.185-3.592 3.77-5.476.584-1.885.671-6.419.671-7.764V2.346H8.598v1.365c-.024 2.041-.2 5.918-1.135 8.444C5.203 18.242 0 18.775 0 18.775zm24 0s-3.154-.355-5.61-2.384c-2.342-1.93-3.187-3.592-3.772-5.476-.583-1.885-.671-6.419-.671-7.764V2.346H15.4l.001 1.365c.024 2.041.202 5.918 1.138 8.444 2.258 6.087 7.46 6.62 7.46 6.62zM10.659 2.348h2.685v19.306H10.66Z" }) + ] + } + ); +}); + +exports.default = SiAtari; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.d.ts new file mode 100644 index 000000000..75e26415e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E4202E"; +declare const SiAtari: IconType; +export { SiAtari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.mjs new file mode 100644 index 000000000..3bdde5f09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtari.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E4202E"; +const SiAtari = React.forwardRef(function SiAtari2({ title = "Atari", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 21.653s3.154-.355 5.612-2.384c2.339-1.93 3.185-3.592 3.77-5.476.584-1.885.671-6.419.671-7.764V2.346H8.598v1.365c-.024 2.041-.2 5.918-1.135 8.444C5.203 18.242 0 18.775 0 18.775zm24 0s-3.154-.355-5.61-2.384c-2.342-1.93-3.187-3.592-3.772-5.476-.583-1.885-.671-6.419-.671-7.764V2.346H15.4l.001 1.365c.024 2.041.202 5.918 1.138 8.444 2.258 6.087 7.46 6.62 7.46 6.62zM10.659 2.348h2.685v19.306H10.66Z" }) + ] + } + ); +}); + +export { SiAtari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.cjs new file mode 100644 index 000000000..bd3778081 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A91FF"; +const SiAtlasos = React__namespace.forwardRef(function SiAtlasos2({ title = "AtlasOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 1.608 12 20.785H0l2.537-4.394h13.852L12 10.396l-1.844 3.193H5.082z" }) + ] + } + ); +}); + +exports.default = SiAtlasos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.d.ts new file mode 100644 index 000000000..d7a7c0c9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A91FF"; +declare const SiAtlasos: IconType; +export { SiAtlasos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.mjs new file mode 100644 index 000000000..4d910ca86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlasos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A91FF"; +const SiAtlasos = React.forwardRef(function SiAtlasos2({ title = "AtlasOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 1.608 12 20.785H0l2.537-4.394h13.852L12 10.396l-1.844 3.193H5.082z" }) + ] + } + ); +}); + +export { SiAtlasos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.cjs new file mode 100644 index 000000000..4f399d075 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiAtlassian = React__namespace.forwardRef(function SiAtlassian2({ title = "Atlassian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.12 11.084a.683.683 0 00-1.16.126L.075 22.974a.703.703 0 00.63 1.018h8.19a.678.678 0 00.63-.39c1.767-3.65.696-9.203-2.406-12.52zM11.434.386a15.515 15.515 0 00-.906 15.317l3.95 7.9a.703.703 0 00.628.388h8.19a.703.703 0 00.63-1.017L12.63.38a.664.664 0 00-1.196.006z" }) + ] + } + ); +}); + +exports.default = SiAtlassian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.d.ts new file mode 100644 index 000000000..8ce470c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiAtlassian: IconType; +export { SiAtlassian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.mjs new file mode 100644 index 000000000..b7e0d3e5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAtlassian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiAtlassian = React.forwardRef(function SiAtlassian2({ title = "Atlassian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.12 11.084a.683.683 0 00-1.16.126L.075 22.974a.703.703 0 00.63 1.018h8.19a.678.678 0 00.63-.39c1.767-3.65.696-9.203-2.406-12.52zM11.434.386a15.515 15.515 0 00-.906 15.317l3.95 7.9a.703.703 0 00.628.388h8.19a.703.703 0 00.63-1.017L12.63.38a.664.664 0 00-1.196.006z" }) + ] + } + ); +}); + +export { SiAtlassian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.cjs new file mode 100644 index 000000000..7756b6449 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D6180B"; +const SiAuchan = React__namespace.forwardRef(function SiAuchan2({ title = "Auchan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.467 18.7529 1.6518 4.6358h1.2185l-1.7447-4.8583a7.9586 7.9586 0 0 1-1.1256.2217M0 23.3888h5.5057l1.7822-5.6112H1.9158A107.284 107.284 0 0 0 0 23.3879m7.2547-12.6334L10.4337 8.1c.5205-1.4086 1.0642-2.8197 1.6295-4.0216.2822.6408.5495 1.2816.83 1.9639 1.2268-1.0077 2.0328-1.5555 2.0735-1.582l.0164-.0117a5.6618 5.6618 0 0 1 1.632-.7064 112.7775 112.7775 0 0 0-1.4817-3.131h-6.169c-.5146.9903-2.4329 4.9521-4.6765 10.399h2.2694c.3693 0 .5544-.1362.6972-.2557m12.9073 4.4076a7.4539 7.4539 0 0 1-3.473 2.9658l1.8702 5.2609H24c-1.0874-3.3012-2.2536-6.2786-3.3484-9.0684-.1527.303-.3155.5603-.4898.8409M18.549 6.2946c.157 0 .303.0365.4358.1005-.0264-.0042-.054-.0092-.0813-.0092a.5844.5844 0 0 0-.5844.581.581.581 0 0 0 .5844.5803.581.581 0 0 0 .5827-.5794c0-.02-.0025-.0374-.004-.0548a.9987.9987 0 0 1 .0772.3843c0 .5528-.4524 1.0027-1.0102 1.0027-.5556.0014-1.0074-.4471-1.0102-1.0027 0-.5561.4532-1.0027 1.0102-1.0027zm-5.6393 11.3178c1.3297 0 4.503-.3378 6.2204-3.096 1.7198-2.76 2.3191-7.1386 2.3191-7.1386l1.8826-.8923c.1179-.0589.0872-.2623-.0565-.2623H21.246c-.318-.4955-1.4194-1.5497-3.0422-1.5497-.9628 0-1.8062.2715-2.5615.7637 0 0-1.1015.7503-2.7035 2.1282l-4.904 4.0797c-.3776.3155-.84.5205-1.4791.5205H.3858c-.1743 0-.1162.146-.088.2307.435 1.3256 1.5962 2.5085 3.6232 2.5085l-1.4476 1.4916c-.0573.0564-.0573.2258.0863.2258h5.5049c3.9784 0 6.4246-1.7415 8.0324-4.1545.1378-.2067.2673-.4266.3901-.6391.0606.0282.0664.0863.0381.1428-.4059.9794-1.4194 2.965-3.2737 4.1452-.6392.3736-.8417.489-1.7398.8334-.0614.0266-.0863.1245-.0581.2092l2.2279 6.2295h1.216l-2.042-5.7771h.0557z" }) + ] + } + ); +}); + +exports.default = SiAuchan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.d.ts new file mode 100644 index 000000000..0940c2c15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D6180B"; +declare const SiAuchan: IconType; +export { SiAuchan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.mjs new file mode 100644 index 000000000..8ed72d4f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuchan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D6180B"; +const SiAuchan = React.forwardRef(function SiAuchan2({ title = "Auchan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.467 18.7529 1.6518 4.6358h1.2185l-1.7447-4.8583a7.9586 7.9586 0 0 1-1.1256.2217M0 23.3888h5.5057l1.7822-5.6112H1.9158A107.284 107.284 0 0 0 0 23.3879m7.2547-12.6334L10.4337 8.1c.5205-1.4086 1.0642-2.8197 1.6295-4.0216.2822.6408.5495 1.2816.83 1.9639 1.2268-1.0077 2.0328-1.5555 2.0735-1.582l.0164-.0117a5.6618 5.6618 0 0 1 1.632-.7064 112.7775 112.7775 0 0 0-1.4817-3.131h-6.169c-.5146.9903-2.4329 4.9521-4.6765 10.399h2.2694c.3693 0 .5544-.1362.6972-.2557m12.9073 4.4076a7.4539 7.4539 0 0 1-3.473 2.9658l1.8702 5.2609H24c-1.0874-3.3012-2.2536-6.2786-3.3484-9.0684-.1527.303-.3155.5603-.4898.8409M18.549 6.2946c.157 0 .303.0365.4358.1005-.0264-.0042-.054-.0092-.0813-.0092a.5844.5844 0 0 0-.5844.581.581.581 0 0 0 .5844.5803.581.581 0 0 0 .5827-.5794c0-.02-.0025-.0374-.004-.0548a.9987.9987 0 0 1 .0772.3843c0 .5528-.4524 1.0027-1.0102 1.0027-.5556.0014-1.0074-.4471-1.0102-1.0027 0-.5561.4532-1.0027 1.0102-1.0027zm-5.6393 11.3178c1.3297 0 4.503-.3378 6.2204-3.096 1.7198-2.76 2.3191-7.1386 2.3191-7.1386l1.8826-.8923c.1179-.0589.0872-.2623-.0565-.2623H21.246c-.318-.4955-1.4194-1.5497-3.0422-1.5497-.9628 0-1.8062.2715-2.5615.7637 0 0-1.1015.7503-2.7035 2.1282l-4.904 4.0797c-.3776.3155-.84.5205-1.4791.5205H.3858c-.1743 0-.1162.146-.088.2307.435 1.3256 1.5962 2.5085 3.6232 2.5085l-1.4476 1.4916c-.0573.0564-.0573.2258.0863.2258h5.5049c3.9784 0 6.4246-1.7415 8.0324-4.1545.1378-.2067.2673-.4266.3901-.6391.0606.0282.0664.0863.0381.1428-.4059.9794-1.4194 2.965-3.2737 4.1452-.6392.3736-.8417.489-1.7398.8334-.0614.0266-.0863.1245-.0581.2092l2.2279 6.2295h1.216l-2.042-5.7771h.0557z" }) + ] + } + ); +}); + +export { SiAuchan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.cjs new file mode 100644 index 000000000..830c46a6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0000CC"; +const SiAudacity = React__namespace.forwardRef(function SiAudacity2({ title = "Audacity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2.145c-2.487 0-4.755.776-6.428 2.08-1.673 1.303-2.76 3.169-2.76 5.244v.75C1.153 11.06 0 13.268 0 15.856c0 3.312 1.884 6 4.312 6V9.468c0-1.554.805-2.984 2.186-4.06C7.879 4.331 9.829 3.643 12 3.643c2.17 0 4.12.688 5.502 1.764 1.38 1.077 2.186 2.507 2.186 4.06v12.387c2.428 0 4.312-2.687 4.312-6 0-2.587-1.152-4.795-2.813-5.636v-.75c0-2.075-1.086-3.94-2.76-5.244-1.672-1.304-3.94-2.08-6.427-2.08zm0 6.153l-1.125 8.683L9.75 9.105l-.562 6.75-.376-.75-.375-4.5-.187 4.5-.563 1.313-.374-4.5-.376 3.562-.562-.937v2.625l-.563-2.11v-4.64a1.432 1.432 0 0 0-.937-.375v11.812c.375 0 .75-.187.937-.562v-3.375l.188.187.563 1.875.187-2.25.563 2.813v-3.562l.374.937.563 2.625v-3.562l.375.374.563 3.188.562-4.313 1.24 4.86.072-2.985.375-1.124.376 4.687 1.124-4.687.375 3.937.938-4.125.938 4.5.187-3.375.562-1.125.188 4.313.938-4.125.562 1.875.188-1.688.374.75v3.375c.188.375.563.562.938.562V10.043c-.375 0-.75.188-.938.375v4.813l-.374 1-.188-3.188-.375 2.437-.375-.75-.188-2.625-.937 3.563-.188-.75L15 9.293l-.562 4.875-.376 1.5-.75-5.062-.75 4.312-.375 1.125Z" }) + ] + } + ); +}); + +exports.default = SiAudacity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.d.ts new file mode 100644 index 000000000..7f9738583 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0000CC"; +declare const SiAudacity: IconType; +export { SiAudacity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.mjs new file mode 100644 index 000000000..0f7b87855 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudacity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0000CC"; +const SiAudacity = React.forwardRef(function SiAudacity2({ title = "Audacity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 2.145c-2.487 0-4.755.776-6.428 2.08-1.673 1.303-2.76 3.169-2.76 5.244v.75C1.153 11.06 0 13.268 0 15.856c0 3.312 1.884 6 4.312 6V9.468c0-1.554.805-2.984 2.186-4.06C7.879 4.331 9.829 3.643 12 3.643c2.17 0 4.12.688 5.502 1.764 1.38 1.077 2.186 2.507 2.186 4.06v12.387c2.428 0 4.312-2.687 4.312-6 0-2.587-1.152-4.795-2.813-5.636v-.75c0-2.075-1.086-3.94-2.76-5.244-1.672-1.304-3.94-2.08-6.427-2.08zm0 6.153l-1.125 8.683L9.75 9.105l-.562 6.75-.376-.75-.375-4.5-.187 4.5-.563 1.313-.374-4.5-.376 3.562-.562-.937v2.625l-.563-2.11v-4.64a1.432 1.432 0 0 0-.937-.375v11.812c.375 0 .75-.187.937-.562v-3.375l.188.187.563 1.875.187-2.25.563 2.813v-3.562l.374.937.563 2.625v-3.562l.375.374.563 3.188.562-4.313 1.24 4.86.072-2.985.375-1.124.376 4.687 1.124-4.687.375 3.937.938-4.125.938 4.5.187-3.375.562-1.125.188 4.313.938-4.125.562 1.875.188-1.688.374.75v3.375c.188.375.563.562.938.562V10.043c-.375 0-.75.188-.938.375v4.813l-.374 1-.188-3.188-.375 2.437-.375-.75-.188-2.625-.937 3.563-.188-.75L15 9.293l-.562 4.875-.376 1.5-.75-5.062-.75 4.312-.375 1.125Z" }) + ] + } + ); +}); + +export { SiAudacity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.cjs new file mode 100644 index 000000000..5394b6d14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BB0A30"; +const SiAudi = React__namespace.forwardRef(function SiAudi2({ title = "Audi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.848,7.848c-0.992,0-1.902,0.348-2.616,0.928c-0.714-0.58-1.624-0.928-2.616-0.928 c-0.992,0-1.902,0.348-2.616,0.928c-0.714-0.58-1.624-0.928-2.616-0.928c-0.992,0-1.902,0.348-2.616,0.928 c-0.714-0.58-1.624-0.928-2.616-0.928C1.859,7.848,0,9.707,0,12s1.859,4.152,4.152,4.152c0.992,0,1.902-0.348,2.616-0.928 c0.714,0.58,1.624,0.928,2.616,0.928c0.992,0,1.902-0.348,2.616-0.928c0.714,0.58,1.624,0.928,2.616,0.928 c0.992,0,1.902-0.348,2.616-0.928c0.714,0.58,1.624,0.928,2.616,0.928C22.141,16.152,24,14.293,24,12S22.141,7.848,19.848,7.848z M17.232,13.866c-0.376-0.526-0.598-1.17-0.598-1.866c0-0.696,0.222-1.34,0.598-1.866c0.376,0.526,0.598,1.17,0.598,1.866 C17.83,12.696,17.608,13.34,17.232,13.866z M12,13.866c-0.376-0.526-0.598-1.17-0.598-1.866c0-0.696,0.222-1.34,0.598-1.866 c0.376,0.526,0.598,1.17,0.598,1.866C12.598,12.696,12.376,13.34,12,13.866z M6.768,13.866C6.392,13.34,6.17,12.696,6.17,12 c0-0.696,0.222-1.34,0.598-1.866C7.144,10.66,7.366,11.304,7.366,12C7.366,12.696,7.144,13.34,6.768,13.866z M0.938,12 c0-1.775,1.439-3.214,3.214-3.214c0.736,0,1.414,0.248,1.956,0.665C5.56,10.154,5.232,11.039,5.232,12 c0,0.961,0.328,1.846,0.876,2.549c-0.542,0.416-1.22,0.665-1.956,0.665C2.377,15.214,0.938,13.775,0.938,12z M7.428,14.549 C7.976,13.846,8.304,12.961,8.304,12c0-0.961-0.328-1.846-0.876-2.549c0.542-0.416,1.22-0.665,1.956-0.665 c0.736,0,1.414,0.248,1.956,0.665c-0.549,0.704-0.876,1.588-0.876,2.549c0,0.961,0.328,1.846,0.876,2.549 c-0.542,0.416-1.22,0.665-1.956,0.665C8.648,15.214,7.97,14.966,7.428,14.549z M12.66,14.549c0.549-0.704,0.876-1.588,0.876-2.549 c0-0.961-0.328-1.846-0.876-2.55c0.542-0.416,1.22-0.665,1.956-0.665s1.414,0.248,1.956,0.665 c-0.549,0.704-0.876,1.588-0.876,2.549c0,0.961,0.328,1.846,0.876,2.549c-0.542,0.416-1.22,0.665-1.956,0.665 C13.88,15.214,13.202,14.966,12.66,14.549z M19.848,15.214c-0.736,0-1.414-0.248-1.956-0.665c0.548-0.704,0.876-1.588,0.876-2.549 c0-0.961-0.328-1.846-0.876-2.549c0.542-0.416,1.22-0.665,1.956-0.665c1.775,0,3.214,1.439,3.214,3.214 S21.623,15.214,19.848,15.214z" }) + ] + } + ); +}); + +exports.default = SiAudi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.d.ts new file mode 100644 index 000000000..0d852134b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BB0A30"; +declare const SiAudi: IconType; +export { SiAudi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.mjs new file mode 100644 index 000000000..7f4d50c8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BB0A30"; +const SiAudi = React.forwardRef(function SiAudi2({ title = "Audi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.848,7.848c-0.992,0-1.902,0.348-2.616,0.928c-0.714-0.58-1.624-0.928-2.616-0.928 c-0.992,0-1.902,0.348-2.616,0.928c-0.714-0.58-1.624-0.928-2.616-0.928c-0.992,0-1.902,0.348-2.616,0.928 c-0.714-0.58-1.624-0.928-2.616-0.928C1.859,7.848,0,9.707,0,12s1.859,4.152,4.152,4.152c0.992,0,1.902-0.348,2.616-0.928 c0.714,0.58,1.624,0.928,2.616,0.928c0.992,0,1.902-0.348,2.616-0.928c0.714,0.58,1.624,0.928,2.616,0.928 c0.992,0,1.902-0.348,2.616-0.928c0.714,0.58,1.624,0.928,2.616,0.928C22.141,16.152,24,14.293,24,12S22.141,7.848,19.848,7.848z M17.232,13.866c-0.376-0.526-0.598-1.17-0.598-1.866c0-0.696,0.222-1.34,0.598-1.866c0.376,0.526,0.598,1.17,0.598,1.866 C17.83,12.696,17.608,13.34,17.232,13.866z M12,13.866c-0.376-0.526-0.598-1.17-0.598-1.866c0-0.696,0.222-1.34,0.598-1.866 c0.376,0.526,0.598,1.17,0.598,1.866C12.598,12.696,12.376,13.34,12,13.866z M6.768,13.866C6.392,13.34,6.17,12.696,6.17,12 c0-0.696,0.222-1.34,0.598-1.866C7.144,10.66,7.366,11.304,7.366,12C7.366,12.696,7.144,13.34,6.768,13.866z M0.938,12 c0-1.775,1.439-3.214,3.214-3.214c0.736,0,1.414,0.248,1.956,0.665C5.56,10.154,5.232,11.039,5.232,12 c0,0.961,0.328,1.846,0.876,2.549c-0.542,0.416-1.22,0.665-1.956,0.665C2.377,15.214,0.938,13.775,0.938,12z M7.428,14.549 C7.976,13.846,8.304,12.961,8.304,12c0-0.961-0.328-1.846-0.876-2.549c0.542-0.416,1.22-0.665,1.956-0.665 c0.736,0,1.414,0.248,1.956,0.665c-0.549,0.704-0.876,1.588-0.876,2.549c0,0.961,0.328,1.846,0.876,2.549 c-0.542,0.416-1.22,0.665-1.956,0.665C8.648,15.214,7.97,14.966,7.428,14.549z M12.66,14.549c0.549-0.704,0.876-1.588,0.876-2.549 c0-0.961-0.328-1.846-0.876-2.55c0.542-0.416,1.22-0.665,1.956-0.665s1.414,0.248,1.956,0.665 c-0.549,0.704-0.876,1.588-0.876,2.549c0,0.961,0.328,1.846,0.876,2.549c-0.542,0.416-1.22,0.665-1.956,0.665 C13.88,15.214,13.202,14.966,12.66,14.549z M19.848,15.214c-0.736,0-1.414-0.248-1.956-0.665c0.548-0.704,0.876-1.588,0.876-2.549 c0-0.961-0.328-1.846-0.876-2.549c0.542-0.416,1.22-0.665,1.956-0.665c1.775,0,3.214,1.439,3.214,3.214 S21.623,15.214,19.848,15.214z" }) + ] + } + ); +}); + +export { SiAudi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.cjs new file mode 100644 index 000000000..5e99b83c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F8991C"; +const SiAudible = React__namespace.forwardRef(function SiAudible2({ title = "Audible", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.008 17.362L24 9.885v2.028l-11.992 7.509L0 11.912V9.886l12.008 7.477zm0-9.378c-2.709 0-5.085 1.363-6.448 3.47.111-.111.175-.175.286-.254 3.374-2.804 8.237-2.17 10.883 1.362l1.758-1.124c-1.394-2.044-3.786-3.454-6.48-3.454m0 3.47a4.392 4.392 0 0 0-3.548 1.821 3.597 3.597 0 0 1 2.139-.697c1.299 0 2.455.666 3.232 1.79l1.679-1.045c-.729-1.157-2.028-1.87-3.501-1.87M3.897 8.412c4.943-3.897 11.929-2.836 15.652 2.344l.031.032 1.822-1.125a11.214 11.214 0 0 0-9.394-5.085c-3.897 0-7.366 1.996-9.394 5.085.364-.412.824-.903 1.283-1.251" }) + ] + } + ); +}); + +exports.default = SiAudible; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.d.ts new file mode 100644 index 000000000..2e65deff0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F8991C"; +declare const SiAudible: IconType; +export { SiAudible as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.mjs new file mode 100644 index 000000000..50a3cd665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudible.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F8991C"; +const SiAudible = React.forwardRef(function SiAudible2({ title = "Audible", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.008 17.362L24 9.885v2.028l-11.992 7.509L0 11.912V9.886l12.008 7.477zm0-9.378c-2.709 0-5.085 1.363-6.448 3.47.111-.111.175-.175.286-.254 3.374-2.804 8.237-2.17 10.883 1.362l1.758-1.124c-1.394-2.044-3.786-3.454-6.48-3.454m0 3.47a4.392 4.392 0 0 0-3.548 1.821 3.597 3.597 0 0 1 2.139-.697c1.299 0 2.455.666 3.232 1.79l1.679-1.045c-.729-1.157-2.028-1.87-3.501-1.87M3.897 8.412c4.943-3.897 11.929-2.836 15.652 2.344l.031.032 1.822-1.125a11.214 11.214 0 0 0-9.394-5.085c-3.897 0-7.366 1.996-9.394 5.085.364-.412.824-.903 1.283-1.251" }) + ] + } + ); +}); + +export { SiAudible as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.cjs new file mode 100644 index 000000000..fceca9af7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#82612C"; +const SiAudiobookshelf = React__namespace.forwardRef(function SiAudiobookshelf2({ title = "Audiobookshelf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm-.023.402A11.598 11.598 0 0 1 23.575 12a11.598 11.598 0 0 1-11.598 11.598A11.598 11.598 0 0 1 .378 12 11.598 11.598 0 0 1 11.977.402Zm0 1.776a7.093 7.093 0 0 0-7.092 7.093v1.536a6.395 6.395 0 0 0-.439.33.35.35 0 0 0-.126.27v1.84a.36.36 0 0 0 .126.272c.22.182.722.564 1.504.956v.179c0 .483.31.873.694.873.384 0 .694-.392.694-.873v-4.415c0-.483-.31-.873-.694-.873-.369 0-.67.359-.694.812h-.002v-.91a6.027 6.027 0 1 1 12.054.003v.91c-.025-.454-.326-.813-.695-.813-.384 0-.694.391-.694.873v4.415c0 .483.31.873.694.873.384 0 .695-.392.695-.873v-.179a7.964 7.964 0 0 0 1.503-.956.35.35 0 0 0 .126-.272v-1.843a.342.342 0 0 0-.124-.27 5.932 5.932 0 0 0-.438-.329V9.271a7.093 7.093 0 0 0-7.092-7.093zm-3.34 5.548a.84.84 0 0 0-.84.84v9.405c0 .464.376.84.84.84h.866a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84Zm2.905 0a.84.84 0 0 0-.84.84v9.405c0 .464.377.84.84.84h.867a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84zm2.908 0a.84.84 0 0 0-.84.84v9.405c0 .464.376.84.84.84h.867a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84zM8.112 9.983h1.915v.2H8.112Zm2.906 0h1.915v.2h-1.915Zm2.908 0h1.915v.2h-1.915zm-7.58 9.119a.633.633 0 0 0 0 1.265h11.26a.632.632 0 0 0 0-1.265z" }) + ] + } + ); +}); + +exports.default = SiAudiobookshelf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.d.ts new file mode 100644 index 000000000..e8c57c070 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#82612C"; +declare const SiAudiobookshelf: IconType; +export { SiAudiobookshelf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.mjs new file mode 100644 index 000000000..fdc720ffe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiobookshelf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#82612C"; +const SiAudiobookshelf = React.forwardRef(function SiAudiobookshelf2({ title = "Audiobookshelf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm-.023.402A11.598 11.598 0 0 1 23.575 12a11.598 11.598 0 0 1-11.598 11.598A11.598 11.598 0 0 1 .378 12 11.598 11.598 0 0 1 11.977.402Zm0 1.776a7.093 7.093 0 0 0-7.092 7.093v1.536a6.395 6.395 0 0 0-.439.33.35.35 0 0 0-.126.27v1.84a.36.36 0 0 0 .126.272c.22.182.722.564 1.504.956v.179c0 .483.31.873.694.873.384 0 .694-.392.694-.873v-4.415c0-.483-.31-.873-.694-.873-.369 0-.67.359-.694.812h-.002v-.91a6.027 6.027 0 1 1 12.054.003v.91c-.025-.454-.326-.813-.695-.813-.384 0-.694.391-.694.873v4.415c0 .483.31.873.694.873.384 0 .695-.392.695-.873v-.179a7.964 7.964 0 0 0 1.503-.956.35.35 0 0 0 .126-.272v-1.843a.342.342 0 0 0-.124-.27 5.932 5.932 0 0 0-.438-.329V9.271a7.093 7.093 0 0 0-7.092-7.093zm-3.34 5.548a.84.84 0 0 0-.84.84v9.405c0 .464.376.84.84.84h.866a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84Zm2.905 0a.84.84 0 0 0-.84.84v9.405c0 .464.377.84.84.84h.867a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84zm2.908 0a.84.84 0 0 0-.84.84v9.405c0 .464.376.84.84.84h.867a.84.84 0 0 0 .84-.84V8.566a.84.84 0 0 0-.84-.84zM8.112 9.983h1.915v.2H8.112Zm2.906 0h1.915v.2h-1.915Zm2.908 0h1.915v.2h-1.915zm-7.58 9.119a.633.633 0 0 0 0 1.265h11.26a.632.632 0 0 0 0-1.265z" }) + ] + } + ); +}); + +export { SiAudiobookshelf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.cjs new file mode 100644 index 000000000..0257ab20c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007CE2"; +const SiAudioboom = React__namespace.forwardRef(function SiAudioboom2({ title = "Audioboom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zM7.425 3.214c-.621 0-1.125.503-1.125 1.124v6a1.124 1.124 0 0 0 2.25 0v-6c0-.62-.504-1.124-1.125-1.124zm0 9.314c-.621 0-1.125.503-1.125 1.125v6a1.124 1.124 0 0 0 2.25 0v-6c0-.622-.504-1.125-1.125-1.125zm4.152-6.856c-.621 0-1.125.504-1.125 1.125v10.388a1.124 1.124 0 0 0 2.25 0V6.797c0-.621-.504-1.125-1.125-1.125zm4.151 6.856c-.62 0-1.124.503-1.124 1.125v1.056a1.124 1.124 0 1 0 2.249 0v-1.056c0-.622-.504-1.125-1.125-1.125zm0-4.37c-.62 0-1.124.503-1.124 1.124v1.056a1.124 1.124 0 0 0 2.249 0V9.282c0-.62-.504-1.124-1.125-1.124zm4.152 2.422c-.62 0-1.124.503-1.124 1.124v.574a1.124 1.124 0 1 0 2.249 0v-.574c0-.62-.504-1.124-1.125-1.124Z" }) + ] + } + ); +}); + +exports.default = SiAudioboom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.d.ts new file mode 100644 index 000000000..b7c728844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007CE2"; +declare const SiAudioboom: IconType; +export { SiAudioboom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.mjs new file mode 100644 index 000000000..39ee87b1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudioboom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007CE2"; +const SiAudioboom = React.forwardRef(function SiAudioboom2({ title = "Audioboom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zM7.425 3.214c-.621 0-1.125.503-1.125 1.124v6a1.124 1.124 0 0 0 2.25 0v-6c0-.62-.504-1.124-1.125-1.124zm0 9.314c-.621 0-1.125.503-1.125 1.125v6a1.124 1.124 0 0 0 2.25 0v-6c0-.622-.504-1.125-1.125-1.125zm4.152-6.856c-.621 0-1.125.504-1.125 1.125v10.388a1.124 1.124 0 0 0 2.25 0V6.797c0-.621-.504-1.125-1.125-1.125zm4.151 6.856c-.62 0-1.124.503-1.124 1.125v1.056a1.124 1.124 0 1 0 2.249 0v-1.056c0-.622-.504-1.125-1.125-1.125zm0-4.37c-.62 0-1.124.503-1.124 1.124v1.056a1.124 1.124 0 0 0 2.249 0V9.282c0-.62-.504-1.124-1.125-1.124zm4.152 2.422c-.62 0-1.124.503-1.124 1.124v.574a1.124 1.124 0 1 0 2.249 0v-.574c0-.62-.504-1.124-1.125-1.124Z" }) + ] + } + ); +}); + +export { SiAudioboom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.cjs new file mode 100644 index 000000000..1211deacb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA200"; +const SiAudiomack = React__namespace.forwardRef(function SiAudiomack2({ title = "Audiomack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.331 11.378s.5418-.089.765.1439c.2234.2332.077.7156-.2195.7237-.2965.01-.5705.063-.765-.1439-.1946-.2066-.1424-.6218.2195-.7237m5.881 3.2925c-.0522.01-.1075-.018-.164-.059-.3884-.5413-.5287-2.3923-.707-2.5025-.185-.1144-.8545 1.0255-2.1862.903-.5569-.051-1.1236-.4121-1.4573-.662.031-.4206.0364-1.4027.8659-1.0833.5038.1939 1.3667.7266 2.1245-.23.8378-1.0579 1.2999-.7506 1.577-.5206.2771.23.0925 1.4259.5058 1.0916.4133-.3343 2.082-2.4103 2.082-2.4103s1.292-1.303 1.4898.067c.1979 1.3698 1.0403 2.8877 1.2635 2.8445.2234-.043 2.8223-5.3253 3.1945-5.666.3722-.3409 1.6252-.2961 1.5657.5781-.0596.8742-.1871 6.308-.1871 6.308s-.147 1.5311.0924.7128c.0992-.3392.206-.6453.3392-1.0024.6414-2.0534 1.734-5.5613 2.2784-7.3688.1252-.4325.233-.8037.3166-1.0891l.0001-.0008a3.5925 3.5925 0 0 1 .0973-.3305c.0455-.1532.0763-.2546.0858-.2813.0243-.068.0925-.1192.1884-.157.0962-.061.1995-.064.3165-.067.3021-.027.6907.012 1.0401.1119.1018 0 .2125.037.3172.1118v.0001s.0063 0 .0151.01c.0023 0 .0048 0 .0073.01.0219.015.0573.045.0983.095.0012 0 .0025 0 .004.01.017.021.0341.045.0515.073.1952.2863.315.814.1948 1.7498-.2996 2.3354-.5316 7.1397-.5316 7.1397s-.0461.2298.4353-.782c.0167-.035.0383-.066.058-.098.026-.017.0552-.042.0913-.085.2974-.3546 1.0968-.5629 1.6512-.5586.2336.028.4293.087.5462.1609.2188.333.0897 1.562.0897 1.562-.4612.043-1.3403.2908-1.6519.3366-.3118.046-.7852 2.0699-1.4433 1.8629-.6581-.2069-2.1246-1.1268-2.1246-1.2533 0-.1102.1152-1.4546.1453-1.8016.0022-.024.004-.046.0058-.068a.152.152 0 0 1 .0014-.014l-.0002.0003c.0213-.2733.0023-.3927-.1239-.1199-.1086.2346-.581 1.7359-1.1078 3.3709-.0556.1429-1.0511 3.1558-1.1818 3.5231-.156.4261-.287.7523-.3776.921-.1378.1867-.3234.3036-.5826.2252-.6465-.1954-1.4654-1.0889-1.473-1.3106-.0155-1.2503.0608-7.973-.2423-7.4127-.311.5744-2.73 4.5608-2.73 4.5608-.0405.01-.0705.01-.1062.01-.1712-.019-.4366-.074-.51-.2384-.004-.01-.0094-.018-.0129-.028-.0035-.01-.0075-.022-.0135-.04-.0329-.1097-.0463-.2289-.0753-.3265-.1082-.3652-.2813-.8886-.463-1.421-.2784-.9079-.5654-1.8366-.6127-1.9391-.0923-.2007-.2268-.116-.3475-.0002-.54.458-1.6868 2.4793-2.7225 2.5898" }) + ] + } + ); +}); + +exports.default = SiAudiomack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.d.ts new file mode 100644 index 000000000..7e3937ab4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA200"; +declare const SiAudiomack: IconType; +export { SiAudiomack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.mjs new file mode 100644 index 000000000..2c231ab0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiomack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA200"; +const SiAudiomack = React.forwardRef(function SiAudiomack2({ title = "Audiomack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.331 11.378s.5418-.089.765.1439c.2234.2332.077.7156-.2195.7237-.2965.01-.5705.063-.765-.1439-.1946-.2066-.1424-.6218.2195-.7237m5.881 3.2925c-.0522.01-.1075-.018-.164-.059-.3884-.5413-.5287-2.3923-.707-2.5025-.185-.1144-.8545 1.0255-2.1862.903-.5569-.051-1.1236-.4121-1.4573-.662.031-.4206.0364-1.4027.8659-1.0833.5038.1939 1.3667.7266 2.1245-.23.8378-1.0579 1.2999-.7506 1.577-.5206.2771.23.0925 1.4259.5058 1.0916.4133-.3343 2.082-2.4103 2.082-2.4103s1.292-1.303 1.4898.067c.1979 1.3698 1.0403 2.8877 1.2635 2.8445.2234-.043 2.8223-5.3253 3.1945-5.666.3722-.3409 1.6252-.2961 1.5657.5781-.0596.8742-.1871 6.308-.1871 6.308s-.147 1.5311.0924.7128c.0992-.3392.206-.6453.3392-1.0024.6414-2.0534 1.734-5.5613 2.2784-7.3688.1252-.4325.233-.8037.3166-1.0891l.0001-.0008a3.5925 3.5925 0 0 1 .0973-.3305c.0455-.1532.0763-.2546.0858-.2813.0243-.068.0925-.1192.1884-.157.0962-.061.1995-.064.3165-.067.3021-.027.6907.012 1.0401.1119.1018 0 .2125.037.3172.1118v.0001s.0063 0 .0151.01c.0023 0 .0048 0 .0073.01.0219.015.0573.045.0983.095.0012 0 .0025 0 .004.01.017.021.0341.045.0515.073.1952.2863.315.814.1948 1.7498-.2996 2.3354-.5316 7.1397-.5316 7.1397s-.0461.2298.4353-.782c.0167-.035.0383-.066.058-.098.026-.017.0552-.042.0913-.085.2974-.3546 1.0968-.5629 1.6512-.5586.2336.028.4293.087.5462.1609.2188.333.0897 1.562.0897 1.562-.4612.043-1.3403.2908-1.6519.3366-.3118.046-.7852 2.0699-1.4433 1.8629-.6581-.2069-2.1246-1.1268-2.1246-1.2533 0-.1102.1152-1.4546.1453-1.8016.0022-.024.004-.046.0058-.068a.152.152 0 0 1 .0014-.014l-.0002.0003c.0213-.2733.0023-.3927-.1239-.1199-.1086.2346-.581 1.7359-1.1078 3.3709-.0556.1429-1.0511 3.1558-1.1818 3.5231-.156.4261-.287.7523-.3776.921-.1378.1867-.3234.3036-.5826.2252-.6465-.1954-1.4654-1.0889-1.473-1.3106-.0155-1.2503.0608-7.973-.2423-7.4127-.311.5744-2.73 4.5608-2.73 4.5608-.0405.01-.0705.01-.1062.01-.1712-.019-.4366-.074-.51-.2384-.004-.01-.0094-.018-.0129-.028-.0035-.01-.0075-.022-.0135-.04-.0329-.1097-.0463-.2289-.0753-.3265-.1082-.3652-.2813-.8886-.463-1.421-.2784-.9079-.5654-1.8366-.6127-1.9391-.0923-.2007-.2268-.116-.3475-.0002-.54.458-1.6868 2.4793-2.7225 2.5898" }) + ] + } + ); +}); + +export { SiAudiomack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.cjs new file mode 100644 index 000000000..92fa95ca3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAudiotechnica = React__namespace.forwardRef(function SiAudiotechnica2({ title = "Audio-Technica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A11.992 11.992 0 00.015 11.985 12.019 12.019 0 0012 24a12.019 12.019 0 0011.985-12.015A11.992 11.992 0 0012.004 0zm0 .903a11.078 11.078 0 0111.085 11.078c0 6.123-4.958 11.112-11.085 11.112A11.104 11.104 0 01.922 11.985 11.078 11.078 0 0111.996.907zm.087 1.16l-.43 1.252-5.674 16.063-.204.604h12.654l-.23-.604L12.524 3.31zm0 2.797l2.007 5.643-3.024 8.553H7.056zm2.502 7.038l2.532 7.155h-5.09z" }) + ] + } + ); +}); + +exports.default = SiAudiotechnica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.d.ts new file mode 100644 index 000000000..dee031bc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAudiotechnica: IconType; +export { SiAudiotechnica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.mjs new file mode 100644 index 000000000..74f984c6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAudiotechnica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAudiotechnica = React.forwardRef(function SiAudiotechnica2({ title = "Audio-Technica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A11.992 11.992 0 00.015 11.985 12.019 12.019 0 0012 24a12.019 12.019 0 0011.985-12.015A11.992 11.992 0 0012.004 0zm0 .903a11.078 11.078 0 0111.085 11.078c0 6.123-4.958 11.112-11.085 11.112A11.104 11.104 0 01.922 11.985 11.078 11.078 0 0111.996.907zm.087 1.16l-.43 1.252-5.674 16.063-.204.604h12.654l-.23-.604L12.524 3.31zm0 2.797l2.007 5.643-3.024 8.553H7.056zm2.502 7.038l2.532 7.155h-5.09z" }) + ] + } + ); +}); + +export { SiAudiotechnica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.cjs new file mode 100644 index 000000000..6e19a3407 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED2B88"; +const SiAurelia = React__namespace.forwardRef(function SiAurelia2({ title = "Aurelia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.716 4.636L13.49 6.122l-2.295-3.439 2.228-1.486zM17.527 14.967l3.806 5.703-4.533 3.025-3.806-5.703-.664-.995 4.533-3.025zM11.817 18.777l.838 1.256-3.45 2.303-1.503-2.25.754-.504 2.697-1.8zM19.413 12.27l.968-.645 1.501 2.25-2.227 1.487-.838-1.256 1.26-.84zm-.596 1.836l-.664-.995 1.26-.84.664.994zM3.792 12.593l-.753.503L.744 9.657l3.45-2.302 1.61 2.41-2.698 1.8 2.697-1.8.686 1.029zM11.513 5.954l.687 1.029-4.534 3.025L6.98 8.98 3.21 3.33 7.742.305zM14.749 5.282l-1.26.84-.686-1.028-1.609-2.41 2.228-1.487 2.295 3.439zM9.12 20.577l-.664-.995 2.697-1.8.664.995zM18.817 14.106l-.664-.995 1.26-.84.664.994zM3.792 12.593l-.686-1.028 2.697-1.8.686 1.029zM13.489 6.122l-.686-1.028 1.26-.84.686 1.028zM17.527 14.967l-4.533 3.025-.664-.995 4.533-3.025zM11.513 5.954l.687 1.029-4.534 3.025L6.98 8.98zM2.507 5.132l.855 1.283-1.282.855-.856-1.282zM7.127 20.505l.856 1.283-1.282.855-.856-1.282zM3.754 21.797L0 16.125 20.063 2.706 24 8.287z" }) + ] + } + ); +}); + +exports.default = SiAurelia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.d.ts new file mode 100644 index 000000000..b8b4da035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED2B88"; +declare const SiAurelia: IconType; +export { SiAurelia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.mjs new file mode 100644 index 000000000..b5740fc2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAurelia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED2B88"; +const SiAurelia = React.forwardRef(function SiAurelia2({ title = "Aurelia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.716 4.636L13.49 6.122l-2.295-3.439 2.228-1.486zM17.527 14.967l3.806 5.703-4.533 3.025-3.806-5.703-.664-.995 4.533-3.025zM11.817 18.777l.838 1.256-3.45 2.303-1.503-2.25.754-.504 2.697-1.8zM19.413 12.27l.968-.645 1.501 2.25-2.227 1.487-.838-1.256 1.26-.84zm-.596 1.836l-.664-.995 1.26-.84.664.994zM3.792 12.593l-.753.503L.744 9.657l3.45-2.302 1.61 2.41-2.698 1.8 2.697-1.8.686 1.029zM11.513 5.954l.687 1.029-4.534 3.025L6.98 8.98 3.21 3.33 7.742.305zM14.749 5.282l-1.26.84-.686-1.028-1.609-2.41 2.228-1.487 2.295 3.439zM9.12 20.577l-.664-.995 2.697-1.8.664.995zM18.817 14.106l-.664-.995 1.26-.84.664.994zM3.792 12.593l-.686-1.028 2.697-1.8.686 1.029zM13.489 6.122l-.686-1.028 1.26-.84.686 1.028zM17.527 14.967l-4.533 3.025-.664-.995 4.533-3.025zM11.513 5.954l.687 1.029-4.534 3.025L6.98 8.98zM2.507 5.132l.855 1.283-1.282.855-.856-1.282zM7.127 20.505l.856 1.283-1.282.855-.856-1.282zM3.754 21.797L0 16.125 20.063 2.706 24 8.287z" }) + ] + } + ); +}); + +export { SiAurelia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.cjs new file mode 100644 index 000000000..078947bf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3379F2"; +const SiAutentique = React__namespace.forwardRef(function SiAutentique2({ title = "Autentique", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.54 1.225-.27 1.66a10.57 10.57 0 0 0-6.114-2.32L0 11.99h12.156V6.062c3.199 0 5.74 2.434 5.74 5.917 0 3.687-2.614 5.98-5.73 5.98-2.594 0-4.648-1.557-5.429-3.898L0 11.984c0 6.43 4.591 11.45 11.543 11.45 1.666 0 4.259-.383 6.706-2.325l.29 1.64H24V1.225Z" }) + ] + } + ); +}); + +exports.default = SiAutentique; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.d.ts new file mode 100644 index 000000000..61b0f75b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3379F2"; +declare const SiAutentique: IconType; +export { SiAutentique as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.mjs new file mode 100644 index 000000000..ad7d67df3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutentique.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3379F2"; +const SiAutentique = React.forwardRef(function SiAutentique2({ title = "Autentique", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.54 1.225-.27 1.66a10.57 10.57 0 0 0-6.114-2.32L0 11.99h12.156V6.062c3.199 0 5.74 2.434 5.74 5.917 0 3.687-2.614 5.98-5.73 5.98-2.594 0-4.648-1.557-5.429-3.898L0 11.984c0 6.43 4.591 11.45 11.543 11.45 1.666 0 4.259-.383 6.706-2.325l.29 1.64H24V1.225Z" }) + ] + } + ); +}); + +export { SiAutentique as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.cjs new file mode 100644 index 000000000..bfa2cfced --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB5424"; +const SiAuth0 = React__namespace.forwardRef(function SiAuth02({ title = "Auth0", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.98 7.448L19.62 0H4.347L2.02 7.448c-1.352 4.312.03 9.206 3.815 12.015L12.007 24l6.157-4.552c3.755-2.81 5.182-7.688 3.815-12.015l-6.16 4.58 2.343 7.45-6.157-4.597-6.158 4.58 2.358-7.433-6.188-4.55 7.63-.045L12.008 0l2.356 7.404 7.615.044z" }) + ] + } + ); +}); + +exports.default = SiAuth0; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.d.ts new file mode 100644 index 000000000..1c3c7cf20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB5424"; +declare const SiAuth0: IconType; +export { SiAuth0 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.mjs new file mode 100644 index 000000000..ac55b1ba1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuth0.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB5424"; +const SiAuth0 = React.forwardRef(function SiAuth02({ title = "Auth0", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.98 7.448L19.62 0H4.347L2.02 7.448c-1.352 4.312.03 9.206 3.815 12.015L12.007 24l6.157-4.552c3.755-2.81 5.182-7.688 3.815-12.015l-6.16 4.58 2.343 7.45-6.157-4.597-6.158 4.58 2.358-7.433-6.188-4.55 7.63-.045L12.008 0l2.356 7.404 7.615.044z" }) + ] + } + ); +}); + +export { SiAuth0 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.cjs new file mode 100644 index 000000000..18f91e8c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#113155"; +const SiAuthelia = React__namespace.forwardRef(function SiAuthelia2({ title = "Authelia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.624.191c-.324.023-.655.011-.97.073-2.883.568-5.244 2.01-7.074 4.3C1.42 6.014.624 7.652.243 9.48c-.25 1.2-.294 2.402-.191 3.627.237 2.832 1.377 5.233 3.345 7.26.332.341.775.348 1.1.055.39-.35.442-.735.124-1.149-.271-.353-.588-.671-.85-1.03-1.625-2.208-2.343-4.674-2.04-7.411.305-2.773 1.6-5.022 3.723-6.795 1.517-1.267 3.288-1.983 5.248-2.24.272-.037.552-.083.803-.186.32-.132.478-.564.4-.923-.085-.384-.355-.483-.702-.477-.194.004-.387 0-.58 0v-.02zm4.639 3.41c-.312-.008-.582.197-.722.512-.176.4-.027.854.367 1.096.123.075.256.134.385.199 1.485.737 2.619 1.834 3.319 3.342.257.554.423 1.15.636 1.726.162.441.509.656.92.579.425-.08.67-.392.668-.952-.016-.081-.035-.261-.082-.435-.535-1.97-1.579-3.616-3.21-4.847-.598-.453-1.28-.812-1.958-1.14a.782.782 0 0 0-.323-.08zm-6.939.23a.903.903 0 0 0-.492.144c-.648.388-1.325.764-1.88 1.266-2.323 2.098-3.262 4.755-2.905 7.84.55 4.74 4.6 8.021 8.9 7.904l.868-.001a.99.99 0 0 0 .109-.007c2.491-.312 4.58-1.387 6.146-3.36.488-.615.86-1.336 1.2-2.049.248-.523-.032-.982-.56-1.12-.38-.1-.72.112-.974.509-.473.737-.89 1.54-1.491 2.16-1.479 1.52-3.322 2.28-5.466 2.199-2.405-.091-4.337-1.127-5.758-3.056-1.088-1.475-1.49-3.168-1.32-4.984.184-1.987 1.038-3.644 2.57-4.927.423-.354.908-.633 1.365-.946.458-.314.568-.715.314-1.15-.153-.262-.371-.413-.626-.422zm3.417 2.167C8.724 6.056 6.02 8.625 6 12 5.98 15.29 8.712 18.017 12 18.02c3.339.005 6.078-2.618 6.062-6.025C18.048 8.45 15.192 5.911 12.034 6a5.726 5.726 0 0 0-.293-.002zm10.752 1.164a.91.91 0 0 0-.137.002c-.404.033-.642.295-.74.646-.053.187-.01.432.064.62a9.546 9.546 0 0 1 .648 3.753 9.994 9.994 0 0 1-1.32 4.76c-1.617 2.84-4.04 4.53-7.243 5.12-.343.063-.694.095-1.033.174-.434.103-.688.473-.641.882.044.38.34.646.769.684.132.012.265.002.398.002l-.001-.003c.145 0 .29.005.434-.002.084-.004.167-.028.25-.04 1.847-.282 3.518-.99 5.037-2.068 1.708-1.213 3.001-2.78 3.897-4.665 1.1-2.317 1.375-4.752.906-7.264-.13-.694-.354-1.376-.584-2.046-.125-.362-.389-.537-.704-.555zm-10.449.862c.13 0 .261.016.392.05.708.18 1.16.787 1.158 1.553.027.504-.211.888-.588 1.183-.207.163-.236.32-.176.558.264 1.052.52 2.107.763 3.164.13.568-.019.872-.522 1.174-.675.404-1.666.354-2.29-.13-.315-.244-.427-.573-.331-.966.252-1.031.494-2.064.762-3.09.086-.33.041-.554-.225-.794-.581-.523-.682-1.253-.317-1.903a1.57 1.57 0 0 1 1.374-.8z" }) + ] + } + ); +}); + +exports.default = SiAuthelia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.d.ts new file mode 100644 index 000000000..01a23fdb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#113155"; +declare const SiAuthelia: IconType; +export { SiAuthelia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.mjs new file mode 100644 index 000000000..4e81af2f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthelia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#113155"; +const SiAuthelia = React.forwardRef(function SiAuthelia2({ title = "Authelia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.624.191c-.324.023-.655.011-.97.073-2.883.568-5.244 2.01-7.074 4.3C1.42 6.014.624 7.652.243 9.48c-.25 1.2-.294 2.402-.191 3.627.237 2.832 1.377 5.233 3.345 7.26.332.341.775.348 1.1.055.39-.35.442-.735.124-1.149-.271-.353-.588-.671-.85-1.03-1.625-2.208-2.343-4.674-2.04-7.411.305-2.773 1.6-5.022 3.723-6.795 1.517-1.267 3.288-1.983 5.248-2.24.272-.037.552-.083.803-.186.32-.132.478-.564.4-.923-.085-.384-.355-.483-.702-.477-.194.004-.387 0-.58 0v-.02zm4.639 3.41c-.312-.008-.582.197-.722.512-.176.4-.027.854.367 1.096.123.075.256.134.385.199 1.485.737 2.619 1.834 3.319 3.342.257.554.423 1.15.636 1.726.162.441.509.656.92.579.425-.08.67-.392.668-.952-.016-.081-.035-.261-.082-.435-.535-1.97-1.579-3.616-3.21-4.847-.598-.453-1.28-.812-1.958-1.14a.782.782 0 0 0-.323-.08zm-6.939.23a.903.903 0 0 0-.492.144c-.648.388-1.325.764-1.88 1.266-2.323 2.098-3.262 4.755-2.905 7.84.55 4.74 4.6 8.021 8.9 7.904l.868-.001a.99.99 0 0 0 .109-.007c2.491-.312 4.58-1.387 6.146-3.36.488-.615.86-1.336 1.2-2.049.248-.523-.032-.982-.56-1.12-.38-.1-.72.112-.974.509-.473.737-.89 1.54-1.491 2.16-1.479 1.52-3.322 2.28-5.466 2.199-2.405-.091-4.337-1.127-5.758-3.056-1.088-1.475-1.49-3.168-1.32-4.984.184-1.987 1.038-3.644 2.57-4.927.423-.354.908-.633 1.365-.946.458-.314.568-.715.314-1.15-.153-.262-.371-.413-.626-.422zm3.417 2.167C8.724 6.056 6.02 8.625 6 12 5.98 15.29 8.712 18.017 12 18.02c3.339.005 6.078-2.618 6.062-6.025C18.048 8.45 15.192 5.911 12.034 6a5.726 5.726 0 0 0-.293-.002zm10.752 1.164a.91.91 0 0 0-.137.002c-.404.033-.642.295-.74.646-.053.187-.01.432.064.62a9.546 9.546 0 0 1 .648 3.753 9.994 9.994 0 0 1-1.32 4.76c-1.617 2.84-4.04 4.53-7.243 5.12-.343.063-.694.095-1.033.174-.434.103-.688.473-.641.882.044.38.34.646.769.684.132.012.265.002.398.002l-.001-.003c.145 0 .29.005.434-.002.084-.004.167-.028.25-.04 1.847-.282 3.518-.99 5.037-2.068 1.708-1.213 3.001-2.78 3.897-4.665 1.1-2.317 1.375-4.752.906-7.264-.13-.694-.354-1.376-.584-2.046-.125-.362-.389-.537-.704-.555zm-10.449.862c.13 0 .261.016.392.05.708.18 1.16.787 1.158 1.553.027.504-.211.888-.588 1.183-.207.163-.236.32-.176.558.264 1.052.52 2.107.763 3.164.13.568-.019.872-.522 1.174-.675.404-1.666.354-2.29-.13-.315-.244-.427-.573-.331-.966.252-1.031.494-2.064.762-3.09.086-.33.041-.554-.225-.794-.581-.523-.682-1.253-.317-1.903a1.57 1.57 0 0 1 1.374-.8z" }) + ] + } + ); +}); + +export { SiAuthelia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.cjs new file mode 100644 index 000000000..891ac82e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD4B2D"; +const SiAuthentik = React__namespace.forwardRef(function SiAuthentik2({ title = "Authentik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.96 9.01h-.84V7.492h-1.234v3.663H5.722c.34.517.538.982.538 1.152 0 .46-1.445 3.059-3.197 3.059C.8 15.427-.745 12.8.372 10.855a3.062 3.062 0 0 1 2.691-1.606c1.04 0 1.971.915 2.557 1.755V6.577a3.773 3.773 0 0 1 3.77-3.769h10.84C22.31 2.808 24 4.5 24 6.577v10.845a3.773 3.773 0 0 1-3.77 3.769h-1.6V17.5h-7.64v3.692h-1.6a3.773 3.773 0 0 1-3.77-3.769v-3.41h12.114v-6.52h-1.59v.893h-.84v-.893H13.96v1.516Zm-9.956 1.845c-.662-.703-1.578-.544-2.209 0-2.105 2.054 1.338 5.553 3.302 1.447a5.395 5.395 0 0 0-1.093-1.447Z" }) + ] + } + ); +}); + +exports.default = SiAuthentik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.d.ts new file mode 100644 index 000000000..ffbd04f88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD4B2D"; +declare const SiAuthentik: IconType; +export { SiAuthentik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.mjs new file mode 100644 index 000000000..8925ac397 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAuthentik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD4B2D"; +const SiAuthentik = React.forwardRef(function SiAuthentik2({ title = "Authentik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.96 9.01h-.84V7.492h-1.234v3.663H5.722c.34.517.538.982.538 1.152 0 .46-1.445 3.059-3.197 3.059C.8 15.427-.745 12.8.372 10.855a3.062 3.062 0 0 1 2.691-1.606c1.04 0 1.971.915 2.557 1.755V6.577a3.773 3.773 0 0 1 3.77-3.769h10.84C22.31 2.808 24 4.5 24 6.577v10.845a3.773 3.773 0 0 1-3.77 3.769h-1.6V17.5h-7.64v3.692h-1.6a3.773 3.773 0 0 1-3.77-3.769v-3.41h12.114v-6.52h-1.59v.893h-.84v-.893H13.96v1.516Zm-9.956 1.845c-.662-.703-1.578-.544-2.209 0-2.105 2.054 1.338 5.553 3.302 1.447a5.395 5.395 0 0 0-1.093-1.447Z" }) + ] + } + ); +}); + +export { SiAuthentik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.cjs new file mode 100644 index 000000000..4f011ff66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E51050"; +const SiAutocad = React__namespace.forwardRef(function SiAutocad2({ title = "AutoCAD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.8672 1.0527v.0157L0 3.3848v17.914l3.8965-2.332h18.3398V2.3301c0-.702-.5773-1.2774-1.2793-1.2774H3.8672zm7.5058 4.0098h3.3008l2.9844 9.9512h-2.5879l-.5683-2.1895h-2.9844l-.5703 2.1621h-2.416l2.8417-9.9238zm11.8633.0273v14.877H4.172l-2.0684 1.2383v.4648c0 .702.5793 1.2774 1.2813 1.2774H24V5.0898h-.7637zM12.9668 6.6816l-.9941 4.3243h2.0468l-1.0527-4.3243z" }) + ] + } + ); +}); + +exports.default = SiAutocad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.d.ts new file mode 100644 index 000000000..4a29de464 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E51050"; +declare const SiAutocad: IconType; +export { SiAutocad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.mjs new file mode 100644 index 000000000..c9e4e49ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E51050"; +const SiAutocad = React.forwardRef(function SiAutocad2({ title = "AutoCAD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.8672 1.0527v.0157L0 3.3848v17.914l3.8965-2.332h18.3398V2.3301c0-.702-.5773-1.2774-1.2793-1.2774H3.8672zm7.5058 4.0098h3.3008l2.9844 9.9512h-2.5879l-.5683-2.1895h-2.9844l-.5703 2.1621h-2.416l2.8417-9.9238zm11.8633.0273v14.877H4.172l-2.0684 1.2383v.4648c0 .702.5793 1.2774 1.2813 1.2774H24V5.0898h-.7637zM12.9668 6.6816l-.9941 4.3243h2.0468l-1.0527-4.3243z" }) + ] + } + ); +}); + +export { SiAutocad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.cjs new file mode 100644 index 000000000..ba03284e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3BA4B7"; +const SiAutocannon = React__namespace.forwardRef(function SiAutocannon2({ title = "AutoCannon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.293 18.131c-.245.277-.47.542-.708.795-.085.092-.192.037-.272-.027-.9-.715-7.786-7.358-12.016-11.122l.86-.937a1210.086 1210.086 0 0 1 12.136 11.291Zm-.8 4.954c-.488.243-.97.48-1.45.72-.074.039-.126.028-.187-.03-2.093-1.923-7.729-7.196-11.564-10.692a.523.523 0 0 1-.17-.327c-.157-1.086-.102-2.154.27-3.196.066-.18.124-.364.194-.572.267.237.525.456.773.688A1801.346 1801.346 0 0 0 19.8 22.154l.05.057-1.355.874zM8.595 6.284c-.04-.036-.083-.071-.12-.112-.068-.08-.035-.231.065-.263.707-.228 1.415-.453 2.123-.68.427 0 .856-.018 1.284.005.253.015.46.177.642.349 3.73 3.54 7.51 7.022 11.287 10.51.137.127.16.245.072.433a252.377 252.377 0 0 1-1.31 2.798A1406.269 1406.337 0 0 0 8.594 6.284ZM12.477.039c4.683.068 8.987 2.71 11.136 7.294-1.02.54-2.038 1.082-3.066 1.628-.995-2.252-2.615-3.868-4.87-4.843-1.72-.743-3.492-.845-5.31-.436-4.194.943-6.66 4.38-6.958 7.95-.357 4.291 2.282 7.922 6.115 9.246-.848 1.901-.22.49-1.268 2.834-.12.272-.193.3-.466.193a12.36 12.36 0 0 1-3.8-2.38c-1.11-1.009-2.025-2.158-2.696-3.497C.66 16.766.207 15.443.054 14.031c-.083-.763-.048-1.53-.04-2.296.034-2.627.98-4.922 2.562-6.97C4.182 2.689 6.26 1.279 8.786.535c1.004-.3 3.035-.527 3.69-.496Z" }) + ] + } + ); +}); + +exports.default = SiAutocannon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.d.ts new file mode 100644 index 000000000..4412f665d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3BA4B7"; +declare const SiAutocannon: IconType; +export { SiAutocannon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.mjs new file mode 100644 index 000000000..d31577d7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutocannon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3BA4B7"; +const SiAutocannon = React.forwardRef(function SiAutocannon2({ title = "AutoCannon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.293 18.131c-.245.277-.47.542-.708.795-.085.092-.192.037-.272-.027-.9-.715-7.786-7.358-12.016-11.122l.86-.937a1210.086 1210.086 0 0 1 12.136 11.291Zm-.8 4.954c-.488.243-.97.48-1.45.72-.074.039-.126.028-.187-.03-2.093-1.923-7.729-7.196-11.564-10.692a.523.523 0 0 1-.17-.327c-.157-1.086-.102-2.154.27-3.196.066-.18.124-.364.194-.572.267.237.525.456.773.688A1801.346 1801.346 0 0 0 19.8 22.154l.05.057-1.355.874zM8.595 6.284c-.04-.036-.083-.071-.12-.112-.068-.08-.035-.231.065-.263.707-.228 1.415-.453 2.123-.68.427 0 .856-.018 1.284.005.253.015.46.177.642.349 3.73 3.54 7.51 7.022 11.287 10.51.137.127.16.245.072.433a252.377 252.377 0 0 1-1.31 2.798A1406.269 1406.337 0 0 0 8.594 6.284ZM12.477.039c4.683.068 8.987 2.71 11.136 7.294-1.02.54-2.038 1.082-3.066 1.628-.995-2.252-2.615-3.868-4.87-4.843-1.72-.743-3.492-.845-5.31-.436-4.194.943-6.66 4.38-6.958 7.95-.357 4.291 2.282 7.922 6.115 9.246-.848 1.901-.22.49-1.268 2.834-.12.272-.193.3-.466.193a12.36 12.36 0 0 1-3.8-2.38c-1.11-1.009-2.025-2.158-2.696-3.497C.66 16.766.207 15.443.054 14.031c-.083-.763-.048-1.53-.04-2.296.034-2.627.98-4.922 2.562-6.97C4.182 2.689 6.26 1.279 8.786.535c1.004-.3 3.035-.527 3.69-.496Z" }) + ] + } + ); +}); + +export { SiAutocannon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.cjs new file mode 100644 index 000000000..f74d01e2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiAutodesk = React__namespace.forwardRef(function SiAutodesk2({ title = "Autodesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.129 20.202 14.7-9.136h7.625c.235 0 .445.188.445.445 0 .21-.092.305-.21.375l-7.222 4.323c-.47.283-.633.845-.633 1.265l-.008 2.725H24V4.362a.561.561 0 0 0-.585-.562h-8.752L0 12.893V20.2h.129z" }) + ] + } + ); +}); + +exports.default = SiAutodesk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.d.ts new file mode 100644 index 000000000..23fe927a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiAutodesk: IconType; +export { SiAutodesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.mjs new file mode 100644 index 000000000..c5800c6a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodesk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiAutodesk = React.forwardRef(function SiAutodesk2({ title = "Autodesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.129 20.202 14.7-9.136h7.625c.235 0 .445.188.445.445 0 .21-.092.305-.21.375l-7.222 4.323c-.47.283-.633.845-.633 1.265l-.008 2.725H24V4.362a.561.561 0 0 0-.585-.562h-8.752L0 12.893V20.2h.129z" }) + ] + } + ); +}); + +export { SiAutodesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.cjs new file mode 100644 index 000000000..13131ccfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#37A5CC"; +const SiAutodeskmaya = React__namespace.forwardRef(function SiAutodeskmaya2({ title = "Autodesk Maya", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.348 0 .69 2.203v16.875l3.657-2.203h17.297V1.219c0-.67-.551-1.219-1.22-1.219H4.349zm18.297 3.75v14.125H4.627l-1.943 1.17v3.736c0 .67.55 1.219 1.218 1.219H23.31V3.75h-.664zm-14.471.025h2.937l1.885 7.508 1.977-7.48-.012-.028h2.857v9.354h-2.216v-6.04l-1.565 6.026v.014h-2.203l-1.656-6.28v6.28H8.174V3.775zm1.33 14.762h1.18l1.068 3.543h-.902l-.217-.773H9.568l-.197.773h-.88l1.013-3.543zm1.918 0h.932l.648 1.494.643-1.494h.894l-1.113 2.133v1.41h-.887v-1.406l-1.117-2.137zm3.826 0h1.18l1.068 3.543h-.9l-.217-.773h-1.065l-.197.773h-.88l1.011-3.543zm-5.156.582-.362 1.53h.73l-.368-1.53zm5.744 0-.36 1.53h.73l-.37-1.53z" }) + ] + } + ); +}); + +exports.default = SiAutodeskmaya; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.d.ts new file mode 100644 index 000000000..1bafc0cdd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#37A5CC"; +declare const SiAutodeskmaya: IconType; +export { SiAutodeskmaya as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.mjs new file mode 100644 index 000000000..6655f18f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskmaya.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#37A5CC"; +const SiAutodeskmaya = React.forwardRef(function SiAutodeskmaya2({ title = "Autodesk Maya", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.348 0 .69 2.203v16.875l3.657-2.203h17.297V1.219c0-.67-.551-1.219-1.22-1.219H4.349zm18.297 3.75v14.125H4.627l-1.943 1.17v3.736c0 .67.55 1.219 1.218 1.219H23.31V3.75h-.664zm-14.471.025h2.937l1.885 7.508 1.977-7.48-.012-.028h2.857v9.354h-2.216v-6.04l-1.565 6.026v.014h-2.203l-1.656-6.28v6.28H8.174V3.775zm1.33 14.762h1.18l1.068 3.543h-.902l-.217-.773H9.568l-.197.773h-.88l1.013-3.543zm1.918 0h.932l.648 1.494.643-1.494h.894l-1.113 2.133v1.41h-.887v-1.406l-1.117-2.137zm3.826 0h1.18l1.068 3.543h-.9l-.217-.773h-1.065l-.197.773h-.88l1.011-3.543zm-5.156.582-.362 1.53h.73l-.368-1.53zm5.744 0-.36 1.53h.73l-.37-1.53z" }) + ] + } + ); +}); + +export { SiAutodeskmaya as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.cjs new file mode 100644 index 000000000..b2bac7053 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#186BFF"; +const SiAutodeskrevit = React__namespace.forwardRef(function SiAutodeskrevit2({ title = "Autodesk Revit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 22.665H2.994c-.519 0-.838-.293-.835-.723.001.042.002-.148.003-.463.142-.083.283-.165.427-.247l.078-.045.07-.058.015-.013.127-.078 1.294-.804h1.134c3.35 0 11.817 0 16.548.007.159 0 .631 0 1.002-.371.371-.372.37-.853.37-1.011-.008-2.057-.001-4.109.005-6.16.008-2.39.016-4.86 0-7.298v-.063l.61-.007c.169-.003.143.197.143.296.014 5.68-.02 11.36.015 17.038zM14.326 8.982c.006-.281.006-.56.006-.859-.009-.5-.395-1.055-.916-1.055-.435 0-.919.006-1.432.006v3.01h1.432c.52 0 .9-.584.91-1.102zM3.887 19.234 3.853 1.363l.007-.025.026-.003h17.313c.51.232.943.56 1.033 1.16.023 1.052 0 1.896 0 2.854.001.023-.002.036 0 .059.03 4.489-.022 8.963-.005 13.453 0 .285-.072.38-.37.38-5.99-.008-17.97-.007-17.97-.007zm5.624-3.971h2.395l.057-.051v-3.5c.316.001.57-.005.787-.005.075 0 .348.075.449.286.36.757.692 1.531 1.125 2.25.583.967 1.704 1.204 2.469 1.204.528 0 .528-.024.528-.245 0-.423-.006-.935-.006-1.374-.403-.039-.734-.163-.929-.541-.362-.705-.74-1.401-1.119-2.114.248-.072.218-.057.302-.092.859-.357 1.139-.951 1.213-1.71.05-.503.059-1.144.025-1.395-.112-.833-.378-1.454-1.036-1.932-.773-.562-1.678-.657-2.582-.687a62.395 62.395 0 0 0-3.678.012v9.894zm-5.658-13.9C1.631 2.64.98 3.087.223 3.513.025 3.622 0 3.895 0 4.1l.02 17.45c.575-.357 3.293-1.96 3.867-2.316L3.853 1.363z" }) + ] + } + ); +}); + +exports.default = SiAutodeskrevit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.d.ts new file mode 100644 index 000000000..24dce21b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#186BFF"; +declare const SiAutodeskrevit: IconType; +export { SiAutodeskrevit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.mjs new file mode 100644 index 000000000..c1927e452 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutodeskrevit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#186BFF"; +const SiAutodeskrevit = React.forwardRef(function SiAutodeskrevit2({ title = "Autodesk Revit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 22.665H2.994c-.519 0-.838-.293-.835-.723.001.042.002-.148.003-.463.142-.083.283-.165.427-.247l.078-.045.07-.058.015-.013.127-.078 1.294-.804h1.134c3.35 0 11.817 0 16.548.007.159 0 .631 0 1.002-.371.371-.372.37-.853.37-1.011-.008-2.057-.001-4.109.005-6.16.008-2.39.016-4.86 0-7.298v-.063l.61-.007c.169-.003.143.197.143.296.014 5.68-.02 11.36.015 17.038zM14.326 8.982c.006-.281.006-.56.006-.859-.009-.5-.395-1.055-.916-1.055-.435 0-.919.006-1.432.006v3.01h1.432c.52 0 .9-.584.91-1.102zM3.887 19.234 3.853 1.363l.007-.025.026-.003h17.313c.51.232.943.56 1.033 1.16.023 1.052 0 1.896 0 2.854.001.023-.002.036 0 .059.03 4.489-.022 8.963-.005 13.453 0 .285-.072.38-.37.38-5.99-.008-17.97-.007-17.97-.007zm5.624-3.971h2.395l.057-.051v-3.5c.316.001.57-.005.787-.005.075 0 .348.075.449.286.36.757.692 1.531 1.125 2.25.583.967 1.704 1.204 2.469 1.204.528 0 .528-.024.528-.245 0-.423-.006-.935-.006-1.374-.403-.039-.734-.163-.929-.541-.362-.705-.74-1.401-1.119-2.114.248-.072.218-.057.302-.092.859-.357 1.139-.951 1.213-1.71.05-.503.059-1.144.025-1.395-.112-.833-.378-1.454-1.036-1.932-.773-.562-1.678-.657-2.582-.687a62.395 62.395 0 0 0-3.678.012v9.894zm-5.658-13.9C1.631 2.64.98 3.087.223 3.513.025 3.622 0 3.895 0 4.1l.02 17.45c.575-.357 3.293-1.96 3.867-2.316L3.853 1.363z" }) + ] + } + ); +}); + +export { SiAutodeskrevit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.cjs new file mode 100644 index 000000000..875b67240 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#334455"; +const SiAutohotkey = React__namespace.forwardRef(function SiAutohotkey2({ title = "AutoHotkey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.514.508V.51H1.803C1.053.51.079 1.135 0 2.27v17.133h.002v2.325c.08 1.136 1.05 1.763 1.8 1.763h1.505l.002-.002h18.869c1.256-.053 1.766-1.066 1.822-1.699v-3.023h-.002V2.209c-.056-.633-.567-1.648-1.824-1.701h-1.66zM3.412 1.623h17.154c.898 0 1.618.72 1.618 1.617v16.64c0 .898-.72 1.62-1.618 1.62H3.412a1.616 1.616 0 01-1.619-1.62V3.24c0-.897.722-1.617 1.62-1.617zm3.315 12.412l-1.895 5.037h.703l.526-1.467h2.02l.497 1.467h.744l-1.824-5.037h-.771zm8.43.008v5.037h.679v-1.767l.793-.758 1.76 2.525h.884l-2.154-3.002 2.098-2.035h-.94l-2.441 2.441v-2.441h-.68zm-5.153.027v5.037h.682v-2.351h2.628v2.351h.682V14.07h-.682v2.084h-2.628V14.07h-.682zm-2.926.717h.014l.742 2.217H6.271l.807-2.217z" }) + ] + } + ); +}); + +exports.default = SiAutohotkey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.d.ts new file mode 100644 index 000000000..98a99bd13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#334455"; +declare const SiAutohotkey: IconType; +export { SiAutohotkey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.mjs new file mode 100644 index 000000000..6796940e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutohotkey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#334455"; +const SiAutohotkey = React.forwardRef(function SiAutohotkey2({ title = "AutoHotkey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.514.508V.51H1.803C1.053.51.079 1.135 0 2.27v17.133h.002v2.325c.08 1.136 1.05 1.763 1.8 1.763h1.505l.002-.002h18.869c1.256-.053 1.766-1.066 1.822-1.699v-3.023h-.002V2.209c-.056-.633-.567-1.648-1.824-1.701h-1.66zM3.412 1.623h17.154c.898 0 1.618.72 1.618 1.617v16.64c0 .898-.72 1.62-1.618 1.62H3.412a1.616 1.616 0 01-1.619-1.62V3.24c0-.897.722-1.617 1.62-1.617zm3.315 12.412l-1.895 5.037h.703l.526-1.467h2.02l.497 1.467h.744l-1.824-5.037h-.771zm8.43.008v5.037h.679v-1.767l.793-.758 1.76 2.525h.884l-2.154-3.002 2.098-2.035h-.94l-2.441 2.441v-2.441h-.68zm-5.153.027v5.037h.682v-2.351h2.628v2.351h.682V14.07h-.682v2.084h-2.628V14.07h-.682zm-2.926.717h.014l.742 2.217H6.271l.807-2.217z" }) + ] + } + ); +}); + +export { SiAutohotkey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.cjs new file mode 100644 index 000000000..f93dcc7f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5D83AC"; +const SiAutoit = React__namespace.forwardRef(function SiAutoit2({ title = "AutoIt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.351 15.563-5.486-7.941a2.684 2.684 0 0 0-.702-.702c-.276-.188-.62-.283-1.03-.283-.43 0-.784.101-1.064.302-.28.202-.512.43-.696.683l-5.63 7.94h3.215l4.122-5.827 1.575 2.323c.148.21.304.436.466.676.161.24.304.44.426.597a9.106 9.106 0 0 0-.741-.026H10.78l-1.64 2.258zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zm0-21.61a9.61 9.61 0 1 0 0 19.22 9.61 9.61 0 1 0 0-19.22z" }) + ] + } + ); +}); + +exports.default = SiAutoit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.d.ts new file mode 100644 index 000000000..2aaca1074 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5D83AC"; +declare const SiAutoit: IconType; +export { SiAutoit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.mjs new file mode 100644 index 000000000..064bbb61d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5D83AC"; +const SiAutoit = React.forwardRef(function SiAutoit2({ title = "AutoIt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.351 15.563-5.486-7.941a2.684 2.684 0 0 0-.702-.702c-.276-.188-.62-.283-1.03-.283-.43 0-.784.101-1.064.302-.28.202-.512.43-.696.683l-5.63 7.94h3.215l4.122-5.827 1.575 2.323c.148.21.304.436.466.676.161.24.304.44.426.597a9.106 9.106 0 0 0-.741-.026H10.78l-1.64 2.258zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12zm0-21.61a9.61 9.61 0 1 0 0 19.22 9.61 9.61 0 1 0 0-19.22z" }) + ] + } + ); +}); + +export { SiAutoit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.cjs new file mode 100644 index 000000000..3941dcae9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3499CD"; +const SiAutomattic = React__namespace.forwardRef(function SiAutomattic2({ title = "Automattic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.521 8.11a1.497 1.497 0 01.433 2.102l-3.511 5.441a1.496 1.496 0 01-2.068.457 1.507 1.507 0 01-.44-2.08l3.513-5.44c.215-.335.554-.57.943-.655.39-.085.796-.04 1.13.175z M11.98 23.03C4.713 23.03 0 17.79 0 12.338v-.676C0 6.117 4.713.97 11.98.97 19.246.97 24 6.117 24 11.662v.676c0 5.453-4.713 10.692-12.02 10.692zm8.133-11.31c0-3.974-2.888-7.51-8.133-7.51-5.245 0-8.087 3.542-8.087 7.51v.497c0 3.974 2.888 7.578 8.087 7.578 5.198 0 8.133-3.604 8.133-7.578v-.497z" }) + ] + } + ); +}); + +exports.default = SiAutomattic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.d.ts new file mode 100644 index 000000000..e9b9e0f44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3499CD"; +declare const SiAutomattic: IconType; +export { SiAutomattic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.mjs new file mode 100644 index 000000000..4cb21e297 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutomattic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3499CD"; +const SiAutomattic = React.forwardRef(function SiAutomattic2({ title = "Automattic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.521 8.11a1.497 1.497 0 01.433 2.102l-3.511 5.441a1.496 1.496 0 01-2.068.457 1.507 1.507 0 01-.44-2.08l3.513-5.44c.215-.335.554-.57.943-.655.39-.085.796-.04 1.13.175z M11.98 23.03C4.713 23.03 0 17.79 0 12.338v-.676C0 6.117 4.713.97 11.98.97 19.246.97 24 6.117 24 11.662v.676c0 5.453-4.713 10.692-12.02 10.692zm8.133-11.31c0-3.974-2.888-7.51-8.133-7.51-5.245 0-8.087 3.542-8.087 7.51v.497c0 3.974 2.888 7.578 8.087 7.578 5.198 0 8.133-3.604 8.133-7.578v-.497z" }) + ] + } + ); +}); + +export { SiAutomattic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.cjs new file mode 100644 index 000000000..89b22cc3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD3735"; +const SiAutoprefixer = React__namespace.forwardRef(function SiAutoprefixer2({ title = "Autoprefixer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.87 21.045h2.923l.959-3.068h4.503l.949 3.068h2.922L11.94 2.955l-6.07 18.09zm6.162-10.12 1.543 4.917h-3.153l1.553-4.916h.057zM24 17.617l-.378-1.182-6.266-.59.733 2.127 5.91-.354zM6.644 15.843l-6.266.591L0 17.616l5.911.355.733-2.128z" }) + ] + } + ); +}); + +exports.default = SiAutoprefixer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.d.ts new file mode 100644 index 000000000..7cb699de9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD3735"; +declare const SiAutoprefixer: IconType; +export { SiAutoprefixer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.mjs new file mode 100644 index 000000000..21d7bb24f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutoprefixer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD3735"; +const SiAutoprefixer = React.forwardRef(function SiAutoprefixer2({ title = "Autoprefixer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.87 21.045h2.923l.959-3.068h4.503l.949 3.068h2.922L11.94 2.955l-6.07 18.09zm6.162-10.12 1.543 4.917h-3.153l1.553-4.916h.057zM24 17.617l-.378-1.182-6.266-.59.733 2.127 5.91-.354zM6.644 15.843l-6.266.591L0 17.616l5.911.355.733-2.128z" }) + ] + } + ); +}); + +export { SiAutoprefixer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.cjs new file mode 100644 index 000000000..1f7eb65cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D52B1E"; +const SiAutozone = React__namespace.forwardRef(function SiAutozone2({ title = "AutoZone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.35 6.026c-.7.009-1.69.235-2.176 1.16l-2.442 4.25h1.59l.682-1.188h.773l-.681 1.188h1.58l2.25-3.904c.375-.689.013-1.338-1.149-1.483a3.14 3.14 0 0 0-.427-.023Zm6.082.783-1.891 3.295c-.172.316-.156.668.096.986.179.231.367.348.707.348h.894l.62-1.08h-.676c-.053 0-.11.008-.131-.041-.012-.03-.02-.061-.006-.09l.953-1.656h.803l.66-1.155h-.8l.349-.607Zm3.855.385c-1.166-.001-2.247.942-2.752 2.37-.373 1.057-.216 1.943.928 2.005 1.156.061 2.261-.66 2.879-2.409.374-1.056.107-1.906-.942-1.962a2.15 2.15 0 0 0-.113-.004Zm-8.006.222-1.672 2.912c-.298.548.094 1.094 1.063 1.215.55.069 1.705.004 2.25-.927l.002-.004 1.83-3.196h-1.463l-1.502 2.67c-.123.221-.25.284-.445.246-.244-.048-.141-.234-.07-.361l1.478-2.555zm-2.39.051a.697.697 0 0 1 .101.002c.233.024.309.144.164.385l-.636 1.11h-.776l.697-1.218a.536.536 0 0 1 .45-.279zm9.984.994a.25.25 0 0 1 .053.004c.252.045.144.34-.073.758-.359.693-.603 1.04-.906.98-.22-.043-.14-.357.078-.775.284-.548.588-.956.848-.967zm-16.78 3.944L0 17.791h1.635l3.097-5.386zm2.02 0-3.097 5.386h1.039l3.1-5.386zm1.563 0-3.096 5.386h.643l3.095-5.386Zm1.318 0-3.094 5.386h.377l3.096-5.386zm.979.02-.733 1.276h2.143l-3.682 2.682-.83 1.434h4.363l.729-1.27H8.918l3.559-2.635.853-1.488zm14.707.573a.31.31 0 0 0-.32.32.298.298 0 0 0 .156.277.32.32 0 0 0 .164.042c.06 0 .115-.013.164-.041a.292.292 0 0 0 .113-.113.323.323 0 0 0 .041-.164.325.325 0 0 0-.041-.164.293.293 0 0 0-.113-.116.332.332 0 0 0-.164-.04Zm-.018.067h.018a.237.237 0 0 1 .217.123.27.27 0 0 1 .033.13.268.268 0 0 1-.034.133.226.226 0 0 1-.087.09.253.253 0 0 1-.13.033.258.258 0 0 1-.13-.033.23.23 0 0 1-.088-.09.277.277 0 0 1 0-.263.225.225 0 0 1 .088-.09.254.254 0 0 1 .113-.033zm-.08.07v.355h.057v-.134h.045l.06.134h.06l-.068-.142c.023-.007.04-.017.05-.033a.145.145 0 0 0 .013-.069v-.008c0-.04-.008-.067-.026-.082-.017-.014-.05-.021-.097-.021zm.055.05h.037c.026 0 .044.005.053.012.008.008.011.022.011.045v.004c0 .023-.003.039-.011.047-.009.008-.027.014-.053.014h-.037zm-9.534.4c-1.166-.002-2.247.944-2.751 2.376-.374 1.059-.217 1.95.927 2.01 1.156.062 2.263-.66 2.881-2.414.372-1.059.106-1.914-.943-1.97-.038-.003-.076-.003-.114-.003zm7.852 0c-1.162-.002-2.173.944-2.678 2.376-.373 1.059-.29 1.95.854 2.01.963.051 1.819-.444 2.459-1.623h-1.475c-.2.31-.392.5-.576.465-.17-.034-.113-.355.021-.694h2.147c.083-.174.16-.361.23-.562.374-1.059.18-1.914-.869-1.97-.037-.003-.075-.003-.113-.003zm-3.36.175c-.494.018-.802.31-.802.31l.154-.273h-1.344l-2.314 4.02h1.479l1.388-2.42c.098-.172.23-.368.428-.326.177.037.23.2.172.308l-1.399 2.438h1.465l1.678-2.93c.232-.425-.147-.993-.533-1.088a1.359 1.359 0 0 0-.371-.039Zm-4.904 1.096a.235.235 0 0 1 .051.002c.253.044.147.341-.07.761-.36.695-.606 1.043-.908.983-.22-.044-.138-.357.08-.777.283-.55.587-.959.847-.97zm7.766 0c.014 0 .028 0 .041.002.226.042.15.304-.03.681h-.679c.23-.406.463-.682.668-.683z" }) + ] + } + ); +}); + +exports.default = SiAutozone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.d.ts new file mode 100644 index 000000000..4ca3029f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D52B1E"; +declare const SiAutozone: IconType; +export { SiAutozone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.mjs new file mode 100644 index 000000000..846c90820 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAutozone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D52B1E"; +const SiAutozone = React.forwardRef(function SiAutozone2({ title = "AutoZone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.35 6.026c-.7.009-1.69.235-2.176 1.16l-2.442 4.25h1.59l.682-1.188h.773l-.681 1.188h1.58l2.25-3.904c.375-.689.013-1.338-1.149-1.483a3.14 3.14 0 0 0-.427-.023Zm6.082.783-1.891 3.295c-.172.316-.156.668.096.986.179.231.367.348.707.348h.894l.62-1.08h-.676c-.053 0-.11.008-.131-.041-.012-.03-.02-.061-.006-.09l.953-1.656h.803l.66-1.155h-.8l.349-.607Zm3.855.385c-1.166-.001-2.247.942-2.752 2.37-.373 1.057-.216 1.943.928 2.005 1.156.061 2.261-.66 2.879-2.409.374-1.056.107-1.906-.942-1.962a2.15 2.15 0 0 0-.113-.004Zm-8.006.222-1.672 2.912c-.298.548.094 1.094 1.063 1.215.55.069 1.705.004 2.25-.927l.002-.004 1.83-3.196h-1.463l-1.502 2.67c-.123.221-.25.284-.445.246-.244-.048-.141-.234-.07-.361l1.478-2.555zm-2.39.051a.697.697 0 0 1 .101.002c.233.024.309.144.164.385l-.636 1.11h-.776l.697-1.218a.536.536 0 0 1 .45-.279zm9.984.994a.25.25 0 0 1 .053.004c.252.045.144.34-.073.758-.359.693-.603 1.04-.906.98-.22-.043-.14-.357.078-.775.284-.548.588-.956.848-.967zm-16.78 3.944L0 17.791h1.635l3.097-5.386zm2.02 0-3.097 5.386h1.039l3.1-5.386zm1.563 0-3.096 5.386h.643l3.095-5.386Zm1.318 0-3.094 5.386h.377l3.096-5.386zm.979.02-.733 1.276h2.143l-3.682 2.682-.83 1.434h4.363l.729-1.27H8.918l3.559-2.635.853-1.488zm14.707.573a.31.31 0 0 0-.32.32.298.298 0 0 0 .156.277.32.32 0 0 0 .164.042c.06 0 .115-.013.164-.041a.292.292 0 0 0 .113-.113.323.323 0 0 0 .041-.164.325.325 0 0 0-.041-.164.293.293 0 0 0-.113-.116.332.332 0 0 0-.164-.04Zm-.018.067h.018a.237.237 0 0 1 .217.123.27.27 0 0 1 .033.13.268.268 0 0 1-.034.133.226.226 0 0 1-.087.09.253.253 0 0 1-.13.033.258.258 0 0 1-.13-.033.23.23 0 0 1-.088-.09.277.277 0 0 1 0-.263.225.225 0 0 1 .088-.09.254.254 0 0 1 .113-.033zm-.08.07v.355h.057v-.134h.045l.06.134h.06l-.068-.142c.023-.007.04-.017.05-.033a.145.145 0 0 0 .013-.069v-.008c0-.04-.008-.067-.026-.082-.017-.014-.05-.021-.097-.021zm.055.05h.037c.026 0 .044.005.053.012.008.008.011.022.011.045v.004c0 .023-.003.039-.011.047-.009.008-.027.014-.053.014h-.037zm-9.534.4c-1.166-.002-2.247.944-2.751 2.376-.374 1.059-.217 1.95.927 2.01 1.156.062 2.263-.66 2.881-2.414.372-1.059.106-1.914-.943-1.97-.038-.003-.076-.003-.114-.003zm7.852 0c-1.162-.002-2.173.944-2.678 2.376-.373 1.059-.29 1.95.854 2.01.963.051 1.819-.444 2.459-1.623h-1.475c-.2.31-.392.5-.576.465-.17-.034-.113-.355.021-.694h2.147c.083-.174.16-.361.23-.562.374-1.059.18-1.914-.869-1.97-.037-.003-.075-.003-.113-.003zm-3.36.175c-.494.018-.802.31-.802.31l.154-.273h-1.344l-2.314 4.02h1.479l1.388-2.42c.098-.172.23-.368.428-.326.177.037.23.2.172.308l-1.399 2.438h1.465l1.678-2.93c.232-.425-.147-.993-.533-1.088a1.359 1.359 0 0 0-.371-.039Zm-4.904 1.096a.235.235 0 0 1 .051.002c.253.044.147.341-.07.761-.36.695-.606 1.043-.908.983-.22-.044-.138-.357.08-.777.283-.55.587-.959.847-.97zm7.766 0c.014 0 .028 0 .041.002.226.042.15.304-.03.681h-.679c.23-.406.463-.682.668-.683z" }) + ] + } + ); +}); + +export { SiAutozone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.cjs new file mode 100644 index 000000000..a165c6f2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B4B77"; +const SiAvajs = React__namespace.forwardRef(function SiAvajs2({ title = "avajs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.4554,5.7277a1.5818,1.5818,0,0,1,.619.6637q.2724.6249.6042,1.36c.22.4911.4434.9881.6637,1.4911s.4345.994.6369,1.47.3869.9137.5476,1.31.2887.7322.3839,1.009a2.2443,2.2443,0,0,1,.1429.5476,1.6453,1.6453,0,0,1-.06.4345.9512.9512,0,0,1-.2142.39,1.0777,1.0777,0,0,1-.4346.28,2.1368,2.1368,0,0,1-.7232.1042,1.9678,1.9678,0,0,1-.7619-.125,1.51,1.51,0,0,1-.4881-.3184,2.1617,2.1617,0,0,1-.3244-.4108q-.1295-.2142-.2678-.4107a1.3284,1.3284,0,0,0-.3125-.3184.8065.8065,0,0,0-.4762-.125H4.1577a1.1574,1.1574,0,0,0-.58.125,1.0946,1.0946,0,0,0-.3512.3184,4.1127,4.1127,0,0,0-.253.4107,2.0146,2.0146,0,0,1-.3006.4108,1.3631,1.3631,0,0,1-.4762.3184,2.0527,2.0527,0,0,1-.7887.125,1.5,1.5,0,0,1-1.0684-.3244A1.0307,1.0307,0,0,1,0,13.6949a2.266,2.266,0,0,1,.1369-.5922c.0923-.2828.2143-.6191.372-1.009.1637-.3928.3423-.8244.5417-1.3035.1994-.4762.4107-.97.6369-1.4762.2262-.5089.4524-1.0149.6756-1.5238q.3393-.7633.6518-1.4643A1.3715,1.3715,0,0,1,3.619,5.689a1.9287,1.9287,0,0,1,.9435-.2351,1.673,1.673,0,0,1,.8929.2738Zm10.5267.0446a1.0162,1.0162,0,0,1,.3393.7887,2.5458,2.5458,0,0,1-.1369.7173c-.0922.2946-.2083.628-.3512,1.003-.1428.372-.3095.7767-.494,1.2113-.1875.4345-.375.875-.5655,1.3273-.2589.6161-.4851,1.17-.67,1.6608a9.3222,9.3222,0,0,1-.5715,1.25,2.8332,2.8332,0,0,1-.6369.7946,1.3026,1.3026,0,0,1-.8512.28,1.5132,1.5132,0,0,1-.866-.2292,2.13,2.13,0,0,1-.625-.6905,7.1624,7.1624,0,0,1-.5476-1.1637c-.1786-.4672-.387-1.0238-.631-1.6666q-.2722-.7278-.5595-1.4256c-.1905-.4643-.3631-.8929-.5209-1.2828-.1547-.39-.2827-.741-.3839-1.0476a2.5581,2.5581,0,0,1-.1488-.7232.9457.9457,0,0,1,.4048-.86A1.82,1.82,0,0,1,9.17,5.4569a2.1129,2.1129,0,0,1,.8512.1369,1.7871,1.7871,0,0,1,.5268.3571,1.8718,1.8718,0,0,1,.3125.4554,5.887,5.887,0,0,1,.2917.6577c.0922.2381.1815.4792.2738.7232s.1756.4673.253.67a3.1521,3.1521,0,0,0,.2291.4941c.0744.125.14.1875.2024.1875q.1028,0,.2143-.1875a3.6705,3.6705,0,0,0,.2292-.4881c.0774-.1994.1577-.42.241-.6577s.17-.4762.259-.7084a6.912,6.912,0,0,1,.2857-.6428,1.7257,1.7257,0,0,1,.3065-.4494,2.2052,2.2052,0,0,1,.28-.2411A1.4583,1.4583,0,0,1,14.2262,5.6a1.7331,1.7331,0,0,1,.372-.0982,3.4777,3.4777,0,0,1,.5089-.0327,1.2675,1.2675,0,0,1,.875.3035Zm4.42-.0446a1.5811,1.5811,0,0,1,.619.6637q.2724.6249.6042,1.36c.22.4911.4435.9881.6637,1.4911s.4345.994.6369,1.47.3869.9137.5476,1.31.2887.7322.3839,1.009A2.2443,2.2443,0,0,1,24,13.5789a1.6452,1.6452,0,0,1-.0595.4345.9515.9515,0,0,1-.2143.39,1.078,1.078,0,0,1-.4345.28,2.1372,2.1372,0,0,1-.7232.1042,1.9687,1.9687,0,0,1-.762-.125,1.5081,1.5081,0,0,1-.488-.3184,2.1623,2.1623,0,0,1-.3245-.4108q-.1295-.2142-.2678-.4107a1.3266,1.3266,0,0,0-.3125-.3184.8065.8065,0,0,0-.4762-.125h-.8333a1.1576,1.1576,0,0,0-.58.125,1.0956,1.0956,0,0,0-.3512.3184,4.1313,4.1313,0,0,0-.253.4107,2.0071,2.0071,0,0,1-.3006.4108,1.3636,1.3636,0,0,1-.4761.3184,2.0534,2.0534,0,0,1-.7887.125,1.5,1.5,0,0,1-1.0685-.3244,1.0307,1.0307,0,0,1-.3393-.7679,2.27,2.27,0,0,1,.1369-.5922c.0923-.2828.2143-.6191.3721-1.009.1547-.39.3333-.8244.5327-1.3s.4107-.97.6369-1.4762c.2262-.509.4524-1.0149.6756-1.5238q.3393-.7635.6518-1.4643a1.371,1.371,0,0,1,.6041-.6369A1.9288,1.9288,0,0,1,19.5,5.4568a1.651,1.651,0,0,1,.9018.2709ZM4.5327,18.5461a.1926.1926,0,0,0,.1727-.1041c0-.003.2827-.5238.5625-1.14.14-.3095.2827-.64.39-.9464.0536-.1548.0983-.3006.131-.4346a1.65,1.65,0,0,0,.0536-.375,1.5623,1.5623,0,0,0-.4375-1.1131,1.2219,1.2219,0,0,0-1.75,0,1.5644,1.5644,0,0,0-.4375,1.1131,1.6044,1.6044,0,0,0,.0535.375,6.149,6.149,0,0,0,.2649.7887c.3363.8363.8185,1.7292.8185,1.7351A.2151.2151,0,0,0,4.5327,18.5461Zm14.9465,0a.1926.1926,0,0,0,.1726-.1041c0-.003.2827-.5238.5625-1.14.14-.3095.2827-.64.39-.9464.0535-.1548.0982-.3006.1309-.4346a1.644,1.644,0,0,0,.0536-.375,1.5623,1.5623,0,0,0-.4375-1.1131,1.2219,1.2219,0,0,0-1.75,0,1.5648,1.5648,0,0,0-.4375,1.1131,1.6,1.6,0,0,0,.0536.375,6.1319,6.1319,0,0,0,.2648.7887c.3363.8363.8185,1.7292.8185,1.7351a.2153.2153,0,0,0,.1786.1012Z" }) + ] + } + ); +}); + +exports.default = SiAvajs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.d.ts new file mode 100644 index 000000000..739c1e09d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B4B77"; +declare const SiAvajs: IconType; +export { SiAvajs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.mjs new file mode 100644 index 000000000..58ff288ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvajs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B4B77"; +const SiAvajs = React.forwardRef(function SiAvajs2({ title = "avajs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.4554,5.7277a1.5818,1.5818,0,0,1,.619.6637q.2724.6249.6042,1.36c.22.4911.4434.9881.6637,1.4911s.4345.994.6369,1.47.3869.9137.5476,1.31.2887.7322.3839,1.009a2.2443,2.2443,0,0,1,.1429.5476,1.6453,1.6453,0,0,1-.06.4345.9512.9512,0,0,1-.2142.39,1.0777,1.0777,0,0,1-.4346.28,2.1368,2.1368,0,0,1-.7232.1042,1.9678,1.9678,0,0,1-.7619-.125,1.51,1.51,0,0,1-.4881-.3184,2.1617,2.1617,0,0,1-.3244-.4108q-.1295-.2142-.2678-.4107a1.3284,1.3284,0,0,0-.3125-.3184.8065.8065,0,0,0-.4762-.125H4.1577a1.1574,1.1574,0,0,0-.58.125,1.0946,1.0946,0,0,0-.3512.3184,4.1127,4.1127,0,0,0-.253.4107,2.0146,2.0146,0,0,1-.3006.4108,1.3631,1.3631,0,0,1-.4762.3184,2.0527,2.0527,0,0,1-.7887.125,1.5,1.5,0,0,1-1.0684-.3244A1.0307,1.0307,0,0,1,0,13.6949a2.266,2.266,0,0,1,.1369-.5922c.0923-.2828.2143-.6191.372-1.009.1637-.3928.3423-.8244.5417-1.3035.1994-.4762.4107-.97.6369-1.4762.2262-.5089.4524-1.0149.6756-1.5238q.3393-.7633.6518-1.4643A1.3715,1.3715,0,0,1,3.619,5.689a1.9287,1.9287,0,0,1,.9435-.2351,1.673,1.673,0,0,1,.8929.2738Zm10.5267.0446a1.0162,1.0162,0,0,1,.3393.7887,2.5458,2.5458,0,0,1-.1369.7173c-.0922.2946-.2083.628-.3512,1.003-.1428.372-.3095.7767-.494,1.2113-.1875.4345-.375.875-.5655,1.3273-.2589.6161-.4851,1.17-.67,1.6608a9.3222,9.3222,0,0,1-.5715,1.25,2.8332,2.8332,0,0,1-.6369.7946,1.3026,1.3026,0,0,1-.8512.28,1.5132,1.5132,0,0,1-.866-.2292,2.13,2.13,0,0,1-.625-.6905,7.1624,7.1624,0,0,1-.5476-1.1637c-.1786-.4672-.387-1.0238-.631-1.6666q-.2722-.7278-.5595-1.4256c-.1905-.4643-.3631-.8929-.5209-1.2828-.1547-.39-.2827-.741-.3839-1.0476a2.5581,2.5581,0,0,1-.1488-.7232.9457.9457,0,0,1,.4048-.86A1.82,1.82,0,0,1,9.17,5.4569a2.1129,2.1129,0,0,1,.8512.1369,1.7871,1.7871,0,0,1,.5268.3571,1.8718,1.8718,0,0,1,.3125.4554,5.887,5.887,0,0,1,.2917.6577c.0922.2381.1815.4792.2738.7232s.1756.4673.253.67a3.1521,3.1521,0,0,0,.2291.4941c.0744.125.14.1875.2024.1875q.1028,0,.2143-.1875a3.6705,3.6705,0,0,0,.2292-.4881c.0774-.1994.1577-.42.241-.6577s.17-.4762.259-.7084a6.912,6.912,0,0,1,.2857-.6428,1.7257,1.7257,0,0,1,.3065-.4494,2.2052,2.2052,0,0,1,.28-.2411A1.4583,1.4583,0,0,1,14.2262,5.6a1.7331,1.7331,0,0,1,.372-.0982,3.4777,3.4777,0,0,1,.5089-.0327,1.2675,1.2675,0,0,1,.875.3035Zm4.42-.0446a1.5811,1.5811,0,0,1,.619.6637q.2724.6249.6042,1.36c.22.4911.4435.9881.6637,1.4911s.4345.994.6369,1.47.3869.9137.5476,1.31.2887.7322.3839,1.009A2.2443,2.2443,0,0,1,24,13.5789a1.6452,1.6452,0,0,1-.0595.4345.9515.9515,0,0,1-.2143.39,1.078,1.078,0,0,1-.4345.28,2.1372,2.1372,0,0,1-.7232.1042,1.9687,1.9687,0,0,1-.762-.125,1.5081,1.5081,0,0,1-.488-.3184,2.1623,2.1623,0,0,1-.3245-.4108q-.1295-.2142-.2678-.4107a1.3266,1.3266,0,0,0-.3125-.3184.8065.8065,0,0,0-.4762-.125h-.8333a1.1576,1.1576,0,0,0-.58.125,1.0956,1.0956,0,0,0-.3512.3184,4.1313,4.1313,0,0,0-.253.4107,2.0071,2.0071,0,0,1-.3006.4108,1.3636,1.3636,0,0,1-.4761.3184,2.0534,2.0534,0,0,1-.7887.125,1.5,1.5,0,0,1-1.0685-.3244,1.0307,1.0307,0,0,1-.3393-.7679,2.27,2.27,0,0,1,.1369-.5922c.0923-.2828.2143-.6191.3721-1.009.1547-.39.3333-.8244.5327-1.3s.4107-.97.6369-1.4762c.2262-.509.4524-1.0149.6756-1.5238q.3393-.7635.6518-1.4643a1.371,1.371,0,0,1,.6041-.6369A1.9288,1.9288,0,0,1,19.5,5.4568a1.651,1.651,0,0,1,.9018.2709ZM4.5327,18.5461a.1926.1926,0,0,0,.1727-.1041c0-.003.2827-.5238.5625-1.14.14-.3095.2827-.64.39-.9464.0536-.1548.0983-.3006.131-.4346a1.65,1.65,0,0,0,.0536-.375,1.5623,1.5623,0,0,0-.4375-1.1131,1.2219,1.2219,0,0,0-1.75,0,1.5644,1.5644,0,0,0-.4375,1.1131,1.6044,1.6044,0,0,0,.0535.375,6.149,6.149,0,0,0,.2649.7887c.3363.8363.8185,1.7292.8185,1.7351A.2151.2151,0,0,0,4.5327,18.5461Zm14.9465,0a.1926.1926,0,0,0,.1726-.1041c0-.003.2827-.5238.5625-1.14.14-.3095.2827-.64.39-.9464.0535-.1548.0982-.3006.1309-.4346a1.644,1.644,0,0,0,.0536-.375,1.5623,1.5623,0,0,0-.4375-1.1131,1.2219,1.2219,0,0,0-1.75,0,1.5648,1.5648,0,0,0-.4375,1.1131,1.6,1.6,0,0,0,.0536.375,6.1319,6.1319,0,0,0,.2648.7887c.3363.8363.8185,1.7292.8185,1.7351a.2153.2153,0,0,0,.1786.1012Z" }) + ] + } + ); +}); + +export { SiAvajs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.cjs new file mode 100644 index 000000000..325e4c3d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#165BFF"; +const SiAvaloniaui = React__namespace.forwardRef(function SiAvaloniaui2({ title = "AvaloniaUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.034 8.208c-2.003 0-3.627 1.696-3.627 3.789s1.624 3.789 3.627 3.789 3.627-1.697 3.627-3.79-1.624-3.788-3.627-3.788m-7.392 2.067c.72.211 1.248.902 1.248 1.722s-.528 1.51-1.248 1.721c.752 3.54 3.776 6.188 7.392 6.188 1.316 0 2.554-.35 3.632-.967v.914h3.94v-7.528a5 5 0 0 0 0-.224v-.104c0-4.369-3.39-7.91-7.572-7.91-3.616 0-6.64 2.648-7.392 6.188m-.5 2.982c.67 0 1.212-.567 1.212-1.266s-.542-1.265-1.212-1.265-1.211.566-1.211 1.265c0 .7.542 1.266 1.211 1.266M20.682 24H11.8C5.549 23.887.515 18.556.515 12c0-6.627 5.143-12 11.487-12 6.241 0 11.32 5.2 11.483 11.678l-.02 9.743C23.3 22.876 22.12 24 20.683 24" }) + ] + } + ); +}); + +exports.default = SiAvaloniaui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.d.ts new file mode 100644 index 000000000..227924a18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#165BFF"; +declare const SiAvaloniaui: IconType; +export { SiAvaloniaui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.mjs new file mode 100644 index 000000000..865767dc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvaloniaui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#165BFF"; +const SiAvaloniaui = React.forwardRef(function SiAvaloniaui2({ title = "AvaloniaUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.034 8.208c-2.003 0-3.627 1.696-3.627 3.789s1.624 3.789 3.627 3.789 3.627-1.697 3.627-3.79-1.624-3.788-3.627-3.788m-7.392 2.067c.72.211 1.248.902 1.248 1.722s-.528 1.51-1.248 1.721c.752 3.54 3.776 6.188 7.392 6.188 1.316 0 2.554-.35 3.632-.967v.914h3.94v-7.528a5 5 0 0 0 0-.224v-.104c0-4.369-3.39-7.91-7.572-7.91-3.616 0-6.64 2.648-7.392 6.188m-.5 2.982c.67 0 1.212-.567 1.212-1.266s-.542-1.265-1.212-1.265-1.211.566-1.211 1.265c0 .7.542 1.266 1.211 1.266M20.682 24H11.8C5.549 23.887.515 18.556.515 12c0-6.627 5.143-12 11.487-12 6.241 0 11.32 5.2 11.483 11.678l-.02 9.743C23.3 22.876 22.12 24 20.683 24" }) + ] + } + ); +}); + +export { SiAvaloniaui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.cjs new file mode 100644 index 000000000..bb211e2f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7800"; +const SiAvast = React__namespace.forwardRef(function SiAvast2({ title = "Avast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.2941 2.991a3.0286 3.0286 0 0 1 4.4499 1.2039l7.0018 14.8042a11.937 11.937 0 0 0 2.2539-6.9131C24.0464 5.4569 18.7112.047 12.0834.0004 5.4556-.0463.047 5.2889.0004 11.9167a11.9356 11.9356 0 0 0 2.2213 7.0344l.2813-.0613 4.5692-1.008c.1287-.0286.1967.1454.084.2127L3.3736 20.337a11.9563 11.9563 0 0 0 8.5431 3.6625c3.76.0267 7.1258-1.68 9.3444-4.3705L9.8095 7.5735a3.0272 3.0272 0 0 1 .4846-4.5826zm2.1493 13.6089-7.3731.64a1.302 1.302 0 1 1 .1866-2.5666l7.2031 1.6972c.1287.0314.114.2174-.0166.2294zM9.03 10.116l8.9404 7.2324c.102.0827.01.2447-.1133.198L7.1035 13.4713a1.9593 1.9593 0 1 1 1.9266-3.3552z" }) + ] + } + ); +}); + +exports.default = SiAvast; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.d.ts new file mode 100644 index 000000000..ec5114f34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7800"; +declare const SiAvast: IconType; +export { SiAvast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.mjs new file mode 100644 index 000000000..5853806fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvast.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7800"; +const SiAvast = React.forwardRef(function SiAvast2({ title = "Avast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.2941 2.991a3.0286 3.0286 0 0 1 4.4499 1.2039l7.0018 14.8042a11.937 11.937 0 0 0 2.2539-6.9131C24.0464 5.4569 18.7112.047 12.0834.0004 5.4556-.0463.047 5.2889.0004 11.9167a11.9356 11.9356 0 0 0 2.2213 7.0344l.2813-.0613 4.5692-1.008c.1287-.0286.1967.1454.084.2127L3.3736 20.337a11.9563 11.9563 0 0 0 8.5431 3.6625c3.76.0267 7.1258-1.68 9.3444-4.3705L9.8095 7.5735a3.0272 3.0272 0 0 1 .4846-4.5826zm2.1493 13.6089-7.3731.64a1.302 1.302 0 1 1 .1866-2.5666l7.2031 1.6972c.1287.0314.114.2174-.0166.2294zM9.03 10.116l8.9404 7.2324c.102.0827.01.2447-.1133.198L7.1035 13.4713a1.9593 1.9593 0 1 1 1.9266-3.3552z" }) + ] + } + ); +}); + +export { SiAvast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.cjs new file mode 100644 index 000000000..7462cf2a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiAvianca = React__namespace.forwardRef(function SiAvianca2({ title = "avianca", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.813 0s-2.326 2.052-2.51 6.367c-.205 4.716 2.324 9.47 10.654 10.076.026.005.055.005.08.008C7.806 11.534 4.955 5.241 3.812 0zm8.224 16.451a30.654 30.654 0 0 0 2.2 2.303H5.282c.12.278.53.472 1.463.527 5.59.332 6.38 4.719 14.381 4.719.702 0 1.14-.042 1.582-.125-3.16-.972-6-2.8-8.47-5.121h2.21c.917 0 1.325.076 1.58.191-.392-1.218-1.631-2.168-5.992-2.494z" }) + ] + } + ); +}); + +exports.default = SiAvianca; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.d.ts new file mode 100644 index 000000000..21f5530d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiAvianca: IconType; +export { SiAvianca as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.mjs new file mode 100644 index 000000000..15db50533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvianca.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiAvianca = React.forwardRef(function SiAvianca2({ title = "avianca", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.813 0s-2.326 2.052-2.51 6.367c-.205 4.716 2.324 9.47 10.654 10.076.026.005.055.005.08.008C7.806 11.534 4.955 5.241 3.812 0zm8.224 16.451a30.654 30.654 0 0 0 2.2 2.303H5.282c.12.278.53.472 1.463.527 5.59.332 6.38 4.719 14.381 4.719.702 0 1.14-.042 1.582-.125-3.16-.972-6-2.8-8.47-5.121h2.21c.917 0 1.325.076 1.58.191-.392-1.218-1.631-2.168-5.992-2.494z" }) + ] + } + ); +}); + +export { SiAvianca as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.cjs new file mode 100644 index 000000000..5c0d2967e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E02027"; +const SiAvira = React__namespace.forwardRef(function SiAvira2({ title = "Avira", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 23.414a.586.586 0 0 1-.586.587H.585A.586.586 0 0 1 0 23.414V.586c0-.324.262-.587.585-.587h22.829c.325 0 .586.263.586.587v22.828Zm-4.971-9.675-.04-.044-1.323 1.256a.925.925 0 0 1-1.342 1.272 1.234 1.234 0 0 1-.118-.122l-3.56-3.753 4.857-4.609c-3.034-2.858-7.795-2.984-10.765-.111-2.969 2.874-3.337 7.527-.539 10.838l5.106-4.845 3.748 3.952a2.777 2.777 0 0 0 1.995.74 2.681 2.681 0 0 0 1.772-.742c.559-.526.894-1.272.887-2.022a2.702 2.702 0 0 0-.678-1.81Zm-4.573-5.55-7.65 7.259c-2.576-4.553 2.815-10.009 7.65-7.259Z" }) + ] + } + ); +}); + +exports.default = SiAvira; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.d.ts new file mode 100644 index 000000000..5fda4a8f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E02027"; +declare const SiAvira: IconType; +export { SiAvira as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.mjs new file mode 100644 index 000000000..c764468b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvira.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E02027"; +const SiAvira = React.forwardRef(function SiAvira2({ title = "Avira", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 23.414a.586.586 0 0 1-.586.587H.585A.586.586 0 0 1 0 23.414V.586c0-.324.262-.587.585-.587h22.829c.325 0 .586.263.586.587v22.828Zm-4.971-9.675-.04-.044-1.323 1.256a.925.925 0 0 1-1.342 1.272 1.234 1.234 0 0 1-.118-.122l-3.56-3.753 4.857-4.609c-3.034-2.858-7.795-2.984-10.765-.111-2.969 2.874-3.337 7.527-.539 10.838l5.106-4.845 3.748 3.952a2.777 2.777 0 0 0 1.995.74 2.681 2.681 0 0 0 1.772-.742c.559-.526.894-1.272.887-2.022a2.702 2.702 0 0 0-.678-1.81Zm-4.573-5.55-7.65 7.259c-2.576-4.553 2.815-10.009 7.65-7.259Z" }) + ] + } + ); +}); + +export { SiAvira as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.cjs new file mode 100644 index 000000000..5787e1dfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E2001A"; +const SiAvm = React__namespace.forwardRef(function SiAvm2({ title = "AVM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.501 11.786-.003-4.823-10.9 11.925h3.172l5.481-6.07v4.864l4.321-4.783v3.657H24V6.86zm-2.643-6.675-5.267 5.87V7.443H9.345v9.38L20.049 5.111zM0 16.556h3.148l2.924-3.25v3.25H8.41v-9.21z" }) + ] + } + ); +}); + +exports.default = SiAvm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.d.ts new file mode 100644 index 000000000..363092827 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E2001A"; +declare const SiAvm: IconType; +export { SiAvm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.mjs new file mode 100644 index 000000000..89137cd12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAvm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E2001A"; +const SiAvm = React.forwardRef(function SiAvm2({ title = "AVM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.501 11.786-.003-4.823-10.9 11.925h3.172l5.481-6.07v4.864l4.321-4.783v3.657H24V6.86zm-2.643-6.675-5.267 5.87V7.443H9.345v9.38L20.049 5.111zM0 16.556h3.148l2.924-3.25v3.25H8.41v-9.21z" }) + ] + } + ); +}); + +export { SiAvm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.cjs new file mode 100644 index 000000000..af8fe0472 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC60A8"; +const SiAwesomelists = React__namespace.forwardRef(function SiAwesomelists2({ title = "Awesome Lists", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 11.438l-6.154-5.645-.865.944 5.128 4.7H1.895l5.128-4.705-.865-.943-6.154 5.649H0v3.72c0 1.683 1.62 3.053 3.61 3.053h3.795c1.99 0 3.61-1.37 3.61-3.051v-2.446h1.97v2.446c0 1.68 1.62 3.051 3.61 3.051h3.794c1.99 0 3.61-1.37 3.61-3.051v-3.721z" }) + ] + } + ); +}); + +exports.default = SiAwesomelists; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.d.ts new file mode 100644 index 000000000..165eb2d0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC60A8"; +declare const SiAwesomelists: IconType; +export { SiAwesomelists as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.mjs new file mode 100644 index 000000000..4ca4899e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomelists.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC60A8"; +const SiAwesomelists = React.forwardRef(function SiAwesomelists2({ title = "Awesome Lists", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 11.438l-6.154-5.645-.865.944 5.128 4.7H1.895l5.128-4.705-.865-.943-6.154 5.649H0v3.72c0 1.683 1.62 3.053 3.61 3.053h3.795c1.99 0 3.61-1.37 3.61-3.051v-2.446h1.97v2.446c0 1.68 1.62 3.051 3.61 3.051h3.794c1.99 0 3.61-1.37 3.61-3.051v-3.721z" }) + ] + } + ); +}); + +export { SiAwesomelists as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.cjs new file mode 100644 index 000000000..16f7ec83e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#535D6C"; +const SiAwesomewm = React__namespace.forwardRef(function SiAwesomewm2({ title = "awesomeWM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 24V8.25h16.5V7.5H0V0h24v24h-7.5v-8.25h-9v.75h8.25V24z" }) + ] + } + ); +}); + +exports.default = SiAwesomewm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.d.ts new file mode 100644 index 000000000..e1f870ac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#535D6C"; +declare const SiAwesomewm: IconType; +export { SiAwesomewm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.mjs new file mode 100644 index 000000000..de22ee20b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwesomewm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#535D6C"; +const SiAwesomewm = React.forwardRef(function SiAwesomewm2({ title = "awesomeWM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 24V8.25h16.5V7.5H0V0h24v24h-7.5v-8.25h-9v.75h8.25V24z" }) + ] + } + ); +}); + +export { SiAwesomewm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.cjs new file mode 100644 index 000000000..6d464101b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const SiAwwwards = React__namespace.forwardRef(function SiAwwwards2({ title = "Awwwards", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.72 5.6-2.24 8.68-2.12-8.68H7.47l-2.12 8.68L3.11 5.6H0l4.01 12.65h2.74l2.17-8.18 2.16 8.18h2.74L17.83 5.6zm5.1 10.7c0 1.2.9 2.1 2.09 2.1 1.2 0 2.09-.9 2.09-2.1s-.9-2.12-2.1-2.12c-1.19 0-2.08.9-2.08 2.11" }) + ] + } + ); +}); + +exports.default = SiAwwwards; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.d.ts new file mode 100644 index 000000000..937fda791 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const SiAwwwards: IconType; +export { SiAwwwards as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.mjs new file mode 100644 index 000000000..2da935b05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAwwwards.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const SiAwwwards = React.forwardRef(function SiAwwwards2({ title = "Awwwards", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.72 5.6-2.24 8.68-2.12-8.68H7.47l-2.12 8.68L3.11 5.6H0l4.01 12.65h2.74l2.17-8.18 2.16 8.18h2.74L17.83 5.6zm5.1 10.7c0 1.2.9 2.1 2.09 2.1 1.2 0 2.09-.9 2.09-2.1s-.9-2.12-2.1-2.12c-1.19 0-2.08.9-2.08 2.11" }) + ] + } + ); +}); + +export { SiAwwwards as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.cjs new file mode 100644 index 000000000..72bcac3b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A29E4"; +const SiAxios = React__namespace.forwardRef(function SiAxios2({ title = "Axios", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.0683 2.89968V22.2973l-2.11399 1.70265V7.8638H4.975l6.0933-4.96412zM14.93426 0v15.76724H19.025l-6.20044 5.08865V1.4689L14.93426 0z" }) + ] + } + ); +}); + +exports.default = SiAxios; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.d.ts new file mode 100644 index 000000000..58d24cd3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A29E4"; +declare const SiAxios: IconType; +export { SiAxios as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.mjs new file mode 100644 index 000000000..a3a7b1367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAxios.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A29E4"; +const SiAxios = React.forwardRef(function SiAxios2({ title = "Axios", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.0683 2.89968V22.2973l-2.11399 1.70265V7.8638H4.975l6.0933-4.96412zM14.93426 0v15.76724H19.025l-6.20044 5.08865V1.4689L14.93426 0z" }) + ] + } + ); +}); + +export { SiAxios as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.cjs new file mode 100644 index 000000000..d72c4cd32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#971A4D"; +const SiAxisbank = React__namespace.forwardRef(function SiAxisbank2({ title = "Axis Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.978 1.596 0 22.404h7.453l8.265-14.369Zm.027 12.896 4.533 7.903H24l-4.533-7.903z" }) + ] + } + ); +}); + +exports.default = SiAxisbank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.d.ts new file mode 100644 index 000000000..3b01dc426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#971A4D"; +declare const SiAxisbank: IconType; +export { SiAxisbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.mjs new file mode 100644 index 000000000..1d2b877d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiAxisbank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#971A4D"; +const SiAxisbank = React.forwardRef(function SiAxisbank2({ title = "Axis Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.978 1.596 0 22.404h7.453l8.265-14.369Zm.027 12.896 4.533 7.903H24l-4.533-7.903z" }) + ] + } + ); +}); + +export { SiAxisbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.cjs new file mode 100644 index 000000000..77671ea73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14AECB"; +const SiB4x = React__namespace.forwardRef(function SiB4x2({ title = "B4X", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.538 23.992c-6.265-.455-10.82-3-13.57-7.574a13 13 0 0 1-.814-1.575c0-.09 7.728-14.238 7.76-14.22a2 2 0 0 1 .068.46c.075.925.373 2.335.71 3.357a14.8 14.8 0 0 0 2.044 3.97 4 4 0 0 0 .37.456c.033.022.22.227.417.462.198.235.49.553.653.71l.299.283-.325-.355a19 19 0 0 1-.597-.697l-.276-.34.478-.843 3.835-6.769c.418-.735.769-1.328.776-1.317a8 8 0 0 1-.126.746c-.665 3.291-.5 6.258.477 8.728.164.418.523 1.157.56 1.157.015 0 .26-.433.545-.96a1795 1795 0 0 1 4.13-7.593 1 1 0 0 1 .13-.201c.012 0-.066.239-.17.53-.575 1.593-.945 3.097-1.135 4.627-.093.746-.082 2.492.026 3.194.287 1.899.95 3.455 2.026 4.735.362.429.787.828.952.888.048.018.074.06.063.09l-1.683 3.79A284 284 0 0 0 20.5 23.5c0 .09-.168.142-.735.235-1.16.186-1.948.242-3.478.261-.82.008-1.604.004-1.75-.007" }) + ] + } + ); +}); + +exports.default = SiB4x; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.d.ts new file mode 100644 index 000000000..bfcda43a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14AECB"; +declare const SiB4x: IconType; +export { SiB4x as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.mjs new file mode 100644 index 000000000..c16af39d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiB4x.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14AECB"; +const SiB4x = React.forwardRef(function SiB4x2({ title = "B4X", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.538 23.992c-6.265-.455-10.82-3-13.57-7.574a13 13 0 0 1-.814-1.575c0-.09 7.728-14.238 7.76-14.22a2 2 0 0 1 .068.46c.075.925.373 2.335.71 3.357a14.8 14.8 0 0 0 2.044 3.97 4 4 0 0 0 .37.456c.033.022.22.227.417.462.198.235.49.553.653.71l.299.283-.325-.355a19 19 0 0 1-.597-.697l-.276-.34.478-.843 3.835-6.769c.418-.735.769-1.328.776-1.317a8 8 0 0 1-.126.746c-.665 3.291-.5 6.258.477 8.728.164.418.523 1.157.56 1.157.015 0 .26-.433.545-.96a1795 1795 0 0 1 4.13-7.593 1 1 0 0 1 .13-.201c.012 0-.066.239-.17.53-.575 1.593-.945 3.097-1.135 4.627-.093.746-.082 2.492.026 3.194.287 1.899.95 3.455 2.026 4.735.362.429.787.828.952.888.048.018.074.06.063.09l-1.683 3.79A284 284 0 0 0 20.5 23.5c0 .09-.168.142-.735.235-1.16.186-1.948.242-3.478.261-.82.008-1.604.004-1.75-.007" }) + ] + } + ); +}); + +export { SiB4x as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.cjs new file mode 100644 index 000000000..3b6ac677b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9DC3E"; +const SiBabel = React__namespace.forwardRef(function SiBabel2({ title = "Babel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.76 0c-1.603.147-3.719.713-6.317 1.719a22.366 22.366 0 01-2.44 1.539l.01.158c.064 0 .136-.043.24-.096.106-.01.169.032.169.137l.168-.094.084-.011.01.074c.01.073-.566.523-1.707 1.33l.093.146-.084.012-.177-.064c0 .052-.073.085-.24.095l.01.084.189.21a.673.673 0 01-.252-.053c-.367.031-.734.303-1.09.806l.094.147c.314-.283.492-.43.544-.43l.022.23c-.052 0-.136.042-.24.094l.199.295A5.86 5.86 0 016.29 5.291c.23.063.346.125.346.209l.168-.01c1.225-.911 2.44-1.562 3.644-1.97l.012.158c-.22.335-.377.501-.461.511.01.116.052.21.115.305.021.21-.524 1.583-1.635 4.139-2.535 5.93-4.651 10.307-6.359 13.156 0 .052.041.136.094.23.419-.104.691-.197.806-.302l.096-.012.01.158.158-.011.166-.094c0 .052.063.073.168.062l.012.159c.01.157-.075.397-.274.722-.178.2-.355.607-.554 1.225l.01.074.158-.01c.68-.764 1.204-1.52 1.56-2.254 2.001-.586 3.52-1.162 4.578-1.728 1.058-.094 1.876-.365 2.42-.826l-.011-.084-.399.115-.094.01-.01-.084c.776-.116 1.32-.293 1.614-.524 1.519-1.173 2.66-2 3.435-2.492 2.4-1.76 3.531-3.457 3.395-5.07-.01-.168-.545-.828-1.582-1.98-.021-.22.345-.535 1.078-.954l2.086-1.834c.46-.597.744-1.56.838-2.89l-.031-.315c-.084-.932-.756-1.687-2.034-2.264C19.06.303 17.708.031 15.76 0zm2.525 1.037c1.55.063 2.347.335 2.389.817l-.063.158-2.326-.975zm-1.482 1.317c1.063-.016 1.617.267 1.672.863l.156-.012-.031-.398.168-.01c.408.22.627.492.648.816.021.22-.094.494-.355.819-.105.01-.168-.064-.178-.221l-.168.012-.041.47c-.702 1.048-1.205 1.582-1.52 1.614-.283.387-.462.587-.535.597-.22.262-.816.712-1.8 1.34-.325.032-1.531.493-3.616 1.404a.595.595 0 00-.334-.052l-.012-.147c-.02-.304.107-.681.41-1.142.158-.86.335-1.352.534-1.467l1.738-3.906c-.02-.241.347-.43 1.111-.555l.252-.022.02.221a50.387 50.387 0 011.394-.2c.173-.014.335-.022.487-.024zm3.619.39h.027c.139.012.288.263.446.744l.01.147c-.085.01-.24-.242-.471-.744l-.012-.147zm-9.836 2.483h.072l.022.23c-.074.01-.177.116-.303.336l-.012-.156c.147-.178.22-.316.22-.41zM5.6 5.354l.01.072c-.053 0-.136.043-.24.095l-.085.01-.01-.146.325-.031zM9.885 6.86l.031.315-.084.01-.031-.313.084-.012zm-.2.567c-.02.262-.084.397-.22.408l-.084.01c.094-.178.147-.303.137-.397l.168-.021zm-.345.816l.01.074-.147.25-.158.012-.01-.074c.157-.01.231-.093.22-.25l.085-.012zm-.358.735l-.04.386-.085.01-.03-.387.155-.01zm8.497.28l.345.212c.01.104-.042.167-.146.177-.147-.094-.262-.136-.346-.136l-.021-.23.168-.022zm-6.653.891l.012.147-.326.033-.01-.148.324-.032zm5.363.545c.23.105.347.21.358.293l.01.075c-.22.02-.42-.095-.608-.346l.24-.022zm2.6.252c.178.074.261.148.272.221l.052.617c-.073.168-.146.252-.23.252l-.094-1.09zm-4.195.065c.84-.014 1.482.184 1.922.605l.03.315c-.376 1.09-.795 1.719-1.245 1.918l-2.096 1.666c-1.56 1.026-2.4 1.538-2.525 1.548-2.483 1.373-4.032 2.075-4.63 2.127l-.095.01c.084-.293 1.185-2.555 3.322-6.808.943-.084 2.43-.525 4.452-1.32l.492-.042c.128-.01.253-.017.373-.02zm-3.055.49l.01.074-.334.031-.012-.074.336-.031zm-5.226 5.07c-.105.535-.221.808-.336.819l-.01-.075c-.021-.272.094-.513.346-.744zm7.101.336l.01.147c.01.063-.23.261-.701.607-1.394.681-2.21 1.152-2.452 1.393-1.508.523-2.252.849-2.242.974-1.34.535-2.22.923-2.638 1.164-.095.01-.241-.031-.43-.115-.021-.272.093-.494.365-.672.23-.02.463.011.672.106.251-.126.68-.274 1.299-.42l-.012-.156-.492.04c.063-.083.535-.303 1.436-.67l.251-.02.01.073c-.419.032-.66.167-.713.387.01.094.064.147.168.137.304-.21.461-.324.461-.356.608-.115 2.274-.995 5.008-2.619zm-7.584.723l.01.072c.01.105-.042.17-.147.18l-.01-.074c-.01-.095.042-.157.147-.178zm3.77.937c.089-.002.139.049.148.131-.199.021-.566.178-1.121.492l-.084.01-.01-.156a1.586 1.586 0 001.026-.47c.014-.003.028-.006.04-.007zm-3.664 1.243l.01.082c-.064 0-.138.043-.243.095l-.156.01c-.01-.073.032-.136.137-.168l.252-.02zm-1.918.953l.177.072c-.063.471-.198.713-.44.734a1.076 1.076 0 00-.513-.105l-.021-.23c-.01-.095.043-.147.158-.178.105-.01.167.061.178.218.282-.345.44-.511.46-.511Z" }) + ] + } + ); +}); + +exports.default = SiBabel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.d.ts new file mode 100644 index 000000000..aea03b17c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9DC3E"; +declare const SiBabel: IconType; +export { SiBabel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.mjs new file mode 100644 index 000000000..964a3626b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9DC3E"; +const SiBabel = React.forwardRef(function SiBabel2({ title = "Babel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.76 0c-1.603.147-3.719.713-6.317 1.719a22.366 22.366 0 01-2.44 1.539l.01.158c.064 0 .136-.043.24-.096.106-.01.169.032.169.137l.168-.094.084-.011.01.074c.01.073-.566.523-1.707 1.33l.093.146-.084.012-.177-.064c0 .052-.073.085-.24.095l.01.084.189.21a.673.673 0 01-.252-.053c-.367.031-.734.303-1.09.806l.094.147c.314-.283.492-.43.544-.43l.022.23c-.052 0-.136.042-.24.094l.199.295A5.86 5.86 0 016.29 5.291c.23.063.346.125.346.209l.168-.01c1.225-.911 2.44-1.562 3.644-1.97l.012.158c-.22.335-.377.501-.461.511.01.116.052.21.115.305.021.21-.524 1.583-1.635 4.139-2.535 5.93-4.651 10.307-6.359 13.156 0 .052.041.136.094.23.419-.104.691-.197.806-.302l.096-.012.01.158.158-.011.166-.094c0 .052.063.073.168.062l.012.159c.01.157-.075.397-.274.722-.178.2-.355.607-.554 1.225l.01.074.158-.01c.68-.764 1.204-1.52 1.56-2.254 2.001-.586 3.52-1.162 4.578-1.728 1.058-.094 1.876-.365 2.42-.826l-.011-.084-.399.115-.094.01-.01-.084c.776-.116 1.32-.293 1.614-.524 1.519-1.173 2.66-2 3.435-2.492 2.4-1.76 3.531-3.457 3.395-5.07-.01-.168-.545-.828-1.582-1.98-.021-.22.345-.535 1.078-.954l2.086-1.834c.46-.597.744-1.56.838-2.89l-.031-.315c-.084-.932-.756-1.687-2.034-2.264C19.06.303 17.708.031 15.76 0zm2.525 1.037c1.55.063 2.347.335 2.389.817l-.063.158-2.326-.975zm-1.482 1.317c1.063-.016 1.617.267 1.672.863l.156-.012-.031-.398.168-.01c.408.22.627.492.648.816.021.22-.094.494-.355.819-.105.01-.168-.064-.178-.221l-.168.012-.041.47c-.702 1.048-1.205 1.582-1.52 1.614-.283.387-.462.587-.535.597-.22.262-.816.712-1.8 1.34-.325.032-1.531.493-3.616 1.404a.595.595 0 00-.334-.052l-.012-.147c-.02-.304.107-.681.41-1.142.158-.86.335-1.352.534-1.467l1.738-3.906c-.02-.241.347-.43 1.111-.555l.252-.022.02.221a50.387 50.387 0 011.394-.2c.173-.014.335-.022.487-.024zm3.619.39h.027c.139.012.288.263.446.744l.01.147c-.085.01-.24-.242-.471-.744l-.012-.147zm-9.836 2.483h.072l.022.23c-.074.01-.177.116-.303.336l-.012-.156c.147-.178.22-.316.22-.41zM5.6 5.354l.01.072c-.053 0-.136.043-.24.095l-.085.01-.01-.146.325-.031zM9.885 6.86l.031.315-.084.01-.031-.313.084-.012zm-.2.567c-.02.262-.084.397-.22.408l-.084.01c.094-.178.147-.303.137-.397l.168-.021zm-.345.816l.01.074-.147.25-.158.012-.01-.074c.157-.01.231-.093.22-.25l.085-.012zm-.358.735l-.04.386-.085.01-.03-.387.155-.01zm8.497.28l.345.212c.01.104-.042.167-.146.177-.147-.094-.262-.136-.346-.136l-.021-.23.168-.022zm-6.653.891l.012.147-.326.033-.01-.148.324-.032zm5.363.545c.23.105.347.21.358.293l.01.075c-.22.02-.42-.095-.608-.346l.24-.022zm2.6.252c.178.074.261.148.272.221l.052.617c-.073.168-.146.252-.23.252l-.094-1.09zm-4.195.065c.84-.014 1.482.184 1.922.605l.03.315c-.376 1.09-.795 1.719-1.245 1.918l-2.096 1.666c-1.56 1.026-2.4 1.538-2.525 1.548-2.483 1.373-4.032 2.075-4.63 2.127l-.095.01c.084-.293 1.185-2.555 3.322-6.808.943-.084 2.43-.525 4.452-1.32l.492-.042c.128-.01.253-.017.373-.02zm-3.055.49l.01.074-.334.031-.012-.074.336-.031zm-5.226 5.07c-.105.535-.221.808-.336.819l-.01-.075c-.021-.272.094-.513.346-.744zm7.101.336l.01.147c.01.063-.23.261-.701.607-1.394.681-2.21 1.152-2.452 1.393-1.508.523-2.252.849-2.242.974-1.34.535-2.22.923-2.638 1.164-.095.01-.241-.031-.43-.115-.021-.272.093-.494.365-.672.23-.02.463.011.672.106.251-.126.68-.274 1.299-.42l-.012-.156-.492.04c.063-.083.535-.303 1.436-.67l.251-.02.01.073c-.419.032-.66.167-.713.387.01.094.064.147.168.137.304-.21.461-.324.461-.356.608-.115 2.274-.995 5.008-2.619zm-7.584.723l.01.072c.01.105-.042.17-.147.18l-.01-.074c-.01-.095.042-.157.147-.178zm3.77.937c.089-.002.139.049.148.131-.199.021-.566.178-1.121.492l-.084.01-.01-.156a1.586 1.586 0 001.026-.47c.014-.003.028-.006.04-.007zm-3.664 1.243l.01.082c-.064 0-.138.043-.243.095l-.156.01c-.01-.073.032-.136.137-.168l.252-.02zm-1.918.953l.177.072c-.063.471-.198.713-.44.734a1.076 1.076 0 00-.513-.105l-.021-.23c-.01-.095.043-.147.158-.178.105-.01.167.061.178.218.282-.345.44-.511.46-.511Z" }) + ] + } + ); +}); + +export { SiBabel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.cjs new file mode 100644 index 000000000..1b5bb47be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBB91E"; +const SiBabelio = React__namespace.forwardRef(function SiBabelio2({ title = "Babelio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.283 0a13.994 13.994 0 0 1-6.566 7.588v4.691a20.538 20.538 0 0 0 6.566-3.676zm3.283 7.7a22.121 22.121 0 0 1-13.132 7.03v4.213a35.545 35.545 0 0 0 3.836-.564 35.118 35.118 0 0 0 9.296-3.322zm3.282 7.331a36.747 36.747 0 0 1-19.696 5.686V24h19.696Z" }) + ] + } + ); +}); + +exports.default = SiBabelio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.d.ts new file mode 100644 index 000000000..62bef71e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBB91E"; +declare const SiBabelio: IconType; +export { SiBabelio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.mjs new file mode 100644 index 000000000..e7b62e426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabelio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBB91E"; +const SiBabelio = React.forwardRef(function SiBabelio2({ title = "Babelio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.283 0a13.994 13.994 0 0 1-6.566 7.588v4.691a20.538 20.538 0 0 0 6.566-3.676zm3.283 7.7a22.121 22.121 0 0 1-13.132 7.03v4.213a35.545 35.545 0 0 0 3.836-.564 35.118 35.118 0 0 0 9.296-3.322zm3.282 7.331a36.747 36.747 0 0 1-19.696 5.686V24h19.696Z" }) + ] + } + ); +}); + +export { SiBabelio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.cjs new file mode 100644 index 000000000..aa5e9b0af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BB464B"; +const SiBabylondotjs = React__namespace.forwardRef(function SiBabylondotjs2({ title = "Babylon.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0 1.607 6.002v12L12 24l10.393-6V6L19.14 4.123 16.01 5.93l3.252 1.879v8.384L12 20.387l-7.264-4.194V7.807l10.393-6zm0 8.244-3.254 1.879v3.754h.002v.004L12 15.758l3.252-1.877v-3.76z" }) + ] + } + ); +}); + +exports.default = SiBabylondotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.d.ts new file mode 100644 index 000000000..a8792808b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BB464B"; +declare const SiBabylondotjs: IconType; +export { SiBabylondotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.mjs new file mode 100644 index 000000000..47ba2e407 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBabylondotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BB464B"; +const SiBabylondotjs = React.forwardRef(function SiBabylondotjs2({ title = "Babylon.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0 1.607 6.002v12L12 24l10.393-6V6L19.14 4.123 16.01 5.93l3.252 1.879v8.384L12 20.387l-7.264-4.194V7.807l10.393-6zm0 8.244-3.254 1.879v3.754h.002v.004L12 15.758l3.252-1.877v-3.76z" }) + ] + } + ); +}); + +export { SiBabylondotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.cjs new file mode 100644 index 000000000..7e1acbaff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E21E29"; +const SiBackblaze = React__namespace.forwardRef(function SiBackblaze2({ title = "Backblaze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.3108.0003c.6527 1.3502 1.5666 4.0812-1.3887 7.1738-1.8096 1.8796-3.078 3.8487-2.3496 6.0644.3642 1.1037 1.1864 2.5079 2.8867 2.7852.6107.1008 1.3425-.0006 1.7403-.1406 2.4538-.8544 2.098-3.4138 1.5546-5.0469-.07-.2129-.1915-.7333-.2363-.9238-.3726-1.6023.776-2.6562 1.129-3.8047.028-.0925.0534-.1819.0702-.2715.042-.21.067-.423.0781-.6387 0-1.8264-.9882-2.6303-1.7754-3.5996C10.1794.5643 9.3107.0003 9.3107.0003Zm6.2754 6.0175s-.709.3366-1.2188.8829c-.4454.4818-.8635.8789-1.2949 1.8593-.028.14-.0518.2863-.0742.4375-.2325 1.6416 1.1473 3.1446.7187 5.1895-.112.535-.3554.7123-.7812 1.6367-.5098 1.1065-.383 2.588.3594 3.5293.6723.8488 1.879 1.2321 3.0527.9492 2.1065-.5042 3.0646-2.2822 2.8965-4.2851-.1317-1.58-.8154-2.7536-2.754-4.961-.9607-1.0925-1.6072-2.409-1.5624-3.4062.1373-1.2074.6582-1.832.6582-1.832zM4.8928 15.1936c-.0222.0145-.0439.0614-.0586.1602a.0469.0469 0 0 1-.0059.0195v.01c-.1148.5406-.1649 1.823.1153 2.9687.353 1.4427 1.4175 3.902 4.412 5.129 2.5184 1.0336 5.718.5411 7.8497-1.627.5294-.5435.408-.4897-.4883-.2012v-.002c-1.1121.3558-3.5182.5463-4.7676-1-1.5239-1.8852-.4302-3.3633-1.3574-3.1504-3.6164.8348-5.2667-1.4657-5.5469-2.1016-.0023-.002-.0857-.2487-.1523-.205z" }) + ] + } + ); +}); + +exports.default = SiBackblaze; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.d.ts new file mode 100644 index 000000000..cbcb1c3a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E21E29"; +declare const SiBackblaze: IconType; +export { SiBackblaze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.mjs new file mode 100644 index 000000000..a09f1e7f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackblaze.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E21E29"; +const SiBackblaze = React.forwardRef(function SiBackblaze2({ title = "Backblaze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.3108.0003c.6527 1.3502 1.5666 4.0812-1.3887 7.1738-1.8096 1.8796-3.078 3.8487-2.3496 6.0644.3642 1.1037 1.1864 2.5079 2.8867 2.7852.6107.1008 1.3425-.0006 1.7403-.1406 2.4538-.8544 2.098-3.4138 1.5546-5.0469-.07-.2129-.1915-.7333-.2363-.9238-.3726-1.6023.776-2.6562 1.129-3.8047.028-.0925.0534-.1819.0702-.2715.042-.21.067-.423.0781-.6387 0-1.8264-.9882-2.6303-1.7754-3.5996C10.1794.5643 9.3107.0003 9.3107.0003Zm6.2754 6.0175s-.709.3366-1.2188.8829c-.4454.4818-.8635.8789-1.2949 1.8593-.028.14-.0518.2863-.0742.4375-.2325 1.6416 1.1473 3.1446.7187 5.1895-.112.535-.3554.7123-.7812 1.6367-.5098 1.1065-.383 2.588.3594 3.5293.6723.8488 1.879 1.2321 3.0527.9492 2.1065-.5042 3.0646-2.2822 2.8965-4.2851-.1317-1.58-.8154-2.7536-2.754-4.961-.9607-1.0925-1.6072-2.409-1.5624-3.4062.1373-1.2074.6582-1.832.6582-1.832zM4.8928 15.1936c-.0222.0145-.0439.0614-.0586.1602a.0469.0469 0 0 1-.0059.0195v.01c-.1148.5406-.1649 1.823.1153 2.9687.353 1.4427 1.4175 3.902 4.412 5.129 2.5184 1.0336 5.718.5411 7.8497-1.627.5294-.5435.408-.4897-.4883-.2012v-.002c-1.1121.3558-3.5182.5463-4.7676-1-1.5239-1.8852-.4302-3.3633-1.3574-3.1504-3.6164.8348-5.2667-1.4657-5.5469-2.1016-.0023-.002-.0857-.2487-.1523-.205z" }) + ] + } + ); +}); + +export { SiBackblaze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.cjs new file mode 100644 index 000000000..985758ebe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBackbone = React__namespace.forwardRef(function SiBackbone2({ title = "Backbone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.978.805A5.3 5.3 0 0 1 9.972 2.29a5.3 5.3 0 0 1 2.006 1.487 5.3 5.3 0 0 1 2.006-1.488A5.3 5.3 0 0 1 11.978.804m10.6 17.27L19.45 19.22v-6.875c0-.456.37-.826.825-.826h1.479c.454 0 .824.37.824.826zm-4.55-5.73v7.399l-3.865 1.416v-14c0-.22.087-.43.243-.585a.82.82 0 0 1 .58-.24h.008l2.213.019a.827.827 0 0 1 .818.824v5.086h.004zm3.727-2.246h-1.48c-.291 0-.57.055-.826.157V7.178c0-1.23-1-2.237-2.23-2.247l-2.213-.017h-.019a2.23 2.23 0 0 0-1.582.651 2.23 2.23 0 0 0-.664 1.595v16.037L24 19.068v-6.725a2.25 2.25 0 0 0-2.247-2.246M9.839 21.159l-3.865-1.416v-7.398l-.001-.08h.003V7.176c0-.45.367-.82.818-.824l2.214-.018h.007a.82.82 0 0 1 .58.24.82.82 0 0 1 .244.585zM4.551 19.22l-3.127-1.146v-5.73c0-.456.37-.826.824-.826h1.479c.454 0 .824.37.824.826zM9.015 4.913h-.018l-2.214.018a2.254 2.254 0 0 0-2.23 2.247v3.076a2.2 2.2 0 0 0-.826-.157h-1.48A2.25 2.25 0 0 0 0 12.345v6.724l11.262 4.127V7.157a2.23 2.23 0 0 0-.665-1.594 2.23 2.23 0 0 0-1.582-.652" }) + ] + } + ); +}); + +exports.default = SiBackbone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.d.ts new file mode 100644 index 000000000..05a2654d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBackbone: IconType; +export { SiBackbone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.mjs new file mode 100644 index 000000000..9727b3de2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBackbone = React.forwardRef(function SiBackbone2({ title = "Backbone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.978.805A5.3 5.3 0 0 1 9.972 2.29a5.3 5.3 0 0 1 2.006 1.487 5.3 5.3 0 0 1 2.006-1.488A5.3 5.3 0 0 1 11.978.804m10.6 17.27L19.45 19.22v-6.875c0-.456.37-.826.825-.826h1.479c.454 0 .824.37.824.826zm-4.55-5.73v7.399l-3.865 1.416v-14c0-.22.087-.43.243-.585a.82.82 0 0 1 .58-.24h.008l2.213.019a.827.827 0 0 1 .818.824v5.086h.004zm3.727-2.246h-1.48c-.291 0-.57.055-.826.157V7.178c0-1.23-1-2.237-2.23-2.247l-2.213-.017h-.019a2.23 2.23 0 0 0-1.582.651 2.23 2.23 0 0 0-.664 1.595v16.037L24 19.068v-6.725a2.25 2.25 0 0 0-2.247-2.246M9.839 21.159l-3.865-1.416v-7.398l-.001-.08h.003V7.176c0-.45.367-.82.818-.824l2.214-.018h.007a.82.82 0 0 1 .58.24.82.82 0 0 1 .244.585zM4.551 19.22l-3.127-1.146v-5.73c0-.456.37-.826.824-.826h1.479c.454 0 .824.37.824.826zM9.015 4.913h-.018l-2.214.018a2.254 2.254 0 0 0-2.23 2.247v3.076a2.2 2.2 0 0 0-.826-.157h-1.48A2.25 2.25 0 0 0 0 12.345v6.724l11.262 4.127V7.157a2.23 2.23 0 0 0-.665-1.594 2.23 2.23 0 0 0-1.582-.652" }) + ] + } + ); +}); + +export { SiBackbone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.cjs new file mode 100644 index 000000000..7655eb643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0071B5"; +const SiBackbonedotjs = React__namespace.forwardRef(function SiBackbonedotjs2({ title = "Backbone.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.34 0v10.45l3.2-1.83V5.27l2.93 1.67 3.01-1.72L2.34 0zm19.31 0L12.5 5.22l3.02 1.73 2.94-1.68v3.35l3.2 1.83V0h-.01zm-9.9 5.64-9.4 5.38V24l9.4-5.36v-3.76l-6.21 3.56v-5.5l6.21-3.54V5.64zm.5 0V9.4l6.22 3.54v5.5l-6.22-3.56v3.76L21.66 24V11.02l-9.41-5.38zM7.7 12.3l-1.65.94v1.86l2.17 1.24 3.28-1.87-3.8-2.17zm8.61 0-3.8 2.16 3.28 1.88 2.17-1.24v-1.86l-1.65-.94z" }) + ] + } + ); +}); + +exports.default = SiBackbonedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.d.ts new file mode 100644 index 000000000..5b6e52532 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0071B5"; +declare const SiBackbonedotjs: IconType; +export { SiBackbonedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.mjs new file mode 100644 index 000000000..6300e92a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackbonedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0071B5"; +const SiBackbonedotjs = React.forwardRef(function SiBackbonedotjs2({ title = "Backbone.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.34 0v10.45l3.2-1.83V5.27l2.93 1.67 3.01-1.72L2.34 0zm19.31 0L12.5 5.22l3.02 1.73 2.94-1.68v3.35l3.2 1.83V0h-.01zm-9.9 5.64-9.4 5.38V24l9.4-5.36v-3.76l-6.21 3.56v-5.5l6.21-3.54V5.64zm.5 0V9.4l6.22 3.54v5.5l-6.22-3.56v3.76L21.66 24V11.02l-9.41-5.38zM7.7 12.3l-1.65.94v1.86l2.17 1.24 3.28-1.87-3.8-2.17zm8.61 0-3.8 2.16 3.28 1.88 2.17-1.24v-1.86l-1.65-.94z" }) + ] + } + ); +}); + +export { SiBackbonedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.cjs new file mode 100644 index 000000000..d8a168800 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D77BD"; +const SiBackendless = React__namespace.forwardRef(function SiBackendless2({ title = "Backendless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.215 6.16C2.354 6.147.584 6.953 0 8.19c3.68-.998 5.747-.332 8.244 2.638.99 1.184 1.895 2.45 2.992 3.51 1.098 1.08 2.303 2.161 3.637 2.826 2.97 1.475 6.802.415 8.05-1.994-.387.145-.752.27-1.118.416-1.693 1.181-3.92 1.204-5.748-.375-1.873-1.62-3.487-3.532-5.166-5.36C9.276 8.107 7.555 6.55 5.016 6.217a6.243 6.243 0 0 0-.801-.057Zm15.639 1.719c-.957-.013-2 .301-3.043.976-1.034.686-1.96 1.538-2.971 2.348-.603-.395-1.204-.81-1.807-1.205-.043.062-.11.145-.152.207.15.187.324.354.474.54.861.956 1.743 1.931 2.69 2.866.947-.852 1.723-1.598 2.562-2.305 2.411-2.035 4.628-1.725 6.393 1.038-.355-2.828-2.042-4.437-4.146-4.465ZM4.393 12.615c1.291 5.422 4.733 4.902 7.08 3.738.624.291 1.528.603 2.109.873.043-.062.107-.125.15-.187-1.033-.665-1.978-1.538-2.84-2.37-.215-.207-.41-.415-.603-.622-3.336 2.866-5.896-1.432-5.896-1.432z" }) + ] + } + ); +}); + +exports.default = SiBackendless; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.d.ts new file mode 100644 index 000000000..8bce5aeb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D77BD"; +declare const SiBackendless: IconType; +export { SiBackendless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.mjs new file mode 100644 index 000000000..b670c7f59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackendless.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D77BD"; +const SiBackendless = React.forwardRef(function SiBackendless2({ title = "Backendless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.215 6.16C2.354 6.147.584 6.953 0 8.19c3.68-.998 5.747-.332 8.244 2.638.99 1.184 1.895 2.45 2.992 3.51 1.098 1.08 2.303 2.161 3.637 2.826 2.97 1.475 6.802.415 8.05-1.994-.387.145-.752.27-1.118.416-1.693 1.181-3.92 1.204-5.748-.375-1.873-1.62-3.487-3.532-5.166-5.36C9.276 8.107 7.555 6.55 5.016 6.217a6.243 6.243 0 0 0-.801-.057Zm15.639 1.719c-.957-.013-2 .301-3.043.976-1.034.686-1.96 1.538-2.971 2.348-.603-.395-1.204-.81-1.807-1.205-.043.062-.11.145-.152.207.15.187.324.354.474.54.861.956 1.743 1.931 2.69 2.866.947-.852 1.723-1.598 2.562-2.305 2.411-2.035 4.628-1.725 6.393 1.038-.355-2.828-2.042-4.437-4.146-4.465ZM4.393 12.615c1.291 5.422 4.733 4.902 7.08 3.738.624.291 1.528.603 2.109.873.043-.062.107-.125.15-.187-1.033-.665-1.978-1.538-2.84-2.37-.215-.207-.41-.415-.603-.622-3.336 2.866-5.896-1.432-5.896-1.432z" }) + ] + } + ); +}); + +export { SiBackendless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.cjs new file mode 100644 index 000000000..6c9eef32f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9BF0E1"; +const SiBackstage = React__namespace.forwardRef(function SiBackstage2({ title = "Backstage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.5188 9.3003a4.5194 4.5194 0 0 0 .7533-.5808 7.0485 7.0485 0 0 0 .1289-.1288 4.6555 4.6555 0 0 0 .4441-.5254 3.5672 3.5672 0 0 0 .354-.6032 2.721 2.721 0 0 0 .2436-.9185c.0835-1.086-.56-2.166-1.995-3.0369L13.6692 0 6.9335 6.454 2.548 10.6558l6.0826 3.6916a6.25 6.25 0 0 0 3.2351.919c1.3958 0 2.7333-.4928 3.7201-1.4388 1.0732-1.0283 1.4294-2.3591.7674-3.4653a2.7568 2.7568 0 0 0-.3809-.4968 4.9944 4.9944 0 0 0 1.0821.1204h.0084a4.7653 4.7653 0 0 0 1.7363-.3243 4.53 4.53 0 0 0 .7197-.3613Zm-5.6317 3.35c-1.0821 1.0367-2.8229 1.189-4.24.3304l-4.2085-2.5546 3.7779-3.6204 4.2796 2.5977c1.542.9348 1.4574 2.2247.391 3.2469zm.5001-4.6051-3.957-2.4023 3.6075-3.4585 3.8854 2.358c1.4529.8804 1.6416 2.0723.591 3.0805a3.3992 3.3992 0 0 1-4.1269.4223Zm1.6725 10.6418c-1.0961 1.0501-2.586 1.6293-4.194 1.6293a6.93 6.93 0 0 1-3.5902-1.0194L2.548 15.8238v1.3817l6.0826 3.6916a6.2506 6.2506 0 0 0 3.2351.9197c1.3958 0 2.7333-.4935 3.7201-1.439.7214-.691 1.1202-1.5195 1.1023-2.3237v-.1003a4.888 4.888 0 0 1-.6284.7354zm0-2.1844c-1.0961 1.0502-2.586 1.6287-4.194 1.6287a6.9345 6.9345 0 0 1-3.5902-1.0188L2.548 13.64v1.3824l6.0826 3.6915a6.2506 6.2506 0 0 0 3.2351.9197c1.3958 0 2.7333-.4934 3.7201-1.4389.7214-.6911 1.1202-1.5195 1.1023-2.3244v-.0997a4.888 4.888 0 0 1-.6284.7354zm0-2.1844c-1.0961 1.0508-2.586 1.6293-4.194 1.6293a6.9345 6.9345 0 0 1-3.5902-1.0188l-5.7275-3.472v1.3823l6.0826 3.6916a6.25 6.25 0 0 0 3.2351.9191c1.3958 0 2.7333-.4929 3.7201-1.4383.7214-.6917 1.1202-1.5195 1.1023-2.3244v-.102a4.8218 4.8218 0 0 1-.6284.7371zm4.688 1.4417a5.2733 5.2733 0 0 1-3.3718 1.4484v1.4988a4.5704 4.5704 0 0 0 2.898-1.253c.784-.7493 1.184-1.5743 1.1761-2.3882v-.1226a5.3164 5.3164 0 0 1-.7023.8205zm-4.688 5.1086c-1.0961 1.0508-2.586 1.6293-4.194 1.6293a6.93 6.93 0 0 1-3.5902-1.0193L2.548 18.007v1.3823l6.0826 3.691A6.2506 6.2506 0 0 0 11.8657 24c1.3958 0 2.7333-.4929 3.7201-1.4389.7214-.6911 1.1202-1.5195 1.1023-2.3238v-.1003a4.833 4.833 0 0 1-.6284.7354zM20.863 9.0987c-.038.0386-.0756.0773-.1148.1154a5.2856 5.2856 0 0 1-.596.4845 5.1165 5.1165 0 0 1-.6496.392 5.2946 5.2946 0 0 1-1.4697.4879 5.4716 5.4716 0 0 1-.7931.088 3.07 3.07 0 0 1 .07.2744 2.9836 2.9836 0 0 1 .0638.672v.5411h.0032a4.7277 4.7277 0 0 0 1.4198-.3108 4.5368 4.5368 0 0 0 1.478-.9421c.0449-.043.084-.0874.1267-.131a4.5972 4.5972 0 0 0 .4441-.5254 3.5712 3.5712 0 0 0 .354-.6016 2.7193 2.7193 0 0 0 .242-.9213c.0046-.0689.0111-.1384.0106-.2073v-.1131q-.0605.0863-.126.173a5.4178 5.4178 0 0 1-.4627.5243zm0 4.3643c-.0386.0392-.0733.079-.112.1176a5.276 5.276 0 0 1-3.3717 1.4484v1.4938a4.5704 4.5704 0 0 0 2.8979-1.253 4.1172 4.1172 0 0 0 .9219-1.2602 2.7198 2.7198 0 0 0 .242-.9208c.0047-.0694.0111-.1383.0106-.2078v-.1226c-.0414.06-.0818.1204-.1272.1798a5.359 5.359 0 0 1-.4615.5248zm0-2.1844c-.0386.0392-.0733.079-.112.1176a5.219 5.219 0 0 1-.5954.4845 5.1321 5.1321 0 0 1-.6513.392 5.3472 5.3472 0 0 1-2.125.5702v1.4955a4.5732 4.5732 0 0 0 2.8979-1.253c.0448-.0431.084-.0873.1266-.131a4.5972 4.5972 0 0 0 .4441-.5254 3.5712 3.5712 0 0 0 .3512-.6026 2.7198 2.7198 0 0 0 .242-.9208c.0047-.0694.0111-.139.0106-.2078v-.1232c-.0414.0604-.0818.121-.1272.1803a5.359 5.359 0 0 1-.4615.5248z" }) + ] + } + ); +}); + +exports.default = SiBackstage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.d.ts new file mode 100644 index 000000000..cab80abc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9BF0E1"; +declare const SiBackstage: IconType; +export { SiBackstage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.mjs new file mode 100644 index 000000000..5c95eb464 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9BF0E1"; +const SiBackstage = React.forwardRef(function SiBackstage2({ title = "Backstage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.5188 9.3003a4.5194 4.5194 0 0 0 .7533-.5808 7.0485 7.0485 0 0 0 .1289-.1288 4.6555 4.6555 0 0 0 .4441-.5254 3.5672 3.5672 0 0 0 .354-.6032 2.721 2.721 0 0 0 .2436-.9185c.0835-1.086-.56-2.166-1.995-3.0369L13.6692 0 6.9335 6.454 2.548 10.6558l6.0826 3.6916a6.25 6.25 0 0 0 3.2351.919c1.3958 0 2.7333-.4928 3.7201-1.4388 1.0732-1.0283 1.4294-2.3591.7674-3.4653a2.7568 2.7568 0 0 0-.3809-.4968 4.9944 4.9944 0 0 0 1.0821.1204h.0084a4.7653 4.7653 0 0 0 1.7363-.3243 4.53 4.53 0 0 0 .7197-.3613Zm-5.6317 3.35c-1.0821 1.0367-2.8229 1.189-4.24.3304l-4.2085-2.5546 3.7779-3.6204 4.2796 2.5977c1.542.9348 1.4574 2.2247.391 3.2469zm.5001-4.6051-3.957-2.4023 3.6075-3.4585 3.8854 2.358c1.4529.8804 1.6416 2.0723.591 3.0805a3.3992 3.3992 0 0 1-4.1269.4223Zm1.6725 10.6418c-1.0961 1.0501-2.586 1.6293-4.194 1.6293a6.93 6.93 0 0 1-3.5902-1.0194L2.548 15.8238v1.3817l6.0826 3.6916a6.2506 6.2506 0 0 0 3.2351.9197c1.3958 0 2.7333-.4935 3.7201-1.439.7214-.691 1.1202-1.5195 1.1023-2.3237v-.1003a4.888 4.888 0 0 1-.6284.7354zm0-2.1844c-1.0961 1.0502-2.586 1.6287-4.194 1.6287a6.9345 6.9345 0 0 1-3.5902-1.0188L2.548 13.64v1.3824l6.0826 3.6915a6.2506 6.2506 0 0 0 3.2351.9197c1.3958 0 2.7333-.4934 3.7201-1.4389.7214-.6911 1.1202-1.5195 1.1023-2.3244v-.0997a4.888 4.888 0 0 1-.6284.7354zm0-2.1844c-1.0961 1.0508-2.586 1.6293-4.194 1.6293a6.9345 6.9345 0 0 1-3.5902-1.0188l-5.7275-3.472v1.3823l6.0826 3.6916a6.25 6.25 0 0 0 3.2351.9191c1.3958 0 2.7333-.4929 3.7201-1.4383.7214-.6917 1.1202-1.5195 1.1023-2.3244v-.102a4.8218 4.8218 0 0 1-.6284.7371zm4.688 1.4417a5.2733 5.2733 0 0 1-3.3718 1.4484v1.4988a4.5704 4.5704 0 0 0 2.898-1.253c.784-.7493 1.184-1.5743 1.1761-2.3882v-.1226a5.3164 5.3164 0 0 1-.7023.8205zm-4.688 5.1086c-1.0961 1.0508-2.586 1.6293-4.194 1.6293a6.93 6.93 0 0 1-3.5902-1.0193L2.548 18.007v1.3823l6.0826 3.691A6.2506 6.2506 0 0 0 11.8657 24c1.3958 0 2.7333-.4929 3.7201-1.4389.7214-.6911 1.1202-1.5195 1.1023-2.3238v-.1003a4.833 4.833 0 0 1-.6284.7354zM20.863 9.0987c-.038.0386-.0756.0773-.1148.1154a5.2856 5.2856 0 0 1-.596.4845 5.1165 5.1165 0 0 1-.6496.392 5.2946 5.2946 0 0 1-1.4697.4879 5.4716 5.4716 0 0 1-.7931.088 3.07 3.07 0 0 1 .07.2744 2.9836 2.9836 0 0 1 .0638.672v.5411h.0032a4.7277 4.7277 0 0 0 1.4198-.3108 4.5368 4.5368 0 0 0 1.478-.9421c.0449-.043.084-.0874.1267-.131a4.5972 4.5972 0 0 0 .4441-.5254 3.5712 3.5712 0 0 0 .354-.6016 2.7193 2.7193 0 0 0 .242-.9213c.0046-.0689.0111-.1384.0106-.2073v-.1131q-.0605.0863-.126.173a5.4178 5.4178 0 0 1-.4627.5243zm0 4.3643c-.0386.0392-.0733.079-.112.1176a5.276 5.276 0 0 1-3.3717 1.4484v1.4938a4.5704 4.5704 0 0 0 2.8979-1.253 4.1172 4.1172 0 0 0 .9219-1.2602 2.7198 2.7198 0 0 0 .242-.9208c.0047-.0694.0111-.1383.0106-.2078v-.1226c-.0414.06-.0818.1204-.1272.1798a5.359 5.359 0 0 1-.4615.5248zm0-2.1844c-.0386.0392-.0733.079-.112.1176a5.219 5.219 0 0 1-.5954.4845 5.1321 5.1321 0 0 1-.6513.392 5.3472 5.3472 0 0 1-2.125.5702v1.4955a4.5732 4.5732 0 0 0 2.8979-1.253c.0448-.0431.084-.0873.1266-.131a4.5972 4.5972 0 0 0 .4441-.5254 3.5712 3.5712 0 0 0 .3512-.6026 2.7198 2.7198 0 0 0 .242-.9208c.0047-.0694.0111-.139.0106-.2078v-.1232c-.0414.0604-.0818.121-.1272.1803a5.359 5.359 0 0 1-.4615.5248z" }) + ] + } + ); +}); + +export { SiBackstage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.cjs new file mode 100644 index 000000000..588d19a59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBackstageCasting = React__namespace.forwardRef(function SiBackstageCasting2({ title = "Backstage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.2 0v.056a5.997 5.997 0 0 1 0 11.886v.113a5.997 5.997 0 0 1 0 11.886v.056h12.552V0ZM1.248 0v24H9.54V0Z" }) + ] + } + ); +}); + +exports.default = SiBackstageCasting; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.d.ts new file mode 100644 index 000000000..8b2ca465c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBackstageCasting: IconType; +export { SiBackstageCasting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.mjs new file mode 100644 index 000000000..1e8fcab20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBackstageCasting.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBackstageCasting = React.forwardRef(function SiBackstageCasting2({ title = "Backstage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.2 0v.056a5.997 5.997 0 0 1 0 11.886v.113a5.997 5.997 0 0 1 0 11.886v.056h12.552V0ZM1.248 0v24H9.54V0Z" }) + ] + } + ); +}); + +export { SiBackstageCasting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.cjs new file mode 100644 index 000000000..efe7b0254 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#783BF9"; +const SiBadoo = React__namespace.forwardRef(function SiBadoo2({ title = "Badoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.68 2.809c3.392 0 6.32 2.788 6.32 6.228 0 6.71-6.6 12.158-12 12.158S0 15.748 0 9.037c0-3.44 2.928-6.228 6.32-6.228 4.128 0 5.578 3.179 5.68 3.411a6.079 6.079 0 0 1 5.67-3.411zm1.078 6.488V9.11h-2.38v.186c0 2.352-1.97 4.276-4.378 4.276-2.417 0-4.369-1.924-4.369-4.276V9.11H5.233v.186c0 1.766.697 3.42 1.98 4.666a6.795 6.795 0 0 0 4.778 1.933 6.797 6.797 0 0 0 4.777-1.933 6.488 6.488 0 0 0 1.98-4.666Z" }) + ] + } + ); +}); + +exports.default = SiBadoo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.d.ts new file mode 100644 index 000000000..12ea83ce6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#783BF9"; +declare const SiBadoo: IconType; +export { SiBadoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.mjs new file mode 100644 index 000000000..999185312 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBadoo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#783BF9"; +const SiBadoo = React.forwardRef(function SiBadoo2({ title = "Badoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.68 2.809c3.392 0 6.32 2.788 6.32 6.228 0 6.71-6.6 12.158-12 12.158S0 15.748 0 9.037c0-3.44 2.928-6.228 6.32-6.228 4.128 0 5.578 3.179 5.68 3.411a6.079 6.079 0 0 1 5.67-3.411zm1.078 6.488V9.11h-2.38v.186c0 2.352-1.97 4.276-4.378 4.276-2.417 0-4.369-1.924-4.369-4.276V9.11H5.233v.186c0 1.766.697 3.42 1.98 4.666a6.795 6.795 0 0 0 4.778 1.933 6.797 6.797 0 0 0 4.777-1.933 6.488 6.488 0 0 0 1.98-4.666Z" }) + ] + } + ); +}); + +export { SiBadoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.cjs new file mode 100644 index 000000000..ce7afd3a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2932E1"; +const SiBaidu = React__namespace.forwardRef(function SiBaidu2({ title = "Baidu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.154 0C7.71 0 6.54 1.658 6.54 3.707c0 2.051 1.171 3.71 2.615 3.71 1.446 0 2.614-1.659 2.614-3.71C11.768 1.658 10.6 0 9.154 0zm7.025.594C14.86.58 13.347 2.589 13.2 3.927c-.187 1.745.25 3.487 2.179 3.735 1.933.25 3.175-1.806 3.422-3.364.252-1.555-.995-3.364-2.362-3.674a1.218 1.218 0 0 0-.261-.03zM3.582 5.535a2.811 2.811 0 0 0-.156.008c-2.118.19-2.428 3.24-2.428 3.24-.287 1.41.686 4.425 3.297 3.864 2.617-.561 2.262-3.68 2.183-4.362-.125-1.018-1.292-2.773-2.896-2.75zm16.534 1.753c-2.308 0-2.617 2.119-2.617 3.616 0 1.43.121 3.425 2.988 3.362 2.867-.063 2.553-3.238 2.553-3.988 0-.745-.62-2.99-2.924-2.99zm-8.264 2.478c-1.424.014-2.708.925-3.323 1.947-1.118 1.868-2.863 3.05-3.112 3.363-.25.309-3.61 2.116-2.864 5.42.746 3.301 3.365 3.237 3.365 3.237s1.93.19 4.171-.31c2.24-.495 4.17.123 4.17.123s5.233 1.748 6.665-1.616c1.43-3.364-.808-5.109-.808-5.109s-2.99-2.306-4.736-4.798c-1.072-1.665-2.348-2.268-3.528-2.257zm-2.234 3.84l1.542.024v8.197H7.758c-1.47-.291-2.055-1.292-2.13-1.462-.072-.173-.488-.976-.268-2.343.635-2.049 2.447-2.196 2.447-2.196h1.81zm3.964 2.39v3.881c.096.413.612.488.612.488h1.614v-4.343h1.689v5.782h-3.915c-1.517-.39-1.59-1.465-1.59-1.465v-4.317zm-5.458 1.147c-.66.197-.978.708-1.05.928-.076.22-.247.78-.1 1.269.294 1.095 1.248 1.144 1.248 1.144h1.37v-3.34z" }) + ] + } + ); +}); + +exports.default = SiBaidu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.d.ts new file mode 100644 index 000000000..bb8e61cb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2932E1"; +declare const SiBaidu: IconType; +export { SiBaidu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.mjs new file mode 100644 index 000000000..25db4f8b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaidu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2932E1"; +const SiBaidu = React.forwardRef(function SiBaidu2({ title = "Baidu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.154 0C7.71 0 6.54 1.658 6.54 3.707c0 2.051 1.171 3.71 2.615 3.71 1.446 0 2.614-1.659 2.614-3.71C11.768 1.658 10.6 0 9.154 0zm7.025.594C14.86.58 13.347 2.589 13.2 3.927c-.187 1.745.25 3.487 2.179 3.735 1.933.25 3.175-1.806 3.422-3.364.252-1.555-.995-3.364-2.362-3.674a1.218 1.218 0 0 0-.261-.03zM3.582 5.535a2.811 2.811 0 0 0-.156.008c-2.118.19-2.428 3.24-2.428 3.24-.287 1.41.686 4.425 3.297 3.864 2.617-.561 2.262-3.68 2.183-4.362-.125-1.018-1.292-2.773-2.896-2.75zm16.534 1.753c-2.308 0-2.617 2.119-2.617 3.616 0 1.43.121 3.425 2.988 3.362 2.867-.063 2.553-3.238 2.553-3.988 0-.745-.62-2.99-2.924-2.99zm-8.264 2.478c-1.424.014-2.708.925-3.323 1.947-1.118 1.868-2.863 3.05-3.112 3.363-.25.309-3.61 2.116-2.864 5.42.746 3.301 3.365 3.237 3.365 3.237s1.93.19 4.171-.31c2.24-.495 4.17.123 4.17.123s5.233 1.748 6.665-1.616c1.43-3.364-.808-5.109-.808-5.109s-2.99-2.306-4.736-4.798c-1.072-1.665-2.348-2.268-3.528-2.257zm-2.234 3.84l1.542.024v8.197H7.758c-1.47-.291-2.055-1.292-2.13-1.462-.072-.173-.488-.976-.268-2.343.635-2.049 2.447-2.196 2.447-2.196h1.81zm3.964 2.39v3.881c.096.413.612.488.612.488h1.614v-4.343h1.689v5.782h-3.915c-1.517-.39-1.59-1.465-1.59-1.465v-4.317zm-5.458 1.147c-.66.197-.978.708-1.05.928-.076.22-.247.78-.1 1.269.294 1.095 1.248 1.144 1.248 1.144h1.37v-3.34z" }) + ] + } + ); +}); + +export { SiBaidu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.cjs new file mode 100644 index 000000000..7ccdaeab6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A2E2"; +const SiBakalari = React__namespace.forwardRef(function SiBakalari2({ title = "Bakaláři", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.385 0-.77.102-1.11.307L2.762 5.193a2.147 2.147 0 0 0-1.043 1.84v9.93a2.15 2.15 0 0 0 1.043 1.843l8.126 4.886c.683.41 1.537.41 2.22 0l8.128-4.886a2.15 2.15 0 0 0 1.043-1.842v-9.93c0-.754-.396-1.452-1.043-1.84L13.11.306A2.152 2.152 0 0 0 12 0Zm-.094 3.462c.224-.001.449.056.65.17l6.192 3.548c.402.23.65.658.65 1.12v1.85c0 .468-.253.898-.66 1.127l-1.296.722 1.295.724c.408.228.661.659.661 1.126v1.849c0 .462-.248.89-.65 1.12l-6.192 3.549a1.29 1.29 0 0 1-1.297-.008l-6.022-3.55a1.29 1.29 0 0 1-.635-1.111V8.3c0-.457.242-.88.635-1.112l6.022-3.547c.2-.118.423-.177.647-.179zm.018 2.782L7.182 9.037v5.924l4.742 2.793 4.894-2.803v-.344l-1.413-.788c-.34-.19-.55-.55-.55-.94V11.12c0-.39.21-.75.55-.94l1.413-.787v-.345z" }) + ] + } + ); +}); + +exports.default = SiBakalari; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.d.ts new file mode 100644 index 000000000..bdba27f13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A2E2"; +declare const SiBakalari: IconType; +export { SiBakalari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.mjs new file mode 100644 index 000000000..486b40ad0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBakalari.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A2E2"; +const SiBakalari = React.forwardRef(function SiBakalari2({ title = "Bakaláři", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.385 0-.77.102-1.11.307L2.762 5.193a2.147 2.147 0 0 0-1.043 1.84v9.93a2.15 2.15 0 0 0 1.043 1.843l8.126 4.886c.683.41 1.537.41 2.22 0l8.128-4.886a2.15 2.15 0 0 0 1.043-1.842v-9.93c0-.754-.396-1.452-1.043-1.84L13.11.306A2.152 2.152 0 0 0 12 0Zm-.094 3.462c.224-.001.449.056.65.17l6.192 3.548c.402.23.65.658.65 1.12v1.85c0 .468-.253.898-.66 1.127l-1.296.722 1.295.724c.408.228.661.659.661 1.126v1.849c0 .462-.248.89-.65 1.12l-6.192 3.549a1.29 1.29 0 0 1-1.297-.008l-6.022-3.55a1.29 1.29 0 0 1-.635-1.111V8.3c0-.457.242-.88.635-1.112l6.022-3.547c.2-.118.423-.177.647-.179zm.018 2.782L7.182 9.037v5.924l4.742 2.793 4.894-2.803v-.344l-1.413-.788c-.34-.19-.55-.55-.55-.94V11.12c0-.39.21-.75.55-.94l1.413-.787v-.345z" }) + ] + } + ); +}); + +export { SiBakalari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.cjs new file mode 100644 index 000000000..06da04848 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiBamboo = React__namespace.forwardRef(function SiBamboo2({ title = "Bamboo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.7142 13.6433h-4.9888a.651.651 0 00-.655.555 4.1139 4.1139 0 01-4.0619 3.5299l1.35 6.1728a10.3737 10.3737 0 009.0077-9.5447.651.651 0 00-.652-.713zm-8.6327-.158l7.1998-6.1718a.645.645 0 000-.984L13.0815.1597a.648.648 0 00-1.074.483v12.3426a.651.651 0 001.073.5zm-11.3547 1.505A10.3847 10.3847 0 0012.0115 24v-6.2698a4.0929 4.0929 0 01-4.0999-4.0869zm-.096-1.447v.1h6.2798a4.0929 4.0929 0 014.098-4.0879l-1.348-6.1698a10.3697 10.3697 0 00-9.0298 10.1577" }) + ] + } + ); +}); + +exports.default = SiBamboo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.d.ts new file mode 100644 index 000000000..ae62464d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiBamboo: IconType; +export { SiBamboo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.mjs new file mode 100644 index 000000000..6e867d995 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBamboo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiBamboo = React.forwardRef(function SiBamboo2({ title = "Bamboo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.7142 13.6433h-4.9888a.651.651 0 00-.655.555 4.1139 4.1139 0 01-4.0619 3.5299l1.35 6.1728a10.3737 10.3737 0 009.0077-9.5447.651.651 0 00-.652-.713zm-8.6327-.158l7.1998-6.1718a.645.645 0 000-.984L13.0815.1597a.648.648 0 00-1.074.483v12.3426a.651.651 0 001.073.5zm-11.3547 1.505A10.3847 10.3847 0 0012.0115 24v-6.2698a4.0929 4.0929 0 01-4.0999-4.0869zm-.096-1.447v.1h6.2798a4.0929 4.0929 0 014.098-4.0879l-1.348-6.1698a10.3697 10.3697 0 00-9.0298 10.1577" }) + ] + } + ); +}); + +export { SiBamboo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.cjs new file mode 100644 index 000000000..9a98a8913 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AE42"; +const SiBambulab = React__namespace.forwardRef(function SiBambulab2({ title = "Bambu Lab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.662 24V8.959l8.535 3.369V24zm-9.859-.003v-7.521l8.534-3.371-.001 10.892zM2.803 0h8.533l.001 11.672-8.534 3.369zm9.859 0h8.535v10.892l-8.535-3.371z" }) + ] + } + ); +}); + +exports.default = SiBambulab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.d.ts new file mode 100644 index 000000000..d7b642de2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AE42"; +declare const SiBambulab: IconType; +export { SiBambulab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.mjs new file mode 100644 index 000000000..297b8dffc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBambulab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AE42"; +const SiBambulab = React.forwardRef(function SiBambulab2({ title = "Bambu Lab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.662 24V8.959l8.535 3.369V24zm-9.859-.003v-7.521l8.534-3.371-.001 10.892zM2.803 0h8.533l.001 11.672-8.534 3.369zm9.859 0h8.535v10.892l-8.535-3.371z" }) + ] + } + ); +}); + +export { SiBambulab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.cjs new file mode 100644 index 000000000..2924ea5bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#408294"; +const SiBandcamp = React__namespace.forwardRef(function SiBandcamp2({ title = "Bandcamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 18.75l7.437-13.5H24l-7.438 13.5H0z" }) + ] + } + ); +}); + +exports.default = SiBandcamp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.d.ts new file mode 100644 index 000000000..037ba6e4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#408294"; +declare const SiBandcamp: IconType; +export { SiBandcamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.mjs new file mode 100644 index 000000000..5aa80a639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandcamp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#408294"; +const SiBandcamp = React.forwardRef(function SiBandcamp2({ title = "Bandcamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 18.75l7.437-13.5H24l-7.438 13.5H0z" }) + ] + } + ); +}); + +export { SiBandcamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.cjs new file mode 100644 index 000000000..a7e697bc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F12C18"; +const SiBandlab = React__namespace.forwardRef(function SiBandlab2({ title = "BandLab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.32 6.076 3.567 6.164A8.835 8.835 0 0 1 24 16.255C24 20.76 20.455 24 15.425 24h-6.85C3.545 24 0 20.76 0 16.255a8.925 8.925 0 0 1 1.102-4.015l3.567-6.164h3.349L3.84 13.342a6.033 6.033 0 0 0-.829 2.869c0 2.869 1.964 4.909 5.651 4.909h6.654c3.709 0 5.662-2.04 5.662-4.909a6.043 6.043 0 0 0-.829-2.869l-4.167-7.266h3.338Zm-8.444 11.509c-1.581 0-2.531-.927-2.531-2.236 0-1.789 1.822-3.349 3.819-3.785L7.473 0h8.182l1.505 2.891h-5.727l3.414 8.345c.295.655.448 1.364.448 2.073 0 2.476-2.455 4.276-4.419 4.276Z" }) + ] + } + ); +}); + +exports.default = SiBandlab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.d.ts new file mode 100644 index 000000000..b4bce7a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F12C18"; +declare const SiBandlab: IconType; +export { SiBandlab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.mjs new file mode 100644 index 000000000..c5237b9a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandlab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F12C18"; +const SiBandlab = React.forwardRef(function SiBandlab2({ title = "BandLab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.32 6.076 3.567 6.164A8.835 8.835 0 0 1 24 16.255C24 20.76 20.455 24 15.425 24h-6.85C3.545 24 0 20.76 0 16.255a8.925 8.925 0 0 1 1.102-4.015l3.567-6.164h3.349L3.84 13.342a6.033 6.033 0 0 0-.829 2.869c0 2.869 1.964 4.909 5.651 4.909h6.654c3.709 0 5.662-2.04 5.662-4.909a6.043 6.043 0 0 0-.829-2.869l-4.167-7.266h3.338Zm-8.444 11.509c-1.581 0-2.531-.927-2.531-2.236 0-1.789 1.822-3.349 3.819-3.785L7.473 0h8.182l1.505 2.891h-5.727l3.414 8.345c.295.655.448 1.364.448 2.073 0 2.476-2.455 4.276-4.419 4.276Z" }) + ] + } + ); +}); + +export { SiBandlab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.cjs new file mode 100644 index 000000000..c3bb6dcc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8800"; +const SiBandrautomation = React__namespace.forwardRef(function SiBandrautomation2({ title = "B&R Automation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 16.444H0v2.088h24v-2.088Zm-8.812-1.59-1.418-1.766.623-.767-.831-1.036-.623.767-1.565-1.959 2.192.008V8.592H9.39v1.405l.667.835c-.072.036-.538.245-.691.349-.442.27-.775.688-.939 1.18a2.052 2.052 0 0 0 1.04 2.349c.823.417 1.931.333 2.758-.04.168-.081.333-.177.482-.289l.124-.093.458.566h1.899ZM6.179 9.989a2.11 2.11 0 0 0 1.204-1.984c0-1.541-1.116-2.537-2.991-2.537H0v9.39h4.549c2.111 0 3.123-1.216 3.123-2.629a2.256 2.256 0 0 0-1.489-2.24h-.004Zm15.035 1.401s2.132-.442 2.132-2.931c0-1.75-1.076-2.991-3.252-2.991h-4.445v9.39h2.092V11.39h1.004l2.778 3.468h2.473L21.21 11.39h.004Zm-11.073 1.911a.713.713 0 0 1-.044-.831c.209-.261.482-.466.795-.59l1.072 1.353c-.213.14-.434.26-.667.365a1.15 1.15 0 0 1-.975-.133.91.91 0 0 1-.177-.168l-.004.004Zm-5.837-.008H2.088v-2.61h2.256c.911 0 1.453.45 1.453 1.305 0 .803-.518 1.305-1.493 1.305ZM17.745 9.78V7.259h2.212c.92 0 1.494.385 1.494 1.26 0 .799-.538 1.261-1.494 1.261h-2.212ZM2.088 7.062h2.007c.763 0 1.216.401 1.216 1.116 0 .715-.453 1.168-1.32 1.168H2.088V7.062Z" }) + ] + } + ); +}); + +exports.default = SiBandrautomation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.d.ts new file mode 100644 index 000000000..fbf85b50e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8800"; +declare const SiBandrautomation: IconType; +export { SiBandrautomation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.mjs new file mode 100644 index 000000000..5e5d4fe78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandrautomation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8800"; +const SiBandrautomation = React.forwardRef(function SiBandrautomation2({ title = "B&R Automation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 16.444H0v2.088h24v-2.088Zm-8.812-1.59-1.418-1.766.623-.767-.831-1.036-.623.767-1.565-1.959 2.192.008V8.592H9.39v1.405l.667.835c-.072.036-.538.245-.691.349-.442.27-.775.688-.939 1.18a2.052 2.052 0 0 0 1.04 2.349c.823.417 1.931.333 2.758-.04.168-.081.333-.177.482-.289l.124-.093.458.566h1.899ZM6.179 9.989a2.11 2.11 0 0 0 1.204-1.984c0-1.541-1.116-2.537-2.991-2.537H0v9.39h4.549c2.111 0 3.123-1.216 3.123-2.629a2.256 2.256 0 0 0-1.489-2.24h-.004Zm15.035 1.401s2.132-.442 2.132-2.931c0-1.75-1.076-2.991-3.252-2.991h-4.445v9.39h2.092V11.39h1.004l2.778 3.468h2.473L21.21 11.39h.004Zm-11.073 1.911a.713.713 0 0 1-.044-.831c.209-.261.482-.466.795-.59l1.072 1.353c-.213.14-.434.26-.667.365a1.15 1.15 0 0 1-.975-.133.91.91 0 0 1-.177-.168l-.004.004Zm-5.837-.008H2.088v-2.61h2.256c.911 0 1.453.45 1.453 1.305 0 .803-.518 1.305-1.493 1.305ZM17.745 9.78V7.259h2.212c.92 0 1.494.385 1.494 1.26 0 .799-.538 1.261-1.494 1.261h-2.212ZM2.088 7.062h2.007c.763 0 1.216.401 1.216 1.116 0 .715-.453 1.168-1.32 1.168H2.088V7.062Z" }) + ] + } + ); +}); + +export { SiBandrautomation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.cjs new file mode 100644 index 000000000..876b16d2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CEC8"; +const SiBandsintown = React__namespace.forwardRef(function SiBandsintown2({ title = "Bandsintown", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.399 12.8v4.8H19.2v1.6H4.799V0H0v24h24V12.8H6.399Zm4.801-8H6.399v6.4H11.2V4.8Zm6.4 0h-4.8v6.4h4.8V4.8ZM24 0h-4.8v11.2H24V0Z" }) + ] + } + ); +}); + +exports.default = SiBandsintown; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.d.ts new file mode 100644 index 000000000..5d91928e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CEC8"; +declare const SiBandsintown: IconType; +export { SiBandsintown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.mjs new file mode 100644 index 000000000..f0230baf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBandsintown.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CEC8"; +const SiBandsintown = React.forwardRef(function SiBandsintown2({ title = "Bandsintown", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.399 12.8v4.8H19.2v1.6H4.799V0H0v24h24V12.8H6.399Zm4.801-8H6.399v6.4H11.2V4.8Zm6.4 0h-4.8v6.4h4.8V4.8ZM24 0h-4.8v11.2H24V0Z" }) + ] + } + ); +}); + +export { SiBandsintown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.cjs new file mode 100644 index 000000000..3a29e7d14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#012169"; +const SiBankofamerica = React__namespace.forwardRef(function SiBankofamerica2({ title = "Bank of America", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.194 7.57c.487-.163 1.047-.307 1.534-.451-1.408-.596-3.176-1.227-4.764-1.625-.253.073-1.01.271-1.534.434.541.162 2.328.577 4.764 1.642zm-8.896 6.785c.577.343 1.19.812 1.786 1.209 3.952-3.068 7.85-5.432 12.127-6.767-.596-.307-1.119-.578-1.787-.902-2.562.65-6.947 2.4-12.126 6.46zm-.758-6.46c-2.112.974-4.331 2.31-5.54 3.085.433.199.866.361 1.461.65 2.671-1.805 4.764-2.905 5.594-3.266-.595-.217-1.154-.361-1.515-.47zm8.066.234c-.686-.379-3.068-1.263-4.71-1.642-.487.18-1.173.451-1.642.65.595.162 2.815.758 4.71 1.714.487-.235 1.173-.523 1.642-.722zm-3.374 1.552c-.56-.27-1.173-.523-1.643-.74-1.425.704-3.284 1.769-5.63 3.447.505.27 1.047.595 1.624.92 1.805-1.335 3.627-2.598 5.649-3.627zm1.732 8.825c3.79-3.249 9.113-6.407 12.036-7.544a48.018 48.018 0 00-1.949-1.155c-3.771 1.246-8.174 4.007-12.108 7.129.667.505 1.371 1.028 2.02 1.57zm2.851-.235h-.108l-.18-.27h-.109v.27h-.072v-.596h.27c.055 0 .109 0 .145.036.054.019.072.073.072.127 0 .108-.09.162-.198.162zm-.289-.343c.09 0 .199.018.199-.09 0-.072-.072-.09-.144-.09h-.163v.18zm-.523.036c0-.289.235-.523.541-.523.307 0 .542.234.542.523a.543.543 0 01-.542.542.532.532 0 01-.54-.542m.107 0c0 .235.199.433.451.433a.424.424 0 100-.848c-.27 0-.45.199-.45.415" }) + ] + } + ); +}); + +exports.default = SiBankofamerica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.d.ts new file mode 100644 index 000000000..0d95d4f38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#012169"; +declare const SiBankofamerica: IconType; +export { SiBankofamerica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.mjs new file mode 100644 index 000000000..abdd95949 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBankofamerica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#012169"; +const SiBankofamerica = React.forwardRef(function SiBankofamerica2({ title = "Bank of America", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.194 7.57c.487-.163 1.047-.307 1.534-.451-1.408-.596-3.176-1.227-4.764-1.625-.253.073-1.01.271-1.534.434.541.162 2.328.577 4.764 1.642zm-8.896 6.785c.577.343 1.19.812 1.786 1.209 3.952-3.068 7.85-5.432 12.127-6.767-.596-.307-1.119-.578-1.787-.902-2.562.65-6.947 2.4-12.126 6.46zm-.758-6.46c-2.112.974-4.331 2.31-5.54 3.085.433.199.866.361 1.461.65 2.671-1.805 4.764-2.905 5.594-3.266-.595-.217-1.154-.361-1.515-.47zm8.066.234c-.686-.379-3.068-1.263-4.71-1.642-.487.18-1.173.451-1.642.65.595.162 2.815.758 4.71 1.714.487-.235 1.173-.523 1.642-.722zm-3.374 1.552c-.56-.27-1.173-.523-1.643-.74-1.425.704-3.284 1.769-5.63 3.447.505.27 1.047.595 1.624.92 1.805-1.335 3.627-2.598 5.649-3.627zm1.732 8.825c3.79-3.249 9.113-6.407 12.036-7.544a48.018 48.018 0 00-1.949-1.155c-3.771 1.246-8.174 4.007-12.108 7.129.667.505 1.371 1.028 2.02 1.57zm2.851-.235h-.108l-.18-.27h-.109v.27h-.072v-.596h.27c.055 0 .109 0 .145.036.054.019.072.073.072.127 0 .108-.09.162-.198.162zm-.289-.343c.09 0 .199.018.199-.09 0-.072-.072-.09-.144-.09h-.163v.18zm-.523.036c0-.289.235-.523.541-.523.307 0 .542.234.542.523a.543.543 0 01-.542.542.532.532 0 01-.54-.542m.107 0c0 .235.199.433.451.433a.424.424 0 100-.848c-.27 0-.45.199-.45.415" }) + ] + } + ); +}); + +export { SiBankofamerica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.cjs new file mode 100644 index 000000000..f2615b89a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AEEF"; +const SiBarclays = React__namespace.forwardRef(function SiBarclays2({ title = "Barclays", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.043 3.629a3.235 3.235 0 0 0-1.048-.54 3.076 3.076 0 0 0-.937-.144h-.046c-.413.006-1.184.105-1.701.71a1.138 1.138 0 0 0-.226 1.023.9.9 0 0 0 .555.63s.088.032.228.058c-.04.078-.136.214-.136.214-.179.265-.576.612-1.668.612h-.063c-.578-.038-1.056-.189-1.616-.915-.347-.45-.523-1.207-.549-2.452-.022-.624-.107-1.165-.256-1.6-.1-.29-.333-.596-.557-.742a2.55 2.55 0 0 0-.694-.336c-.373-.12-.848-.14-1.204-.146-.462-.01-.717.096-.878.292-.027.033-.032.05-.068.046-.084-.006-.272-.006-.328-.006-.264 0-.498.043-.721.09-.47.1-.761.295-1.019.503-.12.095-.347.365-.399.653a.76.76 0 0 0 .097.578c.14-.148.374-.264.816-.266.493-.002 1.169.224 1.406.608.336.547.27.99.199 1.517-.183 1.347-.68 2.048-1.783 2.203-.191.026-.38.04-.56.04-.776 0-1.34-.248-1.63-.716a.71.71 0 0 1-.088-.168s.087-.021.163-.056c.294-.14.514-.344.594-.661.09-.353.004-.728-.23-1.007-.415-.47-.991-.708-1.713-.708-.4 0-.755.076-.982.14-.908.256-1.633.947-2.214 2.112-.412.824-.7 1.912-.81 3.067-.11 1.13-.056 2.085.019 2.949.124 1.437.363 2.298.708 3.22a15.68 15.68 0 0 0 1.609 3.19c.09-.094.15-.161.308-.318.188-.19.724-.893.876-1.11.19-.27.51-.779.664-1.147l.15.119c.16.127.252.348.249.592-.003.215-.053.464-.184.922a8.703 8.703 0 0 1-.784 1.818c-.189.341-.27.508-.199.584.015.015.038.03.06.026.116 0 .34-.117.585-.304.222-.17.813-.672 1.527-1.675a15.449 15.449 0 0 0 1.452-2.521c.12.046.255.101.317.226a.92.92 0 0 1 .08.563c-.065.539-.379 1.353-.63 1.94-.425.998-1.208 2.115-1.788 2.877-.022.03-.163.197-.186.227.9.792 1.944 1.555 3.007 2.136.725.408 2.203 1.162 3.183 1.424.98-.262 2.458-1.016 3.184-1.424a17.063 17.063 0 0 0 3.003-2.134c-.05-.076-.13-.158-.183-.23-.582-.763-1.365-1.881-1.79-2.875-.25-.59-.563-1.405-.628-1.94-.028-.221-.002-.417.08-.565.033-.098.274-.218.317-.226.405.884.887 1.73 1.452 2.522.715 1.003 1.306 1.506 1.527 1.674.248.191.467.304.586.304a.07.07 0 0 0 .044-.012c.094-.069.017-.234-.183-.594a9.003 9.003 0 0 1-.786-1.822c-.13-.456-.18-.706-.182-.92-.004-.246.088-.466.248-.594l.15-.118c.155.373.5.919.665 1.147.15.216.685.919.876 1.11.156.158.22.222.308.32a15.672 15.672 0 0 0 1.609-3.19c.343-.923.583-1.784.707-3.222.075-.86.128-1.81.02-2.948-.101-1.116-.404-2.264-.81-3.068-.249-.49-.605-1.112-1.171-1.566z" }) + ] + } + ); +}); + +exports.default = SiBarclays; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.d.ts new file mode 100644 index 000000000..7ef90e436 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AEEF"; +declare const SiBarclays: IconType; +export { SiBarclays as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.mjs new file mode 100644 index 000000000..6a62a5aec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBarclays.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AEEF"; +const SiBarclays = React.forwardRef(function SiBarclays2({ title = "Barclays", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.043 3.629a3.235 3.235 0 0 0-1.048-.54 3.076 3.076 0 0 0-.937-.144h-.046c-.413.006-1.184.105-1.701.71a1.138 1.138 0 0 0-.226 1.023.9.9 0 0 0 .555.63s.088.032.228.058c-.04.078-.136.214-.136.214-.179.265-.576.612-1.668.612h-.063c-.578-.038-1.056-.189-1.616-.915-.347-.45-.523-1.207-.549-2.452-.022-.624-.107-1.165-.256-1.6-.1-.29-.333-.596-.557-.742a2.55 2.55 0 0 0-.694-.336c-.373-.12-.848-.14-1.204-.146-.462-.01-.717.096-.878.292-.027.033-.032.05-.068.046-.084-.006-.272-.006-.328-.006-.264 0-.498.043-.721.09-.47.1-.761.295-1.019.503-.12.095-.347.365-.399.653a.76.76 0 0 0 .097.578c.14-.148.374-.264.816-.266.493-.002 1.169.224 1.406.608.336.547.27.99.199 1.517-.183 1.347-.68 2.048-1.783 2.203-.191.026-.38.04-.56.04-.776 0-1.34-.248-1.63-.716a.71.71 0 0 1-.088-.168s.087-.021.163-.056c.294-.14.514-.344.594-.661.09-.353.004-.728-.23-1.007-.415-.47-.991-.708-1.713-.708-.4 0-.755.076-.982.14-.908.256-1.633.947-2.214 2.112-.412.824-.7 1.912-.81 3.067-.11 1.13-.056 2.085.019 2.949.124 1.437.363 2.298.708 3.22a15.68 15.68 0 0 0 1.609 3.19c.09-.094.15-.161.308-.318.188-.19.724-.893.876-1.11.19-.27.51-.779.664-1.147l.15.119c.16.127.252.348.249.592-.003.215-.053.464-.184.922a8.703 8.703 0 0 1-.784 1.818c-.189.341-.27.508-.199.584.015.015.038.03.06.026.116 0 .34-.117.585-.304.222-.17.813-.672 1.527-1.675a15.449 15.449 0 0 0 1.452-2.521c.12.046.255.101.317.226a.92.92 0 0 1 .08.563c-.065.539-.379 1.353-.63 1.94-.425.998-1.208 2.115-1.788 2.877-.022.03-.163.197-.186.227.9.792 1.944 1.555 3.007 2.136.725.408 2.203 1.162 3.183 1.424.98-.262 2.458-1.016 3.184-1.424a17.063 17.063 0 0 0 3.003-2.134c-.05-.076-.13-.158-.183-.23-.582-.763-1.365-1.881-1.79-2.875-.25-.59-.563-1.405-.628-1.94-.028-.221-.002-.417.08-.565.033-.098.274-.218.317-.226.405.884.887 1.73 1.452 2.522.715 1.003 1.306 1.506 1.527 1.674.248.191.467.304.586.304a.07.07 0 0 0 .044-.012c.094-.069.017-.234-.183-.594a9.003 9.003 0 0 1-.786-1.822c-.13-.456-.18-.706-.182-.92-.004-.246.088-.466.248-.594l.15-.118c.155.373.5.919.665 1.147.15.216.685.919.876 1.11.156.158.22.222.308.32a15.672 15.672 0 0 0 1.609-3.19c.343-.923.583-1.784.707-3.222.075-.86.128-1.81.02-2.948-.101-1.116-.404-2.264-.81-3.068-.249-.49-.605-1.112-1.171-1.566z" }) + ] + } + ); +}); + +export { SiBarclays as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.cjs new file mode 100644 index 000000000..d08ab05ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6078FF"; +const SiBaremetrics = React__namespace.forwardRef(function SiBaremetrics2({ title = "Baremetrics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.109 7.951l1.485 2.464a3.507 3.507 0 010 3.275l-4.505 7.717a3.333 3.333 0 01-2.94 1.793H7.83a3.335 3.335 0 01-2.94-1.793l-1.555-2.632 6.139-5.695 4.447 2.578a1.093 1.093 0 001.456-.198zm-13.39.628L1.99 16.15.406 13.725a3.495 3.495 0 010-3.27L5.158 2.59A3.338 3.338 0 018.1.8h8.008c1.228 0 2.357.687 2.942 1.79l1.616 2.722-6.017 5.592-4.432-2.574a1.098 1.098 0 00-1.499.248z" }) + ] + } + ); +}); + +exports.default = SiBaremetrics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.d.ts new file mode 100644 index 000000000..a828aa754 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6078FF"; +declare const SiBaremetrics: IconType; +export { SiBaremetrics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.mjs new file mode 100644 index 000000000..d9714368f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaremetrics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6078FF"; +const SiBaremetrics = React.forwardRef(function SiBaremetrics2({ title = "Baremetrics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.109 7.951l1.485 2.464a3.507 3.507 0 010 3.275l-4.505 7.717a3.333 3.333 0 01-2.94 1.793H7.83a3.335 3.335 0 01-2.94-1.793l-1.555-2.632 6.139-5.695 4.447 2.578a1.093 1.093 0 001.456-.198zm-13.39.628L1.99 16.15.406 13.725a3.495 3.495 0 010-3.27L5.158 2.59A3.338 3.338 0 018.1.8h8.008c1.228 0 2.357.687 2.942 1.79l1.616 2.722-6.017 5.592-4.432-2.574a1.098 1.098 0 00-1.499.248z" }) + ] + } + ); +}); + +export { SiBaremetrics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.cjs new file mode 100644 index 000000000..3e7d319f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009FE3"; +const SiBarmenia = React__namespace.forwardRef(function SiBarmenia2({ title = "Barmenia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.046 13.427v6.395h5.709a5.41 5.41 0 0 0 2.377-.422c1.021-.537 1.532-1.537 1.532-2.999a2.591 2.591 0 0 0-1.492-2.571 5.834 5.834 0 0 0-2.347-.403zm0-9.26v5.287h5.714a4.722 4.722 0 0 0 2.486-.592c.637-.398.955-1.101.955-2.109 0-1.117-.421-1.855-1.263-2.213a8.63 8.63 0 0 0-2.78-.368zm12.761-1.611a6.19 6.19 0 0 1 1.079 3.66 5.433 5.433 0 0 1-1.089 3.531 5.617 5.617 0 0 1-1.791 1.388 5.232 5.232 0 0 1 2.716 2.113 6.474 6.474 0 0 1 .915 3.481 7.069 7.069 0 0 1-1.05 3.854 6.467 6.467 0 0 1-4.316 3.093c-1.093.222-2.207.33-3.322.324H2.361V0H13.72c2.864.046 4.893.899 6.087 2.556" }) + ] + } + ); +}); + +exports.default = SiBarmenia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.d.ts new file mode 100644 index 000000000..87c72cbc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009FE3"; +declare const SiBarmenia: IconType; +export { SiBarmenia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.mjs new file mode 100644 index 000000000..d9a234f69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBarmenia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009FE3"; +const SiBarmenia = React.forwardRef(function SiBarmenia2({ title = "Barmenia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.046 13.427v6.395h5.709a5.41 5.41 0 0 0 2.377-.422c1.021-.537 1.532-1.537 1.532-2.999a2.591 2.591 0 0 0-1.492-2.571 5.834 5.834 0 0 0-2.347-.403zm0-9.26v5.287h5.714a4.722 4.722 0 0 0 2.486-.592c.637-.398.955-1.101.955-2.109 0-1.117-.421-1.855-1.263-2.213a8.63 8.63 0 0 0-2.78-.368zm12.761-1.611a6.19 6.19 0 0 1 1.079 3.66 5.433 5.433 0 0 1-1.089 3.531 5.617 5.617 0 0 1-1.791 1.388 5.232 5.232 0 0 1 2.716 2.113 6.474 6.474 0 0 1 .915 3.481 7.069 7.069 0 0 1-1.05 3.854 6.467 6.467 0 0 1-4.316 3.093c-1.093.222-2.207.33-3.322.324H2.361V0H13.72c2.864.046 4.893.899 6.087 2.556" }) + ] + } + ); +}); + +export { SiBarmenia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.cjs new file mode 100644 index 000000000..51223048b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D2D35"; +const SiBasecamp = React__namespace.forwardRef(function SiBasecamp2({ title = "Basecamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.6516 22.453c-4.0328 0-7.575-1.5542-10.244-4.4946a1.11 1.11 0 0 1-.219-1.1338c.7008-1.8884 2.5935-6.2808 5.0205-6.2948h.0125c1.219 0 2.1312.9655 2.8648 1.7412.2192.2324.555.5875.7818.7611.5656-.5587 1.6775-2.4158 2.5422-4.2779.259-.5567.9203-.7985 1.4765-.5402.557.2584.7988.919.5404 1.4762-2.6217 5.6503-4.019 5.6503-4.478 5.6503-1.022 0-1.7628-.7843-2.4791-1.5422-.3208-.339-.9878-1.045-1.2482-1.045h-.0004c-.5665.095-1.8085 2.0531-2.6966 4.2034 2.1925 2.1722 4.9232 3.2726 8.1266 3.2726 4.3955 0 7.683-1.1964 9.0996-3.2953-.4888-5.585-3.5642-13.1634-9.0996-13.1634-4.6855 0-8.2152 3.264-10.4915 9.7007-.205.579-.8416.8828-1.4187.6776-.5789-.2047-.882-.8398-.6776-1.4185 2.624-7.421 6.859-11.1833 12.5878-11.1833 7.4826 0 10.9304 9.5613 11.3458 15.588a1.1154 1.1154 0 0 1-.1456.6314c-1.7407 3.0221-5.7182 4.6864-11.2002 4.6864Z" }) + ] + } + ); +}); + +exports.default = SiBasecamp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.d.ts new file mode 100644 index 000000000..5da118d8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D2D35"; +declare const SiBasecamp: IconType; +export { SiBasecamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.mjs new file mode 100644 index 000000000..b2d65a8dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBasecamp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D2D35"; +const SiBasecamp = React.forwardRef(function SiBasecamp2({ title = "Basecamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.6516 22.453c-4.0328 0-7.575-1.5542-10.244-4.4946a1.11 1.11 0 0 1-.219-1.1338c.7008-1.8884 2.5935-6.2808 5.0205-6.2948h.0125c1.219 0 2.1312.9655 2.8648 1.7412.2192.2324.555.5875.7818.7611.5656-.5587 1.6775-2.4158 2.5422-4.2779.259-.5567.9203-.7985 1.4765-.5402.557.2584.7988.919.5404 1.4762-2.6217 5.6503-4.019 5.6503-4.478 5.6503-1.022 0-1.7628-.7843-2.4791-1.5422-.3208-.339-.9878-1.045-1.2482-1.045h-.0004c-.5665.095-1.8085 2.0531-2.6966 4.2034 2.1925 2.1722 4.9232 3.2726 8.1266 3.2726 4.3955 0 7.683-1.1964 9.0996-3.2953-.4888-5.585-3.5642-13.1634-9.0996-13.1634-4.6855 0-8.2152 3.264-10.4915 9.7007-.205.579-.8416.8828-1.4187.6776-.5789-.2047-.882-.8398-.6776-1.4185 2.624-7.421 6.859-11.1833 12.5878-11.1833 7.4826 0 10.9304 9.5613 11.3458 15.588a1.1154 1.1154 0 0 1-.1456.6314c-1.7407 3.0221-5.7182 4.6864-11.2002 4.6864Z" }) + ] + } + ); +}); + +export { SiBasecamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.cjs new file mode 100644 index 000000000..949df8661 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5190EF"; +const SiBaserow = React__namespace.forwardRef(function SiBaserow2({ title = "Baserow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.291.068A1.29 1.29 0 0 0 0 1.36v3.352a1.29 1.29 0 0 0 1.291 1.291h3.354a1.29 1.29 0 0 0 1.289-1.291V1.359A1.29 1.29 0 0 0 4.644.07Zm9.033 0a1.29 1.29 0 0 0-1.29 1.291v3.352a1.29 1.29 0 0 0 1.29 1.291H22.71A1.29 1.29 0 0 0 24 4.711V1.359A1.29 1.29 0 0 0 22.709.07ZM1.291 9.033A1.29 1.29 0 0 0 0 10.323v3.353a1.29 1.29 0 0 0 1.291 1.29h21.418A1.29 1.29 0 0 0 24 13.677v-3.354a1.29 1.29 0 0 0-1.291-1.289Zm0 8.965A1.29 1.29 0 0 0 0 19.289v3.352a1.29 1.29 0 0 0 1.291 1.29h12.385a1.29 1.29 0 0 0 1.29-1.29v-3.352a1.29 1.29 0 0 0-1.29-1.291zm18.064 0a1.29 1.29 0 0 0-1.289 1.291v3.352a1.29 1.29 0 0 0 1.29 1.29h3.353A1.29 1.29 0 0 0 24 22.642v-3.352a1.29 1.29 0 0 0-1.291-1.291z" }) + ] + } + ); +}); + +exports.default = SiBaserow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.d.ts new file mode 100644 index 000000000..30dc27e0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5190EF"; +declare const SiBaserow: IconType; +export { SiBaserow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.mjs new file mode 100644 index 000000000..ace8adf25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBaserow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5190EF"; +const SiBaserow = React.forwardRef(function SiBaserow2({ title = "Baserow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.291.068A1.29 1.29 0 0 0 0 1.36v3.352a1.29 1.29 0 0 0 1.291 1.291h3.354a1.29 1.29 0 0 0 1.289-1.291V1.359A1.29 1.29 0 0 0 4.644.07Zm9.033 0a1.29 1.29 0 0 0-1.29 1.291v3.352a1.29 1.29 0 0 0 1.29 1.291H22.71A1.29 1.29 0 0 0 24 4.711V1.359A1.29 1.29 0 0 0 22.709.07ZM1.291 9.033A1.29 1.29 0 0 0 0 10.323v3.353a1.29 1.29 0 0 0 1.291 1.29h21.418A1.29 1.29 0 0 0 24 13.677v-3.354a1.29 1.29 0 0 0-1.291-1.289Zm0 8.965A1.29 1.29 0 0 0 0 19.289v3.352a1.29 1.29 0 0 0 1.291 1.29h12.385a1.29 1.29 0 0 0 1.29-1.29v-3.352a1.29 1.29 0 0 0-1.29-1.291zm18.064 0a1.29 1.29 0 0 0-1.289 1.291v3.352a1.29 1.29 0 0 0 1.29 1.29h3.353A1.29 1.29 0 0 0 24 22.642v-3.352a1.29 1.29 0 0 0-1.291-1.291z" }) + ] + } + ); +}); + +export { SiBaserow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.cjs new file mode 100644 index 000000000..5efbaf14e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#80247B"; +const SiBasicattentiontoken = React__namespace.forwardRef(function SiBasicattentiontoken2({ title = "Basic Attention Token", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.917 21.886.062-.124v-.042c0-.041.021-.083.021-.103v-.042c0-.041 0-.103-.02-.145l-.063-.124v-.021L12.54 2.135A.618.618 0 0 0 12 1.824c-.228 0-.415.124-.539.31L.083 21.265v.021l-.062.124C0 21.451 0 21.513 0 21.554v.042c0 .041 0 .083.02.103v.042c.021.041.021.083.063.124l.02.021c.021.041.042.083.084.104l.062.062c.02.02.041.041.062.041.02.021.062.021.083.042.02 0 .041.02.062.02.062.021.104.021.166.021h22.736c.062 0 .103 0 .165-.02.021 0 .042-.021.063-.021.041-.021.062-.021.103-.042.02-.02.042-.02.062-.041l.062-.062a.364.364 0 0 0 .083-.104h.021ZM12 11.316l3.627 5.845H8.373L12 11.316Zm-.622-1.347-4.56 7.357-4.455 2.55 9.015-15.15v5.243ZM7.42 18.425h9.14l4.456 2.55H2.964l4.456-2.55Zm9.761-1.099-4.56-7.357V4.725l9.016 15.15-4.456-2.549Z" }) + ] + } + ); +}); + +exports.default = SiBasicattentiontoken; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.d.ts new file mode 100644 index 000000000..fcf21238e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#80247B"; +declare const SiBasicattentiontoken: IconType; +export { SiBasicattentiontoken as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.mjs new file mode 100644 index 000000000..9e594c5f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBasicattentiontoken.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#80247B"; +const SiBasicattentiontoken = React.forwardRef(function SiBasicattentiontoken2({ title = "Basic Attention Token", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.917 21.886.062-.124v-.042c0-.041.021-.083.021-.103v-.042c0-.041 0-.103-.02-.145l-.063-.124v-.021L12.54 2.135A.618.618 0 0 0 12 1.824c-.228 0-.415.124-.539.31L.083 21.265v.021l-.062.124C0 21.451 0 21.513 0 21.554v.042c0 .041 0 .083.02.103v.042c.021.041.021.083.063.124l.02.021c.021.041.042.083.084.104l.062.062c.02.02.041.041.062.041.02.021.062.021.083.042.02 0 .041.02.062.02.062.021.104.021.166.021h22.736c.062 0 .103 0 .165-.02.021 0 .042-.021.063-.021.041-.021.062-.021.103-.042.02-.02.042-.02.062-.041l.062-.062a.364.364 0 0 0 .083-.104h.021ZM12 11.316l3.627 5.845H8.373L12 11.316Zm-.622-1.347-4.56 7.357-4.455 2.55 9.015-15.15v5.243ZM7.42 18.425h9.14l4.456 2.55H2.964l4.456-2.55Zm9.761-1.099-4.56-7.357V4.725l9.016 15.15-4.456-2.549Z" }) + ] + } + ); +}); + +export { SiBasicattentiontoken as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.cjs new file mode 100644 index 000000000..5532ef925 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A4FF"; +const SiBastyon = React__namespace.forwardRef(function SiBastyon2({ title = "Bastyon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.333 19.849a5.439 5.439 0 0 0-6.5-.829 7.914 7.914 0 0 1-3.837.987A8 8 0 0 1 5 15.91a5.473 5.473 0 0 1-.037 5.359 11.6 11.6 0 0 0 12.671.9 1.825 1.825 0 0 1 2.188.3L21.356 24l2.562-2.568Zm-2.096.404a11.664 11.664 0 0 0 1.931-13.89 1.836 1.836 0 0 1 .3-2.193L24 2.635 21.438.067l-1.58 1.589a5.471 5.471 0 0 0-.827 6.516A8 8 0 0 1 15.916 19l2.086 3c.917-.51 1.471-.981 2.235-1.747zm-.005-16.481A11.6 11.6 0 0 0 6.373 1.836a1.816 1.816 0 0 1-.9.235 1.82 1.82 0 0 1-1.291-.536L2.654 0 .091 2.568l1.586 1.583A5.422 5.422 0 0 0 5.476 5.7a5.412 5.412 0 0 0 2.7-.718A7.961 7.961 0 0 1 18.985 8.1l3.083-1.94a10.462 10.462 0 0 0-1.836-2.388ZM5 15.909l-.034-.062A8 8 0 0 1 8.084 5.015l-2.023-3.03C5.144 2.5 4.527 3 3.763 3.766a11.664 11.664 0 0 0-1.931 13.89 1.836 1.836 0 0 1-.3 2.193L0 21.384l2.562 2.568 1.579-1.589a5.477 5.477 0 0 0 .824-1.094A5.473 5.473 0 0 0 5 15.909Z" }) + ] + } + ); +}); + +exports.default = SiBastyon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.d.ts new file mode 100644 index 000000000..19de6c79a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A4FF"; +declare const SiBastyon: IconType; +export { SiBastyon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.mjs new file mode 100644 index 000000000..84cb4cd99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBastyon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A4FF"; +const SiBastyon = React.forwardRef(function SiBastyon2({ title = "Bastyon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.333 19.849a5.439 5.439 0 0 0-6.5-.829 7.914 7.914 0 0 1-3.837.987A8 8 0 0 1 5 15.91a5.473 5.473 0 0 1-.037 5.359 11.6 11.6 0 0 0 12.671.9 1.825 1.825 0 0 1 2.188.3L21.356 24l2.562-2.568Zm-2.096.404a11.664 11.664 0 0 0 1.931-13.89 1.836 1.836 0 0 1 .3-2.193L24 2.635 21.438.067l-1.58 1.589a5.471 5.471 0 0 0-.827 6.516A8 8 0 0 1 15.916 19l2.086 3c.917-.51 1.471-.981 2.235-1.747zm-.005-16.481A11.6 11.6 0 0 0 6.373 1.836a1.816 1.816 0 0 1-.9.235 1.82 1.82 0 0 1-1.291-.536L2.654 0 .091 2.568l1.586 1.583A5.422 5.422 0 0 0 5.476 5.7a5.412 5.412 0 0 0 2.7-.718A7.961 7.961 0 0 1 18.985 8.1l3.083-1.94a10.462 10.462 0 0 0-1.836-2.388ZM5 15.909l-.034-.062A8 8 0 0 1 8.084 5.015l-2.023-3.03C5.144 2.5 4.527 3 3.763 3.766a11.664 11.664 0 0 0-1.931 13.89 1.836 1.836 0 0 1-.3 2.193L0 21.384l2.562 2.568 1.579-1.589a5.477 5.477 0 0 0 .824-1.094A5.473 5.473 0 0 0 5 15.909Z" }) + ] + } + ); +}); + +export { SiBastyon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBat.cjs new file mode 100644 index 000000000..8e8903e70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#31369E"; +const SiBat = React__namespace.forwardRef(function SiBat2({ title = "bat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.3258 5.8712a.165.165 0 0 0-.0828.0227L.1628 10.6287a.3292.3292 0 0 0 0 .5682c.7296.4273 1.5858.9285 2.9645 1.736l.0003-.0002c.1766.1035.3639.2134.6667.3907.3059.1792 1.5546.9292 1.8978 1.1352a.172.172 0 0 0 .1758.0011l3.2446-1.892a.145.145 0 0 0 .072-.126.146.146 0 0 0-.0725-.1259c-.4119-.2378-1.2937-.7475-1.625-.9419l-.7927-.4647c.4232-.2457 1.222-.7063 1.5211-.8811a.558.558 0 0 0 .2767-.4819V6.0368a.1657.1657 0 0 0-.1663-.1656m7.3487 0a.1653.1653 0 0 0-.1664.1656v3.5094a.558.558 0 0 0 .2765.4819c.2955.1725 1.2455.7276 1.5145.8847l-3.1644 1.8562a.246.246 0 0 1-.3706-.212V8.2744a.19.19 0 0 0-.0917-.1626.19.19 0 0 0-.1863-.0063c-.1207.0626-1.0953.5325-1.5392.7464-.6352-.292-1.2494-.5767-1.4327-.672-.059-.0306-.126-.0214-.1865.0063-.0496.0228-.0915.0962-.0915.1627v4.208c0 .0883.0109.3806-.304.5623L6.638 15.0234l5.3628 3.1054s9.5549-5.5958 11.8364-6.9318a.3295.3295 0 0 0 0-.5682l-2.8146-1.6493.0003-.0002-.2142-.1252-.002-.0014-5.0493-2.9587a.165.165 0 0 0-.0827-.0227z" }) + ] + } + ); +}); + +exports.default = SiBat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBat.d.ts new file mode 100644 index 000000000..d7f6d2752 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#31369E"; +declare const SiBat: IconType; +export { SiBat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBat.mjs new file mode 100644 index 000000000..c8c0bf227 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#31369E"; +const SiBat = React.forwardRef(function SiBat2({ title = "bat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.3258 5.8712a.165.165 0 0 0-.0828.0227L.1628 10.6287a.3292.3292 0 0 0 0 .5682c.7296.4273 1.5858.9285 2.9645 1.736l.0003-.0002c.1766.1035.3639.2134.6667.3907.3059.1792 1.5546.9292 1.8978 1.1352a.172.172 0 0 0 .1758.0011l3.2446-1.892a.145.145 0 0 0 .072-.126.146.146 0 0 0-.0725-.1259c-.4119-.2378-1.2937-.7475-1.625-.9419l-.7927-.4647c.4232-.2457 1.222-.7063 1.5211-.8811a.558.558 0 0 0 .2767-.4819V6.0368a.1657.1657 0 0 0-.1663-.1656m7.3487 0a.1653.1653 0 0 0-.1664.1656v3.5094a.558.558 0 0 0 .2765.4819c.2955.1725 1.2455.7276 1.5145.8847l-3.1644 1.8562a.246.246 0 0 1-.3706-.212V8.2744a.19.19 0 0 0-.0917-.1626.19.19 0 0 0-.1863-.0063c-.1207.0626-1.0953.5325-1.5392.7464-.6352-.292-1.2494-.5767-1.4327-.672-.059-.0306-.126-.0214-.1865.0063-.0496.0228-.0915.0962-.0915.1627v4.208c0 .0883.0109.3806-.304.5623L6.638 15.0234l5.3628 3.1054s9.5549-5.5958 11.8364-6.9318a.3295.3295 0 0 0 0-.5682l-2.8146-1.6493.0003-.0002-.2142-.1252-.002-.0014-5.0493-2.9587a.165.165 0 0 0-.0827-.0227z" }) + ] + } + ); +}); + +export { SiBat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBata.cjs new file mode 100644 index 000000000..100423296 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD282E"; +const SiBata = React__namespace.forwardRef(function SiBata2({ title = "Bata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.397 13.003c.244-1.308 1.795-1.974 2.936-1.91.436.025.82.154 1.039.41.09-.09.18-.192.269-.282.051-.051.205-.038.346-.013.154.026.32.09.423.09.103 0 .36-.077.603-.115.243-.039.461-.026.423.064l-.218.538-.705 1.73c-.141.347.41.257 1.166-.55.129.09.193.102.321.423-.654.564-1.27.961-2.128 1.256-.77.27-1.346-.115-1.526-.756-1.102 1.025-2.628 1.013-3.064-.141-.718.359-1.564.73-1.923.833-.282.077-.526.141-.77.141-.384 0-.794-.346-.666-.872-.628.282-1.128.462-1.846.705-.77.27-1.218-.025-1.398-.666-1.102 1.025-2.628 1.013-3.064-.141-.436.205-1.025.513-1.577.73-.884.398-1.923.321-2.692-.487l.257-.397c.359.384.807.372 1.153.051.372-.333.603-.974.436-1.513-.077-.23-.333-.41-.833-.384l.154-.41c.5-.013.897-.09 1.115-.398.308-.449.308-1.128-.346-1.115a1.34 1.34 0 0 0-.41.077c-.116.333-.308.73-.475 1.14-.371.95-.782 2-1.256 2.68-.564.808-1.18.962-1.667.936-.512-.039-.91-.192-1.474-.692 0-.218.013-.308.064-.577.218.269.898.564 1.115.243.488-.718 1.026-2.102 1.436-3-.359.116-.705.346-1.18.68 0-.051-.153-.18-.153-.334.77-.884 2.115-1.423 3.026-1.615 1.397-.295 2.884.128 3.115 1.013.154.59-.538 1.14-1.192 1.218.372.218.769.602.872 1.077.05.23.038.487-.039.73.218-.102.487-.23.654-.307.27-1.885 3.192-2.487 3.987-1.59l.27-.282c.05-.051.204-.038.346-.013.153.026.32.09.423.09.102 0 .359-.077.602-.115.244-.039.462-.026.423.064l-.91 2.269c-.205.513 1.308-.398 1.397-.449l.654-1.384-.666.012.115-.564h.744c.128-.166.153-.359.32-.474.218-.167.718-.077.949-.23.205-.129.359-.321.538-.629.154-.256.744-.192.628.051l-.512 1.295h.653c.308.013.039.539-.307.539l-.539.012-.628 1.629c-.205.5.59.025 1.192-.32zm-6.012-1.115c-.077-.244-.282-.308-.475-.295-.436.051-.859.538-1.077.872-.346.538-.269 1.346.295 1.192.577-.154 1.36-1.41 1.257-1.77zm9.666 0c-.077-.244-.282-.308-.474-.295-.436.051-.86.538-1.077.872-.346.538-.27 1.346.295 1.192.577-.154 1.359-1.41 1.256-1.77Z" }) + ] + } + ); +}); + +exports.default = SiBata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBata.d.ts new file mode 100644 index 000000000..4fbe9d2be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD282E"; +declare const SiBata: IconType; +export { SiBata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBata.mjs new file mode 100644 index 000000000..663ea2844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD282E"; +const SiBata = React.forwardRef(function SiBata2({ title = "Bata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.397 13.003c.244-1.308 1.795-1.974 2.936-1.91.436.025.82.154 1.039.41.09-.09.18-.192.269-.282.051-.051.205-.038.346-.013.154.026.32.09.423.09.103 0 .36-.077.603-.115.243-.039.461-.026.423.064l-.218.538-.705 1.73c-.141.347.41.257 1.166-.55.129.09.193.102.321.423-.654.564-1.27.961-2.128 1.256-.77.27-1.346-.115-1.526-.756-1.102 1.025-2.628 1.013-3.064-.141-.718.359-1.564.73-1.923.833-.282.077-.526.141-.77.141-.384 0-.794-.346-.666-.872-.628.282-1.128.462-1.846.705-.77.27-1.218-.025-1.398-.666-1.102 1.025-2.628 1.013-3.064-.141-.436.205-1.025.513-1.577.73-.884.398-1.923.321-2.692-.487l.257-.397c.359.384.807.372 1.153.051.372-.333.603-.974.436-1.513-.077-.23-.333-.41-.833-.384l.154-.41c.5-.013.897-.09 1.115-.398.308-.449.308-1.128-.346-1.115a1.34 1.34 0 0 0-.41.077c-.116.333-.308.73-.475 1.14-.371.95-.782 2-1.256 2.68-.564.808-1.18.962-1.667.936-.512-.039-.91-.192-1.474-.692 0-.218.013-.308.064-.577.218.269.898.564 1.115.243.488-.718 1.026-2.102 1.436-3-.359.116-.705.346-1.18.68 0-.051-.153-.18-.153-.334.77-.884 2.115-1.423 3.026-1.615 1.397-.295 2.884.128 3.115 1.013.154.59-.538 1.14-1.192 1.218.372.218.769.602.872 1.077.05.23.038.487-.039.73.218-.102.487-.23.654-.307.27-1.885 3.192-2.487 3.987-1.59l.27-.282c.05-.051.204-.038.346-.013.153.026.32.09.423.09.102 0 .359-.077.602-.115.244-.039.462-.026.423.064l-.91 2.269c-.205.513 1.308-.398 1.397-.449l.654-1.384-.666.012.115-.564h.744c.128-.166.153-.359.32-.474.218-.167.718-.077.949-.23.205-.129.359-.321.538-.629.154-.256.744-.192.628.051l-.512 1.295h.653c.308.013.039.539-.307.539l-.539.012-.628 1.629c-.205.5.59.025 1.192-.32zm-6.012-1.115c-.077-.244-.282-.308-.475-.295-.436.051-.859.538-1.077.872-.346.538-.269 1.346.295 1.192.577-.154 1.36-1.41 1.257-1.77zm9.666 0c-.077-.244-.282-.308-.474-.295-.436.051-.86.538-1.077.872-.346.538-.27 1.346.295 1.192.577-.154 1.359-1.41 1.256-1.77Z" }) + ] + } + ); +}); + +export { SiBata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.cjs new file mode 100644 index 000000000..5656883a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4381C3"; +const SiBattledotnet = React__namespace.forwardRef(function SiBattledotnet2({ title = "Battle.net", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.94 8.296C15.9 6.892 11.534 6 7.426 6.332c.206-1.36.714-2.308 1.548-2.508 1.148-.275 2.4.48 3.594 1.854.782.102 1.71.28 2.355.429C12.747 2.013 9.828-.282 7.607.565c-1.688.644-2.553 2.97-2.448 6.094-2.2.468-3.915 1.3-5.013 2.495-.056.065-.181.227-.137.305.034.058.146-.008.194-.04 1.274-.89 2.904-1.373 5.027-1.676.303 3.333 1.713 7.56 4.055 10.952-1.28.502-2.356.536-2.946-.087-.812-.856-.784-2.318-.19-4.04a26.764 26.764 0 0 1-.807-2.254c-2.459 3.934-2.986 7.61-1.143 9.11 1.402 1.14 3.847.725 6.502-.926 1.505 1.672 3.083 2.74 4.667 3.094.084.015.287.043.332-.034.034-.06-.08-.124-.131-.149-1.408-.657-2.64-1.828-3.964-3.515 2.735-1.929 5.691-5.263 7.457-8.988 1.076.86 1.64 1.773 1.398 2.595-.336 1.131-1.615 1.84-3.403 2.185a27.697 27.697 0 0 1-1.548 1.826c4.634.16 8.08-1.22 8.458-3.565.286-1.786-1.295-3.696-4.053-5.17.696-2.139.832-4.04.346-5.588-.029-.08-.106-.27-.196-.27-.068 0-.067.13-.063.187.135 1.547-.263 3.2-1.062 5.19zm-8.533 9.869c-1.96-3.145-3.09-6.849-3.082-10.594 3.702-.124 7.474.748 10.714 2.627-1.743 3.269-4.385 6.1-7.633 7.966h.001z" }) + ] + } + ); +}); + +exports.default = SiBattledotnet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.d.ts new file mode 100644 index 000000000..4a4fa84f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4381C3"; +declare const SiBattledotnet: IconType; +export { SiBattledotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.mjs new file mode 100644 index 000000000..d6b821610 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBattledotnet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4381C3"; +const SiBattledotnet = React.forwardRef(function SiBattledotnet2({ title = "Battle.net", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.94 8.296C15.9 6.892 11.534 6 7.426 6.332c.206-1.36.714-2.308 1.548-2.508 1.148-.275 2.4.48 3.594 1.854.782.102 1.71.28 2.355.429C12.747 2.013 9.828-.282 7.607.565c-1.688.644-2.553 2.97-2.448 6.094-2.2.468-3.915 1.3-5.013 2.495-.056.065-.181.227-.137.305.034.058.146-.008.194-.04 1.274-.89 2.904-1.373 5.027-1.676.303 3.333 1.713 7.56 4.055 10.952-1.28.502-2.356.536-2.946-.087-.812-.856-.784-2.318-.19-4.04a26.764 26.764 0 0 1-.807-2.254c-2.459 3.934-2.986 7.61-1.143 9.11 1.402 1.14 3.847.725 6.502-.926 1.505 1.672 3.083 2.74 4.667 3.094.084.015.287.043.332-.034.034-.06-.08-.124-.131-.149-1.408-.657-2.64-1.828-3.964-3.515 2.735-1.929 5.691-5.263 7.457-8.988 1.076.86 1.64 1.773 1.398 2.595-.336 1.131-1.615 1.84-3.403 2.185a27.697 27.697 0 0 1-1.548 1.826c4.634.16 8.08-1.22 8.458-3.565.286-1.786-1.295-3.696-4.053-5.17.696-2.139.832-4.04.346-5.588-.029-.08-.106-.27-.196-.27-.068 0-.067.13-.063.187.135 1.547-.263 3.2-1.062 5.19zm-8.533 9.869c-1.96-3.145-3.09-6.849-3.082-10.594 3.702-.124 7.474.748 10.714 2.627-1.743 3.269-4.385 6.1-7.633 7.966h.001z" }) + ] + } + ); +}); + +export { SiBattledotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.cjs new file mode 100644 index 000000000..be79cb223 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#43A047"; +const SiBazel = React__namespace.forwardRef(function SiBazel2({ title = "Bazel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.7473 23.8198-5.4987-5.4987v-5.5349l5.4987 5.4986v5.535zm-.1036-17.6412-.0001-.0001.1768-.1768L5.9986.1799.1768 6.0018l.0001.0001 5.8217 5.8271 5.6451-5.6504zM0 6.5323v5.5347l5.7486 5.7539v-5.5347l-.1035-.1035.0001-.0001L0 6.5323zm17.6478 5.6504-5.6505-5.6505-5.6452 5.6504 5.6452 5.6453 5.6505-5.6452zm.1036 5.8885v-5.2853l-5.5042 5.4991v5.5351l5.5042-5.4991v-.2498zM24 6.5323l-5.6451 5.6503.0001.0001-.1036.1035v5.5346L24 12.067V6.5323zm-.1769-.5304.0001-.0001L18.0014.18l-5.8273 5.822 5.8273 5.8272 5.8217-5.8273z" }) + ] + } + ); +}); + +exports.default = SiBazel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.d.ts new file mode 100644 index 000000000..b51747e0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#43A047"; +declare const SiBazel: IconType; +export { SiBazel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.mjs new file mode 100644 index 000000000..bb461de78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBazel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#43A047"; +const SiBazel = React.forwardRef(function SiBazel2({ title = "Bazel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.7473 23.8198-5.4987-5.4987v-5.5349l5.4987 5.4986v5.535zm-.1036-17.6412-.0001-.0001.1768-.1768L5.9986.1799.1768 6.0018l.0001.0001 5.8217 5.8271 5.6451-5.6504zM0 6.5323v5.5347l5.7486 5.7539v-5.5347l-.1035-.1035.0001-.0001L0 6.5323zm17.6478 5.6504-5.6505-5.6505-5.6452 5.6504 5.6452 5.6453 5.6505-5.6452zm.1036 5.8885v-5.2853l-5.5042 5.4991v5.5351l5.5042-5.4991v-.2498zM24 6.5323l-5.6451 5.6503.0001.0001-.1036.1035v5.5346L24 12.067V6.5323zm-.1769-.5304.0001-.0001L18.0014.18l-5.8273 5.822 5.8273 5.8272 5.8217-5.8273z" }) + ] + } + ); +}); + +export { SiBazel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.cjs new file mode 100644 index 000000000..d17df45d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#01FF95"; +const SiBeatport = React__namespace.forwardRef(function SiBeatport2({ title = "Beatport", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.429 17.055a7.114 7.114 0 0 1-.794 3.246 6.917 6.917 0 0 1-2.181 2.492 6.698 6.698 0 0 1-3.063 1.163 6.653 6.653 0 0 1-3.239-.434 6.796 6.796 0 0 1-2.668-1.932 7.03 7.03 0 0 1-1.481-2.983 7.124 7.124 0 0 1 .049-3.345 7.015 7.015 0 0 1 1.566-2.937l-4.626 4.73-2.421-2.479 5.201-5.265a3.791 3.791 0 0 0 1.066-2.675V0h3.41v6.613a7.172 7.172 0 0 1-.519 2.794 7.02 7.02 0 0 1-1.559 2.353l-.153.156a6.768 6.768 0 0 1 3.49-1.725 6.687 6.687 0 0 1 3.845.5 6.873 6.873 0 0 1 2.959 2.564 7.118 7.118 0 0 1 1.118 3.8Zm-3.089 0a3.89 3.89 0 0 0-.611-2.133 3.752 3.752 0 0 0-1.666-1.424 3.65 3.65 0 0 0-2.158-.233 3.704 3.704 0 0 0-1.92 1.037 3.852 3.852 0 0 0-1.031 1.955 3.908 3.908 0 0 0 .205 2.213c.282.7.76 1.299 1.374 1.721a3.672 3.672 0 0 0 2.076.647 3.637 3.637 0 0 0 2.635-1.096c.347-.351.622-.77.81-1.231.188-.461.285-.956.286-1.456Z" }) + ] + } + ); +}); + +exports.default = SiBeatport; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.d.ts new file mode 100644 index 000000000..334d41955 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#01FF95"; +declare const SiBeatport: IconType; +export { SiBeatport as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.mjs new file mode 100644 index 000000000..3e510c545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatport.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#01FF95"; +const SiBeatport = React.forwardRef(function SiBeatport2({ title = "Beatport", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.429 17.055a7.114 7.114 0 0 1-.794 3.246 6.917 6.917 0 0 1-2.181 2.492 6.698 6.698 0 0 1-3.063 1.163 6.653 6.653 0 0 1-3.239-.434 6.796 6.796 0 0 1-2.668-1.932 7.03 7.03 0 0 1-1.481-2.983 7.124 7.124 0 0 1 .049-3.345 7.015 7.015 0 0 1 1.566-2.937l-4.626 4.73-2.421-2.479 5.201-5.265a3.791 3.791 0 0 0 1.066-2.675V0h3.41v6.613a7.172 7.172 0 0 1-.519 2.794 7.02 7.02 0 0 1-1.559 2.353l-.153.156a6.768 6.768 0 0 1 3.49-1.725 6.687 6.687 0 0 1 3.845.5 6.873 6.873 0 0 1 2.959 2.564 7.118 7.118 0 0 1 1.118 3.8Zm-3.089 0a3.89 3.89 0 0 0-.611-2.133 3.752 3.752 0 0 0-1.666-1.424 3.65 3.65 0 0 0-2.158-.233 3.704 3.704 0 0 0-1.92 1.037 3.852 3.852 0 0 0-1.031 1.955 3.908 3.908 0 0 0 .205 2.213c.282.7.76 1.299 1.374 1.721a3.672 3.672 0 0 0 2.076.647 3.637 3.637 0 0 0 2.635-1.096c.347-.351.622-.77.81-1.231.188-.461.285-.956.286-1.456Z" }) + ] + } + ); +}); + +export { SiBeatport as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.cjs new file mode 100644 index 000000000..354409791 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiBeats = React__namespace.forwardRef(function SiBeats2({ title = "Beats", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.625 0v15h8.25a7.5 7.5 0 0 0 0-15zm17.016 11.705c-1.571 3.261-4.91 5.517-8.766 5.517h-8.25V24h11.25a7.5 7.5 0 0 0 5.766-12.295z" }) + ] + } + ); +}); + +exports.default = SiBeats; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.d.ts new file mode 100644 index 000000000..5f34d533b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiBeats: IconType; +export { SiBeats as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.mjs new file mode 100644 index 000000000..fd4bec413 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeats.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiBeats = React.forwardRef(function SiBeats2({ title = "Beats", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.625 0v15h8.25a7.5 7.5 0 0 0 0-15zm17.016 11.705c-1.571 3.261-4.91 5.517-8.766 5.517h-8.25V24h11.25a7.5 7.5 0 0 0 5.766-12.295z" }) + ] + } + ); +}); + +export { SiBeats as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.cjs new file mode 100644 index 000000000..401a20087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E01F3D"; +const SiBeatsbydre = React__namespace.forwardRef(function SiBeatsbydre2({ title = "Beats by Dre", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0099 15.5996A3.5995 3.5995 0 1 0 8.4103 12a3.5995 3.5995 0 0 0 3.5996 3.5996zm0-15.5981a11.9985 11.9985 0 0 0-3.5996.552v6.6471A5.9992 5.9992 0 1 1 6.0106 12V1.6033A11.9985 11.9985 0 1 0 12.01.0015z" }) + ] + } + ); +}); + +exports.default = SiBeatsbydre; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.d.ts new file mode 100644 index 000000000..b0d17ef8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E01F3D"; +declare const SiBeatsbydre: IconType; +export { SiBeatsbydre as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.mjs new file mode 100644 index 000000000..ec338dac6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatsbydre.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E01F3D"; +const SiBeatsbydre = React.forwardRef(function SiBeatsbydre2({ title = "Beats by Dre", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0099 15.5996A3.5995 3.5995 0 1 0 8.4103 12a3.5995 3.5995 0 0 0 3.5996 3.5996zm0-15.5981a11.9985 11.9985 0 0 0-3.5996.552v6.6471A5.9992 5.9992 0 1 1 6.0106 12V1.6033A11.9985 11.9985 0 1 0 12.01.0015z" }) + ] + } + ); +}); + +export { SiBeatsbydre as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.cjs new file mode 100644 index 000000000..db63816fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB0000"; +const SiBeatstars = React__namespace.forwardRef(function SiBeatstars2({ title = "BeatStars", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.217 11.996-3.308 1.079v3.478l-2.052-2.818-3.309 1.079 2.043-2.818-2.043-2.819 3.31 1.08 2.05-2.819v3.487zm0 0v7.277H6.854V4.584h10.363v7.412l4.585-1.49v-7.67L19.135 0H2.198v24h16.92l2.684-2.685v-7.83z" }) + ] + } + ); +}); + +exports.default = SiBeatstars; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.d.ts new file mode 100644 index 000000000..0c8ff08ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB0000"; +declare const SiBeatstars: IconType; +export { SiBeatstars as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.mjs new file mode 100644 index 000000000..1e1c42ede --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeatstars.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB0000"; +const SiBeatstars = React.forwardRef(function SiBeatstars2({ title = "BeatStars", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.217 11.996-3.308 1.079v3.478l-2.052-2.818-3.309 1.079 2.043-2.818-2.043-2.819 3.31 1.08 2.05-2.819v3.487zm0 0v7.277H6.854V4.584h10.363v7.412l4.585-1.49v-7.67L19.135 0H2.198v24h16.92l2.684-2.685v-7.83z" }) + ] + } + ); +}); + +export { SiBeatstars as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.cjs new file mode 100644 index 000000000..394171de5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAD83B"; +const SiBeekeeperstudio = React__namespace.forwardRef(function SiBeekeeperstudio2({ title = "Beekeeper Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.0092 4.6236 13.8544.5046c-1.1652-.6728-2.5929-.6728-3.7416 0L8.242 1.5877v10.4205c0 1.3292.7057 2.5764 1.8708 3.2492.5744.3282 1.2308.5088 1.8708.5088s1.2964-.1641 1.8708-.5088c1.165-.6728 1.8707-1.9036 1.8707-3.2492 0-1.3292-.7056-2.5764-1.8707-3.2492-.5744-.3282-1.2308-.5087-1.8708-.5087V5.9036c.64 0 1.2964.164 1.8708.5087l2.0348 1.1815c1.1652.6729 1.8708 1.9036 1.8708 3.2493v2.3466c0 1.3293-.7056 2.5765-1.8708 3.2493l-2.0348 1.1815c-.5744.3282-1.2308.5087-1.8708.5087s-1.2964-.164-1.8708-.5087L8.078 16.439c-1.165-.6728-1.8707-1.9036-1.8707-3.2492V2.7528L2.9744 4.6236c-1.1652.6728-1.8708 1.9036-1.8708 3.2492v8.2544c0 1.3292.7056 2.5764 1.8708 3.2492l7.1548 4.119c1.1652.6728 2.5928.6728 3.7416 0l7.1548-4.119c1.1652-.6728 1.8708-1.9036 1.8708-3.2492V7.8728a3.8203 3.8203 0 0 0-1.8872-3.2492ZM9.6862 9.0544c-.2134.164-.3939.3446-.558.5415V6.9703l.558-.3283v2.4124Zm1.4276-.6893c-.1969.0493-.3774.0985-.5579.1805v-2.363c.1805-.082.3774-.1313.558-.1805v2.363Z" }) + ] + } + ); +}); + +exports.default = SiBeekeeperstudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.d.ts new file mode 100644 index 000000000..c6da2e0fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAD83B"; +declare const SiBeekeeperstudio: IconType; +export { SiBeekeeperstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.mjs new file mode 100644 index 000000000..5807e7e64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeekeeperstudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAD83B"; +const SiBeekeeperstudio = React.forwardRef(function SiBeekeeperstudio2({ title = "Beekeeper Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.0092 4.6236 13.8544.5046c-1.1652-.6728-2.5929-.6728-3.7416 0L8.242 1.5877v10.4205c0 1.3292.7057 2.5764 1.8708 3.2492.5744.3282 1.2308.5088 1.8708.5088s1.2964-.1641 1.8708-.5088c1.165-.6728 1.8707-1.9036 1.8707-3.2492 0-1.3292-.7056-2.5764-1.8707-3.2492-.5744-.3282-1.2308-.5087-1.8708-.5087V5.9036c.64 0 1.2964.164 1.8708.5087l2.0348 1.1815c1.1652.6729 1.8708 1.9036 1.8708 3.2493v2.3466c0 1.3293-.7056 2.5765-1.8708 3.2493l-2.0348 1.1815c-.5744.3282-1.2308.5087-1.8708.5087s-1.2964-.164-1.8708-.5087L8.078 16.439c-1.165-.6728-1.8707-1.9036-1.8707-3.2492V2.7528L2.9744 4.6236c-1.1652.6728-1.8708 1.9036-1.8708 3.2492v8.2544c0 1.3292.7056 2.5764 1.8708 3.2492l7.1548 4.119c1.1652.6728 2.5928.6728 3.7416 0l7.1548-4.119c1.1652-.6728 1.8708-1.9036 1.8708-3.2492V7.8728a3.8203 3.8203 0 0 0-1.8872-3.2492ZM9.6862 9.0544c-.2134.164-.3939.3446-.558.5415V6.9703l.558-.3283v2.4124Zm1.4276-.6893c-.1969.0493-.3774.0985-.5579.1805v-2.363c.1805-.082.3774-.1313.558-.1805v2.363Z" }) + ] + } + ); +}); + +export { SiBeekeeperstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.cjs new file mode 100644 index 000000000..538849ca3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1769FF"; +const SiBehance = React__namespace.forwardRef(function SiBehance2({ title = "Behance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.969 16.927a2.561 2.561 0 0 0 1.901.677 2.501 2.501 0 0 0 1.531-.475c.362-.235.636-.584.779-.99h2.585a5.091 5.091 0 0 1-1.9 2.896 5.292 5.292 0 0 1-3.091.88 5.839 5.839 0 0 1-2.284-.433 4.871 4.871 0 0 1-1.723-1.211 5.657 5.657 0 0 1-1.08-1.874 7.057 7.057 0 0 1-.383-2.393c-.005-.8.129-1.595.396-2.349a5.313 5.313 0 0 1 5.088-3.604 4.87 4.87 0 0 1 2.376.563c.661.362 1.231.87 1.668 1.485a6.2 6.2 0 0 1 .943 2.133c.194.821.263 1.666.205 2.508h-7.699c-.063.79.184 1.574.688 2.187ZM6.947 4.084a8.065 8.065 0 0 1 1.928.198 4.29 4.29 0 0 1 1.49.638c.418.303.748.711.958 1.182.241.579.357 1.203.341 1.83a3.506 3.506 0 0 1-.506 1.961 3.726 3.726 0 0 1-1.503 1.287 3.588 3.588 0 0 1 2.027 1.437c.464.747.697 1.615.67 2.494a4.593 4.593 0 0 1-.423 2.032 3.945 3.945 0 0 1-1.163 1.413 5.114 5.114 0 0 1-1.683.807 7.135 7.135 0 0 1-1.928.259H0V4.084h6.947Zm-.235 12.9c.308.004.616-.029.916-.099a2.18 2.18 0 0 0 .766-.332c.228-.158.411-.371.534-.619.142-.317.208-.663.191-1.009a2.08 2.08 0 0 0-.642-1.715 2.618 2.618 0 0 0-1.696-.505h-3.54v4.279h3.471Zm13.635-5.967a2.13 2.13 0 0 0-1.654-.619 2.336 2.336 0 0 0-1.163.259 2.474 2.474 0 0 0-.738.62 2.359 2.359 0 0 0-.396.792c-.074.239-.12.485-.137.734h4.769a3.239 3.239 0 0 0-.679-1.785l-.002-.001Zm-13.813-.648a2.254 2.254 0 0 0 1.423-.433c.399-.355.607-.88.56-1.413a1.916 1.916 0 0 0-.178-.891 1.298 1.298 0 0 0-.495-.533 1.851 1.851 0 0 0-.711-.274 3.966 3.966 0 0 0-.835-.073H3.241v3.631h3.293v-.014ZM21.62 5.122h-5.976v1.527h5.976V5.122Z" }) + ] + } + ); +}); + +exports.default = SiBehance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.d.ts new file mode 100644 index 000000000..4ff9dc3c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1769FF"; +declare const SiBehance: IconType; +export { SiBehance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.mjs new file mode 100644 index 000000000..6320cb6c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBehance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1769FF"; +const SiBehance = React.forwardRef(function SiBehance2({ title = "Behance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.969 16.927a2.561 2.561 0 0 0 1.901.677 2.501 2.501 0 0 0 1.531-.475c.362-.235.636-.584.779-.99h2.585a5.091 5.091 0 0 1-1.9 2.896 5.292 5.292 0 0 1-3.091.88 5.839 5.839 0 0 1-2.284-.433 4.871 4.871 0 0 1-1.723-1.211 5.657 5.657 0 0 1-1.08-1.874 7.057 7.057 0 0 1-.383-2.393c-.005-.8.129-1.595.396-2.349a5.313 5.313 0 0 1 5.088-3.604 4.87 4.87 0 0 1 2.376.563c.661.362 1.231.87 1.668 1.485a6.2 6.2 0 0 1 .943 2.133c.194.821.263 1.666.205 2.508h-7.699c-.063.79.184 1.574.688 2.187ZM6.947 4.084a8.065 8.065 0 0 1 1.928.198 4.29 4.29 0 0 1 1.49.638c.418.303.748.711.958 1.182.241.579.357 1.203.341 1.83a3.506 3.506 0 0 1-.506 1.961 3.726 3.726 0 0 1-1.503 1.287 3.588 3.588 0 0 1 2.027 1.437c.464.747.697 1.615.67 2.494a4.593 4.593 0 0 1-.423 2.032 3.945 3.945 0 0 1-1.163 1.413 5.114 5.114 0 0 1-1.683.807 7.135 7.135 0 0 1-1.928.259H0V4.084h6.947Zm-.235 12.9c.308.004.616-.029.916-.099a2.18 2.18 0 0 0 .766-.332c.228-.158.411-.371.534-.619.142-.317.208-.663.191-1.009a2.08 2.08 0 0 0-.642-1.715 2.618 2.618 0 0 0-1.696-.505h-3.54v4.279h3.471Zm13.635-5.967a2.13 2.13 0 0 0-1.654-.619 2.336 2.336 0 0 0-1.163.259 2.474 2.474 0 0 0-.738.62 2.359 2.359 0 0 0-.396.792c-.074.239-.12.485-.137.734h4.769a3.239 3.239 0 0 0-.679-1.785l-.002-.001Zm-13.813-.648a2.254 2.254 0 0 0 1.423-.433c.399-.355.607-.88.56-1.413a1.916 1.916 0 0 0-.178-.891 1.298 1.298 0 0 0-.495-.533 1.851 1.851 0 0 0-.711-.274 3.966 3.966 0 0 0-.835-.073H3.241v3.631h3.293v-.014ZM21.62 5.122h-5.976v1.527h5.976V5.122Z" }) + ] + } + ); +}); + +export { SiBehance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.cjs new file mode 100644 index 000000000..2981c13bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004A9D"; +const SiBeijingsubway = React__namespace.forwardRef(function SiBeijingsubway2({ title = "Beijing Subway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.729 23.936c-2.182-.257-4.152-1.048-5.948-2.389-.586-.437-1.636-1.465-2.11-2.064-1.11-1.404-1.854-2.957-2.313-4.828-.303-1.232-.41-2.309-.335-3.35.069-.955.409-2.437.811-3.536.371-1.014 1.151-2.382 1.864-3.269a15.51 15.51 0 0 1 1.55-1.593C6.625.878 9.607-.14 12.69.026 15.358.17 17.738 1.1 19.738 2.78c1.904 1.6 3.36 3.801 3.883 5.869.067.263.113.486.104.495-.009.009-.636.022-1.392.03l-1.375.014-.132-.342c-.674-1.738-2.194-3.564-3.948-4.743-.806-.541-1.555-.874-2.296-1.021-2.136-.424-4.15-.276-5.829.428C6.21 4.576 4.078 6.948 3.317 9.559c-.222.761-.274 1.185-.273 2.199.002 1.29.139 2.128.549 3.365.497 1.499 1.083 2.438 2.198 3.525 1.249 1.216 2.839 2.146 4.121 2.407 1.463.299 3.868.029 5.887-.662 1.911-.654 3.511-2.086 4.6-4.116.21-.391.681-1.508.682-1.615 0-.045-.076-.05-.437-.03-.241.014-1.02.025-1.731.025h-1.294l-.017.088c-.01.048-.047.245-.082.438-.103.558-.273 1.029-.615 1.705l-.319.63-9.514.02V6.445h9.488l.203.316c.591.922.914 2.116 1.049 3.885.022.288.04.713.04.944v.42H24v.247c0 .372-.105 1.39-.195 1.887-.529 2.932-1.96 5.434-4.086 7.148-1.853 1.493-3.982 2.387-6.306 2.647-.648.072-2.063.07-2.684-.003zm3.64-8.802c.163-.171.404-.539.537-.82.112-.235.123-.295.123-.632 0-.36-.006-.384-.164-.701-.091-.18-.26-.44-.378-.577l-.214-.25.125-.153c.238-.291.308-.401.459-.711.369-.76.232-1.527-.382-2.131l-.187-.184-2.305-.025-2.306-.026.01 3.13.01 3.129 2.277.02c1.252.011 2.28.024 2.285.029s.054-.039.11-.098z" }) + ] + } + ); +}); + +exports.default = SiBeijingsubway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.d.ts new file mode 100644 index 000000000..f23dbad34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004A9D"; +declare const SiBeijingsubway: IconType; +export { SiBeijingsubway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.mjs new file mode 100644 index 000000000..982af272e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBeijingsubway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004A9D"; +const SiBeijingsubway = React.forwardRef(function SiBeijingsubway2({ title = "Beijing Subway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.729 23.936c-2.182-.257-4.152-1.048-5.948-2.389-.586-.437-1.636-1.465-2.11-2.064-1.11-1.404-1.854-2.957-2.313-4.828-.303-1.232-.41-2.309-.335-3.35.069-.955.409-2.437.811-3.536.371-1.014 1.151-2.382 1.864-3.269a15.51 15.51 0 0 1 1.55-1.593C6.625.878 9.607-.14 12.69.026 15.358.17 17.738 1.1 19.738 2.78c1.904 1.6 3.36 3.801 3.883 5.869.067.263.113.486.104.495-.009.009-.636.022-1.392.03l-1.375.014-.132-.342c-.674-1.738-2.194-3.564-3.948-4.743-.806-.541-1.555-.874-2.296-1.021-2.136-.424-4.15-.276-5.829.428C6.21 4.576 4.078 6.948 3.317 9.559c-.222.761-.274 1.185-.273 2.199.002 1.29.139 2.128.549 3.365.497 1.499 1.083 2.438 2.198 3.525 1.249 1.216 2.839 2.146 4.121 2.407 1.463.299 3.868.029 5.887-.662 1.911-.654 3.511-2.086 4.6-4.116.21-.391.681-1.508.682-1.615 0-.045-.076-.05-.437-.03-.241.014-1.02.025-1.731.025h-1.294l-.017.088c-.01.048-.047.245-.082.438-.103.558-.273 1.029-.615 1.705l-.319.63-9.514.02V6.445h9.488l.203.316c.591.922.914 2.116 1.049 3.885.022.288.04.713.04.944v.42H24v.247c0 .372-.105 1.39-.195 1.887-.529 2.932-1.96 5.434-4.086 7.148-1.853 1.493-3.982 2.387-6.306 2.647-.648.072-2.063.07-2.684-.003zm3.64-8.802c.163-.171.404-.539.537-.82.112-.235.123-.295.123-.632 0-.36-.006-.384-.164-.701-.091-.18-.26-.44-.378-.577l-.214-.25.125-.153c.238-.291.308-.401.459-.711.369-.76.232-1.527-.382-2.131l-.187-.184-2.305-.025-2.306-.026.01 3.13.01 3.129 2.277.02c1.252.011 2.28.024 2.285.029s.054-.039.11-.098z" }) + ] + } + ); +}); + +export { SiBeijingsubway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBem.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBem.cjs new file mode 100644 index 000000000..a9e6e8740 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBem.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBem = React__namespace.forwardRef(function SiBem2({ title = "BEM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 5.163h5.61v1.65H0Zm0-3.065h5.61v1.65H0Zm10.067 6.106H0v1.65h9.69c1.06 0 3.536.024 4.455 1.51v-.92c-.448-1.462-1.768-2.24-4.078-2.24Zm.023 3.065H0v1.65h9.69c2.357 0 3.842.095 4.455.425v-.731c-.471-1.155-2.451-1.344-4.055-1.344Zm-.023 7.78H0V17.4h9.69c1.06 0 3.536-.024 4.455-1.509v.92c-.448 1.461-1.768 2.24-4.078 2.24zm.023-3.065H0v-1.65h9.69c2.357 0 3.842-.094 4.455-.424v.73c-.471 1.156-2.451 1.344-4.055 1.344zm6.507 5.918H24v-1.014h-7.19c-.637 0-2.146-.023-2.688-.896v.566c.26.872 1.06 1.344 2.475 1.344zm-.023-1.863h7.403v-1.013H16.81c-1.439 0-2.334-.047-2.688-.26v.448c.283.708 1.485.825 2.452.825z" }) + ] + } + ); +}); + +exports.default = SiBem; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBem.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBem.d.ts new file mode 100644 index 000000000..b187dee96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBem.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBem: IconType; +export { SiBem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBem.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBem.mjs new file mode 100644 index 000000000..d5e74637b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBem.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBem = React.forwardRef(function SiBem2({ title = "BEM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 5.163h5.61v1.65H0Zm0-3.065h5.61v1.65H0Zm10.067 6.106H0v1.65h9.69c1.06 0 3.536.024 4.455 1.51v-.92c-.448-1.462-1.768-2.24-4.078-2.24Zm.023 3.065H0v1.65h9.69c2.357 0 3.842.095 4.455.425v-.731c-.471-1.155-2.451-1.344-4.055-1.344Zm-.023 7.78H0V17.4h9.69c1.06 0 3.536-.024 4.455-1.509v.92c-.448 1.461-1.768 2.24-4.078 2.24zm.023-3.065H0v-1.65h9.69c2.357 0 3.842-.094 4.455-.424v.73c-.471 1.156-2.451 1.344-4.055 1.344zm6.507 5.918H24v-1.014h-7.19c-.637 0-2.146-.023-2.688-.896v.566c.26.872 1.06 1.344 2.475 1.344zm-.023-1.863h7.403v-1.013H16.81c-1.439 0-2.334-.047-2.688-.26v.448c.283.708 1.485.825 2.452.825z" }) + ] + } + ); +}); + +export { SiBem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.cjs new file mode 100644 index 000000000..fd2bcfeea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiBentley = React__namespace.forwardRef(function SiBentley2({ title = "Bentley", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.535 8.114a5.407 5.407 0 0 0-1.49.34c-.131.05-.269.135-.414.079-.654-.153-1.331-.096-1.992-.025-.859.09-1.72-.003-2.579-.045a21.543 21.543 0 0 0-2.349.05c-.713.044-1.429-.01-2.138-.086-.088-.002-.178-.02-.265-.002-.135.088-.22.232-.308.363v.068c.185.158.404.262.625.358-.062.151-.101.31-.13.47.264.124.54.227.796.368-.029.095-.072.186-.083.285-.006.059.024.121.083.142.21.11.448.142.665.23.021.01.05.02.05.048.017.128.02.258.047.385a.173.173 0 0 0 .057.035c.287.095.588.131.881.196.034.11.022.249.106.336.375.196.82.1 1.213.228.098.096.075.29.223.344.296.09.614.01.918.05.069.079.077.193.144.273a.249.249 0 0 0 .169.076c.287.008.562-.087.846-.12.059.099.087.247.213.277.229.045.452-.042.665-.116.08.26.166.521.303.758.473.858 1.288 1.499 2.198 1.841.128.036.172.175.238.276.127-.048.252-.102.384-.134l.2.297c.119-.06.237-.122.356-.184.08.094.16.187.242.28l.31-.22c.09.078.173.164.254.251h.035c.096-.085.187-.177.282-.263.106.077.21.156.316.235.081-.095.163-.19.246-.284.12.06.238.123.357.184.063-.098.124-.196.185-.295.14.031.27.089.404.136.033-.068.065-.138.102-.204.053-.142.22-.164.336-.232.972-.447 1.78-1.286 2.099-2.318.162.06.345.134.517.064.09-.046.125-.144.168-.228.24.053.48.154.73.102.13-.039.194-.161.253-.271.23.03.456.095.69.075.104-.013.247 0 .318-.096.059-.096.067-.215.124-.312.315-.042.648.042.954-.072.096-.108.097-.27.184-.383.247-.018.495 0 .742-.018a.286.286 0 0 0 .215-.123c.056-.107.064-.23.1-.344.007-.024.02-.05.044-.061.241-.1.534-.022.755-.177.108-.12.021-.31.088-.443.207-.118.477-.088.669-.241.129-.11.032-.282.014-.42.225-.077.472-.119.657-.279-.052-.14-.113-.275-.17-.412A4.67 4.67 0 0 0 24 8.871v-.087a1.176 1.176 0 0 0-.272-.34c-.071-.053-.17-.01-.25-.018-.696.062-1.396.13-2.095.092-.417-.022-.833-.062-1.25-.062-.522 0-1.044-.015-1.564.027-.77.046-1.544.103-2.313.017-.657-.077-1.335-.115-1.981.053-.103.043-.211.009-.305-.037-.516-.234-1.077-.348-1.638-.402zm.521.155c.327.014.654.049.974.122.31.072.622.149.91.287-.103.065-.227.164-.354.11a5.088 5.088 0 0 0-1.716-.29c-.326.02-.652.046-.97.125-.204.04-.4.116-.606.149-.096-.026-.184-.073-.272-.119a5.653 5.653 0 0 1 2.034-.384zm11.467.278c.17-.01.308.126.395.26a2.31 2.31 0 0 1-1.093.252c-1.65.027-3.298.095-4.947.137 0 .027.002.054.004.081a2.744 2.744 0 0 1-.048-.154c.361-.05.72-.12 1.085-.142.668-.05 1.34-.068 2.01-.075a.394.394 0 0 0 .245-.072c-.533-.057-1.07-.026-1.604-.013-.371.027-.744.033-1.114.08-.495.06-.989.154-1.489.16-.312.005-.625.032-.937.01-.39-.007-.786-.042-1.17.045-.108.035-.239.073-.282.192-.093.188.01.398.095.569.103.217.279.425.247.682-.015.091-.092.151-.162.203a2.4 2.4 0 0 1-.198-.251c.04-.08.106-.155.088-.252-.033-.2-.178-.358-.314-.498-.196-.19-.414-.367-.547-.61-.039-.07-.066-.17.009-.227.22-.156.491-.209.752-.252.715-.1 1.436-.015 2.153.015.353.035.709.03 1.063 0 .838-.054 1.68-.138 2.52-.082.378.021.757.038 1.135.047.692.028 1.38-.062 2.07-.101a.308.308 0 0 1 .034-.004zM.55 8.55c.196-.002.392.027.587.04.542.048 1.086.079 1.63.056.674-.008 1.345-.088 2.019-.052.687.022 1.37.098 2.058.119.525-.018 1.049-.06 1.574-.084.533-.017 1.087-.011 1.59.187.097.04.217.093.24.207-.02.158-.14.28-.238.399-.175.216-.429.36-.57.605-.11.14-.126.35-.005.488a1.808 1.808 0 0 1-.219.243c-.083-.076-.16-.17-.15-.292.038-.346.347-.593.383-.94.031-.121-.031-.239-.108-.327a1.155 1.155 0 0 0-.468-.124c-.562-.048-1.126.027-1.689-.007-.557.004-1.107-.093-1.657-.167a26.874 26.874 0 0 0-2.115-.106c-.195-.003-.39.015-.585.032.063.052.14.087.225.078.733.01 1.466.022 2.197.085.307.029.61.084.916.131l-.023.084c-.536-.033-1.074-.028-1.611-.05-.965-.035-1.93-.065-2.895-.081-.411-.027-.841.017-1.234-.134-.11-.037-.213-.088-.317-.136.076-.093.153-.199.27-.24.065-.01.13-.014.195-.014zm11.455.114a4.324 4.324 0 0 1 1.597.296c.004.104-.029.218.024.313a1.245 1.245 0 0 0 .16.229c.18.212.41.383.588.597a.716.716 0 0 1 .157.272 3.76 3.76 0 0 0-1.267-.755 3.848 3.848 0 0 0-3.158.28c-.174.098-.332.22-.486.348l-.152.128a.502.502 0 0 1 .06-.147c.223-.315.556-.533.781-.846.11-.133.1-.31.083-.47a5.558 5.558 0 0 1 1.613-.245zm5.762.455c.016.044.03.088.044.132-.313.18-.688.135-1.032.09-.078-.007-.124-.074-.155-.139.38-.041.763-.038 1.143-.083zm-11.55.016c.386.006.771.025 1.154.064-.03.051-.054.124-.122.132-.203.035-.41.041-.614.049-.158.01-.303-.062-.44-.129l.023-.116zm1.207.055c.154.003.309.005.463.014.41.017.831-.016 1.23.105.099.034.208.08.259.178.039.172-.06.325-.144.464-.083.151-.197.293-.235.464-.048.16.05.294.124.423-.112.004-.25.051-.338-.04-.041-.082.007-.179.024-.263l-.16.143-.195-.012c-.015-.203.141-.35.221-.521-.138.123-.278.297-.483.281-.081.003-.143-.104-.093-.169.111-.141.255-.254.359-.402-.124.096-.25.195-.397.251a.464.464 0 0 1-.326-.038c.018-.204.234-.276.35-.417-.127.053-.24.154-.387.145-.058.002-.115-.016-.17-.029-.01-.173.171-.234.273-.337-.09.02-.177.062-.27.06-.062-.022-.11-.072-.164-.108.015-.066.035-.13.06-.192zm9.156 0c.018.078.087.178-.005.237-.1.125-.268.022-.39-.002.112.096.285.167.284.343-.096.017-.2.05-.295.01-.088-.036-.173-.081-.259-.122.027.027.055.053.084.078l.087.076c.057.051.113.104.16.164.016.068-.033.14-.106.139-.233.059-.415-.127-.584-.254.089.121.195.226.297.335.051.054.046.135.064.203-.084.011-.174.044-.256.008-.128-.052-.225-.155-.33-.243.091.16.23.305.216.502l-.208.008a10.001 10.001 0 0 1-.137-.132c.008.082.06.176.007.25-.062.07-.158.065-.246.063-.03 0-.059 0-.086.003.047-.119.14-.222.137-.356-.036-.35-.358-.587-.406-.932-.01-.149.154-.218.273-.261.554-.145 1.133-.073 1.7-.117zM.698 9.192c.77 0 1.54.04 2.31.047.963.021 1.926.028 2.888.053.2-.014.365.116.53.207l-.018.19a5.46 5.46 0 0 1-.089.043l.026-.073c-.899.024-1.796.085-2.695.112-.566.012-1.13.06-1.697.05A3.707 3.707 0 0 1 .89 9.705c-.115-.034-.247-.052-.338-.137-.001-.135.073-.264.145-.376zm22.62.022c.064.111.132.222.179.342-.43.14-.89.133-1.336.116-.828-.002-1.656-.055-2.484-.083-.699-.032-1.398-.06-2.097-.1.143-.102.305-.202.486-.196 1.751-.007 3.501-.078 5.252-.08zm-16.073.214c.077.005.136.074.194.12a.138.138 0 0 1 .05.116c-.078.06-.181.068-.273.092-.186.034-.37.09-.56.097-.067-.026-.14-.055-.185-.116-.016-.084.01-.2.104-.222.21-.042.425-.054.636-.085a.139.139 0 0 1 .034-.002zm9.465.008c.235 0 .47.03.7.073.109.021.106.15.134.234-.09.05-.177.13-.29.107-.163-.025-.323-.066-.485-.096-.087-.022-.187-.029-.258-.09.005-.108.116-.177.2-.228zm-4.785.138c.908-.02 1.842.29 2.495.935.358.365.62.856.612 1.377.01.47-.199.926-.507 1.274-.566.642-1.415.983-2.256 1.046a3.577 3.577 0 0 1-2.17-.514c-.345-.22-.66-.5-.867-.858a1.853 1.853 0 0 1-.227-1.365c.099-.415.356-.774.668-1.057.565-.51 1.318-.775 2.07-.83.06-.004.121-.006.182-.008zm5.64.023c.218-.005.435.025.653.035 1.44.088 2.882.14 4.322.224.093.014.198-.004.283.043.057.083.072.185.087.283-.302.185-.678.14-1.015.149-.425-.028-.85-.08-1.274-.121a15.638 15.638 0 0 0-.425-.036c-.872-.087-1.747-.139-2.615-.258a1.474 1.474 0 0 0-.016-.32zm-5.553.01c-.116 0-.23.005-.345.016-.805.077-1.627.39-2.161 1.02-.308.348-.518.809-.484 1.282.018.674.448 1.273.985 1.65.884.618 2.057.75 3.079.44.46-.149.903-.38 1.245-.727.428-.414.714-1.017.635-1.622-.065-.495-.35-.941-.723-1.265-.61-.536-1.425-.795-2.231-.794zm-5.915.175c.059 0 .118 0 .178.002.148.042.249.167.359.266-.027.077-.05.155-.072.234.072.057.149.108.23.15-.517.084-1.03.193-1.544.292l-.464.102-.465.098c-.31.063-.621.123-.934.174-.405.072-.828.05-1.222-.069-.113-.032-.141-.162-.095-.262.017-.1.141-.09.215-.105 1.276-.13 2.548-.295 3.82-.447.178-.019.38-.023.51-.163-.701.064-1.402.142-2.102.22l-1.051.113c-.35.036-.701.07-1.052.1-.394.04-.802.002-1.17-.153a1.65 1.65 0 0 1 .144-.328c1.393-.063 2.789-.092 4.18-.195.178-.008.356-.025.535-.029zm1.256.064a.56.56 0 0 1 .122.008c.084.025.162.067.24.105-.009.132-.138.166-.238.212-.125.051-.247.11-.375.153-.162.052-.325-.028-.474-.087.02-.068.028-.144.07-.203a.916.916 0 0 1 .297-.12c.117-.03.237-.064.358-.068zm9.248 0c.177-.004.35.054.517.106.064.026.144.036.192.092.032.06.04.13.064.192-.146.053-.302.145-.462.093a6.866 6.866 0 0 1-.632-.271c.018-.123.137-.18.245-.206a.718.718 0 0 1 .076-.006zm.887.172c.239-.004.474.041.711.066.758.085 1.517.168 2.276.246.543.068 1.09.108 1.632.19.013.107.126.312-.033.35a4.135 4.135 0 0 1-1.12.025c-1.182-.184-2.36-.394-3.544-.566a4.356 4.356 0 0 0-.024-.307c.034-.002.068-.004.102-.004zm-5.377.111c.253.001.504.032.748.103.282.084.568.226.73.482.111.16.124.368.087.554-.056.226-.263.365-.442.492l.004.042c.265.181.554.434.545.785.025.254-.11.492-.293.657-.129.098-.27.183-.422.241-.43.149-.892.168-1.342.138-.552-.069-1.13-.224-1.537-.627.07-.094.16-.17.224-.268a23.17 23.17 0 0 0 .006-1.615c-.066-.099-.157-.177-.231-.27.274-.375.732-.545 1.17-.64.247-.047.5-.075.753-.074zm4.163.063c.029 0 .058.001.086.008.169.065.332.144.494.225.036.024.09.036.106.082.004.08-.034.168-.113.197-.115.048-.253.078-.37.024-.191-.084-.365-.202-.544-.307.017-.042.025-.095.054-.13a.1.1 0 0 1 .038-.027.606.606 0 0 1 .249-.072zm-8.563 0a.555.555 0 0 1 .276.078c.065.031.079.14.017.18-.162.11-.332.21-.514.281-.143.047-.287-.007-.42-.053l-.04-.194c.168-.088.34-.173.514-.25a.36.36 0 0 1 .167-.042zm4.37.172a2.535 2.535 0 0 0-.282.015.623.623 0 0 0-.361.168c-.163.169-.176.422-.145.641a.563.563 0 0 0 .367.487c.233.079.49.075.725.01.254-.085.382-.362.376-.614.013-.213-.04-.462-.231-.586a.807.807 0 0 0-.449-.12zm5.287.085c.27.006.54.052.806.099.833.15 1.666.301 2.498.458.21.043.423.079.63.138-.028.125-.043.32-.202.344-.513.065-1.028-.05-1.52-.187-.814-.22-1.637-.414-2.45-.64a.435.435 0 0 0-.149-.007c.013-.052.017-.107.042-.154.064-.048.153-.045.229-.05h.116zm-10.387.055c.028.114.052.229.097.337-.634.195-1.267.39-1.904.572-.338.097-.67.223-1.02.27-.316.028-.64.013-.948-.066-.126-.034-.16-.17-.163-.284.89-.193 1.777-.399 2.67-.577.422-.085.839-.203 1.268-.252zm8.897.051a.266.266 0 0 1 .177.063c.15.099.297.2.448.296a.196.196 0 0 0-.014.043l-.01.047c-.009.032-.021.061-.05.077-.13.014-.269.043-.396-.006a2.215 2.215 0 0 1-.396-.324c-.046-.039-.041-.116-.002-.158a.093.093 0 0 1 .05-.027c.061-.003.128-.013.193-.01zm-7.713 0c.051 0 .102.004.152.01.069.017.116.122.047.169-.156.156-.318.354-.557.365-.08-.001-.16.002-.238-.015-.057-.038-.052-.12-.071-.176.173-.11.338-.231.516-.333a.63.63 0 0 1 .15-.02zm8.857.204c.162.017.316.07.473.108.766.225 1.533.447 2.298.674.143.043.289.079.426.138-.038.095-.074.203-.163.262a2.07 2.07 0 0 1-1.1-.072c-.27-.103-.527-.233-.792-.346-.48-.205-.958-.419-1.445-.61.103-.047.195-.121.303-.154zm-1.563.04c.105 0 .19.084.266.148.072.072.167.131.212.225.015.085-.055.159-.079.235-.104-.02-.234.02-.318-.066a1.57 1.57 0 0 1-.322-.397c-.016-.086.083-.138.163-.141l.032.001a.202.202 0 0 1 .046-.005zm-6.891.004a.423.423 0 0 1 .23.082 1.5 1.5 0 0 1-.34.455c-.074.09-.2.075-.3.045-.063-.047-.086-.13-.124-.196.123-.127.24-.262.389-.359a.32.32 0 0 1 .145-.027zm-1.326.12a.848.848 0 0 1 .108.002c.102.015.115.135.153.212-.178.06-.341.153-.508.236-.434.208-.857.435-1.29.645-.295.156-.643.13-.966.133-.09-.009-.191 0-.27-.052-.052-.067-.074-.152-.1-.232.245-.124.516-.18.77-.283.456-.172.924-.31 1.384-.47.238-.067.471-.179.72-.19zm7.692.011c.093.022.207.015.277.091.098.133.197.272.253.428-.018.12-.154.2-.272.195-.04-.253-.148-.485-.258-.714zm-5.888.003a2.99 2.99 0 0 0-.242.718c-.095-.022-.214-.046-.256-.147-.03-.05-.001-.105.022-.15a2.1 2.1 0 0 1 .225-.346c.071-.054.167-.054.251-.075zm7.515.028c.182.033.342.134.508.212.661.309 1.32.623 1.977.942-.013.07-.011.154-.059.214-.163.063-.344.037-.513.02-.206-.023-.42-.047-.601-.16-.507-.315-.98-.687-1.509-.966.115-.042.154-.159.197-.262zm-8.832.254c.09 0 .18.014.267.042-.194.232-.456.392-.695.571-.28.19-.538.417-.85.553a2.027 2.027 0 0 1-.761.104c-.112-.014-.161-.118-.166-.22.587-.32 1.187-.615 1.774-.933a.83.83 0 0 1 .43-.117zm8.426.018a.6.6 0 0 1 .321.134c.449.335.896.674 1.346 1.007.06.031.091.091.116.152-.126.054-.263.12-.403.078-.041-.01-.084-.018-.126-.027a.946.946 0 0 1-.364-.13c-.427-.27-.773-.65-1.206-.912.092-.082.12-.21.206-.293a.399.399 0 0 1 .11-.009zm-8.156.176c.114.178.334.117.508.165-.38.273-.666.652-1.042.93-.228.169-.583.234-.814.037.113-.175.29-.29.447-.423.3-.236.593-.483.901-.709zm7.554.125c.11.023.233.032.319.116.284.24.551.498.836.738.097.09.227.167.238.315-.095.035-.202.075-.302.033a.672.672 0 0 1-.071-.023c-.162-.063-.295-.183-.424-.297a9.813 9.813 0 0 0-.769-.679c.056-.069.114-.137.173-.203zm-7.068.176c.102.027.201.065.303.091.013.1.02.2.026.3-.174.175-.307.406-.541.51-.156.06-.327.081-.493.06-.057-.012-.097-.057-.138-.095.278-.292.54-.6.843-.866zm6.729.073c.151-.002.25.118.344.218.196.228.42.428.622.649-.043.057-.09.136-.18.106a.738.738 0 0 1-.311-.05c-.208-.1-.345-.293-.522-.433l.047-.49zm-3.103.132a1.564 1.564 0 0 0-.255.014c-.274.032-.537.235-.584.515-.03.271-.019.602.204.796.147.12.34.16.525.176.258.008.56-.033.72-.264.175-.264.176-.623.054-.908-.132-.24-.401-.322-.664-.33zm-3.303.33c.066.17.114.346.16.522-.12-.023-.302-.01-.37-.138-.033-.161.117-.274.21-.383zm6.349.15c.087.077.204.181.17.31-.067.117-.218.118-.335.13a33.1 33.1 0 0 0 .165-.44zm-6.69.321c.093.077.195.157.319.176.08.024.173.018.245.063.156.191.294.399.488.555.299.277.658.469.995.692-.058.24-.213.437-.339.644-.92-.353-1.719-1.07-2.085-1.995.126-.042.252-.087.376-.135zm6.993.063c.093.037.186.075.28.11-.185.51-.532.95-.94 1.301a3.133 3.133 0 0 1-1.012.6c-.08-.14-.166-.278-.236-.424-.02-.05-.052-.118-.01-.165.098-.098.227-.156.346-.224.248-.148.476-.327.686-.526.14-.134.228-.312.357-.456.11-.043.238-.024.347-.074.07-.036.124-.092.182-.142zm-7.67.07l.204.003c.174.43.422.837.76 1.157.207.187.408.384.649.527.23.152.482.262.73.38a1.417 1.417 0 0 1-.089.2 4.51 4.51 0 0 1-.699-.352c-.3-.177-.55-.421-.8-.66-.26-.253-.43-.58-.604-.894-.065-.114-.106-.239-.15-.361zm8.027.058l.22.02a3.174 3.174 0 0 1-.847 1.33c-.372.34-.785.665-1.272.82-.034-.07-.068-.14-.1-.212.305-.137.61-.289.87-.504.48-.388.91-.868 1.129-1.454zm-1.348.433c-.19.266-.485.42-.746.605-.12.093-.29.15-.339.31.011.094.087.164.13.245.108.186.215.374.302.57.048.124-.001.252-.048.367-.158-.043-.334-.115-.403-.275-.133-.241-.13-.544-.315-.76-.017.322.216.582.255.893-.016.109-.084.202-.136.297-.139-.078-.31-.156-.343-.329-.095-.256-.037-.563-.192-.797-.063.223.046.44.088.656.023.134.082.303-.023.417a2.76 2.76 0 0 1-.106.133c-.105-.075-.24-.145-.275-.28-.059-.26-.016-.53-.064-.79-.014-.033-.037-.059-.058-.086-.07.31.085.616.047.928-.042.112-.135.229-.26.25-.115-.08-.222-.2-.221-.35-.015-.271.087-.535.073-.807l-.073-.002c-.037.23-.018.465-.033.697a.487.487 0 0 1-.104.294c-.06.054-.127.1-.197.142-.063-.066-.135-.13-.173-.216-.034-.13.013-.26.04-.388.047-.192.115-.384.106-.584h-.066c-.083.259-.081.533-.154.794a.468.468 0 0 1-.273.295c-.054.024-.119-.014-.14-.066-.097-.123-.048-.289-.005-.423.086-.222.192-.439.24-.674l-.066-.027c-.14.26-.174.564-.32.821a.478.478 0 0 1-.311.24c-.045.015-.08-.022-.1-.057a.386.386 0 0 1-.005-.334c.112-.241.27-.46.38-.702.02-.066.056-.155.001-.213-.22-.226-.546-.3-.77-.522.233.138.459.296.716.386.923.372 1.99.383 2.915.011.39-.136.729-.387 1.026-.669Z" }) + ] + } + ); +}); + +exports.default = SiBentley; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.d.ts new file mode 100644 index 000000000..74e686116 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiBentley: IconType; +export { SiBentley as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.mjs new file mode 100644 index 000000000..21ae76aac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentley.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiBentley = React.forwardRef(function SiBentley2({ title = "Bentley", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.535 8.114a5.407 5.407 0 0 0-1.49.34c-.131.05-.269.135-.414.079-.654-.153-1.331-.096-1.992-.025-.859.09-1.72-.003-2.579-.045a21.543 21.543 0 0 0-2.349.05c-.713.044-1.429-.01-2.138-.086-.088-.002-.178-.02-.265-.002-.135.088-.22.232-.308.363v.068c.185.158.404.262.625.358-.062.151-.101.31-.13.47.264.124.54.227.796.368-.029.095-.072.186-.083.285-.006.059.024.121.083.142.21.11.448.142.665.23.021.01.05.02.05.048.017.128.02.258.047.385a.173.173 0 0 0 .057.035c.287.095.588.131.881.196.034.11.022.249.106.336.375.196.82.1 1.213.228.098.096.075.29.223.344.296.09.614.01.918.05.069.079.077.193.144.273a.249.249 0 0 0 .169.076c.287.008.562-.087.846-.12.059.099.087.247.213.277.229.045.452-.042.665-.116.08.26.166.521.303.758.473.858 1.288 1.499 2.198 1.841.128.036.172.175.238.276.127-.048.252-.102.384-.134l.2.297c.119-.06.237-.122.356-.184.08.094.16.187.242.28l.31-.22c.09.078.173.164.254.251h.035c.096-.085.187-.177.282-.263.106.077.21.156.316.235.081-.095.163-.19.246-.284.12.06.238.123.357.184.063-.098.124-.196.185-.295.14.031.27.089.404.136.033-.068.065-.138.102-.204.053-.142.22-.164.336-.232.972-.447 1.78-1.286 2.099-2.318.162.06.345.134.517.064.09-.046.125-.144.168-.228.24.053.48.154.73.102.13-.039.194-.161.253-.271.23.03.456.095.69.075.104-.013.247 0 .318-.096.059-.096.067-.215.124-.312.315-.042.648.042.954-.072.096-.108.097-.27.184-.383.247-.018.495 0 .742-.018a.286.286 0 0 0 .215-.123c.056-.107.064-.23.1-.344.007-.024.02-.05.044-.061.241-.1.534-.022.755-.177.108-.12.021-.31.088-.443.207-.118.477-.088.669-.241.129-.11.032-.282.014-.42.225-.077.472-.119.657-.279-.052-.14-.113-.275-.17-.412A4.67 4.67 0 0 0 24 8.871v-.087a1.176 1.176 0 0 0-.272-.34c-.071-.053-.17-.01-.25-.018-.696.062-1.396.13-2.095.092-.417-.022-.833-.062-1.25-.062-.522 0-1.044-.015-1.564.027-.77.046-1.544.103-2.313.017-.657-.077-1.335-.115-1.981.053-.103.043-.211.009-.305-.037-.516-.234-1.077-.348-1.638-.402zm.521.155c.327.014.654.049.974.122.31.072.622.149.91.287-.103.065-.227.164-.354.11a5.088 5.088 0 0 0-1.716-.29c-.326.02-.652.046-.97.125-.204.04-.4.116-.606.149-.096-.026-.184-.073-.272-.119a5.653 5.653 0 0 1 2.034-.384zm11.467.278c.17-.01.308.126.395.26a2.31 2.31 0 0 1-1.093.252c-1.65.027-3.298.095-4.947.137 0 .027.002.054.004.081a2.744 2.744 0 0 1-.048-.154c.361-.05.72-.12 1.085-.142.668-.05 1.34-.068 2.01-.075a.394.394 0 0 0 .245-.072c-.533-.057-1.07-.026-1.604-.013-.371.027-.744.033-1.114.08-.495.06-.989.154-1.489.16-.312.005-.625.032-.937.01-.39-.007-.786-.042-1.17.045-.108.035-.239.073-.282.192-.093.188.01.398.095.569.103.217.279.425.247.682-.015.091-.092.151-.162.203a2.4 2.4 0 0 1-.198-.251c.04-.08.106-.155.088-.252-.033-.2-.178-.358-.314-.498-.196-.19-.414-.367-.547-.61-.039-.07-.066-.17.009-.227.22-.156.491-.209.752-.252.715-.1 1.436-.015 2.153.015.353.035.709.03 1.063 0 .838-.054 1.68-.138 2.52-.082.378.021.757.038 1.135.047.692.028 1.38-.062 2.07-.101a.308.308 0 0 1 .034-.004zM.55 8.55c.196-.002.392.027.587.04.542.048 1.086.079 1.63.056.674-.008 1.345-.088 2.019-.052.687.022 1.37.098 2.058.119.525-.018 1.049-.06 1.574-.084.533-.017 1.087-.011 1.59.187.097.04.217.093.24.207-.02.158-.14.28-.238.399-.175.216-.429.36-.57.605-.11.14-.126.35-.005.488a1.808 1.808 0 0 1-.219.243c-.083-.076-.16-.17-.15-.292.038-.346.347-.593.383-.94.031-.121-.031-.239-.108-.327a1.155 1.155 0 0 0-.468-.124c-.562-.048-1.126.027-1.689-.007-.557.004-1.107-.093-1.657-.167a26.874 26.874 0 0 0-2.115-.106c-.195-.003-.39.015-.585.032.063.052.14.087.225.078.733.01 1.466.022 2.197.085.307.029.61.084.916.131l-.023.084c-.536-.033-1.074-.028-1.611-.05-.965-.035-1.93-.065-2.895-.081-.411-.027-.841.017-1.234-.134-.11-.037-.213-.088-.317-.136.076-.093.153-.199.27-.24.065-.01.13-.014.195-.014zm11.455.114a4.324 4.324 0 0 1 1.597.296c.004.104-.029.218.024.313a1.245 1.245 0 0 0 .16.229c.18.212.41.383.588.597a.716.716 0 0 1 .157.272 3.76 3.76 0 0 0-1.267-.755 3.848 3.848 0 0 0-3.158.28c-.174.098-.332.22-.486.348l-.152.128a.502.502 0 0 1 .06-.147c.223-.315.556-.533.781-.846.11-.133.1-.31.083-.47a5.558 5.558 0 0 1 1.613-.245zm5.762.455c.016.044.03.088.044.132-.313.18-.688.135-1.032.09-.078-.007-.124-.074-.155-.139.38-.041.763-.038 1.143-.083zm-11.55.016c.386.006.771.025 1.154.064-.03.051-.054.124-.122.132-.203.035-.41.041-.614.049-.158.01-.303-.062-.44-.129l.023-.116zm1.207.055c.154.003.309.005.463.014.41.017.831-.016 1.23.105.099.034.208.08.259.178.039.172-.06.325-.144.464-.083.151-.197.293-.235.464-.048.16.05.294.124.423-.112.004-.25.051-.338-.04-.041-.082.007-.179.024-.263l-.16.143-.195-.012c-.015-.203.141-.35.221-.521-.138.123-.278.297-.483.281-.081.003-.143-.104-.093-.169.111-.141.255-.254.359-.402-.124.096-.25.195-.397.251a.464.464 0 0 1-.326-.038c.018-.204.234-.276.35-.417-.127.053-.24.154-.387.145-.058.002-.115-.016-.17-.029-.01-.173.171-.234.273-.337-.09.02-.177.062-.27.06-.062-.022-.11-.072-.164-.108.015-.066.035-.13.06-.192zm9.156 0c.018.078.087.178-.005.237-.1.125-.268.022-.39-.002.112.096.285.167.284.343-.096.017-.2.05-.295.01-.088-.036-.173-.081-.259-.122.027.027.055.053.084.078l.087.076c.057.051.113.104.16.164.016.068-.033.14-.106.139-.233.059-.415-.127-.584-.254.089.121.195.226.297.335.051.054.046.135.064.203-.084.011-.174.044-.256.008-.128-.052-.225-.155-.33-.243.091.16.23.305.216.502l-.208.008a10.001 10.001 0 0 1-.137-.132c.008.082.06.176.007.25-.062.07-.158.065-.246.063-.03 0-.059 0-.086.003.047-.119.14-.222.137-.356-.036-.35-.358-.587-.406-.932-.01-.149.154-.218.273-.261.554-.145 1.133-.073 1.7-.117zM.698 9.192c.77 0 1.54.04 2.31.047.963.021 1.926.028 2.888.053.2-.014.365.116.53.207l-.018.19a5.46 5.46 0 0 1-.089.043l.026-.073c-.899.024-1.796.085-2.695.112-.566.012-1.13.06-1.697.05A3.707 3.707 0 0 1 .89 9.705c-.115-.034-.247-.052-.338-.137-.001-.135.073-.264.145-.376zm22.62.022c.064.111.132.222.179.342-.43.14-.89.133-1.336.116-.828-.002-1.656-.055-2.484-.083-.699-.032-1.398-.06-2.097-.1.143-.102.305-.202.486-.196 1.751-.007 3.501-.078 5.252-.08zm-16.073.214c.077.005.136.074.194.12a.138.138 0 0 1 .05.116c-.078.06-.181.068-.273.092-.186.034-.37.09-.56.097-.067-.026-.14-.055-.185-.116-.016-.084.01-.2.104-.222.21-.042.425-.054.636-.085a.139.139 0 0 1 .034-.002zm9.465.008c.235 0 .47.03.7.073.109.021.106.15.134.234-.09.05-.177.13-.29.107-.163-.025-.323-.066-.485-.096-.087-.022-.187-.029-.258-.09.005-.108.116-.177.2-.228zm-4.785.138c.908-.02 1.842.29 2.495.935.358.365.62.856.612 1.377.01.47-.199.926-.507 1.274-.566.642-1.415.983-2.256 1.046a3.577 3.577 0 0 1-2.17-.514c-.345-.22-.66-.5-.867-.858a1.853 1.853 0 0 1-.227-1.365c.099-.415.356-.774.668-1.057.565-.51 1.318-.775 2.07-.83.06-.004.121-.006.182-.008zm5.64.023c.218-.005.435.025.653.035 1.44.088 2.882.14 4.322.224.093.014.198-.004.283.043.057.083.072.185.087.283-.302.185-.678.14-1.015.149-.425-.028-.85-.08-1.274-.121a15.638 15.638 0 0 0-.425-.036c-.872-.087-1.747-.139-2.615-.258a1.474 1.474 0 0 0-.016-.32zm-5.553.01c-.116 0-.23.005-.345.016-.805.077-1.627.39-2.161 1.02-.308.348-.518.809-.484 1.282.018.674.448 1.273.985 1.65.884.618 2.057.75 3.079.44.46-.149.903-.38 1.245-.727.428-.414.714-1.017.635-1.622-.065-.495-.35-.941-.723-1.265-.61-.536-1.425-.795-2.231-.794zm-5.915.175c.059 0 .118 0 .178.002.148.042.249.167.359.266-.027.077-.05.155-.072.234.072.057.149.108.23.15-.517.084-1.03.193-1.544.292l-.464.102-.465.098c-.31.063-.621.123-.934.174-.405.072-.828.05-1.222-.069-.113-.032-.141-.162-.095-.262.017-.1.141-.09.215-.105 1.276-.13 2.548-.295 3.82-.447.178-.019.38-.023.51-.163-.701.064-1.402.142-2.102.22l-1.051.113c-.35.036-.701.07-1.052.1-.394.04-.802.002-1.17-.153a1.65 1.65 0 0 1 .144-.328c1.393-.063 2.789-.092 4.18-.195.178-.008.356-.025.535-.029zm1.256.064a.56.56 0 0 1 .122.008c.084.025.162.067.24.105-.009.132-.138.166-.238.212-.125.051-.247.11-.375.153-.162.052-.325-.028-.474-.087.02-.068.028-.144.07-.203a.916.916 0 0 1 .297-.12c.117-.03.237-.064.358-.068zm9.248 0c.177-.004.35.054.517.106.064.026.144.036.192.092.032.06.04.13.064.192-.146.053-.302.145-.462.093a6.866 6.866 0 0 1-.632-.271c.018-.123.137-.18.245-.206a.718.718 0 0 1 .076-.006zm.887.172c.239-.004.474.041.711.066.758.085 1.517.168 2.276.246.543.068 1.09.108 1.632.19.013.107.126.312-.033.35a4.135 4.135 0 0 1-1.12.025c-1.182-.184-2.36-.394-3.544-.566a4.356 4.356 0 0 0-.024-.307c.034-.002.068-.004.102-.004zm-5.377.111c.253.001.504.032.748.103.282.084.568.226.73.482.111.16.124.368.087.554-.056.226-.263.365-.442.492l.004.042c.265.181.554.434.545.785.025.254-.11.492-.293.657-.129.098-.27.183-.422.241-.43.149-.892.168-1.342.138-.552-.069-1.13-.224-1.537-.627.07-.094.16-.17.224-.268a23.17 23.17 0 0 0 .006-1.615c-.066-.099-.157-.177-.231-.27.274-.375.732-.545 1.17-.64.247-.047.5-.075.753-.074zm4.163.063c.029 0 .058.001.086.008.169.065.332.144.494.225.036.024.09.036.106.082.004.08-.034.168-.113.197-.115.048-.253.078-.37.024-.191-.084-.365-.202-.544-.307.017-.042.025-.095.054-.13a.1.1 0 0 1 .038-.027.606.606 0 0 1 .249-.072zm-8.563 0a.555.555 0 0 1 .276.078c.065.031.079.14.017.18-.162.11-.332.21-.514.281-.143.047-.287-.007-.42-.053l-.04-.194c.168-.088.34-.173.514-.25a.36.36 0 0 1 .167-.042zm4.37.172a2.535 2.535 0 0 0-.282.015.623.623 0 0 0-.361.168c-.163.169-.176.422-.145.641a.563.563 0 0 0 .367.487c.233.079.49.075.725.01.254-.085.382-.362.376-.614.013-.213-.04-.462-.231-.586a.807.807 0 0 0-.449-.12zm5.287.085c.27.006.54.052.806.099.833.15 1.666.301 2.498.458.21.043.423.079.63.138-.028.125-.043.32-.202.344-.513.065-1.028-.05-1.52-.187-.814-.22-1.637-.414-2.45-.64a.435.435 0 0 0-.149-.007c.013-.052.017-.107.042-.154.064-.048.153-.045.229-.05h.116zm-10.387.055c.028.114.052.229.097.337-.634.195-1.267.39-1.904.572-.338.097-.67.223-1.02.27-.316.028-.64.013-.948-.066-.126-.034-.16-.17-.163-.284.89-.193 1.777-.399 2.67-.577.422-.085.839-.203 1.268-.252zm8.897.051a.266.266 0 0 1 .177.063c.15.099.297.2.448.296a.196.196 0 0 0-.014.043l-.01.047c-.009.032-.021.061-.05.077-.13.014-.269.043-.396-.006a2.215 2.215 0 0 1-.396-.324c-.046-.039-.041-.116-.002-.158a.093.093 0 0 1 .05-.027c.061-.003.128-.013.193-.01zm-7.713 0c.051 0 .102.004.152.01.069.017.116.122.047.169-.156.156-.318.354-.557.365-.08-.001-.16.002-.238-.015-.057-.038-.052-.12-.071-.176.173-.11.338-.231.516-.333a.63.63 0 0 1 .15-.02zm8.857.204c.162.017.316.07.473.108.766.225 1.533.447 2.298.674.143.043.289.079.426.138-.038.095-.074.203-.163.262a2.07 2.07 0 0 1-1.1-.072c-.27-.103-.527-.233-.792-.346-.48-.205-.958-.419-1.445-.61.103-.047.195-.121.303-.154zm-1.563.04c.105 0 .19.084.266.148.072.072.167.131.212.225.015.085-.055.159-.079.235-.104-.02-.234.02-.318-.066a1.57 1.57 0 0 1-.322-.397c-.016-.086.083-.138.163-.141l.032.001a.202.202 0 0 1 .046-.005zm-6.891.004a.423.423 0 0 1 .23.082 1.5 1.5 0 0 1-.34.455c-.074.09-.2.075-.3.045-.063-.047-.086-.13-.124-.196.123-.127.24-.262.389-.359a.32.32 0 0 1 .145-.027zm-1.326.12a.848.848 0 0 1 .108.002c.102.015.115.135.153.212-.178.06-.341.153-.508.236-.434.208-.857.435-1.29.645-.295.156-.643.13-.966.133-.09-.009-.191 0-.27-.052-.052-.067-.074-.152-.1-.232.245-.124.516-.18.77-.283.456-.172.924-.31 1.384-.47.238-.067.471-.179.72-.19zm7.692.011c.093.022.207.015.277.091.098.133.197.272.253.428-.018.12-.154.2-.272.195-.04-.253-.148-.485-.258-.714zm-5.888.003a2.99 2.99 0 0 0-.242.718c-.095-.022-.214-.046-.256-.147-.03-.05-.001-.105.022-.15a2.1 2.1 0 0 1 .225-.346c.071-.054.167-.054.251-.075zm7.515.028c.182.033.342.134.508.212.661.309 1.32.623 1.977.942-.013.07-.011.154-.059.214-.163.063-.344.037-.513.02-.206-.023-.42-.047-.601-.16-.507-.315-.98-.687-1.509-.966.115-.042.154-.159.197-.262zm-8.832.254c.09 0 .18.014.267.042-.194.232-.456.392-.695.571-.28.19-.538.417-.85.553a2.027 2.027 0 0 1-.761.104c-.112-.014-.161-.118-.166-.22.587-.32 1.187-.615 1.774-.933a.83.83 0 0 1 .43-.117zm8.426.018a.6.6 0 0 1 .321.134c.449.335.896.674 1.346 1.007.06.031.091.091.116.152-.126.054-.263.12-.403.078-.041-.01-.084-.018-.126-.027a.946.946 0 0 1-.364-.13c-.427-.27-.773-.65-1.206-.912.092-.082.12-.21.206-.293a.399.399 0 0 1 .11-.009zm-8.156.176c.114.178.334.117.508.165-.38.273-.666.652-1.042.93-.228.169-.583.234-.814.037.113-.175.29-.29.447-.423.3-.236.593-.483.901-.709zm7.554.125c.11.023.233.032.319.116.284.24.551.498.836.738.097.09.227.167.238.315-.095.035-.202.075-.302.033a.672.672 0 0 1-.071-.023c-.162-.063-.295-.183-.424-.297a9.813 9.813 0 0 0-.769-.679c.056-.069.114-.137.173-.203zm-7.068.176c.102.027.201.065.303.091.013.1.02.2.026.3-.174.175-.307.406-.541.51-.156.06-.327.081-.493.06-.057-.012-.097-.057-.138-.095.278-.292.54-.6.843-.866zm6.729.073c.151-.002.25.118.344.218.196.228.42.428.622.649-.043.057-.09.136-.18.106a.738.738 0 0 1-.311-.05c-.208-.1-.345-.293-.522-.433l.047-.49zm-3.103.132a1.564 1.564 0 0 0-.255.014c-.274.032-.537.235-.584.515-.03.271-.019.602.204.796.147.12.34.16.525.176.258.008.56-.033.72-.264.175-.264.176-.623.054-.908-.132-.24-.401-.322-.664-.33zm-3.303.33c.066.17.114.346.16.522-.12-.023-.302-.01-.37-.138-.033-.161.117-.274.21-.383zm6.349.15c.087.077.204.181.17.31-.067.117-.218.118-.335.13a33.1 33.1 0 0 0 .165-.44zm-6.69.321c.093.077.195.157.319.176.08.024.173.018.245.063.156.191.294.399.488.555.299.277.658.469.995.692-.058.24-.213.437-.339.644-.92-.353-1.719-1.07-2.085-1.995.126-.042.252-.087.376-.135zm6.993.063c.093.037.186.075.28.11-.185.51-.532.95-.94 1.301a3.133 3.133 0 0 1-1.012.6c-.08-.14-.166-.278-.236-.424-.02-.05-.052-.118-.01-.165.098-.098.227-.156.346-.224.248-.148.476-.327.686-.526.14-.134.228-.312.357-.456.11-.043.238-.024.347-.074.07-.036.124-.092.182-.142zm-7.67.07l.204.003c.174.43.422.837.76 1.157.207.187.408.384.649.527.23.152.482.262.73.38a1.417 1.417 0 0 1-.089.2 4.51 4.51 0 0 1-.699-.352c-.3-.177-.55-.421-.8-.66-.26-.253-.43-.58-.604-.894-.065-.114-.106-.239-.15-.361zm8.027.058l.22.02a3.174 3.174 0 0 1-.847 1.33c-.372.34-.785.665-1.272.82-.034-.07-.068-.14-.1-.212.305-.137.61-.289.87-.504.48-.388.91-.868 1.129-1.454zm-1.348.433c-.19.266-.485.42-.746.605-.12.093-.29.15-.339.31.011.094.087.164.13.245.108.186.215.374.302.57.048.124-.001.252-.048.367-.158-.043-.334-.115-.403-.275-.133-.241-.13-.544-.315-.76-.017.322.216.582.255.893-.016.109-.084.202-.136.297-.139-.078-.31-.156-.343-.329-.095-.256-.037-.563-.192-.797-.063.223.046.44.088.656.023.134.082.303-.023.417a2.76 2.76 0 0 1-.106.133c-.105-.075-.24-.145-.275-.28-.059-.26-.016-.53-.064-.79-.014-.033-.037-.059-.058-.086-.07.31.085.616.047.928-.042.112-.135.229-.26.25-.115-.08-.222-.2-.221-.35-.015-.271.087-.535.073-.807l-.073-.002c-.037.23-.018.465-.033.697a.487.487 0 0 1-.104.294c-.06.054-.127.1-.197.142-.063-.066-.135-.13-.173-.216-.034-.13.013-.26.04-.388.047-.192.115-.384.106-.584h-.066c-.083.259-.081.533-.154.794a.468.468 0 0 1-.273.295c-.054.024-.119-.014-.14-.066-.097-.123-.048-.289-.005-.423.086-.222.192-.439.24-.674l-.066-.027c-.14.26-.174.564-.32.821a.478.478 0 0 1-.311.24c-.045.015-.08-.022-.1-.057a.386.386 0 0 1-.005-.334c.112-.241.27-.46.38-.702.02-.066.056-.155.001-.213-.22-.226-.546-.3-.77-.522.233.138.459.296.716.386.923.372 1.99.383 2.915.011.39-.136.729-.387 1.026-.669Z" }) + ] + } + ); +}); + +export { SiBentley as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBento.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBento.cjs new file mode 100644 index 000000000..a67ccacf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBento.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#768CFF"; +const SiBento = React__namespace.forwardRef(function SiBento2({ title = "Bento", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 10.435c0-.256.051-.512.153-.758.233-.56.854-1.046 2.095-2.018l6.206-4.856c1.241-.972 1.862-1.458 2.577-1.64.63-.16 1.308-.16 1.938 0 .715.183 1.336.668 2.577 1.64l6.206 4.856c1.241.972 1.862 1.458 2.095 2.018.102.246.153.502.153.758v3.13c0 .256-.051.512-.153.758-.233.56-.854 1.046-2.095 2.017l-6.206 4.857c-1.241.972-1.862 1.457-2.577 1.64-.63.16-1.308.16-1.938 0-.715-.183-1.336-.668-2.577-1.64L2.248 16.34C1.007 15.37.386 14.883.153 14.323A1.971 1.971 0 0 1 0 13.565v-3.13Zm9.34-3.238.887.694c.62.485.93.728 1.289.82.315.08.653.08.968 0 .358-.092.668-.335 1.29-.82l.886-.694c.62-.486.93-.729 1.047-1.009a.975.975 0 0 0 0-.758c-.116-.28-.427-.523-1.047-1.008l-.887-.694c-.62-.486-.93-.729-1.289-.82a1.984 1.984 0 0 0-.968 0c-.358.091-.668.334-1.29.82l-.886.694c-.62.485-.93.728-1.047 1.008a.975.975 0 0 0 0 .758c.116.28.427.523 1.047 1.009Zm5.91 4.625.887.694c.62.486.931.729 1.29.82.314.08.653.08.968 0 .358-.091.668-.334 1.288-.82l.887-.694c.62-.485.931-.728 1.047-1.008a.976.976 0 0 0 0-.758c-.116-.28-.426-.523-1.047-1.009l-.887-.694c-.62-.485-.93-.728-1.288-.82a1.984 1.984 0 0 0-.969 0c-.358.092-.668.335-1.289.82l-.886.694c-.621.486-.931.729-1.047 1.009a.975.975 0 0 0 0 .758c.116.28.426.523 1.047 1.008Zm-11.82 0 6.797 5.32c.62.486.93.728 1.289.82.315.08.653.08.968 0 .358-.092.668-.334 1.29-.82l.886-.694c.62-.486.93-.729 1.047-1.009a.974.974 0 0 0 0-.758c-.116-.28-.427-.523-1.047-1.008l-6.797-5.32c-.62-.485-.931-.728-1.29-.82a1.984 1.984 0 0 0-.968 0c-.358.092-.668.335-1.288.82l-.887.694c-.62.486-.931.729-1.047 1.009a.975.975 0 0 0 0 .758c.116.28.426.523 1.047 1.008Z" }) + ] + } + ); +}); + +exports.default = SiBento; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBento.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBento.d.ts new file mode 100644 index 000000000..aa5022f61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBento.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#768CFF"; +declare const SiBento: IconType; +export { SiBento as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBento.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBento.mjs new file mode 100644 index 000000000..c46e1942b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBento.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#768CFF"; +const SiBento = React.forwardRef(function SiBento2({ title = "Bento", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 10.435c0-.256.051-.512.153-.758.233-.56.854-1.046 2.095-2.018l6.206-4.856c1.241-.972 1.862-1.458 2.577-1.64.63-.16 1.308-.16 1.938 0 .715.183 1.336.668 2.577 1.64l6.206 4.856c1.241.972 1.862 1.458 2.095 2.018.102.246.153.502.153.758v3.13c0 .256-.051.512-.153.758-.233.56-.854 1.046-2.095 2.017l-6.206 4.857c-1.241.972-1.862 1.457-2.577 1.64-.63.16-1.308.16-1.938 0-.715-.183-1.336-.668-2.577-1.64L2.248 16.34C1.007 15.37.386 14.883.153 14.323A1.971 1.971 0 0 1 0 13.565v-3.13Zm9.34-3.238.887.694c.62.485.93.728 1.289.82.315.08.653.08.968 0 .358-.092.668-.335 1.29-.82l.886-.694c.62-.486.93-.729 1.047-1.009a.975.975 0 0 0 0-.758c-.116-.28-.427-.523-1.047-1.008l-.887-.694c-.62-.486-.93-.729-1.289-.82a1.984 1.984 0 0 0-.968 0c-.358.091-.668.334-1.29.82l-.886.694c-.62.485-.93.728-1.047 1.008a.975.975 0 0 0 0 .758c.116.28.427.523 1.047 1.009Zm5.91 4.625.887.694c.62.486.931.729 1.29.82.314.08.653.08.968 0 .358-.091.668-.334 1.288-.82l.887-.694c.62-.485.931-.728 1.047-1.008a.976.976 0 0 0 0-.758c-.116-.28-.426-.523-1.047-1.009l-.887-.694c-.62-.485-.93-.728-1.288-.82a1.984 1.984 0 0 0-.969 0c-.358.092-.668.335-1.289.82l-.886.694c-.621.486-.931.729-1.047 1.009a.975.975 0 0 0 0 .758c.116.28.426.523 1.047 1.008Zm-11.82 0 6.797 5.32c.62.486.93.728 1.289.82.315.08.653.08.968 0 .358-.092.668-.334 1.29-.82l.886-.694c.62-.486.93-.729 1.047-1.009a.974.974 0 0 0 0-.758c-.116-.28-.427-.523-1.047-1.008l-6.797-5.32c-.62-.485-.931-.728-1.29-.82a1.984 1.984 0 0 0-.968 0c-.358.092-.668.335-1.288.82l-.887.694c-.62.486-.931.729-1.047 1.009a.975.975 0 0 0 0 .758c.116.28.426.523 1.047 1.008Z" }) + ] + } + ); +}); + +export { SiBento as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.cjs new file mode 100644 index 000000000..a5b3bec2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15541"; +const SiBentobox = React__namespace.forwardRef(function SiBentobox2({ title = "BentoBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.406 3.821 2.723-2.725a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29l-2.723 2.723-5.368-5.366Zm7.407 7.407 2.723-2.723a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29l-2.725 2.723-5.369-5.368h.003ZM0 11.228l2.723-2.723a3.74 3.74 0 0 1 5.29 0l.079.078a3.742 3.742 0 0 1 0 5.29l-2.724 2.723L0 11.228Zm7.406 7.406 2.723-2.723a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29L12.774 24l-5.368-5.366Z" }) + ] + } + ); +}); + +exports.default = SiBentobox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.d.ts new file mode 100644 index 000000000..6aca6773f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15541"; +declare const SiBentobox: IconType; +export { SiBentobox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.mjs new file mode 100644 index 000000000..572bb9b7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentobox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15541"; +const SiBentobox = React.forwardRef(function SiBentobox2({ title = "BentoBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.406 3.821 2.723-2.725a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29l-2.723 2.723-5.368-5.366Zm7.407 7.407 2.723-2.723a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29l-2.725 2.723-5.369-5.368h.003ZM0 11.228l2.723-2.723a3.74 3.74 0 0 1 5.29 0l.079.078a3.742 3.742 0 0 1 0 5.29l-2.724 2.723L0 11.228Zm7.406 7.406 2.723-2.723a3.74 3.74 0 0 1 5.29 0l.078.078a3.74 3.74 0 0 1 0 5.29L12.774 24l-5.368-5.366Z" }) + ] + } + ); +}); + +export { SiBentobox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.cjs new file mode 100644 index 000000000..d7cb19d46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBentoml = React__namespace.forwardRef(function SiBentoml2({ title = "BentoML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.3 11a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2zm-4.4 0a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2zM5.67 0a1.2 1.2 0 0 0-.815.318L.386 4.444A1.2 1.2 0 0 0 0 5.325V22.4A1.6 1.6 0 0 0 1.6 24h17.048a1.2 1.2 0 0 0 .911-.42l4.152-4.843a1.2 1.2 0 0 0 .289-.781V1.6A1.6 1.6 0 0 0 22.4 0ZM6 .6h16.2a1.2 1.2 0 0 1 1.2 1.2v15.8a1.6 1.6 0 0 1-1.6 1.6H6A1.2 1.2 0 0 1 4.8 18V1.8A1.2 1.2 0 0 1 6 .6Z" }) + ] + } + ); +}); + +exports.default = SiBentoml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.d.ts new file mode 100644 index 000000000..7f5d80ead --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBentoml: IconType; +export { SiBentoml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.mjs new file mode 100644 index 000000000..935036b88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBentoml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBentoml = React.forwardRef(function SiBentoml2({ title = "BentoML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.3 11a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2zm-4.4 0a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2zM5.67 0a1.2 1.2 0 0 0-.815.318L.386 4.444A1.2 1.2 0 0 0 0 5.325V22.4A1.6 1.6 0 0 0 1.6 24h17.048a1.2 1.2 0 0 0 .911-.42l4.152-4.843a1.2 1.2 0 0 0 .289-.781V1.6A1.6 1.6 0 0 0 22.4 0ZM6 .6h16.2a1.2 1.2 0 0 1 1.2 1.2v15.8a1.6 1.6 0 0 1-1.6 1.6H6A1.2 1.2 0 0 1 4.8 18V1.8A1.2 1.2 0 0 1 6 .6Z" }) + ] + } + ); +}); + +export { SiBentoml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.cjs new file mode 100644 index 000000000..e7993bcf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBereal = React__namespace.forwardRef(function SiBereal2({ title = "BeReal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.501 10.727c.593 0 1.029.196 1.307.587.279.393.418.857.418 1.391v.312H5.674a.97.97 0 0 0 .343.596c.182.148.422.223.718.223.172 0 .327-.023.464-.066.163-.055.324-.119.48-.192l.297.733a1.73 1.73 0 0 1-.644.296c-.252.063-.46.093-.62.093-.656 0-1.172-.18-1.55-.537-.377-.36-.565-.84-.565-1.441 0-.603.17-1.086.51-1.45.342-.364.806-.545 1.394-.545Zm8.835 0c.593 0 1.028.196 1.307.587.278.393.417.857.417 1.391v.312h-2.552c.038.235.16.447.344.596.182.148.421.223.718.223.171 0 .326-.023.464-.066a4.53 4.53 0 0 0 .48-.192l.297.733a1.728 1.728 0 0 1-.644.296 2.67 2.67 0 0 1-.62.093c-.656 0-1.173-.18-1.55-.537-.377-.36-.566-.84-.566-1.441 0-.603.17-1.086.512-1.45.34-.364.805-.545 1.393-.545Zm3.875.041c.974 0 1.603.502 1.603 1.26v2.579h-1.027v-.561h-.02c-.215.385-.616.62-1.111.62-.756 0-1.265-.473-1.265-1.136v-.008c0-.683.53-1.083 1.465-1.144l.931-.055v-.231c0-.335-.217-.541-.618-.541-.383 0-.615.18-.664.421l-.007.03h-.939l.004-.04c.056-.696.653-1.194 1.648-1.194Zm4.789 2.8v1.039h-1.04v-1.039H24ZM1.982 9.308c.515 0 .934.114 1.257.34.322.225.484.607.484 1.14 0 .198-.046.376-.137.534-.09.16-.21.296-.355.41.24.125.436.294.59.506.153.213.23.483.23.81 0 .489-.171.871-.512 1.146-.34.275-.795.413-1.362.413H0V9.308h1.982Zm8.702 0c.578 0 1.072.133 1.483.398.411.265.617.675.617 1.231 0 .327-.085.609-.254.846a1.714 1.714 0 0 1-.652.549l1.304 2.275h-1.077l-1.124-2.025a3.626 3.626 0 0 1-.367.015h-.585v2.01H9.022V9.308h1.662ZM22.448 9.3v5.307h-1.076V9.3h1.076Zm-2.66 3.661-.777.049c-.397.025-.605.192-.605.46v.007c0 .277.229.442.584.442.46 0 .797-.294.797-.688l.001-.27ZM2.17 12.285H1.007v1.489h1.092c.27 0 .488-.063.652-.188a.622.622 0 0 0 .246-.53c0-.25-.076-.44-.226-.572-.151-.132-.352-.199-.601-.199Zm4.308-.694a.75.75 0 0 0-.523.19c-.14.128-.232.315-.273.558h1.584c-.052-.253-.146-.442-.281-.564a.73.73 0 0 0-.507-.184Zm8.834 0a.75.75 0 0 0-.523.19c-.14.128-.231.315-.273.558h1.585c-.053-.253-.146-.442-.281-.564a.73.73 0 0 0-.508-.184Zm-4.659-1.441h-.624v1.62h.64c.301 0 .551-.06.749-.182.198-.122.296-.324.296-.604 0-.297-.093-.51-.28-.639-.188-.13-.448-.195-.781-.195Zm-8.819 0h-.827v1.316h.749c.281 0 .5-.053.66-.16.158-.105.238-.273.238-.501 0-.25-.073-.422-.219-.515-.146-.093-.346-.14-.601-.14Z" }) + ] + } + ); +}); + +exports.default = SiBereal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.d.ts new file mode 100644 index 000000000..b1df35797 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBereal: IconType; +export { SiBereal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.mjs new file mode 100644 index 000000000..1bd0f52ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBereal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBereal = React.forwardRef(function SiBereal2({ title = "BeReal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.501 10.727c.593 0 1.029.196 1.307.587.279.393.418.857.418 1.391v.312H5.674a.97.97 0 0 0 .343.596c.182.148.422.223.718.223.172 0 .327-.023.464-.066.163-.055.324-.119.48-.192l.297.733a1.73 1.73 0 0 1-.644.296c-.252.063-.46.093-.62.093-.656 0-1.172-.18-1.55-.537-.377-.36-.565-.84-.565-1.441 0-.603.17-1.086.51-1.45.342-.364.806-.545 1.394-.545Zm8.835 0c.593 0 1.028.196 1.307.587.278.393.417.857.417 1.391v.312h-2.552c.038.235.16.447.344.596.182.148.421.223.718.223.171 0 .326-.023.464-.066a4.53 4.53 0 0 0 .48-.192l.297.733a1.728 1.728 0 0 1-.644.296 2.67 2.67 0 0 1-.62.093c-.656 0-1.173-.18-1.55-.537-.377-.36-.566-.84-.566-1.441 0-.603.17-1.086.512-1.45.34-.364.805-.545 1.393-.545Zm3.875.041c.974 0 1.603.502 1.603 1.26v2.579h-1.027v-.561h-.02c-.215.385-.616.62-1.111.62-.756 0-1.265-.473-1.265-1.136v-.008c0-.683.53-1.083 1.465-1.144l.931-.055v-.231c0-.335-.217-.541-.618-.541-.383 0-.615.18-.664.421l-.007.03h-.939l.004-.04c.056-.696.653-1.194 1.648-1.194Zm4.789 2.8v1.039h-1.04v-1.039H24ZM1.982 9.308c.515 0 .934.114 1.257.34.322.225.484.607.484 1.14 0 .198-.046.376-.137.534-.09.16-.21.296-.355.41.24.125.436.294.59.506.153.213.23.483.23.81 0 .489-.171.871-.512 1.146-.34.275-.795.413-1.362.413H0V9.308h1.982Zm8.702 0c.578 0 1.072.133 1.483.398.411.265.617.675.617 1.231 0 .327-.085.609-.254.846a1.714 1.714 0 0 1-.652.549l1.304 2.275h-1.077l-1.124-2.025a3.626 3.626 0 0 1-.367.015h-.585v2.01H9.022V9.308h1.662ZM22.448 9.3v5.307h-1.076V9.3h1.076Zm-2.66 3.661-.777.049c-.397.025-.605.192-.605.46v.007c0 .277.229.442.584.442.46 0 .797-.294.797-.688l.001-.27ZM2.17 12.285H1.007v1.489h1.092c.27 0 .488-.063.652-.188a.622.622 0 0 0 .246-.53c0-.25-.076-.44-.226-.572-.151-.132-.352-.199-.601-.199Zm4.308-.694a.75.75 0 0 0-.523.19c-.14.128-.232.315-.273.558h1.584c-.052-.253-.146-.442-.281-.564a.73.73 0 0 0-.507-.184Zm8.834 0a.75.75 0 0 0-.523.19c-.14.128-.231.315-.273.558h1.585c-.053-.253-.146-.442-.281-.564a.73.73 0 0 0-.508-.184Zm-4.659-1.441h-.624v1.62h.64c.301 0 .551-.06.749-.182.198-.122.296-.324.296-.604 0-.297-.093-.51-.28-.639-.188-.13-.448-.195-.781-.195Zm-8.819 0h-.827v1.316h.749c.281 0 .5-.053.66-.16.158-.105.238-.273.238-.501 0-.25-.073-.422-.219-.515-.146-.093-.346-.14-.601-.14Z" }) + ] + } + ); +}); + +export { SiBereal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.cjs new file mode 100644 index 000000000..b7dd9e9aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB80B"; +const SiBetfair = React__namespace.forwardRef(function SiBetfair2({ title = "Betfair", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.218 3.14h-7.083v3.6H9.352l7.359 8.582L24 6.67h-3.782zM0 17.26h3.782v3.6h7.083v-3.6h3.783l-7.29-8.583z" }) + ] + } + ); +}); + +exports.default = SiBetfair; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.d.ts new file mode 100644 index 000000000..02c973d3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB80B"; +declare const SiBetfair: IconType; +export { SiBetfair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.mjs new file mode 100644 index 000000000..bc35d559d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetfair.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB80B"; +const SiBetfair = React.forwardRef(function SiBetfair2({ title = "Betfair", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.218 3.14h-7.083v3.6H9.352l7.359 8.582L24 6.67h-3.782zM0 17.26h3.782v3.6h7.083v-3.6h3.783l-7.29-8.583z" }) + ] + } + ); +}); + +export { SiBetfair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.cjs new file mode 100644 index 000000000..4e11b8d50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiBetterauth = React__namespace.forwardRef(function SiBetterauth2({ title = "Better Auth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.39v17.22h5.783V15.06h6.434V8.939H5.783V3.39ZM12.217 8.94h5.638v6.122h-5.638v5.548H24V3.391H12.217Z" }) + ] + } + ); +}); + +exports.default = SiBetterauth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.d.ts new file mode 100644 index 000000000..8fa572946 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiBetterauth: IconType; +export { SiBetterauth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.mjs new file mode 100644 index 000000000..b92091e6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterauth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiBetterauth = React.forwardRef(function SiBetterauth2({ title = "Better Auth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.39v17.22h5.783V15.06h6.434V8.939H5.783V3.39ZM12.217 8.94h5.638v6.122h-5.638v5.548H24V3.391H12.217Z" }) + ] + } + ); +}); + +export { SiBetterauth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.cjs new file mode 100644 index 000000000..84548861e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3E82E5"; +const SiBetterdiscord = React__namespace.forwardRef(function SiBetterdiscord2({ title = "BetterDiscord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.393.861q.514.258.964.57a6.6 6.6 0 0 1 2.122 2.387c.513.987.792 2.133.828 3.409v9.556c-.035 1.275-.313 2.422-.828 3.408a6.6 6.6 0 0 1-2.122 2.387 8 8 0 0 1-.933.555h.933c4.46.024 8.643-2.205 8.643-7.315V8.352c.024-5.21-4.16-7.49-8.62-7.49zM0 .867v9.197l5.693 5.127V5.44h3.31c3.537 0 3.537 4.444 0 4.444H6.817v4.244h2.188c3.536 0 3.536 4.441 0 4.441H0v4.57h8.904c4.59 0 8.151-1.836 8.278-6.388 0-2.094-.574-3.66-1.584-4.748 1.01-1.087 1.584-2.652 1.584-4.746-.125-4.553-3.687-6.39-8.278-6.39z" }) + ] + } + ); +}); + +exports.default = SiBetterdiscord; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.d.ts new file mode 100644 index 000000000..55ee43512 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3E82E5"; +declare const SiBetterdiscord: IconType; +export { SiBetterdiscord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.mjs new file mode 100644 index 000000000..1af553909 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterdiscord.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3E82E5"; +const SiBetterdiscord = React.forwardRef(function SiBetterdiscord2({ title = "BetterDiscord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.393.861q.514.258.964.57a6.6 6.6 0 0 1 2.122 2.387c.513.987.792 2.133.828 3.409v9.556c-.035 1.275-.313 2.422-.828 3.408a6.6 6.6 0 0 1-2.122 2.387 8 8 0 0 1-.933.555h.933c4.46.024 8.643-2.205 8.643-7.315V8.352c.024-5.21-4.16-7.49-8.62-7.49zM0 .867v9.197l5.693 5.127V5.44h3.31c3.537 0 3.537 4.444 0 4.444H6.817v4.244h2.188c3.536 0 3.536 4.441 0 4.441H0v4.57h8.904c4.59 0 8.151-1.836 8.278-6.388 0-2.094-.574-3.66-1.584-4.748 1.01-1.087 1.584-2.652 1.584-4.746-.125-4.553-3.687-6.39-8.278-6.39z" }) + ] + } + ); +}); + +export { SiBetterdiscord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.cjs new file mode 100644 index 000000000..8596c7416 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBetterstack = React__namespace.forwardRef(function SiBetterstack2({ title = "Better Stack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.7792 10.7479-.7654 6.6384a2.0957 2.0957 0 0 0 .696 1.8122l1.8965 1.672c.6494.5725 1.658.0145 1.5185-.84L2.6039 10.705c-.1723-1.056-1.7022-1.02-1.8247.0429Zm12.3733 8.714L8.63 6.431c-.5023-1.4472-2.6082-1.3845-3.0203.0898l-1.376 4.9234c-.156.559-.216.8822.0005 1.4212h.5225l1.8993 6.0694c.294.7324.9017 1.3009 1.6611 1.5538l2.8315.9435c1.2417.4137 2.4268-.7513 2.004-1.97zm10.6297-1.0332L15.7907 3.4433c-.6971-1.3072-2.5779-1.2727-3.227.0589l-1.9652 3.9555c-.2375.487-.1274.6608.07.9435.1585.2268.526.2447.6758.012.147-.2287.488-.2076.6058.0375l5.1379 10.687a2.735 2.735 0 0 0 2.1416 1.6016l2.7183.3476c1.4628.1924 2.5299-1.3539 1.8343-2.6582z" }) + ] + } + ); +}); + +exports.default = SiBetterstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.d.ts new file mode 100644 index 000000000..e5207f3e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBetterstack: IconType; +export { SiBetterstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.mjs new file mode 100644 index 000000000..d339ecfcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBetterstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBetterstack = React.forwardRef(function SiBetterstack2({ title = "Better Stack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.7792 10.7479-.7654 6.6384a2.0957 2.0957 0 0 0 .696 1.8122l1.8965 1.672c.6494.5725 1.658.0145 1.5185-.84L2.6039 10.705c-.1723-1.056-1.7022-1.02-1.8247.0429Zm12.3733 8.714L8.63 6.431c-.5023-1.4472-2.6082-1.3845-3.0203.0898l-1.376 4.9234c-.156.559-.216.8822.0005 1.4212h.5225l1.8993 6.0694c.294.7324.9017 1.3009 1.6611 1.5538l2.8315.9435c1.2417.4137 2.4268-.7513 2.004-1.97zm10.6297-1.0332L15.7907 3.4433c-.6971-1.3072-2.5779-1.2727-3.227.0589l-1.9652 3.9555c-.2375.487-.1274.6608.07.9435.1585.2268.526.2447.6758.012.147-.2287.488-.2076.6058.0375l5.1379 10.687a2.735 2.735 0 0 0 2.1416 1.6016l2.7183.3476c1.4628.1924 2.5299-1.3539 1.8343-2.6582z" }) + ] + } + ); +}); + +export { SiBetterstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.cjs new file mode 100644 index 000000000..cc8810ee1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#232326"; +const SiBevy = React__namespace.forwardRef(function SiBevy2({ title = "Bevy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.8 6.271a3.149 3.149 0 0 0-.765.081c-.018.004-.033.01-.05.013-.29.288-.616.576-.963.859.115.536.308 1.053.572 1.534.51.913.93 1.402 1.175 2.036.247.633.29 1.38.06 2.737-.283 1.685-1.307 3.469-2.933 4.785 1.262-.368 2.337-1.047 3.049-1.87.769-.887 1.025-1.39 1.115-1.895.09-.506.006-1.061.04-2.003.024-.547.131-1.088.318-1.603l.04-.112.117-.015c1.052-.137 2.003-.406 2.494-.722-.158-.71-.828-1.26-1.717-1.68l-.084-.04-.021-.09c-.282-1.209-1.226-1.989-2.448-2.015Zm.61 1.494c.064 0 .126.01.185.028a.622.622 0 0 1 .396.786.622.622 0 0 1-.778.412.622.622 0 0 1-.396-.787.627.627 0 0 1 .594-.439zm-5.69-4.61c-.764-.006-1.547.3-2.22.952-.884.858-1.158 1.63-1.003 2.594l.042.265-.263-.043c-1.942-.315-4.345-.156-7.078.95.804.344 2.278.919 3.915 1.704l.52.25-.565.115C4.907 10.38 2.342 11.645 0 14.407c1.048-.082 3.189-.334 5.423-.33 1.241.002 2.465.088 3.462.346.996.258 1.903.85 2.03 1.283.128.433.055.662-.07 1-.126.34-.512.854-1.048 1.194-.534.341-1.213.638-1.92.89-1.41.505-2.91.828-3.573.89-.14.013-.197.063-.25.162a.972.972 0 0 0-.09.416c-.006.215.028.329.09.414.06.086.156.12.254.127 4.165.281 7.278-.766 9.54-1.663 2.6-1.193 4.244-3.548 4.601-5.668.224-1.329.176-1.98-.04-2.534-.216-.555-.629-1.047-1.153-1.988a6.15 6.15 0 0 1-.642-1.75l-.024-.116.092-.074c.964-.772 1.75-1.615 2.034-2.23-.585-.622-1.594-.753-2.726-.632l-.092.01-.066-.067c-.602-.614-1.35-.929-2.113-.933Zm.337 1.434a.717.717 0 0 1 .704.553.712.712 0 0 1-.517.865.713.713 0 0 1-.856-.533.713.713 0 0 1 .669-.885Zm6.677 6.669h-.006c-.14.421-.221.86-.241 1.303-.034.911.058 1.465-.047 2.056-.105.59-.414 1.17-1.204 2.08-.937 1.085-2.424 1.924-4.143 2.207a8.908 8.908 0 0 1-1.012.559c1.337.503 2.736.531 3.844.166 1.953-.64 1.802-1.101 2.677-2.442.276-.422.594-.745.913-1.01.911.398 1.808.652 2.366.59.301-.697-.006-1.505-.517-2.27.419-1.303-.218-2.606-1.628-3.068a3.043 3.043 0 0 0-1.002-.171zM22.2 13.35c.194.22.169.56-.057.758a.538.538 0 0 1-.759-.042.538.538 0 0 1 .055-.759.56.56 0 0 1 .366-.136.523.523 0 0 1 .395.179z" }) + ] + } + ); +}); + +exports.default = SiBevy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.d.ts new file mode 100644 index 000000000..dda0f52e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#232326"; +declare const SiBevy: IconType; +export { SiBevy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.mjs new file mode 100644 index 000000000..c80f4b3e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBevy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#232326"; +const SiBevy = React.forwardRef(function SiBevy2({ title = "Bevy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.8 6.271a3.149 3.149 0 0 0-.765.081c-.018.004-.033.01-.05.013-.29.288-.616.576-.963.859.115.536.308 1.053.572 1.534.51.913.93 1.402 1.175 2.036.247.633.29 1.38.06 2.737-.283 1.685-1.307 3.469-2.933 4.785 1.262-.368 2.337-1.047 3.049-1.87.769-.887 1.025-1.39 1.115-1.895.09-.506.006-1.061.04-2.003.024-.547.131-1.088.318-1.603l.04-.112.117-.015c1.052-.137 2.003-.406 2.494-.722-.158-.71-.828-1.26-1.717-1.68l-.084-.04-.021-.09c-.282-1.209-1.226-1.989-2.448-2.015Zm.61 1.494c.064 0 .126.01.185.028a.622.622 0 0 1 .396.786.622.622 0 0 1-.778.412.622.622 0 0 1-.396-.787.627.627 0 0 1 .594-.439zm-5.69-4.61c-.764-.006-1.547.3-2.22.952-.884.858-1.158 1.63-1.003 2.594l.042.265-.263-.043c-1.942-.315-4.345-.156-7.078.95.804.344 2.278.919 3.915 1.704l.52.25-.565.115C4.907 10.38 2.342 11.645 0 14.407c1.048-.082 3.189-.334 5.423-.33 1.241.002 2.465.088 3.462.346.996.258 1.903.85 2.03 1.283.128.433.055.662-.07 1-.126.34-.512.854-1.048 1.194-.534.341-1.213.638-1.92.89-1.41.505-2.91.828-3.573.89-.14.013-.197.063-.25.162a.972.972 0 0 0-.09.416c-.006.215.028.329.09.414.06.086.156.12.254.127 4.165.281 7.278-.766 9.54-1.663 2.6-1.193 4.244-3.548 4.601-5.668.224-1.329.176-1.98-.04-2.534-.216-.555-.629-1.047-1.153-1.988a6.15 6.15 0 0 1-.642-1.75l-.024-.116.092-.074c.964-.772 1.75-1.615 2.034-2.23-.585-.622-1.594-.753-2.726-.632l-.092.01-.066-.067c-.602-.614-1.35-.929-2.113-.933Zm.337 1.434a.717.717 0 0 1 .704.553.712.712 0 0 1-.517.865.713.713 0 0 1-.856-.533.713.713 0 0 1 .669-.885Zm6.677 6.669h-.006c-.14.421-.221.86-.241 1.303-.034.911.058 1.465-.047 2.056-.105.59-.414 1.17-1.204 2.08-.937 1.085-2.424 1.924-4.143 2.207a8.908 8.908 0 0 1-1.012.559c1.337.503 2.736.531 3.844.166 1.953-.64 1.802-1.101 2.677-2.442.276-.422.594-.745.913-1.01.911.398 1.808.652 2.366.59.301-.697-.006-1.505-.517-2.27.419-1.303-.218-2.606-1.628-3.068a3.043 3.043 0 0 0-1.002-.171zM22.2 13.35c.194.22.169.56-.057.758a.538.538 0 0 1-.759-.042.538.538 0 0 1 .055-.759.56.56 0 0 1 .366-.136.523.523 0 0 1 .395.179z" }) + ] + } + ); +}); + +export { SiBevy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.cjs new file mode 100644 index 000000000..25cf9d734 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A5CD39"; +const SiBigbasket = React__namespace.forwardRef(function SiBigbasket2({ title = "bigbasket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.543 12.989a3.352 3.352 0 0 0-.871-1.375 2.251 2.251 0 0 0-1.474-.503 2.276 2.276 0 0 0-1.541.536 2.953 2.953 0 0 0-.973 1.375 5.609 5.609 0 0 0-.335 1.845 5.42 5.42 0 0 0 .335 1.809c.192.548.528 1.034.973 1.407.441.339.985.516 1.541.503a2.08 2.08 0 0 0 1.945-1.072h-.002a4.92 4.92 0 0 0 .67-2.649 6.477 6.477 0 0 0-.268-1.876zM20.381.033H3.587A3.584 3.584 0 0 0 0 3.585V20.38a3.59 3.59 0 0 0 3.587 3.586h16.794c1.986 0 3.601-1.6 3.619-3.586V3.585A3.614 3.614 0 0 0 20.381.033zM10.64 3.034h1.911v5.744a3.47 3.47 0 0 0-1.911-.584v-5.16zm-.438 17.93a5.586 5.586 0 0 1-2.278-.369 3.522 3.522 0 0 1-1.174-.804 4.18 4.18 0 0 1-.335-.536l-.033-.134v.302C6.281 21.266 3.4 20.931 3.4 20.931V3.034h3.15v7.442h.034a3.675 3.675 0 0 1 1.541-1.309 4.825 4.825 0 0 1 2.079-.435 4.197 4.197 0 0 1 2.649.871 5.263 5.263 0 0 1 1.675 2.278v-.001c.372.951.565 1.963.569 2.984a8.418 8.418 0 0 1-.571 2.984 5.47 5.47 0 0 1-1.675 2.278 4.161 4.161 0 0 1-2.649.838zm9.828-3.111a5.47 5.47 0 0 1-1.675 2.278 4.173 4.173 0 0 1-2.649.838 5.587 5.587 0 0 1-2.278-.37 4.85 4.85 0 0 1-.362-.186c.444-.36.837-.778 1.168-1.245.353.127.726.189 1.101.185 2.38 0 3.15-2.502 3.15-4.484 0-1.96-.721-4.523-3.15-4.523a3.058 3.058 0 0 0-1.021.163 6.349 6.349 0 0 0-1.017-1.166c.107-.063.218-.121.331-.176a4.72 4.72 0 0 1 6.403 2.715l-.001.004c.373.951.566 1.963.571 2.984a8.409 8.409 0 0 1-.571 2.983z" }) + ] + } + ); +}); + +exports.default = SiBigbasket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.d.ts new file mode 100644 index 000000000..02cc678f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A5CD39"; +declare const SiBigbasket: IconType; +export { SiBigbasket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.mjs new file mode 100644 index 000000000..6cafa1394 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbasket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A5CD39"; +const SiBigbasket = React.forwardRef(function SiBigbasket2({ title = "bigbasket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.543 12.989a3.352 3.352 0 0 0-.871-1.375 2.251 2.251 0 0 0-1.474-.503 2.276 2.276 0 0 0-1.541.536 2.953 2.953 0 0 0-.973 1.375 5.609 5.609 0 0 0-.335 1.845 5.42 5.42 0 0 0 .335 1.809c.192.548.528 1.034.973 1.407.441.339.985.516 1.541.503a2.08 2.08 0 0 0 1.945-1.072h-.002a4.92 4.92 0 0 0 .67-2.649 6.477 6.477 0 0 0-.268-1.876zM20.381.033H3.587A3.584 3.584 0 0 0 0 3.585V20.38a3.59 3.59 0 0 0 3.587 3.586h16.794c1.986 0 3.601-1.6 3.619-3.586V3.585A3.614 3.614 0 0 0 20.381.033zM10.64 3.034h1.911v5.744a3.47 3.47 0 0 0-1.911-.584v-5.16zm-.438 17.93a5.586 5.586 0 0 1-2.278-.369 3.522 3.522 0 0 1-1.174-.804 4.18 4.18 0 0 1-.335-.536l-.033-.134v.302C6.281 21.266 3.4 20.931 3.4 20.931V3.034h3.15v7.442h.034a3.675 3.675 0 0 1 1.541-1.309 4.825 4.825 0 0 1 2.079-.435 4.197 4.197 0 0 1 2.649.871 5.263 5.263 0 0 1 1.675 2.278v-.001c.372.951.565 1.963.569 2.984a8.418 8.418 0 0 1-.571 2.984 5.47 5.47 0 0 1-1.675 2.278 4.161 4.161 0 0 1-2.649.838zm9.828-3.111a5.47 5.47 0 0 1-1.675 2.278 4.173 4.173 0 0 1-2.649.838 5.587 5.587 0 0 1-2.278-.37 4.85 4.85 0 0 1-.362-.186c.444-.36.837-.778 1.168-1.245.353.127.726.189 1.101.185 2.38 0 3.15-2.502 3.15-4.484 0-1.96-.721-4.523-3.15-4.523a3.058 3.058 0 0 0-1.021.163 6.349 6.349 0 0 0-1.017-1.166c.107-.063.218-.121.331-.176a4.72 4.72 0 0 1 6.403 2.715l-.001.004c.373.951.566 1.963.571 2.984a8.409 8.409 0 0 1-.571 2.983z" }) + ] + } + ); +}); + +export { SiBigbasket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.cjs new file mode 100644 index 000000000..4a67b244d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#283274"; +const SiBigbluebutton = React__namespace.forwardRef(function SiBigbluebutton2({ title = "BigBlueButton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM6.838 4.516c.743 0 1.378.364 1.904 1.091.526.728.787 1.602.787 2.625v6.76c0 .539.27.809.809.809h4.174c.538 0 .808-.27.808-.809v-3.205c0-.52-.27-.788-.808-.807h-.807c-1.041-.036-1.923-.308-2.64-.816-.719-.507-1.077-1.133-1.077-1.877h4.524c.97 0 1.796.342 2.478 1.024a3.374 3.374 0 0 1 1.024 2.476v3.205c0 .97-.342 1.797-1.024 2.479-.682.682-1.509 1.021-2.478 1.021h-4.174c-.97 0-1.795-.339-2.477-1.021a3.376 3.376 0 0 1-1.023-2.479V4.516Z" }) + ] + } + ); +}); + +exports.default = SiBigbluebutton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.d.ts new file mode 100644 index 000000000..1dca73b7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#283274"; +declare const SiBigbluebutton: IconType; +export { SiBigbluebutton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.mjs new file mode 100644 index 000000000..637276a9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigbluebutton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#283274"; +const SiBigbluebutton = React.forwardRef(function SiBigbluebutton2({ title = "BigBlueButton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM6.838 4.516c.743 0 1.378.364 1.904 1.091.526.728.787 1.602.787 2.625v6.76c0 .539.27.809.809.809h4.174c.538 0 .808-.27.808-.809v-3.205c0-.52-.27-.788-.808-.807h-.807c-1.041-.036-1.923-.308-2.64-.816-.719-.507-1.077-1.133-1.077-1.877h4.524c.97 0 1.796.342 2.478 1.024a3.374 3.374 0 0 1 1.024 2.476v3.205c0 .97-.342 1.797-1.024 2.479-.682.682-1.509 1.021-2.478 1.021h-4.174c-.97 0-1.795-.339-2.477-1.021a3.376 3.376 0 0 1-1.023-2.479V4.516Z" }) + ] + } + ); +}); + +export { SiBigbluebutton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.cjs new file mode 100644 index 000000000..42beae1f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const SiBigcartel = React__namespace.forwardRef(function SiBigcartel2({ title = "Big Cartel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 13.068v-1.006c0-.63.252-1.256.88-1.508l7.79-4.9c.503-.252.755-.88.755-1.51V0L12 6.03 2.575 0v12.69c0 3.394 1.51 6.284 4.02 7.917L11.875 24l5.28-3.393c2.513-1.51 4.02-4.398 4.02-7.916V7.036L12 13.068z" }) + ] + } + ); +}); + +exports.default = SiBigcartel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.d.ts new file mode 100644 index 000000000..94d76edb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const SiBigcartel: IconType; +export { SiBigcartel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.mjs new file mode 100644 index 000000000..5f9f956cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcartel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const SiBigcartel = React.forwardRef(function SiBigcartel2({ title = "Big Cartel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 13.068v-1.006c0-.63.252-1.256.88-1.508l7.79-4.9c.503-.252.755-.88.755-1.51V0L12 6.03 2.575 0v12.69c0 3.394 1.51 6.284 4.02 7.917L11.875 24l5.28-3.393c2.513-1.51 4.02-4.398 4.02-7.916V7.036L12 13.068z" }) + ] + } + ); +}); + +export { SiBigcartel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.cjs new file mode 100644 index 000000000..28da707bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#121118"; +const SiBigcommerce = React__namespace.forwardRef(function SiBigcommerce2({ title = "BigCommerce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.645 13.663h3.027c.861 0 1.406-.474 1.406-1.235 0-.717-.545-1.234-1.406-1.234h-3.027c-.1 0-.187.086-.187.172v2.125c.015.1.086.172.187.172zm0 4.896h3.128c.961 0 1.535-.488 1.535-1.35 0-.746-.545-1.35-1.535-1.35h-3.128c-.1 0-.187.087-.187.173v2.34c.015.115.086.187.187.187zM23.72.053l-8.953 8.93h1.464c2.281 0 3.63 1.435 3.63 3 0 1.235-.832 2.14-1.722 2.541-.143.058-.143.259.014.316 1.033.402 1.765 1.48 1.765 2.742 0 1.78-1.19 3.202-3.5 3.202h-6.342c-.1 0-.187-.086-.187-.172V13.85L.062 23.64c-.13.13-.043.359.143.359h23.631a.16.16 0 0 0 .158-.158V.182c.043-.158-.158-.244-.273-.13z" }) + ] + } + ); +}); + +exports.default = SiBigcommerce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.d.ts new file mode 100644 index 000000000..0be825447 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#121118"; +declare const SiBigcommerce: IconType; +export { SiBigcommerce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.mjs new file mode 100644 index 000000000..f3116c2f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBigcommerce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#121118"; +const SiBigcommerce = React.forwardRef(function SiBigcommerce2({ title = "BigCommerce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.645 13.663h3.027c.861 0 1.406-.474 1.406-1.235 0-.717-.545-1.234-1.406-1.234h-3.027c-.1 0-.187.086-.187.172v2.125c.015.1.086.172.187.172zm0 4.896h3.128c.961 0 1.535-.488 1.535-1.35 0-.746-.545-1.35-1.535-1.35h-3.128c-.1 0-.187.087-.187.173v2.34c.015.115.086.187.187.187zM23.72.053l-8.953 8.93h1.464c2.281 0 3.63 1.435 3.63 3 0 1.235-.832 2.14-1.722 2.541-.143.058-.143.259.014.316 1.033.402 1.765 1.48 1.765 2.742 0 1.78-1.19 3.202-3.5 3.202h-6.342c-.1 0-.187-.086-.187-.172V13.85L.062 23.64c-.13.13-.043.359.143.359h23.631a.16.16 0 0 0 .158-.158V.182c.043-.158-.158-.244-.273-.13z" }) + ] + } + ); +}); + +export { SiBigcommerce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.cjs new file mode 100644 index 000000000..153ea6f20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A1D6"; +const SiBilibili = React__namespace.forwardRef(function SiBilibili2({ title = "Bilibili", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.813 4.653h.854c1.51.054 2.769.578 3.773 1.574 1.004.995 1.524 2.249 1.56 3.76v7.36c-.036 1.51-.556 2.769-1.56 3.773s-2.262 1.524-3.773 1.56H5.333c-1.51-.036-2.769-.556-3.773-1.56S.036 18.858 0 17.347v-7.36c.036-1.511.556-2.765 1.56-3.76 1.004-.996 2.262-1.52 3.773-1.574h.774l-1.174-1.12a1.234 1.234 0 0 1-.373-.906c0-.356.124-.658.373-.907l.027-.027c.267-.249.573-.373.92-.373.347 0 .653.124.92.373L9.653 4.44c.071.071.134.142.187.213h4.267a.836.836 0 0 1 .16-.213l2.853-2.747c.267-.249.573-.373.92-.373.347 0 .662.151.929.4.267.249.391.551.391.907 0 .355-.124.657-.373.906zM5.333 7.24c-.746.018-1.373.276-1.88.773-.506.498-.769 1.13-.786 1.894v7.52c.017.764.28 1.395.786 1.893.507.498 1.134.756 1.88.773h13.334c.746-.017 1.373-.275 1.88-.773.506-.498.769-1.129.786-1.893v-7.52c-.017-.765-.28-1.396-.786-1.894-.507-.497-1.134-.755-1.88-.773zM8 11.107c.373 0 .684.124.933.373.25.249.383.569.4.96v1.173c-.017.391-.15.711-.4.96-.249.25-.56.374-.933.374s-.684-.125-.933-.374c-.25-.249-.383-.569-.4-.96V12.44c0-.373.129-.689.386-.947.258-.257.574-.386.947-.386zm8 0c.373 0 .684.124.933.373.25.249.383.569.4.96v1.173c-.017.391-.15.711-.4.96-.249.25-.56.374-.933.374s-.684-.125-.933-.374c-.25-.249-.383-.569-.4-.96V12.44c.017-.391.15-.711.4-.96.249-.249.56-.373.933-.373Z" }) + ] + } + ); +}); + +exports.default = SiBilibili; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.d.ts new file mode 100644 index 000000000..5eecabc30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A1D6"; +declare const SiBilibili: IconType; +export { SiBilibili as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.mjs new file mode 100644 index 000000000..aae7f5d2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBilibili.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A1D6"; +const SiBilibili = React.forwardRef(function SiBilibili2({ title = "Bilibili", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.813 4.653h.854c1.51.054 2.769.578 3.773 1.574 1.004.995 1.524 2.249 1.56 3.76v7.36c-.036 1.51-.556 2.769-1.56 3.773s-2.262 1.524-3.773 1.56H5.333c-1.51-.036-2.769-.556-3.773-1.56S.036 18.858 0 17.347v-7.36c.036-1.511.556-2.765 1.56-3.76 1.004-.996 2.262-1.52 3.773-1.574h.774l-1.174-1.12a1.234 1.234 0 0 1-.373-.906c0-.356.124-.658.373-.907l.027-.027c.267-.249.573-.373.92-.373.347 0 .653.124.92.373L9.653 4.44c.071.071.134.142.187.213h4.267a.836.836 0 0 1 .16-.213l2.853-2.747c.267-.249.573-.373.92-.373.347 0 .662.151.929.4.267.249.391.551.391.907 0 .355-.124.657-.373.906zM5.333 7.24c-.746.018-1.373.276-1.88.773-.506.498-.769 1.13-.786 1.894v7.52c.017.764.28 1.395.786 1.893.507.498 1.134.756 1.88.773h13.334c.746-.017 1.373-.275 1.88-.773.506-.498.769-1.129.786-1.893v-7.52c-.017-.765-.28-1.396-.786-1.894-.507-.497-1.134-.755-1.88-.773zM8 11.107c.373 0 .684.124.933.373.25.249.383.569.4.96v1.173c-.017.391-.15.711-.4.96-.249.25-.56.374-.933.374s-.684-.125-.933-.374c-.25-.249-.383-.569-.4-.96V12.44c0-.373.129-.689.386-.947.258-.257.574-.386.947-.386zm8 0c.373 0 .684.124.933.373.25.249.383.569.4.96v1.173c-.017.391-.15.711-.4.96-.249.25-.56.374-.933.374s-.684-.125-.933-.374c-.25-.249-.383-.569-.4-.96V12.44c.017-.391.15-.711.4-.96.249-.249.56-.373.933-.373Z" }) + ] + } + ); +}); + +export { SiBilibili as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.cjs new file mode 100644 index 000000000..e82e48fcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBillboard = React__namespace.forwardRef(function SiBillboard2({ title = "Billboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.69685 11.02465h1.12413v3.41864H3.69685Zm1.35662-1.33669h1.12381v4.75533H5.05347Zm1.35641 0H7.5337v4.75533H6.40988Zm13.22037 1.68925v-.35256h-1.12397v3.41864h1.12397v-1.6293c0-.41916.21904-.64528.61843-.64528h.133v-1.17728c-.33918.01334-.58533.11975-.75143.38579zM4.2588 9.50287c-.35974 0-.65171.29187-.65171.65182 0 .35994.29197.65192.6517.65192.36006 0 .65182-.29198.65182-.65192 0-.35995-.29176-.65182-.65181-.65182zm12.89058 1.78207c-.15798-.17233-.52558-.31455-.80468-.31455-.84888 0-1.45782.55964-1.6069 1.39153-.1625-.79809-.8581-1.41215-1.70633-1.41215-.85636 0-1.55753.62123-1.71082 1.4343-.1488-.84507-.81354-1.40519-1.6379-1.40519-.30589 0-.55874.06655-.7783.21936v-1.5097H7.78063v4.75528h1.10409v-.3127c.26603.24615.55194.3592.90456.3592.75922 0 1.39843-.59433 1.53517-1.41357.1611.80168.85261 1.4111 1.70707 1.4111.84713 0 1.52653-.5965 1.69943-1.37761.14296.8532.81898 1.38689 1.62698 1.38689.2791 0 .58527-.0934.79145-.24615v.19284h1.12381v-1.49616a8.92817 8.92817 0 0 0-.0016-.1796 8.7632 8.7632 0 0 0 .0016-.17955v-1.55806H17.1494zm-7.58627 2.11732c-.35995 0-.6517-.29187-.6517-.65192 0-.35984.29175-.65165.6517-.65165.35984 0 .6517.29181.6517.65165.00006.36005-.2918.65192-.6517.65192zm3.46836-.0522c-.35973 0-.65181-.29208-.65181-.65192 0-.35978.29208-.65165.65181-.65165.35984 0 .6517.29187.6517.65165.00006.35979-.2917.65192-.6517.65192zm3.3773.02067c-.35995 0-.65145-.29208-.65145-.65192 0-.35978.29145-.65165.65145-.65165.36026 0 .6517.29187.6517.65165.00006.35984-.29144.65192-.6517.65192zm6.46693-3.6833v1.50976c-.21915-.15292-.4719-.21936-.77816-.21936-.93767 0-1.66916.72485-1.66916 1.76914 0 .98418.70492 1.7424 1.56307 1.7424.35224 0 .6382-.11315.90445-.35915v.3126H24V9.68743Zm-.66194 3.7064c-.35947 0-.65144-.29208-.65144-.65166 0-.36005.29187-.65202.65144-.65202.36005 0 .65192.29197.65192.65202 0 .35958-.29187.65166-.65192.65166zm-20.31164-2.415c-.306 0-.55864.06655-.77832.21936V9.68854H0v4.75528h1.10399v-.3127c.26603.24615.55204.3592.90466.3592.85783 0 1.5628-.75843 1.5628-1.74261 0-1.04393-.7316-1.76888-1.66932-1.76888zm-.11965 2.42343c-.35984 0-.6517-.29187-.6517-.65192 0-.35984.29186-.65165.6517-.65165.35995 0 .65171.29181.65171.65165 0 .36005-.29176.65192-.6517.65192z" }) + ] + } + ); +}); + +exports.default = SiBillboard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.d.ts new file mode 100644 index 000000000..a295d9515 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBillboard: IconType; +export { SiBillboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.mjs new file mode 100644 index 000000000..55fcabcfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBillboard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBillboard = React.forwardRef(function SiBillboard2({ title = "Billboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.69685 11.02465h1.12413v3.41864H3.69685Zm1.35662-1.33669h1.12381v4.75533H5.05347Zm1.35641 0H7.5337v4.75533H6.40988Zm13.22037 1.68925v-.35256h-1.12397v3.41864h1.12397v-1.6293c0-.41916.21904-.64528.61843-.64528h.133v-1.17728c-.33918.01334-.58533.11975-.75143.38579zM4.2588 9.50287c-.35974 0-.65171.29187-.65171.65182 0 .35994.29197.65192.6517.65192.36006 0 .65182-.29198.65182-.65192 0-.35995-.29176-.65182-.65181-.65182zm12.89058 1.78207c-.15798-.17233-.52558-.31455-.80468-.31455-.84888 0-1.45782.55964-1.6069 1.39153-.1625-.79809-.8581-1.41215-1.70633-1.41215-.85636 0-1.55753.62123-1.71082 1.4343-.1488-.84507-.81354-1.40519-1.6379-1.40519-.30589 0-.55874.06655-.7783.21936v-1.5097H7.78063v4.75528h1.10409v-.3127c.26603.24615.55194.3592.90456.3592.75922 0 1.39843-.59433 1.53517-1.41357.1611.80168.85261 1.4111 1.70707 1.4111.84713 0 1.52653-.5965 1.69943-1.37761.14296.8532.81898 1.38689 1.62698 1.38689.2791 0 .58527-.0934.79145-.24615v.19284h1.12381v-1.49616a8.92817 8.92817 0 0 0-.0016-.1796 8.7632 8.7632 0 0 0 .0016-.17955v-1.55806H17.1494zm-7.58627 2.11732c-.35995 0-.6517-.29187-.6517-.65192 0-.35984.29175-.65165.6517-.65165.35984 0 .6517.29181.6517.65165.00006.36005-.2918.65192-.6517.65192zm3.46836-.0522c-.35973 0-.65181-.29208-.65181-.65192 0-.35978.29208-.65165.65181-.65165.35984 0 .6517.29187.6517.65165.00006.35979-.2917.65192-.6517.65192zm3.3773.02067c-.35995 0-.65145-.29208-.65145-.65192 0-.35978.29145-.65165.65145-.65165.36026 0 .6517.29187.6517.65165.00006.35984-.29144.65192-.6517.65192zm6.46693-3.6833v1.50976c-.21915-.15292-.4719-.21936-.77816-.21936-.93767 0-1.66916.72485-1.66916 1.76914 0 .98418.70492 1.7424 1.56307 1.7424.35224 0 .6382-.11315.90445-.35915v.3126H24V9.68743Zm-.66194 3.7064c-.35947 0-.65144-.29208-.65144-.65166 0-.36005.29187-.65202.65144-.65202.36005 0 .65192.29197.65192.65202 0 .35958-.29187.65166-.65192.65166zm-20.31164-2.415c-.306 0-.55864.06655-.77832.21936V9.68854H0v4.75528h1.10399v-.3127c.26603.24615.55204.3592.90466.3592.85783 0 1.5628-.75843 1.5628-1.74261 0-1.04393-.7316-1.76888-1.66932-1.76888zm-.11965 2.42343c-.35984 0-.6517-.29187-.6517-.65192 0-.35984.29186-.65165.6517-.65165.35995 0 .65171.29181.65171.65165 0 .36005-.29176.65192-.6517.65192z" }) + ] + } + ); +}); + +export { SiBillboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBim.cjs new file mode 100644 index 000000000..498aa170e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB1928"; +const SiBim = React__namespace.forwardRef(function SiBim2({ title = "BIM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.327 6.3015c-1.8378 0-3.3266 1.4908-3.3266 3.3283v4.7424c0 1.8375 1.4888 3.3263 3.3265 3.3263h17.347c1.8376 0 3.3265-1.4888 3.3265-3.3263V9.6298c0-1.8375-1.4889-3.3283-3.3265-3.3283H12.353L11.06 8.1922 9.7863 6.3015Zm1.5742 2.1896c.8137-.0085 1.57.0699 2.01.2422.7978.3017 1.254.96 1.293 1.8067.0294.612-.2962 1.1623-.791 1.5801.5608.3311.9783.8269.9649 1.5392-.0257 1.2596-1.2067 2.0391-3.3362 1.9903-1.1473-.0269-1.7047-.0285-2.3694-.1739V8.6395c1.1595-.1564 1.288-.14 2.2287-.1484Zm9.5223.1113h1.9903l1.2833 3.2247 1.2735-3.2247h2.0511l.5507 6.8675h-1.9707l-.1446-3.9123-1.7716 3.8986-1.6466-3.885-.3418 3.8987h-2.0158Zm-4.4732.0234h2.0901v6.8675h-2.09Zm-5.2347 1.4298v1.4532h.8086a.7257.7257 0 0 0 .7266-.7266c0-.4008-.2965-.7266-.7266-.7266zm0 2.7872v1.1973h.7793c.4105.0232.9576-.1498.963-.586-.0245-.4923-.5244-.637-.9337-.6113z" }) + ] + } + ); +}); + +exports.default = SiBim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBim.d.ts new file mode 100644 index 000000000..057eb4788 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB1928"; +declare const SiBim: IconType; +export { SiBim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBim.mjs new file mode 100644 index 000000000..15a60afb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB1928"; +const SiBim = React.forwardRef(function SiBim2({ title = "BIM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.327 6.3015c-1.8378 0-3.3266 1.4908-3.3266 3.3283v4.7424c0 1.8375 1.4888 3.3263 3.3265 3.3263h17.347c1.8376 0 3.3265-1.4888 3.3265-3.3263V9.6298c0-1.8375-1.4889-3.3283-3.3265-3.3283H12.353L11.06 8.1922 9.7863 6.3015Zm1.5742 2.1896c.8137-.0085 1.57.0699 2.01.2422.7978.3017 1.254.96 1.293 1.8067.0294.612-.2962 1.1623-.791 1.5801.5608.3311.9783.8269.9649 1.5392-.0257 1.2596-1.2067 2.0391-3.3362 1.9903-1.1473-.0269-1.7047-.0285-2.3694-.1739V8.6395c1.1595-.1564 1.288-.14 2.2287-.1484Zm9.5223.1113h1.9903l1.2833 3.2247 1.2735-3.2247h2.0511l.5507 6.8675h-1.9707l-.1446-3.9123-1.7716 3.8986-1.6466-3.885-.3418 3.8987h-2.0158Zm-4.4732.0234h2.0901v6.8675h-2.09Zm-5.2347 1.4298v1.4532h.8086a.7257.7257 0 0 0 .7266-.7266c0-.4008-.2965-.7266-.7266-.7266zm0 2.7872v1.1973h.7793c.4105.0232.9576-.1498.963-.586-.0245-.4923-.5244-.637-.9337-.6113z" }) + ] + } + ); +}); + +export { SiBim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.cjs new file mode 100644 index 000000000..ac8296f8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0B90B"; +const SiBinance = React__namespace.forwardRef(function SiBinance2({ title = "Binance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.624 13.9202l2.7175 2.7154-7.353 7.353-7.353-7.352 2.7175-2.7164 4.6355 4.6595 4.6356-4.6595zm4.6366-4.6366L24 12l-2.7154 2.7164L18.5682 12l2.6924-2.7164zm-9.272.001l2.7163 2.6914-2.7164 2.7174v-.001L9.2721 12l2.7164-2.7154zm-9.2722-.001L5.4088 12l-2.6914 2.6924L0 12l2.7164-2.7164zM11.9885.0115l7.353 7.329-2.7174 2.7154-4.6356-4.6356-4.6355 4.6595-2.7174-2.7154 7.353-7.353z" }) + ] + } + ); +}); + +exports.default = SiBinance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.d.ts new file mode 100644 index 000000000..151051ac0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0B90B"; +declare const SiBinance: IconType; +export { SiBinance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.mjs new file mode 100644 index 000000000..ebcf48aaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBinance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0B90B"; +const SiBinance = React.forwardRef(function SiBinance2({ title = "Binance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.624 13.9202l2.7175 2.7154-7.353 7.353-7.353-7.352 2.7175-2.7164 4.6355 4.6595 4.6356-4.6595zm4.6366-4.6366L24 12l-2.7154 2.7164L18.5682 12l2.6924-2.7164zm-9.272.001l2.7163 2.6914-2.7164 2.7174v-.001L9.2721 12l2.7164-2.7154zm-9.2722-.001L5.4088 12l-2.6914 2.6924L0 12l2.7164-2.7164zM11.9885.0115l7.353 7.329-2.7174 2.7154-4.6356-4.6356-4.6355 4.6595-2.7174-2.7154 7.353-7.353z" }) + ] + } + ); +}); + +export { SiBinance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.cjs new file mode 100644 index 000000000..f3e4fe2d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A81C2"; +const SiBioconductor = React__namespace.forwardRef(function SiBioconductor2({ title = "Bioconductor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.103 0a.649.649 0 1 0 .001 1.298.649.649 0 0 0 0-1.298m7.473.031a.69.69 0 1 0 .001 1.38.69.69 0 0 0 0-1.38M7.757.727a.663.663 0 1 0 .001 1.325.663.663 0 0 0 0-1.325m5.87.053a.495.495 0 1 0 0 .99.495.495 0 0 0 0-.99m3.256.07a.663.663 0 1 0 0 1.325.662.662 0 0 0 0-1.324m-7.275.596a.755.755 0 0 0-.756.758.755.755 0 1 0 1.51 0 .755.755 0 0 0-.754-.758m-3.373.395a.59.59 0 0 0-.596.588c0 .325.267.59.596.59.33 0 .597-.265.596-.59a.59.59 0 0 0-.596-.588m6.397.1a.347.347 0 1 0-.002.693.347.347 0 0 0 .002-.694m8.941.034a.455.455 0 1 0 0 .91.455.455 0 0 0 0-.91m-3.065.108a.808.808 0 1 0-.002 1.615.808.808 0 0 0 .002-1.615m-7.183.607a.935.935 0 1 0 0 1.87.935.935 0 0 0 0-1.87m-5.978.541a.39.39 0 1 0 0 .78.39.39 0 0 0 0-.78m15.203.217a.865.865 0 1 0 .003 1.73.865.865 0 0 0-.003-1.73m-7.52.857a.736.736 0 1 0 .004 1.472.736.736 0 0 0-.003-1.472m-3.63.12a.579.579 0 1 0 .002 1.158.579.579 0 0 0-.002-1.158M22 4.762a.499.499 0 1 0 .002.998.499.499 0 0 0-.002-.998m-17.05.094c-.01 4.734.082 13.81-.009 14.286-.39-.202-1.113-.406-2.135-.012-1.13.435-2.007 1.386-2.216 2.404a4 4 0 0 0-.004 1.24c.13.688.554 1.116 1.193 1.204a3.8 3.8 0 0 0 1.182-.059c1.006-.262 1.94-1.01 2.38-1.91.291-.597.266.227.264-8.703L5.604 5.37c-.22-.167-.435-.342-.652-.514m2.477.137a.792.792 0 1 0 .001 1.583.792.792 0 0 0 0-1.583m11.858.06a.295.295 0 1 0 .001.59.295.295 0 0 0 0-.59m-4.245.516a.639.639 0 1 0 0 1.277.639.639 0 0 0 0-1.277m8.068.078a.347.347 0 1 0 0 .694.347.347 0 0 0 0-.694m-4.82.08a.387.387 0 1 0 0 .774.387.387 0 0 0 0-.774m-1.294.58a.488.488 0 1 0 0 .975.488.488 0 0 0 0-.976" }) + ] + } + ); +}); + +exports.default = SiBioconductor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.d.ts new file mode 100644 index 000000000..1dd221340 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A81C2"; +declare const SiBioconductor: IconType; +export { SiBioconductor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.mjs new file mode 100644 index 000000000..2bee5e19a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBioconductor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A81C2"; +const SiBioconductor = React.forwardRef(function SiBioconductor2({ title = "Bioconductor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.103 0a.649.649 0 1 0 .001 1.298.649.649 0 0 0 0-1.298m7.473.031a.69.69 0 1 0 .001 1.38.69.69 0 0 0 0-1.38M7.757.727a.663.663 0 1 0 .001 1.325.663.663 0 0 0 0-1.325m5.87.053a.495.495 0 1 0 0 .99.495.495 0 0 0 0-.99m3.256.07a.663.663 0 1 0 0 1.325.662.662 0 0 0 0-1.324m-7.275.596a.755.755 0 0 0-.756.758.755.755 0 1 0 1.51 0 .755.755 0 0 0-.754-.758m-3.373.395a.59.59 0 0 0-.596.588c0 .325.267.59.596.59.33 0 .597-.265.596-.59a.59.59 0 0 0-.596-.588m6.397.1a.347.347 0 1 0-.002.693.347.347 0 0 0 .002-.694m8.941.034a.455.455 0 1 0 0 .91.455.455 0 0 0 0-.91m-3.065.108a.808.808 0 1 0-.002 1.615.808.808 0 0 0 .002-1.615m-7.183.607a.935.935 0 1 0 0 1.87.935.935 0 0 0 0-1.87m-5.978.541a.39.39 0 1 0 0 .78.39.39 0 0 0 0-.78m15.203.217a.865.865 0 1 0 .003 1.73.865.865 0 0 0-.003-1.73m-7.52.857a.736.736 0 1 0 .004 1.472.736.736 0 0 0-.003-1.472m-3.63.12a.579.579 0 1 0 .002 1.158.579.579 0 0 0-.002-1.158M22 4.762a.499.499 0 1 0 .002.998.499.499 0 0 0-.002-.998m-17.05.094c-.01 4.734.082 13.81-.009 14.286-.39-.202-1.113-.406-2.135-.012-1.13.435-2.007 1.386-2.216 2.404a4 4 0 0 0-.004 1.24c.13.688.554 1.116 1.193 1.204a3.8 3.8 0 0 0 1.182-.059c1.006-.262 1.94-1.01 2.38-1.91.291-.597.266.227.264-8.703L5.604 5.37c-.22-.167-.435-.342-.652-.514m2.477.137a.792.792 0 1 0 .001 1.583.792.792 0 0 0 0-1.583m11.858.06a.295.295 0 1 0 .001.59.295.295 0 0 0 0-.59m-4.245.516a.639.639 0 1 0 0 1.277.639.639 0 0 0 0-1.277m8.068.078a.347.347 0 1 0 0 .694.347.347 0 0 0 0-.694m-4.82.08a.387.387 0 1 0 0 .774.387.387 0 0 0 0-.774m-1.294.58a.488.488 0 1 0 0 .975.488.488 0 0 0 0-.976" }) + ] + } + ); +}); + +export { SiBioconductor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.cjs new file mode 100644 index 000000000..70e7a024c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBiolink = React__namespace.forwardRef(function SiBiolink2({ title = "Bio Link", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.95192 4.6371V2.75605c0-.26354-.14223-.39521-.42679-.39521H2.2289V5.0323h1.29624c.28456 0 .4268-.13168.4268-.3952zm0 4.2839V6.96087c0-.13696-.03158-.23187-.09482-.28456-.06324-.06324-.1739-.09482-.33197-.09482H2.2289V9.3162h1.29624c.28456 0 .4268-.13168.4268-.39521zM0 .81166h4.17323c1.33842 0 2.00763.57962 2.00763 1.73882v1.77049c0 .77986-.23714 1.2699-.71143 1.4701.47429.17917.71143.63235.71143 1.35953v1.96013c0 1.1698-.6692 1.75466-2.00763 1.75466H0Zm7.56538 0h2.24468v10.05373H7.56538zm5.66357 0h2.11829c1.32777 0 1.9917.57962 1.9917 1.73882v6.56025c0 1.1698-.66393 1.75466-1.9917 1.75466h-2.1183c-1.33832 0-2.00753-.58486-2.00753-1.75466V2.55048c0-1.1592.6692-1.73882 2.00754-1.73882zm1.84948 7.99868V2.8667c0-.26353-.13696-.3952-.41096-.3952h-.75876c-.28455 0-.42678.13167-.42678.3952v5.94364c0 .26354.14223.39521.42678.39521h.75876c.274 0 .41096-.13167.41096-.3952zm5.03262 2.02892c-.75304 0-1.3634-.61045-1.3634-1.3634V9.3879c0-.75304.61036-1.3634 1.3634-1.3634.75295 0 1.3634.61036 1.3634 1.3634v.08796c0 .75295-.61045 1.3634-1.3634 1.3634zM2.25329 21.52851h2.8928v1.65983H.00859V13.13461h2.2447zm3.66888-8.3939h2.24469v10.05373h-2.2447zm7.9241 0h2.07078v10.05373h-2.02338l-2.19727-6.02272v6.02272H9.64144V13.13461h2.03921l2.16561 6.00698zm10.15373 0-2.02338 4.96367L24 23.18834h-2.43433l-1.94439-5.09006 1.94439-4.96367zm-6.67082 10.05373V13.13461h2.24469v10.05373Z" }) + ] + } + ); +}); + +exports.default = SiBiolink; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.d.ts new file mode 100644 index 000000000..1fdfd197a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBiolink: IconType; +export { SiBiolink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.mjs new file mode 100644 index 000000000..0d66f098d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBiolink.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBiolink = React.forwardRef(function SiBiolink2({ title = "Bio Link", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.95192 4.6371V2.75605c0-.26354-.14223-.39521-.42679-.39521H2.2289V5.0323h1.29624c.28456 0 .4268-.13168.4268-.3952zm0 4.2839V6.96087c0-.13696-.03158-.23187-.09482-.28456-.06324-.06324-.1739-.09482-.33197-.09482H2.2289V9.3162h1.29624c.28456 0 .4268-.13168.4268-.39521zM0 .81166h4.17323c1.33842 0 2.00763.57962 2.00763 1.73882v1.77049c0 .77986-.23714 1.2699-.71143 1.4701.47429.17917.71143.63235.71143 1.35953v1.96013c0 1.1698-.6692 1.75466-2.00763 1.75466H0Zm7.56538 0h2.24468v10.05373H7.56538zm5.66357 0h2.11829c1.32777 0 1.9917.57962 1.9917 1.73882v6.56025c0 1.1698-.66393 1.75466-1.9917 1.75466h-2.1183c-1.33832 0-2.00753-.58486-2.00753-1.75466V2.55048c0-1.1592.6692-1.73882 2.00754-1.73882zm1.84948 7.99868V2.8667c0-.26353-.13696-.3952-.41096-.3952h-.75876c-.28455 0-.42678.13167-.42678.3952v5.94364c0 .26354.14223.39521.42678.39521h.75876c.274 0 .41096-.13167.41096-.3952zm5.03262 2.02892c-.75304 0-1.3634-.61045-1.3634-1.3634V9.3879c0-.75304.61036-1.3634 1.3634-1.3634.75295 0 1.3634.61036 1.3634 1.3634v.08796c0 .75295-.61045 1.3634-1.3634 1.3634zM2.25329 21.52851h2.8928v1.65983H.00859V13.13461h2.2447zm3.66888-8.3939h2.24469v10.05373h-2.2447zm7.9241 0h2.07078v10.05373h-2.02338l-2.19727-6.02272v6.02272H9.64144V13.13461h2.03921l2.16561 6.00698zm10.15373 0-2.02338 4.96367L24 23.18834h-2.43433l-1.94439-5.09006 1.94439-4.96367zm-6.67082 10.05373V13.13461h2.24469v10.05373Z" }) + ] + } + ); +}); + +export { SiBiolink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.cjs new file mode 100644 index 000000000..de863db03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#60A5FA"; +const SiBiome = React__namespace.forwardRef(function SiBiome2({ title = "Biome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 1.608-5.346 9.259a12.069 12.069 0 0 1 6.326-.219l1.807.426-1.7 7.208-1.809-.427c-2.224-.524-4.361.644-5.264 2.507l-1.672-.809c1.276-2.636 4.284-4.232 7.364-3.505l.847-3.592A10.211 10.211 0 0 0 0 22.392h24L12 1.608Z" }) + ] + } + ); +}); + +exports.default = SiBiome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.d.ts new file mode 100644 index 000000000..cdb730c1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#60A5FA"; +declare const SiBiome: IconType; +export { SiBiome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.mjs new file mode 100644 index 000000000..f39088aea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBiome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#60A5FA"; +const SiBiome = React.forwardRef(function SiBiome2({ title = "Biome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 1.608-5.346 9.259a12.069 12.069 0 0 1 6.326-.219l1.807.426-1.7 7.208-1.809-.427c-2.224-.524-4.361.644-5.264 2.507l-1.672-.809c1.276-2.636 4.284-4.232 7.364-3.505l.847-3.592A10.211 10.211 0 0 0 0 22.392h24L12 1.608Z" }) + ] + } + ); +}); + +export { SiBiome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.cjs new file mode 100644 index 000000000..83fe22c24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D1129"; +const SiBisecthosting = React__namespace.forwardRef(function SiBisecthosting2({ title = "BisectHosting", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.083 5.023 13.02.302a2.717 2.717 0 0 0-2.488 0L1.917 4.789A2.06 2.06 0 0 0 .805 6.623l.006 10.76c0 .773.426 1.476 1.112 1.834l8.59 4.479c.38.198.813.304 1.245.304v-.002c.432 0 .862-.108 1.244-.306l9.083-4.735a2.053 2.053 0 0 0 1.11-1.835V6.857a2.06 2.06 0 0 0-1.112-1.834zm.222 12.103c.003.441-.24.847-.632 1.05l-9.085 4.736a1.81 1.81 0 0 1-1.664 0l-8.59-4.48a1.184 1.184 0 0 1-.637-1.048L1.691 6.625c0-.44.246-.844.636-1.048l8.615-4.491a1.828 1.828 0 0 1 1.666 0l9.063 4.725c.39.205.634.608.634 1.048v10.267zM4.666 9.2v1.088L9.86 9.44V7.954L4.666 9.2zm4.111-.54.604-.132v.552l-.604.106V8.66zm-3.455.76 2.55-.562v.494l-2.55.46V9.42zm4.541 6.74v-1.486l-5.195-.85v1.088l5.195 1.248zm-1.986-.904-2.553-.562v-.395l2.553.46v.497zm1.506.33-.602-.132v-.526l.602.106v.552zm11.583-8.827-2.33-1.214-1.853.694V4.58L13.69 2.966a4.133 4.133 0 0 0-3.827 0l-6.83 3.561a.298.298 0 0 0-.16.26l.007 10.401c0 .11.06.21.16.26l6.805 3.547c1.2.626 2.627.626 3.827 0l3.1-1.614v-1.66l1.852.694 2.348-1.225a.298.298 0 0 0 .16-.262l-.006-9.908a.288.288 0 0 0-.16-.26zM4.398 10.871V8.75l5.541-1.494a.23.23 0 0 1 .29.22V9.83c0 .204-.152.38-.356.402l-5.475.64v-.001zm5.477 3.01a.404.404 0 0 1 .359.4v2.355a.23.23 0 0 1-.29.22l-5.542-1.494v-2.12l5.473.64zm3.137 6.962s.428-.612.48-1.74V14.62s.042-1.68-1.334-2.601c1.376-.92 1.336-2.6 1.336-2.6V5.096c0-1.272-.488-1.975-.488-1.975l3.307 1.725v5.061c0 .076.06.14.136.146l2.14.154a.15.15 0 0 0 .16-.148V6.12l1.967 1.02v9.684L18.75 17.85v-4.247a.15.15 0 0 0-.16-.148l-2.14.156a.148.148 0 0 0-.137.148v5.366l-3.3 1.72v-.002z" }) + ] + } + ); +}); + +exports.default = SiBisecthosting; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.d.ts new file mode 100644 index 000000000..cc8d90f42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D1129"; +declare const SiBisecthosting: IconType; +export { SiBisecthosting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.mjs new file mode 100644 index 000000000..0529e593a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBisecthosting.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D1129"; +const SiBisecthosting = React.forwardRef(function SiBisecthosting2({ title = "BisectHosting", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.083 5.023 13.02.302a2.717 2.717 0 0 0-2.488 0L1.917 4.789A2.06 2.06 0 0 0 .805 6.623l.006 10.76c0 .773.426 1.476 1.112 1.834l8.59 4.479c.38.198.813.304 1.245.304v-.002c.432 0 .862-.108 1.244-.306l9.083-4.735a2.053 2.053 0 0 0 1.11-1.835V6.857a2.06 2.06 0 0 0-1.112-1.834zm.222 12.103c.003.441-.24.847-.632 1.05l-9.085 4.736a1.81 1.81 0 0 1-1.664 0l-8.59-4.48a1.184 1.184 0 0 1-.637-1.048L1.691 6.625c0-.44.246-.844.636-1.048l8.615-4.491a1.828 1.828 0 0 1 1.666 0l9.063 4.725c.39.205.634.608.634 1.048v10.267zM4.666 9.2v1.088L9.86 9.44V7.954L4.666 9.2zm4.111-.54.604-.132v.552l-.604.106V8.66zm-3.455.76 2.55-.562v.494l-2.55.46V9.42zm4.541 6.74v-1.486l-5.195-.85v1.088l5.195 1.248zm-1.986-.904-2.553-.562v-.395l2.553.46v.497zm1.506.33-.602-.132v-.526l.602.106v.552zm11.583-8.827-2.33-1.214-1.853.694V4.58L13.69 2.966a4.133 4.133 0 0 0-3.827 0l-6.83 3.561a.298.298 0 0 0-.16.26l.007 10.401c0 .11.06.21.16.26l6.805 3.547c1.2.626 2.627.626 3.827 0l3.1-1.614v-1.66l1.852.694 2.348-1.225a.298.298 0 0 0 .16-.262l-.006-9.908a.288.288 0 0 0-.16-.26zM4.398 10.871V8.75l5.541-1.494a.23.23 0 0 1 .29.22V9.83c0 .204-.152.38-.356.402l-5.475.64v-.001zm5.477 3.01a.404.404 0 0 1 .359.4v2.355a.23.23 0 0 1-.29.22l-5.542-1.494v-2.12l5.473.64zm3.137 6.962s.428-.612.48-1.74V14.62s.042-1.68-1.334-2.601c1.376-.92 1.336-2.6 1.336-2.6V5.096c0-1.272-.488-1.975-.488-1.975l3.307 1.725v5.061c0 .076.06.14.136.146l2.14.154a.15.15 0 0 0 .16-.148V6.12l1.967 1.02v9.684L18.75 17.85v-4.247a.15.15 0 0 0-.16-.148l-2.14.156a.148.148 0 0 0-.137.148v5.366l-3.3 1.72v-.002z" }) + ] + } + ); +}); + +export { SiBisecthosting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBit.cjs new file mode 100644 index 000000000..333ca6c6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#592EC1"; +const SiBit = React__namespace.forwardRef(function SiBit2({ title = "Bit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.98 12.959q0 .897-.509 1.42-.51.52-1.456.52-.34 0-.643-.072-.303-.073-.546-.194-.291-.17-.328-.364-.036-.194-.036-.388V9.804q0-.219.134-.328.133-.109.4-.109t.4.11q.134.108.134.327v1.553q.145-.097.352-.158.206-.06.424-.06.728 0 1.202.473.473.473.473 1.347zm-2.45.946q.097.073.23.097.134.024.255.024.413 0 .631-.255.219-.254.219-.74 0-.485-.219-.752-.218-.267-.607-.267-.145 0-.279.049-.133.048-.23.121zm4.465-3.81q0 .267-.182.449t-.449.182q-.291 0-.473-.182t-.182-.449q0-.291.182-.461.182-.17.473-.17.267 0 .449.17t.182.461zm-.097 1.48v2.864q0 .218-.134.327-.133.11-.4.11t-.413-.11q-.145-.109-.145-.327v-2.864q0-.218.145-.327.146-.11.413-.11t.4.11q.134.109.134.327zm3.276 2.33q.218 0 .303.182.085.182.085.328 0 .072-.048.157-.049.085-.146.158-.146.073-.364.121-.218.049-.437.049-.437 0-.703-.158-.267-.158-.413-.4-.121-.219-.146-.473-.024-.255-.024-.546v-1.19h-.291q-.219 0-.328-.12-.109-.122-.109-.34 0-.219.11-.34.108-.122.327-.122h.291v-.703q0-.219.134-.328.133-.11.4-.11t.4.11q.134.11.134.328v.703h.68q.218 0 .327.122.11.121.11.34 0 .218-.11.34-.11.12-.328.12h-.68v1.19q0 .12.013.254.012.134.06.255.05.073.122.11.073.036.194.036.049 0 .121-.012.073-.013.122-.013.048-.024.097-.036.048-.012.097-.012zM.012 12.012q0-2.5.947-4.683.946-2.184 2.572-3.81Q5.157 1.893 7.34.946 9.525 0 12 0t4.66.946q2.183.947 3.821 2.573 1.638 1.626 2.56 3.81.947 2.184.947 4.683 0 2.475-.947 4.66-.922 2.183-2.56 3.81-1.638 1.625-3.822 2.572Q14.475 24 12 24q-2.475 0-4.66-.946-2.183-.947-3.81-2.573-1.625-1.626-2.571-3.81-.947-2.184-.947-4.659ZM12 .874q-2.305 0-4.32.873-2.038.874-3.542 2.39-1.505 1.517-2.379 3.531-.873 2.039-.873 4.344t.873 4.32q.874 2.038 2.379 3.543 1.504 1.504 3.542 2.378 2.015.873 4.32.873t4.344-.873q2.014-.874 3.518-2.378 1.505-1.505 2.379-3.543.898-2.015.898-4.32t-.898-4.344q-.874-2.014-2.379-3.53-1.504-1.517-3.518-2.39Q14.305.873 12 .873ZM8.384 3.422q.073.17.024.34-.048.17-.218.266-1.383.728-2.342 1.614-.958.886-1.735 2.342-.097.17-.267.218-.17.049-.315-.024-.17-.097-.219-.267-.048-.17.025-.315.849-1.602 1.905-2.585 1.055-.983 2.536-1.76.17-.096.34-.036.17.061.266.207z" }) + ] + } + ); +}); + +exports.default = SiBit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBit.d.ts new file mode 100644 index 000000000..b2a7d669f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#592EC1"; +declare const SiBit: IconType; +export { SiBit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBit.mjs new file mode 100644 index 000000000..48d4fd281 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#592EC1"; +const SiBit = React.forwardRef(function SiBit2({ title = "Bit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.98 12.959q0 .897-.509 1.42-.51.52-1.456.52-.34 0-.643-.072-.303-.073-.546-.194-.291-.17-.328-.364-.036-.194-.036-.388V9.804q0-.219.134-.328.133-.109.4-.109t.4.11q.134.108.134.327v1.553q.145-.097.352-.158.206-.06.424-.06.728 0 1.202.473.473.473.473 1.347zm-2.45.946q.097.073.23.097.134.024.255.024.413 0 .631-.255.219-.254.219-.74 0-.485-.219-.752-.218-.267-.607-.267-.145 0-.279.049-.133.048-.23.121zm4.465-3.81q0 .267-.182.449t-.449.182q-.291 0-.473-.182t-.182-.449q0-.291.182-.461.182-.17.473-.17.267 0 .449.17t.182.461zm-.097 1.48v2.864q0 .218-.134.327-.133.11-.4.11t-.413-.11q-.145-.109-.145-.327v-2.864q0-.218.145-.327.146-.11.413-.11t.4.11q.134.109.134.327zm3.276 2.33q.218 0 .303.182.085.182.085.328 0 .072-.048.157-.049.085-.146.158-.146.073-.364.121-.218.049-.437.049-.437 0-.703-.158-.267-.158-.413-.4-.121-.219-.146-.473-.024-.255-.024-.546v-1.19h-.291q-.219 0-.328-.12-.109-.122-.109-.34 0-.219.11-.34.108-.122.327-.122h.291v-.703q0-.219.134-.328.133-.11.4-.11t.4.11q.134.11.134.328v.703h.68q.218 0 .327.122.11.121.11.34 0 .218-.11.34-.11.12-.328.12h-.68v1.19q0 .12.013.254.012.134.06.255.05.073.122.11.073.036.194.036.049 0 .121-.012.073-.013.122-.013.048-.024.097-.036.048-.012.097-.012zM.012 12.012q0-2.5.947-4.683.946-2.184 2.572-3.81Q5.157 1.893 7.34.946 9.525 0 12 0t4.66.946q2.183.947 3.821 2.573 1.638 1.626 2.56 3.81.947 2.184.947 4.683 0 2.475-.947 4.66-.922 2.183-2.56 3.81-1.638 1.625-3.822 2.572Q14.475 24 12 24q-2.475 0-4.66-.946-2.183-.947-3.81-2.573-1.625-1.626-2.571-3.81-.947-2.184-.947-4.659ZM12 .874q-2.305 0-4.32.873-2.038.874-3.542 2.39-1.505 1.517-2.379 3.531-.873 2.039-.873 4.344t.873 4.32q.874 2.038 2.379 3.543 1.504 1.504 3.542 2.378 2.015.873 4.32.873t4.344-.873q2.014-.874 3.518-2.378 1.505-1.505 2.379-3.543.898-2.015.898-4.32t-.898-4.344q-.874-2.014-2.379-3.53-1.504-1.517-3.518-2.39Q14.305.873 12 .873ZM8.384 3.422q.073.17.024.34-.048.17-.218.266-1.383.728-2.342 1.614-.958.886-1.735 2.342-.097.17-.267.218-.17.049-.315-.024-.17-.097-.219-.267-.048-.17.025-.315.849-1.602 1.905-2.585 1.055-.983 2.536-1.76.17-.096.34-.036.17.061.266.207z" }) + ] + } + ); +}); + +export { SiBit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.cjs new file mode 100644 index 000000000..fd17f1298 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiBitbucket = React__namespace.forwardRef(function SiBitbucket2({ title = "Bitbucket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.778 1.213a.768.768 0 00-.768.892l3.263 19.81c.084.5.515.868 1.022.873H19.95a.772.772 0 00.77-.646l3.27-20.03a.768.768 0 00-.768-.891zM14.52 15.53H9.522L8.17 8.466h7.561z" }) + ] + } + ); +}); + +exports.default = SiBitbucket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.d.ts new file mode 100644 index 000000000..9f2678b0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiBitbucket: IconType; +export { SiBitbucket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.mjs new file mode 100644 index 000000000..e860afd12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitbucket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiBitbucket = React.forwardRef(function SiBitbucket2({ title = "Bitbucket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.778 1.213a.768.768 0 00-.768.892l3.263 19.81c.084.5.515.868 1.022.873H19.95a.772.772 0 00.77-.646l3.27-20.03a.768.768 0 00-.768-.891zM14.52 15.53H9.522L8.17 8.466h7.561z" }) + ] + } + ); +}); + +export { SiBitbucket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.cjs new file mode 100644 index 000000000..b2663da8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7931A"; +const SiBitcoin = React__namespace.forwardRef(function SiBitcoin2({ title = "Bitcoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.638 14.904c-1.602 6.43-8.113 10.34-14.542 8.736C2.67 22.05-1.244 15.525.362 9.105 1.962 2.67 8.475-1.243 14.9.358c6.43 1.605 10.342 8.115 8.738 14.548v-.002zm-6.35-4.613c.24-1.59-.974-2.45-2.64-3.03l.54-2.153-1.315-.33-.525 2.107c-.345-.087-.705-.167-1.064-.25l.526-2.127-1.32-.33-.54 2.165c-.285-.067-.565-.132-.84-.2l-1.815-.45-.35 1.407s.975.225.955.236c.535.136.63.486.615.766l-1.477 5.92c-.075.166-.24.406-.614.314.015.02-.96-.24-.96-.24l-.66 1.51 1.71.426.93.242-.54 2.19 1.32.327.54-2.17c.36.1.705.19 1.05.273l-.51 2.154 1.32.33.545-2.19c2.24.427 3.93.257 4.64-1.774.57-1.637-.03-2.58-1.217-3.196.854-.193 1.5-.76 1.68-1.93h.01zm-3.01 4.22c-.404 1.64-3.157.75-4.05.53l.72-2.9c.896.23 3.757.67 3.33 2.37zm.41-4.24c-.37 1.49-2.662.735-3.405.55l.654-2.64c.744.18 3.137.524 2.75 2.084v.006z" }) + ] + } + ); +}); + +exports.default = SiBitcoin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.d.ts new file mode 100644 index 000000000..66ca14eca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7931A"; +declare const SiBitcoin: IconType; +export { SiBitcoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.mjs new file mode 100644 index 000000000..a30c60a91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7931A"; +const SiBitcoin = React.forwardRef(function SiBitcoin2({ title = "Bitcoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.638 14.904c-1.602 6.43-8.113 10.34-14.542 8.736C2.67 22.05-1.244 15.525.362 9.105 1.962 2.67 8.475-1.243 14.9.358c6.43 1.605 10.342 8.115 8.738 14.548v-.002zm-6.35-4.613c.24-1.59-.974-2.45-2.64-3.03l.54-2.153-1.315-.33-.525 2.107c-.345-.087-.705-.167-1.064-.25l.526-2.127-1.32-.33-.54 2.165c-.285-.067-.565-.132-.84-.2l-1.815-.45-.35 1.407s.975.225.955.236c.535.136.63.486.615.766l-1.477 5.92c-.075.166-.24.406-.614.314.015.02-.96-.24-.96-.24l-.66 1.51 1.71.426.93.242-.54 2.19 1.32.327.54-2.17c.36.1.705.19 1.05.273l-.51 2.154 1.32.33.545-2.19c2.24.427 3.93.257 4.64-1.774.57-1.637-.03-2.58-1.217-3.196.854-.193 1.5-.76 1.68-1.93h.01zm-3.01 4.22c-.404 1.64-3.157.75-4.05.53l.72-2.9c.896.23 3.757.67 3.33 2.37zm.41-4.24c-.37 1.49-2.662.735-3.405.55l.654-2.64c.744.18 3.137.524 2.75 2.084v.006z" }) + ] + } + ); +}); + +export { SiBitcoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.cjs new file mode 100644 index 000000000..8558d1d1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0AC18E"; +const SiBitcoincash = React__namespace.forwardRef(function SiBitcoincash2({ title = "Bitcoin Cash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.84 11.22-.688-2.568c.728-.18 2.839-1.051 3.39.506.27 1.682-1.978 1.877-2.702 2.062zm.289 1.313.755 2.829c.868-.228 3.496-.46 3.241-2.351-.433-1.666-3.125-.706-3.996-.478zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-6.341.661c-.183-1.151-1.441-2.095-2.485-2.202.643-.57.969-1.401.57-2.488-.603-1.368-1.989-1.66-3.685-1.377l-.546-2.114-1.285.332.536 2.108c-.338.085-.685.158-1.029.256L9.198 5.08l-1.285.332.545 2.114c-.277.079-2.595.673-2.595.673l.353 1.377s.944-.265.935-.244c.524-.137.771.125.886.372l1.498 5.793c.018.168-.012.454-.372.551.021.012-.935.241-.935.241l.14 1.605s2.296-.588 2.598-.664l.551 2.138 1.285-.332-.551-2.153c.353-.082.697-.168 1.032-.256l.548 2.141 1.285-.332-.551-2.135c1.982-.482 3.38-1.73 3.094-3.64z" }) + ] + } + ); +}); + +exports.default = SiBitcoincash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.d.ts new file mode 100644 index 000000000..4886e7791 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0AC18E"; +declare const SiBitcoincash: IconType; +export { SiBitcoincash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.mjs new file mode 100644 index 000000000..0a5d25ea8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoincash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0AC18E"; +const SiBitcoincash = React.forwardRef(function SiBitcoincash2({ title = "Bitcoin Cash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.84 11.22-.688-2.568c.728-.18 2.839-1.051 3.39.506.27 1.682-1.978 1.877-2.702 2.062zm.289 1.313.755 2.829c.868-.228 3.496-.46 3.241-2.351-.433-1.666-3.125-.706-3.996-.478zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-6.341.661c-.183-1.151-1.441-2.095-2.485-2.202.643-.57.969-1.401.57-2.488-.603-1.368-1.989-1.66-3.685-1.377l-.546-2.114-1.285.332.536 2.108c-.338.085-.685.158-1.029.256L9.198 5.08l-1.285.332.545 2.114c-.277.079-2.595.673-2.595.673l.353 1.377s.944-.265.935-.244c.524-.137.771.125.886.372l1.498 5.793c.018.168-.012.454-.372.551.021.012-.935.241-.935.241l.14 1.605s2.296-.588 2.598-.664l.551 2.138 1.285-.332-.551-2.153c.353-.082.697-.168 1.032-.256l.548 2.141 1.285-.332-.551-2.135c1.982-.482 3.38-1.73 3.094-3.64z" }) + ] + } + ); +}); + +export { SiBitcoincash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.cjs new file mode 100644 index 000000000..fa22e50fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EAB300"; +const SiBitcoinsv = React__namespace.forwardRef(function SiBitcoinsv2({ title = "Bitcoin SV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.648 14.423l.003-.004a1.34 1.34 0 0 1-.498.659c-.269.189-.647.338-1.188.364l-1.99.004v-2.93c.288.008 1.565-.013 2.119.015.722.035 1.171.321 1.41.668.262.351.293.82.144 1.224zm-2.129-3.261c.503-.024.852-.162 1.101-.336.214-.146.375-.367.46-.611.134-.375.107-.81-.136-1.135-.223-.319-.638-.584-1.306-.616-.495-.026-1.413-.003-1.664-.01v2.709c.025.004 1.539-.001 1.545-.001zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-6.65 2.142c.022-1.477-1.24-2.332-1.908-2.572.715-.491 1.206-1.043 1.206-2.085 0-1.655-1.646-2.43-2.647-2.529-.082-.009-.31-.013-.31-.013V5.361h-1.633l.004 1.583H10.97V5.367H9.31v1.569c-.292.007-2.049.006-2.049.006v1.401h.571c.601.016.822.362.798.677v6.041a.408.408 0 0 1-.371.391c-.249.011-.621 0-.621 0l-.32 1.588h1.996v1.6h1.661v-1.591h1.091v1.594h1.624v-1.588c1.899.05 3.643-1.071 3.66-2.913z" }) + ] + } + ); +}); + +exports.default = SiBitcoinsv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.d.ts new file mode 100644 index 000000000..81e809ca4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EAB300"; +declare const SiBitcoinsv: IconType; +export { SiBitcoinsv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.mjs new file mode 100644 index 000000000..348b40c38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcoinsv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EAB300"; +const SiBitcoinsv = React.forwardRef(function SiBitcoinsv2({ title = "Bitcoin SV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.648 14.423l.003-.004a1.34 1.34 0 0 1-.498.659c-.269.189-.647.338-1.188.364l-1.99.004v-2.93c.288.008 1.565-.013 2.119.015.722.035 1.171.321 1.41.668.262.351.293.82.144 1.224zm-2.129-3.261c.503-.024.852-.162 1.101-.336.214-.146.375-.367.46-.611.134-.375.107-.81-.136-1.135-.223-.319-.638-.584-1.306-.616-.495-.026-1.413-.003-1.664-.01v2.709c.025.004 1.539-.001 1.545-.001zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-6.65 2.142c.022-1.477-1.24-2.332-1.908-2.572.715-.491 1.206-1.043 1.206-2.085 0-1.655-1.646-2.43-2.647-2.529-.082-.009-.31-.013-.31-.013V5.361h-1.633l.004 1.583H10.97V5.367H9.31v1.569c-.292.007-2.049.006-2.049.006v1.401h.571c.601.016.822.362.798.677v6.041a.408.408 0 0 1-.371.391c-.249.011-.621 0-.621 0l-.32 1.588h1.996v1.6h1.661v-1.591h1.091v1.594h1.624v-1.588c1.899.05 3.643-1.071 3.66-2.913z" }) + ] + } + ); +}); + +export { SiBitcoinsv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.cjs new file mode 100644 index 000000000..e80304d5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F49923"; +const SiBitcomet = React__namespace.forwardRef(function SiBitcomet2({ title = "BitComet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.996 0C5.37.002.002 5.375.004 12v.009c.003 6.625 5.375 11.993 12 11.991 6.625-.002 11.994-5.375 11.992-12v-.009C23.993 5.366 18.62-.002 11.996 0zM3.008 14.396c.235-2.436.696-4.614 1.422-6.467a15.261 15.261 0 0 1 2.238-2.406 16.578 16.578 0 0 0-1.68 4.674c-.731 1.4-1.4 2.88-1.98 4.199zm6.06 2.862c-.833-2.164-.764-4.942-.452-7.522a17.028 17.028 0 0 1 1.661-2.777c.13.721.246 1.49.356 2.28-.841 2.033-1.457 4.722-1.564 8.019zm6.64 0c-.117-3.624-.853-6.498-1.824-8.587.087-.589.176-1.165.274-1.712.883 1.19 1.561 2.484 2.114 3.82.204 2.268.159 4.604-.564 6.479zm3.464-8.188a16.704 16.704 0 0 0-1.404-3.547c1.088.933 2.054 2.054 2.928 3.383.527 1.629.878 3.47 1.073 5.49-.739-1.68-1.621-3.623-2.597-5.326zm.83-1.945a16.735 16.735 0 0 0-.84-.953l-.06-.057a15.323 15.323 0 0 0-.87-.839c-.1-.087-.209-.167-.311-.253-.238-.2-.474-.4-.73-.587a14.579 14.579 0 0 0-1.176-.779c.218.307.423.612.616.917l.048.081c.175.279.342.556.497.834l.017.033c.333.598.621 1.194.869 1.792 1.494 3.606 1.508 7.26.81 11.522-.562-3.39-1.284-6.707-2.781-9.661a20.003 20.003 0 0 0-1.028-1.783c-.088-.134-.184-.266-.277-.398a15.964 15.964 0 0 0-.913-1.194c-.08.387-.154.8-.227 1.214-.05.288-.1.578-.146.875-.587 3.696-.938 8.202-1.282 12.078-.329-3.698-.664-7.967-1.203-11.562a65.458 65.458 0 0 0-.205-1.283c-.079-.453-.16-.9-.247-1.322-.347.405-.66.825-.958 1.252-.283.411-.546.832-.792 1.26-1.823 3.163-2.632 6.799-3.25 10.524-.622-3.798-.672-7.112.38-10.34.256-.788.579-1.572.975-2.355l.091-.173c.162-.31.335-.622.52-.933l.16-.268c.228-.369.468-.738.731-1.11a14.497 14.497 0 0 0-1.433.982c-.21.16-.412.327-.61.496-.134.115-.272.229-.4.347-.253.232-.495.47-.728.715l-.007.007C3.63 7.897 2.472 9.86 1.575 11.811 1.903 4.493 6.516.324 12.218.324c5.703 0 10.315 4.169 10.643 11.488-.739-1.608-1.658-3.22-2.858-4.687z" }) + ] + } + ); +}); + +exports.default = SiBitcomet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.d.ts new file mode 100644 index 000000000..417672fae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F49923"; +declare const SiBitcomet: IconType; +export { SiBitcomet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.mjs new file mode 100644 index 000000000..2c0c548c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitcomet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F49923"; +const SiBitcomet = React.forwardRef(function SiBitcomet2({ title = "BitComet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.996 0C5.37.002.002 5.375.004 12v.009c.003 6.625 5.375 11.993 12 11.991 6.625-.002 11.994-5.375 11.992-12v-.009C23.993 5.366 18.62-.002 11.996 0zM3.008 14.396c.235-2.436.696-4.614 1.422-6.467a15.261 15.261 0 0 1 2.238-2.406 16.578 16.578 0 0 0-1.68 4.674c-.731 1.4-1.4 2.88-1.98 4.199zm6.06 2.862c-.833-2.164-.764-4.942-.452-7.522a17.028 17.028 0 0 1 1.661-2.777c.13.721.246 1.49.356 2.28-.841 2.033-1.457 4.722-1.564 8.019zm6.64 0c-.117-3.624-.853-6.498-1.824-8.587.087-.589.176-1.165.274-1.712.883 1.19 1.561 2.484 2.114 3.82.204 2.268.159 4.604-.564 6.479zm3.464-8.188a16.704 16.704 0 0 0-1.404-3.547c1.088.933 2.054 2.054 2.928 3.383.527 1.629.878 3.47 1.073 5.49-.739-1.68-1.621-3.623-2.597-5.326zm.83-1.945a16.735 16.735 0 0 0-.84-.953l-.06-.057a15.323 15.323 0 0 0-.87-.839c-.1-.087-.209-.167-.311-.253-.238-.2-.474-.4-.73-.587a14.579 14.579 0 0 0-1.176-.779c.218.307.423.612.616.917l.048.081c.175.279.342.556.497.834l.017.033c.333.598.621 1.194.869 1.792 1.494 3.606 1.508 7.26.81 11.522-.562-3.39-1.284-6.707-2.781-9.661a20.003 20.003 0 0 0-1.028-1.783c-.088-.134-.184-.266-.277-.398a15.964 15.964 0 0 0-.913-1.194c-.08.387-.154.8-.227 1.214-.05.288-.1.578-.146.875-.587 3.696-.938 8.202-1.282 12.078-.329-3.698-.664-7.967-1.203-11.562a65.458 65.458 0 0 0-.205-1.283c-.079-.453-.16-.9-.247-1.322-.347.405-.66.825-.958 1.252-.283.411-.546.832-.792 1.26-1.823 3.163-2.632 6.799-3.25 10.524-.622-3.798-.672-7.112.38-10.34.256-.788.579-1.572.975-2.355l.091-.173c.162-.31.335-.622.52-.933l.16-.268c.228-.369.468-.738.731-1.11a14.497 14.497 0 0 0-1.433.982c-.21.16-.412.327-.61.496-.134.115-.272.229-.4.347-.253.232-.495.47-.728.715l-.007.007C3.63 7.897 2.472 9.86 1.575 11.811 1.903 4.493 6.516.324 12.218.324c5.703 0 10.315 4.169 10.643 11.488-.739-1.608-1.658-3.22-2.858-4.687z" }) + ] + } + ); +}); + +export { SiBitcomet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.cjs new file mode 100644 index 000000000..79d35005a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiBitdefender = React__namespace.forwardRef(function SiBitdefender2({ title = "Bitdefender", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.685 0v.357l1.232 1.046c1.477 1.204 1.67 1.439 1.67 2.526V24h8.646c4.537 0 9.083-1.629 9.083-6.849 0-3.082-2.174-5.458-5.186-5.797v-.067c2.475-.745 4.169-2.54 4.169-5.253 0-4.372-3.73-6.032-7.349-6.032L1.686 0zm7.176 3.664h3.524c2.383 0 3.121.327 3.844 1.013.548.521.799 1.237.801 2.07 0 .775-.267 1.466-.831 2.004-.705.676-1.674 1.011-3.443 1.011H8.862V3.664zm0 9.758h4.099c3.456 0 5.085.881 5.085 3.39 0 3.153-3.055 3.526-5.256 3.526H8.86v-6.916z" }) + ] + } + ); +}); + +exports.default = SiBitdefender; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.d.ts new file mode 100644 index 000000000..8a42462e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiBitdefender: IconType; +export { SiBitdefender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.mjs new file mode 100644 index 000000000..c5a73cd06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitdefender.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiBitdefender = React.forwardRef(function SiBitdefender2({ title = "Bitdefender", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.685 0v.357l1.232 1.046c1.477 1.204 1.67 1.439 1.67 2.526V24h8.646c4.537 0 9.083-1.629 9.083-6.849 0-3.082-2.174-5.458-5.186-5.797v-.067c2.475-.745 4.169-2.54 4.169-5.253 0-4.372-3.73-6.032-7.349-6.032L1.686 0zm7.176 3.664h3.524c2.383 0 3.121.327 3.844 1.013.548.521.799 1.237.801 2.07 0 .775-.267 1.466-.831 2.004-.705.676-1.674 1.011-3.443 1.011H8.862V3.664zm0 9.758h4.099c3.456 0 5.085.881 5.085 3.39 0 3.153-3.055 3.526-5.256 3.526H8.86v-6.916z" }) + ] + } + ); +}); + +export { SiBitdefender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.cjs new file mode 100644 index 000000000..d929fb420 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE6123"; +const SiBitly = React__namespace.forwardRef(function SiBitly2({ title = "Bitly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.055 21.26c-1.345.022-2.325-.41-2.386-1.585-.025-.44-.018-.91.002-1.192.137-1.716 1.333-2.95 2.53-3.19 1.482-.294 2.455.38 2.455 2.31 0 1.303-.36 3.618-2.59 3.657h-.016zM11.923 0C5.32 0 0 5.297 0 12.224c0 3.594 1.92 7.062 4.623 9.147.52.4 1.138.367 1.497.02.297-.285.272-.984-.285-1.475-2.16-1.886-3.652-4.76-3.652-7.635 0-5.15 4.58-9.49 9.74-9.49 6.28 0 9.636 5.102 9.636 9.43 0 2.65-1.29 5.84-3.626 7.874.015 0 .493-.942.493-2.784 0-3.13-1.976-4.836-4.28-4.836-1.663 0-2.667.598-3.34 1.152 0-1.272.045-3.652.045-3.652 0-1.572-.54-2.83-2.47-2.86-1.11-.015-1.932.493-2.44 1.647-.18.436-.12.916.254 1.125.3.18.81.046 1.046-.284.165-.21.254-.254.404-.24.24.03.257.405.257.66.014.193.193 2.903.088 9.865C7.98 21.798 9.493 24 13.1 24c1.56 0 2.756-.435 4.493-1.422C20.243 21.08 24 17.758 24 12.128 23.953 5.045 18.265 0 11.933 0" }) + ] + } + ); +}); + +exports.default = SiBitly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.d.ts new file mode 100644 index 000000000..783af1b44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE6123"; +declare const SiBitly: IconType; +export { SiBitly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.mjs new file mode 100644 index 000000000..6c12a8d63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE6123"; +const SiBitly = React.forwardRef(function SiBitly2({ title = "Bitly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.055 21.26c-1.345.022-2.325-.41-2.386-1.585-.025-.44-.018-.91.002-1.192.137-1.716 1.333-2.95 2.53-3.19 1.482-.294 2.455.38 2.455 2.31 0 1.303-.36 3.618-2.59 3.657h-.016zM11.923 0C5.32 0 0 5.297 0 12.224c0 3.594 1.92 7.062 4.623 9.147.52.4 1.138.367 1.497.02.297-.285.272-.984-.285-1.475-2.16-1.886-3.652-4.76-3.652-7.635 0-5.15 4.58-9.49 9.74-9.49 6.28 0 9.636 5.102 9.636 9.43 0 2.65-1.29 5.84-3.626 7.874.015 0 .493-.942.493-2.784 0-3.13-1.976-4.836-4.28-4.836-1.663 0-2.667.598-3.34 1.152 0-1.272.045-3.652.045-3.652 0-1.572-.54-2.83-2.47-2.86-1.11-.015-1.932.493-2.44 1.647-.18.436-.12.916.254 1.125.3.18.81.046 1.046-.284.165-.21.254-.254.404-.24.24.03.257.405.257.66.014.193.193 2.903.088 9.865C7.98 21.798 9.493 24 13.1 24c1.56 0 2.756-.435 4.493-1.422C20.243 21.08 24 17.758 24 12.128 23.953 5.045 18.265 0 11.933 0" }) + ] + } + ); +}); + +export { SiBitly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.cjs new file mode 100644 index 000000000..ad459d6f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#683D87"; +const SiBitrise = React__namespace.forwardRef(function SiBitrise2({ title = "Bitrise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.5154 13.4558c-.2744-1.8854-.692-3.7828-.9904-5.0477-.358-1.5035-1.6349-2.5775-3.1742-2.673-1.5155-.0955-4.0215-.2028-7.3627-.2028-3.3413 0-5.8472.1074-7.3627.2028-1.5394.0955-2.8163 1.1695-3.1743 2.673-.2983 1.265-.716 3.1623-.9904 5.0477-.191 1.2769-.3341 2.7685-.4535 4.463-.0596.9427.2506 1.8496.8831 2.5537.6324.704 1.4916 1.1217 2.4463 1.1575 2.0763.0955 5.2625.2148 8.6634.2148 3.401 0 6.587-.1193 8.6634-.2148.9427-.0477 1.8139-.4535 2.4463-1.1575.6325-.704.9427-1.611.883-2.5537-.1312-1.6945-.2863-3.198-.4773-4.463zm-1.6467 5.9188c-.3342.37-.7876.5848-1.2888.6086-2.0644.0955-5.2148.2148-8.5918.2148-3.3771 0-6.5274-.1193-8.5919-.2148-.5011-.0239-.9546-.2386-1.2887-.6086-.3342-.3699-.5012-.8472-.4654-1.3484.1074-1.6468.2506-3.1026.4415-4.3317.2625-1.8258.6683-3.6754.9666-4.9045.191-.7995.8592-1.3604 1.6826-1.42C6.2244 7.2745 8.6945 7.167 12 7.167c3.2935 0 5.7756.1074 7.2673.2029.8114.0477 1.4916.6205 1.6825 1.42.2864 1.2291.6921 3.0787.9666 4.9045.179 1.2291.3222 2.685.4415 4.3317 0 .5012-.167.9785-.4892 1.3484zM11.988 4.1958c.5608 0 1.0262-.4535 1.0262-1.0143 0-.561-.4534-1.0263-1.0262-1.0263-.5609 0-1.0263.4535-1.0263 1.0263 0 .5489.4654 1.0143 1.0263 1.0143zm5.9665 7.84c-.9069 0-1.6468.7399-1.6468 1.6468h3.2936c0-.907-.728-1.6468-1.6468-1.6468zm-11.933 0c-.907 0-1.6468.7399-1.6468 1.6468h3.2935c0-.907-.728-1.6468-1.6468-1.6468zm5.9665 5.9665c1.4677 0 2.661-1.1933 2.661-2.661h-5.334c0 1.4558 1.1933 2.661 2.673 2.661z" }) + ] + } + ); +}); + +exports.default = SiBitrise; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.d.ts new file mode 100644 index 000000000..3a3d66780 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#683D87"; +declare const SiBitrise: IconType; +export { SiBitrise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.mjs new file mode 100644 index 000000000..af681dd67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitrise.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#683D87"; +const SiBitrise = React.forwardRef(function SiBitrise2({ title = "Bitrise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.5154 13.4558c-.2744-1.8854-.692-3.7828-.9904-5.0477-.358-1.5035-1.6349-2.5775-3.1742-2.673-1.5155-.0955-4.0215-.2028-7.3627-.2028-3.3413 0-5.8472.1074-7.3627.2028-1.5394.0955-2.8163 1.1695-3.1743 2.673-.2983 1.265-.716 3.1623-.9904 5.0477-.191 1.2769-.3341 2.7685-.4535 4.463-.0596.9427.2506 1.8496.8831 2.5537.6324.704 1.4916 1.1217 2.4463 1.1575 2.0763.0955 5.2625.2148 8.6634.2148 3.401 0 6.587-.1193 8.6634-.2148.9427-.0477 1.8139-.4535 2.4463-1.1575.6325-.704.9427-1.611.883-2.5537-.1312-1.6945-.2863-3.198-.4773-4.463zm-1.6467 5.9188c-.3342.37-.7876.5848-1.2888.6086-2.0644.0955-5.2148.2148-8.5918.2148-3.3771 0-6.5274-.1193-8.5919-.2148-.5011-.0239-.9546-.2386-1.2887-.6086-.3342-.3699-.5012-.8472-.4654-1.3484.1074-1.6468.2506-3.1026.4415-4.3317.2625-1.8258.6683-3.6754.9666-4.9045.191-.7995.8592-1.3604 1.6826-1.42C6.2244 7.2745 8.6945 7.167 12 7.167c3.2935 0 5.7756.1074 7.2673.2029.8114.0477 1.4916.6205 1.6825 1.42.2864 1.2291.6921 3.0787.9666 4.9045.179 1.2291.3222 2.685.4415 4.3317 0 .5012-.167.9785-.4892 1.3484zM11.988 4.1958c.5608 0 1.0262-.4535 1.0262-1.0143 0-.561-.4534-1.0263-1.0262-1.0263-.5609 0-1.0263.4535-1.0263 1.0263 0 .5489.4654 1.0143 1.0263 1.0143zm5.9665 7.84c-.9069 0-1.6468.7399-1.6468 1.6468h3.2936c0-.907-.728-1.6468-1.6468-1.6468zm-11.933 0c-.907 0-1.6468.7399-1.6468 1.6468h3.2935c0-.907-.728-1.6468-1.6468-1.6468zm5.9665 5.9665c1.4677 0 2.661-1.1933 2.661-2.661h-5.334c0 1.4558 1.1933 2.661 2.673 2.661z" }) + ] + } + ); +}); + +export { SiBitrise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.cjs new file mode 100644 index 000000000..56be07f9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6767B2"; +const SiBitsy = React__namespace.forwardRef(function SiBitsy2({ title = "Bitsy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.143 12v10.29h-3.429v-3.43H6.857v3.43H3.43v-6.86H0V1.71h3.429v3.43h3.428V1.71h3.429V12Zm3.428-3.43V1.71H24v6.86ZM17.143 12V8.57h3.428V12Z" }) + ] + } + ); +}); + +exports.default = SiBitsy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.d.ts new file mode 100644 index 000000000..6f894178e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6767B2"; +declare const SiBitsy: IconType; +export { SiBitsy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.mjs new file mode 100644 index 000000000..60555de56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitsy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6767B2"; +const SiBitsy = React.forwardRef(function SiBitsy2({ title = "Bitsy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.143 12v10.29h-3.429v-3.43H6.857v3.43H3.43v-6.86H0V1.71h3.429v3.43h3.428V1.71h3.429V12Zm3.428-3.43V1.71H24v6.86ZM17.143 12V8.57h3.428V12Z" }) + ] + } + ); +}); + +export { SiBitsy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.cjs new file mode 100644 index 000000000..7c6ee0fdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#050505"; +const SiBittorrent = React__namespace.forwardRef(function SiBittorrent2({ title = "BitTorrent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0002.0014C5.3735.0004.001 5.3718 0 11.9984a11.9986 11.9986 0 0 0 1.7006 6.1593.132.132 0 0 0 .1128.0384c.0288 0 .048-.0696.048-.1104a.739.739 0 0 0-.0336-.1296 22.14 22.14 0 0 1-.4224-2.2941 9.8389 9.8389 0 0 1 .4272-3.866c1.1014-3.3956 3.3332-5.6993 6.664-6.9376a10.302 10.302 0 0 1 3.398-.5951.7823.7823 0 0 1 .8567.763c0 .4488-.3431.7368-.8495.7656a12.853 12.853 0 0 0-1.6078.1656 8.6918 8.6918 0 0 0-4.8642 2.6397C3.3468 10.8169 2.55 13.4566 3.03 16.4539a8.6846 8.6846 0 0 0 2.4454 4.785 8.9414 8.9414 0 0 0 6.3688 2.7597h.156a11.9507 11.9507 0 0 0 5.613-1.3918h-5.5938a8.3988 8.3988 0 0 1-1.4086-.1296c-4.1387-.7467-6.915-4.673-6.2393-8.8238.5627-3.5271 3.4722-6.2073 7.0336-6.4793a7.6407 7.6407 0 0 1 2.1597.1368.7487.7487 0 0 1 .6168.876.7847.7847 0 0 1-.96.6023 6.0836 6.0836 0 0 0-.8014-.1152 6.328 6.328 0 0 0-2.899.504c-2.5052 1.0803-4.0095 3.6719-3.705 6.3832.3566 3.1366 3.0056 5.5091 6.1624 5.5194h6.9904c.6791 0 .84.0144 1.1375-.24.382-.3525.742-.7284 1.0775-1.1255h-9.3302a4.3483 4.3483 0 0 1-2.0733-.516c-2.4037-1.1787-3.3968-4.0828-2.218-6.4865s4.0828-3.3968 6.4866-2.218c.1195.0586.2365.122.3508.1903a.7511.7511 0 0 1 .3168 1.044.7655.7655 0 0 1-1.0655.2711c-1.5988-.9125-3.6346-.356-4.547 1.2428a3.3332 3.3332 0 0 0-.3964 2.1792c.2433 1.6186 1.6388 2.8127 3.2756 2.8029 3.3596.0336 6.7193 0 10.0789 0a.4224.4224 0 0 0 .2807-.144c3.3584-5.7126 1.45-13.0661-4.2626-16.4245a11.9986 11.9986 0 0 0-6.0802-1.655z" }) + ] + } + ); +}); + +exports.default = SiBittorrent; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.d.ts new file mode 100644 index 000000000..115af325b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#050505"; +declare const SiBittorrent: IconType; +export { SiBittorrent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.mjs new file mode 100644 index 000000000..e7d292747 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBittorrent.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#050505"; +const SiBittorrent = React.forwardRef(function SiBittorrent2({ title = "BitTorrent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0002.0014C5.3735.0004.001 5.3718 0 11.9984a11.9986 11.9986 0 0 0 1.7006 6.1593.132.132 0 0 0 .1128.0384c.0288 0 .048-.0696.048-.1104a.739.739 0 0 0-.0336-.1296 22.14 22.14 0 0 1-.4224-2.2941 9.8389 9.8389 0 0 1 .4272-3.866c1.1014-3.3956 3.3332-5.6993 6.664-6.9376a10.302 10.302 0 0 1 3.398-.5951.7823.7823 0 0 1 .8567.763c0 .4488-.3431.7368-.8495.7656a12.853 12.853 0 0 0-1.6078.1656 8.6918 8.6918 0 0 0-4.8642 2.6397C3.3468 10.8169 2.55 13.4566 3.03 16.4539a8.6846 8.6846 0 0 0 2.4454 4.785 8.9414 8.9414 0 0 0 6.3688 2.7597h.156a11.9507 11.9507 0 0 0 5.613-1.3918h-5.5938a8.3988 8.3988 0 0 1-1.4086-.1296c-4.1387-.7467-6.915-4.673-6.2393-8.8238.5627-3.5271 3.4722-6.2073 7.0336-6.4793a7.6407 7.6407 0 0 1 2.1597.1368.7487.7487 0 0 1 .6168.876.7847.7847 0 0 1-.96.6023 6.0836 6.0836 0 0 0-.8014-.1152 6.328 6.328 0 0 0-2.899.504c-2.5052 1.0803-4.0095 3.6719-3.705 6.3832.3566 3.1366 3.0056 5.5091 6.1624 5.5194h6.9904c.6791 0 .84.0144 1.1375-.24.382-.3525.742-.7284 1.0775-1.1255h-9.3302a4.3483 4.3483 0 0 1-2.0733-.516c-2.4037-1.1787-3.3968-4.0828-2.218-6.4865s4.0828-3.3968 6.4866-2.218c.1195.0586.2365.122.3508.1903a.7511.7511 0 0 1 .3168 1.044.7655.7655 0 0 1-1.0655.2711c-1.5988-.9125-3.6346-.356-4.547 1.2428a3.3332 3.3332 0 0 0-.3964 2.1792c.2433 1.6186 1.6388 2.8127 3.2756 2.8029 3.3596.0336 6.7193 0 10.0789 0a.4224.4224 0 0 0 .2807-.144c3.3584-5.7126 1.45-13.0661-4.2626-16.4245a11.9986 11.9986 0 0 0-6.0802-1.655z" }) + ] + } + ); +}); + +export { SiBittorrent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.cjs new file mode 100644 index 000000000..9324a7e55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#175DDC"; +const SiBitwarden = React__namespace.forwardRef(function SiBitwarden2({ title = "Bitwarden", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.722.296A.964.964 0 0 0 21.018 0H2.982a.959.959 0 0 0-.703.296.96.96 0 0 0-.297.702v12c0 .895.174 1.783.523 2.665.349.88.783 1.66 1.3 2.345.517.68 1.132 1.346 1.848 1.993a21.807 21.807 0 0 0 1.98 1.609c.605.427 1.235.83 1.893 1.212.657.381 1.125.638 1.4.772.276.134.5.241.664.311a.916.916 0 0 0 .814 0c.168-.073.389-.177.667-.311.275-.134.743-.394 1.401-.772a25.305 25.305 0 0 0 1.894-1.212A21.891 21.891 0 0 0 18.348 20c.716-.647 1.33-1.31 1.847-1.993s.949-1.463 1.3-2.345c.35-.879.524-1.767.524-2.665V1.001a.95.95 0 0 0-.297-.705zm-2.325 12.815c0 4.344-7.397 8.087-7.397 8.087V2.57h7.397v10.54z" }) + ] + } + ); +}); + +exports.default = SiBitwarden; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.d.ts new file mode 100644 index 000000000..f798b8184 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#175DDC"; +declare const SiBitwarden: IconType; +export { SiBitwarden as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.mjs new file mode 100644 index 000000000..c12fa4c06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwarden.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#175DDC"; +const SiBitwarden = React.forwardRef(function SiBitwarden2({ title = "Bitwarden", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.722.296A.964.964 0 0 0 21.018 0H2.982a.959.959 0 0 0-.703.296.96.96 0 0 0-.297.702v12c0 .895.174 1.783.523 2.665.349.88.783 1.66 1.3 2.345.517.68 1.132 1.346 1.848 1.993a21.807 21.807 0 0 0 1.98 1.609c.605.427 1.235.83 1.893 1.212.657.381 1.125.638 1.4.772.276.134.5.241.664.311a.916.916 0 0 0 .814 0c.168-.073.389-.177.667-.311.275-.134.743-.394 1.401-.772a25.305 25.305 0 0 0 1.894-1.212A21.891 21.891 0 0 0 18.348 20c.716-.647 1.33-1.31 1.847-1.993s.949-1.463 1.3-2.345c.35-.879.524-1.767.524-2.665V1.001a.95.95 0 0 0-.297-.705zm-2.325 12.815c0 4.344-7.397 8.087-7.397 8.087V2.57h7.397v10.54z" }) + ] + } + ); +}); + +export { SiBitwarden as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.cjs new file mode 100644 index 000000000..e15175407 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5A00"; +const SiBitwig = React__namespace.forwardRef(function SiBitwig2({ title = "Bitwig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.15 7.782a1.59 1.59 0 1 1 3.181 0 1.59 1.59 0 0 1-3.181 0zm5.741 1.591a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zm4.218 0a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zm4.15 0a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zM5.741 10.409a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm8.368 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm4.15 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm4.15 3.182a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zM1.591 10.409a1.591 1.591 0 1 0 0 3.182 1.591 1.591 0 0 0 0-3.182zm4.15 4.218a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm12.518 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm4.15 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm-20.818 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m8.3-4.218a1.591 1.591 0 1 0 0 3.182 1.591 1.591 0 0 0 0-3.182Z" }) + ] + } + ); +}); + +exports.default = SiBitwig; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.d.ts new file mode 100644 index 000000000..d083cea94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5A00"; +declare const SiBitwig: IconType; +export { SiBitwig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.mjs new file mode 100644 index 000000000..1ff0acc67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBitwig.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5A00"; +const SiBitwig = React.forwardRef(function SiBitwig2({ title = "Bitwig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.15 7.782a1.59 1.59 0 1 1 3.181 0 1.59 1.59 0 0 1-3.181 0zm5.741 1.591a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zm4.218 0a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zm4.15 0a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zM5.741 10.409a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm8.368 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm4.15 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm4.15 3.182a1.59 1.59 0 1 0 0-3.181 1.59 1.59 0 0 0 0 3.181zM1.591 10.409a1.591 1.591 0 1 0 0 3.182 1.591 1.591 0 0 0 0-3.182zm4.15 4.218a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm12.518 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm4.15 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181zm-20.818 0a1.59 1.59 0 1 0 0 3.181 1.59 1.59 0 0 0 0-3.181m8.3-4.218a1.591 1.591 0 1 0 0 3.182 1.591 1.591 0 0 0 0-3.182Z" }) + ] + } + ); +}); + +export { SiBitwig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.cjs new file mode 100644 index 000000000..295c88339 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBlack = React__namespace.forwardRef(function SiBlack2({ title = "Black", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.506 17.772c-3.358-.211-6.452-1.124-8.347-2.462-.484-.342-1.137-.954-1.43-1.34-.6-.794-.85-1.735-.674-2.548.32-1.478 1.763-2.846 4.016-3.807 1.668-.71 3.533-1.142 5.958-1.379.844-.082 3.291-.069 4.184.024 2.67.276 4.656.795 6.416 1.677 2.259 1.132 3.457 2.63 3.366 4.204q-.103 1.815-2.347 3.303c-2.536 1.684-6.902 2.596-11.142 2.328m3.642-.493c2.17-.206 4.068-.66 5.652-1.35.594-.26.588-.257 1.185-.6 1.687-.972 2.656-2.273 2.58-3.47-.046-.75-.37-1.365-1.112-2.106-1.489-1.489-4.112-2.54-7.46-2.99-.842-.112-1.744-.161-2.991-.16-1.337 0-1.774.022-2.797.142-2.907.343-5.51 1.262-7.108 2.51-.39.305-.89.815-1.102 1.123-.325.472-.567 1.16-.567 1.611 0 .307.123.766.301 1.127 1.13 2.28 5.24 3.992 10.189 4.244.634.032 2.546-.015 3.23-.08m-4.162-.283c-2.184-.21-3.922-.621-5.523-1.305-1.972-.842-3.357-2.079-3.669-3.276-.205-.79.16-1.638 1.087-2.524 1.574-1.504 4.443-2.557 7.927-2.908 1.192-.12 3.207-.121 4.391-.001 2.979.3 5.467 1.092 7.188 2.288.438.304 1.298 1.167 1.49 1.494.478.814.516 1.433.134 2.179-.952 1.861-3.956 3.366-7.825 3.92-1.628.232-3.643.284-5.2.134zM20.237 14.4c.294-.112.716-.42 1.013-.74.237-.257.291-.348.205-.348-.022 0-.186.135-.365.3-.364.338-.6.504-.775.547-.1.024-.12.015-.12-.057 0-.047.051-.197.113-.332.133-.29.118-.47-.054-.675l-.111-.132.183-.205.29-.324c.147-.165.216-.154.195.029-.014.12.003.16.09.218.207.135.447-.009.494-.294.021-.133.006-.174-.107-.287-.236-.236-.463-.152-.928.341-.228.242-.374.358-.52.414-.212.08-.338.068-.338-.032 0-.031.359-.637.798-1.345l.798-1.288h-.72l-.3.358-.728.878c-1.204 1.455-1.92 2.212-2.391 2.524-.208.139-.285.164-.537.178-.278.016-.298.01-.37-.098-.065-.1-.068-.138-.02-.297.116-.39.556-1.143.82-1.407.17-.17.336-.195.287-.044-.08.246-.074.402.019.485.126.115.343.107.443-.016.092-.114.105-.376.028-.546-.16-.352-.914-.306-1.547.095-.134.085-.588.503-1.009.93-.602.61-.788.775-.877.775-.08 0-.113-.022-.113-.075 0-.105.16-.436.464-.97.142-.248.32-.562.395-.7l.138-.249h-.686l-.118.203-.119.202-.083-.16c-.13-.255-.304-.34-.646-.319-.557.035-1.035.345-1.925 1.247-.552.56-1.03.951-1.16.951-.108 0-.122-.118-.054-.447.085-.413.166-.562 1.14-2.12.458-.731.833-1.341.833-1.354s-.152-.023-.336-.022l-.336.002-.282.42a15 15 0 0 1-1.34 1.701c-.227.25-.426.46-.442.468-.015.007-.03-.11-.034-.26-.011-.534-.16-.843-.523-1.095-.096-.067-.176-.136-.176-.153s.147-.103.326-.192c.377-.186.7-.487.85-.791.132-.267.142-.771.02-1.022-.092-.19-.386-.489-.556-.565-.154-.068-.135-.116.097-.245.16-.089.176-.11.107-.134-.103-.036-.367.02-.577.125-.14.07-.212.074-.635.038-1.55-.129-2.884.158-3.88.835-.359.243-.866.8-1.033 1.132-.128.254-.141.311-.114.498.033.225.114.42.23.553.287.326 1.174.36 1.772.069.333-.163.514-.376.757-.89.17-.359.184-.419.2-.82.029-.717.019-.72-.286-.12-.365.72-.599 1.07-.904 1.36-.332.315-.492.394-.849.42l-.292.02-.174-.174c-.16-.16-.174-.192-.174-.41 0-.48.237-.881.758-1.278.751-.572 1.947-.976 2.905-.98.554-.002 1.063.053 1.06.114-.001.028-.11.128-.241.222-.309.221-.873.781-1.2 1.193-.513.643-1.111 1.603-1.354 2.172-.55 1.287-.885 1.66-1.592 1.772-.482.077-.817-.038-1.134-.389-.224-.248-.21-.327.066-.36.491-.058.698-.3.587-.688-.04-.143-.088-.204-.203-.264-.181-.093-.328-.073-.554.077-.249.164-.369.352-.39.608-.038.454.29.909.797 1.107.327.128 1.046.14 1.513.025 1.168-.286 2.071-1.267 2.58-2.802.197-.59.605-1.48.827-1.804.18-.262.729-.84.797-.84.174 0 .456.562.456.91 0 .405-.23.82-.623 1.124-.233.18-.239.182-.35.11-.166-.11-.488-.064-.618.087-.11.126-.122.203-.054.33.052.096.216.109.433.033.136-.047.15-.042.281.1.255.28.244.81-.029 1.351-.3.595-.65.999-1.006 1.16-.235.107-.352.104-.46-.011-.171-.184-.082-.752.149-.944.038-.032.149-.153.246-.269.173-.207.174-.21.053-.164-.438.167-.758.738-.682 1.216.065.403.425.576 1 .48.58-.095.776-.23 1.645-1.126.433-.446.798-.8.81-.788s-.056.148-.153.301c-.36.566-.517 1.177-.362 1.413.09.136.31.236.524.236.294 0 .619-.23 1.22-.861.217-.23.407-.407.42-.394s-.015.15-.064.303c-.145.46-.05.745.296.893.306.13.6.04 1.032-.314.46-.377.417-.366.385-.092-.026.223-.02.25.09.358.098.099.143.114.283.095.307-.041.544-.204 1.037-.71.264-.27.499-.492.522-.492s.013.08-.022.179c-.146.416-.038.774.284.94.167.087.244.099.542.085.298-.015.392-.04.672-.183.289-.147.43-.273 1.267-1.124.519-.528.943-.943.943-.924 0 .041-.464.825-.97 1.634l-.365.585.328.013c.18.007.353.003.382-.008s.225-.306.433-.655c.3-.502.392-.627.448-.602a.8.8 0 0 0 .255.022c.128-.006.192.01.21.055.013.035-.046.224-.132.421-.185.428-.197.608-.048.756.131.132.327.14.629.025zm-7.82-.333c-.088-.087-.086-.143.015-.43.258-.736 1.054-1.566 1.349-1.408.192.103.147.502-.096.855-.373.543-.917 1.051-1.124 1.051a.24.24 0 0 1-.144-.068" }) + ] + } + ); +}); + +exports.default = SiBlack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.d.ts new file mode 100644 index 000000000..89b5e3efd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBlack: IconType; +export { SiBlack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.mjs new file mode 100644 index 000000000..273677253 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBlack = React.forwardRef(function SiBlack2({ title = "Black", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.506 17.772c-3.358-.211-6.452-1.124-8.347-2.462-.484-.342-1.137-.954-1.43-1.34-.6-.794-.85-1.735-.674-2.548.32-1.478 1.763-2.846 4.016-3.807 1.668-.71 3.533-1.142 5.958-1.379.844-.082 3.291-.069 4.184.024 2.67.276 4.656.795 6.416 1.677 2.259 1.132 3.457 2.63 3.366 4.204q-.103 1.815-2.347 3.303c-2.536 1.684-6.902 2.596-11.142 2.328m3.642-.493c2.17-.206 4.068-.66 5.652-1.35.594-.26.588-.257 1.185-.6 1.687-.972 2.656-2.273 2.58-3.47-.046-.75-.37-1.365-1.112-2.106-1.489-1.489-4.112-2.54-7.46-2.99-.842-.112-1.744-.161-2.991-.16-1.337 0-1.774.022-2.797.142-2.907.343-5.51 1.262-7.108 2.51-.39.305-.89.815-1.102 1.123-.325.472-.567 1.16-.567 1.611 0 .307.123.766.301 1.127 1.13 2.28 5.24 3.992 10.189 4.244.634.032 2.546-.015 3.23-.08m-4.162-.283c-2.184-.21-3.922-.621-5.523-1.305-1.972-.842-3.357-2.079-3.669-3.276-.205-.79.16-1.638 1.087-2.524 1.574-1.504 4.443-2.557 7.927-2.908 1.192-.12 3.207-.121 4.391-.001 2.979.3 5.467 1.092 7.188 2.288.438.304 1.298 1.167 1.49 1.494.478.814.516 1.433.134 2.179-.952 1.861-3.956 3.366-7.825 3.92-1.628.232-3.643.284-5.2.134zM20.237 14.4c.294-.112.716-.42 1.013-.74.237-.257.291-.348.205-.348-.022 0-.186.135-.365.3-.364.338-.6.504-.775.547-.1.024-.12.015-.12-.057 0-.047.051-.197.113-.332.133-.29.118-.47-.054-.675l-.111-.132.183-.205.29-.324c.147-.165.216-.154.195.029-.014.12.003.16.09.218.207.135.447-.009.494-.294.021-.133.006-.174-.107-.287-.236-.236-.463-.152-.928.341-.228.242-.374.358-.52.414-.212.08-.338.068-.338-.032 0-.031.359-.637.798-1.345l.798-1.288h-.72l-.3.358-.728.878c-1.204 1.455-1.92 2.212-2.391 2.524-.208.139-.285.164-.537.178-.278.016-.298.01-.37-.098-.065-.1-.068-.138-.02-.297.116-.39.556-1.143.82-1.407.17-.17.336-.195.287-.044-.08.246-.074.402.019.485.126.115.343.107.443-.016.092-.114.105-.376.028-.546-.16-.352-.914-.306-1.547.095-.134.085-.588.503-1.009.93-.602.61-.788.775-.877.775-.08 0-.113-.022-.113-.075 0-.105.16-.436.464-.97.142-.248.32-.562.395-.7l.138-.249h-.686l-.118.203-.119.202-.083-.16c-.13-.255-.304-.34-.646-.319-.557.035-1.035.345-1.925 1.247-.552.56-1.03.951-1.16.951-.108 0-.122-.118-.054-.447.085-.413.166-.562 1.14-2.12.458-.731.833-1.341.833-1.354s-.152-.023-.336-.022l-.336.002-.282.42a15 15 0 0 1-1.34 1.701c-.227.25-.426.46-.442.468-.015.007-.03-.11-.034-.26-.011-.534-.16-.843-.523-1.095-.096-.067-.176-.136-.176-.153s.147-.103.326-.192c.377-.186.7-.487.85-.791.132-.267.142-.771.02-1.022-.092-.19-.386-.489-.556-.565-.154-.068-.135-.116.097-.245.16-.089.176-.11.107-.134-.103-.036-.367.02-.577.125-.14.07-.212.074-.635.038-1.55-.129-2.884.158-3.88.835-.359.243-.866.8-1.033 1.132-.128.254-.141.311-.114.498.033.225.114.42.23.553.287.326 1.174.36 1.772.069.333-.163.514-.376.757-.89.17-.359.184-.419.2-.82.029-.717.019-.72-.286-.12-.365.72-.599 1.07-.904 1.36-.332.315-.492.394-.849.42l-.292.02-.174-.174c-.16-.16-.174-.192-.174-.41 0-.48.237-.881.758-1.278.751-.572 1.947-.976 2.905-.98.554-.002 1.063.053 1.06.114-.001.028-.11.128-.241.222-.309.221-.873.781-1.2 1.193-.513.643-1.111 1.603-1.354 2.172-.55 1.287-.885 1.66-1.592 1.772-.482.077-.817-.038-1.134-.389-.224-.248-.21-.327.066-.36.491-.058.698-.3.587-.688-.04-.143-.088-.204-.203-.264-.181-.093-.328-.073-.554.077-.249.164-.369.352-.39.608-.038.454.29.909.797 1.107.327.128 1.046.14 1.513.025 1.168-.286 2.071-1.267 2.58-2.802.197-.59.605-1.48.827-1.804.18-.262.729-.84.797-.84.174 0 .456.562.456.91 0 .405-.23.82-.623 1.124-.233.18-.239.182-.35.11-.166-.11-.488-.064-.618.087-.11.126-.122.203-.054.33.052.096.216.109.433.033.136-.047.15-.042.281.1.255.28.244.81-.029 1.351-.3.595-.65.999-1.006 1.16-.235.107-.352.104-.46-.011-.171-.184-.082-.752.149-.944.038-.032.149-.153.246-.269.173-.207.174-.21.053-.164-.438.167-.758.738-.682 1.216.065.403.425.576 1 .48.58-.095.776-.23 1.645-1.126.433-.446.798-.8.81-.788s-.056.148-.153.301c-.36.566-.517 1.177-.362 1.413.09.136.31.236.524.236.294 0 .619-.23 1.22-.861.217-.23.407-.407.42-.394s-.015.15-.064.303c-.145.46-.05.745.296.893.306.13.6.04 1.032-.314.46-.377.417-.366.385-.092-.026.223-.02.25.09.358.098.099.143.114.283.095.307-.041.544-.204 1.037-.71.264-.27.499-.492.522-.492s.013.08-.022.179c-.146.416-.038.774.284.94.167.087.244.099.542.085.298-.015.392-.04.672-.183.289-.147.43-.273 1.267-1.124.519-.528.943-.943.943-.924 0 .041-.464.825-.97 1.634l-.365.585.328.013c.18.007.353.003.382-.008s.225-.306.433-.655c.3-.502.392-.627.448-.602a.8.8 0 0 0 .255.022c.128-.006.192.01.21.055.013.035-.046.224-.132.421-.185.428-.197.608-.048.756.131.132.327.14.629.025zm-7.82-.333c-.088-.087-.086-.143.015-.43.258-.736 1.054-1.566 1.349-1.408.192.103.147.502-.096.855-.373.543-.917 1.051-1.124 1.051a.24.24 0 0 1-.144-.068" }) + ] + } + ); +}); + +export { SiBlack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.cjs new file mode 100644 index 000000000..35a212375 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBlackberry = React__namespace.forwardRef(function SiBlackberry2({ title = "Blackberry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.05 3.54L1.17 7.7H4.45C6.97 7.7 7.73 6.47 7.73 5.36C7.73 4.54 7.26 3.54 5.21 3.54H2.05M10.54 3.54L9.66 7.7H12.94C15.5 7.7 16.22 6.47 16.22 5.36C16.22 4.54 15.75 3.54 13.7 3.54H10.54M18.32 7.23L17.39 11.39H20.67C23.24 11.39 24 10.22 24 9.05C24 8.23 23.53 7.23 21.5 7.23H18.32M.88 9.8L0 13.96H3.28C5.85 13.96 6.56 12.73 6.56 11.62C6.56 10.8 6.09 9.8 4.04 9.8H.88M9.43 9.8L8.5 13.96H11.77C14.34 13.96 15.11 12.73 15.11 11.62C15.11 10.8 14.64 9.8 12.59 9.8H9.42M17.09 13.73L16.22 17.88H19.5C22 17.88 22.77 16.71 22.77 15.54C22.77 14.72 22.3 13.73 20.26 13.73H17.09M8.2 16.3L7.32 20.46H10.6C13.11 20.46 13.87 19.23 13.87 18.12C13.87 17.3 13.41 16.3 11.36 16.3H8.2Z" }) + ] + } + ); +}); + +exports.default = SiBlackberry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.d.ts new file mode 100644 index 000000000..79b83c0f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBlackberry: IconType; +export { SiBlackberry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.mjs new file mode 100644 index 000000000..34df7af80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackberry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBlackberry = React.forwardRef(function SiBlackberry2({ title = "Blackberry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.05 3.54L1.17 7.7H4.45C6.97 7.7 7.73 6.47 7.73 5.36C7.73 4.54 7.26 3.54 5.21 3.54H2.05M10.54 3.54L9.66 7.7H12.94C15.5 7.7 16.22 6.47 16.22 5.36C16.22 4.54 15.75 3.54 13.7 3.54H10.54M18.32 7.23L17.39 11.39H20.67C23.24 11.39 24 10.22 24 9.05C24 8.23 23.53 7.23 21.5 7.23H18.32M.88 9.8L0 13.96H3.28C5.85 13.96 6.56 12.73 6.56 11.62C6.56 10.8 6.09 9.8 4.04 9.8H.88M9.43 9.8L8.5 13.96H11.77C14.34 13.96 15.11 12.73 15.11 11.62C15.11 10.8 14.64 9.8 12.59 9.8H9.42M17.09 13.73L16.22 17.88H19.5C22 17.88 22.77 16.71 22.77 15.54C22.77 14.72 22.3 13.73 20.26 13.73H17.09M8.2 16.3L7.32 20.46H10.6C13.11 20.46 13.87 19.23 13.87 18.12C13.87 17.3 13.41 16.3 11.36 16.3H8.2Z" }) + ] + } + ); +}); + +export { SiBlackberry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.cjs new file mode 100644 index 000000000..d6f764e25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA200"; +const SiBlackmagicdesign = React__namespace.forwardRef(function SiBlackmagicdesign2({ title = "Blackmagic Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.385 0c-1.15 0-2.076.93-2.076 2.076V5.31c0 1.148.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.93 2.076-2.076V2.076A2.074 2.074 0 0 0 13.615 0h-3.23zm0 .924h3.23c.638 0 1.155.514 1.155 1.152V5.31c0 .638-.516 1.152-1.155 1.152h-3.23A1.152 1.152 0 0 1 9.23 5.309V2.076c0-.638.516-1.152 1.155-1.152zm0 7.385c-1.15 0-2.076.929-2.076 2.076v3.23c0 1.15.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.929 2.076-2.076v-3.23c0-1.15-.929-2.076-2.076-2.076h-3.23zm0 .921h3.23c.638 0 1.155.516 1.155 1.155v3.23c0 .638-.516 1.155-1.155 1.155h-3.23a1.154 1.154 0 0 1-1.155-1.155v-3.23c0-.638.516-1.155 1.155-1.155zm0 7.385c-1.15 0-2.076.93-2.076 2.076v3.233c0 1.149.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.93 2.076-2.076V18.69a2.075 2.075 0 0 0-2.076-2.076h-3.23zm0 .924h3.23c.638 0 1.155.514 1.155 1.152v3.233c0 .638-.516 1.152-1.155 1.152h-3.23a1.152 1.152 0 0 1-1.155-1.152V18.69c0-.638.516-1.152 1.155-1.152Z" }) + ] + } + ); +}); + +exports.default = SiBlackmagicdesign; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.d.ts new file mode 100644 index 000000000..3766be7d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA200"; +declare const SiBlackmagicdesign: IconType; +export { SiBlackmagicdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.mjs new file mode 100644 index 000000000..a97904e97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlackmagicdesign.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA200"; +const SiBlackmagicdesign = React.forwardRef(function SiBlackmagicdesign2({ title = "Blackmagic Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.385 0c-1.15 0-2.076.93-2.076 2.076V5.31c0 1.148.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.93 2.076-2.076V2.076A2.074 2.074 0 0 0 13.615 0h-3.23zm0 .924h3.23c.638 0 1.155.514 1.155 1.152V5.31c0 .638-.516 1.152-1.155 1.152h-3.23A1.152 1.152 0 0 1 9.23 5.309V2.076c0-.638.516-1.152 1.155-1.152zm0 7.385c-1.15 0-2.076.929-2.076 2.076v3.23c0 1.15.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.929 2.076-2.076v-3.23c0-1.15-.929-2.076-2.076-2.076h-3.23zm0 .921h3.23c.638 0 1.155.516 1.155 1.155v3.23c0 .638-.516 1.155-1.155 1.155h-3.23a1.154 1.154 0 0 1-1.155-1.155v-3.23c0-.638.516-1.155 1.155-1.155zm0 7.385c-1.15 0-2.076.93-2.076 2.076v3.233c0 1.149.929 2.076 2.076 2.076h3.23c1.15 0 2.076-.93 2.076-2.076V18.69a2.075 2.075 0 0 0-2.076-2.076h-3.23zm0 .924h3.23c.638 0 1.155.514 1.155 1.152v3.233c0 .638-.516 1.152-1.155 1.152h-3.23a1.152 1.152 0 0 1-1.155-1.152V18.69c0-.638.516-1.152 1.155-1.152Z" }) + ] + } + ); +}); + +export { SiBlackmagicdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.cjs new file mode 100644 index 000000000..81fc743af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CA2133"; +const SiBlazemeter = React__namespace.forwardRef(function SiBlazemeter2({ title = "Blazemeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.04 17.135c-.256 0-.352-.128-.32-.352l1.696-9.566c.032-.224.16-.352.416-.352h3.584c2.4 0 3.584.736 3.584 2.24 0 .607-.16 1.151-.48 1.6-.32.48-.768.8-1.344.991.384.096.736.32.96.672.256.32.384.768.384 1.28 0 1.215-.416 2.08-1.248 2.655-.832.544-1.952.832-3.328.832H15.04zm3.968-1.664c1.664 0 2.496-.608 2.496-1.823 0-.384-.16-.64-.448-.832-.288-.192-.8-.256-1.472-.256h-2.08l-.512 2.88h2.016v.031zm.768-4.383c1.472 0 2.176-.544 2.176-1.663 0-.352-.128-.576-.416-.736-.288-.16-.736-.224-1.344-.224h-1.984l-.48 2.623h2.048zm-6.88-.256a.608.608 0 0 0-.608-.608H.608a.608.608 0 1 0 0 1.216h11.648c.352 0 .64-.256.64-.608zm1.344-2.175a.608.608 0 0 0-.608-.608H6.464a.608.608 0 1 0 0 1.216h7.168c.32 0 .608-.256.608-.608zm-2.464 6.654a.608.608 0 0 0-.608-.608H8.256a.608.608 0 1 0 0 1.216h2.912c.32 0 .608-.256.608-.608zm-.864-2.271a.608.608 0 0 0-.608-.608H3.2a.608.608 0 1 0 0 1.216h7.104a.63.63 0 0 0 .608-.608z" }) + ] + } + ); +}); + +exports.default = SiBlazemeter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.d.ts new file mode 100644 index 000000000..93aaeeb6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CA2133"; +declare const SiBlazemeter: IconType; +export { SiBlazemeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.mjs new file mode 100644 index 000000000..49f54478d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazemeter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CA2133"; +const SiBlazemeter = React.forwardRef(function SiBlazemeter2({ title = "Blazemeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.04 17.135c-.256 0-.352-.128-.32-.352l1.696-9.566c.032-.224.16-.352.416-.352h3.584c2.4 0 3.584.736 3.584 2.24 0 .607-.16 1.151-.48 1.6-.32.48-.768.8-1.344.991.384.096.736.32.96.672.256.32.384.768.384 1.28 0 1.215-.416 2.08-1.248 2.655-.832.544-1.952.832-3.328.832H15.04zm3.968-1.664c1.664 0 2.496-.608 2.496-1.823 0-.384-.16-.64-.448-.832-.288-.192-.8-.256-1.472-.256h-2.08l-.512 2.88h2.016v.031zm.768-4.383c1.472 0 2.176-.544 2.176-1.663 0-.352-.128-.576-.416-.736-.288-.16-.736-.224-1.344-.224h-1.984l-.48 2.623h2.048zm-6.88-.256a.608.608 0 0 0-.608-.608H.608a.608.608 0 1 0 0 1.216h11.648c.352 0 .64-.256.64-.608zm1.344-2.175a.608.608 0 0 0-.608-.608H6.464a.608.608 0 1 0 0 1.216h7.168c.32 0 .608-.256.608-.608zm-2.464 6.654a.608.608 0 0 0-.608-.608H8.256a.608.608 0 1 0 0 1.216h2.912c.32 0 .608-.256.608-.608zm-.864-2.271a.608.608 0 0 0-.608-.608H3.2a.608.608 0 1 0 0 1.216h7.104a.63.63 0 0 0 .608-.608z" }) + ] + } + ); +}); + +export { SiBlazemeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.cjs new file mode 100644 index 000000000..09f509652 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#512BD4"; +const SiBlazor = React__namespace.forwardRef(function SiBlazor2({ title = "Blazor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.8337 8.1013a13.9123 13.9123 0 0 1-13.6424 11.72 10.1053 10.1053 0 0 1-1.994-.121 6.111 6.111 0 0 1-5.0824-5.7607 5.9344 5.9344 0 0 1 11.867-.0838c.025.9835-.4011 1.8464-1.277 1.8713-.9356 0-1.3742-.6677-1.3742-1.5674v-2.5001a1.5313 1.5313 0 0 0-1.5196-1.5328H8.7152a3.6481 3.6481 0 1 0 2.6948 6.0794l.0733-.1093.0734.1213a2.5807 2.5807 0 0 0 2.2007 1.0479 2.9088 2.9088 0 0 0 2.6947-3.0406 7.912 7.912 0 0 0-.217-1.9324 7.4043 7.4043 0 0 0-14.6395 1.6033 7.4971 7.4971 0 0 0 7.307 7.4043s.549.05 1.1677.0357a15.8029 15.8029 0 0 0 8.4747-2.5283c.036-.025.0719.025.048.0614a12.4392 12.4392 0 0 1-9.6901 3.9625A8.7442 8.7442 0 0 1 .003 13.8603a9.049 9.049 0 0 1 3.6349-7.2471 8.8634 8.8634 0 0 1 5.229-1.7262h2.813a7.9145 7.9145 0 0 0 5.8386-2.5777.1093.1093 0 0 1 .0594-.034.1115.1115 0 0 1 .1195.0522.113.113 0 0 1 .0155.0672 7.9345 7.9345 0 0 1-1.2274 3.5493.1075.1075 0 0 0-.0132.0609.1098.1098 0 0 0 .0724.0945.109.109 0 0 0 .0619.0033 8.5054 8.5054 0 0 0 5.9134-4.876.1554.1554 0 0 1 .0546-.0527.1497.1497 0 0 1 .147 0 .1535.1535 0 0 1 .0546.0527 10.779 10.779 0 0 1 1.0575 6.8746zm-14.9383 3.527a2.188 2.188 0 1 0 2.1877 2.1878v-2.0425a.1577.1577 0 0 0-.1497-.1497Z" }) + ] + } + ); +}); + +exports.default = SiBlazor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.d.ts new file mode 100644 index 000000000..ea059ab0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#512BD4"; +declare const SiBlazor: IconType; +export { SiBlazor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.mjs new file mode 100644 index 000000000..90b152b9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlazor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#512BD4"; +const SiBlazor = React.forwardRef(function SiBlazor2({ title = "Blazor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.8337 8.1013a13.9123 13.9123 0 0 1-13.6424 11.72 10.1053 10.1053 0 0 1-1.994-.121 6.111 6.111 0 0 1-5.0824-5.7607 5.9344 5.9344 0 0 1 11.867-.0838c.025.9835-.4011 1.8464-1.277 1.8713-.9356 0-1.3742-.6677-1.3742-1.5674v-2.5001a1.5313 1.5313 0 0 0-1.5196-1.5328H8.7152a3.6481 3.6481 0 1 0 2.6948 6.0794l.0733-.1093.0734.1213a2.5807 2.5807 0 0 0 2.2007 1.0479 2.9088 2.9088 0 0 0 2.6947-3.0406 7.912 7.912 0 0 0-.217-1.9324 7.4043 7.4043 0 0 0-14.6395 1.6033 7.4971 7.4971 0 0 0 7.307 7.4043s.549.05 1.1677.0357a15.8029 15.8029 0 0 0 8.4747-2.5283c.036-.025.0719.025.048.0614a12.4392 12.4392 0 0 1-9.6901 3.9625A8.7442 8.7442 0 0 1 .003 13.8603a9.049 9.049 0 0 1 3.6349-7.2471 8.8634 8.8634 0 0 1 5.229-1.7262h2.813a7.9145 7.9145 0 0 0 5.8386-2.5777.1093.1093 0 0 1 .0594-.034.1115.1115 0 0 1 .1195.0522.113.113 0 0 1 .0155.0672 7.9345 7.9345 0 0 1-1.2274 3.5493.1075.1075 0 0 0-.0132.0609.1098.1098 0 0 0 .0724.0945.109.109 0 0 0 .0619.0033 8.5054 8.5054 0 0 0 5.9134-4.876.1554.1554 0 0 1 .0546-.0527.1497.1497 0 0 1 .147 0 .1535.1535 0 0 1 .0546.0527 10.779 10.779 0 0 1 1.0575 6.8746zm-14.9383 3.527a2.188 2.188 0 1 0 2.1877 2.1878v-2.0425a.1577.1577 0 0 0-.1497-.1497Z" }) + ] + } + ); +}); + +export { SiBlazor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.cjs new file mode 100644 index 000000000..8591e7ecb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E87D0D"; +const SiBlender = React__namespace.forwardRef(function SiBlender2({ title = "Blender", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.51 13.214c.046-.8.438-1.506 1.03-2.006a3.424 3.424 0 0 1 2.212-.79c.85 0 1.631.3 2.211.79.592.5.983 1.206 1.028 2.005.045.823-.285 1.586-.865 2.153a3.389 3.389 0 0 1-2.374.938 3.393 3.393 0 0 1-2.376-.938c-.58-.567-.91-1.33-.865-2.152M7.35 14.831c.006.314.106.922.256 1.398a7.372 7.372 0 0 0 1.593 2.757 8.227 8.227 0 0 0 2.787 2.001 8.947 8.947 0 0 0 3.66.76 8.964 8.964 0 0 0 3.657-.772 8.285 8.285 0 0 0 2.785-2.01 7.428 7.428 0 0 0 1.592-2.762 6.964 6.964 0 0 0 .25-3.074 7.123 7.123 0 0 0-1.016-2.779 7.764 7.764 0 0 0-1.852-2.043h.002L13.566 2.55l-.02-.015c-.492-.378-1.319-.376-1.86.002-.547.382-.609 1.015-.123 1.415l-.001.001 3.126 2.543-9.53.01h-.013c-.788.001-1.545.518-1.695 1.172-.154.665.38 1.217 1.2 1.22V8.9l4.83-.01-8.62 6.617-.034.025c-.813.622-1.075 1.658-.563 2.313.52.667 1.625.668 2.447.004L7.414 14s-.069.52-.063.831zm12.09 1.741c-.97.988-2.326 1.548-3.795 1.55-1.47.004-2.827-.552-3.797-1.538a4.51 4.51 0 0 1-1.036-1.622 4.282 4.282 0 0 1 .282-3.519 4.702 4.702 0 0 1 1.153-1.371c.942-.768 2.141-1.183 3.396-1.185 1.256-.002 2.455.41 3.398 1.175.48.391.87.854 1.152 1.367a4.28 4.28 0 0 1 .522 1.706 4.236 4.236 0 0 1-.239 1.811 4.54 4.54 0 0 1-1.035 1.626" }) + ] + } + ); +}); + +exports.default = SiBlender; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.d.ts new file mode 100644 index 000000000..6bc40eb29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E87D0D"; +declare const SiBlender: IconType; +export { SiBlender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.mjs new file mode 100644 index 000000000..e33559809 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlender.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E87D0D"; +const SiBlender = React.forwardRef(function SiBlender2({ title = "Blender", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.51 13.214c.046-.8.438-1.506 1.03-2.006a3.424 3.424 0 0 1 2.212-.79c.85 0 1.631.3 2.211.79.592.5.983 1.206 1.028 2.005.045.823-.285 1.586-.865 2.153a3.389 3.389 0 0 1-2.374.938 3.393 3.393 0 0 1-2.376-.938c-.58-.567-.91-1.33-.865-2.152M7.35 14.831c.006.314.106.922.256 1.398a7.372 7.372 0 0 0 1.593 2.757 8.227 8.227 0 0 0 2.787 2.001 8.947 8.947 0 0 0 3.66.76 8.964 8.964 0 0 0 3.657-.772 8.285 8.285 0 0 0 2.785-2.01 7.428 7.428 0 0 0 1.592-2.762 6.964 6.964 0 0 0 .25-3.074 7.123 7.123 0 0 0-1.016-2.779 7.764 7.764 0 0 0-1.852-2.043h.002L13.566 2.55l-.02-.015c-.492-.378-1.319-.376-1.86.002-.547.382-.609 1.015-.123 1.415l-.001.001 3.126 2.543-9.53.01h-.013c-.788.001-1.545.518-1.695 1.172-.154.665.38 1.217 1.2 1.22V8.9l4.83-.01-8.62 6.617-.034.025c-.813.622-1.075 1.658-.563 2.313.52.667 1.625.668 2.447.004L7.414 14s-.069.52-.063.831zm12.09 1.741c-.97.988-2.326 1.548-3.795 1.55-1.47.004-2.827-.552-3.797-1.538a4.51 4.51 0 0 1-1.036-1.622 4.282 4.282 0 0 1 .282-3.519 4.702 4.702 0 0 1 1.153-1.371c.942-.768 2.141-1.183 3.396-1.185 1.256-.002 2.455.41 3.398 1.175.48.391.87.854 1.152 1.367a4.28 4.28 0 0 1 .522 1.706 4.236 4.236 0 0 1-.239 1.811 4.54 4.54 0 0 1-1.035 1.626" }) + ] + } + ); +}); + +export { SiBlender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.cjs new file mode 100644 index 000000000..2597038fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0072FF"; +const SiBlibli = React__namespace.forwardRef(function SiBlibli2({ title = "Blibli", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.8018 5.9457c2.4792.2543 4.3228.3814 6.1663.3814l-.89-2.9243a1.0171 1.0171 0 0 0-1.2714-.6357l-3.6235.9536c-.5721.1271-.89.7629-.6357 1.2714l.1907.89zm12.5234 0V3.9114c.0636-.6357-.6357-1.0807-1.2714-.6993l-3.6871 2.4157c-.2543.1272-.445.3814-.5086.6357 1.5257 0 3.1785-.1271 5.467-.3178zm-4.3228-2.0343a1.9707 1.9707 0 1 0-.9536-3.8142 1.9707 1.9707 0 1 0 .9536 3.8142Zm5.1492 2.6067v.0633h-.1266c-3.0514.3178-5.0857.4445-6.9928.4445-2.0343 0-4.0057-.1267-7.1207-.4445h-.0633c-.6357 0-1.0171.3812-.9536 1.0169 1.0172 6.0392 1.0167 9.7901-.509 15.1936C3.1949 23.364 3.7034 24 4.339 24H19.724c.5721 0 1.081-.5726.8902-1.1448a30.1325 30.1325 0 0 1-.509-15.257c.1271-.572-.3179-1.0801-.9536-1.0801Zm-10.298 3.623c.445 0 .7624.3178.7624.6357v.0633c0 .3814-.3173.7003-.7623.7003a.6357.6357 0 0 1-.6357-.7003.6357.6357 0 0 1 .6357-.699zm6.2292 0c.3815 0 .7636.3176.7636.699 0 .3814-.3821.7003-.7636.7003a.6357.6357 0 0 1-.6357-.7636.6357.6357 0 0 1 .6357-.6357Zm-6.6116 2.6061c.3179 0 .5091.2548.5091.5091a2.9243 2.9243 0 0 0 2.9873 2.924c2.2886 0 3.052-1.9704 3.052-2.924 0-.2543.1901-.509.4444-.509s.509.2547.509.509c0 1.2714-.954 3.8142-4.0054 3.8142-2.9878 0-3.9409-2.5428-3.9409-3.8142 0-.2543.1903-.509.4445-.509z" }) + ] + } + ); +}); + +exports.default = SiBlibli; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.d.ts new file mode 100644 index 000000000..0dfeb50e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0072FF"; +declare const SiBlibli: IconType; +export { SiBlibli as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.mjs new file mode 100644 index 000000000..a8351b72f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlibli.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0072FF"; +const SiBlibli = React.forwardRef(function SiBlibli2({ title = "Blibli", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.8018 5.9457c2.4792.2543 4.3228.3814 6.1663.3814l-.89-2.9243a1.0171 1.0171 0 0 0-1.2714-.6357l-3.6235.9536c-.5721.1271-.89.7629-.6357 1.2714l.1907.89zm12.5234 0V3.9114c.0636-.6357-.6357-1.0807-1.2714-.6993l-3.6871 2.4157c-.2543.1272-.445.3814-.5086.6357 1.5257 0 3.1785-.1271 5.467-.3178zm-4.3228-2.0343a1.9707 1.9707 0 1 0-.9536-3.8142 1.9707 1.9707 0 1 0 .9536 3.8142Zm5.1492 2.6067v.0633h-.1266c-3.0514.3178-5.0857.4445-6.9928.4445-2.0343 0-4.0057-.1267-7.1207-.4445h-.0633c-.6357 0-1.0171.3812-.9536 1.0169 1.0172 6.0392 1.0167 9.7901-.509 15.1936C3.1949 23.364 3.7034 24 4.339 24H19.724c.5721 0 1.081-.5726.8902-1.1448a30.1325 30.1325 0 0 1-.509-15.257c.1271-.572-.3179-1.0801-.9536-1.0801Zm-10.298 3.623c.445 0 .7624.3178.7624.6357v.0633c0 .3814-.3173.7003-.7623.7003a.6357.6357 0 0 1-.6357-.7003.6357.6357 0 0 1 .6357-.699zm6.2292 0c.3815 0 .7636.3176.7636.699 0 .3814-.3821.7003-.7636.7003a.6357.6357 0 0 1-.6357-.7636.6357.6357 0 0 1 .6357-.6357Zm-6.6116 2.6061c.3179 0 .5091.2548.5091.5091a2.9243 2.9243 0 0 0 2.9873 2.924c2.2886 0 3.052-1.9704 3.052-2.924 0-.2543.1901-.509.4444-.509s.509.2547.509.509c0 1.2714-.954 3.8142-4.0054 3.8142-2.9878 0-3.9409-2.5428-3.9409-3.8142 0-.2543.1903-.509.4445-.509z" }) + ] + } + ); +}); + +export { SiBlibli as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.cjs new file mode 100644 index 000000000..37b3a015d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E93D9"; +const SiBlockbench = React__namespace.forwardRef(function SiBlockbench2({ title = "Blockbench", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.651 3.277c-.25.002-1.009.057-3.47.226l-9.113.627c-3.044.208-2.743.18-2.888.27-.163.102-.254.274-.308.58-.451 2.177-.812 3.74-1.104 5.007-.015.04-.046.178-.07.306-.038.218-.037.239.012.307.105.144.23.176 1.14.294 4.78.63 8.905 1.164 13.412 1.765.931.124.948.125.99.022.032-.081.091-.36.207-.971.476-2.468 1.03-5.366 1.433-7.42.126-.642.132-.712.069-.82a.507.507 0 0 0-.153-.153c-.04-.024-.007-.042-.157-.04zM5.65 11.31c-.161.025-1.416.205-2.79.4-1.373.194-2.554.374-2.624.399-.21.076-.294.285-.194.478.062.12.215.19.7.324.065.018.15.043.19.056 4.54 1.274 9.338 2.68 13.583 3.888.238.071.563.197.77.197.157-.042 1.053-.484 3.082-1.505 1.649-.83 3.022-1.53 3.052-1.555.113-.099.173-.31.113-.402-.012-.018-.173-.055-.357-.082-3.949-.579-8.122-1.19-11.684-1.71-2.014-.29-2.635-.384-2.804-.422a3.329 3.329 0 0 0-.647-.09 2.254 2.254 0 0 0-.39.024zM4.32 14.55h-.016c-.054.011-1.122 2.303-1.122 2.407 0 .107.076.238.168.287.101.055.165.056.312.005.445-.139.918-.293 1.36-.425 1.316-.395 1.337-.403 1.477-.549.115-.12.328-.562.39-.811a.803.803 0 0 1 .057-.154c.02-.035.03-.065.024-.065-.768-.198-1.565-.415-2.292-.614a2.947 2.947 0 0 0-.358-.081zm13.52 1.843c-.07.04-.271.155-.448.254-.481.291-.937.593-1.446.833-.413.259-.594.315-.801.248a9.005 9.005 0 0 0-.786-.204.076.076 0 0 0-.067.05c-.23.643-.507 1.395-.74 2.053-.086.232-.236.767-.234.832.002.064.142.196.25.236a.551.551 0 0 0 .231.027c1.257-.51 2.215-1.15 3.284-1.71.327-.171.447-.29.494-.492.094-.407.182-.808.269-1.2.183-.812.194-.888.148-.961a.038.038 0 0 0-.035-.02c-.054.012-.08.036-.118.054z" }) + ] + } + ); +}); + +exports.default = SiBlockbench; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.d.ts new file mode 100644 index 000000000..7280e9884 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E93D9"; +declare const SiBlockbench: IconType; +export { SiBlockbench as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.mjs new file mode 100644 index 000000000..5b6196e71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockbench.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E93D9"; +const SiBlockbench = React.forwardRef(function SiBlockbench2({ title = "Blockbench", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.651 3.277c-.25.002-1.009.057-3.47.226l-9.113.627c-3.044.208-2.743.18-2.888.27-.163.102-.254.274-.308.58-.451 2.177-.812 3.74-1.104 5.007-.015.04-.046.178-.07.306-.038.218-.037.239.012.307.105.144.23.176 1.14.294 4.78.63 8.905 1.164 13.412 1.765.931.124.948.125.99.022.032-.081.091-.36.207-.971.476-2.468 1.03-5.366 1.433-7.42.126-.642.132-.712.069-.82a.507.507 0 0 0-.153-.153c-.04-.024-.007-.042-.157-.04zM5.65 11.31c-.161.025-1.416.205-2.79.4-1.373.194-2.554.374-2.624.399-.21.076-.294.285-.194.478.062.12.215.19.7.324.065.018.15.043.19.056 4.54 1.274 9.338 2.68 13.583 3.888.238.071.563.197.77.197.157-.042 1.053-.484 3.082-1.505 1.649-.83 3.022-1.53 3.052-1.555.113-.099.173-.31.113-.402-.012-.018-.173-.055-.357-.082-3.949-.579-8.122-1.19-11.684-1.71-2.014-.29-2.635-.384-2.804-.422a3.329 3.329 0 0 0-.647-.09 2.254 2.254 0 0 0-.39.024zM4.32 14.55h-.016c-.054.011-1.122 2.303-1.122 2.407 0 .107.076.238.168.287.101.055.165.056.312.005.445-.139.918-.293 1.36-.425 1.316-.395 1.337-.403 1.477-.549.115-.12.328-.562.39-.811a.803.803 0 0 1 .057-.154c.02-.035.03-.065.024-.065-.768-.198-1.565-.415-2.292-.614a2.947 2.947 0 0 0-.358-.081zm13.52 1.843c-.07.04-.271.155-.448.254-.481.291-.937.593-1.446.833-.413.259-.594.315-.801.248a9.005 9.005 0 0 0-.786-.204.076.076 0 0 0-.067.05c-.23.643-.507 1.395-.74 2.053-.086.232-.236.767-.234.832.002.064.142.196.25.236a.551.551 0 0 0 .231.027c1.257-.51 2.215-1.15 3.284-1.71.327-.171.447-.29.494-.492.094-.407.182-.808.269-1.2.183-.812.194-.888.148-.961a.038.038 0 0 0-.035-.02c-.054.012-.08.036-.118.054z" }) + ] + } + ); +}); + +export { SiBlockbench as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.cjs new file mode 100644 index 000000000..f091356eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#121D33"; +const SiBlockchaindotcom = React__namespace.forwardRef(function SiBlockchaindotcom2({ title = "Blockchain.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.8285 6.6117l-5.52-5.535a3.1352 3.1352 0 00-4.5 0l-5.535 5.535 7.755 3.87zm2.118 2.235l1.095 1.095a3.12 3.12 0 010 4.5L14.22 23.3502a2.6846 2.6846 0 01-.72.525V13.0767zm-19.893 0l-1.095 1.095a3.1198 3.1198 0 000 4.5L9.78 23.3502c.2091.214.4525.3914.72.525V13.0767z" }) + ] + } + ); +}); + +exports.default = SiBlockchaindotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.d.ts new file mode 100644 index 000000000..d01afd089 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#121D33"; +declare const SiBlockchaindotcom: IconType; +export { SiBlockchaindotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.mjs new file mode 100644 index 000000000..27217d75b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlockchaindotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#121D33"; +const SiBlockchaindotcom = React.forwardRef(function SiBlockchaindotcom2({ title = "Blockchain.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.8285 6.6117l-5.52-5.535a3.1352 3.1352 0 00-4.5 0l-5.535 5.535 7.755 3.87zm2.118 2.235l1.095 1.095a3.12 3.12 0 010 4.5L14.22 23.3502a2.6846 2.6846 0 01-.72.525V13.0767zm-19.893 0l-1.095 1.095a3.1198 3.1198 0 000 4.5L9.78 23.3502c.2091.214.4525.3914.72.525V13.0767z" }) + ] + } + ); +}); + +export { SiBlockchaindotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.cjs new file mode 100644 index 000000000..da8ad2020 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5722"; +const SiBlogger = React__namespace.forwardRef(function SiBlogger2({ title = "Blogger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.976 24H2.026C.9 24 0 23.1 0 21.976V2.026C0 .9.9 0 2.025 0H22.05C23.1 0 24 .9 24 2.025v19.95C24 23.1 23.1 24 21.976 24zM12 3.975H9c-2.775 0-5.025 2.25-5.025 5.025v6c0 2.774 2.25 5.024 5.025 5.024h6c2.774 0 5.024-2.25 5.024-5.024v-3.975c0-.6-.45-1.05-1.05-1.05H18c-.524 0-.976-.45-.976-.976 0-2.776-2.25-5.026-5.024-5.026zm3.074 12H9c-.525 0-.975-.45-.975-.975s.45-.976.975-.976h6.074c.526 0 .977.45.977.976s-.45.976-.975.976zm-2.55-7.95c.527 0 .976.45.976.975s-.45.975-.975.975h-3.6c-.525 0-.976-.45-.976-.975s.45-.975.975-.975h3.6z" }) + ] + } + ); +}); + +exports.default = SiBlogger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.d.ts new file mode 100644 index 000000000..f3ac840ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5722"; +declare const SiBlogger: IconType; +export { SiBlogger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.mjs new file mode 100644 index 000000000..9ef7299eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlogger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5722"; +const SiBlogger = React.forwardRef(function SiBlogger2({ title = "Blogger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.976 24H2.026C.9 24 0 23.1 0 21.976V2.026C0 .9.9 0 2.025 0H22.05C23.1 0 24 .9 24 2.025v19.95C24 23.1 23.1 24 21.976 24zM12 3.975H9c-2.775 0-5.025 2.25-5.025 5.025v6c0 2.774 2.25 5.024 5.025 5.024h6c2.774 0 5.024-2.25 5.024-5.024v-3.975c0-.6-.45-1.05-1.05-1.05H18c-.524 0-.976-.45-.976-.976 0-2.776-2.25-5.026-5.024-5.026zm3.074 12H9c-.525 0-.975-.45-.975-.975s.45-.976.975-.976h6.074c.526 0 .977.45.977.976s-.45.976-.975.976zm-2.55-7.95c.527 0 .976.45.976.975s-.45.975-.975.975h-3.6c-.525 0-.976-.45-.976-.975s.45-.975.975-.975h3.6z" }) + ] + } + ); +}); + +export { SiBlogger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.cjs new file mode 100644 index 000000000..caf99be21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBloglovin = React__namespace.forwardRef(function SiBloglovin2({ title = "Bloglovin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.526 11.695c1.84-.382 3.367-2.044 3.367-4.478 0-2.604-1.9-4.97-5.615-4.97H0v19.506h10.6c3.75 0 5.683-2.341 5.683-5.292-.009-2.426-1.646-4.444-3.757-4.766zm-8.37-5.793h5.207c1.407 0 2.28.849 2.28 2.044 0 1.255-.881 2.044-2.28 2.044H4.155zM9.54 18.098H4.155v-4.444h5.386c1.61 0 2.484.992 2.484 2.222.009 1.399-.932 2.222-2.484 2.222zM21.396 2.28c-1.255 0-2.315 1.052-2.315 2.307s.882 2.103 1.993 2.103c.238 0 .467-.025.56-.085-.238 1.052-1.315 2.282-2.256 2.782l1.611 1.314C22.796 9.422 24 7.462 24 5.266c0-1.9-1.23-2.985-2.604-2.985Z" }) + ] + } + ); +}); + +exports.default = SiBloglovin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.d.ts new file mode 100644 index 000000000..c1d1d3c49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBloglovin: IconType; +export { SiBloglovin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.mjs new file mode 100644 index 000000000..d25112c9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBloglovin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBloglovin = React.forwardRef(function SiBloglovin2({ title = "Bloglovin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.526 11.695c1.84-.382 3.367-2.044 3.367-4.478 0-2.604-1.9-4.97-5.615-4.97H0v19.506h10.6c3.75 0 5.683-2.341 5.683-5.292-.009-2.426-1.646-4.444-3.757-4.766zm-8.37-5.793h5.207c1.407 0 2.28.849 2.28 2.044 0 1.255-.881 2.044-2.28 2.044H4.155zM9.54 18.098H4.155v-4.444h5.386c1.61 0 2.484.992 2.484 2.222.009 1.399-.932 2.222-2.484 2.222zM21.396 2.28c-1.255 0-2.315 1.052-2.315 2.307s.882 2.103 1.993 2.103c.238 0 .467-.025.56-.085-.238 1.052-1.315 2.282-2.256 2.782l1.611 1.314C22.796 9.422 24 7.462 24 5.266c0-1.9-1.23-2.985-2.604-2.985Z" }) + ] + } + ); +}); + +export { SiBloglovin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.cjs new file mode 100644 index 000000000..7eec01d95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#137CBD"; +const SiBlueprint = React__namespace.forwardRef(function SiBlueprint2({ title = "Blueprint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.809 5.524L12.806.179l-.013-.007.078-.045h-.166a1.282 1.282 0 0 0-1.196.043l-.699.403-8.604 4.954a1.285 1.285 0 0 0-.644 1.113v10.718c0 .46.245.884.644 1.113l9.304 5.357c.402.232.898.228 1.297-.009l9.002-5.345c.39-.231.629-.651.629-1.105V6.628c0-.453-.239-.873-.629-1.104zm-19.282.559L11.843.719a.642.642 0 0 1 .636.012l9.002 5.345a.638.638 0 0 1 .207.203l-4.543 2.555-4.498-2.7a.963.963 0 0 0-.968-.014L6.83 8.848 2.287 6.329a.644.644 0 0 1 .24-.246zm14.13 8.293l-4.496-2.492V6.641a.32.32 0 0 1 .155.045l4.341 2.605v5.085zm-4.763-1.906l4.692 2.601-4.431 2.659-4.648-2.615a.317.317 0 0 1-.115-.112l4.502-2.533zm-.064 10.802l-9.304-5.357a.643.643 0 0 1-.322-.557V7.018L6.7 9.51v5.324c0 .348.188.669.491.84l4.811 2.706.157.088v4.887a.637.637 0 0 1-.329-.083z" }) + ] + } + ); +}); + +exports.default = SiBlueprint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.d.ts new file mode 100644 index 000000000..c7a2ecc13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#137CBD"; +declare const SiBlueprint: IconType; +export { SiBlueprint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.mjs new file mode 100644 index 000000000..5f66ecdfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBlueprint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#137CBD"; +const SiBlueprint = React.forwardRef(function SiBlueprint2({ title = "Blueprint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.809 5.524L12.806.179l-.013-.007.078-.045h-.166a1.282 1.282 0 0 0-1.196.043l-.699.403-8.604 4.954a1.285 1.285 0 0 0-.644 1.113v10.718c0 .46.245.884.644 1.113l9.304 5.357c.402.232.898.228 1.297-.009l9.002-5.345c.39-.231.629-.651.629-1.105V6.628c0-.453-.239-.873-.629-1.104zm-19.282.559L11.843.719a.642.642 0 0 1 .636.012l9.002 5.345a.638.638 0 0 1 .207.203l-4.543 2.555-4.498-2.7a.963.963 0 0 0-.968-.014L6.83 8.848 2.287 6.329a.644.644 0 0 1 .24-.246zm14.13 8.293l-4.496-2.492V6.641a.32.32 0 0 1 .155.045l4.341 2.605v5.085zm-4.763-1.906l4.692 2.601-4.431 2.659-4.648-2.615a.317.317 0 0 1-.115-.112l4.502-2.533zm-.064 10.802l-9.304-5.357a.643.643 0 0 1-.322-.557V7.018L6.7 9.51v5.324c0 .348.188.669.491.84l4.811 2.706.157.088v4.887a.637.637 0 0 1-.329-.083z" }) + ] + } + ); +}); + +export { SiBlueprint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.cjs new file mode 100644 index 000000000..750bbfd28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1185FE"; +const SiBluesky = React__namespace.forwardRef(function SiBluesky2({ title = "Bluesky", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026" }) + ] + } + ); +}); + +exports.default = SiBluesky; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.d.ts new file mode 100644 index 000000000..185e7d07d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1185FE"; +declare const SiBluesky: IconType; +export { SiBluesky as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.mjs new file mode 100644 index 000000000..b6cee73e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesky.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1185FE"; +const SiBluesky = React.forwardRef(function SiBluesky2({ title = "Bluesky", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026" }) + ] + } + ); +}); + +export { SiBluesky as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.cjs new file mode 100644 index 000000000..a958a4415 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0F131E"; +const SiBluesound = React__namespace.forwardRef(function SiBluesound2({ title = "Bluesound", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.327 14.893-8.396.003a4.549 4.549 0 0 0-4.546 4.543c0 2.05.007 3.737.007 3.737V24h12.955l.191-.002c4.678-.099 8.077-3.577 8.077-8.273a8.733 8.733 0 0 0-.805-3.721 8.77 8.77 0 0 0 .805-3.724c0-4.695-3.399-8.173-8.084-8.275L1.392 0v.833s-.007 1.681-.007 3.733a4.548 4.548 0 0 0 4.546 4.541l8.399.013c2.375 0 4.392 1.048 5.567 2.884-1.178 1.838-3.197 2.889-5.57 2.889m.219-7.452-8.615.002a2.88 2.88 0 0 1-2.879-2.877V1.665H14.33c3.835 0 6.62 2.782 6.62 6.615 0 .681-.092 1.339-.271 1.97-1.47-1.726-3.669-2.75-6.133-2.809m6.133 6.314c.179.629.271 1.29.271 1.97 0 3.831-2.785 6.611-6.62 6.611l-11.278.002v-2.899a2.882 2.882 0 0 1 2.879-2.879h8.446l.288-.015c2.412-.084 4.564-1.088 6.014-2.79" }) + ] + } + ); +}); + +exports.default = SiBluesound; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.d.ts new file mode 100644 index 000000000..e2e05f7ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0F131E"; +declare const SiBluesound: IconType; +export { SiBluesound as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.mjs new file mode 100644 index 000000000..ea08a2ac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluesound.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0F131E"; +const SiBluesound = React.forwardRef(function SiBluesound2({ title = "Bluesound", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.327 14.893-8.396.003a4.549 4.549 0 0 0-4.546 4.543c0 2.05.007 3.737.007 3.737V24h12.955l.191-.002c4.678-.099 8.077-3.577 8.077-8.273a8.733 8.733 0 0 0-.805-3.721 8.77 8.77 0 0 0 .805-3.724c0-4.695-3.399-8.173-8.084-8.275L1.392 0v.833s-.007 1.681-.007 3.733a4.548 4.548 0 0 0 4.546 4.541l8.399.013c2.375 0 4.392 1.048 5.567 2.884-1.178 1.838-3.197 2.889-5.57 2.889m.219-7.452-8.615.002a2.88 2.88 0 0 1-2.879-2.877V1.665H14.33c3.835 0 6.62 2.782 6.62 6.615 0 .681-.092 1.339-.271 1.97-1.47-1.726-3.669-2.75-6.133-2.809m6.133 6.314c.179.629.271 1.29.271 1.97 0 3.831-2.785 6.611-6.62 6.611l-11.278.002v-2.899a2.882 2.882 0 0 1 2.879-2.879h8.446l.288-.015c2.412-.084 4.564-1.088 6.014-2.79" }) + ] + } + ); +}); + +export { SiBluesound as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.cjs new file mode 100644 index 000000000..766b311ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0082FC"; +const SiBluetooth = React__namespace.forwardRef(function SiBluetooth2({ title = "Bluetooth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.76 0 3.1484 2.4895 3.1484 12S6.76 24 12 24c5.24 0 8.8516-2.4895 8.8516-12S17.24 0 12 0zm-.7773 1.6816l6.2148 6.2149L13.334 12l4.1035 4.1035-6.2148 6.2149V14.125l-3.418 3.42-1.2422-1.2442L10.8515 12l-4.289-4.3008 1.2422-1.2441 3.418 3.4199V1.6816zm1.748 4.2442v3.9687l1.9844-1.9843-1.9844-1.9844zm0 8.1816v3.9668l1.9844-1.9844-1.9844-1.9824Z" }) + ] + } + ); +}); + +exports.default = SiBluetooth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.d.ts new file mode 100644 index 000000000..17734a571 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0082FC"; +declare const SiBluetooth: IconType; +export { SiBluetooth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.mjs new file mode 100644 index 000000000..3383bca3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBluetooth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0082FC"; +const SiBluetooth = React.forwardRef(function SiBluetooth2({ title = "Bluetooth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.76 0 3.1484 2.4895 3.1484 12S6.76 24 12 24c5.24 0 8.8516-2.4895 8.8516-12S17.24 0 12 0zm-.7773 1.6816l6.2148 6.2149L13.334 12l4.1035 4.1035-6.2148 6.2149V14.125l-3.418 3.42-1.2422-1.2442L10.8515 12l-4.289-4.3008 1.2422-1.2441 3.418 3.4199V1.6816zm1.748 4.2442v3.9687l1.9844-1.9843-1.9844-1.9844zm0 8.1816v3.9668l1.9844-1.9844-1.9844-1.9824Z" }) + ] + } + ); +}); + +export { SiBluetooth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.cjs new file mode 100644 index 000000000..09ee5ca4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE5000"; +const SiBmcsoftware = React__namespace.forwardRef(function SiBmcsoftware2({ title = "BMC Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.375 23.999c-.95 0-1.95-.749-1.95-2.2v-3.4c0-1.349.85-2.899 2.05-3.548l4.75-2.8-4.75-2.8C5.325 8.5 4.425 7 4.425 5.65V2.2c0-1.45 1-2.2 2.002-2.2.4 0 .849.1 1.249.35l10.7 6.35c.75.45 1.15 1.149 1.15 1.849 0 .75-.452 1.45-1.15 1.85l-2.55 1.5 2.55 1.501c.75.45 1.2 1.15 1.2 1.85 0 .75-.452 1.45-1.2 1.85L7.674 23.65c-.45.25-.85.35-1.3.35zm7.15-10.599l-5.85 3.45c-.45.25-.9 1.05-.9 1.55v3.05l10.15-6zM6.775 2.6v3.05c0 .5.45 1.3.9 1.55l5.85 3.45 3.45-2.05z" }) + ] + } + ); +}); + +exports.default = SiBmcsoftware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.d.ts new file mode 100644 index 000000000..ac5c85060 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE5000"; +declare const SiBmcsoftware: IconType; +export { SiBmcsoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.mjs new file mode 100644 index 000000000..556b0623e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBmcsoftware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE5000"; +const SiBmcsoftware = React.forwardRef(function SiBmcsoftware2({ title = "BMC Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.375 23.999c-.95 0-1.95-.749-1.95-2.2v-3.4c0-1.349.85-2.899 2.05-3.548l4.75-2.8-4.75-2.8C5.325 8.5 4.425 7 4.425 5.65V2.2c0-1.45 1-2.2 2.002-2.2.4 0 .849.1 1.249.35l10.7 6.35c.75.45 1.15 1.149 1.15 1.849 0 .75-.452 1.45-1.15 1.85l-2.55 1.5 2.55 1.501c.75.45 1.2 1.15 1.2 1.85 0 .75-.452 1.45-1.2 1.85L7.674 23.65c-.45.25-.85.35-1.3.35zm7.15-10.599l-5.85 3.45c-.45.25-.9 1.05-.9 1.55v3.05l10.15-6zM6.775 2.6v3.05c0 .5.45 1.3.9 1.55l5.85 3.45 3.45-2.05z" }) + ] + } + ); +}); + +export { SiBmcsoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.cjs new file mode 100644 index 000000000..fcb8dac30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066B1"; +const SiBmw = React__namespace.forwardRef(function SiBmw2({ title = "BMW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 .78C18.196.78 23.219 5.803 23.219 12c0 6.196-5.022 11.219-11.219 11.219C5.803 23.219.781 18.196.781 12S5.804.78 12 .78zm-.678.63c-.33.014-.66.042-.992.078l-.107 2.944a9.95 9.95 0 0 1 .71-.094l.07-1.988-.013-.137.043.13.664 1.489h.606l.664-1.488.04-.131-.01.137.07 1.988c.232.022.473.054.71.094l-.109-2.944a14.746 14.746 0 0 0-.992-.078l-.653 1.625-.023.12-.023-.12-.655-1.625zm6.696 1.824l-1.543 2.428c.195.15.452.371.617.522l1.453-.754.092-.069-.069.094-.752 1.453c.163.175.398.458.53.63l2.43-1.544a16.135 16.135 0 0 0-.46-.568L18.777 6.44l-.105.092.078-.115.68-1.356-.48-.48-1.356.68-.115.078.091-.106 1.018-1.539c-.18-.152-.351-.291-.57-.46zM5.5 3.785c-.36.037-.638.283-1.393 1.125a18.97 18.97 0 0 0-.757.914l2.074 1.967c.687-.76.966-1.042 1.508-1.613.383-.405.6-.87.216-1.317-.208-.242-.558-.295-.85-.175l-.028.01.01-.026a.7.7 0 0 0-.243-.734.724.724 0 0 0-.537-.15zm.006.615c.136-.037.277.06.308.2.032.14-.056.272-.154.382-.22.25-1.031 1.098-1.031 1.098l-.402-.383c.417-.51.861-.974 1.062-1.158a.55.55 0 0 1 .217-.139zM12 4.883a7.114 7.114 0 0 0-7.08 6.388v.002a7.122 7.122 0 0 0 8.516 7.697 7.112 7.112 0 0 0 5.68-6.97A7.122 7.122 0 0 0 12 4.885v-.002zm-5.537.242c.047 0 .096.013.14.043.088.059.128.16.106.26-.026.119-.125.231-.205.318l-1.045 1.12-.42-.4s.787-.832 1.045-1.099c.102-.106.168-.17.238-.205a.331.331 0 0 1 .14-.037zM12 5.818A6.175 6.175 0 0 1 18.182 12H12v6.182A6.175 6.175 0 0 1 5.818 12H12V5.818Z" }) + ] + } + ); +}); + +exports.default = SiBmw; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.d.ts new file mode 100644 index 000000000..665c0f845 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066B1"; +declare const SiBmw: IconType; +export { SiBmw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.mjs new file mode 100644 index 000000000..1556b2e71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBmw.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066B1"; +const SiBmw = React.forwardRef(function SiBmw2({ title = "BMW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 .78C18.196.78 23.219 5.803 23.219 12c0 6.196-5.022 11.219-11.219 11.219C5.803 23.219.781 18.196.781 12S5.804.78 12 .78zm-.678.63c-.33.014-.66.042-.992.078l-.107 2.944a9.95 9.95 0 0 1 .71-.094l.07-1.988-.013-.137.043.13.664 1.489h.606l.664-1.488.04-.131-.01.137.07 1.988c.232.022.473.054.71.094l-.109-2.944a14.746 14.746 0 0 0-.992-.078l-.653 1.625-.023.12-.023-.12-.655-1.625zm6.696 1.824l-1.543 2.428c.195.15.452.371.617.522l1.453-.754.092-.069-.069.094-.752 1.453c.163.175.398.458.53.63l2.43-1.544a16.135 16.135 0 0 0-.46-.568L18.777 6.44l-.105.092.078-.115.68-1.356-.48-.48-1.356.68-.115.078.091-.106 1.018-1.539c-.18-.152-.351-.291-.57-.46zM5.5 3.785c-.36.037-.638.283-1.393 1.125a18.97 18.97 0 0 0-.757.914l2.074 1.967c.687-.76.966-1.042 1.508-1.613.383-.405.6-.87.216-1.317-.208-.242-.558-.295-.85-.175l-.028.01.01-.026a.7.7 0 0 0-.243-.734.724.724 0 0 0-.537-.15zm.006.615c.136-.037.277.06.308.2.032.14-.056.272-.154.382-.22.25-1.031 1.098-1.031 1.098l-.402-.383c.417-.51.861-.974 1.062-1.158a.55.55 0 0 1 .217-.139zM12 4.883a7.114 7.114 0 0 0-7.08 6.388v.002a7.122 7.122 0 0 0 8.516 7.697 7.112 7.112 0 0 0 5.68-6.97A7.122 7.122 0 0 0 12 4.885v-.002zm-5.537.242c.047 0 .096.013.14.043.088.059.128.16.106.26-.026.119-.125.231-.205.318l-1.045 1.12-.42-.4s.787-.832 1.045-1.099c.102-.106.168-.17.238-.205a.331.331 0 0 1 .14-.037zM12 5.818A6.175 6.175 0 0 1 18.182 12H12v6.182A6.175 6.175 0 0 1 5.818 12H12V5.818Z" }) + ] + } + ); +}); + +export { SiBmw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.cjs new file mode 100644 index 000000000..b2c145308 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0B90B"; +const SiBnbchain = React__namespace.forwardRef(function SiBnbchain2({ title = "BNB Chain", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.631 3.676 12.001 0l6.367 3.676-2.34 1.358L12 2.716 7.972 5.034l-2.34-1.358Zm12.737 4.636-2.34-1.358L12 9.272 7.972 6.954l-2.34 1.358v2.716l4.026 2.318v4.636L12 19.341l2.341-1.359v-4.636l4.027-2.318V8.312Zm0 7.352v-2.716l-2.34 1.358v2.716l2.34-1.358Zm1.663.96-4.027 2.318v2.717l6.368-3.677V10.63l-2.34 1.358v4.636Zm-2.34-10.63 2.34 1.358v2.716l2.341-1.358V5.994l-2.34-1.358-2.342 1.358ZM9.657 19.926v2.716L12 24l2.341-1.358v-2.716l-2.34 1.358-2.343-1.358Zm-4.027-4.262 2.341 1.358v-2.716l-2.34-1.358v2.716Zm4.027-9.67L12 7.352l2.341-1.358-2.34-1.358-2.343 1.358Zm-5.69 1.358L6.31 5.994 3.968 4.636l-2.34 1.358V8.71l2.34 1.358V7.352Zm0 4.636-2.34-1.358v7.352l6.368 3.677v-2.717l-4.028-2.318v-4.636Z" }) + ] + } + ); +}); + +exports.default = SiBnbchain; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.d.ts new file mode 100644 index 000000000..14ffbfe5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0B90B"; +declare const SiBnbchain: IconType; +export { SiBnbchain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.mjs new file mode 100644 index 000000000..16c5c037c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBnbchain.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0B90B"; +const SiBnbchain = React.forwardRef(function SiBnbchain2({ title = "BNB Chain", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.631 3.676 12.001 0l6.367 3.676-2.34 1.358L12 2.716 7.972 5.034l-2.34-1.358Zm12.737 4.636-2.34-1.358L12 9.272 7.972 6.954l-2.34 1.358v2.716l4.026 2.318v4.636L12 19.341l2.341-1.359v-4.636l4.027-2.318V8.312Zm0 7.352v-2.716l-2.34 1.358v2.716l2.34-1.358Zm1.663.96-4.027 2.318v2.717l6.368-3.677V10.63l-2.34 1.358v4.636Zm-2.34-10.63 2.34 1.358v2.716l2.341-1.358V5.994l-2.34-1.358-2.342 1.358ZM9.657 19.926v2.716L12 24l2.341-1.358v-2.716l-2.34 1.358-2.343-1.358Zm-4.027-4.262 2.341 1.358v-2.716l-2.34-1.358v2.716Zm4.027-9.67L12 7.352l2.341-1.358-2.34-1.358-2.343 1.358Zm-5.69 1.358L6.31 5.994 3.968 4.636l-2.34 1.358V8.71l2.34 1.358V7.352Zm0 4.636-2.34-1.358v7.352l6.368 3.677v-2.717l-4.028-2.318v-4.636Z" }) + ] + } + ); +}); + +export { SiBnbchain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.cjs new file mode 100644 index 000000000..a4cf1d499 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5100"; +const SiBoardgamegeek = React__namespace.forwardRef(function SiBoardgamegeek2({ title = "BoardGameGeek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.7 4.44-2.38.64L19.65 0 4.53 5.56l.83 6.67-1.4 1.34L8.12 24l8.85-3.26 3.07-7.22-1.32-1.27.98-7.81Z" }) + ] + } + ); +}); + +exports.default = SiBoardgamegeek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.d.ts new file mode 100644 index 000000000..955031d1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5100"; +declare const SiBoardgamegeek: IconType; +export { SiBoardgamegeek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.mjs new file mode 100644 index 000000000..492b5da97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoardgamegeek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5100"; +const SiBoardgamegeek = React.forwardRef(function SiBoardgamegeek2({ title = "BoardGameGeek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.7 4.44-2.38.64L19.65 0 4.53 5.56l.83 6.67-1.4 1.34L8.12 24l8.85-3.26 3.07-7.22-1.32-1.27.98-7.81Z" }) + ] + } + ); +}); + +export { SiBoardgamegeek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.cjs new file mode 100644 index 000000000..6459d333c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E20722"; +const SiBoat = React__namespace.forwardRef(function SiBoat2({ title = "boAt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.081 0 5.833 17.686 17.15 13.93Zm-10.2 18.223L4.961 24H19.14l2.98-5.777z" }) + ] + } + ); +}); + +exports.default = SiBoat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.d.ts new file mode 100644 index 000000000..f5e4d41e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E20722"; +declare const SiBoat: IconType; +export { SiBoat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.mjs new file mode 100644 index 000000000..548d73313 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E20722"; +const SiBoat = React.forwardRef(function SiBoat2({ title = "boAt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.081 0 5.833 17.686 17.15 13.93Zm-10.2 18.223L4.961 24H19.14l2.98-5.777z" }) + ] + } + ); +}); + +export { SiBoat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.cjs new file mode 100644 index 000000000..efe0b2467 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00E47C"; +const SiBoehringeringelheim = React__namespace.forwardRef(function SiBoehringeringelheim2({ title = "Boehringer Ingelheim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.41 22.03c-1.72-1.24-2.63-2.15-3.49-3.46A12.185 12.185 0 0 1 0 12.03C0 5.38 5.36 0 12 0s12 5.38 12 12c0 2.73-.93 5.46-2.58 7.48-.68.86-1.26 1.36-2.83 2.55v-7.02h1.19v4.8c.88-1.04 1.31-1.67 1.74-2.43.88-1.57 1.36-3.51 1.36-5.38 0-6.06-4.88-10.99-10.89-10.99S1.11 5.94 1.11 12.08c0 2.8.99 5.28 3.08 7.73v-4.8H5.4v7.02Zm2.37 1.21c-.23-.05-.76-.3-1.19-.53V15h1.19v8.24Zm7.23-16.92L12 4 8.99 6.32l-.66-.86 3.66-2.86 3.66 2.86-.66.86Zm-4.83 17.56c-.43-.08-.45-.08-.61-.13-.13-.02-.18-.02-.58-.13V7.2h1.19v16.67Zm2.4.1c-.18.02-.23.02-.48.02-.38 0-.51 0-.71-.02V7.2h1.19v16.78Zm2.4-.38c-.38.13-.71.2-1.19.3V7.2h1.19v16.4Zm2.43-.88c-.38.18-.61.28-1.21.56v-8.27h1.21v7.71Z" }) + ] + } + ); +}); + +exports.default = SiBoehringeringelheim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.d.ts new file mode 100644 index 000000000..35d41fdfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00E47C"; +declare const SiBoehringeringelheim: IconType; +export { SiBoehringeringelheim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.mjs new file mode 100644 index 000000000..cb68f8f45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoehringeringelheim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00E47C"; +const SiBoehringeringelheim = React.forwardRef(function SiBoehringeringelheim2({ title = "Boehringer Ingelheim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.41 22.03c-1.72-1.24-2.63-2.15-3.49-3.46A12.185 12.185 0 0 1 0 12.03C0 5.38 5.36 0 12 0s12 5.38 12 12c0 2.73-.93 5.46-2.58 7.48-.68.86-1.26 1.36-2.83 2.55v-7.02h1.19v4.8c.88-1.04 1.31-1.67 1.74-2.43.88-1.57 1.36-3.51 1.36-5.38 0-6.06-4.88-10.99-10.89-10.99S1.11 5.94 1.11 12.08c0 2.8.99 5.28 3.08 7.73v-4.8H5.4v7.02Zm2.37 1.21c-.23-.05-.76-.3-1.19-.53V15h1.19v8.24Zm7.23-16.92L12 4 8.99 6.32l-.66-.86 3.66-2.86 3.66 2.86-.66.86Zm-4.83 17.56c-.43-.08-.45-.08-.61-.13-.13-.02-.18-.02-.58-.13V7.2h1.19v16.67Zm2.4.1c-.18.02-.23.02-.48.02-.38 0-.51 0-.71-.02V7.2h1.19v16.78Zm2.4-.38c-.38.13-.71.2-1.19.3V7.2h1.19v16.4Zm2.43-.88c-.38.18-.61.28-1.21.56v-8.27h1.21v7.71Z" }) + ] + } + ); +}); + +export { SiBoehringeringelheim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.cjs new file mode 100644 index 000000000..bce3fed10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D439C"; +const SiBoeing = React__namespace.forwardRef(function SiBoeing2({ title = "Boeing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.9044 17.2866a6.0512 6.0512 0 01-3.7595-1.3008c1.2048-2.7146 3.6545-6.3581 6.998-9.9166a6.0702 6.0702 0 012.2617 7.729c-1.0599-.49-2.0497-1.106-2.8876-1.8798l1.8307 3.4375a6.0582 6.0582 0 01-4.4433 1.9307M.8292 11.2115a6.0752 6.0752 0 016.0762-6.0772c.8998 0 1.7527.196 2.5226.546-3.2935 2.9095-5.8432 6.293-7.353 9.2177a6.0512 6.0512 0 01-1.2458-3.6875m12.3403 2.9126a6.862 6.862 0 00.6419-2.9126c0-2.3997-1.2248-4.5144-3.0846-5.7532a49.6072 49.6072 0 013.5825-3.3416A31.1727 31.1727 0 0010.11 5.0903a6.907 6.907 0 00-8.4368 10.6265C.3493 18.5795.1193 20.8781 1.285 21.654c1.2489.832 3.9625-.6769 5.5903-3.1345 0 0-2.5177 2.2736-3.9015 1.7517-.8519-.322-.8549-1.6248-.152-3.4925a6.871 6.871 0 004.0835 1.3378c1.8937 0 3.6065-.7599 4.8533-1.9917l.245.462c3.0095-.245 11.9963-.483 11.9963-.483 0-.431-5.9502-.04-10.8325-1.9797" }) + ] + } + ); +}); + +exports.default = SiBoeing; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.d.ts new file mode 100644 index 000000000..e66835c58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D439C"; +declare const SiBoeing: IconType; +export { SiBoeing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.mjs new file mode 100644 index 000000000..0bd1a8b2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoeing.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D439C"; +const SiBoeing = React.forwardRef(function SiBoeing2({ title = "Boeing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.9044 17.2866a6.0512 6.0512 0 01-3.7595-1.3008c1.2048-2.7146 3.6545-6.3581 6.998-9.9166a6.0702 6.0702 0 012.2617 7.729c-1.0599-.49-2.0497-1.106-2.8876-1.8798l1.8307 3.4375a6.0582 6.0582 0 01-4.4433 1.9307M.8292 11.2115a6.0752 6.0752 0 016.0762-6.0772c.8998 0 1.7527.196 2.5226.546-3.2935 2.9095-5.8432 6.293-7.353 9.2177a6.0512 6.0512 0 01-1.2458-3.6875m12.3403 2.9126a6.862 6.862 0 00.6419-2.9126c0-2.3997-1.2248-4.5144-3.0846-5.7532a49.6072 49.6072 0 013.5825-3.3416A31.1727 31.1727 0 0010.11 5.0903a6.907 6.907 0 00-8.4368 10.6265C.3493 18.5795.1193 20.8781 1.285 21.654c1.2489.832 3.9625-.6769 5.5903-3.1345 0 0-2.5177 2.2736-3.9015 1.7517-.8519-.322-.8549-1.6248-.152-3.4925a6.871 6.871 0 004.0835 1.3378c1.8937 0 3.6065-.7599 4.8533-1.9917l.245.462c3.0095-.245 11.9963-.483 11.9963-.483 0-.431-5.9502-.04-10.8325-1.9797" }) + ] + } + ); +}); + +export { SiBoeing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.cjs new file mode 100644 index 000000000..890c7fa76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6BA539"; +const SiBohemiainteractive = React__namespace.forwardRef(function SiBohemiainteractive2({ title = "Bohemia Interactive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.225 12.831.036-.109c.684-2.231.411-4.3-.774-5.817a5.666 5.666 0 0 0-3.513-2.068L15.88 0h-1.457s-.696 2.261-1.53 4.728a8.157 8.157 0 0 0-.859 0 12.166 12.166 0 0 0-6.736 2.685 11.314 11.314 0 0 0-3.49 4.076h1.21A10.382 10.382 0 0 1 5.841 8.12a11.314 11.314 0 0 1 6.234-2.497h.514c-.096.284-.2.562-.296.84-.38 1.07-1.288 3.58-2.304 6.374H6.64l-1.511 2.128a22.664 22.664 0 0 1 4.408-.87c-.798 2.195-1.62 4.456-2.274 6.264-2.038.115-3.858-.483-4.989-1.771a4.233 4.233 0 0 1-1.021-1.96l-.49-.46a5.243 5.243 0 0 0 1.064 2.952 6.156 6.156 0 0 0 4.983 2.17h.09L5.938 24l.604-.466.901-2.268a12.281 12.281 0 0 0 6.555-2.66 12.529 12.529 0 0 0 3.955-5.08H22.766l.472-.67zm-4.583-7.13a4.898 4.898 0 0 1 3.144 1.748c.998 1.288 1.21 3.066.605 5.013-.037.12-.079.248-.121.369h-6.458zm-.182 12.204a11.489 11.489 0 0 1-5.624 2.418l2.504-6.307c1.711-.193 3.9-.362 6.651-.44a11.87 11.87 0 0 1-3.53 4.329z" }) + ] + } + ); +}); + +exports.default = SiBohemiainteractive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.d.ts new file mode 100644 index 000000000..b263a1f45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6BA539"; +declare const SiBohemiainteractive: IconType; +export { SiBohemiainteractive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.mjs new file mode 100644 index 000000000..aec57cf41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBohemiainteractive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6BA539"; +const SiBohemiainteractive = React.forwardRef(function SiBohemiainteractive2({ title = "Bohemia Interactive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.225 12.831.036-.109c.684-2.231.411-4.3-.774-5.817a5.666 5.666 0 0 0-3.513-2.068L15.88 0h-1.457s-.696 2.261-1.53 4.728a8.157 8.157 0 0 0-.859 0 12.166 12.166 0 0 0-6.736 2.685 11.314 11.314 0 0 0-3.49 4.076h1.21A10.382 10.382 0 0 1 5.841 8.12a11.314 11.314 0 0 1 6.234-2.497h.514c-.096.284-.2.562-.296.84-.38 1.07-1.288 3.58-2.304 6.374H6.64l-1.511 2.128a22.664 22.664 0 0 1 4.408-.87c-.798 2.195-1.62 4.456-2.274 6.264-2.038.115-3.858-.483-4.989-1.771a4.233 4.233 0 0 1-1.021-1.96l-.49-.46a5.243 5.243 0 0 0 1.064 2.952 6.156 6.156 0 0 0 4.983 2.17h.09L5.938 24l.604-.466.901-2.268a12.281 12.281 0 0 0 6.555-2.66 12.529 12.529 0 0 0 3.955-5.08H22.766l.472-.67zm-4.583-7.13a4.898 4.898 0 0 1 3.144 1.748c.998 1.288 1.21 3.066.605 5.013-.037.12-.079.248-.121.369h-6.458zm-.182 12.204a11.489 11.489 0 0 1-5.624 2.418l2.504-6.307c1.711-.193 3.9-.362 6.651-.44a11.87 11.87 0 0 1-3.53 4.329z" }) + ] + } + ); +}); + +export { SiBohemiainteractive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.cjs new file mode 100644 index 000000000..73bacf327 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBombardier = React__namespace.forwardRef(function SiBombardier2({ title = "Bombardier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 23.24 1.823-1.822c1.823-1.823 3.645-2.127 6.076-2.127h5.012c2.43 0 3.707-.152 5.681-1.519h.244l-3.342 3.342c-1.823 1.823-3.646 2.127-6.076 2.127H0ZM5.165 6.533l1.822 1.822c1.823 1.823 3.646 2.127 6.076 2.127h5.013c2.43 0 3.706.152 5.681 1.519-1.975 1.367-3.25 1.519-5.681 1.519h-5.013c-2.43 0-4.253.304-6.076 2.127l-1.822 1.822h9.417c2.43 0 4.254-.303 6.076-2.126L24 12l-3.342-3.342c-1.822-1.823-3.645-2.126-6.076-2.126H5.165ZM0 .759l1.823 1.823C3.646 4.405 5.468 4.71 7.899 4.71h5.012c2.43 0 3.707.152 5.681 1.519h.244l-3.342-3.342C13.67 1.063 11.848.76 9.418.76H0Z" }) + ] + } + ); +}); + +exports.default = SiBombardier; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.d.ts new file mode 100644 index 000000000..d0161d223 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBombardier: IconType; +export { SiBombardier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.mjs new file mode 100644 index 000000000..4c2826a4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBombardier.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBombardier = React.forwardRef(function SiBombardier2({ title = "Bombardier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 23.24 1.823-1.822c1.823-1.823 3.645-2.127 6.076-2.127h5.012c2.43 0 3.707-.152 5.681-1.519h.244l-3.342 3.342c-1.823 1.823-3.646 2.127-6.076 2.127H0ZM5.165 6.533l1.822 1.822c1.823 1.823 3.646 2.127 6.076 2.127h5.013c2.43 0 3.706.152 5.681 1.519-1.975 1.367-3.25 1.519-5.681 1.519h-5.013c-2.43 0-4.253.304-6.076 2.127l-1.822 1.822h9.417c2.43 0 4.254-.303 6.076-2.126L24 12l-3.342-3.342c-1.822-1.823-3.645-2.126-6.076-2.126H5.165ZM0 .759l1.823 1.823C3.646 4.405 5.468 4.71 7.899 4.71h5.012c2.43 0 3.707.152 5.681 1.519h.244l-3.342-3.342C13.67 1.063 11.848.76 9.418.76H0Z" }) + ] + } + ); +}); + +export { SiBombardier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.cjs new file mode 100644 index 000000000..330c64813 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC2829"; +const SiBookalope = React__namespace.forwardRef(function SiBookalope2({ title = "Bookalope", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.41816 24v-1.1842c.80965-.02052 1.45921-.08312 1.94767-.18676.48845-.10364.86198-.28014 1.12262-.5295.25962-.24936.43612-.60339.5295-1.06003.0934-.45767.1406-1.04977.1406-1.77732V4.7378c0-.72755-.03694-1.31452-.1098-1.76192-.07287-.44639-.21755-.79939-.43612-1.05901-.21859-.26065-.53464-.43715-.95024-.53053-.4156-.09338-.95638-.1611-1.62134-.20215V0h9.31966c2.80554 0 4.98717.49872 6.54592 1.49615 1.55874.99744 2.3376 2.39918 2.3376 4.20729 0 1.37198-.431 2.49358-1.29298 3.36685-.863.87225-2.22883 1.58954-4.09953 2.15085v.12417c.64443.0626 1.20574.13545 1.68394.21857.47717.08312.90303.18163 1.27758.29554.37353.11493.72243.25449 1.04464.42072.3212.16624.63828.35403.95023.56132 1.84916 1.30939 2.77373 2.95125 2.77373 4.92457 0 1.1021-.3058 2.1252-.91944 3.0703-.61262.94612-1.46947 1.68907-2.57158 2.22883-.353.18676-.71626.33761-1.09081.45254-.37353.1139-.81067.20729-1.3094.28014-.49871.07286-1.07542.12417-1.72908.15598-.6547.03079-1.42947.04618-2.32222.04618H1.41817Zm11.31452-1.34017c3.7609 0 5.64187-1.61006 5.64187-4.8312 0-2.34787-.96664-3.98974-2.89892-4.92458-.33247-.14571-.6547-.26988-.96664-.37455-.31196-.10364-.67522-.18163-1.09082-.23294-.4156-.05233-.90918-.08927-1.48076-.1098-.57158-.02052-1.27245-.03078-2.10364-.03078H8.431v6.95125c0 1.26732.33248 2.1765.99743 2.72653.66496.55105 1.76604.82607 3.30426.82607zm-2.55618-12.0626c.64443 0 1.1842-.01026 1.62134-.03079.43612-.02155.80965-.05746 1.1216-.1098.31196-.0513.58697-.12416.82607-.21754.2391-.09338.48332-.2237.73268-.38995.66496-.4156 1.137-.91431 1.41816-1.49615.28015-.58183.42073-1.34017.42073-2.27501 0-1.64187-.4002-2.82093-1.2006-3.53823-.7994-.71729-2.05131-1.07542-3.75577-1.07542H8.9605c-.353 0-.5295.1765-.5295.53053v8.60236z" }) + ] + } + ); +}); + +exports.default = SiBookalope; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.d.ts new file mode 100644 index 000000000..da7a1a666 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC2829"; +declare const SiBookalope: IconType; +export { SiBookalope as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.mjs new file mode 100644 index 000000000..76edf5fac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookalope.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC2829"; +const SiBookalope = React.forwardRef(function SiBookalope2({ title = "Bookalope", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.41816 24v-1.1842c.80965-.02052 1.45921-.08312 1.94767-.18676.48845-.10364.86198-.28014 1.12262-.5295.25962-.24936.43612-.60339.5295-1.06003.0934-.45767.1406-1.04977.1406-1.77732V4.7378c0-.72755-.03694-1.31452-.1098-1.76192-.07287-.44639-.21755-.79939-.43612-1.05901-.21859-.26065-.53464-.43715-.95024-.53053-.4156-.09338-.95638-.1611-1.62134-.20215V0h9.31966c2.80554 0 4.98717.49872 6.54592 1.49615 1.55874.99744 2.3376 2.39918 2.3376 4.20729 0 1.37198-.431 2.49358-1.29298 3.36685-.863.87225-2.22883 1.58954-4.09953 2.15085v.12417c.64443.0626 1.20574.13545 1.68394.21857.47717.08312.90303.18163 1.27758.29554.37353.11493.72243.25449 1.04464.42072.3212.16624.63828.35403.95023.56132 1.84916 1.30939 2.77373 2.95125 2.77373 4.92457 0 1.1021-.3058 2.1252-.91944 3.0703-.61262.94612-1.46947 1.68907-2.57158 2.22883-.353.18676-.71626.33761-1.09081.45254-.37353.1139-.81067.20729-1.3094.28014-.49871.07286-1.07542.12417-1.72908.15598-.6547.03079-1.42947.04618-2.32222.04618H1.41817Zm11.31452-1.34017c3.7609 0 5.64187-1.61006 5.64187-4.8312 0-2.34787-.96664-3.98974-2.89892-4.92458-.33247-.14571-.6547-.26988-.96664-.37455-.31196-.10364-.67522-.18163-1.09082-.23294-.4156-.05233-.90918-.08927-1.48076-.1098-.57158-.02052-1.27245-.03078-2.10364-.03078H8.431v6.95125c0 1.26732.33248 2.1765.99743 2.72653.66496.55105 1.76604.82607 3.30426.82607zm-2.55618-12.0626c.64443 0 1.1842-.01026 1.62134-.03079.43612-.02155.80965-.05746 1.1216-.1098.31196-.0513.58697-.12416.82607-.21754.2391-.09338.48332-.2237.73268-.38995.66496-.4156 1.137-.91431 1.41816-1.49615.28015-.58183.42073-1.34017.42073-2.27501 0-1.64187-.4002-2.82093-1.2006-3.53823-.7994-.71729-2.05131-1.07542-3.75577-1.07542H8.9605c-.353 0-.5295.1765-.5295.53053v8.60236z" }) + ] + } + ); +}); + +export { SiBookalope as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.cjs new file mode 100644 index 000000000..f44e735c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F44336"; +const SiBookbub = React__namespace.forwardRef(function SiBookbub2({ title = "BookBub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 20V4h5.4c1.6 0 2.8.3 3.8 1 .9.7 1.4 1.6 1.4 2.7 0 .8-.3 1.6-.8 2.3-.6.7-1.3 1.2-2.2 1.4 1.1.1 2 .6 2.7 1.3.7.7 1 1.6 1 2.6 0 1.4-.5 2.6-1.5 3.4-1 .9-2.4 1.3-4.1 1.3H0zM3 6.4v4.2h1.7c.8 0 1.5-.2 1.9-.6.4-.4.7-1 .7-1.7 0-1.3-.9-1.9-2.7-1.9H3zM3 13v4.7h2.1c.9 0 1.6-.2 2.1-.6.5-.5.8-1.1.8-1.9C8 13.7 7 13 5 13H3zm9.7 7V4h5.4c1.6 0 2.8.3 3.8 1 .9.7 1.4 1.6 1.4 2.7 0 .8-.3 1.6-.8 2.3-.6.7-1.3 1.2-2.2 1.4 1.1.1 2 .6 2.7 1.3.7.7 1 1.6 1 2.6 0 1.4-.5 2.6-1.5 3.4-1 .9-2.4 1.3-4.1 1.3h-5.7zm3-13.6v4.2h1.7c.8 0 1.5-.2 1.9-.6s.7-1 .7-1.7c0-1.3-.9-1.9-2.7-1.9h-1.6zm0 6.6v4.7h2.1c.9 0 1.6-.2 2.1-.6.5-.4.7-1 .7-1.8 0-1.5-1-2.3-3-2.3h-1.9z" }) + ] + } + ); +}); + +exports.default = SiBookbub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.d.ts new file mode 100644 index 000000000..3a76ef19b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F44336"; +declare const SiBookbub: IconType; +export { SiBookbub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.mjs new file mode 100644 index 000000000..79046e87c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookbub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F44336"; +const SiBookbub = React.forwardRef(function SiBookbub2({ title = "BookBub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 20V4h5.4c1.6 0 2.8.3 3.8 1 .9.7 1.4 1.6 1.4 2.7 0 .8-.3 1.6-.8 2.3-.6.7-1.3 1.2-2.2 1.4 1.1.1 2 .6 2.7 1.3.7.7 1 1.6 1 2.6 0 1.4-.5 2.6-1.5 3.4-1 .9-2.4 1.3-4.1 1.3H0zM3 6.4v4.2h1.7c.8 0 1.5-.2 1.9-.6.4-.4.7-1 .7-1.7 0-1.3-.9-1.9-2.7-1.9H3zM3 13v4.7h2.1c.9 0 1.6-.2 2.1-.6.5-.5.8-1.1.8-1.9C8 13.7 7 13 5 13H3zm9.7 7V4h5.4c1.6 0 2.8.3 3.8 1 .9.7 1.4 1.6 1.4 2.7 0 .8-.3 1.6-.8 2.3-.6.7-1.3 1.2-2.2 1.4 1.1.1 2 .6 2.7 1.3.7.7 1 1.6 1 2.6 0 1.4-.5 2.6-1.5 3.4-1 .9-2.4 1.3-4.1 1.3h-5.7zm3-13.6v4.2h1.7c.8 0 1.5-.2 1.9-.6s.7-1 .7-1.7c0-1.3-.9-1.9-2.7-1.9h-1.6zm0 6.6v4.7h2.1c.9 0 1.6-.2 2.1-.6.5-.4.7-1 .7-1.8 0-1.5-1-2.3-3-2.3h-1.9z" }) + ] + } + ); +}); + +export { SiBookbub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.cjs new file mode 100644 index 000000000..b287c5d81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003A9A"; +const SiBookingdotcom = React__namespace.forwardRef(function SiBookingdotcom2({ title = "Booking.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 0H0v24h24ZM8.575 6.563h2.658c2.108 0 3.473 1.15 3.473 2.898 0 1.15-.575 1.82-.91 2.108l-.287.263.335.192c.815.479 1.318 1.389 1.318 2.395 0 1.988-1.51 3.257-3.857 3.257H7.449V7.713c0-.623.503-1.126 1.126-1.15zm1.7 1.868c-.479.024-.694.264-.694.79v1.893h1.676c.958 0 1.294-.743 1.294-1.365 0-.815-.503-1.318-1.318-1.318zm-.096 4.36c-.407.071-.598.31-.598.79v2.251h1.868c.934 0 1.509-.55 1.509-1.533 0-.934-.599-1.509-1.51-1.509zm7.737 2.394c.743 0 1.341.599 1.341 1.342a1.34 1.34 0 0 1-1.341 1.341 1.355 1.355 0 0 1-1.341-1.341c0-.743.598-1.342 1.34-1.342z" }) + ] + } + ); +}); + +exports.default = SiBookingdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.d.ts new file mode 100644 index 000000000..7f76d1458 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003A9A"; +declare const SiBookingdotcom: IconType; +export { SiBookingdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.mjs new file mode 100644 index 000000000..0a5d2a92c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookingdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003A9A"; +const SiBookingdotcom = React.forwardRef(function SiBookingdotcom2({ title = "Booking.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 0H0v24h24ZM8.575 6.563h2.658c2.108 0 3.473 1.15 3.473 2.898 0 1.15-.575 1.82-.91 2.108l-.287.263.335.192c.815.479 1.318 1.389 1.318 2.395 0 1.988-1.51 3.257-3.857 3.257H7.449V7.713c0-.623.503-1.126 1.126-1.15zm1.7 1.868c-.479.024-.694.264-.694.79v1.893h1.676c.958 0 1.294-.743 1.294-1.365 0-.815-.503-1.318-1.318-1.318zm-.096 4.36c-.407.071-.598.31-.598.79v2.251h1.868c.934 0 1.509-.55 1.509-1.533 0-.934-.599-1.509-1.51-1.509zm7.737 2.394c.743 0 1.341.599 1.341 1.342a1.34 1.34 0 0 1-1.341 1.341 1.355 1.355 0 0 1-1.341-1.341c0-.743.598-1.342 1.34-1.342z" }) + ] + } + ); +}); + +export { SiBookingdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.cjs new file mode 100644 index 000000000..12e929b8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#64BC4B"; +const SiBookmeter = React__namespace.forwardRef(function SiBookmeter2({ title = "Bookmeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.678 14.262h6.089V24H.678v-9.738zm8.215 9.717h6.089V7.11H8.893v16.869zM17.234 0v24h6.089V0h-6.089z" }) + ] + } + ); +}); + +exports.default = SiBookmeter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.d.ts new file mode 100644 index 000000000..c3eb6a18f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#64BC4B"; +declare const SiBookmeter: IconType; +export { SiBookmeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.mjs new file mode 100644 index 000000000..3bc724fe0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmeter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#64BC4B"; +const SiBookmeter = React.forwardRef(function SiBookmeter2({ title = "Bookmeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.678 14.262h6.089V24H.678v-9.738zm8.215 9.717h6.089V7.11H8.893v16.869zM17.234 0v24h6.089V0h-6.089z" }) + ] + } + ); +}); + +export { SiBookmeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.cjs new file mode 100644 index 000000000..6f2f82630 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C4242B"; +const SiBookmyshow = React__namespace.forwardRef(function SiBookmyshow2({ title = "BookMyShow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.338 16.595a.66.66 0 01-.554-.66v-8.07a.67.67 0 01.679-.672h5.901c.154 0 .308.015.458.04a2.622 2.622 0 012.19 2.576v6.126a.66.66 0 01-.204.478.684.684 0 01-.6.182.66.66 0 01-.553-.66V9.809a1.277 1.277 0 00-1.29-1.272h-1.287v7.398a.678.678 0 01-.806.66.66.66 0 01-.553-.66v-7.4H6.142v7.4a.66.66 0 01-.202.478.682.682 0 01-.602.182m9.812 3.517a.66.66 0 01-.555-.662c0-.183.07-.353.196-.478a.684.684 0 01.484-.193c.572 0 1.068-.365 1.232-.909l.701-2.307-2.294-7.576a.677.677 0 01.453-.847.695.695 0 01.84.444l1.705 5.65 1.724-5.647c.085-.318.43-.52.786-.459l.048.01a.68.68 0 01.458.85l-2.362 7.774-.746 2.489c-.193.571-.525 1.036-.957 1.349a2.678 2.678 0 01-1.588.522.664.664 0 01-.125-.011M24 7.172l-1.353-2.277-2.421 1.137-1.353-2.278-2.42 1.138-1.354-2.277-2.42 1.138-1.354-2.277-2.42 1.136L7.55.335 5.132 1.47 0 17.957l6.226 1.88a3.295 3.295 0 013.151-2.297c1.822 0 3.3 1.46 3.3 3.26l-.002.065c.015.295-.02.594-.11.887l6.331 1.914L24 7.17" }) + ] + } + ); +}); + +exports.default = SiBookmyshow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.d.ts new file mode 100644 index 000000000..7ae0dd99d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C4242B"; +declare const SiBookmyshow: IconType; +export { SiBookmyshow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.mjs new file mode 100644 index 000000000..ed45917c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookmyshow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C4242B"; +const SiBookmyshow = React.forwardRef(function SiBookmyshow2({ title = "BookMyShow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.338 16.595a.66.66 0 01-.554-.66v-8.07a.67.67 0 01.679-.672h5.901c.154 0 .308.015.458.04a2.622 2.622 0 012.19 2.576v6.126a.66.66 0 01-.204.478.684.684 0 01-.6.182.66.66 0 01-.553-.66V9.809a1.277 1.277 0 00-1.29-1.272h-1.287v7.398a.678.678 0 01-.806.66.66.66 0 01-.553-.66v-7.4H6.142v7.4a.66.66 0 01-.202.478.682.682 0 01-.602.182m9.812 3.517a.66.66 0 01-.555-.662c0-.183.07-.353.196-.478a.684.684 0 01.484-.193c.572 0 1.068-.365 1.232-.909l.701-2.307-2.294-7.576a.677.677 0 01.453-.847.695.695 0 01.84.444l1.705 5.65 1.724-5.647c.085-.318.43-.52.786-.459l.048.01a.68.68 0 01.458.85l-2.362 7.774-.746 2.489c-.193.571-.525 1.036-.957 1.349a2.678 2.678 0 01-1.588.522.664.664 0 01-.125-.011M24 7.172l-1.353-2.277-2.421 1.137-1.353-2.278-2.42 1.138-1.354-2.277-2.42 1.138-1.354-2.277-2.42 1.136L7.55.335 5.132 1.47 0 17.957l6.226 1.88a3.295 3.295 0 013.151-2.297c1.822 0 3.3 1.46 3.3 3.26l-.002.065c.015.295-.02.594-.11.887l6.331 1.914L24 7.17" }) + ] + } + ); +}); + +export { SiBookmyshow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.cjs new file mode 100644 index 000000000..a31710ae9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0288D1"; +const SiBookstack = React__namespace.forwardRef(function SiBookstack2({ title = "BookStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.3013 17.6146c-.1299-.3387-.5228-1.5119-.1337-2.4314l9.8273 5.6738a.329.329 0 0 0 .3299 0L24 12.9616v2.3542l-13.8401 7.9906-9.8586-5.6918zM.1911 8.9628c-.2882.8769.0149 2.0581.1236 2.4261l9.8452 5.6841L24 9.0823V6.7275L10.3248 14.623a.329.329 0 0 1-.3299 0L.1911 8.9628zm13.1698-1.9361c-.1819.1113-.4394.0015-.4852-.2064l-.2805-1.1336-2.1254-.1752a.33.33 0 0 1-.1378-.6145l5.5782-3.2207-1.7021-.9826L.6979 8.4935l9.462 5.463 13.5104-7.8004-4.401-2.5407-5.9084 3.4113zm-.1821-1.7286.2321.938 5.1984-3.0014-2.0395-1.1775-4.994 2.8834 1.3099.108a.3302.3302 0 0 1 .2931.2495zM24 9.845l-13.6752 7.8954a.329.329 0 0 1-.3299 0L.1678 12.0667c-.3891.919.003 2.0914.1332 2.4311l9.8589 5.692L24 12.1993V9.845z" }) + ] + } + ); +}); + +exports.default = SiBookstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.d.ts new file mode 100644 index 000000000..3e7de32fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0288D1"; +declare const SiBookstack: IconType; +export { SiBookstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.mjs new file mode 100644 index 000000000..043553812 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBookstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0288D1"; +const SiBookstack = React.forwardRef(function SiBookstack2({ title = "BookStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.3013 17.6146c-.1299-.3387-.5228-1.5119-.1337-2.4314l9.8273 5.6738a.329.329 0 0 0 .3299 0L24 12.9616v2.3542l-13.8401 7.9906-9.8586-5.6918zM.1911 8.9628c-.2882.8769.0149 2.0581.1236 2.4261l9.8452 5.6841L24 9.0823V6.7275L10.3248 14.623a.329.329 0 0 1-.3299 0L.1911 8.9628zm13.1698-1.9361c-.1819.1113-.4394.0015-.4852-.2064l-.2805-1.1336-2.1254-.1752a.33.33 0 0 1-.1378-.6145l5.5782-3.2207-1.7021-.9826L.6979 8.4935l9.462 5.463 13.5104-7.8004-4.401-2.5407-5.9084 3.4113zm-.1821-1.7286.2321.938 5.1984-3.0014-2.0395-1.1775-4.994 2.8834 1.3099.108a.3302.3302 0 0 1 .2931.2495zM24 9.845l-13.6752 7.8954a.329.329 0 0 1-.3299 0L.1678 12.0667c-.3891.919.003 2.0914.1332 2.4311l9.8589 5.692L24 12.1993V9.845z" }) + ] + } + ); +}); + +export { SiBookstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.cjs new file mode 100644 index 000000000..b7e48d01a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7901E"; +const SiBoost = React__namespace.forwardRef(function SiBoost2({ title = "Boost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.428 2.727l3.335 3.335c-.486.07-.903.276-1.32.624L.886 12.383c-1.181 1.18-1.181 3.194 0 4.375a2.41 2.41 0 0 0 1.598.834l17.088 3.681-3.335-3.333c.486-.07.903-.278 1.32-.626l5.557-5.695c1.181-1.181 1.181-3.196 0-4.377a2.411 2.411 0 0 0-1.598-.833zM11.653 6.2c.694 0 1.25.486 1.25 1.18 0 .695-.486 1.251-1.181 1.251-.695 0-1.25-.485-1.25-1.18s.555-1.251 1.18-1.251zm1.51 3.792c.049-.006.088.046.088.098-.139.694-.695 1.181-1.39 1.181-.694 0-1.32-.487-1.46-1.112 0 0 .002-.07.071 0 .487.278.972.348 1.32.278.346 0 .833-.07 1.32-.416a.092.092 0 0 1 .05-.029zm.723 2.511c.058.013.06.106.06.158-.209.903-.973 1.666-1.946 1.666a2.167 2.167 0 0 1-2.084-1.528c-.07-.07 0-.138.138-.138.695.347 1.39.416 1.877.416.486 0 1.18-.14 1.875-.556.035-.017.06-.022.08-.018zm.597 3.018c.049-.013.087.09.087.195-.278 1.181-1.25 2.085-2.5 2.155-1.251 0-2.293-.835-2.57-1.946 0-.139.068-.278.207-.209.834.486 1.737.556 2.362.556s1.529-.208 2.362-.694c.018-.035.036-.053.052-.057z" }) + ] + } + ); +}); + +exports.default = SiBoost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.d.ts new file mode 100644 index 000000000..fc11b01bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7901E"; +declare const SiBoost: IconType; +export { SiBoost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.mjs new file mode 100644 index 000000000..d28c81d21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7901E"; +const SiBoost = React.forwardRef(function SiBoost2({ title = "Boost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.428 2.727l3.335 3.335c-.486.07-.903.276-1.32.624L.886 12.383c-1.181 1.18-1.181 3.194 0 4.375a2.41 2.41 0 0 0 1.598.834l17.088 3.681-3.335-3.333c.486-.07.903-.278 1.32-.626l5.557-5.695c1.181-1.181 1.181-3.196 0-4.377a2.411 2.411 0 0 0-1.598-.833zM11.653 6.2c.694 0 1.25.486 1.25 1.18 0 .695-.486 1.251-1.181 1.251-.695 0-1.25-.485-1.25-1.18s.555-1.251 1.18-1.251zm1.51 3.792c.049-.006.088.046.088.098-.139.694-.695 1.181-1.39 1.181-.694 0-1.32-.487-1.46-1.112 0 0 .002-.07.071 0 .487.278.972.348 1.32.278.346 0 .833-.07 1.32-.416a.092.092 0 0 1 .05-.029zm.723 2.511c.058.013.06.106.06.158-.209.903-.973 1.666-1.946 1.666a2.167 2.167 0 0 1-2.084-1.528c-.07-.07 0-.138.138-.138.695.347 1.39.416 1.877.416.486 0 1.18-.14 1.875-.556.035-.017.06-.022.08-.018zm.597 3.018c.049-.013.087.09.087.195-.278 1.181-1.25 2.085-2.5 2.155-1.251 0-2.293-.835-2.57-1.946 0-.139.068-.278.207-.209.834.486 1.737.556 2.362.556s1.529-.208 2.362-.694c.018-.035.036-.053.052-.057z" }) + ] + } + ); +}); + +export { SiBoost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.cjs new file mode 100644 index 000000000..9d304959e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15F2C"; +const SiBoosty = React__namespace.forwardRef(function SiBoosty2({ title = "Boosty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.661 14.337 6.801 0h6.362L11.88 4.444l-.038.077-3.378 11.733h3.15c-1.321 3.289-2.35 5.867-3.086 7.733-5.816-.063-7.442-4.228-6.02-9.155M8.554 24l7.67-11.035h-3.25l2.83-7.073c4.852.508 7.137 4.33 5.791 8.952C20.16 19.81 14.344 24 8.68 24h-.127z" }) + ] + } + ); +}); + +exports.default = SiBoosty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.d.ts new file mode 100644 index 000000000..0f8457adf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15F2C"; +declare const SiBoosty: IconType; +export { SiBoosty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.mjs new file mode 100644 index 000000000..1f7dbe81d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoosty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15F2C"; +const SiBoosty = React.forwardRef(function SiBoosty2({ title = "Boosty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.661 14.337 6.801 0h6.362L11.88 4.444l-.038.077-3.378 11.733h3.15c-1.321 3.289-2.35 5.867-3.086 7.733-5.816-.063-7.442-4.228-6.02-9.155M8.554 24l7.67-11.035h-3.25l2.83-7.073c4.852.508 7.137 4.33 5.791 8.952C20.16 19.81 14.344 24 8.68 24h-.127z" }) + ] + } + ); +}); + +export { SiBoosty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.cjs new file mode 100644 index 000000000..71c69d694 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05054B"; +const SiBoots = React__namespace.forwardRef(function SiBoots2({ title = "Boots", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.979 8.337c.201-.23.326-.516.326-.73 0-.143-.083-.234-.218-.234-.224 0-.493.276-.493.691a.848.848 0 0 0 .018.175c-.257.4-.524.807-.793 1.198a1.491 1.491 0 0 0-.292-.029c-.649 0-1.319.487-1.319 1.367a1.697 1.697 0 0 0 .114.632c-.555.633-1.044 1.044-1.375 1.044-.13 0-.208-.071-.208-.219 0-.158.076-.409.229-.758l1.91-4.228 2.062-.242.234-.489-1.993.067.346-.763-.776.092-.35.695-2.79.09-.501.995 2.917-.344-.587 1.165a2.636 2.636 0 0 0-1.086-.212 3.927 3.927 0 0 0-1.766.425 1.81 1.81 0 0 0-.792-.175c-.673 0-1.436.324-2.056.893-.126-.388-.39-.62-.778-.62-.454 0-.935.238-1.396.623-.276-.225-.673-.29-1.095-.132a2.802 2.802 0 0 0 .35-1.317c0-.781-.365-1.354-1.032-1.7a5.165 5.165 0 0 1 .723-.493 1.72 1.72 0 0 0-.233-.164 6.642 6.642 0 0 0-.942.473c-.42-.134-.922-.202-1.496-.202C5.18 5.911 2.66 7.45 2.66 9.35c0 .837.473 1.137.942 1.137.438 0 .866-.246 1.002-.544-.381-.078-.607-.408-.607-.827 0-1.481 1.792-2.774 3.63-2.774.412 0 .769.077 1.062.218-1.117.86-1.975 2.03-2.682 3.282a1.937 1.937 0 0 0-.298-.024c-.528 0-.91.224-.91.666 0 .298.194.554.494.739-.44.911-.822 1.822-1.19 2.652-.128-.252-.419-.416-.755-.416-.807 0-1.418.712-1.418 1.594 0 .575.233 1.125.636 1.566-.38.425-.796.676-1.28.69a.858.858 0 0 1-.452-.114c.38-.042.692-.325.683-.692-.008-.367-.314-.628-.734-.617a.793.793 0 0 0-.783.817c.017.695.608 1.062 1.38 1.044.667-.015 1.24-.253 1.75-.654a3.266 3.266 0 0 0 1.769.5c2.049 0 3.787-1.745 3.787-4.087 0-.93-.24-1.668-.599-2.231a4.598 4.598 0 0 0 1.705-1.06c.637-.63 1.11-.572 1.381-.403-1.057 1.097-1.916 2.867-1.916 4.056 0 .737.295 1.217.862 1.217 1.7 0 3.73-3.278 3.705-5.08.546-.605 1.276-.965 1.869-.965a1.186 1.186 0 0 1 .307.037c-1.329.94-2.157 2.547-2.157 3.782 0 .655.322 1.152.95 1.152 1.17 0 2.692-1.823 2.692-3.64 0-.559-.159-.978-.41-1.273a2.599 2.599 0 0 1 1.34-.392 2.11 2.11 0 0 1 .834.18l-1.172 2.323c-.272.568-.378.988-.378 1.293 0 .469.275.71.711.71.636 0 1.385-.59 2.132-1.436.323.4.826.579 1.242.579a2.215 2.215 0 0 0 .404-.039c-.314.397-.838.696-1.607.889l-10.17 2.548c-1.545.386-2.49 1.148-2.034 2.608.353-.29.987-.573 2.63-1.073l9.232-2.816c1.35-.411 2.207-1.38 2.572-2.356.628-.306 1.189-.89 1.189-1.7.001-.894-.749-1.429-1.021-2.078zm-16.16 2.322a2.241 2.241 0 0 1 .321.33 3.023 3.023 0 0 1-.503.062q.09-.197.182-.392zm-1.592-.214c0-.231.279-.27.577-.236q-.162.3-.314.604c-.167-.105-.263-.235-.263-.368zm-2.271 5.663c-.34-.317-.507-.727-.502-1.068a1 1 0 0 1 .12-.462.756.756 0 0 0 .693.418.903.903 0 0 0 .35-.071 10.415 10.415 0 0 1-.661 1.183zm1.403.511a2.317 2.317 0 0 1-.641-.086c1.053-1.185 1.84-3.085 2.697-4.993a4.882 4.882 0 0 0 1.013-.087c.172.363.277.805.277 1.331 0 1.723-1.266 3.835-3.346 3.835zm3.366-5.816a3.254 3.254 0 0 0-.7-.577c.608-1.251 1.284-2.432 2.13-3.335.287.297.443.702.443 1.186-.001 1.204-.796 2.262-1.872 2.726zm2.597 3.579c-.164 0-.246-.142-.246-.382 0-1.047 1.778-4.474 2.673-4.474.17 0 .246.142.246.388-.002 1.058-1.77 4.468-2.673 4.468zm4.588-.996c-.17 0-.245-.135-.245-.388 0-.81.72-2.513 1.877-3.511.128.213.186.482.187.763.005 1.34-1.224 3.136-1.82 3.136zm5.744-2.368a1.326 1.326 0 0 1-.032-.295c0-.523.373-.946.865-.946q.05 0 .096.004c-.317.446-.63.866-.931 1.237zm1.867.593a1.275 1.275 0 0 1-.763.252c-.385 0-.713-.159-.917-.432.387-.47.77-.997 1.13-1.533.42.236.592.782.592 1.276a2.15 2.15 0 0 1-.044.437zm.494-.6c-.015-.6-.315-1.175-.825-1.444.202-.308.396-.617.579-.917.191.39.477.813.477 1.368a2.214 2.214 0 0 1-.232.994z" }) + ] + } + ); +}); + +exports.default = SiBoots; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.d.ts new file mode 100644 index 000000000..d861cdda5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05054B"; +declare const SiBoots: IconType; +export { SiBoots as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.mjs new file mode 100644 index 000000000..7febf0a4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoots.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05054B"; +const SiBoots = React.forwardRef(function SiBoots2({ title = "Boots", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.979 8.337c.201-.23.326-.516.326-.73 0-.143-.083-.234-.218-.234-.224 0-.493.276-.493.691a.848.848 0 0 0 .018.175c-.257.4-.524.807-.793 1.198a1.491 1.491 0 0 0-.292-.029c-.649 0-1.319.487-1.319 1.367a1.697 1.697 0 0 0 .114.632c-.555.633-1.044 1.044-1.375 1.044-.13 0-.208-.071-.208-.219 0-.158.076-.409.229-.758l1.91-4.228 2.062-.242.234-.489-1.993.067.346-.763-.776.092-.35.695-2.79.09-.501.995 2.917-.344-.587 1.165a2.636 2.636 0 0 0-1.086-.212 3.927 3.927 0 0 0-1.766.425 1.81 1.81 0 0 0-.792-.175c-.673 0-1.436.324-2.056.893-.126-.388-.39-.62-.778-.62-.454 0-.935.238-1.396.623-.276-.225-.673-.29-1.095-.132a2.802 2.802 0 0 0 .35-1.317c0-.781-.365-1.354-1.032-1.7a5.165 5.165 0 0 1 .723-.493 1.72 1.72 0 0 0-.233-.164 6.642 6.642 0 0 0-.942.473c-.42-.134-.922-.202-1.496-.202C5.18 5.911 2.66 7.45 2.66 9.35c0 .837.473 1.137.942 1.137.438 0 .866-.246 1.002-.544-.381-.078-.607-.408-.607-.827 0-1.481 1.792-2.774 3.63-2.774.412 0 .769.077 1.062.218-1.117.86-1.975 2.03-2.682 3.282a1.937 1.937 0 0 0-.298-.024c-.528 0-.91.224-.91.666 0 .298.194.554.494.739-.44.911-.822 1.822-1.19 2.652-.128-.252-.419-.416-.755-.416-.807 0-1.418.712-1.418 1.594 0 .575.233 1.125.636 1.566-.38.425-.796.676-1.28.69a.858.858 0 0 1-.452-.114c.38-.042.692-.325.683-.692-.008-.367-.314-.628-.734-.617a.793.793 0 0 0-.783.817c.017.695.608 1.062 1.38 1.044.667-.015 1.24-.253 1.75-.654a3.266 3.266 0 0 0 1.769.5c2.049 0 3.787-1.745 3.787-4.087 0-.93-.24-1.668-.599-2.231a4.598 4.598 0 0 0 1.705-1.06c.637-.63 1.11-.572 1.381-.403-1.057 1.097-1.916 2.867-1.916 4.056 0 .737.295 1.217.862 1.217 1.7 0 3.73-3.278 3.705-5.08.546-.605 1.276-.965 1.869-.965a1.186 1.186 0 0 1 .307.037c-1.329.94-2.157 2.547-2.157 3.782 0 .655.322 1.152.95 1.152 1.17 0 2.692-1.823 2.692-3.64 0-.559-.159-.978-.41-1.273a2.599 2.599 0 0 1 1.34-.392 2.11 2.11 0 0 1 .834.18l-1.172 2.323c-.272.568-.378.988-.378 1.293 0 .469.275.71.711.71.636 0 1.385-.59 2.132-1.436.323.4.826.579 1.242.579a2.215 2.215 0 0 0 .404-.039c-.314.397-.838.696-1.607.889l-10.17 2.548c-1.545.386-2.49 1.148-2.034 2.608.353-.29.987-.573 2.63-1.073l9.232-2.816c1.35-.411 2.207-1.38 2.572-2.356.628-.306 1.189-.89 1.189-1.7.001-.894-.749-1.429-1.021-2.078zm-16.16 2.322a2.241 2.241 0 0 1 .321.33 3.023 3.023 0 0 1-.503.062q.09-.197.182-.392zm-1.592-.214c0-.231.279-.27.577-.236q-.162.3-.314.604c-.167-.105-.263-.235-.263-.368zm-2.271 5.663c-.34-.317-.507-.727-.502-1.068a1 1 0 0 1 .12-.462.756.756 0 0 0 .693.418.903.903 0 0 0 .35-.071 10.415 10.415 0 0 1-.661 1.183zm1.403.511a2.317 2.317 0 0 1-.641-.086c1.053-1.185 1.84-3.085 2.697-4.993a4.882 4.882 0 0 0 1.013-.087c.172.363.277.805.277 1.331 0 1.723-1.266 3.835-3.346 3.835zm3.366-5.816a3.254 3.254 0 0 0-.7-.577c.608-1.251 1.284-2.432 2.13-3.335.287.297.443.702.443 1.186-.001 1.204-.796 2.262-1.872 2.726zm2.597 3.579c-.164 0-.246-.142-.246-.382 0-1.047 1.778-4.474 2.673-4.474.17 0 .246.142.246.388-.002 1.058-1.77 4.468-2.673 4.468zm4.588-.996c-.17 0-.245-.135-.245-.388 0-.81.72-2.513 1.877-3.511.128.213.186.482.187.763.005 1.34-1.224 3.136-1.82 3.136zm5.744-2.368a1.326 1.326 0 0 1-.032-.295c0-.523.373-.946.865-.946q.05 0 .096.004c-.317.446-.63.866-.931 1.237zm1.867.593a1.275 1.275 0 0 1-.763.252c-.385 0-.713-.159-.917-.432.387-.47.77-.997 1.13-1.533.42.236.592.782.592 1.276a2.15 2.15 0 0 1-.044.437zm.494-.6c-.015-.6-.315-1.175-.825-1.444.202-.308.396-.617.579-.917.191.39.477.813.477 1.368a2.214 2.214 0 0 1-.232.994z" }) + ] + } + ); +}); + +export { SiBoots as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.cjs new file mode 100644 index 000000000..57c1efbe7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7952B3"; +const SiBootstrap = React__namespace.forwardRef(function SiBootstrap2({ title = "Bootstrap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.77 11.24H9.956V8.202h2.152c1.17 0 1.834.522 1.834 1.466 0 1.008-.773 1.572-2.174 1.572zm.324 1.206H9.957v3.348h2.231c1.459 0 2.232-.585 2.232-1.685s-.795-1.663-2.326-1.663zM24 11.39v1.218c-1.128.108-1.817.944-2.226 2.268-.407 1.319-.463 2.937-.42 4.186.045 1.3-.968 2.5-2.337 2.5H4.985c-1.37 0-2.383-1.2-2.337-2.5.043-1.249-.013-2.867-.42-4.186-.41-1.324-1.1-2.16-2.228-2.268V11.39c1.128-.108 1.819-.944 2.227-2.268.408-1.319.464-2.937.42-4.186-.045-1.3.968-2.5 2.338-2.5h14.032c1.37 0 2.382 1.2 2.337 2.5-.043 1.249.013 2.867.42 4.186.409 1.324 1.098 2.16 2.226 2.268zm-7.927 2.817c0-1.354-.953-2.333-2.368-2.488v-.057c1.04-.169 1.856-1.135 1.856-2.213 0-1.537-1.213-2.538-3.062-2.538h-4.16v10.172h4.181c2.218 0 3.553-1.086 3.553-2.876z" }) + ] + } + ); +}); + +exports.default = SiBootstrap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.d.ts new file mode 100644 index 000000000..2adc974c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7952B3"; +declare const SiBootstrap: IconType; +export { SiBootstrap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.mjs new file mode 100644 index 000000000..56abbc247 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBootstrap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7952B3"; +const SiBootstrap = React.forwardRef(function SiBootstrap2({ title = "Bootstrap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.77 11.24H9.956V8.202h2.152c1.17 0 1.834.522 1.834 1.466 0 1.008-.773 1.572-2.174 1.572zm.324 1.206H9.957v3.348h2.231c1.459 0 2.232-.585 2.232-1.685s-.795-1.663-2.326-1.663zM24 11.39v1.218c-1.128.108-1.817.944-2.226 2.268-.407 1.319-.463 2.937-.42 4.186.045 1.3-.968 2.5-2.337 2.5H4.985c-1.37 0-2.383-1.2-2.337-2.5.043-1.249-.013-2.867-.42-4.186-.41-1.324-1.1-2.16-2.228-2.268V11.39c1.128-.108 1.819-.944 2.227-2.268.408-1.319.464-2.937.42-4.186-.045-1.3.968-2.5 2.338-2.5h14.032c1.37 0 2.382 1.2 2.337 2.5-.043 1.249.013 2.867.42 4.186.409 1.324 1.098 2.16 2.226 2.268zm-7.927 2.817c0-1.354-.953-2.333-2.368-2.488v-.057c1.04-.169 1.856-1.135 1.856-2.213 0-1.537-1.213-2.538-3.062-2.538h-4.16v10.172h4.181c2.218 0 3.553-1.086 3.553-2.876z" }) + ] + } + ); +}); + +export { SiBootstrap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.cjs new file mode 100644 index 000000000..403694612 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00DD00"; +const SiBorgbackup = React__namespace.forwardRef(function SiBorgbackup2({ title = "BorgBackup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 8.144v6.023h2.006V8.144Zm2.324 0v1.203h1.488v1.285H2.324v1.048h1.488v1.284H2.324v1.203h2.328l1.207-1.203V11.78l-.603-.604.603-.603V9.347L4.652 8.144Zm5.569 1.203L6.69 10.55v2.414l1.203 1.203H9.24v-1.125h-.522V10.55h.522V9.347Zm1.665 0v1.203h.5v2.492h-.5v1.125h1.344l1.202-1.203V10.55l-1.202-1.203Zm3.454 0v4.82h2.006v-4.82Zm3 0-.672.676v.527h.854v1.171h2.01v-1.248l-.975-1.126Zm3.971 0-1.202 1.203v2.414l1.202 1.203h1.094l.6-.594v-.531h-.89V9.347Zm1.121 0v1.203h.89v4.253h-2.446v.444l.603.609h2.646L24 14.644V10.55l-1.203-1.203Z" }) + ] + } + ); +}); + +exports.default = SiBorgbackup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.d.ts new file mode 100644 index 000000000..ccb74c07e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00DD00"; +declare const SiBorgbackup: IconType; +export { SiBorgbackup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.mjs new file mode 100644 index 000000000..fdffe51a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBorgbackup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00DD00"; +const SiBorgbackup = React.forwardRef(function SiBorgbackup2({ title = "BorgBackup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 8.144v6.023h2.006V8.144Zm2.324 0v1.203h1.488v1.285H2.324v1.048h1.488v1.284H2.324v1.203h2.328l1.207-1.203V11.78l-.603-.604.603-.603V9.347L4.652 8.144Zm5.569 1.203L6.69 10.55v2.414l1.203 1.203H9.24v-1.125h-.522V10.55h.522V9.347Zm1.665 0v1.203h.5v2.492h-.5v1.125h1.344l1.202-1.203V10.55l-1.202-1.203Zm3.454 0v4.82h2.006v-4.82Zm3 0-.672.676v.527h.854v1.171h2.01v-1.248l-.975-1.126Zm3.971 0-1.202 1.203v2.414l1.202 1.203h1.094l.6-.594v-.531h-.89V9.347Zm1.121 0v1.203h.89v4.253h-2.446v.444l.603.609h2.646L24 14.644V10.55l-1.203-1.203Z" }) + ] + } + ); +}); + +export { SiBorgbackup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.cjs new file mode 100644 index 000000000..59ab3e831 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA0016"; +const SiBosch = React__namespace.forwardRef(function SiBosch2({ title = "Bosch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12C23.996 5.374 18.626.004 12 0zm0 22.88C5.991 22.88 1.12 18.009 1.12 12S5.991 1.12 12 1.12 22.88 5.991 22.88 12c-.006 6.006-4.874 10.874-10.88 10.88zm4.954-18.374h-.821v4.108h-8.24V4.506h-.847a8.978 8.978 0 0 0 0 14.988h.846v-4.108h8.24v4.108h.822a8.978 8.978 0 0 0 0-14.988zM6.747 17.876a7.86 7.86 0 0 1 0-11.752v11.752zm9.386-3.635h-8.24V9.734h8.24v4.507zm1.12 3.61V6.124a7.882 7.882 0 0 1 0 11.727z" }) + ] + } + ); +}); + +exports.default = SiBosch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.d.ts new file mode 100644 index 000000000..d88f974ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA0016"; +declare const SiBosch: IconType; +export { SiBosch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.mjs new file mode 100644 index 000000000..61e5f29a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBosch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA0016"; +const SiBosch = React.forwardRef(function SiBosch2({ title = "Bosch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12C23.996 5.374 18.626.004 12 0zm0 22.88C5.991 22.88 1.12 18.009 1.12 12S5.991 1.12 12 1.12 22.88 5.991 22.88 12c-.006 6.006-4.874 10.874-10.88 10.88zm4.954-18.374h-.821v4.108h-8.24V4.506h-.847a8.978 8.978 0 0 0 0 14.988h.846v-4.108h8.24v4.108h.822a8.978 8.978 0 0 0 0-14.988zM6.747 17.876a7.86 7.86 0 0 1 0-11.752v11.752zm9.386-3.635h-8.24V9.734h8.24v4.507zm1.12 3.61V6.124a7.882 7.882 0 0 1 0 11.727z" }) + ] + } + ); +}); + +export { SiBosch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBose.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBose.cjs new file mode 100644 index 000000000..2d566d680 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBose.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBose = React__namespace.forwardRef(function SiBose2({ title = "Bose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.052 10.589a.69.69 0 0 0-.588.332l-.54.915c-.114.19.036.399.235.399h1.873l-.336.568a.274.274 0 0 1-.24.139h-.29a.113.113 0 0 1-.102-.164c.035-.062.112-.19.112-.19h-1.699l-.246.418c-.115.194.038.405.232.405h3.174a.692.692 0 0 0 .598-.34c.12-.206.405-.69.527-.896.123-.205-.032-.41-.228-.41h-1.873l.347-.586a.276.276 0 0 1 .231-.123h.292c.095 0 .135.102.105.155-.03.053-.117.199-.117.199h1.696l.254-.43c.094-.16-.023-.392-.24-.392h-3.18.003zm-1.344 0H9.537c-.23 0-.47.12-.592.329-.124.207-1.13 1.911-1.24 2.096-.109.185.042.397.236.397h3.177c.255 0 .48-.141.592-.33.111-.188 1.13-1.915 1.237-2.094.106-.18-.03-.4-.24-.4v.002zm-1.598.636c-.045.076-.89 1.505-.936 1.585a.276.276 0 0 1-.236.134h-.295c-.094 0-.138-.102-.102-.163l.94-1.592a.274.274 0 0 1 .235-.13h.296c.085 0 .143.091.097.167l.001-.001zm-2.919-.636H4.61l-1.39 2.354H0v.47h6.598a.69.69 0 0 0 .596-.336l.41-.697c.085-.145-.004-.331-.164-.379a.703.703 0 0 0 .583-.329c.115-.193.298-.506.402-.682a.266.266 0 0 0-.234-.4v-.001zM6.29 12.402l-.243.411a.267.267 0 0 1-.233.132h-.9l.419-.708h.857a.11.11 0 0 1 .099.166zm.694-1.178-.242.41a.266.266 0 0 1-.233.131h-.9l.418-.708h.858c.09 0 .14.093.098.167h.001zm11.194-.635-1.667 2.823h4.042l.276-.469h-2.345l.418-.707h2.345l.278-.47H19.18l.418-.709H24v-.468h-5.822z" }) + ] + } + ); +}); + +exports.default = SiBose; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBose.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBose.d.ts new file mode 100644 index 000000000..6cb2ddbd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBose.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBose: IconType; +export { SiBose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBose.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBose.mjs new file mode 100644 index 000000000..9d664f3c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBose.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBose = React.forwardRef(function SiBose2({ title = "Bose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.052 10.589a.69.69 0 0 0-.588.332l-.54.915c-.114.19.036.399.235.399h1.873l-.336.568a.274.274 0 0 1-.24.139h-.29a.113.113 0 0 1-.102-.164c.035-.062.112-.19.112-.19h-1.699l-.246.418c-.115.194.038.405.232.405h3.174a.692.692 0 0 0 .598-.34c.12-.206.405-.69.527-.896.123-.205-.032-.41-.228-.41h-1.873l.347-.586a.276.276 0 0 1 .231-.123h.292c.095 0 .135.102.105.155-.03.053-.117.199-.117.199h1.696l.254-.43c.094-.16-.023-.392-.24-.392h-3.18.003zm-1.344 0H9.537c-.23 0-.47.12-.592.329-.124.207-1.13 1.911-1.24 2.096-.109.185.042.397.236.397h3.177c.255 0 .48-.141.592-.33.111-.188 1.13-1.915 1.237-2.094.106-.18-.03-.4-.24-.4v.002zm-1.598.636c-.045.076-.89 1.505-.936 1.585a.276.276 0 0 1-.236.134h-.295c-.094 0-.138-.102-.102-.163l.94-1.592a.274.274 0 0 1 .235-.13h.296c.085 0 .143.091.097.167l.001-.001zm-2.919-.636H4.61l-1.39 2.354H0v.47h6.598a.69.69 0 0 0 .596-.336l.41-.697c.085-.145-.004-.331-.164-.379a.703.703 0 0 0 .583-.329c.115-.193.298-.506.402-.682a.266.266 0 0 0-.234-.4v-.001zM6.29 12.402l-.243.411a.267.267 0 0 1-.233.132h-.9l.419-.708h.857a.11.11 0 0 1 .099.166zm.694-1.178-.242.41a.266.266 0 0 1-.233.131h-.9l.418-.708h.858c.09 0 .14.093.098.167h.001zm11.194-.635-1.667 2.823h4.042l.276-.469h-2.345l.418-.707h2.345l.278-.47H19.18l.418-.709H24v-.468h-5.822z" }) + ] + } + ); +}); + +export { SiBose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.cjs new file mode 100644 index 000000000..42292780a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#205081"; +const SiBotblecms = React__namespace.forwardRef(function SiBotblecms2({ title = "Botble CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 9.371c-1.613 0-3.09.54-4.3 1.426V0S5.624.434 4.686 1.313l.036 15.742C4.918 20.918 8.086 24 12 24c.547 0 1.074-.07 1.59-.184v-3.105a4.318 4.318 0 0 1-1.59.312 4.336 4.336 0 0 1 0-8.671 4.321 4.321 0 0 1 4.313 4.109l.09 6.031c1.757-1.332 2.91-3.426 2.91-5.805A7.315 7.315 0 0 0 12 9.372Zm1.523 7.512c0 .84-.683 1.523-1.523 1.523a1.525 1.525 0 0 1 0-3.05c.84 0 1.523.683 1.523 1.527Z" }) + ] + } + ); +}); + +exports.default = SiBotblecms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.d.ts new file mode 100644 index 000000000..068833b73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#205081"; +declare const SiBotblecms: IconType; +export { SiBotblecms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.mjs new file mode 100644 index 000000000..30fb587e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBotblecms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#205081"; +const SiBotblecms = React.forwardRef(function SiBotblecms2({ title = "Botble CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 9.371c-1.613 0-3.09.54-4.3 1.426V0S5.624.434 4.686 1.313l.036 15.742C4.918 20.918 8.086 24 12 24c.547 0 1.074-.07 1.59-.184v-3.105a4.318 4.318 0 0 1-1.59.312 4.336 4.336 0 0 1 0-8.671 4.321 4.321 0 0 1 4.313 4.109l.09 6.031c1.757-1.332 2.91-3.426 2.91-5.805A7.315 7.315 0 0 0 12 9.372Zm1.523 7.512c0 .84-.683 1.523-1.523 1.523a1.525 1.525 0 0 1 0-3.05c.84 0 1.523.683 1.523 1.527Z" }) + ] + } + ); +}); + +export { SiBotblecms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.cjs new file mode 100644 index 000000000..82e0ae4ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD5300"; +const SiBoulanger = React__namespace.forwardRef(function SiBoulanger2({ title = "boulanger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.405 3.612v3.5777h5.6616c2.987.0347 5.3836 2.4311 5.3836 5.4181-.0347 2.987-2.4313 5.3834-5.3836 5.4181h-3.1259c-2.987 0-5.4181-2.431-5.4181-5.418V8.4052c0-2.084 1.1458-3.8903 2.8824-4.7933zC3.7856 3.612 0 7.3975 0 12.017c0 4.6194 3.7162 8.371 8.3704 8.371h7.2592C20.249 20.388 24 16.6711 24 12.017c0-4.6542-3.6815-8.405-8.3704-8.405zm.0353 6.4255v2.5357c0 1.3893 1.1457 2.535 2.535 2.535h3.0222c1.3893 0 2.535-1.1457 2.535-2.535 0-1.3893-1.111-2.5357-2.535-2.5357z" }) + ] + } + ); +}); + +exports.default = SiBoulanger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.d.ts new file mode 100644 index 000000000..717a6f58d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD5300"; +declare const SiBoulanger: IconType; +export { SiBoulanger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.mjs new file mode 100644 index 000000000..c6e5a4d8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoulanger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD5300"; +const SiBoulanger = React.forwardRef(function SiBoulanger2({ title = "boulanger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.405 3.612v3.5777h5.6616c2.987.0347 5.3836 2.4311 5.3836 5.4181-.0347 2.987-2.4313 5.3834-5.3836 5.4181h-3.1259c-2.987 0-5.4181-2.431-5.4181-5.418V8.4052c0-2.084 1.1458-3.8903 2.8824-4.7933zC3.7856 3.612 0 7.3975 0 12.017c0 4.6194 3.7162 8.371 8.3704 8.371h7.2592C20.249 20.388 24 16.6711 24 12.017c0-4.6542-3.6815-8.405-8.3704-8.405zm.0353 6.4255v2.5357c0 1.3893 1.1457 2.535 2.535 2.535h3.0222c1.3893 0 2.535-1.1457 2.535-2.535 0-1.3893-1.111-2.5357-2.535-2.5357z" }) + ] + } + ); +}); + +export { SiBoulanger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBower.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBower.cjs new file mode 100644 index 000000000..7d2cff412 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBower.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF5734"; +const SiBower = React__namespace.forwardRef(function SiBower2({ title = "Bower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.542 11.756c-1.235-1.187-7.408-1.927-9.355-2.142.094-.223.175-.454.242-.691.266-.117.552-.225.848-.315.036.107.207.515.303.709 3.917.108 4.118-2.91 4.277-3.738.156-.808.149-1.59 1.492-3.018-2.001-.584-4.88.904-5.844 3.118a5.981 5.981 0 00-1.085-.298c-.257-1.038-1.597-3.93-5.114-3.93-2.278 0-4.574.94-6.301 2.58a9.421 9.421 0 00-2.173 3.12C.28 8.43 0 9.84 0 11.342c0 5.227 3.568 9.807 5.584 9.807.88 0 1.638-.659 1.816-1.25.15.406.606 1.665.757 1.985.222.475 1.249.885 1.698.392.577.321 1.638.514 2.215-.342 1.113.235 2.097-.428 2.118-1.22.546-.029.814-.796.695-1.406-.088-.45-1.026-2.063-1.393-2.62.725.59 2.562.757 2.784 0 1.169.918 2.991.437 3.135-.31 1.42.369 3.05-.441 2.782-1.423 2.282-.157 1.99-2.585 1.35-3.2zm-5.943-4.024c-.6-.236-1.363-.386-1.897-.386-.757 0-1.22.43-1.932.43-.15 0-.507 0-.794-.102.189.198.423.305.877.305.272 0 .81-.139 1.245-.27.007.093.016.183.029.274-.816.195-1.672.714-1.92.849-.55-1.218-.077-2.368.36-2.899 1.962.004 3.548 1.352 4.032 1.8zm.85-.091l-.3-.28c-.309-.29-.63-.55-.96-.783.491-.974 1.109-2.04 1.889-2.698-.859.346-1.707 1.38-2.208 2.485a7.635 7.635 0 00-.777-.433c.7-1.493 2.323-2.739 4.114-2.836-1.2 1.088-.75 3.258-1.76 4.544l.001.001zm-2.464 1.017c-.133-.288-.266-.763-.25-1.042.222-.006.65.078.718.094-.026.131-.04.42-.04.456.042-.073.16-.324.208-.423.428.081.99.218 1.32.372-.388.25-1.045.523-1.957.543zM8.912 6.706c-.484-.174-.484-.611 0-.785.485-.174 1.095.045 1.095.392 0 .348-.61.567-1.095.393zm1.617.162A1.252 1.252 0 108.65 7.951c.832.48 1.879-.123 1.879-1.083zm2.783-1.575c-1.565 1.586-.947 3.593-.377 4.499-.81 1.348-2.404 2.27-4.255 2.69 2.078 0 3.3-.535 4.011-1.059.454-.335.7-.664.825-.847 3.081.199 7.96 1.192 8.435 1.513.19.129.388.414.417.687-2.315-.324-6.488-.665-7.58-.722.775.11 6.433 1.18 7.414 1.432-.299.486-.98.83-2.004.591.555.754-.52 1.66-2.019 1.161.33.74-1.003 1.407-2.52.636.02.74-1.88.826-2.63.007.015.098.104.284.142.367-.241 2.163-2.014 3.506-3.829 3.506-4.443 0-8.314-3.61-8.314-8.411 0-5.076 3.751-8.865 8.278-8.865 2.594 0 3.766 2.042 4.006 2.815z" }) + ] + } + ); +}); + +exports.default = SiBower; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBower.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBower.d.ts new file mode 100644 index 000000000..36637e11c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBower.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF5734"; +declare const SiBower: IconType; +export { SiBower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBower.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBower.mjs new file mode 100644 index 000000000..ee047ce18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBower.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF5734"; +const SiBower = React.forwardRef(function SiBower2({ title = "Bower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.542 11.756c-1.235-1.187-7.408-1.927-9.355-2.142.094-.223.175-.454.242-.691.266-.117.552-.225.848-.315.036.107.207.515.303.709 3.917.108 4.118-2.91 4.277-3.738.156-.808.149-1.59 1.492-3.018-2.001-.584-4.88.904-5.844 3.118a5.981 5.981 0 00-1.085-.298c-.257-1.038-1.597-3.93-5.114-3.93-2.278 0-4.574.94-6.301 2.58a9.421 9.421 0 00-2.173 3.12C.28 8.43 0 9.84 0 11.342c0 5.227 3.568 9.807 5.584 9.807.88 0 1.638-.659 1.816-1.25.15.406.606 1.665.757 1.985.222.475 1.249.885 1.698.392.577.321 1.638.514 2.215-.342 1.113.235 2.097-.428 2.118-1.22.546-.029.814-.796.695-1.406-.088-.45-1.026-2.063-1.393-2.62.725.59 2.562.757 2.784 0 1.169.918 2.991.437 3.135-.31 1.42.369 3.05-.441 2.782-1.423 2.282-.157 1.99-2.585 1.35-3.2zm-5.943-4.024c-.6-.236-1.363-.386-1.897-.386-.757 0-1.22.43-1.932.43-.15 0-.507 0-.794-.102.189.198.423.305.877.305.272 0 .81-.139 1.245-.27.007.093.016.183.029.274-.816.195-1.672.714-1.92.849-.55-1.218-.077-2.368.36-2.899 1.962.004 3.548 1.352 4.032 1.8zm.85-.091l-.3-.28c-.309-.29-.63-.55-.96-.783.491-.974 1.109-2.04 1.889-2.698-.859.346-1.707 1.38-2.208 2.485a7.635 7.635 0 00-.777-.433c.7-1.493 2.323-2.739 4.114-2.836-1.2 1.088-.75 3.258-1.76 4.544l.001.001zm-2.464 1.017c-.133-.288-.266-.763-.25-1.042.222-.006.65.078.718.094-.026.131-.04.42-.04.456.042-.073.16-.324.208-.423.428.081.99.218 1.32.372-.388.25-1.045.523-1.957.543zM8.912 6.706c-.484-.174-.484-.611 0-.785.485-.174 1.095.045 1.095.392 0 .348-.61.567-1.095.393zm1.617.162A1.252 1.252 0 108.65 7.951c.832.48 1.879-.123 1.879-1.083zm2.783-1.575c-1.565 1.586-.947 3.593-.377 4.499-.81 1.348-2.404 2.27-4.255 2.69 2.078 0 3.3-.535 4.011-1.059.454-.335.7-.664.825-.847 3.081.199 7.96 1.192 8.435 1.513.19.129.388.414.417.687-2.315-.324-6.488-.665-7.58-.722.775.11 6.433 1.18 7.414 1.432-.299.486-.98.83-2.004.591.555.754-.52 1.66-2.019 1.161.33.74-1.003 1.407-2.52.636.02.74-1.88.826-2.63.007.015.098.104.284.142.367-.241 2.163-2.014 3.506-3.829 3.506-4.443 0-8.314-3.61-8.314-8.411 0-5.076 3.751-8.865 8.278-8.865 2.594 0 3.766 2.042 4.006 2.815z" }) + ] + } + ); +}); + +export { SiBower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBox.cjs new file mode 100644 index 000000000..f435a1cf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0061D5"; +const SiBox = React__namespace.forwardRef(function SiBox2({ title = "Box", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.959 5.523c-.54 0-.959.42-.959.899v7.549a4.59 4.59 0 004.613 4.494 4.717 4.717 0 004.135-2.457c.779 1.438 2.337 2.457 4.074 2.457 2.577 0 4.674-2.037 4.674-4.613.06-2.457-2.037-4.495-4.613-4.495-1.738 0-3.295.959-4.074 2.397-.78-1.438-2.338-2.397-4.135-2.397-1.079 0-2.038.36-2.817.899V6.422a.92.92 0 00-.898-.899zM17.602 9.26a.95.95 0 00-.704.158c-.36.3-.479.899-.18 1.318l2.397 3.116-2.396 3.115c-.3.42-.24.96.18 1.26.419.3 1.016.298 1.316-.122l2.039-2.636 2.096 2.697c.3.36.899.419 1.318.12.36-.3.42-.84.121-1.259l-2.338-3.115 2.338-3.057c.3-.419.298-1.018-.121-1.318-.48-.3-1.019-.24-1.318.18l-2.096 2.576-2.04-2.695c-.149-.18-.373-.3-.612-.338zM4.613 11.154c1.558 0 2.817 1.26 2.817 2.758 0 1.558-1.259 2.756-2.817 2.756-1.558 0-2.816-1.198-2.816-2.756 0-1.498 1.258-2.758 2.816-2.758zm8.27 0c1.558 0 2.816 1.26 2.816 2.758-.06 1.558-1.318 2.756-2.816 2.756-1.558 0-2.817-1.198-2.817-2.756 0-1.498 1.259-2.758 2.817-2.758Z" }) + ] + } + ); +}); + +exports.default = SiBox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBox.d.ts new file mode 100644 index 000000000..4033ada37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0061D5"; +declare const SiBox: IconType; +export { SiBox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBox.mjs new file mode 100644 index 000000000..01f00d9a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0061D5"; +const SiBox = React.forwardRef(function SiBox2({ title = "Box", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.959 5.523c-.54 0-.959.42-.959.899v7.549a4.59 4.59 0 004.613 4.494 4.717 4.717 0 004.135-2.457c.779 1.438 2.337 2.457 4.074 2.457 2.577 0 4.674-2.037 4.674-4.613.06-2.457-2.037-4.495-4.613-4.495-1.738 0-3.295.959-4.074 2.397-.78-1.438-2.338-2.397-4.135-2.397-1.079 0-2.038.36-2.817.899V6.422a.92.92 0 00-.898-.899zM17.602 9.26a.95.95 0 00-.704.158c-.36.3-.479.899-.18 1.318l2.397 3.116-2.396 3.115c-.3.42-.24.96.18 1.26.419.3 1.016.298 1.316-.122l2.039-2.636 2.096 2.697c.3.36.899.419 1.318.12.36-.3.42-.84.121-1.259l-2.338-3.115 2.338-3.057c.3-.419.298-1.018-.121-1.318-.48-.3-1.019-.24-1.318.18l-2.096 2.576-2.04-2.695c-.149-.18-.373-.3-.612-.338zM4.613 11.154c1.558 0 2.817 1.26 2.817 2.758 0 1.558-1.259 2.756-2.817 2.756-1.558 0-2.816-1.198-2.816-2.756 0-1.498 1.258-2.758 2.816-2.758zm8.27 0c1.558 0 2.816 1.26 2.816 2.758-.06 1.558-1.318 2.756-2.816 2.756-1.558 0-2.817-1.198-2.817-2.756 0-1.498 1.259-2.758 2.817-2.758Z" }) + ] + } + ); +}); + +export { SiBox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.cjs new file mode 100644 index 000000000..ee8432861 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3584E3"; +const SiBoxysvg = React__namespace.forwardRef(function SiBoxysvg2({ title = "Boxy SVG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.384 5.028 6.933-4.023L12.05 0l1.716 1.002 6.866 4.01 1.716 1.003v12.054l-1.71.988c-1.712.99-5.136 2.965-6.847 3.954L12.079 24l-1.735-1.002L3.4 18.992 1.665 17.99l-.002-1.992-.01-7.973-.001-1.992 1.732-1.005Zm14.68 9.478c.1.037.23.037.363.037.594 0 1.383-.333 1.779-.763.394-.392.76-1.152.76-1.778 0-.626-.366-1.386-.76-1.78-.396-.43-1.185-.762-1.779-.762-.134 0-.263 0-.398.038.135-.069.23-.169.299-.234.397-.392.76-1.187.76-1.811 0-.592-.363-1.381-.76-1.78-.397-.397-1.189-.755-1.783-.755-.625 0-1.414.358-1.81.755-.064.067-.13.165-.232.268.031-.103.031-.234.031-.368 0-.595-.325-1.38-.755-1.778-.394-.395-1.152-.757-1.78-.757-.626 0-1.384.362-1.781.757-.427.397-.752 1.183-.752 1.778 0 .134 0 .265.028.398-.066-.133-.165-.23-.23-.298-.395-.397-1.183-.755-1.809-.755-.593 0-1.386.358-1.781.755-.399.399-.76 1.188-.76 1.78 0 .624.361 1.419.76 1.811.069.065.162.13.263.234-.101-.038-.23-.038-.364-.038-.594 0-1.383.332-1.779.762-.397.394-.76 1.154-.76 1.78 0 .626.363 1.386.76 1.778.396.43 1.185.763 1.779.763.134 0 .263 0 .398-.037-.135.068-.228.168-.297.233-.399.39-.76 1.185-.76 1.811 0 .59.361 1.381.76 1.779.395.397 1.15.756 1.781.756.626 0 1.414-.36 1.81-.756.064-.066.13-.166.229-.267-.028.101-.028.234-.028.366 0 .59.325 1.381.752 1.778.397.398 1.155.759 1.781.759.628 0 1.386-.361 1.78-.759.43-.397.755-1.188.755-1.778 0-.132 0-.265-.03-.395.068.13.167.23.231.296.396.397 1.185.756 1.81.756.594 0 1.386-.36 1.783-.756.397-.398.76-1.189.76-1.779 0-.626-.363-1.42-.76-1.81-.069-.066-.164-.133-.263-.234Zm-1.547.591h.028c.794 0 1.425.628 1.425 1.453 0 .79-.631 1.416-1.425 1.416-.82 0-1.452-.626-1.452-1.416v-.034l-2.103-2.11v2.968c.263.263.459.621.459 1.054 0 .79-.659 1.419-1.45 1.419-.79 0-1.448-.63-1.448-1.419 0-.433.164-.79.461-1.054v-2.968l-2.11 2.11v.034c0 .79-.657 1.416-1.447 1.416a1.41 1.41 0 0 1-1.423-1.416c0-.825.63-1.453 1.423-1.453h.03l2.107-2.108H6.628a1.36 1.36 0 0 1-1.055.464c-.79 0-1.416-.659-1.416-1.451 0-.795.626-1.452 1.416-1.452.433 0 .792.2 1.055.463h2.964L7.485 8.906h-.03c-.794 0-1.423-.664-1.423-1.453 0-.79.63-1.417 1.423-1.417.82 0 1.447.628 1.447 1.417v.033l2.11 2.111v-2.97c-.263-.263-.46-.62-.46-1.054 0-.787.658-1.417 1.447-1.417.791 0 1.45.63 1.45 1.417 0 .434-.164.791-.46 1.055v2.97l2.104-2.112v-.033c0-.79.664-1.417 1.452-1.417.794 0 1.425.628 1.425 1.417 0 .79-.631 1.453-1.425 1.453h-.028l-2.109 2.107h2.965c.263-.263.623-.463 1.054-.463.79 0 1.416.657 1.416 1.452 0 .792-.626 1.451-1.416 1.451a1.36 1.36 0 0 1-1.054-.464h-2.965l2.109 2.108Z" }) + ] + } + ); +}); + +exports.default = SiBoxysvg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.d.ts new file mode 100644 index 000000000..ab2bafb6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3584E3"; +declare const SiBoxysvg: IconType; +export { SiBoxysvg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.mjs new file mode 100644 index 000000000..abce9de62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBoxysvg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3584E3"; +const SiBoxysvg = React.forwardRef(function SiBoxysvg2({ title = "Boxy SVG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.384 5.028 6.933-4.023L12.05 0l1.716 1.002 6.866 4.01 1.716 1.003v12.054l-1.71.988c-1.712.99-5.136 2.965-6.847 3.954L12.079 24l-1.735-1.002L3.4 18.992 1.665 17.99l-.002-1.992-.01-7.973-.001-1.992 1.732-1.005Zm14.68 9.478c.1.037.23.037.363.037.594 0 1.383-.333 1.779-.763.394-.392.76-1.152.76-1.778 0-.626-.366-1.386-.76-1.78-.396-.43-1.185-.762-1.779-.762-.134 0-.263 0-.398.038.135-.069.23-.169.299-.234.397-.392.76-1.187.76-1.811 0-.592-.363-1.381-.76-1.78-.397-.397-1.189-.755-1.783-.755-.625 0-1.414.358-1.81.755-.064.067-.13.165-.232.268.031-.103.031-.234.031-.368 0-.595-.325-1.38-.755-1.778-.394-.395-1.152-.757-1.78-.757-.626 0-1.384.362-1.781.757-.427.397-.752 1.183-.752 1.778 0 .134 0 .265.028.398-.066-.133-.165-.23-.23-.298-.395-.397-1.183-.755-1.809-.755-.593 0-1.386.358-1.781.755-.399.399-.76 1.188-.76 1.78 0 .624.361 1.419.76 1.811.069.065.162.13.263.234-.101-.038-.23-.038-.364-.038-.594 0-1.383.332-1.779.762-.397.394-.76 1.154-.76 1.78 0 .626.363 1.386.76 1.778.396.43 1.185.763 1.779.763.134 0 .263 0 .398-.037-.135.068-.228.168-.297.233-.399.39-.76 1.185-.76 1.811 0 .59.361 1.381.76 1.779.395.397 1.15.756 1.781.756.626 0 1.414-.36 1.81-.756.064-.066.13-.166.229-.267-.028.101-.028.234-.028.366 0 .59.325 1.381.752 1.778.397.398 1.155.759 1.781.759.628 0 1.386-.361 1.78-.759.43-.397.755-1.188.755-1.778 0-.132 0-.265-.03-.395.068.13.167.23.231.296.396.397 1.185.756 1.81.756.594 0 1.386-.36 1.783-.756.397-.398.76-1.189.76-1.779 0-.626-.363-1.42-.76-1.81-.069-.066-.164-.133-.263-.234Zm-1.547.591h.028c.794 0 1.425.628 1.425 1.453 0 .79-.631 1.416-1.425 1.416-.82 0-1.452-.626-1.452-1.416v-.034l-2.103-2.11v2.968c.263.263.459.621.459 1.054 0 .79-.659 1.419-1.45 1.419-.79 0-1.448-.63-1.448-1.419 0-.433.164-.79.461-1.054v-2.968l-2.11 2.11v.034c0 .79-.657 1.416-1.447 1.416a1.41 1.41 0 0 1-1.423-1.416c0-.825.63-1.453 1.423-1.453h.03l2.107-2.108H6.628a1.36 1.36 0 0 1-1.055.464c-.79 0-1.416-.659-1.416-1.451 0-.795.626-1.452 1.416-1.452.433 0 .792.2 1.055.463h2.964L7.485 8.906h-.03c-.794 0-1.423-.664-1.423-1.453 0-.79.63-1.417 1.423-1.417.82 0 1.447.628 1.447 1.417v.033l2.11 2.111v-2.97c-.263-.263-.46-.62-.46-1.054 0-.787.658-1.417 1.447-1.417.791 0 1.45.63 1.45 1.417 0 .434-.164.791-.46 1.055v2.97l2.104-2.112v-.033c0-.79.664-1.417 1.452-1.417.794 0 1.425.628 1.425 1.417 0 .79-.631 1.453-1.425 1.453h-.028l-2.109 2.107h2.965c.263-.263.623-.463 1.054-.463.79 0 1.416.657 1.416 1.452 0 .792-.626 1.451-1.416 1.451a1.36 1.36 0 0 1-1.054-.464h-2.965l2.109 2.108Z" }) + ] + } + ); +}); + +export { SiBoxysvg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.cjs new file mode 100644 index 000000000..b7fa2c9af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBraintree = React__namespace.forwardRef(function SiBraintree2({ title = "Braintree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.276 20.482h4.717c3.641 0 5.462-1.2 5.462-3.517 0-2.275-1.945-3.517-5.752-3.517H8.276Zm0-16.965v6.538h4.138c3.103 0 4.717-1.159 4.717-3.269 0-2.152-1.655-3.269-4.759-3.269zM1.696 24v-3.518H4.47V3.517H1.697V0h11.089c5.09 0 8.193 2.358 8.193 6.455 0 2.69-1.572 4.345-3.558 5.131 2.855.787 4.882 2.814 4.882 5.586 0 4.386-3.393 6.828-8.938 6.828H1.697" }) + ] + } + ); +}); + +exports.default = SiBraintree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.d.ts new file mode 100644 index 000000000..23e8007fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBraintree: IconType; +export { SiBraintree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.mjs new file mode 100644 index 000000000..acd5070e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBraintree = React.forwardRef(function SiBraintree2({ title = "Braintree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.276 20.482h4.717c3.641 0 5.462-1.2 5.462-3.517 0-2.275-1.945-3.517-5.752-3.517H8.276Zm0-16.965v6.538h4.138c3.103 0 4.717-1.159 4.717-3.269 0-2.152-1.655-3.269-4.759-3.269zM1.696 24v-3.518H4.47V3.517H1.697V0h11.089c5.09 0 8.193 2.358 8.193 6.455 0 2.69-1.572 4.345-3.558 5.131 2.855.787 4.882 2.814 4.882 5.586 0 4.386-3.393 6.828-8.938 6.828H1.697" }) + ] + } + ); +}); + +export { SiBraintree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.cjs new file mode 100644 index 000000000..da2c47751 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBraintrust = React__namespace.forwardRef(function SiBraintrust2({ title = "Braintrust", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.002C0 5.372 5.374-.002 12.001-.002 18.626-.002 24 5.372 24 12.002c0 6.625-5.374 12-11.999 12h-9.98a2.01 2.01 0 0 1-2.013-2.013V12.01zm0 0" }) + ] + } + ); +}); + +exports.default = SiBraintrust; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.d.ts new file mode 100644 index 000000000..8f17a7fa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBraintrust: IconType; +export { SiBraintrust as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.mjs new file mode 100644 index 000000000..43cc65967 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBraintrust.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBraintrust = React.forwardRef(function SiBraintrust2({ title = "Braintrust", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.002C0 5.372 5.374-.002 12.001-.002 18.626-.002 24 5.372 24 12.002c0 6.625-5.374 12-11.999 12h-9.98a2.01 2.01 0 0 1-2.013-2.013V12.01zm0 0" }) + ] + } + ); +}); + +export { SiBraintrust as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.cjs new file mode 100644 index 000000000..2fe32f079 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0084FF"; +const SiBrandfetch = React__namespace.forwardRef(function SiBrandfetch2({ title = "Brandfetch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.226 5.842c0 1.491-.53 2.78-1.589 3.869-1.059 1.07-2.603 1.842-4.633 2.315 1.094.299 1.924.79 2.489 1.474.565.667.847 1.439.847 2.316 0 1.386-.441 2.588-1.324 3.605-.865 1.018-2.136 1.807-3.812 2.368-1.677.544-3.698.816-6.063.816-.883 0-1.589-.026-2.118-.079-.018.491-.23.86-.636 1.106-.406.245-.927.368-1.562.368s-1.077-.14-1.324-.421c-.23-.28-.326-.693-.291-1.237.159-2.456.468-5.026.927-7.71a75.521 75.521 0 0 1 1.747-7.816c.124-.439.37-.746.741-.921.371-.176.856-.263 1.457-.263 1.076 0 1.615.298 1.615.894 0 .246-.053.527-.16.842-.458 1.369-.917 3.228-1.376 5.58a65.729 65.729 0 0 0-.98 6.684c.848.07 1.536.105 2.066.105 2.47 0 4.28-.351 5.427-1.053 1.165-.72 1.747-1.631 1.747-2.737 0-.772-.335-1.42-1.006-1.947-.653-.526-1.756-.816-3.31-.868-.352-.018-.6-.106-.74-.264-.142-.157-.212-.412-.212-.763 0-.509.106-.92.317-1.237.212-.315.6-.482 1.165-.5 1.254-.035 2.383-.219 3.39-.552 1.023-.334 1.826-.798 2.409-1.395.582-.614.873-1.325.873-2.132 0-1.017-.503-1.815-1.509-2.394C16.792 3.298 15.248 3 13.165 3c-1.889 0-3.716.246-5.48.737-1.766.474-3.266 1.079-4.501 1.816-.565.333-1.042.5-1.43.5-.318 0-.565-.106-.742-.316-.158-.228-.238-.509-.238-.842 0-.439.088-.816.265-1.132.194-.316.644-.675 1.35-1.079 1.483-.842 3.221-1.5 5.216-1.973A26.377 26.377 0 0 1 13.721 0c3.195 0 5.577.535 7.148 1.605 1.571 1.07 2.357 2.483 2.357 4.237z" }) + ] + } + ); +}); + +exports.default = SiBrandfetch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.d.ts new file mode 100644 index 000000000..b7dc31d64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0084FF"; +declare const SiBrandfetch: IconType; +export { SiBrandfetch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.mjs new file mode 100644 index 000000000..68fd10aae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfetch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0084FF"; +const SiBrandfetch = React.forwardRef(function SiBrandfetch2({ title = "Brandfetch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.226 5.842c0 1.491-.53 2.78-1.589 3.869-1.059 1.07-2.603 1.842-4.633 2.315 1.094.299 1.924.79 2.489 1.474.565.667.847 1.439.847 2.316 0 1.386-.441 2.588-1.324 3.605-.865 1.018-2.136 1.807-3.812 2.368-1.677.544-3.698.816-6.063.816-.883 0-1.589-.026-2.118-.079-.018.491-.23.86-.636 1.106-.406.245-.927.368-1.562.368s-1.077-.14-1.324-.421c-.23-.28-.326-.693-.291-1.237.159-2.456.468-5.026.927-7.71a75.521 75.521 0 0 1 1.747-7.816c.124-.439.37-.746.741-.921.371-.176.856-.263 1.457-.263 1.076 0 1.615.298 1.615.894 0 .246-.053.527-.16.842-.458 1.369-.917 3.228-1.376 5.58a65.729 65.729 0 0 0-.98 6.684c.848.07 1.536.105 2.066.105 2.47 0 4.28-.351 5.427-1.053 1.165-.72 1.747-1.631 1.747-2.737 0-.772-.335-1.42-1.006-1.947-.653-.526-1.756-.816-3.31-.868-.352-.018-.6-.106-.74-.264-.142-.157-.212-.412-.212-.763 0-.509.106-.92.317-1.237.212-.315.6-.482 1.165-.5 1.254-.035 2.383-.219 3.39-.552 1.023-.334 1.826-.798 2.409-1.395.582-.614.873-1.325.873-2.132 0-1.017-.503-1.815-1.509-2.394C16.792 3.298 15.248 3 13.165 3c-1.889 0-3.716.246-5.48.737-1.766.474-3.266 1.079-4.501 1.816-.565.333-1.042.5-1.43.5-.318 0-.565-.106-.742-.316-.158-.228-.238-.509-.238-.842 0-.439.088-.816.265-1.132.194-.316.644-.675 1.35-1.079 1.483-.842 3.221-1.5 5.216-1.973A26.377 26.377 0 0 1 13.721 0c3.195 0 5.577.535 7.148 1.605 1.571 1.07 2.357 2.483 2.357 4.237z" }) + ] + } + ); +}); + +export { SiBrandfetch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.cjs new file mode 100644 index 000000000..8741e8cc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40D1F5"; +const SiBrandfolder = React__namespace.forwardRef(function SiBrandfolder2({ title = "Brandfolder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0,23.291h19.601v-2.978H2.98V3.689h16.626v10.911h-1.422l2.908,2.909L24,14.599 h-1.417V0.709H0V23.291z M16.148,13.356c-0.191-0.406-0.432-0.739-0.72-0.997c-0.287-0.258-0.599-0.454-0.933-0.583 c-0.337-0.132-0.641-0.217-0.916-0.254c0.251-0.034,0.496-0.134,0.735-0.296c0.241-0.161,0.455-0.364,0.647-0.609 c0.192-0.247,0.345-0.535,0.458-0.863c0.115-0.33,0.171-0.686,0.171-1.069c0-0.648-0.126-1.186-0.377-1.617 c-0.252-0.432-0.597-0.775-1.033-1.033c-0.436-0.258-0.948-0.44-1.536-0.547c-0.586-0.108-1.21-0.162-1.868-0.162 c-0.754,0-1.382,0.018-1.887,0.054C8.387,5.417,7.944,5.463,7.56,5.525v12.933c0.684,0.083,1.293,0.141,1.834,0.171 c0.539,0.03,1.082,0.044,1.634,0.044c0.718,0,1.404-0.054,2.057-0.162c0.652-0.107,1.227-0.304,1.723-0.592 c0.499-0.288,0.893-0.68,1.187-1.177c0.294-0.498,0.441-1.135,0.441-1.914C16.436,14.253,16.34,13.763,16.148,13.356z M10.165,7.321c0.91-0.111,1.873-0.054,2.301,0.304c0.38,0.317,0.607,0.599,0.607,1.42c0,0.751-0.357,1.195-0.608,1.356 c-0.251,0.161-0.59,0.368-1.403,0.368s-0.897,0-0.897,0V7.321z M13.194,16.001c-0.449,0.39-1.114,0.552-1.816,0.552 c-0.79,0-1.213-0.072-1.213-0.072v-3.737h1.132c0.711,0,1.438,0.126,1.832,0.464c0.509,0.437,0.611,0.895,0.611,1.505 C13.741,15.322,13.528,15.711,13.194,16.001z" }) + ] + } + ); +}); + +exports.default = SiBrandfolder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.d.ts new file mode 100644 index 000000000..103005e7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40D1F5"; +declare const SiBrandfolder: IconType; +export { SiBrandfolder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.mjs new file mode 100644 index 000000000..0b3f9c17b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrandfolder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40D1F5"; +const SiBrandfolder = React.forwardRef(function SiBrandfolder2({ title = "Brandfolder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0,23.291h19.601v-2.978H2.98V3.689h16.626v10.911h-1.422l2.908,2.909L24,14.599 h-1.417V0.709H0V23.291z M16.148,13.356c-0.191-0.406-0.432-0.739-0.72-0.997c-0.287-0.258-0.599-0.454-0.933-0.583 c-0.337-0.132-0.641-0.217-0.916-0.254c0.251-0.034,0.496-0.134,0.735-0.296c0.241-0.161,0.455-0.364,0.647-0.609 c0.192-0.247,0.345-0.535,0.458-0.863c0.115-0.33,0.171-0.686,0.171-1.069c0-0.648-0.126-1.186-0.377-1.617 c-0.252-0.432-0.597-0.775-1.033-1.033c-0.436-0.258-0.948-0.44-1.536-0.547c-0.586-0.108-1.21-0.162-1.868-0.162 c-0.754,0-1.382,0.018-1.887,0.054C8.387,5.417,7.944,5.463,7.56,5.525v12.933c0.684,0.083,1.293,0.141,1.834,0.171 c0.539,0.03,1.082,0.044,1.634,0.044c0.718,0,1.404-0.054,2.057-0.162c0.652-0.107,1.227-0.304,1.723-0.592 c0.499-0.288,0.893-0.68,1.187-1.177c0.294-0.498,0.441-1.135,0.441-1.914C16.436,14.253,16.34,13.763,16.148,13.356z M10.165,7.321c0.91-0.111,1.873-0.054,2.301,0.304c0.38,0.317,0.607,0.599,0.607,1.42c0,0.751-0.357,1.195-0.608,1.356 c-0.251,0.161-0.59,0.368-1.403,0.368s-0.897,0-0.897,0V7.321z M13.194,16.001c-0.449,0.39-1.114,0.552-1.816,0.552 c-0.79,0-1.213-0.072-1.213-0.072v-3.737h1.132c0.711,0,1.438,0.126,1.832,0.464c0.509,0.437,0.611,0.895,0.611,1.505 C13.741,15.322,13.528,15.711,13.194,16.001z" }) + ] + } + ); +}); + +export { SiBrandfolder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.cjs new file mode 100644 index 000000000..16ac0d3be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB542B"; +const SiBrave = React__namespace.forwardRef(function SiBrave2({ title = "Brave", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.68 0l2.096 2.38s1.84-.512 2.709.358c.868.87 1.584 1.638 1.584 1.638l-.562 1.381.715 2.047s-2.104 7.98-2.35 8.955c-.486 1.919-.818 2.66-2.198 3.633-1.38.972-3.884 2.66-4.293 2.916-.409.256-.92.692-1.38.692-.46 0-.97-.436-1.38-.692a185.796 185.796 0 01-4.293-2.916c-1.38-.973-1.712-1.714-2.197-3.633-.247-.975-2.351-8.955-2.351-8.955l.715-2.047-.562-1.381s.716-.768 1.585-1.638c.868-.87 2.708-.358 2.708-.358L8.321 0h7.36zm-3.679 14.936c-.14 0-1.038.317-1.758.69-.72.373-1.242.637-1.409.742-.167.104-.065.301.087.409.152.107 2.194 1.69 2.393 1.866.198.175.489.464.687.464.198 0 .49-.29.688-.464.198-.175 2.24-1.759 2.392-1.866.152-.108.254-.305.087-.41-.167-.104-.689-.368-1.41-.741-.72-.373-1.617-.69-1.757-.69zm0-11.278s-.409.001-1.022.206-1.278.46-1.584.46c-.307 0-2.581-.434-2.581-.434S4.119 7.152 4.119 7.849c0 .697.339.881.68 1.243l2.02 2.149c.192.203.59.511.356 1.066-.235.555-.58 1.26-.196 1.977.384.716 1.042 1.194 1.464 1.115.421-.08 1.412-.598 1.776-.834.364-.237 1.518-1.19 1.518-1.554 0-.365-1.193-1.02-1.413-1.168-.22-.15-1.226-.725-1.247-.95-.02-.227-.012-.293.284-.851.297-.559.831-1.304.742-1.8-.089-.495-.95-.753-1.565-.986-.615-.232-1.799-.671-1.947-.74-.148-.068-.11-.133.339-.175.448-.043 1.719-.212 2.292-.052.573.16 1.552.403 1.632.532.079.13.149.134.067.579-.081.445-.5 2.581-.541 2.96-.04.38-.12.63.288.724.409.094 1.097.256 1.333.256s.924-.162 1.333-.256c.408-.093.329-.344.288-.723-.04-.38-.46-2.516-.541-2.961-.082-.445-.012-.45.067-.579.08-.129 1.059-.372 1.632-.532.573-.16 1.845.009 2.292.052.449.042.487.107.339.175-.148.069-1.332.508-1.947.74-.615.233-1.476.49-1.565.986-.09.496.445 1.241.742 1.8.297.558.304.624.284.85-.02.226-1.026.802-1.247.95-.22.15-1.413.804-1.413 1.169 0 .364 1.154 1.317 1.518 1.554.364.236 1.355.755 1.776.834.422.079 1.08-.4 1.464-1.115.384-.716.039-1.422-.195-1.977-.235-.555.163-.863.355-1.066l2.02-2.149c.341-.362.68-.546.68-1.243 0-.697-2.695-3.96-2.695-3.96s-2.274.436-2.58.436c-.307 0-.972-.256-1.585-.461-.613-.205-1.022-.206-1.022-.206z" }) + ] + } + ); +}); + +exports.default = SiBrave; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.d.ts new file mode 100644 index 000000000..a24de1b18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB542B"; +declare const SiBrave: IconType; +export { SiBrave as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.mjs new file mode 100644 index 000000000..4540a2c0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrave.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB542B"; +const SiBrave = React.forwardRef(function SiBrave2({ title = "Brave", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.68 0l2.096 2.38s1.84-.512 2.709.358c.868.87 1.584 1.638 1.584 1.638l-.562 1.381.715 2.047s-2.104 7.98-2.35 8.955c-.486 1.919-.818 2.66-2.198 3.633-1.38.972-3.884 2.66-4.293 2.916-.409.256-.92.692-1.38.692-.46 0-.97-.436-1.38-.692a185.796 185.796 0 01-4.293-2.916c-1.38-.973-1.712-1.714-2.197-3.633-.247-.975-2.351-8.955-2.351-8.955l.715-2.047-.562-1.381s.716-.768 1.585-1.638c.868-.87 2.708-.358 2.708-.358L8.321 0h7.36zm-3.679 14.936c-.14 0-1.038.317-1.758.69-.72.373-1.242.637-1.409.742-.167.104-.065.301.087.409.152.107 2.194 1.69 2.393 1.866.198.175.489.464.687.464.198 0 .49-.29.688-.464.198-.175 2.24-1.759 2.392-1.866.152-.108.254-.305.087-.41-.167-.104-.689-.368-1.41-.741-.72-.373-1.617-.69-1.757-.69zm0-11.278s-.409.001-1.022.206-1.278.46-1.584.46c-.307 0-2.581-.434-2.581-.434S4.119 7.152 4.119 7.849c0 .697.339.881.68 1.243l2.02 2.149c.192.203.59.511.356 1.066-.235.555-.58 1.26-.196 1.977.384.716 1.042 1.194 1.464 1.115.421-.08 1.412-.598 1.776-.834.364-.237 1.518-1.19 1.518-1.554 0-.365-1.193-1.02-1.413-1.168-.22-.15-1.226-.725-1.247-.95-.02-.227-.012-.293.284-.851.297-.559.831-1.304.742-1.8-.089-.495-.95-.753-1.565-.986-.615-.232-1.799-.671-1.947-.74-.148-.068-.11-.133.339-.175.448-.043 1.719-.212 2.292-.052.573.16 1.552.403 1.632.532.079.13.149.134.067.579-.081.445-.5 2.581-.541 2.96-.04.38-.12.63.288.724.409.094 1.097.256 1.333.256s.924-.162 1.333-.256c.408-.093.329-.344.288-.723-.04-.38-.46-2.516-.541-2.961-.082-.445-.012-.45.067-.579.08-.129 1.059-.372 1.632-.532.573-.16 1.845.009 2.292.052.449.042.487.107.339.175-.148.069-1.332.508-1.947.74-.615.233-1.476.49-1.565.986-.09.496.445 1.241.742 1.8.297.558.304.624.284.85-.02.226-1.026.802-1.247.95-.22.15-1.413.804-1.413 1.169 0 .364 1.154 1.317 1.518 1.554.364.236 1.355.755 1.776.834.422.079 1.08-.4 1.464-1.115.384-.716.039-1.422-.195-1.977-.235-.555.163-.863.355-1.066l2.02-2.149c.341-.362.68-.546.68-1.243 0-.697-2.695-3.96-2.695-3.96s-2.274.436-2.58.436c-.307 0-.972-.256-1.585-.461-.613-.205-1.022-.206-1.022-.206z" }) + ] + } + ); +}); + +export { SiBrave as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.cjs new file mode 100644 index 000000000..222a47f6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003DAD"; +const SiBreaker = React__namespace.forwardRef(function SiBreaker2({ title = "Breaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.556,12.924c0.21,0,0.386,0.017,0.585,0.056c1.043,0.206,1.898,0.964,2.246,1.956 c0.101,0.319,0.234,0.797,0.319,1.125l0.111,0.433l0.446-0.009c3.552-0.075,6.456-2.965,6.456-6.546C23.72,4.513,19.195,0,12.281,0 C9.429,0.009,6.725,1.046,4.678,2.715c-2.683,2.2-4.397,5.543-4.397,9.286c0.002,0.96,0.118,1.926,0.334,2.818 c0.788,3.268,2.91,6.015,5.759,7.628c1.723,0.971,3.784,1.547,5.909,1.553c0.521,0,1.052-0.036,1.554-0.099 c3.126-0.405,5.873-2.012,7.765-4.339l0.124-0.152l-0.24-0.868l-0.463,0.122c-1.436,0.381-2.908,0.578-4.463,0.576 c-1.243,0-2.428-0.128-3.598-0.375c-1.054-0.212-1.911-0.979-2.248-1.98c-0.109-0.315-0.158-0.608-0.156-0.958 c-0.011-0.782,0.257-1.425,0.741-1.975C11.848,13.321,12.656,12.924,13.556,12.924z M12.281,1.125 c6.398,0,10.313,4.11,10.313,8.813c0,2.811-2.168,5.119-4.919,5.397c-0.073-0.261-0.152-0.536-0.219-0.746 C15.715,9.132,11.567,4.907,6.23,2.957C7.965,1.78,10.01,1.118,12.281,1.125z M1.405,12.001c0-3.283,1.455-6.227,3.756-8.223 c4.377,1.403,7.964,4.397,10.058,8.371c-0.272-0.12-0.559-0.212-0.859-0.272c-1.219-0.253-2.511-0.394-3.807-0.394 c-3.24,0.006-6.345,0.859-9.001,2.325C1.454,13.222,1.405,12.625,1.405,12.001z M12.729,19.967 c1.224,0.257,2.526,0.398,3.829,0.398c0.996,0,1.986-0.083,2.948-0.234c-1.519,1.352-3.418,2.282-5.519,2.614 c-0.799-0.938-1.493-1.95-2.072-3.032C12.174,19.822,12.446,19.908,12.729,19.967z M12.645,22.871 c-0.12,0.004-0.242,0.006-0.364,0.006c-1.825,0.006-3.486-0.424-4.994-1.209c0.433-1.907,1.172-3.675,2.171-5.277 c0.034,0.294,0.099,0.587,0.186,0.848C10.314,19.28,11.347,21.202,12.645,22.871z M10.453,13.207 c-1.954,2.19-3.43,4.913-4.176,7.864c-2.143-1.421-3.752-3.582-4.467-6.117c2.586-1.508,5.532-2.351,8.744-2.346 c0.18,0,0.358,0.002,0.536,0.008C10.858,12.79,10.644,12.987,10.453,13.207z" }) + ] + } + ); +}); + +exports.default = SiBreaker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.d.ts new file mode 100644 index 000000000..fda57bbeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003DAD"; +declare const SiBreaker: IconType; +export { SiBreaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.mjs new file mode 100644 index 000000000..db191628f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBreaker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003DAD"; +const SiBreaker = React.forwardRef(function SiBreaker2({ title = "Breaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.556,12.924c0.21,0,0.386,0.017,0.585,0.056c1.043,0.206,1.898,0.964,2.246,1.956 c0.101,0.319,0.234,0.797,0.319,1.125l0.111,0.433l0.446-0.009c3.552-0.075,6.456-2.965,6.456-6.546C23.72,4.513,19.195,0,12.281,0 C9.429,0.009,6.725,1.046,4.678,2.715c-2.683,2.2-4.397,5.543-4.397,9.286c0.002,0.96,0.118,1.926,0.334,2.818 c0.788,3.268,2.91,6.015,5.759,7.628c1.723,0.971,3.784,1.547,5.909,1.553c0.521,0,1.052-0.036,1.554-0.099 c3.126-0.405,5.873-2.012,7.765-4.339l0.124-0.152l-0.24-0.868l-0.463,0.122c-1.436,0.381-2.908,0.578-4.463,0.576 c-1.243,0-2.428-0.128-3.598-0.375c-1.054-0.212-1.911-0.979-2.248-1.98c-0.109-0.315-0.158-0.608-0.156-0.958 c-0.011-0.782,0.257-1.425,0.741-1.975C11.848,13.321,12.656,12.924,13.556,12.924z M12.281,1.125 c6.398,0,10.313,4.11,10.313,8.813c0,2.811-2.168,5.119-4.919,5.397c-0.073-0.261-0.152-0.536-0.219-0.746 C15.715,9.132,11.567,4.907,6.23,2.957C7.965,1.78,10.01,1.118,12.281,1.125z M1.405,12.001c0-3.283,1.455-6.227,3.756-8.223 c4.377,1.403,7.964,4.397,10.058,8.371c-0.272-0.12-0.559-0.212-0.859-0.272c-1.219-0.253-2.511-0.394-3.807-0.394 c-3.24,0.006-6.345,0.859-9.001,2.325C1.454,13.222,1.405,12.625,1.405,12.001z M12.729,19.967 c1.224,0.257,2.526,0.398,3.829,0.398c0.996,0,1.986-0.083,2.948-0.234c-1.519,1.352-3.418,2.282-5.519,2.614 c-0.799-0.938-1.493-1.95-2.072-3.032C12.174,19.822,12.446,19.908,12.729,19.967z M12.645,22.871 c-0.12,0.004-0.242,0.006-0.364,0.006c-1.825,0.006-3.486-0.424-4.994-1.209c0.433-1.907,1.172-3.675,2.171-5.277 c0.034,0.294,0.099,0.587,0.186,0.848C10.314,19.28,11.347,21.202,12.645,22.871z M10.453,13.207 c-1.954,2.19-3.43,4.913-4.176,7.864c-2.143-1.421-3.752-3.582-4.467-6.117c2.586-1.508,5.532-2.351,8.744-2.346 c0.18,0,0.358,0.002,0.536,0.008C10.858,12.79,10.644,12.987,10.453,13.207z" }) + ] + } + ); +}); + +export { SiBreaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.cjs new file mode 100644 index 000000000..03853a600 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A0033"; +const SiBrenntag = React__namespace.forwardRef(function SiBrenntag2({ title = "Brenntag", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.7305 12.01c-.768.959-1.899 1.8775-3.2745 2.421.828 1.02 1.246 2.156.9445 3.337-.2875 1.1275-1.3655 2.228-2.9 2.228H6.5v-5.999h7c3.86 0 7-3.1395 7-6.9985S17.36 0 13.5 0h-11v8.998h4V3.999h7c1.655 0 3 1.3445 3 2.9995s-1.345 2.9995-3 2.9995h-11V24h12c3.86 0 7-3.1395 7-6.9985 0-1.712-.4815-3.634-1.7695-4.9915" }) + ] + } + ); +}); + +exports.default = SiBrenntag; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.d.ts new file mode 100644 index 000000000..68f9cdda5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A0033"; +declare const SiBrenntag: IconType; +export { SiBrenntag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.mjs new file mode 100644 index 000000000..6973d9244 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrenntag.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A0033"; +const SiBrenntag = React.forwardRef(function SiBrenntag2({ title = "Brenntag", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.7305 12.01c-.768.959-1.899 1.8775-3.2745 2.421.828 1.02 1.246 2.156.9445 3.337-.2875 1.1275-1.3655 2.228-2.9 2.228H6.5v-5.999h7c3.86 0 7-3.1395 7-6.9985S17.36 0 13.5 0h-11v8.998h4V3.999h7c1.655 0 3 1.3445 3 2.9995s-1.345 2.9995-3 2.9995h-11V24h12c3.86 0 7-3.1395 7-6.9985 0-1.712-.4815-3.634-1.7695-4.9915" }) + ] + } + ); +}); + +export { SiBrenntag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.cjs new file mode 100644 index 000000000..e9018ab3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B996E"; +const SiBrevo = React__namespace.forwardRef(function SiBrevo2({ title = "Brevo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM7.2 4.8h5.747c2.34 0 3.895 1.406 3.895 3.516 0 1.022-.348 1.862-1.09 2.588C17.189 11.812 18 13.22 18 14.785c0 2.86-2.64 5.016-6.164 5.016H7.199v-15zm2.085 1.952v5.537h.07c.233-.432.858-.796 2.249-1.226 2.039-.659 3.037-1.52 3.037-2.655 0-.998-.766-1.656-1.924-1.656H9.285zm4.87 5.266c-.766.385-1.67.748-2.76 1.11-1.229.387-2.11 1.386-2.11 2.407v2.315h2.365c2.387 0 4.149-1.34 4.149-3.155 0-1.067-.625-2.087-1.645-2.677z" }) + ] + } + ); +}); + +exports.default = SiBrevo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.d.ts new file mode 100644 index 000000000..5fadf9731 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B996E"; +declare const SiBrevo: IconType; +export { SiBrevo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.mjs new file mode 100644 index 000000000..c935d732d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrevo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B996E"; +const SiBrevo = React.forwardRef(function SiBrevo2({ title = "Brevo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM7.2 4.8h5.747c2.34 0 3.895 1.406 3.895 3.516 0 1.022-.348 1.862-1.09 2.588C17.189 11.812 18 13.22 18 14.785c0 2.86-2.64 5.016-6.164 5.016H7.199v-15zm2.085 1.952v5.537h.07c.233-.432.858-.796 2.249-1.226 2.039-.659 3.037-1.52 3.037-2.655 0-.998-.766-1.656-1.924-1.656H9.285zm4.87 5.266c-.766.385-1.67.748-2.76 1.11-1.229.387-2.11 1.386-2.11 2.407v2.315h2.365c2.387 0 4.149-1.34 4.149-3.155 0-1.067-.625-2.087-1.645-2.677z" }) + ] + } + ); +}); + +export { SiBrevo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.cjs new file mode 100644 index 000000000..ef0c9ec69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiBrex = React__namespace.forwardRef(function SiBrex2({ title = "Brex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.69 2.319a3.868 3.868 0 0 0-3.108 1.547l-.759 1.007a1.658 1.658 0 0 1-1.313.656H0V21.68h5.296a3.87 3.87 0 0 0 3.108-1.547l.759-1.006a1.656 1.656 0 0 1 1.313-.657H24V2.319h-5.31Zm1.108 11.949h-5.66a3.87 3.87 0 0 0-3.108 1.547l-.759 1.007a1.658 1.658 0 0 1-1.313.656H4.202V9.731h5.661a3.868 3.868 0 0 0 3.107-1.547l.759-1.006a1.658 1.658 0 0 1 1.313-.657h4.771l-.015 7.747Z" }) + ] + } + ); +}); + +exports.default = SiBrex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.d.ts new file mode 100644 index 000000000..e83e11545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiBrex: IconType; +export { SiBrex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.mjs new file mode 100644 index 000000000..637f5f9a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBrex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiBrex = React.forwardRef(function SiBrex2({ title = "Brex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.69 2.319a3.868 3.868 0 0 0-3.108 1.547l-.759 1.007a1.658 1.658 0 0 1-1.313.656H0V21.68h5.296a3.87 3.87 0 0 0 3.108-1.547l.759-1.006a1.656 1.656 0 0 1 1.313-.657H24V2.319h-5.31Zm1.108 11.949h-5.66a3.87 3.87 0 0 0-3.108 1.547l-.759 1.007a1.658 1.658 0 0 1-1.313.656H4.202V9.731h5.661a3.868 3.868 0 0 0 3.107-1.547l.759-1.006a1.658 1.658 0 0 1 1.313-.657h4.771l-.015 7.747Z" }) + ] + } + ); +}); + +export { SiBrex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.cjs new file mode 100644 index 000000000..869d03791 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD54D"; +const SiBricks = React__namespace.forwardRef(function SiBricks2({ title = "Bricks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.578 0 .405.253v7.038a8.416 8.416 0 0 1 4.742-1.418c2.498 0 4.569.872 6.211 2.616 1.621 1.745 2.431 3.894 2.431 6.448 0 2.565-.816 4.714-2.448 6.447C17.277 23.128 15.212 24 12.725 24c-2.171 0-4.028-.776-5.569-2.329v1.907H2.633V.557L7.578 0Zm4.287 10.447c-1.193 0-2.189.405-2.988 1.215-.799.833-1.198 1.925-1.198 3.275 0 1.35.399 2.436 1.198 3.257.788.822 1.784 1.232 2.988 1.232 1.271 0 2.301-.427 3.088-1.282.777-.844 1.165-1.913 1.165-3.207 0-1.294-.394-2.369-1.182-3.224-.787-.844-1.811-1.266-3.071-1.266Z" }) + ] + } + ); +}); + +exports.default = SiBricks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.d.ts new file mode 100644 index 000000000..d4db4f455 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD54D"; +declare const SiBricks: IconType; +export { SiBricks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.mjs new file mode 100644 index 000000000..0c29f5d17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBricks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD54D"; +const SiBricks = React.forwardRef(function SiBricks2({ title = "Bricks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.578 0 .405.253v7.038a8.416 8.416 0 0 1 4.742-1.418c2.498 0 4.569.872 6.211 2.616 1.621 1.745 2.431 3.894 2.431 6.448 0 2.565-.816 4.714-2.448 6.447C17.277 23.128 15.212 24 12.725 24c-2.171 0-4.028-.776-5.569-2.329v1.907H2.633V.557L7.578 0Zm4.287 10.447c-1.193 0-2.189.405-2.988 1.215-.799.833-1.198 1.925-1.198 3.275 0 1.35.399 2.436 1.198 3.257.788.822 1.784 1.232 2.988 1.232 1.271 0 2.301-.427 3.088-1.282.777-.844 1.165-1.913 1.165-3.207 0-1.294-.394-2.369-1.182-3.224-.787-.844-1.811-1.266-3.071-1.266Z" }) + ] + } + ); +}); + +export { SiBricks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.cjs new file mode 100644 index 000000000..5b44b7f6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E5C99"; +const SiBritishairways = React__namespace.forwardRef(function SiBritishairways2({ title = "British Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.489 13.252c-.25.212-.605.444-1.241.767-1.347.72-2.198.983-2.198.983s-1.617-.234-4.207-1.007c0 0 1.306-.378 1.93-.581a40.11 40.11 0 0 0 1.958-.681c1.055-.396 1.73-.761 2.18-1.088.03-.022.058-.046.085-.068 0 0 .32.036.593.113.294.083.604.245.786.386.191.147.28.308.308.358a.681.681 0 0 1 .071.226s.014.085-.003.177a.579.579 0 0 1-.147.313zM24 12.196a.662.662 0 0 0-.08-.157 1.348 1.348 0 0 0-.197-.23 1.685 1.685 0 0 0-.227-.178c-.354-.232-.81-.362-1.215-.416-.627-.083-1.342-.07-1.411-.07-.23-.005-1.722.007-2.105.015-1.702.034-3.787.039-4.333.038-5.636.027-8.089-.094-10.82-.642C1.289 10.094 0 9.658 0 9.658c2.05-.073 14.004-.568 16.186-.627 1.427-.04 2.44-.048 3.253 0 .413.023.802.058 1.287.14a6.2 6.2 0 0 1 1.064.286c.486.18.893.442 1.096.707 0 0 .06.06.14.17.093.126.197.282.234.34.294.447.434.73.484.828.052.102.1.209.145.315.044.104.063.166.076.21.02.064.03.125.035.17Z" }) + ] + } + ); +}); + +exports.default = SiBritishairways; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.d.ts new file mode 100644 index 000000000..06aa06aa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E5C99"; +declare const SiBritishairways: IconType; +export { SiBritishairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.mjs new file mode 100644 index 000000000..50b7ed896 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBritishairways.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E5C99"; +const SiBritishairways = React.forwardRef(function SiBritishairways2({ title = "British Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.489 13.252c-.25.212-.605.444-1.241.767-1.347.72-2.198.983-2.198.983s-1.617-.234-4.207-1.007c0 0 1.306-.378 1.93-.581a40.11 40.11 0 0 0 1.958-.681c1.055-.396 1.73-.761 2.18-1.088.03-.022.058-.046.085-.068 0 0 .32.036.593.113.294.083.604.245.786.386.191.147.28.308.308.358a.681.681 0 0 1 .071.226s.014.085-.003.177a.579.579 0 0 1-.147.313zM24 12.196a.662.662 0 0 0-.08-.157 1.348 1.348 0 0 0-.197-.23 1.685 1.685 0 0 0-.227-.178c-.354-.232-.81-.362-1.215-.416-.627-.083-1.342-.07-1.411-.07-.23-.005-1.722.007-2.105.015-1.702.034-3.787.039-4.333.038-5.636.027-8.089-.094-10.82-.642C1.289 10.094 0 9.658 0 9.658c2.05-.073 14.004-.568 16.186-.627 1.427-.04 2.44-.048 3.253 0 .413.023.802.058 1.287.14a6.2 6.2 0 0 1 1.064.286c.486.18.893.442 1.096.707 0 0 .06.06.14.17.093.126.197.282.234.34.294.447.434.73.484.828.052.102.1.209.145.315.044.104.063.166.076.21.02.064.03.125.035.17Z" }) + ] + } + ); +}); + +export { SiBritishairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.cjs new file mode 100644 index 000000000..075fe7722 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E31837"; +const SiBroadcom = React__namespace.forwardRef(function SiBroadcom2({ title = "Broadcom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.628 0 12 5.372 12 12a12 12 0 0 1-.56 3.63 13.641 13.641 0 0 0-.867-.388c-1.372-.546-2.629-.363-3.888.4 0 0-.459.28-.597.366-.586.37-1.14.717-1.672.717-.508 0-1.007-.135-1.218-1.117-.33-1.533-1.135-5.298-1.486-7.162-.206-1.097-.319-1.688-.436-2.088-.208-.706-.586-1.09-1.124-1.15 0 0-.084-.013-.152-.013-.068 0-.162.014-.162.014-.531.064-.907.447-1.114 1.15-.117.4-.23.99-.436 2.087-.351 1.864-1.156 5.63-1.486 7.162-.21.982-.71 1.117-1.218 1.117-.531 0-1.086-.348-1.672-.717-.138-.086-.597-.366-.597-.366-1.259-.763-2.516-.946-3.888-.4-.301.12-.586.251-.867.387A11.995 11.995 0 0 1 0 12C0 5.372 5.372 0 12 0m8.375 16.976c-.453.152-.855.42-1.256.672-.756.475-1.613 1.014-2.704 1.014-1.614 0-2.749-.964-3.112-2.647C13.023 14.712 12 9.793 12 9.793a496.28 496.28 0 0 1-1.303 6.222c-.362 1.683-1.497 2.647-3.112 2.647-1.09 0-1.946-.539-2.703-1.014-.401-.252-.804-.52-1.256-.672a2.319 2.319 0 0 0-1.414-.01c-.33.097-.644.234-.951.386C3.227 21.292 7.207 24 11.91 24s8.863-2.708 10.83-6.648a5.958 5.958 0 0 0-.95-.386 2.322 2.322 0 0 0-1.415.01" }) + ] + } + ); +}); + +exports.default = SiBroadcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.d.ts new file mode 100644 index 000000000..044d08eea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E31837"; +declare const SiBroadcom: IconType; +export { SiBroadcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.mjs new file mode 100644 index 000000000..79de8f3f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBroadcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E31837"; +const SiBroadcom = React.forwardRef(function SiBroadcom2({ title = "Broadcom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.628 0 12 5.372 12 12a12 12 0 0 1-.56 3.63 13.641 13.641 0 0 0-.867-.388c-1.372-.546-2.629-.363-3.888.4 0 0-.459.28-.597.366-.586.37-1.14.717-1.672.717-.508 0-1.007-.135-1.218-1.117-.33-1.533-1.135-5.298-1.486-7.162-.206-1.097-.319-1.688-.436-2.088-.208-.706-.586-1.09-1.124-1.15 0 0-.084-.013-.152-.013-.068 0-.162.014-.162.014-.531.064-.907.447-1.114 1.15-.117.4-.23.99-.436 2.087-.351 1.864-1.156 5.63-1.486 7.162-.21.982-.71 1.117-1.218 1.117-.531 0-1.086-.348-1.672-.717-.138-.086-.597-.366-.597-.366-1.259-.763-2.516-.946-3.888-.4-.301.12-.586.251-.867.387A11.995 11.995 0 0 1 0 12C0 5.372 5.372 0 12 0m8.375 16.976c-.453.152-.855.42-1.256.672-.756.475-1.613 1.014-2.704 1.014-1.614 0-2.749-.964-3.112-2.647C13.023 14.712 12 9.793 12 9.793a496.28 496.28 0 0 1-1.303 6.222c-.362 1.683-1.497 2.647-3.112 2.647-1.09 0-1.946-.539-2.703-1.014-.401-.252-.804-.52-1.256-.672a2.319 2.319 0 0 0-1.414-.01c-.33.097-.644.234-.951.386C3.227 21.292 7.207 24 11.91 24s8.863-2.708 10.83-6.648a5.958 5.958 0 0 0-.95-.386 2.322 2.322 0 0 0-1.415.01" }) + ] + } + ); +}); + +export { SiBroadcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.cjs new file mode 100644 index 000000000..314a425e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4AA41"; +const SiBruno = React__namespace.forwardRef(function SiBruno2({ title = "Bruno", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.394 9.583s-.742.511-1.13.275c-.387-.236-.51-.742-.274-1.129.236-.388.742-.511 1.129-.275.388.236.275 1.129.275 1.129m1.48 3.245-.308.82.582.24c.04-.224.254-.372.477-.332.224.041.372.254.332.478-.093.515-.638.813-1.122.613l-.95-.391a.41.41 0 0 1-.228-.524l.448-1.193c.12-.32.426-.533.769-.533h2.525l.239.036c.076.023.148.057.214.101a.817.817 0 0 1 .303.363l.476 1.12c.083.197.002.425-.187.524l-.896.471c-.505.266-1.121-.053-1.196-.62a.411.411 0 0 1 .353-.461.411.411 0 0 1 .461.353l.56-.294-.327-.771zM9.353 17.98c-.959-.514-2.183-1.54-1.961-3.22.029-.225.236-.383.461-.354.225.03.383.236.353.461-.167 1.272.822 2.009 1.546 2.395.348.185.771.151 1.081-.092l.903-.708v-1.045c0-.226.184-.41.411-.41s.411.184.411.41v1.045l.903.708c.19.15.423.22.655.209a.45.45 0 0 1 .074-.019.42.42 0 0 1 .093-.003c.089-.02.176-.051.259-.095.724-.386 1.713-1.123 1.546-2.395a.411.411 0 0 1 .353-.461c.225-.029.432.129.461.354.223 1.688-1.013 2.716-1.974 3.227-.072.038-.145.071-.22.099.148 1.424-.14 2.562-.449 3.24-.169.37-.355.617-.49.732-.194.167-.517.305-.933.366-.531.078-1.227.039-1.945-.182-.576-.177-.973-.686-1.208-1.343-.362-1.009-.352-2.368-.33-2.919m4.54.213a1.81 1.81 0 0 1-.939-.376l-.807-.633-.807.633c-.341.268-.758.397-1.173.384-.012.453-.001 1.219.15 1.922.072.333.174.652.329.908.122.2.275.361.486.425.586.18 1.152.218 1.585.155.227-.033.412-.086.518-.176.115-.099.259-.363.395-.744.213-.597.367-1.46.263-2.498m-8.683-.955-.191.402c-.384.81-1.475.955-2.053.27-.81-.961-1.948-2.505-2.548-4.068-.427-1.115-.576-2.241-.213-3.198C2.894 3.559 6.247 2.969 6.98 2.928c1.34-.865 5.583-2.807 10.424.342.795-.051 4.042.203 6.424 7.252.325.961.162 2.081-.263 3.186-.599 1.557-1.709 3.088-2.5 4.046-.574.695-1.675.553-2.061-.262l-.133-.28c-.219.369-.524.832-.901 1.281-.57.679-1.306 1.32-2.154 1.598a.412.412 0 0 1-.519-.263.4114.4114 0 0 1 .263-.518c.705-.231 1.306-.78 1.781-1.345.556-.662.938-1.355 1.097-1.666l-.245-.518c-.126-.264-.154-.56-.078-.842.246-.924.981-4.015.071-6.043a.4105.4105 0 1 1 .749-.336c.993 2.212.243 5.583-.026 6.591a.405.405 0 0 0 .026.278l.811 1.712c.129.27.494.32.685.089.748-.904 1.801-2.346 2.367-3.817.351-.912.52-1.834.252-2.628-2.447-7.241-5.667-6.687-5.667-6.687a.416.416 0 0 1-.309-.061C12.48.972 8.456 2.917 7.339 3.676a.41.41 0 0 1-.252.07S3.739 3.649.973 10.935c-.297.783-.137 1.701.213 2.612.565 1.475 1.644 2.927 2.408 3.833.192.228.555.177.683-.092l.816-1.723a.4.4 0 0 0 .027-.278c-.269-1.008-1.02-4.38-.027-6.592a.4113.4113 0 0 1 .543-.206c.207.093.3.336.207.543-.911 2.028-.176 5.119.071 6.043.075.282.047.578-.078.842l-.203.427c.117.226 1.249 2.351 2.958 2.911.216.071.334.303.263.519a.4115.4115 0 0 1-.519.262c-1.484-.487-2.606-1.983-3.125-2.798m10.247-7.655s-.114-.893.274-1.129a.821.821 0 0 1 1.129.275c.236.387.113.893-.274 1.129-.388.236-1.129-.275-1.129-.275" }) + ] + } + ); +}); + +exports.default = SiBruno; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.d.ts new file mode 100644 index 000000000..2b30ca0c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4AA41"; +declare const SiBruno: IconType; +export { SiBruno as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.mjs new file mode 100644 index 000000000..1fe40a4d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBruno.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4AA41"; +const SiBruno = React.forwardRef(function SiBruno2({ title = "Bruno", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.394 9.583s-.742.511-1.13.275c-.387-.236-.51-.742-.274-1.129.236-.388.742-.511 1.129-.275.388.236.275 1.129.275 1.129m1.48 3.245-.308.82.582.24c.04-.224.254-.372.477-.332.224.041.372.254.332.478-.093.515-.638.813-1.122.613l-.95-.391a.41.41 0 0 1-.228-.524l.448-1.193c.12-.32.426-.533.769-.533h2.525l.239.036c.076.023.148.057.214.101a.817.817 0 0 1 .303.363l.476 1.12c.083.197.002.425-.187.524l-.896.471c-.505.266-1.121-.053-1.196-.62a.411.411 0 0 1 .353-.461.411.411 0 0 1 .461.353l.56-.294-.327-.771zM9.353 17.98c-.959-.514-2.183-1.54-1.961-3.22.029-.225.236-.383.461-.354.225.03.383.236.353.461-.167 1.272.822 2.009 1.546 2.395.348.185.771.151 1.081-.092l.903-.708v-1.045c0-.226.184-.41.411-.41s.411.184.411.41v1.045l.903.708c.19.15.423.22.655.209a.45.45 0 0 1 .074-.019.42.42 0 0 1 .093-.003c.089-.02.176-.051.259-.095.724-.386 1.713-1.123 1.546-2.395a.411.411 0 0 1 .353-.461c.225-.029.432.129.461.354.223 1.688-1.013 2.716-1.974 3.227-.072.038-.145.071-.22.099.148 1.424-.14 2.562-.449 3.24-.169.37-.355.617-.49.732-.194.167-.517.305-.933.366-.531.078-1.227.039-1.945-.182-.576-.177-.973-.686-1.208-1.343-.362-1.009-.352-2.368-.33-2.919m4.54.213a1.81 1.81 0 0 1-.939-.376l-.807-.633-.807.633c-.341.268-.758.397-1.173.384-.012.453-.001 1.219.15 1.922.072.333.174.652.329.908.122.2.275.361.486.425.586.18 1.152.218 1.585.155.227-.033.412-.086.518-.176.115-.099.259-.363.395-.744.213-.597.367-1.46.263-2.498m-8.683-.955-.191.402c-.384.81-1.475.955-2.053.27-.81-.961-1.948-2.505-2.548-4.068-.427-1.115-.576-2.241-.213-3.198C2.894 3.559 6.247 2.969 6.98 2.928c1.34-.865 5.583-2.807 10.424.342.795-.051 4.042.203 6.424 7.252.325.961.162 2.081-.263 3.186-.599 1.557-1.709 3.088-2.5 4.046-.574.695-1.675.553-2.061-.262l-.133-.28c-.219.369-.524.832-.901 1.281-.57.679-1.306 1.32-2.154 1.598a.412.412 0 0 1-.519-.263.4114.4114 0 0 1 .263-.518c.705-.231 1.306-.78 1.781-1.345.556-.662.938-1.355 1.097-1.666l-.245-.518c-.126-.264-.154-.56-.078-.842.246-.924.981-4.015.071-6.043a.4105.4105 0 1 1 .749-.336c.993 2.212.243 5.583-.026 6.591a.405.405 0 0 0 .026.278l.811 1.712c.129.27.494.32.685.089.748-.904 1.801-2.346 2.367-3.817.351-.912.52-1.834.252-2.628-2.447-7.241-5.667-6.687-5.667-6.687a.416.416 0 0 1-.309-.061C12.48.972 8.456 2.917 7.339 3.676a.41.41 0 0 1-.252.07S3.739 3.649.973 10.935c-.297.783-.137 1.701.213 2.612.565 1.475 1.644 2.927 2.408 3.833.192.228.555.177.683-.092l.816-1.723a.4.4 0 0 0 .027-.278c-.269-1.008-1.02-4.38-.027-6.592a.4113.4113 0 0 1 .543-.206c.207.093.3.336.207.543-.911 2.028-.176 5.119.071 6.043.075.282.047.578-.078.842l-.203.427c.117.226 1.249 2.351 2.958 2.911.216.071.334.303.263.519a.4115.4115 0 0 1-.519.262c-1.484-.487-2.606-1.983-3.125-2.798m10.247-7.655s-.114-.893.274-1.129a.821.821 0 0 1 1.129.275c.236.387.113.893-.274 1.129-.388.236-1.129-.275-1.129-.275" }) + ] + } + ); +}); + +export { SiBruno as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.cjs new file mode 100644 index 000000000..e25e5655c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AB2B28"; +const SiBsd = React__namespace.forwardRef(function SiBsd2({ title = "BSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.725 6.664C5.6 6.91 6.353 7.684 6.6 8.556c.27.95-.032 1.905-.671 2.633.783.432 1.44 1.083 1.704 1.956.244.807.185 1.739-.224 2.483-.446.812-1.3 1.457-2.203 1.65-.496.106-1.02.07-1.524.07H.602c-.393 0-.602-.28-.602-.638V9.476C0 5.81 3.889 6.428 4.725 6.664zM1.051 9.63v1.367h3.228c1.258 0 1.461-1.761 1.285-2.272-.184-.533-.687-.893-1.2-1.056-.426-.097-3.313-.784-3.313 1.961zm0 2.357v4.297c0 .116-.006.099.116.099H3.57c.67 0 1.364.022 1.98-.284.782-.387 1.24-1.422 1.158-2.263-.084-.849-.667-1.43-1.44-1.72-.387-.147-.927-.129-1.339-.129H1.05zm14.791-4.77c0-.47.28-.706.854-.706h2.916c2.9 0 4.388 2.797 4.388 5.492 0 2.754-1.797 5.404-4.683 5.404h-2.856c-.471 0-.619-.088-.619-.603V7.218zm1.09.369v8.746h2.311c2.342 0 3.594-2.15 3.594-4.329 0-2.238-1.134-4.417-3.387-4.417h-2.518zm-5.506.017c-.948 0-1.824.776-1.824 1.796 0 .918 1.235 1.45 2.456 2.11 1.292.704 2.67 1.408 2.67 2.902 0 2.054-1.536 3.116-3.518 3.116a4.479 4.479 0 0 1-2.47-.718c-.258-.173-.388-.388-.388-.632 0-.33.159-.488.488-.488.159 0 .33.057.504.172.56.345 1.277.546 1.91.546 1.25 0 2.311-.546 2.311-1.925 0-.861-1.033-1.407-2.153-1.996-1.408-.732-2.988-1.536-2.988-3.03 0-1.882 1.436-2.973 3.232-2.973.775 0 1.622.215 2.441.66a.767.767 0 0 1 .402.661c0 .287-.201.56-.502.56-.173 0-.345-.129-.546-.258-.46-.287-1.279-.503-2.025-.503z" }) + ] + } + ); +}); + +exports.default = SiBsd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.d.ts new file mode 100644 index 000000000..f050c4be7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AB2B28"; +declare const SiBsd: IconType; +export { SiBsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.mjs new file mode 100644 index 000000000..a63e8c2bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBsd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AB2B28"; +const SiBsd = React.forwardRef(function SiBsd2({ title = "BSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.725 6.664C5.6 6.91 6.353 7.684 6.6 8.556c.27.95-.032 1.905-.671 2.633.783.432 1.44 1.083 1.704 1.956.244.807.185 1.739-.224 2.483-.446.812-1.3 1.457-2.203 1.65-.496.106-1.02.07-1.524.07H.602c-.393 0-.602-.28-.602-.638V9.476C0 5.81 3.889 6.428 4.725 6.664zM1.051 9.63v1.367h3.228c1.258 0 1.461-1.761 1.285-2.272-.184-.533-.687-.893-1.2-1.056-.426-.097-3.313-.784-3.313 1.961zm0 2.357v4.297c0 .116-.006.099.116.099H3.57c.67 0 1.364.022 1.98-.284.782-.387 1.24-1.422 1.158-2.263-.084-.849-.667-1.43-1.44-1.72-.387-.147-.927-.129-1.339-.129H1.05zm14.791-4.77c0-.47.28-.706.854-.706h2.916c2.9 0 4.388 2.797 4.388 5.492 0 2.754-1.797 5.404-4.683 5.404h-2.856c-.471 0-.619-.088-.619-.603V7.218zm1.09.369v8.746h2.311c2.342 0 3.594-2.15 3.594-4.329 0-2.238-1.134-4.417-3.387-4.417h-2.518zm-5.506.017c-.948 0-1.824.776-1.824 1.796 0 .918 1.235 1.45 2.456 2.11 1.292.704 2.67 1.408 2.67 2.902 0 2.054-1.536 3.116-3.518 3.116a4.479 4.479 0 0 1-2.47-.718c-.258-.173-.388-.388-.388-.632 0-.33.159-.488.488-.488.159 0 .33.057.504.172.56.345 1.277.546 1.91.546 1.25 0 2.311-.546 2.311-1.925 0-.861-1.033-1.407-2.153-1.996-1.408-.732-2.988-1.536-2.988-3.03 0-1.882 1.436-2.973 3.232-2.973.775 0 1.622.215 2.441.66a.767.767 0 0 1 .402.661c0 .287-.201.56-.502.56-.173 0-.345-.129-.546-.258-.46-.287-1.279-.503-2.025-.503z" }) + ] + } + ); +}); + +export { SiBsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.cjs new file mode 100644 index 000000000..9ab429ddc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E2E2E"; +const SiBspwm = React__namespace.forwardRef(function SiBspwm2({ title = "bspwm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.814 8.437c-.02-.02-.025-.076-.025-.166v-.895c0-.076.005-.12.02-.136.01-.015.055-.025.126-.025h.683c.433 0 .654.211.654.629 0 .422-.221.628-.654.628H5.93c-.06 0-.101-.01-.116-.035zm.146 1.795h.709a.714.714 0 0 0 .502-.176c.131-.116.201-.292.201-.528 0-.231-.065-.402-.196-.513a.762.762 0 0 0-.507-.166h-.75c-.055 0-.09.01-.105.03-.02.02-.025.076-.025.156v1.076c0 .05.01.086.03.1.02.016.065.02.14.02zm11.392-1.61h.492c.211 0 .372-.065.483-.2.11-.136.17-.322.17-.553 0-.433-.22-.654-.653-.654h-.492c-.076 0-.121.01-.136.02-.02.01-.025.045-.025.1v1.082c0 .1.005.155.02.176.015.02.06.03.14.03zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-8.041-4.9c0 .06.005.09.015.1.01.01.04.015.1.015h.262c.08 0 .13.01.15.025.016.015.026.056.026.12v2.715c0 .031.005.051.005.061 0 .065-.035.096-.1.096h-.358c-.05 0-.075.01-.085.02-.01.01-.015.045-.015.105v.1c0 .071.005.116.015.132.01.015.045.02.105.02h1.64c.06 0 .095-.005.105-.02.01-.01.02-.05.02-.121v-.161c0-.055-.035-.085-.095-.085-.015 0-.036.005-.066.005-.03.005-.055.005-.07.005h-.261c-.076 0-.121-.005-.136-.015-.02-.01-.025-.046-.025-.106V9.1c0-.071.03-.106.1-.106.01 0 .03.005.06.005h.493c.463 0 .81-.1 1.05-.307.237-.206.358-.483.358-.824 0-.332-.12-.583-.352-.764-.231-.176-.583-.267-1.056-.267h-1.649c-.02 0-.04 0-.07-.005-.03 0-.056-.005-.066-.005-.07 0-.1.03-.1.09V7.1zm-5.47 3.443c0 .035.005.06.025.07.015.016.05.02.106.02h.136c.03 0 .06 0 .08-.004a.12.12 0 0 0 .056-.03c.01-.015.02-.03.03-.04.005-.01.015-.026.025-.051a.335.335 0 0 1 .03-.06c.035-.066.06-.1.075-.1.01 0 .04.02.096.055.236.19.538.28.905.28.432 0 .784-.1 1.055-.3a.984.984 0 0 0 .403-.83 1.14 1.14 0 0 0-.126-.543.885.885 0 0 0-.317-.347 2.183 2.183 0 0 0-.437-.201 5.763 5.763 0 0 0-.478-.146 3.673 3.673 0 0 1-.432-.136.816.816 0 0 1-.322-.211.499.499 0 0 1-.12-.342c0-.15.06-.266.18-.352.121-.085.302-.13.544-.13.206 0 .397.06.578.176a.87.87 0 0 1 .362.472c0 .015.005.05.01.106a.354.354 0 0 0 .03.126c.01.03.035.045.07.045h.186c.05 0 .08-.01.096-.035a.2.2 0 0 0 .025-.111v-.976a.17.17 0 0 0-.02-.09c-.01-.01-.04-.02-.086-.02h-.1a.45.45 0 0 0-.151.015c-.025.01-.05.035-.076.075l-.05.08c-.04.061-.065.086-.08.086-.01 0-.045-.02-.106-.07a1.333 1.333 0 0 0-.79-.236c-.361 0-.658.085-.899.256-.241.171-.357.422-.357.754 0 .201.04.367.12.503a.8.8 0 0 0 .318.317c.13.07.27.13.432.18.156.05.312.096.472.136.156.04.297.091.428.141.13.056.236.13.316.231.08.101.126.227.126.372a.6.6 0 0 1-.206.468c-.136.12-.352.181-.648.181a1.12 1.12 0 0 1-.694-.221 1.014 1.014 0 0 1-.402-.548.395.395 0 0 1-.02-.11c-.006-.051-.016-.086-.036-.101a.25.25 0 0 0-.11-.02h-.136c-.05 0-.08.005-.096.015-.015.01-.02.03-.02.06v.045c0 .02.005.04.005.05v.936c0 .02-.005.04-.005.06v.05zm-5.932-.065c0 .055.005.09.025.11.015.02.046.026.086.026h.065c.03 0 .06-.005.08-.005H6.72c.427 0 .769-.086 1.025-.257.252-.17.383-.437.383-.799a.772.772 0 0 0-.262-.609c-.176-.15-.417-.246-.724-.291.553-.11.835-.407.835-.885 0-.312-.126-.543-.377-.699-.252-.15-.578-.231-.98-.231H4.707c-.025 0-.04-.005-.05-.005-.04 0-.07.01-.08.03-.016.02-.02.055-.02.11v.167c0 .04.004.06.014.065.01.01.04.01.09.01h.378c.03 0 .045.01.055.02.01.01.015.04.015.08v2.695c0 .11-.01.176-.03.197-.02.02-.08.025-.186.025h-.241c-.046 0-.07.01-.08.02-.01.015-.016.05-.016.11v.116zm6.52 3.2c0-.05-.006-.08-.016-.09a.231.231 0 0 0-.097-.013h-.838c-.06 0-.094.007-.104.02-.013.013-.017.054-.017.12v.105c0 .05.007.08.02.09.014.013.05.017.114.017a.76.76 0 0 1 .155.01c.023.007.036.017.036.037 0 .01-.013.05-.036.124l-.232.663c-.04.114-.09.255-.144.423-.04.117-.067.174-.074.174-.01 0-.033-.074-.073-.225a9.152 9.152 0 0 0-.1-.331l-.252-.764a.258.258 0 0 1-.017-.078c0-.02.023-.033.077-.033h.077c.05 0 .08-.004.094-.013.013-.007.02-.03.02-.071v-.188c0-.033-.007-.053-.02-.067-.013-.013-.037-.02-.064-.02-.013 0-.03.003-.053.003-.027.004-.044.004-.057.004h-.862c-.02 0-.03-.004-.037-.004-.033 0-.053.007-.063.02-.014.014-.017.047-.017.094v.1c0 .014-.003.028-.003.044v.037c0 .024.003.04.013.047.01.01.03.014.064.014h.11c.054 0 .087.017.1.05l.028.07a.27.27 0 0 1 .016.067c0 .014-.01.047-.03.094l-.291.684c-.014.037-.037.09-.067.16-.034.075-.05.118-.057.132-.037.08-.06.12-.067.12-.014 0-.03-.023-.044-.07a3.822 3.822 0 0 1-.07-.198c-.027-.08-.044-.14-.054-.174l-.265-.754-.02-.054-.023-.05a.066.066 0 0 1-.007-.034c0-.027.037-.043.117-.043h.135c.036 0 .06-.004.067-.014a.196.196 0 0 0 .013-.087v-.16c0-.038-.007-.061-.017-.074a.071.071 0 0 0-.053-.02c-.007 0-.02.003-.04.003H6.978c-.024 0-.04-.004-.047-.004-.054 0-.077.03-.077.084v.178c0 .047.003.074.016.08.01.01.044.014.101.014h.1a.34.34 0 0 1 .068.006c.016.004.03.01.043.02.01.014.017.02.02.027a.3.3 0 0 1 .017.047c.007.024.01.04.017.05l.697 1.921.013.044c.007.02.01.03.014.037 0 .006.007.013.017.023a.04.04 0 0 0 .033.017.27.27 0 0 0 .057.003h.15c.02 0 .041 0 .058-.003.013 0 .027-.004.04-.004a.06.06 0 0 0 .034-.013.07.07 0 0 1 .02-.014c.006-.003.01-.01.016-.023.007-.01.01-.017.014-.024l.013-.033c.007-.017.01-.03.017-.04l.355-.845c.014-.033.067-.174.168-.422.034-.08.054-.124.067-.124.013 0 .037.054.064.154a4.3 4.3 0 0 0 .144.432l.308.815.017.05a.157.157 0 0 0 .016.047l.024.023a.05.05 0 0 0 .044.02c.016.004.04.004.07.004h.12c.03 0 .058 0 .078-.007a.158.158 0 0 0 .047-.013c.013-.003.023-.013.033-.027l.02-.037a.268.268 0 0 0 .017-.05c.007-.027.01-.047.017-.06l.647-1.87a.841.841 0 0 1 .027-.084.131.131 0 0 1 .036-.03.253.253 0 0 1 .104-.017h.141a.16.16 0 0 0 .07-.01c.007-.007.014-.024.014-.05v-.188zm5.671 2.126c0-.027-.006-.044-.016-.054a.173.173 0 0 0-.077-.013h-.175c-.053 0-.087-.007-.1-.023-.017-.017-.024-.047-.024-.088v-.107l-.057-1.435c0-.013-.003-.026-.003-.046v-.04c0-.03.007-.05.02-.058a.29.29 0 0 1 .104-.013h.094c.064 0 .1-.003.114-.017.013-.01.02-.043.02-.104v-.124c0-.043-.007-.073-.02-.087a.084.084 0 0 0-.06-.023c-.01 0-.027.003-.048.003h-.864a.297.297 0 0 0-.087.01.103.103 0 0 0-.054.037c-.013.017-.02.034-.027.047a.322.322 0 0 0-.023.063.48.48 0 0 1-.02.07l-.279.758c-.073.198-.13.362-.164.496-.033.125-.06.185-.08.185-.02 0-.044-.064-.074-.198a8.58 8.58 0 0 0-.147-.51l-.275-.878a.165.165 0 0 0-.04-.067.194.194 0 0 0-.081-.013h-1.002c-.023 0-.037-.003-.044-.003-.03 0-.05.006-.063.02-.014.013-.017.043-.017.083v.165c0 .04.003.067.017.073.01.01.04.014.093.014h.155c.04 0 .07.006.083.013.014.01.02.027.02.047l-.006.097-.07 1.475v.084c0 .033-.007.06-.02.074-.014.013-.04.02-.081.02h-.168c-.06 0-.097.006-.107.016-.013.01-.017.04-.017.094v.154c0 .037.004.06.017.074.01.014.027.017.054.017h.037c.02 0 .037-.003.05-.003h.905c.04 0 .064-.004.077-.014.01-.006.017-.027.017-.053v-.215c0-.03-.004-.05-.01-.057a.06.06 0 0 0-.04-.013h-.205c-.054 0-.09-.004-.107-.017-.02-.013-.027-.033-.027-.064 0-.01 0-.03.003-.057a.46.46 0 0 0 .007-.06l.027-.73.003-.202c0-.134.003-.251.01-.352.003-.1.01-.15.02-.15.014 0 .044.067.084.2.037.121.094.302.171.537l.389 1.186c.013.047.03.074.047.081.013.01.047.013.1.013h.252c.026 0 .05-.003.07-.016a.119.119 0 0 0 .034-.04.287.287 0 0 0 .02-.064c.006-.027.01-.047.016-.06l.41-1.214c.02-.057.053-.181.103-.369.034-.134.057-.204.07-.204.007 0 .014.043.02.124.004.084.007.184.01.302l.004.174.027.784c0 .02 0 .04.003.067 0 .027.004.044.004.05 0 .03-.01.05-.027.064-.017.014-.047.017-.094.017h-.16c-.051 0-.081.007-.095.017-.013.01-.017.03-.017.063v.198c0 .034.004.054.014.064.01.01.027.013.05.013h.037c.017 0 .03-.003.044-.003h1.132c.054 0 .084-.004.098-.014.01-.006.016-.033.016-.077v-.194zM21.128 12a.173.173 0 0 0-.174-.174h-5.975v-8.78a.173.173 0 1 0-.347 0v8.78H9.294v-8.78a.173.173 0 1 0-.348 0v8.78h-5.9a.174.174 0 0 0 0 .348h8.78v8.78a.173.173 0 1 0 .348 0v-8.78h8.78a.173.173 0 0 0 .173-.174z" }) + ] + } + ); +}); + +exports.default = SiBspwm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.d.ts new file mode 100644 index 000000000..ad5ac7d43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E2E2E"; +declare const SiBspwm: IconType; +export { SiBspwm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.mjs new file mode 100644 index 000000000..39c6ade36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBspwm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E2E2E"; +const SiBspwm = React.forwardRef(function SiBspwm2({ title = "bspwm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.814 8.437c-.02-.02-.025-.076-.025-.166v-.895c0-.076.005-.12.02-.136.01-.015.055-.025.126-.025h.683c.433 0 .654.211.654.629 0 .422-.221.628-.654.628H5.93c-.06 0-.101-.01-.116-.035zm.146 1.795h.709a.714.714 0 0 0 .502-.176c.131-.116.201-.292.201-.528 0-.231-.065-.402-.196-.513a.762.762 0 0 0-.507-.166h-.75c-.055 0-.09.01-.105.03-.02.02-.025.076-.025.156v1.076c0 .05.01.086.03.1.02.016.065.02.14.02zm11.392-1.61h.492c.211 0 .372-.065.483-.2.11-.136.17-.322.17-.553 0-.433-.22-.654-.653-.654h-.492c-.076 0-.121.01-.136.02-.02.01-.025.045-.025.1v1.082c0 .1.005.155.02.176.015.02.06.03.14.03zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-8.041-4.9c0 .06.005.09.015.1.01.01.04.015.1.015h.262c.08 0 .13.01.15.025.016.015.026.056.026.12v2.715c0 .031.005.051.005.061 0 .065-.035.096-.1.096h-.358c-.05 0-.075.01-.085.02-.01.01-.015.045-.015.105v.1c0 .071.005.116.015.132.01.015.045.02.105.02h1.64c.06 0 .095-.005.105-.02.01-.01.02-.05.02-.121v-.161c0-.055-.035-.085-.095-.085-.015 0-.036.005-.066.005-.03.005-.055.005-.07.005h-.261c-.076 0-.121-.005-.136-.015-.02-.01-.025-.046-.025-.106V9.1c0-.071.03-.106.1-.106.01 0 .03.005.06.005h.493c.463 0 .81-.1 1.05-.307.237-.206.358-.483.358-.824 0-.332-.12-.583-.352-.764-.231-.176-.583-.267-1.056-.267h-1.649c-.02 0-.04 0-.07-.005-.03 0-.056-.005-.066-.005-.07 0-.1.03-.1.09V7.1zm-5.47 3.443c0 .035.005.06.025.07.015.016.05.02.106.02h.136c.03 0 .06 0 .08-.004a.12.12 0 0 0 .056-.03c.01-.015.02-.03.03-.04.005-.01.015-.026.025-.051a.335.335 0 0 1 .03-.06c.035-.066.06-.1.075-.1.01 0 .04.02.096.055.236.19.538.28.905.28.432 0 .784-.1 1.055-.3a.984.984 0 0 0 .403-.83 1.14 1.14 0 0 0-.126-.543.885.885 0 0 0-.317-.347 2.183 2.183 0 0 0-.437-.201 5.763 5.763 0 0 0-.478-.146 3.673 3.673 0 0 1-.432-.136.816.816 0 0 1-.322-.211.499.499 0 0 1-.12-.342c0-.15.06-.266.18-.352.121-.085.302-.13.544-.13.206 0 .397.06.578.176a.87.87 0 0 1 .362.472c0 .015.005.05.01.106a.354.354 0 0 0 .03.126c.01.03.035.045.07.045h.186c.05 0 .08-.01.096-.035a.2.2 0 0 0 .025-.111v-.976a.17.17 0 0 0-.02-.09c-.01-.01-.04-.02-.086-.02h-.1a.45.45 0 0 0-.151.015c-.025.01-.05.035-.076.075l-.05.08c-.04.061-.065.086-.08.086-.01 0-.045-.02-.106-.07a1.333 1.333 0 0 0-.79-.236c-.361 0-.658.085-.899.256-.241.171-.357.422-.357.754 0 .201.04.367.12.503a.8.8 0 0 0 .318.317c.13.07.27.13.432.18.156.05.312.096.472.136.156.04.297.091.428.141.13.056.236.13.316.231.08.101.126.227.126.372a.6.6 0 0 1-.206.468c-.136.12-.352.181-.648.181a1.12 1.12 0 0 1-.694-.221 1.014 1.014 0 0 1-.402-.548.395.395 0 0 1-.02-.11c-.006-.051-.016-.086-.036-.101a.25.25 0 0 0-.11-.02h-.136c-.05 0-.08.005-.096.015-.015.01-.02.03-.02.06v.045c0 .02.005.04.005.05v.936c0 .02-.005.04-.005.06v.05zm-5.932-.065c0 .055.005.09.025.11.015.02.046.026.086.026h.065c.03 0 .06-.005.08-.005H6.72c.427 0 .769-.086 1.025-.257.252-.17.383-.437.383-.799a.772.772 0 0 0-.262-.609c-.176-.15-.417-.246-.724-.291.553-.11.835-.407.835-.885 0-.312-.126-.543-.377-.699-.252-.15-.578-.231-.98-.231H4.707c-.025 0-.04-.005-.05-.005-.04 0-.07.01-.08.03-.016.02-.02.055-.02.11v.167c0 .04.004.06.014.065.01.01.04.01.09.01h.378c.03 0 .045.01.055.02.01.01.015.04.015.08v2.695c0 .11-.01.176-.03.197-.02.02-.08.025-.186.025h-.241c-.046 0-.07.01-.08.02-.01.015-.016.05-.016.11v.116zm6.52 3.2c0-.05-.006-.08-.016-.09a.231.231 0 0 0-.097-.013h-.838c-.06 0-.094.007-.104.02-.013.013-.017.054-.017.12v.105c0 .05.007.08.02.09.014.013.05.017.114.017a.76.76 0 0 1 .155.01c.023.007.036.017.036.037 0 .01-.013.05-.036.124l-.232.663c-.04.114-.09.255-.144.423-.04.117-.067.174-.074.174-.01 0-.033-.074-.073-.225a9.152 9.152 0 0 0-.1-.331l-.252-.764a.258.258 0 0 1-.017-.078c0-.02.023-.033.077-.033h.077c.05 0 .08-.004.094-.013.013-.007.02-.03.02-.071v-.188c0-.033-.007-.053-.02-.067-.013-.013-.037-.02-.064-.02-.013 0-.03.003-.053.003-.027.004-.044.004-.057.004h-.862c-.02 0-.03-.004-.037-.004-.033 0-.053.007-.063.02-.014.014-.017.047-.017.094v.1c0 .014-.003.028-.003.044v.037c0 .024.003.04.013.047.01.01.03.014.064.014h.11c.054 0 .087.017.1.05l.028.07a.27.27 0 0 1 .016.067c0 .014-.01.047-.03.094l-.291.684c-.014.037-.037.09-.067.16-.034.075-.05.118-.057.132-.037.08-.06.12-.067.12-.014 0-.03-.023-.044-.07a3.822 3.822 0 0 1-.07-.198c-.027-.08-.044-.14-.054-.174l-.265-.754-.02-.054-.023-.05a.066.066 0 0 1-.007-.034c0-.027.037-.043.117-.043h.135c.036 0 .06-.004.067-.014a.196.196 0 0 0 .013-.087v-.16c0-.038-.007-.061-.017-.074a.071.071 0 0 0-.053-.02c-.007 0-.02.003-.04.003H6.978c-.024 0-.04-.004-.047-.004-.054 0-.077.03-.077.084v.178c0 .047.003.074.016.08.01.01.044.014.101.014h.1a.34.34 0 0 1 .068.006c.016.004.03.01.043.02.01.014.017.02.02.027a.3.3 0 0 1 .017.047c.007.024.01.04.017.05l.697 1.921.013.044c.007.02.01.03.014.037 0 .006.007.013.017.023a.04.04 0 0 0 .033.017.27.27 0 0 0 .057.003h.15c.02 0 .041 0 .058-.003.013 0 .027-.004.04-.004a.06.06 0 0 0 .034-.013.07.07 0 0 1 .02-.014c.006-.003.01-.01.016-.023.007-.01.01-.017.014-.024l.013-.033c.007-.017.01-.03.017-.04l.355-.845c.014-.033.067-.174.168-.422.034-.08.054-.124.067-.124.013 0 .037.054.064.154a4.3 4.3 0 0 0 .144.432l.308.815.017.05a.157.157 0 0 0 .016.047l.024.023a.05.05 0 0 0 .044.02c.016.004.04.004.07.004h.12c.03 0 .058 0 .078-.007a.158.158 0 0 0 .047-.013c.013-.003.023-.013.033-.027l.02-.037a.268.268 0 0 0 .017-.05c.007-.027.01-.047.017-.06l.647-1.87a.841.841 0 0 1 .027-.084.131.131 0 0 1 .036-.03.253.253 0 0 1 .104-.017h.141a.16.16 0 0 0 .07-.01c.007-.007.014-.024.014-.05v-.188zm5.671 2.126c0-.027-.006-.044-.016-.054a.173.173 0 0 0-.077-.013h-.175c-.053 0-.087-.007-.1-.023-.017-.017-.024-.047-.024-.088v-.107l-.057-1.435c0-.013-.003-.026-.003-.046v-.04c0-.03.007-.05.02-.058a.29.29 0 0 1 .104-.013h.094c.064 0 .1-.003.114-.017.013-.01.02-.043.02-.104v-.124c0-.043-.007-.073-.02-.087a.084.084 0 0 0-.06-.023c-.01 0-.027.003-.048.003h-.864a.297.297 0 0 0-.087.01.103.103 0 0 0-.054.037c-.013.017-.02.034-.027.047a.322.322 0 0 0-.023.063.48.48 0 0 1-.02.07l-.279.758c-.073.198-.13.362-.164.496-.033.125-.06.185-.08.185-.02 0-.044-.064-.074-.198a8.58 8.58 0 0 0-.147-.51l-.275-.878a.165.165 0 0 0-.04-.067.194.194 0 0 0-.081-.013h-1.002c-.023 0-.037-.003-.044-.003-.03 0-.05.006-.063.02-.014.013-.017.043-.017.083v.165c0 .04.003.067.017.073.01.01.04.014.093.014h.155c.04 0 .07.006.083.013.014.01.02.027.02.047l-.006.097-.07 1.475v.084c0 .033-.007.06-.02.074-.014.013-.04.02-.081.02h-.168c-.06 0-.097.006-.107.016-.013.01-.017.04-.017.094v.154c0 .037.004.06.017.074.01.014.027.017.054.017h.037c.02 0 .037-.003.05-.003h.905c.04 0 .064-.004.077-.014.01-.006.017-.027.017-.053v-.215c0-.03-.004-.05-.01-.057a.06.06 0 0 0-.04-.013h-.205c-.054 0-.09-.004-.107-.017-.02-.013-.027-.033-.027-.064 0-.01 0-.03.003-.057a.46.46 0 0 0 .007-.06l.027-.73.003-.202c0-.134.003-.251.01-.352.003-.1.01-.15.02-.15.014 0 .044.067.084.2.037.121.094.302.171.537l.389 1.186c.013.047.03.074.047.081.013.01.047.013.1.013h.252c.026 0 .05-.003.07-.016a.119.119 0 0 0 .034-.04.287.287 0 0 0 .02-.064c.006-.027.01-.047.016-.06l.41-1.214c.02-.057.053-.181.103-.369.034-.134.057-.204.07-.204.007 0 .014.043.02.124.004.084.007.184.01.302l.004.174.027.784c0 .02 0 .04.003.067 0 .027.004.044.004.05 0 .03-.01.05-.027.064-.017.014-.047.017-.094.017h-.16c-.051 0-.081.007-.095.017-.013.01-.017.03-.017.063v.198c0 .034.004.054.014.064.01.01.027.013.05.013h.037c.017 0 .03-.003.044-.003h1.132c.054 0 .084-.004.098-.014.01-.006.016-.033.016-.077v-.194zM21.128 12a.173.173 0 0 0-.174-.174h-5.975v-8.78a.173.173 0 1 0-.347 0v8.78H9.294v-8.78a.173.173 0 1 0-.348 0v8.78h-5.9a.174.174 0 0 0 0 .348h8.78v8.78a.173.173 0 1 0 .348 0v-8.78h8.78a.173.173 0 0 0 .173-.174z" }) + ] + } + ); +}); + +export { SiBspwm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBt.cjs new file mode 100644 index 000000000..885f61a4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6400AA"; +const SiBt = React__namespace.forwardRef(function SiBt2({ title = "BT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.589 7.91h5.977v1.753H16.56v6.41h-1.97v-6.41h-2zM12 22.523C6.193 22.523 1.477 17.807 1.477 12 1.477 6.193 6.193 1.477 12 1.477c5.807 0 10.523 4.716 10.523 10.523 0 5.807-4.716 10.523-10.523 10.523M12 24c6.626 0 12-5.374 12-12S18.626 0 12 0C5.379 0 0 5.374 0 12s5.379 12 12 12M9.97 13.574c0-.516-.321-.865-.873-.865h-1.32v1.702h1.32c.552 0 .874-.345.874-.837m-.24-3.276c0-.433-.275-.732-.745-.732h-1.21v1.486h1.21c.47 0 .746-.299.746-.754m2.231 3.372c0 1.546-1.09 2.402-2.65 2.402H5.834V7.91h3.249c1.573 0 2.64.805 2.64 2.277 0 .672-.298 1.27-.781 1.634.552.326 1.021.947 1.021 1.85Z" }) + ] + } + ); +}); + +exports.default = SiBt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBt.d.ts new file mode 100644 index 000000000..088c17899 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6400AA"; +declare const SiBt: IconType; +export { SiBt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBt.mjs new file mode 100644 index 000000000..c8e5215a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6400AA"; +const SiBt = React.forwardRef(function SiBt2({ title = "BT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.589 7.91h5.977v1.753H16.56v6.41h-1.97v-6.41h-2zM12 22.523C6.193 22.523 1.477 17.807 1.477 12 1.477 6.193 6.193 1.477 12 1.477c5.807 0 10.523 4.716 10.523 10.523 0 5.807-4.716 10.523-10.523 10.523M12 24c6.626 0 12-5.374 12-12S18.626 0 12 0C5.379 0 0 5.374 0 12s5.379 12 12 12M9.97 13.574c0-.516-.321-.865-.873-.865h-1.32v1.702h1.32c.552 0 .874-.345.874-.837m-.24-3.276c0-.433-.275-.732-.745-.732h-1.21v1.486h1.21c.47 0 .746-.299.746-.754m2.231 3.372c0 1.546-1.09 2.402-2.65 2.402H5.834V7.91h3.249c1.573 0 2.64.805 2.64 2.277 0 .672-.298 1.27-.781 1.634.552.326 1.021.947 1.021 1.85Z" }) + ] + } + ); +}); + +export { SiBt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.cjs new file mode 100644 index 000000000..df0131d83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A86FD"; +const SiBuddy = React__namespace.forwardRef(function SiBuddy2({ title = "Buddy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.7 5.307L12.945.253a1.892 1.892 0 00-1.891 0L2.299 5.306a1.892 1.892 0 00-.945 1.638v10.11c0 .675.36 1.3.945 1.637l8.756 5.056a1.892 1.892 0 001.89 0l8.756-5.055c.585-.338.945-.962.945-1.638V6.945c0-.675-.36-1.3-.945-1.638zm-7.45 7.753l-3.805 3.804-1.351-1.351 3.804-3.805-3.804-3.806 1.35-1.35 3.805 3.805 1.351 1.35-1.35 1.353z" }) + ] + } + ); +}); + +exports.default = SiBuddy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.d.ts new file mode 100644 index 000000000..09333250b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A86FD"; +declare const SiBuddy: IconType; +export { SiBuddy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.mjs new file mode 100644 index 000000000..08b26a108 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuddy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A86FD"; +const SiBuddy = React.forwardRef(function SiBuddy2({ title = "Buddy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.7 5.307L12.945.253a1.892 1.892 0 00-1.891 0L2.299 5.306a1.892 1.892 0 00-.945 1.638v10.11c0 .675.36 1.3.945 1.637l8.756 5.056a1.892 1.892 0 001.89 0l8.756-5.055c.585-.338.945-.962.945-1.638V6.945c0-.675-.36-1.3-.945-1.638zm-7.45 7.753l-3.805 3.804-1.351-1.351 3.804-3.805-3.804-3.806 1.35-1.35 3.805 3.805 1.351 1.35-1.35 1.353z" }) + ] + } + ); +}); + +export { SiBuddy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.cjs new file mode 100644 index 000000000..87e3337a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBudibase = React__namespace.forwardRef(function SiBudibase2({ title = "Budibase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 0a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Zm2 6h2.5v5.22c.59-.634 1.326-.95 2.21-.95a3.372 3.372 0 0 1 2.565 1.13c.178.199.327.422.46.66V6h2.505v5.22c.59-.634 1.324-.95 2.21-.95a3.372 3.372 0 0 1 2.566 1.13c.31.345.55.75.724 1.22.175.47.26.965.26 1.495 0 .54-.09 1.045-.27 1.52a3.73 3.73 0 0 1-.755 1.234c-.32.35-.7.625-1.14.83-.434.2-.905.301-1.415.301-.92 0-1.65-.345-2.186-1.035v.81h-2.5v-1.601a3.595 3.595 0 0 1-1.638 1.525c-.435.2-.905.301-1.41.301-.92 0-1.651-.345-2.186-1.035v.81H4Zm4.035 6.484a1.566 1.566 0 0 0-1.125.487 1.733 1.733 0 0 0-.474 1.174 1.623 1.623 0 0 0 .468 1.16c.145.145.322.265.522.355.2.09.409.135.629.135a1.566 1.566 0 0 0 1.125-.484c.145-.15.26-.326.345-.526.08-.205.125-.41.125-.63a1.675 1.675 0 0 0-.47-1.175c-.15-.15-.32-.27-.51-.36a1.491 1.491 0 0 0-.635-.136Zm7.74 0a1.566 1.566 0 0 0-1.125.487 1.733 1.733 0 0 0-.474 1.174 1.623 1.623 0 0 0 .469 1.16c.145.145.32.265.52.355.2.09.41.135.63.135a1.566 1.566 0 0 0 1.125-.484c.145-.15.26-.326.346-.526.08-.205.125-.41.125-.63a1.675 1.675 0 0 0-.471-1.175c-.15-.15-.32-.27-.51-.36a1.491 1.491 0 0 0-.635-.136Z" }) + ] + } + ); +}); + +exports.default = SiBudibase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.d.ts new file mode 100644 index 000000000..20f77cefc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBudibase: IconType; +export { SiBudibase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.mjs new file mode 100644 index 000000000..722e68840 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBudibase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBudibase = React.forwardRef(function SiBudibase2({ title = "Budibase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2 0a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Zm2 6h2.5v5.22c.59-.634 1.326-.95 2.21-.95a3.372 3.372 0 0 1 2.565 1.13c.178.199.327.422.46.66V6h2.505v5.22c.59-.634 1.324-.95 2.21-.95a3.372 3.372 0 0 1 2.566 1.13c.31.345.55.75.724 1.22.175.47.26.965.26 1.495 0 .54-.09 1.045-.27 1.52a3.73 3.73 0 0 1-.755 1.234c-.32.35-.7.625-1.14.83-.434.2-.905.301-1.415.301-.92 0-1.65-.345-2.186-1.035v.81h-2.5v-1.601a3.595 3.595 0 0 1-1.638 1.525c-.435.2-.905.301-1.41.301-.92 0-1.651-.345-2.186-1.035v.81H4Zm4.035 6.484a1.566 1.566 0 0 0-1.125.487 1.733 1.733 0 0 0-.474 1.174 1.623 1.623 0 0 0 .468 1.16c.145.145.322.265.522.355.2.09.409.135.629.135a1.566 1.566 0 0 0 1.125-.484c.145-.15.26-.326.345-.526.08-.205.125-.41.125-.63a1.675 1.675 0 0 0-.47-1.175c-.15-.15-.32-.27-.51-.36a1.491 1.491 0 0 0-.635-.136Zm7.74 0a1.566 1.566 0 0 0-1.125.487 1.733 1.733 0 0 0-.474 1.174 1.623 1.623 0 0 0 .469 1.16c.145.145.32.265.52.355.2.09.41.135.63.135a1.566 1.566 0 0 0 1.125-.484c.145-.15.26-.326.346-.526.08-.205.125-.41.125-.63a1.675 1.675 0 0 0-.471-1.175c-.15-.15-.32-.27-.51-.36a1.491 1.491 0 0 0-.635-.136Z" }) + ] + } + ); +}); + +export { SiBudibase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.cjs new file mode 100644 index 000000000..4adbcb189 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7957D5"; +const SiBuefy = React__namespace.forwardRef(function SiBuefy2({ title = "Buefy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.358.004c-.008 0-.175.02-.375.031-.64.05-1.275.142-1.902.278-.402.09-1.496.402-1.54.433-.738.259-1.472.606-2.17.957-.606.332-1.544.938-1.689 1.094a6.04 6.04 0 01-.304.242c-.387.309-1.172 1.102-1.528 1.543-1.203 1.512-1.87 3.145-2.074 5.063-.066.66 0 2.507.086 2.507.02 0 .32-.132.684-.304.191-.086.418-.192.511-.235.094-.043.602-.273 1.122-.515.527-.243 1.046-.48 1.16-.532l.488-.226c.156-.07.297-.13.316-.13.02 0-.007-.081-.058-.183a4.262 4.262 0 01-.48-1.996c0-1.152.402-2.246 1.23-3.344.388-.49.831-.932 1.32-1.32.07-.054.172-.129.227-.176.34-.261 1.437-.851 1.59-.851.035 0 .046.023.035.066-.012.04-.09.422-.18.844-.082.434-.16.816-.172.86-.008.038-.043.21-.074.378-.035.168-.066.34-.074.38-.012.042-.094.464-.192.948-.093.48-.19.95-.21 1.047-.02.094-.044.203-.047.246l-.157.801c-.01.043-.113.555-.23 1.14-.117.587-.219 1.098-.23 1.141l-.153.766a8.49 8.49 0 01-.074.375c-.043.198-.081.398-.114.598a1.384 1.384 0 00-.035.148c-.01.05-.062.3-.113.563-.055.261-.105.539-.117.609-.012.07-.047.234-.074.363-.027.113-.05.226-.07.34-.178.9-.36 1.8-.544 2.7l-.07.378c-.012.043-.094.469-.195.95l-.207 1.046a3.51 3.51 0 00-.047.25l-.156.797c-.012.043-.118.559-.235 1.14-.113.587-.215 1.099-.222 1.134-.05.23-.286 1.437-.3 1.53l-.02.122 3.546-.012c3.137 0 4.184-.02 4.723-.07l.457-.043c.168-.012.328-.031.363-.035.035-.008.152-.024.266-.035.113-.012.351-.051.527-.086.18-.032.367-.063.414-.07.047-.012.203-.044.344-.079.137-.03.273-.062.308-.07.094-.02.73-.207.817-.242.043-.02.238-.098.433-.18 1.258-.5 2.297-1.312 3.032-2.371.136-.195.511-.824.511-.855 0-.012.07-.16.15-.332a7.814 7.814 0 00.64-2.258c.05-.383.02-1.817-.05-1.926a1.215 1.215 0 01-.036-.191 6.046 6.046 0 00-3.172-4.23 6.71 6.71 0 00-1.23-.497l-.188-.043.308-.203c.133-.088.263-.18.39-.274.252-.2.497-.408.734-.625.525-.535.845-.949 1.17-1.503.265-.45.546-1.157.624-1.56a.641.641 0 01.032-.14c.093-.265.093-1.61 0-1.761-.008-.012-.02-.075-.032-.137a4.155 4.155 0 00-.1-.344c-.415-1.27-1.368-2.328-2.68-2.976C17.55.632 16.78.344 16.525.3a2.157 2.157 0 01-.265-.059 8.852 8.852 0 00-.93-.168 10.58 10.58 0 00-1.3-.073c-.368.004-.669-.001-.673.003zm1.645 1.812c.972.254 1.742.891 2.082 1.723.207.504.254.79.254 1.543 0 .613-.02.89-.114 1.277a4.284 4.284 0 01-2.28 2.918c-.22.114-.41.2-.512.235-.012 0-.047.02-.079.031-.273.113-1.418.371-1.46.328-.012-.012.042-.297.11-.644.07-.344.14-.688.147-.762a1.93 1.93 0 01.04-.192 1.05 1.05 0 00.034-.191c.012-.078.032-.16.04-.191.011-.032.027-.114.035-.188.011-.07.074-.39.136-.703.067-.316.13-.613.137-.664.008-.055.09-.48.192-.95.093-.472.18-.91.19-.972.013-.062.044-.234.075-.379.031-.148.06-.308.07-.36.172-.91.375-1.894.383-1.933.024-.054.055-.047.52.074zM13.84 11.824c.191.028.508.086.82.16.172.036.664.235.926.371 1.465.758 2.273 2.356 2.098 4.133a7.38 7.38 0 01-.11.664c-.012.024-.023.09-.039.153a8.4 8.4 0 01-.352.949c-1.082 2.172-3.394 3.5-6.199 3.55l-.476.012.023-.105.043-.203c.012-.055.031-.184.055-.285l.058-.305c.012-.066.024-.148.036-.191.007-.043.085-.446.168-.895.09-.445.183-.926.214-1.062l.08-.399c.01-.086.022-.18.034-.21.011-.032.023-.099.035-.15.012-.054.04-.198.058-.323.024-.125.106-.528.176-.895.05-.26.102-.518.153-.777.007-.067.043-.235.07-.38.055-.261.078-.386.113-.609l.094-.472.285-1.465c.117-.61.223-1.14.23-1.188.012-.054.055-.086.126-.093.187-.024 1.05-.008 1.28.015z" }) + ] + } + ); +}); + +exports.default = SiBuefy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.d.ts new file mode 100644 index 000000000..cfe638c15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7957D5"; +declare const SiBuefy: IconType; +export { SiBuefy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.mjs new file mode 100644 index 000000000..d6b529ca2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuefy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7957D5"; +const SiBuefy = React.forwardRef(function SiBuefy2({ title = "Buefy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.358.004c-.008 0-.175.02-.375.031-.64.05-1.275.142-1.902.278-.402.09-1.496.402-1.54.433-.738.259-1.472.606-2.17.957-.606.332-1.544.938-1.689 1.094a6.04 6.04 0 01-.304.242c-.387.309-1.172 1.102-1.528 1.543-1.203 1.512-1.87 3.145-2.074 5.063-.066.66 0 2.507.086 2.507.02 0 .32-.132.684-.304.191-.086.418-.192.511-.235.094-.043.602-.273 1.122-.515.527-.243 1.046-.48 1.16-.532l.488-.226c.156-.07.297-.13.316-.13.02 0-.007-.081-.058-.183a4.262 4.262 0 01-.48-1.996c0-1.152.402-2.246 1.23-3.344.388-.49.831-.932 1.32-1.32.07-.054.172-.129.227-.176.34-.261 1.437-.851 1.59-.851.035 0 .046.023.035.066-.012.04-.09.422-.18.844-.082.434-.16.816-.172.86-.008.038-.043.21-.074.378-.035.168-.066.34-.074.38-.012.042-.094.464-.192.948-.093.48-.19.95-.21 1.047-.02.094-.044.203-.047.246l-.157.801c-.01.043-.113.555-.23 1.14-.117.587-.219 1.098-.23 1.141l-.153.766a8.49 8.49 0 01-.074.375c-.043.198-.081.398-.114.598a1.384 1.384 0 00-.035.148c-.01.05-.062.3-.113.563-.055.261-.105.539-.117.609-.012.07-.047.234-.074.363-.027.113-.05.226-.07.34-.178.9-.36 1.8-.544 2.7l-.07.378c-.012.043-.094.469-.195.95l-.207 1.046a3.51 3.51 0 00-.047.25l-.156.797c-.012.043-.118.559-.235 1.14-.113.587-.215 1.099-.222 1.134-.05.23-.286 1.437-.3 1.53l-.02.122 3.546-.012c3.137 0 4.184-.02 4.723-.07l.457-.043c.168-.012.328-.031.363-.035.035-.008.152-.024.266-.035.113-.012.351-.051.527-.086.18-.032.367-.063.414-.07.047-.012.203-.044.344-.079.137-.03.273-.062.308-.07.094-.02.73-.207.817-.242.043-.02.238-.098.433-.18 1.258-.5 2.297-1.312 3.032-2.371.136-.195.511-.824.511-.855 0-.012.07-.16.15-.332a7.814 7.814 0 00.64-2.258c.05-.383.02-1.817-.05-1.926a1.215 1.215 0 01-.036-.191 6.046 6.046 0 00-3.172-4.23 6.71 6.71 0 00-1.23-.497l-.188-.043.308-.203c.133-.088.263-.18.39-.274.252-.2.497-.408.734-.625.525-.535.845-.949 1.17-1.503.265-.45.546-1.157.624-1.56a.641.641 0 01.032-.14c.093-.265.093-1.61 0-1.761-.008-.012-.02-.075-.032-.137a4.155 4.155 0 00-.1-.344c-.415-1.27-1.368-2.328-2.68-2.976C17.55.632 16.78.344 16.525.3a2.157 2.157 0 01-.265-.059 8.852 8.852 0 00-.93-.168 10.58 10.58 0 00-1.3-.073c-.368.004-.669-.001-.673.003zm1.645 1.812c.972.254 1.742.891 2.082 1.723.207.504.254.79.254 1.543 0 .613-.02.89-.114 1.277a4.284 4.284 0 01-2.28 2.918c-.22.114-.41.2-.512.235-.012 0-.047.02-.079.031-.273.113-1.418.371-1.46.328-.012-.012.042-.297.11-.644.07-.344.14-.688.147-.762a1.93 1.93 0 01.04-.192 1.05 1.05 0 00.034-.191c.012-.078.032-.16.04-.191.011-.032.027-.114.035-.188.011-.07.074-.39.136-.703.067-.316.13-.613.137-.664.008-.055.09-.48.192-.95.093-.472.18-.91.19-.972.013-.062.044-.234.075-.379.031-.148.06-.308.07-.36.172-.91.375-1.894.383-1.933.024-.054.055-.047.52.074zM13.84 11.824c.191.028.508.086.82.16.172.036.664.235.926.371 1.465.758 2.273 2.356 2.098 4.133a7.38 7.38 0 01-.11.664c-.012.024-.023.09-.039.153a8.4 8.4 0 01-.352.949c-1.082 2.172-3.394 3.5-6.199 3.55l-.476.012.023-.105.043-.203c.012-.055.031-.184.055-.285l.058-.305c.012-.066.024-.148.036-.191.007-.043.085-.446.168-.895.09-.445.183-.926.214-1.062l.08-.399c.01-.086.022-.18.034-.21.011-.032.023-.099.035-.15.012-.054.04-.198.058-.323.024-.125.106-.528.176-.895.05-.26.102-.518.153-.777.007-.067.043-.235.07-.38.055-.261.078-.386.113-.609l.094-.472.285-1.465c.117-.61.223-1.14.23-1.188.012-.054.055-.086.126-.093.187-.024 1.05-.008 1.28.015z" }) + ] + } + ); +}); + +export { SiBuefy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.cjs new file mode 100644 index 000000000..782ae3d27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiBuffer = React__namespace.forwardRef(function SiBuffer2({ title = "Buffer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.371 5.476L11.943 0l10.686 5.476-10.686 5.495zm3.36 4.81l7.212 3.547 7.288-3.547 3.398 1.655-10.686 5.202L1.371 11.94zm0 6.171l7.212 3.911 7.288-3.91 3.398 1.815L11.943 24 1.371 18.273z" }) + ] + } + ); +}); + +exports.default = SiBuffer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.d.ts new file mode 100644 index 000000000..d36fd8200 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiBuffer: IconType; +export { SiBuffer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.mjs new file mode 100644 index 000000000..7cb94eff5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuffer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiBuffer = React.forwardRef(function SiBuffer2({ title = "Buffer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.371 5.476L11.943 0l10.686 5.476-10.686 5.495zm3.36 4.81l7.212 3.547 7.288-3.547 3.398 1.655-10.686 5.202L1.371 11.94zm0 6.171l7.212 3.911 7.288-3.91 3.398 1.815L11.943 24 1.371 18.273z" }) + ] + } + ); +}); + +export { SiBuffer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.cjs new file mode 100644 index 000000000..a8713fdf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBugatti = React__namespace.forwardRef(function SiBugatti2({ title = "Bugatti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2.978h18.593c.021.004.042.012.063.013.436.019.863.09 1.279.218 1.459.451 2.507 1.367 3.117 2.772.454 1.046.5 2.259.316 3.156a4.634 4.634 0 0 1-1.37 2.482c-.014.014-.027.03-.04.045.021.026.052.04.077.061a4.774 4.774 0 0 1 1.951 3.564c.001.021.01.042.014.063v.79c-.005.027-.012.053-.014.08-.004.046-.002.093-.007.14a5.501 5.501 0 0 1-.21 1.047c-.398 1.278-1.167 2.262-2.336 2.924-.836.474-1.744.686-2.7.687-6.24.004-12.48.002-18.72.002v-4.74h2.988l.001 1.738c.134.016 7.226.01 7.286-.006v-4.668h-3.06v1.425c-.102.019-2.928.014-2.986-.004V8.912h2.986v1.424c.103.019 3.003.014 3.06-.003V5.976H3V7.51H.008Zm13.753 15.05h4.744c.254 0 .505-.023.75-.09.77-.21 1.3-.683 1.546-1.447a2.605 2.605 0 0 0-.007-1.636 2.068 2.068 0 0 0-1.12-1.274 2.553 2.553 0 0 0-1.092-.239h-4.82zm.003-12.058v4.377h4.397a2.5 2.5 0 0 0 .723-.103c.678-.203 1.147-.63 1.376-1.304.145-.428.163-.868.068-1.308-.161-.742-.598-1.251-1.313-1.515a2.711 2.711 0 0 0-.947-.147Z" }) + ] + } + ); +}); + +exports.default = SiBugatti; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.d.ts new file mode 100644 index 000000000..fa784716e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBugatti: IconType; +export { SiBugatti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.mjs new file mode 100644 index 000000000..7db2e7baf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBugatti.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBugatti = React.forwardRef(function SiBugatti2({ title = "Bugatti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2.978h18.593c.021.004.042.012.063.013.436.019.863.09 1.279.218 1.459.451 2.507 1.367 3.117 2.772.454 1.046.5 2.259.316 3.156a4.634 4.634 0 0 1-1.37 2.482c-.014.014-.027.03-.04.045.021.026.052.04.077.061a4.774 4.774 0 0 1 1.951 3.564c.001.021.01.042.014.063v.79c-.005.027-.012.053-.014.08-.004.046-.002.093-.007.14a5.501 5.501 0 0 1-.21 1.047c-.398 1.278-1.167 2.262-2.336 2.924-.836.474-1.744.686-2.7.687-6.24.004-12.48.002-18.72.002v-4.74h2.988l.001 1.738c.134.016 7.226.01 7.286-.006v-4.668h-3.06v1.425c-.102.019-2.928.014-2.986-.004V8.912h2.986v1.424c.103.019 3.003.014 3.06-.003V5.976H3V7.51H.008Zm13.753 15.05h4.744c.254 0 .505-.023.75-.09.77-.21 1.3-.683 1.546-1.447a2.605 2.605 0 0 0-.007-1.636 2.068 2.068 0 0 0-1.12-1.274 2.553 2.553 0 0 0-1.092-.239h-4.82zm.003-12.058v4.377h4.397a2.5 2.5 0 0 0 .723-.103c.678-.203 1.147-.63 1.376-1.304.145-.428.163-.868.068-1.308-.161-.742-.598-1.251-1.313-1.515a2.711 2.711 0 0 0-.947-.147Z" }) + ] + } + ); +}); + +export { SiBugatti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.cjs new file mode 100644 index 000000000..f476ef03e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F26822"; +const SiBugcrowd = React__namespace.forwardRef(function SiBugcrowd2({ title = "Bugcrowd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12L18 1.387H6L0 12l6 10.613h12zm-5.782 1.658c-.003.825-.122 1.569-.354 2.231a5.05 5.05 0 0 1-.99 1.708 4.316 4.316 0 0 1-1.503 1.093 4.69 4.69 0 0 1-1.896.385 4.158 4.158 0 0 1-1.145-.152 3.754 3.754 0 0 1-.868-.36 3.792 3.792 0 0 1-.601-.435 3.023 3.023 0 0 1-.466-.514h-.04l.02.193c.011.166.018.331.02.497v.528H7.961V7.062c0-.151-.04-.263-.114-.337-.077-.074-.19-.109-.33-.109h-.811V4.425h2.452c.473-.003.824.108 1.048.331.222.223.333.576.33 1.049v3.003c-.003.258-.01.467-.02.626l-.02.247h.04a2.898 2.898 0 0 1 .463-.507c.156-.143.354-.284.6-.426.245-.142.538-.261.876-.36.38-.1.77-.15 1.162-.148.702.003 1.334.135 1.894.395a4.118 4.118 0 0 1 1.446 1.11c.4.48.707 1.052.92 1.715.212.658.317 1.392.32 2.198m-2.803 1.406c.138-.399.206-.852.209-1.366-.003-.659-.112-1.231-.328-1.718-.216-.484-.517-.859-.902-1.125a2.347 2.347 0 0 0-1.344-.404 2.57 2.57 0 0 0-.969.186 2.372 2.372 0 0 0-.83.589 2.839 2.839 0 0 0-.579 1.015c-.141.413-.212.906-.216 1.477 0 .397.053.792.159 1.174.101.366.265.712.483 1.02.211.3.486.548.805.722.32.176.698.267 1.127.27.343.002.683-.07.997-.213a2.43 2.43 0 0 0 .824-.623c.24-.273.428-.607.564-1.004Z" }) + ] + } + ); +}); + +exports.default = SiBugcrowd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.d.ts new file mode 100644 index 000000000..f7602f2ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F26822"; +declare const SiBugcrowd: IconType; +export { SiBugcrowd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.mjs new file mode 100644 index 000000000..ade076294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBugcrowd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F26822"; +const SiBugcrowd = React.forwardRef(function SiBugcrowd2({ title = "Bugcrowd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12L18 1.387H6L0 12l6 10.613h12zm-5.782 1.658c-.003.825-.122 1.569-.354 2.231a5.05 5.05 0 0 1-.99 1.708 4.316 4.316 0 0 1-1.503 1.093 4.69 4.69 0 0 1-1.896.385 4.158 4.158 0 0 1-1.145-.152 3.754 3.754 0 0 1-.868-.36 3.792 3.792 0 0 1-.601-.435 3.023 3.023 0 0 1-.466-.514h-.04l.02.193c.011.166.018.331.02.497v.528H7.961V7.062c0-.151-.04-.263-.114-.337-.077-.074-.19-.109-.33-.109h-.811V4.425h2.452c.473-.003.824.108 1.048.331.222.223.333.576.33 1.049v3.003c-.003.258-.01.467-.02.626l-.02.247h.04a2.898 2.898 0 0 1 .463-.507c.156-.143.354-.284.6-.426.245-.142.538-.261.876-.36.38-.1.77-.15 1.162-.148.702.003 1.334.135 1.894.395a4.118 4.118 0 0 1 1.446 1.11c.4.48.707 1.052.92 1.715.212.658.317 1.392.32 2.198m-2.803 1.406c.138-.399.206-.852.209-1.366-.003-.659-.112-1.231-.328-1.718-.216-.484-.517-.859-.902-1.125a2.347 2.347 0 0 0-1.344-.404 2.57 2.57 0 0 0-.969.186 2.372 2.372 0 0 0-.83.589 2.839 2.839 0 0 0-.579 1.015c-.141.413-.212.906-.216 1.477 0 .397.053.792.159 1.174.101.366.265.712.483 1.02.211.3.486.548.805.722.32.176.698.267 1.127.27.343.002.683-.07.997-.213a2.43 2.43 0 0 0 .824-.623c.24-.273.428-.607.564-1.004Z" }) + ] + } + ); +}); + +export { SiBugcrowd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.cjs new file mode 100644 index 000000000..b5fe8d545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#023E84"; +const SiBuhl = React__namespace.forwardRef(function SiBuhl2({ title = "Buhl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.3409 10.8756a1.697 1.697 0 0 0-.4196-.7807 1.593 1.593 0 0 0-.76-.3968 5.17 5.17 0 0 0-1.1423-.1128c-.1072 0-.2232.0044-.36.0136a6.4 6.4 0 0 0-.406.04l-.4.054c-.1292.018-.25.0316-.3524.04-.0716 0-.116-.0224-.1336-.0632V6.941a.124.124 0 0 0-.0328-.1032.12.12 0 0 0-.1028-.0352h-1.0083a.09.09 0 0 0-.0492.0092.12.12 0 0 0-.08.1308v.0436c0 .0272-.0044.054-.0044.0904l.0044.1084v9.7196a.124.124 0 0 0 .0328.1032.12.12 0 0 0 .1008.0368h1c.0891 0 .134-.0452.134-.14v-6.0798a.173.173 0 0 1 .12-.0992 5.48 5.48 0 0 1 1.2179-.1128 3.2 3.2 0 0 1 .7675.0768.88.88 0 0 1 .4596.2664 1.09 1.09 0 0 1 .2232.5148 3.13 3.13 0 0 1 .058.6776v4.7518c0 .0948.0448.14.1292.14h.9952c.0892 0 .1292-.0452.1292-.14V12.136a4.8 4.8 0 0 0-.12-1.2604ZM1.3876 15.3243H.134c-.0892 0-.134.04-.134.1248v1.2671c0 .0848.0448.1248.134.1248h1.2536c.0892 0 .134-.04.134-.1248v-1.2671a.1176.1176 0 0 0-.134-.1248M23.8664 6.801h-1c-.0892 0-.134.0452-.134.14v9.9652a.124.124 0 0 0 .0328.1032.12.12 0 0 0 .1012.0368h1c.0892 0 .1336-.0452.1336-.14V6.941c.0004-.0948-.044-.14-.1336-.14m-9.1689 3.0455h-.9952c-.0892 0-.1292.0448-.1292.134v5.9146c0 .0716-.0448.12-.1291.1472a3.6 3.6 0 0 1-.5044.08 6.1 6.1 0 0 1-.5844.0268 3.66 3.66 0 0 1-.812-.076.926.926 0 0 1-.754-.7716 3.63 3.63 0 0 1-.0716-.794v-4.529a.1168.1168 0 0 0-.1292-.134h-.9951c-.0892 0-.1292.0448-.1292.134v4.6678a5 5 0 0 0 .1292 1.236 1.576 1.576 0 0 0 .4596.7807 1.91 1.91 0 0 0 .8923.4148 7 7 0 0 0 1.428.12c.156 0 .3348-.0088.5312-.0224s.4-.0356.6111-.0624q.3169-.0402.6248-.0936c.2052-.0356.3972-.0716.5712-.1072.0892-.018.1292-.0624.1292-.134V9.9785a.1288.1288 0 0 0-.1432-.134Zm-7.023.5587a1.97 1.97 0 0 0-.9231-.6051 4.67 4.67 0 0 0-1.41-.1852 4.9 4.9 0 0 0-.7364.054 3.9 3.9 0 0 1-.4727.054q-.1072 0-.1072-.0948V6.9366a.12.12 0 0 0-.0316-.1004.116.116 0 0 0-.0984-.0332h-1c-.0888 0-.1288.0432-.1288.1788v9.8368c0 .018.04.0632.116.0904a8.7 8.7 0 0 0 .9864.2076 8.4 8.4 0 0 0 1.2227.08 4.6 4.6 0 0 0 1.6-.24 2.09 2.09 0 0 0 .9903-.7495 3.15 3.15 0 0 0 .5044-1.28 9.93 9.93 0 0 0 .1428-1.8291 7.1 7.1 0 0 0-.1516-1.6036 2.55 2.55 0 0 0-.5028-1.0892m-.72 4.2591a2.2 2.2 0 0 1-.2631.9124 1.102 1.102 0 0 1-.5888.4832 3.2 3.2 0 0 1-1.0308.1356c-.1472 0-.32-.0092-.5132-.0224a1.84 1.84 0 0 1-.446-.0768.135.135 0 0 1-.0935-.1492v-4.9955a.185.185 0 0 1 .1072-.194 3.7 3.7 0 0 1 .4195-.08 4.2 4.2 0 0 1 .6156-.04 3.15 3.15 0 0 1 .8968.1084 1.04 1.04 0 0 1 .5712.4064 1.98 1.98 0 0 1 .2968.8104 7.7 7.7 0 0 1 .0848 1.2827 12.9 12.9 0 0 1-.0536 1.418zm-5.567-4.9078H.134c-.0892 0-.134.04-.134.1248v1.2671c0 .0848.0448.1248.134.1248h1.2536c.0892 0 .134-.04.134-.1248V9.8813a.1176.1176 0 0 0-.134-.1248" }) + ] + } + ); +}); + +exports.default = SiBuhl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.d.ts new file mode 100644 index 000000000..7f1db3865 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#023E84"; +declare const SiBuhl: IconType; +export { SiBuhl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.mjs new file mode 100644 index 000000000..ba8400a7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuhl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#023E84"; +const SiBuhl = React.forwardRef(function SiBuhl2({ title = "Buhl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.3409 10.8756a1.697 1.697 0 0 0-.4196-.7807 1.593 1.593 0 0 0-.76-.3968 5.17 5.17 0 0 0-1.1423-.1128c-.1072 0-.2232.0044-.36.0136a6.4 6.4 0 0 0-.406.04l-.4.054c-.1292.018-.25.0316-.3524.04-.0716 0-.116-.0224-.1336-.0632V6.941a.124.124 0 0 0-.0328-.1032.12.12 0 0 0-.1028-.0352h-1.0083a.09.09 0 0 0-.0492.0092.12.12 0 0 0-.08.1308v.0436c0 .0272-.0044.054-.0044.0904l.0044.1084v9.7196a.124.124 0 0 0 .0328.1032.12.12 0 0 0 .1008.0368h1c.0891 0 .134-.0452.134-.14v-6.0798a.173.173 0 0 1 .12-.0992 5.48 5.48 0 0 1 1.2179-.1128 3.2 3.2 0 0 1 .7675.0768.88.88 0 0 1 .4596.2664 1.09 1.09 0 0 1 .2232.5148 3.13 3.13 0 0 1 .058.6776v4.7518c0 .0948.0448.14.1292.14h.9952c.0892 0 .1292-.0452.1292-.14V12.136a4.8 4.8 0 0 0-.12-1.2604ZM1.3876 15.3243H.134c-.0892 0-.134.04-.134.1248v1.2671c0 .0848.0448.1248.134.1248h1.2536c.0892 0 .134-.04.134-.1248v-1.2671a.1176.1176 0 0 0-.134-.1248M23.8664 6.801h-1c-.0892 0-.134.0452-.134.14v9.9652a.124.124 0 0 0 .0328.1032.12.12 0 0 0 .1012.0368h1c.0892 0 .1336-.0452.1336-.14V6.941c.0004-.0948-.044-.14-.1336-.14m-9.1689 3.0455h-.9952c-.0892 0-.1292.0448-.1292.134v5.9146c0 .0716-.0448.12-.1291.1472a3.6 3.6 0 0 1-.5044.08 6.1 6.1 0 0 1-.5844.0268 3.66 3.66 0 0 1-.812-.076.926.926 0 0 1-.754-.7716 3.63 3.63 0 0 1-.0716-.794v-4.529a.1168.1168 0 0 0-.1292-.134h-.9951c-.0892 0-.1292.0448-.1292.134v4.6678a5 5 0 0 0 .1292 1.236 1.576 1.576 0 0 0 .4596.7807 1.91 1.91 0 0 0 .8923.4148 7 7 0 0 0 1.428.12c.156 0 .3348-.0088.5312-.0224s.4-.0356.6111-.0624q.3169-.0402.6248-.0936c.2052-.0356.3972-.0716.5712-.1072.0892-.018.1292-.0624.1292-.134V9.9785a.1288.1288 0 0 0-.1432-.134Zm-7.023.5587a1.97 1.97 0 0 0-.9231-.6051 4.67 4.67 0 0 0-1.41-.1852 4.9 4.9 0 0 0-.7364.054 3.9 3.9 0 0 1-.4727.054q-.1072 0-.1072-.0948V6.9366a.12.12 0 0 0-.0316-.1004.116.116 0 0 0-.0984-.0332h-1c-.0888 0-.1288.0432-.1288.1788v9.8368c0 .018.04.0632.116.0904a8.7 8.7 0 0 0 .9864.2076 8.4 8.4 0 0 0 1.2227.08 4.6 4.6 0 0 0 1.6-.24 2.09 2.09 0 0 0 .9903-.7495 3.15 3.15 0 0 0 .5044-1.28 9.93 9.93 0 0 0 .1428-1.8291 7.1 7.1 0 0 0-.1516-1.6036 2.55 2.55 0 0 0-.5028-1.0892m-.72 4.2591a2.2 2.2 0 0 1-.2631.9124 1.102 1.102 0 0 1-.5888.4832 3.2 3.2 0 0 1-1.0308.1356c-.1472 0-.32-.0092-.5132-.0224a1.84 1.84 0 0 1-.446-.0768.135.135 0 0 1-.0935-.1492v-4.9955a.185.185 0 0 1 .1072-.194 3.7 3.7 0 0 1 .4195-.08 4.2 4.2 0 0 1 .6156-.04 3.15 3.15 0 0 1 .8968.1084 1.04 1.04 0 0 1 .5712.4064 1.98 1.98 0 0 1 .2968.8104 7.7 7.7 0 0 1 .0848 1.2827 12.9 12.9 0 0 1-.0536 1.418zm-5.567-4.9078H.134c-.0892 0-.134.04-.134.1248v1.2671c0 .0848.0448.1248.134.1248h1.2536c.0892 0 .134-.04.134-.1248V9.8813a.1176.1176 0 0 0-.134-.1248" }) + ] + } + ); +}); + +export { SiBuhl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.cjs new file mode 100644 index 000000000..6df3ce328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14CC80"; +const SiBuildkite = React__namespace.forwardRef(function SiBuildkite2({ title = "Buildkite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.613 8.143l-7.668-3.856v7.712l7.668-3.855zM8.166 15.857V8.143L.387 4.287V12l7.78 3.857zM.183 3.958a.382.382 0 01.377-.017l7.606 3.771 7.607-3.771a.386.386 0 01.346 0l7.668 3.857a.386.386 0 01.213.345v7.71a.388.388 0 01-.213.346l-7.668 3.86a.389.389 0 01-.562-.345v-7.09l-7.219 3.58a.392.392 0 01-.344 0L.215 12.346A.387.387 0 010 12V4.287a.385.385 0 01.183-.329z" }) + ] + } + ); +}); + +exports.default = SiBuildkite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.d.ts new file mode 100644 index 000000000..936df274a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14CC80"; +declare const SiBuildkite: IconType; +export { SiBuildkite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.mjs new file mode 100644 index 000000000..389026efe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuildkite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14CC80"; +const SiBuildkite = React.forwardRef(function SiBuildkite2({ title = "Buildkite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.613 8.143l-7.668-3.856v7.712l7.668-3.855zM8.166 15.857V8.143L.387 4.287V12l7.78 3.857zM.183 3.958a.382.382 0 01.377-.017l7.606 3.771 7.607-3.771a.386.386 0 01.346 0l7.668 3.857a.386.386 0 01.213.345v7.71a.388.388 0 01-.213.346l-7.668 3.86a.389.389 0 01-.562-.345v-7.09l-7.219 3.58a.392.392 0 01-.344 0L.215 12.346A.387.387 0 010 12V4.287a.385.385 0 01.183-.329z" }) + ] + } + ); +}); + +export { SiBuildkite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.cjs new file mode 100644 index 000000000..93052f1cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D87C3"; +const SiBuiltbybit = React__namespace.forwardRef(function SiBuiltbybit2({ title = "BuiltByBit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.877.032 1.252 5.885a.253.253 0 0 0 .003.446l5.679 3.02c.077.041.17.04.246-.004l4.694-2.697a.254.254 0 0 1 .253 0l4.692 2.697a.253.253 0 0 0 .246.004l5.682-3.021a.253.253 0 0 0 .003-.446L12.122.031a.254.254 0 0 0-.245 0ZM6.924 10.898l-5.71-3.036a.254.254 0 0 0-.373.224V18.25c0 .093.05.178.131.222l9.976 5.495a.254.254 0 0 0 .376-.222v-6.053a.255.255 0 0 0-.127-.22l-4.012-2.305a.252.252 0 0 1-.127-.22v-3.825a.253.253 0 0 0-.135-.224Zm10.152 0 5.71-3.035a.254.254 0 0 1 .373.224v10.164c0 .093-.05.178-.131.222l-9.976 5.495a.254.254 0 0 1-.376-.222v-6.053c0-.091.049-.175.127-.22l4.012-2.305a.252.252 0 0 0 .127-.22v-3.825c0-.094.052-.18.135-.224Z" }) + ] + } + ); +}); + +exports.default = SiBuiltbybit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.d.ts new file mode 100644 index 000000000..6aaf54704 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D87C3"; +declare const SiBuiltbybit: IconType; +export { SiBuiltbybit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.mjs new file mode 100644 index 000000000..7a8f300a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuiltbybit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D87C3"; +const SiBuiltbybit = React.forwardRef(function SiBuiltbybit2({ title = "BuiltByBit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.877.032 1.252 5.885a.253.253 0 0 0 .003.446l5.679 3.02c.077.041.17.04.246-.004l4.694-2.697a.254.254 0 0 1 .253 0l4.692 2.697a.253.253 0 0 0 .246.004l5.682-3.021a.253.253 0 0 0 .003-.446L12.122.031a.254.254 0 0 0-.245 0ZM6.924 10.898l-5.71-3.036a.254.254 0 0 0-.373.224V18.25c0 .093.05.178.131.222l9.976 5.495a.254.254 0 0 0 .376-.222v-6.053a.255.255 0 0 0-.127-.22l-4.012-2.305a.252.252 0 0 1-.127-.22v-3.825a.253.253 0 0 0-.135-.224Zm10.152 0 5.71-3.035a.254.254 0 0 1 .373.224v10.164c0 .093-.05.178-.131.222l-9.976 5.495a.254.254 0 0 1-.376-.222v-6.053c0-.091.049-.175.127-.22l4.012-2.305a.252.252 0 0 0 .127-.22v-3.825c0-.094.052-.18.135-.224Z" }) + ] + } + ); +}); + +export { SiBuiltbybit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.cjs new file mode 100644 index 000000000..cdd840b23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E31E52"; +const SiBukalapak = React__namespace.forwardRef(function SiBukalapak2({ title = "Bukalapak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.976 23.845a3.158 3.158 0 1 1-1.95-6.008 3.158 3.158 0 0 1 1.95 6.008Zm6.554-2.883c4.047-1.315 7.315-5.981 5.689-10.984-1.626-5.003-7.012-6.856-11.058-5.541a1.89 1.89 0 0 0-1.252 2.249l.414 1.682a1.892 1.892 0 0 0 2.42 1.348l.162-.053c1.861-.606 3.592.504 4.071 2.019.505 1.507-.244 3.422-2.106 4.027l-.162.054a1.891 1.891 0 0 0-1.166 2.512l.653 1.604a1.89 1.89 0 0 0 2.335 1.083Zm-6.962-7.982L7.841 1.752A2.3 2.3 0 0 0 4.897.113l-2.952.959A2.3 2.3 0 0 0 .526 4.128L4.92 14.815a2.3 2.3 0 0 0 2.841 1.318l1.285-.417a2.298 2.298 0 0 0 1.522-2.736Z" }) + ] + } + ); +}); + +exports.default = SiBukalapak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.d.ts new file mode 100644 index 000000000..0a9942ed6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E31E52"; +declare const SiBukalapak: IconType; +export { SiBukalapak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.mjs new file mode 100644 index 000000000..edbc16110 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBukalapak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E31E52"; +const SiBukalapak = React.forwardRef(function SiBukalapak2({ title = "Bukalapak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.976 23.845a3.158 3.158 0 1 1-1.95-6.008 3.158 3.158 0 0 1 1.95 6.008Zm6.554-2.883c4.047-1.315 7.315-5.981 5.689-10.984-1.626-5.003-7.012-6.856-11.058-5.541a1.89 1.89 0 0 0-1.252 2.249l.414 1.682a1.892 1.892 0 0 0 2.42 1.348l.162-.053c1.861-.606 3.592.504 4.071 2.019.505 1.507-.244 3.422-2.106 4.027l-.162.054a1.891 1.891 0 0 0-1.166 2.512l.653 1.604a1.89 1.89 0 0 0 2.335 1.083Zm-6.962-7.982L7.841 1.752A2.3 2.3 0 0 0 4.897.113l-2.952.959A2.3 2.3 0 0 0 .526 4.128L4.92 14.815a2.3 2.3 0 0 0 2.841 1.318l1.285-.417a2.298 2.298 0 0 0 1.522-2.736Z" }) + ] + } + ); +}); + +export { SiBukalapak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.cjs new file mode 100644 index 000000000..df1c4d239 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D1B2"; +const SiBulma = React__namespace.forwardRef(function SiBulma2({ title = "Bulma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.25 0l-6 6 -1.5 10.5 7.5 7.5 9 -6 -6 -6 4.5 -4.5 -7.5 -7.5Z" }) + ] + } + ); +}); + +exports.default = SiBulma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.d.ts new file mode 100644 index 000000000..6a6cbd083 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D1B2"; +declare const SiBulma: IconType; +export { SiBulma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.mjs new file mode 100644 index 000000000..73ce9395d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBulma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D1B2"; +const SiBulma = React.forwardRef(function SiBulma2({ title = "Bulma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.25 0l-6 6 -1.5 10.5 7.5 7.5 9 -6 -6 -6 4.5 -4.5 -7.5 -7.5Z" }) + ] + } + ); +}); + +export { SiBulma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBun.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBun.cjs new file mode 100644 index 000000000..71b1c263f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBun.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBun = React__namespace.forwardRef(function SiBun2({ title = "Bun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22.596c6.628 0 12-4.338 12-9.688 0-3.318-2.057-6.248-5.219-7.986-1.286-.715-2.297-1.357-3.139-1.89C14.058 2.025 13.08 1.404 12 1.404c-1.097 0-2.334.785-3.966 1.821a49.92 49.92 0 0 1-2.816 1.697C2.057 6.66 0 9.59 0 12.908c0 5.35 5.372 9.687 12 9.687v.001ZM10.599 4.715c.334-.759.503-1.58.498-2.409 0-.145.202-.187.23-.029.658 2.783-.902 4.162-2.057 4.624-.124.048-.199-.121-.103-.209a5.763 5.763 0 0 0 1.432-1.977Zm2.058-.102a5.82 5.82 0 0 0-.782-2.306v-.016c-.069-.123.086-.263.185-.172 1.962 2.111 1.307 4.067.556 5.051-.082.103-.23-.003-.189-.126a5.85 5.85 0 0 0 .23-2.431Zm1.776-.561a5.727 5.727 0 0 0-1.612-1.806v-.014c-.112-.085-.024-.274.114-.218 2.595 1.087 2.774 3.18 2.459 4.407a.116.116 0 0 1-.049.071.11.11 0 0 1-.153-.026.122.122 0 0 1-.022-.083 5.891 5.891 0 0 0-.737-2.331Zm-5.087.561c-.617.546-1.282.76-2.063 1-.117 0-.195-.078-.156-.181 1.752-.909 2.376-1.649 2.999-2.778 0 0 .155-.118.188.085 0 .304-.349 1.329-.968 1.874Zm4.945 11.237a2.957 2.957 0 0 1-.937 1.553c-.346.346-.8.565-1.286.62a2.178 2.178 0 0 1-1.327-.62 2.955 2.955 0 0 1-.925-1.553.244.244 0 0 1 .064-.198.234.234 0 0 1 .193-.069h3.965a.226.226 0 0 1 .19.07c.05.053.073.125.063.197Zm-5.458-2.176a1.862 1.862 0 0 1-2.384-.245 1.98 1.98 0 0 1-.233-2.447c.207-.319.503-.566.848-.713a1.84 1.84 0 0 1 1.092-.11c.366.075.703.261.967.531a1.98 1.98 0 0 1 .408 2.114 1.931 1.931 0 0 1-.698.869v.001Zm8.495.005a1.86 1.86 0 0 1-2.381-.253 1.964 1.964 0 0 1-.547-1.366c0-.384.11-.76.32-1.079.207-.319.503-.567.849-.713a1.844 1.844 0 0 1 1.093-.108c.367.076.704.262.968.534a1.98 1.98 0 0 1 .4 2.117 1.932 1.932 0 0 1-.702.868Z" }) + ] + } + ); +}); + +exports.default = SiBun; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBun.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBun.d.ts new file mode 100644 index 000000000..76a20beb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBun.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBun: IconType; +export { SiBun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBun.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBun.mjs new file mode 100644 index 000000000..f69088806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBun.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBun = React.forwardRef(function SiBun2({ title = "Bun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 22.596c6.628 0 12-4.338 12-9.688 0-3.318-2.057-6.248-5.219-7.986-1.286-.715-2.297-1.357-3.139-1.89C14.058 2.025 13.08 1.404 12 1.404c-1.097 0-2.334.785-3.966 1.821a49.92 49.92 0 0 1-2.816 1.697C2.057 6.66 0 9.59 0 12.908c0 5.35 5.372 9.687 12 9.687v.001ZM10.599 4.715c.334-.759.503-1.58.498-2.409 0-.145.202-.187.23-.029.658 2.783-.902 4.162-2.057 4.624-.124.048-.199-.121-.103-.209a5.763 5.763 0 0 0 1.432-1.977Zm2.058-.102a5.82 5.82 0 0 0-.782-2.306v-.016c-.069-.123.086-.263.185-.172 1.962 2.111 1.307 4.067.556 5.051-.082.103-.23-.003-.189-.126a5.85 5.85 0 0 0 .23-2.431Zm1.776-.561a5.727 5.727 0 0 0-1.612-1.806v-.014c-.112-.085-.024-.274.114-.218 2.595 1.087 2.774 3.18 2.459 4.407a.116.116 0 0 1-.049.071.11.11 0 0 1-.153-.026.122.122 0 0 1-.022-.083 5.891 5.891 0 0 0-.737-2.331Zm-5.087.561c-.617.546-1.282.76-2.063 1-.117 0-.195-.078-.156-.181 1.752-.909 2.376-1.649 2.999-2.778 0 0 .155-.118.188.085 0 .304-.349 1.329-.968 1.874Zm4.945 11.237a2.957 2.957 0 0 1-.937 1.553c-.346.346-.8.565-1.286.62a2.178 2.178 0 0 1-1.327-.62 2.955 2.955 0 0 1-.925-1.553.244.244 0 0 1 .064-.198.234.234 0 0 1 .193-.069h3.965a.226.226 0 0 1 .19.07c.05.053.073.125.063.197Zm-5.458-2.176a1.862 1.862 0 0 1-2.384-.245 1.98 1.98 0 0 1-.233-2.447c.207-.319.503-.566.848-.713a1.84 1.84 0 0 1 1.092-.11c.366.075.703.261.967.531a1.98 1.98 0 0 1 .408 2.114 1.931 1.931 0 0 1-.698.869v.001Zm8.495.005a1.86 1.86 0 0 1-2.381-.253 1.964 1.964 0 0 1-.547-1.366c0-.384.11-.76.32-1.079.207-.319.503-.567.849-.713a1.844 1.844 0 0 1 1.093-.108c.367.076.704.262.968.534a1.98 1.98 0 0 1 .4 2.117 1.932 1.932 0 0 1-.702.868Z" }) + ] + } + ); +}); + +export { SiBun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.cjs new file mode 100644 index 000000000..23608b07d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0075BB"; +const SiBungie = React__namespace.forwardRef(function SiBungie2({ title = "Bungie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.864 12.77-1.1007-.8182V.4648L12.4037.9653 2.044.4656v2.9316L.4312 2.7555c-.06-.0253-.227-.0542-.3499.0823-.1358.1509-.0945.384.0753.484.629.389 1.2582.7778 1.8874 1.1665v7.538c.015 3.2383 2.4585 5.9808 4.8684 7.9678 2.3723 1.9447 4.7727 3.1716 5.0747 3.323.07.0362.2156.1098.4323.218l.4-.2188c.2-.0996 2.6523-1.3367 5.0748-3.323 2.1925-1.8066 4.4-4.2416 4.7946-7.1025l.8598.4236c.1934.0967.4625-.05.451-.2981-.0065-.1693-.1358-.2444-.1357-.2463zM2.408.8476l9.9957.4817c3.3321-.16 6.6643-.3215 9.9964-.4824V11.681l-.4918-.3655.0039-.3609V1.3042l-9.5038.4628-9.503-.4628v2.435l-.4974-.1977Zm15.9223 2.941v-.4464h1.638l-.9531 2.2562h-.5288l.7837-1.8098zM11.857 8.5472c.2416.0972.371.342.371.342l.5955 1.0888 1.9368 1.2795c-.1718.3114-.2337.5578-.2651.6558a.897.897 0 0 0-.0196.0714l.2777 1.4654c-.0142.0047-.0275.0063-.0416.011-.4038.134-.7649.3613-1.1351.5656-.255.1432-.3047.1696-.4323.2157-.355.128-.606.0754-.8198.0164-.0286-.0082-.0575-.0152-.0863-.0228-.2338-.0431-.5844-.3444-.866-.586-.3921-.3351-.5167-.434-.8096-.5664-.0137-.0074-.0283-.013-.0424-.0195l.448-1.5713c-.5937-.966-1.1863-1.9328-1.7792-2.8993a.1434.1434 0 0 1 .0126-.1891l1.2112-2.2538c.0443-.069.1362-.0816.1961-.0423.8363.3395 1.658.7123 2.4812 1.0817.0714.029.1036.113.0738.1867l-.5436.8684c-.0332.0802-.1212.1068-.1836.08l-1.2426-.498-.1874.3082c-.0024.0008.193.0777.8503.4119zm6.7692 6.9738c.0572.1608-.1389.3452-.1805.4903-.0172.0596-.0086.1397-.0298.2016-.0886.2503-.2879.4676-.4165.6974a.2579.2579 0 0 1-.1004-.0306c-.1342-.073.3036-.5828.3389-.644.0839-.1428-.728-.1428-.775-.1663-.1695-.0832-.2958-.3005-.361-.47-.0666-.174-.1223-.495.1036-.5757.0977-.0379.2105.0163.317-.022.0823-.0306.1537-.1263.207-.1867-.2384-.1915-.4612-.2605-.6809-.2605-.3781 0-.7476.2055-1.1728.3538-.2886.055-.5561.098-.6754.1224-.5083.1035-1.015.5397-1.4167.673-.6198.2249-1.1461.1914-1.1971.1875-.5797-.0455-.9579-.0494-1.827-.7829-.452-.3575-.568-.6149-1.7447-.862-.5201-.1043-.9947-.2259-.9665-.5161.0079-.1828.3177-.3562.237-.5398-.0424-.0964-.084-.3286-.0134-.48-.149-.2825-.2855-.3444-.6888-.47-.2398-.0747-.437-.07-.4502-.0674.0156.0808.0196.1656.0054.2464-.0365.1955-.1314.6952-.5161.6314-.0165-.0447.1655-.2541-.1255-.5961-.175-.2017-.5296-.7782-.146-1.0528.4331-.3031.9909-.1012 1.3227.073.103.0886.8765.1811 1.2347.2557.4244.084.7484.4778.4503.7735-.1938.1593-.5036.3781-.353.448.103.023.5009.1161.5766.1373.229.062.491.1412.717.2314.0085.0031.236.0972.3577.1757.4377.2809 1.0308.965 1.5195 1.056.0847.0195.28.0901.5475.0901.3937 0 .7335-.1807.8308-.2377.0651-.0345.1279-.0698.1914-.105.368-.2072.7092-.415 1.066-.5343.2852-.095.4896-.0988.5178-.0988.2503-.0283.4911-.0424.5664-.0667.3742-.1177.757-.2534 1.1477-.2534.5264 0 .8862.245 1.157.6103.0777.1043.4606.641.3562.7743-.116.1506-.3702.3106-.4016.5115-.0304.2039.07.2033.198.1902.128-.013.2343-.0217.2727.088zm-4.5452 2.8908c.0478.0016.0298.066.0635.051.0322-.0157.0596-.0204.0792.033.0251.0698-.065.0416-.0415.0714.0306.04-.0738.1835-.1389.215-.0651.0297-.0627-.0503-.1106-.051-.0494-.0017-.0337.0305-.0565-.0103-.0227-.04-.0063-.0722.0189-.0949.025-.0235-.004-.0651-.004-.0651l-.1192-.375-.9986.8112 1.0041.8911s.164.3436.0824.3397c-.2008-.0071-.3366-.0361-.3366-.0361l-1.11-.9021-1.11.9021s-.1357.029-.3365.036c-.0824.0032.0823-.3396.0823-.3396l1.0042-.8911-.9987-.8112-.1192.375s-.029.0416-.004.0651c.0252.0235.0417.055.019.095-.0228.0407-.0072.0085-.0566.0101-.0478.0008-.0455.0808-.1106.051-.065-.0306-.1694-.175-.1388-.215.0235-.0297-.0667-.0007-.0424-.0713.0196-.0534.0463-.0487.0792-.033.0338.015.015-.0486.0636-.051.0698-.0016.0988-.5232.0988-.5232l-.6166-.5444-.091-.1075s-.0965.0188-.1623-.0431c-.0667-.062-.0863-.2354-.0204-.3146.062-.0738.1945-.0879.309.0227.0651.062.0526.1318.0526.1318l.1114.0942.6519.4957s.5177-.1757.513-.2235c-.0047-.0479.0612-.0377.0424-.0683-.0196-.0298-.0283-.0572.0243-.0823.0667-.033.0486.0596.076.0329.0362-.0353.1954.047.2339.1075.0376.0604-.0432.0674-.0385.116.0047.0471.0353.0291-.0024.0558-.0376.0282-.0721.0141-.098-.0078-.037-.029-.0165-.044-.0165-.044l-.4064.2723 1.0065.8935 1.0065-.8935-.4064-.2723s.0204.015-.0164.044c-.026.022-.0604.0353-.0981.0078-.0377-.0267-.0071-.0086-.0024-.0557.0047-.0487-.076-.0557-.0384-.1161.0392-.0604.1976-.1428.2337-.1075.0267.0267.0094-.0667.0761-.033.0526.0252.0447.0526.0243.0824-.0188.0306.0471.0204.0424.0683-.0039.0478.513.2235.513.2235l.652-.4957.1113-.0942s-.0133-.0698.0518-.1318c.1145-.1106.2471-.0965.309-.0227.066.0792.0464.2526-.0203.3146-.066.062-.1624.0431-.1624.0431l-.091.1075-.6166.5444c.0012-.0004.0341.5232.1005.5232zM12.089 6.459c-.1982-.0848-.3838-.1637-1.2763-.5452l.7719-1.2998a.144.144 0 0 1 .1945-.0502l.9469.56a.1412.1412 0 0 1 .051.193zm.9367-.9837c.0426-.0698.1337-.0853.1953-.047l.8653.5122a.14.14 0 0 1 .047.1938c-.1688.2688-.4737.7593-.6887 1.1045a.4022.4022 0 0 0-.164-.2244.3808.3808 0 0 0-.0972-.0596l-.8379-.3758Zm1.2763.8715a.1432.1432 0 0 1 .1962-.0455l.7781.4582a.141.141 0 0 1 .0455.1937c-.8974 1.4307-1.0436 1.667-1.2983 2.0734-.0063.011-.011.022-.0165.033a.141.141 0 0 1-.1906.04l-.7774-.459c-.1067-.0648-.053-.1937-.0455-.1937.0057 0 .466-.7403 1.3085-2.1zm1.1477.8888a.1462.1462 0 0 1 .1969-.0462l.6166.3679a.1401.1401 0 0 1 .047.1937L15.1 9.6784c-.0447.071-.1377.0833-.1954.0463l-.6181-.3687a.1383.1383 0 0 1-.0455-.193zM.2868 3.1015c-.0536-.0318-.0323-.1258.0502-.1068L7.224 5.7325l-.1295-2.4044 3.4893 2.4703s-.04-.0165-.0996-.0165c-.1155 0-.2056.0594-.229.117-.2357.4394-.4724.8785-.7084 1.3178l-.888-.6205-.375 1.4466Zm17.376 16.6118c-2.3864 1.958-4.8198 3.1865-5.012 3.2822l-.2393.1302c-.0825-.0422-.1652-.0842-.2479-.1263-.211-.1043-2.6389-1.332-5.0198-3.2861-2.3855-1.9596-4.7334-4.6456-4.7358-7.687v-7.312c.1663.1017.3316.205.4974.3075v7.0076c0 5.7988 8.9264 10.3456 9.3069 10.5362l.2047.1043.1899-.1043c.3687-.186 8.8205-4.4958 9.2778-10.0702.1528.0746.305.1506.4574.226-.3232 2.7534-2.4766 5.1837-4.6794 6.9919zm6.0239-6.624h-.0016c-.0086 0-.022-.004-.022-.004l-5.5383-2.7284-.3805 2.5566-4.651-3.1112-.637-1.1735L14.495 9.781l.2761.1648c.0694.0428.1822.0604.2165.0604.2125 0 .3294-.1921.3295-.1922l.1482-.2361.142-.2095 1.074.8865.3412-2.2522 6.693 4.9774c.0502.0326.0274.1076-.029.109z" }) + ] + } + ); +}); + +exports.default = SiBungie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.d.ts new file mode 100644 index 000000000..7fa469abb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0075BB"; +declare const SiBungie: IconType; +export { SiBungie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.mjs new file mode 100644 index 000000000..50e9f4fa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBungie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0075BB"; +const SiBungie = React.forwardRef(function SiBungie2({ title = "Bungie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.864 12.77-1.1007-.8182V.4648L12.4037.9653 2.044.4656v2.9316L.4312 2.7555c-.06-.0253-.227-.0542-.3499.0823-.1358.1509-.0945.384.0753.484.629.389 1.2582.7778 1.8874 1.1665v7.538c.015 3.2383 2.4585 5.9808 4.8684 7.9678 2.3723 1.9447 4.7727 3.1716 5.0747 3.323.07.0362.2156.1098.4323.218l.4-.2188c.2-.0996 2.6523-1.3367 5.0748-3.323 2.1925-1.8066 4.4-4.2416 4.7946-7.1025l.8598.4236c.1934.0967.4625-.05.451-.2981-.0065-.1693-.1358-.2444-.1357-.2463zM2.408.8476l9.9957.4817c3.3321-.16 6.6643-.3215 9.9964-.4824V11.681l-.4918-.3655.0039-.3609V1.3042l-9.5038.4628-9.503-.4628v2.435l-.4974-.1977Zm15.9223 2.941v-.4464h1.638l-.9531 2.2562h-.5288l.7837-1.8098zM11.857 8.5472c.2416.0972.371.342.371.342l.5955 1.0888 1.9368 1.2795c-.1718.3114-.2337.5578-.2651.6558a.897.897 0 0 0-.0196.0714l.2777 1.4654c-.0142.0047-.0275.0063-.0416.011-.4038.134-.7649.3613-1.1351.5656-.255.1432-.3047.1696-.4323.2157-.355.128-.606.0754-.8198.0164-.0286-.0082-.0575-.0152-.0863-.0228-.2338-.0431-.5844-.3444-.866-.586-.3921-.3351-.5167-.434-.8096-.5664-.0137-.0074-.0283-.013-.0424-.0195l.448-1.5713c-.5937-.966-1.1863-1.9328-1.7792-2.8993a.1434.1434 0 0 1 .0126-.1891l1.2112-2.2538c.0443-.069.1362-.0816.1961-.0423.8363.3395 1.658.7123 2.4812 1.0817.0714.029.1036.113.0738.1867l-.5436.8684c-.0332.0802-.1212.1068-.1836.08l-1.2426-.498-.1874.3082c-.0024.0008.193.0777.8503.4119zm6.7692 6.9738c.0572.1608-.1389.3452-.1805.4903-.0172.0596-.0086.1397-.0298.2016-.0886.2503-.2879.4676-.4165.6974a.2579.2579 0 0 1-.1004-.0306c-.1342-.073.3036-.5828.3389-.644.0839-.1428-.728-.1428-.775-.1663-.1695-.0832-.2958-.3005-.361-.47-.0666-.174-.1223-.495.1036-.5757.0977-.0379.2105.0163.317-.022.0823-.0306.1537-.1263.207-.1867-.2384-.1915-.4612-.2605-.6809-.2605-.3781 0-.7476.2055-1.1728.3538-.2886.055-.5561.098-.6754.1224-.5083.1035-1.015.5397-1.4167.673-.6198.2249-1.1461.1914-1.1971.1875-.5797-.0455-.9579-.0494-1.827-.7829-.452-.3575-.568-.6149-1.7447-.862-.5201-.1043-.9947-.2259-.9665-.5161.0079-.1828.3177-.3562.237-.5398-.0424-.0964-.084-.3286-.0134-.48-.149-.2825-.2855-.3444-.6888-.47-.2398-.0747-.437-.07-.4502-.0674.0156.0808.0196.1656.0054.2464-.0365.1955-.1314.6952-.5161.6314-.0165-.0447.1655-.2541-.1255-.5961-.175-.2017-.5296-.7782-.146-1.0528.4331-.3031.9909-.1012 1.3227.073.103.0886.8765.1811 1.2347.2557.4244.084.7484.4778.4503.7735-.1938.1593-.5036.3781-.353.448.103.023.5009.1161.5766.1373.229.062.491.1412.717.2314.0085.0031.236.0972.3577.1757.4377.2809 1.0308.965 1.5195 1.056.0847.0195.28.0901.5475.0901.3937 0 .7335-.1807.8308-.2377.0651-.0345.1279-.0698.1914-.105.368-.2072.7092-.415 1.066-.5343.2852-.095.4896-.0988.5178-.0988.2503-.0283.4911-.0424.5664-.0667.3742-.1177.757-.2534 1.1477-.2534.5264 0 .8862.245 1.157.6103.0777.1043.4606.641.3562.7743-.116.1506-.3702.3106-.4016.5115-.0304.2039.07.2033.198.1902.128-.013.2343-.0217.2727.088zm-4.5452 2.8908c.0478.0016.0298.066.0635.051.0322-.0157.0596-.0204.0792.033.0251.0698-.065.0416-.0415.0714.0306.04-.0738.1835-.1389.215-.0651.0297-.0627-.0503-.1106-.051-.0494-.0017-.0337.0305-.0565-.0103-.0227-.04-.0063-.0722.0189-.0949.025-.0235-.004-.0651-.004-.0651l-.1192-.375-.9986.8112 1.0041.8911s.164.3436.0824.3397c-.2008-.0071-.3366-.0361-.3366-.0361l-1.11-.9021-1.11.9021s-.1357.029-.3365.036c-.0824.0032.0823-.3396.0823-.3396l1.0042-.8911-.9987-.8112-.1192.375s-.029.0416-.004.0651c.0252.0235.0417.055.019.095-.0228.0407-.0072.0085-.0566.0101-.0478.0008-.0455.0808-.1106.051-.065-.0306-.1694-.175-.1388-.215.0235-.0297-.0667-.0007-.0424-.0713.0196-.0534.0463-.0487.0792-.033.0338.015.015-.0486.0636-.051.0698-.0016.0988-.5232.0988-.5232l-.6166-.5444-.091-.1075s-.0965.0188-.1623-.0431c-.0667-.062-.0863-.2354-.0204-.3146.062-.0738.1945-.0879.309.0227.0651.062.0526.1318.0526.1318l.1114.0942.6519.4957s.5177-.1757.513-.2235c-.0047-.0479.0612-.0377.0424-.0683-.0196-.0298-.0283-.0572.0243-.0823.0667-.033.0486.0596.076.0329.0362-.0353.1954.047.2339.1075.0376.0604-.0432.0674-.0385.116.0047.0471.0353.0291-.0024.0558-.0376.0282-.0721.0141-.098-.0078-.037-.029-.0165-.044-.0165-.044l-.4064.2723 1.0065.8935 1.0065-.8935-.4064-.2723s.0204.015-.0164.044c-.026.022-.0604.0353-.0981.0078-.0377-.0267-.0071-.0086-.0024-.0557.0047-.0487-.076-.0557-.0384-.1161.0392-.0604.1976-.1428.2337-.1075.0267.0267.0094-.0667.0761-.033.0526.0252.0447.0526.0243.0824-.0188.0306.0471.0204.0424.0683-.0039.0478.513.2235.513.2235l.652-.4957.1113-.0942s-.0133-.0698.0518-.1318c.1145-.1106.2471-.0965.309-.0227.066.0792.0464.2526-.0203.3146-.066.062-.1624.0431-.1624.0431l-.091.1075-.6166.5444c.0012-.0004.0341.5232.1005.5232zM12.089 6.459c-.1982-.0848-.3838-.1637-1.2763-.5452l.7719-1.2998a.144.144 0 0 1 .1945-.0502l.9469.56a.1412.1412 0 0 1 .051.193zm.9367-.9837c.0426-.0698.1337-.0853.1953-.047l.8653.5122a.14.14 0 0 1 .047.1938c-.1688.2688-.4737.7593-.6887 1.1045a.4022.4022 0 0 0-.164-.2244.3808.3808 0 0 0-.0972-.0596l-.8379-.3758Zm1.2763.8715a.1432.1432 0 0 1 .1962-.0455l.7781.4582a.141.141 0 0 1 .0455.1937c-.8974 1.4307-1.0436 1.667-1.2983 2.0734-.0063.011-.011.022-.0165.033a.141.141 0 0 1-.1906.04l-.7774-.459c-.1067-.0648-.053-.1937-.0455-.1937.0057 0 .466-.7403 1.3085-2.1zm1.1477.8888a.1462.1462 0 0 1 .1969-.0462l.6166.3679a.1401.1401 0 0 1 .047.1937L15.1 9.6784c-.0447.071-.1377.0833-.1954.0463l-.6181-.3687a.1383.1383 0 0 1-.0455-.193zM.2868 3.1015c-.0536-.0318-.0323-.1258.0502-.1068L7.224 5.7325l-.1295-2.4044 3.4893 2.4703s-.04-.0165-.0996-.0165c-.1155 0-.2056.0594-.229.117-.2357.4394-.4724.8785-.7084 1.3178l-.888-.6205-.375 1.4466Zm17.376 16.6118c-2.3864 1.958-4.8198 3.1865-5.012 3.2822l-.2393.1302c-.0825-.0422-.1652-.0842-.2479-.1263-.211-.1043-2.6389-1.332-5.0198-3.2861-2.3855-1.9596-4.7334-4.6456-4.7358-7.687v-7.312c.1663.1017.3316.205.4974.3075v7.0076c0 5.7988 8.9264 10.3456 9.3069 10.5362l.2047.1043.1899-.1043c.3687-.186 8.8205-4.4958 9.2778-10.0702.1528.0746.305.1506.4574.226-.3232 2.7534-2.4766 5.1837-4.6794 6.9919zm6.0239-6.624h-.0016c-.0086 0-.022-.004-.022-.004l-5.5383-2.7284-.3805 2.5566-4.651-3.1112-.637-1.1735L14.495 9.781l.2761.1648c.0694.0428.1822.0604.2165.0604.2125 0 .3294-.1921.3295-.1922l.1482-.2361.142-.2095 1.074.8865.3412-2.2522 6.693 4.9774c.0502.0326.0274.1076-.029.109z" }) + ] + } + ); +}); + +export { SiBungie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.cjs new file mode 100644 index 000000000..63b9c12ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFAA49"; +const SiBunnydotnet = React__namespace.forwardRef(function SiBunnydotnet2({ title = "bunny.net", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.978 3.828 5.642 3.104L13.436 0c-.86 1.126-1.033 2.59-.459 3.828ZM10.398 15.03c.688 0 1.262.563 1.262 1.294 0 .676-.574 1.239-1.32 1.239-.688 0-1.261-.563-1.261-1.239.057-.675.63-1.294 1.32-1.294ZM6.497 1.033l15.832 8.444c.402.169.516.62.344 1.013a.512.512 0 0 1-.344.338 10.919 10.919 0 0 1-3.9 1.463l-3.328 6.643s-1.032 2.308-3.9 1.407c1.204-1.182 2.638-2.252 2.638-4.053 0-1.914-1.549-3.434-3.499-3.434-1.95 0-3.5 1.52-3.5 3.434 0 2.364 2.41 3.378 3.73 5.01.573.844.516 1.97-.173 2.702-1.606-1.576-4.76-4.278-6.08-6.023a5.55 5.55 0 0 1-1.147-3.096c.114-2.477 1.835-4.616 4.244-5.348.746-.225 1.492-.281 2.238-.281 1.032.056 2.065.394 2.983.9 1.434.789 2.065.62 3.04-.225.573-.45 1.204-1.97.23-2.308a6.096 6.096 0 0 0-.976-.225C13.152 7.056 9.994 6.72 8.847 6.1 7.01 5.087 5.749 3.003 6.497 1.034ZM2.46 8.656c.631 0 1.21.516 1.21 1.187v1.186H2.46c-.631 0-1.21-.516-1.21-1.186 0-.62.526-1.187 1.21-1.187Z" }) + ] + } + ); +}); + +exports.default = SiBunnydotnet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.d.ts new file mode 100644 index 000000000..b98b031f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFAA49"; +declare const SiBunnydotnet: IconType; +export { SiBunnydotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.mjs new file mode 100644 index 000000000..0768aba18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBunnydotnet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFAA49"; +const SiBunnydotnet = React.forwardRef(function SiBunnydotnet2({ title = "bunny.net", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.978 3.828 5.642 3.104L13.436 0c-.86 1.126-1.033 2.59-.459 3.828ZM10.398 15.03c.688 0 1.262.563 1.262 1.294 0 .676-.574 1.239-1.32 1.239-.688 0-1.261-.563-1.261-1.239.057-.675.63-1.294 1.32-1.294ZM6.497 1.033l15.832 8.444c.402.169.516.62.344 1.013a.512.512 0 0 1-.344.338 10.919 10.919 0 0 1-3.9 1.463l-3.328 6.643s-1.032 2.308-3.9 1.407c1.204-1.182 2.638-2.252 2.638-4.053 0-1.914-1.549-3.434-3.499-3.434-1.95 0-3.5 1.52-3.5 3.434 0 2.364 2.41 3.378 3.73 5.01.573.844.516 1.97-.173 2.702-1.606-1.576-4.76-4.278-6.08-6.023a5.55 5.55 0 0 1-1.147-3.096c.114-2.477 1.835-4.616 4.244-5.348.746-.225 1.492-.281 2.238-.281 1.032.056 2.065.394 2.983.9 1.434.789 2.065.62 3.04-.225.573-.45 1.204-1.97.23-2.308a6.096 6.096 0 0 0-.976-.225C13.152 7.056 9.994 6.72 8.847 6.1 7.01 5.087 5.749 3.003 6.497 1.034ZM2.46 8.656c.631 0 1.21.516 1.21 1.187v1.186H2.46c-.631 0-1.21-.516-1.21-1.186 0-.62.526-1.187 1.21-1.187Z" }) + ] + } + ); +}); + +export { SiBunnydotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.cjs new file mode 100644 index 000000000..b98a1060d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3394D7"; +const SiBunq = React__namespace.forwardRef(function SiBunq2({ title = "bunq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.414 14.62h1.103v-2.896a2.484 2.484 0 0 0-2.483-2.483 2.484 2.484 0 0 0-2.482 2.483v2.897h1.103v-2.897c0-.837.618-1.517 1.38-1.517.76 0 1.379.68 1.379 1.517zm-6.07-5.24h1.104v2.896a2.484 2.484 0 0 1-2.482 2.483 2.484 2.484 0 0 1-2.483-2.483V9.379h1.103v2.897c0 .837.618 1.517 1.38 1.517.76 0 1.379-.68 1.379-1.517zM0 7.034V12c0 .046.001.093.004.139H0v2.482h.965l.055-.48A2.76 2.76 0 0 0 5.518 12a2.76 2.76 0 0 0-4.414-2.208V7.035zm2.69 3.172c.951 0 1.724.803 1.724 1.793 0 .99-.773 1.793-1.725 1.793-.951 0-1.724-.803-1.724-1.793 0-.99.773-1.793 1.724-1.793zm18.552-.965A2.76 2.76 0 0 0 18.482 12a2.76 2.76 0 0 0 4.414 2.207v2.758H24V12a2.15 2.15 0 0 0-.004-.139H24V9.38h-.965l-.055.48a2.741 2.741 0 0 0-1.738-.617zm.069.965c.951 0 1.724.803 1.724 1.793 0 .99-.773 1.793-1.724 1.793-.952 0-1.725-.803-1.725-1.793 0-.99.773-1.793 1.725-1.793Z" }) + ] + } + ); +}); + +exports.default = SiBunq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.d.ts new file mode 100644 index 000000000..6592848a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3394D7"; +declare const SiBunq: IconType; +export { SiBunq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.mjs new file mode 100644 index 000000000..54146d3a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBunq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3394D7"; +const SiBunq = React.forwardRef(function SiBunq2({ title = "bunq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.414 14.62h1.103v-2.896a2.484 2.484 0 0 0-2.483-2.483 2.484 2.484 0 0 0-2.482 2.483v2.897h1.103v-2.897c0-.837.618-1.517 1.38-1.517.76 0 1.379.68 1.379 1.517zm-6.07-5.24h1.104v2.896a2.484 2.484 0 0 1-2.482 2.483 2.484 2.484 0 0 1-2.483-2.483V9.379h1.103v2.897c0 .837.618 1.517 1.38 1.517.76 0 1.379-.68 1.379-1.517zM0 7.034V12c0 .046.001.093.004.139H0v2.482h.965l.055-.48A2.76 2.76 0 0 0 5.518 12a2.76 2.76 0 0 0-4.414-2.208V7.035zm2.69 3.172c.951 0 1.724.803 1.724 1.793 0 .99-.773 1.793-1.725 1.793-.951 0-1.724-.803-1.724-1.793 0-.99.773-1.793 1.724-1.793zm18.552-.965A2.76 2.76 0 0 0 18.482 12a2.76 2.76 0 0 0 4.414 2.207v2.758H24V12a2.15 2.15 0 0 0-.004-.139H24V9.38h-.965l-.055.48a2.741 2.741 0 0 0-1.738-.617zm.069.965c.951 0 1.724.803 1.724 1.793 0 .99-.773 1.793-1.724 1.793-.952 0-1.725-.803-1.725-1.793 0-.99.773-1.793 1.725-1.793Z" }) + ] + } + ); +}); + +export { SiBunq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.cjs new file mode 100644 index 000000000..2ef62d374 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D62300"; +const SiBurgerking = React__namespace.forwardRef(function SiBurgerking2({ title = "Burger King", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.39 12.614c-.72 0-1.11.538-1.11 1.215v1.508c0 .125-.043.182-.12.182-.056 0-.098-.035-.147-.133l-.971-1.885c-.37-.72-.755-.887-1.196-.887-.734 0-1.14.552-1.14 1.243v4.314c0 .678.392 1.215 1.112 1.215.72 0 1.112-.537 1.112-1.215v-1.507c0-.126.042-.182.119-.182.055 0 .097.035.146.133l.972 1.885c.37.719.769.886 1.195.886.735 0 1.14-.551 1.14-1.242v-4.315c0-.677-.391-1.215-1.111-1.215zm-4.02-.405c.364 0 .68-.286.68-.642 0-.238-.099-.412-.224-.572-.203-.266-.385-.496-.476-.74-.02-.056-.007-.105.056-.154.217-.167.469-.537.469-1.124 0-.886-.734-1.389-1.622-1.389h-.79c-.553 0-.819.321-.819.754v3.114c0 .419.245.754.692.754.448 0 .693-.335.693-.754v-.74c0-.09.042-.133.111-.133.084 0 .112.049.126.133.063.356.23.837.42 1.082.237.314.46.411.685.411zm-1.146-2.666h-.098c-.119 0-.175-.07-.175-.161v-.474c0-.09.056-.16.175-.16h.098c.294 0 .385.208.385.39 0 .174-.091.405-.385.405zm-3.761 2.666c1.132 0 1.734-.677 1.734-1.528V8.328c0-.419-.245-.754-.692-.754-.448 0-.693.335-.693.754v2.276c0 .167-.097.363-.35.363-.251 0-.335-.196-.335-.363V8.328c0-.419-.252-.754-.7-.754-.447 0-.691.335-.691.754v2.353c0 .852.594 1.528 1.727 1.528zm12.011-.034c.392 0 .7-.23.7-.65 0-.412-.308-.642-.7-.642h-.63c-.118 0-.174-.07-.174-.16v-.133c0-.091.056-.161.175-.161h.482c.336 0 .602-.202.602-.559 0-.355-.266-.558-.602-.558h-.482c-.12 0-.175-.07-.175-.16V9.04c0-.091.056-.161.175-.161h.629c.392 0 .7-.23.7-.65 0-.411-.308-.642-.7-.642h-1.321c-.553 0-.818.321-.818.754v3.079c0 .432.265.754.818.754h1.321zm2.642 3.127h-.342c-.615 0-1.09.286-1.09.914 0 .573.517.845.901.845.189 0 .322.056.322.202 0 .182-.224.3-.462.3-.79 0-1.328-.537-1.328-1.535 0-1.11.734-1.515 1.3-1.515.692 0 .804.349 1.287.349a.927.927 0 0 0 .936-.915.95.95 0 0 0-.398-.788c-.427-.315-1.07-.545-1.979-.545-1.629 0-3.216 1.026-3.216 3.414 0 2.282 1.587 3.35 3.153 3.35 1.643 0 2.685-1.012 2.685-2.492 0-.935-.587-1.584-1.769-1.584zm-12.43-2.688c-.783 0-1.21.587-1.21 1.32v4.132c0 .734.427 1.32 1.21 1.32.783 0 1.21-.586 1.21-1.32v-4.132c0-.733-.427-1.32-1.21-1.32zm11.494-.405c.447 0 .692-.335.692-.754v-.74c0-.09.042-.132.112-.132.084 0 .111.049.125.133.063.355.231.837.42 1.082.238.314.461.412.685.412.363 0 .678-.286.678-.643 0-.237-.098-.412-.224-.572-.237-.3-.384-.496-.475-.74-.02-.056-.007-.105.056-.153.217-.168.469-.538.469-1.124 0-.887-.735-1.39-1.623-1.39h-.79c-.552 0-.817.321-.817.754v3.114c0 .419.244.753.692.753zm.615-3.301c0-.09.056-.161.175-.161h.098c.293 0 .384.21.384.391 0 .175-.09.405-.384.405h-.098c-.12 0-.175-.07-.175-.16zm-18.87 3.267h.986c.93 0 1.496-.622 1.496-1.397 0-.621-.37-.907-.454-.977-.035-.028-.07-.056-.07-.084 0-.035.021-.048.056-.09.133-.154.266-.398.266-.754 0-.838-.567-1.285-1.448-1.285h-.832c-.552 0-.817.321-.817.754v3.079c0 .433.265.754.817.754zm.413-3.386c0-.09.056-.16.175-.16h.09c.301 0 .392.209.392.39 0 .168-.09.405-.391.405h-.091c-.12 0-.175-.07-.175-.16zm0 1.634c0-.091.056-.161.175-.161h.126c.335 0 .433.223.433.426 0 .181-.098.44-.433.44h-.126c-.12 0-.175-.07-.175-.161zm11.878 1.794c1.098 0 1.79-.699 1.79-1.718 0-.649-.391-1.096-1.174-1.096h-.224c-.413 0-.734.196-.734.636 0 .39.342.58.601.58.133 0 .217.041.217.139 0 .125-.147.21-.315.21-.524 0-.88-.37-.88-1.062 0-.768.489-1.047.866-1.047.462 0 .539.238.86.238.37 0 .623-.308.623-.629a.669.669 0 0 0-.266-.544c-.294-.217-.706-.377-1.321-.377-1.084 0-2.14.712-2.14 2.36 0 1.576 1.056 2.31 2.097 2.31zm-8.718 3.762a.354.354 0 0 1-.07-.188c0-.077.042-.133.126-.21.196-.181.678-.635.944-1.047.202-.314.286-.6.286-.837 0-.607-.552-1.082-1.153-1.082-.385 0-.748.216-.993.614-.329.53-.72 1.145-.972 1.39-.063.062-.098.076-.146.076-.084 0-.12-.056-.12-.146v-.699c0-.684-.405-1.235-1.139-1.235-.74 0-1.14.551-1.14 1.235v4.3c0 .685.399 1.237 1.14 1.237.734 0 1.14-.552 1.14-1.236v-.991c0-.084.035-.147.119-.147.111 0 .14.112.167.168.161.384.63 1.2 1.063 1.682.294.32.657.524 1.042.524.65 0 1.196-.566 1.196-1.173 0-.377-.161-.657-.469-.991-.392-.427-.853-.986-1.021-1.244zm15.751 6.702C19.432 23.707 16.313 24 12 24c-4.313 0-7.432-.293-9.25-1.32-1.09-.614-1.642-1.451-1.642-2.052 0-.342.181-.537.587-.537h20.61c.406 0 .587.195.587.537 0 .6-.552 1.438-1.643 2.053zm1.056-15.917H1.695c-.406 0-.587-.209-.587-.586C1.108 3.944 4.47 0 12 0c7.46 0 10.892 3.944 10.892 6.178 0 .377-.181.586-.587.586Z" }) + ] + } + ); +}); + +exports.default = SiBurgerking; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.d.ts new file mode 100644 index 000000000..8c0cf1a4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D62300"; +declare const SiBurgerking: IconType; +export { SiBurgerking as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.mjs new file mode 100644 index 000000000..c7cd21a51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurgerking.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D62300"; +const SiBurgerking = React.forwardRef(function SiBurgerking2({ title = "Burger King", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.39 12.614c-.72 0-1.11.538-1.11 1.215v1.508c0 .125-.043.182-.12.182-.056 0-.098-.035-.147-.133l-.971-1.885c-.37-.72-.755-.887-1.196-.887-.734 0-1.14.552-1.14 1.243v4.314c0 .678.392 1.215 1.112 1.215.72 0 1.112-.537 1.112-1.215v-1.507c0-.126.042-.182.119-.182.055 0 .097.035.146.133l.972 1.885c.37.719.769.886 1.195.886.735 0 1.14-.551 1.14-1.242v-4.315c0-.677-.391-1.215-1.111-1.215zm-4.02-.405c.364 0 .68-.286.68-.642 0-.238-.099-.412-.224-.572-.203-.266-.385-.496-.476-.74-.02-.056-.007-.105.056-.154.217-.167.469-.537.469-1.124 0-.886-.734-1.389-1.622-1.389h-.79c-.553 0-.819.321-.819.754v3.114c0 .419.245.754.692.754.448 0 .693-.335.693-.754v-.74c0-.09.042-.133.111-.133.084 0 .112.049.126.133.063.356.23.837.42 1.082.237.314.46.411.685.411zm-1.146-2.666h-.098c-.119 0-.175-.07-.175-.161v-.474c0-.09.056-.16.175-.16h.098c.294 0 .385.208.385.39 0 .174-.091.405-.385.405zm-3.761 2.666c1.132 0 1.734-.677 1.734-1.528V8.328c0-.419-.245-.754-.692-.754-.448 0-.693.335-.693.754v2.276c0 .167-.097.363-.35.363-.251 0-.335-.196-.335-.363V8.328c0-.419-.252-.754-.7-.754-.447 0-.691.335-.691.754v2.353c0 .852.594 1.528 1.727 1.528zm12.011-.034c.392 0 .7-.23.7-.65 0-.412-.308-.642-.7-.642h-.63c-.118 0-.174-.07-.174-.16v-.133c0-.091.056-.161.175-.161h.482c.336 0 .602-.202.602-.559 0-.355-.266-.558-.602-.558h-.482c-.12 0-.175-.07-.175-.16V9.04c0-.091.056-.161.175-.161h.629c.392 0 .7-.23.7-.65 0-.411-.308-.642-.7-.642h-1.321c-.553 0-.818.321-.818.754v3.079c0 .432.265.754.818.754h1.321zm2.642 3.127h-.342c-.615 0-1.09.286-1.09.914 0 .573.517.845.901.845.189 0 .322.056.322.202 0 .182-.224.3-.462.3-.79 0-1.328-.537-1.328-1.535 0-1.11.734-1.515 1.3-1.515.692 0 .804.349 1.287.349a.927.927 0 0 0 .936-.915.95.95 0 0 0-.398-.788c-.427-.315-1.07-.545-1.979-.545-1.629 0-3.216 1.026-3.216 3.414 0 2.282 1.587 3.35 3.153 3.35 1.643 0 2.685-1.012 2.685-2.492 0-.935-.587-1.584-1.769-1.584zm-12.43-2.688c-.783 0-1.21.587-1.21 1.32v4.132c0 .734.427 1.32 1.21 1.32.783 0 1.21-.586 1.21-1.32v-4.132c0-.733-.427-1.32-1.21-1.32zm11.494-.405c.447 0 .692-.335.692-.754v-.74c0-.09.042-.132.112-.132.084 0 .111.049.125.133.063.355.231.837.42 1.082.238.314.461.412.685.412.363 0 .678-.286.678-.643 0-.237-.098-.412-.224-.572-.237-.3-.384-.496-.475-.74-.02-.056-.007-.105.056-.153.217-.168.469-.538.469-1.124 0-.887-.735-1.39-1.623-1.39h-.79c-.552 0-.817.321-.817.754v3.114c0 .419.244.753.692.753zm.615-3.301c0-.09.056-.161.175-.161h.098c.293 0 .384.21.384.391 0 .175-.09.405-.384.405h-.098c-.12 0-.175-.07-.175-.16zm-18.87 3.267h.986c.93 0 1.496-.622 1.496-1.397 0-.621-.37-.907-.454-.977-.035-.028-.07-.056-.07-.084 0-.035.021-.048.056-.09.133-.154.266-.398.266-.754 0-.838-.567-1.285-1.448-1.285h-.832c-.552 0-.817.321-.817.754v3.079c0 .433.265.754.817.754zm.413-3.386c0-.09.056-.16.175-.16h.09c.301 0 .392.209.392.39 0 .168-.09.405-.391.405h-.091c-.12 0-.175-.07-.175-.16zm0 1.634c0-.091.056-.161.175-.161h.126c.335 0 .433.223.433.426 0 .181-.098.44-.433.44h-.126c-.12 0-.175-.07-.175-.161zm11.878 1.794c1.098 0 1.79-.699 1.79-1.718 0-.649-.391-1.096-1.174-1.096h-.224c-.413 0-.734.196-.734.636 0 .39.342.58.601.58.133 0 .217.041.217.139 0 .125-.147.21-.315.21-.524 0-.88-.37-.88-1.062 0-.768.489-1.047.866-1.047.462 0 .539.238.86.238.37 0 .623-.308.623-.629a.669.669 0 0 0-.266-.544c-.294-.217-.706-.377-1.321-.377-1.084 0-2.14.712-2.14 2.36 0 1.576 1.056 2.31 2.097 2.31zm-8.718 3.762a.354.354 0 0 1-.07-.188c0-.077.042-.133.126-.21.196-.181.678-.635.944-1.047.202-.314.286-.6.286-.837 0-.607-.552-1.082-1.153-1.082-.385 0-.748.216-.993.614-.329.53-.72 1.145-.972 1.39-.063.062-.098.076-.146.076-.084 0-.12-.056-.12-.146v-.699c0-.684-.405-1.235-1.139-1.235-.74 0-1.14.551-1.14 1.235v4.3c0 .685.399 1.237 1.14 1.237.734 0 1.14-.552 1.14-1.236v-.991c0-.084.035-.147.119-.147.111 0 .14.112.167.168.161.384.63 1.2 1.063 1.682.294.32.657.524 1.042.524.65 0 1.196-.566 1.196-1.173 0-.377-.161-.657-.469-.991-.392-.427-.853-.986-1.021-1.244zm15.751 6.702C19.432 23.707 16.313 24 12 24c-4.313 0-7.432-.293-9.25-1.32-1.09-.614-1.642-1.451-1.642-2.052 0-.342.181-.537.587-.537h20.61c.406 0 .587.195.587.537 0 .6-.552 1.438-1.643 2.053zm1.056-15.917H1.695c-.406 0-.587-.209-.587-.586C1.108 3.944 4.47 0 12 0c7.46 0 10.892 3.944 10.892 6.178 0 .377-.181.586-.587.586Z" }) + ] + } + ); +}); + +export { SiBurgerking as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.cjs new file mode 100644 index 000000000..29bd86757 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6633"; +const SiBurpsuite = React__namespace.forwardRef(function SiBurpsuite2({ title = "Burp Suite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm11.063 3.357h1.874v2.756L10.41 9.2h2.527v3.748h4.579l-4.578 5.592v2.104h-1.876v-2.758l2.528-3.086h-2.527V11.05h-4.58l4.58-5.592Z" }) + ] + } + ); +}); + +exports.default = SiBurpsuite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.d.ts new file mode 100644 index 000000000..2be141ec7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6633"; +declare const SiBurpsuite: IconType; +export { SiBurpsuite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.mjs new file mode 100644 index 000000000..bfe1620dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurpsuite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6633"; +const SiBurpsuite = React.forwardRef(function SiBurpsuite2({ title = "Burp Suite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm11.063 3.357h1.874v2.756L10.41 9.2h2.527v3.748h4.579l-4.578 5.592v2.104h-1.876v-2.758l2.528-3.086h-2.527V11.05h-4.58l4.58-5.592Z" }) + ] + } + ); +}); + +export { SiBurpsuite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.cjs new file mode 100644 index 000000000..2528dae5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiBurton = React__namespace.forwardRef(function SiBurton2({ title = "Burton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9852 1.5427a.2544.2544 0 00-.2098.1167l-.9744 1.5088a.624.624 0 01-.3532.2618l-.5747.1643a.7493.7493 0 00-.4524.362L6.9551 8.4735a.7424.7424 0 01-.48.3695c-.1543.036-.3882.0866-.6213.132a.5525.5525 0 00-.4013.3226c-.2956.6863-.8678 2.0149-1.1562 2.6826a1.0018 1.0018 0 01-.5097.5162l-.4244.1906a1.0061 1.0061 0 00-.5425.6013s-.6473 1.6657-1.1468 3.1669c-.4515 1.3568-1.6317 5.445-1.6317 5.445a.4273.4273 0 00.0904.4915.32.32 0 00.466-.1066s1.5767-3.3727 2.1518-4.473a.3106.3106 0 01.4612-.093c.2536.165.3786.6073.6632.8644a.2578.2578 0 00.4215-.1034c.206-.5042.6888-2.0741.8511-2.7236.1356-.5411.5956-.5898.858-.1938l.1896.2345a2.2525 2.2525 0 00.7133.592l.3496.1853a.5006.5006 0 01.2283.2446l.3828.8973a.7493.7493 0 00.6609.455l.119.0046a.7503.7503 0 01.633.3978c.176.3314.4613.9323.7038 1.326a.2593.2593 0 00.4735-.0595 15.4276 15.4276 0 00.5997-2.0607c.1408-.7166.5788-.625.7299-.431.0551.07.245.3576.2966.4163a.252.252 0 00.4586-.0972 12.312 12.312 0 00.4033-1.9043c.0386-.2912.358-.3281.5106-.0793.1629.2657.4287.741.5734 1.0232a2.5873 2.5873 0 01.2358.6163l.211.9516a2.1773 2.1773 0 00.6662 1.1276 3.3829 3.3829 0 00.4768.4219.2676.2676 0 00.4091-.1054c.111-.2548.2517-.6868.335-.9354a.2534.2534 0 01.1925-.1675c.1073-.0211.1794-.0303.333-.0712a.8444.8444 0 00.564-.4918l.207-.4995a.257.257 0 01.4663-.012c.0751.1353.2088.4168.2716.572a1.975 1.975 0 01.089.2462l.1647.6362a2.248 2.248 0 00.2894.659l.0752.1167a2.1315 2.1315 0 00.7848.7217.2476.2476 0 00.3496-.1217c.2348-.5461.3253-1.3597.4332-1.8837a.285.285 0 01.5162-.0924c.6114 1.0018 2.3264 3.921 2.3264 3.921a.3122.3122 0 00.5409-.3096c-.0432-.0988-1.5061-3.7875-2.912-7.0531-1.2846-2.9848-2.5247-5.5752-2.5247-5.5752a.4576.4576 0 00-.5568-.2469c-.3762.1119-.7863.357-1.071.4557a.5375.5375 0 01-.6466-.2528c-.3467-.6362-1.1121-2.2981-1.8152-3.6137-.7611-1.4239-1.7256-3.3197-2.2431-4.069a.2544.2544 0 00-.2134-.1096z" }) + ] + } + ); +}); + +exports.default = SiBurton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.d.ts new file mode 100644 index 000000000..38931f21e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiBurton: IconType; +export { SiBurton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.mjs new file mode 100644 index 000000000..05a35b3f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBurton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiBurton = React.forwardRef(function SiBurton2({ title = "Burton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9852 1.5427a.2544.2544 0 00-.2098.1167l-.9744 1.5088a.624.624 0 01-.3532.2618l-.5747.1643a.7493.7493 0 00-.4524.362L6.9551 8.4735a.7424.7424 0 01-.48.3695c-.1543.036-.3882.0866-.6213.132a.5525.5525 0 00-.4013.3226c-.2956.6863-.8678 2.0149-1.1562 2.6826a1.0018 1.0018 0 01-.5097.5162l-.4244.1906a1.0061 1.0061 0 00-.5425.6013s-.6473 1.6657-1.1468 3.1669c-.4515 1.3568-1.6317 5.445-1.6317 5.445a.4273.4273 0 00.0904.4915.32.32 0 00.466-.1066s1.5767-3.3727 2.1518-4.473a.3106.3106 0 01.4612-.093c.2536.165.3786.6073.6632.8644a.2578.2578 0 00.4215-.1034c.206-.5042.6888-2.0741.8511-2.7236.1356-.5411.5956-.5898.858-.1938l.1896.2345a2.2525 2.2525 0 00.7133.592l.3496.1853a.5006.5006 0 01.2283.2446l.3828.8973a.7493.7493 0 00.6609.455l.119.0046a.7503.7503 0 01.633.3978c.176.3314.4613.9323.7038 1.326a.2593.2593 0 00.4735-.0595 15.4276 15.4276 0 00.5997-2.0607c.1408-.7166.5788-.625.7299-.431.0551.07.245.3576.2966.4163a.252.252 0 00.4586-.0972 12.312 12.312 0 00.4033-1.9043c.0386-.2912.358-.3281.5106-.0793.1629.2657.4287.741.5734 1.0232a2.5873 2.5873 0 01.2358.6163l.211.9516a2.1773 2.1773 0 00.6662 1.1276 3.3829 3.3829 0 00.4768.4219.2676.2676 0 00.4091-.1054c.111-.2548.2517-.6868.335-.9354a.2534.2534 0 01.1925-.1675c.1073-.0211.1794-.0303.333-.0712a.8444.8444 0 00.564-.4918l.207-.4995a.257.257 0 01.4663-.012c.0751.1353.2088.4168.2716.572a1.975 1.975 0 01.089.2462l.1647.6362a2.248 2.248 0 00.2894.659l.0752.1167a2.1315 2.1315 0 00.7848.7217.2476.2476 0 00.3496-.1217c.2348-.5461.3253-1.3597.4332-1.8837a.285.285 0 01.5162-.0924c.6114 1.0018 2.3264 3.921 2.3264 3.921a.3122.3122 0 00.5409-.3096c-.0432-.0988-1.5061-3.7875-2.912-7.0531-1.2846-2.9848-2.5247-5.5752-2.5247-5.5752a.4576.4576 0 00-.5568-.2469c-.3762.1119-.7863.357-1.071.4557a.5375.5375 0 01-.6466-.2528c-.3467-.6362-1.1121-2.2981-1.8152-3.6137-.7611-1.4239-1.7256-3.3197-2.2431-4.069a.2544.2544 0 00-.2134-.1096z" }) + ] + } + ); +}); + +export { SiBurton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.cjs new file mode 100644 index 000000000..b471b42ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDD00"; +const SiBuymeacoffee = React__namespace.forwardRef(function SiBuymeacoffee2({ title = "Buy Me A Coffee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.216 6.415l-.132-.666c-.119-.598-.388-1.163-1.001-1.379-.197-.069-.42-.098-.57-.241-.152-.143-.196-.366-.231-.572-.065-.378-.125-.756-.192-1.133-.057-.325-.102-.69-.25-.987-.195-.4-.597-.634-.996-.788a5.723 5.723 0 00-.626-.194c-1-.263-2.05-.36-3.077-.416a25.834 25.834 0 00-3.7.062c-.915.083-1.88.184-2.75.5-.318.116-.646.256-.888.501-.297.302-.393.77-.177 1.146.154.267.415.456.692.58.36.162.737.284 1.123.366 1.075.238 2.189.331 3.287.37 1.218.05 2.437.01 3.65-.118.299-.033.598-.073.896-.119.352-.054.578-.513.474-.834-.124-.383-.457-.531-.834-.473-.466.074-.96.108-1.382.146-1.177.08-2.358.082-3.536.006a22.228 22.228 0 01-1.157-.107c-.086-.01-.18-.025-.258-.036-.243-.036-.484-.08-.724-.13-.111-.027-.111-.185 0-.212h.005c.277-.06.557-.108.838-.147h.002c.131-.009.263-.032.394-.048a25.076 25.076 0 013.426-.12c.674.019 1.347.067 2.017.144l.228.031c.267.04.533.088.798.145.392.085.895.113 1.07.542.055.137.08.288.111.431l.319 1.484a.237.237 0 01-.199.284h-.003c-.037.006-.075.01-.112.015a36.704 36.704 0 01-4.743.295 37.059 37.059 0 01-4.699-.304c-.14-.017-.293-.042-.417-.06-.326-.048-.649-.108-.973-.161-.393-.065-.768-.032-1.123.161-.29.16-.527.404-.675.701-.154.316-.199.66-.267 1-.069.34-.176.707-.135 1.056.087.753.613 1.365 1.37 1.502a39.69 39.69 0 0011.343.376.483.483 0 01.535.53l-.071.697-1.018 9.907c-.041.41-.047.832-.125 1.237-.122.637-.553 1.028-1.182 1.171-.577.131-1.165.2-1.756.205-.656.004-1.31-.025-1.966-.022-.699.004-1.556-.06-2.095-.58-.475-.458-.54-1.174-.605-1.793l-.731-7.013-.322-3.094c-.037-.351-.286-.695-.678-.678-.336.015-.718.3-.678.679l.228 2.185.949 9.112c.147 1.344 1.174 2.068 2.446 2.272.742.12 1.503.144 2.257.156.966.016 1.942.053 2.892-.122 1.408-.258 2.465-1.198 2.616-2.657.34-3.332.683-6.663 1.024-9.995l.215-2.087a.484.484 0 01.39-.426c.402-.078.787-.212 1.074-.518.455-.488.546-1.124.385-1.766zm-1.478.772c-.145.137-.363.201-.578.233-2.416.359-4.866.54-7.308.46-1.748-.06-3.477-.254-5.207-.498-.17-.024-.353-.055-.47-.18-.22-.236-.111-.71-.054-.995.052-.26.152-.609.463-.646.484-.057 1.046.148 1.526.22.577.088 1.156.159 1.737.212 2.48.226 5.002.19 7.472-.14.45-.06.899-.13 1.345-.21.399-.072.84-.206 1.08.206.166.281.188.657.162.974a.544.544 0 01-.169.364zm-6.159 3.9c-.862.37-1.84.788-3.109.788a5.884 5.884 0 01-1.569-.217l.877 9.004c.065.78.717 1.38 1.5 1.38 0 0 1.243.065 1.658.065.447 0 1.786-.065 1.786-.065.783 0 1.434-.6 1.499-1.38l.94-9.95a3.996 3.996 0 00-1.322-.238c-.826 0-1.491.284-2.26.613z" }) + ] + } + ); +}); + +exports.default = SiBuymeacoffee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.d.ts new file mode 100644 index 000000000..e629b23b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDD00"; +declare const SiBuymeacoffee: IconType; +export { SiBuymeacoffee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.mjs new file mode 100644 index 000000000..1834249ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuymeacoffee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDD00"; +const SiBuymeacoffee = React.forwardRef(function SiBuymeacoffee2({ title = "Buy Me A Coffee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.216 6.415l-.132-.666c-.119-.598-.388-1.163-1.001-1.379-.197-.069-.42-.098-.57-.241-.152-.143-.196-.366-.231-.572-.065-.378-.125-.756-.192-1.133-.057-.325-.102-.69-.25-.987-.195-.4-.597-.634-.996-.788a5.723 5.723 0 00-.626-.194c-1-.263-2.05-.36-3.077-.416a25.834 25.834 0 00-3.7.062c-.915.083-1.88.184-2.75.5-.318.116-.646.256-.888.501-.297.302-.393.77-.177 1.146.154.267.415.456.692.58.36.162.737.284 1.123.366 1.075.238 2.189.331 3.287.37 1.218.05 2.437.01 3.65-.118.299-.033.598-.073.896-.119.352-.054.578-.513.474-.834-.124-.383-.457-.531-.834-.473-.466.074-.96.108-1.382.146-1.177.08-2.358.082-3.536.006a22.228 22.228 0 01-1.157-.107c-.086-.01-.18-.025-.258-.036-.243-.036-.484-.08-.724-.13-.111-.027-.111-.185 0-.212h.005c.277-.06.557-.108.838-.147h.002c.131-.009.263-.032.394-.048a25.076 25.076 0 013.426-.12c.674.019 1.347.067 2.017.144l.228.031c.267.04.533.088.798.145.392.085.895.113 1.07.542.055.137.08.288.111.431l.319 1.484a.237.237 0 01-.199.284h-.003c-.037.006-.075.01-.112.015a36.704 36.704 0 01-4.743.295 37.059 37.059 0 01-4.699-.304c-.14-.017-.293-.042-.417-.06-.326-.048-.649-.108-.973-.161-.393-.065-.768-.032-1.123.161-.29.16-.527.404-.675.701-.154.316-.199.66-.267 1-.069.34-.176.707-.135 1.056.087.753.613 1.365 1.37 1.502a39.69 39.69 0 0011.343.376.483.483 0 01.535.53l-.071.697-1.018 9.907c-.041.41-.047.832-.125 1.237-.122.637-.553 1.028-1.182 1.171-.577.131-1.165.2-1.756.205-.656.004-1.31-.025-1.966-.022-.699.004-1.556-.06-2.095-.58-.475-.458-.54-1.174-.605-1.793l-.731-7.013-.322-3.094c-.037-.351-.286-.695-.678-.678-.336.015-.718.3-.678.679l.228 2.185.949 9.112c.147 1.344 1.174 2.068 2.446 2.272.742.12 1.503.144 2.257.156.966.016 1.942.053 2.892-.122 1.408-.258 2.465-1.198 2.616-2.657.34-3.332.683-6.663 1.024-9.995l.215-2.087a.484.484 0 01.39-.426c.402-.078.787-.212 1.074-.518.455-.488.546-1.124.385-1.766zm-1.478.772c-.145.137-.363.201-.578.233-2.416.359-4.866.54-7.308.46-1.748-.06-3.477-.254-5.207-.498-.17-.024-.353-.055-.47-.18-.22-.236-.111-.71-.054-.995.052-.26.152-.609.463-.646.484-.057 1.046.148 1.526.22.577.088 1.156.159 1.737.212 2.48.226 5.002.19 7.472-.14.45-.06.899-.13 1.345-.21.399-.072.84-.206 1.08.206.166.281.188.657.162.974a.544.544 0 01-.169.364zm-6.159 3.9c-.862.37-1.84.788-3.109.788a5.884 5.884 0 01-1.569-.217l.877 9.004c.065.78.717 1.38 1.5 1.38 0 0 1.243.065 1.658.065.447 0 1.786-.065 1.786-.065.783 0 1.434-.6 1.499-1.38l.94-9.95a3.996 3.996 0 00-1.322-.238c-.826 0-1.491.284-2.26.613z" }) + ] + } + ); +}); + +export { SiBuymeacoffee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.cjs new file mode 100644 index 000000000..6bf1afac4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB4714"; +const SiBuysellads = React__namespace.forwardRef(function SiBuysellads2({ title = "BuySellAds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 16.4h-2.685l-.716-2.704-3.3 2.704h-2.675l2.796-8.821h3.784zm-5.955-2.785h2.544l-1.272-4.744zM5.581 11.849c.939.151 1.676 1.049 1.676 2.149 0 1.282-.677 2.392-2.403 2.392H0V7.579h4.32c1.736 0 2.573 1.141 2.573 2.251 0 1.09-.474 1.837-1.312 2.019m-3.502 2.634 1.988-.01c.535 0 .868-.313.868-.788 0-.434-.313-.787-.868-.787H2.079zm0-4.986v1.463h1.726c.464 0 .777-.302.777-.736 0-.424-.313-.727-.777-.727zm7.953.454c0 1.302 4.582.202 4.592 3.714 0 1.756-1.171 2.967-3.512 2.967-1.413 0-2.604-.333-3.492-.938l.888-1.938c.676.525 1.524.898 2.675.898.777 0 1.15-.302 1.15-.716 0-1.443-4.622-.051-4.612-3.795.01-1.463 1.312-2.775 3.552-2.775 1.272 0 2.523.242 3.502.867l-.837 1.928c-.919-.615-1.867-.908-2.735-.888-.656.02-1.171.212-1.171.676" }) + ] + } + ); +}); + +exports.default = SiBuysellads; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.d.ts new file mode 100644 index 000000000..50e6302e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB4714"; +declare const SiBuysellads: IconType; +export { SiBuysellads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.mjs new file mode 100644 index 000000000..42ff3adc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuysellads.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB4714"; +const SiBuysellads = React.forwardRef(function SiBuysellads2({ title = "BuySellAds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 16.4h-2.685l-.716-2.704-3.3 2.704h-2.675l2.796-8.821h3.784zm-5.955-2.785h2.544l-1.272-4.744zM5.581 11.849c.939.151 1.676 1.049 1.676 2.149 0 1.282-.677 2.392-2.403 2.392H0V7.579h4.32c1.736 0 2.573 1.141 2.573 2.251 0 1.09-.474 1.837-1.312 2.019m-3.502 2.634 1.988-.01c.535 0 .868-.313.868-.788 0-.434-.313-.787-.868-.787H2.079zm0-4.986v1.463h1.726c.464 0 .777-.302.777-.736 0-.424-.313-.727-.777-.727zm7.953.454c0 1.302 4.582.202 4.592 3.714 0 1.756-1.171 2.967-3.512 2.967-1.413 0-2.604-.333-3.492-.938l.888-1.938c.676.525 1.524.898 2.675.898.777 0 1.15-.302 1.15-.716 0-1.443-4.622-.051-4.612-3.795.01-1.463 1.312-2.775 3.552-2.775 1.272 0 2.523.242 3.502.867l-.837 1.928c-.919-.615-1.867-.908-2.735-.888-.656.02-1.171.212-1.171.676" }) + ] + } + ); +}); + +export { SiBuysellads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.cjs new file mode 100644 index 000000000..9b6bead62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE3322"; +const SiBuzzfeed = React__namespace.forwardRef(function SiBuzzfeed2({ title = "BuzzFeed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-4.148-.273l-.977-6.94-6.5 2.624 2.575 1.487-2.435 4.215L8.3 10.68l-4.153 7.19 2.327 1.346 2.812-4.868L13.5 16.78l3.777-6.54 2.575 1.487z" }) + ] + } + ); +}); + +exports.default = SiBuzzfeed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.d.ts new file mode 100644 index 000000000..1490d419e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE3322"; +declare const SiBuzzfeed: IconType; +export { SiBuzzfeed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.mjs new file mode 100644 index 000000000..63ee902b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBuzzfeed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE3322"; +const SiBuzzfeed = React.forwardRef(function SiBuzzfeed2({ title = "BuzzFeed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-4.148-.273l-.977-6.94-6.5 2.624 2.575 1.487-2.435 4.215L8.3 10.68l-4.153 7.19 2.327 1.346 2.812-4.868L13.5 16.78l3.777-6.54 2.575 1.487z" }) + ] + } + ); +}); + +export { SiBuzzfeed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.cjs new file mode 100644 index 000000000..3f88d3d57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0D722"; +const SiBvg = React__namespace.forwardRef(function SiBvg2({ title = "BVG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.25 1.11c3.647 0 6.478 2.886 6.73 6.447.151 2.21-.535 4.019-2.158 5.674l-3.601 3.655-.154.157-.078.079-.214.217-.214.217a18348.219 18348.219 0 0 1-4.951 5.019c-.074.074-.323.302-.576.315h-.023c-.272 0-.534-.24-.6-.315l-4.89-4.958-.129-.13-.257-.261-.214-.218A5994.604 5994.604 0 0 1 2.2 13.23C.554 11.576-.13 9.768.02 7.557.27 3.997 3.103 1.11 6.75 1.11c2.353 0 3.704 1.416 5.25 3.027 1.536-1.61 2.897-3.027 5.25-3.027zm-4.02 6.48c-.26 0-.446.174-.511.48l-.6 3.092c-.043.294-.097.642-.12.87a5.71 5.71 0 0 0-.12-.87l-.663-3.093c-.065-.36-.283-.48-.534-.48-.392 0-.577.35-.479.763l1.013 4.193c.098.414.305.642.784.642.414 0 .664-.228.762-.686l.948-4.214c.087-.425-.153-.697-.48-.697zm2.995-.033c-1.274 0-2.101.85-2.101 2.832 0 1.884.37 2.787 2.003 2.787 1.013 0 1.48-.348 1.48-1.143v-1.634c0-.337-.107-.479-.412-.479h-.904c-.294 0-.436.142-.436.414 0 .25.163.392.436.392h.305v1.568a1.015 1.015 0 0 1-.35.044c-.73 0-1.077-.349-1.077-1.873 0-1.634.414-2.004 1.035-2.004.468 0 .697.163.925.163a.439.439 0 0 0 .294-.762c-.305-.24-.925-.305-1.198-.305Zm-8.091.065H7.056a.42.42 0 0 0-.436.414v4.716c0 .283.185.37.436.37h.99c1.406 0 1.721-.784 1.732-1.655 0-.556-.272-1.177-1.056-1.22.719-.153.904-.664.904-1.242 0-.718-.196-1.383-1.492-1.383zm-.185 3.018c.686 0 .74.37.74.86v.02c-.002.45-.074.852-.664.852h-.37v-1.733h.294zm.022-2.265c.577 0 .664.207.664.762v.071l-.001.03c-.01.325-.087.682-.718.682h-.25V8.374h.305z" }) + ] + } + ); +}); + +exports.default = SiBvg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.d.ts new file mode 100644 index 000000000..fb215066f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0D722"; +declare const SiBvg: IconType; +export { SiBvg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.mjs new file mode 100644 index 000000000..913bd2e56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBvg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0D722"; +const SiBvg = React.forwardRef(function SiBvg2({ title = "BVG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.25 1.11c3.647 0 6.478 2.886 6.73 6.447.151 2.21-.535 4.019-2.158 5.674l-3.601 3.655-.154.157-.078.079-.214.217-.214.217a18348.219 18348.219 0 0 1-4.951 5.019c-.074.074-.323.302-.576.315h-.023c-.272 0-.534-.24-.6-.315l-4.89-4.958-.129-.13-.257-.261-.214-.218A5994.604 5994.604 0 0 1 2.2 13.23C.554 11.576-.13 9.768.02 7.557.27 3.997 3.103 1.11 6.75 1.11c2.353 0 3.704 1.416 5.25 3.027 1.536-1.61 2.897-3.027 5.25-3.027zm-4.02 6.48c-.26 0-.446.174-.511.48l-.6 3.092c-.043.294-.097.642-.12.87a5.71 5.71 0 0 0-.12-.87l-.663-3.093c-.065-.36-.283-.48-.534-.48-.392 0-.577.35-.479.763l1.013 4.193c.098.414.305.642.784.642.414 0 .664-.228.762-.686l.948-4.214c.087-.425-.153-.697-.48-.697zm2.995-.033c-1.274 0-2.101.85-2.101 2.832 0 1.884.37 2.787 2.003 2.787 1.013 0 1.48-.348 1.48-1.143v-1.634c0-.337-.107-.479-.412-.479h-.904c-.294 0-.436.142-.436.414 0 .25.163.392.436.392h.305v1.568a1.015 1.015 0 0 1-.35.044c-.73 0-1.077-.349-1.077-1.873 0-1.634.414-2.004 1.035-2.004.468 0 .697.163.925.163a.439.439 0 0 0 .294-.762c-.305-.24-.925-.305-1.198-.305Zm-8.091.065H7.056a.42.42 0 0 0-.436.414v4.716c0 .283.185.37.436.37h.99c1.406 0 1.721-.784 1.732-1.655 0-.556-.272-1.177-1.056-1.22.719-.153.904-.664.904-1.242 0-.718-.196-1.383-1.492-1.383zm-.185 3.018c.686 0 .74.37.74.86v.02c-.002.45-.074.852-.664.852h-.37v-1.733h.294zm.022-2.265c.577 0 .664.207.664.762v.071l-.001.03c-.01.325-.087.682-.718.682h-.25V8.374h.305z" }) + ] + } + ); +}); + +export { SiBvg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.cjs new file mode 100644 index 000000000..0f2c84fd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#813588"; +const SiByjus = React__namespace.forwardRef(function SiByjus2({ title = "Byjus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.327.016A2.325 2.325 0 0 0 0 2.34v19.32a2.325 2.325 0 0 0 2.327 2.323h19.346A2.325 2.325 0 0 0 24 21.66V2.34A2.325 2.325 0 0 0 21.673.016zm10.054 3.496a3.443 3.443 0 0 1 .07 0 4.317 4.317 0 0 1 3.267 1.462 4.447 4.447 0 0 1 .961 2.365 4.157 4.157 0 0 1-.456 2.27 5.024 5.024 0 0 1 2.424 2.008 5.237 5.237 0 0 1 .73 3.374 4.68 4.68 0 0 1-1.15 2.466 4.84 4.84 0 0 1-2.26 1.535l-4.987 1.439a1.494 1.494 0 0 1-.41.058 1.497 1.497 0 0 1-1.432-1.075L5.524 6.909a1.487 1.487 0 0 1 1.018-1.841l4.956-1.429a3.443 3.443 0 0 1 .883-.127zm.248.861a3.091 3.091 0 0 0-.855.122L6.94 5.888a.744.744 0 0 0-.51.922l3.53 12.206a.745.745 0 0 0 .921.509l4.664-1.345a4.085 4.085 0 0 0-.896-8.003 3.297 3.297 0 0 0 1.138-2.272 3.479 3.479 0 0 0-.928-2.549 2.989 2.989 0 0 0-2.23-.983Z" }) + ] + } + ); +}); + +exports.default = SiByjus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.d.ts new file mode 100644 index 000000000..8f7bcea0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#813588"; +declare const SiByjus: IconType; +export { SiByjus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.mjs new file mode 100644 index 000000000..e97d4f40e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiByjus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#813588"; +const SiByjus = React.forwardRef(function SiByjus2({ title = "Byjus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.327.016A2.325 2.325 0 0 0 0 2.34v19.32a2.325 2.325 0 0 0 2.327 2.323h19.346A2.325 2.325 0 0 0 24 21.66V2.34A2.325 2.325 0 0 0 21.673.016zm10.054 3.496a3.443 3.443 0 0 1 .07 0 4.317 4.317 0 0 1 3.267 1.462 4.447 4.447 0 0 1 .961 2.365 4.157 4.157 0 0 1-.456 2.27 5.024 5.024 0 0 1 2.424 2.008 5.237 5.237 0 0 1 .73 3.374 4.68 4.68 0 0 1-1.15 2.466 4.84 4.84 0 0 1-2.26 1.535l-4.987 1.439a1.494 1.494 0 0 1-.41.058 1.497 1.497 0 0 1-1.432-1.075L5.524 6.909a1.487 1.487 0 0 1 1.018-1.841l4.956-1.429a3.443 3.443 0 0 1 .883-.127zm.248.861a3.091 3.091 0 0 0-.855.122L6.94 5.888a.744.744 0 0 0-.51.922l3.53 12.206a.745.745 0 0 0 .921.509l4.664-1.345a4.085 4.085 0 0 0-.896-8.003 3.297 3.297 0 0 0 1.138-2.272 3.479 3.479 0 0 0-.928-2.549 2.989 2.989 0 0 0-2.23-.983Z" }) + ] + } + ); +}); + +export { SiByjus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.cjs new file mode 100644 index 000000000..ddcf2b359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C8CFF"; +const SiBytedance = React__namespace.forwardRef(function SiBytedance2({ title = "ByteDance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.8772 1.4685L24 2.5326v18.9426l-4.1228 1.0563V1.4685zm-13.3481 9.428l4.115 1.0641v8.9786l-4.115 1.0642v-11.107zM0 2.572l4.115 1.0642v16.7354L0 21.428V2.572zm17.4553 5.6205v11.107l-4.1228-1.0642V9.2568l4.1228-1.0642z" }) + ] + } + ); +}); + +exports.default = SiBytedance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.d.ts new file mode 100644 index 000000000..b75233650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C8CFF"; +declare const SiBytedance: IconType; +export { SiBytedance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.mjs new file mode 100644 index 000000000..d98f71c99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiBytedance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C8CFF"; +const SiBytedance = React.forwardRef(function SiBytedance2({ title = "ByteDance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.8772 1.4685L24 2.5326v18.9426l-4.1228 1.0563V1.4685zm-13.3481 9.428l4.115 1.0641v8.9786l-4.115 1.0642v-11.107zM0 2.572l4.115 1.0642v16.7354L0 21.428V2.572zm17.4553 5.6205v11.107l-4.1228-1.0642V9.2568l4.1228-1.0642z" }) + ] + } + ); +}); + +export { SiBytedance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiC.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiC.cjs new file mode 100644 index 000000000..4e1c0b544 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiC.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A8B9CC"; +const SiC = React__namespace.forwardRef(function SiC2({ title = "C", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5921 9.1962s-.354-3.298-3.627-3.39c-3.2741-.09-4.9552 2.474-4.9552 6.14 0 3.6651 1.858 6.5972 5.0451 6.5972 3.184 0 3.5381-3.665 3.5381-3.665l6.1041.365s.36 3.31-2.196 5.836c-2.552 2.5241-5.6901 2.9371-7.8762 2.9201-2.19-.017-5.2261.034-8.1602-2.97-2.938-3.0101-3.436-5.9302-3.436-8.8002 0-2.8701.556-6.6702 4.047-9.5502C7.444.72 9.849 0 12.254 0c10.0422 0 10.7172 9.2602 10.7172 9.2602z" }) + ] + } + ); +}); + +exports.default = SiC; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiC.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiC.d.ts new file mode 100644 index 000000000..b3b48e020 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiC.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A8B9CC"; +declare const SiC: IconType; +export { SiC as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiC.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiC.mjs new file mode 100644 index 000000000..3f053332a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiC.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A8B9CC"; +const SiC = React.forwardRef(function SiC2({ title = "C", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.5921 9.1962s-.354-3.298-3.627-3.39c-3.2741-.09-4.9552 2.474-4.9552 6.14 0 3.6651 1.858 6.5972 5.0451 6.5972 3.184 0 3.5381-3.665 3.5381-3.665l6.1041.365s.36 3.31-2.196 5.836c-2.552 2.5241-5.6901 2.9371-7.8762 2.9201-2.19-.017-5.2261.034-8.1602-2.97-2.938-3.0101-3.436-5.9302-3.436-8.8002 0-2.8701.556-6.6702 4.047-9.5502C7.444.72 9.849 0 12.254 0c10.0422 0 10.7172 9.2602 10.7172 9.2602z" }) + ] + } + ); +}); + +export { SiC as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.cjs new file mode 100644 index 000000000..515a35afe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7ED321"; +const SiCachet = React__namespace.forwardRef(function SiCachet2({ title = "Cachet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.746.254C5.265.254 0 5.519 0 12c0 6.481 5.265 11.746 11.746 11.746 6.482 0 11.746-5.265 11.746-11.746 0-1.44-.26-2.82-.734-4.097l-.264-.709-1.118 1.118.1.288c.373 1.064.575 2.207.575 3.4a10.297 10.297 0 01-10.305 10.305A10.297 10.297 0 011.441 12 10.297 10.297 0 0111.746 1.695c1.817 0 3.52.47 5.002 1.293l.32.178 1.054-1.053-.553-.316A11.699 11.699 0 0011.746.254zM22.97.841l-13.92 13.92-3.722-3.721-1.031 1.03 4.752 4.753L24 1.872z" }) + ] + } + ); +}); + +exports.default = SiCachet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.d.ts new file mode 100644 index 000000000..869b7a4e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7ED321"; +declare const SiCachet: IconType; +export { SiCachet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.mjs new file mode 100644 index 000000000..49218622c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCachet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7ED321"; +const SiCachet = React.forwardRef(function SiCachet2({ title = "Cachet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.746.254C5.265.254 0 5.519 0 12c0 6.481 5.265 11.746 11.746 11.746 6.482 0 11.746-5.265 11.746-11.746 0-1.44-.26-2.82-.734-4.097l-.264-.709-1.118 1.118.1.288c.373 1.064.575 2.207.575 3.4a10.297 10.297 0 01-10.305 10.305A10.297 10.297 0 011.441 12 10.297 10.297 0 0111.746 1.695c1.817 0 3.52.47 5.002 1.293l.32.178 1.054-1.053-.553-.316A11.699 11.699 0 0011.746.254zM22.97.841l-13.92 13.92-3.722-3.721-1.031 1.03 4.752 4.753L24 1.872z" }) + ] + } + ); +}); + +export { SiCachet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.cjs new file mode 100644 index 000000000..683d09ac7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F88C0"; +const SiCaddy = React__namespace.forwardRef(function SiCaddy2({ title = "Caddy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.094.47c-.842 0-1.696.092-2.552.288a11.37 11.37 0 0 0-4.87 2.423 10.632 10.632 0 0 0-2.36 2.826A10.132 10.132 0 0 0 .305 8.582c-.398 1.62-.4 3.336-.043 5.048.085.405.183.809.31 1.212a11.85 11.85 0 0 0 1.662 3.729 3.273 3.273 0 0 0-.086.427 3.323 3.323 0 0 0 2.848 3.71 3.279 3.279 0 0 0 1.947-.346c1.045.51 2.17.864 3.339 1.04a11.66 11.66 0 0 0 4.285-.155 11.566 11.566 0 0 0 4.936-2.485 10.643 10.643 0 0 0 2.352-2.894 11.164 11.164 0 0 0 1.356-4.424 11.214 11.214 0 0 0-.498-4.335c.175-.077.338-.175.486-.293a.444.444 89.992 0 0 .001 0c.402-.322.693-.794.777-1.342a2.146 2.146 0 0 0-1.79-2.434 2.115 2.115 0 0 0-1.205.171c-.038-.043-.078-.086-.113-.13a11.693 11.693 0 0 0-3.476-2.93 13.348 13.348 0 0 0-1.76-.81 13.55 13.55 0 0 0-2.06-.613A12.121 12.121 0 0 0 11.093.47Zm.714.328c.345-.004.688.01 1.028.042a9.892 9.892 0 0 1 2.743.639c.984.39 1.89.958 2.707 1.632.803.662 1.502 1.45 2.091 2.328.026.039.048.08.07.12a2.12 2.12 0 0 0-.435 2.646c-.158.114-.97.692-1.634 1.183-.414.308-.733.557-.733.557l.581.68s.296-.276.665-.638c.572-.562 1.229-1.233 1.395-1.403a2.122 2.122 0 0 0 1.907.677 11.229 11.229 0 0 1-.013 4.046 11.41 11.41 0 0 1-1.475 3.897 12.343 12.343 0 0 1-2.079 2.587c-1.19 1.125-2.633 2.022-4.306 2.531a10.826 10.826 0 0 1-3.973.484 11.04 11.04 0 0 1-3.057-.652 3.304 3.304 0 0 0 1.417-2.294 3.275 3.275 0 0 0-.294-1.842c.18-.162.403-.363.656-.6 1.015-.955 2.353-2.303 2.353-2.303l-.47-.599s-1.63.972-2.801 1.728c-.307.198-.573.378-.777.517a3.273 3.273 0 0 0-1.516-.611c-1.507-.198-2.927.672-3.487 2.017a10.323 10.323 0 0 1-.695-1.078A10.92 10.92 0 0 1 .728 14.8a10.35 10.35 0 0 1-.2-1.212c-.164-1.653.103-3.258.629-4.754a12.95 12.95 0 0 1 1.087-2.288c.57-.968 1.248-1.872 2.069-2.656A11.013 11.013 0 0 1 11.808.797Zm-.147 3.257a3.838 3.838 0 0 0-3.82 3.82v2.36h-.94c-.751 0-1.377.625-1.377 1.377v3.8h1.46v-3.718h9.354v6.264H10.02v1.46h6.4c.751 0 1.377-.625 1.377-1.377v-6.43c0-.751-.626-1.377-1.377-1.377h-.94v-2.36a3.838 3.838 0 0 0-3.82-3.819zm0 1.46a2.371 2.371 0 0 1 2.36 2.36v2.36H9.3v-2.36a2.372 2.372 0 0 1 2.36-2.36zm10.141.392a1.253 1.253 0 0 1 1.296 1.434c-.049.319-.217.59-.453.78-.266.213-.61.318-.968.264a1.253 1.253 0 0 1-1.045-1.42 1.255 1.255 0 0 1 1.17-1.058zM5.384 17.425a2.02 2.02 0 0 1 1.917 1.298c.116.3.159.628.114.967a2.015 2.015 0 0 1-2.249 1.728 2.016 2.016 0 0 1-1.727-2.25 2.017 2.017 0 0 1 1.945-1.743z" }) + ] + } + ); +}); + +exports.default = SiCaddy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.d.ts new file mode 100644 index 000000000..585f3ccf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F88C0"; +declare const SiCaddy: IconType; +export { SiCaddy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.mjs new file mode 100644 index 000000000..a0192c98f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaddy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F88C0"; +const SiCaddy = React.forwardRef(function SiCaddy2({ title = "Caddy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.094.47c-.842 0-1.696.092-2.552.288a11.37 11.37 0 0 0-4.87 2.423 10.632 10.632 0 0 0-2.36 2.826A10.132 10.132 0 0 0 .305 8.582c-.398 1.62-.4 3.336-.043 5.048.085.405.183.809.31 1.212a11.85 11.85 0 0 0 1.662 3.729 3.273 3.273 0 0 0-.086.427 3.323 3.323 0 0 0 2.848 3.71 3.279 3.279 0 0 0 1.947-.346c1.045.51 2.17.864 3.339 1.04a11.66 11.66 0 0 0 4.285-.155 11.566 11.566 0 0 0 4.936-2.485 10.643 10.643 0 0 0 2.352-2.894 11.164 11.164 0 0 0 1.356-4.424 11.214 11.214 0 0 0-.498-4.335c.175-.077.338-.175.486-.293a.444.444 89.992 0 0 .001 0c.402-.322.693-.794.777-1.342a2.146 2.146 0 0 0-1.79-2.434 2.115 2.115 0 0 0-1.205.171c-.038-.043-.078-.086-.113-.13a11.693 11.693 0 0 0-3.476-2.93 13.348 13.348 0 0 0-1.76-.81 13.55 13.55 0 0 0-2.06-.613A12.121 12.121 0 0 0 11.093.47Zm.714.328c.345-.004.688.01 1.028.042a9.892 9.892 0 0 1 2.743.639c.984.39 1.89.958 2.707 1.632.803.662 1.502 1.45 2.091 2.328.026.039.048.08.07.12a2.12 2.12 0 0 0-.435 2.646c-.158.114-.97.692-1.634 1.183-.414.308-.733.557-.733.557l.581.68s.296-.276.665-.638c.572-.562 1.229-1.233 1.395-1.403a2.122 2.122 0 0 0 1.907.677 11.229 11.229 0 0 1-.013 4.046 11.41 11.41 0 0 1-1.475 3.897 12.343 12.343 0 0 1-2.079 2.587c-1.19 1.125-2.633 2.022-4.306 2.531a10.826 10.826 0 0 1-3.973.484 11.04 11.04 0 0 1-3.057-.652 3.304 3.304 0 0 0 1.417-2.294 3.275 3.275 0 0 0-.294-1.842c.18-.162.403-.363.656-.6 1.015-.955 2.353-2.303 2.353-2.303l-.47-.599s-1.63.972-2.801 1.728c-.307.198-.573.378-.777.517a3.273 3.273 0 0 0-1.516-.611c-1.507-.198-2.927.672-3.487 2.017a10.323 10.323 0 0 1-.695-1.078A10.92 10.92 0 0 1 .728 14.8a10.35 10.35 0 0 1-.2-1.212c-.164-1.653.103-3.258.629-4.754a12.95 12.95 0 0 1 1.087-2.288c.57-.968 1.248-1.872 2.069-2.656A11.013 11.013 0 0 1 11.808.797Zm-.147 3.257a3.838 3.838 0 0 0-3.82 3.82v2.36h-.94c-.751 0-1.377.625-1.377 1.377v3.8h1.46v-3.718h9.354v6.264H10.02v1.46h6.4c.751 0 1.377-.625 1.377-1.377v-6.43c0-.751-.626-1.377-1.377-1.377h-.94v-2.36a3.838 3.838 0 0 0-3.82-3.819zm0 1.46a2.371 2.371 0 0 1 2.36 2.36v2.36H9.3v-2.36a2.372 2.372 0 0 1 2.36-2.36zm10.141.392a1.253 1.253 0 0 1 1.296 1.434c-.049.319-.217.59-.453.78-.266.213-.61.318-.968.264a1.253 1.253 0 0 1-1.045-1.42 1.255 1.255 0 0 1 1.17-1.058zM5.384 17.425a2.02 2.02 0 0 1 1.917 1.298c.116.3.159.628.114.967a2.015 2.015 0 0 1-2.249 1.728 2.016 2.016 0 0 1-1.727-2.25 2.017 2.017 0 0 1 1.945-1.743z" }) + ] + } + ); +}); + +export { SiCaddy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.cjs new file mode 100644 index 000000000..b12be614d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCadillac = React__namespace.forwardRef(function SiCadillac2({ title = "Cadillac", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.787 9.414h2.104l-.398-.719h7.139v.717h.238v-.965H2.135l.652.967zm.202.948h8.879v-.719H2.874l.115.719zm2.255 1.204h-2.06l-.16-.981h8.846v.981h-.239v-.751H5.169l.075.751zm3.299.692h3.326v.515H8.543v-.515zm3.589-3.811h3.357v1.444h-3.357V8.447zm-8.469 5.569c.054.086.155.186.49.281.146.037.305.074.515.122l.08.019H8.31v-.51H3.616c.013.03.028.06.046.088h.001zm4.647-.779H3.459l-.238-1.44H8.31v1.44zm.232 2.021c1.243.253 2.457.488 3.329.63V13.47H8.542V15.258zm12.276-3.692h-5.1v-1.445h5.333l-.233 1.445zm-5.1-2.66v.513l5.485-.002.344-.511h-5.829zM0 7.306l1.616 2.369c.177 1.006.64 3.599.693 3.85l.006.032c.148.706.239 1.139 1.59 1.473 1.825.45 5.997 1.323 8.094 1.664 2.097-.341 6.271-1.215 8.097-1.664 1.35-.334 1.44-.767 1.589-1.473l.006-.032c.053-.253.516-2.844.693-3.85L24 7.306H0zm21.454 2.335-.277 1.717c-.16.994-.267 1.657-.32 1.951l-.007.035-.012.07c-.127.692-.183 1.002-.91 1.205-1.516.373-5.908 1.31-7.927 1.626-2.018-.316-6.41-1.254-7.925-1.626-.727-.203-.783-.513-.91-1.206l-.019-.104c-.053-.288-.156-.93-.31-1.89v-.001L2.55 9.64 1.276 7.75h21.45l-1.272 1.89v.001zm-9.084 3.132h-.238v-.976h8.65l-.16.978h-2.004c.031-.171.09-.659.099-.73H12.37v.728zm-.238.942h8.322l.134-.716h-8.456v.716zm0-3.129h3.358v.516h-3.358v-.516zm0 3.342v1.959c2.115-.36 6.223-1.205 7.718-1.592.338-.087.438-.193.492-.279a.448.448 0 0 0 .045-.088h-8.255zm2.296 1.282-.415.082c-.21.042-.665.125-1.065.199l-.577.106v-1.422h5.88c-.27.33-.812.437-3.823 1.035z" }) + ] + } + ); +}); + +exports.default = SiCadillac; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.d.ts new file mode 100644 index 000000000..54bac2e1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCadillac: IconType; +export { SiCadillac as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.mjs new file mode 100644 index 000000000..59fb9c311 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCadillac.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCadillac = React.forwardRef(function SiCadillac2({ title = "Cadillac", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.787 9.414h2.104l-.398-.719h7.139v.717h.238v-.965H2.135l.652.967zm.202.948h8.879v-.719H2.874l.115.719zm2.255 1.204h-2.06l-.16-.981h8.846v.981h-.239v-.751H5.169l.075.751zm3.299.692h3.326v.515H8.543v-.515zm3.589-3.811h3.357v1.444h-3.357V8.447zm-8.469 5.569c.054.086.155.186.49.281.146.037.305.074.515.122l.08.019H8.31v-.51H3.616c.013.03.028.06.046.088h.001zm4.647-.779H3.459l-.238-1.44H8.31v1.44zm.232 2.021c1.243.253 2.457.488 3.329.63V13.47H8.542V15.258zm12.276-3.692h-5.1v-1.445h5.333l-.233 1.445zm-5.1-2.66v.513l5.485-.002.344-.511h-5.829zM0 7.306l1.616 2.369c.177 1.006.64 3.599.693 3.85l.006.032c.148.706.239 1.139 1.59 1.473 1.825.45 5.997 1.323 8.094 1.664 2.097-.341 6.271-1.215 8.097-1.664 1.35-.334 1.44-.767 1.589-1.473l.006-.032c.053-.253.516-2.844.693-3.85L24 7.306H0zm21.454 2.335-.277 1.717c-.16.994-.267 1.657-.32 1.951l-.007.035-.012.07c-.127.692-.183 1.002-.91 1.205-1.516.373-5.908 1.31-7.927 1.626-2.018-.316-6.41-1.254-7.925-1.626-.727-.203-.783-.513-.91-1.206l-.019-.104c-.053-.288-.156-.93-.31-1.89v-.001L2.55 9.64 1.276 7.75h21.45l-1.272 1.89v.001zm-9.084 3.132h-.238v-.976h8.65l-.16.978h-2.004c.031-.171.09-.659.099-.73H12.37v.728zm-.238.942h8.322l.134-.716h-8.456v.716zm0-3.129h3.358v.516h-3.358v-.516zm0 3.342v1.959c2.115-.36 6.223-1.205 7.718-1.592.338-.087.438-.193.492-.279a.448.448 0 0 0 .045-.088h-8.255zm2.296 1.282-.415.082c-.21.042-.665.125-1.065.199l-.577.106v-1.422h5.88c-.27.33-.812.437-3.823 1.035z" }) + ] + } + ); +}); + +export { SiCadillac as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.cjs new file mode 100644 index 000000000..c4f6af9ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#58A616"; +const SiCafepress = React__namespace.forwardRef(function SiCafepress2({ title = "CafePress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.899 15.549v-2.063h1.746v.762h.018c.293-.579.68-.882 1.341-.882.175 0 .349.027.532.074v1.344c.379-.838 1.2-1.417 2.285-1.417 1.892 0 2.708 1.047 2.708 2.912h-3.488c.047.551.349.926.927.926.294 0 .615-.109.762-.34h1.614a1.453 1.453 0 0 1-.012-.174h1.735a.596.596 0 0 0 .219.422c.102.091.267.137.488.137.239 0 .614-.093.614-.367 0-.275-.156-.359-1-.505-1.387-.229-1.947-.68-1.947-1.497 0-1.202 1.295-1.515 2.25-1.515 1.029 0 2.269.285 2.314 1.507h-1.652a.469.469 0 0 0-.211-.359.62.62 0 0 0-.404-.137c-.258 0-.551.064-.551.367 0 .137.109.202.211.248.293.12.992.174 1.598.367.614.192 1.14.551 1.14 1.332h1.529a.603.603 0 0 0 .22.422c.102.091.266.137.488.137.238 0 .615-.093.615-.367 0-.275-.157-.359-1.001-.505-1.387-.229-1.947-.68-1.947-1.497 0-1.202 1.294-1.515 2.25-1.515 1.028 0 2.27.285 2.314 1.507h-1.653a.462.462 0 0 0-.211-.359.621.621 0 0 0-.403-.137c-.258 0-.551.064-.551.367 0 .137.11.202.211.248.293.12.992.174 1.597.367.615.192 1.14.551 1.14 1.332 0 1.321-1.266 1.68-2.424 1.68-.93 0-1.935-.309-2.266-1.116-.312.863-1.361 1.116-2.334 1.116-1.015 0-2.122-.369-2.34-1.355-.409.925-1.372 1.356-2.393 1.356-1.524 0-2.672-.899-2.672-2.488 0-.306.048-.598.139-.869a1.831 1.831 0 0 0-.624-.088c-.726 0-1.102.413-1.102 1.441v1.883H5.899v-1.973c-.094 1.029-.593 2.093-2.013 2.093-.551 0-1.02-.238-1.304-.643h-.02v2.066H.746v-6.308h1.755v.523h.018c.22-.293.515-.643 1.395-.643 1.224 0 1.874 1.086 1.985 2.183Zm-2.601 1.5c.653 0 .799-.614.799-1.175 0-.562-.147-1.185-.799-1.185-.651 0-.799.624-.799 1.185 0 .559.148 1.175.799 1.175Zm9.488-1.716v-.017a.787.787 0 0 0-.783-.783h-.018c-.55 0-.854.285-.936.8h1.737Zm.295-7.276c.034.266.033.546.033.824v2.589c0 .474.011 1.008.292 1.409h-2.454a1.676 1.676 0 0 1-.085-.596h-.025c-.522.583-1.251.753-2.029.753-1.215 0-2.223-.582-2.223-1.908 0-.139.012-.268.033-.387-.366 1.476-1.637 2.296-3.209 2.296C1.518 13.037 0 11.726 0 9.733c0-1.992 1.518-3.316 3.413-3.316 1.664 0 3.048.801 3.208 2.551H4.337c-.025-.267-.11-.461-.267-.596a.903.903 0 0 0-.608-.206c-.923 0-1.057.801-1.057 1.567 0 .778.133 1.555 1.057 1.555.522 0 .887-.426.935-.923h2.297a3.21 3.21 0 0 1-.037.222c.392-1.447 2.399-1.39 3.492-1.609.328-.06.657-.158.657-.558 0-.426-.401-.583-.79-.583-.729 0-.9.377-.9.644H6.883c.06-1.787 1.76-2.066 3.243-2.066 2.106 0 2.728.612 2.911 1.396V6.575h.983c-.035-.619.025-1.3.498-1.773.522-.524 1.13-.596 2.101-.596.377 0 .704.037 1.082.049v1.652c-.194-.037-.389-.085-.583-.085-.582 0-.778.17-.74.753h1.264v1.267c.568-.86 1.544-1.425 2.775-1.425 2.502 0 3.583 1.386 3.583 3.852h-4.616c.061.728.461 1.226 1.226 1.226.39 0 .815-.147 1.008-.45h2.248c-.486 1.361-1.823 1.992-3.243 1.992-2.017 0-3.535-1.189-3.535-3.291 0-.616.149-1.193.423-1.689h-1.084v4.823H14.02V8.057h-.939Zm-2.274 1.991c-.292.147-.619.219-.947.304-.536.133-.815.255-.815.68 0 .292.316.582.754.582.547 0 .972-.314 1.008-.983v-.583Zm10.885-1.033v-.021a1.04 1.04 0 0 0-1.035-1.035h-.022c-.729 0-1.129.375-1.239 1.056h2.296Z" }) + ] + } + ); +}); + +exports.default = SiCafepress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.d.ts new file mode 100644 index 000000000..03f7872b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#58A616"; +declare const SiCafepress: IconType; +export { SiCafepress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.mjs new file mode 100644 index 000000000..4167404cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCafepress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#58A616"; +const SiCafepress = React.forwardRef(function SiCafepress2({ title = "CafePress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.899 15.549v-2.063h1.746v.762h.018c.293-.579.68-.882 1.341-.882.175 0 .349.027.532.074v1.344c.379-.838 1.2-1.417 2.285-1.417 1.892 0 2.708 1.047 2.708 2.912h-3.488c.047.551.349.926.927.926.294 0 .615-.109.762-.34h1.614a1.453 1.453 0 0 1-.012-.174h1.735a.596.596 0 0 0 .219.422c.102.091.267.137.488.137.239 0 .614-.093.614-.367 0-.275-.156-.359-1-.505-1.387-.229-1.947-.68-1.947-1.497 0-1.202 1.295-1.515 2.25-1.515 1.029 0 2.269.285 2.314 1.507h-1.652a.469.469 0 0 0-.211-.359.62.62 0 0 0-.404-.137c-.258 0-.551.064-.551.367 0 .137.109.202.211.248.293.12.992.174 1.598.367.614.192 1.14.551 1.14 1.332h1.529a.603.603 0 0 0 .22.422c.102.091.266.137.488.137.238 0 .615-.093.615-.367 0-.275-.157-.359-1.001-.505-1.387-.229-1.947-.68-1.947-1.497 0-1.202 1.294-1.515 2.25-1.515 1.028 0 2.27.285 2.314 1.507h-1.653a.462.462 0 0 0-.211-.359.621.621 0 0 0-.403-.137c-.258 0-.551.064-.551.367 0 .137.11.202.211.248.293.12.992.174 1.597.367.615.192 1.14.551 1.14 1.332 0 1.321-1.266 1.68-2.424 1.68-.93 0-1.935-.309-2.266-1.116-.312.863-1.361 1.116-2.334 1.116-1.015 0-2.122-.369-2.34-1.355-.409.925-1.372 1.356-2.393 1.356-1.524 0-2.672-.899-2.672-2.488 0-.306.048-.598.139-.869a1.831 1.831 0 0 0-.624-.088c-.726 0-1.102.413-1.102 1.441v1.883H5.899v-1.973c-.094 1.029-.593 2.093-2.013 2.093-.551 0-1.02-.238-1.304-.643h-.02v2.066H.746v-6.308h1.755v.523h.018c.22-.293.515-.643 1.395-.643 1.224 0 1.874 1.086 1.985 2.183Zm-2.601 1.5c.653 0 .799-.614.799-1.175 0-.562-.147-1.185-.799-1.185-.651 0-.799.624-.799 1.185 0 .559.148 1.175.799 1.175Zm9.488-1.716v-.017a.787.787 0 0 0-.783-.783h-.018c-.55 0-.854.285-.936.8h1.737Zm.295-7.276c.034.266.033.546.033.824v2.589c0 .474.011 1.008.292 1.409h-2.454a1.676 1.676 0 0 1-.085-.596h-.025c-.522.583-1.251.753-2.029.753-1.215 0-2.223-.582-2.223-1.908 0-.139.012-.268.033-.387-.366 1.476-1.637 2.296-3.209 2.296C1.518 13.037 0 11.726 0 9.733c0-1.992 1.518-3.316 3.413-3.316 1.664 0 3.048.801 3.208 2.551H4.337c-.025-.267-.11-.461-.267-.596a.903.903 0 0 0-.608-.206c-.923 0-1.057.801-1.057 1.567 0 .778.133 1.555 1.057 1.555.522 0 .887-.426.935-.923h2.297a3.21 3.21 0 0 1-.037.222c.392-1.447 2.399-1.39 3.492-1.609.328-.06.657-.158.657-.558 0-.426-.401-.583-.79-.583-.729 0-.9.377-.9.644H6.883c.06-1.787 1.76-2.066 3.243-2.066 2.106 0 2.728.612 2.911 1.396V6.575h.983c-.035-.619.025-1.3.498-1.773.522-.524 1.13-.596 2.101-.596.377 0 .704.037 1.082.049v1.652c-.194-.037-.389-.085-.583-.085-.582 0-.778.17-.74.753h1.264v1.267c.568-.86 1.544-1.425 2.775-1.425 2.502 0 3.583 1.386 3.583 3.852h-4.616c.061.728.461 1.226 1.226 1.226.39 0 .815-.147 1.008-.45h2.248c-.486 1.361-1.823 1.992-3.243 1.992-2.017 0-3.535-1.189-3.535-3.291 0-.616.149-1.193.423-1.689h-1.084v4.823H14.02V8.057h-.939Zm-2.274 1.991c-.292.147-.619.219-.947.304-.536.133-.815.255-.815.68 0 .292.316.582.754.582.547 0 .972-.314 1.008-.983v-.583Zm10.885-1.033v-.021a1.04 1.04 0 0 0-1.035-1.035h-.022c-.729 0-1.129.375-1.239 1.056h2.296Z" }) + ] + } + ); +}); + +export { SiCafepress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.cjs new file mode 100644 index 000000000..03db5b877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F39914"; +const SiCairographics = React__namespace.forwardRef(function SiCairographics2({ title = "Cairo Graphics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.58008 0v2.8457h2.83984V0h-2.83984zm.0918.0918h.82421v.82617h-.82422V.0918zm.91601 0h.82422v.82617h-.82422V.0918zm.91602 0h.82422v.82617h-.82422V.0918zM12 .1836a.32052.32137 0 0 0-.32031.3203A.32052.32137 0 0 0 12 .82618a.32052.32137 0 0 0 .32031-.32226A.32052.32137 0 0 0 12 .18359zm-1.32813.82617h.82422v.82617h-.82422v-.82617zm.91602 0h.82422v.82617h-.82422v-.82617zm.91602 0h.82422v.82617h-.82422v-.82617zm.4121.0918a.32052.32137 0 0 0-.3203.3203.32052.32137 0 0 0 .3203.32227.32052.32137 0 0 0 .32032-.32227.32052.32137 0 0 0-.32031-.3203zm-5.41992.3203c-.36366.09009-.18301.4514-.24218.64844-.15085.5019-.93845.6611-1.33204 1.00196-.38502.3332-.61479.72302-.9121 1.08984-.25081.30867-.56287.61108-.61329.96484-.05719.40115-.03739.85443.14454 1.23828.22584.47548.49133 1.07827.86914 1.50196.29019.3254.33045.43387.81836.60547.15466.0704.19392.10477.4043.14843l.041-.2578.18165-.21485c-.24324-.29816-.6114-.32556-.82422-.54297-.35521-.36269-.47236-.73316-.6836-1.14844-.20182-.39793-.4647-.70243-.48632-1.125-.0092-.18098-.08882-.50478.00586-.66797.06289-.10834.36304-.24605.46484-.3496.31544-.32066.17403-.7262.53906-1.02344.3247-.26455.873-.46884 1.25782-.71094.26674-.16772.43279-.22881.49023-.46485.06319-.26005-.14167-.45345-.12305-.69335zm6.84375 0a2.3402 2.34639 0 0 1-.68554 1.66016A2.3402 2.34639 0 0 1 12 3.76953a2.3402 2.34639 0 0 1-1.6543-.6875l-.14453.14453A2.54395 2.55069 0 0 0 12 3.97266c.67461 0 1.3218-.2678 1.79883-.7461a2.54395 2.55069 0 0 0 .74414-1.80469h-.20313zm2.16407 0c.01863.2399-.1862.43331-.12305.69336.05754.23604.22154.29713.48828.46485.38478.2421.93518.4464 1.25977.71094.36477.29724.22162.70278.5371 1.02343.10181.10356.40187.24127.46485.34961.09458.16319.01507.48699.00586.66797-.02157.42257-.2846.72707-.48633 1.125-.21124.41528-.32688.78575-.68164 1.14844-.21287.2174-.58094.2448-.82422.54297l.18164.21484.04102.25781c.21032-.04366.24768-.07803.40234-.14843.48755-.1716.52827-.28007.81836-.60547.3779-.4237.6445-1.02648.8711-1.50196.18183-.38385.20166-.83713.14453-1.23828-.05048-.35376-.36246-.65617-.61329-.96484-.29726-.36682-.52734-.75664-.9121-1.08984-.39353-.34086-1.18119-.50006-1.33204-1.00196-.05906-.19704.12153-.55835-.24218-.64844zm-5.83204.50586h.82422v.82618h-.82422v-.82618zm.91602 0h.82422v.82618h-.82422v-.82618zm.91602 0h.82422v.82618h-.82422v-.82618zm-1.41993.0918a.32052.32137 0 0 0-.3203.32227.32052.32137 0 0 0 .3203.3203.32052.32137 0 0 0 .32032-.3203.32052.32137 0 0 0-.32032-.32227zm.91602 0a.32052.32137 0 0 0-.32031.32227A.32052.32137 0 0 0 12 2.6621a.32052.32137 0 0 0 .32031-.3203A.32052.32137 0 0 0 12 2.01953zm.91602 0a.32052.32137 0 0 0-.32032.32227.32052.32137 0 0 0 .32032.3203.32052.32137 0 0 0 .3203-.3203.32052.32137 0 0 0-.3203-.32227zm-.91797 3.14844c-1.56307 0-2.83008.48287-2.83008 1.07812 0 .52046 1.267.375 2.83008.375 1.5626 0 2.83008.11807 2.83008-.375 0-.5952-1.26748-1.07812-2.83008-1.07812zm-1.41016 1.58008c-1.61506 0-3.0237.66482-3.79492 1.65234a9.49127 9.51641 0 0 0-.11719.93555c.20157-.0019 4.26982-.03274 4.63281.32617l.68946.68164c.11507-.11385.68945-.68164.68945-.68164.363-.3589 4.4316-.32801 4.63281-.32617-.02385-.32127-.0627-.6349-.11718-.94336-.77246-.98344-2.17958-1.64453-3.79102-1.64453h-2.82422zM6.67383 9.36523a9.32897 9.35368 0 0 0-.01758.33008c-.00386.11258.5293.23922.5293.3418 0 .1183-.53233.2607-.52735.39062.15228 3.7416 2.46954 6.71506 5.31055 6.73633l-.45898-5.67773.00195-.00781.45117-1.08594-.69726-.68946c-.28745-.28428-3.41224-.31765-4.5918-.30664v-.03125zm10.64844 0v.03125c-1.17961-.01102-4.30426.0224-4.5918.30664l-.69531.68946.45312 1.09375-.45898 5.67578c2.84162-.02127 5.15817-2.9927 5.31054-6.73438.0049-.12971-.52734-.27238-.52734-.39062 0-.10258.53122-.22911.52734-.3418a9.11348 9.13762 0 0 0-.01757-.33008zm-12.20704.77344c-.78161-.02976-.65792.7332-.39843 1.4082.28877.75119.41972 1.54219.73047 2.28516.1427.34117.3531.67385.72851.77149.01892-.43028-.04815-.54354-.3125-.86329-.2236-.26999-.16888-.63953-.3086-.94336-.18217-.39808-.21227-.79847-.36913-1.19921-.06934-.17747-.42563-.71147-.33008-.91016.16193-.33682.46842-.00468.6211.10547.21459.15487.32847.114.59374.14844.03017.004.18039.10998.5332.27148l-.04101-.375c-.48363-.23358-.52563-.49735-1.05469-.63476-.1509-.03923-.28092-.0602-.39258-.06446zm13.76954 0c-.11172.00425-.2416.02523-.39258.06446-.5286.13741-.57102.40118-1.05469.63476l-.04297.375c.35272-.1615.50489-.26748.53516-.27148.26527-.03444.3792.00643.59375-.14844.15273-.11015.45715-.44229.61914-.10547.09549.19869-.25878.73269-.32813.91016-.15674.40074-.18895.80113-.3711 1.19922-.13975.30382-.08524.67336-.30858.94335-.2643.31975-.32942.433-.31055.86329.37546-.09764.58586-.43032.72851-.77149.3108-.74297.43975-1.53397.72852-2.28515.25998-.67501.38556-1.43797-.39648-1.4082zm-6.88672.32617a7434.7739 7454.4686 0 0 1-.42774 1.03125c.001.01214.32573 4.02957.42774 5.29102.102-1.26145.42677-5.27887.42773-5.29102-.0046-.01117-.3297-.79476-.42773-1.03125zm-4.41992 3.82422c-.33986.45543-.3559.82826-.51172 1.1914-.26848.62555-.00933 1.47171.5 1.92188.3079.27419.81067.49046 1.17773.66993.51055.24953 1.02277.57594 1.59375.68359.12627.02377.44694.06603.33984-.17969-.0496-.1141-.41107-.23466-.51562-.29297-.42288-.23582-.83346-.53785-1.22852-.82617-.48322-.35003-1.0595-.57018-1.43945-1.05469-.15538-.19817-.18157-.2506-.14453-.47851.03526-.21746.0696-.46799.11523-.68555.0515-.2452.12342-.48301.25391-.70312l-.14063-.2461zm8.84375 0-.14063.2461c.1304.2201.20237.45791.2539.70312.0457.21756.07983.4681.11524.68555.03688.22792.0109.28034-.14453.47851-.37989.4845-.95623.70466-1.43945 1.0547-.39496.2883-.80564.59034-1.22852.82616-.1045.0583-.46792.17886-.51758.29297-.10673.24572.21557.20346.3418.17969.57103-.10765 1.08326-.43406 1.59375-.6836.36702-.17946.86967-.39573 1.17773-.66992.50914-.45017.76832-1.29633.5-1.92187-.15599-.36315-.17192-.73598-.51171-1.1914zm-4.54102 4.1504a.38505.38607 0 0 0-.26563.36718.38505.38607 0 1 0 .76954 0 .38505.38607 0 0 0-.50391-.36719zm-5.74024 1.51757c-1.1778 0-1.96289.84814-1.96289 2.02149 0 1.10522.8002 2.02148 1.9629 2.02148.2567 0 .59617-.0239.89062-.16016l-.05273-.63476c-.21895.14383-.52012.21875-.76172.21875-.91355 0-1.2832-.75644-1.2832-1.44531 0-.7343.44553-1.44532 1.23827-1.44532.2265 0 .49774.05247.76954.16602l.06054-.58985c-.20385-.08326-.57443-.15234-.86132-.15234zm2.98829 0c-.49075 0-.91273.15132-1.26758.36328l.0371.60547c.2869-.24224.71705-.39258 1.1172-.39258.7097 0 .95117.3397.95117 1.00586-.27935-.01514-.47456-.01562-.7539-.01562-.73236 0-1.79102.30448-1.79102 1.27343 0 .84027.5816 1.20313 1.4121 1.20313.6493 0 1.02726-.35517 1.19336-.58984h.01563v.49804h.66406c-.0151-.11355-.0293-.3168-.0293-.75586V21.5547c0-1.05223-.44653-1.59766-1.54882-1.59766zm5.87695 0c-.4077 0-.81516.28824-1.0039.68945h-.01368v-.59765h-.66601v3.85937h.71093v-1.75586c0-.96895.41463-1.57421 1.04883-1.57421.1208 0 .26423.01536.39258.06835v-.63671c-.151-.03028-.25735-.05274-.46875-.05274zm2.86133 0c-1.1778 0-1.96485.84814-1.96485 2.02149 0 1.10522.80215 2.02148 1.96485 2.02148 1.15515 0 1.95508-.91626 1.95508-2.02148 0-1.17335-.78483-2.02149-1.95508-2.02149zm-6.22266.0918v3.85937h.71094v-3.85937h-.71094zm6.22266.48437c.755 0 1.19922.71103 1.19922 1.44532 0 .68886-.36872 1.4453-1.19922 1.4453-.83805 0-1.20899-.75643-1.20899-1.4453 0-.7343.44644-1.44532 1.20899-1.44532zM9.51367 22.0547c.151 0 .30213.01562.45313.01562v.33985c0 .57532-.37012 1.01367-1.07227 1.01367-.32465 0-.7168-.21817-.7168-.62695 0-.6813.9509-.7422 1.33594-.7422z" }) + ] + } + ); +}); + +exports.default = SiCairographics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.d.ts new file mode 100644 index 000000000..6e532e80a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F39914"; +declare const SiCairographics: IconType; +export { SiCairographics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.mjs new file mode 100644 index 000000000..101b9e4b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCairographics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F39914"; +const SiCairographics = React.forwardRef(function SiCairographics2({ title = "Cairo Graphics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.58008 0v2.8457h2.83984V0h-2.83984zm.0918.0918h.82421v.82617h-.82422V.0918zm.91601 0h.82422v.82617h-.82422V.0918zm.91602 0h.82422v.82617h-.82422V.0918zM12 .1836a.32052.32137 0 0 0-.32031.3203A.32052.32137 0 0 0 12 .82618a.32052.32137 0 0 0 .32031-.32226A.32052.32137 0 0 0 12 .18359zm-1.32813.82617h.82422v.82617h-.82422v-.82617zm.91602 0h.82422v.82617h-.82422v-.82617zm.91602 0h.82422v.82617h-.82422v-.82617zm.4121.0918a.32052.32137 0 0 0-.3203.3203.32052.32137 0 0 0 .3203.32227.32052.32137 0 0 0 .32032-.32227.32052.32137 0 0 0-.32031-.3203zm-5.41992.3203c-.36366.09009-.18301.4514-.24218.64844-.15085.5019-.93845.6611-1.33204 1.00196-.38502.3332-.61479.72302-.9121 1.08984-.25081.30867-.56287.61108-.61329.96484-.05719.40115-.03739.85443.14454 1.23828.22584.47548.49133 1.07827.86914 1.50196.29019.3254.33045.43387.81836.60547.15466.0704.19392.10477.4043.14843l.041-.2578.18165-.21485c-.24324-.29816-.6114-.32556-.82422-.54297-.35521-.36269-.47236-.73316-.6836-1.14844-.20182-.39793-.4647-.70243-.48632-1.125-.0092-.18098-.08882-.50478.00586-.66797.06289-.10834.36304-.24605.46484-.3496.31544-.32066.17403-.7262.53906-1.02344.3247-.26455.873-.46884 1.25782-.71094.26674-.16772.43279-.22881.49023-.46485.06319-.26005-.14167-.45345-.12305-.69335zm6.84375 0a2.3402 2.34639 0 0 1-.68554 1.66016A2.3402 2.34639 0 0 1 12 3.76953a2.3402 2.34639 0 0 1-1.6543-.6875l-.14453.14453A2.54395 2.55069 0 0 0 12 3.97266c.67461 0 1.3218-.2678 1.79883-.7461a2.54395 2.55069 0 0 0 .74414-1.80469h-.20313zm2.16407 0c.01863.2399-.1862.43331-.12305.69336.05754.23604.22154.29713.48828.46485.38478.2421.93518.4464 1.25977.71094.36477.29724.22162.70278.5371 1.02343.10181.10356.40187.24127.46485.34961.09458.16319.01507.48699.00586.66797-.02157.42257-.2846.72707-.48633 1.125-.21124.41528-.32688.78575-.68164 1.14844-.21287.2174-.58094.2448-.82422.54297l.18164.21484.04102.25781c.21032-.04366.24768-.07803.40234-.14843.48755-.1716.52827-.28007.81836-.60547.3779-.4237.6445-1.02648.8711-1.50196.18183-.38385.20166-.83713.14453-1.23828-.05048-.35376-.36246-.65617-.61329-.96484-.29726-.36682-.52734-.75664-.9121-1.08984-.39353-.34086-1.18119-.50006-1.33204-1.00196-.05906-.19704.12153-.55835-.24218-.64844zm-5.83204.50586h.82422v.82618h-.82422v-.82618zm.91602 0h.82422v.82618h-.82422v-.82618zm.91602 0h.82422v.82618h-.82422v-.82618zm-1.41993.0918a.32052.32137 0 0 0-.3203.32227.32052.32137 0 0 0 .3203.3203.32052.32137 0 0 0 .32032-.3203.32052.32137 0 0 0-.32032-.32227zm.91602 0a.32052.32137 0 0 0-.32031.32227A.32052.32137 0 0 0 12 2.6621a.32052.32137 0 0 0 .32031-.3203A.32052.32137 0 0 0 12 2.01953zm.91602 0a.32052.32137 0 0 0-.32032.32227.32052.32137 0 0 0 .32032.3203.32052.32137 0 0 0 .3203-.3203.32052.32137 0 0 0-.3203-.32227zm-.91797 3.14844c-1.56307 0-2.83008.48287-2.83008 1.07812 0 .52046 1.267.375 2.83008.375 1.5626 0 2.83008.11807 2.83008-.375 0-.5952-1.26748-1.07812-2.83008-1.07812zm-1.41016 1.58008c-1.61506 0-3.0237.66482-3.79492 1.65234a9.49127 9.51641 0 0 0-.11719.93555c.20157-.0019 4.26982-.03274 4.63281.32617l.68946.68164c.11507-.11385.68945-.68164.68945-.68164.363-.3589 4.4316-.32801 4.63281-.32617-.02385-.32127-.0627-.6349-.11718-.94336-.77246-.98344-2.17958-1.64453-3.79102-1.64453h-2.82422zM6.67383 9.36523a9.32897 9.35368 0 0 0-.01758.33008c-.00386.11258.5293.23922.5293.3418 0 .1183-.53233.2607-.52735.39062.15228 3.7416 2.46954 6.71506 5.31055 6.73633l-.45898-5.67773.00195-.00781.45117-1.08594-.69726-.68946c-.28745-.28428-3.41224-.31765-4.5918-.30664v-.03125zm10.64844 0v.03125c-1.17961-.01102-4.30426.0224-4.5918.30664l-.69531.68946.45312 1.09375-.45898 5.67578c2.84162-.02127 5.15817-2.9927 5.31054-6.73438.0049-.12971-.52734-.27238-.52734-.39062 0-.10258.53122-.22911.52734-.3418a9.11348 9.13762 0 0 0-.01757-.33008zm-12.20704.77344c-.78161-.02976-.65792.7332-.39843 1.4082.28877.75119.41972 1.54219.73047 2.28516.1427.34117.3531.67385.72851.77149.01892-.43028-.04815-.54354-.3125-.86329-.2236-.26999-.16888-.63953-.3086-.94336-.18217-.39808-.21227-.79847-.36913-1.19921-.06934-.17747-.42563-.71147-.33008-.91016.16193-.33682.46842-.00468.6211.10547.21459.15487.32847.114.59374.14844.03017.004.18039.10998.5332.27148l-.04101-.375c-.48363-.23358-.52563-.49735-1.05469-.63476-.1509-.03923-.28092-.0602-.39258-.06446zm13.76954 0c-.11172.00425-.2416.02523-.39258.06446-.5286.13741-.57102.40118-1.05469.63476l-.04297.375c.35272-.1615.50489-.26748.53516-.27148.26527-.03444.3792.00643.59375-.14844.15273-.11015.45715-.44229.61914-.10547.09549.19869-.25878.73269-.32813.91016-.15674.40074-.18895.80113-.3711 1.19922-.13975.30382-.08524.67336-.30858.94335-.2643.31975-.32942.433-.31055.86329.37546-.09764.58586-.43032.72851-.77149.3108-.74297.43975-1.53397.72852-2.28515.25998-.67501.38556-1.43797-.39648-1.4082zm-6.88672.32617a7434.7739 7454.4686 0 0 1-.42774 1.03125c.001.01214.32573 4.02957.42774 5.29102.102-1.26145.42677-5.27887.42773-5.29102-.0046-.01117-.3297-.79476-.42773-1.03125zm-4.41992 3.82422c-.33986.45543-.3559.82826-.51172 1.1914-.26848.62555-.00933 1.47171.5 1.92188.3079.27419.81067.49046 1.17773.66993.51055.24953 1.02277.57594 1.59375.68359.12627.02377.44694.06603.33984-.17969-.0496-.1141-.41107-.23466-.51562-.29297-.42288-.23582-.83346-.53785-1.22852-.82617-.48322-.35003-1.0595-.57018-1.43945-1.05469-.15538-.19817-.18157-.2506-.14453-.47851.03526-.21746.0696-.46799.11523-.68555.0515-.2452.12342-.48301.25391-.70312l-.14063-.2461zm8.84375 0-.14063.2461c.1304.2201.20237.45791.2539.70312.0457.21756.07983.4681.11524.68555.03688.22792.0109.28034-.14453.47851-.37989.4845-.95623.70466-1.43945 1.0547-.39496.2883-.80564.59034-1.22852.82616-.1045.0583-.46792.17886-.51758.29297-.10673.24572.21557.20346.3418.17969.57103-.10765 1.08326-.43406 1.59375-.6836.36702-.17946.86967-.39573 1.17773-.66992.50914-.45017.76832-1.29633.5-1.92187-.15599-.36315-.17192-.73598-.51171-1.1914zm-4.54102 4.1504a.38505.38607 0 0 0-.26563.36718.38505.38607 0 1 0 .76954 0 .38505.38607 0 0 0-.50391-.36719zm-5.74024 1.51757c-1.1778 0-1.96289.84814-1.96289 2.02149 0 1.10522.8002 2.02148 1.9629 2.02148.2567 0 .59617-.0239.89062-.16016l-.05273-.63476c-.21895.14383-.52012.21875-.76172.21875-.91355 0-1.2832-.75644-1.2832-1.44531 0-.7343.44553-1.44532 1.23827-1.44532.2265 0 .49774.05247.76954.16602l.06054-.58985c-.20385-.08326-.57443-.15234-.86132-.15234zm2.98829 0c-.49075 0-.91273.15132-1.26758.36328l.0371.60547c.2869-.24224.71705-.39258 1.1172-.39258.7097 0 .95117.3397.95117 1.00586-.27935-.01514-.47456-.01562-.7539-.01562-.73236 0-1.79102.30448-1.79102 1.27343 0 .84027.5816 1.20313 1.4121 1.20313.6493 0 1.02726-.35517 1.19336-.58984h.01563v.49804h.66406c-.0151-.11355-.0293-.3168-.0293-.75586V21.5547c0-1.05223-.44653-1.59766-1.54882-1.59766zm5.87695 0c-.4077 0-.81516.28824-1.0039.68945h-.01368v-.59765h-.66601v3.85937h.71093v-1.75586c0-.96895.41463-1.57421 1.04883-1.57421.1208 0 .26423.01536.39258.06835v-.63671c-.151-.03028-.25735-.05274-.46875-.05274zm2.86133 0c-1.1778 0-1.96485.84814-1.96485 2.02149 0 1.10522.80215 2.02148 1.96485 2.02148 1.15515 0 1.95508-.91626 1.95508-2.02148 0-1.17335-.78483-2.02149-1.95508-2.02149zm-6.22266.0918v3.85937h.71094v-3.85937h-.71094zm6.22266.48437c.755 0 1.19922.71103 1.19922 1.44532 0 .68886-.36872 1.4453-1.19922 1.4453-.83805 0-1.20899-.75643-1.20899-1.4453 0-.7343.44644-1.44532 1.20899-1.44532zM9.51367 22.0547c.151 0 .30213.01562.45313.01562v.33985c0 .57532-.37012 1.01367-1.07227 1.01367-.32465 0-.7168-.21817-.7168-.62695 0-.6813.9509-.7422 1.33594-.7422z" }) + ] + } + ); +}); + +export { SiCairographics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.cjs new file mode 100644 index 000000000..b729db330 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C10C0C"; +const SiCairometro = React__namespace.forwardRef(function SiCairometro2({ title = "Cairo Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.397 4.14h.882v.881h-.882zm-1.628 0h.883v.881h-.883zm4.915 1.055v3.402h-1.386V5.195h-.84v1.763h-2.983V5.196h-.84v3.402H8.543v.84h1.911V7.82h2.983v1.617h5.44V5.195zm2.352 3.395h-1.512V6.028h1.512zM5.173 5.195v2.604h2.353v.805H5.173v.833h3.193V5.195zm2.339 1.757H5.999v-.924h1.513zm-2.64 12.177V9.726h4.175L12 12.68l2.954-2.953h4.176v9.403h-4.176v-3.442L12 18.754l-2.952-3.048v3.424zM12 0L8.485 3.515h-4.97v4.97L0 12l3.515 3.515v4.97h4.97L12 24l3.515-3.515h4.97v-4.97L24 12l-3.515-3.515v-4.97h-4.97zm0 1.708l3.014 3.015h4.263v4.263L22.292 12l-3.015 3.014v4.263h-4.263L12 22.292l-3.014-3.015H4.723v-4.263L1.708 12l3.015-3.014V4.723h4.263Z" }) + ] + } + ); +}); + +exports.default = SiCairometro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.d.ts new file mode 100644 index 000000000..22150a806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C10C0C"; +declare const SiCairometro: IconType; +export { SiCairometro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.mjs new file mode 100644 index 000000000..b5a8a144c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCairometro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C10C0C"; +const SiCairometro = React.forwardRef(function SiCairometro2({ title = "Cairo Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.397 4.14h.882v.881h-.882zm-1.628 0h.883v.881h-.883zm4.915 1.055v3.402h-1.386V5.195h-.84v1.763h-2.983V5.196h-.84v3.402H8.543v.84h1.911V7.82h2.983v1.617h5.44V5.195zm2.352 3.395h-1.512V6.028h1.512zM5.173 5.195v2.604h2.353v.805H5.173v.833h3.193V5.195zm2.339 1.757H5.999v-.924h1.513zm-2.64 12.177V9.726h4.175L12 12.68l2.954-2.953h4.176v9.403h-4.176v-3.442L12 18.754l-2.952-3.048v3.424zM12 0L8.485 3.515h-4.97v4.97L0 12l3.515 3.515v4.97h4.97L12 24l3.515-3.515h4.97v-4.97L24 12l-3.515-3.515v-4.97h-4.97zm0 1.708l3.014 3.015h4.263v4.263L22.292 12l-3.015 3.014v4.263h-4.263L12 22.292l-3.014-3.015H4.723v-4.263L1.708 12l3.015-3.014V4.723h4.263Z" }) + ] + } + ); +}); + +export { SiCairometro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.cjs new file mode 100644 index 000000000..6de2000f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007EAE"; +const SiCaixabank = React__namespace.forwardRef(function SiCaixabank2({ title = "CaixaBank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.938 16c.183 0 .315.13.487.1.239.09.212.383.462.455.19.384.312.797.419 1.21-.077.244.129.384.056.608l.072.04a1.8 1.8 0 0 1-.114.716c.038.426-.17.78-.353 1.14-.13.083-.19.314-.372.273-.323.102-.353.584-.748.524-.25.189-.596.083-.895.09-.176-.09-.419-.067-.536-.22a3.3 3.3 0 0 1-.84-.57c-.102-.22-.333-.318-.363-.57.09-.302-.1-.576-.02-.88l-.06-.504.19-.87c.326-.171.235-.561.558-.683.2-.467.683-.566 1.059-.797.14-.03.311.05.422-.08.205-.03.394.179.577.018m1.496-3.682c.202.14.19.422.372.566l.092.622-.456.669c-.573.303-1.431.433-1.967-.054-.304-.269-.383-.664-.304-1.059l.213-.573c.122-.084.28-.103.365-.243.28-.182.645-.14.967-.213.244.08.607-.05.718.282zm14.967-9.766c-.084 1.424-1.253 2.38-1.868 3.584-.266.714-.89 1.14-1.33 1.784-.405.418-.796.87-1.134 1.334.06.333.418.424.618.667.456.27.502.786.896 1.102.232 0 .232.341.487.3.535.577.967 1.173 1.412 1.795a1.3 1.3 0 0 0 .37.607c.355.514.647 1.064 1.01 1.584.055.585.549.979.7 1.526.22.292.312.635.513.926.316.684.524 1.406.9 2.062.069.152-.023.3-.103.41-.14.114-.25-.091-.414-.06a14 14 0 0 1-2.38-1.2c-.79-.638-1.656-1.09-2.43-1.758-.304-.076-.428-.433-.71-.574-.747-.462-1.344-1.131-2.1-1.563-.341-.266-.683-.518-1.028-.79-.266-.027-.354-.331-.607-.422-.563-.342-1.08-.82-1.656-1.14-.05.077 0 .203-.05.282-.383.373-.28.949-.554 1.364-.01.595-.425 1.028-.596 1.556-.475.846-.888 1.712-1.382 2.55-.657.87-1.01 1.919-1.937 2.614-.205.253-.436.383-.686.546-.114-.03-.274-.012-.304-.152-.114-.212.03-.532-.121-.725.132-.297.05-.627.113-.95l-.053-.14c.01-.444.23-.82.14-1.272a3 3 0 0 0 .206-.91 5 5 0 0 0 .303-1.212 1.5 1.5 0 0 0 .153-.836c.098-.265.117-.576.39-.77.039-.17 0-.342.03-.524.27-.827.608-1.625.817-2.471 0-.061-.06-.08-.103-.092-.596-.03-1.15.092-1.705-.06a14 14 0 0 1-2.695-.311c-.348-.07-.774-.027-1.097-.23-.209.009-.452.05-.653-.063-.418-.2-.919-.167-1.329-.391-.315.038-.54-.16-.82-.19-.274.019-.425-.212-.615-.364v-.092c.5-.683 1.31-.876 2.038-1.139.714-.224 1.511-.243 2.26-.395.475-.08.987.05 1.465-.03.858.02 1.682.16 2.532.182.282.038.544.172.828.16l-.01-.122-.8-1.09c-.302-.705-.857-1.302-1.046-2.05-.182-.219-.012-.553-.152-.796-.011-.11.075-.19.13-.282.17-.068.363.05.535-.06.515.12.986.303 1.503.405.53.21 1.078.422 1.556.776.593.425 1.31.698 1.773 1.351.125.114.316.133.475.091.14-.019.17-.19.303-.243.627-.39 1.334-.615 1.948-1.048.255-.25.657-.28.81-.627.189-.09.36-.212.565-.265.353-.247.707-.52 1.09-.72a1.1 1.1 0 0 0 .515-.244c.627-.342 1.284-.627 1.88-1.02.13-.355.524-.27.805-.355.14.034.334.012.395.19z" }) + ] + } + ); +}); + +exports.default = SiCaixabank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.d.ts new file mode 100644 index 000000000..ef9fcb846 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007EAE"; +declare const SiCaixabank: IconType; +export { SiCaixabank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.mjs new file mode 100644 index 000000000..417d95054 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaixabank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007EAE"; +const SiCaixabank = React.forwardRef(function SiCaixabank2({ title = "CaixaBank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.938 16c.183 0 .315.13.487.1.239.09.212.383.462.455.19.384.312.797.419 1.21-.077.244.129.384.056.608l.072.04a1.8 1.8 0 0 1-.114.716c.038.426-.17.78-.353 1.14-.13.083-.19.314-.372.273-.323.102-.353.584-.748.524-.25.189-.596.083-.895.09-.176-.09-.419-.067-.536-.22a3.3 3.3 0 0 1-.84-.57c-.102-.22-.333-.318-.363-.57.09-.302-.1-.576-.02-.88l-.06-.504.19-.87c.326-.171.235-.561.558-.683.2-.467.683-.566 1.059-.797.14-.03.311.05.422-.08.205-.03.394.179.577.018m1.496-3.682c.202.14.19.422.372.566l.092.622-.456.669c-.573.303-1.431.433-1.967-.054-.304-.269-.383-.664-.304-1.059l.213-.573c.122-.084.28-.103.365-.243.28-.182.645-.14.967-.213.244.08.607-.05.718.282zm14.967-9.766c-.084 1.424-1.253 2.38-1.868 3.584-.266.714-.89 1.14-1.33 1.784-.405.418-.796.87-1.134 1.334.06.333.418.424.618.667.456.27.502.786.896 1.102.232 0 .232.341.487.3.535.577.967 1.173 1.412 1.795a1.3 1.3 0 0 0 .37.607c.355.514.647 1.064 1.01 1.584.055.585.549.979.7 1.526.22.292.312.635.513.926.316.684.524 1.406.9 2.062.069.152-.023.3-.103.41-.14.114-.25-.091-.414-.06a14 14 0 0 1-2.38-1.2c-.79-.638-1.656-1.09-2.43-1.758-.304-.076-.428-.433-.71-.574-.747-.462-1.344-1.131-2.1-1.563-.341-.266-.683-.518-1.028-.79-.266-.027-.354-.331-.607-.422-.563-.342-1.08-.82-1.656-1.14-.05.077 0 .203-.05.282-.383.373-.28.949-.554 1.364-.01.595-.425 1.028-.596 1.556-.475.846-.888 1.712-1.382 2.55-.657.87-1.01 1.919-1.937 2.614-.205.253-.436.383-.686.546-.114-.03-.274-.012-.304-.152-.114-.212.03-.532-.121-.725.132-.297.05-.627.113-.95l-.053-.14c.01-.444.23-.82.14-1.272a3 3 0 0 0 .206-.91 5 5 0 0 0 .303-1.212 1.5 1.5 0 0 0 .153-.836c.098-.265.117-.576.39-.77.039-.17 0-.342.03-.524.27-.827.608-1.625.817-2.471 0-.061-.06-.08-.103-.092-.596-.03-1.15.092-1.705-.06a14 14 0 0 1-2.695-.311c-.348-.07-.774-.027-1.097-.23-.209.009-.452.05-.653-.063-.418-.2-.919-.167-1.329-.391-.315.038-.54-.16-.82-.19-.274.019-.425-.212-.615-.364v-.092c.5-.683 1.31-.876 2.038-1.139.714-.224 1.511-.243 2.26-.395.475-.08.987.05 1.465-.03.858.02 1.682.16 2.532.182.282.038.544.172.828.16l-.01-.122-.8-1.09c-.302-.705-.857-1.302-1.046-2.05-.182-.219-.012-.553-.152-.796-.011-.11.075-.19.13-.282.17-.068.363.05.535-.06.515.12.986.303 1.503.405.53.21 1.078.422 1.556.776.593.425 1.31.698 1.773 1.351.125.114.316.133.475.091.14-.019.17-.19.303-.243.627-.39 1.334-.615 1.948-1.048.255-.25.657-.28.81-.627.189-.09.36-.212.565-.265.353-.247.707-.52 1.09-.72a1.1 1.1 0 0 0 .515-.244c.627-.342 1.284-.627 1.88-1.02.13-.355.524-.27.805-.355.14.034.334.012.395.19z" }) + ] + } + ); +}); + +export { SiCaixabank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.cjs new file mode 100644 index 000000000..7e1bf93e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D33C43"; +const SiCakephp = React__namespace.forwardRef(function SiCakephp2({ title = "CakePHP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 13.875v3.745c0 2.067 5.37 3.743 12 3.743V17.62c-6.63 0-12-1.68-12-3.743v-.002zm21.384 2.333L12 13.875v3.745l9.384 2.333C23.02 19.313 24 18.503 24 17.62v-3.745c0 .882-.98 1.692-2.616 2.333zM12 10.133v3.742c-6.627 0-12-1.677-12-3.744V6.38c0-2.064 5.37-3.743 12-3.743 6.625 0 12 1.68 12 3.744v3.75c0 .883-.98 1.69-2.616 2.334L12 10.13v.003z" }) + ] + } + ); +}); + +exports.default = SiCakephp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.d.ts new file mode 100644 index 000000000..7081c6f57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D33C43"; +declare const SiCakephp: IconType; +export { SiCakephp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.mjs new file mode 100644 index 000000000..a026bfb63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCakephp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D33C43"; +const SiCakephp = React.forwardRef(function SiCakephp2({ title = "CakePHP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 13.875v3.745c0 2.067 5.37 3.743 12 3.743V17.62c-6.63 0-12-1.68-12-3.743v-.002zm21.384 2.333L12 13.875v3.745l9.384 2.333C23.02 19.313 24 18.503 24 17.62v-3.745c0 .882-.98 1.692-2.616 2.333zM12 10.133v3.742c-6.627 0-12-1.677-12-3.744V6.38c0-2.064 5.37-3.743 12-3.743 6.625 0 12 1.68 12 3.744v3.75c0 .883-.98 1.69-2.616 2.334L12 10.13v.003z" }) + ] + } + ); +}); + +export { SiCakephp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.cjs new file mode 100644 index 000000000..b8b69226d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#292929"; +const SiCaldotcom = React__namespace.forwardRef(function SiCaldotcom2({ title = "Cal.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.408 14.488C1.035 14.488 0 13.4 0 12.058c0-1.346.982-2.443 2.408-2.443.758 0 1.282.233 1.691.765l-.66.55a1.343 1.343 0 0 0-1.03-.442c-.93 0-1.44.711-1.44 1.57 0 .86.559 1.557 1.44 1.557.413 0 .765-.147 1.043-.443l.651.573c-.391.51-.929.743-1.695.743zM6.948 10.913h.89v3.49h-.89v-.51c-.185.362-.493.604-1.083.604-.943 0-1.695-.82-1.695-1.826 0-1.007.752-1.825 1.695-1.825.585 0 .898.241 1.083.604zm.026 1.758c0-.546-.374-.998-.964-.998-.568 0-.938.457-.938.998 0 .528.37.998.938.998.586 0 .964-.456.964-.998zM8.467 9.503h.89v4.895h-.89zM9.752 13.937a.53.53 0 0 1 .542-.528c.313 0 .533.242.533.528a.527.527 0 0 1-.533.537.534.534 0 0 1-.542-.537zM14.23 13.839c-.33.403-.832.658-1.426.658a1.806 1.806 0 0 1-1.84-1.826c0-1.007.778-1.825 1.84-1.825.572 0 1.07.241 1.4.622l-.687.577c-.172-.215-.396-.376-.713-.376-.568 0-.938.456-.938.998 0 .541.37.997.938.997.343 0 .58-.179.757-.42zM14.305 12.671c0-1.007.78-1.825 1.84-1.825 1.061 0 1.84.818 1.84 1.825 0 1.007-.779 1.826-1.84 1.826-1.06-.005-1.84-.82-1.84-1.826zm2.778 0c0-.546-.37-.998-.938-.998-.568-.004-.937.452-.937.998 0 .542.37.998.937.998.568 0 .938-.456.938-.998zM24 12.269v2.13h-.89v-1.911c0-.604-.281-.864-.704-.864-.396 0-.678.197-.678.864v1.91h-.89v-1.91c0-.604-.285-.864-.704-.864-.396 0-.744.197-.744.864v1.91h-.89v-3.49h.89v.484c.185-.376.52-.564 1.035-.564.489 0 .898.241 1.123.649.224-.417.554-.65 1.153-.65.731.005 1.299.56 1.299 1.442z" }) + ] + } + ); +}); + +exports.default = SiCaldotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.d.ts new file mode 100644 index 000000000..bc207c476 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#292929"; +declare const SiCaldotcom: IconType; +export { SiCaldotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.mjs new file mode 100644 index 000000000..1b9d3f267 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaldotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#292929"; +const SiCaldotcom = React.forwardRef(function SiCaldotcom2({ title = "Cal.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.408 14.488C1.035 14.488 0 13.4 0 12.058c0-1.346.982-2.443 2.408-2.443.758 0 1.282.233 1.691.765l-.66.55a1.343 1.343 0 0 0-1.03-.442c-.93 0-1.44.711-1.44 1.57 0 .86.559 1.557 1.44 1.557.413 0 .765-.147 1.043-.443l.651.573c-.391.51-.929.743-1.695.743zM6.948 10.913h.89v3.49h-.89v-.51c-.185.362-.493.604-1.083.604-.943 0-1.695-.82-1.695-1.826 0-1.007.752-1.825 1.695-1.825.585 0 .898.241 1.083.604zm.026 1.758c0-.546-.374-.998-.964-.998-.568 0-.938.457-.938.998 0 .528.37.998.938.998.586 0 .964-.456.964-.998zM8.467 9.503h.89v4.895h-.89zM9.752 13.937a.53.53 0 0 1 .542-.528c.313 0 .533.242.533.528a.527.527 0 0 1-.533.537.534.534 0 0 1-.542-.537zM14.23 13.839c-.33.403-.832.658-1.426.658a1.806 1.806 0 0 1-1.84-1.826c0-1.007.778-1.825 1.84-1.825.572 0 1.07.241 1.4.622l-.687.577c-.172-.215-.396-.376-.713-.376-.568 0-.938.456-.938.998 0 .541.37.997.938.997.343 0 .58-.179.757-.42zM14.305 12.671c0-1.007.78-1.825 1.84-1.825 1.061 0 1.84.818 1.84 1.825 0 1.007-.779 1.826-1.84 1.826-1.06-.005-1.84-.82-1.84-1.826zm2.778 0c0-.546-.37-.998-.938-.998-.568-.004-.937.452-.937.998 0 .542.37.998.937.998.568 0 .938-.456.938-.998zM24 12.269v2.13h-.89v-1.911c0-.604-.281-.864-.704-.864-.396 0-.678.197-.678.864v1.91h-.89v-1.91c0-.604-.285-.864-.704-.864-.396 0-.744.197-.744.864v1.91h-.89v-3.49h.89v.484c.185-.376.52-.564 1.035-.564.489 0 .898.241 1.123.649.224-.417.554-.65 1.153-.65.731.005 1.299.56 1.299 1.442z" }) + ] + } + ); +}); + +export { SiCaldotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.cjs new file mode 100644 index 000000000..c059dbfdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006BFF"; +const SiCalendly = React__namespace.forwardRef(function SiCalendly2({ title = "Calendly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.655 14.262c.281 0 .557.023.828.064 0 .005-.005.01-.005.014-.105.267-.234.534-.381.786l-1.219 2.106c-1.112 1.936-3.177 3.127-5.411 3.127h-2.432c-2.23 0-4.294-1.191-5.412-3.127l-1.218-2.106a6.251 6.251 0 0 1 0-6.252l1.218-2.106C6.736 4.832 8.8 3.641 11.035 3.641h2.432c2.23 0 4.294 1.191 5.411 3.127l1.219 2.106c.147.252.271.519.381.786 0 .004.005.009.005.014-.267.041-.543.064-.828.064-1.816 0-2.501-.607-3.291-1.306-.764-.676-1.711-1.517-3.44-1.517h-1.029c-1.251 0-2.387.455-3.2 1.278-.796.805-1.233 1.904-1.233 3.099v1.411c0 1.196.437 2.295 1.233 3.099.813.823 1.949 1.278 3.2 1.278h1.034c1.729 0 2.676-.841 3.439-1.517.791-.703 1.471-1.306 3.287-1.301Zm.005-3.237c.399 0 .794-.036 1.179-.11-.002-.004-.002-.01-.002-.014-.073-.414-.193-.823-.349-1.218.731-.12 1.407-.396 1.986-.819 0-.004-.005-.013-.005-.018-.331-1.085-.832-2.101-1.489-3.03-.649-.915-1.435-1.719-2.331-2.395-1.867-1.398-4.088-2.138-6.428-2.138-1.448 0-2.855.28-4.175.841-1.273.543-2.423 1.315-3.407 2.299S2.878 6.552 2.341 7.83c-.557 1.324-.842 2.726-.842 4.175 0 1.448.281 2.855.842 4.174.542 1.274 1.314 2.423 2.298 3.407s2.129 1.761 3.407 2.299c1.324.556 2.727.841 4.175.841 2.34 0 4.561-.74 6.428-2.137a10.815 10.815 0 0 0 2.331-2.396c.652-.929 1.158-1.949 1.489-3.03 0-.004.005-.014.005-.018-.579-.423-1.255-.699-1.986-.819.161-.395.276-.804.349-1.218.005-.009.005-.014.005-.023.869.166 1.692.506 2.404 1.035.685.505.552 1.075.446 1.416C22.184 20.437 17.619 24 12.221 24c-6.625 0-12-5.375-12-12s5.37-12 12-12c5.398 0 9.963 3.563 11.471 8.464.106.341.239.915-.446 1.421-.717.529-1.535.873-2.404 1.034.128.716.128 1.45 0 2.166-.387-.074-.782-.11-1.182-.11-4.184 0-3.968 2.823-6.736 2.823h-1.029c-1.899 0-3.15-1.357-3.15-3.095v-1.411c0-1.738 1.251-3.094 3.15-3.094h1.034c2.768 0 2.552 2.823 6.731 2.827Z" }) + ] + } + ); +}); + +exports.default = SiCalendly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.d.ts new file mode 100644 index 000000000..ff1dd4f57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006BFF"; +declare const SiCalendly: IconType; +export { SiCalendly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.mjs new file mode 100644 index 000000000..f1e8cd245 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCalendly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006BFF"; +const SiCalendly = React.forwardRef(function SiCalendly2({ title = "Calendly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.655 14.262c.281 0 .557.023.828.064 0 .005-.005.01-.005.014-.105.267-.234.534-.381.786l-1.219 2.106c-1.112 1.936-3.177 3.127-5.411 3.127h-2.432c-2.23 0-4.294-1.191-5.412-3.127l-1.218-2.106a6.251 6.251 0 0 1 0-6.252l1.218-2.106C6.736 4.832 8.8 3.641 11.035 3.641h2.432c2.23 0 4.294 1.191 5.411 3.127l1.219 2.106c.147.252.271.519.381.786 0 .004.005.009.005.014-.267.041-.543.064-.828.064-1.816 0-2.501-.607-3.291-1.306-.764-.676-1.711-1.517-3.44-1.517h-1.029c-1.251 0-2.387.455-3.2 1.278-.796.805-1.233 1.904-1.233 3.099v1.411c0 1.196.437 2.295 1.233 3.099.813.823 1.949 1.278 3.2 1.278h1.034c1.729 0 2.676-.841 3.439-1.517.791-.703 1.471-1.306 3.287-1.301Zm.005-3.237c.399 0 .794-.036 1.179-.11-.002-.004-.002-.01-.002-.014-.073-.414-.193-.823-.349-1.218.731-.12 1.407-.396 1.986-.819 0-.004-.005-.013-.005-.018-.331-1.085-.832-2.101-1.489-3.03-.649-.915-1.435-1.719-2.331-2.395-1.867-1.398-4.088-2.138-6.428-2.138-1.448 0-2.855.28-4.175.841-1.273.543-2.423 1.315-3.407 2.299S2.878 6.552 2.341 7.83c-.557 1.324-.842 2.726-.842 4.175 0 1.448.281 2.855.842 4.174.542 1.274 1.314 2.423 2.298 3.407s2.129 1.761 3.407 2.299c1.324.556 2.727.841 4.175.841 2.34 0 4.561-.74 6.428-2.137a10.815 10.815 0 0 0 2.331-2.396c.652-.929 1.158-1.949 1.489-3.03 0-.004.005-.014.005-.018-.579-.423-1.255-.699-1.986-.819.161-.395.276-.804.349-1.218.005-.009.005-.014.005-.023.869.166 1.692.506 2.404 1.035.685.505.552 1.075.446 1.416C22.184 20.437 17.619 24 12.221 24c-6.625 0-12-5.375-12-12s5.37-12 12-12c5.398 0 9.963 3.563 11.471 8.464.106.341.239.915-.446 1.421-.717.529-1.535.873-2.404 1.034.128.716.128 1.45 0 2.166-.387-.074-.782-.11-1.182-.11-4.184 0-3.968 2.823-6.736 2.823h-1.029c-1.899 0-3.15-1.357-3.15-3.095v-1.411c0-1.738 1.251-3.094 3.15-3.094h1.034c2.768 0 2.552 2.823 6.731 2.827Z" }) + ] + } + ); +}); + +export { SiCalendly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.cjs new file mode 100644 index 000000000..0b25b8525 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#45B29D"; +const SiCalibreweb = React__namespace.forwardRef(function SiCalibreweb2({ title = "Calibre-Web", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.736.083q4.9353-.6785 5.5252 4.1915-1.104 5.4862-6.4778 7.1446-1.3131.3981-2.6673.1905-.409-.133-.6668-.4763a3.91 3.91 0 0 1 0-1.7147q4.0727.4425 6.4778-3.0484.8668-1.3161.5715-2.8578-.5576-1.2044-1.9052-1.1432-2.7075.4504-4.382 2.6674-3.9135 5.7548-2.4768 12.5745 1.59 5.4391 6.954 3.5246 1.458-.7474 2.6674-1.81 1.627.6834.8573 2.2864-4.452 3.9011-9.8119 1.4289-3.1384-2.512-3.5247-6.573-.858-7.33 3.62-13.1462Q10.673.9268 13.736.083" }) + ] + } + ); +}); + +exports.default = SiCalibreweb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.d.ts new file mode 100644 index 000000000..1386fe227 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#45B29D"; +declare const SiCalibreweb: IconType; +export { SiCalibreweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.mjs new file mode 100644 index 000000000..89799b254 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCalibreweb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#45B29D"; +const SiCalibreweb = React.forwardRef(function SiCalibreweb2({ title = "Calibre-Web", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.736.083q4.9353-.6785 5.5252 4.1915-1.104 5.4862-6.4778 7.1446-1.3131.3981-2.6673.1905-.409-.133-.6668-.4763a3.91 3.91 0 0 1 0-1.7147q4.0727.4425 6.4778-3.0484.8668-1.3161.5715-2.8578-.5576-1.2044-1.9052-1.1432-2.7075.4504-4.382 2.6674-3.9135 5.7548-2.4768 12.5745 1.59 5.4391 6.954 3.5246 1.458-.7474 2.6674-1.81 1.627.6834.8573 2.2864-4.452 3.9011-9.8119 1.4289-3.1384-2.512-3.5247-6.573-.858-7.33 3.62-13.1462Q10.673.9268 13.736.083" }) + ] + } + ); +}); + +export { SiCalibreweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.cjs new file mode 100644 index 000000000..e86560fac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111324"; +const SiCampaignmonitor = React__namespace.forwardRef(function SiCampaignmonitor2({ title = "Campaign Monitor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.836 4.27c-.29-.413-.86-.515-1.273-.226L.163 19.73c.167.235.437.39.747.39h22.18c.503 0 .91-.41.91-.914V4.78c-.004-.176-.058-.352-.164-.51zm-22.4-.226c-.413-.29-.982-.19-1.272.226-.107.154-.162.332-.164.51v14.45l10.664-8.736-9.227-6.45v-.002z" }) + ] + } + ); +}); + +exports.default = SiCampaignmonitor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.d.ts new file mode 100644 index 000000000..acca1adf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111324"; +declare const SiCampaignmonitor: IconType; +export { SiCampaignmonitor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.mjs new file mode 100644 index 000000000..a1ac4acee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCampaignmonitor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111324"; +const SiCampaignmonitor = React.forwardRef(function SiCampaignmonitor2({ title = "Campaign Monitor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.836 4.27c-.29-.413-.86-.515-1.273-.226L.163 19.73c.167.235.437.39.747.39h22.18c.503 0 .91-.41.91-.914V4.78c-.004-.176-.058-.352-.164-.51zm-22.4-.226c-.413-.29-.982-.19-1.272.226-.107.154-.162.332-.164.51v14.45l10.664-8.736-9.227-6.45v-.002z" }) + ] + } + ); +}); + +export { SiCampaignmonitor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.cjs new file mode 100644 index 000000000..eb72088d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC5D0D"; +const SiCamunda = React__namespace.forwardRef(function SiCamunda2({ title = "Camunda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.327 0A3.327 3.327 0 0 0 0 3.326v17.348A3.327 3.327 0 0 0 3.327 24h17.347A3.326 3.326 0 0 0 24 20.674V3.326A3.326 3.326 0 0 0 20.674 0H3.327Zm8.687 3.307c1.875 0 2.84 1.105 2.84 3.049v1.175H13.05V6.23c0-.867-.392-1.203-.994-1.203-.615-.014-.993.322-.993 1.189v6.56c0 .867.392 1.175.993 1.175.616 0 .994-.308.994-1.175v-1.734h1.804v1.608c-.014 1.945-.979 3.049-2.854 3.049-1.874 0-2.839-1.119-2.839-3.035V6.356c.014-1.944.979-3.049 2.853-3.049ZM9.161 17.476h5.693v3.217H9.161v-3.217Z" }) + ] + } + ); +}); + +exports.default = SiCamunda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.d.ts new file mode 100644 index 000000000..8dd4ae1e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC5D0D"; +declare const SiCamunda: IconType; +export { SiCamunda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.mjs new file mode 100644 index 000000000..b6f6a299e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCamunda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC5D0D"; +const SiCamunda = React.forwardRef(function SiCamunda2({ title = "Camunda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.327 0A3.327 3.327 0 0 0 0 3.326v17.348A3.327 3.327 0 0 0 3.327 24h17.347A3.326 3.326 0 0 0 24 20.674V3.326A3.326 3.326 0 0 0 20.674 0H3.327Zm8.687 3.307c1.875 0 2.84 1.105 2.84 3.049v1.175H13.05V6.23c0-.867-.392-1.203-.994-1.203-.615-.014-.993.322-.993 1.189v6.56c0 .867.392 1.175.993 1.175.616 0 .994-.308.994-1.175v-1.734h1.804v1.608c-.014 1.945-.979 3.049-2.854 3.049-1.874 0-2.839-1.119-2.839-3.035V6.356c.014-1.944.979-3.049 2.853-3.049ZM9.161 17.476h5.693v3.217H9.161v-3.217Z" }) + ] + } + ); +}); + +export { SiCamunda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.cjs new file mode 100644 index 000000000..1a5958a0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E95420"; +const SiCanonical = React__namespace.forwardRef(function SiCanonical2({ title = "Canonical", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.427 0v24h15.146V0Zm9.994 10.25a1.568 1.568 0 0 1 1.567 1.568 1.568 1.568 0 0 1-1.567 1.568 1.568 1.568 0 0 1-1.568-1.568 1.568 1.568 0 0 1 1.568-1.568zm-2.157.16c.122 0 .245.005.369.015a2.268 2.268 0 0 0-.476 1.271 3.825 3.825 0 0 0-3.08 1.647 2.243 2.243 0 0 0-1.308-.335 5.159 5.159 0 0 1 4.495-2.599zm4.242 2.296a5.14 5.14 0 0 1 .74 3.905 5.139 5.139 0 0 1-.997 2.113 2.25 2.25 0 0 0-.75-1.167 3.837 3.837 0 0 0 .125-3.818 2.26 2.26 0 0 0 .882-1.033zm-8.616.982a1.568 1.568 0 0 1 1.568 1.568 1.568 1.568 0 0 1-1.568 1.568 1.568 1.568 0 0 1-1.567-1.568 1.568 1.568 0 0 1 1.567-1.568Zm.933 3.618a3.818 3.818 0 0 0 2.604 1.986c.127.027.256.048.385.063.01.476.17.932.459 1.31a5.161 5.161 0 0 1-1.114-.114 5.105 5.105 0 0 1-3.675-3.08 2.26 2.26 0 0 0 1.34-.165zm5.244.427a1.568 1.568 0 0 1 1.568 1.568 1.568 1.568 0 0 1-1.568 1.568A1.568 1.568 0 0 1 12.5 19.3a1.568 1.568 0 0 1 1.568-1.568z" }) + ] + } + ); +}); + +exports.default = SiCanonical; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.d.ts new file mode 100644 index 000000000..1053cb310 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E95420"; +declare const SiCanonical: IconType; +export { SiCanonical as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.mjs new file mode 100644 index 000000000..556929d6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCanonical.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E95420"; +const SiCanonical = React.forwardRef(function SiCanonical2({ title = "Canonical", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.427 0v24h15.146V0Zm9.994 10.25a1.568 1.568 0 0 1 1.567 1.568 1.568 1.568 0 0 1-1.567 1.568 1.568 1.568 0 0 1-1.568-1.568 1.568 1.568 0 0 1 1.568-1.568zm-2.157.16c.122 0 .245.005.369.015a2.268 2.268 0 0 0-.476 1.271 3.825 3.825 0 0 0-3.08 1.647 2.243 2.243 0 0 0-1.308-.335 5.159 5.159 0 0 1 4.495-2.599zm4.242 2.296a5.14 5.14 0 0 1 .74 3.905 5.139 5.139 0 0 1-.997 2.113 2.25 2.25 0 0 0-.75-1.167 3.837 3.837 0 0 0 .125-3.818 2.26 2.26 0 0 0 .882-1.033zm-8.616.982a1.568 1.568 0 0 1 1.568 1.568 1.568 1.568 0 0 1-1.568 1.568 1.568 1.568 0 0 1-1.567-1.568 1.568 1.568 0 0 1 1.567-1.568Zm.933 3.618a3.818 3.818 0 0 0 2.604 1.986c.127.027.256.048.385.063.01.476.17.932.459 1.31a5.161 5.161 0 0 1-1.114-.114 5.105 5.105 0 0 1-3.675-3.08 2.26 2.26 0 0 0 1.34-.165zm5.244.427a1.568 1.568 0 0 1 1.568 1.568 1.568 1.568 0 0 1-1.568 1.568A1.568 1.568 0 0 1 12.5 19.3a1.568 1.568 0 0 1 1.568-1.568z" }) + ] + } + ); +}); + +export { SiCanonical as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.cjs new file mode 100644 index 000000000..16cd563c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E72429"; +const SiCanvas = React__namespace.forwardRef(function SiCanvas2({ title = "Canvas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.4403 15.4142a13.7061 13.7061 0 0 1-.4362-3.4403 13.7 13.7 0 0 1 .4362-3.4401c1.7144.2103 3.0438 1.6686 3.0438 3.44 0 1.771-1.3287 3.23-3.0438 3.4404zm3.9728-3.4403c0 .6004.4866 1.0873 1.0872 1.0873.601 0 1.088-.487 1.088-1.0873s-.487-1.088-1.088-1.088c-.6006 0-1.0872.4876-1.0872 1.088zM23.56 8.5338c-1.7151.2103-3.044 1.6686-3.044 3.44 0 1.771 1.3289 3.23 3.044 3.4404a13.7313 13.7313 0 0 0 .436-3.4403c0-1.1883-.1518-2.3413-.436-3.4401zm-6.148 3.44c0 .6005.4865 1.0874 1.0877 1.0874.6002 0 1.088-.487 1.088-1.0873s-.4878-1.088-1.088-1.088c-.6012 0-1.0877.4876-1.0877 1.088zm-5.4347 8.5465c-1.7709 0-3.229 1.33-3.44 3.044a13.7364 13.7364 0 0 0 3.441.4357c1.1885 0 2.3403-.1515 3.44-.4357-.2107-1.714-1.6687-3.044-3.441-3.044zm.001-3.1046c-.6012 0-1.0878.4876-1.0878 1.0883s.4866 1.0882 1.0878 1.0882c.6 0 1.087-.4874 1.087-1.0882s-.487-1.0883-1.087-1.0883zm0-13.936c1.7713 0 3.2295-1.3292 3.4399-3.0438A13.7353 13.7353 0 0 0 11.9782 0c-1.1887 0-2.3412.1519-3.441.4359.211 1.7146 1.6691 3.0438 3.441 3.0438zm0 .9291c-.6012 0-1.0878.4866-1.0878 1.0876 0 .6002.4866 1.0876 1.0878 1.0876.6 0 1.087-.4874 1.087-1.0876 0-.601-.487-1.0876-1.087-1.0876zm6.032 13.5965c-1.2514 1.2523-1.344 3.2211-.2825 4.582a13.762 13.762 0 0 0 4.8636-4.8654c-1.3608-1.0597-3.3299-.9673-4.5812.2834zm-.6568-2.1948c-.425-.4245-1.1135-.4245-1.539 0-.4243.4252-.4243 1.1136 0 1.5383.4255.4253 1.114.4253 1.539 0 .424-.4247.424-1.1131 0-1.5383zM5.9648 5.9603c1.2516-1.2513 1.3437-3.2206.2825-4.5813a13.7677 13.7677 0 0 0-4.8644 4.8643c1.3612 1.0616 3.3306.9687 4.582-.283zm.6567.6572c-.424.4247-.424 1.1139 0 1.5383.4245.4246 1.114.4246 1.5382 0 .4248-.4244.4248-1.1136 0-1.5383-.4243-.4243-1.1137-.4243-1.5382 0zm15.9625-.3857a13.7597 13.7597 0 0 0-4.8637-4.8642c-1.0614 1.3609-.969 3.33.2823 4.5818 1.2517 1.2507 3.2204 1.3436 4.5814.2824zM17.346 8.1443c.4237-.4248.4237-1.1135 0-1.5383-.425-.4247-1.1145-.4247-1.5388 0-.4241.4248-.4241 1.1135 0 1.5383.4243.4243 1.1137.4243 1.5388 0zM1.3772 17.7087a13.763 13.763 0 0 0 4.8647 4.8654c1.0613-1.3608.9685-3.3297-.2833-4.5818-1.2512-1.251-3.2204-1.3436-4.5814-.2836zm5.2385-1.9115c-.4238.4247-.4238 1.1136 0 1.5384.425.4246 1.1141.4246 1.5382 0 .425-.4248.425-1.1137 0-1.5384-.4241-.4245-1.1131-.4245-1.5382 0z" }) + ] + } + ); +}); + +exports.default = SiCanvas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.d.ts new file mode 100644 index 000000000..871314c17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E72429"; +declare const SiCanvas: IconType; +export { SiCanvas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.mjs new file mode 100644 index 000000000..d2249710e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCanvas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E72429"; +const SiCanvas = React.forwardRef(function SiCanvas2({ title = "Canvas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.4403 15.4142a13.7061 13.7061 0 0 1-.4362-3.4403 13.7 13.7 0 0 1 .4362-3.4401c1.7144.2103 3.0438 1.6686 3.0438 3.44 0 1.771-1.3287 3.23-3.0438 3.4404zm3.9728-3.4403c0 .6004.4866 1.0873 1.0872 1.0873.601 0 1.088-.487 1.088-1.0873s-.487-1.088-1.088-1.088c-.6006 0-1.0872.4876-1.0872 1.088zM23.56 8.5338c-1.7151.2103-3.044 1.6686-3.044 3.44 0 1.771 1.3289 3.23 3.044 3.4404a13.7313 13.7313 0 0 0 .436-3.4403c0-1.1883-.1518-2.3413-.436-3.4401zm-6.148 3.44c0 .6005.4865 1.0874 1.0877 1.0874.6002 0 1.088-.487 1.088-1.0873s-.4878-1.088-1.088-1.088c-.6012 0-1.0877.4876-1.0877 1.088zm-5.4347 8.5465c-1.7709 0-3.229 1.33-3.44 3.044a13.7364 13.7364 0 0 0 3.441.4357c1.1885 0 2.3403-.1515 3.44-.4357-.2107-1.714-1.6687-3.044-3.441-3.044zm.001-3.1046c-.6012 0-1.0878.4876-1.0878 1.0883s.4866 1.0882 1.0878 1.0882c.6 0 1.087-.4874 1.087-1.0882s-.487-1.0883-1.087-1.0883zm0-13.936c1.7713 0 3.2295-1.3292 3.4399-3.0438A13.7353 13.7353 0 0 0 11.9782 0c-1.1887 0-2.3412.1519-3.441.4359.211 1.7146 1.6691 3.0438 3.441 3.0438zm0 .9291c-.6012 0-1.0878.4866-1.0878 1.0876 0 .6002.4866 1.0876 1.0878 1.0876.6 0 1.087-.4874 1.087-1.0876 0-.601-.487-1.0876-1.087-1.0876zm6.032 13.5965c-1.2514 1.2523-1.344 3.2211-.2825 4.582a13.762 13.762 0 0 0 4.8636-4.8654c-1.3608-1.0597-3.3299-.9673-4.5812.2834zm-.6568-2.1948c-.425-.4245-1.1135-.4245-1.539 0-.4243.4252-.4243 1.1136 0 1.5383.4255.4253 1.114.4253 1.539 0 .424-.4247.424-1.1131 0-1.5383zM5.9648 5.9603c1.2516-1.2513 1.3437-3.2206.2825-4.5813a13.7677 13.7677 0 0 0-4.8644 4.8643c1.3612 1.0616 3.3306.9687 4.582-.283zm.6567.6572c-.424.4247-.424 1.1139 0 1.5383.4245.4246 1.114.4246 1.5382 0 .4248-.4244.4248-1.1136 0-1.5383-.4243-.4243-1.1137-.4243-1.5382 0zm15.9625-.3857a13.7597 13.7597 0 0 0-4.8637-4.8642c-1.0614 1.3609-.969 3.33.2823 4.5818 1.2517 1.2507 3.2204 1.3436 4.5814.2824zM17.346 8.1443c.4237-.4248.4237-1.1135 0-1.5383-.425-.4247-1.1145-.4247-1.5388 0-.4241.4248-.4241 1.1135 0 1.5383.4243.4243 1.1137.4243 1.5388 0zM1.3772 17.7087a13.763 13.763 0 0 0 4.8647 4.8654c1.0613-1.3608.9685-3.3297-.2833-4.5818-1.2512-1.251-3.2204-1.3436-4.5814-.2836zm5.2385-1.9115c-.4238.4247-.4238 1.1136 0 1.5384.425.4246 1.1141.4246 1.5382 0 .425-.4248.425-1.1137 0-1.5384-.4241-.4245-1.1131-.4245-1.5382 0z" }) + ] + } + ); +}); + +export { SiCanvas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.cjs new file mode 100644 index 000000000..14515dd40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#119EFF"; +const SiCapacitor = React__namespace.forwardRef(function SiCapacitor2({ title = "Capacitor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 3.7l-5.766 5.766 5.725 5.736-3.713 3.712L5.073 3.742 8.786.03l5.736 5.726L20.284 0 24 3.7zM.029 8.785l3.713-3.713 15.173 15.173-3.713 3.714-5.732-5.726L3.7 24 0 20.285l5.754-5.764L.029 8.785z" }) + ] + } + ); +}); + +exports.default = SiCapacitor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.d.ts new file mode 100644 index 000000000..60ca80653 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#119EFF"; +declare const SiCapacitor: IconType; +export { SiCapacitor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.mjs new file mode 100644 index 000000000..b3eb1ce01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCapacitor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#119EFF"; +const SiCapacitor = React.forwardRef(function SiCapacitor2({ title = "Capacitor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 3.7l-5.766 5.766 5.725 5.736-3.713 3.712L5.073 3.742 8.786.03l5.736 5.726L20.284 0 24 3.7zM.029 8.785l3.713-3.713 15.173 15.173-3.713 3.714-5.732-5.726L3.7 24 0 20.285l5.754-5.764L.029 8.785z" }) + ] + } + ); +}); + +export { SiCapacitor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.cjs new file mode 100644 index 000000000..76f8cd003 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED5B26"; +const SiCaprover = React__namespace.forwardRef(function SiCaprover2({ title = "CapRover", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9999 0C5.3755 0 0 5.3758 0 12.0003S5.3755 24 11.9999 24 24 18.6247 24 12.0002 18.6243 0 11.9999 0m0 .5072c6.3503 0 11.493 5.1427 11.493 11.493 0 6.3502-5.1427 11.4927-11.493 11.4927S.5071 18.3504.5071 12.0002C.5071 5.6499 5.6496.5072 12 .5072m-1.4425 1.5094c-.0504-.0034-.0758-.0027-.0693.0034.011.0103.3087.1672.6616.3489 1.0473.539 1.69 1.024 1.6578 1.251-.0297.2092-.0944.2159-2.1189.2177-2.0152.0018-2.2017.0166-3.0473.2406-1.095.2902-1.7084.8807-1.9024 1.8313-.0788.3865-.079.5708-.0013 1.0164.0809.4637.2153.8594.4794 1.4111.664 1.387 1.8457 3.0225 3.354 4.642 1.3542 1.4542 2.1135 2.7242 2.3388 3.912.115.6058.066 1.573-.119 2.3522-.1849.7788-.3972 1.208-1.0334 2.089-.148.205-.269.3825-.2691.3946.0003.0118.1218-.0734.2705-.1895 1.8675-1.4584 2.9028-2.7748 3.2631-4.1496.0843-.3216.094-.4466.0947-1.2205.0008-.9341-.0274-1.161-.2265-1.8246-.1398-.4662-.338-.9269-.569-1.3234-.415-.7118-1.4992-2.2216-2.1825-3.039-.4463-.5338-.7032-.9027-.9684-1.391-.6563-1.2077-.6871-2.4202-.072-2.835.2383-.1606.4886-.214 1.0035-.2138.693.0002 1.3311.1554 3.2162.7822 1.0735.357 2.094.5804 2.6547.5808.5397.0005.8497-.1352 1.007-.4411.139-.2703.1142-.6903-.0617-1.0432-.2352-.4719-.8798-1.1326-1.5147-1.5525-.9685-.6404-2.3945-1.2551-3.4646-1.4935-.4526-.1008-2.0288-.3324-2.3812-.3565m1.6478 4.3122c-.3793-.0015-.5496.0601-.7557.2493-.334.3067-.3976.5975-.2537 1.1599.1899.7426.5648 1.266 1.8453 2.5772.3877.397.815.8571.9494 1.0226.5445.6698.9385 1.3935 1.128 2.0718.107.3824.1102.4239.1067 1.357-.0032.8757-.0132 1.0095-.1102 1.486-.1552.762-.2614 1.0578-.748 2.083l-.2472.5213c-.0208.044.0182.017.0866-.0602.2214-.2498 1.053-1.5314 1.2879-1.985.4156-.8022.7215-1.7813.922-2.9512.128-.7467.1287-1.799.0018-2.3781-.385-1.7558-1.6052-3.7315-2.8936-4.6853-.507-.3753-.6783-.445-1.143-.464a5 5 0 0 0-.1762-.0043zm3.9252 1.0813c-.0339.0028-.068.0153-.117.0358-.0809.0337-.1678.1114-.2047.1828-.1153.2228.0095.4969.5758 1.2657.3845.522.7752 1.2765.893 1.7244.065.2471.0844.4406.0844.8421 0 .4593-.0802 1.2348-.1545 1.4939-.0478.1668.0272.092.1207-.1203.1094-.2485.5073-1.4214.6089-1.7946.1001-.3683.1007-1.1238.0012-1.5239-.0924-.3711-.3643-.9614-.5937-1.2884-.1835-.2616-.573-.5576-.9775-.7428-.1243-.057-.1802-.0793-.2367-.0747z" }) + ] + } + ); +}); + +exports.default = SiCaprover; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.d.ts new file mode 100644 index 000000000..abdba8557 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED5B26"; +declare const SiCaprover: IconType; +export { SiCaprover as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.mjs new file mode 100644 index 000000000..d79361cfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaprover.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED5B26"; +const SiCaprover = React.forwardRef(function SiCaprover2({ title = "CapRover", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9999 0C5.3755 0 0 5.3758 0 12.0003S5.3755 24 11.9999 24 24 18.6247 24 12.0002 18.6243 0 11.9999 0m0 .5072c6.3503 0 11.493 5.1427 11.493 11.493 0 6.3502-5.1427 11.4927-11.493 11.4927S.5071 18.3504.5071 12.0002C.5071 5.6499 5.6496.5072 12 .5072m-1.4425 1.5094c-.0504-.0034-.0758-.0027-.0693.0034.011.0103.3087.1672.6616.3489 1.0473.539 1.69 1.024 1.6578 1.251-.0297.2092-.0944.2159-2.1189.2177-2.0152.0018-2.2017.0166-3.0473.2406-1.095.2902-1.7084.8807-1.9024 1.8313-.0788.3865-.079.5708-.0013 1.0164.0809.4637.2153.8594.4794 1.4111.664 1.387 1.8457 3.0225 3.354 4.642 1.3542 1.4542 2.1135 2.7242 2.3388 3.912.115.6058.066 1.573-.119 2.3522-.1849.7788-.3972 1.208-1.0334 2.089-.148.205-.269.3825-.2691.3946.0003.0118.1218-.0734.2705-.1895 1.8675-1.4584 2.9028-2.7748 3.2631-4.1496.0843-.3216.094-.4466.0947-1.2205.0008-.9341-.0274-1.161-.2265-1.8246-.1398-.4662-.338-.9269-.569-1.3234-.415-.7118-1.4992-2.2216-2.1825-3.039-.4463-.5338-.7032-.9027-.9684-1.391-.6563-1.2077-.6871-2.4202-.072-2.835.2383-.1606.4886-.214 1.0035-.2138.693.0002 1.3311.1554 3.2162.7822 1.0735.357 2.094.5804 2.6547.5808.5397.0005.8497-.1352 1.007-.4411.139-.2703.1142-.6903-.0617-1.0432-.2352-.4719-.8798-1.1326-1.5147-1.5525-.9685-.6404-2.3945-1.2551-3.4646-1.4935-.4526-.1008-2.0288-.3324-2.3812-.3565m1.6478 4.3122c-.3793-.0015-.5496.0601-.7557.2493-.334.3067-.3976.5975-.2537 1.1599.1899.7426.5648 1.266 1.8453 2.5772.3877.397.815.8571.9494 1.0226.5445.6698.9385 1.3935 1.128 2.0718.107.3824.1102.4239.1067 1.357-.0032.8757-.0132 1.0095-.1102 1.486-.1552.762-.2614 1.0578-.748 2.083l-.2472.5213c-.0208.044.0182.017.0866-.0602.2214-.2498 1.053-1.5314 1.2879-1.985.4156-.8022.7215-1.7813.922-2.9512.128-.7467.1287-1.799.0018-2.3781-.385-1.7558-1.6052-3.7315-2.8936-4.6853-.507-.3753-.6783-.445-1.143-.464a5 5 0 0 0-.1762-.0043zm3.9252 1.0813c-.0339.0028-.068.0153-.117.0358-.0809.0337-.1678.1114-.2047.1828-.1153.2228.0095.4969.5758 1.2657.3845.522.7752 1.2765.893 1.7244.065.2471.0844.4406.0844.8421 0 .4593-.0802 1.2348-.1545 1.4939-.0478.1668.0272.092.1207-.1203.1094-.2485.5073-1.4214.6089-1.7946.1001-.3683.1007-1.1238.0012-1.5239-.0924-.3711-.3643-.9614-.5937-1.2884-.1835-.2616-.573-.5576-.9775-.7428-.1243-.057-.1802-.0793-.2367-.0747z" }) + ] + } + ); +}); + +export { SiCaprover as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.cjs new file mode 100644 index 000000000..ec05c0d03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0133AD"; +const SiCardano = React__namespace.forwardRef(function SiCardano2({ title = "Cardano", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5765 11.92c-.0488.8906.6316 1.653 1.5219 1.7056h.0934c.8928-.0006 1.6161-.725 1.6155-1.6178-.0006-.8928-.725-1.6161-1.6178-1.6155-.8578.0006-1.5658.6711-1.613 1.5277Zm-6.025-.416c-.288-.0161-.5345.2042-.5507.4922-.0161.288.2042.5345.4922.5507.2878.0161.5343-.204.5506-.4918.0167-.2876-.2029-.5343-.4905-.5509H.5514Zm5.9226-8.9645c.257-.1309.3593-.4453.2284-.7024-.1309-.257-.4453-.3593-.7024-.2284-.2558.1302-.3585.4424-.2301.6991.13.2582.4448.3622.703.2322.0003-.0002.0007-.0003.001-.0005Zm1.6397 2.8589c.398-.2006.558-.6859.3573-1.0839-.2006-.398-.6859-.558-1.0839-.3573-.3978.2006-.5579.6856-.3575 1.0835.2007.398.686.5581 1.0842.3578ZM2.597 7.3645c.3072.2013.7194.1154.9206-.1918.2013-.3072.1154-.7194-.1918-.9206-.3072-.2013-.7194-.1154-.9206.1918 0 .0001-.0001.0002-.0002.0003-.201.3072-.1151.7191.192.9203Zm.9824 3.8515c-.4453-.0254-.827.3149-.8524.7603s.3149.827.7603.8524c.4453.0254.827-.3149.8524-.7603v-.0006c.0251-.4451-.3152-.8264-.7603-.8518Zm-.8915 5.4221c-.328.1652-.46.565-.2948.893.1652.328.565.46.893.2948.328-.1652.46-.565.2948-.893l-.0002-.0004c-.1645-.3276-.5633-.4598-.8909-.2954-.0006.0003-.0013.0006-.0019.001Zm3.136-7.0931c.4386.2876 1.0274.1653 1.315-.2734.2876-.4386.1653-1.0274-.2734-1.315-.4386-.2876-1.0273-.1653-1.3149.2732-.2878.4381-.166 1.0266.2721 1.3144.0004.0003.0008.0005.0012.0008Zm9.9501-4.2106c.3729.2447.8737.1408 1.1184-.2321.2447-.3729.1408-.8737-.2321-1.1184-.3729-.2447-.8737-.1408-1.1184.2321 0 .0001-.0001.0002-.0002.0003-.2447.3726-.141.8729.2316 1.1176.0003.0002.0005.0003.0008.0005Zm1.6563-2.8499c.2413.1579.565.0904.723-.151s.0904-.565-.151-.723c-.241-.1577-.5642-.0906-.7224.1501-.1584.241-.0915.5648.1495.7233l.0009.0006Zm-1.5296 7.8938c-.8911-.0507-1.6546.6305-1.7053 1.5216-.0507.8911.6305 1.6546 1.5216 1.7053h.0928c.8925 0 1.616-.7235 1.616-1.616 0-.8572-.6693-1.5652-1.5251-1.6134v.0026ZM8.645 9.433c.2737.5459.8331.8896 1.4438.887.8925-.0002 1.6159-.7238 1.6157-1.6163 0-.2526-.0593-.5018-.1731-.7273-.4017-.7971-1.3735-1.1176-2.1706-.7158-.7971.4017-1.1176 1.3735-.7158 2.1706v.0019Zm12.6669-2.0704c.3273-.1666.4575-.567.2909-.8943-.1666-.3273-.567-.4575-.8943-.2909-.3259.1659-.4567.5639-.2927.8908.1652.3284.5653.4607.8937.2956.0008-.0004.0015-.0008.0023-.0012Zm-4.096.5146c-.4683.2362-.6565.8074-.4203 1.2757.2362.4683.8074.6565 1.2757.4203.468-.2361.6563-.8066.4207-1.2749-.2364-.4683-.8074-.6568-1.2762-.4211Zm-5.2768-5.6365c.3667.0205.6806-.2601.7011-.6267s-.2601-.6806-.6267-.7011c-.3655-.0205-.6789.2584-.7009.6238-.0225.3662.2562.6813.6224.7038.0014 0 .0028.0002.0042.0002Zm-.0077 4.1837c.5237.0288.9717-.3724 1.0006-.8961.0288-.5237-.3723-.9717-.8961-1.0006-.5231-.0288-.9707.3714-1.0005.8944-.0298.5237.3706.9724.8943 1.0021h.0017Zm-5.1475 9.6992c.4685-.2359.657-.807.421-1.2755-.2359-.4685-.807-.657-1.2755-.421-.4684.2359-.6569.8069-.4211 1.2754.2362.4682.807.6567 1.2755.4211Zm5.76-8.313c-.4881.7459-.2792 1.7463.4667 2.2344s1.7463.2792 2.2344-.4667.2792-1.7463-.4667-2.2344c-.262-.1715-.5683-.263-.8815-.2635-.5452-.0001-1.0538.2744-1.353.7302Zm2.8109 6.7571c-.4015-.7975-1.3735-1.1185-2.171-.7169-.7975.4015-1.1185 1.3735-.7169 2.171.4015.7975 1.3735 1.1185 2.171.7169.0005-.0002.0009-.0005.0014-.0007.7947-.3952 1.1186-1.3598.7235-2.1545-.0026-.0053-.0053-.0105-.0079-.0158Zm2.8211-.112c-.4386-.2876-1.0274-.1653-1.315.2734-.2876.4386-.1653 1.0274.2734 1.315.4386.2876 1.0273.1653 1.3149-.2732.2877-.4386.1654-1.0274-.2731-1.3151h-.0002Zm3.0963-2.4282c.0254-.4453-.3149-.827-.7603-.8524-.4453-.0254-.827.3149-.8524.7603-.0254.4453.3149.827.7603.8524h.0006c.4451.0251.8264-.3152.8518-.7603Zm2.2349-.5741c-.288-.0161-.5345.2042-.5507.4922s.2042.5345.4922.5507c.2878.0161.5343-.204.5506-.4918.016-.288-.2042-.5345-.4922-.551Zm-2.1043 5.1821c-.3073-.2011-.7194-.115-.9205.1923-.2011.3073-.115.7194.1923.9205.3071.201.719.1151.9202-.1918.2013-.3071.1156-.7193-.1916-.9207l-.0004-.0003ZM6.5695 21.5161c-.2411-.1584-.5649-.0913-.7232.1497-.1584.2411-.0913.5649.1497.7232.2411.1584.5649.0913.7232-.1497.158-.2411.091-.5646-.1498-.7232Zm10.9555-.055c-.257.1309-.3593.4453-.2284.7024.1309.257.4453.3593.7023.2284.2558-.1302.3585-.4424.2301-.6991-.1291-.2579-.4428-.3624-.7007-.2333-.0011.0005-.0022.0011-.0033.0016Zm-6.0691-5.2717c.4892-.7465.2806-1.7482-.4659-2.2374-.7465-.4892-1.7482-.2806-2.2374.4659s-.2806 1.7482.4659 2.2374c.2628.1722.5702.2641.8844.2644.5458.0022 1.0553-.2728 1.353-.7302Zm-3.2301 2.4768c-.3729-.2447-.8737-.1408-1.1184.2321-.2447.3729-.1408.8737.2321 1.1184s.8737.1408 1.1184-.2321c0-.0001.0001-.0002.0002-.0003.2445-.3729.1405-.8734-.2323-1.1181Zm3.7664 3.0931c-.3667-.0209-.6808.2594-.7017.6261s.2594.6808.6261.7017c.3658.0208.6795-.2581.7016-.6238.0222-.3666-.2571-.6817-.6236-.7039-.0008 0-.0015 0-.0023-.0001Zm.007-4.1837c-.5237-.0288-.9717.3724-1.0005.8961-.0288.5237.3724.9717.8961 1.0005.5228.0288.9703-.371 1.0004-.8938.0298-.524-.3709-.973-.8949-1.0028h-.0011Zm3.8861 1.0259c-.3976.2022-.556.6884-.3539 1.086.2022.3976.6884.556 1.086.3539.3961-.2014.5551-.685.3558-1.0821-.2-.3987-.6854-.5598-1.0841-.3597-.0013.0007-.0026.0013-.0039.002Z" }) + ] + } + ); +}); + +exports.default = SiCardano; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.d.ts new file mode 100644 index 000000000..5f44db9ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0133AD"; +declare const SiCardano: IconType; +export { SiCardano as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.mjs new file mode 100644 index 000000000..a636a7ae5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCardano.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0133AD"; +const SiCardano = React.forwardRef(function SiCardano2({ title = "Cardano", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.5765 11.92c-.0488.8906.6316 1.653 1.5219 1.7056h.0934c.8928-.0006 1.6161-.725 1.6155-1.6178-.0006-.8928-.725-1.6161-1.6178-1.6155-.8578.0006-1.5658.6711-1.613 1.5277Zm-6.025-.416c-.288-.0161-.5345.2042-.5507.4922-.0161.288.2042.5345.4922.5507.2878.0161.5343-.204.5506-.4918.0167-.2876-.2029-.5343-.4905-.5509H.5514Zm5.9226-8.9645c.257-.1309.3593-.4453.2284-.7024-.1309-.257-.4453-.3593-.7024-.2284-.2558.1302-.3585.4424-.2301.6991.13.2582.4448.3622.703.2322.0003-.0002.0007-.0003.001-.0005Zm1.6397 2.8589c.398-.2006.558-.6859.3573-1.0839-.2006-.398-.6859-.558-1.0839-.3573-.3978.2006-.5579.6856-.3575 1.0835.2007.398.686.5581 1.0842.3578ZM2.597 7.3645c.3072.2013.7194.1154.9206-.1918.2013-.3072.1154-.7194-.1918-.9206-.3072-.2013-.7194-.1154-.9206.1918 0 .0001-.0001.0002-.0002.0003-.201.3072-.1151.7191.192.9203Zm.9824 3.8515c-.4453-.0254-.827.3149-.8524.7603s.3149.827.7603.8524c.4453.0254.827-.3149.8524-.7603v-.0006c.0251-.4451-.3152-.8264-.7603-.8518Zm-.8915 5.4221c-.328.1652-.46.565-.2948.893.1652.328.565.46.893.2948.328-.1652.46-.565.2948-.893l-.0002-.0004c-.1645-.3276-.5633-.4598-.8909-.2954-.0006.0003-.0013.0006-.0019.001Zm3.136-7.0931c.4386.2876 1.0274.1653 1.315-.2734.2876-.4386.1653-1.0274-.2734-1.315-.4386-.2876-1.0273-.1653-1.3149.2732-.2878.4381-.166 1.0266.2721 1.3144.0004.0003.0008.0005.0012.0008Zm9.9501-4.2106c.3729.2447.8737.1408 1.1184-.2321.2447-.3729.1408-.8737-.2321-1.1184-.3729-.2447-.8737-.1408-1.1184.2321 0 .0001-.0001.0002-.0002.0003-.2447.3726-.141.8729.2316 1.1176.0003.0002.0005.0003.0008.0005Zm1.6563-2.8499c.2413.1579.565.0904.723-.151s.0904-.565-.151-.723c-.241-.1577-.5642-.0906-.7224.1501-.1584.241-.0915.5648.1495.7233l.0009.0006Zm-1.5296 7.8938c-.8911-.0507-1.6546.6305-1.7053 1.5216-.0507.8911.6305 1.6546 1.5216 1.7053h.0928c.8925 0 1.616-.7235 1.616-1.616 0-.8572-.6693-1.5652-1.5251-1.6134v.0026ZM8.645 9.433c.2737.5459.8331.8896 1.4438.887.8925-.0002 1.6159-.7238 1.6157-1.6163 0-.2526-.0593-.5018-.1731-.7273-.4017-.7971-1.3735-1.1176-2.1706-.7158-.7971.4017-1.1176 1.3735-.7158 2.1706v.0019Zm12.6669-2.0704c.3273-.1666.4575-.567.2909-.8943-.1666-.3273-.567-.4575-.8943-.2909-.3259.1659-.4567.5639-.2927.8908.1652.3284.5653.4607.8937.2956.0008-.0004.0015-.0008.0023-.0012Zm-4.096.5146c-.4683.2362-.6565.8074-.4203 1.2757.2362.4683.8074.6565 1.2757.4203.468-.2361.6563-.8066.4207-1.2749-.2364-.4683-.8074-.6568-1.2762-.4211Zm-5.2768-5.6365c.3667.0205.6806-.2601.7011-.6267s-.2601-.6806-.6267-.7011c-.3655-.0205-.6789.2584-.7009.6238-.0225.3662.2562.6813.6224.7038.0014 0 .0028.0002.0042.0002Zm-.0077 4.1837c.5237.0288.9717-.3724 1.0006-.8961.0288-.5237-.3723-.9717-.8961-1.0006-.5231-.0288-.9707.3714-1.0005.8944-.0298.5237.3706.9724.8943 1.0021h.0017Zm-5.1475 9.6992c.4685-.2359.657-.807.421-1.2755-.2359-.4685-.807-.657-1.2755-.421-.4684.2359-.6569.8069-.4211 1.2754.2362.4682.807.6567 1.2755.4211Zm5.76-8.313c-.4881.7459-.2792 1.7463.4667 2.2344s1.7463.2792 2.2344-.4667.2792-1.7463-.4667-2.2344c-.262-.1715-.5683-.263-.8815-.2635-.5452-.0001-1.0538.2744-1.353.7302Zm2.8109 6.7571c-.4015-.7975-1.3735-1.1185-2.171-.7169-.7975.4015-1.1185 1.3735-.7169 2.171.4015.7975 1.3735 1.1185 2.171.7169.0005-.0002.0009-.0005.0014-.0007.7947-.3952 1.1186-1.3598.7235-2.1545-.0026-.0053-.0053-.0105-.0079-.0158Zm2.8211-.112c-.4386-.2876-1.0274-.1653-1.315.2734-.2876.4386-.1653 1.0274.2734 1.315.4386.2876 1.0273.1653 1.3149-.2732.2877-.4386.1654-1.0274-.2731-1.3151h-.0002Zm3.0963-2.4282c.0254-.4453-.3149-.827-.7603-.8524-.4453-.0254-.827.3149-.8524.7603-.0254.4453.3149.827.7603.8524h.0006c.4451.0251.8264-.3152.8518-.7603Zm2.2349-.5741c-.288-.0161-.5345.2042-.5507.4922s.2042.5345.4922.5507c.2878.0161.5343-.204.5506-.4918.016-.288-.2042-.5345-.4922-.551Zm-2.1043 5.1821c-.3073-.2011-.7194-.115-.9205.1923-.2011.3073-.115.7194.1923.9205.3071.201.719.1151.9202-.1918.2013-.3071.1156-.7193-.1916-.9207l-.0004-.0003ZM6.5695 21.5161c-.2411-.1584-.5649-.0913-.7232.1497-.1584.2411-.0913.5649.1497.7232.2411.1584.5649.0913.7232-.1497.158-.2411.091-.5646-.1498-.7232Zm10.9555-.055c-.257.1309-.3593.4453-.2284.7024.1309.257.4453.3593.7023.2284.2558-.1302.3585-.4424.2301-.6991-.1291-.2579-.4428-.3624-.7007-.2333-.0011.0005-.0022.0011-.0033.0016Zm-6.0691-5.2717c.4892-.7465.2806-1.7482-.4659-2.2374-.7465-.4892-1.7482-.2806-2.2374.4659s-.2806 1.7482.4659 2.2374c.2628.1722.5702.2641.8844.2644.5458.0022 1.0553-.2728 1.353-.7302Zm-3.2301 2.4768c-.3729-.2447-.8737-.1408-1.1184.2321-.2447.3729-.1408.8737.2321 1.1184s.8737.1408 1.1184-.2321c0-.0001.0001-.0002.0002-.0003.2445-.3729.1405-.8734-.2323-1.1181Zm3.7664 3.0931c-.3667-.0209-.6808.2594-.7017.6261s.2594.6808.6261.7017c.3658.0208.6795-.2581.7016-.6238.0222-.3666-.2571-.6817-.6236-.7039-.0008 0-.0015 0-.0023-.0001Zm.007-4.1837c-.5237-.0288-.9717.3724-1.0005.8961-.0288.5237.3724.9717.8961 1.0005.5228.0288.9703-.371 1.0004-.8938.0298-.524-.3709-.973-.8949-1.0028h-.0011Zm3.8861 1.0259c-.3976.2022-.556.6884-.3539 1.086.2022.3976.6884.556 1.086.3539.3961-.2014.5551-.685.3558-1.0821-.2-.3987-.6854-.5598-1.0841-.3597-.0013.0007-.0026.0013-.0039.002Z" }) + ] + } + ); +}); + +export { SiCardano as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.cjs new file mode 100644 index 000000000..d2d1a659f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#012169"; +const SiCardmarket = React__namespace.forwardRef(function SiCardmarket2({ title = "Cardmarket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.837.772c-.45 0-.6.255-.645.366-.044.11-.113.4.213.711l1.54 1.478a.124.124 0 0 1 .002.18L10.021 9.47a.934.934 0 0 0-.274.673.936.936 0 0 0 .289.669l3.977 3.82a.955.955 0 0 0 .664.267v.001c.259 0 .5-.1.68-.281l5.815-5.853a.142.142 0 0 1 .103-.042c.023 0 .065.005.1.04l1.54 1.478c.198.19.383.23.504.23.277 0 .577-.217.577-.691L24 1.726a.951.951 0 0 0-.95-.95zm-8.06.793-2.351.461s-.365.064-.606.428c-.192.286-.124.616-.124.616l3.082 14.66V1.566ZM2.843 4.907v.001L.52 5.752s-.308.106-.445.452c-.15.385-.03.634-.03.634L6.04 23.224h.86C6.559 21.8 2.843 4.907 2.843 4.907ZM23.31 12.63a.59.59 0 0 0-.417.175l-6.716 6.787a.976.976 0 0 0-.287.706c.004.267.11.515.303.7l1.084 1.046-7.668-.006.005-7.574 2.473 2.494a.592.592 0 0 0 .835.004.59.59 0 0 0 .004-.835l-3.2-3.227c-.246-.25-.562-.33-.843-.214-.282.116-.45.396-.45.747l-.006 8.794c0 .266.103.515.291.703a.986.986 0 0 0 .702.291l8.92.007v-.002c.354 0 .633-.168.747-.45.114-.283.03-.599-.224-.845l-1.708-1.647 6.578-6.648a.591.591 0 0 0-.005-.835.589.589 0 0 0-.418-.17z" }) + ] + } + ); +}); + +exports.default = SiCardmarket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.d.ts new file mode 100644 index 000000000..82c1247b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#012169"; +declare const SiCardmarket: IconType; +export { SiCardmarket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.mjs new file mode 100644 index 000000000..d212a6536 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCardmarket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#012169"; +const SiCardmarket = React.forwardRef(function SiCardmarket2({ title = "Cardmarket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.837.772c-.45 0-.6.255-.645.366-.044.11-.113.4.213.711l1.54 1.478a.124.124 0 0 1 .002.18L10.021 9.47a.934.934 0 0 0-.274.673.936.936 0 0 0 .289.669l3.977 3.82a.955.955 0 0 0 .664.267v.001c.259 0 .5-.1.68-.281l5.815-5.853a.142.142 0 0 1 .103-.042c.023 0 .065.005.1.04l1.54 1.478c.198.19.383.23.504.23.277 0 .577-.217.577-.691L24 1.726a.951.951 0 0 0-.95-.95zm-8.06.793-2.351.461s-.365.064-.606.428c-.192.286-.124.616-.124.616l3.082 14.66V1.566ZM2.843 4.907v.001L.52 5.752s-.308.106-.445.452c-.15.385-.03.634-.03.634L6.04 23.224h.86C6.559 21.8 2.843 4.907 2.843 4.907ZM23.31 12.63a.59.59 0 0 0-.417.175l-6.716 6.787a.976.976 0 0 0-.287.706c.004.267.11.515.303.7l1.084 1.046-7.668-.006.005-7.574 2.473 2.494a.592.592 0 0 0 .835.004.59.59 0 0 0 .004-.835l-3.2-3.227c-.246-.25-.562-.33-.843-.214-.282.116-.45.396-.45.747l-.006 8.794c0 .266.103.515.291.703a.986.986 0 0 0 .702.291l8.92.007v-.002c.354 0 .633-.168.747-.45.114-.283.03-.599-.224-.845l-1.708-1.647 6.578-6.648a.591.591 0 0 0-.005-.835.589.589 0 0 0-.418-.17z" }) + ] + } + ); +}); + +export { SiCardmarket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.cjs new file mode 100644 index 000000000..f2a854d4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00321E"; +const SiCarlsberggroup = React__namespace.forwardRef(function SiCarlsberggroup2({ title = "Carlsberg Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.9512 5.2813a.1934.1934 0 0 0-.127.0507C.7221 6.3193 0 7.606 0 9.0918c0 2.1987 1.7596 3.8984 3.83 3.8984 1.0356 0 2.0103-.4576 2.6895-1.1347.1559-.1556-.0356-.3535-.2011-.2012-.5049.4655-1.232.7539-1.9727.7539-1.564 0-2.875-1.2885-2.875-2.8437 0-1.2878 1.0338-2.584 2.332-2.584.473 0 .9813.1897 1.2813.4902.0258.0247.0668.0247.0898-.0059l1.5938-2.0976a.0505.0505 0 0 0-.0371-.086H1.9512zm17.4824 0a.1691.1691 0 0 0-.1035.037c-.1101.0871-.2604.1134-.3946.0606a.251.251 0 0 0-.3105.1074.2534.2534 0 0 0 .0605.3242.4013.4013 0 0 1 .1465.3711.1632.1632 0 0 0 .0196.1075.1689.1689 0 0 0 .2304.0625l.2246-.129a.1277.1277 0 0 1 .1739.047.1254.1254 0 0 1-.047.1718l-.2245.1309a.1676.1676 0 0 0-.0606.2304c.0197.0347.0507.057.084.0703a.401.401 0 0 1 .248.3125.2523.2523 0 0 0 .25.2149.25.25 0 0 0 .2481-.2149.404.404 0 0 1 .248-.3125c.0344-.0134.0647-.0356.084-.0703.0468-.0804.0207-.1843-.0605-.2304l-.2227-.1309a.125.125 0 0 1-.0468-.1719.1256.1256 0 0 1 .1718-.0468l.2247.1289a.1687.1687 0 0 0 .2304-.0625.165.165 0 0 0 .0196-.1075.401.401 0 0 1 .1464-.371.2524.2524 0 0 0 .0606-.3243c-.064-.1101-.1952-.1524-.3106-.1074a.4007.4007 0 0 1-.3945-.0605.1669.1669 0 0 0-.1035-.0371c-.0928 0-.168.0767-.168.1699v.2578a.1271.1271 0 0 1-.127.127.1265.1265 0 0 1-.1269-.127v-.2578a.1704.1704 0 0 0-.17-.17zM8.6172 6.6288a.055.055 0 0 0-.0547.0566v.1348c0 .0307.0312.0496.0547.0567l.168.0488c.0231.0068.0488.0236.0488.0547v3.3886c0 .721.5484.9258.914.9258h1.879c.4258 0 .832-.3108.832-.8125 0-.7579-1.168-.69-1.168-1.125 0-.1758.1718-.2383.3848-.2383.1603 0 .3807.0711.5039.1622.043.0321.0751.0003.086-.0235l.289-.6601c.0127-.0286-.0034-.0762-.0508-.0762h-1.3496c-.3685 0-.6953.3184-.6953.711 0 .781 1.0156.6427 1.0156 1.1718 0 .205-.1636.3809-.3906.3809-.4485 0-.638-.2996-.6582-.4727-.0044-.0333-.0464-.0564-.0762-.045l-.1855.0743c-.0353.0139-.0424.0626-.0235.086.0322.0393.0508.0782.0508.1406a.2205.2205 0 0 1-.2226.2207c-.1287 0-.2188-.1085-.2188-.2207V6.6855a.0569.0569 0 0 0-.0566-.0566H8.6172zm3.961 0a.055.055 0 0 0-.0548.0566v.1348c0 .031.0306.0491.0547.0567l.168.0488c.0243.0065.0488.0236.0488.0547v3.3789c0 .5698.4092.9355 1.0645.9355h.4453c.4766 0 .7793-.3283.7793-.7676v-.5175c.1261.082.2965.162.4668.2129.1434.6678.7362 1.1582 1.4394 1.1582.749 0 1.1167-.5062 1.1973-.6914.0828-.1912-.0943-.2292-.168-.1329-.1606.2109-.3916.3223-.7011.3223-.5259 0-.793-.4336-.793-.5508.8506 0 1.398-.4593 1.4101-1.0683.1607-.1105.3393-.211.4532-.211.1235 0 .2226.0674.2226.2227v1.9668c0 .0305.0239.0566.0547.0566h1.0762a.0575.0575 0 0 0 .0566-.0566v-.1367c0-.0316-.0327-.0478-.0566-.0547l-.166-.0508c-.0242-.0062-.0489-.0233-.0489-.0547V9.2461c0-.1361.1238-.2422.2598-.2422.2281 0 .1801.2422.5313.2422.2975 0 .6562-.3038.6562-.873 0-.3497-.1737-.6575-.5176-.8555-.1363-.0788-.2525.0866-.1445.1758.1582.1314.3203.3524.3203.4941 0 .1482-.1158.248-.2148.248-.23 0-.383-.2792-.6504-.2792-.1487 0-.2852.1234-.2852.2597 0 .0714.0371.1293.0371.205 0 .0622-.0476.1173-.1093.1173-.1816 0-.1824-.3028-.5508-.3028-.3293 0-.7353.2644-1.002.4708-.129-.2596-.4157-.4708-.8672-.4708-.8071 0-1.449.6312-1.4726 1.4258a2.864 2.864 0 0 1-.4336-.2343V8.578a.0556.0556 0 0 0-.0547-.0566h-.8047a.0572.0572 0 0 0-.0566.0566v.7735c0 .0741.0377.111.0879.1406l.371.2246v.7422c0 .2909-.2488.371-.459.371-.1917 0-.457-.118-.457-.3905v-3.754a.0565.0565 0 0 0-.0566-.0566h-1.0762zM3.6444 8.4355c-.6993 0-1.2695.6622-1.2695 1.4727 0 .8164.5702 1.4727 1.2695 1.4727.6496 0 .6635-.3848.8965-.3848.2681 0 .223.3848.5781.3848.3213 0 .9363-.5937 1.2403-.9082v.7656c0 .031.0258.0566.0566.0566h1.0762a.0572.0572 0 0 0 .0566-.0566v-.1367c0-.0317-.033-.048-.0566-.0547l-.166-.0508c-.0239-.0065-.0508-.0233-.0508-.0547V9.2461a.239.239 0 0 1 .2422-.2422c.0804 0 .1484.068.1484.1484 0 .1084-.086.112-.086.2735 0 .1664.1416.3144.3145.3144.3653 0 .6563-.2892.6563-.6543 0-.3653-.291-.6504-.6563-.6504-.4977 0-.5286.42-.711.42-.2012 0-.1145-.42-.6815-.42-.3277 0-.5372.2537-.5372.3711 0 .0623.05.1309.1309.1309.0876 0 .0885-.0625.1563-.0625.0557 0 .1074.0313.1074.0996v1.0547c-.2275.2034-.6113.5215-.791.5215-.099 0-.1914-.0809-.1914-.1797V8.875c0-.0315.0247-.0491.0488-.0566l.168-.0489c.0242-.0073.0546-.0259.0546-.0566V8.578a.0563.0563 0 0 0-.0546-.0566h-.8985c-.0369 0-.0604.0265-.0664.0566-.0188.099-.058.166-.1445.166-.1398 0-.2686-.3086-.8399-.3086zm18.3516 0c-.699 0-1.2695.662-1.2695 1.4727 0 .8165.5704 1.4727 1.2695 1.4727.532 0 .625-.2657.7207-.2657.0652 0 .0957.036.0957.0977v.545c0 .383-.2736.6679-.6387.6679-.3647 0-.6543-.2667-.6543-.6192 0-.037-.032-.0546-.0566-.0546h-.211a.054.054 0 0 0-.0546.0546c0 .3525-.6135 1.4063-2.7168 1.4063-2.4935 0-4.609-1.504-7.6465-1.504-1.5531 0-3.7493.6616-5.2656 1.9474-.0303.0256-.0155.0713.0136.0878l2.293 1.252c.0377.0212.0598.0128.0879-.0156 1.231-1.2344 2.414-1.7188 4.207-1.7188 1.306 0 3.8178.7305 5.2969.7305 2.685 0 3.6063-1.0906 3.8906-1.5977.2111.3587.6258.5762 1.0957.5762.6902 0 1.2754-.5569 1.2754-1.25V8.875c0-.031.0253-.0488.0488-.0566l.166-.0489c.0246-.007.0567-.0257.0567-.0566V8.578a.0574.0574 0 0 0-.0566-.0566h-.8965a.069.069 0 0 0-.0684.0566c-.019.099-.056.166-.1426.166-.1405 0-.2682-.3086-.8398-.3086zm-4.8828.5508c.2594 0 .2851.2045.2851.2852 0 .234-.322.711-.9218.711 0-.6246.3272-.9965.6367-.9962zM3.9727 9.086c.2352 0 .4882.1842.4882.3692v.9101c0 .1849-.253.3711-.4882.3711-.433 0-.713-.346-.713-.8281 0-.4832.28-.8223.713-.8223zm18.3496 0c.2356 0 .4902.1842.4902.3692v.9101c0 .185-.2546.3711-.4902.3711-.4327 0-.711-.3457-.711-.8281 0-.4832.2783-.8223.711-.8223zm-8.9649 5.2403c-.877.0314-1.4316.5538-1.4316 1.789 0 1.3227.4517 1.8106 1.3164 1.8106.2433 0 .549-.0718.7305-.1621.0477-.0244.0724-.043.1152-.043.0622 0 .0865.0526.1152.086.038.0427.0715.0624.1621.0624h.1758v-1.6054c0-.0767-.0282-.1094-.0996-.1094h-.2578v1.0547c0 .1338-.005.1635-.1055.2305 0 0-.2474.1425-.6054.1425-.874 0-1.1426-.3731-1.1426-1.4668 0-1.127.4262-1.4609 1.1328-1.4609.2815 0 .4959.0622.668.1816.0428.0285.0757.043.0996.043.0289 0 .044-.019.0586-.0527l.1093-.3242s-.4395-.1758-.955-.1758c-.029 0-.0577-.001-.086 0zm4.2344 1.0195c-.7353 0-1.1309.4557-1.1309 1.291 0 .8407.3956 1.289 1.1309 1.289.7355 0 1.1328-.4483 1.1328-1.289 0-.8403-.3973-1.291-1.1328-1.291zm-1.4121.0059c-.2107.0082-.4201.0775-.5586.162-.0477.0292-.0672.043-.1055.043-.0431 0-.0534-.0372-.0918-.0898-.0284-.0428-.0557-.0586-.1562-.0586h-.1348v2.3496c0 .0762.03.1113.1016.1113h.252v-1.8964c0-.0527.0003-.0569.0527-.0997.0619-.0522.273-.1914.5644-.1914.0955 0 .209.0137.209.0137v-.3398s-.0516-.004-.0898-.004c-.014 0-.029-.0005-.043 0zm6.5469 0c-.2245 0-.4535.0722-.6016.162-.0475.0292-.0672.043-.1055.043-.0428 0-.0534-.0372-.0918-.0898-.0284-.0425-.0559-.0586-.1562-.0586h-.1348v3.2012c0 .0763.0302.1093.1016.1093h.252v-.8847c0-.071.0154-.0996.0488-.0996.0193 0 .0426.0098.0761.0293.1576.0805.363.162.6114.162.5108 0 .998-.4017.998-1.2948 0-.8929-.444-1.2793-.998-1.2793zm-3.5684.0566v1.6953c0 .5587.2965.8223.879.8223.2146 0 .44-.0718.5878-.1621.0477-.029.067-.043.1055-.043.0426 0 .0516.0372.0898.0898.029.0428.0579.0586.1582.0586h.1328v-2.3496c0-.0764-.028-.1113-.0996-.1113h-.2539v1.9063c0 .0527.0019.0623-.0508.1054-.062.0526-.2682.1914-.5976.1914-.4584 0-.5977-.1687-.5977-.6035v-1.4883c0-.0764-.028-.1113-.0996-.1113h-.2539zm-1.6113.2305c.0153-.0007.029 0 .0449 0 .5062 0 .7559.339.7559.998 0 .6592-.2497.998-.7559.998s-.754-.3386-.754-.998c0-.638.2343-.9775.709-.998zm5.0644.0273c.487 0 .7364.3403.7364.9707 0 .7262-.3407.9746-.7559.9746-.2915 0-.4869-.1388-.5488-.1914-.0525-.0431-.0528-.0527-.0528-.1054V15.959c0-.0526.0098-.0635.0528-.1016.0619-.0523.2433-.1914.5683-.1914z" }) + ] + } + ); +}); + +exports.default = SiCarlsberggroup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.d.ts new file mode 100644 index 000000000..2c6307b84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00321E"; +declare const SiCarlsberggroup: IconType; +export { SiCarlsberggroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.mjs new file mode 100644 index 000000000..15b4bbcb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarlsberggroup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00321E"; +const SiCarlsberggroup = React.forwardRef(function SiCarlsberggroup2({ title = "Carlsberg Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.9512 5.2813a.1934.1934 0 0 0-.127.0507C.7221 6.3193 0 7.606 0 9.0918c0 2.1987 1.7596 3.8984 3.83 3.8984 1.0356 0 2.0103-.4576 2.6895-1.1347.1559-.1556-.0356-.3535-.2011-.2012-.5049.4655-1.232.7539-1.9727.7539-1.564 0-2.875-1.2885-2.875-2.8437 0-1.2878 1.0338-2.584 2.332-2.584.473 0 .9813.1897 1.2813.4902.0258.0247.0668.0247.0898-.0059l1.5938-2.0976a.0505.0505 0 0 0-.0371-.086H1.9512zm17.4824 0a.1691.1691 0 0 0-.1035.037c-.1101.0871-.2604.1134-.3946.0606a.251.251 0 0 0-.3105.1074.2534.2534 0 0 0 .0605.3242.4013.4013 0 0 1 .1465.3711.1632.1632 0 0 0 .0196.1075.1689.1689 0 0 0 .2304.0625l.2246-.129a.1277.1277 0 0 1 .1739.047.1254.1254 0 0 1-.047.1718l-.2245.1309a.1676.1676 0 0 0-.0606.2304c.0197.0347.0507.057.084.0703a.401.401 0 0 1 .248.3125.2523.2523 0 0 0 .25.2149.25.25 0 0 0 .2481-.2149.404.404 0 0 1 .248-.3125c.0344-.0134.0647-.0356.084-.0703.0468-.0804.0207-.1843-.0605-.2304l-.2227-.1309a.125.125 0 0 1-.0468-.1719.1256.1256 0 0 1 .1718-.0468l.2247.1289a.1687.1687 0 0 0 .2304-.0625.165.165 0 0 0 .0196-.1075.401.401 0 0 1 .1464-.371.2524.2524 0 0 0 .0606-.3243c-.064-.1101-.1952-.1524-.3106-.1074a.4007.4007 0 0 1-.3945-.0605.1669.1669 0 0 0-.1035-.0371c-.0928 0-.168.0767-.168.1699v.2578a.1271.1271 0 0 1-.127.127.1265.1265 0 0 1-.1269-.127v-.2578a.1704.1704 0 0 0-.17-.17zM8.6172 6.6288a.055.055 0 0 0-.0547.0566v.1348c0 .0307.0312.0496.0547.0567l.168.0488c.0231.0068.0488.0236.0488.0547v3.3886c0 .721.5484.9258.914.9258h1.879c.4258 0 .832-.3108.832-.8125 0-.7579-1.168-.69-1.168-1.125 0-.1758.1718-.2383.3848-.2383.1603 0 .3807.0711.5039.1622.043.0321.0751.0003.086-.0235l.289-.6601c.0127-.0286-.0034-.0762-.0508-.0762h-1.3496c-.3685 0-.6953.3184-.6953.711 0 .781 1.0156.6427 1.0156 1.1718 0 .205-.1636.3809-.3906.3809-.4485 0-.638-.2996-.6582-.4727-.0044-.0333-.0464-.0564-.0762-.045l-.1855.0743c-.0353.0139-.0424.0626-.0235.086.0322.0393.0508.0782.0508.1406a.2205.2205 0 0 1-.2226.2207c-.1287 0-.2188-.1085-.2188-.2207V6.6855a.0569.0569 0 0 0-.0566-.0566H8.6172zm3.961 0a.055.055 0 0 0-.0548.0566v.1348c0 .031.0306.0491.0547.0567l.168.0488c.0243.0065.0488.0236.0488.0547v3.3789c0 .5698.4092.9355 1.0645.9355h.4453c.4766 0 .7793-.3283.7793-.7676v-.5175c.1261.082.2965.162.4668.2129.1434.6678.7362 1.1582 1.4394 1.1582.749 0 1.1167-.5062 1.1973-.6914.0828-.1912-.0943-.2292-.168-.1329-.1606.2109-.3916.3223-.7011.3223-.5259 0-.793-.4336-.793-.5508.8506 0 1.398-.4593 1.4101-1.0683.1607-.1105.3393-.211.4532-.211.1235 0 .2226.0674.2226.2227v1.9668c0 .0305.0239.0566.0547.0566h1.0762a.0575.0575 0 0 0 .0566-.0566v-.1367c0-.0316-.0327-.0478-.0566-.0547l-.166-.0508c-.0242-.0062-.0489-.0233-.0489-.0547V9.2461c0-.1361.1238-.2422.2598-.2422.2281 0 .1801.2422.5313.2422.2975 0 .6562-.3038.6562-.873 0-.3497-.1737-.6575-.5176-.8555-.1363-.0788-.2525.0866-.1445.1758.1582.1314.3203.3524.3203.4941 0 .1482-.1158.248-.2148.248-.23 0-.383-.2792-.6504-.2792-.1487 0-.2852.1234-.2852.2597 0 .0714.0371.1293.0371.205 0 .0622-.0476.1173-.1093.1173-.1816 0-.1824-.3028-.5508-.3028-.3293 0-.7353.2644-1.002.4708-.129-.2596-.4157-.4708-.8672-.4708-.8071 0-1.449.6312-1.4726 1.4258a2.864 2.864 0 0 1-.4336-.2343V8.578a.0556.0556 0 0 0-.0547-.0566h-.8047a.0572.0572 0 0 0-.0566.0566v.7735c0 .0741.0377.111.0879.1406l.371.2246v.7422c0 .2909-.2488.371-.459.371-.1917 0-.457-.118-.457-.3905v-3.754a.0565.0565 0 0 0-.0566-.0566h-1.0762zM3.6444 8.4355c-.6993 0-1.2695.6622-1.2695 1.4727 0 .8164.5702 1.4727 1.2695 1.4727.6496 0 .6635-.3848.8965-.3848.2681 0 .223.3848.5781.3848.3213 0 .9363-.5937 1.2403-.9082v.7656c0 .031.0258.0566.0566.0566h1.0762a.0572.0572 0 0 0 .0566-.0566v-.1367c0-.0317-.033-.048-.0566-.0547l-.166-.0508c-.0239-.0065-.0508-.0233-.0508-.0547V9.2461a.239.239 0 0 1 .2422-.2422c.0804 0 .1484.068.1484.1484 0 .1084-.086.112-.086.2735 0 .1664.1416.3144.3145.3144.3653 0 .6563-.2892.6563-.6543 0-.3653-.291-.6504-.6563-.6504-.4977 0-.5286.42-.711.42-.2012 0-.1145-.42-.6815-.42-.3277 0-.5372.2537-.5372.3711 0 .0623.05.1309.1309.1309.0876 0 .0885-.0625.1563-.0625.0557 0 .1074.0313.1074.0996v1.0547c-.2275.2034-.6113.5215-.791.5215-.099 0-.1914-.0809-.1914-.1797V8.875c0-.0315.0247-.0491.0488-.0566l.168-.0489c.0242-.0073.0546-.0259.0546-.0566V8.578a.0563.0563 0 0 0-.0546-.0566h-.8985c-.0369 0-.0604.0265-.0664.0566-.0188.099-.058.166-.1445.166-.1398 0-.2686-.3086-.8399-.3086zm18.3516 0c-.699 0-1.2695.662-1.2695 1.4727 0 .8165.5704 1.4727 1.2695 1.4727.532 0 .625-.2657.7207-.2657.0652 0 .0957.036.0957.0977v.545c0 .383-.2736.6679-.6387.6679-.3647 0-.6543-.2667-.6543-.6192 0-.037-.032-.0546-.0566-.0546h-.211a.054.054 0 0 0-.0546.0546c0 .3525-.6135 1.4063-2.7168 1.4063-2.4935 0-4.609-1.504-7.6465-1.504-1.5531 0-3.7493.6616-5.2656 1.9474-.0303.0256-.0155.0713.0136.0878l2.293 1.252c.0377.0212.0598.0128.0879-.0156 1.231-1.2344 2.414-1.7188 4.207-1.7188 1.306 0 3.8178.7305 5.2969.7305 2.685 0 3.6063-1.0906 3.8906-1.5977.2111.3587.6258.5762 1.0957.5762.6902 0 1.2754-.5569 1.2754-1.25V8.875c0-.031.0253-.0488.0488-.0566l.166-.0489c.0246-.007.0567-.0257.0567-.0566V8.578a.0574.0574 0 0 0-.0566-.0566h-.8965a.069.069 0 0 0-.0684.0566c-.019.099-.056.166-.1426.166-.1405 0-.2682-.3086-.8398-.3086zm-4.8828.5508c.2594 0 .2851.2045.2851.2852 0 .234-.322.711-.9218.711 0-.6246.3272-.9965.6367-.9962zM3.9727 9.086c.2352 0 .4882.1842.4882.3692v.9101c0 .1849-.253.3711-.4882.3711-.433 0-.713-.346-.713-.8281 0-.4832.28-.8223.713-.8223zm18.3496 0c.2356 0 .4902.1842.4902.3692v.9101c0 .185-.2546.3711-.4902.3711-.4327 0-.711-.3457-.711-.8281 0-.4832.2783-.8223.711-.8223zm-8.9649 5.2403c-.877.0314-1.4316.5538-1.4316 1.789 0 1.3227.4517 1.8106 1.3164 1.8106.2433 0 .549-.0718.7305-.1621.0477-.0244.0724-.043.1152-.043.0622 0 .0865.0526.1152.086.038.0427.0715.0624.1621.0624h.1758v-1.6054c0-.0767-.0282-.1094-.0996-.1094h-.2578v1.0547c0 .1338-.005.1635-.1055.2305 0 0-.2474.1425-.6054.1425-.874 0-1.1426-.3731-1.1426-1.4668 0-1.127.4262-1.4609 1.1328-1.4609.2815 0 .4959.0622.668.1816.0428.0285.0757.043.0996.043.0289 0 .044-.019.0586-.0527l.1093-.3242s-.4395-.1758-.955-.1758c-.029 0-.0577-.001-.086 0zm4.2344 1.0195c-.7353 0-1.1309.4557-1.1309 1.291 0 .8407.3956 1.289 1.1309 1.289.7355 0 1.1328-.4483 1.1328-1.289 0-.8403-.3973-1.291-1.1328-1.291zm-1.4121.0059c-.2107.0082-.4201.0775-.5586.162-.0477.0292-.0672.043-.1055.043-.0431 0-.0534-.0372-.0918-.0898-.0284-.0428-.0557-.0586-.1562-.0586h-.1348v2.3496c0 .0762.03.1113.1016.1113h.252v-1.8964c0-.0527.0003-.0569.0527-.0997.0619-.0522.273-.1914.5644-.1914.0955 0 .209.0137.209.0137v-.3398s-.0516-.004-.0898-.004c-.014 0-.029-.0005-.043 0zm6.5469 0c-.2245 0-.4535.0722-.6016.162-.0475.0292-.0672.043-.1055.043-.0428 0-.0534-.0372-.0918-.0898-.0284-.0425-.0559-.0586-.1562-.0586h-.1348v3.2012c0 .0763.0302.1093.1016.1093h.252v-.8847c0-.071.0154-.0996.0488-.0996.0193 0 .0426.0098.0761.0293.1576.0805.363.162.6114.162.5108 0 .998-.4017.998-1.2948 0-.8929-.444-1.2793-.998-1.2793zm-3.5684.0566v1.6953c0 .5587.2965.8223.879.8223.2146 0 .44-.0718.5878-.1621.0477-.029.067-.043.1055-.043.0426 0 .0516.0372.0898.0898.029.0428.0579.0586.1582.0586h.1328v-2.3496c0-.0764-.028-.1113-.0996-.1113h-.2539v1.9063c0 .0527.0019.0623-.0508.1054-.062.0526-.2682.1914-.5976.1914-.4584 0-.5977-.1687-.5977-.6035v-1.4883c0-.0764-.028-.1113-.0996-.1113h-.2539zm-1.6113.2305c.0153-.0007.029 0 .0449 0 .5062 0 .7559.339.7559.998 0 .6592-.2497.998-.7559.998s-.754-.3386-.754-.998c0-.638.2343-.9775.709-.998zm5.0644.0273c.487 0 .7364.3403.7364.9707 0 .7262-.3407.9746-.7559.9746-.2915 0-.4869-.1388-.5488-.1914-.0525-.0431-.0528-.0527-.0528-.1054V15.959c0-.0526.0098-.0635.0528-.1016.0619-.0523.2433-.1914.5683-.1914z" }) + ] + } + ); +}); + +export { SiCarlsberggroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.cjs new file mode 100644 index 000000000..bc65f524d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#596CAF"; +const SiCarrd = React__namespace.forwardRef(function SiCarrd2({ title = "Carrd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.2539 18.4207 9.7457 23.9469a.5163.5163 0 0 1-.23.0531.5491.5491 0 0 1-.2832-.0796.5289.5289 0 0 1-.2478-.4513v-5.4732l-6.2165-2.6016c-.199-.084-.3274-.2743-.3274-.4911V.5324c0-.1814.093-.354.2478-.4513.1549-.0974.3495-.1062.5132-.031l11.964 5.743 5.6323-2.7034c.1638-.0796.3584-.0663.5133.031a.5289.5289 0 0 1 .2478.4513v14.3708c-.004.2036-.1195.3894-.3053.4779zM3.5027 1.3774v13.1718l5.482 2.2964v-2.646L5.538 12.8105c-.2699-.1106-.4026-.4203-.2965-.6902.1107-.2743.4204-.4027.6903-.2965l3.0529 1.23v-2.1724L5.538 9.492c-.2699-.1106-.4026-.4203-.2965-.6902.1107-.2743.4204-.4026.6903-.2965l3.0529 1.23v-.6326c0-.2036.115-.3894.3009-.4779l.7875-.3805-4.5617-2.0751c-.2654-.1195-.3849-.438-.2654-.7035.1194-.2655.438-.385.7035-.2655l5.367 2.4468 2.6148-1.2566zM20.493 4.4171 10.0466 9.4345v13.1939l10.4463-5.0219zm-8.4509 6.8668 5.9864-2.8936a.5279.5279 0 0 1 .708.2478c.1282.2654.0176.584-.2478.7079l-5.9864 2.8936a.5448.5448 0 0 1-.23.0531c-.1992 0-.385-.1106-.478-.3008-.1238-.261-.0132-.5797.2478-.708zm0 3.3184 5.9864-2.8936a.5279.5279 0 0 1 .708.2478c.1282.2654.0176.584-.2478.7079l-5.9864 2.8936a.5448.5448 0 0 1-.23.0531c-.1992 0-.385-.1106-.478-.3009-.1238-.2654-.0132-.5796.2478-.7079zm0 3.314 5.9864-2.8936a.5279.5279 0 0 1 .708.2477c.1282.2655.0176.584-.2478.708l-5.9864 2.8936a.5448.5448 0 0 1-.23.053c-.1992 0-.385-.1105-.478-.3008-.1238-.261-.0132-.5796.2478-.708z" }) + ] + } + ); +}); + +exports.default = SiCarrd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.d.ts new file mode 100644 index 000000000..70a93e73f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#596CAF"; +declare const SiCarrd: IconType; +export { SiCarrd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.mjs new file mode 100644 index 000000000..26b7a9308 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#596CAF"; +const SiCarrd = React.forwardRef(function SiCarrd2({ title = "Carrd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.2539 18.4207 9.7457 23.9469a.5163.5163 0 0 1-.23.0531.5491.5491 0 0 1-.2832-.0796.5289.5289 0 0 1-.2478-.4513v-5.4732l-6.2165-2.6016c-.199-.084-.3274-.2743-.3274-.4911V.5324c0-.1814.093-.354.2478-.4513.1549-.0974.3495-.1062.5132-.031l11.964 5.743 5.6323-2.7034c.1638-.0796.3584-.0663.5133.031a.5289.5289 0 0 1 .2478.4513v14.3708c-.004.2036-.1195.3894-.3053.4779zM3.5027 1.3774v13.1718l5.482 2.2964v-2.646L5.538 12.8105c-.2699-.1106-.4026-.4203-.2965-.6902.1107-.2743.4204-.4027.6903-.2965l3.0529 1.23v-2.1724L5.538 9.492c-.2699-.1106-.4026-.4203-.2965-.6902.1107-.2743.4204-.4026.6903-.2965l3.0529 1.23v-.6326c0-.2036.115-.3894.3009-.4779l.7875-.3805-4.5617-2.0751c-.2654-.1195-.3849-.438-.2654-.7035.1194-.2655.438-.385.7035-.2655l5.367 2.4468 2.6148-1.2566zM20.493 4.4171 10.0466 9.4345v13.1939l10.4463-5.0219zm-8.4509 6.8668 5.9864-2.8936a.5279.5279 0 0 1 .708.2478c.1282.2654.0176.584-.2478.7079l-5.9864 2.8936a.5448.5448 0 0 1-.23.0531c-.1992 0-.385-.1106-.478-.3008-.1238-.261-.0132-.5797.2478-.708zm0 3.3184 5.9864-2.8936a.5279.5279 0 0 1 .708.2478c.1282.2654.0176.584-.2478.7079l-5.9864 2.8936a.5448.5448 0 0 1-.23.0531c-.1992 0-.385-.1106-.478-.3009-.1238-.2654-.0132-.5796.2478-.7079zm0 3.314 5.9864-2.8936a.5279.5279 0 0 1 .708.2477c.1282.2655.0176.584-.2478.708l-5.9864 2.8936a.5448.5448 0 0 1-.23.053c-.1992 0-.385-.1105-.478-.3008-.1238-.261-.0132-.5796.2478-.708z" }) + ] + } + ); +}); + +export { SiCarrd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.cjs new file mode 100644 index 000000000..581aa7825 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004E9F"; +const SiCarrefour = React__namespace.forwardRef(function SiCarrefour2({ title = "Carrefour", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.14 4.045c-2.569 0-3.572 3.64-3.572 7.979 0 4.34 1.003 7.931 3.572 7.931 1.541 0 2.855-.903 2.86-1.645a.625.625 0 0 0-.199-.453c-.73-.706-1.016-1.412-1.018-2.034-.005-1.189 1.026-2.074 1.977-2.074 1.306 0 2.077 1.027 2.077 2.357 0 1.26-.537 2.31-1.121 3.15a.193.193 0 0 0-.034.107c0 .065.04.12.098.12.035 0 .076-.02.122-.065l6.561-6.344c.328-.28.537-.608.537-1.073 0-.468-.21-.794-.537-1.073l-6.561-6.346c-.045-.045-.087-.064-.122-.064-.059 0-.097.055-.098.12 0 .035.01.073.034.107.584.84 1.12 1.89 1.12 3.15 0 1.329-.77 2.356-2.076 2.356-.95 0-1.982-.884-1.977-2.073.002-.622.288-1.328 1.018-2.033A.624.624 0 0 0 15 5.69c-.004-.743-1.319-1.646-2.86-1.646m-5.043.537L.537 10.93C.209 11.207 0 11.534 0 12c0 .465.21.793.537 1.073l6.56 6.345c.042.043.083.06.117.06.062 0 .105-.057.103-.123a.188.188 0 0 0-.057-.123C5.72 17.32 4.6 15.126 4.6 12.024c0-3.104 1.12-5.341 2.66-7.255a.185.185 0 0 0 .057-.123c.002-.068-.04-.123-.103-.123-.034 0-.075.017-.117.06" }) + ] + } + ); +}); + +exports.default = SiCarrefour; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.d.ts new file mode 100644 index 000000000..95f79bdde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004E9F"; +declare const SiCarrefour: IconType; +export { SiCarrefour as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.mjs new file mode 100644 index 000000000..042bf6f04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarrefour.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004E9F"; +const SiCarrefour = React.forwardRef(function SiCarrefour2({ title = "Carrefour", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.14 4.045c-2.569 0-3.572 3.64-3.572 7.979 0 4.34 1.003 7.931 3.572 7.931 1.541 0 2.855-.903 2.86-1.645a.625.625 0 0 0-.199-.453c-.73-.706-1.016-1.412-1.018-2.034-.005-1.189 1.026-2.074 1.977-2.074 1.306 0 2.077 1.027 2.077 2.357 0 1.26-.537 2.31-1.121 3.15a.193.193 0 0 0-.034.107c0 .065.04.12.098.12.035 0 .076-.02.122-.065l6.561-6.344c.328-.28.537-.608.537-1.073 0-.468-.21-.794-.537-1.073l-6.561-6.346c-.045-.045-.087-.064-.122-.064-.059 0-.097.055-.098.12 0 .035.01.073.034.107.584.84 1.12 1.89 1.12 3.15 0 1.329-.77 2.356-2.076 2.356-.95 0-1.982-.884-1.977-2.073.002-.622.288-1.328 1.018-2.033A.624.624 0 0 0 15 5.69c-.004-.743-1.319-1.646-2.86-1.646m-5.043.537L.537 10.93C.209 11.207 0 11.534 0 12c0 .465.21.793.537 1.073l6.56 6.345c.042.043.083.06.117.06.062 0 .105-.057.103-.123a.188.188 0 0 0-.057-.123C5.72 17.32 4.6 15.126 4.6 12.024c0-3.104 1.12-5.341 2.66-7.255a.185.185 0 0 0 .057-.123c.002-.068-.04-.123-.103-.123-.034 0-.075.017-.117.06" }) + ] + } + ); +}); + +export { SiCarrefour as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.cjs new file mode 100644 index 000000000..7cda0eada --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9C42"; +const SiCarthrottle = React__namespace.forwardRef(function SiCarthrottle2({ title = "Car Throttle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 19.99h5.31l1-5.76h2.673L7.97 19.99h5.272l1.037-5.76h2.824l-1 5.76h7.584L21.9 17.029 24 4.01h-5.16l-.987 5.647h-2.86l.936-5.647H8.483l1.724 2.749-.487 2.898H6.996l.9-5.647H.35l1.76 2.774Z" }) + ] + } + ); +}); + +exports.default = SiCarthrottle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.d.ts new file mode 100644 index 000000000..037b2da88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9C42"; +declare const SiCarthrottle: IconType; +export { SiCarthrottle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.mjs new file mode 100644 index 000000000..b588d6e61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarthrottle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9C42"; +const SiCarthrottle = React.forwardRef(function SiCarthrottle2({ title = "Car Throttle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 19.99h5.31l1-5.76h2.673L7.97 19.99h5.272l1.037-5.76h2.824l-1 5.76h7.584L21.9 17.029 24 4.01h-5.16l-.987 5.647h-2.86l.936-5.647H8.483l1.724 2.749-.487 2.898H6.996l.9-5.647H.35l1.76 2.774Z" }) + ] + } + ); +}); + +export { SiCarthrottle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.cjs new file mode 100644 index 000000000..94fff366a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB1510"; +const SiCarto = React__namespace.forwardRef(function SiCarto2({ title = "Carto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.138 7.138C21.823 7.138 24 9.3147 24 12s-2.1769 4.862-4.862 4.862c-1.9046 0-3.5532-1.0949-4.351-2.6896h.4683c.7615 1.358 2.215 2.2759 3.8826 2.2759 2.4567 0 4.4483-1.9916 4.4483-4.4483 0-2.4567-1.9916-4.4483-4.4483-4.4483-1.6677 0-3.1211.9178-3.8826 2.2759h-.4683c.7978-1.5947 2.4464-2.6897 4.351-2.6897zm0 3.3103c.8569 0 1.5517.6947 1.5517 1.5517 0 .857-.6948 1.5517-1.5518 1.5517-.857 0-1.5517-.6947-1.5517-1.5517 0-.857.6948-1.5517 1.5517-1.5517zm-17.5772.0109c.6066 0 .9968.2545 1.2597.615l-.6192.4793c-.1697-.2079-.3648-.3478-.649-.3478-.4156 0-.7083.3562-.7083.7889v.008c0 .4453.2927.793.7083.793.3096 0 .492-.144.6702-.3604l.6192.4411c-.2799.386-.6574.6701-1.3105.6701C.6829 13.547 0 12.898 0 12.0116v-.008c0-.8652.6617-1.5439 1.5608-1.5439zm4.7346.0382l1.264 2.9902h-.8822l-.212-.5344H5.3156l-.212.5344h-.861l1.2596-2.9902zm4.27.0212c.454 0 .7678.1187.9671.318.174.174.263.3988.263.6914v.008c0 .458-.2418.7592-.6108.9162l.7083 1.0349h-.9458l-.598-.8992h-.3648v.8992h-.8228v-2.969zm5.3983 0v.721h-.8907v2.248h-.8228v-2.248h-.8864v-.721zm-10.0712.9543l-.335.8398h.6658zm4.6348-.246h-.5429v.7168h.5472c.2756 0 .441-.1357.441-.352v-.008c0-.2375-.1738-.3563-.4453-.3563z" }) + ] + } + ); +}); + +exports.default = SiCarto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.d.ts new file mode 100644 index 000000000..3ce095194 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB1510"; +declare const SiCarto: IconType; +export { SiCarto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.mjs new file mode 100644 index 000000000..4c5be202d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCarto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB1510"; +const SiCarto = React.forwardRef(function SiCarto2({ title = "Carto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.138 7.138C21.823 7.138 24 9.3147 24 12s-2.1769 4.862-4.862 4.862c-1.9046 0-3.5532-1.0949-4.351-2.6896h.4683c.7615 1.358 2.215 2.2759 3.8826 2.2759 2.4567 0 4.4483-1.9916 4.4483-4.4483 0-2.4567-1.9916-4.4483-4.4483-4.4483-1.6677 0-3.1211.9178-3.8826 2.2759h-.4683c.7978-1.5947 2.4464-2.6897 4.351-2.6897zm0 3.3103c.8569 0 1.5517.6947 1.5517 1.5517 0 .857-.6948 1.5517-1.5518 1.5517-.857 0-1.5517-.6947-1.5517-1.5517 0-.857.6948-1.5517 1.5517-1.5517zm-17.5772.0109c.6066 0 .9968.2545 1.2597.615l-.6192.4793c-.1697-.2079-.3648-.3478-.649-.3478-.4156 0-.7083.3562-.7083.7889v.008c0 .4453.2927.793.7083.793.3096 0 .492-.144.6702-.3604l.6192.4411c-.2799.386-.6574.6701-1.3105.6701C.6829 13.547 0 12.898 0 12.0116v-.008c0-.8652.6617-1.5439 1.5608-1.5439zm4.7346.0382l1.264 2.9902h-.8822l-.212-.5344H5.3156l-.212.5344h-.861l1.2596-2.9902zm4.27.0212c.454 0 .7678.1187.9671.318.174.174.263.3988.263.6914v.008c0 .458-.2418.7592-.6108.9162l.7083 1.0349h-.9458l-.598-.8992h-.3648v.8992h-.8228v-2.969zm5.3983 0v.721h-.8907v2.248h-.8228v-2.248h-.8864v-.721zm-10.0712.9543l-.335.8398h.6658zm4.6348-.246h-.5429v.7168h.5472c.2756 0 .441-.1357.441-.352v-.008c0-.2375-.1738-.3563-.4453-.3563z" }) + ] + } + ); +}); + +export { SiCarto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.cjs new file mode 100644 index 000000000..5184ce156 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00C244"; +const SiCashapp = React__namespace.forwardRef(function SiCashapp2({ title = "Cash App", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.59 3.475a5.1 5.1 0 00-3.05-3.05c-1.31-.42-2.5-.42-4.92-.42H8.36c-2.4 0-3.61 0-4.9.4a5.1 5.1 0 00-3.05 3.06C0 4.765 0 5.965 0 8.365v7.27c0 2.41 0 3.6.4 4.9a5.1 5.1 0 003.05 3.05c1.3.41 2.5.41 4.9.41h7.28c2.41 0 3.61 0 4.9-.4a5.1 5.1 0 003.06-3.06c.41-1.3.41-2.5.41-4.9v-7.25c0-2.41 0-3.61-.41-4.91zm-6.17 4.63l-.93.93a.5.5 0 01-.67.01 5 5 0 00-3.22-1.18c-.97 0-1.94.32-1.94 1.21 0 .9 1.04 1.2 2.24 1.65 2.1.7 3.84 1.58 3.84 3.64 0 2.24-1.74 3.78-4.58 3.95l-.26 1.2a.49.49 0 01-.48.39H9.63l-.09-.01a.5.5 0 01-.38-.59l.28-1.27a6.54 6.54 0 01-2.88-1.57v-.01a.48.48 0 010-.68l1-.97a.49.49 0 01.67 0c.91.86 2.13 1.34 3.39 1.32 1.3 0 2.17-.55 2.17-1.42 0-.87-.88-1.1-2.54-1.72-1.76-.63-3.43-1.52-3.43-3.6 0-2.42 2.01-3.6 4.39-3.71l.25-1.23a.48.48 0 01.48-.38h1.78l.1.01c.26.06.43.31.37.57l-.27 1.37c.9.3 1.75.77 2.48 1.39l.02.02c.19.2.19.5 0 .68z" }) + ] + } + ); +}); + +exports.default = SiCashapp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.d.ts new file mode 100644 index 000000000..c6f6d3058 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00C244"; +declare const SiCashapp: IconType; +export { SiCashapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.mjs new file mode 100644 index 000000000..e44dba817 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCashapp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00C244"; +const SiCashapp = React.forwardRef(function SiCashapp2({ title = "Cash App", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.59 3.475a5.1 5.1 0 00-3.05-3.05c-1.31-.42-2.5-.42-4.92-.42H8.36c-2.4 0-3.61 0-4.9.4a5.1 5.1 0 00-3.05 3.06C0 4.765 0 5.965 0 8.365v7.27c0 2.41 0 3.6.4 4.9a5.1 5.1 0 003.05 3.05c1.3.41 2.5.41 4.9.41h7.28c2.41 0 3.61 0 4.9-.4a5.1 5.1 0 003.06-3.06c.41-1.3.41-2.5.41-4.9v-7.25c0-2.41 0-3.61-.41-4.91zm-6.17 4.63l-.93.93a.5.5 0 01-.67.01 5 5 0 00-3.22-1.18c-.97 0-1.94.32-1.94 1.21 0 .9 1.04 1.2 2.24 1.65 2.1.7 3.84 1.58 3.84 3.64 0 2.24-1.74 3.78-4.58 3.95l-.26 1.2a.49.49 0 01-.48.39H9.63l-.09-.01a.5.5 0 01-.38-.59l.28-1.27a6.54 6.54 0 01-2.88-1.57v-.01a.48.48 0 010-.68l1-.97a.49.49 0 01.67 0c.91.86 2.13 1.34 3.39 1.32 1.3 0 2.17-.55 2.17-1.42 0-.87-.88-1.1-2.54-1.72-1.76-.63-3.43-1.52-3.43-3.6 0-2.42 2.01-3.6 4.39-3.71l.25-1.23a.48.48 0 01.48-.38h1.78l.1.01c.26.06.43.31.37.57l-.27 1.37c.9.3 1.75.77 2.48 1.39l.02.02c.19.2.19.5 0 .68z" }) + ] + } + ); +}); + +export { SiCashapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.cjs new file mode 100644 index 000000000..8037ecbee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F55B23"; +const SiCastbox = React__namespace.forwardRef(function SiCastbox2({ title = "Castbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.29 0-.58.068-.812.206L2.417 5.392c-.46.272-.804.875-.804 1.408v10.4c0 .533.344 1.135.804 1.407l8.77 5.187c.465.275 1.162.275 1.626 0l8.77-5.187c.46-.272.804-.874.804-1.407V6.8c0-.533-.344-1.136-.804-1.408L12.813.206A1.618 1.618 0 0012 0zm-.85 8.304c.394 0 .714.303.714.676v2.224c0 .207.191.375.427.375s.428-.168.428-.375V9.57c0-.373.32-.675.713-.675.394 0 .712.302.712.675v4.713c0 .374-.318.676-.712.676-.394 0-.713-.302-.713-.676v-1.31c0-.206-.192-.374-.428-.374s-.427.168-.427.374v1.226c0 .374-.32.676-.713.676-.394 0-.713-.302-.713-.676v-1.667c0-.207-.192-.375-.428-.375-.235 0-.427.168-.427.375v3.31c0 .373-.319.676-.712.676-.394 0-.713-.303-.713-.676v-2.427c0-.206-.191-.374-.428-.374-.235 0-.427.168-.427.374v.178a.71.71 0 01-.712.708.71.71 0 01-.713-.708v-2.123a.71.71 0 01.713-.708.71.71 0 01.712.708v.178c0 .206.192.373.427.373.237 0 .428-.167.428-.373v-1.53c0-.374.32-.676.713-.676.393 0 .712.303.712.676v.646c0 .206.192.374.427.374.236 0 .428-.168.428-.374V8.98c0-.373.319-.676.713-.676zm4.562 2.416c.393 0 .713.302.713.676v2.691c0 .374-.32.676-.713.676-.394 0-.712-.303-.712-.676v-2.691c0-.374.319-.676.712-.676zm2.28 1.368c.395 0 .713.303.713.676v.67c0 .374-.318.676-.712.676-.394 0-.713-.302-.713-.675v-.67c0-.374.32-.677.713-.677Z" }) + ] + } + ); +}); + +exports.default = SiCastbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.d.ts new file mode 100644 index 000000000..d89c876cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F55B23"; +declare const SiCastbox: IconType; +export { SiCastbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.mjs new file mode 100644 index 000000000..c64abfbb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F55B23"; +const SiCastbox = React.forwardRef(function SiCastbox2({ title = "Castbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.29 0-.58.068-.812.206L2.417 5.392c-.46.272-.804.875-.804 1.408v10.4c0 .533.344 1.135.804 1.407l8.77 5.187c.465.275 1.162.275 1.626 0l8.77-5.187c.46-.272.804-.874.804-1.407V6.8c0-.533-.344-1.136-.804-1.408L12.813.206A1.618 1.618 0 0012 0zm-.85 8.304c.394 0 .714.303.714.676v2.224c0 .207.191.375.427.375s.428-.168.428-.375V9.57c0-.373.32-.675.713-.675.394 0 .712.302.712.675v4.713c0 .374-.318.676-.712.676-.394 0-.713-.302-.713-.676v-1.31c0-.206-.192-.374-.428-.374s-.427.168-.427.374v1.226c0 .374-.32.676-.713.676-.394 0-.713-.302-.713-.676v-1.667c0-.207-.192-.375-.428-.375-.235 0-.427.168-.427.375v3.31c0 .373-.319.676-.712.676-.394 0-.713-.303-.713-.676v-2.427c0-.206-.191-.374-.428-.374-.235 0-.427.168-.427.374v.178a.71.71 0 01-.712.708.71.71 0 01-.713-.708v-2.123a.71.71 0 01.713-.708.71.71 0 01.712.708v.178c0 .206.192.373.427.373.237 0 .428-.167.428-.373v-1.53c0-.374.32-.676.713-.676.393 0 .712.303.712.676v.646c0 .206.192.374.427.374.236 0 .428-.168.428-.374V8.98c0-.373.319-.676.713-.676zm4.562 2.416c.393 0 .713.302.713.676v2.691c0 .374-.32.676-.713.676-.394 0-.712-.303-.712-.676v-2.691c0-.374.319-.676.712-.676zm2.28 1.368c.395 0 .713.303.713.676v.67c0 .374-.318.676-.712.676-.394 0-.713-.302-.713-.675v-.67c0-.374.32-.677.713-.677Z" }) + ] + } + ); +}); + +export { SiCastbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.cjs new file mode 100644 index 000000000..35ee1b998 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0078D7"; +const SiCastorama = React__namespace.forwardRef(function SiCastorama2({ title = "Castorama", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.91 16.106c-2.129 0-3.659-1.794-3.659-4.266 0-2.148 1.468-4.095 3.488-4.095 2.275 0 3.545 1.857 3.545 1.857l2.939-3.298c-.91-1.062-2.598-2.882-6.503-2.882-4.388 0-8.209 3.489-8.209 8.456 0 4.766 3.475 8.532 8.266 8.532 3.855 0 5.572-2.017 6.54-3.129l-2.831-2.969c0 .001-1.415 1.794-3.576 1.794zM18.283 0v9.988h-2.064a1.92 1.92 0 1 0 0 3.84h2.064V24h5.205V0h-5.205z" }) + ] + } + ); +}); + +exports.default = SiCastorama; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.d.ts new file mode 100644 index 000000000..1b2583816 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0078D7"; +declare const SiCastorama: IconType; +export { SiCastorama as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.mjs new file mode 100644 index 000000000..aec69dc87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastorama.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0078D7"; +const SiCastorama = React.forwardRef(function SiCastorama2({ title = "Castorama", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.91 16.106c-2.129 0-3.659-1.794-3.659-4.266 0-2.148 1.468-4.095 3.488-4.095 2.275 0 3.545 1.857 3.545 1.857l2.939-3.298c-.91-1.062-2.598-2.882-6.503-2.882-4.388 0-8.209 3.489-8.209 8.456 0 4.766 3.475 8.532 8.266 8.532 3.855 0 5.572-2.017 6.54-3.129l-2.831-2.969c0 .001-1.415 1.794-3.576 1.794zM18.283 0v9.988h-2.064a1.92 1.92 0 1 0 0 3.84h2.064V24h5.205V0h-5.205z" }) + ] + } + ); +}); + +export { SiCastorama as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.cjs new file mode 100644 index 000000000..55cecc62b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B265"; +const SiCastro = React__namespace.forwardRef(function SiCastro2({ title = "Castro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0zm-.002 13.991a2.052 2.052 0 1 1 0-4.105 2.052 2.052 0 0 1 0 4.105zm4.995 4.853l-2.012-2.791a5.084 5.084 0 1 0-5.982.012l-2.014 2.793A8.526 8.526 0 0 1 11.979 3.42a8.526 8.526 0 0 1 8.526 8.526 8.511 8.511 0 0 1-3.512 6.898z" }) + ] + } + ); +}); + +exports.default = SiCastro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.d.ts new file mode 100644 index 000000000..2534ae69f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B265"; +declare const SiCastro: IconType; +export { SiCastro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.mjs new file mode 100644 index 000000000..950204d06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCastro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B265"; +const SiCastro = React.forwardRef(function SiCastro2({ title = "Castro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0zm-.002 13.991a2.052 2.052 0 1 1 0-4.105 2.052 2.052 0 0 1 0 4.105zm4.995 4.853l-2.012-2.791a5.084 5.084 0 1 0-5.982.012l-2.014 2.793A8.526 8.526 0 0 1 11.979 3.42a8.526 8.526 0 0 1 8.526 8.526 8.511 8.511 0 0 1-3.512 6.898z" }) + ] + } + ); +}); + +export { SiCastro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.cjs new file mode 100644 index 000000000..61673a06b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCD11"; +const SiCaterpillar = React__namespace.forwardRef(function SiCaterpillar2({ title = "Caterpillar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.901 11.554l.802-4.1.798 4.1zm2.869-6.52h-4.15L8.2 15.884l4.503-3.635 4.695 3.934zm-2.067 8.156l-7.509 6.072H19.95zM24 5.02v2.77h-2.066v11.45h-.882l-2.436-2.04V7.79h-2.057V5.02zM6.872 16.864c.548-.458.642-1.024.642-1.532V13.2h-2.98v2.894a.75.75 0 0 1-.748.751c-.414 0-.722-.336-.722-.75V7.893c0-.414.308-.75.722-.75a.75.75 0 0 1 .749.75v2.913H7.51V7.785c0-1.67-1.092-3.044-3.75-3.047-2.728 0-3.76 1.38-3.76 3.05v8.563c0 1.655 1.314 2.907 2.995 2.907h.922Z" }) + ] + } + ); +}); + +exports.default = SiCaterpillar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.d.ts new file mode 100644 index 000000000..e7e29b0c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCD11"; +declare const SiCaterpillar: IconType; +export { SiCaterpillar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.mjs new file mode 100644 index 000000000..15e789071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCaterpillar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCD11"; +const SiCaterpillar = React.forwardRef(function SiCaterpillar2({ title = "Caterpillar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.901 11.554l.802-4.1.798 4.1zm2.869-6.52h-4.15L8.2 15.884l4.503-3.635 4.695 3.934zm-2.067 8.156l-7.509 6.072H19.95zM24 5.02v2.77h-2.066v11.45h-.882l-2.436-2.04V7.79h-2.057V5.02zM6.872 16.864c.548-.458.642-1.024.642-1.532V13.2h-2.98v2.894a.75.75 0 0 1-.748.751c-.414 0-.722-.336-.722-.75V7.893c0-.414.308-.75.722-.75a.75.75 0 0 1 .749.75v2.913H7.51V7.785c0-1.67-1.092-3.044-3.75-3.047-2.728 0-3.76 1.38-3.76 3.05v8.563c0 1.655 1.314 2.907 2.995 2.907h.922Z" }) + ] + } + ); +}); + +export { SiCaterpillar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.cjs new file mode 100644 index 000000000..048745a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60505"; +const SiCbc = React__namespace.forwardRef(function SiCbc2({ title = "CBC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-1.5673 0-2.9376.8395-3.6855 2.0938l7.369.0019C14.9357.8402 13.5676 0 12 0zm0 2.7676c-2.3692 0-4.291 1.9188-4.291 4.287h8.5781c0-2.3682-1.9191-4.287-4.2871-4.287zm-4.9531.209c-2.2507 0-4.0762 1.8241-4.0762 4.0742h4.0762V2.9766zm9.9043.002v4.0722l4.0722.002c0-2.2501-1.8234-4.0743-4.0722-4.0743zM7.0469 7.709c-2.3698 0-4.289 1.9224-4.289 4.291 0 2.368 1.9189 4.2871 4.289 4.2871V7.709zm9.9043 0v8.5781c2.3682 0 4.291-1.9191 4.291-4.2871 0-2.3686-1.9228-4.291-4.291-4.291zm-4.9551.002C9.6278 7.711 7.709 9.6316 7.709 12c0 2.3686 1.9188 4.2871 4.287 4.2871 2.3684 0 4.2892-1.9185 4.2892-4.2871 0-2.3683-1.9208-4.289-4.2891-4.289zm-9.9004.6035C.8399 9.062 0 10.4327 0 12c0 1.5666.8398 2.9364 2.0938 3.6855l.0019-7.371zm19.8086 0 .002 7.371C23.1595 14.9364 24 13.5666 24 12c0-1.5673-.8402-2.9379-2.0957-3.6855zM7.0469 16.9492l-4.0742.002c0 2.2491 1.8222 4.0703 4.0742 4.0703v-4.0723zm9.9043 0v4.0703c2.2485 0 4.0722-1.8189 4.0722-4.0683l-4.0722-.002zm-9.2422.002c0 2.3692 1.9218 4.289 4.291 4.289 2.368 0 4.2871-1.9198 4.2871-4.289H7.709zm.5488 4.9531C9.0061 23.1592 10.3755 24 11.9434 24c1.5672 0 2.9366-.8408 3.6855-2.0957H8.258z" }) + ] + } + ); +}); + +exports.default = SiCbc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.d.ts new file mode 100644 index 000000000..fa89d93a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60505"; +declare const SiCbc: IconType; +export { SiCbc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.mjs new file mode 100644 index 000000000..d2d7bcf22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCbc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60505"; +const SiCbc = React.forwardRef(function SiCbc2({ title = "CBC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-1.5673 0-2.9376.8395-3.6855 2.0938l7.369.0019C14.9357.8402 13.5676 0 12 0zm0 2.7676c-2.3692 0-4.291 1.9188-4.291 4.287h8.5781c0-2.3682-1.9191-4.287-4.2871-4.287zm-4.9531.209c-2.2507 0-4.0762 1.8241-4.0762 4.0742h4.0762V2.9766zm9.9043.002v4.0722l4.0722.002c0-2.2501-1.8234-4.0743-4.0722-4.0743zM7.0469 7.709c-2.3698 0-4.289 1.9224-4.289 4.291 0 2.368 1.9189 4.2871 4.289 4.2871V7.709zm9.9043 0v8.5781c2.3682 0 4.291-1.9191 4.291-4.2871 0-2.3686-1.9228-4.291-4.291-4.291zm-4.9551.002C9.6278 7.711 7.709 9.6316 7.709 12c0 2.3686 1.9188 4.2871 4.287 4.2871 2.3684 0 4.2892-1.9185 4.2892-4.2871 0-2.3683-1.9208-4.289-4.2891-4.289zm-9.9004.6035C.8399 9.062 0 10.4327 0 12c0 1.5666.8398 2.9364 2.0938 3.6855l.0019-7.371zm19.8086 0 .002 7.371C23.1595 14.9364 24 13.5666 24 12c0-1.5673-.8402-2.9379-2.0957-3.6855zM7.0469 16.9492l-4.0742.002c0 2.2491 1.8222 4.0703 4.0742 4.0703v-4.0723zm9.9043 0v4.0703c2.2485 0 4.0722-1.8189 4.0722-4.0683l-4.0722-.002zm-9.2422.002c0 2.3692 1.9218 4.289 4.291 4.289 2.368 0 4.2871-1.9198 4.2871-4.289H7.709zm.5488 4.9531C9.0061 23.1592 10.3755 24 11.9434 24c1.5672 0 2.9366-.8408 3.6855-2.0957H8.258z" }) + ] + } + ); +}); + +export { SiCbc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.cjs new file mode 100644 index 000000000..e2ba452ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#033963"; +const SiCbs = React__namespace.forwardRef(function SiCbs2({ title = "CBS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.314 24 .068 18.587.068 11.949.068 5.413 5.314 0 12 0s11.932 5.413 11.932 11.949C23.932 18.587 18.686 24 12 24zm0-5.106c5.452 0 9.36-3.473 11.109-6.945C21.875 9.294 18.172 5.106 12 5.106c-5.452 0-9.36 3.37-11.109 6.843C2.537 15.42 6.548 18.894 12 18.894zm0-.613c-3.497 0-6.377-2.86-6.377-6.332S8.503 5.617 12 5.617s6.377 2.86 6.377 6.332c0 3.574-2.88 6.332-6.377 6.332Z" }) + ] + } + ); +}); + +exports.default = SiCbs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.d.ts new file mode 100644 index 000000000..98ebe0e84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#033963"; +declare const SiCbs: IconType; +export { SiCbs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.mjs new file mode 100644 index 000000000..c16bb7c2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCbs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#033963"; +const SiCbs = React.forwardRef(function SiCbs2({ title = "CBS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C5.314 24 .068 18.587.068 11.949.068 5.413 5.314 0 12 0s11.932 5.413 11.932 11.949C23.932 18.587 18.686 24 12 24zm0-5.106c5.452 0 9.36-3.473 11.109-6.945C21.875 9.294 18.172 5.106 12 5.106c-5.452 0-9.36 3.37-11.109 6.843C2.537 15.42 6.548 18.894 12 18.894zm0-.613c-3.497 0-6.377-2.86-6.377-6.332S8.503 5.617 12 5.617s6.377 2.86 6.377 6.332c0 3.574-2.88 6.332-6.377 6.332Z" }) + ] + } + ); +}); + +export { SiCbs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.cjs new file mode 100644 index 000000000..a6126456b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCcc = React__namespace.forwardRef(function SiCcc2({ title = "CCC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3.4C5.814 3.4.8 7.253.8 12c0 4.75 5.014 8.6 11.2 8.6s11.2-3.85 11.2-8.6c0-4.747-5.015-8.6-11.2-8.6M24 12c0 5.19-5.374 9.4-12 9.4S0 17.19 0 12s5.374-9.4 12-9.4S24 6.81 24 12M10 7c-2.83 0-5.026 2.229-5.026 5 0 2.882 2.487 4.997 5.026 4.997V15.44c-1.708 0-3.442-1.36-3.445-3.44C6.547 9.65 8.476 8.544 10 8.544zm3.8 0c-2.83 0-5.026 2.229-5.026 5 0 2.882 2.484 4.997 5.026 4.997V15.44c-1.705 0-3.442-1.36-3.447-3.44-.007-2.35 1.923-3.456 3.447-3.456zm3.8.003c-2.83 0-5.026 2.23-5.026 4.997 0 2.886 2.487 5 5.026 5v-1.56c-1.708 0-3.442-1.358-3.448-3.44-.005-2.35 1.924-3.456 3.448-3.456z" }) + ] + } + ); +}); + +exports.default = SiCcc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.d.ts new file mode 100644 index 000000000..61d95ceca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCcc: IconType; +export { SiCcc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.mjs new file mode 100644 index 000000000..81f01a85c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCcc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCcc = React.forwardRef(function SiCcc2({ title = "CCC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 3.4C5.814 3.4.8 7.253.8 12c0 4.75 5.014 8.6 11.2 8.6s11.2-3.85 11.2-8.6c0-4.747-5.015-8.6-11.2-8.6M24 12c0 5.19-5.374 9.4-12 9.4S0 17.19 0 12s5.374-9.4 12-9.4S24 6.81 24 12M10 7c-2.83 0-5.026 2.229-5.026 5 0 2.882 2.487 4.997 5.026 4.997V15.44c-1.708 0-3.442-1.36-3.445-3.44C6.547 9.65 8.476 8.544 10 8.544zm3.8 0c-2.83 0-5.026 2.229-5.026 5 0 2.882 2.484 4.997 5.026 4.997V15.44c-1.705 0-3.442-1.36-3.447-3.44-.007-2.35 1.923-3.456 3.447-3.456zm3.8.003c-2.83 0-5.026 2.23-5.026 4.997 0 2.886 2.487 5 5.026 5v-1.56c-1.708 0-3.442-1.358-3.448-3.44-.005-2.35 1.924-3.456 3.448-3.456z" }) + ] + } + ); +}); + +export { SiCcc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.cjs new file mode 100644 index 000000000..c802de13c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CB2D29"; +const SiCcleaner = React__namespace.forwardRef(function SiCcleaner2({ title = "CCleaner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.9388.9336C8.8759.9336 3.9622 5.8884 3.9622 12c0 .5012.0322.9934.0971 1.4766.953-.7245 1.6108-1.4633 1.9557-1.9004l-.129-.082L7.6596 9.082s.2811-.336.6836-.336c.129 0 .2637.0279.3867.0763.123.0483.9893.4108 1.5879.6601l3.3828-7.1855s.33-.6818 1.0508-.6797c.1676.0005.342.0356.5644.125.2226.0894.4279.2665.543.4746.1152.208.138.4246.127.5977-.0198.1843-.0964.358-.1446.537l-1.6425 4.1192c.3584-.0592.577-.0664.8164-.0664.4266 0 2.5709.099 4.3691 2.0195.1086.1161.2144.2556.3184.3516.1684.1693.4444.1973.621-.0176l3.3106-3.8652c.1552-.1801.1313-.46.0098-.6348-.9985-1.3093-2.2822-2.3865-3.7578-3.1387-1.4863-.7583-3.1674-1.1855-4.9473-1.1855Zm-.1895 1.1836c-.431-.0013-.5879.373-.5879.373l-3.5937 7.6348c.0107.0043-1.7194-.7172-2.0117-.834-.0826-.0325-.1533-.045-.213-.045-.1895 0-.2733.1212-.2733.1212l-1.4649 1.9922s4.5809 2.9223 4.6895 3.0136c.1085.0914.2246.0997.2246.0997l2.539.4843s.301-2.3783.3653-2.8008c.0657-.4426-.2461-.5234-.2461-.5234s-1.0177-.4253-1.8653-.7793l3.0645-7.6875s.3896-.6968-.2832-.9785c-.1299-.0493-.2443-.07-.3438-.0703zm-8.3046 9.7324c-.7392.944-2.8816 3.2924-6.3926 4.0078 0 0-.0808.0222-.041.211.0397.1888.4932 1.6514 1.8632 3.0566 0 0 .3304.3558.754.4687.422.113 1.2093.0852 1.6542 0 0 0-.192.1734-.9336.6563a.1036.1036 0 0 0-.043.1172c.0184.0619.08.144.2345.2539.2905.2074 1.2422.7988 1.8554 1.0371 0 0 .2167.1492 1.1035.1523h.8262l.6367-.3574-.2949.3574s.909.0236 1.6582-.125c.2187-.0433.4267-.13.6133-.2539.6948-.4648 2.3624-1.9515 3.7012-6.0449l-2.209-.4219c-.0882-.0153-.2857-.0648-.457-.209.0284.023-.6612-.4413-4.5293-2.9062zm13.252 2.418c-1.4344 2.2332-4.1506 2.3157-4.5802 2.3242-.4569.009-.883-.04-1.3203-.1504-1.307 3.5108-2.8423 4.9127-3.58 5.4063a2.3336 2.3336 0 0 1-.129.08c1.4632.7292 3.1093 1.1387 4.8516 1.1387 3.5888 0 6.7606-1.75 8.7637-4.4336.2681-.3738.2908-.4488.2968-.5605.011-.2047-.1328-.3516-.1328-.3516l-3.4433-3.5117c-.371-.41-.7048-.0021-.7266.0586z" }) + ] + } + ); +}); + +exports.default = SiCcleaner; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.d.ts new file mode 100644 index 000000000..b45f39b32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CB2D29"; +declare const SiCcleaner: IconType; +export { SiCcleaner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.mjs new file mode 100644 index 000000000..0c1a51481 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCcleaner.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CB2D29"; +const SiCcleaner = React.forwardRef(function SiCcleaner2({ title = "CCleaner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.9388.9336C8.8759.9336 3.9622 5.8884 3.9622 12c0 .5012.0322.9934.0971 1.4766.953-.7245 1.6108-1.4633 1.9557-1.9004l-.129-.082L7.6596 9.082s.2811-.336.6836-.336c.129 0 .2637.0279.3867.0763.123.0483.9893.4108 1.5879.6601l3.3828-7.1855s.33-.6818 1.0508-.6797c.1676.0005.342.0356.5644.125.2226.0894.4279.2665.543.4746.1152.208.138.4246.127.5977-.0198.1843-.0964.358-.1446.537l-1.6425 4.1192c.3584-.0592.577-.0664.8164-.0664.4266 0 2.5709.099 4.3691 2.0195.1086.1161.2144.2556.3184.3516.1684.1693.4444.1973.621-.0176l3.3106-3.8652c.1552-.1801.1313-.46.0098-.6348-.9985-1.3093-2.2822-2.3865-3.7578-3.1387-1.4863-.7583-3.1674-1.1855-4.9473-1.1855Zm-.1895 1.1836c-.431-.0013-.5879.373-.5879.373l-3.5937 7.6348c.0107.0043-1.7194-.7172-2.0117-.834-.0826-.0325-.1533-.045-.213-.045-.1895 0-.2733.1212-.2733.1212l-1.4649 1.9922s4.5809 2.9223 4.6895 3.0136c.1085.0914.2246.0997.2246.0997l2.539.4843s.301-2.3783.3653-2.8008c.0657-.4426-.2461-.5234-.2461-.5234s-1.0177-.4253-1.8653-.7793l3.0645-7.6875s.3896-.6968-.2832-.9785c-.1299-.0493-.2443-.07-.3438-.0703zm-8.3046 9.7324c-.7392.944-2.8816 3.2924-6.3926 4.0078 0 0-.0808.0222-.041.211.0397.1888.4932 1.6514 1.8632 3.0566 0 0 .3304.3558.754.4687.422.113 1.2093.0852 1.6542 0 0 0-.192.1734-.9336.6563a.1036.1036 0 0 0-.043.1172c.0184.0619.08.144.2345.2539.2905.2074 1.2422.7988 1.8554 1.0371 0 0 .2167.1492 1.1035.1523h.8262l.6367-.3574-.2949.3574s.909.0236 1.6582-.125c.2187-.0433.4267-.13.6133-.2539.6948-.4648 2.3624-1.9515 3.7012-6.0449l-2.209-.4219c-.0882-.0153-.2857-.0648-.457-.209.0284.023-.6612-.4413-4.5293-2.9062zm13.252 2.418c-1.4344 2.2332-4.1506 2.3157-4.5802 2.3242-.4569.009-.883-.04-1.3203-.1504-1.307 3.5108-2.8423 4.9127-3.58 5.4063a2.3336 2.3336 0 0 1-.129.08c1.4632.7292 3.1093 1.1387 4.8516 1.1387 3.5888 0 6.7606-1.75 8.7637-4.4336.2681-.3738.2908-.4488.2968-.5605.011-.2047-.1328-.3516-.1328-.3516l-3.4433-3.5117c-.371-.41-.7048-.0021-.7266.0586z" }) + ] + } + ); +}); + +export { SiCcleaner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.cjs new file mode 100644 index 000000000..8d6bb8930 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC0D15"; +const SiCdprojekt = React__namespace.forwardRef(function SiCdprojekt2({ title = "CD Projekt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.942,20.154c-0.687,0.323-1.719,0.302-2.986-0.072l0.213,0.547l-0.389-0.226l-1.537-0.907h0.001 l-0.033-0.158C14.783,19.509,17.746,20.507,18.942,20.154z M7.929,22.045c-0.127,0.229,0.179,0.645,0.179,0.645 c-0.687-0.534-1.276,0.346-1.276,0.346c-0.039-0.385,0.397-0.669,0.397-0.669c-0.715,0.113-1.549,0.78-1.549,0.78 c-0.097-0.333,0.319-0.556,0.319-0.556c0-0.263,0.361-0.236,0.763-0.347c0.272-0.074,0.679-0.186,0.919-0.252 c0.005-0.004,0.007-0.01,0.011-0.013c0-0.002,0.303-0.348,0.671-0.745c0.291-0.31,0.614-0.648,0.868-0.88 c0.118,0.018,0.226,0.031,0.294,0.037c-0.243,0.199-0.651,0.62-0.999,0.994C8.266,21.665,8.039,21.921,7.929,22.045z M10.168,14.083 l8.822,6.05c-0.013,0.007-0.029,0.011-0.042,0.018c-0.008-0.004-0.163-0.064-0.328-0.129c-0.081-0.033-0.178-0.072-0.29-0.118 h-0.001c-0.005-0.002-0.012-0.005-0.019-0.009c-0.772-0.317-2.27-0.951-4.634-2.041c-2.4-1.112-3.815-1.798-5.028-2.388l0.001,0.002 c0,0-0.001-0.002-0.002-0.002l4.363,3.974l0.006,0.004l0.011,0.011h0.002l0.256,0.211l-1.153,0.348 c-0.001-0.006-0.005-0.013-0.006-0.018c-0.006-0.016-0.011-0.033-0.017-0.051c-0.003-0.008-0.006-0.017-0.009-0.025 c-0.006-0.017-0.012-0.033-0.018-0.05c-0.003-0.007-0.006-0.015-0.009-0.023c-0.011-0.023-0.021-0.047-0.032-0.073l-0.202,0.094 c0.09,0.197,0.121,0.356,0.121,0.482c-0.001,0.16-0.064,0.282-0.109,0.353c-0.025,0.037-0.07,0.086-0.071,0.086l0.064,0.088 c-0.004,0.011-0.008,0.023-0.014,0.035c-0.341,0.545-0.652,1.308-0.786,1.653c-0.044,0.114-0.069,0.183-0.069,0.183 c0,0,0,0.002-0.001,0.005c0.227,0.009,0.767,0.073,0.627,0.504l-0.122,0.444c-0.268-0.478-0.154-0.606-0.154-0.606 C10.544,22.894,8.968,24,8.968,24c0.052-0.411,0.506-0.697,0.768-0.847c-0.221-0.026-0.494,0.165-0.64,0.283 c0.137-0.27,0.335-0.433,0.539-0.522c-0.002-0.002-0.002-0.002-0.003-0.004c0.359-0.135,0.712-0.069,0.753-0.029l-0.002,0.001 c0.122-0.038,0.131-0.043,0.241-0.068c0.036-0.026,0.071-0.112,0.088-0.158c0.001-0.005,0.363-1.014,0.81-1.774 c-0.217-0.021-0.388-0.274-0.388-0.581c0-0.018,0.001-0.037,0.002-0.055c-0.475,0.069-0.973,0.088-1.484,0.043 c-0.016,0-0.032-0.003-0.049-0.005c0,0.001,0,0.001,0,0.001c-0.024-0.002-0.131-0.012-0.262-0.029 c-0.945-0.128-1.803-0.45-2.507-0.911l0.002,0.01c0,0-1.279-0.682-1.551-2.233l-0.309,0.195c0-1.39,0.238-2.365,0.563-3.111 l-0.38,0.037l0.38-0.534c-0.05,0.103-0.096,0.212-0.143,0.332l0.233-0.039l0-.002c0.047-0.096,0.092-0.184,0.138-0.27 c0.092-0.169,0.188-0.328,0.295-0.484c0.024-0.035,0.069-0.098,0.111-0.152c0.062-0.08,0.147-0.179,0.204-0.245 c0.051-0.06,0.166-0.172,0.22-0.221c0.041-0.037,0.114-0.096,0.147-0.12l-0.229,1.072c0.669-0.832,1.912-2.075,2.535-2.665 c-0.118-0.222-0.248-0.418-0.386-0.581L8.08,10.763l-0.025,0.019c0,0-0.416,0.314-0.565,0.412c-0.409,0.267-0.706-0.07-0.722-0.09 c0.088,0.074,0.201,0.12,0.328,0.12c0.14,0,0.267-0.055,0.357-0.144c0.092-0.088,0.147-0.209,0.147-0.343 c0-0.068-0.014-0.132-0.038-0.191c-0.044-0.097-0.12-0.178-0.214-0.23H7.35c0,0-0.104-0.06-0.082-0.158 c0.022-0.099,0.206-0.291,0.206-0.291l0.225-0.229l0.36-0.367l0.777-0.79c0.047-0.052,0.077-0.087,0.077-0.087L8.231,8.686 L8.229,8.68c0-0.009,0.006-0.037,0.053-0.123c0.065-0.119,0.22-0.335,0.224-0.343l0.001-0.001L7.242,9.117c0-0.001,0-0.001,0-0.002 c0.074-0.35,0.824-1.365,0.858-1.412L7.27,8.464c0-0.002-0.001-0.004-0.003-0.006C7.224,8.2,7.638,7.317,7.695,7.197 C7.697,7.193,7.698,7.19,7.7,7.187C7.398,7.488,7.18,7.815,7.173,7.823c0-0.291,0.223-0.709,0.223-0.709 C7.332,7.176,7.272,7.242,7.214,7.307C6.346,8.285,6.095,9.429,6.027,9.873c0,0,0,0.001-0.001,0.001 C5.881,9.963,5.97,9.854,5.9,10.022c-0.256,0.073-0.47,0.202-0.642,0.346c-0.287,0.237-0.459,0.511-0.513,0.605 c0.034-0.043,0.07-0.083,0.105-0.119C5.38,10.3,5.992,10.36,5.992,10.36s0.682,1.26,0.542,1.405 c-0.015,0.015-0.039,0.017-0.072,0.006c-0.09-0.031-0.149-0.017-0.182,0.024c-0.105,0.117-0.009,0.454-0.008,0.462l-1.809-0.778 c0.858-0.318,1.47-0.1,1.47-0.1c0,0.212,0.48,0.184,0.48,0.184l0-.001h0.001c0-0.196-0.365-0.43-0.365-0.43 s-0.327,0.136-0.716,0c-0.077-0.027-0.161-0.038-0.242-0.034C5.02,11.1,4.946,11.115,4.874,11.136 c-0.206,0.059-0.357,0.174-0.357,0.174v-0.001L4.515,11.31l1.131-4.139l0.119,1.591L8.06,3.367l0.039,4.037L14.354,0l-3.847,8.316 l0.023,0.041l2.713-1.954l-0.573,1.149l3.793-1.481l-3.539,2.585l6.612-0.81l-8.021,3.471l4.105-1.001L10.168,14.083z M11.512,11.319l0.001,0l-0.001-0.004C11.512,11.316,11.512,11.317,11.512,11.319z M9.515,12.181 c-0.095-0.395-0.223-0.757-0.371-1.076L8.2,13.182L9.515,12.181z M7.215,11.087c0.208-0.071,0.314-0.308,0.239-0.529l-0.208,0.071 c0.013,0.031,0.022,0.064,0.022,0.099c0,0.031-0.005,0.06-0.017,0.086l0.095,0.057c-0.032,0.051-0.081,0.095-0.141,0.12 c-0.036,0.016-0.074,0.022-0.112,0.022c-0.122,0-0.236-0.074-0.286-0.195c-0.004-0.01-0.01-0.022-0.012-0.034l-0.092,0.03 C6.778,11.038,7.008,11.158,7.215,11.087z" }) + ] + } + ); +}); + +exports.default = SiCdprojekt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.d.ts new file mode 100644 index 000000000..d196c352e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC0D15"; +declare const SiCdprojekt: IconType; +export { SiCdprojekt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.mjs new file mode 100644 index 000000000..32c0b7406 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCdprojekt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC0D15"; +const SiCdprojekt = React.forwardRef(function SiCdprojekt2({ title = "CD Projekt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.942,20.154c-0.687,0.323-1.719,0.302-2.986-0.072l0.213,0.547l-0.389-0.226l-1.537-0.907h0.001 l-0.033-0.158C14.783,19.509,17.746,20.507,18.942,20.154z M7.929,22.045c-0.127,0.229,0.179,0.645,0.179,0.645 c-0.687-0.534-1.276,0.346-1.276,0.346c-0.039-0.385,0.397-0.669,0.397-0.669c-0.715,0.113-1.549,0.78-1.549,0.78 c-0.097-0.333,0.319-0.556,0.319-0.556c0-0.263,0.361-0.236,0.763-0.347c0.272-0.074,0.679-0.186,0.919-0.252 c0.005-0.004,0.007-0.01,0.011-0.013c0-0.002,0.303-0.348,0.671-0.745c0.291-0.31,0.614-0.648,0.868-0.88 c0.118,0.018,0.226,0.031,0.294,0.037c-0.243,0.199-0.651,0.62-0.999,0.994C8.266,21.665,8.039,21.921,7.929,22.045z M10.168,14.083 l8.822,6.05c-0.013,0.007-0.029,0.011-0.042,0.018c-0.008-0.004-0.163-0.064-0.328-0.129c-0.081-0.033-0.178-0.072-0.29-0.118 h-0.001c-0.005-0.002-0.012-0.005-0.019-0.009c-0.772-0.317-2.27-0.951-4.634-2.041c-2.4-1.112-3.815-1.798-5.028-2.388l0.001,0.002 c0,0-0.001-0.002-0.002-0.002l4.363,3.974l0.006,0.004l0.011,0.011h0.002l0.256,0.211l-1.153,0.348 c-0.001-0.006-0.005-0.013-0.006-0.018c-0.006-0.016-0.011-0.033-0.017-0.051c-0.003-0.008-0.006-0.017-0.009-0.025 c-0.006-0.017-0.012-0.033-0.018-0.05c-0.003-0.007-0.006-0.015-0.009-0.023c-0.011-0.023-0.021-0.047-0.032-0.073l-0.202,0.094 c0.09,0.197,0.121,0.356,0.121,0.482c-0.001,0.16-0.064,0.282-0.109,0.353c-0.025,0.037-0.07,0.086-0.071,0.086l0.064,0.088 c-0.004,0.011-0.008,0.023-0.014,0.035c-0.341,0.545-0.652,1.308-0.786,1.653c-0.044,0.114-0.069,0.183-0.069,0.183 c0,0,0,0.002-0.001,0.005c0.227,0.009,0.767,0.073,0.627,0.504l-0.122,0.444c-0.268-0.478-0.154-0.606-0.154-0.606 C10.544,22.894,8.968,24,8.968,24c0.052-0.411,0.506-0.697,0.768-0.847c-0.221-0.026-0.494,0.165-0.64,0.283 c0.137-0.27,0.335-0.433,0.539-0.522c-0.002-0.002-0.002-0.002-0.003-0.004c0.359-0.135,0.712-0.069,0.753-0.029l-0.002,0.001 c0.122-0.038,0.131-0.043,0.241-0.068c0.036-0.026,0.071-0.112,0.088-0.158c0.001-0.005,0.363-1.014,0.81-1.774 c-0.217-0.021-0.388-0.274-0.388-0.581c0-0.018,0.001-0.037,0.002-0.055c-0.475,0.069-0.973,0.088-1.484,0.043 c-0.016,0-0.032-0.003-0.049-0.005c0,0.001,0,0.001,0,0.001c-0.024-0.002-0.131-0.012-0.262-0.029 c-0.945-0.128-1.803-0.45-2.507-0.911l0.002,0.01c0,0-1.279-0.682-1.551-2.233l-0.309,0.195c0-1.39,0.238-2.365,0.563-3.111 l-0.38,0.037l0.38-0.534c-0.05,0.103-0.096,0.212-0.143,0.332l0.233-0.039l0-.002c0.047-0.096,0.092-0.184,0.138-0.27 c0.092-0.169,0.188-0.328,0.295-0.484c0.024-0.035,0.069-0.098,0.111-0.152c0.062-0.08,0.147-0.179,0.204-0.245 c0.051-0.06,0.166-0.172,0.22-0.221c0.041-0.037,0.114-0.096,0.147-0.12l-0.229,1.072c0.669-0.832,1.912-2.075,2.535-2.665 c-0.118-0.222-0.248-0.418-0.386-0.581L8.08,10.763l-0.025,0.019c0,0-0.416,0.314-0.565,0.412c-0.409,0.267-0.706-0.07-0.722-0.09 c0.088,0.074,0.201,0.12,0.328,0.12c0.14,0,0.267-0.055,0.357-0.144c0.092-0.088,0.147-0.209,0.147-0.343 c0-0.068-0.014-0.132-0.038-0.191c-0.044-0.097-0.12-0.178-0.214-0.23H7.35c0,0-0.104-0.06-0.082-0.158 c0.022-0.099,0.206-0.291,0.206-0.291l0.225-0.229l0.36-0.367l0.777-0.79c0.047-0.052,0.077-0.087,0.077-0.087L8.231,8.686 L8.229,8.68c0-0.009,0.006-0.037,0.053-0.123c0.065-0.119,0.22-0.335,0.224-0.343l0.001-0.001L7.242,9.117c0-0.001,0-0.001,0-0.002 c0.074-0.35,0.824-1.365,0.858-1.412L7.27,8.464c0-0.002-0.001-0.004-0.003-0.006C7.224,8.2,7.638,7.317,7.695,7.197 C7.697,7.193,7.698,7.19,7.7,7.187C7.398,7.488,7.18,7.815,7.173,7.823c0-0.291,0.223-0.709,0.223-0.709 C7.332,7.176,7.272,7.242,7.214,7.307C6.346,8.285,6.095,9.429,6.027,9.873c0,0,0,0.001-0.001,0.001 C5.881,9.963,5.97,9.854,5.9,10.022c-0.256,0.073-0.47,0.202-0.642,0.346c-0.287,0.237-0.459,0.511-0.513,0.605 c0.034-0.043,0.07-0.083,0.105-0.119C5.38,10.3,5.992,10.36,5.992,10.36s0.682,1.26,0.542,1.405 c-0.015,0.015-0.039,0.017-0.072,0.006c-0.09-0.031-0.149-0.017-0.182,0.024c-0.105,0.117-0.009,0.454-0.008,0.462l-1.809-0.778 c0.858-0.318,1.47-0.1,1.47-0.1c0,0.212,0.48,0.184,0.48,0.184l0-.001h0.001c0-0.196-0.365-0.43-0.365-0.43 s-0.327,0.136-0.716,0c-0.077-0.027-0.161-0.038-0.242-0.034C5.02,11.1,4.946,11.115,4.874,11.136 c-0.206,0.059-0.357,0.174-0.357,0.174v-0.001L4.515,11.31l1.131-4.139l0.119,1.591L8.06,3.367l0.039,4.037L14.354,0l-3.847,8.316 l0.023,0.041l2.713-1.954l-0.573,1.149l3.793-1.481l-3.539,2.585l6.612-0.81l-8.021,3.471l4.105-1.001L10.168,14.083z M11.512,11.319l0.001,0l-0.001-0.004C11.512,11.316,11.512,11.317,11.512,11.319z M9.515,12.181 c-0.095-0.395-0.223-0.757-0.371-1.076L8.2,13.182L9.515,12.181z M7.215,11.087c0.208-0.071,0.314-0.308,0.239-0.529l-0.208,0.071 c0.013,0.031,0.022,0.064,0.022,0.099c0,0.031-0.005,0.06-0.017,0.086l0.095,0.057c-0.032,0.051-0.081,0.095-0.141,0.12 c-0.036,0.016-0.074,0.022-0.112,0.022c-0.122,0-0.236-0.074-0.286-0.195c-0.004-0.01-0.01-0.022-0.012-0.034l-0.092,0.03 C6.778,11.038,7.008,11.158,7.215,11.087z" }) + ] + } + ); +}); + +export { SiCdprojekt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCe.cjs new file mode 100644 index 000000000..c4104b095 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCe = React__namespace.forwardRef(function SiCe2({ title = "CE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 20.53v-2.59a6 6 0 0 1-.857.06 6 6 0 0 1-5.862-4.714h5.005v-2.571H17.28A6 6 0 0 1 24 6.06V3.47a9 9 0 0 0-.857-.042 8.571 8.571 0 1 0 .857 17.1M0 12a8.57 8.57 0 0 0 9.486 8.524V17.93q-.448.07-.915.07a6 6 0 1 1 .915-11.93V3.477a9 9 0 0 0-.915-.048A8.57 8.57 0 0 0 0 12" }) + ] + } + ); +}); + +exports.default = SiCe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCe.d.ts new file mode 100644 index 000000000..9182d63bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCe: IconType; +export { SiCe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCe.mjs new file mode 100644 index 000000000..27b2407bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCe = React.forwardRef(function SiCe2({ title = "CE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 20.53v-2.59a6 6 0 0 1-.857.06 6 6 0 0 1-5.862-4.714h5.005v-2.571H17.28A6 6 0 0 1 24 6.06V3.47a9 9 0 0 0-.857-.042 8.571 8.571 0 1 0 .857 17.1M0 12a8.57 8.57 0 0 0 9.486 8.524V17.93q-.448.07-.915.07a6 6 0 1 1 .915-11.93V3.477a9 9 0 0 0-.915-.048A8.57 8.57 0 0 0 0 12" }) + ] + } + ); +}); + +export { SiCe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.cjs new file mode 100644 index 000000000..390b0a16c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#37814A"; +const SiCelery = React__namespace.forwardRef(function SiCelery2({ title = "Celery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.303 0A2.298 2.298 0 0 0 0 2.303v19.394A2.298 2.298 0 0 0 2.303 24h19.394A2.298 2.298 0 0 0 24 21.697V2.303A2.298 2.298 0 0 0 21.697 0zm8.177 3.072c4.098 0 7.028 1.438 7.68 1.764l-1.194 2.55c-2.442-1.057-4.993-1.41-5.672-1.41-1.574 0-2.17.922-2.17 1.763v8.494c0 .869.596 1.791 2.17 1.791.679 0 3.23-.38 5.672-1.41l1.194 2.496c-.435.271-3.637 1.818-7.68 1.818-1.112 0-4.64-.244-4.64-4.64V7.713c0-4.397 3.528-4.64 4.64-4.64z" }) + ] + } + ); +}); + +exports.default = SiCelery; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.d.ts new file mode 100644 index 000000000..c6602df87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#37814A"; +declare const SiCelery: IconType; +export { SiCelery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.mjs new file mode 100644 index 000000000..762a12a4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCelery.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#37814A"; +const SiCelery = React.forwardRef(function SiCelery2({ title = "Celery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.303 0A2.298 2.298 0 0 0 0 2.303v19.394A2.298 2.298 0 0 0 2.303 24h19.394A2.298 2.298 0 0 0 24 21.697V2.303A2.298 2.298 0 0 0 21.697 0zm8.177 3.072c4.098 0 7.028 1.438 7.68 1.764l-1.194 2.55c-2.442-1.057-4.993-1.41-5.672-1.41-1.574 0-2.17.922-2.17 1.763v8.494c0 .869.596 1.791 2.17 1.791.679 0 3.23-.38 5.672-1.41l1.194 2.496c-.435.271-3.637 1.818-7.68 1.818-1.112 0-4.64-.244-4.64-4.64V7.713c0-4.397 3.528-4.64 4.64-4.64z" }) + ] + } + ); +}); + +export { SiCelery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.cjs new file mode 100644 index 000000000..1cbdac067 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F47216"; +const SiCelestron = React__namespace.forwardRef(function SiCelestron2({ title = "Celestron", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .002c-6.6266 0-12 5.3712-12 12 0 6.6275 5.3734 11.996 12 11.996 1.7452 0 3.4033-.3698 4.8984-1.041C10.7585 21.2392 2.2788 17.3246 3.25 9.5312c.6406-5.1338 7.2145-8.46 13.8047-8.414C15.518.4012 13.8062.002 12 .002zm5.4297 1.8437c-5.0918-.049-9.3055 2.0411-9.6875 5.5566-.6046 5.5956 7.1547 8.8084 11.8437 10.1407.9056.2592 1.8969.4197 2.7676.5234C23.399 16.286 24 14.2111 24 12.002c0-4.2502-2.21-7.9827-5.541-10.1172a18.6755 18.6755 0 0 0-1.0293-.0391z" }) + ] + } + ); +}); + +exports.default = SiCelestron; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.d.ts new file mode 100644 index 000000000..3b6fc679a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F47216"; +declare const SiCelestron: IconType; +export { SiCelestron as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.mjs new file mode 100644 index 000000000..25d471c5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCelestron.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F47216"; +const SiCelestron = React.forwardRef(function SiCelestron2({ title = "Celestron", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .002c-6.6266 0-12 5.3712-12 12 0 6.6275 5.3734 11.996 12 11.996 1.7452 0 3.4033-.3698 4.8984-1.041C10.7585 21.2392 2.2788 17.3246 3.25 9.5312c.6406-5.1338 7.2145-8.46 13.8047-8.414C15.518.4012 13.8062.002 12 .002zm5.4297 1.8437c-5.0918-.049-9.3055 2.0411-9.6875 5.5566-.6046 5.5956 7.1547 8.8084 11.8437 10.1407.9056.2592 1.8969.4197 2.7676.5234C23.399 16.286 24 14.2111 24 12.002c0-4.2502-2.21-7.9827-5.541-10.1172a18.6755 18.6755 0 0 0-1.0293-.0391z" }) + ] + } + ); +}); + +export { SiCelestron as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.cjs new file mode 100644 index 000000000..f65cf3971 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#262577"; +const SiCentos = React__namespace.forwardRef(function SiCentos2({ title = "CentOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.076.066L8.883 3.28H3.348v5.434L0 12.01l3.349 3.298v5.39h5.374l3.285 3.236 3.285-3.236h5.43v-5.374L24 12.026l-3.232-3.252V3.321H15.31zm0 .749l2.49 2.506h-1.69v6.441l-.8.805-.81-.815V3.28H9.627zm-8.2 2.991h4.483L6.485 5.692l4.253 4.279v.654H9.94L5.674 6.423l-1.798 1.77zm5.227 0h1.635v5.415l-3.509-3.53zm4.302.043h1.687l1.83 1.842-3.517 3.539zm2.431 0h4.404v4.394l-1.83-1.842-4.241 4.267h-.764v-.69l4.261-4.287zm2.574 3.3l1.83 1.843v1.676h-5.327zm-12.735.013l3.515 3.462H3.876v-1.69zM3.348 9.454v1.697h6.377l.871.858-.782.77H3.35v1.786L.753 12.01zm17.42.068l2.488 2.503-2.533 2.55v-1.796h-6.41l-.75-.754.825-.83h6.38zm-9.502.978l.81.815.186-.188.614-.618v.686h.768l-.825.83.75.754h-.719v.808l-.842-.83-.741.73v-.707h-.7l.781-.77-.188-.186-.682-.672h.788zm-7.39 2.807h5.402l-3.603 3.55-1.798-1.772zm6.154 0h.708v.7l-4.404 4.338 1.852 1.824h-4.31v-4.342l1.798 1.77zm3.348 0h.715l4.317 4.343.186-.187 1.599-1.61v4.316h-4.366l1.853-1.825-.188-.185-4.116-4.054zm1.46 0h5.357v1.798l-1.785 1.796zm-2.83.191l.842.829v6.37h1.691l-2.532 2.495-2.533-2.495h1.79V14.23zm-1.27 1.251v5.42H8.939l-1.852-1.823zm2.64.097l3.552 3.499-1.853 1.825h-1.7z" }) + ] + } + ); +}); + +exports.default = SiCentos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.d.ts new file mode 100644 index 000000000..34fe057a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#262577"; +declare const SiCentos: IconType; +export { SiCentos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.mjs new file mode 100644 index 000000000..c2c74a3d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCentos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#262577"; +const SiCentos = React.forwardRef(function SiCentos2({ title = "CentOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.076.066L8.883 3.28H3.348v5.434L0 12.01l3.349 3.298v5.39h5.374l3.285 3.236 3.285-3.236h5.43v-5.374L24 12.026l-3.232-3.252V3.321H15.31zm0 .749l2.49 2.506h-1.69v6.441l-.8.805-.81-.815V3.28H9.627zm-8.2 2.991h4.483L6.485 5.692l4.253 4.279v.654H9.94L5.674 6.423l-1.798 1.77zm5.227 0h1.635v5.415l-3.509-3.53zm4.302.043h1.687l1.83 1.842-3.517 3.539zm2.431 0h4.404v4.394l-1.83-1.842-4.241 4.267h-.764v-.69l4.261-4.287zm2.574 3.3l1.83 1.843v1.676h-5.327zm-12.735.013l3.515 3.462H3.876v-1.69zM3.348 9.454v1.697h6.377l.871.858-.782.77H3.35v1.786L.753 12.01zm17.42.068l2.488 2.503-2.533 2.55v-1.796h-6.41l-.75-.754.825-.83h6.38zm-9.502.978l.81.815.186-.188.614-.618v.686h.768l-.825.83.75.754h-.719v.808l-.842-.83-.741.73v-.707h-.7l.781-.77-.188-.186-.682-.672h.788zm-7.39 2.807h5.402l-3.603 3.55-1.798-1.772zm6.154 0h.708v.7l-4.404 4.338 1.852 1.824h-4.31v-4.342l1.798 1.77zm3.348 0h.715l4.317 4.343.186-.187 1.599-1.61v4.316h-4.366l1.853-1.825-.188-.185-4.116-4.054zm1.46 0h5.357v1.798l-1.785 1.796zm-2.83.191l.842.829v6.37h1.691l-2.532 2.495-2.533-2.495h1.79V14.23zm-1.27 1.251v5.42H8.939l-1.852-1.823zm2.64.097l3.552 3.499-1.853 1.825h-1.7z" }) + ] + } + ); +}); + +export { SiCentos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.cjs new file mode 100644 index 000000000..9e14fe447 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF5C55"; +const SiCeph = React__namespace.forwardRef(function SiCeph2({ title = "Ceph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.959.257A11.912 11.912 0 003.503 3.76 11.92 11.92 0 000 12.217a11.934 11.934 0 001.207 5.243c.72 1.474 1.888 2.944 3.208 4.044.86-.47 1.35-.99 1.453-1.545.1-.533-.134-1.107-.737-1.805a9.031 9.031 0 01-2.219-5.937c0-4.988 4.058-9.047 9.047-9.047h.08c4.99 0 9.048 4.059 9.048 9.047a9.03 9.03 0 01-2.218 5.936c-.599.693-.84 1.292-.735 1.83.108.556.595 1.068 1.449 1.522 1.322-1.1 2.489-2.57 3.209-4.046A11.898 11.898 0 0024 12.217a11.929 11.929 0 00-3.503-8.457A11.923 11.923 0 0012.04.257h-.041zm-.005 4.837a7.072 7.072 0 00-3.76 1.075A7.202 7.202 0 006.15 8.093a7.164 7.164 0 00-1.161 2.65 7.188 7.188 0 00.04 3.125 7.14 7.14 0 001.22 2.607c.154.207.326.396.509.597l.185.202.005.006c.007.007.017.016.026.027.635.738.957 1.533.957 2.36a3.4 3.4 0 01-1.788 2.989 11.924 11.924 0 002.685 1.087c.14-.088.614-.441 1.077-1.083a4.899 4.899 0 00.94-2.99 6.595 6.595 0 00-.49-2.37 6.717 6.717 0 00-1.302-2.033l-.002-.004-.124-.142c-.21-.245-.428-.497-.602-.792a4.104 4.104 0 01-.462-1.135 4.258 4.258 0 01-.024-1.85 4.25 4.25 0 01.686-1.564 4.216 4.216 0 013.432-1.773H12.042a4.202 4.202 0 013.432 1.773c.33.466.568 1.007.686 1.565a4.27 4.27 0 01-.023 1.849c-.093.39-.249.772-.463 1.135-.173.295-.391.547-.602.792l-.123.142-.004.004a6.736 6.736 0 00-1.301 2.033 6.607 6.607 0 00-.49 2.37 4.897 4.897 0 00.94 2.99c.463.642.937.995 1.076 1.083a11.776 11.776 0 002.687-1.087 3.399 3.399 0 01-1.789-2.988c0-.817.313-1.59.956-2.359.009-.012.02-.022.027-.03l.006-.004.184-.204c.183-.2.355-.39.51-.596a7.14 7.14 0 001.22-2.608 7.21 7.21 0 00.04-3.124 7.185 7.185 0 00-1.16-2.65 7.203 7.203 0 00-2.044-1.924 7.074 7.074 0 00-3.762-1.075h-.09zM12 9.97a2.365 2.365 0 00-2.362 2.361A2.364 2.364 0 0012 14.691c1.301 0 2.36-1.059 2.36-2.36A2.364 2.364 0 0012 9.968z" }) + ] + } + ); +}); + +exports.default = SiCeph; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.d.ts new file mode 100644 index 000000000..506e587c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF5C55"; +declare const SiCeph: IconType; +export { SiCeph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.mjs new file mode 100644 index 000000000..9de2f1d43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCeph.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF5C55"; +const SiCeph = React.forwardRef(function SiCeph2({ title = "Ceph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.959.257A11.912 11.912 0 003.503 3.76 11.92 11.92 0 000 12.217a11.934 11.934 0 001.207 5.243c.72 1.474 1.888 2.944 3.208 4.044.86-.47 1.35-.99 1.453-1.545.1-.533-.134-1.107-.737-1.805a9.031 9.031 0 01-2.219-5.937c0-4.988 4.058-9.047 9.047-9.047h.08c4.99 0 9.048 4.059 9.048 9.047a9.03 9.03 0 01-2.218 5.936c-.599.693-.84 1.292-.735 1.83.108.556.595 1.068 1.449 1.522 1.322-1.1 2.489-2.57 3.209-4.046A11.898 11.898 0 0024 12.217a11.929 11.929 0 00-3.503-8.457A11.923 11.923 0 0012.04.257h-.041zm-.005 4.837a7.072 7.072 0 00-3.76 1.075A7.202 7.202 0 006.15 8.093a7.164 7.164 0 00-1.161 2.65 7.188 7.188 0 00.04 3.125 7.14 7.14 0 001.22 2.607c.154.207.326.396.509.597l.185.202.005.006c.007.007.017.016.026.027.635.738.957 1.533.957 2.36a3.4 3.4 0 01-1.788 2.989 11.924 11.924 0 002.685 1.087c.14-.088.614-.441 1.077-1.083a4.899 4.899 0 00.94-2.99 6.595 6.595 0 00-.49-2.37 6.717 6.717 0 00-1.302-2.033l-.002-.004-.124-.142c-.21-.245-.428-.497-.602-.792a4.104 4.104 0 01-.462-1.135 4.258 4.258 0 01-.024-1.85 4.25 4.25 0 01.686-1.564 4.216 4.216 0 013.432-1.773H12.042a4.202 4.202 0 013.432 1.773c.33.466.568 1.007.686 1.565a4.27 4.27 0 01-.023 1.849c-.093.39-.249.772-.463 1.135-.173.295-.391.547-.602.792l-.123.142-.004.004a6.736 6.736 0 00-1.301 2.033 6.607 6.607 0 00-.49 2.37 4.897 4.897 0 00.94 2.99c.463.642.937.995 1.076 1.083a11.776 11.776 0 002.687-1.087 3.399 3.399 0 01-1.789-2.988c0-.817.313-1.59.956-2.359.009-.012.02-.022.027-.03l.006-.004.184-.204c.183-.2.355-.39.51-.596a7.14 7.14 0 001.22-2.608 7.21 7.21 0 00.04-3.124 7.185 7.185 0 00-1.16-2.65 7.203 7.203 0 00-2.044-1.924 7.074 7.074 0 00-3.762-1.075h-.09zM12 9.97a2.365 2.365 0 00-2.362 2.361A2.364 2.364 0 0012 14.691c1.301 0 2.36-1.059 2.36-2.36A2.364 2.364 0 0012 9.968z" }) + ] + } + ); +}); + +export { SiCeph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.cjs new file mode 100644 index 000000000..27b9d6c42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6CADDF"; +const SiCesium = React__namespace.forwardRef(function SiCesium2({ title = "Cesium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.0283 10.216c-.3959 0-.7785.22-1.0792.6168l-3.7755 4.994c-.625.8275-1.5128 1.3012-2.4355 1.3012h-.0143c-.9236 0-1.8115-.4737-2.4355-1.3012l-3.7754-4.994c-.2998-.3969-.6823-.6168-1.0802-.6168-.3949 0-.7795.22-1.0781.6168l-3.7765 4.994c-.621.8204-1.4996 1.294-2.414 1.3012C3.088 21.186 7.2113 24 12.0004 24 18.6268 24 24 18.6276 24 12.001c0-.4705-.0338-.9308-.086-1.382-.2638-.2598-.5697-.403-.8857-.403m-7.019-2.5972c-.6936 0-1.2542-.5616-1.2542-1.2541s.5606-1.2541 1.2541-1.2541c.6925 0 1.254.5616 1.254 1.254s-.5615 1.2542-1.254 1.2542M12.0005 0C5.3732 0 0 5.3714 0 12.001c0 1.0536.1504 2.0704.406 3.0463.2272.175.4788.2762.7366.2762.3979 0 .7804-.2189 1.0812-.6138l3.7754-4.996c.623-.8285 1.5129-1.3021 2.4335-1.3021.9226 0 1.8095.4736 2.4355 1.3021l3.6323 4.8037.1565.1923c.2997.3939.6812.6107 1.074.6138.3918-.003.7743-.22 1.072-.6138l.1595-.1923 3.6323-4.8037c.624-.8285 1.5118-1.3021 2.4335-1.3021.1462 0 .2935.0163.4367.0388C21.9522 3.5557 17.3922 0 12.0005 0" }) + ] + } + ); +}); + +exports.default = SiCesium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.d.ts new file mode 100644 index 000000000..36541a22f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6CADDF"; +declare const SiCesium: IconType; +export { SiCesium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.mjs new file mode 100644 index 000000000..eeae6e2be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCesium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6CADDF"; +const SiCesium = React.forwardRef(function SiCesium2({ title = "Cesium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.0283 10.216c-.3959 0-.7785.22-1.0792.6168l-3.7755 4.994c-.625.8275-1.5128 1.3012-2.4355 1.3012h-.0143c-.9236 0-1.8115-.4737-2.4355-1.3012l-3.7754-4.994c-.2998-.3969-.6823-.6168-1.0802-.6168-.3949 0-.7795.22-1.0781.6168l-3.7765 4.994c-.621.8204-1.4996 1.294-2.414 1.3012C3.088 21.186 7.2113 24 12.0004 24 18.6268 24 24 18.6276 24 12.001c0-.4705-.0338-.9308-.086-1.382-.2638-.2598-.5697-.403-.8857-.403m-7.019-2.5972c-.6936 0-1.2542-.5616-1.2542-1.2541s.5606-1.2541 1.2541-1.2541c.6925 0 1.254.5616 1.254 1.254s-.5615 1.2542-1.254 1.2542M12.0005 0C5.3732 0 0 5.3714 0 12.001c0 1.0536.1504 2.0704.406 3.0463.2272.175.4788.2762.7366.2762.3979 0 .7804-.2189 1.0812-.6138l3.7754-4.996c.623-.8285 1.5129-1.3021 2.4335-1.3021.9226 0 1.8095.4736 2.4355 1.3021l3.6323 4.8037.1565.1923c.2997.3939.6812.6107 1.074.6138.3918-.003.7743-.22 1.072-.6138l.1595-.1923 3.6323-4.8037c.624-.8285 1.5118-1.3021 2.4335-1.3021.1462 0 .2935.0163.4367.0388C21.9522 3.5557 17.3922 0 12.0005 0" }) + ] + } + ); +}); + +export { SiCesium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChai.cjs new file mode 100644 index 000000000..3973ffdcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A30701"; +const SiChai = React__namespace.forwardRef(function SiChai2({ title = "Chai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.2235 5.8311 12.2307.0619a.4617.4617 0 0 0-.4615 0L1.7765 5.8311a.4615.4615 0 0 0-.2308.3997v11.5385c0 .1649.088.3173.2308.3997l9.9928 5.7692a.4617.4617 0 0 0 .4615 0l9.9928-5.7692a.4615.4615 0 0 0 .2308-.3997V6.2308a.4618.4618 0 0 0-.2309-.3997zm-.6304 11.7074L12 23.0769l-9.5931-5.5385V6.4615L12 .9231l9.5931 5.5385v11.0769zM11.2957 8.1858c.3873-.2769.7918-.4965 1.2137-.6588s.8427-.2434 1.2624-.2434c.2596 0 .5019.0379.7269.1136.225.0757.4197.185.5841.3278s.2942.3202.3894.5322c.0952.212.1428.4543.1428.7269 0 .3288-.0649.6555-.1947.98-.1298.3245-.304.6252-.5225.9022s-.4706.5192-.7561.7269-.582.357-.8892.4478l-.1363-.2272a2.0872 2.0872 0 0 0 .4998-.3505 2.2747 2.2747 0 0 0 .3894-.4835c.1082-.1796.1915-.37.2499-.5712a2.1893 2.1893 0 0 0 .0876-.6133c0-.238-.0346-.463-.1038-.675-.0692-.212-.1709-.397-.305-.5549-.1341-.1579-.2996-.2823-.4965-.3732-.1969-.0909-.423-.1363-.6782-.1363-.3115 0-.5971.0606-.8567.1817-.2596.1212-.4933.2845-.701.49s-.3883.4413-.5419.7075a4.874 4.874 0 0 0-.3829.8373 5.6168 5.6168 0 0 0-.2304.8859c-.0519.2986-.0779.5798-.0779.8438 0 .2683.0281.5452.0844.8308s.1385.5668.2466.8438c.1082.2769.2423.5387.4024.7853.1601.2466.3451.463.5549.649a2.583 2.583 0 0 0 .701.4446c.2575.1103.5376.1655.8405.1655.2077 0 .41-.0281.6069-.0844a2.9874 2.9874 0 0 0 .5679-.2272 3.2094 3.2094 0 0 0 .516-.3375 3.9668 3.9668 0 0 0 .4511-.4219l.2142.2077c-.1904.251-.4165.4922-.6782.7237a5.5434 5.5434 0 0 1-.847.6166 4.6241 4.6241 0 0 1-.9508.4284c-.331.106-.6588.159-.9833.159-.3159 0-.6133-.0552-.8924-.1655-.2791-.1103-.5355-.2596-.7691-.4478s-.4424-.4089-.6263-.662c-.1839-.2531-.3397-.5225-.4673-.8081s-.225-.5798-.2921-.8827-.101-.5992-.101-.8891c0-.4197.0703-.8513.2109-1.2948s.3343-.874.5809-1.2916.5376-.8124.873-1.1845c.3353-.3721.6966-.6967 1.0839-.9736z" }) + ] + } + ); +}); + +exports.default = SiChai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChai.d.ts new file mode 100644 index 000000000..89a8e8784 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A30701"; +declare const SiChai: IconType; +export { SiChai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChai.mjs new file mode 100644 index 000000000..c9bd2d8e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A30701"; +const SiChai = React.forwardRef(function SiChai2({ title = "Chai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.2235 5.8311 12.2307.0619a.4617.4617 0 0 0-.4615 0L1.7765 5.8311a.4615.4615 0 0 0-.2308.3997v11.5385c0 .1649.088.3173.2308.3997l9.9928 5.7692a.4617.4617 0 0 0 .4615 0l9.9928-5.7692a.4615.4615 0 0 0 .2308-.3997V6.2308a.4618.4618 0 0 0-.2309-.3997zm-.6304 11.7074L12 23.0769l-9.5931-5.5385V6.4615L12 .9231l9.5931 5.5385v11.0769zM11.2957 8.1858c.3873-.2769.7918-.4965 1.2137-.6588s.8427-.2434 1.2624-.2434c.2596 0 .5019.0379.7269.1136.225.0757.4197.185.5841.3278s.2942.3202.3894.5322c.0952.212.1428.4543.1428.7269 0 .3288-.0649.6555-.1947.98-.1298.3245-.304.6252-.5225.9022s-.4706.5192-.7561.7269-.582.357-.8892.4478l-.1363-.2272a2.0872 2.0872 0 0 0 .4998-.3505 2.2747 2.2747 0 0 0 .3894-.4835c.1082-.1796.1915-.37.2499-.5712a2.1893 2.1893 0 0 0 .0876-.6133c0-.238-.0346-.463-.1038-.675-.0692-.212-.1709-.397-.305-.5549-.1341-.1579-.2996-.2823-.4965-.3732-.1969-.0909-.423-.1363-.6782-.1363-.3115 0-.5971.0606-.8567.1817-.2596.1212-.4933.2845-.701.49s-.3883.4413-.5419.7075a4.874 4.874 0 0 0-.3829.8373 5.6168 5.6168 0 0 0-.2304.8859c-.0519.2986-.0779.5798-.0779.8438 0 .2683.0281.5452.0844.8308s.1385.5668.2466.8438c.1082.2769.2423.5387.4024.7853.1601.2466.3451.463.5549.649a2.583 2.583 0 0 0 .701.4446c.2575.1103.5376.1655.8405.1655.2077 0 .41-.0281.6069-.0844a2.9874 2.9874 0 0 0 .5679-.2272 3.2094 3.2094 0 0 0 .516-.3375 3.9668 3.9668 0 0 0 .4511-.4219l.2142.2077c-.1904.251-.4165.4922-.6782.7237a5.5434 5.5434 0 0 1-.847.6166 4.6241 4.6241 0 0 1-.9508.4284c-.331.106-.6588.159-.9833.159-.3159 0-.6133-.0552-.8924-.1655-.2791-.1103-.5355-.2596-.7691-.4478s-.4424-.4089-.6263-.662c-.1839-.2531-.3397-.5225-.4673-.8081s-.225-.5798-.2921-.8827-.101-.5992-.101-.8891c0-.4197.0703-.8513.2109-1.2948s.3343-.874.5809-1.2916.5376-.8124.873-1.1845c.3353-.3721.6966-.6967 1.0839-.9736z" }) + ] + } + ); +}); + +export { SiChai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.cjs new file mode 100644 index 000000000..8d45bc95f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4445E7"; +const SiChainguard = React__namespace.forwardRef(function SiChainguard2({ title = "Chainguard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9962 16.329c-.1088-1.123-3.3873-1.488-5.717-2.501.5096-1.0168 1.2826-2.168.9488-4.2865C18.7817 6.7253 16.3572 1.741 12 1.741c-4.3571 0-6.7817 4.9807-7.228 7.8005-.3338 2.1184.4428 3.2697.9488 4.2864-2.3262 1.0132-5.6046 1.3816-5.717 2.501-.102 1.038 1.8904 1.417 4.1357 1.2824-.5657.6908-1.0084 1.3461-.9733 1.8173.0562.79.896 1.3036 2.2207 1.3036 1.4829 0 3.774-.9388 4.3186-3.4751 0 0-.225 1.0166-.102 1.9908.1476 1.162 1.019 3.0111 2.3965 3.0111 1.3774 0 2.2489-1.8492 2.3964-3.0111.123-.9742-.1018-1.9909-.1018-1.9909.5446 2.5364 2.8321 3.4752 4.3185 3.4752 1.3247 0 2.1645-.5137 2.2207-1.3036.0352-.4712-.411-1.13-.9733-1.8173 2.2453.1346 4.2377-.2445 4.1358-1.2824zM7.4355 5.953c-.26-.2232-.1897-.705.1547-1.077.3443-.3719.8362-.4959 1.0962-.2727s.1898.705-.1545 1.077c-.3444.3719-.8363.4923-1.0964.2727Zm2.3719 6.419c-1.0717 0-1.9397-.875-1.9397-1.9555s.868-1.9555 1.9397-1.9555c1.0717 0 1.9396.875 1.9396 1.9555 0 1.077-.868 1.9554-1.9396 1.9554zm1.1841-7.7014c-.7555.34-1.5601.2232-1.799-.2586-.239-.4853.1792-1.1513.9346-1.4914.7555-.34 1.5602-.2232 1.7991.2586.239.4818-.1792 1.1513-.9347 1.4914Zm5.218 7.7013c-1.0716 0-1.9396-.875-1.9396-1.9554 0-1.0805.868-1.9555 1.9397-1.9555 1.0717 0 1.9397.875 1.9397 1.9555 0 1.077-.868 1.9554-1.9397 1.9554zm.1582-1.9696.7133-.8466a1.2052 1.2052 0 0 0-.8714-.372c-.6746 0-1.2193.5491-1.2193 1.2293 0 .6801.5447 1.2292 1.2193 1.2292.6747 0 1.2193-.5491 1.2193-1.2292v-.0107zm-5.3445 0v.0107c0 .6802-.5447 1.2292-1.2194 1.2292-.6746 0-1.2192-.549-1.2192-1.2292 0-.6801.5446-1.2292 1.2192-1.2292.3409 0 .65.1417.8715.372l-.7133.8466Z" }) + ] + } + ); +}); + +exports.default = SiChainguard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.d.ts new file mode 100644 index 000000000..1aa2897ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4445E7"; +declare const SiChainguard: IconType; +export { SiChainguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.mjs new file mode 100644 index 000000000..b65d4909a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChainguard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4445E7"; +const SiChainguard = React.forwardRef(function SiChainguard2({ title = "Chainguard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9962 16.329c-.1088-1.123-3.3873-1.488-5.717-2.501.5096-1.0168 1.2826-2.168.9488-4.2865C18.7817 6.7253 16.3572 1.741 12 1.741c-4.3571 0-6.7817 4.9807-7.228 7.8005-.3338 2.1184.4428 3.2697.9488 4.2864-2.3262 1.0132-5.6046 1.3816-5.717 2.501-.102 1.038 1.8904 1.417 4.1357 1.2824-.5657.6908-1.0084 1.3461-.9733 1.8173.0562.79.896 1.3036 2.2207 1.3036 1.4829 0 3.774-.9388 4.3186-3.4751 0 0-.225 1.0166-.102 1.9908.1476 1.162 1.019 3.0111 2.3965 3.0111 1.3774 0 2.2489-1.8492 2.3964-3.0111.123-.9742-.1018-1.9909-.1018-1.9909.5446 2.5364 2.8321 3.4752 4.3185 3.4752 1.3247 0 2.1645-.5137 2.2207-1.3036.0352-.4712-.411-1.13-.9733-1.8173 2.2453.1346 4.2377-.2445 4.1358-1.2824zM7.4355 5.953c-.26-.2232-.1897-.705.1547-1.077.3443-.3719.8362-.4959 1.0962-.2727s.1898.705-.1545 1.077c-.3444.3719-.8363.4923-1.0964.2727Zm2.3719 6.419c-1.0717 0-1.9397-.875-1.9397-1.9555s.868-1.9555 1.9397-1.9555c1.0717 0 1.9396.875 1.9396 1.9555 0 1.077-.868 1.9554-1.9396 1.9554zm1.1841-7.7014c-.7555.34-1.5601.2232-1.799-.2586-.239-.4853.1792-1.1513.9346-1.4914.7555-.34 1.5602-.2232 1.7991.2586.239.4818-.1792 1.1513-.9347 1.4914Zm5.218 7.7013c-1.0716 0-1.9396-.875-1.9396-1.9554 0-1.0805.868-1.9555 1.9397-1.9555 1.0717 0 1.9397.875 1.9397 1.9555 0 1.077-.868 1.9554-1.9397 1.9554zm.1582-1.9696.7133-.8466a1.2052 1.2052 0 0 0-.8714-.372c-.6746 0-1.2193.5491-1.2193 1.2293 0 .6801.5447 1.2292 1.2193 1.2292.6747 0 1.2193-.5491 1.2193-1.2292v-.0107zm-5.3445 0v.0107c0 .6802-.5447 1.2292-1.2194 1.2292-.6746 0-1.2192-.549-1.2192-1.2292 0-.6801.5446-1.2292 1.2192-1.2292.3409 0 .65.1417.8715.372l-.7133.8466Z" }) + ] + } + ); +}); + +export { SiChainguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.cjs new file mode 100644 index 000000000..b228c9ffe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#375BD2"; +const SiChainlink = React__namespace.forwardRef(function SiChainlink2({ title = "Chainlink", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L9.798 1.266l-6 3.468L1.596 6v12l2.202 1.266 6.055 3.468L12.055 24l2.202-1.266 5.945-3.468L22.404 18V6l-2.202-1.266-6-3.468zM6 15.468V8.532l6-3.468 6 3.468v6.936l-6 3.468z" }) + ] + } + ); +}); + +exports.default = SiChainlink; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.d.ts new file mode 100644 index 000000000..d8dafa948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#375BD2"; +declare const SiChainlink: IconType; +export { SiChainlink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.mjs new file mode 100644 index 000000000..3884c7c48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChainlink.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#375BD2"; +const SiChainlink = React.forwardRef(function SiChainlink2({ title = "Chainlink", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L9.798 1.266l-6 3.468L1.596 6v12l2.202 1.266 6.055 3.468L12.055 24l2.202-1.266 5.945-3.468L22.404 18V6l-2.202-1.266-6-3.468zM6 15.468V8.532l6-3.468 6 3.468v6.936l-6 3.468z" }) + ] + } + ); +}); + +export { SiChainlink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.cjs new file mode 100644 index 000000000..acd6291a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BB2A9"; +const SiChakraui = React__namespace.forwardRef(function SiChakraui2({ title = "Chakra UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.678 1.583a3.492 3.492 0 0 0-3.03 1.76L.265 10.997a2.035 2.035 0 0 0-.064 1.886l4.486 7.784a3.493 3.493 0 0 0 3.03 1.751l8.602-.01a3.495 3.495 0 0 0 3.026-1.759l4.39-7.655a2.025 2.025 0 0 0-.002-2.008L19.339 3.34a3.494 3.494 0 0 0-3.028-1.756Zm4.365 1.244V9.11c0 .32.226.595.54.656l6.089 1.187c-2.005 3.466-4.006 6.934-6.008 10.4-.17.296-.62.176-.62-.166v-6.286a.667.667 0 0 0-.538-.656l-6.072-1.193 5.988-10.393c.168-.29.621-.178.621.168z" }) + ] + } + ); +}); + +exports.default = SiChakraui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.d.ts new file mode 100644 index 000000000..869731087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BB2A9"; +declare const SiChakraui: IconType; +export { SiChakraui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.mjs new file mode 100644 index 000000000..6c686377b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChakraui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BB2A9"; +const SiChakraui = React.forwardRef(function SiChakraui2({ title = "Chakra UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.678 1.583a3.492 3.492 0 0 0-3.03 1.76L.265 10.997a2.035 2.035 0 0 0-.064 1.886l4.486 7.784a3.493 3.493 0 0 0 3.03 1.751l8.602-.01a3.495 3.495 0 0 0 3.026-1.759l4.39-7.655a2.025 2.025 0 0 0-.002-2.008L19.339 3.34a3.494 3.494 0 0 0-3.028-1.756Zm4.365 1.244V9.11c0 .32.226.595.54.656l6.089 1.187c-2.005 3.466-4.006 6.934-6.008 10.4-.17.296-.62.176-.62-.166v-6.286a.667.667 0 0 0-.538-.656l-6.072-1.193 5.988-10.393c.168-.29.621-.178.621.168z" }) + ] + } + ); +}); + +export { SiChakraui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.cjs new file mode 100644 index 000000000..42a0144ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3056D3"; +const SiChangedetection = React__namespace.forwardRef(function SiChangedetection2({ title = "Change Detection", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.9535 7.662c-.0205-.0506-.1713-.1965-.1713-.1965l-.1134-.1182-1.8924-1.9745s-.1737-.1688-.216-.2014c-.0916-.0724-.24-.1074-.357-.1086-.1242 0-.316.134-.3932.2304-.0723.0917-.1326.2678-.0928.3775.0193.0543.1544.2232.1544.2232l1.3701 1.363-3.5545.0023-.2026-.0108s-.5018.0796-.6344.1242c-.1967.0675-.415.2195-.573.3534-.047.0398-.217.2316-.217.2316l-2.2809 2.6161.7213.7213 2.2169-2.4617s.1942-.199.2376-.234c.1447-.117.2991-.2364.48-.2799.0603-.0144.3281-.0253.3281-.0253h3.2952l-1.065 1.0904s-.158.199-.1737.234c-.0543.1121-.0712.3123-.0157.4233.0422.0832.1761.2256.269.2388.1242.017.2557.047.3642-.0169.0398-.024.1978-.1592.1978-.1592l2.1096-2.1095s.1628-.1315.193-.193c.0205-.041.035-.0989.018-.1423zM9.8919 12.74l-2.0662 2.37s-.2412.2485-.293.2931c-.1653.1412-.2413.1954-.4536.2823-.053.0217-.416.0663-.416.0663l-2.9105.0266s-.269.018-.3148.0265c-.1303.0253-.2606.129-.339.2207-.0952.111-.0711.369.0072.4933.0688.1074.2582.1834.3848.2002.0422.006.246.0157.246.0157h3.0794s.3823-.0386.4426-.0639c.3016-.1266.48-.228.7285-.4306.0869-.07.497-.4837.497-.4837l2.0962-2.3278zM3.4896 7.2797c.0423-.006.246-.0156.246-.0156H6.815s.3823.0386.4426.0639c.3016.1266.48.228.7286.4306.0868.07.4969.4836.4969.4836l6.2322 6.9221s.1942.199.2376.234c.1447.117.2991.2364.48.2799.0603.0144.328.0253.328.0253h3.2953l-1.065-1.0904s-.158-.199-.1737-.234c-.0543-.1121-.0712-.3124-.0157-.4233.0422-.0832.176-.2256.269-.2388.1242-.017.2557-.047.3642.0168.0398.0242.1978.1593.1978.1593l2.1096 2.1095s.1628.1315.193.193c.0205.041.035.099.018.1423-.0204.0507-.1712.1966-.1712.1966l-.1134.1182-1.8924 1.9745s-.1737.1689-.216.2014c-.0916.0724-.24.1074-.357.1086-.1242 0-.316-.134-.3932-.2304-.0723-.0917-.1326-.2678-.0928-.3775.0193-.0543.1544-.2232.1544-.2232l1.3701-1.363-3.5545-.0023-.2026.0108s-.5018-.0796-.6345-.1242c-.1966-.0675-.4149-.2195-.5729-.3534-.047-.0398-.217-.2316-.217-.2316l-6.2359-7.15s-.2412-.2485-.293-.2931c-.1653-.1411-.2413-.1954-.4536-.2822-.053-.0218-.416-.0664-.416-.0664l-2.9105-.0265s-.269-.0181-.3148-.0265c-.1303-.0254-.2606-.1291-.339-.2208-.0952-.111-.0711-.369.0072-.4933.0688-.1073.2582-.1833.3848-.2002zM12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm0 1.2954A10.7047 10.7047 0 0 1 22.7048 12 10.7047 10.7047 0 0 1 12 22.7048 10.7047 10.7047 0 0 1 1.2954 12 10.7047 10.7047 0 0 1 12 1.2954Z" }) + ] + } + ); +}); + +exports.default = SiChangedetection; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.d.ts new file mode 100644 index 000000000..5904ca137 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3056D3"; +declare const SiChangedetection: IconType; +export { SiChangedetection as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.mjs new file mode 100644 index 000000000..376cccde8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChangedetection.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3056D3"; +const SiChangedetection = React.forwardRef(function SiChangedetection2({ title = "Change Detection", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.9535 7.662c-.0205-.0506-.1713-.1965-.1713-.1965l-.1134-.1182-1.8924-1.9745s-.1737-.1688-.216-.2014c-.0916-.0724-.24-.1074-.357-.1086-.1242 0-.316.134-.3932.2304-.0723.0917-.1326.2678-.0928.3775.0193.0543.1544.2232.1544.2232l1.3701 1.363-3.5545.0023-.2026-.0108s-.5018.0796-.6344.1242c-.1967.0675-.415.2195-.573.3534-.047.0398-.217.2316-.217.2316l-2.2809 2.6161.7213.7213 2.2169-2.4617s.1942-.199.2376-.234c.1447-.117.2991-.2364.48-.2799.0603-.0144.3281-.0253.3281-.0253h3.2952l-1.065 1.0904s-.158.199-.1737.234c-.0543.1121-.0712.3123-.0157.4233.0422.0832.1761.2256.269.2388.1242.017.2557.047.3642-.0169.0398-.024.1978-.1592.1978-.1592l2.1096-2.1095s.1628-.1315.193-.193c.0205-.041.035-.0989.018-.1423zM9.8919 12.74l-2.0662 2.37s-.2412.2485-.293.2931c-.1653.1412-.2413.1954-.4536.2823-.053.0217-.416.0663-.416.0663l-2.9105.0266s-.269.018-.3148.0265c-.1303.0253-.2606.129-.339.2207-.0952.111-.0711.369.0072.4933.0688.1074.2582.1834.3848.2002.0422.006.246.0157.246.0157h3.0794s.3823-.0386.4426-.0639c.3016-.1266.48-.228.7285-.4306.0869-.07.497-.4837.497-.4837l2.0962-2.3278zM3.4896 7.2797c.0423-.006.246-.0156.246-.0156H6.815s.3823.0386.4426.0639c.3016.1266.48.228.7286.4306.0868.07.4969.4836.4969.4836l6.2322 6.9221s.1942.199.2376.234c.1447.117.2991.2364.48.2799.0603.0144.328.0253.328.0253h3.2953l-1.065-1.0904s-.158-.199-.1737-.234c-.0543-.1121-.0712-.3124-.0157-.4233.0422-.0832.176-.2256.269-.2388.1242-.017.2557-.047.3642.0168.0398.0242.1978.1593.1978.1593l2.1096 2.1095s.1628.1315.193.193c.0205.041.035.099.018.1423-.0204.0507-.1712.1966-.1712.1966l-.1134.1182-1.8924 1.9745s-.1737.1689-.216.2014c-.0916.0724-.24.1074-.357.1086-.1242 0-.316-.134-.3932-.2304-.0723-.0917-.1326-.2678-.0928-.3775.0193-.0543.1544-.2232.1544-.2232l1.3701-1.363-3.5545-.0023-.2026.0108s-.5018-.0796-.6345-.1242c-.1966-.0675-.4149-.2195-.5729-.3534-.047-.0398-.217-.2316-.217-.2316l-6.2359-7.15s-.2412-.2485-.293-.2931c-.1653-.1411-.2413-.1954-.4536-.2822-.053-.0218-.416-.0664-.416-.0664l-2.9105-.0265s-.269-.0181-.3148-.0265c-.1303-.0254-.2606-.1291-.339-.2208-.0952-.111-.0711-.369.0072-.4933.0688-.1073.2582-.1833.3848-.2002zM12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm0 1.2954A10.7047 10.7047 0 0 1 22.7048 12 10.7047 10.7047 0 0 1 12 22.7048 10.7047 10.7047 0 0 1 1.2954 12 10.7047 10.7047 0 0 1 12 1.2954Z" }) + ] + } + ); +}); + +export { SiChangedetection as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.cjs new file mode 100644 index 000000000..a52503caa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AAFF89"; +const SiChannel4 = React__namespace.forwardRef(function SiChannel42({ title = "Channel 4", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.309 0-.33.412v4.201l2.382-2.95zm-1.155 1.201L10.707 4.22v8.674h2.447zm3.268 1.701-2.443 3.02v14.81h2.443zM9.887 5.236l-6.201 7.657h3.142L9.887 9.12Zm-6.766 8.48v2.444h10.033v-2.443Zm14.125 0v2.444h3.633v-2.443Zm-6.539 3.268V24h2.443v-7.016Zm-3.271 4.573V24h2.443v-2.443zm6.543 0V24h5.189v-2.443z" }) + ] + } + ); +}); + +exports.default = SiChannel4; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.d.ts new file mode 100644 index 000000000..401ef834a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AAFF89"; +declare const SiChannel4: IconType; +export { SiChannel4 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.mjs new file mode 100644 index 000000000..13f21f650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChannel4.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AAFF89"; +const SiChannel4 = React.forwardRef(function SiChannel42({ title = "Channel 4", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.309 0-.33.412v4.201l2.382-2.95zm-1.155 1.201L10.707 4.22v8.674h2.447zm3.268 1.701-2.443 3.02v14.81h2.443zM9.887 5.236l-6.201 7.657h3.142L9.887 9.12Zm-6.766 8.48v2.444h10.033v-2.443Zm14.125 0v2.444h3.633v-2.443Zm-6.539 3.268V24h2.443v-7.016Zm-3.271 4.573V24h2.443v-2.443zm6.543 0V24h5.189v-2.443z" }) + ] + } + ); +}); + +export { SiChannel4 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.cjs new file mode 100644 index 000000000..7c572d004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F3F5F5"; +const SiCharles = React__namespace.forwardRef(function SiCharles2({ title = "Charles", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.494.713c-.103.011-.385.049-.623.076-.24.028-.705.11-1.04.175l-.61.122-.883-.132C5.706.713 3.694.74 2.252 1.02c-1.464.278-2.45.802-2.218 1.173.033.055.358.34.72.634 1.536 1.24 2.296 2.18 2.734 3.398.228.633.31 1.114.304 1.885-.005.901-.114 1.376-.732 3.24-.27.813-.564 1.802-.65 2.194-.142.65-.158.804-.158 1.749 0 1.022.043 1.431.24 2.245a6.588 6.588 0 0 0 1.896 3.218c.337.306.45.442.43.518-.05.175.09.475.32.71.584.59 1.886 1.093 3.27 1.257.71.087 2.18.076 2.862-.022.53-.076 1.47-.301 1.746-.41.59-.24 1.117-.557 1.383-.83.444-.453.45-.464.417-.732-.032-.224-.022-.246.168-.388.255-.19 1.07-1.017 1.29-1.306.2-.262.576-.906.69-1.19.103-.24.14-.246.31-.066.367.394 1.12.721 1.528.667.352-.05.596-.361.406-.52-.037-.032-.265-.14-.51-.245a4.335 4.082 0 0 1-.64-.339l-.2-.158.022-.41c.032-.71.25-1.022 1.93-2.78 1.345-1.41 1.595-1.694 2.148-2.442.58-.782.884-1.278 1.247-2.049.727-1.551.976-3.239.662-4.485-.5-1.982-2.392-3.468-4.398-3.452-1.128.006-2.093.427-3.107 1.35-.575.524-.69.475-.526-.213.097-.432.08-.629-.082-.956-.325-.65-1.6-1.262-3.064-1.476-.46-.066-1.876-.114-2.196-.075zm9.962 3.02c1.106.34 2.022 1.29 2.326 2.41.2.753.054 2.141-.342 3.223a11.632 10.954 0 0 1-1.014 1.978c-.33.501-1.3 1.704-1.85 2.283a43.744 41.193 0 0 0-1.512 1.682c-.303.36-.51.557-.57.546-.075-.016-.09-.141-.118-.89a19.086 17.973 0 0 0-.917-4.916c-.206-.59-.26-.951-.157-1.016.043-.028.314-.05.602-.05.336 0 .537-.021.564-.06.022-.037-.13-.23-.374-.464-.423-.41-.586-.66-.722-1.11-.168-.556-.032-1.458.304-2.052.477-.836 1.388-1.503 2.283-1.661.4-.072 1.09-.028 1.497.098M11.569 7.34c.098.033.25.115.342.192.12.103.2.13.31.109.226-.05.747.207.866.414.05.094.136.224.19.29.08.098.098.175.07.4-.026.24-.01.31.104.48a.76.76 0 0 1 .135.442c0 .192.016.236.082.213a.178.168 0 0 0 .08-.136c0-.197.158-.486.294-.547a.774.774 0 0 1 .38-.027c.227.038.25.05.227.175-.016.076.01.17.06.213.076.082.076.092-.017.164-.092.066-.097.093-.038.245.066.176.066.176-.086.149-.087-.017-.168-.023-.185-.006-.016.016.017.202.076.41.136.486.13.622-.027 1.054-.103.29-.12.404-.08.59.08.431.053 1.572-.06 2.283a14.166 13.34 0 0 1-.38 1.72c-.228.798-.483 2.279-.472 2.743.005.246.027.459.043.476.016.016.125-.104.233-.263.24-.35.45-.525.852-.705.162-.071.34-.185.396-.25.157-.176.254-.153.195.048-.027.088-.033.164-.022.164.016 0-.016.066-.076.153-.054.082-.13.257-.168.393-.038.137-.12.317-.18.4-.08.114-.091.174-.048.218.044.043.14-.028.37-.268.346-.355.53-.579.563-.666.043-.115.602-.667.645-.64.027.017.06.006.082-.027.086-.141.12-.016.114.4l-.01.447-.294.323a56 56 0 0 1-.786.84c-.266.28-.624.662-.787.841a4.493 4.231 0 0 1-.596.536c-.298.202-.927.447-1.33.525a2.851 2.851 0 0 0-.324.066c-.255.059-2.863.07-3.525.009a31.86 30.002 0 0 0-.873-.075.816.768 0 0 1-.217-.045.532.501 0 0 0-.21-.033c-.52-.01-.94-.114-1.227-.31-.114-.077-.27-.137-.347-.137-.076 0-.135-.028-.135-.055 0-.032-.038-.054-.082-.054-.043 0-.08-.028-.08-.055 0-.033-.028-.054-.06-.054-.066 0-.288-.198-.608-.542-.125-.13-.31-.322-.4-.42-.1-.099-.18-.198-.18-.218 0-.029-.05-.094-.11-.158-.216-.23-.324-.356-.297-.356.01 0-.027-.104-.08-.23-.213-.47-.088-.508.19-.07.107.163.226.3.264.3.103 0 .336.284.494.601.07.142.255.393.4.562l.278.302.233-.056c.124-.033.25-.082.276-.103.065-.06-.18-.4-.667-.923-.4-.432-.504-.607-.325-.563.06.016.12.049.13.076.016.022.114.028.212.011a.994.936 0 0 1 .433.055c.206.07.25.07.25.01 0-.043-.022-.092-.054-.109-.028-.016-.044-.11-.033-.207a.732.69 0 0 0-.184-.476c-.017-.016-.033-.115-.044-.218l-.016-.186.152.137c.087.076.233.175.33.213.098.037.25.153.33.257.148.175.169.185.39.152.132-.021.257-.049.278-.059.033-.023.3.087.602.24.022.01.038 0 .038-.028 0-.026-.087-.092-.19-.141-.238-.115-.238-.186-.005-.23.222-.043.347-.01.72.18.305.153.419.137.26-.044-.123-.14-.07-.3.072-.212.18.114.293.393.282.71-.01.41-.01.405.114.29.07-.066.097-.137.076-.214-.212-.716-.25-1.01-.288-2.19l-.01-.285-.18.066a3.12 3.12 0 0 0-.44.218c-.33.197-.622.23-1.007.12-.163-.043-.43-.12-.59-.164-.164-.044-.316-.115-.338-.153-.103-.158-.113-.42-.027-.546.12-.17.11-.208-.07-.208-.08 0-.222-.021-.31-.049a2.013 1.896 0 0 0-.39-.082 1.48 1.394 0 0 1-.276-.054c-.022-.018-.224-.044-.446-.066-.217-.016-.428-.06-.466-.088-.076-.06-.054-.19.06-.42.048-.093.075-.17.054-.17-.022 0 0-.037.038-.092a.316.298 0 0 0 .07-.12c-.032-.142.37-.88.548-1.022.18-.136.537-.235.835-.24h.19l-.14-.153c-.29-.306-.375-.568-.36-1.104.017-.628.05-.661.755-.786.72-.132.894-.082 1.247.35.087.103.12.12.14.06.06-.159.283-.334.413-.334.076 0 .304.099.504.218.206.121.396.219.43.219.107.006.487.339.633.552.14.218.21.536.222 1.017 0 .19.033.282.125.365.157.147.217.36.233.808.01.323 0 .382-.114.497-.135.137-.553.236-.743.176-.12-.038-.146.097-.195 1.01-.05.895.076 1.945.288 2.43l.157.368.206-.225.206-.225.087.132c.076.11.108.126.195.076.12-.06.293-.262.298-.333 0-.027-.027-.027-.054-.011-.033.017-.054.006-.054-.027 0-.032-.033-.055-.065-.05-.125.018-.423-.07-.423-.125 0-.028-.022-.037-.054-.017-.066.045-.49-.343-.49-.447 0-.066.018-.071.077-.022.044.038.136.05.212.033.087-.022.195.005.314.076.38.235.418.126.082-.223-.27-.29-.347-.48-.44-1.126-.027-.19.05-.235.13-.071.033.054.17.158.304.224.353.175.727.655.922 1.196.157.438.25.53.418.438.05-.029.103-.143.124-.252.022-.115.136-.497.25-.852.266-.787.325-1.3.184-1.459-.07-.082-.157-.109-.33-.098-.402.01-.64-.24-.722-.781-.054-.34-.005-.371.537-.394.44-.021.602.05.84.367.12.163.142.235.12.425-.11.951-.168 1.29-.315 1.82-.092.327-.18.7-.195.813-.027.192-.022.207.07.17.06-.028.207-.055.337-.071l.233-.022-.173.245c-.217.312-.19.4.12.39.178-.007.232-.03.243-.11.005-.06.027-.263.043-.46.033-.327.13-.764.418-1.857.06-.224.14-.546.18-.71.042-.164.096-.36.123-.437.093-.23.244-1.092.342-1.928.05-.426.038-1.224-.022-1.278-.06-.06-.146.279-.103.393.06.136.055.18-.108.945-.103.48-.157.64-.255.71-.065.049-.19.158-.277.246-.086.082-.2.148-.254.148-.098-.006-.337-.34-.472-.673-.044-.109-.103-.207-.136-.228-.12-.078-.282-.793-.26-1.153.022-.382.005-.405-.255-.257-.32.18-1.49.06-1.535-.158-.005-.045.066-.187.17-.323.275-.366.427-.857.313-1-.05-.054-.038-.081.033-.114.092-.033.092-.038.005-.088-.157-.088-.108-.147.11-.141.194.01.2.004.21-.198.01-.223.184-.55.315-.605.054-.017.08-.11.08-.263 0-.18-.015-.213-.064-.164-.12.12-.45.076-.63-.088a1.98 1.865 0 0 0-.363-.256c-.2-.103-.27-.19-.683-.842a5.034 4.74 0 0 0-.396-.518c-.108-.114-.19-.235-.18-.273.018-.038.169-.055.45-.044.235.006.625-.022.864-.066.542-.092.764-.103.992-.038m-3.427.41c.07.055.18.07.325.05.2-.028.233-.017.266.087.027.087-.01.18-.152.349-.173.213-.396.35-1.014.634-.466.213-.586.322-.634.552-.027.136-.082.196-.255.273-.125.054-.26.141-.304.202-.157.196-.526.754-.613.917-.076.148-.336.443-.547.612a.328.309 0 0 1-.196.071c-.097 0-.108-.038-.12-.344a35.512 33.441 0 0 0-.021-.541c-.005-.223.098-.426.228-.426.103 0 .098-.087-.005-.132-.12-.043-.098-.305.043-.518l.206-.327a.302.284 0 0 1 .255-.16c.2-.021.195-.004.098-.207a1.672 1.574 0 0 1-.114-.306l-.038-.14.238.08c.125.044.255.104.288.132.087.087.135.055.135-.094 0-.136.028-.169.472-.535.255-.202.575-.295.7-.191.054.044.097.044.146.005.033-.033.152-.065.255-.081.103-.01.206-.028.222-.028.017-.005.076.022.136.066" }) + ] + } + ); +}); + +exports.default = SiCharles; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.d.ts new file mode 100644 index 000000000..6abb4f705 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F3F5F5"; +declare const SiCharles: IconType; +export { SiCharles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.mjs new file mode 100644 index 000000000..8a378f1cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCharles.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F3F5F5"; +const SiCharles = React.forwardRef(function SiCharles2({ title = "Charles", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.494.713c-.103.011-.385.049-.623.076-.24.028-.705.11-1.04.175l-.61.122-.883-.132C5.706.713 3.694.74 2.252 1.02c-1.464.278-2.45.802-2.218 1.173.033.055.358.34.72.634 1.536 1.24 2.296 2.18 2.734 3.398.228.633.31 1.114.304 1.885-.005.901-.114 1.376-.732 3.24-.27.813-.564 1.802-.65 2.194-.142.65-.158.804-.158 1.749 0 1.022.043 1.431.24 2.245a6.588 6.588 0 0 0 1.896 3.218c.337.306.45.442.43.518-.05.175.09.475.32.71.584.59 1.886 1.093 3.27 1.257.71.087 2.18.076 2.862-.022.53-.076 1.47-.301 1.746-.41.59-.24 1.117-.557 1.383-.83.444-.453.45-.464.417-.732-.032-.224-.022-.246.168-.388.255-.19 1.07-1.017 1.29-1.306.2-.262.576-.906.69-1.19.103-.24.14-.246.31-.066.367.394 1.12.721 1.528.667.352-.05.596-.361.406-.52-.037-.032-.265-.14-.51-.245a4.335 4.082 0 0 1-.64-.339l-.2-.158.022-.41c.032-.71.25-1.022 1.93-2.78 1.345-1.41 1.595-1.694 2.148-2.442.58-.782.884-1.278 1.247-2.049.727-1.551.976-3.239.662-4.485-.5-1.982-2.392-3.468-4.398-3.452-1.128.006-2.093.427-3.107 1.35-.575.524-.69.475-.526-.213.097-.432.08-.629-.082-.956-.325-.65-1.6-1.262-3.064-1.476-.46-.066-1.876-.114-2.196-.075zm9.962 3.02c1.106.34 2.022 1.29 2.326 2.41.2.753.054 2.141-.342 3.223a11.632 10.954 0 0 1-1.014 1.978c-.33.501-1.3 1.704-1.85 2.283a43.744 41.193 0 0 0-1.512 1.682c-.303.36-.51.557-.57.546-.075-.016-.09-.141-.118-.89a19.086 17.973 0 0 0-.917-4.916c-.206-.59-.26-.951-.157-1.016.043-.028.314-.05.602-.05.336 0 .537-.021.564-.06.022-.037-.13-.23-.374-.464-.423-.41-.586-.66-.722-1.11-.168-.556-.032-1.458.304-2.052.477-.836 1.388-1.503 2.283-1.661.4-.072 1.09-.028 1.497.098M11.569 7.34c.098.033.25.115.342.192.12.103.2.13.31.109.226-.05.747.207.866.414.05.094.136.224.19.29.08.098.098.175.07.4-.026.24-.01.31.104.48a.76.76 0 0 1 .135.442c0 .192.016.236.082.213a.178.168 0 0 0 .08-.136c0-.197.158-.486.294-.547a.774.774 0 0 1 .38-.027c.227.038.25.05.227.175-.016.076.01.17.06.213.076.082.076.092-.017.164-.092.066-.097.093-.038.245.066.176.066.176-.086.149-.087-.017-.168-.023-.185-.006-.016.016.017.202.076.41.136.486.13.622-.027 1.054-.103.29-.12.404-.08.59.08.431.053 1.572-.06 2.283a14.166 13.34 0 0 1-.38 1.72c-.228.798-.483 2.279-.472 2.743.005.246.027.459.043.476.016.016.125-.104.233-.263.24-.35.45-.525.852-.705.162-.071.34-.185.396-.25.157-.176.254-.153.195.048-.027.088-.033.164-.022.164.016 0-.016.066-.076.153-.054.082-.13.257-.168.393-.038.137-.12.317-.18.4-.08.114-.091.174-.048.218.044.043.14-.028.37-.268.346-.355.53-.579.563-.666.043-.115.602-.667.645-.64.027.017.06.006.082-.027.086-.141.12-.016.114.4l-.01.447-.294.323a56 56 0 0 1-.786.84c-.266.28-.624.662-.787.841a4.493 4.231 0 0 1-.596.536c-.298.202-.927.447-1.33.525a2.851 2.851 0 0 0-.324.066c-.255.059-2.863.07-3.525.009a31.86 30.002 0 0 0-.873-.075.816.768 0 0 1-.217-.045.532.501 0 0 0-.21-.033c-.52-.01-.94-.114-1.227-.31-.114-.077-.27-.137-.347-.137-.076 0-.135-.028-.135-.055 0-.032-.038-.054-.082-.054-.043 0-.08-.028-.08-.055 0-.033-.028-.054-.06-.054-.066 0-.288-.198-.608-.542-.125-.13-.31-.322-.4-.42-.1-.099-.18-.198-.18-.218 0-.029-.05-.094-.11-.158-.216-.23-.324-.356-.297-.356.01 0-.027-.104-.08-.23-.213-.47-.088-.508.19-.07.107.163.226.3.264.3.103 0 .336.284.494.601.07.142.255.393.4.562l.278.302.233-.056c.124-.033.25-.082.276-.103.065-.06-.18-.4-.667-.923-.4-.432-.504-.607-.325-.563.06.016.12.049.13.076.016.022.114.028.212.011a.994.936 0 0 1 .433.055c.206.07.25.07.25.01 0-.043-.022-.092-.054-.109-.028-.016-.044-.11-.033-.207a.732.69 0 0 0-.184-.476c-.017-.016-.033-.115-.044-.218l-.016-.186.152.137c.087.076.233.175.33.213.098.037.25.153.33.257.148.175.169.185.39.152.132-.021.257-.049.278-.059.033-.023.3.087.602.24.022.01.038 0 .038-.028 0-.026-.087-.092-.19-.141-.238-.115-.238-.186-.005-.23.222-.043.347-.01.72.18.305.153.419.137.26-.044-.123-.14-.07-.3.072-.212.18.114.293.393.282.71-.01.41-.01.405.114.29.07-.066.097-.137.076-.214-.212-.716-.25-1.01-.288-2.19l-.01-.285-.18.066a3.12 3.12 0 0 0-.44.218c-.33.197-.622.23-1.007.12-.163-.043-.43-.12-.59-.164-.164-.044-.316-.115-.338-.153-.103-.158-.113-.42-.027-.546.12-.17.11-.208-.07-.208-.08 0-.222-.021-.31-.049a2.013 1.896 0 0 0-.39-.082 1.48 1.394 0 0 1-.276-.054c-.022-.018-.224-.044-.446-.066-.217-.016-.428-.06-.466-.088-.076-.06-.054-.19.06-.42.048-.093.075-.17.054-.17-.022 0 0-.037.038-.092a.316.298 0 0 0 .07-.12c-.032-.142.37-.88.548-1.022.18-.136.537-.235.835-.24h.19l-.14-.153c-.29-.306-.375-.568-.36-1.104.017-.628.05-.661.755-.786.72-.132.894-.082 1.247.35.087.103.12.12.14.06.06-.159.283-.334.413-.334.076 0 .304.099.504.218.206.121.396.219.43.219.107.006.487.339.633.552.14.218.21.536.222 1.017 0 .19.033.282.125.365.157.147.217.36.233.808.01.323 0 .382-.114.497-.135.137-.553.236-.743.176-.12-.038-.146.097-.195 1.01-.05.895.076 1.945.288 2.43l.157.368.206-.225.206-.225.087.132c.076.11.108.126.195.076.12-.06.293-.262.298-.333 0-.027-.027-.027-.054-.011-.033.017-.054.006-.054-.027 0-.032-.033-.055-.065-.05-.125.018-.423-.07-.423-.125 0-.028-.022-.037-.054-.017-.066.045-.49-.343-.49-.447 0-.066.018-.071.077-.022.044.038.136.05.212.033.087-.022.195.005.314.076.38.235.418.126.082-.223-.27-.29-.347-.48-.44-1.126-.027-.19.05-.235.13-.071.033.054.17.158.304.224.353.175.727.655.922 1.196.157.438.25.53.418.438.05-.029.103-.143.124-.252.022-.115.136-.497.25-.852.266-.787.325-1.3.184-1.459-.07-.082-.157-.109-.33-.098-.402.01-.64-.24-.722-.781-.054-.34-.005-.371.537-.394.44-.021.602.05.84.367.12.163.142.235.12.425-.11.951-.168 1.29-.315 1.82-.092.327-.18.7-.195.813-.027.192-.022.207.07.17.06-.028.207-.055.337-.071l.233-.022-.173.245c-.217.312-.19.4.12.39.178-.007.232-.03.243-.11.005-.06.027-.263.043-.46.033-.327.13-.764.418-1.857.06-.224.14-.546.18-.71.042-.164.096-.36.123-.437.093-.23.244-1.092.342-1.928.05-.426.038-1.224-.022-1.278-.06-.06-.146.279-.103.393.06.136.055.18-.108.945-.103.48-.157.64-.255.71-.065.049-.19.158-.277.246-.086.082-.2.148-.254.148-.098-.006-.337-.34-.472-.673-.044-.109-.103-.207-.136-.228-.12-.078-.282-.793-.26-1.153.022-.382.005-.405-.255-.257-.32.18-1.49.06-1.535-.158-.005-.045.066-.187.17-.323.275-.366.427-.857.313-1-.05-.054-.038-.081.033-.114.092-.033.092-.038.005-.088-.157-.088-.108-.147.11-.141.194.01.2.004.21-.198.01-.223.184-.55.315-.605.054-.017.08-.11.08-.263 0-.18-.015-.213-.064-.164-.12.12-.45.076-.63-.088a1.98 1.865 0 0 0-.363-.256c-.2-.103-.27-.19-.683-.842a5.034 4.74 0 0 0-.396-.518c-.108-.114-.19-.235-.18-.273.018-.038.169-.055.45-.044.235.006.625-.022.864-.066.542-.092.764-.103.992-.038m-3.427.41c.07.055.18.07.325.05.2-.028.233-.017.266.087.027.087-.01.18-.152.349-.173.213-.396.35-1.014.634-.466.213-.586.322-.634.552-.027.136-.082.196-.255.273-.125.054-.26.141-.304.202-.157.196-.526.754-.613.917-.076.148-.336.443-.547.612a.328.309 0 0 1-.196.071c-.097 0-.108-.038-.12-.344a35.512 33.441 0 0 0-.021-.541c-.005-.223.098-.426.228-.426.103 0 .098-.087-.005-.132-.12-.043-.098-.305.043-.518l.206-.327a.302.284 0 0 1 .255-.16c.2-.021.195-.004.098-.207a1.672 1.574 0 0 1-.114-.306l-.038-.14.238.08c.125.044.255.104.288.132.087.087.135.055.135-.094 0-.136.028-.169.472-.535.255-.202.575-.295.7-.191.054.044.097.044.146.005.033-.033.152-.065.255-.081.103-.01.206-.028.222-.028.017-.005.076.022.136.066" }) + ] + } + ); +}); + +export { SiCharles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.cjs new file mode 100644 index 000000000..f9229b6b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6384"; +const SiChartdotjs = React__namespace.forwardRef(function SiChartdotjs2({ title = "Chart.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L1.605 6v12L12 24l10.395-6V6zm0 1.41l9.172 5.295v10.59L12 22.59l-9.172-5.295V6.705zM5.902 8.334c-1.306 0-1.983.956-2.574 2.41v6.262L12 22.014l8.672-5.008v-5.971c-.447-.264-.894-.412-1.336-.412-4.275 0-3.97 4.885-6.717 5.8-2.748.917-3.511-8.089-6.717-8.089zm12.364.457c-2.9 0-2.137 4.732-5.342 4.732-1.63 0-2.52-1.317-3.477-1.981.148.326.3.655.442.98.467 1.068.922 2.09 1.379 2.734.228.322.455.541.644.644a.595.595 0 0 0 .549.05c.558-.187.968-.571 1.36-1.112.39-.541.74-1.228 1.154-1.916.413-.688.894-1.385 1.59-1.918.695-.534 1.607-.881 2.77-.881.465 0 .908.136 1.337.352v-.121c-.633-.849-1.348-1.563-2.406-1.563zm-6.68.152c-.868 0-1.491.82-2.076 2.06.094.055.192.106.277.167 1.06.761 1.798 1.853 3.137 1.853.678 0 1.067-.218 1.418-.585-.722-1.546-1.432-3.492-2.756-3.495Z" }) + ] + } + ); +}); + +exports.default = SiChartdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.d.ts new file mode 100644 index 000000000..df611648d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6384"; +declare const SiChartdotjs: IconType; +export { SiChartdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.mjs new file mode 100644 index 000000000..3ad3de102 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChartdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6384"; +const SiChartdotjs = React.forwardRef(function SiChartdotjs2({ title = "Chart.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L1.605 6v12L12 24l10.395-6V6zm0 1.41l9.172 5.295v10.59L12 22.59l-9.172-5.295V6.705zM5.902 8.334c-1.306 0-1.983.956-2.574 2.41v6.262L12 22.014l8.672-5.008v-5.971c-.447-.264-.894-.412-1.336-.412-4.275 0-3.97 4.885-6.717 5.8-2.748.917-3.511-8.089-6.717-8.089zm12.364.457c-2.9 0-2.137 4.732-5.342 4.732-1.63 0-2.52-1.317-3.477-1.981.148.326.3.655.442.98.467 1.068.922 2.09 1.379 2.734.228.322.455.541.644.644a.595.595 0 0 0 .549.05c.558-.187.968-.571 1.36-1.112.39-.541.74-1.228 1.154-1.916.413-.688.894-1.385 1.59-1.918.695-.534 1.607-.881 2.77-.881.465 0 .908.136 1.337.352v-.121c-.633-.849-1.348-1.563-2.406-1.563zm-6.68.152c-.868 0-1.491.82-2.076 2.06.094.055.192.106.277.167 1.06.761 1.798 1.853 3.137 1.853.678 0 1.067-.218 1.418-.585-.722-1.546-1.432-3.492-2.756-3.495Z" }) + ] + } + ); +}); + +export { SiChartdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.cjs new file mode 100644 index 000000000..2f60cf607 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13324B"; +const SiChartmogul = React__namespace.forwardRef(function SiChartmogul2({ title = "ChartMogul", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.621 19.89V8.75L2.867 19.89H0V4.11h2.758v11.112l7.754-11.113h2.867v11.14L21.16 4.11H24v15.782h-2.73V8.75l-7.755 11.14Z" }) + ] + } + ); +}); + +exports.default = SiChartmogul; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.d.ts new file mode 100644 index 000000000..63617b344 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13324B"; +declare const SiChartmogul: IconType; +export { SiChartmogul as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.mjs new file mode 100644 index 000000000..71619088c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChartmogul.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13324B"; +const SiChartmogul = React.forwardRef(function SiChartmogul2({ title = "ChartMogul", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.621 19.89V8.75L2.867 19.89H0V4.11h2.758v11.112l7.754-11.113h2.867v11.14L21.16 4.11H24v15.782h-2.73V8.75l-7.755 11.14Z" }) + ] + } + ); +}); + +export { SiChartmogul as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChase.cjs new file mode 100644 index 000000000..a858b2877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#117ACA"; +const SiChase = React__namespace.forwardRef(function SiChase2({ title = "Chase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 15.415c0 .468.38.85.848.85h5.937V.575L0 7.72v7.695m15.416 8.582c.467 0 .846-.38.846-.849v-5.937H.573l7.146 6.785h7.697M24 8.587a.844.844 0 0 0-.847-.846h-5.938V23.43l6.782-7.148L24 8.586M8.585.003a.847.847 0 0 0-.847.847v5.94h15.688L16.282.003H8.585Z" }) + ] + } + ); +}); + +exports.default = SiChase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChase.d.ts new file mode 100644 index 000000000..3fb3e857e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#117ACA"; +declare const SiChase: IconType; +export { SiChase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChase.mjs new file mode 100644 index 000000000..86690e026 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#117ACA"; +const SiChase = React.forwardRef(function SiChase2({ title = "Chase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 15.415c0 .468.38.85.848.85h5.937V.575L0 7.72v7.695m15.416 8.582c.467 0 .846-.38.846-.849v-5.937H.573l7.146 6.785h7.697M24 8.587a.844.844 0 0 0-.847-.846h-5.938V23.43l6.782-7.148L24 8.586M8.585.003a.847.847 0 0 0-.847.847v5.94h15.688L16.282.003H8.585Z" }) + ] + } + ); +}); + +export { SiChase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.cjs new file mode 100644 index 000000000..87497c29b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066FF"; +const SiChatbot = React__namespace.forwardRef(function SiChatbot2({ title = "ChatBot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0c-2.25 0-4.5.06-6.6.21a5.57 5.57 0 00-5.19 5.1c-.24 3.21-.27 6.39-.06 9.6a5.644 5.644 0 005.7 5.19h3.15v-3.9h-3.15c-.93.03-1.74-.63-1.83-1.56-.18-3-.15-6 .06-9 .06-.84.72-1.47 1.56-1.53 2.04-.15 4.2-.21 6.36-.21s4.32.09 6.36.18c.81.06 1.5.69 1.56 1.53.24 3 .24 6 .06 9-.12.93-.9 1.62-1.83 1.59h-3.15l-6 3.9V24l6-3.9h3.15c2.97.03 5.46-2.25 5.7-5.19.21-3.18.18-6.39-.03-9.57a5.57 5.57 0 00-5.19-5.1c-2.13-.18-4.38-.24-6.63-.24zm-5.04 8.76c-.36 0-.66.3-.66.66v2.34c0 .33.18.63.48.78 1.62.78 3.42 1.2 5.22 1.26 1.8-.06 3.6-.48 5.22-1.26.3-.15.48-.45.48-.78V9.42c0-.09-.03-.15-.09-.21a.648.648 0 00-.87-.36c-1.5.66-3.12 1.02-4.77 1.05-1.65-.03-3.27-.42-4.77-1.08a.566.566 0 00-.24-.06z" }) + ] + } + ); +}); + +exports.default = SiChatbot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.d.ts new file mode 100644 index 000000000..588256dad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066FF"; +declare const SiChatbot: IconType; +export { SiChatbot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.mjs new file mode 100644 index 000000000..730601cdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChatbot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066FF"; +const SiChatbot = React.forwardRef(function SiChatbot2({ title = "ChatBot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0c-2.25 0-4.5.06-6.6.21a5.57 5.57 0 00-5.19 5.1c-.24 3.21-.27 6.39-.06 9.6a5.644 5.644 0 005.7 5.19h3.15v-3.9h-3.15c-.93.03-1.74-.63-1.83-1.56-.18-3-.15-6 .06-9 .06-.84.72-1.47 1.56-1.53 2.04-.15 4.2-.21 6.36-.21s4.32.09 6.36.18c.81.06 1.5.69 1.56 1.53.24 3 .24 6 .06 9-.12.93-.9 1.62-1.83 1.59h-3.15l-6 3.9V24l6-3.9h3.15c2.97.03 5.46-2.25 5.7-5.19.21-3.18.18-6.39-.03-9.57a5.57 5.57 0 00-5.19-5.1c-2.13-.18-4.38-.24-6.63-.24zm-5.04 8.76c-.36 0-.66.3-.66.66v2.34c0 .33.18.63.48.78 1.62.78 3.42 1.2 5.22 1.26 1.8-.06 3.6-.48 5.22-1.26.3-.15.48-.45.48-.78V9.42c0-.09-.03-.15-.09-.21a.648.648 0 00-.87-.36c-1.5.66-3.12 1.02-4.77 1.05-1.65-.03-3.27-.42-4.77-1.08a.566.566 0 00-.24-.06z" }) + ] + } + ); +}); + +export { SiChatbot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.cjs new file mode 100644 index 000000000..4c2e4c106 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F93FF"; +const SiChatwoot = React__namespace.forwardRef(function SiChatwoot2({ title = "Chatwoot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12c0 6.629 5.371 12 12 12s12-5.371 12-12S18.629 0 12 0 0 5.371 0 12m17.008 5.29H11.44a5.57 5.57 0 0 1-5.562-5.567A5.57 5.57 0 0 1 11.44 6.16a5.57 5.57 0 0 1 5.567 5.563Z" }) + ] + } + ); +}); + +exports.default = SiChatwoot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.d.ts new file mode 100644 index 000000000..018547900 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F93FF"; +declare const SiChatwoot: IconType; +export { SiChatwoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.mjs new file mode 100644 index 000000000..e71b6fefd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChatwoot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F93FF"; +const SiChatwoot = React.forwardRef(function SiChatwoot2({ title = "Chatwoot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12c0 6.629 5.371 12 12 12s12-5.371 12-12S18.629 0 12 0 0 5.371 0 12m17.008 5.29H11.44a5.57 5.57 0 0 1-5.562-5.567A5.57 5.57 0 0 1 11.44 6.16a5.57 5.57 0 0 1 5.567 5.563Z" }) + ] + } + ); +}); + +export { SiChatwoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.cjs new file mode 100644 index 000000000..5a4b3180d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008DB6"; +const SiCheckio = React__namespace.forwardRef(function SiCheckio2({ title = "CheckiO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.846 8.886L24 2.932v13.82L9.621 21.068 0 14.09l3.35-9.956 7.496 4.751v.001zm-4.582 2.067l3.923-1.768-6.065-3.85 2.142 5.618zm-5.393 2.44l4.842-2.187-2.179-5.717-2.662 7.904H.871zm22.526 2.54V4.256l-5.96 7.37 5.96 4.307zm-12.865 4.233l12.497-3.758-5.973-4.316-6.524 8.074zM.94 14.029l8.092 5.867-3.106-8.124L.94 14.029zm21.722-9.826c-5.085 2.296-10.163 4.6-15.25 6.895l9.445.284 5.805-7.178v-.001zM9.775 20.143l6.608-8.173-9.844-.29 3.236 8.462v.001z" }) + ] + } + ); +}); + +exports.default = SiCheckio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.d.ts new file mode 100644 index 000000000..840d7a8ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008DB6"; +declare const SiCheckio: IconType; +export { SiCheckio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.mjs new file mode 100644 index 000000000..41378aae7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008DB6"; +const SiCheckio = React.forwardRef(function SiCheckio2({ title = "CheckiO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.846 8.886L24 2.932v13.82L9.621 21.068 0 14.09l3.35-9.956 7.496 4.751v.001zm-4.582 2.067l3.923-1.768-6.065-3.85 2.142 5.618zm-5.393 2.44l4.842-2.187-2.179-5.717-2.662 7.904H.871zm22.526 2.54V4.256l-5.96 7.37 5.96 4.307zm-12.865 4.233l12.497-3.758-5.973-4.316-6.524 8.074zM.94 14.029l8.092 5.867-3.106-8.124L.94 14.029zm21.722-9.826c-5.085 2.296-10.163 4.6-15.25 6.895l9.445.284 5.805-7.178v-.001zM9.775 20.143l6.608-8.173-9.844-.29 3.236 8.462v.001z" }) + ] + } + ); +}); + +export { SiCheckio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.cjs new file mode 100644 index 000000000..e84e63c19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#54B848"; +const SiCheckmarx = React__namespace.forwardRef(function SiCheckmarx2({ title = "Checkmarx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.544.12A6.553 6.553 0 0 0 0 6.664v10.674a6.551 6.551 0 0 0 6.544 6.542h10.912A6.551 6.551 0 0 0 24 17.338v-.831a2.193 2.193 0 0 0-4.388 0v.83c0 1.19-.967 2.157-2.156 2.157H6.544a2.16 2.16 0 0 1-2.158-2.156V6.748c0-1.19.969-2.16 2.158-2.16 3.843.004 7.814-.009 11.612.001.556.138.892.445 1.058.848.193.47.343 1.118-.404 1.748l-6.26 4.596-1.892-2.441a2.191 2.191 0 0 0-3.075-.391 2.191 2.191 0 0 0-.391 3.076l3.198 4.133a2.197 2.197 0 0 0 3.035.424l7.252-5.301a56.68 56.68 0 0 0 1.22-.977c2.106-1.926 2.517-4.393 1.627-6.553C22.603 1.51 20.268.12 17.435.12Z" }) + ] + } + ); +}); + +exports.default = SiCheckmarx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.d.ts new file mode 100644 index 000000000..380f4e049 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#54B848"; +declare const SiCheckmarx: IconType; +export { SiCheckmarx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.mjs new file mode 100644 index 000000000..b6d11e672 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmarx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#54B848"; +const SiCheckmarx = React.forwardRef(function SiCheckmarx2({ title = "Checkmarx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.544.12A6.553 6.553 0 0 0 0 6.664v10.674a6.551 6.551 0 0 0 6.544 6.542h10.912A6.551 6.551 0 0 0 24 17.338v-.831a2.193 2.193 0 0 0-4.388 0v.83c0 1.19-.967 2.157-2.156 2.157H6.544a2.16 2.16 0 0 1-2.158-2.156V6.748c0-1.19.969-2.16 2.158-2.16 3.843.004 7.814-.009 11.612.001.556.138.892.445 1.058.848.193.47.343 1.118-.404 1.748l-6.26 4.596-1.892-2.441a2.191 2.191 0 0 0-3.075-.391 2.191 2.191 0 0 0-.391 3.076l3.198 4.133a2.197 2.197 0 0 0 3.035.424l7.252-5.301a56.68 56.68 0 0 0 1.22-.977c2.106-1.926 2.517-4.393 1.627-6.553C22.603 1.51 20.268.12 17.435.12Z" }) + ] + } + ); +}); + +export { SiCheckmarx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.cjs new file mode 100644 index 000000000..5936cc9d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#15D1A0"; +const SiCheckmk = React__namespace.forwardRef(function SiCheckmk2({ title = "Checkmk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.187 8.738v3.985l4.883-3.157v8.217l1.925 1.111 1.926-1.111V9.57l4.882 3.158V8.742l-6.808-4.269-6.808 4.265zM12 0l10.375 5.999V18L12 24 1.625 18.006V6.003L12 0z" }) + ] + } + ); +}); + +exports.default = SiCheckmk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.d.ts new file mode 100644 index 000000000..fbdde2b60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#15D1A0"; +declare const SiCheckmk: IconType; +export { SiCheckmk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.mjs new file mode 100644 index 000000000..96a562fd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheckmk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#15D1A0"; +const SiCheckmk = React.forwardRef(function SiCheckmk2({ title = "Checkmk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.187 8.738v3.985l4.883-3.157v8.217l1.925 1.111 1.926-1.111V9.57l4.882 3.158V8.742l-6.808-4.269-6.808 4.265zM12 0l10.375 5.999V18L12 24 1.625 18.006V6.003L12 0z" }) + ] + } + ); +}); + +export { SiCheckmk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.cjs new file mode 100644 index 000000000..736d8a628 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E0832F"; +const SiChedraui = React__namespace.forwardRef(function SiChedraui2({ title = "Chedraui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5234 4.7246c-.7714 0-1.3984.627-1.3984 1.3984 0 .7731.6253 1.3985 1.3984 1.3985.7715 0 1.3985-.627 1.3985-1.3985 0-.7714-.627-1.3984-1.3985-1.3984zm4.1504 1.5742c-.7324 0-1.3261.5938-1.3261 1.3262.0016.7308.5953 1.3242 1.3261 1.3242.7324 0 1.3242-.5934 1.3242-1.3242 0-.7324-.5934-1.3262-1.3242-1.3262zM7.5313 7.9023a.1707.1707 0 0 0-.172.17v5.4453c0 .0944.0774.1719.172.1719h2.498c.0944 0 .17-.0774.17-.172v-2.3632c0-.153.1855-.2282.2929-.1191l.4043.3476c.109.109.2946.0316.293-.123l-.0196-1.6739a.1741.1741 0 0 0-.0488-.1191L9.576 7.9531a.178.178 0 0 0-.123-.0508Zm4.1914 1.4082a.169.169 0 0 0-.17.17v4.125a.1708.1708 0 0 1-.0507.121l-1.1114 1.1114c-.1074.1074-.0322.293.1192.293l3.7597.0078a.1707.1707 0 0 0 .172-.17v-2.828c0-.153.1855-.2287.2929-.1212l1.1562 1.1563a.1687.1687 0 0 0 .1211.0488l1.1778-.0059c.1513-.0015.2285-.1839.121-.293l-3.543-3.5663a.1804.1804 0 0 0-.123-.0489Zm-8.5918.125c-.6384.0324-1.1465.5607-1.1465 1.207 0 .6675.5417 1.2071 1.209 1.2071.6673 0 1.207-.5397 1.207-1.207 0-.6673-.5397-1.207-1.207-1.207-.021 0-.042-.0012-.0625 0zm15.8086 2.0801c-.5887.03-1.0567.5193-1.0567 1.1153 0 .6152.4964 1.1132 1.1133 1.1132.6152 0 1.1152-.498 1.1152-1.1132 0-.6153-.5-1.1153-1.1152-1.1153zm-16.5957.6758a.1725.1725 0 0 0-.172.1719v3.9902c0 .0944.0775.1719.172.1719h1.873c.0944 0 .17-.0775.17-.1719v-1.5312c0-.153.1855-.2306.2929-.123l.6133.6132a.171.171 0 0 0 .2441-.002l.8125-.8418c.0651-.0668.0667-.1732 0-.2383l-1.9629-1.9882a.168.168 0 0 0-.121-.0508zm14.7968 1.1524a.4455.4455 0 0 0-.4453.4453c0 .2457.1996.4453.4453.4453a.4318.4318 0 0 0 .1133-.0157l.7773.7774a.168.168 0 0 1 .043.0683l.9668 2.9883a.1726.1726 0 0 0 .1621.1192h.3867c-.187.0976-.3164.2912-.3164.5175 0 .3238.262.586.586.586.3239 0 .586-.262.586-.586 0-.2262-.1293-.42-.3165-.5175h2.3594c-.1872.0976-.3164.2912-.3164.5175 0 .3238.262.586.586.586.3237 0 .5859-.262.5859-.586a.5817.5817 0 0 0-.3145-.5175h.371c.0946 0 .17-.0775.17-.1719l.0156-.1172a.2555.2555 0 0 0-.2558-.2851h-3.7578c-.0716 0-.1318-.0424-.1367-.0977-.0341-.1387-.0848-.2752-.127-.4121a.124.124 0 0 1 .1074-.1621h3.9746a.3494.3494 0 0 0 .3457-.3067c.0881-.7473.176-1.4948.2637-2.2422-.0098-.0912-.0846-.162-.1758-.162l-5.6817-.006a.116.116 0 0 1-.084-.0351l-.4784-.4492a.444.444 0 0 0-.4395-.3809Zm-9.6093.8574a.1705.1705 0 0 0-.1211.0508l-4.6407 4.6738c-.1074.109-.03.293.123.293h1.8067a.175.175 0 0 0 .123-.0508l4.672-4.6739c.109-.1074.0338-.293-.1192-.293Zm2.7753 1.3867a.1688.1688 0 0 0-.121.0488l-3.2637 3.289c-.1074.1092-.032.293.121.293h1.8028a.1705.1705 0 0 0 .1211-.0507l3.2422-3.2422a.174.174 0 0 1 .2441 0l3.2422 3.2422a.1688.1688 0 0 0 .1192.0508h1.789c.153 0 .2306-.184.123-.293l-3.2656-3.289a.1731.1731 0 0 0-.123-.049zM2.1113 16.912a.1707.1707 0 0 0-.121.0508l-.0938.0937-1.8457 1.8692c-.1074.109-.032.293.121.293H1.373a.1678.1678 0 0 0 .1211-.0508l1.963-1.963c.1105-.109.0338-.2929-.1192-.2929z" }) + ] + } + ); +}); + +exports.default = SiChedraui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.d.ts new file mode 100644 index 000000000..962c6730b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E0832F"; +declare const SiChedraui: IconType; +export { SiChedraui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.mjs new file mode 100644 index 000000000..9db1d18e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChedraui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E0832F"; +const SiChedraui = React.forwardRef(function SiChedraui2({ title = "Chedraui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.5234 4.7246c-.7714 0-1.3984.627-1.3984 1.3984 0 .7731.6253 1.3985 1.3984 1.3985.7715 0 1.3985-.627 1.3985-1.3985 0-.7714-.627-1.3984-1.3985-1.3984zm4.1504 1.5742c-.7324 0-1.3261.5938-1.3261 1.3262.0016.7308.5953 1.3242 1.3261 1.3242.7324 0 1.3242-.5934 1.3242-1.3242 0-.7324-.5934-1.3262-1.3242-1.3262zM7.5313 7.9023a.1707.1707 0 0 0-.172.17v5.4453c0 .0944.0774.1719.172.1719h2.498c.0944 0 .17-.0774.17-.172v-2.3632c0-.153.1855-.2282.2929-.1191l.4043.3476c.109.109.2946.0316.293-.123l-.0196-1.6739a.1741.1741 0 0 0-.0488-.1191L9.576 7.9531a.178.178 0 0 0-.123-.0508Zm4.1914 1.4082a.169.169 0 0 0-.17.17v4.125a.1708.1708 0 0 1-.0507.121l-1.1114 1.1114c-.1074.1074-.0322.293.1192.293l3.7597.0078a.1707.1707 0 0 0 .172-.17v-2.828c0-.153.1855-.2287.2929-.1212l1.1562 1.1563a.1687.1687 0 0 0 .1211.0488l1.1778-.0059c.1513-.0015.2285-.1839.121-.293l-3.543-3.5663a.1804.1804 0 0 0-.123-.0489Zm-8.5918.125c-.6384.0324-1.1465.5607-1.1465 1.207 0 .6675.5417 1.2071 1.209 1.2071.6673 0 1.207-.5397 1.207-1.207 0-.6673-.5397-1.207-1.207-1.207-.021 0-.042-.0012-.0625 0zm15.8086 2.0801c-.5887.03-1.0567.5193-1.0567 1.1153 0 .6152.4964 1.1132 1.1133 1.1132.6152 0 1.1152-.498 1.1152-1.1132 0-.6153-.5-1.1153-1.1152-1.1153zm-16.5957.6758a.1725.1725 0 0 0-.172.1719v3.9902c0 .0944.0775.1719.172.1719h1.873c.0944 0 .17-.0775.17-.1719v-1.5312c0-.153.1855-.2306.2929-.123l.6133.6132a.171.171 0 0 0 .2441-.002l.8125-.8418c.0651-.0668.0667-.1732 0-.2383l-1.9629-1.9882a.168.168 0 0 0-.121-.0508zm14.7968 1.1524a.4455.4455 0 0 0-.4453.4453c0 .2457.1996.4453.4453.4453a.4318.4318 0 0 0 .1133-.0157l.7773.7774a.168.168 0 0 1 .043.0683l.9668 2.9883a.1726.1726 0 0 0 .1621.1192h.3867c-.187.0976-.3164.2912-.3164.5175 0 .3238.262.586.586.586.3239 0 .586-.262.586-.586 0-.2262-.1293-.42-.3165-.5175h2.3594c-.1872.0976-.3164.2912-.3164.5175 0 .3238.262.586.586.586.3237 0 .5859-.262.5859-.586a.5817.5817 0 0 0-.3145-.5175h.371c.0946 0 .17-.0775.17-.1719l.0156-.1172a.2555.2555 0 0 0-.2558-.2851h-3.7578c-.0716 0-.1318-.0424-.1367-.0977-.0341-.1387-.0848-.2752-.127-.4121a.124.124 0 0 1 .1074-.1621h3.9746a.3494.3494 0 0 0 .3457-.3067c.0881-.7473.176-1.4948.2637-2.2422-.0098-.0912-.0846-.162-.1758-.162l-5.6817-.006a.116.116 0 0 1-.084-.0351l-.4784-.4492a.444.444 0 0 0-.4395-.3809Zm-9.6093.8574a.1705.1705 0 0 0-.1211.0508l-4.6407 4.6738c-.1074.109-.03.293.123.293h1.8067a.175.175 0 0 0 .123-.0508l4.672-4.6739c.109-.1074.0338-.293-.1192-.293Zm2.7753 1.3867a.1688.1688 0 0 0-.121.0488l-3.2637 3.289c-.1074.1092-.032.293.121.293h1.8028a.1705.1705 0 0 0 .1211-.0507l3.2422-3.2422a.174.174 0 0 1 .2441 0l3.2422 3.2422a.1688.1688 0 0 0 .1192.0508h1.789c.153 0 .2306-.184.123-.293l-3.2656-3.289a.1731.1731 0 0 0-.123-.049zM2.1113 16.912a.1707.1707 0 0 0-.121.0508l-.0938.0937-1.8457 1.8692c-.1074.109-.032.293.121.293H1.373a.1678.1678 0 0 0 .1211-.0508l1.963-1.963c.1105-.109.0338-.2929-.1192-.2929z" }) + ] + } + ); +}); + +export { SiChedraui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.cjs new file mode 100644 index 000000000..c0998ca5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E88C1F"; +const SiCheerio = React__namespace.forwardRef(function SiCheerio2({ title = "Cheerio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.1396 15.6223c.5937.4442 1.2036.9005 1.8095 1.3559-.4142.4767-.9279.8995-1.5834 1.3068-.4922.3049-1.0297.5478-1.6393.7412-.4883.1511-.9723.2552-1.4432.31-.4298.0538-.8798.0393-1.2209.0207-1.0909-.065-2.1521-.3797-3.1536-.9348-.8151-.4534-1.5369-1.0821-2.1457-1.8689-.5418-.6991-.9378-1.4468-1.1771-2.2231-.1847-.596-.2658-1.2074-.3207-1.7266-.0781-.7424-.0024-1.5307.2386-2.4816.2009-.7987.5396-1.5323 1.0083-2.1829.7754-1.0903 1.7401-1.9113 2.8675-2.4402.7683-.3608 1.5487-.5869 2.3216-.6722a6.046 6.046 0 0 1 .6885-.0377c.3624 0 .7611.0282 1.2272.0855a6.3308 6.3308 0 0 1 1.8739.5194c.9649.4381 1.8045 1.0561 2.4988 1.839-1.0573.8162-2.1255 1.62-3.1697 2.4034-.5109-.4584-1.1614-.7463-1.8772-.8238-.8941-.0967-1.7878.1553-2.4512.691-.7267.5849-1.1696 1.4197-1.247 2.3508-.0771.927.2192 1.8179.8339 2.5087.6372.7168 1.4774 1.1031 2.434 1.1172.8764.0045 1.6485-.2809 2.2975-.8534.4443.3332.8874.6646 1.3297.9956zM24 1.8v20.4c0 .9941-.8059 1.8-1.8 1.8H1.8C.8059 24 0 23.1941 0 22.2V1.8C0 .8059.8059 0 1.8 0h20.4c.9941 0 1.8.8059 1.8 1.8zm-4.5418 14.9626-.4192-.3159a835.8403 835.8403 0 0 0-2.2524-1.6891c-.5658-.4233-1.133-.8477-1.7023-1.2753l-.3982-.2991-.3303.3728c-.5032.568-1.0979.8442-1.8134.8442l-.0185-.0001c-.6504-.0096-1.2016-.2635-1.6385-.755-.4164-.4679-.617-1.0721-.5646-1.7014.0526-.6335.3538-1.2013.8485-1.5995.4423-.3573 1.0467-.5242 1.6572-.4582.6104.066 1.1474.3529 1.5122.8078l.3271.4078.4182-.3137c1.2997-.9748 2.6437-1.9828 3.9674-3.0117l.184-.1431.0221-.2321c.0323-.3382-.1604-.5447-.2428-.6329-.007-.0076-.0144-.015-.0201-.0219l-.009-.0111c-.8302-1.0012-1.8558-1.7835-3.0489-2.3253a7.4076 7.4076 0 0 0-2.191-.6081c-.5812-.0714-1.3528-.1413-2.165-.0487-.8893.0981-1.7844.3565-2.6601.7679C7.623 5.13 6.5165 6.0693 5.6338 7.3104c-.5468.7591-.943 1.6163-1.1773 2.547-.2731 1.0775-.3575 1.986-.2656 2.8594.0605.5715.1509 1.2482.363 1.9323.2775.9002.7334 1.7634 1.355 2.5654.6985.9027 1.5311 1.6266 2.4753 2.1519 1.1445.6343 2.3603.9939 3.6166 1.0689a11.33 11.33 0 0 0 .6128.0185c.2542 0 .5268-.0114.7987-.0454.5321-.0619 1.0816-.1798 1.6369-.3517.6994-.2219 1.3161-.5011 1.8857-.854.9521-.5914 1.6781-1.2496 2.2194-2.0121l.3039-.428z" }) + ] + } + ); +}); + +exports.default = SiCheerio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.d.ts new file mode 100644 index 000000000..2e5725d91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E88C1F"; +declare const SiCheerio: IconType; +export { SiCheerio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.mjs new file mode 100644 index 000000000..65d3c5675 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCheerio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E88C1F"; +const SiCheerio = React.forwardRef(function SiCheerio2({ title = "Cheerio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.1396 15.6223c.5937.4442 1.2036.9005 1.8095 1.3559-.4142.4767-.9279.8995-1.5834 1.3068-.4922.3049-1.0297.5478-1.6393.7412-.4883.1511-.9723.2552-1.4432.31-.4298.0538-.8798.0393-1.2209.0207-1.0909-.065-2.1521-.3797-3.1536-.9348-.8151-.4534-1.5369-1.0821-2.1457-1.8689-.5418-.6991-.9378-1.4468-1.1771-2.2231-.1847-.596-.2658-1.2074-.3207-1.7266-.0781-.7424-.0024-1.5307.2386-2.4816.2009-.7987.5396-1.5323 1.0083-2.1829.7754-1.0903 1.7401-1.9113 2.8675-2.4402.7683-.3608 1.5487-.5869 2.3216-.6722a6.046 6.046 0 0 1 .6885-.0377c.3624 0 .7611.0282 1.2272.0855a6.3308 6.3308 0 0 1 1.8739.5194c.9649.4381 1.8045 1.0561 2.4988 1.839-1.0573.8162-2.1255 1.62-3.1697 2.4034-.5109-.4584-1.1614-.7463-1.8772-.8238-.8941-.0967-1.7878.1553-2.4512.691-.7267.5849-1.1696 1.4197-1.247 2.3508-.0771.927.2192 1.8179.8339 2.5087.6372.7168 1.4774 1.1031 2.434 1.1172.8764.0045 1.6485-.2809 2.2975-.8534.4443.3332.8874.6646 1.3297.9956zM24 1.8v20.4c0 .9941-.8059 1.8-1.8 1.8H1.8C.8059 24 0 23.1941 0 22.2V1.8C0 .8059.8059 0 1.8 0h20.4c.9941 0 1.8.8059 1.8 1.8zm-4.5418 14.9626-.4192-.3159a835.8403 835.8403 0 0 0-2.2524-1.6891c-.5658-.4233-1.133-.8477-1.7023-1.2753l-.3982-.2991-.3303.3728c-.5032.568-1.0979.8442-1.8134.8442l-.0185-.0001c-.6504-.0096-1.2016-.2635-1.6385-.755-.4164-.4679-.617-1.0721-.5646-1.7014.0526-.6335.3538-1.2013.8485-1.5995.4423-.3573 1.0467-.5242 1.6572-.4582.6104.066 1.1474.3529 1.5122.8078l.3271.4078.4182-.3137c1.2997-.9748 2.6437-1.9828 3.9674-3.0117l.184-.1431.0221-.2321c.0323-.3382-.1604-.5447-.2428-.6329-.007-.0076-.0144-.015-.0201-.0219l-.009-.0111c-.8302-1.0012-1.8558-1.7835-3.0489-2.3253a7.4076 7.4076 0 0 0-2.191-.6081c-.5812-.0714-1.3528-.1413-2.165-.0487-.8893.0981-1.7844.3565-2.6601.7679C7.623 5.13 6.5165 6.0693 5.6338 7.3104c-.5468.7591-.943 1.6163-1.1773 2.547-.2731 1.0775-.3575 1.986-.2656 2.8594.0605.5715.1509 1.2482.363 1.9323.2775.9002.7334 1.7634 1.355 2.5654.6985.9027 1.5311 1.6266 2.4753 2.1519 1.1445.6343 2.3603.9939 3.6166 1.0689a11.33 11.33 0 0 0 .6128.0185c.2542 0 .5268-.0114.7987-.0454.5321-.0619 1.0816-.1798 1.6369-.3517.6994-.2219 1.3161-.5011 1.8857-.854.9521-.5914 1.6781-1.2496 2.2194-2.0121l.3039-.428z" }) + ] + } + ); +}); + +export { SiCheerio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChef.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChef.cjs new file mode 100644 index 000000000..0d238cb98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChef.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F09820"; +const SiChef = React__namespace.forwardRef(function SiChef2({ title = "Chef", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.03 0C6.94 0 2.57 3.17.82 7.65l1.91.77a10 10 0 0 1 9.3-6.4c2.24 0 4.32.77 5.96 1.97l1.2-1.64A11.96 11.96 0 0 0 12.03 0zm0 2.3a9.76 9.76 0 0 0-9.08 6.23l1.91.7a7.62 7.62 0 0 1 7.17-4.91zm3.55.7l-.76 1.92a7.47 7.47 0 0 1 4.75 5.63h2.08a9.7 9.7 0 0 0-6.07-7.54zm-3.55 1.6a7.44 7.44 0 1 0 7.32 8.9h-2.08a5.5 5.5 0 0 1-5.24 3.94 5.39 5.39 0 0 1-5.42-5.41 5.39 5.39 0 0 1 5.42-5.41 5.4 5.4 0 0 1 5.2 3.93h2.07a7.35 7.35 0 0 0-7.27-5.96zm10.22 1.09L20.5 6.78a9.5 9.5 0 0 1 1.42 3.77H24a11.56 11.56 0 0 0-1.75-4.86zM11.97 6.83a5.22 5.22 0 0 0-4.7 7.27l1.97-.87a2.97 2.97 0 0 1-.27-1.2c0-1.64 1.36-3.01 3-3.01zm1.92.39l-.77 2.02c.66.27 1.15.7 1.53 1.31h2.3a5.04 5.04 0 0 0-3.06-3.33zM0 12.02c0 1.65.33 3.29 1.04 4.87l1.8-.82a10.49 10.49 0 0 1-.82-4.04zm2.3 0c0 4.1 2.51 7.6 6.12 9.03l.76-1.92a7.63 7.63 0 0 1-4.86-7.1zm12.3 1.48c-.33.6-.82 1.1-1.48 1.31l.77 2.03a5.04 5.04 0 0 0 3.06-3.34zm4.97 0a7.73 7.73 0 0 1-7.54 6.24v2.02a9.71 9.71 0 0 0 9.62-8.26zm2.35 0a10.1 10.1 0 0 1-9.9 8.53c-2.73 0-5.24-1.15-7.04-2.95L3.55 20.5c2.19 2.19 5.2 3.5 8.53 3.5A12 12 0 0 0 24 13.5zm-12.02.66l-1.53 1.53a5.21 5.21 0 0 0 3.66 1.53v-2.19a3.02 3.02 0 0 1-2.13-.87z" }) + ] + } + ); +}); + +exports.default = SiChef; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChef.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChef.d.ts new file mode 100644 index 000000000..b4092c1e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChef.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F09820"; +declare const SiChef: IconType; +export { SiChef as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChef.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChef.mjs new file mode 100644 index 000000000..94ca56f17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChef.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F09820"; +const SiChef = React.forwardRef(function SiChef2({ title = "Chef", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.03 0C6.94 0 2.57 3.17.82 7.65l1.91.77a10 10 0 0 1 9.3-6.4c2.24 0 4.32.77 5.96 1.97l1.2-1.64A11.96 11.96 0 0 0 12.03 0zm0 2.3a9.76 9.76 0 0 0-9.08 6.23l1.91.7a7.62 7.62 0 0 1 7.17-4.91zm3.55.7l-.76 1.92a7.47 7.47 0 0 1 4.75 5.63h2.08a9.7 9.7 0 0 0-6.07-7.54zm-3.55 1.6a7.44 7.44 0 1 0 7.32 8.9h-2.08a5.5 5.5 0 0 1-5.24 3.94 5.39 5.39 0 0 1-5.42-5.41 5.39 5.39 0 0 1 5.42-5.41 5.4 5.4 0 0 1 5.2 3.93h2.07a7.35 7.35 0 0 0-7.27-5.96zm10.22 1.09L20.5 6.78a9.5 9.5 0 0 1 1.42 3.77H24a11.56 11.56 0 0 0-1.75-4.86zM11.97 6.83a5.22 5.22 0 0 0-4.7 7.27l1.97-.87a2.97 2.97 0 0 1-.27-1.2c0-1.64 1.36-3.01 3-3.01zm1.92.39l-.77 2.02c.66.27 1.15.7 1.53 1.31h2.3a5.04 5.04 0 0 0-3.06-3.33zM0 12.02c0 1.65.33 3.29 1.04 4.87l1.8-.82a10.49 10.49 0 0 1-.82-4.04zm2.3 0c0 4.1 2.51 7.6 6.12 9.03l.76-1.92a7.63 7.63 0 0 1-4.86-7.1zm12.3 1.48c-.33.6-.82 1.1-1.48 1.31l.77 2.03a5.04 5.04 0 0 0 3.06-3.34zm4.97 0a7.73 7.73 0 0 1-7.54 6.24v2.02a9.71 9.71 0 0 0 9.62-8.26zm2.35 0a10.1 10.1 0 0 1-9.9 8.53c-2.73 0-5.24-1.15-7.04-2.95L3.55 20.5c2.19 2.19 5.2 3.5 8.53 3.5A12 12 0 0 0 24 13.5zm-12.02.66l-1.53 1.53a5.21 5.21 0 0 0 3.66 1.53v-2.19a3.02 3.02 0 0 1-2.13-.87z" }) + ] + } + ); +}); + +export { SiChef as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.cjs new file mode 100644 index 000000000..8ae0da7ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4D2B1A"; +const SiChemex = React__namespace.forwardRef(function SiChemex2({ title = "Chemex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.665.124c-.741 0-1.36.593-1.36 1.334 0 .742.619 1.335 1.36 1.335A1.33 1.33 0 0 0 24 1.458 1.33 1.33 0 0 0 22.665.124zM1.112.148s5.314 6.748 5.982 7.91c.89 1.557.84 2.076-.124 3.954C6.352 13.2 0 23.876 0 23.876h2.694S8.7 13.668 9.516 12.284c.89-1.508.89-3.164.148-4.474C9.071 6.772 3.831.148 3.831.148zm16.956 0s-5.24 6.624-5.833 7.662c-.717 1.286-.766 2.917.148 4.474.816 1.384 6.822 11.592 6.822 11.592h2.67c0-.024-6.328-10.677-6.946-11.888-.964-1.854-1.013-2.373-.123-3.93.667-1.162 5.98-7.91 5.98-7.91zm4.597.223c.593 0 1.088.494 1.088 1.087 0 .594-.495 1.088-1.088 1.088a1.097 1.097 0 0 1-1.087-1.088A1.08 1.08 0 0 1 22.665.371zm-.593.296V2.15h.272v-.519h.37l.273.52h.321l-.297-.544a.453.453 0 0 0 .297-.446c0-.296-.198-.494-.52-.494zm.321.272h.445c.149 0 .223.05.223.222 0 .173-.124.223-.223.223h-.445z" }) + ] + } + ); +}); + +exports.default = SiChemex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.d.ts new file mode 100644 index 000000000..f31cdd43a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4D2B1A"; +declare const SiChemex: IconType; +export { SiChemex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.mjs new file mode 100644 index 000000000..fa725efd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChemex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4D2B1A"; +const SiChemex = React.forwardRef(function SiChemex2({ title = "Chemex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.665.124c-.741 0-1.36.593-1.36 1.334 0 .742.619 1.335 1.36 1.335A1.33 1.33 0 0 0 24 1.458 1.33 1.33 0 0 0 22.665.124zM1.112.148s5.314 6.748 5.982 7.91c.89 1.557.84 2.076-.124 3.954C6.352 13.2 0 23.876 0 23.876h2.694S8.7 13.668 9.516 12.284c.89-1.508.89-3.164.148-4.474C9.071 6.772 3.831.148 3.831.148zm16.956 0s-5.24 6.624-5.833 7.662c-.717 1.286-.766 2.917.148 4.474.816 1.384 6.822 11.592 6.822 11.592h2.67c0-.024-6.328-10.677-6.946-11.888-.964-1.854-1.013-2.373-.123-3.93.667-1.162 5.98-7.91 5.98-7.91zm4.597.223c.593 0 1.088.494 1.088 1.087 0 .594-.495 1.088-1.088 1.088a1.097 1.097 0 0 1-1.087-1.088A1.08 1.08 0 0 1 22.665.371zm-.593.296V2.15h.272v-.519h.37l.273.52h.321l-.297-.544a.453.453 0 0 0 .297-.446c0-.296-.198-.494-.52-.494zm.321.272h.445c.149 0 .223.05.223.222 0 .173-.124.223-.223.223h-.445z" }) + ] + } + ); +}); + +export { SiChemex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.cjs new file mode 100644 index 000000000..39a32fdc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#81B64C"; +const SiChessdotcom = React__namespace.forwardRef(function SiChessdotcom2({ title = "Chess.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a3.85 3.85 0 0 0-3.875 3.846A3.84 3.84 0 0 0 9.73 6.969l-2.79 1.85c0 .622.144 1.114.434 1.649H9.83c-.014.245-.014.549-.014.925 0 .025.003.048.006.071-.064 1.353-.507 3.472-3.62 5.842-.816.625-1.423 1.495-1.806 2.533a.33.33 0 0 0-.045.084 8.124 8.124 0 0 0-.39 2.516c0 .1.216 1.561 8.038 1.561s8.038-1.46 8.038-1.561c0-2.227-.824-4.048-2.24-5.133-4.034-3.08-3.586-5.74-3.644-6.838h2.458c.29-.535.434-1.027.434-1.649l-2.79-1.836a3.86 3.86 0 0 0 1.604-3.123A3.873 3.873 0 0 0 13.445.275c-.004-.002-.01.004-.015.004A3.76 3.76 0 0 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiChessdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.d.ts new file mode 100644 index 000000000..b7dc3b1d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#81B64C"; +declare const SiChessdotcom: IconType; +export { SiChessdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.mjs new file mode 100644 index 000000000..12a9bdd2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChessdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#81B64C"; +const SiChessdotcom = React.forwardRef(function SiChessdotcom2({ title = "Chess.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a3.85 3.85 0 0 0-3.875 3.846A3.84 3.84 0 0 0 9.73 6.969l-2.79 1.85c0 .622.144 1.114.434 1.649H9.83c-.014.245-.014.549-.014.925 0 .025.003.048.006.071-.064 1.353-.507 3.472-3.62 5.842-.816.625-1.423 1.495-1.806 2.533a.33.33 0 0 0-.045.084 8.124 8.124 0 0 0-.39 2.516c0 .1.216 1.561 8.038 1.561s8.038-1.46 8.038-1.561c0-2.227-.824-4.048-2.24-5.133-4.034-3.08-3.586-5.74-3.644-6.838h2.458c.29-.535.434-1.027.434-1.649l-2.79-1.836a3.86 3.86 0 0 0 1.604-3.123A3.873 3.873 0 0 0 13.445.275c-.004-.002-.01.004-.015.004A3.76 3.76 0 0 0 12 0Z" }) + ] + } + ); +}); + +export { SiChessdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.cjs new file mode 100644 index 000000000..714d170aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD9834"; +const SiChevrolet = React__namespace.forwardRef(function SiChevrolet2({ title = "Chevrolet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.905 9.784H15.92V8.246a.157.157 0 00-.157-.158H8.238a.157.157 0 00-.157.158v1.538H2.358c-.087 0-.193.07-.237.158L.02 14.058c-.045.088-.011.157.077.157H8.08v1.54c0 .086.07.157.157.157h7.525c.087 0 .157-.07.157-.157v-1.54h5.723c.087 0 .193-.07.238-.157l2.1-4.116c.045-.087.011-.158-.076-.158m-2.494.996l-1.244 2.437h-5.232v1.708H9.07v-1.708H2.595L3.84 10.78h5.232V9.073h5.864v1.707z" }) + ] + } + ); +}); + +exports.default = SiChevrolet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.d.ts new file mode 100644 index 000000000..b3bc7d656 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD9834"; +declare const SiChevrolet: IconType; +export { SiChevrolet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.mjs new file mode 100644 index 000000000..f59ff5695 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChevrolet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD9834"; +const SiChevrolet = React.forwardRef(function SiChevrolet2({ title = "Chevrolet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.905 9.784H15.92V8.246a.157.157 0 00-.157-.158H8.238a.157.157 0 00-.157.158v1.538H2.358c-.087 0-.193.07-.237.158L.02 14.058c-.045.088-.011.157.077.157H8.08v1.54c0 .086.07.157.157.157h7.525c.087 0 .157-.07.157-.157v-1.54h5.723c.087 0 .193-.07.238-.157l2.1-4.116c.045-.087.011-.158-.076-.158m-2.494.996l-1.244 2.437h-5.232v1.708H9.07v-1.708H2.595L3.84 10.78h5.232V9.073h5.864v1.707z" }) + ] + } + ); +}); + +export { SiChevrolet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.cjs new file mode 100644 index 000000000..5f507798f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5ECE71"; +const SiChianetwork = React__namespace.forwardRef(function SiChianetwork2({ title = "Chia Network", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.4619 4.7065c-.0614 0-.3272.0205-.5726.041-.4294.0408-1.0428.1021-1.145.143-.0205 0-.1432.0205-.2454.041-.818.1226-1.8404.4498-2.413.777-.1021.0613-.2248.1227-.2453.1227-.1227.0409-.9815.6543-1.3087.9201-2.3515 1.9221-3.5988 4.928-3.0672 7.4227.0614.3067.0818.3067.2863.1431.3476-.2454.6543-.4499 1.0633-.6952.2454-.1432 1.3087-.6544 1.3496-.6544 0 0 .0818-.0409.184-.0818.9406-.4294 3.6602-1.37 5.0302-1.7176.041-.0205.2863-.0818.5112-.1431 1.2883-.3477 1.5132-.409 1.5132-.3477 0 .0205-.0818.041-.1636.0818-.4499.1636-1.6563.6544-1.7176.6953-.0205.0204-.041.0204-.0614.0204s-.1227.0409-.2454.1022-.2044.1023-.2249.1023-.1227.0409-.2454.1022c-.1227.0614-.2454.1023-.2454.1023l-.2862.1227-.2863.1226c-.1431 0-3.1694 1.595-4.1305 2.1675-.225.1227-.409.2454-.409.2454s-.3067.184-1.2678.7975c-1.0633.6748-2.8422 1.9221-3.926 2.781-.1227.1022-.2863.2249-.3476.2658-.9406.736-1.0633.8792-.5317.593 1.2065-.634 2.556-1.2678 3.5171-1.6563.593-.2454 1.2269-.409 1.6359-.4703l.184-.0205.4499.4499c1.145 1.145 2.372 1.738 4.1918 1.9834.4294.0614 1.8199.041 2.147-.0204.1023-.0205.3068-.0614.4704-.0818.1636-.0205.3476-.0614.3885-.0818.0409-.0205.184-.041.3067-.0818 2.0857-.5521 3.8851-1.8403 5.4801-3.967.0409-.0408.184-.2249.3067-.4089.1432-.184.2863-.368.3272-.4294.0409-.0409.1227-.184.2045-.2863.8179-1.1655 2.0039-3.0876 2.74-4.4985.0818-.1636.225-.409.2863-.5521.0613-.1432.3271-.6544.5725-1.1247.2454-.4703.4499-.8997.4499-.9201.0613-.1227.0409-.1636-.2658-.2863-.041-.0205-.2659-.1023-.5112-.1636-.2454-.0818-.5317-.1636-.634-.2045-.4089-.1431-1.1041-.3271-1.9425-.552-.7361-.1841-.9202-.2455-1.2064-.3068-.1432-.0205-.2863-.0613-.3272-.0818s-.1636-.0409-.2658-.0613c-.2863-.0614-.4294-.0818-.6953-.1432-1.0224-.2249-1.9016-.3067-3.3943-.3067-.6135-.0204-1.186 0-1.2678 0" }) + ] + } + ); +}); + +exports.default = SiChianetwork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.d.ts new file mode 100644 index 000000000..8f4e90e7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5ECE71"; +declare const SiChianetwork: IconType; +export { SiChianetwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.mjs new file mode 100644 index 000000000..405f5308c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChianetwork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5ECE71"; +const SiChianetwork = React.forwardRef(function SiChianetwork2({ title = "Chia Network", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.4619 4.7065c-.0614 0-.3272.0205-.5726.041-.4294.0408-1.0428.1021-1.145.143-.0205 0-.1432.0205-.2454.041-.818.1226-1.8404.4498-2.413.777-.1021.0613-.2248.1227-.2453.1227-.1227.0409-.9815.6543-1.3087.9201-2.3515 1.9221-3.5988 4.928-3.0672 7.4227.0614.3067.0818.3067.2863.1431.3476-.2454.6543-.4499 1.0633-.6952.2454-.1432 1.3087-.6544 1.3496-.6544 0 0 .0818-.0409.184-.0818.9406-.4294 3.6602-1.37 5.0302-1.7176.041-.0205.2863-.0818.5112-.1431 1.2883-.3477 1.5132-.409 1.5132-.3477 0 .0205-.0818.041-.1636.0818-.4499.1636-1.6563.6544-1.7176.6953-.0205.0204-.041.0204-.0614.0204s-.1227.0409-.2454.1022-.2044.1023-.2249.1023-.1227.0409-.2454.1022c-.1227.0614-.2454.1023-.2454.1023l-.2862.1227-.2863.1226c-.1431 0-3.1694 1.595-4.1305 2.1675-.225.1227-.409.2454-.409.2454s-.3067.184-1.2678.7975c-1.0633.6748-2.8422 1.9221-3.926 2.781-.1227.1022-.2863.2249-.3476.2658-.9406.736-1.0633.8792-.5317.593 1.2065-.634 2.556-1.2678 3.5171-1.6563.593-.2454 1.2269-.409 1.6359-.4703l.184-.0205.4499.4499c1.145 1.145 2.372 1.738 4.1918 1.9834.4294.0614 1.8199.041 2.147-.0204.1023-.0205.3068-.0614.4704-.0818.1636-.0205.3476-.0614.3885-.0818.0409-.0205.184-.041.3067-.0818 2.0857-.5521 3.8851-1.8403 5.4801-3.967.0409-.0408.184-.2249.3067-.4089.1432-.184.2863-.368.3272-.4294.0409-.0409.1227-.184.2045-.2863.8179-1.1655 2.0039-3.0876 2.74-4.4985.0818-.1636.225-.409.2863-.5521.0613-.1432.3271-.6544.5725-1.1247.2454-.4703.4499-.8997.4499-.9201.0613-.1227.0409-.1636-.2658-.2863-.041-.0205-.2659-.1023-.5112-.1636-.2454-.0818-.5317-.1636-.634-.2045-.4089-.1431-1.1041-.3271-1.9425-.552-.7361-.1841-.9202-.2455-1.2064-.3068-.1432-.0205-.2863-.0613-.3272-.0818s-.1636-.0409-.2658-.0613c-.2863-.0614-.4294-.0818-.6953-.1432-1.0224-.2249-1.9016-.3067-3.3943-.3067-.6135-.0204-1.186 0-1.2678 0" }) + ] + } + ); +}); + +export { SiChianetwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.cjs new file mode 100644 index 000000000..dc832d2aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A2477"; +const SiChinaeasternairlines = React__namespace.forwardRef(function SiChinaeasternairlines2({ title = "China Eastern Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.572 2.383c-1.846 0-2.245.238-2.962 1.205-.38.516-3.568 4.915-5.009 6.898-.18.236-.446.486-1.03.486H0v.004c3.05 8.61 6.324 10.64 9.602 10.64h5.178c.07 0 .146-.08-.041-.124-3.805-.953-7.57-3.984-7.589-6.962.066 2.464 5.255 3.315 10.876 4.016.098.011.093-.065.063-.12l-.17-.293c-.02-.039-.043-.068-.124-.088-3.094-.787-6.242-1.938-6.242-3.01 0-2.032 5.272-4.042 11.27-4.96.195-.04.29-.076.42-.18.17-.136.536-.433.695-.554.096-.085.061-.11.025-.11-.16 0-.326.004-.485.01-7.898.219-15.544 2.008-16.253 4.55-.002.014-.01.027-.014.04.937-4.652 7.198-9.162 15.008-11.28.18-.052.239-.168.014-.168Z" }) + ] + } + ); +}); + +exports.default = SiChinaeasternairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.d.ts new file mode 100644 index 000000000..2c6f563a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A2477"; +declare const SiChinaeasternairlines: IconType; +export { SiChinaeasternairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.mjs new file mode 100644 index 000000000..99ce38283 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinaeasternairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A2477"; +const SiChinaeasternairlines = React.forwardRef(function SiChinaeasternairlines2({ title = "China Eastern Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.572 2.383c-1.846 0-2.245.238-2.962 1.205-.38.516-3.568 4.915-5.009 6.898-.18.236-.446.486-1.03.486H0v.004c3.05 8.61 6.324 10.64 9.602 10.64h5.178c.07 0 .146-.08-.041-.124-3.805-.953-7.57-3.984-7.589-6.962.066 2.464 5.255 3.315 10.876 4.016.098.011.093-.065.063-.12l-.17-.293c-.02-.039-.043-.068-.124-.088-3.094-.787-6.242-1.938-6.242-3.01 0-2.032 5.272-4.042 11.27-4.96.195-.04.29-.076.42-.18.17-.136.536-.433.695-.554.096-.085.061-.11.025-.11-.16 0-.326.004-.485.01-7.898.219-15.544 2.008-16.253 4.55-.002.014-.01.027-.014.04.937-4.652 7.198-9.162 15.008-11.28.18-.052.239-.168.014-.168Z" }) + ] + } + ); +}); + +export { SiChinaeasternairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.cjs new file mode 100644 index 000000000..7d8ed8bb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF2600"; +const SiChinarailway = React__namespace.forwardRef(function SiChinarailway2({ title = "China Railway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.642 18.64a8.035 8.035 0 1 0-7.284 0l-1.476 1.932a10.435 10.435 0 0 1 3.136-19.339 1.043 1.043 0 0 1 .939-1.186 11.478 11.478 0 0 1 2.086 0 1.043 1.043 0 0 1 .939 1.186 10.435 10.435 0 0 1 3.136 19.339zm2.805 4.04a.417.417 0 0 1 .336.41V24H5.217v-.91a.417.417 0 0 1 .336-.41l4.438-.887a1.46 1.46 0 0 0 1.174-1.432v-5.934a1.043 1.043 0 0 0-.757-1.003l-2.06-.59V10.94a1.46 1.46 0 0 1 1.345-1.456 29.217 29.217 0 0 1 4.614 0 1.46 1.46 0 0 1 1.345 1.456v1.896l-2.06.589a1.043 1.043 0 0 0-.757 1.003v5.934a1.46 1.46 0 0 0 1.174 1.432z" }) + ] + } + ); +}); + +exports.default = SiChinarailway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.d.ts new file mode 100644 index 000000000..b76aeab6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF2600"; +declare const SiChinarailway: IconType; +export { SiChinarailway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.mjs new file mode 100644 index 000000000..a894a3ce2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinarailway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF2600"; +const SiChinarailway = React.forwardRef(function SiChinarailway2({ title = "China Railway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.642 18.64a8.035 8.035 0 1 0-7.284 0l-1.476 1.932a10.435 10.435 0 0 1 3.136-19.339 1.043 1.043 0 0 1 .939-1.186 11.478 11.478 0 0 1 2.086 0 1.043 1.043 0 0 1 .939 1.186 10.435 10.435 0 0 1 3.136 19.339zm2.805 4.04a.417.417 0 0 1 .336.41V24H5.217v-.91a.417.417 0 0 1 .336-.41l4.438-.887a1.46 1.46 0 0 0 1.174-1.432v-5.934a1.043 1.043 0 0 0-.757-1.003l-2.06-.59V10.94a1.46 1.46 0 0 1 1.345-1.456 29.217 29.217 0 0 1 4.614 0 1.46 1.46 0 0 1 1.345 1.456v1.896l-2.06.589a1.043 1.043 0 0 0-.757 1.003v5.934a1.46 1.46 0 0 0 1.174 1.432z" }) + ] + } + ); +}); + +export { SiChinarailway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.cjs new file mode 100644 index 000000000..8e25ebcf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008BCB"; +const SiChinasouthernairlines = React__namespace.forwardRef(function SiChinasouthernairlines2({ title = "China Southern Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.4269 9.8628v.6196c.3071-.003.5555.1004.5555.1004-.7588.2595-1.1804 1.0664-1.1804 1.8426v2.6228c-.0417.0354-.0665.0665-.0941.0985-.1116-.344-.4517-.7569-.8049-.9524v-2.029c0-.7272.5308-1.5219 1.2808-1.6708v-.6351c-.2426-.0558-.426-.275-.426-.5342a.549.549 0 0 1 .5493-.5516.5506.5506 0 0 1 .5526.5516c0 .2591-.1868.4847-.4328.5376m-3.0299-.0035v.6355c.7491.149 1.2828.9432 1.2828 1.6704v2.0295c-.3556.195-.6943.6079-.8049.9519-.03-.0316-.0548-.0631-.0946-.0985v-2.6228c0-.7913-.4216-1.583-1.1794-1.8422 0 0 .247-.1038.5516-.1004v-.6234a.55.55 0 0 1-.425-.5342c0-.3057.243-.5511.5497-.5511a.5506.5506 0 0 1 .5516.5511c0 .2596-.1848.4789-.4318.5342m1.5162-.4217l-.003.5948c.293.0393.555.244.6448.4861-.3478.2261-.6297.5691-.7656.9946-.1334-.4255-.4157-.7685-.7636-.9946.1096-.242.3532-.4468.6433-.486v-.5968a.5497.5497 0 0 1-.4264-.5357.5496.5496 0 0 1 .5497-.5516c.3046 0 .553.246.553.5516 0 .262-.1848.4828-.4322.5376m-.1209 7.5837c1.7156 0 2.1013-1.4385 2.1542-1.8053v-.4846c-.5313.132-1.0053.4133-1.327.8354-.114-.493-.426-.914-.8272-1.1867-.4036.2727-.716.6938-.832 1.1867-.3188-.422-.7952-.7035-1.3245-.8354v.4846c.0514.3668.439 1.8053 2.1565 1.8053m-4.2333-5.006c-.0068-.7307.4949-1.326 1.5195-1.326.6783 0 1.488.5682 1.488 2.0266v2.1628c-.294-.193-.7034-.3702-.9266-.3736v-2.0163c0-.7724-.5546-.998-.815-.998.1474.1349.2362.3018.2362.5245 0 .41-.3416.7496-.753.7496-.411 0-.7306-.3028-.749-.7496m8.4666 0c.0043-.7307-.4978-1.326-1.52-1.326-.6793 0-1.4905.5682-1.4905 2.0266v2.1628c.295-.193.704-.3702.9252-.3736v-2.0163c0-.7724.5575-.998.8151-.998-.146.1349-.2343.3018-.2343.5245 0 .41.3406.7496.7525.7496.4128 0 .7326-.3028.752-.7496M15.9702 10.03c-.263-.1286-.4473-.3973-.4473-.705 0-.4332.3517-.7864.784-.7864.4347 0 .7855.3532.7855.7865a.7812.7812 0 0 1-.4469.7068v.2203c.2431.0252.5357.1266.7147.2183a4.0304 4.0304 0 0 1 .292-.0126c.9898 0 1.685.654 1.685 1.5574 0 .5565-.4987 1.065-1.0581 1.065-.5628 0-1.0722-.5517-.9708-1.1067 0 0-.0568.1916-.0568.4255V15.23c-.0247.323-.458 2.1056-2.4593 2.1056-2.0023 0-2.4374-1.7825-2.4617-2.1056v-2.831c0-.2338-.0572-.4254-.0572-.4254.1077.5336-.4086 1.1066-.9675 1.1066-.5637 0-1.0605-.5084-1.0605-1.065 0-.9033.6933-1.5573 1.6874-1.5573.1043 0 .2086.0068.2867.0126.182-.0917.489-.2003.7166-.2183v-.2232c-.2605-.1276-.4454-.3963-.4454-.704 0-.4332.3537-.7864.7865-.7864.4347 0 .7864.3532.7864.7865a.784.784 0 0 1-.4497.7093v.295c.066.0213.1353.0465.2003.0766.1218-.262.3668-.4667.6438-.5584V9.609c-.2663-.1271-.4487-.3954-.4487-.7093 0-.4352.3503-.785.783-.785a.7836.7836 0 0 1 .7855.785c0 .3139-.1815.5822-.4478.7093v.2387c.275.0902.5167.2964.638.5584.062-.03.1363-.0553.2023-.0767zM24 3.434h-6.8636L0 20.566h17.1364Z" }) + ] + } + ); +}); + +exports.default = SiChinasouthernairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.d.ts new file mode 100644 index 000000000..e2ca11ced --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008BCB"; +declare const SiChinasouthernairlines: IconType; +export { SiChinasouthernairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.mjs new file mode 100644 index 000000000..f64e9aa0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChinasouthernairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008BCB"; +const SiChinasouthernairlines = React.forwardRef(function SiChinasouthernairlines2({ title = "China Southern Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.4269 9.8628v.6196c.3071-.003.5555.1004.5555.1004-.7588.2595-1.1804 1.0664-1.1804 1.8426v2.6228c-.0417.0354-.0665.0665-.0941.0985-.1116-.344-.4517-.7569-.8049-.9524v-2.029c0-.7272.5308-1.5219 1.2808-1.6708v-.6351c-.2426-.0558-.426-.275-.426-.5342a.549.549 0 0 1 .5493-.5516.5506.5506 0 0 1 .5526.5516c0 .2591-.1868.4847-.4328.5376m-3.0299-.0035v.6355c.7491.149 1.2828.9432 1.2828 1.6704v2.0295c-.3556.195-.6943.6079-.8049.9519-.03-.0316-.0548-.0631-.0946-.0985v-2.6228c0-.7913-.4216-1.583-1.1794-1.8422 0 0 .247-.1038.5516-.1004v-.6234a.55.55 0 0 1-.425-.5342c0-.3057.243-.5511.5497-.5511a.5506.5506 0 0 1 .5516.5511c0 .2596-.1848.4789-.4318.5342m1.5162-.4217l-.003.5948c.293.0393.555.244.6448.4861-.3478.2261-.6297.5691-.7656.9946-.1334-.4255-.4157-.7685-.7636-.9946.1096-.242.3532-.4468.6433-.486v-.5968a.5497.5497 0 0 1-.4264-.5357.5496.5496 0 0 1 .5497-.5516c.3046 0 .553.246.553.5516 0 .262-.1848.4828-.4322.5376m-.1209 7.5837c1.7156 0 2.1013-1.4385 2.1542-1.8053v-.4846c-.5313.132-1.0053.4133-1.327.8354-.114-.493-.426-.914-.8272-1.1867-.4036.2727-.716.6938-.832 1.1867-.3188-.422-.7952-.7035-1.3245-.8354v.4846c.0514.3668.439 1.8053 2.1565 1.8053m-4.2333-5.006c-.0068-.7307.4949-1.326 1.5195-1.326.6783 0 1.488.5682 1.488 2.0266v2.1628c-.294-.193-.7034-.3702-.9266-.3736v-2.0163c0-.7724-.5546-.998-.815-.998.1474.1349.2362.3018.2362.5245 0 .41-.3416.7496-.753.7496-.411 0-.7306-.3028-.749-.7496m8.4666 0c.0043-.7307-.4978-1.326-1.52-1.326-.6793 0-1.4905.5682-1.4905 2.0266v2.1628c.295-.193.704-.3702.9252-.3736v-2.0163c0-.7724.5575-.998.8151-.998-.146.1349-.2343.3018-.2343.5245 0 .41.3406.7496.7525.7496.4128 0 .7326-.3028.752-.7496M15.9702 10.03c-.263-.1286-.4473-.3973-.4473-.705 0-.4332.3517-.7864.784-.7864.4347 0 .7855.3532.7855.7865a.7812.7812 0 0 1-.4469.7068v.2203c.2431.0252.5357.1266.7147.2183a4.0304 4.0304 0 0 1 .292-.0126c.9898 0 1.685.654 1.685 1.5574 0 .5565-.4987 1.065-1.0581 1.065-.5628 0-1.0722-.5517-.9708-1.1067 0 0-.0568.1916-.0568.4255V15.23c-.0247.323-.458 2.1056-2.4593 2.1056-2.0023 0-2.4374-1.7825-2.4617-2.1056v-2.831c0-.2338-.0572-.4254-.0572-.4254.1077.5336-.4086 1.1066-.9675 1.1066-.5637 0-1.0605-.5084-1.0605-1.065 0-.9033.6933-1.5573 1.6874-1.5573.1043 0 .2086.0068.2867.0126.182-.0917.489-.2003.7166-.2183v-.2232c-.2605-.1276-.4454-.3963-.4454-.704 0-.4332.3537-.7864.7865-.7864.4347 0 .7864.3532.7864.7865a.784.784 0 0 1-.4497.7093v.295c.066.0213.1353.0465.2003.0766.1218-.262.3668-.4667.6438-.5584V9.609c-.2663-.1271-.4487-.3954-.4487-.7093 0-.4352.3503-.785.783-.785a.7836.7836 0 0 1 .7855.785c0 .3139-.1815.5822-.4478.7093v.2387c.275.0902.5167.2964.638.5584.062-.03.1363-.0553.2023-.0767zM24 3.434h-6.8636L0 20.566h17.1364Z" }) + ] + } + ); +}); + +export { SiChinasouthernairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.cjs new file mode 100644 index 000000000..c0aa15d37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#80B5E3"; +const SiChocolatey = React__namespace.forwardRef(function SiChocolatey2({ title = "Chocolatey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 1.249l1.439 3.18L0 6.926l1.439 2.5L0 11.923l1.439 2.424L0 16.845l1.439 2.5L0 22.75l2.8-.91c6.3.01 12.696.006 18.096 0l3.104.91-2.044-3.635 1.136-1.892-2.196-2.272-.004-.017V2.005c-6.551-.001-12.243 0-18.091 0zm19.688 1.968v7.03l-.23-.898-1.438-4.39-3.56.605-1.89-2.343zm-11.695.004h4.563L9.539 4.428zm2.86 3.68a3.903 3.903 0 0 1 1.64.254c1.968.757 1.286 2.8.15 4.012-.378.378-1.21.227-.605-.908.228-.454.454-1.363-.227-1.59-1.515-.53-3.255.682-3.634 2.271-.378 1.363.606 2.801 2.347 2.423 1.439-.303 2.802-1.288 3.332-1.742.53-.455.907.38.301 1.288-.68.908-1.74 1.968-2.65 2.574-3.558 2.423-6.662-.758-5.375-4.392.677-1.845 2.454-4.041 4.72-4.19zm6.527 2.031a.66.66 0 0 1 .454.182c.324.326.204.972-.268 1.445-.473.474-1.121.593-1.446.268-.325-.326-.205-.972.267-1.445.292-.292.666-.461.993-.45zm-.42 3.233a.66.66 0 0 1 .454.182c.325.325.206.973-.268 1.446-.473.473-1.12.592-1.445.268-.324-.326-.205-.972.268-1.445.291-.292.664-.462.99-.451Z" }) + ] + } + ); +}); + +exports.default = SiChocolatey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.d.ts new file mode 100644 index 000000000..05ad1739f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#80B5E3"; +declare const SiChocolatey: IconType; +export { SiChocolatey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.mjs new file mode 100644 index 000000000..493f12864 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChocolatey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#80B5E3"; +const SiChocolatey = React.forwardRef(function SiChocolatey2({ title = "Chocolatey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 1.249l1.439 3.18L0 6.926l1.439 2.5L0 11.923l1.439 2.424L0 16.845l1.439 2.5L0 22.75l2.8-.91c6.3.01 12.696.006 18.096 0l3.104.91-2.044-3.635 1.136-1.892-2.196-2.272-.004-.017V2.005c-6.551-.001-12.243 0-18.091 0zm19.688 1.968v7.03l-.23-.898-1.438-4.39-3.56.605-1.89-2.343zm-11.695.004h4.563L9.539 4.428zm2.86 3.68a3.903 3.903 0 0 1 1.64.254c1.968.757 1.286 2.8.15 4.012-.378.378-1.21.227-.605-.908.228-.454.454-1.363-.227-1.59-1.515-.53-3.255.682-3.634 2.271-.378 1.363.606 2.801 2.347 2.423 1.439-.303 2.802-1.288 3.332-1.742.53-.455.907.38.301 1.288-.68.908-1.74 1.968-2.65 2.574-3.558 2.423-6.662-.758-5.375-4.392.677-1.845 2.454-4.041 4.72-4.19zm6.527 2.031a.66.66 0 0 1 .454.182c.324.326.204.972-.268 1.445-.473.474-1.121.593-1.446.268-.325-.326-.205-.972.267-1.445.292-.292.666-.461.993-.45zm-.42 3.233a.66.66 0 0 1 .454.182c.325.325.206.973-.268 1.446-.473.473-1.12.592-1.445.268-.324-.326-.205-.972.268-1.445.291-.292.664-.462.99-.451Z" }) + ] + } + ); +}); + +export { SiChocolatey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.cjs new file mode 100644 index 000000000..be11d3f4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC521F"; +const SiChromatic = React__namespace.forwardRef(function SiChromatic2({ title = "Chromatic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm-.006 3.43a3.372 3.372 0 0 1 3.37 3.369v2.199L9.628 5.689a4.261 4.261 0 0 0-.688-.32 3.351 3.351 0 0 1 3.053-1.94zm-4.498 2.6c.588 0 1.17.156 1.684.452l5.734 3.311-2.91 1.678-3.6-2.076a.46.46 0 0 0-.459 0L5.35 10.893c-.22.126-.428.27-.621.433a3.349 3.349 0 0 1-.155-3.61A3.385 3.385 0 0 1 7.496 6.03zm8.723.015a3.383 3.383 0 0 1 3.205 1.672 3.37 3.37 0 0 1-1.235 4.6l-5.736 3.308v-3.357l3.602-2.077a.459.459 0 0 0 .228-.398V6.799c0-.253-.021-.506-.064-.754zm-8.504 4.543v6.617c0 .254.021.505.066.754a3.4 3.4 0 0 1-.285.012 3.383 3.383 0 0 1-2.92-1.684 3.343 3.343 0 0 1-.338-2.555 3.342 3.342 0 0 1 1.57-2.044l1.907-1.1zm.908 0 2.912 1.68v4.152a.46.46 0 0 0 .23.396l2.594 1.498h.002c.22.127.45.235.688.32a3.35 3.35 0 0 1-3.055 1.938 3.373 3.373 0 0 1-3.371-3.367v-6.617zm10.647 2.088a3.347 3.347 0 0 1 .154 3.611 3.372 3.372 0 0 1-4.604 1.233l-1.908-1.1 5.738-3.309a4.31 4.31 0 0 0 .62-.435z" }) + ] + } + ); +}); + +exports.default = SiChromatic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.d.ts new file mode 100644 index 000000000..e7f208e41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC521F"; +declare const SiChromatic: IconType; +export { SiChromatic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.mjs new file mode 100644 index 000000000..d9e4760bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChromatic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC521F"; +const SiChromatic = React.forwardRef(function SiChromatic2({ title = "Chromatic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm-.006 3.43a3.372 3.372 0 0 1 3.37 3.369v2.199L9.628 5.689a4.261 4.261 0 0 0-.688-.32 3.351 3.351 0 0 1 3.053-1.94zm-4.498 2.6c.588 0 1.17.156 1.684.452l5.734 3.311-2.91 1.678-3.6-2.076a.46.46 0 0 0-.459 0L5.35 10.893c-.22.126-.428.27-.621.433a3.349 3.349 0 0 1-.155-3.61A3.385 3.385 0 0 1 7.496 6.03zm8.723.015a3.383 3.383 0 0 1 3.205 1.672 3.37 3.37 0 0 1-1.235 4.6l-5.736 3.308v-3.357l3.602-2.077a.459.459 0 0 0 .228-.398V6.799c0-.253-.021-.506-.064-.754zm-8.504 4.543v6.617c0 .254.021.505.066.754a3.4 3.4 0 0 1-.285.012 3.383 3.383 0 0 1-2.92-1.684 3.343 3.343 0 0 1-.338-2.555 3.342 3.342 0 0 1 1.57-2.044l1.907-1.1zm.908 0 2.912 1.68v4.152a.46.46 0 0 0 .23.396l2.594 1.498h.002c.22.127.45.235.688.32a3.35 3.35 0 0 1-3.055 1.938 3.373 3.373 0 0 1-3.371-3.367v-6.617zm10.647 2.088a3.347 3.347 0 0 1 .154 3.611 3.372 3.372 0 0 1-4.604 1.233l-1.908-1.1 5.738-3.309a4.31 4.31 0 0 0 .62-.435z" }) + ] + } + ); +}); + +export { SiChromatic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.cjs new file mode 100644 index 000000000..60f410972 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiChromewebstore = React__namespace.forwardRef(function SiChromewebstore2({ title = "Chrome Web Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 1.637v19.09c0 .9.736 1.636 1.636 1.636h.131a10.4 10.4 0 0 1-.13-1.636 10.3 10.3 0 0 1 1.667-5.64l4.202 7.276h1.128A3.77 3.77 0 0 1 12 16.958a3.77 3.77 0 0 1 3.366 5.406h1.048a4.7 4.7 0 0 0-1.587-5.406h6.83a10.34 10.34 0 0 1 .577 5.406h.13c.9 0 1.636-.737 1.636-1.637V1.637Zm9.273 2.181h5.454a1.09 1.09 0 1 1 0 2.182H9.273a1.09 1.09 0 1 1 0-2.182M12 10.364a10.36 10.36 0 0 1 9.233 5.652H12a4.71 4.71 0 0 0-4.677 4.149L3.91 14.25A10.34 10.34 0 0 1 12 10.364" }) + ] + } + ); +}); + +exports.default = SiChromewebstore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.d.ts new file mode 100644 index 000000000..603b08073 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiChromewebstore: IconType; +export { SiChromewebstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.mjs new file mode 100644 index 000000000..fab7b2d21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChromewebstore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiChromewebstore = React.forwardRef(function SiChromewebstore2({ title = "Chrome Web Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 1.637v19.09c0 .9.736 1.636 1.636 1.636h.131a10.4 10.4 0 0 1-.13-1.636 10.3 10.3 0 0 1 1.667-5.64l4.202 7.276h1.128A3.77 3.77 0 0 1 12 16.958a3.77 3.77 0 0 1 3.366 5.406h1.048a4.7 4.7 0 0 0-1.587-5.406h6.83a10.34 10.34 0 0 1 .577 5.406h.13c.9 0 1.636-.737 1.636-1.637V1.637Zm9.273 2.181h5.454a1.09 1.09 0 1 1 0 2.182H9.273a1.09 1.09 0 1 1 0-2.182M12 10.364a10.36 10.36 0 0 1 9.233 5.652H12a4.71 4.71 0 0 0-4.677 4.149L3.91 14.25A10.34 10.34 0 0 1 12 10.364" }) + ] + } + ); +}); + +export { SiChromewebstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.cjs new file mode 100644 index 000000000..c04912a22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiChrysler = React__namespace.forwardRef(function SiChrysler2({ title = "Chrysler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9996 12.1455c0-.0003.0004-.0007.0004-.001l-.0007.0003c-.0039-.0173-.0638-.0248-.172-.0258l-1.595-.0216c-2.4391-.0216-6.9786-.0638-7.1847-.0638h-.0501a1.8954 1.8954 0 0 0-.7028.0982l-.0913.0275a3.2546 3.2546 0 0 1-.795.1718c-.2837.0108-1.3633.0088-1.4085.0088s-1.1258 0-1.4085-.0078a3.2434 3.2434 0 0 1-.795-.1718l-.0913-.0275a1.9045 1.9045 0 0 0-.7037-.0982h-.0441c-.2071 0-4.7466.0206-7.1847.0432l-1.6008.0196c-.1089 0-.1727.0088-.1718.0265l.0913.0226c.336.069.6771.1107 1.0198.1247.6527.0128 5.4346.1325 5.5495.1345.2584-.0067.5155.039.7557.1343h1.4968s-.6046.0353-.6134.0726h-.0373c-.1512 0-.6066 0-.8647-.0118 0 0-.0186.0726.2444.0726.0923.0618.1884.1207.2758.1698h1.2868s-.5055.0304-.5153.0677c-.0599 0-.2797-.0059-.4908-.0118l-.2945-.0088s-.0147.0638.2267.0648l.0412.0255c.4833.217.9953.3632 1.5204.4338.1992.0382.4004.0648.6027.0795 0 0 .2444.0216.2022.0206a9.6487 9.6487 0 0 1-1.701-.2218 4.3198 4.3198 0 0 1-1.276-.5398 1.3917 1.3917 0 0 0-.7381-.2316c-.1698-.0118-5.6486-.2277-5.6604-.2277a5.3434 5.3434 0 0 1-1.0434-.1404L0 12.1258c0 .0147.0383.055.0707.0844.1688.1502.8097.4613 1.1837.5526.6488.157 4.6445.6655 5.3542.745l.3926.0442c1.0728.1158 2.4214.264 3.1085.3337a.8442.8442 0 0 0 .3926-.0216A4.1449 4.1449 0 0 1 12 13.606a4.3124 4.3124 0 0 1 1.5027.2581.8354.8354 0 0 0 .3877.0216c.6871-.0687 2.0396-.2189 3.1035-.3367l.3975-.0442c.7096-.0785 4.7044-.5673 5.3532-.7244.3749-.0903 1.0149-.4024 1.1847-.5526.0303-.0274.067-.0653.0697-.0812l.001-.0001c0-.0004-.0004-.0007-.0004-.001zm-12.2646.9952c-.795 0-1.5812-.0108-1.8099-.0677-.5447-.1354-.7989-.3838-.8421-.4593-.0432-.0756-.0324-.0746.0353-.0746h5.7595c.0677 0 .0726.0069.0344.0746-.0383.0677-.2945.3239-.8412.4593-.2287.0569-1.0149.0658-1.8099.0677h-.5261zm12.1884-.9707a5.345 5.345 0 0 1-1.0443.1413c-.0118 0-5.4965.1963-5.6614.21a1.3917 1.3917 0 0 0-.7381.2316 4.3198 4.3198 0 0 1-1.276.5398 9.6487 9.6487 0 0 1-1.701.2218c-.0422 0 .2022-.0206.2022-.0206a5.1874 5.1874 0 0 0 .6017-.0795 5.5189 5.5189 0 0 0 1.5213-.4338l.0471-.0255c.2415 0 .2277-.0648.2277-.0648l-.2945.0088c-.2179.0059-.4417.0118-.4976.0118-.0098-.0373-.5114-.0677-.5114-.0677h1.2858a5.3585 5.3585 0 0 0 .2709-.1678c.263 0 .2454-.0726.2454-.0726-.2827.0069-.8088.0137-.902.0108-.0088-.0373-.5693-.0726-.5693-.0726h1.4458a1.9327 1.9327 0 0 1 .7597-.1335l5.5534-.1139a6.3607 6.3607 0 0 0 1.0198-.1247l.0684-.0169-.0536.018zm-11.9627.532h.0903l-.1747.1247v.0991h-.1325v-.0972l-.1884-.1266h.1541l.1286.0805.1226-.0805zm.8088.1826h.3023v.0412h-.4338v-.2248h.1315v.1836zm.5408 0h.3131v.0412h-.4427v-.2248h.4378v.0412h-.3082v.051h.3023v.0412h-.3023v.0502zm-2.5225-.1826h.1325v.2238h-.1354v-.0913h-.2778v.0913h-.1325v-.2238h.1325v.0903h.2778l.0029-.0903zm.5978.1256l.1698.0982h-.1492s-.1364-.0972-.1678-.1217c.1345.0049.157-.0098.157-.0324s-.106-.0353-.2267-.0285v.1826h-.1404v-.2228h.3053c.1502 0 .1963.0314.1963.0628 0 .0285-.055.054-.1443.0618zm2.7148-.0559c0-.0226-.106-.0353-.2267-.0285v.1845h-.1394v-.2228h.3013c.1502 0 .1963.0344.1963.0628 0 .0285-.055.054-.1443.0599l.1698.0982h-.1492s-.1364-.0972-.1678-.1217c.1335.0049.16-.0098.16-.0324zm-1.5576.0873c0 .0569-.1227.0756-.2513.0756a1.6114 1.6114 0 0 1-.2071-.0137l.0137-.0481a.9392.9392 0 0 0 .1894.0137c.108 0 .1148-.0128.1148-.0265 0-.0137-.0304-.0226-.0785-.0226l-.0982-.0118c-.0952-.0118-.1345-.0157-.1345-.0726s.1237-.0667.2032-.0667a1.814 1.814 0 0 1 .2081.0177l-.0108.0432a1.1384 1.1384 0 0 0-.1639-.0137c-.0844 0-.1031.0049-.1031.0196s.0275.0236.0697.0236l.1139.0079c.0894.0136.1326.0352.1346.0744zM9.875 12.81c0 .052.1266.0736.211.0736s.1639-.0088.1826-.0088l-.0137.0461c-.0236.002-.106.0108-.1963.0108-.1678 0-.318-.0402-.318-.1217s.1502-.1217.318-.1217c.0982 0 .1757.0098.1963.0098l.0137.0471a1.9641 1.9641 0 0 0-.1826-.0098c-.0883 0-.211.0225-.211.0746zm.9972-2.1996l-.5497-.4976h.3651l.2091.1767.2287.1963.0412.0373.0412-.0363.422-.371h.1423c-.1777.1698-.5094.4908-.5094.4908l-.0196.0186v.4319h-.3494v-.4281l-.0215-.0186zm5.3768.4466h-1.4732v-.9452h.3259v.8284h1.1474v.1168zm2.1858-.0059H16.938v-.9374h1.4782v.1168h-1.1631v.2915h1.1435v.1207h-1.1435v.2925h1.1817v.1159zm-12.4142.002h-.3327v-.9432h.3327v.4172h.9148V10.11h.3308v.9432h-.3308V10.64h-.9148v.4131zm2.5441-.003H8.229v-.9452h.8834c.168-.0107.3362.0186.4908.0854a.1964.1964 0 0 1 .1188.1678c-.001.108-.0805.214-.3612.2444l-.0805.0088.0618.0491c.0893.0726.3121.2945.4162.3926l.0097.003h-.3847c-.0569-.0628-.373-.3494-.5104-.4908a2.1988 2.1988 0 0 0 .3926-.0481.1433.1433 0 0 0 .0982-.1315.1152.1152 0 0 0-.052-.0913c-.0805-.0677-.265-.0677-.4809-.0677h-.266v.8235zm4.9056-.2424c0-.0569-.0491-.0834-.0982-.0982a1.2952 1.2952 0 0 0-.2032-.0363c-.1845-.0236-.2787-.0373-.3435-.0481a.9384.9384 0 0 1-.3406-.0982.1872.1872 0 0 1-.0932-.1727c-.001-.0991.0844-.162.2228-.2032.146-.0362.2962-.053.4466-.0501.2342.0027.468.0208.6998.054l-.0226.1139a3.124 3.124 0 0 0-.5408-.0501 1.2286 1.2286 0 0 0-.2945.0236c-.0609.0167-.0982.054-.0982.0982a.1091.1091 0 0 0 .0883.0982c.06.017.1214.0282.1835.0334.1031.0098.2483.0304.3867.0491a.8507.8507 0 0 1 .3308.0982.1906.1906 0 0 1 .0982.1698c.001.0962-.0864.1698-.2444.2208a2.0935 2.0935 0 0 1-.5889.0707l.001-.0069a4.8331 4.8331 0 0 1-.6743-.053l.0294-.1345c.2054.0451.415.0678.6252.0677a.8745.8745 0 0 0 .3514-.0481.112.112 0 0 0 .0787-.0982zm-10.2872-.2209c0-.158.1031-.2709.2778-.3543a1.622 1.622 0 0 1 .6782-.1276c.1911.0011.3819.0146.5712.0402l.0265.1286a5.1308 5.1308 0 0 0-.5212-.0353 1.2396 1.2396 0 0 0-.4397.0766c-.1325.052-.2434.1374-.2434.2689.001.1315.1109.2169.2434.2689.1407.0519.2897.0778.4397.0766a5.1308 5.1308 0 0 0 .5212-.0353l-.0344.1315a4.4382 4.4382 0 0 1-.5712.0402 1.6324 1.6324 0 0 1-.6704-.1247c-.1796-.0834-.2777-.2002-.2777-.3543zm16.4207.4731h-.3318v-.9462h.8834a1.0791 1.0791 0 0 1 .4908.0864.1964.1964 0 0 1 .1188.1669c-.001.1089-.0805.215-.3612.2454l-.0805.0079.0618.0491c.0893.0726.3121.2895.4162.3926v.001h-.3789c-.0569-.0628-.374-.3494-.5104-.4908a2.1177 2.1177 0 0 0 .3926-.0491.1424.1424 0 0 0 .0982-.1305.1152.1152 0 0 0-.052-.0913c-.0815-.0687-.265-.0687-.4809-.0687h-.266v.8273z" }) + ] + } + ); +}); + +exports.default = SiChrysler; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.d.ts new file mode 100644 index 000000000..a0cd4d200 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiChrysler: IconType; +export { SiChrysler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.mjs new file mode 100644 index 000000000..82625dc52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChrysler.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiChrysler = React.forwardRef(function SiChrysler2({ title = "Chrysler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9996 12.1455c0-.0003.0004-.0007.0004-.001l-.0007.0003c-.0039-.0173-.0638-.0248-.172-.0258l-1.595-.0216c-2.4391-.0216-6.9786-.0638-7.1847-.0638h-.0501a1.8954 1.8954 0 0 0-.7028.0982l-.0913.0275a3.2546 3.2546 0 0 1-.795.1718c-.2837.0108-1.3633.0088-1.4085.0088s-1.1258 0-1.4085-.0078a3.2434 3.2434 0 0 1-.795-.1718l-.0913-.0275a1.9045 1.9045 0 0 0-.7037-.0982h-.0441c-.2071 0-4.7466.0206-7.1847.0432l-1.6008.0196c-.1089 0-.1727.0088-.1718.0265l.0913.0226c.336.069.6771.1107 1.0198.1247.6527.0128 5.4346.1325 5.5495.1345.2584-.0067.5155.039.7557.1343h1.4968s-.6046.0353-.6134.0726h-.0373c-.1512 0-.6066 0-.8647-.0118 0 0-.0186.0726.2444.0726.0923.0618.1884.1207.2758.1698h1.2868s-.5055.0304-.5153.0677c-.0599 0-.2797-.0059-.4908-.0118l-.2945-.0088s-.0147.0638.2267.0648l.0412.0255c.4833.217.9953.3632 1.5204.4338.1992.0382.4004.0648.6027.0795 0 0 .2444.0216.2022.0206a9.6487 9.6487 0 0 1-1.701-.2218 4.3198 4.3198 0 0 1-1.276-.5398 1.3917 1.3917 0 0 0-.7381-.2316c-.1698-.0118-5.6486-.2277-5.6604-.2277a5.3434 5.3434 0 0 1-1.0434-.1404L0 12.1258c0 .0147.0383.055.0707.0844.1688.1502.8097.4613 1.1837.5526.6488.157 4.6445.6655 5.3542.745l.3926.0442c1.0728.1158 2.4214.264 3.1085.3337a.8442.8442 0 0 0 .3926-.0216A4.1449 4.1449 0 0 1 12 13.606a4.3124 4.3124 0 0 1 1.5027.2581.8354.8354 0 0 0 .3877.0216c.6871-.0687 2.0396-.2189 3.1035-.3367l.3975-.0442c.7096-.0785 4.7044-.5673 5.3532-.7244.3749-.0903 1.0149-.4024 1.1847-.5526.0303-.0274.067-.0653.0697-.0812l.001-.0001c0-.0004-.0004-.0007-.0004-.001zm-12.2646.9952c-.795 0-1.5812-.0108-1.8099-.0677-.5447-.1354-.7989-.3838-.8421-.4593-.0432-.0756-.0324-.0746.0353-.0746h5.7595c.0677 0 .0726.0069.0344.0746-.0383.0677-.2945.3239-.8412.4593-.2287.0569-1.0149.0658-1.8099.0677h-.5261zm12.1884-.9707a5.345 5.345 0 0 1-1.0443.1413c-.0118 0-5.4965.1963-5.6614.21a1.3917 1.3917 0 0 0-.7381.2316 4.3198 4.3198 0 0 1-1.276.5398 9.6487 9.6487 0 0 1-1.701.2218c-.0422 0 .2022-.0206.2022-.0206a5.1874 5.1874 0 0 0 .6017-.0795 5.5189 5.5189 0 0 0 1.5213-.4338l.0471-.0255c.2415 0 .2277-.0648.2277-.0648l-.2945.0088c-.2179.0059-.4417.0118-.4976.0118-.0098-.0373-.5114-.0677-.5114-.0677h1.2858a5.3585 5.3585 0 0 0 .2709-.1678c.263 0 .2454-.0726.2454-.0726-.2827.0069-.8088.0137-.902.0108-.0088-.0373-.5693-.0726-.5693-.0726h1.4458a1.9327 1.9327 0 0 1 .7597-.1335l5.5534-.1139a6.3607 6.3607 0 0 0 1.0198-.1247l.0684-.0169-.0536.018zm-11.9627.532h.0903l-.1747.1247v.0991h-.1325v-.0972l-.1884-.1266h.1541l.1286.0805.1226-.0805zm.8088.1826h.3023v.0412h-.4338v-.2248h.1315v.1836zm.5408 0h.3131v.0412h-.4427v-.2248h.4378v.0412h-.3082v.051h.3023v.0412h-.3023v.0502zm-2.5225-.1826h.1325v.2238h-.1354v-.0913h-.2778v.0913h-.1325v-.2238h.1325v.0903h.2778l.0029-.0903zm.5978.1256l.1698.0982h-.1492s-.1364-.0972-.1678-.1217c.1345.0049.157-.0098.157-.0324s-.106-.0353-.2267-.0285v.1826h-.1404v-.2228h.3053c.1502 0 .1963.0314.1963.0628 0 .0285-.055.054-.1443.0618zm2.7148-.0559c0-.0226-.106-.0353-.2267-.0285v.1845h-.1394v-.2228h.3013c.1502 0 .1963.0344.1963.0628 0 .0285-.055.054-.1443.0599l.1698.0982h-.1492s-.1364-.0972-.1678-.1217c.1335.0049.16-.0098.16-.0324zm-1.5576.0873c0 .0569-.1227.0756-.2513.0756a1.6114 1.6114 0 0 1-.2071-.0137l.0137-.0481a.9392.9392 0 0 0 .1894.0137c.108 0 .1148-.0128.1148-.0265 0-.0137-.0304-.0226-.0785-.0226l-.0982-.0118c-.0952-.0118-.1345-.0157-.1345-.0726s.1237-.0667.2032-.0667a1.814 1.814 0 0 1 .2081.0177l-.0108.0432a1.1384 1.1384 0 0 0-.1639-.0137c-.0844 0-.1031.0049-.1031.0196s.0275.0236.0697.0236l.1139.0079c.0894.0136.1326.0352.1346.0744zM9.875 12.81c0 .052.1266.0736.211.0736s.1639-.0088.1826-.0088l-.0137.0461c-.0236.002-.106.0108-.1963.0108-.1678 0-.318-.0402-.318-.1217s.1502-.1217.318-.1217c.0982 0 .1757.0098.1963.0098l.0137.0471a1.9641 1.9641 0 0 0-.1826-.0098c-.0883 0-.211.0225-.211.0746zm.9972-2.1996l-.5497-.4976h.3651l.2091.1767.2287.1963.0412.0373.0412-.0363.422-.371h.1423c-.1777.1698-.5094.4908-.5094.4908l-.0196.0186v.4319h-.3494v-.4281l-.0215-.0186zm5.3768.4466h-1.4732v-.9452h.3259v.8284h1.1474v.1168zm2.1858-.0059H16.938v-.9374h1.4782v.1168h-1.1631v.2915h1.1435v.1207h-1.1435v.2925h1.1817v.1159zm-12.4142.002h-.3327v-.9432h.3327v.4172h.9148V10.11h.3308v.9432h-.3308V10.64h-.9148v.4131zm2.5441-.003H8.229v-.9452h.8834c.168-.0107.3362.0186.4908.0854a.1964.1964 0 0 1 .1188.1678c-.001.108-.0805.214-.3612.2444l-.0805.0088.0618.0491c.0893.0726.3121.2945.4162.3926l.0097.003h-.3847c-.0569-.0628-.373-.3494-.5104-.4908a2.1988 2.1988 0 0 0 .3926-.0481.1433.1433 0 0 0 .0982-.1315.1152.1152 0 0 0-.052-.0913c-.0805-.0677-.265-.0677-.4809-.0677h-.266v.8235zm4.9056-.2424c0-.0569-.0491-.0834-.0982-.0982a1.2952 1.2952 0 0 0-.2032-.0363c-.1845-.0236-.2787-.0373-.3435-.0481a.9384.9384 0 0 1-.3406-.0982.1872.1872 0 0 1-.0932-.1727c-.001-.0991.0844-.162.2228-.2032.146-.0362.2962-.053.4466-.0501.2342.0027.468.0208.6998.054l-.0226.1139a3.124 3.124 0 0 0-.5408-.0501 1.2286 1.2286 0 0 0-.2945.0236c-.0609.0167-.0982.054-.0982.0982a.1091.1091 0 0 0 .0883.0982c.06.017.1214.0282.1835.0334.1031.0098.2483.0304.3867.0491a.8507.8507 0 0 1 .3308.0982.1906.1906 0 0 1 .0982.1698c.001.0962-.0864.1698-.2444.2208a2.0935 2.0935 0 0 1-.5889.0707l.001-.0069a4.8331 4.8331 0 0 1-.6743-.053l.0294-.1345c.2054.0451.415.0678.6252.0677a.8745.8745 0 0 0 .3514-.0481.112.112 0 0 0 .0787-.0982zm-10.2872-.2209c0-.158.1031-.2709.2778-.3543a1.622 1.622 0 0 1 .6782-.1276c.1911.0011.3819.0146.5712.0402l.0265.1286a5.1308 5.1308 0 0 0-.5212-.0353 1.2396 1.2396 0 0 0-.4397.0766c-.1325.052-.2434.1374-.2434.2689.001.1315.1109.2169.2434.2689.1407.0519.2897.0778.4397.0766a5.1308 5.1308 0 0 0 .5212-.0353l-.0344.1315a4.4382 4.4382 0 0 1-.5712.0402 1.6324 1.6324 0 0 1-.6704-.1247c-.1796-.0834-.2777-.2002-.2777-.3543zm16.4207.4731h-.3318v-.9462h.8834a1.0791 1.0791 0 0 1 .4908.0864.1964.1964 0 0 1 .1188.1669c-.001.1089-.0805.215-.3612.2454l-.0805.0079.0618.0491c.0893.0726.3121.2895.4162.3926v.001h-.3789c-.0569-.0628-.374-.3494-.5104-.4908a2.1177 2.1177 0 0 0 .3926-.0491.1424.1424 0 0 0 .0982-.1305.1152.1152 0 0 0-.052-.0913c-.0815-.0687-.265-.0687-.4809-.0687h-.266v.8273z" }) + ] + } + ); +}); + +export { SiChrysler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.cjs new file mode 100644 index 000000000..2ae8953ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CF103E"; +const SiChupachups = React__namespace.forwardRef(function SiChupachups2({ title = "Chupa Chups", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.2056.0007c-1.1953-.0181-2.3567.4498-3.206 1.2882C10.7647.0694 8.8692-.366 7.1692.338c-1.7001.7042-2.7325 2.3525-2.7435 4.088-1.7358.0114-3.3842 1.0438-4.0883 2.7435-.7042 1.6998-.2684 3.5954.9512 4.831C.069 13.2354-.3665 15.131.3373 16.831c.7041 1.6998 2.3525 2.7319 4.0886 2.743.0107 1.736 1.043 3.3846 2.7432 4.0886 1.7.7042 3.5958.2684 4.8309-.9513 1.2349 1.2197 3.1304 1.6551 4.8306.951 1.6997-.704 2.7318-2.3523 2.7428-4.0882 1.736-.011 3.3848-1.0433 4.0888-2.7431.7041-1.7002.2683-3.5955-.9513-4.8314 1.2196-1.2352 1.6554-3.1306.9513-4.8304-.704-1.6997-2.3528-2.7322-4.0888-2.7432-.0107-1.7356-1.0431-3.384-2.7428-4.0884a4.416 4.416 0 0 0-1.625-.3369zM8.8546.623C10.09.6207 11.2772 1.222 12 2.2524 13.0059.8188 14.9096.2157 16.5923.913c1.683.6967 2.6026 2.4695 2.3 4.1948 1.725-.3027 3.498.6174 4.1947 2.2998.6968 1.6826.0938 3.5866-1.3395 4.5924 1.4333 1.0063 2.0363 2.91 1.3395 4.5928-.697 1.6822-2.4694 2.6023-4.1943 2.2998.3022 1.725-.6177 3.4982-2.3001 4.1949-1.683.6967-3.587.0937-4.593-1.3396-1.0057 1.4333-2.9097 2.0363-4.5922 1.3396-1.6826-.6967-2.6023-2.4695-2.3-4.1944-1.7254.3024-3.498-.6178-4.1949-2.3-.697-1.683-.0944-3.587 1.3396-4.5931C.8184 10.9942.2155 9.0905.9125 7.4078c.6968-1.6826 2.4698-2.6027 4.1948-2.3-.3028-1.7253.6175-3.498 2.3-4.1948a3.7897 3.7897 0 0 1 1.4475-.29zm.2617.4925a3.793 3.793 0 0 0-1.5049.29c-1.5743.6522-2.4823 2.246-2.3451 3.8613-1.6153-.1372-3.209.771-3.8614 2.3448C.753 9.1861 1.2377 10.9553 2.4772 12 1.238 13.0453.753 14.8143 1.405 16.3889c.6525 1.5738 2.2464 2.4821 3.8614 2.345-.1372 1.6154.7708 3.209 2.3451 3.8612 1.5743.652 3.3433.1672 4.3883-1.0722 1.045 1.2391 2.814 1.7242 4.3885 1.0722 1.574-.6524 2.4824-2.2462 2.345-3.8612 1.6154.1369 3.209-.7715 3.861-2.3455.6522-1.5742.1677-3.3431-1.0718-4.3884 1.2392-1.0453 1.724-2.8142 1.0719-4.3885-.6521-1.5742-2.246-2.4824-3.8613-2.3452.1374-1.6151-.7708-3.2087-2.345-3.8608-1.5743-.652-3.3433-.1671-4.3883 1.072-.7186-.852-1.7792-1.3476-2.8834-1.362zm.1288.575a3.8514 3.8514 0 0 1 2.7546 1.1035C13.062 1.7483 14.69 1.3756 16.15 1.9804c1.4597.6047 2.3476 2.0192 2.3592 3.5096 1.491.0116 2.9055.8994 3.5102 2.3593.6049 1.46.232 3.0882-.8135 4.1507 1.0456 1.0624 1.4184 2.6906.8135 4.1505-.605 1.46-2.0192 2.3475-3.51 2.3593-.0115 1.4908-.8993 2.9055-2.3594 3.5104-1.46.6045-3.0879.2318-4.15-.8138-1.0624 1.0458-2.6905 1.4183-4.1503.8138-1.46-.6049-2.348-2.0196-2.3596-3.51-1.4906-.0119-2.9053-.8998-3.5103-2.3597-.6045-1.4596-.2319-3.0878.8137-4.1502-1.0458-1.0624-1.4182-2.6906-.8134-4.151.6046-1.4599 2.0191-2.3474 3.5098-2.359.0113-1.4906.8989-2.905 2.3595-3.5099a3.7971 3.7971 0 0 1 1.3957-.29zM6.821 5.9463c-.4963.0028-1.0034.2088-1.3915.4873-.9826.7051-1.552 1.765-1.5075 2.9352.0236.6227.3794 1.2746.9944 1.5076.7724.2935 1.396-.0028 2.0429-.4427l-.1765.43 1.0606.0006 1.0627-2.3575c.1-.2227.5938-.1762.481.0881l-.6535 1.532c-.1047.245-.0169.5406.2162.6934.4885.32 1.0588.004 1.48-.2484.052.1283.1102.2726.2443.3409.3872.1963.9427.0092 1.2606-.2028.023-.0153.1375.128.2673.2028.4295.2472.9943.0295 1.351-.219-.2173.4977-.4285 1.2961-.9464 1.5181-.0888.0381-.2882-.0427-.2645.096.1926.225.5255.2585.826.2048.9148-.1628 1.0627-1.179 1.4556-1.8244.1085.116.2114.2512.381.2806.9732.1672 1.5356-.83 2.2055-1.3632-.1075.3432-.2886.8839.1043 1.2508.3803.3553 1.0707.1246 1.4394-.1523l.1442.2286c.115.182.3993.1592.6054.1123.2356-.0535.6068-.2073.6056-.4052-.287.0463-.4815-.1071-.3609-.3968.3755-.9027 1.1694-2.7194 1.1694-2.7194h-1.044l-.1254.3013c-.068-.1485-.2174-.2837-.369-.3127-1.2422-.2401-1.6844 1.1902-2.3773 1.6315.1205-.437.3887-1.1607-.0443-1.5154-.3217-.263-.7507-.0466-1.0827.0845l.0673-.1892h-.9904l-1.0941 2.479c-.0798.1809-.2666.2795-.4449.3046-.0793.011-.1597-.0274-.2085-.0965-.0595-.0833-.058-.1944-.0198-.2805l1.0612-2.4066h-1.0673l-.9406 2.15c-.006.0144-.1833.5038-.3687.5694-.0925.0327-.213.0081-.2644-.0883-.0405-.076-.0235-.1815.0078-.2526l1.0517-2.3785H11.62l-1.086 2.4626c-.0859.1942-.526.4166-.6536.1204-.0454-.1052-.022-.2245.0202-.3206l.4811-1.099c.1483-.338.5155-.8832.068-1.1466-.463-.2726-.921.068-1.2174.2594l.7523-1.7509H8.9478L7.3899 9.48c-.204.449-.7536.6712-1.2146.751-.3688.064-.7448-.0152-.9382-.3209-.4688-.7416-.0705-1.658.2965-2.3135.2716-.4855.7437-1.1352 1.3715-1.0868.1079.0083.234.0567.2766.1805.143.4128-.3268.6998-.6254.8702.0564.3558.6835.3803.9384.2443.3277-.1743.539-.5163.5653-.87.0217-.2922-.1296-.5774-.385-.7458-.262-.173-.556-.2444-.8538-.2427zm12.4299 2.294c.1901.0033.2381.185.1688.3427l-.702 1.5919c-.0606.1378-.248.2035-.409.1324-.0478-.021-.104-.076-.1043-.1324-.0033-.4853.2456-.923.4573-1.3431.1142-.2276.2587-.5599.5493-.5897a.3343.3343 0 0 1 .0399-.0017zm-3.335.0072c.0899.003.1665.0445.1795.127.0711.4493-.5303 1.6964-.9302 1.9126-.1004.0543-.2483.0044-.2728-.1041-.022-.0974.0306-.2071.0722-.3008l.6457-1.4596c.0525-.1189.19-.1789.3056-.175zm-6.303 3.1817l-1.124.0045-1.7048 3.8193c-.5372.5693-1.2974 1.1229-2.0564.8124-.3688-.1509-.5473-.5486-.5574-.9263-.0177-.6733.1488-1.289.5014-1.8086.342-.504.7937-1.1283 1.4474-1.1951.1721-.0175.3326.075.3969.2289.0803.192-.0153.3892-.1402.5211-.144.153-.337.246-.5133.2806.0906.4412.734.4207 1.0544.2772.2442-.11.4806-.35.5495-.6057.0836-.3098.0383-.6695-.1642-.9186-.3791-.465-1.0279-.5176-1.588-.3887-1.2165.28-2.3287 1.3853-2.6427 2.5743-.2395.9087-.1822 2.0852.682 2.6142.9996.6125 1.9043-.0058 2.6045-.5139l-.2575.5786 1.1494.003 1.239-2.802c.1231-.2785.6937-.234.5376.1201l-.6818 1.5438c-.087.1972-.1522.3845-.1522.5976 0 .229.0833.471.3123.5694.5578.2385 1.11-.1131 1.527-.47.0537.273.205.4565.494.5179.4516.0959.8182-.1604 1.1711-.3686.068.128.109.2812.2566.3567.4342.2218.9632-.0281 1.3402-.2363l-.3943.863c-.9815-.2082-2.0948-.2582-3.0592.0747-.532.184-1.0934.691-1.1347 1.3075-.031.4587.1895.8673.5693 1.099.7596.462 1.8348.4653 2.6425.0958.4793-.2194.8899-.577 1.2388-1.0065 1.5761.333 3.4885.589 4.6032-.8216.0211-.0271.173-.2487.2006-.4454-.2086.1366-.44.2202-.6818.2646-.5984.111-1.2287.0944-1.847.0425-.4098-.034-1.1304-.1828-1.4892-.3505l.5978-1.3038c.0921.2085.2696.3657.4853.409.6628.133 1.1861-.2979 1.6075-.758l1.9608-2.1407c.0653-.0715.1707-.203.2925-.1808.0367.0068.0548.05.0407.0883-.1106.295-.2242.5895-.3133.8984-.1354.4696-.0843 1.0261-.3685 1.431-.0669.0952-.1804.1427-.2927.1486-.1164.006-.2264-.0519-.277-.1606-.0903-.1956.0397-.4238.1805-.557-.0705-.0591-.17-.0683-.2351-.0637-.1672.0122-.3155.1068-.4185.244-.0992.1324-.1362.3117-.1121.4928.0362.272.2962.4922.5496.5577.5403.1392 1.0957-.0172 1.5154-.377.7315-.6272.5-1.6633.425-2.494-.037-.4122.1765-.802.5495-.9744-.1026-.1256-.2454-.168-.3344-.1795-1.1026-.139-1.8218 1.2796-2.489 1.6753.0314-.1304.3402-1.281-.2078-1.6083-.387-.2303-.8384-.004-1.1552.2165.011-.0568.036-.2084.036-.2084h-1.0338l-1.332 3.0032c-.072.163-.2684.2052-.4286.2088-.0804.002-.1598-.0265-.1966-.1042-.0352-.0748-.0461-.1518-.0122-.2287l1.2861-2.8884h-1.137l-1.2755 2.8884c-.0517.1164-.1728.1762-.2928.1885-.0763.0076-.1602-.0484-.2086-.12-.0435-.0647-.0383-.1777-.008-.2488l1.1626-2.708h-1.1167l-1.2489 2.8523c-.0704.161-.241.2864-.4092.3288-.1044.0263-.2131.0007-.2725-.0845-.0609-.0873-.0417-.1994 0-.3044.29-.7285.682-1.4192.9264-2.1652.0646-.1982.035-.4453-.1405-.5693-.4426-.314-.966-.0667-1.3553.1882zm6.3363 2.3177c.0784.0056.1475.0595.1823.1211.0481.086.037.2212.0079.3127-.1865.5829-.4699 1.1878-.7859 1.6762-.1007.155-.529.2388-.529 0v-.1322l.8056-1.8085c.0496-.1115.1692-.155.285-.1685a.1868.1868 0 0 1 .034-.0008zm-5.3643 4.849c.1608.002.3222.0152.4782.0275.346.0275.6818.1045 1.0064.2007-.4502.7776-1.4392 1.2001-2.2655.7178-.3268-.1911-.3654-.6248.0082-.8061.238-.1154.5046-.1432.7727-.1399zm3.1186.7396a.8233.8233 0 0 0-.3883.0973c-.1232.0648-.2269.1618-.3094.2916-.0822.1294-.1239.2739-.1239.4323 0 .2272.0803.421.2409.5813.1603.1597.3539.24.5807.24.2253 0 .4186-.0806.5797-.2413.1606-.1608.241-.354.241-.58 0-.159-.0416-.3043-.1247-.4347-.0836-.1301-.1868-.2272-.311-.2906-.1238-.064-.2525-.096-.385-.096zm.0008.1611c.177 0 .3314.063.4632.1893.1314.1258.1972.2833.1972.4708 0 .1815-.0648.3374-.1945.4665-.129.1303-.2846.195-.4659.195-.1816 0-.337-.0644-.4658-.1936-.1292-.1287-.1935-.2852-.1935-.468 0-.1874.0658-.3449.1972-.4707.1315-.1263.2853-.1893.4621-.1893zm-.372.2284v.871h.177v-.3577h.0461c.0555 0 .0993.0152.1313.0445.0317.0296.0697.0867.1132.1721l.0727.1412h.219l-.1033-.1759c-.05-.0848-.0859-.1378-.1067-.1585a.2044.2044 0 0 0-.0777-.0467c.0702-.0104.1267-.0372.1703-.0805.043-.0429.0645-.097.0645-.1622 0-.0671-.0199-.1224-.0596-.1655-.04-.0431-.0837-.0674-.1315-.0736-.0473-.0057-.1607-.0082-.3383-.0082zm.177.1383h.0718c.0785 0 .1328.0015.1623.0052a.1292.1292 0 0 1 .076.0357.1032.1032 0 0 1 .0316.077.1088.1088 0 0 1-.0294.0771.1197.1197 0 0 1-.072.0367c-.0281.004-.0848.0062-.1685.0062h-.0718Z" }) + ] + } + ); +}); + +exports.default = SiChupachups; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.d.ts new file mode 100644 index 000000000..54487196d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CF103E"; +declare const SiChupachups: IconType; +export { SiChupachups as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.mjs new file mode 100644 index 000000000..dbfdb8610 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiChupachups.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CF103E"; +const SiChupachups = React.forwardRef(function SiChupachups2({ title = "Chupa Chups", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.2056.0007c-1.1953-.0181-2.3567.4498-3.206 1.2882C10.7647.0694 8.8692-.366 7.1692.338c-1.7001.7042-2.7325 2.3525-2.7435 4.088-1.7358.0114-3.3842 1.0438-4.0883 2.7435-.7042 1.6998-.2684 3.5954.9512 4.831C.069 13.2354-.3665 15.131.3373 16.831c.7041 1.6998 2.3525 2.7319 4.0886 2.743.0107 1.736 1.043 3.3846 2.7432 4.0886 1.7.7042 3.5958.2684 4.8309-.9513 1.2349 1.2197 3.1304 1.6551 4.8306.951 1.6997-.704 2.7318-2.3523 2.7428-4.0882 1.736-.011 3.3848-1.0433 4.0888-2.7431.7041-1.7002.2683-3.5955-.9513-4.8314 1.2196-1.2352 1.6554-3.1306.9513-4.8304-.704-1.6997-2.3528-2.7322-4.0888-2.7432-.0107-1.7356-1.0431-3.384-2.7428-4.0884a4.416 4.416 0 0 0-1.625-.3369zM8.8546.623C10.09.6207 11.2772 1.222 12 2.2524 13.0059.8188 14.9096.2157 16.5923.913c1.683.6967 2.6026 2.4695 2.3 4.1948 1.725-.3027 3.498.6174 4.1947 2.2998.6968 1.6826.0938 3.5866-1.3395 4.5924 1.4333 1.0063 2.0363 2.91 1.3395 4.5928-.697 1.6822-2.4694 2.6023-4.1943 2.2998.3022 1.725-.6177 3.4982-2.3001 4.1949-1.683.6967-3.587.0937-4.593-1.3396-1.0057 1.4333-2.9097 2.0363-4.5922 1.3396-1.6826-.6967-2.6023-2.4695-2.3-4.1944-1.7254.3024-3.498-.6178-4.1949-2.3-.697-1.683-.0944-3.587 1.3396-4.5931C.8184 10.9942.2155 9.0905.9125 7.4078c.6968-1.6826 2.4698-2.6027 4.1948-2.3-.3028-1.7253.6175-3.498 2.3-4.1948a3.7897 3.7897 0 0 1 1.4475-.29zm.2617.4925a3.793 3.793 0 0 0-1.5049.29c-1.5743.6522-2.4823 2.246-2.3451 3.8613-1.6153-.1372-3.209.771-3.8614 2.3448C.753 9.1861 1.2377 10.9553 2.4772 12 1.238 13.0453.753 14.8143 1.405 16.3889c.6525 1.5738 2.2464 2.4821 3.8614 2.345-.1372 1.6154.7708 3.209 2.3451 3.8612 1.5743.652 3.3433.1672 4.3883-1.0722 1.045 1.2391 2.814 1.7242 4.3885 1.0722 1.574-.6524 2.4824-2.2462 2.345-3.8612 1.6154.1369 3.209-.7715 3.861-2.3455.6522-1.5742.1677-3.3431-1.0718-4.3884 1.2392-1.0453 1.724-2.8142 1.0719-4.3885-.6521-1.5742-2.246-2.4824-3.8613-2.3452.1374-1.6151-.7708-3.2087-2.345-3.8608-1.5743-.652-3.3433-.1671-4.3883 1.072-.7186-.852-1.7792-1.3476-2.8834-1.362zm.1288.575a3.8514 3.8514 0 0 1 2.7546 1.1035C13.062 1.7483 14.69 1.3756 16.15 1.9804c1.4597.6047 2.3476 2.0192 2.3592 3.5096 1.491.0116 2.9055.8994 3.5102 2.3593.6049 1.46.232 3.0882-.8135 4.1507 1.0456 1.0624 1.4184 2.6906.8135 4.1505-.605 1.46-2.0192 2.3475-3.51 2.3593-.0115 1.4908-.8993 2.9055-2.3594 3.5104-1.46.6045-3.0879.2318-4.15-.8138-1.0624 1.0458-2.6905 1.4183-4.1503.8138-1.46-.6049-2.348-2.0196-2.3596-3.51-1.4906-.0119-2.9053-.8998-3.5103-2.3597-.6045-1.4596-.2319-3.0878.8137-4.1502-1.0458-1.0624-1.4182-2.6906-.8134-4.151.6046-1.4599 2.0191-2.3474 3.5098-2.359.0113-1.4906.8989-2.905 2.3595-3.5099a3.7971 3.7971 0 0 1 1.3957-.29zM6.821 5.9463c-.4963.0028-1.0034.2088-1.3915.4873-.9826.7051-1.552 1.765-1.5075 2.9352.0236.6227.3794 1.2746.9944 1.5076.7724.2935 1.396-.0028 2.0429-.4427l-.1765.43 1.0606.0006 1.0627-2.3575c.1-.2227.5938-.1762.481.0881l-.6535 1.532c-.1047.245-.0169.5406.2162.6934.4885.32 1.0588.004 1.48-.2484.052.1283.1102.2726.2443.3409.3872.1963.9427.0092 1.2606-.2028.023-.0153.1375.128.2673.2028.4295.2472.9943.0295 1.351-.219-.2173.4977-.4285 1.2961-.9464 1.5181-.0888.0381-.2882-.0427-.2645.096.1926.225.5255.2585.826.2048.9148-.1628 1.0627-1.179 1.4556-1.8244.1085.116.2114.2512.381.2806.9732.1672 1.5356-.83 2.2055-1.3632-.1075.3432-.2886.8839.1043 1.2508.3803.3553 1.0707.1246 1.4394-.1523l.1442.2286c.115.182.3993.1592.6054.1123.2356-.0535.6068-.2073.6056-.4052-.287.0463-.4815-.1071-.3609-.3968.3755-.9027 1.1694-2.7194 1.1694-2.7194h-1.044l-.1254.3013c-.068-.1485-.2174-.2837-.369-.3127-1.2422-.2401-1.6844 1.1902-2.3773 1.6315.1205-.437.3887-1.1607-.0443-1.5154-.3217-.263-.7507-.0466-1.0827.0845l.0673-.1892h-.9904l-1.0941 2.479c-.0798.1809-.2666.2795-.4449.3046-.0793.011-.1597-.0274-.2085-.0965-.0595-.0833-.058-.1944-.0198-.2805l1.0612-2.4066h-1.0673l-.9406 2.15c-.006.0144-.1833.5038-.3687.5694-.0925.0327-.213.0081-.2644-.0883-.0405-.076-.0235-.1815.0078-.2526l1.0517-2.3785H11.62l-1.086 2.4626c-.0859.1942-.526.4166-.6536.1204-.0454-.1052-.022-.2245.0202-.3206l.4811-1.099c.1483-.338.5155-.8832.068-1.1466-.463-.2726-.921.068-1.2174.2594l.7523-1.7509H8.9478L7.3899 9.48c-.204.449-.7536.6712-1.2146.751-.3688.064-.7448-.0152-.9382-.3209-.4688-.7416-.0705-1.658.2965-2.3135.2716-.4855.7437-1.1352 1.3715-1.0868.1079.0083.234.0567.2766.1805.143.4128-.3268.6998-.6254.8702.0564.3558.6835.3803.9384.2443.3277-.1743.539-.5163.5653-.87.0217-.2922-.1296-.5774-.385-.7458-.262-.173-.556-.2444-.8538-.2427zm12.4299 2.294c.1901.0033.2381.185.1688.3427l-.702 1.5919c-.0606.1378-.248.2035-.409.1324-.0478-.021-.104-.076-.1043-.1324-.0033-.4853.2456-.923.4573-1.3431.1142-.2276.2587-.5599.5493-.5897a.3343.3343 0 0 1 .0399-.0017zm-3.335.0072c.0899.003.1665.0445.1795.127.0711.4493-.5303 1.6964-.9302 1.9126-.1004.0543-.2483.0044-.2728-.1041-.022-.0974.0306-.2071.0722-.3008l.6457-1.4596c.0525-.1189.19-.1789.3056-.175zm-6.303 3.1817l-1.124.0045-1.7048 3.8193c-.5372.5693-1.2974 1.1229-2.0564.8124-.3688-.1509-.5473-.5486-.5574-.9263-.0177-.6733.1488-1.289.5014-1.8086.342-.504.7937-1.1283 1.4474-1.1951.1721-.0175.3326.075.3969.2289.0803.192-.0153.3892-.1402.5211-.144.153-.337.246-.5133.2806.0906.4412.734.4207 1.0544.2772.2442-.11.4806-.35.5495-.6057.0836-.3098.0383-.6695-.1642-.9186-.3791-.465-1.0279-.5176-1.588-.3887-1.2165.28-2.3287 1.3853-2.6427 2.5743-.2395.9087-.1822 2.0852.682 2.6142.9996.6125 1.9043-.0058 2.6045-.5139l-.2575.5786 1.1494.003 1.239-2.802c.1231-.2785.6937-.234.5376.1201l-.6818 1.5438c-.087.1972-.1522.3845-.1522.5976 0 .229.0833.471.3123.5694.5578.2385 1.11-.1131 1.527-.47.0537.273.205.4565.494.5179.4516.0959.8182-.1604 1.1711-.3686.068.128.109.2812.2566.3567.4342.2218.9632-.0281 1.3402-.2363l-.3943.863c-.9815-.2082-2.0948-.2582-3.0592.0747-.532.184-1.0934.691-1.1347 1.3075-.031.4587.1895.8673.5693 1.099.7596.462 1.8348.4653 2.6425.0958.4793-.2194.8899-.577 1.2388-1.0065 1.5761.333 3.4885.589 4.6032-.8216.0211-.0271.173-.2487.2006-.4454-.2086.1366-.44.2202-.6818.2646-.5984.111-1.2287.0944-1.847.0425-.4098-.034-1.1304-.1828-1.4892-.3505l.5978-1.3038c.0921.2085.2696.3657.4853.409.6628.133 1.1861-.2979 1.6075-.758l1.9608-2.1407c.0653-.0715.1707-.203.2925-.1808.0367.0068.0548.05.0407.0883-.1106.295-.2242.5895-.3133.8984-.1354.4696-.0843 1.0261-.3685 1.431-.0669.0952-.1804.1427-.2927.1486-.1164.006-.2264-.0519-.277-.1606-.0903-.1956.0397-.4238.1805-.557-.0705-.0591-.17-.0683-.2351-.0637-.1672.0122-.3155.1068-.4185.244-.0992.1324-.1362.3117-.1121.4928.0362.272.2962.4922.5496.5577.5403.1392 1.0957-.0172 1.5154-.377.7315-.6272.5-1.6633.425-2.494-.037-.4122.1765-.802.5495-.9744-.1026-.1256-.2454-.168-.3344-.1795-1.1026-.139-1.8218 1.2796-2.489 1.6753.0314-.1304.3402-1.281-.2078-1.6083-.387-.2303-.8384-.004-1.1552.2165.011-.0568.036-.2084.036-.2084h-1.0338l-1.332 3.0032c-.072.163-.2684.2052-.4286.2088-.0804.002-.1598-.0265-.1966-.1042-.0352-.0748-.0461-.1518-.0122-.2287l1.2861-2.8884h-1.137l-1.2755 2.8884c-.0517.1164-.1728.1762-.2928.1885-.0763.0076-.1602-.0484-.2086-.12-.0435-.0647-.0383-.1777-.008-.2488l1.1626-2.708h-1.1167l-1.2489 2.8523c-.0704.161-.241.2864-.4092.3288-.1044.0263-.2131.0007-.2725-.0845-.0609-.0873-.0417-.1994 0-.3044.29-.7285.682-1.4192.9264-2.1652.0646-.1982.035-.4453-.1405-.5693-.4426-.314-.966-.0667-1.3553.1882zm6.3363 2.3177c.0784.0056.1475.0595.1823.1211.0481.086.037.2212.0079.3127-.1865.5829-.4699 1.1878-.7859 1.6762-.1007.155-.529.2388-.529 0v-.1322l.8056-1.8085c.0496-.1115.1692-.155.285-.1685a.1868.1868 0 0 1 .034-.0008zm-5.3643 4.849c.1608.002.3222.0152.4782.0275.346.0275.6818.1045 1.0064.2007-.4502.7776-1.4392 1.2001-2.2655.7178-.3268-.1911-.3654-.6248.0082-.8061.238-.1154.5046-.1432.7727-.1399zm3.1186.7396a.8233.8233 0 0 0-.3883.0973c-.1232.0648-.2269.1618-.3094.2916-.0822.1294-.1239.2739-.1239.4323 0 .2272.0803.421.2409.5813.1603.1597.3539.24.5807.24.2253 0 .4186-.0806.5797-.2413.1606-.1608.241-.354.241-.58 0-.159-.0416-.3043-.1247-.4347-.0836-.1301-.1868-.2272-.311-.2906-.1238-.064-.2525-.096-.385-.096zm.0008.1611c.177 0 .3314.063.4632.1893.1314.1258.1972.2833.1972.4708 0 .1815-.0648.3374-.1945.4665-.129.1303-.2846.195-.4659.195-.1816 0-.337-.0644-.4658-.1936-.1292-.1287-.1935-.2852-.1935-.468 0-.1874.0658-.3449.1972-.4707.1315-.1263.2853-.1893.4621-.1893zm-.372.2284v.871h.177v-.3577h.0461c.0555 0 .0993.0152.1313.0445.0317.0296.0697.0867.1132.1721l.0727.1412h.219l-.1033-.1759c-.05-.0848-.0859-.1378-.1067-.1585a.2044.2044 0 0 0-.0777-.0467c.0702-.0104.1267-.0372.1703-.0805.043-.0429.0645-.097.0645-.1622 0-.0671-.0199-.1224-.0596-.1655-.04-.0431-.0837-.0674-.1315-.0736-.0473-.0057-.1607-.0082-.3383-.0082zm.177.1383h.0718c.0785 0 .1328.0015.1623.0052a.1292.1292 0 0 1 .076.0357.1032.1032 0 0 1 .0316.077.1088.1088 0 0 1-.0294.0771.1197.1197 0 0 1-.072.0367c-.0281.004-.0848.0062-.1685.0062h-.0718Z" }) + ] + } + ); +}); + +export { SiChupachups as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.cjs new file mode 100644 index 000000000..1280d4cb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F8C517"; +const SiCilium = React__namespace.forwardRef(function SiCilium2({ title = "Cilium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.607 14.583h-3.215l-1.626-2.764 1.626-2.802h3.215l1.626 2.802-1.626 2.764ZM14.186 8H9.799l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L14.186 8Zm-4.387 8.4-2.2 3.813L9.799 24h4.387l2.213-3.787-2.213-3.813H9.799Zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.765h-3.215l-1.627-2.765ZM9.799 0l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L14.186 0H9.799ZM8.765 3.819l1.627-2.802h3.215l1.626 2.802-1.626 2.764h-3.215L8.765 3.819Zm8.234 8.581-2.2 3.813 2.2 3.787h4.388l2.213-3.787-2.213-3.813h-4.388Zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.765h-3.215l-1.627-2.765ZM16.999 4l-2.2 3.813 2.2 3.787h4.388L23.6 7.813 21.387 4h-4.388Zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.764h-3.215l-1.627-2.764ZM2.599 12.4l-2.2 3.813L2.599 20h4.387l2.213-3.787L6.986 12.4H2.599Zm-1.034 3.819 1.627-2.802h3.214l1.627 2.802-1.627 2.765H3.192l-1.627-2.765ZM2.599 4l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L6.986 4H2.599ZM1.565 7.819l1.627-2.802h3.214l1.627 2.802-1.627 2.764H3.192L1.565 7.819Z" }) + ] + } + ); +}); + +exports.default = SiCilium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.d.ts new file mode 100644 index 000000000..8593ef7e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F8C517"; +declare const SiCilium: IconType; +export { SiCilium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.mjs new file mode 100644 index 000000000..9b4748b70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCilium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F8C517"; +const SiCilium = React.forwardRef(function SiCilium2({ title = "Cilium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.607 14.583h-3.215l-1.626-2.764 1.626-2.802h3.215l1.626 2.802-1.626 2.764ZM14.186 8H9.799l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L14.186 8Zm-4.387 8.4-2.2 3.813L9.799 24h4.387l2.213-3.787-2.213-3.813H9.799Zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.765h-3.215l-1.627-2.765ZM9.799 0l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L14.186 0H9.799ZM8.765 3.819l1.627-2.802h3.215l1.626 2.802-1.626 2.764h-3.215L8.765 3.819Zm8.234 8.581-2.2 3.813 2.2 3.787h4.388l2.213-3.787-2.213-3.813h-4.388Zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.765h-3.215l-1.627-2.765ZM16.999 4l-2.2 3.813 2.2 3.787h4.388L23.6 7.813 21.387 4h-4.388Zm-1.034 3.819 1.627-2.802h3.215l1.626 2.802-1.626 2.764h-3.215l-1.627-2.764ZM2.599 12.4l-2.2 3.813L2.599 20h4.387l2.213-3.787L6.986 12.4H2.599Zm-1.034 3.819 1.627-2.802h3.214l1.627 2.802-1.627 2.765H3.192l-1.627-2.765ZM2.599 4l-2.2 3.813 2.2 3.787h4.387l2.213-3.787L6.986 4H2.599ZM1.565 7.819l1.627-2.802h3.214l1.627 2.802-1.627 2.764H3.192L1.565 7.819Z" }) + ] + } + ); +}); + +export { SiCilium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.cjs new file mode 100644 index 000000000..2b2c85d65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#011A6A"; +const SiCinema4d = React__namespace.forwardRef(function SiCinema4d2({ title = "Cinema 4D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.052 0C5.394-.007-.003 5.412 0 11.976.003 18.654 5.475 23.981 11.978 24c6.535.02 12.057-5.306 12.022-11.998-.009-1.665-.53-5.371-1.84-5.276-1.98.145-2.159 4.12-2.377 5.407-.417 2.46-1.346 5.08-2.953 6.99-1.88 2.359-4.697 3.634-7.662 3.158-3.55-.564-5.893-3.278-6.68-5.201-.753-1.723-1.035-4.162-.07-6.324 1.16-2.766 3.734-4.632 6.28-5.584 2.006-.827 4.103-1.151 5.357-1.375 2.516-.5 2.855-1.463 2.814-2.149-.015-.252-.256-.724-.785-.943C15.03.269 13.268.001 12.052 0zm5.098 1.342c.139.398.088.85-.148 1.256-.325.56-.972 1.05-1.897 1.29-1.636.428-2.976.554-4.34.96-1.312.39-3.397 1.018-5.316 2.552-.268.842-.341 1.892-.369 2.662.15 5.014 4.557 8.884 9.17 8.682.853-.037 1.921-.261 2.912-.68a13.56 13.56 0 0 0 1.387-2.683l.002-.002v-.002c.424-1.03.606-1.836.8-2.793.32-1.565.202-2.88 1.012-4.758.251-.582.71-1.113 1.258-1.346.25-.105.522-.133.79-.072-.89-2.471-3.115-4.326-5.26-5.066z" }) + ] + } + ); +}); + +exports.default = SiCinema4d; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.d.ts new file mode 100644 index 000000000..57bab88e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#011A6A"; +declare const SiCinema4d: IconType; +export { SiCinema4d as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.mjs new file mode 100644 index 000000000..c9839a107 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCinema4d.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#011A6A"; +const SiCinema4d = React.forwardRef(function SiCinema4d2({ title = "Cinema 4D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.052 0C5.394-.007-.003 5.412 0 11.976.003 18.654 5.475 23.981 11.978 24c6.535.02 12.057-5.306 12.022-11.998-.009-1.665-.53-5.371-1.84-5.276-1.98.145-2.159 4.12-2.377 5.407-.417 2.46-1.346 5.08-2.953 6.99-1.88 2.359-4.697 3.634-7.662 3.158-3.55-.564-5.893-3.278-6.68-5.201-.753-1.723-1.035-4.162-.07-6.324 1.16-2.766 3.734-4.632 6.28-5.584 2.006-.827 4.103-1.151 5.357-1.375 2.516-.5 2.855-1.463 2.814-2.149-.015-.252-.256-.724-.785-.943C15.03.269 13.268.001 12.052 0zm5.098 1.342c.139.398.088.85-.148 1.256-.325.56-.972 1.05-1.897 1.29-1.636.428-2.976.554-4.34.96-1.312.39-3.397 1.018-5.316 2.552-.268.842-.341 1.892-.369 2.662.15 5.014 4.557 8.884 9.17 8.682.853-.037 1.921-.261 2.912-.68a13.56 13.56 0 0 0 1.387-2.683l.002-.002v-.002c.424-1.03.606-1.836.8-2.793.32-1.565.202-2.88 1.012-4.758.251-.582.71-1.113 1.258-1.346.25-.105.522-.133.79-.072-.89-2.471-3.115-4.326-5.26-5.066z" }) + ] + } + ); +}); + +export { SiCinema4d as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.cjs new file mode 100644 index 000000000..ad3d1b111 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC682E"; +const SiCinnamon = React__namespace.forwardRef(function SiCinnamon2({ title = "Cinnamon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12zm0 2.045c5.498 0 9.955 4.457 9.955 9.955 0 .844-.116 1.66-.314 2.443l-4.735-5.26-6.054 6.887 2.921-5.844-1.46-2.609-8.604 9.889A9.908 9.908 0 0 1 2.045 12c0-5.498 4.457-9.955 9.955-9.955z" }) + ] + } + ); +}); + +exports.default = SiCinnamon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.d.ts new file mode 100644 index 000000000..d0bfe909f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC682E"; +declare const SiCinnamon: IconType; +export { SiCinnamon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.mjs new file mode 100644 index 000000000..3960bb93f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCinnamon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC682E"; +const SiCinnamon = React.forwardRef(function SiCinnamon2({ title = "Cinnamon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12zm0 2.045c5.498 0 9.955 4.457 9.955 9.955 0 .844-.116 1.66-.314 2.443l-4.735-5.26-6.054 6.887 2.921-5.844-1.46-2.609-8.604 9.889A9.908 9.908 0 0 1 2.045 12c0-5.498 4.457-9.955 9.955-9.955z" }) + ] + } + ); +}); + +export { SiCinnamon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.cjs new file mode 100644 index 000000000..7755b2671 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8669AE"; +const SiCircle = React__namespace.forwardRef(function SiCircle2({ title = "Circle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.788 3.832c-.101-.105-.197-.213-.301-.317-.103-.103-.211-.202-.32-.302A11.903 11.903 0 0 0 12 0a11.926 11.926 0 0 0-8.486 3.514C-1.062 8.09-1.16 15.47 3.213 20.168c.099.108.197.214.3.32.104.103.21.2.317.3A11.92 11.92 0 0 0 12 24c3.206 0 6.22-1.247 8.487-3.512 4.576-4.576 4.673-11.956.301-16.656zm-16.655.301A11.057 11.057 0 0 1 12 .874c2.825 0 5.49 1.048 7.55 2.958l-1.001 1.002A9.646 9.646 0 0 0 12 2.292a9.644 9.644 0 0 0-6.865 2.844A9.644 9.644 0 0 0 2.292 12c0 2.448.9 4.753 2.542 6.549L3.831 19.55C-.201 15.191-.101 8.367 4.133 4.133zm13.798 1.318v.002l-1.015 1.014A7.346 7.346 0 0 0 12 4.589 7.357 7.357 0 0 0 6.761 6.76 7.362 7.362 0 0 0 4.589 12a7.34 7.34 0 0 0 1.877 4.913l-1.014 1.016A8.77 8.77 0 0 1 3.167 12a8.77 8.77 0 0 1 2.588-6.245A8.771 8.771 0 0 1 12 3.167c2.213 0 4.301.809 5.931 2.284zM18.537 12c0 1.745-.681 3.387-1.916 4.622S13.746 18.538 12 18.538a6.491 6.491 0 0 1-4.296-1.621l-.001-.004c-.11-.094-.22-.188-.324-.291a6.027 6.027 0 0 1-.293-.326A6.47 6.47 0 0 1 5.466 12c0-1.746.679-3.387 1.914-4.621A6.488 6.488 0 0 1 12 5.465c1.599 0 3.105.576 4.295 1.62.111.096.224.19.326.295.104.104.2.214.295.324A6.482 6.482 0 0 1 18.537 12zM7.084 17.534h.001A7.349 7.349 0 0 0 12 19.413a7.35 7.35 0 0 0 5.239-2.174A7.354 7.354 0 0 0 19.412 12a7.364 7.364 0 0 0-1.876-4.916l1.013-1.012A8.777 8.777 0 0 1 20.834 12a8.765 8.765 0 0 1-2.589 6.246A8.764 8.764 0 0 1 12 20.834a8.782 8.782 0 0 1-5.93-2.285l1.014-1.015zm12.783 2.333A11.046 11.046 0 0 1 12 23.125a11.042 11.042 0 0 1-7.551-2.957l1.004-1.001a9.64 9.64 0 0 0 6.549 2.542 9.639 9.639 0 0 0 6.865-2.846A9.642 9.642 0 0 0 21.71 12a9.64 9.64 0 0 0-2.543-6.548l1.001-1.002c4.031 4.359 3.935 11.182-.301 15.417z" }) + ] + } + ); +}); + +exports.default = SiCircle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.d.ts new file mode 100644 index 000000000..0eacab65d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8669AE"; +declare const SiCircle: IconType; +export { SiCircle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.mjs new file mode 100644 index 000000000..e8700779f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8669AE"; +const SiCircle = React.forwardRef(function SiCircle2({ title = "Circle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.788 3.832c-.101-.105-.197-.213-.301-.317-.103-.103-.211-.202-.32-.302A11.903 11.903 0 0 0 12 0a11.926 11.926 0 0 0-8.486 3.514C-1.062 8.09-1.16 15.47 3.213 20.168c.099.108.197.214.3.32.104.103.21.2.317.3A11.92 11.92 0 0 0 12 24c3.206 0 6.22-1.247 8.487-3.512 4.576-4.576 4.673-11.956.301-16.656zm-16.655.301A11.057 11.057 0 0 1 12 .874c2.825 0 5.49 1.048 7.55 2.958l-1.001 1.002A9.646 9.646 0 0 0 12 2.292a9.644 9.644 0 0 0-6.865 2.844A9.644 9.644 0 0 0 2.292 12c0 2.448.9 4.753 2.542 6.549L3.831 19.55C-.201 15.191-.101 8.367 4.133 4.133zm13.798 1.318v.002l-1.015 1.014A7.346 7.346 0 0 0 12 4.589 7.357 7.357 0 0 0 6.761 6.76 7.362 7.362 0 0 0 4.589 12a7.34 7.34 0 0 0 1.877 4.913l-1.014 1.016A8.77 8.77 0 0 1 3.167 12a8.77 8.77 0 0 1 2.588-6.245A8.771 8.771 0 0 1 12 3.167c2.213 0 4.301.809 5.931 2.284zM18.537 12c0 1.745-.681 3.387-1.916 4.622S13.746 18.538 12 18.538a6.491 6.491 0 0 1-4.296-1.621l-.001-.004c-.11-.094-.22-.188-.324-.291a6.027 6.027 0 0 1-.293-.326A6.47 6.47 0 0 1 5.466 12c0-1.746.679-3.387 1.914-4.621A6.488 6.488 0 0 1 12 5.465c1.599 0 3.105.576 4.295 1.62.111.096.224.19.326.295.104.104.2.214.295.324A6.482 6.482 0 0 1 18.537 12zM7.084 17.534h.001A7.349 7.349 0 0 0 12 19.413a7.35 7.35 0 0 0 5.239-2.174A7.354 7.354 0 0 0 19.412 12a7.364 7.364 0 0 0-1.876-4.916l1.013-1.012A8.777 8.777 0 0 1 20.834 12a8.765 8.765 0 0 1-2.589 6.246A8.764 8.764 0 0 1 12 20.834a8.782 8.782 0 0 1-5.93-2.285l1.014-1.015zm12.783 2.333A11.046 11.046 0 0 1 12 23.125a11.042 11.042 0 0 1-7.551-2.957l1.004-1.001a9.64 9.64 0 0 0 6.549 2.542 9.639 9.639 0 0 0 6.865-2.846A9.642 9.642 0 0 0 21.71 12a9.64 9.64 0 0 0-2.543-6.548l1.001-1.002c4.031 4.359 3.935 11.182-.301 15.417z" }) + ] + } + ); +}); + +export { SiCircle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.cjs new file mode 100644 index 000000000..28c55ab60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#343434"; +const SiCircleci = React__namespace.forwardRef(function SiCircleci2({ title = "CircleCI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.963 12c0-1.584 1.284-2.855 2.855-2.855 1.572 0 2.856 1.284 2.856 2.855 0 1.572-1.284 2.856-2.856 2.856-1.57 0-2.855-1.284-2.855-2.856zm2.855-12C6.215 0 1.522 3.84.19 9.025c-.01.036-.01.07-.01.12 0 .313.252.576.575.576H5.59c.23 0 .433-.13.517-.333.997-2.16 3.18-3.672 5.712-3.672 3.466 0 6.286 2.82 6.286 6.287 0 3.47-2.82 6.29-6.29 6.29-2.53 0-4.714-1.5-5.71-3.673-.097-.19-.29-.336-.517-.336H.755c-.312 0-.575.253-.575.576 0 .037.014.072.014.12C1.514 20.16 6.214 24 11.818 24c6.624 0 12-5.375 12-12 0-6.623-5.376-12-12-12z" }) + ] + } + ); +}); + +exports.default = SiCircleci; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.d.ts new file mode 100644 index 000000000..4c022d85c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#343434"; +declare const SiCircleci: IconType; +export { SiCircleci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.mjs new file mode 100644 index 000000000..30cbe62d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircleci.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#343434"; +const SiCircleci = React.forwardRef(function SiCircleci2({ title = "CircleCI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.963 12c0-1.584 1.284-2.855 2.855-2.855 1.572 0 2.856 1.284 2.856 2.855 0 1.572-1.284 2.856-2.856 2.856-1.57 0-2.855-1.284-2.855-2.856zm2.855-12C6.215 0 1.522 3.84.19 9.025c-.01.036-.01.07-.01.12 0 .313.252.576.575.576H5.59c.23 0 .433-.13.517-.333.997-2.16 3.18-3.672 5.712-3.672 3.466 0 6.286 2.82 6.286 6.287 0 3.47-2.82 6.29-6.29 6.29-2.53 0-4.714-1.5-5.71-3.673-.097-.19-.29-.336-.517-.336H.755c-.312 0-.575.253-.575.576 0 .037.014.072.014.12C1.514 20.16 6.214 24 11.818 24c6.624 0 12-5.375 12-12 0-6.623-5.376-12-12-12z" }) + ] + } + ); +}); + +export { SiCircleci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.cjs new file mode 100644 index 000000000..1879b74cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#42B883"; +const SiCircuitverse = React__namespace.forwardRef(function SiCircuitverse2({ title = "CircuitVerse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1227 24c-.201 0-.4037-.0058-.6028-.0175a.487.487 0 0 1-.0433-.287.703.703 0 0 0-.0213-.2624H9.2251a1.205 1.205 0 0 1-.785.3898.7059.7059 0 0 1-.5075-.2282.9153.9153 0 0 1-.0647-1.099.7.7 0 0 1 .5576-.267 1.2192 1.2192 0 0 1 .703.267h2.3271a1.9635 1.9635 0 0 0 0-.614h-1.1959a1.1416 1.1416 0 0 1-.5495-.1293c-.442-.2654-.9147-.522-1.4868-.808a1.3834 1.3834 0 0 0-.711-.194 7.1018 7.1018 0 0 1-.4752.0142c-.157 0-.313-.0036-.4644-.007a18.8307 18.8307 0 0 0-.45-.0072 1.3491 1.3491 0 0 1-.8135.3704.6752.6752 0 0 1-.512-.2411.7596.7596 0 0 1 0-1.0666.7188.7188 0 0 1 .5363-.2718 1.3055 1.3055 0 0 1 .7566.3364H7.771a1.1403 1.1403 0 0 1 .5495.1293c.1413.0824.2938.1616.4415.2389a6.0441 6.0441 0 0 1 .7544.4399 1.9496 1.9496 0 0 0 1.116.3293 2.542 2.542 0 0 0 .1772-.006 1.5207 1.5207 0 0 1 .2191-.0143c.0682 0 .1361.0032.208.0068.0797.004.1615.0078.2516.0078v-1.0343h-1.1639a1.267 1.267 0 0 1-.711.2993.8404.8404 0 0 1-.614-.3316c-.3709-.4043-.1346-.8032.1291-1.0666a.5653.5653 0 0 1 .3533-.125 1.3475 1.3475 0 0 1 .8426.4479h1.099v-.905a.3807.3807 0 0 0-.1778-.0404c-.027 0-.054.0019-.0824.0039-.0285.0019-.0624.0042-.0954.0042H4.959a.8404.8404 0 0 1-.7434-.3556c-.1716-.2285-.3698-.4592-.545-.6629l-.069-.0804c-.7435-.0647-.9698-.2845-.9375-.905a.7495.7495 0 0 1 .8404-.6788c.4916 0 .711.329.711 1.0666.0608.0708.12.1429.1827.2195.1357.1651.2757.3361.4315.492h6.6582a5.5024 5.5024 0 0 0 0-1.0344H6.6397a1.3177 1.3177 0 0 1-.7948.3707.6623.6623 0 0 1-.498-.2414.7457.7457 0 0 1 0-1.099.6933.6933 0 0 1 .508-.2685 1.1678 1.1678 0 0 1 .7201.3652h4.8806v-1.002h-8.242c-.156.1736-.3232.3494-.5016.5356-.1584.1661-.3213.3368-.5007.531a.8381.8381 0 0 1-.7912.7515.8055.8055 0 0 1-.1138-.008.8459.8459 0 0 1-.6464-1.002c.0588-.3827.372-.6022.8597-.6022a1.9283 1.9283 0 0 1 .2715.0204c.1765-.2062.4435-.5084.7111-.7757a.9587.9587 0 0 1 .7757-.3233h8.1774v-1.0989H1.6295a1.226 1.226 0 0 1-.7434.3436.6817.6817 0 0 1-.5494-.3113.8488.8488 0 0 1 .097-1.1312.7486.7486 0 0 1 .4793-.194 1.1539 1.1539 0 0 1 .8138.4849h3.1998l-.1014-.097c-.5595-.5284-1.1378-1.0747-1.8382-1.713a.7554.7554 0 0 1-.7757-.808c0-.514.2195-.7435.711-.7435.6617 0 .8404.2127.8728 1.0343.2482.238.4922.469.7508.7134.5417.5126 1.101 1.0414 1.6733 1.6138h5.236v-.7434H9.1605a1.2783 1.2783 0 0 1-.7049.2628.7457.7457 0 0 1-.588-.2951.808.808 0 0 1 .1294-1.099.6351.6351 0 0 1 .4373-.167 1.2777 1.2777 0 0 1 .8235.3933h2.198v-.8404c-.2264 0-.4526-.0036-.671-.007h-.0066a39.3709 39.3709 0 0 0-.656-.0072c-.2484 0-.4675.0048-.6705.0142a1.3974 1.3974 0 0 1-.1144.0048 1.2311 1.2311 0 0 1-.8552-.3603l-.6006-.5068-.0116-.01-.0078-.0066A260.83 260.83 0 0 0 6.6397 7.272H3.052a1.235 1.235 0 0 1-.7192.2909.7298.7298 0 0 1-.5737-.2909.7757.7757 0 0 1 .097-1.099.701.701 0 0 1 .4742-.2233 1.3556 1.3556 0 0 1 .8187.45h3.1352a1.599 1.599 0 0 1 1.1635.4525c.3733.3513.7951.6907 1.203 1.0187h.0016c.19.1532.388.3113.573.4664h2.198V7.2707c-.138 0-.2822-.0035-.4202-.007H11a17.915 17.915 0 0 0-.4392-.0072c-.1616 0-.3032.0048-.4286.0142a1.4155 1.4155 0 0 1-.1157.0049 1.3365 1.3365 0 0 1-.8558-.3265 11.3707 11.3707 0 0 0-.3048-.2405c-.1025-.0788-.212-.1616-.3093-.2443-.8-.0646-1.099-.2909-1.0667-.808a.7757.7757 0 0 1 .7758-.7434c.497 0 .7757.3018.808.8726.1293.097.2586.2033.388.3061l.0015.002c.1267.103.2585.2097.3878.3064h1.5838V5.1394h-.5495a1.3507 1.3507 0 0 1-.7654.3604.6872.6872 0 0 1-.5275-.296.7983.7983 0 0 1 .0324-1.099.6978.6978 0 0 1 .5003-.2146 1.1096 1.1096 0 0 1 .7586.3762h.5171a.5142.5142 0 0 0 .043-.3461 1.2334 1.2334 0 0 1-.0107-.1387v-.5171a3.1097 3.1097 0 0 1-.2908.0126c-.119 0-.2399-.0049-.3556-.0097h-.007a8.4163 8.4163 0 0 0-.364-.0104 1.9597 1.9597 0 0 0-1.0172.2344 10.704 10.704 0 0 1-1.115.5817h-.003c-.1538.0728-.3128.148-.466.2244a.8853.8853 0 0 1-.4202.0646H5.2188a1.0967 1.0967 0 0 1-.6958.3284.7822.7822 0 0 1-.5983-.3271.7237.7237 0 0 1-.181-.5453.8462.8462 0 0 1 .3103-.586.735.735 0 0 1 .4732-.1974 1.0705 1.0705 0 0 1 .755.456h2.101a.6167.6167 0 0 0 .2232-.053 1.192 1.192 0 0 1 .1322-.044c.1316-.0646.2628-.1292.3898-.1893a10.0788 10.0788 0 0 0 .9354-.4894 2.555 2.555 0 0 1 1.353-.3617c.0646 0 .1312.002.1981.0058a2.065 2.065 0 0 0 .2586.0143c.0853 0 .17-.0033.2586-.0068h.0023c.092-.0036.1874-.0075.286-.0075a2.1442 2.1442 0 0 0 .0365-.5908c-.0019-.0701-.0042-.1425-.0042-.2172H9.4164a1.4545 1.4545 0 0 1-.7663.3316.6823.6823 0 0 1-.5262-.2993.8307.8307 0 0 1 .0646-1.0989.715.715 0 0 1 .4874-.2043 1.243 1.243 0 0 1 .7758.3662h2.004c0-.0898.007-.1803.0144-.2763.0087-.1138.0178-.2314.0178-.3701h.126c4.196 0 7.4922 1.6423 9.7967 4.8805a12.2263 12.2263 0 0 1 2.408 6.4563c.1212 2.2033-.439 4.4571-1.6646 6.6986a11.395 11.395 0 0 1-4.4335 4.4768A11.4803 11.4803 0 0 1 12.1227 24zm.3672-5.5768v4.4604a1.616 1.616 0 0 0 .2705.0217 3.4704 3.4704 0 0 0 .491-.0456c.109-.0152.2204-.0323.337-.0407a14.979 14.979 0 0 0 2.392-4.3957zm4.6543 0a19.092 19.092 0 0 1-1.8424 3.9433 10.38 10.38 0 0 0 5.3008-3.9433zm1.0343-5.7855a20.4576 20.4576 0 0 1-.6788 4.6543h3.814a11.2114 11.2114 0 0 0 1.2928-4.6543zm-5.6886 0v4.622h3.8786a18.1495 18.1495 0 0 0 .6787-4.622zm.0323-5.7855v4.6542h4.5573a18.7193 18.7193 0 0 0-.711-4.6542zm4.9452-.0324a21.3593 21.3593 0 0 1 .711 4.6543h4.4281a10.9179 10.9179 0 0 0-1.3252-4.6543zm-2.1979-5.0421a20.007 20.007 0 0 1 1.8747 3.9432h3.4584a10.6137 10.6137 0 0 0-5.333-3.9432zm-2.7473-.5818c0 1.5624 0 3.0382.0323 4.4927h3.4584a.1183.1183 0 0 1-.0323-.097 16.2011 16.2011 0 0 0-2.2302-4.1048c-.0126-.0126-.0249-.0262-.0378-.0404a.2773.2773 0 0 0-.1884-.1212 9.487 9.487 0 0 0-1.002-.1293z" }) + ] + } + ); +}); + +exports.default = SiCircuitverse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.d.ts new file mode 100644 index 000000000..c645b1a8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#42B883"; +declare const SiCircuitverse: IconType; +export { SiCircuitverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.mjs new file mode 100644 index 000000000..b8291841a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCircuitverse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#42B883"; +const SiCircuitverse = React.forwardRef(function SiCircuitverse2({ title = "CircuitVerse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.1227 24c-.201 0-.4037-.0058-.6028-.0175a.487.487 0 0 1-.0433-.287.703.703 0 0 0-.0213-.2624H9.2251a1.205 1.205 0 0 1-.785.3898.7059.7059 0 0 1-.5075-.2282.9153.9153 0 0 1-.0647-1.099.7.7 0 0 1 .5576-.267 1.2192 1.2192 0 0 1 .703.267h2.3271a1.9635 1.9635 0 0 0 0-.614h-1.1959a1.1416 1.1416 0 0 1-.5495-.1293c-.442-.2654-.9147-.522-1.4868-.808a1.3834 1.3834 0 0 0-.711-.194 7.1018 7.1018 0 0 1-.4752.0142c-.157 0-.313-.0036-.4644-.007a18.8307 18.8307 0 0 0-.45-.0072 1.3491 1.3491 0 0 1-.8135.3704.6752.6752 0 0 1-.512-.2411.7596.7596 0 0 1 0-1.0666.7188.7188 0 0 1 .5363-.2718 1.3055 1.3055 0 0 1 .7566.3364H7.771a1.1403 1.1403 0 0 1 .5495.1293c.1413.0824.2938.1616.4415.2389a6.0441 6.0441 0 0 1 .7544.4399 1.9496 1.9496 0 0 0 1.116.3293 2.542 2.542 0 0 0 .1772-.006 1.5207 1.5207 0 0 1 .2191-.0143c.0682 0 .1361.0032.208.0068.0797.004.1615.0078.2516.0078v-1.0343h-1.1639a1.267 1.267 0 0 1-.711.2993.8404.8404 0 0 1-.614-.3316c-.3709-.4043-.1346-.8032.1291-1.0666a.5653.5653 0 0 1 .3533-.125 1.3475 1.3475 0 0 1 .8426.4479h1.099v-.905a.3807.3807 0 0 0-.1778-.0404c-.027 0-.054.0019-.0824.0039-.0285.0019-.0624.0042-.0954.0042H4.959a.8404.8404 0 0 1-.7434-.3556c-.1716-.2285-.3698-.4592-.545-.6629l-.069-.0804c-.7435-.0647-.9698-.2845-.9375-.905a.7495.7495 0 0 1 .8404-.6788c.4916 0 .711.329.711 1.0666.0608.0708.12.1429.1827.2195.1357.1651.2757.3361.4315.492h6.6582a5.5024 5.5024 0 0 0 0-1.0344H6.6397a1.3177 1.3177 0 0 1-.7948.3707.6623.6623 0 0 1-.498-.2414.7457.7457 0 0 1 0-1.099.6933.6933 0 0 1 .508-.2685 1.1678 1.1678 0 0 1 .7201.3652h4.8806v-1.002h-8.242c-.156.1736-.3232.3494-.5016.5356-.1584.1661-.3213.3368-.5007.531a.8381.8381 0 0 1-.7912.7515.8055.8055 0 0 1-.1138-.008.8459.8459 0 0 1-.6464-1.002c.0588-.3827.372-.6022.8597-.6022a1.9283 1.9283 0 0 1 .2715.0204c.1765-.2062.4435-.5084.7111-.7757a.9587.9587 0 0 1 .7757-.3233h8.1774v-1.0989H1.6295a1.226 1.226 0 0 1-.7434.3436.6817.6817 0 0 1-.5494-.3113.8488.8488 0 0 1 .097-1.1312.7486.7486 0 0 1 .4793-.194 1.1539 1.1539 0 0 1 .8138.4849h3.1998l-.1014-.097c-.5595-.5284-1.1378-1.0747-1.8382-1.713a.7554.7554 0 0 1-.7757-.808c0-.514.2195-.7435.711-.7435.6617 0 .8404.2127.8728 1.0343.2482.238.4922.469.7508.7134.5417.5126 1.101 1.0414 1.6733 1.6138h5.236v-.7434H9.1605a1.2783 1.2783 0 0 1-.7049.2628.7457.7457 0 0 1-.588-.2951.808.808 0 0 1 .1294-1.099.6351.6351 0 0 1 .4373-.167 1.2777 1.2777 0 0 1 .8235.3933h2.198v-.8404c-.2264 0-.4526-.0036-.671-.007h-.0066a39.3709 39.3709 0 0 0-.656-.0072c-.2484 0-.4675.0048-.6705.0142a1.3974 1.3974 0 0 1-.1144.0048 1.2311 1.2311 0 0 1-.8552-.3603l-.6006-.5068-.0116-.01-.0078-.0066A260.83 260.83 0 0 0 6.6397 7.272H3.052a1.235 1.235 0 0 1-.7192.2909.7298.7298 0 0 1-.5737-.2909.7757.7757 0 0 1 .097-1.099.701.701 0 0 1 .4742-.2233 1.3556 1.3556 0 0 1 .8187.45h3.1352a1.599 1.599 0 0 1 1.1635.4525c.3733.3513.7951.6907 1.203 1.0187h.0016c.19.1532.388.3113.573.4664h2.198V7.2707c-.138 0-.2822-.0035-.4202-.007H11a17.915 17.915 0 0 0-.4392-.0072c-.1616 0-.3032.0048-.4286.0142a1.4155 1.4155 0 0 1-.1157.0049 1.3365 1.3365 0 0 1-.8558-.3265 11.3707 11.3707 0 0 0-.3048-.2405c-.1025-.0788-.212-.1616-.3093-.2443-.8-.0646-1.099-.2909-1.0667-.808a.7757.7757 0 0 1 .7758-.7434c.497 0 .7757.3018.808.8726.1293.097.2586.2033.388.3061l.0015.002c.1267.103.2585.2097.3878.3064h1.5838V5.1394h-.5495a1.3507 1.3507 0 0 1-.7654.3604.6872.6872 0 0 1-.5275-.296.7983.7983 0 0 1 .0324-1.099.6978.6978 0 0 1 .5003-.2146 1.1096 1.1096 0 0 1 .7586.3762h.5171a.5142.5142 0 0 0 .043-.3461 1.2334 1.2334 0 0 1-.0107-.1387v-.5171a3.1097 3.1097 0 0 1-.2908.0126c-.119 0-.2399-.0049-.3556-.0097h-.007a8.4163 8.4163 0 0 0-.364-.0104 1.9597 1.9597 0 0 0-1.0172.2344 10.704 10.704 0 0 1-1.115.5817h-.003c-.1538.0728-.3128.148-.466.2244a.8853.8853 0 0 1-.4202.0646H5.2188a1.0967 1.0967 0 0 1-.6958.3284.7822.7822 0 0 1-.5983-.3271.7237.7237 0 0 1-.181-.5453.8462.8462 0 0 1 .3103-.586.735.735 0 0 1 .4732-.1974 1.0705 1.0705 0 0 1 .755.456h2.101a.6167.6167 0 0 0 .2232-.053 1.192 1.192 0 0 1 .1322-.044c.1316-.0646.2628-.1292.3898-.1893a10.0788 10.0788 0 0 0 .9354-.4894 2.555 2.555 0 0 1 1.353-.3617c.0646 0 .1312.002.1981.0058a2.065 2.065 0 0 0 .2586.0143c.0853 0 .17-.0033.2586-.0068h.0023c.092-.0036.1874-.0075.286-.0075a2.1442 2.1442 0 0 0 .0365-.5908c-.0019-.0701-.0042-.1425-.0042-.2172H9.4164a1.4545 1.4545 0 0 1-.7663.3316.6823.6823 0 0 1-.5262-.2993.8307.8307 0 0 1 .0646-1.0989.715.715 0 0 1 .4874-.2043 1.243 1.243 0 0 1 .7758.3662h2.004c0-.0898.007-.1803.0144-.2763.0087-.1138.0178-.2314.0178-.3701h.126c4.196 0 7.4922 1.6423 9.7967 4.8805a12.2263 12.2263 0 0 1 2.408 6.4563c.1212 2.2033-.439 4.4571-1.6646 6.6986a11.395 11.395 0 0 1-4.4335 4.4768A11.4803 11.4803 0 0 1 12.1227 24zm.3672-5.5768v4.4604a1.616 1.616 0 0 0 .2705.0217 3.4704 3.4704 0 0 0 .491-.0456c.109-.0152.2204-.0323.337-.0407a14.979 14.979 0 0 0 2.392-4.3957zm4.6543 0a19.092 19.092 0 0 1-1.8424 3.9433 10.38 10.38 0 0 0 5.3008-3.9433zm1.0343-5.7855a20.4576 20.4576 0 0 1-.6788 4.6543h3.814a11.2114 11.2114 0 0 0 1.2928-4.6543zm-5.6886 0v4.622h3.8786a18.1495 18.1495 0 0 0 .6787-4.622zm.0323-5.7855v4.6542h4.5573a18.7193 18.7193 0 0 0-.711-4.6542zm4.9452-.0324a21.3593 21.3593 0 0 1 .711 4.6543h4.4281a10.9179 10.9179 0 0 0-1.3252-4.6543zm-2.1979-5.0421a20.007 20.007 0 0 1 1.8747 3.9432h3.4584a10.6137 10.6137 0 0 0-5.333-3.9432zm-2.7473-.5818c0 1.5624 0 3.0382.0323 4.4927h3.4584a.1183.1183 0 0 1-.0323-.097 16.2011 16.2011 0 0 0-2.2302-4.1048c-.0126-.0126-.0249-.0262-.0378-.0404a.2773.2773 0 0 0-.1884-.1212 9.487 9.487 0 0 0-1.002-.1293z" }) + ] + } + ); +}); + +export { SiCircuitverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.cjs new file mode 100644 index 000000000..4156c4c97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4051B5"; +const SiCirrusci = React__namespace.forwardRef(function SiCirrusci2({ title = "Cirrus CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.422.453a1.113 1.113 0 0 0-1.113 1.115 1.113 1.113 0 0 0 1.112 1.114c1.31 0 2.35 1.042 2.35 2.363 0 1.32-1.04 2.363-2.35 2.363H1.112A1.113 1.113 0 0 0 0 8.52a1.113 1.113 0 0 0 1.113 1.117h18.31c1.308 0 2.35 1.042 2.35 2.363 0 1.32-1.042 2.363-2.35 2.363H1.112A1.113 1.113 0 0 0 0 15.48a1.113 1.113 0 0 0 1.113 1.112h18.31c1.308 0 2.35 1.042 2.35 2.363 0 1.32-1.042 2.363-2.35 2.363H1.112A1.113 1.113 0 0 0 0 22.432a1.113 1.113 0 0 0 1.113 1.115h18.31a1.113 1.113 0 0 0 .206-.022c2.42-.112 4.37-2.12 4.37-4.57 0-1.393-.642-2.634-1.63-3.478C23.356 14.632 24 13.393 24 12c0-1.393-.643-2.632-1.63-3.477C23.357 7.68 24 6.438 24 5.045c0-2.52-2.06-4.592-4.578-4.592z" }) + ] + } + ); +}); + +exports.default = SiCirrusci; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.d.ts new file mode 100644 index 000000000..1fd0f5c11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4051B5"; +declare const SiCirrusci: IconType; +export { SiCirrusci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.mjs new file mode 100644 index 000000000..da8dd0d8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCirrusci.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4051B5"; +const SiCirrusci = React.forwardRef(function SiCirrusci2({ title = "Cirrus CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.422.453a1.113 1.113 0 0 0-1.113 1.115 1.113 1.113 0 0 0 1.112 1.114c1.31 0 2.35 1.042 2.35 2.363 0 1.32-1.04 2.363-2.35 2.363H1.112A1.113 1.113 0 0 0 0 8.52a1.113 1.113 0 0 0 1.113 1.117h18.31c1.308 0 2.35 1.042 2.35 2.363 0 1.32-1.042 2.363-2.35 2.363H1.112A1.113 1.113 0 0 0 0 15.48a1.113 1.113 0 0 0 1.113 1.112h18.31c1.308 0 2.35 1.042 2.35 2.363 0 1.32-1.042 2.363-2.35 2.363H1.112A1.113 1.113 0 0 0 0 22.432a1.113 1.113 0 0 0 1.113 1.115h18.31a1.113 1.113 0 0 0 .206-.022c2.42-.112 4.37-2.12 4.37-4.57 0-1.393-.642-2.634-1.63-3.478C23.356 14.632 24 13.393 24 12c0-1.393-.643-2.632-1.63-3.477C23.357 7.68 24 6.438 24 5.045c0-2.52-2.06-4.592-4.578-4.592z" }) + ] + } + ); +}); + +export { SiCirrusci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.cjs new file mode 100644 index 000000000..5a06c875b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BA0D7"; +const SiCisco = React__namespace.forwardRef(function SiCisco2({ title = "Cisco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.331 18.171V17.06l-.022.01c-.25.121-.522.19-.801.203a1.186 1.186 0 01-.806-.237 1.038 1.038 0 01-.352-.498 1.21 1.21 0 01-.023-.667c.052-.225.178-.426.357-.569.16-.134.355-.218.562-.242a1.85 1.85 0 011.061.198l.024.013v-1.117l-.051-.014a2.862 2.862 0 00-1.011-.132 2.34 2.34 0 00-.903.206c-.287.132-.54.327-.739.571a2.221 2.221 0 00-.04 2.705c.295.378.709.645 1.175.756.491.12 1.006.102 1.487-.052l.082-.023M5.336 18.171V17.06l-.022.01c-.25.121-.522.19-.801.203a1.183 1.183 0 01-.806-.237 1.03 1.03 0 01-.351-.498 1.202 1.202 0 01-.024-.667c.052-.225.177-.426.357-.569.16-.134.355-.218.562-.242a1.85 1.85 0 011.061.198l.024.013v-1.117l-.051-.014a2.862 2.862 0 00-1.011-.132 2.344 2.344 0 00-.903.206 2.08 2.08 0 00-.74.571 2.224 2.224 0 00-.041 2.705 2.11 2.11 0 001.176.756c.491.12 1.005.102 1.487-.052l.083-.023M9.26 17.249l-.004.957.07.012c.22.041.441.069.664.085.195.019.391.022.587.012.187-.014.372-.049.551-.104.21-.06.405-.163.571-.305a1.16 1.16 0 00.333-.478 1.31 1.31 0 00-.007-.96 1.068 1.068 0 00-.298-.414 1.261 1.261 0 00-.438-.255l-.722-.268a.388.388 0 01-.197-.188.245.245 0 01.008-.219.382.382 0 01.154-.142.798.798 0 01.257-.074c.153-.022.308-.021.46.005.18.02.358.051.533.096l.038.008v-.883l-.069-.015a4.749 4.749 0 00-.543-.097 2.844 2.844 0 00-.714-.003c-.3.027-.585.143-.821.33-.16.126-.281.293-.351.484-.104.29-.105.608 0 .899.054.145.14.274.252.381.097.093.207.173.327.236.157.084.324.149.497.195.057.017.114.035.17.054l.085.031.024.01c.084.03.162.078.226.14.045.042.08.094.101.151a.325.325 0 01.001.161.339.339 0 01-.166.198.856.856 0 01-.275.086 2.032 2.032 0 01-.427.021 5.208 5.208 0 01-.557-.074 9.195 9.195 0 01-.287-.067l-.033-.006zm-2.475.995h1.05v-4.167h-1.05v4.167zm12.162-2.936a1.095 1.095 0 011.541.158 1.094 1.094 0 01-.157 1.541l-.017.014a1.096 1.096 0 01-1.367-1.713m-1.525.854a2.193 2.193 0 002.666 2.107 2.139 2.139 0 00.701-3.937 2.207 2.207 0 00-3.367 1.83M22.961 10.728a.52.52 0 001.039 0V9.573a.52.52 0 00-1.039 0v1.155M20.117 10.728a.522.522 0 001.041 0V8.139a.521.521 0 00-1.04 0v2.589M17.231 11.771a.521.521 0 001.039 0V6.17a.52.52 0 00-1.039 0v5.601M14.393 10.728a.521.521 0 001.04 0V8.139a.52.52 0 00-1.039 0v2.589M11.494 10.728a.522.522 0 001.039 0V9.573a.52.52 0 00-1.039 0v1.155M8.624 10.728a.52.52 0 001.039 0V8.139a.52.52 0 00-1.039 0v2.589M5.737 11.771a.52.52 0 001.039 0V6.17a.52.52 0 00-1.039 0v5.601M2.876 10.728a.522.522 0 001.04 0V8.139a.52.52 0 00-1.039 0v2.589M0 10.728a.521.521 0 001.039 0V9.573a.52.52 0 00-1.039 0v1.155" }) + ] + } + ); +}); + +exports.default = SiCisco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.d.ts new file mode 100644 index 000000000..d15781a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BA0D7"; +declare const SiCisco: IconType; +export { SiCisco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.mjs new file mode 100644 index 000000000..e483290bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCisco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BA0D7"; +const SiCisco = React.forwardRef(function SiCisco2({ title = "Cisco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.331 18.171V17.06l-.022.01c-.25.121-.522.19-.801.203a1.186 1.186 0 01-.806-.237 1.038 1.038 0 01-.352-.498 1.21 1.21 0 01-.023-.667c.052-.225.178-.426.357-.569.16-.134.355-.218.562-.242a1.85 1.85 0 011.061.198l.024.013v-1.117l-.051-.014a2.862 2.862 0 00-1.011-.132 2.34 2.34 0 00-.903.206c-.287.132-.54.327-.739.571a2.221 2.221 0 00-.04 2.705c.295.378.709.645 1.175.756.491.12 1.006.102 1.487-.052l.082-.023M5.336 18.171V17.06l-.022.01c-.25.121-.522.19-.801.203a1.183 1.183 0 01-.806-.237 1.03 1.03 0 01-.351-.498 1.202 1.202 0 01-.024-.667c.052-.225.177-.426.357-.569.16-.134.355-.218.562-.242a1.85 1.85 0 011.061.198l.024.013v-1.117l-.051-.014a2.862 2.862 0 00-1.011-.132 2.344 2.344 0 00-.903.206 2.08 2.08 0 00-.74.571 2.224 2.224 0 00-.041 2.705 2.11 2.11 0 001.176.756c.491.12 1.005.102 1.487-.052l.083-.023M9.26 17.249l-.004.957.07.012c.22.041.441.069.664.085.195.019.391.022.587.012.187-.014.372-.049.551-.104.21-.06.405-.163.571-.305a1.16 1.16 0 00.333-.478 1.31 1.31 0 00-.007-.96 1.068 1.068 0 00-.298-.414 1.261 1.261 0 00-.438-.255l-.722-.268a.388.388 0 01-.197-.188.245.245 0 01.008-.219.382.382 0 01.154-.142.798.798 0 01.257-.074c.153-.022.308-.021.46.005.18.02.358.051.533.096l.038.008v-.883l-.069-.015a4.749 4.749 0 00-.543-.097 2.844 2.844 0 00-.714-.003c-.3.027-.585.143-.821.33-.16.126-.281.293-.351.484-.104.29-.105.608 0 .899.054.145.14.274.252.381.097.093.207.173.327.236.157.084.324.149.497.195.057.017.114.035.17.054l.085.031.024.01c.084.03.162.078.226.14.045.042.08.094.101.151a.325.325 0 01.001.161.339.339 0 01-.166.198.856.856 0 01-.275.086 2.032 2.032 0 01-.427.021 5.208 5.208 0 01-.557-.074 9.195 9.195 0 01-.287-.067l-.033-.006zm-2.475.995h1.05v-4.167h-1.05v4.167zm12.162-2.936a1.095 1.095 0 011.541.158 1.094 1.094 0 01-.157 1.541l-.017.014a1.096 1.096 0 01-1.367-1.713m-1.525.854a2.193 2.193 0 002.666 2.107 2.139 2.139 0 00.701-3.937 2.207 2.207 0 00-3.367 1.83M22.961 10.728a.52.52 0 001.039 0V9.573a.52.52 0 00-1.039 0v1.155M20.117 10.728a.522.522 0 001.041 0V8.139a.521.521 0 00-1.04 0v2.589M17.231 11.771a.521.521 0 001.039 0V6.17a.52.52 0 00-1.039 0v5.601M14.393 10.728a.521.521 0 001.04 0V8.139a.52.52 0 00-1.039 0v2.589M11.494 10.728a.522.522 0 001.039 0V9.573a.52.52 0 00-1.039 0v1.155M8.624 10.728a.52.52 0 001.039 0V8.139a.52.52 0 00-1.039 0v2.589M5.737 11.771a.52.52 0 001.039 0V6.17a.52.52 0 00-1.039 0v5.601M2.876 10.728a.522.522 0 001.04 0V8.139a.52.52 0 00-1.039 0v2.589M0 10.728a.521.521 0 001.039 0V9.573a.52.52 0 00-1.039 0v1.155" }) + ] + } + ); +}); + +export { SiCisco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.cjs new file mode 100644 index 000000000..47ff0aceb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#452170"; +const SiCitrix = React__namespace.forwardRef(function SiCitrix2({ title = "Citrix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.983 0a1.78 1.78 0 0 0-1.78 1.78 1.78 1.78 0 0 0 1.78 1.78 1.78 1.78 0 0 0 1.78-1.78A1.78 1.78 0 0 0 11.983 0zM5.17 5.991a1.026 1.026 0 0 0-1.095 1.027c0 .308.136.616.376.822l6.162 7.086-6.401 7.258a1.084 1.084 0 0 0-.309.787c0 .582.48 1.027 1.062 1.027.342 0 .684-.17.89-.444l6.128-7.19 6.162 7.19c.205.274.547.444.89.444.582.035 1.062-.445 1.062-1.027a1.14 1.14 0 0 0-.309-.787l-6.402-7.258 6.162-7.086c.24-.206.377-.514.377-.822v-.034c0-.582-.513-1.027-1.095-.993-.343 0-.65.171-.856.445l-5.957 7.018L6.06 6.436a1.07 1.07 0 0 0-.855-.445z" }) + ] + } + ); +}); + +exports.default = SiCitrix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.d.ts new file mode 100644 index 000000000..7d564d9a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#452170"; +declare const SiCitrix: IconType; +export { SiCitrix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.mjs new file mode 100644 index 000000000..e744d6cf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCitrix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#452170"; +const SiCitrix = React.forwardRef(function SiCitrix2({ title = "Citrix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.983 0a1.78 1.78 0 0 0-1.78 1.78 1.78 1.78 0 0 0 1.78 1.78 1.78 1.78 0 0 0 1.78-1.78A1.78 1.78 0 0 0 11.983 0zM5.17 5.991a1.026 1.026 0 0 0-1.095 1.027c0 .308.136.616.376.822l6.162 7.086-6.401 7.258a1.084 1.084 0 0 0-.309.787c0 .582.48 1.027 1.062 1.027.342 0 .684-.17.89-.444l6.128-7.19 6.162 7.19c.205.274.547.444.89.444.582.035 1.062-.445 1.062-1.027a1.14 1.14 0 0 0-.309-.787l-6.402-7.258 6.162-7.086c.24-.206.377-.514.377-.822v-.034c0-.582-.513-1.027-1.095-.993-.343 0-.65.171-.856.445l-5.957 7.018L6.06 6.436a1.07 1.07 0 0 0-.855-.445z" }) + ] + } + ); +}); + +export { SiCitrix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.cjs new file mode 100644 index 000000000..1272429e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA291C"; +const SiCitroen = React__namespace.forwardRef(function SiCitroen2({ title = "Citroën", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.684 0 2.292 5.38 2.292 12S6.652 24 12 24c5.347 0 9.708-5.38 9.708-12S17.316 0 12 0zM4.106 16.233c-.19-.604-.35-1.241-.414-1.878L12 8.18l8.371 6.175a12.334 12.334 0 0 1-.413 1.878v.032h-.032L12 10.345zm.923 2.101-.032-.032L12 13.114l7.003 5.188v.032c-1.655 2.897-4.202 4.616-6.987 4.616s-5.363-1.751-6.987-4.616zM12 5.347l-8.53 6.335v-.032c.063-2.674.954-5.284 2.61-7.385C7.67 2.324 9.772 1.21 12 1.21c2.228 0 4.36 1.114 5.92 3.055 1.56 1.942 2.515 4.616 2.61 7.417v.032l-.031-.032z" }) + ] + } + ); +}); + +exports.default = SiCitroen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.d.ts new file mode 100644 index 000000000..75626a1d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA291C"; +declare const SiCitroen: IconType; +export { SiCitroen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.mjs new file mode 100644 index 000000000..db0e4c3a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCitroen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA291C"; +const SiCitroen = React.forwardRef(function SiCitroen2({ title = "Citroën", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.684 0 2.292 5.38 2.292 12S6.652 24 12 24c5.347 0 9.708-5.38 9.708-12S17.316 0 12 0zM4.106 16.233c-.19-.604-.35-1.241-.414-1.878L12 8.18l8.371 6.175a12.334 12.334 0 0 1-.413 1.878v.032h-.032L12 10.345zm.923 2.101-.032-.032L12 13.114l7.003 5.188v.032c-1.655 2.897-4.202 4.616-6.987 4.616s-5.363-1.751-6.987-4.616zM12 5.347l-8.53 6.335v-.032c.063-2.674.954-5.284 2.61-7.385C7.67 2.324 9.772 1.21 12 1.21c2.228 0 4.36 1.114 5.92 3.055 1.56 1.942 2.515 4.616 2.61 7.417v.032l-.031-.032z" }) + ] + } + ); +}); + +export { SiCitroen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.cjs new file mode 100644 index 000000000..fe630abee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#81C459"; +const SiCivicrm = React__namespace.forwardRef(function SiCivicrm2({ title = "CiviCRM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.565 9.054c.248-.477.45-1.125.235-1.786-.25-.766-.939-1.275-2.051-1.511l-7.052-1.5L6.496.405C6.418.363 5.717 0 4.951 0 4.38 0 3.888.198 3.527.571c-.337.349-.539.834-.603 1.444a3.184 3.184 0 0 0-.199-.006c-1.089 0-1.648.456-1.926.839C.369 3.44.315 4.241.638 5.23l2.649 8.118.251 7.033c.044 1.222.719 2.536 2.098 2.537.264 0 .537-.051.82-.15.328.556.92 1.232 1.864 1.232.666 0 1.324-.357 1.956-1.063l5.11-5.697 6.783-4.283c.147-.094 1.444-.95 1.398-2.229-.022-.642-.362-1.202-1.002-1.674zM7.396 20.166l-2.328-7.134-.316-8.847 8.326 1.771 6.771 3.622-5.63 6.279-6.823 4.309zM20.377 7.51c.545.116.709.279.72.313.021.063-.017.196-.087.344l-1.623-.868.99.211zM4.951 1.792c.269 0 .607.145.7.193l1.738.929-2.693-.573c.013-.323.08-.484.12-.526.012-.011.062-.023.135-.023zm-2.61 2.882c-.195-.595-.093-.773-.092-.774.019-.026.167-.099.476-.099.083 0 .159.005.221.011l.109 3.05-.714-2.188zm2.988 15.642l-.029-.798.514 1.574a.68.68 0 0 1-.178.034c-.146 0-.293-.5-.307-.81zm3.614 1.424c-.414.463-.62.468-.622.468-.058 0-.185-.132-.301-.317l1.818-1.148-.895.997zm12.27-10.299l-1.445.913 1.695-1.89c.249.174.313.298.314.329.006.133-.287.468-.564.648z" }) + ] + } + ); +}); + +exports.default = SiCivicrm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.d.ts new file mode 100644 index 000000000..7bf45b102 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#81C459"; +declare const SiCivicrm: IconType; +export { SiCivicrm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.mjs new file mode 100644 index 000000000..649599453 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCivicrm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#81C459"; +const SiCivicrm = React.forwardRef(function SiCivicrm2({ title = "CiviCRM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.565 9.054c.248-.477.45-1.125.235-1.786-.25-.766-.939-1.275-2.051-1.511l-7.052-1.5L6.496.405C6.418.363 5.717 0 4.951 0 4.38 0 3.888.198 3.527.571c-.337.349-.539.834-.603 1.444a3.184 3.184 0 0 0-.199-.006c-1.089 0-1.648.456-1.926.839C.369 3.44.315 4.241.638 5.23l2.649 8.118.251 7.033c.044 1.222.719 2.536 2.098 2.537.264 0 .537-.051.82-.15.328.556.92 1.232 1.864 1.232.666 0 1.324-.357 1.956-1.063l5.11-5.697 6.783-4.283c.147-.094 1.444-.95 1.398-2.229-.022-.642-.362-1.202-1.002-1.674zM7.396 20.166l-2.328-7.134-.316-8.847 8.326 1.771 6.771 3.622-5.63 6.279-6.823 4.309zM20.377 7.51c.545.116.709.279.72.313.021.063-.017.196-.087.344l-1.623-.868.99.211zM4.951 1.792c.269 0 .607.145.7.193l1.738.929-2.693-.573c.013-.323.08-.484.12-.526.012-.011.062-.023.135-.023zm-2.61 2.882c-.195-.595-.093-.773-.092-.774.019-.026.167-.099.476-.099.083 0 .159.005.221.011l.109 3.05-.714-2.188zm2.988 15.642l-.029-.798.514 1.574a.68.68 0 0 1-.178.034c-.146 0-.293-.5-.307-.81zm3.614 1.424c-.414.463-.62.468-.622.468-.058 0-.185-.132-.301-.317l1.818-1.148-.895.997zm12.27-10.299l-1.445.913 1.695-1.89c.249.174.313.298.314.329.006.133-.287.468-.564.648z" }) + ] + } + ); +}); + +export { SiCivicrm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.cjs new file mode 100644 index 000000000..dbdd88900 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#239DFF"; +const SiCivo = React__namespace.forwardRef(function SiCivo2({ title = "Civo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.229 7.985h-.993c-.183 0-.303.14-.303.318v7.393c0 .177.12.318.303.318h.993a.318.318 0 0 0 .323-.318V8.303a.317.317 0 0 0-.323-.318m-3.1 5.838a.32.32 0 0 0-.507-.104 2.34 2.34 0 0 1-1.604.635c-1.627 0-2.868-1.65-2.141-3.368a2.128 2.128 0 0 1 1.13-1.128c.992-.42 1.958-.18 2.599.408a.32.32 0 0 0 .507-.103l.43-.943a.353.353 0 0 0-.111-.428C5.425 8.03 4.05 7.732 2.617 8.22a3.838 3.838 0 0 0-2.412 2.478c-.874 2.772 1.172 5.32 3.813 5.32.92 0 1.764-.31 2.44-.831a.348.348 0 0 0 .101-.42zm17.666-3.125a3.838 3.838 0 0 0-2.412-2.478 4.176 4.176 0 0 0-2.329-.13c-1.2.269-2.07.838-2.834 2.479l-1.534 3.326-2.603-5.722a.32.32 0 0 0-.29-.187l-1.138-.002a.32.32 0 0 0-.292.453l3.376 7.382a.324.324 0 0 0 .291.19l.056.005h1.276a.236.236 0 0 0 .076-.013.335.335 0 0 0 .2-.18l1.71-3.893c.515-1.213.827-1.718 1.643-2.065a2.527 2.527 0 0 1 2.054.026c.492.222.878.629 1.084 1.128a2.701 2.701 0 0 1 .206.95 2.354 2.354 0 0 1-2.353 2.387 2.34 2.34 0 0 1-1.604-.635.32.32 0 0 0-.507.104l-.43.944a.348.348 0 0 0 .1.42c.677.52 1.522.831 2.44.831 2.642 0 4.688-2.548 3.814-5.32" }) + ] + } + ); +}); + +exports.default = SiCivo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.d.ts new file mode 100644 index 000000000..90fe238e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#239DFF"; +declare const SiCivo: IconType; +export { SiCivo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.mjs new file mode 100644 index 000000000..7c25f2307 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCivo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#239DFF"; +const SiCivo = React.forwardRef(function SiCivo2({ title = "Civo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.229 7.985h-.993c-.183 0-.303.14-.303.318v7.393c0 .177.12.318.303.318h.993a.318.318 0 0 0 .323-.318V8.303a.317.317 0 0 0-.323-.318m-3.1 5.838a.32.32 0 0 0-.507-.104 2.34 2.34 0 0 1-1.604.635c-1.627 0-2.868-1.65-2.141-3.368a2.128 2.128 0 0 1 1.13-1.128c.992-.42 1.958-.18 2.599.408a.32.32 0 0 0 .507-.103l.43-.943a.353.353 0 0 0-.111-.428C5.425 8.03 4.05 7.732 2.617 8.22a3.838 3.838 0 0 0-2.412 2.478c-.874 2.772 1.172 5.32 3.813 5.32.92 0 1.764-.31 2.44-.831a.348.348 0 0 0 .101-.42zm17.666-3.125a3.838 3.838 0 0 0-2.412-2.478 4.176 4.176 0 0 0-2.329-.13c-1.2.269-2.07.838-2.834 2.479l-1.534 3.326-2.603-5.722a.32.32 0 0 0-.29-.187l-1.138-.002a.32.32 0 0 0-.292.453l3.376 7.382a.324.324 0 0 0 .291.19l.056.005h1.276a.236.236 0 0 0 .076-.013.335.335 0 0 0 .2-.18l1.71-3.893c.515-1.213.827-1.718 1.643-2.065a2.527 2.527 0 0 1 2.054.026c.492.222.878.629 1.084 1.128a2.701 2.701 0 0 1 .206.95 2.354 2.354 0 0 1-2.353 2.387 2.34 2.34 0 0 1-1.604-.635.32.32 0 0 0-.507.104l-.43.944a.348.348 0 0 0 .1.42c.677.52 1.522.831 2.44.831 2.642 0 4.688-2.548 3.814-5.32" }) + ] + } + ); +}); + +export { SiCivo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.cjs new file mode 100644 index 000000000..529009efa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1955FF"; +const SiClarifai = React__namespace.forwardRef(function SiClarifai2({ title = "Clarifai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.78 14.772A2.768 2.768 0 0 1 0 12.008a2.781 2.781 0 0 1 2.78-2.78 2.765 2.765 0 0 1 2.764 2.764c0 1.52-1.23 2.78-2.764 2.78zM17.119 1.83c-2.05 0-2.142 1.732-5.27 1.732-3.16 0-3.419-1.732-5.287-1.732a2.765 2.765 0 0 0-2.765 2.765 2.775 2.775 0 0 0 2.765 2.764c2.066 0 2.157-1.731 5.286-1.731 3.16 0 3.418 1.731 5.286 1.731A2.765 2.765 0 0 0 19.9 4.595a2.778 2.778 0 0 0-2.78-2.765zm0 14.81c-2.066 0-2.157 1.732-5.286 1.732-3.16 0-3.418-1.731-5.286-1.731a2.765 2.765 0 0 0-2.765 2.764 2.775 2.775 0 0 0 2.765 2.765c2.066 0 2.157-1.732 5.286-1.732 3.16 0 3.418 1.732 5.286 1.732a2.765 2.765 0 0 0 0-5.53zm4.101-7.397c-2.08 0-2.005 1.823-4.617 1.823-2.416-.015-2.446-1.823-4.755-1.823-1.443 0-2.628 1.322-2.628 2.765s1.2 2.764 2.765 2.764c2.08 0 2.005-1.823 4.618-1.823 2.415 0 2.445 1.808 4.77 1.808 1.442 0 2.627-1.322 2.627-2.765 0-1.427-1.2-2.749-2.78-2.749Z" }) + ] + } + ); +}); + +exports.default = SiClarifai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.d.ts new file mode 100644 index 000000000..1da201b73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1955FF"; +declare const SiClarifai: IconType; +export { SiClarifai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.mjs new file mode 100644 index 000000000..7a9e80ba5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClarifai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1955FF"; +const SiClarifai = React.forwardRef(function SiClarifai2({ title = "Clarifai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.78 14.772A2.768 2.768 0 0 1 0 12.008a2.781 2.781 0 0 1 2.78-2.78 2.765 2.765 0 0 1 2.764 2.764c0 1.52-1.23 2.78-2.764 2.78zM17.119 1.83c-2.05 0-2.142 1.732-5.27 1.732-3.16 0-3.419-1.732-5.287-1.732a2.765 2.765 0 0 0-2.765 2.765 2.775 2.775 0 0 0 2.765 2.764c2.066 0 2.157-1.731 5.286-1.731 3.16 0 3.418 1.731 5.286 1.731A2.765 2.765 0 0 0 19.9 4.595a2.778 2.778 0 0 0-2.78-2.765zm0 14.81c-2.066 0-2.157 1.732-5.286 1.732-3.16 0-3.418-1.731-5.286-1.731a2.765 2.765 0 0 0-2.765 2.764 2.775 2.775 0 0 0 2.765 2.765c2.066 0 2.157-1.732 5.286-1.732 3.16 0 3.418 1.732 5.286 1.732a2.765 2.765 0 0 0 0-5.53zm4.101-7.397c-2.08 0-2.005 1.823-4.617 1.823-2.416-.015-2.446-1.823-4.755-1.823-1.443 0-2.628 1.322-2.628 2.765s1.2 2.764 2.765 2.764c2.08 0 2.005-1.823 4.618-1.823 2.415 0 2.445 1.808 4.77 1.808 1.442 0 2.627-1.322 2.627-2.765 0-1.427-1.2-2.749-2.78-2.749Z" }) + ] + } + ); +}); + +export { SiClarifai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.cjs new file mode 100644 index 000000000..9a241c50e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiClaris = React__namespace.forwardRef(function SiClaris2({ title = "Claris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.56 0a3.34 3.34 0 00-.57.043L22.947 12 10.99 23.957c.132.022.307.043.57.043 6.626 0 12-5.375 12-12s-5.374-12-12-12zm-1.535 2.414C4.738 2.414.44 6.713.44 12s4.3 9.588 9.586 9.588c.264 0 .44-.023.57-.045L1.054 12l9.543-9.543a3.337 3.337 0 00-.57-.043zm.746 2.457c-.263 0-.438.021-.57.043L17.287 12l-7.086 7.086c.132.022.307.045.57.045 3.927 0 7.13-3.204 7.13-7.131s-3.203-7.129-7.13-7.129zm-.416 2.434A4.701 4.701 0 005.66 12a4.701 4.701 0 004.695 4.695c.264 0 .44-.023.57-.045L6.274 12l4.653-4.65a3.296 3.296 0 00-.57-.045Z" }) + ] + } + ); +}); + +exports.default = SiClaris; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.d.ts new file mode 100644 index 000000000..e04d7149a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiClaris: IconType; +export { SiClaris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.mjs new file mode 100644 index 000000000..973454d4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClaris.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiClaris = React.forwardRef(function SiClaris2({ title = "Claris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.56 0a3.34 3.34 0 00-.57.043L22.947 12 10.99 23.957c.132.022.307.043.57.043 6.626 0 12-5.375 12-12s-5.374-12-12-12zm-1.535 2.414C4.738 2.414.44 6.713.44 12s4.3 9.588 9.586 9.588c.264 0 .44-.023.57-.045L1.054 12l9.543-9.543a3.337 3.337 0 00-.57-.043zm.746 2.457c-.263 0-.438.021-.57.043L17.287 12l-7.086 7.086c.132.022.307.045.57.045 3.927 0 7.13-3.204 7.13-7.131s-3.203-7.129-7.13-7.129zm-.416 2.434A4.701 4.701 0 005.66 12a4.701 4.701 0 004.695 4.695c.264 0 .44-.023.57-.045L6.274 12l4.653-4.65a3.296 3.296 0 00-.57-.045Z" }) + ] + } + ); +}); + +export { SiClaris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.cjs new file mode 100644 index 000000000..ab8d1616f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#93FF9E"; +const SiClarivate = React__namespace.forwardRef(function SiClarivate2({ title = "Clarivate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.262 18a20.588 20.588 0 0 0 3.246-1.476 20.954 20.954 0 0 0 2.852-2.064A14.46 14.46 0 0 0 19.82 12c.328.328.622.688.884 1.082.328.394.592.786.788 1.18.262.46.524.886.786 1.28.198.458.394.884.59 1.278a23.172 23.172 0 0 1-2.654 2.46 38.765 38.765 0 0 1-2.952 1.966A29.612 29.612 0 0 1 10.574 24l-.788-1.18c-.26-.46-.524-.886-.786-1.28-.209-.42-.406-.846-.59-1.278l-.59-1.376A20.4 20.4 0 0 0 11.26 18h.002zm2.754-16.918a29.61 29.61 0 0 1 3.246 1.574c.984.59 1.968 1.246 2.952 1.966a47.566 47.566 0 0 1 2.654 2.46c-.196.46-.392.886-.59 1.28-.26.458-.524.884-.786 1.278a6.16 6.16 0 0 1-.788 1.18c-.273.409-.568.803-.884 1.18a18.072 18.072 0 0 0-2.46-2.558 20.936 20.936 0 0 0-2.852-2.064 20.4 20.4 0 0 0-6.688-2.36l.59-1.38c.196-.392.394-.82.59-1.278l.786-1.18.788-1.18c1.18.262 2.328.622 3.442 1.082zm-7.574 18c-.524.066-1.016.1-1.474.1H3.492c-.46 0-.92-.034-1.378-.1a34.28 34.28 0 0 1-.786-3.54 32.942 32.942 0 0 1 0-7.18c.196-1.18.46-2.33.786-3.444l1.378-.196h1.476c.46 0 .95.032 1.474.098l1.378.196-.59 1.77c-.262.984-.46 2-.59 3.05-.066.984-.1 2-.1 3.05.066 1.048.198 2.064.394 3.048.262 1.05.558 2.034.886 2.952-.46.13-.92.196-1.378.196z" }) + ] + } + ); +}); + +exports.default = SiClarivate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.d.ts new file mode 100644 index 000000000..b3bdfeb83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#93FF9E"; +declare const SiClarivate: IconType; +export { SiClarivate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.mjs new file mode 100644 index 000000000..8737a3e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClarivate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#93FF9E"; +const SiClarivate = React.forwardRef(function SiClarivate2({ title = "Clarivate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.262 18a20.588 20.588 0 0 0 3.246-1.476 20.954 20.954 0 0 0 2.852-2.064A14.46 14.46 0 0 0 19.82 12c.328.328.622.688.884 1.082.328.394.592.786.788 1.18.262.46.524.886.786 1.28.198.458.394.884.59 1.278a23.172 23.172 0 0 1-2.654 2.46 38.765 38.765 0 0 1-2.952 1.966A29.612 29.612 0 0 1 10.574 24l-.788-1.18c-.26-.46-.524-.886-.786-1.28-.209-.42-.406-.846-.59-1.278l-.59-1.376A20.4 20.4 0 0 0 11.26 18h.002zm2.754-16.918a29.61 29.61 0 0 1 3.246 1.574c.984.59 1.968 1.246 2.952 1.966a47.566 47.566 0 0 1 2.654 2.46c-.196.46-.392.886-.59 1.28-.26.458-.524.884-.786 1.278a6.16 6.16 0 0 1-.788 1.18c-.273.409-.568.803-.884 1.18a18.072 18.072 0 0 0-2.46-2.558 20.936 20.936 0 0 0-2.852-2.064 20.4 20.4 0 0 0-6.688-2.36l.59-1.38c.196-.392.394-.82.59-1.278l.786-1.18.788-1.18c1.18.262 2.328.622 3.442 1.082zm-7.574 18c-.524.066-1.016.1-1.474.1H3.492c-.46 0-.92-.034-1.378-.1a34.28 34.28 0 0 1-.786-3.54 32.942 32.942 0 0 1 0-7.18c.196-1.18.46-2.33.786-3.444l1.378-.196h1.476c.46 0 .95.032 1.474.098l1.378.196-.59 1.77c-.262.984-.46 2-.59 3.05-.066.984-.1 2-.1 3.05.066 1.048.198 2.064.394 3.048.262 1.05.558 2.034.886 2.952-.46.13-.92.196-1.378.196z" }) + ] + } + ); +}); + +export { SiClarivate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.cjs new file mode 100644 index 000000000..09cf02354 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D97757"; +const SiClaude = React__namespace.forwardRef(function SiClaude2({ title = "Claude", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m4.7144 15.9555 4.7174-2.6471.079-.2307-.079-.1275h-.2307l-.7893-.0486-2.6956-.0729-2.3375-.0971-2.2646-.1214-.5707-.1215-.5343-.7042.0546-.3522.4797-.3218.686.0608 1.5179.1032 2.2767.1578 1.6514.0972 2.4468.255h.3886l.0546-.1579-.1336-.0971-.1032-.0972L6.973 9.8356l-2.55-1.6879-1.3356-.9714-.7225-.4918-.3643-.4614-.1578-1.0078.6557-.7225.8803.0607.2246.0607.8925.686 1.9064 1.4754 2.4893 1.8336.3643.3035.1457-.1032.0182-.0728-.164-.2733-1.3539-2.4467-1.445-2.4893-.6435-1.032-.17-.6194c-.0607-.255-.1032-.4674-.1032-.7285L6.287.1335 6.6997 0l.9957.1336.419.3642.6192 1.4147 1.0018 2.2282 1.5543 3.0296.4553.8985.2429.8318.091.255h.1579v-.1457l.1275-1.706.2368-2.0947.2307-2.6957.0789-.7589.3764-.9107.7468-.4918.5828.2793.4797.686-.0668.4433-.2853 1.8517-.5586 2.9021-.3643 1.9429h.2125l.2429-.2429.9835-1.3053 1.6514-2.0643.7286-.8196.85-.9046.5464-.4311h1.0321l.759 1.1293-.34 1.1657-1.0625 1.3478-.8804 1.1414-1.2628 1.7-.7893 1.36.0729.1093.1882-.0183 2.8535-.607 1.5421-.2794 1.8396-.3157.8318.3886.091.3946-.3278.8075-1.967.4857-2.3072.4614-3.4364.8136-.0425.0304.0486.0607 1.5482.1457.6618.0364h1.621l3.0175.2247.7892.522.4736.6376-.079.4857-1.2142.6193-1.6393-.3886-3.825-.9107-1.3113-.3279h-.1822v.1093l1.0929 1.0686 2.0035 1.8092 2.5075 2.3314.1275.5768-.3218.4554-.34-.0486-2.2039-1.6575-.85-.7468-1.9246-1.621h-.1275v.17l.4432.6496 2.3436 3.5214.1214 1.0807-.17.3521-.6071.2125-.6679-.1214-1.3721-1.9246L14.38 17.959l-1.1414-1.9428-.1397.079-.674 7.2552-.3156.3703-.7286.2793-.6071-.4614-.3218-.7468.3218-1.4753.3886-1.9246.3157-1.53.2853-1.9004.17-.6314-.0121-.0425-.1397.0182-1.4328 1.9672-2.1796 2.9446-1.7243 1.8456-.4128.164-.7164-.3704.0667-.6618.4008-.5889 2.386-3.0357 1.4389-1.882.929-1.0868-.0062-.1579h-.0546l-6.3385 4.1164-1.1293.1457-.4857-.4554.0608-.7467.2307-.2429 1.9064-1.3114Z" }) + ] + } + ); +}); + +exports.default = SiClaude; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.d.ts new file mode 100644 index 000000000..9f376c4a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D97757"; +declare const SiClaude: IconType; +export { SiClaude as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.mjs new file mode 100644 index 000000000..33f118b67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClaude.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D97757"; +const SiClaude = React.forwardRef(function SiClaude2({ title = "Claude", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m4.7144 15.9555 4.7174-2.6471.079-.2307-.079-.1275h-.2307l-.7893-.0486-2.6956-.0729-2.3375-.0971-2.2646-.1214-.5707-.1215-.5343-.7042.0546-.3522.4797-.3218.686.0608 1.5179.1032 2.2767.1578 1.6514.0972 2.4468.255h.3886l.0546-.1579-.1336-.0971-.1032-.0972L6.973 9.8356l-2.55-1.6879-1.3356-.9714-.7225-.4918-.3643-.4614-.1578-1.0078.6557-.7225.8803.0607.2246.0607.8925.686 1.9064 1.4754 2.4893 1.8336.3643.3035.1457-.1032.0182-.0728-.164-.2733-1.3539-2.4467-1.445-2.4893-.6435-1.032-.17-.6194c-.0607-.255-.1032-.4674-.1032-.7285L6.287.1335 6.6997 0l.9957.1336.419.3642.6192 1.4147 1.0018 2.2282 1.5543 3.0296.4553.8985.2429.8318.091.255h.1579v-.1457l.1275-1.706.2368-2.0947.2307-2.6957.0789-.7589.3764-.9107.7468-.4918.5828.2793.4797.686-.0668.4433-.2853 1.8517-.5586 2.9021-.3643 1.9429h.2125l.2429-.2429.9835-1.3053 1.6514-2.0643.7286-.8196.85-.9046.5464-.4311h1.0321l.759 1.1293-.34 1.1657-1.0625 1.3478-.8804 1.1414-1.2628 1.7-.7893 1.36.0729.1093.1882-.0183 2.8535-.607 1.5421-.2794 1.8396-.3157.8318.3886.091.3946-.3278.8075-1.967.4857-2.3072.4614-3.4364.8136-.0425.0304.0486.0607 1.5482.1457.6618.0364h1.621l3.0175.2247.7892.522.4736.6376-.079.4857-1.2142.6193-1.6393-.3886-3.825-.9107-1.3113-.3279h-.1822v.1093l1.0929 1.0686 2.0035 1.8092 2.5075 2.3314.1275.5768-.3218.4554-.34-.0486-2.2039-1.6575-.85-.7468-1.9246-1.621h-.1275v.17l.4432.6496 2.3436 3.5214.1214 1.0807-.17.3521-.6071.2125-.6679-.1214-1.3721-1.9246L14.38 17.959l-1.1414-1.9428-.1397.079-.674 7.2552-.3156.3703-.7286.2793-.6071-.4614-.3218-.7468.3218-1.4753.3886-1.9246.3157-1.53.2853-1.9004.17-.6314-.0121-.0425-.1397.0182-1.4328 1.9672-2.1796 2.9446-1.7243 1.8456-.4128.164-.7164-.3704.0667-.6618.4008-.5889 2.386-3.0357 1.4389-1.882.929-1.0868-.0062-.1579h-.0546l-6.3385 4.1164-1.1293.1457-.4857-.4554.0608-.7467.2307-.2429 1.9064-1.3114Z" }) + ] + } + ); +}); + +export { SiClaude as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.cjs new file mode 100644 index 000000000..42db68c69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6C47FF"; +const SiClerk = React__namespace.forwardRef(function SiClerk2({ title = "Clerk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.47 20.829-2.881-2.881a.572.572 0 0 0-.7-.084 6.854 6.854 0 0 1-7.081 0 .576.576 0 0 0-.7.084l-2.881 2.881a.576.576 0 0 0-.103.69.57.57 0 0 0 .166.186 12 12 0 0 0 14.113 0 .58.58 0 0 0 .239-.423.576.576 0 0 0-.172-.453Zm.002-17.668-2.88 2.88a.569.569 0 0 1-.701.084A6.857 6.857 0 0 0 8.724 8.08a6.862 6.862 0 0 0-1.222 3.692 6.86 6.86 0 0 0 .978 3.764.573.573 0 0 1-.083.699l-2.881 2.88a.567.567 0 0 1-.864-.063A11.993 11.993 0 0 1 6.771 2.7a11.99 11.99 0 0 1 14.637-.405.566.566 0 0 1 .232.418.57.57 0 0 1-.168.448Zm-7.118 12.261a3.427 3.427 0 1 0 0-6.854 3.427 3.427 0 0 0 0 6.854Z" }) + ] + } + ); +}); + +exports.default = SiClerk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.d.ts new file mode 100644 index 000000000..d96b54945 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6C47FF"; +declare const SiClerk: IconType; +export { SiClerk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.mjs new file mode 100644 index 000000000..876f805fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClerk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6C47FF"; +const SiClerk = React.forwardRef(function SiClerk2({ title = "Clerk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.47 20.829-2.881-2.881a.572.572 0 0 0-.7-.084 6.854 6.854 0 0 1-7.081 0 .576.576 0 0 0-.7.084l-2.881 2.881a.576.576 0 0 0-.103.69.57.57 0 0 0 .166.186 12 12 0 0 0 14.113 0 .58.58 0 0 0 .239-.423.576.576 0 0 0-.172-.453Zm.002-17.668-2.88 2.88a.569.569 0 0 1-.701.084A6.857 6.857 0 0 0 8.724 8.08a6.862 6.862 0 0 0-1.222 3.692 6.86 6.86 0 0 0 .978 3.764.573.573 0 0 1-.083.699l-2.881 2.88a.567.567 0 0 1-.864-.063A11.993 11.993 0 0 1 6.771 2.7a11.99 11.99 0 0 1 14.637-.405.566.566 0 0 1 .232.418.57.57 0 0 1-.168.448Zm-7.118 12.261a3.427 3.427 0 1 0 0-6.854 3.427 3.427 0 0 0 0 6.854Z" }) + ] + } + ); +}); + +export { SiClerk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.cjs new file mode 100644 index 000000000..a9b8cc7ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#171C36"; +const SiClevercloud = React__namespace.forwardRef(function SiClevercloud2({ title = "Clever Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.823 11.139 11.253 0 1.608 5.57zM1.235 6.646v10.708L4.325 12zM12 23.57l6.43-11.14H5.57zM12 .43 5.57 11.57h12.86zm10.764 16.924V6.646L19.674 12zm.001.862-.374.215-3.215-5.57L12.746 24zm0-12.431L12.745 0l6.431 11.139 3.215-5.57zM1.235 18.216 11.254 24l-6.43-11.138-3.216 5.569z" }) + ] + } + ); +}); + +exports.default = SiClevercloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.d.ts new file mode 100644 index 000000000..715601296 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#171C36"; +declare const SiClevercloud: IconType; +export { SiClevercloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.mjs new file mode 100644 index 000000000..bc200a457 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClevercloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#171C36"; +const SiClevercloud = React.forwardRef(function SiClevercloud2({ title = "Clever Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.823 11.139 11.253 0 1.608 5.57zM1.235 6.646v10.708L4.325 12zM12 23.57l6.43-11.14H5.57zM12 .43 5.57 11.57h12.86zm10.764 16.924V6.646L19.674 12zm.001.862-.374.215-3.215-5.57L12.746 24zm0-12.431L12.745 0l6.431 11.139 3.215-5.57zM1.235 18.216 11.254 24l-6.43-11.138-3.216 5.569z" }) + ] + } + ); +}); + +export { SiClevercloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.cjs new file mode 100644 index 000000000..4e120c6f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCC01"; +const SiClickhouse = React__namespace.forwardRef(function SiClickhouse2({ title = "ClickHouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.333 10H24v4h-2.667ZM16 1.335h2.667v21.33H16Zm-5.333 0h2.666v21.33h-2.666ZM0 22.665V1.335h2.667v21.33zm5.333-21.33H8v21.33H5.333Z" }) + ] + } + ); +}); + +exports.default = SiClickhouse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.d.ts new file mode 100644 index 000000000..019511d57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCC01"; +declare const SiClickhouse: IconType; +export { SiClickhouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.mjs new file mode 100644 index 000000000..51f31a799 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClickhouse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCC01"; +const SiClickhouse = React.forwardRef(function SiClickhouse2({ title = "ClickHouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.333 10H24v4h-2.667ZM16 1.335h2.667v21.33H16Zm-5.333 0h2.666v21.33h-2.666ZM0 22.665V1.335h2.667v21.33zm5.333-21.33H8v21.33H5.333Z" }) + ] + } + ); +}); + +export { SiClickhouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.cjs new file mode 100644 index 000000000..b0933a35f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7B68EE"; +const SiClickup = React__namespace.forwardRef(function SiClickup2({ title = "ClickUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 18.439l3.69-2.828c1.961 2.56 4.044 3.739 6.363 3.739 2.307 0 4.33-1.166 6.203-3.704L22 18.405C19.298 22.065 15.941 24 12.053 24 8.178 24 4.788 22.078 2 18.439zM12.04 6.15l-6.568 5.66-3.036-3.52L12.055 0l9.543 8.296-3.05 3.509z" }) + ] + } + ); +}); + +exports.default = SiClickup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.d.ts new file mode 100644 index 000000000..6d36b25b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7B68EE"; +declare const SiClickup: IconType; +export { SiClickup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.mjs new file mode 100644 index 000000000..52ce85ad4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClickup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7B68EE"; +const SiClickup = React.forwardRef(function SiClickup2({ title = "ClickUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2 18.439l3.69-2.828c1.961 2.56 4.044 3.739 6.363 3.739 2.307 0 4.33-1.166 6.203-3.704L22 18.405C19.298 22.065 15.941 24 12.053 24 8.178 24 4.788 22.078 2 18.439zM12.04 6.15l-6.568 5.66-3.036-3.52L12.055 0l9.543 8.296-3.05 3.509z" }) + ] + } + ); +}); + +export { SiClickup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClion.cjs new file mode 100644 index 000000000..99dbd6dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiClion = React__namespace.forwardRef(function SiClion2({ title = "CLion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm7.041 3a5.049 5.049 0 0 1 .219 0c1.86 0 3 .6 3.9 1.56L9.78 6.18C9 5.46 8.22 5.04 7.26 5.04c-1.68 0-2.88 1.38-2.88 3.12 0 1.68 1.2 3.12 2.88 3.12 1.14 0 1.86-.48 2.64-1.14l1.38 1.38c-1.02 1.08-2.16 1.8-4.08 1.8a5.1 5.1 0 0 1-5.1-5.16A5.049 5.049 0 0 1 7.04 3zm5.738.12H15v8.1h4.32v1.86h-6.54V3.12zM2.28 19.5h9V21h-9v-1.5Z" }) + ] + } + ); +}); + +exports.default = SiClion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClion.d.ts new file mode 100644 index 000000000..436b56912 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiClion: IconType; +export { SiClion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClion.mjs new file mode 100644 index 000000000..02751eb65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiClion = React.forwardRef(function SiClion2({ title = "CLion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm7.041 3a5.049 5.049 0 0 1 .219 0c1.86 0 3 .6 3.9 1.56L9.78 6.18C9 5.46 8.22 5.04 7.26 5.04c-1.68 0-2.88 1.38-2.88 3.12 0 1.68 1.2 3.12 2.88 3.12 1.14 0 1.86-.48 2.64-1.14l1.38 1.38c-1.02 1.08-2.16 1.8-4.08 1.8a5.1 5.1 0 0 1-5.1-5.16A5.049 5.049 0 0 1 7.04 3zm5.738.12H15v8.1h4.32v1.86h-6.54V3.12zM2.28 19.5h9V21h-9v-1.5Z" }) + ] + } + ); +}); + +export { SiClion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.cjs new file mode 100644 index 000000000..34c94d83d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03A9F4"; +const SiClockify = React__namespace.forwardRef(function SiClockify2({ title = "Clockify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.3512 20.4035c1.1108 0 2.169-.2217 3.139-.6157l2.6913 2.6944C17.4555 23.4458 15.4688 24 13.3512 24 6.729 24 1.3594 18.627 1.3594 12.0006 1.3594 5.3729 6.7289 0 13.3512 0c2.0964 0 4.0652.5406 5.7789 1.4865L16.4834 4.136c-.9687-.3918-2.0236-.6134-3.1322-.6134-4.6379 0-8.3976 3.779-8.3976 8.441 0 4.6609 3.7597 8.4399 8.3976 8.4399zm2.176-12.1544l5.5104-5.5139 1.5773 1.5772-5.5104 5.514zm-2.2328 5.6348c-1.0784 0-1.952-.8775-1.952-1.961 0-1.0825.8736-1.9611 1.952-1.9611 1.0784 0 1.952.8786 1.952 1.961 0 1.0836-.8736 1.9611-1.952 1.9611zm9.3462 5.6953l-1.5772 1.5783-5.5105-5.514 1.5774-1.5783z" }) + ] + } + ); +}); + +exports.default = SiClockify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.d.ts new file mode 100644 index 000000000..4f6f1f3ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03A9F4"; +declare const SiClockify: IconType; +export { SiClockify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.mjs new file mode 100644 index 000000000..543f45a18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClockify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03A9F4"; +const SiClockify = React.forwardRef(function SiClockify2({ title = "Clockify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.3512 20.4035c1.1108 0 2.169-.2217 3.139-.6157l2.6913 2.6944C17.4555 23.4458 15.4688 24 13.3512 24 6.729 24 1.3594 18.627 1.3594 12.0006 1.3594 5.3729 6.7289 0 13.3512 0c2.0964 0 4.0652.5406 5.7789 1.4865L16.4834 4.136c-.9687-.3918-2.0236-.6134-3.1322-.6134-4.6379 0-8.3976 3.779-8.3976 8.441 0 4.6609 3.7597 8.4399 8.3976 8.4399zm2.176-12.1544l5.5104-5.5139 1.5773 1.5772-5.5104 5.514zm-2.2328 5.6348c-1.0784 0-1.952-.8775-1.952-1.961 0-1.0825.8736-1.9611 1.952-1.9611 1.0784 0 1.952.8786 1.952 1.961 0 1.0836-.8736 1.9611-1.952 1.9611zm9.3462 5.6953l-1.5772 1.5783-5.5105-5.514 1.5774-1.5783z" }) + ] + } + ); +}); + +export { SiClockify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.cjs new file mode 100644 index 000000000..cf39f218e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5881D8"; +const SiClojure = React__namespace.forwardRef(function SiClojure2({ title = "Clojure", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.503 12.216c-.119.259-.251.549-.387.858-.482 1.092-1.016 2.42-1.21 3.271a4.91 4.91 0 0 0-.112 1.096c0 .164.009.337.022.514.682.25 1.417.388 2.186.39a6.39 6.39 0 0 0 2.001-.326 3.808 3.808 0 0 1-.418-.441c-.854-1.089-1.329-2.682-2.082-5.362M8.355 6.813A6.347 6.347 0 0 0 5.657 12a6.347 6.347 0 0 0 2.625 5.134c.39-1.622 1.366-3.107 2.83-6.084-.087-.239-.186-.5-.297-.775-.406-1.018-.991-2.198-1.513-2.733a4.272 4.272 0 0 0-.947-.729M17.527 19.277c-.84-.105-1.533-.232-2.141-.446A7.625 7.625 0 0 1 4.376 12a7.6 7.6 0 0 1 2.6-5.73 5.582 5.582 0 0 0-1.324-.162c-2.236.02-4.597 1.258-5.58 4.602-.092.486-.07.854-.07 1.29 0 6.627 5.373 12 12 12 4.059 0 7.643-2.017 9.815-5.101-1.174.293-2.305.433-3.271.436-.362 0-.702-.02-1.019-.058M15.273 16.952c.074.036.242.097.475.163a6.354 6.354 0 0 0 2.6-5.115h-.002a6.354 6.354 0 0 0-6.345-6.345 6.338 6.338 0 0 0-1.992.324c1.289 1.468 1.908 3.566 2.507 5.862l.001.003c.001.002.192.637.518 1.48.326.842.789 1.885 1.293 2.645.332.51.697.876.945.983M12.001 0a11.98 11.98 0 0 0-9.752 5.013c1.134-.71 2.291-.967 3.301-.957 1.394.004 2.491.436 3.017.732.127.073.248.152.366.233A7.625 7.625 0 0 1 19.625 12a7.605 7.605 0 0 1-2.268 5.425c.344.038.709.063 1.084.061 1.328 0 2.766-.293 3.842-1.198.703-.592 1.291-1.458 1.617-2.757.065-.502.1-1.012.1-1.531 0-6.627-5.371-12-11.999-12" }) + ] + } + ); +}); + +exports.default = SiClojure; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.d.ts new file mode 100644 index 000000000..4b8969b52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5881D8"; +declare const SiClojure: IconType; +export { SiClojure as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.mjs new file mode 100644 index 000000000..cac7367fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClojure.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5881D8"; +const SiClojure = React.forwardRef(function SiClojure2({ title = "Clojure", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.503 12.216c-.119.259-.251.549-.387.858-.482 1.092-1.016 2.42-1.21 3.271a4.91 4.91 0 0 0-.112 1.096c0 .164.009.337.022.514.682.25 1.417.388 2.186.39a6.39 6.39 0 0 0 2.001-.326 3.808 3.808 0 0 1-.418-.441c-.854-1.089-1.329-2.682-2.082-5.362M8.355 6.813A6.347 6.347 0 0 0 5.657 12a6.347 6.347 0 0 0 2.625 5.134c.39-1.622 1.366-3.107 2.83-6.084-.087-.239-.186-.5-.297-.775-.406-1.018-.991-2.198-1.513-2.733a4.272 4.272 0 0 0-.947-.729M17.527 19.277c-.84-.105-1.533-.232-2.141-.446A7.625 7.625 0 0 1 4.376 12a7.6 7.6 0 0 1 2.6-5.73 5.582 5.582 0 0 0-1.324-.162c-2.236.02-4.597 1.258-5.58 4.602-.092.486-.07.854-.07 1.29 0 6.627 5.373 12 12 12 4.059 0 7.643-2.017 9.815-5.101-1.174.293-2.305.433-3.271.436-.362 0-.702-.02-1.019-.058M15.273 16.952c.074.036.242.097.475.163a6.354 6.354 0 0 0 2.6-5.115h-.002a6.354 6.354 0 0 0-6.345-6.345 6.338 6.338 0 0 0-1.992.324c1.289 1.468 1.908 3.566 2.507 5.862l.001.003c.001.002.192.637.518 1.48.326.842.789 1.885 1.293 2.645.332.51.697.876.945.983M12.001 0a11.98 11.98 0 0 0-9.752 5.013c1.134-.71 2.291-.967 3.301-.957 1.394.004 2.491.436 3.017.732.127.073.248.152.366.233A7.625 7.625 0 0 1 19.625 12a7.605 7.605 0 0 1-2.268 5.425c.344.038.709.063 1.084.061 1.328 0 2.766-.293 3.842-1.198.703-.592 1.291-1.458 1.617-2.757.065-.502.1-1.012.1-1.531 0-6.627-5.371-12-11.999-12" }) + ] + } + ); +}); + +export { SiClojure as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.cjs new file mode 100644 index 000000000..0d44e67f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C72B9"; +const SiCloud66 = React__namespace.forwardRef(function SiCloud662({ title = "Cloud 66", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.985.317C7.0865 2.716 2.9666.4233 2.9666.4233 1.1064 3.486.216 6.1747 0 8.5272h23.9992c-.2165-2.3514-1.1074-5.0365-2.9665-8.0966 0 0-4.119 2.2905-9.0185-.1073zM5.2196 3.5273c.424 0 .7456.0853.8906.1594l-.1666.6417a1.7877 1.7877 0 0 0-.6865-.1334c-.6485 0-1.152.3871-1.152 1.1823 0 .7157.4282 1.1666 1.1572 1.1666.2464 0 .5202-.0537.6813-.1166l.124.6312c-.1505.0747-.4882.1594-.9282.1594-1.248 0-1.8916-.7751-1.8916-1.7927 0-1.2197.879-1.8979 1.9718-1.8979zm6.3144 0c1.1093 0 1.7145.8217 1.7145 1.8083 0 1.1717-.7179 1.8823-1.7739 1.8823-1.072 0-1.6989-.8006-1.6989-1.8187 0-1.071.6917-1.8719 1.7583-1.8719zm7.8091.0323c.6859 0 1.131.1226 1.4792.3823.3754.2757.6114.7149.6114 1.3458 0 .6837-.2517 1.1562-.6 1.4479-.3808.3125-.9594.4604-1.6666.4604-.424 0-.7244-.026-.928-.0521V3.6336c.2996-.048.6913-.074 1.104-.074zM7.003 3.5867h.8198v2.8947H9.258v.6781H7.003zm7.1779 0h.8208V5.643c0 .615.235.9281.6531.9281.4293 0 .6646-.2972.6646-.928V3.5866h.8156v2.003c0 1.103-.5638 1.6282-1.5073 1.6282-.9109 0-1.4468-.4988-1.4468-1.6385zm-2.6718.5823c-.5504 0-.8708.5212-.8708 1.2166 0 .7013.332 1.1958.877 1.1958.55 0 .8646-.5212.8646-1.2166 0-.6432-.3097-1.1958-.8708-1.1958zm7.9206.0104c-.1824 0-.301.0163-.3708.0323v2.3437c.0698.016.1825.0156.2843.0156.7398.0053 1.2219-.3987 1.2219-1.2541.0053-.744-.4336-1.1375-1.1354-1.1375zM.0052 9.7886c-.281 10.276 11.9798 13.8881 11.9798 13.8881l.0292.0063S24.281 20.0688 23.9951 9.7886h-.001zm10.7684 1.2802a5.5849 5.5849 0 0 1 .326.0083v1.4125c-.2117 0-.4367 0-.7364.024-1.6853.1333-2.434.967-2.6457 1.8842h.0375c.3989-.3983.9613-.628 1.7228-.628 1.36 0 2.5083.93 2.5083 2.5603 0 1.5583-1.2358 2.8384-2.9958 2.8384-2.1588 0-3.2196-1.557-3.2196-3.429 0-1.4736.5618-2.706 1.4353-3.4916.8112-.7125 1.8592-1.099 3.1322-1.1593a5.5849 5.5849 0 0 1 .4354-.0198zm6.9269 0a5.5849 5.5849 0 0 1 .327.0083v1.4125c-.2117 0-.4367 0-.7364.024-1.6853.1333-2.434.967-2.6457 1.8842h.0375c.3989-.3983.9613-.628 1.7228-.628 1.36 0 2.5072.93 2.5072 2.5603 0 1.5583-1.2352 2.8384-2.9947 2.8384-2.1593 0-3.2196-1.557-3.2196-3.429 0-1.4736.5618-2.706 1.4353-3.4916.8112-.7125 1.8592-1.099 3.1322-1.1593a5.5849 5.5849 0 0 1 .4344-.0198zm-8.8477 4.0061c-.512 0-.9356.301-1.1228.7-.0496.096-.075.2423-.075.4593.0373.8336.449 1.5823 1.3103 1.5823h.0125c.6614 0 1.0854-.5928 1.0854-1.3896 0-.7253-.3992-1.352-1.2104-1.352zm6.928 0c-.512 0-.9357.301-1.123.7-.0495.096-.075.2423-.075.4593.0374.8336.4491 1.5823 1.3105 1.5823h.0125c.6613 0 1.0853-.5928 1.0853-1.3896 0-.7253-.3992-1.352-1.2103-1.352Z" }) + ] + } + ); +}); + +exports.default = SiCloud66; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.d.ts new file mode 100644 index 000000000..071ea754a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C72B9"; +declare const SiCloud66: IconType; +export { SiCloud66 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.mjs new file mode 100644 index 000000000..a0b96c3c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloud66.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C72B9"; +const SiCloud66 = React.forwardRef(function SiCloud662({ title = "Cloud 66", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.985.317C7.0865 2.716 2.9666.4233 2.9666.4233 1.1064 3.486.216 6.1747 0 8.5272h23.9992c-.2165-2.3514-1.1074-5.0365-2.9665-8.0966 0 0-4.119 2.2905-9.0185-.1073zM5.2196 3.5273c.424 0 .7456.0853.8906.1594l-.1666.6417a1.7877 1.7877 0 0 0-.6865-.1334c-.6485 0-1.152.3871-1.152 1.1823 0 .7157.4282 1.1666 1.1572 1.1666.2464 0 .5202-.0537.6813-.1166l.124.6312c-.1505.0747-.4882.1594-.9282.1594-1.248 0-1.8916-.7751-1.8916-1.7927 0-1.2197.879-1.8979 1.9718-1.8979zm6.3144 0c1.1093 0 1.7145.8217 1.7145 1.8083 0 1.1717-.7179 1.8823-1.7739 1.8823-1.072 0-1.6989-.8006-1.6989-1.8187 0-1.071.6917-1.8719 1.7583-1.8719zm7.8091.0323c.6859 0 1.131.1226 1.4792.3823.3754.2757.6114.7149.6114 1.3458 0 .6837-.2517 1.1562-.6 1.4479-.3808.3125-.9594.4604-1.6666.4604-.424 0-.7244-.026-.928-.0521V3.6336c.2996-.048.6913-.074 1.104-.074zM7.003 3.5867h.8198v2.8947H9.258v.6781H7.003zm7.1779 0h.8208V5.643c0 .615.235.9281.6531.9281.4293 0 .6646-.2972.6646-.928V3.5866h.8156v2.003c0 1.103-.5638 1.6282-1.5073 1.6282-.9109 0-1.4468-.4988-1.4468-1.6385zm-2.6718.5823c-.5504 0-.8708.5212-.8708 1.2166 0 .7013.332 1.1958.877 1.1958.55 0 .8646-.5212.8646-1.2166 0-.6432-.3097-1.1958-.8708-1.1958zm7.9206.0104c-.1824 0-.301.0163-.3708.0323v2.3437c.0698.016.1825.0156.2843.0156.7398.0053 1.2219-.3987 1.2219-1.2541.0053-.744-.4336-1.1375-1.1354-1.1375zM.0052 9.7886c-.281 10.276 11.9798 13.8881 11.9798 13.8881l.0292.0063S24.281 20.0688 23.9951 9.7886h-.001zm10.7684 1.2802a5.5849 5.5849 0 0 1 .326.0083v1.4125c-.2117 0-.4367 0-.7364.024-1.6853.1333-2.434.967-2.6457 1.8842h.0375c.3989-.3983.9613-.628 1.7228-.628 1.36 0 2.5083.93 2.5083 2.5603 0 1.5583-1.2358 2.8384-2.9958 2.8384-2.1588 0-3.2196-1.557-3.2196-3.429 0-1.4736.5618-2.706 1.4353-3.4916.8112-.7125 1.8592-1.099 3.1322-1.1593a5.5849 5.5849 0 0 1 .4354-.0198zm6.9269 0a5.5849 5.5849 0 0 1 .327.0083v1.4125c-.2117 0-.4367 0-.7364.024-1.6853.1333-2.434.967-2.6457 1.8842h.0375c.3989-.3983.9613-.628 1.7228-.628 1.36 0 2.5072.93 2.5072 2.5603 0 1.5583-1.2352 2.8384-2.9947 2.8384-2.1593 0-3.2196-1.557-3.2196-3.429 0-1.4736.5618-2.706 1.4353-3.4916.8112-.7125 1.8592-1.099 3.1322-1.1593a5.5849 5.5849 0 0 1 .4344-.0198zm-8.8477 4.0061c-.512 0-.9356.301-1.1228.7-.0496.096-.075.2423-.075.4593.0373.8336.449 1.5823 1.3103 1.5823h.0125c.6614 0 1.0854-.5928 1.0854-1.3896 0-.7253-.3992-1.352-1.2104-1.352zm6.928 0c-.512 0-.9357.301-1.123.7-.0495.096-.075.2423-.075.4593.0374.8336.4491 1.5823 1.3105 1.5823h.0125c.6613 0 1.0853-.5928 1.0853-1.3896 0-.7253-.3992-1.352-1.2103-1.352Z" }) + ] + } + ); +}); + +export { SiCloud66 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.cjs new file mode 100644 index 000000000..6fb38beb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1997B5"; +const SiCloudbees = React__namespace.forwardRef(function SiCloudbees2({ title = "CloudBees", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.87.283C3.081.283 0 3.32 0 7.05c0 3.732 3.082 6.767 6.87 6.767h2.429v-3.495h-2.43c-1.83 0-3.319-1.468-3.319-3.272 0-1.804 1.488-3.27 3.32-3.27.734 0 1.377.19 1.928.567l2.51-2.473C10.06.814 8.58.284 6.87.284zm5.152 2.231c-.066-.005-.141.08-.35.252a.457.457 0 0 0-.028.026L9.722 4.674c-.323.315-.29.203-.066.556a3.204 3.204 0 0 1 .532 1.749v9.991c0 3.73 3.096 6.747 6.908 6.747C20.907 23.717 24 20.7 24 16.97c0-3.728-3.093-6.75-6.904-6.75H13.76V6.979c0-1.495-.512-3.002-1.436-4.158-.175-.203-.234-.3-.3-.307zm5.246 11.209c1.762.088 3.168 1.502 3.168 3.247 0 1.802-1.5 3.264-3.342 3.264s-3.335-1.477-3.335-3.28v-3.219h3.509z" }) + ] + } + ); +}); + +exports.default = SiCloudbees; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.d.ts new file mode 100644 index 000000000..492510b56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1997B5"; +declare const SiCloudbees: IconType; +export { SiCloudbees as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.mjs new file mode 100644 index 000000000..c3957d04e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudbees.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1997B5"; +const SiCloudbees = React.forwardRef(function SiCloudbees2({ title = "CloudBees", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.87.283C3.081.283 0 3.32 0 7.05c0 3.732 3.082 6.767 6.87 6.767h2.429v-3.495h-2.43c-1.83 0-3.319-1.468-3.319-3.272 0-1.804 1.488-3.27 3.32-3.27.734 0 1.377.19 1.928.567l2.51-2.473C10.06.814 8.58.284 6.87.284zm5.152 2.231c-.066-.005-.141.08-.35.252a.457.457 0 0 0-.028.026L9.722 4.674c-.323.315-.29.203-.066.556a3.204 3.204 0 0 1 .532 1.749v9.991c0 3.73 3.096 6.747 6.908 6.747C20.907 23.717 24 20.7 24 16.97c0-3.728-3.093-6.75-6.904-6.75H13.76V6.979c0-1.495-.512-3.002-1.436-4.158-.175-.203-.234-.3-.3-.307zm5.246 11.209c1.762.088 3.168 1.502 3.168 3.247 0 1.802-1.5 3.264-3.342 3.264s-3.335-1.477-3.335-3.28v-3.219h3.509z" }) + ] + } + ); +}); + +export { SiCloudbees as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.cjs new file mode 100644 index 000000000..1cbf64cde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#407AFC"; +const SiCloudcannon = React__namespace.forwardRef(function SiCloudcannon2({ title = "CloudCannon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.686 7.602c.321-1.964-1.203-3.778-3.21-3.778-.91 0-1.733.376-2.325.977a1.132 1.132 0 0 0-1.061-.744c-.63 0-1.141.51-1.141 1.14s.429.909 1.34 1.335a5.884 5.884 0 0 1 .813.46c.275.184.534.388.776.612A6.02 6.02 0 0 1 17.796 12a6.02 6.02 0 0 1-2.694 5.008 6.16 6.16 0 0 1-.813.46c-.911.427-1.34.704-1.34 1.335 0 .63.51 1.141 1.14 1.141.492 0 .9-.312 1.062-.744.592.6 1.414.976 2.325.976 2.025 0 3.527-1.81 3.21-3.778C22.61 15.842 24 14.026 24 12.001c0-2.038-1.382-3.837-3.314-4.399zM9.711 17.468a6.193 6.193 0 0 1-1.589-1.073A6.02 6.02 0 0 1 6.204 12a6.02 6.02 0 0 1 1.918-4.395 6.22 6.22 0 0 1 1.589-1.072c.91-.427 1.34-.704 1.34-1.335s-.51-1.141-1.14-1.141c-.492 0-.9.312-1.062.744a3.257 3.257 0 0 0-2.325-.976c-2.003 0-3.536 1.807-3.21 3.778C1.381 8.164 0 9.962 0 12c0 2.028 1.38 3.836 3.314 4.397-.323 1.954 1.198 3.778 3.21 3.778.91 0 1.733-.375 2.325-.976.162.432.57.744 1.061.744.63 0 1.141-.51 1.141-1.14 0-.631-.429-.909-1.34-1.335zM12 8.443a3.557 3.557 0 1 1 0 7.114 3.557 3.557 0 0 1 0-7.114z" }) + ] + } + ); +}); + +exports.default = SiCloudcannon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.d.ts new file mode 100644 index 000000000..ac7a73572 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#407AFC"; +declare const SiCloudcannon: IconType; +export { SiCloudcannon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.mjs new file mode 100644 index 000000000..19bd24206 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudcannon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#407AFC"; +const SiCloudcannon = React.forwardRef(function SiCloudcannon2({ title = "CloudCannon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.686 7.602c.321-1.964-1.203-3.778-3.21-3.778-.91 0-1.733.376-2.325.977a1.132 1.132 0 0 0-1.061-.744c-.63 0-1.141.51-1.141 1.14s.429.909 1.34 1.335a5.884 5.884 0 0 1 .813.46c.275.184.534.388.776.612A6.02 6.02 0 0 1 17.796 12a6.02 6.02 0 0 1-2.694 5.008 6.16 6.16 0 0 1-.813.46c-.911.427-1.34.704-1.34 1.335 0 .63.51 1.141 1.14 1.141.492 0 .9-.312 1.062-.744.592.6 1.414.976 2.325.976 2.025 0 3.527-1.81 3.21-3.778C22.61 15.842 24 14.026 24 12.001c0-2.038-1.382-3.837-3.314-4.399zM9.711 17.468a6.193 6.193 0 0 1-1.589-1.073A6.02 6.02 0 0 1 6.204 12a6.02 6.02 0 0 1 1.918-4.395 6.22 6.22 0 0 1 1.589-1.072c.91-.427 1.34-.704 1.34-1.335s-.51-1.141-1.14-1.141c-.492 0-.9.312-1.062.744a3.257 3.257 0 0 0-2.325-.976c-2.003 0-3.536 1.807-3.21 3.778C1.381 8.164 0 9.962 0 12c0 2.028 1.38 3.836 3.314 4.397-.323 1.954 1.198 3.778 3.21 3.778.91 0 1.733-.375 2.325-.976.162.432.57.744 1.061.744.63 0 1.141-.51 1.141-1.14 0-.631-.429-.909-1.34-1.335zM12 8.443a3.557 3.557 0 1 1 0 7.114 3.557 3.557 0 0 1 0-7.114z" }) + ] + } + ); +}); + +export { SiCloudcannon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.cjs new file mode 100644 index 000000000..4806b8fb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F96702"; +const SiCloudera = React__namespace.forwardRef(function SiCloudera2({ title = "Cloudera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.344 20.251a8.25 8.25 0 1 1 0-16.502 8.21 8.21 0 0 1 5.633 2.234L15.519 8.53a4.686 4.686 0 0 0-3.175-1.239 4.709 4.709 0 1 0 3.284 8.081l2.657 2.346a8.224 8.224 0 0 1-5.941 2.533z" }) + ] + } + ); +}); + +exports.default = SiCloudera; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.d.ts new file mode 100644 index 000000000..99b75aacc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F96702"; +declare const SiCloudera: IconType; +export { SiCloudera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.mjs new file mode 100644 index 000000000..0d554439e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudera.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F96702"; +const SiCloudera = React.forwardRef(function SiCloudera2({ title = "Cloudera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.344 20.251a8.25 8.25 0 1 1 0-16.502 8.21 8.21 0 0 1 5.633 2.234L15.519 8.53a4.686 4.686 0 0 0-3.175-1.239 4.709 4.709 0 1 0 3.284 8.081l2.657 2.346a8.224 8.224 0 0 1-5.941 2.533z" }) + ] + } + ); +}); + +export { SiCloudera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.cjs new file mode 100644 index 000000000..59b916eeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F38020"; +const SiCloudflare = React__namespace.forwardRef(function SiCloudflare2({ title = "Cloudflare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5088 16.8447c.1475-.5068.0908-.9707-.1553-1.3154-.2246-.3164-.6045-.499-1.0615-.5205l-8.6592-.1123a.1559.1559 0 0 1-.1333-.0713c-.0283-.042-.0351-.0986-.021-.1553.0278-.084.1123-.1484.2036-.1562l8.7359-.1123c1.0351-.0489 2.1601-.8868 2.5537-1.9136l.499-1.3013c.0215-.0561.0293-.1128.0147-.168-.5625-2.5463-2.835-4.4453-5.5499-4.4453-2.5039 0-4.6284 1.6177-5.3876 3.8614-.4927-.3658-1.1187-.5625-1.794-.499-1.2026.119-2.1665 1.083-2.2861 2.2856-.0283.31-.0069.6128.0635.894C1.5683 13.171 0 14.7754 0 16.752c0 .1748.0142.3515.0352.5273.0141.083.0844.1475.1689.1475h15.9814c.0909 0 .1758-.0645.2032-.1553l.12-.4268zm2.7568-5.5634c-.0771 0-.1611 0-.2383.0112-.0566 0-.1054.0415-.127.0976l-.3378 1.1744c-.1475.5068-.0918.9707.1543 1.3164.2256.3164.6055.498 1.0625.5195l1.8437.1133c.0557 0 .1055.0263.1329.0703.0283.043.0351.1074.0214.1562-.0283.084-.1132.1485-.204.1553l-1.921.1123c-1.041.0488-2.1582.8867-2.5527 1.914l-.1406.3585c-.0283.0713.0215.1416.0986.1416h6.5977c.0771 0 .1474-.0489.169-.126.1122-.4082.1757-.837.1757-1.2803 0-2.6025-2.125-4.727-4.7344-4.727" }) + ] + } + ); +}); + +exports.default = SiCloudflare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.d.ts new file mode 100644 index 000000000..9699e3af1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F38020"; +declare const SiCloudflare: IconType; +export { SiCloudflare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.mjs new file mode 100644 index 000000000..ea73c4143 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F38020"; +const SiCloudflare = React.forwardRef(function SiCloudflare2({ title = "Cloudflare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.5088 16.8447c.1475-.5068.0908-.9707-.1553-1.3154-.2246-.3164-.6045-.499-1.0615-.5205l-8.6592-.1123a.1559.1559 0 0 1-.1333-.0713c-.0283-.042-.0351-.0986-.021-.1553.0278-.084.1123-.1484.2036-.1562l8.7359-.1123c1.0351-.0489 2.1601-.8868 2.5537-1.9136l.499-1.3013c.0215-.0561.0293-.1128.0147-.168-.5625-2.5463-2.835-4.4453-5.5499-4.4453-2.5039 0-4.6284 1.6177-5.3876 3.8614-.4927-.3658-1.1187-.5625-1.794-.499-1.2026.119-2.1665 1.083-2.2861 2.2856-.0283.31-.0069.6128.0635.894C1.5683 13.171 0 14.7754 0 16.752c0 .1748.0142.3515.0352.5273.0141.083.0844.1475.1689.1475h15.9814c.0909 0 .1758-.0645.2032-.1553l.12-.4268zm2.7568-5.5634c-.0771 0-.1611 0-.2383.0112-.0566 0-.1054.0415-.127.0976l-.3378 1.1744c-.1475.5068-.0918.9707.1543 1.3164.2256.3164.6055.498 1.0625.5195l1.8437.1133c.0557 0 .1055.0263.1329.0703.0283.043.0351.1074.0214.1562-.0283.084-.1132.1485-.204.1553l-1.921.1123c-1.041.0488-2.1582.8867-2.5527 1.914l-.1406.3585c-.0283.0713.0215.1416.0986.1416h6.5977c.0771 0 .1474-.0489.169-.126.1122-.4082.1757-.837.1757-1.2803 0-2.6025-2.125-4.727-4.7344-4.727" }) + ] + } + ); +}); + +export { SiCloudflare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.cjs new file mode 100644 index 000000000..44322f05e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F38020"; +const SiCloudflarepages = React__namespace.forwardRef(function SiCloudflarepages2({ title = "Cloudflare Pages", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.715 14.32H5.442l-.64-1.203L13.673 0l1.397.579-1.752 9.112h5.24l.648 1.192L10.719 24l-1.412-.54ZM4.091 5.448a.5787.5787 0 1 1 0-1.1574.5787.5787 0 0 1 0 1.1574zm1.543 0a.5787.5787 0 1 1 0-1.1574.5787.5787 0 0 1 0 1.1574zm1.544 0a.5787.5787 0 1 1 0-1.1574.5787.5787 0 0 1 0 1.1574zm8.657-2.7h5.424l.772.771v16.975l-.772.772h-7.392l.374-.579h6.779l.432-.432V3.758l-.432-.432h-4.676l-.552 2.85h-.59l.529-2.877.108-.552ZM2.74 21.265l-.772-.772V3.518l.772-.771h7.677l-.386.579H2.98l-.432.432v16.496l.432.432h5.586l-.092.579zm1.157-1.93h3.28l-.116.58h-3.55l-.192-.193v-3.473l.578 1.158zm13.117 0 .579.58H14.7l.385-.58z" }) + ] + } + ); +}); + +exports.default = SiCloudflarepages; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.d.ts new file mode 100644 index 000000000..79cda34c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F38020"; +declare const SiCloudflarepages: IconType; +export { SiCloudflarepages as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.mjs new file mode 100644 index 000000000..aceedc8c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflarepages.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F38020"; +const SiCloudflarepages = React.forwardRef(function SiCloudflarepages2({ title = "Cloudflare Pages", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.715 14.32H5.442l-.64-1.203L13.673 0l1.397.579-1.752 9.112h5.24l.648 1.192L10.719 24l-1.412-.54ZM4.091 5.448a.5787.5787 0 1 1 0-1.1574.5787.5787 0 0 1 0 1.1574zm1.543 0a.5787.5787 0 1 1 0-1.1574.5787.5787 0 0 1 0 1.1574zm1.544 0a.5787.5787 0 1 1 0-1.1574.5787.5787 0 0 1 0 1.1574zm8.657-2.7h5.424l.772.771v16.975l-.772.772h-7.392l.374-.579h6.779l.432-.432V3.758l-.432-.432h-4.676l-.552 2.85h-.59l.529-2.877.108-.552ZM2.74 21.265l-.772-.772V3.518l.772-.771h7.677l-.386.579H2.98l-.432.432v16.496l.432.432h5.586l-.092.579zm1.157-1.93h3.28l-.116.58h-3.55l-.192-.193v-3.473l.578 1.158zm13.117 0 .579.58H14.7l.385-.58z" }) + ] + } + ); +}); + +export { SiCloudflarepages as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.cjs new file mode 100644 index 000000000..af13f6f52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F38020"; +const SiCloudflareworkers = React__namespace.forwardRef(function SiCloudflareworkers2({ title = "Cloudflare Workers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m8.213.063 8.879 12.136-8.67 11.739h2.476l8.665-11.735-8.89-12.14Zm4.728 0 9.02 11.992-9.018 11.883h2.496L24 12.656v-1.199L15.434.063ZM7.178 2.02.01 11.398l-.01 1.2 7.203 9.644 1.238-1.676-6.396-8.556 6.361-8.313Z" }) + ] + } + ); +}); + +exports.default = SiCloudflareworkers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.d.ts new file mode 100644 index 000000000..ce9ec62c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F38020"; +declare const SiCloudflareworkers: IconType; +export { SiCloudflareworkers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.mjs new file mode 100644 index 000000000..5145914e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudflareworkers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F38020"; +const SiCloudflareworkers = React.forwardRef(function SiCloudflareworkers2({ title = "Cloudflare Workers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m8.213.063 8.879 12.136-8.67 11.739h2.476l8.665-11.735-8.89-12.14Zm4.728 0 9.02 11.992-9.018 11.883h2.496L24 12.656v-1.199L15.434.063ZM7.178 2.02.01 11.398l-.01 1.2 7.203 9.644 1.238-1.676-6.396-8.556 6.361-8.313Z" }) + ] + } + ); +}); + +export { SiCloudflareworkers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.cjs new file mode 100644 index 000000000..7b3673271 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C9ED5"; +const SiCloudfoundry = React__namespace.forwardRef(function SiCloudfoundry2({ title = "Cloud Foundry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.854 13.537c-.048 1.79.074 3.862.149 4.917.96.136 1.633.456 1.633.83 0 .497-1.193 1.07-2.665 1.07s-2.665-.573-2.665-1.07c0-.374.673-.694 1.633-.83.075-1.055.197-3.127.15-4.917-.044-1.613-.779-3.091-1.676-3.821-.725-.59-1.174-1.427-1.166-2.354.016-1.765 1.683-3.186 3.724-3.186s3.708 1.42 3.723 3.186c.008.927-.44 1.763-1.165 2.354-.897.73-1.632 2.208-1.675 3.821zm6.214 6.596c.287-.115.612-.177.951-.19-.007-.24-.166-.672-.303-.877-.56-.1-1.276-.313-1.658-.682a.48.48 0 0 1-.186-.41c.026-.146.133-.253.278-.329a8.115 8.115 0 0 0-1.08-.515 4.6 4.6 0 0 1-1.697-.124c-.303-.09-.764-.24-.82-.549-.16-.03-.54-.083-.766-.112a4.048 4.048 0 0 0-.07.31.815.815 0 0 0 .56.956c1 .291 1.756.77 1.974 1.359.44 1.19-1.413 2.353-4.231 2.353-2.82 0-4.673-1.163-4.233-2.353.213-.574.94-1.044 1.903-1.337a.863.863 0 0 0 .589-1.005l-.06-.283c-.291.03-.779.101-1.031.148-.019.313-.476.466-.76.564a4.65 4.65 0 0 1-1.708.147 7.82 7.82 0 0 0-1.052.535c.544.23.316.736-.09.97-.407.253-.842.409-1.38.51-.051.088-.111.298-.163.438-.016.136-.063.367-.053.459.645.02 1.268.152 1.62.605.281.508-.024.976-.51 1.364.392.316.986.673 1.45.868a4.82 4.82 0 0 1 2.715-.269c.718.16 1.506.581 1.742 1.289.635.042 1.895.04 2.528-.041.182-.731.907-1.147 1.606-1.326a4.803 4.803 0 0 1 2.712.193c.356-.18 1.03-.602 1.306-.9-.474-.358-.873-.794-.63-1.325.085-.19.301-.33.547-.44zm-9.54-5.848s.418-1.586-1.4-3.632A4.99 4.99 0 0 1 6.88 7.346a5.05 5.05 0 0 1 5.047-5.04c2.822-.065 5.168 2.218 5.164 5.04a4.984 4.984 0 0 1-1.248 3.306c-1.614 1.616-1.4 3.633-1.4 3.633a7.352 7.352 0 0 0 4.956-6.898c.035-4.021-3.39-7.47-7.414-7.385-4.027-.083-7.447 3.364-7.413 7.385a7.352 7.352 0 0 0 4.956 6.898z" }) + ] + } + ); +}); + +exports.default = SiCloudfoundry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.d.ts new file mode 100644 index 000000000..232d0b08c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C9ED5"; +declare const SiCloudfoundry: IconType; +export { SiCloudfoundry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.mjs new file mode 100644 index 000000000..ba3e4d76a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudfoundry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C9ED5"; +const SiCloudfoundry = React.forwardRef(function SiCloudfoundry2({ title = "Cloud Foundry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.854 13.537c-.048 1.79.074 3.862.149 4.917.96.136 1.633.456 1.633.83 0 .497-1.193 1.07-2.665 1.07s-2.665-.573-2.665-1.07c0-.374.673-.694 1.633-.83.075-1.055.197-3.127.15-4.917-.044-1.613-.779-3.091-1.676-3.821-.725-.59-1.174-1.427-1.166-2.354.016-1.765 1.683-3.186 3.724-3.186s3.708 1.42 3.723 3.186c.008.927-.44 1.763-1.165 2.354-.897.73-1.632 2.208-1.675 3.821zm6.214 6.596c.287-.115.612-.177.951-.19-.007-.24-.166-.672-.303-.877-.56-.1-1.276-.313-1.658-.682a.48.48 0 0 1-.186-.41c.026-.146.133-.253.278-.329a8.115 8.115 0 0 0-1.08-.515 4.6 4.6 0 0 1-1.697-.124c-.303-.09-.764-.24-.82-.549-.16-.03-.54-.083-.766-.112a4.048 4.048 0 0 0-.07.31.815.815 0 0 0 .56.956c1 .291 1.756.77 1.974 1.359.44 1.19-1.413 2.353-4.231 2.353-2.82 0-4.673-1.163-4.233-2.353.213-.574.94-1.044 1.903-1.337a.863.863 0 0 0 .589-1.005l-.06-.283c-.291.03-.779.101-1.031.148-.019.313-.476.466-.76.564a4.65 4.65 0 0 1-1.708.147 7.82 7.82 0 0 0-1.052.535c.544.23.316.736-.09.97-.407.253-.842.409-1.38.51-.051.088-.111.298-.163.438-.016.136-.063.367-.053.459.645.02 1.268.152 1.62.605.281.508-.024.976-.51 1.364.392.316.986.673 1.45.868a4.82 4.82 0 0 1 2.715-.269c.718.16 1.506.581 1.742 1.289.635.042 1.895.04 2.528-.041.182-.731.907-1.147 1.606-1.326a4.803 4.803 0 0 1 2.712.193c.356-.18 1.03-.602 1.306-.9-.474-.358-.873-.794-.63-1.325.085-.19.301-.33.547-.44zm-9.54-5.848s.418-1.586-1.4-3.632A4.99 4.99 0 0 1 6.88 7.346a5.05 5.05 0 0 1 5.047-5.04c2.822-.065 5.168 2.218 5.164 5.04a4.984 4.984 0 0 1-1.248 3.306c-1.614 1.616-1.4 3.633-1.4 3.633a7.352 7.352 0 0 0 4.956-6.898c.035-4.021-3.39-7.47-7.414-7.385-4.027-.083-7.447 3.364-7.413 7.385a7.352 7.352 0 0 0 4.956 6.898z" }) + ] + } + ); +}); + +export { SiCloudfoundry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.cjs new file mode 100644 index 000000000..c12131f30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3448C5"; +const SiCloudinary = React__namespace.forwardRef(function SiCloudinary2({ title = "Cloudinary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 14.8598c0 2.1729-1.3757 3.974-3.5903 4.6996l-.0995.0318V17.989c1.3777-.5805 2.1869-1.7275 2.1869-3.1291-.0072-2-1.6087-3.6288-3.6082-3.6699h-.5964l-.1432-.5686c-.7025-2.8996-3.2886-4.9489-6.2721-4.97a6.3915 6.3915 0 0 0-5.811 3.664l-.1828.3757-.4175.0437a4.4311 4.4311 0 0 0-3.3052 2.088c-1.2803 2.0856-.6274 4.8143 1.4583 6.0947v1.6897h-.01l-.149-.0675a5.9402 5.9402 0 0 1-3.3658-4.3494c-.5787-3.2291 1.57-6.3161 4.7991-6.8948a7.8766 7.8766 0 0 1 6.9839-4.149c3.4724.025 6.535 2.28 7.5901 5.5883 2.5789.3366 4.5138 2.5245 4.5327 5.1251zm-15.3176-1.322h.5647a.0656.0656 0 0 0 .0457-.1113L7.084 11.2158l-.0007-.0007a.0656.0656 0 0 0-.0927.0007L4.78 13.4265a.0656.0656 0 0 0 .0477.1113h.5566a.0656.0656 0 0 1 .0657.0656v5.0574c0 .6588.534 1.1928 1.1928 1.1928H9.247a.0656.0656 0 0 0 .0457-.1113l-.33-.33a1.1928 1.1928 0 0 1-.348-.839v-4.97a.0676.0676 0 0 1 .0676-.0655zm9.769 2.5466h.5667a.0655.0655 0 0 0 .0457-.1133l-2.2107-2.2087-.0015-.0015a.0636.0636 0 0 0-.0899.0015L14.551 15.971a.0657.0657 0 0 0 .0457.1133h.5567a.0656.0656 0 0 1 .0656.0656v2.5108c0 .6588.534 1.1928 1.1928 1.1928h2.6063a.0655.0655 0 0 0 .0457-.1113l-.33-.33a1.1928 1.1928 0 0 1-.348-.839V16.15a.0656.0656 0 0 1 .0657-.0656zm-4.8844-1.2743h.5646a.0656.0656 0 0 0 .0477-.1114l-2.2107-2.2027-.0006-.0006a.0656.0656 0 0 0-.0928.0006l-2.2087 2.2068a.0656.0656 0 0 0 .0457.1113h.5626a.0676.0676 0 0 1 .0657.0676v3.7791c0 .6588.534 1.1928 1.1928 1.1928h2.5983a.0656.0656 0 0 0 .0477-.1113l-.332-.33a1.193 1.193 0 0 1-.346-.839v-3.6956c0-.0366.0291-.0665.0657-.0676z" }) + ] + } + ); +}); + +exports.default = SiCloudinary; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.d.ts new file mode 100644 index 000000000..aa26b2776 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3448C5"; +declare const SiCloudinary: IconType; +export { SiCloudinary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.mjs new file mode 100644 index 000000000..8af2e4527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudinary.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3448C5"; +const SiCloudinary = React.forwardRef(function SiCloudinary2({ title = "Cloudinary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 14.8598c0 2.1729-1.3757 3.974-3.5903 4.6996l-.0995.0318V17.989c1.3777-.5805 2.1869-1.7275 2.1869-3.1291-.0072-2-1.6087-3.6288-3.6082-3.6699h-.5964l-.1432-.5686c-.7025-2.8996-3.2886-4.9489-6.2721-4.97a6.3915 6.3915 0 0 0-5.811 3.664l-.1828.3757-.4175.0437a4.4311 4.4311 0 0 0-3.3052 2.088c-1.2803 2.0856-.6274 4.8143 1.4583 6.0947v1.6897h-.01l-.149-.0675a5.9402 5.9402 0 0 1-3.3658-4.3494c-.5787-3.2291 1.57-6.3161 4.7991-6.8948a7.8766 7.8766 0 0 1 6.9839-4.149c3.4724.025 6.535 2.28 7.5901 5.5883 2.5789.3366 4.5138 2.5245 4.5327 5.1251zm-15.3176-1.322h.5647a.0656.0656 0 0 0 .0457-.1113L7.084 11.2158l-.0007-.0007a.0656.0656 0 0 0-.0927.0007L4.78 13.4265a.0656.0656 0 0 0 .0477.1113h.5566a.0656.0656 0 0 1 .0657.0656v5.0574c0 .6588.534 1.1928 1.1928 1.1928H9.247a.0656.0656 0 0 0 .0457-.1113l-.33-.33a1.1928 1.1928 0 0 1-.348-.839v-4.97a.0676.0676 0 0 1 .0676-.0655zm9.769 2.5466h.5667a.0655.0655 0 0 0 .0457-.1133l-2.2107-2.2087-.0015-.0015a.0636.0636 0 0 0-.0899.0015L14.551 15.971a.0657.0657 0 0 0 .0457.1133h.5567a.0656.0656 0 0 1 .0656.0656v2.5108c0 .6588.534 1.1928 1.1928 1.1928h2.6063a.0655.0655 0 0 0 .0457-.1113l-.33-.33a1.1928 1.1928 0 0 1-.348-.839V16.15a.0656.0656 0 0 1 .0657-.0656zm-4.8844-1.2743h.5646a.0656.0656 0 0 0 .0477-.1114l-2.2107-2.2027-.0006-.0006a.0656.0656 0 0 0-.0928.0006l-2.2087 2.2068a.0656.0656 0 0 0 .0457.1113h.5626a.0676.0676 0 0 1 .0657.0676v3.7791c0 .6588.534 1.1928 1.1928 1.1928h2.5983a.0656.0656 0 0 0 .0477-.1113l-.332-.33a1.193 1.193 0 0 1-.346-.839v-3.6956c0-.0366.0291-.0665.0657-.0676z" }) + ] + } + ); +}); + +export { SiCloudinary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.cjs new file mode 100644 index 000000000..ab29cdfce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F76945"; +const SiCloudnativebuild = React__namespace.forwardRef(function SiCloudnativebuild2({ title = "Cloud Native Build", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1536.0002c-1.9776.0136-3.2463.5813-3.929 1.015-.3365.2136-.3544.6973-.0396.942l6.3553 4.9409c.5601.435 1.3806.187 1.6094-.4847l1.3594-3.993a.5756.5756 0 0 0-.1646-.6187c-.587-.5182-2.0702-1.6096-4.2978-1.771a11.3315 11.3315 0 0 0-.893-.0305zM4.2072 3.5147c-.7541.4104-2.6862 1.6729-3.682 4.2704-.7687 2.0019-.498 4.2179-.2866 5.3006.0695.354.4445.5577.7803.4267l12.2229-4.7733c.8728-.3409.8775-1.575.006-1.9203l-8.428-3.3407c-.2033-.0803-.4173-.0697-.6126.0366zm15.5544.6553L16.677 6.9072c-.5036.4466-.4505 1.2461.1067 1.6247l6.1693 4.185c.3532.2396.8347.0264.8961-.3963.1622-1.1189.3034-3.0663-.3444-4.5355-.8635-1.9578-2.3283-3.164-3.0237-3.6547-.2207-.1553-.5235-.1337-.7194.0396zm-5.898 5.0812c-.207-.0112-.4255.0438-.628.1798L1.842 17.0818c-.2598.1743-.3766.4967-.2926.7986.2417.8685.9615 2.6747 3.0054 4.3191 2.0439 1.6443 4.4622 1.8237 5.4957 1.7984a.721.721 0 0 0 .6706-.506l4.0753-12.8934c.2204-.698-.3115-1.3136-.9327-1.3473Zm2.6122.1341c-.491.01-.9644.3642-1.015.9419L14.333 23.1597c-.0319.364.2768.6669.64.6279 1.169-.1253 3.5685-.5916 5.3678-2.3105 1.7515-1.6727 2.3215-3.6567 2.4872-4.4471a.7272.7272 0 0 0-.1463-.6066l-5.392-6.657c-.2191-.2704-.5194-.3868-.8139-.381z" }) + ] + } + ); +}); + +exports.default = SiCloudnativebuild; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.d.ts new file mode 100644 index 000000000..6debd2dd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F76945"; +declare const SiCloudnativebuild: IconType; +export { SiCloudnativebuild as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.mjs new file mode 100644 index 000000000..e4cd580fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudnativebuild.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F76945"; +const SiCloudnativebuild = React.forwardRef(function SiCloudnativebuild2({ title = "Cloud Native Build", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.1536.0002c-1.9776.0136-3.2463.5813-3.929 1.015-.3365.2136-.3544.6973-.0396.942l6.3553 4.9409c.5601.435 1.3806.187 1.6094-.4847l1.3594-3.993a.5756.5756 0 0 0-.1646-.6187c-.587-.5182-2.0702-1.6096-4.2978-1.771a11.3315 11.3315 0 0 0-.893-.0305zM4.2072 3.5147c-.7541.4104-2.6862 1.6729-3.682 4.2704-.7687 2.0019-.498 4.2179-.2866 5.3006.0695.354.4445.5577.7803.4267l12.2229-4.7733c.8728-.3409.8775-1.575.006-1.9203l-8.428-3.3407c-.2033-.0803-.4173-.0697-.6126.0366zm15.5544.6553L16.677 6.9072c-.5036.4466-.4505 1.2461.1067 1.6247l6.1693 4.185c.3532.2396.8347.0264.8961-.3963.1622-1.1189.3034-3.0663-.3444-4.5355-.8635-1.9578-2.3283-3.164-3.0237-3.6547-.2207-.1553-.5235-.1337-.7194.0396zm-5.898 5.0812c-.207-.0112-.4255.0438-.628.1798L1.842 17.0818c-.2598.1743-.3766.4967-.2926.7986.2417.8685.9615 2.6747 3.0054 4.3191 2.0439 1.6443 4.4622 1.8237 5.4957 1.7984a.721.721 0 0 0 .6706-.506l4.0753-12.8934c.2204-.698-.3115-1.3136-.9327-1.3473Zm2.6122.1341c-.491.01-.9644.3642-1.015.9419L14.333 23.1597c-.0319.364.2768.6669.64.6279 1.169-.1253 3.5685-.5916 5.3678-2.3105 1.7515-1.6727 2.3215-3.6567 2.4872-4.4471a.7272.7272 0 0 0-.1463-.6066l-5.392-6.657c-.2191-.2704-.5194-.3868-.8139-.381z" }) + ] + } + ); +}); + +export { SiCloudnativebuild as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.cjs new file mode 100644 index 000000000..10a09517d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03A9F4"; +const SiCloudron = React__namespace.forwardRef(function SiCloudron2({ title = "Cloudron", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.016.86c-2.676-.004-5.353.182-6.002.562C4.714 2.182.002 10.46 0 11.984c-.002 1.525 4.69 9.813 5.986 10.577 1.297.764 10.701.778 12 .017 1.3-.76 6.012-9.038 6.014-10.562.002-1.525-4.69-9.813-5.986-10.577-.649-.382-3.323-.576-5.998-.58zm-.268 4.363h2.38c.85 0 1.534.682 1.534 1.53V9.23a1.53 1.53 0 0 1-1.533 1.533h-2.381c-.127 0-.25-.018-.367-.047l.002.047v2.476l-.002.047c.117-.029.24-.047.367-.047h2.38a1.53 1.53 0 0 1 1.534 1.533v2.475c0 .849-.684 1.531-1.533 1.531h-2.381a1.529 1.529 0 0 1-1.533-1.53V14.77l.002-.046a1.538 1.538 0 0 1-.365.045H7.469a1.527 1.527 0 0 1-1.532-1.532v-2.476c0-.849.683-1.532 1.532-1.532h2.383c.126 0 .248.017.365.045l-.002-.046V6.754c0-.849.684-1.531 1.533-1.531z" }) + ] + } + ); +}); + +exports.default = SiCloudron; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.d.ts new file mode 100644 index 000000000..096026411 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03A9F4"; +declare const SiCloudron: IconType; +export { SiCloudron as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.mjs new file mode 100644 index 000000000..93a48a94e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudron.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03A9F4"; +const SiCloudron = React.forwardRef(function SiCloudron2({ title = "Cloudron", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.016.86c-2.676-.004-5.353.182-6.002.562C4.714 2.182.002 10.46 0 11.984c-.002 1.525 4.69 9.813 5.986 10.577 1.297.764 10.701.778 12 .017 1.3-.76 6.012-9.038 6.014-10.562.002-1.525-4.69-9.813-5.986-10.577-.649-.382-3.323-.576-5.998-.58zm-.268 4.363h2.38c.85 0 1.534.682 1.534 1.53V9.23a1.53 1.53 0 0 1-1.533 1.533h-2.381c-.127 0-.25-.018-.367-.047l.002.047v2.476l-.002.047c.117-.029.24-.047.367-.047h2.38a1.53 1.53 0 0 1 1.534 1.533v2.475c0 .849-.684 1.531-1.533 1.531h-2.381a1.529 1.529 0 0 1-1.533-1.53V14.77l.002-.046a1.538 1.538 0 0 1-.365.045H7.469a1.527 1.527 0 0 1-1.532-1.532v-2.476c0-.849.683-1.532 1.532-1.532h2.383c.126 0 .248.017.365.045l-.002-.046V6.754c0-.849.684-1.531 1.533-1.531z" }) + ] + } + ); +}); + +export { SiCloudron as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.cjs new file mode 100644 index 000000000..cad8b27a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A6FE1"; +const SiCloudsmith = React__namespace.forwardRef(function SiCloudsmith2({ title = "Cloudsmith", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.667v2.667L13.333 24h-2.666L0 13.334v-2.667L10.667 0h2.666L24 10.667Zm-12 6.869a5.535 5.535 0 1 0 0-11.07 5.535 5.535 0 0 0 0 11.07Z" }) + ] + } + ); +}); + +exports.default = SiCloudsmith; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.d.ts new file mode 100644 index 000000000..5879cd887 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A6FE1"; +declare const SiCloudsmith: IconType; +export { SiCloudsmith as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.mjs new file mode 100644 index 000000000..85a55dec0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudsmith.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A6FE1"; +const SiCloudsmith = React.forwardRef(function SiCloudsmith2({ title = "Cloudsmith", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.667v2.667L13.333 24h-2.666L0 13.334v-2.667L10.667 0h2.666L24 10.667Zm-12 6.869a5.535 5.535 0 1 0 0-11.07 5.535 5.535 0 0 0 0 11.07Z" }) + ] + } + ); +}); + +export { SiCloudsmith as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.cjs new file mode 100644 index 000000000..7a083d274 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C39BD"; +const SiCloudways = React__namespace.forwardRef(function SiCloudways2({ title = "Cloudways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.795 5.522a4.938 4.938 0 0 0-2.485.717.434.434 0 0 1-.236.066c-2.717-.002-5.434-.002-8.151-.002a.594.594 0 0 0-.594.45.573.573 0 0 0 .284.66c.112.056.25.082.377.082 2.25.005 4.499.003 6.749.004.044 0 .09.003.152.006l-.09.13a4.942 4.942 0 0 0-.674 1.302c-.03.09-.075.113-.166.113-2.545-.003-4.844-.003-7.193-.002a.602.602 0 0 0-.581.456.584.584 0 0 0 .312.668.875.875 0 0 0 .35.069c1.924.004 3.848.003 5.771.003h.123a.22.22 0 0 1-.074.085c-.5.367-.908.819-1.218 1.356-.046.08-.095.109-.188.109a5042.02 5042.02 0 0 0-7.687-.002.598.598 0 0 0-.566.706c.06.3.3.49.624.49h7.304a5.091 5.091 0 0 0-.074 1.567H7.27c-.233 0-.357.117-.364.349a7.604 7.604 0 0 0 0 .474c.006.236.132.354.37.355.269.001.538.003.807-.001.075-.002.112.023.142.092.186.428.439.816.75 1.165.082.092.168.18.274.292h-5.01a.602.602 0 0 0-.574.48.585.585 0 0 0 .35.664.841.841 0 0 0 .305.051c5.458.004 10.345.01 15.371-.018a4.032 4.032 0 0 0 1.121-.172c2.333-.688 3.704-3.159 3.006-5.566-.434-1.496-1.413-2.504-2.888-3.02-.067-.024-.095-.054-.108-.124a4.072 4.072 0 0 0-.098-.39c-.645-2.184-2.653-3.712-4.929-3.664zM.758 14.556a.31.31 0 0 0-.323.315c-.004.158-.002.316-.002.474.001.274.119.388.396.388h4.163c.203 0 .351-.125.357-.306a9.126 9.126 0 0 0 0-.544c-.006-.192-.14-.327-.327-.327H.758z" }) + ] + } + ); +}); + +exports.default = SiCloudways; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.d.ts new file mode 100644 index 000000000..868b8f16b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C39BD"; +declare const SiCloudways: IconType; +export { SiCloudways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.mjs new file mode 100644 index 000000000..64da3d5fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCloudways.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C39BD"; +const SiCloudways = React.forwardRef(function SiCloudways2({ title = "Cloudways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.795 5.522a4.938 4.938 0 0 0-2.485.717.434.434 0 0 1-.236.066c-2.717-.002-5.434-.002-8.151-.002a.594.594 0 0 0-.594.45.573.573 0 0 0 .284.66c.112.056.25.082.377.082 2.25.005 4.499.003 6.749.004.044 0 .09.003.152.006l-.09.13a4.942 4.942 0 0 0-.674 1.302c-.03.09-.075.113-.166.113-2.545-.003-4.844-.003-7.193-.002a.602.602 0 0 0-.581.456.584.584 0 0 0 .312.668.875.875 0 0 0 .35.069c1.924.004 3.848.003 5.771.003h.123a.22.22 0 0 1-.074.085c-.5.367-.908.819-1.218 1.356-.046.08-.095.109-.188.109a5042.02 5042.02 0 0 0-7.687-.002.598.598 0 0 0-.566.706c.06.3.3.49.624.49h7.304a5.091 5.091 0 0 0-.074 1.567H7.27c-.233 0-.357.117-.364.349a7.604 7.604 0 0 0 0 .474c.006.236.132.354.37.355.269.001.538.003.807-.001.075-.002.112.023.142.092.186.428.439.816.75 1.165.082.092.168.18.274.292h-5.01a.602.602 0 0 0-.574.48.585.585 0 0 0 .35.664.841.841 0 0 0 .305.051c5.458.004 10.345.01 15.371-.018a4.032 4.032 0 0 0 1.121-.172c2.333-.688 3.704-3.159 3.006-5.566-.434-1.496-1.413-2.504-2.888-3.02-.067-.024-.095-.054-.108-.124a4.072 4.072 0 0 0-.098-.39c-.645-2.184-2.653-3.712-4.929-3.664zM.758 14.556a.31.31 0 0 0-.323.315c-.004.158-.002.316-.002.474.001.274.119.388.396.388h4.163c.203 0 .351-.125.357-.306a9.126 9.126 0 0 0 0-.544c-.006-.192-.14-.327-.327-.327H.758z" }) + ] + } + ); +}); + +export { SiCloudways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.cjs new file mode 100644 index 000000000..1a8aff18b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#191176"; +const SiClubforce = React__namespace.forwardRef(function SiClubforce2({ title = "Clubforce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.4 0C.624 0 0 .624 0 1.4v21.2c0 .776.624 1.4 1.4 1.4h21.2c.776 0 1.4-.624 1.4-1.4V1.4c0-.776-.624-1.4-1.4-1.4Zm4.778 5.5h9.61l-2.83 2.112H8.331v3.472L6.18 12.72V5.5Zm11.644 1.317v7.415L11.96 18.5l-4.786-3.629 1.675-1.317 3.111 2.354 3.19-2.392-3.23-2.234 1.834-1.355 1.955 1.355v-2.87Z" }) + ] + } + ); +}); + +exports.default = SiClubforce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.d.ts new file mode 100644 index 000000000..52057586c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#191176"; +declare const SiClubforce: IconType; +export { SiClubforce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.mjs new file mode 100644 index 000000000..aa76978db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClubforce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#191176"; +const SiClubforce = React.forwardRef(function SiClubforce2({ title = "Clubforce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.4 0C.624 0 0 .624 0 1.4v21.2c0 .776.624 1.4 1.4 1.4h21.2c.776 0 1.4-.624 1.4-1.4V1.4c0-.776-.624-1.4-1.4-1.4Zm4.778 5.5h9.61l-2.83 2.112H8.331v3.472L6.18 12.72V5.5Zm11.644 1.317v7.415L11.96 18.5l-4.786-3.629 1.675-1.317 3.111 2.354 3.19-2.392-3.23-2.234 1.834-1.355 1.955 1.355v-2.87Z" }) + ] + } + ); +}); + +export { SiClubforce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.cjs new file mode 100644 index 000000000..cb447199e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE450"; +const SiClubhouse = React__namespace.forwardRef(function SiClubhouse2({ title = "Clubhouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 9.543c0 .32-.23.763-.337.976-.39.833-1.03 2.112-1.03 3.585 0 3.213-1.135 4.811-2.023 5.628a5.706 5.706 0 0 1-3.852 1.527 6.144 6.144 0 0 1-3.32-.976c-1.366-.905-2.219-2.326-3.088-3.745-.692-1.153-1.171-2.06-1.918-3.816-.421-1.018-.813-2.012-1.15-3.094-.16-.514-.142-.905.053-1.153.195-.23.462-.337.78-.355.55-.018.764.373 1.083 1.384.195.639.586 1.563.816 2.077.302.621.728 1.455.923 1.74.16.25.302.32.461.32.284 0 .497-.16.497-.443 0-.16-.16-.426-.248-.586-.16-.302-.497-.905-.728-1.42a32.775 32.775 0 0 1-.763-1.917c-.142-.373-.301-.905-.461-1.437-.248-.816-.373-1.313-.373-1.687 0-.568.426-.94 1.065-.94.461 0 .763.23.958 1.064.16.763.444 2.006.852 2.982.266.639.656 1.492.887 1.918.142.248.301.461.301.55 0 .124-.23.32-.426.585-.124.16-.177.267-.177.39 0 .107.071.214.177.356.107.142.213.284.338.284.088 0 .142-.036.195-.107a6.12 6.12 0 0 1 1.847-1.563c.816-.461 1.651-.692 2.308-.834.319-.07.408-.142.408-.32 0-.212-.16-.336-.373-.354-.16-.018-.301 0-.55.018-.177.018-.266-.071-.372-.302-.32-.674-.94-1.811-1.313-3.266a13.95 13.95 0 0 1-.39-2.13c-.054-.391.017-.533.212-.71.249-.213.692-.302 1.03-.213.407.106.62.426.833 1.67.107.585.284 1.33.497 1.97.266.816.603 1.492 1.118 2.397.284.497.638 1.011 1.011 1.51-.071.213-.195.354-.603.692-.408.337-.816.692-1.189 1.348-.266.479-.39 1.011-.39 1.366 0 .337.07.408.284.408.372 0 .674-.07.692-.23.088-.64.195-1.047.55-1.528.212-.266.585-.603.887-.87.567-.46.763-.727.958-1.383.088-.302.195-.586.337-.852.337-.62.94-1.33 1.882-1.33.302 0 .55.088.71.337a.966.966 0 0 1 .124.479zM12.608 7.265c.16.658.355 1.226.55 1.723.23.605.497 1.12.87 1.811.177.337.265.337.691.107a9.14 9.14 0 0 1 1.207-.515c-.639-1.384-1.171-2.539-1.437-3.514a29.883 29.883 0 0 1-.39-1.918c-.054-.497-.107-.923-.231-1.384-.142-.568-.338-.834-.888-.834-.514 0-1.135.266-1.135.94 0 .444.124 1.1.248 1.631.213.516.249.835.515 1.953zm-7.484 7.147c-.43.116-2.276.784-2.721.957-.503.195-.857.372-.605 1.122.205.607.553.636.874.516.45-.166 2.442-1.21 2.818-1.442.34-.21.45-.37.29-.769-.145-.363-.354-.465-.656-.384zm-1.276-3.074c.252-.008.448-.09.508-.526.047-.335-.006-.51-.39-.629-.371-.114-2.702-.494-3.205-.542-.434-.042-.702 0-.753.687-.049.64.13.836.572.88.508.05 2.733.144 3.268.13zm-2.63-6.082c.474.283 2.293 1.385 2.906 1.579.306.096.468.01.64-.331s.218-.477-.111-.742c-.34-.274-2.123-1.661-2.628-1.924-.435-.226-.729-.139-.993.361-.299.566-.244.798.185 1.057z" }) + ] + } + ); +}); + +exports.default = SiClubhouse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.d.ts new file mode 100644 index 000000000..9fc62e875 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE450"; +declare const SiClubhouse: IconType; +export { SiClubhouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.mjs new file mode 100644 index 000000000..2d03bb46e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClubhouse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE450"; +const SiClubhouse = React.forwardRef(function SiClubhouse2({ title = "Clubhouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 9.543c0 .32-.23.763-.337.976-.39.833-1.03 2.112-1.03 3.585 0 3.213-1.135 4.811-2.023 5.628a5.706 5.706 0 0 1-3.852 1.527 6.144 6.144 0 0 1-3.32-.976c-1.366-.905-2.219-2.326-3.088-3.745-.692-1.153-1.171-2.06-1.918-3.816-.421-1.018-.813-2.012-1.15-3.094-.16-.514-.142-.905.053-1.153.195-.23.462-.337.78-.355.55-.018.764.373 1.083 1.384.195.639.586 1.563.816 2.077.302.621.728 1.455.923 1.74.16.25.302.32.461.32.284 0 .497-.16.497-.443 0-.16-.16-.426-.248-.586-.16-.302-.497-.905-.728-1.42a32.775 32.775 0 0 1-.763-1.917c-.142-.373-.301-.905-.461-1.437-.248-.816-.373-1.313-.373-1.687 0-.568.426-.94 1.065-.94.461 0 .763.23.958 1.064.16.763.444 2.006.852 2.982.266.639.656 1.492.887 1.918.142.248.301.461.301.55 0 .124-.23.32-.426.585-.124.16-.177.267-.177.39 0 .107.071.214.177.356.107.142.213.284.338.284.088 0 .142-.036.195-.107a6.12 6.12 0 0 1 1.847-1.563c.816-.461 1.651-.692 2.308-.834.319-.07.408-.142.408-.32 0-.212-.16-.336-.373-.354-.16-.018-.301 0-.55.018-.177.018-.266-.071-.372-.302-.32-.674-.94-1.811-1.313-3.266a13.95 13.95 0 0 1-.39-2.13c-.054-.391.017-.533.212-.71.249-.213.692-.302 1.03-.213.407.106.62.426.833 1.67.107.585.284 1.33.497 1.97.266.816.603 1.492 1.118 2.397.284.497.638 1.011 1.011 1.51-.071.213-.195.354-.603.692-.408.337-.816.692-1.189 1.348-.266.479-.39 1.011-.39 1.366 0 .337.07.408.284.408.372 0 .674-.07.692-.23.088-.64.195-1.047.55-1.528.212-.266.585-.603.887-.87.567-.46.763-.727.958-1.383.088-.302.195-.586.337-.852.337-.62.94-1.33 1.882-1.33.302 0 .55.088.71.337a.966.966 0 0 1 .124.479zM12.608 7.265c.16.658.355 1.226.55 1.723.23.605.497 1.12.87 1.811.177.337.265.337.691.107a9.14 9.14 0 0 1 1.207-.515c-.639-1.384-1.171-2.539-1.437-3.514a29.883 29.883 0 0 1-.39-1.918c-.054-.497-.107-.923-.231-1.384-.142-.568-.338-.834-.888-.834-.514 0-1.135.266-1.135.94 0 .444.124 1.1.248 1.631.213.516.249.835.515 1.953zm-7.484 7.147c-.43.116-2.276.784-2.721.957-.503.195-.857.372-.605 1.122.205.607.553.636.874.516.45-.166 2.442-1.21 2.818-1.442.34-.21.45-.37.29-.769-.145-.363-.354-.465-.656-.384zm-1.276-3.074c.252-.008.448-.09.508-.526.047-.335-.006-.51-.39-.629-.371-.114-2.702-.494-3.205-.542-.434-.042-.702 0-.753.687-.049.64.13.836.572.88.508.05 2.733.144 3.268.13zm-2.63-6.082c.474.283 2.293 1.385 2.906 1.579.306.096.468.01.64-.331s.218-.477-.111-.742c-.34-.274-2.123-1.661-2.628-1.924-.435-.226-.729-.139-.993.361-.299.566-.244.798.185 1.057z" }) + ] + } + ); +}); + +export { SiClubhouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.cjs new file mode 100644 index 000000000..f1c4d6718 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3CBDB1"; +const SiClyp = React__namespace.forwardRef(function SiClyp2({ title = "Clyp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9995 17.9583a1.137 1.137 0 01-1.137-1.136V7.2347a1.138 1.138 0 012.275 0v9.5896c0 .626-.51 1.134-1.138 1.134m7.4397 2.4398a1.137 1.137 0 01-1.14-1.1379V4.7958a1.138 1.138 0 012.276 0v14.4654c0 .627-.51 1.136-1.138 1.136M15.7193 24a1.137 1.137 0 01-1.138-1.136V1.138a1.138 1.138 0 012.276 0v21.726c0 .627-.509 1.136-1.138 1.136m-7.4366-3.1599a1.137 1.137 0 01-1.138-1.136V4.2979a1.138 1.138 0 012.276 0v15.4064c0 .628-.51 1.137-1.138 1.137m-3.7199-4.9889a1.137 1.137 0 01-1.138-1.135V9.2857a1.138 1.138 0 012.276 0v5.4318c0 .626-.51 1.135-1.138 1.135z" }) + ] + } + ); +}); + +exports.default = SiClyp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.d.ts new file mode 100644 index 000000000..a2bc70f7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3CBDB1"; +declare const SiClyp: IconType; +export { SiClyp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.mjs new file mode 100644 index 000000000..d73b2d835 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiClyp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3CBDB1"; +const SiClyp = React.forwardRef(function SiClyp2({ title = "Clyp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9995 17.9583a1.137 1.137 0 01-1.137-1.136V7.2347a1.138 1.138 0 012.275 0v9.5896c0 .626-.51 1.134-1.138 1.134m7.4397 2.4398a1.137 1.137 0 01-1.14-1.1379V4.7958a1.138 1.138 0 012.276 0v14.4654c0 .627-.51 1.136-1.138 1.136M15.7193 24a1.137 1.137 0 01-1.138-1.136V1.138a1.138 1.138 0 012.276 0v21.726c0 .627-.509 1.136-1.138 1.136m-7.4366-3.1599a1.137 1.137 0 01-1.138-1.136V4.2979a1.138 1.138 0 012.276 0v15.4064c0 .628-.51 1.137-1.138 1.137m-3.7199-4.9889a1.137 1.137 0 01-1.138-1.135V9.2857a1.138 1.138 0 012.276 0v5.4318c0 .626-.51 1.135-1.138 1.135z" }) + ] + } + ); +}); + +export { SiClyp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.cjs new file mode 100644 index 000000000..65ba34e79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#064F8C"; +const SiCmake = React__namespace.forwardRef(function SiCmake2({ title = "CMake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.769.066L.067 23.206l12.76-10.843zM23.207 23.934L7.471 17.587 0 23.934zM24 23.736L12.298.463l1.719 19.24zM12.893 12.959l-5.025 4.298 5.62 2.248z" }) + ] + } + ); +}); + +exports.default = SiCmake; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.d.ts new file mode 100644 index 000000000..231694320 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#064F8C"; +declare const SiCmake: IconType; +export { SiCmake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.mjs new file mode 100644 index 000000000..7065c9ca4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCmake.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#064F8C"; +const SiCmake = React.forwardRef(function SiCmake2({ title = "CMake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.769.066L.067 23.206l12.76-10.843zM23.207 23.934L7.471 17.587 0 23.934zM24 23.736L12.298.463l1.719 19.24zM12.893 12.959l-5.025 4.298 5.62 2.248z" }) + ] + } + ); +}); + +export { SiCmake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.cjs new file mode 100644 index 000000000..f7274ee5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiCncf = React__namespace.forwardRef(function SiCncf2({ title = "CNCF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H8.004Zm3.431 3.431h4.544l.029.023 4.544 4.544h3.03l-4.572-4.567h9.569v9.563l-.789-.782-3.784-3.79v3.03l2.271 2.272 2.272 2.272.029.03v4.543h-4.55l-.023-.023-2.272-2.278-2.272-2.272H8.427l3.785 3.79.782.783H3.43v-9.563l4.573 4.567v-3.031l-4.55-4.544-.023-.023Z" }) + ] + } + ); +}); + +exports.default = SiCncf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.d.ts new file mode 100644 index 000000000..0f24ff3a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiCncf: IconType; +export { SiCncf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.mjs new file mode 100644 index 000000000..276f76e0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCncf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiCncf = React.forwardRef(function SiCncf2({ title = "CNCF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H8.004Zm3.431 3.431h4.544l.029.023 4.544 4.544h3.03l-4.572-4.567h9.569v9.563l-.789-.782-3.784-3.79v3.03l2.271 2.272 2.272 2.272.029.03v4.543h-4.55l-.023-.023-2.272-2.278-2.272-2.272H8.427l3.785 3.79.782.783H3.43v-9.563l4.573 4.567v-3.031l-4.55-4.544-.023-.023Z" }) + ] + } + ); +}); + +export { SiCncf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.cjs new file mode 100644 index 000000000..1e8ad2c5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#204F8C"; +const SiCnes = React__namespace.forwardRef(function SiCnes2({ title = "CNES", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.173 0h.9531V13.7978c0 2.8809 3.6823 8.7293 9.7256 4.8304l.1227-.0684C19.6214 21.7444 16.2555 24 12.3174 24 7.1854 24 3.025 20.1694 3.025 15.444c0-4.0457 3.0498-7.4356 7.148-8.327V0Zm10.3989 11.5108c-1.5249-2.7076-4.5751-4.5697-8.1029-4.6216-.0643 1.1076.8245 7.1347 4.9603 7.4718 1.0779.0879 3.84-.5495 3.1426-2.8502Z" }) + ] + } + ); +}); + +exports.default = SiCnes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.d.ts new file mode 100644 index 000000000..322c49c71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#204F8C"; +declare const SiCnes: IconType; +export { SiCnes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.mjs new file mode 100644 index 000000000..e1e160ca9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#204F8C"; +const SiCnes = React.forwardRef(function SiCnes2({ title = "CNES", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.173 0h.9531V13.7978c0 2.8809 3.6823 8.7293 9.7256 4.8304l.1227-.0684C19.6214 21.7444 16.2555 24 12.3174 24 7.1854 24 3.025 20.1694 3.025 15.444c0-4.0457 3.0498-7.4356 7.148-8.327V0Zm10.3989 11.5108c-1.5249-2.7076-4.5751-4.5697-8.1029-4.6216-.0643 1.1076.8245 7.1347 4.9603 7.4718 1.0779.0879 3.84-.5495 3.1426-2.8502Z" }) + ] + } + ); +}); + +export { SiCnes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.cjs new file mode 100644 index 000000000..a2de43f35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E71D1D"; +const SiCnet = React__namespace.forwardRef(function SiCnet2({ title = "CNET", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.89 9.262C.664 9.262 0 9.8 0 10.865v2.268c0 1.066.664 1.604 1.891 1.604h3.583v-2.353h-.293c-.13 1.365-.731 1.941-1.914 1.941h-.74c-.576 0-.856-.287-.856-.854v-2.944c0-.567.28-.854.856-.854h.74c1.2 0 1.791.544 1.914 1.867h.293V9.262H1.89Zm7.522 0v.275c1.274.127 1.856.668 1.856 2.102v1.716L7.905 9.262H6.229v5.475H8.55v-.275c-1.307-.143-1.886-.678-1.886-2.121v-1.963l3.582 4.359h1.457V9.262H9.412Zm3.06 0v5.475h5.475v-2.352h-.293c-.13 1.369-.731 1.947-1.914 1.947h-1.647v-2.233h.558c.933 0 1.328.415 1.421 1.316h.298v-3.009h-.298c-.094.896-.49 1.314-1.421 1.314h-.558V9.667h1.646c1.201 0 1.791.545 1.915 1.873h.293V9.262h-5.475Zm6.053 0v2.278h.294c.126-1.253.65-1.835 1.633-1.941v3.85c0 .669-.236.937-1.099.993v.295h3.82v-.295c-.864-.056-1.1-.324-1.1-.993v-3.85c.983.106 1.507.688 1.634 1.941H24V9.262h-5.475Z" }) + ] + } + ); +}); + +exports.default = SiCnet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.d.ts new file mode 100644 index 000000000..7d169f0c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E71D1D"; +declare const SiCnet: IconType; +export { SiCnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.mjs new file mode 100644 index 000000000..dbe13221e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E71D1D"; +const SiCnet = React.forwardRef(function SiCnet2({ title = "CNET", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.89 9.262C.664 9.262 0 9.8 0 10.865v2.268c0 1.066.664 1.604 1.891 1.604h3.583v-2.353h-.293c-.13 1.365-.731 1.941-1.914 1.941h-.74c-.576 0-.856-.287-.856-.854v-2.944c0-.567.28-.854.856-.854h.74c1.2 0 1.791.544 1.914 1.867h.293V9.262H1.89Zm7.522 0v.275c1.274.127 1.856.668 1.856 2.102v1.716L7.905 9.262H6.229v5.475H8.55v-.275c-1.307-.143-1.886-.678-1.886-2.121v-1.963l3.582 4.359h1.457V9.262H9.412Zm3.06 0v5.475h5.475v-2.352h-.293c-.13 1.369-.731 1.947-1.914 1.947h-1.647v-2.233h.558c.933 0 1.328.415 1.421 1.316h.298v-3.009h-.298c-.094.896-.49 1.314-1.421 1.314h-.558V9.667h1.646c1.201 0 1.791.545 1.915 1.873h.293V9.262h-5.475Zm6.053 0v2.278h.294c.126-1.253.65-1.835 1.633-1.941v3.85c0 .669-.236.937-1.099.993v.295h3.82v-.295c-.864-.056-1.1-.324-1.1-.993v-3.85c.983.106 1.507.688 1.634 1.941H24V9.262h-5.475Z" }) + ] + } + ); +}); + +export { SiCnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.cjs new file mode 100644 index 000000000..43c37c6a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiCnn = React__namespace.forwardRef(function SiCnn2({ title = "CNN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9962 15.514c0 2.0638-2.6676 3.0547-4.0789.6576-.1012-.173-2.3252-4.0032-2.3252-4.0032v3.3457c0 2.0637-2.6663 3.0546-4.0776.6575-.1025-.173-2.3253-4.0032-2.3253-4.0032v3.1547c0 1.4318-.8498 2.2073-2.1791 2.2073H5.5299a5.5299 5.5299 0 010-11.0598h1.7946v1.328H5.5299a4.2019 4.2019 0 100 8.4038h3.4494a.8973.8973 0 00.8794-.878V8.524a.2692.2692 0 01.1935-.273c.141-.0384.2897.0487.3987.2333l2.1522 3.7084c1.251 2.1573 2.0728 3.5738 2.083 3.5892.2807.4742.6986.5576.9973.4755a.7973.7973 0 00.582-.787v-6.945a.2705.2705 0 01.191-.2744c.1397-.0384.287.0487.3947.2333l1.9946 3.4366 2.242 3.8648c.2191.3717.5242.5038.7896.5038a.7691.7691 0 00.2063-.0282.7986.7986 0 00.591-.791V6.4707H24zM8.0026 13.9695V8.4857c0-2.0638 2.6675-3.0546 4.0788-.6563.1025.173 2.3253 4.002 2.3253 4.002V8.4856c0-2.0638 2.6662-3.0546 4.0775-.6563.1026.173 2.3253 4.002 2.3253 4.002V6.4705H22.14v8.9999a.2705.2705 0 01-.1935.2743c-.141.0384-.2897-.0487-.3987-.2333a1360.4277 1360.4277 0 01-2.2406-3.8622l-1.9946-3.434c-.2794-.4744-.696-.5577-.9921-.477a.7986.7986 0 00-.5833.7858v6.9464a.2718.2718 0 01-.1935.2743c-.1423.0384-.291-.0487-.3987-.2333-.0192-.032-1.069-1.8407-2.083-3.5892a6211.7971 6211.7971 0 00-2.1535-3.711c-.2794-.4755-.6973-.5575-.996-.4768a.7999.7999 0 00-.5845.7858v6.8002a.3717.3717 0 01-.3487.3474h-3.452a3.6712 3.6712 0 010-7.3424H7.322v1.328H5.5427a2.3432 2.3432 0 100 4.6864H7.636a.364.364 0 00.3666-.3705Z" }) + ] + } + ); +}); + +exports.default = SiCnn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.d.ts new file mode 100644 index 000000000..839141965 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiCnn: IconType; +export { SiCnn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.mjs new file mode 100644 index 000000000..8962a1da1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCnn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiCnn = React.forwardRef(function SiCnn2({ title = "CNN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9962 15.514c0 2.0638-2.6676 3.0547-4.0789.6576-.1012-.173-2.3252-4.0032-2.3252-4.0032v3.3457c0 2.0637-2.6663 3.0546-4.0776.6575-.1025-.173-2.3253-4.0032-2.3253-4.0032v3.1547c0 1.4318-.8498 2.2073-2.1791 2.2073H5.5299a5.5299 5.5299 0 010-11.0598h1.7946v1.328H5.5299a4.2019 4.2019 0 100 8.4038h3.4494a.8973.8973 0 00.8794-.878V8.524a.2692.2692 0 01.1935-.273c.141-.0384.2897.0487.3987.2333l2.1522 3.7084c1.251 2.1573 2.0728 3.5738 2.083 3.5892.2807.4742.6986.5576.9973.4755a.7973.7973 0 00.582-.787v-6.945a.2705.2705 0 01.191-.2744c.1397-.0384.287.0487.3947.2333l1.9946 3.4366 2.242 3.8648c.2191.3717.5242.5038.7896.5038a.7691.7691 0 00.2063-.0282.7986.7986 0 00.591-.791V6.4707H24zM8.0026 13.9695V8.4857c0-2.0638 2.6675-3.0546 4.0788-.6563.1025.173 2.3253 4.002 2.3253 4.002V8.4856c0-2.0638 2.6662-3.0546 4.0775-.6563.1026.173 2.3253 4.002 2.3253 4.002V6.4705H22.14v8.9999a.2705.2705 0 01-.1935.2743c-.141.0384-.2897-.0487-.3987-.2333a1360.4277 1360.4277 0 01-2.2406-3.8622l-1.9946-3.434c-.2794-.4744-.696-.5577-.9921-.477a.7986.7986 0 00-.5833.7858v6.9464a.2718.2718 0 01-.1935.2743c-.1423.0384-.291-.0487-.3987-.2333-.0192-.032-1.069-1.8407-2.083-3.5892a6211.7971 6211.7971 0 00-2.1535-3.711c-.2794-.4755-.6973-.5575-.996-.4768a.7999.7999 0 00-.5845.7858v6.8002a.3717.3717 0 01-.3487.3474h-3.452a3.6712 3.6712 0 010-7.3424H7.322v1.328H5.5427a2.3432 2.3432 0 100 4.6864H7.636a.364.364 0 00.3666-.3705Z" }) + ] + } + ); +}); + +export { SiCnn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.cjs new file mode 100644 index 000000000..99aa427db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiCobalt = React__namespace.forwardRef(function SiCobalt2({ title = "cobalt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.363v2.778l9.475 5.152L0 16.859v2.778l12.857-6.418V11.49zm11.143 0v2.778l9.474 5.152-9.474 4.566v2.778L24 13.219V11.49z" }) + ] + } + ); +}); + +exports.default = SiCobalt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.d.ts new file mode 100644 index 000000000..bb330babe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiCobalt: IconType; +export { SiCobalt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.mjs new file mode 100644 index 000000000..2d0874bf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCobalt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiCobalt = React.forwardRef(function SiCobalt2({ title = "cobalt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.363v2.778l9.475 5.152L0 16.859v2.778l12.857-6.418V11.49zm11.143 0v2.778l9.474 5.152-9.474 4.566v2.778L24 13.219V11.49z" }) + ] + } + ); +}); + +export { SiCobalt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.cjs new file mode 100644 index 000000000..a91e2dd8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D00013"; +const SiCocacola = React__namespace.forwardRef(function SiCocacola2({ title = "Coca-Cola", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.813 8.814s-.45.18-.973.756c-.524.577-.828 1.225-.603 1.397.087.066.287.079.65-.25a2.864 2.864 0 00.766-1.063c.234-.57.16-.833.16-.84m2.863 1.038c-.581-.299-1.006-.664-1.448-.89-.422-.216-.695-.307-1.036-.261a1.057 1.057 0 00-.14.035s.176.6-.523 1.607c-.708 1.022-1.35 1.015-1.533.734-.191-.296.056-.9.468-1.437.432-.562 1.19-1.028 1.19-1.028s-.241-.148-.835.19c-.58.326-1.577 1.107-2.502 2.423-.926 1.316-1.11 2.04-1.242 2.61-.132.57-.012 1.18.62 1.18s1.368-.964 1.576-1.299c.386-.624.637-1.581.112-1.45-.259.065-.468.351-.6.627a2.683 2.683 0 00-.19.554 2.185 2.185 0 00-.513.298 3.788 3.788 0 00-.486.43s.002-.456.365-1.194c.364-.737 1.03-1.074 1.408-1.106.34-.027.783.262.408 1.327-.375 1.065-1.483 2.36-2.646 2.376-1.073.015-1.776-1.355-.282-3.745C13.501 9.19 15.441 8.38 16.07 8.29c.63-.09.835.187.835.187a2.709 2.709 0 011.197-.197c.77.052 1.364.596 2.15.979-.205.195-.4.4-.575.592m3.454-.89c-.533.342-1.27.652-1.979.586-.179.185-.371.4-.563.634 1.228.243 2.305-.519 2.877-1.167A3.82 3.82 0 0024 8.248a4.792 4.792 0 01-.869.714m-1.636 3.462a.268.268 0 00.023-.051.124.124 0 00-.113-.108c-.117-.005-.277.017-.695.48a6.303 6.303 0 00-.89 1.263c-.24.438-.337.764-.2.848a.199.199 0 00.146.015c.093-.022.199-.11.36-.295.075-.088.158-.212.258-.349.277-.376.973-1.563 1.111-1.803m-4.349.504c.07-.182.159-.541-.026-.682-.199-.15-.705.201-.708.561-.003.369.357.535.443.559.05.013.066.01.09-.029a3.284 3.284 0 00.201-.409m-.383.67a1.531 1.531 0 01-.348-.222 1.116 1.116 0 01-.26-.317c-.008-.012-.015-.003-.023.008-.007.01-.039.039-.309.434-.27.396-.684 1.216-.31 1.355.241.09.641-.331.86-.61a5.21 5.21 0 00.402-.614c.012-.023 0-.029-.012-.034m4.258.947c-.102.163-.218.476.117.281.41-.236.994-1.123.994-1.123h.265a8.88 8.88 0 01-.803 1.054c-.415.46-.922.879-1.28.837-.416-.048-.286-.596-.286-.596s-.596.635-1.01.59c-.557-.062-.387-.751-.387-.751s-.63.774-1.06.75c-.673-.04-.504-.859-.316-1.436.1-.308.193-.55.193-.55s-.067.017-.21.038c-.076.011-.212.019-.212.019s-.28.495-.505.792c-.224.297-1.178 1.322-1.74 1.117-.518-.19-.346-.984-.044-1.615.44-.92 1.68-2.243 2.396-2.068.741.18.017 1.532.017 1.532s0 .005.007.009c.015.005.054.01.143-.008a1.605 1.605 0 00.271-.08s.746-1.561 1.569-2.583c.823-1.02 2.465-2.78 3.11-2.354.156.105.086.465-.126.902a2.891 2.891 0 01-.291.078c.142-.258.236-.475.264-.627.097-.528-1.135.585-2.015 1.78a16.594 16.594 0 00-1.409 2.28 3.86 3.86 0 00.454-.324 13.002 13.002 0 001.118-1.043 12.169 12.169 0 00.951-1.098 2.58 2.58 0 00.28-.029 12.054 12.054 0 01-1.05 1.24c-.35.355-.73.737-1.061 1.015a8.84 8.84 0 01-.931.691s-.77 1.553-.351 1.652c.246.06.732-.69.732-.69s.635-.967 1.017-1.404c.522-.593.97-.936 1.42-.942.261-.005.415.273.415.273l.123-.19h.757s-1.414 2.398-1.527 2.579m2.111-5.58c-.533.341-1.27.651-1.979.585-.18.185-.371.4-.564.634 1.229.243 2.305-.518 2.878-1.167A3.82 3.82 0 0024 8.248a4.792 4.792 0 01-.869.714m-10.63 1.177h-.72l-.407.658h.72zm-3.41 2.277c.307-.42 1.152-1.891 1.152-1.891a.124.124 0 00-.112-.108c-.117-.006-.312.034-.7.519-.387.485-.688.87-.907 1.272-.24.438-.346.747-.207.831a.205.205 0 00.144.015c.09-.022.208-.113.369-.298a5.57 5.57 0 00.262-.34m-3.863-1.99c-.199-.15-.705.201-.708.56-.003.369.456.482.515.484a.09.09 0 00.05-.01.06.06 0 00.024-.027 3.483 3.483 0 00.146-.325c.07-.183.158-.541-.027-.682m-.3 1.27a1.678 1.678 0 01-.39-.18.812.812 0 01-.279-.309c-.007-.012-.015-.003-.022.008-.007.01-.047.061-.318.458-.27.398-.672 1.21-.296 1.35.24.09.644-.334.864-.612a7.24 7.24 0 00.455-.681c.009-.024 0-.03-.014-.034m5.88.244h.263s-1.321 1.912-2.068 1.823c-.416-.049-.293-.563-.293-.563s-.585.685-1.123.546c-.487-.125-.172-.936-.172-.936-.056.022-1.111 1.211-1.853.926-.776-.3-.373-1.296-.225-1.595.125-.253.263-.499.263-.499s-.119.034-.195.051l-.186.04s-.367.596-.591.894c-.225.297-1.178 1.32-1.74 1.117-.562-.204-.423-.99-.107-1.615.512-1.012 1.726-2.256 2.458-2.068.739.189.127 1.388.127 1.388s.147.019.5-.222c.507-.346 1.176-1.277 1.901-1.167.342.051.66.4.225 1.064-.139.213-.372.403-.55.215-.111-.118-.014-.33.103-.477a.457.457 0 01.39-.179s.12-.273-.185-.269c-.247.005-.871.58-1.223 1.16-.323.533-.813 1.441-.322 1.639.451.182 1.309-.836 1.706-1.37.397-.533 1.302-1.742 2.062-1.79.261-.017.417.221.417.221l.088-.139h.759s-1.43 2.387-1.542 2.567c-.088.141-.204.46.117.281.322-.178.996-1.043.996-1.043m-.414 3.824a3.144 3.144 0 00-1.908-.557 1.17 1.17 0 00-.93.504c-.29-.505-.862-.815-1.747-.808-1.43.016-2.849.676-3.972.675-1.077 0-1.863-.677-1.837-1.88.047-2.109 1.83-4.009 3.16-4.864.767-.49 1.409-.637 1.828-.59.306.034.674.388.442.909-.341.761-.812.699-.795.335.01-.237.168-.386.286-.469a.582.582 0 01.278-.068c.068-.057.117-.474-.429-.337-.546.137-1.21.676-1.84 1.371-.63.696-1.61 2.011-1.852 3.392-.113.64-.039 1.808 1.48 1.795 1.287-.01 3.185-.859 4.929-.841a3.34 3.34 0 011.725.472c.451.278.992.684 1.184.961" }) + ] + } + ); +}); + +exports.default = SiCocacola; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.d.ts new file mode 100644 index 000000000..6fe26061b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D00013"; +declare const SiCocacola: IconType; +export { SiCocacola as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.mjs new file mode 100644 index 000000000..dc62e1336 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocacola.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D00013"; +const SiCocacola = React.forwardRef(function SiCocacola2({ title = "Coca-Cola", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.813 8.814s-.45.18-.973.756c-.524.577-.828 1.225-.603 1.397.087.066.287.079.65-.25a2.864 2.864 0 00.766-1.063c.234-.57.16-.833.16-.84m2.863 1.038c-.581-.299-1.006-.664-1.448-.89-.422-.216-.695-.307-1.036-.261a1.057 1.057 0 00-.14.035s.176.6-.523 1.607c-.708 1.022-1.35 1.015-1.533.734-.191-.296.056-.9.468-1.437.432-.562 1.19-1.028 1.19-1.028s-.241-.148-.835.19c-.58.326-1.577 1.107-2.502 2.423-.926 1.316-1.11 2.04-1.242 2.61-.132.57-.012 1.18.62 1.18s1.368-.964 1.576-1.299c.386-.624.637-1.581.112-1.45-.259.065-.468.351-.6.627a2.683 2.683 0 00-.19.554 2.185 2.185 0 00-.513.298 3.788 3.788 0 00-.486.43s.002-.456.365-1.194c.364-.737 1.03-1.074 1.408-1.106.34-.027.783.262.408 1.327-.375 1.065-1.483 2.36-2.646 2.376-1.073.015-1.776-1.355-.282-3.745C13.501 9.19 15.441 8.38 16.07 8.29c.63-.09.835.187.835.187a2.709 2.709 0 011.197-.197c.77.052 1.364.596 2.15.979-.205.195-.4.4-.575.592m3.454-.89c-.533.342-1.27.652-1.979.586-.179.185-.371.4-.563.634 1.228.243 2.305-.519 2.877-1.167A3.82 3.82 0 0024 8.248a4.792 4.792 0 01-.869.714m-1.636 3.462a.268.268 0 00.023-.051.124.124 0 00-.113-.108c-.117-.005-.277.017-.695.48a6.303 6.303 0 00-.89 1.263c-.24.438-.337.764-.2.848a.199.199 0 00.146.015c.093-.022.199-.11.36-.295.075-.088.158-.212.258-.349.277-.376.973-1.563 1.111-1.803m-4.349.504c.07-.182.159-.541-.026-.682-.199-.15-.705.201-.708.561-.003.369.357.535.443.559.05.013.066.01.09-.029a3.284 3.284 0 00.201-.409m-.383.67a1.531 1.531 0 01-.348-.222 1.116 1.116 0 01-.26-.317c-.008-.012-.015-.003-.023.008-.007.01-.039.039-.309.434-.27.396-.684 1.216-.31 1.355.241.09.641-.331.86-.61a5.21 5.21 0 00.402-.614c.012-.023 0-.029-.012-.034m4.258.947c-.102.163-.218.476.117.281.41-.236.994-1.123.994-1.123h.265a8.88 8.88 0 01-.803 1.054c-.415.46-.922.879-1.28.837-.416-.048-.286-.596-.286-.596s-.596.635-1.01.59c-.557-.062-.387-.751-.387-.751s-.63.774-1.06.75c-.673-.04-.504-.859-.316-1.436.1-.308.193-.55.193-.55s-.067.017-.21.038c-.076.011-.212.019-.212.019s-.28.495-.505.792c-.224.297-1.178 1.322-1.74 1.117-.518-.19-.346-.984-.044-1.615.44-.92 1.68-2.243 2.396-2.068.741.18.017 1.532.017 1.532s0 .005.007.009c.015.005.054.01.143-.008a1.605 1.605 0 00.271-.08s.746-1.561 1.569-2.583c.823-1.02 2.465-2.78 3.11-2.354.156.105.086.465-.126.902a2.891 2.891 0 01-.291.078c.142-.258.236-.475.264-.627.097-.528-1.135.585-2.015 1.78a16.594 16.594 0 00-1.409 2.28 3.86 3.86 0 00.454-.324 13.002 13.002 0 001.118-1.043 12.169 12.169 0 00.951-1.098 2.58 2.58 0 00.28-.029 12.054 12.054 0 01-1.05 1.24c-.35.355-.73.737-1.061 1.015a8.84 8.84 0 01-.931.691s-.77 1.553-.351 1.652c.246.06.732-.69.732-.69s.635-.967 1.017-1.404c.522-.593.97-.936 1.42-.942.261-.005.415.273.415.273l.123-.19h.757s-1.414 2.398-1.527 2.579m2.111-5.58c-.533.341-1.27.651-1.979.585-.18.185-.371.4-.564.634 1.229.243 2.305-.518 2.878-1.167A3.82 3.82 0 0024 8.248a4.792 4.792 0 01-.869.714m-10.63 1.177h-.72l-.407.658h.72zm-3.41 2.277c.307-.42 1.152-1.891 1.152-1.891a.124.124 0 00-.112-.108c-.117-.006-.312.034-.7.519-.387.485-.688.87-.907 1.272-.24.438-.346.747-.207.831a.205.205 0 00.144.015c.09-.022.208-.113.369-.298a5.57 5.57 0 00.262-.34m-3.863-1.99c-.199-.15-.705.201-.708.56-.003.369.456.482.515.484a.09.09 0 00.05-.01.06.06 0 00.024-.027 3.483 3.483 0 00.146-.325c.07-.183.158-.541-.027-.682m-.3 1.27a1.678 1.678 0 01-.39-.18.812.812 0 01-.279-.309c-.007-.012-.015-.003-.022.008-.007.01-.047.061-.318.458-.27.398-.672 1.21-.296 1.35.24.09.644-.334.864-.612a7.24 7.24 0 00.455-.681c.009-.024 0-.03-.014-.034m5.88.244h.263s-1.321 1.912-2.068 1.823c-.416-.049-.293-.563-.293-.563s-.585.685-1.123.546c-.487-.125-.172-.936-.172-.936-.056.022-1.111 1.211-1.853.926-.776-.3-.373-1.296-.225-1.595.125-.253.263-.499.263-.499s-.119.034-.195.051l-.186.04s-.367.596-.591.894c-.225.297-1.178 1.32-1.74 1.117-.562-.204-.423-.99-.107-1.615.512-1.012 1.726-2.256 2.458-2.068.739.189.127 1.388.127 1.388s.147.019.5-.222c.507-.346 1.176-1.277 1.901-1.167.342.051.66.4.225 1.064-.139.213-.372.403-.55.215-.111-.118-.014-.33.103-.477a.457.457 0 01.39-.179s.12-.273-.185-.269c-.247.005-.871.58-1.223 1.16-.323.533-.813 1.441-.322 1.639.451.182 1.309-.836 1.706-1.37.397-.533 1.302-1.742 2.062-1.79.261-.017.417.221.417.221l.088-.139h.759s-1.43 2.387-1.542 2.567c-.088.141-.204.46.117.281.322-.178.996-1.043.996-1.043m-.414 3.824a3.144 3.144 0 00-1.908-.557 1.17 1.17 0 00-.93.504c-.29-.505-.862-.815-1.747-.808-1.43.016-2.849.676-3.972.675-1.077 0-1.863-.677-1.837-1.88.047-2.109 1.83-4.009 3.16-4.864.767-.49 1.409-.637 1.828-.59.306.034.674.388.442.909-.341.761-.812.699-.795.335.01-.237.168-.386.286-.469a.582.582 0 01.278-.068c.068-.057.117-.474-.429-.337-.546.137-1.21.676-1.84 1.371-.63.696-1.61 2.011-1.852 3.392-.113.64-.039 1.808 1.48 1.795 1.287-.01 3.185-.859 4.929-.841a3.34 3.34 0 011.725.472c.451.278.992.684 1.184.961" }) + ] + } + ); +}); + +export { SiCocacola as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.cjs new file mode 100644 index 000000000..eda15afc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066CC"; +const SiCockpit = React__namespace.forwardRef(function SiCockpit2({ title = "Cockpit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.383 0 0 5.382 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0zm0 1.799A10.19 10.19 0 0 1 22.207 12 10.19 10.19 0 0 1 12 22.201 10.186 10.186 0 0 1 1.799 12 10.186 10.186 0 0 1 12 1.799zm4.016 5.285c-.49-.018-1.232.368-1.899 1.031l-1.44 1.43-4.31-1.447-.842.867 3.252 2.47-.728.723a4.747 4.747 0 0 0-.639.787L7.451 12.8l-.476.484 1.947 1.444 1.424 1.943.48-.48-.144-1.98c.246-.16.497-.361.74-.603l.765-.76 2.495 3.274.869-.84-1.455-4.332 1.394-1.385c.89-.885 1.298-1.92.918-2.322a.547.547 0 0 0-.392-.158z" }) + ] + } + ); +}); + +exports.default = SiCockpit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.d.ts new file mode 100644 index 000000000..d80c5f99f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066CC"; +declare const SiCockpit: IconType; +export { SiCockpit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.mjs new file mode 100644 index 000000000..a557b9e27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCockpit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066CC"; +const SiCockpit = React.forwardRef(function SiCockpit2({ title = "Cockpit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.383 0 0 5.382 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0zm0 1.799A10.19 10.19 0 0 1 22.207 12 10.19 10.19 0 0 1 12 22.201 10.186 10.186 0 0 1 1.799 12 10.186 10.186 0 0 1 12 1.799zm4.016 5.285c-.49-.018-1.232.368-1.899 1.031l-1.44 1.43-4.31-1.447-.842.867 3.252 2.47-.728.723a4.747 4.747 0 0 0-.639.787L7.451 12.8l-.476.484 1.947 1.444 1.424 1.943.48-.48-.144-1.98c.246-.16.497-.361.74-.603l.765-.76 2.495 3.274.869-.84-1.455-4.332 1.394-1.385c.89-.885 1.298-1.92.918-2.322a.547.547 0 0 0-.392-.158z" }) + ] + } + ); +}); + +export { SiCockpit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.cjs new file mode 100644 index 000000000..fe709f852 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6933FF"; +const SiCockroachlabs = React__namespace.forwardRef(function SiCockroachlabs2({ title = "Cockroach Labs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.645 16.155a13.013 13.013 0 0 0-4.479-13.287 11.617 11.617 0 0 1 5.815-1.546c.774 0 1.545.075 2.304.226l.32-1.282A13.092 13.092 0 0 0 18.98 0 12.93 12.93 0 0 0 12 2.03 12.933 12.933 0 0 0 5.021 0C4.139 0 3.26.089 2.396.266l.319 1.282a11.83 11.83 0 0 1 2.306-.226 11.64 11.64 0 0 1 5.817 1.544 13.01 13.01 0 0 0 .792 20.877l.375.257.373-.257c2.624-1.801 4.5-4.5 5.27-7.588zm-6.305 5.7A11.687 11.687 0 0 1 7.825 9.519a13.08 13.08 0 0 0 2.457 2.977 3.202 3.202 0 0 1 1.058 2.383zm.661-9.657a11.717 11.717 0 0 1-2.343-2.315 3.23 3.23 0 0 1 0-3.912 11.67 11.67 0 0 1 2.347-2.333c.9.671 1.697 1.468 2.37 2.366a3.197 3.197 0 0 1 0 3.832 11.816 11.816 0 0 1-2.374 2.362zm.659 9.657v-6.976a3.202 3.202 0 0 1 1.06-2.383 13.026 13.026 0 0 0 2.455-2.977 11.694 11.694 0 0 1-3.515 12.336Z" }) + ] + } + ); +}); + +exports.default = SiCockroachlabs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.d.ts new file mode 100644 index 000000000..e576aeb06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6933FF"; +declare const SiCockroachlabs: IconType; +export { SiCockroachlabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.mjs new file mode 100644 index 000000000..c883bcbb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCockroachlabs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6933FF"; +const SiCockroachlabs = React.forwardRef(function SiCockroachlabs2({ title = "Cockroach Labs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.645 16.155a13.013 13.013 0 0 0-4.479-13.287 11.617 11.617 0 0 1 5.815-1.546c.774 0 1.545.075 2.304.226l.32-1.282A13.092 13.092 0 0 0 18.98 0 12.93 12.93 0 0 0 12 2.03 12.933 12.933 0 0 0 5.021 0C4.139 0 3.26.089 2.396.266l.319 1.282a11.83 11.83 0 0 1 2.306-.226 11.64 11.64 0 0 1 5.817 1.544 13.01 13.01 0 0 0 .792 20.877l.375.257.373-.257c2.624-1.801 4.5-4.5 5.27-7.588zm-6.305 5.7A11.687 11.687 0 0 1 7.825 9.519a13.08 13.08 0 0 0 2.457 2.977 3.202 3.202 0 0 1 1.058 2.383zm.661-9.657a11.717 11.717 0 0 1-2.343-2.315 3.23 3.23 0 0 1 0-3.912 11.67 11.67 0 0 1 2.347-2.333c.9.671 1.697 1.468 2.37 2.366a3.197 3.197 0 0 1 0 3.832 11.816 11.816 0 0 1-2.374 2.362zm.659 9.657v-6.976a3.202 3.202 0 0 1 1.06-2.383 13.026 13.026 0 0 0 2.455-2.977 11.694 11.694 0 0 1-3.515 12.336Z" }) + ] + } + ); +}); + +export { SiCockroachlabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.cjs new file mode 100644 index 000000000..2df442c21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE3322"; +const SiCocoapods = React__namespace.forwardRef(function SiCocoapods2({ title = "CocoaPods", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.812 17.176c-2.968 0-4.956-2.308-4.956-5.176 0-2.705 1.776-5.176 4.91-5.176 2.407 0 3.856 1.445 4.207 3.357h3.95C16.479 6.427 13.51 3.42 8.718 3.42 3.131 3.42 0 7.523 0 12c0 4.57 3.295 8.58 8.766 8.58 4.58 0 7.549-2.822 8.18-6.272h-4.02c-.467 1.609-1.916 2.868-4.114 2.868zM24 12.068l-3.466 8.055-2.38-1.022 2.992-7.055-3.01-7.096 2.433-1.042Z" }) + ] + } + ); +}); + +exports.default = SiCocoapods; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.d.ts new file mode 100644 index 000000000..b2db6710a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE3322"; +declare const SiCocoapods: IconType; +export { SiCocoapods as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.mjs new file mode 100644 index 000000000..6591cd8df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocoapods.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE3322"; +const SiCocoapods = React.forwardRef(function SiCocoapods2({ title = "CocoaPods", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.812 17.176c-2.968 0-4.956-2.308-4.956-5.176 0-2.705 1.776-5.176 4.91-5.176 2.407 0 3.856 1.445 4.207 3.357h3.95C16.479 6.427 13.51 3.42 8.718 3.42 3.131 3.42 0 7.523 0 12c0 4.57 3.295 8.58 8.766 8.58 4.58 0 7.549-2.822 8.18-6.272h-4.02c-.467 1.609-1.916 2.868-4.114 2.868zM24 12.068l-3.466 8.055-2.38-1.022 2.992-7.055-3.01-7.096 2.433-1.042Z" }) + ] + } + ); +}); + +export { SiCocoapods as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.cjs new file mode 100644 index 000000000..70b3b3f67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#55C2E1"; +const SiCocos = React__namespace.forwardRef(function SiCocos2({ title = "Cocos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.365 0h.002zc-.007.004-.002.066.018.143.19.787.395 1.67.395 1.7 0 .023-.242.247-.538.5-.296.253-.628.552-.735.663l-.175.182h-.247c-1.53-.004-3.06.014-4.588-.01-.578-.01-.855.407-.855.85.007 6.384.007 12.766.007 19.15 0 .542.283.822.828.822h15.06c.542 0 .825-.28.825-.825V4.025c0-.56-.276-.838-.83-.838-1.632 0-3.264.002-4.896-.006h-.208l-.546-.532c-.94-.915-1.62-1.455-2.762-2.18A17.17 17.17 0 0 0 10.366 0zm.955 1.35c.03-.004.232.125.47.3a16.989 16.989 0 0 1 2.497 2.31h.002c.465.52.903 1.057 1.268 1.6.357.53.935 1.546.935 1.64 0 .03.017.052.037.052.02 0 .083-.168.14-.374.127-.45.126-.448.388.403.38 1.238.51 2.106.51 3.38 0 .992-.047 1.402-.23 2.12-.053.205-.066.318-.035.318.026 0 .184-.038.352-.086.167-.048.31-.08.318-.073.028.027-.394.753-.692 1.19-1.246 1.828-2.718 2.91-4.358 3.206-.917.165-1.763.1-2.61-.198-.45-.158-.813-.348-1.398-.733-1.25-.82-2.206-2.292-2.68-4.12-.214-.82-.378-2.076-.378-2.895V9l.277.415c.403.603.89 1.217.93 1.172.006-.01-.104-.224-.247-.478-.302-.536-.303-.53-.08-1.39.362-1.406 1.112-2.862 2.108-4.098.143-.178.395-.43.614-.663.603-.644 1.29-1.32 1.342-1.27.01.01-.01.126-.045.257-.134.492-.33 1.332-.313 1.348.004.004.126-.216.197-.336.072-.124.096-.15.203-.344.21-.38.39-.7.395-.706.006-.007.132.112.28.264.222.225.27.256.25.167-.014-.06-.123-.522-.245-1.028-.12-.506-.215-.938-.207-.96 0-.002.002-.003.004-.003zm4.08 2.59h3.71c.372 0 .49.114.49.482v13.9c0 .36-.12.457-.558.457H6.42c-.52 0-1.04.002-1.56 0-.33-.003-.453-.126-.453-.448V4.41c0-.343.12-.467.46-.467 1.17-.002 2.342 0 3.513 0 .048 0 .097.005.116.006h.1l-.007.006-.138.165c-.948 1.143-1.77 2.63-2.157 3.912-.053.176-.102.32-.11.32-.006 0-.207-.29-.443-.64-.237-.352-.448-.652-.47-.665-.074-.046-.01 3.277.075 3.897.305 2.222 1.053 3.926 2.292 5.214.62.646 1.705 1.31 2.633 1.612 1.36.444 2.87.33 4.27-.32 1.37-.638 2.723-1.993 3.706-3.713.366-.642.934-1.742.91-1.766-.01-.01-.255.05-.542.132a5.99 5.99 0 0 1-.533.14 1.427 1.427 0 0 1 .033-.292c.09-.534.103-1.682.027-2.396-.134-1.262-.344-2.09-.93-3.663-.467-1.258-.473-1.274-.5-1.274-.014 0-.092.238-.173.528-.082.29-.154.526-.16.526a.831.831 0 0 1-.114-.165 21.09 21.09 0 0 0-.972-1.34l-.174-.21c.083-.005.158-.013.234-.013zm-3.6.71-.032.234c-.027.2-.205.86-.31 1.157-.048.132.26-.17.433-.426.08-.115.152-.21.165-.21.014 0 .17.147.35.327.18.18.333.32.34.313.03-.03-.21-.515-.377-.76a3.624 3.624 0 0 0-.37-.445zM9.32 6.584l-.132.125c-.178.17-.485.64-.63.96-.15.332-.33.85-.328.94 0 .04.072-.06.158-.222.155-.29.603-.872.67-.872.02 0 .06.053.09.12.06.132.36.552.378.53a1.875 1.875 0 0 0-.045-.32c-.03-.17-.07-.465-.085-.66a6.93 6.93 0 0 0-.053-.476zm5.453.008c-.02 0-.038.113-.04.252 0 .24-.097 1.002-.157 1.242-.026.107-.023.107.088-.02.063-.074.166-.22.23-.33.065-.11.123-.207.132-.217.054-.063.71.816.786 1.052.017.052.04.083.053.07.03-.03-.188-.687-.323-.975-.197-.42-.664-1.074-.768-1.074zm-2.63 1.1h.002zc-.04.006-.274.505-.348.746-.083.27-.182.978-.18 1.296v.307l.108-.41c.095-.368.25-.758.365-.926.035-.05.087-.023.274.145.127.114.267.227.31.25.085.045.11 0 .042-.072-.057-.06-.392-.855-.47-1.117-.035-.12-.08-.217-.1-.22zM9.56 10.917c-.725.02-1.372.593-1.573 1.445-.088.374-.082.66.022 1.062.2.792.655 1.322 1.36 1.59.098.038.3.058.55.05.34-.007.433-.027.65-.138.51-.258.868-.8.965-1.463.043-.298.04-.41-.022-.72-.187-.95-.812-1.636-1.64-1.8-.104-.02-.21-.03-.313-.026zm5.087 0c-.03 0-.06.002-.09.004-.847.058-1.65.858-1.808 1.882-.143.93.33 1.89 1.073 2.183.344.135.928.112 1.277-.05.814-.38 1.355-1.432 1.222-2.373-.12-.854-.656-1.474-1.402-1.62a1.393 1.393 0 0 0-.273-.024zm-.515 2.06c.38.012.612.473.366.792-.096.12-.338.2-.51.16-.51-.11-.456-.88.066-.948a.51.51 0 0 1 .078-.004zm-3.968.01c.2 0 .24.02.354.146.192.215.165.6-.05.714-.19.1-.332.12-.467.065-.33-.14-.424-.52-.192-.78.113-.126.155-.144.356-.144zM8.65 19.543c.25 0 .498.002.746.008.49.01.683.22.683.712v1.162h-.003v1.14c-.003.416-.192.633-.608.646a25.8 25.8 0 0 1-1.622 0c-.416-.015-.603-.228-.608-.648-.005-.775-.006-1.55 0-2.324.004-.466.206-.676.666-.687.25-.005.497-.008.745-.008zm6.23 0c.29.002.577.01.865.026.348.02.53.23.534.58.013.817.016 1.636.004 2.454-.005.39-.21.59-.608.604-.54.02-1.08.02-1.62 0-.428-.015-.606-.23-.61-.666v-1.16h-.003c0-.39-.004-.775 0-1.164.004-.418.166-.636.573-.656.288-.013.576-.02.865-.017zm-2.744.002c.29 0 .583.003.88.003v.632h-1.452c-.31 0-.333.023-.333.34 0 .6.006 1.2-.003 1.8-.003.2.075.275.27.272.424-.007.847 0 1.272 0h.267l.003.603c-.05.007-.098.02-.146.02-.527.002-1.054.005-1.58 0-.516-.005-.716-.21-.716-.722v-2.24c0-.476.197-.692.67-.703.29-.006.577-.007.868-.006zm6.29.006c.358 0 .72.005 1.086.005v.622h-1.794c-.26 0-.286.027-.286.292.006.727-.102.634.64.64.298.003.6-.003.898.003.433.01.632.206.64.633.004.278.005.557-.004.834-.013.383-.193.607-.572.62-.736.023-1.474.006-2.226.006v-.616h.244c.557 0 1.113-.003 1.668.002.186.002.272-.072.264-.26a5.38 5.38 0 0 1 0-.44c.007-.188-.078-.258-.266-.254-.4.01-.804.006-1.206.002-.533-.006-.722-.203-.722-.737 0-.242-.003-.483.004-.724.012-.387.19-.608.568-.62.353-.01.707-.01 1.065-.01zm-12.84.02c.41-.003.82.006 1.237.006v.586c-.08.005-.156.014-.232.014-.438.002-.877.005-1.315 0-.175-.002-.25.072-.25.25.006.638.008 1.274 0 1.91 0 .196.083.257.265.256.438-.005.877-.002 1.316-.002h.223v.608c-.65 0-1.284.02-1.917-.008-.342-.014-.51-.227-.514-.568-.01-.826-.01-1.653 0-2.48.003-.318.157-.544.448-.557.25-.014.51-.01.737-.016zm9.806.607c-.357.007-.715.005-1.072 0-.177 0-.248.08-.246.255.004.643.004 1.285 0 1.927 0 .16.07.23.22.23.38.003.76 0 1.138 0 .17 0 .228-.083.224-.248-.008-.32 0-.642-.005-.963 0-.316-.007-.63 0-.944h.004c.005-.19-.077-.26-.262-.258zm-7.282.003c-.168-.002-.237.076-.235.24.005.322 0 .644 0 .965 0 .32.006.64-.004.962h.002c-.004.17.067.245.23.245H9.22c.158 0 .235-.068.234-.24-.006-.642-.004-1.283 0-1.926 0-.16-.056-.248-.228-.246-.373.005-.745.003-1.117 0z" }) + ] + } + ); +}); + +exports.default = SiCocos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.d.ts new file mode 100644 index 000000000..d28abfa48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#55C2E1"; +declare const SiCocos: IconType; +export { SiCocos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.mjs new file mode 100644 index 000000000..e8ec138e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCocos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#55C2E1"; +const SiCocos = React.forwardRef(function SiCocos2({ title = "Cocos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.365 0h.002zc-.007.004-.002.066.018.143.19.787.395 1.67.395 1.7 0 .023-.242.247-.538.5-.296.253-.628.552-.735.663l-.175.182h-.247c-1.53-.004-3.06.014-4.588-.01-.578-.01-.855.407-.855.85.007 6.384.007 12.766.007 19.15 0 .542.283.822.828.822h15.06c.542 0 .825-.28.825-.825V4.025c0-.56-.276-.838-.83-.838-1.632 0-3.264.002-4.896-.006h-.208l-.546-.532c-.94-.915-1.62-1.455-2.762-2.18A17.17 17.17 0 0 0 10.366 0zm.955 1.35c.03-.004.232.125.47.3a16.989 16.989 0 0 1 2.497 2.31h.002c.465.52.903 1.057 1.268 1.6.357.53.935 1.546.935 1.64 0 .03.017.052.037.052.02 0 .083-.168.14-.374.127-.45.126-.448.388.403.38 1.238.51 2.106.51 3.38 0 .992-.047 1.402-.23 2.12-.053.205-.066.318-.035.318.026 0 .184-.038.352-.086.167-.048.31-.08.318-.073.028.027-.394.753-.692 1.19-1.246 1.828-2.718 2.91-4.358 3.206-.917.165-1.763.1-2.61-.198-.45-.158-.813-.348-1.398-.733-1.25-.82-2.206-2.292-2.68-4.12-.214-.82-.378-2.076-.378-2.895V9l.277.415c.403.603.89 1.217.93 1.172.006-.01-.104-.224-.247-.478-.302-.536-.303-.53-.08-1.39.362-1.406 1.112-2.862 2.108-4.098.143-.178.395-.43.614-.663.603-.644 1.29-1.32 1.342-1.27.01.01-.01.126-.045.257-.134.492-.33 1.332-.313 1.348.004.004.126-.216.197-.336.072-.124.096-.15.203-.344.21-.38.39-.7.395-.706.006-.007.132.112.28.264.222.225.27.256.25.167-.014-.06-.123-.522-.245-1.028-.12-.506-.215-.938-.207-.96 0-.002.002-.003.004-.003zm4.08 2.59h3.71c.372 0 .49.114.49.482v13.9c0 .36-.12.457-.558.457H6.42c-.52 0-1.04.002-1.56 0-.33-.003-.453-.126-.453-.448V4.41c0-.343.12-.467.46-.467 1.17-.002 2.342 0 3.513 0 .048 0 .097.005.116.006h.1l-.007.006-.138.165c-.948 1.143-1.77 2.63-2.157 3.912-.053.176-.102.32-.11.32-.006 0-.207-.29-.443-.64-.237-.352-.448-.652-.47-.665-.074-.046-.01 3.277.075 3.897.305 2.222 1.053 3.926 2.292 5.214.62.646 1.705 1.31 2.633 1.612 1.36.444 2.87.33 4.27-.32 1.37-.638 2.723-1.993 3.706-3.713.366-.642.934-1.742.91-1.766-.01-.01-.255.05-.542.132a5.99 5.99 0 0 1-.533.14 1.427 1.427 0 0 1 .033-.292c.09-.534.103-1.682.027-2.396-.134-1.262-.344-2.09-.93-3.663-.467-1.258-.473-1.274-.5-1.274-.014 0-.092.238-.173.528-.082.29-.154.526-.16.526a.831.831 0 0 1-.114-.165 21.09 21.09 0 0 0-.972-1.34l-.174-.21c.083-.005.158-.013.234-.013zm-3.6.71-.032.234c-.027.2-.205.86-.31 1.157-.048.132.26-.17.433-.426.08-.115.152-.21.165-.21.014 0 .17.147.35.327.18.18.333.32.34.313.03-.03-.21-.515-.377-.76a3.624 3.624 0 0 0-.37-.445zM9.32 6.584l-.132.125c-.178.17-.485.64-.63.96-.15.332-.33.85-.328.94 0 .04.072-.06.158-.222.155-.29.603-.872.67-.872.02 0 .06.053.09.12.06.132.36.552.378.53a1.875 1.875 0 0 0-.045-.32c-.03-.17-.07-.465-.085-.66a6.93 6.93 0 0 0-.053-.476zm5.453.008c-.02 0-.038.113-.04.252 0 .24-.097 1.002-.157 1.242-.026.107-.023.107.088-.02.063-.074.166-.22.23-.33.065-.11.123-.207.132-.217.054-.063.71.816.786 1.052.017.052.04.083.053.07.03-.03-.188-.687-.323-.975-.197-.42-.664-1.074-.768-1.074zm-2.63 1.1h.002zc-.04.006-.274.505-.348.746-.083.27-.182.978-.18 1.296v.307l.108-.41c.095-.368.25-.758.365-.926.035-.05.087-.023.274.145.127.114.267.227.31.25.085.045.11 0 .042-.072-.057-.06-.392-.855-.47-1.117-.035-.12-.08-.217-.1-.22zM9.56 10.917c-.725.02-1.372.593-1.573 1.445-.088.374-.082.66.022 1.062.2.792.655 1.322 1.36 1.59.098.038.3.058.55.05.34-.007.433-.027.65-.138.51-.258.868-.8.965-1.463.043-.298.04-.41-.022-.72-.187-.95-.812-1.636-1.64-1.8-.104-.02-.21-.03-.313-.026zm5.087 0c-.03 0-.06.002-.09.004-.847.058-1.65.858-1.808 1.882-.143.93.33 1.89 1.073 2.183.344.135.928.112 1.277-.05.814-.38 1.355-1.432 1.222-2.373-.12-.854-.656-1.474-1.402-1.62a1.393 1.393 0 0 0-.273-.024zm-.515 2.06c.38.012.612.473.366.792-.096.12-.338.2-.51.16-.51-.11-.456-.88.066-.948a.51.51 0 0 1 .078-.004zm-3.968.01c.2 0 .24.02.354.146.192.215.165.6-.05.714-.19.1-.332.12-.467.065-.33-.14-.424-.52-.192-.78.113-.126.155-.144.356-.144zM8.65 19.543c.25 0 .498.002.746.008.49.01.683.22.683.712v1.162h-.003v1.14c-.003.416-.192.633-.608.646a25.8 25.8 0 0 1-1.622 0c-.416-.015-.603-.228-.608-.648-.005-.775-.006-1.55 0-2.324.004-.466.206-.676.666-.687.25-.005.497-.008.745-.008zm6.23 0c.29.002.577.01.865.026.348.02.53.23.534.58.013.817.016 1.636.004 2.454-.005.39-.21.59-.608.604-.54.02-1.08.02-1.62 0-.428-.015-.606-.23-.61-.666v-1.16h-.003c0-.39-.004-.775 0-1.164.004-.418.166-.636.573-.656.288-.013.576-.02.865-.017zm-2.744.002c.29 0 .583.003.88.003v.632h-1.452c-.31 0-.333.023-.333.34 0 .6.006 1.2-.003 1.8-.003.2.075.275.27.272.424-.007.847 0 1.272 0h.267l.003.603c-.05.007-.098.02-.146.02-.527.002-1.054.005-1.58 0-.516-.005-.716-.21-.716-.722v-2.24c0-.476.197-.692.67-.703.29-.006.577-.007.868-.006zm6.29.006c.358 0 .72.005 1.086.005v.622h-1.794c-.26 0-.286.027-.286.292.006.727-.102.634.64.64.298.003.6-.003.898.003.433.01.632.206.64.633.004.278.005.557-.004.834-.013.383-.193.607-.572.62-.736.023-1.474.006-2.226.006v-.616h.244c.557 0 1.113-.003 1.668.002.186.002.272-.072.264-.26a5.38 5.38 0 0 1 0-.44c.007-.188-.078-.258-.266-.254-.4.01-.804.006-1.206.002-.533-.006-.722-.203-.722-.737 0-.242-.003-.483.004-.724.012-.387.19-.608.568-.62.353-.01.707-.01 1.065-.01zm-12.84.02c.41-.003.82.006 1.237.006v.586c-.08.005-.156.014-.232.014-.438.002-.877.005-1.315 0-.175-.002-.25.072-.25.25.006.638.008 1.274 0 1.91 0 .196.083.257.265.256.438-.005.877-.002 1.316-.002h.223v.608c-.65 0-1.284.02-1.917-.008-.342-.014-.51-.227-.514-.568-.01-.826-.01-1.653 0-2.48.003-.318.157-.544.448-.557.25-.014.51-.01.737-.016zm9.806.607c-.357.007-.715.005-1.072 0-.177 0-.248.08-.246.255.004.643.004 1.285 0 1.927 0 .16.07.23.22.23.38.003.76 0 1.138 0 .17 0 .228-.083.224-.248-.008-.32 0-.642-.005-.963 0-.316-.007-.63 0-.944h.004c.005-.19-.077-.26-.262-.258zm-7.282.003c-.168-.002-.237.076-.235.24.005.322 0 .644 0 .965 0 .32.006.64-.004.962h.002c-.004.17.067.245.23.245H9.22c.158 0 .235-.068.234-.24-.006-.642-.004-1.283 0-1.926 0-.16-.056-.248-.228-.246-.373.005-.745.003-1.117 0z" }) + ] + } + ); +}); + +export { SiCocos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.cjs new file mode 100644 index 000000000..5e0d51c19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F46A54"; +const SiCoda = React__namespace.forwardRef(function SiCoda2({ title = "Coda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.194 0H2.806A2.01 2.01 0 0 0 .8 2v20c0 1.1.903 2 2.006 2h18.388a2.01 2.01 0 0 0 2.006-2v-.933c-.033-1.2-.067-3.7-.067-4.834 0-.633-.468-1.166-1.07-1.166-.668 0-1.103.4-1.437.733-1.003.9-2.508 1.067-3.812.833-.601-.133-1.17-.3-1.638-.6-1.438-.833-2.374-2.4-2.374-4.066 0-1.667.936-3.2 2.374-4.067.502-.3 1.07-.467 1.638-.6 1.27-.233 2.809-.067 3.812.833.367.334.802.734 1.437.734.602 0 1.07-.534 1.07-1.167 0-1.1.034-3.633.067-4.833V2c0-1.1-.903-2-2.006-2Z" }) + ] + } + ); +}); + +exports.default = SiCoda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.d.ts new file mode 100644 index 000000000..b78dd2dec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F46A54"; +declare const SiCoda: IconType; +export { SiCoda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.mjs new file mode 100644 index 000000000..808c3c86a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F46A54"; +const SiCoda = React.forwardRef(function SiCoda2({ title = "Coda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.194 0H2.806A2.01 2.01 0 0 0 .8 2v20c0 1.1.903 2 2.006 2h18.388a2.01 2.01 0 0 0 2.006-2v-.933c-.033-1.2-.067-3.7-.067-4.834 0-.633-.468-1.166-1.07-1.166-.668 0-1.103.4-1.437.733-1.003.9-2.508 1.067-3.812.833-.601-.133-1.17-.3-1.638-.6-1.438-.833-2.374-2.4-2.374-4.066 0-1.667.936-3.2 2.374-4.067.502-.3 1.07-.467 1.638-.6 1.27-.233 2.809-.067 3.812.833.367.334.802.734 1.437.734.602 0 1.07-.534 1.07-1.167 0-1.1.034-3.633.067-4.833V2c0-1.1-.903-2-2.006-2Z" }) + ] + } + ); +}); + +export { SiCoda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.cjs new file mode 100644 index 000000000..e2d321ff0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222F29"; +const SiCodacy = React__namespace.forwardRef(function SiCodacy2({ title = "Codacy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.883 9.825a8.46 8.46 0 0 1 3.875-5.07l.04-.021-1.803-3.113C3.276 3.212 1.268 5.769.427 8.81l-.02.084zM9.824 3.894a8.246 8.246 0 0 1 2.164-.283h.005V.016h-.019a12.05 12.05 0 0 0-3.165.421l.084-.02zM14.178 3.897a8.449 8.449 0 0 1 5.063 3.875l.021.04 3.117-1.799c-1.591-2.718-4.146-4.726-7.186-5.568l-.084-.02zM0 12v.006c0 1.1.148 2.165.425 3.177l-.02-.084 3.476-.929a8.14 8.14 0 0 1-.284-2.161v-.008zM1.605 17.995c.55.941 1.18 1.754 1.901 2.475l2.553-2.54a8.56 8.56 0 0 1-1.313-1.695l-.022-.04zM5.995 22.38a11.77 11.77 0 0 0 5.967 1.604h.021-.001v-3.595h-.004a8.308 8.308 0 0 1-4.223-1.145l.039.021zM19.259 16.205a8.44 8.44 0 0 1-5.034 3.884l-.059.014.931 3.476c3.124-.86 5.681-2.863 7.246-5.52l.031-.056zM23.577 15.221c.268-.947.423-2.035.423-3.159 0-1.087-.144-2.14-.415-3.142l.019.084-3.486.931c.175.64.275 1.374.275 2.132 0 .79-.109 1.555-.313 2.28l.014-.059z" }) + ] + } + ); +}); + +exports.default = SiCodacy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.d.ts new file mode 100644 index 000000000..00400ab4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222F29"; +declare const SiCodacy: IconType; +export { SiCodacy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.mjs new file mode 100644 index 000000000..e61f01180 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodacy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222F29"; +const SiCodacy = React.forwardRef(function SiCodacy2({ title = "Codacy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.883 9.825a8.46 8.46 0 0 1 3.875-5.07l.04-.021-1.803-3.113C3.276 3.212 1.268 5.769.427 8.81l-.02.084zM9.824 3.894a8.246 8.246 0 0 1 2.164-.283h.005V.016h-.019a12.05 12.05 0 0 0-3.165.421l.084-.02zM14.178 3.897a8.449 8.449 0 0 1 5.063 3.875l.021.04 3.117-1.799c-1.591-2.718-4.146-4.726-7.186-5.568l-.084-.02zM0 12v.006c0 1.1.148 2.165.425 3.177l-.02-.084 3.476-.929a8.14 8.14 0 0 1-.284-2.161v-.008zM1.605 17.995c.55.941 1.18 1.754 1.901 2.475l2.553-2.54a8.56 8.56 0 0 1-1.313-1.695l-.022-.04zM5.995 22.38a11.77 11.77 0 0 0 5.967 1.604h.021-.001v-3.595h-.004a8.308 8.308 0 0 1-4.223-1.145l.039.021zM19.259 16.205a8.44 8.44 0 0 1-5.034 3.884l-.059.014.931 3.476c3.124-.86 5.681-2.863 7.246-5.52l.031-.056zM23.577 15.221c.268-.947.423-2.035.423-3.159 0-1.087-.144-2.14-.415-3.142l.019.084-3.486.931c.175.64.275 1.374.275 2.132 0 .79-.109 1.555-.313 2.28l.014-.059z" }) + ] + } + ); +}); + +export { SiCodacy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.cjs new file mode 100644 index 000000000..cd1284d9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2185D0"; +const SiCodeberg = React__namespace.forwardRef(function SiCodeberg2({ title = "Codeberg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999.747A11.974 11.974 0 0 0 0 12.75c0 2.254.635 4.465 1.833 6.376L11.837 6.19c.072-.092.251-.092.323 0l4.178 5.402h-2.992l.065.239h3.113l.882 1.138h-3.674l.103.374h3.86l.777 1.003h-4.358l.135.483h4.593l.695.894h-5.038l.165.589h5.326l.609.785h-5.717l.182.65h6.038l.562.727h-6.397l.183.65h6.717A12.003 12.003 0 0 0 24 12.75 11.977 11.977 0 0 0 11.999.747zm3.654 19.104.182.65h5.326c.173-.204.353-.433.513-.65zm.385 1.377.18.65h3.563c.233-.198.485-.428.712-.65zm.383 1.377.182.648h1.203c.356-.204.685-.412 1.042-.648zz" }) + ] + } + ); +}); + +exports.default = SiCodeberg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.d.ts new file mode 100644 index 000000000..cb57700e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2185D0"; +declare const SiCodeberg: IconType; +export { SiCodeberg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.mjs new file mode 100644 index 000000000..2e11c42d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeberg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2185D0"; +const SiCodeberg = React.forwardRef(function SiCodeberg2({ title = "Codeberg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999.747A11.974 11.974 0 0 0 0 12.75c0 2.254.635 4.465 1.833 6.376L11.837 6.19c.072-.092.251-.092.323 0l4.178 5.402h-2.992l.065.239h3.113l.882 1.138h-3.674l.103.374h3.86l.777 1.003h-4.358l.135.483h4.593l.695.894h-5.038l.165.589h5.326l.609.785h-5.717l.182.65h6.038l.562.727h-6.397l.183.65h6.717A12.003 12.003 0 0 0 24 12.75 11.977 11.977 0 0 0 11.999.747zm3.654 19.104.182.65h5.326c.173-.204.353-.433.513-.65zm.385 1.377.18.65h3.563c.233-.198.485-.428.712-.65zm.383 1.377.182.648h1.203c.356-.204.685-.412 1.042-.648zz" }) + ] + } + ); +}); + +export { SiCodeberg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.cjs new file mode 100644 index 000000000..09ad37c36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41AD48"; +const SiCodeblocks = React__namespace.forwardRef(function SiCodeblocks2({ title = "Code::Blocks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.011 0v8.406H8.61V0zm15.39 0v8.406H24V0zM8.972.658l.012 7.869 2.54 2.43.007-5.564zm6.066 0-2.555 4.735.004 5.564 2.54-2.43zM.332 8.768l5.52 2.677 5.655-.006-2.773-2.67zm14.944 0L12.53 11.49l5.655-.09 5.498-2.631zm-9.323 3.855L.318 15.232h8.405l2.748-2.722zm6.565-.113 2.747 2.722h8.402l-5.586-2.609zm-1.006.533-2.54 2.43-.011 7.873 2.555-4.74zm.964 0-.008 5.564 2.559 4.74-.011-7.874zM0 15.598V24h8.598v-8.402zm15.39 0V24h8.598v-8.402z" }) + ] + } + ); +}); + +exports.default = SiCodeblocks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.d.ts new file mode 100644 index 000000000..a42ac3dee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41AD48"; +declare const SiCodeblocks: IconType; +export { SiCodeblocks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.mjs new file mode 100644 index 000000000..99e32f56c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeblocks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41AD48"; +const SiCodeblocks = React.forwardRef(function SiCodeblocks2({ title = "Code::Blocks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.011 0v8.406H8.61V0zm15.39 0v8.406H24V0zM8.972.658l.012 7.869 2.54 2.43.007-5.564zm6.066 0-2.555 4.735.004 5.564 2.54-2.43zM.332 8.768l5.52 2.677 5.655-.006-2.773-2.67zm14.944 0L12.53 11.49l5.655-.09 5.498-2.631zm-9.323 3.855L.318 15.232h8.405l2.748-2.722zm6.565-.113 2.747 2.722h8.402l-5.586-2.609zm-1.006.533-2.54 2.43-.011 7.873 2.555-4.74zm.964 0-.008 5.564 2.559 4.74-.011-7.874zM0 15.598V24h8.598v-8.402zm15.39 0V24h8.598v-8.402z" }) + ] + } + ); +}); + +export { SiCodeblocks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.cjs new file mode 100644 index 000000000..32704e142 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F4056"; +const SiCodecademy = React__namespace.forwardRef(function SiCodecademy2({ title = "Codecademy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.827 19.729h-5.595c-.094 0-.17.058-.17.172v1.515c0 .094.058.17.172.17h5.594c.096 0 .172-.044.172-.164v-1.515c0-.105-.057-.166-.173-.166v-.014zM16.463 2.463c.016.034.03.067.047.12v18.79c0 .06-.02.096-.037.114a.168.168 0 01-.135.06H.153c-.038 0-.075 0-.097-.02A.181.181 0 010 21.393V2.564c0-.076.04-.134.096-.15h16.242c.04 0 .096.017.115.034v.016zM1.818 19.573c0 .072.038.135.096.152h12.643c.058-.019.096-.076.096-.154V4.402c0-.073-.039-.134-.098-.15H1.915c-.056.02-.096.073-.096.15l-.003 15.17zm5.174-8.375c.65 0 1.014.177 1.396.62.058.074.153.093.23.034l1.034-.92c.075-.044.058-.164.02-.224-.635-.764-1.554-1.244-2.74-1.244-1.59 0-2.79.795-3.255 2.206-.165.495-.24 1.126-.24 1.98 0 .854.075 1.483.255 1.98.465 1.425 1.665 2.204 3.255 2.204 1.2 0 2.115-.48 2.745-1.216.045-.074.06-.165-.015-.226l-1.037-.915c-.073-.047-.163-.047-.224.027-.39.45-.795.69-1.454.69-.706 0-1.245-.345-1.47-1.035-.136-.39-.166-.87-.166-1.483 0-.615.045-1.068.18-1.47.24-.66.766-1.008 1.486-1.008z" }) + ] + } + ); +}); + +exports.default = SiCodecademy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.d.ts new file mode 100644 index 000000000..746c96a31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F4056"; +declare const SiCodecademy: IconType; +export { SiCodecademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.mjs new file mode 100644 index 000000000..ec5bc8db2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecademy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F4056"; +const SiCodecademy = React.forwardRef(function SiCodecademy2({ title = "Codecademy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.827 19.729h-5.595c-.094 0-.17.058-.17.172v1.515c0 .094.058.17.172.17h5.594c.096 0 .172-.044.172-.164v-1.515c0-.105-.057-.166-.173-.166v-.014zM16.463 2.463c.016.034.03.067.047.12v18.79c0 .06-.02.096-.037.114a.168.168 0 01-.135.06H.153c-.038 0-.075 0-.097-.02A.181.181 0 010 21.393V2.564c0-.076.04-.134.096-.15h16.242c.04 0 .096.017.115.034v.016zM1.818 19.573c0 .072.038.135.096.152h12.643c.058-.019.096-.076.096-.154V4.402c0-.073-.039-.134-.098-.15H1.915c-.056.02-.096.073-.096.15l-.003 15.17zm5.174-8.375c.65 0 1.014.177 1.396.62.058.074.153.093.23.034l1.034-.92c.075-.044.058-.164.02-.224-.635-.764-1.554-1.244-2.74-1.244-1.59 0-2.79.795-3.255 2.206-.165.495-.24 1.126-.24 1.98 0 .854.075 1.483.255 1.98.465 1.425 1.665 2.204 3.255 2.204 1.2 0 2.115-.48 2.745-1.216.045-.074.06-.165-.015-.226l-1.037-.915c-.073-.047-.163-.047-.224.027-.39.45-.795.69-1.454.69-.706 0-1.245-.345-1.47-1.035-.136-.39-.166-.87-.166-1.483 0-.615.045-1.068.18-1.47.24-.66.766-1.008 1.486-1.008z" }) + ] + } + ); +}); + +export { SiCodecademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.cjs new file mode 100644 index 000000000..8c2f9b4b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F6E05E"; +const SiCodeceptjs = React__namespace.forwardRef(function SiCodeceptjs2({ title = "CodeceptJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.3986.597c-1.424 0-1.5473.0048-1.59.0807-.0238.0475-1.0206 2.6485-2.212 5.7811-1.196 3.1326-2.1737 5.7005-2.1832 5.71-.0048.0047-1.0348-1.1534-2.2831-2.5726C5.1937 7.394 4.852 7.0236 4.8283 7.1138c-.0424.1883-.0657.3492-.095.5412l2.7815 3.6262c1.5283 1.9935 2.7956 3.631 2.8146 3.6358.0285.0095 6.474-13.9308 6.588-14.2393.0285-.076-.0664-.0807-1.5188-.0807zM7.6828 2.1692a8.7326 8.7326 0 0 0-.88.0463c-1.2483.1282-2.4871.5696-3.5218 1.2579-.5554.3654-1.5142 1.329-1.9034 1.9033-2.1311 3.161-1.7561 7.3758.8924 9.9816.6028.5933 1.2008 1.0158 2.041 1.4382 1.03.5221 2.0694.8259 3.4174 1.0157 1.0062.1377 2.9238.1092 4.1199-.0616l.1993-.0285v-.6692l-.1756.0284c-1.0727.1709-3.0994.1614-4.0962-.0143-2.601-.4604-4.5091-1.7609-5.577-3.8066-.9256-1.7704-1.049-4.0486-.3228-5.9947.375-1.0157.8781-1.7989 1.647-2.563.7974-.7974 1.5664-1.2769 2.5631-1.6091 1.3148-.4367 2.9475-.4699 4.4901-.095.2658.0618.489.114.4937.114.0284 0 .185-.3797.166-.3987-.0427-.038-1.0015-.2658-1.4903-.356a11.0808 11.0808 0 0 0-2.0628-.1887zm10.6834.792c-.0283-.0042.0274.0476.184.1846 2.1074 1.8321 3.3605 4.0108 3.8019 6.6118.1424.8449.1566 2.3922.0284 3.2275-.3654 2.3495-1.3859 4.3857-3.0471 6.0565-1.8559 1.87-4.101 2.9665-6.8112 3.3225-.8306.1091-2.5345.0712-3.37-.0712-.9777-.1662-1.9697-.4747-3.0139-.9256-.5743-.2515.432.3892 1.2863.8164 2.5298 1.2673 5.4679 1.5568 8.2588.8211.731-.1946 1.3527-.432 2.1311-.8116 3.4602-1.6993 5.7574-4.979 6.1513-8.7762.0665-.655.0333-1.9175-.0759-2.5915-.4746-3.0282-2.2213-5.7337-4.8176-7.4471-.2468-.1661-.5268-.337-.617-.3797-.046-.0223-.0762-.0357-.089-.0376zM16.271 8.1145c-.2641-.0026-.5068.0126-.6967.0482-.8544.1661-1.4382.674-1.609 1.4002-.1804.75.0427 1.4192.5837 1.7657.318.1993.6028.2942 1.462.4888.9018.2041 1.2103.3418 1.3907.6123.1044.1567.128.2421.1233.4794 0 .1709-.0332.3512-.0806.4367-.1092.2135-.413.4556-.6883.5553-.5363.1946-1.5473.185-2.3162-.019-.6598-.1756-.5886-.1993-.5886.1899 0 .2943.0143.3417.1092.4034.3845.2563 1.8986.3893 2.7387.2469.522-.0902 1.03-.3134 1.3242-.5744.1044-.0997.2611-.318.3465-.4889.1472-.2942.1567-.3464.1567-.8163 0-.451-.0143-.5221-.133-.769-.2658-.5458-.7309-.7879-2.0029-1.0584-.8686-.1804-1.234-.375-1.405-.7547-.223-.4936.0048-1.03.5364-1.2625.4841-.2089 1.533-.171 2.4017.0901l.2942.0902V8.438l-.2278-.076c-.4535-.15-1.1382-.2418-1.7192-.2475z" }) + ] + } + ); +}); + +exports.default = SiCodeceptjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.d.ts new file mode 100644 index 000000000..bcff3849b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F6E05E"; +declare const SiCodeceptjs: IconType; +export { SiCodeceptjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.mjs new file mode 100644 index 000000000..11a923a68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeceptjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F6E05E"; +const SiCodeceptjs = React.forwardRef(function SiCodeceptjs2({ title = "CodeceptJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.3986.597c-1.424 0-1.5473.0048-1.59.0807-.0238.0475-1.0206 2.6485-2.212 5.7811-1.196 3.1326-2.1737 5.7005-2.1832 5.71-.0048.0047-1.0348-1.1534-2.2831-2.5726C5.1937 7.394 4.852 7.0236 4.8283 7.1138c-.0424.1883-.0657.3492-.095.5412l2.7815 3.6262c1.5283 1.9935 2.7956 3.631 2.8146 3.6358.0285.0095 6.474-13.9308 6.588-14.2393.0285-.076-.0664-.0807-1.5188-.0807zM7.6828 2.1692a8.7326 8.7326 0 0 0-.88.0463c-1.2483.1282-2.4871.5696-3.5218 1.2579-.5554.3654-1.5142 1.329-1.9034 1.9033-2.1311 3.161-1.7561 7.3758.8924 9.9816.6028.5933 1.2008 1.0158 2.041 1.4382 1.03.5221 2.0694.8259 3.4174 1.0157 1.0062.1377 2.9238.1092 4.1199-.0616l.1993-.0285v-.6692l-.1756.0284c-1.0727.1709-3.0994.1614-4.0962-.0143-2.601-.4604-4.5091-1.7609-5.577-3.8066-.9256-1.7704-1.049-4.0486-.3228-5.9947.375-1.0157.8781-1.7989 1.647-2.563.7974-.7974 1.5664-1.2769 2.5631-1.6091 1.3148-.4367 2.9475-.4699 4.4901-.095.2658.0618.489.114.4937.114.0284 0 .185-.3797.166-.3987-.0427-.038-1.0015-.2658-1.4903-.356a11.0808 11.0808 0 0 0-2.0628-.1887zm10.6834.792c-.0283-.0042.0274.0476.184.1846 2.1074 1.8321 3.3605 4.0108 3.8019 6.6118.1424.8449.1566 2.3922.0284 3.2275-.3654 2.3495-1.3859 4.3857-3.0471 6.0565-1.8559 1.87-4.101 2.9665-6.8112 3.3225-.8306.1091-2.5345.0712-3.37-.0712-.9777-.1662-1.9697-.4747-3.0139-.9256-.5743-.2515.432.3892 1.2863.8164 2.5298 1.2673 5.4679 1.5568 8.2588.8211.731-.1946 1.3527-.432 2.1311-.8116 3.4602-1.6993 5.7574-4.979 6.1513-8.7762.0665-.655.0333-1.9175-.0759-2.5915-.4746-3.0282-2.2213-5.7337-4.8176-7.4471-.2468-.1661-.5268-.337-.617-.3797-.046-.0223-.0762-.0357-.089-.0376zM16.271 8.1145c-.2641-.0026-.5068.0126-.6967.0482-.8544.1661-1.4382.674-1.609 1.4002-.1804.75.0427 1.4192.5837 1.7657.318.1993.6028.2942 1.462.4888.9018.2041 1.2103.3418 1.3907.6123.1044.1567.128.2421.1233.4794 0 .1709-.0332.3512-.0806.4367-.1092.2135-.413.4556-.6883.5553-.5363.1946-1.5473.185-2.3162-.019-.6598-.1756-.5886-.1993-.5886.1899 0 .2943.0143.3417.1092.4034.3845.2563 1.8986.3893 2.7387.2469.522-.0902 1.03-.3134 1.3242-.5744.1044-.0997.2611-.318.3465-.4889.1472-.2942.1567-.3464.1567-.8163 0-.451-.0143-.5221-.133-.769-.2658-.5458-.7309-.7879-2.0029-1.0584-.8686-.1804-1.234-.375-1.405-.7547-.223-.4936.0048-1.03.5364-1.2625.4841-.2089 1.533-.171 2.4017.0901l.2942.0902V8.438l-.2278-.076c-.4535-.15-1.1382-.2418-1.7192-.2475z" }) + ] + } + ); +}); + +export { SiCodeceptjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.cjs new file mode 100644 index 000000000..ad772fa91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5B4638"; +const SiCodechef = React__namespace.forwardRef(function SiCodechef2({ title = "CodeChef", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.2574.0039c-.37.0101-.7353.041-1.1003.095C9.6164.153 9.0766.4236 8.482.694c-.757.3244-1.5147.6486-2.2176.7027-1.1896.3785-1.568.919-1.8925 1.3516 0 .054-.054.1079-.054.1079-.4325.865-.4873 1.73-.325 2.5952.1621.5407.3786 1.0282.5408 1.5148.3785 1.0274.7578 2.0007.92 3.1362.1622.3244.3235.7571.4316 1.1897.2704.8651.542 1.8383 1.353 2.5952l.0057-.0028c.0175.0183.0301.0387.0482.0568.0072-.0036.0141-.0063.0213-.0099l-.0213-.5849c.6489-.9733 1.5673-1.6221 2.865-1.8925.5195-.1093 1.081-.1497 1.6625-.1278a8.7733 8.7733 0 0 1 1.7988.2357c1.4599.3785 2.595 1.1358 2.6492 1.7846.0273.3549.0398.6952.0326 1.0364-.001.064-.0046.1285-.007.193l.1362.0682c.075-.0375.1424-.107.2059-.1902.0008-.001.002-.002.0028-.0028.0018-.0023.0039-.0061.0057-.0085.0396-.0536.0747-.1236.1107-.1931.0188-.0377.0372-.0866.0554-.1292.2048-.4622.362-1.1536.538-1.9635.0541-.2703.1092-.4864.1633-.7027.4326-.9733 1.0266-1.8382 1.6213-2.6492.9733-1.3518 1.8928-2.5962 1.7846-4.0561-1.784-3.4608-4.2718-4.0017-5.5695-4.272-.2163-.0541-.3233-.0539-.4856-.108-1.3382-.2433-2.4945-.3953-3.6046-.3648zm5.0428 14.3788a9.8602 9.8602 0 0 0-.0326-.9824c-.0541-.703-1.1892-1.46-2.7032-1.8386-.588-.1336-1.1764-.2142-1.7448-.2356-.539-.0137-1.0657.0248-1.5546.1277-1.2436.2704-2.2162.9193-2.811 1.8925l.0511 1.431c.6672-.3558 1.7326-.8747 3.139-.9994.0662-.0059.1368-.0059.2044-.0099.1177-.013.2667-.044.4444-.044 1.6075 0 3.2682.5336 4.8767 1.6483.039-.2744.0611-.549.071-.8234l.044.0227c.0028-.0622.0143-.1268.0156-.1888zM11.256.0578c.1239-.0034.2538.01.379.0114-.23-.0022-.4588.0026-.6871.0156.103-.0061.2046-.0242.308-.027zm.4983.0156c.6552.014 1.3255.0711 2.0387.1803-.6834-.0987-1.3646-.1671-2.0387-.1803zm-1.3147.0554c-.076.0087-.1527.0133-.2285.0241-.8168.1167-1.7742.7015-2.75 1.045.3545-.1323.7143-.2957 1.0747-.4501C9.0765.4774 9.6705.207 10.1571.1529c.0939-.0139.1886-.0133.2825-.0241zm-.2285.24c.1622 0 .3787-.0002.5409.0539-.1425-.0357-.2595-.026-.3706-.0142a1.174 1.174 0 0 1 .3166.0681c.5796 1.0012-.4264 5.2791-.6786 8.1492.1559 1.0276.3138 1.9963.4628 2.7201-.7029-1.7843-1.4067-4.921-1.5148-7.354-.054-.9733.001-1.8386.2172-2.4874C9.401.8557 9.7244.4228 10.2111.3687zm3.1361.271c-.811 2.1088-.9184 6.1092-.9725 7.3528-.054.5407-.0001 1.73.054 2.5952 0 .2163.054.4325.054.6488 0-.2163-.054-.3786-.054-.5948-.4326-3.2442-.974-7.1362.9185-10.002zm3.352.3777c-.2704 2.1628-1.4047 3.191-1.7832 5.2998-.1081 1.6762-.325 3.6222-.379 5.2984-.0541-1.6762-.0007-3.4601.2697-5.2444.2703-1.8384.8651-3.6776 1.8925-5.3538zm-10.381.433c-.3581.1194-.632.248-.8575.3805.2317-.1358.4996-.2666.8575-.3805zm.2101.1974c.2155.0025.4384.0734.6006.2357-.0067-.004-.0078-.0033-.0142-.0071.1331.0929.2666.2093.3932.3847-.2036.9673.2553 3.0317.0398 4.6694.0763 1.5485.0717 3.1804.849 4.4594-.9796-1.5107-1.176-3.4375-1.3218-5.236-.1128-1.0907-.2035-2.0969-.4642-2.9033-.144-.3047-.2684-.5745-.3833-.822-.0247-.0369-.0447-.0784-.071-.1135-.1082-.1082-.1619-.2696-.1619-.3777 0-.054.0539-.1618.108-.1618.054-.0541.1616-.0553.2157-.1094a1.013 1.013 0 0 1 .2101-.0184zm-1.3459.6133c-.0604.0201-.0923.041-.1405.061.1768-.034.3617.0339.5196.318-.1877.8916.4364 3.3685.4288 5.104.3124 1.8478.5496 3.8498 1.5716 5.1152C6.3723 11.5076 5.886 9.1286 5.5076 7.128 5.183 5.56 4.9125 4.2086 4.3718 3.776c-.054-.1081-.1079-.163-.1079-.2711 0-.1622-.0002-.3786.1079-.5949-.2772.6337-.4047 1.2673-.3706 1.901-.0445-.6487.0857-1.2905.3706-1.901 0-.054.054-.0538.054-.1079.012-.016.0314-.0349.044-.0511.0618-.0983.1308-.189.2257-.257.0557-.0615.0965-.1191.159-.1817-.0526.0555-.0872.1092-.1335.1647.0273-.018.0523-.0368.0838-.0525.1081-.1082.2154-.1633.3776-.1633zm-.3776.1633c-.0038.0075-.0076.0111-.0114.0184.0125-.0099.0242-.0208.037-.0298-.0074.0037-.0182.0077-.0256.0114zm14.7608 1.1343c-.0017.0052-.004.0104-.0057.0156.0378-.005.0751-.0173.1135-.0156-.0378-.0022-.0763.0103-.115.0199-.8634 2.6418-1.8874 5.2844-2.9118 7.9262a.0184.0184 0 0 1-.0015.0028c-.0874.4652-.234.8842-.5395 1.1898.4326-.4867.4854-1.1907.5395-2.0558.054-.811.0544-1.6761.487-2.5413 0-.0531.0012-.1058.0525-.159.0003-.0009.0012-.0019.0015-.0028.0973-.3524.202-.6885.3166-1.018.4183-1.2896 1.1396-3.1653 2.0131-3.3405.0163-.0052.034-.018.0497-.0213zM8.3726 16.2113l-.3238.1079c.1623.2163.2696.379.3777.433.1081.054.2168.108.379.108.0541 0 .1618 0 .2159-.054l.812-.2698c.0541 0 .1078-.054.1619-.054.1081 0 .1616 0 .2697.054l.2712.2698.2697-.054c-.1081-.1622-.2695-.3236-.3776-.3776-.1082-.0541-.2169-.1094-.379-.1094h-.108l-.866.3252h-.1618c-.1082 0-.2157 0-.2698-.054-.054-.054-.163-.1629-.2712-.3251zm-2.5953.541c-.2703.1621-.649.4324-1.1897.6487-.5407.2163-.9734.4325-1.1897.6488-.2163.2163-.3237.4326-.3237.6488 0 .1082.0537.1632.1618.2172.054.0541.1632.0539.2172.108.757.3244 1.5133.7019 2.2162 1.0803.1082.0541.2171.1632.2712.2173.054.054.1078.054.1618.054.1082 0 .2695-.0538.3777-.162.1081-.108.1632-.217.1632-.325 0-.1082-.055-.1618-.1632-.2158 0 0-.4328-.2165-1.1898-.541-.4866-.2162-.9179-.4326-1.1883-.5948.1623-.2704.486-.4865.9726-.7028.5407-.2163.9196-.4326 1.0818-.5948.054-.0541.054-.1078.054-.1619 0-.054-.0539-.1631-.108-.2172-.054-.054-.163-.1079-.2711-.1079zm11.247 0c-.054 0-.1618.0537-.2158.1078-.0541.1081-.1093.1632-.1093.2172v.054c.1622.1622.3797.2695.7041.3776.2704.054.5403.1632.8107.2172.3244.1082.5407.2693.6488.4856v.0553c0 .0541-.1088.1616-.3251.2698-.1082.054-.3245.2167-.5949.433-.2703.1622-.4326.3236-.5948.3776-.2163.1082-.3776.217-.4316.3252-.0541.054-.054.1077-.054.1618 0 .1081.0539.1077.108.2158.054.1081.1616.1093.2157.1093.054 0 .1078-.0554.1619-.0554.2703-.1622.6492-.3782 1.0818-.7567.4866-.3784.8655-.6484 1.0818-.8106.2163-.1082.3237-.2169.3237-.379 0-.0541.0002-.1618-.1079-.2159-.3785-.4325-.9185-.7022-1.5674-.9185-.1081-.0541-.2704-.1092-.5948-.1633-.1622-.054-.3249-.1079-.433-.1079zm-2.9743.8106c-.2704 0-.4866.055-.6488.2172-.2163.1622-.2699.4323-.2158.7567 0 .2703.1075.4865.2697.7027.1622.2163.3786.3252.5949.3252.1622 0 .2708-.0553.433-.1094.2703-.1622.379-.4319.379-.9185 0-.3785-.109-.6485-.2711-.8107-.1622-.1081-.3246-.1632-.541-.1632zm-4.4877.054c-.2704 0-.4866.055-.6488.2171-.2163.1622-.27.4323-.2158.7567 0 .2704.1075.4865.2697.7028s.3786.3251.5949.3251c.1622 0 .2708-.0552.433-.1093.2703-.1622.3776-.432.3776-.9186 0-.4325-.1075-.7025-.2697-.8106-.1622-.1082-.3247-.1633-.541-.1633zm0 .6501c.1622 0 .2711.1076.2711.2698 0 .1622-.163.2697-.2711.2697-.1622 0-.2698-.1075-.2698-.2697s.1076-.2698.2698-.2698zm4.3798.054c.1622 0 .2711.1075.2711.2697 0 .1082-.109.2698-.2711.2698-.1622 0-.2698-.1076-.2698-.2698 0-.1622.1076-.2697.2698-.2697zm-2.7032 2.1083l.1619.3237c.054.1081.1076.163.2158.2711.054.054.163.1619.2712.1619h.1078c.1082 0 .1618 0 .2158-.054.0541-.054.1632-.0538.2173-.1079l.1618-.1618c.054-.054.108-.1092.108-.1633.054-.054.0537-.1078.1078-.1618 0-.0541.054-.108.054-.108-.0541.1082-.1618.2156-.2158.3238-.1082.054-.1616.1632-.2698.1632-.1081.0541-.217.054-.3251.054s-.2157.0001-.2697-.054c-.1082 0-.1632-.0538-.2173-.1079l-.1618-.1632c-.054-.0541-.1078-.1618-.1619-.2158zm-.866 1.0278c-1.1355 0-1.8377 1.5136-3.4598.1619-.4326 2.6494 2.7583 2.866 4.11 1.7306.9192-.811.6475-1.9465-.6502-1.8925zm2.8664 0c-1.2977-.054-1.568 1.0815-.6488 1.8925 1.3518 1.1355 4.5412.9188 4.1087-1.7306-1.6221 1.3517-2.2703-.1619-3.4599-.1619z" }) + ] + } + ); +}); + +exports.default = SiCodechef; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.d.ts new file mode 100644 index 000000000..004aeabe3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5B4638"; +declare const SiCodechef: IconType; +export { SiCodechef as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.mjs new file mode 100644 index 000000000..1269c7591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodechef.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5B4638"; +const SiCodechef = React.forwardRef(function SiCodechef2({ title = "CodeChef", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.2574.0039c-.37.0101-.7353.041-1.1003.095C9.6164.153 9.0766.4236 8.482.694c-.757.3244-1.5147.6486-2.2176.7027-1.1896.3785-1.568.919-1.8925 1.3516 0 .054-.054.1079-.054.1079-.4325.865-.4873 1.73-.325 2.5952.1621.5407.3786 1.0282.5408 1.5148.3785 1.0274.7578 2.0007.92 3.1362.1622.3244.3235.7571.4316 1.1897.2704.8651.542 1.8383 1.353 2.5952l.0057-.0028c.0175.0183.0301.0387.0482.0568.0072-.0036.0141-.0063.0213-.0099l-.0213-.5849c.6489-.9733 1.5673-1.6221 2.865-1.8925.5195-.1093 1.081-.1497 1.6625-.1278a8.7733 8.7733 0 0 1 1.7988.2357c1.4599.3785 2.595 1.1358 2.6492 1.7846.0273.3549.0398.6952.0326 1.0364-.001.064-.0046.1285-.007.193l.1362.0682c.075-.0375.1424-.107.2059-.1902.0008-.001.002-.002.0028-.0028.0018-.0023.0039-.0061.0057-.0085.0396-.0536.0747-.1236.1107-.1931.0188-.0377.0372-.0866.0554-.1292.2048-.4622.362-1.1536.538-1.9635.0541-.2703.1092-.4864.1633-.7027.4326-.9733 1.0266-1.8382 1.6213-2.6492.9733-1.3518 1.8928-2.5962 1.7846-4.0561-1.784-3.4608-4.2718-4.0017-5.5695-4.272-.2163-.0541-.3233-.0539-.4856-.108-1.3382-.2433-2.4945-.3953-3.6046-.3648zm5.0428 14.3788a9.8602 9.8602 0 0 0-.0326-.9824c-.0541-.703-1.1892-1.46-2.7032-1.8386-.588-.1336-1.1764-.2142-1.7448-.2356-.539-.0137-1.0657.0248-1.5546.1277-1.2436.2704-2.2162.9193-2.811 1.8925l.0511 1.431c.6672-.3558 1.7326-.8747 3.139-.9994.0662-.0059.1368-.0059.2044-.0099.1177-.013.2667-.044.4444-.044 1.6075 0 3.2682.5336 4.8767 1.6483.039-.2744.0611-.549.071-.8234l.044.0227c.0028-.0622.0143-.1268.0156-.1888zM11.256.0578c.1239-.0034.2538.01.379.0114-.23-.0022-.4588.0026-.6871.0156.103-.0061.2046-.0242.308-.027zm.4983.0156c.6552.014 1.3255.0711 2.0387.1803-.6834-.0987-1.3646-.1671-2.0387-.1803zm-1.3147.0554c-.076.0087-.1527.0133-.2285.0241-.8168.1167-1.7742.7015-2.75 1.045.3545-.1323.7143-.2957 1.0747-.4501C9.0765.4774 9.6705.207 10.1571.1529c.0939-.0139.1886-.0133.2825-.0241zm-.2285.24c.1622 0 .3787-.0002.5409.0539-.1425-.0357-.2595-.026-.3706-.0142a1.174 1.174 0 0 1 .3166.0681c.5796 1.0012-.4264 5.2791-.6786 8.1492.1559 1.0276.3138 1.9963.4628 2.7201-.7029-1.7843-1.4067-4.921-1.5148-7.354-.054-.9733.001-1.8386.2172-2.4874C9.401.8557 9.7244.4228 10.2111.3687zm3.1361.271c-.811 2.1088-.9184 6.1092-.9725 7.3528-.054.5407-.0001 1.73.054 2.5952 0 .2163.054.4325.054.6488 0-.2163-.054-.3786-.054-.5948-.4326-3.2442-.974-7.1362.9185-10.002zm3.352.3777c-.2704 2.1628-1.4047 3.191-1.7832 5.2998-.1081 1.6762-.325 3.6222-.379 5.2984-.0541-1.6762-.0007-3.4601.2697-5.2444.2703-1.8384.8651-3.6776 1.8925-5.3538zm-10.381.433c-.3581.1194-.632.248-.8575.3805.2317-.1358.4996-.2666.8575-.3805zm.2101.1974c.2155.0025.4384.0734.6006.2357-.0067-.004-.0078-.0033-.0142-.0071.1331.0929.2666.2093.3932.3847-.2036.9673.2553 3.0317.0398 4.6694.0763 1.5485.0717 3.1804.849 4.4594-.9796-1.5107-1.176-3.4375-1.3218-5.236-.1128-1.0907-.2035-2.0969-.4642-2.9033-.144-.3047-.2684-.5745-.3833-.822-.0247-.0369-.0447-.0784-.071-.1135-.1082-.1082-.1619-.2696-.1619-.3777 0-.054.0539-.1618.108-.1618.054-.0541.1616-.0553.2157-.1094a1.013 1.013 0 0 1 .2101-.0184zm-1.3459.6133c-.0604.0201-.0923.041-.1405.061.1768-.034.3617.0339.5196.318-.1877.8916.4364 3.3685.4288 5.104.3124 1.8478.5496 3.8498 1.5716 5.1152C6.3723 11.5076 5.886 9.1286 5.5076 7.128 5.183 5.56 4.9125 4.2086 4.3718 3.776c-.054-.1081-.1079-.163-.1079-.2711 0-.1622-.0002-.3786.1079-.5949-.2772.6337-.4047 1.2673-.3706 1.901-.0445-.6487.0857-1.2905.3706-1.901 0-.054.054-.0538.054-.1079.012-.016.0314-.0349.044-.0511.0618-.0983.1308-.189.2257-.257.0557-.0615.0965-.1191.159-.1817-.0526.0555-.0872.1092-.1335.1647.0273-.018.0523-.0368.0838-.0525.1081-.1082.2154-.1633.3776-.1633zm-.3776.1633c-.0038.0075-.0076.0111-.0114.0184.0125-.0099.0242-.0208.037-.0298-.0074.0037-.0182.0077-.0256.0114zm14.7608 1.1343c-.0017.0052-.004.0104-.0057.0156.0378-.005.0751-.0173.1135-.0156-.0378-.0022-.0763.0103-.115.0199-.8634 2.6418-1.8874 5.2844-2.9118 7.9262a.0184.0184 0 0 1-.0015.0028c-.0874.4652-.234.8842-.5395 1.1898.4326-.4867.4854-1.1907.5395-2.0558.054-.811.0544-1.6761.487-2.5413 0-.0531.0012-.1058.0525-.159.0003-.0009.0012-.0019.0015-.0028.0973-.3524.202-.6885.3166-1.018.4183-1.2896 1.1396-3.1653 2.0131-3.3405.0163-.0052.034-.018.0497-.0213zM8.3726 16.2113l-.3238.1079c.1623.2163.2696.379.3777.433.1081.054.2168.108.379.108.0541 0 .1618 0 .2159-.054l.812-.2698c.0541 0 .1078-.054.1619-.054.1081 0 .1616 0 .2697.054l.2712.2698.2697-.054c-.1081-.1622-.2695-.3236-.3776-.3776-.1082-.0541-.2169-.1094-.379-.1094h-.108l-.866.3252h-.1618c-.1082 0-.2157 0-.2698-.054-.054-.054-.163-.1629-.2712-.3251zm-2.5953.541c-.2703.1621-.649.4324-1.1897.6487-.5407.2163-.9734.4325-1.1897.6488-.2163.2163-.3237.4326-.3237.6488 0 .1082.0537.1632.1618.2172.054.0541.1632.0539.2172.108.757.3244 1.5133.7019 2.2162 1.0803.1082.0541.2171.1632.2712.2173.054.054.1078.054.1618.054.1082 0 .2695-.0538.3777-.162.1081-.108.1632-.217.1632-.325 0-.1082-.055-.1618-.1632-.2158 0 0-.4328-.2165-1.1898-.541-.4866-.2162-.9179-.4326-1.1883-.5948.1623-.2704.486-.4865.9726-.7028.5407-.2163.9196-.4326 1.0818-.5948.054-.0541.054-.1078.054-.1619 0-.054-.0539-.1631-.108-.2172-.054-.054-.163-.1079-.2711-.1079zm11.247 0c-.054 0-.1618.0537-.2158.1078-.0541.1081-.1093.1632-.1093.2172v.054c.1622.1622.3797.2695.7041.3776.2704.054.5403.1632.8107.2172.3244.1082.5407.2693.6488.4856v.0553c0 .0541-.1088.1616-.3251.2698-.1082.054-.3245.2167-.5949.433-.2703.1622-.4326.3236-.5948.3776-.2163.1082-.3776.217-.4316.3252-.0541.054-.054.1077-.054.1618 0 .1081.0539.1077.108.2158.054.1081.1616.1093.2157.1093.054 0 .1078-.0554.1619-.0554.2703-.1622.6492-.3782 1.0818-.7567.4866-.3784.8655-.6484 1.0818-.8106.2163-.1082.3237-.2169.3237-.379 0-.0541.0002-.1618-.1079-.2159-.3785-.4325-.9185-.7022-1.5674-.9185-.1081-.0541-.2704-.1092-.5948-.1633-.1622-.054-.3249-.1079-.433-.1079zm-2.9743.8106c-.2704 0-.4866.055-.6488.2172-.2163.1622-.2699.4323-.2158.7567 0 .2703.1075.4865.2697.7027.1622.2163.3786.3252.5949.3252.1622 0 .2708-.0553.433-.1094.2703-.1622.379-.4319.379-.9185 0-.3785-.109-.6485-.2711-.8107-.1622-.1081-.3246-.1632-.541-.1632zm-4.4877.054c-.2704 0-.4866.055-.6488.2171-.2163.1622-.27.4323-.2158.7567 0 .2704.1075.4865.2697.7028s.3786.3251.5949.3251c.1622 0 .2708-.0552.433-.1093.2703-.1622.3776-.432.3776-.9186 0-.4325-.1075-.7025-.2697-.8106-.1622-.1082-.3247-.1633-.541-.1633zm0 .6501c.1622 0 .2711.1076.2711.2698 0 .1622-.163.2697-.2711.2697-.1622 0-.2698-.1075-.2698-.2697s.1076-.2698.2698-.2698zm4.3798.054c.1622 0 .2711.1075.2711.2697 0 .1082-.109.2698-.2711.2698-.1622 0-.2698-.1076-.2698-.2698 0-.1622.1076-.2697.2698-.2697zm-2.7032 2.1083l.1619.3237c.054.1081.1076.163.2158.2711.054.054.163.1619.2712.1619h.1078c.1082 0 .1618 0 .2158-.054.0541-.054.1632-.0538.2173-.1079l.1618-.1618c.054-.054.108-.1092.108-.1633.054-.054.0537-.1078.1078-.1618 0-.0541.054-.108.054-.108-.0541.1082-.1618.2156-.2158.3238-.1082.054-.1616.1632-.2698.1632-.1081.0541-.217.054-.3251.054s-.2157.0001-.2697-.054c-.1082 0-.1632-.0538-.2173-.1079l-.1618-.1632c-.054-.0541-.1078-.1618-.1619-.2158zm-.866 1.0278c-1.1355 0-1.8377 1.5136-3.4598.1619-.4326 2.6494 2.7583 2.866 4.11 1.7306.9192-.811.6475-1.9465-.6502-1.8925zm2.8664 0c-1.2977-.054-1.568 1.0815-.6488 1.8925 1.3518 1.1355 4.5412.9188 4.1087-1.7306-1.6221 1.3517-2.2703-.1619-3.4599-.1619z" }) + ] + } + ); +}); + +export { SiCodechef as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.cjs new file mode 100644 index 000000000..968cea72e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCodeclimate = React__namespace.forwardRef(function SiCodeclimate2({ title = "Code Climate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.125 5.272l-4.511 4.475 2.684 2.659 1.827-1.813 5.19 5.145L24 13.079zM8.13 8.265L0 16.066l2.772 2.662 5.357-5.145 5.357 5.145 2.772-2.662z" }) + ] + } + ); +}); + +exports.default = SiCodeclimate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.d.ts new file mode 100644 index 000000000..d47af33fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCodeclimate: IconType; +export { SiCodeclimate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.mjs new file mode 100644 index 000000000..291675ca3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeclimate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCodeclimate = React.forwardRef(function SiCodeclimate2({ title = "Code Climate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.125 5.272l-4.511 4.475 2.684 2.659 1.827-1.813 5.19 5.145L24 13.079zM8.13 8.265L0 16.066l2.772 2.662 5.357-5.145 5.357 5.145 2.772-2.662z" }) + ] + } + ); +}); + +export { SiCodeclimate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.cjs new file mode 100644 index 000000000..ac494b154 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F01F7A"; +const SiCodecov = React__namespace.forwardRef(function SiCodecov2({ title = "Codecov", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.006.481C5.391.486.005 5.831 0 12.399v.03l2.042 1.19.028-.018a5.82 5.82 0 013.308-1.02c.37 0 .733.034 1.085.1l-.036-.006a5.69 5.69 0 012.874 1.43l-.004-.002.35.326.198-.434c.192-.42.414-.814.66-1.173.1-.144.208-.29.332-.446l.205-.257-.252-.211a8.33 8.33 0 00-3.836-1.807l-.052-.008a8.565 8.565 0 00-4.08.251l.06-.016c.972-4.256 4.714-7.223 9.133-7.226a9.31 9.31 0 016.6 2.713 9.196 9.196 0 012.508 4.498 8.385 8.385 0 00-2.498-.379h-.154c-.356.006-.7.033-1.036.078l.045-.005-.042.006a8.103 8.103 0 00-.39.06c-.057.01-.114.022-.17.033a8.102 8.102 0 00-.392.09l-.138.034a9.21 9.21 0 00-.483.144l-.03.01c-.354.12-.708.268-1.05.44l-.027.013c-.152.076-.305.16-.47.256l-.035.022a8.216 8.216 0 00-2.108 1.8l-.011.014-.075.092a8.345 8.345 0 00-.378.503c-.088.13-.177.269-.288.452l-.06.104a8.985 8.985 0 00-.234.432l-.016.029c-.17.34-.317.698-.44 1.063l-.017.053a8.052 8.052 0 00-.41 2.716v-.007.112a12 12 0 00.023.431l-.002-.037a11.676 11.676 0 00.042.412l.005.042.013.103c.018.127.038.252.062.378.241 1.266.845 2.532 1.745 3.66l.041.051.042-.05c.359-.424 1.249-1.77 1.325-2.577v-.015l-.006-.013a5.56 5.56 0 01-.64-2.595c0-3.016 2.37-5.521 5.396-5.702l.2-.007a5.93 5.93 0 013.47 1.025l.027.019L24 12.416v-.03a11.77 11.77 0 00-3.51-8.423A11.962 11.962 0 0012.007.48z" }) + ] + } + ); +}); + +exports.default = SiCodecov; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.d.ts new file mode 100644 index 000000000..909bb1de9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F01F7A"; +declare const SiCodecov: IconType; +export { SiCodecov as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.mjs new file mode 100644 index 000000000..7f1e66c28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecov.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F01F7A"; +const SiCodecov = React.forwardRef(function SiCodecov2({ title = "Codecov", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.006.481C5.391.486.005 5.831 0 12.399v.03l2.042 1.19.028-.018a5.82 5.82 0 013.308-1.02c.37 0 .733.034 1.085.1l-.036-.006a5.69 5.69 0 012.874 1.43l-.004-.002.35.326.198-.434c.192-.42.414-.814.66-1.173.1-.144.208-.29.332-.446l.205-.257-.252-.211a8.33 8.33 0 00-3.836-1.807l-.052-.008a8.565 8.565 0 00-4.08.251l.06-.016c.972-4.256 4.714-7.223 9.133-7.226a9.31 9.31 0 016.6 2.713 9.196 9.196 0 012.508 4.498 8.385 8.385 0 00-2.498-.379h-.154c-.356.006-.7.033-1.036.078l.045-.005-.042.006a8.103 8.103 0 00-.39.06c-.057.01-.114.022-.17.033a8.102 8.102 0 00-.392.09l-.138.034a9.21 9.21 0 00-.483.144l-.03.01c-.354.12-.708.268-1.05.44l-.027.013c-.152.076-.305.16-.47.256l-.035.022a8.216 8.216 0 00-2.108 1.8l-.011.014-.075.092a8.345 8.345 0 00-.378.503c-.088.13-.177.269-.288.452l-.06.104a8.985 8.985 0 00-.234.432l-.016.029c-.17.34-.317.698-.44 1.063l-.017.053a8.052 8.052 0 00-.41 2.716v-.007.112a12 12 0 00.023.431l-.002-.037a11.676 11.676 0 00.042.412l.005.042.013.103c.018.127.038.252.062.378.241 1.266.845 2.532 1.745 3.66l.041.051.042-.05c.359-.424 1.249-1.77 1.325-2.577v-.015l-.006-.013a5.56 5.56 0 01-.64-2.595c0-3.016 2.37-5.521 5.396-5.702l.2-.007a5.93 5.93 0 013.47 1.025l.027.019L24 12.416v-.03a11.77 11.77 0 00-3.51-8.423A11.962 11.962 0 0012.007.48z" }) + ] + } + ); +}); + +export { SiCodecov as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.cjs new file mode 100644 index 000000000..37bcd4229 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#171920"; +const SiCodecrafters = React__namespace.forwardRef(function SiCodecrafters2({ title = "CodeCrafters", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.825 17.527a.111.111 0 0 1-.107-.142l3.05-10.837a.111.111 0 0 1 .108-.081H14.2c.074 0 .127.07.107.141l-3.063 10.838a.111.111 0 0 1-.107.08H9.825Zm-2.146-2.732a.11.11 0 0 1-.079-.033l-2.667-2.704a.111.111 0 0 1 0-.156L7.6 9.211a.111.111 0 0 1 .08-.033h1.702c.1 0 .149.12.079.19l-2.534 2.534a.111.111 0 0 0 0 .157l2.535 2.546c.07.07.02.19-.079.19H7.68Zm6.954 0a.111.111 0 0 1-.079-.19l2.525-2.546a.111.111 0 0 0 0-.157l-2.524-2.535a.111.111 0 0 1 .079-.19h1.692c.03 0 .058.013.078.034l2.68 2.69a.111.111 0 0 1 0 .157l-2.68 2.704a.111.111 0 0 1-.078.033h-1.693ZM12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12Zm0-22.667C6.118 1.333 1.333 6.118 1.333 12S6.118 22.667 12 22.667 22.667 17.882 22.667 12 17.882 1.333 12 1.333Z" }) + ] + } + ); +}); + +exports.default = SiCodecrafters; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.d.ts new file mode 100644 index 000000000..f6fc7d9d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#171920"; +declare const SiCodecrafters: IconType; +export { SiCodecrafters as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.mjs new file mode 100644 index 000000000..295144a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodecrafters.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#171920"; +const SiCodecrafters = React.forwardRef(function SiCodecrafters2({ title = "CodeCrafters", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.825 17.527a.111.111 0 0 1-.107-.142l3.05-10.837a.111.111 0 0 1 .108-.081H14.2c.074 0 .127.07.107.141l-3.063 10.838a.111.111 0 0 1-.107.08H9.825Zm-2.146-2.732a.11.11 0 0 1-.079-.033l-2.667-2.704a.111.111 0 0 1 0-.156L7.6 9.211a.111.111 0 0 1 .08-.033h1.702c.1 0 .149.12.079.19l-2.534 2.534a.111.111 0 0 0 0 .157l2.535 2.546c.07.07.02.19-.079.19H7.68Zm6.954 0a.111.111 0 0 1-.079-.19l2.525-2.546a.111.111 0 0 0 0-.157l-2.524-2.535a.111.111 0 0 1 .079-.19h1.692c.03 0 .058.013.078.034l2.68 2.69a.111.111 0 0 1 0 .157l-2.68 2.704a.111.111 0 0 1-.078.033h-1.693ZM12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12Zm0-22.667C6.118 1.333 1.333 6.118 1.333 12S6.118 22.667 12 22.667 22.667 17.882 22.667 12 17.882 1.333 12 1.333Z" }) + ] + } + ); +}); + +export { SiCodecrafters as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.cjs new file mode 100644 index 000000000..604ba134f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F44A6A"; +const SiCodefactor = React__namespace.forwardRef(function SiCodefactor2({ title = "CodeFactor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.375 2.65a2.64 2.64 0 01-2.62 2.65 2.64 2.64 0 01-2.63-2.65A2.64 2.64 0 012.755 0a2.64 2.64 0 012.62 2.65zm0 9.35a2.64 2.64 0 01-2.62 2.65A2.64 2.64 0 01.125 12a2.64 2.64 0 012.63-2.65A2.64 2.64 0 015.375 12zm0 9.35A2.64 2.64 0 012.755 24a2.64 2.64 0 01-2.63-2.65 2.64 2.64 0 012.63-2.65 2.64 2.64 0 012.62 2.65zM11.315 0a2.64 2.64 0 00-2.61 2.65 2.64 2.64 0 002.6 2.65h9.94a2.64 2.64 0 002.63-2.65A2.64 2.64 0 0021.255 0zm-2.61 12a2.64 2.64 0 012.62-2.65h5.68a2.64 2.64 0 012.6 2.65 2.64 2.64 0 01-2.6 2.65h-5.7a2.64 2.64 0 01-2.6-2.65z" }) + ] + } + ); +}); + +exports.default = SiCodefactor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.d.ts new file mode 100644 index 000000000..c02c931b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F44A6A"; +declare const SiCodefactor: IconType; +export { SiCodefactor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.mjs new file mode 100644 index 000000000..cb2c094f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefactor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F44A6A"; +const SiCodefactor = React.forwardRef(function SiCodefactor2({ title = "CodeFactor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.375 2.65a2.64 2.64 0 01-2.62 2.65 2.64 2.64 0 01-2.63-2.65A2.64 2.64 0 012.755 0a2.64 2.64 0 012.62 2.65zm0 9.35a2.64 2.64 0 01-2.62 2.65A2.64 2.64 0 01.125 12a2.64 2.64 0 012.63-2.65A2.64 2.64 0 015.375 12zm0 9.35A2.64 2.64 0 012.755 24a2.64 2.64 0 01-2.63-2.65 2.64 2.64 0 012.63-2.65 2.64 2.64 0 012.62 2.65zM11.315 0a2.64 2.64 0 00-2.61 2.65 2.64 2.64 0 002.6 2.65h9.94a2.64 2.64 0 002.63-2.65A2.64 2.64 0 0021.255 0zm-2.61 12a2.64 2.64 0 012.62-2.65h5.68a2.64 2.64 0 012.6 2.65 2.64 2.64 0 01-2.6 2.65h-5.7a2.64 2.64 0 01-2.6-2.65z" }) + ] + } + ); +}); + +export { SiCodefactor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.cjs new file mode 100644 index 000000000..f9739dc62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F8ACB"; +const SiCodeforces = React__namespace.forwardRef(function SiCodeforces2({ title = "Codeforces", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 7.5C5.328 7.5 6 8.172 6 9v10.5c0 .828-.672 1.5-1.5 1.5h-3C.673 21 0 20.328 0 19.5V9c0-.828.673-1.5 1.5-1.5h3zm9-4.5c.828 0 1.5.672 1.5 1.5v15c0 .828-.672 1.5-1.5 1.5h-3c-.827 0-1.5-.672-1.5-1.5v-15c0-.828.673-1.5 1.5-1.5h3zm9 7.5c.828 0 1.5.672 1.5 1.5v7.5c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5V12c0-.828.672-1.5 1.5-1.5h3z" }) + ] + } + ); +}); + +exports.default = SiCodeforces; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.d.ts new file mode 100644 index 000000000..a766adc94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F8ACB"; +declare const SiCodeforces: IconType; +export { SiCodeforces as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.mjs new file mode 100644 index 000000000..d02125156 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeforces.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F8ACB"; +const SiCodeforces = React.forwardRef(function SiCodeforces2({ title = "Codeforces", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.5 7.5C5.328 7.5 6 8.172 6 9v10.5c0 .828-.672 1.5-1.5 1.5h-3C.673 21 0 20.328 0 19.5V9c0-.828.673-1.5 1.5-1.5h3zm9-4.5c.828 0 1.5.672 1.5 1.5v15c0 .828-.672 1.5-1.5 1.5h-3c-.827 0-1.5-.672-1.5-1.5v-15c0-.828.673-1.5 1.5-1.5h3zm9 7.5c.828 0 1.5.672 1.5 1.5v7.5c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5V12c0-.828.672-1.5 1.5-1.5h3z" }) + ] + } + ); +}); + +export { SiCodeforces as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.cjs new file mode 100644 index 000000000..e66c52a5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#08B1AB"; +const SiCodefresh = React__namespace.forwardRef(function SiCodefresh2({ title = "Codefresh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2.84c1.402 2.71 1.445 5.241 2.977 10.4 1.855 5.341 8.703 5.701 9.21 5.711.46.726 1.513 1.704 3.926 2.21l.268-1.272c-2.082-.436-2.844-1.239-3.106-1.68l-.005.006c.087-.484 1.523-5.377-1.323-9.352C7.182 3.583 0 2.84 0 2.84zm24 .84c-3.898.611-4.293-.92-11.473 3.093a11.879 11.879 0 0 1 2.625 10.05c3.723-1.486 5.166-3.976 5.606-6.466 0 0 1.27-4.716 3.242-6.677zM12.527 6.773l-.002-.002v.004l.002-.002zM2.643 5.22s5.422 1.426 8.543 11.543c-2.945-.889-4.203-3.796-4.63-5.168h.006a15.863 15.863 0 0 0-3.92-6.375z" }) + ] + } + ); +}); + +exports.default = SiCodefresh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.d.ts new file mode 100644 index 000000000..2a9e6d3a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#08B1AB"; +declare const SiCodefresh: IconType; +export { SiCodefresh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.mjs new file mode 100644 index 000000000..63f8b8925 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodefresh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#08B1AB"; +const SiCodefresh = React.forwardRef(function SiCodefresh2({ title = "Codefresh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2.84c1.402 2.71 1.445 5.241 2.977 10.4 1.855 5.341 8.703 5.701 9.21 5.711.46.726 1.513 1.704 3.926 2.21l.268-1.272c-2.082-.436-2.844-1.239-3.106-1.68l-.005.006c.087-.484 1.523-5.377-1.323-9.352C7.182 3.583 0 2.84 0 2.84zm24 .84c-3.898.611-4.293-.92-11.473 3.093a11.879 11.879 0 0 1 2.625 10.05c3.723-1.486 5.166-3.976 5.606-6.466 0 0 1.27-4.716 3.242-6.677zM12.527 6.773l-.002-.002v.004l.002-.002zM2.643 5.22s5.422 1.426 8.543 11.543c-2.945-.889-4.203-3.796-4.63-5.168h.006a15.863 15.863 0 0 0-3.92-6.375z" }) + ] + } + ); +}); + +export { SiCodefresh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.cjs new file mode 100644 index 000000000..0e9f87188 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF4223"; +const SiCodeigniter = React__namespace.forwardRef(function SiCodeigniter2({ title = "CodeIgniter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.466 0c.88 1.423-.28 3.306-1.207 4.358-.899 1.02-1.992 1.873-2.985 2.8-1.066.996-2.091 2.044-2.967 3.213-1.753 2.339-2.827 5.28-2.038 8.199.788 2.916 3.314 4.772 6.167 5.429-1.44-.622-2.786-2.203-2.79-3.82-.003-1.765 1.115-3.262 2.505-4.246-.167.632-.258 1.21.155 1.774a1.68 1.68 0 0 0 1.696.642c1.487-.326 1.556-1.96.674-2.914-.872-.943-1.715-2.009-1.384-3.377.167-.685.588-1.328 1.121-1.787-.41 1.078.755 2.14 1.523 2.67 1.332.918 2.793 1.612 4.017 2.688 1.288 1.132 2.24 2.661 2.047 4.435-.208 1.923-1.736 3.26-3.45 3.936 3.622-.8 7.365-3.61 7.44-7.627.093-3.032-1.903-5.717-5.158-7.384.19.48.074.697-.058.924-.55.944-2.082 1.152-2.835.184-1.205-1.548.025-3.216.197-4.855.215-2.055-1.073-4.049-2.67-5.242z" }) + ] + } + ); +}); + +exports.default = SiCodeigniter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.d.ts new file mode 100644 index 000000000..84f74deaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF4223"; +declare const SiCodeigniter: IconType; +export { SiCodeigniter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.mjs new file mode 100644 index 000000000..91d305a18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeigniter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF4223"; +const SiCodeigniter = React.forwardRef(function SiCodeigniter2({ title = "CodeIgniter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.466 0c.88 1.423-.28 3.306-1.207 4.358-.899 1.02-1.992 1.873-2.985 2.8-1.066.996-2.091 2.044-2.967 3.213-1.753 2.339-2.827 5.28-2.038 8.199.788 2.916 3.314 4.772 6.167 5.429-1.44-.622-2.786-2.203-2.79-3.82-.003-1.765 1.115-3.262 2.505-4.246-.167.632-.258 1.21.155 1.774a1.68 1.68 0 0 0 1.696.642c1.487-.326 1.556-1.96.674-2.914-.872-.943-1.715-2.009-1.384-3.377.167-.685.588-1.328 1.121-1.787-.41 1.078.755 2.14 1.523 2.67 1.332.918 2.793 1.612 4.017 2.688 1.288 1.132 2.24 2.661 2.047 4.435-.208 1.923-1.736 3.26-3.45 3.936 3.622-.8 7.365-3.61 7.44-7.627.093-3.032-1.903-5.717-5.158-7.384.19.48.074.697-.058.924-.55.944-2.082 1.152-2.835.184-1.205-1.548.025-3.216.197-4.855.215-2.055-1.073-4.049-2.67-5.242z" }) + ] + } + ); +}); + +export { SiCodeigniter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.cjs new file mode 100644 index 000000000..46499d8ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F45E3F"; +const SiCodemagic = React__namespace.forwardRef(function SiCodemagic2({ title = "Codemagic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.833 10.117L16.937 7.24c-.07-.035-.106-.106-.142-.177l-2.912-5.896c-.498-1.03-1.776-1.457-2.807-.96a2.09 2.09 0 0 0-.959.96L7.205 7.063a.81.81 0 0 1-.142.177l-5.896 2.913c-1.03.497-1.457 1.776-.96 2.806a2.1 2.1 0 0 0 .96.96l5.896 2.876c.07.036.106.107.142.142l2.948 5.896c.497 1.03 1.776 1.457 2.806.96a2.09 2.09 0 0 0 .959-.96l2.877-5.896c.036-.07.107-.142.142-.142l5.896-2.912c1.03-.498 1.457-1.776.96-2.806-.178-.427-.533-.746-.96-.96zm-4.368.427l-2.735 2.38c-.533.497-.924 1.136-1.066 1.847l-.71 3.551c-.036.143-.178.25-.32.214-.071 0-.107-.036-.142-.107l-2.38-2.735c-.497-.533-1.137-.923-1.847-1.066l-3.552-.71c-.142-.035-.249-.178-.213-.32 0-.07.035-.106.106-.142l2.735-2.38c.533-.497.924-1.136 1.066-1.847l.71-3.551c.036-.143.178-.25.32-.214a.27.27 0 0 1 .142.071l2.38 2.735c.497.533 1.137.924 1.847 1.066l3.552.71c.142.036.249.178.213.32a.38.38 0 0 1-.106.178z" }) + ] + } + ); +}); + +exports.default = SiCodemagic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.d.ts new file mode 100644 index 000000000..bc9cb01c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F45E3F"; +declare const SiCodemagic: IconType; +export { SiCodemagic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.mjs new file mode 100644 index 000000000..6f7c93e5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemagic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F45E3F"; +const SiCodemagic = React.forwardRef(function SiCodemagic2({ title = "Codemagic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.833 10.117L16.937 7.24c-.07-.035-.106-.106-.142-.177l-2.912-5.896c-.498-1.03-1.776-1.457-2.807-.96a2.09 2.09 0 0 0-.959.96L7.205 7.063a.81.81 0 0 1-.142.177l-5.896 2.913c-1.03.497-1.457 1.776-.96 2.806a2.1 2.1 0 0 0 .96.96l5.896 2.876c.07.036.106.107.142.142l2.948 5.896c.497 1.03 1.776 1.457 2.806.96a2.09 2.09 0 0 0 .959-.96l2.877-5.896c.036-.07.107-.142.142-.142l5.896-2.912c1.03-.498 1.457-1.776.96-2.806-.178-.427-.533-.746-.96-.96zm-4.368.427l-2.735 2.38c-.533.497-.924 1.136-1.066 1.847l-.71 3.551c-.036.143-.178.25-.32.214-.071 0-.107-.036-.142-.107l-2.38-2.735c-.497-.533-1.137-.923-1.847-1.066l-3.552-.71c-.142-.035-.249-.178-.213-.32 0-.07.035-.106.106-.142l2.735-2.38c.533-.497.924-1.136 1.066-1.847l.71-3.551c.036-.143.178-.25.32-.214a.27.27 0 0 1 .142.071l2.38 2.735c.497.533 1.137.924 1.847 1.066l3.552.71c.142.036.249.178.213.32a.38.38 0 0 1-.106.178z" }) + ] + } + ); +}); + +export { SiCodemagic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.cjs new file mode 100644 index 000000000..cc6af53a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003648"; +const SiCodementor = React__namespace.forwardRef(function SiCodementor2({ title = "Codementor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.487 14.887c.39 0 .706.314.706.7a.703.703 0 0 1-.706.7H5.632a.703.703 0 0 1-.707-.7c0-.386.317-.7.707-.7zm.69-2.593c.39 0 .706.315.706.7a.703.703 0 0 1-.707.7H5.648a.703.703 0 0 1-.706-.7c0-.386.316-.7.706-.7zm3.864-3.46a2.109 2.109 0 0 1 2.118-2.099 2.109 2.109 0 0 1 2.118 2.1 2.115 2.115 0 0 1-2.118 2.103 2.116 2.116 0 0 1-2.118-2.104Zm6.259 6.559c.1.619-.378 1.18-1.005 1.178h-6.272a1.016 1.016 0 0 1-1.005-1.178c.315-1.942 1.391-3.509 2.796-4.13a2.768 2.768 0 0 0 2.69 0c1.405.621 2.482 2.19 2.796 4.13zm-8.712-4.29c-8.38 0-.147-.002-4.941-.002a.703.703 0 0 1-.707-.7c0-.386.317-.7.707-.7l4.941.001c.39 0 .707.314.706.701a.702.702 0 0 1-.706.7zm-4.94-2.594a.702.702 0 0 1-.707-.7c0-.386.317-.7.707-.7h4.94c.389 0 .705.313.705.7a.703.703 0 0 1-.706.699zm7.809 10.117a.658.658 0 0 0 .66-.654h7.06v-12.6H2.824v12.599h7.059c0 .361.295.654.66.654zM24 17.972v.957c0 .605-.496 1.096-1.106 1.096H1.106c-.61 0-1.106-.49-1.106-1.096v-.957h1.413V5.357c0-.763.623-1.382 1.394-1.382h18.387c.77 0 1.394.619 1.394 1.382v12.615Z" }) + ] + } + ); +}); + +exports.default = SiCodementor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.d.ts new file mode 100644 index 000000000..d790ad199 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003648"; +declare const SiCodementor: IconType; +export { SiCodementor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.mjs new file mode 100644 index 000000000..071672774 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodementor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003648"; +const SiCodementor = React.forwardRef(function SiCodementor2({ title = "Codementor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.487 14.887c.39 0 .706.314.706.7a.703.703 0 0 1-.706.7H5.632a.703.703 0 0 1-.707-.7c0-.386.317-.7.707-.7zm.69-2.593c.39 0 .706.315.706.7a.703.703 0 0 1-.707.7H5.648a.703.703 0 0 1-.706-.7c0-.386.316-.7.706-.7zm3.864-3.46a2.109 2.109 0 0 1 2.118-2.099 2.109 2.109 0 0 1 2.118 2.1 2.115 2.115 0 0 1-2.118 2.103 2.116 2.116 0 0 1-2.118-2.104Zm6.259 6.559c.1.619-.378 1.18-1.005 1.178h-6.272a1.016 1.016 0 0 1-1.005-1.178c.315-1.942 1.391-3.509 2.796-4.13a2.768 2.768 0 0 0 2.69 0c1.405.621 2.482 2.19 2.796 4.13zm-8.712-4.29c-8.38 0-.147-.002-4.941-.002a.703.703 0 0 1-.707-.7c0-.386.317-.7.707-.7l4.941.001c.39 0 .707.314.706.701a.702.702 0 0 1-.706.7zm-4.94-2.594a.702.702 0 0 1-.707-.7c0-.386.317-.7.707-.7h4.94c.389 0 .705.313.705.7a.703.703 0 0 1-.706.699zm7.809 10.117a.658.658 0 0 0 .66-.654h7.06v-12.6H2.824v12.599h7.059c0 .361.295.654.66.654zM24 17.972v.957c0 .605-.496 1.096-1.106 1.096H1.106c-.61 0-1.106-.49-1.106-1.096v-.957h1.413V5.357c0-.763.623-1.382 1.394-1.382h18.387c.77 0 1.394.619 1.394 1.382v12.615Z" }) + ] + } + ); +}); + +export { SiCodementor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.cjs new file mode 100644 index 000000000..b725b2dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D30707"; +const SiCodemirror = React__namespace.forwardRef(function SiCodemirror2({ title = "CodeMirror", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.313.858c1.044-.002 2.016.364 2.966 1.178.799.685 1.167 1.52 1.453 2.159.455 1.018.321 1.112-.18 1.398a1.27 1.27 0 0 1-.26.108c.12 1.502.962 1.637 1.232 2.165.176.34.262.752-.553.881-.819.13-.552.76-1.763.815-.864.041-1.372-.257-1.665-.568a4.639 4.639 0 0 1-.623 2.478c.21.104.67.306 1.305.422.881.16 2.155-.522 2.644-.522.153 0 .313-.022.49-.025.374-.007.827.072 1.47.622l.034-.075c-.376-.515-.212-1.885.49-3.535.811-1.904 1.803-3.534 2.606-3.099v-.004c.725.392.36 1.916-.45 3.82-.697 1.636-1.377 2.939-2.083 3.043l-.079.241c.834.662.667.978.441 1.52-.262.619.114 1.175-1.222 1.403a.969.969 0 0 1-.434-.025c-.098.232-.177.412-.177.412s-.13.357-.478.232c-.357-.13-.263-.388-.263-.388l.344-.625c-.214-.231-.327-.492-.297-.586.133-.294.455-.031.423-.356-.619.066-1.206-.294-1.336-.326-.13-.031-.066-.325-1.109.326-.414.258-.794.517-1.18.762.153.784 1.057 2.016 1.74 2.106 2.152-.098 2.152 1.34 1.991 1.37-.325-.618-.846-.489-1.532-.097s.13.325.423.552c-1.437.608-2.848-.537-3.247-.901-.568.903-1.673 1.543-2.438 1.885-.944.423-1.65.983-.944 1.336.588.294.913-.455 1.763-.588.846-.13 1.599.196 1.665.686-.356-.196-.619-.196-.619-.196s.294.196.325.52c.032.326-.03.162-.227.162-.49 0-.552-.424-.98-.357-1.077.098-1.14.552-1.727.62-.588.062-1.567-.26-1.434-1.012.13-.748 1.14-1.273 2.088-1.665.944-.392 2.382-1.63 2.186-2.743-.096-.546-.351-.768-.585-.852-.683.27-1.4.45-2.13.531-2.1.257-2.804-.742-2.983-1.09-1.302.933-3.153 1.275-3.842 2.422.294-1.63 1.175-2.155 3.232-3.099 2.052-.942 2.478-2.891 2.48-2.901v-.006.006c-.002.03-.101 1.773-1.247 3.03.39.746.984 1.125 2.36.984 1.567-.16 3.828-1.52 5.419-2.316 1.109-.556 1.598.49 2.382.553 1.09.09.196 1.238.196 1.238s.819-.13.98-.423c.16-.294-.099-.49.16-.749.262-.262.227-.556-.145-.83-.33-.243-.537-.568-1.614-1.058-1.078-.49-1.994.454-3.233.748-.932.22-1.77-.183-2.129-.399-.956 1.024-2.141 1.222-2.141 1.222v-.004c1.175-.686 1.908-1.931 2.225-3.009.234-.795.07-1.655-.033-2.052-1.51-.03-2.627-1.478-2.627-1.478h.004s1.924 1.238 3.49.717c1.564-.521 1.305-3.554 1.337-3.393.015.078.262.692.3 1.436.367-.044 1.705-.25 1.424-.887-.884-1.99-2.486-3.235-5.312-3.374.518 2.805-1.864 2.038-5.616 3.961C1.687 7.243.653 10.448 1.107 14.17c.277 2.245 1.718 4.716 4.387 6.323a2.58 2.58 0 0 0 1.647-.834c.815-.913.356-2.35 1.696-2.872a4.109 4.109 0 0 1 1.472-.296c.491-.003.781.1.781.1s-2.382.325-2.578 1.697c-.196 1.371-.52 1.99-1.042 2.413-.238.186-.51.324-.802.405 1.564.7 3.462 1.127 5.703 1.127 7.15 0 10-5.673 10.305-7.193.34-1.681 1.324-2.08 1.324-.286 0 3.428-5.136 8.388-11.601 8.388-6.465 0-10.054-3.495-11.523-6.3C-.594 14.032-.2 9.758 1.954 7.18c2.154-2.582 5.081-3.166 7.2-3.851 2.017-.653 1.91-1.86 1.895-1.975-.33-.015-.662-.017-.993-.004.796-.318 1.543-.491 2.257-.492zm9.299 4.492c-.358.006-1.19 1.31-1.863 2.994-.705 1.77-.909 3.314-.69 3.436.122.067 1.168-1.203 1.873-2.97.706-1.77 1.054-3.326.729-3.452a.126.126 0 0 0-.05-.008zm-6.66.502c-.01.779-.283 1.647-1.284 2.178-.08.043-.158.08-.236.112a3.9 3.9 0 0 1 .076.42c.27.151.672.34 1.112.413.784.129 1.34-.396 1.568-.588.227-.192.572-.047.732-.016.16.036.486-.062.259-.16-.231-.098-.49-.44-.686-.862-.208-.833-.5-1.19-.653-1.33-.248.122-.579.029-.8-.12-.03-.015-.06-.03-.088-.047zm6.396.166h.014l-.036.014c-.006.004-.01.01-.015.016.016.07.007.146.007.225a.806.806 0 0 1-.03.24c.006.015 0 .04 0 .059-.019.024-.004.044-.009.064.03.029.074.063.054.102-.01.025-.04.035-.069.044-.014.07-.034.147-.049.226 0 .02 0 .049-.004.068-.015.05-.03.093-.045.147-.01.044 0 .128-.048.137-.02.05-.03.089-.054.138-.01.004-.02-.005-.03 0v.001a1.04 1.04 0 0 1-.03.18c0 .02-.004.054-.004.078-.025.034-.01.059-.02.088.035.04.079.079.054.137-.014.04-.054.05-.088.069-.03.093-.059.206-.088.308-.005.03-.01.064-.02.094-.024.063-.054.127-.073.2-.02.06-.015.167-.078.177-.03.063-.045.112-.079.176-.015.01-.024-.005-.039 0-.015.02-.02.049-.034.069-.01.01-.025.01-.035.024-.02.03-.014.073-.034.118a.318.318 0 0 0-.054.063l-.005.01c-.023.062-.034.136-.062.196.023-.197.045-.426.063-.662.009-.17.022-.382.037-.599a6.43 6.43 0 0 0-.01-.89l.031-.063.064-.123c.014-.151.026-.256.03-.24a.95.95 0 0 1 .023.14c.035-.061.071-.124.113-.193.04-.069.074-.142.118-.196.03-.04.078-.117.113-.19.01-.025.01-.05.048-.055.035-.044.064-.098.103-.137.01-.01.025-.015.035-.02.01-.01.014-.024.029-.034.024-.02.069-.039.098-.078.005-.01.01-.02.02-.03.012-.015.03-.045.05-.068l-.001-.01.017-.006a.062.062 0 0 1 .022-.014zm-.993 1.453c-.057.724-.1 1.45-.128 2.175a1.87 1.87 0 0 0-.045.095c-.049.117-.122.254-.171.391l-.015.079c-.02.054-.049.107-.064.161-.03.084-.068.23-.147.309-.004.01-.024.02-.034.03-.01.014-.005.034-.02.053l-.017.011.117-1.412c.006-.26.033-.515.07-.746l-.003-.032c.015-.083.025-.147.049-.24l.01-.03c.078-.384.164-.645.164-.645l-.032.308c.012-.028.025-.056.04-.084.014-.03.038-.054.053-.088.005-.015.01-.04.015-.059.046-.095.102-.184.158-.276zm-.599 1.579c-.073.505-.127 1.15-.06 1.744-.006.011-.01.023-.018.034-.025.024-.06.039-.084.068-.014.02-.024.05-.044.074a.98.98 0 0 1-.068.078l-.088.128a.212.212 0 0 1-.098.088c-.02.01-.05.005-.074.01-.014-.02 0-.05 0-.074 0-.01-.01-.024-.01-.034 0-.03-.004-.084 0-.113 0-.03.025-.054.035-.098.005-.034 0-.073 0-.112 0-.015.005-.035.005-.06 0-.029 0-.043.004-.083a.598.598 0 0 0-.004-.132c.02-.103.029-.186.058-.308.01-.054.035-.152.06-.216.019-.063.043-.127.063-.196.02-.068.044-.137.068-.205.015-.044.04-.084.06-.133.009-.024.009-.053.019-.083.02-.059.044-.122.073-.176l.083-.162zm-6.268 6.006c-.13.074-.263.146-.4.215.283.203.905.778.65 1.775a2.183 2.183 0 0 1-.038.132c.525.729 1.273 1.112 1.657 1.168.42.063.239-.164.176-.391-.066-.228.392-.294.65-.455.26-.164.13-.423-.716-.294-.762.12-1.833-1.545-1.979-2.15Z" }) + ] + } + ); +}); + +exports.default = SiCodemirror; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.d.ts new file mode 100644 index 000000000..01f3e11c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D30707"; +declare const SiCodemirror: IconType; +export { SiCodemirror as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.mjs new file mode 100644 index 000000000..7e7bc9c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodemirror.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D30707"; +const SiCodemirror = React.forwardRef(function SiCodemirror2({ title = "CodeMirror", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.313.858c1.044-.002 2.016.364 2.966 1.178.799.685 1.167 1.52 1.453 2.159.455 1.018.321 1.112-.18 1.398a1.27 1.27 0 0 1-.26.108c.12 1.502.962 1.637 1.232 2.165.176.34.262.752-.553.881-.819.13-.552.76-1.763.815-.864.041-1.372-.257-1.665-.568a4.639 4.639 0 0 1-.623 2.478c.21.104.67.306 1.305.422.881.16 2.155-.522 2.644-.522.153 0 .313-.022.49-.025.374-.007.827.072 1.47.622l.034-.075c-.376-.515-.212-1.885.49-3.535.811-1.904 1.803-3.534 2.606-3.099v-.004c.725.392.36 1.916-.45 3.82-.697 1.636-1.377 2.939-2.083 3.043l-.079.241c.834.662.667.978.441 1.52-.262.619.114 1.175-1.222 1.403a.969.969 0 0 1-.434-.025c-.098.232-.177.412-.177.412s-.13.357-.478.232c-.357-.13-.263-.388-.263-.388l.344-.625c-.214-.231-.327-.492-.297-.586.133-.294.455-.031.423-.356-.619.066-1.206-.294-1.336-.326-.13-.031-.066-.325-1.109.326-.414.258-.794.517-1.18.762.153.784 1.057 2.016 1.74 2.106 2.152-.098 2.152 1.34 1.991 1.37-.325-.618-.846-.489-1.532-.097s.13.325.423.552c-1.437.608-2.848-.537-3.247-.901-.568.903-1.673 1.543-2.438 1.885-.944.423-1.65.983-.944 1.336.588.294.913-.455 1.763-.588.846-.13 1.599.196 1.665.686-.356-.196-.619-.196-.619-.196s.294.196.325.52c.032.326-.03.162-.227.162-.49 0-.552-.424-.98-.357-1.077.098-1.14.552-1.727.62-.588.062-1.567-.26-1.434-1.012.13-.748 1.14-1.273 2.088-1.665.944-.392 2.382-1.63 2.186-2.743-.096-.546-.351-.768-.585-.852-.683.27-1.4.45-2.13.531-2.1.257-2.804-.742-2.983-1.09-1.302.933-3.153 1.275-3.842 2.422.294-1.63 1.175-2.155 3.232-3.099 2.052-.942 2.478-2.891 2.48-2.901v-.006.006c-.002.03-.101 1.773-1.247 3.03.39.746.984 1.125 2.36.984 1.567-.16 3.828-1.52 5.419-2.316 1.109-.556 1.598.49 2.382.553 1.09.09.196 1.238.196 1.238s.819-.13.98-.423c.16-.294-.099-.49.16-.749.262-.262.227-.556-.145-.83-.33-.243-.537-.568-1.614-1.058-1.078-.49-1.994.454-3.233.748-.932.22-1.77-.183-2.129-.399-.956 1.024-2.141 1.222-2.141 1.222v-.004c1.175-.686 1.908-1.931 2.225-3.009.234-.795.07-1.655-.033-2.052-1.51-.03-2.627-1.478-2.627-1.478h.004s1.924 1.238 3.49.717c1.564-.521 1.305-3.554 1.337-3.393.015.078.262.692.3 1.436.367-.044 1.705-.25 1.424-.887-.884-1.99-2.486-3.235-5.312-3.374.518 2.805-1.864 2.038-5.616 3.961C1.687 7.243.653 10.448 1.107 14.17c.277 2.245 1.718 4.716 4.387 6.323a2.58 2.58 0 0 0 1.647-.834c.815-.913.356-2.35 1.696-2.872a4.109 4.109 0 0 1 1.472-.296c.491-.003.781.1.781.1s-2.382.325-2.578 1.697c-.196 1.371-.52 1.99-1.042 2.413-.238.186-.51.324-.802.405 1.564.7 3.462 1.127 5.703 1.127 7.15 0 10-5.673 10.305-7.193.34-1.681 1.324-2.08 1.324-.286 0 3.428-5.136 8.388-11.601 8.388-6.465 0-10.054-3.495-11.523-6.3C-.594 14.032-.2 9.758 1.954 7.18c2.154-2.582 5.081-3.166 7.2-3.851 2.017-.653 1.91-1.86 1.895-1.975-.33-.015-.662-.017-.993-.004.796-.318 1.543-.491 2.257-.492zm9.299 4.492c-.358.006-1.19 1.31-1.863 2.994-.705 1.77-.909 3.314-.69 3.436.122.067 1.168-1.203 1.873-2.97.706-1.77 1.054-3.326.729-3.452a.126.126 0 0 0-.05-.008zm-6.66.502c-.01.779-.283 1.647-1.284 2.178-.08.043-.158.08-.236.112a3.9 3.9 0 0 1 .076.42c.27.151.672.34 1.112.413.784.129 1.34-.396 1.568-.588.227-.192.572-.047.732-.016.16.036.486-.062.259-.16-.231-.098-.49-.44-.686-.862-.208-.833-.5-1.19-.653-1.33-.248.122-.579.029-.8-.12-.03-.015-.06-.03-.088-.047zm6.396.166h.014l-.036.014c-.006.004-.01.01-.015.016.016.07.007.146.007.225a.806.806 0 0 1-.03.24c.006.015 0 .04 0 .059-.019.024-.004.044-.009.064.03.029.074.063.054.102-.01.025-.04.035-.069.044-.014.07-.034.147-.049.226 0 .02 0 .049-.004.068-.015.05-.03.093-.045.147-.01.044 0 .128-.048.137-.02.05-.03.089-.054.138-.01.004-.02-.005-.03 0v.001a1.04 1.04 0 0 1-.03.18c0 .02-.004.054-.004.078-.025.034-.01.059-.02.088.035.04.079.079.054.137-.014.04-.054.05-.088.069-.03.093-.059.206-.088.308-.005.03-.01.064-.02.094-.024.063-.054.127-.073.2-.02.06-.015.167-.078.177-.03.063-.045.112-.079.176-.015.01-.024-.005-.039 0-.015.02-.02.049-.034.069-.01.01-.025.01-.035.024-.02.03-.014.073-.034.118a.318.318 0 0 0-.054.063l-.005.01c-.023.062-.034.136-.062.196.023-.197.045-.426.063-.662.009-.17.022-.382.037-.599a6.43 6.43 0 0 0-.01-.89l.031-.063.064-.123c.014-.151.026-.256.03-.24a.95.95 0 0 1 .023.14c.035-.061.071-.124.113-.193.04-.069.074-.142.118-.196.03-.04.078-.117.113-.19.01-.025.01-.05.048-.055.035-.044.064-.098.103-.137.01-.01.025-.015.035-.02.01-.01.014-.024.029-.034.024-.02.069-.039.098-.078.005-.01.01-.02.02-.03.012-.015.03-.045.05-.068l-.001-.01.017-.006a.062.062 0 0 1 .022-.014zm-.993 1.453c-.057.724-.1 1.45-.128 2.175a1.87 1.87 0 0 0-.045.095c-.049.117-.122.254-.171.391l-.015.079c-.02.054-.049.107-.064.161-.03.084-.068.23-.147.309-.004.01-.024.02-.034.03-.01.014-.005.034-.02.053l-.017.011.117-1.412c.006-.26.033-.515.07-.746l-.003-.032c.015-.083.025-.147.049-.24l.01-.03c.078-.384.164-.645.164-.645l-.032.308c.012-.028.025-.056.04-.084.014-.03.038-.054.053-.088.005-.015.01-.04.015-.059.046-.095.102-.184.158-.276zm-.599 1.579c-.073.505-.127 1.15-.06 1.744-.006.011-.01.023-.018.034-.025.024-.06.039-.084.068-.014.02-.024.05-.044.074a.98.98 0 0 1-.068.078l-.088.128a.212.212 0 0 1-.098.088c-.02.01-.05.005-.074.01-.014-.02 0-.05 0-.074 0-.01-.01-.024-.01-.034 0-.03-.004-.084 0-.113 0-.03.025-.054.035-.098.005-.034 0-.073 0-.112 0-.015.005-.035.005-.06 0-.029 0-.043.004-.083a.598.598 0 0 0-.004-.132c.02-.103.029-.186.058-.308.01-.054.035-.152.06-.216.019-.063.043-.127.063-.196.02-.068.044-.137.068-.205.015-.044.04-.084.06-.133.009-.024.009-.053.019-.083.02-.059.044-.122.073-.176l.083-.162zm-6.268 6.006c-.13.074-.263.146-.4.215.283.203.905.778.65 1.775a2.183 2.183 0 0 1-.038.132c.525.729 1.273 1.112 1.657 1.168.42.063.239-.164.176-.391-.066-.228.392-.294.65-.455.26-.164.13-.423-.716-.294-.762.12-1.833-1.545-1.979-2.15Z" }) + ] + } + ); +}); + +export { SiCodemirror as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.cjs new file mode 100644 index 000000000..6f0425af4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9013FE"; +const SiCodenewbie = React__namespace.forwardRef(function SiCodenewbie2({ title = "CodeNewbie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.071 0A12.023 12.023 0 0 0 2.31 5.011c-2.913 4.075-2.879 9.774.068 13.821.094.13.196.254.292.367.27.306.543.59.782.82.18.165.386.345.615.517.416.337.866.63 1.343.873-.429-.2-.834-.401-1.177-.58-.075-.036-.139-.077-.207-.112-.22-.11-.422-.228-.616-.339a5.47 5.47 0 0 1-.747-.527c-.153 1.044-.754 1.895-1.792 2-.975.096-.954 1.383 0 1.5 2.647.33 5.45.648 8.22.648 1.68.014 3.359-.128 5.013-.426.38-.098.758-.182 1.079-.27 5.512-1.53 9.055-6.856 8.64-12.487a.683.683 0 0 0 0-.11c-.61-4.85-3.896-9-8.697-10.301A11.676 11.676 0 0 0 12.07 0zm-.108 3.025a.677.677 0 0 1 .396.14 11.07 11.07 0 0 1 1.86 1.677 16.66 16.66 0 0 1 2.874-.246h.432c.95.027.962 1.5.027 1.5h-.443c-.618 0-1.235.039-1.847.117a16.68 16.68 0 0 1 1.765 3.486c.947-.194 1.91-.303 2.877-.326h.02c.95 0 .935 1.482-.02 1.501-.802.023-1.6.11-2.387.264a26.43 26.43 0 0 1 .893 4.221c.057.479-.285.715-.66.715a.83.83 0 0 1-.846-.715 29.483 29.483 0 0 0-.23-1.411 23.662 23.662 0 0 0-.635-2.463 19.676 19.676 0 0 0-.505-1.418 15.706 15.706 0 0 0-1.93-3.577c-.263.069-.519.125-.782.2a15.29 15.29 0 0 0-1.805.616 20.446 20.446 0 0 1 1.798 3.791c.626-.3 1.27-.562 1.93-.782l.713 1.35a15.46 15.46 0 0 0-2.18.872 20.74 20.74 0 0 1 .782 5.25.7.7 0 0 1-.74.726.723.723 0 0 1-.76-.727v-.228a18.878 18.878 0 0 0-.638-4.303 15.612 15.612 0 0 0-.449-1.473A18.893 18.893 0 0 0 9.674 7.95a7.71 7.71 0 0 0-.616.36c-.92.548-1.762 1.22-2.502 1.995a.685.685 0 0 1-.503.232c-.563 0-1.073-.754-.563-1.29A13.44 13.44 0 0 1 8.514 6.88c.096-.062.2-.117.304-.173-.221-.312-.46-.612-.712-.899a.832.832 0 0 0-.07-.09c-.485-.554.023-1.306.57-1.306a.652.652 0 0 1 .496.248c.38.442.74.899 1.079 1.376l.013.007a14.556 14.556 0 0 1 1.923-.7c.13-.043.262-.08.396-.109a6.949 6.949 0 0 0-.85-.727.402.402 0 0 0-.063-.048c-.646-.463-.243-1.434.363-1.434zm-1.386 9.299l.55 1.44a16.386 16.386 0 0 0-2.656 2.157c-.159.13-.338.218-.5.215-.575 0-1.088-.752-.56-1.28a18.44 18.44 0 0 1 3.166-2.532Z" }) + ] + } + ); +}); + +exports.default = SiCodenewbie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.d.ts new file mode 100644 index 000000000..2d9a61ec4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9013FE"; +declare const SiCodenewbie: IconType; +export { SiCodenewbie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.mjs new file mode 100644 index 000000000..c78e0350f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodenewbie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9013FE"; +const SiCodenewbie = React.forwardRef(function SiCodenewbie2({ title = "CodeNewbie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.071 0A12.023 12.023 0 0 0 2.31 5.011c-2.913 4.075-2.879 9.774.068 13.821.094.13.196.254.292.367.27.306.543.59.782.82.18.165.386.345.615.517.416.337.866.63 1.343.873-.429-.2-.834-.401-1.177-.58-.075-.036-.139-.077-.207-.112-.22-.11-.422-.228-.616-.339a5.47 5.47 0 0 1-.747-.527c-.153 1.044-.754 1.895-1.792 2-.975.096-.954 1.383 0 1.5 2.647.33 5.45.648 8.22.648 1.68.014 3.359-.128 5.013-.426.38-.098.758-.182 1.079-.27 5.512-1.53 9.055-6.856 8.64-12.487a.683.683 0 0 0 0-.11c-.61-4.85-3.896-9-8.697-10.301A11.676 11.676 0 0 0 12.07 0zm-.108 3.025a.677.677 0 0 1 .396.14 11.07 11.07 0 0 1 1.86 1.677 16.66 16.66 0 0 1 2.874-.246h.432c.95.027.962 1.5.027 1.5h-.443c-.618 0-1.235.039-1.847.117a16.68 16.68 0 0 1 1.765 3.486c.947-.194 1.91-.303 2.877-.326h.02c.95 0 .935 1.482-.02 1.501-.802.023-1.6.11-2.387.264a26.43 26.43 0 0 1 .893 4.221c.057.479-.285.715-.66.715a.83.83 0 0 1-.846-.715 29.483 29.483 0 0 0-.23-1.411 23.662 23.662 0 0 0-.635-2.463 19.676 19.676 0 0 0-.505-1.418 15.706 15.706 0 0 0-1.93-3.577c-.263.069-.519.125-.782.2a15.29 15.29 0 0 0-1.805.616 20.446 20.446 0 0 1 1.798 3.791c.626-.3 1.27-.562 1.93-.782l.713 1.35a15.46 15.46 0 0 0-2.18.872 20.74 20.74 0 0 1 .782 5.25.7.7 0 0 1-.74.726.723.723 0 0 1-.76-.727v-.228a18.878 18.878 0 0 0-.638-4.303 15.612 15.612 0 0 0-.449-1.473A18.893 18.893 0 0 0 9.674 7.95a7.71 7.71 0 0 0-.616.36c-.92.548-1.762 1.22-2.502 1.995a.685.685 0 0 1-.503.232c-.563 0-1.073-.754-.563-1.29A13.44 13.44 0 0 1 8.514 6.88c.096-.062.2-.117.304-.173-.221-.312-.46-.612-.712-.899a.832.832 0 0 0-.07-.09c-.485-.554.023-1.306.57-1.306a.652.652 0 0 1 .496.248c.38.442.74.899 1.079 1.376l.013.007a14.556 14.556 0 0 1 1.923-.7c.13-.043.262-.08.396-.109a6.949 6.949 0 0 0-.85-.727.402.402 0 0 0-.063-.048c-.646-.463-.243-1.434.363-1.434zm-1.386 9.299l.55 1.44a16.386 16.386 0 0 0-2.656 2.157c-.159.13-.338.218-.5.215-.575 0-1.088-.752-.56-1.28a18.44 18.44 0 0 1 3.166-2.532Z" }) + ] + } + ); +}); + +export { SiCodenewbie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.cjs new file mode 100644 index 000000000..f121ffcb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9900"; +const SiCodeproject = React__namespace.forwardRef(function SiCodeproject2({ title = "CodeProject", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.644 21.576c-.837-.038-2.143.467-2.43.209-.378-.34.28-1.882.531-2.19.172-.204.452-.523.605-.663.594-.552.967-1.32.964-2.177-.004-.941-.281-1.278.659-.532.324.258.768.59 1.335.854 1.14.524-1.32-1.68-1.788-2.102-.788-.698-1.045-1.08-.609-1.353.346-.217.672-.46.977-.723 1.195-1.036 2.047-2.607 1.878-4.897-.15-2.091-4.09-7.979-5.14-8.002-.851-.018-2.58 2.107-3.527 3.256-1.028 1.247-2.637 3.408-2.958 4.677a4.726 4.726 0 0 0-.135 1.181c0 1.44.75 2.784 1.898 3.744.703.586 1.48 1.038.237 2.31-.74.76-2.433 2.363-1.452 1.91.572-.265 1-.614 1.34-.855.71-.504.99-.669.833-.03-.034.133-.028.274-.028.41 0 .893.37 1.69.95 2.278.15.154.586.486.833.7.586.506 1.196 1.864.816 2.202-.287.259-1.593-.246-2.426-.208-.837.037-2.276.566-2.239 1.563.037.998 3.17.851 3.9.858 1.645.012 1.089-.643 1.645-.631.555.016 0 .611 1.85.621.73.004 3.678.15 3.715-.847.042-.998-1.4-1.525-2.234-1.563zm-5.502 1.789c-.665.281-1.536.244-1.764-.15-.226-.398 1.138-.717 1.498-.772.359-.057 1.138-.132 1.422.396.332.613-.495.241-1.156.526zM8.257 9.099c0-.348.028-.685.103-1.007.254-1.088 1.467-2.977 2.272-4.042.744-.984 1.761-2.88 2.43-2.863.82.02 4.274 5.173 4.395 6.96.127 1.961-.535 3.305-1.47 4.193-.807.764-1.783 1.367-2.939 1.367-2.31 0-4.791-2.098-4.791-4.608zm2.129 7.714c0-1.216.994-2.204 2.221-2.204a2.21 2.21 0 0 1 2.219 2.204c0 1.218-.99 2.201-2.219 2.201a2.208 2.208 0 0 1-2.221-2.201zm1.927 4.986c-.237 0-.46-.905-.463-1.145-.007-.356.038-.755.474-.755s.47.398.473.755c.005.33-.248 1.145-.484 1.145zm3.954 1.415c-.226.395-1.1.432-1.765.15-.66-.284-1.487.087-1.155-.526.284-.527 1.063-.452 1.423-.396.358.055 1.727.375 1.497.772zM15.081 5.857c-.456 0-.85.31-1.172.775-.158.23-.45.41-.826-.23-.35-.593-.92-.922-1.508-.922-1.178 0-2.135 1.413-2.135 3.156 0 1.74.957 3.153 2.135 3.153.737 0 1.37-.557 1.769-1.39.154-.324.386-.263.566-.02.336.457.716.776 1.172.776.92 0 1.663-1.187 1.663-2.646-.001-1.466-.744-2.652-1.664-2.652zm-3.506 4.987c-.826 0-1.498-.99-1.498-2.21 0-1.226.672-2.216 1.498-2.216s1.498.99 1.498 2.217c0 1.218-.672 2.21-1.498 2.21zm3.506-.483c-.641 0-1.162-.83-1.162-1.856 0-1.028.52-1.857 1.162-1.857.644 0 1.167.829 1.167 1.857 0 1.026-.522 1.856-1.167 1.856zm.471-1.905c0 .481-.189.876-.419.876-.23 0-.418-.395-.418-.876 0-.488.188-.882.418-.882.23 0 .42.393.42.882zm-2.414 8.978a.418.418 0 0 1-.836 0c0-.229.189-.413.418-.413.228 0 .418.185.418.413zM5.57 17.36c-.165 0-1.688.02-2.163.227-.474.21.284.508.928.544.322.02.22.26.076.453-1.155 1.58-.265 1.263.513.565.192-.17.265.057.285.265.018.206.51 1.75.665-.208.063-.81.113-1.241.077-1.526-.038-.282-.193-.32-.381-.32zm12.858 0c.161 0 1.687.02 2.163.227.474.21-.284.508-.932.544-.32.02-.217.26-.076.453 1.158 1.58.268 1.263-.51.565-.192-.17-.265.057-.285.265-.021.206-.516 1.75-.665-.208-.064-.81-.113-1.241-.076-1.526.04-.282.19-.32.381-.32zm-6.254-8.812c0 .607-.235 1.101-.524 1.101-.288 0-.521-.494-.521-1.1 0-.608.233-1.101.52-1.101.289 0 .525.493.525 1.1zm3.377-.091c0 .481-.189.876-.419.876-.23 0-.418-.395-.418-.876 0-.488.188-.882.418-.882.23 0 .42.393.42.882Z" }) + ] + } + ); +}); + +exports.default = SiCodeproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.d.ts new file mode 100644 index 000000000..7c9b367e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9900"; +declare const SiCodeproject: IconType; +export { SiCodeproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.mjs new file mode 100644 index 000000000..bb32cae50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9900"; +const SiCodeproject = React.forwardRef(function SiCodeproject2({ title = "CodeProject", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.644 21.576c-.837-.038-2.143.467-2.43.209-.378-.34.28-1.882.531-2.19.172-.204.452-.523.605-.663.594-.552.967-1.32.964-2.177-.004-.941-.281-1.278.659-.532.324.258.768.59 1.335.854 1.14.524-1.32-1.68-1.788-2.102-.788-.698-1.045-1.08-.609-1.353.346-.217.672-.46.977-.723 1.195-1.036 2.047-2.607 1.878-4.897-.15-2.091-4.09-7.979-5.14-8.002-.851-.018-2.58 2.107-3.527 3.256-1.028 1.247-2.637 3.408-2.958 4.677a4.726 4.726 0 0 0-.135 1.181c0 1.44.75 2.784 1.898 3.744.703.586 1.48 1.038.237 2.31-.74.76-2.433 2.363-1.452 1.91.572-.265 1-.614 1.34-.855.71-.504.99-.669.833-.03-.034.133-.028.274-.028.41 0 .893.37 1.69.95 2.278.15.154.586.486.833.7.586.506 1.196 1.864.816 2.202-.287.259-1.593-.246-2.426-.208-.837.037-2.276.566-2.239 1.563.037.998 3.17.851 3.9.858 1.645.012 1.089-.643 1.645-.631.555.016 0 .611 1.85.621.73.004 3.678.15 3.715-.847.042-.998-1.4-1.525-2.234-1.563zm-5.502 1.789c-.665.281-1.536.244-1.764-.15-.226-.398 1.138-.717 1.498-.772.359-.057 1.138-.132 1.422.396.332.613-.495.241-1.156.526zM8.257 9.099c0-.348.028-.685.103-1.007.254-1.088 1.467-2.977 2.272-4.042.744-.984 1.761-2.88 2.43-2.863.82.02 4.274 5.173 4.395 6.96.127 1.961-.535 3.305-1.47 4.193-.807.764-1.783 1.367-2.939 1.367-2.31 0-4.791-2.098-4.791-4.608zm2.129 7.714c0-1.216.994-2.204 2.221-2.204a2.21 2.21 0 0 1 2.219 2.204c0 1.218-.99 2.201-2.219 2.201a2.208 2.208 0 0 1-2.221-2.201zm1.927 4.986c-.237 0-.46-.905-.463-1.145-.007-.356.038-.755.474-.755s.47.398.473.755c.005.33-.248 1.145-.484 1.145zm3.954 1.415c-.226.395-1.1.432-1.765.15-.66-.284-1.487.087-1.155-.526.284-.527 1.063-.452 1.423-.396.358.055 1.727.375 1.497.772zM15.081 5.857c-.456 0-.85.31-1.172.775-.158.23-.45.41-.826-.23-.35-.593-.92-.922-1.508-.922-1.178 0-2.135 1.413-2.135 3.156 0 1.74.957 3.153 2.135 3.153.737 0 1.37-.557 1.769-1.39.154-.324.386-.263.566-.02.336.457.716.776 1.172.776.92 0 1.663-1.187 1.663-2.646-.001-1.466-.744-2.652-1.664-2.652zm-3.506 4.987c-.826 0-1.498-.99-1.498-2.21 0-1.226.672-2.216 1.498-2.216s1.498.99 1.498 2.217c0 1.218-.672 2.21-1.498 2.21zm3.506-.483c-.641 0-1.162-.83-1.162-1.856 0-1.028.52-1.857 1.162-1.857.644 0 1.167.829 1.167 1.857 0 1.026-.522 1.856-1.167 1.856zm.471-1.905c0 .481-.189.876-.419.876-.23 0-.418-.395-.418-.876 0-.488.188-.882.418-.882.23 0 .42.393.42.882zm-2.414 8.978a.418.418 0 0 1-.836 0c0-.229.189-.413.418-.413.228 0 .418.185.418.413zM5.57 17.36c-.165 0-1.688.02-2.163.227-.474.21.284.508.928.544.322.02.22.26.076.453-1.155 1.58-.265 1.263.513.565.192-.17.265.057.285.265.018.206.51 1.75.665-.208.063-.81.113-1.241.077-1.526-.038-.282-.193-.32-.381-.32zm12.858 0c.161 0 1.687.02 2.163.227.474.21-.284.508-.932.544-.32.02-.217.26-.076.453 1.158 1.58.268 1.263-.51.565-.192-.17-.265.057-.285.265-.021.206-.516 1.75-.665-.208-.064-.81-.113-1.241-.076-1.526.04-.282.19-.32.381-.32zm-6.254-8.812c0 .607-.235 1.101-.524 1.101-.288 0-.521-.494-.521-1.1 0-.608.233-1.101.52-1.101.289 0 .525.493.525 1.1zm3.377-.091c0 .481-.189.876-.419.876-.23 0-.418-.395-.418-.876 0-.488.188-.882.418-.882.23 0 .42.393.42.882Z" }) + ] + } + ); +}); + +export { SiCodeproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.cjs new file mode 100644 index 000000000..4f88f89a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#090B0B"; +const SiCoder = React__namespace.forwardRef(function SiCoder2({ title = "Coder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.862 6.67H24v10.663h-9.138zM6.945 15.304c-1.934 0-3.366-1.264-3.366-3.305s1.432-3.323 3.366-3.365c1.411-.03 2.787.99 2.878 2.543l3.472-.106c-.076-2.802-2.33-4.706-6.35-4.706S0 8.558 0 12c0 3.426 3.046 5.635 6.945 5.635 3.898 0 6.29-1.935 6.38-4.782l-3.472-.077c-.152 1.553-1.497 2.528-2.908 2.528Z" }) + ] + } + ); +}); + +exports.default = SiCoder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.d.ts new file mode 100644 index 000000000..d1d8bd8b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#090B0B"; +declare const SiCoder: IconType; +export { SiCoder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.mjs new file mode 100644 index 000000000..c67312636 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#090B0B"; +const SiCoder = React.forwardRef(function SiCoder2({ title = "Coder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.862 6.67H24v10.663h-9.138zM6.945 15.304c-1.934 0-3.366-1.264-3.366-3.305s1.432-3.323 3.366-3.365c1.411-.03 2.787.99 2.878 2.543l3.472-.106c-.076-2.802-2.33-4.706-6.35-4.706S0 8.558 0 12c0 3.426 3.046 5.635 6.945 5.635 3.898 0 6.29-1.935 6.38-4.782l-3.472-.077c-.152 1.553-1.497 2.528-2.908 2.528Z" }) + ] + } + ); +}); + +export { SiCoder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.cjs new file mode 100644 index 000000000..39d969701 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF570A"; +const SiCoderabbit = React__namespace.forwardRef(function SiCoderabbit2({ title = "CodeRabbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9913 13.0494C23.7481 6.864 18.747 1.8204 12.5667 1.535 5.678 1.2229 0 6.7106 0 13.5252c0 2.6011.8247 5.0066 2.231 6.968.8089 1.1314 2.0724 1.8451 3.4417 1.9614-2.0143-2.284-.3013-4.1924-.3013-4.1924-.7983.386-1.1261 1.6865-1.1261 1.6865-1.512-.9305-1.1631-2.0407-1.1631-2.0407.0951-.2326.3119-.8723 1.475-.6397 2.2522-7.4173 9.6695-3.5527 9.6695-3.5527-.1163-.2327-.5023-1.5544-.5023-1.5544-4.8162-.6978-6.4445-4.113-6.4445-4.113 4.4673-1.3587 7.1847 2.3314 7.1847 2.3314-1.2424-3.0293-4.2294-1.824-5.0066-6.7935 5.1864.8618 5.937 4.9273 6.0428 5.8049.074-.1692.4864-.3965 2.1887-.296 2.6381.1532 4.737 2.8337 4.737 2.8337 0 5.4347-6.6402 4.1236-6.6402 8.2314 0 .9623 1.0468.9041 1.3957 1.3693.2855.3807.164.8036.1057.941h.6292c1.4909 0 2.9077-.6872 3.7853-1.8926 1.5279-2.0988 2.3949-4.7105 2.2891-7.5337zm-8.3953 9.4264c-1.1525-.3806-2.268-2.9817-3.6532-2.9817 1.9403 1.1683 1.1156 2.7174.957 2.9817h2.7015z" }) + ] + } + ); +}); + +exports.default = SiCoderabbit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.d.ts new file mode 100644 index 000000000..2828f58db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF570A"; +declare const SiCoderabbit: IconType; +export { SiCoderabbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.mjs new file mode 100644 index 000000000..24a7f7907 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderabbit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF570A"; +const SiCoderabbit = React.forwardRef(function SiCoderabbit2({ title = "CodeRabbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9913 13.0494C23.7481 6.864 18.747 1.8204 12.5667 1.535 5.678 1.2229 0 6.7106 0 13.5252c0 2.6011.8247 5.0066 2.231 6.968.8089 1.1314 2.0724 1.8451 3.4417 1.9614-2.0143-2.284-.3013-4.1924-.3013-4.1924-.7983.386-1.1261 1.6865-1.1261 1.6865-1.512-.9305-1.1631-2.0407-1.1631-2.0407.0951-.2326.3119-.8723 1.475-.6397 2.2522-7.4173 9.6695-3.5527 9.6695-3.5527-.1163-.2327-.5023-1.5544-.5023-1.5544-4.8162-.6978-6.4445-4.113-6.4445-4.113 4.4673-1.3587 7.1847 2.3314 7.1847 2.3314-1.2424-3.0293-4.2294-1.824-5.0066-6.7935 5.1864.8618 5.937 4.9273 6.0428 5.8049.074-.1692.4864-.3965 2.1887-.296 2.6381.1532 4.737 2.8337 4.737 2.8337 0 5.4347-6.6402 4.1236-6.6402 8.2314 0 .9623 1.0468.9041 1.3957 1.3693.2855.3807.164.8036.1057.941h.6292c1.4909 0 2.9077-.6872 3.7853-1.8926 1.5279-2.0988 2.3949-4.7105 2.2891-7.5337zm-8.3953 9.4264c-1.1525-.3806-2.268-2.9817-3.6532-2.9817 1.9403 1.1683 1.1156 2.7174.957 2.9817h2.7015z" }) + ] + } + ); +}); + +export { SiCoderabbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.cjs new file mode 100644 index 000000000..8a1f8566f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#67A4AC"; +const SiCodersrank = React__namespace.forwardRef(function SiCodersrank2({ title = "CodersRank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.134 8.64l-5.973-3.62a.286.286 0 0 0-.412.125l-1.4 3.286 2.842 1.696a.53.53 0 0 1 0 .921l-5.335 3.14-2.267 5.274a.127.127 0 0 0 .052.203.122.122 0 0 0 .134-.035l3.914-2.365 1.545 2.219a.373.373 0 0 0 .309.167h3.708a.367.367 0 0 0 .327-.2.382.382 0 0 0-.018-.386l-2.513-3.852 5.088-3.077c.577-.349.865-.74.865-1.172V9.813c0-.433-.288-.823-.866-1.172zM13.082 4.35L.845 12.052c-.577.348-.858.739-.845 1.171v1.173c.014.432.303.816.866 1.15l6.056 3.496a.286.286 0 0 0 .412-.146l1.36-3.286-2.884-1.633a.518.518 0 0 1-.275-.384.529.529 0 0 1 .254-.537l5.295-3.245 2.183-5.316a.128.128 0 0 0-.04-.142.122.122 0 0 0-.146-.005z" }) + ] + } + ); +}); + +exports.default = SiCodersrank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.d.ts new file mode 100644 index 000000000..4022d5db1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#67A4AC"; +declare const SiCodersrank: IconType; +export { SiCodersrank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.mjs new file mode 100644 index 000000000..18724757d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodersrank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#67A4AC"; +const SiCodersrank = React.forwardRef(function SiCodersrank2({ title = "CodersRank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.134 8.64l-5.973-3.62a.286.286 0 0 0-.412.125l-1.4 3.286 2.842 1.696a.53.53 0 0 1 0 .921l-5.335 3.14-2.267 5.274a.127.127 0 0 0 .052.203.122.122 0 0 0 .134-.035l3.914-2.365 1.545 2.219a.373.373 0 0 0 .309.167h3.708a.367.367 0 0 0 .327-.2.382.382 0 0 0-.018-.386l-2.513-3.852 5.088-3.077c.577-.349.865-.74.865-1.172V9.813c0-.433-.288-.823-.866-1.172zM13.082 4.35L.845 12.052c-.577.348-.858.739-.845 1.171v1.173c.014.432.303.816.866 1.15l6.056 3.496a.286.286 0 0 0 .412-.146l1.36-3.286-2.884-1.633a.518.518 0 0 1-.275-.384.529.529 0 0 1 .254-.537l5.295-3.245 2.183-5.316a.128.128 0 0 0-.04-.142.122.122 0 0 0-.146-.005z" }) + ] + } + ); +}); + +export { SiCodersrank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.cjs new file mode 100644 index 000000000..82565d3b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3E8DCC"; +const SiCoderwall = React__namespace.forwardRef(function SiCoderwall2({ title = "Coderwall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.354 18.708c1.46 0 2.646 1.185 2.646 2.646C24 22.814 22.814 24 21.354 24s-2.646-1.186-2.646-2.646c0-1.458 1.185-2.646 2.646-2.646zM12 9.354c1.46 0 2.646 1.186 2.646 2.646S13.46 14.646 12 14.646 9.354 13.46 9.354 12 10.54 9.354 12 9.354zm9.354 0C22.814 9.354 24 10.54 24 12s-1.186 2.646-2.646 2.646S18.708 13.46 18.708 12s1.185-2.646 2.646-2.646zM12 0c1.46 0 2.646 1.185 2.646 2.646 0 1.46-1.186 2.646-2.646 2.646S9.354 4.106 9.354 2.646 10.54 0 12 0zM2.646 0c1.46 0 2.646 1.185 2.646 2.646 0 1.46-1.186 2.646-2.646 2.646S0 4.106 0 2.646 1.186 0 2.646 0zm18.708 0C22.814 0 24 1.185 24 2.646c0 1.46-1.186 2.646-2.646 2.646s-2.646-1.186-2.646-2.646S19.893 0 21.354 0z" }) + ] + } + ); +}); + +exports.default = SiCoderwall; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.d.ts new file mode 100644 index 000000000..ed65b38ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3E8DCC"; +declare const SiCoderwall: IconType; +export { SiCoderwall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.mjs new file mode 100644 index 000000000..a40847d22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoderwall.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3E8DCC"; +const SiCoderwall = React.forwardRef(function SiCoderwall2({ title = "Coderwall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.354 18.708c1.46 0 2.646 1.185 2.646 2.646C24 22.814 22.814 24 21.354 24s-2.646-1.186-2.646-2.646c0-1.458 1.185-2.646 2.646-2.646zM12 9.354c1.46 0 2.646 1.186 2.646 2.646S13.46 14.646 12 14.646 9.354 13.46 9.354 12 10.54 9.354 12 9.354zm9.354 0C22.814 9.354 24 10.54 24 12s-1.186 2.646-2.646 2.646S18.708 13.46 18.708 12s1.185-2.646 2.646-2.646zM12 0c1.46 0 2.646 1.185 2.646 2.646 0 1.46-1.186 2.646-2.646 2.646S9.354 4.106 9.354 2.646 10.54 0 12 0zM2.646 0c1.46 0 2.646 1.185 2.646 2.646 0 1.46-1.186 2.646-2.646 2.646S0 4.106 0 2.646 1.186 0 2.646 0zm18.708 0C22.814 0 24 1.185 24 2.646c0 1.46-1.186 2.646-2.646 2.646s-2.646-1.186-2.646-2.646S19.893 0 21.354 0z" }) + ] + } + ); +}); + +export { SiCoderwall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.cjs new file mode 100644 index 000000000..a4a150fa2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#151515"; +const SiCodesandbox = React__namespace.forwardRef(function SiCodesandbox2({ title = "CodeSandbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 24H24V0H0V2.45455H21.5455V21.5455H2.45455V0H0Z" }) + ] + } + ); +}); + +exports.default = SiCodesandbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.d.ts new file mode 100644 index 000000000..b2f1da15a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#151515"; +declare const SiCodesandbox: IconType; +export { SiCodesandbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.mjs new file mode 100644 index 000000000..bb8ad0ce3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesandbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#151515"; +const SiCodesandbox = React.forwardRef(function SiCodesandbox2({ title = "CodeSandbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 24H24V0H0V2.45455H21.5455V21.5455H2.45455V0H0Z" }) + ] + } + ); +}); + +export { SiCodesandbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.cjs new file mode 100644 index 000000000..fbf04e9db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004466"; +const SiCodeship = React__namespace.forwardRef(function SiCodeship2({ title = "Codeship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm0 1.334c.824 0 1.636.191 2.373.56a.53.53 0 0 1 .294.474v1.519a15.985 15.985 0 0 0-5.334 0V2.368c0-.2.114-.384.294-.474A5.304 5.304 0 0 1 12 1.334zm5.143 4.595c.114.043.19.152.19.274v2.122A20.956 20.956 0 0 0 12 6.648c-1.951.344-3.794.943-5.333 1.677V6.203c0-.122.076-.231.19-.274a14.648 14.648 0 0 1 5.038-.933c1.926-.024 3.725.37 5.248.933zM12 8s3.752.625 6.411 2.482c.145.101.18.299.084.448-1.104 1.74-1.97 3.922-2.596 5.838 1.252-1.28 2.24-2.085 4.1-2.101.9 0 1.598.202 2.185.516C20.42 20.618 15.503 22.72 12 22.667c-4.337.02-8.32-2.702-9.914-6.723.8-.709 1.74-1.277 3.247-1.277.92 0 1.626.212 2.22.537-.554-1.475-1.236-2.994-2.048-4.274a.33.33 0 0 1 .084-.448C8.248 8.625 12 8 12 8zm0 1.333c-1.333 2 0 8 0 8s1.333-6 0-8z" }) + ] + } + ); +}); + +exports.default = SiCodeship; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.d.ts new file mode 100644 index 000000000..0321faae2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004466"; +declare const SiCodeship: IconType; +export { SiCodeship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.mjs new file mode 100644 index 000000000..fe61afa08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodeship.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004466"; +const SiCodeship = React.forwardRef(function SiCodeship2({ title = "Codeship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm0 1.334c.824 0 1.636.191 2.373.56a.53.53 0 0 1 .294.474v1.519a15.985 15.985 0 0 0-5.334 0V2.368c0-.2.114-.384.294-.474A5.304 5.304 0 0 1 12 1.334zm5.143 4.595c.114.043.19.152.19.274v2.122A20.956 20.956 0 0 0 12 6.648c-1.951.344-3.794.943-5.333 1.677V6.203c0-.122.076-.231.19-.274a14.648 14.648 0 0 1 5.038-.933c1.926-.024 3.725.37 5.248.933zM12 8s3.752.625 6.411 2.482c.145.101.18.299.084.448-1.104 1.74-1.97 3.922-2.596 5.838 1.252-1.28 2.24-2.085 4.1-2.101.9 0 1.598.202 2.185.516C20.42 20.618 15.503 22.72 12 22.667c-4.337.02-8.32-2.702-9.914-6.723.8-.709 1.74-1.277 3.247-1.277.92 0 1.626.212 2.22.537-.554-1.475-1.236-2.994-2.048-4.274a.33.33 0 0 1 .084-.448C8.248 8.625 12 8 12 8zm0 1.333c-1.333 2 0 8 0 8s1.333-6 0-8z" }) + ] + } + ); +}); + +export { SiCodeship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.cjs new file mode 100644 index 000000000..0cb0586e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1062FB"; +const SiCodesignal = React__namespace.forwardRef(function SiCodesignal2({ title = "CodeSignal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 1.212 13.012 2.787 12 5.62l-1.01-2.833L0 1.212 3.672 11.45l4.512.646 3.815 10.691 3.816-10.691 4.512-.646zm-3.625 4.406-4.52.648-.73 2.044 4.517-.647-.734 2.047-4.514.647L12 17.064l-2.393-6.707-4.514-.647-.735-2.047 4.518.647-.73-2.044-4.52-.648-.735-2.047 6.676.956L12 11.345l2.434-6.818 6.676-.956Z" }) + ] + } + ); +}); + +exports.default = SiCodesignal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.d.ts new file mode 100644 index 000000000..43ab38081 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1062FB"; +declare const SiCodesignal: IconType; +export { SiCodesignal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.mjs new file mode 100644 index 000000000..a0cb1e90f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodesignal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1062FB"; +const SiCodesignal = React.forwardRef(function SiCodesignal2({ title = "CodeSignal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 1.212 13.012 2.787 12 5.62l-1.01-2.833L0 1.212 3.672 11.45l4.512.646 3.815 10.691 3.816-10.691 4.512-.646zm-3.625 4.406-4.52.648-.73 2.044 4.517-.647-.734 2.047-4.514.647L12 17.064l-2.393-6.707-4.514-.647-.735-2.047 4.518.647-.73-2.044-4.52-.648-.735-2.047 6.676.956L12 11.345l2.434-6.818 6.676-.956Z" }) + ] + } + ); +}); + +export { SiCodesignal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.cjs new file mode 100644 index 000000000..0dc1f820a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008C99"; +const SiCodestream = React__namespace.forwardRef(function SiCodestream2({ title = "CodeStream", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5408 18.2457a6.4596 6.4596 0 0 1 0-12.5804V1.2199A.4315.4315 0 0 0 9.795.9261l-9.36 9.9713a1.61 1.61 0 0 0 0 2.2011l9.36 9.9754a.4315.4315 0 0 0 .7463-.2954zm2.9184 0a6.4596 6.4596 0 0 0 0-12.5804V1.2199a.4315.4315 0 0 1 .7463-.2938l9.3596 9.9713a1.61 1.61 0 0 1 0 2.2011l-9.3596 9.9754a.4315.4315 0 0 1-.7463-.2954zm2.2636-6.2902a3.7276 3.7307 0 0 1-3.7277 3.7307 3.7276 3.7307 0 0 1-3.7276-3.7307 3.7276 3.7307 0 0 1 3.7276-3.7307 3.7276 3.7307 0 0 1 3.7277 3.7307z" }) + ] + } + ); +}); + +exports.default = SiCodestream; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.d.ts new file mode 100644 index 000000000..c8e8c4665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008C99"; +declare const SiCodestream: IconType; +export { SiCodestream as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.mjs new file mode 100644 index 000000000..21389cdbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodestream.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008C99"; +const SiCodestream = React.forwardRef(function SiCodestream2({ title = "CodeStream", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.5408 18.2457a6.4596 6.4596 0 0 1 0-12.5804V1.2199A.4315.4315 0 0 0 9.795.9261l-9.36 9.9713a1.61 1.61 0 0 0 0 2.2011l9.36 9.9754a.4315.4315 0 0 0 .7463-.2954zm2.9184 0a6.4596 6.4596 0 0 0 0-12.5804V1.2199a.4315.4315 0 0 1 .7463-.2938l9.3596 9.9713a1.61 1.61 0 0 1 0 2.2011l-9.3596 9.9754a.4315.4315 0 0 1-.7463-.2954zm2.2636-6.2902a3.7276 3.7307 0 0 1-3.7277 3.7307 3.7276 3.7307 0 0 1-3.7276-3.7307 3.7276 3.7307 0 0 1 3.7276-3.7307 3.7276 3.7307 0 0 1 3.7277 3.7307z" }) + ] + } + ); +}); + +export { SiCodestream as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.cjs new file mode 100644 index 000000000..80d6f67ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B1361E"; +const SiCodewars = React__namespace.forwardRef(function SiCodewars2({ title = "Codewars", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.072.142A1.072 1.072 0 0 0 0 1.214v21.572a1.072 1.072 0 0 0 1.072 1.072h21.856A1.072 1.072 0 0 0 24 22.786V1.214A1.072 1.072 0 0 0 22.928.142zm9.736 1.818a.904.904 0 0 1 .828.539.784.784 0 0 1 1.274.493.639.639 0 0 1 .29-.06c.33.008.59.262.625.575a1.322 1.322 0 0 1 .624-.515 1.325 1.325 0 0 1 1.718.71 1.098 1.098 0 0 1 .306-.236 1.102 1.102 0 0 1 1.483.479 1.094 1.094 0 0 1 .12.47.994.994 0 0 1 1.322 1.214.904.904 0 0 1 .874 1.438.784.784 0 0 1 .176 1.356.639.639 0 0 1 .19.224.642.642 0 0 1-.011.613 1.326 1.326 0 0 1 .482.235 1.334 1.334 0 0 1 .258 1.842 1.098 1.098 0 0 1 .35.15 1.102 1.102 0 0 1 .337 1.516 1.094 1.094 0 0 1-.344.344.994.994 0 0 1 .228 1.318 1.006 1.006 0 0 1-.605.434.904.904 0 0 1-.803 1.482.814.814 0 0 0-.008-.04.784.784 0 0 1-1.075.873.639.639 0 0 1-.098.28.625.625 0 0 1-.43.288 1.33 1.33 0 0 1 .023.456 1.334 1.334 0 0 1-1.44 1.173 1.098 1.098 0 0 1 .054.377 1.102 1.102 0 0 1-1.128 1.072 1.098 1.098 0 0 1-.47-.12.994.994 0 0 1-1.696.583.904.904 0 0 1-1.685.075.784.784 0 0 1-1.274-.493.639.639 0 0 1-.29.064.64.64 0 0 1-.621-.58l.004-.007a1.326 1.326 0 0 1-.632.523 1.334 1.334 0 0 1-1.718-.706 1.098 1.098 0 0 1-.306.232 1.102 1.102 0 0 1-1.48-.478 1.094 1.094 0 0 1-.123-.471.994.994 0 0 1-1.318-1.21.904.904 0 0 1-.874-1.442.784.784 0 0 1-.176-1.356.639.639 0 0 1-.194-.224.642.642 0 0 1 .011-.61l.019.004a1.326 1.326 0 0 1-.497-.239 1.334 1.334 0 0 1-.262-1.845 1.098 1.098 0 0 1-.35-.146 1.102 1.102 0 0 1-.337-1.52 1.094 1.094 0 0 1 .347-.34A.994.994 0 0 1 2.88 9a.904.904 0 0 1 .803-1.48.784.784 0 0 1 1.083-.836.639.639 0 0 1 .098-.28.649.649 0 0 1 .433-.288 1.33 1.33 0 0 1-.026-.452A1.334 1.334 0 0 1 6.716 4.49a1.098 1.098 0 0 1-.06-.377 1.101 1.101 0 0 1 1.13-1.073 1.094 1.094 0 0 1 .47.115.994.994 0 0 1 1.696-.579.904.904 0 0 1 .857-.617zM3.683 7.519a.784.784 0 0 0 .008.041l-.004-.04a.904.904 0 0 0-.004-.001zM17.502 19.61a1.098 1.098 0 0 0-.002-.004h-.037a1.334 1.334 0 0 0 .039.004zM13.825 3.507a1.322 1.322 0 0 0-.008.012l.008-.011zm-2.369-.014l-.003.003a.9.9 0 0 1-.665.27.896.896 0 0 1-.583-.232.994.994 0 0 1-.986.732.99.99 0 0 1-.362-.075 1.098 1.098 0 0 1-1.061 1.046 1.326 1.326 0 0 1 .123.736 1.334 1.334 0 0 1-.725 1.035 1.1 1.1 0 0 1 .307.795 1.106 1.106 0 0 1-.232.65c.321.18.53.523.523.915a1.016 1.016 0 0 1-.07.337.915.915 0 0 1 .82.937.923.923 0 0 1-.01.138.74.74 0 0 1 .157-.01c.343.007.627.25.702.57a.661.661 0 0 1 .38-.111c.31.007.561.224.632.511a.418.418 0 0 1 .381-.015 1.352 1.352 0 0 1 .303-.63.418.418 0 0 1-.12-.143.422.422 0 0 1 .004-.392.665.665 0 0 1-.325-1.117.736.736 0 0 1-.359-.336.74.74 0 0 1 .385-1.023.747.747 0 0 0-.06.026.915.915 0 0 1-.201-.262.915.915 0 0 1 .623-1.315V6.53a1.02 1.02 0 0 1 .437-1.371 1.012 1.012 0 0 1 .553-.112 1.11 1.11 0 0 1 .598-1.054 1.12 1.12 0 0 1 .06-.026.642.642 0 0 1-.109-.21.784.784 0 0 1-.455.132.784.784 0 0 1-.662-.396zm4.573 1.512a1.326 1.326 0 0 1-.587.46 1.334 1.334 0 0 1-1.255-.142v-.011a1.11 1.11 0 0 1-.553.66 1.106 1.106 0 0 1-.683.113 1.02 1.02 0 0 1-.553.889 1.016 1.016 0 0 1-.329.105.918.918 0 0 1-.43 1.169.923.923 0 0 1-.127.056.74.74 0 0 1 .086.13.738.738 0 0 1-.168.89.661.661 0 0 1 .28.283.655.655 0 0 1-.149.796.418.418 0 0 1 .153.164c.019.034.03.068.038.101a1.356 1.356 0 0 1 .672-.015.422.422 0 0 1 .056-.142.422.422 0 0 1 .34-.194.665.665 0 0 1 .796-.848.736.736 0 0 1 .112-.478.733.733 0 0 1 1.016-.224.915.915 0 0 1 .127-.306.915.915 0 0 1 1.27-.28.915.915 0 0 1 .179.153 1.02 1.02 0 0 1 1.408-.314 1.012 1.012 0 0 1 .374.422c.355-.24.833-.261 1.214-.015a1.11 1.11 0 0 1 .209.172.642.642 0 0 1 .082-.108.784.784 0 0 1-.332-.337.784.784 0 0 1 .03-.77.9.9 0 0 1-.553-.455.896.896 0 0 1-.075-.624.994.994 0 0 1-1.117-.511.994.994 0 0 1-.104-.359 1.098 1.098 0 0 1-1.427-.43zM5.249 7.37a.784.784 0 0 1-.124.46.784.784 0 0 1-.68.362c.06.235.026.49-.112.71a.896.896 0 0 1-.5.377c.31.325.373.829.12 1.225a.99.99 0 0 1-.255.269 1.098 1.098 0 0 1 .351 1.45 1.326 1.326 0 0 1 .691.276 1.334 1.334 0 0 1 .512 1.154c.28-.064.579-.019.84.15a1.106 1.106 0 0 1 .438.53 1.02 1.02 0 0 1 1.05.03 1.016 1.016 0 0 1 .257.231.914.914 0 0 1 1.225-.224.919.919 0 0 1 .112.086.74.74 0 0 1 .071-.142.74.74 0 0 1 .852-.306.661.661 0 0 1 .1-.381.664.664 0 0 1 .763-.273.418.418 0 0 1 .246-.373 1.36 1.36 0 0 1-.358-.523v-.008a.418.418 0 0 1-.25.075.422.422 0 0 1-.344-.19.665.665 0 0 1-1.132-.243.736.736 0 0 1-.47.149.733.733 0 0 1-.718-.755.915.915 0 0 1-.329.049.915.915 0 0 1-.855-1.177h-.004a1.016 1.016 0 0 1-.993-1.042 1.012 1.012 0 0 1 .168-.534 1.11 1.11 0 0 1-.64-1.035 1.11 1.11 0 0 1 .068-.358.65.65 0 0 1-.1-.019zm11.127 2.133a.913.913 0 0 1-1.225.224.926.926 0 0 1-.112-.082.74.74 0 0 1-.067.142.74.74 0 0 1-.852.302.661.661 0 0 1-.105.385.662.662 0 0 1-.762.277.418.418 0 0 1-.063.212.426.426 0 0 1-.075.086 1.356 1.356 0 0 1 .314.564.418.418 0 0 1 .187-.04.422.422 0 0 1 .343.194.665.665 0 0 1 1.136.242.736.736 0 0 1 .467-.153c.41.008.728.348.72.755a.74.74 0 0 1 0 .008v-.005a.915.915 0 0 1 .326-.052.915.915 0 0 1 .896.941.919.919 0 0 1-.037.236c.564.015 1.008.482.993 1.046a1.012 1.012 0 0 1-.168.534 1.11 1.11 0 0 1 .647 1.035 1.11 1.11 0 0 1-.075.362l.004-.007.1.018a.784.784 0 0 1 .124-.46.784.784 0 0 1 .68-.362.9.9 0 0 1 .112-.71.896.896 0 0 1 .504-.373.994.994 0 0 1-.123-1.225.99.99 0 0 1 .257-.269 1.098 1.098 0 0 1-.35-1.453 1.326 1.326 0 0 1-.696-.273h-.003a1.334 1.334 0 0 1-.512-1.158 1.082 1.082 0 0 1-.837-.145 1.106 1.106 0 0 1-.44-.535 1.02 1.02 0 0 1-1.05-.026 1.016 1.016 0 0 1-.258-.235zm-.094 3.116l-.007.066a.74.74 0 0 0 .007-.066zm-2.864-.259a1.36 1.36 0 0 1-.363.598.418.418 0 0 1 .194.187.422.422 0 0 1-.007.396.665.665 0 0 1 .329 1.113.736.736 0 0 1 .358.336.739.739 0 0 1-.32.994.915.915 0 0 1 .197.261.91.91 0 0 1-.396 1.233.919.919 0 0 1-.224.082v.004a1.02 1.02 0 0 1-.44 1.374 1.012 1.012 0 0 1-.55.109 1.11 1.11 0 0 1-.661 1.083.642.642 0 0 1 .112.21.026.026 0 0 1-.004 0v.003a.784.784 0 0 1 .456-.134.784.784 0 0 1 .661.392.9.9 0 0 1 .665-.27.896.896 0 0 1 .587.236.994.994 0 0 1 .982-.736.99.99 0 0 1 .362.079v.022a1.1 1.1 0 0 1 1.061-1.072 1.326 1.326 0 0 1-.123-.736c.056-.46.34-.837.725-1.035l.003.004a1.102 1.102 0 0 1-.31-.795 1.106 1.106 0 0 1 .232-.654 1.02 1.02 0 0 1-.452-1.251.915.915 0 0 1-.822-.934.923.923 0 0 1 .011-.142.74.74 0 0 1-.157.015.74.74 0 0 1-.698-.572.661.661 0 0 1-.385.112.667.667 0 0 1-.627-.512.418.418 0 0 1-.217.053.418.418 0 0 1-.18-.045zm-.964.93a1.36 1.36 0 0 1-.336.042c-.112 0-.22-.012-.322-.038a.418.418 0 0 1-.06.295.422.422 0 0 1-.343.195.665.665 0 0 1-.792.844.736.736 0 0 1-.112.478.74.74 0 0 1-1.02.224.915.915 0 0 1-.127.306.915.915 0 0 1-1.266.28.919.919 0 0 1-.183-.153v.004a1.02 1.02 0 0 1-1.408.31 1.012 1.012 0 0 1-.374-.418c-.355.239-.83.261-1.214.015a1.113 1.113 0 0 1-.21-.172.65.65 0 0 1-.081.105.784.784 0 0 1 .336.336.784.784 0 0 1-.034.77.89.89 0 0 1 .553.455.896.896 0 0 1 .075.624.994.994 0 0 1 1.12.515.99.99 0 0 1 .101.355 1.098 1.098 0 0 1 1.431.43 1.326 1.326 0 0 1 .587-.46c.43-.172.896-.104 1.255.142a1.106 1.106 0 0 1 .549-.65 1.106 1.106 0 0 1 .683-.108 1.02 1.02 0 0 1 .553-.893 1.02 1.02 0 0 1 .333-.104.916.916 0 0 1 .425-1.17.919.919 0 0 1 .131-.052.736.736 0 0 1-.09-.134.738.738 0 0 1 .169-.886.661.661 0 0 1-.28-.284.67.67 0 0 1 .149-.799.418.418 0 0 1-.15-.164.418.418 0 0 1-.048-.24z" }) + ] + } + ); +}); + +exports.default = SiCodewars; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.d.ts new file mode 100644 index 000000000..9da06ec59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B1361E"; +declare const SiCodewars: IconType; +export { SiCodewars as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.mjs new file mode 100644 index 000000000..5b304c329 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodewars.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B1361E"; +const SiCodewars = React.forwardRef(function SiCodewars2({ title = "Codewars", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.072.142A1.072 1.072 0 0 0 0 1.214v21.572a1.072 1.072 0 0 0 1.072 1.072h21.856A1.072 1.072 0 0 0 24 22.786V1.214A1.072 1.072 0 0 0 22.928.142zm9.736 1.818a.904.904 0 0 1 .828.539.784.784 0 0 1 1.274.493.639.639 0 0 1 .29-.06c.33.008.59.262.625.575a1.322 1.322 0 0 1 .624-.515 1.325 1.325 0 0 1 1.718.71 1.098 1.098 0 0 1 .306-.236 1.102 1.102 0 0 1 1.483.479 1.094 1.094 0 0 1 .12.47.994.994 0 0 1 1.322 1.214.904.904 0 0 1 .874 1.438.784.784 0 0 1 .176 1.356.639.639 0 0 1 .19.224.642.642 0 0 1-.011.613 1.326 1.326 0 0 1 .482.235 1.334 1.334 0 0 1 .258 1.842 1.098 1.098 0 0 1 .35.15 1.102 1.102 0 0 1 .337 1.516 1.094 1.094 0 0 1-.344.344.994.994 0 0 1 .228 1.318 1.006 1.006 0 0 1-.605.434.904.904 0 0 1-.803 1.482.814.814 0 0 0-.008-.04.784.784 0 0 1-1.075.873.639.639 0 0 1-.098.28.625.625 0 0 1-.43.288 1.33 1.33 0 0 1 .023.456 1.334 1.334 0 0 1-1.44 1.173 1.098 1.098 0 0 1 .054.377 1.102 1.102 0 0 1-1.128 1.072 1.098 1.098 0 0 1-.47-.12.994.994 0 0 1-1.696.583.904.904 0 0 1-1.685.075.784.784 0 0 1-1.274-.493.639.639 0 0 1-.29.064.64.64 0 0 1-.621-.58l.004-.007a1.326 1.326 0 0 1-.632.523 1.334 1.334 0 0 1-1.718-.706 1.098 1.098 0 0 1-.306.232 1.102 1.102 0 0 1-1.48-.478 1.094 1.094 0 0 1-.123-.471.994.994 0 0 1-1.318-1.21.904.904 0 0 1-.874-1.442.784.784 0 0 1-.176-1.356.639.639 0 0 1-.194-.224.642.642 0 0 1 .011-.61l.019.004a1.326 1.326 0 0 1-.497-.239 1.334 1.334 0 0 1-.262-1.845 1.098 1.098 0 0 1-.35-.146 1.102 1.102 0 0 1-.337-1.52 1.094 1.094 0 0 1 .347-.34A.994.994 0 0 1 2.88 9a.904.904 0 0 1 .803-1.48.784.784 0 0 1 1.083-.836.639.639 0 0 1 .098-.28.649.649 0 0 1 .433-.288 1.33 1.33 0 0 1-.026-.452A1.334 1.334 0 0 1 6.716 4.49a1.098 1.098 0 0 1-.06-.377 1.101 1.101 0 0 1 1.13-1.073 1.094 1.094 0 0 1 .47.115.994.994 0 0 1 1.696-.579.904.904 0 0 1 .857-.617zM3.683 7.519a.784.784 0 0 0 .008.041l-.004-.04a.904.904 0 0 0-.004-.001zM17.502 19.61a1.098 1.098 0 0 0-.002-.004h-.037a1.334 1.334 0 0 0 .039.004zM13.825 3.507a1.322 1.322 0 0 0-.008.012l.008-.011zm-2.369-.014l-.003.003a.9.9 0 0 1-.665.27.896.896 0 0 1-.583-.232.994.994 0 0 1-.986.732.99.99 0 0 1-.362-.075 1.098 1.098 0 0 1-1.061 1.046 1.326 1.326 0 0 1 .123.736 1.334 1.334 0 0 1-.725 1.035 1.1 1.1 0 0 1 .307.795 1.106 1.106 0 0 1-.232.65c.321.18.53.523.523.915a1.016 1.016 0 0 1-.07.337.915.915 0 0 1 .82.937.923.923 0 0 1-.01.138.74.74 0 0 1 .157-.01c.343.007.627.25.702.57a.661.661 0 0 1 .38-.111c.31.007.561.224.632.511a.418.418 0 0 1 .381-.015 1.352 1.352 0 0 1 .303-.63.418.418 0 0 1-.12-.143.422.422 0 0 1 .004-.392.665.665 0 0 1-.325-1.117.736.736 0 0 1-.359-.336.74.74 0 0 1 .385-1.023.747.747 0 0 0-.06.026.915.915 0 0 1-.201-.262.915.915 0 0 1 .623-1.315V6.53a1.02 1.02 0 0 1 .437-1.371 1.012 1.012 0 0 1 .553-.112 1.11 1.11 0 0 1 .598-1.054 1.12 1.12 0 0 1 .06-.026.642.642 0 0 1-.109-.21.784.784 0 0 1-.455.132.784.784 0 0 1-.662-.396zm4.573 1.512a1.326 1.326 0 0 1-.587.46 1.334 1.334 0 0 1-1.255-.142v-.011a1.11 1.11 0 0 1-.553.66 1.106 1.106 0 0 1-.683.113 1.02 1.02 0 0 1-.553.889 1.016 1.016 0 0 1-.329.105.918.918 0 0 1-.43 1.169.923.923 0 0 1-.127.056.74.74 0 0 1 .086.13.738.738 0 0 1-.168.89.661.661 0 0 1 .28.283.655.655 0 0 1-.149.796.418.418 0 0 1 .153.164c.019.034.03.068.038.101a1.356 1.356 0 0 1 .672-.015.422.422 0 0 1 .056-.142.422.422 0 0 1 .34-.194.665.665 0 0 1 .796-.848.736.736 0 0 1 .112-.478.733.733 0 0 1 1.016-.224.915.915 0 0 1 .127-.306.915.915 0 0 1 1.27-.28.915.915 0 0 1 .179.153 1.02 1.02 0 0 1 1.408-.314 1.012 1.012 0 0 1 .374.422c.355-.24.833-.261 1.214-.015a1.11 1.11 0 0 1 .209.172.642.642 0 0 1 .082-.108.784.784 0 0 1-.332-.337.784.784 0 0 1 .03-.77.9.9 0 0 1-.553-.455.896.896 0 0 1-.075-.624.994.994 0 0 1-1.117-.511.994.994 0 0 1-.104-.359 1.098 1.098 0 0 1-1.427-.43zM5.249 7.37a.784.784 0 0 1-.124.46.784.784 0 0 1-.68.362c.06.235.026.49-.112.71a.896.896 0 0 1-.5.377c.31.325.373.829.12 1.225a.99.99 0 0 1-.255.269 1.098 1.098 0 0 1 .351 1.45 1.326 1.326 0 0 1 .691.276 1.334 1.334 0 0 1 .512 1.154c.28-.064.579-.019.84.15a1.106 1.106 0 0 1 .438.53 1.02 1.02 0 0 1 1.05.03 1.016 1.016 0 0 1 .257.231.914.914 0 0 1 1.225-.224.919.919 0 0 1 .112.086.74.74 0 0 1 .071-.142.74.74 0 0 1 .852-.306.661.661 0 0 1 .1-.381.664.664 0 0 1 .763-.273.418.418 0 0 1 .246-.373 1.36 1.36 0 0 1-.358-.523v-.008a.418.418 0 0 1-.25.075.422.422 0 0 1-.344-.19.665.665 0 0 1-1.132-.243.736.736 0 0 1-.47.149.733.733 0 0 1-.718-.755.915.915 0 0 1-.329.049.915.915 0 0 1-.855-1.177h-.004a1.016 1.016 0 0 1-.993-1.042 1.012 1.012 0 0 1 .168-.534 1.11 1.11 0 0 1-.64-1.035 1.11 1.11 0 0 1 .068-.358.65.65 0 0 1-.1-.019zm11.127 2.133a.913.913 0 0 1-1.225.224.926.926 0 0 1-.112-.082.74.74 0 0 1-.067.142.74.74 0 0 1-.852.302.661.661 0 0 1-.105.385.662.662 0 0 1-.762.277.418.418 0 0 1-.063.212.426.426 0 0 1-.075.086 1.356 1.356 0 0 1 .314.564.418.418 0 0 1 .187-.04.422.422 0 0 1 .343.194.665.665 0 0 1 1.136.242.736.736 0 0 1 .467-.153c.41.008.728.348.72.755a.74.74 0 0 1 0 .008v-.005a.915.915 0 0 1 .326-.052.915.915 0 0 1 .896.941.919.919 0 0 1-.037.236c.564.015 1.008.482.993 1.046a1.012 1.012 0 0 1-.168.534 1.11 1.11 0 0 1 .647 1.035 1.11 1.11 0 0 1-.075.362l.004-.007.1.018a.784.784 0 0 1 .124-.46.784.784 0 0 1 .68-.362.9.9 0 0 1 .112-.71.896.896 0 0 1 .504-.373.994.994 0 0 1-.123-1.225.99.99 0 0 1 .257-.269 1.098 1.098 0 0 1-.35-1.453 1.326 1.326 0 0 1-.696-.273h-.003a1.334 1.334 0 0 1-.512-1.158 1.082 1.082 0 0 1-.837-.145 1.106 1.106 0 0 1-.44-.535 1.02 1.02 0 0 1-1.05-.026 1.016 1.016 0 0 1-.258-.235zm-.094 3.116l-.007.066a.74.74 0 0 0 .007-.066zm-2.864-.259a1.36 1.36 0 0 1-.363.598.418.418 0 0 1 .194.187.422.422 0 0 1-.007.396.665.665 0 0 1 .329 1.113.736.736 0 0 1 .358.336.739.739 0 0 1-.32.994.915.915 0 0 1 .197.261.91.91 0 0 1-.396 1.233.919.919 0 0 1-.224.082v.004a1.02 1.02 0 0 1-.44 1.374 1.012 1.012 0 0 1-.55.109 1.11 1.11 0 0 1-.661 1.083.642.642 0 0 1 .112.21.026.026 0 0 1-.004 0v.003a.784.784 0 0 1 .456-.134.784.784 0 0 1 .661.392.9.9 0 0 1 .665-.27.896.896 0 0 1 .587.236.994.994 0 0 1 .982-.736.99.99 0 0 1 .362.079v.022a1.1 1.1 0 0 1 1.061-1.072 1.326 1.326 0 0 1-.123-.736c.056-.46.34-.837.725-1.035l.003.004a1.102 1.102 0 0 1-.31-.795 1.106 1.106 0 0 1 .232-.654 1.02 1.02 0 0 1-.452-1.251.915.915 0 0 1-.822-.934.923.923 0 0 1 .011-.142.74.74 0 0 1-.157.015.74.74 0 0 1-.698-.572.661.661 0 0 1-.385.112.667.667 0 0 1-.627-.512.418.418 0 0 1-.217.053.418.418 0 0 1-.18-.045zm-.964.93a1.36 1.36 0 0 1-.336.042c-.112 0-.22-.012-.322-.038a.418.418 0 0 1-.06.295.422.422 0 0 1-.343.195.665.665 0 0 1-.792.844.736.736 0 0 1-.112.478.74.74 0 0 1-1.02.224.915.915 0 0 1-.127.306.915.915 0 0 1-1.266.28.919.919 0 0 1-.183-.153v.004a1.02 1.02 0 0 1-1.408.31 1.012 1.012 0 0 1-.374-.418c-.355.239-.83.261-1.214.015a1.113 1.113 0 0 1-.21-.172.65.65 0 0 1-.081.105.784.784 0 0 1 .336.336.784.784 0 0 1-.034.77.89.89 0 0 1 .553.455.896.896 0 0 1 .075.624.994.994 0 0 1 1.12.515.99.99 0 0 1 .101.355 1.098 1.098 0 0 1 1.431.43 1.326 1.326 0 0 1 .587-.46c.43-.172.896-.104 1.255.142a1.106 1.106 0 0 1 .549-.65 1.106 1.106 0 0 1 .683-.108 1.02 1.02 0 0 1 .553-.893 1.02 1.02 0 0 1 .333-.104.916.916 0 0 1 .425-1.17.919.919 0 0 1 .131-.052.736.736 0 0 1-.09-.134.738.738 0 0 1 .169-.886.661.661 0 0 1-.28-.284.67.67 0 0 1 .149-.799.418.418 0 0 1-.15-.164.418.418 0 0 1-.048-.24z" }) + ] + } + ); +}); + +export { SiCodewars as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.cjs new file mode 100644 index 000000000..201abf2db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2BB13"; +const SiCodingame = React__namespace.forwardRef(function SiCodingame2({ title = "CodinGame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.025 11.893c-.1.293-.07.561.009.67.078.11.223.26.55.272.327.012.697-.167.697-.167l-.136.78c-.008.008-.4.138-.88.134-.661-.004-1.321-.317-1.261-1.252.006-.081.053-.398.128-.573a1.8 1.8 0 0 1 1.105-1.073c.67-.236 1.39-.016 1.39-.016l-.141.817s-.247-.203-.755-.154a1.055 1.055 0 0 0-.323.106.853.853 0 0 0-.383.456zm3.98.594c-.08.479-.446 1.097-1.397 1.097-.951 0-1.102-.618-1.016-1.097.217-1.134 1.394-1.077 1.394-1.077s1.195-.057 1.02 1.077zm-.887-.277c-.043-.175-.241-.169-.241-.169v.001s-.213-.017-.33.21c-.136.314-.075.514-.07.532.043.175.24.169.24.169v-.001s.214.017.33-.21c.136-.314.075-.514.07-.532zm3.827-1.747l-.534 3.07h-.868l.043-.245a.84.84 0 0 1-.66.3c-.527 0-.813-.395-.707-1.003.132-.76.65-1.2 1.138-1.2.234 0 .411.099.512.275v-.002l.208-1.195zm-1.43 1.577c-.205-.004-.36.242-.402.48-.04.238-.005.427.244.43.15 0 .326-.088.394-.43.028-.163.05-.48-.236-.48zm3.554-.556s-.259-.174-.698 0c-.189.073-.374.308-.374.308l.058-.335h-.867l-.26 1.493h.87l.1-.573.002-.019c.014-.071.078-.318.305-.318.265 0 .18.334.18.334l-.198 1.159h.866l.237-1.363c.09-.525-.22-.686-.22-.686zm-1.367-.338c.22 0 .398-.156.398-.349 0-.193-.178-.349-.398-.349-.22 0-.398.156-.398.35 0 .191.178.348.398.348zm3.723.146c.605 0 .818.158.818.158l.134-.768c-.405-.102-2.343-.479-2.782 1.463-.264 1.52 1.343 1.438 1.343 1.438s.634 0 1.176-.244l.189-1.09-.885-.003-.1.6s-.55.147-.753-.265c-.077-.152-.025-.449-.025-.449s.117-.84.885-.84zm3.21 1.032l-.21 1.209h-.788l.055-.315s-.26.366-.706.366c-.65 0-.52-.655-.52-.655s.053-.561.752-.679l.646-.071s.079-.241-.303-.241-.763.207-.763.207l.1-.577s.516-.187.995-.163c1.01.005.742.919.742.919zm-.84.258s-.158.033-.3.045c-.225.034-.253.182-.257.203-.038.22.196.19.196.19s.248.009.338-.31zm4.29-1.178c-.512 0-.766.364-.766.364s-.098-.364-.57-.364c-.471 0-.756.376-.756.376l.056-.321h-.87l-.361 2.074h.87l.209-1.201s.07-.293.303-.293c.232 0 .176.297.176.297l-.208 1.197h.872l.207-1.193s.058-.301.301-.301c.244 0 .174.309.174.309l-.21 1.184h.878l.241-1.388c0 .001.133-.74-.546-.74zm4.414-.417c0 .02.01.297-.483.382-.858.11-.96.575-.97.63-.012.055.005.163-.032.35a50.196 50.196 0 0 0-.06.394H20.62s.041.293.412.293.63-.116.63-.116l-.087.536s-.26.134-.828.134c-.09 0-1.115-.002-.926-1.091.091-.524.557-1.095 1.368-1.095.38-.002.4.133.767.133.31-.008.57-.305.57-.305s.094-.15.17-.32c.06-.082.168-.258.514-.222.29.053.29.277.29.297zm-2.47.946c-.27 0-.333.357-.333.357h.53s.074-.357-.197-.357zm2.792-1.523a.179.179 0 1 0 0 .358.179.179 0 0 0 0-.358z" }) + ] + } + ); +}); + +exports.default = SiCodingame; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.d.ts new file mode 100644 index 000000000..9f8848815 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2BB13"; +declare const SiCodingame: IconType; +export { SiCodingame as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.mjs new file mode 100644 index 000000000..d02e6e3a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingame.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2BB13"; +const SiCodingame = React.forwardRef(function SiCodingame2({ title = "CodinGame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.025 11.893c-.1.293-.07.561.009.67.078.11.223.26.55.272.327.012.697-.167.697-.167l-.136.78c-.008.008-.4.138-.88.134-.661-.004-1.321-.317-1.261-1.252.006-.081.053-.398.128-.573a1.8 1.8 0 0 1 1.105-1.073c.67-.236 1.39-.016 1.39-.016l-.141.817s-.247-.203-.755-.154a1.055 1.055 0 0 0-.323.106.853.853 0 0 0-.383.456zm3.98.594c-.08.479-.446 1.097-1.397 1.097-.951 0-1.102-.618-1.016-1.097.217-1.134 1.394-1.077 1.394-1.077s1.195-.057 1.02 1.077zm-.887-.277c-.043-.175-.241-.169-.241-.169v.001s-.213-.017-.33.21c-.136.314-.075.514-.07.532.043.175.24.169.24.169v-.001s.214.017.33-.21c.136-.314.075-.514.07-.532zm3.827-1.747l-.534 3.07h-.868l.043-.245a.84.84 0 0 1-.66.3c-.527 0-.813-.395-.707-1.003.132-.76.65-1.2 1.138-1.2.234 0 .411.099.512.275v-.002l.208-1.195zm-1.43 1.577c-.205-.004-.36.242-.402.48-.04.238-.005.427.244.43.15 0 .326-.088.394-.43.028-.163.05-.48-.236-.48zm3.554-.556s-.259-.174-.698 0c-.189.073-.374.308-.374.308l.058-.335h-.867l-.26 1.493h.87l.1-.573.002-.019c.014-.071.078-.318.305-.318.265 0 .18.334.18.334l-.198 1.159h.866l.237-1.363c.09-.525-.22-.686-.22-.686zm-1.367-.338c.22 0 .398-.156.398-.349 0-.193-.178-.349-.398-.349-.22 0-.398.156-.398.35 0 .191.178.348.398.348zm3.723.146c.605 0 .818.158.818.158l.134-.768c-.405-.102-2.343-.479-2.782 1.463-.264 1.52 1.343 1.438 1.343 1.438s.634 0 1.176-.244l.189-1.09-.885-.003-.1.6s-.55.147-.753-.265c-.077-.152-.025-.449-.025-.449s.117-.84.885-.84zm3.21 1.032l-.21 1.209h-.788l.055-.315s-.26.366-.706.366c-.65 0-.52-.655-.52-.655s.053-.561.752-.679l.646-.071s.079-.241-.303-.241-.763.207-.763.207l.1-.577s.516-.187.995-.163c1.01.005.742.919.742.919zm-.84.258s-.158.033-.3.045c-.225.034-.253.182-.257.203-.038.22.196.19.196.19s.248.009.338-.31zm4.29-1.178c-.512 0-.766.364-.766.364s-.098-.364-.57-.364c-.471 0-.756.376-.756.376l.056-.321h-.87l-.361 2.074h.87l.209-1.201s.07-.293.303-.293c.232 0 .176.297.176.297l-.208 1.197h.872l.207-1.193s.058-.301.301-.301c.244 0 .174.309.174.309l-.21 1.184h.878l.241-1.388c0 .001.133-.74-.546-.74zm4.414-.417c0 .02.01.297-.483.382-.858.11-.96.575-.97.63-.012.055.005.163-.032.35a50.196 50.196 0 0 0-.06.394H20.62s.041.293.412.293.63-.116.63-.116l-.087.536s-.26.134-.828.134c-.09 0-1.115-.002-.926-1.091.091-.524.557-1.095 1.368-1.095.38-.002.4.133.767.133.31-.008.57-.305.57-.305s.094-.15.17-.32c.06-.082.168-.258.514-.222.29.053.29.277.29.297zm-2.47.946c-.27 0-.333.357-.333.357h.53s.074-.357-.197-.357zm2.792-1.523a.179.179 0 1 0 0 .358.179.179 0 0 0 0-.358z" }) + ] + } + ); +}); + +export { SiCodingame as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.cjs new file mode 100644 index 000000000..dd29062dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD6620"; +const SiCodingninjas = React__namespace.forwardRef(function SiCodingninjas2({ title = "Coding Ninjas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.198 0c-.499.264-1.209.675-1.79.984a542.82 542.82 0 000 6.242c.995-.526 1.761-.834 1.79-2.066V0zM8.743.181C7.298.144 5.613.65 4.47 1.414c-1.17.8-1.987 1.869-2.572 3.179A16.787 16.787 0 00.9 8.87c-.15 1.483-.128 3.079.025 4.677.27 1.855.601 3.724 1.616 5.456 1.57 2.62 4.313 4.109 7.262 4.19 3.41.246 7.233.53 11.411.807.022-2.005.01-5.418 0-6.25-3.206-.21-7.398-.524-11.047-.782-.443-.043-.896-.056-1.324-.172-1.086-.295-1.806-.802-2.374-1.757-.643-1.107-.875-2.832-.797-4.294.11-1.27.287-2.41 1.244-3.44.669-.56 1.307-.758 2.161-.84 5.17.345 7.609.53 12.137.858.032-1.133.01-3.46 0-6.229C16.561.752 12.776.474 8.743.181zm-.281 9.7c.174.675.338 1.305.729 1.903.537.832 1.375 1.127 2.388.877.76-.196 1.581-.645 2.35-1.282zm12.974 1.04l-5.447.689c.799.739 1.552 1.368 2.548 1.703.988.319 1.78.01 2.308-.777.209-.329.56-1.148.591-1.614zm.842 6.461c-.388.01-.665.198-.87.355.002 1.798 0 4.127 0 6.223.586-.297 1.135-.644 1.793-.998-.005-1.454.002-3.137-.005-4.707a.904.904 0 00-.917-.873z" }) + ] + } + ); +}); + +exports.default = SiCodingninjas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.d.ts new file mode 100644 index 000000000..d96863525 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD6620"; +declare const SiCodingninjas: IconType; +export { SiCodingninjas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.mjs new file mode 100644 index 000000000..ae207c971 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodingninjas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD6620"; +const SiCodingninjas = React.forwardRef(function SiCodingninjas2({ title = "Coding Ninjas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.198 0c-.499.264-1.209.675-1.79.984a542.82 542.82 0 000 6.242c.995-.526 1.761-.834 1.79-2.066V0zM8.743.181C7.298.144 5.613.65 4.47 1.414c-1.17.8-1.987 1.869-2.572 3.179A16.787 16.787 0 00.9 8.87c-.15 1.483-.128 3.079.025 4.677.27 1.855.601 3.724 1.616 5.456 1.57 2.62 4.313 4.109 7.262 4.19 3.41.246 7.233.53 11.411.807.022-2.005.01-5.418 0-6.25-3.206-.21-7.398-.524-11.047-.782-.443-.043-.896-.056-1.324-.172-1.086-.295-1.806-.802-2.374-1.757-.643-1.107-.875-2.832-.797-4.294.11-1.27.287-2.41 1.244-3.44.669-.56 1.307-.758 2.161-.84 5.17.345 7.609.53 12.137.858.032-1.133.01-3.46 0-6.229C16.561.752 12.776.474 8.743.181zm-.281 9.7c.174.675.338 1.305.729 1.903.537.832 1.375 1.127 2.388.877.76-.196 1.581-.645 2.35-1.282zm12.974 1.04l-5.447.689c.799.739 1.552 1.368 2.548 1.703.988.319 1.78.01 2.308-.777.209-.329.56-1.148.591-1.614zm.842 6.461c-.388.01-.665.198-.87.355.002 1.798 0 4.127 0 6.223.586-.297 1.135-.644 1.793-.998-.005-1.454.002-3.137-.005-4.707a.904.904 0 00-.917-.873z" }) + ] + } + ); +}); + +export { SiCodingninjas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.cjs new file mode 100644 index 000000000..7f15363ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4574E0"; +const SiCodio = React__namespace.forwardRef(function SiCodio2({ title = "Codio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.997 24L1.605 17.997v-12L12 0l10.396 5.997L16.5 9.402 12 6.8 7.496 9.4v5.2l4.502 2.6 4.5-2.6 5.895 3.397L12.003 24h-.006z" }) + ] + } + ); +}); + +exports.default = SiCodio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.d.ts new file mode 100644 index 000000000..d1b764412 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4574E0"; +declare const SiCodio: IconType; +export { SiCodio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.mjs new file mode 100644 index 000000000..6a0a4e812 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCodio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4574E0"; +const SiCodio = React.forwardRef(function SiCodio2({ title = "Codio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.997 24L1.605 17.997v-12L12 0l10.396 5.997L16.5 9.402 12 6.8 7.496 9.4v5.2l4.502 2.6 4.5-2.6 5.895 3.397L12.003 24h-.006z" }) + ] + } + ); +}); + +export { SiCodio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.cjs new file mode 100644 index 000000000..1130ad88b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F2625"; +const SiCoffeescript = React__namespace.forwardRef(function SiCoffeescript2({ title = "CoffeeScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.645 7.472c2.1.53 4.779.8 8.008.8 3.299 0 5.918-.27 8.008-.8 2.23-.52 3.299-1.22 3.299-1.88 0-.47-.48-.93-1.35-1.28.2.13.35.35.35.59 0 .67-1.01 1.22-3.039 1.68-1.88.41-4.279.7-7.198.7-2.82 0-5.329-.29-7.138-.68-1.95-.48-2.97-1-2.97-1.68 0-.28.13-.52.52-.8-1.22.47-1.88.87-1.88 1.47.07.68 1.16 1.36 3.39 1.88zm4.689-2.16c2.27-.2 2.929-1.659 5.588-1.899 1.31-.1 2.14.16 2.23.62.08.43-.57.72-1.36.78-1.09.11-1.54-.28-1.63-.65-.81.09-.94.43-.9.67.09.46 1.07.92 2.75.76 1.9-.15 2.54-.9 2.38-1.65-.2-.98-1.66-1.8-4.28-1.55-3.359.3-3.339 1.86-5.628 2.05-.94.09-1.46-.13-1.55-.5-.06-.37.4-.55.94-.59.5-.05 1.11.04 1.4.2.21-.11.28-.22.26-.35-.1-.35-.79-.5-1.66-.44-1.7.15-1.7.91-1.64 1.25.17.87 1.48 1.45 3.1 1.3zm11.417 3.84c-2.1.49-4.779.809-8.008.809-3.3 0-5.989-.34-8.078-.8-1.88-.48-2.88-1.01-3.23-1.56.18 1.23.49 2.42.89 3.55-.48.3-.91.67-1.3 1.17a4.519 4.519 0 00-1.019 3.098 3.6 3.599 0 001.42 2.62c.87.68 1.81.88 2.879.68.41-.07.87-.28 1.29-.42-.88 0-1.62-.28-2.36-.87a3.55 3.549 0 01-1.49-2.42c-.2-.94 0-1.81.53-2.579.12-.15.25-.28.39-.4.3.73.62 1.45.98 2.12.81 1.23 1.62 2.299 2.43 3.459.35.68.58 1.35.74 2.019a3.899 3.899 0 002.229 1.5c1.15.4 2.35.58 3.579.51h.13a10.197 10.197 0 003.689-.52 4.179 4.179 0 002.16-1.49h.07c.13-.67.35-1.34.67-2.02.799-1.17 1.619-2.229 2.419-3.458A20.995 20.993 0 0024 7.612c-.43.6-1.44 1.13-3.25 1.54z" }) + ] + } + ); +}); + +exports.default = SiCoffeescript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.d.ts new file mode 100644 index 000000000..726a260ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F2625"; +declare const SiCoffeescript: IconType; +export { SiCoffeescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.mjs new file mode 100644 index 000000000..0b19535f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoffeescript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F2625"; +const SiCoffeescript = React.forwardRef(function SiCoffeescript2({ title = "CoffeeScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.645 7.472c2.1.53 4.779.8 8.008.8 3.299 0 5.918-.27 8.008-.8 2.23-.52 3.299-1.22 3.299-1.88 0-.47-.48-.93-1.35-1.28.2.13.35.35.35.59 0 .67-1.01 1.22-3.039 1.68-1.88.41-4.279.7-7.198.7-2.82 0-5.329-.29-7.138-.68-1.95-.48-2.97-1-2.97-1.68 0-.28.13-.52.52-.8-1.22.47-1.88.87-1.88 1.47.07.68 1.16 1.36 3.39 1.88zm4.689-2.16c2.27-.2 2.929-1.659 5.588-1.899 1.31-.1 2.14.16 2.23.62.08.43-.57.72-1.36.78-1.09.11-1.54-.28-1.63-.65-.81.09-.94.43-.9.67.09.46 1.07.92 2.75.76 1.9-.15 2.54-.9 2.38-1.65-.2-.98-1.66-1.8-4.28-1.55-3.359.3-3.339 1.86-5.628 2.05-.94.09-1.46-.13-1.55-.5-.06-.37.4-.55.94-.59.5-.05 1.11.04 1.4.2.21-.11.28-.22.26-.35-.1-.35-.79-.5-1.66-.44-1.7.15-1.7.91-1.64 1.25.17.87 1.48 1.45 3.1 1.3zm11.417 3.84c-2.1.49-4.779.809-8.008.809-3.3 0-5.989-.34-8.078-.8-1.88-.48-2.88-1.01-3.23-1.56.18 1.23.49 2.42.89 3.55-.48.3-.91.67-1.3 1.17a4.519 4.519 0 00-1.019 3.098 3.6 3.599 0 001.42 2.62c.87.68 1.81.88 2.879.68.41-.07.87-.28 1.29-.42-.88 0-1.62-.28-2.36-.87a3.55 3.549 0 01-1.49-2.42c-.2-.94 0-1.81.53-2.579.12-.15.25-.28.39-.4.3.73.62 1.45.98 2.12.81 1.23 1.62 2.299 2.43 3.459.35.68.58 1.35.74 2.019a3.899 3.899 0 002.229 1.5c1.15.4 2.35.58 3.579.51h.13a10.197 10.197 0 003.689-.52 4.179 4.179 0 002.16-1.49h.07c.13-.67.35-1.34.67-2.02.799-1.17 1.619-2.229 2.419-3.458A20.995 20.993 0 0024 7.612c-.43.6-1.44 1.13-3.25 1.54z" }) + ] + } + ); +}); + +export { SiCoffeescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.cjs new file mode 100644 index 000000000..2be36efd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9ED56B"; +const SiCoggle = React__namespace.forwardRef(function SiCoggle2({ title = "Coggle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.684 0A3.683 3.683 0 0 0 0 3.684v10.92c2.052-.535 3.606-1.577 5.158-3.13h7.367v7.368c-1.88 1.88-5.438 4.598-8.052 5.158h15.843A3.683 3.683 0 0 0 24 20.316V8.881c-1.544.537-3.087 1.575-4.63 3.119l-4.74 4.736V9.37H7.265l3.683-3.685c2.35-2.35 5.96-5.119 8.58-5.684H3.684z" }) + ] + } + ); +}); + +exports.default = SiCoggle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.d.ts new file mode 100644 index 000000000..b3a60cd11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9ED56B"; +declare const SiCoggle: IconType; +export { SiCoggle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.mjs new file mode 100644 index 000000000..d2283ea26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoggle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9ED56B"; +const SiCoggle = React.forwardRef(function SiCoggle2({ title = "Coggle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.684 0A3.683 3.683 0 0 0 0 3.684v10.92c2.052-.535 3.606-1.577 5.158-3.13h7.367v7.368c-1.88 1.88-5.438 4.598-8.052 5.158h15.843A3.683 3.683 0 0 0 24 20.316V8.881c-1.544.537-3.087 1.575-4.63 3.119l-4.74 4.736V9.37H7.265l3.683-3.685c2.35-2.35 5.96-5.119 8.58-5.684H3.684z" }) + ] + } + ); +}); + +export { SiCoggle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.cjs new file mode 100644 index 000000000..ebe9bf6b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052FF"; +const SiCoinbase = React__namespace.forwardRef(function SiCoinbase2({ title = "Coinbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.844 11.053c-.872 0-1.553.662-1.553 1.548s.664 1.542 1.553 1.542c.889 0 1.564-.667 1.564-1.547 0-.875-.664-1.543-1.564-1.543zm.006 2.452c-.497 0-.86-.386-.86-.904 0-.523.357-.909.854-.909.502 0 .866.392.866.91 0 .517-.364.903-.86.903zm1.749-1.778h.433v2.36h.693V11.11H6.599zm-5.052-.035c.364 0 .653.224.762.558h.734c-.133-.713-.722-1.197-1.49-1.197-.872 0-1.553.662-1.553 1.548 0 .887.664 1.543 1.553 1.543.75 0 1.351-.484 1.484-1.203h-.728a.78.78 0 01-.756.564c-.502 0-.855-.386-.855-.904 0-.523.347-.909.85-.909zm18.215.622l-.508-.075c-.242-.035-.415-.115-.415-.305 0-.207.225-.31.53-.31.336 0 .55.143.595.379h.67c-.075-.599-.537-.95-1.247-.95-.733 0-1.218.375-1.218.904 0 .506.317.8.958.892l.508.075c.249.034.387.132.387.316 0 .236-.242.334-.577.334-.41 0-.641-.167-.676-.42h-.681c.064.581.52.99 1.35.99.757 0 1.26-.346 1.26-.938 0-.53-.364-.806-.936-.892zM7.378 9.885a.429.429 0 00-.444.437c0 .254.19.438.444.438a.429.429 0 00.445-.438.429.429 0 00-.445-.437zm10.167 2.245c0-.645-.392-1.076-1.224-1.076-.785 0-1.224.397-1.31 1.007h.687c.035-.236.22-.432.612-.432.352 0 .525.155.525.345 0 .248-.317.311-.71.351-.531.058-1.19.242-1.19.933 0 .535.4.88 1.034.88.497 0 .809-.207.965-.535.023.293.242.483.548.483h.404v-.616h-.34v-1.34zm-.68.748c0 .397-.347.69-.769.69-.26 0-.48-.11-.48-.34 0-.293.353-.373.676-.408.312-.028.485-.097.572-.23zm-3.679-1.825c-.386 0-.71.162-.94.432V9.856h-.693v4.23h.68v-.391c.232.282.56.449.953.449.832 0 1.461-.656 1.461-1.543 0-.886-.64-1.548-1.46-1.548zm-.103 2.452c-.497 0-.86-.386-.86-.904 0-.517.369-.909.865-.909.503 0 .855.386.855.91 0 .517-.364.903-.86.903zm-3.187-2.452c-.45 0-.745.184-.919.443v-.385H8.29v2.975h.693v-1.617c0-.455.289-.777.716-.777.398 0 .647.282.647.69v1.704h.692v-1.755c0-.748-.386-1.278-1.142-1.278zM24 12.503c0-.851-.624-1.45-1.46-1.45-.89 0-1.542.668-1.542 1.548 0 .927.698 1.543 1.553 1.543.722 0 1.287-.426 1.432-1.03h-.722c-.104.264-.358.414-.699.414-.445 0-.78-.276-.854-.76H24v-.264zm-2.252-.23c.11-.414.422-.615.78-.615.392 0 .693.224.762.615Z" }) + ] + } + ); +}); + +exports.default = SiCoinbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.d.ts new file mode 100644 index 000000000..428bfa563 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052FF"; +declare const SiCoinbase: IconType; +export { SiCoinbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.mjs new file mode 100644 index 000000000..2c48fb016 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052FF"; +const SiCoinbase = React.forwardRef(function SiCoinbase2({ title = "Coinbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.844 11.053c-.872 0-1.553.662-1.553 1.548s.664 1.542 1.553 1.542c.889 0 1.564-.667 1.564-1.547 0-.875-.664-1.543-1.564-1.543zm.006 2.452c-.497 0-.86-.386-.86-.904 0-.523.357-.909.854-.909.502 0 .866.392.866.91 0 .517-.364.903-.86.903zm1.749-1.778h.433v2.36h.693V11.11H6.599zm-5.052-.035c.364 0 .653.224.762.558h.734c-.133-.713-.722-1.197-1.49-1.197-.872 0-1.553.662-1.553 1.548 0 .887.664 1.543 1.553 1.543.75 0 1.351-.484 1.484-1.203h-.728a.78.78 0 01-.756.564c-.502 0-.855-.386-.855-.904 0-.523.347-.909.85-.909zm18.215.622l-.508-.075c-.242-.035-.415-.115-.415-.305 0-.207.225-.31.53-.31.336 0 .55.143.595.379h.67c-.075-.599-.537-.95-1.247-.95-.733 0-1.218.375-1.218.904 0 .506.317.8.958.892l.508.075c.249.034.387.132.387.316 0 .236-.242.334-.577.334-.41 0-.641-.167-.676-.42h-.681c.064.581.52.99 1.35.99.757 0 1.26-.346 1.26-.938 0-.53-.364-.806-.936-.892zM7.378 9.885a.429.429 0 00-.444.437c0 .254.19.438.444.438a.429.429 0 00.445-.438.429.429 0 00-.445-.437zm10.167 2.245c0-.645-.392-1.076-1.224-1.076-.785 0-1.224.397-1.31 1.007h.687c.035-.236.22-.432.612-.432.352 0 .525.155.525.345 0 .248-.317.311-.71.351-.531.058-1.19.242-1.19.933 0 .535.4.88 1.034.88.497 0 .809-.207.965-.535.023.293.242.483.548.483h.404v-.616h-.34v-1.34zm-.68.748c0 .397-.347.69-.769.69-.26 0-.48-.11-.48-.34 0-.293.353-.373.676-.408.312-.028.485-.097.572-.23zm-3.679-1.825c-.386 0-.71.162-.94.432V9.856h-.693v4.23h.68v-.391c.232.282.56.449.953.449.832 0 1.461-.656 1.461-1.543 0-.886-.64-1.548-1.46-1.548zm-.103 2.452c-.497 0-.86-.386-.86-.904 0-.517.369-.909.865-.909.503 0 .855.386.855.91 0 .517-.364.903-.86.903zm-3.187-2.452c-.45 0-.745.184-.919.443v-.385H8.29v2.975h.693v-1.617c0-.455.289-.777.716-.777.398 0 .647.282.647.69v1.704h.692v-1.755c0-.748-.386-1.278-1.142-1.278zM24 12.503c0-.851-.624-1.45-1.46-1.45-.89 0-1.542.668-1.542 1.548 0 .927.698 1.543 1.553 1.543.722 0 1.287-.426 1.432-1.03h-.722c-.104.264-.358.414-.699.414-.445 0-.78-.276-.854-.76H24v-.264zm-2.252-.23c.11-.414.422-.615.78-.615.392 0 .693.224.762.615Z" }) + ] + } + ); +}); + +export { SiCoinbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.cjs new file mode 100644 index 000000000..efa5d2f28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17181B"; +const SiCoinmarketcap = React__namespace.forwardRef(function SiCoinmarketcap2({ title = "CoinMarketCap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.738 14.341c-.419.265-.912.298-1.286.087-.476-.27-.738-.898-.738-1.774v-2.618c0-1.264-.5-2.164-1.336-2.407-1.416-.413-2.482 1.32-2.882 1.972l-2.498 4.05v-4.95c-.028-1.14-.398-1.821-1.1-2.027-.466-.135-1.161-.081-1.837.953l-5.597 8.987A9.875 9.875 0 0 1 2.326 12c0-5.414 4.339-9.818 9.672-9.818 5.332 0 9.67 4.404 9.67 9.818.004.018.002.034.003.053.05 1.049-.29 1.883-.933 2.29zm3.08-2.34-.001-.055C23.787 5.353 18.497 0 11.997 0 5.48 0 .177 5.383.177 12c0 6.616 5.303 12 11.82 12 2.991 0 5.846-1.137 8.037-3.2.435-.41.46-1.1.057-1.541a1.064 1.064 0 0 0-1.519-.059 9.56 9.56 0 0 1-6.574 2.618c-2.856 0-5.425-1.263-7.197-3.268l5.048-8.105v3.737c0 1.794.696 2.374 1.28 2.544.584.17 1.476.054 2.413-1.468.998-1.614 2.025-3.297 3.023-4.88v2.276c0 1.678.672 3.02 1.843 3.68 1.056.597 2.384.543 3.465-.14 1.312-.828 2.018-2.354 1.944-4.193z" }) + ] + } + ); +}); + +exports.default = SiCoinmarketcap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.d.ts new file mode 100644 index 000000000..e9d56f5a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17181B"; +declare const SiCoinmarketcap: IconType; +export { SiCoinmarketcap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.mjs new file mode 100644 index 000000000..df40caebb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoinmarketcap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17181B"; +const SiCoinmarketcap = React.forwardRef(function SiCoinmarketcap2({ title = "CoinMarketCap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.738 14.341c-.419.265-.912.298-1.286.087-.476-.27-.738-.898-.738-1.774v-2.618c0-1.264-.5-2.164-1.336-2.407-1.416-.413-2.482 1.32-2.882 1.972l-2.498 4.05v-4.95c-.028-1.14-.398-1.821-1.1-2.027-.466-.135-1.161-.081-1.837.953l-5.597 8.987A9.875 9.875 0 0 1 2.326 12c0-5.414 4.339-9.818 9.672-9.818 5.332 0 9.67 4.404 9.67 9.818.004.018.002.034.003.053.05 1.049-.29 1.883-.933 2.29zm3.08-2.34-.001-.055C23.787 5.353 18.497 0 11.997 0 5.48 0 .177 5.383.177 12c0 6.616 5.303 12 11.82 12 2.991 0 5.846-1.137 8.037-3.2.435-.41.46-1.1.057-1.541a1.064 1.064 0 0 0-1.519-.059 9.56 9.56 0 0 1-6.574 2.618c-2.856 0-5.425-1.263-7.197-3.268l5.048-8.105v3.737c0 1.794.696 2.374 1.28 2.544.584.17 1.476.054 2.413-1.468.998-1.614 2.025-3.297 3.023-4.88v2.276c0 1.678.672 3.02 1.843 3.68 1.056.597 2.384.543 3.465-.14 1.312-.828 2.018-2.354 1.944-4.193z" }) + ] + } + ); +}); + +export { SiCoinmarketcap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.cjs new file mode 100644 index 000000000..e183c01cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C2983"; +const SiCollaboraonline = React__namespace.forwardRef(function SiCollaboraonline2({ title = "Collabora Online", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.852 0 3.55 5.303 10.247 12 3.55 18.698 8.852 24l12-12zM3.147 5.706v12.588L9.442 12z" }) + ] + } + ); +}); + +exports.default = SiCollaboraonline; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.d.ts new file mode 100644 index 000000000..00800617d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C2983"; +declare const SiCollaboraonline: IconType; +export { SiCollaboraonline as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.mjs new file mode 100644 index 000000000..d15dbed6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCollaboraonline.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C2983"; +const SiCollaboraonline = React.forwardRef(function SiCollaboraonline2({ title = "Collabora Online", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.852 0 3.55 5.303 10.247 12 3.55 18.698 8.852 24l12-12zM3.147 5.706v12.588L9.442 12z" }) + ] + } + ); +}); + +export { SiCollaboraonline as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.cjs new file mode 100644 index 000000000..ed412cf9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#79BD42"; +const SiComicfury = React__namespace.forwardRef(function SiComicfury2({ title = "ComicFury", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 6.959 1.899-3.256 2.725 2.736 2.973-.204L9.3 3.297l2.213 2.693 8.655-.252.406-1.085L24 5.128v5.268l-11.248 3.526-1.085 6.781H0V6.959zm2.195-.748L1.041 8.137l1.75 1.748 1.133-1.948-1.729-1.726zm7.409-.448L8.48 7.546l1.224 1.598 1.137-1.766-1.237-1.615zm3.901 3.751-1.992.349.997 2.025.995-2.374zm3.319-.565-1.992.348.996 2.025.996-2.373zm3.228-.611-1.991.349.996 2.025.995-2.374zm3.183-.566-1.992.349.996 2.025.996-2.374z" }) + ] + } + ); +}); + +exports.default = SiComicfury; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.d.ts new file mode 100644 index 000000000..e37762883 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#79BD42"; +declare const SiComicfury: IconType; +export { SiComicfury as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.mjs new file mode 100644 index 000000000..0ef89b823 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComicfury.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#79BD42"; +const SiComicfury = React.forwardRef(function SiComicfury2({ title = "ComicFury", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 6.959 1.899-3.256 2.725 2.736 2.973-.204L9.3 3.297l2.213 2.693 8.655-.252.406-1.085L24 5.128v5.268l-11.248 3.526-1.085 6.781H0V6.959zm2.195-.748L1.041 8.137l1.75 1.748 1.133-1.948-1.729-1.726zm7.409-.448L8.48 7.546l1.224 1.598 1.137-1.766-1.237-1.615zm3.901 3.751-1.992.349.997 2.025.995-2.374zm3.319-.565-1.992.348.996 2.025.996-2.373zm3.228-.611-1.991.349.996 2.025.995-2.374zm3.183-.566-1.992.349.996 2.025.996-2.374z" }) + ] + } + ); +}); + +export { SiComicfury as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComma.cjs new file mode 100644 index 000000000..91ecdabc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#51FF00"; +const SiComma = React__namespace.forwardRef(function SiComma2({ title = "comma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.72682 24c0-.55531-.0434-1.02051.02045-1.46891.0272-.1912.25037-.39595.43237-.51143.88731-.56315 1.85122-1.01275 2.67734-1.65857 2.67584-2.09206 4.26201-4.84612 4.3487-8.42366.02452-1.01583-.34891-1.2696-1.20211-.87389-2.4628 1.1424-5.11119.47263-6.5246-1.65034-1.54137-2.3155-1.32431-5.3984.52253-7.4211 2.359-2.58344 6.24053-2.66074 8.91722-.19346 1.60337 1.47794 2.3652 3.38627 2.5552 5.5569.63691 7.27188-3.01046 13.2657-9.64881 15.89874-.657.26045-1.3307.4744-2.09828.74571" }) + ] + } + ); +}); + +exports.default = SiComma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiComma.d.ts new file mode 100644 index 000000000..32dbc98e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#51FF00"; +declare const SiComma: IconType; +export { SiComma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComma.mjs new file mode 100644 index 000000000..1c7128b78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#51FF00"; +const SiComma = React.forwardRef(function SiComma2({ title = "comma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.72682 24c0-.55531-.0434-1.02051.02045-1.46891.0272-.1912.25037-.39595.43237-.51143.88731-.56315 1.85122-1.01275 2.67734-1.65857 2.67584-2.09206 4.26201-4.84612 4.3487-8.42366.02452-1.01583-.34891-1.2696-1.20211-.87389-2.4628 1.1424-5.11119.47263-6.5246-1.65034-1.54137-2.3155-1.32431-5.3984.52253-7.4211 2.359-2.58344 6.24053-2.66074 8.91722-.19346 1.60337 1.47794 2.3652 3.38627 2.5552 5.5569.63691 7.27188-3.01046 13.2657-9.64881 15.89874-.657.26045-1.3307.4744-2.09828.74571" }) + ] + } + ); +}); + +export { SiComma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.cjs new file mode 100644 index 000000000..b39e739eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCC33"; +const SiCommerzbank = React__namespace.forwardRef(function SiCommerzbank2({ title = "Commerzbank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.277 1.538a.018.018 0 0 0-.012.007l-4.74 8.21-1.398 2.418c.446.774.794 1.353 1.22 2.09.671 1.164 1.548 1.597 3.13 1.889a12.9 12.9 0 0 1 .697-1.392l2.783-4.824 2.786-4.826c.404-.702 1.296-2.143 2.57-2.965-.04.025-.07.059-.109.085.07-.047.137-.094.209-.136.46-.278.98-.467 1.413-.515.339-.038 1.465-.041 2.74-.041zm11.59.505c-1.048-.008-1.462.007-2.545.008-1.39 0-2.381.887-3.083 1.773.372.493.68.971.863 1.288a13357.605 13357.605 0 0 0 5.571 9.648c.404.7 1.209 2.196 1.284 3.71.029.574-.079 1.165-.265 1.592-.131.3-.652 1.207-1.256 2.253L24 12.678v-.008a.013.013 0 0 0-.002-.005zM.001 8.163l.095 4.946L0 8.163zm.093 4.946 1.132 1.964 4.264 7.384a.015.015 0 0 0 .012.005h12.265c.446-.779.664-1.147 1.311-2.282.709-1.242.278-2.681-.037-3.472-.618.076-1.18.093-1.547.093H6.35c-.809 0-2.505-.05-3.853-.741-.513-.263-.972-.65-1.248-1.027-.176-.238-.625-1.003-1.156-1.924z" }) + ] + } + ); +}); + +exports.default = SiCommerzbank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.d.ts new file mode 100644 index 000000000..74684827c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCC33"; +declare const SiCommerzbank: IconType; +export { SiCommerzbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.mjs new file mode 100644 index 000000000..1c9f45a02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommerzbank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCC33"; +const SiCommerzbank = React.forwardRef(function SiCommerzbank2({ title = "Commerzbank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.277 1.538a.018.018 0 0 0-.012.007l-4.74 8.21-1.398 2.418c.446.774.794 1.353 1.22 2.09.671 1.164 1.548 1.597 3.13 1.889a12.9 12.9 0 0 1 .697-1.392l2.783-4.824 2.786-4.826c.404-.702 1.296-2.143 2.57-2.965-.04.025-.07.059-.109.085.07-.047.137-.094.209-.136.46-.278.98-.467 1.413-.515.339-.038 1.465-.041 2.74-.041zm11.59.505c-1.048-.008-1.462.007-2.545.008-1.39 0-2.381.887-3.083 1.773.372.493.68.971.863 1.288a13357.605 13357.605 0 0 0 5.571 9.648c.404.7 1.209 2.196 1.284 3.71.029.574-.079 1.165-.265 1.592-.131.3-.652 1.207-1.256 2.253L24 12.678v-.008a.013.013 0 0 0-.002-.005zM.001 8.163l.095 4.946L0 8.163zm.093 4.946 1.132 1.964 4.264 7.384a.015.015 0 0 0 .012.005h12.265c.446-.779.664-1.147 1.311-2.282.709-1.242.278-2.681-.037-3.472-.618.076-1.18.093-1.547.093H6.35c-.809 0-2.505-.05-3.853-.741-.513-.263-.972-.65-1.248-1.027-.176-.238-.625-1.003-1.156-1.924z" }) + ] + } + ); +}); + +export { SiCommerzbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.cjs new file mode 100644 index 000000000..d1568f9da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCommitlint = React__namespace.forwardRef(function SiCommitlint2({ title = "commitlint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.988 4.822v.901h1.845v6.337c0 .809.187 1.433.563 1.875.379.438.913.657 1.6.657h1.458v-.97H12.11c-.37 0-.652-.13-.844-.393-.187-.263-.281-.652-.281-1.17V4.823ZM3.459 7.418c-1.084 0-1.933.325-2.546.976C.304 9.044 0 9.944 0 11.096c0 1.15.304 2.051.913 2.702.613.65 1.462.976 2.546.976a3.67 3.67 0 0 0 1-.137c.33-.088.65-.221.958-.4V13.04c-.271.259-.565.45-.882.576a3 3 0 0 1-1.076.18c-.717 0-1.272-.232-1.664-.7-.387-.47-.582-1.138-.582-2.001 0-.868.195-1.535.582-2.002.388-.467.943-.7 1.664-.7.388 0 .734.06 1.038.181a3.1 3.1 0 0 1 .92.588V7.956a4.255 4.255 0 0 0-.97-.406 3.74 3.74 0 0 0-.988-.132Zm12.855 6.123v1.128H24V13.54zm3.156 2.255-2.302 3.382h1.3l1.694-2.204 1.684 2.204h1.3l-2.301-3.382z" }) + ] + } + ); +}); + +exports.default = SiCommitlint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.d.ts new file mode 100644 index 000000000..85f4228f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCommitlint: IconType; +export { SiCommitlint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.mjs new file mode 100644 index 000000000..4b943c3cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommitlint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCommitlint = React.forwardRef(function SiCommitlint2({ title = "commitlint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.988 4.822v.901h1.845v6.337c0 .809.187 1.433.563 1.875.379.438.913.657 1.6.657h1.458v-.97H12.11c-.37 0-.652-.13-.844-.393-.187-.263-.281-.652-.281-1.17V4.823ZM3.459 7.418c-1.084 0-1.933.325-2.546.976C.304 9.044 0 9.944 0 11.096c0 1.15.304 2.051.913 2.702.613.65 1.462.976 2.546.976a3.67 3.67 0 0 0 1-.137c.33-.088.65-.221.958-.4V13.04c-.271.259-.565.45-.882.576a3 3 0 0 1-1.076.18c-.717 0-1.272-.232-1.664-.7-.387-.47-.582-1.138-.582-2.001 0-.868.195-1.535.582-2.002.388-.467.943-.7 1.664-.7.388 0 .734.06 1.038.181a3.1 3.1 0 0 1 .92.588V7.956a4.255 4.255 0 0 0-.97-.406 3.74 3.74 0 0 0-.988-.132Zm12.855 6.123v1.128H24V13.54zm3.156 2.255-2.302 3.382h1.3l1.694-2.204 1.684 2.204h1.3l-2.301-3.382z" }) + ] + } + ); +}); + +export { SiCommitlint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.cjs new file mode 100644 index 000000000..98e6a37c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E2A4E"; +const SiCommodore = React__namespace.forwardRef(function SiCommodore2({ title = "Commodore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.202.798C5.016.798 0 5.814 0 12s5.016 11.202 11.202 11.202c1.094 0 2.153-.157 3.154-.45v-5.335a6.27 6.27 0 1 1 0-10.839v-5.33c-1-.293-2.057-.45-3.154-.45Zm3.375 6.343v4.304h5.27L24 7.14Zm-.037 5.377v4.304h9.423l-4.156-4.304z" }) + ] + } + ); +}); + +exports.default = SiCommodore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.d.ts new file mode 100644 index 000000000..c1efe0f59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E2A4E"; +declare const SiCommodore: IconType; +export { SiCommodore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.mjs new file mode 100644 index 000000000..2f520493d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommodore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E2A4E"; +const SiCommodore = React.forwardRef(function SiCommodore2({ title = "Commodore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.202.798C5.016.798 0 5.814 0 12s5.016 11.202 11.202 11.202c1.094 0 2.153-.157 3.154-.45v-5.335a6.27 6.27 0 1 1 0-10.839v-5.33c-1-.293-2.057-.45-3.154-.45Zm3.375 6.343v4.304h5.27L24 7.14Zm-.037 5.377v4.304h9.423l-4.156-4.304z" }) + ] + } + ); +}); + +export { SiCommodore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.cjs new file mode 100644 index 000000000..794206ef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCommonlisp = React__namespace.forwardRef(function SiCommonlisp2({ title = "Common Lisp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.445 23.987A12.001 12 0 1 1 15.005.382a12.013 12.013 0 0 1 6.217 3.938 11.96 11.958 0 0 1 2.376 4.59c.47 1.773.53 3.642.17 5.442a11.981 11.98 0 0 1-6.12 8.238 12.036 12.035 0 0 1-6.203 1.397zm5.234-2.038a5.8 5.8 0 0 0 3.1-1.236c.647-.518 1.446-1.436 2.029-2.33a11.688 11.687 0 0 0 1.847-7.41A11.68 11.678 0 0 0 19.64 3.14 11.674 11.673 0 0 0 11.796.304c-.232.004-.506.013-.61.02-1.636.117-3.1.506-4.48 1.192-.26.13-.637.333-.63.34a.845.845 0 0 0 .116-.028 6.114 6.113 0 0 1 3.78.241 6.235 6.234 0 0 1 2.68 2.036 6.075 6.074 0 0 1 1.19 3.007c.027.238.038.84.02 1.088a6.082 6.081 0 0 1-1.236 3.27 6.615 6.614 0 0 1-.546.625c-.507.53-.802.941-1.089 1.516a5.81 5.81 0 0 0-.15 4.817 5.795 5.794 0 0 0 5.837 3.521zm-3.848-5.028c.098-.192.429-.825.735-1.406.845-1.607 1.083-2.08 1.375-2.74.768-1.73 1.033-3.038.87-4.302-.156-1.22-.756-2.427-1.79-3.604a3.234 3.234 0 0 1-.147-.173c0-.003.45-.005 1.002-.003l1.002.003.063.1a78.36 78.36 0 0 1 1.257 2.133c1.817 3.212 3.136 6.344 4.212 10.001l.098.324c.005.013-.2.016-1.003.016h-1.007l-.008-.035c-.292-1.237-.728-2.572-1.36-4.16a55.634 55.628 0 0 0-.684-1.655c-.004 0-.014.022-.023.047l-.178.456c-.853 2.176-1.658 3.854-2.512 5.237l-.068.11h-2.013Zm-2.985 2.255a.98.98 0 0 0-.073-.09c-.69-.81-1.193-1.665-1.468-2.489-.434-1.305-.385-2.615.162-4.227.316-.933.743-1.843 1.822-3.887.514-.974.84-1.602.84-1.62 0-.005-.39-.01-.866-.01h-.865l-.17.287c-.878 1.47-1.666 3.16-2.565 5.504-.073.19-.11.268-.116.255a95.92 95.92 0 0 1-.72-1.736C5.203 9.61 4.762 8.3 4.462 7.1l-.06-.239-.875-.003-.876-.003.044.148c.71 2.397 1.5 4.524 2.427 6.532.82 1.777 1.762 3.512 3.037 5.595l.032.054h.828c.455 0 .827-.003.827-.006z" }) + ] + } + ); +}); + +exports.default = SiCommonlisp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.d.ts new file mode 100644 index 000000000..6fba38c76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCommonlisp: IconType; +export { SiCommonlisp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.mjs new file mode 100644 index 000000000..45baaecd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonlisp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCommonlisp = React.forwardRef(function SiCommonlisp2({ title = "Common Lisp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.445 23.987A12.001 12 0 1 1 15.005.382a12.013 12.013 0 0 1 6.217 3.938 11.96 11.958 0 0 1 2.376 4.59c.47 1.773.53 3.642.17 5.442a11.981 11.98 0 0 1-6.12 8.238 12.036 12.035 0 0 1-6.203 1.397zm5.234-2.038a5.8 5.8 0 0 0 3.1-1.236c.647-.518 1.446-1.436 2.029-2.33a11.688 11.687 0 0 0 1.847-7.41A11.68 11.678 0 0 0 19.64 3.14 11.674 11.673 0 0 0 11.796.304c-.232.004-.506.013-.61.02-1.636.117-3.1.506-4.48 1.192-.26.13-.637.333-.63.34a.845.845 0 0 0 .116-.028 6.114 6.113 0 0 1 3.78.241 6.235 6.234 0 0 1 2.68 2.036 6.075 6.074 0 0 1 1.19 3.007c.027.238.038.84.02 1.088a6.082 6.081 0 0 1-1.236 3.27 6.615 6.614 0 0 1-.546.625c-.507.53-.802.941-1.089 1.516a5.81 5.81 0 0 0-.15 4.817 5.795 5.794 0 0 0 5.837 3.521zm-3.848-5.028c.098-.192.429-.825.735-1.406.845-1.607 1.083-2.08 1.375-2.74.768-1.73 1.033-3.038.87-4.302-.156-1.22-.756-2.427-1.79-3.604a3.234 3.234 0 0 1-.147-.173c0-.003.45-.005 1.002-.003l1.002.003.063.1a78.36 78.36 0 0 1 1.257 2.133c1.817 3.212 3.136 6.344 4.212 10.001l.098.324c.005.013-.2.016-1.003.016h-1.007l-.008-.035c-.292-1.237-.728-2.572-1.36-4.16a55.634 55.628 0 0 0-.684-1.655c-.004 0-.014.022-.023.047l-.178.456c-.853 2.176-1.658 3.854-2.512 5.237l-.068.11h-2.013Zm-2.985 2.255a.98.98 0 0 0-.073-.09c-.69-.81-1.193-1.665-1.468-2.489-.434-1.305-.385-2.615.162-4.227.316-.933.743-1.843 1.822-3.887.514-.974.84-1.602.84-1.62 0-.005-.39-.01-.866-.01h-.865l-.17.287c-.878 1.47-1.666 3.16-2.565 5.504-.073.19-.11.268-.116.255a95.92 95.92 0 0 1-.72-1.736C5.203 9.61 4.762 8.3 4.462 7.1l-.06-.239-.875-.003-.876-.003.044.148c.71 2.397 1.5 4.524 2.427 6.532.82 1.777 1.762 3.512 3.037 5.595l.032.054h.828c.455 0 .827-.003.827-.006z" }) + ] + } + ); +}); + +export { SiCommonlisp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.cjs new file mode 100644 index 000000000..5dcd55bf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B5314C"; +const SiCommonworkflowlanguage = React__namespace.forwardRef(function SiCommonworkflowlanguage2({ title = "Common Workflow Language", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.905 0L8.571 5.4l.037.037.096.096 3.586 3.395-2.24 2.252h-.01l-1.576 1.586 3.737 3.766-3.735 3.803.126.139v.012L12.052 24l1.608-1.64-1.98-2.034 3.737-3.79-1.608-1.642-.01.012-2.13-2.129 3.867-3.866-.017-.015.016-.016-3.641-3.524 3.64-3.694z" }) + ] + } + ); +}); + +exports.default = SiCommonworkflowlanguage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.d.ts new file mode 100644 index 000000000..37eeece92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B5314C"; +declare const SiCommonworkflowlanguage: IconType; +export { SiCommonworkflowlanguage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.mjs new file mode 100644 index 000000000..2d7e04129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCommonworkflowlanguage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B5314C"; +const SiCommonworkflowlanguage = React.forwardRef(function SiCommonworkflowlanguage2({ title = "Common Workflow Language", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.905 0L8.571 5.4l.037.037.096.096 3.586 3.395-2.24 2.252h-.01l-1.576 1.586 3.737 3.766-3.735 3.803.126.139v.012L12.052 24l1.608-1.64-1.98-2.034 3.737-3.79-1.608-1.642-.01.012-2.13-2.129 3.867-3.866-.017-.015.016-.016-3.641-3.524 3.64-3.694z" }) + ] + } + ); +}); + +export { SiCommonworkflowlanguage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.cjs new file mode 100644 index 000000000..6ed9ad370 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#67C52A"; +const SiCompilerexplorer = React__namespace.forwardRef(function SiCompilerexplorer2({ title = "Compiler Explorer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.78 14.147h8.914v1.657H8.78Zm0-2.94h7.355v1.657H8.78Zm0-2.943h8.914V9.92H8.78Zm13.203 9.195a.656.656 0 0 1 0-.638c.13-.238.252-.476.366-.728a.271.271 0 0 0-.249-.383h-2.166a.656.656 0 0 0-.552.297 7.59 7.59 0 0 1-.977 1.208 7.323 7.323 0 0 1-5.21 2.156 7.321 7.321 0 0 1-5.208-2.157 7.32 7.32 0 0 1-2.157-5.21c0-1.969.766-3.821 2.156-5.211a7.323 7.323 0 0 1 5.21-2.156c1.967 0 3.819.766 5.21 2.157.368.369.696.783.976 1.207.12.186.327.297.551.297H22.1a.273.273 0 0 0 .248-.383 9.894 9.894 0 0 0-.365-.728.665.665 0 0 1 0-.638l.735-1.332a.663.663 0 0 0-.11-.787l-1.836-1.836a.659.66 0 0 0-.787-.11l-1.335.738a.656.656 0 0 1-.638-.004 9.767 9.768 0 0 0-2.005-.824.657.657 0 0 1-.452-.449L15.131.48a.664.664 0 0 0-.635-.48h-2.598a.657.657 0 0 0-.634.48l-.421 1.46a.657.657 0 0 1-.452.448c-.697.203-1.37.48-2.005.828-.2.11-.438.11-.638.003L6.41 2.484a.663.663 0 0 0-.787.11L3.788 4.432a.659.66 0 0 0-.11.787l.737 1.335c.11.2.107.438-.003.638a9.767 9.768 0 0 0-.825 2.005.657.657 0 0 1-.448.452l-1.46.42a.664.664 0 0 0-.479.635v2.599c0 .293.193.556.48.635l1.459.42a.657.657 0 0 1 .448.453c.204.697.48 1.37.828 2.004.11.2.11.438.004.64l-.738 1.334a.663.663 0 0 0 .11.786l1.835 1.837a.659.66 0 0 0 .787.11l1.335-.738c.2-.11.438-.107.638.003a9.767 9.768 0 0 0 2.005.825c.217.062.39.23.452.448l.42 1.46c.083.283.342.48.635.48h2.598a.657.657 0 0 0 .635-.48l.421-1.46a.657.657 0 0 1 .452-.448 9.975 9.976 0 0 0 2.004-.828.67.67 0 0 1 .639-.004l1.335.739c.259.14.58.096.786-.11l1.836-1.837a.659.66 0 0 0 .11-.787z" }) + ] + } + ); +}); + +exports.default = SiCompilerexplorer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.d.ts new file mode 100644 index 000000000..ad62e804f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#67C52A"; +declare const SiCompilerexplorer: IconType; +export { SiCompilerexplorer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.mjs new file mode 100644 index 000000000..3aa835df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCompilerexplorer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#67C52A"; +const SiCompilerexplorer = React.forwardRef(function SiCompilerexplorer2({ title = "Compiler Explorer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.78 14.147h8.914v1.657H8.78Zm0-2.94h7.355v1.657H8.78Zm0-2.943h8.914V9.92H8.78Zm13.203 9.195a.656.656 0 0 1 0-.638c.13-.238.252-.476.366-.728a.271.271 0 0 0-.249-.383h-2.166a.656.656 0 0 0-.552.297 7.59 7.59 0 0 1-.977 1.208 7.323 7.323 0 0 1-5.21 2.156 7.321 7.321 0 0 1-5.208-2.157 7.32 7.32 0 0 1-2.157-5.21c0-1.969.766-3.821 2.156-5.211a7.323 7.323 0 0 1 5.21-2.156c1.967 0 3.819.766 5.21 2.157.368.369.696.783.976 1.207.12.186.327.297.551.297H22.1a.273.273 0 0 0 .248-.383 9.894 9.894 0 0 0-.365-.728.665.665 0 0 1 0-.638l.735-1.332a.663.663 0 0 0-.11-.787l-1.836-1.836a.659.66 0 0 0-.787-.11l-1.335.738a.656.656 0 0 1-.638-.004 9.767 9.768 0 0 0-2.005-.824.657.657 0 0 1-.452-.449L15.131.48a.664.664 0 0 0-.635-.48h-2.598a.657.657 0 0 0-.634.48l-.421 1.46a.657.657 0 0 1-.452.448c-.697.203-1.37.48-2.005.828-.2.11-.438.11-.638.003L6.41 2.484a.663.663 0 0 0-.787.11L3.788 4.432a.659.66 0 0 0-.11.787l.737 1.335c.11.2.107.438-.003.638a9.767 9.768 0 0 0-.825 2.005.657.657 0 0 1-.448.452l-1.46.42a.664.664 0 0 0-.479.635v2.599c0 .293.193.556.48.635l1.459.42a.657.657 0 0 1 .448.453c.204.697.48 1.37.828 2.004.11.2.11.438.004.64l-.738 1.334a.663.663 0 0 0 .11.786l1.835 1.837a.659.66 0 0 0 .787.11l1.335-.738c.2-.11.438-.107.638.003a9.767 9.768 0 0 0 2.005.825c.217.062.39.23.452.448l.42 1.46c.083.283.342.48.635.48h2.598a.657.657 0 0 0 .635-.48l.421-1.46a.657.657 0 0 1 .452-.448 9.975 9.976 0 0 0 2.004-.828.67.67 0 0 1 .639-.004l1.335.739c.259.14.58.096.786-.11l1.836-1.837a.659.66 0 0 0 .11-.787z" }) + ] + } + ); +}); + +export { SiCompilerexplorer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.cjs new file mode 100644 index 000000000..c06b4b84f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#885630"; +const SiComposer = React__namespace.forwardRef(function SiComposer2({ title = "Composer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.66 0c-.07 0-.114.034-.164.095a.416.416 0 00-.07.43c.19.41.363.83.528 1.25.01.02.022.04.039.068-.04-.002-.05-.022-.063-.043-.297-.31-.648-.557-.998-.804-.473-.337-.99-.603-1.503-.872a.578.578 0 00-.214-.065l-.384-.04c-.202-.025-.355.09-.355.292 0 .108-.046.132-.135.14-.08.004-.187.115-.196.192a.694.694 0 00.228.619c.444.415.873.845 1.303 1.275l.015.007a.1.1 0 01.028.038c-.007.003-.014.003-.02.003a.057.057 0 01-.035-.022c-.002-.002-.005-.005-.005-.007-.062-.036-.127-.07-.187-.11-.3-.2-.595-.404-.895-.598a.943.943 0 00-.461-.17.453.453 0 00-.392.143.28.28 0 00-.088.253c.016.146.115.237.223.312.502.338.95.734 1.366 1.174.036.038.074.079.115.112.118.096.19.224.262.356.033.06.02.074-.043.074-.428 0-.836.118-1.246.204-.168.036-.334.094-.394.28-.065.21-.096.328.16.392a9.57 9.57 0 011.49.516.55.55 0 01.117.077c.12.104.23.219.362.303.38.247.77.478 1.22.583.053.012.1.039.15.05.05.015.085.044.095.094.029.178.139.279.305.33.02.006.038.02.06.028.052.017.076.055.093.108.067.24.137.478.212.715.026.08.002.1-.07.123-.372.108-.742.22-1.112.334-.132.04-.134.043-.067.163l.908 1.635c.127.23.132.23.365.11.024-.012.057-.053.079-.014.02.036.06.089.024.13-.113.129-.19.28-.286.42-.031.045-.031.074-.005.117.1.166.202.334.3.502.012.019.034.043.03.058l-.123.367a2.538 2.538 0 00-.317-.716c-.18-.288-.41-.542-.62-.811-.033-.04-.072-.077-.11-.115-.2-.207-.456-.332-.7-.478a1.026 1.026 0 00-.34-.127c-.374-.08-.746-.11-1.12.004-.075.024-.116.005-.161-.06-.092-.127-.166-.273-.29-.372-.3-.24-.616-.458-.985-.583a2.95 2.95 0 00-.865-.168 4.267 4.267 0 00-.463.017c-.396.03-.79.074-1.14.293-.07.043-.15.067-.221.108-.36.194-.716.386-1.016.679a13.1 13.1 0 00-.897.944c-.322.384-.565.818-.783 1.267-.015.03-.022.07-.07.096l-.12-.744c-.007-.046.022-.043.053-.038.089.01.175.014.264.026.067.01.103-.005.12-.08.022-.102.046-.206.067-.311.082-.397.2-.78.303-1.17.02-.074.007-.1-.07-.12-.381-.09-.763-.192-1.145-.283-.072-.017-.106-.043-.084-.12.087-.298.125-.61.242-.9a.178.178 0 01.056-.087c.098-.076.17-.165.16-.302-.007-.103.041-.168.14-.214.182-.086.358-.187.53-.288a.84.84 0 00.327-.333c.322-.605.59-1.242.98-1.81.033-.051.06-.106.1-.15.252-.264.488-.544.771-.78.089-.074.113-.175.115-.285 0-.128-.074-.217-.151-.305-.075-.087-.151-.161-.279-.147-.028.003-.057-.01-.088-.014.019-.04.05-.048.076-.065.339-.218.677-.437 1.016-.658.41-.264.819-.53 1.232-.794.052-.034.076-.06.019-.11-.015-.013-.024-.03-.036-.044-.084-.099-.084-.099-.2-.03L8.084 3.693c-.101.062-.101.062-.152-.05-.112-.263-.177-.54-.261-.81-.02-.062-.003-.098.045-.137.289-.23.553-.49.82-.742a.604.604 0 00.186-.37c.022-.17-.09-.259-.244-.196a1.707 1.707 0 00-.221.105c-.68.375-1.405.632-2.149.848-.043.012-.082.026-.118-.02-.074-.09-.185-.14-.278-.208a.073.073 0 00-.063-.015c-.1.027-.204.056-.266.147-.159.233-.358.44-.507.682-.17.28-.333.562-.525.828-.036.05-.05.058-.084-.002L3.63 2.635a2.837 2.837 0 00-.223-.338c-.094-.118-.209-.176-.358-.16-.026.004-.06-.004-.07.037-.02.11-.07.226-.057.332.034.27.082.542.15.806.114.459.244.912.38 1.364.133.444.282.88.426 1.323.012.038.033.072-.02.103-.067.038-.175.058-.187.125-.012.07.05.15.08.225l.007.017c.024.058.036.144.08.166.057.029.11-.05.162-.082.048-.03.065-.021.087.029.124.293.252.583.38.876a.18.18 0 01.006.137 4.138 4.138 0 00-.192.72c-.012.07-.038.07-.09.055a107.637 107.637 0 00-.834-.21c-.123-.032-.123-.032-.137.093v.01c-.06.665-.12 1.33-.183 1.994-.004.06.003.085.068.092.194.024.386.055.578.084.036.005.067.007.058.06-.043.225-.077.453-.125.677a.178.178 0 00.034.163l.2.264c.045.063.08.144.037.209a.201.201 0 00-.033.118c.007.415.007.83.026 1.246.01.2.007.403.012.605.01.535.04 1.068.06 1.603.01.262-.036.52-.024.783.002.065.017.1.084.122.16.05.312.116.473.166a.28.28 0 01.185.156.436.436 0 01.038.219c-.002.072.024.115.082.156.247.177.492.36.74.542.65.48 1.3.963 1.954 1.44.06.045.074.081.038.146-.034.062-.055.135-.089.197-.029.058-.024.094.031.134.082.058.161.123.236.188.065.055.067.141.048.208-.015.05-.087.005-.132 0-.032-.002-.063-.01-.094-.014-.31-.05-.617-.13-.932-.156-.5-.04-1.003-.084-1.51-.07-.026 0-.067-.024-.074.03-.007.042-.017.088.031.117.024.014.05.026.077.036.283.098.547.24.807.39.168.095.333.203.518.268.034.012.068.038.108.002-.278-.22-.554-.442-.833-.665.04-.029.07-.017.1-.014.332.026.664.072.988.15.713.17 1.421.361 2.122.572.23.07.475.104.682.243.05.033.08.067.074.13.012.014.027.033.01.045-.02.012-.036-.012-.05-.024-.164-.014-.327-.026-.488-.043-.463-.046-.924-.11-1.392-.096-.35.01-.701-.015-1.05.01-.494.033-.989.098-1.48.15-.025.003-.063-.002-.063.027 0 .036.014.077.06.087a.58.58 0 00.113.012c.25.01.497.007.746.011.62.015 1.242-.012 1.86.041.224.02.45.01.668.05 1.03.193 2.055.394 3.078.618.12.026.243.045.36.103-.055.05-.127.065-.158.137-.22.506-.363 1.04-.53 1.563-.03.09.03.192.12.216a.278.278 0 00.352-.22c.02-.109.039-.217.053-.328.005-.036.017-.055.053-.067.132-.053.26-.108.393-.16a1.63 1.63 0 00.529-.325c.134-.127.247-.274.25-.47 0-.06.014-.099.062-.135.22-.17.418-.365.61-.564a6.03 6.03 0 01.6-.533c.024-.02.043-.048.08-.034l.56.221c-.374.228-.73.447-1.082.66-.017.01-.036.015-.053.02a.813.813 0 00-.338.201c-.375.372-.567.814-.545 1.35.014.36.22.53.57.45.616-.145 1.14-.734 1.233-1.38.024-.18.052-.357-.077-.513a2.25 2.25 0 00-.178-.195c.02-.012.029-.019.039-.026.777-.463 1.625-.778 2.475-1.07 1.04-.359 2.1-.644 3.164-.918l-.075-.017c-.07.007-.136.015-.206.02a5.097 5.097 0 00-.872.134l-.016.007a.226.226 0 01-.094.015c-.014 0-.03 0-.048.002.065-.062.252-.264.303-.25l.002-.005h.005c0-.007.019-.02.019-.02.017-.03.04-.049.074-.05a.694.694 0 01.197-.189c.05-.03.103-.062.16-.086h-.001c.16 0 .319-.194.486-.262-.001-.006-.01-.01-.013-.017-.24.034-.476.072-.706.16-.492.181-1.001.323-1.481.534-.742.324-1.482.648-2.195 1.035a.818.818 0 01-.077.036l-.055-.504c-.005-.034.012-.048.04-.063.632-.334 1.266-.665 1.926-.938.543-.226 1.08-.47 1.626-.691.002-.005.005-.01.01-.01h.004c.003 0 .003.003.005.003.007.012.002.02-.005.026-.002.003-.005.003-.01.005h-.002a3.358 3.358 0 00-.372.66c.038.01.053-.003.067-.018.113-.12.226-.237.336-.357.214-.234.44-.458.704-.64.017-.012.045-.022.033-.048-.014-.03-.045-.015-.067-.01-.247.05-.494.096-.74.154-.081.019-.076-.01-.08-.067-.001-.197.028-.39.035-.586a.63.63 0 01.058-.247c.098-.226.197-.45.297-.675.05-.113.08-.233.099-.353.03-.192.055-.386.074-.58.03-.3.137-.58.187-.875.065-.374.118-.751.257-1.11.125-.316.245-.633.372-.947.176-.428.399-.833.505-1.29.036-.158.076-.302.004-.458-.04-.084-.052-.18-.081-.271a.392.392 0 01-.012-.204c.048-.245.07-.488-.063-.716-.036-.062.008-.1.044-.14.088-.09.093-.131.016-.23-.088-.11-.175-.223-.27-.326-.08-.084-.154-.175-.234-.262-.055-.033-.05-.055.012-.076.14-.048.276-.108.418-.152.08-.024.1-.07.106-.141.045-.605.09-1.213.139-1.818.007-.084-.007-.1-.094-.074-.454.144-.907.28-1.363.422-.14.044-.142.044-.204-.093-.231-.52-.411-1.057-.6-1.59a.392.392 0 01.007-.316c.067-.188.024-.377.019-.567a.104.104 0 01-.005-.03 9.16 9.16 0 00-.254-1.547 6.02 6.02 0 00-.5-1.27c-.228-.432-.473-.86-.737-1.275-.113-.178-.233-.339-.434-.427A.702.702 0 0016.66 0zm-2.642.26a.364.364 0 01.2.051 19.041 19.041 0 011.469.805c.247.158.482.338.715.52.11.087.192.217.284.33.038.047.012.09-.024.124-.024.024-.058.039-.087.055-.031.022-.072.04-.06.087.01.04.055.05.09.058a.27.27 0 00.16-.015c.168-.07.31.048.418.166.028.03.04.093.093.074.055-.021.063-.081.058-.137-.012-.15-.05-.297-.084-.444-.09-.377-.27-.718-.418-1.073-.053-.127-.11-.254-.163-.382-.03-.07.01-.132.048-.182.03-.04.08-.005.122.014.152.068.238.19.312.332.08.15.178.29.262.436.144.255.322.495.437.762.168.388.382.758.483 1.176.086.37.208.732.252 1.114.016.144-.01.283.007.422.033.279-.008.543-.123.798-.03.07-.021.136.012.208.252.533.46 1.083.67 1.635.027.072.015.1-.06.123-.482.14-.965.288-1.447.434-.07.022-.092.003-.113-.06-.123-.326-.24-.646-.353-.967-.024-.068-.053-.104-.128-.087-.088.022-.136-.017-.175-.096-.062-.127-.113-.28-.216-.36-.103-.08-.266-.082-.403-.115-.103-.027-.207-.058-.312-.075a1.428 1.428 0 01-.612-.273c-.303-.224-.615-.43-.934-.627-.104-.007-.202-.036-.303-.06-.278-.057-.554-.117-.833-.17-.067-.012-.08-.063-.084-.108-.007-.056.007-.11.065-.144.089-.053.19-.063.29-.08a9.69 9.69 0 011.345-.13c.11-.002.209.04.312.066a.18.18 0 00.166-.03c.216-.143.434-.28.65-.422.034-.021.096-.036.07-.093a.083.083 0 00-.015-.022c-.012-.01-.026-.012-.043-.012l-.05.002h-.007a1.159 1.159 0 00-.668.2c-.08.05-.26.019-.31-.056-.34-.516-.823-.888-1.282-1.29-.204-.176-.403-.361-.62-.525-.054-.04-.08-.144-.042-.196.048-.072.11-.041.168-.015.185.082.362.175.528.293.564.403 1.17.744 1.772 1.085a.51.51 0 00.05.027c.092.03.14-.01.125-.106a.267.267 0 00-.062-.134c-.488-.574-1.001-1.124-1.506-1.683-.105-.116-.23-.216-.348-.32a.854.854 0 01-.22-.278.16.16 0 01.023-.19c.04-.045.077-.055.137-.024.17.082.332.178.483.293.266.202.535.403.804.605l.807.603c.02.017.043.033.062.05.05.046.094.094.142.142l.029.029c.019.019.036.045.06.06.055.033.112.062.17.004.02-.02.029-.036.03-.055 0-.007.004-.014 0-.021l-.001-.01a.171.171 0 00-.043-.072l-.18-.187a4.537 4.537 0 00-.312-.298c-.35-.29-.706-.571-1.066-.845-.183-.14-.397-.233-.596-.348-.072-.041-.12-.101-.173-.159a.144.144 0 01-.024-.15c.022-.054.075-.051.12-.056zM8.252 1.649a.045.045 0 01.029.005c.048.027.03.077.03.135.013.06-.026.11-.08.16-.346.322-.707.627-1.076.922-.147.118-.327.173-.49.262-.034.017-.053 0-.072-.024-.12-.154-.238-.31-.358-.463-.045-.055.017-.053.046-.065.254-.091.504-.195.756-.295.365-.144.696-.35 1.04-.533.036-.02.07-.043.105-.063.024-.01.044-.037.07-.041zm-2.619.83a.223.223 0 01.134.064c.072.067.13.144.18.228.173.28.413.506.646.737.163.163.33.32.502.47.057.05.067.127.098.192.012.024.002.043-.02.055-.011.008-.023.013-.03.02-.142.12-.276.103-.442.019a3.182 3.182 0 01-.864-.646c-.01-.01-.02-.017-.03-.024-.114-.086-.12-.082-.17.05-.052.135-.086.274-.146.404-.022.045.012.094.046.127.038.039.064.099.134.089.031-.005.048-.022.055-.055.017-.08.04-.16.06-.257.262.22.553.39.84.583l-.278.159c-.713.4-1.428.8-2.139 1.205-.058.03-.082.038-.106-.034-.273-.847-.56-1.69-.79-2.552-.052-.2-.074-.408-.112-.612-.012-.06.028-.091.067-.113.053-.026.055.036.074.06.377.52.634 1.11.941 1.669.092.168.195.33.293.497.02.03.034.057.082.04.053-.02.043-.052.034-.09-.039-.174-.128-.33-.193-.493a.18.18 0 01.003-.16c.137-.284.33-.531.48-.803.14-.247.317-.468.451-.717a.205.205 0 01.2-.111zm1.774.492c.014.003.024.016.036.042.12.27.201.555.302.83.01.027.012.049-.017.066l-.256.158c-.008.005-.017.007-.046.02-.007-.013-.017-.034-.031-.051l-.54-.62c-.024-.028-.048-.055 0-.081.177-.101.312-.264.499-.35.024-.011.04-.017.053-.014zm1.929.486a.204.204 0 01.14.046.21.21 0 01.08.218.556.556 0 01-.161.29 5.528 5.528 0 00-.882 1.093c-.228.36-.453.718-.624 1.11a.768.768 0 01-.146.206c-.24.273-.526.485-.855.638a.17.17 0 00-.108.159c-.005.06-.024.118-.029.178a.48.48 0 01-.19.38c-.04.032-.045.083-.06.126l-.273.915c0 .007 0 .014-.002.019 0 .014.002.03-.017.038-.04.01-.077-.002-.113-.021a41.397 41.397 0 01-1.33-.334c-.055-.012-.108-.03-.166-.036-.088-.012-.096-.053-.055-.12.058-.281.125-.56.298-.797.038-.053.036-.096.002-.154-.19-.317-.334-.658-.492-.99-.026-.054-.017-.08.034-.11A574.255 574.255 0 006.97 4.706c.045-.03.089-.012.132-.022.151-.034.298-.08.43-.163.01-.007.026-.012.03-.022.097-.213.31-.286.49-.37.411-.187.826-.36 1.189-.633a.18.18 0 01.095-.04zm11.443 3.772v.005l.002-.001c-.021.256-.043.498-.062.74l-.043.535c-.005.065-.024.106-.094.13a561.275 561.275 0 00-3.37 1.17l-.04.009c-.035.005-.054-.012-.08-.055-.217-.394-.438-.785-.661-1.177-.03-.05-.038-.077.034-.096l4.254-1.246c.014-.005.03-.007.06-.014zm-.41.386c-.154.003-.293.147-.286.293.007.137.124.257.254.252.137-.002.27-.153.267-.302-.005-.166-.082-.245-.236-.243zm-16.83.87c.01 0 .024.002.04.007L5.512 9l1.937.51c.062.017.082.036.06.1l-.278.913c-.01.036-.017.074-.058.074a.06.06 0 01-.02-.002l-1.036-.142c-.226-.03-.45-.062-.675-.093a254.996 254.996 0 00-2.055-.286c-.043-.012-.058-.038-.05-.098.052-.476.103-.951.153-1.43.003-.011.002-.02.005-.03a.035.035 0 00.005-.015c.007-.014.021-.02.038-.02zm8.136.103l.113.002c.197.01.389.086.569.166.08.036.159.07.238.108l.057.029c.058.028.118.057.173.09l.113.065c.036.025.075.046.108.073.072.05.142.105.207.165.218.202.372.44.463.72.065.202.113.409.13.617.016.202-.044.399-.096.593-.008.03-.02.036-.03.034-.014-.005-.021-.022-.033-.036l-.216-.25a2.105 2.105 0 00-1.042-.684 4.159 4.159 0 00-.994-.154 3.799 3.799 0 00-.804.092c-.211.04-.423.074-.631.113-.137.024-.262.086-.387.14-.06.028-.12.054-.18.077l-.02.004c-.376.132-.695.36-1.024.57-.09.06-.165.14-.243.218l-.01.008-.064.065c-.152.147-.3.296-.464.43-.074.103-.175.175-.268.266.024-.17.07-.328.146-.472a4.6 4.6 0 01.262-.435c.048-.07.096-.14.146-.206a7.17 7.17 0 01.315-.396c.081-.097.163-.193.247-.29l.25-.284a.917.917 0 01.115-.1l.026-.03c.078-.066.147-.136.238-.21l.012-.01.067-.061c.24-.228.519-.406.797-.583.028-.02.057-.035.086-.051l.111-.048c.01-.004.02-.01.029-.012a2.78 2.78 0 01.173-.065l.117-.036c.14-.04.279-.074.416-.117a2.45 2.45 0 01.782-.115zm-7.57.449c-.07.004-.153-.003-.215.057a.462.462 0 00.012.665.286.286 0 00.38 0c.145-.127.182-.314.095-.535-.053-.137-.125-.187-.27-.187zm15.846.062c.087-.001.163.053.23.146.014.01.029.02.043.032.022.019.03.04.053.064.099.113.207.224.31.334a.064.064 0 01.014.024.023.023 0 01-.002.022.04.04 0 01-.015.014l-.01.015-.002.002c-.002.002-.002.005-.004.01 0 .002-.003.004-.003.004h.003v.008c-.145.146-.106.283.01.415.006.012.014.024.014.036.096.127.016.254 0 .382-.003.012-.005.016-.015.02l-.007.004a.116.116 0 01-.03-.005l-.01-.003a9.772 9.772 0 01-.251-.077c-.007 0-.012-.004-.02-.007-.006 0-.011-.007-.018-.007a.284.284 0 01-.118-.02.252.252 0 00-.292.05.054.054 0 01-.005.02c.04.06.108.075.168.094.245.08.453.23.68.348.052.03.062.092.057.152-.003.033-.012.067-.02.103l-.072.31a.127.127 0 01-.02.076c.004.168-.114.293-.17.437-.006.012-.011.017-.02.04a3.223 3.223 0 01-.128.299c0 .007-.01.017-.012.024v-.005c0 .002-.002.002-.002.005l-.005.01c-.003.002-.003.004-.005.007-.012.045-.02.093-.058.132a1.913 1.913 0 01-.187.432c-.007.012-.012.012-.017.036-.062.144-.127.317-.19.475-.014.058-.026.115-.04.17l-.008.015c0 .002-.002.002-.002.005 0 .005-.005.01-.007.014a.45.45 0 01-.036.192c-.012.039-.022.082-.034.12a.074.074 0 01-.005.02l-.201.912c-.055.25-.077.504-.118.754-.038.235-.048.477-.106.708-.04.168-.136.324-.213.48-.072.146-.118.302-.207.444l-.007.015a.169.169 0 00-.012.03c-.002.006-.002.013-.005.018l-.007.033a.182.182 0 00-.002.036c0 .012 0 .024-.003.036v.036a.71.71 0 01-.002.072c-.02.257-.053.514-.041.773.002.048-.012.075-.058.09l-.057.023a1.598 1.598 0 00-.113.048l-.06.024c-.031.012-.05.022-.1.034v-.005s-.006.005-.01.005l-.133.055-.093.038a.635.635 0 01-.211.092l-.036.02a25.181 25.181 0 00-.474.212c-.081.024-.165.072-.247.11-.09.04-.175.075-.264.114-.14.062-.278.12-.418.181-.004.002-.012 0-.016 0-.128.048-.26.118-.38.173-.048.026-.117.053-.177.077-.11.043-.135.038-.16-.075-.071-.052-.078-.14-.104-.216-.027-.072-.048-.15-.072-.222-.005-.024-.017-.02-.017-.034-.024-.033-.024-.064-.036-.098l-.003-.017c-.007-.005-.007-.012-.01-.02l-.006-.016h.004c-.033-.1-.07-.2-.093-.3-.024-.067-.067-.132-.08-.202a.17.17 0 010-.07l.008-.033.004-.017c.02-.047.05-.093.075-.14.017-.037.03-.076.048-.114.017-.038.03-.067.048-.115.038-.072.062-.156.11-.24 0-.02.015-.04.02-.058.043-.146.09-.295.149-.437 0-.005-.005-.012-.003-.017.017-.086.098-.117.146-.168v.003c.024-.008.037-.022.049-.022.014-.024.028-.034.043-.048a1.518 1.518 0 00.108-.15c.045-.066.086-.136.137-.203.016-.021.03-.055.057-.055.005 0 .007 0 .012.002.039.01.027.055.022.084a.88.88 0 000 .327c.012.084.026.168.033.252l-.002.038a.578.578 0 01.036.19c.02.082.036.16.06.242.072.15.125.3.173.454l.005-.002c.08.12.163.26.245.39.024.032.05.066.074.09h.005v.02c.024 0 .036.052.072.004-.007-.024-.012-.024-.02-.024a.448.448 0 01-.03-.08c-.005-.016-.013-.035-.015-.05a.387.387 0 01-.012-.05c-.002-.007-.002-.017-.005-.024a.282.282 0 00-.01-.048l-.011-.075-.013-.074c-.007-.007-.007-.017-.007-.026-.002-.01-.004-.02-.01-.03-.002-.028-.007-.057-.011-.086l-.022-.172c-.002-.03-.012-.058-.014-.087a3.634 3.634 0 01.036-.941h.014c.029-.144.058-.31.086-.466.008 0 .015.003.024.003-.01.26.017.52.075.775.002.005.002.012.002.017.036.098.075.197.106.298.007.02.014.043.022.062a.338.338 0 00.055.094c.007.012.02.024.02.036.025.019.037.04.057.06.014.016.026.036.04.053.05.048.104.093.166.156a3.667 3.667 0 01-.017-.14c-.004-.043-.012-.086-.016-.134 0 0-.013-.007-.013-.012a.82.82 0 00-.01-.108l-.04-.33c0-.01 0-.016.002-.025 0-.01.003-.027.003-.027a2.705 2.705 0 01-.02-.415l-.002-.017a1.122 1.122 0 01-.002-.37c.005-.033.002-.07.005-.103 0-.007-.003-.012-.003-.02 0-.158.007-.32.055-.472l.003-.017c.012-.072.024-.158.036-.238.012-.08.024-.16.033-.24.005-.033.015-.05.034-.05.01 0 .024.005.04.017l.05.03.076.049c.024.017.048.033.07.055.002.002.004.005.009.007a.116.116 0 00.017.012h.005v-.002c.168.084.26.226.374.358a.31.31 0 01.11.15c.075.099.13.205.169.323.002.01.007.02.01.03.002.01.007.006.009.03.02.024.03.055.043.084l.034.084.019.04c.005.01.01.017.017.024a.07.07 0 00.04.024c.027-.088-.035-.172-.011-.256h.007c0-.024-.007-.025-.007-.037-.024-.156-.044-.31-.11-.453l-.001-.04c-.058-.143-.086-.29-.17-.416a.103.103 0 01-.037-.063c-.026-.024-.04-.053-.055-.081a4.135 4.135 0 01-.038-.063v.017c0-.002-.005-.005-.005-.007v-.003a2.828 2.828 0 00-.22-.278l-.01-.01c-.01-.01-.02-.01-.03-.033-.057-.024-.112-.096-.17-.147-.007-.007-.014-.01-.02-.017-.004-.004 0-.01-.023-.016-.12-.082-.21-.183-.314-.255-.02-.024-.044-.01-.053-.048.31-.02.61.017.922.036v-.012h.002c.154.024.298.053.437.113.005 0 .01.007.017.007v.005c.096.022.187.065.278.108.02.01.044.04.065.012.017-.024-.01-.046-.024-.065-.036-.05-.07-.1-.108-.151-.007-.012-.02-.024-.02-.036-.071-.07-.126-.15-.19-.22a.953.953 0 01-.06-.063 1.162 1.162 0 01-.208-.17c-.012-.008-.024-.022-.036-.022-.03 0-.064-.034-.096-.056-.03-.021-.064-.04-.096-.062-.012-.007-.024-.012-.036-.02-.146-.055-.293-.105-.44-.16-.004 0-.013-.003-.013-.005 0 0-.013 0-.017-.002a.11.11 0 01-.072-.03.079.079 0 01-.027-.035l-.005-.012c-.007-.02-.01-.041-.007-.063a.968.968 0 00-.012-.22c-.002-.022-.007-.041-.012-.063a2.158 2.158 0 00-.014-.06l-.015-.062a2.29 2.29 0 00-.024-.09s-.01-.002-.01-.01c-.023-.145-.08-.292-.124-.436l-.017-.057a.369.369 0 01-.057-.168c0-.02 0-.036.002-.056l.002-.026c.005-.027.01-.055.02-.082l.033-.108c0-.005 0-.017.003-.017h-.003c.03-.17.099-.314.147-.468 0-.002.005-.002.005-.005l.01-.01c.002-.002.004-.002.004-.004a.265.265 0 00.053-.185.326.326 0 00-.027-.103c-.016-.043-.038-.084-.06-.127-.002-.005-.01-.01-.014-.012-.002-.003-.005-.005-.005-.008a1.196 1.196 0 01-.21-.355l-.015-.038c-.005-.005-.005-.01-.008-.017l-.002-.007a.12.12 0 01-.007-.017l.002.002-.002-.005a.276.276 0 01.012-.043c.004-.01.01-.017.014-.026.005-.007.012-.014.02-.022l.009-.007c.065-.094.125-.192.197-.283a.26.26 0 00.05-.252c-.04-.137-.036-.14.1-.19.025-.01.316-.12.433-.156l.075-.03.019-.006a41.644 41.644 0 01.509-.19c.005-.002.012-.002.017-.002.14-.072.293-.118.44-.168.02-.007.037-.015.06-.02.025-.02.097-.035.12-.055.12-.038.217-.093.325-.117a.287.287 0 01.167-.067zm-5.432.603a.82.82 0 01.23.036l.014.004c.259.08.523.142.77.26.04.019.084.038.113.077.16.115.307.247.43.405.19.245.38.492.557.773-.011-.003-.022-.008-.034-.013v-.001a1.018 1.018 0 01-.185-.103 6.452 6.452 0 00-.674-.356 1.467 1.467 0 00-.331-.1 3.307 3.307 0 00-.91-.041c-.084.007-.17 0-.255 0-.062 0-.091-.03-.091-.092 0-.235.012-.472-.06-.7-.015-.048.014-.068.055-.082a1.12 1.12 0 01.372-.067zm-2.75.773c.423-.015.812.105 1.167.324.132.08.253.176.363.284l.014.013c.122.123.23.26.32.41.08.13.059.272.032.414-.072.406-.316.706-.592.987-.265.269-.596.444-.903.648-.435.29-.932.403-1.438.478-.632.093-1.273.103-1.906.187-.23.029-.464.048-.694.089a1.07 1.07 0 00-.68.41c-.062.084-.1.187-.16.303a.527.527 0 01.026-.394 1.12 1.12 0 01.533-.54c.415-.22.879-.262 1.323-.375.36-.091.73-.144 1.087-.242a7.234 7.234 0 001.426-.55c.24-.125.49-.252.656-.485a.73.73 0 00.12-.557c-.005-.034-.015-.05-.027-.053-.012-.002-.03.007-.05.027-.18.16-.367.314-.571.449-.32.206-.673.33-1.038.42-.58.144-1.166.266-1.764.31a4.84 4.84 0 00-1.239.242c-.34.118-.687.235-.96.49-.034.03-.075.057-.13.098l.007-.038-.026.019v-.005c.01-.006.016-.013.024-.017a.599.599 0 01.084-.2l.646-1.022a.285.285 0 01.041-.053c.334-.33.653-.677 1.023-.965.614-.48 1.284-.855 2.055-1.02.187-.041.377-.07.57-.07.22-.002.443-.01.66-.017zm-7.632.022c.013 0 .03.002.048.009.03.01.062.007.094.01.127.028.26.03.386.062.012 0 .017.002.034.01a2.174 2.174 0 01.4.057c.145.02.29.036.433.06.033 0 .062-.002.093.017.005 0 .012-.002.012 0 .168.02.3.03.445.055h-.015v.005c.096.012.16.024.233.036.077.012.156.03.23.03h.003c.007 0 .012.004.017.004l.021.005c.048.002.067.028.075.07.038.227.07.455.117.683 0 .017.01.032.008.046l.02.11.061.332c0 .01 0 .03.003.036v.01c.024.143.05.273.074.41v.046a1.717 1.717 0 00-.3.46c-.03.075-.07.152-.1.226l-.006.003c-.024.076-.062.15-.098.223-.003 0-.005.005-.007.01-.005.009-.008.024-.012.03v.003a2.478 2.478 0 01-.192.415c-.008.02-.024.039-.024.056-.024.09-.046.182-.092.266a.757.757 0 01-.074.226 2.102 2.102 0 01-.13.394c-.007.019-.019.036-.019.055l-.002.007c-.003.007-.005.02-.01.029a.106.106 0 01-.01.03l-.002.01-.038.742.021.008.094-.185c.031-.06.055-.123.09-.185.018-.043.05-.086.05-.13.071-.12.136-.24.21-.35.008-.012.022-.02.03-.043.062-.097.134-.224.208-.334.026-.043.054-.08.078-.123.016-.048.042-.055.064-.076.021-.022.033-.044.081-.065 0 .019.005.036.003.053l-.003.01c0 .009-.004.018-.007.028l-.002.01c-.003.007-.003.012-.005.019a.054.054 0 00-.002.02c0 .006-.005.01-.003.018l-.003.015h.003c-.022.144-.02.307-.024.458 0 .007-.005.02-.005.024l.005-.002c.02.144.043.288.062.432h-.002c.003 0 .005.03.005.043.024.144.055.29.072.437l.002.017c.003.01.005.017.005.026.024.116.11.195.163.296.039.055.08.12.116.168h.002v.002c.12.106.22.214.355.31.02 0 .039.024.058.024h-.002v.012c.048.005.088.043.139.029a.087.087 0 00.026-.012c.007-.005.017-.01.02-.017.011-.022-.01-.034-.027-.041-.197-.125-.166-.33-.19-.521h.008v-.003c.048.046.081.09.122.14a.1.1 0 00.024.026l.05.055c.034.036.07.07.108.1.039.032.08.066.125.09.02.007.039.024.056.024h-.005c.144.07.269.137.4.206a.15.15 0 01.08.036c.048.144.105.288.091.456.005 0 .01.017.012.03a.066.066 0 01-.002.03c.017.14.017.28-.003.42a.044.044 0 01-.002.039c-.003.005 0 .007-.002.012h.002c0 .14-.002.278-.038.415-.003.137-.046.27-.06.406 0 .005-.003.01-.005.017-.008.026-.02.057.038.05v-.002c.13-.136.26-.267.38-.418v.01c.002-.048.03-.073.057-.096.05-.05.1-.13.151-.2.05-.07.101-.137.152-.206l.002-.012c.007-.024.017-.04.029-.046.005-.002.01-.005.014-.005H9.3a.133.133 0 01.05.02.835.835 0 01.077.048c.144.079.307.132.415.269.012.012.026.014.038.038.05.024.096.08.133.132l.038.036c.002.002.005.002.007.005.19.16.204.246.067.46-.004.007-.012.014-.016.014a.236.236 0 01-.024.055.216.216 0 01-.02.036l-.01.017c-.035.058-.074.118-.088.185a.443.443 0 00-.012.168c.026.094.05.19.07.286.012.057.024.115.028.175.02.142-.048.228-.168.288v-.002c-.024.002-.026.017-.038.024a.078.078 0 01-.02.014.362.362 0 01-.038.026.192.192 0 00-.077.087c0 .007 0 .005-.002.01-.002.004 0 .014-.002.014h.007v.014c-.024.07-.036.12-.048.156-.003.01-.007.017-.01.024-.002.008-.007.012-.01.017-.002.005-.007.01-.009.012a.045.045 0 01-.024.012h-.007a.165.165 0 01-.05-.012c-.034-.012-.078-.029-.138-.048-.004-.002-.009-.002-.011-.005a.025.025 0 00-.012-.004l-.027-.012h-.01v-.01h-.002c-.072-.024-.14-.038-.204-.065-.038-.014-.08-.026-.12-.043-.05-.012-.1-.036-.151-.036-.14-.048-.281-.072-.416-.12-.011 0-.019.002-.043 0v.002c-.096-.019-.173-.043-.264-.06-.089-.014-.122-.06-.113-.148.005-.037.003-.08.003-.116 0-.012-.003-.017-.003-.04-.014-.025-.036-.053-.055-.085a.11.11 0 01-.014-.026c-.012-.012-.036-.024-.036-.038-.024-.005-.015-.01-.022-.015-.074-.07-.053-.163-.043-.252l.002-.029.008-.055c.002-.01.002-.02.004-.026.039-.15.048-.29-.113-.38-.019-.012-.03-.024-.055-.04v.004a2.869 2.869 0 00-.225-.165c-.012-.024-.015-.029-.039-.039a1.418 1.418 0 01-.31-.227l-.074-.04h.01c-.015-.025-.032-.022-.044-.034-.019-.014-.036-.024-.06-.04-.12-.102-.283-.198-.413-.315-.045-.015-.074-.05-.11-.08v-.004c-.127-.09-.252-.176-.377-.272h.003c-.015 0-.015-.012-.039-.024-.072-.036-.144-.096-.206-.144-.02-.024-.039-.024-.058-.024-.058-.048-.108-.07-.156-.113-.02-.012-.036-.026-.06-.04a2.178 2.178 0 01-.396-.29l-.012-.011-.022-.024a.188.188 0 01-.038-.081v.019c-.087-.094-.144-.202-.216-.3l-.007-.015a.027.027 0 01-.005-.014.107.107 0 01-.003-.026.118.118 0 01.024-.053c0-.005.003-.012.003-.02.024-.153.108-.292.168-.436v-.037s0-.022-.003-.032l-.004-.014-.005-.005a.038.038 0 00-.017-.01h-.007a.122.122 0 00-.058.022.312.312 0 00-.055.043l-.02.015a.13.13 0 00-.014.019l-.007.01c0 .002-.002 0-.002 0 0 .002-.003 0-.003 0v.002c-.048.055-.12.103-.182.154-.012.012-.034.026-.034.038v-.002h-.007c-.02.024-.045.024-.072.012l-.31-.137c-.024-.012-.036-.038-.04-.062a.64.64 0 01-.008-.032l-.007-.026v.005c-.036-.168.022-.293.053-.437.002-.012.005-.024.005-.036.024-.14.033-.288.074-.423v-.062c-.02-.154-.022-.305-.033-.46l.002-.078c-.014-.286-.033-.571-.043-.857-.022-.598-.07-1.193-.053-1.79a.636.636 0 00-.074-.315 1.968 1.968 0 00-.099-.164.264.264 0 01-.048-.237c.036-.14.063-.284.09-.425.008-.05.021-.084.06-.086zm-.166.38l.005.015c.005.032-.007.065-.02.113a.117.117 0 010-.086.295.295 0 01.015-.041zm10.715.003c.13-.002.257.005.38.024.22.017.42.058.55.164.095.04.189.09.28.144.22.132.44.269.662.403a.389.389 0 01.118.108l.223.315c.012.016.03.036.015.057a.038.038 0 01-.02.014c-.018.004-.034-.002-.05-.011-.098-.056-.2-.108-.298-.164a4.76 4.76 0 00-1.184-.46c-.107-.03-.208-.06-.323-.075l-.152-.034c-.004.003.005.012.017.024.005.005.01.01.012.015a.138.138 0 00.04.033l.02.01c.228.115.613.187.893.317l.058.029c.156.08.298.182.44.29l.268.207c.404.293.65.689.77 1.169.003.014.008.029.01.043l.01.014c.02.03.024.065.017.096.002.008.002.015.005.022-.005.07-.06.04-.092.04a2.504 2.504 0 01-.61-.11h-.006c-.051-.016-.118-.04-.165-.054-.211-.075-.41-.163-.615-.238-.252-.09-.45-.261-.662-.413a7.777 7.777 0 01-1.001-.816.34.34 0 01-.08-.106 4.11 4.11 0 01-.062-.153l-.036-.094a1.088 1.088 0 00-.024-.06l-.002-.005c-.003-.002-.003-.007-.003-.01v-.002l-.002-.01a.168.168 0 01.007-.122c.002-.005.002-.01.005-.014l.005-.017.004-.014c.003-.005.003-.013.005-.017l.003-.015.002-.017.003-.014.002-.017.002-.014.003-.017.002-.014.003-.017c0-.005 0-.01.002-.015 0-.004 0-.012.003-.016v-.266c-.003-.082.026-.114.108-.111.08.002.162-.001.243-.005l.075.004c.04-.002.08-.005.122-.005zm.284.532a.12.12 0 00.028.008H15c-.012.008-.028.005-.033.02-.004-.02-.002-.027.003-.028zm.88.342a.206.206 0 00.012.006h.003zm-1.908.177l.002.003c.007.003.014.01.022.024.076.154.182.28.3.399.124.12.259.23.389.348.268.242.542.48.818.713.178.15.392.228.62.288.518.132 1.049.182 1.575.254.139.02.264.065.374.156h-.007c.01.008.017.012.024.02-.296-.043-.59-.04-.886-.046-.324-.007-.641.03-.96.067a.986.986 0 01-.336-.026c-.308-.07-.598-.195-.89-.317-.328-.14-.601-.353-.861-.588l-.057-.055a1.002 1.002 0 01-.205-.285l-.002-.006c-.09-.212-.085-.448-.016-.708.019-.07.04-.14.062-.21.007-.022.02-.034.034-.031zm-.248 1.18c.065.233.233.396.375.573l.029.039.028.038a.57.57 0 00.106.094c.017.012.03.02.046.033l.02.017a10.088 10.088 0 00.539.396l.329.229c.149.103.305.19.468.266.04.02.082.036.123.055.124.053.25.099.379.14l.02.007c.08.02.167.028.25.038.032.002.064.007.092.01a.195.195 0 01.06.024.411.411 0 01.068.05c.074.067.144.163.148.22 0 .01 0 .018-.002.025-.002.005-.002.007-.005.01-.01.016-.024.03-.033.048-.03.05-.06.1-.085.153l-.011.027a.311.311 0 00.002.26c.115-.114.218-.236.293-.376a1.139 1.139 0 00.086-.201c.01-.027.003-.058.01-.084.01-.03-.024-.07-.01-.09 0-.001.003-.001.005-.004a.04.04 0 01.014-.007c.01-.002.02-.005.027-.005.019-.002.036-.005.055-.005.048 0 .094.008.14.022.028.01.019.045.016.072v.005c-.005.086-.04.165-.072.242a.554.554 0 01-.024.055 1.68 1.68 0 01-.192.375c-.118.156-.254.302-.475.31h-.063c-.038 0-.077.01-.115.012a.085.085 0 00-.086.057c-.017.039-.04.072-.058.11l-.007.017a1.534 1.534 0 01-.408.57c-.08.07-.164.139-.25.203a1.95 1.95 0 01-.468.224l-.036.014-.034.015-.02.007c-.01.002-.021.007-.03.01-.036.014-.065.035-.046.09.02.06.063.077.118.08.012 0 .026 0 .04-.003a.613.613 0 00.15-.033c.048-.017.096-.04.146-.06.034-.015.067-.03.103-.041-.03.122-.045.235-.084.34l-.021.054a6.794 6.794 0 01-.09.192c-.018.043-.04.084-.062.125-.115.23-.245.45-.405.655a1.682 1.682 0 01-.356.34 3.954 3.954 0 01-.103.073 2.788 2.788 0 01-.38.205l-.064.03-.053.02-.043.018c-.04.016-.082.03-.123.045a2.674 2.674 0 01-.168.053 4.848 4.848 0 01-.57.134c-.008 0-.013.003-.02.003-.055.01-.108.017-.163.026-.058.008-.116.017-.176.024a2.156 2.156 0 01-.605-.02l-.028-.008a.68.68 0 01-.145-.06c-.062-.034-.12-.07-.182-.1a1.728 1.728 0 01-.13-.073 1.868 1.868 0 01-.16-.106.632.632 0 01-.233-.278 1.794 1.794 0 00-.092-.194c-.01-.02-.021-.036-.03-.053a2.718 2.718 0 00-.277-.367 2.76 2.76 0 00-.125-.142c-.021-.024-.04-.048-.062-.07a7.07 7.07 0 00-.26-.276l-.067-.067a2.787 2.787 0 00-.364-.302 2.784 2.784 0 00-.303-.192l-.06-.04a1.58 1.58 0 01-.63-.761c-.043-.093-.107-.122-.22-.124a.63.63 0 01-.252-.048l-.002-.002a.457.457 0 01-.132-.084l-.026-.016c-.022-.026-.038-.058-.058-.09a5.295 5.295 0 01-.386-.658c0 .003.002.005.003.008l-.006-.013.003.005a3.772 3.772 0 00-.073-.196l-.036-.086a.382.382 0 01-.014-.154l.007-.031c.002-.005.002-.01.005-.015a.145.145 0 01.012-.03.46.46 0 01.127-.14.898.898 0 01.067-.05c.046-.034.094-.063.14-.094.071-.044.143-.084.218-.123.271-.14.56-.238.857-.314.017-.005.033-.008.053-.012.033-.008.07-.01.105-.015.036-.002.072-.005.106-.005l.106-.002c.016 0 .036 0 .052-.002a17.864 17.864 0 00.9-.063c.18-.017.36-.036.54-.055a3.504 3.504 0 001.127-.324c.036-.02.074-.036.11-.055l.063-.034c.144-.077.288-.151.427-.233.014-.02.03-.026.055-.033l.01-.003v.012a.06.06 0 01-.02.034l-.021.014c-.14.178-.331.3-.497.45a.415.415 0 00-.05.045c-.053.043-.106.089-.166.137.209 0 .41-.024.598-.08a1.654 1.654 0 00.869-.6c.103-.137.197-.297.278-.482zm-3.265.016a1.244 1.244 0 01-.343.109c-.56.139-1.13.22-1.697.326a2.603 2.603 0 00-1.105.487c-.019.015-.04.032-.062.043-.026.017-.039.013-.043-.01-.003-.004-.003-.011-.003-.018-.01-.144.034-.214.166-.274.18-.082.36-.168.54-.252.235-.108.487-.142.742-.168.396-.043.792-.094 1.19-.14l.524-.086zm2.386 1.245h-.026c-.038.01-.036.05-.036.08.003.1.007.202.02.303.01.11.047.219.112.307a.842.842 0 00.51.334c.155.036.155.038.17.2.007.069.016.13.08.17.114.067.227.137.364.146.084.007.17.012.242.068a.583.583 0 00.32.098c.084.007.17.01.254.024.067.012.113-.01.16-.05.239-.197.474-.397.697-.617-.026-.03-.065-.04-.118-.012a6.25 6.25 0 00-.415.223.315.315 0 01-.113.048 4.032 4.032 0 01-.722.074.68.68 0 01-.368-.13c-.067-.043-.134-.105-.146-.201.036-.012.07.002.103.007.127.017.252.063.382.055.312-.02.605-.113.898-.213l.283-.103c.043-.015.055-.03.017-.07-.046-.05-.096-.04-.147-.034a5.625 5.625 0 01-1.87-.045c-.18-.034-.372-.046-.442-.27-.02-.06-.038-.12-.05-.182a.37.37 0 00-.094-.17.094.094 0 00-.065-.04zm-.573.065c-.048 0-.08.05-.103.093-.06.103-.137.196-.207.292-.108.147-.26.178-.418.154a17.985 17.985 0 00-1.718-.18c-.03-.002-.058-.01-.082.01-.183.134-.367.264-.483.468.007.002.015.007.02.007.019-.002.035-.007.055-.01.297-.074.607-.098.922-.072.398.034.792.113 1.188.168.053.008.106.01.156.036.12.063.18.173.226.29.07.18.09.373.103.565.01.15-.022.278-.144.38a.556.556 0 00-.2.278c.154 0 .286.026.387.156.063.08.144.149.223.218a.379.379 0 00.586-.081c.058-.094.113-.19.175-.281.087-.127.17-.264.325-.32.093-.03.052-.076.02-.115-.061-.08-.177-.081-.28-.02-.16.097-.266.239-.381.376-.034.04-.068.08-.113.115-.058.04-.108.043-.16-.01-.056-.057-.114-.117-.176-.168-.053-.043-.063-.082-.032-.144a.728.728 0 00.082-.413c-.03-.312-.08-.62-.3-.867-.024-.026-.024-.04.01-.064a.94.94 0 00.408-.701c.007-.075-.007-.135-.067-.156a.075.075 0 00-.022-.004zm4.46.035c.206 0 .388.08.567.182-.005 0-.007 0-.012.003l.03.017c-.27.04-.54.06-.81.03-.084-.01-.168-.026-.255-.023-.17.005-.307-.084-.451-.161h.017c-.012-.007-.024-.012-.036-.02.024.003.05.003.074.005.029.003.055.01.084.015.238.05.468-.02.704-.043a.8.8 0 01.089-.005zm-8.689.714a.045.045 0 00-.016.004c-.05.019-.098.048-.112.115-.048.223.055.437.278.552.1.053.178.127.226.23.016.037.019.106.072.094.052-.012.01-.077.021-.103.008-.135-.019-.25-.127-.32-.08-.05-.11-.12-.14-.201-.038-.106-.047-.223-.134-.307-.02-.021-.036-.064-.069-.064zm1.843.354c-.11.027-.236.053-.353.106-.082.038-.087.084-.015.139.043.034.087.05.14.03a.466.466 0 01.494.097.509.509 0 00.523.087c.106-.036.197-.096.293-.15a.319.319 0 01.113-.04c.144-.014.288-.033.43-.053.038-.005.098.01.108-.036.01-.048-.046-.077-.08-.108-.016-.017-.045-.02-.07-.026a.82.82 0 00-.436-.015 2.092 2.092 0 01-.888 0c-.08-.02-.163-.02-.26-.03zm6.903.889c.006 0 .01.003.015.007a.05.05 0 01.012.014l.008.005c.043.034-.007.11-.02.168-.03.168-.057.334-.086.502-.007.048-.012.098-.048.165l-.007-.043-.012.024a5.307 5.307 0 01-.075-.706c-.002-.053.034-.065.068-.077.048-.016.107-.066.145-.06zm-3.22.902a.08.08 0 00-.022.01c-.19.105-.404.11-.613.137-.088.012-.2-.015-.264.05-.158.156-.293.09-.432-.02-.007-.004-.014-.011-.024-.014-.206-.11-.413-.15-.624-.005a.338.338 0 01-.267.068c-.074-.02-.131-.015-.19.038-.028.027-.066.048-.1.07-.094.062-.094.072-.007.14.02.018.043.025.067.033.2.06.387.016.562-.08.182-.098.353-.093.518.032.152.112.312.115.48.045a2.97 2.97 0 01.653-.213c.034-.005.068-.017.099.01.096.088.187.026.279-.01.036-.015.04-.044.038-.08-.007-.076-.065-.12-.098-.18-.015-.025-.032-.035-.054-.03zm-4.717.07c.009 0 .02.006.032.017.039.036.075.074.113.11l.015.014c.019.017.021.039.012.06l-.224.45-.024-.008c0-.005.003-.007.003-.012.048-.197.029-.4.055-.6.002-.02.009-.03.018-.03zm3.9.588c-.238.007-.48.046-.703.122-.185.063-.392.106-.488.32-.055.124-.048.256-.086.38.017.1.017.197.074.281.017.024.024.063.065.06.043-.002.058-.038.07-.067.043-.09.053-.194.08-.29.047-.156.119-.28.282-.35.17-.072.343-.14.516-.206a.184.184 0 01.1-.012c.215.03.438.02.628.146a.079.079 0 00.062.012c.072-.017.08-.04.036-.098a.723.723 0 00-.636-.298zm-2.218.741l.014.017c.094.117.187.218.25.336.15.29.374.501.662.655.135.072.256.172.414.19l.003.001h.018c.017 0 .04-.004.036.023-.003.014-.017.014-.031.012h-.007c-.005 0-.01 0-.015-.003-.167.005-.33.033-.493.067-.085.018-.17.038-.255.058a7.838 7.838 0 01-.243.055h-.003c-.033.008-.048.024-.043.058.005.04.02.062.067.072a1.305 1.305 0 00.274.017c.118-.003.235-.015.353-.034a2.602 2.602 0 01.778-.002c-.43.07-.785.312-1.174.475-.202.084-.358.245-.55.348-.014.017-.022.044-.036.06-.031.04-.036.118-.087.11h-.004c-.005 0-.01.003-.015 0a.623.623 0 01-.266-.086c-.03-.019-.022-.055-.022-.089v-.453c0-.032.012-.067-.019-.09-.106-.066-.08-.182-.106-.278-.01-.038.017-.057.039-.08l.278-.31c.063-.068.089-.143.043-.224-.086-.163-.072-.32-.002-.485.055-.13.091-.267.142-.42zm4.585.177c.005.003.01.005.012.008l.007-.008c.039.022.04.05.05.075.102.247.2.497.3.744.025.055.03.103-.006.15a.502.502 0 00-.077.49c.067.205.019.347-.183.448a.229.229 0 01-.12.036.124.124 0 01-.088-.03c-.375-.259-.821-.345-1.242-.494-.06-.02-.117-.043-.18-.057-.072-.017-.067-.065-.057-.116.007-.036.026-.04.045-.038.02-.005.046.01.063.014.48.12.965.216 1.428.396.017.008.03.01.043.013.034-.005.044-.037.039-.082-.01-.108-.02-.214-.144-.27a2.8 2.8 0 00-.975-.234c-.05-.005-.098-.007-.15-.01.239-.144.5-.22.714-.406a.999.999 0 00.075-.067l.398-.482zm-1.882 1.133h.02c.03-.002.054.005.057.053 0 .044.01.082-.06.092a1.752 1.752 0 01-.274.021c-.094 0-.185-.01-.278-.03-.05-.013-.07-.047-.065-.087.002-.027.02-.027.04-.027a.103.103 0 01.039.003h.18a1.143 1.143 0 00.34-.024zm.036.396c.006 0 .012.002.02.005l.844.35c-.132.11-.254.207-.374.303-.221.178-.44.358-.646.553-.05.048-.09.05-.147.014a9.33 9.33 0 00-1.097-.545c-.165-.07-.34-.098-.511-.158.02-.036.055-.036.084-.046.367-.137.742-.26 1.102-.42.094-.043.187-.007.278.005.137.02.27.021.394-.046a.092.092 0 01.053-.015zm-2.161.698a.27.27 0 01.082.018c.197.077.38.185.569.274a.04.04 0 01.029.01c.004.002.005.004.005.011v.005c0 .003-.003.003-.003.005-.002.003-.005.003-.007.003l-.01-.003a.03.03 0 01-.012-.012l-.862-.214c.074-.059.133-.1.209-.097zm8.17.535c-.142-.004-.26.062-.372.15-.03.022-.046.048-.094.017-.105-.072-.206-.053-.295.04a.402.402 0 00-.103.186c-.125.504-.252 1.006-.372 1.512-.041.17.048.255.223.23.158-.026.238-.117.264-.32.026-.198.053-.392.11-.596.15.187.29.362.433.538.139.17.29.321.494.412.144.065.269.027.382-.074a.186.186 0 00.055-.206.157.157 0 00-.158-.125.246.246 0 01-.152-.07 2.27 2.27 0 01-.362-.396c-.09-.12-.094-.12.026-.202.252-.173.34-.417.322-.71-.014-.219-.132-.346-.34-.38a.454.454 0 00-.061-.006zm-10.733.03c-.04 0-.077.02-.097.075-.019.05-.053.043-.091.038a.751.751 0 00-.665.22c-.38.37-.574.813-.552 1.353.014.358.22.53.569.451.689-.16 1.224-.835 1.253-1.582.007-.192-.168-.47-.34-.538a.214.214 0 00-.077-.016zm-1.93.058a.943.943 0 00-.613.238c-.346.302-.547.693-.646 1.138a.642.642 0 00.075.482c.07.118.158.161.292.135a3.12 3.12 0 00.87-.305.867.867 0 00.225-.168.291.291 0 00.084-.204c0-.075-.033-.1-.103-.104-.07-.002-.13.024-.192.046-.207.075-.408.166-.622.22-.105.027-.14.003-.163-.105a.301.301 0 01.005-.122c.04-.168.098-.33.187-.483a.82.82 0 01.245-.283c.14-.089.283-.137.442-.04.052.03.103.016.15-.013a.352.352 0 00.15-.2c.016-.05.002-.09-.044-.117a.773.773 0 00-.343-.115zm9.2.07a.692.692 0 00-.517.206c-.156.161-.183.324-.084.526.074.151.177.28.278.415.072.094.149.187.216.286.048.07.024.125-.058.151a.199.199 0 01-.14-.005 1.076 1.076 0 01-.373-.23.243.243 0 01-.082-.125c-.012-.074-.053-.108-.125-.115-.081-.007-.156-.007-.204.08-.08.138-.057.263.087.393.276.245.605.353.933.38.3.004.485-.267.387-.522-.043-.115-.118-.216-.19-.314-.12-.159-.245-.313-.357-.476-.09-.125-.048-.216.098-.264.135-.043.25-.005.36.08.13.1.24.047.269-.116.017-.086-.03-.144-.09-.194a.68.68 0 00-.41-.157zm1.905.06c-.137-.003-.274 0-.41.016-.164.02-.32.065-.38.248-.002.01-.014.024-.024.026-.187.048-.252.202-.302.358-.106.346-.2.696-.298 1.042-.024.084.01.14.08.182.054.034.11.032.172.015.324-.08.648-.166.987-.142a.26.26 0 00.127-.029.242.242 0 00.117-.24c-.014-.09-.086-.117-.163-.13a1.484 1.484 0 00-.177-.016 3.855 3.855 0 00-.62.052c.03-.228.048-.242.264-.242.16 0 .322-.01.473-.072.1-.043.166-.113.176-.226.007-.076-.025-.122-.104-.124a1.65 1.65 0 00-.19.002l-.453.04c.024-.052.036-.1.062-.136.044-.062-.007-.178.084-.209.075-.024.164-.007.245-.01.214-.004.427-.007.634-.074a.347.347 0 00.192-.13c.07-.108.043-.18-.082-.185-.136-.006-.273-.014-.41-.017zm-6.664.008c-.071-.003-.13.042-.185.093a3.95 3.95 0 00-.392.434l-.367.456c-.02.024-.04.07-.08.05-.03-.014-.018-.055-.014-.086.01-.11.024-.218.036-.329.015-.144.034-.288.01-.432-.031-.173-.156-.22-.295-.113a.836.836 0 00-.094.091 3.168 3.168 0 00-.298.414c-.225.348-.432.71-.703 1.027-.05.06-.103.118-.149.182-.048.072-.067.154-.022.23.041.068.11.092.188.087.081-.004.125-.064.168-.122l.626-.852c.012-.015.017-.044.053-.034a1.37 1.37 0 00-.012.11c-.01.137-.038.274-.01.413.034.16.16.224.306.152a.902.902 0 00.204-.152c.117-.112.228-.233.33-.362.114-.144.229-.29.349-.447.036.12.022.228.017.336-.012.188-.048.375-.012.565.024.117.091.187.187.194a.44.44 0 00.278-.07c.125-.079.137-.237.02-.343a.19.19 0 01-.063-.113c-.026-.13-.004-.257.017-.384.039-.245.115-.485.103-.737-.004-.098-.02-.19-.12-.237a.19.19 0 00-.076-.02zm8.04.19c.117-.01.175.063.14.176a.387.387 0 01-.07.132c-.128.161-.291.27-.495.353a1.56 1.56 0 01.11-.425c.062-.134.163-.223.315-.237zm-6.651.02a.292.292 0 01.15.034c.076.043.098.146.045.233a.676.676 0 01-.185.184 1.47 1.47 0 01-.483.243c.07-.216.128-.415.245-.586a.286.286 0 01.228-.108zm1.6.091a.509.509 0 01.213.034c.113.046.15.1.149.27a1.257 1.257 0 01-.425.818.562.562 0 01-.324.136c-.147.012-.262-.08-.247-.228.028-.32.115-.624.33-.876a.436.436 0 01.304-.154zm-5.882.003a.501.501 0 01.218.036c.11.043.149.098.144.262a1.243 1.243 0 01-.422.818.581.581 0 01-.325.14c-.15.011-.266-.082-.252-.233.03-.315.116-.613.325-.86a.442.442 0 01.312-.163z" }) + ] + } + ); +}); + +exports.default = SiComposer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.d.ts new file mode 100644 index 000000000..a860114da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#885630"; +declare const SiComposer: IconType; +export { SiComposer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.mjs new file mode 100644 index 000000000..40b1bbd55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComposer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#885630"; +const SiComposer = React.forwardRef(function SiComposer2({ title = "Composer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.66 0c-.07 0-.114.034-.164.095a.416.416 0 00-.07.43c.19.41.363.83.528 1.25.01.02.022.04.039.068-.04-.002-.05-.022-.063-.043-.297-.31-.648-.557-.998-.804-.473-.337-.99-.603-1.503-.872a.578.578 0 00-.214-.065l-.384-.04c-.202-.025-.355.09-.355.292 0 .108-.046.132-.135.14-.08.004-.187.115-.196.192a.694.694 0 00.228.619c.444.415.873.845 1.303 1.275l.015.007a.1.1 0 01.028.038c-.007.003-.014.003-.02.003a.057.057 0 01-.035-.022c-.002-.002-.005-.005-.005-.007-.062-.036-.127-.07-.187-.11-.3-.2-.595-.404-.895-.598a.943.943 0 00-.461-.17.453.453 0 00-.392.143.28.28 0 00-.088.253c.016.146.115.237.223.312.502.338.95.734 1.366 1.174.036.038.074.079.115.112.118.096.19.224.262.356.033.06.02.074-.043.074-.428 0-.836.118-1.246.204-.168.036-.334.094-.394.28-.065.21-.096.328.16.392a9.57 9.57 0 011.49.516.55.55 0 01.117.077c.12.104.23.219.362.303.38.247.77.478 1.22.583.053.012.1.039.15.05.05.015.085.044.095.094.029.178.139.279.305.33.02.006.038.02.06.028.052.017.076.055.093.108.067.24.137.478.212.715.026.08.002.1-.07.123-.372.108-.742.22-1.112.334-.132.04-.134.043-.067.163l.908 1.635c.127.23.132.23.365.11.024-.012.057-.053.079-.014.02.036.06.089.024.13-.113.129-.19.28-.286.42-.031.045-.031.074-.005.117.1.166.202.334.3.502.012.019.034.043.03.058l-.123.367a2.538 2.538 0 00-.317-.716c-.18-.288-.41-.542-.62-.811-.033-.04-.072-.077-.11-.115-.2-.207-.456-.332-.7-.478a1.026 1.026 0 00-.34-.127c-.374-.08-.746-.11-1.12.004-.075.024-.116.005-.161-.06-.092-.127-.166-.273-.29-.372-.3-.24-.616-.458-.985-.583a2.95 2.95 0 00-.865-.168 4.267 4.267 0 00-.463.017c-.396.03-.79.074-1.14.293-.07.043-.15.067-.221.108-.36.194-.716.386-1.016.679a13.1 13.1 0 00-.897.944c-.322.384-.565.818-.783 1.267-.015.03-.022.07-.07.096l-.12-.744c-.007-.046.022-.043.053-.038.089.01.175.014.264.026.067.01.103-.005.12-.08.022-.102.046-.206.067-.311.082-.397.2-.78.303-1.17.02-.074.007-.1-.07-.12-.381-.09-.763-.192-1.145-.283-.072-.017-.106-.043-.084-.12.087-.298.125-.61.242-.9a.178.178 0 01.056-.087c.098-.076.17-.165.16-.302-.007-.103.041-.168.14-.214.182-.086.358-.187.53-.288a.84.84 0 00.327-.333c.322-.605.59-1.242.98-1.81.033-.051.06-.106.1-.15.252-.264.488-.544.771-.78.089-.074.113-.175.115-.285 0-.128-.074-.217-.151-.305-.075-.087-.151-.161-.279-.147-.028.003-.057-.01-.088-.014.019-.04.05-.048.076-.065.339-.218.677-.437 1.016-.658.41-.264.819-.53 1.232-.794.052-.034.076-.06.019-.11-.015-.013-.024-.03-.036-.044-.084-.099-.084-.099-.2-.03L8.084 3.693c-.101.062-.101.062-.152-.05-.112-.263-.177-.54-.261-.81-.02-.062-.003-.098.045-.137.289-.23.553-.49.82-.742a.604.604 0 00.186-.37c.022-.17-.09-.259-.244-.196a1.707 1.707 0 00-.221.105c-.68.375-1.405.632-2.149.848-.043.012-.082.026-.118-.02-.074-.09-.185-.14-.278-.208a.073.073 0 00-.063-.015c-.1.027-.204.056-.266.147-.159.233-.358.44-.507.682-.17.28-.333.562-.525.828-.036.05-.05.058-.084-.002L3.63 2.635a2.837 2.837 0 00-.223-.338c-.094-.118-.209-.176-.358-.16-.026.004-.06-.004-.07.037-.02.11-.07.226-.057.332.034.27.082.542.15.806.114.459.244.912.38 1.364.133.444.282.88.426 1.323.012.038.033.072-.02.103-.067.038-.175.058-.187.125-.012.07.05.15.08.225l.007.017c.024.058.036.144.08.166.057.029.11-.05.162-.082.048-.03.065-.021.087.029.124.293.252.583.38.876a.18.18 0 01.006.137 4.138 4.138 0 00-.192.72c-.012.07-.038.07-.09.055a107.637 107.637 0 00-.834-.21c-.123-.032-.123-.032-.137.093v.01c-.06.665-.12 1.33-.183 1.994-.004.06.003.085.068.092.194.024.386.055.578.084.036.005.067.007.058.06-.043.225-.077.453-.125.677a.178.178 0 00.034.163l.2.264c.045.063.08.144.037.209a.201.201 0 00-.033.118c.007.415.007.83.026 1.246.01.2.007.403.012.605.01.535.04 1.068.06 1.603.01.262-.036.52-.024.783.002.065.017.1.084.122.16.05.312.116.473.166a.28.28 0 01.185.156.436.436 0 01.038.219c-.002.072.024.115.082.156.247.177.492.36.74.542.65.48 1.3.963 1.954 1.44.06.045.074.081.038.146-.034.062-.055.135-.089.197-.029.058-.024.094.031.134.082.058.161.123.236.188.065.055.067.141.048.208-.015.05-.087.005-.132 0-.032-.002-.063-.01-.094-.014-.31-.05-.617-.13-.932-.156-.5-.04-1.003-.084-1.51-.07-.026 0-.067-.024-.074.03-.007.042-.017.088.031.117.024.014.05.026.077.036.283.098.547.24.807.39.168.095.333.203.518.268.034.012.068.038.108.002-.278-.22-.554-.442-.833-.665.04-.029.07-.017.1-.014.332.026.664.072.988.15.713.17 1.421.361 2.122.572.23.07.475.104.682.243.05.033.08.067.074.13.012.014.027.033.01.045-.02.012-.036-.012-.05-.024-.164-.014-.327-.026-.488-.043-.463-.046-.924-.11-1.392-.096-.35.01-.701-.015-1.05.01-.494.033-.989.098-1.48.15-.025.003-.063-.002-.063.027 0 .036.014.077.06.087a.58.58 0 00.113.012c.25.01.497.007.746.011.62.015 1.242-.012 1.86.041.224.02.45.01.668.05 1.03.193 2.055.394 3.078.618.12.026.243.045.36.103-.055.05-.127.065-.158.137-.22.506-.363 1.04-.53 1.563-.03.09.03.192.12.216a.278.278 0 00.352-.22c.02-.109.039-.217.053-.328.005-.036.017-.055.053-.067.132-.053.26-.108.393-.16a1.63 1.63 0 00.529-.325c.134-.127.247-.274.25-.47 0-.06.014-.099.062-.135.22-.17.418-.365.61-.564a6.03 6.03 0 01.6-.533c.024-.02.043-.048.08-.034l.56.221c-.374.228-.73.447-1.082.66-.017.01-.036.015-.053.02a.813.813 0 00-.338.201c-.375.372-.567.814-.545 1.35.014.36.22.53.57.45.616-.145 1.14-.734 1.233-1.38.024-.18.052-.357-.077-.513a2.25 2.25 0 00-.178-.195c.02-.012.029-.019.039-.026.777-.463 1.625-.778 2.475-1.07 1.04-.359 2.1-.644 3.164-.918l-.075-.017c-.07.007-.136.015-.206.02a5.097 5.097 0 00-.872.134l-.016.007a.226.226 0 01-.094.015c-.014 0-.03 0-.048.002.065-.062.252-.264.303-.25l.002-.005h.005c0-.007.019-.02.019-.02.017-.03.04-.049.074-.05a.694.694 0 01.197-.189c.05-.03.103-.062.16-.086h-.001c.16 0 .319-.194.486-.262-.001-.006-.01-.01-.013-.017-.24.034-.476.072-.706.16-.492.181-1.001.323-1.481.534-.742.324-1.482.648-2.195 1.035a.818.818 0 01-.077.036l-.055-.504c-.005-.034.012-.048.04-.063.632-.334 1.266-.665 1.926-.938.543-.226 1.08-.47 1.626-.691.002-.005.005-.01.01-.01h.004c.003 0 .003.003.005.003.007.012.002.02-.005.026-.002.003-.005.003-.01.005h-.002a3.358 3.358 0 00-.372.66c.038.01.053-.003.067-.018.113-.12.226-.237.336-.357.214-.234.44-.458.704-.64.017-.012.045-.022.033-.048-.014-.03-.045-.015-.067-.01-.247.05-.494.096-.74.154-.081.019-.076-.01-.08-.067-.001-.197.028-.39.035-.586a.63.63 0 01.058-.247c.098-.226.197-.45.297-.675.05-.113.08-.233.099-.353.03-.192.055-.386.074-.58.03-.3.137-.58.187-.875.065-.374.118-.751.257-1.11.125-.316.245-.633.372-.947.176-.428.399-.833.505-1.29.036-.158.076-.302.004-.458-.04-.084-.052-.18-.081-.271a.392.392 0 01-.012-.204c.048-.245.07-.488-.063-.716-.036-.062.008-.1.044-.14.088-.09.093-.131.016-.23-.088-.11-.175-.223-.27-.326-.08-.084-.154-.175-.234-.262-.055-.033-.05-.055.012-.076.14-.048.276-.108.418-.152.08-.024.1-.07.106-.141.045-.605.09-1.213.139-1.818.007-.084-.007-.1-.094-.074-.454.144-.907.28-1.363.422-.14.044-.142.044-.204-.093-.231-.52-.411-1.057-.6-1.59a.392.392 0 01.007-.316c.067-.188.024-.377.019-.567a.104.104 0 01-.005-.03 9.16 9.16 0 00-.254-1.547 6.02 6.02 0 00-.5-1.27c-.228-.432-.473-.86-.737-1.275-.113-.178-.233-.339-.434-.427A.702.702 0 0016.66 0zm-2.642.26a.364.364 0 01.2.051 19.041 19.041 0 011.469.805c.247.158.482.338.715.52.11.087.192.217.284.33.038.047.012.09-.024.124-.024.024-.058.039-.087.055-.031.022-.072.04-.06.087.01.04.055.05.09.058a.27.27 0 00.16-.015c.168-.07.31.048.418.166.028.03.04.093.093.074.055-.021.063-.081.058-.137-.012-.15-.05-.297-.084-.444-.09-.377-.27-.718-.418-1.073-.053-.127-.11-.254-.163-.382-.03-.07.01-.132.048-.182.03-.04.08-.005.122.014.152.068.238.19.312.332.08.15.178.29.262.436.144.255.322.495.437.762.168.388.382.758.483 1.176.086.37.208.732.252 1.114.016.144-.01.283.007.422.033.279-.008.543-.123.798-.03.07-.021.136.012.208.252.533.46 1.083.67 1.635.027.072.015.1-.06.123-.482.14-.965.288-1.447.434-.07.022-.092.003-.113-.06-.123-.326-.24-.646-.353-.967-.024-.068-.053-.104-.128-.087-.088.022-.136-.017-.175-.096-.062-.127-.113-.28-.216-.36-.103-.08-.266-.082-.403-.115-.103-.027-.207-.058-.312-.075a1.428 1.428 0 01-.612-.273c-.303-.224-.615-.43-.934-.627-.104-.007-.202-.036-.303-.06-.278-.057-.554-.117-.833-.17-.067-.012-.08-.063-.084-.108-.007-.056.007-.11.065-.144.089-.053.19-.063.29-.08a9.69 9.69 0 011.345-.13c.11-.002.209.04.312.066a.18.18 0 00.166-.03c.216-.143.434-.28.65-.422.034-.021.096-.036.07-.093a.083.083 0 00-.015-.022c-.012-.01-.026-.012-.043-.012l-.05.002h-.007a1.159 1.159 0 00-.668.2c-.08.05-.26.019-.31-.056-.34-.516-.823-.888-1.282-1.29-.204-.176-.403-.361-.62-.525-.054-.04-.08-.144-.042-.196.048-.072.11-.041.168-.015.185.082.362.175.528.293.564.403 1.17.744 1.772 1.085a.51.51 0 00.05.027c.092.03.14-.01.125-.106a.267.267 0 00-.062-.134c-.488-.574-1.001-1.124-1.506-1.683-.105-.116-.23-.216-.348-.32a.854.854 0 01-.22-.278.16.16 0 01.023-.19c.04-.045.077-.055.137-.024.17.082.332.178.483.293.266.202.535.403.804.605l.807.603c.02.017.043.033.062.05.05.046.094.094.142.142l.029.029c.019.019.036.045.06.06.055.033.112.062.17.004.02-.02.029-.036.03-.055 0-.007.004-.014 0-.021l-.001-.01a.171.171 0 00-.043-.072l-.18-.187a4.537 4.537 0 00-.312-.298c-.35-.29-.706-.571-1.066-.845-.183-.14-.397-.233-.596-.348-.072-.041-.12-.101-.173-.159a.144.144 0 01-.024-.15c.022-.054.075-.051.12-.056zM8.252 1.649a.045.045 0 01.029.005c.048.027.03.077.03.135.013.06-.026.11-.08.16-.346.322-.707.627-1.076.922-.147.118-.327.173-.49.262-.034.017-.053 0-.072-.024-.12-.154-.238-.31-.358-.463-.045-.055.017-.053.046-.065.254-.091.504-.195.756-.295.365-.144.696-.35 1.04-.533.036-.02.07-.043.105-.063.024-.01.044-.037.07-.041zm-2.619.83a.223.223 0 01.134.064c.072.067.13.144.18.228.173.28.413.506.646.737.163.163.33.32.502.47.057.05.067.127.098.192.012.024.002.043-.02.055-.011.008-.023.013-.03.02-.142.12-.276.103-.442.019a3.182 3.182 0 01-.864-.646c-.01-.01-.02-.017-.03-.024-.114-.086-.12-.082-.17.05-.052.135-.086.274-.146.404-.022.045.012.094.046.127.038.039.064.099.134.089.031-.005.048-.022.055-.055.017-.08.04-.16.06-.257.262.22.553.39.84.583l-.278.159c-.713.4-1.428.8-2.139 1.205-.058.03-.082.038-.106-.034-.273-.847-.56-1.69-.79-2.552-.052-.2-.074-.408-.112-.612-.012-.06.028-.091.067-.113.053-.026.055.036.074.06.377.52.634 1.11.941 1.669.092.168.195.33.293.497.02.03.034.057.082.04.053-.02.043-.052.034-.09-.039-.174-.128-.33-.193-.493a.18.18 0 01.003-.16c.137-.284.33-.531.48-.803.14-.247.317-.468.451-.717a.205.205 0 01.2-.111zm1.774.492c.014.003.024.016.036.042.12.27.201.555.302.83.01.027.012.049-.017.066l-.256.158c-.008.005-.017.007-.046.02-.007-.013-.017-.034-.031-.051l-.54-.62c-.024-.028-.048-.055 0-.081.177-.101.312-.264.499-.35.024-.011.04-.017.053-.014zm1.929.486a.204.204 0 01.14.046.21.21 0 01.08.218.556.556 0 01-.161.29 5.528 5.528 0 00-.882 1.093c-.228.36-.453.718-.624 1.11a.768.768 0 01-.146.206c-.24.273-.526.485-.855.638a.17.17 0 00-.108.159c-.005.06-.024.118-.029.178a.48.48 0 01-.19.38c-.04.032-.045.083-.06.126l-.273.915c0 .007 0 .014-.002.019 0 .014.002.03-.017.038-.04.01-.077-.002-.113-.021a41.397 41.397 0 01-1.33-.334c-.055-.012-.108-.03-.166-.036-.088-.012-.096-.053-.055-.12.058-.281.125-.56.298-.797.038-.053.036-.096.002-.154-.19-.317-.334-.658-.492-.99-.026-.054-.017-.08.034-.11A574.255 574.255 0 006.97 4.706c.045-.03.089-.012.132-.022.151-.034.298-.08.43-.163.01-.007.026-.012.03-.022.097-.213.31-.286.49-.37.411-.187.826-.36 1.189-.633a.18.18 0 01.095-.04zm11.443 3.772v.005l.002-.001c-.021.256-.043.498-.062.74l-.043.535c-.005.065-.024.106-.094.13a561.275 561.275 0 00-3.37 1.17l-.04.009c-.035.005-.054-.012-.08-.055-.217-.394-.438-.785-.661-1.177-.03-.05-.038-.077.034-.096l4.254-1.246c.014-.005.03-.007.06-.014zm-.41.386c-.154.003-.293.147-.286.293.007.137.124.257.254.252.137-.002.27-.153.267-.302-.005-.166-.082-.245-.236-.243zm-16.83.87c.01 0 .024.002.04.007L5.512 9l1.937.51c.062.017.082.036.06.1l-.278.913c-.01.036-.017.074-.058.074a.06.06 0 01-.02-.002l-1.036-.142c-.226-.03-.45-.062-.675-.093a254.996 254.996 0 00-2.055-.286c-.043-.012-.058-.038-.05-.098.052-.476.103-.951.153-1.43.003-.011.002-.02.005-.03a.035.035 0 00.005-.015c.007-.014.021-.02.038-.02zm8.136.103l.113.002c.197.01.389.086.569.166.08.036.159.07.238.108l.057.029c.058.028.118.057.173.09l.113.065c.036.025.075.046.108.073.072.05.142.105.207.165.218.202.372.44.463.72.065.202.113.409.13.617.016.202-.044.399-.096.593-.008.03-.02.036-.03.034-.014-.005-.021-.022-.033-.036l-.216-.25a2.105 2.105 0 00-1.042-.684 4.159 4.159 0 00-.994-.154 3.799 3.799 0 00-.804.092c-.211.04-.423.074-.631.113-.137.024-.262.086-.387.14-.06.028-.12.054-.18.077l-.02.004c-.376.132-.695.36-1.024.57-.09.06-.165.14-.243.218l-.01.008-.064.065c-.152.147-.3.296-.464.43-.074.103-.175.175-.268.266.024-.17.07-.328.146-.472a4.6 4.6 0 01.262-.435c.048-.07.096-.14.146-.206a7.17 7.17 0 01.315-.396c.081-.097.163-.193.247-.29l.25-.284a.917.917 0 01.115-.1l.026-.03c.078-.066.147-.136.238-.21l.012-.01.067-.061c.24-.228.519-.406.797-.583.028-.02.057-.035.086-.051l.111-.048c.01-.004.02-.01.029-.012a2.78 2.78 0 01.173-.065l.117-.036c.14-.04.279-.074.416-.117a2.45 2.45 0 01.782-.115zm-7.57.449c-.07.004-.153-.003-.215.057a.462.462 0 00.012.665.286.286 0 00.38 0c.145-.127.182-.314.095-.535-.053-.137-.125-.187-.27-.187zm15.846.062c.087-.001.163.053.23.146.014.01.029.02.043.032.022.019.03.04.053.064.099.113.207.224.31.334a.064.064 0 01.014.024.023.023 0 01-.002.022.04.04 0 01-.015.014l-.01.015-.002.002c-.002.002-.002.005-.004.01 0 .002-.003.004-.003.004h.003v.008c-.145.146-.106.283.01.415.006.012.014.024.014.036.096.127.016.254 0 .382-.003.012-.005.016-.015.02l-.007.004a.116.116 0 01-.03-.005l-.01-.003a9.772 9.772 0 01-.251-.077c-.007 0-.012-.004-.02-.007-.006 0-.011-.007-.018-.007a.284.284 0 01-.118-.02.252.252 0 00-.292.05.054.054 0 01-.005.02c.04.06.108.075.168.094.245.08.453.23.68.348.052.03.062.092.057.152-.003.033-.012.067-.02.103l-.072.31a.127.127 0 01-.02.076c.004.168-.114.293-.17.437-.006.012-.011.017-.02.04a3.223 3.223 0 01-.128.299c0 .007-.01.017-.012.024v-.005c0 .002-.002.002-.002.005l-.005.01c-.003.002-.003.004-.005.007-.012.045-.02.093-.058.132a1.913 1.913 0 01-.187.432c-.007.012-.012.012-.017.036-.062.144-.127.317-.19.475-.014.058-.026.115-.04.17l-.008.015c0 .002-.002.002-.002.005 0 .005-.005.01-.007.014a.45.45 0 01-.036.192c-.012.039-.022.082-.034.12a.074.074 0 01-.005.02l-.201.912c-.055.25-.077.504-.118.754-.038.235-.048.477-.106.708-.04.168-.136.324-.213.48-.072.146-.118.302-.207.444l-.007.015a.169.169 0 00-.012.03c-.002.006-.002.013-.005.018l-.007.033a.182.182 0 00-.002.036c0 .012 0 .024-.003.036v.036a.71.71 0 01-.002.072c-.02.257-.053.514-.041.773.002.048-.012.075-.058.09l-.057.023a1.598 1.598 0 00-.113.048l-.06.024c-.031.012-.05.022-.1.034v-.005s-.006.005-.01.005l-.133.055-.093.038a.635.635 0 01-.211.092l-.036.02a25.181 25.181 0 00-.474.212c-.081.024-.165.072-.247.11-.09.04-.175.075-.264.114-.14.062-.278.12-.418.181-.004.002-.012 0-.016 0-.128.048-.26.118-.38.173-.048.026-.117.053-.177.077-.11.043-.135.038-.16-.075-.071-.052-.078-.14-.104-.216-.027-.072-.048-.15-.072-.222-.005-.024-.017-.02-.017-.034-.024-.033-.024-.064-.036-.098l-.003-.017c-.007-.005-.007-.012-.01-.02l-.006-.016h.004c-.033-.1-.07-.2-.093-.3-.024-.067-.067-.132-.08-.202a.17.17 0 010-.07l.008-.033.004-.017c.02-.047.05-.093.075-.14.017-.037.03-.076.048-.114.017-.038.03-.067.048-.115.038-.072.062-.156.11-.24 0-.02.015-.04.02-.058.043-.146.09-.295.149-.437 0-.005-.005-.012-.003-.017.017-.086.098-.117.146-.168v.003c.024-.008.037-.022.049-.022.014-.024.028-.034.043-.048a1.518 1.518 0 00.108-.15c.045-.066.086-.136.137-.203.016-.021.03-.055.057-.055.005 0 .007 0 .012.002.039.01.027.055.022.084a.88.88 0 000 .327c.012.084.026.168.033.252l-.002.038a.578.578 0 01.036.19c.02.082.036.16.06.242.072.15.125.3.173.454l.005-.002c.08.12.163.26.245.39.024.032.05.066.074.09h.005v.02c.024 0 .036.052.072.004-.007-.024-.012-.024-.02-.024a.448.448 0 01-.03-.08c-.005-.016-.013-.035-.015-.05a.387.387 0 01-.012-.05c-.002-.007-.002-.017-.005-.024a.282.282 0 00-.01-.048l-.011-.075-.013-.074c-.007-.007-.007-.017-.007-.026-.002-.01-.004-.02-.01-.03-.002-.028-.007-.057-.011-.086l-.022-.172c-.002-.03-.012-.058-.014-.087a3.634 3.634 0 01.036-.941h.014c.029-.144.058-.31.086-.466.008 0 .015.003.024.003-.01.26.017.52.075.775.002.005.002.012.002.017.036.098.075.197.106.298.007.02.014.043.022.062a.338.338 0 00.055.094c.007.012.02.024.02.036.025.019.037.04.057.06.014.016.026.036.04.053.05.048.104.093.166.156a3.667 3.667 0 01-.017-.14c-.004-.043-.012-.086-.016-.134 0 0-.013-.007-.013-.012a.82.82 0 00-.01-.108l-.04-.33c0-.01 0-.016.002-.025 0-.01.003-.027.003-.027a2.705 2.705 0 01-.02-.415l-.002-.017a1.122 1.122 0 01-.002-.37c.005-.033.002-.07.005-.103 0-.007-.003-.012-.003-.02 0-.158.007-.32.055-.472l.003-.017c.012-.072.024-.158.036-.238.012-.08.024-.16.033-.24.005-.033.015-.05.034-.05.01 0 .024.005.04.017l.05.03.076.049c.024.017.048.033.07.055.002.002.004.005.009.007a.116.116 0 00.017.012h.005v-.002c.168.084.26.226.374.358a.31.31 0 01.11.15c.075.099.13.205.169.323.002.01.007.02.01.03.002.01.007.006.009.03.02.024.03.055.043.084l.034.084.019.04c.005.01.01.017.017.024a.07.07 0 00.04.024c.027-.088-.035-.172-.011-.256h.007c0-.024-.007-.025-.007-.037-.024-.156-.044-.31-.11-.453l-.001-.04c-.058-.143-.086-.29-.17-.416a.103.103 0 01-.037-.063c-.026-.024-.04-.053-.055-.081a4.135 4.135 0 01-.038-.063v.017c0-.002-.005-.005-.005-.007v-.003a2.828 2.828 0 00-.22-.278l-.01-.01c-.01-.01-.02-.01-.03-.033-.057-.024-.112-.096-.17-.147-.007-.007-.014-.01-.02-.017-.004-.004 0-.01-.023-.016-.12-.082-.21-.183-.314-.255-.02-.024-.044-.01-.053-.048.31-.02.61.017.922.036v-.012h.002c.154.024.298.053.437.113.005 0 .01.007.017.007v.005c.096.022.187.065.278.108.02.01.044.04.065.012.017-.024-.01-.046-.024-.065-.036-.05-.07-.1-.108-.151-.007-.012-.02-.024-.02-.036-.071-.07-.126-.15-.19-.22a.953.953 0 01-.06-.063 1.162 1.162 0 01-.208-.17c-.012-.008-.024-.022-.036-.022-.03 0-.064-.034-.096-.056-.03-.021-.064-.04-.096-.062-.012-.007-.024-.012-.036-.02-.146-.055-.293-.105-.44-.16-.004 0-.013-.003-.013-.005 0 0-.013 0-.017-.002a.11.11 0 01-.072-.03.079.079 0 01-.027-.035l-.005-.012c-.007-.02-.01-.041-.007-.063a.968.968 0 00-.012-.22c-.002-.022-.007-.041-.012-.063a2.158 2.158 0 00-.014-.06l-.015-.062a2.29 2.29 0 00-.024-.09s-.01-.002-.01-.01c-.023-.145-.08-.292-.124-.436l-.017-.057a.369.369 0 01-.057-.168c0-.02 0-.036.002-.056l.002-.026c.005-.027.01-.055.02-.082l.033-.108c0-.005 0-.017.003-.017h-.003c.03-.17.099-.314.147-.468 0-.002.005-.002.005-.005l.01-.01c.002-.002.004-.002.004-.004a.265.265 0 00.053-.185.326.326 0 00-.027-.103c-.016-.043-.038-.084-.06-.127-.002-.005-.01-.01-.014-.012-.002-.003-.005-.005-.005-.008a1.196 1.196 0 01-.21-.355l-.015-.038c-.005-.005-.005-.01-.008-.017l-.002-.007a.12.12 0 01-.007-.017l.002.002-.002-.005a.276.276 0 01.012-.043c.004-.01.01-.017.014-.026.005-.007.012-.014.02-.022l.009-.007c.065-.094.125-.192.197-.283a.26.26 0 00.05-.252c-.04-.137-.036-.14.1-.19.025-.01.316-.12.433-.156l.075-.03.019-.006a41.644 41.644 0 01.509-.19c.005-.002.012-.002.017-.002.14-.072.293-.118.44-.168.02-.007.037-.015.06-.02.025-.02.097-.035.12-.055.12-.038.217-.093.325-.117a.287.287 0 01.167-.067zm-5.432.603a.82.82 0 01.23.036l.014.004c.259.08.523.142.77.26.04.019.084.038.113.077.16.115.307.247.43.405.19.245.38.492.557.773-.011-.003-.022-.008-.034-.013v-.001a1.018 1.018 0 01-.185-.103 6.452 6.452 0 00-.674-.356 1.467 1.467 0 00-.331-.1 3.307 3.307 0 00-.91-.041c-.084.007-.17 0-.255 0-.062 0-.091-.03-.091-.092 0-.235.012-.472-.06-.7-.015-.048.014-.068.055-.082a1.12 1.12 0 01.372-.067zm-2.75.773c.423-.015.812.105 1.167.324.132.08.253.176.363.284l.014.013c.122.123.23.26.32.41.08.13.059.272.032.414-.072.406-.316.706-.592.987-.265.269-.596.444-.903.648-.435.29-.932.403-1.438.478-.632.093-1.273.103-1.906.187-.23.029-.464.048-.694.089a1.07 1.07 0 00-.68.41c-.062.084-.1.187-.16.303a.527.527 0 01.026-.394 1.12 1.12 0 01.533-.54c.415-.22.879-.262 1.323-.375.36-.091.73-.144 1.087-.242a7.234 7.234 0 001.426-.55c.24-.125.49-.252.656-.485a.73.73 0 00.12-.557c-.005-.034-.015-.05-.027-.053-.012-.002-.03.007-.05.027-.18.16-.367.314-.571.449-.32.206-.673.33-1.038.42-.58.144-1.166.266-1.764.31a4.84 4.84 0 00-1.239.242c-.34.118-.687.235-.96.49-.034.03-.075.057-.13.098l.007-.038-.026.019v-.005c.01-.006.016-.013.024-.017a.599.599 0 01.084-.2l.646-1.022a.285.285 0 01.041-.053c.334-.33.653-.677 1.023-.965.614-.48 1.284-.855 2.055-1.02.187-.041.377-.07.57-.07.22-.002.443-.01.66-.017zm-7.632.022c.013 0 .03.002.048.009.03.01.062.007.094.01.127.028.26.03.386.062.012 0 .017.002.034.01a2.174 2.174 0 01.4.057c.145.02.29.036.433.06.033 0 .062-.002.093.017.005 0 .012-.002.012 0 .168.02.3.03.445.055h-.015v.005c.096.012.16.024.233.036.077.012.156.03.23.03h.003c.007 0 .012.004.017.004l.021.005c.048.002.067.028.075.07.038.227.07.455.117.683 0 .017.01.032.008.046l.02.11.061.332c0 .01 0 .03.003.036v.01c.024.143.05.273.074.41v.046a1.717 1.717 0 00-.3.46c-.03.075-.07.152-.1.226l-.006.003c-.024.076-.062.15-.098.223-.003 0-.005.005-.007.01-.005.009-.008.024-.012.03v.003a2.478 2.478 0 01-.192.415c-.008.02-.024.039-.024.056-.024.09-.046.182-.092.266a.757.757 0 01-.074.226 2.102 2.102 0 01-.13.394c-.007.019-.019.036-.019.055l-.002.007c-.003.007-.005.02-.01.029a.106.106 0 01-.01.03l-.002.01-.038.742.021.008.094-.185c.031-.06.055-.123.09-.185.018-.043.05-.086.05-.13.071-.12.136-.24.21-.35.008-.012.022-.02.03-.043.062-.097.134-.224.208-.334.026-.043.054-.08.078-.123.016-.048.042-.055.064-.076.021-.022.033-.044.081-.065 0 .019.005.036.003.053l-.003.01c0 .009-.004.018-.007.028l-.002.01c-.003.007-.003.012-.005.019a.054.054 0 00-.002.02c0 .006-.005.01-.003.018l-.003.015h.003c-.022.144-.02.307-.024.458 0 .007-.005.02-.005.024l.005-.002c.02.144.043.288.062.432h-.002c.003 0 .005.03.005.043.024.144.055.29.072.437l.002.017c.003.01.005.017.005.026.024.116.11.195.163.296.039.055.08.12.116.168h.002v.002c.12.106.22.214.355.31.02 0 .039.024.058.024h-.002v.012c.048.005.088.043.139.029a.087.087 0 00.026-.012c.007-.005.017-.01.02-.017.011-.022-.01-.034-.027-.041-.197-.125-.166-.33-.19-.521h.008v-.003c.048.046.081.09.122.14a.1.1 0 00.024.026l.05.055c.034.036.07.07.108.1.039.032.08.066.125.09.02.007.039.024.056.024h-.005c.144.07.269.137.4.206a.15.15 0 01.08.036c.048.144.105.288.091.456.005 0 .01.017.012.03a.066.066 0 01-.002.03c.017.14.017.28-.003.42a.044.044 0 01-.002.039c-.003.005 0 .007-.002.012h.002c0 .14-.002.278-.038.415-.003.137-.046.27-.06.406 0 .005-.003.01-.005.017-.008.026-.02.057.038.05v-.002c.13-.136.26-.267.38-.418v.01c.002-.048.03-.073.057-.096.05-.05.1-.13.151-.2.05-.07.101-.137.152-.206l.002-.012c.007-.024.017-.04.029-.046.005-.002.01-.005.014-.005H9.3a.133.133 0 01.05.02.835.835 0 01.077.048c.144.079.307.132.415.269.012.012.026.014.038.038.05.024.096.08.133.132l.038.036c.002.002.005.002.007.005.19.16.204.246.067.46-.004.007-.012.014-.016.014a.236.236 0 01-.024.055.216.216 0 01-.02.036l-.01.017c-.035.058-.074.118-.088.185a.443.443 0 00-.012.168c.026.094.05.19.07.286.012.057.024.115.028.175.02.142-.048.228-.168.288v-.002c-.024.002-.026.017-.038.024a.078.078 0 01-.02.014.362.362 0 01-.038.026.192.192 0 00-.077.087c0 .007 0 .005-.002.01-.002.004 0 .014-.002.014h.007v.014c-.024.07-.036.12-.048.156-.003.01-.007.017-.01.024-.002.008-.007.012-.01.017-.002.005-.007.01-.009.012a.045.045 0 01-.024.012h-.007a.165.165 0 01-.05-.012c-.034-.012-.078-.029-.138-.048-.004-.002-.009-.002-.011-.005a.025.025 0 00-.012-.004l-.027-.012h-.01v-.01h-.002c-.072-.024-.14-.038-.204-.065-.038-.014-.08-.026-.12-.043-.05-.012-.1-.036-.151-.036-.14-.048-.281-.072-.416-.12-.011 0-.019.002-.043 0v.002c-.096-.019-.173-.043-.264-.06-.089-.014-.122-.06-.113-.148.005-.037.003-.08.003-.116 0-.012-.003-.017-.003-.04-.014-.025-.036-.053-.055-.085a.11.11 0 01-.014-.026c-.012-.012-.036-.024-.036-.038-.024-.005-.015-.01-.022-.015-.074-.07-.053-.163-.043-.252l.002-.029.008-.055c.002-.01.002-.02.004-.026.039-.15.048-.29-.113-.38-.019-.012-.03-.024-.055-.04v.004a2.869 2.869 0 00-.225-.165c-.012-.024-.015-.029-.039-.039a1.418 1.418 0 01-.31-.227l-.074-.04h.01c-.015-.025-.032-.022-.044-.034-.019-.014-.036-.024-.06-.04-.12-.102-.283-.198-.413-.315-.045-.015-.074-.05-.11-.08v-.004c-.127-.09-.252-.176-.377-.272h.003c-.015 0-.015-.012-.039-.024-.072-.036-.144-.096-.206-.144-.02-.024-.039-.024-.058-.024-.058-.048-.108-.07-.156-.113-.02-.012-.036-.026-.06-.04a2.178 2.178 0 01-.396-.29l-.012-.011-.022-.024a.188.188 0 01-.038-.081v.019c-.087-.094-.144-.202-.216-.3l-.007-.015a.027.027 0 01-.005-.014.107.107 0 01-.003-.026.118.118 0 01.024-.053c0-.005.003-.012.003-.02.024-.153.108-.292.168-.436v-.037s0-.022-.003-.032l-.004-.014-.005-.005a.038.038 0 00-.017-.01h-.007a.122.122 0 00-.058.022.312.312 0 00-.055.043l-.02.015a.13.13 0 00-.014.019l-.007.01c0 .002-.002 0-.002 0 0 .002-.003 0-.003 0v.002c-.048.055-.12.103-.182.154-.012.012-.034.026-.034.038v-.002h-.007c-.02.024-.045.024-.072.012l-.31-.137c-.024-.012-.036-.038-.04-.062a.64.64 0 01-.008-.032l-.007-.026v.005c-.036-.168.022-.293.053-.437.002-.012.005-.024.005-.036.024-.14.033-.288.074-.423v-.062c-.02-.154-.022-.305-.033-.46l.002-.078c-.014-.286-.033-.571-.043-.857-.022-.598-.07-1.193-.053-1.79a.636.636 0 00-.074-.315 1.968 1.968 0 00-.099-.164.264.264 0 01-.048-.237c.036-.14.063-.284.09-.425.008-.05.021-.084.06-.086zm-.166.38l.005.015c.005.032-.007.065-.02.113a.117.117 0 010-.086.295.295 0 01.015-.041zm10.715.003c.13-.002.257.005.38.024.22.017.42.058.55.164.095.04.189.09.28.144.22.132.44.269.662.403a.389.389 0 01.118.108l.223.315c.012.016.03.036.015.057a.038.038 0 01-.02.014c-.018.004-.034-.002-.05-.011-.098-.056-.2-.108-.298-.164a4.76 4.76 0 00-1.184-.46c-.107-.03-.208-.06-.323-.075l-.152-.034c-.004.003.005.012.017.024.005.005.01.01.012.015a.138.138 0 00.04.033l.02.01c.228.115.613.187.893.317l.058.029c.156.08.298.182.44.29l.268.207c.404.293.65.689.77 1.169.003.014.008.029.01.043l.01.014c.02.03.024.065.017.096.002.008.002.015.005.022-.005.07-.06.04-.092.04a2.504 2.504 0 01-.61-.11h-.006c-.051-.016-.118-.04-.165-.054-.211-.075-.41-.163-.615-.238-.252-.09-.45-.261-.662-.413a7.777 7.777 0 01-1.001-.816.34.34 0 01-.08-.106 4.11 4.11 0 01-.062-.153l-.036-.094a1.088 1.088 0 00-.024-.06l-.002-.005c-.003-.002-.003-.007-.003-.01v-.002l-.002-.01a.168.168 0 01.007-.122c.002-.005.002-.01.005-.014l.005-.017.004-.014c.003-.005.003-.013.005-.017l.003-.015.002-.017.003-.014.002-.017.002-.014.003-.017.002-.014.003-.017c0-.005 0-.01.002-.015 0-.004 0-.012.003-.016v-.266c-.003-.082.026-.114.108-.111.08.002.162-.001.243-.005l.075.004c.04-.002.08-.005.122-.005zm.284.532a.12.12 0 00.028.008H15c-.012.008-.028.005-.033.02-.004-.02-.002-.027.003-.028zm.88.342a.206.206 0 00.012.006h.003zm-1.908.177l.002.003c.007.003.014.01.022.024.076.154.182.28.3.399.124.12.259.23.389.348.268.242.542.48.818.713.178.15.392.228.62.288.518.132 1.049.182 1.575.254.139.02.264.065.374.156h-.007c.01.008.017.012.024.02-.296-.043-.59-.04-.886-.046-.324-.007-.641.03-.96.067a.986.986 0 01-.336-.026c-.308-.07-.598-.195-.89-.317-.328-.14-.601-.353-.861-.588l-.057-.055a1.002 1.002 0 01-.205-.285l-.002-.006c-.09-.212-.085-.448-.016-.708.019-.07.04-.14.062-.21.007-.022.02-.034.034-.031zm-.248 1.18c.065.233.233.396.375.573l.029.039.028.038a.57.57 0 00.106.094c.017.012.03.02.046.033l.02.017a10.088 10.088 0 00.539.396l.329.229c.149.103.305.19.468.266.04.02.082.036.123.055.124.053.25.099.379.14l.02.007c.08.02.167.028.25.038.032.002.064.007.092.01a.195.195 0 01.06.024.411.411 0 01.068.05c.074.067.144.163.148.22 0 .01 0 .018-.002.025-.002.005-.002.007-.005.01-.01.016-.024.03-.033.048-.03.05-.06.1-.085.153l-.011.027a.311.311 0 00.002.26c.115-.114.218-.236.293-.376a1.139 1.139 0 00.086-.201c.01-.027.003-.058.01-.084.01-.03-.024-.07-.01-.09 0-.001.003-.001.005-.004a.04.04 0 01.014-.007c.01-.002.02-.005.027-.005.019-.002.036-.005.055-.005.048 0 .094.008.14.022.028.01.019.045.016.072v.005c-.005.086-.04.165-.072.242a.554.554 0 01-.024.055 1.68 1.68 0 01-.192.375c-.118.156-.254.302-.475.31h-.063c-.038 0-.077.01-.115.012a.085.085 0 00-.086.057c-.017.039-.04.072-.058.11l-.007.017a1.534 1.534 0 01-.408.57c-.08.07-.164.139-.25.203a1.95 1.95 0 01-.468.224l-.036.014-.034.015-.02.007c-.01.002-.021.007-.03.01-.036.014-.065.035-.046.09.02.06.063.077.118.08.012 0 .026 0 .04-.003a.613.613 0 00.15-.033c.048-.017.096-.04.146-.06.034-.015.067-.03.103-.041-.03.122-.045.235-.084.34l-.021.054a6.794 6.794 0 01-.09.192c-.018.043-.04.084-.062.125-.115.23-.245.45-.405.655a1.682 1.682 0 01-.356.34 3.954 3.954 0 01-.103.073 2.788 2.788 0 01-.38.205l-.064.03-.053.02-.043.018c-.04.016-.082.03-.123.045a2.674 2.674 0 01-.168.053 4.848 4.848 0 01-.57.134c-.008 0-.013.003-.02.003-.055.01-.108.017-.163.026-.058.008-.116.017-.176.024a2.156 2.156 0 01-.605-.02l-.028-.008a.68.68 0 01-.145-.06c-.062-.034-.12-.07-.182-.1a1.728 1.728 0 01-.13-.073 1.868 1.868 0 01-.16-.106.632.632 0 01-.233-.278 1.794 1.794 0 00-.092-.194c-.01-.02-.021-.036-.03-.053a2.718 2.718 0 00-.277-.367 2.76 2.76 0 00-.125-.142c-.021-.024-.04-.048-.062-.07a7.07 7.07 0 00-.26-.276l-.067-.067a2.787 2.787 0 00-.364-.302 2.784 2.784 0 00-.303-.192l-.06-.04a1.58 1.58 0 01-.63-.761c-.043-.093-.107-.122-.22-.124a.63.63 0 01-.252-.048l-.002-.002a.457.457 0 01-.132-.084l-.026-.016c-.022-.026-.038-.058-.058-.09a5.295 5.295 0 01-.386-.658c0 .003.002.005.003.008l-.006-.013.003.005a3.772 3.772 0 00-.073-.196l-.036-.086a.382.382 0 01-.014-.154l.007-.031c.002-.005.002-.01.005-.015a.145.145 0 01.012-.03.46.46 0 01.127-.14.898.898 0 01.067-.05c.046-.034.094-.063.14-.094.071-.044.143-.084.218-.123.271-.14.56-.238.857-.314.017-.005.033-.008.053-.012.033-.008.07-.01.105-.015.036-.002.072-.005.106-.005l.106-.002c.016 0 .036 0 .052-.002a17.864 17.864 0 00.9-.063c.18-.017.36-.036.54-.055a3.504 3.504 0 001.127-.324c.036-.02.074-.036.11-.055l.063-.034c.144-.077.288-.151.427-.233.014-.02.03-.026.055-.033l.01-.003v.012a.06.06 0 01-.02.034l-.021.014c-.14.178-.331.3-.497.45a.415.415 0 00-.05.045c-.053.043-.106.089-.166.137.209 0 .41-.024.598-.08a1.654 1.654 0 00.869-.6c.103-.137.197-.297.278-.482zm-3.265.016a1.244 1.244 0 01-.343.109c-.56.139-1.13.22-1.697.326a2.603 2.603 0 00-1.105.487c-.019.015-.04.032-.062.043-.026.017-.039.013-.043-.01-.003-.004-.003-.011-.003-.018-.01-.144.034-.214.166-.274.18-.082.36-.168.54-.252.235-.108.487-.142.742-.168.396-.043.792-.094 1.19-.14l.524-.086zm2.386 1.245h-.026c-.038.01-.036.05-.036.08.003.1.007.202.02.303.01.11.047.219.112.307a.842.842 0 00.51.334c.155.036.155.038.17.2.007.069.016.13.08.17.114.067.227.137.364.146.084.007.17.012.242.068a.583.583 0 00.32.098c.084.007.17.01.254.024.067.012.113-.01.16-.05.239-.197.474-.397.697-.617-.026-.03-.065-.04-.118-.012a6.25 6.25 0 00-.415.223.315.315 0 01-.113.048 4.032 4.032 0 01-.722.074.68.68 0 01-.368-.13c-.067-.043-.134-.105-.146-.201.036-.012.07.002.103.007.127.017.252.063.382.055.312-.02.605-.113.898-.213l.283-.103c.043-.015.055-.03.017-.07-.046-.05-.096-.04-.147-.034a5.625 5.625 0 01-1.87-.045c-.18-.034-.372-.046-.442-.27-.02-.06-.038-.12-.05-.182a.37.37 0 00-.094-.17.094.094 0 00-.065-.04zm-.573.065c-.048 0-.08.05-.103.093-.06.103-.137.196-.207.292-.108.147-.26.178-.418.154a17.985 17.985 0 00-1.718-.18c-.03-.002-.058-.01-.082.01-.183.134-.367.264-.483.468.007.002.015.007.02.007.019-.002.035-.007.055-.01.297-.074.607-.098.922-.072.398.034.792.113 1.188.168.053.008.106.01.156.036.12.063.18.173.226.29.07.18.09.373.103.565.01.15-.022.278-.144.38a.556.556 0 00-.2.278c.154 0 .286.026.387.156.063.08.144.149.223.218a.379.379 0 00.586-.081c.058-.094.113-.19.175-.281.087-.127.17-.264.325-.32.093-.03.052-.076.02-.115-.061-.08-.177-.081-.28-.02-.16.097-.266.239-.381.376-.034.04-.068.08-.113.115-.058.04-.108.043-.16-.01-.056-.057-.114-.117-.176-.168-.053-.043-.063-.082-.032-.144a.728.728 0 00.082-.413c-.03-.312-.08-.62-.3-.867-.024-.026-.024-.04.01-.064a.94.94 0 00.408-.701c.007-.075-.007-.135-.067-.156a.075.075 0 00-.022-.004zm4.46.035c.206 0 .388.08.567.182-.005 0-.007 0-.012.003l.03.017c-.27.04-.54.06-.81.03-.084-.01-.168-.026-.255-.023-.17.005-.307-.084-.451-.161h.017c-.012-.007-.024-.012-.036-.02.024.003.05.003.074.005.029.003.055.01.084.015.238.05.468-.02.704-.043a.8.8 0 01.089-.005zm-8.689.714a.045.045 0 00-.016.004c-.05.019-.098.048-.112.115-.048.223.055.437.278.552.1.053.178.127.226.23.016.037.019.106.072.094.052-.012.01-.077.021-.103.008-.135-.019-.25-.127-.32-.08-.05-.11-.12-.14-.201-.038-.106-.047-.223-.134-.307-.02-.021-.036-.064-.069-.064zm1.843.354c-.11.027-.236.053-.353.106-.082.038-.087.084-.015.139.043.034.087.05.14.03a.466.466 0 01.494.097.509.509 0 00.523.087c.106-.036.197-.096.293-.15a.319.319 0 01.113-.04c.144-.014.288-.033.43-.053.038-.005.098.01.108-.036.01-.048-.046-.077-.08-.108-.016-.017-.045-.02-.07-.026a.82.82 0 00-.436-.015 2.092 2.092 0 01-.888 0c-.08-.02-.163-.02-.26-.03zm6.903.889c.006 0 .01.003.015.007a.05.05 0 01.012.014l.008.005c.043.034-.007.11-.02.168-.03.168-.057.334-.086.502-.007.048-.012.098-.048.165l-.007-.043-.012.024a5.307 5.307 0 01-.075-.706c-.002-.053.034-.065.068-.077.048-.016.107-.066.145-.06zm-3.22.902a.08.08 0 00-.022.01c-.19.105-.404.11-.613.137-.088.012-.2-.015-.264.05-.158.156-.293.09-.432-.02-.007-.004-.014-.011-.024-.014-.206-.11-.413-.15-.624-.005a.338.338 0 01-.267.068c-.074-.02-.131-.015-.19.038-.028.027-.066.048-.1.07-.094.062-.094.072-.007.14.02.018.043.025.067.033.2.06.387.016.562-.08.182-.098.353-.093.518.032.152.112.312.115.48.045a2.97 2.97 0 01.653-.213c.034-.005.068-.017.099.01.096.088.187.026.279-.01.036-.015.04-.044.038-.08-.007-.076-.065-.12-.098-.18-.015-.025-.032-.035-.054-.03zm-4.717.07c.009 0 .02.006.032.017.039.036.075.074.113.11l.015.014c.019.017.021.039.012.06l-.224.45-.024-.008c0-.005.003-.007.003-.012.048-.197.029-.4.055-.6.002-.02.009-.03.018-.03zm3.9.588c-.238.007-.48.046-.703.122-.185.063-.392.106-.488.32-.055.124-.048.256-.086.38.017.1.017.197.074.281.017.024.024.063.065.06.043-.002.058-.038.07-.067.043-.09.053-.194.08-.29.047-.156.119-.28.282-.35.17-.072.343-.14.516-.206a.184.184 0 01.1-.012c.215.03.438.02.628.146a.079.079 0 00.062.012c.072-.017.08-.04.036-.098a.723.723 0 00-.636-.298zm-2.218.741l.014.017c.094.117.187.218.25.336.15.29.374.501.662.655.135.072.256.172.414.19l.003.001h.018c.017 0 .04-.004.036.023-.003.014-.017.014-.031.012h-.007c-.005 0-.01 0-.015-.003-.167.005-.33.033-.493.067-.085.018-.17.038-.255.058a7.838 7.838 0 01-.243.055h-.003c-.033.008-.048.024-.043.058.005.04.02.062.067.072a1.305 1.305 0 00.274.017c.118-.003.235-.015.353-.034a2.602 2.602 0 01.778-.002c-.43.07-.785.312-1.174.475-.202.084-.358.245-.55.348-.014.017-.022.044-.036.06-.031.04-.036.118-.087.11h-.004c-.005 0-.01.003-.015 0a.623.623 0 01-.266-.086c-.03-.019-.022-.055-.022-.089v-.453c0-.032.012-.067-.019-.09-.106-.066-.08-.182-.106-.278-.01-.038.017-.057.039-.08l.278-.31c.063-.068.089-.143.043-.224-.086-.163-.072-.32-.002-.485.055-.13.091-.267.142-.42zm4.585.177c.005.003.01.005.012.008l.007-.008c.039.022.04.05.05.075.102.247.2.497.3.744.025.055.03.103-.006.15a.502.502 0 00-.077.49c.067.205.019.347-.183.448a.229.229 0 01-.12.036.124.124 0 01-.088-.03c-.375-.259-.821-.345-1.242-.494-.06-.02-.117-.043-.18-.057-.072-.017-.067-.065-.057-.116.007-.036.026-.04.045-.038.02-.005.046.01.063.014.48.12.965.216 1.428.396.017.008.03.01.043.013.034-.005.044-.037.039-.082-.01-.108-.02-.214-.144-.27a2.8 2.8 0 00-.975-.234c-.05-.005-.098-.007-.15-.01.239-.144.5-.22.714-.406a.999.999 0 00.075-.067l.398-.482zm-1.882 1.133h.02c.03-.002.054.005.057.053 0 .044.01.082-.06.092a1.752 1.752 0 01-.274.021c-.094 0-.185-.01-.278-.03-.05-.013-.07-.047-.065-.087.002-.027.02-.027.04-.027a.103.103 0 01.039.003h.18a1.143 1.143 0 00.34-.024zm.036.396c.006 0 .012.002.02.005l.844.35c-.132.11-.254.207-.374.303-.221.178-.44.358-.646.553-.05.048-.09.05-.147.014a9.33 9.33 0 00-1.097-.545c-.165-.07-.34-.098-.511-.158.02-.036.055-.036.084-.046.367-.137.742-.26 1.102-.42.094-.043.187-.007.278.005.137.02.27.021.394-.046a.092.092 0 01.053-.015zm-2.161.698a.27.27 0 01.082.018c.197.077.38.185.569.274a.04.04 0 01.029.01c.004.002.005.004.005.011v.005c0 .003-.003.003-.003.005-.002.003-.005.003-.007.003l-.01-.003a.03.03 0 01-.012-.012l-.862-.214c.074-.059.133-.1.209-.097zm8.17.535c-.142-.004-.26.062-.372.15-.03.022-.046.048-.094.017-.105-.072-.206-.053-.295.04a.402.402 0 00-.103.186c-.125.504-.252 1.006-.372 1.512-.041.17.048.255.223.23.158-.026.238-.117.264-.32.026-.198.053-.392.11-.596.15.187.29.362.433.538.139.17.29.321.494.412.144.065.269.027.382-.074a.186.186 0 00.055-.206.157.157 0 00-.158-.125.246.246 0 01-.152-.07 2.27 2.27 0 01-.362-.396c-.09-.12-.094-.12.026-.202.252-.173.34-.417.322-.71-.014-.219-.132-.346-.34-.38a.454.454 0 00-.061-.006zm-10.733.03c-.04 0-.077.02-.097.075-.019.05-.053.043-.091.038a.751.751 0 00-.665.22c-.38.37-.574.813-.552 1.353.014.358.22.53.569.451.689-.16 1.224-.835 1.253-1.582.007-.192-.168-.47-.34-.538a.214.214 0 00-.077-.016zm-1.93.058a.943.943 0 00-.613.238c-.346.302-.547.693-.646 1.138a.642.642 0 00.075.482c.07.118.158.161.292.135a3.12 3.12 0 00.87-.305.867.867 0 00.225-.168.291.291 0 00.084-.204c0-.075-.033-.1-.103-.104-.07-.002-.13.024-.192.046-.207.075-.408.166-.622.22-.105.027-.14.003-.163-.105a.301.301 0 01.005-.122c.04-.168.098-.33.187-.483a.82.82 0 01.245-.283c.14-.089.283-.137.442-.04.052.03.103.016.15-.013a.352.352 0 00.15-.2c.016-.05.002-.09-.044-.117a.773.773 0 00-.343-.115zm9.2.07a.692.692 0 00-.517.206c-.156.161-.183.324-.084.526.074.151.177.28.278.415.072.094.149.187.216.286.048.07.024.125-.058.151a.199.199 0 01-.14-.005 1.076 1.076 0 01-.373-.23.243.243 0 01-.082-.125c-.012-.074-.053-.108-.125-.115-.081-.007-.156-.007-.204.08-.08.138-.057.263.087.393.276.245.605.353.933.38.3.004.485-.267.387-.522-.043-.115-.118-.216-.19-.314-.12-.159-.245-.313-.357-.476-.09-.125-.048-.216.098-.264.135-.043.25-.005.36.08.13.1.24.047.269-.116.017-.086-.03-.144-.09-.194a.68.68 0 00-.41-.157zm1.905.06c-.137-.003-.274 0-.41.016-.164.02-.32.065-.38.248-.002.01-.014.024-.024.026-.187.048-.252.202-.302.358-.106.346-.2.696-.298 1.042-.024.084.01.14.08.182.054.034.11.032.172.015.324-.08.648-.166.987-.142a.26.26 0 00.127-.029.242.242 0 00.117-.24c-.014-.09-.086-.117-.163-.13a1.484 1.484 0 00-.177-.016 3.855 3.855 0 00-.62.052c.03-.228.048-.242.264-.242.16 0 .322-.01.473-.072.1-.043.166-.113.176-.226.007-.076-.025-.122-.104-.124a1.65 1.65 0 00-.19.002l-.453.04c.024-.052.036-.1.062-.136.044-.062-.007-.178.084-.209.075-.024.164-.007.245-.01.214-.004.427-.007.634-.074a.347.347 0 00.192-.13c.07-.108.043-.18-.082-.185-.136-.006-.273-.014-.41-.017zm-6.664.008c-.071-.003-.13.042-.185.093a3.95 3.95 0 00-.392.434l-.367.456c-.02.024-.04.07-.08.05-.03-.014-.018-.055-.014-.086.01-.11.024-.218.036-.329.015-.144.034-.288.01-.432-.031-.173-.156-.22-.295-.113a.836.836 0 00-.094.091 3.168 3.168 0 00-.298.414c-.225.348-.432.71-.703 1.027-.05.06-.103.118-.149.182-.048.072-.067.154-.022.23.041.068.11.092.188.087.081-.004.125-.064.168-.122l.626-.852c.012-.015.017-.044.053-.034a1.37 1.37 0 00-.012.11c-.01.137-.038.274-.01.413.034.16.16.224.306.152a.902.902 0 00.204-.152c.117-.112.228-.233.33-.362.114-.144.229-.29.349-.447.036.12.022.228.017.336-.012.188-.048.375-.012.565.024.117.091.187.187.194a.44.44 0 00.278-.07c.125-.079.137-.237.02-.343a.19.19 0 01-.063-.113c-.026-.13-.004-.257.017-.384.039-.245.115-.485.103-.737-.004-.098-.02-.19-.12-.237a.19.19 0 00-.076-.02zm8.04.19c.117-.01.175.063.14.176a.387.387 0 01-.07.132c-.128.161-.291.27-.495.353a1.56 1.56 0 01.11-.425c.062-.134.163-.223.315-.237zm-6.651.02a.292.292 0 01.15.034c.076.043.098.146.045.233a.676.676 0 01-.185.184 1.47 1.47 0 01-.483.243c.07-.216.128-.415.245-.586a.286.286 0 01.228-.108zm1.6.091a.509.509 0 01.213.034c.113.046.15.1.149.27a1.257 1.257 0 01-.425.818.562.562 0 01-.324.136c-.147.012-.262-.08-.247-.228.028-.32.115-.624.33-.876a.436.436 0 01.304-.154zm-5.882.003a.501.501 0 01.218.036c.11.043.149.098.144.262a1.243 1.243 0 01-.422.818.581.581 0 01-.325.14c-.15.011-.266-.082-.252-.233.03-.315.116-.613.325-.86a.442.442 0 01.312-.163z" }) + ] + } + ); +}); + +export { SiComposer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.cjs new file mode 100644 index 000000000..c3917b79a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C8202F"; +const SiComptia = React__namespace.forwardRef(function SiComptia2({ title = "CompTIA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.8292 11.7067v1.8524a.608.608 0 0 1-.6016-.6136v-1.2366a.5728.5728 0 0 0-1.1428 0v1.8502a.5988.5988 0 0 1-.5998-.5978v-1.2524a.5746.5746 0 0 0-1.1455 0v1.2431a.608.608 0 0 1-.5998.6071V11.709c.0097-.6352.5325-1.1422 1.1676-1.1325h.0013c.331-.0046.6486.1302.8754.3713a1.1752 1.1752 0 0 1 .868-.3713c.6372-.013 1.1642.493 1.1772 1.1303zm7.0156-2.2917v3.563a.597.597 0 0 0 .6006.5811v-3.563a.5969.5969 0 0 0-.6006-.5811zM24 13.5258c-.324.0269-.675-.0697-.8011-.3435l-.3185-.6852h-2.1306l-.3157.7037c-.1494.2785-.544.3667-.8476.3667l1.738-3.8063a.5292.5292 0 0 1 .4762-.3435.5367.5367 0 0 1 .481.3435L24 13.5258zm-1.3759-1.6182-.8059-1.7671-.8038 1.767h1.6097zm-19.166.6387a1.8463 1.8463 0 0 1-1.1817.4373c-.9312 0-1.6888-.6824-1.6888-1.5133s.7604-1.5058 1.6888-1.5058c.501.0002.98.2055 1.3257.5682a.5812.5812 0 0 0 .7417.0827c-.362-.7502-1.1763-1.2376-2.0693-1.2376C1.0212 9.3778 0 10.3164 0 11.4722c0 1.1558 1.0175 2.0953 2.2745 2.0953a2.3846 2.3846 0 0 0 1.2885-.3713c.2605-.162.4823-.379.6499-.636a.5886.5886 0 0 0-.7548-.0139zm11.43-2.539h1.2877v2.9512a.5904.5904 0 0 0 .5728.6006h.0278v-3.5518h1.284a.5941.5941 0 0 0 .5932-.5932h-4.3503a.5904.5904 0 0 0 .5848.5932zm-7.3108 2.0665c0 .8364-.726 1.4853-1.6507 1.4853-.9283 0-1.6505-.6498-1.6505-1.4853s.725-1.4947 1.6505-1.4947c.9256 0 1.6507.6583 1.6507 1.4947zm-.6007-.0028c0-.5004-.4641-.894-1.05-.894-.5876 0-1.0509.3927-1.0509.894 0 .5013.4643.8875 1.051.8875s1.05-.387 1.05-.8875zm6.7975-1.5002c-.9506 0-1.6395.6433-1.6395 1.5178v2.5335a.596.596 0 0 0 .6016-.5857v-1.9496c0-.6313.5162-.9172 1.038-.9172.5486 0 .9812.3982.9812.9051 0 .4874-.4326.8754-.9813.8754-.3686 0-.6452-.0928-.8132-.2785v.0056a.7503.7503 0 0 0-.0381.1068.596.596 0 0 0 .4112.7241c.1462.0314.2953.0463.4447.0446.8885 0 1.581-.6508 1.5736-1.4761a1.4647 1.4647 0 0 0-.4642-1.075 1.642 1.642 0 0 0-1.114-.4308z" }) + ] + } + ); +}); + +exports.default = SiComptia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.d.ts new file mode 100644 index 000000000..31c30ff1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C8202F"; +declare const SiComptia: IconType; +export { SiComptia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.mjs new file mode 100644 index 000000000..708de82ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComptia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C8202F"; +const SiComptia = React.forwardRef(function SiComptia2({ title = "CompTIA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.8292 11.7067v1.8524a.608.608 0 0 1-.6016-.6136v-1.2366a.5728.5728 0 0 0-1.1428 0v1.8502a.5988.5988 0 0 1-.5998-.5978v-1.2524a.5746.5746 0 0 0-1.1455 0v1.2431a.608.608 0 0 1-.5998.6071V11.709c.0097-.6352.5325-1.1422 1.1676-1.1325h.0013c.331-.0046.6486.1302.8754.3713a1.1752 1.1752 0 0 1 .868-.3713c.6372-.013 1.1642.493 1.1772 1.1303zm7.0156-2.2917v3.563a.597.597 0 0 0 .6006.5811v-3.563a.5969.5969 0 0 0-.6006-.5811zM24 13.5258c-.324.0269-.675-.0697-.8011-.3435l-.3185-.6852h-2.1306l-.3157.7037c-.1494.2785-.544.3667-.8476.3667l1.738-3.8063a.5292.5292 0 0 1 .4762-.3435.5367.5367 0 0 1 .481.3435L24 13.5258zm-1.3759-1.6182-.8059-1.7671-.8038 1.767h1.6097zm-19.166.6387a1.8463 1.8463 0 0 1-1.1817.4373c-.9312 0-1.6888-.6824-1.6888-1.5133s.7604-1.5058 1.6888-1.5058c.501.0002.98.2055 1.3257.5682a.5812.5812 0 0 0 .7417.0827c-.362-.7502-1.1763-1.2376-2.0693-1.2376C1.0212 9.3778 0 10.3164 0 11.4722c0 1.1558 1.0175 2.0953 2.2745 2.0953a2.3846 2.3846 0 0 0 1.2885-.3713c.2605-.162.4823-.379.6499-.636a.5886.5886 0 0 0-.7548-.0139zm11.43-2.539h1.2877v2.9512a.5904.5904 0 0 0 .5728.6006h.0278v-3.5518h1.284a.5941.5941 0 0 0 .5932-.5932h-4.3503a.5904.5904 0 0 0 .5848.5932zm-7.3108 2.0665c0 .8364-.726 1.4853-1.6507 1.4853-.9283 0-1.6505-.6498-1.6505-1.4853s.725-1.4947 1.6505-1.4947c.9256 0 1.6507.6583 1.6507 1.4947zm-.6007-.0028c0-.5004-.4641-.894-1.05-.894-.5876 0-1.0509.3927-1.0509.894 0 .5013.4643.8875 1.051.8875s1.05-.387 1.05-.8875zm6.7975-1.5002c-.9506 0-1.6395.6433-1.6395 1.5178v2.5335a.596.596 0 0 0 .6016-.5857v-1.9496c0-.6313.5162-.9172 1.038-.9172.5486 0 .9812.3982.9812.9051 0 .4874-.4326.8754-.9813.8754-.3686 0-.6452-.0928-.8132-.2785v.0056a.7503.7503 0 0 0-.0381.1068.596.596 0 0 0 .4112.7241c.1462.0314.2953.0463.4447.0446.8885 0 1.581-.6508 1.5736-1.4761a1.4647 1.4647 0 0 0-.4642-1.075 1.642 1.642 0 0 0-1.114-.4308z" }) + ] + } + ); +}); + +export { SiComptia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.cjs new file mode 100644 index 000000000..51152f88c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#368CCB"; +const SiComsol = React__namespace.forwardRef(function SiComsol2({ title = "Comsol", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.53833 11.13097c-.11125.1301-.1384.3006-.1384.38725l.2974-.00005c0-.1475.0921-.2303.1478-.27135.0377-.0278.1422-.0786.2357-.0786.1468 0 .3338.0001.3338 0h1.22156l.00025.0001c.0725 0 .1312-.0589.1312-.13125 0-.0725-.0587-.13135-.1312-.13135h-1.16086c-.17195 0-.2702-.001-.43035-.001-.2305 0-.39225.0922-.5069.2263m4.72086-.2253h-.8968s-1.0709-.0563-1.0709 1.0941c0 1.15066 1.0709 1.09436 1.0709 1.09436h.8968s1.07075.0563 1.07075-1.09435c0-1.0479-.8884-1.09455-1.04675-1.09455-.0155 0-.024.00045-.024.00045m-1.68005 1.0941s-.0658-.83165.80665-.83165h.85c.8722 0 .8065.83165.8065.83165s.0657.83165-.8065.83165h-.85c-.87245 0-.80665-.83165-.80665-.83165m-8.49447-1.0941h-.8968s-1.0709-.0563-1.0709 1.0941c0 1.15065 1.0709 1.09435 1.0709 1.09435h.8968s1.07065.0563 1.07065-1.09435c0-1.0479-.8883-1.09455-1.0467-1.09455-.0154 0-.0239.00045-.0239.00045m-1.68015 1.0941s-.0658-.83165.8067-.83165h.85005c.8722 0 .80655.83165.80655.83165s.0657.83165-.80655.83165h-.85005c-.87245 0-.8067-.83165-.8067-.83165m-3.31101.00015c0 1.15065 1.07085 1.09435 1.07085 1.09435h1.44441c.002.00005.003.0005.005.0005.0725 0 .13125-.0588.13125-.1313 0-.0725-.0588-.1313-.13125-.1313v-.00055H6.18816c-.87245 0-.80665-.8317-.80665-.8317s-.0658-.83165.80665-.83165h1.42546s.00005.0001.0002.0001c.0725 0 .13125-.0589.13125-.13125 0-.0725-.0588-.13135-.13125-.13135H6.16466s-.009-.00045-.0241-.00045c-.1584 0-1.0468.0467-1.0468 1.0946m-2.60715-1.09455c-.17581 0-.31831.14255-.31831.31825v1.55225c0 .1758.1425.31825.31831.31825h1.23395c.1757 0 .3183-.14245.3183-.31825v-1.55225c0-.1757-.1426-.31825-.3183-.31825zm-2.16836 0c-.17575 0-.31825.14254-.31825.31824l.00005.0003c0 .00035-.00005.00065-.00005.001 0 .0756.0273.14415.0711.1988l.001.004 1.2323 1.5509.003.001c.0587.0693.1451.1141.2429.1141.00035 0 .0007-.0001.001-.0001l.00025.0001c.17575 0 .3183-.14245.3183-.31825v-1.55225c0-.1757-.14255-.31825-.3183-.31825zm21.49285.13175h-.00015v2.0578h2.0579v-.00015c.0725 0 .13115-.0588.13115-.1313 0-.0724-.0587-.1313-.13115-.1313H22.0735v-1.79505c0-.0725-.0588-.13135-.13125-.13135-.0725 0-.13115.0588-.13115.13135m-7.18002-.088-.0005-.00055-1.39595 1.39585-1.40976-1.40965-.001.001c-.0227-.0187-.0513-.0303-.083-.0303-.0725 0-.13115.0588-.13115.13135h-.00015v2.0578h.2626v-1.74165l1.27031 1.27015c.006.005.0114.009.0171.0129.004.002.007.004.0112.007.004.002.007.004.0109.006.002.00095.004.002.006.003.0386.0158.0728.01.0977-.001.00095-.00035.002-.0009.003-.001.007-.003.013-.006.0181-.01.001-.00085.003-.002.004-.003.0116-.008.0181-.0147.0181-.0147v.00015l1.2683-1.2682v1.74095h.2627v-2.0578h-.00015c0-.0725-.0587-.13135-.1311-.13135-.0386 0-.0728.0169-.0969.0433m.7691.5691c0 .0867.0272.2573.1384.38735.11465.134.2764.2264.5069.2264.16015 0 .2584-.001.43035-.001h.0163v.00025h.73801c.0935 0 .19795.0508.23575.0786.0557.0409.1477.1237.1477.27125h.2975c0-.0864-.0271-.2571-.13835-.38725-.11465-.13405-.27645-.2264-.50705-.2264-.1602 0-.25835.001-.4302.001h-.0164v-.00025h-.73796c-.0935 0-.19795-.0507-.2357-.0786-.0557-.041-.1478-.12385-.1478-.27145zm2.21341.96295c0 .1474-.092.2303-.1477.2712-.0378.028-.14225.0786-.23575.0786-.1467 0-.3339-.00015-.3339 0h-1.36481v.001c-.0725 0-.13125.0588-.13125.1313 0 .0725.0588.1312.13125.1312.004 0 .007-.0008.0111-.001h1.29301c.17185 0 .27.001.4302.001.2306 0 .3924-.0923.50705-.22635.11125-.13015.13835-.30075.13835-.3874z" }) + ] + } + ); +}); + +exports.default = SiComsol; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.d.ts new file mode 100644 index 000000000..f2cb7efaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#368CCB"; +declare const SiComsol: IconType; +export { SiComsol as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.mjs new file mode 100644 index 000000000..0e84230ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiComsol.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#368CCB"; +const SiComsol = React.forwardRef(function SiComsol2({ title = "Comsol", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.53833 11.13097c-.11125.1301-.1384.3006-.1384.38725l.2974-.00005c0-.1475.0921-.2303.1478-.27135.0377-.0278.1422-.0786.2357-.0786.1468 0 .3338.0001.3338 0h1.22156l.00025.0001c.0725 0 .1312-.0589.1312-.13125 0-.0725-.0587-.13135-.1312-.13135h-1.16086c-.17195 0-.2702-.001-.43035-.001-.2305 0-.39225.0922-.5069.2263m4.72086-.2253h-.8968s-1.0709-.0563-1.0709 1.0941c0 1.15066 1.0709 1.09436 1.0709 1.09436h.8968s1.07075.0563 1.07075-1.09435c0-1.0479-.8884-1.09455-1.04675-1.09455-.0155 0-.024.00045-.024.00045m-1.68005 1.0941s-.0658-.83165.80665-.83165h.85c.8722 0 .8065.83165.8065.83165s.0657.83165-.8065.83165h-.85c-.87245 0-.80665-.83165-.80665-.83165m-8.49447-1.0941h-.8968s-1.0709-.0563-1.0709 1.0941c0 1.15065 1.0709 1.09435 1.0709 1.09435h.8968s1.07065.0563 1.07065-1.09435c0-1.0479-.8883-1.09455-1.0467-1.09455-.0154 0-.0239.00045-.0239.00045m-1.68015 1.0941s-.0658-.83165.8067-.83165h.85005c.8722 0 .80655.83165.80655.83165s.0657.83165-.80655.83165h-.85005c-.87245 0-.8067-.83165-.8067-.83165m-3.31101.00015c0 1.15065 1.07085 1.09435 1.07085 1.09435h1.44441c.002.00005.003.0005.005.0005.0725 0 .13125-.0588.13125-.1313 0-.0725-.0588-.1313-.13125-.1313v-.00055H6.18816c-.87245 0-.80665-.8317-.80665-.8317s-.0658-.83165.80665-.83165h1.42546s.00005.0001.0002.0001c.0725 0 .13125-.0589.13125-.13125 0-.0725-.0588-.13135-.13125-.13135H6.16466s-.009-.00045-.0241-.00045c-.1584 0-1.0468.0467-1.0468 1.0946m-2.60715-1.09455c-.17581 0-.31831.14255-.31831.31825v1.55225c0 .1758.1425.31825.31831.31825h1.23395c.1757 0 .3183-.14245.3183-.31825v-1.55225c0-.1757-.1426-.31825-.3183-.31825zm-2.16836 0c-.17575 0-.31825.14254-.31825.31824l.00005.0003c0 .00035-.00005.00065-.00005.001 0 .0756.0273.14415.0711.1988l.001.004 1.2323 1.5509.003.001c.0587.0693.1451.1141.2429.1141.00035 0 .0007-.0001.001-.0001l.00025.0001c.17575 0 .3183-.14245.3183-.31825v-1.55225c0-.1757-.14255-.31825-.3183-.31825zm21.49285.13175h-.00015v2.0578h2.0579v-.00015c.0725 0 .13115-.0588.13115-.1313 0-.0724-.0587-.1313-.13115-.1313H22.0735v-1.79505c0-.0725-.0588-.13135-.13125-.13135-.0725 0-.13115.0588-.13115.13135m-7.18002-.088-.0005-.00055-1.39595 1.39585-1.40976-1.40965-.001.001c-.0227-.0187-.0513-.0303-.083-.0303-.0725 0-.13115.0588-.13115.13135h-.00015v2.0578h.2626v-1.74165l1.27031 1.27015c.006.005.0114.009.0171.0129.004.002.007.004.0112.007.004.002.007.004.0109.006.002.00095.004.002.006.003.0386.0158.0728.01.0977-.001.00095-.00035.002-.0009.003-.001.007-.003.013-.006.0181-.01.001-.00085.003-.002.004-.003.0116-.008.0181-.0147.0181-.0147v.00015l1.2683-1.2682v1.74095h.2627v-2.0578h-.00015c0-.0725-.0587-.13135-.1311-.13135-.0386 0-.0728.0169-.0969.0433m.7691.5691c0 .0867.0272.2573.1384.38735.11465.134.2764.2264.5069.2264.16015 0 .2584-.001.43035-.001h.0163v.00025h.73801c.0935 0 .19795.0508.23575.0786.0557.0409.1477.1237.1477.27125h.2975c0-.0864-.0271-.2571-.13835-.38725-.11465-.13405-.27645-.2264-.50705-.2264-.1602 0-.25835.001-.4302.001h-.0164v-.00025h-.73796c-.0935 0-.19795-.0507-.2357-.0786-.0557-.041-.1478-.12385-.1478-.27145zm2.21341.96295c0 .1474-.092.2303-.1477.2712-.0378.028-.14225.0786-.23575.0786-.1467 0-.3339-.00015-.3339 0h-1.36481v.001c-.0725 0-.13125.0588-.13125.1313 0 .0725.0588.1312.13125.1312.004 0 .007-.0008.0111-.001h1.29301c.17185 0 .27.001.4302.001.2306 0 .3924-.0923.50705-.22635.11125-.13015.13835-.30075.13835-.3874z" }) + ] + } + ); +}); + +export { SiComsol as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConan.cjs new file mode 100644 index 000000000..b2dd07719 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6699CB"; +const SiConan = React__namespace.forwardRef(function SiConan2({ title = "Conan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.709 0 0 5.534V16.76L11.984 24l4.857-2.706V9.998c.13-.084.275-.196.399-.27l.032-.017c.197-.11.329-.102.23.33v10.884l6.466-3.603V6.11L24 6.093Zm.915 2.83c.932.02 1.855.191 2.706.552 1.32.533 2.522 1.364 3.45 2.429a62.814 62.814 0 0 1-3.044 1.616c.56-.853.14-2.009-.76-2.455-.93-.648-2.093-.73-3.205-.674-1.064.175-2.258.51-2.893 1.474-.722.862-.084 2.11.914 2.408 1.2.509 2.543.38 3.806.413-.975.457-1.931.97-2.927 1.358-1.701-.176-3.585-.917-4.374-2.51-.574-1.178.215-2.572 1.319-3.14a11.426 11.426 0 0 1 3.336-1.348 9.212 9.212 0 0 1 1.672-.123Z" }) + ] + } + ); +}); + +exports.default = SiConan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConan.d.ts new file mode 100644 index 000000000..539fea265 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6699CB"; +declare const SiConan: IconType; +export { SiConan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConan.mjs new file mode 100644 index 000000000..1fd47d73b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6699CB"; +const SiConan = React.forwardRef(function SiConan2({ title = "Conan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.709 0 0 5.534V16.76L11.984 24l4.857-2.706V9.998c.13-.084.275-.196.399-.27l.032-.017c.197-.11.329-.102.23.33v10.884l6.466-3.603V6.11L24 6.093Zm.915 2.83c.932.02 1.855.191 2.706.552 1.32.533 2.522 1.364 3.45 2.429a62.814 62.814 0 0 1-3.044 1.616c.56-.853.14-2.009-.76-2.455-.93-.648-2.093-.73-3.205-.674-1.064.175-2.258.51-2.893 1.474-.722.862-.084 2.11.914 2.408 1.2.509 2.543.38 3.806.413-.975.457-1.931.97-2.927 1.358-1.701-.176-3.585-.917-4.374-2.51-.574-1.178.215-2.572 1.319-3.14a11.426 11.426 0 0 1 3.336-1.348 9.212 9.212 0 0 1 1.672-.123Z" }) + ] + } + ); +}); + +export { SiConan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.cjs new file mode 100644 index 000000000..f15961d43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3398DC"; +const SiConcourse = React__namespace.forwardRef(function SiConcourse2({ title = "Concourse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9679 11.2451c-.041-.4858-.1227-.9615-.2353-1.4372-.0511-.243-.133-.4758-.1943-.7187l-.1125-.334-.0614-.162-.0716-.1821c-.1739-.4454-.3887-.8705-.6342-1.2855a9.801 9.801 0 00-1.5752-2.0345l-.092-.091-.041-.0507-.0716-.0607c-.0614-.0607-.1227-.1113-.1841-.172-.0614-.0507-.1228-.1114-.1739-.162-.0716-.0608-.133-.1114-.2046-.162l-.1636-.1316-.0819-.0607-.0204-.0202-.0512-.0405-.0102-.0101-.041-.0304c-.1022-.0709-.1943-.1316-.2863-.1923-.1637-.1114-.2864-.2025-.3785-.2632.1023-.3846.1841-.7794.2455-1.1741.1023-.5972.5217-1.832-.3375-2.1863-.8081-.334-1.8617 1.1842-1.8617 1.1842-2.1173 2.4394-3.396 5.4759-3.6823 8.6744.5319.1113 1.0433.3441 1.4729.6781h.0102C16.1838 9.7876 17.084 8.6135 17.8 7.3382c.6854.425 1.2889.9716 1.7696 1.6194l.0716.0911.0716.1114.1432.2226c.0819.1417.174.2733.2455.4252.3171.587.5421 1.2146.6751 1.8623.0614.3037.1023.6074.1228.9211a5.7575 5.7575 0 010 .8401c-.0103.2328-.041.4758-.0819.7086a4.6387 4.6387 0 01-.1125.5465c-.0818.2936-.133.4656-.133.4656s.0716-.162.1944-.4453c.0511-.1417.1227-.324.1841-.5365.0716-.2328.133-.4757.1739-.7085.0511-.2834.092-.577.1125-.8705a7.8611 7.8611 0 000-.9818c-.0204-.3542-.0716-.7085-.1432-1.0526a9.0875 9.0875 0 00-.3069-1.0628c-.0613-.172-.1432-.3543-.225-.5264l-.1125-.2328-.0614-.1214-.0307-.1316c-.1739-.3239-.3784-.6275-.6035-.921-.3887-.5163-.849-.9718-1.3604-1.3766.1534-.3442.3069-.6984.4296-1.0628l.0614.0304.3069.1619.0409.0202.0102.0102c.041.0303-.0614-.0405-.0511-.0304l.0204.0101.0818.0506.174.1114.092.0607.0511.0304.0205.0202h.0102c.0103.0101-.0511-.0405-.0307-.0202l.0103.01c.0613.0507.1227.0912.1943.1418l.2046.1518.0307.0203c-.041-.0304-.0103-.0102-.0205-.0203h.0102l.0103.0101.0511.0405.1023.081a8.8213 8.8213 0 012.2401 2.743l.0716.1417.0716.162.1534.3137c.0819.2025.174.4049.2353.6174.2966.8401.4705 1.7309.5012 2.6216.0102.2125.0102.425.0102.6376 0 .2126-.0204.415-.0306.6073-.0307.3745-.0921.739-.174 1.1134-.0715.3138-.1534.6175-.2557.9211-.0818.2733-.184.5061-.2557.6984-.0818.1923-.1534.334-.1943.4352-.0512.1013-.0716.1519-.0716.1519s.0307-.0506.092-.1417c.0512-.0911.1432-.2328.2455-.415.092-.1822.2148-.4049.3274-.668.133-.2936.2557-.5972.3477-.911.1228-.3644.2148-.7389.2967-1.1235.0409-.2025.0818-.415.1023-.6276a6.8334 6.8334 0 00.0613-.6579c.0307-.4555.0307-.921-.0102-1.3867zm-12.7946.6992a15.3453 15.3453 0 00-4.4414-.625c.0404-.8037.2428-1.5875.5868-2.3118l.0506-.0992.0607-.119.1214-.2283c.0809-.1389.1517-.2778.2529-.4068.3642-.5456.8094-1.0318 1.3152-1.4485.2327-.1984.4856-.377.7487-.5358.2327-.1488.4856-.2778.7385-.3968a7.5772 7.5772 0 01.6576-.268c.2024-.0793.3845-.119.5261-.1587.2934-.0694.4755-.1091.4755-.1091s-.172.01-.4856.0496c-.1517.0198-.344.0397-.5564.0893a8.1925 8.1925 0 00-.7082.1786c-.2732.0893-.5464.1885-.8195.3076-.3035.129-.5868.2877-.86.4563-.3035.1886-.5868.387-.86.6152-.2832.2381-.5462.4861-.789.764-.1215.129-.2429.2877-.3643.4365l-.1517.2083-.0708.1092-.081.119c-.1922.2977-.3743.6152-.516.9426a6.974 6.974 0 00-.5665 1.8454v.0298c-.3642.0297-.7284.0793-1.0927.1389v-.1885-.3969c.0102-.0496-.01.0694-.01.0595V10.972c0-.0298.01-.0596.01-.0993.0102-.0694.0102-.129.0203-.1984 0-.0397.01-.0694.01-.1091v-.0894c0-.0098-.01.0695-.01.0298v-.0099c.01-.0694.0202-.1488.0303-.2282.0101-.0793.0203-.1587.0405-.238v-.0299c-.0101.0497 0 .01-.0101.0199v-.0298l.01-.0595.0203-.129c.253-1.141.7082-2.2323 1.3658-3.1947l.091-.129.1013-.139.2124-.2777c.1417-.1588.2732-.3373.435-.496.597-.645 1.295-1.2105 2.064-1.657a5.9648 5.9648 0 01.5564-.2976c.182-.0993.3743-.1786.5463-.258.344-.1488.698-.2679 1.0522-.377.3035-.0893.6171-.1588.9308-.2183.2832-.0595.526-.0794.7284-.1091.2023-.0199.3642-.0298.4755-.0397h.1619l-.172-.01c-.1113 0-.2732-.0099-.4755-.0099-.2024.01-.4553 0-.7487.0298-.3237.0298-.6475.0695-.9611.129-.3845.0694-.7588.1587-1.123.2778a8.6512 8.6512 0 00-.597.2083c-.2023.0695-.4046.1588-.607.258-.4249.1984-.8296.4167-1.2241.6647-.4047.258-.7892.5557-1.1534.8731-.182.1489-.3642.3374-.5362.506l-.2327.258-.1214.129-.1214.1488c-.3035.3572-.5868.7441-.8296 1.141-.4451.7143-.7992 1.4882-1.042 2.2919l-.0405.119-.0202.0596-.0203.0893-.0607.238c-.0202.0794-.0405.1489-.0607.2283-.0202.0893-.0303.1686-.0506.248-.01.0695-.0303.139-.0404.1984-.0102.0298-.0102.0596-.0203.0993v.0298l-.01.0594v.0596c-.0102.119-.0203.2282-.0406.3373-.0303.3076-.0505.506-.0607.5953-.354.0893-.7082.1984-1.0521.3175 0 0-1.8515.4266-1.7503 1.3196.1012.8433 1.9223 1.012 1.9223 1.012 3.1464.635 6.4142.2877 9.3482-.9922-.1518-.516-.1923-1.0517-.1012-1.5775zm4.411 1.938c-.3645.4088-.81.7255-1.3162.9299v.0102c.3848 1.4816.982 2.8916 1.7718 4.1995-.6986.3678-1.4478.613-2.2274.7152l-.1113.0102-.1317.0103-.2632.0204c-.162 0-.324.0102-.486 0-.6682-.0102-1.3262-.1226-1.954-.3372-.2936-.092-.5872-.2146-.8605-.3474-.2531-.1226-.4961-.2554-.729-.4087-.2025-.1328-.3948-.2657-.577-.419-.1722-.1328-.3038-.2656-.4253-.3678-.2227-.2145-.3442-.3474-.3442-.3474s.1012.143.2936.3883c.1012.1226.2227.2657.3746.419.1721.1839.3442.3473.5366.5108.2227.1942.4556.3679.6986.5313.2733.184.5568.3474.8504.4905.3139.1533.648.286.982.3985.3544.1124.7088.1941 1.0733.2554.1822.0307.3746.0511.567.0716l.2631.0204.1317.0102h.1518c.3645 0 .729-.0204 1.0935-.0715.6175-.0818 1.225-.2452 1.8122-.4802.2227.3065.4556.6028.6986.8889-.0101.0102-.0203.0102-.0304.0204l-.2936.184-.0405.0204-.0101.0102c-.0506.0204.0607-.0306.0506-.0204h-.0101l-.0203.0102c-.0303.0102-.0607.0306-.091.0409l-.1823.092-.1013.051-.0506.0307-.0202.0102h-.0102c-.01 0 .0608-.0307.0304-.0102l-.0101.0102-.2126.092c-.0709.0306-.1519.0612-.2228.1021l-.0303.0102c.0506-.0204.0101 0 .0202-.0102h-.0101l-.0101.0102-.0608.0205-.1215.051a8.7816 8.7816 0 01-3.4827.5927l-.1519-.0102-.1721-.0102-.3544-.0307c-.2126-.0307-.4353-.051-.658-.1022-.8809-.1635-1.7313-.4496-2.5311-.8685-.1924-.1022-.3746-.2043-.5569-.3065-.1822-.1022-.3442-.2248-.5163-.3372-.3037-.2146-.6075-.4496-.8808-.6948-.243-.2146-.4657-.4394-.6784-.6744-.2024-.2043-.3442-.4087-.4758-.5722-.1316-.1635-.2126-.2963-.2835-.3883l-.1012-.143s.0303.051.081.143c.0607.092.1316.2453.243.419.1113.1737.243.3882.4252.6233.1923.2656.405.521.6176.756.2632.2862.5365.562.8302.8073.162.1328.324.2759.496.3985.1722.1328.3544.2656.5468.3882a11.06 11.06 0 001.225.6846c.4455.2044.901.378 1.3668.511.2328.0714.486.1225.729.1838l.3442.0613.172.0307.1924.0307c.4759.0613.9517.092 1.4276.092.8605-.0103 1.711-.133 2.5412-.3577l.1215-.0307.0607-.0204.0911-.0307c.081-.0306.162-.051.2329-.0817l.2227-.0715.243-.092c.0709-.0306.1316-.051.1924-.0715.0304-.0102.0607-.0204.0911-.0409l.0203-.0102h.01l.0608-.0306.0101-.0103.0405-.0204.3038-.1533c.162-.0817.2835-.143.3847-.1839.2632.2555.5265.5007.81.7255 0 0 1.3262 1.3794 2.0552.8174.6884-.5313-.1013-2.207-.1013-2.207-1.0529-3.0245-3.0474-5.6811-5.6797-7.5407zm-.0549-1.4117a1.8824 1.8824 0 01-1.8823 1.8823 1.8824 1.8824 0 01-1.8824-1.8823 1.8824 1.8824 0 011.8824-1.8824 1.8824 1.8824 0 011.8823 1.8824Z" }) + ] + } + ); +}); + +exports.default = SiConcourse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.d.ts new file mode 100644 index 000000000..ba139d666 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3398DC"; +declare const SiConcourse: IconType; +export { SiConcourse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.mjs new file mode 100644 index 000000000..2d5c0481c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConcourse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3398DC"; +const SiConcourse = React.forwardRef(function SiConcourse2({ title = "Concourse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9679 11.2451c-.041-.4858-.1227-.9615-.2353-1.4372-.0511-.243-.133-.4758-.1943-.7187l-.1125-.334-.0614-.162-.0716-.1821c-.1739-.4454-.3887-.8705-.6342-1.2855a9.801 9.801 0 00-1.5752-2.0345l-.092-.091-.041-.0507-.0716-.0607c-.0614-.0607-.1227-.1113-.1841-.172-.0614-.0507-.1228-.1114-.1739-.162-.0716-.0608-.133-.1114-.2046-.162l-.1636-.1316-.0819-.0607-.0204-.0202-.0512-.0405-.0102-.0101-.041-.0304c-.1022-.0709-.1943-.1316-.2863-.1923-.1637-.1114-.2864-.2025-.3785-.2632.1023-.3846.1841-.7794.2455-1.1741.1023-.5972.5217-1.832-.3375-2.1863-.8081-.334-1.8617 1.1842-1.8617 1.1842-2.1173 2.4394-3.396 5.4759-3.6823 8.6744.5319.1113 1.0433.3441 1.4729.6781h.0102C16.1838 9.7876 17.084 8.6135 17.8 7.3382c.6854.425 1.2889.9716 1.7696 1.6194l.0716.0911.0716.1114.1432.2226c.0819.1417.174.2733.2455.4252.3171.587.5421 1.2146.6751 1.8623.0614.3037.1023.6074.1228.9211a5.7575 5.7575 0 010 .8401c-.0103.2328-.041.4758-.0819.7086a4.6387 4.6387 0 01-.1125.5465c-.0818.2936-.133.4656-.133.4656s.0716-.162.1944-.4453c.0511-.1417.1227-.324.1841-.5365.0716-.2328.133-.4757.1739-.7085.0511-.2834.092-.577.1125-.8705a7.8611 7.8611 0 000-.9818c-.0204-.3542-.0716-.7085-.1432-1.0526a9.0875 9.0875 0 00-.3069-1.0628c-.0613-.172-.1432-.3543-.225-.5264l-.1125-.2328-.0614-.1214-.0307-.1316c-.1739-.3239-.3784-.6275-.6035-.921-.3887-.5163-.849-.9718-1.3604-1.3766.1534-.3442.3069-.6984.4296-1.0628l.0614.0304.3069.1619.0409.0202.0102.0102c.041.0303-.0614-.0405-.0511-.0304l.0204.0101.0818.0506.174.1114.092.0607.0511.0304.0205.0202h.0102c.0103.0101-.0511-.0405-.0307-.0202l.0103.01c.0613.0507.1227.0912.1943.1418l.2046.1518.0307.0203c-.041-.0304-.0103-.0102-.0205-.0203h.0102l.0103.0101.0511.0405.1023.081a8.8213 8.8213 0 012.2401 2.743l.0716.1417.0716.162.1534.3137c.0819.2025.174.4049.2353.6174.2966.8401.4705 1.7309.5012 2.6216.0102.2125.0102.425.0102.6376 0 .2126-.0204.415-.0306.6073-.0307.3745-.0921.739-.174 1.1134-.0715.3138-.1534.6175-.2557.9211-.0818.2733-.184.5061-.2557.6984-.0818.1923-.1534.334-.1943.4352-.0512.1013-.0716.1519-.0716.1519s.0307-.0506.092-.1417c.0512-.0911.1432-.2328.2455-.415.092-.1822.2148-.4049.3274-.668.133-.2936.2557-.5972.3477-.911.1228-.3644.2148-.7389.2967-1.1235.0409-.2025.0818-.415.1023-.6276a6.8334 6.8334 0 00.0613-.6579c.0307-.4555.0307-.921-.0102-1.3867zm-12.7946.6992a15.3453 15.3453 0 00-4.4414-.625c.0404-.8037.2428-1.5875.5868-2.3118l.0506-.0992.0607-.119.1214-.2283c.0809-.1389.1517-.2778.2529-.4068.3642-.5456.8094-1.0318 1.3152-1.4485.2327-.1984.4856-.377.7487-.5358.2327-.1488.4856-.2778.7385-.3968a7.5772 7.5772 0 01.6576-.268c.2024-.0793.3845-.119.5261-.1587.2934-.0694.4755-.1091.4755-.1091s-.172.01-.4856.0496c-.1517.0198-.344.0397-.5564.0893a8.1925 8.1925 0 00-.7082.1786c-.2732.0893-.5464.1885-.8195.3076-.3035.129-.5868.2877-.86.4563-.3035.1886-.5868.387-.86.6152-.2832.2381-.5462.4861-.789.764-.1215.129-.2429.2877-.3643.4365l-.1517.2083-.0708.1092-.081.119c-.1922.2977-.3743.6152-.516.9426a6.974 6.974 0 00-.5665 1.8454v.0298c-.3642.0297-.7284.0793-1.0927.1389v-.1885-.3969c.0102-.0496-.01.0694-.01.0595V10.972c0-.0298.01-.0596.01-.0993.0102-.0694.0102-.129.0203-.1984 0-.0397.01-.0694.01-.1091v-.0894c0-.0098-.01.0695-.01.0298v-.0099c.01-.0694.0202-.1488.0303-.2282.0101-.0793.0203-.1587.0405-.238v-.0299c-.0101.0497 0 .01-.0101.0199v-.0298l.01-.0595.0203-.129c.253-1.141.7082-2.2323 1.3658-3.1947l.091-.129.1013-.139.2124-.2777c.1417-.1588.2732-.3373.435-.496.597-.645 1.295-1.2105 2.064-1.657a5.9648 5.9648 0 01.5564-.2976c.182-.0993.3743-.1786.5463-.258.344-.1488.698-.2679 1.0522-.377.3035-.0893.6171-.1588.9308-.2183.2832-.0595.526-.0794.7284-.1091.2023-.0199.3642-.0298.4755-.0397h.1619l-.172-.01c-.1113 0-.2732-.0099-.4755-.0099-.2024.01-.4553 0-.7487.0298-.3237.0298-.6475.0695-.9611.129-.3845.0694-.7588.1587-1.123.2778a8.6512 8.6512 0 00-.597.2083c-.2023.0695-.4046.1588-.607.258-.4249.1984-.8296.4167-1.2241.6647-.4047.258-.7892.5557-1.1534.8731-.182.1489-.3642.3374-.5362.506l-.2327.258-.1214.129-.1214.1488c-.3035.3572-.5868.7441-.8296 1.141-.4451.7143-.7992 1.4882-1.042 2.2919l-.0405.119-.0202.0596-.0203.0893-.0607.238c-.0202.0794-.0405.1489-.0607.2283-.0202.0893-.0303.1686-.0506.248-.01.0695-.0303.139-.0404.1984-.0102.0298-.0102.0596-.0203.0993v.0298l-.01.0594v.0596c-.0102.119-.0203.2282-.0406.3373-.0303.3076-.0505.506-.0607.5953-.354.0893-.7082.1984-1.0521.3175 0 0-1.8515.4266-1.7503 1.3196.1012.8433 1.9223 1.012 1.9223 1.012 3.1464.635 6.4142.2877 9.3482-.9922-.1518-.516-.1923-1.0517-.1012-1.5775zm4.411 1.938c-.3645.4088-.81.7255-1.3162.9299v.0102c.3848 1.4816.982 2.8916 1.7718 4.1995-.6986.3678-1.4478.613-2.2274.7152l-.1113.0102-.1317.0103-.2632.0204c-.162 0-.324.0102-.486 0-.6682-.0102-1.3262-.1226-1.954-.3372-.2936-.092-.5872-.2146-.8605-.3474-.2531-.1226-.4961-.2554-.729-.4087-.2025-.1328-.3948-.2657-.577-.419-.1722-.1328-.3038-.2656-.4253-.3678-.2227-.2145-.3442-.3474-.3442-.3474s.1012.143.2936.3883c.1012.1226.2227.2657.3746.419.1721.1839.3442.3473.5366.5108.2227.1942.4556.3679.6986.5313.2733.184.5568.3474.8504.4905.3139.1533.648.286.982.3985.3544.1124.7088.1941 1.0733.2554.1822.0307.3746.0511.567.0716l.2631.0204.1317.0102h.1518c.3645 0 .729-.0204 1.0935-.0715.6175-.0818 1.225-.2452 1.8122-.4802.2227.3065.4556.6028.6986.8889-.0101.0102-.0203.0102-.0304.0204l-.2936.184-.0405.0204-.0101.0102c-.0506.0204.0607-.0306.0506-.0204h-.0101l-.0203.0102c-.0303.0102-.0607.0306-.091.0409l-.1823.092-.1013.051-.0506.0307-.0202.0102h-.0102c-.01 0 .0608-.0307.0304-.0102l-.0101.0102-.2126.092c-.0709.0306-.1519.0612-.2228.1021l-.0303.0102c.0506-.0204.0101 0 .0202-.0102h-.0101l-.0101.0102-.0608.0205-.1215.051a8.7816 8.7816 0 01-3.4827.5927l-.1519-.0102-.1721-.0102-.3544-.0307c-.2126-.0307-.4353-.051-.658-.1022-.8809-.1635-1.7313-.4496-2.5311-.8685-.1924-.1022-.3746-.2043-.5569-.3065-.1822-.1022-.3442-.2248-.5163-.3372-.3037-.2146-.6075-.4496-.8808-.6948-.243-.2146-.4657-.4394-.6784-.6744-.2024-.2043-.3442-.4087-.4758-.5722-.1316-.1635-.2126-.2963-.2835-.3883l-.1012-.143s.0303.051.081.143c.0607.092.1316.2453.243.419.1113.1737.243.3882.4252.6233.1923.2656.405.521.6176.756.2632.2862.5365.562.8302.8073.162.1328.324.2759.496.3985.1722.1328.3544.2656.5468.3882a11.06 11.06 0 001.225.6846c.4455.2044.901.378 1.3668.511.2328.0714.486.1225.729.1838l.3442.0613.172.0307.1924.0307c.4759.0613.9517.092 1.4276.092.8605-.0103 1.711-.133 2.5412-.3577l.1215-.0307.0607-.0204.0911-.0307c.081-.0306.162-.051.2329-.0817l.2227-.0715.243-.092c.0709-.0306.1316-.051.1924-.0715.0304-.0102.0607-.0204.0911-.0409l.0203-.0102h.01l.0608-.0306.0101-.0103.0405-.0204.3038-.1533c.162-.0817.2835-.143.3847-.1839.2632.2555.5265.5007.81.7255 0 0 1.3262 1.3794 2.0552.8174.6884-.5313-.1013-2.207-.1013-2.207-1.0529-3.0245-3.0474-5.6811-5.6797-7.5407zm-.0549-1.4117a1.8824 1.8824 0 01-1.8823 1.8823 1.8824 1.8824 0 01-1.8824-1.8823 1.8824 1.8824 0 011.8824-1.8824 1.8824 1.8824 0 011.8823 1.8824Z" }) + ] + } + ); +}); + +export { SiConcourse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.cjs new file mode 100644 index 000000000..683ce47c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCondaforge = React__namespace.forwardRef(function SiCondaforge2({ title = "Conda-Forge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.206 5.866l.005.396H6.754l.006.655v.005l-6.758.002v.211L0 7.973l.02.041c.212.467.663.901 1.257 1.313.594.411 1.335.796 2.145 1.13 1.62.664 3.502 1.12 5.006 1.1.746-.01 1.265.228 1.62.672.341.426.51 1.092.524 1.92L7.94 16.239l.008 1.896H20.29l-.004-1.76-2.63-2.22c.055-2.013.708-3.443 1.777-4.405 1.087-.979 2.61-1.49 4.37-1.616l.195-.015L24 5.872zm.425.422l14.946.006-.004 1.457c-1.737.155-3.29.666-4.424 1.685-.912.822-1.433 2.062-1.691 3.534l-1.617.004.002.422 1.535-.004c-.027.226-.113.4-.123.64l-.893-.003-.002.422.995.004 2.138 1.802-2.941.002c-.724-.675-1.552-1.116-2.416-1.158-.817-.04-1.638.324-2.387 1.04l-2.978-.024 2.248-1.781v-.102c.002-.943-.2-1.72-.64-2.269-.396-.496-1.007-.749-1.741-.79l-.008-4.49h.008zm-1.45.396h1.026l.008 4.404c-1.387-.02-3.125-.404-4.631-1.023-.787-.324-1.507-.698-2.066-1.086C.968 8.6.587 8.203.424 7.86v-.514l6.336-.002v2.16h.422v-2.16h.004l-.004-.435v-.226zm6.935 8.839c.75.037 1.503.436 2.18 1.078l-.002 1.112h-4.345l-.006-1.2c.706-.717 1.443-1.026 2.173-.99zM8.36 16.537l3.16.023.006 1.153h-3.16zm11.5.142l.002 1.034h-3.148V16.68z" }) + ] + } + ); +}); + +exports.default = SiCondaforge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.d.ts new file mode 100644 index 000000000..88777e483 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCondaforge: IconType; +export { SiCondaforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.mjs new file mode 100644 index 000000000..396796108 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCondaforge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCondaforge = React.forwardRef(function SiCondaforge2({ title = "Conda-Forge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.206 5.866l.005.396H6.754l.006.655v.005l-6.758.002v.211L0 7.973l.02.041c.212.467.663.901 1.257 1.313.594.411 1.335.796 2.145 1.13 1.62.664 3.502 1.12 5.006 1.1.746-.01 1.265.228 1.62.672.341.426.51 1.092.524 1.92L7.94 16.239l.008 1.896H20.29l-.004-1.76-2.63-2.22c.055-2.013.708-3.443 1.777-4.405 1.087-.979 2.61-1.49 4.37-1.616l.195-.015L24 5.872zm.425.422l14.946.006-.004 1.457c-1.737.155-3.29.666-4.424 1.685-.912.822-1.433 2.062-1.691 3.534l-1.617.004.002.422 1.535-.004c-.027.226-.113.4-.123.64l-.893-.003-.002.422.995.004 2.138 1.802-2.941.002c-.724-.675-1.552-1.116-2.416-1.158-.817-.04-1.638.324-2.387 1.04l-2.978-.024 2.248-1.781v-.102c.002-.943-.2-1.72-.64-2.269-.396-.496-1.007-.749-1.741-.79l-.008-4.49h.008zm-1.45.396h1.026l.008 4.404c-1.387-.02-3.125-.404-4.631-1.023-.787-.324-1.507-.698-2.066-1.086C.968 8.6.587 8.203.424 7.86v-.514l6.336-.002v2.16h.422v-2.16h.004l-.004-.435v-.226zm6.935 8.839c.75.037 1.503.436 2.18 1.078l-.002 1.112h-4.345l-.006-1.2c.706-.717 1.443-1.026 2.173-.99zM8.36 16.537l3.16.023.006 1.153h-3.16zm11.5.142l.002 1.034h-3.148V16.68z" }) + ] + } + ); +}); + +export { SiCondaforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.cjs new file mode 100644 index 000000000..19cc15e66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A1837"; +const SiConekta = React__namespace.forwardRef(function SiConekta2({ title = "Conekta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2914 17.8831a11.7327 11.7327 0 0 1-6.1742 3.0338 2.4598 2.4598 0 0 1-2.1647-.7461c-4.2466-4.6258-4.2466-11.7322 0-16.358a2.4599 2.4599 0 0 1 2.1729-.7461 11.668 11.668 0 0 1 6.289 3.1404 27.1655 27.1655 0 0 0-.6969 6.1004 27.7762 27.7762 0 0 0 .5739 5.5756zm9.8962-3.9376a1.394 1.394 0 0 0-1.5244.5266 24.6804 24.6804 0 0 1-11.9139 8.9375 35.4417 35.4417 0 0 0 6.4284.5903 36.2857 36.2857 0 0 0 4.4605-.2788 3.5997 3.5997 0 0 0 3.0338-2.6977c.4692-1.884.6453-3.8838.5166-5.8134a1.394 1.394 0 0 0-1.001-1.2645zm-1.5245-4.3356a1.394 1.394 0 0 0 2.5255-.7462c.1354-1.9699-.0438-3.9689-.5166-5.8872A3.5997 3.5997 0 0 0 19.6382.2789 36.2678 36.2678 0 0 0 15.1776 0a35.4337 35.4337 0 0 0-6.4284.5904 24.6396 24.6396 0 0 1 11.9139 9.0195z" }) + ] + } + ); +}); + +exports.default = SiConekta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.d.ts new file mode 100644 index 000000000..1d3040e1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A1837"; +declare const SiConekta: IconType; +export { SiConekta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.mjs new file mode 100644 index 000000000..d3a934ab1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConekta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A1837"; +const SiConekta = React.forwardRef(function SiConekta2({ title = "Conekta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.2914 17.8831a11.7327 11.7327 0 0 1-6.1742 3.0338 2.4598 2.4598 0 0 1-2.1647-.7461c-4.2466-4.6258-4.2466-11.7322 0-16.358a2.4599 2.4599 0 0 1 2.1729-.7461 11.668 11.668 0 0 1 6.289 3.1404 27.1655 27.1655 0 0 0-.6969 6.1004 27.7762 27.7762 0 0 0 .5739 5.5756zm9.8962-3.9376a1.394 1.394 0 0 0-1.5244.5266 24.6804 24.6804 0 0 1-11.9139 8.9375 35.4417 35.4417 0 0 0 6.4284.5903 36.2857 36.2857 0 0 0 4.4605-.2788 3.5997 3.5997 0 0 0 3.0338-2.6977c.4692-1.884.6453-3.8838.5166-5.8134a1.394 1.394 0 0 0-1.001-1.2645zm-1.5245-4.3356a1.394 1.394 0 0 0 2.5255-.7462c.1354-1.9699-.0438-3.9689-.5166-5.8872A3.5997 3.5997 0 0 0 19.6382.2789 36.2678 36.2678 0 0 0 15.1776 0a35.4337 35.4337 0 0 0-6.4284.5904 24.6396 24.6396 0 0 1 11.9139 9.0195z" }) + ] + } + ); +}); + +export { SiConekta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.cjs new file mode 100644 index 000000000..6dc11ca32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#172B4D"; +const SiConfluence = React__namespace.forwardRef(function SiConfluence2({ title = "Confluence", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.87 18.257c-.248.382-.53.875-.763 1.245a.764.764 0 0 0 .255 1.04l4.965 3.054a.764.764 0 0 0 1.058-.26c.199-.332.454-.763.733-1.221 1.967-3.247 3.945-2.853 7.508-1.146l4.957 2.337a.764.764 0 0 0 1.028-.382l2.364-5.346a.764.764 0 0 0-.382-1 599.851 599.851 0 0 1-4.965-2.361C10.911 10.97 5.224 11.185.87 18.257zM23.131 5.743c.249-.405.531-.875.764-1.25a.764.764 0 0 0-.256-1.034L18.675.404a.764.764 0 0 0-1.058.26c-.195.335-.451.763-.734 1.225-1.966 3.246-3.945 2.85-7.508 1.146L4.437.694a.764.764 0 0 0-1.027.382L1.046 6.422a.764.764 0 0 0 .382 1c1.039.49 3.105 1.467 4.965 2.361 6.698 3.246 12.392 3.029 16.738-4.04z" }) + ] + } + ); +}); + +exports.default = SiConfluence; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.d.ts new file mode 100644 index 000000000..ff3d7f7bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#172B4D"; +declare const SiConfluence: IconType; +export { SiConfluence as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.mjs new file mode 100644 index 000000000..b4bee2ce3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConfluence.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#172B4D"; +const SiConfluence = React.forwardRef(function SiConfluence2({ title = "Confluence", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.87 18.257c-.248.382-.53.875-.763 1.245a.764.764 0 0 0 .255 1.04l4.965 3.054a.764.764 0 0 0 1.058-.26c.199-.332.454-.763.733-1.221 1.967-3.247 3.945-2.853 7.508-1.146l4.957 2.337a.764.764 0 0 0 1.028-.382l2.364-5.346a.764.764 0 0 0-.382-1 599.851 599.851 0 0 1-4.965-2.361C10.911 10.97 5.224 11.185.87 18.257zM23.131 5.743c.249-.405.531-.875.764-1.25a.764.764 0 0 0-.256-1.034L18.675.404a.764.764 0 0 0-1.058.26c-.195.335-.451.763-.734 1.225-1.966 3.246-3.945 2.85-7.508 1.146L4.437.694a.764.764 0 0 0-1.027.382L1.046 6.422a.764.764 0 0 0 .382 1c1.039.49 3.105 1.467 4.965 2.361 6.698 3.246 12.392 3.029 16.738-4.04z" }) + ] + } + ); +}); + +export { SiConfluence as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.cjs new file mode 100644 index 000000000..c7c89c08d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FFDA"; +const SiConstruct3 = React__namespace.forwardRef(function SiConstruct32({ title = "Construct 3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.392 0c-6.752 0-12 5.498-12 12 0 6.574 5.313 12 12 12 4.283 0 8.087-2.254 10.217-5.704a.571.571 0 0 0-.2-.795l-5.55-3.204a.572.572 0 0 0-.76.177 4.453 4.453 0 0 1-3.707 1.983c-2.458 0-4.458-2-4.458-4.457 0-2.458 2-4.457 4.458-4.457 1.491 0 2.877.741 3.707 1.983a.571.571 0 0 0 .76.177l5.55-3.204a.571.571 0 0 0 .2-.795A11.998 11.998 0 0 0 12.392 0zm0 3.527c3.048 0 5.72 1.61 7.213 4.026l-2.99 1.726c-.037.021-.085.013-.108-.026a4.942 4.942 0 0 0-4.115-2.2A4.953 4.953 0 0 0 7.445 12c0 .9.241 1.745.663 2.473l-2.342 1.353a.327.327 0 0 0-.112.458 7.977 7.977 0 0 0 6.738 3.7 7.978 7.978 0 0 0 6.789-3.781l2.983 1.722a.08.08 0 0 1 .028.113 11.447 11.447 0 0 1-9.8 5.472C6.045 23.51.882 18.346.882 12c0-2.095.562-4.06 1.544-5.754l2.35 1.356c.15.088.345.04.439-.11a8.467 8.467 0 0 1 7.177-3.966zM22.965 8.95a.666.666 0 0 0-.336.088l-4.149 2.395a.654.654 0 0 0 0 1.131l4.149 2.396c.434.25.98-.064.98-.566v-4.79a.655.655 0 0 0-.644-.654zm-.663 1.785v2.528L20.112 12z" }) + ] + } + ); +}); + +exports.default = SiConstruct3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.d.ts new file mode 100644 index 000000000..3d33c93d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FFDA"; +declare const SiConstruct3: IconType; +export { SiConstruct3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.mjs new file mode 100644 index 000000000..a68d76e25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConstruct3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FFDA"; +const SiConstruct3 = React.forwardRef(function SiConstruct32({ title = "Construct 3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.392 0c-6.752 0-12 5.498-12 12 0 6.574 5.313 12 12 12 4.283 0 8.087-2.254 10.217-5.704a.571.571 0 0 0-.2-.795l-5.55-3.204a.572.572 0 0 0-.76.177 4.453 4.453 0 0 1-3.707 1.983c-2.458 0-4.458-2-4.458-4.457 0-2.458 2-4.457 4.458-4.457 1.491 0 2.877.741 3.707 1.983a.571.571 0 0 0 .76.177l5.55-3.204a.571.571 0 0 0 .2-.795A11.998 11.998 0 0 0 12.392 0zm0 3.527c3.048 0 5.72 1.61 7.213 4.026l-2.99 1.726c-.037.021-.085.013-.108-.026a4.942 4.942 0 0 0-4.115-2.2A4.953 4.953 0 0 0 7.445 12c0 .9.241 1.745.663 2.473l-2.342 1.353a.327.327 0 0 0-.112.458 7.977 7.977 0 0 0 6.738 3.7 7.978 7.978 0 0 0 6.789-3.781l2.983 1.722a.08.08 0 0 1 .028.113 11.447 11.447 0 0 1-9.8 5.472C6.045 23.51.882 18.346.882 12c0-2.095.562-4.06 1.544-5.754l2.35 1.356c.15.088.345.04.439-.11a8.467 8.467 0 0 1 7.177-3.966zM22.965 8.95a.666.666 0 0 0-.336.088l-4.149 2.395a.654.654 0 0 0 0 1.131l4.149 2.396c.434.25.98-.064.98-.566v-4.79a.655.655 0 0 0-.644-.654zm-.663 1.785v2.528L20.112 12z" }) + ] + } + ); +}); + +export { SiConstruct3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.cjs new file mode 100644 index 000000000..c70a955d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F24C53"; +const SiConsul = React__namespace.forwardRef(function SiConsul2({ title = "Consul", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.0754 12.0285a2.5059 2.5059 0 0 0-2.506-2.506 2.5059 2.5059 0 0 0-2.5058 2.506 2.5059 2.5059 0 0 0 2.5059 2.5059 2.5059 2.5059 0 0 0 2.5059-2.506zm3.5317.0003a1.1559 1.1556 0 0 0-1.1558-1.1556 1.1559 1.1556 0 0 0-1.1559 1.1556 1.1559 1.1556 0 0 0 1.1559 1.1555 1.1559 1.1556 0 0 0 1.1558-1.1555zm4.7917 5.5103a1.1576 1.1564 0 0 0-1.1577-1.1564 1.1576 1.1564 0 0 0-1.1576 1.1564 1.1576 1.1564 0 0 0 1.1576 1.1564 1.1576 1.1564 0 0 0 1.1577-1.1564zM20.748 13.888a1.1534 1.157 0 0 0-1.1533-1.157 1.1534 1.157 0 0 0-1.1534 1.157 1.1534 1.157 0 0 0 1.1534 1.1571 1.1534 1.157 0 0 0 1.1533-1.157zm3.2512.0619a1.1542 1.1538 0 0 0-1.1542-1.1538 1.1542 1.1538 0 0 0-1.1542 1.1538 1.1542 1.1538 0 0 0 1.1542 1.1538 1.1542 1.1538 0 0 0 1.1542-1.1538zm-3.279-3.883a1.1561 1.1535 0 0 0-1.156-1.1535 1.1561 1.1535 0 0 0-1.1562 1.1535 1.1561 1.1535 0 0 0 1.1561 1.1535 1.1561 1.1535 0 0 0 1.1562-1.1535zm3.2798.045a1.1614 1.157 0 0 0-1.1614-1.157 1.1614 1.157 0 0 0-1.1613 1.157 1.1614 1.157 0 0 0 1.1613 1.1572A1.1614 1.157 0 0 0 24 10.1119zm-1.626-3.631a1.1575 1.1601 0 0 0-1.1575-1.16 1.1575 1.1601 0 0 0-1.1575 1.16 1.1575 1.1601 0 0 0 1.1575 1.1602A1.1575 1.1601 0 0 0 22.374 6.481zM11.6171.3832c-3.1098 0-6.029 1.2063-8.2197 3.3974C1.206 5.9822 0 8.9007 0 11.9998c0 3.109 1.2067 6.0279 3.3974 8.2193 2.2028 2.1922 5.1213 3.3978 8.2197 3.3978 2.578 0 5.0176-.8252 7.055-2.386l-1.4196-1.8524c-1.6263 1.246-3.5748 1.9048-5.6354 1.9048-2.4776 0-4.8112-.9641-6.5717-2.7154-1.748-1.7488-2.7118-4.0828-2.7118-6.568 0-2.4784.9645-4.812 2.7158-6.5703 1.7484-1.7488 4.0817-2.713 6.5677-2.713 2.058 0 4.0069.659 5.6365 1.9057l1.4179-1.854C16.6314 1.2083 14.1922.3831 11.617.3831Z" }) + ] + } + ); +}); + +exports.default = SiConsul; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.d.ts new file mode 100644 index 000000000..a1da05bb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F24C53"; +declare const SiConsul: IconType; +export { SiConsul as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.mjs new file mode 100644 index 000000000..ce6c30ec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConsul.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F24C53"; +const SiConsul = React.forwardRef(function SiConsul2({ title = "Consul", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.0754 12.0285a2.5059 2.5059 0 0 0-2.506-2.506 2.5059 2.5059 0 0 0-2.5058 2.506 2.5059 2.5059 0 0 0 2.5059 2.5059 2.5059 2.5059 0 0 0 2.5059-2.506zm3.5317.0003a1.1559 1.1556 0 0 0-1.1558-1.1556 1.1559 1.1556 0 0 0-1.1559 1.1556 1.1559 1.1556 0 0 0 1.1559 1.1555 1.1559 1.1556 0 0 0 1.1558-1.1555zm4.7917 5.5103a1.1576 1.1564 0 0 0-1.1577-1.1564 1.1576 1.1564 0 0 0-1.1576 1.1564 1.1576 1.1564 0 0 0 1.1576 1.1564 1.1576 1.1564 0 0 0 1.1577-1.1564zM20.748 13.888a1.1534 1.157 0 0 0-1.1533-1.157 1.1534 1.157 0 0 0-1.1534 1.157 1.1534 1.157 0 0 0 1.1534 1.1571 1.1534 1.157 0 0 0 1.1533-1.157zm3.2512.0619a1.1542 1.1538 0 0 0-1.1542-1.1538 1.1542 1.1538 0 0 0-1.1542 1.1538 1.1542 1.1538 0 0 0 1.1542 1.1538 1.1542 1.1538 0 0 0 1.1542-1.1538zm-3.279-3.883a1.1561 1.1535 0 0 0-1.156-1.1535 1.1561 1.1535 0 0 0-1.1562 1.1535 1.1561 1.1535 0 0 0 1.1561 1.1535 1.1561 1.1535 0 0 0 1.1562-1.1535zm3.2798.045a1.1614 1.157 0 0 0-1.1614-1.157 1.1614 1.157 0 0 0-1.1613 1.157 1.1614 1.157 0 0 0 1.1613 1.1572A1.1614 1.157 0 0 0 24 10.1119zm-1.626-3.631a1.1575 1.1601 0 0 0-1.1575-1.16 1.1575 1.1601 0 0 0-1.1575 1.16 1.1575 1.1601 0 0 0 1.1575 1.1602A1.1575 1.1601 0 0 0 22.374 6.481zM11.6171.3832c-3.1098 0-6.029 1.2063-8.2197 3.3974C1.206 5.9822 0 8.9007 0 11.9998c0 3.109 1.2067 6.0279 3.3974 8.2193 2.2028 2.1922 5.1213 3.3978 8.2197 3.3978 2.578 0 5.0176-.8252 7.055-2.386l-1.4196-1.8524c-1.6263 1.246-3.5748 1.9048-5.6354 1.9048-2.4776 0-4.8112-.9641-6.5717-2.7154-1.748-1.7488-2.7118-4.0828-2.7118-6.568 0-2.4784.9645-4.812 2.7158-6.5703 1.7484-1.7488 4.0817-2.713 6.5677-2.713 2.058 0 4.0069.659 5.6365 1.9057l1.4179-1.854C16.6314 1.2083 14.1922.3831 11.617.3831Z" }) + ] + } + ); +}); + +export { SiConsul as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.cjs new file mode 100644 index 000000000..0e912136c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AAEB"; +const SiContabo = React__namespace.forwardRef(function SiContabo2({ title = "Contabo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.336 1.816a6.95 6.95 0 0 0-6.879 5.889 7.88 7.88 0 0 1 2.24-.412A4.855 4.855 0 0 1 11.33 3.92a4.853 4.853 0 0 1 3.45 1.44 4.793 4.793 0 0 1 1.197 2.01 7.633 7.633 0 0 1 .875-.067h.33a8.313 8.313 0 0 1 .976.076 6.95 6.95 0 0 0-6.822-5.564zM6.99 8.224A6.983 6.983 0 0 0 0 15.2a6.978 6.978 0 0 0 6.977 6.976 6.966 6.966 0 0 0 4.933-2.03 691.43 691.43 0 0 0 1.56-1.581l-1.488-1.488-1.55 1.582a4.86 4.86 0 0 1-3.452 1.436A4.881 4.881 0 0 1 2.104 15.2a4.877 4.877 0 0 1 4.876-4.871 4.855 4.855 0 0 1 2.819.904l.04-.043 1.466-1.465A6.969 6.969 0 0 0 6.99 8.224zm10.04 0a6.966 6.966 0 0 0-4.936 2.047l-1.59 1.574 1.488 1.489 1.58-1.584A4.88 4.88 0 0 1 21.9 15.2a4.881 4.881 0 0 1-4.877 4.882 4.858 4.858 0 0 1-2.83-.914l-.045.046s-1.078 1.096-1.437 1.467a6.95 6.95 0 0 0 4.312 1.504A6.983 6.983 0 0 0 24 15.205a6.95 6.95 0 0 0-2.04-4.933 6.962 6.962 0 0 0-4.93-2.047z" }) + ] + } + ); +}); + +exports.default = SiContabo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.d.ts new file mode 100644 index 000000000..e1c026df1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AAEB"; +declare const SiContabo: IconType; +export { SiContabo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.mjs new file mode 100644 index 000000000..f1ef8496f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContabo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AAEB"; +const SiContabo = React.forwardRef(function SiContabo2({ title = "Contabo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.336 1.816a6.95 6.95 0 0 0-6.879 5.889 7.88 7.88 0 0 1 2.24-.412A4.855 4.855 0 0 1 11.33 3.92a4.853 4.853 0 0 1 3.45 1.44 4.793 4.793 0 0 1 1.197 2.01 7.633 7.633 0 0 1 .875-.067h.33a8.313 8.313 0 0 1 .976.076 6.95 6.95 0 0 0-6.822-5.564zM6.99 8.224A6.983 6.983 0 0 0 0 15.2a6.978 6.978 0 0 0 6.977 6.976 6.966 6.966 0 0 0 4.933-2.03 691.43 691.43 0 0 0 1.56-1.581l-1.488-1.488-1.55 1.582a4.86 4.86 0 0 1-3.452 1.436A4.881 4.881 0 0 1 2.104 15.2a4.877 4.877 0 0 1 4.876-4.871 4.855 4.855 0 0 1 2.819.904l.04-.043 1.466-1.465A6.969 6.969 0 0 0 6.99 8.224zm10.04 0a6.966 6.966 0 0 0-4.936 2.047l-1.59 1.574 1.488 1.489 1.58-1.584A4.88 4.88 0 0 1 21.9 15.2a4.881 4.881 0 0 1-4.877 4.882 4.858 4.858 0 0 1-2.83-.914l-.045.046s-1.078 1.096-1.437 1.467a6.95 6.95 0 0 0 4.312 1.504A6.983 6.983 0 0 0 24 15.205a6.95 6.95 0 0 0-2.04-4.933 6.962 6.962 0 0 0-4.93-2.047z" }) + ] + } + ); +}); + +export { SiContabo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.cjs new file mode 100644 index 000000000..e299c4a42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiContactlesspayment = React__namespace.forwardRef(function SiContactlesspayment2({ title = "Contactless Payment", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.878 19.1c-2.861-.25-5.385-1.312-7.03-2.954-.936-.936-1.504-1.952-1.76-3.149-.118-.544-.117-1.448 0-1.997.357-1.664 1.433-3.12 3.126-4.23 3.862-2.533 9.778-2.52 13.604.03.508.338.836.607 1.296 1.06.58.573.988 1.142 1.418 1.98.016.03.095.07.176.086.27.056.633.268.924.54.226.21.401.44.832 1.093.435.658 2.404 3.697 2.524 3.896.046.078-.046.202-.15.202-.073 0-.126-.05-.234-.22l-1.116-1.732c-1.9-2.942-2.003-3.078-2.532-3.343l-.278-.14h-.817c-.816 0-.817.001-.837.087-.108.47-.128.586-.104.608.015.014.478.278 1.03.586l1.002.562-.062.131c-.035.072-.074.132-.088.132-.014 0-.858-.468-1.875-1.039-1.018-.57-1.91-1.054-1.982-1.074-.29-.08-.734.24-.734.529 0 .292.087.378 1.874 1.841 1.115.914 1.753 1.462 1.85 1.592.178.236.357.584.523 1.012.29.754.763 1.174 1.538 1.368l.255.064-.021.14a.667.667 0 01-.037.157c-.033.037-.547-.127-.844-.27-.465-.223-.785-.541-1.099-1.094a5.565 5.565 0 00-.405.139c-.391.142-.41.154-.78.515-1.576 1.538-3.836 2.521-6.566 2.855-.443.055-2.15.079-2.621.037zm2.717-.473c1.252-.166 2.223-.414 3.24-.83 1.067-.437 2.073-1.065 2.777-1.733l.277-.264-.698-.333c-.746-.357-.82-.416-.915-.735-.06-.2.008-.415.198-.621l.149-.161-.324-.246c-.256-.195-.336-.28-.386-.41a.65.65 0 01.079-.616l.098-.138-1.023-.18a26.154 26.154 0 01-1.166-.222c-.153-.046-.31-.22-.35-.391-.022-.092.48-2.54.592-2.89a.67.67 0 01.426-.376c.169-.031 3.185.499 3.335.587.238.138.313.362.238.705l-.032.144h.167c.092 0 .31-.012.483-.025l.316-.025-.157-.29c-.474-.882-1.33-1.768-2.388-2.472-.494-.328-1.547-.847-2.181-1.074a13.51 13.51 0 00-3.043-.674c-.575-.06-2.082-.06-2.64.001-1.339.146-2.554.449-3.617.902C2.59 7.309.935 9.046.512 11.027c-.11.517-.12 1.423-.018 1.894.224 1.04.713 1.941 1.509 2.78 1.62 1.707 4.097 2.756 7.066 2.994.397.031 2.121-.015 2.526-.068zm-.543-1.864c-.153-.044-.308-.227-.34-.4-.022-.114.004-.192.166-.506.656-1.27.941-2.437.941-3.855 0-1.37-.252-2.435-.879-3.713-.135-.274-.245-.529-.245-.565 0-.136.114-.333.237-.41.169-.107.452-.087.588.04.052.05.187.271.3.494.449.88.756 1.847.908 2.853.094.623.113 1.803.038 2.373a9.33 9.33 0 01-.86 2.909c-.27.555-.438.784-.58.784a.418.418 0 00-.101.015.421.421 0 01-.173-.019zm-1.826-.955c-.234-.069-.404-.357-.336-.573.017-.052.127-.293.246-.535.502-1.024.711-2.123.609-3.201-.084-.886-.243-1.445-.643-2.263-.269-.549-.281-.634-.125-.854.148-.21.519-.245.713-.066.135.124.555 1 .716 1.496a7.106 7.106 0 01-.232 5.016c-.352.826-.599 1.081-.948.98zm-1.882-.969a.57.57 0 01-.304-.374c-.021-.094.014-.198.187-.547.632-1.28.639-2.514.02-3.765-.271-.55-.277-.659-.047-.876.113-.107.161-.126.32-.126.267 0 .406.135.644.625.367.754.518 1.408.516 2.246 0 .86-.141 1.452-.533 2.247-.225.455-.336.575-.56.606a.525.525 0 01-.243-.036zm-1.757-.902a.592.592 0 01-.286-.34c-.043-.152-.008-.273.165-.557.222-.365.274-.56.274-1.038 0-.477-.052-.673-.274-1.038a2.046 2.046 0 01-.168-.329c-.071-.24.129-.535.398-.586.228-.043.385.06.595.387a2.96 2.96 0 010 3.155c-.215.332-.454.45-.704.346zm13.09 1.473c.203-.073.379-.141.39-.153.012-.011-.027-.141-.087-.289-.122-.302-.102-.295-.534-.212-.468.09-.739.01-1.25-.366-.14-.103-.283-.187-.32-.187-.036 0-.115.053-.177.119-.13.14-.15.36-.044.49.093.113 1.377.724 1.53.727.067.002.289-.056.492-.129zm-.202-.983c.19-.038.211-.051.178-.112-.036-.068-1.812-1.542-1.966-1.632-.127-.074-.23-.057-.335.056-.309.33-.273.4.526 1.013.964.738 1.066.782 1.597.675zm-2.384-2.231c0-.01-.201-.183-.448-.385-.608-.501-.738-.688-.738-1.058 0-.31.206-.608.538-.78a.966.966 0 01.625-.057c.118.038.648.325 1.383.748l.155.089.128-.606c.13-.62.133-.782.012-.82-.037-.011-.746-.14-1.575-.286-1.473-.26-1.634-.275-1.702-.164-.037.06-.597 2.656-.597 2.767 0 .055.028.124.062.152.034.029.512.132 1.062.23 1.062.191 1.095.196 1.095.17Z" }) + ] + } + ); +}); + +exports.default = SiContactlesspayment; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.d.ts new file mode 100644 index 000000000..5a7cb8591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiContactlesspayment: IconType; +export { SiContactlesspayment as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.mjs new file mode 100644 index 000000000..0c5a1bd9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContactlesspayment.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiContactlesspayment = React.forwardRef(function SiContactlesspayment2({ title = "Contactless Payment", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.878 19.1c-2.861-.25-5.385-1.312-7.03-2.954-.936-.936-1.504-1.952-1.76-3.149-.118-.544-.117-1.448 0-1.997.357-1.664 1.433-3.12 3.126-4.23 3.862-2.533 9.778-2.52 13.604.03.508.338.836.607 1.296 1.06.58.573.988 1.142 1.418 1.98.016.03.095.07.176.086.27.056.633.268.924.54.226.21.401.44.832 1.093.435.658 2.404 3.697 2.524 3.896.046.078-.046.202-.15.202-.073 0-.126-.05-.234-.22l-1.116-1.732c-1.9-2.942-2.003-3.078-2.532-3.343l-.278-.14h-.817c-.816 0-.817.001-.837.087-.108.47-.128.586-.104.608.015.014.478.278 1.03.586l1.002.562-.062.131c-.035.072-.074.132-.088.132-.014 0-.858-.468-1.875-1.039-1.018-.57-1.91-1.054-1.982-1.074-.29-.08-.734.24-.734.529 0 .292.087.378 1.874 1.841 1.115.914 1.753 1.462 1.85 1.592.178.236.357.584.523 1.012.29.754.763 1.174 1.538 1.368l.255.064-.021.14a.667.667 0 01-.037.157c-.033.037-.547-.127-.844-.27-.465-.223-.785-.541-1.099-1.094a5.565 5.565 0 00-.405.139c-.391.142-.41.154-.78.515-1.576 1.538-3.836 2.521-6.566 2.855-.443.055-2.15.079-2.621.037zm2.717-.473c1.252-.166 2.223-.414 3.24-.83 1.067-.437 2.073-1.065 2.777-1.733l.277-.264-.698-.333c-.746-.357-.82-.416-.915-.735-.06-.2.008-.415.198-.621l.149-.161-.324-.246c-.256-.195-.336-.28-.386-.41a.65.65 0 01.079-.616l.098-.138-1.023-.18a26.154 26.154 0 01-1.166-.222c-.153-.046-.31-.22-.35-.391-.022-.092.48-2.54.592-2.89a.67.67 0 01.426-.376c.169-.031 3.185.499 3.335.587.238.138.313.362.238.705l-.032.144h.167c.092 0 .31-.012.483-.025l.316-.025-.157-.29c-.474-.882-1.33-1.768-2.388-2.472-.494-.328-1.547-.847-2.181-1.074a13.51 13.51 0 00-3.043-.674c-.575-.06-2.082-.06-2.64.001-1.339.146-2.554.449-3.617.902C2.59 7.309.935 9.046.512 11.027c-.11.517-.12 1.423-.018 1.894.224 1.04.713 1.941 1.509 2.78 1.62 1.707 4.097 2.756 7.066 2.994.397.031 2.121-.015 2.526-.068zm-.543-1.864c-.153-.044-.308-.227-.34-.4-.022-.114.004-.192.166-.506.656-1.27.941-2.437.941-3.855 0-1.37-.252-2.435-.879-3.713-.135-.274-.245-.529-.245-.565 0-.136.114-.333.237-.41.169-.107.452-.087.588.04.052.05.187.271.3.494.449.88.756 1.847.908 2.853.094.623.113 1.803.038 2.373a9.33 9.33 0 01-.86 2.909c-.27.555-.438.784-.58.784a.418.418 0 00-.101.015.421.421 0 01-.173-.019zm-1.826-.955c-.234-.069-.404-.357-.336-.573.017-.052.127-.293.246-.535.502-1.024.711-2.123.609-3.201-.084-.886-.243-1.445-.643-2.263-.269-.549-.281-.634-.125-.854.148-.21.519-.245.713-.066.135.124.555 1 .716 1.496a7.106 7.106 0 01-.232 5.016c-.352.826-.599 1.081-.948.98zm-1.882-.969a.57.57 0 01-.304-.374c-.021-.094.014-.198.187-.547.632-1.28.639-2.514.02-3.765-.271-.55-.277-.659-.047-.876.113-.107.161-.126.32-.126.267 0 .406.135.644.625.367.754.518 1.408.516 2.246 0 .86-.141 1.452-.533 2.247-.225.455-.336.575-.56.606a.525.525 0 01-.243-.036zm-1.757-.902a.592.592 0 01-.286-.34c-.043-.152-.008-.273.165-.557.222-.365.274-.56.274-1.038 0-.477-.052-.673-.274-1.038a2.046 2.046 0 01-.168-.329c-.071-.24.129-.535.398-.586.228-.043.385.06.595.387a2.96 2.96 0 010 3.155c-.215.332-.454.45-.704.346zm13.09 1.473c.203-.073.379-.141.39-.153.012-.011-.027-.141-.087-.289-.122-.302-.102-.295-.534-.212-.468.09-.739.01-1.25-.366-.14-.103-.283-.187-.32-.187-.036 0-.115.053-.177.119-.13.14-.15.36-.044.49.093.113 1.377.724 1.53.727.067.002.289-.056.492-.129zm-.202-.983c.19-.038.211-.051.178-.112-.036-.068-1.812-1.542-1.966-1.632-.127-.074-.23-.057-.335.056-.309.33-.273.4.526 1.013.964.738 1.066.782 1.597.675zm-2.384-2.231c0-.01-.201-.183-.448-.385-.608-.501-.738-.688-.738-1.058 0-.31.206-.608.538-.78a.966.966 0 01.625-.057c.118.038.648.325 1.383.748l.155.089.128-.606c.13-.62.133-.782.012-.82-.037-.011-.746-.14-1.575-.286-1.473-.26-1.634-.275-1.702-.164-.037.06-.597 2.656-.597 2.767 0 .055.028.124.062.152.034.029.512.132 1.062.23 1.062.191 1.095.196 1.095.17Z" }) + ] + } + ); +}); + +export { SiContactlesspayment as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.cjs new file mode 100644 index 000000000..b2194a254 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#575757"; +const SiContainerd = React__namespace.forwardRef(function SiContainerd2({ title = "containerd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.629 0v24H20.37V0zM17.59 21.208H6.421V10.604h7.812V6.692h3.346v14.516zm-7.823-7.812h4.466v5.02H9.767z" }) + ] + } + ); +}); + +exports.default = SiContainerd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.d.ts new file mode 100644 index 000000000..02bd34153 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#575757"; +declare const SiContainerd: IconType; +export { SiContainerd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.mjs new file mode 100644 index 000000000..3536c3128 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContainerd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#575757"; +const SiContainerd = React.forwardRef(function SiContainerd2({ title = "containerd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.629 0v24H20.37V0zM17.59 21.208H6.421V10.604h7.812V6.692h3.346v14.516zm-7.823-7.812h4.466v5.02H9.767z" }) + ] + } + ); +}); + +export { SiContainerd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContao.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContao.cjs new file mode 100644 index 000000000..d66af55ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContao.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F47C00"; +const SiContao = React__namespace.forwardRef(function SiContao2({ title = "Contao", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.133 14.233c.672 3.125 1.23 6.1 3.189 8.242H1.588A1.602 1.602 0 0 1 0 20.897V3.109a1.6 1.6 0 0 1 1.588-1.584h2.698a10.317 10.317 0 0 0-1.718 2.028c-2.135 3.271-1.257 6.838-.435 10.68ZM22.411 1.525h-4.234c1.002 1.002 1.847 2.3 2.486 3.913l-6.437 1.358c-.706-1.351-1.779-2.476-3.877-2.034-1.156.245-1.923.894-2.264 1.604-.418.876-.624 1.858.377 6.525.999 4.667 1.588 5.481 2.327 6.112.601.511 1.57.794 2.727.55 2.1-.442 2.617-1.902 2.708-3.422l6.437-1.359c.153 3.329-.879 5.911-2.699 7.696h2.449A1.602 1.602 0 0 0 24 20.891V3.109a1.602 1.602 0 0 0-1.589-1.584Z" }) + ] + } + ); +}); + +exports.default = SiContao; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContao.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContao.d.ts new file mode 100644 index 000000000..d0533dc62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContao.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F47C00"; +declare const SiContao: IconType; +export { SiContao as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContao.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContao.mjs new file mode 100644 index 000000000..1bc6d4891 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContao.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F47C00"; +const SiContao = React.forwardRef(function SiContao2({ title = "Contao", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.133 14.233c.672 3.125 1.23 6.1 3.189 8.242H1.588A1.602 1.602 0 0 1 0 20.897V3.109a1.6 1.6 0 0 1 1.588-1.584h2.698a10.317 10.317 0 0 0-1.718 2.028c-2.135 3.271-1.257 6.838-.435 10.68ZM22.411 1.525h-4.234c1.002 1.002 1.847 2.3 2.486 3.913l-6.437 1.358c-.706-1.351-1.779-2.476-3.877-2.034-1.156.245-1.923.894-2.264 1.604-.418.876-.624 1.858.377 6.525.999 4.667 1.588 5.481 2.327 6.112.601.511 1.57.794 2.727.55 2.1-.442 2.617-1.902 2.708-3.422l6.437-1.359c.153 3.329-.879 5.911-2.699 7.696h2.449A1.602 1.602 0 0 0 24 20.891V3.109a1.602 1.602 0 0 0-1.589-1.584Z" }) + ] + } + ); +}); + +export { SiContao as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.cjs new file mode 100644 index 000000000..ed4a34457 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2478CC"; +const SiContentful = React__namespace.forwardRef(function SiContentful2({ title = "Contentful", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.875 16.361c-.043-.048-1.067-1.18-2.365-1.19-.68 0-1.288.283-1.815.858-.773.842-2.35 1.85-4.25 1.921-1.598.059-3.085-.548-4.423-1.805-1.644-1.544-2.155-4.016-1.302-6.297.834-2.23 2.752-3.616 5.131-3.707l.044-.004c.024-.003 2.302-.258 4.325 1.548.17.185 1.154 1.197 2.475 1.228.823.018 1.586-.336 2.27-1.055.602-.632.87-1.342.797-2.112-.154-1.61-1.806-2.876-2.03-3.04-.212-.184-1.878-1.578-4.476-2.294-2.52-.695-6.42-.853-10.685 2.349a7.31 7.31 0 0 0-.557.49c-.28.208-.523.462-.716.753a12.469 12.469 0 0 0-3.064 8.677c.207 6.283 5.265 9.293 5.646 9.51.262.17 2.906 1.81 6.495 1.809 2.106 0 4.538-.565 7.005-2.322.248-.138 1.714-1.012 2.103-2.52.23-.894.042-1.815-.562-2.737l-.046-.06zm-16.932 1.97c0-1.09.887-1.977 1.977-1.977s1.977.886 1.977 1.977c0 1.09-.887 1.977-1.977 1.977s-1.977-.887-1.977-1.977zm.139-13.657c.236-.275.451-.498.628-.67a1.965 1.965 0 0 1 1.088-.329c1.09 0 1.977.887 1.977 1.977S7.888 7.63 6.798 7.63s-1.977-.887-1.977-1.977c0-.356.096-.69.261-.978zM13.249.999c3.954 0 6.657 2.336 6.826 2.486l.043.034c.42.3 1.532 1.301 1.63 2.324.044.469-.126.898-.52 1.313-.477.5-.983.752-1.504.738-.964-.019-1.743-.887-1.76-.905l-.042-.044c-2.292-2.063-4.83-1.855-5.13-1.822a6.82 6.82 0 0 0-3.012.818 3 3 0 0 0-2.34-3.214C9.543 1.45 11.516.999 13.248.999zM3.884 6.34a3 3 0 0 0 2.914 2.31c.122 0 .24-.01.358-.024a7.336 7.336 0 0 0-.39.866c-.75 2.003-.59 4.14.359 5.854-.068-.005-.136-.01-.205-.01a2.999 2.999 0 0 0-2.967 2.6 10.075 10.075 0 0 1-1.7-5.288 11.43 11.43 0 0 1 1.63-6.309zM21.497 18.9c-.3 1.174-1.615 1.89-1.627 1.896l-.058.036c-6.287 4.499-12.137.667-12.382.502l-.036-.022a2.848 2.848 0 0 1-.034-.02 2.998 2.998 0 0 0 2.543-3.228c1.124.64 2.336.951 3.58.906 2.214-.083 4.057-1.264 4.962-2.25.327-.356.67-.53 1.048-.53h.005c.762.004 1.46.688 1.593.826.421.658.558 1.291.406 1.884z" }) + ] + } + ); +}); + +exports.default = SiContentful; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.d.ts new file mode 100644 index 000000000..86671bfa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2478CC"; +declare const SiContentful: IconType; +export { SiContentful as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.mjs new file mode 100644 index 000000000..d536bbbb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContentful.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2478CC"; +const SiContentful = React.forwardRef(function SiContentful2({ title = "Contentful", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.875 16.361c-.043-.048-1.067-1.18-2.365-1.19-.68 0-1.288.283-1.815.858-.773.842-2.35 1.85-4.25 1.921-1.598.059-3.085-.548-4.423-1.805-1.644-1.544-2.155-4.016-1.302-6.297.834-2.23 2.752-3.616 5.131-3.707l.044-.004c.024-.003 2.302-.258 4.325 1.548.17.185 1.154 1.197 2.475 1.228.823.018 1.586-.336 2.27-1.055.602-.632.87-1.342.797-2.112-.154-1.61-1.806-2.876-2.03-3.04-.212-.184-1.878-1.578-4.476-2.294-2.52-.695-6.42-.853-10.685 2.349a7.31 7.31 0 0 0-.557.49c-.28.208-.523.462-.716.753a12.469 12.469 0 0 0-3.064 8.677c.207 6.283 5.265 9.293 5.646 9.51.262.17 2.906 1.81 6.495 1.809 2.106 0 4.538-.565 7.005-2.322.248-.138 1.714-1.012 2.103-2.52.23-.894.042-1.815-.562-2.737l-.046-.06zm-16.932 1.97c0-1.09.887-1.977 1.977-1.977s1.977.886 1.977 1.977c0 1.09-.887 1.977-1.977 1.977s-1.977-.887-1.977-1.977zm.139-13.657c.236-.275.451-.498.628-.67a1.965 1.965 0 0 1 1.088-.329c1.09 0 1.977.887 1.977 1.977S7.888 7.63 6.798 7.63s-1.977-.887-1.977-1.977c0-.356.096-.69.261-.978zM13.249.999c3.954 0 6.657 2.336 6.826 2.486l.043.034c.42.3 1.532 1.301 1.63 2.324.044.469-.126.898-.52 1.313-.477.5-.983.752-1.504.738-.964-.019-1.743-.887-1.76-.905l-.042-.044c-2.292-2.063-4.83-1.855-5.13-1.822a6.82 6.82 0 0 0-3.012.818 3 3 0 0 0-2.34-3.214C9.543 1.45 11.516.999 13.248.999zM3.884 6.34a3 3 0 0 0 2.914 2.31c.122 0 .24-.01.358-.024a7.336 7.336 0 0 0-.39.866c-.75 2.003-.59 4.14.359 5.854-.068-.005-.136-.01-.205-.01a2.999 2.999 0 0 0-2.967 2.6 10.075 10.075 0 0 1-1.7-5.288 11.43 11.43 0 0 1 1.63-6.309zM21.497 18.9c-.3 1.174-1.615 1.89-1.627 1.896l-.058.036c-6.287 4.499-12.137.667-12.382.502l-.036-.022a2.848 2.848 0 0 1-.034-.02 2.998 2.998 0 0 0 2.543-3.228c1.124.64 2.336.951 3.58.906 2.214-.083 4.057-1.264 4.962-2.25.327-.356.67-.53 1.048-.53h.005c.762.004 1.46.688 1.593.826.421.658.558 1.291.406 1.884z" }) + ] + } + ); +}); + +export { SiContentful as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.cjs new file mode 100644 index 000000000..015e22960 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E74C3D"; +const SiContentstack = React__namespace.forwardRef(function SiContentstack2({ title = "Contentstack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.564 10.108a.347.347 0 0 1-.364.368h-6.974a.35.35 0 0 1-.369-.368v-.79a.35.35 0 0 1 .37-.368h6.964a.347.347 0 0 1 .364.369zm3.085 2.29a.347.347 0 0 1-.368.37h-8.59a.343.343 0 0 1-.363-.37v-.807a.342.342 0 0 1 .364-.364h8.514a.346.346 0 0 1 .369.364zm2.35 2.35a.347.347 0 0 1-.37.368h-9.32a.342.342 0 0 1-.364-.368v-.803a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm0 2.352a.347.347 0 0 1-.37.364h-9.32a.343.343 0 0 1-.364-.364v-.807a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm-2.35 2.273a.351.351 0 0 1-.368.37h-8.589a.347.347 0 0 1-.364-.37v-.807a.346.346 0 0 1 .364-.37h8.515a.351.351 0 0 1 .368.37zm-3.085 2.349a.346.346 0 0 1-.364.368h-6.974a.351.351 0 0 1-.369-.368v-.808a.347.347 0 0 1 .37-.365h6.964a.343.343 0 0 1 .364.365zM5.354 3.087a.347.347 0 0 0 .37.364h6.97a.342.342 0 0 0 .367-.365V2.28a.346.346 0 0 0-.368-.369h-6.97a.351.351 0 0 0-.367.37ZM2.35 5.43a.342.342 0 0 0 .364.364h8.514a.346.346 0 0 0 .368-.364v-.807a.351.351 0 0 0-.368-.37H2.712a.346.346 0 0 0-.364.37ZM0 7.778a.342.342 0 0 0 .364.364h9.321a.342.342 0 0 0 .364-.364V6.97a.346.346 0 0 0-.364-.37H.365a.347.347 0 0 0-.364.37Zm0 2.33a.347.347 0 0 0 .364.37h9.321a.346.346 0 0 0 .364-.37v-.79a.346.346 0 0 0-.364-.368H.365A.347.347 0 0 0 0 9.319Zm2.347 2.291a.342.342 0 0 0 .365.368h8.513a.346.346 0 0 0 .37-.368v-.808a.346.346 0 0 0-.37-.364H2.713a.342.342 0 0 0-.365.364zm3.008 2.348a.346.346 0 0 0 .369.368h6.968a.346.346 0 0 0 .37-.368v-.803a.346.346 0 0 0-.37-.37H5.725a.347.347 0 0 0-.37.37z" }) + ] + } + ); +}); + +exports.default = SiContentstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.d.ts new file mode 100644 index 000000000..8c0440105 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E74C3D"; +declare const SiContentstack: IconType; +export { SiContentstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.mjs new file mode 100644 index 000000000..febb2a4fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContentstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E74C3D"; +const SiContentstack = React.forwardRef(function SiContentstack2({ title = "Contentstack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.564 10.108a.347.347 0 0 1-.364.368h-6.974a.35.35 0 0 1-.369-.368v-.79a.35.35 0 0 1 .37-.368h6.964a.347.347 0 0 1 .364.369zm3.085 2.29a.347.347 0 0 1-.368.37h-8.59a.343.343 0 0 1-.363-.37v-.807a.342.342 0 0 1 .364-.364h8.514a.346.346 0 0 1 .369.364zm2.35 2.35a.347.347 0 0 1-.37.368h-9.32a.342.342 0 0 1-.364-.368v-.803a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm0 2.352a.347.347 0 0 1-.37.364h-9.32a.343.343 0 0 1-.364-.364v-.807a.342.342 0 0 1 .364-.37h9.321a.347.347 0 0 1 .368.37zm-2.35 2.273a.351.351 0 0 1-.368.37h-8.589a.347.347 0 0 1-.364-.37v-.807a.346.346 0 0 1 .364-.37h8.515a.351.351 0 0 1 .368.37zm-3.085 2.349a.346.346 0 0 1-.364.368h-6.974a.351.351 0 0 1-.369-.368v-.808a.347.347 0 0 1 .37-.365h6.964a.343.343 0 0 1 .364.365zM5.354 3.087a.347.347 0 0 0 .37.364h6.97a.342.342 0 0 0 .367-.365V2.28a.346.346 0 0 0-.368-.369h-6.97a.351.351 0 0 0-.367.37ZM2.35 5.43a.342.342 0 0 0 .364.364h8.514a.346.346 0 0 0 .368-.364v-.807a.351.351 0 0 0-.368-.37H2.712a.346.346 0 0 0-.364.37ZM0 7.778a.342.342 0 0 0 .364.364h9.321a.342.342 0 0 0 .364-.364V6.97a.346.346 0 0 0-.364-.37H.365a.347.347 0 0 0-.364.37Zm0 2.33a.347.347 0 0 0 .364.37h9.321a.346.346 0 0 0 .364-.37v-.79a.346.346 0 0 0-.364-.368H.365A.347.347 0 0 0 0 9.319Zm2.347 2.291a.342.342 0 0 0 .365.368h8.513a.346.346 0 0 0 .37-.368v-.808a.346.346 0 0 0-.37-.364H2.713a.342.342 0 0 0-.365.364zm3.008 2.348a.346.346 0 0 0 .369.368h6.968a.346.346 0 0 0 .37-.368v-.803a.346.346 0 0 0-.37-.37H5.725a.347.347 0 0 0-.37.37z" }) + ] + } + ); +}); + +export { SiContentstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.cjs new file mode 100644 index 000000000..79667848e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E31E24"; +const SiContinente = React__namespace.forwardRef(function SiContinente2({ title = "Continente", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9922 0C5.3736 0 .0078 5.3814.0078 12c0 6.6334 5.3509 12 11.9844 12s12-5.3666 12-12-5.3814-12-12-12m0 2.504c5.2472 0 9.5117 4.2637 9.5117 9.496 0 5.232-4.2645 9.5098-9.5117 9.5098S2.496 17.2618 2.496 12c0-5.2472 4.249-9.496 9.496-9.496m-.0586 2.3847c-3.9354 0-7.127 3.1766-7.127 7.127s3.1916 7.1406 7.127 7.1406c1.9677 0 3.7551-.7908 5.0371-2.088a1.89 1.89 0 0 0 0-2.6835c-.7304-.7455-1.9226-.7455-2.668 0-.6111.6113-1.4449.9843-2.3691.9843-1.8484 0-3.3398-1.52-3.3398-3.3535s1.4914-3.3398 3.3398-3.3398v-.0156c.9242 0 1.758.3731 2.3691.9843.7305.7305 1.9227.7305 2.668 0s.7453-1.9233 0-2.6836c-1.282-1.282-3.0694-2.0722-5.0371-2.0722m.0586 5.7539c-.7602 0-1.3711.6128-1.3711 1.373s.6109 1.3711 1.371 1.3711c.7604 0 1.3712-.6258 1.3712-1.371 0-.7454-.6108-1.3731-1.3711-1.3731" }) + ] + } + ); +}); + +exports.default = SiContinente; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.d.ts new file mode 100644 index 000000000..9699cf0ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E31E24"; +declare const SiContinente: IconType; +export { SiContinente as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.mjs new file mode 100644 index 000000000..12f68d728 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContinente.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E31E24"; +const SiContinente = React.forwardRef(function SiContinente2({ title = "Continente", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9922 0C5.3736 0 .0078 5.3814.0078 12c0 6.6334 5.3509 12 11.9844 12s12-5.3666 12-12-5.3814-12-12-12m0 2.504c5.2472 0 9.5117 4.2637 9.5117 9.496 0 5.232-4.2645 9.5098-9.5117 9.5098S2.496 17.2618 2.496 12c0-5.2472 4.249-9.496 9.496-9.496m-.0586 2.3847c-3.9354 0-7.127 3.1766-7.127 7.127s3.1916 7.1406 7.127 7.1406c1.9677 0 3.7551-.7908 5.0371-2.088a1.89 1.89 0 0 0 0-2.6835c-.7304-.7455-1.9226-.7455-2.668 0-.6111.6113-1.4449.9843-2.3691.9843-1.8484 0-3.3398-1.52-3.3398-3.3535s1.4914-3.3398 3.3398-3.3398v-.0156c.9242 0 1.758.3731 2.3691.9843.7305.7305 1.9227.7305 2.668 0s.7453-1.9233 0-2.6836c-1.282-1.282-3.0694-2.0722-5.0371-2.0722m.0586 5.7539c-.7602 0-1.3711.6128-1.3711 1.373s.6109 1.3711 1.371 1.3711c.7604 0 1.3712-.6258 1.3712-1.371 0-.7454-.6108-1.3731-1.3711-1.3731" }) + ] + } + ); +}); + +export { SiContinente as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.cjs new file mode 100644 index 000000000..0fb0f0d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5E0D73"; +const SiContributorcovenant = React__namespace.forwardRef(function SiContributorcovenant2({ title = "Contributor Covenant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.688 0c-6.627 0-12 5.373-12 12s5.373 12 12 12a12 12 0 0 0 10.624-6.412 10.484 10.484 0 0 1-8.374 4.162c-5.799 0-10.5-4.701-10.5-10.5S9.14.75 14.938.75c1.001 0 1.97.14 2.887.402A11.956 11.956 0 0 0 12.688 0Zm2.438 2.25a9 9 0 1 0 7.967 13.19 7.875 7.875 0 1 1-4.115-12.326 8.962 8.962 0 0 0-3.852-.864Z" }) + ] + } + ); +}); + +exports.default = SiContributorcovenant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.d.ts new file mode 100644 index 000000000..35f79bf96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5E0D73"; +declare const SiContributorcovenant: IconType; +export { SiContributorcovenant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.mjs new file mode 100644 index 000000000..f8bf74ae3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiContributorcovenant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5E0D73"; +const SiContributorcovenant = React.forwardRef(function SiContributorcovenant2({ title = "Contributor Covenant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.688 0c-6.627 0-12 5.373-12 12s5.373 12 12 12a12 12 0 0 0 10.624-6.412 10.484 10.484 0 0 1-8.374 4.162c-5.799 0-10.5-4.701-10.5-10.5S9.14.75 14.938.75c1.001 0 1.97.14 2.887.402A11.956 11.956 0 0 0 12.688 0Zm2.438 2.25a9 9 0 1 0 7.967 13.19 7.875 7.875 0 1 1-4.115-12.326 8.962 8.962 0 0 0-3.852-.864Z" }) + ] + } + ); +}); + +export { SiContributorcovenant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.cjs new file mode 100644 index 000000000..15e28b062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE5196"; +const SiConventionalcommits = React__namespace.forwardRef(function SiConventionalcommits2({ title = "Conventional Commits", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.382 0 0 5.382 0 12s5.382 12 12 12 12-5.382 12-12S18.618 0 12 0zm0 1.6c5.753 0 10.4 4.647 10.4 10.4S17.753 22.4 12 22.4 1.6 17.753 1.6 12 6.247 1.6 12 1.6z" }) + ] + } + ); +}); + +exports.default = SiConventionalcommits; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.d.ts new file mode 100644 index 000000000..470863414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE5196"; +declare const SiConventionalcommits: IconType; +export { SiConventionalcommits as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.mjs new file mode 100644 index 000000000..05c6e6347 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConventionalcommits.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE5196"; +const SiConventionalcommits = React.forwardRef(function SiConventionalcommits2({ title = "Conventional Commits", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.382 0 0 5.382 0 12s5.382 12 12 12 12-5.382 12-12S18.618 0 12 0zm0 1.6c5.753 0 10.4 4.647 10.4 10.4S17.753 22.4 12 22.4 1.6 17.753 1.6 12 6.247 1.6 12 1.6z" }) + ] + } + ); +}); + +export { SiConventionalcommits as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.cjs new file mode 100644 index 000000000..f01f6365c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3333"; +const SiConvertio = React__namespace.forwardRef(function SiConvertio2({ title = "Convertio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .037C5.373.037 0 5.394 0 12c0 6.606 5.373 11.963 12 11.963 6.628 0 12-5.357 12-11.963C24 5.394 18.627.037 12 .037zm-.541 4.8c1.91-.13 3.876.395 5.432 1.934 1.426 1.437 2.51 3.44 2.488 5.317h2.133l-4.444 4.963-4.445-4.963h2.313c-.001-1.724-.427-2.742-1.78-4.076-1.325-1.336-2.667-2.11-4.978-2.303a9.245 9.245 0 013.281-.871zM6.934 6.95l4.445 4.963H9.066c0 1.724.426 2.742 1.778 4.076 1.326 1.336 2.667 2.112 4.978 2.305-2.684 1.268-6.22 1.398-8.71-1.064-1.427-1.437-2.512-3.44-2.489-5.317H2.488L6.934 6.95Z" }) + ] + } + ); +}); + +exports.default = SiConvertio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.d.ts new file mode 100644 index 000000000..c1a198844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3333"; +declare const SiConvertio: IconType; +export { SiConvertio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.mjs new file mode 100644 index 000000000..35231f6e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConvertio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3333"; +const SiConvertio = React.forwardRef(function SiConvertio2({ title = "Convertio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .037C5.373.037 0 5.394 0 12c0 6.606 5.373 11.963 12 11.963 6.628 0 12-5.357 12-11.963C24 5.394 18.627.037 12 .037zm-.541 4.8c1.91-.13 3.876.395 5.432 1.934 1.426 1.437 2.51 3.44 2.488 5.317h2.133l-4.444 4.963-4.445-4.963h2.313c-.001-1.724-.427-2.742-1.78-4.076-1.325-1.336-2.667-2.11-4.978-2.303a9.245 9.245 0 013.281-.871zM6.934 6.95l4.445 4.963H9.066c0 1.724.426 2.742 1.778 4.076 1.326 1.336 2.667 2.112 4.978 2.305-2.684 1.268-6.22 1.398-8.71-1.064-1.427-1.437-2.512-3.44-2.489-5.317H2.488L6.934 6.95Z" }) + ] + } + ); +}); + +export { SiConvertio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.cjs new file mode 100644 index 000000000..8d7f9b48e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE342F"; +const SiConvex = React__namespace.forwardRef(function SiConvex2({ title = "Convex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.09 18.916c3.488-.387 6.776-2.246 8.586-5.348-.857 7.673-9.247 12.522-16.095 9.545a3.47 3.47 0 0 1-1.547-1.314c-1.539-2.417-2.044-5.492-1.318-8.282 2.077 3.584 6.3 5.78 10.374 5.399m-10.501-7.65c-1.414 3.266-1.475 7.092.258 10.24-6.1-4.59-6.033-14.41-.074-18.953a3.44 3.44 0 0 1 1.893-.707c2.825-.15 5.695.942 7.708 2.977-4.09.04-8.073 2.66-9.785 6.442m11.757-5.437C14.283 2.951 11.053.992 7.515.933c6.84-3.105 15.253 1.929 16.17 9.37a3.6 3.6 0 0 1-.334 2.02c-1.278 2.594-3.647 4.607-6.416 5.352 2.029-3.763 1.778-8.36-.589-11.847" }) + ] + } + ); +}); + +exports.default = SiConvex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.d.ts new file mode 100644 index 000000000..53e6c2dee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE342F"; +declare const SiConvex: IconType; +export { SiConvex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.mjs new file mode 100644 index 000000000..bedb56ae6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiConvex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE342F"; +const SiConvex = React.forwardRef(function SiConvex2({ title = "Convex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.09 18.916c3.488-.387 6.776-2.246 8.586-5.348-.857 7.673-9.247 12.522-16.095 9.545a3.47 3.47 0 0 1-1.547-1.314c-1.539-2.417-2.044-5.492-1.318-8.282 2.077 3.584 6.3 5.78 10.374 5.399m-10.501-7.65c-1.414 3.266-1.475 7.092.258 10.24-6.1-4.59-6.033-14.41-.074-18.953a3.44 3.44 0 0 1 1.893-.707c2.825-.15 5.695.942 7.708 2.977-4.09.04-8.073 2.66-9.785 6.442m11.757-5.437C14.283 2.951 11.053.992 7.515.933c6.84-3.105 15.253 1.929 16.17 9.37a3.6 3.6 0 0 1-.334 2.02c-1.278 2.594-3.647 4.607-6.416 5.352 2.029-3.763 1.778-8.36-.589-11.847" }) + ] + } + ); +}); + +export { SiConvex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.cjs new file mode 100644 index 000000000..196f14db7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D4AA00"; +const SiCookiecutter = React__namespace.forwardRef(function SiCookiecutter2({ title = "Cookiecutter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.806 0a12 12 0 0 0-4.512.885A12 12 0 0 0 .858 12.978a12 12 0 0 0 9.303 10.724 12 12 0 0 0 13.021-5.656L12.817 12l9.244-7.65A12 12 0 0 0 12.806 0zM9.218 2.143c.34-.003.701.123 1.193.378.847.437 1.013 1.027.36 1.277-.487.187-2.457.177-2.932-.015-.526-.212-.38-.781.32-1.24.402-.263.72-.396 1.059-.4zm4.077 4.052a1.292 1.292 0 0 1 .022 0 1.292 1.292 0 0 1 1.292 1.291 1.292 1.292 0 0 1-1.292 1.292 1.292 1.292 0 0 1-1.292-1.292 1.292 1.292 0 0 1 1.27-1.291zm-6.259 3.8c1.033 0 1.788.434 1.788 1.028 0 .694-1.961 2.384-2.766 2.384-.365 0-.727-.166-.804-.368-.078-.203.117-.97.434-1.706.505-1.176.67-1.338 1.348-1.338zm8.637 9.187c.372 0 1.362 2.316 1.186 2.775-.201.524-1.046.467-1.564-.105-.676-.747-.404-2.67.378-2.67z" }) + ] + } + ); +}); + +exports.default = SiCookiecutter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.d.ts new file mode 100644 index 000000000..e45e19c04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D4AA00"; +declare const SiCookiecutter: IconType; +export { SiCookiecutter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.mjs new file mode 100644 index 000000000..e2dd1278b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCookiecutter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D4AA00"; +const SiCookiecutter = React.forwardRef(function SiCookiecutter2({ title = "Cookiecutter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.806 0a12 12 0 0 0-4.512.885A12 12 0 0 0 .858 12.978a12 12 0 0 0 9.303 10.724 12 12 0 0 0 13.021-5.656L12.817 12l9.244-7.65A12 12 0 0 0 12.806 0zM9.218 2.143c.34-.003.701.123 1.193.378.847.437 1.013 1.027.36 1.277-.487.187-2.457.177-2.932-.015-.526-.212-.38-.781.32-1.24.402-.263.72-.396 1.059-.4zm4.077 4.052a1.292 1.292 0 0 1 .022 0 1.292 1.292 0 0 1 1.292 1.291 1.292 1.292 0 0 1-1.292 1.292 1.292 1.292 0 0 1-1.292-1.292 1.292 1.292 0 0 1 1.27-1.291zm-6.259 3.8c1.033 0 1.788.434 1.788 1.028 0 .694-1.961 2.384-2.766 2.384-.365 0-.727-.166-.804-.368-.078-.203.117-.97.434-1.706.505-1.176.67-1.338 1.348-1.338zm8.637 9.187c.372 0 1.362 2.316 1.186 2.775-.201.524-1.046.467-1.564-.105-.676-.747-.404-2.67.378-2.67z" }) + ] + } + ); +}); + +export { SiCookiecutter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.cjs new file mode 100644 index 000000000..5ea1c2876 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E1E28"; +const SiCoolermaster = React__namespace.forwardRef(function SiCoolermaster2({ title = "Cooler Master", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2.526c-.97 0-2.528.285-5.647 1.43-2.721 1-3.219 1.246-3.65 1.443C.603 6.361 0 7.356 0 9.863v4.608c0 2.326.357 3.004 2.49 3.933.741.32 1.858.875 4.71 1.956 1.263.478 3.153 1.114 4.797 1.114 1.645 0 3.543-.636 4.801-1.114 2.857-1.081 3.975-1.636 4.714-1.956C23.647 17.475 24 16.797 24 14.471V9.863c.003-2.507-.593-3.502-2.694-4.464-.431-.197-.929-.444-3.65-1.443-3.124-1.145-4.685-1.43-5.656-1.43Zm0 .645c1.373 0 3.347.595 5.492 1.393 2.609.967 2.824 1.106 3.344 1.323 1.472.615 2.5 1.384 2.5 3.667l-.003 2.401v2.691c0 1.769-.408 2.442-1.867 3.096-1.22.542-1.344.6-3.871 1.59-1.596.625-3.716 1.451-5.595 1.451-1.878 0-3.998-.826-5.589-1.451-2.525-.989-2.644-1.047-3.869-1.59-1.461-.653-1.866-1.327-1.866-3.095V9.555c0-2.284 1.028-3.053 2.495-3.668.522-.218.736-.357 3.342-1.323C8.666 3.766 10.628 3.171 12 3.171Zm.722.811v7.681h3.071v-1.381l-1.724-.125V4.435l-1.347-.453Zm-2.212.275a1.132 1.132 0 0 0-.45.078c-1.197.456-1.659 2.22-1.576 4.115.086 1.936.747 3.292 1.813 3.292 1.191 0 1.985-1.341 1.939-3.985-.033-1.903-.72-3.46-1.726-3.5Zm5.666.867.001 6.539h2.962v-1.159l-1.739-.118V9.203l1.442.195V8.221L17.4 7.925V6.817l1.739.462V6.108l-2.963-.984Zm-9.641.436a1.106 1.106 0 0 0-.3.059c-.978.328-1.489 1.71-1.431 3.357.059 1.62.642 2.765 1.603 2.765 1.174 0 1.788-1.278 1.751-3.314-.032-1.619-.686-2.912-1.623-2.867Zm3.8.302c.339.019.556.844.586 2.042.034 1.332-.188 2.349-.608 2.39-.379.038-.606-.808-.645-1.965-.045-1.319.212-2.246.514-2.424a.271.271 0 0 1 .153-.043Zm9.194.379v5.422h1.121V9.919l.376.043.526 1.701h.954l-.593-1.798c.265-.115.56-.451.56-1.199 0-.813-.426-1.578-1.15-1.822l-1.794-.603Zm-16.355.554c-.068.002-.136.01-.204.025-1.117.253-1.561 1.476-1.525 2.782.036 1.27.635 2.14 1.594 2.14.859 0 1.585-.886 1.585-1.857l-.976.082c-.048.429-.324.74-.623.762-.455.032-.64-.483-.656-1.268-.016-.796.154-1.432.615-1.562.3-.084.506.143.579.502l1.015-.189c-.139-.844-.749-1.436-1.404-1.417Zm3.234.021c.356-.021.598.704.619 1.739.025 1.082-.207 1.912-.598 1.944-.367.031-.585-.701-.615-1.702-.029-1.132.26-1.879.521-1.967a.277.277 0 0 1 .073-.014Zm14.241.864.526.14c.253.067.43.318.43.664 0 .346-.177.517-.43.47l-.526-.098V7.68ZM10.53 12.161c-.95-.012-1.868.806-1.839 2.039.048 2.208 2.456 1.856 2.474 3.691 0 .275-.154.553-.435.525-.356-.068-.623-.314-.647-1.07l-1.251-.307c-.013 1.153.404 2.373 1.625 2.638 1.187.261 2.276-.697 2.019-2.346-.304-1.917-2.469-2.031-2.524-3.059-.02-.385.259-.645.534-.615.203.024.468.24.431.762l1.338.132c.071-1.353-.499-2.369-1.725-2.39Zm-8.982.072v4.305l.761.266v-2.722l.576 2.919.327.113.742-2.789v3.047l.997.345v-5.484H3.659l-.578 2.286-.445-2.286H1.548Zm4.648 0-1.015 5.56.97.335.136-.856 1.066.302.154 1.019 1.181.412-1.269-6.772H6.196Zm6.526 0v1.599l.937-.063.002 5.841 1.281-.427v-5.505l.842-.069v-1.376h-3.062Zm3.454 0v6.539l2.963-.987v-1.149l-1.739.457v-1.207l1.533-.305V14.41l-1.533.198v-1.095l1.739-.122v-1.158h-2.963Zm3.353 0v5.422l1.122-.373v-1.733l.377-.082.52 1.516.958-.319-.585-1.594c.264-.204.559-.64.559-1.392 0-.819-.426-1.445-1.153-1.445h-1.798Zm1.696 1.03c.229.008.385.198.385.523 0 .348-.178.579-.431.617l-.529.077v-1.179l.529-.037.046-.001ZM6.79 13.96l.376 2.291-.723-.162.347-2.129Z" }) + ] + } + ); +}); + +exports.default = SiCoolermaster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.d.ts new file mode 100644 index 000000000..e8fb4c5b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E1E28"; +declare const SiCoolermaster: IconType; +export { SiCoolermaster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.mjs new file mode 100644 index 000000000..9591fadf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolermaster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E1E28"; +const SiCoolermaster = React.forwardRef(function SiCoolermaster2({ title = "Cooler Master", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 2.526c-.97 0-2.528.285-5.647 1.43-2.721 1-3.219 1.246-3.65 1.443C.603 6.361 0 7.356 0 9.863v4.608c0 2.326.357 3.004 2.49 3.933.741.32 1.858.875 4.71 1.956 1.263.478 3.153 1.114 4.797 1.114 1.645 0 3.543-.636 4.801-1.114 2.857-1.081 3.975-1.636 4.714-1.956C23.647 17.475 24 16.797 24 14.471V9.863c.003-2.507-.593-3.502-2.694-4.464-.431-.197-.929-.444-3.65-1.443-3.124-1.145-4.685-1.43-5.656-1.43Zm0 .645c1.373 0 3.347.595 5.492 1.393 2.609.967 2.824 1.106 3.344 1.323 1.472.615 2.5 1.384 2.5 3.667l-.003 2.401v2.691c0 1.769-.408 2.442-1.867 3.096-1.22.542-1.344.6-3.871 1.59-1.596.625-3.716 1.451-5.595 1.451-1.878 0-3.998-.826-5.589-1.451-2.525-.989-2.644-1.047-3.869-1.59-1.461-.653-1.866-1.327-1.866-3.095V9.555c0-2.284 1.028-3.053 2.495-3.668.522-.218.736-.357 3.342-1.323C8.666 3.766 10.628 3.171 12 3.171Zm.722.811v7.681h3.071v-1.381l-1.724-.125V4.435l-1.347-.453Zm-2.212.275a1.132 1.132 0 0 0-.45.078c-1.197.456-1.659 2.22-1.576 4.115.086 1.936.747 3.292 1.813 3.292 1.191 0 1.985-1.341 1.939-3.985-.033-1.903-.72-3.46-1.726-3.5Zm5.666.867.001 6.539h2.962v-1.159l-1.739-.118V9.203l1.442.195V8.221L17.4 7.925V6.817l1.739.462V6.108l-2.963-.984Zm-9.641.436a1.106 1.106 0 0 0-.3.059c-.978.328-1.489 1.71-1.431 3.357.059 1.62.642 2.765 1.603 2.765 1.174 0 1.788-1.278 1.751-3.314-.032-1.619-.686-2.912-1.623-2.867Zm3.8.302c.339.019.556.844.586 2.042.034 1.332-.188 2.349-.608 2.39-.379.038-.606-.808-.645-1.965-.045-1.319.212-2.246.514-2.424a.271.271 0 0 1 .153-.043Zm9.194.379v5.422h1.121V9.919l.376.043.526 1.701h.954l-.593-1.798c.265-.115.56-.451.56-1.199 0-.813-.426-1.578-1.15-1.822l-1.794-.603Zm-16.355.554c-.068.002-.136.01-.204.025-1.117.253-1.561 1.476-1.525 2.782.036 1.27.635 2.14 1.594 2.14.859 0 1.585-.886 1.585-1.857l-.976.082c-.048.429-.324.74-.623.762-.455.032-.64-.483-.656-1.268-.016-.796.154-1.432.615-1.562.3-.084.506.143.579.502l1.015-.189c-.139-.844-.749-1.436-1.404-1.417Zm3.234.021c.356-.021.598.704.619 1.739.025 1.082-.207 1.912-.598 1.944-.367.031-.585-.701-.615-1.702-.029-1.132.26-1.879.521-1.967a.277.277 0 0 1 .073-.014Zm14.241.864.526.14c.253.067.43.318.43.664 0 .346-.177.517-.43.47l-.526-.098V7.68ZM10.53 12.161c-.95-.012-1.868.806-1.839 2.039.048 2.208 2.456 1.856 2.474 3.691 0 .275-.154.553-.435.525-.356-.068-.623-.314-.647-1.07l-1.251-.307c-.013 1.153.404 2.373 1.625 2.638 1.187.261 2.276-.697 2.019-2.346-.304-1.917-2.469-2.031-2.524-3.059-.02-.385.259-.645.534-.615.203.024.468.24.431.762l1.338.132c.071-1.353-.499-2.369-1.725-2.39Zm-8.982.072v4.305l.761.266v-2.722l.576 2.919.327.113.742-2.789v3.047l.997.345v-5.484H3.659l-.578 2.286-.445-2.286H1.548Zm4.648 0-1.015 5.56.97.335.136-.856 1.066.302.154 1.019 1.181.412-1.269-6.772H6.196Zm6.526 0v1.599l.937-.063.002 5.841 1.281-.427v-5.505l.842-.069v-1.376h-3.062Zm3.454 0v6.539l2.963-.987v-1.149l-1.739.457v-1.207l1.533-.305V14.41l-1.533.198v-1.095l1.739-.122v-1.158h-2.963Zm3.353 0v5.422l1.122-.373v-1.733l.377-.082.52 1.516.958-.319-.585-1.594c.264-.204.559-.64.559-1.392 0-.819-.426-1.445-1.153-1.445h-1.798Zm1.696 1.03c.229.008.385.198.385.523 0 .348-.178.579-.431.617l-.529.077v-1.179l.529-.037.046-.001ZM6.79 13.96l.376 2.291-.723-.162.347-2.129Z" }) + ] + } + ); +}); + +export { SiCoolermaster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.cjs new file mode 100644 index 000000000..a2aeb3865 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6B16ED"; +const SiCoolify = React__namespace.forwardRef(function SiCoolify2({ title = "Coolify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.364 4.364V0h17.454v4.364zm0 13.09H0V4.365h4.364zm0 0h17.454v4.364H4.364ZM6.545 6.546v-1.7H22.3V2.182H24v4.363zm0 0v10.4h-1.7v-10.4ZM3.882 17.936v1.7h-1.7v-1.7ZM24 24H6.545v-1.7H22.3v-2.664H24Z" }) + ] + } + ); +}); + +exports.default = SiCoolify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.d.ts new file mode 100644 index 000000000..09570c398 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6B16ED"; +declare const SiCoolify: IconType; +export { SiCoolify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.mjs new file mode 100644 index 000000000..2c5c9ba06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoolify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6B16ED"; +const SiCoolify = React.forwardRef(function SiCoolify2({ title = "Coolify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.364 4.364V0h17.454v4.364zm0 13.09H0V4.365h4.364zm0 0h17.454v4.364H4.364ZM6.545 6.546v-1.7H22.3V2.182H24v4.363zm0 0v10.4h-1.7v-10.4ZM3.882 17.936v1.7h-1.7v-1.7ZM24 24H6.545v-1.7H22.3v-2.664H24Z" }) + ] + } + ); +}); + +export { SiCoolify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.cjs new file mode 100644 index 000000000..9808b84bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B1E7"; +const SiCoop = React__namespace.forwardRef(function SiCoop2({ title = "Co-op", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.275 5.265c0-.852-.132-1.703-.36-2.555-.328-1.016-1.081-1.834-2.031-2.194a9.248 9.248 0 0 0-6.092 0 3.168 3.168 0 0 0-2.03 2.194 9.532 9.532 0 0 0 0 5.077c.326 1.015 1.08 1.834 2.03 2.194a8.04 8.04 0 0 0 3.046.491c1.049 0 2.063-.196 3.046-.491a3.172 3.172 0 0 0 2.031-2.194c.229-.819.36-1.67.36-2.522zm-3.308 0c0 .393-.065.852-.196 1.212-.164.524-.623.95-1.18 1.081a4.233 4.233 0 0 1-1.571 0 1.473 1.473 0 0 1-1.18-1.081 4.025 4.025 0 0 1 0-2.489c.163-.524.622-.95 1.18-1.081a4.233 4.233 0 0 1 1.571 0 1.476 1.476 0 0 1 1.18 1.081c.13.458.196.884.196 1.277m-8.745 13.79a9.552 9.552 0 0 0 0-5.077c-.327-1.016-1.081-1.834-2.03-2.195a9.248 9.248 0 0 0-6.092 0 3.173 3.173 0 0 0-2.031 2.195 9.552 9.552 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.193a9.248 9.248 0 0 0 6.092 0 3.392 3.392 0 0 0 2.03-2.193m-2.948-2.523c0 .393-.066.852-.197 1.212a1.644 1.644 0 0 1-1.179 1.081 4.238 4.238 0 0 1-1.572 0 1.477 1.477 0 0 1-1.179-1.081 4.04 4.04 0 0 1 0-2.489 1.64 1.64 0 0 1 1.179-1.081 4.196 4.196 0 0 1 1.572 0 1.476 1.476 0 0 1 1.179 1.081c.131.426.197.851.197 1.277m0-11.3h3.308c0-.851-.131-1.703-.36-2.521-.327-1.016-1.081-1.834-2.03-2.194a9.248 9.248 0 0 0-6.092 0C2.084.909 1.331 1.728 1.068 2.743a9.552 9.552 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.194.982.36 1.998.492 3.046.492 1.048 0 2.063-.197 3.046-.492a3.17 3.17 0 0 0 2.03-2.194c.033-.131.065-.295.131-.426L8.241 5.953c-.033.196-.065.36-.131.557-.163.524-.622.95-1.179 1.081a4.238 4.238 0 0 1-1.572 0A1.478 1.478 0 0 1 4.18 6.51a4.04 4.04 0 0 1 0-2.489c.164-.524.622-.95 1.179-1.082a4.238 4.238 0 0 1 1.572 0A1.476 1.476 0 0 1 8.11 4.021c.098.425.164.818.164 1.211m4.421 8.779a9.442 9.442 0 0 0-.36 2.555V24h3.308v-7.468c0-.393.065-.852.196-1.212.163-.524.622-.95 1.18-1.081a4.191 4.191 0 0 1 1.571 0 1.478 1.478 0 0 1 1.18 1.081 4.04 4.04 0 0 1 0 2.489c-.164.523-.623.95-1.146 1.08a4.196 4.196 0 0 1-1.572 0c-.099-.031-.229-.064-.327-.098l1.113 3.079c1.049 0 2.063-.197 3.046-.491a3.175 3.175 0 0 0 2.031-2.194 9.552 9.552 0 0 0 0-5.077c-.328-1.016-1.081-1.834-2.031-2.195a9.248 9.248 0 0 0-6.092 0c-1.016.263-1.769 1.082-2.097 2.098" }) + ] + } + ); +}); + +exports.default = SiCoop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.d.ts new file mode 100644 index 000000000..4b114870f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B1E7"; +declare const SiCoop: IconType; +export { SiCoop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.mjs new file mode 100644 index 000000000..605d8c2da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B1E7"; +const SiCoop = React.forwardRef(function SiCoop2({ title = "Co-op", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.275 5.265c0-.852-.132-1.703-.36-2.555-.328-1.016-1.081-1.834-2.031-2.194a9.248 9.248 0 0 0-6.092 0 3.168 3.168 0 0 0-2.03 2.194 9.532 9.532 0 0 0 0 5.077c.326 1.015 1.08 1.834 2.03 2.194a8.04 8.04 0 0 0 3.046.491c1.049 0 2.063-.196 3.046-.491a3.172 3.172 0 0 0 2.031-2.194c.229-.819.36-1.67.36-2.522zm-3.308 0c0 .393-.065.852-.196 1.212-.164.524-.623.95-1.18 1.081a4.233 4.233 0 0 1-1.571 0 1.473 1.473 0 0 1-1.18-1.081 4.025 4.025 0 0 1 0-2.489c.163-.524.622-.95 1.18-1.081a4.233 4.233 0 0 1 1.571 0 1.476 1.476 0 0 1 1.18 1.081c.13.458.196.884.196 1.277m-8.745 13.79a9.552 9.552 0 0 0 0-5.077c-.327-1.016-1.081-1.834-2.03-2.195a9.248 9.248 0 0 0-6.092 0 3.173 3.173 0 0 0-2.031 2.195 9.552 9.552 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.193a9.248 9.248 0 0 0 6.092 0 3.392 3.392 0 0 0 2.03-2.193m-2.948-2.523c0 .393-.066.852-.197 1.212a1.644 1.644 0 0 1-1.179 1.081 4.238 4.238 0 0 1-1.572 0 1.477 1.477 0 0 1-1.179-1.081 4.04 4.04 0 0 1 0-2.489 1.64 1.64 0 0 1 1.179-1.081 4.196 4.196 0 0 1 1.572 0 1.476 1.476 0 0 1 1.179 1.081c.131.426.197.851.197 1.277m0-11.3h3.308c0-.851-.131-1.703-.36-2.521-.327-1.016-1.081-1.834-2.03-2.194a9.248 9.248 0 0 0-6.092 0C2.084.909 1.331 1.728 1.068 2.743a9.552 9.552 0 0 0 0 5.077c.328 1.015 1.081 1.834 2.031 2.194.982.36 1.998.492 3.046.492 1.048 0 2.063-.197 3.046-.492a3.17 3.17 0 0 0 2.03-2.194c.033-.131.065-.295.131-.426L8.241 5.953c-.033.196-.065.36-.131.557-.163.524-.622.95-1.179 1.081a4.238 4.238 0 0 1-1.572 0A1.478 1.478 0 0 1 4.18 6.51a4.04 4.04 0 0 1 0-2.489c.164-.524.622-.95 1.179-1.082a4.238 4.238 0 0 1 1.572 0A1.476 1.476 0 0 1 8.11 4.021c.098.425.164.818.164 1.211m4.421 8.779a9.442 9.442 0 0 0-.36 2.555V24h3.308v-7.468c0-.393.065-.852.196-1.212.163-.524.622-.95 1.18-1.081a4.191 4.191 0 0 1 1.571 0 1.478 1.478 0 0 1 1.18 1.081 4.04 4.04 0 0 1 0 2.489c-.164.523-.623.95-1.146 1.08a4.196 4.196 0 0 1-1.572 0c-.099-.031-.229-.064-.327-.098l1.113 3.079c1.049 0 2.063-.197 3.046-.491a3.175 3.175 0 0 0 2.031-2.194 9.552 9.552 0 0 0 0-5.077c-.328-1.016-1.081-1.834-2.031-2.195a9.248 9.248 0 0 0-6.092 0c-1.016.263-1.769 1.082-2.097 2.098" }) + ] + } + ); +}); + +export { SiCoop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.cjs new file mode 100644 index 000000000..5440a4a72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0032A0"; +const SiCopaairlines = React__namespace.forwardRef(function SiCopaairlines2({ title = "Copa Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .105v6.456c.69-.02 1.48.208 2.336.32l-1.502.191c-.256.01-.545.033-.834.06v.339a20.066 20.066 0 0 1 3.387-.344c9.682-2.296 17.7-.135 17.7-.135C19.368 6.602 9.78 5.302 0 9.122v.58c1.452-.489 2.986-.867 4.453-1.04 2.176-.267 4.2-.147 5.902.332 7.157-.509 12.342 1.016 12.342 1.016C20.75 9.694 10.303 8.269 0 12.953v.465c2.852-1.355 5.844-2.138 8.395-2.305 2.585-.138 4.896.228 6.634 1.256 4.1-.063 7.225.467 8.971.889V.105H0zm7.264 7.397a7.27 7.27 0 0 1 1.859.787l-.734-.115c-.63-.236-1.377-.394-2.118-.498.321-.07.635-.13.993-.174zm-.059 1.807C5.014 9.306 2.491 9.697 0 10.518v.752c2.566-.993 5.155-1.598 7.639-1.956a17.752 17.752 0 0 0-.434-.005zm5.643.75c.511.336 1.198.871 1.605 1.38l-.426-.138c-.605-.435-1.239-.831-2.058-1.164.274-.018.557-.062.879-.078zm-3.323 2.224c-2.884.008-6.186.705-9.525 2.096v1.453c4.215-2.037 8.514-3.007 12.258-3.328-.855-.15-1.771-.223-2.733-.22zm9.104.865c-5.013.01-12.024.842-18.629 4.598v.606c.29-.165.58-.321.854-.467 2.156-1.153 4.31-1.957 6.464-2.446 2.039-.483 4.035-.653 5.86-.492 3.45.308 5.93 1.808 7.123 4.395.01.02.863 1.919.945 3.71l-.414-1.025c-.11-.512-.252-1.038-.521-1.51-.884-1.707-2.606-2.935-4.93-3.654-2.11-.662-4.882-.69-7.758-.13-2.552.48-5.15 1.438-7.623 2.656v4.506h.24c1.483-1.097 3.083-1.901 4.746-2.557 4.36-1.865 8.601-2.43 11.784-1.59 2.336.665 3.864 2.038 4.486 4.147H24V13.447a46.901 46.901 0 0 0-5.371-.299zm-1.912.397c.127.094.25.21.365.351.044.063 1.468 1.458 1.945 2.877l-.605-.664c-.727-1.066-1.648-1.873-2.926-2.49.382-.045.862-.058 1.22-.074zm-4.211 7.443a19.97 19.97 0 0 0-3.332.344c-2.37.43-4.854 1.23-7.242 2.563h18.226c-.849-1.231-2.199-2.02-3.85-2.471-1.17-.309-2.442-.455-3.802-.436z" }) + ] + } + ); +}); + +exports.default = SiCopaairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.d.ts new file mode 100644 index 000000000..5f53b9ad6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0032A0"; +declare const SiCopaairlines: IconType; +export { SiCopaairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.mjs new file mode 100644 index 000000000..a19dab70a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCopaairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0032A0"; +const SiCopaairlines = React.forwardRef(function SiCopaairlines2({ title = "Copa Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .105v6.456c.69-.02 1.48.208 2.336.32l-1.502.191c-.256.01-.545.033-.834.06v.339a20.066 20.066 0 0 1 3.387-.344c9.682-2.296 17.7-.135 17.7-.135C19.368 6.602 9.78 5.302 0 9.122v.58c1.452-.489 2.986-.867 4.453-1.04 2.176-.267 4.2-.147 5.902.332 7.157-.509 12.342 1.016 12.342 1.016C20.75 9.694 10.303 8.269 0 12.953v.465c2.852-1.355 5.844-2.138 8.395-2.305 2.585-.138 4.896.228 6.634 1.256 4.1-.063 7.225.467 8.971.889V.105H0zm7.264 7.397a7.27 7.27 0 0 1 1.859.787l-.734-.115c-.63-.236-1.377-.394-2.118-.498.321-.07.635-.13.993-.174zm-.059 1.807C5.014 9.306 2.491 9.697 0 10.518v.752c2.566-.993 5.155-1.598 7.639-1.956a17.752 17.752 0 0 0-.434-.005zm5.643.75c.511.336 1.198.871 1.605 1.38l-.426-.138c-.605-.435-1.239-.831-2.058-1.164.274-.018.557-.062.879-.078zm-3.323 2.224c-2.884.008-6.186.705-9.525 2.096v1.453c4.215-2.037 8.514-3.007 12.258-3.328-.855-.15-1.771-.223-2.733-.22zm9.104.865c-5.013.01-12.024.842-18.629 4.598v.606c.29-.165.58-.321.854-.467 2.156-1.153 4.31-1.957 6.464-2.446 2.039-.483 4.035-.653 5.86-.492 3.45.308 5.93 1.808 7.123 4.395.01.02.863 1.919.945 3.71l-.414-1.025c-.11-.512-.252-1.038-.521-1.51-.884-1.707-2.606-2.935-4.93-3.654-2.11-.662-4.882-.69-7.758-.13-2.552.48-5.15 1.438-7.623 2.656v4.506h.24c1.483-1.097 3.083-1.901 4.746-2.557 4.36-1.865 8.601-2.43 11.784-1.59 2.336.665 3.864 2.038 4.486 4.147H24V13.447a46.901 46.901 0 0 0-5.371-.299zm-1.912.397c.127.094.25.21.365.351.044.063 1.468 1.458 1.945 2.877l-.605-.664c-.727-1.066-1.648-1.873-2.926-2.49.382-.045.862-.058 1.22-.074zm-4.211 7.443a19.97 19.97 0 0 0-3.332.344c-2.37.43-4.854 1.23-7.242 2.563h18.226c-.849-1.231-2.199-2.02-3.85-2.471-1.17-.309-2.442-.455-3.802-.436z" }) + ] + } + ); +}); + +export { SiCopaairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.cjs new file mode 100644 index 000000000..e112648bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0266AE"; +const SiCoppel = React__namespace.forwardRef(function SiCoppel2({ title = "Coppel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.738 2.879a.716.716 0 0 0-.738.74v16.762c0 .428.35.74.738.74h22.52a.739.739 0 0 0 .739-.74V3.619c.039-.428-.31-.74-.738-.74Zm6.614 6.34c1.167 0 2.1.935 2.1 2.101 0 .234-.04.427-.079.621h12.058v1.868h-.973v2.527h-.97v-1.283h-.935v1.283h-.972v-2.527H9.373c.04.194.079.428.079.623a2.09 2.09 0 0 1-2.1 2.1c-1.011 0-1.83-.7-2.063-1.634a3.388 3.388 0 0 1-.62.077 2.092 2.092 0 0 1-2.102-2.1c0-1.167.934-2.1 2.101-2.1.234 0 .427 0 .621.079.234-.934 1.052-1.635 2.063-1.635Zm0 1.168c-.545 0-.973.428-.934.933 0 .506.428.932.934.932a.945.945 0 0 0 .933-.932.947.947 0 0 0-.933-.933zM4.668 11.94a.947.947 0 0 0-.933.934c0 .506.428.934.933.934a.947.947 0 0 0 .934-.934.947.947 0 0 0-.934-.934zm2.684 1.518a.947.947 0 0 0-.934.934c0 .505.428.933.934.933a.947.947 0 0 0 .933-.933.947.947 0 0 0-.933-.934z" }) + ] + } + ); +}); + +exports.default = SiCoppel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.d.ts new file mode 100644 index 000000000..6ae95f588 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0266AE"; +declare const SiCoppel: IconType; +export { SiCoppel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.mjs new file mode 100644 index 000000000..786cf6683 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoppel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0266AE"; +const SiCoppel = React.forwardRef(function SiCoppel2({ title = "Coppel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.738 2.879a.716.716 0 0 0-.738.74v16.762c0 .428.35.74.738.74h22.52a.739.739 0 0 0 .739-.74V3.619c.039-.428-.31-.74-.738-.74Zm6.614 6.34c1.167 0 2.1.935 2.1 2.101 0 .234-.04.427-.079.621h12.058v1.868h-.973v2.527h-.97v-1.283h-.935v1.283h-.972v-2.527H9.373c.04.194.079.428.079.623a2.09 2.09 0 0 1-2.1 2.1c-1.011 0-1.83-.7-2.063-1.634a3.388 3.388 0 0 1-.62.077 2.092 2.092 0 0 1-2.102-2.1c0-1.167.934-2.1 2.101-2.1.234 0 .427 0 .621.079.234-.934 1.052-1.635 2.063-1.635Zm0 1.168c-.545 0-.973.428-.934.933 0 .506.428.932.934.932a.945.945 0 0 0 .933-.932.947.947 0 0 0-.933-.933zM4.668 11.94a.947.947 0 0 0-.933.934c0 .506.428.934.933.934a.947.947 0 0 0 .934-.934.947.947 0 0 0-.934-.934zm2.684 1.518a.947.947 0 0 0-.934.934c0 .505.428.933.934.933a.947.947 0 0 0 .933-.933.947.947 0 0 0-.933-.934z" }) + ] + } + ); +}); + +export { SiCoppel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCora.cjs new file mode 100644 index 000000000..037019bcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E61845"; +const SiCora = React__namespace.forwardRef(function SiCora2({ title = "Cora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.637 8.6606c0-.0838-.0344-.1153-.118-.1117-.1242.0045-.2487 0-.3729 0a1.5068 1.5068 0 0 0-1.0148.4021 2.4725 2.4725 0 0 0-.462.594c-.0526.088-.1058.1756-.1589.2632l-.0215-.0053c-.0028-.0304-.0078-.0608-.008-.0915q-.0062-.4465-.0107-.8904c0-.0653-.007-.1097-.0937-.1116-.4763-.0109-.9524-.016-1.429-.0087-.0954.0014-.1183.0374-.1191.1273-.0223 2.1229-.0128 4.2458 0 6.369 0 .0753.0279.0895.0952.0906.4796.0084.9596.0134 1.4392 0 .171-.0047.1736-.0067.1755-.181.012-1.1667.021-2.3336.0352-3.5003a1.263 1.263 0 0 1 1.0118-1.2573 3.508 3.508 0 0 1 .9378-.0516c.0949.0033.1152-.0257.1141-.1144-.0033-.29.0028-.5799.0033-.87-.0005-.2174-.0047-.4348-.0036-.6524zM3.2957 9.9943a.9705.9705 0 0 1 .8005.4744 1.5509 1.5509 0 0 1 .1954.4978c.0156.0698.0471.0854.1116.0837.2553-.0033.5109 0 .7662 0 .2553 0 .511-.005.7662.0025.0958.0028.1184-.0279.1091-.1164a2.4354 2.4354 0 0 0-1.4004-2.0762 3.5683 3.5683 0 0 0-2.2044-.264A2.6017 2.6017 0 0 0 .4925 9.9383a4.0022 4.0022 0 0 0-.4643 1.6708 4.9916 4.9916 0 0 0 .1485 1.8461 2.6 2.6 0 0 0 1.4038 1.7133 3.5789 3.5789 0 0 0 2.2694.2112c1.3915-.2882 2.016-1.3394 2.1854-2.3592.0147-.089-.0026-.1273-.1086-.1259-.4626.0064-.9253.0028-1.3876.0028-.2233 0-.2233 0-.2816.2205a1.1622 1.1622 0 0 1-.985.9088 1.1413 1.1413 0 0 1-1.144-.4688 1.8042 1.8042 0 0 1-.2723-.6761 5.631 5.631 0 0 1-.0623-1.114 2.439 2.439 0 0 1 .0837-.6545c.1555-.6044.5634-1.1795 1.4181-1.119Zm7.911-1.2316a3.7982 3.7982 0 0 0-2.6367-.003 2.8688 2.8688 0 0 0-1.8363 1.862 4.2971 4.2971 0 0 0-.0416 2.6186 2.8816 2.8816 0 0 0 1.8623 1.9907 3.8071 3.8071 0 0 0 2.5392.0432 2.8978 2.8978 0 0 0 1.8383-1.644 3.9383 3.9383 0 0 0 .3153-1.6265 4.9445 4.9445 0 0 0-.0985-.9727 2.9614 2.9614 0 0 0-1.942-2.2683zm.0557 4.3671a1.3036 1.3036 0 0 1-1.2579.865 1.734 1.734 0 0 1-.7333-.091 1.4208 1.4208 0 0 1-.826-.912 2.9901 2.9901 0 0 1-.1372-1.0755 2.458 2.458 0 0 1 .2338-1.1404 1.3394 1.3394 0 0 1 1.1935-.7774 1.7189 1.7189 0 0 1 .7441.0904 1.2986 1.2986 0 0 1 .7858.776 3.0973 3.0973 0 0 1-.0028 2.2652zm12.6651 1.8749a.483.483 0 0 1-.2028-.2274 1.0475 1.0475 0 0 1-.093-.4621c-.0248-1.3427-.0039-2.686-.0382-4.0284a1.512 1.512 0 0 0-.5463-1.1402 2.4695 2.4695 0 0 0-1.126-.515 5.3873 5.3873 0 0 0-1.7104-.0559 2.6815 2.6815 0 0 0-1.073.32c-.7078.403-.9852 1.0638-1.0831 1.8305-.0112.0882.022.1008.0993.1002.435-.0034.87-.0017 1.305-.0017.2367 0 .2367 0 .2967-.2246a.848.848 0 0 1 .7478-.6613 3.0786 3.0786 0 0 1 .7849.0198.6892.6892 0 0 1 .6211.7177.4668.4668 0 0 1-.2846.4408 1.4912 1.4912 0 0 1-.4202.1013c-.5916.1002-1.19.1608-1.7752.2933a1.9228 1.9228 0 0 0-1.3854 1.0324 2.2822 2.2822 0 0 0-.1937 1.2816 1.697 1.697 0 0 0 .889 1.3737 2.7038 2.7038 0 0 0 2.7834-.2854c.1244-.1038.2464-.211.3683-.3178.0558-.0478.0756-.04.0857.0343a3.4009 3.4009 0 0 0 .1214.5759.1091.1091 0 0 0 .125.0896c.2726-.0047.5455-.002.818-.002v-.0084c.2727 0 .5456.002.8182-.0017.0483 0 .12.0231.1306-.0623.01-.079.0335-.1665-.0625-.217zm-2.5833-1.0715a1.6879 1.6879 0 0 1-1.0681.2888.7785.7785 0 0 1-.6976-.9842.8195.8195 0 0 1 .5843-.6496 5.6502 5.6502 0 0 1 .8153-.187 2.6787 2.6787 0 0 0 .865-.2672c.0558-.0335.0659-.0034.0659.0424v.435h.0042v.279a1.178 1.178 0 0 1-.569 1.0428Z" }) + ] + } + ); +}); + +exports.default = SiCora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCora.d.ts new file mode 100644 index 000000000..7659ce05c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E61845"; +declare const SiCora: IconType; +export { SiCora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCora.mjs new file mode 100644 index 000000000..1e01dadc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E61845"; +const SiCora = React.forwardRef(function SiCora2({ title = "Cora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.637 8.6606c0-.0838-.0344-.1153-.118-.1117-.1242.0045-.2487 0-.3729 0a1.5068 1.5068 0 0 0-1.0148.4021 2.4725 2.4725 0 0 0-.462.594c-.0526.088-.1058.1756-.1589.2632l-.0215-.0053c-.0028-.0304-.0078-.0608-.008-.0915q-.0062-.4465-.0107-.8904c0-.0653-.007-.1097-.0937-.1116-.4763-.0109-.9524-.016-1.429-.0087-.0954.0014-.1183.0374-.1191.1273-.0223 2.1229-.0128 4.2458 0 6.369 0 .0753.0279.0895.0952.0906.4796.0084.9596.0134 1.4392 0 .171-.0047.1736-.0067.1755-.181.012-1.1667.021-2.3336.0352-3.5003a1.263 1.263 0 0 1 1.0118-1.2573 3.508 3.508 0 0 1 .9378-.0516c.0949.0033.1152-.0257.1141-.1144-.0033-.29.0028-.5799.0033-.87-.0005-.2174-.0047-.4348-.0036-.6524zM3.2957 9.9943a.9705.9705 0 0 1 .8005.4744 1.5509 1.5509 0 0 1 .1954.4978c.0156.0698.0471.0854.1116.0837.2553-.0033.5109 0 .7662 0 .2553 0 .511-.005.7662.0025.0958.0028.1184-.0279.1091-.1164a2.4354 2.4354 0 0 0-1.4004-2.0762 3.5683 3.5683 0 0 0-2.2044-.264A2.6017 2.6017 0 0 0 .4925 9.9383a4.0022 4.0022 0 0 0-.4643 1.6708 4.9916 4.9916 0 0 0 .1485 1.8461 2.6 2.6 0 0 0 1.4038 1.7133 3.5789 3.5789 0 0 0 2.2694.2112c1.3915-.2882 2.016-1.3394 2.1854-2.3592.0147-.089-.0026-.1273-.1086-.1259-.4626.0064-.9253.0028-1.3876.0028-.2233 0-.2233 0-.2816.2205a1.1622 1.1622 0 0 1-.985.9088 1.1413 1.1413 0 0 1-1.144-.4688 1.8042 1.8042 0 0 1-.2723-.6761 5.631 5.631 0 0 1-.0623-1.114 2.439 2.439 0 0 1 .0837-.6545c.1555-.6044.5634-1.1795 1.4181-1.119Zm7.911-1.2316a3.7982 3.7982 0 0 0-2.6367-.003 2.8688 2.8688 0 0 0-1.8363 1.862 4.2971 4.2971 0 0 0-.0416 2.6186 2.8816 2.8816 0 0 0 1.8623 1.9907 3.8071 3.8071 0 0 0 2.5392.0432 2.8978 2.8978 0 0 0 1.8383-1.644 3.9383 3.9383 0 0 0 .3153-1.6265 4.9445 4.9445 0 0 0-.0985-.9727 2.9614 2.9614 0 0 0-1.942-2.2683zm.0557 4.3671a1.3036 1.3036 0 0 1-1.2579.865 1.734 1.734 0 0 1-.7333-.091 1.4208 1.4208 0 0 1-.826-.912 2.9901 2.9901 0 0 1-.1372-1.0755 2.458 2.458 0 0 1 .2338-1.1404 1.3394 1.3394 0 0 1 1.1935-.7774 1.7189 1.7189 0 0 1 .7441.0904 1.2986 1.2986 0 0 1 .7858.776 3.0973 3.0973 0 0 1-.0028 2.2652zm12.6651 1.8749a.483.483 0 0 1-.2028-.2274 1.0475 1.0475 0 0 1-.093-.4621c-.0248-1.3427-.0039-2.686-.0382-4.0284a1.512 1.512 0 0 0-.5463-1.1402 2.4695 2.4695 0 0 0-1.126-.515 5.3873 5.3873 0 0 0-1.7104-.0559 2.6815 2.6815 0 0 0-1.073.32c-.7078.403-.9852 1.0638-1.0831 1.8305-.0112.0882.022.1008.0993.1002.435-.0034.87-.0017 1.305-.0017.2367 0 .2367 0 .2967-.2246a.848.848 0 0 1 .7478-.6613 3.0786 3.0786 0 0 1 .7849.0198.6892.6892 0 0 1 .6211.7177.4668.4668 0 0 1-.2846.4408 1.4912 1.4912 0 0 1-.4202.1013c-.5916.1002-1.19.1608-1.7752.2933a1.9228 1.9228 0 0 0-1.3854 1.0324 2.2822 2.2822 0 0 0-.1937 1.2816 1.697 1.697 0 0 0 .889 1.3737 2.7038 2.7038 0 0 0 2.7834-.2854c.1244-.1038.2464-.211.3683-.3178.0558-.0478.0756-.04.0857.0343a3.4009 3.4009 0 0 0 .1214.5759.1091.1091 0 0 0 .125.0896c.2726-.0047.5455-.002.818-.002v-.0084c.2727 0 .5456.002.8182-.0017.0483 0 .12.0231.1306-.0623.01-.079.0335-.1665-.0625-.217zm-2.5833-1.0715a1.6879 1.6879 0 0 1-1.0681.2888.7785.7785 0 0 1-.6976-.9842.8195.8195 0 0 1 .5843-.6496 5.6502 5.6502 0 0 1 .8153-.187 2.6787 2.6787 0 0 0 .865-.2672c.0558-.0335.0659-.0034.0659.0424v.435h.0042v.279a1.178 1.178 0 0 1-.569 1.0428Z" }) + ] + } + ); +}); + +export { SiCora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.cjs new file mode 100644 index 000000000..5181beb43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCoreboot = React__namespace.forwardRef(function SiCoreboot2({ title = "Coreboot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m 7.7405,2.4142 c 0,0 0.7829,0.635 2.232,1.785 0.1015,0.084 0.1285,0.124 0.1085,0.158 -0.03,0.052 -0.1689,-0.01 -0.1689,-0.01 -1.12,-0.426 -2.385,-0.668 -3.2403,-0.612 -0.2848,0.018 -0.3753,0.064 -0.4156,0.145 -0.019,0.038 -0.022,0.14 0.074,0.267 0.3743,0.495 1.276,1.465 2.7764,2.386 1.5414,0.946 4.2644,2.287 6.6714,3.359 1.079,0.4788 1.855,1.1198 1.609,1.8588 -0.277,0.823 -1.343,0.936 -2.194,0.595 C 14.5,12.069 13.854,11.202 12.804,10.038 10.984,8.0222 10.121,7.2182 7.101,7.8322 5.5875,8.1402 4.1585,9.3792 3.0154,10.687 c -0.7618,0.961 -1.1281,1.761 -1.2378,2.726 0,0 -0.2093,-0.382 0,-1.36 0.3612,-1.71 -0.4257,-2.4438 -0.4257,-2.4438 -3.983,5.6488 1.6826,10.7558 6.05,5.8648 0,0 -1.429,3.173 -1.3092,4.162 -0.6098,0.2 -0.8805,0.76 0.031,1.437 0.9962,0.739 3.4456,0.675 5.3773,-0.155 3.604,-1.55 5.852,-4.437 6.966,-6.271 0.26,-0.429 0.536,-0.637 0.726,-0.706 0.289,-0.104 2.278,0.02 3.209,-0.513 a 0.97613,0.97 0 0 0 0.511,0.08 C 23.587,13.458 24,12.65 24,12.65 c 0,0 -0.852,-1.625 -2.892,-2.8368 -1.922,-1.142 -2.482,-0.745 -4.207,-2.12 -2.694,-2.148 -5.955,-4.59 -9.1574,-5.28 m 1.8164,6.77 c 1.399,-0.064 2.491,0.387 2.671,1.2578 0.285,1.39 -2.684,4.89 -2.4888,4.946 0.018,0 0.06,-0.02 0.1228,-0.06 0.975,-1.276 2.821,-3.234 3.512,-3.159 1.241,0.136 1.67,1.78 1.67,1.78 l -4.136,3.731 a 8.0505,8 0 0 0 2.723,0.244 c -1.848,1.316 -3.8506,1.683 -5.0893,1.138 1.9593,-1.42 5.5643,-4.973 5.5643,-4.973 0,0 -0.6,-1.511 -1.682,-0.586 -1.046,0.895 -2.013,2.013 -2.395,2.37 -0.2375,0.22 -0.638,0.637 -0.8755,0.457 C 8.8664,16.115 9.7248,14.184 10.382,12.584 11.277,10.402 10.247,9.7202 9.0405,9.7812 7.9597,9.8352 6.4845,10.49 5.4268,11.137 5.1269,11.32 4.9237,11.433 4.8472,11.363 c -0.066,-0.06 0,-0.178 0.2002,-0.344 C 6.4522,9.8292 8.1589,9.2492 9.5577,9.1842" }) + ] + } + ); +}); + +exports.default = SiCoreboot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.d.ts new file mode 100644 index 000000000..67f64327f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCoreboot: IconType; +export { SiCoreboot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.mjs new file mode 100644 index 000000000..420f53d86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreboot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCoreboot = React.forwardRef(function SiCoreboot2({ title = "Coreboot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m 7.7405,2.4142 c 0,0 0.7829,0.635 2.232,1.785 0.1015,0.084 0.1285,0.124 0.1085,0.158 -0.03,0.052 -0.1689,-0.01 -0.1689,-0.01 -1.12,-0.426 -2.385,-0.668 -3.2403,-0.612 -0.2848,0.018 -0.3753,0.064 -0.4156,0.145 -0.019,0.038 -0.022,0.14 0.074,0.267 0.3743,0.495 1.276,1.465 2.7764,2.386 1.5414,0.946 4.2644,2.287 6.6714,3.359 1.079,0.4788 1.855,1.1198 1.609,1.8588 -0.277,0.823 -1.343,0.936 -2.194,0.595 C 14.5,12.069 13.854,11.202 12.804,10.038 10.984,8.0222 10.121,7.2182 7.101,7.8322 5.5875,8.1402 4.1585,9.3792 3.0154,10.687 c -0.7618,0.961 -1.1281,1.761 -1.2378,2.726 0,0 -0.2093,-0.382 0,-1.36 0.3612,-1.71 -0.4257,-2.4438 -0.4257,-2.4438 -3.983,5.6488 1.6826,10.7558 6.05,5.8648 0,0 -1.429,3.173 -1.3092,4.162 -0.6098,0.2 -0.8805,0.76 0.031,1.437 0.9962,0.739 3.4456,0.675 5.3773,-0.155 3.604,-1.55 5.852,-4.437 6.966,-6.271 0.26,-0.429 0.536,-0.637 0.726,-0.706 0.289,-0.104 2.278,0.02 3.209,-0.513 a 0.97613,0.97 0 0 0 0.511,0.08 C 23.587,13.458 24,12.65 24,12.65 c 0,0 -0.852,-1.625 -2.892,-2.8368 -1.922,-1.142 -2.482,-0.745 -4.207,-2.12 -2.694,-2.148 -5.955,-4.59 -9.1574,-5.28 m 1.8164,6.77 c 1.399,-0.064 2.491,0.387 2.671,1.2578 0.285,1.39 -2.684,4.89 -2.4888,4.946 0.018,0 0.06,-0.02 0.1228,-0.06 0.975,-1.276 2.821,-3.234 3.512,-3.159 1.241,0.136 1.67,1.78 1.67,1.78 l -4.136,3.731 a 8.0505,8 0 0 0 2.723,0.244 c -1.848,1.316 -3.8506,1.683 -5.0893,1.138 1.9593,-1.42 5.5643,-4.973 5.5643,-4.973 0,0 -0.6,-1.511 -1.682,-0.586 -1.046,0.895 -2.013,2.013 -2.395,2.37 -0.2375,0.22 -0.638,0.637 -0.8755,0.457 C 8.8664,16.115 9.7248,14.184 10.382,12.584 11.277,10.402 10.247,9.7202 9.0405,9.7812 7.9597,9.8352 6.4845,10.49 5.4268,11.137 5.1269,11.32 4.9237,11.433 4.8472,11.363 c -0.066,-0.06 0,-0.178 0.2002,-0.344 C 6.4522,9.8292 8.1589,9.2492 9.5577,9.1842" }) + ] + } + ); +}); + +export { SiCoreboot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.cjs new file mode 100644 index 000000000..b9c945213 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCoreldraw = React__namespace.forwardRef(function SiCoreldraw2({ title = "CorelDRAW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.651 0C10.265.019 9.4.272 8.584.657c-.816.39-3.696 2.161-3.752 6.536.072 4.145 3.847 11.191 6.397 13.455 0 0-4.141-6.952-4.439-13.013C6.488 1.575 10.651 0 10.651 0Zm2.679 0s4.159 1.575 3.861 7.635c-.299 6.061-4.439 13.013-4.439 13.013 2.547-2.264 6.324-9.31 6.396-13.455-.057-4.375-2.936-6.146-3.752-6.536C14.58.272 13.715.019 13.33 0Zm-1.38.019a1.088 1.088 0 0 0-.555.144C9.864.99 8.909 3.982 9.177 8.66c.185 3.242 1.009 7.291 2.422 11.988h.7c1.413-4.697 2.24-8.742 2.425-11.984.268-4.677-.688-7.674-2.219-8.501a1.088 1.088 0 0 0-.555-.144ZM7.017 1.066S2.543 2.909 3.431 8.225c.884 5.32 5.588 10.995 6.986 12.2.503.457-5.777-6.548-6.386-12.699-.291-2.323.39-4.9 2.986-6.66Zm9.966 0c2.595 1.76 3.276 4.337 2.985 6.66-.608 6.151-6.888 13.156-6.386 12.699 1.398-1.205 6.103-6.88 6.987-12.2.888-5.316-3.586-7.159-3.586-7.159Zm-6.815 20.78L10.647 24h2.599l.488-2.154h-3.566Z" }) + ] + } + ); +}); + +exports.default = SiCoreldraw; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.d.ts new file mode 100644 index 000000000..97d349c38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCoreldraw: IconType; +export { SiCoreldraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.mjs new file mode 100644 index 000000000..561ff68d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoreldraw.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCoreldraw = React.forwardRef(function SiCoreldraw2({ title = "CorelDRAW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.651 0C10.265.019 9.4.272 8.584.657c-.816.39-3.696 2.161-3.752 6.536.072 4.145 3.847 11.191 6.397 13.455 0 0-4.141-6.952-4.439-13.013C6.488 1.575 10.651 0 10.651 0Zm2.679 0s4.159 1.575 3.861 7.635c-.299 6.061-4.439 13.013-4.439 13.013 2.547-2.264 6.324-9.31 6.396-13.455-.057-4.375-2.936-6.146-3.752-6.536C14.58.272 13.715.019 13.33 0Zm-1.38.019a1.088 1.088 0 0 0-.555.144C9.864.99 8.909 3.982 9.177 8.66c.185 3.242 1.009 7.291 2.422 11.988h.7c1.413-4.697 2.24-8.742 2.425-11.984.268-4.677-.688-7.674-2.219-8.501a1.088 1.088 0 0 0-.555-.144ZM7.017 1.066S2.543 2.909 3.431 8.225c.884 5.32 5.588 10.995 6.986 12.2.503.457-5.777-6.548-6.386-12.699-.291-2.323.39-4.9 2.986-6.66Zm9.966 0c2.595 1.76 3.276 4.337 2.985 6.66-.608 6.151-6.888 13.156-6.386 12.699 1.398-1.205 6.103-6.88 6.987-12.2.888-5.316-3.586-7.159-3.586-7.159Zm-6.815 20.78L10.647 24h2.599l.488-2.154h-3.566Z" }) + ] + } + ); +}); + +export { SiCoreldraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.cjs new file mode 100644 index 000000000..45007ddb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F96F29"; +const SiCoronaengine = React__namespace.forwardRef(function SiCoronaengine2({ title = "Corona Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.69 7.499c-.919-.965-1.577-2.105-1.6-3.116.655-.187 2.017.001 3.35.558 1.354.566 2.668 1.514 3.158 2.831.014.039.029.078.041.116a2.337 2.337 0 0 1-.529 1.14c-.26.279-.586.487-.948.605-1.143-.23-2.464-1.074-3.472-2.134zm5.581 2.244c-.957.334-1.839 1.311-2.473 2.482v.001c-.697 1.284-1.093 2.799-.96 3.957.225.307.523.553.869.713.394.163.826.215 1.247.151.038-.027.07-.053.1-.075 1.103-.872 1.6-2.413 1.72-3.875.119-1.437-.122-2.79-.503-3.354zm-7.939-3.389a2.23 2.23 0 0 0-.283-1.088 2.332 2.332 0 0 0-.92-.853l-.123.002C8.6 4.473 7.292 5.428 6.334 6.541 5.393 7.633 4.791 8.87 4.768 9.55c.969.288 2.257.017 3.459-.559v.002c1.32-.631 2.532-1.625 3.105-2.639zM7.96 14.641c-.193-1.449-.765-2.907-1.553-3.767a2.252 2.252 0 0 0-1.123-.067c-.415.099-.794.31-1.097.61l-.036.118c-.38 1.355.125 2.893.886 4.146.749 1.233 1.741 2.185 2.382 2.418.577-.832.718-2.139.54-3.459l.001.001zm5.297 2c-1.439-.264-3.004-.172-4.065.311a2.227 2.227 0 0 0-.411 1.046c-.034.426.05.852.243 1.233.033.025.067.047.1.068 1.172.779 2.793.774 4.223.438 1.405-.332 2.619-.978 3.039-1.515-.614-.807-1.817-1.344-3.128-1.584l-.001.003zM24 12c0 6.622-5.364 11.992-11.985 12C5.387 24.008.008 18.642 0 12.015-.008 5.387 5.358.008 11.985 0h.001C18.617-.004 23.996 5.369 24 12zm-1.547 0c-.003-5.778-4.69-10.459-10.468-10.456-5.774.007-10.45 4.693-10.443 10.468.007 5.775 4.693 10.45 10.468 10.443C17.78 22.448 22.453 17.77 22.453 12z" }) + ] + } + ); +}); + +exports.default = SiCoronaengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.d.ts new file mode 100644 index 000000000..dffe3c61e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F96F29"; +declare const SiCoronaengine: IconType; +export { SiCoronaengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.mjs new file mode 100644 index 000000000..79519401d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronaengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F96F29"; +const SiCoronaengine = React.forwardRef(function SiCoronaengine2({ title = "Corona Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.69 7.499c-.919-.965-1.577-2.105-1.6-3.116.655-.187 2.017.001 3.35.558 1.354.566 2.668 1.514 3.158 2.831.014.039.029.078.041.116a2.337 2.337 0 0 1-.529 1.14c-.26.279-.586.487-.948.605-1.143-.23-2.464-1.074-3.472-2.134zm5.581 2.244c-.957.334-1.839 1.311-2.473 2.482v.001c-.697 1.284-1.093 2.799-.96 3.957.225.307.523.553.869.713.394.163.826.215 1.247.151.038-.027.07-.053.1-.075 1.103-.872 1.6-2.413 1.72-3.875.119-1.437-.122-2.79-.503-3.354zm-7.939-3.389a2.23 2.23 0 0 0-.283-1.088 2.332 2.332 0 0 0-.92-.853l-.123.002C8.6 4.473 7.292 5.428 6.334 6.541 5.393 7.633 4.791 8.87 4.768 9.55c.969.288 2.257.017 3.459-.559v.002c1.32-.631 2.532-1.625 3.105-2.639zM7.96 14.641c-.193-1.449-.765-2.907-1.553-3.767a2.252 2.252 0 0 0-1.123-.067c-.415.099-.794.31-1.097.61l-.036.118c-.38 1.355.125 2.893.886 4.146.749 1.233 1.741 2.185 2.382 2.418.577-.832.718-2.139.54-3.459l.001.001zm5.297 2c-1.439-.264-3.004-.172-4.065.311a2.227 2.227 0 0 0-.411 1.046c-.034.426.05.852.243 1.233.033.025.067.047.1.068 1.172.779 2.793.774 4.223.438 1.405-.332 2.619-.978 3.039-1.515-.614-.807-1.817-1.344-3.128-1.584l-.001.003zM24 12c0 6.622-5.364 11.992-11.985 12C5.387 24.008.008 18.642 0 12.015-.008 5.387 5.358.008 11.985 0h.001C18.617-.004 23.996 5.369 24 12zm-1.547 0c-.003-5.778-4.69-10.459-10.468-10.456-5.774.007-10.45 4.693-10.443 10.468.007 5.775 4.693 10.45 10.468 10.443C17.78 22.448 22.453 17.77 22.453 12z" }) + ] + } + ); +}); + +export { SiCoronaengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.cjs new file mode 100644 index 000000000..ed44bc3ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6502A"; +const SiCoronarenderer = React__namespace.forwardRef(function SiCoronarenderer2({ title = "Corona Renderer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.734,11.603c0.078,0.376,0.116,0.76,0.116,1.144c0,1.44-0.562,2.846-1.556,3.889 c-0.989,1.037-2.358,1.668-3.789,1.741c-1.445,0.074-2.885-0.418-3.979-1.365c-1.079-0.933-1.776-2.265-1.921-3.684 c-0.148-1.445,0.273-2.914,1.17-4.057c0.877-1.118,2.168-1.879,3.574-2.095c1.439-0.222,2.934,0.127,4.123,0.97 C18.627,8.965,19.448,10.214,19.734,11.603z M24,6v12c0,3.314-2.686,6-6,6H6c-3.314,0-6-2.686-6-6V6c0-3.314,2.686-6,6-6h12 C21.314,0,24,2.686,24,6z M21.828,9.483c-0.465-1.398-1.274-2.674-2.334-3.697c-1.025-0.988-2.279-1.731-3.639-2.152 c0.159,0.423,0.239,0.874,0.238,1.326c-1.109-1.455-2.809-2.4-4.632-2.564c-1.112-0.1-2.245,0.084-3.265,0.538 c0.829,0.257,1.555,0.807,2.03,1.533C8.383,3.809,6.29,4.017,4.615,5.028C3.931,5.441,3.324,5.98,2.831,6.609 c1.151-0.247,2.375,0.069,3.262,0.843c-0.74,0.709-1.754,1.087-2.778,1.039C3.469,8.742,3.652,8.973,3.859,9.18 c-0.01,0.017-0.021,0.034-0.031,0.051c-0.696,0.314-1.288,0.842-1.68,1.496c-0.438,0.729-0.613,1.6-0.498,2.442 c0.066,0.481,0.226,0.947,0.469,1.367c-0.108-0.934,0.684-1.758,1.622-1.686c0.921,0.071,1.576,0.983,1.351,1.88 c-0.16,0.635-0.732,1.107-1.386,1.142c0.87,1.547,2.362,2.701,4.08,3.146c0.608,0.157,1.238,0.226,1.866,0.206 c-0.471,0.358-1.029,0.608-1.637,0.711c1.493,1.016,3.275,1.567,5.08,1.578c1.455,0.009,2.905-0.33,4.202-0.991 c1.249-0.636,2.345-1.562,3.184-2.684c0.851-1.139,1.43-2.475,1.676-3.876C22.417,12.472,22.305,10.919,21.828,9.483z" }) + ] + } + ); +}); + +exports.default = SiCoronarenderer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.d.ts new file mode 100644 index 000000000..8dc90e2c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6502A"; +declare const SiCoronarenderer: IconType; +export { SiCoronarenderer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.mjs new file mode 100644 index 000000000..0724179b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoronarenderer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6502A"; +const SiCoronarenderer = React.forwardRef(function SiCoronarenderer2({ title = "Corona Renderer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.734,11.603c0.078,0.376,0.116,0.76,0.116,1.144c0,1.44-0.562,2.846-1.556,3.889 c-0.989,1.037-2.358,1.668-3.789,1.741c-1.445,0.074-2.885-0.418-3.979-1.365c-1.079-0.933-1.776-2.265-1.921-3.684 c-0.148-1.445,0.273-2.914,1.17-4.057c0.877-1.118,2.168-1.879,3.574-2.095c1.439-0.222,2.934,0.127,4.123,0.97 C18.627,8.965,19.448,10.214,19.734,11.603z M24,6v12c0,3.314-2.686,6-6,6H6c-3.314,0-6-2.686-6-6V6c0-3.314,2.686-6,6-6h12 C21.314,0,24,2.686,24,6z M21.828,9.483c-0.465-1.398-1.274-2.674-2.334-3.697c-1.025-0.988-2.279-1.731-3.639-2.152 c0.159,0.423,0.239,0.874,0.238,1.326c-1.109-1.455-2.809-2.4-4.632-2.564c-1.112-0.1-2.245,0.084-3.265,0.538 c0.829,0.257,1.555,0.807,2.03,1.533C8.383,3.809,6.29,4.017,4.615,5.028C3.931,5.441,3.324,5.98,2.831,6.609 c1.151-0.247,2.375,0.069,3.262,0.843c-0.74,0.709-1.754,1.087-2.778,1.039C3.469,8.742,3.652,8.973,3.859,9.18 c-0.01,0.017-0.021,0.034-0.031,0.051c-0.696,0.314-1.288,0.842-1.68,1.496c-0.438,0.729-0.613,1.6-0.498,2.442 c0.066,0.481,0.226,0.947,0.469,1.367c-0.108-0.934,0.684-1.758,1.622-1.686c0.921,0.071,1.576,0.983,1.351,1.88 c-0.16,0.635-0.732,1.107-1.386,1.142c0.87,1.547,2.362,2.701,4.08,3.146c0.608,0.157,1.238,0.226,1.866,0.206 c-0.471,0.358-1.029,0.608-1.637,0.711c1.493,1.016,3.275,1.567,5.08,1.578c1.455,0.009,2.905-0.33,4.202-0.991 c1.249-0.636,2.345-1.562,3.184-2.684c0.851-1.139,1.43-2.475,1.676-3.876C22.417,12.472,22.305,10.919,21.828,9.483z" }) + ] + } + ); +}); + +export { SiCoronarenderer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.cjs new file mode 100644 index 000000000..ed72a8900 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCorsair = React__namespace.forwardRef(function SiCorsair2({ title = "Corsair", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.072.412s1.913 3.881 1.563 5.5c0 0 4.987 1.612 5.54 4.272 0 0 2.73-3.594-7.103-9.772zM7.908 4.067s1.678 2.625 1.417 4.35l2.818 1.067a17.56 17.56 0 0 0-.991-3.248zm3.784.691a14.162 14.162 0 0 1 .163 13.794 17.702 17.702 0 0 0 .594-6.585c-.017-.186-.031-.368-.053-.55L6.908 7.759a14.13 14.13 0 0 1 1.133 4.465 14.02 14.02 0 0 1-1.305 7.347 17.75 17.75 0 0 0 .442-5.988.92.92 0 0 1-.022-.243l-5.133-2.726a11.639 11.639 0 0 1 1.075 3.93A11.785 11.785 0 0 1 0 23.587c21.91-9.29 22.795-3.173 22.795-3.173s1.656-2.164 1.085-4.51C23.128 12.79 11.692 4.759 11.692 4.759zM3.04 7.245s1.629 2.09 1.363 3.815l2.567.637a20.357 20.357 0 0 0-.863-2.788z" }) + ] + } + ); +}); + +exports.default = SiCorsair; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.d.ts new file mode 100644 index 000000000..279381351 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCorsair: IconType; +export { SiCorsair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.mjs new file mode 100644 index 000000000..93eac36e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCorsair.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCorsair = React.forwardRef(function SiCorsair2({ title = "Corsair", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.072.412s1.913 3.881 1.563 5.5c0 0 4.987 1.612 5.54 4.272 0 0 2.73-3.594-7.103-9.772zM7.908 4.067s1.678 2.625 1.417 4.35l2.818 1.067a17.56 17.56 0 0 0-.991-3.248zm3.784.691a14.162 14.162 0 0 1 .163 13.794 17.702 17.702 0 0 0 .594-6.585c-.017-.186-.031-.368-.053-.55L6.908 7.759a14.13 14.13 0 0 1 1.133 4.465 14.02 14.02 0 0 1-1.305 7.347 17.75 17.75 0 0 0 .442-5.988.92.92 0 0 1-.022-.243l-5.133-2.726a11.639 11.639 0 0 1 1.075 3.93A11.785 11.785 0 0 1 0 23.587c21.91-9.29 22.795-3.173 22.795-3.173s1.656-2.164 1.085-4.51C23.128 12.79 11.692 4.759 11.692 4.759zM3.04 7.245s1.629 2.09 1.363 3.815l2.567.637a20.357 20.357 0 0 0-.863-2.788z" }) + ] + } + ); +}); + +export { SiCorsair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.cjs new file mode 100644 index 000000000..41a086620 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA2328"; +const SiCouchbase = React__namespace.forwardRef(function SiCouchbase2({ title = "Couchbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.111 14.104a1.467 1.458 0 0 1-1.235 1.503c-1.422.244-4.385.398-6.875.398s-5.454-.15-6.877-.398c-.814-.14-1.235-.787-1.235-1.503V9.417a1.57 1.56 0 0 1 1.235-1.505 15.72 15.619 0 0 1 2.156-.14.537.533 0 0 1 .523.543v3.303c1.463 0 2.727-.086 4.201-.086 1.474 0 2.727.086 4.196.086V8.342a.535.532 0 0 1 .494-.569h.027a15.995 15.891 0 0 1 2.156.14 1.57 1.56 0 0 1 1.234 1.504zM12.001 0C5.373 0 0 5.374 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.626-5.373-12-12-12z" }) + ] + } + ); +}); + +exports.default = SiCouchbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.d.ts new file mode 100644 index 000000000..bbffc74b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA2328"; +declare const SiCouchbase: IconType; +export { SiCouchbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.mjs new file mode 100644 index 000000000..dcad5a62f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCouchbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA2328"; +const SiCouchbase = React.forwardRef(function SiCouchbase2({ title = "Couchbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.111 14.104a1.467 1.458 0 0 1-1.235 1.503c-1.422.244-4.385.398-6.875.398s-5.454-.15-6.877-.398c-.814-.14-1.235-.787-1.235-1.503V9.417a1.57 1.56 0 0 1 1.235-1.505 15.72 15.619 0 0 1 2.156-.14.537.533 0 0 1 .523.543v3.303c1.463 0 2.727-.086 4.201-.086 1.474 0 2.727.086 4.196.086V8.342a.535.532 0 0 1 .494-.569h.027a15.995 15.891 0 0 1 2.156.14 1.57 1.56 0 0 1 1.234 1.504zM12.001 0C5.373 0 0 5.374 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.626-5.373-12-12-12z" }) + ] + } + ); +}); + +export { SiCouchbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.cjs new file mode 100644 index 000000000..f25d67f5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCounterstrike = React__namespace.forwardRef(function SiCounterstrike2({ title = "Counter-Strike", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.7101 3.2348a.0218.0218 0 0 1-.0216-.0215c.001-.0815.003-.3698.004-.424 0-.1292-.1428-.1831-.2117-.0829-.0113.016-.1457.212-.2287.3323a.0244.0244 0 0 1-.0198.0103h-6.5508a.0473.0473 0 0 1-.0473-.0463l-.0131-.177a.0477.0477 0 0 1 .056-.0477l.335.0319a.059.059 0 0 0 .0624-.0445l.2441-.989a.0475.0475 0 0 0-.0295-.0542l-.2268-.0848a.0427.0427 0 0 1-.0263-.0295c-.0412-.1722-.3766-1.3235-1.9935-1.581-.7867-.125-1.302.2107-1.577.4784a1.594 1.594 0 0 0-.3018.4095l-.0965.2125c-.008.0164-.046.2157-.046.234l.0513.9815a.109.109 0 0 0 .0422.0856l.3546.153-.1958.3244a.055.055 0 0 1-.053.0402s-.417.0108-.6227.0192c-.3856.0155-1.2444.4858-1.8773 1.8385-.6219 1.3282-.724 1.5496-.724 1.5496a.0736.0736 0 0 1-.0684.0398l-.5776.0019c-.0356 0-.0736.0285-.0886.0608l-.8982 2.5428c-.0149.0323-.006.081.0173.1081l.627.3918a.059.059 0 0 1 .0195.059l-.3274.9664a.1916.1916 0 0 1-.0235.0618l-.4343.3824a.1056.1056 0 0 0-.0356.059l-.5978 1.5308a.0632.0632 0 0 1-.0608.0455l-.3355.0018a.1633.1633 0 0 0-.162.1488l-.2007 2.2883a1.7194 1.7194 0 0 1-.0159.1207l-.1583.908a.128.128 0 0 1-.0333.0553l-.5584.4263c-.2559.2443-.5988.6903-.7665 1.0015l-1.86 3.9235c-.045.0833-.0811.227-.0788.3221l.1321.2354c.002.0842-.0319.4559-.0707.5307L.817 23.6545a.0985.0985 0 0 0-.003.0856l.0309.0706.0932.1859 1.8913.0029c.1173.0106.247-.1396.2507-.3005l.1027-1.2965-.0268-.1952 3.6063-4.232c.0942-.1146.222-.3168.2861-.4506l1.7186-3.7892a.1712.1712 0 0 1 .1004-.088l.1086-.035a.1694.1694 0 0 1 .1827.0528c.1505.1807.5042.781.6765 1.0315.1425.2079.8495 1.2304 1.1582 1.5675.0853.0926.3481.198.4658.2696a.083.083 0 0 1 .029.1119l-1.0298 1.8083-.4549 2.1357a.9542.9542 0 0 0-.0356.1526l-.4118 1.4831c.003.1873-.141.2856-.1527.5064l-.15 1.084a.0581.0581 0 0 0 .0582.0614l2.5445.014c.0951-.0003.1902-.0045.2854-.0067a1.1049 1.1049 0 0 0 .0755-.0069c.1242-.0158.5629-.0754.75-.1503.1097-.0388.1809-.0819.2268-.1295.1855-.1935.2002-.278.2034-.3975.001-.0212-.011-.0726-.0283-.1049-.0053-.0117-.0316-.0382-.059-.0477l-1.1815-.3562a.3693.3693 0 0 1-.1889-.1338l-.3172-.469a.0865.0865 0 0 1 .0173-.0973l.618-.609a.2017.2017 0 0 0 .0483-.072l1.9036-4.488c.089-.285.0595-.6056 0-.9445-.044-.2504-.6854-1.3264-.8532-1.6236-.1476-.262-1.0677-1.8707-1.286-2.2517-.0793-.1376-.1894-.1328-.2287-.276l-.0726-1.1173a.0398.0398 0 0 1 .0356-.0505l.3312-.0276a.093.093 0 0 0 .0741-.0487l1.147-2.1544a.0958.0958 0 0 0-.002-.094l-.2349-.2907a.0874.0874 0 0 1-.001-.0875l.3515-.3796a.054.054 0 0 1 .0736-.0206l.9343.5266a.3819.3819 0 0 0 .186.0505c.259-.0019.6858-.1549.908-.2906a.3833.3833 0 0 0 .1386-.148l.4583-1.0703c.006-.0136.0262-.0117.029.0028l.1278.5953a.0635.0635 0 0 0 .0788.0501l1.3494-.3a.0662.0662 0 0 0 .05-.0786l-.318-1.3437a.0716.0716 0 0 1 .009-.0534l.1313-.2036a.281.281 0 0 0 .036-.0814l.1589-.725a.0408.0408 0 0 1 .0397-.0323l3.7327.0047a.0916.0916 0 0 0 .0932-.0931v-.6336a.022.022 0 0 1 .0216-.0216h1.4393a.0465.0465 0 0 0 .0464-.0463v-.2855a.0465.0465 0 0 0-.0464-.0463h-1.4398z" }) + ] + } + ); +}); + +exports.default = SiCounterstrike; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.d.ts new file mode 100644 index 000000000..13dcefaba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCounterstrike: IconType; +export { SiCounterstrike as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.mjs new file mode 100644 index 000000000..f04856122 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCounterstrike.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCounterstrike = React.forwardRef(function SiCounterstrike2({ title = "Counter-Strike", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.7101 3.2348a.0218.0218 0 0 1-.0216-.0215c.001-.0815.003-.3698.004-.424 0-.1292-.1428-.1831-.2117-.0829-.0113.016-.1457.212-.2287.3323a.0244.0244 0 0 1-.0198.0103h-6.5508a.0473.0473 0 0 1-.0473-.0463l-.0131-.177a.0477.0477 0 0 1 .056-.0477l.335.0319a.059.059 0 0 0 .0624-.0445l.2441-.989a.0475.0475 0 0 0-.0295-.0542l-.2268-.0848a.0427.0427 0 0 1-.0263-.0295c-.0412-.1722-.3766-1.3235-1.9935-1.581-.7867-.125-1.302.2107-1.577.4784a1.594 1.594 0 0 0-.3018.4095l-.0965.2125c-.008.0164-.046.2157-.046.234l.0513.9815a.109.109 0 0 0 .0422.0856l.3546.153-.1958.3244a.055.055 0 0 1-.053.0402s-.417.0108-.6227.0192c-.3856.0155-1.2444.4858-1.8773 1.8385-.6219 1.3282-.724 1.5496-.724 1.5496a.0736.0736 0 0 1-.0684.0398l-.5776.0019c-.0356 0-.0736.0285-.0886.0608l-.8982 2.5428c-.0149.0323-.006.081.0173.1081l.627.3918a.059.059 0 0 1 .0195.059l-.3274.9664a.1916.1916 0 0 1-.0235.0618l-.4343.3824a.1056.1056 0 0 0-.0356.059l-.5978 1.5308a.0632.0632 0 0 1-.0608.0455l-.3355.0018a.1633.1633 0 0 0-.162.1488l-.2007 2.2883a1.7194 1.7194 0 0 1-.0159.1207l-.1583.908a.128.128 0 0 1-.0333.0553l-.5584.4263c-.2559.2443-.5988.6903-.7665 1.0015l-1.86 3.9235c-.045.0833-.0811.227-.0788.3221l.1321.2354c.002.0842-.0319.4559-.0707.5307L.817 23.6545a.0985.0985 0 0 0-.003.0856l.0309.0706.0932.1859 1.8913.0029c.1173.0106.247-.1396.2507-.3005l.1027-1.2965-.0268-.1952 3.6063-4.232c.0942-.1146.222-.3168.2861-.4506l1.7186-3.7892a.1712.1712 0 0 1 .1004-.088l.1086-.035a.1694.1694 0 0 1 .1827.0528c.1505.1807.5042.781.6765 1.0315.1425.2079.8495 1.2304 1.1582 1.5675.0853.0926.3481.198.4658.2696a.083.083 0 0 1 .029.1119l-1.0298 1.8083-.4549 2.1357a.9542.9542 0 0 0-.0356.1526l-.4118 1.4831c.003.1873-.141.2856-.1527.5064l-.15 1.084a.0581.0581 0 0 0 .0582.0614l2.5445.014c.0951-.0003.1902-.0045.2854-.0067a1.1049 1.1049 0 0 0 .0755-.0069c.1242-.0158.5629-.0754.75-.1503.1097-.0388.1809-.0819.2268-.1295.1855-.1935.2002-.278.2034-.3975.001-.0212-.011-.0726-.0283-.1049-.0053-.0117-.0316-.0382-.059-.0477l-1.1815-.3562a.3693.3693 0 0 1-.1889-.1338l-.3172-.469a.0865.0865 0 0 1 .0173-.0973l.618-.609a.2017.2017 0 0 0 .0483-.072l1.9036-4.488c.089-.285.0595-.6056 0-.9445-.044-.2504-.6854-1.3264-.8532-1.6236-.1476-.262-1.0677-1.8707-1.286-2.2517-.0793-.1376-.1894-.1328-.2287-.276l-.0726-1.1173a.0398.0398 0 0 1 .0356-.0505l.3312-.0276a.093.093 0 0 0 .0741-.0487l1.147-2.1544a.0958.0958 0 0 0-.002-.094l-.2349-.2907a.0874.0874 0 0 1-.001-.0875l.3515-.3796a.054.054 0 0 1 .0736-.0206l.9343.5266a.3819.3819 0 0 0 .186.0505c.259-.0019.6858-.1549.908-.2906a.3833.3833 0 0 0 .1386-.148l.4583-1.0703c.006-.0136.0262-.0117.029.0028l.1278.5953a.0635.0635 0 0 0 .0788.0501l1.3494-.3a.0662.0662 0 0 0 .05-.0786l-.318-1.3437a.0716.0716 0 0 1 .009-.0534l.1313-.2036a.281.281 0 0 0 .036-.0814l.1589-.725a.0408.0408 0 0 1 .0397-.0323l3.7327.0047a.0916.0916 0 0 0 .0932-.0931v-.6336a.022.022 0 0 1 .0216-.0216h1.4393a.0465.0465 0 0 0 .0464-.0463v-.2855a.0465.0465 0 0 0-.0464-.0463h-1.4398z" }) + ] + } + ); +}); + +export { SiCounterstrike as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.cjs new file mode 100644 index 000000000..c4d016e56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E3084"; +const SiCountingworkspro = React__namespace.forwardRef(function SiCountingworkspro2({ title = "CountingWorks PRO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.327.512c-3.806.034-7.447 3.19-7.181 7.75.102 1.547.88 3.382 2.981 5.733a.365.365 0 0 0 .635-.23l.053-2.266a.36.36 0 0 0-.1-.255 5.047 5.047 0 0 1 3.407-8.502c2.27-.104 4.011 1.236 4.753 2.744.34.693.527 1.45.55 2.222a.357.357 0 0 0 .343.344c.482.015.962.064 1.437.147a.359.359 0 0 0 .424-.344 7.237 7.237 0 0 0-2.769-5.788C15.02 1.404 13.564.52 11.327.512zm4.94 8.362a14.8 14.8 0 0 0-2.515.26.364.364 0 0 0-.17.635l1.695 1.435a.36.36 0 0 0 .316.073 5.026 5.026 0 0 1 3.123.281c1.78.787 2.92 2.414 3.042 4.304.208 3.187-2.48 5.539-5.277 5.37a5.032 5.032 0 0 1-1.751-.412.365.365 0 0 0-.443.115c-.289.385-.603.75-.94 1.094a.367.367 0 0 0 .09.573c1.887 1.073 3.936 1.16 6.014.32 3.303-1.304 4.63-4.523 4.545-6.847-.096-2.641-1.48-5.072-4.085-6.402-.921-.47-2.04-.812-3.643-.799zm-12.931 1.2a.364.364 0 0 0-.152.052c-1.41.827-2.216 2.057-2.798 3.777-.285.892-.386 1.51-.386 2.436a7.276 7.276 0 0 0 7.157 7.141c1.129.017 2.104-.235 2.962-.583 1.45-.62 3.142-1.597 4.65-4.912a.363.363 0 0 0-.459-.489l-2.365.867a.357.357 0 0 0-.195.174 5.03 5.03 0 0 1-2.268 2.224C6 22.428 2.473 19.784 2.235 16.74c-.145-1.741.494-3.053 1.37-3.982.293-.308.41-.477.663-.662a.36.36 0 0 0 .098-.471 9.173 9.173 0 0 1-.653-1.326.366.366 0 0 0-.377-.225z" }) + ] + } + ); +}); + +exports.default = SiCountingworkspro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.d.ts new file mode 100644 index 000000000..06f040fcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E3084"; +declare const SiCountingworkspro: IconType; +export { SiCountingworkspro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.mjs new file mode 100644 index 000000000..bc4f9f18e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCountingworkspro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E3084"; +const SiCountingworkspro = React.forwardRef(function SiCountingworkspro2({ title = "CountingWorks PRO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.327.512c-3.806.034-7.447 3.19-7.181 7.75.102 1.547.88 3.382 2.981 5.733a.365.365 0 0 0 .635-.23l.053-2.266a.36.36 0 0 0-.1-.255 5.047 5.047 0 0 1 3.407-8.502c2.27-.104 4.011 1.236 4.753 2.744.34.693.527 1.45.55 2.222a.357.357 0 0 0 .343.344c.482.015.962.064 1.437.147a.359.359 0 0 0 .424-.344 7.237 7.237 0 0 0-2.769-5.788C15.02 1.404 13.564.52 11.327.512zm4.94 8.362a14.8 14.8 0 0 0-2.515.26.364.364 0 0 0-.17.635l1.695 1.435a.36.36 0 0 0 .316.073 5.026 5.026 0 0 1 3.123.281c1.78.787 2.92 2.414 3.042 4.304.208 3.187-2.48 5.539-5.277 5.37a5.032 5.032 0 0 1-1.751-.412.365.365 0 0 0-.443.115c-.289.385-.603.75-.94 1.094a.367.367 0 0 0 .09.573c1.887 1.073 3.936 1.16 6.014.32 3.303-1.304 4.63-4.523 4.545-6.847-.096-2.641-1.48-5.072-4.085-6.402-.921-.47-2.04-.812-3.643-.799zm-12.931 1.2a.364.364 0 0 0-.152.052c-1.41.827-2.216 2.057-2.798 3.777-.285.892-.386 1.51-.386 2.436a7.276 7.276 0 0 0 7.157 7.141c1.129.017 2.104-.235 2.962-.583 1.45-.62 3.142-1.597 4.65-4.912a.363.363 0 0 0-.459-.489l-2.365.867a.357.357 0 0 0-.195.174 5.03 5.03 0 0 1-2.268 2.224C6 22.428 2.473 19.784 2.235 16.74c-.145-1.741.494-3.053 1.37-3.982.293-.308.41-.477.663-.662a.36.36 0 0 0 .098-.471 9.173 9.173 0 0 1-.653-1.326.366.366 0 0 0-.377-.225z" }) + ] + } + ); +}); + +export { SiCountingworkspro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.cjs new file mode 100644 index 000000000..98f7a4b53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0056D2"; +const SiCoursera = React__namespace.forwardRef(function SiCoursera2({ title = "Coursera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.374 23.977c-4.183-.21-8.006-2.626-9.959-6.347-2.097-3.858-1.871-8.864.732-12.454C4.748 1.338 9.497-.698 14.281.23c4.583.857 8.351 4.494 9.358 8.911 1.122 4.344-.423 9.173-3.925 12.04-2.289 1.953-5.295 2.956-8.34 2.797zm7.705-8.05a588.737 588.737 0 0 0-3.171-1.887c-.903 1.483-2.885 2.248-4.57 1.665-2.024-.639-3.394-2.987-2.488-5.134.801-2.009 2.79-2.707 4.357-2.464a4.19 4.19 0 0 1 2.623 1.669c1.077-.631 2.128-1.218 3.173-1.855-2.03-3.118-6.151-4.294-9.656-2.754-3.13 1.423-4.89 4.68-4.388 7.919.54 3.598 3.73 6.486 7.716 6.404a7.664 7.664 0 0 0 6.404-3.563z" }) + ] + } + ); +}); + +exports.default = SiCoursera; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.d.ts new file mode 100644 index 000000000..64d8dc5cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0056D2"; +declare const SiCoursera: IconType; +export { SiCoursera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.mjs new file mode 100644 index 000000000..2133968f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoursera.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0056D2"; +const SiCoursera = React.forwardRef(function SiCoursera2({ title = "Coursera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.374 23.977c-4.183-.21-8.006-2.626-9.959-6.347-2.097-3.858-1.871-8.864.732-12.454C4.748 1.338 9.497-.698 14.281.23c4.583.857 8.351 4.494 9.358 8.911 1.122 4.344-.423 9.173-3.925 12.04-2.289 1.953-5.295 2.956-8.34 2.797zm7.705-8.05a588.737 588.737 0 0 0-3.171-1.887c-.903 1.483-2.885 2.248-4.57 1.665-2.024-.639-3.394-2.987-2.488-5.134.801-2.009 2.79-2.707 4.357-2.464a4.19 4.19 0 0 1 2.623 1.669c1.077-.631 2.128-1.218 3.173-1.855-2.03-3.118-6.151-4.294-9.656-2.754-3.13 1.423-4.89 4.68-4.388 7.919.54 3.598 3.73 6.486 7.716 6.404a7.664 7.664 0 0 0 6.404-3.563z" }) + ] + } + ); +}); + +export { SiCoursera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.cjs new file mode 100644 index 000000000..ad491200f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3F5767"; +const SiCoveralls = React__namespace.forwardRef(function SiCoveralls2({ title = "Coveralls", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12v12h24V0H0zm13.195-6.187l1.167 3.515 2.255.005c1.238.005 2.916.019 3.727.037l1.472.028-2.968 2.152c-1.63 1.181-2.976 2.18-2.99 2.212-.01.033.487 1.627 1.106 3.54.619 1.917 1.12 3.487 1.116 3.492-.005.01-1.35-.947-2.986-2.119-1.636-1.177-3-2.147-3.033-2.161-.028-.01-1.411.947-3.07 2.138-1.655 1.185-3.02 2.151-3.024 2.142-.004-.005.497-1.575 1.116-3.492.619-1.913 1.115-3.507 1.106-3.54-.014-.032-1.36-1.03-2.99-2.212L2.23 9.398l1.472-.028c.811-.018 2.49-.032 3.727-.037l2.254-.005 1.168-3.515a512.54 512.54 0 011.171-3.516c.005 0 .53 1.58 1.172 3.516z" }) + ] + } + ); +}); + +exports.default = SiCoveralls; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.d.ts new file mode 100644 index 000000000..71d415799 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3F5767"; +declare const SiCoveralls: IconType; +export { SiCoveralls as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.mjs new file mode 100644 index 000000000..d26bfce9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoveralls.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3F5767"; +const SiCoveralls = React.forwardRef(function SiCoveralls2({ title = "Coveralls", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12v12h24V0H0zm13.195-6.187l1.167 3.515 2.255.005c1.238.005 2.916.019 3.727.037l1.472.028-2.968 2.152c-1.63 1.181-2.976 2.18-2.99 2.212-.01.033.487 1.627 1.106 3.54.619 1.917 1.12 3.487 1.116 3.492-.005.01-1.35-.947-2.986-2.119-1.636-1.177-3-2.147-3.033-2.161-.028-.01-1.411.947-3.07 2.138-1.655 1.185-3.02 2.151-3.024 2.142-.004-.005.497-1.575 1.116-3.492.619-1.913 1.115-3.507 1.106-3.54-.014-.032-1.36-1.03-2.99-2.212L2.23 9.398l1.472-.028c.811-.018 2.49-.032 3.727-.037l2.254-.005 1.168-3.515a512.54 512.54 0 011.171-3.516c.005 0 .53 1.58 1.172 3.516z" }) + ] + } + ); +}); + +export { SiCoveralls as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.cjs new file mode 100644 index 000000000..8fa39ffb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4D53E8"; +const SiCoze = React__namespace.forwardRef(function SiCoze2({ title = "Coze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.366 12.096a.61.61 0 0 0-.608.608v1.218a.609.609 0 1 0 1.217 0v-1.218a.61.61 0 0 0-.609-.608m.8 3.453a.605.605 0 0 1 0-.86.605.605 0 0 1 .859 0 1.52 1.52 0 0 0 2.149 0 .605.605 0 0 1 .859 0 .605.605 0 0 1 0 .86 2.73 2.73 0 0 1-3.867 0m4.062-2.24a.61.61 0 1 1 .609.609.606.606 0 0 1-.61-.609zM3.023 0A3.024 3.024 0 0 0 0 3.023v17.954A3.024 3.024 0 0 0 3.023 24h17.954A3.024 3.024 0 0 0 24 20.977V3.023A3.024 3.024 0 0 0 20.977 0ZM12.1 3.78h.004a6.287 6.287 0 0 1 6.283 6.286v2.635h1.508c1.73 0 2.12 2.426.476 2.97l-1.984.663v1.137a1.513 1.513 0 0 1-2.19 1.353l-1.101-.549c-.052-.024-.115 0-.131.055-.892 2.785-4.835 2.785-5.727 0a.095.095 0 0 0-.13-.055l-1.102.55a1.513 1.513 0 0 1-2.19-1.354v-1.139l-1.984-.66c-1.647-.541-1.254-2.97.477-2.97h1.507v-2.636A6.285 6.285 0 0 1 12.1 3.78" }) + ] + } + ); +}); + +exports.default = SiCoze; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.d.ts new file mode 100644 index 000000000..5f1ebdc35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4D53E8"; +declare const SiCoze: IconType; +export { SiCoze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.mjs new file mode 100644 index 000000000..9d58e8351 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCoze.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4D53E8"; +const SiCoze = React.forwardRef(function SiCoze2({ title = "Coze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.366 12.096a.61.61 0 0 0-.608.608v1.218a.609.609 0 1 0 1.217 0v-1.218a.61.61 0 0 0-.609-.608m.8 3.453a.605.605 0 0 1 0-.86.605.605 0 0 1 .859 0 1.52 1.52 0 0 0 2.149 0 .605.605 0 0 1 .859 0 .605.605 0 0 1 0 .86 2.73 2.73 0 0 1-3.867 0m4.062-2.24a.61.61 0 1 1 .609.609.606.606 0 0 1-.61-.609zM3.023 0A3.024 3.024 0 0 0 0 3.023v17.954A3.024 3.024 0 0 0 3.023 24h17.954A3.024 3.024 0 0 0 24 20.977V3.023A3.024 3.024 0 0 0 20.977 0ZM12.1 3.78h.004a6.287 6.287 0 0 1 6.283 6.286v2.635h1.508c1.73 0 2.12 2.426.476 2.97l-1.984.663v1.137a1.513 1.513 0 0 1-2.19 1.353l-1.101-.549c-.052-.024-.115 0-.131.055-.892 2.785-4.835 2.785-5.727 0a.095.095 0 0 0-.13-.055l-1.102.55a1.513 1.513 0 0 1-2.19-1.354v-1.139l-1.984-.66c-1.647-.541-1.254-2.97.477-2.97h1.507v-2.636A6.285 6.285 0 0 1 12.1 3.78" }) + ] + } + ); +}); + +export { SiCoze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.cjs new file mode 100644 index 000000000..c55bcb57e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6C2C"; +const SiCpanel = React__namespace.forwardRef(function SiCpanel2({ title = "cPanel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.586 9.346a.538.538 0 00-.34.113.561.561 0 00-.197.299L2.74 14.654h.922a.528.528 0 00.332-.113.561.561 0 00.2-.291l.968-3.604h.744a.677.677 0 01.317.077.703.703 0 01.24.199.732.732 0 01.129.281.65.65 0 01-.01.326.698.698 0 01-.676.526h-.385a.538.538 0 00-.337.113.561.561 0 00-.2.291l-.24.896h1.201a1.939 1.939 0 001.62-.867 1.988 1.988 0 00.265-.586l.027-.1a1.854 1.854 0 00.026-.907 1.973 1.973 0 00-1.031-1.34 1.875 1.875 0 00-.88-.21H4.587zm18.447 0a.401.401 0 00-.25.082.377.377 0 00-.14.217l-1.334 5.01a1.7 1.7 0 00.57-.096 1.806 1.806 0 00.496-.266 1.74 1.74 0 00.385-.408 1.648 1.648 0 00.234-.531l.996-3.696a.23.23 0 00-.045-.217.246.246 0 00-.2-.095h-.712zM8.381 10.643l-.133.503a.564.564 0 00-.006.26.544.544 0 00.1.221.552.552 0 00.185.154.53.53 0 00.252.06h2.157a.101.101 0 01.084.038.098.098 0 01.015.088l-.02.072-.324 1.201-.013.055a.172.172 0 01-.067.105.205.205 0 01-.127.04H9.178a.147.147 0 01-.12-.057.136.136 0 01-.027-.13c.022-.074.071-.112.147-.112h.808a.53.53 0 00.332-.112.564.564 0 00.2-.293l.132-.498H8.84a1.131 1.131 0 00-.38.065 1.152 1.152 0 00-.323.176 1.194 1.194 0 00-.256.271 1.052 1.052 0 00-.156.346l-.028.1a1.095 1.095 0 00-.013.533 1.203 1.203 0 00.212.464 1.141 1.141 0 00.918.453l2.157.006a.899.899 0 00.875-.67l.525-1.95a1.101 1.101 0 00.01-.514 1.114 1.114 0 00-.205-.444 1.149 1.149 0 00-.377-.312 1.048 1.048 0 00-.498-.12H8.38zm-6.397.01a1.924 1.924 0 00-.638.107 1.989 1.989 0 00-.553.295 1.962 1.962 0 00-.7 1.045l-.027.1a1.936 1.936 0 00-.023.905 1.955 1.955 0 00.361.786 1.986 1.986 0 00.668.554 1.875 1.875 0 00.88.21h.464l.266-.983a.23.23 0 00-.043-.215.239.239 0 00-.198-.096h-.423a.702.702 0 01-.319-.074.67.67 0 01-.24-.195.732.732 0 01-.127-.281.706.706 0 01.01-.34.73.73 0 01.256-.377.675.675 0 01.42-.14h.697a.538.538 0 00.338-.114.561.561 0 00.199-.297l.232-.89h-1.5zm11.08 0l-.982 3.689a.23.23 0 00.045.217.238.238 0 00.195.095h.711a.413.413 0 00.248-.08.363.363 0 00.143-.21l.644-2.41h.745a.678.678 0 01.318.075.708.708 0 01.238.2.735.735 0 01.129.28.65.65 0 01-.01.327l-.398 1.506a.243.243 0 00.24.312h.713a.403.403 0 00.244-.08.366.366 0 00.143-.213l.332-1.248a1.897 1.897 0 00.029-.908 1.955 1.955 0 00-.361-.79 1.987 1.987 0 00-.668-.554 1.889 1.889 0 00-.885-.209h-1.813zm5.793 0a1.458 1.458 0 00-.488.081 1.489 1.489 0 00-.752.58 1.493 1.493 0 00-.205.454l-.406 1.505a1.018 1.018 0 00-.016.508 1.139 1.139 0 00.205.446 1.095 1.095 0 00.377.312 1.071 1.071 0 00.498.115h2.502a.528.528 0 00.332-.113.561.561 0 00.2-.291l.21-.791h-2.748a.2.2 0 01-.191-.252l.299-1.127a.34.34 0 01.113-.162.281.281 0 01.18-.064h1.232a.153.153 0 01.147.193l-.026.1c-.022.075-.071.113-.146.113h-.81a.538.538 0 00-.339.111.526.526 0 00-.191.293l-.133.49h2.004a.887.887 0 00.547-.181.864.864 0 00.32-.483l.12-.45a1.11 1.11 0 00.013-.513 1.076 1.076 0 00-.203-.443 1.146 1.146 0 00-.375-.313 1.047 1.047 0 00-.498-.119h-1.772Z" }) + ] + } + ); +}); + +exports.default = SiCpanel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.d.ts new file mode 100644 index 000000000..528360fb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6C2C"; +declare const SiCpanel: IconType; +export { SiCpanel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.mjs new file mode 100644 index 000000000..0ebe749ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCpanel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6C2C"; +const SiCpanel = React.forwardRef(function SiCpanel2({ title = "cPanel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.586 9.346a.538.538 0 00-.34.113.561.561 0 00-.197.299L2.74 14.654h.922a.528.528 0 00.332-.113.561.561 0 00.2-.291l.968-3.604h.744a.677.677 0 01.317.077.703.703 0 01.24.199.732.732 0 01.129.281.65.65 0 01-.01.326.698.698 0 01-.676.526h-.385a.538.538 0 00-.337.113.561.561 0 00-.2.291l-.24.896h1.201a1.939 1.939 0 001.62-.867 1.988 1.988 0 00.265-.586l.027-.1a1.854 1.854 0 00.026-.907 1.973 1.973 0 00-1.031-1.34 1.875 1.875 0 00-.88-.21H4.587zm18.447 0a.401.401 0 00-.25.082.377.377 0 00-.14.217l-1.334 5.01a1.7 1.7 0 00.57-.096 1.806 1.806 0 00.496-.266 1.74 1.74 0 00.385-.408 1.648 1.648 0 00.234-.531l.996-3.696a.23.23 0 00-.045-.217.246.246 0 00-.2-.095h-.712zM8.381 10.643l-.133.503a.564.564 0 00-.006.26.544.544 0 00.1.221.552.552 0 00.185.154.53.53 0 00.252.06h2.157a.101.101 0 01.084.038.098.098 0 01.015.088l-.02.072-.324 1.201-.013.055a.172.172 0 01-.067.105.205.205 0 01-.127.04H9.178a.147.147 0 01-.12-.057.136.136 0 01-.027-.13c.022-.074.071-.112.147-.112h.808a.53.53 0 00.332-.112.564.564 0 00.2-.293l.132-.498H8.84a1.131 1.131 0 00-.38.065 1.152 1.152 0 00-.323.176 1.194 1.194 0 00-.256.271 1.052 1.052 0 00-.156.346l-.028.1a1.095 1.095 0 00-.013.533 1.203 1.203 0 00.212.464 1.141 1.141 0 00.918.453l2.157.006a.899.899 0 00.875-.67l.525-1.95a1.101 1.101 0 00.01-.514 1.114 1.114 0 00-.205-.444 1.149 1.149 0 00-.377-.312 1.048 1.048 0 00-.498-.12H8.38zm-6.397.01a1.924 1.924 0 00-.638.107 1.989 1.989 0 00-.553.295 1.962 1.962 0 00-.7 1.045l-.027.1a1.936 1.936 0 00-.023.905 1.955 1.955 0 00.361.786 1.986 1.986 0 00.668.554 1.875 1.875 0 00.88.21h.464l.266-.983a.23.23 0 00-.043-.215.239.239 0 00-.198-.096h-.423a.702.702 0 01-.319-.074.67.67 0 01-.24-.195.732.732 0 01-.127-.281.706.706 0 01.01-.34.73.73 0 01.256-.377.675.675 0 01.42-.14h.697a.538.538 0 00.338-.114.561.561 0 00.199-.297l.232-.89h-1.5zm11.08 0l-.982 3.689a.23.23 0 00.045.217.238.238 0 00.195.095h.711a.413.413 0 00.248-.08.363.363 0 00.143-.21l.644-2.41h.745a.678.678 0 01.318.075.708.708 0 01.238.2.735.735 0 01.129.28.65.65 0 01-.01.327l-.398 1.506a.243.243 0 00.24.312h.713a.403.403 0 00.244-.08.366.366 0 00.143-.213l.332-1.248a1.897 1.897 0 00.029-.908 1.955 1.955 0 00-.361-.79 1.987 1.987 0 00-.668-.554 1.889 1.889 0 00-.885-.209h-1.813zm5.793 0a1.458 1.458 0 00-.488.081 1.489 1.489 0 00-.752.58 1.493 1.493 0 00-.205.454l-.406 1.505a1.018 1.018 0 00-.016.508 1.139 1.139 0 00.205.446 1.095 1.095 0 00.377.312 1.071 1.071 0 00.498.115h2.502a.528.528 0 00.332-.113.561.561 0 00.2-.291l.21-.791h-2.748a.2.2 0 01-.191-.252l.299-1.127a.34.34 0 01.113-.162.281.281 0 01.18-.064h1.232a.153.153 0 01.147.193l-.026.1c-.022.075-.071.113-.146.113h-.81a.538.538 0 00-.339.111.526.526 0 00-.191.293l-.133.49h2.004a.887.887 0 00.547-.181.864.864 0 00.32-.483l.12-.45a1.11 1.11 0 00.013-.513 1.076 1.076 0 00-.203-.443 1.146 1.146 0 00-.375-.313 1.047 1.047 0 00-.498-.119h-1.772Z" }) + ] + } + ); +}); + +export { SiCpanel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.cjs new file mode 100644 index 000000000..8f8b95698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00599C"; +const SiCplusplus = React__namespace.forwardRef(function SiCplusplus2({ title = "C++", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.394 6c-.167-.29-.398-.543-.652-.69L12.926.22c-.509-.294-1.34-.294-1.848 0L2.26 5.31c-.508.293-.923 1.013-.923 1.6v10.18c0 .294.104.62.271.91.167.29.398.543.652.69l8.816 5.09c.508.293 1.34.293 1.848 0l8.816-5.09c.254-.147.485-.4.652-.69.167-.29.27-.616.27-.91V6.91c.003-.294-.1-.62-.268-.91zM12 19.11c-3.92 0-7.109-3.19-7.109-7.11 0-3.92 3.19-7.11 7.11-7.11a7.133 7.133 0 016.156 3.553l-3.076 1.78a3.567 3.567 0 00-3.08-1.78A3.56 3.56 0 008.444 12 3.56 3.56 0 0012 15.555a3.57 3.57 0 003.08-1.778l3.078 1.78A7.135 7.135 0 0112 19.11zm7.11-6.715h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79zm2.962 0h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79z" }) + ] + } + ); +}); + +exports.default = SiCplusplus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.d.ts new file mode 100644 index 000000000..98d741b2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00599C"; +declare const SiCplusplus: IconType; +export { SiCplusplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.mjs new file mode 100644 index 000000000..9a01038fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00599C"; +const SiCplusplus = React.forwardRef(function SiCplusplus2({ title = "C++", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.394 6c-.167-.29-.398-.543-.652-.69L12.926.22c-.509-.294-1.34-.294-1.848 0L2.26 5.31c-.508.293-.923 1.013-.923 1.6v10.18c0 .294.104.62.271.91.167.29.398.543.652.69l8.816 5.09c.508.293 1.34.293 1.848 0l8.816-5.09c.254-.147.485-.4.652-.69.167-.29.27-.616.27-.91V6.91c.003-.294-.1-.62-.268-.91zM12 19.11c-3.92 0-7.109-3.19-7.109-7.11 0-3.92 3.19-7.11 7.11-7.11a7.133 7.133 0 016.156 3.553l-3.076 1.78a3.567 3.567 0 00-3.08-1.78A3.56 3.56 0 008.444 12 3.56 3.56 0 0012 15.555a3.57 3.57 0 003.08-1.778l3.078 1.78A7.135 7.135 0 0112 19.11zm7.11-6.715h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79zm2.962 0h-.79v.79h-.79v-.79h-.79v-.79h.79v-.79h.79v.79h.79z" }) + ] + } + ); +}); + +export { SiCplusplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.cjs new file mode 100644 index 000000000..c00d421bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E62431"; +const SiCplusplusbuilder = React__namespace.forwardRef(function SiCplusplusbuilder2({ title = "C++ Builder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9221 10.6596a11.8831 11.8831 0 0 0-.4604-2.2096 11.9248 11.9248 0 0 0-1.4694-3.0894 12.0016 12.0016 0 0 0-1.362-1.6917 11.9932 11.9932 0 0 0-3.016-2.2728 11.8487 11.8487 0 0 0-2.343-.9408A11.9156 11.9156 0 0 0 13.784.1352c-.462-.069-.9264-.1143-1.3937-.1243-.2363-.0051-.4732-.015-.709-.0041-.345.0158-.6907.0358-1.0333.077-.3853.0465-.7695.108-1.1504.1822-.5005.0975-.9894.2413-1.4707.4106C6.7778 1.116 5.633 1.745 4.5914 2.5627c-.4064.319-.7914.6619-1.1528 1.0307-.8094.8259-1.4886 1.748-2.0328 2.7688A11.9101 11.9101 0 0 0 .3947 8.9406c-.138.5238-.24 1.0545-.3055 1.5918-.0521.4286-.0804.859-.0876 1.2911a11.9165 11.9165 0 0 0 .0733 1.5263c.1376 1.2294.457 2.4101.9616 3.5401.5362 1.2003 1.2507 2.2836 2.1417 3.2497a11.9821 11.9821 0 0 0 2.9132 2.3115c.7261.4119 1.487.7436 2.2824.996.587.1865 1.1853.325 1.7943.4176.4813.0731.965.1188 1.4517.1334.0129.0004.8185-.0023.8686-.0043a12.0986 12.0986 0 0 0 1.5428-.1622c1.0769-.1821 2.1083-.5084 3.095-.9755 1.1356-.5374 2.1613-1.2374 3.0778-2.0967.9794-.9184 1.783-1.972 2.4107-3.1587.3707-.701.6675-1.4324.892-2.1936.162-.5497.29-1.107.3642-1.6746.0531-.4062.0874-.8155.1126-1.2246.0382-.6173.007-1.234-.0614-1.8483zm-5.83 7.5555c-.0433.2755-.1638.4786-.3244.7057-.1733.2452-.418.4183-.6565.5938-1.0293.758-2.411 1.342-3.6686 1.562-.4691.0821-2.9556.5044-5.3987-.692-1.1166-.5467-2.1688-1.337-2.987-2.2752-1.7593-2.0173-2.5604-4.628-2.2169-7.2537.3343-2.5551 1.7631-4.899 3.8588-6.3864 1.043-.7402 2.1724-1.2259 3.425-1.4724.6468-.1273 1.2975-.1739 1.9552-.1628.6693.0113 1.3357.1154 1.9852.2748.6248.1533 1.2305.3938 1.8061.6802.565.281 1.1685.6343 1.642 1.0556.449.3995.6651.9725.5918 1.5718-.0875.7152-.4475 1.1208-.9671 1.3602-.5055.233-1.1306.1911-1.5974-.1154-.2586-.1698-.4842-.3852-.7469-.5515-.2645-.1674-.5457-.2916-.834-.412-.607-.2537-1.2132-.359-1.8649-.3988-.6248-.0383-1.3603.0714-1.9586.258-1.207.3763-2.2592 1.0995-2.9727 2.1539-.7201 1.064-1.1075 2.3223-1.0308 3.6091.0745 1.2505.5554 2.4937 1.3412 3.4437.789.954 1.9214 1.5926 3.108 1.853 1.2702.279 2.6128.1413 3.7748-.4577.2829-.1458.5538-.2983.807-.492.2379-.182.4583-.363.7502-.4498.5772-.1716 1.2242-.0326 1.6698.3675.4274.3838.5974 1.07.5094 1.6304zm-7.3213-5.0234h-1.797c-.26 0-.4154-.1547-.4157-.4152a457.1574 457.1574 0 0 1 0-1.0488c.0002-.2555.1558-.4112.4135-.4118.3824-.0008.7649-.0002 1.1473-.0002h.7211V9.4452c0-.2565.155-.413.4116-.4136a331.056 331.056 0 0 1 1.0536 0c.2515.0002.4082.1563.4087.4106.001.541.0003 1.082.0003 1.623v.2505h1.8595c.2674 0 .4218.1533.4223.421.0008.3497.0007.6993 0 1.0489-.0004.2483-.1575.4055-.4075.4059-.599.0008-1.198.0002-1.797.0002h-.0773v1.8648c0 .2634-.154.4186-.4182.4193-.3492.0009-.6985.0006-1.0477 0-.2516-.0003-.4079-.1575-.4081-.4113-.0006-.5996-.0002-1.1992-.0002-1.7988v-.074h-.0692zm12.1067-.4061c-.0004.2483-.1576.4055-.4076.4059-.599.0008-1.198.0002-1.797.0002h-.0773v1.8648c0 .2634-.154.4186-.4182.4193-.3492.0009-.6985.0006-1.0477 0-.2515-.0003-.4078-.1575-.408-.4113-.0006-.5996-.0002-1.1992-.0002-1.7988v-.074h-1.8663c-.26 0-.4153-.1547-.4157-.4152a456.645 456.645 0 0 1 0-1.0488c.0002-.2555.1559-.4112.4136-.4118.3824-.0008.7648-.0002 1.1472-.0002h.7212V9.4452c0-.2565.155-.413.4115-.4136.3512-.0008.7024-.0004 1.0536 0 .2516.0002.4082.1563.4087.4106.001.541.0003 1.082.0003 1.623v.2505h1.8596c.2673 0 .4217.1533.4223.421.0007.3497.0007.6993 0 1.0489z" }) + ] + } + ); +}); + +exports.default = SiCplusplusbuilder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.d.ts new file mode 100644 index 000000000..46476ca73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E62431"; +declare const SiCplusplusbuilder: IconType; +export { SiCplusplusbuilder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.mjs new file mode 100644 index 000000000..6a57e31fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCplusplusbuilder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E62431"; +const SiCplusplusbuilder = React.forwardRef(function SiCplusplusbuilder2({ title = "C++ Builder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9221 10.6596a11.8831 11.8831 0 0 0-.4604-2.2096 11.9248 11.9248 0 0 0-1.4694-3.0894 12.0016 12.0016 0 0 0-1.362-1.6917 11.9932 11.9932 0 0 0-3.016-2.2728 11.8487 11.8487 0 0 0-2.343-.9408A11.9156 11.9156 0 0 0 13.784.1352c-.462-.069-.9264-.1143-1.3937-.1243-.2363-.0051-.4732-.015-.709-.0041-.345.0158-.6907.0358-1.0333.077-.3853.0465-.7695.108-1.1504.1822-.5005.0975-.9894.2413-1.4707.4106C6.7778 1.116 5.633 1.745 4.5914 2.5627c-.4064.319-.7914.6619-1.1528 1.0307-.8094.8259-1.4886 1.748-2.0328 2.7688A11.9101 11.9101 0 0 0 .3947 8.9406c-.138.5238-.24 1.0545-.3055 1.5918-.0521.4286-.0804.859-.0876 1.2911a11.9165 11.9165 0 0 0 .0733 1.5263c.1376 1.2294.457 2.4101.9616 3.5401.5362 1.2003 1.2507 2.2836 2.1417 3.2497a11.9821 11.9821 0 0 0 2.9132 2.3115c.7261.4119 1.487.7436 2.2824.996.587.1865 1.1853.325 1.7943.4176.4813.0731.965.1188 1.4517.1334.0129.0004.8185-.0023.8686-.0043a12.0986 12.0986 0 0 0 1.5428-.1622c1.0769-.1821 2.1083-.5084 3.095-.9755 1.1356-.5374 2.1613-1.2374 3.0778-2.0967.9794-.9184 1.783-1.972 2.4107-3.1587.3707-.701.6675-1.4324.892-2.1936.162-.5497.29-1.107.3642-1.6746.0531-.4062.0874-.8155.1126-1.2246.0382-.6173.007-1.234-.0614-1.8483zm-5.83 7.5555c-.0433.2755-.1638.4786-.3244.7057-.1733.2452-.418.4183-.6565.5938-1.0293.758-2.411 1.342-3.6686 1.562-.4691.0821-2.9556.5044-5.3987-.692-1.1166-.5467-2.1688-1.337-2.987-2.2752-1.7593-2.0173-2.5604-4.628-2.2169-7.2537.3343-2.5551 1.7631-4.899 3.8588-6.3864 1.043-.7402 2.1724-1.2259 3.425-1.4724.6468-.1273 1.2975-.1739 1.9552-.1628.6693.0113 1.3357.1154 1.9852.2748.6248.1533 1.2305.3938 1.8061.6802.565.281 1.1685.6343 1.642 1.0556.449.3995.6651.9725.5918 1.5718-.0875.7152-.4475 1.1208-.9671 1.3602-.5055.233-1.1306.1911-1.5974-.1154-.2586-.1698-.4842-.3852-.7469-.5515-.2645-.1674-.5457-.2916-.834-.412-.607-.2537-1.2132-.359-1.8649-.3988-.6248-.0383-1.3603.0714-1.9586.258-1.207.3763-2.2592 1.0995-2.9727 2.1539-.7201 1.064-1.1075 2.3223-1.0308 3.6091.0745 1.2505.5554 2.4937 1.3412 3.4437.789.954 1.9214 1.5926 3.108 1.853 1.2702.279 2.6128.1413 3.7748-.4577.2829-.1458.5538-.2983.807-.492.2379-.182.4583-.363.7502-.4498.5772-.1716 1.2242-.0326 1.6698.3675.4274.3838.5974 1.07.5094 1.6304zm-7.3213-5.0234h-1.797c-.26 0-.4154-.1547-.4157-.4152a457.1574 457.1574 0 0 1 0-1.0488c.0002-.2555.1558-.4112.4135-.4118.3824-.0008.7649-.0002 1.1473-.0002h.7211V9.4452c0-.2565.155-.413.4116-.4136a331.056 331.056 0 0 1 1.0536 0c.2515.0002.4082.1563.4087.4106.001.541.0003 1.082.0003 1.623v.2505h1.8595c.2674 0 .4218.1533.4223.421.0008.3497.0007.6993 0 1.0489-.0004.2483-.1575.4055-.4075.4059-.599.0008-1.198.0002-1.797.0002h-.0773v1.8648c0 .2634-.154.4186-.4182.4193-.3492.0009-.6985.0006-1.0477 0-.2516-.0003-.4079-.1575-.4081-.4113-.0006-.5996-.0002-1.1992-.0002-1.7988v-.074h-.0692zm12.1067-.4061c-.0004.2483-.1576.4055-.4076.4059-.599.0008-1.198.0002-1.797.0002h-.0773v1.8648c0 .2634-.154.4186-.4182.4193-.3492.0009-.6985.0006-1.0477 0-.2515-.0003-.4078-.1575-.408-.4113-.0006-.5996-.0002-1.1992-.0002-1.7988v-.074h-1.8663c-.26 0-.4153-.1547-.4157-.4152a456.645 456.645 0 0 1 0-1.0488c.0002-.2555.1559-.4112.4136-.4118.3824-.0008.7648-.0002 1.1472-.0002h.7212V9.4452c0-.2565.155-.413.4115-.4136.3512-.0008.7024-.0004 1.0536 0 .2516.0002.4082.1563.4087.4106.001.541.0003 1.082.0003 1.623v.2505h1.8596c.2673 0 .4217.1533.4223.421.0007.3497.0007.6993 0 1.0489z" }) + ] + } + ); +}); + +export { SiCplusplusbuilder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.cjs new file mode 100644 index 000000000..5a1eb151c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E5422B"; +const SiCraftcms = React__namespace.forwardRef(function SiCraftcms2({ title = "Craft CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.474 0H2.526A2.516 2.516 0 0 0 0 2.526v18.948A2.516 2.516 0 0 0 2.526 24h18.948A2.534 2.534 0 0 0 24 21.474V2.526A2.516 2.516 0 0 0 21.474 0m-9.516 14.625c.786 0 1.628-.31 2.442-1.039l1.123 1.291c-1.18.955-2.527 1.488-3.874 1.488-2.667 0-4.35-1.769-3.958-4.267.393-2.498 2.667-4.266 5.334-4.266 1.29 0 2.498.505 3.34 1.431l-1.572 1.291c-.45-.59-1.207-.982-2.05-.982-1.6 0-2.834 1.039-3.087 2.526-.224 1.488.674 2.527 2.302 2.527" }) + ] + } + ); +}); + +exports.default = SiCraftcms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.d.ts new file mode 100644 index 000000000..7a418ff35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E5422B"; +declare const SiCraftcms: IconType; +export { SiCraftcms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.mjs new file mode 100644 index 000000000..35d2bf486 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftcms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E5422B"; +const SiCraftcms = React.forwardRef(function SiCraftcms2({ title = "Craft CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.474 0H2.526A2.516 2.516 0 0 0 0 2.526v18.948A2.516 2.516 0 0 0 2.526 24h18.948A2.534 2.534 0 0 0 24 21.474V2.526A2.516 2.516 0 0 0 21.474 0m-9.516 14.625c.786 0 1.628-.31 2.442-1.039l1.123 1.291c-1.18.955-2.527 1.488-3.874 1.488-2.667 0-4.35-1.769-3.958-4.267.393-2.498 2.667-4.266 5.334-4.266 1.29 0 2.498.505 3.34 1.431l-1.572 1.291c-.45-.59-1.207-.982-2.05-.982-1.6 0-2.834 1.039-3.087 2.526-.224 1.488.674 2.527 2.302 2.527" }) + ] + } + ); +}); + +export { SiCraftcms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.cjs new file mode 100644 index 000000000..120f34354 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D6001C"; +const SiCraftsman = React__namespace.forwardRef(function SiCraftsman2({ title = "Craftsman", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.428 9.572v4.899h23.144V9.572Zm1.543 1.143h.172l.886.014v.572h-.744v1.484h.744v.572H1.971l-.371-.37v-1.901zm1.7 0h1.243l.47.314v.985l-.37.244.601 1.086h-.73l-.528-.973v.973h-.685Zm2.815 0H7.5l.357.314v2.315h-.615v-.873h-.484v.873h-.63v-2.315zm2.07 0h1.329v.613H9.27v.516h.543v.57h-.543v.93h-.714Zm1.944 0h1.686l-.2.629h-.443v2h-.672v-2h-.57zm2.1 0h1.556l-.17.613h-.843l1.029 1.414-.201.615h-1.713l.185-.586h.942l-.942-1.386zm2.1 0h.814l.414.97.4-.97h.815v2.613h-.672v-1.57l-.399.957h-.3l-.4-.944v1.573h-.673zm3.571 0h1.014l.358.314v2.315h-.63v-.873h-.484v.873h-.615v-2.315zm2.057 0h.629l.615 1.414v-1.414h.627v2.629h-.627l-.615-1.416v1.416h-.629zm-13.586.556v.614h.487v-.614zm11.787 0v.614h.485v-.614zm-14.172.014v.572h.358v-.572ZM0 9.143h24v5.714H0Z" }) + ] + } + ); +}); + +exports.default = SiCraftsman; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.d.ts new file mode 100644 index 000000000..014c4d6a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D6001C"; +declare const SiCraftsman: IconType; +export { SiCraftsman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.mjs new file mode 100644 index 000000000..1d1c7b10d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCraftsman.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D6001C"; +const SiCraftsman = React.forwardRef(function SiCraftsman2({ title = "Craftsman", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.428 9.572v4.899h23.144V9.572Zm1.543 1.143h.172l.886.014v.572h-.744v1.484h.744v.572H1.971l-.371-.37v-1.901zm1.7 0h1.243l.47.314v.985l-.37.244.601 1.086h-.73l-.528-.973v.973h-.685Zm2.815 0H7.5l.357.314v2.315h-.615v-.873h-.484v.873h-.63v-2.315zm2.07 0h1.329v.613H9.27v.516h.543v.57h-.543v.93h-.714Zm1.944 0h1.686l-.2.629h-.443v2h-.672v-2h-.57zm2.1 0h1.556l-.17.613h-.843l1.029 1.414-.201.615h-1.713l.185-.586h.942l-.942-1.386zm2.1 0h.814l.414.97.4-.97h.815v2.613h-.672v-1.57l-.399.957h-.3l-.4-.944v1.573h-.673zm3.571 0h1.014l.358.314v2.315h-.63v-.873h-.484v.873h-.615v-2.315zm2.057 0h.629l.615 1.414v-1.414h.627v2.629h-.627l-.615-1.416v1.416h-.629zm-13.586.556v.614h.487v-.614zm11.787 0v.614h.485v-.614zm-14.172.014v.572h.358v-.572ZM0 9.143h24v5.714H0Z" }) + ] + } + ); +}); + +export { SiCraftsman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.cjs new file mode 100644 index 000000000..b696ef739 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009DC7"; +const SiCratedb = React__namespace.forwardRef(function SiCratedb2({ title = "CrateDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 9V3h-6v6H0v6h6v6h6v-6h12V9h-6z" }) + ] + } + ); +}); + +exports.default = SiCratedb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.d.ts new file mode 100644 index 000000000..abba794fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009DC7"; +declare const SiCratedb: IconType; +export { SiCratedb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.mjs new file mode 100644 index 000000000..7d75146ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCratedb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009DC7"; +const SiCratedb = React.forwardRef(function SiCratedb2({ title = "CrateDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18 9V3h-6v6H0v6h6v6h6v-6h12V9h-6z" }) + ] + } + ); +}); + +export { SiCratedb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.cjs new file mode 100644 index 000000000..6de708cf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6A4C"; +const SiCrayon = React__namespace.forwardRef(function SiCrayon2({ title = "Crayon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.9485 16.5624C3.1842 17.7981 4.8 18.4159 6.416 18.4159c1.6158 0 3.2317-.6179 4.4673-1.8535l5.798-5.798-1.4257-1.4258-5.798 5.7505c-1.6634 1.6634-4.3723 1.6634-6.0832 0l-.095-.095c-1.6635-1.6634-1.6635-4.3723 0-6.0832l.095-.095c1.6633-1.6635 4.3723-1.6635 6.0832 0l.4752.5227 1.4258-1.4258-.4753-.5227c-2.4713-2.4713-6.5109-2.4713-8.9822 0l-.0475.1425c-2.4713 2.4713-2.4713 6.511 0 8.9823zm20.0556-9.1248c-1.2357-1.2357-2.8515-1.8535-4.4674-1.8535-1.6158 0-3.2317.6179-4.4673 1.8535l-5.798 5.798 1.4257 1.4258 5.798-5.7505c1.6634-1.6634 4.3723-1.6634 6.0832 0l.095.095c1.6634 1.6634 1.6634 4.3723 0 6.0832l-.095.095c-1.6633 1.6635-4.3723 1.6635-6.0832 0l-.4752-.4752-1.4258 1.4258.4753.4752c2.4713 2.4713 6.5109 2.4713 8.9822 0l.095-.095c2.4713-2.4713 2.4713-6.511 0-8.9823-.0475 0-.1425-.095-.1425-.095z" }) + ] + } + ); +}); + +exports.default = SiCrayon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.d.ts new file mode 100644 index 000000000..d02cc05cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6A4C"; +declare const SiCrayon: IconType; +export { SiCrayon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.mjs new file mode 100644 index 000000000..c0d565ec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrayon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6A4C"; +const SiCrayon = React.forwardRef(function SiCrayon2({ title = "Crayon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.9485 16.5624C3.1842 17.7981 4.8 18.4159 6.416 18.4159c1.6158 0 3.2317-.6179 4.4673-1.8535l5.798-5.798-1.4257-1.4258-5.798 5.7505c-1.6634 1.6634-4.3723 1.6634-6.0832 0l-.095-.095c-1.6635-1.6634-1.6635-4.3723 0-6.0832l.095-.095c1.6633-1.6635 4.3723-1.6635 6.0832 0l.4752.5227 1.4258-1.4258-.4753-.5227c-2.4713-2.4713-6.5109-2.4713-8.9822 0l-.0475.1425c-2.4713 2.4713-2.4713 6.511 0 8.9823zm20.0556-9.1248c-1.2357-1.2357-2.8515-1.8535-4.4674-1.8535-1.6158 0-3.2317.6179-4.4673 1.8535l-5.798 5.798 1.4257 1.4258 5.798-5.7505c1.6634-1.6634 4.3723-1.6634 6.0832 0l.095.095c1.6634 1.6634 1.6634 4.3723 0 6.0832l-.095.095c-1.6633 1.6635-4.3723 1.6635-6.0832 0l-.4752-.4752-1.4258 1.4258.4753.4752c2.4713 2.4713 6.5109 2.4713 8.9822 0l.095-.095c2.4713-2.4713 2.4713-6.511 0-8.9823-.0475 0-.1425-.095-.1425-.095z" }) + ] + } + ); +}); + +export { SiCrayon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.cjs new file mode 100644 index 000000000..b66394fd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCreality = React__namespace.forwardRef(function SiCreality2({ title = "Creality", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.215 10.33-1.772.01c-.785.029-1.42.737-1.443 1.613v.088c.018.903.69 1.629 1.51 1.629h1.705c.01 0 .02-.011.02-.024v-.603a.022.022 0 0 0-.02-.022H1.508c-.501 0-.92-.443-.928-1.001-.007-.569.405-1.034.912-1.034l1.723-.007c.01 0 .02-.01.02-.022v-.603c0-.013-.01-.024-.02-.024zm.412 0c-.011 0-.02.011-.02.024v3.292c0 .013.009.024.02.024h.54c.012 0 .02-.011.02-.024V11c0-.012.009-.021.02-.021h1.606c.168 0 .314.145.32.333.006.198-.137.36-.313.36l-1.533.002c-.018 0-.028.023-.016.037l1.75 1.95c.004.005.009.009.014.009H6.8c.017 0 .026-.025.014-.04L5.64 12.32h.183c.496 0 .898-.454.89-1.01-.006-.546-.416-.98-.905-.98h-2.18Zm4.873 0c-.827 0-1.5.75-1.5 1.67 0 .92.673 1.67 1.5 1.67h1.68c.01 0 .02-.011.02-.024v-.603c0-.012-.01-.022-.02-.022H8.5c-.404 0-.75-.292-.871-.697h2.55c.012 0 .02-.01.02-.023v-.604c0-.012-.008-.021-.02-.021h-2.55c.123-.405.468-.697.872-.697h1.68c.01 0 .02-.012.02-.024v-.601c0-.013-.01-.024-.02-.024zm3.709 0c-.013 0-.026.009-.033.024l-1.7 3.28c-.007.016 0 .036.016.036h.625a.02.02 0 0 0 .018-.012l1.056-2.045a.02.02 0 0 1 .036 0l.71 1.375c.008.015-.002.033-.017.033h-.928c-.007 0-.012.005-.015.012l-.313.602c-.008.015.002.033.018.033h2.242c.015 0 .025-.018.017-.033l-1.697-3.281a.041.041 0 0 0-.035-.024zm2.03.002c-.01 0-.02.01-.02.022v2.94c0 .207.15.376.336.376h2.148c.01 0 .022-.011.022-.024v-.603a.022.022 0 0 0-.022-.022H14.82A.022.022 0 0 1 14.8 13v-2.646c0-.013-.01-.022-.02-.022h-.54zm2.84 0c-.01 0-.02.01-.02.022v3.292c0 .013.01.024.02.024h.542c.01 0 .02-.011.02-.024v-3.292c0-.013-.01-.022-.02-.022h-.54zm.85 0c-.01 0-.02.01-.02.022v.601c0 .012.01.024.02.024h1.169c.01 0 .02.009.02.021v2.646c0 .013.01.022.02.022h.54c.01 0 .02-.01.02-.022V11a.02.02 0 0 1 .02-.021h1.172a.02.02 0 0 1 .015.007l1.018 1.354a.02.02 0 0 1 .004.014v1.292c0 .013.008.024.02.024h.54c.011 0 .02-.011.02-.024v-1.292c0-.006.003-.01.006-.014l1.482-1.97c.011-.016.001-.038-.016-.038h-.705a.02.02 0 0 0-.015.008l-1.026 1.363a.02.02 0 0 1-.03 0l-1.026-1.363a.02.02 0 0 0-.016-.008z" }) + ] + } + ); +}); + +exports.default = SiCreality; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.d.ts new file mode 100644 index 000000000..e8d0c6396 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCreality: IconType; +export { SiCreality as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.mjs new file mode 100644 index 000000000..4e6a22470 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreality.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCreality = React.forwardRef(function SiCreality2({ title = "Creality", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.215 10.33-1.772.01c-.785.029-1.42.737-1.443 1.613v.088c.018.903.69 1.629 1.51 1.629h1.705c.01 0 .02-.011.02-.024v-.603a.022.022 0 0 0-.02-.022H1.508c-.501 0-.92-.443-.928-1.001-.007-.569.405-1.034.912-1.034l1.723-.007c.01 0 .02-.01.02-.022v-.603c0-.013-.01-.024-.02-.024zm.412 0c-.011 0-.02.011-.02.024v3.292c0 .013.009.024.02.024h.54c.012 0 .02-.011.02-.024V11c0-.012.009-.021.02-.021h1.606c.168 0 .314.145.32.333.006.198-.137.36-.313.36l-1.533.002c-.018 0-.028.023-.016.037l1.75 1.95c.004.005.009.009.014.009H6.8c.017 0 .026-.025.014-.04L5.64 12.32h.183c.496 0 .898-.454.89-1.01-.006-.546-.416-.98-.905-.98h-2.18Zm4.873 0c-.827 0-1.5.75-1.5 1.67 0 .92.673 1.67 1.5 1.67h1.68c.01 0 .02-.011.02-.024v-.603c0-.012-.01-.022-.02-.022H8.5c-.404 0-.75-.292-.871-.697h2.55c.012 0 .02-.01.02-.023v-.604c0-.012-.008-.021-.02-.021h-2.55c.123-.405.468-.697.872-.697h1.68c.01 0 .02-.012.02-.024v-.601c0-.013-.01-.024-.02-.024zm3.709 0c-.013 0-.026.009-.033.024l-1.7 3.28c-.007.016 0 .036.016.036h.625a.02.02 0 0 0 .018-.012l1.056-2.045a.02.02 0 0 1 .036 0l.71 1.375c.008.015-.002.033-.017.033h-.928c-.007 0-.012.005-.015.012l-.313.602c-.008.015.002.033.018.033h2.242c.015 0 .025-.018.017-.033l-1.697-3.281a.041.041 0 0 0-.035-.024zm2.03.002c-.01 0-.02.01-.02.022v2.94c0 .207.15.376.336.376h2.148c.01 0 .022-.011.022-.024v-.603a.022.022 0 0 0-.022-.022H14.82A.022.022 0 0 1 14.8 13v-2.646c0-.013-.01-.022-.02-.022h-.54zm2.84 0c-.01 0-.02.01-.02.022v3.292c0 .013.01.024.02.024h.542c.01 0 .02-.011.02-.024v-3.292c0-.013-.01-.022-.02-.022h-.54zm.85 0c-.01 0-.02.01-.02.022v.601c0 .012.01.024.02.024h1.169c.01 0 .02.009.02.021v2.646c0 .013.01.022.02.022h.54c.01 0 .02-.01.02-.022V11a.02.02 0 0 1 .02-.021h1.172a.02.02 0 0 1 .015.007l1.018 1.354a.02.02 0 0 1 .004.014v1.292c0 .013.008.024.02.024h.54c.011 0 .02-.011.02-.024v-1.292c0-.006.003-.01.006-.014l1.482-1.97c.011-.016.001-.038-.016-.038h-.705a.02.02 0 0 0-.015.008l-1.026 1.363a.02.02 0 0 1-.03 0l-1.026-1.363a.02.02 0 0 0-.016-.008z" }) + ] + } + ); +}); + +export { SiCreality as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.cjs new file mode 100644 index 000000000..208c7825e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09D3AC"; +const SiCreatereactapp = React__namespace.forwardRef(function SiCreatereactapp2({ title = "Create React App", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.92 10.846c0-1.223-1.44-2.308-3.655-2.97.533-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.886-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.216c-1.054.607-1.273 2.386-.747 4.625-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.442 2.308 3.656 2.968-.533 2.251-.302 4.04.76 4.645.259.145.552.218.848.213.991 0 2.241-.69 3.503-1.886 1.26 1.186 2.507 1.873 3.496 1.873a1.7 1.7 0 0 0 .863-.216c1.054-.607 1.271-2.386.747-4.616 2.204-.668 3.636-1.744 3.638-2.96m-7.953-5.541c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M2.328 1.011v19.645H24V1.012zm20.825 18.8H3.176V1.859h19.977zm-15.09-6.019c-.533 2.251-.303 4.04.759 4.645.259.145.552.218.849.213.99 0 2.24-.69 3.503-1.886 1.26 1.186 2.506 1.873 3.495 1.873a1.7 1.7 0 0 0 .863-.216c1.055-.607 1.271-2.386.748-4.616 2.203-.66 3.636-1.737 3.637-2.953.002-1.216-1.44-2.308-3.653-2.97.532-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.99 0-2.24.69-3.502 1.886-1.262-1.186-2.508-1.873-3.496-1.873a1.7 1.7 0 0 0-.862.216C7.739 3.862 7.52 5.64 8.046 7.88c-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.444 2.297 3.658 2.961zm4.297 2.573c-1.454 1.301-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.103c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .178-1.027 18 18 0 0 0 2.233.366q.672.945 1.463 1.79zm4.402-6.55a24 24 0 0 0-.44-.8c-.155-.269-.32-.533-.484-.798.483.068.95.155 1.392.258-.13.438-.286.888-.467 1.34zm.483 3.373q-.673.157-1.407.258a21 21 0 0 0 .927-1.617c.187.47.348.921.476 1.368zm-.925-2.37a20 20 0 0 1-1.572 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-1.576-2.73q.33-.697.726-1.396c.266-.465.552-.918.847-1.35a20.6 20.6 0 0 1 3.176.004c.294.428.577.886.843 1.34.266.452.513.935.733 1.398zm-5.826 2.642a17 17 0 0 1-1.391-.259c.13-.437.289-.888.47-1.34q.208.399.438.8c.153.268.306.531.483.8M10 9.023q-.231.398-.437.802a18 18 0 0 1-.488-1.353q.675-.156 1.408-.259c-.165.263-.323.534-.483.81m3.175 6.542q-.48-.511-.943-1.106.458.021.93.021c.314 0 .636 0 .946-.02a16 16 0 0 1-.933 1.105m3.937 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.691-1.438l-.208-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.12.518.178 1.007c.178 1.338-.027 2.361-.533 2.65zm.938-8.994q.5.153.983.355c1.26.533 2.042 1.217 2.04 1.8-.001.585-.783 1.272-2.043 1.796q-.455.188-.966.342a17.5 17.5 0 0 0-.811-2.155q.468-1.046.797-2.145zm-4.084-3.389c1.454-1.301 2.363-1.442 2.687-1.442a.84.84 0 0 1 .43.103c.507.29.71 1.31.548 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.101-.107.211-.202zm-.807.792q.48.511.94 1.106a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.02a15 15 0 0 1 .934-1.105M9.22 3.974a.86.86 0 0 1 .438-.1 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zM7.299 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.798 2.13 10 10 0 0 1-.984-.354c-1.26-.533-2.041-1.216-2.041-1.8s.788-1.263 2.047-1.786m5.859.177a1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125zm8.761 1.64c0-1.223-1.44-2.307-3.654-2.97.533-2.25.3-4.039-.76-4.644a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.885-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.217c-1.054.607-1.273 2.386-.747 4.625-2.203.658-3.636 1.734-3.64 2.952-.003 1.218 1.442 2.308 3.656 2.969-.533 2.25-.302 4.039.76 4.644.259.145.552.219.848.213.991 0 2.241-.69 3.503-1.885 1.26 1.186 2.507 1.873 3.496 1.873.302.005.6-.07.863-.217 1.054-.607 1.271-2.386.747-4.616 2.204-.671 3.636-1.747 3.638-2.963zm-7.952-5.544c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M.85 22.14V2.49L0 3.341v19.647h21.669l.849-.847z" }) + ] + } + ); +}); + +exports.default = SiCreatereactapp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.d.ts new file mode 100644 index 000000000..b524f5e23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09D3AC"; +declare const SiCreatereactapp: IconType; +export { SiCreatereactapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.mjs new file mode 100644 index 000000000..d67c07558 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreatereactapp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09D3AC"; +const SiCreatereactapp = React.forwardRef(function SiCreatereactapp2({ title = "Create React App", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.92 10.846c0-1.223-1.44-2.308-3.655-2.97.533-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.886-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.216c-1.054.607-1.273 2.386-.747 4.625-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.442 2.308 3.656 2.968-.533 2.251-.302 4.04.76 4.645.259.145.552.218.848.213.991 0 2.241-.69 3.503-1.886 1.26 1.186 2.507 1.873 3.496 1.873a1.7 1.7 0 0 0 .863-.216c1.054-.607 1.271-2.386.747-4.616 2.204-.668 3.636-1.744 3.638-2.96m-7.953-5.541c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M2.328 1.011v19.645H24V1.012zm20.825 18.8H3.176V1.859h19.977zm-15.09-6.019c-.533 2.251-.303 4.04.759 4.645.259.145.552.218.849.213.99 0 2.24-.69 3.503-1.886 1.26 1.186 2.506 1.873 3.495 1.873a1.7 1.7 0 0 0 .863-.216c1.055-.607 1.271-2.386.748-4.616 2.203-.66 3.636-1.737 3.637-2.953.002-1.216-1.44-2.308-3.653-2.97.532-2.25.3-4.04-.76-4.645a1.7 1.7 0 0 0-.85-.213c-.99 0-2.24.69-3.502 1.886-1.262-1.186-2.508-1.873-3.496-1.873a1.7 1.7 0 0 0-.862.216C7.739 3.862 7.52 5.64 8.046 7.88c-2.203.659-3.636 1.735-3.64 2.953-.003 1.218 1.444 2.297 3.658 2.961zm4.297 2.573c-1.454 1.301-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.103c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .178-1.027 18 18 0 0 0 2.233.366q.672.945 1.463 1.79zm4.402-6.55a24 24 0 0 0-.44-.8c-.155-.269-.32-.533-.484-.798.483.068.95.155 1.392.258-.13.438-.286.888-.467 1.34zm.483 3.373q-.673.157-1.407.258a21 21 0 0 0 .927-1.617c.187.47.348.921.476 1.368zm-.925-2.37a20 20 0 0 1-1.572 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-1.576-2.73q.33-.697.726-1.396c.266-.465.552-.918.847-1.35a20.6 20.6 0 0 1 3.176.004c.294.428.577.886.843 1.34.266.452.513.935.733 1.398zm-5.826 2.642a17 17 0 0 1-1.391-.259c.13-.437.289-.888.47-1.34q.208.399.438.8c.153.268.306.531.483.8M10 9.023q-.231.398-.437.802a18 18 0 0 1-.488-1.353q.675-.156 1.408-.259c-.165.263-.323.534-.483.81m3.175 6.542q-.48-.511-.943-1.106.458.021.93.021c.314 0 .636 0 .946-.02a16 16 0 0 1-.933 1.105m3.937 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.691-1.438l-.208-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.12.518.178 1.007c.178 1.338-.027 2.361-.533 2.65zm.938-8.994q.5.153.983.355c1.26.533 2.042 1.217 2.04 1.8-.001.585-.783 1.272-2.043 1.796q-.455.188-.966.342a17.5 17.5 0 0 0-.811-2.155q.468-1.046.797-2.145zm-4.084-3.389c1.454-1.301 2.363-1.442 2.687-1.442a.84.84 0 0 1 .43.103c.507.29.71 1.31.548 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.101-.107.211-.202zm-.807.792q.48.511.94 1.106a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.02a15 15 0 0 1 .934-1.105M9.22 3.974a.86.86 0 0 1 .438-.1 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zM7.299 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.798 2.13 10 10 0 0 1-.984-.354c-1.26-.533-2.041-1.216-2.041-1.8s.788-1.263 2.047-1.786m5.859.177a1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125za1.63 1.63 0 0 0-.906.274 1.63 1.63 0 0 0-.601.73 1.63 1.63 0 0 0-.094.942 1.63 1.63 0 0 0 3.229-.314 1.6 1.6 0 0 0-.12-.627 1.6 1.6 0 0 0-.353-.533 1.6 1.6 0 0 0-.53-.356 1.6 1.6 0 0 0-.625-.125zm8.761 1.64c0-1.223-1.44-2.307-3.654-2.97.533-2.25.3-4.039-.76-4.644a1.7 1.7 0 0 0-.85-.213c-.989 0-2.239.69-3.501 1.885-1.262-1.186-2.509-1.873-3.496-1.873a1.7 1.7 0 0 0-.863.217c-1.054.607-1.273 2.386-.747 4.625-2.203.658-3.636 1.734-3.64 2.952-.003 1.218 1.442 2.308 3.656 2.969-.533 2.25-.302 4.039.76 4.644.259.145.552.219.848.213.991 0 2.241-.69 3.503-1.885 1.26 1.186 2.507 1.873 3.496 1.873.302.005.6-.07.863-.217 1.054-.607 1.271-2.386.747-4.616 2.204-.671 3.636-1.747 3.638-2.963zm-7.952-5.544c1.454-1.301 2.363-1.442 2.686-1.442a.84.84 0 0 1 .43.103c.508.29.71 1.31.549 2.663a10 10 0 0 1-.178 1.028 17 17 0 0 0-2.233-.367 17.5 17.5 0 0 0-1.463-1.79q.098-.098.21-.195m-4.401 6.548q.208.399.438.8c.153.268.313.54.49.808a17 17 0 0 1-1.391-.259c.124-.451.282-.895.463-1.35m-.492-3.38q.675-.158 1.408-.26c-.177.263-.33.533-.49.815s-.3.533-.437.802a21 21 0 0 1-.48-1.358M10 10.84q.33-.697.726-1.396c.267-.465.552-.918.847-1.35q.776-.06 1.598-.06c.549.002 1.065.022 1.578.063.295.43.577.887.844 1.34.266.453.511.927.731 1.39a20 20 0 0 1-1.571 2.747 20 20 0 0 1-3.176-.004 20 20 0 0 1-.845-1.34 21 21 0 0 1-.725-1.39zm5.834-2.623c.483.068.95.155 1.392.258-.131.438-.288.888-.469 1.34q-.209-.398-.44-.8a38 38 0 0 0-.476-.798zm.49 4.425q.229-.403.437-.805c.177.462.355.917.48 1.36q-.674.157-1.407.258.257-.395.497-.813zm-3.165-6.54q.48.513.94 1.107a23 23 0 0 0-.928-.021c-.314 0-.636 0-.946.021a15 15 0 0 1 .934-1.106M9.22 3.974a.86.86 0 0 1 .438-.099 2.3 2.3 0 0 1 .922.233 7 7 0 0 1 1.775 1.203l.208.19a17.5 17.5 0 0 0-1.449 1.776 18 18 0 0 0-2.246.365 9 9 0 0 1-.177-1.006c-.185-1.34.028-2.363.527-2.655zm-.94 9.002a10 10 0 0 1-.983-.355c-1.26-.533-2.042-1.216-2.042-1.8S6.04 9.554 7.3 9.031a10 10 0 0 1 .966-.345 17 17 0 0 0 .81 2.155 18 18 0 0 0-.794 2.133m4.084 3.39c-1.454 1.302-2.363 1.44-2.688 1.44a.83.83 0 0 1-.43-.102c-.507-.29-.71-1.31-.548-2.663a10 10 0 0 1 .177-1.027q1.105.255 2.234.366.672.945 1.463 1.79zm.811-.8q-.48-.511-.942-1.106.458.021.93.021c.314 0 .636 0 .946-.02q-.461.593-.935 1.105zm3.938 2.13a.86.86 0 0 1-.44.105c-.323 0-1.243-.142-2.692-1.438l-.207-.19a17.5 17.5 0 0 0 1.447-1.775 17 17 0 0 0 2.247-.366q.119.518.178 1.007c.176 1.338-.029 2.361-.535 2.65zm1.918-5.049q-.455.188-.966.343a17.5 17.5 0 0 0-.812-2.155q.469-1.04.798-2.13.5.152.983.354c1.259.533 2.042 1.216 2.04 1.8s-.785 1.257-2.045 1.781zm-5.873-.18c.322 0 .637-.096.905-.274a1.63 1.63 0 0 0 .601-.731 1.63 1.63 0 0 0 .094-.942 1.63 1.63 0 0 0-.445-.835 1.63 1.63 0 0 0-.834-.447 1.63 1.63 0 0 0-.942.092 1.63 1.63 0 0 0-.732.6 1.63 1.63 0 0 0-.276.905 1.6 1.6 0 0 0 .123.624 1.63 1.63 0 0 0 1.506 1.007M.85 22.14V2.49L0 3.341v19.647h21.669l.849-.847z" }) + ] + } + ); +}); + +export { SiCreatereactapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.cjs new file mode 100644 index 000000000..46e1a9bcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED592F"; +const SiCreativecommons = React__namespace.forwardRef(function SiCreativecommons2({ title = "Creative Commons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.983 0c-3.292 0-6.19 1.217-8.428 3.485C1.25 5.819 0 8.844 0 12c0 3.189 1.217 6.148 3.522 8.45C5.827 22.75 8.822 24 11.983 24c3.16 0 6.222-1.25 8.593-3.583C22.815 18.214 24 15.287 24 12c0-3.255-1.186-6.214-3.458-8.483C18.238 1.217 15.275 0 11.983 0zm.033 2.17c2.7 0 5.103 1.02 6.98 2.893 1.843 1.841 2.83 4.274 2.83 6.937 0 2.696-.954 5.063-2.798 6.872-1.943 1.906-4.444 2.926-7.012 2.926-2.601 0-5.038-1.019-6.914-2.893-1.877-1.875-2.93-4.34-2.93-6.905 0-2.597 1.053-5.063 2.93-6.97 1.844-1.874 4.214-2.86 6.914-2.86zM8.68 8.278C6.723 8.278 5.165 9.66 5.165 12c0 2.38 1.465 3.722 3.581 3.722 1.358 0 2.516-.744 3.155-1.874l-1.491-.758c-.333.798-.839 1.037-1.478 1.037-1.105 0-1.61-.917-1.61-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728zm6.932 0c-1.957 0-3.514 1.382-3.514 3.722 0 2.38 1.464 3.722 3.58 3.722 1.359 0 2.516-.744 3.155-1.874l-1.49-.758c-.333.798-.84 1.037-1.478 1.037-1.105 0-1.611-.917-1.611-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728z" }) + ] + } + ); +}); + +exports.default = SiCreativecommons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.d.ts new file mode 100644 index 000000000..58ab6c39d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED592F"; +declare const SiCreativecommons: IconType; +export { SiCreativecommons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.mjs new file mode 100644 index 000000000..d7b9980f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativecommons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED592F"; +const SiCreativecommons = React.forwardRef(function SiCreativecommons2({ title = "Creative Commons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.983 0c-3.292 0-6.19 1.217-8.428 3.485C1.25 5.819 0 8.844 0 12c0 3.189 1.217 6.148 3.522 8.45C5.827 22.75 8.822 24 11.983 24c3.16 0 6.222-1.25 8.593-3.583C22.815 18.214 24 15.287 24 12c0-3.255-1.186-6.214-3.458-8.483C18.238 1.217 15.275 0 11.983 0zm.033 2.17c2.7 0 5.103 1.02 6.98 2.893 1.843 1.841 2.83 4.274 2.83 6.937 0 2.696-.954 5.063-2.798 6.872-1.943 1.906-4.444 2.926-7.012 2.926-2.601 0-5.038-1.019-6.914-2.893-1.877-1.875-2.93-4.34-2.93-6.905 0-2.597 1.053-5.063 2.93-6.97 1.844-1.874 4.214-2.86 6.914-2.86zM8.68 8.278C6.723 8.278 5.165 9.66 5.165 12c0 2.38 1.465 3.722 3.581 3.722 1.358 0 2.516-.744 3.155-1.874l-1.491-.758c-.333.798-.839 1.037-1.478 1.037-1.105 0-1.61-.917-1.61-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728zm6.932 0c-1.957 0-3.514 1.382-3.514 3.722 0 2.38 1.464 3.722 3.58 3.722 1.359 0 2.516-.744 3.155-1.874l-1.49-.758c-.333.798-.84 1.037-1.478 1.037-1.105 0-1.611-.917-1.611-2.126 0-1.21.426-2.127 1.61-2.127.32 0 .96.173 1.332.97l1.597-.838c-.68-1.236-1.837-1.728-3.181-1.728z" }) + ] + } + ); +}); + +export { SiCreativecommons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.cjs new file mode 100644 index 000000000..4a035404c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCreativetechnology = React__namespace.forwardRef(function SiCreativetechnology2({ title = "Creative Technology", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.48 13.248h-.593l-1.028-2.213-1.004 2.213h-.514l1.543-3.422 1.595 3.422M2.804 11.19s-.18-.103-.283-.155c-.206-.077-.489-.18-.798-.18-.617 0-1.183.283-1.183 1.004 0 .72.54 1.003 1.21 1.003.334 0 .668-.103.848-.257.103-.078.257-.232.257-.232l.283.437-.231.155c-.232.154-.54.36-1.21.36C.85 13.325 0 12.887 0 11.859c0-.927.797-1.467 1.775-1.467.437 0 .772.103 1.003.232.129 0 .309.128.309.128l-.283.438m7.537 2.546h3.138v.438h-3.138v-.438m12.116-2.135h.746v.54h-.746v-.54m-1.107-.051v-1.106H24v.437h-2.11v.669h-.54m.54.566v.694H24v.438h-2.65v-1.132h.54M4.786 11.6h.668c.283 0 .515-.103.515-.36s-.232-.386-.515-.386H4.27v2.367h-.54v-2.778h1.775c.669 0 1.029.36 1.029.797 0 .437-.283.772-.772.798l.746 1.029c.026.077.103.18.103.18h-.695L4.785 11.6m10.186 1.647h-.54V10.88h-1.106v-.437h2.804v.437h-1.106l-.052 2.367m2.238 0h-.54v-2.804h.54v2.804m3.138-2.804-.952 2.11-.951-2.11h-.618l1.312 2.804h.54l1.287-2.83h-.618M8.386 11.55h.746v.54h-.746v-.54m-1.106 0v-1.106h2.65v.437H7.82v.669h-.54m.566.566v.694h2.109v.438H7.28v-1.132h.566" }) + ] + } + ); +}); + +exports.default = SiCreativetechnology; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.d.ts new file mode 100644 index 000000000..fd57e7092 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCreativetechnology: IconType; +export { SiCreativetechnology as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.mjs new file mode 100644 index 000000000..bbb015ddc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCreativetechnology.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCreativetechnology = React.forwardRef(function SiCreativetechnology2({ title = "Creative Technology", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.48 13.248h-.593l-1.028-2.213-1.004 2.213h-.514l1.543-3.422 1.595 3.422M2.804 11.19s-.18-.103-.283-.155c-.206-.077-.489-.18-.798-.18-.617 0-1.183.283-1.183 1.004 0 .72.54 1.003 1.21 1.003.334 0 .668-.103.848-.257.103-.078.257-.232.257-.232l.283.437-.231.155c-.232.154-.54.36-1.21.36C.85 13.325 0 12.887 0 11.859c0-.927.797-1.467 1.775-1.467.437 0 .772.103 1.003.232.129 0 .309.128.309.128l-.283.438m7.537 2.546h3.138v.438h-3.138v-.438m12.116-2.135h.746v.54h-.746v-.54m-1.107-.051v-1.106H24v.437h-2.11v.669h-.54m.54.566v.694H24v.438h-2.65v-1.132h.54M4.786 11.6h.668c.283 0 .515-.103.515-.36s-.232-.386-.515-.386H4.27v2.367h-.54v-2.778h1.775c.669 0 1.029.36 1.029.797 0 .437-.283.772-.772.798l.746 1.029c.026.077.103.18.103.18h-.695L4.785 11.6m10.186 1.647h-.54V10.88h-1.106v-.437h2.804v.437h-1.106l-.052 2.367m2.238 0h-.54v-2.804h.54v2.804m3.138-2.804-.952 2.11-.951-2.11h-.618l1.312 2.804h.54l1.287-2.83h-.618M8.386 11.55h.746v.54h-.746v-.54m-1.106 0v-1.106h2.65v.437H7.82v.669h-.54m.566.566v.694h2.109v.438H7.28v-1.132h.566" }) + ] + } + ); +}); + +export { SiCreativetechnology as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.cjs new file mode 100644 index 000000000..cb5050315 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6B00"; +const SiCredly = React__namespace.forwardRef(function SiCredly2({ title = "Credly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.8 13.154a.299.299 0 0 0-.101-.024.407.407 0 0 0-.202.048c-.06.028-.092.08-.127.136-.087.128-.15.268-.226.4-.107.187-.246.351-.38.515-.135.156-.286.291-.424.44-.028.027-.072.043-.107.027-.028-.016-.036-.056-.032-.088.04-.38.075-.763.123-1.138.02-.172.043-.336.063-.512.028-.247.056-.487.087-.735l.234-1.824c.02-.128.032-.372-.135-.52a.446.446 0 0 0-.233-.116.46.46 0 0 0-.254.06c-.226.16-.297.504-.365.76-.142.603-.178 1.241-.471 1.804a1.772 1.772 0 0 1-.202.316.668.668 0 0 1-.186.18.332.332 0 0 1-.246.051.365.365 0 0 1-.238-.207.871.87 0 0 1-.063-.324 4.499 4.499 0 0 1 .24-1.585c.045-.132.089-.252.104-.383.028-.156.028-.38-.114-.516-.131-.128-.337-.18-.504-.128-.194.056-.31.244-.372.392-.198.463-.25.95-.317 1.446-.044.327-.127.64-.293.926a2.717 2.717 0 0 1-.603.72c-.118.087-.222.123-.328.107a.376.376 0 0 1-.278-.208.875.875 0 0 1-.095-.315 3.361 3.36 0 0 1-.036-.616c.004-.223 0-.44.044-.658.075-.39.678-1.937.808-2.345.135-.407.262-.823.353-1.246.08-.38.123-.767.11-1.15-.007-.277-.07-.576-.288-.736a.611.61 0 0 0-.603-.048.968.968 0 0 0-.455.428 2.53 2.53 0 0 0-.226.59 12.01 12.01 0 0 0-.266 1.29c-.071.429-.138.848-.206 1.268-.06.355-.206 1.614-.261 1.88-.06.272-.175.54-.301.787-.131.268-.258.536-.408.791a.694.694 0 0 1-.175.224c-.08.06-.182.088-.27.048-.102-.048-.146-.176-.166-.292-.075-.435-.012-.875.072-1.302.083-.431.44-2.4.519-2.851.099-.532.24-1.05.285-1.59.028-.388.09-.88-.202-1.187-.115-.136-.31-.16-.44-.136-.174.036-.31.176-.388.296-.1.128-.186.28-.258.467-.115.284-.186.615-.261.91l-.032.129c-.083.383-.143.77-.186 1.162a16.95 16.948 0 0 0-.06.632c-.008.1-.016.203-.027.307 0 .08.007.168-.028.244a.304.304 0 0 1-.052.068c-.08.072-.202.06-.31.056-.557-.016-1.045.3-1.35.755-.18.252-.281.542-.39.834-.01.048-.034.1-.054.152-.051.143-.13.327-.222.511a3.037 3.037 0 0 1-.317.46 3.285 3.285 0 0 1-.384.41 1.123 1.123 0 0 1-.515.26c-.174.04-.384-.043-.543-.203a.916.916 0 0 1-.206-.54c-.004-.055-.004-.115.028-.163.05-.068.146-.072.23-.076a1.623 1.623 0 0 0 1.375-1.015c.138-.34.178-.698.122-1.046a1.193 1.193 0 0 0-.19-.48.9.9 0 0 0-.396-.323c-.293-.14-.658-.127-1.01.004-.575.232-.951.74-1.134 1.562l-.02.088c-.114.487-.23 1-.582 1.354-.127.12-.261.163-.368.143-.044-.004-.08-.04-.103-.075-.096-.16.003-.532.15-1a4.1 4.1 0 0 0 .1-.366.925.925 0 0 0-.108-.495.783.783 0 0 0-.372-.324c-.143-.064-.31-.06-.468-.06h-.047c-.044 0-.103 0-.151-.012a.215.215 0 0 1-.147-.127.485.485 0 0 1 .016-.232c.004-.02.012-.048.016-.072a.368.368 0 0 0-.162-.412.509.509 0 0 0-.468-.036.768.768 0 0 0-.364.348.769.769 0 0 0-.103.48c.04.13.07.32.043.475-.055.28-.222.51-.384.74-.04.05-.072.106-.107.16a4.96 4.96 0 0 1-.706.825c-.372.335-.804.575-1.232.67-.745.165-1.506-.06-1.91-.734-.222-.38-.32-.827-.348-1.266a5.425 5.425 0 0 1 .424-2.516c.328-.76.816-1.52 1.715-1.614.353-.04.753.083.912.4.115.23.075.506 0 .75-.072.244-.175.49-.18.75-.003.26.124.54.37.616.238.072.495-.08.634-.29.138-.21.186-.46.245-.704a6.282 6.281 0 0 1 .662-1.634c.139-.236.297-.488.254-.76a.543.543 0 0 0-.373-.415.543.543 0 0 0-.535.144c-.134.148-.206.371-.387.43-.17.06-.35-.055-.507-.134-.6-.32-1.336-.312-1.963-.048-.634.25-1.146.735-1.526 1.294C.462 8.53.098 9.508.022 10.48c-.027.34-.031.695 0 1.038.036.46.1.854.214 1.206.139.423.317.79.547 1.094.266.34.587.6.94.747.372.148.784.22 1.192.208a3.172 3.172 0 0 0 1.177-.283 4.29 4.29 0 0 0 1.026-.68c.309-.26.594-.559.84-.89.162-.224.309-.46.44-.708a4.83 4.83 0 0 0 .178-.383c.044-.104.087-.215.202-.26.056-.043.15-.02.202.013.064.04.115.075.135.135.048.116.02.232-.004.332v.012c-.028.1-.055.203-.091.303-.14.424-.238.811-.16 1.195.045.207.128.387.25.527a.84.84 0 0 0 .504.264c.246.04.51-.028.725-.132.143-.068.278-.156.397-.26.06-.06.122-.12.174-.184.044-.06.087-.147.178-.143a.15.15 0 0 1 .107.064c.028.031.04.071.06.115.23.52.776.84 1.335.84h.07c.27 0 .556-.093.79-.22.27-.14.48-.348.7-.552.02-.016.045-.04.073-.044.035-.008.07.012.099.044a.26.26 0 0 1 .047.1c.135.34.46.6.824.66a1.1 1.1 0 0 0 .99-.356c.056-.06.104-.128.167-.176.064-.044.15-.076.222-.044.107.04.135.164.182.268.107.235.357.371.615.375.289 0 .554-.148.764-.34.195-.183.353-.399.516-.61a.328.328 0 0 1 .106-.096c.04-.024.096-.028.13 0 .033.024.045.06.06.091.163.4.587.652 1.01.648.417-.004.809-.224 1.103-.516.095-.092.194-.2.32-.21.14-.017.207.114.254.22.072.142.115.238.25.338.158.116.36.152.547.1.17-.04.34-.156.47-.316.072-.088.112-.204.19-.284.092-.087.132.028.136.1.016.116.016.236.008.352-.016.236-.052.471-.08.703-.011.068-.02.136-.063.188-.06.068-.166.08-.253.064a2.898 2.898 0 0 0-.321-.028l-.14-.016c-.201-.012-.4-.036-.61-.044h-.185c-.404 0-.733.048-1.03.16-.48.187-.852.57-1.003 1.018a1.305 1.305 0 0 0-.052.64c.04.203.13.403.282.587.265.315.68.515 1.149.543.408.02.852-.064 1.292-.26.848-.367 1.482-1.094 1.696-1.95 0-.02.01-.039.023-.043.298-.104.57-.248.813-.428.245-.187.467-.399.65-.643.09-.12.174-.243.253-.37.07-.125.13-.257.202-.38a.906.906 0 0 0 .13-.316.411.411 0 0 0-.05-.328.257.257 0 0 0-.135-.124m-13.68-1.63c.017-.071.045-.14.06-.206a1.9 1.9 0 0 1 .262-.504c.04-.048.08-.1.135-.136a.246.246 0 0 1 .186-.048c.107.02.183.128.202.236.032.18-.04.396-.114.555a1.097 1.097 0 0 1-.31.415c-.06.044-.114.088-.178.116-.028.008-.063.028-.115.028h-.016c-.055 0-.114-.028-.126-.088a.827.827 0 0 1 .015-.367m4.308-.184c-.004.072-.024.148-.028.223a4.91 4.91 0 0 0 0 .779c.012.152.047.3-.016.444a1.069 1.069 0 0 1-.567.643.555.555 0 0 1-.245.056c-.02 0-.04-.004-.06-.004-.12 0-.214-.092-.265-.18a.871.87 0 0 1-.1-.272 2.129 2.129 0 0 1 .072-1.122c.08-.22.202-.435.38-.594a.874.874 0 0 1 .563-.24.31.31 0 0 1 .206.064c.04.044.06.104.056.164a.05.05 0 0 1 .004.04m6.43 4.653c-.015.044-.06.104-.08.14-.042.08-.102.163-.161.235a2.562 2.562 0 0 1-.317.304c-.238.18-.503.311-.777.387a2.025 2.025 0 0 1-.487.072h-.04a.795.795 0 0 1-.515-.18.433.433 0 0 1-.158-.25.537.537 0 0 1 .047-.305.776.776 0 0 1 .38-.383c.326-.16.682-.176 1.019-.16.139.004.265.012.4.02.107.004.218.012.325.024.056 0 .115.004.17.012.044.004.092-.004.135.008.06.004.068.036.06.076" }) + ] + } + ); +}); + +exports.default = SiCredly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.d.ts new file mode 100644 index 000000000..8c69a3e08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6B00"; +declare const SiCredly: IconType; +export { SiCredly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.mjs new file mode 100644 index 000000000..104ed3aa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCredly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6B00"; +const SiCredly = React.forwardRef(function SiCredly2({ title = "Credly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.8 13.154a.299.299 0 0 0-.101-.024.407.407 0 0 0-.202.048c-.06.028-.092.08-.127.136-.087.128-.15.268-.226.4-.107.187-.246.351-.38.515-.135.156-.286.291-.424.44-.028.027-.072.043-.107.027-.028-.016-.036-.056-.032-.088.04-.38.075-.763.123-1.138.02-.172.043-.336.063-.512.028-.247.056-.487.087-.735l.234-1.824c.02-.128.032-.372-.135-.52a.446.446 0 0 0-.233-.116.46.46 0 0 0-.254.06c-.226.16-.297.504-.365.76-.142.603-.178 1.241-.471 1.804a1.772 1.772 0 0 1-.202.316.668.668 0 0 1-.186.18.332.332 0 0 1-.246.051.365.365 0 0 1-.238-.207.871.87 0 0 1-.063-.324 4.499 4.499 0 0 1 .24-1.585c.045-.132.089-.252.104-.383.028-.156.028-.38-.114-.516-.131-.128-.337-.18-.504-.128-.194.056-.31.244-.372.392-.198.463-.25.95-.317 1.446-.044.327-.127.64-.293.926a2.717 2.717 0 0 1-.603.72c-.118.087-.222.123-.328.107a.376.376 0 0 1-.278-.208.875.875 0 0 1-.095-.315 3.361 3.36 0 0 1-.036-.616c.004-.223 0-.44.044-.658.075-.39.678-1.937.808-2.345.135-.407.262-.823.353-1.246.08-.38.123-.767.11-1.15-.007-.277-.07-.576-.288-.736a.611.61 0 0 0-.603-.048.968.968 0 0 0-.455.428 2.53 2.53 0 0 0-.226.59 12.01 12.01 0 0 0-.266 1.29c-.071.429-.138.848-.206 1.268-.06.355-.206 1.614-.261 1.88-.06.272-.175.54-.301.787-.131.268-.258.536-.408.791a.694.694 0 0 1-.175.224c-.08.06-.182.088-.27.048-.102-.048-.146-.176-.166-.292-.075-.435-.012-.875.072-1.302.083-.431.44-2.4.519-2.851.099-.532.24-1.05.285-1.59.028-.388.09-.88-.202-1.187-.115-.136-.31-.16-.44-.136-.174.036-.31.176-.388.296-.1.128-.186.28-.258.467-.115.284-.186.615-.261.91l-.032.129c-.083.383-.143.77-.186 1.162a16.95 16.948 0 0 0-.06.632c-.008.1-.016.203-.027.307 0 .08.007.168-.028.244a.304.304 0 0 1-.052.068c-.08.072-.202.06-.31.056-.557-.016-1.045.3-1.35.755-.18.252-.281.542-.39.834-.01.048-.034.1-.054.152-.051.143-.13.327-.222.511a3.037 3.037 0 0 1-.317.46 3.285 3.285 0 0 1-.384.41 1.123 1.123 0 0 1-.515.26c-.174.04-.384-.043-.543-.203a.916.916 0 0 1-.206-.54c-.004-.055-.004-.115.028-.163.05-.068.146-.072.23-.076a1.623 1.623 0 0 0 1.375-1.015c.138-.34.178-.698.122-1.046a1.193 1.193 0 0 0-.19-.48.9.9 0 0 0-.396-.323c-.293-.14-.658-.127-1.01.004-.575.232-.951.74-1.134 1.562l-.02.088c-.114.487-.23 1-.582 1.354-.127.12-.261.163-.368.143-.044-.004-.08-.04-.103-.075-.096-.16.003-.532.15-1a4.1 4.1 0 0 0 .1-.366.925.925 0 0 0-.108-.495.783.783 0 0 0-.372-.324c-.143-.064-.31-.06-.468-.06h-.047c-.044 0-.103 0-.151-.012a.215.215 0 0 1-.147-.127.485.485 0 0 1 .016-.232c.004-.02.012-.048.016-.072a.368.368 0 0 0-.162-.412.509.509 0 0 0-.468-.036.768.768 0 0 0-.364.348.769.769 0 0 0-.103.48c.04.13.07.32.043.475-.055.28-.222.51-.384.74-.04.05-.072.106-.107.16a4.96 4.96 0 0 1-.706.825c-.372.335-.804.575-1.232.67-.745.165-1.506-.06-1.91-.734-.222-.38-.32-.827-.348-1.266a5.425 5.425 0 0 1 .424-2.516c.328-.76.816-1.52 1.715-1.614.353-.04.753.083.912.4.115.23.075.506 0 .75-.072.244-.175.49-.18.75-.003.26.124.54.37.616.238.072.495-.08.634-.29.138-.21.186-.46.245-.704a6.282 6.281 0 0 1 .662-1.634c.139-.236.297-.488.254-.76a.543.543 0 0 0-.373-.415.543.543 0 0 0-.535.144c-.134.148-.206.371-.387.43-.17.06-.35-.055-.507-.134-.6-.32-1.336-.312-1.963-.048-.634.25-1.146.735-1.526 1.294C.462 8.53.098 9.508.022 10.48c-.027.34-.031.695 0 1.038.036.46.1.854.214 1.206.139.423.317.79.547 1.094.266.34.587.6.94.747.372.148.784.22 1.192.208a3.172 3.172 0 0 0 1.177-.283 4.29 4.29 0 0 0 1.026-.68c.309-.26.594-.559.84-.89.162-.224.309-.46.44-.708a4.83 4.83 0 0 0 .178-.383c.044-.104.087-.215.202-.26.056-.043.15-.02.202.013.064.04.115.075.135.135.048.116.02.232-.004.332v.012c-.028.1-.055.203-.091.303-.14.424-.238.811-.16 1.195.045.207.128.387.25.527a.84.84 0 0 0 .504.264c.246.04.51-.028.725-.132.143-.068.278-.156.397-.26.06-.06.122-.12.174-.184.044-.06.087-.147.178-.143a.15.15 0 0 1 .107.064c.028.031.04.071.06.115.23.52.776.84 1.335.84h.07c.27 0 .556-.093.79-.22.27-.14.48-.348.7-.552.02-.016.045-.04.073-.044.035-.008.07.012.099.044a.26.26 0 0 1 .047.1c.135.34.46.6.824.66a1.1 1.1 0 0 0 .99-.356c.056-.06.104-.128.167-.176.064-.044.15-.076.222-.044.107.04.135.164.182.268.107.235.357.371.615.375.289 0 .554-.148.764-.34.195-.183.353-.399.516-.61a.328.328 0 0 1 .106-.096c.04-.024.096-.028.13 0 .033.024.045.06.06.091.163.4.587.652 1.01.648.417-.004.809-.224 1.103-.516.095-.092.194-.2.32-.21.14-.017.207.114.254.22.072.142.115.238.25.338.158.116.36.152.547.1.17-.04.34-.156.47-.316.072-.088.112-.204.19-.284.092-.087.132.028.136.1.016.116.016.236.008.352-.016.236-.052.471-.08.703-.011.068-.02.136-.063.188-.06.068-.166.08-.253.064a2.898 2.898 0 0 0-.321-.028l-.14-.016c-.201-.012-.4-.036-.61-.044h-.185c-.404 0-.733.048-1.03.16-.48.187-.852.57-1.003 1.018a1.305 1.305 0 0 0-.052.64c.04.203.13.403.282.587.265.315.68.515 1.149.543.408.02.852-.064 1.292-.26.848-.367 1.482-1.094 1.696-1.95 0-.02.01-.039.023-.043.298-.104.57-.248.813-.428.245-.187.467-.399.65-.643.09-.12.174-.243.253-.37.07-.125.13-.257.202-.38a.906.906 0 0 0 .13-.316.411.411 0 0 0-.05-.328.257.257 0 0 0-.135-.124m-13.68-1.63c.017-.071.045-.14.06-.206a1.9 1.9 0 0 1 .262-.504c.04-.048.08-.1.135-.136a.246.246 0 0 1 .186-.048c.107.02.183.128.202.236.032.18-.04.396-.114.555a1.097 1.097 0 0 1-.31.415c-.06.044-.114.088-.178.116-.028.008-.063.028-.115.028h-.016c-.055 0-.114-.028-.126-.088a.827.827 0 0 1 .015-.367m4.308-.184c-.004.072-.024.148-.028.223a4.91 4.91 0 0 0 0 .779c.012.152.047.3-.016.444a1.069 1.069 0 0 1-.567.643.555.555 0 0 1-.245.056c-.02 0-.04-.004-.06-.004-.12 0-.214-.092-.265-.18a.871.87 0 0 1-.1-.272 2.129 2.129 0 0 1 .072-1.122c.08-.22.202-.435.38-.594a.874.874 0 0 1 .563-.24.31.31 0 0 1 .206.064c.04.044.06.104.056.164a.05.05 0 0 1 .004.04m6.43 4.653c-.015.044-.06.104-.08.14-.042.08-.102.163-.161.235a2.562 2.562 0 0 1-.317.304c-.238.18-.503.311-.777.387a2.025 2.025 0 0 1-.487.072h-.04a.795.795 0 0 1-.515-.18.433.433 0 0 1-.158-.25.537.537 0 0 1 .047-.305.776.776 0 0 1 .38-.383c.326-.16.682-.176 1.019-.16.139.004.265.012.4.02.107.004.218.012.325.024.056 0 .115.004.17.012.044.004.092-.004.135.008.06.004.068.036.06.076" }) + ] + } + ); +}); + +export { SiCredly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.cjs new file mode 100644 index 000000000..4872a5aa3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B22F4"; +const SiCrehana = React__namespace.forwardRef(function SiCrehana2({ title = "Crehana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,0C5.371,0,0,5.371,0,12c0,6.626,5.371,12,12,12s12-5.374,12-12C24,5.371,18.626,0,12,0z M17.94,9.843v7.915h-3.957 v-3.892h-3.895v3.83H6.13v-3.957h3.833V9.843H6.06V5.948h3.957v3.895h3.965V5.948h3.957V9.843z" }) + ] + } + ); +}); + +exports.default = SiCrehana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.d.ts new file mode 100644 index 000000000..f88f42dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B22F4"; +declare const SiCrehana: IconType; +export { SiCrehana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.mjs new file mode 100644 index 000000000..11fcb61c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrehana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B22F4"; +const SiCrehana = React.forwardRef(function SiCrehana2({ title = "Crehana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,0C5.371,0,0,5.371,0,12c0,6.626,5.371,12,12,12s12-5.374,12-12C24,5.371,18.626,0,12,0z M17.94,9.843v7.915h-3.957 v-3.892h-3.895v3.83H6.13v-3.957h3.833V9.843H6.06V5.948h3.957v3.895h3.965V5.948h3.957V9.843z" }) + ] + } + ); +}); + +export { SiCrehana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.cjs new file mode 100644 index 000000000..71933f322 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5A50"; +const SiCrewai = React__namespace.forwardRef(function SiCrewai2({ title = "CrewAI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0z" }) + ] + } + ); +}); + +exports.default = SiCrewai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.d.ts new file mode 100644 index 000000000..3f47f8e4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5A50"; +declare const SiCrewai: IconType; +export { SiCrewai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.mjs new file mode 100644 index 000000000..2a6b7c2ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5A50"; +const SiCrewai = React.forwardRef(function SiCrewai2({ title = "CrewAI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.482.18C7.161 1.319 1.478 9.069 1.426 15.372c-.051 5.527 3.1 8.68 8.68 8.627 6.716-.05 14.259-6.87 12.09-10.9-.672-1.292-1.396-1.344-2.687-.207-1.602 1.395-1.654.31-.207-2.893 1.757-3.98 1.705-5.322-.31-7.544C17.03.388 14.962-.388 12.482.181Zm5.322 2.068c2.273 2.015 2.376 4.236.465 8.42-1.395 3.1-2.17 3.515-3.824 1.86-1.24-1.24-1.343-3.46-.258-6.044 1.137-2.635.982-3.1-.568-1.653-3.72 3.358-6.458 9.765-5.424 12.503.464 1.189.825 1.395 2.737 1.395 2.79 0 6.303-1.705 7.957-3.926 1.756-2.274 2.79-2.274 2.79-.052 0 3.875-6.459 8.627-11.625 8.627-6.251 0-9.351-4.752-7.491-11.47.878-2.995 4.443-7.904 7.077-9.66 3.255-2.17 5.684-2.17 8.164 0z" }) + ] + } + ); +}); + +export { SiCrewai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.cjs new file mode 100644 index 000000000..23d0f0dd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCrewunited = React__namespace.forwardRef(function SiCrewunited2({ title = "Crew United", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.871 3.9121c-1.1458.046-2.2306.7013-2.7714 1.8027-.4605.9306-.4404 2.0292.0488 2.9454-.8955-.524-1.8989-.7774-3.0273-.7774-.2207 0-.4365.014-.6524.0332-3.3577.3502-5.7885 3.3541-5.4335 6.707.3261 3.1131 2.9584 5.4716 6.0859 5.4668l.7148-.043c.2063-.024.4177-.0574.6192-.1054.0336-.0096.068-.0138.1015-.0234.8059-.1967 1.5686-.5559 2.2305-1.0547l3.5352-2.8496c2.2353 2.523 6.0912 2.7567 8.6191.5215 2.5279-2.2353 2.7587-6.0913.5234-8.6192a6.1236 6.1236 0 0 0-4.5722-2.0527c-.3454 0-.6907.0284-1.0313.086L13.422 4.2323l.0059.0098a3.2322 3.2322 0 0 0-1.5567-.33ZM16.3146 6.75l6.668 3.2617c1.0792 2.811-.3268 5.9627-3.1329 7.0371-.6236.2447-1.2903.3653-1.957.3653-1.5494 0-3.0215-.6565-4.0528-1.8125l1.2852-1.0371c1.0025 1.2567 2.8302 1.4673 4.0918.4648 1.2615-1.0025 1.4674-2.8303.4648-4.0918-1.0025-1.2615-2.8302-1.4674-4.0918-.4648a2.9102 2.9102 0 0 0-.787.9687l-3.2696-1.6113a.6395.6395 0 0 1-.207-.8828c.1727-.283.5327-.3831.83-.2344l.4415.2148.5937.2891a5.4475 5.4475 0 0 1 3.123-2.4668Zm.3457 1.2813a4.6724 4.6724 0 0 0-2.4278 1.209l.6328.3163c.5469-.4652 1.214-.7676 1.9239-.8828ZM6.121 8.5351c3.0076 0 5.4492 2.4357 5.4492 5.4433.0048 2.763-2.0629 5.0899-4.8066 5.416l-.6719.039c-3.0076-.019-5.4285-2.4748-5.414-5.4823.0191-2.7678 2.1099-5.0854 4.8632-5.3828.1919-.0192.3882-.0284.58-.0332Zm4.8398 1.7265 5.2871 2.5137-4.6093 3.8379c.9881-2.077.7229-4.5288-.6778-6.3516z" }) + ] + } + ); +}); + +exports.default = SiCrewunited; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.d.ts new file mode 100644 index 000000000..4781911eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCrewunited: IconType; +export { SiCrewunited as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.mjs new file mode 100644 index 000000000..4a44ffbb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrewunited.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCrewunited = React.forwardRef(function SiCrewunited2({ title = "Crew United", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.871 3.9121c-1.1458.046-2.2306.7013-2.7714 1.8027-.4605.9306-.4404 2.0292.0488 2.9454-.8955-.524-1.8989-.7774-3.0273-.7774-.2207 0-.4365.014-.6524.0332-3.3577.3502-5.7885 3.3541-5.4335 6.707.3261 3.1131 2.9584 5.4716 6.0859 5.4668l.7148-.043c.2063-.024.4177-.0574.6192-.1054.0336-.0096.068-.0138.1015-.0234.8059-.1967 1.5686-.5559 2.2305-1.0547l3.5352-2.8496c2.2353 2.523 6.0912 2.7567 8.6191.5215 2.5279-2.2353 2.7587-6.0913.5234-8.6192a6.1236 6.1236 0 0 0-4.5722-2.0527c-.3454 0-.6907.0284-1.0313.086L13.422 4.2323l.0059.0098a3.2322 3.2322 0 0 0-1.5567-.33ZM16.3146 6.75l6.668 3.2617c1.0792 2.811-.3268 5.9627-3.1329 7.0371-.6236.2447-1.2903.3653-1.957.3653-1.5494 0-3.0215-.6565-4.0528-1.8125l1.2852-1.0371c1.0025 1.2567 2.8302 1.4673 4.0918.4648 1.2615-1.0025 1.4674-2.8303.4648-4.0918-1.0025-1.2615-2.8302-1.4674-4.0918-.4648a2.9102 2.9102 0 0 0-.787.9687l-3.2696-1.6113a.6395.6395 0 0 1-.207-.8828c.1727-.283.5327-.3831.83-.2344l.4415.2148.5937.2891a5.4475 5.4475 0 0 1 3.123-2.4668Zm.3457 1.2813a4.6724 4.6724 0 0 0-2.4278 1.209l.6328.3163c.5469-.4652 1.214-.7676 1.9239-.8828ZM6.121 8.5351c3.0076 0 5.4492 2.4357 5.4492 5.4433.0048 2.763-2.0629 5.0899-4.8066 5.416l-.6719.039c-3.0076-.019-5.4285-2.4748-5.414-5.4823.0191-2.7678 2.1099-5.0854 4.8632-5.3828.1919-.0192.3882-.0284.58-.0332Zm4.8398 1.7265 5.2871 2.5137-4.6093 3.8379c.9881-2.077.7229-4.5288-.6778-6.3516z" }) + ] + } + ); +}); + +export { SiCrewunited as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.cjs new file mode 100644 index 000000000..b5ee60fdd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCriticalrole = React__namespace.forwardRef(function SiCriticalrole2({ title = "Critical Role", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.014 0c-.51.281-9.231 5.256-10.323 5.87a.23.23 0 00-.136.23v11.866l.089.15c.004.005 6.521 3.746 10.24 5.884h.14c.52-.295 9.26-5.28 10.263-5.842a.282.282 0 00.16-.272c-.006-3.915-.006-7.825 0-11.74 0-.145-.034-.253-.174-.309L12.094 0zm.324.863c3.066 1.763 6.123 3.516 9.19 5.279-.352.136-4.825 1.819-4.83 1.819l-.033.066c.038.084.07.173.099.262l.089.042c.117-.047 4.876-1.838 4.96-1.861v10.802c-.004-.005-3.282-5.692-3.624-6.282-.051-.085-.051-.085-.145-.07-.333.065-.207.037-.314.065l3.807 6.601h-8.754l-.089-.075-.042-1.256-.07-.061c-.366.065-.741.07-1.107.014l-.065.06v.517l-.047.051c-.807-.117-.643.01-1.937-1.547-.126-.15-.239-.31-.36-.464l-.01-.01.01-.098c.398-.478.745-.844.703-1.528a1.14 1.14 0 00-.586-.957c-.47-.277-1.05-.225-2.626-.225-.178 0-.22.178-.084.225l.22.028c.235.047.253.127.253.633.005 3.3.01 3.085-.051 3.723-.024.244-.16.173-.31.206l-.094.084.08.141c.099.028 1.505.024 1.58.005.16-.042.122-.22-.023-.23-.352-.028-.432-.019-.455-.225-.042-.347-.033-.3-.047-1.528l.084-.085c.624 0 .68-.033.783.113.338.46.68.914 1.027 1.369.338.445.652.59 1.004.595.97.01.862-.014.862.047v.417l-.08.08H2.553c-.089 0-.098.01-.06-.052l3.164-5.485-.038-.066c-.286-.018-.351-.06-.426.07l-3.005 5.205V6.47c.121.033 1.251.469 1.256.469.108.042.14.042.502-.24l-1.449-.543-.005-.019c3.034-1.73 6.067-3.46 9.1-5.185l.01.01h-.005c-1.34 2.32-2.686 4.65-4.041 6.985.16 0 .295.005.436-.005.084-.005 3.577-6.17 4.004-6.859.398.68 3.797 6.587 3.844 6.667.061.108.103.14.553.183l.014-.014zM11.93 4.05a.743.743 0 00-.675.76c.005.295.155.515.417.651l.075.131c-.019.328-.014.099-.047 1.388l-.084.084c-1.43-.009-1.482.01-1.744-.089-.094-.037-.14-.009-.16.09l-.154.843c-.01.052.07.277.183-.009.164-.417.37-.375 1.884-.399l.061.052a679.99 679.99 0 00-.173 5.687l-.094.127c-.544.173-1.153.801-.933 1.706.277 1.14 1.472 1.097 1.599 1.093 1.378-.066 1.575-1.191 1.51-1.744a1.153 1.153 0 00-.582-.905 3.21 3.21 0 00-.408-.188l-.056-.07-.174-5.725.047-.042c2.124.108 1.6.108 1.834.563l.121.01.038-.957-.122-.09a1.629 1.629 0 01-.258.038v.005c-.539.014-1.613.019-1.617.019l-.057-.052c-.051-1.613-.046-1.383-.046-1.411l.103-.202c.384-.244.436-.797.117-1.134a.687.687 0 00-.605-.23zm.07.394c.47 0 .45.703-.004.698-.45-.004-.455-.698.004-.698zM5.352 6.55c-.201.01-.417.037-.647.089-1.397.319-2.011 1.608-1.885 2.822.31 3.005 4.304 2.4 4.375 1.974 0-.01.075-.39.16-.895v-.047l-.141-.108c-.272.014.112.863-1.163.961-1.74.127-2.55-1.266-2.537-2.386.038-2.724 3.353-2.242 3.503-1.191.018.131-.005.422.187.342l.075-.108c.005-.037.052-.848.061-1.083.005-.131-.042-.173-.169-.187-.698-.09-1.214-.216-1.819-.183zm12.645 1.477l-.056.037c-.066.066-.014-.023-.863 1.95a6.97 6.97 0 01-.192.427.285.285 0 01-.277.16c-.112.004-.103.15.038.15h1.233c.183 0 .107-.15-.033-.174-.202-.042-.633.047-.572-.103.065-.174.136-.347.21-.516l.076-.047c.23-.014.455-.014.684-.004l.094.065c.061.16.127.32.192.478.09.207-.103.235.02.263l.168.038c.136.004-.506-.005 2.377.014.258 0 .192-.15.248-.483h-.004c.018-.108-.099-.263-.178.01-.052.177-.127.177-.75.158l-.15-.117c-.024-.108-.015-1.856-.015-1.931v-.02l.127-.116c.305-.033.169-.16.056-.16-1.06-.004-1.008 0-1.017.01-.117.112-.01.14.004.14.15.024.258-.01.258.202v1.936c-.004.15-.023.207-.197.202-.028 0-.206.033-.3-.094-.243-.338-.97-2.279-1.106-2.433l-.019-.019zm-2.363.028c-.399-.005-.867.08-1.196.408-.46.464-.66 1.603.324 2.123.623.333 1.458.17 1.533.16.31-.042.281-.59.281-.596-.042-.136-.089-.112-.145-.051-.047.051-.047.272-.324.356-.323.099-1.078.08-1.355-.647-.262-.694.043-1.781 1.276-1.416.21.061.337.202.356.427.01.112.127.117.16.014.009-.033.009-.206.028-.455.009-.136-.024-.192-.141-.22-.066-.014-.399-.099-.797-.103zm-4.534.051l-.895.005c-.155.052-.155.14.033.16.136.009.15.056.15.318-.01 2.124-.01 1.744-.024 1.904l-.103.098a.534.534 0 01-.464-.15c-.488-.51-.764-.867-.811-.924.098-.107.197-.21.29-.314.413-.468.038-1.012-.375-1.06-.347-.041-.853-.037-1.406-.032-.094 0-.277.122.051.16.132.013.155.07.155.23 0 .098-.014.674-.01 1.88 0 .332-.163.112-.276.285l.127.085h.914c.178 0 .178-.17-.042-.165-.188.005-.146-.056-.188-.825-.004-.093.31-.084.385.019.501.685.633.975 1.134.975.488-.004.97 0 1.458 0 .183 0 .118-.16 0-.16-.225.006-.234-.06-.239-.102-.014-.122-.033.051-.019-2.007.005-.169.02-.206.188-.216h.01c.168-.14-.029-.164-.043-.164zm1.735.005c-.084 0-.14.089-.019.145.07.033.22-.042.22.197-.009 2.208.052 2.133-.159 2.133-.16 0-.178.16 0 .16.37.005.708.005 1.013.005.122 0 .126-.155.005-.16-.146-.005-.282.024-.282-.169-.037-1.978 0-2.044 0-2.053.014-.131.15-.094.197-.117.108-.057.066-.104.019-.132zm-4.501.267a.493.493 0 01.581.432c.02.112.066.693-.572.628l-.098-.122c-.005-.23 0-.661 0-.872zm9.578.492l.286.741h-.576c.094-.244.187-.483.29-.74zM7.954 12.36c.174.004.361.037.408.051.708.207.868 1.144.586 1.824-.215.52-.66.399-1.2.342-.113-.01-.127-.028-.127-.14v-1.95c-.004-.104.16-.132.333-.127zm10.202.745c-.426.047-.06.024-1.744.028-.178 0-.169.16.028.16l.005.004c.178 0 .295-.23.183 2.406-.01.145-.14.112-.192.121-.113.02-.136.136-.01.16.033.004-.089.01 1.65.014.212 0 .216-.094.216-.113.019-.15.038-.3.061-.454.014-.113-.112-.136-.15-.029-.094.268.01.291-.769.268-.22-.005-.183-.188-.183-.765 0-.398-.117-.323.605-.28.174.009.117.154.174.248l.122-.014.051-.535c.01-.164-.122-.089-.14-.084-.254.089-.591.06-.737.07l-.075-.07v-.755l.075-.07c.633.028.718-.01.737.239.009.13.15.108.159.009.014-.16.033-.319.047-.478zm-3.061.028h-1.083c-.113 0-.132.132-.019.15.136.019.253 0 .267.174.01.15.028 1.495-.019 2.24-.009.15-.145.109-.239.132-.075.019-.07.145.02.16l1.79.009c.056 0 .258.056.244-.581 0-.01-.042-.155-.127-.052-.178.22.15.352-.881.295-.108-.004-.155-.065-.16-.168-.028-.582-.018-1.852-.018-1.946 0-.277.112-.24.234-.258.164-.014.145-.155-.01-.155zm-3.596.46c.014.093-.047 1.753-.052 1.847-.019.394 1.196.59 1.182.122 0-.024-.052-1.735-.052-1.833l.019-.005c.576.445.483 1.467.253 1.828a.844.844 0 01-1.05.333c-.98-.403-.961-1.94-.3-2.292zm1.28 4.402c9.039.005 8.504-.005 8.51.014-.723.417-8.459 4.815-9.256 5.275h-.159c-.825-.479-9.063-5.21-9.185-5.284h8.575c.094 0 .094 0 .094.094a67.963 67.963 0 01-.07 2.25c-.01.174.023.347.094.506.201.483.393.97.59 1.454.047.108.061.084.094.004.652-1.533.605-1.425.633-1.51.037-.116.056-.238.06-.36 0-.277-.055-2.358-.055-2.363z" }) + ] + } + ); +}); + +exports.default = SiCriticalrole; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.d.ts new file mode 100644 index 000000000..b34f8ac17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCriticalrole: IconType; +export { SiCriticalrole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.mjs new file mode 100644 index 000000000..53b304dd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCriticalrole.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCriticalrole = React.forwardRef(function SiCriticalrole2({ title = "Critical Role", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.014 0c-.51.281-9.231 5.256-10.323 5.87a.23.23 0 00-.136.23v11.866l.089.15c.004.005 6.521 3.746 10.24 5.884h.14c.52-.295 9.26-5.28 10.263-5.842a.282.282 0 00.16-.272c-.006-3.915-.006-7.825 0-11.74 0-.145-.034-.253-.174-.309L12.094 0zm.324.863c3.066 1.763 6.123 3.516 9.19 5.279-.352.136-4.825 1.819-4.83 1.819l-.033.066c.038.084.07.173.099.262l.089.042c.117-.047 4.876-1.838 4.96-1.861v10.802c-.004-.005-3.282-5.692-3.624-6.282-.051-.085-.051-.085-.145-.07-.333.065-.207.037-.314.065l3.807 6.601h-8.754l-.089-.075-.042-1.256-.07-.061c-.366.065-.741.07-1.107.014l-.065.06v.517l-.047.051c-.807-.117-.643.01-1.937-1.547-.126-.15-.239-.31-.36-.464l-.01-.01.01-.098c.398-.478.745-.844.703-1.528a1.14 1.14 0 00-.586-.957c-.47-.277-1.05-.225-2.626-.225-.178 0-.22.178-.084.225l.22.028c.235.047.253.127.253.633.005 3.3.01 3.085-.051 3.723-.024.244-.16.173-.31.206l-.094.084.08.141c.099.028 1.505.024 1.58.005.16-.042.122-.22-.023-.23-.352-.028-.432-.019-.455-.225-.042-.347-.033-.3-.047-1.528l.084-.085c.624 0 .68-.033.783.113.338.46.68.914 1.027 1.369.338.445.652.59 1.004.595.97.01.862-.014.862.047v.417l-.08.08H2.553c-.089 0-.098.01-.06-.052l3.164-5.485-.038-.066c-.286-.018-.351-.06-.426.07l-3.005 5.205V6.47c.121.033 1.251.469 1.256.469.108.042.14.042.502-.24l-1.449-.543-.005-.019c3.034-1.73 6.067-3.46 9.1-5.185l.01.01h-.005c-1.34 2.32-2.686 4.65-4.041 6.985.16 0 .295.005.436-.005.084-.005 3.577-6.17 4.004-6.859.398.68 3.797 6.587 3.844 6.667.061.108.103.14.553.183l.014-.014zM11.93 4.05a.743.743 0 00-.675.76c.005.295.155.515.417.651l.075.131c-.019.328-.014.099-.047 1.388l-.084.084c-1.43-.009-1.482.01-1.744-.089-.094-.037-.14-.009-.16.09l-.154.843c-.01.052.07.277.183-.009.164-.417.37-.375 1.884-.399l.061.052a679.99 679.99 0 00-.173 5.687l-.094.127c-.544.173-1.153.801-.933 1.706.277 1.14 1.472 1.097 1.599 1.093 1.378-.066 1.575-1.191 1.51-1.744a1.153 1.153 0 00-.582-.905 3.21 3.21 0 00-.408-.188l-.056-.07-.174-5.725.047-.042c2.124.108 1.6.108 1.834.563l.121.01.038-.957-.122-.09a1.629 1.629 0 01-.258.038v.005c-.539.014-1.613.019-1.617.019l-.057-.052c-.051-1.613-.046-1.383-.046-1.411l.103-.202c.384-.244.436-.797.117-1.134a.687.687 0 00-.605-.23zm.07.394c.47 0 .45.703-.004.698-.45-.004-.455-.698.004-.698zM5.352 6.55c-.201.01-.417.037-.647.089-1.397.319-2.011 1.608-1.885 2.822.31 3.005 4.304 2.4 4.375 1.974 0-.01.075-.39.16-.895v-.047l-.141-.108c-.272.014.112.863-1.163.961-1.74.127-2.55-1.266-2.537-2.386.038-2.724 3.353-2.242 3.503-1.191.018.131-.005.422.187.342l.075-.108c.005-.037.052-.848.061-1.083.005-.131-.042-.173-.169-.187-.698-.09-1.214-.216-1.819-.183zm12.645 1.477l-.056.037c-.066.066-.014-.023-.863 1.95a6.97 6.97 0 01-.192.427.285.285 0 01-.277.16c-.112.004-.103.15.038.15h1.233c.183 0 .107-.15-.033-.174-.202-.042-.633.047-.572-.103.065-.174.136-.347.21-.516l.076-.047c.23-.014.455-.014.684-.004l.094.065c.061.16.127.32.192.478.09.207-.103.235.02.263l.168.038c.136.004-.506-.005 2.377.014.258 0 .192-.15.248-.483h-.004c.018-.108-.099-.263-.178.01-.052.177-.127.177-.75.158l-.15-.117c-.024-.108-.015-1.856-.015-1.931v-.02l.127-.116c.305-.033.169-.16.056-.16-1.06-.004-1.008 0-1.017.01-.117.112-.01.14.004.14.15.024.258-.01.258.202v1.936c-.004.15-.023.207-.197.202-.028 0-.206.033-.3-.094-.243-.338-.97-2.279-1.106-2.433l-.019-.019zm-2.363.028c-.399-.005-.867.08-1.196.408-.46.464-.66 1.603.324 2.123.623.333 1.458.17 1.533.16.31-.042.281-.59.281-.596-.042-.136-.089-.112-.145-.051-.047.051-.047.272-.324.356-.323.099-1.078.08-1.355-.647-.262-.694.043-1.781 1.276-1.416.21.061.337.202.356.427.01.112.127.117.16.014.009-.033.009-.206.028-.455.009-.136-.024-.192-.141-.22-.066-.014-.399-.099-.797-.103zm-4.534.051l-.895.005c-.155.052-.155.14.033.16.136.009.15.056.15.318-.01 2.124-.01 1.744-.024 1.904l-.103.098a.534.534 0 01-.464-.15c-.488-.51-.764-.867-.811-.924.098-.107.197-.21.29-.314.413-.468.038-1.012-.375-1.06-.347-.041-.853-.037-1.406-.032-.094 0-.277.122.051.16.132.013.155.07.155.23 0 .098-.014.674-.01 1.88 0 .332-.163.112-.276.285l.127.085h.914c.178 0 .178-.17-.042-.165-.188.005-.146-.056-.188-.825-.004-.093.31-.084.385.019.501.685.633.975 1.134.975.488-.004.97 0 1.458 0 .183 0 .118-.16 0-.16-.225.006-.234-.06-.239-.102-.014-.122-.033.051-.019-2.007.005-.169.02-.206.188-.216h.01c.168-.14-.029-.164-.043-.164zm1.735.005c-.084 0-.14.089-.019.145.07.033.22-.042.22.197-.009 2.208.052 2.133-.159 2.133-.16 0-.178.16 0 .16.37.005.708.005 1.013.005.122 0 .126-.155.005-.16-.146-.005-.282.024-.282-.169-.037-1.978 0-2.044 0-2.053.014-.131.15-.094.197-.117.108-.057.066-.104.019-.132zm-4.501.267a.493.493 0 01.581.432c.02.112.066.693-.572.628l-.098-.122c-.005-.23 0-.661 0-.872zm9.578.492l.286.741h-.576c.094-.244.187-.483.29-.74zM7.954 12.36c.174.004.361.037.408.051.708.207.868 1.144.586 1.824-.215.52-.66.399-1.2.342-.113-.01-.127-.028-.127-.14v-1.95c-.004-.104.16-.132.333-.127zm10.202.745c-.426.047-.06.024-1.744.028-.178 0-.169.16.028.16l.005.004c.178 0 .295-.23.183 2.406-.01.145-.14.112-.192.121-.113.02-.136.136-.01.16.033.004-.089.01 1.65.014.212 0 .216-.094.216-.113.019-.15.038-.3.061-.454.014-.113-.112-.136-.15-.029-.094.268.01.291-.769.268-.22-.005-.183-.188-.183-.765 0-.398-.117-.323.605-.28.174.009.117.154.174.248l.122-.014.051-.535c.01-.164-.122-.089-.14-.084-.254.089-.591.06-.737.07l-.075-.07v-.755l.075-.07c.633.028.718-.01.737.239.009.13.15.108.159.009.014-.16.033-.319.047-.478zm-3.061.028h-1.083c-.113 0-.132.132-.019.15.136.019.253 0 .267.174.01.15.028 1.495-.019 2.24-.009.15-.145.109-.239.132-.075.019-.07.145.02.16l1.79.009c.056 0 .258.056.244-.581 0-.01-.042-.155-.127-.052-.178.22.15.352-.881.295-.108-.004-.155-.065-.16-.168-.028-.582-.018-1.852-.018-1.946 0-.277.112-.24.234-.258.164-.014.145-.155-.01-.155zm-3.596.46c.014.093-.047 1.753-.052 1.847-.019.394 1.196.59 1.182.122 0-.024-.052-1.735-.052-1.833l.019-.005c.576.445.483 1.467.253 1.828a.844.844 0 01-1.05.333c-.98-.403-.961-1.94-.3-2.292zm1.28 4.402c9.039.005 8.504-.005 8.51.014-.723.417-8.459 4.815-9.256 5.275h-.159c-.825-.479-9.063-5.21-9.185-5.284h8.575c.094 0 .094 0 .094.094a67.963 67.963 0 01-.07 2.25c-.01.174.023.347.094.506.201.483.393.97.59 1.454.047.108.061.084.094.004.652-1.533.605-1.425.633-1.51.037-.116.056-.238.06-.36 0-.277-.055-2.358-.055-2.363z" }) + ] + } + ); +}); + +export { SiCriticalrole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.cjs new file mode 100644 index 000000000..c97f471c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E3340"; +const SiCrowdin = React__namespace.forwardRef(function SiCrowdin2({ title = "Crowdin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.119 17.793a2.619 2.619 0 0 1-1.667-.562c-.546-.436-1.004-1.09-1.018-1.858-.008-.388.414-.388.414-.388l1.018-.008c.332.008.43.47.445.586.128 1.04.717 1.495 1.168 1.702.273.123.204.513-.362.528zm-5.695-5.287L8.5 12.252c-.867-.214-.844-.982-.807-1.247a5.119 5.119 0 0 1 .814-2.125c.545-.804 1.303-1.508 2.29-2.073 1.856-1.074 4.45-1.673 7.31-1.673 2.09 0 4.256.27 4.29.27.197.025.328.213.333.437a.377.377 0 0 1-.355.393l-.92-.01c-2.902 0-4.968.394-6.506 1.248-1.527.837-2.57 2.117-3.287 4.012-.076.163-.335 1.12-1.24 1.022zm2.533 7.823c-1.44 0-2.797-.622-3.825-1.746-.87-.96-1.397-1.931-1.493-3.164-.06-.813.3-1.094.788-1.044l1.988.218c.45.092.75.34.825.854.397 2.736 2.122 3.814 3.15 4.046.18.042.292.157.283.365a.412.412 0 0 1-.322.398c-.458.074-.936.073-1.394.073zm-4.101 2.418a14.216 14.216 0 0 1-2.307-.214c-1.202-.214-2.208-.582-3.072-1.13C1.41 20.095.163 17.786.014 15.048c-.037-.65-.11-1.89 1.427-1.797.638.033 1.653.343 2.368.548.887.247 1.314.933 1.314 1.608 0 3.858 3.494 6.408 5.02 6.408.654 0 .414.701.127.779-.502.136-1.15.153-1.413.153zM3.525 11.419c-.605-.109-1.194-.358-1.768-.5C-.018 10.479.284 8.688.45 8.196c1.617-4.757 6.746-6.35 10.887-6.773 3.898-.4 7.978-.092 11.778.967.31.083 1.269.327.718.891-.35.358-1.7-.016-2.073-.041-2.23-.167-4.434-.192-6.656.15-2.349.357-4.768 1.099-6.71 2.665-.938.758-1.76 1.723-2.313 2.866-.144.3-.256.6-.354.9-.11.327-.47 1.91-2.215 1.6zm9.94.917c.332-1.488 1.81-3.848 6.385-3.686 1.05.033.57.749.052.731-2.586-.09-3.815 1.578-4.457 3.27-.219.546-.68.626-1.271.53-.415-.074-.866-.123-.71-.846Z" }) + ] + } + ); +}); + +exports.default = SiCrowdin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.d.ts new file mode 100644 index 000000000..419ce69cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E3340"; +declare const SiCrowdin: IconType; +export { SiCrowdin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.mjs new file mode 100644 index 000000000..9039af118 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E3340"; +const SiCrowdin = React.forwardRef(function SiCrowdin2({ title = "Crowdin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.119 17.793a2.619 2.619 0 0 1-1.667-.562c-.546-.436-1.004-1.09-1.018-1.858-.008-.388.414-.388.414-.388l1.018-.008c.332.008.43.47.445.586.128 1.04.717 1.495 1.168 1.702.273.123.204.513-.362.528zm-5.695-5.287L8.5 12.252c-.867-.214-.844-.982-.807-1.247a5.119 5.119 0 0 1 .814-2.125c.545-.804 1.303-1.508 2.29-2.073 1.856-1.074 4.45-1.673 7.31-1.673 2.09 0 4.256.27 4.29.27.197.025.328.213.333.437a.377.377 0 0 1-.355.393l-.92-.01c-2.902 0-4.968.394-6.506 1.248-1.527.837-2.57 2.117-3.287 4.012-.076.163-.335 1.12-1.24 1.022zm2.533 7.823c-1.44 0-2.797-.622-3.825-1.746-.87-.96-1.397-1.931-1.493-3.164-.06-.813.3-1.094.788-1.044l1.988.218c.45.092.75.34.825.854.397 2.736 2.122 3.814 3.15 4.046.18.042.292.157.283.365a.412.412 0 0 1-.322.398c-.458.074-.936.073-1.394.073zm-4.101 2.418a14.216 14.216 0 0 1-2.307-.214c-1.202-.214-2.208-.582-3.072-1.13C1.41 20.095.163 17.786.014 15.048c-.037-.65-.11-1.89 1.427-1.797.638.033 1.653.343 2.368.548.887.247 1.314.933 1.314 1.608 0 3.858 3.494 6.408 5.02 6.408.654 0 .414.701.127.779-.502.136-1.15.153-1.413.153zM3.525 11.419c-.605-.109-1.194-.358-1.768-.5C-.018 10.479.284 8.688.45 8.196c1.617-4.757 6.746-6.35 10.887-6.773 3.898-.4 7.978-.092 11.778.967.31.083 1.269.327.718.891-.35.358-1.7-.016-2.073-.041-2.23-.167-4.434-.192-6.656.15-2.349.357-4.768 1.099-6.71 2.665-.938.758-1.76 1.723-2.313 2.866-.144.3-.256.6-.354.9-.11.327-.47 1.91-2.215 1.6zm9.94.917c.332-1.488 1.81-3.848 6.385-3.686 1.05.033.57.749.052.731-2.586-.09-3.815 1.578-4.457 3.27-.219.546-.68.626-1.271.53-.415-.074-.866-.123-.71-.846Z" }) + ] + } + ); +}); + +export { SiCrowdin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.cjs new file mode 100644 index 000000000..87201ed30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiCrowdsource = React__namespace.forwardRef(function SiCrowdsource2({ title = "Crowdsource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0002 1.7719c-1.1291 0-2.0448.9157-2.0448 2.0448s.9157 2.0468 2.0448 2.0468 2.0448-.9177 2.0448-2.0468-.9157-2.0448-2.0448-2.0448zM7.3637 5.4534c-1.1291 0-2.0448.9177-2.0448 2.0468S6.2346 9.545 7.3637 9.545s2.0448-.9157 2.0448-2.0448-.9157-2.0468-2.0448-2.0468zm9.2731 0c-1.1291 0-2.0448.9177-2.0448 2.0468s.9157 2.0448 2.0448 2.0448 2.0448-.9157 2.0448-2.0448-.9157-2.0468-2.0448-2.0468zM1.3463 7.6369a1.3178 1.3178 0 0 0-.9296.3594c-.495.465-.5563 1.2308-.1445 1.7695.6607.864 1.9925 2.604 2.6522 3.4647a5.401 5.401 0 0 1 1.1113 3.2831c0 1.5191.7096 2.9662 1.9491 3.8416.767.5425 1.6144.9821 2.5155 1.3002v-3.9329c0-.5925.1911-1.1709.4717-1.6529-.1028-.9491-.5204-1.8117-1.1982-2.4953L2.3424 8.1056c-.2617-.2888-.6256-.4685-.9961-.4687zm21.3098 0a1.3178 1.3178 0 0 0-.916.3906l-4.5447 4.574-.9687.9746c-.6773.682-1.0948 1.5476-1.1987 2.4937.2654.4549.4544.9933.4722 1.5491v4.0389a10.2809 10.2809 0 0 0 2.5155-1.3027c1.2382-.8755 1.9491-2.3226 1.9491-3.8416a5.4125 5.4125 0 0 1 1.1113-3.285c.5943-.778 2.0414-2.6661 2.6522-3.4628.4118-.5386.3491-1.3045-.1445-1.7695a1.3143 1.3143 0 0 0-.9277-.3593zm-10.6559 1.498c-1.1291 0-2.0448.9177-2.0448 2.0468s.9157 2.0448 2.0448 2.0448 2.0448-.9157 2.0448-2.0448c.0001-1.1291-.9157-2.0468-2.0448-2.0468zm.002 5.7283c-1.6582 0-3.0018 1.2802-3.0018 2.8593v4.0916c.9518.2673 1.9567.414 2.9999.414s2.0481-.1454 2.9999-.414v-4.1795c-.0492-1.5382-1.3712-2.7714-2.998-2.7714z" }) + ] + } + ); +}); + +exports.default = SiCrowdsource; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.d.ts new file mode 100644 index 000000000..51dc1410f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiCrowdsource: IconType; +export { SiCrowdsource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.mjs new file mode 100644 index 000000000..f69db6d7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrowdsource.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiCrowdsource = React.forwardRef(function SiCrowdsource2({ title = "Crowdsource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0002 1.7719c-1.1291 0-2.0448.9157-2.0448 2.0448s.9157 2.0468 2.0448 2.0468 2.0448-.9177 2.0448-2.0468-.9157-2.0448-2.0448-2.0448zM7.3637 5.4534c-1.1291 0-2.0448.9177-2.0448 2.0468S6.2346 9.545 7.3637 9.545s2.0448-.9157 2.0448-2.0448-.9157-2.0468-2.0448-2.0468zm9.2731 0c-1.1291 0-2.0448.9177-2.0448 2.0468s.9157 2.0448 2.0448 2.0448 2.0448-.9157 2.0448-2.0448-.9157-2.0468-2.0448-2.0468zM1.3463 7.6369a1.3178 1.3178 0 0 0-.9296.3594c-.495.465-.5563 1.2308-.1445 1.7695.6607.864 1.9925 2.604 2.6522 3.4647a5.401 5.401 0 0 1 1.1113 3.2831c0 1.5191.7096 2.9662 1.9491 3.8416.767.5425 1.6144.9821 2.5155 1.3002v-3.9329c0-.5925.1911-1.1709.4717-1.6529-.1028-.9491-.5204-1.8117-1.1982-2.4953L2.3424 8.1056c-.2617-.2888-.6256-.4685-.9961-.4687zm21.3098 0a1.3178 1.3178 0 0 0-.916.3906l-4.5447 4.574-.9687.9746c-.6773.682-1.0948 1.5476-1.1987 2.4937.2654.4549.4544.9933.4722 1.5491v4.0389a10.2809 10.2809 0 0 0 2.5155-1.3027c1.2382-.8755 1.9491-2.3226 1.9491-3.8416a5.4125 5.4125 0 0 1 1.1113-3.285c.5943-.778 2.0414-2.6661 2.6522-3.4628.4118-.5386.3491-1.3045-.1445-1.7695a1.3143 1.3143 0 0 0-.9277-.3593zm-10.6559 1.498c-1.1291 0-2.0448.9177-2.0448 2.0468s.9157 2.0448 2.0448 2.0448 2.0448-.9157 2.0448-2.0448c.0001-1.1291-.9157-2.0468-2.0448-2.0468zm.002 5.7283c-1.6582 0-3.0018 1.2802-3.0018 2.8593v4.0916c.9518.2673 1.9567.414 2.9999.414s2.0481-.1454 2.9999-.414v-4.1795c-.0492-1.5382-1.3712-2.7714-2.998-2.7714z" }) + ] + } + ); +}); + +export { SiCrowdsource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.cjs new file mode 100644 index 000000000..cc1a8ccc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0288D1"; +const SiCrunchbase = React__namespace.forwardRef(function SiCrunchbase2({ title = "Crunchbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v19.2A2.41 2.41 0 0 0 2.4 24h19.2a2.41 2.41 0 0 0 2.4-2.4V2.4A2.41 2.41 0 0 0 21.6 0zM7.045 14.465A2.11 2.11 0 0 0 9.84 13.42h1.66a3.69 3.69 0 1 1 0-1.75H9.84a2.11 2.11 0 1 0-2.795 2.795zm11.345.845a3.55 3.55 0 0 1-1.06.63 3.68 3.68 0 0 1-3.39-.38v.38h-1.51V5.37h1.5v4.11a3.74 3.74 0 0 1 1.8-.63H16a3.67 3.67 0 0 1 2.39 6.46zm-.223-2.766a2.104 2.104 0 1 1-4.207 0 2.104 2.104 0 0 1 4.207 0z" }) + ] + } + ); +}); + +exports.default = SiCrunchbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.d.ts new file mode 100644 index 000000000..d55948e3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0288D1"; +declare const SiCrunchbase: IconType; +export { SiCrunchbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.mjs new file mode 100644 index 000000000..8ece149c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0288D1"; +const SiCrunchbase = React.forwardRef(function SiCrunchbase2({ title = "Crunchbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v19.2A2.41 2.41 0 0 0 2.4 24h19.2a2.41 2.41 0 0 0 2.4-2.4V2.4A2.41 2.41 0 0 0 21.6 0zM7.045 14.465A2.11 2.11 0 0 0 9.84 13.42h1.66a3.69 3.69 0 1 1 0-1.75H9.84a2.11 2.11 0 1 0-2.795 2.795zm11.345.845a3.55 3.55 0 0 1-1.06.63 3.68 3.68 0 0 1-3.39-.38v.38h-1.51V5.37h1.5v4.11a3.74 3.74 0 0 1 1.8-.63H16a3.67 3.67 0 0 1 2.39 6.46zm-.223-2.766a2.104 2.104 0 1 1-4.207 0 2.104 2.104 0 0 1 4.207 0z" }) + ] + } + ); +}); + +export { SiCrunchbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.cjs new file mode 100644 index 000000000..ac86f55ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5E00"; +const SiCrunchyroll = React__namespace.forwardRef(function SiCrunchyroll2({ title = "Crunchyroll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.909 13.436C2.914 7.61 7.642 2.893 13.468 2.898c5.576.005 10.137 4.339 10.51 9.819q.021-.351.022-.706C24.007 5.385 18.64.006 12.012 0S.007 5.36 0 11.988 5.36 23.994 11.988 24q.412 0 .815-.027c-5.526-.338-9.9-4.928-9.894-10.538Zm16.284.155a4.1 4.1 0 0 1-4.095-4.103 4.1 4.1 0 0 1 2.712-3.855 8.95 8.95 0 0 0-4.187-1.037 9.007 9.007 0 1 0 8.997 9.016q-.001-.847-.15-1.651a4.1 4.1 0 0 1-3.278 1.63Z" }) + ] + } + ); +}); + +exports.default = SiCrunchyroll; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.d.ts new file mode 100644 index 000000000..2aa4478f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5E00"; +declare const SiCrunchyroll: IconType; +export { SiCrunchyroll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.mjs new file mode 100644 index 000000000..62228ad58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrunchyroll.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5E00"; +const SiCrunchyroll = React.forwardRef(function SiCrunchyroll2({ title = "Crunchyroll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.909 13.436C2.914 7.61 7.642 2.893 13.468 2.898c5.576.005 10.137 4.339 10.51 9.819q.021-.351.022-.706C24.007 5.385 18.64.006 12.012 0S.007 5.36 0 11.988 5.36 23.994 11.988 24q.412 0 .815-.027c-5.526-.338-9.9-4.928-9.894-10.538Zm16.284.155a4.1 4.1 0 0 1-4.095-4.103 4.1 4.1 0 0 1 2.712-3.855 8.95 8.95 0 0 0-4.187-1.037 9.007 9.007 0 1 0 8.997 9.016q-.001-.847-.15-1.651a4.1 4.1 0 0 1-3.278 1.63Z" }) + ] + } + ); +}); + +export { SiCrunchyroll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.cjs new file mode 100644 index 000000000..820086dcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCryengine = React__namespace.forwardRef(function SiCryengine2({ title = "CRYENGINE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.714 14.8735c.296 0 .58.102.807.288l.014.012-.149.238c-.184-.168-.421-.26-.671-.26-.549 0-.995.446-.995.995 0 .549.446.995.995.995.497 0 .91-.366.983-.842l.002-.014h-.852l.173-.277h.966v.139c0 .702-.571 1.273-1.272 1.273-.702 0-1.272-.571-1.272-1.273-.002-.703.569-1.274 1.271-1.274zm-13.442 0c.347 0 .68.144.918.392l.012.013-.157.242c-.19-.235-.47-.37-.774-.37-.549 0-.995.446-.995.995 0 .549.446.995.995.995.287 0 .559-.123.748-.339l.01-.012.211.18c-.24.285-.594.448-.968.448-.701 0-1.272-.57-1.272-1.272 0-.701.571-1.272 1.272-1.272zm2.44.015c.639 0 .894.3.894.733 0 .363-.184.619-.621.706l-.014.003.702 1.075h-.336l-.663-1.058h-.478v1.058h-.273v-2.517zm5.88 2.273v.244H7.87v-.244zm-4.018-2.273l.691 1.149c.024.042.038.087.045.115.01-.029.019-.067.043-.109l.006-.01.688-1.145h.297l-1.564 2.518h-.271l.647-1.05-.882-1.468zm17.522 2.273v.244h-1.722v-.244zm-4.561-2.273l1.512 2.085c-.013-.059-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm-1.361 0v2.518h-.272v-2.518zm-6.395 0l1.512 2.085c-.013-.059-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm12.317 1.065v.248h-1.722v-.248zm-13.504 0v.248H7.87v-.248zm-5.876-.821h-.52v.967h.517c.384 0 .615-.112.615-.478-.001-.367-.232-.489-.612-.489zm19.991-.567c.162 0 .293.13.293.292 0 .162-.131.292-.293.292-.162 0-.293-.13-.293-.292.001-.162.132-.292.293-.292zm-.611.323v.244h-1.722v-.244zm-13.504 0v.244h-1.47l.151-.244zm14.115-.274c-.134 0-.242.108-.242.242s.108.242.242.242.243-.108.243-.242c0-.133-.109-.242-.243-.242zm.002.091c.075 0 .108.038.108.091 0 .04-.018.07-.059.084l-.006.002.08.123h-.058l-.067-.104c-.002-.002-.003-.007-.004-.011v-.003h-.058v.118h-.048v-.301h.112zm.001.046h-.065v.091h.064c.041 0 .06-.011.06-.045 0-.033-.019-.046-.059-.046zm-12.801-8.153l.088-.007c-2.36.549-3.761 2.332-3.761 2.564v.001c0 .001.001-.009.002.036v.006h.001c.048.253.745 1.475 3.441 2.201-3.09-.245-4.494-1.748-4.563-2.188l-.001-.014h-.001c0-.046-.001-.037-.001-.034l.001-.013c.037-.452 1.928-2.312 4.794-2.552l.088-.007zm.981-.019c3.209.167 5.076 2.075 5.093 2.609v-.001c0-.002-.001 0-.001.033v.006h-.002c-.025.268-1.045 1.358-2.571 1.86-1.865.613-4.866.39-4.866-1.948 0-1.097.894-1.99 1.992-1.99 1.108 0 1.997.897 1.997 1.995 0 .535-.231 1.053-.581 1.419.327-.006 1.517-.093 2.638-1.017.124-.121.203-.222.236-.284.009-.016.022-.045.02-.072.001-.24-1.288-2.084-3.955-2.61zm-.357 1.427c-.625 0-1.131.506-1.131 1.131s.506 1.131 1.131 1.131c.624 0 1.131-.506 1.131-1.131 0-.624-.506-1.131-1.131-1.131zm5.449 1.182z" }) + ] + } + ); +}); + +exports.default = SiCryengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.d.ts new file mode 100644 index 000000000..f224dfe71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCryengine: IconType; +export { SiCryengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.mjs new file mode 100644 index 000000000..c5d724b26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCryengine = React.forwardRef(function SiCryengine2({ title = "CRYENGINE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.714 14.8735c.296 0 .58.102.807.288l.014.012-.149.238c-.184-.168-.421-.26-.671-.26-.549 0-.995.446-.995.995 0 .549.446.995.995.995.497 0 .91-.366.983-.842l.002-.014h-.852l.173-.277h.966v.139c0 .702-.571 1.273-1.272 1.273-.702 0-1.272-.571-1.272-1.273-.002-.703.569-1.274 1.271-1.274zm-13.442 0c.347 0 .68.144.918.392l.012.013-.157.242c-.19-.235-.47-.37-.774-.37-.549 0-.995.446-.995.995 0 .549.446.995.995.995.287 0 .559-.123.748-.339l.01-.012.211.18c-.24.285-.594.448-.968.448-.701 0-1.272-.57-1.272-1.272 0-.701.571-1.272 1.272-1.272zm2.44.015c.639 0 .894.3.894.733 0 .363-.184.619-.621.706l-.014.003.702 1.075h-.336l-.663-1.058h-.478v1.058h-.273v-2.517zm5.88 2.273v.244H7.87v-.244zm-4.018-2.273l.691 1.149c.024.042.038.087.045.115.01-.029.019-.067.043-.109l.006-.01.688-1.145h.297l-1.564 2.518h-.271l.647-1.05-.882-1.468zm17.522 2.273v.244h-1.722v-.244zm-4.561-2.273l1.512 2.085c-.013-.059-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm-1.361 0v2.518h-.272v-2.518zm-6.395 0l1.512 2.085c-.013-.059-.02-.081-.021-.127v-1.958h.272v2.518h-.258l-1.515-2.092c.01.033.023.078.024.142v1.95h-.272v-2.518zm12.317 1.065v.248h-1.722v-.248zm-13.504 0v.248H7.87v-.248zm-5.876-.821h-.52v.967h.517c.384 0 .615-.112.615-.478-.001-.367-.232-.489-.612-.489zm19.991-.567c.162 0 .293.13.293.292 0 .162-.131.292-.293.292-.162 0-.293-.13-.293-.292.001-.162.132-.292.293-.292zm-.611.323v.244h-1.722v-.244zm-13.504 0v.244h-1.47l.151-.244zm14.115-.274c-.134 0-.242.108-.242.242s.108.242.242.242.243-.108.243-.242c0-.133-.109-.242-.243-.242zm.002.091c.075 0 .108.038.108.091 0 .04-.018.07-.059.084l-.006.002.08.123h-.058l-.067-.104c-.002-.002-.003-.007-.004-.011v-.003h-.058v.118h-.048v-.301h.112zm.001.046h-.065v.091h.064c.041 0 .06-.011.06-.045 0-.033-.019-.046-.059-.046zm-12.801-8.153l.088-.007c-2.36.549-3.761 2.332-3.761 2.564v.001c0 .001.001-.009.002.036v.006h.001c.048.253.745 1.475 3.441 2.201-3.09-.245-4.494-1.748-4.563-2.188l-.001-.014h-.001c0-.046-.001-.037-.001-.034l.001-.013c.037-.452 1.928-2.312 4.794-2.552l.088-.007zm.981-.019c3.209.167 5.076 2.075 5.093 2.609v-.001c0-.002-.001 0-.001.033v.006h-.002c-.025.268-1.045 1.358-2.571 1.86-1.865.613-4.866.39-4.866-1.948 0-1.097.894-1.99 1.992-1.99 1.108 0 1.997.897 1.997 1.995 0 .535-.231 1.053-.581 1.419.327-.006 1.517-.093 2.638-1.017.124-.121.203-.222.236-.284.009-.016.022-.045.02-.072.001-.24-1.288-2.084-3.955-2.61zm-.357 1.427c-.625 0-1.131.506-1.131 1.131s.506 1.131 1.131 1.131c.624 0 1.131-.506 1.131-1.131 0-.624-.506-1.131-1.131-1.131zm5.449 1.182z" }) + ] + } + ); +}); + +export { SiCryengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.cjs new file mode 100644 index 000000000..459043dcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#49B04A"; +const SiCryptomator = React__namespace.forwardRef(function SiCryptomator2({ title = "Cryptomator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.98 7.64c.41-.165 1.463-.51 3.016-.51.86 0 1.745.105 2.643.314-.212-2.883-2.434-5.69-5.668-5.69-3.477 0-5.474 2.799-5.669 5.677.894-.206 1.775-.31 2.63-.31 1.57 0 2.632.351 3.047.518m1.516-1.186a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25c.137 0 .25.113.25.25a.25.25 0 0 1-.249.25zM14 4.073c.72 0 1.313.592 1.313 1.313v.001h-2.626v-.001c0-.721.592-1.313 1.313-1.313m-1.486 1.88c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25m-1.962.5a.25.25 0 0 1-.25-.25c0-.137.113-.25.25-.25a.25.25 0 0 1 .25.25.25.25 0 0 1-.25.25m.981-.5c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.251-.25c0-.137.113-.25.251-.25M9.94 4.073c.721 0 1.313.592 1.313 1.313v.001H8.626v-.001c0-.721.593-1.313 1.313-1.313zM23.804 15.17a1.8 1.8 0 0 0-1.595-.976 1.07 1.07 0 0 0-.064-.821l-.448-.875a1.07 1.07 0 0 0-.79-.57l-.416-.817c.205-.279.316-.617.316-.963a1.632 1.632 0 0 0-1.847-1.61c.037.507.045 1.333-.174 2.121-.065.247-.061.507.011.752q.043.146.087.336.206.038.415.022l.392.766c-.167.31-.171.683-.011.996l.447.874c.13.254.356.446.628.533-.22.305-.339.672-.339 1.049a1.8 1.8 0 0 0 1.591 1.781l.05.003a.435.435 0 0 0 .429-.433.435.435 0 0 0-.382-.43.93.93 0 0 1-.823-.921.93.93 0 0 1 .927-.927c.508 0 .927.418.927.927 0 .157-.04.311-.116.448a.435.435 0 0 0 .373.654.43.43 0 0 0 .385-.236 1.8 1.8 0 0 0 .028-1.683m-19.931-.765.447-.874a1.07 1.07 0 0 0-.01-.997l.39-.765q.179.014.356-.013.04-.185.093-.367c.073-.244.078-.504.014-.751-.215-.781-.206-1.6-.168-2.107a1.634 1.634 0 0 0-1.801 1.616c0 .347.111.685.316.964l-.418.817a1.07 1.07 0 0 0-.79.57l-.447.875a1.07 1.07 0 0 0-.012.95l-.051-.001c-.984 0-1.793.81-1.793 1.793 0 .304.077.603.224.868a.434.434 0 0 0 .758-.418.9.9 0 0 1-.116-.448c0-.509.419-.927.927-.927a.93.93 0 0 1 .927.927.93.93 0 0 1-.824.921.435.435 0 0 0-.382.43c0 .237.194.432.43.433l.05-.002a1.8 1.8 0 0 0 1.593-1.783c0-.423-.15-.833-.423-1.157.307-.071.567-.274.71-.554m15.122 2.278a1.1 1.1 0 0 0-.513-.127h-.877a5.9 5.9 0 0 0 1.003-3.318 6 6 0 0 0-.227-1.707 1.8 1.8 0 0 1-.012-.988c.319-1.15.11-2.421.11-2.421-4.01-1.251-6.502-.01-6.502-.01s-2.487-1.249-6.498-.01c0 0-.214 1.27.102 2.422a1.8 1.8 0 0 1-.015.987c-.111.38-.232.964-.233 1.707a5.9 5.9 0 0 0 1.005 3.338h-.895c-.179 0-.355.044-.513.127-.429.22-.778.709-.981 1.38a4.8 4.8 0 0 0-.14 2.035c.183 1.285.84 2.148 1.635 2.148h2.241v-.002a.45.45 0 0 0 .28-.127l1.077-.95c.22-.197.384-.693.437-1.327a5 5 0 0 0 .016-.562 12 12 0 0 0 2.465 1.002s1.137-.282 2.471-.997q-.008.28.016.557c.053.634.217 1.13.437 1.327l1.077.949a.45.45 0 0 0 .28.127v.001h2.241c.794 0 1.452-.863 1.636-2.148.1-.68.052-1.374-.14-2.035-.203-.67-.553-1.159-.983-1.378M8.755 20.845c-.011.005-.562.495-.875.772a.24.24 0 0 1-.161.062.24.24 0 0 1-.215-.132c-.455-.892-.504-2.705-.182-3.823.546.526 1.15.958 1.736 1.307.033.66-.094 1.692-.303 1.814m4.178-4.573-.968.275-.968-.278.7-2.934a1.25 1.25 0 0 1-.972-1.214c0-.683.563-1.246 1.246-1.246s1.245.563 1.245 1.246c0 .58-.406 1.086-.971 1.214zm3.496 5.274a.243.243 0 0 1-.376.071c-.313-.277-.864-.767-.875-.772-.208-.122-.336-1.15-.303-1.81a9.6 9.6 0 0 0 1.738-1.303c.32 1.118.27 2.926-.184 3.814" }) + ] + } + ); +}); + +exports.default = SiCryptomator; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.d.ts new file mode 100644 index 000000000..0a5d0d0ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#49B04A"; +declare const SiCryptomator: IconType; +export { SiCryptomator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.mjs new file mode 100644 index 000000000..df15814a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptomator.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#49B04A"; +const SiCryptomator = React.forwardRef(function SiCryptomator2({ title = "Cryptomator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.98 7.64c.41-.165 1.463-.51 3.016-.51.86 0 1.745.105 2.643.314-.212-2.883-2.434-5.69-5.668-5.69-3.477 0-5.474 2.799-5.669 5.677.894-.206 1.775-.31 2.63-.31 1.57 0 2.632.351 3.047.518m1.516-1.186a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25c.137 0 .25.113.25.25a.25.25 0 0 1-.249.25zM14 4.073c.72 0 1.313.592 1.313 1.313v.001h-2.626v-.001c0-.721.592-1.313 1.313-1.313m-1.486 1.88c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.25-.25.25.25 0 0 1 .25-.25m-1.962.5a.25.25 0 0 1-.25-.25c0-.137.113-.25.25-.25a.25.25 0 0 1 .25.25.25.25 0 0 1-.25.25m.981-.5c.137 0 .25.113.25.25s-.113.25-.25.25a.25.25 0 0 1-.251-.25c0-.137.113-.25.251-.25M9.94 4.073c.721 0 1.313.592 1.313 1.313v.001H8.626v-.001c0-.721.593-1.313 1.313-1.313zM23.804 15.17a1.8 1.8 0 0 0-1.595-.976 1.07 1.07 0 0 0-.064-.821l-.448-.875a1.07 1.07 0 0 0-.79-.57l-.416-.817c.205-.279.316-.617.316-.963a1.632 1.632 0 0 0-1.847-1.61c.037.507.045 1.333-.174 2.121-.065.247-.061.507.011.752q.043.146.087.336.206.038.415.022l.392.766c-.167.31-.171.683-.011.996l.447.874c.13.254.356.446.628.533-.22.305-.339.672-.339 1.049a1.8 1.8 0 0 0 1.591 1.781l.05.003a.435.435 0 0 0 .429-.433.435.435 0 0 0-.382-.43.93.93 0 0 1-.823-.921.93.93 0 0 1 .927-.927c.508 0 .927.418.927.927 0 .157-.04.311-.116.448a.435.435 0 0 0 .373.654.43.43 0 0 0 .385-.236 1.8 1.8 0 0 0 .028-1.683m-19.931-.765.447-.874a1.07 1.07 0 0 0-.01-.997l.39-.765q.179.014.356-.013.04-.185.093-.367c.073-.244.078-.504.014-.751-.215-.781-.206-1.6-.168-2.107a1.634 1.634 0 0 0-1.801 1.616c0 .347.111.685.316.964l-.418.817a1.07 1.07 0 0 0-.79.57l-.447.875a1.07 1.07 0 0 0-.012.95l-.051-.001c-.984 0-1.793.81-1.793 1.793 0 .304.077.603.224.868a.434.434 0 0 0 .758-.418.9.9 0 0 1-.116-.448c0-.509.419-.927.927-.927a.93.93 0 0 1 .927.927.93.93 0 0 1-.824.921.435.435 0 0 0-.382.43c0 .237.194.432.43.433l.05-.002a1.8 1.8 0 0 0 1.593-1.783c0-.423-.15-.833-.423-1.157.307-.071.567-.274.71-.554m15.122 2.278a1.1 1.1 0 0 0-.513-.127h-.877a5.9 5.9 0 0 0 1.003-3.318 6 6 0 0 0-.227-1.707 1.8 1.8 0 0 1-.012-.988c.319-1.15.11-2.421.11-2.421-4.01-1.251-6.502-.01-6.502-.01s-2.487-1.249-6.498-.01c0 0-.214 1.27.102 2.422a1.8 1.8 0 0 1-.015.987c-.111.38-.232.964-.233 1.707a5.9 5.9 0 0 0 1.005 3.338h-.895c-.179 0-.355.044-.513.127-.429.22-.778.709-.981 1.38a4.8 4.8 0 0 0-.14 2.035c.183 1.285.84 2.148 1.635 2.148h2.241v-.002a.45.45 0 0 0 .28-.127l1.077-.95c.22-.197.384-.693.437-1.327a5 5 0 0 0 .016-.562 12 12 0 0 0 2.465 1.002s1.137-.282 2.471-.997q-.008.28.016.557c.053.634.217 1.13.437 1.327l1.077.949a.45.45 0 0 0 .28.127v.001h2.241c.794 0 1.452-.863 1.636-2.148.1-.68.052-1.374-.14-2.035-.203-.67-.553-1.159-.983-1.378M8.755 20.845c-.011.005-.562.495-.875.772a.24.24 0 0 1-.161.062.24.24 0 0 1-.215-.132c-.455-.892-.504-2.705-.182-3.823.546.526 1.15.958 1.736 1.307.033.66-.094 1.692-.303 1.814m4.178-4.573-.968.275-.968-.278.7-2.934a1.25 1.25 0 0 1-.972-1.214c0-.683.563-1.246 1.246-1.246s1.245.563 1.245 1.246c0 .58-.406 1.086-.971 1.214zm3.496 5.274a.243.243 0 0 1-.376.071c-.313-.277-.864-.767-.875-.772-.208-.122-.336-1.15-.303-1.81a9.6 9.6 0 0 0 1.738-1.303c.32 1.118.27 2.926-.184 3.814" }) + ] + } + ); +}); + +export { SiCryptomator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.cjs new file mode 100644 index 000000000..cae4343ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0087FF"; +const SiCryptpad = React__namespace.forwardRef(function SiCryptpad2({ title = "CryptPad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m2.355 0 .008.717.153 12.23c.045 3.668 1.528 6.09 3.425 7.692 1.897 1.602 4.168 2.444 5.844 3.215l.317.146.308-.164c1.492-.788 3.779-1.625 5.72-3.209 1.943-1.584 3.515-3.997 3.515-7.69V5.97L15.22 0Zm9.729 1.416h1.604v6.016h6.542v3.879H15.4c-.055 1.091-.59 1.926-1.256 2.484l.938 4.97h-2.994v3.655l-.018.008c-1.691-.764-3.651-1.55-5.215-2.87-1.653-1.396-2.884-3.32-2.925-6.628l-.02-1.62h4.674c-.003-.054-.006-.108-.006-.164a3.424 3.424 0 0 1 3.41-3.41l.096.002zm3.02.408 4.513 4.194h-4.513zm-3.112 6.91a2.412 2.412 0 0 0-1.043 4.586l-.844 4.448h3.772l-.842-4.448a2.412 2.412 0 0 0-1.043-4.586z" }) + ] + } + ); +}); + +exports.default = SiCryptpad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.d.ts new file mode 100644 index 000000000..f8fe34ae7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0087FF"; +declare const SiCryptpad: IconType; +export { SiCryptpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.mjs new file mode 100644 index 000000000..5a4125cdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCryptpad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0087FF"; +const SiCryptpad = React.forwardRef(function SiCryptpad2({ title = "CryptPad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m2.355 0 .008.717.153 12.23c.045 3.668 1.528 6.09 3.425 7.692 1.897 1.602 4.168 2.444 5.844 3.215l.317.146.308-.164c1.492-.788 3.779-1.625 5.72-3.209 1.943-1.584 3.515-3.997 3.515-7.69V5.97L15.22 0Zm9.729 1.416h1.604v6.016h6.542v3.879H15.4c-.055 1.091-.59 1.926-1.256 2.484l.938 4.97h-2.994v3.655l-.018.008c-1.691-.764-3.651-1.55-5.215-2.87-1.653-1.396-2.884-3.32-2.925-6.628l-.02-1.62h4.674c-.003-.054-.006-.108-.006-.164a3.424 3.424 0 0 1 3.41-3.41l.096.002zm3.02.408 4.513 4.194h-4.513zm-3.112 6.91a2.412 2.412 0 0 0-1.043 4.586l-.844 4.448h3.772l-.842-4.448a2.412 2.412 0 0 0-1.043-4.586z" }) + ] + } + ); +}); + +export { SiCryptpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.cjs new file mode 100644 index 000000000..fb3a781c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCrystal = React__namespace.forwardRef(function SiCrystal2({ title = "Crystal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.964 15.266l-8.687 8.669c-.034.035-.086.052-.121.035L3.29 20.79c-.052-.017-.087-.052-.087-.086L.007 8.856c-.018-.053 0-.087.035-.122L8.728.065c.035-.035.087-.052.121-.035l11.866 3.18c.052.017.087.052.087.086l3.18 11.848c.034.053.016.087-.018.122zm-11.64-9.433L.667 8.943c-.017 0-.035.034-.017.052l8.53 8.512c.017.017.052.017.052-.017l3.127-11.64c.017 0-.018-.035-.035-.017Z" }) + ] + } + ); +}); + +exports.default = SiCrystal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.d.ts new file mode 100644 index 000000000..761674782 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCrystal: IconType; +export { SiCrystal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.mjs new file mode 100644 index 000000000..9522191f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCrystal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCrystal = React.forwardRef(function SiCrystal2({ title = "Crystal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.964 15.266l-8.687 8.669c-.034.035-.086.052-.121.035L3.29 20.79c-.052-.017-.087-.052-.087-.086L.007 8.856c-.018-.053 0-.087.035-.122L8.728.065c.035-.035.087-.052.121-.035l11.866 3.18c.052.017.087.052.087.086l3.18 11.848c.034.053.016.087-.018.122zm-11.64-9.433L.667 8.943c-.017 0-.035.034-.017.052l8.53 8.512c.017.017.052.017.052-.017l3.127-11.64c.017 0-.018-.035-.035-.017Z" }) + ] + } + ); +}); + +export { SiCrystal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.cjs new file mode 100644 index 000000000..b86b4d486 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC5531"; +const SiCsdn = React__namespace.forwardRef(function SiCsdn2({ title = "CSDN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.693 13.638c-.497.568-1.363.63-1.712.63-.648 0-1.144-.164-1.474-.488-.313-.307-.478-.76-.489-1.346-.025-1.358.744-2.762 2.074-2.762.635 0 1.124.455 1.311.644a.337.337 0 0 0 .282.099.38.38 0 0 0 .241-.159c.068-.087.135-.237.138-.401s-.057-.344-.243-.49a2.642 2.642 0 0 0-1.668-.591c-.819 0-1.627.376-2.218 1.033-.621.691-.953 1.63-.935 2.646.015.815.282 1.5.773 1.982.528.518 1.3.791 2.235.791 1.097 0 1.776-.325 2.154-.597a.584.584 0 0 0 .24-.456.702.702 0 0 0-.208-.497c-.23-.248-.448-.101-.503-.037ZM9.663 11.488a7.471 7.471 0 0 0-.698-.248c-.157-.048-.309-.091-.45-.131-.922-.26-1.027-.5-1.017-.68.022-.363.515-.853 1.352-.792.607.045 1.015.509 1.205.781.149.214.371.135.434.095a.602.602 0 0 0 .309-.514.626.626 0 0 0-.209-.488 2.654 2.654 0 0 0-3.347-.273c-.456.323-.744.772-.77 1.202-.064 1.061 1.015 1.366 1.803 1.588.214.061.429.127.667.202 1.14.357 1.173.717 1.092 1.267-.082.556-.696.834-1.685.761-1.029-.076-1.464-.61-1.612-.901-.05-.098-.205-.248-.413-.156-.514.229-.473.731-.26.993.339.416 1.15 1.035 2.667 1.035 1.734 0 2.255-.875 2.378-1.64.092-.572-.022-1.028-.348-1.396-.236-.267-.592-.495-1.101-.706ZM16.44 9.323c-.598-.431-1.393-.61-2.36-.532-.712.058-1.274.243-1.335.263l-.006.002a.437.437 0 0 0-.297.379l-.47 5.201a.337.337 0 0 0 .247.35l.072.02.066.018.086.021a7.914 7.914 0 0 0 1.64.183c.972 0 1.765-.23 2.36-.684.764-.583 1.141-1.5 1.118-2.725-.021-1.135-.398-1.974-1.121-2.495Zm-.662 4.461c-.836.639-2.09.562-2.677.481a.128.128 0 0 1-.109-.137l.397-4.248a.113.113 0 0 1 .086-.1c.999-.241 1.777-.168 2.312.218.189.137.348.331.471.568.176.339.277.765.286 1.234.017.916-.24 1.583-.765 1.984ZM23.967 10.41a1.92 1.92 0 0 0-.432-.919c-.399-.465-1.029-.689-1.848-.689-.734 0-1.372.228-1.947.799.007-.086.019-.159.018-.223s-.017-.116-.066-.163c-.048-.045-.077-.067-.127-.077-.05-.01-.122-.008-.256-.006a.587.587 0 0 0-.589.54s-.325 3.874-.428 5.165a.308.308 0 0 0 .073.228.36.36 0 0 0 .26.131h.387a.224.224 0 0 0 .226-.205l.273-2.929.014-.147a1.902 1.902 0 0 1 .082-.412c.014-.045.03-.092.047-.14.245-.694.803-1.72 1.971-1.694.84.018 1.449.455 1.385 1.114-.101 1.034-.266 3.1-.358 4.14-.019.209.182.273.252.273h.304a.442.442 0 0 0 .444-.404s.185-2.127.294-3.352l.048-.532a1.959 1.959 0 0 0-.026-.5Z" }) + ] + } + ); +}); + +exports.default = SiCsdn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.d.ts new file mode 100644 index 000000000..d8720dd8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC5531"; +declare const SiCsdn: IconType; +export { SiCsdn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.mjs new file mode 100644 index 000000000..3b3ff9d94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCsdn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC5531"; +const SiCsdn = React.forwardRef(function SiCsdn2({ title = "CSDN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.693 13.638c-.497.568-1.363.63-1.712.63-.648 0-1.144-.164-1.474-.488-.313-.307-.478-.76-.489-1.346-.025-1.358.744-2.762 2.074-2.762.635 0 1.124.455 1.311.644a.337.337 0 0 0 .282.099.38.38 0 0 0 .241-.159c.068-.087.135-.237.138-.401s-.057-.344-.243-.49a2.642 2.642 0 0 0-1.668-.591c-.819 0-1.627.376-2.218 1.033-.621.691-.953 1.63-.935 2.646.015.815.282 1.5.773 1.982.528.518 1.3.791 2.235.791 1.097 0 1.776-.325 2.154-.597a.584.584 0 0 0 .24-.456.702.702 0 0 0-.208-.497c-.23-.248-.448-.101-.503-.037ZM9.663 11.488a7.471 7.471 0 0 0-.698-.248c-.157-.048-.309-.091-.45-.131-.922-.26-1.027-.5-1.017-.68.022-.363.515-.853 1.352-.792.607.045 1.015.509 1.205.781.149.214.371.135.434.095a.602.602 0 0 0 .309-.514.626.626 0 0 0-.209-.488 2.654 2.654 0 0 0-3.347-.273c-.456.323-.744.772-.77 1.202-.064 1.061 1.015 1.366 1.803 1.588.214.061.429.127.667.202 1.14.357 1.173.717 1.092 1.267-.082.556-.696.834-1.685.761-1.029-.076-1.464-.61-1.612-.901-.05-.098-.205-.248-.413-.156-.514.229-.473.731-.26.993.339.416 1.15 1.035 2.667 1.035 1.734 0 2.255-.875 2.378-1.64.092-.572-.022-1.028-.348-1.396-.236-.267-.592-.495-1.101-.706ZM16.44 9.323c-.598-.431-1.393-.61-2.36-.532-.712.058-1.274.243-1.335.263l-.006.002a.437.437 0 0 0-.297.379l-.47 5.201a.337.337 0 0 0 .247.35l.072.02.066.018.086.021a7.914 7.914 0 0 0 1.64.183c.972 0 1.765-.23 2.36-.684.764-.583 1.141-1.5 1.118-2.725-.021-1.135-.398-1.974-1.121-2.495Zm-.662 4.461c-.836.639-2.09.562-2.677.481a.128.128 0 0 1-.109-.137l.397-4.248a.113.113 0 0 1 .086-.1c.999-.241 1.777-.168 2.312.218.189.137.348.331.471.568.176.339.277.765.286 1.234.017.916-.24 1.583-.765 1.984ZM23.967 10.41a1.92 1.92 0 0 0-.432-.919c-.399-.465-1.029-.689-1.848-.689-.734 0-1.372.228-1.947.799.007-.086.019-.159.018-.223s-.017-.116-.066-.163c-.048-.045-.077-.067-.127-.077-.05-.01-.122-.008-.256-.006a.587.587 0 0 0-.589.54s-.325 3.874-.428 5.165a.308.308 0 0 0 .073.228.36.36 0 0 0 .26.131h.387a.224.224 0 0 0 .226-.205l.273-2.929.014-.147a1.902 1.902 0 0 1 .082-.412c.014-.045.03-.092.047-.14.245-.694.803-1.72 1.971-1.694.84.018 1.449.455 1.385 1.114-.101 1.034-.266 3.1-.358 4.14-.019.209.182.273.252.273h.304a.442.442 0 0 0 .444-.404s.185-2.127.294-3.352l.048-.532a1.959 1.959 0 0 0-.026-.5Z" }) + ] + } + ); +}); + +export { SiCsdn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCss.cjs new file mode 100644 index 000000000..f0c0653c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#663399"; +const SiCss = React__namespace.forwardRef(function SiCss2({ title = "CSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v20.16A3.84 3.84 0 0 0 3.84 24h16.32A3.84 3.84 0 0 0 24 20.16V3.84A3.84 3.84 0 0 0 20.16 0Zm14.256 13.08c1.56 0 2.28 1.08 2.304 2.64h-1.608c.024-.288-.048-.6-.144-.84-.096-.192-.288-.264-.552-.264-.456 0-.696.264-.696.84-.024.576.288.888.768 1.08.72.288 1.608.744 1.92 1.296q.432.648.432 1.656c0 1.608-.912 2.592-2.496 2.592-1.656 0-2.4-1.032-2.424-2.688h1.68c0 .792.264 1.176.792 1.176.264 0 .456-.072.552-.24.192-.312.24-1.176-.048-1.512-.312-.408-.912-.6-1.32-.816q-.828-.396-1.224-.936c-.24-.36-.36-.888-.36-1.536 0-1.44.936-2.472 2.424-2.448m5.4 0c1.584 0 2.304 1.08 2.328 2.64h-1.608c0-.288-.048-.6-.168-.84-.096-.192-.264-.264-.528-.264-.48 0-.72.264-.72.84s.288.888.792 1.08c.696.288 1.608.744 1.92 1.296.264.432.408.984.408 1.656.024 1.608-.888 2.592-2.472 2.592-1.68 0-2.424-1.056-2.448-2.688h1.68c0 .744.264 1.176.792 1.176.264 0 .456-.072.552-.24.216-.312.264-1.176-.048-1.512-.288-.408-.888-.6-1.32-.816-.552-.264-.96-.576-1.2-.936s-.36-.888-.36-1.536c-.024-1.44.912-2.472 2.4-2.448m-11.031.018c.711-.006 1.419.198 1.839.63.432.432.672 1.128.648 1.992H9.336c.024-.456-.096-.792-.432-.96-.312-.144-.768-.048-.888.24-.12.264-.192.576-.168.864v3.504c0 .744.264 1.128.768 1.128a.65.65 0 0 0 .552-.264c.168-.24.192-.552.168-.84h1.776c.096 1.632-.984 2.712-2.568 2.688-1.536 0-2.496-.864-2.472-2.472v-4.032c0-.816.24-1.44.696-1.848.432-.408 1.146-.624 1.857-.63" }) + ] + } + ); +}); + +exports.default = SiCss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCss.d.ts new file mode 100644 index 000000000..2ef7fadfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#663399"; +declare const SiCss: IconType; +export { SiCss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCss.mjs new file mode 100644 index 000000000..0b661ba2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#663399"; +const SiCss = React.forwardRef(function SiCss2({ title = "CSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v20.16A3.84 3.84 0 0 0 3.84 24h16.32A3.84 3.84 0 0 0 24 20.16V3.84A3.84 3.84 0 0 0 20.16 0Zm14.256 13.08c1.56 0 2.28 1.08 2.304 2.64h-1.608c.024-.288-.048-.6-.144-.84-.096-.192-.288-.264-.552-.264-.456 0-.696.264-.696.84-.024.576.288.888.768 1.08.72.288 1.608.744 1.92 1.296q.432.648.432 1.656c0 1.608-.912 2.592-2.496 2.592-1.656 0-2.4-1.032-2.424-2.688h1.68c0 .792.264 1.176.792 1.176.264 0 .456-.072.552-.24.192-.312.24-1.176-.048-1.512-.312-.408-.912-.6-1.32-.816q-.828-.396-1.224-.936c-.24-.36-.36-.888-.36-1.536 0-1.44.936-2.472 2.424-2.448m5.4 0c1.584 0 2.304 1.08 2.328 2.64h-1.608c0-.288-.048-.6-.168-.84-.096-.192-.264-.264-.528-.264-.48 0-.72.264-.72.84s.288.888.792 1.08c.696.288 1.608.744 1.92 1.296.264.432.408.984.408 1.656.024 1.608-.888 2.592-2.472 2.592-1.68 0-2.424-1.056-2.448-2.688h1.68c0 .744.264 1.176.792 1.176.264 0 .456-.072.552-.24.216-.312.264-1.176-.048-1.512-.288-.408-.888-.6-1.32-.816-.552-.264-.96-.576-1.2-.936s-.36-.888-.36-1.536c-.024-1.44.912-2.472 2.4-2.448m-11.031.018c.711-.006 1.419.198 1.839.63.432.432.672 1.128.648 1.992H9.336c.024-.456-.096-.792-.432-.96-.312-.144-.768-.048-.888.24-.12.264-.192.576-.168.864v3.504c0 .744.264 1.128.768 1.128a.65.65 0 0 0 .552-.264c.168-.24.192-.552.168-.84h1.776c.096 1.632-.984 2.712-2.568 2.688-1.536 0-2.496-.864-2.472-2.472v-4.032c0-.816.24-1.44.696-1.848.432-.408 1.146-.624 1.857-.63" }) + ] + } + ); +}); + +export { SiCss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.cjs new file mode 100644 index 000000000..96784d017 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#280FEE"; +const SiCssdesignawards = React__namespace.forwardRef(function SiCssdesignawards2({ title = "CSS Design Awards", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.46.93-7.46 7.38 3.73 3.73 3.74 3.65 3.73 3.65 3.74-3.65-7.47-7.38 7.47-7.4zm5.33 3.73-3.67 3.65 7.39 7.38-7.46 7.4h7.46l3.76-3.66 3.73-3.73-3.73-3.65-3.74-3.73z" }) + ] + } + ); +}); + +exports.default = SiCssdesignawards; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.d.ts new file mode 100644 index 000000000..bf64049ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#280FEE"; +declare const SiCssdesignawards: IconType; +export { SiCssdesignawards as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.mjs new file mode 100644 index 000000000..f897e523e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCssdesignawards.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#280FEE"; +const SiCssdesignawards = React.forwardRef(function SiCssdesignawards2({ title = "CSS Design Awards", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.46.93-7.46 7.38 3.73 3.73 3.74 3.65 3.73 3.65 3.74-3.65-7.47-7.38 7.47-7.4zm5.33 3.73-3.67 3.65 7.39 7.38-7.46 7.4h7.46l3.76-3.66 3.73-3.73-3.73-3.65-3.74-3.73z" }) + ] + } + ); +}); + +export { SiCssdesignawards as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.cjs new file mode 100644 index 000000000..d37196a20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCssmodules = React__namespace.forwardRef(function SiCssmodules2({ title = "CSS Modules", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.705 2.147v19.706H0V2.147h19.705ZM.141 21.712h19.423V2.288H.141v19.424Zm2.561-10.444c.428 0 .76.113.996.338.236.225.367.482.393.768h-.446a.926.926 0 0 0-.303-.517c-.15-.128-.362-.191-.635-.191-.333 0-.602.117-.808.352-.204.233-.306.59-.306 1.074 0 .396.092.717.276.964.186.245.462.368.828.368.338 0 .595-.13.771-.389.094-.136.163-.316.21-.538h.446c-.04.356-.172.654-.396.895-.268.29-.63.434-1.086.434-.392 0-.722-.118-.989-.356-.35-.315-.527-.8-.527-1.456 0-.499.132-.907.396-1.226.285-.347.679-.52 1.18-.52Zm2.28 2.38c.01.192.056.348.135.467.152.224.42.336.803.336.172 0 .328-.024.47-.073.272-.095.409-.266.409-.511 0-.184-.058-.315-.173-.393-.116-.077-.299-.144-.547-.2l-.458-.104c-.299-.067-.51-.142-.635-.223-.214-.141-.322-.352-.322-.633 0-.303.105-.553.315-.747.21-.195.508-.292.893-.292.354 0 .655.085.902.257.248.17.372.443.372.82h-.43a.847.847 0 0 0-.147-.417c-.14-.177-.377-.265-.71-.265-.27 0-.465.057-.583.17a.533.533 0 0 0-.177.396c0 .166.07.287.207.364.09.049.295.11.614.184l.474.108c.229.052.405.123.53.214.214.158.321.387.321.687 0 .375-.136.642-.41.803a1.822 1.822 0 0 1-.947.242c-.42 0-.75-.108-.987-.322-.237-.213-.354-.502-.35-.867h.43Zm3.137 0c.011.192.056.348.136.467.152.224.42.336.803.336.171 0 .328-.024.469-.073.273-.095.41-.266.41-.511 0-.184-.058-.315-.173-.393-.117-.077-.3-.144-.548-.2l-.457-.104c-.3-.067-.511-.142-.635-.223-.215-.141-.322-.352-.322-.633 0-.303.105-.553.315-.747.21-.195.508-.292.892-.292.355 0 .655.085.902.257.249.17.373.443.373.82h-.43a.847.847 0 0 0-.148-.417c-.14-.177-.376-.265-.71-.265-.27 0-.464.057-.582.17a.533.533 0 0 0-.177.396c0 .166.069.287.207.364.09.049.295.11.614.184l.474.108c.228.052.404.123.529.214.214.158.322.387.322.687 0 .375-.137.642-.41.803a1.822 1.822 0 0 1-.947.242c-.42 0-.75-.108-.987-.322-.238-.213-.355-.502-.35-.867h.43Zm-6.197 3.6.97 2.857.965-2.857h.648v3.38h-.434v-1.995c0-.07.001-.183.004-.343.003-.16.005-.33.005-.513l-.964 2.85h-.453l-.97-2.85v.104c0 .083 0 .21.004.38.004.168.007.292.007.372v1.994h-.437v-3.379h.655Zm4.743-.091c.597 0 1.038.191 1.325.575.224.299.336.681.336 1.147 0 .505-.128.924-.384 1.259-.3.392-.73.589-1.286.589-.52 0-.929-.172-1.226-.516-.265-.33-.398-.75-.398-1.256 0-.457.113-.848.34-1.173.292-.417.723-.625 1.293-.625Zm.046 3.16c.403 0 .695-.144.874-.432.181-.29.272-.623.272-.999 0-.397-.105-.717-.313-.959-.207-.242-.49-.363-.851-.363-.35 0-.635.12-.856.36-.22.24-.331.594-.331 1.061 0 .375.094.69.283.948.19.256.497.384.922.384Zm3.455-.08c.155 0 .283-.017.382-.049a.84.84 0 0 0 .437-.345c.09-.136.156-.311.196-.524a2 2 0 0 0 .034-.355c0-.418-.083-.743-.25-.975-.166-.231-.434-.347-.803-.347H9.35v2.595h.816ZM8.89 17.247h1.368c.465 0 .825.165 1.081.495.229.297.343.679.343 1.143 0 .36-.067.683-.202.973-.238.512-.647.769-1.226.769H8.89v-3.38Zm3.88 0v2.089c0 .245.046.45.138.612.136.245.367.368.69.368.388 0 .652-.133.791-.398.076-.144.113-.338.113-.582v-2.089h.465v1.898c0 .415-.056.735-.168.96-.206.407-.594.61-1.164.61s-.958-.203-1.162-.61c-.112-.225-.168-.545-.168-.96v-1.898h.465Zm2.899 0Zm.458 0v2.977h1.711v.402h-2.17v-3.379h.459Zm2.208 0h2.463v.414h-2.017v1.026h1.865v.391h-1.865v1.146h2.052v.402h-2.498v-3.379Zm3.402 2.29c.01.19.056.347.135.466.152.224.42.336.803.336.172 0 .328-.025.47-.074.272-.095.409-.265.409-.51 0-.184-.058-.315-.173-.394-.116-.076-.299-.143-.547-.2l-.458-.103c-.299-.068-.51-.142-.635-.223-.215-.141-.322-.352-.322-.633 0-.304.105-.553.315-.748.21-.194.508-.292.893-.292.354 0 .655.086.901.258.249.17.373.443.373.819h-.43a.847.847 0 0 0-.147-.416c-.14-.177-.377-.265-.711-.265-.27 0-.464.057-.582.17a.533.533 0 0 0-.177.396c0 .165.069.287.207.363.09.05.295.11.614.184l.474.108c.228.053.405.124.529.214.215.158.322.388.322.688 0 .374-.136.642-.41.803a1.822 1.822 0 0 1-.947.241c-.42 0-.75-.107-.987-.322-.238-.213-.354-.502-.35-.867h.43Z" }) + ] + } + ); +}); + +exports.default = SiCssmodules; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.d.ts new file mode 100644 index 000000000..45d5e4d57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCssmodules: IconType; +export { SiCssmodules as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.mjs new file mode 100644 index 000000000..70c0aa7f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCssmodules.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCssmodules = React.forwardRef(function SiCssmodules2({ title = "CSS Modules", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.705 2.147v19.706H0V2.147h19.705ZM.141 21.712h19.423V2.288H.141v19.424Zm2.561-10.444c.428 0 .76.113.996.338.236.225.367.482.393.768h-.446a.926.926 0 0 0-.303-.517c-.15-.128-.362-.191-.635-.191-.333 0-.602.117-.808.352-.204.233-.306.59-.306 1.074 0 .396.092.717.276.964.186.245.462.368.828.368.338 0 .595-.13.771-.389.094-.136.163-.316.21-.538h.446c-.04.356-.172.654-.396.895-.268.29-.63.434-1.086.434-.392 0-.722-.118-.989-.356-.35-.315-.527-.8-.527-1.456 0-.499.132-.907.396-1.226.285-.347.679-.52 1.18-.52Zm2.28 2.38c.01.192.056.348.135.467.152.224.42.336.803.336.172 0 .328-.024.47-.073.272-.095.409-.266.409-.511 0-.184-.058-.315-.173-.393-.116-.077-.299-.144-.547-.2l-.458-.104c-.299-.067-.51-.142-.635-.223-.214-.141-.322-.352-.322-.633 0-.303.105-.553.315-.747.21-.195.508-.292.893-.292.354 0 .655.085.902.257.248.17.372.443.372.82h-.43a.847.847 0 0 0-.147-.417c-.14-.177-.377-.265-.71-.265-.27 0-.465.057-.583.17a.533.533 0 0 0-.177.396c0 .166.07.287.207.364.09.049.295.11.614.184l.474.108c.229.052.405.123.53.214.214.158.321.387.321.687 0 .375-.136.642-.41.803a1.822 1.822 0 0 1-.947.242c-.42 0-.75-.108-.987-.322-.237-.213-.354-.502-.35-.867h.43Zm3.137 0c.011.192.056.348.136.467.152.224.42.336.803.336.171 0 .328-.024.469-.073.273-.095.41-.266.41-.511 0-.184-.058-.315-.173-.393-.117-.077-.3-.144-.548-.2l-.457-.104c-.3-.067-.511-.142-.635-.223-.215-.141-.322-.352-.322-.633 0-.303.105-.553.315-.747.21-.195.508-.292.892-.292.355 0 .655.085.902.257.249.17.373.443.373.82h-.43a.847.847 0 0 0-.148-.417c-.14-.177-.376-.265-.71-.265-.27 0-.464.057-.582.17a.533.533 0 0 0-.177.396c0 .166.069.287.207.364.09.049.295.11.614.184l.474.108c.228.052.404.123.529.214.214.158.322.387.322.687 0 .375-.137.642-.41.803a1.822 1.822 0 0 1-.947.242c-.42 0-.75-.108-.987-.322-.238-.213-.355-.502-.35-.867h.43Zm-6.197 3.6.97 2.857.965-2.857h.648v3.38h-.434v-1.995c0-.07.001-.183.004-.343.003-.16.005-.33.005-.513l-.964 2.85h-.453l-.97-2.85v.104c0 .083 0 .21.004.38.004.168.007.292.007.372v1.994h-.437v-3.379h.655Zm4.743-.091c.597 0 1.038.191 1.325.575.224.299.336.681.336 1.147 0 .505-.128.924-.384 1.259-.3.392-.73.589-1.286.589-.52 0-.929-.172-1.226-.516-.265-.33-.398-.75-.398-1.256 0-.457.113-.848.34-1.173.292-.417.723-.625 1.293-.625Zm.046 3.16c.403 0 .695-.144.874-.432.181-.29.272-.623.272-.999 0-.397-.105-.717-.313-.959-.207-.242-.49-.363-.851-.363-.35 0-.635.12-.856.36-.22.24-.331.594-.331 1.061 0 .375.094.69.283.948.19.256.497.384.922.384Zm3.455-.08c.155 0 .283-.017.382-.049a.84.84 0 0 0 .437-.345c.09-.136.156-.311.196-.524a2 2 0 0 0 .034-.355c0-.418-.083-.743-.25-.975-.166-.231-.434-.347-.803-.347H9.35v2.595h.816ZM8.89 17.247h1.368c.465 0 .825.165 1.081.495.229.297.343.679.343 1.143 0 .36-.067.683-.202.973-.238.512-.647.769-1.226.769H8.89v-3.38Zm3.88 0v2.089c0 .245.046.45.138.612.136.245.367.368.69.368.388 0 .652-.133.791-.398.076-.144.113-.338.113-.582v-2.089h.465v1.898c0 .415-.056.735-.168.96-.206.407-.594.61-1.164.61s-.958-.203-1.162-.61c-.112-.225-.168-.545-.168-.96v-1.898h.465Zm2.899 0Zm.458 0v2.977h1.711v.402h-2.17v-3.379h.459Zm2.208 0h2.463v.414h-2.017v1.026h1.865v.391h-1.865v1.146h2.052v.402h-2.498v-3.379Zm3.402 2.29c.01.19.056.347.135.466.152.224.42.336.803.336.172 0 .328-.025.47-.074.272-.095.409-.265.409-.51 0-.184-.058-.315-.173-.394-.116-.076-.299-.143-.547-.2l-.458-.103c-.299-.068-.51-.142-.635-.223-.215-.141-.322-.352-.322-.633 0-.304.105-.553.315-.748.21-.194.508-.292.893-.292.354 0 .655.086.901.258.249.17.373.443.373.819h-.43a.847.847 0 0 0-.147-.416c-.14-.177-.377-.265-.711-.265-.27 0-.464.057-.582.17a.533.533 0 0 0-.177.396c0 .165.069.287.207.363.09.05.295.11.614.184l.474.108c.228.053.405.124.529.214.215.158.322.388.322.688 0 .374-.136.642-.41.803a1.822 1.822 0 0 1-.947.241c-.42 0-.75-.107-.987-.322-.238-.213-.354-.502-.35-.867h.43Z" }) + ] + } + ); +}); + +export { SiCssmodules as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.cjs new file mode 100644 index 000000000..f898e6ccc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F43059"; +const SiCsswizardry = React__namespace.forwardRef(function SiCsswizardry2({ title = "CSS Wizardry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 16.5V1.127C0 .502.506 0 1.127 0h21.748C23.498 0 24 .505 24 1.126V15.95c-.676-.413-1.467-.62-2.372-.62-1.258 0-2.212.296-2.862.886-.65.591-.974 1.333-.974 2.226 0 .979.336 1.698 1.008 2.158.397.276 1.114.53 2.151.765l1.056.237c.618.135 1.07.29 1.36.466.288.18.432.436.432.765 0 .564-.29.95-.872 1.157l-.024.008H20.68a1.528 1.528 0 0 1-.688-.462c-.185-.225-.31-.565-.372-1.021h-1.99c0 .56.109 1.053.325 1.483h-1.681c.196-.396.294-.837.294-1.32 0-.889-.297-1.568-.892-2.037-.384-.302-.952-.543-1.705-.724l-1.719-.412c-.663-.158-1.096-.296-1.299-.413a.858.858 0 0 1-.473-.799c0-.387.16-.69.48-.906.32-.217.75-.325 1.286-.325.482 0 .886.084 1.21.25.488.253.75.68.785 1.28h2.003c-.036-1.06-.425-1.869-1.167-2.426-.742-.557-1.639-.836-2.69-.836-1.258 0-2.212.296-2.861.886-.65.591-.975 1.333-.975 2.226 0 .979.336 1.698 1.008 2.158.397.276 1.114.53 2.152.765l1.055.237c.618.135 1.071.29 1.36.466.288.18.433.436.433.765 0 .564-.291.95-.873 1.157l-.025.008h-2.223a1.528 1.528 0 0 1-.688-.462c-.185-.225-.31-.565-.372-1.021h-1.99c0 .56.108 1.053.324 1.483H6.611a4.75 4.75 0 0 0 .667-1.801H5.215c-.14.514-.316.9-.528 1.157-.261.326-.603.54-1.026.644H2.42c-.45-.115-.839-.37-1.165-.762C.792 22.68.56 21.842.56 20.724c0-1.119.218-1.984.656-2.595.437-.611 1.035-.917 1.793-.917.744 0 1.305.217 1.684.65.212.243.386.604.52 1.082H7.3c-.032-.622-.262-1.242-.69-1.86-.776-1.1-2.003-1.65-3.68-1.65-1.168 0-2.145.355-2.929 1.067zm24 3.654v-1.562h-.518c-.036-.6-.298-1.026-.785-1.279-.325-.166-.728-.25-1.21-.25-.537 0-.966.108-1.286.325-.32.216-.48.518-.48.906 0 .357.157.623.473.799.203.117.636.255 1.299.413l1.718.412c.29.07.554.149.789.236z" }) + ] + } + ); +}); + +exports.default = SiCsswizardry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.d.ts new file mode 100644 index 000000000..61cb6bd9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F43059"; +declare const SiCsswizardry: IconType; +export { SiCsswizardry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.mjs new file mode 100644 index 000000000..aa5b58981 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCsswizardry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F43059"; +const SiCsswizardry = React.forwardRef(function SiCsswizardry2({ title = "CSS Wizardry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 16.5V1.127C0 .502.506 0 1.127 0h21.748C23.498 0 24 .505 24 1.126V15.95c-.676-.413-1.467-.62-2.372-.62-1.258 0-2.212.296-2.862.886-.65.591-.974 1.333-.974 2.226 0 .979.336 1.698 1.008 2.158.397.276 1.114.53 2.151.765l1.056.237c.618.135 1.07.29 1.36.466.288.18.432.436.432.765 0 .564-.29.95-.872 1.157l-.024.008H20.68a1.528 1.528 0 0 1-.688-.462c-.185-.225-.31-.565-.372-1.021h-1.99c0 .56.109 1.053.325 1.483h-1.681c.196-.396.294-.837.294-1.32 0-.889-.297-1.568-.892-2.037-.384-.302-.952-.543-1.705-.724l-1.719-.412c-.663-.158-1.096-.296-1.299-.413a.858.858 0 0 1-.473-.799c0-.387.16-.69.48-.906.32-.217.75-.325 1.286-.325.482 0 .886.084 1.21.25.488.253.75.68.785 1.28h2.003c-.036-1.06-.425-1.869-1.167-2.426-.742-.557-1.639-.836-2.69-.836-1.258 0-2.212.296-2.861.886-.65.591-.975 1.333-.975 2.226 0 .979.336 1.698 1.008 2.158.397.276 1.114.53 2.152.765l1.055.237c.618.135 1.071.29 1.36.466.288.18.433.436.433.765 0 .564-.291.95-.873 1.157l-.025.008h-2.223a1.528 1.528 0 0 1-.688-.462c-.185-.225-.31-.565-.372-1.021h-1.99c0 .56.108 1.053.324 1.483H6.611a4.75 4.75 0 0 0 .667-1.801H5.215c-.14.514-.316.9-.528 1.157-.261.326-.603.54-1.026.644H2.42c-.45-.115-.839-.37-1.165-.762C.792 22.68.56 21.842.56 20.724c0-1.119.218-1.984.656-2.595.437-.611 1.035-.917 1.793-.917.744 0 1.305.217 1.684.65.212.243.386.604.52 1.082H7.3c-.032-.622-.262-1.242-.69-1.86-.776-1.1-2.003-1.65-3.68-1.65-1.168 0-2.145.355-2.929 1.067zm24 3.654v-1.562h-.518c-.036-.6-.298-1.026-.785-1.279-.325-.166-.728-.25-1.21-.25-.537 0-.966.108-1.286.325-.32.216-.48.518-.48.906 0 .357.157.623.473.799.203.117.636.255 1.299.413l1.718.412c.29.07.554.149.789.236z" }) + ] + } + ); +}); + +export { SiCsswizardry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCts.cjs new file mode 100644 index 000000000..73967770d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E53236"; +const SiCts = React__namespace.forwardRef(function SiCts2({ title = "CTS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.489 15.344c.05 0 .09.04.09.09v3.776c0 .05-.04.09-.09.09H16.44a.09.09 0 0 1-.075-.04.09.09 0 0 1-.007-.086l1.603-3.776a.09.09 0 0 1 .083-.055h1.444zm.97-7.892c1.083 0 2.183.358 3.272 1.065a.09.09 0 0 1 .03.12l-.86 1.537a.09.09 0 0 1-.13.033c-.803-.522-1.615-.786-2.412-.786-.6 0-1.312.13-1.312.746 0 .188.074.454.427.647.27.147.704.314 1.326.51.61.19 1.047.338 1.302.439.255.1.564.26.918.472.66.402.98 1.053.98 1.994 0 .944-.337 1.68-1.03 2.25-.604.494-1.36.776-2.253.838a.09.09 0 0 1-.097-.09v-1.762a.09.09 0 0 1 .078-.09c.22-.03.404-.097.55-.195a.694.694 0 0 0 .333-.6c0-.248-.15-.477-.45-.68-.286-.195-.703-.38-1.24-.548a14.265 14.265 0 0 1-1.22-.43 6.806 6.806 0 0 1-.956-.519c-.72-.448-1.07-1.094-1.07-1.975 0-.884.346-1.585 1.058-2.143.707-.553 1.633-.833 2.755-.833zm-15.786 0a.09.09 0 0 1 .096.09v2.106a.09.09 0 0 1-.076.09 2.662 2.662 0 0 0-1.38.668c-.52.471-.785 1.134-.785 1.971 0 .837.264 1.498.786 1.963.5.458 1.155.708 1.832.7.87 0 1.666-.416 2.368-1.238a.09.09 0 0 1 .068-.032.09.09 0 0 1 .068.03l1.393 1.566a.09.09 0 0 1-.004.124c-1.204 1.212-2.52 1.826-3.91 1.826-1.43 0-2.658-.459-3.644-1.362C.5 15.05 0 13.854 0 12.395S.506 9.733 1.503 8.82a5.097 5.097 0 0 1 3.17-1.367ZM16.831 4.7c.05 0 .09.04.09.09v2.13c0 .05-.04.09-.09.09h-3.417a.06.06 0 0 0-.06.06v8.545c0 .05-.04.09-.09.09h-2.51a.09.09 0 0 1-.09-.09V7.072a.06.06 0 0 0-.06-.06H7.186a.09.09 0 0 1-.09-.09V4.79a.09.09 0 0 1 .09-.09z" }) + ] + } + ); +}); + +exports.default = SiCts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCts.d.ts new file mode 100644 index 000000000..dc537d30b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E53236"; +declare const SiCts: IconType; +export { SiCts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCts.mjs new file mode 100644 index 000000000..13138c48f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E53236"; +const SiCts = React.forwardRef(function SiCts2({ title = "CTS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.489 15.344c.05 0 .09.04.09.09v3.776c0 .05-.04.09-.09.09H16.44a.09.09 0 0 1-.075-.04.09.09 0 0 1-.007-.086l1.603-3.776a.09.09 0 0 1 .083-.055h1.444zm.97-7.892c1.083 0 2.183.358 3.272 1.065a.09.09 0 0 1 .03.12l-.86 1.537a.09.09 0 0 1-.13.033c-.803-.522-1.615-.786-2.412-.786-.6 0-1.312.13-1.312.746 0 .188.074.454.427.647.27.147.704.314 1.326.51.61.19 1.047.338 1.302.439.255.1.564.26.918.472.66.402.98 1.053.98 1.994 0 .944-.337 1.68-1.03 2.25-.604.494-1.36.776-2.253.838a.09.09 0 0 1-.097-.09v-1.762a.09.09 0 0 1 .078-.09c.22-.03.404-.097.55-.195a.694.694 0 0 0 .333-.6c0-.248-.15-.477-.45-.68-.286-.195-.703-.38-1.24-.548a14.265 14.265 0 0 1-1.22-.43 6.806 6.806 0 0 1-.956-.519c-.72-.448-1.07-1.094-1.07-1.975 0-.884.346-1.585 1.058-2.143.707-.553 1.633-.833 2.755-.833zm-15.786 0a.09.09 0 0 1 .096.09v2.106a.09.09 0 0 1-.076.09 2.662 2.662 0 0 0-1.38.668c-.52.471-.785 1.134-.785 1.971 0 .837.264 1.498.786 1.963.5.458 1.155.708 1.832.7.87 0 1.666-.416 2.368-1.238a.09.09 0 0 1 .068-.032.09.09 0 0 1 .068.03l1.393 1.566a.09.09 0 0 1-.004.124c-1.204 1.212-2.52 1.826-3.91 1.826-1.43 0-2.658-.459-3.644-1.362C.5 15.05 0 13.854 0 12.395S.506 9.733 1.503 8.82a5.097 5.097 0 0 1 3.17-1.367ZM16.831 4.7c.05 0 .09.04.09.09v2.13c0 .05-.04.09-.09.09h-3.417a.06.06 0 0 0-.06.06v8.545c0 .05-.04.09-.09.09h-2.51a.09.09 0 0 1-.09-.09V7.072a.06.06 0 0 0-.06-.06H7.186a.09.09 0 0 1-.09-.09V4.79a.09.09 0 0 1 .09-.09z" }) + ] + } + ); +}); + +export { SiCts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.cjs new file mode 100644 index 000000000..d9b1a7c82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#23D96C"; +const SiCucumber = React__namespace.forwardRef(function SiCucumber2({ title = "Cucumber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.16 0C7.523-.03 3.223 3.007 1.886 7.715.241 13.51 3.746 19.51 9.601 20.925V24l.626-.094c6.715-1.008 11.876-6.254 12.271-12.472.258-4.041-1.795-8.064-5.108-10.01a9.62 9.62 0 0 0-1.999-.895A10.606 10.606 0 0 0 12.16 0zm-.084 1.087h.013c1.011 0 2.015.161 2.976.477a8.511 8.511 0 0 1 1.769.792c2.97 1.744 4.809 5.363 4.576 9.008-.35 5.52-4.816 10.208-10.72 11.36V20.04l-.44-.085a9.518 9.518 0 0 1 1.826-18.868zm2.042 4.306a.958.958 0 0 0-.843.333 3.83 3.83 0 0 0-.366.632c-.321.743-.436 1.803.043 2.385l-.001.003a3.08 3.08 0 0 0 1.918-1.641 1.68 1.68 0 0 0 .165-.698.996.996 0 0 0-.916-1.014zm-4.061.092a1.014 1.014 0 0 0-.926.982c.01.241.07.478.18.694a3.282 3.282 0 0 0 2.062 1.6c.413-.593.216-1.65-.118-2.386a2.17 2.17 0 0 0-.377-.574.934.934 0 0 0-.821-.316zM7.628 8c-.858.035-1.2 1.126-.516 1.645.198.146.41.273.632.38a3 3 0 0 0 2.53-.07A3.17 3.17 0 0 0 8.54 8.167 1.993 1.993 0 0 0 7.628 8zm7.762 3.216a3.32 3.32 0 0 0-1.228.296 3.087 3.087 0 0 0 1.718 1.755c.236.105.49.161.747.166a.933.933 0 0 0 .681-1.663c-.659-.46-1.105-.575-1.918-.554zm-5.85.03c-.297-.012-.635.01-.983.026-.559 0-1.228.278-1.494.565-.695.61-.188 1.751.73 1.644a1.71 1.71 0 0 0 .747-.167c.744-.322 1.628-1.202 1.734-1.89-.182-.12-.438-.165-.735-.178zm2.086 1.214c-.863.32-1.56.975-1.93 1.817a1.601 1.601 0 0 0-.167.681c-.02.908 1.091 1.361 1.711.698.14-.199.262-.41.362-.632.322-.69.449-1.928.024-2.564zm1.497.173a2.792 2.792 0 0 0-.116 2.442c.089.211.21.408.362.58.577.627 1.81.186 1.763-.63a1.62 1.62 0 0 0-.167-.697 3.043 3.043 0 0 0-1.842-1.695z" }) + ] + } + ); +}); + +exports.default = SiCucumber; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.d.ts new file mode 100644 index 000000000..260668d7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#23D96C"; +declare const SiCucumber: IconType; +export { SiCucumber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.mjs new file mode 100644 index 000000000..444ac0bf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCucumber.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#23D96C"; +const SiCucumber = React.forwardRef(function SiCucumber2({ title = "Cucumber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.16 0C7.523-.03 3.223 3.007 1.886 7.715.241 13.51 3.746 19.51 9.601 20.925V24l.626-.094c6.715-1.008 11.876-6.254 12.271-12.472.258-4.041-1.795-8.064-5.108-10.01a9.62 9.62 0 0 0-1.999-.895A10.606 10.606 0 0 0 12.16 0zm-.084 1.087h.013c1.011 0 2.015.161 2.976.477a8.511 8.511 0 0 1 1.769.792c2.97 1.744 4.809 5.363 4.576 9.008-.35 5.52-4.816 10.208-10.72 11.36V20.04l-.44-.085a9.518 9.518 0 0 1 1.826-18.868zm2.042 4.306a.958.958 0 0 0-.843.333 3.83 3.83 0 0 0-.366.632c-.321.743-.436 1.803.043 2.385l-.001.003a3.08 3.08 0 0 0 1.918-1.641 1.68 1.68 0 0 0 .165-.698.996.996 0 0 0-.916-1.014zm-4.061.092a1.014 1.014 0 0 0-.926.982c.01.241.07.478.18.694a3.282 3.282 0 0 0 2.062 1.6c.413-.593.216-1.65-.118-2.386a2.17 2.17 0 0 0-.377-.574.934.934 0 0 0-.821-.316zM7.628 8c-.858.035-1.2 1.126-.516 1.645.198.146.41.273.632.38a3 3 0 0 0 2.53-.07A3.17 3.17 0 0 0 8.54 8.167 1.993 1.993 0 0 0 7.628 8zm7.762 3.216a3.32 3.32 0 0 0-1.228.296 3.087 3.087 0 0 0 1.718 1.755c.236.105.49.161.747.166a.933.933 0 0 0 .681-1.663c-.659-.46-1.105-.575-1.918-.554zm-5.85.03c-.297-.012-.635.01-.983.026-.559 0-1.228.278-1.494.565-.695.61-.188 1.751.73 1.644a1.71 1.71 0 0 0 .747-.167c.744-.322 1.628-1.202 1.734-1.89-.182-.12-.438-.165-.735-.178zm2.086 1.214c-.863.32-1.56.975-1.93 1.817a1.601 1.601 0 0 0-.167.681c-.02.908 1.091 1.361 1.711.698.14-.199.262-.41.362-.632.322-.69.449-1.928.024-2.564zm1.497.173a2.792 2.792 0 0 0-.116 2.442c.089.211.21.408.362.58.577.627 1.81.186 1.763-.63a1.62 1.62 0 0 0-.167-.697 3.043 3.043 0 0 0-1.842-1.695z" }) + ] + } + ); +}); + +export { SiCucumber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.cjs new file mode 100644 index 000000000..6b1bde9d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D2C54"; +const SiCultura = React__namespace.forwardRef(function SiCultura2({ title = "Cultura", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.591 8.675C1.107 8.675 0 9.796 0 11.258c0 1.484 1.065 2.627 2.605 2.627 1.285 0 1.981-.817 1.981-.817l-.483-.66s-.59.639-1.463.639c-1.05 0-1.696-.845-1.697-1.803 0-.937.625-1.732 1.69-1.732.802 0 1.378.533 1.378.533l.44-.682s-.632-.69-1.86-.688zm6.778.084h-.895v3.911c0 1.037.618 1.165 1.115 1.165.149 0 .284-.021.284-.021v-.788s-.064.007-.135.007c-.235 0-.37-.1-.37-.497zm.877.433v.987h-.49v.717h.47v1.577c0 1.213 1 1.362 1.505 1.362.17 0 .276-.021.276-.021v-.788s-.064.014-.163.014c-.249 0-.716-.085-.716-.681v-1.463h1.118v1.612c0 .987.484 1.377 1.257 1.377.618 0 1.079-.376 1.257-.753h.013s-.013.114-.013.256v.411h.866v-3.62h-.902v1.661c0 .646-.362 1.221-1.015 1.221-.448 0-.56-.298-.56-.738V10.18h-2.022v-.987zm9.592.902c-.86 0-1.42.448-1.42.448l.34.645s.476-.347.994-.348c.398 0 .696.164.696.64v.049h-.12c-.59 0-2.145.078-2.144 1.228 0 .724.582 1.129 1.228 1.129.823 0 1.108-.639 1.1-.64h.015s-.015.114-.015.257v.298h.831v-2.264c0-.916-.554-1.442-1.505-1.442zm-1.715.035c-.553 0-.987.412-1.15.93h-.014a2.32 2.32 0 0 0 .014-.255v-.625h-.866V13.8h.902v-1.434c0-.214.02-.413.077-.59.171-.539.604-.759.987-.759.12 0 .214.014.214.014v-.887s-.079-.015-.164-.015zm-13.428.05v2.329c0 .987.482 1.377 1.257 1.377.618 0 1.08-.376 1.256-.753h.014s-.014.114-.014.256v.412h.866v-3.62h-.901v1.66c0 .646-.363 1.222-1.016 1.222-.448 0-.56-.299-.56-.739V10.18zm18.316 1.902c-.13 0-.277.015-.473.05a.164.164 0 0 0-.104.064.327.327 0 0 0-.046.102.165.165 0 0 0-.007.049.12.12 0 0 0 .04.092.116.116 0 0 0 .08.027.364.364 0 0 0 .048-.003s.065-.007.174-.013l.001.018c.003.042.007.102.007.177 0 .367-.081 1.078-.627 1.607-.443.43-.91.642-1.499.675a2.99 2.99 0 0 1-1.714-.431c-.575-.349-.948-.823-1.131-1.042-.028-.034-.05-.063-.073-.086-.021-.022-.042-.048-.086-.05a.078.078 0 0 0-.055.021.52.52 0 0 0-.099.15.507.507 0 0 0-.058.197v.004c.002.125 0 .588.39.973a1.9 1.9 0 0 0 .452.328c.14.072.248.11.308.115h.01a.087.087 0 0 0 .075-.041.14.14 0 0 0 .017-.07c-.002-.092-.052-.206-.052-.209l-.01-.022-.054-.017a1.621 1.621 0 0 1-.41-.234 1.227 1.227 0 0 1-.43-.681c.268.34.708.776 1.073.98.453.258 1.103.515 1.802.514a2.548 2.548 0 0 0 1.065-.225 2.67 2.67 0 0 0 1.236-1.069c.342-.543.384-1.18.384-1.472v-.088c.08.031.223.11.34.3.001 0 .026.044.07.062a.13.13 0 0 0 .05.008.226.226 0 0 0 .09-.021.513.513 0 0 0 .128-.088c.04-.038.076-.084.077-.148a.124.124 0 0 0-.012-.055c-.096-.19-.335-.358-.65-.416a1.778 1.778 0 0 0-.328-.032zm-2.712.065h.157v.085c0 .44-.342.95-.817.95-.369 0-.547-.226-.547-.467 0-.504.746-.568 1.207-.568z" }) + ] + } + ); +}); + +exports.default = SiCultura; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.d.ts new file mode 100644 index 000000000..b1afbd2bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D2C54"; +declare const SiCultura: IconType; +export { SiCultura as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.mjs new file mode 100644 index 000000000..2785822a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCultura.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D2C54"; +const SiCultura = React.forwardRef(function SiCultura2({ title = "Cultura", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.591 8.675C1.107 8.675 0 9.796 0 11.258c0 1.484 1.065 2.627 2.605 2.627 1.285 0 1.981-.817 1.981-.817l-.483-.66s-.59.639-1.463.639c-1.05 0-1.696-.845-1.697-1.803 0-.937.625-1.732 1.69-1.732.802 0 1.378.533 1.378.533l.44-.682s-.632-.69-1.86-.688zm6.778.084h-.895v3.911c0 1.037.618 1.165 1.115 1.165.149 0 .284-.021.284-.021v-.788s-.064.007-.135.007c-.235 0-.37-.1-.37-.497zm.877.433v.987h-.49v.717h.47v1.577c0 1.213 1 1.362 1.505 1.362.17 0 .276-.021.276-.021v-.788s-.064.014-.163.014c-.249 0-.716-.085-.716-.681v-1.463h1.118v1.612c0 .987.484 1.377 1.257 1.377.618 0 1.079-.376 1.257-.753h.013s-.013.114-.013.256v.411h.866v-3.62h-.902v1.661c0 .646-.362 1.221-1.015 1.221-.448 0-.56-.298-.56-.738V10.18h-2.022v-.987zm9.592.902c-.86 0-1.42.448-1.42.448l.34.645s.476-.347.994-.348c.398 0 .696.164.696.64v.049h-.12c-.59 0-2.145.078-2.144 1.228 0 .724.582 1.129 1.228 1.129.823 0 1.108-.639 1.1-.64h.015s-.015.114-.015.257v.298h.831v-2.264c0-.916-.554-1.442-1.505-1.442zm-1.715.035c-.553 0-.987.412-1.15.93h-.014a2.32 2.32 0 0 0 .014-.255v-.625h-.866V13.8h.902v-1.434c0-.214.02-.413.077-.59.171-.539.604-.759.987-.759.12 0 .214.014.214.014v-.887s-.079-.015-.164-.015zm-13.428.05v2.329c0 .987.482 1.377 1.257 1.377.618 0 1.08-.376 1.256-.753h.014s-.014.114-.014.256v.412h.866v-3.62h-.901v1.66c0 .646-.363 1.222-1.016 1.222-.448 0-.56-.299-.56-.739V10.18zm18.316 1.902c-.13 0-.277.015-.473.05a.164.164 0 0 0-.104.064.327.327 0 0 0-.046.102.165.165 0 0 0-.007.049.12.12 0 0 0 .04.092.116.116 0 0 0 .08.027.364.364 0 0 0 .048-.003s.065-.007.174-.013l.001.018c.003.042.007.102.007.177 0 .367-.081 1.078-.627 1.607-.443.43-.91.642-1.499.675a2.99 2.99 0 0 1-1.714-.431c-.575-.349-.948-.823-1.131-1.042-.028-.034-.05-.063-.073-.086-.021-.022-.042-.048-.086-.05a.078.078 0 0 0-.055.021.52.52 0 0 0-.099.15.507.507 0 0 0-.058.197v.004c.002.125 0 .588.39.973a1.9 1.9 0 0 0 .452.328c.14.072.248.11.308.115h.01a.087.087 0 0 0 .075-.041.14.14 0 0 0 .017-.07c-.002-.092-.052-.206-.052-.209l-.01-.022-.054-.017a1.621 1.621 0 0 1-.41-.234 1.227 1.227 0 0 1-.43-.681c.268.34.708.776 1.073.98.453.258 1.103.515 1.802.514a2.548 2.548 0 0 0 1.065-.225 2.67 2.67 0 0 0 1.236-1.069c.342-.543.384-1.18.384-1.472v-.088c.08.031.223.11.34.3.001 0 .026.044.07.062a.13.13 0 0 0 .05.008.226.226 0 0 0 .09-.021.513.513 0 0 0 .128-.088c.04-.038.076-.084.077-.148a.124.124 0 0 0-.012-.055c-.096-.19-.335-.358-.65-.416a1.778 1.778 0 0 0-.328-.032zm-2.712.065h.157v.085c0 .44-.342.95-.817.95-.369 0-.547-.226-.547-.467 0-.504.746-.568 1.207-.568z" }) + ] + } + ); +}); + +export { SiCultura as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.cjs new file mode 100644 index 000000000..884ec8c0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#073551"; +const SiCurl = React__namespace.forwardRef(function SiCurl2({ title = "curl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.803 14.8169c0-.5342.433-.9665.9665-.9665.5335 0 .9665.4323.9665.9665 0 .5335-.433.9657-.9665.9657-.5335 0-.9666-.4322-.9666-.9657m2.736 0c0-.1963-.0532-.376-.1119-.5525-.2344-.7024-.876-1.2169-1.6575-1.2169-.1249 0-.2344.0465-.3524.0708C.6149 13.2865 0 13.9646 0 14.817c0 .9764.7923 1.7694 1.7695 1.7694.9772 0 1.7694-.793 1.7694-1.7694m-1.7694-7.149c.5335 0 .9665.433.9665.9665 0 .5335-.433.9665-.9665.9665-.5343 0-.9666-.433-.9666-.9665 0-.5335.4323-.9665.9666-.9665m0 2.7359c.9772 0 1.7694-.7923 1.7694-1.7694 0-.1956-.0532-.376-.1119-.5525-.2344-.7024-.8767-1.2169-1.6575-1.2169-.1249 0-.2344.0465-.3524.0716C.6149 7.104 0 7.782 0 8.6344c0 .9771.7923 1.7694 1.7695 1.7694m13.221-5.694c-.5342 0-.9665-.433-.9665-.9664a.966.966 0 01.9666-.9665c.5335 0 .9658.4322.9658.9665 0 .5334-.4323.9664-.9658.9664m-9.6 16.5133c-.5335 0-.9666-.433-.9666-.9665 0-.5342.433-.9665.9666-.9665a.966.966 0 01.9665.9665c0 .5335-.4323.9665-.9665.9665m9.6-19.2491c-.978 0-1.7695.7922-1.7695 1.7694 0 .2085.0525.4025.1187.5882L5.039 18.5581c-.803.1681-1.4179.8462-1.4179 1.6985 0 .9772.7923 1.7694 1.7695 1.7694.9772 0 1.7694-.7922 1.7694-1.7694 0-.1963-.0525-.3759-.111-.5525l8.3427-14.2728c.7778-.1865 1.3683-.8531 1.3683-1.688 0-.977-.793-1.7693-1.7694-1.7693m7.24 2.7359c-.5343 0-.9666-.433-.9666-.9665a.966.966 0 01.9665-.9665c.5335 0 .9666.4322.9666.9665 0 .5334-.433.9665-.9666.9665M12.6313 21.223c-.5343 0-.9665-.433-.9665-.9665a.966.966 0 01.9665-.9665c.5335 0 .9658.4323.9658.9665 0 .5335-.4323.9665-.9658.9665M22.2305 1.974c-.9772 0-1.7694.7922-1.7694 1.7694 0 .2085.0525.4025.1187.5882l-8.3009 14.2265c-.8021.1681-1.417.8462-1.417 1.6985 0 .9772.7922 1.7694 1.7694 1.7694.9764 0 1.7687-.7922 1.7687-1.7694 0-.1963-.0525-.3759-.1111-.5525l8.3427-14.2728C23.4094 5.2448 24 4.5782 24 3.7433c0-.977-.7923-1.7693-1.7695-1.7693" }) + ] + } + ); +}); + +exports.default = SiCurl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.d.ts new file mode 100644 index 000000000..99913c263 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#073551"; +declare const SiCurl: IconType; +export { SiCurl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.mjs new file mode 100644 index 000000000..f83575e34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCurl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#073551"; +const SiCurl = React.forwardRef(function SiCurl2({ title = "curl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.803 14.8169c0-.5342.433-.9665.9665-.9665.5335 0 .9665.4323.9665.9665 0 .5335-.433.9657-.9665.9657-.5335 0-.9666-.4322-.9666-.9657m2.736 0c0-.1963-.0532-.376-.1119-.5525-.2344-.7024-.876-1.2169-1.6575-1.2169-.1249 0-.2344.0465-.3524.0708C.6149 13.2865 0 13.9646 0 14.817c0 .9764.7923 1.7694 1.7695 1.7694.9772 0 1.7694-.793 1.7694-1.7694m-1.7694-7.149c.5335 0 .9665.433.9665.9665 0 .5335-.433.9665-.9665.9665-.5343 0-.9666-.433-.9666-.9665 0-.5335.4323-.9665.9666-.9665m0 2.7359c.9772 0 1.7694-.7923 1.7694-1.7694 0-.1956-.0532-.376-.1119-.5525-.2344-.7024-.8767-1.2169-1.6575-1.2169-.1249 0-.2344.0465-.3524.0716C.6149 7.104 0 7.782 0 8.6344c0 .9771.7923 1.7694 1.7695 1.7694m13.221-5.694c-.5342 0-.9665-.433-.9665-.9664a.966.966 0 01.9666-.9665c.5335 0 .9658.4322.9658.9665 0 .5334-.4323.9664-.9658.9664m-9.6 16.5133c-.5335 0-.9666-.433-.9666-.9665 0-.5342.433-.9665.9666-.9665a.966.966 0 01.9665.9665c0 .5335-.4323.9665-.9665.9665m9.6-19.2491c-.978 0-1.7695.7922-1.7695 1.7694 0 .2085.0525.4025.1187.5882L5.039 18.5581c-.803.1681-1.4179.8462-1.4179 1.6985 0 .9772.7923 1.7694 1.7695 1.7694.9772 0 1.7694-.7922 1.7694-1.7694 0-.1963-.0525-.3759-.111-.5525l8.3427-14.2728c.7778-.1865 1.3683-.8531 1.3683-1.688 0-.977-.793-1.7693-1.7694-1.7693m7.24 2.7359c-.5343 0-.9666-.433-.9666-.9665a.966.966 0 01.9665-.9665c.5335 0 .9666.4322.9666.9665 0 .5334-.433.9665-.9666.9665M12.6313 21.223c-.5343 0-.9665-.433-.9665-.9665a.966.966 0 01.9665-.9665c.5335 0 .9658.4323.9658.9665 0 .5335-.4323.9665-.9658.9665M22.2305 1.974c-.9772 0-1.7694.7922-1.7694 1.7694 0 .2085.0525.4025.1187.5882l-8.3009 14.2265c-.8021.1681-1.417.8462-1.417 1.6985 0 .9772.7922 1.7694 1.7694 1.7694.9764 0 1.7687-.7922 1.7687-1.7694 0-.1963-.0525-.3759-.1111-.5525l8.3427-14.2728C23.4094 5.2448 24 4.5782 24 3.7433c0-.977-.7923-1.7693-1.7695-1.7693" }) + ] + } + ); +}); + +export { SiCurl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.cjs new file mode 100644 index 000000000..e423930a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F16436"; +const SiCurseforge = React__namespace.forwardRef(function SiCurseforge2({ title = "CurseForge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.326 9.2145S23.2261 8.4418 24 6.1882h-7.5066V4.4H0l2.0318 2.3576V9.173s5.1267-.2665 7.1098 1.2372c2.7146 2.516-3.053 5.917-3.053 5.917L5.0995 19.6c1.5465-1.4726 4.494-3.3775 9.8983-3.2857-2.0565.65-4.1245 1.6651-5.7344 3.2857h10.9248l-1.0288-3.2726s-7.918-4.6688-.8336-7.1127z" }) + ] + } + ); +}); + +exports.default = SiCurseforge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.d.ts new file mode 100644 index 000000000..ce3ca8794 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F16436"; +declare const SiCurseforge: IconType; +export { SiCurseforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.mjs new file mode 100644 index 000000000..59b05114f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCurseforge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F16436"; +const SiCurseforge = React.forwardRef(function SiCurseforge2({ title = "CurseForge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.326 9.2145S23.2261 8.4418 24 6.1882h-7.5066V4.4H0l2.0318 2.3576V9.173s5.1267-.2665 7.1098 1.2372c2.7146 2.516-3.053 5.917-3.053 5.917L5.0995 19.6c1.5465-1.4726 4.494-3.3775 9.8983-3.2857-2.0565.65-4.1245 1.6651-5.7344 3.2857h10.9248l-1.0288-3.2726s-7.918-4.6688-.8336-7.1127z" }) + ] + } + ); +}); + +export { SiCurseforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.cjs new file mode 100644 index 000000000..b66ef56f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiCursor = React__namespace.forwardRef(function SiCursor2({ title = "Cursor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.503.131 1.891 5.678a.84.84 0 0 0-.42.726v11.188c0 .3.162.575.42.724l9.609 5.55a1 1 0 0 0 .998 0l9.61-5.55a.84.84 0 0 0 .42-.724V6.404a.84.84 0 0 0-.42-.726L12.497.131a1.01 1.01 0 0 0-.996 0M2.657 6.338h18.55c.263 0 .43.287.297.515L12.23 22.918c-.062.107-.229.064-.229-.06V12.335a.59.59 0 0 0-.295-.51l-9.11-5.257c-.109-.063-.064-.23.061-.23" }) + ] + } + ); +}); + +exports.default = SiCursor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.d.ts new file mode 100644 index 000000000..d27f3180d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiCursor: IconType; +export { SiCursor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.mjs new file mode 100644 index 000000000..011a0f4d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCursor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiCursor = React.forwardRef(function SiCursor2({ title = "Cursor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.503.131 1.891 5.678a.84.84 0 0 0-.42.726v11.188c0 .3.162.575.42.724l9.609 5.55a1 1 0 0 0 .998 0l9.61-5.55a.84.84 0 0 0 .42-.724V6.404a.84.84 0 0 0-.42-.726L12.497.131a1.01 1.01 0 0 0-.996 0M2.657 6.338h18.55c.263 0 .43.287.297.515L12.23 22.918c-.062.107-.229.064-.229-.06V12.335a.59.59 0 0 0-.295-.51l-9.11-5.257c-.109-.063-.064-.23.061-.23" }) + ] + } + ); +}); + +export { SiCursor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.cjs new file mode 100644 index 000000000..4005adcf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA3C00"; +const SiCustomink = React__namespace.forwardRef(function SiCustomink2({ title = "Custom Ink", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 23.986c1.864 0 3.398-1.508 3.398-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm0-11.82a1.856 1.856 0 0 0 1.587-.9c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm1.772-3.293c-.068-.2.03-.42.225-.502a.586.586 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185Zm-3.292 0c-.068-.2.03-.42.225-.502a.586.586 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185Zm5.896-1.89c0 .581-.105 1.123-.317 1.626-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.572 3.399 17.46.014 11.988.014 6.515.014 2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.453 4.453 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35zM7.85 19.238c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785zM4.147 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.732 2.732 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251zm12.005 4.509c1.141 2.949 5.53 2.05 5.42-1.11-.052-1.402-.978-2.354-2.46-2.685-1.268-.41-2.273-.462-3.61-1.15-.316-.225-.606-.04-.58.33.08 2.261 1.124 4.377 1.23 4.615zm3.701-4.509c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.507.291 2.063.952a2.732 2.732 0 0 1-.344 3.861 2.736 2.736 0 0 1-3.16.251zm-9.372-5.857c-.068-.2.03-.42.224-.502a.586.586 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185Zm3.291 0c-.068-.2.03-.42.225-.502a.586.586 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185Zm-1.771 3.292a1.856 1.856 0 0 0 1.586-.899c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm0 11.821c1.863 0 3.397-1.508 3.397-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm7.852-9.256c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.48.3 2.063.952.661 1.593.68 1.594-.33 3.85l-.014.011a2.736 2.736 0 0 1-3.16.251zm-3.7 4.509c1.14 2.949 5.53 2.05 5.42-1.11-.053-1.402-.98-2.354-2.46-2.685-1.269-.41-2.274-.462-3.61-1.15-.317-.225-.607-.04-.58.33.08 2.261 1.123 4.377 1.23 4.615zM4.146 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.732 2.732 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251zm3.702 4.509c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785zm8.527-12.257c0 .582-.105 1.124-.317 1.627-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.57 3.399 17.46.014 11.988.014 6.516.014 2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.453 4.453 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35z" }) + ] + } + ); +}); + +exports.default = SiCustomink; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.d.ts new file mode 100644 index 000000000..863403f24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA3C00"; +declare const SiCustomink: IconType; +export { SiCustomink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.mjs new file mode 100644 index 000000000..e034d3dde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCustomink.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA3C00"; +const SiCustomink = React.forwardRef(function SiCustomink2({ title = "Custom Ink", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 23.986c1.864 0 3.398-1.508 3.398-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm0-11.82a1.856 1.856 0 0 0 1.587-.9c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm1.772-3.293c-.068-.2.03-.42.225-.502a.586.586 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185Zm-3.292 0c-.068-.2.03-.42.225-.502a.586.586 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185Zm5.896-1.89c0 .581-.105 1.123-.317 1.626-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.572 3.399 17.46.014 11.988.014 6.515.014 2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.453 4.453 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35zM7.85 19.238c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785zM4.147 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.732 2.732 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251zm12.005 4.509c1.141 2.949 5.53 2.05 5.42-1.11-.052-1.402-.978-2.354-2.46-2.685-1.268-.41-2.273-.462-3.61-1.15-.316-.225-.606-.04-.58.33.08 2.261 1.124 4.377 1.23 4.615zm3.701-4.509c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.507.291 2.063.952a2.732 2.732 0 0 1-.344 3.861 2.736 2.736 0 0 1-3.16.251zm-9.372-5.857c-.068-.2.03-.42.224-.502a.586.586 0 0 1 .2-.04.116.116 0 0 0 .09-.12c0-.039-.012-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965c.008 1.105 1.565 1.334 1.89.278a.14.14 0 0 0-.012-.106c-.027-.026-.053-.053-.093-.053s-.092.04-.145.053c-.304.172-.503-.053-.556-.185Zm3.291 0c-.068-.2.03-.42.225-.502a.586.586 0 0 1 .198-.04.116.116 0 0 0 .092-.12c0-.039-.013-.065-.052-.092a.964.964 0 0 0-.582-.198.97.97 0 0 0-.965.965.97.97 0 0 0 .965.965c.436 0 .806-.29.925-.687a.14.14 0 0 0-.013-.106c-.026-.026-.053-.053-.092-.053-.04 0-.093.04-.146.053-.317.172-.502-.053-.555-.185Zm-1.771 3.292a1.856 1.856 0 0 0 1.586-.899c.12-.185.066-.476-.29-.357a3.48 3.48 0 0 1-2.591 0c-.358-.119-.397.172-.292.357.33.53.873.886 1.587.9zm0 11.821c1.863 0 3.397-1.508 3.397-3.451 0-.384-.106-.86-.238-1.19-.423-1.018-2.182-2.526-2.79-3.808-.08-.198-.21-.291-.356-.291-.145 0-.29.093-.357.29-.595 1.283-2.366 2.804-2.79 3.809-.132.33-.238.806-.238 1.19A3.37 3.37 0 0 0 12 23.985zm7.852-9.256c-.225-.105-1.85-.978-3.29-2.657-.253-.278-.068-.542.25-.608 2.062-.569 2.802-1.825 4.482-1.799.793-.013 1.48.3 2.063.952.661 1.593.68 1.594-.33 3.85l-.014.011a2.736 2.736 0 0 1-3.16.251zm-3.7 4.509c1.14 2.949 5.53 2.05 5.42-1.11-.053-1.402-.98-2.354-2.46-2.685-1.269-.41-2.274-.462-3.61-1.15-.317-.225-.607-.04-.58.33.08 2.261 1.123 4.377 1.23 4.615zM4.146 14.73c.225-.105 1.85-.978 3.292-2.657.252-.278.067-.542-.25-.608-2.063-.569-2.804-1.825-4.483-1.799-.793-.013-1.507.291-2.063.952a2.732 2.732 0 0 0 .344 3.861c.893.748 2.16.848 3.16.251zm3.702 4.509c.106-.225 1.137-2.354 1.243-4.614.027-.37-.25-.556-.582-.331-1.335.688-2.34.727-3.61 1.15-1.493.344-2.42 1.296-2.458 2.684a2.806 2.806 0 0 0 2.71 2.896 2.78 2.78 0 0 0 2.697-1.785zm8.527-12.257c0 .582-.105 1.124-.317 1.627-.053.132-.04.264.093.317.185.08.515.172 1.057.185 1.243 0 3.094-.635 3.253-.661.78-.212 1.454-.304 2.155.026.384.185.78-.105.635-.515C21.57 3.399 17.46.014 11.988.014 6.516.014 2.4 3.4.723 7.961c-.146.41.25.7.634.515.7-.33 1.375-.238 2.156-.026.158.026 2.01.661 3.252.661.542-.013.873-.106 1.058-.185.132-.053.145-.185.092-.317a4.453 4.453 0 0 1-.317-1.627c0-2.406 1.957-4.35 4.377-4.35 2.445 0 4.401 1.944 4.401 4.35z" }) + ] + } + ); +}); + +export { SiCustomink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.cjs new file mode 100644 index 000000000..db2e3258e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#335EEA"; +const SiCyberdefenders = React__namespace.forwardRef(function SiCyberdefenders2({ title = "CyberDefenders", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.918 17.48c-.126 2.727-2.384 4.696-5.364 4.696H7.34v-6.123l-2.185-.957V24h8.381c4.334 0 7.549-2.962 7.549-6.881v-.163c-.65.235-1.372.415-2.167.524Zm1.355-9.501C18.611 4.313 17.726.989 15.432.213c-1.336-.452-2.005-.091-2.637.217-.199.09-.235.361-.072.505.361.307.813.687 1.336 1.174-1.95-1.138-7.333-2.835-7.874-.776-.488 1.86-1.319 4.587-1.319 4.587S.603 5.487.116 7.293c-.488 1.806 3.323 5.274 9.627 7.134 6.303 1.861 11.198 1.373 13.311-.921 2.113-2.294.072-5.473-2.781-5.527Zm-1.247.036c-.487.47-2.077 1.68-5.563 1.427-3.738-.271-6.809-2.474-7.604-3.088-.126-.091-.18-.235-.126-.398.054-.18.126-.469.253-.849.072-.234.343-.343.542-.216 1.571.903 4.1 2.221 6.791 2.402 2.402.163 3.847-.542 4.786-1.066.199-.108.452-.018.542.199l.47 1.156c.036.162.018.325-.091.433Z" }) + ] + } + ); +}); + +exports.default = SiCyberdefenders; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.d.ts new file mode 100644 index 000000000..240297856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#335EEA"; +declare const SiCyberdefenders: IconType; +export { SiCyberdefenders as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.mjs new file mode 100644 index 000000000..342302111 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCyberdefenders.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#335EEA"; +const SiCyberdefenders = React.forwardRef(function SiCyberdefenders2({ title = "CyberDefenders", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.918 17.48c-.126 2.727-2.384 4.696-5.364 4.696H7.34v-6.123l-2.185-.957V24h8.381c4.334 0 7.549-2.962 7.549-6.881v-.163c-.65.235-1.372.415-2.167.524Zm1.355-9.501C18.611 4.313 17.726.989 15.432.213c-1.336-.452-2.005-.091-2.637.217-.199.09-.235.361-.072.505.361.307.813.687 1.336 1.174-1.95-1.138-7.333-2.835-7.874-.776-.488 1.86-1.319 4.587-1.319 4.587S.603 5.487.116 7.293c-.488 1.806 3.323 5.274 9.627 7.134 6.303 1.861 11.198 1.373 13.311-.921 2.113-2.294.072-5.473-2.781-5.527Zm-1.247.036c-.487.47-2.077 1.68-5.563 1.427-3.738-.271-6.809-2.474-7.604-3.088-.126-.091-.18-.235-.126-.398.054-.18.126-.469.253-.849.072-.234.343-.343.542-.216 1.571.903 4.1 2.221 6.791 2.402 2.402.163 3.847-.542 4.786-1.066.199-.108.452-.018.542.199l.47 1.156c.036.162.018.325-.091.433Z" }) + ] + } + ); +}); + +export { SiCyberdefenders as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.cjs new file mode 100644 index 000000000..12c75701a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111111"; +const SiCycling74 = React__namespace.forwardRef(function SiCycling742({ title = "Cycling 74", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.283 9.033c-.042-.354.425-.74.87-1.057.636-.453 1.682-.82 2.892-.962 1.093-.127 2.099-.045 2.816.189.632.206 1.263.503 1.31.906.046.4-.496.836-1.06 1.182-.644.394-1.606.708-2.703.837-1.206.14-2.306.025-3.03-.267-.509-.206-1.053-.473-1.095-.828zm16.77-1.542c.365-.022.742.614 1.05 1.216.438.861.772 2.244.87 3.818.087 1.422-.038 2.715-.307 3.62-.236.798-.566 1.586-.981 1.61-.413.026-.837-.712-1.169-1.47-.379-.867-.662-2.137-.75-3.563-.096-1.57.066-2.98.395-3.89.23-.639.527-1.319.893-1.341zm-8.16 6.443c-.022-.336.362-.674.726-.948.522-.391 1.367-.677 2.335-.74.874-.055 1.674.082 2.238.345.496.233.989.552 1.014.935.024.382-.422.762-.882 1.055-.525.336-1.302.576-2.179.632-.966.063-1.839-.111-2.406-.43-.399-.225-.824-.51-.846-.849zM18.16 6.41c.288.177.343.685.357 1.14.02.65-.233 1.503-.74 2.327-.457.745-1.028 1.317-1.568 1.624-.476.271-1.02.488-1.347.287-.327-.2-.38-.782-.355-1.326.028-.622.279-1.392.737-2.14.505-.822 1.149-1.434 1.736-1.71.413-.196.89-.379 1.18-.202zM.382 6.211c.294-.168.771.04 1.183.257.588.31 1.228.967 1.722 1.834.447.784.685 1.582.704 2.219.015.56-.048 1.155-.382 1.345-.333.19-.876-.056-1.349-.353-.54-.34-1.107-.952-1.555-1.738C.211 8.91-.028 8.027.003 7.363c.021-.467.085-.984.38-1.152zm11.85 4.283c.32.188.341.828.32 1.406-.032.827-.398 1.948-1.054 3.066-.593 1.01-1.305 1.814-1.958 2.277-.575.407-1.225.756-1.589.542-.362-.212-.375-.948-.301-1.645.084-.797.44-1.813 1.036-2.826.655-1.115 1.453-1.979 2.159-2.41.496-.303 1.066-.598 1.387-.41Z" }) + ] + } + ); +}); + +exports.default = SiCycling74; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.d.ts new file mode 100644 index 000000000..f4596d752 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111111"; +declare const SiCycling74: IconType; +export { SiCycling74 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.mjs new file mode 100644 index 000000000..c147ddeb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCycling74.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111111"; +const SiCycling74 = React.forwardRef(function SiCycling742({ title = "Cycling 74", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.283 9.033c-.042-.354.425-.74.87-1.057.636-.453 1.682-.82 2.892-.962 1.093-.127 2.099-.045 2.816.189.632.206 1.263.503 1.31.906.046.4-.496.836-1.06 1.182-.644.394-1.606.708-2.703.837-1.206.14-2.306.025-3.03-.267-.509-.206-1.053-.473-1.095-.828zm16.77-1.542c.365-.022.742.614 1.05 1.216.438.861.772 2.244.87 3.818.087 1.422-.038 2.715-.307 3.62-.236.798-.566 1.586-.981 1.61-.413.026-.837-.712-1.169-1.47-.379-.867-.662-2.137-.75-3.563-.096-1.57.066-2.98.395-3.89.23-.639.527-1.319.893-1.341zm-8.16 6.443c-.022-.336.362-.674.726-.948.522-.391 1.367-.677 2.335-.74.874-.055 1.674.082 2.238.345.496.233.989.552 1.014.935.024.382-.422.762-.882 1.055-.525.336-1.302.576-2.179.632-.966.063-1.839-.111-2.406-.43-.399-.225-.824-.51-.846-.849zM18.16 6.41c.288.177.343.685.357 1.14.02.65-.233 1.503-.74 2.327-.457.745-1.028 1.317-1.568 1.624-.476.271-1.02.488-1.347.287-.327-.2-.38-.782-.355-1.326.028-.622.279-1.392.737-2.14.505-.822 1.149-1.434 1.736-1.71.413-.196.89-.379 1.18-.202zM.382 6.211c.294-.168.771.04 1.183.257.588.31 1.228.967 1.722 1.834.447.784.685 1.582.704 2.219.015.56-.048 1.155-.382 1.345-.333.19-.876-.056-1.349-.353-.54-.34-1.107-.952-1.555-1.738C.211 8.91-.028 8.027.003 7.363c.021-.467.085-.984.38-1.152zm11.85 4.283c.32.188.341.828.32 1.406-.032.827-.398 1.948-1.054 3.066-.593 1.01-1.305 1.814-1.958 2.277-.575.407-1.225.756-1.589.542-.362-.212-.375-.948-.301-1.645.084-.797.44-1.813 1.036-2.826.655-1.115 1.453-1.979 2.159-2.41.496-.303 1.066-.598 1.387-.41Z" }) + ] + } + ); +}); + +export { SiCycling74 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.cjs new file mode 100644 index 000000000..8d5a106d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#69D3A7"; +const SiCypress = React__namespace.forwardRef(function SiCypress2({ title = "Cypress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.998.0195c-.8642 0-1.6816.1101-2.1445.1934v.002C4.1731 1.2283 0 6.1368 0 12.0018c0 1.1265.1573 2.2328.4648 3.3028.0387.1453.0915.2993.1368.4473 1.607 4.865 6.2245 8.226 11.3925 8.2285.0651 0 .2518-.0003.502-.0118.8564-.0353 1.6228-.5734 1.9512-1.369l.4736-1.1544L20.4258 8.043H18.621l-2.3164 5.871-2.334-5.871h-1.9082l3.2734 8.0117c-.8115 1.9702-1.6252 3.9395-2.4355 5.9101-.0808.1945-.2655.3284-.4727.336-.144.005-.285.0098-.4316.0098-4.5848 0-8.6672-3.0695-9.9277-7.4649a10.3058 10.3058 0 0 1-.3985-2.8437c0-5.0887 3.6521-9.3404 8.6035-10.164.2214-.037.8885-.1446 1.7246-.1446 4.4166 0 8.269 2.732 9.7305 6.8476.0558.144.0977.293.1465.4395.299.9746.4531 1.9887.4531 3.0215 0 4.5696-2.9413 8.5326-7.3164 9.8613l.4863 1.5996c5.085-1.546 8.4995-6.1518 8.502-11.459 0-1.5491-.2983-2.8706-.6504-3.8926-.0432-.1212-.0873-.2422-.1309-.3633h-.002C21.4577 3.0954 17.0444.0195 11.998.0195ZM8.4336 7.8906c-1.1999 0-2.1747.3852-2.9805 1.1758-.8007.7856-1.205 1.7736-1.205 2.9356 0 1.1544.4068 2.1368 1.205 2.9199.8058.7906 1.7806 1.1738 2.9805 1.1738 1.705 0 3.1556-.955 3.7871-2.4883l.0332-.082-1.6289-.5547c-.168.4563-.7552 1.4883-2.1914 1.4883-.6745 0-1.2437-.2344-1.6934-.6992-.4572-.4699-.6875-1.0632-.6875-1.7578 0-.6998.2253-1.2809.6875-1.7735.4522-.4648 1.019-.7012 1.6934-.7012 1.438 0 2.0238 1.0815 2.1934 1.4883l1.627-.5527-.0333-.084c-.629-1.5358-2.082-2.4883-3.7871-2.4883Z" }) + ] + } + ); +}); + +exports.default = SiCypress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.d.ts new file mode 100644 index 000000000..ee4e811e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#69D3A7"; +declare const SiCypress: IconType; +export { SiCypress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.mjs new file mode 100644 index 000000000..76c6807c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCypress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#69D3A7"; +const SiCypress = React.forwardRef(function SiCypress2({ title = "Cypress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.998.0195c-.8642 0-1.6816.1101-2.1445.1934v.002C4.1731 1.2283 0 6.1368 0 12.0018c0 1.1265.1573 2.2328.4648 3.3028.0387.1453.0915.2993.1368.4473 1.607 4.865 6.2245 8.226 11.3925 8.2285.0651 0 .2518-.0003.502-.0118.8564-.0353 1.6228-.5734 1.9512-1.369l.4736-1.1544L20.4258 8.043H18.621l-2.3164 5.871-2.334-5.871h-1.9082l3.2734 8.0117c-.8115 1.9702-1.6252 3.9395-2.4355 5.9101-.0808.1945-.2655.3284-.4727.336-.144.005-.285.0098-.4316.0098-4.5848 0-8.6672-3.0695-9.9277-7.4649a10.3058 10.3058 0 0 1-.3985-2.8437c0-5.0887 3.6521-9.3404 8.6035-10.164.2214-.037.8885-.1446 1.7246-.1446 4.4166 0 8.269 2.732 9.7305 6.8476.0558.144.0977.293.1465.4395.299.9746.4531 1.9887.4531 3.0215 0 4.5696-2.9413 8.5326-7.3164 9.8613l.4863 1.5996c5.085-1.546 8.4995-6.1518 8.502-11.459 0-1.5491-.2983-2.8706-.6504-3.8926-.0432-.1212-.0873-.2422-.1309-.3633h-.002C21.4577 3.0954 17.0444.0195 11.998.0195ZM8.4336 7.8906c-1.1999 0-2.1747.3852-2.9805 1.1758-.8007.7856-1.205 1.7736-1.205 2.9356 0 1.1544.4068 2.1368 1.205 2.9199.8058.7906 1.7806 1.1738 2.9805 1.1738 1.705 0 3.1556-.955 3.7871-2.4883l.0332-.082-1.6289-.5547c-.168.4563-.7552 1.4883-2.1914 1.4883-.6745 0-1.2437-.2344-1.6934-.6992-.4572-.4699-.6875-1.0632-.6875-1.7578 0-.6998.2253-1.2809.6875-1.7735.4522-.4648 1.019-.7012 1.6934-.7012 1.438 0 2.0238 1.0815 2.1934 1.4883l1.627-.5527-.0333-.084c-.629-1.5358-2.082-2.4883-3.7871-2.4883Z" }) + ] + } + ); +}); + +export { SiCypress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.cjs new file mode 100644 index 000000000..d159840f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7DF1E"; +const SiCytoscapedotjs = React__namespace.forwardRef(function SiCytoscapedotjs2({ title = "Cytoscape.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 0v24H0V0h24zm-4.8416 7.2596c-.939 0-1.7199.6988-1.8416 1.61l-2.7097.6834a1.8574 1.8574 0 00-1.5505-.834c-1.026 0-1.858.832-1.858 1.858 0 1.0259.832 1.8579 1.858 1.8579.2554 0 .5063-.052.7388-.1528l1.792 1.8298a2.0325 2.0325 0 00-.0493.0932l-2.3452-.316c-.1616-.868-.9238-1.5154-1.8264-1.5154-1.0259 0-1.858.832-1.858 1.858 0 1.0258.8321 1.858 1.858 1.858a1.859 1.859 0 001.6365-.9776l2.3456.316c.0214.1408.0573.2788.1074.412l-.984.8666a1.136 1.136 0 00-.3179-.0454c-.626 0-1.1337.5077-1.1337 1.1338 0 .6258.5078 1.1336 1.1337 1.1336.626 0 1.1336-.5078 1.1336-1.1336 0-.0496-.0031-.0988-.0096-.1476l.9446-.832c.34.2325.7417.3572 1.1578.3572.082 0 .1638-.0048.245-.0145l.8342 1.665a1.8536 1.8536 0 00-.5009 1.269c0 1.0258.8322 1.858 1.8581 1.858 1.026 0 1.858-.8322 1.858-1.858 0-1.026-.832-1.8581-1.858-1.8581-.0873 0-.1743.006-.2604.0182l-.8039-1.6046a2.0519 2.0519 0 00.6834-1.5305 2.0553 2.0553 0 00-.9357-1.724l.7343-2.4191c.9905-.04 1.7818-.856 1.7818-1.8565 0-1.0259-.8321-1.858-1.858-1.858zm-1.582 2.8326c.1244.2014.2862.3776.4762.5185l-.7442 2.4523a2.046 2.046 0 00-.8189.2015l-1.787-1.8249a1.8483 1.8483 0 00.2025-.6736z" }) + ] + } + ); +}); + +exports.default = SiCytoscapedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.d.ts new file mode 100644 index 000000000..6d2d915cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7DF1E"; +declare const SiCytoscapedotjs: IconType; +export { SiCytoscapedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.mjs new file mode 100644 index 000000000..54d71a7c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiCytoscapedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7DF1E"; +const SiCytoscapedotjs = React.forwardRef(function SiCytoscapedotjs2({ title = "Cytoscape.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 0v24H0V0h24zm-4.8416 7.2596c-.939 0-1.7199.6988-1.8416 1.61l-2.7097.6834a1.8574 1.8574 0 00-1.5505-.834c-1.026 0-1.858.832-1.858 1.858 0 1.0259.832 1.8579 1.858 1.8579.2554 0 .5063-.052.7388-.1528l1.792 1.8298a2.0325 2.0325 0 00-.0493.0932l-2.3452-.316c-.1616-.868-.9238-1.5154-1.8264-1.5154-1.0259 0-1.858.832-1.858 1.858 0 1.0258.8321 1.858 1.858 1.858a1.859 1.859 0 001.6365-.9776l2.3456.316c.0214.1408.0573.2788.1074.412l-.984.8666a1.136 1.136 0 00-.3179-.0454c-.626 0-1.1337.5077-1.1337 1.1338 0 .6258.5078 1.1336 1.1337 1.1336.626 0 1.1336-.5078 1.1336-1.1336 0-.0496-.0031-.0988-.0096-.1476l.9446-.832c.34.2325.7417.3572 1.1578.3572.082 0 .1638-.0048.245-.0145l.8342 1.665a1.8536 1.8536 0 00-.5009 1.269c0 1.0258.8322 1.858 1.8581 1.858 1.026 0 1.858-.8322 1.858-1.858 0-1.026-.832-1.8581-1.858-1.8581-.0873 0-.1743.006-.2604.0182l-.8039-1.6046a2.0519 2.0519 0 00.6834-1.5305 2.0553 2.0553 0 00-.9357-1.724l.7343-2.4191c.9905-.04 1.7818-.856 1.7818-1.8565 0-1.0259-.8321-1.858-1.858-1.858zm-1.582 2.8326c.1244.2014.2862.3776.4762.5185l-.7442 2.4523a2.046 2.046 0 00-.8189.2015l-1.787-1.8249a1.8483 1.8483 0 00.2025-.6736z" }) + ] + } + ); +}); + +export { SiCytoscapedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiD.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiD.cjs new file mode 100644 index 000000000..a1588b05b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiD.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B03931"; +const SiD = React__namespace.forwardRef(function SiD2({ title = "D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.635 3.883a1.364 1.25 0 0 0-1.363 1.25 1.364 1.25 0 0 0 1.363 1.25A1.364 1.25 0 0 0 24 5.133a1.364 1.25 0 0 0-1.365-1.25zm-16.004.418-6.027.008c-.026 0-.051-.003-.076 0-.296.036-.527.273-.528.558l.018 14.574c0 .22.06.676.682.676l5.58-.021c1.595-.003 2.664-.031 3.3-.112h.016a11.43 11.43 0 0 0 1.955-.469c1.22-.38 2.3-.944 3.23-1.697a7.854 7.854 0 0 0 2.114-2.562 6.716 6.716 0 0 0 .646-1.987 4.244 3.89 0 0 0 .26.028 4.244 3.89 0 0 0 4.244-3.89 4.244 3.89 0 0 0-4.244-3.89 4.244 3.89 0 0 0-2.9 1.082 8.838 8.838 0 0 0-2.25-1.355c-1.536-.65-3.536-.948-6.02-.943zm-.262 3.004c1.215-.003 2.079.034 2.569.101a7.32 7.32 0 0 1 1.617.436c.57.218 1.068.483 1.496.814 1.177.915 1.732 1.999 1.734 3.432.003 1.468-.534 2.611-1.68 3.57a5.582 5.582 0 0 1-1.177.742c-.409.19-.942.355-1.615.496-.636.128-1.6.2-2.856.202l-2.673.004-.012-9.793 2.598-.004z" }) + ] + } + ); +}); + +exports.default = SiD; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiD.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiD.d.ts new file mode 100644 index 000000000..f25c39122 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiD.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B03931"; +declare const SiD: IconType; +export { SiD as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiD.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiD.mjs new file mode 100644 index 000000000..380d2aa9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiD.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B03931"; +const SiD = React.forwardRef(function SiD2({ title = "D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.635 3.883a1.364 1.25 0 0 0-1.363 1.25 1.364 1.25 0 0 0 1.363 1.25A1.364 1.25 0 0 0 24 5.133a1.364 1.25 0 0 0-1.365-1.25zm-16.004.418-6.027.008c-.026 0-.051-.003-.076 0-.296.036-.527.273-.528.558l.018 14.574c0 .22.06.676.682.676l5.58-.021c1.595-.003 2.664-.031 3.3-.112h.016a11.43 11.43 0 0 0 1.955-.469c1.22-.38 2.3-.944 3.23-1.697a7.854 7.854 0 0 0 2.114-2.562 6.716 6.716 0 0 0 .646-1.987 4.244 3.89 0 0 0 .26.028 4.244 3.89 0 0 0 4.244-3.89 4.244 3.89 0 0 0-4.244-3.89 4.244 3.89 0 0 0-2.9 1.082 8.838 8.838 0 0 0-2.25-1.355c-1.536-.65-3.536-.948-6.02-.943zm-.262 3.004c1.215-.003 2.079.034 2.569.101a7.32 7.32 0 0 1 1.617.436c.57.218 1.068.483 1.496.814 1.177.915 1.732 1.999 1.734 3.432.003 1.468-.534 2.611-1.68 3.57a5.582 5.582 0 0 1-1.177.742c-.409.19-.942.355-1.615.496-.636.128-1.6.2-2.856.202l-2.673.004-.012-9.793 2.598-.004z" }) + ] + } + ); +}); + +export { SiD as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiD3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiD3.cjs new file mode 100644 index 000000000..fb4337555 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiD3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9A03C"; +const SiD3 = React__namespace.forwardRef(function SiD32({ title = "D3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.312 12C13.312 5.718 8.22.625 1.937.625H0v5h1.938c3.521 0 6.375 2.854 6.375 6.375s-2.854 6.375-6.375 6.375H0v5h1.938c6.281 0 11.374-5.093 11.374-11.375zM24 7.563C24 3.731 20.893.625 17.062.625h-8a13.4154 13.4154 0 0 1 4.686 5h3.314c1.069 0 1.938.868 1.938 1.938 0 1.07-.869 1.938-1.938 1.938h-1.938c.313 1.652.313 3.348 0 5h1.938c1.068 0 1.938.867 1.938 1.938s-.869 1.938-1.938 1.938h-3.314a13.4154 13.4154 0 0 1-4.686 5h8c1.621 0 3.191-.568 4.438-1.605 2.943-2.45 3.346-6.824.895-9.77A6.9459 6.9459 0 0 0 24 7.563z" }) + ] + } + ); +}); + +exports.default = SiD3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiD3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiD3.d.ts new file mode 100644 index 000000000..9976d2e5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiD3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9A03C"; +declare const SiD3: IconType; +export { SiD3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiD3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiD3.mjs new file mode 100644 index 000000000..4d8d63ee4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiD3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9A03C"; +const SiD3 = React.forwardRef(function SiD32({ title = "D3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.312 12C13.312 5.718 8.22.625 1.937.625H0v5h1.938c3.521 0 6.375 2.854 6.375 6.375s-2.854 6.375-6.375 6.375H0v5h1.938c6.281 0 11.374-5.093 11.374-11.375zM24 7.563C24 3.731 20.893.625 17.062.625h-8a13.4154 13.4154 0 0 1 4.686 5h3.314c1.069 0 1.938.868 1.938 1.938 0 1.07-.869 1.938-1.938 1.938h-1.938c.313 1.652.313 3.348 0 5h1.938c1.068 0 1.938.867 1.938 1.938s-.869 1.938-1.938 1.938h-3.314a13.4154 13.4154 0 0 1-4.686 5h8c1.621 0 3.191-.568 4.438-1.605 2.943-2.45 3.346-6.824.895-9.77A6.9459 6.9459 0 0 0 24 7.563z" }) + ] + } + ); +}); + +export { SiD3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.cjs new file mode 100644 index 000000000..2f451dda0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#646B52"; +const SiDacia = React__namespace.forwardRef(function SiDacia2({ title = "Dacia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 8.646v2.23h8.252v2.248H0v2.23h9.112a.62.62 0 00.489-.201L12 12.819l2.399 2.334a.62.62 0 00.49.201H24v-2.23h-8.252v-2.248H24v-2.23h-9.112a.62.62 0 00-.489.201L12 11.181 9.601 8.847a.62.62 0 00-.49-.201Z" }) + ] + } + ); +}); + +exports.default = SiDacia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.d.ts new file mode 100644 index 000000000..28fdf228b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#646B52"; +declare const SiDacia: IconType; +export { SiDacia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.mjs new file mode 100644 index 000000000..9afbbf525 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDacia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#646B52"; +const SiDacia = React.forwardRef(function SiDacia2({ title = "Dacia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 8.646v2.23h8.252v2.248H0v2.23h9.112a.62.62 0 00.489-.201L12 12.819l2.399 2.334a.62.62 0 00.49.201H24v-2.23h-8.252v-2.248H24v-2.23h-9.112a.62.62 0 00-.489.201L12 11.181 9.601 8.847a.62.62 0 00-.49-.201Z" }) + ] + } + ); +}); + +export { SiDacia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.cjs new file mode 100644 index 000000000..00c0c5656 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00529B"; +const SiDaf = React__namespace.forwardRef(function SiDaf2({ title = "DAF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.649 12.782h-2.643V8.723H24v1.183h-4.351v.723h4.277v1.147h-4.277zm-7.51-3.039l-1.831 3.05H7.76l2.414-4.07h3.924l2.424 4.07h-5.364l.64-1.06h1.534zM.004 12.785V8.741h4.99c1.62 0 2.773.738 2.773 1.994 0 1.196-.914 2.05-2.82 2.05zm4.008-1.034c.621 0 .985-.53.985-.935 0-.413-.325-.896-.967-.896H2.671v1.831zM0 13.731h23.926v1.546H0Z" }) + ] + } + ); +}); + +exports.default = SiDaf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.d.ts new file mode 100644 index 000000000..0a92d08bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00529B"; +declare const SiDaf: IconType; +export { SiDaf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.mjs new file mode 100644 index 000000000..d9a506dd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00529B"; +const SiDaf = React.forwardRef(function SiDaf2({ title = "DAF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.649 12.782h-2.643V8.723H24v1.183h-4.351v.723h4.277v1.147h-4.277zm-7.51-3.039l-1.831 3.05H7.76l2.414-4.07h3.924l2.424 4.07h-5.364l.64-1.06h1.534zM.004 12.785V8.741h4.99c1.62 0 2.773.738 2.773 1.994 0 1.196-.914 2.05-2.82 2.05zm4.008-1.034c.621 0 .985-.53.985-.935 0-.413-.325-.896-.967-.896H2.671v1.831zM0 13.731h23.926v1.546H0Z" }) + ] + } + ); +}); + +export { SiDaf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.cjs new file mode 100644 index 000000000..0c4906a74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CE3DF3"; +const SiDailydotdev = React__namespace.forwardRef(function SiDailydotdev2({ title = "daily.dev", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.29 5.706a1.405 1.405 0 0 0-1.987 0L4.716 17.296l1.324-2.65-2.65-2.649 3.312-3.311 2.65 2.65 1.986-1.988-3.642-3.642a1.405 1.405 0 0 0-1.987 0L.411 11.004a1.404 1.404 0 0 0 0 1.987l4.305 4.304.993.993a1.405 1.405 0 0 0 1.987 0L19.285 6.7l-.993-.994Zm-.332 3.647 2.65 2.65-4.306 4.305a1.404 1.404 0 1 0 1.986 1.986l5.299-5.298a1.404 1.404 0 0 0 0-1.987l-4.305-4.304-1.324 2.648Z" }) + ] + } + ); +}); + +exports.default = SiDailydotdev; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.d.ts new file mode 100644 index 000000000..5f61ca0ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CE3DF3"; +declare const SiDailydotdev: IconType; +export { SiDailydotdev as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.mjs new file mode 100644 index 000000000..3663578f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDailydotdev.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CE3DF3"; +const SiDailydotdev = React.forwardRef(function SiDailydotdev2({ title = "daily.dev", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.29 5.706a1.405 1.405 0 0 0-1.987 0L4.716 17.296l1.324-2.65-2.65-2.649 3.312-3.311 2.65 2.65 1.986-1.988-3.642-3.642a1.405 1.405 0 0 0-1.987 0L.411 11.004a1.404 1.404 0 0 0 0 1.987l4.305 4.304.993.993a1.405 1.405 0 0 0 1.987 0L19.285 6.7l-.993-.994Zm-.332 3.647 2.65 2.65-4.306 4.305a1.404 1.404 0 1 0 1.986 1.986l5.299-5.298a1.404 1.404 0 0 0 0-1.987l-4.305-4.304-1.324 2.648Z" }) + ] + } + ); +}); + +export { SiDailydotdev as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.cjs new file mode 100644 index 000000000..37c71ae9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0A0A"; +const SiDailymotion = React__namespace.forwardRef(function SiDailymotion2({ title = "Dailymotion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.823 7.327a11.928 11.928 0 0 0-2.606-3.814 12.126 12.126 0 0 0-3.866-2.57A12.246 12.246 0 0 0 10.617 0H1.831a.602.602 0 0 0-.609.603v3.764c0 .162.064.312.179.426l4.164 4.123a.612.612 0 0 0 .439.177h4.56c.806 0 1.56.313 2.125.88.557.559.856 1.296.843 2.075-.029 1.571-1.343 2.849-2.931 2.849h-6.74a.613.613 0 0 0-.432.176.619.619 0 0 0-.178.427v3.764c0 .162.063.312.178.427l4.139 4.099a.647.647 0 0 0 .476.21h2.572a12.276 12.276 0 0 0 4.733-.945 12.145 12.145 0 0 0 3.866-2.571 11.959 11.959 0 0 0 2.607-3.813c.633-1.479.956-3.051.956-4.67 0-1.619-.321-3.19-.956-4.669l.001-.005ZM2.441 4.118V1.982l2.945 2.755.001 2.297-2.946-2.916Zm4.975 17.813-2.945-2.917v-2.137l2.945 2.755v2.299Zm-2.004-5.832h5.19c2.248 0 4.107-1.807 4.147-4.03a4.027 4.027 0 0 0-1.192-2.937 4.203 4.203 0 0 0-2.996-1.239H6.606V5.216h3.996c1.831 0 3.553.706 4.849 1.986a6.724 6.724 0 0 1-.152 9.736 6.875 6.875 0 0 1-4.697 1.84H8.275L5.412 16.1v-.001Zm15.289.1a10.753 10.753 0 0 1-2.345 3.431 10.91 10.91 0 0 1-3.48 2.314 11.018 11.018 0 0 1-4.26.847H8.633v-2.814h1.916c2.145 0 4.161-.802 5.675-2.254a7.88 7.88 0 0 0 2.451-5.728c0-2.177-.87-4.21-2.451-5.728-1.514-1.454-3.528-2.254-5.675-2.254h-4.16L3.383 1.202h7.234c1.479 0 2.911.285 4.259.847a10.957 10.957 0 0 1 3.48 2.313 10.769 10.769 0 0 1 2.345 3.432c.571 1.33.86 2.743.86 4.202 0 1.46-.289 2.873-.86 4.203Z" }) + ] + } + ); +}); + +exports.default = SiDailymotion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.d.ts new file mode 100644 index 000000000..be832d63a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0A0A"; +declare const SiDailymotion: IconType; +export { SiDailymotion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.mjs new file mode 100644 index 000000000..5bbd73f0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDailymotion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0A0A"; +const SiDailymotion = React.forwardRef(function SiDailymotion2({ title = "Dailymotion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.823 7.327a11.928 11.928 0 0 0-2.606-3.814 12.126 12.126 0 0 0-3.866-2.57A12.246 12.246 0 0 0 10.617 0H1.831a.602.602 0 0 0-.609.603v3.764c0 .162.064.312.179.426l4.164 4.123a.612.612 0 0 0 .439.177h4.56c.806 0 1.56.313 2.125.88.557.559.856 1.296.843 2.075-.029 1.571-1.343 2.849-2.931 2.849h-6.74a.613.613 0 0 0-.432.176.619.619 0 0 0-.178.427v3.764c0 .162.063.312.178.427l4.139 4.099a.647.647 0 0 0 .476.21h2.572a12.276 12.276 0 0 0 4.733-.945 12.145 12.145 0 0 0 3.866-2.571 11.959 11.959 0 0 0 2.607-3.813c.633-1.479.956-3.051.956-4.67 0-1.619-.321-3.19-.956-4.669l.001-.005ZM2.441 4.118V1.982l2.945 2.755.001 2.297-2.946-2.916Zm4.975 17.813-2.945-2.917v-2.137l2.945 2.755v2.299Zm-2.004-5.832h5.19c2.248 0 4.107-1.807 4.147-4.03a4.027 4.027 0 0 0-1.192-2.937 4.203 4.203 0 0 0-2.996-1.239H6.606V5.216h3.996c1.831 0 3.553.706 4.849 1.986a6.724 6.724 0 0 1-.152 9.736 6.875 6.875 0 0 1-4.697 1.84H8.275L5.412 16.1v-.001Zm15.289.1a10.753 10.753 0 0 1-2.345 3.431 10.91 10.91 0 0 1-3.48 2.314 11.018 11.018 0 0 1-4.26.847H8.633v-2.814h1.916c2.145 0 4.161-.802 5.675-2.254a7.88 7.88 0 0 0 2.451-5.728c0-2.177-.87-4.21-2.451-5.728-1.514-1.454-3.528-2.254-5.675-2.254h-4.16L3.383 1.202h7.234c1.479 0 2.911.285 4.259.847a10.957 10.957 0 0 1 3.48 2.313 10.769 10.769 0 0 1 2.345 3.432c.571 1.33.86 2.743.86 4.202 0 1.46-.289 2.873-.86 4.203Z" }) + ] + } + ); +}); + +export { SiDailymotion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.cjs new file mode 100644 index 000000000..c11a0b751 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC63A"; +const SiDaisyui = React__namespace.forwardRef(function SiDaisyui2({ title = "daisyUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-1.56 0-3.137.721-4.095 2.122a5 5 0 0 0-.857-.081c-1.353-.006-2.62.565-3.53 1.476C2.415 4.62 1.81 6.241 2.121 7.905.722 8.863 0 10.44 0 12s.721 3.137 2.122 4.095c-.31 1.664.294 3.286 1.395 4.388 1.102 1.101 2.724 1.706 4.388 1.395C8.863 23.278 10.44 24 12 24s3.137-.721 4.095-2.122c1.664.31 3.286-.294 4.388-1.395 1.101-1.102 1.706-2.724 1.395-4.388C23.278 15.137 24 13.56 24 12s-.721-3.137-2.122-4.095c.31-1.664-.294-3.286-1.395-4.388-1.102-1.101-2.724-1.706-4.388-1.395C15.137.722 13.56 0 12 0m0 .962c1.18 0 2.345.471 3.123 1.447a5 5 0 0 0-.64.315 4.97 4.97 0 0 1-4.965 0 5 5 0 0 0-.64-.315C9.654 1.433 10.82.962 12 .962M7.026 2.99q.196 0 .397.023a5 5 0 0 0-.229.67 4.97 4.97 0 0 1-3.511 3.511 5 5 0 0 0-.67.229c-.138-1.238.352-2.393 1.185-3.225.743-.743 1.742-1.214 2.828-1.208m10.011 0c1.062.013 2.037.479 2.765 1.208.833.832 1.323 1.987 1.185 3.225a5 5 0 0 0-.67-.229 4.97 4.97 0 0 1-3.511-3.511 5 5 0 0 0-.229-.67 4 4 0 0 1 .46-.023m-8.667.252q.333.124.668.315a5.94 5.94 0 0 0 5.924 0q.335-.191.668-.315a4.5 4.5 0 0 1 .247.69 5.94 5.94 0 0 0 4.19 4.191q.37.101.691.247a4.5 4.5 0 0 1-.315.668 5.94 5.94 0 0 0 0 5.924q.191.335.315.668a4.5 4.5 0 0 1-.69.247 5.94 5.94 0 0 0-4.191 4.19q-.101.37-.247.691a4.5 4.5 0 0 1-.668-.315 5.94 5.94 0 0 0-5.924 0 4.5 4.5 0 0 1-.668.315 4.5 4.5 0 0 1-.247-.69 5.94 5.94 0 0 0-4.19-4.191 4.5 4.5 0 0 1-.691-.247q.124-.333.315-.668a5.94 5.94 0 0 0 0-5.924 4.5 4.5 0 0 1-.315-.668q.322-.146.69-.247a5.94 5.94 0 0 0 4.191-4.19q.101-.37.247-.691M2.41 8.877q.13.323.314.64a4.97 4.97 0 0 1 0 4.965 5 5 0 0 0-.315.64C1.433 14.346.962 13.18.962 12s.471-2.345 1.447-3.123m19.18 0c.977.778 1.448 1.943 1.448 3.123s-.471 2.345-1.447 3.123a5 5 0 0 0-.315-.64 4.97 4.97 0 0 1 0-4.965q.183-.319.315-.64m-14.907 1.57a.417.417 0 0 0-.296.714l.117.117c-.13.228-.203.492-.203.774 0 .87.7 1.569 1.569 1.569s1.568-.7 1.568-1.569-.7-1.568-1.568-1.568c-.282 0-.546.073-.775.203l-.116-.117a.42.42 0 0 0-.296-.123m10.748 0a.42.42 0 0 0-.295.123l-.12.12a1.57 1.57 0 0 0-.781-.206c-.869 0-1.569.7-1.569 1.568 0 .87.7 1.569 1.569 1.569s1.569-.7 1.569-1.569c0-.279-.073-.54-.2-.767l.123-.123a.417.417 0 0 0-.296-.715m-9.904.237a.627.627 0 0 1 .627.627.627.627 0 0 1-.627.627.627.627 0 0 1-.628-.627.627.627 0 0 1 .628-.627m8.365 0a.627.627 0 0 1 .628.627.627.627 0 0 1-.628.627.627.627 0 0 1-.627-.627.627.627 0 0 1 .627-.627m-7.187 1.17a.314.314 0 0 1 .313.314.314.314 0 0 1-.313.314.314.314 0 0 1-.314-.314.314.314 0 0 1 .314-.314m8.365 0a.314.314 0 0 1 .314.314.314.314 0 0 1-.314.314.314.314 0 0 1-.314-.314.314.314 0 0 1 .314-.314m-8.757.758a.21.21 0 0 1 .21.209.21.21 0 0 1-.21.209.21.21 0 0 1-.21-.21.21.21 0 0 1 .21-.208m8.366 0a.21.21 0 0 1 .209.209.21.21 0 0 1-.21.209.21.21 0 0 1-.209-.21.21.21 0 0 1 .21-.208m-5.551.48a.32.32 0 0 0-.232.082.32.32 0 0 0-.023.453c.296.328.737.524 1.18.524.441 0 .882-.196 1.178-.524a.32.32 0 0 0-.023-.453.32.32 0 0 0-.453.023c-.145.16-.486.312-.703.312s-.558-.152-.703-.312a.32.32 0 0 0-.221-.106m-8.115 3.485q.319.134.67.229a4.97 4.97 0 0 1 3.511 3.511q.095.351.229.67c-1.238.138-2.393-.352-3.225-1.185-.833-.832-1.323-1.987-1.185-3.225m17.974 0c.138 1.238-.352 2.393-1.185 3.225-.832.833-1.987 1.323-3.225 1.185a5 5 0 0 0 .229-.67 4.97 4.97 0 0 1 3.511-3.511 5 5 0 0 0 .67-.229M12 20.612c.857 0 1.714.222 2.482.664q.318.183.64.315c-.777.976-1.942 1.447-3.122 1.447s-2.345-.471-3.123-1.447q.323-.132.64-.315A5 5 0 0 1 12 20.612" }) + ] + } + ); +}); + +exports.default = SiDaisyui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.d.ts new file mode 100644 index 000000000..0fa524440 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC63A"; +declare const SiDaisyui: IconType; +export { SiDaisyui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.mjs new file mode 100644 index 000000000..85e9253ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaisyui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC63A"; +const SiDaisyui = React.forwardRef(function SiDaisyui2({ title = "daisyUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-1.56 0-3.137.721-4.095 2.122a5 5 0 0 0-.857-.081c-1.353-.006-2.62.565-3.53 1.476C2.415 4.62 1.81 6.241 2.121 7.905.722 8.863 0 10.44 0 12s.721 3.137 2.122 4.095c-.31 1.664.294 3.286 1.395 4.388 1.102 1.101 2.724 1.706 4.388 1.395C8.863 23.278 10.44 24 12 24s3.137-.721 4.095-2.122c1.664.31 3.286-.294 4.388-1.395 1.101-1.102 1.706-2.724 1.395-4.388C23.278 15.137 24 13.56 24 12s-.721-3.137-2.122-4.095c.31-1.664-.294-3.286-1.395-4.388-1.102-1.101-2.724-1.706-4.388-1.395C15.137.722 13.56 0 12 0m0 .962c1.18 0 2.345.471 3.123 1.447a5 5 0 0 0-.64.315 4.97 4.97 0 0 1-4.965 0 5 5 0 0 0-.64-.315C9.654 1.433 10.82.962 12 .962M7.026 2.99q.196 0 .397.023a5 5 0 0 0-.229.67 4.97 4.97 0 0 1-3.511 3.511 5 5 0 0 0-.67.229c-.138-1.238.352-2.393 1.185-3.225.743-.743 1.742-1.214 2.828-1.208m10.011 0c1.062.013 2.037.479 2.765 1.208.833.832 1.323 1.987 1.185 3.225a5 5 0 0 0-.67-.229 4.97 4.97 0 0 1-3.511-3.511 5 5 0 0 0-.229-.67 4 4 0 0 1 .46-.023m-8.667.252q.333.124.668.315a5.94 5.94 0 0 0 5.924 0q.335-.191.668-.315a4.5 4.5 0 0 1 .247.69 5.94 5.94 0 0 0 4.19 4.191q.37.101.691.247a4.5 4.5 0 0 1-.315.668 5.94 5.94 0 0 0 0 5.924q.191.335.315.668a4.5 4.5 0 0 1-.69.247 5.94 5.94 0 0 0-4.191 4.19q-.101.37-.247.691a4.5 4.5 0 0 1-.668-.315 5.94 5.94 0 0 0-5.924 0 4.5 4.5 0 0 1-.668.315 4.5 4.5 0 0 1-.247-.69 5.94 5.94 0 0 0-4.19-4.191 4.5 4.5 0 0 1-.691-.247q.124-.333.315-.668a5.94 5.94 0 0 0 0-5.924 4.5 4.5 0 0 1-.315-.668q.322-.146.69-.247a5.94 5.94 0 0 0 4.191-4.19q.101-.37.247-.691M2.41 8.877q.13.323.314.64a4.97 4.97 0 0 1 0 4.965 5 5 0 0 0-.315.64C1.433 14.346.962 13.18.962 12s.471-2.345 1.447-3.123m19.18 0c.977.778 1.448 1.943 1.448 3.123s-.471 2.345-1.447 3.123a5 5 0 0 0-.315-.64 4.97 4.97 0 0 1 0-4.965q.183-.319.315-.64m-14.907 1.57a.417.417 0 0 0-.296.714l.117.117c-.13.228-.203.492-.203.774 0 .87.7 1.569 1.569 1.569s1.568-.7 1.568-1.569-.7-1.568-1.568-1.568c-.282 0-.546.073-.775.203l-.116-.117a.42.42 0 0 0-.296-.123m10.748 0a.42.42 0 0 0-.295.123l-.12.12a1.57 1.57 0 0 0-.781-.206c-.869 0-1.569.7-1.569 1.568 0 .87.7 1.569 1.569 1.569s1.569-.7 1.569-1.569c0-.279-.073-.54-.2-.767l.123-.123a.417.417 0 0 0-.296-.715m-9.904.237a.627.627 0 0 1 .627.627.627.627 0 0 1-.627.627.627.627 0 0 1-.628-.627.627.627 0 0 1 .628-.627m8.365 0a.627.627 0 0 1 .628.627.627.627 0 0 1-.628.627.627.627 0 0 1-.627-.627.627.627 0 0 1 .627-.627m-7.187 1.17a.314.314 0 0 1 .313.314.314.314 0 0 1-.313.314.314.314 0 0 1-.314-.314.314.314 0 0 1 .314-.314m8.365 0a.314.314 0 0 1 .314.314.314.314 0 0 1-.314.314.314.314 0 0 1-.314-.314.314.314 0 0 1 .314-.314m-8.757.758a.21.21 0 0 1 .21.209.21.21 0 0 1-.21.209.21.21 0 0 1-.21-.21.21.21 0 0 1 .21-.208m8.366 0a.21.21 0 0 1 .209.209.21.21 0 0 1-.21.209.21.21 0 0 1-.209-.21.21.21 0 0 1 .21-.208m-5.551.48a.32.32 0 0 0-.232.082.32.32 0 0 0-.023.453c.296.328.737.524 1.18.524.441 0 .882-.196 1.178-.524a.32.32 0 0 0-.023-.453.32.32 0 0 0-.453.023c-.145.16-.486.312-.703.312s-.558-.152-.703-.312a.32.32 0 0 0-.221-.106m-8.115 3.485q.319.134.67.229a4.97 4.97 0 0 1 3.511 3.511q.095.351.229.67c-1.238.138-2.393-.352-3.225-1.185-.833-.832-1.323-1.987-1.185-3.225m17.974 0c.138 1.238-.352 2.393-1.185 3.225-.832.833-1.987 1.323-3.225 1.185a5 5 0 0 0 .229-.67 4.97 4.97 0 0 1 3.511-3.511 5 5 0 0 0 .67-.229M12 20.612c.857 0 1.714.222 2.482.664q.318.183.64.315c-.777.976-1.942 1.447-3.122 1.447s-2.345-.471-3.123-1.447q.323-.132.64-.315A5 5 0 0 1 12 20.612" }) + ] + } + ); +}); + +export { SiDaisyui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.cjs new file mode 100644 index 000000000..600be9927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D2192"; +const SiDapr = React__namespace.forwardRef(function SiDapr2({ title = "Dapr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.6175 7.658h10.5093a.2456.2456 0 0 1 .2461.2461v.656a.2456.2456 0 0 1-.2461.2462H7.6175a.2456.2456 0 0 1-.2461-.2462v-.656a.2456.2456 0 0 1 .2461-.2462zm2.0329-4.476h6.533a.132.132 0 0 1 .1323.1324v4.5199a.132.132 0 0 1-.1323.1323h-6.533a.132.132 0 0 1-.1324-.1323v-4.52a.132.132 0 0 1 .1324-.1323zm5.8312 16.9-1.0503.736-1.0502-.736.1544-4.2073h1.7917zm-9.6058-4.244H4.0963v-.5588c-.17.2134-.3418.369-.5155.4666-.3038.17-.6492.255-1.0362.255-.6258 0-1.1828-.2152-1.671-.6457C.2911 14.8415 0 14.1614 0 13.315c0-.861.2984-1.5482.8952-2.0619.4738-.4088 1.0182-.6131 1.6331-.6131.358 0 .6945.076 1.0091.2279.1809.0868.3672.2297.5589.4286V7.6881h1.7795Zm-1.7253-2.5177c0-.3183-.1121-.5887-.3364-.8112-.2242-.2224-.4955-.3337-.8138-.3337-.3545 0-.6456.1339-.8735.4016-.1845.217-.2767.4648-.2767.7433 0 .2786.0922.5264.2767.7434.2243.2677.5154.4016.8735.4016.322 0 .5941-.1104.8166-.331.2224-.2207.3336-.492.3336-.814Zm8.3997 2.5178h-1.7796v-.559c-.17.2135-.3418.369-.5154.4667-.3038.17-.6492.255-1.0363.255-.6257 0-1.1827-.2152-1.671-.6457-.5824-.5136-.8735-1.1937-.8735-2.0402 0-.861.2984-1.5482.8952-2.0619.4738-.4088 1.0182-.6131 1.633-.6131.3581 0 .6945.076 1.0092.2279.1809.0868.3671.2297.5588.4286v-.4938h1.7796zm-1.7253-2.5178c0-.3183-.1121-.5887-.3364-.8112-.2242-.2224-.4955-.3337-.8138-.3337-.3545 0-.6457.1339-.8735.4016-.1845.217-.2767.4648-.2767.7433 0 .2786.0922.5264.2767.7434.2242.2677.5154.4016.8735.4016.3219 0 .594-.1104.8165-.331.2225-.2207.3337-.492.3337-.814zm8.6004.0054c0 .861-.2984 1.5483-.8952 2.062-.4738.4087-1.0182.6131-1.633.6131-.3582 0-.6945-.076-1.0092-.2279-.1809-.0868-.3672-.2297-.5589-.4286v3.0114h-1.7795v-7.553h1.7795v.5588c.1592-.2098.331-.3654.5155-.4666.3038-.17.6492-.255 1.0362-.255.6258 0 1.1828.2152 1.6711.6456.5823.5137.8735 1.1938.8735 2.0402zm-1.85-.0054c0-.2857-.0905-.5335-.2714-.7433-.2278-.2677-.5208-.4016-.8789-.4016-.322 0-.594.1104-.8165.331-.2225.2207-.3337.492-.3337.814 0 .3183.1121.5887.3364.8111.2242.2225.4955.3338.8138.3338.358 0 .6493-.1339.8735-.4016.1845-.217.2767-.4648.2767-.7434zM24 12.4467c-.2496-.1193-.5028-.179-.7596-.179-.586 0-.9657.2387-1.1393.7162-.0651.1737-.0977.407-.0977.7v2.1542h-1.7796v-5.0355h1.7796v.8248c.188-.293.3906-.5046.6077-.6348.293-.1737.6402-.2605 1.0417-.2605a4.51 4.51 0 0 1 .3472.0163z" }) + ] + } + ); +}); + +exports.default = SiDapr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.d.ts new file mode 100644 index 000000000..55da41086 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D2192"; +declare const SiDapr: IconType; +export { SiDapr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.mjs new file mode 100644 index 000000000..1248084a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDapr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D2192"; +const SiDapr = React.forwardRef(function SiDapr2({ title = "Dapr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.6175 7.658h10.5093a.2456.2456 0 0 1 .2461.2461v.656a.2456.2456 0 0 1-.2461.2462H7.6175a.2456.2456 0 0 1-.2461-.2462v-.656a.2456.2456 0 0 1 .2461-.2462zm2.0329-4.476h6.533a.132.132 0 0 1 .1323.1324v4.5199a.132.132 0 0 1-.1323.1323h-6.533a.132.132 0 0 1-.1324-.1323v-4.52a.132.132 0 0 1 .1324-.1323zm5.8312 16.9-1.0503.736-1.0502-.736.1544-4.2073h1.7917zm-9.6058-4.244H4.0963v-.5588c-.17.2134-.3418.369-.5155.4666-.3038.17-.6492.255-1.0362.255-.6258 0-1.1828-.2152-1.671-.6457C.2911 14.8415 0 14.1614 0 13.315c0-.861.2984-1.5482.8952-2.0619.4738-.4088 1.0182-.6131 1.6331-.6131.358 0 .6945.076 1.0091.2279.1809.0868.3672.2297.5589.4286V7.6881h1.7795Zm-1.7253-2.5177c0-.3183-.1121-.5887-.3364-.8112-.2242-.2224-.4955-.3337-.8138-.3337-.3545 0-.6456.1339-.8735.4016-.1845.217-.2767.4648-.2767.7433 0 .2786.0922.5264.2767.7434.2243.2677.5154.4016.8735.4016.322 0 .5941-.1104.8166-.331.2224-.2207.3336-.492.3336-.814Zm8.3997 2.5178h-1.7796v-.559c-.17.2135-.3418.369-.5154.4667-.3038.17-.6492.255-1.0363.255-.6257 0-1.1827-.2152-1.671-.6457-.5824-.5136-.8735-1.1937-.8735-2.0402 0-.861.2984-1.5482.8952-2.0619.4738-.4088 1.0182-.6131 1.633-.6131.3581 0 .6945.076 1.0092.2279.1809.0868.3671.2297.5588.4286v-.4938h1.7796zm-1.7253-2.5178c0-.3183-.1121-.5887-.3364-.8112-.2242-.2224-.4955-.3337-.8138-.3337-.3545 0-.6457.1339-.8735.4016-.1845.217-.2767.4648-.2767.7433 0 .2786.0922.5264.2767.7434.2242.2677.5154.4016.8735.4016.3219 0 .594-.1104.8165-.331.2225-.2207.3337-.492.3337-.814zm8.6004.0054c0 .861-.2984 1.5483-.8952 2.062-.4738.4087-1.0182.6131-1.633.6131-.3582 0-.6945-.076-1.0092-.2279-.1809-.0868-.3672-.2297-.5589-.4286v3.0114h-1.7795v-7.553h1.7795v.5588c.1592-.2098.331-.3654.5155-.4666.3038-.17.6492-.255 1.0362-.255.6258 0 1.1828.2152 1.6711.6456.5823.5137.8735 1.1938.8735 2.0402zm-1.85-.0054c0-.2857-.0905-.5335-.2714-.7433-.2278-.2677-.5208-.4016-.8789-.4016-.322 0-.594.1104-.8165.331-.2225.2207-.3337.492-.3337.814 0 .3183.1121.5887.3364.8111.2242.2225.4955.3338.8138.3338.358 0 .6493-.1339.8735-.4016.1845-.217.2767-.4648.2767-.7434zM24 12.4467c-.2496-.1193-.5028-.179-.7596-.179-.586 0-.9657.2387-1.1393.7162-.0651.1737-.0977.407-.0977.7v2.1542h-1.7796v-5.0355h1.7796v.8248c.188-.293.3906-.5046.6077-.6348.293-.1737.6402-.2605 1.0417-.2605a4.51 4.51 0 0 1 .3472.0163z" }) + ] + } + ); +}); + +export { SiDapr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.cjs new file mode 100644 index 000000000..598a3baa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#141E24"; +const SiDarkreader = React__namespace.forwardRef(function SiDarkreader2({ title = "Dark Reader", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.281 8.572c-.18-1.671-.926-3.132-2.105-4.173A6.315 6.315 0 0012 2.824c-1.538 0-3.026.56-4.176 1.575C6.646 5.44 5.9 6.901 5.72 8.572a4.968 4.968 0 01.987-.101 4.587 4.587 0 014.24 2.827l2.107-.002a4.57 4.57 0 014.241-2.825 4.88 4.88 0 01.987.101zM3.624 16.494l-2.212 6.094H0l2.662-7.324a4.621 4.621 0 01-.401-1.046 4.803 4.803 0 01-.143-1.16 4.7 4.7 0 01.574-2.283 4.43 4.43 0 011.576-1.642c.08-2.207.943-4.178 2.43-5.593A7.7 7.7 0 0112 1.412c1.973 0 3.876.768 5.305 2.13 1.486 1.417 2.348 3.388 2.427 5.596a4.42 4.42 0 011.576 1.64c.383.693.576 1.478.574 2.28 0 .39-.047.78-.142 1.159-.091.362-.225.713-.402 1.045L24 22.588h-1.412l-2.212-6.097c-.41.367-.879.649-1.383.843a4.653 4.653 0 01-1.699.313 4.635 4.635 0 01-3.132-1.227c-.827-.765-1.344-1.814-1.443-3.008H11.28c-.103 1.192-.62 2.241-1.447 3.005a4.637 4.637 0 01-3.128 1.23 4.644 4.644 0 01-1.698-.31 4.514 4.514 0 01-1.384-.843zm11.2-3.445a2.462 2.462 0 002.489 2.48 2.47 2.47 0 00-.019-4.94 2.464 2.464 0 00-2.47 2.46zm-10.589.01a2.463 2.463 0 002.47 2.47 2.469 2.469 0 002.472-2.47 2.469 2.469 0 00-2.471-2.47 2.463 2.463 0 00-2.47 2.47zm5.647 6c.033-.423.327-.703.706-.706a.681.681 0 01.706.706v2.823a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706V19.06zm2.824 0c.033-.423.326-.703.706-.706a.681.681 0 01.706.706v2.823a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706V19.06zm2.823 1.412c.033-.423.327-.703.706-.706a.681.681 0 01.706.706v1.411a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706v-1.411zm-8.47 0c.033-.423.326-.703.706-.706a.681.681 0 01.706.706v1.411a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706v-1.411z" }) + ] + } + ); +}); + +exports.default = SiDarkreader; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.d.ts new file mode 100644 index 000000000..32f92693c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#141E24"; +declare const SiDarkreader: IconType; +export { SiDarkreader as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.mjs new file mode 100644 index 000000000..f36e38aa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDarkreader.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#141E24"; +const SiDarkreader = React.forwardRef(function SiDarkreader2({ title = "Dark Reader", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.281 8.572c-.18-1.671-.926-3.132-2.105-4.173A6.315 6.315 0 0012 2.824c-1.538 0-3.026.56-4.176 1.575C6.646 5.44 5.9 6.901 5.72 8.572a4.968 4.968 0 01.987-.101 4.587 4.587 0 014.24 2.827l2.107-.002a4.57 4.57 0 014.241-2.825 4.88 4.88 0 01.987.101zM3.624 16.494l-2.212 6.094H0l2.662-7.324a4.621 4.621 0 01-.401-1.046 4.803 4.803 0 01-.143-1.16 4.7 4.7 0 01.574-2.283 4.43 4.43 0 011.576-1.642c.08-2.207.943-4.178 2.43-5.593A7.7 7.7 0 0112 1.412c1.973 0 3.876.768 5.305 2.13 1.486 1.417 2.348 3.388 2.427 5.596a4.42 4.42 0 011.576 1.64c.383.693.576 1.478.574 2.28 0 .39-.047.78-.142 1.159-.091.362-.225.713-.402 1.045L24 22.588h-1.412l-2.212-6.097c-.41.367-.879.649-1.383.843a4.653 4.653 0 01-1.699.313 4.635 4.635 0 01-3.132-1.227c-.827-.765-1.344-1.814-1.443-3.008H11.28c-.103 1.192-.62 2.241-1.447 3.005a4.637 4.637 0 01-3.128 1.23 4.644 4.644 0 01-1.698-.31 4.514 4.514 0 01-1.384-.843zm11.2-3.445a2.462 2.462 0 002.489 2.48 2.47 2.47 0 00-.019-4.94 2.464 2.464 0 00-2.47 2.46zm-10.589.01a2.463 2.463 0 002.47 2.47 2.469 2.469 0 002.472-2.47 2.469 2.469 0 00-2.471-2.47 2.463 2.463 0 00-2.47 2.47zm5.647 6c.033-.423.327-.703.706-.706a.681.681 0 01.706.706v2.823a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706V19.06zm2.824 0c.033-.423.326-.703.706-.706a.681.681 0 01.706.706v2.823a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706V19.06zm2.823 1.412c.033-.423.327-.703.706-.706a.681.681 0 01.706.706v1.411a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706v-1.411zm-8.47 0c.033-.423.326-.703.706-.706a.681.681 0 01.706.706v1.411a.681.681 0 01-.706.706c-.38-.003-.673-.283-.706-.706v-1.411z" }) + ] + } + ); +}); + +export { SiDarkreader as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDart.cjs new file mode 100644 index 000000000..28646541f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0175C2"; +const SiDart = React__namespace.forwardRef(function SiDart2({ title = "Dart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.105 4.105S9.158 1.58 11.684.316a3.079 3.079 0 0 1 1.481-.315c.766.047 1.677.788 1.677.788L24 9.948v9.789h-4.263V24H9.789l-9-9C.303 14.5 0 13.795 0 13.105c0-.319.18-.818.316-1.105l3.789-7.895zm.679.679v11.787c.002.543.021 1.024.498 1.508L10.204 23h8.533v-4.263L4.784 4.784zm12.055-.678c-.899-.896-1.809-1.78-2.74-2.643-.302-.267-.567-.468-1.07-.462-.37.014-.87.195-.87.195L6.341 4.105l10.498.001z" }) + ] + } + ); +}); + +exports.default = SiDart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDart.d.ts new file mode 100644 index 000000000..dfb9bb3e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0175C2"; +declare const SiDart: IconType; +export { SiDart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDart.mjs new file mode 100644 index 000000000..b7ca9b44b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0175C2"; +const SiDart = React.forwardRef(function SiDart2({ title = "Dart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.105 4.105S9.158 1.58 11.684.316a3.079 3.079 0 0 1 1.481-.315c.766.047 1.677.788 1.677.788L24 9.948v9.789h-4.263V24H9.789l-9-9C.303 14.5 0 13.795 0 13.105c0-.319.18-.818.316-1.105l3.789-7.895zm.679.679v11.787c.002.543.021 1.024.498 1.508L10.204 23h8.533v-4.263L4.784 4.784zm12.055-.678c-.899-.896-1.809-1.78-2.74-2.643-.302-.267-.567-.468-1.07-.462-.37.014-.87.195-.87.195L6.341 4.105l10.498.001z" }) + ] + } + ); +}); + +export { SiDart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.cjs new file mode 100644 index 000000000..f4cba9cc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB1B23"; +const SiDarty = React__namespace.forwardRef(function SiDarty2({ title = "Darty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm11.83 1.503A10.56 10.56 0 0 1 22.62 12.06c.06 5.76-4.68 10.5-10.56 10.5A10.56 10.56 0 0 1 1.5 12.06a10.56 10.56 0 0 1 9.77-10.53 10.56 10.56 0 0 1 .56-.027zM2.4 9.24s.18 1.2.18 2.82c0 1.56-.18 2.76-.18 2.76h2.04c.66 0 1.86-.48 1.86-2.76-.06-2.34-1.2-2.82-1.86-2.82zm4.68 0s-.12 1.44-.42 2.82c-.3 1.32-.72 2.76-.72 2.76h1.8s-.06-.24 0-.72.18-.72.18-.72h.84s.12.3.18.72c.06.48 0 .72 0 .72h3.42s-.12-.36-.18-.96 0-.96 0-.96.24.36.48.96c.18.6.18.96.18.96h1.98s-.3-.66-.72-1.38c-.42-.72-.66-1.08-.66-1.08s.96-.3.96-1.56v-.3c.12-.06.42-.12.9-.12 0 0 .06 1.02 0 1.98s-.18 2.52-.18 2.52h1.8s-.12-1.56-.18-2.52 0-1.98 0-1.98.48 0 .96.18V9.42c.18.36.72 1.5.96 2.64.3 1.44.12 2.76.12 2.76h1.8s-.18-1.38.12-2.76 1.08-2.82 1.08-2.82h-1.62l-.42 1.62-.42-1.62h-4.98v.96a1.35 1.35 0 0 0-1.2-.96h-2.52s.18 1.02.18 2.82c0 1.08-.06 1.92-.12 2.34-.18-.54-.42-1.44-.6-2.34-.3-1.32-.42-2.82-.42-2.82zm5.16.96s.6 0 .6.72c.06.72-.6.72-.6.72zm-8.187.115c.15-.009.747.058.747 1.685 0 1.92-.78 1.68-.78 1.68v-3.36s.012-.003.033-.005zm4.346.065.36 1.86h-.718z" }) + ] + } + ); +}); + +exports.default = SiDarty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.d.ts new file mode 100644 index 000000000..59242bf53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB1B23"; +declare const SiDarty: IconType; +export { SiDarty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.mjs new file mode 100644 index 000000000..791e01c71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDarty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB1B23"; +const SiDarty = React.forwardRef(function SiDarty2({ title = "Darty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm11.83 1.503A10.56 10.56 0 0 1 22.62 12.06c.06 5.76-4.68 10.5-10.56 10.5A10.56 10.56 0 0 1 1.5 12.06a10.56 10.56 0 0 1 9.77-10.53 10.56 10.56 0 0 1 .56-.027zM2.4 9.24s.18 1.2.18 2.82c0 1.56-.18 2.76-.18 2.76h2.04c.66 0 1.86-.48 1.86-2.76-.06-2.34-1.2-2.82-1.86-2.82zm4.68 0s-.12 1.44-.42 2.82c-.3 1.32-.72 2.76-.72 2.76h1.8s-.06-.24 0-.72.18-.72.18-.72h.84s.12.3.18.72c.06.48 0 .72 0 .72h3.42s-.12-.36-.18-.96 0-.96 0-.96.24.36.48.96c.18.6.18.96.18.96h1.98s-.3-.66-.72-1.38c-.42-.72-.66-1.08-.66-1.08s.96-.3.96-1.56v-.3c.12-.06.42-.12.9-.12 0 0 .06 1.02 0 1.98s-.18 2.52-.18 2.52h1.8s-.12-1.56-.18-2.52 0-1.98 0-1.98.48 0 .96.18V9.42c.18.36.72 1.5.96 2.64.3 1.44.12 2.76.12 2.76h1.8s-.18-1.38.12-2.76 1.08-2.82 1.08-2.82h-1.62l-.42 1.62-.42-1.62h-4.98v.96a1.35 1.35 0 0 0-1.2-.96h-2.52s.18 1.02.18 2.82c0 1.08-.06 1.92-.12 2.34-.18-.54-.42-1.44-.6-2.34-.3-1.32-.42-2.82-.42-2.82zm5.16.96s.6 0 .6.72c.06.72-.6.72-.6.72zm-8.187.115c.15-.009.747.058.747 1.685 0 1.92-.78 1.68-.78 1.68v-3.36s.012-.003.033-.005zm4.346.065.36 1.86h-.718z" }) + ] + } + ); +}); + +export { SiDarty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.cjs new file mode 100644 index 000000000..5306daf11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#001A4B"; +const SiDaserste = React__namespace.forwardRef(function SiDaserste2({ title = "Das Erste", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.646.005C5.158.2-.001 5.57 0 12.127.135 18.724 5.468 24 12 24s11.865-5.276 12-11.873C24.001 5.291 18.41-.195 11.645.005zm5.138 4.93V16.96L8.78 19.92v-9.08l-3.9 1.386V9.263l11.903-4.328z" }) + ] + } + ); +}); + +exports.default = SiDaserste; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.d.ts new file mode 100644 index 000000000..ebd6c3b2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#001A4B"; +declare const SiDaserste: IconType; +export { SiDaserste as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.mjs new file mode 100644 index 000000000..9de48c304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDaserste.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#001A4B"; +const SiDaserste = React.forwardRef(function SiDaserste2({ title = "Das Erste", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.646.005C5.158.2-.001 5.57 0 12.127.135 18.724 5.468 24 12 24s11.865-5.276 12-11.873C24.001 5.291 18.41-.195 11.645.005zm5.138 4.93V16.96L8.78 19.92v-9.08l-3.9 1.386V9.263l11.903-4.328z" }) + ] + } + ); +}); + +export { SiDaserste as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDash.cjs new file mode 100644 index 000000000..b8405cf19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008DE4"; +const SiDash = React__namespace.forwardRef(function SiDash2({ title = "Dash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.21 9.967C.922 9.967.595 11.457.38 12.36.093 13.538 0 14.02 0 14.02h8.947c2.29 0 2.617-1.492 2.832-2.394.285-1.178.379-1.66.379-1.66zM15.72 2.26H6.982L6.26 6.307l7.884.01c3.885 0 5.03 1.41 4.997 3.748-.019 1.196-.537 3.225-.762 3.884-.598 1.753-1.827 3.749-6.435 3.744l-7.666-.004-.725 4.052h8.718c3.075 0 4.38-.36 5.767-.995 3.071-1.426 4.9-4.455 5.633-8.41C24.76 6.448 23.403 2.26 15.72 2.26z" }) + ] + } + ); +}); + +exports.default = SiDash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDash.d.ts new file mode 100644 index 000000000..d2fed47c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008DE4"; +declare const SiDash: IconType; +export { SiDash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDash.mjs new file mode 100644 index 000000000..c1d6a4fdd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008DE4"; +const SiDash = React.forwardRef(function SiDash2({ title = "Dash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.21 9.967C.922 9.967.595 11.457.38 12.36.093 13.538 0 14.02 0 14.02h8.947c2.29 0 2.617-1.492 2.832-2.394.285-1.178.379-1.66.379-1.66zM15.72 2.26H6.982L6.26 6.307l7.884.01c3.885 0 5.03 1.41 4.997 3.748-.019 1.196-.537 3.225-.762 3.884-.598 1.753-1.827 3.749-6.435 3.744l-7.666-.004-.725 4.052h8.718c3.075 0 4.38-.36 5.767-.995 3.071-1.426 4.9-4.455 5.633-8.41C24.76 6.448 23.403 2.26 15.72 2.26z" }) + ] + } + ); +}); + +export { SiDash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.cjs new file mode 100644 index 000000000..5cc2d6829 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA3D3B"; +const SiDash0 = React__namespace.forwardRef(function SiDash02({ title = "Dash0", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.421c4.883 0 8.842 3.393 8.842 7.579S4.883 19.579 0 19.579zm16.421 0C20.608 4.421 24 7.814 24 12s-3.392 7.579-7.579 7.579S8.842 16.186 8.842 12s3.393-7.579 7.579-7.579" }) + ] + } + ); +}); + +exports.default = SiDash0; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.d.ts new file mode 100644 index 000000000..60b4d9dc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA3D3B"; +declare const SiDash0: IconType; +export { SiDash0 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.mjs new file mode 100644 index 000000000..a58ef382b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDash0.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA3D3B"; +const SiDash0 = React.forwardRef(function SiDash02({ title = "Dash0", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.421c4.883 0 8.842 3.393 8.842 7.579S4.883 19.579 0 19.579zm16.421 0C20.608 4.421 24 7.814 24 12s-3.392 7.579-7.579 7.579S8.842 16.186 8.842 12s3.393-7.579 7.579-7.579" }) + ] + } + ); +}); + +export { SiDash0 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.cjs new file mode 100644 index 000000000..42bafe975 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E353D"; +const SiDashlane = React__namespace.forwardRef(function SiDashlane2({ title = "Dashlane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.89 7.7189c0-.1488-.1488-.2976-.3575-.3571l-2.502-.9221c-.4166-.1786-.8932.0297-.8932.3277V17.25c0 .1487.1488.3273.2977.3868l2.5614.9222c.3872.1487.8936-.0596.8936-.3873zm-4.676-3.663c0-.1492-.1489-.298-.3576-.3575l-2.5015-.9221c-.417-.1786-.8936.0297-.8936.3278v6.3723c0 .1488.1487.3273.2976.3873l2.5614.9221c.3873.1492.8937-.0595.8937-.3869zm0 11.4663c0-.1488-.1489-.2975-.3576-.3571l-2.5015-.9221c-.417-.1786-.8936.0297-.8936.3277v6.3724c0 .1488.1487.3273.2976.3869l2.5614.922c.3873.1493.8937-.0594.8937-.3872zm-4.6761 1.281c0-.1489-.1488-.298-.3575-.3576l-2.5015-.9221c-.4192-.1786-.8937.0297-.8937.3277v6.7903c0 .1487.1488.3277.2977.3872l2.5614.9222c.3872.1493.8936-.0595.8936-.387zm0-15.4579c0-.1488-.1488-.2976-.3575-.3571L8.6789.066c-.4192-.1786-.8937.0297-.8937.3277v6.7903c0 .1492.1488.3277.2977.3873l2.5614.922c.3872.1488.8936-.0594.8936-.3872zm-4.6752.2683c0-.1488-.1488-.298-.3575-.3576L4.0037.334C3.5867.1553 3.11.3636 3.11.6617v21.7409c0 .1487.1488.3273.298.3868l2.561.9222c.3874.1488.8937-.0595.8937-.3874z" }) + ] + } + ); +}); + +exports.default = SiDashlane; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.d.ts new file mode 100644 index 000000000..574de81f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E353D"; +declare const SiDashlane: IconType; +export { SiDashlane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.mjs new file mode 100644 index 000000000..d738fa834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDashlane.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E353D"; +const SiDashlane = React.forwardRef(function SiDashlane2({ title = "Dashlane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.89 7.7189c0-.1488-.1488-.2976-.3575-.3571l-2.502-.9221c-.4166-.1786-.8932.0297-.8932.3277V17.25c0 .1487.1488.3273.2977.3868l2.5614.9222c.3872.1487.8936-.0596.8936-.3873zm-4.676-3.663c0-.1492-.1489-.298-.3576-.3575l-2.5015-.9221c-.417-.1786-.8936.0297-.8936.3278v6.3723c0 .1488.1487.3273.2976.3873l2.5614.9221c.3873.1492.8937-.0595.8937-.3869zm0 11.4663c0-.1488-.1489-.2975-.3576-.3571l-2.5015-.9221c-.417-.1786-.8936.0297-.8936.3277v6.3724c0 .1488.1487.3273.2976.3869l2.5614.922c.3873.1493.8937-.0594.8937-.3872zm-4.6761 1.281c0-.1489-.1488-.298-.3575-.3576l-2.5015-.9221c-.4192-.1786-.8937.0297-.8937.3277v6.7903c0 .1487.1488.3277.2977.3872l2.5614.9222c.3872.1493.8936-.0595.8936-.387zm0-15.4579c0-.1488-.1488-.2976-.3575-.3571L8.6789.066c-.4192-.1786-.8937.0297-.8937.3277v6.7903c0 .1492.1488.3277.2977.3873l2.5614.922c.3872.1488.8936-.0594.8936-.3872zm-4.6752.2683c0-.1488-.1488-.298-.3575-.3576L4.0037.334C3.5867.1553 3.11.3636 3.11.6617v21.7409c0 .1487.1488.3273.298.3868l2.561.9222c.3874.1488.8937-.0595.8937-.3874z" }) + ] + } + ); +}); + +export { SiDashlane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDask.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDask.cjs new file mode 100644 index 000000000..1d5cf1629 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDask.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC6E6B"; +const SiDask = React__namespace.forwardRef(function SiDask2({ title = "Dask", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.246 9.754 5.848-3.374a.202.202 0 0 0 .1-.175l.002-2.553c0-.324-.133-.645-.392-.841a1 1 0 0 0-1.118-.074l-2.425 1.4-6.436 3.712a1.007 1.007 0 0 0-.504.872l-.003 8.721v2.825c0 .324.132.645.39.842.335.253.766.278 1.12.074l2.363-1.364a.202.202 0 0 0 .101-.175l.003-8.244a1.902 1.902 0 0 1 .951-1.646Zm10.316-4.336a1.005 1.005 0 0 0-.504-.137.997.997 0 0 0-.503.137l-8.86 5.112a1.01 1.01 0 0 0-.505.87l-.003 11.591c0 .364.188.69.503.872a.995.995 0 0 0 1.007 0l8.86-5.112a1.01 1.01 0 0 0 .504-.872l.004-11.59a.997.997 0 0 0-.503-.871ZM6.378 7.074l6.334-3.655a.202.202 0 0 0 .1-.175l.001-2.193c0-.324-.133-.646-.392-.84a1 1 0 0 0-1.118-.075L2.443 5.25a1.007 1.007 0 0 0-.504.872l-.003 11.546c0 .324.133.645.39.842a1 1 0 0 0 1.12.074l1.877-1.082a.202.202 0 0 0 .1-.175l.003-8.605c0-.68.363-1.307.952-1.647z" }) + ] + } + ); +}); + +exports.default = SiDask; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDask.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDask.d.ts new file mode 100644 index 000000000..73b4173e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDask.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC6E6B"; +declare const SiDask: IconType; +export { SiDask as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDask.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDask.mjs new file mode 100644 index 000000000..d9059d28b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDask.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC6E6B"; +const SiDask = React.forwardRef(function SiDask2({ title = "Dask", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.246 9.754 5.848-3.374a.202.202 0 0 0 .1-.175l.002-2.553c0-.324-.133-.645-.392-.841a1 1 0 0 0-1.118-.074l-2.425 1.4-6.436 3.712a1.007 1.007 0 0 0-.504.872l-.003 8.721v2.825c0 .324.132.645.39.842.335.253.766.278 1.12.074l2.363-1.364a.202.202 0 0 0 .101-.175l.003-8.244a1.902 1.902 0 0 1 .951-1.646Zm10.316-4.336a1.005 1.005 0 0 0-.504-.137.997.997 0 0 0-.503.137l-8.86 5.112a1.01 1.01 0 0 0-.505.87l-.003 11.591c0 .364.188.69.503.872a.995.995 0 0 0 1.007 0l8.86-5.112a1.01 1.01 0 0 0 .504-.872l.004-11.59a.997.997 0 0 0-.503-.871ZM6.378 7.074l6.334-3.655a.202.202 0 0 0 .1-.175l.001-2.193c0-.324-.133-.646-.392-.84a1 1 0 0 0-1.118-.075L2.443 5.25a1.007 1.007 0 0 0-.504.872l-.003 11.546c0 .324.133.645.39.842a1 1 0 0 0 1.12.074l1.877-1.082a.202.202 0 0 0 .1-.175l.003-8.605c0-.68.363-1.307.952-1.647z" }) + ] + } + ); +}); + +export { SiDask as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.cjs new file mode 100644 index 000000000..5fbc980c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005386"; +const SiDassaultsystemes = React__namespace.forwardRef(function SiDassaultsystemes2({ title = "Dassault Systèmes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.1854 8.0254c1.064.192 1.9321.34 2.1311.79.223.51-.936.541-1.52.552-2.7992.054-4.4862.11-4.5712 1.061-.11 1.2241 1.196 2.4572 2.486 4.1852 1.1781 1.577 2.5172 3.1351 2.1322 4.5862-.482 1.809-2.6991 2.192-4.8102 2.192-2.0211.001-3.9382-.323-4.7432-.482-1.002-.199-.852-.694-.585-.853.298-.178 2.002-.182 3.187-.252.9751-.058 3.8052-.056 4.2463-.781.54-.889-.783-2.4081-2.0001-4.0002-1.519-1.984-3.1862-4.0341-2.3031-5.5322 1.14-1.936 4.4842-1.803 6.3502-1.466m-13.6905 2.95c1.772-.104 3.9261.206 5.1342 1.1301a2.172 2.172 0 01.78 2.2771c-.698 2.7521-3.3041 6.0833-9.0933 8.6434-1.8411.813-3.2892 1.125-3.5932.906-.326-.234.624-2.052.909-2.6541.9251-1.952 2.0791-3.8532 3.2052-5.5952.414-.64 1.055-1.7521 1.634-1.6621.519.08-.089 1.26-.488 2.011-.672 1.2601-2.523 4.7603-1.912 4.9693 1.35.462 7.6803-4.3542 6.7462-7.0363-.432-1.245-3.1801-1.363-4.9122-1.363-.787 0-2.508.186-2.603-.417-.102-.5561 2.613-1.1161 4.192-1.2101M11.8672.013c2.068-.098 4.5141.342 4.9702 1.8021.747 2.3901-3.0402 5.8772-6.3383 7.5873-.809.42-1.3.536-1.504.507-.195-.027-.225-.221-.162-.355.118-.252.65-.764 1.361-1.322 3.7151-2.9001 4.9232-5.0282 4.2212-5.8903-.45-.552-2.3321-.937-4.2872-.937-.53 0-1.925.123-2.068-.367C7.942.634 9.814.108 11.866.012" }) + ] + } + ); +}); + +exports.default = SiDassaultsystemes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.d.ts new file mode 100644 index 000000000..2c2ced4a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005386"; +declare const SiDassaultsystemes: IconType; +export { SiDassaultsystemes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.mjs new file mode 100644 index 000000000..cfc7d2410 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDassaultsystemes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005386"; +const SiDassaultsystemes = React.forwardRef(function SiDassaultsystemes2({ title = "Dassault Systèmes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.1854 8.0254c1.064.192 1.9321.34 2.1311.79.223.51-.936.541-1.52.552-2.7992.054-4.4862.11-4.5712 1.061-.11 1.2241 1.196 2.4572 2.486 4.1852 1.1781 1.577 2.5172 3.1351 2.1322 4.5862-.482 1.809-2.6991 2.192-4.8102 2.192-2.0211.001-3.9382-.323-4.7432-.482-1.002-.199-.852-.694-.585-.853.298-.178 2.002-.182 3.187-.252.9751-.058 3.8052-.056 4.2463-.781.54-.889-.783-2.4081-2.0001-4.0002-1.519-1.984-3.1862-4.0341-2.3031-5.5322 1.14-1.936 4.4842-1.803 6.3502-1.466m-13.6905 2.95c1.772-.104 3.9261.206 5.1342 1.1301a2.172 2.172 0 01.78 2.2771c-.698 2.7521-3.3041 6.0833-9.0933 8.6434-1.8411.813-3.2892 1.125-3.5932.906-.326-.234.624-2.052.909-2.6541.9251-1.952 2.0791-3.8532 3.2052-5.5952.414-.64 1.055-1.7521 1.634-1.6621.519.08-.089 1.26-.488 2.011-.672 1.2601-2.523 4.7603-1.912 4.9693 1.35.462 7.6803-4.3542 6.7462-7.0363-.432-1.245-3.1801-1.363-4.9122-1.363-.787 0-2.508.186-2.603-.417-.102-.5561 2.613-1.1161 4.192-1.2101M11.8672.013c2.068-.098 4.5141.342 4.9702 1.8021.747 2.3901-3.0402 5.8772-6.3383 7.5873-.809.42-1.3.536-1.504.507-.195-.027-.225-.221-.162-.355.118-.252.65-.764 1.361-1.322 3.7151-2.9001 4.9232-5.0282 4.2212-5.8903-.45-.552-2.3321-.937-4.2872-.937-.53 0-1.925.123-2.068-.367C7.942.634 9.814.108 11.866.012" }) + ] + } + ); +}); + +export { SiDassaultsystemes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.cjs new file mode 100644 index 000000000..608cbf8a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3621"; +const SiDatabricks = React__namespace.forwardRef(function SiDatabricks2({ title = "Databricks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.95 14.184L12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 19.118l-9.867-5.653v-2.21L12 16.805l11.05-6.218V6.32l-.515-.308L12 11.974 2.647 6.681 12 1.388l7.76 4.368.668-.411v-.566L12 0 .95 6.27v.72L12 13.207l9.919-5.55v2.26L12 15.52 1.516 9.56l-.565.308Z" }) + ] + } + ); +}); + +exports.default = SiDatabricks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.d.ts new file mode 100644 index 000000000..a5c945374 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3621"; +declare const SiDatabricks: IconType; +export { SiDatabricks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.mjs new file mode 100644 index 000000000..07b9844d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatabricks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3621"; +const SiDatabricks = React.forwardRef(function SiDatabricks2({ title = "Databricks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.95 14.184L12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 19.118l-9.867-5.653v-2.21L12 16.805l11.05-6.218V6.32l-.515-.308L12 11.974 2.647 6.681 12 1.388l7.76 4.368.668-.411v-.566L12 0 .95 6.27v.72L12 13.207l9.919-5.55v2.26L12 15.52 1.516 9.56l-.565.308Z" }) + ] + } + ); +}); + +export { SiDatabricks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.cjs new file mode 100644 index 000000000..2121293c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03EF62"; +const SiDatacamp = React__namespace.forwardRef(function SiDatacamp2({ title = "DataCamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.946 18.151v-5.239L21.209 8.2 19.2 7.048l-6.254 3.567V5.36c0-.356-.192-.689-.5-.866L4.922.177a1.434 1.434 0 0 0-1.455.044 1.438 1.438 0 0 0-.676 1.224v14.777A1.44 1.44 0 0 0 4.92 17.49l6.032-3.44v4.683a1 1 0 0 0 .504.867l7.73 4.4 2.01-1.152-8.25-4.697zM10.953 5.938v5.814L4.785 15.27V2.4l6.168 3.539v-.001z" }) + ] + } + ); +}); + +exports.default = SiDatacamp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.d.ts new file mode 100644 index 000000000..c6f325d5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03EF62"; +declare const SiDatacamp: IconType; +export { SiDatacamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.mjs new file mode 100644 index 000000000..baf08e070 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatacamp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03EF62"; +const SiDatacamp = React.forwardRef(function SiDatacamp2({ title = "DataCamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.946 18.151v-5.239L21.209 8.2 19.2 7.048l-6.254 3.567V5.36c0-.356-.192-.689-.5-.866L4.922.177a1.434 1.434 0 0 0-1.455.044 1.438 1.438 0 0 0-.676 1.224v14.777A1.44 1.44 0 0 0 4.92 17.49l6.032-3.44v4.683a1 1 0 0 0 .504.867l7.73 4.4 2.01-1.152-8.25-4.697zM10.953 5.938v5.814L4.785 15.27V2.4l6.168 3.539v-.001z" }) + ] + } + ); +}); + +export { SiDatacamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.cjs new file mode 100644 index 000000000..c7d1044b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#632CA6"; +const SiDatadog = React__namespace.forwardRef(function SiDatadog2({ title = "Datadog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.57 17.04l-1.997-1.316-1.665 2.782-1.937-.567-1.706 2.604.087.82 9.274-1.71-.538-5.794zm-8.649-2.498l1.488-.204c.241.108.409.15.697.223.45.117.97.23 1.741-.16.18-.088.553-.43.704-.625l6.096-1.106.622 7.527-10.444 1.882zm11.325-2.712l-.602.115L20.488 0 .789 2.285l2.427 19.693 2.306-.334c-.184-.263-.471-.581-.96-.989-.68-.564-.44-1.522-.039-2.127.53-1.022 3.26-2.322 3.106-3.956-.056-.594-.15-1.368-.702-1.898-.02.22.017.432.017.432s-.227-.289-.34-.683c-.112-.15-.2-.199-.319-.4-.085.233-.073.503-.073.503s-.186-.437-.216-.807c-.11.166-.137.48-.137.48s-.241-.69-.186-1.062c-.11-.323-.436-.965-.343-2.424.6.421 1.924.321 2.44-.439.171-.251.288-.939-.086-2.293-.24-.868-.835-2.16-1.066-2.651l-.028.02c.122.395.374 1.223.47 1.625.293 1.218.372 1.642.234 2.204-.116.488-.397.808-1.107 1.165-.71.358-1.653-.514-1.713-.562-.69-.55-1.224-1.447-1.284-1.883-.062-.477.275-.763.445-1.153-.243.07-.514.192-.514.192s.323-.334.722-.624c.165-.109.262-.178.436-.323a9.762 9.762 0 0 0-.456.003s.42-.227.855-.392c-.318-.014-.623-.003-.623-.003s.937-.419 1.678-.727c.509-.208 1.006-.147 1.286.257.367.53.752.817 1.569.996.501-.223.653-.337 1.284-.509.554-.61.99-.688.99-.688s-.216.198-.274.51c.314-.249.66-.455.66-.455s-.134.164-.259.426l.03.043c.366-.22.797-.394.797-.394s-.123.156-.268.358c.277-.002.838.012 1.056.037 1.285.028 1.552-1.374 2.045-1.55.618-.22.894-.353 1.947.68.903.888 1.609 2.477 1.259 2.833-.294.295-.874-.115-1.516-.916a3.466 3.466 0 0 1-.716-1.562 1.533 1.533 0 0 0-.497-.85s.23.51.23.96c0 .246.03 1.165.424 1.68-.039.076-.057.374-.1.43-.458-.554-1.443-.95-1.604-1.067.544.445 1.793 1.468 2.273 2.449.453.927.186 1.777.416 1.997.065.063.976 1.197 1.15 1.767.306.994.019 2.038-.381 2.685l-1.117.174c-.163-.045-.273-.068-.42-.153.08-.143.241-.5.243-.572l-.063-.111c-.348.492-.93.97-1.414 1.245-.633.359-1.363.304-1.838.156-1.348-.415-2.623-1.327-2.93-1.566 0 0-.01.191.048.234.34.383 1.119 1.077 1.872 1.56l-1.605.177.759 5.908c-.337.048-.39.071-.757.124-.325-1.147-.946-1.895-1.624-2.332-.599-.384-1.424-.47-2.214-.314l-.05.059a2.851 2.851 0 0 1 1.863.444c.654.413 1.181 1.481 1.375 2.124.248.822.42 1.7-.248 2.632-.476.662-1.864 1.028-2.986.237.3.481.705.876 1.25.95.809.11 1.577-.03 2.106-.574.452-.464.69-1.434.628-2.456l.714-.104.258 1.834 11.827-1.424zM15.05 6.848c-.034.075-.085.125-.007.37l.004.014.013.032.032.073c.14.287.295.558.552.696.067-.011.136-.019.207-.023.242-.01.395.028.492.08.009-.048.01-.119.005-.222-.018-.364.072-.982-.626-1.308-.264-.122-.634-.084-.757.068a.302.302 0 0 1 .058.013c.186.066.06.13.027.207m1.958 3.392c-.092-.05-.52-.03-.821.005-.574.068-1.193.267-1.328.372-.247.191-.135.523.047.66.511.382.96.638 1.432.575.29-.038.546-.497.728-.914.124-.288.124-.598-.058-.698m-5.077-2.942c.162-.154-.805-.355-1.556.156-.554.378-.571 1.187-.041 1.646.053.046.096.078.137.104a4.77 4.77 0 0 1 1.396-.412c.113-.125.243-.345.21-.745-.044-.542-.455-.456-.146-.749" }) + ] + } + ); +}); + +exports.default = SiDatadog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.d.ts new file mode 100644 index 000000000..82d1fb08b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#632CA6"; +declare const SiDatadog: IconType; +export { SiDatadog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.mjs new file mode 100644 index 000000000..2d733fd93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#632CA6"; +const SiDatadog = React.forwardRef(function SiDatadog2({ title = "Datadog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.57 17.04l-1.997-1.316-1.665 2.782-1.937-.567-1.706 2.604.087.82 9.274-1.71-.538-5.794zm-8.649-2.498l1.488-.204c.241.108.409.15.697.223.45.117.97.23 1.741-.16.18-.088.553-.43.704-.625l6.096-1.106.622 7.527-10.444 1.882zm11.325-2.712l-.602.115L20.488 0 .789 2.285l2.427 19.693 2.306-.334c-.184-.263-.471-.581-.96-.989-.68-.564-.44-1.522-.039-2.127.53-1.022 3.26-2.322 3.106-3.956-.056-.594-.15-1.368-.702-1.898-.02.22.017.432.017.432s-.227-.289-.34-.683c-.112-.15-.2-.199-.319-.4-.085.233-.073.503-.073.503s-.186-.437-.216-.807c-.11.166-.137.48-.137.48s-.241-.69-.186-1.062c-.11-.323-.436-.965-.343-2.424.6.421 1.924.321 2.44-.439.171-.251.288-.939-.086-2.293-.24-.868-.835-2.16-1.066-2.651l-.028.02c.122.395.374 1.223.47 1.625.293 1.218.372 1.642.234 2.204-.116.488-.397.808-1.107 1.165-.71.358-1.653-.514-1.713-.562-.69-.55-1.224-1.447-1.284-1.883-.062-.477.275-.763.445-1.153-.243.07-.514.192-.514.192s.323-.334.722-.624c.165-.109.262-.178.436-.323a9.762 9.762 0 0 0-.456.003s.42-.227.855-.392c-.318-.014-.623-.003-.623-.003s.937-.419 1.678-.727c.509-.208 1.006-.147 1.286.257.367.53.752.817 1.569.996.501-.223.653-.337 1.284-.509.554-.61.99-.688.99-.688s-.216.198-.274.51c.314-.249.66-.455.66-.455s-.134.164-.259.426l.03.043c.366-.22.797-.394.797-.394s-.123.156-.268.358c.277-.002.838.012 1.056.037 1.285.028 1.552-1.374 2.045-1.55.618-.22.894-.353 1.947.68.903.888 1.609 2.477 1.259 2.833-.294.295-.874-.115-1.516-.916a3.466 3.466 0 0 1-.716-1.562 1.533 1.533 0 0 0-.497-.85s.23.51.23.96c0 .246.03 1.165.424 1.68-.039.076-.057.374-.1.43-.458-.554-1.443-.95-1.604-1.067.544.445 1.793 1.468 2.273 2.449.453.927.186 1.777.416 1.997.065.063.976 1.197 1.15 1.767.306.994.019 2.038-.381 2.685l-1.117.174c-.163-.045-.273-.068-.42-.153.08-.143.241-.5.243-.572l-.063-.111c-.348.492-.93.97-1.414 1.245-.633.359-1.363.304-1.838.156-1.348-.415-2.623-1.327-2.93-1.566 0 0-.01.191.048.234.34.383 1.119 1.077 1.872 1.56l-1.605.177.759 5.908c-.337.048-.39.071-.757.124-.325-1.147-.946-1.895-1.624-2.332-.599-.384-1.424-.47-2.214-.314l-.05.059a2.851 2.851 0 0 1 1.863.444c.654.413 1.181 1.481 1.375 2.124.248.822.42 1.7-.248 2.632-.476.662-1.864 1.028-2.986.237.3.481.705.876 1.25.95.809.11 1.577-.03 2.106-.574.452-.464.69-1.434.628-2.456l.714-.104.258 1.834 11.827-1.424zM15.05 6.848c-.034.075-.085.125-.007.37l.004.014.013.032.032.073c.14.287.295.558.552.696.067-.011.136-.019.207-.023.242-.01.395.028.492.08.009-.048.01-.119.005-.222-.018-.364.072-.982-.626-1.308-.264-.122-.634-.084-.757.068a.302.302 0 0 1 .058.013c.186.066.06.13.027.207m1.958 3.392c-.092-.05-.52-.03-.821.005-.574.068-1.193.267-1.328.372-.247.191-.135.523.047.66.511.382.96.638 1.432.575.29-.038.546-.497.728-.914.124-.288.124-.598-.058-.698m-5.077-2.942c.162-.154-.805-.355-1.556.156-.554.378-.571 1.187-.041 1.646.053.046.096.078.137.104a4.77 4.77 0 0 1 1.396-.412c.113-.125.243-.345.21-.745-.044-.542-.455-.456-.146-.749" }) + ] + } + ); +}); + +export { SiDatadog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.cjs new file mode 100644 index 000000000..e3244e4f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDatadotai = React__namespace.forwardRef(function SiDatadotai2({ title = "data.ai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.12 1.744.015 10.009 0 10.023l11.986 12.219.014.015 11.986-12.22.014-.014-8.115-8.273-.006-.006Zm1.207 1.02h5.326L11.99 5.41zm3.422 3.43 3.027-3.053L22.081 9.5h-6.054ZM8.211 3.14l3.04 3.072L7.999 9.5h-6.08Zm.62 6.977L12 6.876l3.169 3.242L12 19.842zm7.328.402h5.862l-8.793 9.005Zm-14.24 0h5.915l2.958 9.006Z" }) + ] + } + ); +}); + +exports.default = SiDatadotai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.d.ts new file mode 100644 index 000000000..69019750c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDatadotai: IconType; +export { SiDatadotai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.mjs new file mode 100644 index 000000000..571fd7b9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatadotai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDatadotai = React.forwardRef(function SiDatadotai2({ title = "data.ai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.12 1.744.015 10.009 0 10.023l11.986 12.219.014.015 11.986-12.22.014-.014-8.115-8.273-.006-.006Zm1.207 1.02h5.326L11.99 5.41zm3.422 3.43 3.027-3.053L22.081 9.5h-6.054ZM8.211 3.14l3.04 3.072L7.999 9.5h-6.08Zm.62 6.977L12 6.876l3.169 3.242L12 19.842zm7.328.402h5.862l-8.793 9.005Zm-14.24 0h5.915l2.958 9.006Z" }) + ] + } + ); +}); + +export { SiDatadotai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.cjs new file mode 100644 index 000000000..458729438 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDatagrip = React__namespace.forwardRef(function SiDatagrip2({ title = "DataGrip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm17.1797 2.9477a5.452 5.452 0 0 1 3.9047 1.364L19.7078 5.972a3.672 3.672 0 0 0-2.596-1.0086c-1.6 0-2.8555 1.408-2.8555 3.096v.0282c0 1.816 1.2517 3.1523 3.0117 3.1523a3.492 3.492 0 0 0 2.064-.5921V9.2234h-2.2V7.336h4.3157v4.3157a6.436 6.436 0 0 1-4.2438 1.5757c-3.096 0-5.2242-2.1797-5.2242-5.1117v-.0281a5.1 5.1 0 0 1 5.2-5.1398zm-14.7438.1718h3.8758c3.12 0 5.2805 2.1439 5.2805 4.9399v.028c0 2.8-2.1605 4.968-5.2805 4.968H2.436Zm4.075 1.9688a2.852 2.852 0 0 0-.1992.003H4.6203v6h1.6914A2.832 2.832 0 0 0 9.304 8.1235v-.036a2.852 2.852 0 0 0-2.793-2.9991Zm-4.303 14.407h9v1.5h-9z" }) + ] + } + ); +}); + +exports.default = SiDatagrip; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.d.ts new file mode 100644 index 000000000..ff9e665e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDatagrip: IconType; +export { SiDatagrip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.mjs new file mode 100644 index 000000000..3e267d9ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatagrip.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDatagrip = React.forwardRef(function SiDatagrip2({ title = "DataGrip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm17.1797 2.9477a5.452 5.452 0 0 1 3.9047 1.364L19.7078 5.972a3.672 3.672 0 0 0-2.596-1.0086c-1.6 0-2.8555 1.408-2.8555 3.096v.0282c0 1.816 1.2517 3.1523 3.0117 3.1523a3.492 3.492 0 0 0 2.064-.5921V9.2234h-2.2V7.336h4.3157v4.3157a6.436 6.436 0 0 1-4.2438 1.5757c-3.096 0-5.2242-2.1797-5.2242-5.1117v-.0281a5.1 5.1 0 0 1 5.2-5.1398zm-14.7438.1718h3.8758c3.12 0 5.2805 2.1439 5.2805 4.9399v.028c0 2.8-2.1605 4.968-5.2805 4.968H2.436Zm4.075 1.9688a2.852 2.852 0 0 0-.1992.003H4.6203v6h1.6914A2.832 2.832 0 0 0 9.304 8.1235v-.036a2.852 2.852 0 0 0-2.793-2.9991Zm-4.303 14.407h9v1.5h-9z" }) + ] + } + ); +}); + +export { SiDatagrip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.cjs new file mode 100644 index 000000000..3b0110032 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2AB1AC"; +const SiDataiku = React__namespace.forwardRef(function SiDataiku2({ title = "Dataiku", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm6.527 15.34H12.5v-.934h6.026zm-.739-8.73s-.412.543-.193 1.995c.41 2.724-1.02 5.15-3.56 5.15h-1.87s-1.835-.092-2.933 1.01c-3.263 3.269-4.04 4.116-4.274 4.233-.15.08-.188-.093-.188-.093l9.644-11.891c-.203-2.145 2.34-2.715 3.278-1.13l.884-.248zm-1.599-.614a.476.476 0 1 0 .47.474.476.476 0 0 0-.47-.474z" }) + ] + } + ); +}); + +exports.default = SiDataiku; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.d.ts new file mode 100644 index 000000000..168c671bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2AB1AC"; +declare const SiDataiku: IconType; +export { SiDataiku as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.mjs new file mode 100644 index 000000000..3fd09c934 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDataiku.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2AB1AC"; +const SiDataiku = React.forwardRef(function SiDataiku2({ title = "Dataiku", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm6.527 15.34H12.5v-.934h6.026zm-.739-8.73s-.412.543-.193 1.995c.41 2.724-1.02 5.15-3.56 5.15h-1.87s-1.835-.092-2.933 1.01c-3.263 3.269-4.04 4.116-4.274 4.233-.15.08-.188-.093-.188-.093l9.644-11.891c-.203-2.145 2.34-2.715 3.278-1.13l.884-.248zm-1.599-.614a.476.476 0 1 0 .47.474.476.476 0 0 0-.47-.474z" }) + ] + } + ); +}); + +export { SiDataiku as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.cjs new file mode 100644 index 000000000..918840a85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDatastax = React__namespace.forwardRef(function SiDatastax2({ title = "DataStax", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.863 8.818v6.364l-2.181 1.683H0v-9.73h8.682l2.181 1.683Zm-9.18 6.366h7.498V8.818H1.683v6.366Zm13.243-6.296v2.26h6.919L24 12.793v2.318l-2.155 1.646h-8.153v-1.646h8.645v-2.318h-6.919l-2.155-1.645v-2.26l2.155-1.645h7.939v1.645h-8.431Z" }) + ] + } + ); +}); + +exports.default = SiDatastax; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.d.ts new file mode 100644 index 000000000..4da588b3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDatastax: IconType; +export { SiDatastax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.mjs new file mode 100644 index 000000000..100227fc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatastax.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDatastax = React.forwardRef(function SiDatastax2({ title = "DataStax", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.863 8.818v6.364l-2.181 1.683H0v-9.73h8.682l2.181 1.683Zm-9.18 6.366h7.498V8.818H1.683v6.366Zm13.243-6.296v2.26h6.919L24 12.793v2.318l-2.155 1.646h-8.153v-1.646h8.645v-2.318h-6.919l-2.155-1.645v-2.26l2.155-1.645h7.939v1.645h-8.431Z" }) + ] + } + ); +}); + +export { SiDatastax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.cjs new file mode 100644 index 000000000..82c35d735 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#770C56"; +const SiDatefns = React__namespace.forwardRef(function SiDatefns2({ title = "date-fns", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.065 6.534C.355 8.246 0 10.068 0 11.999c0 1.932.355 3.754 1.065 5.466a13.768 13.768 0 0 0 3.068 4.549h2.685c-2.784-2.756-4.176-6.094-4.176-10.015 0-3.92 1.392-7.258 4.176-10.014H4.133a13.768 13.768 0 0 0-3.068 4.549Zm21.869 10.931c.71-1.712 1.066-3.534 1.066-5.466 0-1.931-.356-3.753-1.066-5.465a13.768 13.768 0 0 0-3.068-4.549h-2.685c2.784 2.756 4.176 6.094 4.176 10.014 0 3.921-1.392 7.259-4.176 10.015h2.685a13.768 13.768 0 0 0 3.068-4.549ZM11.63 3.299H9.854v10.21h1.776v-.033l7.218-7.218-1.151-1.151-6.067 6.067V3.299Z" }) + ] + } + ); +}); + +exports.default = SiDatefns; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.d.ts new file mode 100644 index 000000000..ff5c392e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#770C56"; +declare const SiDatefns: IconType; +export { SiDatefns as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.mjs new file mode 100644 index 000000000..a9dcce18e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatefns.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#770C56"; +const SiDatefns = React.forwardRef(function SiDatefns2({ title = "date-fns", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.065 6.534C.355 8.246 0 10.068 0 11.999c0 1.932.355 3.754 1.065 5.466a13.768 13.768 0 0 0 3.068 4.549h2.685c-2.784-2.756-4.176-6.094-4.176-10.015 0-3.92 1.392-7.258 4.176-10.014H4.133a13.768 13.768 0 0 0-3.068 4.549Zm21.869 10.931c.71-1.712 1.066-3.534 1.066-5.466 0-1.931-.356-3.753-1.066-5.465a13.768 13.768 0 0 0-3.068-4.549h-2.685c2.784 2.756 4.176 6.094 4.176 10.014 0 3.921-1.392 7.259-4.176 10.015h2.685a13.768 13.768 0 0 0 3.068-4.549ZM11.63 3.299H9.854v10.21h1.776v-.033l7.218-7.218-1.151-1.151-6.067 6.067V3.299Z" }) + ] + } + ); +}); + +export { SiDatefns as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.cjs new file mode 100644 index 000000000..e9cb1024a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9BD547"; +const SiDatev = React__namespace.forwardRef(function SiDatev2({ title = "DATEV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .165v16.9174h23.9147V.1651Zm.017 18.1842v5.4857h1.9809c1.4754 0 2.7429-1.1832 2.7429-2.7005-.042-1.686-1.0982-2.7852-2.5736-2.7852zm6.62 0-2.1079 5.4857H5.706l1.6422-4.3428 1.3546 3.454h-1.524v.8888h3.0392l-2.1502-5.4857Zm2.6498 0v.9312h1.7778v4.5545h1.219v-4.5545h1.727v-.9312zm5.1894 0v5.4857h3.7926v-.8889h-2.6159v-1.5153h2.3196v-.9313h-2.3196v-1.219h2.4889v-.9312zm3.962 0 2.1502 5.4857h1.3037L24 18.3492h-2.9037v.9312h1.3884l-1.2699 3.327-1.5577-4.2582zm-17.2869.9312h.9313c.9271 0 1.5576.6735 1.5153 1.8117-.042 1.1804-.8425 1.8116-1.8116 1.8116h-.635Z" }) + ] + } + ); +}); + +exports.default = SiDatev; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.d.ts new file mode 100644 index 000000000..8471e0959 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9BD547"; +declare const SiDatev: IconType; +export { SiDatev as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.mjs new file mode 100644 index 000000000..b1802b2f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatev.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9BD547"; +const SiDatev = React.forwardRef(function SiDatev2({ title = "DATEV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .165v16.9174h23.9147V.1651Zm.017 18.1842v5.4857h1.9809c1.4754 0 2.7429-1.1832 2.7429-2.7005-.042-1.686-1.0982-2.7852-2.5736-2.7852zm6.62 0-2.1079 5.4857H5.706l1.6422-4.3428 1.3546 3.454h-1.524v.8888h3.0392l-2.1502-5.4857Zm2.6498 0v.9312h1.7778v4.5545h1.219v-4.5545h1.727v-.9312zm5.1894 0v5.4857h3.7926v-.8889h-2.6159v-1.5153h2.3196v-.9313h-2.3196v-1.219h2.4889v-.9312zm3.962 0 2.1502 5.4857h1.3037L24 18.3492h-2.9037v.9312h1.3884l-1.2699 3.327-1.5577-4.2582zm-17.2869.9312h.9313c.9271 0 1.5576.6735 1.5153 1.8117-.042 1.1804-.8425 1.8116-1.8116 1.8116h-.635Z" }) + ] + } + ); +}); + +export { SiDatev as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.cjs new file mode 100644 index 000000000..4008d56ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7751"; +const SiDatocms = React__namespace.forwardRef(function SiDatocms2({ title = "DatoCMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0H.076v24H12c5.964 0 11.924-5.373 11.924-11.998C23.924 5.376 17.963 0 12 0zm0 17.453a5.453 5.453 0 115.455-5.451A5.45 5.45 0 0112 17.452z" }) + ] + } + ); +}); + +exports.default = SiDatocms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.d.ts new file mode 100644 index 000000000..f7f7c891b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7751"; +declare const SiDatocms: IconType; +export { SiDatocms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.mjs new file mode 100644 index 000000000..049c52f94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatocms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7751"; +const SiDatocms = React.forwardRef(function SiDatocms2({ title = "DatoCMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0H.076v24H12c5.964 0 11.924-5.373 11.924-11.998C23.924 5.376 17.963 0 12 0zm0 17.453a5.453 5.453 0 115.455-5.451A5.45 5.45 0 0112 17.452z" }) + ] + } + ); +}); + +export { SiDatocms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.cjs new file mode 100644 index 000000000..272aee07e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#199ED9"; +const SiDatto = React__namespace.forwardRef(function SiDatto2({ title = "Datto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.9141 10.6406c-.4547-.3844-.8766-.5485-1.4531-.5485C1.0078 10.0922 0 11.2734 0 12.9844c0 1.7203 1.0313 2.9391 2.4938 2.9391.5484 0 1.0313-.1875 1.4156-.5625v.4312h1.1813V8.0578l-1.1766.0047v2.5781zm-.1313 3.4079c-.1641.4312-.6422.7359-1.1719.7359-.8344 0-1.3688-.689-1.3688-1.7578 0-1.1109.5391-1.8047 1.4063-1.8047.525 0 1.0313.3281 1.1578.7594.0704.2109.0938.5015.0938 1.1015 0 .4735-.0328.7688-.1172.9657zm6.5437-.1266v-2.0531c0-.6656-.0703-.9235-.3609-1.2281-.3375-.3656-.9609-.5625-1.7344-.5625-.7828 0-1.5703.1875-2.3297.5719l.4922.9468c.7828-.3375 1.1719-.4312 1.7109-.4312.7266 0 1.0219.2578 1.0313.8906v.1781c-.9468.0938-1.2656.1312-1.6406.1969-1.1953.2344-1.7578.7593-1.7578 1.65 0 1.0547.9141 1.8516 2.1188 1.8516.6422 0 1.1484-.2344 1.5093-.689.1172.3843.4313.6187.9609.689l.6-.9141c-.5437-.2203-.6-.3375-.6-1.0969zm-1.1953.1031c0 .3281-.0469.4547-.2109.5953-.2109.1875-.5718.3188-.8765.3188-.5719 0-1.0453-.375-1.0453-.8344 0-.375.2485-.5953.7969-.7266.3657-.0844.6656-.1172 1.3359-.1875v.8344zm5.2313.6328.15 1.0406c-.3844.1031-.8203.1641-1.1953.1641-1.1016 0-1.5328-.4547-1.5328-1.5938v-3.0469h-1.0172v-1.0172h1.0172V8.4844l1.1813-.4219v2.1422h1.4719v1.0172h-1.4672v2.6531c0 .6891.1406.8531.7266.8531.1967 0 .4218-.0234.6655-.0703zm4.0828 0 .15 1.0406c-.3844.1031-.8203.1641-1.1953.1641-1.1016 0-1.5328-.4547-1.5328-1.5938v-3.0469H14.85v-1.0172h1.0172V8.4844l1.1813-.4219v2.1422h1.4672v1.0172h-1.4672l.0046 2.6531c0 .6891.1406.8531.7266.8531.1969 0 .4218-.0234.6656-.0703zm2.8125-4.5937c-1.5563 0-2.6016 1.1859-2.6016 2.9625 0 1.7203 1.1016 2.9156 2.6953 2.9156 1.5609 0 2.6484-1.2047 2.6484-2.9156.0001-1.7532-1.1109-2.9625-2.7421-2.9625zm.0469 4.725c-.8672 0-1.4391-.7125-1.4391-1.7813s.5859-1.8047 1.4531-1.8047c.8438 0 1.4063.7172 1.4063 1.8047 0 1.0641-.5766 1.7813-1.4203 1.7813z" }) + ] + } + ); +}); + +exports.default = SiDatto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.d.ts new file mode 100644 index 000000000..30caaa52f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#199ED9"; +declare const SiDatto: IconType; +export { SiDatto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.mjs new file mode 100644 index 000000000..848ecbf1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDatto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#199ED9"; +const SiDatto = React.forwardRef(function SiDatto2({ title = "Datto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.9141 10.6406c-.4547-.3844-.8766-.5485-1.4531-.5485C1.0078 10.0922 0 11.2734 0 12.9844c0 1.7203 1.0313 2.9391 2.4938 2.9391.5484 0 1.0313-.1875 1.4156-.5625v.4312h1.1813V8.0578l-1.1766.0047v2.5781zm-.1313 3.4079c-.1641.4312-.6422.7359-1.1719.7359-.8344 0-1.3688-.689-1.3688-1.7578 0-1.1109.5391-1.8047 1.4063-1.8047.525 0 1.0313.3281 1.1578.7594.0704.2109.0938.5015.0938 1.1015 0 .4735-.0328.7688-.1172.9657zm6.5437-.1266v-2.0531c0-.6656-.0703-.9235-.3609-1.2281-.3375-.3656-.9609-.5625-1.7344-.5625-.7828 0-1.5703.1875-2.3297.5719l.4922.9468c.7828-.3375 1.1719-.4312 1.7109-.4312.7266 0 1.0219.2578 1.0313.8906v.1781c-.9468.0938-1.2656.1312-1.6406.1969-1.1953.2344-1.7578.7593-1.7578 1.65 0 1.0547.9141 1.8516 2.1188 1.8516.6422 0 1.1484-.2344 1.5093-.689.1172.3843.4313.6187.9609.689l.6-.9141c-.5437-.2203-.6-.3375-.6-1.0969zm-1.1953.1031c0 .3281-.0469.4547-.2109.5953-.2109.1875-.5718.3188-.8765.3188-.5719 0-1.0453-.375-1.0453-.8344 0-.375.2485-.5953.7969-.7266.3657-.0844.6656-.1172 1.3359-.1875v.8344zm5.2313.6328.15 1.0406c-.3844.1031-.8203.1641-1.1953.1641-1.1016 0-1.5328-.4547-1.5328-1.5938v-3.0469h-1.0172v-1.0172h1.0172V8.4844l1.1813-.4219v2.1422h1.4719v1.0172h-1.4672v2.6531c0 .6891.1406.8531.7266.8531.1967 0 .4218-.0234.6655-.0703zm4.0828 0 .15 1.0406c-.3844.1031-.8203.1641-1.1953.1641-1.1016 0-1.5328-.4547-1.5328-1.5938v-3.0469H14.85v-1.0172h1.0172V8.4844l1.1813-.4219v2.1422h1.4672v1.0172h-1.4672l.0046 2.6531c0 .6891.1406.8531.7266.8531.1969 0 .4218-.0234.6656-.0703zm2.8125-4.5937c-1.5563 0-2.6016 1.1859-2.6016 2.9625 0 1.7203 1.1016 2.9156 2.6953 2.9156 1.5609 0 2.6484-1.2047 2.6484-2.9156.0001-1.7532-1.1109-2.9625-2.7421-2.9625zm.0469 4.725c-.8672 0-1.4391-.7125-1.4391-1.7813s.5859-1.8047 1.4531-1.8047c.8438 0 1.4063.7172 1.4063 1.8047 0 1.0641-.5766 1.7813-1.4203 1.7813z" }) + ] + } + ); +}); + +export { SiDatto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.cjs new file mode 100644 index 000000000..c59022356 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#233A51"; +const SiDavinciresolve = React__namespace.forwardRef(function SiDavinciresolve2({ title = "DaVinci Resolve", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.621 0 5.977.004c-1.37 0-2.756.345-3.762 1.11a4.925 4.925 0 0 0-1.61 2.003C.233 3.93 0 5.02 0 5.951l.012 12.2c.002 1.604.479 3.057 1.461 4.112.984 1.056 2.462 1.683 4.331 1.691L16.856 24c1.26.005 3.095-.036 4.303-.714 1.075-.605 2.025-1.556 2.497-2.984.278-.84.345-2.084.344-3.147l-.021-11.13c-.002-.888-.15-2.023-.547-2.934-.425-.976-1.181-1.815-2.322-2.425C20.353.26 19.123 0 17.622 0zm0 .93c1.378 0 2.538.295 3.04.565.977.523 1.544 1.166 1.889 1.96.315.721.47 1.793.473 2.572l.018 11.13c.002 1.013-.097 2.257-.298 2.86-.396 1.202-1.146 1.946-2.063 2.462-.814.457-2.612.593-3.82.588l-11.05-.044c-1.657-.007-2.832-.534-3.626-1.386-.792-.851-1.212-2.06-1.212-3.485L.999 5.95c0-.829.196-1.827.474-2.437.345-.757.75-1.207 1.365-1.674C3.585 1.27 4.868.97 6.08.97zm-5.66 3.423c-1.976.089-3.204 1.658-3.214 3.29.019 1.443 1.635 3.481 2.884 4.53.12.099.154.109.33.18.062.025.198-.047.327-.135.36-.245.993-.947 1.648-1.738a7.67 7.67 0 0 0 1.031-1.683c.409-.89.261-1.599.235-1.888a3.983 3.983 0 0 0-.99-1.692 3.36 3.36 0 0 0-2.251-.864zm4.172 7.922a10.185 10.185 0 0 0-3.244.61c-.15.058-.26.1-.374.17-.057.036-.11.135-.105.292.017.433.29 1.278.624 2.27.384 1.135 1.066 2.27 1.844 2.74a3.23 3.23 0 0 0 2.53.342c.832-.243 1.595-.868 1.962-1.546.986-1.818.19-3.548-1.121-4.417-.447-.296-1.133-.445-1.89-.46-.074 0-.15-.002-.226-.001zm-8.432.038a6.201 6.201 0 0 0-.752.047c-.596.078-.932.273-1.29.51a3.177 3.177 0 0 0-1.365 1.979c-.075.552-.086 1.053.033 1.507.433 1.389 1.326 2.222 2.847 2.452.636.028 1.37-.063 1.99-.45 1.269-.782 2.08-3.17 2.412-4.742.053-.176.035-.357-.013-.42-.005-.067-.044-.113-.19-.183-.398-.192-1.32-.417-2.375-.6a7.68 7.68 0 0 0-1.297-.1z" }) + ] + } + ); +}); + +exports.default = SiDavinciresolve; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.d.ts new file mode 100644 index 000000000..485802f26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#233A51"; +declare const SiDavinciresolve: IconType; +export { SiDavinciresolve as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.mjs new file mode 100644 index 000000000..9c61c3e9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDavinciresolve.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#233A51"; +const SiDavinciresolve = React.forwardRef(function SiDavinciresolve2({ title = "DaVinci Resolve", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.621 0 5.977.004c-1.37 0-2.756.345-3.762 1.11a4.925 4.925 0 0 0-1.61 2.003C.233 3.93 0 5.02 0 5.951l.012 12.2c.002 1.604.479 3.057 1.461 4.112.984 1.056 2.462 1.683 4.331 1.691L16.856 24c1.26.005 3.095-.036 4.303-.714 1.075-.605 2.025-1.556 2.497-2.984.278-.84.345-2.084.344-3.147l-.021-11.13c-.002-.888-.15-2.023-.547-2.934-.425-.976-1.181-1.815-2.322-2.425C20.353.26 19.123 0 17.622 0zm0 .93c1.378 0 2.538.295 3.04.565.977.523 1.544 1.166 1.889 1.96.315.721.47 1.793.473 2.572l.018 11.13c.002 1.013-.097 2.257-.298 2.86-.396 1.202-1.146 1.946-2.063 2.462-.814.457-2.612.593-3.82.588l-11.05-.044c-1.657-.007-2.832-.534-3.626-1.386-.792-.851-1.212-2.06-1.212-3.485L.999 5.95c0-.829.196-1.827.474-2.437.345-.757.75-1.207 1.365-1.674C3.585 1.27 4.868.97 6.08.97zm-5.66 3.423c-1.976.089-3.204 1.658-3.214 3.29.019 1.443 1.635 3.481 2.884 4.53.12.099.154.109.33.18.062.025.198-.047.327-.135.36-.245.993-.947 1.648-1.738a7.67 7.67 0 0 0 1.031-1.683c.409-.89.261-1.599.235-1.888a3.983 3.983 0 0 0-.99-1.692 3.36 3.36 0 0 0-2.251-.864zm4.172 7.922a10.185 10.185 0 0 0-3.244.61c-.15.058-.26.1-.374.17-.057.036-.11.135-.105.292.017.433.29 1.278.624 2.27.384 1.135 1.066 2.27 1.844 2.74a3.23 3.23 0 0 0 2.53.342c.832-.243 1.595-.868 1.962-1.546.986-1.818.19-3.548-1.121-4.417-.447-.296-1.133-.445-1.89-.46-.074 0-.15-.002-.226-.001zm-8.432.038a6.201 6.201 0 0 0-.752.047c-.596.078-.932.273-1.29.51a3.177 3.177 0 0 0-1.365 1.979c-.075.552-.086 1.053.033 1.507.433 1.389 1.326 2.222 2.847 2.452.636.028 1.37-.063 1.99-.45 1.269-.782 2.08-3.17 2.412-4.742.053-.176.035-.357-.013-.42-.005-.067-.044-.113-.19-.183-.398-.192-1.32-.417-2.375-.6a7.68 7.68 0 0 0-1.297-.1z" }) + ] + } + ); +}); + +export { SiDavinciresolve as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.cjs new file mode 100644 index 000000000..8000ebd46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6633"; +const SiDazhongdianping = React__namespace.forwardRef(function SiDazhongdianping2({ title = "Dazhong Dianping", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.922 0c-2.407 0-3.28.25-4.16.72A4.905 4.905 0 0 0 .72 2.763C.25 3.642 0 4.515 0 6.922v10.156c0 2.407.25 3.28.72 4.16.471.88 1.162 1.57 2.042 2.041.88.47 1.753.721 4.16.721h10.156c2.407 0 3.28-.25 4.16-.72a4.907 4.907 0 0 0 2.041-2.042c.471-.88.721-1.753.721-4.16V6.922c0-2.407-.25-3.28-.72-4.16A4.905 4.905 0 0 0 21.237.72C20.358.25 19.485 0 17.078 0H6.922zm3.139 2.703a3.07 3.07 0 0 1 3.07 3.07 3.07 3.07 0 0 1-3.07 3.07 3.07 3.07 0 0 1-3.07-3.07 3.07 3.07 0 0 1 3.07-3.07zm6.994 1.617c.145.66.195 1.35.13 2.057-.17 1.88-1.105 3.52-2.48 4.656 3.177.427 5.685 2.65 6.514 5.5.08.22.148.486.217.723l-2.688.685c-.06-.222-.127-.452-.19-.67-.751-2.622-3.55-4.172-6.273-3.466-2.718.704-4.338 3.391-3.642 6.021l.199.729-2.688.687c-.07-.247-.132-.512-.195-.754a7.38 7.38 0 0 1-.215-2.554c.199-2.2 1.345-4.1 3.014-5.36-2.634-.47-4.716-2.312-5.506-4.678l2.62-.677c.566 1.534 2.012 2.689 3.8 2.84 2.446.207 4.604-1.544 4.818-3.91.036-.394.013-.78-.056-1.151l2.62-.678z" }) + ] + } + ); +}); + +exports.default = SiDazhongdianping; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.d.ts new file mode 100644 index 000000000..dba6cbff7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6633"; +declare const SiDazhongdianping: IconType; +export { SiDazhongdianping as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.mjs new file mode 100644 index 000000000..6cd214650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDazhongdianping.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6633"; +const SiDazhongdianping = React.forwardRef(function SiDazhongdianping2({ title = "Dazhong Dianping", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.922 0c-2.407 0-3.28.25-4.16.72A4.905 4.905 0 0 0 .72 2.763C.25 3.642 0 4.515 0 6.922v10.156c0 2.407.25 3.28.72 4.16.471.88 1.162 1.57 2.042 2.041.88.47 1.753.721 4.16.721h10.156c2.407 0 3.28-.25 4.16-.72a4.907 4.907 0 0 0 2.041-2.042c.471-.88.721-1.753.721-4.16V6.922c0-2.407-.25-3.28-.72-4.16A4.905 4.905 0 0 0 21.237.72C20.358.25 19.485 0 17.078 0H6.922zm3.139 2.703a3.07 3.07 0 0 1 3.07 3.07 3.07 3.07 0 0 1-3.07 3.07 3.07 3.07 0 0 1-3.07-3.07 3.07 3.07 0 0 1 3.07-3.07zm6.994 1.617c.145.66.195 1.35.13 2.057-.17 1.88-1.105 3.52-2.48 4.656 3.177.427 5.685 2.65 6.514 5.5.08.22.148.486.217.723l-2.688.685c-.06-.222-.127-.452-.19-.67-.751-2.622-3.55-4.172-6.273-3.466-2.718.704-4.338 3.391-3.642 6.021l.199.729-2.688.687c-.07-.247-.132-.512-.195-.754a7.38 7.38 0 0 1-.215-2.554c.199-2.2 1.345-4.1 3.014-5.36-2.634-.47-4.716-2.312-5.506-4.678l2.62-.677c.566 1.534 2.012 2.689 3.8 2.84 2.446.207 4.604-1.544 4.818-3.91.036-.394.013-.78-.056-1.151l2.62-.678z" }) + ] + } + ); +}); + +export { SiDazhongdianping as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.cjs new file mode 100644 index 000000000..f0c7a2618 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F8F8F5"; +const SiDazn = React__namespace.forwardRef(function SiDazn2({ title = "DAZN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.774 8.291l.772-2.596.79 2.596zm3.848 2.268l-2.025-6.128c-.045-.135-.097-.224-.154-.266-.059-.041-.152-.063-.28-.063h-1.12a.485.485 0 0 0-.284.068c-.06.045-.11.132-.149.261l-2.045 6.128c-.025.032-.038.096-.038.192 0 .149.09.223.27.223h.84c.076 0 .139-.003.187-.01a.207.207 0 0 0 .116-.048.326.326 0 0 0 .077-.116c.022-.051.046-.119.072-.202l.318-1.071h2.306l.327 1.051c.026.09.051.16.077.213a.395.395 0 0 0 .087.12c.031.028.07.047.114.053h.002c.045.006.103.01.173.01h.897c.18 0 .27-.074.27-.223a.59.59 0 0 0-.005-.09.878.878 0 0 0-.036-.108l.003.006zm-.994 2.467h-.646c-.168 0-.279.024-.333.072-.055.049-.082.147-.082.295v3.638l-1.91-3.647c-.076-.155-.152-.253-.226-.295-.074-.041-.204-.063-.39-.063h-.599c-.167 0-.278.025-.332.073-.055.048-.082.147-.082.294v6.138c0 .148.025.246.077.294.052.048.16.072.328.072h.656c.167 0 .278-.024.332-.072.055-.048.082-.146.082-.294v-3.648l1.91 3.657c.077.155.152.253.227.295.073.042.204.062.39.062h.598c.167 0 .278-.024.333-.072.054-.048.082-.146.082-.294v-6.138c0-.148-.028-.246-.082-.294-.055-.048-.166-.073-.333-.073zm3.203-.581l1.665 1.665v8.385H1.505V14.11l1.663-1.664a.63.63 0 0 0 0-.89L1.504 9.891V1.505h20.991v8.384l-1.665 1.666a.63.63 0 0 0 0 .89zM24 0H0v10.613L1.387 12 0 13.387V24h24V13.387L22.613 12 24 10.613zM10.67 18.469H7.96l2.855-4.014a.67.67 0 0 0 .087-.155.425.425 0 0 0 .019-.135v-.772c0-.148-.028-.246-.082-.294-.055-.048-.166-.073-.334-.073H6.382c-.149 0-.245.028-.29.082-.045.055-.068.169-.068.343v.58c0 .172.023.287.068.341.045.055.141.083.29.083h2.545L6.11 18.469a.438.438 0 0 0-.107.27v.792c0 .148.027.245.082.294.055.048.167.072.334.072h4.25c.148 0 .245-.027.29-.081.045-.055.068-.17.068-.344v-.579c0-.173-.023-.287-.068-.342-.045-.055-.142-.082-.29-.082zM9.408 8.233c0 .264-.017.484-.052.661-.036.177-.093.32-.174.43a.648.648 0 0 1-.318.231 1.523 1.523 0 0 1-.487.068h-.79v-4.17h.79c.366 0 .63.11.79.324.16.215.241.571.241 1.067v1.389zm1.38-2.789c-.225-.457-.533-.795-.921-1.013-.39-.219-.88-.328-1.47-.328H6.418c-.167 0-.278.024-.333.072-.054.049-.082.147-.082.294v6.138c0 .148.028.246.082.295.055.048.166.072.333.072h2.218c1.048 0 1.765-.447 2.15-1.342.09-.205.153-.413.188-.622a4.91 4.91 0 0 0 .054-.796V6.911c0-.367-.018-.656-.054-.868a2.2 2.2 0 0 0-.193-.612l.006.013z" }) + ] + } + ); +}); + +exports.default = SiDazn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.d.ts new file mode 100644 index 000000000..65f4e3c58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F8F8F5"; +declare const SiDazn: IconType; +export { SiDazn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.mjs new file mode 100644 index 000000000..adb8daff7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDazn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F8F8F5"; +const SiDazn = React.forwardRef(function SiDazn2({ title = "DAZN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.774 8.291l.772-2.596.79 2.596zm3.848 2.268l-2.025-6.128c-.045-.135-.097-.224-.154-.266-.059-.041-.152-.063-.28-.063h-1.12a.485.485 0 0 0-.284.068c-.06.045-.11.132-.149.261l-2.045 6.128c-.025.032-.038.096-.038.192 0 .149.09.223.27.223h.84c.076 0 .139-.003.187-.01a.207.207 0 0 0 .116-.048.326.326 0 0 0 .077-.116c.022-.051.046-.119.072-.202l.318-1.071h2.306l.327 1.051c.026.09.051.16.077.213a.395.395 0 0 0 .087.12c.031.028.07.047.114.053h.002c.045.006.103.01.173.01h.897c.18 0 .27-.074.27-.223a.59.59 0 0 0-.005-.09.878.878 0 0 0-.036-.108l.003.006zm-.994 2.467h-.646c-.168 0-.279.024-.333.072-.055.049-.082.147-.082.295v3.638l-1.91-3.647c-.076-.155-.152-.253-.226-.295-.074-.041-.204-.063-.39-.063h-.599c-.167 0-.278.025-.332.073-.055.048-.082.147-.082.294v6.138c0 .148.025.246.077.294.052.048.16.072.328.072h.656c.167 0 .278-.024.332-.072.055-.048.082-.146.082-.294v-3.648l1.91 3.657c.077.155.152.253.227.295.073.042.204.062.39.062h.598c.167 0 .278-.024.333-.072.054-.048.082-.146.082-.294v-6.138c0-.148-.028-.246-.082-.294-.055-.048-.166-.073-.333-.073zm3.203-.581l1.665 1.665v8.385H1.505V14.11l1.663-1.664a.63.63 0 0 0 0-.89L1.504 9.891V1.505h20.991v8.384l-1.665 1.666a.63.63 0 0 0 0 .89zM24 0H0v10.613L1.387 12 0 13.387V24h24V13.387L22.613 12 24 10.613zM10.67 18.469H7.96l2.855-4.014a.67.67 0 0 0 .087-.155.425.425 0 0 0 .019-.135v-.772c0-.148-.028-.246-.082-.294-.055-.048-.166-.073-.334-.073H6.382c-.149 0-.245.028-.29.082-.045.055-.068.169-.068.343v.58c0 .172.023.287.068.341.045.055.141.083.29.083h2.545L6.11 18.469a.438.438 0 0 0-.107.27v.792c0 .148.027.245.082.294.055.048.167.072.334.072h4.25c.148 0 .245-.027.29-.081.045-.055.068-.17.068-.344v-.579c0-.173-.023-.287-.068-.342-.045-.055-.142-.082-.29-.082zM9.408 8.233c0 .264-.017.484-.052.661-.036.177-.093.32-.174.43a.648.648 0 0 1-.318.231 1.523 1.523 0 0 1-.487.068h-.79v-4.17h.79c.366 0 .63.11.79.324.16.215.241.571.241 1.067v1.389zm1.38-2.789c-.225-.457-.533-.795-.921-1.013-.39-.219-.88-.328-1.47-.328H6.418c-.167 0-.278.024-.333.072-.054.049-.082.147-.082.294v6.138c0 .148.028.246.082.295.055.048.166.072.333.072h2.218c1.048 0 1.765-.447 2.15-1.342.09-.205.153-.413.188-.622a4.91 4.91 0 0 0 .054-.796V6.911c0-.367-.018-.656-.054-.868a2.2 2.2 0 0 0-.193-.612l.006.013z" }) + ] + } + ); +}); + +export { SiDazn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.cjs new file mode 100644 index 000000000..ed70ac293 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#382923"; +const SiDbeaver = React__namespace.forwardRef(function SiDbeaver2({ title = "DBeaver", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.1113 0a3.283 3.283 0 0 0-1.746.5508 8.4362 8.4362 0 0 0-2.7481 2.543 6.7216 6.7216 0 0 1-1.3438 0c-.3202 0-.7887.209-.5742.9628.2146.7538.798 1.4973.75 1.9239a3.6987 3.6987 0 0 0-.0683.8047c-.2979.4714-1.6906 2.743-2.1133 4.5488 0 0 .7957-7.967-1.6446-9.33C5.1828.6406 3.219 1.7271 2.5625 3.5233c-1.4027 3.833.6752 9.8253 3.6055 14.6621 2.9302 4.837 5.7128 5.7083 7.6855 5.795 3.2985.1443 2.3385-.57 3.5235-.6407 1.1848-.0705 1.0116.6411 2.9843.3653 1.438-.2085 1.685-1.1705 1.1407-1.6035-.5445-.433-.3626-1.4832.1562-3.7188.5188-2.2356-.224-6.17-.746-7.1836-.522-1.0136-.4643-1.5298.0897-2.5273a6.2125 6.2125 0 0 0 .8497-2.5059 3.858 3.858 0 0 0 0-1.043.0703.0703 0 0 0 0-.0214v-.0508s-.3439 1.3752-1.0196 1.8691a9.8362 9.8362 0 0 0-.3203.2442c.0673-.2566.3209-1.34-.041-1.9239 0 0-.1508 2.4876-1.4766 2.6192-1.3258.1315-3.202-1.2243-3.7304-1.7696.0385.21.0682.268.1093.4297.044.1514.0957.2998.1563.4453.1857.5999.3837 1.5177.086 2.0918-.4644.911-1.4756 2.313-1.3731 4.3145a8.4896 8.4896 0 0 0 .8027 3.5273c.3907.988.4929 1.8995.416 2.0567-.0768.1571.027.9613-1.8144-.418-1.8414-1.3792-2.338-2.8066-2.338-2.8066a5.9008 5.9008 0 0 0-.3358 2.496 15.5107 15.5107 0 0 0 .7773 3.5606s-2.4149-1.9574-2.543-5.877c-.1217-3.602 1.986-7.7686 2.3223-8.4101.0652.1444.1618.2733.2832.375.1214.1016.2645.1743.418.2129 0 0-.9392-.5175-.254-2.5254.6854-2.0079 2.0667-3.7942 3.463-4.58a3.9939 3.9939 0 0 1 3.871-.1973A3.2807 3.2807 0 0 0 17.377.0059 3.2584 3.2584 0 0 0 17.1113 0Zm-1.3906 1.8652a1.1517 1.1517 0 0 0-.2207.0254c-.3523.077-.5402.49-.2969 1a.8232.8232 0 0 1 .0664.3614.8266.8266 0 0 1-.0957.3554 4.9858 4.9858 0 0 1 .9102-.7168 4.3949 4.3949 0 0 1 1.2168-.4394 1.4291 1.4291 0 0 1-.7246-.2207 1.1402 1.1402 0 0 0-.4922-.3125 1.1424 1.1424 0 0 0-.3633-.0528Zm4.8711.1739c-.5036 0-1.1723.1135-1.6875.3164a1.3396 1.3396 0 0 0-.7617.5625c-.2786.6415 1.4175 1.7047 2.0996 1.5058.3202-.093.7957-.7883 1.0039-1.3945.141-.433.1598-.8185-.0996-.918-.1311-.049-.3258-.0722-.5547-.0722zm.2246 5.33s-.3464 1.1811-.5898 1.7168c-.2114.4747-.2786.4357-.4356.4903a4.3875 4.3875 0 0 0 .1758-.664c.0929-.3914 0-.4942 0-.4942a4.1717 4.1717 0 0 1-.4629 1.2832 1.0077 1.0077 0 0 1-.6406.039c-.2594-.1058-.3047-1.3259-.3047-1.3964a2.5126 2.5126 0 0 0 1.2559-.1915 2.5196 2.5196 0 0 0 1.002-.7832Z" }) + ] + } + ); +}); + +exports.default = SiDbeaver; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.d.ts new file mode 100644 index 000000000..745746006 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#382923"; +declare const SiDbeaver: IconType; +export { SiDbeaver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.mjs new file mode 100644 index 000000000..1b0efdb2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDbeaver.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#382923"; +const SiDbeaver = React.forwardRef(function SiDbeaver2({ title = "DBeaver", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.1113 0a3.283 3.283 0 0 0-1.746.5508 8.4362 8.4362 0 0 0-2.7481 2.543 6.7216 6.7216 0 0 1-1.3438 0c-.3202 0-.7887.209-.5742.9628.2146.7538.798 1.4973.75 1.9239a3.6987 3.6987 0 0 0-.0683.8047c-.2979.4714-1.6906 2.743-2.1133 4.5488 0 0 .7957-7.967-1.6446-9.33C5.1828.6406 3.219 1.7271 2.5625 3.5233c-1.4027 3.833.6752 9.8253 3.6055 14.6621 2.9302 4.837 5.7128 5.7083 7.6855 5.795 3.2985.1443 2.3385-.57 3.5235-.6407 1.1848-.0705 1.0116.6411 2.9843.3653 1.438-.2085 1.685-1.1705 1.1407-1.6035-.5445-.433-.3626-1.4832.1562-3.7188.5188-2.2356-.224-6.17-.746-7.1836-.522-1.0136-.4643-1.5298.0897-2.5273a6.2125 6.2125 0 0 0 .8497-2.5059 3.858 3.858 0 0 0 0-1.043.0703.0703 0 0 0 0-.0214v-.0508s-.3439 1.3752-1.0196 1.8691a9.8362 9.8362 0 0 0-.3203.2442c.0673-.2566.3209-1.34-.041-1.9239 0 0-.1508 2.4876-1.4766 2.6192-1.3258.1315-3.202-1.2243-3.7304-1.7696.0385.21.0682.268.1093.4297.044.1514.0957.2998.1563.4453.1857.5999.3837 1.5177.086 2.0918-.4644.911-1.4756 2.313-1.3731 4.3145a8.4896 8.4896 0 0 0 .8027 3.5273c.3907.988.4929 1.8995.416 2.0567-.0768.1571.027.9613-1.8144-.418-1.8414-1.3792-2.338-2.8066-2.338-2.8066a5.9008 5.9008 0 0 0-.3358 2.496 15.5107 15.5107 0 0 0 .7773 3.5606s-2.4149-1.9574-2.543-5.877c-.1217-3.602 1.986-7.7686 2.3223-8.4101.0652.1444.1618.2733.2832.375.1214.1016.2645.1743.418.2129 0 0-.9392-.5175-.254-2.5254.6854-2.0079 2.0667-3.7942 3.463-4.58a3.9939 3.9939 0 0 1 3.871-.1973A3.2807 3.2807 0 0 0 17.377.0059 3.2584 3.2584 0 0 0 17.1113 0Zm-1.3906 1.8652a1.1517 1.1517 0 0 0-.2207.0254c-.3523.077-.5402.49-.2969 1a.8232.8232 0 0 1 .0664.3614.8266.8266 0 0 1-.0957.3554 4.9858 4.9858 0 0 1 .9102-.7168 4.3949 4.3949 0 0 1 1.2168-.4394 1.4291 1.4291 0 0 1-.7246-.2207 1.1402 1.1402 0 0 0-.4922-.3125 1.1424 1.1424 0 0 0-.3633-.0528Zm4.8711.1739c-.5036 0-1.1723.1135-1.6875.3164a1.3396 1.3396 0 0 0-.7617.5625c-.2786.6415 1.4175 1.7047 2.0996 1.5058.3202-.093.7957-.7883 1.0039-1.3945.141-.433.1598-.8185-.0996-.918-.1311-.049-.3258-.0722-.5547-.0722zm.2246 5.33s-.3464 1.1811-.5898 1.7168c-.2114.4747-.2786.4357-.4356.4903a4.3875 4.3875 0 0 0 .1758-.664c.0929-.3914 0-.4942 0-.4942a4.1717 4.1717 0 0 1-.4629 1.2832 1.0077 1.0077 0 0 1-.6406.039c-.2594-.1058-.3047-1.3259-.3047-1.3964a2.5126 2.5126 0 0 0 1.2559-.1915 2.5196 2.5196 0 0 0 1.002-.7832Z" }) + ] + } + ); +}); + +export { SiDbeaver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.cjs new file mode 100644 index 000000000..b4f38e258 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004F9F"; +const SiDblp = React__namespace.forwardRef(function SiDblp2({ title = "dblp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.075.002c-.096.013-.154.092-.094.31L4.97 7.73 3.1 8.6s-.56.26-.4.85l2.45 9.159s.16.59.72.33l6.169-2.869 1.3-.61s.52-.24.42-.79l-.01-.06-1.13-4.22-.658-2.45-.672-2.49v-.04s-.16-.59-.84-1L3.5.141s-.265-.16-.425-.139zM18.324 5.03a.724.724 0 0 0-.193.06l-5.602 2.6.862 3.2 1.09 4.08.01.06c.05.47-.411.79-.411.79l-1.88.87.5 1.89.04.1c.07.17.28.6.81.91l6.95 4.269s.68.41.52-.17l-1.981-7.4 1.861-.86s.56-.26.4-.85L18.85 5.42s-.116-.452-.526-.39z" }) + ] + } + ); +}); + +exports.default = SiDblp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.d.ts new file mode 100644 index 000000000..628b12ce7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004F9F"; +declare const SiDblp: IconType; +export { SiDblp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.mjs new file mode 100644 index 000000000..3a9774133 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDblp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004F9F"; +const SiDblp = React.forwardRef(function SiDblp2({ title = "dblp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.075.002c-.096.013-.154.092-.094.31L4.97 7.73 3.1 8.6s-.56.26-.4.85l2.45 9.159s.16.59.72.33l6.169-2.869 1.3-.61s.52-.24.42-.79l-.01-.06-1.13-4.22-.658-2.45-.672-2.49v-.04s-.16-.59-.84-1L3.5.141s-.265-.16-.425-.139zM18.324 5.03a.724.724 0 0 0-.193.06l-5.602 2.6.862 3.2 1.09 4.08.01.06c.05.47-.411.79-.411.79l-1.88.87.5 1.89.04.1c.07.17.28.6.81.91l6.95 4.269s.68.41.52-.17l-1.981-7.4 1.861-.86s.56-.26.4-.85L18.85 5.42s-.116-.452-.526-.39z" }) + ] + } + ); +}); + +export { SiDblp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.cjs new file mode 100644 index 000000000..ed76b4683 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0078F0"; +const SiDcentertainment = React__namespace.forwardRef(function SiDcentertainment2({ title = "DC Entertainment", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.215 8.787h2.154c.601 0 1.088.487 1.088 1.088v4.954c0 .6-.487 1.088-1.088 1.088H6.05V9.475a.159.159 0 00-.066-.129zM12 23.099a11.078 11.078 0 01-8.659-4.155.046.046 0 01.036-.074h5.936a.26.26 0 00.153-.05l2.27-1.648a.159.159 0 00.064-.128V7.616a.159.159 0 00-.065-.129L9.466 5.84a.261.261 0 00-.153-.05H2.886a.046.046 0 01-.037-.071A11.087 11.087 0 0112 .9c3.798 0 7.15 1.907 9.151 4.817a.046.046 0 01-.038.071h-1.597c-.052 0-.1.03-.123.079l-.353.757-1.082-.786a.26.26 0 00-.153-.05h-2.553a.261.261 0 00-.154.05L12.83 7.487a.159.159 0 00-.065.129v9.428c0 .05.024.098.065.128l2.27 1.648a.26.26 0 00.153.05h5.371c.038 0 .06.045.036.074A11.078 11.078 0 0112 23.1zM1.602 8.3l1.038.755c.043.03.068.08.068.132v8.73c0 .046-.06.063-.084.025A11.046 11.046 0 01.901 12c0-1.289.22-2.526.624-3.677a.05.05 0 01.077-.024zm13.67.488h3.225v1.776c0 .046.038.084.084.084h2.701a.098.098 0 00.096-.083l.535-3.374c.007-.044.066-.053.086-.013a11.053 11.053 0 011.1 4.823 11.05 11.05 0 01-1.39 5.382c-.022.04-.084.024-.084-.023v-3.084a.084.084 0 00-.084-.084h-2.96a.084.084 0 00-.084.084v1.642h-1.301a1.089 1.089 0 01-1.089-1.088V9.475a.159.159 0 00-.065-.129zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiDcentertainment; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.d.ts new file mode 100644 index 000000000..d6cfd10e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0078F0"; +declare const SiDcentertainment: IconType; +export { SiDcentertainment as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.mjs new file mode 100644 index 000000000..c97d3833b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDcentertainment.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0078F0"; +const SiDcentertainment = React.forwardRef(function SiDcentertainment2({ title = "DC Entertainment", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.215 8.787h2.154c.601 0 1.088.487 1.088 1.088v4.954c0 .6-.487 1.088-1.088 1.088H6.05V9.475a.159.159 0 00-.066-.129zM12 23.099a11.078 11.078 0 01-8.659-4.155.046.046 0 01.036-.074h5.936a.26.26 0 00.153-.05l2.27-1.648a.159.159 0 00.064-.128V7.616a.159.159 0 00-.065-.129L9.466 5.84a.261.261 0 00-.153-.05H2.886a.046.046 0 01-.037-.071A11.087 11.087 0 0112 .9c3.798 0 7.15 1.907 9.151 4.817a.046.046 0 01-.038.071h-1.597c-.052 0-.1.03-.123.079l-.353.757-1.082-.786a.26.26 0 00-.153-.05h-2.553a.261.261 0 00-.154.05L12.83 7.487a.159.159 0 00-.065.129v9.428c0 .05.024.098.065.128l2.27 1.648a.26.26 0 00.153.05h5.371c.038 0 .06.045.036.074A11.078 11.078 0 0112 23.1zM1.602 8.3l1.038.755c.043.03.068.08.068.132v8.73c0 .046-.06.063-.084.025A11.046 11.046 0 01.901 12c0-1.289.22-2.526.624-3.677a.05.05 0 01.077-.024zm13.67.488h3.225v1.776c0 .046.038.084.084.084h2.701a.098.098 0 00.096-.083l.535-3.374c.007-.044.066-.053.086-.013a11.053 11.053 0 011.1 4.823 11.05 11.05 0 01-1.39 5.382c-.022.04-.084.024-.084-.023v-3.084a.084.084 0 00-.084-.084h-2.96a.084.084 0 00-.084.084v1.642h-1.301a1.089 1.089 0 01-1.089-1.088V9.475a.159.159 0 00-.065-.129zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Z" }) + ] + } + ); +}); + +export { SiDcentertainment as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.cjs new file mode 100644 index 000000000..73f0abc0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A81D33"; +const SiDebian = React__namespace.forwardRef(function SiDebian2({ title = "Debian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.88 12.685c-.4 0 .08.2.601.28.14-.1.27-.22.39-.33a3.001 3.001 0 01-.99.05m2.14-.53c.23-.33.4-.69.47-1.06-.06.27-.2.5-.33.73-.75.47-.07-.27 0-.56-.8 1.01-.11.6-.14.89m.781-2.05c.05-.721-.14-.501-.2-.221.07.04.13.5.2.22M12.38.31c.2.04.45.07.42.12.23-.05.28-.1-.43-.12m.43.12l-.15.03.14-.01V.43m6.633 9.944c.02.64-.2.95-.38 1.5l-.35.181c-.28.54.03.35-.17.78-.44.39-1.34 1.22-1.62 1.301-.201 0 .14-.25.19-.34-.591.4-.481.6-1.371.85l-.03-.06c-2.221 1.04-5.303-1.02-5.253-3.842-.03.17-.07.13-.12.2a3.551 3.552 0 012.001-3.501 3.361 3.362 0 013.732.48 3.341 3.342 0 00-2.721-1.3c-1.18.01-2.281.76-2.651 1.57-.6.38-.67 1.47-.93 1.661-.361 2.601.66 3.722 2.38 5.042.27.19.08.21.12.35a4.702 4.702 0 01-1.53-1.16c.23.33.47.66.8.91-.55-.18-1.27-1.3-1.48-1.35.93 1.66 3.78 2.921 5.261 2.3a6.203 6.203 0 01-2.33-.28c-.33-.16-.77-.51-.7-.57a5.802 5.803 0 005.902-.84c.44-.35.93-.94 1.07-.95-.2.32.04.16-.12.44.44-.72-.2-.3.46-1.24l.24.33c-.09-.6.74-1.321.66-2.262.19-.3.2.3 0 .97.29-.74.08-.85.15-1.46.08.2.18.42.23.63-.18-.7.2-1.2.28-1.6-.09-.05-.28.3-.32-.53 0-.37.1-.2.14-.28-.08-.05-.26-.32-.38-.861.08-.13.22.33.34.34-.08-.42-.2-.75-.2-1.08-.34-.68-.12.1-.4-.3-.34-1.091.3-.25.34-.74.54.77.84 1.96.981 2.46-.1-.6-.28-1.2-.49-1.76.16.07-.26-1.241.21-.37A7.823 7.824 0 0017.702 1.6c.18.17.42.39.33.42-.75-.45-.62-.48-.73-.67-.61-.25-.65.02-1.06 0C15.082.73 14.862.8 13.8.4l.05.23c-.77-.25-.9.1-1.73 0-.05-.04.27-.14.53-.18-.741.1-.701-.14-1.431.03.17-.13.36-.21.55-.32-.6.04-1.44.35-1.18.07C9.6.68 7.847 1.3 6.867 2.22L6.838 2c-.45.54-1.96 1.611-2.08 2.311l-.131.03c-.23.4-.38.85-.57 1.261-.3.52-.45.2-.4.28-.6 1.22-.9 2.251-1.16 3.102.18.27 0 1.65.07 2.76-.3 5.463 3.84 10.776 8.363 12.006.67.23 1.65.23 2.49.25-.99-.28-1.12-.15-2.08-.49-.7-.32-.85-.7-1.34-1.13l.2.35c-.971-.34-.57-.42-1.361-.67l.21-.27c-.31-.03-.83-.53-.97-.81l-.34.01c-.41-.501-.63-.871-.61-1.161l-.111.2c-.13-.21-1.52-1.901-.8-1.511-.13-.12-.31-.2-.5-.55l.14-.17c-.35-.44-.64-1.02-.62-1.2.2.24.32.3.45.33-.88-2.172-.93-.12-1.601-2.202l.15-.02c-.1-.16-.18-.34-.26-.51l.06-.6c-.63-.74-.18-3.102-.09-4.402.07-.54.53-1.1.88-1.981l-.21-.04c.4-.71 2.341-2.872 3.241-2.761.43-.55-.09 0-.18-.14.96-.991 1.26-.7 1.901-.88.7-.401-.6.16-.27-.151 1.2-.3.85-.7 2.421-.85.16.1-.39.14-.52.26 1-.49 3.151-.37 4.562.27 1.63.77 3.461 3.011 3.531 5.132l.08.02c-.04.85.13 1.821-.17 2.711l.2-.42M9.54 13.236l-.05.28c.26.35.47.73.8 1.01-.24-.47-.42-.66-.75-1.3m.62-.02c-.14-.15-.22-.34-.31-.52.08.32.26.6.43.88l-.12-.36m10.945-2.382l-.07.15c-.1.76-.34 1.511-.69 2.212.4-.73.65-1.541.75-2.362M12.45.12c.27-.1.66-.05.95-.12-.37.03-.74.05-1.1.1l.15.02M3.006 5.142c.07.57-.43.8.11.42.3-.66-.11-.18-.1-.42m-.64 2.661c.12-.39.15-.62.2-.84-.35.44-.17.53-.2.83" }) + ] + } + ); +}); + +exports.default = SiDebian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.d.ts new file mode 100644 index 000000000..6ccd7251e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A81D33"; +declare const SiDebian: IconType; +export { SiDebian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.mjs new file mode 100644 index 000000000..9b5377d69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDebian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A81D33"; +const SiDebian = React.forwardRef(function SiDebian2({ title = "Debian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.88 12.685c-.4 0 .08.2.601.28.14-.1.27-.22.39-.33a3.001 3.001 0 01-.99.05m2.14-.53c.23-.33.4-.69.47-1.06-.06.27-.2.5-.33.73-.75.47-.07-.27 0-.56-.8 1.01-.11.6-.14.89m.781-2.05c.05-.721-.14-.501-.2-.221.07.04.13.5.2.22M12.38.31c.2.04.45.07.42.12.23-.05.28-.1-.43-.12m.43.12l-.15.03.14-.01V.43m6.633 9.944c.02.64-.2.95-.38 1.5l-.35.181c-.28.54.03.35-.17.78-.44.39-1.34 1.22-1.62 1.301-.201 0 .14-.25.19-.34-.591.4-.481.6-1.371.85l-.03-.06c-2.221 1.04-5.303-1.02-5.253-3.842-.03.17-.07.13-.12.2a3.551 3.552 0 012.001-3.501 3.361 3.362 0 013.732.48 3.341 3.342 0 00-2.721-1.3c-1.18.01-2.281.76-2.651 1.57-.6.38-.67 1.47-.93 1.661-.361 2.601.66 3.722 2.38 5.042.27.19.08.21.12.35a4.702 4.702 0 01-1.53-1.16c.23.33.47.66.8.91-.55-.18-1.27-1.3-1.48-1.35.93 1.66 3.78 2.921 5.261 2.3a6.203 6.203 0 01-2.33-.28c-.33-.16-.77-.51-.7-.57a5.802 5.803 0 005.902-.84c.44-.35.93-.94 1.07-.95-.2.32.04.16-.12.44.44-.72-.2-.3.46-1.24l.24.33c-.09-.6.74-1.321.66-2.262.19-.3.2.3 0 .97.29-.74.08-.85.15-1.46.08.2.18.42.23.63-.18-.7.2-1.2.28-1.6-.09-.05-.28.3-.32-.53 0-.37.1-.2.14-.28-.08-.05-.26-.32-.38-.861.08-.13.22.33.34.34-.08-.42-.2-.75-.2-1.08-.34-.68-.12.1-.4-.3-.34-1.091.3-.25.34-.74.54.77.84 1.96.981 2.46-.1-.6-.28-1.2-.49-1.76.16.07-.26-1.241.21-.37A7.823 7.824 0 0017.702 1.6c.18.17.42.39.33.42-.75-.45-.62-.48-.73-.67-.61-.25-.65.02-1.06 0C15.082.73 14.862.8 13.8.4l.05.23c-.77-.25-.9.1-1.73 0-.05-.04.27-.14.53-.18-.741.1-.701-.14-1.431.03.17-.13.36-.21.55-.32-.6.04-1.44.35-1.18.07C9.6.68 7.847 1.3 6.867 2.22L6.838 2c-.45.54-1.96 1.611-2.08 2.311l-.131.03c-.23.4-.38.85-.57 1.261-.3.52-.45.2-.4.28-.6 1.22-.9 2.251-1.16 3.102.18.27 0 1.65.07 2.76-.3 5.463 3.84 10.776 8.363 12.006.67.23 1.65.23 2.49.25-.99-.28-1.12-.15-2.08-.49-.7-.32-.85-.7-1.34-1.13l.2.35c-.971-.34-.57-.42-1.361-.67l.21-.27c-.31-.03-.83-.53-.97-.81l-.34.01c-.41-.501-.63-.871-.61-1.161l-.111.2c-.13-.21-1.52-1.901-.8-1.511-.13-.12-.31-.2-.5-.55l.14-.17c-.35-.44-.64-1.02-.62-1.2.2.24.32.3.45.33-.88-2.172-.93-.12-1.601-2.202l.15-.02c-.1-.16-.18-.34-.26-.51l.06-.6c-.63-.74-.18-3.102-.09-4.402.07-.54.53-1.1.88-1.981l-.21-.04c.4-.71 2.341-2.872 3.241-2.761.43-.55-.09 0-.18-.14.96-.991 1.26-.7 1.901-.88.7-.401-.6.16-.27-.151 1.2-.3.85-.7 2.421-.85.16.1-.39.14-.52.26 1-.49 3.151-.37 4.562.27 1.63.77 3.461 3.011 3.531 5.132l.08.02c-.04.85.13 1.821-.17 2.711l.2-.42M9.54 13.236l-.05.28c.26.35.47.73.8 1.01-.24-.47-.42-.66-.75-1.3m.62-.02c-.14-.15-.22-.34-.31-.52.08.32.26.6.43.88l-.12-.36m10.945-2.382l-.07.15c-.1.76-.34 1.511-.69 2.212.4-.73.65-1.541.75-2.362M12.45.12c.27-.1.66-.05.95-.12-.37.03-.74.05-1.1.1l.15.02M3.006 5.142c.07.57-.43.8.11.42.3-.66-.11-.18-.1-.42m-.64 2.661c.12-.39.15-.62.2-.84-.35.44-.17.53-.2.83" }) + ] + } + ); +}); + +export { SiDebian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.cjs new file mode 100644 index 000000000..2f4db6b47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#264E70"; +const SiDebridlink = React__namespace.forwardRef(function SiDebridlink2({ title = "Debrid-Link", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.225 5.549 0 5.778v2.484l.253.25h2.912c3.16 0 3.252.003 3.75.146 1.053.3 1.658 1.022 1.893 2.256.052.27.059.395.06 1.034 0 .635-.008.766-.058 1.044-.256 1.401-.98 2.149-2.308 2.382-.252.045-.446.05-2.14.05H2.497l-.013-2.335-.014-2.335-.222-.207H.227L0 10.769v7.379l.253.249h2.774c1.526-.001 2.96-.013 3.184-.027 1.906-.117 3.257-.803 4.114-2.09.512-.77.81-1.654.98-2.905.06-.456.07-2.266.012-2.736-.141-1.158-.44-2.1-.9-2.84-.67-1.077-1.743-1.81-3.056-2.087-.708-.15-.514-.142-3.951-.153Zm12.614.002-.233.232.01 4.94c.008 4.933.008 4.938.065 5.229.086.439.155.66.298.96.394.828.996 1.27 2.008 1.475.206.042.581.047 4.491.055l4.267.01L24 18.2v-2.489l-.24-.236-3.878-.013-3.878-.013-.152-.062a1.03 1.03 0 0 1-.601-.605c-.133-.35-.13-.258-.131-4.775l-.001-4.226-.23-.23h-1.026z" }) + ] + } + ); +}); + +exports.default = SiDebridlink; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.d.ts new file mode 100644 index 000000000..f08c9da71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#264E70"; +declare const SiDebridlink: IconType; +export { SiDebridlink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.mjs new file mode 100644 index 000000000..52e5c4f95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDebridlink.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#264E70"; +const SiDebridlink = React.forwardRef(function SiDebridlink2({ title = "Debrid-Link", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.225 5.549 0 5.778v2.484l.253.25h2.912c3.16 0 3.252.003 3.75.146 1.053.3 1.658 1.022 1.893 2.256.052.27.059.395.06 1.034 0 .635-.008.766-.058 1.044-.256 1.401-.98 2.149-2.308 2.382-.252.045-.446.05-2.14.05H2.497l-.013-2.335-.014-2.335-.222-.207H.227L0 10.769v7.379l.253.249h2.774c1.526-.001 2.96-.013 3.184-.027 1.906-.117 3.257-.803 4.114-2.09.512-.77.81-1.654.98-2.905.06-.456.07-2.266.012-2.736-.141-1.158-.44-2.1-.9-2.84-.67-1.077-1.743-1.81-3.056-2.087-.708-.15-.514-.142-3.951-.153Zm12.614.002-.233.232.01 4.94c.008 4.933.008 4.938.065 5.229.086.439.155.66.298.96.394.828.996 1.27 2.008 1.475.206.042.581.047 4.491.055l4.267.01L24 18.2v-2.489l-.24-.236-3.878-.013-3.878-.013-.152-.062a1.03 1.03 0 0 1-.601-.605c-.133-.35-.13-.258-.131-4.775l-.001-4.226-.23-.23h-1.026z" }) + ] + } + ); +}); + +export { SiDebridlink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.cjs new file mode 100644 index 000000000..22f771908 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0082"; +const SiDecapcms = React__namespace.forwardRef(function SiDecapcms2({ title = "Decap CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.947 13.177c0 3.263-2 5.649-4.736 5.649h-2.773v-5.65H6.282v10.387h7.93c5.403 0 9.788-4.668 9.788-10.386h-5.052ZM7.894.476 0 1.212l.948 10.352 5.157-.456-.526-5.615 2.737-.245c2.737-.246 4.91 1.93 5.227 5.193l5.052-.458c-.49-5.752-5.297-9.998-10.7-9.507Z" }) + ] + } + ); +}); + +exports.default = SiDecapcms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.d.ts new file mode 100644 index 000000000..d83104f0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0082"; +declare const SiDecapcms: IconType; +export { SiDecapcms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.mjs new file mode 100644 index 000000000..fc2d1e087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDecapcms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0082"; +const SiDecapcms = React.forwardRef(function SiDecapcms2({ title = "Decap CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.947 13.177c0 3.263-2 5.649-4.736 5.649h-2.773v-5.65H6.282v10.387h7.93c5.403 0 9.788-4.668 9.788-10.386h-5.052ZM7.894.476 0 1.212l.948 10.352 5.157-.456-.526-5.615 2.737-.245c2.737-.246 4.91 1.93 5.227 5.193l5.052-.458c-.49-5.752-5.297-9.998-10.7-9.507Z" }) + ] + } + ); +}); + +export { SiDecapcms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.cjs new file mode 100644 index 000000000..c6ad1ed98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF2D55"; +const SiDecentraland = React__namespace.forwardRef(function SiDecentraland2({ title = "Decentraland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.9246 18.9776h3.1342l-3.1342-3.7778Zm-8.507-9.4221v6.6221h5.5072ZM12.0442 0C5.4177 0 0 5.3333 0 11.9555c0 1.4666.2687 2.8888.7612 4.1777l4.6565-5.5555L8.104 7.3333l6.537 7.8221 1.8805-2.2666 4.9252 5.8666h.403c1.388-1.9555 2.1491-4.311 2.1491-6.8444C24.0885 5.3333 18.6708 0 12.0442 0ZM8.0593 6.2666c-.9402 0-1.6566-.7555-1.6566-1.6444 0-.8889.7612-1.6444 1.6566-1.6444.9403 0 1.6567.7555 1.6567 1.6444 0 .8889-.7164 1.6444-1.6567 1.6444zm8.731 5.3777c-1.8358 0-3.3133-1.4666-3.3133-3.2888 0-1.8222 1.4775-3.2889 3.3133-3.2889 1.8357 0 3.3133 1.4667 3.3133 3.2889.0447 1.8222-1.4776 3.2888-3.3133 3.2888zm-3.985 5.7334H1.1642c.2686.5333.582 1.0222.8955 1.511h9.4473ZM4.4776 21.422h14.9993c.4925-.4 1.0298-.8889 1.3432-1.2444H3.1343c.4477.4444.8954.8889 1.3432 1.2444zm7.5668 2.5777c1.97 0 3.8506-.4444 5.5072-1.2889H6.5371C8.1937 23.5554 10.0295 24 12.0443 24z" }) + ] + } + ); +}); + +exports.default = SiDecentraland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.d.ts new file mode 100644 index 000000000..580a61959 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF2D55"; +declare const SiDecentraland: IconType; +export { SiDecentraland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.mjs new file mode 100644 index 000000000..f6ccacaec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDecentraland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF2D55"; +const SiDecentraland = React.forwardRef(function SiDecentraland2({ title = "Decentraland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.9246 18.9776h3.1342l-3.1342-3.7778Zm-8.507-9.4221v6.6221h5.5072ZM12.0442 0C5.4177 0 0 5.3333 0 11.9555c0 1.4666.2687 2.8888.7612 4.1777l4.6565-5.5555L8.104 7.3333l6.537 7.8221 1.8805-2.2666 4.9252 5.8666h.403c1.388-1.9555 2.1491-4.311 2.1491-6.8444C24.0885 5.3333 18.6708 0 12.0442 0ZM8.0593 6.2666c-.9402 0-1.6566-.7555-1.6566-1.6444 0-.8889.7612-1.6444 1.6566-1.6444.9403 0 1.6567.7555 1.6567 1.6444 0 .8889-.7164 1.6444-1.6567 1.6444zm8.731 5.3777c-1.8358 0-3.3133-1.4666-3.3133-3.2888 0-1.8222 1.4775-3.2889 3.3133-3.2889 1.8357 0 3.3133 1.4667 3.3133 3.2889.0447 1.8222-1.4776 3.2888-3.3133 3.2888zm-3.985 5.7334H1.1642c.2686.5333.582 1.0222.8955 1.511h9.4473ZM4.4776 21.422h14.9993c.4925-.4 1.0298-.8889 1.3432-1.2444H3.1343c.4477.4444.8954.8889 1.3432 1.2444zm7.5668 2.5777c1.97 0 3.8506-.4444 5.5072-1.2889H6.5371C8.1937 23.5554 10.0295 24 12.0443 24z" }) + ] + } + ); +}); + +export { SiDecentraland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.cjs new file mode 100644 index 000000000..51b2b944c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#432975"; +const SiDedge = React__namespace.forwardRef(function SiDedge2({ title = "D-EDGE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.986 0v8.338C16.09 2.93 7.61 2.8 3.74 8.733-.523 15.27 4.191 23.99 11.996 24h.001c5.447-.003 9.872-4.43 9.87-9.877V0Zm-7.99 6.14a8.004 8.004 0 0 1 7.99 7.988 7.986 7.986 0 0 1-4.93 7.381 7.986 7.986 0 0 1-8.707-1.73 7.985 7.985 0 0 1-1.733-8.707 7.986 7.986 0 0 1 7.38-4.932Z" }) + ] + } + ); +}); + +exports.default = SiDedge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.d.ts new file mode 100644 index 000000000..eabcb9943 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#432975"; +declare const SiDedge: IconType; +export { SiDedge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.mjs new file mode 100644 index 000000000..2665c39c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDedge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#432975"; +const SiDedge = React.forwardRef(function SiDedge2({ title = "D-EDGE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.986 0v8.338C16.09 2.93 7.61 2.8 3.74 8.733-.523 15.27 4.191 23.99 11.996 24h.001c5.447-.003 9.872-4.43 9.87-9.877V0Zm-7.99 6.14a8.004 8.004 0 0 1 7.99 7.988 7.986 7.986 0 0 1-4.93 7.381 7.986 7.986 0 0 1-8.707-1.73 7.985 7.985 0 0 1-1.733-8.707 7.986 7.986 0 0 1 7.38-4.932Z" }) + ] + } + ); +}); + +export { SiDedge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.cjs new file mode 100644 index 000000000..c78eba48f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#068584"; +const SiDeepcool = React__namespace.forwardRef(function SiDeepcool2({ title = "DeepCool", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 12v3.046H3.046V6h6V0H12v9.046H6.092V12H12Zm8.954 3.046V18h-5.908v6H12v-8.954h8.954Z" }) + ] + } + ); +}); + +exports.default = SiDeepcool; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.d.ts new file mode 100644 index 000000000..0991d6889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#068584"; +declare const SiDeepcool: IconType; +export { SiDeepcool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.mjs new file mode 100644 index 000000000..05ba808dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepcool.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#068584"; +const SiDeepcool = React.forwardRef(function SiDeepcool2({ title = "DeepCool", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 12v3.046H3.046V6h6V0H12v9.046H6.092V12H12Zm8.954 3.046V18h-5.908v6H12v-8.954h8.954Z" }) + ] + } + ); +}); + +export { SiDeepcool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.cjs new file mode 100644 index 000000000..e32d5ef0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13EF93"; +const SiDeepgram = React__namespace.forwardRef(function SiDeepgram2({ title = "Deepgram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.203 24H1.517a.364.364 0 0 1-.258-.62l6.239-6.275a.366.366 0 0 1 .259-.108h3.52c2.723 0 5.025-2.127 5.107-4.845a5.004 5.004 0 0 0-4.999-5.148H7.613v4.646c0 .2-.164.364-.365.364H.968a.365.365 0 0 1-.363-.364V.364C.605.164.768 0 .969 0h10.416c6.684 0 12.111 5.485 12.01 12.187C23.293 18.77 17.794 24 11.202 24z" }) + ] + } + ); +}); + +exports.default = SiDeepgram; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.d.ts new file mode 100644 index 000000000..01105e5eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13EF93"; +declare const SiDeepgram: IconType; +export { SiDeepgram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.mjs new file mode 100644 index 000000000..b852b703b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepgram.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13EF93"; +const SiDeepgram = React.forwardRef(function SiDeepgram2({ title = "Deepgram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.203 24H1.517a.364.364 0 0 1-.258-.62l6.239-6.275a.366.366 0 0 1 .259-.108h3.52c2.723 0 5.025-2.127 5.107-4.845a5.004 5.004 0 0 0-4.999-5.148H7.613v4.646c0 .2-.164.364-.365.364H.968a.365.365 0 0 1-.363-.364V.364C.605.164.768 0 .969 0h10.416c6.684 0 12.111 5.485 12.01 12.187C23.293 18.77 17.794 24 11.202 24z" }) + ] + } + ); +}); + +export { SiDeepgram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.cjs new file mode 100644 index 000000000..33a8dea85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007CFF"; +const SiDeepin = React__namespace.forwardRef(function SiDeepin2({ title = "deepin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.104.696c-1.724-.63-3.49-.8-5.205-.64-1.988.157-2.958.772-2.9.661-3.251 1.16-6 3.657-7.272 7.157-2.266 6.234.944 13.128 7.168 15.398 6.228 2.27 13.111-.945 15.378-7.179C25.54 9.86 22.33 2.966 16.104.696zM8.305 22.145a10.767 10.767 0 0 1-1.867-.904c2.9.223 6.686-.445 9.239-2.834 0 0 4.866-3.888 1.345-10.269 0 0 .568 2.572-.156 4.687 0 0-.69 2.877-3.757 3.712-4.517 1.231-9.664-1.93-11.816-3.463-.162-1.574-.018-3.2.56-4.788.855-2.352 2.463-4.188 4.427-5.42-.49 3.436-.102 6.6.456 7.925.749 1.777 2.05 3.85 4.59 4.115 2.54.267 3.94-2.11 3.94-2.11 1.304-1.98 1.508-4.823 1.488-4.892-.02-.07-.347-.257-.347-.257-.877 3.549-2.323 4.734-2.323 4.734-2.28 2.201-3.895.675-3.895.675-1.736-1.865-.52-4.895-.52-4.895.68-2.064 2.66-5.084 4.905-6.62.374.092.75.15 1.12.284a10.712 10.712 0 0 1 3.554 2.16c-1.641.599-4.291 1.865-4.291 1.865-4.201 1.77-4.485 4.446-4.485 4.446-.435 2.758 1.754 1.59 1.754 1.59 2.252-1.097 3.359-4.516 3.359-4.516-.703-.134-1.257.08-1.257.08-.899 2.22-2.733 3.132-2.733 3.132-.722.382-.89-.293-.89-.293-.122-.506.522-.592.522-.592 1-.389 1.639-1.439 1.784-1.868.144-.43.412-.464.412-.464a12.998 12.998 0 0 1 2.619-.535c1.7-.209 4.303.602 4.303.602.584.235 1.144.41 1.641.551.954 2.384 1.105 5.098.16 7.7-2.039 5.61-8.236 8.504-13.841 6.462z" }) + ] + } + ); +}); + +exports.default = SiDeepin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.d.ts new file mode 100644 index 000000000..2dda8b332 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007CFF"; +declare const SiDeepin: IconType; +export { SiDeepin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.mjs new file mode 100644 index 000000000..fb73c0ecb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007CFF"; +const SiDeepin = React.forwardRef(function SiDeepin2({ title = "deepin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.104.696c-1.724-.63-3.49-.8-5.205-.64-1.988.157-2.958.772-2.9.661-3.251 1.16-6 3.657-7.272 7.157-2.266 6.234.944 13.128 7.168 15.398 6.228 2.27 13.111-.945 15.378-7.179C25.54 9.86 22.33 2.966 16.104.696zM8.305 22.145a10.767 10.767 0 0 1-1.867-.904c2.9.223 6.686-.445 9.239-2.834 0 0 4.866-3.888 1.345-10.269 0 0 .568 2.572-.156 4.687 0 0-.69 2.877-3.757 3.712-4.517 1.231-9.664-1.93-11.816-3.463-.162-1.574-.018-3.2.56-4.788.855-2.352 2.463-4.188 4.427-5.42-.49 3.436-.102 6.6.456 7.925.749 1.777 2.05 3.85 4.59 4.115 2.54.267 3.94-2.11 3.94-2.11 1.304-1.98 1.508-4.823 1.488-4.892-.02-.07-.347-.257-.347-.257-.877 3.549-2.323 4.734-2.323 4.734-2.28 2.201-3.895.675-3.895.675-1.736-1.865-.52-4.895-.52-4.895.68-2.064 2.66-5.084 4.905-6.62.374.092.75.15 1.12.284a10.712 10.712 0 0 1 3.554 2.16c-1.641.599-4.291 1.865-4.291 1.865-4.201 1.77-4.485 4.446-4.485 4.446-.435 2.758 1.754 1.59 1.754 1.59 2.252-1.097 3.359-4.516 3.359-4.516-.703-.134-1.257.08-1.257.08-.899 2.22-2.733 3.132-2.733 3.132-.722.382-.89-.293-.89-.293-.122-.506.522-.592.522-.592 1-.389 1.639-1.439 1.784-1.868.144-.43.412-.464.412-.464a12.998 12.998 0 0 1 2.619-.535c1.7-.209 4.303.602 4.303.602.584.235 1.144.41 1.641.551.954 2.384 1.105 5.098.16 7.7-2.039 5.61-8.236 8.504-13.841 6.462z" }) + ] + } + ); +}); + +export { SiDeepin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.cjs new file mode 100644 index 000000000..14beffecc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0F2B46"; +const SiDeepl = React__namespace.forwardRef(function SiDeepl2({ title = "DeepL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.907 4.93953 12.68543.18573a1.3577 1.3577 0 0 0-1.3709 0L3.09298 4.9565a1.3766 1.3766 0 0 0-.68639 1.18233v9.52646a1.3766 1.3766 0 0 0 .68639 1.19363l8.22157 4.75946.06223.03583 4.04856 2.3458-.01131-2.06106.0075-1.1446.0038.01885v-.38467c0-.23006.1188-.43371.29605-.56005l.264-.15086.12633-.06977h-.0075l4.80283-2.7795a1.3803 1.3803 0 0 0 .68639-1.19551V6.13505a1.3803 1.3803 0 0 0-.68642-1.19552m-9.85269 9.68863a1.4275 1.4275 0 0 1-.39976 1.3841 1.4086 1.4086 0 0 1-1.97054 0 1.4199 1.4199 0 0 1 0-2.06294 1.4086 1.4086 0 0 1 2.0422.07543l3.32822-1.91585.6864.38656zm5.77019-2.41367a1.4086 1.4086 0 0 1-1.97054 0 1.4256 1.4256 0 0 1-.3696-1.47837l-.0132.0075-3.7525-2.1723-.05657.05656a1.4086 1.4086 0 0 1-1.97053 0 1.4199 1.4199 0 0 1 0-2.06293 1.4086 1.4086 0 0 1 1.97242 0c.3941.37713.52422.91832.39033 1.40672l3.7808 2.20059.01886-.01886a1.4086 1.4086 0 0 1 1.97242 0 1.42746 1.42746 0 0 1 0 2.06105z" }) + ] + } + ); +}); + +exports.default = SiDeepl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.d.ts new file mode 100644 index 000000000..a0a1f00af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0F2B46"; +declare const SiDeepl: IconType; +export { SiDeepl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.mjs new file mode 100644 index 000000000..b2c12ecf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0F2B46"; +const SiDeepl = React.forwardRef(function SiDeepl2({ title = "DeepL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.907 4.93953 12.68543.18573a1.3577 1.3577 0 0 0-1.3709 0L3.09298 4.9565a1.3766 1.3766 0 0 0-.68639 1.18233v9.52646a1.3766 1.3766 0 0 0 .68639 1.19363l8.22157 4.75946.06223.03583 4.04856 2.3458-.01131-2.06106.0075-1.1446.0038.01885v-.38467c0-.23006.1188-.43371.29605-.56005l.264-.15086.12633-.06977h-.0075l4.80283-2.7795a1.3803 1.3803 0 0 0 .68639-1.19551V6.13505a1.3803 1.3803 0 0 0-.68642-1.19552m-9.85269 9.68863a1.4275 1.4275 0 0 1-.39976 1.3841 1.4086 1.4086 0 0 1-1.97054 0 1.4199 1.4199 0 0 1 0-2.06294 1.4086 1.4086 0 0 1 2.0422.07543l3.32822-1.91585.6864.38656zm5.77019-2.41367a1.4086 1.4086 0 0 1-1.97054 0 1.4256 1.4256 0 0 1-.3696-1.47837l-.0132.0075-3.7525-2.1723-.05657.05656a1.4086 1.4086 0 0 1-1.97053 0 1.4199 1.4199 0 0 1 0-2.06293 1.4086 1.4086 0 0 1 1.97242 0c.3941.37713.52422.91832.39033 1.40672l3.7808 2.20059.01886-.01886a1.4086 1.4086 0 0 1 1.97242 0 1.42746 1.42746 0 0 1 0 2.06105z" }) + ] + } + ); +}); + +export { SiDeepl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.cjs new file mode 100644 index 000000000..7087ecd33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiDeepmind = React__namespace.forwardRef(function SiDeepmind2({ title = "DeepMind", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m5.99,1.62a8.54,8.54 0 0 0 -2.54,6.83c0.35,4.4 4.51,7.99 8.28,7.99c3.5,0 4.88,-3.06 4.54,-5.14a4.32,4.32 0 0 0 -0.95,-2.07c0.63,0.34 1.24,0.77 1.81,1.3c1.52,1.41 2.44,3.23 2.58,5.1c0.33,4.13 -2.73,8.37 -7.85,8.37c-1.69,0 -3.48,-0.43 -4.98,-1.14c-4.06,-1.92 -6.88,-6.06 -6.88,-10.86c0,-4.43 2.41,-8.3 5.99,-10.38zm6.15,-1.62c1.69,0 3.48,0.43 4.98,1.14a12,12 0 0 1 6.88,10.86c0,4.43 -2.41,8.3 -5.99,10.38a8.54,8.54 0 0 0 2.54,-6.83c-0.35,-4.4 -4.51,-7.99 -8.28,-7.99c-3.5,0 -4.88,3.06 -4.54,5.14a4.3,4.3 0 0 0 0.96,2.07a8.72,8.72 0 0 1 -1.81,-1.3c-1.52,-1.41 -2.44,-3.23 -2.59,-5.1c-0.33,-4.13 2.73,-8.37 7.85,-8.37z" }) + ] + } + ); +}); + +exports.default = SiDeepmind; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.d.ts new file mode 100644 index 000000000..cdfde9c59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiDeepmind: IconType; +export { SiDeepmind as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.mjs new file mode 100644 index 000000000..73577934f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepmind.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiDeepmind = React.forwardRef(function SiDeepmind2({ title = "DeepMind", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m5.99,1.62a8.54,8.54 0 0 0 -2.54,6.83c0.35,4.4 4.51,7.99 8.28,7.99c3.5,0 4.88,-3.06 4.54,-5.14a4.32,4.32 0 0 0 -0.95,-2.07c0.63,0.34 1.24,0.77 1.81,1.3c1.52,1.41 2.44,3.23 2.58,5.1c0.33,4.13 -2.73,8.37 -7.85,8.37c-1.69,0 -3.48,-0.43 -4.98,-1.14c-4.06,-1.92 -6.88,-6.06 -6.88,-10.86c0,-4.43 2.41,-8.3 5.99,-10.38zm6.15,-1.62c1.69,0 3.48,0.43 4.98,1.14a12,12 0 0 1 6.88,10.86c0,4.43 -2.41,8.3 -5.99,10.38a8.54,8.54 0 0 0 2.54,-6.83c-0.35,-4.4 -4.51,-7.99 -8.28,-7.99c-3.5,0 -4.88,3.06 -4.54,5.14a4.3,4.3 0 0 0 0.96,2.07a8.72,8.72 0 0 1 -1.81,-1.3c-1.52,-1.41 -2.44,-3.23 -2.59,-5.1c-0.33,-4.13 2.73,-8.37 7.85,-8.37z" }) + ] + } + ); +}); + +export { SiDeepmind as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.cjs new file mode 100644 index 000000000..17e47e7df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3793EF"; +const SiDeepnote = React__namespace.forwardRef(function SiDeepnote2({ title = "Deepnote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.22 11.506l.111.018c-.038-.006-.075-.011-.111-.018zm4.475 8.073c.636-2.816-2.172-4.8-6.955-4.814L.713 24h9.586c.132-.025.256-.056.384-.085 2.258-1.057 3.598-2.501 4.012-4.336zM10.299 24h.203l.021-.01c-.075.003-.148.008-.224.01zM24 11.319C24 3.15 18.711-.597 8.134.077L0 11.319h7.568c3.323 0 8.457.719 8.457 6.153 0 3.622-1.909 5.798-5.727 6.528.099-.003.194-.009.291-.013l-.011.001-.076.012h.912l.247-.077C19.885 23.27 24 19.07 24 11.319z" }) + ] + } + ); +}); + +exports.default = SiDeepnote; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.d.ts new file mode 100644 index 000000000..d0ce06a59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3793EF"; +declare const SiDeepnote: IconType; +export { SiDeepnote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.mjs new file mode 100644 index 000000000..fe324162a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeepnote.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3793EF"; +const SiDeepnote = React.forwardRef(function SiDeepnote2({ title = "Deepnote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.22 11.506l.111.018c-.038-.006-.075-.011-.111-.018zm4.475 8.073c.636-2.816-2.172-4.8-6.955-4.814L.713 24h9.586c.132-.025.256-.056.384-.085 2.258-1.057 3.598-2.501 4.012-4.336zM10.299 24h.203l.021-.01c-.075.003-.148.008-.224.01zM24 11.319C24 3.15 18.711-.597 8.134.077L0 11.319h7.568c3.323 0 8.457.719 8.457 6.153 0 3.622-1.909 5.798-5.727 6.528.099-.003.194-.009.291-.013l-.011.001-.076.012h.912l.247-.077C19.885 23.27 24 19.07 24 11.319z" }) + ] + } + ); +}); + +export { SiDeepnote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.cjs new file mode 100644 index 000000000..1281e8856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A238FF"; +const SiDeezer = React__namespace.forwardRef(function SiDeezer2({ title = "Deezer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.693 10.024c.381 0 .693-1.256.693-2.807 0-1.55-.312-2.807-.693-2.807C.312 4.41 0 5.666 0 7.217s.312 2.808.693 2.808ZM21.038 1.56c-.364 0-.684.805-.91 2.096C19.765 1.446 19.184 0 18.526 0c-.78 0-1.464 2.036-1.784 5-.312-2.158-.788-3.536-1.325-3.536-.745 0-1.386 2.704-1.62 6.472-.442-1.932-1.083-3.145-1.793-3.145s-1.35 1.213-1.793 3.145c-.242-3.76-.874-6.463-1.628-6.463-.537 0-1.013 1.378-1.325 3.535C6.938 2.036 6.262 0 5.474 0c-.658 0-1.247 1.447-1.602 3.665-.217-1.291-.546-2.105-.91-2.105-.675 0-1.221 2.807-1.221 6.272 0 3.466.546 6.273 1.221 6.273.277 0 .537-.476.736-1.273.32 2.928.996 4.938 1.776 4.938.606 0 1.143-1.204 1.507-3.11.251 3.622.875 6.195 1.602 6.195.46 0 .875-1.023 1.187-2.677C10.142 21.6 11 24 12.004 24c1.005 0 1.863-2.4 2.235-5.822.312 1.654.727 2.677 1.186 2.677.728 0 1.352-2.573 1.603-6.195.364 1.906.9 3.11 1.507 3.11.78 0 1.455-2.01 1.775-4.938.208.797.46 1.273.737 1.273.675 0 1.22-2.807 1.22-6.273-.008-3.457-.553-6.272-1.23-6.272ZM23.307 10.024c.381 0 .693-1.256.693-2.807 0-1.55-.312-2.807-.693-2.807-.381 0-.693 1.256-.693 2.807s.312 2.808.693 2.808Z" }) + ] + } + ); +}); + +exports.default = SiDeezer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.d.ts new file mode 100644 index 000000000..dadf67cd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A238FF"; +declare const SiDeezer: IconType; +export { SiDeezer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.mjs new file mode 100644 index 000000000..44c698273 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeezer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A238FF"; +const SiDeezer = React.forwardRef(function SiDeezer2({ title = "Deezer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.693 10.024c.381 0 .693-1.256.693-2.807 0-1.55-.312-2.807-.693-2.807C.312 4.41 0 5.666 0 7.217s.312 2.808.693 2.808ZM21.038 1.56c-.364 0-.684.805-.91 2.096C19.765 1.446 19.184 0 18.526 0c-.78 0-1.464 2.036-1.784 5-.312-2.158-.788-3.536-1.325-3.536-.745 0-1.386 2.704-1.62 6.472-.442-1.932-1.083-3.145-1.793-3.145s-1.35 1.213-1.793 3.145c-.242-3.76-.874-6.463-1.628-6.463-.537 0-1.013 1.378-1.325 3.535C6.938 2.036 6.262 0 5.474 0c-.658 0-1.247 1.447-1.602 3.665-.217-1.291-.546-2.105-.91-2.105-.675 0-1.221 2.807-1.221 6.272 0 3.466.546 6.273 1.221 6.273.277 0 .537-.476.736-1.273.32 2.928.996 4.938 1.776 4.938.606 0 1.143-1.204 1.507-3.11.251 3.622.875 6.195 1.602 6.195.46 0 .875-1.023 1.187-2.677C10.142 21.6 11 24 12.004 24c1.005 0 1.863-2.4 2.235-5.822.312 1.654.727 2.677 1.186 2.677.728 0 1.352-2.573 1.603-6.195.364 1.906.9 3.11 1.507 3.11.78 0 1.455-2.01 1.775-4.938.208.797.46 1.273.737 1.273.675 0 1.22-2.807 1.22-6.273-.008-3.457-.553-6.272-1.23-6.272ZM23.307 10.024c.381 0 .693-1.256.693-2.807 0-1.55-.312-2.807-.693-2.807-.381 0-.693 1.256-.693 2.807s.312 2.808.693 2.808Z" }) + ] + } + ); +}); + +export { SiDeezer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.cjs new file mode 100644 index 000000000..907373821 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CCBC"; +const SiDeliveroo = React__namespace.forwardRef(function SiDeliveroo2({ title = "Deliveroo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.861 0l-1.127 10.584L13.81 1.66 7.777 2.926l1.924 8.922-8.695 1.822 1.535 7.127L17.832 24l3.498-7.744L22.994.636 16.861 0zM11.39 13.61a.755.755 0 01.322.066c.208.093.56.29.63.592.103.434.004.799-.312 1.084v.002c-.315.284-.732.258-1.174.113-.441-.145-.637-.672-.47-1.309.124-.473.71-.544 1.004-.549zm4.142.548c.447-.012.832.186 1.05.543.217.357.107.75-.122 1.143h-.002c-.229.392-.83.445-1.422.16-.399-.193-.397-.684-.353-.983a.922.922 0 01.193-.447c.142-.177.381-.408.656-.416Z" }) + ] + } + ); +}); + +exports.default = SiDeliveroo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.d.ts new file mode 100644 index 000000000..cf1f3b276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CCBC"; +declare const SiDeliveroo: IconType; +export { SiDeliveroo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.mjs new file mode 100644 index 000000000..b8dc9d9a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeliveroo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CCBC"; +const SiDeliveroo = React.forwardRef(function SiDeliveroo2({ title = "Deliveroo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.861 0l-1.127 10.584L13.81 1.66 7.777 2.926l1.924 8.922-8.695 1.822 1.535 7.127L17.832 24l3.498-7.744L22.994.636 16.861 0zM11.39 13.61a.755.755 0 01.322.066c.208.093.56.29.63.592.103.434.004.799-.312 1.084v.002c-.315.284-.732.258-1.174.113-.441-.145-.637-.672-.47-1.309.124-.473.71-.544 1.004-.549zm4.142.548c.447-.012.832.186 1.05.543.217.357.107.75-.122 1.143h-.002c-.229.392-.83.445-1.422.16-.399-.193-.397-.684-.353-.983a.922.922 0 01.193-.447c.142-.177.381-.408.656-.416Z" }) + ] + } + ); +}); + +export { SiDeliveroo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDell.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDell.cjs new file mode 100644 index 000000000..77fcec150 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDell.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007DB8"; +const SiDell = React__namespace.forwardRef(function SiDell2({ title = "Dell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.963 14.6V9.324h1.222v4.204h2.14v1.07h-3.362zm-9.784-3.288l2.98-2.292c.281.228.56.458.841.687l-2.827 2.14.611.535 2.827-2.216c.281.228.56.458.841.688a295.83 295.83 0 0 1-2.827 2.216l.61.536 2.83-2.295-.001-1.986h1.223v4.204h2.216v1.07h-3.362v-1.987c-.995.763-1.987 1.529-2.981 2.292l-2.981-2.292c-.144.729-.653 1.36-1.312 1.694-.285.147-.597.24-.915.276-.183.022-.367.017-.551.017H3.516V9.325H5.69a2.544 2.544 0 0 1 1.563.557c.454.36.778.872.927 1.43m-3.516-.917v3.21l.953-.001a1.377 1.377 0 0 0 1.036-.523 1.74 1.74 0 0 0 .182-1.889 1.494 1.494 0 0 0-.976-.766c-.166-.04-.338-.03-.507-.032h-.688zM11.82 0h.337a11.94 11.94 0 0 1 5.405 1.373 12.101 12.101 0 0 1 4.126 3.557A11.93 11.93 0 0 1 24 11.82v.36a11.963 11.963 0 0 1-3.236 8.033A11.967 11.967 0 0 1 12.182 24h-.361a11.993 11.993 0 0 1-4.145-.806 12.04 12.04 0 0 1-4.274-2.836A12.057 12.057 0 0 1 .576 15.67 12.006 12.006 0 0 1 0 12.181v-.361a11.924 11.924 0 0 1 1.992-6.396 12.211 12.211 0 0 1 4.71-4.172A11.875 11.875 0 0 1 11.82 0m-.153 1.23a10.724 10.724 0 0 0-6.43 2.375 10.78 10.78 0 0 0-3.319 4.573 10.858 10.858 0 0 0 .193 8.12 10.788 10.788 0 0 0 3.546 4.421 10.698 10.698 0 0 0 4.786 1.946c1.456.209 2.955.124 4.376-.26a10.756 10.756 0 0 0 5.075-3.062 10.742 10.742 0 0 0 2.686-5.28 10.915 10.915 0 0 0-.122-4.682 10.77 10.77 0 0 0-7.098-7.626 10.78 10.78 0 0 0-3.693-.525z" }) + ] + } + ); +}); + +exports.default = SiDell; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDell.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDell.d.ts new file mode 100644 index 000000000..d0e63d8b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDell.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007DB8"; +declare const SiDell: IconType; +export { SiDell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDell.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDell.mjs new file mode 100644 index 000000000..44dc278af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDell.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007DB8"; +const SiDell = React.forwardRef(function SiDell2({ title = "Dell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.963 14.6V9.324h1.222v4.204h2.14v1.07h-3.362zm-9.784-3.288l2.98-2.292c.281.228.56.458.841.687l-2.827 2.14.611.535 2.827-2.216c.281.228.56.458.841.688a295.83 295.83 0 0 1-2.827 2.216l.61.536 2.83-2.295-.001-1.986h1.223v4.204h2.216v1.07h-3.362v-1.987c-.995.763-1.987 1.529-2.981 2.292l-2.981-2.292c-.144.729-.653 1.36-1.312 1.694-.285.147-.597.24-.915.276-.183.022-.367.017-.551.017H3.516V9.325H5.69a2.544 2.544 0 0 1 1.563.557c.454.36.778.872.927 1.43m-3.516-.917v3.21l.953-.001a1.377 1.377 0 0 0 1.036-.523 1.74 1.74 0 0 0 .182-1.889 1.494 1.494 0 0 0-.976-.766c-.166-.04-.338-.03-.507-.032h-.688zM11.82 0h.337a11.94 11.94 0 0 1 5.405 1.373 12.101 12.101 0 0 1 4.126 3.557A11.93 11.93 0 0 1 24 11.82v.36a11.963 11.963 0 0 1-3.236 8.033A11.967 11.967 0 0 1 12.182 24h-.361a11.993 11.993 0 0 1-4.145-.806 12.04 12.04 0 0 1-4.274-2.836A12.057 12.057 0 0 1 .576 15.67 12.006 12.006 0 0 1 0 12.181v-.361a11.924 11.924 0 0 1 1.992-6.396 12.211 12.211 0 0 1 4.71-4.172A11.875 11.875 0 0 1 11.82 0m-.153 1.23a10.724 10.724 0 0 0-6.43 2.375 10.78 10.78 0 0 0-3.319 4.573 10.858 10.858 0 0 0 .193 8.12 10.788 10.788 0 0 0 3.546 4.421 10.698 10.698 0 0 0 4.786 1.946c1.456.209 2.955.124 4.376-.26a10.756 10.756 0 0 0 5.075-3.062 10.742 10.742 0 0 0 2.686-5.28 10.915 10.915 0 0 0-.122-4.682 10.77 10.77 0 0 0-7.098-7.626 10.78 10.78 0 0 0-3.693-.525z" }) + ] + } + ); +}); + +export { SiDell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.cjs new file mode 100644 index 000000000..818e007c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#072240"; +const SiDelonghi = React__namespace.forwardRef(function SiDelonghi2({ title = "DeLonghi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.16 8.158H3.841A3.85 3.85 0 000 11.999a3.848 3.848 0 003.841 3.843H20.16A3.844 3.844 0 0024 11.999a3.846 3.846 0 00-3.84-3.841zm-.051 7.409H3.885A3.564 3.564 0 01.319 12a3.564 3.564 0 013.566-3.571h16.224A3.566 3.566 0 0123.68 12a3.564 3.564 0 01-3.571 3.567zm-3.84-3.864c.084 0 .142.013.177.043v1.034a.836.836 0 01-.177.043c-.062-.003-.107-.03-.133-.084a.671.671 0 01-.036-.252v-.544c0-.16.059-.24.169-.24zm-4.635.137v.829a.392.392 0 01-.036.195c-.026.035-.066.053-.119.053-.053 0-.097-.017-.124-.049-.023-.035-.036-.102-.036-.198V11.84c0-.147.053-.217.155-.217.107 0 .16.07.16.217zm-4.9-.062a.802.802 0 01.014.159h-.346c0-.062.005-.115.014-.164 0-.022.008-.044.013-.066.018-.058.067-.084.137-.084.08 0 .129.026.151.084.004.022.013.044.017.071zM4.24 11.02c.045.039.067.119.067.234v1.224c0 .115-.018.191-.054.226a.287.287 0 01-.177.062h-.12v-1.803h.08c.093 0 .16.018.204.057zm15.892-1.723H3.881a2.71 2.71 0 00-2.702 2.702 2.712 2.712 0 002.702 2.703h16.243a2.71 2.71 0 002.697-2.703c0-1.475-1.192-2.702-2.689-2.702zM5.676 10.574H7.55v.248H5.676v-.248zm-.39 1.288v.7c0 .15-.028.292-.085.42a.668.668 0 01-.302.325c-.142.084-.336.127-.58.127H2.84v-.562c.057-.023.093-.058.107-.103a.665.665 0 00.022-.185v-1.48a.488.488 0 00-.026-.181c-.013-.04-.049-.071-.102-.093v-.557h1.48c.222 0 .403.03.544.096.142.063.253.16.32.289.066.133.103.298.103.492v.712zm2.295.625H6.402v.209a.5.5 0 00.027.181c.023.044.067.072.137.072.071 0 .116-.023.133-.067a.469.469 0 00.031-.177v-.085h.851v.568c-.084.079-.226.15-.429.212a1.98 1.98 0 01-1.193 0 .597.597 0 01-.324-.27.934.934 0 01-.097-.456v-.895a.905.905 0 01.128-.417.581.581 0 01.329-.221c.146-.039.336-.062.571-.062.222 0 .399.018.537.057a.729.729 0 01.306.172c.07.076.115.159.137.254.013.066.027.137.031.217.005.039.005.084.005.127v.581zm2.644.947H7.922v-.562c.076-.045.111-.124.111-.239V11.059c0-.11-.036-.185-.111-.23v-.557h1.205v.557a.21.21 0 00-.088.107.575.575 0 00-.031.19.826.826 0 01.008.123v1.516h.124c.093-.009.155-.035.181-.089a.581.581 0 00.041-.252v-.522h.863v1.532zm2.274-1.165v.416a.909.909 0 01-.107.47.602.602 0 01-.319.258 1.58 1.58 0 01-.549.079c-.271-.005-.483-.031-.634-.084a.565.565 0 01-.332-.257c-.067-.119-.102-.279-.102-.487V11.853a.89.89 0 01.094-.434c.057-.116.164-.2.314-.258.151-.058.355-.084.611-.084.249 0 .448.026.594.071a.584.584 0 01.324.239c.071.115.107.274.107.479v.403zm2.499 1.165h-.922a1.142 1.142 0 01-.031-.225 2.403 2.403 0 01-.014-.235c-.004-.075-.004-.168-.004-.279v-.775a.195.195 0 00-.204-.204c-.04 0-.08.011-.11.023v.878c0 .088.004.153.013.195.013.039.04.075.088.106v.518h-1.076v-.518a.226.226 0 00.093-.096.414.414 0 00.017-.143v-.771a.59.59 0 00-.017-.172.242.242 0 00-.093-.102v-.528h.935v.151c.194-.137.389-.208.584-.208.182.005.319.044.412.119.094.076.155.16.181.253a.95.95 0 01.041.265v1.001c0 .053.009.098.018.137a.176.176 0 00.089.09v.52zm2.419-1.807a.187.187 0 00-.094.102.7.7 0 00-.017.164V13.487c0 .201-.027.368-.08.496a.597.597 0 01-.305.299c-.156.067-.373.101-.656.101a2.109 2.109 0 01-.492-.062 1.66 1.66 0 01-.47-.2v-.571h.797c0 .172.059.256.178.256.075-.003.12-.034.138-.088a.837.837 0 00.03-.234v-.169a.926.926 0 01-.527.159c-.235-.003-.408-.066-.518-.191-.106-.123-.164-.296-.164-.518v-.899c0-.244.048-.44.147-.581.094-.138.28-.209.545-.209.092 0 .19.013.288.045a.738.738 0 01.253.124v-.142h.949v.524zm2.503 1.807h-.917a4.698 4.698 0 01-.053-.553c.009-.066.009-.159.009-.274v-.643a.257.257 0 00-.062-.172.21.21 0 00-.155-.076.275.275 0 00-.097.023v.966c0 .111.031.186.097.213v.518H17.67v-.518a.225.225 0 00.093-.102.668.668 0 00.017-.187v-1.515c0-.195-.039-.307-.119-.324v-.517h.983v.947a.82.82 0 01.266-.128.863.863 0 01.27-.044.77.77 0 01.452.146c.124.094.19.253.19.483v.896a.431.431 0 01-.008.075.645.645 0 00.026.181c.009.032.04.062.08.085v.52zm.389-3.091a.526.526 0 01.328-.102c.084 0 .164.017.234.045a.36.36 0 01.173.124.294.294 0 01.067.19v.008a.317.317 0 01-.063.191.46.46 0 01-.172.124.675.675 0 01-.24.04.504.504 0 01-.323-.098.324.324 0 01-.004-.522zm.913 3.091h-1.081v-.518c.053-.035.084-.067.092-.106a.628.628 0 00.018-.183v-.743a.522.522 0 00-.018-.159.162.162 0 00-.092-.099v-.523h.974v1.604c0 .103.036.169.106.209v.518z" }) + ] + } + ); +}); + +exports.default = SiDelonghi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.d.ts new file mode 100644 index 000000000..316e249be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#072240"; +declare const SiDelonghi: IconType; +export { SiDelonghi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.mjs new file mode 100644 index 000000000..b8ae9b653 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelonghi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#072240"; +const SiDelonghi = React.forwardRef(function SiDelonghi2({ title = "DeLonghi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.16 8.158H3.841A3.85 3.85 0 000 11.999a3.848 3.848 0 003.841 3.843H20.16A3.844 3.844 0 0024 11.999a3.846 3.846 0 00-3.84-3.841zm-.051 7.409H3.885A3.564 3.564 0 01.319 12a3.564 3.564 0 013.566-3.571h16.224A3.566 3.566 0 0123.68 12a3.564 3.564 0 01-3.571 3.567zm-3.84-3.864c.084 0 .142.013.177.043v1.034a.836.836 0 01-.177.043c-.062-.003-.107-.03-.133-.084a.671.671 0 01-.036-.252v-.544c0-.16.059-.24.169-.24zm-4.635.137v.829a.392.392 0 01-.036.195c-.026.035-.066.053-.119.053-.053 0-.097-.017-.124-.049-.023-.035-.036-.102-.036-.198V11.84c0-.147.053-.217.155-.217.107 0 .16.07.16.217zm-4.9-.062a.802.802 0 01.014.159h-.346c0-.062.005-.115.014-.164 0-.022.008-.044.013-.066.018-.058.067-.084.137-.084.08 0 .129.026.151.084.004.022.013.044.017.071zM4.24 11.02c.045.039.067.119.067.234v1.224c0 .115-.018.191-.054.226a.287.287 0 01-.177.062h-.12v-1.803h.08c.093 0 .16.018.204.057zm15.892-1.723H3.881a2.71 2.71 0 00-2.702 2.702 2.712 2.712 0 002.702 2.703h16.243a2.71 2.71 0 002.697-2.703c0-1.475-1.192-2.702-2.689-2.702zM5.676 10.574H7.55v.248H5.676v-.248zm-.39 1.288v.7c0 .15-.028.292-.085.42a.668.668 0 01-.302.325c-.142.084-.336.127-.58.127H2.84v-.562c.057-.023.093-.058.107-.103a.665.665 0 00.022-.185v-1.48a.488.488 0 00-.026-.181c-.013-.04-.049-.071-.102-.093v-.557h1.48c.222 0 .403.03.544.096.142.063.253.16.32.289.066.133.103.298.103.492v.712zm2.295.625H6.402v.209a.5.5 0 00.027.181c.023.044.067.072.137.072.071 0 .116-.023.133-.067a.469.469 0 00.031-.177v-.085h.851v.568c-.084.079-.226.15-.429.212a1.98 1.98 0 01-1.193 0 .597.597 0 01-.324-.27.934.934 0 01-.097-.456v-.895a.905.905 0 01.128-.417.581.581 0 01.329-.221c.146-.039.336-.062.571-.062.222 0 .399.018.537.057a.729.729 0 01.306.172c.07.076.115.159.137.254.013.066.027.137.031.217.005.039.005.084.005.127v.581zm2.644.947H7.922v-.562c.076-.045.111-.124.111-.239V11.059c0-.11-.036-.185-.111-.23v-.557h1.205v.557a.21.21 0 00-.088.107.575.575 0 00-.031.19.826.826 0 01.008.123v1.516h.124c.093-.009.155-.035.181-.089a.581.581 0 00.041-.252v-.522h.863v1.532zm2.274-1.165v.416a.909.909 0 01-.107.47.602.602 0 01-.319.258 1.58 1.58 0 01-.549.079c-.271-.005-.483-.031-.634-.084a.565.565 0 01-.332-.257c-.067-.119-.102-.279-.102-.487V11.853a.89.89 0 01.094-.434c.057-.116.164-.2.314-.258.151-.058.355-.084.611-.084.249 0 .448.026.594.071a.584.584 0 01.324.239c.071.115.107.274.107.479v.403zm2.499 1.165h-.922a1.142 1.142 0 01-.031-.225 2.403 2.403 0 01-.014-.235c-.004-.075-.004-.168-.004-.279v-.775a.195.195 0 00-.204-.204c-.04 0-.08.011-.11.023v.878c0 .088.004.153.013.195.013.039.04.075.088.106v.518h-1.076v-.518a.226.226 0 00.093-.096.414.414 0 00.017-.143v-.771a.59.59 0 00-.017-.172.242.242 0 00-.093-.102v-.528h.935v.151c.194-.137.389-.208.584-.208.182.005.319.044.412.119.094.076.155.16.181.253a.95.95 0 01.041.265v1.001c0 .053.009.098.018.137a.176.176 0 00.089.09v.52zm2.419-1.807a.187.187 0 00-.094.102.7.7 0 00-.017.164V13.487c0 .201-.027.368-.08.496a.597.597 0 01-.305.299c-.156.067-.373.101-.656.101a2.109 2.109 0 01-.492-.062 1.66 1.66 0 01-.47-.2v-.571h.797c0 .172.059.256.178.256.075-.003.12-.034.138-.088a.837.837 0 00.03-.234v-.169a.926.926 0 01-.527.159c-.235-.003-.408-.066-.518-.191-.106-.123-.164-.296-.164-.518v-.899c0-.244.048-.44.147-.581.094-.138.28-.209.545-.209.092 0 .19.013.288.045a.738.738 0 01.253.124v-.142h.949v.524zm2.503 1.807h-.917a4.698 4.698 0 01-.053-.553c.009-.066.009-.159.009-.274v-.643a.257.257 0 00-.062-.172.21.21 0 00-.155-.076.275.275 0 00-.097.023v.966c0 .111.031.186.097.213v.518H17.67v-.518a.225.225 0 00.093-.102.668.668 0 00.017-.187v-1.515c0-.195-.039-.307-.119-.324v-.517h.983v.947a.82.82 0 01.266-.128.863.863 0 01.27-.044.77.77 0 01.452.146c.124.094.19.253.19.483v.896a.431.431 0 01-.008.075.645.645 0 00.026.181c.009.032.04.062.08.085v.52zm.389-3.091a.526.526 0 01.328-.102c.084 0 .164.017.234.045a.36.36 0 01.173.124.294.294 0 01.067.19v.008a.317.317 0 01-.063.191.46.46 0 01-.172.124.675.675 0 01-.24.04.504.504 0 01-.323-.098.324.324 0 01-.004-.522zm.913 3.091h-1.081v-.518c.053-.035.084-.067.092-.106a.628.628 0 00.018-.183v-.743a.522.522 0 00-.018-.159.162.162 0 00-.092-.099v-.523h.974v1.604c0 .103.036.169.106.209v.518z" }) + ] + } + ); +}); + +export { SiDelonghi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.cjs new file mode 100644 index 000000000..881f029e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E62431"; +const SiDelphi = React__namespace.forwardRef(function SiDelphi2({ title = "Delphi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.922 10.66a11.925 11.925 0 0 0-1.93-5.299 12.002 12.002 0 0 0-1.362-1.692A11.993 11.993 0 0 0 15.271.455a11.916 11.916 0 0 0-2.88-.444c-.237-.005-.474-.015-.71-.004-.345.016-.69.036-1.033.077-.385.046-.77.108-1.15.182a11.947 11.947 0 0 0-4.906 2.297A12.012 12.012 0 0 0 .394 8.94a11.886 11.886 0 0 0-.393 2.883c-.009.51.016 1.019.073 1.526a11.954 11.954 0 0 0 3.103 6.79 11.982 11.982 0 0 0 8.442 3.858c.013 0 .818-.002.868-.004.518-.02 1.032-.076 1.543-.162a11.947 11.947 0 0 0 6.173-3.072 11.975 11.975 0 0 0 3.667-7.028c.053-.406.087-.815.113-1.224.038-.617.006-1.234-.062-1.848zM4.5 11.777c-.052.3-.094.601-.097.906-.003.253-.005.506.004.76.005.148.031.297.051.445.033.252-.067.455-.297.56a.473.473 0 0 1-.227.035c-.217-.019-.433-.05-.65-.077-.073-.01-.147-.017-.22-.03-.017-.003-.04-.025-.042-.041-.041-.249-.086-.497-.115-.747-.024-.206-.03-.413-.043-.62-.006-.118-.014-.236-.013-.355.002-.197.005-.394.017-.59.014-.218.034-.436.06-.653.02-.177.045-.355.083-.529.062-.29.134-.579.207-.867.07-.275.162-.542.273-.804.08-.187.15-.377.235-.56.09-.195.188-.387.295-.573.12-.21.251-.414.382-.619.083-.13.17-.259.26-.384.074-.102.155-.197.234-.295.072-.088.142-.178.217-.263a7.6 7.6 0 0 1 .25-.274c.123-.128.247-.254.373-.378.087-.085.176-.17.27-.248.173-.145.346-.293.528-.427.227-.168.46-.329.697-.483.186-.12.375-.235.572-.336.253-.129.513-.244.773-.359.159-.07.321-.133.486-.19a11.02 11.02 0 0 1 1.312-.359c.279-.05.56-.086.841-.12.194-.023.39-.042.586-.044.312-.003.625-.004.936.019.342.024.683.07 1.023.118.182.026.362.071.54.117.288.075.578.146.86.24.246.08.487.182.724.288.26.116.513.245.767.374.107.054.21.118.311.183.195.124.392.246.58.38.189.135.368.282.55.424.016.012.03.026.05.045-.165.109-.325.211-.481.318-.168.116-.334.235-.5.353-.105.073-.211.145-.315.219-.13.092-.258.187-.387.28l-.45.321c-.11.08-.218.162-.327.243-.129.096-.26.19-.387.288-.217.167-.443.138-.643.003a6.527 6.527 0 0 0-1.757-.83 5.884 5.884 0 0 0-1.33-.246c-.19-.013-.381-.018-.572-.025a4.367 4.367 0 0 0-.792.047 23.89 23.89 0 0 0-.62.105 5.084 5.084 0 0 0-.795.225 6.08 6.08 0 0 0-.527.218 7.22 7.22 0 0 0-.574.294c-.178.103-.347.222-.516.339-.108.073-.214.15-.313.233-.149.124-.292.255-.435.385-.26.235-.486.5-.697.778-.132.174-.25.36-.368.545a5.76 5.76 0 0 0-.489.967 6.298 6.298 0 0 0-.368 1.271zm13.278 5.496c-.175-.122-.353-.242-.527-.366a.5.5 0 0 1-.154-.237l-.222-.55-.21-.532c-.07-.17-.141-.34-.21-.512-.071-.176-.137-.355-.213-.53-.088-.204-.14-.427-.28-.606a4.738 4.738 0 0 0-.288-.337 2.613 2.613 0 0 0-.498-.413c-.14-.09-.298-.12-.457-.148-.449-.081-.896-.166-1.345-.248l-1.368-.246c-.39-.07-.78-.137-1.166-.218-.258-.054-.494.162-.518.407-.023.246.167.456.375.508.56.141 1.118.293 1.677.442.662.175 1.324.347 1.984.527.22.06.416.173.597.313.22.17.4.375.53.62.084.163.151.336.22.506.071.177.14.355.202.534.093.268.182.537.27.806.055.164.11.328.16.492.075.237.147.475.22.712.05.163.099.327.147.49l.184.638c.048.164.098.327.144.492.07.242.14.485.204.729.033.126-.065.268-.2.287-.273.038-.547.07-.821.104-.182.023-.364.043-.546.063l-.66.07c-.28.029-.558.06-.837.09-.118.012-.236.03-.355.028a1.03 1.03 0 0 1-.688-.261c-.144-.126-.223-.292-.316-.451-.078-.135-.152-.272-.235-.403a12.841 12.841 0 0 0-.398-.602c-.134-.187-.28-.365-.423-.544a6.035 6.035 0 0 0-.229-.265 6.95 6.95 0 0 0-.757-.737 8.876 8.876 0 0 0-.641-.488 5.608 5.608 0 0 0-1.755-.803c-.436-.112-.878-.195-1.333-.187a3.542 3.542 0 0 0-.678.07c-.16.034-.309.022-.441-.089-.073-.06-.104-.144-.146-.223-.017-.032-.027-.068-.044-.109.072-.02.143-.042.216-.058a1.93 1.93 0 0 1 .227-.042c.195-.023.39-.053.584-.058.281-.007.564-.01.844.012a7.816 7.816 0 0 1 1.592.321c.24.076.473.175.704.274.387.166.727.407 1.051.673.214.175.419.36.603.567.225.252.449.506.66.77.15.186.282.389.419.587.228.332.43.681.62 1.037.048.089.093.18.133.272.064.153.199.2.341.183l.572-.07.7-.08c.27-.028.54-.054.81-.084.208-.024.416-.05.624-.08.117-.018.202-.132.208-.254.006-.108-.045-.2-.077-.296-.089-.272-.184-.542-.276-.813-.09-.263-.177-.525-.266-.787-.092-.276-.183-.551-.277-.826-.064-.188-.131-.375-.196-.563-.054-.156-.104-.312-.16-.467-.067-.186-.137-.37-.208-.555-.037-.096-.074-.192-.12-.284a1.22 1.22 0 0 0-.482-.514c-.2-.12-.424-.159-.641-.22-.64-.18-1.28-.356-1.92-.533l-.825-.23c-.218-.06-.435-.129-.657-.177-.259-.057-.433-.212-.57-.427a1.32 1.32 0 0 1-.202-.583.867.867 0 0 1 .12-.546.919.919 0 0 1 .44-.382.7.7 0 0 1 .411-.041c.322.06.645.112.968.168.227.04.454.083.681.121.268.045.536.086.803.13.193.032.386.067.579.1.224.037.448.072.671.11.195.034.389.073.584.103.126.019.249.042.362.102.054.029.11.06.156.1.163.146.326.295.484.447.141.136.279.276.413.42a.945.945 0 0 1 .217.392c.033.115.077.227.117.34l.167.471.212.595c.062.178.122.356.185.534l.176.497.188.544.093.268-.013.01zm.708.363a3.104 3.104 0 0 1-.37-.169c-.03-.016-.039-.076-.054-.117-.07-.197-.138-.395-.206-.592l-.23-.664-.23-.653c-.094-.267-.185-.534-.279-.8a78.3 78.3 0 0 0-.2-.565c-.037-.101-.073-.203-.113-.304-.063-.161-.179-.285-.296-.407-.1-.104-.199-.209-.304-.306a18.166 18.166 0 0 0-.605-.537c-.149-.125-.334-.167-.522-.197a66.347 66.347 0 0 1-.603-.098c-.247-.04-.493-.083-.739-.125l-.665-.113-1.026-.172c-.279-.048-.557-.098-.836-.145-.197-.033-.393-.075-.591-.089-.11-.007-.226.026-.335.056a.939.939 0 0 0-.395.235c-.118.113-.21.247-.272.402-.12.306-.101.606.007.909.071.197.173.376.317.528.142.15.307.258.513.306.248.058.493.129.74.196.44.12.881.24 1.322.362l.842.233.841.235c.266.074.48.224.621.46.07.118.117.252.168.382.062.156.119.315.175.474.079.224.156.45.233.675l.194.567.163.489.167.477.19.562.278.816c.01.03.021.058.028.088.01.042-.015.066-.052.07-.167.02-.335.035-.503.054-.084.01-.169.023-.253.032-.177.02-.355.037-.532.058-.189.021-.377.046-.566.068l-.726.082a.5.5 0 0 1-.122.005.085.085 0 0 1-.057-.037c-.068-.127-.129-.257-.198-.382a12.05 12.05 0 0 0-.733-1.196 10.987 10.987 0 0 0-.99-1.204 7.197 7.197 0 0 0-.595-.552 5.461 5.461 0 0 0-.628-.452 3.313 3.313 0 0 0-.704-.345c-.288-.093-.568-.21-.859-.29-.288-.077-.586-.116-.879-.177-.277-.057-.558-.056-.838-.072-.125-.007-.251.003-.377.01-.143.008-.286.017-.428.031a2.592 2.592 0 0 0-.247.04c-.16.03-.318.062-.491.096-.051-.16-.107-.319-.154-.481a5.498 5.498 0 0 1-.2-1.027 5.23 5.23 0 0 1-.021-1.028c.033-.479.113-.951.258-1.41.095-.3.2-.599.344-.88.096-.187.191-.374.298-.554.08-.137.178-.265.271-.394.073-.1.146-.201.225-.297.07-.084.146-.165.223-.243.128-.13.257-.26.392-.383.09-.084.19-.159.288-.234.105-.08.21-.16.32-.232.148-.096.299-.187.45-.275.135-.078.27-.157.411-.22.211-.093.427-.176.643-.257a2.85 2.85 0 0 1 .383-.12c.247-.054.495-.104.744-.14.21-.03.423-.052.634-.052.27 0 .542.015.81.042.466.046.917.156 1.354.323a6.039 6.039 0 0 1 1.819 1.068c.207.175.409.356.583.564.196.231.388.466.57.708.056.074.081.174.112.266.072.213.141.428.208.643.086.274.167.55.252.824.064.208.133.414.198.622.072.231.14.464.211.696l.15.477.165.534c.05.163.103.325.153.489l.117.39c.037.118.077.236.114.355l.291.928.275.865c.01.035.024.07.035.105.02.065-.015.113-.076.09zm.157-12.752a.484.484 0 0 1-.272.408.062.062 0 0 1-.054-.005c-.077-.06-.148-.127-.227-.184-.237-.173-.471-.35-.716-.512a8.86 8.86 0 0 0-.706-.428c-.246-.132-.502-.244-.756-.358a5.709 5.709 0 0 0-.501-.201c-.28-.095-.563-.186-.848-.267a7.965 7.965 0 0 0-1.091-.215c-.3-.042-.6-.076-.903-.081-.176-.003-.352-.015-.528-.009-.28.01-.56.024-.84.047-.209.017-.416.05-.623.08-.289.04-.573.101-.852.183-.236.07-.471.14-.705.217a4.57 4.57 0 0 0-.422.16 10.614 10.614 0 0 0-1.438.718c-.18.107-.352.232-.525.354a7.506 7.506 0 0 0-.394.296 12.185 12.185 0 0 0-.962.865c-.114.115-.219.24-.325.363-.11.128-.223.254-.327.387a8.572 8.572 0 0 0-.653.956c-.098.164-.187.334-.276.503a8.949 8.949 0 0 0-.253.51c-.08.177-.147.358-.216.54a7.726 7.726 0 0 0-.311.986c-.074.335-.149.67-.2 1.01a10.101 10.101 0 0 0-.047 2.328c.028.268.073.534.11.805-.215 0-.4-.063-.512-.256a.766.766 0 0 1-.08-.242 7.924 7.924 0 0 1-.083-.53 12.5 12.5 0 0 1-.07-.702 8.464 8.464 0 0 1-.021-.723 10.525 10.525 0 0 1 .282-2.28c.092-.394.216-.778.363-1.153.078-.198.151-.398.242-.59.13-.273.268-.544.414-.81.105-.192.222-.38.346-.561.145-.214.3-.42.455-.627.102-.135.207-.268.317-.396.105-.121.217-.237.328-.353a9.419 9.419 0 0 1 .578-.56c.18-.155.359-.31.545-.456.145-.114.299-.216.45-.32.13-.09.258-.18.392-.26a13.292 13.292 0 0 1 .975-.531c.146-.07.297-.133.447-.196.116-.05.231-.101.35-.142.248-.084.497-.163.747-.24.137-.043.275-.084.416-.112.299-.062.598-.123.9-.17a7.19 7.19 0 0 1 .743-.078c.325-.016.65-.019.976-.015.216.003.433.022.648.045a9.735 9.735 0 0 1 2.377.532c.432.16.86.332 1.264.56.28.157.557.318.829.49.206.13.405.276.6.424.177.134.35.274.514.423a.43.43 0 0 1 .13.373z" }) + ] + } + ); +}); + +exports.default = SiDelphi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.d.ts new file mode 100644 index 000000000..d934014e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E62431"; +declare const SiDelphi: IconType; +export { SiDelphi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.mjs new file mode 100644 index 000000000..5fc00b375 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelphi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E62431"; +const SiDelphi = React.forwardRef(function SiDelphi2({ title = "Delphi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.922 10.66a11.925 11.925 0 0 0-1.93-5.299 12.002 12.002 0 0 0-1.362-1.692A11.993 11.993 0 0 0 15.271.455a11.916 11.916 0 0 0-2.88-.444c-.237-.005-.474-.015-.71-.004-.345.016-.69.036-1.033.077-.385.046-.77.108-1.15.182a11.947 11.947 0 0 0-4.906 2.297A12.012 12.012 0 0 0 .394 8.94a11.886 11.886 0 0 0-.393 2.883c-.009.51.016 1.019.073 1.526a11.954 11.954 0 0 0 3.103 6.79 11.982 11.982 0 0 0 8.442 3.858c.013 0 .818-.002.868-.004.518-.02 1.032-.076 1.543-.162a11.947 11.947 0 0 0 6.173-3.072 11.975 11.975 0 0 0 3.667-7.028c.053-.406.087-.815.113-1.224.038-.617.006-1.234-.062-1.848zM4.5 11.777c-.052.3-.094.601-.097.906-.003.253-.005.506.004.76.005.148.031.297.051.445.033.252-.067.455-.297.56a.473.473 0 0 1-.227.035c-.217-.019-.433-.05-.65-.077-.073-.01-.147-.017-.22-.03-.017-.003-.04-.025-.042-.041-.041-.249-.086-.497-.115-.747-.024-.206-.03-.413-.043-.62-.006-.118-.014-.236-.013-.355.002-.197.005-.394.017-.59.014-.218.034-.436.06-.653.02-.177.045-.355.083-.529.062-.29.134-.579.207-.867.07-.275.162-.542.273-.804.08-.187.15-.377.235-.56.09-.195.188-.387.295-.573.12-.21.251-.414.382-.619.083-.13.17-.259.26-.384.074-.102.155-.197.234-.295.072-.088.142-.178.217-.263a7.6 7.6 0 0 1 .25-.274c.123-.128.247-.254.373-.378.087-.085.176-.17.27-.248.173-.145.346-.293.528-.427.227-.168.46-.329.697-.483.186-.12.375-.235.572-.336.253-.129.513-.244.773-.359.159-.07.321-.133.486-.19a11.02 11.02 0 0 1 1.312-.359c.279-.05.56-.086.841-.12.194-.023.39-.042.586-.044.312-.003.625-.004.936.019.342.024.683.07 1.023.118.182.026.362.071.54.117.288.075.578.146.86.24.246.08.487.182.724.288.26.116.513.245.767.374.107.054.21.118.311.183.195.124.392.246.58.38.189.135.368.282.55.424.016.012.03.026.05.045-.165.109-.325.211-.481.318-.168.116-.334.235-.5.353-.105.073-.211.145-.315.219-.13.092-.258.187-.387.28l-.45.321c-.11.08-.218.162-.327.243-.129.096-.26.19-.387.288-.217.167-.443.138-.643.003a6.527 6.527 0 0 0-1.757-.83 5.884 5.884 0 0 0-1.33-.246c-.19-.013-.381-.018-.572-.025a4.367 4.367 0 0 0-.792.047 23.89 23.89 0 0 0-.62.105 5.084 5.084 0 0 0-.795.225 6.08 6.08 0 0 0-.527.218 7.22 7.22 0 0 0-.574.294c-.178.103-.347.222-.516.339-.108.073-.214.15-.313.233-.149.124-.292.255-.435.385-.26.235-.486.5-.697.778-.132.174-.25.36-.368.545a5.76 5.76 0 0 0-.489.967 6.298 6.298 0 0 0-.368 1.271zm13.278 5.496c-.175-.122-.353-.242-.527-.366a.5.5 0 0 1-.154-.237l-.222-.55-.21-.532c-.07-.17-.141-.34-.21-.512-.071-.176-.137-.355-.213-.53-.088-.204-.14-.427-.28-.606a4.738 4.738 0 0 0-.288-.337 2.613 2.613 0 0 0-.498-.413c-.14-.09-.298-.12-.457-.148-.449-.081-.896-.166-1.345-.248l-1.368-.246c-.39-.07-.78-.137-1.166-.218-.258-.054-.494.162-.518.407-.023.246.167.456.375.508.56.141 1.118.293 1.677.442.662.175 1.324.347 1.984.527.22.06.416.173.597.313.22.17.4.375.53.62.084.163.151.336.22.506.071.177.14.355.202.534.093.268.182.537.27.806.055.164.11.328.16.492.075.237.147.475.22.712.05.163.099.327.147.49l.184.638c.048.164.098.327.144.492.07.242.14.485.204.729.033.126-.065.268-.2.287-.273.038-.547.07-.821.104-.182.023-.364.043-.546.063l-.66.07c-.28.029-.558.06-.837.09-.118.012-.236.03-.355.028a1.03 1.03 0 0 1-.688-.261c-.144-.126-.223-.292-.316-.451-.078-.135-.152-.272-.235-.403a12.841 12.841 0 0 0-.398-.602c-.134-.187-.28-.365-.423-.544a6.035 6.035 0 0 0-.229-.265 6.95 6.95 0 0 0-.757-.737 8.876 8.876 0 0 0-.641-.488 5.608 5.608 0 0 0-1.755-.803c-.436-.112-.878-.195-1.333-.187a3.542 3.542 0 0 0-.678.07c-.16.034-.309.022-.441-.089-.073-.06-.104-.144-.146-.223-.017-.032-.027-.068-.044-.109.072-.02.143-.042.216-.058a1.93 1.93 0 0 1 .227-.042c.195-.023.39-.053.584-.058.281-.007.564-.01.844.012a7.816 7.816 0 0 1 1.592.321c.24.076.473.175.704.274.387.166.727.407 1.051.673.214.175.419.36.603.567.225.252.449.506.66.77.15.186.282.389.419.587.228.332.43.681.62 1.037.048.089.093.18.133.272.064.153.199.2.341.183l.572-.07.7-.08c.27-.028.54-.054.81-.084.208-.024.416-.05.624-.08.117-.018.202-.132.208-.254.006-.108-.045-.2-.077-.296-.089-.272-.184-.542-.276-.813-.09-.263-.177-.525-.266-.787-.092-.276-.183-.551-.277-.826-.064-.188-.131-.375-.196-.563-.054-.156-.104-.312-.16-.467-.067-.186-.137-.37-.208-.555-.037-.096-.074-.192-.12-.284a1.22 1.22 0 0 0-.482-.514c-.2-.12-.424-.159-.641-.22-.64-.18-1.28-.356-1.92-.533l-.825-.23c-.218-.06-.435-.129-.657-.177-.259-.057-.433-.212-.57-.427a1.32 1.32 0 0 1-.202-.583.867.867 0 0 1 .12-.546.919.919 0 0 1 .44-.382.7.7 0 0 1 .411-.041c.322.06.645.112.968.168.227.04.454.083.681.121.268.045.536.086.803.13.193.032.386.067.579.1.224.037.448.072.671.11.195.034.389.073.584.103.126.019.249.042.362.102.054.029.11.06.156.1.163.146.326.295.484.447.141.136.279.276.413.42a.945.945 0 0 1 .217.392c.033.115.077.227.117.34l.167.471.212.595c.062.178.122.356.185.534l.176.497.188.544.093.268-.013.01zm.708.363a3.104 3.104 0 0 1-.37-.169c-.03-.016-.039-.076-.054-.117-.07-.197-.138-.395-.206-.592l-.23-.664-.23-.653c-.094-.267-.185-.534-.279-.8a78.3 78.3 0 0 0-.2-.565c-.037-.101-.073-.203-.113-.304-.063-.161-.179-.285-.296-.407-.1-.104-.199-.209-.304-.306a18.166 18.166 0 0 0-.605-.537c-.149-.125-.334-.167-.522-.197a66.347 66.347 0 0 1-.603-.098c-.247-.04-.493-.083-.739-.125l-.665-.113-1.026-.172c-.279-.048-.557-.098-.836-.145-.197-.033-.393-.075-.591-.089-.11-.007-.226.026-.335.056a.939.939 0 0 0-.395.235c-.118.113-.21.247-.272.402-.12.306-.101.606.007.909.071.197.173.376.317.528.142.15.307.258.513.306.248.058.493.129.74.196.44.12.881.24 1.322.362l.842.233.841.235c.266.074.48.224.621.46.07.118.117.252.168.382.062.156.119.315.175.474.079.224.156.45.233.675l.194.567.163.489.167.477.19.562.278.816c.01.03.021.058.028.088.01.042-.015.066-.052.07-.167.02-.335.035-.503.054-.084.01-.169.023-.253.032-.177.02-.355.037-.532.058-.189.021-.377.046-.566.068l-.726.082a.5.5 0 0 1-.122.005.085.085 0 0 1-.057-.037c-.068-.127-.129-.257-.198-.382a12.05 12.05 0 0 0-.733-1.196 10.987 10.987 0 0 0-.99-1.204 7.197 7.197 0 0 0-.595-.552 5.461 5.461 0 0 0-.628-.452 3.313 3.313 0 0 0-.704-.345c-.288-.093-.568-.21-.859-.29-.288-.077-.586-.116-.879-.177-.277-.057-.558-.056-.838-.072-.125-.007-.251.003-.377.01-.143.008-.286.017-.428.031a2.592 2.592 0 0 0-.247.04c-.16.03-.318.062-.491.096-.051-.16-.107-.319-.154-.481a5.498 5.498 0 0 1-.2-1.027 5.23 5.23 0 0 1-.021-1.028c.033-.479.113-.951.258-1.41.095-.3.2-.599.344-.88.096-.187.191-.374.298-.554.08-.137.178-.265.271-.394.073-.1.146-.201.225-.297.07-.084.146-.165.223-.243.128-.13.257-.26.392-.383.09-.084.19-.159.288-.234.105-.08.21-.16.32-.232.148-.096.299-.187.45-.275.135-.078.27-.157.411-.22.211-.093.427-.176.643-.257a2.85 2.85 0 0 1 .383-.12c.247-.054.495-.104.744-.14.21-.03.423-.052.634-.052.27 0 .542.015.81.042.466.046.917.156 1.354.323a6.039 6.039 0 0 1 1.819 1.068c.207.175.409.356.583.564.196.231.388.466.57.708.056.074.081.174.112.266.072.213.141.428.208.643.086.274.167.55.252.824.064.208.133.414.198.622.072.231.14.464.211.696l.15.477.165.534c.05.163.103.325.153.489l.117.39c.037.118.077.236.114.355l.291.928.275.865c.01.035.024.07.035.105.02.065-.015.113-.076.09zm.157-12.752a.484.484 0 0 1-.272.408.062.062 0 0 1-.054-.005c-.077-.06-.148-.127-.227-.184-.237-.173-.471-.35-.716-.512a8.86 8.86 0 0 0-.706-.428c-.246-.132-.502-.244-.756-.358a5.709 5.709 0 0 0-.501-.201c-.28-.095-.563-.186-.848-.267a7.965 7.965 0 0 0-1.091-.215c-.3-.042-.6-.076-.903-.081-.176-.003-.352-.015-.528-.009-.28.01-.56.024-.84.047-.209.017-.416.05-.623.08-.289.04-.573.101-.852.183-.236.07-.471.14-.705.217a4.57 4.57 0 0 0-.422.16 10.614 10.614 0 0 0-1.438.718c-.18.107-.352.232-.525.354a7.506 7.506 0 0 0-.394.296 12.185 12.185 0 0 0-.962.865c-.114.115-.219.24-.325.363-.11.128-.223.254-.327.387a8.572 8.572 0 0 0-.653.956c-.098.164-.187.334-.276.503a8.949 8.949 0 0 0-.253.51c-.08.177-.147.358-.216.54a7.726 7.726 0 0 0-.311.986c-.074.335-.149.67-.2 1.01a10.101 10.101 0 0 0-.047 2.328c.028.268.073.534.11.805-.215 0-.4-.063-.512-.256a.766.766 0 0 1-.08-.242 7.924 7.924 0 0 1-.083-.53 12.5 12.5 0 0 1-.07-.702 8.464 8.464 0 0 1-.021-.723 10.525 10.525 0 0 1 .282-2.28c.092-.394.216-.778.363-1.153.078-.198.151-.398.242-.59.13-.273.268-.544.414-.81.105-.192.222-.38.346-.561.145-.214.3-.42.455-.627.102-.135.207-.268.317-.396.105-.121.217-.237.328-.353a9.419 9.419 0 0 1 .578-.56c.18-.155.359-.31.545-.456.145-.114.299-.216.45-.32.13-.09.258-.18.392-.26a13.292 13.292 0 0 1 .975-.531c.146-.07.297-.133.447-.196.116-.05.231-.101.35-.142.248-.084.497-.163.747-.24.137-.043.275-.084.416-.112.299-.062.598-.123.9-.17a7.19 7.19 0 0 1 .743-.078c.325-.016.65-.019.976-.015.216.003.433.022.648.045a9.735 9.735 0 0 1 2.377.532c.432.16.86.332 1.264.56.28.157.557.318.829.49.206.13.405.276.6.424.177.134.35.274.514.423a.43.43 0 0 1 .13.373z" }) + ] + } + ); +}); + +export { SiDelphi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.cjs new file mode 100644 index 000000000..548b04057 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003366"; +const SiDelta = React__namespace.forwardRef(function SiDelta2({ title = "Delta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 13.455h-.689l-.288-.739h-1.2l-.289.739h-.644l1.233-2.96h.666zm-1.16-1.233l-.411-1.044-.411 1.044zm-4.315 1.233h.66v-2.438h.995v-.51h-2.644v.51h.989zm-3.826 0h1.927v-.511H15.36v-2.438h-.661zm-3.282-2.438h1.416v-.51h-2.077v2.948h2.121v-.511h-1.46v-.766h1.25v-.511h-1.25zm-4.981 2.438h1.038c1.072 0 1.71-.555 1.71-1.472 0-.916-.638-1.471-1.71-1.471H6.436zm.655-2.438h.383c.694 0 1.044.344 1.044.96 0 .617-.344.961-1.044.961h-.383zm-2.277 2.155a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.15.15.15 0 0 1-.15-.15.15.15 0 0 1 .15-.15m0 .277a.13.13 0 0 0 .134-.127c0-.073-.056-.128-.134-.128a.126.126 0 0 0-.127.128c0 .072.055.127.127.127m-.033-.039H4.76v-.177h.067c.038 0 .055.016.055.05 0 .033-.022.044-.044.05l.055.077h-.028l-.05-.077h-.033zm0-.1h.028c.022 0 .05 0 .05-.027 0-.022-.022-.028-.039-.028h-.039zM0 13.85h4.626l-2.31-.978zm.172-.395l2.144-1.033 2.143 1.033-2.143-3.304Z" }) + ] + } + ); +}); + +exports.default = SiDelta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.d.ts new file mode 100644 index 000000000..086e5bf02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003366"; +declare const SiDelta: IconType; +export { SiDelta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.mjs new file mode 100644 index 000000000..5c636defe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDelta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003366"; +const SiDelta = React.forwardRef(function SiDelta2({ title = "Delta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 13.455h-.689l-.288-.739h-1.2l-.289.739h-.644l1.233-2.96h.666zm-1.16-1.233l-.411-1.044-.411 1.044zm-4.315 1.233h.66v-2.438h.995v-.51h-2.644v.51h.989zm-3.826 0h1.927v-.511H15.36v-2.438h-.661zm-3.282-2.438h1.416v-.51h-2.077v2.948h2.121v-.511h-1.46v-.766h1.25v-.511h-1.25zm-4.981 2.438h1.038c1.072 0 1.71-.555 1.71-1.472 0-.916-.638-1.471-1.71-1.471H6.436zm.655-2.438h.383c.694 0 1.044.344 1.044.96 0 .617-.344.961-1.044.961h-.383zm-2.277 2.155a.15.15 0 0 1 .15.15.15.15 0 0 1-.15.15.15.15 0 0 1-.15-.15.15.15 0 0 1 .15-.15m0 .277a.13.13 0 0 0 .134-.127c0-.073-.056-.128-.134-.128a.126.126 0 0 0-.127.128c0 .072.055.127.127.127m-.033-.039H4.76v-.177h.067c.038 0 .055.016.055.05 0 .033-.022.044-.044.05l.055.077h-.028l-.05-.077h-.033zm0-.1h.028c.022 0 .05 0 .05-.027 0-.022-.022-.028-.039-.028h-.039zM0 13.85h4.626l-2.31-.978zm.172-.395l2.144-1.033 2.143 1.033-2.143-3.304Z" }) + ] + } + ); +}); + +export { SiDelta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.cjs new file mode 100644 index 000000000..3c89e7815 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#094491"; +const SiDeluge = React__namespace.forwardRef(function SiDeluge2({ title = "Deluge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.766 10.341 12.006 0l-6.77 10.342c-1.945 2.97-2.191 6.432-.66 9.264C6.04 22.316 8.885 24 12.001 24c3.113 0 5.957-1.681 7.421-4.388 1.532-2.832 1.287-6.297-.657-9.27zm-10.082 6.9c1.433 2.554 3.608 3.045 6.585 2.102-1.7 1.848-5.188 2.337-7.557-.302-1.63-1.817-1.773-4.351-.642-6.468 1.132-2.117 3.388-2.706 5.012-1.551-3.723.09-4.43 4.38-3.398 6.218zm8.72-6.009c.723 1.107 1.152 2.267 1.314 3.418-3.354 5.763-7.862 4.879-9.062 1.377-.554-1.618 1.19-5.08 4.514-3.725-1.296-2.838-4.238-4.017-6.911-1.809a5.099 5.099 0 0 0-.609.66l5.355-8.179 5.398 8.258z" }) + ] + } + ); +}); + +exports.default = SiDeluge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.d.ts new file mode 100644 index 000000000..99c07365b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#094491"; +declare const SiDeluge: IconType; +export { SiDeluge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.mjs new file mode 100644 index 000000000..53a7fd021 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeluge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#094491"; +const SiDeluge = React.forwardRef(function SiDeluge2({ title = "Deluge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.766 10.341 12.006 0l-6.77 10.342c-1.945 2.97-2.191 6.432-.66 9.264C6.04 22.316 8.885 24 12.001 24c3.113 0 5.957-1.681 7.421-4.388 1.532-2.832 1.287-6.297-.657-9.27zm-10.082 6.9c1.433 2.554 3.608 3.045 6.585 2.102-1.7 1.848-5.188 2.337-7.557-.302-1.63-1.817-1.773-4.351-.642-6.468 1.132-2.117 3.388-2.706 5.012-1.551-3.723.09-4.43 4.38-3.398 6.218zm8.72-6.009c.723 1.107 1.152 2.267 1.314 3.418-3.354 5.763-7.862 4.879-9.062 1.377-.554-1.618 1.19-5.08 4.514-3.725-1.296-2.838-4.238-4.017-6.911-1.809a5.099 5.099 0 0 0-.609.66l5.355-8.179 5.398 8.258z" }) + ] + } + ); +}); + +export { SiDeluge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.cjs new file mode 100644 index 000000000..2989b6736 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDeno = React__namespace.forwardRef(function SiDeno2({ title = "Deno", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.105 18.02A11.9 11.9 0 0 1 0 12.985q0-.698.078-1.376a12 12 0 0 1 .231-1.34A12 12 0 0 1 4.025 4.02a12 12 0 0 1 5.46-2.771 12 12 0 0 1 3.428-.23c1.452.112 2.825.477 4.077 1.05a12 12 0 0 1 2.78 1.774 12.02 12.02 0 0 1 4.053 7.078A12 12 0 0 1 24 12.985q0 .454-.036.914a12 12 0 0 1-.728 3.305 12 12 0 0 1-2.38 3.875c-1.33 1.357-3.02 1.962-4.43 1.936a4.4 4.4 0 0 1-2.724-1.024c-.99-.853-1.391-1.83-1.53-2.919a5 5 0 0 1 .128-1.518c.105-.38.37-1.116.76-1.437-.455-.197-1.04-.624-1.226-.829-.045-.05-.04-.13 0-.183a.155.155 0 0 1 .177-.053c.392.134.869.267 1.372.35.66.111 1.484.25 2.317.292 2.03.1 4.153-.813 4.812-2.627s.403-3.609-1.96-4.685-3.454-2.356-5.363-3.128c-1.247-.505-2.636-.205-4.06.582-3.838 2.121-7.277 8.822-5.69 15.032a.191.191 0 0 1-.315.19 12 12 0 0 1-1.25-1.634 12 12 0 0 1-.769-1.404M11.57 6.087c.649-.051 1.214.501 1.31 1.236.13.979-.228 1.99-1.41 2.013-1.01.02-1.315-.997-1.248-1.614.066-.616.574-1.575 1.35-1.635" }) + ] + } + ); +}); + +exports.default = SiDeno; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.d.ts new file mode 100644 index 000000000..d9fde87c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDeno: IconType; +export { SiDeno as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.mjs new file mode 100644 index 000000000..1395f7c3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeno.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDeno = React.forwardRef(function SiDeno2({ title = "Deno", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.105 18.02A11.9 11.9 0 0 1 0 12.985q0-.698.078-1.376a12 12 0 0 1 .231-1.34A12 12 0 0 1 4.025 4.02a12 12 0 0 1 5.46-2.771 12 12 0 0 1 3.428-.23c1.452.112 2.825.477 4.077 1.05a12 12 0 0 1 2.78 1.774 12.02 12.02 0 0 1 4.053 7.078A12 12 0 0 1 24 12.985q0 .454-.036.914a12 12 0 0 1-.728 3.305 12 12 0 0 1-2.38 3.875c-1.33 1.357-3.02 1.962-4.43 1.936a4.4 4.4 0 0 1-2.724-1.024c-.99-.853-1.391-1.83-1.53-2.919a5 5 0 0 1 .128-1.518c.105-.38.37-1.116.76-1.437-.455-.197-1.04-.624-1.226-.829-.045-.05-.04-.13 0-.183a.155.155 0 0 1 .177-.053c.392.134.869.267 1.372.35.66.111 1.484.25 2.317.292 2.03.1 4.153-.813 4.812-2.627s.403-3.609-1.96-4.685-3.454-2.356-5.363-3.128c-1.247-.505-2.636-.205-4.06.582-3.838 2.121-7.277 8.822-5.69 15.032a.191.191 0 0 1-.315.19 12 12 0 0 1-1.25-1.634 12 12 0 0 1-.769-1.404M11.57 6.087c.649-.051 1.214.501 1.31 1.236.13.979-.228 1.99-1.41 2.013-1.01.02-1.315-.997-1.248-1.614.066-.616.574-1.575 1.35-1.635" }) + ] + } + ); +}); + +export { SiDeno as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.cjs new file mode 100644 index 000000000..dc3db99fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002633"; +const SiDenodeploy = React__namespace.forwardRef(function SiDenodeploy2({ title = "Deno Deploy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.69.002A7.5 7.5 0 0 0 9.814.51C6.69 1.69 4.064 5.018 3.41 9.627a4.6 4.6 0 0 1-.76-.499.216.216 0 0 0-.334.063c-.487 1.26-.94 4.988.287 8.195 1.012 2.644 4.302 5.957 8.503 6.487.572.08 1.234.127 1.98.127 3.88 0 9.124-.555 9.1-1.6-.01-.537-1.373-.868-3.173-1.046 2.956-2.66 3.519-6.732 2.9-10.13-.613-3.372-2.488-5.708-4.087-7.106C17.517 1.796 15.407.08 12.69.003M11.326 2.73a.793.993 0 0 1 .793.993.793.993 0 0 1-.793.994.793.993 0 0 1-.792-.994.793.993 0 0 1 .792-.993m3.66 0a.793.993 0 0 1 .793.993.793.993 0 0 1-.793.994.793.993 0 0 1-.794-.994.793.993 0 0 1 .794-.993m2.798 3.86a.1.1 0 0 1 .07.026c1.03 1.033 2.22 3.117 2.385 6.027.172 3.035-1.532 7.622-6.568 8.484-5.037.863-8.214-2.32-9.206-4.063-.957-1.676-1.111-3.929-1.001-5.173a.07.07 0 0 1 .045-.06.07.07 0 0 1 .074.017c.695.58 2.778 1.243 3.943 1.339a.17.17 0 0 0 .18-.172c.022-1.336.401-4.7 1.706-5.503a.1.1 0 0 1 .044-.014c1.956-.09 4.486 1.846 5.434 3.175a.17.17 0 0 0 .177.07c.993-.33 2.406-2.779 2.631-4.073a.09.09 0 0 1 .086-.08" }) + ] + } + ); +}); + +exports.default = SiDenodeploy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.d.ts new file mode 100644 index 000000000..1d98d2c3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002633"; +declare const SiDenodeploy: IconType; +export { SiDenodeploy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.mjs new file mode 100644 index 000000000..1c5b1cb50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDenodeploy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002633"; +const SiDenodeploy = React.forwardRef(function SiDenodeploy2({ title = "Deno Deploy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.69.002A7.5 7.5 0 0 0 9.814.51C6.69 1.69 4.064 5.018 3.41 9.627a4.6 4.6 0 0 1-.76-.499.216.216 0 0 0-.334.063c-.487 1.26-.94 4.988.287 8.195 1.012 2.644 4.302 5.957 8.503 6.487.572.08 1.234.127 1.98.127 3.88 0 9.124-.555 9.1-1.6-.01-.537-1.373-.868-3.173-1.046 2.956-2.66 3.519-6.732 2.9-10.13-.613-3.372-2.488-5.708-4.087-7.106C17.517 1.796 15.407.08 12.69.003M11.326 2.73a.793.993 0 0 1 .793.993.793.993 0 0 1-.793.994.793.993 0 0 1-.792-.994.793.993 0 0 1 .792-.993m3.66 0a.793.993 0 0 1 .793.993.793.993 0 0 1-.793.994.793.993 0 0 1-.794-.994.793.993 0 0 1 .794-.993m2.798 3.86a.1.1 0 0 1 .07.026c1.03 1.033 2.22 3.117 2.385 6.027.172 3.035-1.532 7.622-6.568 8.484-5.037.863-8.214-2.32-9.206-4.063-.957-1.676-1.111-3.929-1.001-5.173a.07.07 0 0 1 .045-.06.07.07 0 0 1 .074.017c.695.58 2.778 1.243 3.943 1.339a.17.17 0 0 0 .18-.172c.022-1.336.401-4.7 1.706-5.503a.1.1 0 0 1 .044-.014c1.956-.09 4.486 1.846 5.434 3.175a.17.17 0 0 0 .177.07c.993-.33 2.406-2.779 2.631-4.073a.09.09 0 0 1 .086-.08" }) + ] + } + ); +}); + +export { SiDenodeploy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.cjs new file mode 100644 index 000000000..0c0e7d1e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B131A"; +const SiDenon = React__namespace.forwardRef(function SiDenon2({ title = "Denon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.365 11.237 3.394 3.361v-5.07h-.778v3.16L8.58 9.406v5.077h.779V11.27l.006-.033m-4.497 3.245V9.528h2.79v.773H5.646v1.164h1.558v.772H5.646v1.472h1.999v.773H4.868M20.58 11.23 24 14.58V9.528h-.779v3.2l-.005-.015-3.422-3.311v5.08h.79v-3.234l-.003-.019M.78 13.747v-3.503h.688s1.755-.032 1.755 1.77c0 1.647-1.593 1.733-1.593 1.733H.78zM0 9.527v4.955h1.655s2.336-.193 2.336-2.496c0-2.374-2.343-2.458-2.343-2.458H0zm14.416 2.452c0 .552.187 1.006.56 1.361.713.724 1.931.702 2.618-.01.724-.689.724-1.991.007-2.676-.675-.726-1.966-.724-2.645 0-.36.357-.54.8-.54 1.325zm-.764-.01c0-.702.26-1.306.777-1.81.981-1.004 2.724-1.016 3.702.006 1.026.965 1.032 2.706-.003 3.66-.961.964-2.596 1.015-3.624.084-.568-.493-.852-1.14-.852-1.94z" }) + ] + } + ); +}); + +exports.default = SiDenon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.d.ts new file mode 100644 index 000000000..49e56f6da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B131A"; +declare const SiDenon: IconType; +export { SiDenon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.mjs new file mode 100644 index 000000000..5fd9e4d78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDenon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B131A"; +const SiDenon = React.forwardRef(function SiDenon2({ title = "Denon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.365 11.237 3.394 3.361v-5.07h-.778v3.16L8.58 9.406v5.077h.779V11.27l.006-.033m-4.497 3.245V9.528h2.79v.773H5.646v1.164h1.558v.772H5.646v1.472h1.999v.773H4.868M20.58 11.23 24 14.58V9.528h-.779v3.2l-.005-.015-3.422-3.311v5.08h.79v-3.234l-.003-.019M.78 13.747v-3.503h.688s1.755-.032 1.755 1.77c0 1.647-1.593 1.733-1.593 1.733H.78zM0 9.527v4.955h1.655s2.336-.193 2.336-2.496c0-2.374-2.343-2.458-2.343-2.458H0zm14.416 2.452c0 .552.187 1.006.56 1.361.713.724 1.931.702 2.618-.01.724-.689.724-1.991.007-2.676-.675-.726-1.966-.724-2.645 0-.36.357-.54.8-.54 1.325zm-.764-.01c0-.702.26-1.306.777-1.81.981-1.004 2.724-1.016 3.702.006 1.026.965 1.032 2.706-.003 3.66-.961.964-2.596 1.015-3.624.084-.568-.493-.852-1.14-.852-1.94z" }) + ] + } + ); +}); + +export { SiDenon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.cjs new file mode 100644 index 000000000..5e3dc80aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#025E8C"; +const SiDependabot = React__namespace.forwardRef(function SiDependabot2({ title = "Dependabot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.949.3136a1.918 1.918 0 012.102 0l9.3334 6.1182c.541.354.866.957.866 1.604v7.9283c0 .647-.326 1.25-.866 1.604l-9.3334 6.1183a1.918 1.918 0 01-2.102 0l-9.3334-6.1182a1.916 1.916 0 01-.866-1.604V8.0358c0-.647.326-1.25.866-1.604zm1.801 7.1862v.75H6.7498a.75.75 0 00-.75.7501V12h-.5a.25.25 0 00-.25.25v2.5c0 .1381.112.2501.25.2501h.5v1.5c0 .415.336.75.75.75h10.5004a.75.75 0 00.75-.75v-1.5h.5a.25.25 0 00.25-.25v-2.5a.25.25 0 00-.25-.2501h-.5V8.9999a.75.75 0 00-.75-.75H13.5V5.4998a.25.25 0 00-.25-.25H11.5a.25.25 0 00-.25.25v1.75c0 .138.112.25.25.25zm3.2861 5.0892l-1.572 1.572a.303.303 0 01-.428 0l-.947-.947a.303.303 0 010-.428l.322-.322a.303.303 0 01.428 0l.41.411 1.037-1.036a.303.303 0 01.428 0l.322.322a.303.303 0 010 .428zM9.464 14.16v.001a.303.303 0 01-.428 0l-.948-.947a.302.302 0 010-.428l.323-.322a.303.303 0 01.427 0l.412.411 1.036-1.037a.303.303 0 01.427 0l.323.322a.303.303 0 010 .428z" }) + ] + } + ); +}); + +exports.default = SiDependabot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.d.ts new file mode 100644 index 000000000..b09f6ec85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#025E8C"; +declare const SiDependabot: IconType; +export { SiDependabot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.mjs new file mode 100644 index 000000000..f170b0e54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDependabot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#025E8C"; +const SiDependabot = React.forwardRef(function SiDependabot2({ title = "Dependabot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.949.3136a1.918 1.918 0 012.102 0l9.3334 6.1182c.541.354.866.957.866 1.604v7.9283c0 .647-.326 1.25-.866 1.604l-9.3334 6.1183a1.918 1.918 0 01-2.102 0l-9.3334-6.1182a1.916 1.916 0 01-.866-1.604V8.0358c0-.647.326-1.25.866-1.604zm1.801 7.1862v.75H6.7498a.75.75 0 00-.75.7501V12h-.5a.25.25 0 00-.25.25v2.5c0 .1381.112.2501.25.2501h.5v1.5c0 .415.336.75.75.75h10.5004a.75.75 0 00.75-.75v-1.5h.5a.25.25 0 00.25-.25v-2.5a.25.25 0 00-.25-.2501h-.5V8.9999a.75.75 0 00-.75-.75H13.5V5.4998a.25.25 0 00-.25-.25H11.5a.25.25 0 00-.25.25v1.75c0 .138.112.25.25.25zm3.2861 5.0892l-1.572 1.572a.303.303 0 01-.428 0l-.947-.947a.303.303 0 010-.428l.322-.322a.303.303 0 01.428 0l.41.411 1.037-1.036a.303.303 0 01.428 0l.322.322a.303.303 0 010 .428zM9.464 14.16v.001a.303.303 0 01-.428 0l-.948-.947a.302.302 0 010-.428l.323-.322a.303.303 0 01.427 0l.412.411 1.036-1.037a.303.303 0 01.427 0l.323.322a.303.303 0 010 .428z" }) + ] + } + ); +}); + +export { SiDependabot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.cjs new file mode 100644 index 000000000..043b292dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F78D0A"; +const SiDependencycheck = React__namespace.forwardRef(function SiDependencycheck2({ title = "OWASP Dependency-Check", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.357 15.731H.016A13.74 13.74 0 0 0 4.58 24l1.63-1.634a11.452 11.452 0 0 1-3.853-6.635Zm.509 0a10.948 10.948 0 0 0 3.668 6.254l.03.026 1.124-1.126a9.38 9.38 0 0 1-3.206-5.154Zm6.623 3.349h-.084V8.252h4.222c.846 0 1.621.137 2.328.41a5.518 5.518 0 0 1 1.825 1.137c.168.159.318.331.461.508.291.363.535.761.722 1.201a5.37 5.37 0 0 1 .418 2.127v.03c0 .764-.139 1.475-.418 2.135a5.009 5.009 0 0 1-1.183 1.716 5.572 5.572 0 0 1-1.825 1.146 6.309 6.309 0 0 1-2.328.418zm7.01-7.027a3.022 3.022 0 0 0-.513-.738 2.971 2.971 0 0 0-1.028-.673 3.578 3.578 0 0 0-1.331-.24l-1.84.001v6.526h1.84c.484 0 .928-.078 1.331-.232a2.844 2.844 0 0 0 1.028-.665c.283-.288.505-.628.665-1.021.16-.391.24-.829.24-1.314v-.032c0-.473-.08-.913-.24-1.314-.043-.107-.101-.199-.152-.298zm-16.44-.796h2.35c1.635-7.184 7.887-8.654 9.203-8.922V0A13.782 13.782 0 0 0 .059 11.257Zm11.553-8.414a10.98 10.98 0 0 0-8.692 8.414h1.624a9.402 9.402 0 0 1 7.068-6.802Zm4.474.092v1.629a9.38 9.38 0 0 1 4.79 3.101l1.127-1.126a11.039 11.039 0 0 0-5.917-3.604Zm0-2.865v2.352a11.459 11.459 0 0 1 6.267 3.763l1.631-1.636A13.75 13.75 0 0 0 16.086.07z" }) + ] + } + ); +}); + +exports.default = SiDependencycheck; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.d.ts new file mode 100644 index 000000000..1b01ba7cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F78D0A"; +declare const SiDependencycheck: IconType; +export { SiDependencycheck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.mjs new file mode 100644 index 000000000..07d70cbe6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDependencycheck.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F78D0A"; +const SiDependencycheck = React.forwardRef(function SiDependencycheck2({ title = "OWASP Dependency-Check", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.357 15.731H.016A13.74 13.74 0 0 0 4.58 24l1.63-1.634a11.452 11.452 0 0 1-3.853-6.635Zm.509 0a10.948 10.948 0 0 0 3.668 6.254l.03.026 1.124-1.126a9.38 9.38 0 0 1-3.206-5.154Zm6.623 3.349h-.084V8.252h4.222c.846 0 1.621.137 2.328.41a5.518 5.518 0 0 1 1.825 1.137c.168.159.318.331.461.508.291.363.535.761.722 1.201a5.37 5.37 0 0 1 .418 2.127v.03c0 .764-.139 1.475-.418 2.135a5.009 5.009 0 0 1-1.183 1.716 5.572 5.572 0 0 1-1.825 1.146 6.309 6.309 0 0 1-2.328.418zm7.01-7.027a3.022 3.022 0 0 0-.513-.738 2.971 2.971 0 0 0-1.028-.673 3.578 3.578 0 0 0-1.331-.24l-1.84.001v6.526h1.84c.484 0 .928-.078 1.331-.232a2.844 2.844 0 0 0 1.028-.665c.283-.288.505-.628.665-1.021.16-.391.24-.829.24-1.314v-.032c0-.473-.08-.913-.24-1.314-.043-.107-.101-.199-.152-.298zm-16.44-.796h2.35c1.635-7.184 7.887-8.654 9.203-8.922V0A13.782 13.782 0 0 0 .059 11.257Zm11.553-8.414a10.98 10.98 0 0 0-8.692 8.414h1.624a9.402 9.402 0 0 1 7.068-6.802Zm4.474.092v1.629a9.38 9.38 0 0 1 4.79 3.101l1.127-1.126a11.039 11.039 0 0 0-5.917-3.604Zm0-2.865v2.352a11.459 11.459 0 0 1 6.267 3.763l1.631-1.636A13.75 13.75 0 0 0 16.086.07z" }) + ] + } + ); +}); + +export { SiDependencycheck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.cjs new file mode 100644 index 000000000..82a938609 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDepositphotos = React__namespace.forwardRef(function SiDepositphotos2({ title = "Depositphotos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24c5.119 0 9.061-3.942 9.061-9.06S17.119 5.88 12 5.88c-5.117 0-9.059 3.942-9.059 9.06S6.883 24 12 24Zm0-5.598c-1.954 0-3.461-1.508-3.461-3.462 0-1.955 1.507-3.462 3.461-3.462 1.955 0 3.462 1.507 3.462 3.462 0 1.954-1.507 3.462-3.462 3.462Zm2.634-12.241h6.161V0h-6.161v6.161Z" }) + ] + } + ); +}); + +exports.default = SiDepositphotos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.d.ts new file mode 100644 index 000000000..13380483e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDepositphotos: IconType; +export { SiDepositphotos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.mjs new file mode 100644 index 000000000..b1afa2175 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDepositphotos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDepositphotos = React.forwardRef(function SiDepositphotos2({ title = "Depositphotos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24c5.119 0 9.061-3.942 9.061-9.06S17.119 5.88 12 5.88c-5.117 0-9.059 3.942-9.059 9.06S6.883 24 12 24Zm0-5.598c-1.954 0-3.461-1.508-3.461-3.462 0-1.955 1.507-3.462 3.461-3.462 1.955 0 3.462 1.507 3.462 3.462 0 1.954-1.507 3.462-3.462 3.462Zm2.634-12.241h6.161V0h-6.161v6.161Z" }) + ] + } + ); +}); + +export { SiDepositphotos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.cjs new file mode 100644 index 000000000..0953e3478 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E64415"; +const SiDerspiegel = React__namespace.forwardRef(function SiDerspiegel2({ title = "Der Spiegel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.868 13.054v-2.108h.677v2.108zm1.29.19v-2.488a.346.346 0 0 0-.338-.337H0v.527h.254v2.108H0v.527h1.841a.33.33 0 0 0 .318-.337zm1.905-.78v.59h-.72v-.864h.953v-.527h-.952v-.717h.72v.442h.592v-.97H2.497v.528h.233v2.108h-.233v.527h2.16v-1.117zm1.778-.801v-.717h.699v.717zm1.334 1.391v-.759a.334.334 0 0 0-.339-.337c.19 0 .339-.148.339-.338v-.843c0-.169-.149-.337-.318-.337H4.974v.527h.275v2.108h-.275v.506h1.121v-.527h-.233v-.864h.699v.864h-.254v.527h1.1v-.527zm4.507-1.391v-.717h.72v.717zm1.334.19v-1.097a.334.334 0 0 0-.339-.337h-1.862v.527h.254v2.108h-.254v.527h1.1v-.527h-.233v-.864h.995c.19 0 .339-.148.339-.338zm1.08 1.201v-2.108h.253v-.527h-1.1v.527h.254v2.108h-.254v.527h1.1v-.527zm2.094-.59v.59h-.72v-.864h.953v-.527h-.952v-.717h.72v.442h.613v-.97h-2.18v.528h.233v2.108h-.233v.527h2.18v-1.117zm1.736-.801v.527h.487v.864h-.72v-2.108h.72v.442h.634v-.632a.334.334 0 0 0-.338-.337h-1.27a.325.325 0 0 0-.212.084c-.063.063-.127.148-.127.253v2.488a.3.3 0 0 0 .127.253.32.32 0 0 0 .233.084h1.587v-1.918zm2.984.8v.591h-.72v-.864h.953v-.527h-.953v-.717h.72v.442h.614v-.97h-2.18v.528h.233v2.108h-.233v.527h2.18v-1.117zm2.476 0v.591h-.698v-2.108h.254v-.527H21.82v.527h.254v2.108h-.254v.527H24v-1.117zm-12.846.8v-1.592H9.227v-.722h.699v.446h.635v-.637c0-.204-.19-.34-.381-.34H8.931a.335.335 0 0 0-.338.34v1.444h1.312v.87h-.699v-.594h-.613v.764c0 .19.148.34.338.34h1.249c.195 0 .36-.128.36-.319Z" }) + ] + } + ); +}); + +exports.default = SiDerspiegel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.d.ts new file mode 100644 index 000000000..8820a846c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E64415"; +declare const SiDerspiegel: IconType; +export { SiDerspiegel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.mjs new file mode 100644 index 000000000..6790c978e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDerspiegel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E64415"; +const SiDerspiegel = React.forwardRef(function SiDerspiegel2({ title = "Der Spiegel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.868 13.054v-2.108h.677v2.108zm1.29.19v-2.488a.346.346 0 0 0-.338-.337H0v.527h.254v2.108H0v.527h1.841a.33.33 0 0 0 .318-.337zm1.905-.78v.59h-.72v-.864h.953v-.527h-.952v-.717h.72v.442h.592v-.97H2.497v.528h.233v2.108h-.233v.527h2.16v-1.117zm1.778-.801v-.717h.699v.717zm1.334 1.391v-.759a.334.334 0 0 0-.339-.337c.19 0 .339-.148.339-.338v-.843c0-.169-.149-.337-.318-.337H4.974v.527h.275v2.108h-.275v.506h1.121v-.527h-.233v-.864h.699v.864h-.254v.527h1.1v-.527zm4.507-1.391v-.717h.72v.717zm1.334.19v-1.097a.334.334 0 0 0-.339-.337h-1.862v.527h.254v2.108h-.254v.527h1.1v-.527h-.233v-.864h.995c.19 0 .339-.148.339-.338zm1.08 1.201v-2.108h.253v-.527h-1.1v.527h.254v2.108h-.254v.527h1.1v-.527zm2.094-.59v.59h-.72v-.864h.953v-.527h-.952v-.717h.72v.442h.613v-.97h-2.18v.528h.233v2.108h-.233v.527h2.18v-1.117zm1.736-.801v.527h.487v.864h-.72v-2.108h.72v.442h.634v-.632a.334.334 0 0 0-.338-.337h-1.27a.325.325 0 0 0-.212.084c-.063.063-.127.148-.127.253v2.488a.3.3 0 0 0 .127.253.32.32 0 0 0 .233.084h1.587v-1.918zm2.984.8v.591h-.72v-.864h.953v-.527h-.953v-.717h.72v.442h.614v-.97h-2.18v.528h.233v2.108h-.233v.527h2.18v-1.117zm2.476 0v.591h-.698v-2.108h.254v-.527H21.82v.527h.254v2.108h-.254v.527H24v-1.117zm-12.846.8v-1.592H9.227v-.722h.699v.446h.635v-.637c0-.204-.19-.34-.381-.34H8.931a.335.335 0 0 0-.338.34v1.444h1.312v.87h-.699v-.594h-.613v.764c0 .19.148.34.338.34h1.249c.195 0 .36-.128.36-.319Z" }) + ] + } + ); +}); + +export { SiDerspiegel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.cjs new file mode 100644 index 000000000..d911c980c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F01414"; +const SiDeutschebahn = React__namespace.forwardRef(function SiDeutschebahn2({ title = "Deutsche Bahn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.6 3.6H2.4C1.08 3.6 0 4.68 0 6v12c0 1.32 1.08 2.4 2.4 2.4h19.2c1.32 0 2.4-1.08 2.4-2.424V6c0-1.32-1.08-2.4-2.4-2.4zm.648 14.376c.024.36-.264.672-.648.696H2.4c-.36 0-.648-.312-.648-.672V6a.667.667 0 0 1 .624-.696H21.6c.36 0 .648.312.648.672v12zM7.344 6.504H3.312v10.992h4.032c3.336-.024 4.416-2.376 4.416-5.544 0-3.672-1.56-5.448-4.416-5.448zm-.456 9.216h-.936V8.232h.528c2.376 0 2.616 1.728 2.616 3.936 0 2.424-.816 3.552-2.208 3.552zm11.832-3.984c1.128-.336 1.896-1.368 1.92-2.568 0-.24-.048-2.688-3.144-2.688h-4.584v10.992H16.8c1.032 0 4.248 0 4.248-3.096 0-.744-.336-2.208-2.328-2.64zm-2.352-3.528c1.176 0 1.656.408 1.656 1.32 0 .72-.528 1.32-1.44 1.32h-1.032v-2.64h.816zm.24 7.512h-1.08v-2.832h1.152c1.368 0 1.704.792 1.704 1.416 0 1.416-1.344 1.416-1.776 1.416z" }) + ] + } + ); +}); + +exports.default = SiDeutschebahn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.d.ts new file mode 100644 index 000000000..e7f25c2af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F01414"; +declare const SiDeutschebahn: IconType; +export { SiDeutschebahn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.mjs new file mode 100644 index 000000000..97909177e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebahn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F01414"; +const SiDeutschebahn = React.forwardRef(function SiDeutschebahn2({ title = "Deutsche Bahn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.6 3.6H2.4C1.08 3.6 0 4.68 0 6v12c0 1.32 1.08 2.4 2.4 2.4h19.2c1.32 0 2.4-1.08 2.4-2.424V6c0-1.32-1.08-2.4-2.4-2.4zm.648 14.376c.024.36-.264.672-.648.696H2.4c-.36 0-.648-.312-.648-.672V6a.667.667 0 0 1 .624-.696H21.6c.36 0 .648.312.648.672v12zM7.344 6.504H3.312v10.992h4.032c3.336-.024 4.416-2.376 4.416-5.544 0-3.672-1.56-5.448-4.416-5.448zm-.456 9.216h-.936V8.232h.528c2.376 0 2.616 1.728 2.616 3.936 0 2.424-.816 3.552-2.208 3.552zm11.832-3.984c1.128-.336 1.896-1.368 1.92-2.568 0-.24-.048-2.688-3.144-2.688h-4.584v10.992H16.8c1.032 0 4.248 0 4.248-3.096 0-.744-.336-2.208-2.328-2.64zm-2.352-3.528c1.176 0 1.656.408 1.656 1.32 0 .72-.528 1.32-1.44 1.32h-1.032v-2.64h.816zm.24 7.512h-1.08v-2.832h1.152c1.368 0 1.704.792 1.704 1.416 0 1.416-1.344 1.416-1.776 1.416z" }) + ] + } + ); +}); + +export { SiDeutschebahn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.cjs new file mode 100644 index 000000000..eacb040c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0018A8"; +const SiDeutschebank = React__namespace.forwardRef(function SiDeutschebank2({ title = "Deutsche Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.375 3.375v17.25h17.25V3.375H3.375zM0 0h24v24H0V0zm5.25 18.225 9.15-12.45h4.35L9.6 18.225H5.25z" }) + ] + } + ); +}); + +exports.default = SiDeutschebank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.d.ts new file mode 100644 index 000000000..005d2d8da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0018A8"; +declare const SiDeutschebank: IconType; +export { SiDeutschebank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.mjs new file mode 100644 index 000000000..65d8b4168 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschebank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0018A8"; +const SiDeutschebank = React.forwardRef(function SiDeutschebank2({ title = "Deutsche Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.375 3.375v17.25h17.25V3.375H3.375zM0 0h24v24H0V0zm5.25 18.225 9.15-12.45h4.35L9.6 18.225H5.25z" }) + ] + } + ); +}); + +export { SiDeutschebank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.cjs new file mode 100644 index 000000000..fe93fc464 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCC00"; +const SiDeutschepost = React__namespace.forwardRef(function SiDeutschepost2({ title = "Deutsche Post", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.057 18.221 7.839 21.47H4.652l3.219-3.249zm-4.299 0L3.541 21.47H.354l3.219-3.249zm8.227 0 3.219 3.249h-3.187l-3.22-3.249zm4.3 0 3.217 3.249h-3.187l-3.218-3.249zM10.465 2.53c3.765-.003 6.88 2.74 6.865 6.676.553-1.502.937-3.789 1.016-5.39L24 5.22c-.452 6.621-5.43 12.42-12.815 12.416C2.832 17.635-.397 10.389.039 4.899l2.453-.779c-.399 3.125.57 5.378 1.238 6.41-.795-4.42 2.549-7.998 6.735-8m.011 2.301a4.519 4.519 0 0 0-4.524 4.514 4.519 4.519 0 0 0 4.524 4.514 4.518 4.518 0 0 0 4.525-4.514 4.518 4.518 0 0 0-4.525-4.514" }) + ] + } + ); +}); + +exports.default = SiDeutschepost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.d.ts new file mode 100644 index 000000000..43e9e69fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCC00"; +declare const SiDeutschepost: IconType; +export { SiDeutschepost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.mjs new file mode 100644 index 000000000..c8a945590 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschepost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCC00"; +const SiDeutschepost = React.forwardRef(function SiDeutschepost2({ title = "Deutsche Post", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.057 18.221 7.839 21.47H4.652l3.219-3.249zm-4.299 0L3.541 21.47H.354l3.219-3.249zm8.227 0 3.219 3.249h-3.187l-3.22-3.249zm4.3 0 3.217 3.249h-3.187l-3.218-3.249zM10.465 2.53c3.765-.003 6.88 2.74 6.865 6.676.553-1.502.937-3.789 1.016-5.39L24 5.22c-.452 6.621-5.43 12.42-12.815 12.416C2.832 17.635-.397 10.389.039 4.899l2.453-.779c-.399 3.125.57 5.378 1.238 6.41-.795-4.42 2.549-7.998 6.735-8m.011 2.301a4.519 4.519 0 0 0-4.524 4.514 4.519 4.519 0 0 0 4.524 4.514 4.518 4.518 0 0 0 4.525-4.514 4.518 4.518 0 0 0-4.525-4.514" }) + ] + } + ); +}); + +export { SiDeutschepost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.cjs new file mode 100644 index 000000000..18425298f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E20074"; +const SiDeutschetelekom = React__namespace.forwardRef(function SiDeutschetelekom2({ title = "Deutsche Telekom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.722 15.84h-4.8v-4.8h4.791v4.8zM1.922 0v8.16H3.36v-.236c0-3.844 2.159-6.24 6.239-6.24h.237v17.279c0 2.396-.957 3.36-3.36 3.36h-.72V24h12.478v-1.676h-.72c-2.395 0-3.36-.957-3.36-3.361V1.676h.237c4.08 0 6.239 2.396 6.239 6.24v.236h1.439V0Zm15.356 15.84h4.8v-4.8h-4.791v4.8z" }) + ] + } + ); +}); + +exports.default = SiDeutschetelekom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.d.ts new file mode 100644 index 000000000..742f5f2bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E20074"; +declare const SiDeutschetelekom: IconType; +export { SiDeutschetelekom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.mjs new file mode 100644 index 000000000..f545cebe0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschetelekom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E20074"; +const SiDeutschetelekom = React.forwardRef(function SiDeutschetelekom2({ title = "Deutsche Telekom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.722 15.84h-4.8v-4.8h4.791v4.8zM1.922 0v8.16H3.36v-.236c0-3.844 2.159-6.24 6.239-6.24h.237v17.279c0 2.396-.957 3.36-3.36 3.36h-.72V24h12.478v-1.676h-.72c-2.395 0-3.36-.957-3.36-3.361V1.676h.237c4.08 0 6.239 2.396 6.239 6.24v.236h1.439V0Zm15.356 15.84h4.8v-4.8h-4.791v4.8z" }) + ] + } + ); +}); + +export { SiDeutschetelekom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.cjs new file mode 100644 index 000000000..a3e640fba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05B2FC"; +const SiDeutschewelle = React__namespace.forwardRef(function SiDeutschewelle2({ title = "Deutsche Welle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.143 5.182A6.854 6.854 0 0 0 12 7.493a6.855 6.855 0 0 0-5.143-2.311C3.07 5.182 0 8.234 0 12c0 3.766 3.07 6.818 6.857 6.818A6.855 6.855 0 0 0 12 16.507a6.854 6.854 0 0 0 5.143 2.311C20.929 18.818 24 15.766 24 12c0-3.766-3.07-6.818-6.857-6.818zm-6.04 10.05a5.349 5.349 0 0 1-4.246 2.086c-2.954 0-5.348-2.38-5.348-5.318 0-2.937 2.394-5.318 5.348-5.318 1.731 0 3.27.818 4.247 2.087A5.274 5.274 0 0 1 12.206 12a5.274 5.274 0 0 1-1.102 3.231zm8.88-.641h-1.608l-1.049-2.549-1.025 2.549h-1.605l-1.661-5.182h1.833l.779 2.602.972-2.602h1.434l.973 2.602.778-2.602h1.841zM7.058 9.273H4.083v5.454h2.975c1.534 0 3.107-.878 3.107-2.727 0-1.768-1.434-2.727-3.107-2.727zm-.161 3.874H5.729v-2.318h1.168c1.062 0 1.44.59 1.44 1.159.001.561-.375 1.159-1.44 1.159z" }) + ] + } + ); +}); + +exports.default = SiDeutschewelle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.d.ts new file mode 100644 index 000000000..84c69f89f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05B2FC"; +declare const SiDeutschewelle: IconType; +export { SiDeutschewelle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.mjs new file mode 100644 index 000000000..91f4ddc8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeutschewelle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05B2FC"; +const SiDeutschewelle = React.forwardRef(function SiDeutschewelle2({ title = "Deutsche Welle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.143 5.182A6.854 6.854 0 0 0 12 7.493a6.855 6.855 0 0 0-5.143-2.311C3.07 5.182 0 8.234 0 12c0 3.766 3.07 6.818 6.857 6.818A6.855 6.855 0 0 0 12 16.507a6.854 6.854 0 0 0 5.143 2.311C20.929 18.818 24 15.766 24 12c0-3.766-3.07-6.818-6.857-6.818zm-6.04 10.05a5.349 5.349 0 0 1-4.246 2.086c-2.954 0-5.348-2.38-5.348-5.318 0-2.937 2.394-5.318 5.348-5.318 1.731 0 3.27.818 4.247 2.087A5.274 5.274 0 0 1 12.206 12a5.274 5.274 0 0 1-1.102 3.231zm8.88-.641h-1.608l-1.049-2.549-1.025 2.549h-1.605l-1.661-5.182h1.833l.779 2.602.972-2.602h1.434l.973 2.602.778-2.602h1.841zM7.058 9.273H4.083v5.454h2.975c1.534 0 3.107-.878 3.107-2.727 0-1.768-1.434-2.727-3.107-2.727zm-.161 3.874H5.729v-2.318h1.168c1.062 0 1.44.59 1.44 1.159.001.561-.375 1.159-1.44 1.159z" }) + ] + } + ); +}); + +export { SiDeutschewelle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.cjs new file mode 100644 index 000000000..d44050444 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#280459"; +const SiDevbox = React__namespace.forwardRef(function SiDevbox2({ title = "Devbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.546 7.5726-1.531-1.5703c-.4881.4371-.965.8647-1.442 1.2922l-.959.8596c1.3076 1.3446 2.5887 2.6624 3.8756 3.987l-2.4261 2.4956-1.4508 1.4924c.55.4988 1.0916.9897 1.6397 1.4864l.765.6933 2.209-2.2773c1.2588-1.2976 2.5141-2.5916 3.7736-3.8905v-.001a20797.5906 20797.5906 0 0 1-4.454-4.5674ZM2.992 9.0716A16808.14 16808.14 0 0 1 0 12.141c2.0108 2.0727 3.9927 4.1152 5.9838 6.1666l.5111-.4635c.638-.5786 1.2616-1.144 1.8924-1.715l-1.447-1.4888c-.8134-.8368-1.6208-1.6676-2.431-2.5015 1.0462-1.075 2.0745-2.132 3.1094-3.1959l.7674-.7888c-.4342-.3892-.861-.7718-1.2883-1.1546l-1.114-.9983v.0011c-.9996 1.0251-1.9958 2.0472-2.992 3.0694Zm12.585-6.0372c-1.317 6.199-2.6283 12.3689-3.9453 18.5656l-.1962-.0387a2911.4317 2911.4317 0 0 0-3.0284-.5957c.8529-4.0118 1.7034-8.0133 2.5549-12.0196L12.3533 2.4z" }) + ] + } + ); +}); + +exports.default = SiDevbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.d.ts new file mode 100644 index 000000000..44c893943 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#280459"; +declare const SiDevbox: IconType; +export { SiDevbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.mjs new file mode 100644 index 000000000..df56736cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#280459"; +const SiDevbox = React.forwardRef(function SiDevbox2({ title = "Devbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.546 7.5726-1.531-1.5703c-.4881.4371-.965.8647-1.442 1.2922l-.959.8596c1.3076 1.3446 2.5887 2.6624 3.8756 3.987l-2.4261 2.4956-1.4508 1.4924c.55.4988 1.0916.9897 1.6397 1.4864l.765.6933 2.209-2.2773c1.2588-1.2976 2.5141-2.5916 3.7736-3.8905v-.001a20797.5906 20797.5906 0 0 1-4.454-4.5674ZM2.992 9.0716A16808.14 16808.14 0 0 1 0 12.141c2.0108 2.0727 3.9927 4.1152 5.9838 6.1666l.5111-.4635c.638-.5786 1.2616-1.144 1.8924-1.715l-1.447-1.4888c-.8134-.8368-1.6208-1.6676-2.431-2.5015 1.0462-1.075 2.0745-2.132 3.1094-3.1959l.7674-.7888c-.4342-.3892-.861-.7718-1.2883-1.1546l-1.114-.9983v.0011c-.9996 1.0251-1.9958 2.0472-2.992 3.0694Zm12.585-6.0372c-1.317 6.199-2.6283 12.3689-3.9453 18.5656l-.1962-.0387a2911.4317 2911.4317 0 0 0-3.0284-.5957c.8529-4.0118 1.7034-8.0133 2.5549-12.0196L12.3533 2.4z" }) + ] + } + ); +}); + +export { SiDevbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.cjs new file mode 100644 index 000000000..b4cbc081c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0A0A"; +const SiDevdotto = React__namespace.forwardRef(function SiDevdotto2({ title = "dev.to", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.42 10.05c-.18-.16-.46-.23-.84-.23H6l.02 2.44.04 2.45.56-.02c.41 0 .63-.07.83-.26.24-.24.26-.36.26-2.2 0-1.91-.02-1.96-.29-2.18zM0 4.94v14.12h24V4.94H0zM8.56 15.3c-.44.58-1.06.77-2.53.77H4.71V8.53h1.4c1.67 0 2.16.18 2.6.9.27.43.29.6.32 2.57.05 2.23-.02 2.73-.47 3.3zm5.09-5.47h-2.47v1.77h1.52v1.28l-.72.04-.75.03v1.77l1.22.03 1.2.04v1.28h-1.6c-1.53 0-1.6-.01-1.87-.3l-.3-.28v-3.16c0-3.02.01-3.18.25-3.48.23-.31.25-.31 1.88-.31h1.64v1.3zm4.68 5.45c-.17.43-.64.79-1 .79-.18 0-.45-.15-.67-.39-.32-.32-.45-.63-.82-2.08l-.9-3.39-.45-1.67h.76c.4 0 .75.02.75.05 0 .06 1.16 4.54 1.26 4.83.04.15.32-.7.73-2.3l.66-2.52.74-.04c.4-.02.73 0 .73.04 0 .14-1.67 6.38-1.8 6.68z" }) + ] + } + ); +}); + +exports.default = SiDevdotto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.d.ts new file mode 100644 index 000000000..bd2991df6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0A0A"; +declare const SiDevdotto: IconType; +export { SiDevdotto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.mjs new file mode 100644 index 000000000..01efc6720 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevdotto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0A0A"; +const SiDevdotto = React.forwardRef(function SiDevdotto2({ title = "dev.to", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.42 10.05c-.18-.16-.46-.23-.84-.23H6l.02 2.44.04 2.45.56-.02c.41 0 .63-.07.83-.26.24-.24.26-.36.26-2.2 0-1.91-.02-1.96-.29-2.18zM0 4.94v14.12h24V4.94H0zM8.56 15.3c-.44.58-1.06.77-2.53.77H4.71V8.53h1.4c1.67 0 2.16.18 2.6.9.27.43.29.6.32 2.57.05 2.23-.02 2.73-.47 3.3zm5.09-5.47h-2.47v1.77h1.52v1.28l-.72.04-.75.03v1.77l1.22.03 1.2.04v1.28h-1.6c-1.53 0-1.6-.01-1.87-.3l-.3-.28v-3.16c0-3.02.01-3.18.25-3.48.23-.31.25-.31 1.88-.31h1.64v1.3zm4.68 5.45c-.17.43-.64.79-1 .79-.18 0-.45-.15-.67-.39-.32-.32-.45-.63-.82-2.08l-.9-3.39-.45-1.67h.76c.4 0 .75.02.75.05 0 .06 1.16 4.54 1.26 4.83.04.15.32-.7.73-2.3l.66-2.52.74-.04c.4-.02.73 0 .73.04 0 .14-1.67 6.38-1.8 6.68z" }) + ] + } + ); +}); + +export { SiDevdotto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.cjs new file mode 100644 index 000000000..e875b9bf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2753E3"; +const SiDevelopmentcontainers = React__namespace.forwardRef(function SiDevelopmentcontainers2({ title = "Development Containers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.31.615a4.5 4.5 0 0 1 3.382 0l8.998 3.648A2.1 2.1 0 0 1 24 6.208v11.584a2.1 2.1 0 0 1-1.311 1.946l-8.998 3.648a4.5 4.5 0 0 1-3.382 0l-8.998-3.648A2.1 2.1 0 0 1 0 17.792V6.208a2.1 2.1 0 0 1 1.311-1.946Zm2.705 1.668a2.7 2.7 0 0 0-2.028 0l-9 3.647a.3.3 0 0 0-.187.278v11.584a.3.3 0 0 0 .187.278l8.999 3.648a2.7 2.7 0 0 0 2.028 0l8.999-3.648a.3.3 0 0 0 .187-.278V6.208a.3.3 0 0 0-.187-.278ZM6.019 6.658 12 8.928l5.98-2.27c1.122-.427 1.762 1.256.64 1.683l-5.72 2.17V17.1c0 1.2-1.8 1.2-1.8 0v-6.59L5.38 8.34c-1.122-.426-.482-2.109.64-1.683" }) + ] + } + ); +}); + +exports.default = SiDevelopmentcontainers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.d.ts new file mode 100644 index 000000000..cb9d781b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2753E3"; +declare const SiDevelopmentcontainers: IconType; +export { SiDevelopmentcontainers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.mjs new file mode 100644 index 000000000..34c406f46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevelopmentcontainers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2753E3"; +const SiDevelopmentcontainers = React.forwardRef(function SiDevelopmentcontainers2({ title = "Development Containers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.31.615a4.5 4.5 0 0 1 3.382 0l8.998 3.648A2.1 2.1 0 0 1 24 6.208v11.584a2.1 2.1 0 0 1-1.311 1.946l-8.998 3.648a4.5 4.5 0 0 1-3.382 0l-8.998-3.648A2.1 2.1 0 0 1 0 17.792V6.208a2.1 2.1 0 0 1 1.311-1.946Zm2.705 1.668a2.7 2.7 0 0 0-2.028 0l-9 3.647a.3.3 0 0 0-.187.278v11.584a.3.3 0 0 0 .187.278l8.999 3.648a2.7 2.7 0 0 0 2.028 0l8.999-3.648a.3.3 0 0 0 .187-.278V6.208a.3.3 0 0 0-.187-.278ZM6.019 6.658 12 8.928l5.98-2.27c1.122-.427 1.762 1.256.64 1.683l-5.72 2.17V17.1c0 1.2-1.8 1.2-1.8 0v-6.59L5.38 8.34c-1.122-.426-.482-2.109.64-1.683" }) + ] + } + ); +}); + +export { SiDevelopmentcontainers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.cjs new file mode 100644 index 000000000..e68e27fc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7200"; +const SiDevexpress = React__namespace.forwardRef(function SiDevexpress2({ title = "DevExpress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.4 0h21.2c.8 0 1.4.6 1.4 1.4v1.1c0 .8-.6 1-.9 1C11.7 4.9 4.2 9.7 0 14.1V1.4C0 .6.6 0 1.4 0zm.022 19.567L1.7 19.2C5.3 14.6 12.4 8.3 24 6.3v16.3c0 .8-.6 1.4-1.4 1.4H1.4C.6 24 0 23.4 0 22.6v-.4c0-.3.2-.8.3-.9.252-.589.646-1.107 1.122-1.733z" }) + ] + } + ); +}); + +exports.default = SiDevexpress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.d.ts new file mode 100644 index 000000000..12581b86d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7200"; +declare const SiDevexpress: IconType; +export { SiDevexpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.mjs new file mode 100644 index 000000000..33e2996b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevexpress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7200"; +const SiDevexpress = React.forwardRef(function SiDevexpress2({ title = "DevExpress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.4 0h21.2c.8 0 1.4.6 1.4 1.4v1.1c0 .8-.6 1-.9 1C11.7 4.9 4.2 9.7 0 14.1V1.4C0 .6.6 0 1.4 0zm.022 19.567L1.7 19.2C5.3 14.6 12.4 8.3 24 6.3v16.3c0 .8-.6 1.4-1.4 1.4H1.4C.6 24 0 23.4 0 22.6v-.4c0-.3.2-.8.3-.9.252-.589.646-1.107 1.122-1.733z" }) + ] + } + ); +}); + +export { SiDevexpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.cjs new file mode 100644 index 000000000..8187174fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05CC47"; +const SiDeviantart = React__namespace.forwardRef(function SiDeviantart2({ title = "DeviantArt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.207 4.794l.23-.43V0H15.07l-.436.44-2.058 3.925-.646.436H4.58v5.993h4.04l.36.436-4.175 7.98-.24.43V24H8.93l.436-.44 2.07-3.925.644-.436h7.35v-5.993h-4.05l-.36-.438 4.186-7.977z" }) + ] + } + ); +}); + +exports.default = SiDeviantart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.d.ts new file mode 100644 index 000000000..b37620339 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05CC47"; +declare const SiDeviantart: IconType; +export { SiDeviantart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.mjs new file mode 100644 index 000000000..c79de1590 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDeviantart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05CC47"; +const SiDeviantart = React.forwardRef(function SiDeviantart2({ title = "DeviantArt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.207 4.794l.23-.43V0H15.07l-.436.44-2.058 3.925-.646.436H4.58v5.993h4.04l.36.436-4.175 7.98-.24.43V24H8.93l.436-.44 2.07-3.925.644-.436h7.35v-5.993h-4.05l-.36-.438 4.186-7.977z" }) + ] + } + ); +}); + +export { SiDeviantart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.cjs new file mode 100644 index 000000000..cab416933 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003E54"; +const SiDevpost = React__namespace.forwardRef(function SiDevpost2({ title = "Devpost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.002 1.61L0 12.004 6.002 22.39h11.996L24 12.004 17.998 1.61zm1.593 4.084h3.947c3.605 0 6.276 1.695 6.276 6.31 0 4.436-3.21 6.302-6.456 6.302H7.595zm2.517 2.449v7.714h1.241c2.646 0 3.862-1.55 3.862-3.861.009-2.569-1.096-3.853-3.767-3.853Z" }) + ] + } + ); +}); + +exports.default = SiDevpost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.d.ts new file mode 100644 index 000000000..f90d3b0a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003E54"; +declare const SiDevpost: IconType; +export { SiDevpost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.mjs new file mode 100644 index 000000000..6b6875d54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevpost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003E54"; +const SiDevpost = React.forwardRef(function SiDevpost2({ title = "Devpost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.002 1.61L0 12.004 6.002 22.39h11.996L24 12.004 17.998 1.61zm1.593 4.084h3.947c3.605 0 6.276 1.695 6.276 6.31 0 4.436-3.21 6.302-6.456 6.302H7.595zm2.517 2.449v7.714h1.241c2.646 0 3.862-1.55 3.862-3.861.009-2.569-1.096-3.853-3.767-3.853Z" }) + ] + } + ); +}); + +export { SiDevpost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.cjs new file mode 100644 index 000000000..e401f8fd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F99A66"; +const SiDevrant = React__namespace.forwardRef(function SiDevrant2({ title = "devRant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.72 0C5.482-.015 1.592 4.046 1.701 10.322c-.074 3.907 1.437 7.002 4.127 8.734.663.405 1.364.737 2.137.995l2.174 3.353c.333.848.7.774.848-.11l.59-2.69h.442c2.469.073 4.57-.517 6.228-1.585 2.616-1.733 4.126-4.791 4.053-8.697C22.41 3.948 18.431-.144 12.019.004c-.1-.002-.2-.004-.299-.004zm4.571 4.636c.258 0 .516.092.7.276h.001c.185.185.295.442.295.737 0 .148 0 .295-.074.406l-3.722 9.25c-.258.441-.627.552-.885.552a1.007 1.007 0 0 1-.994-.995c0-.148.037-.258.073-.406l3.685-9.212c.073-.147.148-.258.221-.332a.989.989 0 0 1 .7-.276zM9.456 7.5c.313 0 .626.12.866.359h.001c.221.221.368.516.331.848 0 .332-.147.589-.368.848-.222.258-.517.369-.848.369-.332 0-.59-.148-.848-.37-.259-.22-.37-.515-.37-.847s.149-.627.37-.848c.24-.24.552-.36.866-.36zm0 4.974c.313 0 .626.12.866.36h.001c.221.258.368.553.331.848a1.2 1.2 0 0 1-.368.848c-.221.258-.516.368-.848.368a1.2 1.2 0 0 1-.848-.368c-.259-.222-.37-.516-.37-.848s.149-.627.37-.848c.24-.24.552-.36.866-.36z" }) + ] + } + ); +}); + +exports.default = SiDevrant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.d.ts new file mode 100644 index 000000000..399c4da1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F99A66"; +declare const SiDevrant: IconType; +export { SiDevrant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.mjs new file mode 100644 index 000000000..40e9d6d7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevrant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F99A66"; +const SiDevrant = React.forwardRef(function SiDevrant2({ title = "devRant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.72 0C5.482-.015 1.592 4.046 1.701 10.322c-.074 3.907 1.437 7.002 4.127 8.734.663.405 1.364.737 2.137.995l2.174 3.353c.333.848.7.774.848-.11l.59-2.69h.442c2.469.073 4.57-.517 6.228-1.585 2.616-1.733 4.126-4.791 4.053-8.697C22.41 3.948 18.431-.144 12.019.004c-.1-.002-.2-.004-.299-.004zm4.571 4.636c.258 0 .516.092.7.276h.001c.185.185.295.442.295.737 0 .148 0 .295-.074.406l-3.722 9.25c-.258.441-.627.552-.885.552a1.007 1.007 0 0 1-.994-.995c0-.148.037-.258.073-.406l3.685-9.212c.073-.147.148-.258.221-.332a.989.989 0 0 1 .7-.276zM9.456 7.5c.313 0 .626.12.866.359h.001c.221.221.368.516.331.848 0 .332-.147.589-.368.848-.222.258-.517.369-.848.369-.332 0-.59-.148-.848-.37-.259-.22-.37-.515-.37-.847s.149-.627.37-.848c.24-.24.552-.36.866-.36zm0 4.974c.313 0 .626.12.866.36h.001c.221.258.368.553.331.848a1.2 1.2 0 0 1-.368.848c-.221.258-.516.368-.848.368a1.2 1.2 0 0 1-.848-.368c-.259-.222-.37-.516-.37-.848s.149-.627.37-.848c.24-.24.552-.36.866-.36z" }) + ] + } + ); +}); + +export { SiDevrant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.cjs new file mode 100644 index 000000000..917809a2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004489"; +const SiDevuan = React__namespace.forwardRef(function SiDevuan2({ title = "Devuan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .415C42.518 10.56 2.297 18.812 2.297 18.812c-.792.127-1.432.54-1.816 1.167-.433.704-.47 1.656-.066 2.326.492.814 1.114 1.096 1.65 1.217.845.191 1.527-.113 1.527-.113s20.562-6.11 20.407-12.214C23.922 8.131 17.694 2.948 0 .415" }) + ] + } + ); +}); + +exports.default = SiDevuan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.d.ts new file mode 100644 index 000000000..8f673189c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004489"; +declare const SiDevuan: IconType; +export { SiDevuan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.mjs new file mode 100644 index 000000000..dc9264025 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDevuan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004489"; +const SiDevuan = React.forwardRef(function SiDevuan2({ title = "Devuan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .415C42.518 10.56 2.297 18.812 2.297 18.812c-.792.127-1.432.54-1.816 1.167-.433.704-.47 1.656-.066 2.326.492.814 1.114 1.096 1.65 1.217.845.191 1.527-.113 1.527-.113s20.562-6.11 20.407-12.214C23.922 8.131 17.694 2.948 0 .415" }) + ] + } + ); +}); + +export { SiDevuan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.cjs new file mode 100644 index 000000000..49f9c990c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E50695"; +const SiDgraph = React__namespace.forwardRef(function SiDgraph2({ title = "Dgraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.22 4.319c.226-.414.349-.892.349-1.403A2.917 2.917 0 0015.653 0c-1.37 0-2.522.944-2.838 2.218-.272-.013-.544-.033-.815-.033-5.58 0-10.1 4.513-10.1 10.1 0 2.74 1.1 5.23 2.871 7.047a2.916 2.916 0 00-.588 1.752A2.917 2.917 0 007.1 24c1.241 0 2.295-.782 2.728-1.869a10.092 10.092 0 0012.272-9.86 9.982 9.982 0 00-3.88-7.952zm-2.554.381c-.162 0-.304-.013-.446-.064l-1.21 3.523 1.772-.284-2.489 4.067 2.075-.511-7.002 8.34c.35.317.556.783.556 1.307a1.78 1.78 0 01-1.784 1.784c-.99 0-1.785-.795-1.785-1.784s.796-1.785 1.785-1.785c.226 0 .446.045.653.13l1.978-4.326-1.933.524 3.142-4.5-1.933.465L14.521 4.3c-.4-.337-.64-.828-.64-1.371 0-.99.796-1.785 1.785-1.785s1.784.796 1.784 1.785c.007.97-.795 1.771-1.784 1.771z" }) + ] + } + ); +}); + +exports.default = SiDgraph; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.d.ts new file mode 100644 index 000000000..9322f5cef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E50695"; +declare const SiDgraph: IconType; +export { SiDgraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.mjs new file mode 100644 index 000000000..7ddd8b0d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDgraph.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E50695"; +const SiDgraph = React.forwardRef(function SiDgraph2({ title = "Dgraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.22 4.319c.226-.414.349-.892.349-1.403A2.917 2.917 0 0015.653 0c-1.37 0-2.522.944-2.838 2.218-.272-.013-.544-.033-.815-.033-5.58 0-10.1 4.513-10.1 10.1 0 2.74 1.1 5.23 2.871 7.047a2.916 2.916 0 00-.588 1.752A2.917 2.917 0 007.1 24c1.241 0 2.295-.782 2.728-1.869a10.092 10.092 0 0012.272-9.86 9.982 9.982 0 00-3.88-7.952zm-2.554.381c-.162 0-.304-.013-.446-.064l-1.21 3.523 1.772-.284-2.489 4.067 2.075-.511-7.002 8.34c.35.317.556.783.556 1.307a1.78 1.78 0 01-1.784 1.784c-.99 0-1.785-.795-1.785-1.784s.796-1.785 1.785-1.785c.226 0 .446.045.653.13l1.978-4.326-1.933.524 3.142-4.5-1.933.465L14.521 4.3c-.4-.337-.64-.828-.64-1.371 0-.99.796-1.785 1.785-1.785s1.784.796 1.784 1.785c.007.97-.795 1.771-1.784 1.771z" }) + ] + } + ); +}); + +export { SiDgraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.cjs new file mode 100644 index 000000000..240403272 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCC00"; +const SiDhl = React__namespace.forwardRef(function SiDhl2({ title = "DHL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.22 10.303l-.767 1.043h4.18c.21 0 .208.078.105.218-.105.142-.28.39-.386.534-.054.073-.154.207.171.207h1.71l.505-.69c.314-.426.028-1.312-1.095-1.312H4.22zm7.204 0l-1.475 2.002h5.39l1.473-2.002H14.61l-.843 1.146h-.985l.846-1.146h-2.203zm6.105 0l-1.474 2.002h2.334l1.472-2.002H17.53zm-12.845 1.3l-1.54 2.094h3.754c1.24 0 1.932-.844 2.145-1.136h-2.56c-.326 0-.226-.133-.172-.207.107-.143.283-.388.388-.53.104-.14.107-.22-.105-.22h-1.91zM0 12.562v.242h3.398l.176-.242H0zm9.762 0l-.836 1.136h2.203l.836-1.136H9.762zm3.185 0l-.836 1.136h2.203l.836-1.136h-2.203zm2.918 0s-.159.22-.238.326c-.276.374-.033.81.87.81h3.538l.834-1.136h-5.004zm5.408 0l-.177.242H24v-.242h-2.727zM0 13.01v.24h3.068l.178-.24H0zm20.943 0l-.175.24H24v-.24h-3.057zM0 13.457v.24h2.74l.176-.24H0zm20.615 0l-.177.24H24v-.24h-3.385z" }) + ] + } + ); +}); + +exports.default = SiDhl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.d.ts new file mode 100644 index 000000000..e02ce46e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCC00"; +declare const SiDhl: IconType; +export { SiDhl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.mjs new file mode 100644 index 000000000..f6d41b4c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDhl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCC00"; +const SiDhl = React.forwardRef(function SiDhl2({ title = "DHL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.22 10.303l-.767 1.043h4.18c.21 0 .208.078.105.218-.105.142-.28.39-.386.534-.054.073-.154.207.171.207h1.71l.505-.69c.314-.426.028-1.312-1.095-1.312H4.22zm7.204 0l-1.475 2.002h5.39l1.473-2.002H14.61l-.843 1.146h-.985l.846-1.146h-2.203zm6.105 0l-1.474 2.002h2.334l1.472-2.002H17.53zm-12.845 1.3l-1.54 2.094h3.754c1.24 0 1.932-.844 2.145-1.136h-2.56c-.326 0-.226-.133-.172-.207.107-.143.283-.388.388-.53.104-.14.107-.22-.105-.22h-1.91zM0 12.562v.242h3.398l.176-.242H0zm9.762 0l-.836 1.136h2.203l.836-1.136H9.762zm3.185 0l-.836 1.136h2.203l.836-1.136h-2.203zm2.918 0s-.159.22-.238.326c-.276.374-.033.81.87.81h3.538l.834-1.136h-5.004zm5.408 0l-.177.242H24v-.242h-2.727zM0 13.01v.24h3.068l.178-.24H0zm20.943 0l-.175.24H24v-.24h-3.057zM0 13.457v.24h2.74l.176-.24H0zm20.615 0l-.177.24H24v-.24h-3.385z" }) + ] + } + ); +}); + +export { SiDhl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.cjs new file mode 100644 index 000000000..7f7a41377 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F08705"; +const SiDiagramsdotnet = React__namespace.forwardRef(function SiDiagramsdotnet2({ title = "diagrams.net", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.69 13.419h-2.527l-2.667-4.555a1.292 1.292 0 001.035-1.28V4.16c0-.725-.576-1.312-1.302-1.312H9.771c-.726 0-1.312.576-1.312 1.301v3.435c0 .619.426 1.152 1.034 1.28l-2.666 4.555H4.309c-.725 0-1.312.576-1.312 1.301v3.435c0 .725.576 1.312 1.302 1.312h4.458c.726 0 1.312-.576 1.312-1.302v-3.434c0-.726-.576-1.312-1.301-1.312h-.437l2.645-4.523h2.059l2.656 4.523h-.438c-.725 0-1.312.576-1.312 1.301v3.435c0 .725.576 1.312 1.302 1.312H19.7c.726 0 1.312-.576 1.312-1.302v-3.434c0-.726-.576-1.312-1.301-1.312zM24 22.976c0 .565-.459 1.024-1.013 1.024H1.024A1.022 1.022 0 010 22.987V1.024C0 .459.459 0 1.013 0h21.963C23.541 0 24 .459 24 1.013z" }) + ] + } + ); +}); + +exports.default = SiDiagramsdotnet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.d.ts new file mode 100644 index 000000000..4305b0b08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F08705"; +declare const SiDiagramsdotnet: IconType; +export { SiDiagramsdotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.mjs new file mode 100644 index 000000000..c763289c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiagramsdotnet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F08705"; +const SiDiagramsdotnet = React.forwardRef(function SiDiagramsdotnet2({ title = "diagrams.net", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.69 13.419h-2.527l-2.667-4.555a1.292 1.292 0 001.035-1.28V4.16c0-.725-.576-1.312-1.302-1.312H9.771c-.726 0-1.312.576-1.312 1.301v3.435c0 .619.426 1.152 1.034 1.28l-2.666 4.555H4.309c-.725 0-1.312.576-1.312 1.301v3.435c0 .725.576 1.312 1.302 1.312h4.458c.726 0 1.312-.576 1.312-1.302v-3.434c0-.726-.576-1.312-1.301-1.312h-.437l2.645-4.523h2.059l2.656 4.523h-.438c-.725 0-1.312.576-1.312 1.301v3.435c0 .725.576 1.312 1.302 1.312H19.7c.726 0 1.312-.576 1.312-1.302v-3.434c0-.726-.576-1.312-1.301-1.312zM24 22.976c0 .565-.459 1.024-1.013 1.024H1.024A1.022 1.022 0 010 22.987V1.024C0 .459.459 0 1.013 0h21.963C23.541 0 24 .459 24 1.013z" }) + ] + } + ); +}); + +export { SiDiagramsdotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.cjs new file mode 100644 index 000000000..161cd721f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9800"; +const SiDialogflow = React__namespace.forwardRef(function SiDialogflow2({ title = "Dialogflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.996 0a1.639 1.639 0 0 0-.82.22L3.344 4.74a1.648 1.648 0 0 0-.535.498l9.136 5.28 9.213-5.32a1.652 1.652 0 0 0-.51-.458L12.818.22a1.639 1.639 0 0 0-.822-.22zm9.336 5.5l-9.387 5.422-9.3-5.373a1.648 1.648 0 0 0-.12.615v9.043a1.643 1.643 0 0 0 .819 1.42l3.918 2.266v4.617a.493.493 0 0 0 .74.424l12.654-7.303a1.639 1.639 0 0 0 .819-1.42V6.162a1.652 1.652 0 0 0-.143-.662z" }) + ] + } + ); +}); + +exports.default = SiDialogflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.d.ts new file mode 100644 index 000000000..168909835 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9800"; +declare const SiDialogflow: IconType; +export { SiDialogflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.mjs new file mode 100644 index 000000000..bdcecf361 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDialogflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9800"; +const SiDialogflow = React.forwardRef(function SiDialogflow2({ title = "Dialogflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.996 0a1.639 1.639 0 0 0-.82.22L3.344 4.74a1.648 1.648 0 0 0-.535.498l9.136 5.28 9.213-5.32a1.652 1.652 0 0 0-.51-.458L12.818.22a1.639 1.639 0 0 0-.822-.22zm9.336 5.5l-9.387 5.422-9.3-5.373a1.648 1.648 0 0 0-.12.615v9.043a1.643 1.643 0 0 0 .819 1.42l3.918 2.266v4.617a.493.493 0 0 0 .74.424l12.654-7.303a1.639 1.639 0 0 0 .819-1.42V6.162a1.652 1.652 0 0 0-.143-.662z" }) + ] + } + ); +}); + +export { SiDialogflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.cjs new file mode 100644 index 000000000..d2fd5c1ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDiaspora = React__namespace.forwardRef(function SiDiaspora2({ title = "Diaspora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.257 21.928l-2.33-3.255c-.622-.87-1.128-1.549-1.155-1.55-.027 0-1.007 1.317-2.317 3.115-1.248 1.713-2.28 3.115-2.292 3.115-.035 0-4.5-3.145-4.51-3.178-.006-.016 1.003-1.497 2.242-3.292 1.239-1.794 2.252-3.29 2.252-3.325 0-.056-.401-.197-3.55-1.247a1604.93 1604.93 0 0 1-3.593-1.2c-.033-.013.153-.635.79-2.648.46-1.446.845-2.642.857-2.656.013-.015 1.71.528 3.772 1.207 2.062.678 3.766 1.233 3.787 1.233.021 0 .045-.032.053-.07.008-.039.026-1.794.04-3.902.013-2.107.036-3.848.05-3.87.02-.03.599-.038 2.725-.038 1.485 0 2.716.01 2.735.023.023.016.064 1.175.132 3.776.112 4.273.115 4.33.183 4.33.026 0 1.66-.547 3.631-1.216 1.97-.668 3.593-1.204 3.605-1.191.04.045 1.656 5.307 1.636 5.327-.011.01-1.656.574-3.655 1.252-2.75.932-3.638 1.244-3.645 1.284-.006.029.94 1.442 2.143 3.202 1.184 1.733 2.148 3.164 2.143 3.18-.012.036-4.442 3.299-4.48 3.299-.015 0-.577-.767-1.249-1.705z" }) + ] + } + ); +}); + +exports.default = SiDiaspora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.d.ts new file mode 100644 index 000000000..45dda8bc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDiaspora: IconType; +export { SiDiaspora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.mjs new file mode 100644 index 000000000..26be81553 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiaspora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDiaspora = React.forwardRef(function SiDiaspora2({ title = "Diaspora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.257 21.928l-2.33-3.255c-.622-.87-1.128-1.549-1.155-1.55-.027 0-1.007 1.317-2.317 3.115-1.248 1.713-2.28 3.115-2.292 3.115-.035 0-4.5-3.145-4.51-3.178-.006-.016 1.003-1.497 2.242-3.292 1.239-1.794 2.252-3.29 2.252-3.325 0-.056-.401-.197-3.55-1.247a1604.93 1604.93 0 0 1-3.593-1.2c-.033-.013.153-.635.79-2.648.46-1.446.845-2.642.857-2.656.013-.015 1.71.528 3.772 1.207 2.062.678 3.766 1.233 3.787 1.233.021 0 .045-.032.053-.07.008-.039.026-1.794.04-3.902.013-2.107.036-3.848.05-3.87.02-.03.599-.038 2.725-.038 1.485 0 2.716.01 2.735.023.023.016.064 1.175.132 3.776.112 4.273.115 4.33.183 4.33.026 0 1.66-.547 3.631-1.216 1.97-.668 3.593-1.204 3.605-1.191.04.045 1.656 5.307 1.636 5.327-.011.01-1.656.574-3.655 1.252-2.75.932-3.638 1.244-3.645 1.284-.006.029.94 1.442 2.143 3.202 1.184 1.733 2.148 3.164 2.143 3.18-.012.036-4.442 3.299-4.48 3.299-.015 0-.577-.767-1.249-1.705z" }) + ] + } + ); +}); + +export { SiDiaspora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.cjs new file mode 100644 index 000000000..fb8aed331 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0049D7"; +const SiDictionarydotcom = React__namespace.forwardRef(function SiDictionarydotcom2({ title = "Dictionary.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.894.087 1.043 0a.3.3 0 0 0-.305.293V18.97a.331.331 0 0 0 .166.28l8.13 4.713a.268.268 0 0 0 .364-.092.27.27 0 0 0 .038-.138V6.275a.33.33 0 0 0-.176-.292L4.944 3.625a.173.173 0 0 1-.084-.21.173.173 0 0 1 .197-.112l7.804 1.333a.31.31 0 0 1 .252.302v15.717a.307.307 0 0 0 .309.308h.035c5.781-.645 9.72-4.693 9.804-10.308.078-6.28-4.595-10.48-11.367-10.568Z" }) + ] + } + ); +}); + +exports.default = SiDictionarydotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.d.ts new file mode 100644 index 000000000..f991f5789 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0049D7"; +declare const SiDictionarydotcom: IconType; +export { SiDictionarydotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.mjs new file mode 100644 index 000000000..779b3d6ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDictionarydotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0049D7"; +const SiDictionarydotcom = React.forwardRef(function SiDictionarydotcom2({ title = "Dictionary.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.894.087 1.043 0a.3.3 0 0 0-.305.293V18.97a.331.331 0 0 0 .166.28l8.13 4.713a.268.268 0 0 0 .364-.092.27.27 0 0 0 .038-.138V6.275a.33.33 0 0 0-.176-.292L4.944 3.625a.173.173 0 0 1-.084-.21.173.173 0 0 1 .197-.112l7.804 1.333a.31.31 0 0 1 .252.302v15.717a.307.307 0 0 0 .309.308h.035c5.781-.645 9.72-4.693 9.804-10.308.078-6.28-4.595-10.48-11.367-10.568Z" }) + ] + } + ); +}); + +export { SiDictionarydotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.cjs new file mode 100644 index 000000000..bb100d16a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDigg = React__namespace.forwardRef(function SiDigg2({ title = "Digg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.76 8.16v8.16h3.84v.96h-3.84v1.92H24V8.16h-6.24zm-7.2 0v8.16h3.84v.96h-3.84v1.92h6.24V8.16h-6.24zM3.84 4.8v3.36H0v8.16h6.24V4.8h-2.4zM9.6 8.16H7.2v8.16h2.4V8.16zm12 6.24h-1.44v-4.32h1.44v4.32zm-17.76 0H2.4v-4.32h1.44v4.32zm10.56 0h-1.44v-4.32h1.44v4.32zM9.6 4.8H7.2v2.4h2.4V4.8z" }) + ] + } + ); +}); + +exports.default = SiDigg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.d.ts new file mode 100644 index 000000000..d9fee2f84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDigg: IconType; +export { SiDigg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.mjs new file mode 100644 index 000000000..0de26059d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDigg = React.forwardRef(function SiDigg2({ title = "Digg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.76 8.16v8.16h3.84v.96h-3.84v1.92H24V8.16h-6.24zm-7.2 0v8.16h3.84v.96h-3.84v1.92h6.24V8.16h-6.24zM3.84 4.8v3.36H0v8.16h6.24V4.8h-2.4zM9.6 8.16H7.2v8.16h2.4V8.16zm12 6.24h-1.44v-4.32h1.44v4.32zm-17.76 0H2.4v-4.32h1.44v4.32zm10.56 0h-1.44v-4.32h1.44v4.32zM9.6 4.8H7.2v2.4h2.4V4.8z" }) + ] + } + ); +}); + +export { SiDigg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.cjs new file mode 100644 index 000000000..5fc2a778a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiDigikeyelectronics = React__namespace.forwardRef(function SiDigikeyelectronics2({ title = "Digi-Key Electronics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.246.221A11.786 11.786 0 0 1 23.89 10.418c.912 6.593-3.944 12.711-10.558 13.297-.454.04-.912.063-1.369.064l-10.705.003v-3.749H0V3.987h1.222V.218l11.024.003zM17.9 19.423l-8.26-7.422 8.25-7.422h-6.938L5.615 9.361V4.598H.56v14.803h5.105v-4.724l5.289 4.746H17.9z" }) + ] + } + ); +}); + +exports.default = SiDigikeyelectronics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.d.ts new file mode 100644 index 000000000..276c405ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiDigikeyelectronics: IconType; +export { SiDigikeyelectronics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.mjs new file mode 100644 index 000000000..107be39f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigikeyelectronics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiDigikeyelectronics = React.forwardRef(function SiDigikeyelectronics2({ title = "Digi-Key Electronics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.246.221A11.786 11.786 0 0 1 23.89 10.418c.912 6.593-3.944 12.711-10.558 13.297-.454.04-.912.063-1.369.064l-10.705.003v-3.749H0V3.987h1.222V.218l11.024.003zM17.9 19.423l-8.26-7.422 8.25-7.422h-6.938L5.615 9.361V4.598H.56v14.803h5.105v-4.724l5.289 4.746H17.9z" }) + ] + } + ); +}); + +export { SiDigikeyelectronics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.cjs new file mode 100644 index 000000000..08fd87f1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0080FF"; +const SiDigitalocean = React__namespace.forwardRef(function SiDigitalocean2({ title = "DigitalOcean", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.04 0C5.408-.02.005 5.37.005 11.992h4.638c0-4.923 4.882-8.731 10.064-6.855a6.95 6.95 0 014.147 4.148c1.889 5.177-1.924 10.055-6.84 10.064v-4.61H7.391v4.623h4.61V24c7.86 0 13.967-7.588 11.397-15.83-1.115-3.59-3.985-6.446-7.575-7.575A12.8 12.8 0 0012.039 0zM7.39 19.362H3.828v3.564H7.39zm-3.563 0v-2.978H.85v2.978z" }) + ] + } + ); +}); + +exports.default = SiDigitalocean; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.d.ts new file mode 100644 index 000000000..88b215493 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0080FF"; +declare const SiDigitalocean: IconType; +export { SiDigitalocean as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.mjs new file mode 100644 index 000000000..5bed347df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDigitalocean.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0080FF"; +const SiDigitalocean = React.forwardRef(function SiDigitalocean2({ title = "DigitalOcean", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.04 0C5.408-.02.005 5.37.005 11.992h4.638c0-4.923 4.882-8.731 10.064-6.855a6.95 6.95 0 014.147 4.148c1.889 5.177-1.924 10.055-6.84 10.064v-4.61H7.391v4.623h4.61V24c7.86 0 13.967-7.588 11.397-15.83-1.115-3.59-3.985-6.446-7.575-7.575A12.8 12.8 0 0012.039 0zM7.39 19.362H3.828v3.564H7.39zm-3.563 0v-2.978H.85v2.978z" }) + ] + } + ); +}); + +export { SiDigitalocean as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.cjs new file mode 100644 index 000000000..24e57f8db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004C97"; +const SiDinersclub = React__namespace.forwardRef(function SiDinersclub2({ title = "Diners Club", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.506 11.982a6.026 6.026 0 0 0-3.866-5.618V17.6a6.025 6.025 0 0 0 3.866-5.618zM8.33 17.598V6.365a6.03 6.03 0 0 0-3.863 5.617 6.028 6.028 0 0 0 3.863 5.616zm2.156-15.113A9.497 9.497 0 0 0 .99 11.982a9.495 9.495 0 0 0 9.495 9.494c5.245 0 9.495-4.25 9.496-9.494a9.499 9.499 0 0 0-9.496-9.497Zm-.023 19.888C4.723 22.4 0 17.75 0 12.09 0 5.905 4.723 1.626 10.463 1.627h2.69C18.822 1.627 24 5.903 24 12.09c0 5.658-5.176 10.283-10.848 10.283" }) + ] + } + ); +}); + +exports.default = SiDinersclub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.d.ts new file mode 100644 index 000000000..8e2f55dbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004C97"; +declare const SiDinersclub: IconType; +export { SiDinersclub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.mjs new file mode 100644 index 000000000..6f4008de3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDinersclub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004C97"; +const SiDinersclub = React.forwardRef(function SiDinersclub2({ title = "Diners Club", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.506 11.982a6.026 6.026 0 0 0-3.866-5.618V17.6a6.025 6.025 0 0 0 3.866-5.618zM8.33 17.598V6.365a6.03 6.03 0 0 0-3.863 5.617 6.028 6.028 0 0 0 3.863 5.616zm2.156-15.113A9.497 9.497 0 0 0 .99 11.982a9.495 9.495 0 0 0 9.495 9.494c5.245 0 9.495-4.25 9.496-9.494a9.499 9.499 0 0 0-9.496-9.497Zm-.023 19.888C4.723 22.4 0 17.75 0 12.09 0 5.905 4.723 1.626 10.463 1.627h2.69C18.822 1.627 24 5.903 24 12.09c0 5.658-5.176 10.283-10.848 10.283" }) + ] + } + ); +}); + +export { SiDinersclub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDior.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDior.cjs new file mode 100644 index 000000000..2b98484f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDior.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDior = React__namespace.forwardRef(function SiDior2({ title = "Dior", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.0728 8.7751h3.1157c2.6789 0 3.7272 1.5724 3.7272 3.237 0 1.6937-1.3443 3.203-3.9019 3.203H.0776c-.0534 0-.0728-.034-.0728-.0631 0-.034.034-.0631.0825-.0631h.5484c.1699 0 .2815-.1019.2815-.2912V9.2022c0-.1407-.0679-.296-.2912-.296H.0679C.0243 8.9062 0 8.8771 0 8.8431c0-.0291.0097-.068.0728-.068m1.9461 6.1392c0 .1407.0631.1844.1553.1844h.825c2.0334 0 2.7711-1.5578 2.7711-3.1205S4.9889 8.9013 3.271 8.9013H2.1499c-.1165 0-.1262.0971-.1262.1407l-.0048 5.8723zm5.2073-6.1392c-.0485 0-.0922.0194-.0922.0582s.0243.0631.0679.0631h.5484c.1262 0 .2475.0874.2475.33v5.5762c0 .1165-.0874.2912-.2427.2912h-.5434c-.0631 0-.0679.0485-.0679.0679s-.0049.0534.0679.0534h2.6401c.0388 0 .0922-.0049.0922-.0437s-.0097-.0776-.0776-.0776h-.5097c-.0728 0-.2718-.0437-.2718-.2669V9.1682c0-.1602.1019-.2669.2863-.2669h.4999c.0437 0 .0679-.0243.0679-.0582 0-.034-.0243-.0631-.0825-.0631-.0005-.0048-2.6396.0092-2.6303-.0049zm4.1251 3.2225c0-1.7811.7959-3.2224 2.2906-3.2224 1.4656 0 2.2906 1.4414 2.2906 3.2224S15.1804 15.22 13.642 15.22c-1.4899.0049-2.2907-1.4414-2.2907-3.2224m2.2907 3.3583c2.1256 0 3.4651-1.5044 3.4651-3.3535s-1.3249-3.3583-3.4651-3.3583c-2.1353 0-3.4651 1.5044-3.4651 3.3535s1.3831 3.3583 3.4651 3.3583m10.2593-.1796c-.8347.0874-1.2958-1.2812-1.718-1.9315-.3154-.4805-.9852-.9706-1.6452-1.0677 1.0871-.0631 2.3052-.4125 2.3052-1.6452 0-.9997-.6163-1.7568-2.8779-1.7568h-2.6061c-.034 0-.0679.0194-.0679.0582s.034.0631.0679.0631h.5969c.1262 0 .2475.0874.2475.33v5.5762c0 .1165-.0874.2912-.2427.2912h-.587c-.0485 0-.0679.0388-.0679.0582s.0194.0631.0679.0631h2.7662c.0388 0 .0728-.0194.0728-.0582s-.0243-.0631-.0776-.0631h-.5581c-.0728 0-.2718-.0485-.2718-.2669v-2.6352h.2863c1.3686 0 1.4705 1.485 2.1499 2.3343.5824.728 1.3443.8202 1.7762.8202.1844 0 .3106-.0049.4271-.034.0728-.0243.0874-.1504-.0437-.1359m-4.3192-6.2798h.4028c.6891 0 1.8053.2718 1.8053 1.5724 0 1.1939-.99 1.5967-1.9073 1.5967h-.5872V9.1682c.0001-.165.102-.2717.2864-.2717" }) + ] + } + ); +}); + +exports.default = SiDior; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDior.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDior.d.ts new file mode 100644 index 000000000..6cb52de3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDior.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDior: IconType; +export { SiDior as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDior.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDior.mjs new file mode 100644 index 000000000..3db6391f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDior.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDior = React.forwardRef(function SiDior2({ title = "Dior", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.0728 8.7751h3.1157c2.6789 0 3.7272 1.5724 3.7272 3.237 0 1.6937-1.3443 3.203-3.9019 3.203H.0776c-.0534 0-.0728-.034-.0728-.0631 0-.034.034-.0631.0825-.0631h.5484c.1699 0 .2815-.1019.2815-.2912V9.2022c0-.1407-.0679-.296-.2912-.296H.0679C.0243 8.9062 0 8.8771 0 8.8431c0-.0291.0097-.068.0728-.068m1.9461 6.1392c0 .1407.0631.1844.1553.1844h.825c2.0334 0 2.7711-1.5578 2.7711-3.1205S4.9889 8.9013 3.271 8.9013H2.1499c-.1165 0-.1262.0971-.1262.1407l-.0048 5.8723zm5.2073-6.1392c-.0485 0-.0922.0194-.0922.0582s.0243.0631.0679.0631h.5484c.1262 0 .2475.0874.2475.33v5.5762c0 .1165-.0874.2912-.2427.2912h-.5434c-.0631 0-.0679.0485-.0679.0679s-.0049.0534.0679.0534h2.6401c.0388 0 .0922-.0049.0922-.0437s-.0097-.0776-.0776-.0776h-.5097c-.0728 0-.2718-.0437-.2718-.2669V9.1682c0-.1602.1019-.2669.2863-.2669h.4999c.0437 0 .0679-.0243.0679-.0582 0-.034-.0243-.0631-.0825-.0631-.0005-.0048-2.6396.0092-2.6303-.0049zm4.1251 3.2225c0-1.7811.7959-3.2224 2.2906-3.2224 1.4656 0 2.2906 1.4414 2.2906 3.2224S15.1804 15.22 13.642 15.22c-1.4899.0049-2.2907-1.4414-2.2907-3.2224m2.2907 3.3583c2.1256 0 3.4651-1.5044 3.4651-3.3535s-1.3249-3.3583-3.4651-3.3583c-2.1353 0-3.4651 1.5044-3.4651 3.3535s1.3831 3.3583 3.4651 3.3583m10.2593-.1796c-.8347.0874-1.2958-1.2812-1.718-1.9315-.3154-.4805-.9852-.9706-1.6452-1.0677 1.0871-.0631 2.3052-.4125 2.3052-1.6452 0-.9997-.6163-1.7568-2.8779-1.7568h-2.6061c-.034 0-.0679.0194-.0679.0582s.034.0631.0679.0631h.5969c.1262 0 .2475.0874.2475.33v5.5762c0 .1165-.0874.2912-.2427.2912h-.587c-.0485 0-.0679.0388-.0679.0582s.0194.0631.0679.0631h2.7662c.0388 0 .0728-.0194.0728-.0582s-.0243-.0631-.0776-.0631h-.5581c-.0728 0-.2718-.0485-.2718-.2669v-2.6352h.2863c1.3686 0 1.4705 1.485 2.1499 2.3343.5824.728 1.3443.8202 1.7762.8202.1844 0 .3106-.0049.4271-.034.0728-.0243.0874-.1504-.0437-.1359m-4.3192-6.2798h.4028c.6891 0 1.8053.2718 1.8053 1.5724 0 1.1939-.99 1.5967-1.9073 1.5967h-.5872V9.1682c.0001-.165.102-.2717.2864-.2717" }) + ] + } + ); +}); + +export { SiDior as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.cjs new file mode 100644 index 000000000..89194b0ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#263238"; +const SiDirectus = React__namespace.forwardRef(function SiDirectus2({ title = "Directus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.187 13.909a1.74 1.74 0 0 1-.286-.092.657.657 0 0 1-.203-.139c.056-.488 0-.912.047-1.392.184-1.862 1.355-1.272 2.406-1.577.655-.184 1.31-.562 1.475-1.336a13.528 13.528 0 0 0-2.397-2.204c-2.85-2.028-6.574-2.84-9.958-2.277a5.113 5.113 0 0 0 2.238 2.074s-.917 0-1.703-.587c-.23.092-.692.274-.913.384a5.094 5.094 0 0 0 6.63.37c-.01.017-.185.285-.397 1.4-.47 2.38-1.826 2.195-3.504 1.596-3.485-1.264-5.403-.093-7.145-2.49-.507.286-.82.82-.82 1.402 0 .599.331 1.106.81 1.383.262-.348.38-.446.836-.446-.706.4-.79.75-1.094 1.718-.368 1.171-.212 2.37-1.936 2.683-.913.046-.894.664-1.226 1.586-.415 1.199-.968 1.678-2.047 2.812.443.535.904.6 1.374.406.968-.406 1.715-1.66 2.415-2.471.784-.904 2.665-.517 4.085-1.402.977-.599 1.457-1.41.811-2.784a2.72 2.72 0 0 1 .701 1.66c1.641-.213 3.836 1.788 5.836 2.12a3.574 3.574 0 0 1-.488-.82c-.23-.554-.304-1.06-.258-1.503.184 1.097 1.29 2.507 3.07 2.637.452.036.95-.019 1.466-.176.618-.184 1.19-.424 1.872-.295.507.093.977.35 1.272.784.443.645 1.41.784 1.844-.009-.977-2.554-3.67-2.72-4.813-3.015z" }) + ] + } + ); +}); + +exports.default = SiDirectus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.d.ts new file mode 100644 index 000000000..1b4b6601b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#263238"; +declare const SiDirectus: IconType; +export { SiDirectus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.mjs new file mode 100644 index 000000000..ed01b9746 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDirectus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#263238"; +const SiDirectus = React.forwardRef(function SiDirectus2({ title = "Directus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.187 13.909a1.74 1.74 0 0 1-.286-.092.657.657 0 0 1-.203-.139c.056-.488 0-.912.047-1.392.184-1.862 1.355-1.272 2.406-1.577.655-.184 1.31-.562 1.475-1.336a13.528 13.528 0 0 0-2.397-2.204c-2.85-2.028-6.574-2.84-9.958-2.277a5.113 5.113 0 0 0 2.238 2.074s-.917 0-1.703-.587c-.23.092-.692.274-.913.384a5.094 5.094 0 0 0 6.63.37c-.01.017-.185.285-.397 1.4-.47 2.38-1.826 2.195-3.504 1.596-3.485-1.264-5.403-.093-7.145-2.49-.507.286-.82.82-.82 1.402 0 .599.331 1.106.81 1.383.262-.348.38-.446.836-.446-.706.4-.79.75-1.094 1.718-.368 1.171-.212 2.37-1.936 2.683-.913.046-.894.664-1.226 1.586-.415 1.199-.968 1.678-2.047 2.812.443.535.904.6 1.374.406.968-.406 1.715-1.66 2.415-2.471.784-.904 2.665-.517 4.085-1.402.977-.599 1.457-1.41.811-2.784a2.72 2.72 0 0 1 .701 1.66c1.641-.213 3.836 1.788 5.836 2.12a3.574 3.574 0 0 1-.488-.82c-.23-.554-.304-1.06-.258-1.503.184 1.097 1.29 2.507 3.07 2.637.452.036.95-.019 1.466-.176.618-.184 1.19-.424 1.872-.295.507.093.977.35 1.272.784.443.645 1.41.784 1.844-.009-.977-2.554-3.67-2.72-4.813-3.015z" }) + ] + } + ); +}); + +export { SiDirectus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.cjs new file mode 100644 index 000000000..fa4e18df9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiDiscogs = React__namespace.forwardRef(function SiDiscogs2({ title = "Discogs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.7422 11.982c0-5.6682 4.61-10.2782 10.2758-10.2782 1.8238 0 3.5372.48 5.0251 1.3175l.8135-1.4879C16.1768.588 14.2474.036 12.1908.0024h-.1944C5.4091.0144.072 5.3107 0 11.886v.1152c.0072 3.4389 1.4567 6.5345 3.7748 8.7207l1.1855-1.2814c-1.9798-1.8743-3.218-4.526-3.218-7.4585zM20.362 3.4053l-1.1543 1.2406c1.903 1.867 3.0885 4.4636 3.0885 7.3361 0 5.6658-4.61 10.2758-10.2758 10.2758-1.783 0-3.4605-.456-4.922-1.2575l-.8542 1.5214c1.7086.9384 3.6692 1.4735 5.7546 1.4759C18.6245 23.9976 24 18.6246 24 11.9988c-.0048-3.3717-1.399-6.4146-3.638-8.5935zM1.963 11.982c0 2.8701 1.2119 5.4619 3.146 7.2953l1.1808-1.2767c-1.591-1.5166-2.587-3.6524-2.587-6.0186 0-4.586 3.7293-8.3152 8.3152-8.3152 1.483 0 2.875.3912 4.082 1.0751l.8351-1.5262C15.481 2.395 13.8034 1.927 12.018 1.927 6.4746 1.9246 1.963 6.4362 1.963 11.982zm18.3702 0c0 4.586-3.7293 8.3152-8.3152 8.3152-1.4327 0-2.7837-.3648-3.962-1.0055l-.852 1.5166c1.4303.7823 3.0718 1.2287 4.814 1.2287 5.5434 0 10.055-4.5116 10.055-10.055 0-2.8077-1.1567-5.3467-3.0165-7.1729l-1.183 1.2743c1.519 1.507 2.4597 3.5924 2.4597 5.8986zm-1.9486 0c0 3.5109-2.8558 6.3642-6.3642 6.3642a6.3286 6.3286 0 01-3.0069-.756l-.8471 1.507c1.147.624 2.4597.9768 3.854.9768 4.4636 0 8.0944-3.6308 8.0944-8.0944 0-2.239-.9143-4.2692-2.3902-5.7378l-1.1783 1.267c1.1351 1.152 1.8383 2.731 1.8383 4.4732zm-14.4586 0c0 2.3014.9671 4.382 2.515 5.8578l1.1734-1.2695c-1.207-1.159-1.9606-2.786-1.9606-4.5883 0-3.5108 2.8557-6.3642 6.3642-6.3642 1.1423 0 2.215.3048 3.1437.8352l.8303-1.5167c-1.1759-.6647-2.5317-1.0487-3.974-1.0487-4.4612 0-8.092 3.6308-8.092 8.0944zm12.5292 0c0 2.4502-1.987 4.4372-4.4372 4.4372a4.4192 4.4192 0 01-2.0614-.5088l-.8351 1.4879a6.1135 6.1135 0 002.8965.727c3.3885 0 6.1434-2.7548 6.1434-6.1433 0-1.6774-.6767-3.1989-1.7686-4.3076l-1.1615 1.2503c.7559.7967 1.2239 1.8718 1.2239 3.0573zm-10.5806 0c0 1.7374.7247 3.3069 1.8886 4.4252L8.92 15.1569l.0144.0144c-.8351-.8063-1.3559-1.9366-1.3559-3.1869 0-2.4502 1.9846-4.4372 4.4372-4.4372.8087 0 1.5646.2184 2.2174.5976l.8207-1.4975a6.097 6.097 0 00-3.0381-.8063c-3.3837-.0048-6.141 2.7525-6.141 6.141zm6.681 0c0 .2952-.2424.5351-.5376.5351-.2952 0-.5375-.24-.5375-.5351 0-.2976.24-.5375.5375-.5375.2952 0 .5375.24.5375.5375zm-3.9405 0c0-1.879 1.5239-3.4029 3.4005-3.4029 1.879 0 3.4005 1.5215 3.4005 3.4029 0 1.879-1.5239 3.4005-3.4005 3.4005S8.6151 13.861 8.6151 11.982zm.1488 0c.0048 1.7974 1.4567 3.2493 3.2517 3.2517 1.795 0 3.254-1.4567 3.254-3.2517-.0023-1.7974-1.4566-3.2517-3.254-3.254-1.795 0-3.2517 1.4566-3.2517 3.254Z" }) + ] + } + ); +}); + +exports.default = SiDiscogs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.d.ts new file mode 100644 index 000000000..fd4aca97a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiDiscogs: IconType; +export { SiDiscogs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.mjs new file mode 100644 index 000000000..c586d30b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscogs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiDiscogs = React.forwardRef(function SiDiscogs2({ title = "Discogs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.7422 11.982c0-5.6682 4.61-10.2782 10.2758-10.2782 1.8238 0 3.5372.48 5.0251 1.3175l.8135-1.4879C16.1768.588 14.2474.036 12.1908.0024h-.1944C5.4091.0144.072 5.3107 0 11.886v.1152c.0072 3.4389 1.4567 6.5345 3.7748 8.7207l1.1855-1.2814c-1.9798-1.8743-3.218-4.526-3.218-7.4585zM20.362 3.4053l-1.1543 1.2406c1.903 1.867 3.0885 4.4636 3.0885 7.3361 0 5.6658-4.61 10.2758-10.2758 10.2758-1.783 0-3.4605-.456-4.922-1.2575l-.8542 1.5214c1.7086.9384 3.6692 1.4735 5.7546 1.4759C18.6245 23.9976 24 18.6246 24 11.9988c-.0048-3.3717-1.399-6.4146-3.638-8.5935zM1.963 11.982c0 2.8701 1.2119 5.4619 3.146 7.2953l1.1808-1.2767c-1.591-1.5166-2.587-3.6524-2.587-6.0186 0-4.586 3.7293-8.3152 8.3152-8.3152 1.483 0 2.875.3912 4.082 1.0751l.8351-1.5262C15.481 2.395 13.8034 1.927 12.018 1.927 6.4746 1.9246 1.963 6.4362 1.963 11.982zm18.3702 0c0 4.586-3.7293 8.3152-8.3152 8.3152-1.4327 0-2.7837-.3648-3.962-1.0055l-.852 1.5166c1.4303.7823 3.0718 1.2287 4.814 1.2287 5.5434 0 10.055-4.5116 10.055-10.055 0-2.8077-1.1567-5.3467-3.0165-7.1729l-1.183 1.2743c1.519 1.507 2.4597 3.5924 2.4597 5.8986zm-1.9486 0c0 3.5109-2.8558 6.3642-6.3642 6.3642a6.3286 6.3286 0 01-3.0069-.756l-.8471 1.507c1.147.624 2.4597.9768 3.854.9768 4.4636 0 8.0944-3.6308 8.0944-8.0944 0-2.239-.9143-4.2692-2.3902-5.7378l-1.1783 1.267c1.1351 1.152 1.8383 2.731 1.8383 4.4732zm-14.4586 0c0 2.3014.9671 4.382 2.515 5.8578l1.1734-1.2695c-1.207-1.159-1.9606-2.786-1.9606-4.5883 0-3.5108 2.8557-6.3642 6.3642-6.3642 1.1423 0 2.215.3048 3.1437.8352l.8303-1.5167c-1.1759-.6647-2.5317-1.0487-3.974-1.0487-4.4612 0-8.092 3.6308-8.092 8.0944zm12.5292 0c0 2.4502-1.987 4.4372-4.4372 4.4372a4.4192 4.4192 0 01-2.0614-.5088l-.8351 1.4879a6.1135 6.1135 0 002.8965.727c3.3885 0 6.1434-2.7548 6.1434-6.1433 0-1.6774-.6767-3.1989-1.7686-4.3076l-1.1615 1.2503c.7559.7967 1.2239 1.8718 1.2239 3.0573zm-10.5806 0c0 1.7374.7247 3.3069 1.8886 4.4252L8.92 15.1569l.0144.0144c-.8351-.8063-1.3559-1.9366-1.3559-3.1869 0-2.4502 1.9846-4.4372 4.4372-4.4372.8087 0 1.5646.2184 2.2174.5976l.8207-1.4975a6.097 6.097 0 00-3.0381-.8063c-3.3837-.0048-6.141 2.7525-6.141 6.141zm6.681 0c0 .2952-.2424.5351-.5376.5351-.2952 0-.5375-.24-.5375-.5351 0-.2976.24-.5375.5375-.5375.2952 0 .5375.24.5375.5375zm-3.9405 0c0-1.879 1.5239-3.4029 3.4005-3.4029 1.879 0 3.4005 1.5215 3.4005 3.4029 0 1.879-1.5239 3.4005-3.4005 3.4005S8.6151 13.861 8.6151 11.982zm.1488 0c.0048 1.7974 1.4567 3.2493 3.2517 3.2517 1.795 0 3.254-1.4567 3.254-3.2517-.0023-1.7974-1.4566-3.2517-3.254-3.254-1.795 0-3.2517 1.4566-3.2517 3.254Z" }) + ] + } + ); +}); + +export { SiDiscogs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.cjs new file mode 100644 index 000000000..a080618c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5865F2"; +const SiDiscord = React__namespace.forwardRef(function SiDiscord2({ title = "Discord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z" }) + ] + } + ); +}); + +exports.default = SiDiscord; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.d.ts new file mode 100644 index 000000000..c525bba76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5865F2"; +declare const SiDiscord: IconType; +export { SiDiscord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.mjs new file mode 100644 index 000000000..87e1cb7c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscord.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5865F2"; +const SiDiscord = React.forwardRef(function SiDiscord2({ title = "Discord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z" }) + ] + } + ); +}); + +export { SiDiscord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.cjs new file mode 100644 index 000000000..87f168688 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5865F2"; +const SiDiscorddotjs = React__namespace.forwardRef(function SiDiscorddotjs2({ title = "discord.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.427 5.015c-1.586 0-2.907.607-3.702 1.561h.002-.002a3.448 3.448 0 0 0-.806 2.401c.06 1.485.92 2.423 1.92 3.017a6.316 6.316 0 0 0 .796.397l1.833.804c.986.41 1.735.717 1.999 1.39.066.17.102.363.102.588 0 1.05-.844 1.73-2.348 1.73-1.257 0-2.555-.617-3.523-1.524l-1.11 1.31-.27.318a6.93 6.93 0 0 0 4.841 1.978c2.441 0 4.092-1.179 4.64-2.78A3.754 3.754 0 0 0 24 14.988c0-.328-.032-.628-.091-.906-.23-1.07-.879-1.789-1.783-2.321a7.17 7.17 0 0 0-.001 0 7.17 7.17 0 0 0-.844-.42l-1.813-.763c-.895-.364-1.737-.69-2.032-1.35a1.319 1.319 0 0 1-.11-.545c0-.99.824-1.587 2.101-1.587 1.153 0 2.08.433 2.925 1.154l.897-1.106.34-.419a5.96 5.96 0 0 0-4.162-1.71ZM0 5.015v10.313h3.904c1.024 0 1.808-.162 2.535-.53a2.147 2.147 0 0 1 2.247-2.225c.372-.755.522-1.505.522-2.49 0-1.016-.191-1.9-.575-2.666a4.278 4.278 0 0 0-1.738-1.769c-.766-.427-1.694-.633-2.8-.633Zm10.726 0v9.707c0 1.187-.96 2.15-2.144 2.15a2.141 2.141 0 0 1-1.816-1.007l-.215.093a7.533 7.533 0 0 1-.625.24 6.853 6.853 0 0 1-1.113.241c.42 1.344 2.06 2.662 3.974 2.538 1.804 0 3.053-.89 3.717-2.18.372-.72.562-1.567.562-2.454V5.015Zm-8.251 2.21h1.488c.87 0 1.533.25 1.975.766.442.516.662 1.223.662 2.136 0 .928-.236 1.65-.692 2.18-.457.546-1.135.811-2.034.811H2.475Zm6.113 6.142a1.355 1.355 0 1 0 0 2.71 1.355 1.355 0 0 0 0-2.71z" }) + ] + } + ); +}); + +exports.default = SiDiscorddotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.d.ts new file mode 100644 index 000000000..cf2bf6098 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5865F2"; +declare const SiDiscorddotjs: IconType; +export { SiDiscorddotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.mjs new file mode 100644 index 000000000..ee1d4f38c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscorddotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5865F2"; +const SiDiscorddotjs = React.forwardRef(function SiDiscorddotjs2({ title = "discord.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.427 5.015c-1.586 0-2.907.607-3.702 1.561h.002-.002a3.448 3.448 0 0 0-.806 2.401c.06 1.485.92 2.423 1.92 3.017a6.316 6.316 0 0 0 .796.397l1.833.804c.986.41 1.735.717 1.999 1.39.066.17.102.363.102.588 0 1.05-.844 1.73-2.348 1.73-1.257 0-2.555-.617-3.523-1.524l-1.11 1.31-.27.318a6.93 6.93 0 0 0 4.841 1.978c2.441 0 4.092-1.179 4.64-2.78A3.754 3.754 0 0 0 24 14.988c0-.328-.032-.628-.091-.906-.23-1.07-.879-1.789-1.783-2.321a7.17 7.17 0 0 0-.001 0 7.17 7.17 0 0 0-.844-.42l-1.813-.763c-.895-.364-1.737-.69-2.032-1.35a1.319 1.319 0 0 1-.11-.545c0-.99.824-1.587 2.101-1.587 1.153 0 2.08.433 2.925 1.154l.897-1.106.34-.419a5.96 5.96 0 0 0-4.162-1.71ZM0 5.015v10.313h3.904c1.024 0 1.808-.162 2.535-.53a2.147 2.147 0 0 1 2.247-2.225c.372-.755.522-1.505.522-2.49 0-1.016-.191-1.9-.575-2.666a4.278 4.278 0 0 0-1.738-1.769c-.766-.427-1.694-.633-2.8-.633Zm10.726 0v9.707c0 1.187-.96 2.15-2.144 2.15a2.141 2.141 0 0 1-1.816-1.007l-.215.093a7.533 7.533 0 0 1-.625.24 6.853 6.853 0 0 1-1.113.241c.42 1.344 2.06 2.662 3.974 2.538 1.804 0 3.053-.89 3.717-2.18.372-.72.562-1.567.562-2.454V5.015Zm-8.251 2.21h1.488c.87 0 1.533.25 1.975.766.442.516.662 1.223.662 2.136 0 .928-.236 1.65-.692 2.18-.457.546-1.135.811-2.034.811H2.475Zm6.113 6.142a1.355 1.355 0 1 0 0 2.71 1.355 1.355 0 0 0 0-2.71z" }) + ] + } + ); +}); + +export { SiDiscorddotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.cjs new file mode 100644 index 000000000..4c8aafe01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDiscourse = React__namespace.forwardRef(function SiDiscourse2({ title = "Discourse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.103 0C18.666 0 24 5.485 24 11.997c0 6.51-5.33 11.99-11.9 11.99L0 24V11.79C0 5.28 5.532 0 12.103 0zm.116 4.563c-2.593-.003-4.996 1.352-6.337 3.57-1.33 2.208-1.387 4.957-.148 7.22L4.4 19.61l4.794-1.074c2.745 1.225 5.965.676 8.136-1.39 2.17-2.054 2.86-5.228 1.737-7.997-1.135-2.778-3.84-4.59-6.84-4.585h-.008z" }) + ] + } + ); +}); + +exports.default = SiDiscourse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.d.ts new file mode 100644 index 000000000..d430a81d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDiscourse: IconType; +export { SiDiscourse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.mjs new file mode 100644 index 000000000..710eb6895 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscourse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDiscourse = React.forwardRef(function SiDiscourse2({ title = "Discourse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.103 0C18.666 0 24 5.485 24 11.997c0 6.51-5.33 11.99-11.9 11.99L0 24V11.79C0 5.28 5.532 0 12.103 0zm.116 4.563c-2.593-.003-4.996 1.352-6.337 3.57-1.33 2.208-1.387 4.957-.148 7.22L4.4 19.61l4.794-1.074c2.745 1.225 5.965.676 8.136-1.39 2.17-2.054 2.86-5.228 1.737-7.997-1.135-2.778-3.84-4.59-6.84-4.585h-.008z" }) + ] + } + ); +}); + +export { SiDiscourse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.cjs new file mode 100644 index 000000000..66f358d74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6000"; +const SiDiscover = React__namespace.forwardRef(function SiDiscover2({ title = "Discover", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.58 12a2.023 2.023 0 1 1-2.025-2.023h.002c1.118 0 2.023.906 2.023 2.023zm-5.2-2.001c-1.124 0-2.025.884-2.025 1.99 0 1.118.878 1.984 2.007 1.984.319 0 .593-.063.93-.221v-.873c-.296.297-.559.416-.895.416-.747 0-1.277-.542-1.277-1.312 0-.73.547-1.306 1.243-1.306.354 0 .622.126.93.428v-.873a1.898 1.898 0 0 0-.913-.233zm-3.352 1.545c-.445-.165-.576-.273-.576-.479 0-.239.233-.422.553-.422.222 0 .405.091.598.308l.388-.508a1.665 1.665 0 0 0-1.117-.422c-.673 0-1.186.467-1.186 1.089 0 .524.239.792.936 1.043.291.103.438.171.513.217a.456.456 0 0 1 .222.394c0 .308-.245.536-.576.536-.354 0-.639-.177-.809-.507l-.479.461c.342.502.752.724 1.317.724.771 0 1.311-.513 1.311-1.249-.002-.603-.252-.876-1.095-1.185zM24 10.3a.29.29 0 0 1-.288.291.29.29 0 0 1-.291-.291v-.003A.29.29 0 1 1 24 10.3zm-.059.001a.235.235 0 0 0-.231-.239.234.234 0 0 0-.232.239c0 .132.104.239.232.239a.235.235 0 0 0 .231-.239zM3.472 13.887h.742v-3.803h-.742v3.803zm12.702-1.248l-1.014-2.554h-.81l1.614 3.9h.399l1.643-3.9h-.804l-1.028 2.554zm2.166 1.248h2.104v-.644h-1.362v-1.027h1.312v-.644h-1.312v-.844h1.362v-.644H18.34v3.803zm5.409-3.557l.11.138h-.097l-.094-.13v.13h-.08v-.334h.107c.081 0 .126.036.126.103.001.046-.025.08-.072.093zm-.006-.092c0-.029-.021-.043-.06-.043h-.014v.087h.014c.039 0 .06-.014.06-.044zm-1.228 2.047l1.197 1.602H22.8l-1.027-1.528h-.097v1.528h-.741v-3.803h1.1c.855 0 1.346.411 1.346 1.123 0 .583-.308.965-.866 1.078zm.103-1.038c0-.37-.251-.563-.713-.563h-.228v1.152h.217c.473-.001.724-.207.724-.589zm-19.487.742a1.91 1.91 0 0 1-.69 1.46c-.365.303-.781.439-1.357.439H.001v-3.803H1.09c1.202 0 2.041.781 2.041 1.904zm-.764-.006c0-.364-.154-.718-.411-.947-.245-.222-.536-.308-1.015-.308H.742v2.515h.199c.479 0 .782-.092 1.015-.302.256-.228.411-.593.411-.958z" }) + ] + } + ); +}); + +exports.default = SiDiscover; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.d.ts new file mode 100644 index 000000000..6f568821f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6000"; +declare const SiDiscover: IconType; +export { SiDiscover as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.mjs new file mode 100644 index 000000000..060390215 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDiscover.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6000"; +const SiDiscover = React.forwardRef(function SiDiscover2({ title = "Discover", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.58 12a2.023 2.023 0 1 1-2.025-2.023h.002c1.118 0 2.023.906 2.023 2.023zm-5.2-2.001c-1.124 0-2.025.884-2.025 1.99 0 1.118.878 1.984 2.007 1.984.319 0 .593-.063.93-.221v-.873c-.296.297-.559.416-.895.416-.747 0-1.277-.542-1.277-1.312 0-.73.547-1.306 1.243-1.306.354 0 .622.126.93.428v-.873a1.898 1.898 0 0 0-.913-.233zm-3.352 1.545c-.445-.165-.576-.273-.576-.479 0-.239.233-.422.553-.422.222 0 .405.091.598.308l.388-.508a1.665 1.665 0 0 0-1.117-.422c-.673 0-1.186.467-1.186 1.089 0 .524.239.792.936 1.043.291.103.438.171.513.217a.456.456 0 0 1 .222.394c0 .308-.245.536-.576.536-.354 0-.639-.177-.809-.507l-.479.461c.342.502.752.724 1.317.724.771 0 1.311-.513 1.311-1.249-.002-.603-.252-.876-1.095-1.185zM24 10.3a.29.29 0 0 1-.288.291.29.29 0 0 1-.291-.291v-.003A.29.29 0 1 1 24 10.3zm-.059.001a.235.235 0 0 0-.231-.239.234.234 0 0 0-.232.239c0 .132.104.239.232.239a.235.235 0 0 0 .231-.239zM3.472 13.887h.742v-3.803h-.742v3.803zm12.702-1.248l-1.014-2.554h-.81l1.614 3.9h.399l1.643-3.9h-.804l-1.028 2.554zm2.166 1.248h2.104v-.644h-1.362v-1.027h1.312v-.644h-1.312v-.844h1.362v-.644H18.34v3.803zm5.409-3.557l.11.138h-.097l-.094-.13v.13h-.08v-.334h.107c.081 0 .126.036.126.103.001.046-.025.08-.072.093zm-.006-.092c0-.029-.021-.043-.06-.043h-.014v.087h.014c.039 0 .06-.014.06-.044zm-1.228 2.047l1.197 1.602H22.8l-1.027-1.528h-.097v1.528h-.741v-3.803h1.1c.855 0 1.346.411 1.346 1.123 0 .583-.308.965-.866 1.078zm.103-1.038c0-.37-.251-.563-.713-.563h-.228v1.152h.217c.473-.001.724-.207.724-.589zm-19.487.742a1.91 1.91 0 0 1-.69 1.46c-.365.303-.781.439-1.357.439H.001v-3.803H1.09c1.202 0 2.041.781 2.041 1.904zm-.764-.006c0-.364-.154-.718-.411-.947-.245-.222-.536-.308-1.015-.308H.742v2.515h.199c.479 0 .782-.092 1.015-.302.256-.228.411-.593.411-.958z" }) + ] + } + ); +}); + +export { SiDiscover as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.cjs new file mode 100644 index 000000000..e1d36a3a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E9FFF"; +const SiDisqus = React__namespace.forwardRef(function SiDisqus2({ title = "Disqus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.438 23.654c-2.853 0-5.46-1.04-7.476-2.766L0 21.568l1.917-4.733C1.25 15.36.875 13.725.875 12 .875 5.564 6.05.346 12.44.346 18.82.346 24 5.564 24 12c0 6.438-5.176 11.654-11.562 11.654zm6.315-11.687v-.033c0-3.363-2.373-5.76-6.462-5.76H7.877V17.83h4.35c4.12 0 6.525-2.5 6.525-5.863h.004zm-6.415 2.998h-1.29V9.04h1.29c1.897 0 3.157 1.08 3.157 2.945v.03c0 1.884-1.26 2.95-3.157 2.95z" }) + ] + } + ); +}); + +exports.default = SiDisqus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.d.ts new file mode 100644 index 000000000..08a9dcf95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E9FFF"; +declare const SiDisqus: IconType; +export { SiDisqus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.mjs new file mode 100644 index 000000000..da0170431 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDisqus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E9FFF"; +const SiDisqus = React.forwardRef(function SiDisqus2({ title = "Disqus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.438 23.654c-2.853 0-5.46-1.04-7.476-2.766L0 21.568l1.917-4.733C1.25 15.36.875 13.725.875 12 .875 5.564 6.05.346 12.44.346 18.82.346 24 5.564 24 12c0 6.438-5.176 11.654-11.562 11.654zm6.315-11.687v-.033c0-3.363-2.373-5.76-6.462-5.76H7.877V17.83h4.35c4.12 0 6.525-2.5 6.525-5.863h.004zm-6.415 2.998h-1.29V9.04h1.29c1.897 0 3.157 1.08 3.157 2.945v.03c0 1.884-1.26 2.95-3.157 2.95z" }) + ] + } + ); +}); + +export { SiDisqus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.cjs new file mode 100644 index 000000000..604ae3101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#50162D"; +const SiDisroot = React__namespace.forwardRef(function SiDisroot2({ title = "Disroot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.976 2.856C2.321 3.296.603 4.491.122 5.536c-.144.315-.164.885-.04 1.133.178.35.343.384 1.387.24.817-.11 1.085-.117 1.985-.055 1.106.076 1.594.213 1.882.522.172.179 3.75 9.033 3.813 9.418.11.694-.234 1.312-1.189 2.143-.797.687-.927.907-.824 1.381.151.666.508.982 1.113.982.508 0 2.095-.268 3.297-.55 3.476-.817 6.437-1.923 8.504-3.173 1.944-1.168 3.25-2.555 3.765-3.984.15-.433.178-.618.185-1.326 0-.975-.11-1.38-.536-1.958-.858-1.16-1.8-2.005-3.338-2.988-2.96-1.902-3.778-2.294-6.67-3.215-2.521-.803-5.358-1.318-7.728-1.394-1.017-.027-1.147-.02-1.752.144zm9.411 6.526c1.477.563 2.823 1.47 4.554 3.07.838.777 1.024 1.072 1.058 1.732.076 1.23-.597 2.033-2.088 2.507-.708.22-2.191.536-2.253.474-.02-.014 0-.13.041-.254.048-.13.062-.447.048-.749-.027-.433-.096-.68-.364-1.319-.179-.433-.708-1.91-1.175-3.283l-.851-2.5.22.047c.123.028.487.151.81.275z" }) + ] + } + ); +}); + +exports.default = SiDisroot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.d.ts new file mode 100644 index 000000000..ca8963a34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#50162D"; +declare const SiDisroot: IconType; +export { SiDisroot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.mjs new file mode 100644 index 000000000..c548c3ed3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDisroot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#50162D"; +const SiDisroot = React.forwardRef(function SiDisroot2({ title = "Disroot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.976 2.856C2.321 3.296.603 4.491.122 5.536c-.144.315-.164.885-.04 1.133.178.35.343.384 1.387.24.817-.11 1.085-.117 1.985-.055 1.106.076 1.594.213 1.882.522.172.179 3.75 9.033 3.813 9.418.11.694-.234 1.312-1.189 2.143-.797.687-.927.907-.824 1.381.151.666.508.982 1.113.982.508 0 2.095-.268 3.297-.55 3.476-.817 6.437-1.923 8.504-3.173 1.944-1.168 3.25-2.555 3.765-3.984.15-.433.178-.618.185-1.326 0-.975-.11-1.38-.536-1.958-.858-1.16-1.8-2.005-3.338-2.988-2.96-1.902-3.778-2.294-6.67-3.215-2.521-.803-5.358-1.318-7.728-1.394-1.017-.027-1.147-.02-1.752.144zm9.411 6.526c1.477.563 2.823 1.47 4.554 3.07.838.777 1.024 1.072 1.058 1.732.076 1.23-.597 2.033-2.088 2.507-.708.22-2.191.536-2.253.474-.02-.014 0-.13.041-.254.048-.13.062-.447.048-.749-.027-.433-.096-.68-.364-1.319-.179-.433-.708-1.91-1.175-3.283l-.851-2.5.22.047c.123.028.487.151.81.275z" }) + ] + } + ); +}); + +export { SiDisroot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.cjs new file mode 100644 index 000000000..310f62107 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4F433C"; +const SiDistrobox = React__namespace.forwardRef(function SiDistrobox2({ title = "Distrobox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a2.596 2.596 0 0 0-1.298.348L2.558 5.05A2.596 2.596 0 0 0 1.26 7.298v9.404a2.596 2.596 0 0 0 1.298 2.248l8.144 4.702a2.596 2.596 0 0 0 2.596 0l8.144-4.702a2.596 2.596 0 0 0 1.298-2.248V7.298a2.596 2.596 0 0 0-1.298-2.248L13.298.348A2.596 2.596 0 0 0 12 0Zm-.15.9a.865.865 0 0 1 .583.102l7.876 4.548a.288.288 0 0 1 0 .5l-7.876 4.547a.865.865 0 0 1-.866 0L3.691 6.049a.288.288 0 0 1 0-.5l7.876-4.547A.865.865 0 0 1 11.85.9zm4.126 4.069-2.666 1.54.69.398 2.667-1.539zm-5.025.4-3.618.862.846.489 2.239-.634-1.083 1.301.846.489 1.493-2.089zM2.498 7.746a.288.288 0 0 1 .194.034l7.876 4.547a.865.865 0 0 1 .433.75v9.095a.288.288 0 0 1-.433.25l-7.876-4.548a.865.865 0 0 1-.433-.75V8.03a.288.288 0 0 1 .239-.284zm19.004 0a.288.288 0 0 1 .239.284v9.095a.865.865 0 0 1-.433.749l-7.876 4.547a.288.288 0 0 1-.433-.25v-9.094a.865.865 0 0 1 .433-.75l7.876-4.547a.288.288 0 0 1 .194-.034zm-17.58 3.529v.977l1.67 1.622-1.67-.288v.977l2.556.249v-.835zm13.296 2.878-2.555.248v.977l1.668-.304-1.668 1.639v.977l2.555-2.703zm2.86.85-2.667 1.539v.798l2.666-1.54zM6.67 16.589v.798l2.666 1.54v-.798z" }) + ] + } + ); +}); + +exports.default = SiDistrobox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.d.ts new file mode 100644 index 000000000..266148bba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4F433C"; +declare const SiDistrobox: IconType; +export { SiDistrobox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.mjs new file mode 100644 index 000000000..d8bd687c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrobox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4F433C"; +const SiDistrobox = React.forwardRef(function SiDistrobox2({ title = "Distrobox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a2.596 2.596 0 0 0-1.298.348L2.558 5.05A2.596 2.596 0 0 0 1.26 7.298v9.404a2.596 2.596 0 0 0 1.298 2.248l8.144 4.702a2.596 2.596 0 0 0 2.596 0l8.144-4.702a2.596 2.596 0 0 0 1.298-2.248V7.298a2.596 2.596 0 0 0-1.298-2.248L13.298.348A2.596 2.596 0 0 0 12 0Zm-.15.9a.865.865 0 0 1 .583.102l7.876 4.548a.288.288 0 0 1 0 .5l-7.876 4.547a.865.865 0 0 1-.866 0L3.691 6.049a.288.288 0 0 1 0-.5l7.876-4.547A.865.865 0 0 1 11.85.9zm4.126 4.069-2.666 1.54.69.398 2.667-1.539zm-5.025.4-3.618.862.846.489 2.239-.634-1.083 1.301.846.489 1.493-2.089zM2.498 7.746a.288.288 0 0 1 .194.034l7.876 4.547a.865.865 0 0 1 .433.75v9.095a.288.288 0 0 1-.433.25l-7.876-4.548a.865.865 0 0 1-.433-.75V8.03a.288.288 0 0 1 .239-.284zm19.004 0a.288.288 0 0 1 .239.284v9.095a.865.865 0 0 1-.433.749l-7.876 4.547a.288.288 0 0 1-.433-.25v-9.094a.865.865 0 0 1 .433-.75l7.876-4.547a.288.288 0 0 1 .194-.034zm-17.58 3.529v.977l1.67 1.622-1.67-.288v.977l2.556.249v-.835zm13.296 2.878-2.555.248v.977l1.668-.304-1.668 1.639v.977l2.555-2.703zm2.86.85-2.667 1.539v.798l2.666-1.54zM6.67 16.589v.798l2.666 1.54v-.798z" }) + ] + } + ); +}); + +export { SiDistrobox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.cjs new file mode 100644 index 000000000..9ce9449b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiDistrokid = React__namespace.forwardRef(function SiDistrokid2({ title = "Distrokid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 10.505h1.165c.94 0 1.589.645 1.589 1.486V12c0 .841-.65 1.495-1.59 1.495H0v-2.99zM1.165 12.9c.538 0 .901-.363.901-.892V12c.002-.53-.361-.903-.901-.903H.658v1.804h.507zm2.205-2.396h.658v2.99H3.37v-2.99zm1.201 2.554.389-.466c.269.222.55.363.892.363.27 0 .431-.107.431-.282v-.008c0-.167-.102-.252-.602-.38-.602-.154-.99-.32-.99-.914v-.009c0-.542.433-.9 1.046-.9a1.73 1.73 0 0 1 1.111.38l-.342.495c-.264-.184-.525-.295-.776-.295-.25 0-.384.116-.384.26v.01c0 .196.128.26.644.392.606.158.949.376.949.897v.009c0 .593-.453.927-1.098.927a1.903 1.903 0 0 1-1.27-.479zm3.57-1.948h-.909v-.605h2.477v.605H8.8v2.384h-.657V11.11zm2.072-.606h1.367c.38 0 .675.107.871.303.167.167.257.402.257.684v.008c0 .483-.26.786-.64.927l.73 1.068h-.77l-.64-.957h-.517v.957h-.658v-2.99zm1.324 1.452c.32 0 .504-.171.504-.423v-.008c0-.282-.196-.427-.516-.427h-.652v.858h.664zm1.632.052V12c0-.85.671-1.546 1.594-1.546s1.583.688 1.583 1.537V12c0 .85-.67 1.546-1.593 1.546s-1.584-.688-1.584-1.537zm2.49 0V12c0-.512-.375-.94-.905-.94s-.897.42-.897.932v.009c0 .512.376.94.906.94s.897-.42.897-.932zm1.4-1.504h.337v1.785l1.718-1.785h.435l-1.281 1.307 1.337 1.683h-.423l-1.15-1.448-.636.645v.803h-.337v-2.99zm3.1 0h.339v2.99h-.338v-2.99zm1.214 0h1.038c.94 0 1.589.645 1.589 1.486V12c0 .841-.65 1.495-1.589 1.495h-1.038v-2.99zm1.038 2.678c.756 0 1.239-.512 1.239-1.174V12c0-.662-.483-1.182-1.239-1.182h-.702v2.366l.702-.001z" }) + ] + } + ); +}); + +exports.default = SiDistrokid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.d.ts new file mode 100644 index 000000000..0731e0e26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiDistrokid: IconType; +export { SiDistrokid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.mjs new file mode 100644 index 000000000..1cd0f4b5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDistrokid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiDistrokid = React.forwardRef(function SiDistrokid2({ title = "Distrokid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 10.505h1.165c.94 0 1.589.645 1.589 1.486V12c0 .841-.65 1.495-1.59 1.495H0v-2.99zM1.165 12.9c.538 0 .901-.363.901-.892V12c.002-.53-.361-.903-.901-.903H.658v1.804h.507zm2.205-2.396h.658v2.99H3.37v-2.99zm1.201 2.554.389-.466c.269.222.55.363.892.363.27 0 .431-.107.431-.282v-.008c0-.167-.102-.252-.602-.38-.602-.154-.99-.32-.99-.914v-.009c0-.542.433-.9 1.046-.9a1.73 1.73 0 0 1 1.111.38l-.342.495c-.264-.184-.525-.295-.776-.295-.25 0-.384.116-.384.26v.01c0 .196.128.26.644.392.606.158.949.376.949.897v.009c0 .593-.453.927-1.098.927a1.903 1.903 0 0 1-1.27-.479zm3.57-1.948h-.909v-.605h2.477v.605H8.8v2.384h-.657V11.11zm2.072-.606h1.367c.38 0 .675.107.871.303.167.167.257.402.257.684v.008c0 .483-.26.786-.64.927l.73 1.068h-.77l-.64-.957h-.517v.957h-.658v-2.99zm1.324 1.452c.32 0 .504-.171.504-.423v-.008c0-.282-.196-.427-.516-.427h-.652v.858h.664zm1.632.052V12c0-.85.671-1.546 1.594-1.546s1.583.688 1.583 1.537V12c0 .85-.67 1.546-1.593 1.546s-1.584-.688-1.584-1.537zm2.49 0V12c0-.512-.375-.94-.905-.94s-.897.42-.897.932v.009c0 .512.376.94.906.94s.897-.42.897-.932zm1.4-1.504h.337v1.785l1.718-1.785h.435l-1.281 1.307 1.337 1.683h-.423l-1.15-1.448-.636.645v.803h-.337v-2.99zm3.1 0h.339v2.99h-.338v-2.99zm1.214 0h1.038c.94 0 1.589.645 1.589 1.486V12c0 .841-.65 1.495-1.589 1.495h-1.038v-2.99zm1.038 2.678c.756 0 1.239-.512 1.239-1.174V12c0-.662-.483-1.182-1.239-1.182h-.702v2.366l.702-.001z" }) + ] + } + ); +}); + +export { SiDistrokid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.cjs new file mode 100644 index 000000000..84596a270 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#092E20"; +const SiDjango = React__namespace.forwardRef(function SiDjango2({ title = "Django", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.146 0h3.924v18.166c-2.013.382-3.491.535-5.096.535-4.791 0-7.288-2.166-7.288-6.32 0-4.002 2.65-6.6 6.753-6.6.637 0 1.121.05 1.707.203zm0 9.143a3.894 3.894 0 00-1.325-.204c-1.988 0-3.134 1.223-3.134 3.365 0 2.09 1.096 3.236 3.109 3.236.433 0 .79-.025 1.35-.102V9.142zM21.314 6.06v9.098c0 3.134-.229 4.638-.917 5.937-.637 1.249-1.478 2.039-3.211 2.905l-3.644-1.733c1.733-.815 2.574-1.53 3.109-2.625.561-1.121.739-2.421.739-5.835V6.059h3.924zM17.39.021h3.924v4.026H17.39z" }) + ] + } + ); +}); + +exports.default = SiDjango; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.d.ts new file mode 100644 index 000000000..aebc86d5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#092E20"; +declare const SiDjango: IconType; +export { SiDjango as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.mjs new file mode 100644 index 000000000..e09bce55a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDjango.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#092E20"; +const SiDjango = React.forwardRef(function SiDjango2({ title = "Django", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.146 0h3.924v18.166c-2.013.382-3.491.535-5.096.535-4.791 0-7.288-2.166-7.288-6.32 0-4.002 2.65-6.6 6.753-6.6.637 0 1.121.05 1.707.203zm0 9.143a3.894 3.894 0 00-1.325-.204c-1.988 0-3.134 1.223-3.134 3.365 0 2.09 1.096 3.236 3.109 3.236.433 0 .79-.025 1.35-.102V9.142zM21.314 6.06v9.098c0 3.134-.229 4.638-.917 5.937-.637 1.249-1.478 2.039-3.211 2.905l-3.644-1.733c1.733-.815 2.574-1.53 3.109-2.625.561-1.121.739-2.421.739-5.835V6.059h3.924zM17.39.021h3.924v4.026H17.39z" }) + ] + } + ); +}); + +export { SiDjango as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDji.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDji.cjs new file mode 100644 index 000000000..4db76c0f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDji.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDji = React__namespace.forwardRef(function SiDji2({ title = "DJI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.2 7.8a716.856 716.856 0 0 0-1.232 4.63c-.202.772-.401 1.544-.634 2.308-.226.743-.504 1.535-.91 2.21-.422.703-.969 1.253-1.726 1.604-.3.137-.615.24-.939.306-.46.09-.926.146-1.394.165-1.163.065-3.628.056-4.79.056l.713-2.64c.539 0 1.078.002 1.617-.013.52-.014 1.092-.042 1.605-.163.56-.133.984-.36 1.355-.817.337-.416.564-.935.75-1.424.34-.893.688-2.173.934-3.093.277-1.041.544-2.085.812-3.129zm4.8 0-2.072 7.68h-3.84l2.073-7.68ZM11.339 4.92h3.84c-.403 1.5-.805 2.999-1.212 4.496-.283 1.044-.565 2.088-.872 3.124-.135.452-.269.903-.445 1.342-.141.352-.3.666-.591.93a1.908 1.908 0 0 1-.734.405c-.356.112-.717.154-1.085.184-.53.043-1.06.054-1.591.063-1.991.02-3.983.02-5.974-.001a21.408 21.408 0 0 1-.954-.034 5.319 5.319 0 0 1-.632-.07 1.851 1.851 0 0 1-.412-.119c-.44-.192-.664-.575-.677-1.043 0-.263.032-.525.093-.78.076-.367.171-.728.265-1.09.179-.691.506-1.966.762-2.638.2-.526.464-1.05.966-1.382.28-.186.576-.285.901-.35.241-.05.483-.075.728-.093.41-.03.82-.04 1.23-.047.582-.01 1.165-.013 1.748-.015L8.148 7.8h1.454l-.518 1.92c-.864 0-1.728-.002-2.593.003-.252.001-.504 0-.756.016a.968.968 0 0 0-.264.042c-.113.04-.17.11-.22.213-.073.15-.115.31-.162.468a84.804 84.804 0 0 0-.503 1.857c-.035.14-.07.28-.1.42-.022.099-.04.197-.05.298-.01.11-.014.242.053.345.068.103.182.127.29.143.12.018.241.021.363.025.199.006.398.007.597.008.544.003 1.089.003 1.633 0 .25-.002.501-.004.752-.014.173-.007.343-.013.513-.054.13-.031.23-.08.318-.186.056-.071.1-.15.133-.235.088-.209.15-.425.213-.641.245-.83.466-1.665.692-2.499l.675-2.503.67-2.505h3.84z" }) + ] + } + ); +}); + +exports.default = SiDji; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDji.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDji.d.ts new file mode 100644 index 000000000..2702b8412 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDji.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDji: IconType; +export { SiDji as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDji.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDji.mjs new file mode 100644 index 000000000..53d4aa9f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDji.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDji = React.forwardRef(function SiDji2({ title = "DJI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.2 7.8a716.856 716.856 0 0 0-1.232 4.63c-.202.772-.401 1.544-.634 2.308-.226.743-.504 1.535-.91 2.21-.422.703-.969 1.253-1.726 1.604-.3.137-.615.24-.939.306-.46.09-.926.146-1.394.165-1.163.065-3.628.056-4.79.056l.713-2.64c.539 0 1.078.002 1.617-.013.52-.014 1.092-.042 1.605-.163.56-.133.984-.36 1.355-.817.337-.416.564-.935.75-1.424.34-.893.688-2.173.934-3.093.277-1.041.544-2.085.812-3.129zm4.8 0-2.072 7.68h-3.84l2.073-7.68ZM11.339 4.92h3.84c-.403 1.5-.805 2.999-1.212 4.496-.283 1.044-.565 2.088-.872 3.124-.135.452-.269.903-.445 1.342-.141.352-.3.666-.591.93a1.908 1.908 0 0 1-.734.405c-.356.112-.717.154-1.085.184-.53.043-1.06.054-1.591.063-1.991.02-3.983.02-5.974-.001a21.408 21.408 0 0 1-.954-.034 5.319 5.319 0 0 1-.632-.07 1.851 1.851 0 0 1-.412-.119c-.44-.192-.664-.575-.677-1.043 0-.263.032-.525.093-.78.076-.367.171-.728.265-1.09.179-.691.506-1.966.762-2.638.2-.526.464-1.05.966-1.382.28-.186.576-.285.901-.35.241-.05.483-.075.728-.093.41-.03.82-.04 1.23-.047.582-.01 1.165-.013 1.748-.015L8.148 7.8h1.454l-.518 1.92c-.864 0-1.728-.002-2.593.003-.252.001-.504 0-.756.016a.968.968 0 0 0-.264.042c-.113.04-.17.11-.22.213-.073.15-.115.31-.162.468a84.804 84.804 0 0 0-.503 1.857c-.035.14-.07.28-.1.42-.022.099-.04.197-.05.298-.01.11-.014.242.053.345.068.103.182.127.29.143.12.018.241.021.363.025.199.006.398.007.597.008.544.003 1.089.003 1.633 0 .25-.002.501-.004.752-.014.173-.007.343-.013.513-.054.13-.031.23-.08.318-.186.056-.071.1-.15.133-.235.088-.209.15-.425.213-.641.245-.83.466-1.665.692-2.499l.675-2.503.67-2.505h3.84z" }) + ] + } + ); +}); + +export { SiDji as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.cjs new file mode 100644 index 000000000..dafc7d743 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008000"; +const SiDlib = React__namespace.forwardRef(function SiDlib2({ title = "Dlib", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.2188.0022c-.5082-.01-1.0158.015-1.5223.046v23.9085c.9724.068 1.954.055 2.9238-.032.2836-.9399.5742-1.8784.8605-2.8177 1.488-.2455 2.9172-.7078 4.192-1.361 1.04.5022 2.0797 1.0049 3.12 1.5067a14.2125 14.2125 0 0 0 2.0759-1.5805c-.6353-.8301-1.2734-1.6589-1.9098-2.4884.8294-1.02 1.4426-2.1614 1.7261-3.3565 1.1902-.2287 2.3801-.4583 3.5705-.6865a10.5282 10.5282 0 0 0-.0302-2.2869c-1.1825-.2277-2.3653-.4548-3.5479-.6824-.2922-1.1939-.8713-2.3444-1.7235-3.3545.6384-.8293 1.2757-1.6593 1.9148-2.4884-.6128-.5881-1.297-1.117-2.0432-1.5984-1.0537.5102-2.1086 1.019-3.1628 1.5285-1.2667-.6671-2.6973-1.1432-4.187-1.3868C7.1875 1.9292 6.898.987 6.6103.0442c-.463-.028-.927-.049-1.3914-.042Zm2.33 5.388c3.6866.8142 6.464 3.7461 6.2778 6.8008-.0934 2.8969-2.6816 5.6581-6.2426 6.3976-.1694-.2268-.0253-.7803-.0734-1.1335-.002-4.0243-.003-8.0486-.005-12.073l.0428.01z" }) + ] + } + ); +}); + +exports.default = SiDlib; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.d.ts new file mode 100644 index 000000000..8a8d1efb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008000"; +declare const SiDlib: IconType; +export { SiDlib as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.mjs new file mode 100644 index 000000000..aa06486a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDlib.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008000"; +const SiDlib = React.forwardRef(function SiDlib2({ title = "Dlib", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.2188.0022c-.5082-.01-1.0158.015-1.5223.046v23.9085c.9724.068 1.954.055 2.9238-.032.2836-.9399.5742-1.8784.8605-2.8177 1.488-.2455 2.9172-.7078 4.192-1.361 1.04.5022 2.0797 1.0049 3.12 1.5067a14.2125 14.2125 0 0 0 2.0759-1.5805c-.6353-.8301-1.2734-1.6589-1.9098-2.4884.8294-1.02 1.4426-2.1614 1.7261-3.3565 1.1902-.2287 2.3801-.4583 3.5705-.6865a10.5282 10.5282 0 0 0-.0302-2.2869c-1.1825-.2277-2.3653-.4548-3.5479-.6824-.2922-1.1939-.8713-2.3444-1.7235-3.3545.6384-.8293 1.2757-1.6593 1.9148-2.4884-.6128-.5881-1.297-1.117-2.0432-1.5984-1.0537.5102-2.1086 1.019-3.1628 1.5285-1.2667-.6671-2.6973-1.1432-4.187-1.3868C7.1875 1.9292 6.898.987 6.6103.0442c-.463-.028-.927-.049-1.3914-.042Zm2.33 5.388c3.6866.8142 6.464 3.7461 6.2778 6.8008-.0934 2.8969-2.6816 5.6581-6.2426 6.3976-.1694-.2268-.0253-.7803-.0734-1.1335-.002-4.0243-.003-8.0486-.005-12.073l.0428.01z" }) + ] + } + ); +}); + +export { SiDlib as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.cjs new file mode 100644 index 000000000..3e59f49df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#48A842"; +const SiDlna = React__namespace.forwardRef(function SiDlna2({ title = "DLNA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.255 12.667H13.02c-1.052 0-2.1.489-2.693 1.266v-.017a3.24 3.24 0 01-2.629 1.353 3.25 3.25 0 010-6.502c1.085 0 2.04.536 2.63 1.353v-.013c.591.776 1.64 1.273 2.692 1.273h10.129c.186-.005.873-.095.848-.981-.884-5.086-5.88-8.987-11.923-8.987-3.722 0-7.048 1.48-9.263 3.803-.356.527.014.689.35.734H9.77c1.05 0 2.1-.498 2.692-1.277v.018a3.242 3.242 0 012.63-1.355 3.252 3.252 0 010 6.503 3.24 3.24 0 01-2.63-1.355v.019c-.592-.78-1.642-1.266-2.692-1.266H2.55l.028.003s-1.068-.06-1.719.859C.361 8.9 0 10.62 0 12.002c0 1.388.198 2.65.867 3.923.564.908 1.71.85 1.71.85l-.042.005h7.233c1.05 0 2.1-.49 2.692-1.268v.02a3.242 3.242 0 012.63-1.356 3.251 3.251 0 010 6.502 3.242 3.242 0 01-2.63-1.354v.018c-.592-.779-1.642-1.277-2.692-1.277H3.164c-.328.042-.698.198-.379.7 2.216 2.336 5.555 3.823 9.289 3.823 6.054 0 11.056-3.91 11.926-9.009-.004-.713-.489-.877-.745-.912" }) + ] + } + ); +}); + +exports.default = SiDlna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.d.ts new file mode 100644 index 000000000..f6ed1396c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#48A842"; +declare const SiDlna: IconType; +export { SiDlna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.mjs new file mode 100644 index 000000000..e1bdfff6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDlna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#48A842"; +const SiDlna = React.forwardRef(function SiDlna2({ title = "DLNA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.255 12.667H13.02c-1.052 0-2.1.489-2.693 1.266v-.017a3.24 3.24 0 01-2.629 1.353 3.25 3.25 0 010-6.502c1.085 0 2.04.536 2.63 1.353v-.013c.591.776 1.64 1.273 2.692 1.273h10.129c.186-.005.873-.095.848-.981-.884-5.086-5.88-8.987-11.923-8.987-3.722 0-7.048 1.48-9.263 3.803-.356.527.014.689.35.734H9.77c1.05 0 2.1-.498 2.692-1.277v.018a3.242 3.242 0 012.63-1.355 3.252 3.252 0 010 6.503 3.24 3.24 0 01-2.63-1.355v.019c-.592-.78-1.642-1.266-2.692-1.266H2.55l.028.003s-1.068-.06-1.719.859C.361 8.9 0 10.62 0 12.002c0 1.388.198 2.65.867 3.923.564.908 1.71.85 1.71.85l-.042.005h7.233c1.05 0 2.1-.49 2.692-1.268v.02a3.242 3.242 0 012.63-1.356 3.251 3.251 0 010 6.502 3.242 3.242 0 01-2.63-1.354v.018c-.592-.779-1.642-1.277-2.692-1.277H3.164c-.328.042-.698.198-.379.7 2.216 2.336 5.555 3.823 9.289 3.823 6.054 0 11.056-3.91 11.926-9.009-.004-.713-.489-.877-.745-.912" }) + ] + } + ); +}); + +export { SiDlna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDm.cjs new file mode 100644 index 000000000..0183a6f18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002878"; +const SiDm = React__namespace.forwardRef(function SiDm2({ title = "dm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.142 15.057c-.556-.281-1.02-.54-1.32-.755 2.364.36 5.9.71 11.603-.18 0 0 .415.638.648 1.624-.046.034-.087.064-.14.1-.718.472-1.948 1.035-3.738 1.035-.755 0-1.554-.1-2.373-.301-.307-.077-.6-.154-.885-.237a39.766 39.766 0 0 1-2.608-.868c-.394-.142-.79-.281-1.187-.417zm-5.67 1.192a11.45 11.45 0 0 0-1.414.28c-1.927.497-3.377 1.107-3.392 1.113l-.402.17L.9 16.757l-.9.309s1.134 1.313 1.333 1.746l.28.745s3.6-1.926 8.836-1.635c1.188.066 2.231.4 2.231.4s-2.133-1.352-2.561-1.483c-1.2-.285-2.42-.482-3.649-.589zm17.487-.735s-.264.3-.8.653c-1.056.695-3.172 1.588-6.438.789-.3-.075-.6-.155-.897-.24-2.978-.85-4.748-1.949-8.743-2.425-2.707.064-5.276.324-6.726.821 0 0 .41.409.531.578.06.127.203.392.336.775.147.42.284.822.284.822s1.465-.622 3.448-1.133c.93-.243 1.928-.403 2.841-.351 3.047.185 5.507 1.717 8.233 2.962 1.891.513 6.506.903 7.807.333 0 0 .264-1.214.124-3.584zM8.11 8.784c.25 0 .443.04.615.078l-.061.315c-.234 1.218-1.415 3.17-2.115 3.17-.264 0-.39-.216-.39-.703 0-1.18.724-2.86 1.951-2.86zm3.294-4.33c-1.094-.038-2.031.029-2.946.116l-.253 1.196c.384.026.819.077 1.11.129v.012L9.021 7.38a3.696 3.696 0 0 0-.565-.05c-2.892 0-4.183 2.21-4.183 4.623 0 1.372.525 2.026 1.568 2.026 1.02 0 1.824-.885 2.39-1.807h.028c-.251.68-.407 1.193-.486 1.652H9.57l1.833-9.37zm9.738 4.968c.238-1.193-.023-2.091-1.304-2.091-1.16 0-1.895.782-2.502 1.846l-.014-.012c.066-.257.106-.421.106-.577 0-.86-.506-1.257-1.285-1.257-1.161 0-1.796.759-2.39 1.747l-.027-.001c.225-.565.398-1.142.502-1.641a18.892 18.892 0 0 0-2.839.115l-.251 1.195c.384.026.819.078 1.11.129v.037l-.965 4.913 1.783.002.343-1.75c.293-1.513 1.36-3.053 1.969-3.053.303 0 .394.243.262.884l-.667 3.917h1.785l.285-1.711c.25-1.529 1.349-3.09 1.957-3.09.301 0 .396.243.263.884l-.649 3.917h1.788z" }) + ] + } + ); +}); + +exports.default = SiDm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDm.d.ts new file mode 100644 index 000000000..ee61d013e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002878"; +declare const SiDm: IconType; +export { SiDm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDm.mjs new file mode 100644 index 000000000..fd86fc2ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002878"; +const SiDm = React.forwardRef(function SiDm2({ title = "dm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.142 15.057c-.556-.281-1.02-.54-1.32-.755 2.364.36 5.9.71 11.603-.18 0 0 .415.638.648 1.624-.046.034-.087.064-.14.1-.718.472-1.948 1.035-3.738 1.035-.755 0-1.554-.1-2.373-.301-.307-.077-.6-.154-.885-.237a39.766 39.766 0 0 1-2.608-.868c-.394-.142-.79-.281-1.187-.417zm-5.67 1.192a11.45 11.45 0 0 0-1.414.28c-1.927.497-3.377 1.107-3.392 1.113l-.402.17L.9 16.757l-.9.309s1.134 1.313 1.333 1.746l.28.745s3.6-1.926 8.836-1.635c1.188.066 2.231.4 2.231.4s-2.133-1.352-2.561-1.483c-1.2-.285-2.42-.482-3.649-.589zm17.487-.735s-.264.3-.8.653c-1.056.695-3.172 1.588-6.438.789-.3-.075-.6-.155-.897-.24-2.978-.85-4.748-1.949-8.743-2.425-2.707.064-5.276.324-6.726.821 0 0 .41.409.531.578.06.127.203.392.336.775.147.42.284.822.284.822s1.465-.622 3.448-1.133c.93-.243 1.928-.403 2.841-.351 3.047.185 5.507 1.717 8.233 2.962 1.891.513 6.506.903 7.807.333 0 0 .264-1.214.124-3.584zM8.11 8.784c.25 0 .443.04.615.078l-.061.315c-.234 1.218-1.415 3.17-2.115 3.17-.264 0-.39-.216-.39-.703 0-1.18.724-2.86 1.951-2.86zm3.294-4.33c-1.094-.038-2.031.029-2.946.116l-.253 1.196c.384.026.819.077 1.11.129v.012L9.021 7.38a3.696 3.696 0 0 0-.565-.05c-2.892 0-4.183 2.21-4.183 4.623 0 1.372.525 2.026 1.568 2.026 1.02 0 1.824-.885 2.39-1.807h.028c-.251.68-.407 1.193-.486 1.652H9.57l1.833-9.37zm9.738 4.968c.238-1.193-.023-2.091-1.304-2.091-1.16 0-1.895.782-2.502 1.846l-.014-.012c.066-.257.106-.421.106-.577 0-.86-.506-1.257-1.285-1.257-1.161 0-1.796.759-2.39 1.747l-.027-.001c.225-.565.398-1.142.502-1.641a18.892 18.892 0 0 0-2.839.115l-.251 1.195c.384.026.819.078 1.11.129v.037l-.965 4.913 1.783.002.343-1.75c.293-1.513 1.36-3.053 1.969-3.053.303 0 .394.243.262.884l-.667 3.917h1.785l.285-1.711c.25-1.529 1.349-3.09 1.957-3.09.301 0 .396.243.263.884l-.649 3.917h1.788z" }) + ] + } + ); +}); + +export { SiDm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.cjs new file mode 100644 index 000000000..df4d022e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDmm = React__namespace.forwardRef(function SiDmm2({ title = "DMM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.525.46H0v23.08h11.545C17.284 23.54 24 20.916 24 12S16.026.46 9.525.46zm.646 15.073V8.34c1.746 0 4.4.079 4.4 3.582 0 3.58-2.553 3.611-4.4 3.611z" }) + ] + } + ); +}); + +exports.default = SiDmm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.d.ts new file mode 100644 index 000000000..e8de971bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDmm: IconType; +export { SiDmm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.mjs new file mode 100644 index 000000000..4fb71ccbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDmm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDmm = React.forwardRef(function SiDmm2({ title = "DMM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.525.46H0v23.08h11.545C17.284 23.54 24 20.916 24 12S16.026.46 9.525.46zm.646 15.073V8.34c1.746 0 4.4.079 4.4 3.582 0 3.58-2.553 3.611-4.4 3.611z" }) + ] + } + ); +}); + +export { SiDmm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.cjs new file mode 100644 index 000000000..2ad775b80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2496ED"; +const SiDocker = React__namespace.forwardRef(function SiDocker2({ title = "Docker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.983 11.078h2.119a.186.186 0 00.186-.185V9.006a.186.186 0 00-.186-.186h-2.119a.185.185 0 00-.185.185v1.888c0 .102.083.185.185.185m-2.954-5.43h2.118a.186.186 0 00.186-.186V3.574a.186.186 0 00-.186-.185h-2.118a.185.185 0 00-.185.185v1.888c0 .102.082.185.185.185m0 2.716h2.118a.187.187 0 00.186-.186V6.29a.186.186 0 00-.186-.185h-2.118a.185.185 0 00-.185.185v1.887c0 .102.082.185.185.186m-2.93 0h2.12a.186.186 0 00.184-.186V6.29a.185.185 0 00-.185-.185H8.1a.185.185 0 00-.185.185v1.887c0 .102.083.185.185.186m-2.964 0h2.119a.186.186 0 00.185-.186V6.29a.185.185 0 00-.185-.185H5.136a.186.186 0 00-.186.185v1.887c0 .102.084.185.186.186m5.893 2.715h2.118a.186.186 0 00.186-.185V9.006a.186.186 0 00-.186-.186h-2.118a.185.185 0 00-.185.185v1.888c0 .102.082.185.185.185m-2.93 0h2.12a.185.185 0 00.184-.185V9.006a.185.185 0 00-.184-.186h-2.12a.185.185 0 00-.184.185v1.888c0 .102.083.185.185.185m-2.964 0h2.119a.185.185 0 00.185-.185V9.006a.185.185 0 00-.184-.186h-2.12a.186.186 0 00-.186.186v1.887c0 .102.084.185.186.185m-2.92 0h2.12a.185.185 0 00.184-.185V9.006a.185.185 0 00-.184-.186h-2.12a.185.185 0 00-.184.185v1.888c0 .102.082.185.185.185M23.763 9.89c-.065-.051-.672-.51-1.954-.51-.338.001-.676.03-1.01.087-.248-1.7-1.653-2.53-1.716-2.566l-.344-.199-.226.327c-.284.438-.49.922-.612 1.43-.23.97-.09 1.882.403 2.661-.595.332-1.55.413-1.744.42H.751a.751.751 0 00-.75.748 11.376 11.376 0 00.692 4.062c.545 1.428 1.355 2.48 2.41 3.124 1.18.723 3.1 1.137 5.275 1.137.983.003 1.963-.086 2.93-.266a12.248 12.248 0 003.823-1.389c.98-.567 1.86-1.288 2.61-2.136 1.252-1.418 1.998-2.997 2.553-4.4h.221c1.372 0 2.215-.549 2.68-1.009.309-.293.55-.65.707-1.046l.098-.288Z" }) + ] + } + ); +}); + +exports.default = SiDocker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.d.ts new file mode 100644 index 000000000..5d0de4cdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2496ED"; +declare const SiDocker: IconType; +export { SiDocker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.mjs new file mode 100644 index 000000000..6a39ad438 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2496ED"; +const SiDocker = React.forwardRef(function SiDocker2({ title = "Docker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.983 11.078h2.119a.186.186 0 00.186-.185V9.006a.186.186 0 00-.186-.186h-2.119a.185.185 0 00-.185.185v1.888c0 .102.083.185.185.185m-2.954-5.43h2.118a.186.186 0 00.186-.186V3.574a.186.186 0 00-.186-.185h-2.118a.185.185 0 00-.185.185v1.888c0 .102.082.185.185.185m0 2.716h2.118a.187.187 0 00.186-.186V6.29a.186.186 0 00-.186-.185h-2.118a.185.185 0 00-.185.185v1.887c0 .102.082.185.185.186m-2.93 0h2.12a.186.186 0 00.184-.186V6.29a.185.185 0 00-.185-.185H8.1a.185.185 0 00-.185.185v1.887c0 .102.083.185.185.186m-2.964 0h2.119a.186.186 0 00.185-.186V6.29a.185.185 0 00-.185-.185H5.136a.186.186 0 00-.186.185v1.887c0 .102.084.185.186.186m5.893 2.715h2.118a.186.186 0 00.186-.185V9.006a.186.186 0 00-.186-.186h-2.118a.185.185 0 00-.185.185v1.888c0 .102.082.185.185.185m-2.93 0h2.12a.185.185 0 00.184-.185V9.006a.185.185 0 00-.184-.186h-2.12a.185.185 0 00-.184.185v1.888c0 .102.083.185.185.185m-2.964 0h2.119a.185.185 0 00.185-.185V9.006a.185.185 0 00-.184-.186h-2.12a.186.186 0 00-.186.186v1.887c0 .102.084.185.186.185m-2.92 0h2.12a.185.185 0 00.184-.185V9.006a.185.185 0 00-.184-.186h-2.12a.185.185 0 00-.184.185v1.888c0 .102.082.185.185.185M23.763 9.89c-.065-.051-.672-.51-1.954-.51-.338.001-.676.03-1.01.087-.248-1.7-1.653-2.53-1.716-2.566l-.344-.199-.226.327c-.284.438-.49.922-.612 1.43-.23.97-.09 1.882.403 2.661-.595.332-1.55.413-1.744.42H.751a.751.751 0 00-.75.748 11.376 11.376 0 00.692 4.062c.545 1.428 1.355 2.48 2.41 3.124 1.18.723 3.1 1.137 5.275 1.137.983.003 1.963-.086 2.93-.266a12.248 12.248 0 003.823-1.389c.98-.567 1.86-1.288 2.61-2.136 1.252-1.418 1.998-2.997 2.553-4.4h.221c1.372 0 2.215-.549 2.68-1.009.309-.293.55-.65.707-1.046l.098-.288Z" }) + ] + } + ); +}); + +export { SiDocker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.cjs new file mode 100644 index 000000000..d8a52bc94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDocsdotrs = React__namespace.forwardRef(function SiDocsdotrs2({ title = "Docs.rs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.903 11.728-4.528-1.697V4.945a1.69 1.69 0 0 0-1.097-1.58l-4.687-1.757a1.668 1.668 0 0 0-1.186 0L6.717 3.366a1.687 1.687 0 0 0-1.097 1.58v5.085l-4.528 1.697A1.69 1.69 0 0 0 0 13.308v5.16c0 .638.36 1.224.933 1.51l4.687 2.344a1.68 1.68 0 0 0 1.51 0L12 19.884l4.87 2.438a1.68 1.68 0 0 0 1.51 0l4.687-2.344a1.69 1.69 0 0 0 .933-1.51v-5.16c0-.703-.436-1.331-1.097-1.58zm-6.122-1.66-3.984 1.496V8.367l3.984-1.734zM7.22 4.88 12 3.09l4.781 1.79v.028L12 6.848l-4.781-1.94Zm3.937 13.645-3.984 1.992V16.81l3.984-1.818zm0-5.25-4.781 1.94-4.781-1.94v-.028l4.781-1.79 4.781 1.79zm11.25 5.25-3.984 1.992V16.81l3.984-1.818zm0-5.25-4.781 1.94-4.781-1.94v-.028l4.781-1.79 4.781 1.79z" }) + ] + } + ); +}); + +exports.default = SiDocsdotrs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.d.ts new file mode 100644 index 000000000..54241b806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDocsdotrs: IconType; +export { SiDocsdotrs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.mjs new file mode 100644 index 000000000..5e30d76e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsdotrs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDocsdotrs = React.forwardRef(function SiDocsdotrs2({ title = "Docs.rs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m22.903 11.728-4.528-1.697V4.945a1.69 1.69 0 0 0-1.097-1.58l-4.687-1.757a1.668 1.668 0 0 0-1.186 0L6.717 3.366a1.687 1.687 0 0 0-1.097 1.58v5.085l-4.528 1.697A1.69 1.69 0 0 0 0 13.308v5.16c0 .638.36 1.224.933 1.51l4.687 2.344a1.68 1.68 0 0 0 1.51 0L12 19.884l4.87 2.438a1.68 1.68 0 0 0 1.51 0l4.687-2.344a1.69 1.69 0 0 0 .933-1.51v-5.16c0-.703-.436-1.331-1.097-1.58zm-6.122-1.66-3.984 1.496V8.367l3.984-1.734zM7.22 4.88 12 3.09l4.781 1.79v.028L12 6.848l-4.781-1.94Zm3.937 13.645-3.984 1.992V16.81l3.984-1.818zm0-5.25-4.781 1.94-4.781-1.94v-.028l4.781-1.79 4.781 1.79zm11.25 5.25-3.984 1.992V16.81l3.984-1.818zm0-5.25-4.781 1.94-4.781-1.94v-.028l4.781-1.79 4.781 1.79z" }) + ] + } + ); +}); + +export { SiDocsdotrs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.cjs new file mode 100644 index 000000000..7c64a9bba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2ECE53"; +const SiDocsify = React__namespace.forwardRef(function SiDocsify2({ title = "Docsify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2.862c-6.617 0-12 5.383-12 12 0 1.964.49 3.406 1.5 4.408 1.706 1.696 4.619 1.868 8.05 1.868.43 0 .87-.002 1.315-.005a217.6 217.6 0 0 1 2.765 0c3.792.024 7.066.044 8.88-1.758C23.511 18.378 24 16.9 24 14.862c0-6.617-5.383-12-12-12zm-8.852 8.154a.393.393 0 1 1 0-.787.393.393 0 0 1 0 .787zM5.113 8.48c-.55.637-1.01 1.361-1.01 1.361-.06.092-.167.099-.24.017l-.26-.29a.251.251 0 0 1-.02-.303s1.11-1.559 1.806-2.186c.25-.225.248-.239.891-.692.643-.453 1.4-.826 1.4-.826a.272.272 0 0 1 .308.059l.26.29c.075.082.056.186-.04.235 0 0-1.772.887-2.353 1.509-.394.422-.192.19-.742.826zm1.576 2.143a1.377 1.377 0 1 1 2.754 0 1.377 1.377 0 0 1-2.754 0zm5.41 7.929c-1.902 0-3.443-1.542-3.443-3.443s1.644-.854 3.545-.854 3.34-1.047 3.34.854-1.541 3.443-3.443 3.443zM16.72 12a1.377 1.377 0 1 1 0-2.754 1.377 1.377 0 0 1 0 2.754z" }) + ] + } + ); +}); + +exports.default = SiDocsify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.d.ts new file mode 100644 index 000000000..5da00468e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2ECE53"; +declare const SiDocsify: IconType; +export { SiDocsify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.mjs new file mode 100644 index 000000000..1484d6a1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocsify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2ECE53"; +const SiDocsify = React.forwardRef(function SiDocsify2({ title = "Docsify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 2.862c-6.617 0-12 5.383-12 12 0 1.964.49 3.406 1.5 4.408 1.706 1.696 4.619 1.868 8.05 1.868.43 0 .87-.002 1.315-.005a217.6 217.6 0 0 1 2.765 0c3.792.024 7.066.044 8.88-1.758C23.511 18.378 24 16.9 24 14.862c0-6.617-5.383-12-12-12zm-8.852 8.154a.393.393 0 1 1 0-.787.393.393 0 0 1 0 .787zM5.113 8.48c-.55.637-1.01 1.361-1.01 1.361-.06.092-.167.099-.24.017l-.26-.29a.251.251 0 0 1-.02-.303s1.11-1.559 1.806-2.186c.25-.225.248-.239.891-.692.643-.453 1.4-.826 1.4-.826a.272.272 0 0 1 .308.059l.26.29c.075.082.056.186-.04.235 0 0-1.772.887-2.353 1.509-.394.422-.192.19-.742.826zm1.576 2.143a1.377 1.377 0 1 1 2.754 0 1.377 1.377 0 0 1-2.754 0zm5.41 7.929c-1.902 0-3.443-1.542-3.443-3.443s1.644-.854 3.545-.854 3.34-1.047 3.34.854-1.541 3.443-3.443 3.443zM16.72 12a1.377 1.377 0 1 1 0-2.754 1.377 1.377 0 0 1 0 2.754z" }) + ] + } + ); +}); + +export { SiDocsify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.cjs new file mode 100644 index 000000000..854aa6ae9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC6A31"; +const SiDoctrine = React__namespace.forwardRef(function SiDoctrine2({ title = "Doctrine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.7912 0a2.2 2.2 0 0 0-.2543.016C7.3524.1581 6.4917 1.21 6.5867 2.399a2.215 2.215 0 0 0 .6658 1.4164l-.0029.0031L9.5845 6.02c-4.1783 1.1385-7.0612 5.115-6.7067 9.5563.3906 4.897 4.578 8.612 9.4866 8.4164s8.7873-4.2318 8.7873-9.1443l-.1159-1.4517c-.3219-2.004-1.2739-3.7555-2.6244-5.0794l.0015.0004-8.077-7.706-.0015.0014v.0002A2.22 2.22 0 0 0 8.7912 0m2.2149 8.5478a1.485 1.485 0 0 1 .9095.453l4.7471 4.7728a1.324 1.324 0 0 1 .4365.789l.0168.2108a1.326 1.326 0 0 1-.4514.998l-4.7785 4.8218a1.49 1.49 0 0 1-.999.438c-.7988.0316-1.4802-.5715-1.544-1.3666a1.481 1.481 0 0 1 .4386-1.1757l-.0006-.0006 2.4214-2.4216h-5.027v-.002c-.6961.0082-1.2837-.5247-1.3393-1.223-.0568-.711.4578-1.3402 1.166-1.4252a1.4 1.4 0 0 1 .144-.0096l.0169.0002c1.6577.0056 3.3154.0025 4.9731.0025L9.8564 11.13a1.475 1.475 0 0 1-.498-.9928c-.0633-.7922.5116-1.4933 1.3027-1.588a1.5 1.5 0 0 1 .345-.0013" }) + ] + } + ); +}); + +exports.default = SiDoctrine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.d.ts new file mode 100644 index 000000000..8c0935f23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC6A31"; +declare const SiDoctrine: IconType; +export { SiDoctrine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.mjs new file mode 100644 index 000000000..5541d45a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoctrine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC6A31"; +const SiDoctrine = React.forwardRef(function SiDoctrine2({ title = "Doctrine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.7912 0a2.2 2.2 0 0 0-.2543.016C7.3524.1581 6.4917 1.21 6.5867 2.399a2.215 2.215 0 0 0 .6658 1.4164l-.0029.0031L9.5845 6.02c-4.1783 1.1385-7.0612 5.115-6.7067 9.5563.3906 4.897 4.578 8.612 9.4866 8.4164s8.7873-4.2318 8.7873-9.1443l-.1159-1.4517c-.3219-2.004-1.2739-3.7555-2.6244-5.0794l.0015.0004-8.077-7.706-.0015.0014v.0002A2.22 2.22 0 0 0 8.7912 0m2.2149 8.5478a1.485 1.485 0 0 1 .9095.453l4.7471 4.7728a1.324 1.324 0 0 1 .4365.789l.0168.2108a1.326 1.326 0 0 1-.4514.998l-4.7785 4.8218a1.49 1.49 0 0 1-.999.438c-.7988.0316-1.4802-.5715-1.544-1.3666a1.481 1.481 0 0 1 .4386-1.1757l-.0006-.0006 2.4214-2.4216h-5.027v-.002c-.6961.0082-1.2837-.5247-1.3393-1.223-.0568-.711.4578-1.3402 1.166-1.4252a1.4 1.4 0 0 1 .144-.0096l.0169.0002c1.6577.0056 3.3154.0025 4.9731.0025L9.8564 11.13a1.475 1.475 0 0 1-.498-.9928c-.0633-.7922.5116-1.4933 1.3027-1.588a1.5 1.5 0 0 1 .345-.0013" }) + ] + } + ); +}); + +export { SiDoctrine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.cjs new file mode 100644 index 000000000..0a3f8ac0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3ECC5F"; +const SiDocusaurus = React__namespace.forwardRef(function SiDocusaurus2({ title = "Docusaurus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.462 22.201h12.321a2.466 2.466 0 0 0 2.369-1.854c.026.004.052.008.079.008a.621.621 0 0 0 .615-.615.621.621 0 0 0-.615-.615c-.027 0-.053.004-.079.007l-.014-.055a.62.62 0 0 0 .378-.568.621.621 0 0 0-.615-.615.608.608 0 0 0-.371.127l-.042-.041a.606.606 0 0 0 .125-.368c0-.67-.919-.858-1.181-.241l-.055-.014c.003-.026.008-.052.008-.079a.622.622 0 0 0-.616-.615.621.621 0 0 0-.615.615h-.096a.617.617 0 0 0-1.033 0h-.717v-2.461h2.461c.115 0 .226-.017.331-.047a.307.307 0 1 0 .529-.304l.02-.021c.052.04.116.064.186.064h.002c.337 0 .428-.463.117-.591l.007-.028c.013.001.026.004.039.004a.31.31 0 0 0 .308-.308.31.31 0 0 0-.308-.308c-.013 0-.026.003-.039.004a.28.28 0 0 1-.007-.027c.327-.13-.028-.745-.305-.528l-.02-.021a.307.307 0 0 0 .062-.184c-.011-.326-.454-.416-.591-.12a1.238 1.238 0 0 0-.32-.047h-2.143a2.465 2.465 0 0 1 2.132-1.23h7.385V9.894l-8.618-.539a1.315 1.315 0 0 1-1.229-1.308c0-.688.542-1.265 1.229-1.307l8.618-.539v-1.23a2.473 2.473 0 0 0-2.462-2.462H8.615l-.307-.533a.356.356 0 0 0-.616 0l-.307.533-.308-.533a.355.355 0 0 0-.615 0l-.308.533-.308-.533a.355.355 0 0 0-.615 0l-.308.533-.008.001-.51-.51a.354.354 0 0 0-.594.159l-.168.628-.639-.171a.357.357 0 0 0-.436.435l.172.639-.628.169a.356.356 0 0 0-.16.594l.51.51v.008l-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308a2.463 2.463 0 0 1-2.13-1.231A2.465 2.465 0 0 0 0 19.74c0 1.35 1.112 2.46 2.462 2.461zm19.692-5.204v2.743a2.473 2.473 0 0 1-2.461 2.461h-.001 1.231a2.466 2.466 0 0 0 2.383-1.854c.026.004.052.008.079.008A.621.621 0 0 0 24 19.74a.621.621 0 0 0-.615-.615c-.027 0-.053.004-.079.007l-.014-.055a.62.62 0 0 0 .378-.568.621.621 0 0 0-.615-.615.608.608 0 0 0-.371.127l-.042-.041a.612.612 0 0 0 .125-.368.623.623 0 0 0-.613-.615zm-4.067 2.62h2.223c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-2.223a.845.845 0 0 0 0-.246zm-.33-1.231h2.553c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-2.553a.845.845 0 0 0 0-.246zm-1.026-1.231h3.579c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-3.474a.85.85 0 0 0-.105-.246zm3.579-.984h-6.159a.126.126 0 0 1-.123-.123c0-.068.056-.123.123-.123h6.159c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123zm1.844-3.816v2.462c.115 0 .225-.017.331-.047a.308.308 0 1 0 .528-.304l.021-.021c.052.04.116.064.186.064a.312.312 0 0 0 .307-.308.306.306 0 0 0-.189-.283l.007-.028c.013.001.026.004.04.004a.312.312 0 0 0 .307-.308.312.312 0 0 0-.307-.308c-.014 0-.027.003-.04.004l-.007-.027a.31.31 0 0 0-.118-.592.306.306 0 0 0-.186.064l-.021-.021a.3.3 0 0 0 .063-.184c-.011-.326-.454-.416-.591-.12a1.24 1.24 0 0 0-.321-.047zm-6.059 2.339h4.215c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-4.451a.564.564 0 0 0 .073-.19.553.553 0 0 0 .163-.056zm.454-1.208h3.761c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-3.772a.552.552 0 0 0 .011-.246zm5.605-6.225h-.004c-.381.013-.561.393-.719.729-.166.35-.294.578-.504.572-.233-.009-.366-.271-.506-.549-.162-.32-.347-.682-.734-.668-.375.013-.556.344-.715.636-.169.311-.285.5-.507.491-.237-.008-.363-.222-.509-.469-.163-.275-.351-.585-.731-.574-.368.013-.549.294-.709.542-.169.262-.287.421-.513.412-.243-.009-.368-.186-.513-.391-.163-.231-.347-.491-.726-.479-.36.013-.541.243-.701.446-.151.192-.27.344-.52.335h-.005a.126.126 0 0 0-.123.123c0 .066.053.121.119.123.371.012.559-.222.723-.429.145-.184.27-.343.516-.352.237-.01.348.138.516.375.16.226.341.482.705.495.382.013.566-.273.729-.525.145-.226.271-.421.511-.429.22-.008.34.166.51.453.159.271.34.577.712.59.385.014.57-.322.732-.619.14-.257.273-.5.507-.508.221-.005.336.196.506.533.159.314.339.67.717.684h.021c.377 0 .556-.378.714-.713.14-.297.273-.576.501-.588zM7.385 6.509a.312.312 0 0 1-.308-.308c-.01-.532-.378-.911-.927-.922-.528-.011-.888.432-.919.922-.011.168-.139.307-.308.308a.31.31 0 0 1-.308-.308c0-.848.69-1.538 1.539-1.538.848 0 1.538.69 1.538 1.538a.312.312 0 0 1-.307.308zm9.846-2.308a.31.31 0 0 1 .308.308.31.31 0 0 1-.308.308.31.31 0 0 1-.308-.308.31.31 0 0 1 .308-.308zm2.461-.153a.31.31 0 0 1 .307.308.31.31 0 0 1-.308.308h-.001a.31.31 0 0 1-.307-.308.31.31 0 0 1 .308-.308z" }) + ] + } + ); +}); + +exports.default = SiDocusaurus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.d.ts new file mode 100644 index 000000000..47657b315 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3ECC5F"; +declare const SiDocusaurus: IconType; +export { SiDocusaurus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.mjs new file mode 100644 index 000000000..4034fe90a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDocusaurus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3ECC5F"; +const SiDocusaurus = React.forwardRef(function SiDocusaurus2({ title = "Docusaurus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.462 22.201h12.321a2.466 2.466 0 0 0 2.369-1.854c.026.004.052.008.079.008a.621.621 0 0 0 .615-.615.621.621 0 0 0-.615-.615c-.027 0-.053.004-.079.007l-.014-.055a.62.62 0 0 0 .378-.568.621.621 0 0 0-.615-.615.608.608 0 0 0-.371.127l-.042-.041a.606.606 0 0 0 .125-.368c0-.67-.919-.858-1.181-.241l-.055-.014c.003-.026.008-.052.008-.079a.622.622 0 0 0-.616-.615.621.621 0 0 0-.615.615h-.096a.617.617 0 0 0-1.033 0h-.717v-2.461h2.461c.115 0 .226-.017.331-.047a.307.307 0 1 0 .529-.304l.02-.021c.052.04.116.064.186.064h.002c.337 0 .428-.463.117-.591l.007-.028c.013.001.026.004.039.004a.31.31 0 0 0 .308-.308.31.31 0 0 0-.308-.308c-.013 0-.026.003-.039.004a.28.28 0 0 1-.007-.027c.327-.13-.028-.745-.305-.528l-.02-.021a.307.307 0 0 0 .062-.184c-.011-.326-.454-.416-.591-.12a1.238 1.238 0 0 0-.32-.047h-2.143a2.465 2.465 0 0 1 2.132-1.23h7.385V9.894l-8.618-.539a1.315 1.315 0 0 1-1.229-1.308c0-.688.542-1.265 1.229-1.307l8.618-.539v-1.23a2.473 2.473 0 0 0-2.462-2.462H8.615l-.307-.533a.356.356 0 0 0-.616 0l-.307.533-.308-.533a.355.355 0 0 0-.615 0l-.308.533-.308-.533a.355.355 0 0 0-.615 0l-.308.533-.008.001-.51-.51a.354.354 0 0 0-.594.159l-.168.628-.639-.171a.357.357 0 0 0-.436.435l.172.639-.628.169a.356.356 0 0 0-.16.594l.51.51v.008l-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.307a.356.356 0 0 0 0 .616l.533.307-.533.308a.355.355 0 0 0 0 .615l.533.308-.533.308a.355.355 0 0 0 0 .615l.533.308a2.463 2.463 0 0 1-2.13-1.231A2.465 2.465 0 0 0 0 19.74c0 1.35 1.112 2.46 2.462 2.461zm19.692-5.204v2.743a2.473 2.473 0 0 1-2.461 2.461h-.001 1.231a2.466 2.466 0 0 0 2.383-1.854c.026.004.052.008.079.008A.621.621 0 0 0 24 19.74a.621.621 0 0 0-.615-.615c-.027 0-.053.004-.079.007l-.014-.055a.62.62 0 0 0 .378-.568.621.621 0 0 0-.615-.615.608.608 0 0 0-.371.127l-.042-.041a.612.612 0 0 0 .125-.368.623.623 0 0 0-.613-.615zm-4.067 2.62h2.223c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-2.223a.845.845 0 0 0 0-.246zm-.33-1.231h2.553c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-2.553a.845.845 0 0 0 0-.246zm-1.026-1.231h3.579c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-3.474a.85.85 0 0 0-.105-.246zm3.579-.984h-6.159a.126.126 0 0 1-.123-.123c0-.068.056-.123.123-.123h6.159c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123zm1.844-3.816v2.462c.115 0 .225-.017.331-.047a.308.308 0 1 0 .528-.304l.021-.021c.052.04.116.064.186.064a.312.312 0 0 0 .307-.308.306.306 0 0 0-.189-.283l.007-.028c.013.001.026.004.04.004a.312.312 0 0 0 .307-.308.312.312 0 0 0-.307-.308c-.014 0-.027.003-.04.004l-.007-.027a.31.31 0 0 0-.118-.592.306.306 0 0 0-.186.064l-.021-.021a.3.3 0 0 0 .063-.184c-.011-.326-.454-.416-.591-.12a1.24 1.24 0 0 0-.321-.047zm-6.059 2.339h4.215c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-4.451a.564.564 0 0 0 .073-.19.553.553 0 0 0 .163-.056zm.454-1.208h3.761c.067 0 .123.056.123.123a.124.124 0 0 1-.123.123h-3.772a.552.552 0 0 0 .011-.246zm5.605-6.225h-.004c-.381.013-.561.393-.719.729-.166.35-.294.578-.504.572-.233-.009-.366-.271-.506-.549-.162-.32-.347-.682-.734-.668-.375.013-.556.344-.715.636-.169.311-.285.5-.507.491-.237-.008-.363-.222-.509-.469-.163-.275-.351-.585-.731-.574-.368.013-.549.294-.709.542-.169.262-.287.421-.513.412-.243-.009-.368-.186-.513-.391-.163-.231-.347-.491-.726-.479-.36.013-.541.243-.701.446-.151.192-.27.344-.52.335h-.005a.126.126 0 0 0-.123.123c0 .066.053.121.119.123.371.012.559-.222.723-.429.145-.184.27-.343.516-.352.237-.01.348.138.516.375.16.226.341.482.705.495.382.013.566-.273.729-.525.145-.226.271-.421.511-.429.22-.008.34.166.51.453.159.271.34.577.712.59.385.014.57-.322.732-.619.14-.257.273-.5.507-.508.221-.005.336.196.506.533.159.314.339.67.717.684h.021c.377 0 .556-.378.714-.713.14-.297.273-.576.501-.588zM7.385 6.509a.312.312 0 0 1-.308-.308c-.01-.532-.378-.911-.927-.922-.528-.011-.888.432-.919.922-.011.168-.139.307-.308.308a.31.31 0 0 1-.308-.308c0-.848.69-1.538 1.539-1.538.848 0 1.538.69 1.538 1.538a.312.312 0 0 1-.307.308zm9.846-2.308a.31.31 0 0 1 .308.308.31.31 0 0 1-.308.308.31.31 0 0 1-.308-.308.31.31 0 0 1 .308-.308zm2.461-.153a.31.31 0 0 1 .307.308.31.31 0 0 1-.308.308h-.001a.31.31 0 0 1-.307-.308.31.31 0 0 1 .308-.308z" }) + ] + } + ); +}); + +export { SiDocusaurus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.cjs new file mode 100644 index 000000000..20303fa90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C6FE1E"; +const SiDodopayments = React__namespace.forwardRef(function SiDodopayments2({ title = "Dodo Payments", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0M8.21 5.414c2.44-.162 4.62 1.036 5.858 2.98.484.941 5.714-.545 7.354 3.047l.004.002c.446 1.184-.004 3.374-.703 4.764-.074.147-.258.292-.338.068-.938-2.441-4.856-1.943-5.016-1.935h-.01c-.752.085-1.809.073-2.597.2-.327.044-.407.382-.47.648-.345 1.467.667 3.628 1.552 5.212h-5.73c-1.98-3.1-6.057-8.862-3.64-12.68l.005-.011v-.002l.001-.002V7.7l-.001-.002-.006-.011v-.002l-.002-.002a.3.3 0 0 0-.116-.041s-.739-.177-.753-.198c.342-.45.892-.748 1.332-1.005.084-.047.14-.068.154-.084v-.002l.002-.002v-.002l.002-.002v-.002l-.002-.002V6.34l-.002-.002c-.016-.016-.075-.037-.184-.078-.065-.024-.053-.02-.097-.04l-.59-.26c.979-.615 2.493-.568 2.933-.392q.537-.119 1.06-.154m1.427 1.797a3 3 0 0 0-.604.078c-.614.136-1.154.497-1.447 1.05-.906 1.631-.09 3.73 1.435 4.659l.006.006c1.048.714 3.768.708 4.883.713.227-.016.454-.028.59-.143.157-.128.154-.375.135-.57-.035-.354-.07-.701-.045-1.055a4.4 4.4 0 0 1 .51-1.687l-.002-.002c.235-.4.382-.734-.205-.875-.314-.064-.64-.051-.954-.14-.681-.146-1.126-.619-1.646-1.073-.262-.22-.607-.413-.895-.559a3.6 3.6 0 0 0-1.761-.402m.644 1.613a1 1 0 0 1 .28.037h.007c1.253.394.706 2.22-.568 1.858-.52-.16-.815-.74-.629-1.246a.99.99 0 0 1 .91-.649" }) + ] + } + ); +}); + +exports.default = SiDodopayments; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.d.ts new file mode 100644 index 000000000..5553db539 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C6FE1E"; +declare const SiDodopayments: IconType; +export { SiDodopayments as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.mjs new file mode 100644 index 000000000..29ef3d401 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDodopayments.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C6FE1E"; +const SiDodopayments = React.forwardRef(function SiDodopayments2({ title = "Dodo Payments", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0M8.21 5.414c2.44-.162 4.62 1.036 5.858 2.98.484.941 5.714-.545 7.354 3.047l.004.002c.446 1.184-.004 3.374-.703 4.764-.074.147-.258.292-.338.068-.938-2.441-4.856-1.943-5.016-1.935h-.01c-.752.085-1.809.073-2.597.2-.327.044-.407.382-.47.648-.345 1.467.667 3.628 1.552 5.212h-5.73c-1.98-3.1-6.057-8.862-3.64-12.68l.005-.011v-.002l.001-.002V7.7l-.001-.002-.006-.011v-.002l-.002-.002a.3.3 0 0 0-.116-.041s-.739-.177-.753-.198c.342-.45.892-.748 1.332-1.005.084-.047.14-.068.154-.084v-.002l.002-.002v-.002l.002-.002v-.002l-.002-.002V6.34l-.002-.002c-.016-.016-.075-.037-.184-.078-.065-.024-.053-.02-.097-.04l-.59-.26c.979-.615 2.493-.568 2.933-.392q.537-.119 1.06-.154m1.427 1.797a3 3 0 0 0-.604.078c-.614.136-1.154.497-1.447 1.05-.906 1.631-.09 3.73 1.435 4.659l.006.006c1.048.714 3.768.708 4.883.713.227-.016.454-.028.59-.143.157-.128.154-.375.135-.57-.035-.354-.07-.701-.045-1.055a4.4 4.4 0 0 1 .51-1.687l-.002-.002c.235-.4.382-.734-.205-.875-.314-.064-.64-.051-.954-.14-.681-.146-1.126-.619-1.646-1.073-.262-.22-.607-.413-.895-.559a3.6 3.6 0 0 0-1.761-.402m.644 1.613a1 1 0 0 1 .28.037h.007c1.253.394.706 2.22-.568 1.858-.52-.16-.815-.74-.629-1.246a.99.99 0 0 1 .91-.649" }) + ] + } + ); +}); + +export { SiDodopayments as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.cjs new file mode 100644 index 000000000..7631d13c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C2A633"; +const SiDogecoin = React__namespace.forwardRef(function SiDogecoin2({ title = "Dogecoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.288 7.908h-1.715v3.38h2.697v1.415h-2.697v3.38h1.799c.462 0 3.794.052 3.789-3.933-.005-3.984-3.232-4.242-3.873-4.242zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.472 18.481H8.126v-5.778H6.594v-1.415h1.532V5.511h3.73c.882 0 6.727-.183 6.727 6.594-.001 6.888-6.111 6.376-6.111 6.376z" }) + ] + } + ); +}); + +exports.default = SiDogecoin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.d.ts new file mode 100644 index 000000000..d487b452d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C2A633"; +declare const SiDogecoin: IconType; +export { SiDogecoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.mjs new file mode 100644 index 000000000..d2e9eb790 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDogecoin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C2A633"; +const SiDogecoin = React.forwardRef(function SiDogecoin2({ title = "Dogecoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.288 7.908h-1.715v3.38h2.697v1.415h-2.697v3.38h1.799c.462 0 3.794.052 3.789-3.933-.005-3.984-3.232-4.242-3.873-4.242zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.472 18.481H8.126v-5.778H6.594v-1.415h1.532V5.511h3.73c.882 0 6.727-.183 6.727 6.594-.001 6.888-6.111 6.376-6.111 6.376z" }) + ] + } + ); +}); + +export { SiDogecoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.cjs new file mode 100644 index 000000000..5eb681cd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAB70C"; +const SiDoi = React__namespace.forwardRef(function SiDoi2({ title = "DOI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.633-5.367 12-12 12S0 18.633 0 12 5.367 0 12 0s12 5.367 12 12ZM7.588 6.097v4.471c-.663-.925-1.403-1.373-2.406-1.373-2.046 0-3.244 1.441-3.244 3.847 0 2.357 1.325 3.848 3.166 3.848 1.12 0 1.88-.4 2.445-1.325l-.039 1.042h2.045V6.097Zm-1.763 8.942c-1.12 0-1.802-.76-1.802-2.045 0-1.325.682-2.085 1.802-2.085 1.081 0 1.802.76 1.802 2.085 0 1.285-.672 2.045-1.802 2.045Zm12.253-1.948c0-2.172-1.578-3.789-3.906-3.789-2.328 0-3.945 1.695-3.945 3.789 0 2.133 1.578 3.789 3.945 3.789 2.289 0 3.906-1.656 3.906-3.789Zm-2.094-.01c0 1.14-.711 1.89-1.851 1.89-1.139 0-1.851-.75-1.851-1.89 0-1.139.712-1.89 1.851-1.89 1.149 0 1.861.751 1.851 1.89Zm2.6-5.795c0 .633.517 1.227 1.189 1.227.633 0 1.188-.555 1.188-1.227a1.17 1.17 0 0 0-1.188-1.189c-.672 0-1.179.556-1.189 1.189Zm.166 9.341h2.055V9.604H18.75Z" }) + ] + } + ); +}); + +exports.default = SiDoi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.d.ts new file mode 100644 index 000000000..be7282a8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAB70C"; +declare const SiDoi: IconType; +export { SiDoi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.mjs new file mode 100644 index 000000000..c7a4a41e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAB70C"; +const SiDoi = React.forwardRef(function SiDoi2({ title = "DOI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.633-5.367 12-12 12S0 18.633 0 12 5.367 0 12 0s12 5.367 12 12ZM7.588 6.097v4.471c-.663-.925-1.403-1.373-2.406-1.373-2.046 0-3.244 1.441-3.244 3.847 0 2.357 1.325 3.848 3.166 3.848 1.12 0 1.88-.4 2.445-1.325l-.039 1.042h2.045V6.097Zm-1.763 8.942c-1.12 0-1.802-.76-1.802-2.045 0-1.325.682-2.085 1.802-2.085 1.081 0 1.802.76 1.802 2.085 0 1.285-.672 2.045-1.802 2.045Zm12.253-1.948c0-2.172-1.578-3.789-3.906-3.789-2.328 0-3.945 1.695-3.945 3.789 0 2.133 1.578 3.789 3.945 3.789 2.289 0 3.906-1.656 3.906-3.789Zm-2.094-.01c0 1.14-.711 1.89-1.851 1.89-1.139 0-1.851-.75-1.851-1.89 0-1.139.712-1.89 1.851-1.89 1.149 0 1.861.751 1.851 1.89Zm2.6-5.795c0 .633.517 1.227 1.189 1.227.633 0 1.188-.555 1.188-1.227a1.17 1.17 0 0 0-1.188-1.189c-.672 0-1.179.556-1.189 1.189Zm.166 9.341h2.055V9.604H18.75Z" }) + ] + } + ); +}); + +export { SiDoi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.cjs new file mode 100644 index 000000000..7a0bdf624 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiDolby = React__namespace.forwardRef(function SiDolby2({ title = "Dolby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.564v16.872h2.488c4.648 0 8.438-3.788 8.438-8.436s-3.79-8.436-8.438-8.436H0zm21.512 0c-4.648 0-8.438 3.788-8.438 8.436s3.79 8.436 8.438 8.436H24V3.564h-2.488z" }) + ] + } + ); +}); + +exports.default = SiDolby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.d.ts new file mode 100644 index 000000000..41e19dd46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiDolby: IconType; +export { SiDolby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.mjs new file mode 100644 index 000000000..2976ca81b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiDolby = React.forwardRef(function SiDolby2({ title = "Dolby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.564v16.872h2.488c4.648 0 8.438-3.788 8.438-8.436s-3.79-8.436-8.438-8.436H0zm21.512 0c-4.648 0-8.438 3.788-8.438 8.436s3.79 8.436 8.438 8.436H24V3.564h-2.488z" }) + ] + } + ); +}); + +export { SiDolby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.cjs new file mode 100644 index 000000000..2d6da33d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#263C5C"; +const SiDolibarr = React__namespace.forwardRef(function SiDolibarr2({ title = "Dolibarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.275 0a3.18 3.168 0 0 0-3.18 3.169 3.18 3.168 0 0 0 3.18 3.168 3.18 3.168 0 0 0 3.18-3.168A3.18 3.168 0 0 0 20.275 0ZM.545.353v23.645H7.63L7.64 7.104h2.395c4.066 0 6.099 1.602 6.099 4.806 0 3.41-2.068 5.115-6.204 5.115H8.794v6.97s1.683.005 2.114.005c3.67 0 6.67-1.125 9-3.376 2.33-2.25 3.495-5.155 3.495-8.714 0-2.072-.423-3.903-1.268-5.493a3.803 3.803 0 0 1-1.86.495c-.982 0-1.96-.403-2.654-1.096a3.782 3.782 0 0 1-1.1-2.647c0-.533.12-1.063.34-1.548C14.913.776 12.557.353 9.79.353Z" }) + ] + } + ); +}); + +exports.default = SiDolibarr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.d.ts new file mode 100644 index 000000000..c64fd428b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#263C5C"; +declare const SiDolibarr: IconType; +export { SiDolibarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.mjs new file mode 100644 index 000000000..5888faaba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolibarr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#263C5C"; +const SiDolibarr = React.forwardRef(function SiDolibarr2({ title = "Dolibarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.275 0a3.18 3.168 0 0 0-3.18 3.169 3.18 3.168 0 0 0 3.18 3.168 3.18 3.168 0 0 0 3.18-3.168A3.18 3.168 0 0 0 20.275 0ZM.545.353v23.645H7.63L7.64 7.104h2.395c4.066 0 6.099 1.602 6.099 4.806 0 3.41-2.068 5.115-6.204 5.115H8.794v6.97s1.683.005 2.114.005c3.67 0 6.67-1.125 9-3.376 2.33-2.25 3.495-5.155 3.495-8.714 0-2.072-.423-3.903-1.268-5.493a3.803 3.803 0 0 1-1.86.495c-.982 0-1.96-.403-2.654-1.096a3.782 3.782 0 0 1-1.1-2.647c0-.533.12-1.063.34-1.548C14.913.776 12.557.353 9.79.353Z" }) + ] + } + ); +}); + +export { SiDolibarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.cjs new file mode 100644 index 000000000..6f86dce4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AAFF"; +const SiDolphin = React__namespace.forwardRef(function SiDolphin2({ title = "Dolphin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.195 5.308a6.61 6.61 0 0 0-.804.026c-1.223.108-1.834.504-2.135.691-.135.083-.344.1-.518.062-3.518-1.08-6.743-.62-8.363-.142-3.228.951-3.893 2.885-4.098 3.978-.07.295-.093.532-.13.67-.115.443-1.565 1.225-1.029 1.78.517.534 1.423.478 2.08.216 1.494-.592 2.652-.809 4.599-.882h.021c.181-.003.338-.034.475.091.16.149.708 1.308 1.927 2.16 1.363.953 2.772.913 2.86.768v-.002h.002l.002-.002v-.002c.036-.12-.315-.2-1.063-1.13-.646-.804-.592-1.645.036-1.49a.591.591 0 0 0 .04.007c3.447.901 5.748 2.922 5.868 2.947v.002h.002l.002-.002.002-.002v-.008c.166-.229-.958-2.957-3.871-4.586-3.297-1.843-6.389-.971-7.061-.693-.162-.272.967-1.383 3.377-1.476 5.4-.209 8.744 2.753 10.578 4.56 2.25 2.217 3.923 5.853 3.973 5.846l.002-.002h.002v-.004h.004c.12-.125-.2-2.393-.885-4.045-.881-2.126-1.966-3.69-3.525-5.148a15.572 15.572 0 0 0-2.153-1.69c-.114-.079-.254-.183-.337-.328.434-1.003 2.046-1.04 2.213-1.13l.007-.005.002-.002v-.002l.002-.004c.085-.183-.424-.966-2.107-1.023z" }) + ] + } + ); +}); + +exports.default = SiDolphin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.d.ts new file mode 100644 index 000000000..b1ff61d3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AAFF"; +declare const SiDolphin: IconType; +export { SiDolphin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.mjs new file mode 100644 index 000000000..634807917 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDolphin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AAFF"; +const SiDolphin = React.forwardRef(function SiDolphin2({ title = "Dolphin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.195 5.308a6.61 6.61 0 0 0-.804.026c-1.223.108-1.834.504-2.135.691-.135.083-.344.1-.518.062-3.518-1.08-6.743-.62-8.363-.142-3.228.951-3.893 2.885-4.098 3.978-.07.295-.093.532-.13.67-.115.443-1.565 1.225-1.029 1.78.517.534 1.423.478 2.08.216 1.494-.592 2.652-.809 4.599-.882h.021c.181-.003.338-.034.475.091.16.149.708 1.308 1.927 2.16 1.363.953 2.772.913 2.86.768v-.002h.002l.002-.002v-.002c.036-.12-.315-.2-1.063-1.13-.646-.804-.592-1.645.036-1.49a.591.591 0 0 0 .04.007c3.447.901 5.748 2.922 5.868 2.947v.002h.002l.002-.002.002-.002v-.008c.166-.229-.958-2.957-3.871-4.586-3.297-1.843-6.389-.971-7.061-.693-.162-.272.967-1.383 3.377-1.476 5.4-.209 8.744 2.753 10.578 4.56 2.25 2.217 3.923 5.853 3.973 5.846l.002-.002h.002v-.004h.004c.12-.125-.2-2.393-.885-4.045-.881-2.126-1.966-3.69-3.525-5.148a15.572 15.572 0 0 0-2.153-1.69c-.114-.079-.254-.183-.337-.328.434-1.003 2.046-1.04 2.213-1.13l.007-.005.002-.002v-.002l.002-.004c.085-.183-.424-.966-2.107-1.023z" }) + ] + } + ); +}); + +export { SiDolphin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.cjs new file mode 100644 index 000000000..0ddefaaed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3008"; +const SiDoordash = React__namespace.forwardRef(function SiDoordash2({ title = "DoorDash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.071 8.409a6.09 6.09 0 00-5.396-3.228H.584A.589.589 0 00.17 6.184L3.894 9.93a1.752 1.752 0 001.242.516h12.049a1.554 1.554 0 11.031 3.108H8.91a.589.589 0 00-.415 1.003l3.725 3.747a1.75 1.75 0 001.242.516h3.757c4.887 0 8.584-5.225 5.852-10.413" }) + ] + } + ); +}); + +exports.default = SiDoordash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.d.ts new file mode 100644 index 000000000..8679de797 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3008"; +declare const SiDoordash: IconType; +export { SiDoordash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.mjs new file mode 100644 index 000000000..15a3bcb59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoordash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3008"; +const SiDoordash = React.forwardRef(function SiDoordash2({ title = "DoorDash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.071 8.409a6.09 6.09 0 00-5.396-3.228H.584A.589.589 0 00.17 6.184L3.894 9.93a1.752 1.752 0 001.242.516h12.049a1.554 1.554 0 11.031 3.108H8.91a.589.589 0 00-.415 1.003l3.725 3.747a1.75 1.75 0 001.242.516h3.757c4.887 0 8.584-5.225 5.852-10.413" }) + ] + } + ); +}); + +export { SiDoordash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.cjs new file mode 100644 index 000000000..2823732d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BF2E1A"; +const SiDota2 = React__namespace.forwardRef(function SiDota22({ title = "Dota 2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 9.817 23.607 L 9.471 23.313 L 9.003 23.273 C 8.419 23.225 8.147 23.172 7.817 23.041 L 7.559 22.938 L 7.281 23.048 C 7.045 23.143 6.467 23.229 6.028 23.236 C 6.004 23.236 5.964 23.18 5.939 23.111 C 5.911 23.041 5.862 22.974 5.824 22.961 C 5.789 22.949 5.527 23.007 5.237 23.094 L 4.712 23.252 L 4.523 23.161 C 4.285 23.045 4.185 23.047 3.787 23.168 C 3.484 23.262 3.446 23.264 3.203 23.212 C 2.84 23.136 2.537 23.141 1.854 23.238 C 1.11 23.344 1.094 23.344 0.875 23.194 C 0.728 23.094 0.648 23.069 0.469 23.069 C 0.266 23.069 0.244 23.06 0.221 22.965 C 0.206 22.906 0.225 22.787 0.264 22.688 C 0.376 22.41 0.42 21.736 0.432 20.125 L 0.444 18.62 L 0.655 18.635 L 0.863 18.65 L 0.895 17.78 C 0.911 17.302 0.927 16.611 0.93 16.246 L 0.935 15.586 L 0.823 15.506 C 0.518 15.283 0.532 15.315 0.405 14.588 C 0.339 14.211 0.274 13.658 0.259 13.358 C 0.234 12.826 0.236 12.811 0.334 12.7 L 0.434 12.586 L 0.682 12.799 C 0.82 12.916 0.937 12.993 0.948 12.969 C 0.984 12.856 0.871 11.508 0.813 11.338 C 0.775 11.238 0.747 11.101 0.747 11.03 C 0.747 10.962 0.679 10.778 0.594 10.618 L 0.443 10.329 L 0.494 9.816 C 0.561 9.136 0.475 8.636 0.19 8.034 L 0.065 7.763 L 0.144 7.09 L 0.228 6.416 L 0.14 6.067 L 0.049 5.717 L 0.154 5.326 L 0.255 4.933 L 0.14 4.553 L 0.021 4.174 L 0.164 3.774 C 0.305 3.385 0.308 3.364 0.305 2.73 C 0.303 2.016 0.228 1.551 0.08 1.365 C -0.047 1.203 -0.026 1.092 0.163 0.919 C 0.253 0.834 0.328 0.726 0.328 0.681 C 0.328 0.612 0.359 0.599 0.549 0.595 C 0.669 0.595 1.039 0.563 1.372 0.525 L 1.979 0.452 L 2.773 0.569 C 3.565 0.684 3.566 0.684 4.652 0.638 L 5.74 0.591 L 5.997 0.746 L 6.257 0.899 L 7.312 0.884 L 8.368 0.869 L 8.724 0.74 C 8.918 0.669 9.229 0.545 9.414 0.461 C 9.596 0.377 9.927 0.264 10.144 0.204 L 10.542 0.099 L 11.056 0.261 L 11.57 0.425 L 12.014 0.276 L 12.456 0.127 L 12.933 0.285 C 13.196 0.371 13.684 0.583 14.022 0.757 L 14.633 1.069 L 15.273 1.051 C 15.758 1.036 15.924 1.018 15.95 0.973 C 15.97 0.942 16.031 0.758 16.083 0.566 L 16.178 0.215 L 16.783 0.235 C 17.236 0.251 17.642 0.299 18.384 0.429 L 19.379 0.605 L 19.638 0.501 C 19.778 0.444 20.046 0.375 20.233 0.351 C 20.546 0.309 20.6 0.314 21.027 0.422 C 21.425 0.522 21.562 0.537 22.109 0.537 C 22.454 0.537 22.812 0.522 22.907 0.506 C 23.07 0.478 23.097 0.489 23.428 0.728 C 23.621 0.866 23.792 1.001 23.807 1.03 C 23.824 1.057 23.86 1.203 23.884 1.354 L 23.93 1.632 L 23.721 2.028 C 23.604 2.246 23.507 2.443 23.507 2.466 C 23.507 2.489 23.555 2.527 23.611 2.554 C 23.668 2.579 23.764 2.677 23.826 2.771 L 23.937 2.941 L 23.912 5.226 C 23.897 6.483 23.872 7.604 23.858 7.715 L 23.831 7.919 L 23.486 7.897 L 23.142 7.87 L 23.113 8.061 C 23.097 8.164 23.084 8.353 23.084 8.485 C 23.084 8.677 23.054 8.778 22.924 9.031 L 22.761 9.342 L 22.851 9.471 C 22.901 9.543 23.072 9.736 23.231 9.901 L 23.523 10.206 L 23.434 10.529 L 23.344 10.854 L 23.451 11.542 C 23.575 12.369 23.566 12.577 23.363 13.293 C 23.282 13.58 23.217 13.846 23.217 13.886 C 23.217 13.961 23.272 13.98 23.644 14.031 C 23.809 14.052 23.844 14.072 23.844 14.147 C 23.844 14.196 23.87 15.251 23.904 16.492 C 24.011 20.567 24.021 21.456 23.971 22.38 C 23.944 22.862 23.913 23.262 23.904 23.271 C 23.894 23.28 23.563 23.147 23.166 22.976 L 22.443 22.668 L 22.131 22.803 C 21.809 22.942 21.777 22.978 21.735 23.245 C 21.706 23.422 21.728 23.414 20.935 23.576 L 20.468 23.672 L 20.014 23.52 C 19.594 23.379 19.537 23.369 19.206 23.391 C 18.959 23.406 18.789 23.394 18.644 23.351 C 18.436 23.292 18.436 23.292 18.087 23.453 L 17.735 23.612 L 16.435 23.612 C 15.066 23.61 14.784 23.632 13.841 23.807 C 13.189 23.927 12.96 23.922 11.819 23.785 L 11.217 23.711 L 10.796 23.807 C 10.562 23.861 10.326 23.903 10.27 23.901 C 10.202 23.901 10.046 23.8 9.819 23.607 L 9.817 23.607 Z M 7.284 19.918 C 8.289 19.539 9.118 19.223 9.123 19.216 C 9.136 19.202 5.206 15.39 4.684 14.909 C 4.539 14.775 4.409 14.672 4.399 14.682 C 4.39 14.693 4.07 15.547 3.69 16.577 C 3.27 17.715 3.011 18.476 3.032 18.508 C 3.057 18.55 5.424 20.599 5.451 20.605 C 5.454 20.605 6.279 20.296 7.284 19.918 Z M 20.796 17.829 C 21.319 16.564 21.732 15.519 21.718 15.504 C 21.699 15.483 11.888 8.858 5.02 4.226 L 4.469 3.855 L 3.569 4.262 C 3.072 4.484 2.673 4.687 2.68 4.709 C 2.69 4.737 6.011 8.219 10.064 12.449 L 17.432 20.141 L 18.638 20.133 L 19.847 20.125 L 20.796 17.829 Z M 19.434 6.972 C 19.607 6.01 19.75 5.191 19.75 5.151 C 19.75 5.108 19.497 4.902 19.074 4.605 C 18.702 4.343 18.373 4.115 18.344 4.096 C 18.291 4.063 14.442 5.104 14.447 5.149 C 14.451 5.179 19.091 8.748 19.107 8.731 C 19.115 8.725 19.261 7.932 19.434 6.972 Z" }) + ] + } + ); +}); + +exports.default = SiDota2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.d.ts new file mode 100644 index 000000000..becad9d10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BF2E1A"; +declare const SiDota2: IconType; +export { SiDota2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.mjs new file mode 100644 index 000000000..0e1b48061 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDota2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BF2E1A"; +const SiDota2 = React.forwardRef(function SiDota22({ title = "Dota 2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 9.817 23.607 L 9.471 23.313 L 9.003 23.273 C 8.419 23.225 8.147 23.172 7.817 23.041 L 7.559 22.938 L 7.281 23.048 C 7.045 23.143 6.467 23.229 6.028 23.236 C 6.004 23.236 5.964 23.18 5.939 23.111 C 5.911 23.041 5.862 22.974 5.824 22.961 C 5.789 22.949 5.527 23.007 5.237 23.094 L 4.712 23.252 L 4.523 23.161 C 4.285 23.045 4.185 23.047 3.787 23.168 C 3.484 23.262 3.446 23.264 3.203 23.212 C 2.84 23.136 2.537 23.141 1.854 23.238 C 1.11 23.344 1.094 23.344 0.875 23.194 C 0.728 23.094 0.648 23.069 0.469 23.069 C 0.266 23.069 0.244 23.06 0.221 22.965 C 0.206 22.906 0.225 22.787 0.264 22.688 C 0.376 22.41 0.42 21.736 0.432 20.125 L 0.444 18.62 L 0.655 18.635 L 0.863 18.65 L 0.895 17.78 C 0.911 17.302 0.927 16.611 0.93 16.246 L 0.935 15.586 L 0.823 15.506 C 0.518 15.283 0.532 15.315 0.405 14.588 C 0.339 14.211 0.274 13.658 0.259 13.358 C 0.234 12.826 0.236 12.811 0.334 12.7 L 0.434 12.586 L 0.682 12.799 C 0.82 12.916 0.937 12.993 0.948 12.969 C 0.984 12.856 0.871 11.508 0.813 11.338 C 0.775 11.238 0.747 11.101 0.747 11.03 C 0.747 10.962 0.679 10.778 0.594 10.618 L 0.443 10.329 L 0.494 9.816 C 0.561 9.136 0.475 8.636 0.19 8.034 L 0.065 7.763 L 0.144 7.09 L 0.228 6.416 L 0.14 6.067 L 0.049 5.717 L 0.154 5.326 L 0.255 4.933 L 0.14 4.553 L 0.021 4.174 L 0.164 3.774 C 0.305 3.385 0.308 3.364 0.305 2.73 C 0.303 2.016 0.228 1.551 0.08 1.365 C -0.047 1.203 -0.026 1.092 0.163 0.919 C 0.253 0.834 0.328 0.726 0.328 0.681 C 0.328 0.612 0.359 0.599 0.549 0.595 C 0.669 0.595 1.039 0.563 1.372 0.525 L 1.979 0.452 L 2.773 0.569 C 3.565 0.684 3.566 0.684 4.652 0.638 L 5.74 0.591 L 5.997 0.746 L 6.257 0.899 L 7.312 0.884 L 8.368 0.869 L 8.724 0.74 C 8.918 0.669 9.229 0.545 9.414 0.461 C 9.596 0.377 9.927 0.264 10.144 0.204 L 10.542 0.099 L 11.056 0.261 L 11.57 0.425 L 12.014 0.276 L 12.456 0.127 L 12.933 0.285 C 13.196 0.371 13.684 0.583 14.022 0.757 L 14.633 1.069 L 15.273 1.051 C 15.758 1.036 15.924 1.018 15.95 0.973 C 15.97 0.942 16.031 0.758 16.083 0.566 L 16.178 0.215 L 16.783 0.235 C 17.236 0.251 17.642 0.299 18.384 0.429 L 19.379 0.605 L 19.638 0.501 C 19.778 0.444 20.046 0.375 20.233 0.351 C 20.546 0.309 20.6 0.314 21.027 0.422 C 21.425 0.522 21.562 0.537 22.109 0.537 C 22.454 0.537 22.812 0.522 22.907 0.506 C 23.07 0.478 23.097 0.489 23.428 0.728 C 23.621 0.866 23.792 1.001 23.807 1.03 C 23.824 1.057 23.86 1.203 23.884 1.354 L 23.93 1.632 L 23.721 2.028 C 23.604 2.246 23.507 2.443 23.507 2.466 C 23.507 2.489 23.555 2.527 23.611 2.554 C 23.668 2.579 23.764 2.677 23.826 2.771 L 23.937 2.941 L 23.912 5.226 C 23.897 6.483 23.872 7.604 23.858 7.715 L 23.831 7.919 L 23.486 7.897 L 23.142 7.87 L 23.113 8.061 C 23.097 8.164 23.084 8.353 23.084 8.485 C 23.084 8.677 23.054 8.778 22.924 9.031 L 22.761 9.342 L 22.851 9.471 C 22.901 9.543 23.072 9.736 23.231 9.901 L 23.523 10.206 L 23.434 10.529 L 23.344 10.854 L 23.451 11.542 C 23.575 12.369 23.566 12.577 23.363 13.293 C 23.282 13.58 23.217 13.846 23.217 13.886 C 23.217 13.961 23.272 13.98 23.644 14.031 C 23.809 14.052 23.844 14.072 23.844 14.147 C 23.844 14.196 23.87 15.251 23.904 16.492 C 24.011 20.567 24.021 21.456 23.971 22.38 C 23.944 22.862 23.913 23.262 23.904 23.271 C 23.894 23.28 23.563 23.147 23.166 22.976 L 22.443 22.668 L 22.131 22.803 C 21.809 22.942 21.777 22.978 21.735 23.245 C 21.706 23.422 21.728 23.414 20.935 23.576 L 20.468 23.672 L 20.014 23.52 C 19.594 23.379 19.537 23.369 19.206 23.391 C 18.959 23.406 18.789 23.394 18.644 23.351 C 18.436 23.292 18.436 23.292 18.087 23.453 L 17.735 23.612 L 16.435 23.612 C 15.066 23.61 14.784 23.632 13.841 23.807 C 13.189 23.927 12.96 23.922 11.819 23.785 L 11.217 23.711 L 10.796 23.807 C 10.562 23.861 10.326 23.903 10.27 23.901 C 10.202 23.901 10.046 23.8 9.819 23.607 L 9.817 23.607 Z M 7.284 19.918 C 8.289 19.539 9.118 19.223 9.123 19.216 C 9.136 19.202 5.206 15.39 4.684 14.909 C 4.539 14.775 4.409 14.672 4.399 14.682 C 4.39 14.693 4.07 15.547 3.69 16.577 C 3.27 17.715 3.011 18.476 3.032 18.508 C 3.057 18.55 5.424 20.599 5.451 20.605 C 5.454 20.605 6.279 20.296 7.284 19.918 Z M 20.796 17.829 C 21.319 16.564 21.732 15.519 21.718 15.504 C 21.699 15.483 11.888 8.858 5.02 4.226 L 4.469 3.855 L 3.569 4.262 C 3.072 4.484 2.673 4.687 2.68 4.709 C 2.69 4.737 6.011 8.219 10.064 12.449 L 17.432 20.141 L 18.638 20.133 L 19.847 20.125 L 20.796 17.829 Z M 19.434 6.972 C 19.607 6.01 19.75 5.191 19.75 5.151 C 19.75 5.108 19.497 4.902 19.074 4.605 C 18.702 4.343 18.373 4.115 18.344 4.096 C 18.291 4.063 14.442 5.104 14.447 5.149 C 14.451 5.179 19.091 8.748 19.107 8.731 C 19.115 8.725 19.261 7.932 19.434 6.972 Z" }) + ] + } + ); +}); + +export { SiDota2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.cjs new file mode 100644 index 000000000..9485b86c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ECD53F"; +const SiDotenv = React__namespace.forwardRef(function SiDotenv2({ title = ".ENV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 0v24H0V0h24ZM10.933 15.89H6.84v5.52h4.198v-.93H7.955v-1.503h2.77v-.93h-2.77v-1.224h2.978v-.934Zm2.146 0h-1.084v5.52h1.035v-3.6l2.226 3.6h1.118v-5.52h-1.036v3.686l-2.259-3.687Zm5.117 0h-1.208l1.973 5.52h1.19l1.976-5.52h-1.182l-1.352 4.085-1.397-4.086ZM5.4 19.68H3.72v1.68H5.4v-1.68Z" }) + ] + } + ); +}); + +exports.default = SiDotenv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.d.ts new file mode 100644 index 000000000..c039513dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ECD53F"; +declare const SiDotenv: IconType; +export { SiDotenv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.mjs new file mode 100644 index 000000000..6fcfd0377 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDotenv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ECD53F"; +const SiDotenv = React.forwardRef(function SiDotenv2({ title = ".ENV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 0v24H0V0h24ZM10.933 15.89H6.84v5.52h4.198v-.93H7.955v-1.503h2.77v-.93h-2.77v-1.224h2.978v-.934Zm2.146 0h-1.084v5.52h1.035v-3.6l2.226 3.6h1.118v-5.52h-1.036v3.686l-2.259-3.687Zm5.117 0h-1.208l1.973 5.52h1.19l1.976-5.52h-1.182l-1.352 4.085-1.397-4.086ZM5.4 19.68H3.72v1.68H5.4v-1.68Z" }) + ] + } + ); +}); + +export { SiDotenv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.cjs new file mode 100644 index 000000000..b78dcfe11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#512BD4"; +const SiDotnet = React__namespace.forwardRef(function SiDotnet2({ title = ".NET", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 8.77h-2.468v7.565h-1.425V8.77h-2.462V7.53H24zm-6.852 7.565h-4.821V7.53h4.63v1.24h-3.205v2.494h2.953v1.234h-2.953v2.604h3.396zm-6.708 0H8.882L4.78 9.863a2.896 2.896 0 0 1-.258-.51h-.036c.032.189.048.592.048 1.21v5.772H3.157V7.53h1.659l3.965 6.32c.167.261.275.442.323.54h.024c-.04-.233-.06-.629-.06-1.185V7.529h1.372zm-8.703-.693a.868.829 0 0 1-.869.829.868.829 0 0 1-.868-.83.868.829 0 0 1 .868-.828.868.829 0 0 1 .869.829Z" }) + ] + } + ); +}); + +exports.default = SiDotnet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.d.ts new file mode 100644 index 000000000..a36349004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#512BD4"; +declare const SiDotnet: IconType; +export { SiDotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.mjs new file mode 100644 index 000000000..f9e251ea7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDotnet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#512BD4"; +const SiDotnet = React.forwardRef(function SiDotnet2({ title = ".NET", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 8.77h-2.468v7.565h-1.425V8.77h-2.462V7.53H24zm-6.852 7.565h-4.821V7.53h4.63v1.24h-3.205v2.494h2.953v1.234h-2.953v2.604h3.396zm-6.708 0H8.882L4.78 9.863a2.896 2.896 0 0 1-.258-.51h-.036c.032.189.048.592.048 1.21v5.772H3.157V7.53h1.659l3.965 6.32c.167.261.275.442.323.54h.024c-.04-.233-.06-.629-.06-1.185V7.529h1.372zm-8.703-.693a.868.829 0 0 1-.869.829.868.829 0 0 1-.868-.83.868.829 0 0 1 .868-.828.868.829 0 0 1 .869.829Z" }) + ] + } + ); +}); + +export { SiDotnet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.cjs new file mode 100644 index 000000000..7f503d0d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D963D"; +const SiDouban = React__namespace.forwardRef(function SiDouban2({ title = "Douban", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.51 3.06h22.98V.755H.51V3.06Zm20.976 2.537v9.608h-2.137l-1.669 5.76H24v2.28H0v-2.28h6.32l-1.67-5.76H2.515V5.597h18.972Zm-5.066 9.608H7.58l1.67 5.76h5.501l1.67-5.76ZM18.367 7.9H5.634v5.025h12.733V7.9Z" }) + ] + } + ); +}); + +exports.default = SiDouban; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.d.ts new file mode 100644 index 000000000..03243ded1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D963D"; +declare const SiDouban: IconType; +export { SiDouban as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.mjs new file mode 100644 index 000000000..3ee4301b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDouban.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D963D"; +const SiDouban = React.forwardRef(function SiDouban2({ title = "Douban", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.51 3.06h22.98V.755H.51V3.06Zm20.976 2.537v9.608h-2.137l-1.669 5.76H24v2.28H0v-2.28h6.32l-1.67-5.76H2.515V5.597h18.972Zm-5.066 9.608H7.58l1.67 5.76h5.501l1.67-5.76ZM18.367 7.9H5.634v5.025h12.733V7.9Z" }) + ] + } + ); +}); + +export { SiDouban as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.cjs new file mode 100644 index 000000000..72a893908 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24D2C8"; +const SiDoubanread = React__namespace.forwardRef(function SiDoubanread2({ title = "Douban Read", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.056 3c-4.128 0-5.432 3.97-7.994 5.966l-.152.115c-.828.607-1.787 1.005-3.012 1.005C2.009 10.083.38 7.855 0 6.435c0 1.098.177 2.248.499 3.397C2.049 15.403 6.96 21 11.41 21c5.206 0 8.985-5.428 10.127-9.556.369-1.332 1.204-2.478 2.368-3.178l.095-.06-.14-.054-.001.004c-1.144-.453-2.082-1.308-2.72-2.384-.983-1.65-2.984-2.77-5.083-2.77m2.705 3.75c.379.008.702.358.736.822.037.496-.269.933-.683.976-.412.041-.775-.325-.811-.82s.267-.93.68-.976zm-4.609 2.252a2.46 2.46 0 0 1 1.048.714c1.487 1.825.403 4.62-1.368 5.858-2.196 1.616-5.202.876-7.382-.379a9.5 9.5 0 0 1-2.775-2.433 10 10 0 0 1-.672-1.021c-.011-.018.015-.035.027-.019 1.391 1.977 3.554 3.302 5.904 3.715.947.144 1.903.24 2.794-.036 1.532-.524 2.903-1.736 3.334-3.329.321-1.088.026-2.33-.938-3.019-.028-.017 0-.064.028-.052" }) + ] + } + ); +}); + +exports.default = SiDoubanread; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.d.ts new file mode 100644 index 000000000..3beaa4522 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24D2C8"; +declare const SiDoubanread: IconType; +export { SiDoubanread as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.mjs new file mode 100644 index 000000000..98e33afc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoubanread.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24D2C8"; +const SiDoubanread = React.forwardRef(function SiDoubanread2({ title = "Douban Read", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.056 3c-4.128 0-5.432 3.97-7.994 5.966l-.152.115c-.828.607-1.787 1.005-3.012 1.005C2.009 10.083.38 7.855 0 6.435c0 1.098.177 2.248.499 3.397C2.049 15.403 6.96 21 11.41 21c5.206 0 8.985-5.428 10.127-9.556.369-1.332 1.204-2.478 2.368-3.178l.095-.06-.14-.054-.001.004c-1.144-.453-2.082-1.308-2.72-2.384-.983-1.65-2.984-2.77-5.083-2.77m2.705 3.75c.379.008.702.358.736.822.037.496-.269.933-.683.976-.412.041-.775-.325-.811-.82s.267-.93.68-.976zm-4.609 2.252a2.46 2.46 0 0 1 1.048.714c1.487 1.825.403 4.62-1.368 5.858-2.196 1.616-5.202.876-7.382-.379a9.5 9.5 0 0 1-2.775-2.433 10 10 0 0 1-.672-1.021c-.011-.018.015-.035.027-.019 1.391 1.977 3.554 3.302 5.904 3.715.947.144 1.903.24 2.794-.036 1.532-.524 2.903-1.736 3.334-3.329.321-1.088.026-2.33-.938-3.019-.028-.017 0-.064.028-.052" }) + ] + } + ); +}); + +export { SiDoubanread as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.cjs new file mode 100644 index 000000000..107889a99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#54BCAB"; +const SiDovecot = React__namespace.forwardRef(function SiDovecot2({ title = "Dovecot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 8.784 8.39 C 8.581 8.391 8.382 8.458 8.22 8.582 L 0.118 14.772 C -0.04 14.897 -0.04 15.138 0.118 15.262 L 0.457 15.515 C 0.61 15.635 0.825 15.635 0.98 15.515 L 4.998 12.454 C 5.22 12.286 5.526 12.286 5.748 12.454 L 8.407 14.487 C 8.628 14.655 8.934 14.655 9.156 14.487 L 12.671 11.804 C 12.902 11.636 12.902 11.291 12.671 11.122 L 9.349 8.582 C 9.187 8.458 8.988 8.39 8.784 8.39 Z M 18.082 8.39 C 17.878 8.39 17.68 8.458 17.519 8.582 L 9.417 14.778 C 9.255 14.901 9.255 15.144 9.417 15.267 L 9.752 15.522 C 9.908 15.638 10.124 15.638 10.279 15.522 L 14.914 11.989 C 15.136 11.823 15.442 11.823 15.662 11.989 L 20.189 15.441 C 20.41 15.61 20.718 15.61 20.939 15.441 L 23.828 13.228 C 24.057 13.056 24.057 12.712 23.828 12.54 L 18.647 8.582 C 18.485 8.458 18.286 8.39 18.082 8.39 Z" }) + ] + } + ); +}); + +exports.default = SiDovecot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.d.ts new file mode 100644 index 000000000..8b8309bc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#54BCAB"; +declare const SiDovecot: IconType; +export { SiDovecot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.mjs new file mode 100644 index 000000000..d6a3ba9a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDovecot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#54BCAB"; +const SiDovecot = React.forwardRef(function SiDovecot2({ title = "Dovecot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 8.784 8.39 C 8.581 8.391 8.382 8.458 8.22 8.582 L 0.118 14.772 C -0.04 14.897 -0.04 15.138 0.118 15.262 L 0.457 15.515 C 0.61 15.635 0.825 15.635 0.98 15.515 L 4.998 12.454 C 5.22 12.286 5.526 12.286 5.748 12.454 L 8.407 14.487 C 8.628 14.655 8.934 14.655 9.156 14.487 L 12.671 11.804 C 12.902 11.636 12.902 11.291 12.671 11.122 L 9.349 8.582 C 9.187 8.458 8.988 8.39 8.784 8.39 Z M 18.082 8.39 C 17.878 8.39 17.68 8.458 17.519 8.582 L 9.417 14.778 C 9.255 14.901 9.255 15.144 9.417 15.267 L 9.752 15.522 C 9.908 15.638 10.124 15.638 10.279 15.522 L 14.914 11.989 C 15.136 11.823 15.442 11.823 15.662 11.989 L 20.189 15.441 C 20.41 15.61 20.718 15.61 20.939 15.441 L 23.828 13.228 C 24.057 13.056 24.057 12.712 23.828 12.54 L 18.647 8.582 C 18.485 8.458 18.286 8.39 18.082 8.39 Z" }) + ] + } + ); +}); + +export { SiDovecot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.cjs new file mode 100644 index 000000000..401c5eb21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#190041"; +const SiDovetail = React__namespace.forwardRef(function SiDovetail2({ title = "Dovetail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.75 0 1.5 3l5.25 3v6L12 9V3Zm0 12L1.5 15l5.25 3v6L12 21v-6Zm10.5-6L12 8.966 17.25 12v6l5.25-3V9Z" }) + ] + } + ); +}); + +exports.default = SiDovetail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.d.ts new file mode 100644 index 000000000..db69ab661 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#190041"; +declare const SiDovetail: IconType; +export { SiDovetail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.mjs new file mode 100644 index 000000000..cf64d817d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDovetail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#190041"; +const SiDovetail = React.forwardRef(function SiDovetail2({ title = "Dovetail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.75 0 1.5 3l5.25 3v6L12 9V3Zm0 12L1.5 15l5.25 3v6L12 21v-6Zm10.5-6L12 8.966 17.25 12v6l5.25-3V9Z" }) + ] + } + ); +}); + +export { SiDovetail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.cjs new file mode 100644 index 000000000..89d41bd80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF160A"; +const SiDowndetector = React__namespace.forwardRef(function SiDowndetector2({ title = "Downdetector", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.49 0 .257 5.362.257 12v12H12c6.51 0 11.743-5.362 11.743-12S18.51 0 12 0Zm0 3.51c.543 0 1.086.065 1.66.192.383.128.639.383.639.766l-.638 10.085c0 .255-.256.511-.512.511-.766.128-1.533.128-2.171 0-.383 0-.639-.256-.639-.51L9.701 4.467c0-.383.256-.638.638-.766A7.583 7.583 0 0 1 12 3.51Zm.065 12.99c.447 0 .892.031 1.339.095.255 0 .384.256.384.384.127.894.127 1.786 0 2.807 0 .256-.257.384-.384.384a9.427 9.427 0 0 1-2.68 0c-.256 0-.384-.256-.384-.384-.128-.893-.128-1.786 0-2.807 0-.255.256-.384.383-.384a9.478 9.478 0 0 1 1.342-.095z" }) + ] + } + ); +}); + +exports.default = SiDowndetector; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.d.ts new file mode 100644 index 000000000..ea5622a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF160A"; +declare const SiDowndetector: IconType; +export { SiDowndetector as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.mjs new file mode 100644 index 000000000..917813610 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDowndetector.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF160A"; +const SiDowndetector = React.forwardRef(function SiDowndetector2({ title = "Downdetector", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.49 0 .257 5.362.257 12v12H12c6.51 0 11.743-5.362 11.743-12S18.51 0 12 0Zm0 3.51c.543 0 1.086.065 1.66.192.383.128.639.383.639.766l-.638 10.085c0 .255-.256.511-.512.511-.766.128-1.533.128-2.171 0-.383 0-.639-.256-.639-.51L9.701 4.467c0-.383.256-.638.638-.766A7.583 7.583 0 0 1 12 3.51Zm.065 12.99c.447 0 .892.031 1.339.095.255 0 .384.256.384.384.127.894.127 1.786 0 2.807 0 .256-.257.384-.384.384a9.427 9.427 0 0 1-2.68 0c-.256 0-.384-.256-.384-.384-.128-.893-.128-1.786 0-2.807 0-.255.256-.384.383-.384a9.478 9.478 0 0 1 1.342-.095z" }) + ] + } + ); +}); + +export { SiDowndetector as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.cjs new file mode 100644 index 000000000..441e216b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C4AA8"; +const SiDoxygen = React__namespace.forwardRef(function SiDoxygen2({ title = "Doxygen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.371 13.934.013.892h-.059l-10.273.01-.015-.902h10.334zm-6.548-1.257c-.075-.206-.113-.436-.113-.693s.038-.487.113-.693a1.47 1.47 0 0 1 .32-.53 1.36 1.36 0 0 1 .5-.34c.193-.084.41-.125.652-.125.241 0 .46.04.653.123.198.078.366.192.504.34.138.145.246.322.32.532.076.206.113.437.113.693s-.037.487-.112.693c-.07.197-.178.378-.32.532-.142.146-.314.26-.505.334a1.73 1.73 0 0 1-.653.118c-.242 0-.46-.04-.653-.118a1.417 1.417 0 0 1-.499-.334 1.546 1.546 0 0 1-.32-.532zm.73-.693a2 2 0 0 0 .035.378c.024.12.064.229.12.328.06.095.136.17.23.229a.686.686 0 0 0 .357.086c.143 0 .26-.03.356-.086a.63.63 0 0 0 .231-.23.992.992 0 0 0 .125-.327c.048-.25.048-.505 0-.755a.949.949 0 0 0-.125-.328.63.63 0 0 0-.23-.229.64.64 0 0 0-.357-.093.64.64 0 0 0-.356.093.696.696 0 0 0-.232.23 1.029 1.029 0 0 0-.119.327c-.023.123-.035.25-.035.377zm12.927.68a2.07 2.07 0 0 1-.106-.68c0-.239.037-.462.112-.668.139-.394.432-.715.813-.89a1.55 1.55 0 0 1 .64-.13c.263 0 .49.053.684.16.194.104.352.244.475.421.126.177.217.38.273.606.055.227.075.464.059.712h-2.214c.012.285.08.49.208.618.126.128.309.192.546.192a.74.74 0 0 0 .439-.13c.123-.09.198-.185.226-.284h.742c-.12.383-.301.657-.547.822-.245.165-.541.248-.89.248-.241 0-.46-.04-.653-.118a1.388 1.388 0 0 1-.492-.346 1.595 1.595 0 0 1-.315-.532zm.736-1.026h1.372c-.04-.223-.111-.392-.214-.507-.1-.116-.252-.174-.457-.174a.7.7 0 0 0-.338.074.652.652 0 0 0-.214.174.734.734 0 0 0-.113.222c-.02.08-.032.15-.036.21v.001zM8.103 13.58l.642-1.008.64 1.008h.962l-1.134-1.7 1.01-1.498H9.29l-.534.835-.54-.835h-.96l1.008 1.515L7.16 13.58h.944zm5.408-3.198h-.872l-.67 2.19h-.014l-.694-2.19h-.896l1.074 3c.024.064.036.13.035.198a.44.44 0 0 1-.082.26.315.315 0 0 1-.244.136 1.677 1.677 0 0 1-.25-.006 49.755 49.755 0 0 1-.243-.025v.724c.087.008.173.014.256.018.087.008.174.013.261.013.29 0 .514-.056.676-.167s.29-.297.38-.557l1.283-3.594zm3.018 3.89a1.28 1.28 0 0 1-.48.366c-.21.099-.491.148-.843.148a1.8 1.8 0 0 1-.463-.062 1.413 1.413 0 0 1-.427-.18 1.103 1.103 0 0 1-.321-.32.95.95 0 0 1-.143-.464h.837c.04.165.117.278.232.34a.784.784 0 0 0 .398.099c.237 0 .409-.074.516-.223a.888.888 0 0 0 .16-.563v-.42h-.012a.863.863 0 0 1-.392.377 1.223 1.223 0 0 1-.528.118c-.23 0-.427-.042-.593-.124a1.18 1.18 0 0 1-.41-.347 1.548 1.548 0 0 1-.237-.513 2.669 2.669 0 0 1-.071-.625c0-.206.027-.404.083-.594a1.57 1.57 0 0 1 .255-.507c.11-.149.247-.266.41-.352a1.21 1.21 0 0 1 .57-.13c.2 0 .377.04.527.117.165.09.3.228.386.396h.012v-.427h.8v2.994c0 .128-.016.275-.052.44a1.05 1.05 0 0 1-.214.457zm-.534-2.33a1.91 1.91 0 0 0-.035-.373.957.957 0 0 0-.12-.315.626.626 0 0 0-.22-.216.67.67 0 0 0-.343-.08.614.614 0 0 0-.308.073.682.682 0 0 0-.214.204.914.914 0 0 0-.125.291c-.024.108-.036.22-.036.34 0 .117.01.232.03.348.024.11.062.212.113.303.055.09.127.165.214.222.097.06.21.09.326.087a.648.648 0 0 0 .54-.272.849.849 0 0 0 .13-.278c.032-.108.048-.22.048-.335zm5.824-.039c0-.325.052-.558.155-.698.103-.145.269-.217.498-.217.202 0 .343.066.422.198.079.128.118.324.118.587v1.807h.843v-1.967c0-.198-.018-.377-.053-.538a.996.996 0 0 0-.172-.414.793.793 0 0 0-.344-.267 1.322 1.322 0 0 0-.553-.099c-.178 0-.352.044-.522.13a.964.964 0 0 0-.415.402h-.018v-.445h-.801v3.198h.842v-1.677zm-21.737.694a2.465 2.465 0 0 1 0-1.262c.06-.202.144-.38.255-.532.115-.153.257-.274.428-.365a1.2 1.2 0 0 1 .593-.142c.182 0 .354.04.517.123a.895.895 0 0 1 .391.353h.012V9.164h.843v4.416h-.8v-.408h-.013a.9.9 0 0 1-.392.378 1.26 1.26 0 0 1-.54.11c-.23 0-.431-.044-.606-.135a1.302 1.302 0 0 1-.433-.378 1.875 1.875 0 0 1-.255-.55zm.76-.619c0 .124.014.248.042.37.027.125.07.237.13.336.063.095.14.173.231.235.103.06.22.089.34.086a.633.633 0 0 0 .57-.315c.054-.1.094-.21.117-.334a2.025 2.025 0 0 0 0-.76.887.887 0 0 0-.125-.324.66.66 0 0 0-.219-.228.633.633 0 0 0-.344-.087.663.663 0 0 0-.35.087.697.697 0 0 0-.232.228c-.058.103-.1.214-.124.33-.024.12-.036.244-.036.376zm12.816 1.999-.01-.047-.986.01-.013.04c-.091.282-.18.469-.407.705l-.095.1h2.006l-.133-.105c-.187-.146-.295-.356-.362-.703zm3.487-.061-.01.035c-.091.3-.272.565-.517.76l-.108.088 7.457-.04.033-.891-6.855.048z" }) + ] + } + ); +}); + +exports.default = SiDoxygen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.d.ts new file mode 100644 index 000000000..2c37cc6e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C4AA8"; +declare const SiDoxygen: IconType; +export { SiDoxygen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.mjs new file mode 100644 index 000000000..4073f557e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDoxygen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C4AA8"; +const SiDoxygen = React.forwardRef(function SiDoxygen2({ title = "Doxygen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.371 13.934.013.892h-.059l-10.273.01-.015-.902h10.334zm-6.548-1.257c-.075-.206-.113-.436-.113-.693s.038-.487.113-.693a1.47 1.47 0 0 1 .32-.53 1.36 1.36 0 0 1 .5-.34c.193-.084.41-.125.652-.125.241 0 .46.04.653.123.198.078.366.192.504.34.138.145.246.322.32.532.076.206.113.437.113.693s-.037.487-.112.693c-.07.197-.178.378-.32.532-.142.146-.314.26-.505.334a1.73 1.73 0 0 1-.653.118c-.242 0-.46-.04-.653-.118a1.417 1.417 0 0 1-.499-.334 1.546 1.546 0 0 1-.32-.532zm.73-.693a2 2 0 0 0 .035.378c.024.12.064.229.12.328.06.095.136.17.23.229a.686.686 0 0 0 .357.086c.143 0 .26-.03.356-.086a.63.63 0 0 0 .231-.23.992.992 0 0 0 .125-.327c.048-.25.048-.505 0-.755a.949.949 0 0 0-.125-.328.63.63 0 0 0-.23-.229.64.64 0 0 0-.357-.093.64.64 0 0 0-.356.093.696.696 0 0 0-.232.23 1.029 1.029 0 0 0-.119.327c-.023.123-.035.25-.035.377zm12.927.68a2.07 2.07 0 0 1-.106-.68c0-.239.037-.462.112-.668.139-.394.432-.715.813-.89a1.55 1.55 0 0 1 .64-.13c.263 0 .49.053.684.16.194.104.352.244.475.421.126.177.217.38.273.606.055.227.075.464.059.712h-2.214c.012.285.08.49.208.618.126.128.309.192.546.192a.74.74 0 0 0 .439-.13c.123-.09.198-.185.226-.284h.742c-.12.383-.301.657-.547.822-.245.165-.541.248-.89.248-.241 0-.46-.04-.653-.118a1.388 1.388 0 0 1-.492-.346 1.595 1.595 0 0 1-.315-.532zm.736-1.026h1.372c-.04-.223-.111-.392-.214-.507-.1-.116-.252-.174-.457-.174a.7.7 0 0 0-.338.074.652.652 0 0 0-.214.174.734.734 0 0 0-.113.222c-.02.08-.032.15-.036.21v.001zM8.103 13.58l.642-1.008.64 1.008h.962l-1.134-1.7 1.01-1.498H9.29l-.534.835-.54-.835h-.96l1.008 1.515L7.16 13.58h.944zm5.408-3.198h-.872l-.67 2.19h-.014l-.694-2.19h-.896l1.074 3c.024.064.036.13.035.198a.44.44 0 0 1-.082.26.315.315 0 0 1-.244.136 1.677 1.677 0 0 1-.25-.006 49.755 49.755 0 0 1-.243-.025v.724c.087.008.173.014.256.018.087.008.174.013.261.013.29 0 .514-.056.676-.167s.29-.297.38-.557l1.283-3.594zm3.018 3.89a1.28 1.28 0 0 1-.48.366c-.21.099-.491.148-.843.148a1.8 1.8 0 0 1-.463-.062 1.413 1.413 0 0 1-.427-.18 1.103 1.103 0 0 1-.321-.32.95.95 0 0 1-.143-.464h.837c.04.165.117.278.232.34a.784.784 0 0 0 .398.099c.237 0 .409-.074.516-.223a.888.888 0 0 0 .16-.563v-.42h-.012a.863.863 0 0 1-.392.377 1.223 1.223 0 0 1-.528.118c-.23 0-.427-.042-.593-.124a1.18 1.18 0 0 1-.41-.347 1.548 1.548 0 0 1-.237-.513 2.669 2.669 0 0 1-.071-.625c0-.206.027-.404.083-.594a1.57 1.57 0 0 1 .255-.507c.11-.149.247-.266.41-.352a1.21 1.21 0 0 1 .57-.13c.2 0 .377.04.527.117.165.09.3.228.386.396h.012v-.427h.8v2.994c0 .128-.016.275-.052.44a1.05 1.05 0 0 1-.214.457zm-.534-2.33a1.91 1.91 0 0 0-.035-.373.957.957 0 0 0-.12-.315.626.626 0 0 0-.22-.216.67.67 0 0 0-.343-.08.614.614 0 0 0-.308.073.682.682 0 0 0-.214.204.914.914 0 0 0-.125.291c-.024.108-.036.22-.036.34 0 .117.01.232.03.348.024.11.062.212.113.303.055.09.127.165.214.222.097.06.21.09.326.087a.648.648 0 0 0 .54-.272.849.849 0 0 0 .13-.278c.032-.108.048-.22.048-.335zm5.824-.039c0-.325.052-.558.155-.698.103-.145.269-.217.498-.217.202 0 .343.066.422.198.079.128.118.324.118.587v1.807h.843v-1.967c0-.198-.018-.377-.053-.538a.996.996 0 0 0-.172-.414.793.793 0 0 0-.344-.267 1.322 1.322 0 0 0-.553-.099c-.178 0-.352.044-.522.13a.964.964 0 0 0-.415.402h-.018v-.445h-.801v3.198h.842v-1.677zm-21.737.694a2.465 2.465 0 0 1 0-1.262c.06-.202.144-.38.255-.532.115-.153.257-.274.428-.365a1.2 1.2 0 0 1 .593-.142c.182 0 .354.04.517.123a.895.895 0 0 1 .391.353h.012V9.164h.843v4.416h-.8v-.408h-.013a.9.9 0 0 1-.392.378 1.26 1.26 0 0 1-.54.11c-.23 0-.431-.044-.606-.135a1.302 1.302 0 0 1-.433-.378 1.875 1.875 0 0 1-.255-.55zm.76-.619c0 .124.014.248.042.37.027.125.07.237.13.336.063.095.14.173.231.235.103.06.22.089.34.086a.633.633 0 0 0 .57-.315c.054-.1.094-.21.117-.334a2.025 2.025 0 0 0 0-.76.887.887 0 0 0-.125-.324.66.66 0 0 0-.219-.228.633.633 0 0 0-.344-.087.663.663 0 0 0-.35.087.697.697 0 0 0-.232.228c-.058.103-.1.214-.124.33-.024.12-.036.244-.036.376zm12.816 1.999-.01-.047-.986.01-.013.04c-.091.282-.18.469-.407.705l-.095.1h2.006l-.133-.105c-.187-.146-.295-.356-.362-.703zm3.487-.061-.01.035c-.091.3-.272.565-.517.76l-.108.088 7.457-.04.033-.891-6.855.048z" }) + ] + } + ); +}); + +export { SiDoxygen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.cjs new file mode 100644 index 000000000..5523c1c54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC0032"; +const SiDpd = React__namespace.forwardRef(function SiDpd2({ title = "DPD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.01 10.71a.364.364 0 01-.343-.006l-.558-.331a.43.43 0 01-.182-.312l-.014-.65a.363.363 0 01.165-.3l6.7-3.902L12.377.085A.799.799 0 0012 0a.798.798 0 00-.377.085l-9.4 5.124 10.53 6.13c.098.054.172.181.172.295v8.944c0 .112-.08.241-.178.294l-.567.315c-.171.062-.256.043-.361 0l-.569-.315a.362.362 0 01-.175-.294v-7.973a.223.223 0 00-.095-.156L1.702 7.048v10.579c0 .236.167.528.371.648l9.556 5.636c.102.06.237.09.371.089a.745.745 0 00.371-.09l9.557-5.635a.835.835 0 00.37-.648V7.047Z" }) + ] + } + ); +}); + +exports.default = SiDpd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.d.ts new file mode 100644 index 000000000..4fe799e51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC0032"; +declare const SiDpd: IconType; +export { SiDpd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.mjs new file mode 100644 index 000000000..a1deb845f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDpd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC0032"; +const SiDpd = React.forwardRef(function SiDpd2({ title = "DPD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.01 10.71a.364.364 0 01-.343-.006l-.558-.331a.43.43 0 01-.182-.312l-.014-.65a.363.363 0 01.165-.3l6.7-3.902L12.377.085A.799.799 0 0012 0a.798.798 0 00-.377.085l-9.4 5.124 10.53 6.13c.098.054.172.181.172.295v8.944c0 .112-.08.241-.178.294l-.567.315c-.171.062-.256.043-.361 0l-.569-.315a.362.362 0 01-.175-.294v-7.973a.223.223 0 00-.095-.156L1.702 7.048v10.579c0 .236.167.528.371.648l9.556 5.636c.102.06.237.09.371.089a.745.745 0 00.371-.09l9.557-5.635a.835.835 0 00.37-.648V7.047Z" }) + ] + } + ); +}); + +export { SiDpd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.cjs new file mode 100644 index 000000000..dde0cd88e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D4911E"; +const SiDragonframe = React__namespace.forwardRef(function SiDragonframe2({ title = "Dragonframe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.936.001A.937.937 0 0 0 0 .937v22.132c0 .519.42.93.936.93h9.968s-.519-.466-.611-.56a1.14 1.14 0 0 1-.237-.365c-.053-.128-.094-.383-.112-.51-.017-.128-.06-.222-.102-.332-.043-.112-.238-.381-.289-.45-.05-.068-.332-.39-.39-.459-.06-.068-.06-.145-.034-.195.024-.051-.018-.095-.086-.172-.068-.075-.382-.415-.518-.576-.136-.162-.068-.204-.033-.221.033-.018.27.136.391.196.092.045.325.168.433.197.048.013.073.011.083-.009.013-.02.26-.364.367-1.023.119-1.171-.12-1.867-.4-2.456a7.363 7.363 0 0 0-.714-1.206c-.145-.187-.815-.765-.927-.841-.11-.077-1.393-.918-1.538-1.038-.144-.118.025-.166.08-.142.143.064.428.178.558.238.151.065.91.33 1.054.364.145.033.126.03.103-.119-.017-.111-.23-.604-.332-.782-.103-.18-.553-.817-.859-1.113-.304-.297-.663-.681-.799-.892-.136-.213-.696-1.368-.868-1.792a12.048 12.048 0 0 0-.527-1.114c-.059-.101-.134-.154-.125-.24.007-.083.253.128.365.23.167.153.388.445.661.86.272.418.571.688.621.738.051.05.39.393.44.424.033.017.046.004.053-.024.02-.084 0-.295-.033-.46-.042-.221-.018-.748-.092-1.012-.078-.261-.113-.389-.469-1.02-.358-.628-.74-1.681-1.053-3.347a12.3 12.3 0 0 1-.163-3.264c.018-.163.085-.136.13-.128.04.01.065.265.065.265s-.015.612.731 2.609c.75 1.996 1.633 2.133 1.71 2.15.077.016.11.007.11-.035 0-.041-.213-.9-.136-1.57.076-.673.238-.945.33-1.04.071-.07.069-.014.069.196-.002.07-.002.158 0 .264.01.426.281.995.281.995s.118.5.323-.664c.296-1.954.018-2.995-.06-3.274C8.28.998 7.944 0 7.157 0Zm15.427 0c-.65 0-.895.997-.972 1.279-.076.278-.357 1.32-.059 3.274.204 1.164.323.664.323.664s.273-.57.281-.995c.002-.106 0-.193 0-.264-.002-.21-.002-.266.068-.195.092.094.255.366.33 1.039.077.67-.134 1.529-.134 1.57 0 .042.032.05.11.035.077-.017.96-.153 1.709-2.15.746-1.997.729-2.61.729-2.61s.027-.254.068-.264c.042-.008.111-.035.128.128a12.22 12.22 0 0 1-.16 3.264c-.316 1.666-.698 2.72-1.055 3.347-.356.631-.392.759-.469 1.02-.076.264-.05.79-.092 1.012-.032.165-.053.376-.032.46.006.028.02.041.05.024.053-.03.39-.374.44-.424.052-.05.35-.32.62-.738.273-.415.495-.707.664-.86.113-.102.356-.313.365-.23.009.086-.066.139-.125.24-.06.1-.359.688-.53 1.114-.169.424-.73 1.579-.866 1.792-.135.21-.494.595-.798.892-.306.296-.756.933-.86 1.113-.1.178-.313.67-.331.782-.023.15-.042.152.103.119.143-.033.9-.299 1.052-.364.132-.06.417-.174.56-.238.055-.024.225.024.08.142-.146.12-1.428.96-1.54 1.038-.11.076-.782.654-.925.84a7.129 7.129 0 0 0-.714 1.207c-.28.589-.519 1.285-.4 2.456.108.659.354 1.004.364 1.023.014.02.038.022.085.009.11-.029.34-.152.434-.197.119-.06.358-.214.39-.196.036.017.102.06-.032.221-.136.161-.45.501-.518.576-.068.077-.112.121-.086.172a.18.18 0 0 1-.035.195c-.06.068-.338.39-.391.46-.05.067-.246.337-.288.449-.042.11-.085.204-.103.332a2.416 2.416 0 0 1-.11.51 1.178 1.178 0 0 1-.237.364c-.095.095-.646.56-.646.56h10.256a.945.945 0 0 0 .936-.947V.937A.937.937 0 0 0 23.064 0ZM8.933 11.49a.078.078 0 0 0-.085.074c-.015.238-.038.422-.053.642-.017.25-.05.531.063.784.113.247.366.661.45.782.09.12.429.604.513.734.086.13.307.533.345.604.04.068.015.068.07.068.033 0 .04-.176.04-.325 0-.084-.003-.158-.003-.187 0-.494.018-.96-.147-1.432a1.266 1.266 0 0 0-.175-.345c-.123-.169-.255-.331-.383-.494-.05-.066-.1-.134-.16-.192-.09-.091-.327-.379-.382-.504-.04-.097-.055-.198-.084-.207a.038.038 0 0 0-.01-.002zm5.915 0a.034.034 0 0 0-.01.002c-.03.009-.044.11-.086.207-.053.125-.29.413-.383.504-.059.058-.107.126-.157.192-.13.163-.261.325-.382.494a1.25 1.25 0 0 0-.176.345c-.165.472-.147.938-.147 1.432 0 .077-.016.512.037.512.055 0 .03 0 .07-.068.037-.07.26-.475.343-.604.083-.13.425-.613.514-.734a7.1 7.1 0 0 0 .45-.782c.065-.143.082-.294.082-.443a4.3 4.3 0 0 0-.017-.34c-.019-.22-.038-.405-.054-.643-.003-.059-.056-.076-.084-.074zM10.7 19.994c-.006 0-.006.007-.006.029 0 .032-.02.16-.01.239.005.082.017.262.03.35.006.053.004.148.002.247v.192c.004.144-.015.412-.137.63 0 0-.034.035-.034.061 0 .03.024.042.05.093.046.087.194.272.249.33.052.057.155.181.272.087.044-.037.057-.095.057-.171 0-.12-.038-.288-.057-.494-.005-.035-.097-.407-.132-.567-.024-.119-.101-.464-.125-.578-.015-.067-.077-.274-.088-.314-.01-.037-.031-.12-.055-.13l-.016-.004zm2.345 0c-.004 0-.01.002-.019.005-.021.008-.04.092-.052.13-.01.039-.072.246-.088.313-.026.114-.1.46-.127.578-.033.16-.125.532-.13.567-.032.335-.114.569 0 .665.114.094.218-.03.273-.088.053-.057.201-.242.248-.33.026-.05.05-.063.05-.092 0-.026-.035-.06-.035-.06a1.277 1.277 0 0 1-.139-.631c.003-.057 0-.123 0-.19a2.476 2.476 0 0 1 .005-.25c.011-.087.022-.268.032-.349.008-.08-.012-.207-.012-.24 0-.021 0-.028-.006-.028z" }) + ] + } + ); +}); + +exports.default = SiDragonframe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.d.ts new file mode 100644 index 000000000..c6c705048 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D4911E"; +declare const SiDragonframe: IconType; +export { SiDragonframe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.mjs new file mode 100644 index 000000000..faf716850 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDragonframe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D4911E"; +const SiDragonframe = React.forwardRef(function SiDragonframe2({ title = "Dragonframe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.936.001A.937.937 0 0 0 0 .937v22.132c0 .519.42.93.936.93h9.968s-.519-.466-.611-.56a1.14 1.14 0 0 1-.237-.365c-.053-.128-.094-.383-.112-.51-.017-.128-.06-.222-.102-.332-.043-.112-.238-.381-.289-.45-.05-.068-.332-.39-.39-.459-.06-.068-.06-.145-.034-.195.024-.051-.018-.095-.086-.172-.068-.075-.382-.415-.518-.576-.136-.162-.068-.204-.033-.221.033-.018.27.136.391.196.092.045.325.168.433.197.048.013.073.011.083-.009.013-.02.26-.364.367-1.023.119-1.171-.12-1.867-.4-2.456a7.363 7.363 0 0 0-.714-1.206c-.145-.187-.815-.765-.927-.841-.11-.077-1.393-.918-1.538-1.038-.144-.118.025-.166.08-.142.143.064.428.178.558.238.151.065.91.33 1.054.364.145.033.126.03.103-.119-.017-.111-.23-.604-.332-.782-.103-.18-.553-.817-.859-1.113-.304-.297-.663-.681-.799-.892-.136-.213-.696-1.368-.868-1.792a12.048 12.048 0 0 0-.527-1.114c-.059-.101-.134-.154-.125-.24.007-.083.253.128.365.23.167.153.388.445.661.86.272.418.571.688.621.738.051.05.39.393.44.424.033.017.046.004.053-.024.02-.084 0-.295-.033-.46-.042-.221-.018-.748-.092-1.012-.078-.261-.113-.389-.469-1.02-.358-.628-.74-1.681-1.053-3.347a12.3 12.3 0 0 1-.163-3.264c.018-.163.085-.136.13-.128.04.01.065.265.065.265s-.015.612.731 2.609c.75 1.996 1.633 2.133 1.71 2.15.077.016.11.007.11-.035 0-.041-.213-.9-.136-1.57.076-.673.238-.945.33-1.04.071-.07.069-.014.069.196-.002.07-.002.158 0 .264.01.426.281.995.281.995s.118.5.323-.664c.296-1.954.018-2.995-.06-3.274C8.28.998 7.944 0 7.157 0Zm15.427 0c-.65 0-.895.997-.972 1.279-.076.278-.357 1.32-.059 3.274.204 1.164.323.664.323.664s.273-.57.281-.995c.002-.106 0-.193 0-.264-.002-.21-.002-.266.068-.195.092.094.255.366.33 1.039.077.67-.134 1.529-.134 1.57 0 .042.032.05.11.035.077-.017.96-.153 1.709-2.15.746-1.997.729-2.61.729-2.61s.027-.254.068-.264c.042-.008.111-.035.128.128a12.22 12.22 0 0 1-.16 3.264c-.316 1.666-.698 2.72-1.055 3.347-.356.631-.392.759-.469 1.02-.076.264-.05.79-.092 1.012-.032.165-.053.376-.032.46.006.028.02.041.05.024.053-.03.39-.374.44-.424.052-.05.35-.32.62-.738.273-.415.495-.707.664-.86.113-.102.356-.313.365-.23.009.086-.066.139-.125.24-.06.1-.359.688-.53 1.114-.169.424-.73 1.579-.866 1.792-.135.21-.494.595-.798.892-.306.296-.756.933-.86 1.113-.1.178-.313.67-.331.782-.023.15-.042.152.103.119.143-.033.9-.299 1.052-.364.132-.06.417-.174.56-.238.055-.024.225.024.08.142-.146.12-1.428.96-1.54 1.038-.11.076-.782.654-.925.84a7.129 7.129 0 0 0-.714 1.207c-.28.589-.519 1.285-.4 2.456.108.659.354 1.004.364 1.023.014.02.038.022.085.009.11-.029.34-.152.434-.197.119-.06.358-.214.39-.196.036.017.102.06-.032.221-.136.161-.45.501-.518.576-.068.077-.112.121-.086.172a.18.18 0 0 1-.035.195c-.06.068-.338.39-.391.46-.05.067-.246.337-.288.449-.042.11-.085.204-.103.332a2.416 2.416 0 0 1-.11.51 1.178 1.178 0 0 1-.237.364c-.095.095-.646.56-.646.56h10.256a.945.945 0 0 0 .936-.947V.937A.937.937 0 0 0 23.064 0ZM8.933 11.49a.078.078 0 0 0-.085.074c-.015.238-.038.422-.053.642-.017.25-.05.531.063.784.113.247.366.661.45.782.09.12.429.604.513.734.086.13.307.533.345.604.04.068.015.068.07.068.033 0 .04-.176.04-.325 0-.084-.003-.158-.003-.187 0-.494.018-.96-.147-1.432a1.266 1.266 0 0 0-.175-.345c-.123-.169-.255-.331-.383-.494-.05-.066-.1-.134-.16-.192-.09-.091-.327-.379-.382-.504-.04-.097-.055-.198-.084-.207a.038.038 0 0 0-.01-.002zm5.915 0a.034.034 0 0 0-.01.002c-.03.009-.044.11-.086.207-.053.125-.29.413-.383.504-.059.058-.107.126-.157.192-.13.163-.261.325-.382.494a1.25 1.25 0 0 0-.176.345c-.165.472-.147.938-.147 1.432 0 .077-.016.512.037.512.055 0 .03 0 .07-.068.037-.07.26-.475.343-.604.083-.13.425-.613.514-.734a7.1 7.1 0 0 0 .45-.782c.065-.143.082-.294.082-.443a4.3 4.3 0 0 0-.017-.34c-.019-.22-.038-.405-.054-.643-.003-.059-.056-.076-.084-.074zM10.7 19.994c-.006 0-.006.007-.006.029 0 .032-.02.16-.01.239.005.082.017.262.03.35.006.053.004.148.002.247v.192c.004.144-.015.412-.137.63 0 0-.034.035-.034.061 0 .03.024.042.05.093.046.087.194.272.249.33.052.057.155.181.272.087.044-.037.057-.095.057-.171 0-.12-.038-.288-.057-.494-.005-.035-.097-.407-.132-.567-.024-.119-.101-.464-.125-.578-.015-.067-.077-.274-.088-.314-.01-.037-.031-.12-.055-.13l-.016-.004zm2.345 0c-.004 0-.01.002-.019.005-.021.008-.04.092-.052.13-.01.039-.072.246-.088.313-.026.114-.1.46-.127.578-.033.16-.125.532-.13.567-.032.335-.114.569 0 .665.114.094.218-.03.273-.088.053-.057.201-.242.248-.33.026-.05.05-.063.05-.092 0-.026-.035-.06-.035-.06a1.277 1.277 0 0 1-.139-.631c.003-.057 0-.123 0-.19a2.476 2.476 0 0 1 .005-.25c.011-.087.022-.268.032-.349.008-.08-.012-.207-.012-.24 0-.021 0-.028-.006-.028z" }) + ] + } + ); +}); + +export { SiDragonframe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.cjs new file mode 100644 index 000000000..b08648b2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiDraugiemdotlv = React__namespace.forwardRef(function SiDraugiemdotlv2({ title = "Draugiem.lv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.12 7.694c4.3.056 6.808 2.693 3.96 6.3-1.307 1.662-3.517 3.303-6.465 4.373l-.422.144c-.278.09-.553.173-.823.258-.638.18-1.26.34-1.863.455-.645.134-1.268.229-1.87.298-.43.042-.844.07-1.245.078-2.743.07-4.806-.68-5.477-2.285-.81-1.919.83-4.592 4.116-6.627C4.597 11.661.188 13.96 0 17.256v.404a4.307 4.307 0 0 0 .193 1.029c.7 2.228 4.003 3.267 8.21 2.894a19.43 19.43 0 0 0 1.244-.147 24.08 24.08 0 0 0 3.733-.874c.137-.05.275-.09.414-.14.283-.09.561-.184.831-.29 3.64-1.322 6.342-3.087 7.921-5.101.898-1.155 1.364-2.236 1.454-3.185v-.723c-.26-2.403-3.064-3.815-6.88-3.43zm-2.788-1.192a1.237 1.237 0 0 0 .283-.033c.61-.152.908-.803.934-1.572.028-.815-.257-1.495-.934-1.592a.826.826 0 0 0-.18 0 1.111 1.111 0 0 0-1.065.79 2.526 2.526 0 0 0-.154.815 2.192 2.192 0 0 0 .154.954.993.993 0 0 0 .962.638zm-.013.273a2.946 2.946 0 0 0-.7.075l.057.077.103.185.085.196.07.2.046.206.036.208.02.217v.427l-.015.216v.213l-.028.216-.029.214-.041.216-.041.214-.041.208-.05.208-.04.201-.05.193-.048.188-.049.18-.041.172-.041.165-.02.105-.03.116-.025.126-.023.131-.026.14-.02.118v.025l-.029.155-.028.151-.02.16-.037.175-.02.167-.028.165-.021.175-.026.164-.023.175-.02.173-.021.172c.041.5.077.921.098 1.163a1.253 1.253 0 0 0 .167.61.772.772 0 0 0 .648.295.947.947 0 0 0 .597-.213 1.178 1.178 0 0 0 .278-.692c.11-.713.43-3.054.705-4.057.396-1.446 1.343-4.078-.983-4.278a2.259 2.259 0 0 0-.296-.016zm-2.83-.743h.016c.9 0 1.322-.829 1.322-1.84 0-1.01-.42-1.842-1.32-1.85h-.018c-.913 0-1.335.831-1.335 1.85 0 1.019.425 1.84 1.335 1.84zm-1.852 4.273c.082.352.167.679.237.97.283 1.155.56 3.84.663 4.65.103.811.389.991.97 1.045.574-.054.865-.226.963-1.044.097-.818.38-3.496.656-4.651.069-.291.159-.618.257-.97.257-1.06.463-2.316 0-3.108-.299-.515-.867-.854-1.863-.854-.995 0-1.58.34-1.87.854-.476.803-.27 2.048-.013 3.108zM8.402 6.469a1.237 1.237 0 0 0 .283.033.993.993 0 0 0 .952-.65 2.403 2.403 0 0 0 .152-.955 2.673 2.673 0 0 0-.152-.815 1.122 1.122 0 0 0-1.065-.79.803.803 0 0 0-.18 0c-.672.098-.962.772-.937 1.592.021.782.327 1.433.947 1.585zm-.288 8.654a1.13 1.13 0 0 0 .288.692.944.944 0 0 0 .594.214.772.772 0 0 0 .651-.296 1.451 1.451 0 0 0 .168-.61l.095-1.155v-.015l-.02-.173-.021-.172-.029-.175-.02-.165-.02-.175-.027-.164-.033-.157-.026-.165-.026-.17-.02-.151-.028-.155v-.02L9.616 12l-.028-.14-.028-.131-.02-.126-.026-.116-.029-.105-.036-.165-.049-.172-.04-.18-.047-.188-.049-.193-.049-.2-.041-.222-.049-.208-.041-.214-.036-.214-.026-.213-.028-.216-.02-.214V8.14l.02-.216.033-.208.05-.206.061-.2.09-.196.105-.186.055-.077a2.977 2.977 0 0 0-.7-.074 2.218 2.218 0 0 0-.296 0c-2.315.2-1.379 2.83-.983 4.278.275 1.014.594 3.355.705 4.067z" }) + ] + } + ); +}); + +exports.default = SiDraugiemdotlv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.d.ts new file mode 100644 index 000000000..f5d62f362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiDraugiemdotlv: IconType; +export { SiDraugiemdotlv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.mjs new file mode 100644 index 000000000..c08a750bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDraugiemdotlv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiDraugiemdotlv = React.forwardRef(function SiDraugiemdotlv2({ title = "Draugiem.lv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.12 7.694c4.3.056 6.808 2.693 3.96 6.3-1.307 1.662-3.517 3.303-6.465 4.373l-.422.144c-.278.09-.553.173-.823.258-.638.18-1.26.34-1.863.455-.645.134-1.268.229-1.87.298-.43.042-.844.07-1.245.078-2.743.07-4.806-.68-5.477-2.285-.81-1.919.83-4.592 4.116-6.627C4.597 11.661.188 13.96 0 17.256v.404a4.307 4.307 0 0 0 .193 1.029c.7 2.228 4.003 3.267 8.21 2.894a19.43 19.43 0 0 0 1.244-.147 24.08 24.08 0 0 0 3.733-.874c.137-.05.275-.09.414-.14.283-.09.561-.184.831-.29 3.64-1.322 6.342-3.087 7.921-5.101.898-1.155 1.364-2.236 1.454-3.185v-.723c-.26-2.403-3.064-3.815-6.88-3.43zm-2.788-1.192a1.237 1.237 0 0 0 .283-.033c.61-.152.908-.803.934-1.572.028-.815-.257-1.495-.934-1.592a.826.826 0 0 0-.18 0 1.111 1.111 0 0 0-1.065.79 2.526 2.526 0 0 0-.154.815 2.192 2.192 0 0 0 .154.954.993.993 0 0 0 .962.638zm-.013.273a2.946 2.946 0 0 0-.7.075l.057.077.103.185.085.196.07.2.046.206.036.208.02.217v.427l-.015.216v.213l-.028.216-.029.214-.041.216-.041.214-.041.208-.05.208-.04.201-.05.193-.048.188-.049.18-.041.172-.041.165-.02.105-.03.116-.025.126-.023.131-.026.14-.02.118v.025l-.029.155-.028.151-.02.16-.037.175-.02.167-.028.165-.021.175-.026.164-.023.175-.02.173-.021.172c.041.5.077.921.098 1.163a1.253 1.253 0 0 0 .167.61.772.772 0 0 0 .648.295.947.947 0 0 0 .597-.213 1.178 1.178 0 0 0 .278-.692c.11-.713.43-3.054.705-4.057.396-1.446 1.343-4.078-.983-4.278a2.259 2.259 0 0 0-.296-.016zm-2.83-.743h.016c.9 0 1.322-.829 1.322-1.84 0-1.01-.42-1.842-1.32-1.85h-.018c-.913 0-1.335.831-1.335 1.85 0 1.019.425 1.84 1.335 1.84zm-1.852 4.273c.082.352.167.679.237.97.283 1.155.56 3.84.663 4.65.103.811.389.991.97 1.045.574-.054.865-.226.963-1.044.097-.818.38-3.496.656-4.651.069-.291.159-.618.257-.97.257-1.06.463-2.316 0-3.108-.299-.515-.867-.854-1.863-.854-.995 0-1.58.34-1.87.854-.476.803-.27 2.048-.013 3.108zM8.402 6.469a1.237 1.237 0 0 0 .283.033.993.993 0 0 0 .952-.65 2.403 2.403 0 0 0 .152-.955 2.673 2.673 0 0 0-.152-.815 1.122 1.122 0 0 0-1.065-.79.803.803 0 0 0-.18 0c-.672.098-.962.772-.937 1.592.021.782.327 1.433.947 1.585zm-.288 8.654a1.13 1.13 0 0 0 .288.692.944.944 0 0 0 .594.214.772.772 0 0 0 .651-.296 1.451 1.451 0 0 0 .168-.61l.095-1.155v-.015l-.02-.173-.021-.172-.029-.175-.02-.165-.02-.175-.027-.164-.033-.157-.026-.165-.026-.17-.02-.151-.028-.155v-.02L9.616 12l-.028-.14-.028-.131-.02-.126-.026-.116-.029-.105-.036-.165-.049-.172-.04-.18-.047-.188-.049-.193-.049-.2-.041-.222-.049-.208-.041-.214-.036-.214-.026-.213-.028-.216-.02-.214V8.14l.02-.216.033-.208.05-.206.061-.2.09-.196.105-.186.055-.077a2.977 2.977 0 0 0-.7-.074 2.218 2.218 0 0 0-.296 0c-2.315.2-1.379 2.83-.983 4.278.275 1.014.594 3.355.705 4.067z" }) + ] + } + ); +}); + +export { SiDraugiemdotlv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.cjs new file mode 100644 index 000000000..c1c759526 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#50A901"; +const SiDreamstime = React__namespace.forwardRef(function SiDreamstime2({ title = "Dreamstime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.532 5.153C16.952-1.604 7.118-.402 2.764 4.628.586 7.105-.241 10.558.059 13.711c.3 2.478 1.201 4.73 2.478 6.231 3.378 4.13 9.234 4.58 13.063 1.953 5.405-3.755 5.03-9.834 2.102-13.214-5.255-6.006-14.264-.075-10.885 6.757.825 1.65 2.7 2.552 4.429 2.552 2.402 0 4.279-2.852 3.153-4.579-1.126-1.802-3.078 0-2.253 1.35.676 1.052-.75 1.653-1.35 1.503-1.577-.376-2.329-2.553-1.802-4.354.45-1.577 2.1-2.628 3.678-2.553 2.177.15 4.58 1.877 4.354 5.63-.525 6.082-8.484 7.208-11.636 2.853-4.955-6.982.9-16.366 9.835-13.513 4.58 1.5 7.958 6.907 5.855 12.688-.825 2.177-1.275 3.002-1.35 3.754-.377 2.777 8.408-5.856 1.8-15.617z" }) + ] + } + ); +}); + +exports.default = SiDreamstime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.d.ts new file mode 100644 index 000000000..32b86866a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#50A901"; +declare const SiDreamstime: IconType; +export { SiDreamstime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.mjs new file mode 100644 index 000000000..ea1a19661 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDreamstime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#50A901"; +const SiDreamstime = React.forwardRef(function SiDreamstime2({ title = "Dreamstime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.532 5.153C16.952-1.604 7.118-.402 2.764 4.628.586 7.105-.241 10.558.059 13.711c.3 2.478 1.201 4.73 2.478 6.231 3.378 4.13 9.234 4.58 13.063 1.953 5.405-3.755 5.03-9.834 2.102-13.214-5.255-6.006-14.264-.075-10.885 6.757.825 1.65 2.7 2.552 4.429 2.552 2.402 0 4.279-2.852 3.153-4.579-1.126-1.802-3.078 0-2.253 1.35.676 1.052-.75 1.653-1.35 1.503-1.577-.376-2.329-2.553-1.802-4.354.45-1.577 2.1-2.628 3.678-2.553 2.177.15 4.58 1.877 4.354 5.63-.525 6.082-8.484 7.208-11.636 2.853-4.955-6.982.9-16.366 9.835-13.513 4.58 1.5 7.958 6.907 5.855 12.688-.825 2.177-1.275 3.002-1.35 3.754-.377 2.777 8.408-5.856 1.8-15.617z" }) + ] + } + ); +}); + +export { SiDreamstime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.cjs new file mode 100644 index 000000000..2a20bdd5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA4C89"; +const SiDribbble = React__namespace.forwardRef(function SiDribbble2({ title = "Dribbble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308 2.3-1.555 3.936-4.02 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4 1.73 1.358 3.92 2.166 6.29 2.166 1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248-1.698-3.018-3.53-5.558-3.8-5.928-2.868 1.35-5.01 3.99-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702-1.81-1.61-4.19-2.586-6.795-2.586-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z" }) + ] + } + ); +}); + +exports.default = SiDribbble; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.d.ts new file mode 100644 index 000000000..57376e894 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA4C89"; +declare const SiDribbble: IconType; +export { SiDribbble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.mjs new file mode 100644 index 000000000..60009e8e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDribbble.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA4C89"; +const SiDribbble = React.forwardRef(function SiDribbble2({ title = "Dribbble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308 2.3-1.555 3.936-4.02 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4 1.73 1.358 3.92 2.166 6.29 2.166 1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248-1.698-3.018-3.53-5.558-3.8-5.928-2.868 1.35-5.01 3.99-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702-1.81-1.61-4.19-2.586-6.795-2.586-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z" }) + ] + } + ); +}); + +export { SiDribbble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.cjs new file mode 100644 index 000000000..b5bd5a4ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C5F74F"; +const SiDrizzle = React__namespace.forwardRef(function SiDrizzle2({ title = "Drizzle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.353 11.823a1.036 1.036 0 0 0-.395-1.422 1.063 1.063 0 0 0-1.437.399L.138 16.702a1.035 1.035 0 0 0 .395 1.422 1.063 1.063 0 0 0 1.437-.398l3.383-5.903Zm11.216 0a1.036 1.036 0 0 0-.394-1.422 1.064 1.064 0 0 0-1.438.399l-3.382 5.902a1.036 1.036 0 0 0 .394 1.422c.506.283 1.15.104 1.438-.398l3.382-5.903Zm7.293-4.525a1.036 1.036 0 0 0-.395-1.422 1.062 1.062 0 0 0-1.437.399l-3.383 5.902a1.036 1.036 0 0 0 .395 1.422 1.063 1.063 0 0 0 1.437-.399l3.383-5.902Zm-11.219 0a1.035 1.035 0 0 0-.394-1.422 1.064 1.064 0 0 0-1.438.398l-3.382 5.903a1.036 1.036 0 0 0 .394 1.422c.506.282 1.15.104 1.438-.399l3.382-5.902Z" }) + ] + } + ); +}); + +exports.default = SiDrizzle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.d.ts new file mode 100644 index 000000000..92e28588f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C5F74F"; +declare const SiDrizzle: IconType; +export { SiDrizzle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.mjs new file mode 100644 index 000000000..116629f88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrizzle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C5F74F"; +const SiDrizzle = React.forwardRef(function SiDrizzle2({ title = "Drizzle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.353 11.823a1.036 1.036 0 0 0-.395-1.422 1.063 1.063 0 0 0-1.437.399L.138 16.702a1.035 1.035 0 0 0 .395 1.422 1.063 1.063 0 0 0 1.437-.398l3.383-5.903Zm11.216 0a1.036 1.036 0 0 0-.394-1.422 1.064 1.064 0 0 0-1.438.399l-3.382 5.902a1.036 1.036 0 0 0 .394 1.422c.506.283 1.15.104 1.438-.398l3.382-5.903Zm7.293-4.525a1.036 1.036 0 0 0-.395-1.422 1.062 1.062 0 0 0-1.437.399l-3.383 5.902a1.036 1.036 0 0 0 .395 1.422 1.063 1.063 0 0 0 1.437-.399l3.383-5.902Zm-11.219 0a1.035 1.035 0 0 0-.394-1.422 1.064 1.064 0 0 0-1.438.398l-3.382 5.903a1.036 1.036 0 0 0 .394 1.422c.506.282 1.15.104 1.438-.399l3.382-5.902Z" }) + ] + } + ); +}); + +export { SiDrizzle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.cjs new file mode 100644 index 000000000..9d433a42d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiDrone = React__namespace.forwardRef(function SiDrone2({ title = "Drone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.07 13.633a3.07 3.07 0 1 1-6.14 0 3.07 3.07 0 0 1 6.14 0zM12 1.856c5.359.042 11.452 3.82 12 10.94h-7.256S15.809 8.863 12 8.889s-4.744 3.907-4.744 3.907H0C.353 5.802 6.344 1.812 12 1.856zM12.05 22.144c-3.996.011-7.729-3.005-9.259-7.674h4.465s.963 3.889 4.773 3.863 4.716-3.863 4.716-3.863h4.465c-.995 4.94-5.164 7.664-9.159 7.674z" }) + ] + } + ); +}); + +exports.default = SiDrone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.d.ts new file mode 100644 index 000000000..2da27158e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiDrone: IconType; +export { SiDrone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.mjs new file mode 100644 index 000000000..9e787148f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiDrone = React.forwardRef(function SiDrone2({ title = "Drone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.07 13.633a3.07 3.07 0 1 1-6.14 0 3.07 3.07 0 0 1 6.14 0zM12 1.856c5.359.042 11.452 3.82 12 10.94h-7.256S15.809 8.863 12 8.889s-4.744 3.907-4.744 3.907H0C.353 5.802 6.344 1.812 12 1.856zM12.05 22.144c-3.996.011-7.729-3.005-9.259-7.674h4.465s.963 3.889 4.773 3.863 4.716-3.863 4.716-3.863h4.465c-.995 4.94-5.164 7.664-9.159 7.674z" }) + ] + } + ); +}); + +export { SiDrone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.cjs new file mode 100644 index 000000000..457845f3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#19C4BE"; +const SiDrooble = React__namespace.forwardRef(function SiDrooble2({ title = "Drooble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 11.986a7.599 7.599 0 0 0-7-7.559v7.574a5 5 0 0 1-10 0c0-3.604 3.707-6.022 7-4.583V.17C6.615-1.069 0 4.63 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12v-.014m-14 .015a2 2 0 1 0 4 0 2 2 0 0 0-4 0m14-.015a7.599 7.599 0 0 0-7-7.559v7.574a5 5 0 0 1-10 0c0-3.604 3.707-6.022 7-4.583V.17C6.615-1.069 0 4.63 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12v-.014m-14 .015a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z" }) + ] + } + ); +}); + +exports.default = SiDrooble; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.d.ts new file mode 100644 index 000000000..ffdf9ee28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#19C4BE"; +declare const SiDrooble: IconType; +export { SiDrooble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.mjs new file mode 100644 index 000000000..5236ef50d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrooble.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#19C4BE"; +const SiDrooble = React.forwardRef(function SiDrooble2({ title = "Drooble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 11.986a7.599 7.599 0 0 0-7-7.559v7.574a5 5 0 0 1-10 0c0-3.604 3.707-6.022 7-4.583V.17C6.615-1.069 0 4.63 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12v-.014m-14 .015a2 2 0 1 0 4 0 2 2 0 0 0-4 0m14-.015a7.599 7.599 0 0 0-7-7.559v7.574a5 5 0 0 1-10 0c0-3.604 3.707-6.022 7-4.583V.17C6.615-1.069 0 4.63 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12v-.014m-14 .015a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z" }) + ] + } + ); +}); + +export { SiDrooble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.cjs new file mode 100644 index 000000000..d220d2aba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0061FF"; +const SiDropbox = React__namespace.forwardRef(function SiDropbox2({ title = "Dropbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 1.807L0 5.629l6 3.822 6.001-3.822L6 1.807zM18 1.807l-6 3.822 6 3.822 6-3.822-6-3.822zM0 13.274l6 3.822 6.001-3.822L6 9.452l-6 3.822zM18 9.452l-6 3.822 6 3.822 6-3.822-6-3.822zM6 18.371l6.001 3.822 6-3.822-6-3.822L6 18.371z" }) + ] + } + ); +}); + +exports.default = SiDropbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.d.ts new file mode 100644 index 000000000..28c5af102 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0061FF"; +declare const SiDropbox: IconType; +export { SiDropbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.mjs new file mode 100644 index 000000000..bb8902093 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDropbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0061FF"; +const SiDropbox = React.forwardRef(function SiDropbox2({ title = "Dropbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 1.807L0 5.629l6 3.822 6.001-3.822L6 1.807zM18 1.807l-6 3.822 6 3.822 6-3.822-6-3.822zM0 13.274l6 3.822 6.001-3.822L6 9.452l-6 3.822zM18 9.452l-6 3.822 6 3.822 6-3.822-6-3.822zM6 18.371l6.001 3.822 6-3.822-6-3.822L6 18.371z" }) + ] + } + ); +}); + +export { SiDropbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.cjs new file mode 100644 index 000000000..2955346c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0678BE"; +const SiDrupal = React__namespace.forwardRef(function SiDrupal2({ title = "Drupal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.78 5.113C14.09 3.425 12.48 1.815 11.998 0c-.48 1.815-2.09 3.425-3.778 5.113-2.534 2.53-5.405 5.4-5.405 9.702a9.184 9.185 0 1018.368 0c0-4.303-2.871-7.171-5.405-9.702M6.72 16.954c-.563-.019-2.64-3.6 1.215-7.416l2.55 2.788a.218.218 0 01-.016.325c-.61.625-3.204 3.227-3.527 4.126-.066.186-.164.18-.222.177M12 21.677a3.158 3.158 0 01-3.158-3.159 3.291 3.291 0 01.787-2.087c.57-.696 2.37-2.655 2.37-2.655s1.774 1.988 2.367 2.649a3.09 3.09 0 01.792 2.093A3.158 3.158 0 0112 21.677m6.046-5.123c-.068.15-.223.398-.431.405-.371.014-.411-.177-.686-.583-.604-.892-5.864-6.39-6.848-7.455-.866-.935-.122-1.595.223-1.94C10.736 6.547 12 5.285 12 5.285s3.766 3.574 5.336 6.016c1.57 2.443 1.029 4.556.71 5.253" }) + ] + } + ); +}); + +exports.default = SiDrupal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.d.ts new file mode 100644 index 000000000..355a74a8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0678BE"; +declare const SiDrupal: IconType; +export { SiDrupal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.mjs new file mode 100644 index 000000000..00cfa114f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDrupal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0678BE"; +const SiDrupal = React.forwardRef(function SiDrupal2({ title = "Drupal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.78 5.113C14.09 3.425 12.48 1.815 11.998 0c-.48 1.815-2.09 3.425-3.778 5.113-2.534 2.53-5.405 5.4-5.405 9.702a9.184 9.185 0 1018.368 0c0-4.303-2.871-7.171-5.405-9.702M6.72 16.954c-.563-.019-2.64-3.6 1.215-7.416l2.55 2.788a.218.218 0 01-.016.325c-.61.625-3.204 3.227-3.527 4.126-.066.186-.164.18-.222.177M12 21.677a3.158 3.158 0 01-3.158-3.159 3.291 3.291 0 01.787-2.087c.57-.696 2.37-2.655 2.37-2.655s1.774 1.988 2.367 2.649a3.09 3.09 0 01.792 2.093A3.158 3.158 0 0112 21.677m6.046-5.123c-.068.15-.223.398-.431.405-.371.014-.411-.177-.686-.583-.604-.892-5.864-6.39-6.848-7.455-.866-.935-.122-1.595.223-1.94C10.736 6.547 12 5.285 12 5.285s3.766 3.574 5.336 6.016c1.57 2.443 1.029 4.556.71 5.253" }) + ] + } + ); +}); + +export { SiDrupal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.cjs new file mode 100644 index 000000000..89d36a132 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D1717"; +const SiDsautomobiles = React__namespace.forwardRef(function SiDsautomobiles2({ title = "DS Automobiles", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.207 0v15.85l9.465-7.371a.87.87 0 0 0 .328-.41.756.756 0 0 0 .201.327c.687.657 3.8 3.614 4.635 6.143a4.81 4.81 0 0 1 .266 1.527 3.354 3.354 0 0 1-.266 1.272c-.378.962-1.223 1.972-2.084 2.865-.368.375-1.97 1.912-2.477 2.418a.877.877 0 0 0-.232.424 5.673 5.673 0 0 0-.04.656V24l9.462-7.371a.756.756 0 0 0 .328-.555.657.657 0 0 0-.234-.476c-.684-.657-3.798-3.613-4.635-6.143a4.927 4.927 0 0 1-.262-1.53 3.505 3.505 0 0 1 .262-1.282c.38-.986 1.229-2.007 2.09-2.891a272.66 272.66 0 0 1 2.472-2.436.884.884 0 0 0 .235-.43 4.425 4.425 0 0 0 .043-.591V0l-9.461 7.371a.857.857 0 0 0-.328.41.867.867 0 0 0-.313-.41L2.207 0zm.457.8c.384.3.93.747 1.666 1.315A22.338 22.338 0 0 1 6.543 4.11c1.166 1.203 2.06 2.51 2.06 3.805 0 1.294-.894 2.6-2.06 3.803a21.95 21.95 0 0 1-2.213 2.008c-.736.571-1.287 1.025-1.672 1.314-.033.026-.033-.056-.033-.101 0-.046 0-.116.023-.14.809-.722 3.99-3.158 4.926-5.478a3.44 3.44 0 0 0 0-2.806C6.651 4.194 3.47 1.76 2.648 1.035c-.023-.02-.023-.109-.023-.139 0-.03 0-.122.04-.095zm18.19.481c.023-.02.026.017.023.033a.256.256 0 0 1-.063.217 2.792 2.792 0 0 1-.25.223c-1.297 1.094-3.393 2.977-4.1 4.758a3.502 3.502 0 0 0 0 2.83 10.67 10.67 0 0 0 1.186 2.176c.214.285.31.407.448.601a.74.74 0 0 1 .125.344h-.028a1.314 1.314 0 0 1-.138-.115 10.304 10.304 0 0 1-.604-.59c-1.182-1.186-2.03-2.563-2.03-3.844 0-1.281.89-2.578 2.06-3.768a24.138 24.138 0 0 1 2.214-1.972c.3-.237.555-.44.801-.623l.356-.27zm-8.387 6.735h1.57c.598 0 .824.596 1.143 1.21a12.962 12.962 0 0 0 1.715 2.272.588.588 0 0 1 .119.281c.016.06 0 .079-.063.03-1.938-1.41-4.015-3.17-4.373-3.465-.108-.089-.358-.328-.111-.328zm-2.588.015H11.5c.246 0 .01.22-.102.313-.949.657-2.38 1.852-4.27 3.344-.035.026-.03-.085-.023-.118a.48.48 0 0 1 .057-.162 10.555 10.555 0 0 0 1.73-2.351c.33-.615.402-1.026.987-1.026zm4.934 2.727a.328.328 0 0 1 .177.07c.02.02.266.276.4.424.273.286.545.613.83.941 1.035 1.216 1.946 2.553 1.946 3.864 0 1.195-.847 2.376-1.97 3.486-.283.28-.802.772-1.475 1.363-.092.08-.162.135-.159.073.004-.063 0-.199.053-.245 1.143-1.126 2.28-2.374 2.69-3.373a3.45 3.45 0 0 0 .299-1.314 4.408 4.408 0 0 0-.247-1.432c-.377-1.074-1.21-2.24-2.078-3.252a34.12 34.12 0 0 1-.466-.552c-.024-.033-.024-.056 0-.053zm4.607 5.4h1.844c.279 0 .01.263-.116.352-1.077.759-2.686 2.072-4.841 3.777-.06.046-.05-.092-.047-.135a.299.299 0 0 1 .037-.14 12.19 12.19 0 0 0 1.986-2.694c.365-.696.457-1.16 1.137-1.16z" }) + ] + } + ); +}); + +exports.default = SiDsautomobiles; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.d.ts new file mode 100644 index 000000000..949c383ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D1717"; +declare const SiDsautomobiles: IconType; +export { SiDsautomobiles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.mjs new file mode 100644 index 000000000..c55cf29ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDsautomobiles.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D1717"; +const SiDsautomobiles = React.forwardRef(function SiDsautomobiles2({ title = "DS Automobiles", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.207 0v15.85l9.465-7.371a.87.87 0 0 0 .328-.41.756.756 0 0 0 .201.327c.687.657 3.8 3.614 4.635 6.143a4.81 4.81 0 0 1 .266 1.527 3.354 3.354 0 0 1-.266 1.272c-.378.962-1.223 1.972-2.084 2.865-.368.375-1.97 1.912-2.477 2.418a.877.877 0 0 0-.232.424 5.673 5.673 0 0 0-.04.656V24l9.462-7.371a.756.756 0 0 0 .328-.555.657.657 0 0 0-.234-.476c-.684-.657-3.798-3.613-4.635-6.143a4.927 4.927 0 0 1-.262-1.53 3.505 3.505 0 0 1 .262-1.282c.38-.986 1.229-2.007 2.09-2.891a272.66 272.66 0 0 1 2.472-2.436.884.884 0 0 0 .235-.43 4.425 4.425 0 0 0 .043-.591V0l-9.461 7.371a.857.857 0 0 0-.328.41.867.867 0 0 0-.313-.41L2.207 0zm.457.8c.384.3.93.747 1.666 1.315A22.338 22.338 0 0 1 6.543 4.11c1.166 1.203 2.06 2.51 2.06 3.805 0 1.294-.894 2.6-2.06 3.803a21.95 21.95 0 0 1-2.213 2.008c-.736.571-1.287 1.025-1.672 1.314-.033.026-.033-.056-.033-.101 0-.046 0-.116.023-.14.809-.722 3.99-3.158 4.926-5.478a3.44 3.44 0 0 0 0-2.806C6.651 4.194 3.47 1.76 2.648 1.035c-.023-.02-.023-.109-.023-.139 0-.03 0-.122.04-.095zm18.19.481c.023-.02.026.017.023.033a.256.256 0 0 1-.063.217 2.792 2.792 0 0 1-.25.223c-1.297 1.094-3.393 2.977-4.1 4.758a3.502 3.502 0 0 0 0 2.83 10.67 10.67 0 0 0 1.186 2.176c.214.285.31.407.448.601a.74.74 0 0 1 .125.344h-.028a1.314 1.314 0 0 1-.138-.115 10.304 10.304 0 0 1-.604-.59c-1.182-1.186-2.03-2.563-2.03-3.844 0-1.281.89-2.578 2.06-3.768a24.138 24.138 0 0 1 2.214-1.972c.3-.237.555-.44.801-.623l.356-.27zm-8.387 6.735h1.57c.598 0 .824.596 1.143 1.21a12.962 12.962 0 0 0 1.715 2.272.588.588 0 0 1 .119.281c.016.06 0 .079-.063.03-1.938-1.41-4.015-3.17-4.373-3.465-.108-.089-.358-.328-.111-.328zm-2.588.015H11.5c.246 0 .01.22-.102.313-.949.657-2.38 1.852-4.27 3.344-.035.026-.03-.085-.023-.118a.48.48 0 0 1 .057-.162 10.555 10.555 0 0 0 1.73-2.351c.33-.615.402-1.026.987-1.026zm4.934 2.727a.328.328 0 0 1 .177.07c.02.02.266.276.4.424.273.286.545.613.83.941 1.035 1.216 1.946 2.553 1.946 3.864 0 1.195-.847 2.376-1.97 3.486-.283.28-.802.772-1.475 1.363-.092.08-.162.135-.159.073.004-.063 0-.199.053-.245 1.143-1.126 2.28-2.374 2.69-3.373a3.45 3.45 0 0 0 .299-1.314 4.408 4.408 0 0 0-.247-1.432c-.377-1.074-1.21-2.24-2.078-3.252a34.12 34.12 0 0 1-.466-.552c-.024-.033-.024-.056 0-.053zm4.607 5.4h1.844c.279 0 .01.263-.116.352-1.077.759-2.686 2.072-4.841 3.777-.06.046-.05-.092-.047-.135a.299.299 0 0 1 .037-.14 12.19 12.19 0 0 0 1.986-2.694c.365-.696.457-1.16 1.137-1.16z" }) + ] + } + ); +}); + +export { SiDsautomobiles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDts.cjs new file mode 100644 index 000000000..62d2462cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F98B2B"; +const SiDts = React__namespace.forwardRef(function SiDts2({ title = "DTS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.556 14.346-1.194-1.173a.841.841 0 0 1 .604-1.445h.59a.346.346 0 0 0 .349-.343v-.636H18.97a1.492 1.492 0 0 0-1.507 1.477v.003c0 .396.16.775.444 1.05l1.201 1.18a.841.841 0 0 1-.604 1.446h-1.849a1.306 1.306 0 0 1-1.317-1.294v-2.876h1.135a.346.346 0 0 0 .35-.343v-.636h-1.485V7.587l-3.866 1.66v1.494h-1.87V7.123h-2.87a.986.986 0 0 0-.997.98v2.638H3.67C1.514 10.741 0 11.893 0 13.81c0 1.71 1.776 3.068 3.676 3.068h4.615a1.306 1.306 0 0 0 1.318-1.294v-3.855h1.863v2.503c0 1.423.874 2.646 2.65 2.646h8.371A1.492 1.492 0 0 0 24 15.4v-.003a1.444 1.444 0 0 0-.444-1.051zM5.729 15.683a.217.217 0 0 1-.219.214h-.13c-1.34 0-1.835-.908-1.85-2.088.015-1.216.525-2.088 1.85-2.088h.349v3.962z" }) + ] + } + ); +}); + +exports.default = SiDts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDts.d.ts new file mode 100644 index 000000000..c7df1a06f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F98B2B"; +declare const SiDts: IconType; +export { SiDts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDts.mjs new file mode 100644 index 000000000..b7f2cad06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F98B2B"; +const SiDts = React.forwardRef(function SiDts2({ title = "DTS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.556 14.346-1.194-1.173a.841.841 0 0 1 .604-1.445h.59a.346.346 0 0 0 .349-.343v-.636H18.97a1.492 1.492 0 0 0-1.507 1.477v.003c0 .396.16.775.444 1.05l1.201 1.18a.841.841 0 0 1-.604 1.446h-1.849a1.306 1.306 0 0 1-1.317-1.294v-2.876h1.135a.346.346 0 0 0 .35-.343v-.636h-1.485V7.587l-3.866 1.66v1.494h-1.87V7.123h-2.87a.986.986 0 0 0-.997.98v2.638H3.67C1.514 10.741 0 11.893 0 13.81c0 1.71 1.776 3.068 3.676 3.068h4.615a1.306 1.306 0 0 0 1.318-1.294v-3.855h1.863v2.503c0 1.423.874 2.646 2.65 2.646h8.371A1.492 1.492 0 0 0 24 15.4v-.003a1.444 1.444 0 0 0-.444-1.051zM5.729 15.683a.217.217 0 0 1-.219.214h-.13c-1.34 0-1.835-.908-1.85-2.088.015-1.216.525-2.088 1.85-2.088h.349v3.962z" }) + ] + } + ); +}); + +export { SiDts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.cjs new file mode 100644 index 000000000..86c14ac1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F01A30"; +const SiDtube = React__namespace.forwardRef(function SiDtube2({ title = "DTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 1.6416v20.7168h8.5156c1.3133 0 2.4886-.1588 3.5371-.4766 1.038-.3177 1.9716-.7833 2.7871-1.4082 1.1545-.8896 2.0431-2.0456 2.668-3.4648.6143-1.4192.9316-3.0486.9316-4.8809-.0105-1.578-.243-3.0203-.709-4.3125-.466-1.2921-1.1116-2.3919-1.959-3.3027-.8366-.9109-1.8536-1.6108-3.0292-2.1191-1.1757-.4979-2.4784-.752-3.9082-.752zm5.2012 5.709l8.039 4.6601-8.039 4.6485zm15.9922 9.162c-1.4934 0-2.711 1.2177-2.711 2.711 0 1.4934 1.2176 2.711 2.711 2.711h.0957c1.4933 0 2.7109-1.2176 2.7109-2.711 0-1.4933-1.2176-2.711-2.711-2.711z" }) + ] + } + ); +}); + +exports.default = SiDtube; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.d.ts new file mode 100644 index 000000000..7a302fcde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F01A30"; +declare const SiDtube: IconType; +export { SiDtube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.mjs new file mode 100644 index 000000000..58dd1b5fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDtube.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F01A30"; +const SiDtube = React.forwardRef(function SiDtube2({ title = "DTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 1.6416v20.7168h8.5156c1.3133 0 2.4886-.1588 3.5371-.4766 1.038-.3177 1.9716-.7833 2.7871-1.4082 1.1545-.8896 2.0431-2.0456 2.668-3.4648.6143-1.4192.9316-3.0486.9316-4.8809-.0105-1.578-.243-3.0203-.709-4.3125-.466-1.2921-1.1116-2.3919-1.959-3.3027-.8366-.9109-1.8536-1.6108-3.0292-2.1191-1.1757-.4979-2.4784-.752-3.9082-.752zm5.2012 5.709l8.039 4.6601-8.039 4.6485zm15.9922 9.162c-1.4934 0-2.711 1.2177-2.711 2.711 0 1.4934 1.2176 2.711 2.711 2.711h.0957c1.4933 0 2.7109-1.2176 2.7109-2.711 0-1.4933-1.2176-2.711-2.711-2.711z" }) + ] + } + ); +}); + +export { SiDtube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.cjs new file mode 100644 index 000000000..496f100be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiDucati = React__namespace.forwardRef(function SiDucati2({ title = "Ducati", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.14 3.895c-.326-1.307-1.96-2.001-3.103-2.45C17.302.383 13.382-.19 10.401.056c-2.94.245-6.738 1.062-8.575 2.45-.531.409-.899.776-1.021 1.715C.56 6.222 1.499 9.203 2.07 11c.163-.082.367-.327.857-.572.98-.49 2.164-.817 3.267-1.02 3.96-.817 9.473-.9 13.597-.9.49 0 .98 0 1.43.042.449 0 .98.04 1.429.04l.245-1.102c.204-1.02.49-2.573.245-3.593zM5.95 5.528c-.531 1.674-2.083 1.43-3.634 1.43L3.05 3.69c.326-.04.898 0 1.265 0 .45 0 .776 0 1.144.123.612.245.735.98.49 1.715zm1.837 1.51c-.898.042-1.715-.162-1.551-1.142.04-.245.449-2.124.49-2.206h1.306c-.04.368-.204.94-.286 1.307-.04.245-.081.408-.122.654-.04.204-.123.571.204.49.204-.041.245-.286.286-.49.122-.572.327-1.47.408-1.96H9.83c-.04.326-.163.816-.245 1.143-.204 1.062-.204 2.123-1.797 2.205zm3.308 0c-1.103 0-1.511-.693-1.266-1.755.367-1.756 2.205-1.92 2.94-1.51.408.244.49.53.408 1.102h-1.225c0-.164.041-.327-.081-.409-.123-.081-.327 0-.409.082-.204.204-.53 1.43-.286 1.593.286.204.49-.205.531-.409h1.225c-.081.817-.816 1.348-1.837 1.307zm4.165-.08v-.49h-.94l-.244.53H12.81c.04-.122.735-1.43.857-1.633l.899-1.634h1.715l.367 3.267c-.286-.04-1.225 0-1.388-.04zm3.757-2.41c-.082.163-.245.98-.286 1.184-.082.327-.164.858-.286 1.184h-1.307c-.04-.204.49-2.123.49-2.409h-.816l.204-.898h2.98c0 .122-.163.816-.204.898l-.775.041zm1.837 2.41h-1.347L20.2 3.69h1.306l-.653 3.267zm-2.327 2.94c-1.266.122-2.45.244-3.635.408-2.245.326-4.573.898-6.451 1.674-1.593.694-3.88 2.082-3.88 4.165 0 .326.041.326.286.694.368.53.858 1.266 1.225 1.756 1.184 1.51 3.308 4.124 4.982 5.063.49.286.898.49 1.51.204.45-.204.9-.53 1.226-.776 2.164-1.755 4.982-5.349 6.288-7.758.899-1.674 1.715-3.716 2.287-5.676-.368-.04-3.47.204-3.838.245zM15.219 5.61V4.425c-.082.082-.49 1.021-.53 1.185zM4.194 4.425l-.408 1.797c.571.041.735-.327.816-.776.123-.49.286-1.061-.408-1.02z" }) + ] + } + ); +}); + +exports.default = SiDucati; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.d.ts new file mode 100644 index 000000000..a1a92f8e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiDucati: IconType; +export { SiDucati as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.mjs new file mode 100644 index 000000000..a68f9c934 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDucati.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiDucati = React.forwardRef(function SiDucati2({ title = "Ducati", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.14 3.895c-.326-1.307-1.96-2.001-3.103-2.45C17.302.383 13.382-.19 10.401.056c-2.94.245-6.738 1.062-8.575 2.45-.531.409-.899.776-1.021 1.715C.56 6.222 1.499 9.203 2.07 11c.163-.082.367-.327.857-.572.98-.49 2.164-.817 3.267-1.02 3.96-.817 9.473-.9 13.597-.9.49 0 .98 0 1.43.042.449 0 .98.04 1.429.04l.245-1.102c.204-1.02.49-2.573.245-3.593zM5.95 5.528c-.531 1.674-2.083 1.43-3.634 1.43L3.05 3.69c.326-.04.898 0 1.265 0 .45 0 .776 0 1.144.123.612.245.735.98.49 1.715zm1.837 1.51c-.898.042-1.715-.162-1.551-1.142.04-.245.449-2.124.49-2.206h1.306c-.04.368-.204.94-.286 1.307-.04.245-.081.408-.122.654-.04.204-.123.571.204.49.204-.041.245-.286.286-.49.122-.572.327-1.47.408-1.96H9.83c-.04.326-.163.816-.245 1.143-.204 1.062-.204 2.123-1.797 2.205zm3.308 0c-1.103 0-1.511-.693-1.266-1.755.367-1.756 2.205-1.92 2.94-1.51.408.244.49.53.408 1.102h-1.225c0-.164.041-.327-.081-.409-.123-.081-.327 0-.409.082-.204.204-.53 1.43-.286 1.593.286.204.49-.205.531-.409h1.225c-.081.817-.816 1.348-1.837 1.307zm4.165-.08v-.49h-.94l-.244.53H12.81c.04-.122.735-1.43.857-1.633l.899-1.634h1.715l.367 3.267c-.286-.04-1.225 0-1.388-.04zm3.757-2.41c-.082.163-.245.98-.286 1.184-.082.327-.164.858-.286 1.184h-1.307c-.04-.204.49-2.123.49-2.409h-.816l.204-.898h2.98c0 .122-.163.816-.204.898l-.775.041zm1.837 2.41h-1.347L20.2 3.69h1.306l-.653 3.267zm-2.327 2.94c-1.266.122-2.45.244-3.635.408-2.245.326-4.573.898-6.451 1.674-1.593.694-3.88 2.082-3.88 4.165 0 .326.041.326.286.694.368.53.858 1.266 1.225 1.756 1.184 1.51 3.308 4.124 4.982 5.063.49.286.898.49 1.51.204.45-.204.9-.53 1.226-.776 2.164-1.755 4.982-5.349 6.288-7.758.899-1.674 1.715-3.716 2.287-5.676-.368-.04-3.47.204-3.838.245zM15.219 5.61V4.425c-.082.082-.49 1.021-.53 1.185zM4.194 4.425l-.408 1.797c.571.041.735-.327.816-.776.123-.49.286-1.061-.408-1.02z" }) + ] + } + ); +}); + +export { SiDucati as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.cjs new file mode 100644 index 000000000..60c6e73d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFF000"; +const SiDuckdb = React__namespace.forwardRef(function SiDuckdb2({ title = "DuckDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.363 0 0 5.363 0 12s5.363 12 12 12 12-5.363 12-12S18.637 0 12 0zM9.502 7.03a4.974 4.974 0 0 1 4.97 4.97 4.974 4.974 0 0 1-4.97 4.97A4.974 4.974 0 0 1 4.532 12a4.974 4.974 0 0 1 4.97-4.97zm6.563 3.183h2.351c.98 0 1.787.782 1.787 1.762s-.807 1.789-1.787 1.789h-2.351v-3.551z" }) + ] + } + ); +}); + +exports.default = SiDuckdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.d.ts new file mode 100644 index 000000000..9dfe910c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFF000"; +declare const SiDuckdb: IconType; +export { SiDuckdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.mjs new file mode 100644 index 000000000..daf4993fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFF000"; +const SiDuckdb = React.forwardRef(function SiDuckdb2({ title = "DuckDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.363 0 0 5.363 0 12s5.363 12 12 12 12-5.363 12-12S18.637 0 12 0zM9.502 7.03a4.974 4.974 0 0 1 4.97 4.97 4.974 4.974 0 0 1-4.97 4.97A4.974 4.974 0 0 1 4.532 12a4.974 4.974 0 0 1 4.97-4.97zm6.563 3.183h2.351c.98 0 1.787.782 1.787 1.762s-.807 1.789-1.787 1.789h-2.351v-3.551z" }) + ] + } + ); +}); + +export { SiDuckdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.cjs new file mode 100644 index 000000000..e78cc8979 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DE5833"; +const SiDuckduckgo = React__namespace.forwardRef(function SiDuckduckgo2({ title = "DuckDuckGo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm0 .984C18.083.984 23.016 5.916 23.016 12S18.084 23.016 12 23.016.984 18.084.984 12C.984 5.917 5.916.984 12 .984zm0 .938C6.434 1.922 1.922 6.434 1.922 12c0 4.437 2.867 8.205 6.85 9.55-.237-.82-.776-2.753-1.6-6.052-1.184-4.741-2.064-8.606 2.379-9.813.047-.011.064-.064.03-.093-.514-.467-1.382-.548-2.233-.38a.06.06 0 0 1-.07-.058c0-.011 0-.023.011-.035.205-.286.572-.507.822-.64a1.843 1.843 0 0 0-.607-.335c-.059-.022-.059-.12-.006-.144.006-.006.012-.012.024-.012 1.749-.233 3.586.292 4.49 1.448.011.011.023.017.035.023 2.968.635 3.509 4.837 3.328 5.998a9.607 9.607 0 0 0 2.346-.576c.746-.286 1.008-.222 1.101-.053.1.193-.018.513-.28.81-.496.567-1.393 1.01-2.974 1.137-.546.044-1.029.024-1.445.006-.789-.035-1.339-.059-1.633.39-.192.298-.041.998 1.487 1.22 1.09.157 2.078.047 2.798-.034.643-.07 1.073-.118 1.172.069.21.402-.996 1.207-3.066 1.224-.158 0-.315-.006-.467-.011-1.283-.065-2.227-.414-2.816-.735a.094.094 0 0 1-.035-.017c-.105-.059-.31.045-.188.267.07.134.444.478 1.004.776-.058.466.087 1.184.338 2l.088-.016c.041-.009.087-.019.134-.025.507-.082.775.012.926.175.717-.536 1.913-1.294 2.03-1.154.583.694.66 2.332.53 2.99-.004.012-.017.024-.04.035-.274.117-1.783-.296-1.783-.511-.059-1.075-.26-1.173-.493-1.225h-.156c.006.006.012.018.018.03l.052.12c.093.257.24 1.063.13 1.26-.112.199-.835.297-1.284.303-.443.006-.543-.158-.637-.408-.07-.204-.103-.675-.103-.95a.857.857 0 0 1 .012-.216c-.134.058-.333.193-.397.281-.017.262-.017.682.123 1.149.07.221-1.518 1.164-1.74.99-.227-.181-.634-1.952-.459-2.67-.187.017-.338.075-.42.191-.367.508.093 2.933.582 3.248.257.169 1.54-.553 2.176-1.095.105.145.305.158.553.158.326-.012.782-.06 1.103-.158.192.45.423.972.613 1.388 4.47-1.032 7.803-5.037 7.803-9.82 0-5.566-4.512-10.078-10.078-10.078zm1.791 5.646c-.42 0-.678.146-.795.332-.023.047.047.094.094.07.14-.075.357-.161.701-.156.328.006.516.09.67.159l.023.01c.041.017.088-.03.059-.065-.134-.18-.332-.35-.752-.35zm-5.078.198a1.24 1.24 0 0 0-.522.082c-.454.169-.67.526-.67.76 0 .051.112.057.141.011.081-.123.21-.31.617-.478.408-.17.73-.146.951-.094.047.012.083-.041.041-.07a.989.989 0 0 0-.558-.211zm5.434 1.423a.651.651 0 0 0-.655.647.652.652 0 0 0 1.307 0 .646.646 0 0 0-.652-.647zm.283.262h.008a.17.17 0 0 1 .17.17c0 .093-.077.17-.17.17a.17.17 0 0 1-.17-.17c0-.09.072-.165.162-.17zm-5.358.076a.752.752 0 0 0-.758.758c0 .42.338.758.758.758s.758-.337.758-.758a.756.756 0 0 0-.758-.758zm.328.303h.01c.112 0 .2.089.2.2 0 .11-.088.197-.2.197a.195.195 0 0 1-.197-.198c0-.107.082-.194.187-.199z" }) + ] + } + ); +}); + +exports.default = SiDuckduckgo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.d.ts new file mode 100644 index 000000000..6ec4d99d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DE5833"; +declare const SiDuckduckgo: IconType; +export { SiDuckduckgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.mjs new file mode 100644 index 000000000..e1597420e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuckduckgo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DE5833"; +const SiDuckduckgo = React.forwardRef(function SiDuckduckgo2({ title = "DuckDuckGo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm0 .984C18.083.984 23.016 5.916 23.016 12S18.084 23.016 12 23.016.984 18.084.984 12C.984 5.917 5.916.984 12 .984zm0 .938C6.434 1.922 1.922 6.434 1.922 12c0 4.437 2.867 8.205 6.85 9.55-.237-.82-.776-2.753-1.6-6.052-1.184-4.741-2.064-8.606 2.379-9.813.047-.011.064-.064.03-.093-.514-.467-1.382-.548-2.233-.38a.06.06 0 0 1-.07-.058c0-.011 0-.023.011-.035.205-.286.572-.507.822-.64a1.843 1.843 0 0 0-.607-.335c-.059-.022-.059-.12-.006-.144.006-.006.012-.012.024-.012 1.749-.233 3.586.292 4.49 1.448.011.011.023.017.035.023 2.968.635 3.509 4.837 3.328 5.998a9.607 9.607 0 0 0 2.346-.576c.746-.286 1.008-.222 1.101-.053.1.193-.018.513-.28.81-.496.567-1.393 1.01-2.974 1.137-.546.044-1.029.024-1.445.006-.789-.035-1.339-.059-1.633.39-.192.298-.041.998 1.487 1.22 1.09.157 2.078.047 2.798-.034.643-.07 1.073-.118 1.172.069.21.402-.996 1.207-3.066 1.224-.158 0-.315-.006-.467-.011-1.283-.065-2.227-.414-2.816-.735a.094.094 0 0 1-.035-.017c-.105-.059-.31.045-.188.267.07.134.444.478 1.004.776-.058.466.087 1.184.338 2l.088-.016c.041-.009.087-.019.134-.025.507-.082.775.012.926.175.717-.536 1.913-1.294 2.03-1.154.583.694.66 2.332.53 2.99-.004.012-.017.024-.04.035-.274.117-1.783-.296-1.783-.511-.059-1.075-.26-1.173-.493-1.225h-.156c.006.006.012.018.018.03l.052.12c.093.257.24 1.063.13 1.26-.112.199-.835.297-1.284.303-.443.006-.543-.158-.637-.408-.07-.204-.103-.675-.103-.95a.857.857 0 0 1 .012-.216c-.134.058-.333.193-.397.281-.017.262-.017.682.123 1.149.07.221-1.518 1.164-1.74.99-.227-.181-.634-1.952-.459-2.67-.187.017-.338.075-.42.191-.367.508.093 2.933.582 3.248.257.169 1.54-.553 2.176-1.095.105.145.305.158.553.158.326-.012.782-.06 1.103-.158.192.45.423.972.613 1.388 4.47-1.032 7.803-5.037 7.803-9.82 0-5.566-4.512-10.078-10.078-10.078zm1.791 5.646c-.42 0-.678.146-.795.332-.023.047.047.094.094.07.14-.075.357-.161.701-.156.328.006.516.09.67.159l.023.01c.041.017.088-.03.059-.065-.134-.18-.332-.35-.752-.35zm-5.078.198a1.24 1.24 0 0 0-.522.082c-.454.169-.67.526-.67.76 0 .051.112.057.141.011.081-.123.21-.31.617-.478.408-.17.73-.146.951-.094.047.012.083-.041.041-.07a.989.989 0 0 0-.558-.211zm5.434 1.423a.651.651 0 0 0-.655.647.652.652 0 0 0 1.307 0 .646.646 0 0 0-.652-.647zm.283.262h.008a.17.17 0 0 1 .17.17c0 .093-.077.17-.17.17a.17.17 0 0 1-.17-.17c0-.09.072-.165.162-.17zm-5.358.076a.752.752 0 0 0-.758.758c0 .42.338.758.758.758s.758-.337.758-.758a.756.756 0 0 0-.758-.758zm.328.303h.01c.112 0 .2.089.2.2 0 .11-.088.197-.2.197a.195.195 0 0 1-.197-.198c0-.107.082-.194.187-.199z" }) + ] + } + ); +}); + +export { SiDuckduckgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.cjs new file mode 100644 index 000000000..d0ec4ba3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiDungeonsanddragons = React__namespace.forwardRef(function SiDungeonsanddragons2({ title = "Dungeons & Dragons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.921 2.217C4.859 1.297 6.122.742 7.988.838c2.944.152 4.358 2.096 4.358 4.193 0 1.011-.536 2.363-1.276 3.323-.045-.044-.083-.087-.13-.131a21.28 21.28 0 00-.49-.436c-.484-.421-1.03-.905-1.397-1.426.807-1.413.346-3.414-1.359-3.414-.998 0-1.83.88-1.759 2.047-.26.552-.387 1.352-.337 2.062-.489-.295-.901-.618-1.095-1.067l-.626-1.445-.493 1.492a2.515 2.515 0 00-.088 1.135l-.01-.001a3.27 3.27 0 01-.555-1.57c-.18-1.908.764-2.964 1.19-3.383zm-.45 6.824c.114-.434-.778-1.173-1.11-1.311 1.224-.047 1.833.175 1.833.175-.32-.454-.423-1.146-.242-1.695.667 1.539 3.052 1.786 3.642 3.062-.084-.55-.625-1.169-1.253-1.53-.337-.838-.085-2.383.327-2.808-.145 2.22 3.149 3.49 3.832 5.105-.4-1.383-1.936-2.258-2.664-3.086-.24-.55-.056-1.48.205-1.799-.077 1.488 1.592 2.648 2.483 3.48 1.051.979 1.349 1.845 1.207 2.553.23.058.547.273.493.638.336-.075.677-.445.76-.673.165 1.104-.51 2.273-1.266 2.621 0 0 .203-.527-.141-.93-.34-.398-1.305-.403-1.631-.38 0 0 .4-.57.242-.86-.2-.357-2.087-.2-2.93.094.287-.03.967.044 1.205.14-.132.189-.478.989-.23 1.229.23.22.53-.162.53-.162s-.294.875-.082 1.078c.21.203.662.059.662.059-.281.687-1.379 1.16-2.146 1.16.274-.084.725-.553.795-.836-.2.097-.726.153-.928.117.248-.097.746-.712.592-1.405-.229-1.009-1.69-1.137-2.425-.649.238-.678.95-1.312 1.507-1.52a7.523 7.523 0 00-1.117-.273c.468-.369 1.642-.67 2.241-.639-.914-.225-2.586.057-3.352.927.245 0 .875.114 1.118.19-1.048.182-2.478 1.122-2.898 1.566.11-.584.28-1.08.136-1.43-.202-.497-.826-.704-2.07-.457.84-.809 2.56-1.31 2.676-1.751zm5.724.783c.166.563.39 1.08 1.097 1.08 0 0-.248-.779-1.097-1.08zm10.479 6.203c.533.088 1.282.635 1.282 1.417 0 1.275-1.652 1.667-2.566 1.469.97-.648.84-2.512-.326-3.178.395 1.045-.79 2.082-1.942 1.172-.641-.506-2.123-1.694-2.785-2.206-.66-.511-1.434-.214-1.74-.437-.348-.254-.125-.97-.6-1.236-.399-.222-.79-.098-1.253-.246-.42-.133-.733-.448-.68-.872-.178.303-.19.83.129 1.186.316.352.844.57 1.062.957.282.5-.193 1.196 1.062 2.143.6.452 1.53 1.195 2.137 1.707 1.021.862.476 1.94.61 2.879.155 1.096 1.072 1.704 1.682 1.858-.526-.46-.725-1.62.014-2.33.038.916.725 2.35 2.292 2.753 1.667.427 3.439-.482 3.807-1.122-.643.28-1.854-.022-2.353-.472 1.956.267 3.686-1.038 3.686-2.712 0-1.633-1.645-2.898-3.518-2.73zm-8.5.793c-.667 1.1-2.088 2.531-3.529 2.531-2.651 0-3.98-3.61-1.007-6.564a1.435 1.435 0 00-.4-.06c-.255 0-.504.064-.668.174l-1.168.776.264-1.432a2.14 2.14 0 01.093-.225c-.675.322-1.339.782-1.588 1.045L2.02 14.28l.122-1.703c.025-.133.054-.262.08-.385.06-.275.135-.618.089-.732a.214.214 0 00-.083-.091C1.68 11.775.177 13.055 0 14.936c0 0 .291-.395.544-.487.167-.062.313.017.153.487-.061.184-1.51 3.96 1.34 6.57 0 0-.312-.768-.124-1 .092-.114.212-.123.376.08.123.156.251.306.438.51.187.205.447.447.729.657.853.575 2.011 1.037 3.329 1.037 3.526 0 5.395-2.34 6.43-4.305a1.551 1.551 0 00-.155-.15 57.001 57.001 0 00-1.887-1.515zm1.91-2.884c.208.067.42.158.627.319.244.188.603.471.987.776.306-.65 1.009-2.003 2.097-3.204.98-1.08 2.69-1.184 3.588-.526.577-.502 2.569-.974 3.617-.687-.639-.668-1.996-1.564-3.496-1.564-1.237 0-1.936.583-2.113.32-.228-.336.837-.833.837-.833-1.46.058-2.523 1.711-2.966 1.505-.262-.12.395-.92.395-.92-1.336.746-2.455 2.328-2.688 3.291 1.229-1.448 3.614-2.486 5.166-2.267-2.629.122-4.891 2.276-6.05 3.79Z" }) + ] + } + ); +}); + +exports.default = SiDungeonsanddragons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.d.ts new file mode 100644 index 000000000..3377c4327 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiDungeonsanddragons: IconType; +export { SiDungeonsanddragons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.mjs new file mode 100644 index 000000000..0a188871a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDungeonsanddragons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiDungeonsanddragons = React.forwardRef(function SiDungeonsanddragons2({ title = "Dungeons & Dragons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.921 2.217C4.859 1.297 6.122.742 7.988.838c2.944.152 4.358 2.096 4.358 4.193 0 1.011-.536 2.363-1.276 3.323-.045-.044-.083-.087-.13-.131a21.28 21.28 0 00-.49-.436c-.484-.421-1.03-.905-1.397-1.426.807-1.413.346-3.414-1.359-3.414-.998 0-1.83.88-1.759 2.047-.26.552-.387 1.352-.337 2.062-.489-.295-.901-.618-1.095-1.067l-.626-1.445-.493 1.492a2.515 2.515 0 00-.088 1.135l-.01-.001a3.27 3.27 0 01-.555-1.57c-.18-1.908.764-2.964 1.19-3.383zm-.45 6.824c.114-.434-.778-1.173-1.11-1.311 1.224-.047 1.833.175 1.833.175-.32-.454-.423-1.146-.242-1.695.667 1.539 3.052 1.786 3.642 3.062-.084-.55-.625-1.169-1.253-1.53-.337-.838-.085-2.383.327-2.808-.145 2.22 3.149 3.49 3.832 5.105-.4-1.383-1.936-2.258-2.664-3.086-.24-.55-.056-1.48.205-1.799-.077 1.488 1.592 2.648 2.483 3.48 1.051.979 1.349 1.845 1.207 2.553.23.058.547.273.493.638.336-.075.677-.445.76-.673.165 1.104-.51 2.273-1.266 2.621 0 0 .203-.527-.141-.93-.34-.398-1.305-.403-1.631-.38 0 0 .4-.57.242-.86-.2-.357-2.087-.2-2.93.094.287-.03.967.044 1.205.14-.132.189-.478.989-.23 1.229.23.22.53-.162.53-.162s-.294.875-.082 1.078c.21.203.662.059.662.059-.281.687-1.379 1.16-2.146 1.16.274-.084.725-.553.795-.836-.2.097-.726.153-.928.117.248-.097.746-.712.592-1.405-.229-1.009-1.69-1.137-2.425-.649.238-.678.95-1.312 1.507-1.52a7.523 7.523 0 00-1.117-.273c.468-.369 1.642-.67 2.241-.639-.914-.225-2.586.057-3.352.927.245 0 .875.114 1.118.19-1.048.182-2.478 1.122-2.898 1.566.11-.584.28-1.08.136-1.43-.202-.497-.826-.704-2.07-.457.84-.809 2.56-1.31 2.676-1.751zm5.724.783c.166.563.39 1.08 1.097 1.08 0 0-.248-.779-1.097-1.08zm10.479 6.203c.533.088 1.282.635 1.282 1.417 0 1.275-1.652 1.667-2.566 1.469.97-.648.84-2.512-.326-3.178.395 1.045-.79 2.082-1.942 1.172-.641-.506-2.123-1.694-2.785-2.206-.66-.511-1.434-.214-1.74-.437-.348-.254-.125-.97-.6-1.236-.399-.222-.79-.098-1.253-.246-.42-.133-.733-.448-.68-.872-.178.303-.19.83.129 1.186.316.352.844.57 1.062.957.282.5-.193 1.196 1.062 2.143.6.452 1.53 1.195 2.137 1.707 1.021.862.476 1.94.61 2.879.155 1.096 1.072 1.704 1.682 1.858-.526-.46-.725-1.62.014-2.33.038.916.725 2.35 2.292 2.753 1.667.427 3.439-.482 3.807-1.122-.643.28-1.854-.022-2.353-.472 1.956.267 3.686-1.038 3.686-2.712 0-1.633-1.645-2.898-3.518-2.73zm-8.5.793c-.667 1.1-2.088 2.531-3.529 2.531-2.651 0-3.98-3.61-1.007-6.564a1.435 1.435 0 00-.4-.06c-.255 0-.504.064-.668.174l-1.168.776.264-1.432a2.14 2.14 0 01.093-.225c-.675.322-1.339.782-1.588 1.045L2.02 14.28l.122-1.703c.025-.133.054-.262.08-.385.06-.275.135-.618.089-.732a.214.214 0 00-.083-.091C1.68 11.775.177 13.055 0 14.936c0 0 .291-.395.544-.487.167-.062.313.017.153.487-.061.184-1.51 3.96 1.34 6.57 0 0-.312-.768-.124-1 .092-.114.212-.123.376.08.123.156.251.306.438.51.187.205.447.447.729.657.853.575 2.011 1.037 3.329 1.037 3.526 0 5.395-2.34 6.43-4.305a1.551 1.551 0 00-.155-.15 57.001 57.001 0 00-1.887-1.515zm1.91-2.884c.208.067.42.158.627.319.244.188.603.471.987.776.306-.65 1.009-2.003 2.097-3.204.98-1.08 2.69-1.184 3.588-.526.577-.502 2.569-.974 3.617-.687-.639-.668-1.996-1.564-3.496-1.564-1.237 0-1.936.583-2.113.32-.228-.336.837-.833.837-.833-1.46.058-2.523 1.711-2.966 1.505-.262-.12.395-.92.395-.92-1.336.746-2.455 2.328-2.688 3.291 1.229-1.448 3.614-2.486 5.166-2.267-2.629.122-4.891 2.276-6.05 3.79Z" }) + ] + } + ); +}); + +export { SiDungeonsanddragons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.cjs new file mode 100644 index 000000000..6133a0bb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2DA9D7"; +const SiDunked = React__namespace.forwardRef(function SiDunked2({ title = "Dunked", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.799 0v19.8599A4.2002 4.2002 0 0018.0003 24h4.2002V4.1411A4.2002 4.2002 0 0017.9992 0H13.798zM6.2983 15.0014a4.5008 4.5008 0 00-4.4988 4.3906v.2224a4.5008 4.5008 0 008.9986 0v-.2154a4.5008 4.5008 0 00-4.4998-4.3986z" }) + ] + } + ); +}); + +exports.default = SiDunked; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.d.ts new file mode 100644 index 000000000..1bab7f5f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2DA9D7"; +declare const SiDunked: IconType; +export { SiDunked as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.mjs new file mode 100644 index 000000000..d8d5b8d44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDunked.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2DA9D7"; +const SiDunked = React.forwardRef(function SiDunked2({ title = "Dunked", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.799 0v19.8599A4.2002 4.2002 0 0018.0003 24h4.2002V4.1411A4.2002 4.2002 0 0017.9992 0H13.798zM6.2983 15.0014a4.5008 4.5008 0 00-4.4988 4.3906v.2224a4.5008 4.5008 0 008.9986 0v-.2154a4.5008 4.5008 0 00-4.4998-4.3986z" }) + ] + } + ); +}); + +export { SiDunked as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.cjs new file mode 100644 index 000000000..85dd99f08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D290"; +const SiDunzo = React__namespace.forwardRef(function SiDunzo2({ title = "Dunzo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.75 0A2.744 2.744 0 0 0 0 2.75v18.5A2.744 2.744 0 0 0 2.75 24h18.5A2.744 2.744 0 0 0 24 21.25V2.75A2.744 2.744 0 0 0 21.25 0Zm9.902 5.506c.91.006 1.781.197 2.594.605-.891 1.87-1.888 3.8-2.832 5.682-.017.029-.086.13-.225.031-.8-.638-1.581-1.304-2.369-1.959-.223-.195-.442-.105-.55.133-.515 1.027-.952 1.883-1.465 2.91-.7 1.398-1.398 2.673-2.098 4.07-.064.142-.143.043-.143.043.538-3.258 1.643-10.807 1.717-11.1.055-.213.183-.36.42-.394.09-.012.18-.023.27-.023ZM17.78 8c.01-.003.016.022.045.082.48.935.803 2.554.487 4.238-.25 1.328-.849 2.487-1.737 3.512a7.715 7.715 0 0 1-3.224 2.207c-.735.268-1.498.362-2.288.361H6.275c-.654 0-.725-.224-.709-.238a923.24 923.24 0 0 1 4.309-5.906c.235-.258.417-.022.668.224 1.105.957 2.139 1.826 2.28 1.94.08.066.163.051.222-.033A971.241 971.241 0 0 1 17.779 8z" }) + ] + } + ); +}); + +exports.default = SiDunzo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.d.ts new file mode 100644 index 000000000..df27ca863 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D290"; +declare const SiDunzo: IconType; +export { SiDunzo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.mjs new file mode 100644 index 000000000..b8378d4a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDunzo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D290"; +const SiDunzo = React.forwardRef(function SiDunzo2({ title = "Dunzo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.75 0A2.744 2.744 0 0 0 0 2.75v18.5A2.744 2.744 0 0 0 2.75 24h18.5A2.744 2.744 0 0 0 24 21.25V2.75A2.744 2.744 0 0 0 21.25 0Zm9.902 5.506c.91.006 1.781.197 2.594.605-.891 1.87-1.888 3.8-2.832 5.682-.017.029-.086.13-.225.031-.8-.638-1.581-1.304-2.369-1.959-.223-.195-.442-.105-.55.133-.515 1.027-.952 1.883-1.465 2.91-.7 1.398-1.398 2.673-2.098 4.07-.064.142-.143.043-.143.043.538-3.258 1.643-10.807 1.717-11.1.055-.213.183-.36.42-.394.09-.012.18-.023.27-.023ZM17.78 8c.01-.003.016.022.045.082.48.935.803 2.554.487 4.238-.25 1.328-.849 2.487-1.737 3.512a7.715 7.715 0 0 1-3.224 2.207c-.735.268-1.498.362-2.288.361H6.275c-.654 0-.725-.224-.709-.238a923.24 923.24 0 0 1 4.309-5.906c.235-.258.417-.022.668.224 1.105.957 2.139 1.826 2.28 1.94.08.066.163.051.222-.033A971.241 971.241 0 0 1 17.779 8z" }) + ] + } + ); +}); + +export { SiDunzo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.cjs new file mode 100644 index 000000000..50ffb0c85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#58CC02"; +const SiDuolingo = React__namespace.forwardRef(function SiDuolingo2({ title = "Duolingo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.484 18.213c1.142 1.033 2.657 1.662 4.316 1.662l.294-.001c1.985-.038 3.749-.976 4.905-2.422v1.98c0 2.522-2.043 4.568-4.567 4.568H4.569C2.045 23.998.002 21.954.002 19.43v-1.92c1.181 1.443 2.976 2.365 4.985 2.365l.35-.001c1.61-.027 3.076-.646 4.191-1.648.555.764 1.456 1.26 2.473 1.26 1.023 0 1.928-.502 2.483-1.273zm-5.349-.996c-.989 1.022-2.375 1.658-3.909 1.658h-.239c-2.229 0-4.146-1.343-4.987-3.262v-7.16c.281-.64.68-1.216 1.169-1.699-.035-.731.132-1.469.511-2.128.256-.44.867-.504 1.21-.124l.766.851c.007-.003.014-.003.021-.005-.098-.78.037-1.587.419-2.308.24-.45.757-.53 1.114-.164 0 0 3.939 3.979 4.035 4.084 1.542 1.348 4.066 1.287 5.686-.18.002-.003.007-.005.009-.007.042-.042 3.855-3.9 3.855-3.9.3361-.3451.8619-.3101 1.113.164.385.724.518 1.535.417 2.32.002.001.003.001.004.002l.007.002c.001 0 .002 0 .003.001l.776-.86c.342-.38.954-.316 1.207.124.387.673.553 1.427.509 2.173.496.501.897 1.099 1.169 1.762v6.941c-.816 1.978-2.761 3.373-5.032 3.373H18.8c-1.547 0-2.945-.648-3.936-1.686a.8386.8386 0 0 0-.009-.067c.313-.017.528-.162.688-.33.152-.16.299-.397.299-.776 0 0-.022-.312-.024-.324.693.767 1.696 1.249 2.811 1.249 2.092 0 3.787-1.696 3.787-3.787v-2.243c0-2.092-1.697-3.787-3.787-3.787-2.093 0-3.787 1.695-3.787 3.787v2.243c0 .266.027.526.079.776-.712-.784-1.744-1.278-2.842-1.278-1.239 0-2.339.523-3.064 1.355.063-.274.097-.56.097-.853v-2.243c0-2.092-1.697-3.787-3.788-3.787-2.09 0-3.787 1.695-3.787 3.787v2.243c0 2.093 1.697 3.787 3.787 3.787 1.151 0 2.182-.513 2.876-1.322-.008.035-.039.395-.039.395 0 .378.147.616.298.775.16.168.374.312.688.331a.7783.7783 0 0 0-.012.097zm.997.073c.729.131 1.733.305 1.792.305h.157c.059 0 1.789-.303 1.789-.303-.327.705-1.041 1.194-1.869 1.194-.829 0-1.543-.49-1.869-1.196zm-.971-1.379c.246-1.313 1.462-2.259 2.918-2.259 1.324 0 2.521.97 2.763 2.259v.105c0 .082-.029.115-.103.106l-2.658.473h-.157l-2.66-.476c-.075.01-.103-.023-.103-.105Zm8.023-6.392c.255-.14.549-.22.861-.22.992 0 1.798.804 1.798 1.798v1.919c0 .991-.804 1.797-1.798 1.797-.991 0-1.797-.803-1.797-1.797v-1.542c.034.003.068.005.103.005.64 0 1.16-.518 1.16-1.156 0-.312-.125-.596-.327-.804zM5.162 9.461c.227-.104.48-.162.746-.162.991 0 1.798.804 1.798 1.798v1.919c0 .991-.804 1.797-1.798 1.797-.991 0-1.797-.803-1.797-1.797v-1.571c.089.022.182.034.278.034.641 0 1.16-.518 1.16-1.156 0-.342-.149-.65-.387-.862ZM.002 6.554V4.568C.002 2.044 2.045 0 4.569 0h14.865c2.522 0 4.565 2.044 4.565 4.568v2.041a5.1847 5.1847 0 0 0-.164-.197 4.8592 4.8592 0 0 0-.646-2.284c-.433-.754-1.315-1.037-2.07-.786a4.785 4.785 0 0 0-.327-.774h-.001c-.287-.54-.758-.835-1.248-.908-.493-.073-1.033.072-1.464.515l-3.82 3.864c-1.226 1.11-3.127 1.199-4.313.205-.103-.109-4.025-4.071-4.025-4.071-.427-.438-.966-.584-1.46-.51-.489.073-.961.367-1.248.907v.002c-.133.25-.241.508-.327.771-.753-.252-1.635.029-2.071.782 0 0-.001.001-.001.002-.4.694-.613 1.459-.645 2.23-.057.065-.113.13-.167.197z" }) + ] + } + ); +}); + +exports.default = SiDuolingo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.d.ts new file mode 100644 index 000000000..d29579c36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#58CC02"; +declare const SiDuolingo: IconType; +export { SiDuolingo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.mjs new file mode 100644 index 000000000..50895f123 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuolingo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#58CC02"; +const SiDuolingo = React.forwardRef(function SiDuolingo2({ title = "Duolingo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.484 18.213c1.142 1.033 2.657 1.662 4.316 1.662l.294-.001c1.985-.038 3.749-.976 4.905-2.422v1.98c0 2.522-2.043 4.568-4.567 4.568H4.569C2.045 23.998.002 21.954.002 19.43v-1.92c1.181 1.443 2.976 2.365 4.985 2.365l.35-.001c1.61-.027 3.076-.646 4.191-1.648.555.764 1.456 1.26 2.473 1.26 1.023 0 1.928-.502 2.483-1.273zm-5.349-.996c-.989 1.022-2.375 1.658-3.909 1.658h-.239c-2.229 0-4.146-1.343-4.987-3.262v-7.16c.281-.64.68-1.216 1.169-1.699-.035-.731.132-1.469.511-2.128.256-.44.867-.504 1.21-.124l.766.851c.007-.003.014-.003.021-.005-.098-.78.037-1.587.419-2.308.24-.45.757-.53 1.114-.164 0 0 3.939 3.979 4.035 4.084 1.542 1.348 4.066 1.287 5.686-.18.002-.003.007-.005.009-.007.042-.042 3.855-3.9 3.855-3.9.3361-.3451.8619-.3101 1.113.164.385.724.518 1.535.417 2.32.002.001.003.001.004.002l.007.002c.001 0 .002 0 .003.001l.776-.86c.342-.38.954-.316 1.207.124.387.673.553 1.427.509 2.173.496.501.897 1.099 1.169 1.762v6.941c-.816 1.978-2.761 3.373-5.032 3.373H18.8c-1.547 0-2.945-.648-3.936-1.686a.8386.8386 0 0 0-.009-.067c.313-.017.528-.162.688-.33.152-.16.299-.397.299-.776 0 0-.022-.312-.024-.324.693.767 1.696 1.249 2.811 1.249 2.092 0 3.787-1.696 3.787-3.787v-2.243c0-2.092-1.697-3.787-3.787-3.787-2.093 0-3.787 1.695-3.787 3.787v2.243c0 .266.027.526.079.776-.712-.784-1.744-1.278-2.842-1.278-1.239 0-2.339.523-3.064 1.355.063-.274.097-.56.097-.853v-2.243c0-2.092-1.697-3.787-3.788-3.787-2.09 0-3.787 1.695-3.787 3.787v2.243c0 2.093 1.697 3.787 3.787 3.787 1.151 0 2.182-.513 2.876-1.322-.008.035-.039.395-.039.395 0 .378.147.616.298.775.16.168.374.312.688.331a.7783.7783 0 0 0-.012.097zm.997.073c.729.131 1.733.305 1.792.305h.157c.059 0 1.789-.303 1.789-.303-.327.705-1.041 1.194-1.869 1.194-.829 0-1.543-.49-1.869-1.196zm-.971-1.379c.246-1.313 1.462-2.259 2.918-2.259 1.324 0 2.521.97 2.763 2.259v.105c0 .082-.029.115-.103.106l-2.658.473h-.157l-2.66-.476c-.075.01-.103-.023-.103-.105Zm8.023-6.392c.255-.14.549-.22.861-.22.992 0 1.798.804 1.798 1.798v1.919c0 .991-.804 1.797-1.798 1.797-.991 0-1.797-.803-1.797-1.797v-1.542c.034.003.068.005.103.005.64 0 1.16-.518 1.16-1.156 0-.312-.125-.596-.327-.804zM5.162 9.461c.227-.104.48-.162.746-.162.991 0 1.798.804 1.798 1.798v1.919c0 .991-.804 1.797-1.798 1.797-.991 0-1.797-.803-1.797-1.797v-1.571c.089.022.182.034.278.034.641 0 1.16-.518 1.16-1.156 0-.342-.149-.65-.387-.862ZM.002 6.554V4.568C.002 2.044 2.045 0 4.569 0h14.865c2.522 0 4.565 2.044 4.565 4.568v2.041a5.1847 5.1847 0 0 0-.164-.197 4.8592 4.8592 0 0 0-.646-2.284c-.433-.754-1.315-1.037-2.07-.786a4.785 4.785 0 0 0-.327-.774h-.001c-.287-.54-.758-.835-1.248-.908-.493-.073-1.033.072-1.464.515l-3.82 3.864c-1.226 1.11-3.127 1.199-4.313.205-.103-.109-4.025-4.071-4.025-4.071-.427-.438-.966-.584-1.46-.51-.489.073-.961.367-1.248.907v.002c-.133.25-.241.508-.327.771-.753-.252-1.635.029-2.071.782 0 0-.001.001-.001.002-.4.694-.613 1.459-.645 2.23-.057.065-.113.13-.167.197z" }) + ] + } + ); +}); + +export { SiDuolingo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.cjs new file mode 100644 index 000000000..1e5fb1bff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E3A8A"; +const SiDuplicati = React__namespace.forwardRef(function SiDuplicati2({ title = "Duplicati", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.571 1.286A1.72 1.72 0 0 0 6.857 3v10.286c0 .634.353 1.183.868 1.48.251.144.538.234.846.234h13.715A1.72 1.72 0 0 0 24 13.286V3a1.72 1.72 0 0 0-1.714-1.714Zm.56 12.087zm3.166 0zm-10.583-.087A1.72 1.72 0 0 0 0 15v6a1.72 1.72 0 0 0 1.714 1.714h8.572a1.715 1.715 0 0 0 1.473-.857c.148-.253.241-.544.241-.857v-4.286H8.571c-.296 0-.582-.042-.857-.114a3.439 3.439 0 0 1-2.571-3.314Zm18 3.428h-6V21H18a1.72 1.72 0 0 0 1.714-1.714z" }) + ] + } + ); +}); + +exports.default = SiDuplicati; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.d.ts new file mode 100644 index 000000000..eb35396d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E3A8A"; +declare const SiDuplicati: IconType; +export { SiDuplicati as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.mjs new file mode 100644 index 000000000..b921555e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDuplicati.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E3A8A"; +const SiDuplicati = React.forwardRef(function SiDuplicati2({ title = "Duplicati", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.571 1.286A1.72 1.72 0 0 0 6.857 3v10.286c0 .634.353 1.183.868 1.48.251.144.538.234.846.234h13.715A1.72 1.72 0 0 0 24 13.286V3a1.72 1.72 0 0 0-1.714-1.714Zm.56 12.087zm3.166 0zm-10.583-.087A1.72 1.72 0 0 0 0 15v6a1.72 1.72 0 0 0 1.714 1.714h8.572a1.715 1.715 0 0 0 1.473-.857c.148-.253.241-.544.241-.857v-4.286H8.571c-.296 0-.582-.042-.857-.114a3.439 3.439 0 0 1-2.571-3.314Zm18 3.428h-6V21H18a1.72 1.72 0 0 0 1.714-1.714z" }) + ] + } + ); +}); + +export { SiDuplicati as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.cjs new file mode 100644 index 000000000..fae1926be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13ADC7"; +const SiDvc = React__namespace.forwardRef(function SiDvc2({ title = "DVC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.935a.295.295 0 0 1 .09-.223.256.256 0 0 1 .201-.092h3.921c1.608.122 2.808.582 3.912 1.716 1.11 1.135 1.551 2.422 1.692 4.078.135 1.594-.516 2.974-1.62 4.108a5.42 5.42 0 0 1-1.818 1.28 5.316 5.316 0 0 1-2.166.431H.292a.28.28 0 0 1-.202-.092.315.315 0 0 1-.069-.104.322.322 0 0 1-.02-.123V4.935Zm2.508 8.84H4.05c.9 0 1.65-.326 2.244-.973a3.403 3.403 0 0 0 .891-2.39c0-.942-.3-1.737-.89-2.383a2.935 2.935 0 0 0-1.02-.734 2.88 2.88 0 0 0-1.225-.238H2.508zm12.064.062a.32.32 0 0 1 .028.311l-2.324 5.056c-.063.122-.153.18-.273.18h-.162c-.12 0-.21-.06-.276-.184l-2.28-4.993a.317.317 0 0 1 .033-.316 5.136 5.136 0 0 0 .961-3.17c-.002-.088.133-.123.168-.042l1.44 3.236h.098l1.494-3.354c.035-.078.16-.049.16.036 0 1.147.29 2.282.933 3.24zm1.196.728c-1.14-1.128-1.668-2.496-1.668-4.108 0-1.622.525-2.996 1.668-4.133a5.74 5.74 0 0 1 1.91-1.285 5.65 5.65 0 0 1 2.248-.423 5.692 5.692 0 0 1 3.94 1.503c.164.153.167.306.017.453l-1.269 1.31c-.14.128-.279.128-.408 0a3.21 3.21 0 0 0-2.199-.825c-.912 0-1.67.325-2.28.981a3.267 3.267 0 0 0-.87 2.345c0 .908.27 1.68.882 2.321a3.023 3.023 0 0 0 2.286.96 3.255 3.255 0 0 0 2.181-.776c.15-.129.291-.123.42.015l1.272 1.343c.141.141.135.285-.015.435a5.49 5.49 0 0 1-3.957 1.567 5.675 5.675 0 0 1-2.245-.415 5.795 5.795 0 0 1-1.913-1.27z" }) + ] + } + ); +}); + +exports.default = SiDvc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.d.ts new file mode 100644 index 000000000..2ed9989e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13ADC7"; +declare const SiDvc: IconType; +export { SiDvc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.mjs new file mode 100644 index 000000000..4c8f63ad8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDvc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13ADC7"; +const SiDvc = React.forwardRef(function SiDvc2({ title = "DVC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.935a.295.295 0 0 1 .09-.223.256.256 0 0 1 .201-.092h3.921c1.608.122 2.808.582 3.912 1.716 1.11 1.135 1.551 2.422 1.692 4.078.135 1.594-.516 2.974-1.62 4.108a5.42 5.42 0 0 1-1.818 1.28 5.316 5.316 0 0 1-2.166.431H.292a.28.28 0 0 1-.202-.092.315.315 0 0 1-.069-.104.322.322 0 0 1-.02-.123V4.935Zm2.508 8.84H4.05c.9 0 1.65-.326 2.244-.973a3.403 3.403 0 0 0 .891-2.39c0-.942-.3-1.737-.89-2.383a2.935 2.935 0 0 0-1.02-.734 2.88 2.88 0 0 0-1.225-.238H2.508zm12.064.062a.32.32 0 0 1 .028.311l-2.324 5.056c-.063.122-.153.18-.273.18h-.162c-.12 0-.21-.06-.276-.184l-2.28-4.993a.317.317 0 0 1 .033-.316 5.136 5.136 0 0 0 .961-3.17c-.002-.088.133-.123.168-.042l1.44 3.236h.098l1.494-3.354c.035-.078.16-.049.16.036 0 1.147.29 2.282.933 3.24zm1.196.728c-1.14-1.128-1.668-2.496-1.668-4.108 0-1.622.525-2.996 1.668-4.133a5.74 5.74 0 0 1 1.91-1.285 5.65 5.65 0 0 1 2.248-.423 5.692 5.692 0 0 1 3.94 1.503c.164.153.167.306.017.453l-1.269 1.31c-.14.128-.279.128-.408 0a3.21 3.21 0 0 0-2.199-.825c-.912 0-1.67.325-2.28.981a3.267 3.267 0 0 0-.87 2.345c0 .908.27 1.68.882 2.321a3.023 3.023 0 0 0 2.286.96 3.255 3.255 0 0 0 2.181-.776c.15-.129.291-.123.42.015l1.272 1.343c.141.141.135.285-.015.435a5.49 5.49 0 0 1-3.957 1.567 5.675 5.675 0 0 1-2.245-.415 5.795 5.795 0 0 1-1.913-1.27z" }) + ] + } + ); +}); + +export { SiDvc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.cjs new file mode 100644 index 000000000..a6ca6ede6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008CD7"; +const SiDwavesystems = React__namespace.forwardRef(function SiDwavesystems2({ title = "D-Wave Systems", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.1062 12.0046c0 1.5815-1.2842 2.8636-2.8685 2.8636-1.5842 0-2.8684-1.282-2.8684-2.8636 0-1.5815 1.2842-2.8635 2.8684-2.8635 1.5843 0 2.8685 1.2821 2.8685 2.8635zM7.2377 0C5.6536 0 4.3693 1.2817 4.3693 2.8628s1.2842 2.8629 2.8684 2.8629c1.5842 0 2.8685-1.2817 2.8685-2.8629C10.1062 1.2817 8.822 0 7.2377 0zm9.5246 18.2781c-1.5838 0-2.8677 1.2764-2.8677 2.8636 0 1.5763 1.2835 2.8583 2.8677 2.8583 1.5845 0 2.8684-1.282 2.8684-2.8583 0-1.5872-1.2843-2.8636-2.8684-2.8636zm-2.8685-6.2735c0-1.5815 1.2842-2.8635 2.8685-2.8635 1.5842 0 2.8684 1.282 2.8684 2.8635 0 1.5815-1.2842 2.8636-2.8684 2.8636-1.5843 0-2.8685-1.282-2.8685-2.8636zm.5 0c0 1.3033 1.0625 2.3636 2.3685 2.3636s2.3684-1.0603 2.3684-2.3636c0-1.3032-1.0624-2.3635-2.3684-2.3635s-2.3685 1.0603-2.3685 2.3635z" }) + ] + } + ); +}); + +exports.default = SiDwavesystems; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.d.ts new file mode 100644 index 000000000..ebd5f5556 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008CD7"; +declare const SiDwavesystems: IconType; +export { SiDwavesystems as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.mjs new file mode 100644 index 000000000..b1b50b0fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDwavesystems.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008CD7"; +const SiDwavesystems = React.forwardRef(function SiDwavesystems2({ title = "D-Wave Systems", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.1062 12.0046c0 1.5815-1.2842 2.8636-2.8685 2.8636-1.5842 0-2.8684-1.282-2.8684-2.8636 0-1.5815 1.2842-2.8635 2.8684-2.8635 1.5843 0 2.8685 1.2821 2.8685 2.8635zM7.2377 0C5.6536 0 4.3693 1.2817 4.3693 2.8628s1.2842 2.8629 2.8684 2.8629c1.5842 0 2.8685-1.2817 2.8685-2.8629C10.1062 1.2817 8.822 0 7.2377 0zm9.5246 18.2781c-1.5838 0-2.8677 1.2764-2.8677 2.8636 0 1.5763 1.2835 2.8583 2.8677 2.8583 1.5845 0 2.8684-1.282 2.8684-2.8583 0-1.5872-1.2843-2.8636-2.8684-2.8636zm-2.8685-6.2735c0-1.5815 1.2842-2.8635 2.8685-2.8635 1.5842 0 2.8684 1.282 2.8684 2.8635 0 1.5815-1.2842 2.8636-2.8684 2.8636-1.5843 0-2.8685-1.282-2.8685-2.8636zm.5 0c0 1.3033 1.0625 2.3636 2.3685 2.3636s2.3684-1.0603 2.3684-2.3636c0-1.3032-1.0624-2.3635-2.3684-2.3635s-2.3685 1.0603-2.3685 2.3635z" }) + ] + } + ); +}); + +export { SiDwavesystems as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.cjs new file mode 100644 index 000000000..1c5865396 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1177AA"; +const SiDwm = React__namespace.forwardRef(function SiDwm2({ title = "dwm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 11h6V7h2v8h2v-4h2v4h2v-4h10v6h-2v-4h-2v4h-2v-4h-2v4H2v-2h4v-2H2v4H0z" }) + ] + } + ); +}); + +exports.default = SiDwm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.d.ts new file mode 100644 index 000000000..34197a492 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1177AA"; +declare const SiDwm: IconType; +export { SiDwm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.mjs new file mode 100644 index 000000000..784613e91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDwm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1177AA"; +const SiDwm = React.forwardRef(function SiDwm2({ title = "dwm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 11h6V7h2v8h2v-4h2v4h2v-4h10v6h-2v-4h-2v4h-2v-4h-2v4H2v-2h4v-2H2v4H0z" }) + ] + } + ); +}); + +export { SiDwm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.cjs new file mode 100644 index 000000000..ad1a84684 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1496FF"; +const SiDynatrace = React__namespace.forwardRef(function SiDynatrace2({ title = "Dynatrace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.372 0c-.31.006-.93.09-1.521.654-.872.824-5.225 4.957-6.973 6.617-.79.754-.72 1.595-.72 1.664v.377c.067-.292.187-.5.427-.825.496-.616 1.3-.788 1.627-.822a64.238 64.238 0 01.002 0 64.238 64.238 0 016.528-.55c4.335-.136 7.197.226 7.197.226l6.085-5.794s-3.188-.6-6.82-1.027a93.4 93.4 0 00-5.64-.514c-.02 0-.09-.008-.192-.006zm13.56 2.508l-6.066 5.79s.222 2.881-.137 7.2c-.189 2.45-.584 4.866-.875 6.494-.052.326-.256 1.114-.925 1.594-.29.198-.49.295-.748.363 1.546-.51 1.091-7.047 1.091-7.047-4.335.137-7.214-.223-7.214-.223l-6.085 5.793s3.223.634 6.856 1.045c2.056.24 4.833.429 5.227.463.023 0 .045-.007.068-.012-.013.003-.022.009-.035.012.138 0 .26.015.38.015.084 0 .924.105 1.712-.648 1.748-1.663 6.084-5.81 6.94-6.634.789-.754.72-1.594.72-1.68a81.846 81.846 0 00-.206-5.654 101.75 101.75 0 00-.701-6.872zM3.855 8.306c-1.73.002-3.508.208-3.696 1.021.017 1.216.05 3.137.205 5.28.24 3.65.703 6.887.703 6.887l6.083-5.79c-.017.016-.24-2.88.12-7.2 0 0-1.684-.201-3.416-.2z" }) + ] + } + ); +}); + +exports.default = SiDynatrace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.d.ts new file mode 100644 index 000000000..168b408d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1496FF"; +declare const SiDynatrace: IconType; +export { SiDynatrace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.mjs new file mode 100644 index 000000000..b29b4b15d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiDynatrace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1496FF"; +const SiDynatrace = React.forwardRef(function SiDynatrace2({ title = "Dynatrace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.372 0c-.31.006-.93.09-1.521.654-.872.824-5.225 4.957-6.973 6.617-.79.754-.72 1.595-.72 1.664v.377c.067-.292.187-.5.427-.825.496-.616 1.3-.788 1.627-.822a64.238 64.238 0 01.002 0 64.238 64.238 0 016.528-.55c4.335-.136 7.197.226 7.197.226l6.085-5.794s-3.188-.6-6.82-1.027a93.4 93.4 0 00-5.64-.514c-.02 0-.09-.008-.192-.006zm13.56 2.508l-6.066 5.79s.222 2.881-.137 7.2c-.189 2.45-.584 4.866-.875 6.494-.052.326-.256 1.114-.925 1.594-.29.198-.49.295-.748.363 1.546-.51 1.091-7.047 1.091-7.047-4.335.137-7.214-.223-7.214-.223l-6.085 5.793s3.223.634 6.856 1.045c2.056.24 4.833.429 5.227.463.023 0 .045-.007.068-.012-.013.003-.022.009-.035.012.138 0 .26.015.38.015.084 0 .924.105 1.712-.648 1.748-1.663 6.084-5.81 6.94-6.634.789-.754.72-1.594.72-1.68a81.846 81.846 0 00-.206-5.654 101.75 101.75 0 00-.701-6.872zM3.855 8.306c-1.73.002-3.508.208-3.696 1.021.017 1.216.05 3.137.205 5.28.24 3.65.703 6.887.703 6.887l6.083-5.79c-.017.016-.24-2.88.12-7.2 0 0-1.684-.201-3.416-.2z" }) + ] + } + ); +}); + +export { SiDynatrace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiE.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiE.cjs new file mode 100644 index 000000000..d26d43fcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiE.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiE = React__namespace.forwardRef(function SiE2({ title = "/e/", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.004 12.004A12.012 12.012 0 0 0 12 24a2.27 2.27 0 0 0 2.266-2.266A2.27 2.27 0 0 0 12 19.467c-4.116 0-7.463-3.347-7.463-7.463S7.884 4.541 12 4.541c3.323 0 6.15 2.186 7.111 5.197H12a2.27 2.27 0 0 0-2.266 2.266A2.27 2.27 0 0 0 12 14.27h9.73a2.27 2.27 0 0 0 2.266-2.266A12.02 12.02 0 0 0 12 0C5.385.008.004 5.39.004 12.004" }) + ] + } + ); +}); + +exports.default = SiE; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiE.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiE.d.ts new file mode 100644 index 000000000..86f1df367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiE.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiE: IconType; +export { SiE as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiE.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiE.mjs new file mode 100644 index 000000000..7dfc78be4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiE.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiE = React.forwardRef(function SiE2({ title = "/e/", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.004 12.004A12.012 12.012 0 0 0 12 24a2.27 2.27 0 0 0 2.266-2.266A2.27 2.27 0 0 0 12 19.467c-4.116 0-7.463-3.347-7.463-7.463S7.884 4.541 12 4.541c3.323 0 6.15 2.186 7.111 5.197H12a2.27 2.27 0 0 0-2.266 2.266A2.27 2.27 0 0 0 12 14.27h9.73a2.27 2.27 0 0 0 2.266-2.266A12.02 12.02 0 0 0 12 0C5.385.008.004 5.39.004 12.004" }) + ] + } + ); +}); + +export { SiE as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiE3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiE3.cjs new file mode 100644 index 000000000..ca28a7511 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiE3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E73D2F"; +const SiE3 = React__namespace.forwardRef(function SiE32({ title = "E3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.0676 16.5185H4.7723v-2.6738h6.2615v-3.757H4.7723v-2.64h6.2615V3.691H0v16.6184h14.1476c0-.0339-2.7754-.7108-3.08-3.7908zm10.12-6.3969c1.8954 1.2862 2.8769 2.5385 2.8092 5.1108-.0677 2.6738-2.7754 5.043-5.72 5.043-2.0984 0-4.7723-.9477-5.7876-3.7569l3.4861-1.5569c.4738.88 1.1508 1.557 2.2 1.557 1.1507 0 1.9969-.88 2.0984-1.997.0339-.2708-.1353-2.2338-2.0984-2.3015l-2.2-.237 2.8092-4.5353h-6.3292v-3.757h11.5415z" }) + ] + } + ); +}); + +exports.default = SiE3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiE3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiE3.d.ts new file mode 100644 index 000000000..d3c4568b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiE3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E73D2F"; +declare const SiE3: IconType; +export { SiE3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiE3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiE3.mjs new file mode 100644 index 000000000..2ee330fce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiE3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E73D2F"; +const SiE3 = React.forwardRef(function SiE32({ title = "E3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.0676 16.5185H4.7723v-2.6738h6.2615v-3.757H4.7723v-2.64h6.2615V3.691H0v16.6184h14.1476c0-.0339-2.7754-.7108-3.08-3.7908zm10.12-6.3969c1.8954 1.2862 2.8769 2.5385 2.8092 5.1108-.0677 2.6738-2.7754 5.043-5.72 5.043-2.0984 0-4.7723-.9477-5.7876-3.7569l3.4861-1.5569c.4738.88 1.1508 1.557 2.2 1.557 1.1507 0 1.9969-.88 2.0984-1.997.0339-.2708-.1353-2.2338-2.0984-2.3015l-2.2-.237 2.8092-4.5353h-6.3292v-3.757h11.5415z" }) + ] + } + ); +}); + +export { SiE3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEa.cjs new file mode 100644 index 000000000..a461af896 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiEa = React__namespace.forwardRef(function SiEa2({ title = "EA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.635 6.162l-5.928 9.377H4.24l1.508-2.3h4.024l1.474-2.335H2.264L.79 13.239h2.156L0 17.84h12.072l4.563-7.259 1.652 2.66h-1.401l-1.473 2.299h4.347l1.473 2.3H24zm-11.461.107L3.7 8.604l9.52-.035 1.474-2.3z" }) + ] + } + ); +}); + +exports.default = SiEa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEa.d.ts new file mode 100644 index 000000000..b7293478d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiEa: IconType; +export { SiEa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEa.mjs new file mode 100644 index 000000000..8d7a3b1fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiEa = React.forwardRef(function SiEa2({ title = "EA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.635 6.162l-5.928 9.377H4.24l1.508-2.3h4.024l1.474-2.335H2.264L.79 13.239h2.156L0 17.84h12.072l4.563-7.259 1.652 2.66h-1.401l-1.473 2.299h4.347l1.473 2.3H24zm-11.461.107L3.7 8.604l9.52-.035 1.474-2.3z" }) + ] + } + ); +}); + +export { SiEa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEac.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEac.cjs new file mode 100644 index 000000000..6598cd548 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEac.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiEac = React__namespace.forwardRef(function SiEac2({ title = "EAC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.667 24h2.667v-2.667H2.667v-8h2.667v-2.666H2.667v-8h2.667V0H0v24zm21.334-2.667h-2.668V2.667h2.668V0h-5.333v24h5.333zM13.334 0H8v24h2.667V13.335h2.667V24H16V0Zm0 10.667h-2.667v-8h2.667z" }) + ] + } + ); +}); + +exports.default = SiEac; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEac.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEac.d.ts new file mode 100644 index 000000000..6ffd67ce4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEac.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiEac: IconType; +export { SiEac as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEac.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEac.mjs new file mode 100644 index 000000000..bdc6cc1bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEac.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiEac = React.forwardRef(function SiEac2({ title = "EAC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.667 24h2.667v-2.667H2.667v-8h2.667v-2.666H2.667v-8h2.667V0H0v24zm21.334-2.667h-2.668V2.667h2.668V0h-5.333v24h5.333zM13.334 0H8v24h2.667V13.335h2.667V24H16V0Zm0 10.667h-2.667v-8h2.667z" }) + ] + } + ); +}); + +export { SiEac as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.cjs new file mode 100644 index 000000000..90776c8d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0072EF"; +const SiEagle = React__namespace.forwardRef(function SiEagle2({ title = "Eagle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.04 3.858c1.32.019 2.634.335 3.78.989.549.31.957.642 1.238.895a6.912 6.912 0 0 0-2.25 3.04c-.06.165-.123.354-.183.546a6.856 6.856 0 0 0-.252 1.605c-.003.162.002.374.003.578.012.242.05.519.08.789a7.013 7.013 0 0 0 1.753 3.586 6.889 6.889 0 0 0 1.87 1.42 7.792 7.792 0 0 1-2.629 2.166 7.717 7.717 0 0 1-3.846.808 9.16 9.16 0 0 1-.22-.013 7.695 7.695 0 0 1-1.504-.247 8.201 8.201 0 0 1-2.83-1.354 7.056 7.056 0 0 1-1.894-2.1c-.22-.38-1.49-2.644-.769-5.452A7.261 7.261 0 0 1 5.93 8.18a5.513 5.513 0 0 0-2.105 1.082C4.12 8.573 5.306 6 8.217 4.66a8.944 8.944 0 0 1 3.823-.8zm5.702 2.508c.202.126.464.309.736.572.108.103.478.468.82 1.054.413.703.549 1.327.62 1.65a5.52 5.52 0 0 1 .013 2.302 7.133 7.133 0 0 0-2.044-1.688 7.243 7.243 0 0 0-1.551.3 6.834 6.834 0 0 0-1.05.422 6.058 6.058 0 0 1 .267-1.563 5.923 5.923 0 0 1 .806-1.643 6.255 6.255 0 0 1 1.383-1.406Z" }) + ] + } + ); +}); + +exports.default = SiEagle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.d.ts new file mode 100644 index 000000000..63a6b7015 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0072EF"; +declare const SiEagle: IconType; +export { SiEagle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.mjs new file mode 100644 index 000000000..cdcc7e404 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEagle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0072EF"; +const SiEagle = React.forwardRef(function SiEagle2({ title = "Eagle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.04 3.858c1.32.019 2.634.335 3.78.989.549.31.957.642 1.238.895a6.912 6.912 0 0 0-2.25 3.04c-.06.165-.123.354-.183.546a6.856 6.856 0 0 0-.252 1.605c-.003.162.002.374.003.578.012.242.05.519.08.789a7.013 7.013 0 0 0 1.753 3.586 6.889 6.889 0 0 0 1.87 1.42 7.792 7.792 0 0 1-2.629 2.166 7.717 7.717 0 0 1-3.846.808 9.16 9.16 0 0 1-.22-.013 7.695 7.695 0 0 1-1.504-.247 8.201 8.201 0 0 1-2.83-1.354 7.056 7.056 0 0 1-1.894-2.1c-.22-.38-1.49-2.644-.769-5.452A7.261 7.261 0 0 1 5.93 8.18a5.513 5.513 0 0 0-2.105 1.082C4.12 8.573 5.306 6 8.217 4.66a8.944 8.944 0 0 1 3.823-.8zm5.702 2.508c.202.126.464.309.736.572.108.103.478.468.82 1.054.413.703.549 1.327.62 1.65a5.52 5.52 0 0 1 .013 2.302 7.133 7.133 0 0 0-2.044-1.688 7.243 7.243 0 0 0-1.551.3 6.834 6.834 0 0 0-1.05.422 6.058 6.058 0 0 1 .267-1.563 5.923 5.923 0 0 1 .806-1.643 6.255 6.255 0 0 1 1.383-1.406Z" }) + ] + } + ); +}); + +export { SiEagle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.cjs new file mode 100644 index 000000000..0f47da2b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1765F6"; +const SiEasyeda = React__namespace.forwardRef(function SiEasyeda2({ title = "EasyEDA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.754 15.36c.96 0 1.75.788 1.75 1.749 0 .96-.79 1.749-1.75 1.749s-1.75-.79-1.75-1.75.79-1.748 1.75-1.748m12.591-7.34a7.683 7.683 0 0 0-10.018-4.389c-.618.24-1.2.549-1.75.96A6.889 6.889 0 0 0 7 6.17c-.24-.034-.515-.034-.755-.034C2.78 6.1 0 8.912 0 12.342c0 2.675 1.715 5.041 4.151 5.898.48 1.544 1.922 2.675 3.603 2.675a3.762 3.762 0 0 0 3.774-3.772c0-.172 0-.309-.034-.48l5.317-2.675.515-.272-1.03-2.229-.582.272-5.318 2.675a3.708 3.708 0 0 0-2.642-1.098c-1.51 0-2.813.892-3.431 2.195-1.407-.823-2.127-2.503-1.716-4.15a3.718 3.718 0 0 1 4.53-2.674c.377.102.72.24 1.029.445.892-2.743 3.876-4.218 6.587-3.326 1.921.651 3.328 2.366 3.534 4.39h.274a2.913 2.913 0 0 1 2.916 2.915 2.941 2.941 0 0 1-2.676 2.915h-2.127v2.503H19.042c2.984-.24 5.18-2.88 4.94-5.864a4.854 4.854 0 0 0-1.51-3.361C21.89 8.74 21.17 8.26 20.345 8.02Z" }) + ] + } + ); +}); + +exports.default = SiEasyeda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.d.ts new file mode 100644 index 000000000..526a84ec5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1765F6"; +declare const SiEasyeda: IconType; +export { SiEasyeda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.mjs new file mode 100644 index 000000000..a817c60ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyeda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1765F6"; +const SiEasyeda = React.forwardRef(function SiEasyeda2({ title = "EasyEDA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.754 15.36c.96 0 1.75.788 1.75 1.749 0 .96-.79 1.749-1.75 1.749s-1.75-.79-1.75-1.75.79-1.748 1.75-1.748m12.591-7.34a7.683 7.683 0 0 0-10.018-4.389c-.618.24-1.2.549-1.75.96A6.889 6.889 0 0 0 7 6.17c-.24-.034-.515-.034-.755-.034C2.78 6.1 0 8.912 0 12.342c0 2.675 1.715 5.041 4.151 5.898.48 1.544 1.922 2.675 3.603 2.675a3.762 3.762 0 0 0 3.774-3.772c0-.172 0-.309-.034-.48l5.317-2.675.515-.272-1.03-2.229-.582.272-5.318 2.675a3.708 3.708 0 0 0-2.642-1.098c-1.51 0-2.813.892-3.431 2.195-1.407-.823-2.127-2.503-1.716-4.15a3.718 3.718 0 0 1 4.53-2.674c.377.102.72.24 1.029.445.892-2.743 3.876-4.218 6.587-3.326 1.921.651 3.328 2.366 3.534 4.39h.274a2.913 2.913 0 0 1 2.916 2.915 2.941 2.941 0 0 1-2.676 2.915h-2.127v2.503H19.042c2.984-.24 5.18-2.88 4.94-5.864a4.854 4.854 0 0 0-1.51-3.361C21.89 8.74 21.17 8.26 20.345 8.02Z" }) + ] + } + ); +}); + +export { SiEasyeda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.cjs new file mode 100644 index 000000000..d6235d4de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiEasyjet = React__namespace.forwardRef(function SiEasyjet2({ title = "easyJet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.964 12.225H1.463c-.066 0-.099.029-.099.086 0 .138.075.269.225.391.15.122.311.184.484.184.102 0 .216-.02.34-.059.125-.039.227-.088.308-.145.072-.051.13-.077.172-.077.055 0 .11.034.163.102a.34.34 0 0 1 .08.211c0 .153-.096.301-.287.444-.339.253-.729.38-1.172.38-.447 0-.822-.13-1.124-.39a1.6 1.6 0 0 1-.364-.463 1.611 1.611 0 0 1-.189-.76c0-.358.109-.679.326-.964.187-.247.426-.431.715-.552.217-.092.452-.137.706-.137.404 0 .748.115 1.031.345.143.115.258.251.345.409.1.179.15.353.15.524a.617.617 0 0 1-.086.34c-.057.087-.132.131-.223.131zm-1.418-.597h.323c.136 0 .204-.063.204-.188a.4.4 0 0 0-.099-.281.335.335 0 0 0-.259-.109.328.328 0 0 0-.281.141.445.445 0 0 0-.096.265c0 .064.015.109.046.134.031.025.085.038.162.038zm3.693-1.156c.37 0 .684.094.942.281.136.1.232.215.286.343.054.129.081.306.081.532l-.006.476c0 .33.023.544.07.642.023.047.046.077.067.089a.41.41 0 0 0 .134.035c.068.011.102.055.102.134a.54.54 0 0 1-.123.319 1.024 1.024 0 0 1-.318.278.975.975 0 0 1-.501.141.659.659 0 0 1-.53-.23c-.045-.055-.086-.083-.125-.083-.043 0-.099.027-.169.08a1.202 1.202 0 0 1-.725.233c-.279 0-.505-.06-.677-.179a.842.842 0 0 1-.268-.308.85.85 0 0 1-.099-.398c0-.221.089-.417.268-.588.279-.268.696-.403 1.252-.406.123 0 .201-.012.233-.037.032-.024.048-.081.048-.171 0-.226-.023-.389-.07-.49-.047-.101-.123-.152-.23-.152a.27.27 0 0 0-.171.058c-.05.038-.112.109-.187.211-.19.27-.387.406-.594.406a.356.356 0 0 1-.255-.093.318.318 0 0 1-.099-.243c0-.102.041-.204.123-.307.082-.102.193-.192.334-.268a2.557 2.557 0 0 1 1.207-.305zm-.214 1.849a.317.317 0 0 0-.244.115.397.397 0 0 0-.104.275c0 .102.024.185.073.248a.234.234 0 0 0 .195.094c.17 0 .255-.144.255-.431 0-.117-.012-.196-.037-.236-.024-.042-.07-.063-.138-.065zm3.33-1.846c.106 0 .28.023.521.07a.685.685 0 0 0 .121.013.797.797 0 0 0 .211-.057.357.357 0 0 1 .125-.029c.098 0 .197.063.297.188.081.1.147.21.198.329a.81.81 0 0 1 .077.31.28.28 0 0 1-.089.212.315.315 0 0 1-.224.085.375.375 0 0 1-.2-.054 2.06 2.06 0 0 1-.283-.24c-.136-.132-.249-.198-.339-.198a.214.214 0 0 0-.155.065.21.21 0 0 0-.065.155c0 .104.1.202.3.294.36.162.636.339.827.53.162.162.243.36.243.594 0 .296-.13.543-.39.741a1.307 1.307 0 0 1-.821.259c-.083 0-.234-.014-.453-.041a7.38 7.38 0 0 0-.348-.035.505.505 0 0 0-.096.01 1.244 1.244 0 0 1-.134.013.342.342 0 0 1-.236-.077 1.107 1.107 0 0 1-.243-.372 1.111 1.111 0 0 1-.112-.436c0-.196.077-.294.23-.294.06 0 .114.02.164.059.05.039.155.144.315.315.087.094.16.158.217.193a.348.348 0 0 0 .185.053c.07 0 .127-.019.169-.056a.187.187 0 0 0 .064-.149c0-.096-.082-.183-.246-.262-.343-.168-.59-.342-.742-.521a.928.928 0 0 1-.228-.62c0-.253.078-.472.233-.655.221-.261.524-.392.907-.392zm4.994 1.571l-.422 1.159a4.405 4.405 0 0 1-.315.704 2.064 2.064 0 0 1-.359.465c-.277.264-.61.396-1 .396-.315 0-.571-.083-.766-.249a.613.613 0 0 1-.227-.489c0-.164.053-.302.158-.414a.512.512 0 0 1 .388-.168c.153 0 .277.051.37.153a.418.418 0 0 1 .089.125c.015.036.037.116.067.24.023.094.077.141.16.141a.204.204 0 0 0 .166-.086.336.336 0 0 0 .067-.214c0-.1-.055-.267-.166-.501l-.77-1.638a1.506 1.506 0 0 0-.182-.319.908.908 0 0 0-.268-.156.234.234 0 0 1-.11-.101.274.274 0 0 1-.046-.145c0-.189.188-.318.565-.386.251-.045.538-.067.859-.067.226 0 .403.023.533.07.175.062.262.167.262.316a.35.35 0 0 1-.073.188.332.332 0 0 0-.07.182c0 .051.011.104.034.16.022.055.07.149.142.281.081.149.152.224.214.224.066 0 .134-.065.204-.196a.802.802 0 0 0 .105-.378.357.357 0 0 0-.08-.24c-.081-.096-.121-.178-.121-.246 0-.109.072-.195.217-.26.145-.065.338-.097.581-.097.451 0 .677.109.677.326a.263.263 0 0 1-.069.19.658.658 0 0 1-.251.136.49.49 0 0 0-.243.192c-.091.139-.199.374-.32.702zm3.189-2.816c.238 0 .481.021.728.064.202.034.347.081.434.141.087.06.131.142.131.246a.23.23 0 0 1-.048.155.715.715 0 0 1-.208.136c-.123.064-.194.139-.212.225s-.035.421-.05 1.004c-.006.564-.012.903-.018 1.016a2.208 2.208 0 0 1-.04.329c-.062.311-.186.555-.374.731-.153.145-.35.259-.591.342a2.316 2.316 0 0 1-.76.125 2.81 2.81 0 0 1-.711-.093 2.26 2.26 0 0 1-.618-.255.975.975 0 0 1-.345-.362.985.985 0 0 1-.128-.487c0-.213.067-.389.201-.529a.672.672 0 0 1 .505-.209c.198 0 .366.059.505.176a.56.56 0 0 1 .208.441c0 .045-.013.119-.038.224a.38.38 0 0 0-.006.07.21.21 0 0 0 .073.166.285.285 0 0 0 .195.064.4.4 0 0 0 .345-.192c.087-.128.131-.296.131-.505l-.003-.291-.006-.782a20.503 20.503 0 0 0-.043-.838.438.438 0 0 0-.072-.206.28.28 0 0 0-.085-.083 1.304 1.304 0 0 0-.2-.061.217.217 0 0 1-.131-.089.259.259 0 0 1-.054-.156c0-.115.045-.207.136-.276.09-.069.238-.125.442-.168a3.3 3.3 0 0 1 .707-.073zm4.155 2.995h-1.501c-.066 0-.099.029-.099.086 0 .138.075.269.225.391.15.122.311.184.484.184.102 0 .216-.02.34-.059.125-.039.227-.088.308-.145.072-.051.13-.077.172-.077.055 0 .11.034.163.102a.34.34 0 0 1 .08.211c0 .153-.096.301-.287.444-.339.253-.729.38-1.172.38-.447 0-.822-.13-1.124-.39a1.616 1.616 0 0 1-.552-1.223c0-.358.109-.679.326-.964.187-.247.426-.431.715-.552.217-.092.452-.137.706-.137.404 0 .748.115 1.032.345.143.115.258.251.345.409.1.179.15.353.15.524a.617.617 0 0 1-.086.34c-.059.087-.133.131-.225.131zm-1.418-.597h.323c.136 0 .204-.063.204-.188a.4.4 0 0 0-.099-.281.335.335 0 0 0-.259-.109.328.328 0 0 0-.281.141.445.445 0 0 0-.096.265c0 .064.015.109.046.134.032.025.086.038.162.038zm3.761-.316v1.079c0 .128.031.232.094.313a.292.292 0 0 0 .241.121c.083 0 .193-.038.329-.115a.187.187 0 0 1 .096-.029c.051 0 .098.031.141.093a.352.352 0 0 1 .063.202c0 .132-.072.259-.217.38-.302.258-.669.386-1.099.386-.341 0-.614-.096-.821-.289-.207-.193-.31-.447-.31-.762v-1.475c0-.049-.006-.079-.018-.091-.012-.012-.042-.018-.091-.018h-.329c-.062 0-.101-.01-.118-.03-.017-.02-.026-.068-.026-.142v-.141c.002-.064.027-.111.073-.141l1.463-.92a.286.286 0 0 1 .134-.029h.259c.053 0 .089.012.107.037.018.024.027.073.027.145v.431c0 .064.01.105.03.125.02.019.063.029.129.029h.591c.079 0 .13.014.153.043.023.029.035.09.035.184v.188c0 .102-.015.173-.045.212-.03.039-.084.059-.163.059h-.578c-.06 0-.1.011-.121.032-.019.023-.029.063-.029.123z" }) + ] + } + ); +}); + +exports.default = SiEasyjet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.d.ts new file mode 100644 index 000000000..ca2c11a89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiEasyjet: IconType; +export { SiEasyjet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.mjs new file mode 100644 index 000000000..a2e6fde63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEasyjet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiEasyjet = React.forwardRef(function SiEasyjet2({ title = "easyJet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.964 12.225H1.463c-.066 0-.099.029-.099.086 0 .138.075.269.225.391.15.122.311.184.484.184.102 0 .216-.02.34-.059.125-.039.227-.088.308-.145.072-.051.13-.077.172-.077.055 0 .11.034.163.102a.34.34 0 0 1 .08.211c0 .153-.096.301-.287.444-.339.253-.729.38-1.172.38-.447 0-.822-.13-1.124-.39a1.6 1.6 0 0 1-.364-.463 1.611 1.611 0 0 1-.189-.76c0-.358.109-.679.326-.964.187-.247.426-.431.715-.552.217-.092.452-.137.706-.137.404 0 .748.115 1.031.345.143.115.258.251.345.409.1.179.15.353.15.524a.617.617 0 0 1-.086.34c-.057.087-.132.131-.223.131zm-1.418-.597h.323c.136 0 .204-.063.204-.188a.4.4 0 0 0-.099-.281.335.335 0 0 0-.259-.109.328.328 0 0 0-.281.141.445.445 0 0 0-.096.265c0 .064.015.109.046.134.031.025.085.038.162.038zm3.693-1.156c.37 0 .684.094.942.281.136.1.232.215.286.343.054.129.081.306.081.532l-.006.476c0 .33.023.544.07.642.023.047.046.077.067.089a.41.41 0 0 0 .134.035c.068.011.102.055.102.134a.54.54 0 0 1-.123.319 1.024 1.024 0 0 1-.318.278.975.975 0 0 1-.501.141.659.659 0 0 1-.53-.23c-.045-.055-.086-.083-.125-.083-.043 0-.099.027-.169.08a1.202 1.202 0 0 1-.725.233c-.279 0-.505-.06-.677-.179a.842.842 0 0 1-.268-.308.85.85 0 0 1-.099-.398c0-.221.089-.417.268-.588.279-.268.696-.403 1.252-.406.123 0 .201-.012.233-.037.032-.024.048-.081.048-.171 0-.226-.023-.389-.07-.49-.047-.101-.123-.152-.23-.152a.27.27 0 0 0-.171.058c-.05.038-.112.109-.187.211-.19.27-.387.406-.594.406a.356.356 0 0 1-.255-.093.318.318 0 0 1-.099-.243c0-.102.041-.204.123-.307.082-.102.193-.192.334-.268a2.557 2.557 0 0 1 1.207-.305zm-.214 1.849a.317.317 0 0 0-.244.115.397.397 0 0 0-.104.275c0 .102.024.185.073.248a.234.234 0 0 0 .195.094c.17 0 .255-.144.255-.431 0-.117-.012-.196-.037-.236-.024-.042-.07-.063-.138-.065zm3.33-1.846c.106 0 .28.023.521.07a.685.685 0 0 0 .121.013.797.797 0 0 0 .211-.057.357.357 0 0 1 .125-.029c.098 0 .197.063.297.188.081.1.147.21.198.329a.81.81 0 0 1 .077.31.28.28 0 0 1-.089.212.315.315 0 0 1-.224.085.375.375 0 0 1-.2-.054 2.06 2.06 0 0 1-.283-.24c-.136-.132-.249-.198-.339-.198a.214.214 0 0 0-.155.065.21.21 0 0 0-.065.155c0 .104.1.202.3.294.36.162.636.339.827.53.162.162.243.36.243.594 0 .296-.13.543-.39.741a1.307 1.307 0 0 1-.821.259c-.083 0-.234-.014-.453-.041a7.38 7.38 0 0 0-.348-.035.505.505 0 0 0-.096.01 1.244 1.244 0 0 1-.134.013.342.342 0 0 1-.236-.077 1.107 1.107 0 0 1-.243-.372 1.111 1.111 0 0 1-.112-.436c0-.196.077-.294.23-.294.06 0 .114.02.164.059.05.039.155.144.315.315.087.094.16.158.217.193a.348.348 0 0 0 .185.053c.07 0 .127-.019.169-.056a.187.187 0 0 0 .064-.149c0-.096-.082-.183-.246-.262-.343-.168-.59-.342-.742-.521a.928.928 0 0 1-.228-.62c0-.253.078-.472.233-.655.221-.261.524-.392.907-.392zm4.994 1.571l-.422 1.159a4.405 4.405 0 0 1-.315.704 2.064 2.064 0 0 1-.359.465c-.277.264-.61.396-1 .396-.315 0-.571-.083-.766-.249a.613.613 0 0 1-.227-.489c0-.164.053-.302.158-.414a.512.512 0 0 1 .388-.168c.153 0 .277.051.37.153a.418.418 0 0 1 .089.125c.015.036.037.116.067.24.023.094.077.141.16.141a.204.204 0 0 0 .166-.086.336.336 0 0 0 .067-.214c0-.1-.055-.267-.166-.501l-.77-1.638a1.506 1.506 0 0 0-.182-.319.908.908 0 0 0-.268-.156.234.234 0 0 1-.11-.101.274.274 0 0 1-.046-.145c0-.189.188-.318.565-.386.251-.045.538-.067.859-.067.226 0 .403.023.533.07.175.062.262.167.262.316a.35.35 0 0 1-.073.188.332.332 0 0 0-.07.182c0 .051.011.104.034.16.022.055.07.149.142.281.081.149.152.224.214.224.066 0 .134-.065.204-.196a.802.802 0 0 0 .105-.378.357.357 0 0 0-.08-.24c-.081-.096-.121-.178-.121-.246 0-.109.072-.195.217-.26.145-.065.338-.097.581-.097.451 0 .677.109.677.326a.263.263 0 0 1-.069.19.658.658 0 0 1-.251.136.49.49 0 0 0-.243.192c-.091.139-.199.374-.32.702zm3.189-2.816c.238 0 .481.021.728.064.202.034.347.081.434.141.087.06.131.142.131.246a.23.23 0 0 1-.048.155.715.715 0 0 1-.208.136c-.123.064-.194.139-.212.225s-.035.421-.05 1.004c-.006.564-.012.903-.018 1.016a2.208 2.208 0 0 1-.04.329c-.062.311-.186.555-.374.731-.153.145-.35.259-.591.342a2.316 2.316 0 0 1-.76.125 2.81 2.81 0 0 1-.711-.093 2.26 2.26 0 0 1-.618-.255.975.975 0 0 1-.345-.362.985.985 0 0 1-.128-.487c0-.213.067-.389.201-.529a.672.672 0 0 1 .505-.209c.198 0 .366.059.505.176a.56.56 0 0 1 .208.441c0 .045-.013.119-.038.224a.38.38 0 0 0-.006.07.21.21 0 0 0 .073.166.285.285 0 0 0 .195.064.4.4 0 0 0 .345-.192c.087-.128.131-.296.131-.505l-.003-.291-.006-.782a20.503 20.503 0 0 0-.043-.838.438.438 0 0 0-.072-.206.28.28 0 0 0-.085-.083 1.304 1.304 0 0 0-.2-.061.217.217 0 0 1-.131-.089.259.259 0 0 1-.054-.156c0-.115.045-.207.136-.276.09-.069.238-.125.442-.168a3.3 3.3 0 0 1 .707-.073zm4.155 2.995h-1.501c-.066 0-.099.029-.099.086 0 .138.075.269.225.391.15.122.311.184.484.184.102 0 .216-.02.34-.059.125-.039.227-.088.308-.145.072-.051.13-.077.172-.077.055 0 .11.034.163.102a.34.34 0 0 1 .08.211c0 .153-.096.301-.287.444-.339.253-.729.38-1.172.38-.447 0-.822-.13-1.124-.39a1.616 1.616 0 0 1-.552-1.223c0-.358.109-.679.326-.964.187-.247.426-.431.715-.552.217-.092.452-.137.706-.137.404 0 .748.115 1.032.345.143.115.258.251.345.409.1.179.15.353.15.524a.617.617 0 0 1-.086.34c-.059.087-.133.131-.225.131zm-1.418-.597h.323c.136 0 .204-.063.204-.188a.4.4 0 0 0-.099-.281.335.335 0 0 0-.259-.109.328.328 0 0 0-.281.141.445.445 0 0 0-.096.265c0 .064.015.109.046.134.032.025.086.038.162.038zm3.761-.316v1.079c0 .128.031.232.094.313a.292.292 0 0 0 .241.121c.083 0 .193-.038.329-.115a.187.187 0 0 1 .096-.029c.051 0 .098.031.141.093a.352.352 0 0 1 .063.202c0 .132-.072.259-.217.38-.302.258-.669.386-1.099.386-.341 0-.614-.096-.821-.289-.207-.193-.31-.447-.31-.762v-1.475c0-.049-.006-.079-.018-.091-.012-.012-.042-.018-.091-.018h-.329c-.062 0-.101-.01-.118-.03-.017-.02-.026-.068-.026-.142v-.141c.002-.064.027-.111.073-.141l1.463-.92a.286.286 0 0 1 .134-.029h.259c.053 0 .089.012.107.037.018.024.027.073.027.145v.431c0 .064.01.105.03.125.02.019.063.029.129.029h.591c.079 0 .13.014.153.043.023.029.035.09.035.184v.188c0 .102-.015.173-.045.212-.03.039-.084.059-.163.059h-.578c-.06 0-.1.011-.121.032-.019.023-.029.063-.029.123z" }) + ] + } + ); +}); + +export { SiEasyjet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.cjs new file mode 100644 index 000000000..dc53586da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E53238"; +const SiEbay = React__namespace.forwardRef(function SiEbay2({ title = "eBay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.056 12.132v-4.92h1.2v3.026c.59-.703 1.402-.906 2.202-.906 1.34 0 2.828.904 2.828 2.855 0 .233-.015.457-.06.668.24-.953 1.274-1.305 2.896-1.344.51-.018 1.095-.018 1.56-.018v-.135c0-.885-.556-1.244-1.53-1.244-.72 0-1.245.3-1.305.81h-1.275c.136-1.29 1.5-1.62 2.686-1.62 1.064 0 1.995.27 2.415 1.02l-.436-.84h1.41l2.055 4.125 2.055-4.126H24l-3.72 7.305h-1.346l1.07-2.04-2.33-4.38c.13.255.2.555.2.93v2.46c0 .346.01.69.04 1.005H16.8a6.543 6.543 0 01-.046-.765c-.603.734-1.32.96-2.32.96-1.48 0-2.272-.78-2.272-1.695 0-.15.015-.284.037-.405-.3 1.246-1.36 2.086-2.767 2.086-.87 0-1.694-.315-2.2-.93 0 .24-.015.494-.04.734h-1.18c.02-.39.04-.855.04-1.245v-1.05h-4.83c.065 1.095.818 1.74 1.853 1.74.718 0 1.355-.3 1.568-.93h1.24c-.24 1.29-1.61 1.725-2.79 1.725C.95 15.009 0 13.822 0 12.232c0-1.754.982-2.91 3.116-2.91 1.688 0 2.93.886 2.94 2.806v.005zm9.137.183c-1.095.034-1.77.233-1.77.95 0 .465.36.97 1.305.97 1.26 0 1.935-.69 1.935-1.814v-.13c-.45 0-.99.006-1.484.022h.012zm-6.06 1.875c1.11 0 1.876-.806 1.876-2.02s-.768-2.02-1.893-2.02c-1.11 0-1.89.806-1.89 2.02s.765 2.02 1.875 2.02h.03zm-4.35-2.514c-.044-1.125-.854-1.546-1.725-1.546-.944 0-1.694.474-1.815 1.546z" }) + ] + } + ); +}); + +exports.default = SiEbay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.d.ts new file mode 100644 index 000000000..6f6db3012 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E53238"; +declare const SiEbay: IconType; +export { SiEbay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.mjs new file mode 100644 index 000000000..4c74abdfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEbay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E53238"; +const SiEbay = React.forwardRef(function SiEbay2({ title = "eBay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.056 12.132v-4.92h1.2v3.026c.59-.703 1.402-.906 2.202-.906 1.34 0 2.828.904 2.828 2.855 0 .233-.015.457-.06.668.24-.953 1.274-1.305 2.896-1.344.51-.018 1.095-.018 1.56-.018v-.135c0-.885-.556-1.244-1.53-1.244-.72 0-1.245.3-1.305.81h-1.275c.136-1.29 1.5-1.62 2.686-1.62 1.064 0 1.995.27 2.415 1.02l-.436-.84h1.41l2.055 4.125 2.055-4.126H24l-3.72 7.305h-1.346l1.07-2.04-2.33-4.38c.13.255.2.555.2.93v2.46c0 .346.01.69.04 1.005H16.8a6.543 6.543 0 01-.046-.765c-.603.734-1.32.96-2.32.96-1.48 0-2.272-.78-2.272-1.695 0-.15.015-.284.037-.405-.3 1.246-1.36 2.086-2.767 2.086-.87 0-1.694-.315-2.2-.93 0 .24-.015.494-.04.734h-1.18c.02-.39.04-.855.04-1.245v-1.05h-4.83c.065 1.095.818 1.74 1.853 1.74.718 0 1.355-.3 1.568-.93h1.24c-.24 1.29-1.61 1.725-2.79 1.725C.95 15.009 0 13.822 0 12.232c0-1.754.982-2.91 3.116-2.91 1.688 0 2.93.886 2.94 2.806v.005zm9.137.183c-1.095.034-1.77.233-1.77.95 0 .465.36.97 1.305.97 1.26 0 1.935-.69 1.935-1.814v-.13c-.45 0-.99.006-1.484.022h.012zm-6.06 1.875c1.11 0 1.876-.806 1.876-2.02s-.768-2.02-1.893-2.02c-1.11 0-1.89.806-1.89 2.02s.765 2.02 1.875 2.02h.03zm-4.35-2.514c-.044-1.125-.854-1.546-1.725-1.546-.944 0-1.694.474-1.815 1.546z" }) + ] + } + ); +}); + +export { SiEbay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.cjs new file mode 100644 index 000000000..d170440ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BE2323"; +const SiEbox = React__namespace.forwardRef(function SiEbox2({ title = "EBOX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.939 14.973 10.97 6.4V24L.94 17.6v-2.626zm22.123 0v2.626l-10.971 6.4v-2.626l10.97-6.401ZM.939 10.66l10.97 6.4v2.627l-7.223-4.214-1.068.622-2.253-1.313 1.07-.623-1.496-.873V10.66zm22.123 0v2.626l-1.496.873 1.07.624-2.253 1.313-1.07-.623-7.224 4.214V17.06l10.972-6.4ZM.939 6.347l10.97 6.4v2.627l-3.525-2.057-1.067.622-2.252-1.314 1.067-.622-1.429-.833-1.066.622-2.253-1.314 1.068-.622-1.514-.883Zm22.123 0v2.626l-1.514.883 1.07.622-2.254 1.315-1.068-.623-1.428.833 1.068.622-2.252 1.314-1.07-.622-3.525 2.057v-2.627l10.972-6.4ZM12 8.584l3.236 1.885-2.252 1.314-.983-.573-.982.573-2.252-1.314 3.235-1.885Zm0-4.293 6.916 4.03-2.252 1.315L12 6.918 7.338 9.635 5.085 8.321ZM12 0l10.597 6.175-2.252 1.314L12 2.627 3.657 7.489 1.405 6.175 12 0Z" }) + ] + } + ); +}); + +exports.default = SiEbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.d.ts new file mode 100644 index 000000000..d90dc8f51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BE2323"; +declare const SiEbox: IconType; +export { SiEbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.mjs new file mode 100644 index 000000000..4c769cf37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BE2323"; +const SiEbox = React.forwardRef(function SiEbox2({ title = "EBOX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.939 14.973 10.97 6.4V24L.94 17.6v-2.626zm22.123 0v2.626l-10.971 6.4v-2.626l10.97-6.401ZM.939 10.66l10.97 6.4v2.627l-7.223-4.214-1.068.622-2.253-1.313 1.07-.623-1.496-.873V10.66zm22.123 0v2.626l-1.496.873 1.07.624-2.253 1.313-1.07-.623-7.224 4.214V17.06l10.972-6.4ZM.939 6.347l10.97 6.4v2.627l-3.525-2.057-1.067.622-2.252-1.314 1.067-.622-1.429-.833-1.066.622-2.253-1.314 1.068-.622-1.514-.883Zm22.123 0v2.626l-1.514.883 1.07.622-2.254 1.315-1.068-.623-1.428.833 1.068.622-2.252 1.314-1.07-.622-3.525 2.057v-2.627l10.972-6.4ZM12 8.584l3.236 1.885-2.252 1.314-.983-.573-.982.573-2.252-1.314 3.235-1.885Zm0-4.293 6.916 4.03-2.252 1.315L12 6.918 7.338 9.635 5.085 8.321ZM12 0l10.597 6.175-2.252 1.314L12 2.627 3.657 7.489 1.405 6.175 12 0Z" }) + ] + } + ); +}); + +export { SiEbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.cjs new file mode 100644 index 000000000..3c98eca4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1464"; +const SiEclipseadoptium = React__namespace.forwardRef(function SiEclipseadoptium2({ title = "Eclipse Adoptium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.98 14.013-2.632 5.729 6.813 3.058c-1.55-2.754-2.82-5.852-4.18-8.787Zm11.033 4.645L16.277 4.064a3.952 3.952 0 0 1-.387 1.471l-3.6 7.82 3.871 8.361a3.76 3.76 0 0 0 3.445 2.245 3.734 3.734 0 0 0 3.755-3.755c0-.542-.155-1.045-.348-1.548zM15.735 3.755A3.734 3.734 0 0 0 11.982 0C10.51 0 9.27.852 8.65 2.052 6.119 7.582 3.544 13.127.988 18.658c-.232.464-.348 1.006-.348 1.587A3.734 3.734 0 0 0 4.394 24a3.76 3.76 0 0 0 3.445-2.245l7.587-16.413c.193-.503.31-1.045.31-1.587z" }) + ] + } + ); +}); + +exports.default = SiEclipseadoptium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.d.ts new file mode 100644 index 000000000..542c3e17a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1464"; +declare const SiEclipseadoptium: IconType; +export { SiEclipseadoptium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.mjs new file mode 100644 index 000000000..32c5ce663 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseadoptium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1464"; +const SiEclipseadoptium = React.forwardRef(function SiEclipseadoptium2({ title = "Eclipse Adoptium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.98 14.013-2.632 5.729 6.813 3.058c-1.55-2.754-2.82-5.852-4.18-8.787Zm11.033 4.645L16.277 4.064a3.952 3.952 0 0 1-.387 1.471l-3.6 7.82 3.871 8.361a3.76 3.76 0 0 0 3.445 2.245 3.734 3.734 0 0 0 3.755-3.755c0-.542-.155-1.045-.348-1.548zM15.735 3.755A3.734 3.734 0 0 0 11.982 0C10.51 0 9.27.852 8.65 2.052 6.119 7.582 3.544 13.127.988 18.658c-.232.464-.348 1.006-.348 1.587A3.734 3.734 0 0 0 4.394 24a3.76 3.76 0 0 0 3.445-2.245l7.587-16.413c.193-.503.31-1.045.31-1.587z" }) + ] + } + ); +}); + +export { SiEclipseadoptium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.cjs new file mode 100644 index 000000000..9bf58dcfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#525C86"; +const SiEclipseche = React__namespace.forwardRef(function SiEclipseche2({ title = "Eclipse Che", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L1.604 6.021v7.452L12 7.494l3.941 2.254 6.455-3.727zm10.396 10.527L12 16.506l-7.334-4.217-3.062 1.76v3.93L12 24l10.396-6.021z" }) + ] + } + ); +}); + +exports.default = SiEclipseche; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.d.ts new file mode 100644 index 000000000..f08520eff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#525C86"; +declare const SiEclipseche: IconType; +export { SiEclipseche as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.mjs new file mode 100644 index 000000000..e380f1290 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseche.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#525C86"; +const SiEclipseche = React.forwardRef(function SiEclipseche2({ title = "Eclipse Che", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L1.604 6.021v7.452L12 7.494l3.941 2.254 6.455-3.727zm10.396 10.527L12 16.506l-7.334-4.217-3.062 1.76v3.93L12 24l10.396-6.021z" }) + ] + } + ); +}); + +export { SiEclipseche as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.cjs new file mode 100644 index 000000000..254312c30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C2255"; +const SiEclipseide = React__namespace.forwardRef(function SiEclipseide2({ title = "Eclipse IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.109.024a15.58 15.58 0 00-.737.023C6.728.361 3.469 2.517 1.579 5.86A12.53 12.53 0 00.021 11.11c-.04.517-.02 1.745.035 2.208.306 2.682 1.353 5.06 3.07 6.965 1.962 2.173 4.586 3.467 7.437 3.663.42.032 1.043.04 1.02.012a2.404 2.404 0 00-.338-.074c-1.674-.33-3.388-1.13-4.777-2.232a12.344 12.344 0 01-2.45-2.636A12.387 12.387 0 011.884 12.5a12.413 12.413 0 01.56-4.274c.785-2.522 2.37-4.726 4.475-6.228A11.073 11.073 0 0111.156.122l.443-.098zm1.474.51C10.646.65 8.807 1.299 7.301 2.4 5.426 3.77 3.995 5.644 3.22 7.746c-.145.397-.282.82-.282.879 0 .012 3.828.024 10.31.024 8.463 0 10.315-.008 10.315-.036 0-.047-.153-.525-.283-.878-.153-.42-.576-1.31-.82-1.722-.4-.683-.91-1.373-1.474-1.992-1.65-1.82-3.593-2.934-5.82-3.334-.785-.141-1.8-.2-2.585-.153zM23.83 9.97c-.02 0-4.792 0-10.609.004l-10.573.008-.011.059c-.036.16-.134 1.081-.134 1.242 0 .028 1.785.032 10.746.032H24v-.075c0-.102-.07-.791-.106-1.054-.02-.16-.04-.216-.063-.216zm-10.573 2.635c-9.37-.004-10.73 0-10.742.035-.02.04.024.557.075.973.02.157.035.298.035.314 0 .027 2.137.035 10.624.035h10.624l.024-.188c.043-.326.102-.97.094-1.067l-.008-.094zm.003 2.718c-8.882 0-10.321.004-10.321.035 0 .02.054.208.12.42a11.122 11.122 0 002.072 3.741c.282.342.945 1.036 1.228 1.287 1.568 1.4 3.247 2.216 5.18 2.53.605.094.886.113 1.75.11.91 0 1.297-.032 2.023-.177 2.11-.416 3.914-1.451 5.53-3.17 1.267-1.348 2.106-2.76 2.628-4.41l.117-.366z" }) + ] + } + ); +}); + +exports.default = SiEclipseide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.d.ts new file mode 100644 index 000000000..9c6dbdb9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C2255"; +declare const SiEclipseide: IconType; +export { SiEclipseide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.mjs new file mode 100644 index 000000000..b8493db05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipseide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C2255"; +const SiEclipseide = React.forwardRef(function SiEclipseide2({ title = "Eclipse IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.109.024a15.58 15.58 0 00-.737.023C6.728.361 3.469 2.517 1.579 5.86A12.53 12.53 0 00.021 11.11c-.04.517-.02 1.745.035 2.208.306 2.682 1.353 5.06 3.07 6.965 1.962 2.173 4.586 3.467 7.437 3.663.42.032 1.043.04 1.02.012a2.404 2.404 0 00-.338-.074c-1.674-.33-3.388-1.13-4.777-2.232a12.344 12.344 0 01-2.45-2.636A12.387 12.387 0 011.884 12.5a12.413 12.413 0 01.56-4.274c.785-2.522 2.37-4.726 4.475-6.228A11.073 11.073 0 0111.156.122l.443-.098zm1.474.51C10.646.65 8.807 1.299 7.301 2.4 5.426 3.77 3.995 5.644 3.22 7.746c-.145.397-.282.82-.282.879 0 .012 3.828.024 10.31.024 8.463 0 10.315-.008 10.315-.036 0-.047-.153-.525-.283-.878-.153-.42-.576-1.31-.82-1.722-.4-.683-.91-1.373-1.474-1.992-1.65-1.82-3.593-2.934-5.82-3.334-.785-.141-1.8-.2-2.585-.153zM23.83 9.97c-.02 0-4.792 0-10.609.004l-10.573.008-.011.059c-.036.16-.134 1.081-.134 1.242 0 .028 1.785.032 10.746.032H24v-.075c0-.102-.07-.791-.106-1.054-.02-.16-.04-.216-.063-.216zm-10.573 2.635c-9.37-.004-10.73 0-10.742.035-.02.04.024.557.075.973.02.157.035.298.035.314 0 .027 2.137.035 10.624.035h10.624l.024-.188c.043-.326.102-.97.094-1.067l-.008-.094zm.003 2.718c-8.882 0-10.321.004-10.321.035 0 .02.054.208.12.42a11.122 11.122 0 002.072 3.741c.282.342.945 1.036 1.228 1.287 1.568 1.4 3.247 2.216 5.18 2.53.605.094.886.113 1.75.11.91 0 1.297-.032 2.023-.177 2.11-.416 3.914-1.451 5.53-3.17 1.267-1.348 2.106-2.76 2.628-4.41l.117-.366z" }) + ] + } + ); +}); + +export { SiEclipseide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.cjs new file mode 100644 index 000000000..43c59513c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC390E"; +const SiEclipsejetty = React__namespace.forwardRef(function SiEclipsejetty2({ title = "Eclipse Jetty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.9847 2.7514a.842.842 0 00-.8203.6525l-.617 2.673a.842.842 0 00.023.4591.842.842 0 00-.222.403L.986 17.1715c-.0428.0033-.0642.0065-.1198.0087a.842.842 0 00-.8086.821l-.0575 2.3853a.842.842 0 00.8446.8622c1.3542-.0049 2.7158-.0093 4.0669-.0156.543-.0142 1.0992-.2356 1.5074-.6331.4083-.3976.6578-.921.842-1.548a.8442.8442 0 00.0127-.048l.093-.4032a.842.842 0 00.8083.6073h2.5182a.842.842 0 00.763-.486l6.8882-14.773c.26-.558-.1472-1.1974-.7628-1.1976h-2.5181a.842.842 0 00-.763.4862L12.8664 6.313a.842.842 0 00-.209-.0265h-2.4478l.578-2.5039c.1216-.5275-.279-1.031-.8203-1.0312zm15.6543 0a.842.842 0 00-.763.4862l-6.8883 14.7728c-.26.5581.1473 1.1974.763 1.1976h2.518a.842.842 0 00.763-.486l6.8884-14.773c.26-.5581-.1473-1.1974-.763-1.1976zm-15.6543.842h4.9827l-.617 2.6729H4.3679zm10.0789 0h2.518l-6.8883 14.7728H8.1751l.3446-.739h1.9084a.842.842 0 00.8202-.6524l.856-3.7076c.1216-.5275-.279-1.031-.8202-1.0312h-.2506l.2603-.5581h.5077a.842.842 0 00.8202-.6526l.856-3.7075a.842.842 0 00.008-.3403zm5.5754 0h2.5182l-6.8885 14.7728h-2.518zM4.1685 7.1284h2.6244l-.8122 3.5182c-.1217.5275.2788 1.0311.8202 1.0313H8.101l-.129.558H6.2835a.842.842 0 00-.8203.6525l-.856 3.7076c-.1215.5275.279 1.031.8202 1.0312h1.3003l-.2741 1.1874c-.321 1.0921-.8075 1.5347-1.5882 1.5778l-4.0236.0144.0575-2.3855c.4885-.0192.7073.0034.851-.4182zm3.4882 0h5.0008l-.8559 3.7077H6.801zm1.3083 4.5495h1.4l-.2604.558H8.8361zm-2.6816 1.3999h5.0008l-.856 3.7076H5.4272Z" }) + ] + } + ); +}); + +exports.default = SiEclipsejetty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.d.ts new file mode 100644 index 000000000..73fd975fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC390E"; +declare const SiEclipsejetty: IconType; +export { SiEclipsejetty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.mjs new file mode 100644 index 000000000..484e61fa8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsejetty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC390E"; +const SiEclipsejetty = React.forwardRef(function SiEclipsejetty2({ title = "Eclipse Jetty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.9847 2.7514a.842.842 0 00-.8203.6525l-.617 2.673a.842.842 0 00.023.4591.842.842 0 00-.222.403L.986 17.1715c-.0428.0033-.0642.0065-.1198.0087a.842.842 0 00-.8086.821l-.0575 2.3853a.842.842 0 00.8446.8622c1.3542-.0049 2.7158-.0093 4.0669-.0156.543-.0142 1.0992-.2356 1.5074-.6331.4083-.3976.6578-.921.842-1.548a.8442.8442 0 00.0127-.048l.093-.4032a.842.842 0 00.8083.6073h2.5182a.842.842 0 00.763-.486l6.8882-14.773c.26-.558-.1472-1.1974-.7628-1.1976h-2.5181a.842.842 0 00-.763.4862L12.8664 6.313a.842.842 0 00-.209-.0265h-2.4478l.578-2.5039c.1216-.5275-.279-1.031-.8203-1.0312zm15.6543 0a.842.842 0 00-.763.4862l-6.8883 14.7728c-.26.5581.1473 1.1974.763 1.1976h2.518a.842.842 0 00.763-.486l6.8884-14.773c.26-.5581-.1473-1.1974-.763-1.1976zm-15.6543.842h4.9827l-.617 2.6729H4.3679zm10.0789 0h2.518l-6.8883 14.7728H8.1751l.3446-.739h1.9084a.842.842 0 00.8202-.6524l.856-3.7076c.1216-.5275-.279-1.031-.8202-1.0312h-.2506l.2603-.5581h.5077a.842.842 0 00.8202-.6526l.856-3.7075a.842.842 0 00.008-.3403zm5.5754 0h2.5182l-6.8885 14.7728h-2.518zM4.1685 7.1284h2.6244l-.8122 3.5182c-.1217.5275.2788 1.0311.8202 1.0313H8.101l-.129.558H6.2835a.842.842 0 00-.8203.6525l-.856 3.7076c-.1215.5275.279 1.031.8202 1.0312h1.3003l-.2741 1.1874c-.321 1.0921-.8075 1.5347-1.5882 1.5778l-4.0236.0144.0575-2.3855c.4885-.0192.7073.0034.851-.4182zm3.4882 0h5.0008l-.8559 3.7077H6.801zm1.3083 4.5495h1.4l-.2604.558H8.8361zm-2.6816 1.3999h5.0008l-.856 3.7076H5.4272Z" }) + ] + } + ); +}); + +export { SiEclipsejetty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.cjs new file mode 100644 index 000000000..6479cfbf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C5280"; +const SiEclipsemosquitto = React__namespace.forwardRef(function SiEclipsemosquitto2({ title = "Eclipse Mosquitto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.353 11.424c0 2.637.964 5.105 2.636 7.013l-1.007.903A11.968 11.968 0 010 11.424C0 8.065 1.38 5.029 3.604 2.85l.05.045L6.637 5.57a7.942 7.942 0 00-1.433 9.963l1.03-.923a6.59 6.59 0 011.416-8.132l1.02.915.909.814.941.844a2.778 2.778 0 00-1.311 2.367c0 1.23.795 2.273 1.899 2.646l.095 1.297a4.024 4.024 0 01-2.483-6.27l-.9-.809-.004-.003a5.233 5.233 0 00.205 6.546l-3.023 2.71a9.291 9.291 0 01-.21-11.97L3.777 4.66a10.599 10.599 0 00-2.407 6.14l-.006.008.005.004c-.011.203-.017.406-.017.612zm11.54 2.639a2.793 2.793 0 00.588-5.013l.941-.844.908-.814 1.021-.915a6.59 6.59 0 011.417 8.132l1.029.923a7.942 7.942 0 00-1.433-9.963l2.981-2.673.05-.045A11.964 11.964 0 0124 11.424c0 2.98-1.095 5.769-2.982 7.916l-1.007-.903a10.61 10.61 0 002.619-7.625l.005-.004-.006-.007a10.598 10.598 0 00-2.407-6.141l-1.008.904a9.291 9.291 0 01-.211 11.97l-3.023-2.71a5.233 5.233 0 00.205-6.546l-.004.003-.9.808a4.024 4.024 0 01-2.482 6.27zM12 21.149l.335-4.571.271-3.712a1.56 1.56 0 10-1.212 0l.271 3.712Z" }) + ] + } + ); +}); + +exports.default = SiEclipsemosquitto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.d.ts new file mode 100644 index 000000000..fd14afe08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C5280"; +declare const SiEclipsemosquitto: IconType; +export { SiEclipsemosquitto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.mjs new file mode 100644 index 000000000..e2a356390 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsemosquitto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C5280"; +const SiEclipsemosquitto = React.forwardRef(function SiEclipsemosquitto2({ title = "Eclipse Mosquitto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.353 11.424c0 2.637.964 5.105 2.636 7.013l-1.007.903A11.968 11.968 0 010 11.424C0 8.065 1.38 5.029 3.604 2.85l.05.045L6.637 5.57a7.942 7.942 0 00-1.433 9.963l1.03-.923a6.59 6.59 0 011.416-8.132l1.02.915.909.814.941.844a2.778 2.778 0 00-1.311 2.367c0 1.23.795 2.273 1.899 2.646l.095 1.297a4.024 4.024 0 01-2.483-6.27l-.9-.809-.004-.003a5.233 5.233 0 00.205 6.546l-3.023 2.71a9.291 9.291 0 01-.21-11.97L3.777 4.66a10.599 10.599 0 00-2.407 6.14l-.006.008.005.004c-.011.203-.017.406-.017.612zm11.54 2.639a2.793 2.793 0 00.588-5.013l.941-.844.908-.814 1.021-.915a6.59 6.59 0 011.417 8.132l1.029.923a7.942 7.942 0 00-1.433-9.963l2.981-2.673.05-.045A11.964 11.964 0 0124 11.424c0 2.98-1.095 5.769-2.982 7.916l-1.007-.903a10.61 10.61 0 002.619-7.625l.005-.004-.006-.007a10.598 10.598 0 00-2.407-6.141l-1.008.904a9.291 9.291 0 01-.211 11.97l-3.023-2.71a5.233 5.233 0 00.205-6.546l-.004.003-.9.808a4.024 4.024 0 01-2.482 6.27zM12 21.149l.335-4.571.271-3.712a1.56 1.56 0 10-1.212 0l.271 3.712Z" }) + ] + } + ); +}); + +export { SiEclipsemosquitto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.cjs new file mode 100644 index 000000000..425332710 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#782A90"; +const SiEclipsevertdotx = React__namespace.forwardRef(function SiEclipsevertdotx2({ title = "Eclipse Vert.x", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.356.01C1.566.01.027 1.269 0 2.938v1.436h2.515l3.861 8.896 4.028-8.791h5.078l2.182 3.986 2.56-3.986H24V2.946C24 1.281 22.44.011 20.645.011zM24 5.668l-8.874 13.56H12.44c-.02-.629-.188-1.237-.503-1.74l3.609-5.708-2.744-4.36-3.829 8.42-.036-.002a3.443 3.443 0 0 0-3.434 3.433c0 .021.003.042.004.063h-.263L0 7.5v13.553c0 1.665 1.56 2.935 3.356 2.935h17.289c1.812 0 3.355-1.276 3.355-2.935v-1.826h-3.587l-1.594-2.874 2.224-3.378L24 17.638zm-15.066 11.5a2.102 2.102 0 0 1 2.109 2.103 2.106 2.106 0 1 1-4.212 0c0-1.16.937-2.1 2.103-2.103Z" }) + ] + } + ); +}); + +exports.default = SiEclipsevertdotx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.d.ts new file mode 100644 index 000000000..3fd6c51d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#782A90"; +declare const SiEclipsevertdotx: IconType; +export { SiEclipsevertdotx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.mjs new file mode 100644 index 000000000..4a8e86c13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEclipsevertdotx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#782A90"; +const SiEclipsevertdotx = React.forwardRef(function SiEclipsevertdotx2({ title = "Eclipse Vert.x", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.356.01C1.566.01.027 1.269 0 2.938v1.436h2.515l3.861 8.896 4.028-8.791h5.078l2.182 3.986 2.56-3.986H24V2.946C24 1.281 22.44.011 20.645.011zM24 5.668l-8.874 13.56H12.44c-.02-.629-.188-1.237-.503-1.74l3.609-5.708-2.744-4.36-3.829 8.42-.036-.002a3.443 3.443 0 0 0-3.434 3.433c0 .021.003.042.004.063h-.263L0 7.5v13.553c0 1.665 1.56 2.935 3.356 2.935h17.289c1.812 0 3.355-1.276 3.355-2.935v-1.826h-3.587l-1.594-2.874 2.224-3.378L24 17.638zm-15.066 11.5a2.102 2.102 0 0 1 2.109 2.103 2.106 2.106 0 1 1-4.212 0c0-1.16.937-2.1 2.103-2.103Z" }) + ] + } + ); +}); + +export { SiEclipsevertdotx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.cjs new file mode 100644 index 000000000..1f5779018 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008009"; +const SiEcosia = React__namespace.forwardRef(function SiEcosia2({ title = "Ecosia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.198 6.818H8.786v10.48h6.412v-3.342h-3.98v-1.262H13.8V11.42h-2.584v-1.261h3.981zM11.972.06A12.003 12.003 0 0 0 0 12.064a12.003 12.003 0 0 0 10.083 11.848c.068-1.277.196-2.723.434-3.652v-.014c0-.005 0-.007-.01-.012 0-.005-.01-.007-.012-.009 0-.002-.01-.002-.014-.002h-.356c-2.307 0-5.943-.333-6.916-3.45-1.458-4.642 2.025-6.314 3.484-4.97 0 .004.012.008.019.008.01 0 .014 0 .02-.005.01-.005.013-.009.015-.016v-.021c-.322-.945-2.148-6.867 2.64-8.496 4.08-1.369 8.07 1.491 7.461 5.265v.017c0 .007.01.012.012.014 0 .002.012.005.016.005 0 0 .012-.002.016-.005.298-.246 1.603-1.186 2.919-.148 1.247.982.844 3.73-1.627 5.003-.01.002-.014.007-.02.014v.023c0 .01.01.014.015.02.01.004.016.004.023.001 1.596-.239 4.316 1.193 2.11 4.375-1.447 2.1-4.71 2.365-6.168 2.365h-1.071s-.01 0-.012.002c0 .002-.01.005-.012.007 0 .002 0 .005-.01.009v.012c-.021.751.331 2.304.693 3.688A12.003 12.003 0 0 0 24 12.063 12.003 12.003 0 0 0 11.997.06a12.003 12.003 0 0 0-.03 0z" }) + ] + } + ); +}); + +exports.default = SiEcosia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.d.ts new file mode 100644 index 000000000..0856f8e4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008009"; +declare const SiEcosia: IconType; +export { SiEcosia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.mjs new file mode 100644 index 000000000..38544ce81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEcosia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008009"; +const SiEcosia = React.forwardRef(function SiEcosia2({ title = "Ecosia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.198 6.818H8.786v10.48h6.412v-3.342h-3.98v-1.262H13.8V11.42h-2.584v-1.261h3.981zM11.972.06A12.003 12.003 0 0 0 0 12.064a12.003 12.003 0 0 0 10.083 11.848c.068-1.277.196-2.723.434-3.652v-.014c0-.005 0-.007-.01-.012 0-.005-.01-.007-.012-.009 0-.002-.01-.002-.014-.002h-.356c-2.307 0-5.943-.333-6.916-3.45-1.458-4.642 2.025-6.314 3.484-4.97 0 .004.012.008.019.008.01 0 .014 0 .02-.005.01-.005.013-.009.015-.016v-.021c-.322-.945-2.148-6.867 2.64-8.496 4.08-1.369 8.07 1.491 7.461 5.265v.017c0 .007.01.012.012.014 0 .002.012.005.016.005 0 0 .012-.002.016-.005.298-.246 1.603-1.186 2.919-.148 1.247.982.844 3.73-1.627 5.003-.01.002-.014.007-.02.014v.023c0 .01.01.014.015.02.01.004.016.004.023.001 1.596-.239 4.316 1.193 2.11 4.375-1.447 2.1-4.71 2.365-6.168 2.365h-1.071s-.01 0-.012.002c0 .002-.01.005-.012.007 0 .002 0 .005-.01.009v.012c-.021.751.331 2.304.693 3.688A12.003 12.003 0 0 0 24 12.063 12.003 12.003 0 0 0 11.997.06a12.003 12.003 0 0 0-.03 0z" }) + ] + } + ); +}); + +export { SiEcosia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.cjs new file mode 100644 index 000000000..2ad702aca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E384B"; +const SiEcovacs = React__namespace.forwardRef(function SiEcovacs2({ title = "Ecovacs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.066,19.071L19.065,19.07C17.256,20.88 14.755,22 11.994,22C9.233,22 6.732,20.88 4.924,19.07L4.924,19.071C4.743,18.89 4.492,18.779 4.217,18.779C3.956,18.779 3.722,18.879 3.543,19.041C3.343,19.223 3.217,19.485 3.217,19.779C3.217,20.049 3.325,20.295 3.499,20.475L3.51,20.485L3.521,20.496C5.692,22.661 8.686,24 11.994,24C15.3,24 18.295,22.662 20.466,20.498L20.48,20.484L20.491,20.472C20.665,20.293 20.772,20.048 20.772,19.779C20.772,19.485 20.645,19.223 20.445,19.041C20.267,18.879 20.031,18.779 19.773,18.779C19.496,18.779 19.247,18.89 19.066,19.071ZM15.394,14L11.395,14C10.29,14 9.395,13.105 9.395,12C9.395,10.896 10.29,10.001 11.395,10.001L15.394,10.001L16.794,8L11.395,8C9.185,8 7.394,9.791 7.394,12C7.394,14.209 9.185,16 11.395,16L16.794,16L15.394,14ZM14.994,11L14.963,11.001L14.963,11L11.994,11C11.441,11 10.995,11.448 10.995,12C10.995,12.553 11.441,13 11.994,13L14.963,13L14.963,12.998L14.994,13C15.546,13 15.994,12.553 15.994,12C15.994,11.448 15.546,11 14.994,11ZM11.977,0C8.68,0.003 5.69,1.339 3.523,3.497C3.342,3.677 3.228,3.926 3.228,4.202C3.227,4.496 3.353,4.758 3.553,4.941C3.73,5.103 3.966,5.204 4.225,5.205C4.501,5.206 4.751,5.094 4.933,4.915L4.933,4.914L4.934,4.913C6.748,3.107 9.25,1.994 12.011,2C14.772,2.007 17.27,3.13 19.075,4.945L19.075,4.944C19.256,5.125 19.505,5.239 19.781,5.24C20.041,5.24 20.277,5.14 20.455,4.978C20.656,4.796 20.783,4.535 20.783,4.242C20.784,3.965 20.673,3.716 20.493,3.536L20.492,3.534L20.491,3.533C18.325,1.357 15.328,0.007 12.015,0L11.977,0Z" }) + ] + } + ); +}); + +exports.default = SiEcovacs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.d.ts new file mode 100644 index 000000000..5c0e80589 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E384B"; +declare const SiEcovacs: IconType; +export { SiEcovacs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.mjs new file mode 100644 index 000000000..75a97c6ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEcovacs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E384B"; +const SiEcovacs = React.forwardRef(function SiEcovacs2({ title = "Ecovacs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.066,19.071L19.065,19.07C17.256,20.88 14.755,22 11.994,22C9.233,22 6.732,20.88 4.924,19.07L4.924,19.071C4.743,18.89 4.492,18.779 4.217,18.779C3.956,18.779 3.722,18.879 3.543,19.041C3.343,19.223 3.217,19.485 3.217,19.779C3.217,20.049 3.325,20.295 3.499,20.475L3.51,20.485L3.521,20.496C5.692,22.661 8.686,24 11.994,24C15.3,24 18.295,22.662 20.466,20.498L20.48,20.484L20.491,20.472C20.665,20.293 20.772,20.048 20.772,19.779C20.772,19.485 20.645,19.223 20.445,19.041C20.267,18.879 20.031,18.779 19.773,18.779C19.496,18.779 19.247,18.89 19.066,19.071ZM15.394,14L11.395,14C10.29,14 9.395,13.105 9.395,12C9.395,10.896 10.29,10.001 11.395,10.001L15.394,10.001L16.794,8L11.395,8C9.185,8 7.394,9.791 7.394,12C7.394,14.209 9.185,16 11.395,16L16.794,16L15.394,14ZM14.994,11L14.963,11.001L14.963,11L11.994,11C11.441,11 10.995,11.448 10.995,12C10.995,12.553 11.441,13 11.994,13L14.963,13L14.963,12.998L14.994,13C15.546,13 15.994,12.553 15.994,12C15.994,11.448 15.546,11 14.994,11ZM11.977,0C8.68,0.003 5.69,1.339 3.523,3.497C3.342,3.677 3.228,3.926 3.228,4.202C3.227,4.496 3.353,4.758 3.553,4.941C3.73,5.103 3.966,5.204 4.225,5.205C4.501,5.206 4.751,5.094 4.933,4.915L4.933,4.914L4.934,4.913C6.748,3.107 9.25,1.994 12.011,2C14.772,2.007 17.27,3.13 19.075,4.945L19.075,4.944C19.256,5.125 19.505,5.239 19.781,5.24C20.041,5.24 20.277,5.14 20.455,4.978C20.656,4.796 20.783,4.535 20.783,4.242C20.784,3.965 20.673,3.716 20.493,3.536L20.492,3.534L20.491,3.533C18.325,1.357 15.328,0.007 12.015,0L11.977,0Z" }) + ] + } + ); +}); + +export { SiEcovacs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.cjs new file mode 100644 index 000000000..8dd940501 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1B66B3"; +const SiEdeka = React__namespace.forwardRef(function SiEdeka2({ title = "EDEKA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.901 18.997h2.688v.699h-1.857v.297h1.857v.699h-1.857v.295h1.857v.698h-2.688zm-6.476 0h2.686v.699H5.253v.297h1.858v.699H5.253v.295h1.858v.698H4.425ZM17.996 19l-.92 2.685h.827l.182-.552h1.066l.172.552h.834L19.233 19Zm.617.593.319.91h-.635ZM14.076 19h.827v1.024L15.839 19h1.089l-1.055 1.144 1.144 1.541h-1.053l-.673-.914-.387.402v.512h-.828zm-6.459 0v2.685h1.59a1.344 1.344 0 0 0 0-2.685zm.827.71h.652a.6335.6335 0 1 1 0 1.267h-.65ZM4.432 2.318h15.136V6.32H9.104v1.563h10.463v4.004H9.104v1.56h10.463v4.004H4.432ZM2.116 0v24h19.768V0Zm.176.177h19.413v23.647H2.291Zm2.1364 18.8206h2.6852v.6988H5.2564v.2967h1.8572v.6989H5.2564v.2943h1.8572v.6988H4.4284Zm6.4758 0h2.6876v.6988h-1.857v.2967h1.857v.6989h-1.857v.2943h1.857v.6988h-2.6876zM17.998 19l-.9199 2.6855h.8281l.1817-.5527h1.0644l.172.5527h.8359l-.9239-2.6855zm.6172.5937.3184.9082h-.6348ZM14.078 19h.828v1.0243L15.8417 19h1.0889l-1.0554 1.144 1.144 1.5412H15.966l-.6725-.9142-.3877.402v.5122h-.828zM7.621 19v2.6855H9.209c.7395-.0023 1.3384-.6081 1.336-1.3476-.0025-.7347-.599-1.3355-1.336-1.3379Zm.8262.711h.6504c.3494 0 .6347.2814.6347.6308 0 .3494-.2853.6348-.6347.6348h-.6504ZM4.4345 2.317h15.1347v4.004H9.106v1.5627h10.463v4.0039H9.1062v1.5604h10.463v4.0039H4.4346Z" }) + ] + } + ); +}); + +exports.default = SiEdeka; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.d.ts new file mode 100644 index 000000000..ee5455cfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1B66B3"; +declare const SiEdeka: IconType; +export { SiEdeka as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.mjs new file mode 100644 index 000000000..3e976a6a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdeka.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1B66B3"; +const SiEdeka = React.forwardRef(function SiEdeka2({ title = "EDEKA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.901 18.997h2.688v.699h-1.857v.297h1.857v.699h-1.857v.295h1.857v.698h-2.688zm-6.476 0h2.686v.699H5.253v.297h1.858v.699H5.253v.295h1.858v.698H4.425ZM17.996 19l-.92 2.685h.827l.182-.552h1.066l.172.552h.834L19.233 19Zm.617.593.319.91h-.635ZM14.076 19h.827v1.024L15.839 19h1.089l-1.055 1.144 1.144 1.541h-1.053l-.673-.914-.387.402v.512h-.828zm-6.459 0v2.685h1.59a1.344 1.344 0 0 0 0-2.685zm.827.71h.652a.6335.6335 0 1 1 0 1.267h-.65ZM4.432 2.318h15.136V6.32H9.104v1.563h10.463v4.004H9.104v1.56h10.463v4.004H4.432ZM2.116 0v24h19.768V0Zm.176.177h19.413v23.647H2.291Zm2.1364 18.8206h2.6852v.6988H5.2564v.2967h1.8572v.6989H5.2564v.2943h1.8572v.6988H4.4284Zm6.4758 0h2.6876v.6988h-1.857v.2967h1.857v.6989h-1.857v.2943h1.857v.6988h-2.6876zM17.998 19l-.9199 2.6855h.8281l.1817-.5527h1.0644l.172.5527h.8359l-.9239-2.6855zm.6172.5937.3184.9082h-.6348ZM14.078 19h.828v1.0243L15.8417 19h1.0889l-1.0554 1.144 1.144 1.5412H15.966l-.6725-.9142-.3877.402v.5122h-.828zM7.621 19v2.6855H9.209c.7395-.0023 1.3384-.6081 1.336-1.3476-.0025-.7347-.599-1.3355-1.336-1.3379Zm.8262.711h.6504c.3494 0 .6347.2814.6347.6308 0 .3494-.2853.6348-.6347.6348h-.6504ZM4.4345 2.317h15.1347v4.004H9.106v1.5627h10.463v4.0039H9.1062v1.5604h10.463v4.0039H4.4346Z" }) + ] + } + ); +}); + +export { SiEdeka as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.cjs new file mode 100644 index 000000000..4d8be1c4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B47C2"; +const SiEdgeimpulse = React__namespace.forwardRef(function SiEdgeimpulse2({ title = "Edge Impulse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.008 10.287h4.51l1.348 3.53h-5.858c-.979 0-1.772-.79-1.772-1.766s.793-1.766 1.772-1.766v.002ZM.677 12.049a1.77 1.77 0 0 1 1.773-1.766h8.597a1.77 1.77 0 0 1 1.772 1.766c0 .976-.793 1.766-1.772 1.766H2.45c-.98 0-1.773-.79-1.773-1.766ZM24 19.613H4.448a2.515 2.515 0 0 1-1.93.899A2.514 2.514 0 0 1 0 18.002a2.514 2.514 0 0 1 2.518-2.509c.775 0 1.467.351 1.93.899h18.321L24 19.613ZM19.594 7.655H4.404a2.51 2.51 0 0 1-1.886.852A2.514 2.514 0 0 1 0 5.998a2.514 2.514 0 0 1 2.518-2.51c.797 0 1.506.371 1.967.946h13.878l1.231 3.221Z" }) + ] + } + ); +}); + +exports.default = SiEdgeimpulse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.d.ts new file mode 100644 index 000000000..b3fa684ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B47C2"; +declare const SiEdgeimpulse: IconType; +export { SiEdgeimpulse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.mjs new file mode 100644 index 000000000..b2f5f7a42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdgeimpulse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B47C2"; +const SiEdgeimpulse = React.forwardRef(function SiEdgeimpulse2({ title = "Edge Impulse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.008 10.287h4.51l1.348 3.53h-5.858c-.979 0-1.772-.79-1.772-1.766s.793-1.766 1.772-1.766v.002ZM.677 12.049a1.77 1.77 0 0 1 1.773-1.766h8.597a1.77 1.77 0 0 1 1.772 1.766c0 .976-.793 1.766-1.772 1.766H2.45c-.98 0-1.773-.79-1.773-1.766ZM24 19.613H4.448a2.515 2.515 0 0 1-1.93.899A2.514 2.514 0 0 1 0 18.002a2.514 2.514 0 0 1 2.518-2.509c.775 0 1.467.351 1.93.899h18.321L24 19.613ZM19.594 7.655H4.404a2.51 2.51 0 0 1-1.886.852A2.514 2.514 0 0 1 0 5.998a2.514 2.514 0 0 1 2.518-2.51c.797 0 1.506.371 1.967.946h13.878l1.231 3.221Z" }) + ] + } + ); +}); + +export { SiEdgeimpulse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.cjs new file mode 100644 index 000000000..08b0d76d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FEFEFE"; +const SiEditorconfig = React__namespace.forwardRef(function SiEditorconfig2({ title = "EditorConfig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.325.402c-.242-.013-1.006.34-1.402.544-.897.472-1.14.632-1.806 1.54-.766 1.046-1.084 1.638-1.213 2.181-.383 1.392-.533 2.089-1.148 2.934-.457.344-.546.792-.911 1.305-.234.327-.862 1.43-.863 1.517-.003.163-.05.2-.539.184-.526-.018-.736.039-1.003.299-.24.232-.288.24-.289 1.054 0 .98.229 1.09.574 1.545C1.207 14.798.098 18.578 0 20.885c0 .195.015.706.131 1.741.137.296.337.514.587.671.822.062 1.762.302 3.39.302 1.315 0 3.857-.58 4.06-.635.693-.185 1.771-.76 2.51-1.187.174-.1 1.395-.542 1.856-.89.239-.181 1.461-.872 1.887-1.206.876-.687.96-.835 1.717-1.942.345-.505.497-.644.829-1.455l.01-.703c.262.09 2.184.608 2.41.743.367.219.012.448-.183.677-.14.165.092.323.224.203.192-.174.781-.564.744-.76 0-.134-.315-.328-.807-.572-.446-.221-.416-.218-.256-.265.905-.301 1.406-.437 2.032-.8 1.677-1.042 2.555-1.976 2.761-2.927.198-.876.09-1.52-.273-2.294-.183-.683-.513-.935-1.24-1.237-.848-.353-2.396-.51-3.012-.3-.517.175-1.777.738-2.416 1.057-.346.173-.633.307-.638.297-.156-.254-.32-.506-.463-.79-.252-.5-.37-.659-.624-.777-.133-.062-.385-.175-.684-.385-.496-.344-1.162-.82-2.723-1.243.892-1.545.904-1.74 1.039-2.587.125-.629.168-1.685.039-1.97-.117-.257-.617-.8-.955-.962-.66-.315-1.075-.287-1.627-.287zm.023.564c.172-.001.369.022.622.07.44.085.728.2 1.171.47l.3.182.065.525c.069.564.046.986-.073 1.348-.04.124-.134.424-.207.667-.145.484-.498 1.015-.636 1.236-.03.05-.125-.022-.166.08-.184.466-.4.487-.76.52-.113.01-.889-.046-1.687-.07-.963.028-1.337-.22-2.518.258-.253.096.528-1.41.61-1.56.21-.38 1.327-1.66 1.6-1.762.23-.086.456-.341.656-.532.33-.315.418-.348.765-.415.324-.063 1.066-.29 1.43-.037.225.178.381.537.346.821-.069.566-.149.792-.497 1.31-.824 1.227-.806 1.251-.699 1.313.105.06.085.094.067.161-.056.206.007.163.161.11.315-.11.802-.996 1.119-2.001.192-.611.19-.335.16-1.12-.017-.465-.029-.415-.182-.665-.227-.37-.45-.49-1.22-.49-.83-.002-1.143.033-1.676.515-.603.544-1.083.77-1.949 2.054-.427.461-.92 1.615-1.149 2.427-.029-.005-.043.02-.015-.366.043-.588.185-.988.79-2.225.429-.874.58-1.133.76-1.3.613-.57 1.66-1.217 2.34-1.445.153-.052.3-.078.472-.08zm1.285 6.017c1.406.541 2.34.62 3.442 1.654.68 1.108.9 2.22 1.246 3.435.343 1.06.33 2.738.321 2.97-.414-.157-.826-.197-1.292-.214-.06-.542-1.137-.636-1.531-.825-.512-.228-1.295-.364-2.3-.527-.96-.22-1.753-.111-2.722-.125-.11.1-.19.186-.278.317-.15-.08-.354-.275-.634-.264-.105 0-.117-.018-.08-.28.024-.168.102-.305.017-.383-.221-.204-.167-.218-.201-.316-1.107-.64-3.029-1.611-4.02-1.71.34-.476.195-.52.303-.691.272-.429.968-1.343 1.123-1.694 0-.229.723-.984 1.403-1.503 1.43-.28 3.565-.265 5.203.156zm8.519 1.505c1.605.041 2.166.236 2.697.777.524.55.698.877.698 1.31 0 .354-.278 1.343-.462 1.647-.7 1.152-2.265 2.404-3.6 2.88-.316.111-.478.133-1.096.148-.403.035-.91-.043-1.297-.13.22-2.561.026-2.73-.198-3.771.09-.22.505-.48.422-.611.776-.49 1.325-1.04 1.933-1.228.408-.15.493-.161 1.343-.186.802-.023.944-.014 1.224.075.597.19 1.265.746 1.265 1.053 0 .193.044.242.137.241.22-.002.151-.326.037-.559-.378-.704-.968-.954-1.533-1.081-.143-.03-.6-.099-1.013-.118-.591-.027-.84-.005-1.143.06-.48.102-.898.239-1.302.596-.31.275-.857.591-1.305.805-.106.015-.174-.17-.256-.267 1.053-.807 2.03-1.521 3.449-1.64zM2.718 10.96c-.304.488-.515.842-.524 1.226-.12.301-.227.595-.38.907-.373-.376-.254-1.176-.093-1.517.357-.69.368-.508.997-.616zm.798.111c1.097.336 2.247.64 3.698 1.535.278.167.13.5.024 1.034a1.675 1.675 0 0 1-1.133.607c.431-.434.878-1.195.402-1.714-.118-.156-.15-.181-.358-.166-.284.02-.288-.006-.44.389-.327.385-.492 1.292-.382 1.576-.566-.033-2.077-.152-2.95-.709.094-.243.335-.595.358-.914.119-.241.62-1.665.78-1.638zm2.7 1.709c.167.282-.192 1.135-.417 1.241-.165-.602.167-1.17.416-1.241zm3.534.831c.437 0 1.24.092 2.21.253.836.138.995.177 1.715.414.854.264.798.364 1.087.785.063.09.156.366.205.609.109.533-.402.943-1.44 1.157-.354.073-.673.097-1.23.093-.879-.007-1.19-.044-1.685-.2-.736-.231-1.114-.555-1.519-1.233-.22-.37-.273-.414-.242-.685.064-.562.183-.927.346-1.064.134-.113.203-.129.553-.129zm-1.984.085c.1-.003.586.224.683.29-.142.385-.009 1.322.383 1.777.092.143.318.465.535.68.684.683 1.13.795 2.656.796 1.278.002 1.65-.068 2.285-.272.589-.188.768-.428.837-.595.17-.402.252-.817.211-1.247l1.287.366c-.106.866-.587 1.375-.944 1.821-.266.428-.816 1.23-.971 1.364-.747.643-1.436 1.095-2.928 1.936-.439.248-1.618.706-1.924.859-.312.156-1.417.81-1.569.855a9.49 9.49 0 0 1-1.554.315c-.4.047-1.82.262-2.725.299-.66.014-.84-.054-1.657-.03-.438-.084-1.396-.301-1.396-.301-.285-.457-.359-.807-.439-1.336.664.778 1.063 1.041 1.595 1.041.479 0 .725-.18.92-.18.123 0 .454-.233.437-.385a1.03 1.03 0 0 0-.253-.605c-.23-.147-1.6-.691-1.832-.691-.64 0-.781.05-.85.18.395-2.142.909-4.616 1.67-6.62 1.174.514 3.097.887 4.043.568 1.452-.51 1.12-.685 1.5-.885zm3.817.15c-.168 0-.586.458-.744.815-.159.359-.202.911-.083 1.055.098.118.503.12.707-.004.398-.243.779-1.096.682-1.538-.035-.16-.33-.328-.562-.328zm.026.39c.148.178-.04.659-.213.85-.204.216-.406.247-.348.058.14-.353.456-.914.561-.908zM2.68 21.462c.156.049.353.27.315.33-.638.036-.998-.008-1.051-.012-.217-.017-.917-.32-.897-.657.027-.395 1.32.31 1.633.339z" }) + ] + } + ); +}); + +exports.default = SiEditorconfig; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.d.ts new file mode 100644 index 000000000..fa9cebbb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FEFEFE"; +declare const SiEditorconfig: IconType; +export { SiEditorconfig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.mjs new file mode 100644 index 000000000..1de9e0824 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEditorconfig.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FEFEFE"; +const SiEditorconfig = React.forwardRef(function SiEditorconfig2({ title = "EditorConfig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.325.402c-.242-.013-1.006.34-1.402.544-.897.472-1.14.632-1.806 1.54-.766 1.046-1.084 1.638-1.213 2.181-.383 1.392-.533 2.089-1.148 2.934-.457.344-.546.792-.911 1.305-.234.327-.862 1.43-.863 1.517-.003.163-.05.2-.539.184-.526-.018-.736.039-1.003.299-.24.232-.288.24-.289 1.054 0 .98.229 1.09.574 1.545C1.207 14.798.098 18.578 0 20.885c0 .195.015.706.131 1.741.137.296.337.514.587.671.822.062 1.762.302 3.39.302 1.315 0 3.857-.58 4.06-.635.693-.185 1.771-.76 2.51-1.187.174-.1 1.395-.542 1.856-.89.239-.181 1.461-.872 1.887-1.206.876-.687.96-.835 1.717-1.942.345-.505.497-.644.829-1.455l.01-.703c.262.09 2.184.608 2.41.743.367.219.012.448-.183.677-.14.165.092.323.224.203.192-.174.781-.564.744-.76 0-.134-.315-.328-.807-.572-.446-.221-.416-.218-.256-.265.905-.301 1.406-.437 2.032-.8 1.677-1.042 2.555-1.976 2.761-2.927.198-.876.09-1.52-.273-2.294-.183-.683-.513-.935-1.24-1.237-.848-.353-2.396-.51-3.012-.3-.517.175-1.777.738-2.416 1.057-.346.173-.633.307-.638.297-.156-.254-.32-.506-.463-.79-.252-.5-.37-.659-.624-.777-.133-.062-.385-.175-.684-.385-.496-.344-1.162-.82-2.723-1.243.892-1.545.904-1.74 1.039-2.587.125-.629.168-1.685.039-1.97-.117-.257-.617-.8-.955-.962-.66-.315-1.075-.287-1.627-.287zm.023.564c.172-.001.369.022.622.07.44.085.728.2 1.171.47l.3.182.065.525c.069.564.046.986-.073 1.348-.04.124-.134.424-.207.667-.145.484-.498 1.015-.636 1.236-.03.05-.125-.022-.166.08-.184.466-.4.487-.76.52-.113.01-.889-.046-1.687-.07-.963.028-1.337-.22-2.518.258-.253.096.528-1.41.61-1.56.21-.38 1.327-1.66 1.6-1.762.23-.086.456-.341.656-.532.33-.315.418-.348.765-.415.324-.063 1.066-.29 1.43-.037.225.178.381.537.346.821-.069.566-.149.792-.497 1.31-.824 1.227-.806 1.251-.699 1.313.105.06.085.094.067.161-.056.206.007.163.161.11.315-.11.802-.996 1.119-2.001.192-.611.19-.335.16-1.12-.017-.465-.029-.415-.182-.665-.227-.37-.45-.49-1.22-.49-.83-.002-1.143.033-1.676.515-.603.544-1.083.77-1.949 2.054-.427.461-.92 1.615-1.149 2.427-.029-.005-.043.02-.015-.366.043-.588.185-.988.79-2.225.429-.874.58-1.133.76-1.3.613-.57 1.66-1.217 2.34-1.445.153-.052.3-.078.472-.08zm1.285 6.017c1.406.541 2.34.62 3.442 1.654.68 1.108.9 2.22 1.246 3.435.343 1.06.33 2.738.321 2.97-.414-.157-.826-.197-1.292-.214-.06-.542-1.137-.636-1.531-.825-.512-.228-1.295-.364-2.3-.527-.96-.22-1.753-.111-2.722-.125-.11.1-.19.186-.278.317-.15-.08-.354-.275-.634-.264-.105 0-.117-.018-.08-.28.024-.168.102-.305.017-.383-.221-.204-.167-.218-.201-.316-1.107-.64-3.029-1.611-4.02-1.71.34-.476.195-.52.303-.691.272-.429.968-1.343 1.123-1.694 0-.229.723-.984 1.403-1.503 1.43-.28 3.565-.265 5.203.156zm8.519 1.505c1.605.041 2.166.236 2.697.777.524.55.698.877.698 1.31 0 .354-.278 1.343-.462 1.647-.7 1.152-2.265 2.404-3.6 2.88-.316.111-.478.133-1.096.148-.403.035-.91-.043-1.297-.13.22-2.561.026-2.73-.198-3.771.09-.22.505-.48.422-.611.776-.49 1.325-1.04 1.933-1.228.408-.15.493-.161 1.343-.186.802-.023.944-.014 1.224.075.597.19 1.265.746 1.265 1.053 0 .193.044.242.137.241.22-.002.151-.326.037-.559-.378-.704-.968-.954-1.533-1.081-.143-.03-.6-.099-1.013-.118-.591-.027-.84-.005-1.143.06-.48.102-.898.239-1.302.596-.31.275-.857.591-1.305.805-.106.015-.174-.17-.256-.267 1.053-.807 2.03-1.521 3.449-1.64zM2.718 10.96c-.304.488-.515.842-.524 1.226-.12.301-.227.595-.38.907-.373-.376-.254-1.176-.093-1.517.357-.69.368-.508.997-.616zm.798.111c1.097.336 2.247.64 3.698 1.535.278.167.13.5.024 1.034a1.675 1.675 0 0 1-1.133.607c.431-.434.878-1.195.402-1.714-.118-.156-.15-.181-.358-.166-.284.02-.288-.006-.44.389-.327.385-.492 1.292-.382 1.576-.566-.033-2.077-.152-2.95-.709.094-.243.335-.595.358-.914.119-.241.62-1.665.78-1.638zm2.7 1.709c.167.282-.192 1.135-.417 1.241-.165-.602.167-1.17.416-1.241zm3.534.831c.437 0 1.24.092 2.21.253.836.138.995.177 1.715.414.854.264.798.364 1.087.785.063.09.156.366.205.609.109.533-.402.943-1.44 1.157-.354.073-.673.097-1.23.093-.879-.007-1.19-.044-1.685-.2-.736-.231-1.114-.555-1.519-1.233-.22-.37-.273-.414-.242-.685.064-.562.183-.927.346-1.064.134-.113.203-.129.553-.129zm-1.984.085c.1-.003.586.224.683.29-.142.385-.009 1.322.383 1.777.092.143.318.465.535.68.684.683 1.13.795 2.656.796 1.278.002 1.65-.068 2.285-.272.589-.188.768-.428.837-.595.17-.402.252-.817.211-1.247l1.287.366c-.106.866-.587 1.375-.944 1.821-.266.428-.816 1.23-.971 1.364-.747.643-1.436 1.095-2.928 1.936-.439.248-1.618.706-1.924.859-.312.156-1.417.81-1.569.855a9.49 9.49 0 0 1-1.554.315c-.4.047-1.82.262-2.725.299-.66.014-.84-.054-1.657-.03-.438-.084-1.396-.301-1.396-.301-.285-.457-.359-.807-.439-1.336.664.778 1.063 1.041 1.595 1.041.479 0 .725-.18.92-.18.123 0 .454-.233.437-.385a1.03 1.03 0 0 0-.253-.605c-.23-.147-1.6-.691-1.832-.691-.64 0-.781.05-.85.18.395-2.142.909-4.616 1.67-6.62 1.174.514 3.097.887 4.043.568 1.452-.51 1.12-.685 1.5-.885zm3.817.15c-.168 0-.586.458-.744.815-.159.359-.202.911-.083 1.055.098.118.503.12.707-.004.398-.243.779-1.096.682-1.538-.035-.16-.33-.328-.562-.328zm.026.39c.148.178-.04.659-.213.85-.204.216-.406.247-.348.058.14-.353.456-.914.561-.908zM2.68 21.462c.156.049.353.27.315.33-.638.036-.998-.008-1.051-.012-.217-.017-.917-.32-.897-.657.027-.395 1.32.31 1.633.339z" }) + ] + } + ); +}); + +export { SiEditorconfig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.cjs new file mode 100644 index 000000000..a28a406d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066CC"; +const SiEdotleclerc = React__namespace.forwardRef(function SiEdotleclerc2({ title = "E.Leclerc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0006 0C5.4304 0 .104 5.373.104 12.0006.1041 18.628 5.4304 24 12.0006 24c6.57 0 11.8953-5.372 11.8953-11.9994C23.8959 5.373 18.5705 0 12.0006 0zm0 2.491c5.2064 0 9.4266 4.2576 9.4266 9.5096 0 5.2518-4.2202 9.5085-9.4266 9.5085-5.2065 0-9.4278-4.2567-9.4278-9.5085 0-5.252 4.2213-9.5097 9.4278-9.5097zm1.1477 1.9912c-1.4425 0-2.7735.4696-3.8562 1.266h3.1929V8.982c-.556.0284-1.0156.4782-1.0156 1.0436v5.4499h.9442c1.2058 0 1.5093-1.4532 1.5093-1.4532h2.836l.001 2.5939c1.7738-1.1835 2.9437-3.215 2.9437-5.5212 0-3.6525-2.9346-6.6128-6.5554-6.6128zM6.49 6.7322v1.6204c.5462.1418 1.018.6113 1.018 1.3817v5.4592c0 .6162-.4365 1.1693-1.018 1.315v2.0943h9.3003V15.004l-1.2344.007c-.348.8466-1.1771 1.4415-2.1422 1.4415h-1.913V9.691c0-.6981.4543-1.1824 1.0156-1.335V6.7322z" }) + ] + } + ); +}); + +exports.default = SiEdotleclerc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.d.ts new file mode 100644 index 000000000..26069c3ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066CC"; +declare const SiEdotleclerc: IconType; +export { SiEdotleclerc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.mjs new file mode 100644 index 000000000..3ccae8471 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdotleclerc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066CC"; +const SiEdotleclerc = React.forwardRef(function SiEdotleclerc2({ title = "E.Leclerc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0006 0C5.4304 0 .104 5.373.104 12.0006.1041 18.628 5.4304 24 12.0006 24c6.57 0 11.8953-5.372 11.8953-11.9994C23.8959 5.373 18.5705 0 12.0006 0zm0 2.491c5.2064 0 9.4266 4.2576 9.4266 9.5096 0 5.2518-4.2202 9.5085-9.4266 9.5085-5.2065 0-9.4278-4.2567-9.4278-9.5085 0-5.252 4.2213-9.5097 9.4278-9.5097zm1.1477 1.9912c-1.4425 0-2.7735.4696-3.8562 1.266h3.1929V8.982c-.556.0284-1.0156.4782-1.0156 1.0436v5.4499h.9442c1.2058 0 1.5093-1.4532 1.5093-1.4532h2.836l.001 2.5939c1.7738-1.1835 2.9437-3.215 2.9437-5.5212 0-3.6525-2.9346-6.6128-6.5554-6.6128zM6.49 6.7322v1.6204c.5462.1418 1.018.6113 1.018 1.3817v5.4592c0 .6162-.4365 1.1693-1.018 1.315v2.0943h9.3003V15.004l-1.2344.007c-.348.8466-1.1771 1.4415-2.1422 1.4415h-1.913V9.691c0-.6981.4543-1.1824 1.0156-1.335V6.7322z" }) + ] + } + ); +}); + +export { SiEdotleclerc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.cjs new file mode 100644 index 000000000..b1beb6bbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4951F5"; +const SiEducative = React__namespace.forwardRef(function SiEducative2({ title = "Educative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 0H4a4 4 0 0 0-4 4v16a4 4 0 0 0 3.998 4h16A4 4 0 0 0 24 20V4a4 4 0 0 0-4-4ZM5.397 19.576l-1.828-1.673a.316.316 0 0 1-.018-.445l4.004-4.376a.314.314 0 0 0 .009-.415L3.82 8.217a.315.315 0 0 1 .038-.443l1.893-1.595a.315.315 0 0 1 .443.038l5.495 6.537a.316.316 0 0 1-.008.417L5.84 19.559a.315.315 0 0 1-.442.018zm15.147-.102c0 .174-.141.315-.315.315H11.74a.315.315 0 0 1-.314-.315v-2.332c0-.174.14-.315.314-.315h8.488c.174 0 .315.14.315.315z" }) + ] + } + ); +}); + +exports.default = SiEducative; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.d.ts new file mode 100644 index 000000000..328d8f9b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4951F5"; +declare const SiEducative: IconType; +export { SiEducative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.mjs new file mode 100644 index 000000000..19f440305 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEducative.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4951F5"; +const SiEducative = React.forwardRef(function SiEducative2({ title = "Educative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20 0H4a4 4 0 0 0-4 4v16a4 4 0 0 0 3.998 4h16A4 4 0 0 0 24 20V4a4 4 0 0 0-4-4ZM5.397 19.576l-1.828-1.673a.316.316 0 0 1-.018-.445l4.004-4.376a.314.314 0 0 0 .009-.415L3.82 8.217a.315.315 0 0 1 .038-.443l1.893-1.595a.315.315 0 0 1 .443.038l5.495 6.537a.316.316 0 0 1-.008.417L5.84 19.559a.315.315 0 0 1-.442.018zm15.147-.102c0 .174-.141.315-.315.315H11.74a.315.315 0 0 1-.314-.315v-2.332c0-.174.14-.315.314-.315h8.488c.174 0 .315.14.315.315z" }) + ] + } + ); +}); + +export { SiEducative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.cjs new file mode 100644 index 000000000..68abc49e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02262B"; +const SiEdx = React__namespace.forwardRef(function SiEdx2({ title = "edX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.359 10.416c.053.162.079.334.079.516a3.154 3.154 0 0 1-.011.231h-3c.065-.236.152-.451.262-.644.109-.193.239-.359.39-.497.15-.138.318-.246.503-.321.184-.075.383-.113.595-.113.209 0 .392.036.549.108.156.071.288.169.394.292.107.123.186.266.239.428zm5.444-.4a1.206 1.206 0 0 0-.436-.305 1.48 1.48 0 0 0-.58-.108c-.284 0-.547.063-.79.19a1.952 1.952 0 0 0-.631.528 2.61 2.61 0 0 0-.421.808 3.305 3.305 0 0 0-.154 1.029c0 .233.033.446.1.641s.16.362.28.5c.12.138.263.246.431.323.168.077.354.116.56.116.287 0 .553-.067.798-.203.244-.135.458-.32.639-.554a2.71 2.71 0 0 0 .426-.826c.102-.316.154-.658.154-1.024 0-.236-.033-.448-.098-.636a1.405 1.405 0 0 0-.278-.479zM24 7.468l-2.398 11.276H10.727l.625-2.852H0L2.227 5.256h13.577l-.462 2.212H24zM7.362 11.045a2.51 2.51 0 0 0-.169-.954 2.069 2.069 0 0 0-.457-.7 1.951 1.951 0 0 0-.669-.434 2.22 2.22 0 0 0-.809-.148 2.73 2.73 0 0 0-1.162.246 2.628 2.628 0 0 0-.911.695c-.253.3-.451.659-.593 1.077a4.346 4.346 0 0 0-.212 1.393c0 .373.059.703.177.99a2.01 2.01 0 0 0 1.198 1.172c.273.101.564.151.872.151.321 0 .616-.039.885-.115a2.55 2.55 0 0 0 .708-.318c.204-.135.372-.295.505-.48a1.84 1.84 0 0 0 .287-.595h-.938a1.279 1.279 0 0 1-.508.513c-.222.126-.517.19-.883.19-.168 0-.333-.028-.497-.085a1.202 1.202 0 0 1-.444-.274 1.41 1.41 0 0 1-.321-.49 1.913 1.913 0 0 1-.123-.726c0-.048.001-.094.003-.138.002-.044.004-.09.008-.138h3.986c.01-.051.019-.114.026-.187l.02-.226a6.153 6.153 0 0 0 .021-.419zm5.036 3.392L14.04 6.71h-.898l-.682 3.217h-.082a1.406 1.406 0 0 0-.228-.454 1.56 1.56 0 0 0-.375-.354 1.786 1.786 0 0 0-.487-.228 1.93 1.93 0 0 0-.567-.082 2.506 2.506 0 0 0-1.45.456 2.892 2.892 0 0 0-.575.534c-.173.208-.32.442-.444.7a3.925 3.925 0 0 0-.285.841c-.066.303-.1.62-.1.952 0 .342.053.652.159.929.106.277.25.513.434.708.183.195.395.345.639.449.243.105.503.157.78.157.352 0 .681-.076.985-.228.304-.152.557-.36.759-.623h.082l-.159.754h.852zm6.116-1.39l3.578-4.125H20.09l-2.184 2.704h-.108l-1.155-2.704h-2.025l1.736 3.928-3.748 4.44h1.976l2.406-2.852h.162l1.3 2.852h1.988l-1.924-4.243z" }) + ] + } + ); +}); + +exports.default = SiEdx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.d.ts new file mode 100644 index 000000000..9b9d8feb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02262B"; +declare const SiEdx: IconType; +export { SiEdx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.mjs new file mode 100644 index 000000000..ed86c2798 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEdx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02262B"; +const SiEdx = React.forwardRef(function SiEdx2({ title = "edX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.359 10.416c.053.162.079.334.079.516a3.154 3.154 0 0 1-.011.231h-3c.065-.236.152-.451.262-.644.109-.193.239-.359.39-.497.15-.138.318-.246.503-.321.184-.075.383-.113.595-.113.209 0 .392.036.549.108.156.071.288.169.394.292.107.123.186.266.239.428zm5.444-.4a1.206 1.206 0 0 0-.436-.305 1.48 1.48 0 0 0-.58-.108c-.284 0-.547.063-.79.19a1.952 1.952 0 0 0-.631.528 2.61 2.61 0 0 0-.421.808 3.305 3.305 0 0 0-.154 1.029c0 .233.033.446.1.641s.16.362.28.5c.12.138.263.246.431.323.168.077.354.116.56.116.287 0 .553-.067.798-.203.244-.135.458-.32.639-.554a2.71 2.71 0 0 0 .426-.826c.102-.316.154-.658.154-1.024 0-.236-.033-.448-.098-.636a1.405 1.405 0 0 0-.278-.479zM24 7.468l-2.398 11.276H10.727l.625-2.852H0L2.227 5.256h13.577l-.462 2.212H24zM7.362 11.045a2.51 2.51 0 0 0-.169-.954 2.069 2.069 0 0 0-.457-.7 1.951 1.951 0 0 0-.669-.434 2.22 2.22 0 0 0-.809-.148 2.73 2.73 0 0 0-1.162.246 2.628 2.628 0 0 0-.911.695c-.253.3-.451.659-.593 1.077a4.346 4.346 0 0 0-.212 1.393c0 .373.059.703.177.99a2.01 2.01 0 0 0 1.198 1.172c.273.101.564.151.872.151.321 0 .616-.039.885-.115a2.55 2.55 0 0 0 .708-.318c.204-.135.372-.295.505-.48a1.84 1.84 0 0 0 .287-.595h-.938a1.279 1.279 0 0 1-.508.513c-.222.126-.517.19-.883.19-.168 0-.333-.028-.497-.085a1.202 1.202 0 0 1-.444-.274 1.41 1.41 0 0 1-.321-.49 1.913 1.913 0 0 1-.123-.726c0-.048.001-.094.003-.138.002-.044.004-.09.008-.138h3.986c.01-.051.019-.114.026-.187l.02-.226a6.153 6.153 0 0 0 .021-.419zm5.036 3.392L14.04 6.71h-.898l-.682 3.217h-.082a1.406 1.406 0 0 0-.228-.454 1.56 1.56 0 0 0-.375-.354 1.786 1.786 0 0 0-.487-.228 1.93 1.93 0 0 0-.567-.082 2.506 2.506 0 0 0-1.45.456 2.892 2.892 0 0 0-.575.534c-.173.208-.32.442-.444.7a3.925 3.925 0 0 0-.285.841c-.066.303-.1.62-.1.952 0 .342.053.652.159.929.106.277.25.513.434.708.183.195.395.345.639.449.243.105.503.157.78.157.352 0 .681-.076.985-.228.304-.152.557-.36.759-.623h.082l-.159.754h.852zm6.116-1.39l3.578-4.125H20.09l-2.184 2.704h-.108l-1.155-2.704h-2.025l1.736 3.928-3.748 4.44h1.976l2.406-2.852h.162l1.3 2.852h1.988l-1.924-4.243z" }) + ] + } + ); +}); + +export { SiEdx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.cjs new file mode 100644 index 000000000..a92cc2818 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiEffect = React__namespace.forwardRef(function SiEffect2({ title = "Effect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.846.007a.8.8 0 0 0-.312.103L.454 6.346a.8.8 0 0 0-.397.855.8.8 0 0 0 .408.78L3.99 9.976 1.033 11.64a.76.76 0 0 0-.374.838c-.033.265.07.541.378.715l10.546 5.967a.8.8 0 0 0 .61.073.8.8 0 0 0 .27-.094l10.548-5.968c.31-.175.412-.454.376-.72a.76.76 0 0 0-.383-.79l-3.01-1.693 3.554-2.012a.8.8 0 0 0 .399-.836.8.8 0 0 0-.412-.753L12.455.13a.8.8 0 0 0-.28-.097.8.8 0 0 0-.227-.033m6.482 10.853 2.78 1.566-9.205 5.21-9.21-5.213 2.76-1.554 5.99 3.387a.83.83 0 0 0 .638.076.8.8 0 0 0 .285-.098zm3.572 6.03a.75.75 0 0 0-.35.098l-9.67 5.47-9.635-5.45a.75.75 0 0 0-1.01.267.717.717 0 0 0 .27.99l9.976 5.644a.75.75 0 0 0 .372.098c.079 0 .294-.026.46-.117l9.978-5.645a.716.716 0 0 0 .27-.99.75.75 0 0 0-.661-.364" }) + ] + } + ); +}); + +exports.default = SiEffect; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.d.ts new file mode 100644 index 000000000..896421e69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiEffect: IconType; +export { SiEffect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.mjs new file mode 100644 index 000000000..d402e100f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEffect.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiEffect = React.forwardRef(function SiEffect2({ title = "Effect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.846.007a.8.8 0 0 0-.312.103L.454 6.346a.8.8 0 0 0-.397.855.8.8 0 0 0 .408.78L3.99 9.976 1.033 11.64a.76.76 0 0 0-.374.838c-.033.265.07.541.378.715l10.546 5.967a.8.8 0 0 0 .61.073.8.8 0 0 0 .27-.094l10.548-5.968c.31-.175.412-.454.376-.72a.76.76 0 0 0-.383-.79l-3.01-1.693 3.554-2.012a.8.8 0 0 0 .399-.836.8.8 0 0 0-.412-.753L12.455.13a.8.8 0 0 0-.28-.097.8.8 0 0 0-.227-.033m6.482 10.853 2.78 1.566-9.205 5.21-9.21-5.213 2.76-1.554 5.99 3.387a.83.83 0 0 0 .638.076.8.8 0 0 0 .285-.098zm3.572 6.03a.75.75 0 0 0-.35.098l-9.67 5.47-9.635-5.45a.75.75 0 0 0-1.01.267.717.717 0 0 0 .27.99l9.976 5.644a.75.75 0 0 0 .372.098c.079 0 .294-.026.46-.117l9.978-5.645a.716.716 0 0 0 .27-.99.75.75 0 0 0-.661-.364" }) + ] + } + ); +}); + +export { SiEffect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.cjs new file mode 100644 index 000000000..b52e8d03b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FCFBFA"; +const SiEgghead = React__namespace.forwardRef(function SiEgghead2({ title = "egghead", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.998 0c-1.649 0-3.223.893-4.679 2.655-.934 1.134-1.818 2.638-2.567 4.368-1.338.207-2.399.48-3.143.814a2.04 2.04 0 0 0-1.21 1.93c.041 1.433.385 2.925.64 3.924.22.868.95 1.512 1.838 1.623v.018A9.121 9.121 0 0 0 11.997 24l-.003-.001a9.133 9.133 0 0 0 9.127-8.667v-.016a2.175 2.175 0 0 0 1.84-1.626c.255-.997.599-2.489.64-3.93a2.036 2.036 0 0 0-1.21-1.926c-.765-.34-1.825-.616-3.154-.816-.748-1.727-1.634-3.228-2.565-4.361C15.22.894 13.647 0 11.998 0zm-.008.828c1.412 0 2.786.797 4.084 2.37.948 1.15 1.844 2.71 2.585 4.512 1.206.163 2.448.413 3.33.806.491.217.8.71.784 1.245-.038 1.346-.371 2.785-.61 3.738a1.458 1.458 0 0 1-1.397 1.104h-.014c-.146 0-.291-.01-.437-.013a8.443 8.443 0 0 1-.558 3.29 8.335 8.335 0 0 1-7.763 5.287h-.002v-.001A8.344 8.344 0 0 1 4.23 17.88a8.446 8.446 0 0 1-.573-3.288c-.14.003-.278.013-.418.013h-.007a1.458 1.458 0 0 1-1.395-1.104c-.248-.955-.577-2.386-.616-3.73a1.325 1.325 0 0 1 .784-1.252c.837-.371 2.075-.63 3.313-.803C6.066 5.914 6.96 4.352 7.906 3.2 9.204 1.625 10.578.828 11.99.828zm0 .77a3.365 3.365 0 0 0-1.691.492c-1.831 1.058-3.25 3.558-4.108 5.528 1.096-.118 2.137-.181 2.788-.172.54-.005 1.06.21 1.44.594A3.868 3.868 0 0 1 12 7.674a3.867 3.867 0 0 1 1.582.365 1.994 1.994 0 0 1 1.427-.593c.43-.007 1.535.036 2.776.162-.852-1.958-2.273-4.461-4.104-5.518a3.374 3.374 0 0 0-1.692-.491zm3.215 7.045v.004a.922.922 0 0 0-.93.774c-.099.53-.164 1.064-.196 1.601-.007.614.214 1.034.651 1.25 1.252.558 2.66.898 4.27 1.034-.189-1.377-.578-2.958-1.112-4.495-1.087-.122-2.12-.177-2.683-.168zm-6.422.001a25.896 25.896 0 0 0-2.644.159c-.533 1.54-.924 3.123-1.108 4.5 1.59-.14 2.983-.48 4.226-1.034.44-.214.66-.636.653-1.252a12.746 12.746 0 0 0-.198-1.6.92.92 0 0 0-.93-.773zM5.29 8.91c-.624.09-1.242.21-1.79.364l1.509.533c.087-.299.183-.598.281-.897zm13.453.01c.096.29.188.581.274.872l1.46-.515a14.497 14.497 0 0 0-1.734-.357zm-6.746.34a.859.859 0 0 0-.478.144c-.303.2-.408.581-.378.868.122 1.139.07 2.388-1.229 3.01l-.015.008a11.37 11.37 0 0 1-1.93.707c-1.162.308-2.351.5-3.548.573a7.574 7.574 0 0 0 14.627 3.007 7.584 7.584 0 0 0 .506-3.009 18.16 18.16 0 0 1-3.525-.572c-.664-.175-1.31-.41-1.931-.7l-.014-.012c-1.303-.623-1.352-1.871-1.23-3.01.03-.287-.075-.668-.378-.87a.859.859 0 0 0-.477-.145zm-9.352 1.875c.113.726.271 1.422.407 1.95.044.17.196.29.37.29.289-.001.554-.024.83-.037.075-.612.197-1.27.35-1.95a203.22 203.22 0 0 1-1.957-.253zm18.695 0c-.746.099-1.506.198-1.909.246.155.683.275 1.344.352 1.96.26.01.508.034.778.036a.385.385 0 0 0 .37-.289c.136-.53.296-1.226.409-1.953Z" }) + ] + } + ); +}); + +exports.default = SiEgghead; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.d.ts new file mode 100644 index 000000000..ae3a7b270 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FCFBFA"; +declare const SiEgghead: IconType; +export { SiEgghead as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.mjs new file mode 100644 index 000000000..728421785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEgghead.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FCFBFA"; +const SiEgghead = React.forwardRef(function SiEgghead2({ title = "egghead", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.998 0c-1.649 0-3.223.893-4.679 2.655-.934 1.134-1.818 2.638-2.567 4.368-1.338.207-2.399.48-3.143.814a2.04 2.04 0 0 0-1.21 1.93c.041 1.433.385 2.925.64 3.924.22.868.95 1.512 1.838 1.623v.018A9.121 9.121 0 0 0 11.997 24l-.003-.001a9.133 9.133 0 0 0 9.127-8.667v-.016a2.175 2.175 0 0 0 1.84-1.626c.255-.997.599-2.489.64-3.93a2.036 2.036 0 0 0-1.21-1.926c-.765-.34-1.825-.616-3.154-.816-.748-1.727-1.634-3.228-2.565-4.361C15.22.894 13.647 0 11.998 0zm-.008.828c1.412 0 2.786.797 4.084 2.37.948 1.15 1.844 2.71 2.585 4.512 1.206.163 2.448.413 3.33.806.491.217.8.71.784 1.245-.038 1.346-.371 2.785-.61 3.738a1.458 1.458 0 0 1-1.397 1.104h-.014c-.146 0-.291-.01-.437-.013a8.443 8.443 0 0 1-.558 3.29 8.335 8.335 0 0 1-7.763 5.287h-.002v-.001A8.344 8.344 0 0 1 4.23 17.88a8.446 8.446 0 0 1-.573-3.288c-.14.003-.278.013-.418.013h-.007a1.458 1.458 0 0 1-1.395-1.104c-.248-.955-.577-2.386-.616-3.73a1.325 1.325 0 0 1 .784-1.252c.837-.371 2.075-.63 3.313-.803C6.066 5.914 6.96 4.352 7.906 3.2 9.204 1.625 10.578.828 11.99.828zm0 .77a3.365 3.365 0 0 0-1.691.492c-1.831 1.058-3.25 3.558-4.108 5.528 1.096-.118 2.137-.181 2.788-.172.54-.005 1.06.21 1.44.594A3.868 3.868 0 0 1 12 7.674a3.867 3.867 0 0 1 1.582.365 1.994 1.994 0 0 1 1.427-.593c.43-.007 1.535.036 2.776.162-.852-1.958-2.273-4.461-4.104-5.518a3.374 3.374 0 0 0-1.692-.491zm3.215 7.045v.004a.922.922 0 0 0-.93.774c-.099.53-.164 1.064-.196 1.601-.007.614.214 1.034.651 1.25 1.252.558 2.66.898 4.27 1.034-.189-1.377-.578-2.958-1.112-4.495-1.087-.122-2.12-.177-2.683-.168zm-6.422.001a25.896 25.896 0 0 0-2.644.159c-.533 1.54-.924 3.123-1.108 4.5 1.59-.14 2.983-.48 4.226-1.034.44-.214.66-.636.653-1.252a12.746 12.746 0 0 0-.198-1.6.92.92 0 0 0-.93-.773zM5.29 8.91c-.624.09-1.242.21-1.79.364l1.509.533c.087-.299.183-.598.281-.897zm13.453.01c.096.29.188.581.274.872l1.46-.515a14.497 14.497 0 0 0-1.734-.357zm-6.746.34a.859.859 0 0 0-.478.144c-.303.2-.408.581-.378.868.122 1.139.07 2.388-1.229 3.01l-.015.008a11.37 11.37 0 0 1-1.93.707c-1.162.308-2.351.5-3.548.573a7.574 7.574 0 0 0 14.627 3.007 7.584 7.584 0 0 0 .506-3.009 18.16 18.16 0 0 1-3.525-.572c-.664-.175-1.31-.41-1.931-.7l-.014-.012c-1.303-.623-1.352-1.871-1.23-3.01.03-.287-.075-.668-.378-.87a.859.859 0 0 0-.477-.145zm-9.352 1.875c.113.726.271 1.422.407 1.95.044.17.196.29.37.29.289-.001.554-.024.83-.037.075-.612.197-1.27.35-1.95a203.22 203.22 0 0 1-1.957-.253zm18.695 0c-.746.099-1.506.198-1.909.246.155.683.275 1.344.352 1.96.26.01.508.034.778.036a.385.385 0 0 0 .37-.289c.136-.53.296-1.226.409-1.953Z" }) + ] + } + ); +}); + +export { SiEgghead as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.cjs new file mode 100644 index 000000000..1d08658fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00968F"; +const SiEgnyte = React__namespace.forwardRef(function SiEgnyte2({ title = "Egnyte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.742 11.214l-.447-.78a.062.062 0 0 0-.082-.022l-2.014 1.162-1.986-1.167a.062.062 0 0 0-.082.021l-.458.78a.062.062 0 0 0 .021.083l2.009 1.178v2.363c0 .033.027.06.06.06h.89a.06.06 0 0 0 .06-.06v-2.374l2.007-1.162c.028-.016.039-.055.022-.082zm-3.863 1.583c-.017-.028-.055-.038-.088-.022l-1.342.797c-.027.016-.038.054-.022.087l.191.327c.016.028.055.039.087.022l1.343-.797c.027-.016.038-.054.022-.087zm1.533-3.69l-.442.006c-.016 0-.027.011-.027.033l.005 1.62c0 .017.011.028.033.028h.442c.016 0 .027-.01.027-.033l-.005-1.62a.035.035 0 0 0-.033-.033zm2.554 4.377l-1.413-.791c-.017-.005-.033-.005-.039.011l-.218.387c-.005.017-.005.033.011.039l1.413.79c.017.006.033.006.039-.01l.218-.388c.01-.01.005-.032-.011-.038zm-14.057.12h-1.9v-.584h1.687a.075.075 0 0 0 .076-.076v-.65a.075.075 0 0 0-.076-.076H1.01v-.556h1.87a.075.075 0 0 0 .077-.077v-.715a.075.075 0 0 0-.077-.076H.076A.075.075 0 0 0 0 10.87v3.526c0 .043.033.076.076.076H2.91a.075.075 0 0 0 .076-.076v-.715a.078.078 0 0 0-.076-.077zm3.967-1.282H5.26v.748h.725v.442c0 .005 0 .01-.005.01-.153.099-.338.148-.584.148-.584 0-.999-.426-.999-1.02v-.012c0-.562.41-1.01.939-1.01.338 0 .584.11.83.301.032.027.081.022.103-.01l.502-.607a.078.078 0 0 0-.01-.109c-.377-.305-.82-.485-1.436-.485-1.14 0-1.98.84-1.98 1.915v.01c0 1.114.856 1.905 2.002 1.905a2.49 2.49 0 0 0 1.572-.545.088.088 0 0 0 .027-.06v-1.545c.005-.043-.027-.076-.071-.076zm4.044-1.533h-.857a.075.075 0 0 0-.077.076v1.866l-1.49-1.915a.088.088 0 0 0-.06-.027h-.834a.075.075 0 0 0-.077.076v3.525c0 .044.033.077.077.077h.856a.075.075 0 0 0 .077-.077v-1.943l1.55 1.992a.088.088 0 0 0 .06.028h.78a.075.075 0 0 0 .076-.077v-3.525c-.005-.038-.043-.076-.081-.076zm9.571 0H17.42a.075.075 0 0 0-.077.076v.742c0 .044.033.076.077.076h1.026v2.713c0 .043.032.076.076.076h.868a.075.075 0 0 0 .076-.076v-2.702c0-.005.006-.01.011-.01h1.015a.075.075 0 0 0 .077-.077v-.742a.078.078 0 0 0-.077-.076zm3.433 2.815h-1.9v-.584h1.692a.075.075 0 0 0 .077-.076v-.65a.075.075 0 0 0-.077-.076h-1.691v-.556h1.871a.075.075 0 0 0 .077-.077v-.715a.075.075 0 0 0-.077-.076h-2.805a.075.075 0 0 0-.076.076v3.526c0 .043.033.076.076.076h2.833a.075.075 0 0 0 .076-.076v-.715a.075.075 0 0 0-.076-.077Z" }) + ] + } + ); +}); + +exports.default = SiEgnyte; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.d.ts new file mode 100644 index 000000000..ffb8c43a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00968F"; +declare const SiEgnyte: IconType; +export { SiEgnyte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.mjs new file mode 100644 index 000000000..0c5382db6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEgnyte.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00968F"; +const SiEgnyte = React.forwardRef(function SiEgnyte2({ title = "Egnyte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.742 11.214l-.447-.78a.062.062 0 0 0-.082-.022l-2.014 1.162-1.986-1.167a.062.062 0 0 0-.082.021l-.458.78a.062.062 0 0 0 .021.083l2.009 1.178v2.363c0 .033.027.06.06.06h.89a.06.06 0 0 0 .06-.06v-2.374l2.007-1.162c.028-.016.039-.055.022-.082zm-3.863 1.583c-.017-.028-.055-.038-.088-.022l-1.342.797c-.027.016-.038.054-.022.087l.191.327c.016.028.055.039.087.022l1.343-.797c.027-.016.038-.054.022-.087zm1.533-3.69l-.442.006c-.016 0-.027.011-.027.033l.005 1.62c0 .017.011.028.033.028h.442c.016 0 .027-.01.027-.033l-.005-1.62a.035.035 0 0 0-.033-.033zm2.554 4.377l-1.413-.791c-.017-.005-.033-.005-.039.011l-.218.387c-.005.017-.005.033.011.039l1.413.79c.017.006.033.006.039-.01l.218-.388c.01-.01.005-.032-.011-.038zm-14.057.12h-1.9v-.584h1.687a.075.075 0 0 0 .076-.076v-.65a.075.075 0 0 0-.076-.076H1.01v-.556h1.87a.075.075 0 0 0 .077-.077v-.715a.075.075 0 0 0-.077-.076H.076A.075.075 0 0 0 0 10.87v3.526c0 .043.033.076.076.076H2.91a.075.075 0 0 0 .076-.076v-.715a.078.078 0 0 0-.076-.077zm3.967-1.282H5.26v.748h.725v.442c0 .005 0 .01-.005.01-.153.099-.338.148-.584.148-.584 0-.999-.426-.999-1.02v-.012c0-.562.41-1.01.939-1.01.338 0 .584.11.83.301.032.027.081.022.103-.01l.502-.607a.078.078 0 0 0-.01-.109c-.377-.305-.82-.485-1.436-.485-1.14 0-1.98.84-1.98 1.915v.01c0 1.114.856 1.905 2.002 1.905a2.49 2.49 0 0 0 1.572-.545.088.088 0 0 0 .027-.06v-1.545c.005-.043-.027-.076-.071-.076zm4.044-1.533h-.857a.075.075 0 0 0-.077.076v1.866l-1.49-1.915a.088.088 0 0 0-.06-.027h-.834a.075.075 0 0 0-.077.076v3.525c0 .044.033.077.077.077h.856a.075.075 0 0 0 .077-.077v-1.943l1.55 1.992a.088.088 0 0 0 .06.028h.78a.075.075 0 0 0 .076-.077v-3.525c-.005-.038-.043-.076-.081-.076zm9.571 0H17.42a.075.075 0 0 0-.077.076v.742c0 .044.033.076.077.076h1.026v2.713c0 .043.032.076.076.076h.868a.075.075 0 0 0 .076-.076v-2.702c0-.005.006-.01.011-.01h1.015a.075.075 0 0 0 .077-.077v-.742a.078.078 0 0 0-.077-.076zm3.433 2.815h-1.9v-.584h1.692a.075.075 0 0 0 .077-.076v-.65a.075.075 0 0 0-.077-.076h-1.691v-.556h1.871a.075.075 0 0 0 .077-.077v-.715a.075.075 0 0 0-.077-.076h-2.805a.075.075 0 0 0-.076.076v3.526c0 .043.033.076.076.076h2.833a.075.075 0 0 0 .076-.076v-.715a.075.075 0 0 0-.076-.077Z" }) + ] + } + ); +}); + +export { SiEgnyte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEight.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEight.cjs new file mode 100644 index 000000000..40cffa335 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEight.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0054FF"; +const SiEight = React__namespace.forwardRef(function SiEight2({ title = "Eight", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.908 6.092a5.908 5.908 0 1 0 0 11.816 5.908 5.908 0 0 0 0-11.816zm9.23 0v2.955h5.909V6.092h-5.908zm5.909 2.955v5.906H24V9.047h-2.953zm0 5.906h-5.908v2.955h5.908v-2.955zm-5.908 0V9.047h-2.953v5.906h2.953zm-9.23-5.906A2.956 2.956 0 0 1 8.86 12a2.956 2.956 0 0 1-2.953 2.953A2.958 2.958 0 0 1 2.953 12a2.958 2.958 0 0 1 2.955-2.953z" }) + ] + } + ); +}); + +exports.default = SiEight; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEight.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEight.d.ts new file mode 100644 index 000000000..015d37e83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEight.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0054FF"; +declare const SiEight: IconType; +export { SiEight as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEight.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEight.mjs new file mode 100644 index 000000000..bb436c669 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEight.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0054FF"; +const SiEight = React.forwardRef(function SiEight2({ title = "Eight", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.908 6.092a5.908 5.908 0 1 0 0 11.816 5.908 5.908 0 0 0 0-11.816zm9.23 0v2.955h5.909V6.092h-5.908zm5.909 2.955v5.906H24V9.047h-2.953zm0 5.906h-5.908v2.955h5.908v-2.955zm-5.908 0V9.047h-2.953v5.906h2.953zm-9.23-5.906A2.956 2.956 0 0 1 8.86 12a2.956 2.956 0 0 1-2.953 2.953A2.958 2.958 0 0 1 2.953 12a2.958 2.958 0 0 1 2.955-2.953z" }) + ] + } + ); +}); + +export { SiEight as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.cjs new file mode 100644 index 000000000..15846bbd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#262729"; +const SiEightsleep = React__namespace.forwardRef(function SiEightsleep2({ title = "Eight Sleep", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.847 7.28V4.105A4.104 4.104 0 0 0 15.745 0H8.258a4.104 4.104 0 0 0-4.105 4.102v3.183a4.092 4.092 0 0 0 2.415 3.738v.588a4.102 4.102 0 0 0-2.415 3.738v4.546A4.104 4.104 0 0 0 8.255 24h7.488a4.104 4.104 0 0 0 4.104-4.104v-4.553a4.102 4.102 0 0 0-2.415-3.738v-.587a4.102 4.102 0 0 0 2.415-3.738zM8.451 5.126c0-.818.662-1.482 1.48-1.483h4.133c.819 0 1.483.663 1.483 1.482v1.991c0 .819-.664 1.482-1.483 1.482H9.93a1.482 1.482 0 0 1-1.482-1.482l.003-1.99zm7.1 13.732c0 .818-.664 1.482-1.483 1.482H9.93a1.482 1.482 0 0 1-1.482-1.482v-2.752c0-.819.664-1.483 1.482-1.483h4.134c.819 0 1.483.664 1.483 1.483l.003 2.752z" }) + ] + } + ); +}); + +exports.default = SiEightsleep; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.d.ts new file mode 100644 index 000000000..92023ef63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#262729"; +declare const SiEightsleep: IconType; +export { SiEightsleep as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.mjs new file mode 100644 index 000000000..44ad3d136 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEightsleep.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#262729"; +const SiEightsleep = React.forwardRef(function SiEightsleep2({ title = "Eight Sleep", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.847 7.28V4.105A4.104 4.104 0 0 0 15.745 0H8.258a4.104 4.104 0 0 0-4.105 4.102v3.183a4.092 4.092 0 0 0 2.415 3.738v.588a4.102 4.102 0 0 0-2.415 3.738v4.546A4.104 4.104 0 0 0 8.255 24h7.488a4.104 4.104 0 0 0 4.104-4.104v-4.553a4.102 4.102 0 0 0-2.415-3.738v-.587a4.102 4.102 0 0 0 2.415-3.738zM8.451 5.126c0-.818.662-1.482 1.48-1.483h4.133c.819 0 1.483.663 1.483 1.482v1.991c0 .819-.664 1.482-1.483 1.482H9.93a1.482 1.482 0 0 1-1.482-1.482l.003-1.99zm7.1 13.732c0 .818-.664 1.482-1.483 1.482H9.93a1.482 1.482 0 0 1-1.482-1.482v-2.752c0-.819.664-1.483 1.482-1.483h4.134c.819 0 1.483.664 1.483 1.483l.003 2.752z" }) + ] + } + ); +}); + +export { SiEightsleep as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.cjs new file mode 100644 index 000000000..53269817a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B4CA65"; +const SiEjs = React__namespace.forwardRef(function SiEjs2({ title = "EJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m8.291 5.696-1.258-1.58 1.668-1.55 1.258 1.58-1.668 1.55zm2.34 2.048.205-1.55-5.412-.03-.204 1.55 3.945.022L7.8 17.852l-.839.77-.405-.004c.385.403.803.81 1.236 1.214l1.378-1.265 1.458-10.823h.004zm-6.757 7.254s2.925-.468 3.54.38c0 0-1.756-2.925-4.184-2.925 0-.074-.098-1.353 5.146-2.609l.206-1.53c-8.346 1.108-14.287 4.322.265 13.12 0 0-5.675-4.71-4.973-6.436zM13 6.223 11.216 7.86l-.526 4.037 1.316 1.638 5.675.058.556.702-.38 2.633-.713.685-.018.017h2.193l.556-4.037-1.345-1.638-5.646-.058-.556-.702.351-2.633.731-.702 5.032.058.556.673-.176 1.229h1.55l.264-1.902-1.317-1.667-6.318-.03zm2.882 11.908.545-.523-4.305-.035-.965-1.17-1.258 1.17 1.346 1.667 6.318.03 1.22-1.139h-2.901zM13.13 8.965a103.16 103.16 0 0 1 4.624-.554l-4.145-.048-.457.44-.022.162zm8.026-1.156-.025.179-.018.132c.92-.07 1.87-.139 2.887-.2 0 0-1.113-.067-2.844-.11zM1.914 18.392l1.404 1.784 2.66.02c-1.292-.875-2.393-1.708-3.296-2.499l-.768.695z" }) + ] + } + ); +}); + +exports.default = SiEjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.d.ts new file mode 100644 index 000000000..d2d4ba65d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B4CA65"; +declare const SiEjs: IconType; +export { SiEjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.mjs new file mode 100644 index 000000000..3ca3e2533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B4CA65"; +const SiEjs = React.forwardRef(function SiEjs2({ title = "EJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m8.291 5.696-1.258-1.58 1.668-1.55 1.258 1.58-1.668 1.55zm2.34 2.048.205-1.55-5.412-.03-.204 1.55 3.945.022L7.8 17.852l-.839.77-.405-.004c.385.403.803.81 1.236 1.214l1.378-1.265 1.458-10.823h.004zm-6.757 7.254s2.925-.468 3.54.38c0 0-1.756-2.925-4.184-2.925 0-.074-.098-1.353 5.146-2.609l.206-1.53c-8.346 1.108-14.287 4.322.265 13.12 0 0-5.675-4.71-4.973-6.436zM13 6.223 11.216 7.86l-.526 4.037 1.316 1.638 5.675.058.556.702-.38 2.633-.713.685-.018.017h2.193l.556-4.037-1.345-1.638-5.646-.058-.556-.702.351-2.633.731-.702 5.032.058.556.673-.176 1.229h1.55l.264-1.902-1.317-1.667-6.318-.03zm2.882 11.908.545-.523-4.305-.035-.965-1.17-1.258 1.17 1.346 1.667 6.318.03 1.22-1.139h-2.901zM13.13 8.965a103.16 103.16 0 0 1 4.624-.554l-4.145-.048-.457.44-.022.162zm8.026-1.156-.025.179-.018.132c.92-.07 1.87-.139 2.887-.2 0 0-1.113-.067-2.844-.11zM1.914 18.392l1.404 1.784 2.66.02c-1.292-.875-2.393-1.708-3.296-2.499l-.768.695z" }) + ] + } + ); +}); + +export { SiEjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.cjs new file mode 100644 index 000000000..150762d0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiElastic = React__namespace.forwardRef(function SiElastic2({ title = "Elastic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.345 16.33l-3.959-.926-1.05-2.01 5.177-4.535a3.962 3.962 0 012.559 3.702 4.006 4.006 0 01-2.727 3.77m-2.976 4.68c-.616 0-1.22-.207-1.714-.587l.782-4.077 3.596.841c.115.31.172.642.172.987a2.839 2.839 0 01-2.836 2.836m-2.637-.586a5.92 5.92 0 01-4.908 2.6A5.947 5.947 0 014 15.905l5.167-4.67 5.272 2.403 1.167 2.23zM.928 11.443a4.007 4.007 0 012.726-3.77l3.95.933.927 1.98-5.05 4.565a3.97 3.97 0 01-2.553-3.708m5.703-8.45a2.841 2.841 0 011.723.58l-.789 4.092-3.598-.85a2.842 2.842 0 01-.172-.986A2.84 2.84 0 016.63 2.992m2.66.59A5.92 5.92 0 0120.1 6.93c0 .4-.038.781-.114 1.164l-5.299 4.643-5.251-2.394-1.026-2.19zM24 12.571a4.723 4.723 0 00-3.124-4.454 6.695 6.695 0 00.126-1.29A6.789 6.789 0 0014.22.047 6.769 6.769 0 008.727 2.86a3.586 3.586 0 00-2.204-.754A3.604 3.604 0 003.15 6.959 4.786 4.786 0 000 11.431 4.727 4.727 0 003.139 15.9a6.876 6.876 0 00-.124 1.289 6.773 6.773 0 006.765 6.765c2.19 0 4.22-1.052 5.49-2.824a3.568 3.568 0 002.207.769 3.603 3.603 0 003.374-4.854A4.785 4.785 0 0024 12.572" }) + ] + } + ); +}); + +exports.default = SiElastic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.d.ts new file mode 100644 index 000000000..8a827940f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiElastic: IconType; +export { SiElastic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.mjs new file mode 100644 index 000000000..c600c3c7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElastic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiElastic = React.forwardRef(function SiElastic2({ title = "Elastic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.345 16.33l-3.959-.926-1.05-2.01 5.177-4.535a3.962 3.962 0 012.559 3.702 4.006 4.006 0 01-2.727 3.77m-2.976 4.68c-.616 0-1.22-.207-1.714-.587l.782-4.077 3.596.841c.115.31.172.642.172.987a2.839 2.839 0 01-2.836 2.836m-2.637-.586a5.92 5.92 0 01-4.908 2.6A5.947 5.947 0 014 15.905l5.167-4.67 5.272 2.403 1.167 2.23zM.928 11.443a4.007 4.007 0 012.726-3.77l3.95.933.927 1.98-5.05 4.565a3.97 3.97 0 01-2.553-3.708m5.703-8.45a2.841 2.841 0 011.723.58l-.789 4.092-3.598-.85a2.842 2.842 0 01-.172-.986A2.84 2.84 0 016.63 2.992m2.66.59A5.92 5.92 0 0120.1 6.93c0 .4-.038.781-.114 1.164l-5.299 4.643-5.251-2.394-1.026-2.19zM24 12.571a4.723 4.723 0 00-3.124-4.454 6.695 6.695 0 00.126-1.29A6.789 6.789 0 0014.22.047 6.769 6.769 0 008.727 2.86a3.586 3.586 0 00-2.204-.754A3.604 3.604 0 003.15 6.959 4.786 4.786 0 000 11.431 4.727 4.727 0 003.139 15.9a6.876 6.876 0 00-.124 1.289 6.773 6.773 0 006.765 6.765c2.19 0 4.22-1.052 5.49-2.824a3.568 3.568 0 002.207.769 3.603 3.603 0 003.374-4.854A4.785 4.785 0 0024 12.572" }) + ] + } + ); +}); + +export { SiElastic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.cjs new file mode 100644 index 000000000..36465f348 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiElasticcloud = React__namespace.forwardRef(function SiElasticcloud2({ title = "Elastic Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.318 0c-6.628 0-12 5.372-12 12 0 2.008.495 3.9 1.368 5.563a14.299 14.299 0 0 1 5.09-3.664c.307-.13.624-.22.948-.28A4.842 4.842 0 0 1 8.443 12a4.875 4.875 0 0 1 7.494-4.11 2.218 2.218 0 0 0 2.055.164 12.047 12.047 0 0 0 4.69-3.554A11.975 11.975 0 0 0 13.318 0zM9.426 15.77c-.266.01-.531.069-.783.175a12.044 12.044 0 0 0-4.69 3.555c2.2 2.742 5.576 4.5 9.365 4.5 3.789 0 7.165-1.758 9.364-4.5a12.048 12.048 0 0 0-4.69-3.555 2.217 2.217 0 0 0-2.055.165 4.845 4.845 0 0 1-2.62.765 4.846 4.846 0 0 1-2.618-.765 2.193 2.193 0 0 0-1.273-.34z" }) + ] + } + ); +}); + +exports.default = SiElasticcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.d.ts new file mode 100644 index 000000000..458deff4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiElasticcloud: IconType; +export { SiElasticcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.mjs new file mode 100644 index 000000000..0211e07dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiElasticcloud = React.forwardRef(function SiElasticcloud2({ title = "Elastic Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.318 0c-6.628 0-12 5.372-12 12 0 2.008.495 3.9 1.368 5.563a14.299 14.299 0 0 1 5.09-3.664c.307-.13.624-.22.948-.28A4.842 4.842 0 0 1 8.443 12a4.875 4.875 0 0 1 7.494-4.11 2.218 2.218 0 0 0 2.055.164 12.047 12.047 0 0 0 4.69-3.554A11.975 11.975 0 0 0 13.318 0zM9.426 15.77c-.266.01-.531.069-.783.175a12.044 12.044 0 0 0-4.69 3.555c2.2 2.742 5.576 4.5 9.365 4.5 3.789 0 7.165-1.758 9.364-4.5a12.048 12.048 0 0 0-4.69-3.555 2.217 2.217 0 0 0-2.055.165 4.845 4.845 0 0 1-2.62.765 4.846 4.846 0 0 1-2.618-.765 2.193 2.193 0 0 0-1.273-.34z" }) + ] + } + ); +}); + +export { SiElasticcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.cjs new file mode 100644 index 000000000..231a3e74d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiElasticsearch = React__namespace.forwardRef(function SiElasticsearch2({ title = "Elasticsearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.394 0C8.683 0 4.609 2.716 2.644 6.667h15.641a4.77 4.77 0 0 0 3.073-1.11c.446-.375.864-.785 1.247-1.243l.001-.002A11.974 11.974 0 0 0 13.394 0zM1.804 8.889a12.009 12.009 0 0 0 0 6.222h14.7a3.111 3.111 0 1 0 0-6.222zm.84 8.444C4.61 21.283 8.684 24 13.395 24c3.701 0 7.011-1.677 9.212-4.312l-.001-.002a9.958 9.958 0 0 0-1.247-1.243 4.77 4.77 0 0 0-3.073-1.11z" }) + ] + } + ); +}); + +exports.default = SiElasticsearch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.d.ts new file mode 100644 index 000000000..be7969f31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiElasticsearch: IconType; +export { SiElasticsearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.mjs new file mode 100644 index 000000000..5eb178465 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticsearch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiElasticsearch = React.forwardRef(function SiElasticsearch2({ title = "Elasticsearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.394 0C8.683 0 4.609 2.716 2.644 6.667h15.641a4.77 4.77 0 0 0 3.073-1.11c.446-.375.864-.785 1.247-1.243l.001-.002A11.974 11.974 0 0 0 13.394 0zM1.804 8.889a12.009 12.009 0 0 0 0 6.222h14.7a3.111 3.111 0 1 0 0-6.222zm.84 8.444C4.61 21.283 8.684 24 13.395 24c3.701 0 7.011-1.677 9.212-4.312l-.001-.002a9.958 9.958 0 0 0-1.247-1.243 4.77 4.77 0 0 0-3.073-1.11z" }) + ] + } + ); +}); + +export { SiElasticsearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.cjs new file mode 100644 index 000000000..66a354a41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiElasticstack = React__namespace.forwardRef(function SiElasticstack2({ title = "Elastic Stack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.875 0C.839 0 0 .84 0 1.875v4.792h24V1.875C24 .839 23.16 0 22.125 0zM0 8.889v6.222h24V8.89zm0 8.444v4.792C0 23.161.84 24 1.875 24h9v-6.667zm13.125 0V24h9C23.161 24 24 23.16 24 22.125v-4.792z" }) + ] + } + ); +}); + +exports.default = SiElasticstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.d.ts new file mode 100644 index 000000000..29ed6752d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiElasticstack: IconType; +export { SiElasticstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.mjs new file mode 100644 index 000000000..335fc9668 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElasticstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiElasticstack = React.forwardRef(function SiElasticstack2({ title = "Elastic Stack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.875 0C.839 0 0 .84 0 1.875v4.792h24V1.875C24 .839 23.16 0 22.125 0zM0 8.889v6.222h24V8.89zm0 8.444v4.792C0 23.161.84 24 1.875 24h9v-6.667zm13.125 0V24h9C23.161 24 24 23.16 24 22.125v-4.792z" }) + ] + } + ); +}); + +export { SiElasticstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.cjs new file mode 100644 index 000000000..559207ba3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C2074"; +const SiElavon = React__namespace.forwardRef(function SiElavon2({ title = "Elavon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.028 12.248c-.38.9-.752 1.867-1.123 2.908a62.992 62.992 0 00-1.016 3.13h.355a48.858 48.858 0 011.76-4.79c.222-.513.446-.992.669-1.463-.215.066-.43.132-.645.215zm7.32-5.717c-.389-1.148-.959-1.735-1.694-1.735h-.008c-1.347 0-3.024 1.983-4.693 5.403.29-.107.579-.206.86-.306 1.164-1.957 2.271-3.114 3.073-3.114h.074c.446.041.777.47.967 1.28.495 2.082-.05 6.163-1.264 10.467.933.058 1.751.29 2.437.678.933-5.362 1.098-10.17.248-12.673zM18.1 10.422c0-.429.85.132-.033-1.47-4.378.371-10.525 3.18-16.217 7.765-.644.52-1.263 1.041-1.85 1.57h.363c.108-.083.207-.174.314-.265 5.99-4.816 12.533-7.616 16.977-7.616.149 0 .297.008.446.016zm2.255-1.397c.072.629.11 1.26.116 1.893a4.01 4.01 0 011.33.893c.81.826 1.174 1.956 1.092 3.369-.058.958-.324 2.008-.77 3.115h.24c.967-1.76 1.536-3.412 1.627-4.85.075-1.355-.28-2.436-1.049-3.22-.627-.645-1.52-1.026-2.586-1.2Z" }) + ] + } + ); +}); + +exports.default = SiElavon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.d.ts new file mode 100644 index 000000000..a6bab62e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C2074"; +declare const SiElavon: IconType; +export { SiElavon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.mjs new file mode 100644 index 000000000..a47a83abe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElavon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C2074"; +const SiElavon = React.forwardRef(function SiElavon2({ title = "Elavon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.028 12.248c-.38.9-.752 1.867-1.123 2.908a62.992 62.992 0 00-1.016 3.13h.355a48.858 48.858 0 011.76-4.79c.222-.513.446-.992.669-1.463-.215.066-.43.132-.645.215zm7.32-5.717c-.389-1.148-.959-1.735-1.694-1.735h-.008c-1.347 0-3.024 1.983-4.693 5.403.29-.107.579-.206.86-.306 1.164-1.957 2.271-3.114 3.073-3.114h.074c.446.041.777.47.967 1.28.495 2.082-.05 6.163-1.264 10.467.933.058 1.751.29 2.437.678.933-5.362 1.098-10.17.248-12.673zM18.1 10.422c0-.429.85.132-.033-1.47-4.378.371-10.525 3.18-16.217 7.765-.644.52-1.263 1.041-1.85 1.57h.363c.108-.083.207-.174.314-.265 5.99-4.816 12.533-7.616 16.977-7.616.149 0 .297.008.446.016zm2.255-1.397c.072.629.11 1.26.116 1.893a4.01 4.01 0 011.33.893c.81.826 1.174 1.956 1.092 3.369-.058.958-.324 2.008-.77 3.115h.24c.967-1.76 1.536-3.412 1.627-4.85.075-1.355-.28-2.436-1.049-3.22-.627-.645-1.52-1.026-2.586-1.2Z" }) + ] + } + ); +}); + +export { SiElavon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.cjs new file mode 100644 index 000000000..8f8c36abb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#47848F"; +const SiElectron = React__namespace.forwardRef(function SiElectron2({ title = "Electron", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0111 0c-.85 0-1.5392.6891-1.5392 1.5392 0 .8501.6891 1.5393 1.5392 1.5393.595 0 1.11-.338 1.3662-.832 2.2208 1.2675 3.847 5.4728 3.847 10.3623 0 2.0715-.2891 4.056-.825 5.7685a.3215.3215 0 0 0 .2107.403.322.322 0 0 0 .4033-.2111c.5558-1.7763.8542-3.8251.8542-5.9604 0-5.1927-1.7717-9.686-4.3206-11.0027.001-.0223.0035-.0443.0035-.0669 0-.85-.6891-1.5392-1.5393-1.5392zm0 .6432a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792zm-5.486 4.3052c-2.067.0074-3.6473.6646-4.3885 1.9485-.7375 1.2774-.5267 2.971.5113 4.7813a.3217.3217 0 0 0 .558-.32C2.271 9.7274 2.089 8.266 2.6938 7.2185c.821-1.422 3.033-1.9552 5.9321-1.4271a.3216.3216 0 0 0 .1153-.6329c-.784-.1428-1.5271-.2125-2.216-.21zm11.0522.0176a.3216.3216 0 0 0-.0084.6432c1.8337.0239 3.1556.5956 3.7502 1.6256.8192 1.419.1798 3.5947-1.7182 5.837a.322.322 0 0 0 .0377.4535.3215.3215 0 0 0 .4532-.0377c2.0535-2.426 2.7708-4.8661 1.7845-6.5744-.7257-1.257-2.26-1.9207-4.299-1.9472zm-2.6984.2924a.3225.3225 0 0 0-.0647.0072c-1.8568.3979-3.8333 1.1755-5.7314 2.2714-4.5699 2.6384-7.5924 6.4948-7.3601 9.3717-.4726.2628-.7928.7664-.7928 1.3455 0 .85.6892 1.5392 1.5393 1.5392.85 0 1.5392-.6891 1.5392-1.5392 0-.8501-.6891-1.5393-1.5392-1.5393-.038 0-.0754.003-.1128.0057-.1002-2.5597 2.7434-6.1412 7.048-8.6265 1.8413-1.063 3.7551-1.8163 5.5445-2.1997a.3217.3217 0 0 0-.07-.636zm-2.8787 6.2364a1.1192 1.1192 0 0 0-.2243.0255c-.6012.1301-.983.7225-.8533 1.3238.1302.6012.7226.9832 1.3238.8533.6012-.1302.9832-.7226.8533-1.3238-.1139-.526-.5816-.8844-1.0995-.8788zM4.532 13.341a.321.321 0 0 0-.2318.0835.3214.3214 0 0 0-.0214.4542c1.2682 1.3936 2.9157 2.701 4.7946 3.7857 4.4146 2.5489 9.1056 3.2849 11.5608 1.8392a1.53 1.53 0 0 0 .8966.2899c.8501 0 1.5392-.6891 1.5392-1.5392 0-.8501-.689-1.5393-1.5392-1.5393-.85 0-1.5392.6892-1.5392 1.5393 0 .276.0737.5344.201.7584-2.2448 1.214-6.631.5002-10.7976-1.9054-1.8228-1.0524-3.418-2.3181-4.6404-3.6614a.3206.3206 0 0 0-.2226-.1049zm-2.0628 4.0172a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792zm19.0616 0a.896.896 0 1 1 0 1.792.891.891 0 0 1-.5864-.2194c-.0025-.004-.0039-.0083-.0066-.0123a.3195.3195 0 0 0-.0957-.0914.896.896 0 0 1 .6887-1.4689zm-14.0045 1.368a.3215.3215 0 0 0-.3207.4296C8.2793 22.154 10.036 24 12.0111 24c1.4406 0 2.7735-.9822 3.8128-2.711a.3215.3215 0 0 0-.11-.4413.3219.3219 0 0 0-.4415.11c-.934 1.5537-2.0812 2.399-3.2613 2.399-1.6407 0-3.2075-1.6465-4.2-4.4179a.3216.3216 0 0 0-.2848-.2126z" }) + ] + } + ); +}); + +exports.default = SiElectron; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.d.ts new file mode 100644 index 000000000..f01879a93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#47848F"; +declare const SiElectron: IconType; +export { SiElectron as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.mjs new file mode 100644 index 000000000..0f9bbc5ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectron.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#47848F"; +const SiElectron = React.forwardRef(function SiElectron2({ title = "Electron", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0111 0c-.85 0-1.5392.6891-1.5392 1.5392 0 .8501.6891 1.5393 1.5392 1.5393.595 0 1.11-.338 1.3662-.832 2.2208 1.2675 3.847 5.4728 3.847 10.3623 0 2.0715-.2891 4.056-.825 5.7685a.3215.3215 0 0 0 .2107.403.322.322 0 0 0 .4033-.2111c.5558-1.7763.8542-3.8251.8542-5.9604 0-5.1927-1.7717-9.686-4.3206-11.0027.001-.0223.0035-.0443.0035-.0669 0-.85-.6891-1.5392-1.5393-1.5392zm0 .6432a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792zm-5.486 4.3052c-2.067.0074-3.6473.6646-4.3885 1.9485-.7375 1.2774-.5267 2.971.5113 4.7813a.3217.3217 0 0 0 .558-.32C2.271 9.7274 2.089 8.266 2.6938 7.2185c.821-1.422 3.033-1.9552 5.9321-1.4271a.3216.3216 0 0 0 .1153-.6329c-.784-.1428-1.5271-.2125-2.216-.21zm11.0522.0176a.3216.3216 0 0 0-.0084.6432c1.8337.0239 3.1556.5956 3.7502 1.6256.8192 1.419.1798 3.5947-1.7182 5.837a.322.322 0 0 0 .0377.4535.3215.3215 0 0 0 .4532-.0377c2.0535-2.426 2.7708-4.8661 1.7845-6.5744-.7257-1.257-2.26-1.9207-4.299-1.9472zm-2.6984.2924a.3225.3225 0 0 0-.0647.0072c-1.8568.3979-3.8333 1.1755-5.7314 2.2714-4.5699 2.6384-7.5924 6.4948-7.3601 9.3717-.4726.2628-.7928.7664-.7928 1.3455 0 .85.6892 1.5392 1.5393 1.5392.85 0 1.5392-.6891 1.5392-1.5392 0-.8501-.6891-1.5393-1.5392-1.5393-.038 0-.0754.003-.1128.0057-.1002-2.5597 2.7434-6.1412 7.048-8.6265 1.8413-1.063 3.7551-1.8163 5.5445-2.1997a.3217.3217 0 0 0-.07-.636zm-2.8787 6.2364a1.1192 1.1192 0 0 0-.2243.0255c-.6012.1301-.983.7225-.8533 1.3238.1302.6012.7226.9832 1.3238.8533.6012-.1302.9832-.7226.8533-1.3238-.1139-.526-.5816-.8844-1.0995-.8788zM4.532 13.341a.321.321 0 0 0-.2318.0835.3214.3214 0 0 0-.0214.4542c1.2682 1.3936 2.9157 2.701 4.7946 3.7857 4.4146 2.5489 9.1056 3.2849 11.5608 1.8392a1.53 1.53 0 0 0 .8966.2899c.8501 0 1.5392-.6891 1.5392-1.5392 0-.8501-.689-1.5393-1.5392-1.5393-.85 0-1.5392.6892-1.5392 1.5393 0 .276.0737.5344.201.7584-2.2448 1.214-6.631.5002-10.7976-1.9054-1.8228-1.0524-3.418-2.3181-4.6404-3.6614a.3206.3206 0 0 0-.2226-.1049zm-2.0628 4.0172a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792zm19.0616 0a.896.896 0 1 1 0 1.792.891.891 0 0 1-.5864-.2194c-.0025-.004-.0039-.0083-.0066-.0123a.3195.3195 0 0 0-.0957-.0914.896.896 0 0 1 .6887-1.4689zm-14.0045 1.368a.3215.3215 0 0 0-.3207.4296C8.2793 22.154 10.036 24 12.0111 24c1.4406 0 2.7735-.9822 3.8128-2.711a.3215.3215 0 0 0-.11-.4413.3219.3219 0 0 0-.4415.11c-.934 1.5537-2.0812 2.399-3.2613 2.399-1.6407 0-3.2075-1.6465-4.2-4.4179a.3216.3216 0 0 0-.2848-.2126z" }) + ] + } + ); +}); + +export { SiElectron as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.cjs new file mode 100644 index 000000000..13f738bea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiElectronbuilder = React__namespace.forwardRef(function SiElectronbuilder2({ title = "electron-builder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 7.01a3.506 3.506 0 003.506-3.505A3.506 3.506 0 0012 0a3.506 3.506 0 00-3.506 3.506A3.506 3.506 0 0012 7.01m0 4.137C9.243 8.588 5.574 7.01 1.484 7.01v12.852C5.574 19.863 9.243 21.44 12 24c2.757-2.56 6.426-4.137 10.516-4.137V7.01c-4.09 0-7.759 1.578-10.516 4.137z" }) + ] + } + ); +}); + +exports.default = SiElectronbuilder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.d.ts new file mode 100644 index 000000000..0e5a07cd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiElectronbuilder: IconType; +export { SiElectronbuilder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.mjs new file mode 100644 index 000000000..e7e65b04c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronbuilder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiElectronbuilder = React.forwardRef(function SiElectronbuilder2({ title = "electron-builder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 7.01a3.506 3.506 0 003.506-3.505A3.506 3.506 0 0012 0a3.506 3.506 0 00-3.506 3.506A3.506 3.506 0 0012 7.01m0 4.137C9.243 8.588 5.574 7.01 1.484 7.01v12.852C5.574 19.863 9.243 21.44 12 24c2.757-2.56 6.426-4.137 10.516-4.137V7.01c-4.09 0-7.759 1.578-10.516 4.137z" }) + ] + } + ); +}); + +export { SiElectronbuilder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.cjs new file mode 100644 index 000000000..0361ba312 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E79537"; +const SiElectronfiddle = React__namespace.forwardRef(function SiElectronfiddle2({ title = "Electron Fiddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 0c-.6312 0-1.1429.5117-1.1429 1.1429v13.8583c-1.9716.5075-3.4285 2.2973-3.4285 4.4274C3.4286 21.9533 5.4753 24 8 24c2.5247 0 4.5714-2.0467 4.5714-4.5714 0-2.1301-1.4569-3.92-3.4285-4.4274v-4.7155h4.7346c.541 0 .9796-.5117.9796-1.1428 0-.6312-.4386-1.1429-.9796-1.1429H9.143V2.2857h10.2857c.6312 0 1.1428-.5117 1.1428-1.1428C20.5714.5117 20.0598 0 19.4286 0Zm0 17.1429c1.2624 0 2.2857 1.0233 2.2857 2.2857 0 1.2623-1.0233 2.2857-2.2857 2.2857-1.2624 0-2.2857-1.0234-2.2857-2.2857 0-1.2624 1.0233-2.2857 2.2857-2.2857z" }) + ] + } + ); +}); + +exports.default = SiElectronfiddle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.d.ts new file mode 100644 index 000000000..b2df68c8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E79537"; +declare const SiElectronfiddle: IconType; +export { SiElectronfiddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.mjs new file mode 100644 index 000000000..04080bb44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElectronfiddle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E79537"; +const SiElectronfiddle = React.forwardRef(function SiElectronfiddle2({ title = "Electron Fiddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8 0c-.6312 0-1.1429.5117-1.1429 1.1429v13.8583c-1.9716.5075-3.4285 2.2973-3.4285 4.4274C3.4286 21.9533 5.4753 24 8 24c2.5247 0 4.5714-2.0467 4.5714-4.5714 0-2.1301-1.4569-3.92-3.4285-4.4274v-4.7155h4.7346c.541 0 .9796-.5117.9796-1.1428 0-.6312-.4386-1.1429-.9796-1.1429H9.143V2.2857h10.2857c.6312 0 1.1428-.5117 1.1428-1.1428C20.5714.5117 20.0598 0 19.4286 0Zm0 17.1429c1.2624 0 2.2857 1.0233 2.2857 2.2857 0 1.2623-1.0233 2.2857-2.2857 2.2857-1.2624 0-2.2857-1.0234-2.2857-2.2857 0-1.2624 1.0233-2.2857 2.2857-2.2857z" }) + ] + } + ); +}); + +export { SiElectronfiddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.cjs new file mode 100644 index 000000000..a75001102 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C3A83"; +const SiElegoo = React__namespace.forwardRef(function SiElegoo2({ title = "Elegoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.686 7.479c.54.829 1.032 1.665 1.476 2.505.64-1.217 1.849-2.086 3.328-2.086 2.217 0 3.826 1.954 3.826 4.102 0 2.149-1.609 4.102-3.826 4.102-.656 0-1.26-.171-1.784-.467l-.001-.001c-.635-.36-1.153-.905-1.509-1.553-.484-.804-.725-1.706-.991-2.657-.598-2.134-1.252-3.773-3.194-4.988-1.001-.626-2.196-.985-3.501-.985C2.815 5.451 0 8.323 0 12c0 3.727 2.761 6.549 6.51 6.549 1.955 0 3.639-.766 4.805-2.027-.543-.83-1.034-1.664-1.477-2.505-.641 1.217-1.849 2.085-3.328 2.085-2.218 0-3.827-1.953-3.827-4.102 0-2.148 1.609-4.102 3.827-4.102.655 0 1.26.171 1.783.469h.001c.635.36 1.154.904 1.509 1.553.574.951.807 2.041 1.144 3.188.555 1.89 1.285 3.339 3.002 4.432 1.008.642 2.217 1.009 3.541 1.009 3.694 0 6.51-2.872 6.51-6.549 0-3.727-2.76-6.549-6.51-6.549-1.954 0-3.64.766-4.804 2.028Z" }) + ] + } + ); +}); + +exports.default = SiElegoo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.d.ts new file mode 100644 index 000000000..b0aa67f8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C3A83"; +declare const SiElegoo: IconType; +export { SiElegoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.mjs new file mode 100644 index 000000000..ce04f0c0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElegoo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C3A83"; +const SiElegoo = React.forwardRef(function SiElegoo2({ title = "Elegoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.686 7.479c.54.829 1.032 1.665 1.476 2.505.64-1.217 1.849-2.086 3.328-2.086 2.217 0 3.826 1.954 3.826 4.102 0 2.149-1.609 4.102-3.826 4.102-.656 0-1.26-.171-1.784-.467l-.001-.001c-.635-.36-1.153-.905-1.509-1.553-.484-.804-.725-1.706-.991-2.657-.598-2.134-1.252-3.773-3.194-4.988-1.001-.626-2.196-.985-3.501-.985C2.815 5.451 0 8.323 0 12c0 3.727 2.761 6.549 6.51 6.549 1.955 0 3.639-.766 4.805-2.027-.543-.83-1.034-1.664-1.477-2.505-.641 1.217-1.849 2.085-3.328 2.085-2.218 0-3.827-1.953-3.827-4.102 0-2.148 1.609-4.102 3.827-4.102.655 0 1.26.171 1.783.469h.001c.635.36 1.154.904 1.509 1.553.574.951.807 2.041 1.144 3.188.555 1.89 1.285 3.339 3.002 4.432 1.008.642 2.217 1.009 3.541 1.009 3.694 0 6.51-2.872 6.51-6.549 0-3.727-2.76-6.549-6.51-6.549-1.954 0-3.64.766-4.804 2.028Z" }) + ] + } + ); +}); + +export { SiElegoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElement.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElement.cjs new file mode 100644 index 000000000..92e84e0d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElement.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0DBD8B"; +const SiElement = React__namespace.forwardRef(function SiElement2({ title = "Element", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm-1.314 4.715c3.289 0 5.956 2.66 5.956 5.943 0 .484-.394.877-.879.877s-.879-.393-.879-.877c0-2.313-1.88-4.189-4.198-4.189-.486 0-.879-.393-.879-.877s.392-.877.879-.877zm-5.092 9.504c-.486 0-.879-.394-.879-.877 0-3.283 2.666-5.945 5.956-5.945.485 0 .879.393.879.877s-.394.876-.879.876c-2.319 0-4.198 1.877-4.198 4.191 0 .484-.395.878-.879.878zm7.735 5.067c-3.29 0-5.957-2.662-5.957-5.944 0-.484.394-.878.879-.878s.879.394.879.878c0 2.313 1.88 4.189 4.199 4.189.485 0 .879.393.879.877 0 .486-.394.878-.879.878zm0-2.683c-.485 0-.88-.393-.88-.876 0-.484.395-.878.88-.878 2.318 0 4.199-1.876 4.199-4.19 0-.484.393-.877.879-.877.485 0 .879.393.879.877 0 3.282-2.667 5.944-5.957 5.944z" }) + ] + } + ); +}); + +exports.default = SiElement; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElement.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElement.d.ts new file mode 100644 index 000000000..0f67b0a40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElement.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0DBD8B"; +declare const SiElement: IconType; +export { SiElement as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElement.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElement.mjs new file mode 100644 index 000000000..70bb13593 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElement.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0DBD8B"; +const SiElement = React.forwardRef(function SiElement2({ title = "Element", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm-1.314 4.715c3.289 0 5.956 2.66 5.956 5.943 0 .484-.394.877-.879.877s-.879-.393-.879-.877c0-2.313-1.88-4.189-4.198-4.189-.486 0-.879-.393-.879-.877s.392-.877.879-.877zm-5.092 9.504c-.486 0-.879-.394-.879-.877 0-3.283 2.666-5.945 5.956-5.945.485 0 .879.393.879.877s-.394.876-.879.876c-2.319 0-4.198 1.877-4.198 4.191 0 .484-.395.878-.879.878zm7.735 5.067c-3.29 0-5.957-2.662-5.957-5.944 0-.484.394-.878.879-.878s.879.394.879.878c0 2.313 1.88 4.189 4.199 4.189.485 0 .879.393.879.877 0 .486-.394.878-.879.878zm0-2.683c-.485 0-.88-.393-.88-.876 0-.484.395-.878.88-.878 2.318 0 4.199-1.876 4.199-4.19 0-.484.393-.877.879-.877.485 0 .879.393.879.877 0 3.282-2.667 5.944-5.957 5.944z" }) + ] + } + ); +}); + +export { SiElement as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.cjs new file mode 100644 index 000000000..ebb30cf79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#64BAFF"; +const SiElementary = React__namespace.forwardRef(function SiElementary2({ title = "elementary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm0 1a11 11 0 0 1 10.59 8.01 19.09 19.09 0 0 1-4.66 6.08c-.94.81-1.96 1.53-3.08 2.04-1.13.5-2.37.8-3.6.72a6.23 6.23 0 0 1-2.66-.76 20.02 20.02 0 0 0 5.68-4.58 9.97 9.97 0 0 0 2.31-4.17c.18-.79.2-1.6.04-2.4a4.42 4.42 0 0 0-1.08-2.11 4.33 4.33 0 0 0-2-1.19 5.25 5.25 0 0 0-2.33-.08A7.8 7.8 0 0 0 7.2 4.85a9.77 9.77 0 0 0-2.94 7.49 7.88 7.88 0 0 0 1.95 4.59 18 18 0 0 1-3.56.85A11 11 0 0 1 12 1zm.07 2.22c.77 0 1.55.24 2.17.7.55.42.97 1.02 1.2 1.68.23.65.3 1.37.21 2.06a7.85 7.85 0 0 1-1.7 3.76 16.22 16.22 0 0 1-6.37 4.96c-.48-.42-.9-.92-1.2-1.48a6.61 6.61 0 0 1-.75-3.87c.12-1.32.58-2.6 1.2-3.79a7.92 7.92 0 0 1 3.02-3.42c.68-.37 1.45-.6 2.22-.6zm10.83 7.3A11 11 0 0 1 3.52 19a19.8 19.8 0 0 0 3.63-1.2c.51.4 1.08.71 1.67.94a8 8 0 0 0 5.44-.04 13.3 13.3 0 0 0 4.64-2.95 20 20 0 0 0 4-5.22z" }) + ] + } + ); +}); + +exports.default = SiElementary; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.d.ts new file mode 100644 index 000000000..1a9ac51d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#64BAFF"; +declare const SiElementary: IconType; +export { SiElementary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.mjs new file mode 100644 index 000000000..0a5223e38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElementary.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#64BAFF"; +const SiElementary = React.forwardRef(function SiElementary2({ title = "elementary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm0 1a11 11 0 0 1 10.59 8.01 19.09 19.09 0 0 1-4.66 6.08c-.94.81-1.96 1.53-3.08 2.04-1.13.5-2.37.8-3.6.72a6.23 6.23 0 0 1-2.66-.76 20.02 20.02 0 0 0 5.68-4.58 9.97 9.97 0 0 0 2.31-4.17c.18-.79.2-1.6.04-2.4a4.42 4.42 0 0 0-1.08-2.11 4.33 4.33 0 0 0-2-1.19 5.25 5.25 0 0 0-2.33-.08A7.8 7.8 0 0 0 7.2 4.85a9.77 9.77 0 0 0-2.94 7.49 7.88 7.88 0 0 0 1.95 4.59 18 18 0 0 1-3.56.85A11 11 0 0 1 12 1zm.07 2.22c.77 0 1.55.24 2.17.7.55.42.97 1.02 1.2 1.68.23.65.3 1.37.21 2.06a7.85 7.85 0 0 1-1.7 3.76 16.22 16.22 0 0 1-6.37 4.96c-.48-.42-.9-.92-1.2-1.48a6.61 6.61 0 0 1-.75-3.87c.12-1.32.58-2.6 1.2-3.79a7.92 7.92 0 0 1 3.02-3.42c.68-.37 1.45-.6 2.22-.6zm10.83 7.3A11 11 0 0 1 3.52 19a19.8 19.8 0 0 0 3.63-1.2c.51.4 1.08.71 1.67.94a8 8 0 0 0 5.44-.04 13.3 13.3 0 0 0 4.64-2.95 20 20 0 0 0 4-5.22z" }) + ] + } + ); +}); + +export { SiElementary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.cjs new file mode 100644 index 000000000..b94d292b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#92003B"; +const SiElementor = React__namespace.forwardRef(function SiElementor2({ title = "Elementor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12c0 6.626 5.372 12 12 12s12-5.372 12-12c0-6.626-5.372-12-12-12ZM9 17H7V7H9Zm8 0H11V15h6Zm0-4H11V11h6Zm0-4H11V7h6Z" }) + ] + } + ); +}); + +exports.default = SiElementor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.d.ts new file mode 100644 index 000000000..f6e2e7de7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#92003B"; +declare const SiElementor: IconType; +export { SiElementor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.mjs new file mode 100644 index 000000000..3df33a180 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElementor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#92003B"; +const SiElementor = React.forwardRef(function SiElementor2({ title = "Elementor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12c0 6.626 5.372 12 12 12s12-5.372 12-12c0-6.626-5.372-12-12-12ZM9 17H7V7H9Zm8 0H11V15h6Zm0-4H11V11h6Zm0-4H11V7h6Z" }) + ] + } + ); +}); + +export { SiElementor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.cjs new file mode 100644 index 000000000..cbee0c848 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiElevenlabs = React__namespace.forwardRef(function SiElevenlabs2({ title = "ElevenLabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.6035 0v24h4.9317V0zm9.8613 0v24h4.9317V0z" }) + ] + } + ); +}); + +exports.default = SiElevenlabs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.d.ts new file mode 100644 index 000000000..d2c329629 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiElevenlabs: IconType; +export { SiElevenlabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.mjs new file mode 100644 index 000000000..ab807370a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElevenlabs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiElevenlabs = React.forwardRef(function SiElevenlabs2({ title = "ElevenLabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.6035 0v24h4.9317V0zm9.8613 0v24h4.9317V0z" }) + ] + } + ); +}); + +export { SiElevenlabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.cjs new file mode 100644 index 000000000..bf2fae191 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const SiEleventy = React__namespace.forwardRef(function SiEleventy2({ title = "Eleventy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.398 12V0h17.204v24H3.398zm13.17 6.07a1.07 1.07 0 00.373-.107c.432-.213.68-.672.877-1.626.076-.372 1.195-6.168 1.209-6.263.026-.186-.008-.382-.084-.476a.325.325 0 00-.087-.064l-.06-.031h-.291c-.253 0-.298 0-.348.02-.113.039-.207.156-.255.316-.011.038-.168.881-.348 1.873l-.328 1.802-.046-.21c-.56-2.547-.764-3.452-.794-3.532a.383.383 0 00-.103-.16c-.105-.107-.117-.11-.567-.11-.411 0-.422 0-.5.074-.086.079-.122.216-.111.42.006.115.045.27.688 2.784.663 2.587.751 2.943.787 3.177.046.3-.05.713-.208.893-.032.037-.037.039-.084.032-.028 0-.12-.027-.204-.051-.268-.078-.362-.072-.462.028-.096.096-.137.248-.138.51 0 .256.028.34.159.473.131.133.324.208.595.23.164.012.22.012.33-.001zm-1.896-1.712a.31.31 0 00.16-.192c.02-.058.022-.098.022-.356 0-.255-.003-.299-.021-.354-.04-.121-.136-.196-.278-.217-.041-.01-.2-.01-.355-.01-.365-.001-.378-.01-.446-.184-.068-.18-.096-.326-.113-.602a85.799 85.799 0 01-.012-1.94v-1.765h.35c.454 0 .507-.01.602-.113a.465.465 0 00.102-.24 3.273 3.273 0 000-.534c-.026-.16-.099-.271-.211-.322-.057-.025-.065-.026-.45-.03h-.392l-.003-1.22c-.003-1.09-.005-1.227-.021-1.278a.378.378 0 00-.201-.247c-.052-.024-.072-.025-.32-.029-.27 0-.356 0-.429.038-.087.042-.148.133-.185.278-.014.054-.032.346-.076 1.262l-.06 1.194s-.08 0-.18.01c-.206.01-.263.022-.327.086-.092.092-.12.19-.127.455-.01.334.02.487.115.588.075.081.134.1.345.106l.173.01v1.785c0 1.7.006 2.019.034 2.274.041.37.13.709.241.928.194.38.544.617.988.668h1.005l.07-.04zm-7.447 0c.098-.053.16-.154.2-.332.016-.077.018-.401.018-4.518 0-4.184-.001-4.44-.02-4.51-.05-.194-.19-.29-.378-.26-.035.01-.344.084-.686.175-.343.09-.684.18-.758.198-.17.043-.214.062-.281.126-.105.098-.122.185-.122.606 0 .416.016.5.12.604.094.095.189.1.456.03.103-.026.193-.048.2-.048.01 0 .014.784.017 3.763.003 3.436.005 3.77.021 3.84.048.202.113.296.236.34.034.013.133.016.487.014.435 0 .445 0 .49-.027zm3.203 0c.092-.046.152-.135.197-.29l.024-.084.003-4.435c.002-3.194 0-4.456-.01-4.509-.033-.2-.145-.308-.322-.308-.066 0-.198.03-.857.204-.56.147-.799.214-.849.239a.34.34 0 00-.17.184c-.024.06-.024.071-.024.479 0 .415 0 .417.026.483a.362.362 0 00.083.12c.1.1.172.105.456.034a5.46 5.46 0 01.208-.05c.008 0 .012 1.202.014 3.791l.003 3.79.026.086a.48.48 0 00.135.23c.078.062.085.063.57.06.414 0 .447 0 .487-.024z" }) + ] + } + ); +}); + +exports.default = SiEleventy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.d.ts new file mode 100644 index 000000000..31a9c9ca0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const SiEleventy: IconType; +export { SiEleventy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.mjs new file mode 100644 index 000000000..77326b5d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEleventy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const SiEleventy = React.forwardRef(function SiEleventy2({ title = "Eleventy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.398 12V0h17.204v24H3.398zm13.17 6.07a1.07 1.07 0 00.373-.107c.432-.213.68-.672.877-1.626.076-.372 1.195-6.168 1.209-6.263.026-.186-.008-.382-.084-.476a.325.325 0 00-.087-.064l-.06-.031h-.291c-.253 0-.298 0-.348.02-.113.039-.207.156-.255.316-.011.038-.168.881-.348 1.873l-.328 1.802-.046-.21c-.56-2.547-.764-3.452-.794-3.532a.383.383 0 00-.103-.16c-.105-.107-.117-.11-.567-.11-.411 0-.422 0-.5.074-.086.079-.122.216-.111.42.006.115.045.27.688 2.784.663 2.587.751 2.943.787 3.177.046.3-.05.713-.208.893-.032.037-.037.039-.084.032-.028 0-.12-.027-.204-.051-.268-.078-.362-.072-.462.028-.096.096-.137.248-.138.51 0 .256.028.34.159.473.131.133.324.208.595.23.164.012.22.012.33-.001zm-1.896-1.712a.31.31 0 00.16-.192c.02-.058.022-.098.022-.356 0-.255-.003-.299-.021-.354-.04-.121-.136-.196-.278-.217-.041-.01-.2-.01-.355-.01-.365-.001-.378-.01-.446-.184-.068-.18-.096-.326-.113-.602a85.799 85.799 0 01-.012-1.94v-1.765h.35c.454 0 .507-.01.602-.113a.465.465 0 00.102-.24 3.273 3.273 0 000-.534c-.026-.16-.099-.271-.211-.322-.057-.025-.065-.026-.45-.03h-.392l-.003-1.22c-.003-1.09-.005-1.227-.021-1.278a.378.378 0 00-.201-.247c-.052-.024-.072-.025-.32-.029-.27 0-.356 0-.429.038-.087.042-.148.133-.185.278-.014.054-.032.346-.076 1.262l-.06 1.194s-.08 0-.18.01c-.206.01-.263.022-.327.086-.092.092-.12.19-.127.455-.01.334.02.487.115.588.075.081.134.1.345.106l.173.01v1.785c0 1.7.006 2.019.034 2.274.041.37.13.709.241.928.194.38.544.617.988.668h1.005l.07-.04zm-7.447 0c.098-.053.16-.154.2-.332.016-.077.018-.401.018-4.518 0-4.184-.001-4.44-.02-4.51-.05-.194-.19-.29-.378-.26-.035.01-.344.084-.686.175-.343.09-.684.18-.758.198-.17.043-.214.062-.281.126-.105.098-.122.185-.122.606 0 .416.016.5.12.604.094.095.189.1.456.03.103-.026.193-.048.2-.048.01 0 .014.784.017 3.763.003 3.436.005 3.77.021 3.84.048.202.113.296.236.34.034.013.133.016.487.014.435 0 .445 0 .49-.027zm3.203 0c.092-.046.152-.135.197-.29l.024-.084.003-4.435c.002-3.194 0-4.456-.01-4.509-.033-.2-.145-.308-.322-.308-.066 0-.198.03-.857.204-.56.147-.799.214-.849.239a.34.34 0 00-.17.184c-.024.06-.024.071-.024.479 0 .415 0 .417.026.483a.362.362 0 00.083.12c.1.1.172.105.456.034a5.46 5.46 0 01.208-.05c.008 0 .012 1.202.014 3.791l.003 3.79.026.086a.48.48 0 00.135.23c.078.062.085.063.57.06.414 0 .447 0 .487-.024z" }) + ] + } + ); +}); + +export { SiEleventy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.cjs new file mode 100644 index 000000000..cd724c616 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#101010"; +const SiElgato = React__namespace.forwardRef(function SiElgato2({ title = "Elgato", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.8818 8.3964.0261.0196 9.9494 5.7172c-.4884 2.729-1.9196 5.2223-4.0384 7.0253A11.9262 11.9262 0 0 1 12.097 24c-3.1925 0-6.1939-1.2477-8.4527-3.5144C1.3868 18.2188.1427 15.2044.1427 12c0-3.2042 1.244-6.2187 3.5015-8.4854C5.9019 1.248 8.9032 0 12.097 0c2.4394 0 4.7847.7333 6.783 2.1187 1.9526 1.354 3.4466 3.2357 4.3227 5.4422.1112.2829.2149.5736.3051.8657l-2.1255 1.2359a9.4924 9.4924 0 0 0-.2619-.8694c-1.354-3.8303-4.9813-6.4048-9.0237-6.4048C6.8171 2.3883 2.522 6.7005 2.522 12c0 5.2995 4.295 9.6115 9.5748 9.6115 2.052 0 4.0084-.6442 5.6596-1.8647 1.6172-1.1955 2.8036-2.8337 3.4309-4.7364l.0065-.0419L9.5906 8.3048v7.2256l4.0004-2.3138 2.06 1.1811-5.9962 3.4688-2.12-1.2126V7.1943l2.1174-1.2245 4.2309 2.4279-.0013-.0013" }) + ] + } + ); +}); + +exports.default = SiElgato; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.d.ts new file mode 100644 index 000000000..c85f237fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#101010"; +declare const SiElgato: IconType; +export { SiElgato as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.mjs new file mode 100644 index 000000000..70d3b5e92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElgato.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#101010"; +const SiElgato = React.forwardRef(function SiElgato2({ title = "Elgato", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m13.8818 8.3964.0261.0196 9.9494 5.7172c-.4884 2.729-1.9196 5.2223-4.0384 7.0253A11.9262 11.9262 0 0 1 12.097 24c-3.1925 0-6.1939-1.2477-8.4527-3.5144C1.3868 18.2188.1427 15.2044.1427 12c0-3.2042 1.244-6.2187 3.5015-8.4854C5.9019 1.248 8.9032 0 12.097 0c2.4394 0 4.7847.7333 6.783 2.1187 1.9526 1.354 3.4466 3.2357 4.3227 5.4422.1112.2829.2149.5736.3051.8657l-2.1255 1.2359a9.4924 9.4924 0 0 0-.2619-.8694c-1.354-3.8303-4.9813-6.4048-9.0237-6.4048C6.8171 2.3883 2.522 6.7005 2.522 12c0 5.2995 4.295 9.6115 9.5748 9.6115 2.052 0 4.0084-.6442 5.6596-1.8647 1.6172-1.1955 2.8036-2.8337 3.4309-4.7364l.0065-.0419L9.5906 8.3048v7.2256l4.0004-2.3138 2.06 1.1811-5.9962 3.4688-2.12-1.2126V7.1943l2.1174-1.2245 4.2309 2.4279-.0013-.0013" }) + ] + } + ); +}); + +export { SiElgato as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.cjs new file mode 100644 index 000000000..06cce902f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B275F"; +const SiElixir = React__namespace.forwardRef(function SiElixir2({ title = "Elixir", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.793 16.575c0 3.752-2.927 7.426-7.743 7.426-5.249 0-7.843-3.71-7.843-8.29 0-5.21 3.892-12.952 8-15.647a.397.397 0 0 1 .61.371 9.716 9.716 0 0 0 1.694 6.518c.522.795 1.092 1.478 1.763 2.352.94 1.227 1.637 1.906 2.644 3.842l.015.028a7.107 7.107 0 0 1 .86 3.4z" }) + ] + } + ); +}); + +exports.default = SiElixir; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.d.ts new file mode 100644 index 000000000..2a189c6ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B275F"; +declare const SiElixir: IconType; +export { SiElixir as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.mjs new file mode 100644 index 000000000..cfffb5545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElixir.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B275F"; +const SiElixir = React.forwardRef(function SiElixir2({ title = "Elixir", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.793 16.575c0 3.752-2.927 7.426-7.743 7.426-5.249 0-7.843-3.71-7.843-8.29 0-5.21 3.892-12.952 8-15.647a.397.397 0 0 1 .61.371 9.716 9.716 0 0 0 1.694 6.518c.522.795 1.092 1.478 1.763 2.352.94 1.227 1.637 1.906 2.644 3.842l.015.028a7.107 7.107 0 0 1 .86 3.4z" }) + ] + } + ); +}); + +export { SiElixir as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElk.cjs new file mode 100644 index 000000000..c92e04148 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA9E44"; +const SiElk = React__namespace.forwardRef(function SiElk2({ title = "Elk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.284 0 .038.392C.765 3.308 1.763 4.84 2.9 5.64c1.153.818 2.483.888 3.938.74 1.934-.2 4.117-.836 6.345.095.603.305 1.238.692 1.911 1.206.356-.122.666-.279.975-.392 0 0 .248-.892-.155-2.032-.348-1.001-1.215-2.264-3.404-3.151l-.434 1.358c1.347.557 2.074 1.244 2.445 1.897.055.096.093.183.132.27a7 7 0 0 0-.89-.453c-2.173-1.13-3.913-1.2-5.307-1.374-.742-.087-1.37-.191-1.888-.61C6.05 2.769 5.663 2.029 5.33.74l-1.238.41c.441 1.705 1.03 2.645 1.718 3.211.31.252.642.435.998.566-1.222.074-2.375.058-3.226-.514C2.638 3.743 1.887 2.42 1.284 0m6.925.313c-.07.975.085 1.767.34 2.412.596.083 1.114.095 1.656.2-.418-.522-.79-1.323-.712-2.507Zm9.308 1.175-.843 1.089c.634.626.812 1.375.812 2.01a4.5 4.5 0 0 0-1.014-.774c.558.732.635 2.033.674 2.733l1.199.148s1.362-3.064-.828-5.206m-6.244 6.037C9.919 7.7 9.199 7.3 8.766 8.726c0 0 1.455 2.429 5.331 2.368-.217.992-.116 1.724-.116 2.603 0 2.924-2.09 5.475-6.693 5.475-.86 0-1.787.063-2.723.21C6.218 22.49 9.386 24 13.715 24c1.813 0 3.424-.407 4.804-1.149q.126-.57.236-1.198c.14-.784.217-1.445.255-2.01.178-1.437.279-3.056.31-4.902l-1.896-.67h5.826l.565-1.436c-.55.026-1.207-.296-1.207-.296l.132-.697h1.222l-6.615-3.856c-.735.314-1.51.723-2.05 1.219-.434-.348-1.935-1.436-4.024-1.48" }) + ] + } + ); +}); + +exports.default = SiElk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElk.d.ts new file mode 100644 index 000000000..58cc368cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA9E44"; +declare const SiElk: IconType; +export { SiElk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElk.mjs new file mode 100644 index 000000000..2e67dab82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA9E44"; +const SiElk = React.forwardRef(function SiElk2({ title = "Elk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.284 0 .038.392C.765 3.308 1.763 4.84 2.9 5.64c1.153.818 2.483.888 3.938.74 1.934-.2 4.117-.836 6.345.095.603.305 1.238.692 1.911 1.206.356-.122.666-.279.975-.392 0 0 .248-.892-.155-2.032-.348-1.001-1.215-2.264-3.404-3.151l-.434 1.358c1.347.557 2.074 1.244 2.445 1.897.055.096.093.183.132.27a7 7 0 0 0-.89-.453c-2.173-1.13-3.913-1.2-5.307-1.374-.742-.087-1.37-.191-1.888-.61C6.05 2.769 5.663 2.029 5.33.74l-1.238.41c.441 1.705 1.03 2.645 1.718 3.211.31.252.642.435.998.566-1.222.074-2.375.058-3.226-.514C2.638 3.743 1.887 2.42 1.284 0m6.925.313c-.07.975.085 1.767.34 2.412.596.083 1.114.095 1.656.2-.418-.522-.79-1.323-.712-2.507Zm9.308 1.175-.843 1.089c.634.626.812 1.375.812 2.01a4.5 4.5 0 0 0-1.014-.774c.558.732.635 2.033.674 2.733l1.199.148s1.362-3.064-.828-5.206m-6.244 6.037C9.919 7.7 9.199 7.3 8.766 8.726c0 0 1.455 2.429 5.331 2.368-.217.992-.116 1.724-.116 2.603 0 2.924-2.09 5.475-6.693 5.475-.86 0-1.787.063-2.723.21C6.218 22.49 9.386 24 13.715 24c1.813 0 3.424-.407 4.804-1.149q.126-.57.236-1.198c.14-.784.217-1.445.255-2.01.178-1.437.279-3.056.31-4.902l-1.896-.67h5.826l.565-1.436c-.55.026-1.207-.296-1.207-.296l.132-.697h1.222l-6.615-3.856c-.735.314-1.51.723-2.05 1.219-.434-.348-1.935-1.436-4.024-1.48" }) + ] + } + ); +}); + +export { SiElk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElm.cjs new file mode 100644 index 000000000..f6095e724 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1293D8"; +const SiElm = React__namespace.forwardRef(function SiElm2({ title = "Elm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.986 12.806V23.2l-5.197-5.197zM6.796 6.01H17.19l-5.197 5.197zm9.275-1.12H5.677L.8.015h10.394zm7.116 7.117L17.99 6.81l-5.197 5.197 5.197 5.197zm.813-.813L12.806 0H24zM0 23.2V.813l11.194 11.194zm23.187.8H.8l11.193-11.194Z" }) + ] + } + ); +}); + +exports.default = SiElm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElm.d.ts new file mode 100644 index 000000000..6a23b7d2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1293D8"; +declare const SiElm: IconType; +export { SiElm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElm.mjs new file mode 100644 index 000000000..6ad19bb26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1293D8"; +const SiElm = React.forwardRef(function SiElm2({ title = "Elm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.986 12.806V23.2l-5.197-5.197zM6.796 6.01H17.19l-5.197 5.197zm9.275-1.12H5.677L.8.015h10.394zm7.116 7.117L17.99 6.81l-5.197 5.197 5.197 5.197zm.813-.813L12.806 0H24zM0 23.2V.813l11.194 11.194zm23.187.8H.8l11.193-11.194Z" }) + ] + } + ); +}); + +export { SiElm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.cjs new file mode 100644 index 000000000..eb0df0709 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6C00"; +const SiElsevier = React__namespace.forwardRef(function SiElsevier2({ title = "Elsevier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.687 11.326c.256-.137.405-.303.43-.497.042-.174-.116-.157-.153-.124-.145.116-.33.294-.509.414a1.862 1.862 0 00-.248.033c-.02-.009-.046-.042-.033-.054.161-.104.34-.207.455-.344.074-.086.041-.165-.103-.182-.162-.024-.352.042-.501.174-.253.215-.373.691-.397.993-.054.05-.07.05-.125.075a1.258 1.258 0 01.133-.98c.025-.063.008-.162-.083-.191-.054-.02-.079-.009-.103.05-.124.355-.34.508-.642.732-.029.025-.302.174-.372.215-.24-.074-.51-.521-.737-.857a.207.207 0 00-.198-.086c-.497.053-.865.016-1.13-.373-.12-.161-.174-.19-.323-.05-.165.174-.33.307-.496.447-.087.054-.15.038-.186-.074A3.132 3.132 0 011.2 9.604c0-.149.017-.372.02-.517a1.274 1.274 0 00-.314-.211C.488 8.677.004 8.214 0 8.077c0-.033.025-.116.14-.182.609-.269 1.08-.041 1.263-.07.153-.013.203-.124.178-.344a1.2 1.2 0 01.389-1.075c.207-.22.19-.464.14-.733-.024-.124-.053-.157-.178-.145-.33.075-.314.083-.376.373a1.476 1.476 0 01-.207.53c-.132.21-.31.388-.468.575-.053.074-.115.074-.194.024A1.084 1.084 0 01.26 5.66c.053-.144.132-.297.219-.376l.041.017c0 .025 0 .058-.008.082l-.1.307C.29 6.05.31 6.389.55 6.695c.079.1.15.128.19.083.154-.153.311-.298.443-.464.166-.186.211-.413.166-.65a4.121 4.121 0 00-.046-.268c-.024-.128-.078-.12-.14-.042-.15.15-.22.27-.29.547A.215.215 0 01.803 6a.29.29 0 01-.033-.145c.041-.248.099-.467.256-.629.104-.112.079-.174-.02-.203-.356-.099-.663-.198-.932-.53A.298.298 0 010 4.313c0-.07.037-.124.116-.182.314-.216.629-.439.94-.505.123-.025.19-.033.252-.042-.141-.438-.29-.964-.373-1.452 0-.1.07-.372.108-.451a.56.56 0 01.277.037c.145.05.277.14.41.224.128.074.165.074.248-.042.145-.21.31-.397.53-.509.074-.037.124-.062.173-.062.07 0 .125.042.195.15.12.194.223.417.33.62.125.211.257.223.448.087.21-.14.401-.277.596-.439.182-.14.231-.14.43-.004.178.124.372.352.468.55.02.038.434-.186.446-.285.017-.178.067-.306.133-.451.087-.178.21-.228.323-.228.103 0 .298.116.442.207l.315.182c.165.091.174.091.273-.062.112-.174.207-.207.439-.207.455 0 .869.116 1.183.493.058.074.112.082.182.012.128-.132.248-.182.488-.182h.422c.096 0 .158.008.245-.116.115-.165.248-.327.434-.327.298 0 .687.418.886.778l-.104.054a2.119 2.119 0 00-.778-.488c-.182-.075-.26 0-.236.186.025.22.083.443.137.662a.8.8 0 00.439.468l.012.074c-.033-.008-.075-.02-.124-.025a.906.906 0 00-.39.013c-.247.062-.475.17-.698.264-.112.054-.112.083-.017.174.124.116.24.249.38.352.402.302.8.24 1.242.07l.207-.07c.186-.033.385.041.538.182l.447.401c.14.137.174.257.083.427-.145.285-.307.575-.468.852a.277.277 0 01-.103.108c-.054-.042-.104-.145-.05-.236.198-.248.323-.596.364-.832.041-.232-.083-.34-.302-.281l-.186.07c-.079.029-.108 0-.124-.083-.03-.07-.067-.116-.091-.19-.05-.124-.125-.166-.228-.083a1.214 1.214 0 00-.43.414 1.568 1.568 0 00-.174.964c.004.041.037.07.062.095a.178.178 0 00.083-.082c.058-.145.095-.29.12-.447.012-.087.024-.245.053-.323.021-.042.087-.025.125-.013.095.038.132.083.144.15-.186.235-.302.587-.426.901-.02.042-.1.096-.149.096-.058-.004-.136-.054-.153-.104-.074-.198-.207-.393-.26-.592-.137-.674-.178-.711-.207-.753A4.146 4.146 0 009.095 3.34c-.033-.033-.05-.07-.074-.099.037-.017.066-.05.103-.062.128-.054.26-.104.393-.149a.616.616 0 00.356-.319c.046-.087.108-.173.157-.26.07-.124.062-.19-.029-.298a.641.641 0 00-.653-.203c-.253.062-.41.244-.489.484a.733.733 0 00-.041.27c0 .136.041.165.153.094.186-.153.393-.277.592-.41a1.093 1.093 0 01-.406.497c-.124.079-.248.145-.372.215-.104.075-.14.042-.174-.082-.029-.133-.017-.27-.017-.402a.877.877 0 00-.587-.881l-.327-.137a.314.314 0 00-.124.286c.025.36.078.62.14.927.058.124.195.173.336.198.082-.041.149-.157.037-.339l-.161-.319c-.017-.041-.038-.078-.05-.124-.004-.016-.012-.045 0-.066.02.008.041.008.083.05.207.223.372.476.48.79.041.124.004.174-.116.186-.273.025-.55.042-.815.1-.435.09-.58.248-.737.537-.066.125-.1.203-.103.278.153.012.327.004.575-.042a1.647 1.647 0 00.596-.194c.116-.137.207-.273.38-.397.05-.038.166-.05.211-.025A2.276 2.276 0 019.55 4.56c.017.05.067.1.091.14.05.059.03.08-.041.075-.1-.029-.207-.054-.298-.09-.037-.017-.066-.075-.083-.117l-.09-.256c-.05-.104-.075-.104-.179-.066-.053.02-.111.04-.198.082-.075.03-.112.042-.129-.041-.024-.124-.057-.248-.086-.36-.05-.137-.104-.166-.236-.1-.249.129-.43.32-.555.567-.116.24-.161.406-.054 1.043.025.124.125.277.24.315l1.076.33c.054 0 .087.063.021.104-.132.091-.277.17-.414.257-.07.041-.107.02-.14-.042a.844.844 0 00-.443-.405c-.07-.033-.108-.02-.137.054-.05.116-.103.285-.149.405-.025.062-.054.087-.124.042-.306-.257-.629-.27-1.005-.22-.187.025-.274.075-.228.26.103.518.554.758.94.924a.26.26 0 00.132-.104c.058-.083.041-.165-.042-.24-.149-.128-.463-.277-.62-.418-.025-.082.153-.157.248-.095.281.128.496.36.72.58.116.111.17.099.207-.063.041-.124.083-.314.12-.455.02-.074.066-.05.083-.004.029.108.062.248.062.372 0 .133-.046.249-.083.373-.025.124-.12.19-.224.165-.475-.045-.835.178-1.13.187a.894.894 0 01-.276-.075c-.104-.083.05-.09.082-.09.124 0 .31 0 .41-.055a.596.596 0 00-.128-.12c-.265-.215-.563.013-.79.129-.129.07-.137.086-.083.223.082.207.231.286.434.286.116 0 .228.016.348.012a.414.414 0 00.165-.041c.153-.058.29-.133.43-.195.174-.025.17.062.092.15l-.352.214c-.037.02-.079.033-.104.058-.05.037-.111.1-.103.124a.262.262 0 00.132.116c.166.05.331.075.489.112.256.05.364-.02.434-.273.037-.14.083-.273.149-.402.041-.082.091-.09.14-.008.175.323.357.637.543.952.033.07 0 .103-.066.095a23.741 23.741 0 01-1.2-.149c-.137-.02-.27-.108-.406-.165-.207-.096-.414-.183-.65-.174-.202.004-.318.124-.248.318.091.278.195.563.306.84.079.19.265.261.468.278.095.012.062-.054.037-.1l-.33-.716c-.042-.12-.01-.136.057-.037.182.273.372.534.538.811.1.174-.025.224-.149.228-.418-.042-.799-.186-1.2-.34-.041-.016-.1-.103-.087-.14.075-.07.166 0 .248 0 .096.016.137-.025.1-.1a.38.38 0 00-.203-.186 2.47 2.47 0 00-.596-.215c-.124-.025-.207.03-.182.14.033.146.1.274.174.423.02.041.02.1.008.14-.074-.004-.165.021-.476-.111-.31-.128-.314-.215-.314-.596 0-.083 0-.244.016-.319.033-.103.042-.124.137-.107.323.066.65.153.968.306.095.041.186.124.286.161.082.03.124 0 .111-.082a.29.29 0 00-.182-.249c-.339-.144-.678-.306-1.018-.442-.082-.034-.111-.07-.066-.158.137-.223.207-.484.15-.765 0-.02.024-.05.049-.075a.207.207 0 01.153.19c.025.24.186.406.343.568.319.33.319.33.766.223.058-.008.1-.05.149-.083-.042-.033-.083-.09-.14-.116-.084-.041-.175-.066-.266-.103-.298-.112-.385-.323-.285-.637a10.759 10.759 0 00.277-.865c.033-.137.041-.281.05-.426 0-.083.062-.083.111-.091l.65-.042c.166-.012.352-.207.418-.318l.215-.352a.451.451 0 00-.443-.066c.05-.162.116-.315.116-.468 0-.1-.025-.22-.066-.323-.041-.099-.112-.115-.194-.053-.158.132-.29.29-.34.504-.05.216-.14.609-.095.679.1-.074.232-.174.319-.199a.19.19 0 01.149.025 2.12 2.12 0 01-.48.331c-.12.054-.166-.016-.145-.132.14-.538.054-.58.008-.844a3.103 3.103 0 00-.401-.927c-.058-.075-.15-.05-.273.1-.199.24-.249.442-.352.856l-.025.082-.14.125-.063-.07c.054-.191.112-.303.112-.456a.525.525 0 00-.207-.422c-.153.1-.294.223-.33.29a.41.41 0 00.007.471c.158.278.133.555.083.882l-.041-.013a3.674 3.674 0 00-.116-.629c-.033-.132-.12-.244-.19-.36-.07-.103-.133-.327-.075-.418.083-.144.344-.219.443-.351.103-.158.054-.224.186-.364.079-.096.248-.29.372-.224.373.186.77.228 1.188.174.178-.025.215-.02.265-.199.041-.149.062-.05.21-.099.253-.083.386-.31.386-.58 0-.148.008-.301-.009-.454-.012-.133-.062-.261-.103-.381-.033-.079-.087-.062-.124-.004-.104.136-.277.405-.373.554-.053.087-.099.174-.144.265-.025.07-.058.087-.12.02a1.349 1.349 0 00-.22-.19c-.136-.087-.149-.36-.095-.533.058.033.1.099.137.186.05.116.074.248.165.29.12.061.24-.187.224-.356a.27.27 0 00-.042-.125c-.132-.235-.434-.426-.62-.426-.216 0-.352.265-.265.517.025.067.05.116.083.178-.51.27-.646.439-.849.675-.025.029-.05.112-.025.153.096.182.058.244-.136.352-.087.05-.207.095-.298.124-.012.008-.037-.013-.062-.017a.124.124 0 01.025-.05c.124-.277.26-.541.376-.823.124-.302-.149-.583-.393-.678-.161-.063-.29-.025-.397.12-.27.322-.327.848.05 1.344.058.083.04.116-.054.125-.215.016-.43.04-.654.053a.869.869 0 00-.662.352c-.05.075-.116.091-.186.041-.17-.103-.315-.078-.493.025-.29.153-.629.273-.815.273-.029 0-.066-.024-.09-.05.016-.024.04-.061.103-.082.177-.041.322-.087.48-.132.029-.03.04-.1.057-.129-.028-.041-.09-.095-.136-.1a2.185 2.185 0 00-.451 0c-.393.038-.683.22-.931.452-.116.116-.124.236 0 .331.29.207.6.414.993.31.273-.087.443-.29.62-.488.15-.157.332-.343.505-.145.253.29.303.592.716.538.158-.016.224-.07.265-.22l.033-.177c.013-.116-.05-.174-.161-.128-.075.024-.14.066-.215.082-.042.013-.087-.004-.137-.016.004-.042.013-.1.042-.124.074-.05.165-.091.248-.129.31-.082.604-.144.91-.206a.265.265 0 01.095 0l-.029.086c-.111.257-.26.336-.463.385a.479.479 0 00-.112.199c-.128.414-.054.844.224 1.142.099.112.223.203.351.281.216.124.273.331.352.55.05.137.104.274.166.41a1.386 1.386 0 00-.418.447c-.042.042-.075.025-.1-.025l-.12-.293c-.107-.261-.29-.427-.579-.451-.103-.009-.207-.025-.306-.038-.12-.012-.199.042-.24.178-.162.497-.008.927.467 1.192-.38.095-.695.248-.89.513.021.075.137.174.286.236.373.153.753.137 1.105.017.207-.075.215-.025.253.124l.103.463c.025.112-.037.174-.14.137-.568-.166-1.242-.439-1.73-.766a2.566 2.566 0 00-.642-.19c-.074.041-.136.095-.202.083a3.629 3.629 0 01-.613-.216c-.1-.058-.103-.087.02-.103.191 0 .539.083.717.083.173-.054.173-.083.066-.158-.418-.33-.89-.252-1.357-.173-.166.033-.178.111-.083.244.604.683 1.05.678 1.787.592.48.306.96.579 1.52.757l.011.083a8.155 8.155 0 00-1.142.165c-.182.037-.219.149-.12.315.15.24.385.351.654.417a.848.848 0 00.58-.037c.223-.103.368-.29.579-.405.124-.067.33.008.455.041.19.062.372.145.567.174.77.103 1.589.174 2.305.116a3.697 3.697 0 00-.207.484c-.037.1-.004.124.1.116a.436.436 0 00.36-.207c.012-.116.012-.22.036-.335.013-.062.03-.15.07-.158.03-.004.208.025.187.075a7.213 7.213 0 01-.19.496c.066.013.136.025.206.025.29 0 .336-.041.323-.33a1.2 1.2 0 00-.037-.245c-.037-.215.008-.364.194-.463.183-.091.373-.062.555-.042a3.393 3.393 0 011.568.708c.228.182.03.434.03.778 0 .215-.042.438-.038.55.008.178.083.273.149.323.199.153.418.306.629.443.215.14.323.227.58.314a.556.556 0 00.181.013.662.662 0 00-.012-.265c-.124-.083-.298-.124-.497-.19-.037-.013-.074-.063-.095-.108a.372.372 0 01.145-.083l.323-.07a.19.19 0 00.082-.07c-.016-.03-.04-.067-.066-.071-.132-.041-.306-.07-.418-.1-.041-.012-.062-.049-.095-.086a.406.406 0 01.157-.083l.331-.041a.174.174 0 00.087-.054c-.012-.033-.029-.075-.053-.087-.07-.033-.41-.157-.447-.195-.03-.028-.038-.07-.05-.124a.317.317 0 01.157-.033l.277.004a.178.178 0 00.112-.053.248.248 0 00-.074-.087c-.133-.083-.182-.141-.331-.207-.07-.042-.104-.083-.116-.17a.461.461 0 01.186-.008c.1.025.153.058.26.074a.284.284 0 00.117-.012.116.116 0 00-.03-.083c-.04-.041-.095-.062-.144-.1-.075-.049-.203-.173-.277-.235-.025-.02-.013-.083-.017-.104l.083.005c.1.02.248.062.33.074.15.029.13.008.067-.1-.091-.082-.186-.136-.273-.231-.025-.033-.017-.087-.013-.132.141.008.286.074.414.074.013-.025.021-.041.021-.074a2.11 2.11 0 00-.103-.249c-.038-.095.012-.132.082-.103.1.041.257.124.364.149.042.012.096 0 .15-.02-.05-.1-.108-.179-.174-.278-.013-.025 0-.062.02-.091.17.05.344.166.497.207.07.029.116 0 .132-.033.013-.042-.111-.166-.103-.215.004-.033.012-.042.029-.062l.29.09c.21.054.33.075.364.025.04-.012-.005-.111-.067-.227.166-.013.187.066.48.124.112.029 1.664-.19 2.293-.385.248-.083.538-.207.77-.314l.074.016c.178.455.554.596.94.637.11.013.23.021.35.025.113 0 .137-.029.104-.14a1.986 1.986 0 00-.575-.977l-.248-.153c-.108-.112-.095-.24.02-.331.2-.133.464-.26.663-.385.29-.186.389-.472.372-.774a.257.257 0 00-.107-.202.323.323 0 00-.15.103c-.078.165-.157.302-.227.447-.054.029-.112.041-.161.062-.013-.05-.042-.1-.03-.149.088-.257.315-.463.464-.629.062-.103-.029-.145-.074-.137-.166.038-.348.1-.472.24a3.335 3.335 0 00-.654 1.354c-.029.128-.083.173-.124.293-.054.182-.05.224.108.336.227.148.525.285.74.438.087.095.042.133-.05.128a.857.857 0 01-.62-.277c-.083-.09-.153-.149-.248-.161-.224.058-.534.149-.766.182-.132.025-.236.078-.306.203-.046.103-.14.124-.248.082-.166-.045-.331-.103-.497-.14a1.862 1.862 0 00-.828.058c-.111.016-.136-.009-.103-.116.029-.137.074-.27.1-.402.003-.058.012-.144-.042-.173-.054.024-.132.037-.157.074-.087.128-.153.265-.236.406-.054.111-.075.111-.19.062a2.11 2.11 0 01-.468-.286c-.112-.178-.232-.327-.29-.48-.02-.041.042-.074.095-.074.125.099.273.223.385.33.075.083.1.166.15.274.012.025.132.02.152-.025.017-.041.038-.103.054-.19a.587.587 0 00-.136-.542c-.183-.187-.307-.224-.56-.398-.314-.215-.36-.202-.475.009a1.232 1.232 0 00-.153.579c.083.505.203.712.815 1.026a.17.17 0 01-.05.083c-.04.033-.062.054-.132.054-.215-.009-.517-.013-.753-.033-.066-.005-.108-.025-.124-.063a3.103 3.103 0 01.273-2.234.372.372 0 01.149-.161c.128-.067.33-.153.455-.207.075-.033.112-.009.145.066.054.199.074.34.09.509.01.103.013.207.055.227.099.042.186-.04.236-.124a1.1 1.1 0 00.099-1.005c-.013-.033.016-.1.054-.12.422-.17.815-.344 1.241-.51.24-.012.546.013.972.084.07.008.22.132.373.219-.195.1-.48.306-.679.496-.054.058-.124.133-.074.29.165-.008.248-.054.372-.09.19-.055.31-.084.464-.084a.828.828 0 01.124.017.228.228 0 01-.058.128c-.054.05-.14.042-.203.075-.062.041-.124.103-.083.178.03.05.112.107.17.099.199-.013.38-.037.588-.1.09-.074.438-.53.24-.57-.112-.025-.352-.042-.456-.096a.207.207 0 01.125-.14c.107.016.231.05.397.066a2.441 2.441 0 00.815-.037c.112-.042.149-.083.112-.153a1.283 1.283 0 00-.758-.663c-.149-.04-.33-.008-.484-.008l-1.332-.012c-.03 0-.062-.025-.091-.042.025-.02.05-.045.074-.058.124-.074.27-.136.393-.223a.87.87 0 00.365-.55.228.228 0 000-.129c-.125-.455-.373-.786-.89-.844l-.257-.041c-.095-.008-.132.033-.132.12 0 .161.008.248 0 .414 0 .082.041.111.137.124a3.186 3.186 0 01.703.203c.137.053.165.136 0 .277l-.372.265c-.067.041-.096.008-.104-.054-.008-.1-.008-.207-.025-.302a.207.207 0 00-.054-.095.273.273 0 00-.198.165c-.05.133-.083.257-.104.385a.406.406 0 01-.285.331c-.075.02-.14-.008-.128-.079.012-.082.029-.165.053-.248.12-.29.182-.538.158-.81a5.834 5.834 0 01-.042-.572.17.17 0 01.124-.182c.224-.087.435-.174.67-.248.08-.03.146.004.208.082l.471.555c.125.132.158.128.265-.02.1-.141.207-.27.364-.357.083-.041.083-.12-.012-.157-.178-.066-.356-.103-.542-.165-.042-.013-.087-.013-.133-.03-.029-.012-.066-.049-.066-.074 0-.025.037-.062.066-.074.34-.12.621-.232.923-.348.083-.037.124-.103.112-.19-.008-.112-.041-.207-.058-.315-.017-.099-.083-.174-.186-.186-.414-.041-.662.075-.944.364a.257.257 0 00-.066.228c.05.008.091.008.128-.004a1.69 1.69 0 00.443-.187c.075-.082.133-.165.174-.165.025 0 .07.103.083.14-.042.05-.083.1-.41.24a9.447 9.447 0 01-1.812.625c-.083.009-.079-.045-.058-.082.116-.203.248-.414.376-.63.124-.074.158-.04.112.075a2.223 2.223 0 01-.137.257c-.012.083.025.103.075.095a.695.695 0 00.513-.617c0-.103-.05-.14-.157-.136-.157.012-.331.025-.484.07-.29.075-.464.277-.559.542a2.934 2.934 0 00-.091.377c-.025.136-.14.186-.26.252-.203.124-.307.1-.48.133a2.855 2.855 0 00-.435.099c0-.05-.013-.095 0-.124.1-.157.186-.31.29-.455.144-.211.107-.331-.125-.414a.86.86 0 00-.993.347c-.124.199-.215.435-.302.65-.054.128 0 .207.137.236.21.037.463-.041.654-.095-.013.062-.017.302-.038.351l-.124.27c-.078.132-.165.177-.31.107a6.538 6.538 0 01-.65-.352c-.248-.145-.488-.248-.765-.248a.372.372 0 01-.083-.008c-.091-.02-.095-.05-.042-.108.07-.07.075-.14.034-.227l-.286-.53a1.448 1.448 0 01-.136-.31c.07-.013.33.074.33.124.021.29.108.496.261.678.116.116.224.042.236-.074.02-.153-.186-.402.083-.973.116-.256.472-.695.703-.695.124 0 .228.054.302.236.042.083.07.282.108.364.033.083.074.124.165.116.224-.029.534-.165.787-.198.161-.025.285.376.364.52.124.216.182.402.323.17.24-.33.351-.703.608-.819a1.792 1.792 0 011.043-.178c.111.013.144.054.12.166-.021.066-.025.136-.042.207-.025.078.046.107.133.041.12-.07.207-.165.29-.273.214-.232.43-.348.852-.348.198 0 .351.042.53.104.136.05.157.07.12.207l-.12.397c-.042.182-.013.207.148.298.141.083.253.14.34.248a.29.29 0 00.178-.062 2.14 2.14 0 01.765-.865c.133-.074.166-.066.22.062.111.282.173.526.194.79.149-.173.323-.36.447-.496.447-.422.89-.418 1.49-.269.148.042.033.19-.054.306l-.116.174c-.037.062-.066.066-.116.013-.075-.087-.149-.24-.224-.315-.136-.136-.376-.058-.542.042a2.222 2.222 0 00-.802.823 4.345 4.345 0 01-.704.832c-.107.041-.107.037-.083-.075a2.959 2.959 0 00.489-1.535.368.368 0 00-.286.062c-.414.232-.62 1.055-.678 1.606-.013.115-.013.207-.116.264-.174.1-.24.141-.414.22-.041.008-.066 0-.104-.004.083-.365.025-.621-.186-.965-.037-.066-.083-.099-.161-.074-.041.025-.083.058-.178.132a1.56 1.56 0 00-.488 1.196c0 .083.082.083.14.042a.624.624 0 00.158-.19c.103-.174.19-.357.29-.53.016-.042.065-.07.103-.083.02.041.02.087.012.124l-.074.331a1.034 1.034 0 01-.331.455c-.03.042-.05.116.033.124.356.017.562-.024.869-.186.322-.165.538-.302.678-.285.095.012.58.153.621.186-.025.05-.062.066-.091.1-.05.04-.286.169-.389.256-.166.136-.223.198-.19.476.016.124.037.24.066.36.012.037.041.09.066.099.041 0 .083-.033.108-.062.136-.166.264-.348.401-.513a.314.314 0 01.083-.05c0 .033.008.062 0 .083-.03.203-.133.356-.257.505l-.083.103c-.107.153-.115.178-.008.331a.73.73 0 01.104.58c-.03.144-.075.36-.104.57-.26.12-.525.29-.745.44-.14.123-.165.223-.165.252.066.082.128.095.256.148.182.058.522-.012.584-.206a.577.577 0 00.041-.211c.066.012.124.012.14.066.067.207.125.347.257.484a.682.682 0 01-.099.182c-.078.128-.145.24-.256.215-.042-.004-.087-.016-.137-.016-.083 0-.165 0-.153.149.016.19.041.277 0 .471-.025.108-.058.224-.166.22-.26-.021-.43-.211-.682-.207a.981.981 0 01-.476-.083c-.133-.07-.228-.145-.29-.182a69.39 69.39 0 00-3.1.58c-.094.02-.09.082-.107.181-.05.228-.136.451-.174.679-.008.037.042.083.067.116.024-.025.062-.042.087-.075.053-.078.09-.17.153-.248.107-.116.389.008.438.165.042.096-.09.141-.082.249.008.09.14.174.14.29 0 .103-.041.17-.058.223.39.248.484.455.497.778.012.1.012.149.066.207.054.053.14.132.178.182.182.21.348.546.472.58.062.02.219.032.339.02l.025.066a.492.492 0 01-.248.244c-.286.091-.427-.335-.58-.58a2.069 2.069 0 00-.24-.318c-.124.137-.33.687-.314.948.083.351.29.7.426.951.095.158.281.212.463.282.154.054.265.083.422.037.083-.02.112-.025.15-.054l-.005-.318c.042-.58.133-1.159.17-1.655 0-.133.1-.356.269-.472a.539.539 0 00.24-.5.393.393 0 01.041-.208c.058-.116-.053-.116-.165-.132-.124-.02-.153-.066-.091-.178.116-.195.281-.36.414-.546.082-.133.124-.228.153-.307-.033-.16-.021-.4.14-.41.526-.061.745-.016 1.08.237.021.033.025.082.025.124 0 .041.095.074.273.252.137.128.27.488.038 1.043.115.07.111.178.099.302-.008.108.025.124.124.161.124.042.19.116.294.373.09.248.36.898.517 2.49-.029.502-.116.87-.215 1.28.107.765.227 1.704.323 2.991.078 1.217.099 1.842.124 2.342.215.017.281.062.327-.12l.041-.17c.041-.12.161-.078.166-.012l.132.39c.029.11.062.181.103.289.145.198.207.025.207-.12.017-.124.017-.228.017-.34.025-.144.1-.153.153-.053l.19.45c.07.158.145.2.174.104.025-.128.03-.356.025-.538-.029-.103-.075-.215-.091-.306 0-.124.1-.1.124-.062a14.441 14.441 0 01.675.881c.124.075.198-.053.165-.103-.008-.05-.07-.112-.07-.211.016-.157.165-.087.198-.03.137.137.228.315.307.46a.29.29 0 00.124.062.238.238 0 00.037-.145c-.008-.05-.066-.165-.083-.219.058-.095.174.025.211.062.042.042.083.112.137.199.074.116.198.215.471.252.005.025.017.058.017.083-.037.025-.1.054-.265.083a3.38 3.38 0 01-1.034.02 1.2 1.2 0 00-.762.166c-.165.095-.33.083-.525.074-.373-.016-.745-.016-1.126-.024-.786-.021-1.179.136-2.069.182-.29 0-.893-.15-.893-.335 0-.129.074-.236.074-.303 0-.082-.017-.103-.091-.124-.633-.111-1.258.033-1.833.141-.488.075-.745-.004-1.002-.207a1.295 1.295 0 01-.355-.376 5.057 5.057 0 00-.99-.94c-.413-.33-.939-.93-1.266-1.345-.074-.086-.202-.509-.248-.629a1.266 1.266 0 01-.058-.546c.05-.041.112-.09.157-.095.278-.008.621-.14.634-.223.029-.062-.017-.116-.07-.1a1.61 1.61 0 01-.489 0c-.083-.012-.182-.05-.22-.09.05-.063.083-.108.137-.137a1.452 1.452 0 00.646-.249.157.157 0 00-.017-.082c-.182-.009-.323-.009-.525-.058a.468.468 0 01-.199-.116.322.322 0 01.149-.124c.232-.075.401-.186.559-.331l-.004-.091a3.157 3.157 0 01-.63-.066c-.095-.05-.103-.058.005-.174.149-.038.422-.062.57-.112.112-.058.092-.153-.02-.186a3.393 3.393 0 01-.538-.058c-.112-.1-.124-.108.02-.174l.477-.1c.182-.061.153-.177 0-.223-.145-.016-.245-.05-.39-.074-.19-.095-.186-.104-.032-.166l.302-.082c.082-.021.165-.054.182-.116a.091.091 0 00-.009-.062c-.128-.038-.389-.013-.504-.05-.042-.008-.083-.054-.108-.108l.112-.062a1.72 1.72 0 00.41-.157.36.36 0 00.045-.103.269.269 0 00-.083-.042 3.53 3.53 0 01-.385-.132c-.082-.104-.078-.124.033-.17l.216-.058a1.378 1.378 0 00-.108-.215.215.215 0 00-.074-.074c-.125-.075-.303-.15-.435-.236-.248-.153-.509-.302-.703-.497a1.614 1.614 0 01-.522-.852 1.784 1.784 0 01-.004-.63c.025-.156.112-.322.195-.47.033-.055.057-.104.024-.15a3.26 3.26 0 00-.384-.414.654.654 0 00-.245-.124c-.492-.087-.794-.186-1.018-.157a.786.786 0 00-.19.285c.042.166.124.423.128.634.182.02.398.082.621.206.178.116.22.178.29.398.153.496.194 1.13.302 1.808.095.645-.244 1.18-.898 1.204-.356.017-.646-.054-.74-.294-.117-.339-.204-.625-.315-.964a7.437 7.437 0 00-1.449.513c-.434.207-.79.406-1.25.592-.872.36-1.836.58-2.701.58-.455 0-.964-.092-1.316-.232-.315-.125-.426-.253-.497-.65a3.77 3.77 0 01-.016-1.018c.041-.331.095-.563.323-1.183.099-.274.227-.402.438-.51a2.317 2.317 0 011.142-.227c.137.008.315.029.439.083.248.09.285.29.294.538 0 .145.008.29-.005.434-.012.116-.008.162-.008.207.315.046.973.029 1.283-.041.256-.054.36-.095.828-.315.322-.145.76-.472 1.27-.736zm9.906 5.532c.03.062.1.372.1.48 0 .252-.021.484-.05.877-.042.513.012 1.035-.058 1.54-.03.248-.091.633-.07.972.004.136.024.174.103.19.248.058.414.083.538.083.38 0 .629-.174.596-.385a5.172 5.172 0 01-.178-1.423l.1-.009c.14.58.26.865.301 1.167.05.273 0 .741.054.981.637.07 1.399.008 1.63-.041.058-.522.042-1.056-.186-1.254a6.44 6.44 0 00-.505-.385 2.851 2.851 0 01-.678-.753c-.273-.43-.348-.567-.588-.985-.223-.389-.372-.724-.525-.952a1.684 1.684 0 00-.22-.29 2.926 2.926 0 00-.58-.107c-.268-.029-.446-.058-.6-.227-.131-.133-.185-.24-.107-.418.042-.096-.012-.162-.082-.24-.08-.1-.058-.207.04-.282.237-.231.456-.347.766-.43l-.05-.215c-.123.016-.26.054-.508.054-.344 0-.654-.141-.778-.592-.046-.162-.248-.617-.306-.82-.042-.124.004-.277.062-.455-.108-.132-.199-.281-.29-.405-.186-.079-.41-.157-.559-.34-.062-.074-.09-.078-.144-.04-.05.036-.062.09-.133.152-.066.058-.203.062-.33.008-.125-.05-.187-.177-.183-.302.013-.165.095-.31.02-.376-.127-.137-.247-.29-.094-.397.041-.038.136-.03.194-.058a.414.414 0 00.199-.464c-.033-.136-.108-.198-.244-.21-.195-.013-.282-.113-.282-.24 0-.166.145-.237.278-.208a.421.421 0 01.173.083c.013.062.042.149.091.14.224-.024.398-.256.398-.475 0-.075-.05-.112-.195-.079-.265.042-.596.141-.923.253-.182.062-.207.207-.107.372.033.037.058.083.082.124.042.066.025.116-.04.153l-.084.062c-.099.075-.111.158-.05.27.017.04.042.07.075.099.075.066.075.124.004.207a.314.314 0 00-.066.335c.029.095.104.633.104.736-.005.278.05.555.033.815-.013.19.082.356.264.563.2.22.344.418.613.679.318.302.492.662.521 1.105.013.207.112.281.31.389.419.116.563.351.613.67.083.567-.194 1.117-.703 1.068-.261-.025-.39-.182-.39-.319 0-.145.075-.29.195-.331.02-.008.095 0 .112 0a.248.248 0 01.012.091c0 .037-.05.058-.066.132-.012.05-.012.15.037.211.054.07.15.096.249.062.115-.037.194-.136.248-.24.236-.426.116-.93-.335-1.042-.145-.042-.352-.062-.485.016-.28.174-.52.273-.757.489a.182.182 0 00-.058.136 23.143 23.143 0 00.199 2.814c0 .203.149.455.207.488.165-.12.207-.24.352-.467.07-.042.103-.017.124.045-.004.211-.046.414-.021.596.012.054.074.103.116.14.1-.09.103-.227.145-.33.111-.116.136.012.14.045-.008.137 0 .26.013.331.004.054.054.066.1.079.12-.24.272-.455.467-.588.116-.083.19-.012.124.104a2.934 2.934 0 00-.265.699.414.414 0 00.116-.012c.025-.009.062-.017.074-.083.083-.207.129-.232.224-.083.041.14.103.24.186.281.124-.033.132-.182.182-.29.132.01.14.154.207.224.045.037.422.05.492.042l-.012-.22c-.008-.438 0-.79.029-1.225.033-.455.083-.922.108-1.324.016-.33.058-.836.082-1.229zM22.792 8.4a7.541 7.541 0 00-.625-.041c-.091 0-.34 0-.348.128 0 .037.05.103.108.14.302.207 1.146.245 1.49.187a.574.574 0 00-.03-.253c-.082-.252-.393-.475-.678-.567a2.338 2.338 0 00-.919-.033l-.058-.153c.1-.447.087-.86.025-1.187a.962.962 0 00-.182-.414c-.058-.083-.124-.079-.198-.017-.05.042-.1.096-.187.207-.285.348-.273.58-.223 1.1.033.026.07.05.165.05.091 0 .133-.04.145-.165.009-.174.05-.356.075-.517.041.012.116.062.124.09.016.27-.07.551-.137.804.017.029.215.115.186.198-.024.062-.33.14-.546.157a1.092 1.092 0 00-.509-.417c-.124-.05-.26-.091-.157-.174l.166-.066c.29-.12.194-.286.182-.567-.013-.108-.054-.137-.153-.133a.795.795 0 00-.36.083c-.216.132-.381.352-.538.53-.03.029-.091.016-.141.016.083-.26.19-.546.273-.778.029-.082.066-.165.157-.145.447.104.902.017 1.217-.297.132-.141.132-.207-.037-.327a1.051 1.051 0 00-.952-.207c-.137.054-.228.132-.248.273-.013.083.401-.033.546-.02.041.003.07.04.1.061-.266.116-.572.174-.828.248-.083.021-.116 0-.129-.082a.36.36 0 01.129-.364c.194-.166.347-.36.389-.621.024-.14-.092-.352-.154-.472-.008-.033.009-.058.013-.083a1.8 1.8 0 01.525.249 1.171 1.171 0 00.815.902c.145.05.294.103.452.149.14.041.248.004.24-.15l-.009-.206c.124-.054.265-.095.298-.091.236.033.476.149.72.227.166.083.083.141-.033.125-.182-.03-.36-.083-.534-.125-.111-.024-.202.025-.219.133.074.132.414.29.538.34.182.065.869.144.86-.042a2.425 2.425 0 00-.082-.546c-.042-.154-.174-.24-.319-.278a3.724 3.724 0 00-.918-.107.84.84 0 00-.331.107l-.038-.202c-.066-.278-.198-.344-.405-.414.012-.083.012-.137.012-.224.182-.103.406-.277.493-.422-.075-.07-.207-.107-.278-.132-.281-.1-.31-.207-.5-.29a1.241 1.241 0 00-.447-.112c-.14-.004-.331.034-.373.087-.02.038 0 .096.083.153.124.096.385.166.513.257.083.046.042.066-.012.074a1.279 1.279 0 01-.505-.144c-.095-.05-.124-.091-.194-.116-.125-.042-.145-.008-.228.136-.062.104.012.158.1.207.297.166.517.26.893.302.041.042.05.112.062.195-.372-.05-.496-.054-.728-.137-.368-.198-.662-.356-1.018-.471-.066-.03-.091-.07-.017-.116.373-.224.729-.497 1.105-.704.054-.029.14-.016.207-.004.182.033.244.091.426.145.108.041.211.07.232-.03.054-.272.14-.475.22-.59.165-.253.4-.386.711-.58.116-.393.497-.795.633-.795.373 0 .745.675.82.927.05.182-.249.34-.05.34.174 0 .335.029.335.178 0 .26-.074.525-.207.715-.14.19-.29.398-.48.526l.012.066c.323.24.675.414.675.778 0 .195-.054.331-.166.426-.086.075-.157.15-.148.261.012.252.028.393.012.641-.012.166-.517.199-.588.273a2.069 2.069 0 01-.14 1.258l.103.19c.513.36.58.688.654.969-.14.137-.373.252-.455.252-.331 0-1.064-.248-1.209-.269-.058.104-.024.2.05.406.066.186.19.314.19.488 0 .083-.012.215-.248.253a1.663 1.663 0 01-1.105-.302c-.066-.038-.124-.083-.19-.112-.112-.062-.252-.017-.29.112l-.074.248c-.042.136-.112.149-.298.112-.526-.112-.77-.679-.77-1.18.025-.103.108-.062.124-.012.033.244.141.48.22.678.099.19.223.294.43.32.041 0 .1-.08.149-.166.112-.236.215-.394.182-.67a.672.672 0 00-.112-.32c-.033-.04-.087-.07-.149-.124.03-.045.075-.095.112-.082.232.082.406.082.55.004.091-.05.133-.112.195-.19a8.19 8.19 0 01.799-.162c.372 0 .703.05.98.174zM8.628 17.479c.198 0 .438.099.434.314l-.041.108a.112.112 0 01-.05-.013c-.074-.161-.194-.252-.389-.215a.835.835 0 00-.455.257c-.079.082.083.132.182.186l.207.124c0 .108-.282.894-.14.919.355.062.827-.427.876-1.118-.012-.248.129-.372.402-.463.323-.124.476-.269.422-.62-.025-.175.074-.125.17-.27l.107-.116c.017.05.054.166.041.216-.074.285-.016.509.125.765l.264.687c.063.066.12.012.183.083.227.46.484 1.146.831 1.44.286.236.588.65.857.898.157.14.265.492.463.558.14.05.137.124.116.253-.025.157.041.186.1.186.095-.012.186-.037.285-.041.215.045.165.19.008.215-.107.012-.21-.009-.318-.009a.613.613 0 00-.112.042.226.226 0 00.058.107c.174.096.298.108.467.145.033 0 .058.025.096.037-.013.03-.05.096-.083.112a.729.729 0 01-.19 0c-.154-.033-.294-.1-.44-.165-.049-.017-.082-.07-.127-.104-.038-.016-.083-.025-.125-.037 0 .05-.016.095-.012.137.033.066.103.182.074.206-.012.021-.111.083-.14.067-.124-.058-.224-.199-.34-.265-.148-.095-.285-.095-.426.004-.145.1-.273.186-.41.265-.169.111-.351.29-.554.29-.112 0-.389-.17-.513-.208-.232-.074-.306-.082-.554-.136-.207-.05-.39.029-.6.1-.257.078-.538.111-.816.16-.157.03-.339 0-.504-.008-.249-.008-.489-.029-.733-.025-.165 0-.34.03-.496.083a.855.855 0 01-.22.033.558.558 0 01-.322-.099.472.472 0 00-.352-.066c-.116.025-.344.066-.439-.02-.116-.117-.393-.348-.55-.32-.493.083-.728.365-1.208.236-.34-.086-.563-.165-.894-.057-.083.033-.298-.017-.385-.005-.124.017-.166-.008-.15-.132l.013-.066c.021-.128-.103-.224-.227-.178-.137.041-.215.182-.344.248-.236.116-.455.083-.711-.016-.174-.075-.352-.042-.518.041-.107.058-.281.31-.397.31-.041 0-.103-.066-.124-.124v-.12a.828.828 0 01.273-.252 1.552 1.552 0 01.944-.124c.149.024.31.041.45-.017.112-.05.228-.058.332-.112.186-.099.347-.186.558-.111.153-.07.236-.12.315-.236.037-.186-.03-.38.016-.563.042-.166.112-.372.166-.53.033-.082.09-.074.145-.066.149.22.33.426.24.63-.062.14.26.24.207.38-.054.107-.03.174.078.186l.083.008c.095 0 .1-.062.095-.182.004-.678-.215-1.15-.447-1.684-.095-.207-.078-.414-.004-.62l.14-.423a.794.794 0 01.427-.447c.025-.004.095.025.112.058.302.427.413.944.264 1.457a5.45 5.45 0 00-.103.48c-.008.041.004.083.012.124.03-.025.067-.05.091-.083.15-.223.303-.442.423-.682.115-.232.306-.327.546-.373.26-.054.335-.02.269.232a5.27 5.27 0 01-.137.43.857.857 0 01-.438.534c-.15.083-.286.194-.414.29-.05.066-.062.062-.009.128.05.062.125.025.187-.013.244-.177.496-.318.744-.455.092-.041.12-.008.112.1-.012.124-.029.293-.153.339-.136.045-.319.066-.439.124A.828.828 0 004.88 21c-.083.124-.083.207-.15.34-.012.028 0 .078.005.123.041-.016.083-.016.111-.033.162-.116.249-.248.41-.372.124-.095.153-.083.203.07.016.05.054.091.103.137.05-.033.104-.062.141-.112.145-.215.236-.645.426-.93.033 0 .075.024.1.036.04.095-.013.422-.005.493.005.198.067.24.249.149.14-.07.269-.145.405-.22.15-.074.27-.016.182.1-.045.07-.116.124-.157.198-.025.042-.02.112-.025.166.042 0 .1.008.14-.013.113-.029.216-.078.324-.124.144-.066.293-.045.455 0 .153.054.31.091.455.133.12.029.252-.025.36-.075a3.84 3.84 0 01.654-.252 2.11 2.11 0 00.815-.468c.054-.058.137-.087.199-.145.05-.041.09-.235.095-.298.041-.165-.025-.554.008-.728.02-.041.054-.132.083-.178l.07.02c.02.063.05.158.05.208-.013.298-.017.96-.05 1.25 0 .066-.116.173-.182.198-.521.19-1.047.39-1.572.538-.236.066-.497.029-.745.033-.199 0-.393-.029-.588-.016-.153.012-.372.153-.53.178-.43.066-.802.037-1.228.115-.393.075-.77.182-1.147.286a.697.697 0 00-.235.116c-.03.025-.038.07-.05.1.041.02.083.049.124.04.095-.008.174.021.273.009.232-.037.464-.062.704-.083a.32.32 0 01.161.066.444.444 0 00.364.075c.14-.033.265.004.39.095.214.174.268.182.516.041.19-.103.402-.103.613-.09.471.024.91.094 1.336.173a.91.91 0 00.878-.34 5.94 5.94 0 00.33-.45c.08-.104.166-.174.29-.174.265-.004.538-.066.799-.05.149.013.22.15.22.236-.01.087-.042.14-.146.137a9.13 9.13 0 01-.596-.05c-.206-.017-.372.041-.496.199-.066.074-.05.124.05.149.041.004.095.024.14.029.108.012.158.062.186.16.021.063.15.125.365.137.277.017.422.017.662-.062.099-.033.165-.149.236-.235.157-.228.264-.286.546-.228.198.037.33-.174.509-.161.327.04-.042-.617-.249-.832-.285-.211-.513-.63-.76-.94-.183-.227-.402-.314-.56-.591-.302-.5-.55-1.113-.885-1.515-.132-.136-.418-.041-.559.033a.393.393 0 00-.165.116c.405.344.422.82.281 1.171-.041.112-.083.108-.198.062a4.264 4.264 0 01-.32-.128c-.07-.037-.131-.02-.206.025-.306.186-.683.439-.745.376-.124-.124-.323-.496-.31-.686a.764.764 0 01.12-.377 3.103 3.103 0 01-.397-.257l-.005-.136c.257-.248.605-.488.874-.488zm-7.747-3.6c.033.244.137.442.373.533.34.141.786.224 1.167.228.45.012.943-.025 1.473-.124a9.6 9.6 0 002.383-.832 6.596 6.596 0 011.449-.55 3.277 3.277 0 011.6-.042c.237.054.286.054.253-.115-.016-.112-.05-.224-.066-.34-.058-.397-.041-.77-.19-1.109a.46.46 0 00-.22-.202 1.308 1.308 0 00-.38-.116 2.69 2.69 0 00-.803 0 4.03 4.03 0 00-1.208.372c-.414.203-.828.43-1.138.617a3.269 3.269 0 01-1.68.484c-.393 0-.654-.013-1.047-.054a3.74 3.74 0 01-1.544-.426c-.107-.054-.165-.037-.206.074a3.463 3.463 0 00-.207 1.597zm18.41 4.344c-.137.021-.422.058-.588.067a.786.786 0 01-.16-.021c.024-.05.04-.066.07-.079.202-.103.417-.198.566-.314.083-.062.066-.124.042-.178-.278.124-.538.178-.832.228-.02 0-.033-.021-.041-.034.227-.17.53-.306.695-.455.111-.09.029-.116-.009-.153-.24.083-.48.162-.732.232a.29.29 0 01-.116-.013c0-.05.05-.07.091-.095a3.86 3.86 0 00.704-.463l-.013-.062-.083-.009c-.194.034-.624.096-.86.12-.116 0-.095-.066-.075-.082.187-.083.331-.182.468-.327.05-.054.041-.104.025-.128-.224.103-.48.107-.63.124-.028-.038.01-.083.026-.1.182-.07.219-.128.314-.19.062-.041.195-.132.224-.182.012-.017.008-.066-.005-.083a2.897 2.897 0 01-.55.133.277.277 0 01-.1-.017c.017-.041.026-.074.05-.087.257-.132.394-.186.576-.298a.446.446 0 00.124-.161l-.017-.025c-.207.066-.418.137-.633.194-.041-.008-.062-.033-.1-.062a.252.252 0 01.075-.074 3.38 3.38 0 001.171-.675.922.922 0 00.224-.252l-.03-.05c-.413.29-.814.542-1.29.729-.095-.009-.075-.067-.042-.091.042-.042.166-.182.265-.315a3.737 3.737 0 001.084-.625c.025-.025.038-.095.021-.14-.211.095-.534.277-.815.38l-.054-.016a.564.564 0 01.066-.145c.19-.124.464-.319.679-.555.008-.029.02-.066 0-.099a3.77 3.77 0 01-.559.228c-.062-.042.013-.15.02-.174.262-.215.386-.356.514-.538.025-.041.025-.079 0-.145-.145.104-.352.166-.513.228l-.046-.013c-.008-.053 0-.041.017-.082.19-.174.352-.31.468-.51.012-.02.008-.074-.013-.111-.157.054-.277.1-.447.14a.132.132 0 01-.058-.012c.009-.054 0-.066.021-.107.116-.1.232-.236.34-.398.028-.041.024-.082.003-.111-.082.02-.231.041-.306.05-.033.008-.074-.03-.095-.067l.29-.207a.248.248 0 00.05-.078c-.038-.017-.067-.038-.092-.03-.124.017-.24.03-.364.054-.273.058-.273.096-.298.174a6.054 6.054 0 01-.302.902c-.037.083-.083.162-.165.195-.116.058-.091.12-.124.231-.05.224-.083.207-.174.427a1.2 1.2 0 01-.257.413h-.062l-.02-.31c-.025-.207-.067-.161-.1-.372-.02-.186.025-.385.05-.546.02-.187.041-.51.041-.692-.016-.012-.033-.04-.058-.057a.174.174 0 00-.058.082c-.037.141-.103.364-.124.51-.045.339.025.665 0 1.009a3.848 3.848 0 00-.041 1.068c.112-.013.103-.025.26-.087.207-.083.356-.112.567-.298.15-.129.125-.381.178-.588.07-.248.166-.34.265-.38.03-.009.058.004.087.012-.058.14-.091.215-.145.364-.05.128-.1.34.042.364l.103.017c.008.024.008.062-.012.082-.133.129-.24.282-.849.456-.07.02-.223.206-.231.277-.013.095-.013.207.008.364.062.608.364 1.18.703 1.742.286.48.497.844.807 1.159.145.132.298.231.538.12.128-.062.29-.162.331-.199.02-.025.025-.066.02-.103zm-8.276-8.755c.017.24-.029.302-.335.223-.323-.1-.472-.066-.679-.302-.124-.145-.281-.145-.413-.008-.062.074-.108.149-.207.165-.017-.033-.038-.078-.025-.116a.46.46 0 01.252-.314c.095-.05.211-.083.31-.112.286-.112.427-.281.427-.616 0-.19.058-.381.058-.58 0-.14-.05-.186-.186-.14-.236.09-.456.182-.691.281a.283.283 0 00-.166.157c-.066.124-.108.248-.166.373-.053.07-.099.037-.115.008a7.545 7.545 0 00-.365-.517c-.103-.124-.103-.166.013-.253l.385-.335c.19-.178.265-.414.285-.679v-.36c-.008-.157.025-.202.182-.182a.868.868 0 01.315.091c.174.075.347.174.521.265.091.058.157.137.166.253.004.136-.083.223-.207.173a3.807 3.807 0 00-.584-.202c-.099-.025-.198.029-.215.124-.041.227.153.24.137.302-.05.161-.31.207-.348.356-.029.136-.029.223.091.198.327-.066.646-.269.898-.372.215-.091.327-.058.356.182.116.703.223 1.308.302 1.937zm5.09-2.235c.062.017.14.054.19.1.12.277.377.587.7.753a.796.796 0 00.29.082c.028-.124.082-.33.082-.558a.739.739 0 00-.22-.538 2.152 2.152 0 00-.496-.373.211.211 0 00-.244.021c-.004.041-.004.103.02.14.08.137.27.261.352.39.03.132.021.124-.087.082a2.09 2.09 0 01-.591-.517c-.095-.107-.158-.107-.224.008a2.003 2.003 0 00-.298.89.91.91 0 00.497.952c.153.066.265.05.34-.095.078-.145.132-.27.181-.43.025-.083.025-.117-.037-.191a2.735 2.735 0 00-.248-.277.36.36 0 00-.124-.1.166.166 0 00-.034.104c.005.128.025.26.03.389 0 .033-.005.083-.025.112a.252.252 0 01-.141-.166c-.083-.306-.07-.575.087-.778zm-14.3-4.506l.24.285c.098.187.152.356.202.505.041.15.103.15.199.083a.337.337 0 00.14-.29.964.964 0 00-.054-.26c-.082-.323-.024-.596.257-.799.095-.066.165-.174.128-.29-.041-.161-.078-.314-.14-.463-.025-.066-.116-.083-.178-.05-.315.166-.687.642-.402 1.039.013.025-.004.1-.025.14-.26-.26-.773-.79-.926-.777-.042.074-.075.227-.042.538.037.302.116.612.344 1.034a.765.765 0 00.194.22c.054.049.166.103.248.103a.457.457 0 00.017-.248 9.55 9.55 0 00-.248-.758zM22.7 3.919c.219-.042.397-.104.48-.137.356-.136.591-.364.67-.753.025-.103-.037-.161-.149-.19l-.232-.062c-.227-.067-.273.029-.36.248-.066.165-.136.356-.314.496-.054.046-.24-.09-.29-.124.348-.207.575-.538.745-.935.041-.074 0-.149-.079-.174a.844.844 0 00-.355-.037 1.783 1.783 0 00-1.283.956c-.017.041 0 .136.029.149.05.02.174.008.227-.013.033-.004.05-.05.07-.082.146-.257.39-.414.671-.538.083-.042.112-.013.066.083-.054.07-.558.426-.57.475-.067.145.032.166.115.166l.153-.041a.677.677 0 00.402.513zm-7.655-.042c-.009.124-.054.195-.166.153-.232-.099-.372-.351-.633-.438-.095-.033-.153.054-.166.14-.041.265-.082.501-.082.6 0 .365.194.563.389.758.057.05.057.082-.005.111l-.798.447c-.075.05-.166.062-.248 0-.08-.07-.104-.157-.08-.244.096-.401.162-.815.266-1.208.165-.62.434-.832.885-.89.162-.025.282-.025.406-.025.132 0 .19.025.207.145.016.083.02.174.02.451zm.604 2.744c0-.302-.244-.39-.348-.646-.1-.252-.19-.252-.393-.07-.232.22-.372.41-.455.724a1.738 1.738 0 00.008.869c.02.087.07.186.166.157a.166.166 0 00.12-.165c0-.257.024-.505.153-.67a.38.38 0 01.116-.112c.04.062.024.136.024.149-.037.19-.066.384-.107.575-.025.128-.025.198.041.314.075.116.137.128.186.05.236-.377.489-.919.489-1.175zM2.73 7.457a2.317 2.317 0 00-.165-.745c-.1-.236-.249-.373-.348-.373-.091 0-.302.249-.372.451-.183.51-.083.923.21 1.411.042.062.125.178.236.062.091-.103.162-.177.249-.29a.805.805 0 00.19-.516zm11.148 7.986c-.054-.426-.373-.84-.91-1.2-.112-.046-.125.029-.125.124.054.592.124 1.187.199 1.713.02.116.074.149.182.091.161-.074.314-.153.467-.24.141-.083.228-.161.187-.488zm4.87-4.842c-.083-.207-.223-.293-.43-.31-.207-.025-.381-.054-.6-.087-.125.017-.207.116-.278.282.004.033.017.074.042.082.07.025.198.05.215.062a.41.41 0 01.124.17c-.016.058-.091.12-.186.137-.124.024-.124.124-.104.252a.728.728 0 00.162.36c.083-.05.124-.07.186-.137a.281.281 0 00.083-.24c-.017-.269.132-.463.318-.641l.042.025c-.03.153-.112.265-.129.418-.04.314-.144.58-.455.79.095.124.331.033.406-.041a.947.947 0 00.281-.439l.05-.157a.124.124 0 01.041.012c.062.116-.025.352.017.522a.389.389 0 00.153-.124c.116-.274.174-.68.062-.931zm3.898-6.372c-.054 0-.27.004-.331.017-.05.012-.075.128-.05.148.062.042.1.075.15.092.194.02.28.02.504.057a.171.171 0 01.112.063c-.021.016-.042.045-.083.053-.414.05-.538.042-.828-.153-.078-.033-.107.025-.082.1.041.14.157.256.372.343.17.074.335.165.509.161.265-.008.455-.024.674-.062.116-.016.232-.082.249-.14.02-.058 0-.187-.066-.27l-.158-.157c-.248-.26-.41-.426-.778-.389-.05.005-.124.137-.194.137zm.256 2.756c0-.153-.02-.265-.062-.402a.703.703 0 00-.612-.504c-.153-.005-.228.024-.166.165.017.05.154.195.207.31.07.141.137.286.137.41a.414.414 0 01-.037.166c-.091-.05-.141-.162-.162-.216-.041-.132-.05-.21-.09-.285-.038-.066-.084-.083-.104-.083-.058 0-.083.02-.087.1a1.188 1.188 0 00.65 1.187c.115.041.144.013.182-.09a2.483 2.483 0 00.144-.754zM2.483 5.388c-.058.219-.07.364-.062.488.004.157.082.29.227.356a2.772 2.772 0 001.378.215c.017 0 .062-.03.062-.041-.012-.096-.062-.112-.149-.137-.194-.066-.716-.207-.786-.29-.054-.074-.029-.153.058-.165a.442.442 0 01.228.037c.128.062.24.145.372.22.041.024.091.07.14 0 .038-.063.075-.117-.008-.179l-.306-.24c-.265-.21-.662-.31-1.158-.264zm9.463 3.426c-.02.045-.062.09-.107.145-.05-.05-.1-.083-.125-.137a9.943 9.943 0 01-.496-1.655c-.008-.108.033-.145.124-.14.236.024.443.132.65.24.033.024.058.094.062.144.041.468-.017.993-.108 1.399zm-10.192.952l-.033-.017c.021-.281.166-.683.112-.786a.58.58 0 00-.285.029c-.1.041-.141.14-.162.306-.025.368.033.745.112 1.076.025.124.074.136.165.05.236-.216.46-.489.638-.7.124-.161.145-.314.095-.467-.042-.129-.128-.178-.224-.178-.103 0-.14.078-.165.157-.058.203-.153.347-.253.525zm19.11-.849c.186 0 .339.037.388.054.224.083.323.182.365.26a.259.259 0 01.04.15.401.401 0 01-.367-.075c-.199-.186-.489-.265-.662-.186.012.128.136.29.24.372.347.27.653.315 1.026.228.062-.025.087-.112.083-.186-.013-.24.004-.497-.224-.704-.248-.236-.604-.227-.848-.124-.042.02-.104.05-.133.083a.212.212 0 00.091.124zM12.256 2.36c.074-.017.04.016.02.082-.041.211-.165.377-.314.526-.083.074-.1.19-.042.248.108.1.232.013.315-.066.165-.186.269-.414.364-.637.116-.278.091-.621-.041-.853-.07-.099-.178-.111-.261-.037a1.436 1.436 0 00-.505.993c0 .054.004.153.041.174.19-.083.307-.29.414-.426zm5.048 10.013c.02-.016.054 0 .066.009 0 .223.054.492.083.57a.257.257 0 00.083-.057l.062-.302c.14-.426.037-.766-.141-1.155-.033-.074-.083-.082-.157-.05-.054.025-.1.063-.054.137.041.062.037.112 0 .174-.058.112-.1.232-.161.364-.025.083-.03.15-.038.248l-.062 1.531c.025.083.075.067.104.017.033-.083.058-.161.074-.248.042-.24.112-.249.124-.489.021-.248.021-.496.013-.744zM3.285 2.917a.227.227 0 01.009-.095l.256.041c.124.025.187.009.228-.086.07-.183.033-.348-.157-.385-.29-.054-.58.041-.828.099-.161.054-.199.223-.083.34.187.177.364.355.559.512a.614.614 0 00.525.125c.083-.021.154-.075.154-.15a.207.207 0 00-.062-.148.559.559 0 00-.145-.083zm-.26 11.144c-.017.082-.054.153-.19.145a1.705 1.705 0 01-.373-.054c-.132-.038-.17-.087-.178-.137a2.261 2.261 0 01.042-.82c.016-.04.157-.123.215-.156.178.02.318.05.447.082.05.03.149.178.157.199a.83.83 0 01.025.248c-.05.207-.112.385-.145.493zm13.82 7.469c.332.124.588.161.687.14a.198.198 0 00.154-.223c-.005-.091-.05-.166-.166-.199-.252-.054-.513-.09-.753-.178-.14-.041-.248-.037-.373.058-.19.145-.372.22-.608.265a.29.29 0 00-.153.054c-.066.087-.05.149.054.207.41.037.794-.042 1.158-.124zm1.362.81c.207 0 .36-.04.5-.132a1.241 1.241 0 01.6-.265c.092-.016.183-.111.19-.186 0-.103-.082-.116-.152-.14-.199-.063-.435-.054-.637-.104-.067-.012-.162-.012-.216.03-.426.43-.509.33-.711.541-.054.07-.054.157.095.195.116.029.265.053.33.062zM11.123 6.162c0-.107.19-.273.294-.256.02.008.04.02.057.041l.042.224c.012.087.041.165.087.165.215.017.467-.132.587-.318.129-.2.22-.427.327-.642.1-.236.253-.09.199.054-.137.41-.306.828-.439 1.229-.041.149-.062.157-.207.108l-.682-.245a.352.352 0 01-.265-.36zm5.238 10.213c.112.054.104.033.253-.05a.34.34 0 00.132-.24l-.041-.898c0-.029-.042-.074-.058-.074-.124 0-.273-.025-.373.029-.19.103-.351.252-.525.389-.066.066-.004.132.095.124.083-.033.178-.075.26-.12l.158-.083a.141.141 0 01-.016.075c-.15.165-.261.364-.464.471-.054.009-.041.14.037.145a.681.681 0 00.228-.108c.124-.099.178-.16.302-.264.041.062.07.111.008.165l-.33.298c-.05.05-.013.1.045.091a.652.652 0 00.236-.09c.082-.055.153-.13.227-.208.004.009.05.054.042.058a3.715 3.715 0 01-.216.29zM5.772 5.967c-.05.5-.173 1.005-.397 1.233-.182-.348-.306-.753-.43-1.109.1-.124.223-.31.277-.455.025-.07.066-.083.128-.033.15.136.278.248.422.364zm.592 7.134a.414.414 0 01-.227.285.913.913 0 01-.39.104c-.074 0-.128-.017-.14-.083-.041-.232-.095-.447-.133-.67-.004-.054.042-.125.087-.166.145-.137.331-.174.526-.186.041 0 .178.058.199.095.04.207.062.393.078.62zm-1.808-2.678c-.265.042-.497.278-.455.373.004.207.045.405.157.583.07.104.124.129.232.058a1.986 1.986 0 00.794-.81c.05-.1-.054-.13-.153-.179-.132-.062-.273-.062-.348-.025-.074.038-.103.116-.115.178-.083.302-.1.31-.19.414a.803.803 0 01.078-.592zm1.792 11.36c.016-.034.024-.059.053-.063a.623.623 0 01.178 0c.236.066.455-.103.675-.137.05-.004.103-.012.161-.004.145.004.29.009.451-.033.066-.025.153.009.228.042.252.111.496.173.74.029a3.8 3.8 0 01.394-.236c.227-.087.248.062.256.149a.215.215 0 01-.124.128c-.786.281-1.465.285-2.346.178a1.986 1.986 0 01-.666-.054zm-4.925-8.277a.455.455 0 00.104.356l.037.037-.02.067a1.862 1.862 0 01-.406-.054c-.058-.021.103-.108.116-.207.029-.203.083-.538.083-.782 0-.042-.104-.083-.104-.124a.149.149 0 01.05-.083c.29.07.33.066.389.203.058.124.111.33.198.48.017-.009.042-.017.054-.03.013-.136.008-.335.013-.426.008-.074.04-.111.12-.111.062 0 .215.004.277.016.008.013.008.025.008.042 0 .041-.05.053-.062.058-.137.05-.145.062-.207.442l-.066.439c-.008.033-.017.1-.037.145-.038.004-.104 0-.116-.033a6.296 6.296 0 00-.34-.691l-.04-.004c-.034.09-.034.177-.055.264zm9.104 2.04a.86.86 0 000-.252c-.05-.14-.112-.277-.091-.402.062-.215.107-.438.087-.662a2.789 2.789 0 01.025-.827c.074.025.132.074.149.124.02.087.04.174.04.252.03.236.01.464-.003.691-.037.447-.075.861-.062 1.3.008.066.02.153.041.215.058.136.03.277-.078.43l-.067-.029c-.05-.186-.173-.438-.227-.637-.009-.037 0-.066.05-.075.082-.016.136-.066.14-.124zm4.303-3.29c-.182-.016-.368-.177-.356-.467-.09.124-.202.248-.302.294.009.1.253.24.422.31.096.128.166.19.29.331.075-.19.166-.352.195-.455a1.469 1.469 0 00-.145-.675c-.137-.153-.352-.28-.563-.417-.103.111.029.351.286.496a.423.423 0 00.202.538zm-12.372-.442c.128-.009.265-.03.418-.05.1-.025.21-.05.215-.174.008-.111-.124-.173-.215-.198a1.97 1.97 0 00-1.304.128 1.183 1.183 0 00-.264.19c-.1.108-.08.174-.005.232a.984.984 0 00.356.166c.021-.091.042-.24.07-.331.141-.232.539-.274.816-.282.066.013.066.095.012.112-.078.062-.236.05-.277.116 0 .07.066.095.178.087zm.885 2.4c-.004-.05.054-.112.058-.145.013-.066.013-.157.013-.228.008-.178-.03-.467-.03-.641l.096-.062c.033-.012.058.008.095.041.083.083.27.29.356.369.008 0 .02-.021.025-.025v-.133a.974.974 0 00-.042-.256c-.033-.112-.111-.19-.024-.199l.339-.025c-.033.067-.058.116-.07.216-.017.136-.042.26-.046.388.017.2.058.398.075.563 0 .013-.025.03-.05.042a.31.31 0 01-.095-.062c-.166-.166-.282-.32-.497-.522a.182.182 0 00-.029.091c.042.128.095.273.182.393.054.075.067.1-.07.15a.648.648 0 01-.281.04zm6.05.037c.195-.12.273-.521.224-.716a.257.257 0 00-.067-.136c-.062-.062-.132-.042-.165.066-.037.153-.054.318-.075.463a1.448 1.448 0 00-.438-.012c-.15.02-.439.107-.439.285 0 .29.666.224.96.05zm1.167-2.003a.331.331 0 00.083.232c.298.31.707.633.968.695.232.062.426.199.567.385l.136.186c.1.124.228.207.402.232.029.008.066 0 .1 0-.026-.104-.026-.116-.1-.19-.613-.547-1.262-.973-1.895-1.416-.062-.037-.174-.111-.261-.124zm-6.397 7.035v-.009c-.062-.26-.133-.513-.199-.765-.05-.091-.14-.025-.132.012-.066.187-.133.373-.19.567a.273.273 0 000 .174c.099.273.19.542.297.815.017.037.067.062.095.083.025-.033.063-.07.07-.103zm1.084-6.489c.016.05.041.112.05.17.004.042.004.075-.009.1-.004.012-.029.008-.054-.005-.128-.058-.273-.14-.389-.062-.04.03-.024.104.03.129l.364.149c.165.062.206.136.173.33-.029.187-.165.261-.327.307-.066.016-.136.025-.227.016-.012.058.004.124-.037.15-.03.016-.038.012-.067.024a1.597 1.597 0 01-.124-.451c0-.037.013-.041.025-.054.054.017.104.091.186.17.1.033.27.062.294.033.05-.062.07-.1.07-.124 0-.042-.057-.083-.107-.104-.128-.07-.199-.095-.331-.149-.124-.05-.145-.16-.145-.264 0-.112.058-.232.236-.29.054-.02.153-.041.207-.058a.82.82 0 00.029-.186c.029-.004.083-.013.09.008zM2.665 5c-.248 0-.406-.067-.654-.042-.178.013-.352.091-.525.157-.104.05-.083.096.008.133a.483.483 0 00.24.062c.513-.041 1.088-.1 1.601-.149.03-.041.054-.074.083-.14-.195-.129-.447-.104-.683-.174zm5.892 7.659a.523.523 0 00-.12.108.323.323 0 01-.103.074l-.07-.041.111-.27c.042-.103.083-.115.182-.049l.091.074c.075.063.174.112.265.07.087-.04.041-.165-.05-.21-.132-.083-.231-.108-.393-.207-.099-.058-.14-.145-.14-.27 0-.103.07-.227.202-.24.05-.011.112-.011.182-.011.087 0 .145-.013.2-.087.04-.054.086-.087.098-.03a.756.756 0 01-.024.406c-.03-.008-.05-.008-.075-.02-.079-.125-.182-.183-.269-.17-.083.012-.124.074-.062.14.112.116.269.178.401.253.19.103.178.248.154.352a.269.269 0 01-.278.223.527.527 0 01-.302-.095zm-.376-.38c.016.318-.24.434-.422.43-.17 0-.27-.038-.327-.207-.03-.1-.062-.402-.083-.513-.033-.042-.091-.058-.178-.083-.041-.008-.045-.042-.054-.079.062-.029.174-.062.253-.074.182-.03.182-.017.21.149.026.19.054.389.092.579.062.186.26.145.26-.012 0-.15.009-.319 0-.476-.029-.038-.082-.116-.14-.17-.07-.083-.075-.108.025-.145.231-.09.248-.149.28.157.013.116.084.294.084.443zm.215 1.63l.58-.137c.152-.041.24-.207.227-.352-.017-.111-.083-.173-.199-.198a1.572 1.572 0 00-.745.103c-.02.199.05.414.137.58zM3.074 11.85a1.03 1.03 0 00-.248.037.913.913 0 01-.364.038c-.083-.009-.215-.063-.294-.083-.087.008-.174.087-.207.21-.016.125.058.212.195.237.277.062.538.111.794.111.1 0 .112-.012.116-.095.013-.157.008-.29.008-.455zm6.621-5.917a1.676 1.676 0 01-.36-.112c-.041-.012-.07-.112-.07-.165.012-.145-.025-.29 0-.443.012-.083.058-.108.136-.091.112.025.216.05.323.083.14.057.352.446.29.583-.062.124-.174.14-.315.149zm-2.387 6.782a.414.414 0 01-.116.112c-.137.09-.385.144-.555.256-.083.058-.041-.14-.05-.215l-.086-.463a.604.604 0 00-.15-.249c-.049-.058.092-.083.162-.103l.27-.083c.098-.033.123.037.094.058-.136.1-.124.145-.107.273.02.124.02.26.024.364.021.05.05.116.087.162.083-.025.174-.087.174-.112l.02-.265c.1-.124.117-.062.133-.008.042.099.062.161.1.273zm.41-2.938a7.687 7.687 0 01-.158-.55c-.012-.075.05-.116.12-.104.248.054.492.112.74.178.083.017.083.083.03.137a1.763 1.763 0 01-.555.405c-.112.062-.116.017-.178-.066zm10.72-6.563a1.82 1.82 0 00-.285-.687c-.112-.14-.248-.153-.372-.025a.96.96 0 00-.108.125c-.124.157-.112.206.075.298.28.082.442.248.645.455zM5.289 19.291a1.159 1.159 0 00-.372.331c-.083.153-.174.298-.257.447-.029.07-.078.24-.099.352l.05.05a2.069 2.069 0 00.364-.27c.21-.207.26-.401.376-.815l.021-.05zM23.524 2.276a4.63 4.63 0 00-.405-.654c-.112-.14-.166-.153-.29-.025a1.008 1.008 0 00-.112.124c-.124.153-.198.344.004.373.174.029.41 0 .522.078.103.067.194.137.24.162zM2.544 13.394c-.032.303-.024.303-.024.514 0 .115.054.115.157.124.095.004.124-.083.145-.195l.062-.418c.017-.136.025-.215-.058-.227-.153-.021-.269.074-.281.202zM4.16 7.8a1.597 1.597 0 01-.39-.137c-.206-.107-.405-.33-.372-.537.017-.096.07-.125.153-.08.158.117.29.29.406.415a.818.818 0 01.207.339zm1.551 4.916c.004.083.075.327.1.467.012.075.029.133.136.12.14-.02.19-.082.17-.194-.017-.128-.05-.257-.075-.389-.024-.124-.078-.194-.19-.19-.116.012-.153.053-.14.186zm6.15-7.808c-.088.157-.166.314-.27.45-.078.112-.202.183-.314.278-.108.029-.112.02-.075-.087.162-.265.315-.472.489-.7.124-.066.17-.012.165.059zm8.3 4.295c0 .1-.017.19-.05.285l-.025.013c-.128-.323-.438-.844-.417-.898-.009-.037.074-.058.111-.05l.141.058c.083.19.166.372.24.592zm.902-6.857c.017.004.066.017.104.05.062.05.07.107-.013.14-.194.092-.521.265-.732.344-.042.02-.087.025-.07-.05.04-.124.537-.484.711-.484zm-7.08 8.992c-.136 0-.252.108-.252.215.004.12.157.248.293.248.125 0 .211-.082.211-.207.009-.148-.099-.256-.252-.256zM3.074 21.778c-.028 0-.082.091-.128.095-.165.013-.223.03-.223.1 0 .095.05.144.128.12.248-.075.306-.067.629-.042l.112-.132c-.038-.033-.066-.075-.112-.087a1.85 1.85 0 00-.406-.054zM17.648 9.869c-.054.033-.099.066-.082.128l.04.1c.096-.017.204-.025.303-.017.132.041.356.091.497.116.033.008.074-.03.099-.062.008-.004-.017-.03-.03-.054-.19-.19-.508-.194-.827-.207zM8.532 5.686l-.339-.15c-.02-.012-.033-.074-.012-.099.074-.111.153-.215.231-.314.042-.042.075-.037.096.016l.17.422c.032.083-.005.116-.146.125zM4.08 9.844c.083-.016.124.033.112.108-.009.041-.021.058-.087.09a1.497 1.497 0 01-.753.026c-.083-.013-.137-.03-.15-.05a.157.157 0 01.096-.066zm2.375-6.641c-.025.008-.054.029-.07.016-.22-.124-.534-.29-.733-.418-.045-.066-.016-.09.046-.082.161.053.443.136.604.198.104.05.137.145.153.286zm3.373 4.833c.024.037.05.074-.021.186-.112.174-.14.352-.215.592a.645.645 0 01-.075.14c-.025.025-.062.034-.09.05-.01-.029-.026-.066-.021-.09l.223-.73c.033-.086.1-.132.199-.148zm8.081-2.442a4.014 4.014 0 01-.869-.306c-.095-.082-.079-.078.046-.082l.815.219c.157.12.124.116.008.165zm-3.364 5.181a.277.277 0 00-.124-.153c-.042-.025-.12-.012-.166.025a.857.857 0 00-.132.116c-.062.087-.025.174.074.244.083.058.174.054.228-.025.05-.062.095-.108.12-.207zM9.09 6.778c-.029.062-.037.124-.079.17-.111.132-.235.26-.355.389-.12.053-.125-.021-.112-.08.112-.206.269-.38.414-.55.016-.016.062-.028.082-.016.021.012.033.041.05.083zM4.415 5.64c-.029.02-.467-.662-.521-.803 0-.025.07-.074.107-.103a.195.195 0 01.075.066c.14.298.385.803.364.823zM4.23 8.367l-.186-.083c-.137.03-.249.091-.402.108-.161.012-.227-.021-.29-.062.026-.05.112-.1.24-.124.075-.013.402-.042.688-.017zM21.07 4.89l.48.36c.05.033.042.1.062.14l-.107-.012c-.207-.103-.422-.186-.559-.389-.116-.17.075-.149.124-.099zm-12.157.592l-.054.083c-.02-.025-.05-.05-.062-.083-.041-.083-.041-.178-.05-.265-.024-.207-.012-.319.112-.443.05-.058.091-.025.091.03.009.26-.004.421-.037.678zM5.834 4.73c.046.016.125.509.178.761a.562.562 0 010 .186c-.02.058-.041.07-.09.02-.083-.26-.125-.525-.166-.773-.017-.074-.017-.153.078-.194zM19.87 7.72c.199.112.43.31.526.427.025.024.012.09 0 .14-.033-.012-.07-.016-.095-.037-.166-.103-.319-.22-.472-.327-.02-.016-.025-.136-.041-.161a.174.174 0 01.082-.042zM10.82 3.46c.034.021.05.042.071.07a.174.174 0 01-.07.075c-.141.054-.468.054-.604-.025a.422.422 0 01-.07-.082l.094-.054a1.29 1.29 0 01.58.02zm3.725.795c.132.207.19.405.248.629 0 .012-.008.016-.008.05-.033-.021-.05-.025-.062-.042a1.159 1.159 0 01-.331-.546c-.017-.05-.009-.091.053-.128a.224.224 0 01.1.037zM11.97 18.418c.157-.091.203-.161.343-.248.058-.033.05-.042.021-.096-.033-.062-.062-.062-.145-.04-.153.053-.215.09-.372.152-.066.025-.091.054-.02.104zM7.126 3.745c.19-.133.397-.203.608-.282.033-.008.083.005.12.038l-.075.066c-.165.116-.33.207-.488.302a.983.983 0 01-.165-.029.124.124 0 010-.095zM2.18 7.8c-.046-.223-.108-.497-.07-.695a.285.285 0 01.086-.124c.042.037.083.066.087.103.042.232-.025.497-.041.712zm10.77-4.994a3.53 3.53 0 01.56-.327 2.09 2.09 0 01-.572.608c-.012-.083-.041-.232.013-.281zm-2.648 8.644c0 .09.042.19.116.26.042-.033.075-.095.075-.124.016-.174.029-.352.029-.534.02-.07-.083-.09-.108-.016-.041.136-.107.273-.112.414zm9.087 7.158l-.765.257c.178.203.695.037.765-.257zM8.12 4.705c.012.203-.025.455-.137.641-.012.025-.041.042-.074.066-.013-.037-.05-.066-.042-.09.042-.208.095-.456.145-.663.008-.012.041-.025.058-.029zm10.717 14.632c.165 0 .323-.005.447-.042.111-.07.107-.215.145-.314l-.042-.013-.182.166a2.579 2.579 0 01-.372.074.258.258 0 00-.058.075c.02.029.041.05.066.054zm-1.531-8.202c.054-.12.103-.227.145-.34.008-.024-.03-.086-.075-.127a.323.323 0 00-.09.041 1.655 1.655 0 00-.24.364c.016.03.098.03.256.062zM4.494 7.895l.161-.414c.03-.008.054-.008.075.005.024.124.004.322-.009.4-.024.113-.066.179-.165.228a.674.674 0 01-.062-.219zm9.34 3.037c-.113 0-.2.067-.208.166 0 .083.091.161.19.161.104-.008.183-.082.19-.173 0-.1-.061-.154-.173-.154zm-.1 1.018c0-.111-.066-.186-.186-.186-.096 0-.166.062-.166.15 0 .098.104.198.207.19.091 0 .145-.067.145-.154zm-.418-1.042c0 .09-.058.144-.145.144-.116 0-.203-.07-.203-.178 0-.082.083-.165.166-.165.087-.008.182.074.182.199zm.074.413c-.099 0-.165.062-.165.145 0 .087.09.166.186.166.074 0 .145-.079.145-.166.004-.078-.07-.145-.166-.145zm-1.088 7.399c-.128 0-.24.062-.236.132.008.07.108.166.186.166.083 0 .129-.087.129-.199-.004-.082 0-.099-.079-.099zM4.415 3.062c-.062-.248-.033-.472.03-.724.103.215.11.563-.03.724zm9.31 7.25c-.066.041-.124.107-.115.136.008.05.062.095.095.145a.27.27 0 00.112-.132c.012-.03-.05-.083-.096-.15z" }) + ] + } + ); +}); + +exports.default = SiElsevier; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.d.ts new file mode 100644 index 000000000..611210d9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6C00"; +declare const SiElsevier: IconType; +export { SiElsevier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.mjs new file mode 100644 index 000000000..1ede5e234 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiElsevier.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6C00"; +const SiElsevier = React.forwardRef(function SiElsevier2({ title = "Elsevier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.687 11.326c.256-.137.405-.303.43-.497.042-.174-.116-.157-.153-.124-.145.116-.33.294-.509.414a1.862 1.862 0 00-.248.033c-.02-.009-.046-.042-.033-.054.161-.104.34-.207.455-.344.074-.086.041-.165-.103-.182-.162-.024-.352.042-.501.174-.253.215-.373.691-.397.993-.054.05-.07.05-.125.075a1.258 1.258 0 01.133-.98c.025-.063.008-.162-.083-.191-.054-.02-.079-.009-.103.05-.124.355-.34.508-.642.732-.029.025-.302.174-.372.215-.24-.074-.51-.521-.737-.857a.207.207 0 00-.198-.086c-.497.053-.865.016-1.13-.373-.12-.161-.174-.19-.323-.05-.165.174-.33.307-.496.447-.087.054-.15.038-.186-.074A3.132 3.132 0 011.2 9.604c0-.149.017-.372.02-.517a1.274 1.274 0 00-.314-.211C.488 8.677.004 8.214 0 8.077c0-.033.025-.116.14-.182.609-.269 1.08-.041 1.263-.07.153-.013.203-.124.178-.344a1.2 1.2 0 01.389-1.075c.207-.22.19-.464.14-.733-.024-.124-.053-.157-.178-.145-.33.075-.314.083-.376.373a1.476 1.476 0 01-.207.53c-.132.21-.31.388-.468.575-.053.074-.115.074-.194.024A1.084 1.084 0 01.26 5.66c.053-.144.132-.297.219-.376l.041.017c0 .025 0 .058-.008.082l-.1.307C.29 6.05.31 6.389.55 6.695c.079.1.15.128.19.083.154-.153.311-.298.443-.464.166-.186.211-.413.166-.65a4.121 4.121 0 00-.046-.268c-.024-.128-.078-.12-.14-.042-.15.15-.22.27-.29.547A.215.215 0 01.803 6a.29.29 0 01-.033-.145c.041-.248.099-.467.256-.629.104-.112.079-.174-.02-.203-.356-.099-.663-.198-.932-.53A.298.298 0 010 4.313c0-.07.037-.124.116-.182.314-.216.629-.439.94-.505.123-.025.19-.033.252-.042-.141-.438-.29-.964-.373-1.452 0-.1.07-.372.108-.451a.56.56 0 01.277.037c.145.05.277.14.41.224.128.074.165.074.248-.042.145-.21.31-.397.53-.509.074-.037.124-.062.173-.062.07 0 .125.042.195.15.12.194.223.417.33.62.125.211.257.223.448.087.21-.14.401-.277.596-.439.182-.14.231-.14.43-.004.178.124.372.352.468.55.02.038.434-.186.446-.285.017-.178.067-.306.133-.451.087-.178.21-.228.323-.228.103 0 .298.116.442.207l.315.182c.165.091.174.091.273-.062.112-.174.207-.207.439-.207.455 0 .869.116 1.183.493.058.074.112.082.182.012.128-.132.248-.182.488-.182h.422c.096 0 .158.008.245-.116.115-.165.248-.327.434-.327.298 0 .687.418.886.778l-.104.054a2.119 2.119 0 00-.778-.488c-.182-.075-.26 0-.236.186.025.22.083.443.137.662a.8.8 0 00.439.468l.012.074c-.033-.008-.075-.02-.124-.025a.906.906 0 00-.39.013c-.247.062-.475.17-.698.264-.112.054-.112.083-.017.174.124.116.24.249.38.352.402.302.8.24 1.242.07l.207-.07c.186-.033.385.041.538.182l.447.401c.14.137.174.257.083.427-.145.285-.307.575-.468.852a.277.277 0 01-.103.108c-.054-.042-.104-.145-.05-.236.198-.248.323-.596.364-.832.041-.232-.083-.34-.302-.281l-.186.07c-.079.029-.108 0-.124-.083-.03-.07-.067-.116-.091-.19-.05-.124-.125-.166-.228-.083a1.214 1.214 0 00-.43.414 1.568 1.568 0 00-.174.964c.004.041.037.07.062.095a.178.178 0 00.083-.082c.058-.145.095-.29.12-.447.012-.087.024-.245.053-.323.021-.042.087-.025.125-.013.095.038.132.083.144.15-.186.235-.302.587-.426.901-.02.042-.1.096-.149.096-.058-.004-.136-.054-.153-.104-.074-.198-.207-.393-.26-.592-.137-.674-.178-.711-.207-.753A4.146 4.146 0 009.095 3.34c-.033-.033-.05-.07-.074-.099.037-.017.066-.05.103-.062.128-.054.26-.104.393-.149a.616.616 0 00.356-.319c.046-.087.108-.173.157-.26.07-.124.062-.19-.029-.298a.641.641 0 00-.653-.203c-.253.062-.41.244-.489.484a.733.733 0 00-.041.27c0 .136.041.165.153.094.186-.153.393-.277.592-.41a1.093 1.093 0 01-.406.497c-.124.079-.248.145-.372.215-.104.075-.14.042-.174-.082-.029-.133-.017-.27-.017-.402a.877.877 0 00-.587-.881l-.327-.137a.314.314 0 00-.124.286c.025.36.078.62.14.927.058.124.195.173.336.198.082-.041.149-.157.037-.339l-.161-.319c-.017-.041-.038-.078-.05-.124-.004-.016-.012-.045 0-.066.02.008.041.008.083.05.207.223.372.476.48.79.041.124.004.174-.116.186-.273.025-.55.042-.815.1-.435.09-.58.248-.737.537-.066.125-.1.203-.103.278.153.012.327.004.575-.042a1.647 1.647 0 00.596-.194c.116-.137.207-.273.38-.397.05-.038.166-.05.211-.025A2.276 2.276 0 019.55 4.56c.017.05.067.1.091.14.05.059.03.08-.041.075-.1-.029-.207-.054-.298-.09-.037-.017-.066-.075-.083-.117l-.09-.256c-.05-.104-.075-.104-.179-.066-.053.02-.111.04-.198.082-.075.03-.112.042-.129-.041-.024-.124-.057-.248-.086-.36-.05-.137-.104-.166-.236-.1-.249.129-.43.32-.555.567-.116.24-.161.406-.054 1.043.025.124.125.277.24.315l1.076.33c.054 0 .087.063.021.104-.132.091-.277.17-.414.257-.07.041-.107.02-.14-.042a.844.844 0 00-.443-.405c-.07-.033-.108-.02-.137.054-.05.116-.103.285-.149.405-.025.062-.054.087-.124.042-.306-.257-.629-.27-1.005-.22-.187.025-.274.075-.228.26.103.518.554.758.94.924a.26.26 0 00.132-.104c.058-.083.041-.165-.042-.24-.149-.128-.463-.277-.62-.418-.025-.082.153-.157.248-.095.281.128.496.36.72.58.116.111.17.099.207-.063.041-.124.083-.314.12-.455.02-.074.066-.05.083-.004.029.108.062.248.062.372 0 .133-.046.249-.083.373-.025.124-.12.19-.224.165-.475-.045-.835.178-1.13.187a.894.894 0 01-.276-.075c-.104-.083.05-.09.082-.09.124 0 .31 0 .41-.055a.596.596 0 00-.128-.12c-.265-.215-.563.013-.79.129-.129.07-.137.086-.083.223.082.207.231.286.434.286.116 0 .228.016.348.012a.414.414 0 00.165-.041c.153-.058.29-.133.43-.195.174-.025.17.062.092.15l-.352.214c-.037.02-.079.033-.104.058-.05.037-.111.1-.103.124a.262.262 0 00.132.116c.166.05.331.075.489.112.256.05.364-.02.434-.273.037-.14.083-.273.149-.402.041-.082.091-.09.14-.008.175.323.357.637.543.952.033.07 0 .103-.066.095a23.741 23.741 0 01-1.2-.149c-.137-.02-.27-.108-.406-.165-.207-.096-.414-.183-.65-.174-.202.004-.318.124-.248.318.091.278.195.563.306.84.079.19.265.261.468.278.095.012.062-.054.037-.1l-.33-.716c-.042-.12-.01-.136.057-.037.182.273.372.534.538.811.1.174-.025.224-.149.228-.418-.042-.799-.186-1.2-.34-.041-.016-.1-.103-.087-.14.075-.07.166 0 .248 0 .096.016.137-.025.1-.1a.38.38 0 00-.203-.186 2.47 2.47 0 00-.596-.215c-.124-.025-.207.03-.182.14.033.146.1.274.174.423.02.041.02.1.008.14-.074-.004-.165.021-.476-.111-.31-.128-.314-.215-.314-.596 0-.083 0-.244.016-.319.033-.103.042-.124.137-.107.323.066.65.153.968.306.095.041.186.124.286.161.082.03.124 0 .111-.082a.29.29 0 00-.182-.249c-.339-.144-.678-.306-1.018-.442-.082-.034-.111-.07-.066-.158.137-.223.207-.484.15-.765 0-.02.024-.05.049-.075a.207.207 0 01.153.19c.025.24.186.406.343.568.319.33.319.33.766.223.058-.008.1-.05.149-.083-.042-.033-.083-.09-.14-.116-.084-.041-.175-.066-.266-.103-.298-.112-.385-.323-.285-.637a10.759 10.759 0 00.277-.865c.033-.137.041-.281.05-.426 0-.083.062-.083.111-.091l.65-.042c.166-.012.352-.207.418-.318l.215-.352a.451.451 0 00-.443-.066c.05-.162.116-.315.116-.468 0-.1-.025-.22-.066-.323-.041-.099-.112-.115-.194-.053-.158.132-.29.29-.34.504-.05.216-.14.609-.095.679.1-.074.232-.174.319-.199a.19.19 0 01.149.025 2.12 2.12 0 01-.48.331c-.12.054-.166-.016-.145-.132.14-.538.054-.58.008-.844a3.103 3.103 0 00-.401-.927c-.058-.075-.15-.05-.273.1-.199.24-.249.442-.352.856l-.025.082-.14.125-.063-.07c.054-.191.112-.303.112-.456a.525.525 0 00-.207-.422c-.153.1-.294.223-.33.29a.41.41 0 00.007.471c.158.278.133.555.083.882l-.041-.013a3.674 3.674 0 00-.116-.629c-.033-.132-.12-.244-.19-.36-.07-.103-.133-.327-.075-.418.083-.144.344-.219.443-.351.103-.158.054-.224.186-.364.079-.096.248-.29.372-.224.373.186.77.228 1.188.174.178-.025.215-.02.265-.199.041-.149.062-.05.21-.099.253-.083.386-.31.386-.58 0-.148.008-.301-.009-.454-.012-.133-.062-.261-.103-.381-.033-.079-.087-.062-.124-.004-.104.136-.277.405-.373.554-.053.087-.099.174-.144.265-.025.07-.058.087-.12.02a1.349 1.349 0 00-.22-.19c-.136-.087-.149-.36-.095-.533.058.033.1.099.137.186.05.116.074.248.165.29.12.061.24-.187.224-.356a.27.27 0 00-.042-.125c-.132-.235-.434-.426-.62-.426-.216 0-.352.265-.265.517.025.067.05.116.083.178-.51.27-.646.439-.849.675-.025.029-.05.112-.025.153.096.182.058.244-.136.352-.087.05-.207.095-.298.124-.012.008-.037-.013-.062-.017a.124.124 0 01.025-.05c.124-.277.26-.541.376-.823.124-.302-.149-.583-.393-.678-.161-.063-.29-.025-.397.12-.27.322-.327.848.05 1.344.058.083.04.116-.054.125-.215.016-.43.04-.654.053a.869.869 0 00-.662.352c-.05.075-.116.091-.186.041-.17-.103-.315-.078-.493.025-.29.153-.629.273-.815.273-.029 0-.066-.024-.09-.05.016-.024.04-.061.103-.082.177-.041.322-.087.48-.132.029-.03.04-.1.057-.129-.028-.041-.09-.095-.136-.1a2.185 2.185 0 00-.451 0c-.393.038-.683.22-.931.452-.116.116-.124.236 0 .331.29.207.6.414.993.31.273-.087.443-.29.62-.488.15-.157.332-.343.505-.145.253.29.303.592.716.538.158-.016.224-.07.265-.22l.033-.177c.013-.116-.05-.174-.161-.128-.075.024-.14.066-.215.082-.042.013-.087-.004-.137-.016.004-.042.013-.1.042-.124.074-.05.165-.091.248-.129.31-.082.604-.144.91-.206a.265.265 0 01.095 0l-.029.086c-.111.257-.26.336-.463.385a.479.479 0 00-.112.199c-.128.414-.054.844.224 1.142.099.112.223.203.351.281.216.124.273.331.352.55.05.137.104.274.166.41a1.386 1.386 0 00-.418.447c-.042.042-.075.025-.1-.025l-.12-.293c-.107-.261-.29-.427-.579-.451-.103-.009-.207-.025-.306-.038-.12-.012-.199.042-.24.178-.162.497-.008.927.467 1.192-.38.095-.695.248-.89.513.021.075.137.174.286.236.373.153.753.137 1.105.017.207-.075.215-.025.253.124l.103.463c.025.112-.037.174-.14.137-.568-.166-1.242-.439-1.73-.766a2.566 2.566 0 00-.642-.19c-.074.041-.136.095-.202.083a3.629 3.629 0 01-.613-.216c-.1-.058-.103-.087.02-.103.191 0 .539.083.717.083.173-.054.173-.083.066-.158-.418-.33-.89-.252-1.357-.173-.166.033-.178.111-.083.244.604.683 1.05.678 1.787.592.48.306.96.579 1.52.757l.011.083a8.155 8.155 0 00-1.142.165c-.182.037-.219.149-.12.315.15.24.385.351.654.417a.848.848 0 00.58-.037c.223-.103.368-.29.579-.405.124-.067.33.008.455.041.19.062.372.145.567.174.77.103 1.589.174 2.305.116a3.697 3.697 0 00-.207.484c-.037.1-.004.124.1.116a.436.436 0 00.36-.207c.012-.116.012-.22.036-.335.013-.062.03-.15.07-.158.03-.004.208.025.187.075a7.213 7.213 0 01-.19.496c.066.013.136.025.206.025.29 0 .336-.041.323-.33a1.2 1.2 0 00-.037-.245c-.037-.215.008-.364.194-.463.183-.091.373-.062.555-.042a3.393 3.393 0 011.568.708c.228.182.03.434.03.778 0 .215-.042.438-.038.55.008.178.083.273.149.323.199.153.418.306.629.443.215.14.323.227.58.314a.556.556 0 00.181.013.662.662 0 00-.012-.265c-.124-.083-.298-.124-.497-.19-.037-.013-.074-.063-.095-.108a.372.372 0 01.145-.083l.323-.07a.19.19 0 00.082-.07c-.016-.03-.04-.067-.066-.071-.132-.041-.306-.07-.418-.1-.041-.012-.062-.049-.095-.086a.406.406 0 01.157-.083l.331-.041a.174.174 0 00.087-.054c-.012-.033-.029-.075-.053-.087-.07-.033-.41-.157-.447-.195-.03-.028-.038-.07-.05-.124a.317.317 0 01.157-.033l.277.004a.178.178 0 00.112-.053.248.248 0 00-.074-.087c-.133-.083-.182-.141-.331-.207-.07-.042-.104-.083-.116-.17a.461.461 0 01.186-.008c.1.025.153.058.26.074a.284.284 0 00.117-.012.116.116 0 00-.03-.083c-.04-.041-.095-.062-.144-.1-.075-.049-.203-.173-.277-.235-.025-.02-.013-.083-.017-.104l.083.005c.1.02.248.062.33.074.15.029.13.008.067-.1-.091-.082-.186-.136-.273-.231-.025-.033-.017-.087-.013-.132.141.008.286.074.414.074.013-.025.021-.041.021-.074a2.11 2.11 0 00-.103-.249c-.038-.095.012-.132.082-.103.1.041.257.124.364.149.042.012.096 0 .15-.02-.05-.1-.108-.179-.174-.278-.013-.025 0-.062.02-.091.17.05.344.166.497.207.07.029.116 0 .132-.033.013-.042-.111-.166-.103-.215.004-.033.012-.042.029-.062l.29.09c.21.054.33.075.364.025.04-.012-.005-.111-.067-.227.166-.013.187.066.48.124.112.029 1.664-.19 2.293-.385.248-.083.538-.207.77-.314l.074.016c.178.455.554.596.94.637.11.013.23.021.35.025.113 0 .137-.029.104-.14a1.986 1.986 0 00-.575-.977l-.248-.153c-.108-.112-.095-.24.02-.331.2-.133.464-.26.663-.385.29-.186.389-.472.372-.774a.257.257 0 00-.107-.202.323.323 0 00-.15.103c-.078.165-.157.302-.227.447-.054.029-.112.041-.161.062-.013-.05-.042-.1-.03-.149.088-.257.315-.463.464-.629.062-.103-.029-.145-.074-.137-.166.038-.348.1-.472.24a3.335 3.335 0 00-.654 1.354c-.029.128-.083.173-.124.293-.054.182-.05.224.108.336.227.148.525.285.74.438.087.095.042.133-.05.128a.857.857 0 01-.62-.277c-.083-.09-.153-.149-.248-.161-.224.058-.534.149-.766.182-.132.025-.236.078-.306.203-.046.103-.14.124-.248.082-.166-.045-.331-.103-.497-.14a1.862 1.862 0 00-.828.058c-.111.016-.136-.009-.103-.116.029-.137.074-.27.1-.402.003-.058.012-.144-.042-.173-.054.024-.132.037-.157.074-.087.128-.153.265-.236.406-.054.111-.075.111-.19.062a2.11 2.11 0 01-.468-.286c-.112-.178-.232-.327-.29-.48-.02-.041.042-.074.095-.074.125.099.273.223.385.33.075.083.1.166.15.274.012.025.132.02.152-.025.017-.041.038-.103.054-.19a.587.587 0 00-.136-.542c-.183-.187-.307-.224-.56-.398-.314-.215-.36-.202-.475.009a1.232 1.232 0 00-.153.579c.083.505.203.712.815 1.026a.17.17 0 01-.05.083c-.04.033-.062.054-.132.054-.215-.009-.517-.013-.753-.033-.066-.005-.108-.025-.124-.063a3.103 3.103 0 01.273-2.234.372.372 0 01.149-.161c.128-.067.33-.153.455-.207.075-.033.112-.009.145.066.054.199.074.34.09.509.01.103.013.207.055.227.099.042.186-.04.236-.124a1.1 1.1 0 00.099-1.005c-.013-.033.016-.1.054-.12.422-.17.815-.344 1.241-.51.24-.012.546.013.972.084.07.008.22.132.373.219-.195.1-.48.306-.679.496-.054.058-.124.133-.074.29.165-.008.248-.054.372-.09.19-.055.31-.084.464-.084a.828.828 0 01.124.017.228.228 0 01-.058.128c-.054.05-.14.042-.203.075-.062.041-.124.103-.083.178.03.05.112.107.17.099.199-.013.38-.037.588-.1.09-.074.438-.53.24-.57-.112-.025-.352-.042-.456-.096a.207.207 0 01.125-.14c.107.016.231.05.397.066a2.441 2.441 0 00.815-.037c.112-.042.149-.083.112-.153a1.283 1.283 0 00-.758-.663c-.149-.04-.33-.008-.484-.008l-1.332-.012c-.03 0-.062-.025-.091-.042.025-.02.05-.045.074-.058.124-.074.27-.136.393-.223a.87.87 0 00.365-.55.228.228 0 000-.129c-.125-.455-.373-.786-.89-.844l-.257-.041c-.095-.008-.132.033-.132.12 0 .161.008.248 0 .414 0 .082.041.111.137.124a3.186 3.186 0 01.703.203c.137.053.165.136 0 .277l-.372.265c-.067.041-.096.008-.104-.054-.008-.1-.008-.207-.025-.302a.207.207 0 00-.054-.095.273.273 0 00-.198.165c-.05.133-.083.257-.104.385a.406.406 0 01-.285.331c-.075.02-.14-.008-.128-.079.012-.082.029-.165.053-.248.12-.29.182-.538.158-.81a5.834 5.834 0 01-.042-.572.17.17 0 01.124-.182c.224-.087.435-.174.67-.248.08-.03.146.004.208.082l.471.555c.125.132.158.128.265-.02.1-.141.207-.27.364-.357.083-.041.083-.12-.012-.157-.178-.066-.356-.103-.542-.165-.042-.013-.087-.013-.133-.03-.029-.012-.066-.049-.066-.074 0-.025.037-.062.066-.074.34-.12.621-.232.923-.348.083-.037.124-.103.112-.19-.008-.112-.041-.207-.058-.315-.017-.099-.083-.174-.186-.186-.414-.041-.662.075-.944.364a.257.257 0 00-.066.228c.05.008.091.008.128-.004a1.69 1.69 0 00.443-.187c.075-.082.133-.165.174-.165.025 0 .07.103.083.14-.042.05-.083.1-.41.24a9.447 9.447 0 01-1.812.625c-.083.009-.079-.045-.058-.082.116-.203.248-.414.376-.63.124-.074.158-.04.112.075a2.223 2.223 0 01-.137.257c-.012.083.025.103.075.095a.695.695 0 00.513-.617c0-.103-.05-.14-.157-.136-.157.012-.331.025-.484.07-.29.075-.464.277-.559.542a2.934 2.934 0 00-.091.377c-.025.136-.14.186-.26.252-.203.124-.307.1-.48.133a2.855 2.855 0 00-.435.099c0-.05-.013-.095 0-.124.1-.157.186-.31.29-.455.144-.211.107-.331-.125-.414a.86.86 0 00-.993.347c-.124.199-.215.435-.302.65-.054.128 0 .207.137.236.21.037.463-.041.654-.095-.013.062-.017.302-.038.351l-.124.27c-.078.132-.165.177-.31.107a6.538 6.538 0 01-.65-.352c-.248-.145-.488-.248-.765-.248a.372.372 0 01-.083-.008c-.091-.02-.095-.05-.042-.108.07-.07.075-.14.034-.227l-.286-.53a1.448 1.448 0 01-.136-.31c.07-.013.33.074.33.124.021.29.108.496.261.678.116.116.224.042.236-.074.02-.153-.186-.402.083-.973.116-.256.472-.695.703-.695.124 0 .228.054.302.236.042.083.07.282.108.364.033.083.074.124.165.116.224-.029.534-.165.787-.198.161-.025.285.376.364.52.124.216.182.402.323.17.24-.33.351-.703.608-.819a1.792 1.792 0 011.043-.178c.111.013.144.054.12.166-.021.066-.025.136-.042.207-.025.078.046.107.133.041.12-.07.207-.165.29-.273.214-.232.43-.348.852-.348.198 0 .351.042.53.104.136.05.157.07.12.207l-.12.397c-.042.182-.013.207.148.298.141.083.253.14.34.248a.29.29 0 00.178-.062 2.14 2.14 0 01.765-.865c.133-.074.166-.066.22.062.111.282.173.526.194.79.149-.173.323-.36.447-.496.447-.422.89-.418 1.49-.269.148.042.033.19-.054.306l-.116.174c-.037.062-.066.066-.116.013-.075-.087-.149-.24-.224-.315-.136-.136-.376-.058-.542.042a2.222 2.222 0 00-.802.823 4.345 4.345 0 01-.704.832c-.107.041-.107.037-.083-.075a2.959 2.959 0 00.489-1.535.368.368 0 00-.286.062c-.414.232-.62 1.055-.678 1.606-.013.115-.013.207-.116.264-.174.1-.24.141-.414.22-.041.008-.066 0-.104-.004.083-.365.025-.621-.186-.965-.037-.066-.083-.099-.161-.074-.041.025-.083.058-.178.132a1.56 1.56 0 00-.488 1.196c0 .083.082.083.14.042a.624.624 0 00.158-.19c.103-.174.19-.357.29-.53.016-.042.065-.07.103-.083.02.041.02.087.012.124l-.074.331a1.034 1.034 0 01-.331.455c-.03.042-.05.116.033.124.356.017.562-.024.869-.186.322-.165.538-.302.678-.285.095.012.58.153.621.186-.025.05-.062.066-.091.1-.05.04-.286.169-.389.256-.166.136-.223.198-.19.476.016.124.037.24.066.36.012.037.041.09.066.099.041 0 .083-.033.108-.062.136-.166.264-.348.401-.513a.314.314 0 01.083-.05c0 .033.008.062 0 .083-.03.203-.133.356-.257.505l-.083.103c-.107.153-.115.178-.008.331a.73.73 0 01.104.58c-.03.144-.075.36-.104.57-.26.12-.525.29-.745.44-.14.123-.165.223-.165.252.066.082.128.095.256.148.182.058.522-.012.584-.206a.577.577 0 00.041-.211c.066.012.124.012.14.066.067.207.125.347.257.484a.682.682 0 01-.099.182c-.078.128-.145.24-.256.215-.042-.004-.087-.016-.137-.016-.083 0-.165 0-.153.149.016.19.041.277 0 .471-.025.108-.058.224-.166.22-.26-.021-.43-.211-.682-.207a.981.981 0 01-.476-.083c-.133-.07-.228-.145-.29-.182a69.39 69.39 0 00-3.1.58c-.094.02-.09.082-.107.181-.05.228-.136.451-.174.679-.008.037.042.083.067.116.024-.025.062-.042.087-.075.053-.078.09-.17.153-.248.107-.116.389.008.438.165.042.096-.09.141-.082.249.008.09.14.174.14.29 0 .103-.041.17-.058.223.39.248.484.455.497.778.012.1.012.149.066.207.054.053.14.132.178.182.182.21.348.546.472.58.062.02.219.032.339.02l.025.066a.492.492 0 01-.248.244c-.286.091-.427-.335-.58-.58a2.069 2.069 0 00-.24-.318c-.124.137-.33.687-.314.948.083.351.29.7.426.951.095.158.281.212.463.282.154.054.265.083.422.037.083-.02.112-.025.15-.054l-.005-.318c.042-.58.133-1.159.17-1.655 0-.133.1-.356.269-.472a.539.539 0 00.24-.5.393.393 0 01.041-.208c.058-.116-.053-.116-.165-.132-.124-.02-.153-.066-.091-.178.116-.195.281-.36.414-.546.082-.133.124-.228.153-.307-.033-.16-.021-.4.14-.41.526-.061.745-.016 1.08.237.021.033.025.082.025.124 0 .041.095.074.273.252.137.128.27.488.038 1.043.115.07.111.178.099.302-.008.108.025.124.124.161.124.042.19.116.294.373.09.248.36.898.517 2.49-.029.502-.116.87-.215 1.28.107.765.227 1.704.323 2.991.078 1.217.099 1.842.124 2.342.215.017.281.062.327-.12l.041-.17c.041-.12.161-.078.166-.012l.132.39c.029.11.062.181.103.289.145.198.207.025.207-.12.017-.124.017-.228.017-.34.025-.144.1-.153.153-.053l.19.45c.07.158.145.2.174.104.025-.128.03-.356.025-.538-.029-.103-.075-.215-.091-.306 0-.124.1-.1.124-.062a14.441 14.441 0 01.675.881c.124.075.198-.053.165-.103-.008-.05-.07-.112-.07-.211.016-.157.165-.087.198-.03.137.137.228.315.307.46a.29.29 0 00.124.062.238.238 0 00.037-.145c-.008-.05-.066-.165-.083-.219.058-.095.174.025.211.062.042.042.083.112.137.199.074.116.198.215.471.252.005.025.017.058.017.083-.037.025-.1.054-.265.083a3.38 3.38 0 01-1.034.02 1.2 1.2 0 00-.762.166c-.165.095-.33.083-.525.074-.373-.016-.745-.016-1.126-.024-.786-.021-1.179.136-2.069.182-.29 0-.893-.15-.893-.335 0-.129.074-.236.074-.303 0-.082-.017-.103-.091-.124-.633-.111-1.258.033-1.833.141-.488.075-.745-.004-1.002-.207a1.295 1.295 0 01-.355-.376 5.057 5.057 0 00-.99-.94c-.413-.33-.939-.93-1.266-1.345-.074-.086-.202-.509-.248-.629a1.266 1.266 0 01-.058-.546c.05-.041.112-.09.157-.095.278-.008.621-.14.634-.223.029-.062-.017-.116-.07-.1a1.61 1.61 0 01-.489 0c-.083-.012-.182-.05-.22-.09.05-.063.083-.108.137-.137a1.452 1.452 0 00.646-.249.157.157 0 00-.017-.082c-.182-.009-.323-.009-.525-.058a.468.468 0 01-.199-.116.322.322 0 01.149-.124c.232-.075.401-.186.559-.331l-.004-.091a3.157 3.157 0 01-.63-.066c-.095-.05-.103-.058.005-.174.149-.038.422-.062.57-.112.112-.058.092-.153-.02-.186a3.393 3.393 0 01-.538-.058c-.112-.1-.124-.108.02-.174l.477-.1c.182-.061.153-.177 0-.223-.145-.016-.245-.05-.39-.074-.19-.095-.186-.104-.032-.166l.302-.082c.082-.021.165-.054.182-.116a.091.091 0 00-.009-.062c-.128-.038-.389-.013-.504-.05-.042-.008-.083-.054-.108-.108l.112-.062a1.72 1.72 0 00.41-.157.36.36 0 00.045-.103.269.269 0 00-.083-.042 3.53 3.53 0 01-.385-.132c-.082-.104-.078-.124.033-.17l.216-.058a1.378 1.378 0 00-.108-.215.215.215 0 00-.074-.074c-.125-.075-.303-.15-.435-.236-.248-.153-.509-.302-.703-.497a1.614 1.614 0 01-.522-.852 1.784 1.784 0 01-.004-.63c.025-.156.112-.322.195-.47.033-.055.057-.104.024-.15a3.26 3.26 0 00-.384-.414.654.654 0 00-.245-.124c-.492-.087-.794-.186-1.018-.157a.786.786 0 00-.19.285c.042.166.124.423.128.634.182.02.398.082.621.206.178.116.22.178.29.398.153.496.194 1.13.302 1.808.095.645-.244 1.18-.898 1.204-.356.017-.646-.054-.74-.294-.117-.339-.204-.625-.315-.964a7.437 7.437 0 00-1.449.513c-.434.207-.79.406-1.25.592-.872.36-1.836.58-2.701.58-.455 0-.964-.092-1.316-.232-.315-.125-.426-.253-.497-.65a3.77 3.77 0 01-.016-1.018c.041-.331.095-.563.323-1.183.099-.274.227-.402.438-.51a2.317 2.317 0 011.142-.227c.137.008.315.029.439.083.248.09.285.29.294.538 0 .145.008.29-.005.434-.012.116-.008.162-.008.207.315.046.973.029 1.283-.041.256-.054.36-.095.828-.315.322-.145.76-.472 1.27-.736zm9.906 5.532c.03.062.1.372.1.48 0 .252-.021.484-.05.877-.042.513.012 1.035-.058 1.54-.03.248-.091.633-.07.972.004.136.024.174.103.19.248.058.414.083.538.083.38 0 .629-.174.596-.385a5.172 5.172 0 01-.178-1.423l.1-.009c.14.58.26.865.301 1.167.05.273 0 .741.054.981.637.07 1.399.008 1.63-.041.058-.522.042-1.056-.186-1.254a6.44 6.44 0 00-.505-.385 2.851 2.851 0 01-.678-.753c-.273-.43-.348-.567-.588-.985-.223-.389-.372-.724-.525-.952a1.684 1.684 0 00-.22-.29 2.926 2.926 0 00-.58-.107c-.268-.029-.446-.058-.6-.227-.131-.133-.185-.24-.107-.418.042-.096-.012-.162-.082-.24-.08-.1-.058-.207.04-.282.237-.231.456-.347.766-.43l-.05-.215c-.123.016-.26.054-.508.054-.344 0-.654-.141-.778-.592-.046-.162-.248-.617-.306-.82-.042-.124.004-.277.062-.455-.108-.132-.199-.281-.29-.405-.186-.079-.41-.157-.559-.34-.062-.074-.09-.078-.144-.04-.05.036-.062.09-.133.152-.066.058-.203.062-.33.008-.125-.05-.187-.177-.183-.302.013-.165.095-.31.02-.376-.127-.137-.247-.29-.094-.397.041-.038.136-.03.194-.058a.414.414 0 00.199-.464c-.033-.136-.108-.198-.244-.21-.195-.013-.282-.113-.282-.24 0-.166.145-.237.278-.208a.421.421 0 01.173.083c.013.062.042.149.091.14.224-.024.398-.256.398-.475 0-.075-.05-.112-.195-.079-.265.042-.596.141-.923.253-.182.062-.207.207-.107.372.033.037.058.083.082.124.042.066.025.116-.04.153l-.084.062c-.099.075-.111.158-.05.27.017.04.042.07.075.099.075.066.075.124.004.207a.314.314 0 00-.066.335c.029.095.104.633.104.736-.005.278.05.555.033.815-.013.19.082.356.264.563.2.22.344.418.613.679.318.302.492.662.521 1.105.013.207.112.281.31.389.419.116.563.351.613.67.083.567-.194 1.117-.703 1.068-.261-.025-.39-.182-.39-.319 0-.145.075-.29.195-.331.02-.008.095 0 .112 0a.248.248 0 01.012.091c0 .037-.05.058-.066.132-.012.05-.012.15.037.211.054.07.15.096.249.062.115-.037.194-.136.248-.24.236-.426.116-.93-.335-1.042-.145-.042-.352-.062-.485.016-.28.174-.52.273-.757.489a.182.182 0 00-.058.136 23.143 23.143 0 00.199 2.814c0 .203.149.455.207.488.165-.12.207-.24.352-.467.07-.042.103-.017.124.045-.004.211-.046.414-.021.596.012.054.074.103.116.14.1-.09.103-.227.145-.33.111-.116.136.012.14.045-.008.137 0 .26.013.331.004.054.054.066.1.079.12-.24.272-.455.467-.588.116-.083.19-.012.124.104a2.934 2.934 0 00-.265.699.414.414 0 00.116-.012c.025-.009.062-.017.074-.083.083-.207.129-.232.224-.083.041.14.103.24.186.281.124-.033.132-.182.182-.29.132.01.14.154.207.224.045.037.422.05.492.042l-.012-.22c-.008-.438 0-.79.029-1.225.033-.455.083-.922.108-1.324.016-.33.058-.836.082-1.229zM22.792 8.4a7.541 7.541 0 00-.625-.041c-.091 0-.34 0-.348.128 0 .037.05.103.108.14.302.207 1.146.245 1.49.187a.574.574 0 00-.03-.253c-.082-.252-.393-.475-.678-.567a2.338 2.338 0 00-.919-.033l-.058-.153c.1-.447.087-.86.025-1.187a.962.962 0 00-.182-.414c-.058-.083-.124-.079-.198-.017-.05.042-.1.096-.187.207-.285.348-.273.58-.223 1.1.033.026.07.05.165.05.091 0 .133-.04.145-.165.009-.174.05-.356.075-.517.041.012.116.062.124.09.016.27-.07.551-.137.804.017.029.215.115.186.198-.024.062-.33.14-.546.157a1.092 1.092 0 00-.509-.417c-.124-.05-.26-.091-.157-.174l.166-.066c.29-.12.194-.286.182-.567-.013-.108-.054-.137-.153-.133a.795.795 0 00-.36.083c-.216.132-.381.352-.538.53-.03.029-.091.016-.141.016.083-.26.19-.546.273-.778.029-.082.066-.165.157-.145.447.104.902.017 1.217-.297.132-.141.132-.207-.037-.327a1.051 1.051 0 00-.952-.207c-.137.054-.228.132-.248.273-.013.083.401-.033.546-.02.041.003.07.04.1.061-.266.116-.572.174-.828.248-.083.021-.116 0-.129-.082a.36.36 0 01.129-.364c.194-.166.347-.36.389-.621.024-.14-.092-.352-.154-.472-.008-.033.009-.058.013-.083a1.8 1.8 0 01.525.249 1.171 1.171 0 00.815.902c.145.05.294.103.452.149.14.041.248.004.24-.15l-.009-.206c.124-.054.265-.095.298-.091.236.033.476.149.72.227.166.083.083.141-.033.125-.182-.03-.36-.083-.534-.125-.111-.024-.202.025-.219.133.074.132.414.29.538.34.182.065.869.144.86-.042a2.425 2.425 0 00-.082-.546c-.042-.154-.174-.24-.319-.278a3.724 3.724 0 00-.918-.107.84.84 0 00-.331.107l-.038-.202c-.066-.278-.198-.344-.405-.414.012-.083.012-.137.012-.224.182-.103.406-.277.493-.422-.075-.07-.207-.107-.278-.132-.281-.1-.31-.207-.5-.29a1.241 1.241 0 00-.447-.112c-.14-.004-.331.034-.373.087-.02.038 0 .096.083.153.124.096.385.166.513.257.083.046.042.066-.012.074a1.279 1.279 0 01-.505-.144c-.095-.05-.124-.091-.194-.116-.125-.042-.145-.008-.228.136-.062.104.012.158.1.207.297.166.517.26.893.302.041.042.05.112.062.195-.372-.05-.496-.054-.728-.137-.368-.198-.662-.356-1.018-.471-.066-.03-.091-.07-.017-.116.373-.224.729-.497 1.105-.704.054-.029.14-.016.207-.004.182.033.244.091.426.145.108.041.211.07.232-.03.054-.272.14-.475.22-.59.165-.253.4-.386.711-.58.116-.393.497-.795.633-.795.373 0 .745.675.82.927.05.182-.249.34-.05.34.174 0 .335.029.335.178 0 .26-.074.525-.207.715-.14.19-.29.398-.48.526l.012.066c.323.24.675.414.675.778 0 .195-.054.331-.166.426-.086.075-.157.15-.148.261.012.252.028.393.012.641-.012.166-.517.199-.588.273a2.069 2.069 0 01-.14 1.258l.103.19c.513.36.58.688.654.969-.14.137-.373.252-.455.252-.331 0-1.064-.248-1.209-.269-.058.104-.024.2.05.406.066.186.19.314.19.488 0 .083-.012.215-.248.253a1.663 1.663 0 01-1.105-.302c-.066-.038-.124-.083-.19-.112-.112-.062-.252-.017-.29.112l-.074.248c-.042.136-.112.149-.298.112-.526-.112-.77-.679-.77-1.18.025-.103.108-.062.124-.012.033.244.141.48.22.678.099.19.223.294.43.32.041 0 .1-.08.149-.166.112-.236.215-.394.182-.67a.672.672 0 00-.112-.32c-.033-.04-.087-.07-.149-.124.03-.045.075-.095.112-.082.232.082.406.082.55.004.091-.05.133-.112.195-.19a8.19 8.19 0 01.799-.162c.372 0 .703.05.98.174zM8.628 17.479c.198 0 .438.099.434.314l-.041.108a.112.112 0 01-.05-.013c-.074-.161-.194-.252-.389-.215a.835.835 0 00-.455.257c-.079.082.083.132.182.186l.207.124c0 .108-.282.894-.14.919.355.062.827-.427.876-1.118-.012-.248.129-.372.402-.463.323-.124.476-.269.422-.62-.025-.175.074-.125.17-.27l.107-.116c.017.05.054.166.041.216-.074.285-.016.509.125.765l.264.687c.063.066.12.012.183.083.227.46.484 1.146.831 1.44.286.236.588.65.857.898.157.14.265.492.463.558.14.05.137.124.116.253-.025.157.041.186.1.186.095-.012.186-.037.285-.041.215.045.165.19.008.215-.107.012-.21-.009-.318-.009a.613.613 0 00-.112.042.226.226 0 00.058.107c.174.096.298.108.467.145.033 0 .058.025.096.037-.013.03-.05.096-.083.112a.729.729 0 01-.19 0c-.154-.033-.294-.1-.44-.165-.049-.017-.082-.07-.127-.104-.038-.016-.083-.025-.125-.037 0 .05-.016.095-.012.137.033.066.103.182.074.206-.012.021-.111.083-.14.067-.124-.058-.224-.199-.34-.265-.148-.095-.285-.095-.426.004-.145.1-.273.186-.41.265-.169.111-.351.29-.554.29-.112 0-.389-.17-.513-.208-.232-.074-.306-.082-.554-.136-.207-.05-.39.029-.6.1-.257.078-.538.111-.816.16-.157.03-.339 0-.504-.008-.249-.008-.489-.029-.733-.025-.165 0-.34.03-.496.083a.855.855 0 01-.22.033.558.558 0 01-.322-.099.472.472 0 00-.352-.066c-.116.025-.344.066-.439-.02-.116-.117-.393-.348-.55-.32-.493.083-.728.365-1.208.236-.34-.086-.563-.165-.894-.057-.083.033-.298-.017-.385-.005-.124.017-.166-.008-.15-.132l.013-.066c.021-.128-.103-.224-.227-.178-.137.041-.215.182-.344.248-.236.116-.455.083-.711-.016-.174-.075-.352-.042-.518.041-.107.058-.281.31-.397.31-.041 0-.103-.066-.124-.124v-.12a.828.828 0 01.273-.252 1.552 1.552 0 01.944-.124c.149.024.31.041.45-.017.112-.05.228-.058.332-.112.186-.099.347-.186.558-.111.153-.07.236-.12.315-.236.037-.186-.03-.38.016-.563.042-.166.112-.372.166-.53.033-.082.09-.074.145-.066.149.22.33.426.24.63-.062.14.26.24.207.38-.054.107-.03.174.078.186l.083.008c.095 0 .1-.062.095-.182.004-.678-.215-1.15-.447-1.684-.095-.207-.078-.414-.004-.62l.14-.423a.794.794 0 01.427-.447c.025-.004.095.025.112.058.302.427.413.944.264 1.457a5.45 5.45 0 00-.103.48c-.008.041.004.083.012.124.03-.025.067-.05.091-.083.15-.223.303-.442.423-.682.115-.232.306-.327.546-.373.26-.054.335-.02.269.232a5.27 5.27 0 01-.137.43.857.857 0 01-.438.534c-.15.083-.286.194-.414.29-.05.066-.062.062-.009.128.05.062.125.025.187-.013.244-.177.496-.318.744-.455.092-.041.12-.008.112.1-.012.124-.029.293-.153.339-.136.045-.319.066-.439.124A.828.828 0 004.88 21c-.083.124-.083.207-.15.34-.012.028 0 .078.005.123.041-.016.083-.016.111-.033.162-.116.249-.248.41-.372.124-.095.153-.083.203.07.016.05.054.091.103.137.05-.033.104-.062.141-.112.145-.215.236-.645.426-.93.033 0 .075.024.1.036.04.095-.013.422-.005.493.005.198.067.24.249.149.14-.07.269-.145.405-.22.15-.074.27-.016.182.1-.045.07-.116.124-.157.198-.025.042-.02.112-.025.166.042 0 .1.008.14-.013.113-.029.216-.078.324-.124.144-.066.293-.045.455 0 .153.054.31.091.455.133.12.029.252-.025.36-.075a3.84 3.84 0 01.654-.252 2.11 2.11 0 00.815-.468c.054-.058.137-.087.199-.145.05-.041.09-.235.095-.298.041-.165-.025-.554.008-.728.02-.041.054-.132.083-.178l.07.02c.02.063.05.158.05.208-.013.298-.017.96-.05 1.25 0 .066-.116.173-.182.198-.521.19-1.047.39-1.572.538-.236.066-.497.029-.745.033-.199 0-.393-.029-.588-.016-.153.012-.372.153-.53.178-.43.066-.802.037-1.228.115-.393.075-.77.182-1.147.286a.697.697 0 00-.235.116c-.03.025-.038.07-.05.1.041.02.083.049.124.04.095-.008.174.021.273.009.232-.037.464-.062.704-.083a.32.32 0 01.161.066.444.444 0 00.364.075c.14-.033.265.004.39.095.214.174.268.182.516.041.19-.103.402-.103.613-.09.471.024.91.094 1.336.173a.91.91 0 00.878-.34 5.94 5.94 0 00.33-.45c.08-.104.166-.174.29-.174.265-.004.538-.066.799-.05.149.013.22.15.22.236-.01.087-.042.14-.146.137a9.13 9.13 0 01-.596-.05c-.206-.017-.372.041-.496.199-.066.074-.05.124.05.149.041.004.095.024.14.029.108.012.158.062.186.16.021.063.15.125.365.137.277.017.422.017.662-.062.099-.033.165-.149.236-.235.157-.228.264-.286.546-.228.198.037.33-.174.509-.161.327.04-.042-.617-.249-.832-.285-.211-.513-.63-.76-.94-.183-.227-.402-.314-.56-.591-.302-.5-.55-1.113-.885-1.515-.132-.136-.418-.041-.559.033a.393.393 0 00-.165.116c.405.344.422.82.281 1.171-.041.112-.083.108-.198.062a4.264 4.264 0 01-.32-.128c-.07-.037-.131-.02-.206.025-.306.186-.683.439-.745.376-.124-.124-.323-.496-.31-.686a.764.764 0 01.12-.377 3.103 3.103 0 01-.397-.257l-.005-.136c.257-.248.605-.488.874-.488zm-7.747-3.6c.033.244.137.442.373.533.34.141.786.224 1.167.228.45.012.943-.025 1.473-.124a9.6 9.6 0 002.383-.832 6.596 6.596 0 011.449-.55 3.277 3.277 0 011.6-.042c.237.054.286.054.253-.115-.016-.112-.05-.224-.066-.34-.058-.397-.041-.77-.19-1.109a.46.46 0 00-.22-.202 1.308 1.308 0 00-.38-.116 2.69 2.69 0 00-.803 0 4.03 4.03 0 00-1.208.372c-.414.203-.828.43-1.138.617a3.269 3.269 0 01-1.68.484c-.393 0-.654-.013-1.047-.054a3.74 3.74 0 01-1.544-.426c-.107-.054-.165-.037-.206.074a3.463 3.463 0 00-.207 1.597zm18.41 4.344c-.137.021-.422.058-.588.067a.786.786 0 01-.16-.021c.024-.05.04-.066.07-.079.202-.103.417-.198.566-.314.083-.062.066-.124.042-.178-.278.124-.538.178-.832.228-.02 0-.033-.021-.041-.034.227-.17.53-.306.695-.455.111-.09.029-.116-.009-.153-.24.083-.48.162-.732.232a.29.29 0 01-.116-.013c0-.05.05-.07.091-.095a3.86 3.86 0 00.704-.463l-.013-.062-.083-.009c-.194.034-.624.096-.86.12-.116 0-.095-.066-.075-.082.187-.083.331-.182.468-.327.05-.054.041-.104.025-.128-.224.103-.48.107-.63.124-.028-.038.01-.083.026-.1.182-.07.219-.128.314-.19.062-.041.195-.132.224-.182.012-.017.008-.066-.005-.083a2.897 2.897 0 01-.55.133.277.277 0 01-.1-.017c.017-.041.026-.074.05-.087.257-.132.394-.186.576-.298a.446.446 0 00.124-.161l-.017-.025c-.207.066-.418.137-.633.194-.041-.008-.062-.033-.1-.062a.252.252 0 01.075-.074 3.38 3.38 0 001.171-.675.922.922 0 00.224-.252l-.03-.05c-.413.29-.814.542-1.29.729-.095-.009-.075-.067-.042-.091.042-.042.166-.182.265-.315a3.737 3.737 0 001.084-.625c.025-.025.038-.095.021-.14-.211.095-.534.277-.815.38l-.054-.016a.564.564 0 01.066-.145c.19-.124.464-.319.679-.555.008-.029.02-.066 0-.099a3.77 3.77 0 01-.559.228c-.062-.042.013-.15.02-.174.262-.215.386-.356.514-.538.025-.041.025-.079 0-.145-.145.104-.352.166-.513.228l-.046-.013c-.008-.053 0-.041.017-.082.19-.174.352-.31.468-.51.012-.02.008-.074-.013-.111-.157.054-.277.1-.447.14a.132.132 0 01-.058-.012c.009-.054 0-.066.021-.107.116-.1.232-.236.34-.398.028-.041.024-.082.003-.111-.082.02-.231.041-.306.05-.033.008-.074-.03-.095-.067l.29-.207a.248.248 0 00.05-.078c-.038-.017-.067-.038-.092-.03-.124.017-.24.03-.364.054-.273.058-.273.096-.298.174a6.054 6.054 0 01-.302.902c-.037.083-.083.162-.165.195-.116.058-.091.12-.124.231-.05.224-.083.207-.174.427a1.2 1.2 0 01-.257.413h-.062l-.02-.31c-.025-.207-.067-.161-.1-.372-.02-.186.025-.385.05-.546.02-.187.041-.51.041-.692-.016-.012-.033-.04-.058-.057a.174.174 0 00-.058.082c-.037.141-.103.364-.124.51-.045.339.025.665 0 1.009a3.848 3.848 0 00-.041 1.068c.112-.013.103-.025.26-.087.207-.083.356-.112.567-.298.15-.129.125-.381.178-.588.07-.248.166-.34.265-.38.03-.009.058.004.087.012-.058.14-.091.215-.145.364-.05.128-.1.34.042.364l.103.017c.008.024.008.062-.012.082-.133.129-.24.282-.849.456-.07.02-.223.206-.231.277-.013.095-.013.207.008.364.062.608.364 1.18.703 1.742.286.48.497.844.807 1.159.145.132.298.231.538.12.128-.062.29-.162.331-.199.02-.025.025-.066.02-.103zm-8.276-8.755c.017.24-.029.302-.335.223-.323-.1-.472-.066-.679-.302-.124-.145-.281-.145-.413-.008-.062.074-.108.149-.207.165-.017-.033-.038-.078-.025-.116a.46.46 0 01.252-.314c.095-.05.211-.083.31-.112.286-.112.427-.281.427-.616 0-.19.058-.381.058-.58 0-.14-.05-.186-.186-.14-.236.09-.456.182-.691.281a.283.283 0 00-.166.157c-.066.124-.108.248-.166.373-.053.07-.099.037-.115.008a7.545 7.545 0 00-.365-.517c-.103-.124-.103-.166.013-.253l.385-.335c.19-.178.265-.414.285-.679v-.36c-.008-.157.025-.202.182-.182a.868.868 0 01.315.091c.174.075.347.174.521.265.091.058.157.137.166.253.004.136-.083.223-.207.173a3.807 3.807 0 00-.584-.202c-.099-.025-.198.029-.215.124-.041.227.153.24.137.302-.05.161-.31.207-.348.356-.029.136-.029.223.091.198.327-.066.646-.269.898-.372.215-.091.327-.058.356.182.116.703.223 1.308.302 1.937zm5.09-2.235c.062.017.14.054.19.1.12.277.377.587.7.753a.796.796 0 00.29.082c.028-.124.082-.33.082-.558a.739.739 0 00-.22-.538 2.152 2.152 0 00-.496-.373.211.211 0 00-.244.021c-.004.041-.004.103.02.14.08.137.27.261.352.39.03.132.021.124-.087.082a2.09 2.09 0 01-.591-.517c-.095-.107-.158-.107-.224.008a2.003 2.003 0 00-.298.89.91.91 0 00.497.952c.153.066.265.05.34-.095.078-.145.132-.27.181-.43.025-.083.025-.117-.037-.191a2.735 2.735 0 00-.248-.277.36.36 0 00-.124-.1.166.166 0 00-.034.104c.005.128.025.26.03.389 0 .033-.005.083-.025.112a.252.252 0 01-.141-.166c-.083-.306-.07-.575.087-.778zm-14.3-4.506l.24.285c.098.187.152.356.202.505.041.15.103.15.199.083a.337.337 0 00.14-.29.964.964 0 00-.054-.26c-.082-.323-.024-.596.257-.799.095-.066.165-.174.128-.29-.041-.161-.078-.314-.14-.463-.025-.066-.116-.083-.178-.05-.315.166-.687.642-.402 1.039.013.025-.004.1-.025.14-.26-.26-.773-.79-.926-.777-.042.074-.075.227-.042.538.037.302.116.612.344 1.034a.765.765 0 00.194.22c.054.049.166.103.248.103a.457.457 0 00.017-.248 9.55 9.55 0 00-.248-.758zM22.7 3.919c.219-.042.397-.104.48-.137.356-.136.591-.364.67-.753.025-.103-.037-.161-.149-.19l-.232-.062c-.227-.067-.273.029-.36.248-.066.165-.136.356-.314.496-.054.046-.24-.09-.29-.124.348-.207.575-.538.745-.935.041-.074 0-.149-.079-.174a.844.844 0 00-.355-.037 1.783 1.783 0 00-1.283.956c-.017.041 0 .136.029.149.05.02.174.008.227-.013.033-.004.05-.05.07-.082.146-.257.39-.414.671-.538.083-.042.112-.013.066.083-.054.07-.558.426-.57.475-.067.145.032.166.115.166l.153-.041a.677.677 0 00.402.513zm-7.655-.042c-.009.124-.054.195-.166.153-.232-.099-.372-.351-.633-.438-.095-.033-.153.054-.166.14-.041.265-.082.501-.082.6 0 .365.194.563.389.758.057.05.057.082-.005.111l-.798.447c-.075.05-.166.062-.248 0-.08-.07-.104-.157-.08-.244.096-.401.162-.815.266-1.208.165-.62.434-.832.885-.89.162-.025.282-.025.406-.025.132 0 .19.025.207.145.016.083.02.174.02.451zm.604 2.744c0-.302-.244-.39-.348-.646-.1-.252-.19-.252-.393-.07-.232.22-.372.41-.455.724a1.738 1.738 0 00.008.869c.02.087.07.186.166.157a.166.166 0 00.12-.165c0-.257.024-.505.153-.67a.38.38 0 01.116-.112c.04.062.024.136.024.149-.037.19-.066.384-.107.575-.025.128-.025.198.041.314.075.116.137.128.186.05.236-.377.489-.919.489-1.175zM2.73 7.457a2.317 2.317 0 00-.165-.745c-.1-.236-.249-.373-.348-.373-.091 0-.302.249-.372.451-.183.51-.083.923.21 1.411.042.062.125.178.236.062.091-.103.162-.177.249-.29a.805.805 0 00.19-.516zm11.148 7.986c-.054-.426-.373-.84-.91-1.2-.112-.046-.125.029-.125.124.054.592.124 1.187.199 1.713.02.116.074.149.182.091.161-.074.314-.153.467-.24.141-.083.228-.161.187-.488zm4.87-4.842c-.083-.207-.223-.293-.43-.31-.207-.025-.381-.054-.6-.087-.125.017-.207.116-.278.282.004.033.017.074.042.082.07.025.198.05.215.062a.41.41 0 01.124.17c-.016.058-.091.12-.186.137-.124.024-.124.124-.104.252a.728.728 0 00.162.36c.083-.05.124-.07.186-.137a.281.281 0 00.083-.24c-.017-.269.132-.463.318-.641l.042.025c-.03.153-.112.265-.129.418-.04.314-.144.58-.455.79.095.124.331.033.406-.041a.947.947 0 00.281-.439l.05-.157a.124.124 0 01.041.012c.062.116-.025.352.017.522a.389.389 0 00.153-.124c.116-.274.174-.68.062-.931zm3.898-6.372c-.054 0-.27.004-.331.017-.05.012-.075.128-.05.148.062.042.1.075.15.092.194.02.28.02.504.057a.171.171 0 01.112.063c-.021.016-.042.045-.083.053-.414.05-.538.042-.828-.153-.078-.033-.107.025-.082.1.041.14.157.256.372.343.17.074.335.165.509.161.265-.008.455-.024.674-.062.116-.016.232-.082.249-.14.02-.058 0-.187-.066-.27l-.158-.157c-.248-.26-.41-.426-.778-.389-.05.005-.124.137-.194.137zm.256 2.756c0-.153-.02-.265-.062-.402a.703.703 0 00-.612-.504c-.153-.005-.228.024-.166.165.017.05.154.195.207.31.07.141.137.286.137.41a.414.414 0 01-.037.166c-.091-.05-.141-.162-.162-.216-.041-.132-.05-.21-.09-.285-.038-.066-.084-.083-.104-.083-.058 0-.083.02-.087.1a1.188 1.188 0 00.65 1.187c.115.041.144.013.182-.09a2.483 2.483 0 00.144-.754zM2.483 5.388c-.058.219-.07.364-.062.488.004.157.082.29.227.356a2.772 2.772 0 001.378.215c.017 0 .062-.03.062-.041-.012-.096-.062-.112-.149-.137-.194-.066-.716-.207-.786-.29-.054-.074-.029-.153.058-.165a.442.442 0 01.228.037c.128.062.24.145.372.22.041.024.091.07.14 0 .038-.063.075-.117-.008-.179l-.306-.24c-.265-.21-.662-.31-1.158-.264zm9.463 3.426c-.02.045-.062.09-.107.145-.05-.05-.1-.083-.125-.137a9.943 9.943 0 01-.496-1.655c-.008-.108.033-.145.124-.14.236.024.443.132.65.24.033.024.058.094.062.144.041.468-.017.993-.108 1.399zm-10.192.952l-.033-.017c.021-.281.166-.683.112-.786a.58.58 0 00-.285.029c-.1.041-.141.14-.162.306-.025.368.033.745.112 1.076.025.124.074.136.165.05.236-.216.46-.489.638-.7.124-.161.145-.314.095-.467-.042-.129-.128-.178-.224-.178-.103 0-.14.078-.165.157-.058.203-.153.347-.253.525zm19.11-.849c.186 0 .339.037.388.054.224.083.323.182.365.26a.259.259 0 01.04.15.401.401 0 01-.367-.075c-.199-.186-.489-.265-.662-.186.012.128.136.29.24.372.347.27.653.315 1.026.228.062-.025.087-.112.083-.186-.013-.24.004-.497-.224-.704-.248-.236-.604-.227-.848-.124-.042.02-.104.05-.133.083a.212.212 0 00.091.124zM12.256 2.36c.074-.017.04.016.02.082-.041.211-.165.377-.314.526-.083.074-.1.19-.042.248.108.1.232.013.315-.066.165-.186.269-.414.364-.637.116-.278.091-.621-.041-.853-.07-.099-.178-.111-.261-.037a1.436 1.436 0 00-.505.993c0 .054.004.153.041.174.19-.083.307-.29.414-.426zm5.048 10.013c.02-.016.054 0 .066.009 0 .223.054.492.083.57a.257.257 0 00.083-.057l.062-.302c.14-.426.037-.766-.141-1.155-.033-.074-.083-.082-.157-.05-.054.025-.1.063-.054.137.041.062.037.112 0 .174-.058.112-.1.232-.161.364-.025.083-.03.15-.038.248l-.062 1.531c.025.083.075.067.104.017.033-.083.058-.161.074-.248.042-.24.112-.249.124-.489.021-.248.021-.496.013-.744zM3.285 2.917a.227.227 0 01.009-.095l.256.041c.124.025.187.009.228-.086.07-.183.033-.348-.157-.385-.29-.054-.58.041-.828.099-.161.054-.199.223-.083.34.187.177.364.355.559.512a.614.614 0 00.525.125c.083-.021.154-.075.154-.15a.207.207 0 00-.062-.148.559.559 0 00-.145-.083zm-.26 11.144c-.017.082-.054.153-.19.145a1.705 1.705 0 01-.373-.054c-.132-.038-.17-.087-.178-.137a2.261 2.261 0 01.042-.82c.016-.04.157-.123.215-.156.178.02.318.05.447.082.05.03.149.178.157.199a.83.83 0 01.025.248c-.05.207-.112.385-.145.493zm13.82 7.469c.332.124.588.161.687.14a.198.198 0 00.154-.223c-.005-.091-.05-.166-.166-.199-.252-.054-.513-.09-.753-.178-.14-.041-.248-.037-.373.058-.19.145-.372.22-.608.265a.29.29 0 00-.153.054c-.066.087-.05.149.054.207.41.037.794-.042 1.158-.124zm1.362.81c.207 0 .36-.04.5-.132a1.241 1.241 0 01.6-.265c.092-.016.183-.111.19-.186 0-.103-.082-.116-.152-.14-.199-.063-.435-.054-.637-.104-.067-.012-.162-.012-.216.03-.426.43-.509.33-.711.541-.054.07-.054.157.095.195.116.029.265.053.33.062zM11.123 6.162c0-.107.19-.273.294-.256.02.008.04.02.057.041l.042.224c.012.087.041.165.087.165.215.017.467-.132.587-.318.129-.2.22-.427.327-.642.1-.236.253-.09.199.054-.137.41-.306.828-.439 1.229-.041.149-.062.157-.207.108l-.682-.245a.352.352 0 01-.265-.36zm5.238 10.213c.112.054.104.033.253-.05a.34.34 0 00.132-.24l-.041-.898c0-.029-.042-.074-.058-.074-.124 0-.273-.025-.373.029-.19.103-.351.252-.525.389-.066.066-.004.132.095.124.083-.033.178-.075.26-.12l.158-.083a.141.141 0 01-.016.075c-.15.165-.261.364-.464.471-.054.009-.041.14.037.145a.681.681 0 00.228-.108c.124-.099.178-.16.302-.264.041.062.07.111.008.165l-.33.298c-.05.05-.013.1.045.091a.652.652 0 00.236-.09c.082-.055.153-.13.227-.208.004.009.05.054.042.058a3.715 3.715 0 01-.216.29zM5.772 5.967c-.05.5-.173 1.005-.397 1.233-.182-.348-.306-.753-.43-1.109.1-.124.223-.31.277-.455.025-.07.066-.083.128-.033.15.136.278.248.422.364zm.592 7.134a.414.414 0 01-.227.285.913.913 0 01-.39.104c-.074 0-.128-.017-.14-.083-.041-.232-.095-.447-.133-.67-.004-.054.042-.125.087-.166.145-.137.331-.174.526-.186.041 0 .178.058.199.095.04.207.062.393.078.62zm-1.808-2.678c-.265.042-.497.278-.455.373.004.207.045.405.157.583.07.104.124.129.232.058a1.986 1.986 0 00.794-.81c.05-.1-.054-.13-.153-.179-.132-.062-.273-.062-.348-.025-.074.038-.103.116-.115.178-.083.302-.1.31-.19.414a.803.803 0 01.078-.592zm1.792 11.36c.016-.034.024-.059.053-.063a.623.623 0 01.178 0c.236.066.455-.103.675-.137.05-.004.103-.012.161-.004.145.004.29.009.451-.033.066-.025.153.009.228.042.252.111.496.173.74.029a3.8 3.8 0 01.394-.236c.227-.087.248.062.256.149a.215.215 0 01-.124.128c-.786.281-1.465.285-2.346.178a1.986 1.986 0 01-.666-.054zm-4.925-8.277a.455.455 0 00.104.356l.037.037-.02.067a1.862 1.862 0 01-.406-.054c-.058-.021.103-.108.116-.207.029-.203.083-.538.083-.782 0-.042-.104-.083-.104-.124a.149.149 0 01.05-.083c.29.07.33.066.389.203.058.124.111.33.198.48.017-.009.042-.017.054-.03.013-.136.008-.335.013-.426.008-.074.04-.111.12-.111.062 0 .215.004.277.016.008.013.008.025.008.042 0 .041-.05.053-.062.058-.137.05-.145.062-.207.442l-.066.439c-.008.033-.017.1-.037.145-.038.004-.104 0-.116-.033a6.296 6.296 0 00-.34-.691l-.04-.004c-.034.09-.034.177-.055.264zm9.104 2.04a.86.86 0 000-.252c-.05-.14-.112-.277-.091-.402.062-.215.107-.438.087-.662a2.789 2.789 0 01.025-.827c.074.025.132.074.149.124.02.087.04.174.04.252.03.236.01.464-.003.691-.037.447-.075.861-.062 1.3.008.066.02.153.041.215.058.136.03.277-.078.43l-.067-.029c-.05-.186-.173-.438-.227-.637-.009-.037 0-.066.05-.075.082-.016.136-.066.14-.124zm4.303-3.29c-.182-.016-.368-.177-.356-.467-.09.124-.202.248-.302.294.009.1.253.24.422.31.096.128.166.19.29.331.075-.19.166-.352.195-.455a1.469 1.469 0 00-.145-.675c-.137-.153-.352-.28-.563-.417-.103.111.029.351.286.496a.423.423 0 00.202.538zm-12.372-.442c.128-.009.265-.03.418-.05.1-.025.21-.05.215-.174.008-.111-.124-.173-.215-.198a1.97 1.97 0 00-1.304.128 1.183 1.183 0 00-.264.19c-.1.108-.08.174-.005.232a.984.984 0 00.356.166c.021-.091.042-.24.07-.331.141-.232.539-.274.816-.282.066.013.066.095.012.112-.078.062-.236.05-.277.116 0 .07.066.095.178.087zm.885 2.4c-.004-.05.054-.112.058-.145.013-.066.013-.157.013-.228.008-.178-.03-.467-.03-.641l.096-.062c.033-.012.058.008.095.041.083.083.27.29.356.369.008 0 .02-.021.025-.025v-.133a.974.974 0 00-.042-.256c-.033-.112-.111-.19-.024-.199l.339-.025c-.033.067-.058.116-.07.216-.017.136-.042.26-.046.388.017.2.058.398.075.563 0 .013-.025.03-.05.042a.31.31 0 01-.095-.062c-.166-.166-.282-.32-.497-.522a.182.182 0 00-.029.091c.042.128.095.273.182.393.054.075.067.1-.07.15a.648.648 0 01-.281.04zm6.05.037c.195-.12.273-.521.224-.716a.257.257 0 00-.067-.136c-.062-.062-.132-.042-.165.066-.037.153-.054.318-.075.463a1.448 1.448 0 00-.438-.012c-.15.02-.439.107-.439.285 0 .29.666.224.96.05zm1.167-2.003a.331.331 0 00.083.232c.298.31.707.633.968.695.232.062.426.199.567.385l.136.186c.1.124.228.207.402.232.029.008.066 0 .1 0-.026-.104-.026-.116-.1-.19-.613-.547-1.262-.973-1.895-1.416-.062-.037-.174-.111-.261-.124zm-6.397 7.035v-.009c-.062-.26-.133-.513-.199-.765-.05-.091-.14-.025-.132.012-.066.187-.133.373-.19.567a.273.273 0 000 .174c.099.273.19.542.297.815.017.037.067.062.095.083.025-.033.063-.07.07-.103zm1.084-6.489c.016.05.041.112.05.17.004.042.004.075-.009.1-.004.012-.029.008-.054-.005-.128-.058-.273-.14-.389-.062-.04.03-.024.104.03.129l.364.149c.165.062.206.136.173.33-.029.187-.165.261-.327.307-.066.016-.136.025-.227.016-.012.058.004.124-.037.15-.03.016-.038.012-.067.024a1.597 1.597 0 01-.124-.451c0-.037.013-.041.025-.054.054.017.104.091.186.17.1.033.27.062.294.033.05-.062.07-.1.07-.124 0-.042-.057-.083-.107-.104-.128-.07-.199-.095-.331-.149-.124-.05-.145-.16-.145-.264 0-.112.058-.232.236-.29.054-.02.153-.041.207-.058a.82.82 0 00.029-.186c.029-.004.083-.013.09.008zM2.665 5c-.248 0-.406-.067-.654-.042-.178.013-.352.091-.525.157-.104.05-.083.096.008.133a.483.483 0 00.24.062c.513-.041 1.088-.1 1.601-.149.03-.041.054-.074.083-.14-.195-.129-.447-.104-.683-.174zm5.892 7.659a.523.523 0 00-.12.108.323.323 0 01-.103.074l-.07-.041.111-.27c.042-.103.083-.115.182-.049l.091.074c.075.063.174.112.265.07.087-.04.041-.165-.05-.21-.132-.083-.231-.108-.393-.207-.099-.058-.14-.145-.14-.27 0-.103.07-.227.202-.24.05-.011.112-.011.182-.011.087 0 .145-.013.2-.087.04-.054.086-.087.098-.03a.756.756 0 01-.024.406c-.03-.008-.05-.008-.075-.02-.079-.125-.182-.183-.269-.17-.083.012-.124.074-.062.14.112.116.269.178.401.253.19.103.178.248.154.352a.269.269 0 01-.278.223.527.527 0 01-.302-.095zm-.376-.38c.016.318-.24.434-.422.43-.17 0-.27-.038-.327-.207-.03-.1-.062-.402-.083-.513-.033-.042-.091-.058-.178-.083-.041-.008-.045-.042-.054-.079.062-.029.174-.062.253-.074.182-.03.182-.017.21.149.026.19.054.389.092.579.062.186.26.145.26-.012 0-.15.009-.319 0-.476-.029-.038-.082-.116-.14-.17-.07-.083-.075-.108.025-.145.231-.09.248-.149.28.157.013.116.084.294.084.443zm.215 1.63l.58-.137c.152-.041.24-.207.227-.352-.017-.111-.083-.173-.199-.198a1.572 1.572 0 00-.745.103c-.02.199.05.414.137.58zM3.074 11.85a1.03 1.03 0 00-.248.037.913.913 0 01-.364.038c-.083-.009-.215-.063-.294-.083-.087.008-.174.087-.207.21-.016.125.058.212.195.237.277.062.538.111.794.111.1 0 .112-.012.116-.095.013-.157.008-.29.008-.455zm6.621-5.917a1.676 1.676 0 01-.36-.112c-.041-.012-.07-.112-.07-.165.012-.145-.025-.29 0-.443.012-.083.058-.108.136-.091.112.025.216.05.323.083.14.057.352.446.29.583-.062.124-.174.14-.315.149zm-2.387 6.782a.414.414 0 01-.116.112c-.137.09-.385.144-.555.256-.083.058-.041-.14-.05-.215l-.086-.463a.604.604 0 00-.15-.249c-.049-.058.092-.083.162-.103l.27-.083c.098-.033.123.037.094.058-.136.1-.124.145-.107.273.02.124.02.26.024.364.021.05.05.116.087.162.083-.025.174-.087.174-.112l.02-.265c.1-.124.117-.062.133-.008.042.099.062.161.1.273zm.41-2.938a7.687 7.687 0 01-.158-.55c-.012-.075.05-.116.12-.104.248.054.492.112.74.178.083.017.083.083.03.137a1.763 1.763 0 01-.555.405c-.112.062-.116.017-.178-.066zm10.72-6.563a1.82 1.82 0 00-.285-.687c-.112-.14-.248-.153-.372-.025a.96.96 0 00-.108.125c-.124.157-.112.206.075.298.28.082.442.248.645.455zM5.289 19.291a1.159 1.159 0 00-.372.331c-.083.153-.174.298-.257.447-.029.07-.078.24-.099.352l.05.05a2.069 2.069 0 00.364-.27c.21-.207.26-.401.376-.815l.021-.05zM23.524 2.276a4.63 4.63 0 00-.405-.654c-.112-.14-.166-.153-.29-.025a1.008 1.008 0 00-.112.124c-.124.153-.198.344.004.373.174.029.41 0 .522.078.103.067.194.137.24.162zM2.544 13.394c-.032.303-.024.303-.024.514 0 .115.054.115.157.124.095.004.124-.083.145-.195l.062-.418c.017-.136.025-.215-.058-.227-.153-.021-.269.074-.281.202zM4.16 7.8a1.597 1.597 0 01-.39-.137c-.206-.107-.405-.33-.372-.537.017-.096.07-.125.153-.08.158.117.29.29.406.415a.818.818 0 01.207.339zm1.551 4.916c.004.083.075.327.1.467.012.075.029.133.136.12.14-.02.19-.082.17-.194-.017-.128-.05-.257-.075-.389-.024-.124-.078-.194-.19-.19-.116.012-.153.053-.14.186zm6.15-7.808c-.088.157-.166.314-.27.45-.078.112-.202.183-.314.278-.108.029-.112.02-.075-.087.162-.265.315-.472.489-.7.124-.066.17-.012.165.059zm8.3 4.295c0 .1-.017.19-.05.285l-.025.013c-.128-.323-.438-.844-.417-.898-.009-.037.074-.058.111-.05l.141.058c.083.19.166.372.24.592zm.902-6.857c.017.004.066.017.104.05.062.05.07.107-.013.14-.194.092-.521.265-.732.344-.042.02-.087.025-.07-.05.04-.124.537-.484.711-.484zm-7.08 8.992c-.136 0-.252.108-.252.215.004.12.157.248.293.248.125 0 .211-.082.211-.207.009-.148-.099-.256-.252-.256zM3.074 21.778c-.028 0-.082.091-.128.095-.165.013-.223.03-.223.1 0 .095.05.144.128.12.248-.075.306-.067.629-.042l.112-.132c-.038-.033-.066-.075-.112-.087a1.85 1.85 0 00-.406-.054zM17.648 9.869c-.054.033-.099.066-.082.128l.04.1c.096-.017.204-.025.303-.017.132.041.356.091.497.116.033.008.074-.03.099-.062.008-.004-.017-.03-.03-.054-.19-.19-.508-.194-.827-.207zM8.532 5.686l-.339-.15c-.02-.012-.033-.074-.012-.099.074-.111.153-.215.231-.314.042-.042.075-.037.096.016l.17.422c.032.083-.005.116-.146.125zM4.08 9.844c.083-.016.124.033.112.108-.009.041-.021.058-.087.09a1.497 1.497 0 01-.753.026c-.083-.013-.137-.03-.15-.05a.157.157 0 01.096-.066zm2.375-6.641c-.025.008-.054.029-.07.016-.22-.124-.534-.29-.733-.418-.045-.066-.016-.09.046-.082.161.053.443.136.604.198.104.05.137.145.153.286zm3.373 4.833c.024.037.05.074-.021.186-.112.174-.14.352-.215.592a.645.645 0 01-.075.14c-.025.025-.062.034-.09.05-.01-.029-.026-.066-.021-.09l.223-.73c.033-.086.1-.132.199-.148zm8.081-2.442a4.014 4.014 0 01-.869-.306c-.095-.082-.079-.078.046-.082l.815.219c.157.12.124.116.008.165zm-3.364 5.181a.277.277 0 00-.124-.153c-.042-.025-.12-.012-.166.025a.857.857 0 00-.132.116c-.062.087-.025.174.074.244.083.058.174.054.228-.025.05-.062.095-.108.12-.207zM9.09 6.778c-.029.062-.037.124-.079.17-.111.132-.235.26-.355.389-.12.053-.125-.021-.112-.08.112-.206.269-.38.414-.55.016-.016.062-.028.082-.016.021.012.033.041.05.083zM4.415 5.64c-.029.02-.467-.662-.521-.803 0-.025.07-.074.107-.103a.195.195 0 01.075.066c.14.298.385.803.364.823zM4.23 8.367l-.186-.083c-.137.03-.249.091-.402.108-.161.012-.227-.021-.29-.062.026-.05.112-.1.24-.124.075-.013.402-.042.688-.017zM21.07 4.89l.48.36c.05.033.042.1.062.14l-.107-.012c-.207-.103-.422-.186-.559-.389-.116-.17.075-.149.124-.099zm-12.157.592l-.054.083c-.02-.025-.05-.05-.062-.083-.041-.083-.041-.178-.05-.265-.024-.207-.012-.319.112-.443.05-.058.091-.025.091.03.009.26-.004.421-.037.678zM5.834 4.73c.046.016.125.509.178.761a.562.562 0 010 .186c-.02.058-.041.07-.09.02-.083-.26-.125-.525-.166-.773-.017-.074-.017-.153.078-.194zM19.87 7.72c.199.112.43.31.526.427.025.024.012.09 0 .14-.033-.012-.07-.016-.095-.037-.166-.103-.319-.22-.472-.327-.02-.016-.025-.136-.041-.161a.174.174 0 01.082-.042zM10.82 3.46c.034.021.05.042.071.07a.174.174 0 01-.07.075c-.141.054-.468.054-.604-.025a.422.422 0 01-.07-.082l.094-.054a1.29 1.29 0 01.58.02zm3.725.795c.132.207.19.405.248.629 0 .012-.008.016-.008.05-.033-.021-.05-.025-.062-.042a1.159 1.159 0 01-.331-.546c-.017-.05-.009-.091.053-.128a.224.224 0 01.1.037zM11.97 18.418c.157-.091.203-.161.343-.248.058-.033.05-.042.021-.096-.033-.062-.062-.062-.145-.04-.153.053-.215.09-.372.152-.066.025-.091.054-.02.104zM7.126 3.745c.19-.133.397-.203.608-.282.033-.008.083.005.12.038l-.075.066c-.165.116-.33.207-.488.302a.983.983 0 01-.165-.029.124.124 0 010-.095zM2.18 7.8c-.046-.223-.108-.497-.07-.695a.285.285 0 01.086-.124c.042.037.083.066.087.103.042.232-.025.497-.041.712zm10.77-4.994a3.53 3.53 0 01.56-.327 2.09 2.09 0 01-.572.608c-.012-.083-.041-.232.013-.281zm-2.648 8.644c0 .09.042.19.116.26.042-.033.075-.095.075-.124.016-.174.029-.352.029-.534.02-.07-.083-.09-.108-.016-.041.136-.107.273-.112.414zm9.087 7.158l-.765.257c.178.203.695.037.765-.257zM8.12 4.705c.012.203-.025.455-.137.641-.012.025-.041.042-.074.066-.013-.037-.05-.066-.042-.09.042-.208.095-.456.145-.663.008-.012.041-.025.058-.029zm10.717 14.632c.165 0 .323-.005.447-.042.111-.07.107-.215.145-.314l-.042-.013-.182.166a2.579 2.579 0 01-.372.074.258.258 0 00-.058.075c.02.029.041.05.066.054zm-1.531-8.202c.054-.12.103-.227.145-.34.008-.024-.03-.086-.075-.127a.323.323 0 00-.09.041 1.655 1.655 0 00-.24.364c.016.03.098.03.256.062zM4.494 7.895l.161-.414c.03-.008.054-.008.075.005.024.124.004.322-.009.4-.024.113-.066.179-.165.228a.674.674 0 01-.062-.219zm9.34 3.037c-.113 0-.2.067-.208.166 0 .083.091.161.19.161.104-.008.183-.082.19-.173 0-.1-.061-.154-.173-.154zm-.1 1.018c0-.111-.066-.186-.186-.186-.096 0-.166.062-.166.15 0 .098.104.198.207.19.091 0 .145-.067.145-.154zm-.418-1.042c0 .09-.058.144-.145.144-.116 0-.203-.07-.203-.178 0-.082.083-.165.166-.165.087-.008.182.074.182.199zm.074.413c-.099 0-.165.062-.165.145 0 .087.09.166.186.166.074 0 .145-.079.145-.166.004-.078-.07-.145-.166-.145zm-1.088 7.399c-.128 0-.24.062-.236.132.008.07.108.166.186.166.083 0 .129-.087.129-.199-.004-.082 0-.099-.079-.099zM4.415 3.062c-.062-.248-.033-.472.03-.724.103.215.11.563-.03.724zm9.31 7.25c-.066.041-.124.107-.115.136.008.05.062.095.095.145a.27.27 0 00.112-.132c.012-.03-.05-.083-.096-.15z" }) + ] + } + ); +}); + +export { SiElsevier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.cjs new file mode 100644 index 000000000..a0aac99fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1F35"; +const SiEmbarcadero = React__namespace.forwardRef(function SiEmbarcadero2({ title = "Embarcadero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a11.963 11.963 0 0 0-8.485 3.515A11.963 11.963 0 0 0 0 12.001c0 3.313 1.344 6.311 3.515 8.484A11.96 11.96 0 0 0 12 24a11.96 11.96 0 0 0 8.485-3.515A11.968 11.968 0 0 0 24 12.001c0-3.315-1.344-6.314-3.515-8.486A11.963 11.963 0 0 0 12 0zm.052 4.401c1.233 0 2.344.222 3.332.664.988.443 1.804 1.142 2.449 2.096.58.842.956 1.818 1.128 2.93.1.65.14 1.587.122 2.811H8.764c.058 1.421.552 2.418 1.482 2.99.565.355 1.246.533 2.042.533.844 0 1.53-.217 2.057-.65.288-.234.542-.56.762-.975h3.783c-.1.84-.558 1.694-1.374 2.56-1.269 1.378-3.045 2.067-5.33 2.067-1.886 0-3.549-.58-4.99-1.743-1.442-1.162-2.162-3.053-2.162-5.672 0-2.455.65-4.337 1.951-5.646C8.286 5.056 9.975 4.4 12.052 4.4zm.001 3.055c-.95 0-1.688.27-2.211.81-.524.54-.852 1.27-.987 2.192h6.382c-.067-.983-.396-1.73-.987-2.238-.59-.51-1.323-.764-2.197-.764Z" }) + ] + } + ); +}); + +exports.default = SiEmbarcadero; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.d.ts new file mode 100644 index 000000000..087f66c52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1F35"; +declare const SiEmbarcadero: IconType; +export { SiEmbarcadero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.mjs new file mode 100644 index 000000000..cf73f8678 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbarcadero.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1F35"; +const SiEmbarcadero = React.forwardRef(function SiEmbarcadero2({ title = "Embarcadero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a11.963 11.963 0 0 0-8.485 3.515A11.963 11.963 0 0 0 0 12.001c0 3.313 1.344 6.311 3.515 8.484A11.96 11.96 0 0 0 12 24a11.96 11.96 0 0 0 8.485-3.515A11.968 11.968 0 0 0 24 12.001c0-3.315-1.344-6.314-3.515-8.486A11.963 11.963 0 0 0 12 0zm.052 4.401c1.233 0 2.344.222 3.332.664.988.443 1.804 1.142 2.449 2.096.58.842.956 1.818 1.128 2.93.1.65.14 1.587.122 2.811H8.764c.058 1.421.552 2.418 1.482 2.99.565.355 1.246.533 2.042.533.844 0 1.53-.217 2.057-.65.288-.234.542-.56.762-.975h3.783c-.1.84-.558 1.694-1.374 2.56-1.269 1.378-3.045 2.067-5.33 2.067-1.886 0-3.549-.58-4.99-1.743-1.442-1.162-2.162-3.053-2.162-5.672 0-2.455.65-4.337 1.951-5.646C8.286 5.056 9.975 4.4 12.052 4.4zm.001 3.055c-.95 0-1.688.27-2.211.81-.524.54-.852 1.27-.987 2.192h6.382c-.067-.983-.396-1.73-.987-2.238-.59-.51-1.323-.764-2.197-.764Z" }) + ] + } + ); +}); + +export { SiEmbarcadero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.cjs new file mode 100644 index 000000000..b3c5c8009 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiEmbark = React__namespace.forwardRef(function SiEmbark2({ title = "Embark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.658 16.662v-6.644C9.197 10.017 13.687 5.533 13.69 0h6.653c-.003 9.202-7.472 16.662-16.685 16.662ZM3.656 24v-6.672h16.689V24H3.657" }) + ] + } + ); +}); + +exports.default = SiEmbark; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.d.ts new file mode 100644 index 000000000..517348ace --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiEmbark: IconType; +export { SiEmbark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.mjs new file mode 100644 index 000000000..7dd001a87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmbark.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiEmbark = React.forwardRef(function SiEmbark2({ title = "Embark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.658 16.662v-6.644C9.197 10.017 13.687 5.533 13.69 0h6.653c-.003 9.202-7.472 16.662-16.685 16.662ZM3.656 24v-6.672h16.689V24H3.657" }) + ] + } + ); +}); + +export { SiEmbark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.cjs new file mode 100644 index 000000000..530e61a3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E04E39"; +const SiEmberdotjs = React__namespace.forwardRef(function SiEmberdotjs2({ title = "Ember.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm12.29 4.38c1.66-.03 2.83.42 3.84 1.85 2.25 5.58-6 8.4-6 8.4s-.23 1.48 2.02 1.42c2.78 0 5.7-2.15 6.81-3.06a.66.66 0 01.9.05l.84.87a.66.66 0 01.01.9c-.72.8-2.42 2.46-4.97 3.53 0 0-4.26 1.97-7.13.1a4.95 4.95 0 01-2.38-3.83s-2.08-.11-3.42-.63c-1.33-.52.01-2.1.01-2.1s.42-.65 1.2 0 2.24.36 2.24.36c.13-1.03.35-2.38.98-3.81 1.34-3 3.38-4.01 5.05-4.05zm.33 2.8c-1.1.07-2.8 1.78-2.88 4.93 0 0 .75.23 2.41-.91 1.67-1.14 2-2.97 1.11-3.81a.82.82 0 00-.64-.21Z" }) + ] + } + ); +}); + +exports.default = SiEmberdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.d.ts new file mode 100644 index 000000000..667dc16ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E04E39"; +declare const SiEmberdotjs: IconType; +export { SiEmberdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.mjs new file mode 100644 index 000000000..a6d326ef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmberdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E04E39"; +const SiEmberdotjs = React.forwardRef(function SiEmberdotjs2({ title = "Ember.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm12.29 4.38c1.66-.03 2.83.42 3.84 1.85 2.25 5.58-6 8.4-6 8.4s-.23 1.48 2.02 1.42c2.78 0 5.7-2.15 6.81-3.06a.66.66 0 01.9.05l.84.87a.66.66 0 01.01.9c-.72.8-2.42 2.46-4.97 3.53 0 0-4.26 1.97-7.13.1a4.95 4.95 0 01-2.38-3.83s-2.08-.11-3.42-.63c-1.33-.52.01-2.1.01-2.1s.42-.65 1.2 0 2.24.36 2.24.36c.13-1.03.35-2.38.98-3.81 1.34-3 3.38-4.01 5.05-4.05zm.33 2.8c-1.1.07-2.8 1.78-2.88 4.93 0 0 .75.23 2.41-.91 1.67-1.14 2-2.97 1.11-3.81a.82.82 0 00-.64-.21Z" }) + ] + } + ); +}); + +export { SiEmberdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.cjs new file mode 100644 index 000000000..fbc552c63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#52B54B"; +const SiEmby = React__namespace.forwardRef(function SiEmby2({ title = "Emby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.041 0c-.007 0-1.456 1.43-3.219 3.176L4.615 6.352l.512.513.512.512-2.819 2.791L0 12.961l1.83 1.848c1.006 1.016 2.438 2.46 3.182 3.209l1.351 1.359.508-.496c.28-.273.515-.498.524-.498.008 0 1.266 1.264 2.794 2.808L12.97 24l.187-.182c.23-.225 5.007-4.95 5.717-5.656l.52-.516-.502-.513c-.276-.282-.5-.52-.496-.53.003-.009 1.264-1.26 2.802-2.783 1.538-1.522 2.8-2.776 2.803-2.785.005-.012-3.617-3.684-6.107-6.193L17.65 4.6l-.505.505c-.279.278-.517.501-.53.497-.013-.005-1.27-1.267-2.793-2.805A449.655 449.655 0 0011.041 0zM9.223 7.367c.091.038 7.951 4.608 7.957 4.627.003.013-1.781 1.056-3.965 2.32a999.898 999.898 0 01-3.996 2.307c-.019.006-.026-1.266-.026-4.629 0-3.7.007-4.634.03-4.625Z" }) + ] + } + ); +}); + +exports.default = SiEmby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.d.ts new file mode 100644 index 000000000..d9c12c75c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#52B54B"; +declare const SiEmby: IconType; +export { SiEmby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.mjs new file mode 100644 index 000000000..d55057743 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#52B54B"; +const SiEmby = React.forwardRef(function SiEmby2({ title = "Emby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.041 0c-.007 0-1.456 1.43-3.219 3.176L4.615 6.352l.512.513.512.512-2.819 2.791L0 12.961l1.83 1.848c1.006 1.016 2.438 2.46 3.182 3.209l1.351 1.359.508-.496c.28-.273.515-.498.524-.498.008 0 1.266 1.264 2.794 2.808L12.97 24l.187-.182c.23-.225 5.007-4.95 5.717-5.656l.52-.516-.502-.513c-.276-.282-.5-.52-.496-.53.003-.009 1.264-1.26 2.802-2.783 1.538-1.522 2.8-2.776 2.803-2.785.005-.012-3.617-3.684-6.107-6.193L17.65 4.6l-.505.505c-.279.278-.517.501-.53.497-.013-.005-1.27-1.267-2.793-2.805A449.655 449.655 0 0011.041 0zM9.223 7.367c.091.038 7.951 4.608 7.957 4.627.003.013-1.781 1.056-3.965 2.32a999.898 999.898 0 01-3.996 2.307c-.019.006-.026-1.266-.026-4.629 0-3.7.007-4.634.03-4.625Z" }) + ] + } + ); +}); + +export { SiEmby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.cjs new file mode 100644 index 000000000..63d6e2449 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D71921"; +const SiEmirates = React__namespace.forwardRef(function SiEmirates2({ title = "Emirates", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.247 15.56l-1.386 1.385c.945.945 1.26 1.386 1.323 1.827.063-.063 1.323-1.134 1.323-1.512 0-.567-.378-.756-1.26-1.7m-3.15-2.458h-.755s.756.441.756 1.45v3.4c0 2.205 1.826 4.284 4.031 4.284h1.827c1.134 0 1.512-.252 2.142-.882l.692-.693c.378-.44.82-.755.82-1.952v-1.134c0-.945-.568-1.386-.82-1.638l-.63-.63v2.268s.441.504.693.63c.945.756.19 2.078-.692 2.078H7.066c-1.89-.063-3.402-1.637-3.465-3.527v-1.827c0-1.827-.503-1.827-.503-1.827m5.92 2.457l-1.385 1.386c.945.945 1.26 1.386 1.323 1.827.063-.063 1.323-1.134 1.323-1.512 0-.567-.378-.82-1.26-1.7M11.853 0l-.944.945c-.378.378-.252 1.134.504 1.89v1.89c0 .188-.19.377-.19.377s-1.133-1.008-2.14-1.008H7.57c-.945 0-1.7.882-1.827.945-.504.504-.504 1.45-.126 1.89L6.688 8s-.252-1.7 0-2.835c.063-.252.378-.567.693-.567l2.457 1.89-2.835 2.96c-.126.127-.504.379-.882.379-.44 0-.63-.252-.819-.504v1.386c0 .44.63.945 1.197.945h3.78c.252 0 .567-.063.819-.315l1.26-1.26c.188-.19.251-.441.251-.756V7.874c0-1.386-1.07-2.457-1.07-2.457s.251-.189.251-.756V3.213s.441.44.504.63l.82-.82c.377-.377-.253-1.07-.505-1.385C11.853.818 11.853 0 11.853 0M7.13 9.953c.378-.19.441-.315.756-.693l2.394-2.52s1.322 1.386 1.763 2.142c.19.378.441 1.07-.692 1.07H7.13M3.915 7.056h-.692c.44.252.755 1.008.755 1.449v2.772c0 .755.567 3.464 3.024 3.464h7.118v4.536c0 .755-.252 1.196-.44 1.385l-1.072 1.008h.504l1.953-1.763c.378-.441.819-.882.819-2.268V14.74l.819-.819 1.386-1.323c0 1.134.567 1.638 1.07 1.638a1.26 1.26 0 0 0 .756-.315l1.26-1.197c.567-.567.882-2.33-.504-2.33-.882 0-1.89 1.26-1.952 1.386-.315-.19-.567-.63-.567-.63v1.07c-.126.19-.693.63-1.134.63h-1.134v-1.07c0-.504.189-1.071.44-1.323l1.072-1.008h-.504l-2.142 1.953c-.378.44-.63 1.26-.63 1.448H6.058c-1.008 0-1.638-1.007-1.638-1.826v-2.08c0-1.7-.44-1.889-.504-1.889m16.315 6.047c-.189 0-.378-.063-.63-.252-.251-.189-.692-.819-.692-.819.126-.125.504-.251.818-.251.252 0 .504.063.567.189.441.566.378 1.133-.063 1.133M16.893 0L14.75 1.953c-.126.126-.63.882-.63 1.764v5.606c0 .378-.252.945-.44 1.134l-1.072 1.008h.504l2.016-1.827c.252-.252.756-.882.756-1.953V2.331c0-.82.378-1.26.567-1.45L17.397 0h-.504m.315 14.362v2.205l.756.819c.63.63.567 1.827-1.323 3.653a3.78 3.78 0 0 1-2.583 1.197h-3.401L12.672 24h1.386c1.386 0 2.646-.567 3.465-1.449.756-.819 1.197-1.89 1.134-3.023V16.63c0-1.008-.63-1.575-.756-1.7-.126 0-.693-.568-.693-.568Z" }) + ] + } + ); +}); + +exports.default = SiEmirates; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.d.ts new file mode 100644 index 000000000..dc43befc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D71921"; +declare const SiEmirates: IconType; +export { SiEmirates as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.mjs new file mode 100644 index 000000000..128ecf727 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmirates.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D71921"; +const SiEmirates = React.forwardRef(function SiEmirates2({ title = "Emirates", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.247 15.56l-1.386 1.385c.945.945 1.26 1.386 1.323 1.827.063-.063 1.323-1.134 1.323-1.512 0-.567-.378-.756-1.26-1.7m-3.15-2.458h-.755s.756.441.756 1.45v3.4c0 2.205 1.826 4.284 4.031 4.284h1.827c1.134 0 1.512-.252 2.142-.882l.692-.693c.378-.44.82-.755.82-1.952v-1.134c0-.945-.568-1.386-.82-1.638l-.63-.63v2.268s.441.504.693.63c.945.756.19 2.078-.692 2.078H7.066c-1.89-.063-3.402-1.637-3.465-3.527v-1.827c0-1.827-.503-1.827-.503-1.827m5.92 2.457l-1.385 1.386c.945.945 1.26 1.386 1.323 1.827.063-.063 1.323-1.134 1.323-1.512 0-.567-.378-.82-1.26-1.7M11.853 0l-.944.945c-.378.378-.252 1.134.504 1.89v1.89c0 .188-.19.377-.19.377s-1.133-1.008-2.14-1.008H7.57c-.945 0-1.7.882-1.827.945-.504.504-.504 1.45-.126 1.89L6.688 8s-.252-1.7 0-2.835c.063-.252.378-.567.693-.567l2.457 1.89-2.835 2.96c-.126.127-.504.379-.882.379-.44 0-.63-.252-.819-.504v1.386c0 .44.63.945 1.197.945h3.78c.252 0 .567-.063.819-.315l1.26-1.26c.188-.19.251-.441.251-.756V7.874c0-1.386-1.07-2.457-1.07-2.457s.251-.189.251-.756V3.213s.441.44.504.63l.82-.82c.377-.377-.253-1.07-.505-1.385C11.853.818 11.853 0 11.853 0M7.13 9.953c.378-.19.441-.315.756-.693l2.394-2.52s1.322 1.386 1.763 2.142c.19.378.441 1.07-.692 1.07H7.13M3.915 7.056h-.692c.44.252.755 1.008.755 1.449v2.772c0 .755.567 3.464 3.024 3.464h7.118v4.536c0 .755-.252 1.196-.44 1.385l-1.072 1.008h.504l1.953-1.763c.378-.441.819-.882.819-2.268V14.74l.819-.819 1.386-1.323c0 1.134.567 1.638 1.07 1.638a1.26 1.26 0 0 0 .756-.315l1.26-1.197c.567-.567.882-2.33-.504-2.33-.882 0-1.89 1.26-1.952 1.386-.315-.19-.567-.63-.567-.63v1.07c-.126.19-.693.63-1.134.63h-1.134v-1.07c0-.504.189-1.071.44-1.323l1.072-1.008h-.504l-2.142 1.953c-.378.44-.63 1.26-.63 1.448H6.058c-1.008 0-1.638-1.007-1.638-1.826v-2.08c0-1.7-.44-1.889-.504-1.889m16.315 6.047c-.189 0-.378-.063-.63-.252-.251-.189-.692-.819-.692-.819.126-.125.504-.251.818-.251.252 0 .504.063.567.189.441.566.378 1.133-.063 1.133M16.893 0L14.75 1.953c-.126.126-.63.882-.63 1.764v5.606c0 .378-.252.945-.44 1.134l-1.072 1.008h.504l2.016-1.827c.252-.252.756-.882.756-1.953V2.331c0-.82.378-1.26.567-1.45L17.397 0h-.504m.315 14.362v2.205l.756.819c.63.63.567 1.827-1.323 3.653a3.78 3.78 0 0 1-2.583 1.197h-3.401L12.672 24h1.386c1.386 0 2.646-.567 3.465-1.449.756-.819 1.197-1.89 1.134-3.023V16.63c0-1.008-.63-1.575-.756-1.7-.126 0-.693-.568-.693-.568Z" }) + ] + } + ); +}); + +export { SiEmirates as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.cjs new file mode 100644 index 000000000..02b4e20cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0AE524"; +const SiEmlakjet = React__namespace.forwardRef(function SiEmlakjet2({ title = "Emlakjet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.65 16.105v-.24a3.543 3.543 0 00-1.267-2.471c-.724-.663-1.69-.965-2.655-.904-1.87.12-3.378 1.747-3.378 3.615 0 .784.12 1.567.422 2.471H4.55V6.946l7.42-5.123 7.482 5.122v11.692h-4.223c.18-.663.422-1.688.422-2.532m5.068-10.244L12.452.136c-.301-.181-.663-.181-.905 0L3.222 5.86c-.242.12-.362.361-.362.663V19.48c0 .482.362.844.844.844H9.92a.824.824 0 00.844-.844c0-.06 0-.18-.06-.24l-.06-.182c-.302-.723-.664-1.627-.664-2.53v-.182c-.06-.542.12-1.084.482-1.446a2.095 2.095 0 011.388-.723c.543-.06 1.026.12 1.448.482.422.362.664.844.724 1.386v.18c.06 1.206-.724 2.954-.845 3.135l-1.146 2.17-.18-.362c-.122-.181-.302-.362-.483-.422-.182-.06-.423-.06-.604.06-.18.12-.362.301-.422.482s-.06.422.06.603l.905 1.687c.121.241.423.422.724.422.302 0 .604-.18.724-.422l1.81-3.375h5.732a.824.824 0 00.844-.843V6.524c-.06-.302-.18-.543-.422-.663" }) + ] + } + ); +}); + +exports.default = SiEmlakjet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.d.ts new file mode 100644 index 000000000..2d8ca7a56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0AE524"; +declare const SiEmlakjet: IconType; +export { SiEmlakjet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.mjs new file mode 100644 index 000000000..bb386dbdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEmlakjet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0AE524"; +const SiEmlakjet = React.forwardRef(function SiEmlakjet2({ title = "Emlakjet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.65 16.105v-.24a3.543 3.543 0 00-1.267-2.471c-.724-.663-1.69-.965-2.655-.904-1.87.12-3.378 1.747-3.378 3.615 0 .784.12 1.567.422 2.471H4.55V6.946l7.42-5.123 7.482 5.122v11.692h-4.223c.18-.663.422-1.688.422-2.532m5.068-10.244L12.452.136c-.301-.181-.663-.181-.905 0L3.222 5.86c-.242.12-.362.361-.362.663V19.48c0 .482.362.844.844.844H9.92a.824.824 0 00.844-.844c0-.06 0-.18-.06-.24l-.06-.182c-.302-.723-.664-1.627-.664-2.53v-.182c-.06-.542.12-1.084.482-1.446a2.095 2.095 0 011.388-.723c.543-.06 1.026.12 1.448.482.422.362.664.844.724 1.386v.18c.06 1.206-.724 2.954-.845 3.135l-1.146 2.17-.18-.362c-.122-.181-.302-.362-.483-.422-.182-.06-.423-.06-.604.06-.18.12-.362.301-.422.482s-.06.422.06.603l.905 1.687c.121.241.423.422.724.422.302 0 .604-.18.724-.422l1.81-3.375h5.732a.824.824 0 00.844-.843V6.524c-.06-.302-.18-.543-.422-.663" }) + ] + } + ); +}); + +export { SiEmlakjet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.cjs new file mode 100644 index 000000000..4b0e35f32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7F7FFF"; +const SiEndeavouros = React__namespace.forwardRef(function SiEndeavouros2({ title = "EndeavourOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.03 2.036v.002C13.303 2.138 0 18.46 0 18.46s.957.272 3.135.588c0 0 10.435-17.061 10.904-17.008-.001 0-.01-.006-.01-.004zM3.135 19.048c-.95 1.562-1.71 2.818-1.71 2.818s10.218.46 18.165-.606c11.308-1.516-2.324-15.96-5.537-19.214 2.542 3.36 13.473 17.751 2.459 17.937-3.89.066-13.377-.935-13.377-.935zm10.906-17.01v.002c.022.01 0 .002 0-.002zm-.037.797c-.055.073-.09.112-.156.205a61.39 61.39 0 0 0-1.285 1.9 356.805 356.805 0 0 0-3.723 5.842c-2.448 3.908-4.467 7.208-4.846 7.826 1.034.107 8.948.935 12.508.875 1.322-.022 2.274-.26 2.926-.623.652-.363 1.022-.839 1.228-1.447.413-1.217.063-3.047-.753-5.018-1.537-3.711-4.485-7.686-5.899-9.56z" }) + ] + } + ); +}); + +exports.default = SiEndeavouros; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.d.ts new file mode 100644 index 000000000..abb809770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7F7FFF"; +declare const SiEndeavouros: IconType; +export { SiEndeavouros as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.mjs new file mode 100644 index 000000000..812c5e64d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEndeavouros.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7F7FFF"; +const SiEndeavouros = React.forwardRef(function SiEndeavouros2({ title = "EndeavourOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.03 2.036v.002C13.303 2.138 0 18.46 0 18.46s.957.272 3.135.588c0 0 10.435-17.061 10.904-17.008-.001 0-.01-.006-.01-.004zM3.135 19.048c-.95 1.562-1.71 2.818-1.71 2.818s10.218.46 18.165-.606c11.308-1.516-2.324-15.96-5.537-19.214 2.542 3.36 13.473 17.751 2.459 17.937-3.89.066-13.377-.935-13.377-.935zm10.906-17.01v.002c.022.01 0 .002 0-.002zm-.037.797c-.055.073-.09.112-.156.205a61.39 61.39 0 0 0-1.285 1.9 356.805 356.805 0 0 0-3.723 5.842c-2.448 3.908-4.467 7.208-4.846 7.826 1.034.107 8.948.935 12.508.875 1.322-.022 2.274-.26 2.926-.623.652-.363 1.022-.839 1.228-1.447.413-1.217.063-3.047-.753-5.018-1.537-3.711-4.485-7.686-5.899-9.56z" }) + ] + } + ); +}); + +export { SiEndeavouros as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.cjs new file mode 100644 index 000000000..3b05414cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D47A1"; +const SiEnpass = React__namespace.forwardRef(function SiEnpass2({ title = "Enpass", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.023 1.3366c2.6912 0 5.3825-.008 8.0745.004a3.8428 3.8428 0 0 1 2.9636 1.3079A3.7223 3.7223 0 0 1 24 4.9469a9.6627 9.6627 0 0 1-.2783 2.319c-.3571 2.0539-.7288 4.1038-1.0939 6.155-.3147 1.7665-.6162 3.5355-.9474 5.3006-.4644 2.038-2.1287 3.5843-4.1953 3.8978a6.3255 6.3255 0 0 1-.7428.0444c-3.1458.003-6.2916.003-9.4375 0-2.4536-.0049-4.551-1.7673-4.9784-4.1834A3553.0608 3553.0608 0 0 0 .4209 7.9092C.2949 7.2115.1559 6.5178.057 5.8148c-.3576-2.05 1.0018-4.0057 3.048-4.3848a5.003 5.003 0 0 1 .9713-.0888c2.6489-.0075 5.2978-.009 7.9467-.0046zM9.8874 18.0225c-.0302.6861.5343 1.2506 1.2204 1.2204h1.7472c.7367.071 1.3552-.548 1.2834-1.2847 0-1.3775 0-2.7556-.0067-4.133a.385.385 0 0 1 .218-.385c1.7016-1.0082 2.525-3.025 2.0155-4.936-.66-2.3766-3.103-3.7856-5.4906-3.1664a4.2099 4.2099 0 0 0-3.0345 2.5005c-.7947 2.0883-.0042 4.4472 1.8883 5.635a.2895.2895 0 0 1 .1636.287c-.0073 1.4795-.0046 2.7056-.0046 4.2622Z" }) + ] + } + ); +}); + +exports.default = SiEnpass; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.d.ts new file mode 100644 index 000000000..ba3c131ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D47A1"; +declare const SiEnpass: IconType; +export { SiEnpass as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.mjs new file mode 100644 index 000000000..a46a75e30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnpass.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D47A1"; +const SiEnpass = React.forwardRef(function SiEnpass2({ title = "Enpass", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.023 1.3366c2.6912 0 5.3825-.008 8.0745.004a3.8428 3.8428 0 0 1 2.9636 1.3079A3.7223 3.7223 0 0 1 24 4.9469a9.6627 9.6627 0 0 1-.2783 2.319c-.3571 2.0539-.7288 4.1038-1.0939 6.155-.3147 1.7665-.6162 3.5355-.9474 5.3006-.4644 2.038-2.1287 3.5843-4.1953 3.8978a6.3255 6.3255 0 0 1-.7428.0444c-3.1458.003-6.2916.003-9.4375 0-2.4536-.0049-4.551-1.7673-4.9784-4.1834A3553.0608 3553.0608 0 0 0 .4209 7.9092C.2949 7.2115.1559 6.5178.057 5.8148c-.3576-2.05 1.0018-4.0057 3.048-4.3848a5.003 5.003 0 0 1 .9713-.0888c2.6489-.0075 5.2978-.009 7.9467-.0046zM9.8874 18.0225c-.0302.6861.5343 1.2506 1.2204 1.2204h1.7472c.7367.071 1.3552-.548 1.2834-1.2847 0-1.3775 0-2.7556-.0067-4.133a.385.385 0 0 1 .218-.385c1.7016-1.0082 2.525-3.025 2.0155-4.936-.66-2.3766-3.103-3.7856-5.4906-3.1664a4.2099 4.2099 0 0 0-3.0345 2.5005c-.7947 2.0883-.0042 4.4472 1.8883 5.635a.2895.2895 0 0 1 .1636.287c-.0073 1.4795-.0046 2.7056-.0046 4.2622Z" }) + ] + } + ); +}); + +export { SiEnpass as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEns.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEns.cjs new file mode 100644 index 000000000..09a2b9732 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEns.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0080BC"; +const SiEns = React__namespace.forwardRef(function SiEns2({ title = "ENS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.725.223 5.107 11.13a.146.146 0 0 1-.237.018c-.583-.692-2.753-3.64-.067-6.327 2.45-2.452 5.572-4.2 6.73-4.804.13-.068.269.08.192.206m-.366 23.747c.132.093.295-.064.206-.2-1.478-2.251-6.392-9.744-7.07-10.869-.67-1.11-1.987-2.953-2.097-4.53-.011-.158-.228-.19-.283-.042a10 10 0 0 0-.27.85c-1.105 4.11.5 8.472 3.985 10.916zm.909-.193 6.618-10.907a.146.146 0 0 1 .237-.018c.582.692 2.753 3.64.067 6.327-2.45 2.452-5.572 4.2-6.73 4.804-.13.068-.269-.08-.192-.206M12.641.028c-.132-.093-.295.065-.206.2 1.478 2.252 6.392 9.745 7.07 10.87.67 1.109 1.987 2.952 2.097 4.53.011.157.228.19.283.041.088-.239.182-.524.27-.85 1.105-4.11-.5-8.472-3.985-10.915z" }) + ] + } + ); +}); + +exports.default = SiEns; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEns.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEns.d.ts new file mode 100644 index 000000000..f2cace1da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEns.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0080BC"; +declare const SiEns: IconType; +export { SiEns as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEns.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEns.mjs new file mode 100644 index 000000000..9cb44a3e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEns.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0080BC"; +const SiEns = React.forwardRef(function SiEns2({ title = "ENS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.725.223 5.107 11.13a.146.146 0 0 1-.237.018c-.583-.692-2.753-3.64-.067-6.327 2.45-2.452 5.572-4.2 6.73-4.804.13-.068.269.08.192.206m-.366 23.747c.132.093.295-.064.206-.2-1.478-2.251-6.392-9.744-7.07-10.869-.67-1.11-1.987-2.953-2.097-4.53-.011-.158-.228-.19-.283-.042a10 10 0 0 0-.27.85c-1.105 4.11.5 8.472 3.985 10.916zm.909-.193 6.618-10.907a.146.146 0 0 1 .237-.018c.582.692 2.753 3.64.067 6.327-2.45 2.452-5.572 4.2-6.73 4.804-.13.068-.269-.08-.192-.206M12.641.028c-.132-.093-.295.065-.206.2 1.478 2.252 6.392 9.745 7.07 10.87.67 1.109 1.987 2.952 2.097 4.53.011.157.228.19.283.041.088-.239.182-.524.27-.85 1.105-4.11-.5-8.472-3.985-10.915z" }) + ] + } + ); +}); + +export { SiEns as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.cjs new file mode 100644 index 000000000..a6f03657d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00BC45"; +const SiEnte = React__namespace.forwardRef(function SiEnte2({ title = "Ente", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.0569.404c-1.9042.0042-3.8052.4582-5.4881 1.3223.1477.2404.2528.506.3086.7794.283 1.383-.5717 2.6728-1.8945 4.3458l-.6855.8594a1.165 1.165 0 0 1-.912.4356 1.1517 1.1517 0 0 1-.627-.1856c-.3196-.2084-.538-.3299-1.2343-.7832-2.042 4.897-.5548 11.2114 3.8826 14.2446 3.5434 2.5674 8.7443 2.8326 12.6499.9434.7786-.3952 1.5287-.838 2.0663-1.4004a2.7886 2.7886 0 0 0 .9238-2.0724c0-1.3257-.9333-2.4682-2.2323-2.7325-.5056-.1094-1.2926-.0854-1.9863.3399-.2262.1083-.4475.2277-.6679.3437-.6341.3344-.7472.3702-1.4374.588-1.9956.6344-6.0325.556-7.0662-1.6388-.1441-.6302.424-.7857.9258-.7852 2.992-.0074 5.9841-.0002 8.9762-.0059.781-.0032 1.5788-.0068 2.3339-.2246 2.302-.5946 3.43-2.7624 3.0272-5.2463-.6121-3.973-3.577-7.5172-7.4606-8.633C15.3562.563 14.2058.4015 13.0569.404zM5.4576.9646c-.7885.0002-1.5143.4442-1.9023 1.0723-.3962-.325-.9281-.5137-1.4472-.5137s-1.0492.18-1.4824.588C.1608 2.5486-.0652 3.1988.0164 3.826c.0856.6424.431 1.1825.9882 1.711.6832.6479 1.6854 1.2787 2.9257 2.0567l.0488.0293a.7427.7427 0 0 0 .4062.1211.7655.7655 0 0 0 .5938-.2832c.011-.013.0208-.0274.0312-.041 1.6662-2.07 2.759-3.4236 2.4706-4.8342-.126-.6165-.5471-1.1606-1.1327-1.4238-.2125-.0973-.5208-.1973-.8906-.1973Zm-3.6757 1.543c.3428 0 .6211.2777.6211.6192 0 .3415-.2783.6172-.621.6172-.3428 0-.6211-.2757-.6211-.6172 0-.3415.2783-.6192.621-.6192zm11.4449 3.6622c1.6882.0106 3.4584.8528 4.1756 2.4923.0547.1383.0885.2821.0703.422-.0512.3676-.387.498-.7168.498-2.0929.0125-5.2392.005-7.4137.002-.288-.0092-.3718-.0665-.3906-.0665-.2202-.0814-.3686-.2946-.3574-.5293.0057-.2033.0986-.4013.1933-.5801.8201-1.5407 2.634-2.3014 4.4393-2.2384Z" }) + ] + } + ); +}); + +exports.default = SiEnte; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.d.ts new file mode 100644 index 000000000..9848ecb11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00BC45"; +declare const SiEnte: IconType; +export { SiEnte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.mjs new file mode 100644 index 000000000..f4072de00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnte.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00BC45"; +const SiEnte = React.forwardRef(function SiEnte2({ title = "Ente", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.0569.404c-1.9042.0042-3.8052.4582-5.4881 1.3223.1477.2404.2528.506.3086.7794.283 1.383-.5717 2.6728-1.8945 4.3458l-.6855.8594a1.165 1.165 0 0 1-.912.4356 1.1517 1.1517 0 0 1-.627-.1856c-.3196-.2084-.538-.3299-1.2343-.7832-2.042 4.897-.5548 11.2114 3.8826 14.2446 3.5434 2.5674 8.7443 2.8326 12.6499.9434.7786-.3952 1.5287-.838 2.0663-1.4004a2.7886 2.7886 0 0 0 .9238-2.0724c0-1.3257-.9333-2.4682-2.2323-2.7325-.5056-.1094-1.2926-.0854-1.9863.3399-.2262.1083-.4475.2277-.6679.3437-.6341.3344-.7472.3702-1.4374.588-1.9956.6344-6.0325.556-7.0662-1.6388-.1441-.6302.424-.7857.9258-.7852 2.992-.0074 5.9841-.0002 8.9762-.0059.781-.0032 1.5788-.0068 2.3339-.2246 2.302-.5946 3.43-2.7624 3.0272-5.2463-.6121-3.973-3.577-7.5172-7.4606-8.633C15.3562.563 14.2058.4015 13.0569.404zM5.4576.9646c-.7885.0002-1.5143.4442-1.9023 1.0723-.3962-.325-.9281-.5137-1.4472-.5137s-1.0492.18-1.4824.588C.1608 2.5486-.0652 3.1988.0164 3.826c.0856.6424.431 1.1825.9882 1.711.6832.6479 1.6854 1.2787 2.9257 2.0567l.0488.0293a.7427.7427 0 0 0 .4062.1211.7655.7655 0 0 0 .5938-.2832c.011-.013.0208-.0274.0312-.041 1.6662-2.07 2.759-3.4236 2.4706-4.8342-.126-.6165-.5471-1.1606-1.1327-1.4238-.2125-.0973-.5208-.1973-.8906-.1973Zm-3.6757 1.543c.3428 0 .6211.2777.6211.6192 0 .3415-.2783.6172-.621.6172-.3428 0-.6211-.2757-.6211-.6172 0-.3415.2783-.6192.621-.6192zm11.4449 3.6622c1.6882.0106 3.4584.8528 4.1756 2.4923.0547.1383.0885.2821.0703.422-.0512.3676-.387.498-.7168.498-2.0929.0125-5.2392.005-7.4137.002-.288-.0092-.3718-.0665-.3906-.0665-.2202-.0814-.3686-.2946-.3574-.5293.0057-.2033.0986-.4013.1933-.5801.8201-1.5407 2.634-2.3014 4.4393-2.2384Z" }) + ] + } + ); +}); + +export { SiEnte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.cjs new file mode 100644 index 000000000..e276425cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3E00"; +const SiEnterprisedb = React__namespace.forwardRef(function SiEnterprisedb2({ title = "EnterpriseDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM6.44 7.75c.072 0 .148.004.222.012l1.815.18a.384.384 0 0 1 .345.369v6.636c0 .186-.154.32-.345.301l-1.815-.18C5.47 14.95 4.5 13.918 4.5 12.762c0-.62.279-1.15.72-1.49-.441-.428-.72-1.011-.72-1.631 0-1.084.85-1.892 1.94-1.89zm11.12 0c1.09 0 1.94.807 1.94 1.89 0 .62-.278 1.204-.72 1.631.442.34.72.87.72 1.49 0 1.157-.967 2.19-2.16 2.307l-1.817.18c-.191.02-.345-.116-.345-.3V8.31c0-.185.154-.35.345-.369l1.817-.18c.074-.007.148-.011.22-.011zm-7.374 2H12c1.194 0 2.16.93 2.16 2.074v3.09c0 1.145-.972 2.086-2.166 2.086H10.18a.343.343 0 0 1-.34-.344v-.092c0-.34.187-.331.27-.34l.136-.011c1.216-.13 1.735-.404 1.754-.766h-1.82c-.202 0-.34-.195-.34-.388v-4.977c0-.184.154-.332.346-.332z" }) + ] + } + ); +}); + +exports.default = SiEnterprisedb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.d.ts new file mode 100644 index 000000000..eb78f1260 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3E00"; +declare const SiEnterprisedb: IconType; +export { SiEnterprisedb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.mjs new file mode 100644 index 000000000..5286dd82a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnterprisedb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3E00"; +const SiEnterprisedb = React.forwardRef(function SiEnterprisedb2({ title = "EnterpriseDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM6.44 7.75c.072 0 .148.004.222.012l1.815.18a.384.384 0 0 1 .345.369v6.636c0 .186-.154.32-.345.301l-1.815-.18C5.47 14.95 4.5 13.918 4.5 12.762c0-.62.279-1.15.72-1.49-.441-.428-.72-1.011-.72-1.631 0-1.084.85-1.892 1.94-1.89zm11.12 0c1.09 0 1.94.807 1.94 1.89 0 .62-.278 1.204-.72 1.631.442.34.72.87.72 1.49 0 1.157-.967 2.19-2.16 2.307l-1.817.18c-.191.02-.345-.116-.345-.3V8.31c0-.185.154-.35.345-.369l1.817-.18c.074-.007.148-.011.22-.011zm-7.374 2H12c1.194 0 2.16.93 2.16 2.074v3.09c0 1.145-.972 2.086-2.166 2.086H10.18a.343.343 0 0 1-.34-.344v-.092c0-.34.187-.331.27-.34l.136-.011c1.216-.13 1.735-.404 1.754-.766h-1.82c-.202 0-.34-.195-.34-.388v-4.977c0-.184.154-.332.346-.332z" }) + ] + } + ); +}); + +export { SiEnterprisedb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.cjs new file mode 100644 index 000000000..682c16dd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#87E64B"; +const SiEnvato = React__namespace.forwardRef(function SiEnvato2({ title = "Envato", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.156 0a2.7 2.7 0 0 0-1.886.8L4 11.253c-.382.42-.558.978-.453 1.57.176.945 1.116 1.571 2.06 1.399l5.54-1.13c.12-.025.183.136.082.204L5.088 17.23c-.769.487-1.119 1.36-.875 2.234.244 1.151 1.398 1.814 2.516 1.537l9.183-2.26a.11.11 0 0 1 .113.176l-1.433 1.77c-.383.487.244 1.15.77.767l4.716-3.877c.84-.697.281-2.062-.803-1.957l-.011-.004-6.047.65a.111.111 0 0 1-.08-.199l5.918-4.609c.382-.315.628-.801.523-1.326-.105-.803-.767-1.328-1.607-1.223l-6.43.942c-.112.015-.174-.128-.084-.2l6.375-4.867c1.256-.978 1.36-2.898.209-4.015A2.6 2.6 0 0 0 16.156 0M13.1 21.855a1.07 1.07 0 0 0-1.073 1.073A1.07 1.07 0 0 0 13.1 24a1.07 1.07 0 0 0 1.072-1.072 1.07 1.07 0 0 0-1.072-1.073" }) + ] + } + ); +}); + +exports.default = SiEnvato; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.d.ts new file mode 100644 index 000000000..1623d41e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#87E64B"; +declare const SiEnvato: IconType; +export { SiEnvato as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.mjs new file mode 100644 index 000000000..358fc1dd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvato.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#87E64B"; +const SiEnvato = React.forwardRef(function SiEnvato2({ title = "Envato", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.156 0a2.7 2.7 0 0 0-1.886.8L4 11.253c-.382.42-.558.978-.453 1.57.176.945 1.116 1.571 2.06 1.399l5.54-1.13c.12-.025.183.136.082.204L5.088 17.23c-.769.487-1.119 1.36-.875 2.234.244 1.151 1.398 1.814 2.516 1.537l9.183-2.26a.11.11 0 0 1 .113.176l-1.433 1.77c-.383.487.244 1.15.77.767l4.716-3.877c.84-.697.281-2.062-.803-1.957l-.011-.004-6.047.65a.111.111 0 0 1-.08-.199l5.918-4.609c.382-.315.628-.801.523-1.326-.105-.803-.767-1.328-1.607-1.223l-6.43.942c-.112.015-.174-.128-.084-.2l6.375-4.867c1.256-.978 1.36-2.898.209-4.015A2.6 2.6 0 0 0 16.156 0M13.1 21.855a1.07 1.07 0 0 0-1.073 1.073A1.07 1.07 0 0 0 13.1 24a1.07 1.07 0 0 0 1.072-1.072 1.07 1.07 0 0 0-1.072-1.073" }) + ] + } + ); +}); + +export { SiEnvato as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.cjs new file mode 100644 index 000000000..eb741e9fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AC6199"; +const SiEnvoyproxy = React__namespace.forwardRef(function SiEnvoyproxy2({ title = "Envoy Proxy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.351 7.593-7.068-4.379a1.034 1.034 0 0 0-.84-.117c-.02.01-.052.021-.074.032L8.471 6.105a.695.695 0 0 0-.435.68l.17 7.355c.01.298.191.595.478.765l7.068 4.38c.255.159.574.201.84.116.02-.01.053-.021.074-.032l6.898-2.976a.705.705 0 0 0 .436-.68l-.17-7.355c-.011-.297-.192-.584-.479-.765m-7.185 10.044-6.143-3.805-.149-6.388 5.995-2.583 6.143 3.805.149 6.388zm.011-6.027a.832.832 0 0 0-.414-.67l-5.06-3.135-.159.064.032 1.52 4.007 2.487.095 4.06 1.53.946.086-.032zm-6.058 7.132L5.41 15.83l-.116-4.89 2.146-.924-.042-1.69-3.327 1.435a.611.611 0 0 0-.382.595l.138 5.74c0 .265.16.52.414.67l5.516 3.422c.224.138.5.18.734.106a.15.15 0 0 1 .064-.021l3.252-1.403-1.616-1zm-2.615-6.1-1.52-.947.032 1.446 1.52.946zm2.19 5.059-.032-1.414-1.329-.83c-.021-.01-.042-.031-.053-.042l.032 1.425zm-4.751 1.902-3.476-2.158-.085-3.613 1.7-.734-.031-1.445-2.72 1.17a.527.527 0 0 0-.33.51l.106 4.336c0 .223.138.446.35.574l4.167 2.582a.822.822 0 0 0 .627.096c.021-.01.043-.01.064-.021l2.561-1.106-1.392-.86Z" }) + ] + } + ); +}); + +exports.default = SiEnvoyproxy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.d.ts new file mode 100644 index 000000000..18d22f674 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AC6199"; +declare const SiEnvoyproxy: IconType; +export { SiEnvoyproxy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.mjs new file mode 100644 index 000000000..b210b27a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEnvoyproxy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AC6199"; +const SiEnvoyproxy = React.forwardRef(function SiEnvoyproxy2({ title = "Envoy Proxy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.351 7.593-7.068-4.379a1.034 1.034 0 0 0-.84-.117c-.02.01-.052.021-.074.032L8.471 6.105a.695.695 0 0 0-.435.68l.17 7.355c.01.298.191.595.478.765l7.068 4.38c.255.159.574.201.84.116.02-.01.053-.021.074-.032l6.898-2.976a.705.705 0 0 0 .436-.68l-.17-7.355c-.011-.297-.192-.584-.479-.765m-7.185 10.044-6.143-3.805-.149-6.388 5.995-2.583 6.143 3.805.149 6.388zm.011-6.027a.832.832 0 0 0-.414-.67l-5.06-3.135-.159.064.032 1.52 4.007 2.487.095 4.06 1.53.946.086-.032zm-6.058 7.132L5.41 15.83l-.116-4.89 2.146-.924-.042-1.69-3.327 1.435a.611.611 0 0 0-.382.595l.138 5.74c0 .265.16.52.414.67l5.516 3.422c.224.138.5.18.734.106a.15.15 0 0 1 .064-.021l3.252-1.403-1.616-1zm-2.615-6.1-1.52-.947.032 1.446 1.52.946zm2.19 5.059-.032-1.414-1.329-.83c-.021-.01-.042-.031-.053-.042l.032 1.425zm-4.751 1.902-3.476-2.158-.085-3.613 1.7-.734-.031-1.445-2.72 1.17a.527.527 0 0 0-.33.51l.106 4.336c0 .223.138.446.35.574l4.167 2.582a.822.822 0 0 0 .627.096c.021-.01.043-.01.064-.021l2.561-1.106-1.392-.86Z" }) + ] + } + ); +}); + +export { SiEnvoyproxy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.cjs new file mode 100644 index 000000000..fafbfdd42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC0000"; +const SiEpel = React__namespace.forwardRef(function SiEpel2({ title = "EPEL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.702 2.361c-1.188.11-.88.154 1.98.286 5.677.242 9.043 1.144 11.353 2.993 1.232 1.012 2.187 3.146 2.187 3.146s-3.639.836-7.797 1.65c-4.159.814-7.46 1.54-7.327 1.584.352.11 5.214-.484 10.319-1.276l4.87-.734c.078-.012.036.394.036.514 0 1.1-1.122 2.948-2.794 4.599-2.75 2.684-6.623 4.686-11.573 5.962-1.364.352-2.2.638-1.892.638 1.188.044 5.742-1.298 7.81-2.266 2.685-1.276 4.401-2.508 6.491-4.664 1.48-1.842 2.994-2.796 3.056-5.017l3.06-.506c1.629-.264 3.103-.55 3.28-.616.241-.088.285-.352.197-1.012-.154-1.21-1.1-2.156-3.014-3.037-2.904-1.342-5.88-1.603-7.442-.68-.173.101-.376.417-.534.486a1079.7 1079.7 0 00-2.365-.862C7.567 2.515 3.848 2.075.702 2.361zm19.032 2.773c1.628.484 4.18 2.014 3.792 2.09l-3.066.601-3.386.772c-.644-1.435-1.491-2.232-2.628-3.305l.133-.327c.322-.796 2.536-.602 5.155.169z" }) + ] + } + ); +}); + +exports.default = SiEpel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.d.ts new file mode 100644 index 000000000..4dc1358dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC0000"; +declare const SiEpel: IconType; +export { SiEpel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.mjs new file mode 100644 index 000000000..e6d5b510d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC0000"; +const SiEpel = React.forwardRef(function SiEpel2({ title = "EPEL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.702 2.361c-1.188.11-.88.154 1.98.286 5.677.242 9.043 1.144 11.353 2.993 1.232 1.012 2.187 3.146 2.187 3.146s-3.639.836-7.797 1.65c-4.159.814-7.46 1.54-7.327 1.584.352.11 5.214-.484 10.319-1.276l4.87-.734c.078-.012.036.394.036.514 0 1.1-1.122 2.948-2.794 4.599-2.75 2.684-6.623 4.686-11.573 5.962-1.364.352-2.2.638-1.892.638 1.188.044 5.742-1.298 7.81-2.266 2.685-1.276 4.401-2.508 6.491-4.664 1.48-1.842 2.994-2.796 3.056-5.017l3.06-.506c1.629-.264 3.103-.55 3.28-.616.241-.088.285-.352.197-1.012-.154-1.21-1.1-2.156-3.014-3.037-2.904-1.342-5.88-1.603-7.442-.68-.173.101-.376.417-.534.486a1079.7 1079.7 0 00-2.365-.862C7.567 2.515 3.848 2.075.702 2.361zm19.032 2.773c1.628.484 4.18 2.014 3.792 2.09l-3.066.601-3.386.772c-.644-1.435-1.491-2.232-2.628-3.305l.133-.327c.322-.796 2.536-.602 5.155.169z" }) + ] + } + ); +}); + +export { SiEpel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.cjs new file mode 100644 index 000000000..def0a18eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#313131"; +const SiEpicgames = React__namespace.forwardRef(function SiEpicgames2({ title = "Epic Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.537 0C2.165 0 1.66.506 1.66 1.879V18.44a4.262 4.262 0 00.02.433c.031.3.037.59.316.92.027.033.311.245.311.245.153.075.258.13.43.2l8.335 3.491c.433.199.614.276.928.27h.002c.314.006.495-.071.928-.27l8.335-3.492c.172-.07.277-.124.43-.2 0 0 .284-.211.311-.243.28-.33.285-.621.316-.92a4.261 4.261 0 00.02-.434V1.879c0-1.373-.506-1.88-1.878-1.88zm13.366 3.11h.68c1.138 0 1.688.553 1.688 1.696v1.88h-1.374v-1.8c0-.369-.17-.54-.523-.54h-.235c-.367 0-.537.17-.537.539v5.81c0 .369.17.54.537.54h.262c.353 0 .523-.171.523-.54V8.619h1.373v2.143c0 1.144-.562 1.71-1.7 1.71h-.694c-1.138 0-1.7-.566-1.7-1.71V4.82c0-1.144.562-1.709 1.7-1.709zm-12.186.08h3.114v1.274H6.117v2.603h1.648v1.275H6.117v2.774h1.74v1.275h-3.14zm3.816 0h2.198c1.138 0 1.7.564 1.7 1.708v2.445c0 1.144-.562 1.71-1.7 1.71h-.799v3.338h-1.4zm4.53 0h1.4v9.201h-1.4zm-3.13 1.235v3.392h.575c.354 0 .523-.171.523-.54V4.965c0-.368-.17-.54-.523-.54zm-3.74 10.147a1.708 1.708 0 01.591.108 1.745 1.745 0 01.49.299l-.452.546a1.247 1.247 0 00-.308-.195.91.91 0 00-.363-.068.658.658 0 00-.28.06.703.703 0 00-.224.163.783.783 0 00-.151.243.799.799 0 00-.056.299v.008a.852.852 0 00.056.31.7.7 0 00.157.245.736.736 0 00.238.16.774.774 0 00.303.058.79.79 0 00.445-.116v-.339h-.548v-.565H7.37v1.255a2.019 2.019 0 01-.524.307 1.789 1.789 0 01-.683.123 1.642 1.642 0 01-.602-.107 1.46 1.46 0 01-.478-.3 1.371 1.371 0 01-.318-.455 1.438 1.438 0 01-.115-.58v-.008a1.426 1.426 0 01.113-.57 1.449 1.449 0 01.312-.46 1.418 1.418 0 01.474-.309 1.58 1.58 0 01.598-.111 1.708 1.708 0 01.045 0zm11.963.008a2.006 2.006 0 01.612.094 1.61 1.61 0 01.507.277l-.386.546a1.562 1.562 0 00-.39-.205 1.178 1.178 0 00-.388-.07.347.347 0 00-.208.052.154.154 0 00-.07.127v.008a.158.158 0 00.022.084.198.198 0 00.076.066.831.831 0 00.147.06c.062.02.14.04.236.061a3.389 3.389 0 01.43.122 1.292 1.292 0 01.328.17.678.678 0 01.207.24.739.739 0 01.071.337v.008a.865.865 0 01-.081.382.82.82 0 01-.229.285 1.032 1.032 0 01-.353.18 1.606 1.606 0 01-.46.061 2.16 2.16 0 01-.71-.116 1.718 1.718 0 01-.593-.346l.43-.514c.277.223.578.335.9.335a.457.457 0 00.236-.05.157.157 0 00.082-.142v-.008a.15.15 0 00-.02-.077.204.204 0 00-.073-.066.753.753 0 00-.143-.062 2.45 2.45 0 00-.233-.062 5.036 5.036 0 01-.413-.113 1.26 1.26 0 01-.331-.16.72.72 0 01-.222-.243.73.73 0 01-.082-.36v-.008a.863.863 0 01.074-.359.794.794 0 01.214-.283 1.007 1.007 0 01.34-.185 1.423 1.423 0 01.448-.066 2.006 2.006 0 01.025 0zm-9.358.025h.742l1.183 2.81h-.825l-.203-.499H8.623l-.198.498h-.81zm2.197.02h.814l.663 1.08.663-1.08h.814v2.79h-.766v-1.602l-.711 1.091h-.016l-.707-1.083v1.593h-.754zm3.469 0h2.235v.658h-1.473v.422h1.334v.61h-1.334v.442h1.493v.658h-2.255zm-5.3.897l-.315.793h.624zm-1.145 5.19h8.014l-4.09 1.348z" }) + ] + } + ); +}); + +exports.default = SiEpicgames; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.d.ts new file mode 100644 index 000000000..641e61628 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#313131"; +declare const SiEpicgames: IconType; +export { SiEpicgames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.mjs new file mode 100644 index 000000000..1f3f27eb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpicgames.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#313131"; +const SiEpicgames = React.forwardRef(function SiEpicgames2({ title = "Epic Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.537 0C2.165 0 1.66.506 1.66 1.879V18.44a4.262 4.262 0 00.02.433c.031.3.037.59.316.92.027.033.311.245.311.245.153.075.258.13.43.2l8.335 3.491c.433.199.614.276.928.27h.002c.314.006.495-.071.928-.27l8.335-3.492c.172-.07.277-.124.43-.2 0 0 .284-.211.311-.243.28-.33.285-.621.316-.92a4.261 4.261 0 00.02-.434V1.879c0-1.373-.506-1.88-1.878-1.88zm13.366 3.11h.68c1.138 0 1.688.553 1.688 1.696v1.88h-1.374v-1.8c0-.369-.17-.54-.523-.54h-.235c-.367 0-.537.17-.537.539v5.81c0 .369.17.54.537.54h.262c.353 0 .523-.171.523-.54V8.619h1.373v2.143c0 1.144-.562 1.71-1.7 1.71h-.694c-1.138 0-1.7-.566-1.7-1.71V4.82c0-1.144.562-1.709 1.7-1.709zm-12.186.08h3.114v1.274H6.117v2.603h1.648v1.275H6.117v2.774h1.74v1.275h-3.14zm3.816 0h2.198c1.138 0 1.7.564 1.7 1.708v2.445c0 1.144-.562 1.71-1.7 1.71h-.799v3.338h-1.4zm4.53 0h1.4v9.201h-1.4zm-3.13 1.235v3.392h.575c.354 0 .523-.171.523-.54V4.965c0-.368-.17-.54-.523-.54zm-3.74 10.147a1.708 1.708 0 01.591.108 1.745 1.745 0 01.49.299l-.452.546a1.247 1.247 0 00-.308-.195.91.91 0 00-.363-.068.658.658 0 00-.28.06.703.703 0 00-.224.163.783.783 0 00-.151.243.799.799 0 00-.056.299v.008a.852.852 0 00.056.31.7.7 0 00.157.245.736.736 0 00.238.16.774.774 0 00.303.058.79.79 0 00.445-.116v-.339h-.548v-.565H7.37v1.255a2.019 2.019 0 01-.524.307 1.789 1.789 0 01-.683.123 1.642 1.642 0 01-.602-.107 1.46 1.46 0 01-.478-.3 1.371 1.371 0 01-.318-.455 1.438 1.438 0 01-.115-.58v-.008a1.426 1.426 0 01.113-.57 1.449 1.449 0 01.312-.46 1.418 1.418 0 01.474-.309 1.58 1.58 0 01.598-.111 1.708 1.708 0 01.045 0zm11.963.008a2.006 2.006 0 01.612.094 1.61 1.61 0 01.507.277l-.386.546a1.562 1.562 0 00-.39-.205 1.178 1.178 0 00-.388-.07.347.347 0 00-.208.052.154.154 0 00-.07.127v.008a.158.158 0 00.022.084.198.198 0 00.076.066.831.831 0 00.147.06c.062.02.14.04.236.061a3.389 3.389 0 01.43.122 1.292 1.292 0 01.328.17.678.678 0 01.207.24.739.739 0 01.071.337v.008a.865.865 0 01-.081.382.82.82 0 01-.229.285 1.032 1.032 0 01-.353.18 1.606 1.606 0 01-.46.061 2.16 2.16 0 01-.71-.116 1.718 1.718 0 01-.593-.346l.43-.514c.277.223.578.335.9.335a.457.457 0 00.236-.05.157.157 0 00.082-.142v-.008a.15.15 0 00-.02-.077.204.204 0 00-.073-.066.753.753 0 00-.143-.062 2.45 2.45 0 00-.233-.062 5.036 5.036 0 01-.413-.113 1.26 1.26 0 01-.331-.16.72.72 0 01-.222-.243.73.73 0 01-.082-.36v-.008a.863.863 0 01.074-.359.794.794 0 01.214-.283 1.007 1.007 0 01.34-.185 1.423 1.423 0 01.448-.066 2.006 2.006 0 01.025 0zm-9.358.025h.742l1.183 2.81h-.825l-.203-.499H8.623l-.198.498h-.81zm2.197.02h.814l.663 1.08.663-1.08h.814v2.79h-.766v-1.602l-.711 1.091h-.016l-.707-1.083v1.593h-.754zm3.469 0h2.235v.658h-1.473v.422h1.334v.61h-1.334v.442h1.493v.658h-2.255zm-5.3.897l-.315.793h.624zm-1.145 5.19h8.014l-4.09 1.348z" }) + ] + } + ); +}); + +export { SiEpicgames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.cjs new file mode 100644 index 000000000..8df4122f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003399"; +const SiEpson = React__namespace.forwardRef(function SiEpson2({ title = "Epson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.616 13.915c-1.029 0-1.428-.952-1.428-1.915 0-.975.398-1.927 1.428-1.927 1.03 0 1.429.952 1.429 1.927 0 .963-.399 1.915-1.429 1.915m0-4.805c-1.627 0-2.567 1.218-2.567 2.89s.94 2.89 2.567 2.89c1.628 0 2.568-1.218 2.568-2.89s-.94-2.89-2.568-2.89zM0 9.266h4.085v.974H1.141v1.207h2.745v.952H1.141v1.351h2.944v.975H0V9.266zM6.73 12.11H5.701v-1.871H6.73c.709 0 1.185.311 1.185.941 0 .621-.476.93-1.185.93m-2.168 2.614h1.14v-1.639H6.73c1.384 0 2.314-.687 2.314-1.904 0-1.229-.931-1.915-2.314-1.915H4.562v5.458zM20.768 9.266h-1.162v5.458h1.118v-2.215c0-.598-.022-1.14-.044-1.605.133.267.531 1.085.708 1.396l1.45 2.425H24V9.266h-1.106v2.158c0 .599.022 1.196.044 1.672-.133-.276-.531-1.096-.72-1.406l-1.45-2.424zM10.34 12.919c0 .73.608 1.019 1.251 1.019.421 0 1.118-.122 1.118-.687 0-.598-.842-.709-1.649-.919-.853-.232-1.672-.543-1.672-1.561 0-1.13 1.063-1.661 2.059-1.661 1.152 0 2.204.498 2.204 1.771h-1.13c-.044-.664-.554-.83-1.129-.83-.388 0-.875.154-.875.619 0 .421.277.487 1.661.842.398.11 1.66.354 1.66 1.595 0 1.018-.797 1.771-2.292 1.771-1.217 0-2.357-.598-2.347-1.959h1.141z" }) + ] + } + ); +}); + +exports.default = SiEpson; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.d.ts new file mode 100644 index 000000000..a89c8b33d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003399"; +declare const SiEpson: IconType; +export { SiEpson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.mjs new file mode 100644 index 000000000..ac9cde62e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEpson.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003399"; +const SiEpson = React.forwardRef(function SiEpson2({ title = "Epson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.616 13.915c-1.029 0-1.428-.952-1.428-1.915 0-.975.398-1.927 1.428-1.927 1.03 0 1.429.952 1.429 1.927 0 .963-.399 1.915-1.429 1.915m0-4.805c-1.627 0-2.567 1.218-2.567 2.89s.94 2.89 2.567 2.89c1.628 0 2.568-1.218 2.568-2.89s-.94-2.89-2.568-2.89zM0 9.266h4.085v.974H1.141v1.207h2.745v.952H1.141v1.351h2.944v.975H0V9.266zM6.73 12.11H5.701v-1.871H6.73c.709 0 1.185.311 1.185.941 0 .621-.476.93-1.185.93m-2.168 2.614h1.14v-1.639H6.73c1.384 0 2.314-.687 2.314-1.904 0-1.229-.931-1.915-2.314-1.915H4.562v5.458zM20.768 9.266h-1.162v5.458h1.118v-2.215c0-.598-.022-1.14-.044-1.605.133.267.531 1.085.708 1.396l1.45 2.425H24V9.266h-1.106v2.158c0 .599.022 1.196.044 1.672-.133-.276-.531-1.096-.72-1.406l-1.45-2.424zM10.34 12.919c0 .73.608 1.019 1.251 1.019.421 0 1.118-.122 1.118-.687 0-.598-.842-.709-1.649-.919-.853-.232-1.672-.543-1.672-1.561 0-1.13 1.063-1.661 2.059-1.661 1.152 0 2.204.498 2.204 1.771h-1.13c-.044-.664-.554-.83-1.129-.83-.388 0-.875.154-.875.619 0 .421.277.487 1.661.842.398.11 1.66.354 1.66 1.595 0 1.018-.797 1.771-2.292 1.771-1.217 0-2.357-.598-2.347-1.959h1.141z" }) + ] + } + ); +}); + +export { SiEpson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.cjs new file mode 100644 index 000000000..87ba53312 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED2224"; +const SiEquinixmetal = React__namespace.forwardRef(function SiEquinixmetal2({ title = "Equinix Metal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.399 7.789v7.005l-1.599.56V7.231L16 5.557v11.472l-1.601.557V4.996L12 4.16l-2.4.836v12.59l-1.599-.557V5.557L3.2 7.232v8.121l-1.599-.56V7.79L0 8.349v7.582l4.801 1.676v-9.24l1.6-.558v10.356L11.2 19.84V6.133l.8-.28.8.28v13.708l4.801-1.676V7.809l1.599.558v9.24L24 15.93V8.349z" }) + ] + } + ); +}); + +exports.default = SiEquinixmetal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.d.ts new file mode 100644 index 000000000..7047d27b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED2224"; +declare const SiEquinixmetal: IconType; +export { SiEquinixmetal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.mjs new file mode 100644 index 000000000..de5fc4fe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEquinixmetal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED2224"; +const SiEquinixmetal = React.forwardRef(function SiEquinixmetal2({ title = "Equinix Metal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.399 7.789v7.005l-1.599.56V7.231L16 5.557v11.472l-1.601.557V4.996L12 4.16l-2.4.836v12.59l-1.599-.557V5.557L3.2 7.232v8.121l-1.599-.56V7.79L0 8.349v7.582l4.801 1.676v-9.24l1.6-.558v10.356L11.2 19.84V6.133l.8-.28.8.28v13.708l4.801-1.676V7.809l1.599.558v9.24L24 15.93V8.349z" }) + ] + } + ); +}); + +export { SiEquinixmetal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.cjs new file mode 100644 index 000000000..5fc8fb6b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC2C40"; +const SiEraser = React__namespace.forwardRef(function SiEraser2({ title = "Eraser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.186 7.328c-.248 0-.482.168-.608.443l-3.476 7.51c-.283.61.057 1.39.605 1.39h10.682V7.329zm8.425 0-.002 9.344h7.205c.248 0 .482-.168.608-.443l3.476-7.51c.283-.61-.057-1.39-.605-1.39Z" }) + ] + } + ); +}); + +exports.default = SiEraser; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.d.ts new file mode 100644 index 000000000..356820f4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC2C40"; +declare const SiEraser: IconType; +export { SiEraser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.mjs new file mode 100644 index 000000000..4e32ea4f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEraser.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC2C40"; +const SiEraser = React.forwardRef(function SiEraser2({ title = "Eraser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.186 7.328c-.248 0-.482.168-.608.443l-3.476 7.51c-.283.61.057 1.39.605 1.39h10.682V7.329zm8.425 0-.002 9.344h7.205c.248 0 .482-.168.608-.443l3.476-7.51c.283-.61-.057-1.39-.605-1.39Z" }) + ] + } + ); +}); + +export { SiEraser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.cjs new file mode 100644 index 000000000..c4e4f9492 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0082F0"; +const SiEricsson = React__namespace.forwardRef(function SiEricsson2({ title = "Ericsson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.76 1.593A2.36 2.36 0 0 0 19.572.225c-.54-.27-1.188-.336-2.256.02L5.187 4.29c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.021l12.129-4.044c1.068-.354 1.548-.795 1.818-1.338a2.35 2.35 0 0 0 .13-1.806zm0 7.485a2.36 2.36 0 0 0-1.188-1.368c-.54-.27-1.188-.336-2.256.021L5.187 11.775c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.021l12.129-4.041c1.068-.357 1.548-.795 1.818-1.341a2.35 2.35 0 0 0 .13-1.806zm0 7.488a2.36 2.36 0 0 0-1.188-1.368c-.54-.27-1.188-.336-2.256.021L5.187 19.263c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.02l12.129-4.045c1.068-.354 1.548-.795 1.818-1.338a2.35 2.35 0 0 0 .13-1.806z" }) + ] + } + ); +}); + +exports.default = SiEricsson; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.d.ts new file mode 100644 index 000000000..0b25ad8db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0082F0"; +declare const SiEricsson: IconType; +export { SiEricsson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.mjs new file mode 100644 index 000000000..5142db45e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEricsson.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0082F0"; +const SiEricsson = React.forwardRef(function SiEricsson2({ title = "Ericsson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.76 1.593A2.36 2.36 0 0 0 19.572.225c-.54-.27-1.188-.336-2.256.02L5.187 4.29c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.021l12.129-4.044c1.068-.354 1.548-.795 1.818-1.338a2.35 2.35 0 0 0 .13-1.806zm0 7.485a2.36 2.36 0 0 0-1.188-1.368c-.54-.27-1.188-.336-2.256.021L5.187 11.775c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.021l12.129-4.041c1.068-.357 1.548-.795 1.818-1.341a2.35 2.35 0 0 0 .13-1.806zm0 7.488a2.36 2.36 0 0 0-1.188-1.368c-.54-.27-1.188-.336-2.256.021L5.187 19.263c-1.068.357-1.548.795-1.818 1.338a2.36 2.36 0 0 0 1.059 3.174c.54.27 1.188.336 2.256-.02l12.129-4.045c1.068-.354 1.548-.795 1.818-1.338a2.35 2.35 0 0 0 .13-1.806z" }) + ] + } + ); +}); + +export { SiEricsson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.cjs new file mode 100644 index 000000000..1a3ddaf3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A90533"; +const SiErlang = React__namespace.forwardRef(function SiErlang2({ title = "Erlang", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.859 7.889c.154-1.863 1.623-3.115 3.344-3.119 1.734.004 2.986 1.256 3.029 3.119zm12.11 11.707c.802-.86 1.52-1.872 2.172-3.03l-3.616-1.807c-1.27 2.064-3.127 3.965-5.694 3.977-3.738-.012-5.206-3.208-5.198-7.322h13.966c.019-.464.019-.68 0-.904.091-2.447-.558-4.504-1.737-6.106l-.007.005H24v15.186h-3.039zm-17.206-.001C1.901 17.62.811 14.894.813 11.64c-.002-2.877.902-5.35 2.456-7.232H0v15.187h3.761Z" }) + ] + } + ); +}); + +exports.default = SiErlang; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.d.ts new file mode 100644 index 000000000..a76de3549 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A90533"; +declare const SiErlang: IconType; +export { SiErlang as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.mjs new file mode 100644 index 000000000..d62a9380b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiErlang.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A90533"; +const SiErlang = React.forwardRef(function SiErlang2({ title = "Erlang", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.859 7.889c.154-1.863 1.623-3.115 3.344-3.119 1.734.004 2.986 1.256 3.029 3.119zm12.11 11.707c.802-.86 1.52-1.872 2.172-3.03l-3.616-1.807c-1.27 2.064-3.127 3.965-5.694 3.977-3.738-.012-5.206-3.208-5.198-7.322h13.966c.019-.464.019-.68 0-.904.091-2.447-.558-4.504-1.737-6.106l-.007.005H24v15.186h-3.039zm-17.206-.001C1.901 17.62.811 14.894.813 11.64c-.002-2.877.902-5.35 2.456-7.232H0v15.187h3.761Z" }) + ] + } + ); +}); + +export { SiErlang as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.cjs new file mode 100644 index 000000000..9013f6941 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0089FF"; +const SiErpnext = React__namespace.forwardRef(function SiErpnext2({ title = "ERPNext", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.88 0C1.29 0 0 1.29 0 2.88v18.24C0 22.71 1.29 24 2.88 24h18.24c1.59 0 2.88-1.29 2.88-2.88V2.88C24 1.29 22.71 0 21.12 0Zm5.04 5.76h8.254v2.146H7.92Zm0 5.033h7.85v2.146h-5.233v2.954h5.703v2.146H7.92Z" }) + ] + } + ); +}); + +exports.default = SiErpnext; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.d.ts new file mode 100644 index 000000000..44ba3e4f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0089FF"; +declare const SiErpnext: IconType; +export { SiErpnext as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.mjs new file mode 100644 index 000000000..9f653d1be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiErpnext.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0089FF"; +const SiErpnext = React.forwardRef(function SiErpnext2({ title = "ERPNext", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.88 0C1.29 0 0 1.29 0 2.88v18.24C0 22.71 1.29 24 2.88 24h18.24c1.59 0 2.88-1.29 2.88-2.88V2.88C24 1.29 22.71 0 21.12 0Zm5.04 5.76h8.254v2.146H7.92Zm0 5.033h7.85v2.146h-5.233v2.954h5.703v2.146H7.92Z" }) + ] + } + ); +}); + +export { SiErpnext as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.cjs new file mode 100644 index 000000000..3550437c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCF00"; +const SiEsbuild = React__namespace.forwardRef(function SiEsbuild2({ title = "esbuild", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zM6.718 5.282L13.436 12l-6.718 6.718-2.036-2.036L9.364 12 4.682 7.318zm7.2 0L20.636 12l-6.718 6.718-2.036-2.036L16.564 12l-4.682-4.682z" }) + ] + } + ); +}); + +exports.default = SiEsbuild; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.d.ts new file mode 100644 index 000000000..538c9aa0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCF00"; +declare const SiEsbuild: IconType; +export { SiEsbuild as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.mjs new file mode 100644 index 000000000..6c3dd5f64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsbuild.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCF00"; +const SiEsbuild = React.forwardRef(function SiEsbuild2({ title = "esbuild", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zM6.718 5.282L13.436 12l-6.718 6.718-2.036-2.036L9.364 12 4.682 7.318zm7.2 0L20.636 12l-6.718 6.718-2.036-2.036L16.564 12l-4.682-4.682z" }) + ] + } + ); +}); + +export { SiEsbuild as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.cjs new file mode 100644 index 000000000..d86f4b29b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E9648"; +const SiEsea = React__namespace.forwardRef(function SiEsea2({ title = "ESEA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.054 2.767L8.95 9.511 0 9.65l5.832 4.47L1.042 21l8.491-4.088 5.711 4.322V14.12L24 9.796l-17.255 4.02a12.575 12.575 0 001.589-1.955 5.475 5.475 0 00.617-1.786l5.593-.15z" }) + ] + } + ); +}); + +exports.default = SiEsea; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.d.ts new file mode 100644 index 000000000..30bc77052 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E9648"; +declare const SiEsea: IconType; +export { SiEsea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.mjs new file mode 100644 index 000000000..783bdb293 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsea.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E9648"; +const SiEsea = React.forwardRef(function SiEsea2({ title = "ESEA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.054 2.767L8.95 9.511 0 9.65l5.832 4.47L1.042 21l8.491-4.088 5.711 4.322V14.12L24 9.796l-17.255 4.02a12.575 12.575 0 001.589-1.955 5.475 5.475 0 00.617-1.786l5.593-.15z" }) + ] + } + ); +}); + +export { SiEsea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.cjs new file mode 100644 index 000000000..992915900 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFF09"; +const SiEslgaming = React__namespace.forwardRef(function SiEslgaming2({ title = "ESLGaming", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12s12-5.372 12-12c0-6.627-5.373-12-12-12zm.455 2.163a9.8 9.8 0 0 1 5.789 2.222L4.384 18.244a9.862 9.862 0 0 1-1.06-1.582zm7.191 3.632a9.802 9.802 0 0 1 2.192 5.806l-14.45 9.1a9.834 9.834 0 0 1-1.592-1.055zm1.979 8.292c-.888 4.45-5.619 8.892-11.9 7.494Z" }) + ] + } + ); +}); + +exports.default = SiEslgaming; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.d.ts new file mode 100644 index 000000000..e17cfb29f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFF09"; +declare const SiEslgaming: IconType; +export { SiEslgaming as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.mjs new file mode 100644 index 000000000..a1bd9290c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEslgaming.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFF09"; +const SiEslgaming = React.forwardRef(function SiEslgaming2({ title = "ESLGaming", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12s12-5.372 12-12c0-6.627-5.373-12-12-12zm.455 2.163a9.8 9.8 0 0 1 5.789 2.222L4.384 18.244a9.862 9.862 0 0 1-1.06-1.582zm7.191 3.632a9.802 9.802 0 0 1 2.192 5.806l-14.45 9.1a9.834 9.834 0 0 1-1.592-1.055zm1.979 8.292c-.888 4.45-5.619 8.892-11.9 7.494Z" }) + ] + } + ); +}); + +export { SiEslgaming as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.cjs new file mode 100644 index 000000000..80d18afbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B32C3"; +const SiEslint = React__namespace.forwardRef(function SiEslint2({ title = "ESLint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.257 9.132L11.816 6.5a.369.369 0 0 1 .368 0l4.559 2.632a.369.369 0 0 1 .184.32v5.263a.37.37 0 0 1-.184.319l-4.559 2.632a.369.369 0 0 1-.368 0l-4.559-2.632a.369.369 0 0 1-.184-.32V9.452a.37.37 0 0 1 .184-.32M23.852 11.53l-5.446-9.475c-.198-.343-.564-.596-.96-.596H6.555c-.396 0-.762.253-.96.596L.149 11.509a1.127 1.127 0 0 0 0 1.117l5.447 9.398c.197.342.563.517.959.517h10.893c.395 0 .76-.17.959-.512l5.446-9.413a1.069 1.069 0 0 0 0-1.086m-4.51 4.556a.4.4 0 0 1-.204.338L12.2 20.426a.395.395 0 0 1-.392 0l-6.943-4.002a.4.4 0 0 1-.205-.338V8.08c0-.14.083-.269.204-.338L11.8 3.74c.12-.07.272-.07.392 0l6.943 4.003a.4.4 0 0 1 .206.338z" }) + ] + } + ); +}); + +exports.default = SiEslint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.d.ts new file mode 100644 index 000000000..d60f3892c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B32C3"; +declare const SiEslint: IconType; +export { SiEslint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.mjs new file mode 100644 index 000000000..df4de994a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEslint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B32C3"; +const SiEslint = React.forwardRef(function SiEslint2({ title = "ESLint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.257 9.132L11.816 6.5a.369.369 0 0 1 .368 0l4.559 2.632a.369.369 0 0 1 .184.32v5.263a.37.37 0 0 1-.184.319l-4.559 2.632a.369.369 0 0 1-.368 0l-4.559-2.632a.369.369 0 0 1-.184-.32V9.452a.37.37 0 0 1 .184-.32M23.852 11.53l-5.446-9.475c-.198-.343-.564-.596-.96-.596H6.555c-.396 0-.762.253-.96.596L.149 11.509a1.127 1.127 0 0 0 0 1.117l5.447 9.398c.197.342.563.517.959.517h10.893c.395 0 .76-.17.959-.512l5.446-9.413a1.069 1.069 0 0 0 0-1.086m-4.51 4.556a.4.4 0 0 1-.204.338L12.2 20.426a.395.395 0 0 1-.392 0l-6.943-4.002a.4.4 0 0 1-.205-.338V8.08c0-.14.083-.269.204-.338L11.8 3.74c.12-.07.272-.07.392 0l6.943 4.003a.4.4 0 0 1 .206.338z" }) + ] + } + ); +}); + +export { SiEslint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.cjs new file mode 100644 index 000000000..ddf6700b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3FA9F5"; +const SiEsotericsoftware = React__namespace.forwardRef(function SiEsotericsoftware2({ title = "Esoteric Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.97 9.88C22.3 2.25 15.71-.68 10.15.13 4.37.97-.62 5.83.06 13.34c.28 3.08 1.85 5.97 4.17 7.94 2.58 2.2 6.08 3.16 9.39 2.53.08-.02.14-.1.12-.18 0-.04-.08-.06-.16-.05-3.18.42-6.51-.65-8.87-2.86a11.222 11.222 0 0 1-3.48-7.09C.66 6.99 5.42 2.51 10.64 1.97c4.25-.44 8.79 1.91 10.68 6.76.16.41-.08.81-.5.89-2.92.54-12.51 2.34-14.43 2.7-.17.03-.32-.08-.32-.26-.12-6.02 5.96-8.55 10.45-4.79.06.05.26.01.32-.05.03-.03.04-.22-.02-.28-5.39-5.33-13.24-.85-12.8 6.39.03.44.43.74.85.69l12.33-1.64c0 .08.02.14.02.14.37 6.24-5.86 8.98-10.43 5.15-.06-.05-.24-.03-.29.03-.02.03-.07.19 0 .25 5.25 5.19 12.85 1.06 12.81-5.86l3.38-.45c.85-.11 1.47-.91 1.28-1.77Z" }) + ] + } + ); +}); + +exports.default = SiEsotericsoftware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.d.ts new file mode 100644 index 000000000..acc306162 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3FA9F5"; +declare const SiEsotericsoftware: IconType; +export { SiEsotericsoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.mjs new file mode 100644 index 000000000..aa4436533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsotericsoftware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3FA9F5"; +const SiEsotericsoftware = React.forwardRef(function SiEsotericsoftware2({ title = "Esoteric Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.97 9.88C22.3 2.25 15.71-.68 10.15.13 4.37.97-.62 5.83.06 13.34c.28 3.08 1.85 5.97 4.17 7.94 2.58 2.2 6.08 3.16 9.39 2.53.08-.02.14-.1.12-.18 0-.04-.08-.06-.16-.05-3.18.42-6.51-.65-8.87-2.86a11.222 11.222 0 0 1-3.48-7.09C.66 6.99 5.42 2.51 10.64 1.97c4.25-.44 8.79 1.91 10.68 6.76.16.41-.08.81-.5.89-2.92.54-12.51 2.34-14.43 2.7-.17.03-.32-.08-.32-.26-.12-6.02 5.96-8.55 10.45-4.79.06.05.26.01.32-.05.03-.03.04-.22-.02-.28-5.39-5.33-13.24-.85-12.8 6.39.03.44.43.74.85.69l12.33-1.64c0 .08.02.14.02.14.37 6.24-5.86 8.98-10.43 5.15-.06-.05-.24-.03-.29.03-.02.03-.07.19 0 .25 5.25 5.19 12.85 1.06 12.81-5.86l3.38-.45c.85-.11 1.47-.91 1.28-1.77Z" }) + ] + } + ); +}); + +export { SiEsotericsoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.cjs new file mode 100644 index 000000000..b1dd1859c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiEsphome = React__namespace.forwardRef(function SiEsphome2({ title = "ESPHome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.253 2.755c-.676 0-1.231.555-1.231 1.232v.976h-.083a.722.722 0 00-.717.716v11.682H.71v-.57h3.544a.355.355 0 00.354-.354v-1.279a.355.355 0 00-.354-.355H.709v-.565h3.544a.355.355 0 00.354-.355v-1.278a.355.355 0 00-.354-.355H.709v-.569h3.544a.355.355 0 00.354-.355V10.05a.355.355 0 00-.354-.354H.709V6.113a.355.355 0 00-.355-.355.355.355 0 00-.354.355v3.937a.355.355 0 00.354.355h3.544v.566H.354a.355.355 0 00-.354.355v1.279a.355.355 0 00.354.354h3.544v.57H.354a.355.355 0 00-.354.354v1.275a.355.355 0 00.354.355h3.544v.57H.354a.355.355 0 00-.354.354v1.278a.355.355 0 00.354.355h4.868v.086c0 .389.323.716.717.716h.083v1.14c0 .677.555 1.233 1.231 1.233.677 0 1.233-.556 1.233-1.232v-1.14h.477v1.137c0 .676.556 1.232 1.232 1.232.677 0 1.232-.556 1.232-1.232v-1.138h.481v1.138c0 .676.556 1.232 1.232 1.232.676 0 1.233-.556 1.233-1.232v-1.138h.48v1.138c0 .676.556 1.232 1.232 1.232.677 0 1.232-.556 1.232-1.232v-1.138h.481v1.138c0 .676.556 1.232 1.232 1.232.676 0 1.233-.556 1.233-1.232v-1.138h.477v1.138c0 .676.555 1.232 1.231 1.232.677 0 1.233-.556 1.233-1.232v-1.138h.079c.39 0 .717-.323.717-.716V5.679a.723.723 0 00-.714-.716h-.082v-.979c0-.676-.556-1.231-1.232-1.23h-.001c-.676.001-1.231.557-1.231 1.233v.976h-.477v-.98c0-.675-.557-1.23-1.233-1.228h-.001c-.676 0-1.23.556-1.23 1.232v.976h-.482v-.976c0-.677-.555-1.232-1.232-1.232-.676 0-1.232.555-1.232 1.232v.976h-.48v-.976c0-.677-.557-1.232-1.233-1.232s-1.232.555-1.232 1.232v.976h-.48v-.976c0-.677-.556-1.232-1.233-1.232-.676 0-1.232.555-1.232 1.232v.976h-.477v-.976c0-.677-.556-1.232-1.233-1.232zm0 .715a.51.51 0 01.517.517v.976H6.737v-.976a.51.51 0 01.516-.517zm2.942 0a.51.51 0 01.517.517v.976H9.679v-.976a.51.51 0 01.516-.517zm2.945 0a.51.51 0 01.516.517v.976h-1.032v-.976a.51.51 0 01.516-.517zm2.945 0a.51.51 0 01.517.517v.976h-1.033v-.976a.51.51 0 01.516-.517zm2.945 0h.001a.507.507 0 01.515.513v.98h-1.032v-.976a.51.51 0 01.516-.517zm2.942.001h.001a.507.507 0 01.515.513v.979h-1.032v-.976a.51.51 0 01.516-.516zM6.018 5.758h17.186v12.319H6.018zm8.63 2.777a.322.322 0 00-.234.095l-3.776 3.78a.322.322 0 00.228.55h.62v2.225a.322.322 0 00.323.322h5.67a.322.322 0 00.322-.322V12.96h.621a.322.322 0 00.228-.55l-.856-.859v-1.533a.322.322 0 00-.322-.323h-.591a.322.322 0 00-.323.323v.3L14.87 8.63a.322.322 0 00-.221-.095zm-7.91 10.337H7.77v1.14a.51.51 0 01-.517.517.51.51 0 01-.516-.516zm2.94 0h1.034v1.138a.51.51 0 01-.517.516.51.51 0 01-.516-.516zm2.946 0h1.032v1.138a.51.51 0 01-.516.516.51.51 0 01-.516-.516zm2.945 0h1.033v1.138a.51.51 0 01-.517.516.51.51 0 01-.516-.516zm2.945 0h1.032v1.138a.51.51 0 01-.516.516.51.51 0 01-.516-.516zm2.941 0h1.033v1.138a.51.51 0 01-.517.516.51.51 0 01-.516-.516z" }) + ] + } + ); +}); + +exports.default = SiEsphome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.d.ts new file mode 100644 index 000000000..a18a85a60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiEsphome: IconType; +export { SiEsphome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.mjs new file mode 100644 index 000000000..ad968626a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsphome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiEsphome = React.forwardRef(function SiEsphome2({ title = "ESPHome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.253 2.755c-.676 0-1.231.555-1.231 1.232v.976h-.083a.722.722 0 00-.717.716v11.682H.71v-.57h3.544a.355.355 0 00.354-.354v-1.279a.355.355 0 00-.354-.355H.709v-.565h3.544a.355.355 0 00.354-.355v-1.278a.355.355 0 00-.354-.355H.709v-.569h3.544a.355.355 0 00.354-.355V10.05a.355.355 0 00-.354-.354H.709V6.113a.355.355 0 00-.355-.355.355.355 0 00-.354.355v3.937a.355.355 0 00.354.355h3.544v.566H.354a.355.355 0 00-.354.355v1.279a.355.355 0 00.354.354h3.544v.57H.354a.355.355 0 00-.354.354v1.275a.355.355 0 00.354.355h3.544v.57H.354a.355.355 0 00-.354.354v1.278a.355.355 0 00.354.355h4.868v.086c0 .389.323.716.717.716h.083v1.14c0 .677.555 1.233 1.231 1.233.677 0 1.233-.556 1.233-1.232v-1.14h.477v1.137c0 .676.556 1.232 1.232 1.232.677 0 1.232-.556 1.232-1.232v-1.138h.481v1.138c0 .676.556 1.232 1.232 1.232.676 0 1.233-.556 1.233-1.232v-1.138h.48v1.138c0 .676.556 1.232 1.232 1.232.677 0 1.232-.556 1.232-1.232v-1.138h.481v1.138c0 .676.556 1.232 1.232 1.232.676 0 1.233-.556 1.233-1.232v-1.138h.477v1.138c0 .676.555 1.232 1.231 1.232.677 0 1.233-.556 1.233-1.232v-1.138h.079c.39 0 .717-.323.717-.716V5.679a.723.723 0 00-.714-.716h-.082v-.979c0-.676-.556-1.231-1.232-1.23h-.001c-.676.001-1.231.557-1.231 1.233v.976h-.477v-.98c0-.675-.557-1.23-1.233-1.228h-.001c-.676 0-1.23.556-1.23 1.232v.976h-.482v-.976c0-.677-.555-1.232-1.232-1.232-.676 0-1.232.555-1.232 1.232v.976h-.48v-.976c0-.677-.557-1.232-1.233-1.232s-1.232.555-1.232 1.232v.976h-.48v-.976c0-.677-.556-1.232-1.233-1.232-.676 0-1.232.555-1.232 1.232v.976h-.477v-.976c0-.677-.556-1.232-1.233-1.232zm0 .715a.51.51 0 01.517.517v.976H6.737v-.976a.51.51 0 01.516-.517zm2.942 0a.51.51 0 01.517.517v.976H9.679v-.976a.51.51 0 01.516-.517zm2.945 0a.51.51 0 01.516.517v.976h-1.032v-.976a.51.51 0 01.516-.517zm2.945 0a.51.51 0 01.517.517v.976h-1.033v-.976a.51.51 0 01.516-.517zm2.945 0h.001a.507.507 0 01.515.513v.98h-1.032v-.976a.51.51 0 01.516-.517zm2.942.001h.001a.507.507 0 01.515.513v.979h-1.032v-.976a.51.51 0 01.516-.516zM6.018 5.758h17.186v12.319H6.018zm8.63 2.777a.322.322 0 00-.234.095l-3.776 3.78a.322.322 0 00.228.55h.62v2.225a.322.322 0 00.323.322h5.67a.322.322 0 00.322-.322V12.96h.621a.322.322 0 00.228-.55l-.856-.859v-1.533a.322.322 0 00-.322-.323h-.591a.322.322 0 00-.323.323v.3L14.87 8.63a.322.322 0 00-.221-.095zm-7.91 10.337H7.77v1.14a.51.51 0 01-.517.517.51.51 0 01-.516-.516zm2.94 0h1.034v1.138a.51.51 0 01-.517.516.51.51 0 01-.516-.516zm2.946 0h1.032v1.138a.51.51 0 01-.516.516.51.51 0 01-.516-.516zm2.945 0h1.033v1.138a.51.51 0 01-.517.516.51.51 0 01-.516-.516zm2.945 0h1.032v1.138a.51.51 0 01-.516.516.51.51 0 01-.516-.516zm2.941 0h1.033v1.138a.51.51 0 01-.517.516.51.51 0 01-.516-.516z" }) + ] + } + ); +}); + +export { SiEsphome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.cjs new file mode 100644 index 000000000..fb869be70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E7352C"; +const SiEspressif = React__namespace.forwardRef(function SiEspressif2({ title = "Espressif", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.926 19.324a7.6 7.6 0 00-2.983-6.754 7.44 7.44 0 00-3.828-1.554.697.697 0 01-.606-.731.674.674 0 01.743-.617 8.97 8.97 0 018 9.805 7.828 7.828 0 01-.298 1.542l1.989.56a11.039 11.039 0 001.714-.651 12.159 12.159 0 00.217-2.343A12.57 12.57 0 007.212 6.171a5.53 5.53 0 00-2 0 4.354 4.354 0 00-2.16 1.337 4.274 4.274 0 001.909 6.856 9.896 9.896 0 001.074.195 4.011 4.011 0 013.337 3.954 3.965 3.965 0 01-.64 2.16l1.371.88a10.182 10.182 0 002.057.342 7.52 7.52 0 00.754-2.628m.16 4.73A13.073 13.073 0 01.001 10.983 12.982 12.982 0 013.83 1.737l.743.697a12.067 12.067 0 000 17.141 12.067 12.067 0 0017.141 0l.697.697a12.97 12.97 0 01-9.336 3.726M24 10.993A10.993 10.993 0 0012.949 0c-.389 0-.766 0-1.143.057l-.252.732a18.912 18.912 0 0111.588 11.576l.731-.263c0-.366.069-.732.069-1.143m-1.269 5.165A17.53 17.53 0 007.818 1.27a11.119 11.119 0 00-2.457 1.77v1.635A13.919 13.919 0 0119.268 18.57h1.634a11.713 11.713 0 001.771-2.446M7.92 17.884a1.691 1.691 0 11-1.69-1.691 1.691 1.691 0 011.69 1.691" }) + ] + } + ); +}); + +exports.default = SiEspressif; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.d.ts new file mode 100644 index 000000000..d25182c48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E7352C"; +declare const SiEspressif: IconType; +export { SiEspressif as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.mjs new file mode 100644 index 000000000..6257a6060 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEspressif.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E7352C"; +const SiEspressif = React.forwardRef(function SiEspressif2({ title = "Espressif", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.926 19.324a7.6 7.6 0 00-2.983-6.754 7.44 7.44 0 00-3.828-1.554.697.697 0 01-.606-.731.674.674 0 01.743-.617 8.97 8.97 0 018 9.805 7.828 7.828 0 01-.298 1.542l1.989.56a11.039 11.039 0 001.714-.651 12.159 12.159 0 00.217-2.343A12.57 12.57 0 007.212 6.171a5.53 5.53 0 00-2 0 4.354 4.354 0 00-2.16 1.337 4.274 4.274 0 001.909 6.856 9.896 9.896 0 001.074.195 4.011 4.011 0 013.337 3.954 3.965 3.965 0 01-.64 2.16l1.371.88a10.182 10.182 0 002.057.342 7.52 7.52 0 00.754-2.628m.16 4.73A13.073 13.073 0 01.001 10.983 12.982 12.982 0 013.83 1.737l.743.697a12.067 12.067 0 000 17.141 12.067 12.067 0 0017.141 0l.697.697a12.97 12.97 0 01-9.336 3.726M24 10.993A10.993 10.993 0 0012.949 0c-.389 0-.766 0-1.143.057l-.252.732a18.912 18.912 0 0111.588 11.576l.731-.263c0-.366.069-.732.069-1.143m-1.269 5.165A17.53 17.53 0 007.818 1.27a11.119 11.119 0 00-2.457 1.77v1.635A13.919 13.919 0 0119.268 18.57h1.634a11.713 11.713 0 001.771-2.446M7.92 17.884a1.691 1.691 0 11-1.69-1.691 1.691 1.691 0 011.69 1.691" }) + ] + } + ); +}); + +export { SiEspressif as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.cjs new file mode 100644 index 000000000..0688ebe35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiEsri = React__namespace.forwardRef(function SiEsri2({ title = "ESRI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.63907.00273c-1.58143.03682-3.04264.4449-4.5349 1.06205-2.07095.87293-4.70641 2.88139-6.3117 6.6711-.37592 1.05578-1.8789 6.09024.79149 10.4125 2.16748 3.50692 4.95741 5.1768 8.37118 5.65348 3.407.47497 5.25533.06419 7.4101-.89245 5.03853-2.2369 8.88662-10.6343 5.03765-16.72016-1.51892-2.81012-5.49826-5.27459-9.85522-5.0841v.00203c-1.0304-.032-1.63648.10168-2.24524.22008-.18288-.04736-.52568.0027-.54516.39978 0 .21344.06847.37913.20393.4765.13463.09665 1.26407.93091 2.0938 1.81316-.39793.04416-.83039.11644-1.27404.20796-.4953-1.07017-2.08625-.09707-3.14374-.0545-.12362.0064-.24269.02388-.36546.03028-.116-.89409-.19886-1.82146-.17768-2.4734C8.46399.95065 11.11512.37795 12.91514.35002l.31498-.00807c.26416-.00253.28524-.21242.03635-.24634-.55902-.0764-1.10025-.10515-1.6274-.09288zm-.19181 1.53048c3.91137-.0172 7.3504 1.64094 8.92442 3.56977-.55965-.2912-1.76629-.7065-2.25735-.81572-.26503-.27008-.59885-.49013-.8884-.6764-.22862-.1456-.51429-.0915-.39575.16355.04487.0992.21919.26655.36142.4341-.83482-.2304-3.05425-.4063-4.11089-.30892-.69003-.77552-1.47719-1.71613-2.42292-2.34013.26453-.01646.5287-.0251.78947-.02625zm-4.85594.42603c-.01343.33869.07398 1.32823.18576 2.28158-.4826.04832-.96112.1076-1.43356.17768a10.2312 10.2312 0 0 0-2.63694 3.46074c-.09908-.89239-.15119-1.63544-.11307-2.09179 1.11167-1.55617 2.62028-3.07211 3.99781-3.82821Zm8.41763 2.64906c.48821.01708.98834.052 1.46587.10095-.85852.3072-1.23689 1.06143-1.65768 1.66172-.0086.0128-.02414.0228-.03432.03433a19.52175 19.52175 0 0 0-1.16503-1.7869c.4263-.02577.90295-.02717 1.39116-.0101zm-2.37446.12114a13.32749 13.32749 0 0 1 1.48 2.15236c-.68157.33021-1.59055.58218-1.96055 1.1105-.15324.22017-.1908.51855-.19585.84197a19.97303 19.97303 0 0 0-3.28305 1.0883c-.38355-1.12775-.71901-2.252-.951-3.25277 1.09728-1.04734 2.38035-1.21677 2.90952-1.6274a15.03184 15.03184 0 0 1 2.00093-.31296zm6.88917.634c.45127.17088 1.02885.40728 1.48606.6562.34713.43687 1.34084 1.41794 1.8717 4.16541.47752 2.47396-.05031 4.35392-.212 4.89834l-.16355.64005c-.116.43603-.50231 1.46609-.70467 1.8818.07706-.56134.14464-2.01894.12519-2.31187.13545.0416.4242-.12255.47246-.28671.04827-.16512-.4765-.41997-.4765-.41997a17.5617 17.5617 0 0 0-.14538-2.28562c.12023-.19489.24217-.38338.36748-.55526a10.22951 10.22951 0 0 0-.1575-1.3326c.10583.03456.20231.06196.27259.06259.23962.0032.23974-.1612.16354-.25239-.04912-.0592-.27844-.20134-.54515-.35536a10.17702 10.17702 0 0 0-2.35427-4.50461ZM1.86865 7.00497s.0517.8962.0949 1.55067c0 0-.66164.75067-.99946 1.34674.13463-1.22175.4228-1.85091.90456-2.89741Zm5.35263.2322c.19812 1.00074.4353 1.8284.7511 2.97817-1.18702.52323-3.28675 1.81816-4.21385 2.5158-.16765-.42503-.34209-1.02781-.49872-1.6476.21082-.62396.64191-1.06046 1.24982-1.1206 1.03971-.104 1.92998-1.65176 2.6632-2.6652.016-.0224.03322-.03914.04845-.06058zm-5.15274 2.2412.01413.11105c-.19472.7366-.31465 1.50207-.3392 2.2937.31328.3302.68222.87924 1.09031 1.44567-.26246.19488-.76785.54326-.88638.62794-.34714.24736-.34214.6363-.0949.85812.13632.12192.41646.07068.5189-.01013.30311-.24129.5554-.43255.90254-.65016.12701.33277.2466.63252.36344.9187-.14816.15904-.25318.3699-.28873.6764-.1143.99228.82833 1.76997 1.62336 1.99688.02976.0096.04997.01378.07874.0202.04233.06431.08029.1245.12519.18979-.41234.32006-.69452.64618-.8884.8985-.11179.1456-.23689.36469-.13529.40786.10413.04224.45398.0005.60977-.02826.39455-.07616.69856-.51352.97119-.67438.32766.45213.86082 1.03223 1.41539 1.59105.02463.10176.04676.20986.0747.29883.10583.34118.24894.67966.41998 1.01156.39877.18625.8147.33987 1.23972.4745a7.06464 7.06464 0 0 0-.52698.60979c-3.42563-1.07271-5.96304-3.96041-6.86898-6.9881a14.79562 14.79562 0 0 1-.55121-5.47984c.04742.0096.15677.06126.32103.01616.1143-.07872.52297-.3635.81168-.61583zm9.89157.18171c-.0066.28193-.03747.5502-.15345.76524-.16595.30976-.09014 1.20842.11307 1.50221.63923.9305 1.70123.41263 2.49964.74707.36661.15328.60998.40762.81572.71072-1.67133.10496-3.31108.49595-4.8317 1.19531C9.6219 12.92116 8.9476 10.7504 8.9476 10.7504v-.0021c.94828-.44874 1.9457-.81904 3.0125-1.0883ZM8.20257 11.0775c.42333 1.2624 1.02859 2.94991 1.44769 3.85244-.05927.0288-.12278.06248-.18374.09287a34.54682 34.54682 0 0 0-2.75607-.66023c-.84244-.1728-.87296-.1278-1.82123.14739-.13545.03904-.26553.075-.3917.11307a30.62419 30.62419 0 0 1-.37555-1.01763c1.21582-.93642 2.4406-1.72272 4.0806-2.5279Zm13.13626 1.9767c.05165.46314.08702.91557.10903 1.32453a7.83681 7.83681 0 0 0-.6562-.24835c.16594-.34458.3499-.71211.54717-1.07618zm-5.61108 1.17512c.16087.27936.34.55903.58554.80966.64093.6553-.372 1.59527-.08077 3.44862h-.0021c-.29971.032-.59767.06936-.86014.10903-.65194.1024-1.49203.32254-2.2735.6138-.44874-.71373-1.6503-2.44857-2.25736-3.75754 1.2209-.6003 2.92566-1.10421 4.88824-1.22357zm4.75498.55525c.35391.09984.68651.20722.97522.32507.03641.52157.03498 2.31123-.06663 3.18412-.1016.21409-.3635.58273-.53708.75717-.26416-.10657-.66046-.22014-1.07618-.31902.06605-.07968.13875-.15432.20393-.23624.22692-1.5206-.28641-2.0062.35536-3.39814zm-9.66947 2.3785c.48175.8111 1.05687 1.69252 1.50221 2.38254-.69342.33613-1.49939.85598-2.26139 1.4275.05248-.87802.07056-1.7466.24835-2.2089.24807-.64768.43971-1.12786.51083-1.60114zm8.54483 2.05342c.46313.05345.92549.13087 1.20742.20191-.62653.79249-1.49164 1.45313-2.41282 2.02718.01952-.34461.0334-.77986.04442-1.18117.41232-.32004.802-.66862 1.16098-1.04792zm-2.95192.01013c.09229.2896.21333.59656.37757.92677.16086.32343.34768.55909.5492.72082.07195-.0448.13884-.09663.20998-.14336-.0051.35559-.0153.71607-.03635 1.06407-.24215.16-1.41046.68857-1.86767.8359a19.83756 19.83756 0 0 1-2.06553-2.70962c.71459-.29985 1.81425-.56757 2.8328-.69458zm-3.62832 1.00148c.34036.5334 1.46049 2.1227 1.91006 2.63492-.81534.14208-1.95564.24903-2.85904.20999 0 0-1.35718-.89952-1.70008-1.24579.67987-.56474 1.78037-1.23506 2.64905-1.59912zM9.62198 22.2815c.39624.2624.81913.56327 1.15695.75716-.5207-.0592-1.13118-.07328-1.585-.22816.13124-.17183.26465-.38337.42805-.529Z" }) + ] + } + ); +}); + +exports.default = SiEsri; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.d.ts new file mode 100644 index 000000000..7e0039b21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiEsri: IconType; +export { SiEsri as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.mjs new file mode 100644 index 000000000..5b9264d0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEsri.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiEsri = React.forwardRef(function SiEsri2({ title = "ESRI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.63907.00273c-1.58143.03682-3.04264.4449-4.5349 1.06205-2.07095.87293-4.70641 2.88139-6.3117 6.6711-.37592 1.05578-1.8789 6.09024.79149 10.4125 2.16748 3.50692 4.95741 5.1768 8.37118 5.65348 3.407.47497 5.25533.06419 7.4101-.89245 5.03853-2.2369 8.88662-10.6343 5.03765-16.72016-1.51892-2.81012-5.49826-5.27459-9.85522-5.0841v.00203c-1.0304-.032-1.63648.10168-2.24524.22008-.18288-.04736-.52568.0027-.54516.39978 0 .21344.06847.37913.20393.4765.13463.09665 1.26407.93091 2.0938 1.81316-.39793.04416-.83039.11644-1.27404.20796-.4953-1.07017-2.08625-.09707-3.14374-.0545-.12362.0064-.24269.02388-.36546.03028-.116-.89409-.19886-1.82146-.17768-2.4734C8.46399.95065 11.11512.37795 12.91514.35002l.31498-.00807c.26416-.00253.28524-.21242.03635-.24634-.55902-.0764-1.10025-.10515-1.6274-.09288zm-.19181 1.53048c3.91137-.0172 7.3504 1.64094 8.92442 3.56977-.55965-.2912-1.76629-.7065-2.25735-.81572-.26503-.27008-.59885-.49013-.8884-.6764-.22862-.1456-.51429-.0915-.39575.16355.04487.0992.21919.26655.36142.4341-.83482-.2304-3.05425-.4063-4.11089-.30892-.69003-.77552-1.47719-1.71613-2.42292-2.34013.26453-.01646.5287-.0251.78947-.02625zm-4.85594.42603c-.01343.33869.07398 1.32823.18576 2.28158-.4826.04832-.96112.1076-1.43356.17768a10.2312 10.2312 0 0 0-2.63694 3.46074c-.09908-.89239-.15119-1.63544-.11307-2.09179 1.11167-1.55617 2.62028-3.07211 3.99781-3.82821Zm8.41763 2.64906c.48821.01708.98834.052 1.46587.10095-.85852.3072-1.23689 1.06143-1.65768 1.66172-.0086.0128-.02414.0228-.03432.03433a19.52175 19.52175 0 0 0-1.16503-1.7869c.4263-.02577.90295-.02717 1.39116-.0101zm-2.37446.12114a13.32749 13.32749 0 0 1 1.48 2.15236c-.68157.33021-1.59055.58218-1.96055 1.1105-.15324.22017-.1908.51855-.19585.84197a19.97303 19.97303 0 0 0-3.28305 1.0883c-.38355-1.12775-.71901-2.252-.951-3.25277 1.09728-1.04734 2.38035-1.21677 2.90952-1.6274a15.03184 15.03184 0 0 1 2.00093-.31296zm6.88917.634c.45127.17088 1.02885.40728 1.48606.6562.34713.43687 1.34084 1.41794 1.8717 4.16541.47752 2.47396-.05031 4.35392-.212 4.89834l-.16355.64005c-.116.43603-.50231 1.46609-.70467 1.8818.07706-.56134.14464-2.01894.12519-2.31187.13545.0416.4242-.12255.47246-.28671.04827-.16512-.4765-.41997-.4765-.41997a17.5617 17.5617 0 0 0-.14538-2.28562c.12023-.19489.24217-.38338.36748-.55526a10.22951 10.22951 0 0 0-.1575-1.3326c.10583.03456.20231.06196.27259.06259.23962.0032.23974-.1612.16354-.25239-.04912-.0592-.27844-.20134-.54515-.35536a10.17702 10.17702 0 0 0-2.35427-4.50461ZM1.86865 7.00497s.0517.8962.0949 1.55067c0 0-.66164.75067-.99946 1.34674.13463-1.22175.4228-1.85091.90456-2.89741Zm5.35263.2322c.19812 1.00074.4353 1.8284.7511 2.97817-1.18702.52323-3.28675 1.81816-4.21385 2.5158-.16765-.42503-.34209-1.02781-.49872-1.6476.21082-.62396.64191-1.06046 1.24982-1.1206 1.03971-.104 1.92998-1.65176 2.6632-2.6652.016-.0224.03322-.03914.04845-.06058zm-5.15274 2.2412.01413.11105c-.19472.7366-.31465 1.50207-.3392 2.2937.31328.3302.68222.87924 1.09031 1.44567-.26246.19488-.76785.54326-.88638.62794-.34714.24736-.34214.6363-.0949.85812.13632.12192.41646.07068.5189-.01013.30311-.24129.5554-.43255.90254-.65016.12701.33277.2466.63252.36344.9187-.14816.15904-.25318.3699-.28873.6764-.1143.99228.82833 1.76997 1.62336 1.99688.02976.0096.04997.01378.07874.0202.04233.06431.08029.1245.12519.18979-.41234.32006-.69452.64618-.8884.8985-.11179.1456-.23689.36469-.13529.40786.10413.04224.45398.0005.60977-.02826.39455-.07616.69856-.51352.97119-.67438.32766.45213.86082 1.03223 1.41539 1.59105.02463.10176.04676.20986.0747.29883.10583.34118.24894.67966.41998 1.01156.39877.18625.8147.33987 1.23972.4745a7.06464 7.06464 0 0 0-.52698.60979c-3.42563-1.07271-5.96304-3.96041-6.86898-6.9881a14.79562 14.79562 0 0 1-.55121-5.47984c.04742.0096.15677.06126.32103.01616.1143-.07872.52297-.3635.81168-.61583zm9.89157.18171c-.0066.28193-.03747.5502-.15345.76524-.16595.30976-.09014 1.20842.11307 1.50221.63923.9305 1.70123.41263 2.49964.74707.36661.15328.60998.40762.81572.71072-1.67133.10496-3.31108.49595-4.8317 1.19531C9.6219 12.92116 8.9476 10.7504 8.9476 10.7504v-.0021c.94828-.44874 1.9457-.81904 3.0125-1.0883ZM8.20257 11.0775c.42333 1.2624 1.02859 2.94991 1.44769 3.85244-.05927.0288-.12278.06248-.18374.09287a34.54682 34.54682 0 0 0-2.75607-.66023c-.84244-.1728-.87296-.1278-1.82123.14739-.13545.03904-.26553.075-.3917.11307a30.62419 30.62419 0 0 1-.37555-1.01763c1.21582-.93642 2.4406-1.72272 4.0806-2.5279Zm13.13626 1.9767c.05165.46314.08702.91557.10903 1.32453a7.83681 7.83681 0 0 0-.6562-.24835c.16594-.34458.3499-.71211.54717-1.07618zm-5.61108 1.17512c.16087.27936.34.55903.58554.80966.64093.6553-.372 1.59527-.08077 3.44862h-.0021c-.29971.032-.59767.06936-.86014.10903-.65194.1024-1.49203.32254-2.2735.6138-.44874-.71373-1.6503-2.44857-2.25736-3.75754 1.2209-.6003 2.92566-1.10421 4.88824-1.22357zm4.75498.55525c.35391.09984.68651.20722.97522.32507.03641.52157.03498 2.31123-.06663 3.18412-.1016.21409-.3635.58273-.53708.75717-.26416-.10657-.66046-.22014-1.07618-.31902.06605-.07968.13875-.15432.20393-.23624.22692-1.5206-.28641-2.0062.35536-3.39814zm-9.66947 2.3785c.48175.8111 1.05687 1.69252 1.50221 2.38254-.69342.33613-1.49939.85598-2.26139 1.4275.05248-.87802.07056-1.7466.24835-2.2089.24807-.64768.43971-1.12786.51083-1.60114zm8.54483 2.05342c.46313.05345.92549.13087 1.20742.20191-.62653.79249-1.49164 1.45313-2.41282 2.02718.01952-.34461.0334-.77986.04442-1.18117.41232-.32004.802-.66862 1.16098-1.04792zm-2.95192.01013c.09229.2896.21333.59656.37757.92677.16086.32343.34768.55909.5492.72082.07195-.0448.13884-.09663.20998-.14336-.0051.35559-.0153.71607-.03635 1.06407-.24215.16-1.41046.68857-1.86767.8359a19.83756 19.83756 0 0 1-2.06553-2.70962c.71459-.29985 1.81425-.56757 2.8328-.69458zm-3.62832 1.00148c.34036.5334 1.46049 2.1227 1.91006 2.63492-.81534.14208-1.95564.24903-2.85904.20999 0 0-1.35718-.89952-1.70008-1.24579.67987-.56474 1.78037-1.23506 2.64905-1.59912zM9.62198 22.2815c.39624.2624.81913.56327 1.15695.75716-.5207-.0592-1.13118-.07328-1.585-.22816.13124-.17183.26465-.38337.42805-.529Z" }) + ] + } + ); +}); + +export { SiEsri as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.cjs new file mode 100644 index 000000000..01141daf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#419EDA"; +const SiEtcd = React__namespace.forwardRef(function SiEtcd2({ title = "etcd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.985 10.715A1.565 1.565 0 1 1 9.42 9.151a1.566 1.566 0 0 1 1.565 1.564zm2.023 0a1.565 1.565 0 1 0 1.565-1.564 1.564 1.564 0 0 0-1.565 1.564zm10.653 1.698a4.295 4.295 0 0 1-.346.013 4.517 4.517 0 0 1-1.986-.462 18.448 18.448 0 0 0 .267-3.515 18.184 18.184 0 0 0-2.274-2.695 4.519 4.519 0 0 1 1.603-1.717l.294-.182-.23-.26a11.977 11.977 0 0 0-4.182-3.05l-.319-.138-.08.336a4.506 4.506 0 0 1-1.135 2.058 18.19 18.19 0 0 0-3.277-1.35 18.126 18.126 0 0 0-3.272 1.348A4.495 4.495 0 0 1 7.594.745L7.512.408l-.317.139a12.091 12.091 0 0 0-4.182 3.05l-.23.259.294.182a4.512 4.512 0 0 1 1.599 1.708 18.322 18.322 0 0 0-2.27 2.685 18.435 18.435 0 0 0 .26 3.538 4.505 4.505 0 0 1-1.975.458 4.224 4.224 0 0 1-.346-.013L0 12.386l.032.344a11.904 11.904 0 0 0 1.609 4.924l.175.298.263-.223a4.502 4.502 0 0 1 2.132-.998 18.29 18.29 0 0 0 1.824 2.971 18.473 18.473 0 0 0 3.457.85 4.493 4.493 0 0 1-.287 2.36l-.132.319.338.075a12.048 12.048 0 0 0 2.59.286l2.59-.286.338-.075-.131-.32a4.487 4.487 0 0 1-.287-2.361 18.476 18.476 0 0 0 3.443-.848 18.208 18.208 0 0 0 1.826-2.974 4.51 4.51 0 0 1 2.143.999l.263.223.175-.296a11.877 11.877 0 0 0 1.607-4.924l.032-.343zm-7.958 4.209a13.981 13.981 0 0 1-7.416 0 14.189 14.189 0 0 1-2.256-7.013 14.118 14.118 0 0 1 2.687-2.558 14.333 14.333 0 0 1 3.279-1.784 14.377 14.377 0 0 1 3.27 1.779 14.226 14.226 0 0 1 2.7 2.576 14.293 14.293 0 0 1-.675 3.652 14.365 14.365 0 0 1-1.59 3.348z" }) + ] + } + ); +}); + +exports.default = SiEtcd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.d.ts new file mode 100644 index 000000000..eab239730 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#419EDA"; +declare const SiEtcd: IconType; +export { SiEtcd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.mjs new file mode 100644 index 000000000..9e7430ea0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtcd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#419EDA"; +const SiEtcd = React.forwardRef(function SiEtcd2({ title = "etcd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.985 10.715A1.565 1.565 0 1 1 9.42 9.151a1.566 1.566 0 0 1 1.565 1.564zm2.023 0a1.565 1.565 0 1 0 1.565-1.564 1.564 1.564 0 0 0-1.565 1.564zm10.653 1.698a4.295 4.295 0 0 1-.346.013 4.517 4.517 0 0 1-1.986-.462 18.448 18.448 0 0 0 .267-3.515 18.184 18.184 0 0 0-2.274-2.695 4.519 4.519 0 0 1 1.603-1.717l.294-.182-.23-.26a11.977 11.977 0 0 0-4.182-3.05l-.319-.138-.08.336a4.506 4.506 0 0 1-1.135 2.058 18.19 18.19 0 0 0-3.277-1.35 18.126 18.126 0 0 0-3.272 1.348A4.495 4.495 0 0 1 7.594.745L7.512.408l-.317.139a12.091 12.091 0 0 0-4.182 3.05l-.23.259.294.182a4.512 4.512 0 0 1 1.599 1.708 18.322 18.322 0 0 0-2.27 2.685 18.435 18.435 0 0 0 .26 3.538 4.505 4.505 0 0 1-1.975.458 4.224 4.224 0 0 1-.346-.013L0 12.386l.032.344a11.904 11.904 0 0 0 1.609 4.924l.175.298.263-.223a4.502 4.502 0 0 1 2.132-.998 18.29 18.29 0 0 0 1.824 2.971 18.473 18.473 0 0 0 3.457.85 4.493 4.493 0 0 1-.287 2.36l-.132.319.338.075a12.048 12.048 0 0 0 2.59.286l2.59-.286.338-.075-.131-.32a4.487 4.487 0 0 1-.287-2.361 18.476 18.476 0 0 0 3.443-.848 18.208 18.208 0 0 0 1.826-2.974 4.51 4.51 0 0 1 2.143.999l.263.223.175-.296a11.877 11.877 0 0 0 1.607-4.924l.032-.343zm-7.958 4.209a13.981 13.981 0 0 1-7.416 0 14.189 14.189 0 0 1-2.256-7.013 14.118 14.118 0 0 1 2.687-2.558 14.333 14.333 0 0 1 3.279-1.784 14.377 14.377 0 0 1 3.27 1.779 14.226 14.226 0 0 1 2.7 2.576 14.293 14.293 0 0 1-.675 3.652 14.365 14.365 0 0 1-1.59 3.348z" }) + ] + } + ); +}); + +export { SiEtcd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.cjs new file mode 100644 index 000000000..a68b60364 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C3C3D"; +const SiEthereum = React__namespace.forwardRef(function SiEthereum2({ title = "Ethereum", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.944 17.97L4.58 13.62 11.943 24l7.37-10.38-7.372 4.35h.003zM12.056 0L4.69 12.223l7.365 4.354 7.365-4.35L12.056 0z" }) + ] + } + ); +}); + +exports.default = SiEthereum; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.d.ts new file mode 100644 index 000000000..5c9acd95a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C3C3D"; +declare const SiEthereum: IconType; +export { SiEthereum as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.mjs new file mode 100644 index 000000000..d3858b711 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthereum.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C3C3D"; +const SiEthereum = React.forwardRef(function SiEthereum2({ title = "Ethereum", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.944 17.97L4.58 13.62 11.943 24l7.37-10.38-7.372 4.35h.003zM12.056 0L4.69 12.223l7.365 4.354 7.365-4.35L12.056 0z" }) + ] + } + ); +}); + +export { SiEthereum as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.cjs new file mode 100644 index 000000000..b90bd13b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2535A0"; +const SiEthers = React__namespace.forwardRef(function SiEthers2({ title = "Ethers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 17.443c-12.547 1.64-21.503 3.61-21.636-4.474 0 0 .274-3.133 4.116-3.33 0 0 .13-2.782 3.065-3.097 1.578-.171 3.37 1.454 3.565 3.165 0 0 3.883-.719 4.051 3.067.059 1.32-.238 3.563-3.983 3.465 0 0-2.167-.294-2.461-3.644-.61 6.485 8.767 6.108 8.902.218.06-2.547-1.572-5.167-5.246-4.676-2.014-5.066-7.375-4.775-9.37-.076-2.854 0-5.035 2.196-5.003 5.064.11 9.23 12.954 6.447 24 4.318Z" }) + ] + } + ); +}); + +exports.default = SiEthers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.d.ts new file mode 100644 index 000000000..f529d77e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2535A0"; +declare const SiEthers: IconType; +export { SiEthers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.mjs new file mode 100644 index 000000000..cb28adc5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2535A0"; +const SiEthers = React.forwardRef(function SiEthers2({ title = "Ethers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 17.443c-12.547 1.64-21.503 3.61-21.636-4.474 0 0 .274-3.133 4.116-3.33 0 0 .13-2.782 3.065-3.097 1.578-.171 3.37 1.454 3.565 3.165 0 0 3.883-.719 4.051 3.067.059 1.32-.238 3.563-3.983 3.465 0 0-2.167-.294-2.461-3.644-.61 6.485 8.767 6.108 8.902.218.06-2.547-1.572-5.167-5.246-4.676-2.014-5.066-7.375-4.775-9.37-.076-2.854 0-5.035 2.196-5.003 5.064.11 9.23 12.954 6.447 24 4.318Z" }) + ] + } + ); +}); + +export { SiEthers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.cjs new file mode 100644 index 000000000..437d3566d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#648B1A"; +const SiEthiopianairlines = React__namespace.forwardRef(function SiEthiopianairlines2({ title = "Ethiopian Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.308 11.603c2.39-1.456 4.239-2.53 4.966-4.355 1.544-4.17.363-5.865-1.104-4.564C20.293 4.506 11.478 13.754.195 20.257c-.172.098-.2.322.558.091 4.48-1.572 14.23-6.705 17.555-8.745zm1.823-.333c.942-.586 1.976-.237.316 2.466-1.126 1.662-1.905 2.63-4.92 3.544-2.075.785-9.768 3.024-15.157 3.675-.401.033-.524-.114-.128-.246 5.135-1.306 17.984-8.21 19.889-9.44zm-8.977 10.47c2.204-.072 3.862.242 5.725-1.73 1.95-2.02 1.72-3.07.544-2.743-1.745.524-8.111 2.69-15.622 3.735-.338.046-.256.226.14.25 5.018.474 6.911.51 9.213.488Z" }) + ] + } + ); +}); + +exports.default = SiEthiopianairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.d.ts new file mode 100644 index 000000000..470a5261e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#648B1A"; +declare const SiEthiopianairlines: IconType; +export { SiEthiopianairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.mjs new file mode 100644 index 000000000..b00db14ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEthiopianairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#648B1A"; +const SiEthiopianairlines = React.forwardRef(function SiEthiopianairlines2({ title = "Ethiopian Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.308 11.603c2.39-1.456 4.239-2.53 4.966-4.355 1.544-4.17.363-5.865-1.104-4.564C20.293 4.506 11.478 13.754.195 20.257c-.172.098-.2.322.558.091 4.48-1.572 14.23-6.705 17.555-8.745zm1.823-.333c.942-.586 1.976-.237.316 2.466-1.126 1.662-1.905 2.63-4.92 3.544-2.075.785-9.768 3.024-15.157 3.675-.401.033-.524-.114-.128-.246 5.135-1.306 17.984-8.21 19.889-9.44zm-8.977 10.47c2.204-.072 3.862.242 5.725-1.73 1.95-2.02 1.72-3.07.544-2.743-1.745.524-8.111 2.69-15.622 3.735-.338.046-.256.226.14.25 5.018.474 6.911.51 9.213.488Z" }) + ] + } + ); +}); + +export { SiEthiopianairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.cjs new file mode 100644 index 000000000..cebfa2463 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BD8B13"; +const SiEtihadairways = React__namespace.forwardRef(function SiEtihadairways2({ title = "Etihad Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.07 7.833s-.194.44-.533.66l.002.024c.007.067.046.092.084.117.046.03.091.06.096.168.005.08 0 1.734 0 1.734l-.43.45-.432-.45c0-.026-.006-1.66 0-1.736.005-.107.048-.136.094-.166.038-.025.078-.05.086-.12v-.033c-.307-.214-.533-.646-.533-.646v2.922l.517.51-.43.431.698.696.693-.696-.431-.431.52-.551zm.52 0v3.422h.424s-.008-2.39 0-2.469c.005-.104.06-.134.117-.164.048-.025.097-.05.107-.123v-.033c0-.04-.029-.054-.066-.07a1.165 1.165 0 0 1-.236-.17c-.219-.188-.271-.276-.272-.278zm-6.219.016s-.273.36-.648.636l.002.014v.023c.01.07.059.096.107.122.057.03.127.057.127.162v2.449h2.72v.05a.363.363 0 0 0-.003.067c0 .194.069.328.191.377a.32.32 0 0 0 .15.035c.068 0 .132-.02.194-.06l.047-.03-.043-.035c-.08-.06-.107-.237-.106-.37v-.034h1.014V9.003s-.135.301-.623.654c0 0 .016.098.102.145.126.07.117.136.117.136v.903h-.606v-.09c-.001-.228-.07-.758-.681-.758-.177.005-.37.01-.563.01-.362 0-.552-.04-.598-.127l-.021-.037-.033.023c-.066.043-.106.124-.106.223.002.146.082.307.227.318.09.004.221.006.353.006.236 0 .47-.004.471-.004.505.004.514.216.518.319v.117h-2.31zm2.76.416l-.32.322.32.32.322-.32.32.32.323-.322-.03-.025-.293-.295-.32.32-.03-.025zm-6.37.716v1.229c.717 0 1.433 0 2.15-.002.065.001.154.02.155.156v.983c0 .008-.002.21-.212.21-.338 0-.315-.17-.317-.17l.002-.552H6.762v.42h1.394v.34s-.044.36.705.36c.61 0 .63-.38.63-.384l.001-1.406c0-.08-.022-.34-.271-.344H7.096v-.154c0-.035.031-.047.056-.063.125-.076.145-.144.106-.17-.251-.143-.496-.453-.496-.453zm8.528 2.426l.287.291-.287.29-.29-.29zm1.045 1.713l-.422.442.469.496.484.488h-.818l-.447.469.095.066.106-.057a.134.134 0 0 1 .031-.01.771.771 0 0 1 .076-.001l1.399.002.964 1.03s-.015.018-.1.018h-.036v.104h1.092zm2.57 0v.086s.112.074.116.074v.317h2.552c.516 0 .894.069 1.123.203.365.213.543.49.543.846 0 .178-.046.34-.14.484a1.105 1.105 0 0 1-.426.363c-.247.128-.625.194-1.121.194h-1.33v-1.87h-.729v2.145l-.004.031a.283.283 0 0 1-.02.022l-.097.06v.088h2.184c.42 0 .749-.023.98-.07.317-.067.598-.183.836-.344.243-.163.418-.35.518-.56a1.242 1.242 0 0 0 .056-.877c-.115-.365-.38-.664-.785-.89-.365-.204-.883-.302-1.584-.302zm-14.81.002l-.444.557.09.031.014.004.137-.07a.208.208 0 0 1 .117-.038h1.758v2.356l-.008.033a.065.065 0 0 1-.022.018l-.1.066v.086h.981v-.088l-.101-.062-.024-.022-.002-.027v-2.36h1.56c.06.007.068.02.068.022v.084h.088l.483-.59zm4.806 0v.088l.098.064c.023.016.035.029.035.041v2.643l-.006.033a.315.315 0 0 1-.027.022l-.1.064v.088h.975v-.088l-.09-.062c-.012-.009-.018-.014-.021-.014h-.002v-2.682l.002-.027.023-.021.088-.06v-.089zm1.332 0v.088l.096.064c.007.006.018.01.026.014v2.672l-.006.035a.066.066 0 0 1-.018.018l-.098.066v.086h.983v-.088l-.104-.064c-.016-.009-.022-.014-.025-.014v-2.68l.002-.029c0-.001.008-.008.023-.016l.094-.056.01-.006v-.09zm.854 1.65l.105.034.137-.078a.22.22 0 0 1 .06-.03.169.169 0 0 1 .057-.008h2.051v.942l.733-.787v-1.557c0-.011.015-.021.015-.021l.106-.055v-.09h-.983v.088l.1.064c.029.018.031.032.031.041v.893H11.53zm-8.66-1.646c-.31 0-.553.01-.72.03a2.366 2.366 0 0 0-.893.292c-.329.186-.564.424-.7.705-.076.16-.114.337-.113.53 0 .49.264.882.785 1.164.235.129.5.218.787.265.215.035.51.053.877.053h2.03l.484-.588h-.041l-.108.004-.126.072c-.035.021-.056.028-.06.03l-2.18.005c-.499 0-.877-.063-1.126-.19-.376-.196-.56-.475-.56-.852 0-.17.048-.33.144-.477a1.26 1.26 0 0 1 .85-.54c.102-.018.2-.02.265-.02h1.125c.068-.003.057.012.06.019l-.013.078h.092l.483-.58zm13.289.553l-2.371 2.478h1.092v-.103h-.04c-.018 0-.033-.004-.048-.006a.141.141 0 0 1-.041-.012l1.832-1.906zm-14.576.58l-.32.476h2.867c.053.006.072.02.074.03l-.012.084h.098l.472-.59Z" }) + ] + } + ); +}); + +exports.default = SiEtihadairways; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.d.ts new file mode 100644 index 000000000..5df6c7cce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BD8B13"; +declare const SiEtihadairways: IconType; +export { SiEtihadairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.mjs new file mode 100644 index 000000000..e0bdd70b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtihadairways.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BD8B13"; +const SiEtihadairways = React.forwardRef(function SiEtihadairways2({ title = "Etihad Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.07 7.833s-.194.44-.533.66l.002.024c.007.067.046.092.084.117.046.03.091.06.096.168.005.08 0 1.734 0 1.734l-.43.45-.432-.45c0-.026-.006-1.66 0-1.736.005-.107.048-.136.094-.166.038-.025.078-.05.086-.12v-.033c-.307-.214-.533-.646-.533-.646v2.922l.517.51-.43.431.698.696.693-.696-.431-.431.52-.551zm.52 0v3.422h.424s-.008-2.39 0-2.469c.005-.104.06-.134.117-.164.048-.025.097-.05.107-.123v-.033c0-.04-.029-.054-.066-.07a1.165 1.165 0 0 1-.236-.17c-.219-.188-.271-.276-.272-.278zm-6.219.016s-.273.36-.648.636l.002.014v.023c.01.07.059.096.107.122.057.03.127.057.127.162v2.449h2.72v.05a.363.363 0 0 0-.003.067c0 .194.069.328.191.377a.32.32 0 0 0 .15.035c.068 0 .132-.02.194-.06l.047-.03-.043-.035c-.08-.06-.107-.237-.106-.37v-.034h1.014V9.003s-.135.301-.623.654c0 0 .016.098.102.145.126.07.117.136.117.136v.903h-.606v-.09c-.001-.228-.07-.758-.681-.758-.177.005-.37.01-.563.01-.362 0-.552-.04-.598-.127l-.021-.037-.033.023c-.066.043-.106.124-.106.223.002.146.082.307.227.318.09.004.221.006.353.006.236 0 .47-.004.471-.004.505.004.514.216.518.319v.117h-2.31zm2.76.416l-.32.322.32.32.322-.32.32.32.323-.322-.03-.025-.293-.295-.32.32-.03-.025zm-6.37.716v1.229c.717 0 1.433 0 2.15-.002.065.001.154.02.155.156v.983c0 .008-.002.21-.212.21-.338 0-.315-.17-.317-.17l.002-.552H6.762v.42h1.394v.34s-.044.36.705.36c.61 0 .63-.38.63-.384l.001-1.406c0-.08-.022-.34-.271-.344H7.096v-.154c0-.035.031-.047.056-.063.125-.076.145-.144.106-.17-.251-.143-.496-.453-.496-.453zm8.528 2.426l.287.291-.287.29-.29-.29zm1.045 1.713l-.422.442.469.496.484.488h-.818l-.447.469.095.066.106-.057a.134.134 0 0 1 .031-.01.771.771 0 0 1 .076-.001l1.399.002.964 1.03s-.015.018-.1.018h-.036v.104h1.092zm2.57 0v.086s.112.074.116.074v.317h2.552c.516 0 .894.069 1.123.203.365.213.543.49.543.846 0 .178-.046.34-.14.484a1.105 1.105 0 0 1-.426.363c-.247.128-.625.194-1.121.194h-1.33v-1.87h-.729v2.145l-.004.031a.283.283 0 0 1-.02.022l-.097.06v.088h2.184c.42 0 .749-.023.98-.07.317-.067.598-.183.836-.344.243-.163.418-.35.518-.56a1.242 1.242 0 0 0 .056-.877c-.115-.365-.38-.664-.785-.89-.365-.204-.883-.302-1.584-.302zm-14.81.002l-.444.557.09.031.014.004.137-.07a.208.208 0 0 1 .117-.038h1.758v2.356l-.008.033a.065.065 0 0 1-.022.018l-.1.066v.086h.981v-.088l-.101-.062-.024-.022-.002-.027v-2.36h1.56c.06.007.068.02.068.022v.084h.088l.483-.59zm4.806 0v.088l.098.064c.023.016.035.029.035.041v2.643l-.006.033a.315.315 0 0 1-.027.022l-.1.064v.088h.975v-.088l-.09-.062c-.012-.009-.018-.014-.021-.014h-.002v-2.682l.002-.027.023-.021.088-.06v-.089zm1.332 0v.088l.096.064c.007.006.018.01.026.014v2.672l-.006.035a.066.066 0 0 1-.018.018l-.098.066v.086h.983v-.088l-.104-.064c-.016-.009-.022-.014-.025-.014v-2.68l.002-.029c0-.001.008-.008.023-.016l.094-.056.01-.006v-.09zm.854 1.65l.105.034.137-.078a.22.22 0 0 1 .06-.03.169.169 0 0 1 .057-.008h2.051v.942l.733-.787v-1.557c0-.011.015-.021.015-.021l.106-.055v-.09h-.983v.088l.1.064c.029.018.031.032.031.041v.893H11.53zm-8.66-1.646c-.31 0-.553.01-.72.03a2.366 2.366 0 0 0-.893.292c-.329.186-.564.424-.7.705-.076.16-.114.337-.113.53 0 .49.264.882.785 1.164.235.129.5.218.787.265.215.035.51.053.877.053h2.03l.484-.588h-.041l-.108.004-.126.072c-.035.021-.056.028-.06.03l-2.18.005c-.499 0-.877-.063-1.126-.19-.376-.196-.56-.475-.56-.852 0-.17.048-.33.144-.477a1.26 1.26 0 0 1 .85-.54c.102-.018.2-.02.265-.02h1.125c.068-.003.057.012.06.019l-.013.078h.092l.483-.58zm13.289.553l-2.371 2.478h1.092v-.103h-.04c-.018 0-.033-.004-.048-.006a.141.141 0 0 1-.041-.012l1.832-1.906zm-14.576.58l-.32.476h2.867c.053.006.072.02.074.03l-.012.084h.098l.472-.59Z" }) + ] + } + ); +}); + +export { SiEtihadairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.cjs new file mode 100644 index 000000000..feccc7f76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F16521"; +const SiEtsy = React__namespace.forwardRef(function SiEtsy2({ title = "Etsy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.559 2.445c0-.325.033-.52.59-.52h7.465c1.3 0 2.02 1.11 2.54 3.193l.42 1.666h1.27c.23-4.728.43-6.784.43-6.784s-3.196.36-5.09.36H6.635L1.521.196v1.37l1.725.326c1.21.24 1.5.496 1.6 1.606 0 0 .11 3.27.11 8.64 0 5.385-.09 8.61-.09 8.61 0 .973-.39 1.333-1.59 1.573l-1.722.33V24l5.13-.165h8.55c1.935 0 6.39.165 6.39.165.105-1.17.75-6.48.855-7.064h-1.2l-1.284 2.91c-1.005 2.28-2.476 2.445-4.11 2.445h-4.906c-1.63 0-2.415-.64-2.415-2.05V12.8s3.62 0 4.79.096c.912.064 1.463.325 1.76 1.598l.39 1.695h1.41l-.09-4.278.192-4.305h-1.391l-.45 1.89c-.283 1.244-.48 1.47-1.754 1.6-1.666.17-4.815.14-4.815.14V2.45h-.05z" }) + ] + } + ); +}); + +exports.default = SiEtsy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.d.ts new file mode 100644 index 000000000..1283535f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F16521"; +declare const SiEtsy: IconType; +export { SiEtsy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.mjs new file mode 100644 index 000000000..2477ff485 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEtsy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F16521"; +const SiEtsy = React.forwardRef(function SiEtsy2({ title = "Etsy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.559 2.445c0-.325.033-.52.59-.52h7.465c1.3 0 2.02 1.11 2.54 3.193l.42 1.666h1.27c.23-4.728.43-6.784.43-6.784s-3.196.36-5.09.36H6.635L1.521.196v1.37l1.725.326c1.21.24 1.5.496 1.6 1.606 0 0 .11 3.27.11 8.64 0 5.385-.09 8.61-.09 8.61 0 .973-.39 1.333-1.59 1.573l-1.722.33V24l5.13-.165h8.55c1.935 0 6.39.165 6.39.165.105-1.17.75-6.48.855-7.064h-1.2l-1.284 2.91c-1.005 2.28-2.476 2.445-4.11 2.445h-4.906c-1.63 0-2.415-.64-2.415-2.05V12.8s3.62 0 4.79.096c.912.064 1.463.325 1.76 1.598l.39 1.695h1.41l-.09-4.278.192-4.305h-1.391l-.45 1.89c-.283 1.244-.48 1.47-1.754 1.6-1.666.17-4.815.14-4.815.14V2.45h-.05z" }) + ] + } + ); +}); + +export { SiEtsy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.cjs new file mode 100644 index 000000000..6d10a5d5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003399"; +const SiEuropeanunion = React__namespace.forwardRef(function SiEuropeanunion2({ title = "European Union", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.373 1.94 10.36 1.2h1.253L12 0l.387 1.2h1.253l-1.013.74.386 1.207L12 2.4l-1.013.747Zm1.254 20.86.386 1.2L12 23.26l-1.013.74.386-1.2-1.013-.74h1.253L12 20.853l.387 1.207h1.253ZM1.64 12.8l-1.013.747.386-1.2L0 11.627h1.253l.387-1.2.387 1.2h1.26l-1.02.746.386 1.2-1.013-.746Zm5.807-9.467.386 1.2L6.82 3.8l-1.013.74.386-1.2L5.18 2.6h1.253l.387-1.2.387 1.2H8.46Zm-4.78 3.08.386-1.2.394 1.2h1.22l-1.014.747.387 1.2-1.02-.747L2 8.36l.387-1.2-1.014-.747ZM1.387 16.84h1.28l.386-1.2.394 1.2h1.22l-1.014.747.387 1.2-1.02-.74-1.02.74.387-1.2-1.014-.747Zm4.806 4.56-1.013-.733h1.253l.387-1.2.387 1.2H8.46l-1.013.733.386 1.2-1.013-.74-1.013.74Zm16.794-9.027.386 1.2-1.013-.746-1.027.746.387-1.2-1.02-.746H22l.387-1.2.386 1.2H24Zm-6.434-9.04L15.54 2.6h1.253l.387-1.2.387 1.2h1.253l-1.013.733.386 1.2L17.18 3.8l-1.013.74.386-1.2Zm4 3.074.394-1.2.386 1.2h1.254l-.987.753.387 1.2-1.014-.747-1.02.747.387-1.2-1.007-.747Zm.78 10.433h1.254l-.987.747.387 1.2-1.014-.74-1.02.74.387-1.2-1.007-.747h1.254l.393-1.2.387 1.2zm-2.513 3.827-1.013.733.386 1.2-1.013-.74-1.013.74.386-1.2-1.013-.733h1.253l.387-1.2.387 1.2z" }) + ] + } + ); +}); + +exports.default = SiEuropeanunion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.d.ts new file mode 100644 index 000000000..bae939159 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003399"; +declare const SiEuropeanunion: IconType; +export { SiEuropeanunion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.mjs new file mode 100644 index 000000000..66133ffec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEuropeanunion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003399"; +const SiEuropeanunion = React.forwardRef(function SiEuropeanunion2({ title = "European Union", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.373 1.94 10.36 1.2h1.253L12 0l.387 1.2h1.253l-1.013.74.386 1.207L12 2.4l-1.013.747Zm1.254 20.86.386 1.2L12 23.26l-1.013.74.386-1.2-1.013-.74h1.253L12 20.853l.387 1.207h1.253ZM1.64 12.8l-1.013.747.386-1.2L0 11.627h1.253l.387-1.2.387 1.2h1.26l-1.02.746.386 1.2-1.013-.746Zm5.807-9.467.386 1.2L6.82 3.8l-1.013.74.386-1.2L5.18 2.6h1.253l.387-1.2.387 1.2H8.46Zm-4.78 3.08.386-1.2.394 1.2h1.22l-1.014.747.387 1.2-1.02-.747L2 8.36l.387-1.2-1.014-.747ZM1.387 16.84h1.28l.386-1.2.394 1.2h1.22l-1.014.747.387 1.2-1.02-.74-1.02.74.387-1.2-1.014-.747Zm4.806 4.56-1.013-.733h1.253l.387-1.2.387 1.2H8.46l-1.013.733.386 1.2-1.013-.74-1.013.74Zm16.794-9.027.386 1.2-1.013-.746-1.027.746.387-1.2-1.02-.746H22l.387-1.2.386 1.2H24Zm-6.434-9.04L15.54 2.6h1.253l.387-1.2.387 1.2h1.253l-1.013.733.386 1.2L17.18 3.8l-1.013.74.386-1.2Zm4 3.074.394-1.2.386 1.2h1.254l-.987.753.387 1.2-1.014-.747-1.02.747.387-1.2-1.007-.747Zm.78 10.433h1.254l-.987.747.387 1.2-1.014-.74-1.02.74.387-1.2-1.007-.747h1.254l.393-1.2.387 1.2zm-2.513 3.827-1.013.733.386 1.2-1.013-.74-1.013.74.386-1.2-1.013-.733h1.253l.387-1.2.387 1.2z" }) + ] + } + ); +}); + +export { SiEuropeanunion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.cjs new file mode 100644 index 000000000..e1c276cdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5AB552"; +const SiEventstore = React__namespace.forwardRef(function SiEventstore2({ title = "Event Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.785 3.414c.428-.251.874-.473 1.339-.666.981-.421 1.995-.659 3.036-.765l1.127 1.274-.525 1.319c-1.02.195-1.979.57-2.879 1.11l-.195.12-.178-1.737-1.725-.66v.005zM5.295 3.724l1.789.69.188 1.71c-.969.713-1.725 1.623-2.264 2.73-.051.099-.096.198-.139.3l-1.26-1.529-2.054.434c.511-1.104 1.201-2.091 2.063-2.96.515-.522 1.07-.979 1.667-1.376l.01.001zm11.782 12.052c.195-.324.354-.652.48-.99l1.938 2.35 3.255-.701c-.187.513-.407 1.015-.662 1.507-.671 1.291-1.553 2.409-2.648 3.36-1.112.962-2.369 1.665-3.771 2.107-.027.009-.056.016-.083.026l-2.411-2.039.629-2.775.051-.021c1.379-.6 2.457-1.529 3.224-2.835v.011zM21.153 4.805c.199.273.384.56.563.854.741 1.248 1.254 2.582 1.539 4.004.271 1.41.315 2.829.12 4.252-.105.684-.255 1.35-.464 2.002l-3.255.699-1.95-2.357c.226-.867.255-1.77.06-2.709-.225-1.114-.72-2.065-1.454-2.85l3.509-.42 1.306-3.476h.026zM1.338 8.584l2.1-.444 1.236 1.509c-.391 1.084-.48 2.21-.285 3.38.045.334.119.656.21.969l-2.22-.505-1.59 1.881c-.193-.833-.283-1.685-.283-2.554.003-1.451.27-2.85.807-4.199l.016-.039.009.002zM4.78 14.518c.319.844.788 1.614 1.409 2.316.465.539.99.975 1.563 1.319l-2.2 1.261.12 2.864c-.726-.451-1.395-.99-2-1.605-1.021-1.05-1.8-2.249-2.34-3.6-.149-.375-.27-.75-.375-1.125l1.635-1.919 2.22.509-.032-.02zM8.232 18.415c.473.236.979.416 1.518.54 1.207.28 2.385.233 3.529-.141l-.625 2.757 2.387 2.02c-1.193.313-2.414.445-3.659.401-1.455-.046-2.853-.354-4.19-.925-.36-.153-.705-.322-1.041-.51l-.119-2.882 2.2-1.26zM20.815 4.364L19.502 7.85l-3.614.435c-.105-.091-.213-.181-.327-.255-1.185-.9-2.52-1.426-4.004-1.575-.346-.029-.675-.029-.99-.029l1.26-3.226L9.1.095c.827-.09 1.637-.104 2.459-.09.49.015.975.051 1.459.113.68.089 1.351.239 2.015.42 1.405.4 2.685 1.034 3.842 1.93.729.559 1.376 1.191 1.94 1.896z" }) + ] + } + ); +}); + +exports.default = SiEventstore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.d.ts new file mode 100644 index 000000000..b8fa88fee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5AB552"; +declare const SiEventstore: IconType; +export { SiEventstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.mjs new file mode 100644 index 000000000..e03ac178b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEventstore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5AB552"; +const SiEventstore = React.forwardRef(function SiEventstore2({ title = "Event Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.785 3.414c.428-.251.874-.473 1.339-.666.981-.421 1.995-.659 3.036-.765l1.127 1.274-.525 1.319c-1.02.195-1.979.57-2.879 1.11l-.195.12-.178-1.737-1.725-.66v.005zM5.295 3.724l1.789.69.188 1.71c-.969.713-1.725 1.623-2.264 2.73-.051.099-.096.198-.139.3l-1.26-1.529-2.054.434c.511-1.104 1.201-2.091 2.063-2.96.515-.522 1.07-.979 1.667-1.376l.01.001zm11.782 12.052c.195-.324.354-.652.48-.99l1.938 2.35 3.255-.701c-.187.513-.407 1.015-.662 1.507-.671 1.291-1.553 2.409-2.648 3.36-1.112.962-2.369 1.665-3.771 2.107-.027.009-.056.016-.083.026l-2.411-2.039.629-2.775.051-.021c1.379-.6 2.457-1.529 3.224-2.835v.011zM21.153 4.805c.199.273.384.56.563.854.741 1.248 1.254 2.582 1.539 4.004.271 1.41.315 2.829.12 4.252-.105.684-.255 1.35-.464 2.002l-3.255.699-1.95-2.357c.226-.867.255-1.77.06-2.709-.225-1.114-.72-2.065-1.454-2.85l3.509-.42 1.306-3.476h.026zM1.338 8.584l2.1-.444 1.236 1.509c-.391 1.084-.48 2.21-.285 3.38.045.334.119.656.21.969l-2.22-.505-1.59 1.881c-.193-.833-.283-1.685-.283-2.554.003-1.451.27-2.85.807-4.199l.016-.039.009.002zM4.78 14.518c.319.844.788 1.614 1.409 2.316.465.539.99.975 1.563 1.319l-2.2 1.261.12 2.864c-.726-.451-1.395-.99-2-1.605-1.021-1.05-1.8-2.249-2.34-3.6-.149-.375-.27-.75-.375-1.125l1.635-1.919 2.22.509-.032-.02zM8.232 18.415c.473.236.979.416 1.518.54 1.207.28 2.385.233 3.529-.141l-.625 2.757 2.387 2.02c-1.193.313-2.414.445-3.659.401-1.455-.046-2.853-.354-4.19-.925-.36-.153-.705-.322-1.041-.51l-.119-2.882 2.2-1.26zM20.815 4.364L19.502 7.85l-3.614.435c-.105-.091-.213-.181-.327-.255-1.185-.9-2.52-1.426-4.004-1.575-.346-.029-.675-.029-.99-.029l1.26-3.226L9.1.095c.827-.09 1.637-.104 2.459-.09.49.015.975.051 1.459.113.68.089 1.351.239 2.015.42 1.405.4 2.685 1.034 3.842 1.93.729.559 1.376 1.191 1.94 1.896z" }) + ] + } + ); +}); + +export { SiEventstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.cjs new file mode 100644 index 000000000..d62a34e0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A82D"; +const SiEvernote = React__namespace.forwardRef(function SiEvernote2({ title = "Evernote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.222 5.393c0 .239-.02.637-.256.895-.257.24-.652.259-.888.259H4.552c-.73 0-1.165 0-1.46.04-.159.02-.356.1-.455.14-.04.019-.04 0-.02-.02L8.38.796c.02-.02.04-.02.02.02-.04.099-.118.298-.138.457-.04.298-.04.736-.04 1.472v2.647zm5.348 17.869c-.67-.438-1.026-1.015-1.164-1.373a2.924 2.924 0 01-.217-1.095 3.007 3.007 0 013-3.004c.493 0 .888.398.888.895a.88.88 0 01-.454.776c-.099.06-.237.1-.336.12-.098.02-.473.06-.65.218-.198.16-.356.418-.356.697 0 .298.118.577.316.776.355.358.829.557 1.342.557a2.436 2.436 0 002.427-2.447c0-1.214-.809-2.29-1.875-2.766-.158-.08-.414-.14-.651-.2a8.04 8.04 0 00-.592-.1c-.829-.1-2.901-.755-3.04-2.605 0 0-.611 2.785-1.835 3.54-.118.06-.276.12-.454.16-.177.04-.374.06-.434.06-1.993.12-4.105-.517-5.565-2.03 0 0-.987-.815-1.5-3.103-.118-.558-.355-1.553-.493-2.488-.06-.338-.08-.597-.099-.836 0-.975.592-1.631 1.342-1.73h4.026c.69 0 1.086-.18 1.342-.42.336-.317.415-.775.415-1.312V1.354C9.05.617 9.703 0 10.669 0h.474c.197 0 .434.02.651.04.158.02.296.06.533.12 1.204.298 1.46 1.532 1.46 1.532s2.27.398 3.415.597c1.085.199 3.77.378 4.282 3.104 1.204 6.487.474 12.775.415 12.775-.849 6.129-5.901 5.83-5.901 5.83a4.1 4.1 0 01-2.428-.736zm4.54-13.034c-.652-.06-1.204.2-1.402.697-.04.1-.079.219-.059.278.02.06.06.08.099.1.237.12.631.179 1.204.239.572.06.967.1 1.223.06.04 0 .08-.02.119-.08.04-.06.02-.18.02-.28-.06-.536-.553-.934-1.204-1.014z" }) + ] + } + ); +}); + +exports.default = SiEvernote; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.d.ts new file mode 100644 index 000000000..e5f8a8b59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A82D"; +declare const SiEvernote: IconType; +export { SiEvernote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.mjs new file mode 100644 index 000000000..ad2807a82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEvernote.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A82D"; +const SiEvernote = React.forwardRef(function SiEvernote2({ title = "Evernote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.222 5.393c0 .239-.02.637-.256.895-.257.24-.652.259-.888.259H4.552c-.73 0-1.165 0-1.46.04-.159.02-.356.1-.455.14-.04.019-.04 0-.02-.02L8.38.796c.02-.02.04-.02.02.02-.04.099-.118.298-.138.457-.04.298-.04.736-.04 1.472v2.647zm5.348 17.869c-.67-.438-1.026-1.015-1.164-1.373a2.924 2.924 0 01-.217-1.095 3.007 3.007 0 013-3.004c.493 0 .888.398.888.895a.88.88 0 01-.454.776c-.099.06-.237.1-.336.12-.098.02-.473.06-.65.218-.198.16-.356.418-.356.697 0 .298.118.577.316.776.355.358.829.557 1.342.557a2.436 2.436 0 002.427-2.447c0-1.214-.809-2.29-1.875-2.766-.158-.08-.414-.14-.651-.2a8.04 8.04 0 00-.592-.1c-.829-.1-2.901-.755-3.04-2.605 0 0-.611 2.785-1.835 3.54-.118.06-.276.12-.454.16-.177.04-.374.06-.434.06-1.993.12-4.105-.517-5.565-2.03 0 0-.987-.815-1.5-3.103-.118-.558-.355-1.553-.493-2.488-.06-.338-.08-.597-.099-.836 0-.975.592-1.631 1.342-1.73h4.026c.69 0 1.086-.18 1.342-.42.336-.317.415-.775.415-1.312V1.354C9.05.617 9.703 0 10.669 0h.474c.197 0 .434.02.651.04.158.02.296.06.533.12 1.204.298 1.46 1.532 1.46 1.532s2.27.398 3.415.597c1.085.199 3.77.378 4.282 3.104 1.204 6.487.474 12.775.415 12.775-.849 6.129-5.901 5.83-5.901 5.83a4.1 4.1 0 01-2.428-.736zm4.54-13.034c-.652-.06-1.204.2-1.402.697-.04.1-.079.219-.059.278.02.06.06.08.099.1.237.12.631.179 1.204.239.572.06.967.1 1.223.06.04 0 .08-.02.119-.08.04-.06.02-.18.02-.28-.06-.536-.553-.934-1.204-1.014z" }) + ] + } + ); +}); + +export { SiEvernote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.cjs new file mode 100644 index 000000000..2ef824f30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2BD7B0"; +const SiEverydotorg = React__namespace.forwardRef(function SiEverydotorg2({ title = "Every.org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.151 9.36c0-4.467-3.728-7.855-8.517-7.855C4.278 1.505 0 6.028 0 11.63c0 6.038 4.808 10.864 11.28 10.864 6.474 0 12.266-5.13 12.72-11.848h-2.953c-.549 5.034-4.807 8.896-9.766 8.896-4.77 0-8.31-3.502-8.31-7.912 0-3.975 2.953-7.174 6.663-7.174 3.104 0 5.546 2.12 5.546 4.903 0 2.309-1.666 4.24-3.88 4.24v2.952c3.918 0 6.851-3.274 6.851-7.192" }) + ] + } + ); +}); + +exports.default = SiEverydotorg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.d.ts new file mode 100644 index 000000000..413b96388 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2BD7B0"; +declare const SiEverydotorg: IconType; +export { SiEverydotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.mjs new file mode 100644 index 000000000..fb9d6bba7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEverydotorg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2BD7B0"; +const SiEverydotorg = React.forwardRef(function SiEverydotorg2({ title = "Every.org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.151 9.36c0-4.467-3.728-7.855-8.517-7.855C4.278 1.505 0 6.028 0 11.63c0 6.038 4.808 10.864 11.28 10.864 6.474 0 12.266-5.13 12.72-11.848h-2.953c-.549 5.034-4.807 8.896-9.766 8.896-4.77 0-8.31-3.502-8.31-7.912 0-3.975 2.953-7.174 6.663-7.174 3.104 0 5.546 2.12 5.546 4.903 0 2.309-1.666 4.24-3.88 4.24v2.952c3.918 0 6.851-3.274 6.851-7.192" }) + ] + } + ); +}); + +export { SiEverydotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.cjs new file mode 100644 index 000000000..0089271e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6965DB"; +const SiExcalidraw = React__namespace.forwardRef(function SiExcalidraw2({ title = "Excalidraw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9428 19.8058a.1962.1962 0 0 0-.1679-.0337c-1.26-1.8552-2.8727-3.6104-4.4186-5.3152l-.2521-.284c-.0016-.0732-.0667-.1207-.1342-.1504-.0284-.0277-.0562-.0558-.0843-.0837-.0505-.1005-.1685-.1673-.2858-.1005-.4706.2347-.9068.5855-1.3274.9195-.5536.4345-1.1085.8695-1.6296 1.354a5.0577 5.0577 0 0 0-.5879.6185c-.0842.1168-.0168.2172.0843.2672-.3701.3677-.7402.736-1.109 1.1198a.1896.1896 0 0 0-.0506.1342c0 .05.0337.1.0668.1168l.6559.5012v.0169c.9237.9194 2.5538 2.1729 4.2844 3.5268.2515.201.5205.4014.7727.6017.1173.1342.2346.2847.3357.4182.0506.0662.1685.0837.2353.0331.0337.0337.0843.0668.118.1005a.2395.2395 0 0 0 .1004.0337.1534.1534 0 0 0 .1348-.0668.2371.2371 0 0 0 .0331-.1004c.0175 0 .0169.0168.0337.0168a.1915.1915 0 0 0 .1348-.0505l3.058-3.3265c.1198-.1159.0135-.2668-.0005-.2672zm-7.6277-.1336-1.5459-1.1704-.151-.0998c-.0337-.0169-.0674-.0506-.1011-.0668l-.1174-.1005c.6597-.659 1.3297-1.3074 1.9996-1.9557-.4874.4844-1.4622 1.9057-1.2606 2.3733.0023 0 .0186.0419.0674.0842.3704.311.7398.6232 1.109.9357zm4.0997 3.1261-1.277-.97a26.9056 26.9056 0 0 0-1.5795-1.5044c.689.5181 1.2769.9694 1.3611 1.053.6722.585.6379.485 1.0922.8696l.5542.4008c-.0735.103-.151.1477-.151.151zm.3357.2503-.0337-.0168c.0506-.0331.1011-.0668.1517-.1168zM.5885 3.4751c.0331.2172.0843.4344.1174.6354.2015 1.103.4031 2.1061.7726 2.8583l.1516.568c.0506.2173.1342.485.2185.5519.8568.7521 2.1674 1.8714 3.5785 2.9419a.1775.1775 0 0 0 .2185 0s0 .0162.0168.0162a.1528.1528 0 0 0 .118.0506.1912.1912 0 0 0 .1341-.0506c1.798-1.9887 3.1418-3.6267 4.0997-4.9974.0674-.0668.0843-.1673.0843-.251.0668-.0668.1173-.1504.1847-.2004.0668-.0668.0668-.184 0-.2346l-.0168-.0163c0-.033-.0169-.0836-.0506-.1005-.42-.4007-.722-.6848-1.0416-.9856A93.5546 93.5546 0 0 1 6.822 1.9876c-.0169-.0169-.0337-.0337-.0674-.0337-.3358-.1168-1.0248-.2341-1.8817-.3845C3.596 1.3527 1.865 1.0519.3027.583c0 0-.1011 0-.118.0169L.1348.6505C.0498.7139.0222.7058 0 .7167.017.8172.017.884.0506 1.0013c0 .0331.0673.3009.0673.334zm7.1909 4.7802-.0337.0337a.0362.0362 0 0 1 .0337-.0337zM6.553 2.238c.101.1005.5211.5019.6216.5855-.4369-.201-1.5284-.7022-2.0333-.8695.5043.1005 1.1933.201 1.4117.284ZM.7901 1.4027c.2521.4344.4537 1.9388.6553 3.4095-.118-.4682-.2016-.9357-.3027-1.3708C.9917 2.673.84 1.9876.6385 1.3858c.1232 0 .1516.0212.1516.0169zm-.2858-.3683c0-.0162 0-.033-.0169-.033.0843 0 .1342.0168.2016.0499.0006.0057-.1448-.0169-.1847-.0169zM23.6738.8172c.0169-.0662-.3358-.367-.2184-.3845.2527-.0163.2527-.4008 0-.4008-.3358.0169-.6884.0999-1.008.1504-.5878.1168-1.1926.2341-1.781.3671-1.327.2846-2.6375.5855-3.9481.937-.4032.1167-.857.2003-1.2432.4007-.1348.0668-.118.2004-.0506.284-.0337.0169-.0505.0169-.0842.0337-.1174.0169-.2185.0337-.3358.05-.1011.0168-.1516.1004-.1348.201 0 .0162.0169.0499.0169.0661-.7059.9363-1.4954 1.9226-2.3523 2.9757-.84.9694-1.7306 1.9893-2.6212 3.0424-2.8396 3.3096-6.0487 7.0705-9.5936 10.38a.1613.1613 0 0 0 0 .2341c.0169.0163.0337.0331.0506.0331-.0506.0506-.1011.0843-.1517.1336-.0337.0337-.0505.0668-.0505.1005a.364.364 0 0 0-.0668.0837c-.0674.0667-.0674.1835.0169.234.0667.0662.1847.0662.2346-.0168.0175-.0169.0175-.0337.0337-.0337a.2648.2648 0 0 1 .3701 0c.2016.2178.4032.435.588.6186l-.4201-.3508c-.0674-.0668-.1847-.05-.2347.0168-.068.0662-.0511.1835.0163.234l4.4691 3.7273c.0337.0337.0674.0337.118.0337.0505 0 .0842-.0169.1173-.0506l.101-.0999c.017.0163.05.0163.0669.0163.0505 0 .0842-.0163.118-.05 6.0486-6.0505 10.9216-10.6141 16.4997-14.6927.05-.0331.0668-.1.0668-.1505.0674 0 .118-.05.151-.1167 1.0254-3.1255 1.227-5.9007 1.2938-7.2709 0-.0579.0169-.0371.0169-.0668.0168-.0337.0168-.0505.0168-.0505a.9784.9784 0 0 0-.0668-.6186zm-10.82 4.9144c.2684-.3008.5374-.6186.8064-.9026-1.7306 2.2734-4.6033 5.7665-8.67 9.9288C7.7626 11.699 10.5517 8.54 12.854 5.7316ZM5.1414 23.4662c-.0162-.0168-.0162-.0168 0-.0168zm2.5033-2.156c.1348-.1505.2695-.284.4206-.4345 0 0 0 .0163.0168.0163-.2236.1978-.4334.4182-.4374.4182zm.6896-.6686c.0994-.0993.14-.1724.2852-.3177.9917-1.0193 2.0164-2.0393 3.058-3.0755l.0169-.0168c.2521-.2004.5542-.4177.8232-.6186a228.0627 228.0627 0 0 0-4.1833 4.0286zm6.5187-16.732c-.5543.719-1.1759 1.6716-1.697 2.4238-1.6463 2.3733-6.9393 8.1735-7.0566 8.274A1189.6473 1189.6473 0 0 1 1.26 19.204l-.1005.1005c-.0843-.1005-.0843-.251.0168-.3346 7.476-7.0037 12.0132-12.837 13.845-15.3944-.0506.1167-.0843.2166-.1685.334zm2.9064 3.4269c-.6716-.3851-.9905-.9869-.8064-1.5712l.0506-.201a.7753.7753 0 0 1 .0842-.1666c.1848-.301.4538-.5518.7564-.7023.0163 0 .0331 0 .05-.0168-.0169-.0337-.0169-.0837-.0169-.1336.0169-.1005.0843-.1673.2016-.1673.2016 0 .8238.1841 1.059.3845.0669.05.1343.1168.2017.1836.0842.1004.2184.2677.2852.4013.0337.0169.0674.1841.118.2678.0336.1336.0667.284.0505.4176-.0169.0169 0 .1167-.0169.1167a1.6055 1.6055 0 0 1-.2184.6186c-.0307.0307.0064.0119-.0505.0668-.0843.1342-.2016.251-.319.3346-.3869.2672-.8238.3508-1.2606.234-.1105-.0473-.1672-.0667-.1685-.0667zm4.3692 1.4039c0 .0168-.0168.0499 0 .0667-.0337 0-.0505.0169-.0842.0337-1.3274.9689-2.6212 1.9888-3.915 3.0256 1.109-.9868 2.218-1.9894 3.3776-2.9756.3358-.3009.5711-.6854.6379-1.1199l.1685-1.003v-.0332c.0842-.201.4032-.1173.3526.1-.0042-.0012-.1731.795-.5374 1.9057z" }) + ] + } + ); +}); + +exports.default = SiExcalidraw; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.d.ts new file mode 100644 index 000000000..a94e59ad3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6965DB"; +declare const SiExcalidraw: IconType; +export { SiExcalidraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.mjs new file mode 100644 index 000000000..98b09f859 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExcalidraw.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6965DB"; +const SiExcalidraw = React.forwardRef(function SiExcalidraw2({ title = "Excalidraw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9428 19.8058a.1962.1962 0 0 0-.1679-.0337c-1.26-1.8552-2.8727-3.6104-4.4186-5.3152l-.2521-.284c-.0016-.0732-.0667-.1207-.1342-.1504-.0284-.0277-.0562-.0558-.0843-.0837-.0505-.1005-.1685-.1673-.2858-.1005-.4706.2347-.9068.5855-1.3274.9195-.5536.4345-1.1085.8695-1.6296 1.354a5.0577 5.0577 0 0 0-.5879.6185c-.0842.1168-.0168.2172.0843.2672-.3701.3677-.7402.736-1.109 1.1198a.1896.1896 0 0 0-.0506.1342c0 .05.0337.1.0668.1168l.6559.5012v.0169c.9237.9194 2.5538 2.1729 4.2844 3.5268.2515.201.5205.4014.7727.6017.1173.1342.2346.2847.3357.4182.0506.0662.1685.0837.2353.0331.0337.0337.0843.0668.118.1005a.2395.2395 0 0 0 .1004.0337.1534.1534 0 0 0 .1348-.0668.2371.2371 0 0 0 .0331-.1004c.0175 0 .0169.0168.0337.0168a.1915.1915 0 0 0 .1348-.0505l3.058-3.3265c.1198-.1159.0135-.2668-.0005-.2672zm-7.6277-.1336-1.5459-1.1704-.151-.0998c-.0337-.0169-.0674-.0506-.1011-.0668l-.1174-.1005c.6597-.659 1.3297-1.3074 1.9996-1.9557-.4874.4844-1.4622 1.9057-1.2606 2.3733.0023 0 .0186.0419.0674.0842.3704.311.7398.6232 1.109.9357zm4.0997 3.1261-1.277-.97a26.9056 26.9056 0 0 0-1.5795-1.5044c.689.5181 1.2769.9694 1.3611 1.053.6722.585.6379.485 1.0922.8696l.5542.4008c-.0735.103-.151.1477-.151.151zm.3357.2503-.0337-.0168c.0506-.0331.1011-.0668.1517-.1168zM.5885 3.4751c.0331.2172.0843.4344.1174.6354.2015 1.103.4031 2.1061.7726 2.8583l.1516.568c.0506.2173.1342.485.2185.5519.8568.7521 2.1674 1.8714 3.5785 2.9419a.1775.1775 0 0 0 .2185 0s0 .0162.0168.0162a.1528.1528 0 0 0 .118.0506.1912.1912 0 0 0 .1341-.0506c1.798-1.9887 3.1418-3.6267 4.0997-4.9974.0674-.0668.0843-.1673.0843-.251.0668-.0668.1173-.1504.1847-.2004.0668-.0668.0668-.184 0-.2346l-.0168-.0163c0-.033-.0169-.0836-.0506-.1005-.42-.4007-.722-.6848-1.0416-.9856A93.5546 93.5546 0 0 1 6.822 1.9876c-.0169-.0169-.0337-.0337-.0674-.0337-.3358-.1168-1.0248-.2341-1.8817-.3845C3.596 1.3527 1.865 1.0519.3027.583c0 0-.1011 0-.118.0169L.1348.6505C.0498.7139.0222.7058 0 .7167.017.8172.017.884.0506 1.0013c0 .0331.0673.3009.0673.334zm7.1909 4.7802-.0337.0337a.0362.0362 0 0 1 .0337-.0337zM6.553 2.238c.101.1005.5211.5019.6216.5855-.4369-.201-1.5284-.7022-2.0333-.8695.5043.1005 1.1933.201 1.4117.284ZM.7901 1.4027c.2521.4344.4537 1.9388.6553 3.4095-.118-.4682-.2016-.9357-.3027-1.3708C.9917 2.673.84 1.9876.6385 1.3858c.1232 0 .1516.0212.1516.0169zm-.2858-.3683c0-.0162 0-.033-.0169-.033.0843 0 .1342.0168.2016.0499.0006.0057-.1448-.0169-.1847-.0169zM23.6738.8172c.0169-.0662-.3358-.367-.2184-.3845.2527-.0163.2527-.4008 0-.4008-.3358.0169-.6884.0999-1.008.1504-.5878.1168-1.1926.2341-1.781.3671-1.327.2846-2.6375.5855-3.9481.937-.4032.1167-.857.2003-1.2432.4007-.1348.0668-.118.2004-.0506.284-.0337.0169-.0505.0169-.0842.0337-.1174.0169-.2185.0337-.3358.05-.1011.0168-.1516.1004-.1348.201 0 .0162.0169.0499.0169.0661-.7059.9363-1.4954 1.9226-2.3523 2.9757-.84.9694-1.7306 1.9893-2.6212 3.0424-2.8396 3.3096-6.0487 7.0705-9.5936 10.38a.1613.1613 0 0 0 0 .2341c.0169.0163.0337.0331.0506.0331-.0506.0506-.1011.0843-.1517.1336-.0337.0337-.0505.0668-.0505.1005a.364.364 0 0 0-.0668.0837c-.0674.0667-.0674.1835.0169.234.0667.0662.1847.0662.2346-.0168.0175-.0169.0175-.0337.0337-.0337a.2648.2648 0 0 1 .3701 0c.2016.2178.4032.435.588.6186l-.4201-.3508c-.0674-.0668-.1847-.05-.2347.0168-.068.0662-.0511.1835.0163.234l4.4691 3.7273c.0337.0337.0674.0337.118.0337.0505 0 .0842-.0169.1173-.0506l.101-.0999c.017.0163.05.0163.0669.0163.0505 0 .0842-.0163.118-.05 6.0486-6.0505 10.9216-10.6141 16.4997-14.6927.05-.0331.0668-.1.0668-.1505.0674 0 .118-.05.151-.1167 1.0254-3.1255 1.227-5.9007 1.2938-7.2709 0-.0579.0169-.0371.0169-.0668.0168-.0337.0168-.0505.0168-.0505a.9784.9784 0 0 0-.0668-.6186zm-10.82 4.9144c.2684-.3008.5374-.6186.8064-.9026-1.7306 2.2734-4.6033 5.7665-8.67 9.9288C7.7626 11.699 10.5517 8.54 12.854 5.7316ZM5.1414 23.4662c-.0162-.0168-.0162-.0168 0-.0168zm2.5033-2.156c.1348-.1505.2695-.284.4206-.4345 0 0 0 .0163.0168.0163-.2236.1978-.4334.4182-.4374.4182zm.6896-.6686c.0994-.0993.14-.1724.2852-.3177.9917-1.0193 2.0164-2.0393 3.058-3.0755l.0169-.0168c.2521-.2004.5542-.4177.8232-.6186a228.0627 228.0627 0 0 0-4.1833 4.0286zm6.5187-16.732c-.5543.719-1.1759 1.6716-1.697 2.4238-1.6463 2.3733-6.9393 8.1735-7.0566 8.274A1189.6473 1189.6473 0 0 1 1.26 19.204l-.1005.1005c-.0843-.1005-.0843-.251.0168-.3346 7.476-7.0037 12.0132-12.837 13.845-15.3944-.0506.1167-.0843.2166-.1685.334zm2.9064 3.4269c-.6716-.3851-.9905-.9869-.8064-1.5712l.0506-.201a.7753.7753 0 0 1 .0842-.1666c.1848-.301.4538-.5518.7564-.7023.0163 0 .0331 0 .05-.0168-.0169-.0337-.0169-.0837-.0169-.1336.0169-.1005.0843-.1673.2016-.1673.2016 0 .8238.1841 1.059.3845.0669.05.1343.1168.2017.1836.0842.1004.2184.2677.2852.4013.0337.0169.0674.1841.118.2678.0336.1336.0667.284.0505.4176-.0169.0169 0 .1167-.0169.1167a1.6055 1.6055 0 0 1-.2184.6186c-.0307.0307.0064.0119-.0505.0668-.0843.1342-.2016.251-.319.3346-.3869.2672-.8238.3508-1.2606.234-.1105-.0473-.1672-.0667-.1685-.0667zm4.3692 1.4039c0 .0168-.0168.0499 0 .0667-.0337 0-.0505.0169-.0842.0337-1.3274.9689-2.6212 1.9888-3.915 3.0256 1.109-.9868 2.218-1.9894 3.3776-2.9756.3358-.3009.5711-.6854.6379-1.1199l.1685-1.003v-.0332c.0842-.201.4032-.1173.3526.1-.0042-.0012-.1731.795-.5374 1.9057z" }) + ] + } + ); +}); + +export { SiExcalidraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.cjs new file mode 100644 index 000000000..428abea14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009CAB"; +const SiExercism = React__namespace.forwardRef(function SiExercism2({ title = "Exercism", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.35 1.66c-.959 0-1.686.298-2.181.893-.496.595-.744 1.464-.744 2.605v3.474c0 .805-.086 1.424-.259 1.858-.173.434-.493.84-.96 1.218-.138.113-.206.206-.206.278 0 .072.068.165.205.277.476.386.798.794.967 1.225.17.43.253 1.047.253 1.851v3.462c0 1.15.25 2.023.75 2.618.5.595 1.224.892 2.174.892h.882c.379 0 .618-.018.72-.054.1-.036.15-.127.15-.271 0-.201-.133-.334-.399-.398l-.483-.109c-1.063-.241-1.595-1.29-1.595-3.148v-3.293c0-1.247-.302-2.127-.906-2.642l-.23-.193c-.112-.096-.168-.169-.168-.217 0-.056.056-.129.169-.217l.23-.193c.603-.515.905-1.395.905-2.642V5.641c0-1.11.135-1.88.405-2.31.27-.43.832-.762 1.685-.995.258-.073.387-.19.387-.35 0-.217-.29-.326-.87-.326zm14.419.029c-.58 0-.87.108-.87.325 0 .161.128.278.386.35.854.233 1.416.565 1.686.995.27.43.405 1.2.405 2.31v3.294c0 1.246.302 2.126.906 2.641l.229.193c.113.089.17.161.17.217 0 .049-.057.121-.17.217l-.23.193c-.603.515-.905 1.396-.905 2.642v3.293c0 1.858-.532 2.907-1.595 3.149l-.484.108c-.266.064-.398.197-.398.398 0 .145.05.235.15.272.102.036.341.054.72.054h.882c.95 0 1.675-.298 2.174-.893.5-.595.75-1.467.75-2.617v-3.462c0-.805.084-1.422.253-1.852.17-.43.491-.838.967-1.224.137-.113.205-.205.205-.278 0-.072-.068-.165-.205-.277-.468-.378-.788-.784-.961-1.218-.173-.435-.26-1.054-.26-1.858V5.187c0-1.142-.247-2.01-.743-2.606-.495-.595-1.222-.892-2.18-.892zM7.683 9.735c-1.456 0-2.64 1.111-2.64 2.478h1.02c0-.838.727-1.52 1.62-1.52.892 0 1.619.682 1.619 1.52h1.02c0-1.367-1.183-2.478-2.64-2.478zm8.406 0c-1.456 0-2.639 1.111-2.639 2.478h1.02c0-.838.727-1.52 1.62-1.52.892 0 1.62.682 1.62 1.52h1.02c0-1.367-1.185-2.478-2.64-2.478zM9.71 14.36v.561c0 1.277 1.062 2.316 2.366 2.316 1.305 0 2.367-1.039 2.367-2.316v-.56h-.934v.56c0 .877-.76 1.426-1.433 1.426s-1.48-.273-1.48-1.426v-.56z" }) + ] + } + ); +}); + +exports.default = SiExercism; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.d.ts new file mode 100644 index 000000000..471269ed6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009CAB"; +declare const SiExercism: IconType; +export { SiExercism as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.mjs new file mode 100644 index 000000000..67918abdd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExercism.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009CAB"; +const SiExercism = React.forwardRef(function SiExercism2({ title = "Exercism", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.35 1.66c-.959 0-1.686.298-2.181.893-.496.595-.744 1.464-.744 2.605v3.474c0 .805-.086 1.424-.259 1.858-.173.434-.493.84-.96 1.218-.138.113-.206.206-.206.278 0 .072.068.165.205.277.476.386.798.794.967 1.225.17.43.253 1.047.253 1.851v3.462c0 1.15.25 2.023.75 2.618.5.595 1.224.892 2.174.892h.882c.379 0 .618-.018.72-.054.1-.036.15-.127.15-.271 0-.201-.133-.334-.399-.398l-.483-.109c-1.063-.241-1.595-1.29-1.595-3.148v-3.293c0-1.247-.302-2.127-.906-2.642l-.23-.193c-.112-.096-.168-.169-.168-.217 0-.056.056-.129.169-.217l.23-.193c.603-.515.905-1.395.905-2.642V5.641c0-1.11.135-1.88.405-2.31.27-.43.832-.762 1.685-.995.258-.073.387-.19.387-.35 0-.217-.29-.326-.87-.326zm14.419.029c-.58 0-.87.108-.87.325 0 .161.128.278.386.35.854.233 1.416.565 1.686.995.27.43.405 1.2.405 2.31v3.294c0 1.246.302 2.126.906 2.641l.229.193c.113.089.17.161.17.217 0 .049-.057.121-.17.217l-.23.193c-.603.515-.905 1.396-.905 2.642v3.293c0 1.858-.532 2.907-1.595 3.149l-.484.108c-.266.064-.398.197-.398.398 0 .145.05.235.15.272.102.036.341.054.72.054h.882c.95 0 1.675-.298 2.174-.893.5-.595.75-1.467.75-2.617v-3.462c0-.805.084-1.422.253-1.852.17-.43.491-.838.967-1.224.137-.113.205-.205.205-.278 0-.072-.068-.165-.205-.277-.468-.378-.788-.784-.961-1.218-.173-.435-.26-1.054-.26-1.858V5.187c0-1.142-.247-2.01-.743-2.606-.495-.595-1.222-.892-2.18-.892zM7.683 9.735c-1.456 0-2.64 1.111-2.64 2.478h1.02c0-.838.727-1.52 1.62-1.52.892 0 1.619.682 1.619 1.52h1.02c0-1.367-1.183-2.478-2.64-2.478zm8.406 0c-1.456 0-2.639 1.111-2.639 2.478h1.02c0-.838.727-1.52 1.62-1.52.892 0 1.62.682 1.62 1.52h1.02c0-1.367-1.185-2.478-2.64-2.478zM9.71 14.36v.561c0 1.277 1.062 2.316 2.366 2.316 1.305 0 2.367-1.039 2.367-2.316v-.56h-.934v.56c0 .877-.76 1.426-1.433 1.426s-1.48-.273-1.48-1.426v-.56z" }) + ] + } + ); +}); + +export { SiExercism as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.cjs new file mode 100644 index 000000000..c413cb188 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DAA449"; +const SiExordo = React__namespace.forwardRef(function SiExordo2({ title = "Exordo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 00-5.514 1.342l2.01 14.062 2.033-5.281a.375.375 0 01.334-.24.375.375 0 01.15.023.375.375 0 01.217.487L9.64 14.529 18.95 2.22a12 12 0 00-3.853-1.81l-.844 2.327-.318.828a.375.375 0 01-.485.215.375.375 0 01-.215-.484l.315-.822.812-2.239A12 12 0 0012 0zM5.785 1.736a12 12 0 00-5.691 8.762l.699.49a.375.375 0 01.09.524.375.375 0 01-.522.09l-.343-.243A12 12 0 000 12a12 12 0 001.129 5.078.375.375 0 01.21-.084l6.05-.422-5.213-3.693a.375.375 0 01-.088-.524.375.375 0 01.28-.158.375.375 0 01.243.069l5.205 3.691-2.03-14.22zm13.764.934L9.275 16.252l10.037-2.57-.126-.493a.375.375 0 01.27-.455.375.375 0 01.075-.011.375.375 0 01.38.279l.128.492 3.951-1.012A12 12 0 0024 12a12 12 0 00-4.451-9.33zm-7.48 1.607a.375.375 0 01.156.024l.826.316.826.315a.375.375 0 01.217.484.375.375 0 01-.485.215l-.826-.315-.828-.314a.375.375 0 01-.217-.484.375.375 0 01.33-.24zm.13 2.13a.375.375 0 01.155.023.375.375 0 01.214.484l-.271.711.389.148a.375.375 0 01.216.485.375.375 0 01-.482.217l-.393-.149-.091.238a.375.375 0 01-.485.215.375.375 0 01-.215-.484l.09-.236-.56-.215a.375.375 0 01-.217-.485.375.375 0 01.33-.24.375.375 0 01.154.024l.56.214.276-.71a.375.375 0 01.33-.24zm11.733 6.864l-3.705.95.127.49a.375.375 0 01-.27.459.375.375 0 01-.457-.27l-.127-.494-9.785 2.506 4.91 1.502a.375.375 0 01.248.467.375.375 0 01-.469.25l-4.922-1.504 1.032 1.17a.375.375 0 01-.034.53.375.375 0 01-.529-.034l-1.328-1.51-.52 5.567A12 12 0 0012 24a12 12 0 002.07-.18l-2.441-2.636-.303.265a.375.375 0 01-.53-.035.375.375 0 01.036-.53l.295-.257-.313-.354a.375.375 0 01.034-.529.375.375 0 01.252-.094.375.375 0 01.277.127l.312.354.383-.334a.375.375 0 01.252-.094.375.375 0 01.278.129.375.375 0 01-.036.53l-.373.327 2.729 2.95a12 12 0 005.164-2.772l-3.264-.998a.375.375 0 01-.25-.469.375.375 0 01.367-.265.375.375 0 01.102.017l3.654 1.118a12 12 0 003.237-6.999zM7.465 17.34l-5.912.562a12 12 0 002.728 3.285l.358-.427a.375.375 0 01.273-.137.375.375 0 01.256.086.375.375 0 01.049.527l-.344.416a12 12 0 002.5 1.418l.467-5.01-.559.678a.375.375 0 01-.527.051.375.375 0 01-.05-.527l.76-.922zm-2.541 1.88a.375.375 0 01.254.087l.681.562.684.563a.375.375 0 01.05.529.375.375 0 01-.529.05l-.681-.564-.682-.562a.375.375 0 01-.05-.528.375.375 0 01.273-.136Z" }) + ] + } + ); +}); + +exports.default = SiExordo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.d.ts new file mode 100644 index 000000000..794136bd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DAA449"; +declare const SiExordo: IconType; +export { SiExordo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.mjs new file mode 100644 index 000000000..68b6632c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExordo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DAA449"; +const SiExordo = React.forwardRef(function SiExordo2({ title = "Exordo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 00-5.514 1.342l2.01 14.062 2.033-5.281a.375.375 0 01.334-.24.375.375 0 01.15.023.375.375 0 01.217.487L9.64 14.529 18.95 2.22a12 12 0 00-3.853-1.81l-.844 2.327-.318.828a.375.375 0 01-.485.215.375.375 0 01-.215-.484l.315-.822.812-2.239A12 12 0 0012 0zM5.785 1.736a12 12 0 00-5.691 8.762l.699.49a.375.375 0 01.09.524.375.375 0 01-.522.09l-.343-.243A12 12 0 000 12a12 12 0 001.129 5.078.375.375 0 01.21-.084l6.05-.422-5.213-3.693a.375.375 0 01-.088-.524.375.375 0 01.28-.158.375.375 0 01.243.069l5.205 3.691-2.03-14.22zm13.764.934L9.275 16.252l10.037-2.57-.126-.493a.375.375 0 01.27-.455.375.375 0 01.075-.011.375.375 0 01.38.279l.128.492 3.951-1.012A12 12 0 0024 12a12 12 0 00-4.451-9.33zm-7.48 1.607a.375.375 0 01.156.024l.826.316.826.315a.375.375 0 01.217.484.375.375 0 01-.485.215l-.826-.315-.828-.314a.375.375 0 01-.217-.484.375.375 0 01.33-.24zm.13 2.13a.375.375 0 01.155.023.375.375 0 01.214.484l-.271.711.389.148a.375.375 0 01.216.485.375.375 0 01-.482.217l-.393-.149-.091.238a.375.375 0 01-.485.215.375.375 0 01-.215-.484l.09-.236-.56-.215a.375.375 0 01-.217-.485.375.375 0 01.33-.24.375.375 0 01.154.024l.56.214.276-.71a.375.375 0 01.33-.24zm11.733 6.864l-3.705.95.127.49a.375.375 0 01-.27.459.375.375 0 01-.457-.27l-.127-.494-9.785 2.506 4.91 1.502a.375.375 0 01.248.467.375.375 0 01-.469.25l-4.922-1.504 1.032 1.17a.375.375 0 01-.034.53.375.375 0 01-.529-.034l-1.328-1.51-.52 5.567A12 12 0 0012 24a12 12 0 002.07-.18l-2.441-2.636-.303.265a.375.375 0 01-.53-.035.375.375 0 01.036-.53l.295-.257-.313-.354a.375.375 0 01.034-.529.375.375 0 01.252-.094.375.375 0 01.277.127l.312.354.383-.334a.375.375 0 01.252-.094.375.375 0 01.278.129.375.375 0 01-.036.53l-.373.327 2.729 2.95a12 12 0 005.164-2.772l-3.264-.998a.375.375 0 01-.25-.469.375.375 0 01.367-.265.375.375 0 01.102.017l3.654 1.118a12 12 0 003.237-6.999zM7.465 17.34l-5.912.562a12 12 0 002.728 3.285l.358-.427a.375.375 0 01.273-.137.375.375 0 01.256.086.375.375 0 01.049.527l-.344.416a12 12 0 002.5 1.418l.467-5.01-.559.678a.375.375 0 01-.527.051.375.375 0 01-.05-.527l.76-.922zm-2.541 1.88a.375.375 0 01.254.087l.681.562.684.563a.375.375 0 01.05.529.375.375 0 01-.529.05l-.681-.564-.682-.562a.375.375 0 01-.05-.528.375.375 0 01.273-.136Z" }) + ] + } + ); +}); + +export { SiExordo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.cjs new file mode 100644 index 000000000..f3e4201f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA291C"; +const SiExoscale = React__namespace.forwardRef(function SiExoscale2({ title = "Exoscale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1.608 0 22.392h1.665L12 4.593v2.929l-8.612 14.87H5.11L12 10.507v2.986l-5.167 8.9h1.722L12 16.477v2.929l-1.722 2.985H24Z" }) + ] + } + ); +}); + +exports.default = SiExoscale; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.d.ts new file mode 100644 index 000000000..5c29304af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA291C"; +declare const SiExoscale: IconType; +export { SiExoscale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.mjs new file mode 100644 index 000000000..d629fa7d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExoscale.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA291C"; +const SiExoscale = React.forwardRef(function SiExoscale2({ title = "Exoscale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 1.608 0 22.392h1.665L12 4.593v2.929l-8.612 14.87H5.11L12 10.507v2.986l-5.167 8.9h1.722L12 16.477v2.929l-1.722 2.985H24Z" }) + ] + } + ); +}); + +export { SiExoscale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.cjs new file mode 100644 index 000000000..f40506a7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#191E3B"; +const SiExpedia = React__namespace.forwardRef(function SiExpedia2({ title = "Expedia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.067 0H4.933A4.94 4.94 0 0 0 0 4.933v14.134A4.932 4.932 0 0 0 4.933 24h14.134A4.932 4.932 0 0 0 24 19.067V4.933C24.01 2.213 21.797 0 19.067 0ZM7.336 19.341c0 .19-.148.337-.337.337h-2.33a.333.333 0 0 1-.337-.337v-2.33c0-.189.148-.336.337-.336H7c.19 0 .337.147.337.337zm12.121-1.486-2.308 2.298c-.169.168-.422.053-.422-.2V9.57l-6.44 6.44a.533.533 0 0 1-.421.17H8.169a.32.32 0 0 1-.338-.338v-1.697c0-.2.053-.316.169-.422l6.44-6.44H4.058c-.253 0-.369-.253-.2-.421l2.297-2.309c.137-.137.285-.232.517-.232H18.15c.854 0 1.539.686 1.539 1.54v11.478c-.01.231-.095.368-.232.516z" }) + ] + } + ); +}); + +exports.default = SiExpedia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.d.ts new file mode 100644 index 000000000..e9a216d85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#191E3B"; +declare const SiExpedia: IconType; +export { SiExpedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.mjs new file mode 100644 index 000000000..c6c8c72b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpedia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#191E3B"; +const SiExpedia = React.forwardRef(function SiExpedia2({ title = "Expedia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.067 0H4.933A4.94 4.94 0 0 0 0 4.933v14.134A4.932 4.932 0 0 0 4.933 24h14.134A4.932 4.932 0 0 0 24 19.067V4.933C24.01 2.213 21.797 0 19.067 0ZM7.336 19.341c0 .19-.148.337-.337.337h-2.33a.333.333 0 0 1-.337-.337v-2.33c0-.189.148-.336.337-.336H7c.19 0 .337.147.337.337zm12.121-1.486-2.308 2.298c-.169.168-.422.053-.422-.2V9.57l-6.44 6.44a.533.533 0 0 1-.421.17H8.169a.32.32 0 0 1-.338-.338v-1.697c0-.2.053-.316.169-.422l6.44-6.44H4.058c-.253 0-.369-.253-.2-.421l2.297-2.309c.137-.137.285-.232.517-.232H18.15c.854 0 1.539.686 1.539 1.54v11.478c-.01.231-.095.368-.232.516z" }) + ] + } + ); +}); + +export { SiExpedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.cjs new file mode 100644 index 000000000..b2f8a76a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0185FF"; +const SiExpensify = React__namespace.forwardRef(function SiExpensify2({ title = "Expensify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.16 17.52h7.68v-2.28h-4.872v-2.136h4.152v-2.328h-4.152v-2.04h4.872V6.48H8.16v11.04z M21.6 12a9.608 9.608 0 01-2.16 6.072l1.704 1.704A11.958 11.958 0 0024 12c0-2.928-1.056-5.616-2.784-7.68l-1.704 1.704A9.61 9.61 0 0121.6 12z M18.072 19.44a9.608 9.608 0 01-12.048.072L4.32 21.216A11.913 11.913 0 0012 24c2.976 0 5.688-1.08 7.776-2.856l-1.704-1.704z M4.632 18.168A9.613 9.613 0 012.4 12c0-5.304 4.296-9.6 9.6-9.6 2.352 0 4.488.84 6.168 2.232l1.704-1.704A12.02 12.02 0 0012 0C5.376 0 0 5.376 0 12c0 3 1.104 5.76 2.928 7.872l1.704-1.704z" }) + ] + } + ); +}); + +exports.default = SiExpensify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.d.ts new file mode 100644 index 000000000..ac6ec1cc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0185FF"; +declare const SiExpensify: IconType; +export { SiExpensify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.mjs new file mode 100644 index 000000000..1760d937d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpensify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0185FF"; +const SiExpensify = React.forwardRef(function SiExpensify2({ title = "Expensify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.16 17.52h7.68v-2.28h-4.872v-2.136h4.152v-2.328h-4.152v-2.04h4.872V6.48H8.16v11.04z M21.6 12a9.608 9.608 0 01-2.16 6.072l1.704 1.704A11.958 11.958 0 0024 12c0-2.928-1.056-5.616-2.784-7.68l-1.704 1.704A9.61 9.61 0 0121.6 12z M18.072 19.44a9.608 9.608 0 01-12.048.072L4.32 21.216A11.913 11.913 0 0012 24c2.976 0 5.688-1.08 7.776-2.856l-1.704-1.704z M4.632 18.168A9.613 9.613 0 012.4 12c0-5.304 4.296-9.6 9.6-9.6 2.352 0 4.488.84 6.168 2.232l1.704-1.704A12.02 12.02 0 0012 0C5.376 0 0 5.376 0 12c0 3 1.104 5.76 2.928 7.872l1.704-1.704z" }) + ] + } + ); +}); + +export { SiExpensify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.cjs new file mode 100644 index 000000000..b72d21e2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AAE7"; +const SiExpertsexchange = React__namespace.forwardRef(function SiExpertsexchange2({ title = "Experts Exchange", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.28.9H0L8.36 12 0 23.1h7.28L15.64 12zM24 .9h-7.28l-2.3 3.06 3.64 4.82zM14.42 20.05l2.3 3.05H24l-5.94-7.88z" }) + ] + } + ); +}); + +exports.default = SiExpertsexchange; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.d.ts new file mode 100644 index 000000000..3e0e95112 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AAE7"; +declare const SiExpertsexchange: IconType; +export { SiExpertsexchange as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.mjs new file mode 100644 index 000000000..8482a65ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpertsexchange.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AAE7"; +const SiExpertsexchange = React.forwardRef(function SiExpertsexchange2({ title = "Experts Exchange", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.28.9H0L8.36 12 0 23.1h7.28L15.64 12zM24 .9h-7.28l-2.3 3.06 3.64 4.82zM14.42 20.05l2.3 3.05H24l-5.94-7.88z" }) + ] + } + ); +}); + +export { SiExpertsexchange as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.cjs new file mode 100644 index 000000000..310127bdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C2024"; +const SiExpo = React__namespace.forwardRef(function SiExpo2({ title = "Expo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 20.084c.043.53.23 1.063.718 1.778.58.849 1.576 1.315 2.303.567.49-.505 5.794-9.776 8.35-13.29a.761.761 0 011.248 0c2.556 3.514 7.86 12.785 8.35 13.29.727.748 1.723.282 2.303-.567.57-.835.728-1.42.728-2.046 0-.426-8.26-15.798-9.092-17.078-.8-1.23-1.044-1.498-2.397-1.542h-1.032c-1.353.044-1.597.311-2.398 1.542C8.267 3.991.33 18.758 0 19.77Z" }) + ] + } + ); +}); + +exports.default = SiExpo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.d.ts new file mode 100644 index 000000000..7f29e9cea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C2024"; +declare const SiExpo: IconType; +export { SiExpo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.mjs new file mode 100644 index 000000000..6aa4aad06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C2024"; +const SiExpo = React.forwardRef(function SiExpo2({ title = "Expo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 20.084c.043.53.23 1.063.718 1.778.58.849 1.576 1.315 2.303.567.49-.505 5.794-9.776 8.35-13.29a.761.761 0 011.248 0c2.556 3.514 7.86 12.785 8.35 13.29.727.748 1.723.282 2.303-.567.57-.835.728-1.42.728-2.046 0-.426-8.26-15.798-9.092-17.078-.8-1.23-1.044-1.498-2.397-1.542h-1.032c-1.353.044-1.597.311-2.398 1.542C8.267 3.991.33 18.758 0 19.77Z" }) + ] + } + ); +}); + +export { SiExpo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.cjs new file mode 100644 index 000000000..57520fa35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiExpress = React__namespace.forwardRef(function SiExpress2({ title = "Express", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 18.588a1.529 1.529 0 01-1.895-.72l-3.45-4.771-.5-.667-4.003 5.444a1.466 1.466 0 01-1.802.708l5.158-6.92-4.798-6.251a1.595 1.595 0 011.9.666l3.576 4.83 3.596-4.81a1.435 1.435 0 011.788-.668L21.708 7.9l-2.522 3.283a.666.666 0 000 .994l4.804 6.412zM.002 11.576l.42-2.075c1.154-4.103 5.858-5.81 9.094-3.27 1.895 1.489 2.368 3.597 2.275 5.973H1.116C.943 16.447 4.005 19.009 7.92 17.7a4.078 4.078 0 002.582-2.876c.207-.666.548-.78 1.174-.588a5.417 5.417 0 01-2.589 3.957 6.272 6.272 0 01-7.306-.933 6.575 6.575 0 01-1.64-3.858c0-.235-.08-.455-.134-.666A88.33 88.33 0 010 11.577zm1.127-.286h9.654c-.06-3.076-2.001-5.258-4.59-5.278-2.882-.04-4.944 2.094-5.071 5.264z" }) + ] + } + ); +}); + +exports.default = SiExpress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.d.ts new file mode 100644 index 000000000..e3aeb270a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiExpress: IconType; +export { SiExpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.mjs new file mode 100644 index 000000000..7d1f7f45b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiExpress = React.forwardRef(function SiExpress2({ title = "Express", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 18.588a1.529 1.529 0 01-1.895-.72l-3.45-4.771-.5-.667-4.003 5.444a1.466 1.466 0 01-1.802.708l5.158-6.92-4.798-6.251a1.595 1.595 0 011.9.666l3.576 4.83 3.596-4.81a1.435 1.435 0 011.788-.668L21.708 7.9l-2.522 3.283a.666.666 0 000 .994l4.804 6.412zM.002 11.576l.42-2.075c1.154-4.103 5.858-5.81 9.094-3.27 1.895 1.489 2.368 3.597 2.275 5.973H1.116C.943 16.447 4.005 19.009 7.92 17.7a4.078 4.078 0 002.582-2.876c.207-.666.548-.78 1.174-.588a5.417 5.417 0 01-2.589 3.957 6.272 6.272 0 01-7.306-.933 6.575 6.575 0 01-1.64-3.858c0-.235-.08-.455-.134-.666A88.33 88.33 0 010 11.577zm1.127-.286h9.654c-.06-3.076-2.001-5.258-4.59-5.278-2.882-.04-4.944 2.094-5.071 5.264z" }) + ] + } + ); +}); + +export { SiExpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.cjs new file mode 100644 index 000000000..6645ff7cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiExpressdotcom = React__namespace.forwardRef(function SiExpressdotcom2({ title = "Express.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.904 10.081c-.774 0-1.484.362-1.484 1.24 0 .536.367.893 1.041 1l.756.123c.27.046.408.139.408.323 0 .316-.44.417-.68.417-.433 0-.734-.169-1.05-.455l-.693.45c.494.54 1.02.74 1.636.74.678 0 1.664-.203 1.664-1.295 0-.694-.597-.92-1.32-1.037l-.348-.057c-.346-.056-.506-.152-.506-.345 0-.235.307-.367.516-.367.382 0 .735.168.974.458l.688-.496c-.409-.454-1-.699-1.602-.699Zm3.494 0c-.775 0-1.484.362-1.484 1.24 0 .536.367.893 1.04 1l.755.123c.27.046.408.139.408.323 0 .316-.437.417-.678.417-.433 0-.735-.169-1.05-.455l-.694.45c.494.54 1.02.74 1.637.74.677 0 1.662-.203 1.662-1.295 0-.694-.596-.92-1.32-1.037l-.346-.057c-.348-.056-.506-.152-.506-.345 0-.235.307-.367.516-.367.382 0 .733.168.972.458l.69-.496c-.408-.454-1.001-.699-1.602-.699ZM0 10.185v3.632h2.824v-.705H.91v-.857h1.646v-.703H.909v-.664h1.765v-.703zm3.285 0 1.2 1.677-1.399 1.955h1.098l.86-1.357.837 1.357h1.11L5.6 11.862l1.194-1.677H5.707l-.658 1.107-.662-1.107Zm3.988 0v3.632h.918v-1.174H8.9c1.244 0 1.513-.745 1.513-1.23 0-.72-.36-1.228-1.34-1.228zm3.386 0v3.632h.908v-1.306h.577l.712 1.306h1.016l-.832-1.459c.454-.132.75-.51.75-.98 0-.816-.499-1.193-1.314-1.193zm3.492 0v3.632h2.824v-.705h-1.918v-.857h1.648v-.703h-1.648v-.664h1.766v-.703zm-5.972.672h.74c.415 0 .586.2.586.562 0 .28-.147.55-.56.55h-.766Zm3.388 0h.83c.291.005.485.153.485.49 0 .336-.194.484-.485.49h-.83z" }) + ] + } + ); +}); + +exports.default = SiExpressdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.d.ts new file mode 100644 index 000000000..399d8a023 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiExpressdotcom: IconType; +export { SiExpressdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.mjs new file mode 100644 index 000000000..55fedc098 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiExpressdotcom = React.forwardRef(function SiExpressdotcom2({ title = "Express.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.904 10.081c-.774 0-1.484.362-1.484 1.24 0 .536.367.893 1.041 1l.756.123c.27.046.408.139.408.323 0 .316-.44.417-.68.417-.433 0-.734-.169-1.05-.455l-.693.45c.494.54 1.02.74 1.636.74.678 0 1.664-.203 1.664-1.295 0-.694-.597-.92-1.32-1.037l-.348-.057c-.346-.056-.506-.152-.506-.345 0-.235.307-.367.516-.367.382 0 .735.168.974.458l.688-.496c-.409-.454-1-.699-1.602-.699Zm3.494 0c-.775 0-1.484.362-1.484 1.24 0 .536.367.893 1.04 1l.755.123c.27.046.408.139.408.323 0 .316-.437.417-.678.417-.433 0-.735-.169-1.05-.455l-.694.45c.494.54 1.02.74 1.637.74.677 0 1.662-.203 1.662-1.295 0-.694-.596-.92-1.32-1.037l-.346-.057c-.348-.056-.506-.152-.506-.345 0-.235.307-.367.516-.367.382 0 .733.168.972.458l.69-.496c-.408-.454-1.001-.699-1.602-.699ZM0 10.185v3.632h2.824v-.705H.91v-.857h1.646v-.703H.909v-.664h1.765v-.703zm3.285 0 1.2 1.677-1.399 1.955h1.098l.86-1.357.837 1.357h1.11L5.6 11.862l1.194-1.677H5.707l-.658 1.107-.662-1.107Zm3.988 0v3.632h.918v-1.174H8.9c1.244 0 1.513-.745 1.513-1.23 0-.72-.36-1.228-1.34-1.228zm3.386 0v3.632h.908v-1.306h.577l.712 1.306h1.016l-.832-1.459c.454-.132.75-.51.75-.98 0-.816-.499-1.193-1.314-1.193zm3.492 0v3.632h2.824v-.705h-1.918v-.857h1.648v-.703h-1.648v-.664h1.766v-.703zm-5.972.672h.74c.415 0 .586.2.586.562 0 .28-.147.55-.56.55h-.766Zm3.388 0h.83c.291.005.485.153.485.49 0 .336-.194.484-.485.49h-.83z" }) + ] + } + ); +}); + +export { SiExpressdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.cjs new file mode 100644 index 000000000..475d90018 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA3940"; +const SiExpressvpn = React__namespace.forwardRef(function SiExpressvpn2({ title = "ExpressVPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.705 2.349a4.874 4.874 0 00-4.39 2.797L6.033 7.893h14.606c.41 0 .692.308.692.668 0 .359-.282.666-.692.666H2.592L0 14.772h2.824c-.796 1.72-1.002 2.567-1.002 3.26 0 2.105 1.72 3.62 4.416 3.62h8.239c1.771 0 3.337-1.412 3.337-3.03 0-1.411-1.206-2.515-2.772-2.515H5.596c-.873 0-1.284-.59-.924-1.335h11.859c4.004 0 7.469-3.029 7.469-6.802 0-3.183-2.618-5.621-6.16-5.621z" }) + ] + } + ); +}); + +exports.default = SiExpressvpn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.d.ts new file mode 100644 index 000000000..c02e6591c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA3940"; +declare const SiExpressvpn: IconType; +export { SiExpressvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.mjs new file mode 100644 index 000000000..d503c446b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiExpressvpn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA3940"; +const SiExpressvpn = React.forwardRef(function SiExpressvpn2({ title = "ExpressVPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.705 2.349a4.874 4.874 0 00-4.39 2.797L6.033 7.893h14.606c.41 0 .692.308.692.668 0 .359-.282.666-.692.666H2.592L0 14.772h2.824c-.796 1.72-1.002 2.567-1.002 3.26 0 2.105 1.72 3.62 4.416 3.62h8.239c1.771 0 3.337-1.412 3.337-3.03 0-1.411-1.206-2.515-2.772-2.515H5.596c-.873 0-1.284-.59-.924-1.335h11.859c4.004 0 7.469-3.029 7.469-6.802 0-3.183-2.618-5.621-6.16-5.621z" }) + ] + } + ); +}); + +export { SiExpressvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.cjs new file mode 100644 index 000000000..32a804178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiEyeem = React__namespace.forwardRef(function SiEyeem2({ title = "EyeEm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.673 9.204v-1.04H0v5.722h3.68v-1.048H1.186V11.46h2.158v-1.017H1.186v-1.24zm2.162 6.633l2.532-5.906h-1.24l-.902 2.357-.91-2.357H4.081l1.546 3.604-1.01 2.303zm6.625-3.572v-.445c0-1.232-.75-1.966-1.89-1.966-1.179 0-2.013.78-2.013 2.059 0 1.27.834 2.057 2.043 2.057.926 0 1.684-.536 1.821-1.285l-1.124-.054c-.085.275-.337.436-.727.436-.505 0-.804-.314-.827-.803zm-1.898-1.539c.505 0 .75.314.773.796H9.743c.031-.505.345-.796.82-.796zm6.478-1.524v-1.04h-3.672v5.724h3.68v-1.048h-2.495V11.46h2.158v-1.018h-2.158v-1.24zm5.46.65c-.597 0-.987.269-1.216.629-.26-.406-.697-.627-1.24-.627s-.864.206-1.04.482v-.407h-1.056v3.956h1.117V11.69c0-.474.268-.796.711-.796.406 0 .643.283.643.788v2.205h1.117v-2.333c.046-.399.291-.659.689-.659.428 0 .658.284.658.789v2.204H24V11.46c0-1.002-.597-1.606-1.5-1.606z" }) + ] + } + ); +}); + +exports.default = SiEyeem; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.d.ts new file mode 100644 index 000000000..96602868e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiEyeem: IconType; +export { SiEyeem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.mjs new file mode 100644 index 000000000..68788afe2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiEyeem.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiEyeem = React.forwardRef(function SiEyeem2({ title = "EyeEm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.673 9.204v-1.04H0v5.722h3.68v-1.048H1.186V11.46h2.158v-1.017H1.186v-1.24zm2.162 6.633l2.532-5.906h-1.24l-.902 2.357-.91-2.357H4.081l1.546 3.604-1.01 2.303zm6.625-3.572v-.445c0-1.232-.75-1.966-1.89-1.966-1.179 0-2.013.78-2.013 2.059 0 1.27.834 2.057 2.043 2.057.926 0 1.684-.536 1.821-1.285l-1.124-.054c-.085.275-.337.436-.727.436-.505 0-.804-.314-.827-.803zm-1.898-1.539c.505 0 .75.314.773.796H9.743c.031-.505.345-.796.82-.796zm6.478-1.524v-1.04h-3.672v5.724h3.68v-1.048h-2.495V11.46h2.158v-1.018h-2.158v-1.24zm5.46.65c-.597 0-.987.269-1.216.629-.26-.406-.697-.627-1.24-.627s-.864.206-1.04.482v-.407h-1.056v3.956h1.117V11.69c0-.474.268-.796.711-.796.406 0 .643.283.643.788v2.205h1.117v-2.333c.046-.399.291-.659.689-.659.428 0 .658.284.658.789v2.204H24V11.46c0-1.002-.597-1.606-1.5-1.606z" }) + ] + } + ); +}); + +export { SiEyeem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiF1.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiF1.cjs new file mode 100644 index 000000000..391349caf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiF1.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E10600"; +const SiF1 = React__namespace.forwardRef(function SiF12({ title = "F1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.6 11.24h7.91L19.75 9H9.39c-2.85 0-3.62.34-5.17 1.81C2.71 12.3 0 15 0 15h3.38c.77-.75 2.2-2.13 2.85-2.75.92-.87 1.37-1.01 3.37-1.01zM20.39 9l-6 6H18l6-6h-3.61zm-3.25 2.61H9.88c-2.22 0-2.6.12-3.55 1.07C5.44 13.57 4 15 4 15h3.15l.75-.75c.49-.49.75-.55 1.78-.55h5.37l2.09-2.09z" }) + ] + } + ); +}); + +exports.default = SiF1; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiF1.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiF1.d.ts new file mode 100644 index 000000000..6ce39e08c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiF1.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E10600"; +declare const SiF1: IconType; +export { SiF1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiF1.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiF1.mjs new file mode 100644 index 000000000..850b018f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiF1.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E10600"; +const SiF1 = React.forwardRef(function SiF12({ title = "F1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.6 11.24h7.91L19.75 9H9.39c-2.85 0-3.62.34-5.17 1.81C2.71 12.3 0 15 0 15h3.38c.77-.75 2.2-2.13 2.85-2.75.92-.87 1.37-1.01 3.37-1.01zM20.39 9l-6 6H18l6-6h-3.61zm-3.25 2.61H9.88c-2.22 0-2.6.12-3.55 1.07C5.44 13.57 4 15 4 15h3.15l.75-.75c.49-.49.75-.55 1.78-.55h5.37l2.09-2.09z" }) + ] + } + ); +}); + +export { SiF1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiF5.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiF5.cjs new file mode 100644 index 000000000..7ee917e72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiF5.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E4002B"; +const SiF5 = React__namespace.forwardRef(function SiF52({ title = "F5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12a11.943 11.943 0 002.336 7.1113c.509.004.8594-.111.8984-.33.046-.229.0068-.5825-.0332-.9395a55.067 55.067 0 01-.2344-7.4473c-.609.027-1.1547.055-1.6777.086.02-.471.046-.9188.084-1.3828.517-.05 1.064-.0936 1.666-.1446.026-.406.0568-.7983.0918-1.1953.27-2.43 2.828-3.9162 4.959-4.4902.946-.23 1.5245-.3022 1.9785-.3262.164-.005.3405-.0117.5175-.0117.442 0 .8899.0414 1.1739.2344.46.345.9135.6873 1.3965 1.0683.048.065.1024.1678-.0176.3438-.222.26-.4371.5084-.6621.7754-.13.157-.3454.1164-.5274.0664-.38-.194-.7462-.3728-1.1172-.5528-.672-.299-1.3666-.6061-2.1406-.5761-.483.039-.951.532-1 1.209a101.41 101.41 0 00-.1504 3.2285c1.343-.038 2.6837-.0624 4.0957-.0684l-.002.9453c-.46.206-.8954.413-1.3574.623-.953.011-1.8595.0202-2.7715.0352a125.13 125.13 0 00.1192 7.9317c.024.378.0424.7605.1504 1.0175.13.322.8798.5701 2.5098.6621.007.284.0153.5532.0253.8282-2.655-.077-5.205-.3302-7.248-.6992A11.962 11.962 0 0012 24c6.628 0 12-5.373 12-12a11.942 11.942 0 00-2.0957-6.7754c-.147.607-.2252 1.2378-.3672 1.8828-1.8-.234-3.9131-.4053-6.2871-.4883-.191.602-.3711 1.192-.5781 1.836 3.973.245 5.9048 1.2924 7.0508 2.5254 1.113 1.248 1.3501 2.6262 1.2851 3.9062-.143 2.081-1.0613 3.3971-2.3203 4.3711-1.274.96-2.8139 1.436-4.0469 1.539-1.819.137-4.2515-.2962-4.7695-.6132a178.03 178.03 0 01-.9492-2.2012c-.08-.166-.1294-.3371.0976-.5351.354-.339.6928-.6667 1.0508-1.0137.158-.155.3338-.2991.4668-.0781.489.755.9473 1.4477 1.4063 2.1367.522.77 1.3167 1.4695 3.0527 1.3535 1.459-.13 2.5675-1.2333 2.6855-2.4473.128-2.246-2.1446-3.8396-8.0546-4.3496a2571.27 2571.27 0 013.123-9.371c1.404.065 2.7043.1798 3.9453.3398.919.116 1.772.3287 2.627.4277A11.973 11.973 0 0012 0zm10.0195 21.1113c-.5006 0-.9082.4076-.9082.9082 0 .5007.4076.9082.9082.9082.5007 0 .9082-.4075.9082-.9082 0-.5006-.4075-.9082-.9082-.9082zm0 .127c.4318 0 .7793.3495.7793.7812a.7776.7776 0 01-.7793.7793c-.4317 0-.7812-.3475-.7812-.7793a.7809.7809 0 01.7812-.7812zm-.3652.2773v.9961h.1738v-.3926h.1387c.092 0 .1583.0112.1953.0332.062.037.0938.1146.0938.2286v.08l.002.0293a.07.07 0 01.0039.0118c0 .005-.0001.0068.0039.0098h.162l-.0058-.0137a.106.106 0 01-.0078-.0488.6846.6846 0 01-.004-.0743v-.0742a.276.276 0 00-.0527-.1543c-.037-.053-.0948-.0846-.1718-.0976A.408.408 0 0022.328 22c.066-.042.0977-.1103.0977-.1973 0-.124-.0503-.21-.1543-.252a.752.752 0 00-.2695-.035zm.1738.123h.1504a.45.45 0 01.211.0372c.042.024.0664.0735.0664.1445a.153.153 0 01-.1036.1563.451.451 0 01-.166.0214h-.1582z" }) + ] + } + ); +}); + +exports.default = SiF5; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiF5.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiF5.d.ts new file mode 100644 index 000000000..d2a3cadf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiF5.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E4002B"; +declare const SiF5: IconType; +export { SiF5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiF5.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiF5.mjs new file mode 100644 index 000000000..c1c43262f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiF5.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E4002B"; +const SiF5 = React.forwardRef(function SiF52({ title = "F5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12a11.943 11.943 0 002.336 7.1113c.509.004.8594-.111.8984-.33.046-.229.0068-.5825-.0332-.9395a55.067 55.067 0 01-.2344-7.4473c-.609.027-1.1547.055-1.6777.086.02-.471.046-.9188.084-1.3828.517-.05 1.064-.0936 1.666-.1446.026-.406.0568-.7983.0918-1.1953.27-2.43 2.828-3.9162 4.959-4.4902.946-.23 1.5245-.3022 1.9785-.3262.164-.005.3405-.0117.5175-.0117.442 0 .8899.0414 1.1739.2344.46.345.9135.6873 1.3965 1.0683.048.065.1024.1678-.0176.3438-.222.26-.4371.5084-.6621.7754-.13.157-.3454.1164-.5274.0664-.38-.194-.7462-.3728-1.1172-.5528-.672-.299-1.3666-.6061-2.1406-.5761-.483.039-.951.532-1 1.209a101.41 101.41 0 00-.1504 3.2285c1.343-.038 2.6837-.0624 4.0957-.0684l-.002.9453c-.46.206-.8954.413-1.3574.623-.953.011-1.8595.0202-2.7715.0352a125.13 125.13 0 00.1192 7.9317c.024.378.0424.7605.1504 1.0175.13.322.8798.5701 2.5098.6621.007.284.0153.5532.0253.8282-2.655-.077-5.205-.3302-7.248-.6992A11.962 11.962 0 0012 24c6.628 0 12-5.373 12-12a11.942 11.942 0 00-2.0957-6.7754c-.147.607-.2252 1.2378-.3672 1.8828-1.8-.234-3.9131-.4053-6.2871-.4883-.191.602-.3711 1.192-.5781 1.836 3.973.245 5.9048 1.2924 7.0508 2.5254 1.113 1.248 1.3501 2.6262 1.2851 3.9062-.143 2.081-1.0613 3.3971-2.3203 4.3711-1.274.96-2.8139 1.436-4.0469 1.539-1.819.137-4.2515-.2962-4.7695-.6132a178.03 178.03 0 01-.9492-2.2012c-.08-.166-.1294-.3371.0976-.5351.354-.339.6928-.6667 1.0508-1.0137.158-.155.3338-.2991.4668-.0781.489.755.9473 1.4477 1.4063 2.1367.522.77 1.3167 1.4695 3.0527 1.3535 1.459-.13 2.5675-1.2333 2.6855-2.4473.128-2.246-2.1446-3.8396-8.0546-4.3496a2571.27 2571.27 0 013.123-9.371c1.404.065 2.7043.1798 3.9453.3398.919.116 1.772.3287 2.627.4277A11.973 11.973 0 0012 0zm10.0195 21.1113c-.5006 0-.9082.4076-.9082.9082 0 .5007.4076.9082.9082.9082.5007 0 .9082-.4075.9082-.9082 0-.5006-.4075-.9082-.9082-.9082zm0 .127c.4318 0 .7793.3495.7793.7812a.7776.7776 0 01-.7793.7793c-.4317 0-.7812-.3475-.7812-.7793a.7809.7809 0 01.7812-.7812zm-.3652.2773v.9961h.1738v-.3926h.1387c.092 0 .1583.0112.1953.0332.062.037.0938.1146.0938.2286v.08l.002.0293a.07.07 0 01.0039.0118c0 .005-.0001.0068.0039.0098h.162l-.0058-.0137a.106.106 0 01-.0078-.0488.6846.6846 0 01-.004-.0743v-.0742a.276.276 0 00-.0527-.1543c-.037-.053-.0948-.0846-.1718-.0976A.408.408 0 0022.328 22c.066-.042.0977-.1103.0977-.1973 0-.124-.0503-.21-.1543-.252a.752.752 0 00-.2695-.035zm.1738.123h.1504a.45.45 0 01.211.0372c.042.024.0664.0735.0664.1445a.153.153 0 01-.1036.1563.451.451 0 01-.166.0214h-.1582z" }) + ] + } + ); +}); + +export { SiF5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.cjs new file mode 100644 index 000000000..e57ccb66f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0866FF"; +const SiFacebook = React__namespace.forwardRef(function SiFacebook2({ title = "Facebook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z" }) + ] + } + ); +}); + +exports.default = SiFacebook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.d.ts new file mode 100644 index 000000000..01ba86fce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0866FF"; +declare const SiFacebook: IconType; +export { SiFacebook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.mjs new file mode 100644 index 000000000..73b14b1c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0866FF"; +const SiFacebook = React.forwardRef(function SiFacebook2({ title = "Facebook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z" }) + ] + } + ); +}); + +export { SiFacebook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.cjs new file mode 100644 index 000000000..b078a5b7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005FED"; +const SiFacebookgaming = React__namespace.forwardRef(function SiFacebookgaming2({ title = "Facebook Gaming", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h15.67v-7.35H7.35v-9.3H24V0zm8.33 15.68h8.32V24H24V8.32H8.33Z" }) + ] + } + ); +}); + +exports.default = SiFacebookgaming; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.d.ts new file mode 100644 index 000000000..393f1c908 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005FED"; +declare const SiFacebookgaming: IconType; +export { SiFacebookgaming as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.mjs new file mode 100644 index 000000000..425dccc46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebookgaming.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005FED"; +const SiFacebookgaming = React.forwardRef(function SiFacebookgaming2({ title = "Facebook Gaming", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h15.67v-7.35H7.35v-9.3H24V0zm8.33 15.68h8.32V24H24V8.32H8.33Z" }) + ] + } + ); +}); + +export { SiFacebookgaming as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.cjs new file mode 100644 index 000000000..3591c8be2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED4242"; +const SiFacebooklive = React__namespace.forwardRef(function SiFacebooklive2({ title = "Facebook Live", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.4777 7.8108a.4611.4611 0 0 0-.462.462v7.452a.461.461 0 0 0 .462.462H23.538v.0024a.4611.4611 0 0 0 .462-.462V8.2728a.4611.4611 0 0 0-.462-.462zm-5.2862.0072C1.879 7.818 0 9.6922 0 12.007c0 2.0922 1.533 3.8267 3.5376 4.1394V13.218h-1.071v-1.211h1.071v-.924c0-1.0497.6208-1.6326 1.578-1.6326.4573 0 .9336.0877.9336.0877v1.0236h-.5237c-.5213 0-.6871.327-.6871.6563v.7866h1.1634l-.1872 1.2108H4.836v2.9286c2.0093-.3104 3.5447-2.0448 3.5447-4.137 0-2.315-1.8766-4.1891-4.1892-4.1891zm7.1676 2.4073h.635v2.9926h1.6278v.5544H11.359zm2.9452 0h.635v3.547h-.635zm1.2439 0h.7014l.8932 2.8078h.0427l.8862-2.8078h.6752l-1.2273 3.547h-.7322zm3.81.0024h2.296v.5473h-1.6609v.9407h1.5709v.5165h-1.5709v.9928h1.661v.5497h-2.296Z" }) + ] + } + ); +}); + +exports.default = SiFacebooklive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.d.ts new file mode 100644 index 000000000..2cdc291f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED4242"; +declare const SiFacebooklive: IconType; +export { SiFacebooklive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.mjs new file mode 100644 index 000000000..c3f9acf3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacebooklive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED4242"; +const SiFacebooklive = React.forwardRef(function SiFacebooklive2({ title = "Facebook Live", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.4777 7.8108a.4611.4611 0 0 0-.462.462v7.452a.461.461 0 0 0 .462.462H23.538v.0024a.4611.4611 0 0 0 .462-.462V8.2728a.4611.4611 0 0 0-.462-.462zm-5.2862.0072C1.879 7.818 0 9.6922 0 12.007c0 2.0922 1.533 3.8267 3.5376 4.1394V13.218h-1.071v-1.211h1.071v-.924c0-1.0497.6208-1.6326 1.578-1.6326.4573 0 .9336.0877.9336.0877v1.0236h-.5237c-.5213 0-.6871.327-.6871.6563v.7866h1.1634l-.1872 1.2108H4.836v2.9286c2.0093-.3104 3.5447-2.0448 3.5447-4.137 0-2.315-1.8766-4.1891-4.1892-4.1891zm7.1676 2.4073h.635v2.9926h1.6278v.5544H11.359zm2.9452 0h.635v3.547h-.635zm1.2439 0h.7014l.8932 2.8078h.0427l.8862-2.8078h.6752l-1.2273 3.547h-.7322zm3.81.0024h2.296v.5473h-1.6609v.9407h1.5709v.5165h-1.5709v.9928h1.661v.5497h-2.296Z" }) + ] + } + ); +}); + +export { SiFacebooklive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.cjs new file mode 100644 index 000000000..3b7547104 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5500"; +const SiFaceit = React__namespace.forwardRef(function SiFaceit2({ title = "FACEIT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.999 2.705a.167.167 0 00-.312-.1 1141.27 1141.27 0 00-6.053 9.375H.218c-.221 0-.301.282-.11.352 7.227 2.73 17.667 6.836 23.5 9.134.15.06.39-.08.39-.18z" }) + ] + } + ); +}); + +exports.default = SiFaceit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.d.ts new file mode 100644 index 000000000..b588bb4f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5500"; +declare const SiFaceit: IconType; +export { SiFaceit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.mjs new file mode 100644 index 000000000..8b21d9deb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFaceit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5500"; +const SiFaceit = React.forwardRef(function SiFaceit2({ title = "FACEIT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.999 2.705a.167.167 0 00-.312-.1 1141.27 1141.27 0 00-6.053 9.375H.218c-.221 0-.301.282-.11.352 7.227 2.73 17.667 6.836 23.5 9.134.15.06.39-.08.39-.18z" }) + ] + } + ); +}); + +export { SiFaceit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.cjs new file mode 100644 index 000000000..4dc57ad38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC1C24"; +const SiFacepunch = React__namespace.forwardRef(function SiFacepunch2({ title = "Facepunch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.388 0 0 5.388 0 12s5.388 12 12 12 12-5.388 12-12S18.629 0 12 0zm0 21.314c-5.133 0-9.297-4.164-9.297-9.297S6.867 2.72 12 2.72s9.297 4.164 9.297 9.297-4.164 9.297-9.297 9.297zM10.028 12l1.48 1.479-1.922 1.92-1.478-1.478-1.428 1.444-1.92-1.92L6.203 12l-1.377-1.377 1.92-1.904 1.36 1.377 1.411-1.41 1.921 1.903L10.03 12zm9.162-1.462-1.411 1.411 1.479 1.479-1.92 1.904-1.48-1.48-1.444 1.446-1.904-1.921 1.445-1.428-1.377-1.377 1.904-1.92 1.376 1.376 1.411-1.41 1.92 1.92z" }) + ] + } + ); +}); + +exports.default = SiFacepunch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.d.ts new file mode 100644 index 000000000..5212d138d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC1C24"; +declare const SiFacepunch: IconType; +export { SiFacepunch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.mjs new file mode 100644 index 000000000..2f3ccd643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFacepunch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC1C24"; +const SiFacepunch = React.forwardRef(function SiFacepunch2({ title = "Facepunch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.388 0 0 5.388 0 12s5.388 12 12 12 12-5.388 12-12S18.629 0 12 0zm0 21.314c-5.133 0-9.297-4.164-9.297-9.297S6.867 2.72 12 2.72s9.297 4.164 9.297 9.297-4.164 9.297-9.297 9.297zM10.028 12l1.48 1.479-1.922 1.92-1.478-1.478-1.428 1.444-1.92-1.92L6.203 12l-1.377-1.377 1.92-1.904 1.36 1.377 1.411-1.41 1.921 1.903L10.03 12zm9.162-1.462-1.411 1.411 1.479 1.479-1.92 1.904-1.48-1.48-1.444 1.446-1.904-1.921 1.445-1.428-1.377-1.377 1.904-1.92 1.376 1.376 1.411-1.41 1.92 1.92z" }) + ] + } + ); +}); + +export { SiFacepunch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.cjs new file mode 100644 index 000000000..6d0bd03a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4495D1"; +const SiFairphone = React__namespace.forwardRef(function SiFairphone2({ title = "Fairphone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.25 12.358c.124-.306.25-.612.38-.918.058.306.12.613.185.918H3.25zm.129-1.943a46.426 46.426 0 0 0-1.396 3.151h.649a.234.234 0 0 0 .216-.154c.05-.137.102-.273.155-.41h.957l.103.411a.2.2 0 0 0 .195.155h.667a38.402 38.402 0 0 1-.752-3.152l-.794-.001zm1.935 3.152h.784c.062-1.044.17-2.089.321-3.134h-.783a36.666 36.666 0 0 0-.322 3.134m3.23-2.018c-.029.25-.201.407-.467.407h-.388c.028-.273.06-.546.094-.819h.384c.262 0 .41.134.378.402v.009m.793-.04c0-.008.002-.016.003-.023.037-.318-.026-.56-.172-.734-.17-.206-.461-.318-.871-.318H6.882c-.035.234-.067.468-.096.703h.218c-.103.81-.178 1.62-.226 2.43h.78c.02-.323.043-.646.07-.97h.278c.128.285.26.57.394.856a.2.2 0 0 0 .183.115h.756a53.18 53.18 0 0 1-.542-1.137 1.11 1.11 0 0 0 .64-.922m2.093.062c-.031.264-.212.43-.487.43h-.274c.03-.293.062-.572.099-.865h.27c.283 0 .427.134.393.42l-.001.014m-.257-1.137H9.866c-.033.23-.066.473-.096.703h.217a36.478 36.478 0 0 0-.224 2.432h.78c.018-.303.04-.606.065-.909h.3c.669-.009 1.225-.367 1.31-1.12l.002-.017c.083-.703-.326-1.088-1.046-1.088m3.032 1.19h-.866c.044-.396.096-.793.154-1.19h-.784a36.105 36.105 0 0 0-.32 3.134h.784c.023-.403.053-.806.09-1.209h.867c-.037.403-.067.806-.09 1.21h.788a36.75 36.75 0 0 1 .321-3.135h-.789c-.058.397-.11.794-.154 1.19m6.068.386a52.412 52.412 0 0 1-.847-1.631l-.718.12a36.018 36.018 0 0 0-.312 3.07h.773c.031-.547.076-1.095.133-1.642.278.516.566 1.032.865 1.548a.188.188 0 0 0 .163.094h.59a36.75 36.75 0 0 1 .32-3.134h-.772c-.076.526-.142 1.051-.196 1.576M.941 11.713c.02-.185.042-.37.066-.556h1.427c.031-.24.064-.482.1-.724H.104c-.036.242-.069.483-.1.725h.218A35.93 35.93 0 0 0 0 13.568h.784c.023-.386.052-.773.087-1.16h.845a.247.247 0 0 0 .236-.221c.016-.158.032-.315.05-.473H.94zm21.461 1.147c.015-.18.03-.359.047-.538h.859a.247.247 0 0 0 .237-.221c.014-.149.03-.297.047-.446h-1.075c.02-.172.04-.343.062-.515h1.324c.03-.235.063-.471.097-.707h-2.317c-.035.236-.067.471-.097.707h.218a35.363 35.363 0 0 0-.225 2.427h2.119c.013-.236.03-.471.048-.707h-1.344zm-5.079-.795-.005.049c-.054.542-.293.782-.66.782-.36 0-.59-.332-.535-.874 0-.016.003-.033.005-.049.056-.542.349-.869.71-.869a.46.46 0 0 1 .408.225l-.11.106c.093.15.217.357.188.63m.414-1.202.108-.105c-.212-.243-.52-.383-.903-.383-.818 0-1.52.658-1.616 1.593l-.007.068c-.095.94.463 1.59 1.286 1.59.822 0 1.419-.572 1.513-1.508l.007-.067a1.545 1.545 0 0 0-.388-1.188" }) + ] + } + ); +}); + +exports.default = SiFairphone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.d.ts new file mode 100644 index 000000000..169fbaf1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4495D1"; +declare const SiFairphone: IconType; +export { SiFairphone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.mjs new file mode 100644 index 000000000..5bd137674 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFairphone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4495D1"; +const SiFairphone = React.forwardRef(function SiFairphone2({ title = "Fairphone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.25 12.358c.124-.306.25-.612.38-.918.058.306.12.613.185.918H3.25zm.129-1.943a46.426 46.426 0 0 0-1.396 3.151h.649a.234.234 0 0 0 .216-.154c.05-.137.102-.273.155-.41h.957l.103.411a.2.2 0 0 0 .195.155h.667a38.402 38.402 0 0 1-.752-3.152l-.794-.001zm1.935 3.152h.784c.062-1.044.17-2.089.321-3.134h-.783a36.666 36.666 0 0 0-.322 3.134m3.23-2.018c-.029.25-.201.407-.467.407h-.388c.028-.273.06-.546.094-.819h.384c.262 0 .41.134.378.402v.009m.793-.04c0-.008.002-.016.003-.023.037-.318-.026-.56-.172-.734-.17-.206-.461-.318-.871-.318H6.882c-.035.234-.067.468-.096.703h.218c-.103.81-.178 1.62-.226 2.43h.78c.02-.323.043-.646.07-.97h.278c.128.285.26.57.394.856a.2.2 0 0 0 .183.115h.756a53.18 53.18 0 0 1-.542-1.137 1.11 1.11 0 0 0 .64-.922m2.093.062c-.031.264-.212.43-.487.43h-.274c.03-.293.062-.572.099-.865h.27c.283 0 .427.134.393.42l-.001.014m-.257-1.137H9.866c-.033.23-.066.473-.096.703h.217a36.478 36.478 0 0 0-.224 2.432h.78c.018-.303.04-.606.065-.909h.3c.669-.009 1.225-.367 1.31-1.12l.002-.017c.083-.703-.326-1.088-1.046-1.088m3.032 1.19h-.866c.044-.396.096-.793.154-1.19h-.784a36.105 36.105 0 0 0-.32 3.134h.784c.023-.403.053-.806.09-1.209h.867c-.037.403-.067.806-.09 1.21h.788a36.75 36.75 0 0 1 .321-3.135h-.789c-.058.397-.11.794-.154 1.19m6.068.386a52.412 52.412 0 0 1-.847-1.631l-.718.12a36.018 36.018 0 0 0-.312 3.07h.773c.031-.547.076-1.095.133-1.642.278.516.566 1.032.865 1.548a.188.188 0 0 0 .163.094h.59a36.75 36.75 0 0 1 .32-3.134h-.772c-.076.526-.142 1.051-.196 1.576M.941 11.713c.02-.185.042-.37.066-.556h1.427c.031-.24.064-.482.1-.724H.104c-.036.242-.069.483-.1.725h.218A35.93 35.93 0 0 0 0 13.568h.784c.023-.386.052-.773.087-1.16h.845a.247.247 0 0 0 .236-.221c.016-.158.032-.315.05-.473H.94zm21.461 1.147c.015-.18.03-.359.047-.538h.859a.247.247 0 0 0 .237-.221c.014-.149.03-.297.047-.446h-1.075c.02-.172.04-.343.062-.515h1.324c.03-.235.063-.471.097-.707h-2.317c-.035.236-.067.471-.097.707h.218a35.363 35.363 0 0 0-.225 2.427h2.119c.013-.236.03-.471.048-.707h-1.344zm-5.079-.795-.005.049c-.054.542-.293.782-.66.782-.36 0-.59-.332-.535-.874 0-.016.003-.033.005-.049.056-.542.349-.869.71-.869a.46.46 0 0 1 .408.225l-.11.106c.093.15.217.357.188.63m.414-1.202.108-.105c-.212-.243-.52-.383-.903-.383-.818 0-1.52.658-1.616 1.593l-.007.068c-.095.94.463 1.59 1.286 1.59.822 0 1.419-.572 1.513-1.508l.007-.067a1.545 1.545 0 0 0-.388-1.188" }) + ] + } + ); +}); + +export { SiFairphone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.cjs new file mode 100644 index 000000000..e6e01e0f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AEC7"; +const SiFalco = React__namespace.forwardRef(function SiFalco2({ title = "Falco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.812 0c-.23.012-.416.112-.503.329-.155.382.043.66.298.916l10.186 10.17c.16.16.336.31.523.37l.742-.742c-.06-.187-.212-.363-.373-.523C10.291 7.129 6.897 3.739 3.5.35 3.31.16 3.107-.01 2.812 0Zm.95 4.485a.543.543 0 0 0-.434.178c-.265.262-.246.573-.037.867.094.128.198.248.312.36 2.439 2.436 4.88 4.87 7.323 7.302.165.164.363.333.578.404l.738-.738c-.094-.268-.316-.447-.51-.641a4831.46 4831.315 0 0 0-6.246-6.24c-.431-.43-.861-.865-1.306-1.281a.711.711 0 0 0-.418-.211ZM19.33 8.262a.301.301 0 0 0-.213.078c-1.708 1.699-3.417 3.395-5.127 5.092l-8.027 8.014-.02-.02a56.5 56.498 0 0 0-1.36 1.401c-.233.25-.32.57-.05.86.282.303.623.284.934.054.233-.172.434-.388.64-.594l.543-.54 1.506-1.503c3.656-3.647 7.307-7.298 10.953-10.955l2.637-.46c-.377-.38-1.794-1.44-2.416-1.427Zm-14.78.803a.582.582 0 0 0-.345.193c-.208.228-.206.492-.045.733.15.217.32.42.508.605a773.152 773.129 0 0 0 3.486 3.484c.394.393.787.787 1.195 1.164.09.087.2.15.32.184l.774-.774c-.05-.198-.184-.356-.332-.503a3008.15 3008.06 0 0 0-4.724-4.715 1.443 1.443 0 0 0-.452-.315.725.725 0 0 0-.384-.056Zm15.137 2.56c-.27.018-.485.208-.687.41l-9.86 9.844-.726.724c-.174.175-.352.367-.408.575-.045.164-.013.34.156.521.423.455.82.13 1.154-.205 3.568-3.559 7.134-7.117 10.7-10.68.169-.168.339-.34.357-.6a.562.562 0 0 0-.395-.542.71.71 0 0 0-.29-.046zm.057 3.58c-.226.012-.438.178-.625.364-1.357 1.346-2.706 2.702-4.063 4.05-.474.47-.452.91.018 1.37.796.782 1.59 1.565 2.363 2.37.433.45.907.732 1.518.613.14.01.249.03.353.02.446-.042 1.01-.012 1.024-.626.014-.633-.535-.636-.995-.619-.466.017-.809-.174-1.119-.5-.476-.5-.952-1.004-1.466-1.463-.456-.406-.391-.703.023-1.1 1.091-1.05 2.152-2.132 3.217-3.207.314-.318.593-.697.17-1.096-.143-.134-.283-.183-.418-.176z" }) + ] + } + ); +}); + +exports.default = SiFalco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.d.ts new file mode 100644 index 000000000..0e2a9e17b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AEC7"; +declare const SiFalco: IconType; +export { SiFalco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.mjs new file mode 100644 index 000000000..d54d2d2d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFalco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AEC7"; +const SiFalco = React.forwardRef(function SiFalco2({ title = "Falco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.812 0c-.23.012-.416.112-.503.329-.155.382.043.66.298.916l10.186 10.17c.16.16.336.31.523.37l.742-.742c-.06-.187-.212-.363-.373-.523C10.291 7.129 6.897 3.739 3.5.35 3.31.16 3.107-.01 2.812 0Zm.95 4.485a.543.543 0 0 0-.434.178c-.265.262-.246.573-.037.867.094.128.198.248.312.36 2.439 2.436 4.88 4.87 7.323 7.302.165.164.363.333.578.404l.738-.738c-.094-.268-.316-.447-.51-.641a4831.46 4831.315 0 0 0-6.246-6.24c-.431-.43-.861-.865-1.306-1.281a.711.711 0 0 0-.418-.211ZM19.33 8.262a.301.301 0 0 0-.213.078c-1.708 1.699-3.417 3.395-5.127 5.092l-8.027 8.014-.02-.02a56.5 56.498 0 0 0-1.36 1.401c-.233.25-.32.57-.05.86.282.303.623.284.934.054.233-.172.434-.388.64-.594l.543-.54 1.506-1.503c3.656-3.647 7.307-7.298 10.953-10.955l2.637-.46c-.377-.38-1.794-1.44-2.416-1.427Zm-14.78.803a.582.582 0 0 0-.345.193c-.208.228-.206.492-.045.733.15.217.32.42.508.605a773.152 773.129 0 0 0 3.486 3.484c.394.393.787.787 1.195 1.164.09.087.2.15.32.184l.774-.774c-.05-.198-.184-.356-.332-.503a3008.15 3008.06 0 0 0-4.724-4.715 1.443 1.443 0 0 0-.452-.315.725.725 0 0 0-.384-.056Zm15.137 2.56c-.27.018-.485.208-.687.41l-9.86 9.844-.726.724c-.174.175-.352.367-.408.575-.045.164-.013.34.156.521.423.455.82.13 1.154-.205 3.568-3.559 7.134-7.117 10.7-10.68.169-.168.339-.34.357-.6a.562.562 0 0 0-.395-.542.71.71 0 0 0-.29-.046zm.057 3.58c-.226.012-.438.178-.625.364-1.357 1.346-2.706 2.702-4.063 4.05-.474.47-.452.91.018 1.37.796.782 1.59 1.565 2.363 2.37.433.45.907.732 1.518.613.14.01.249.03.353.02.446-.042 1.01-.012 1.024-.626.014-.633-.535-.636-.995-.619-.466.017-.809-.174-1.119-.5-.476-.5-.952-1.004-1.466-1.463-.456-.406-.391-.703.023-1.1 1.091-1.05 2.152-2.132 3.217-3.207.314-.318.593-.697.17-1.096-.143-.134-.283-.183-.418-.176z" }) + ] + } + ); +}); + +export { SiFalco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.cjs new file mode 100644 index 000000000..d1c2a9bd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0AD4E"; +const SiFalcon = React__namespace.forwardRef(function SiFalcon2({ title = "Falcon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.929 19.487c0 .035.264.2.592.364 1.578.835 2.55 1.742 2.914 2.75.164.435.171.592.028.92-.178.436-.207.429.95.393 1.043-.035 1.657-.15 1.657-.314 0-.078-.857-.885-1.171-1.093a1.431 1.431 0 0 1-.186-.15 7.636 7.636 0 0 0-.321-.257 11.96 11.96 0 0 1-.372-.278 6.126 6.126 0 0 0-.25-.193l-.45-.35a4.642 4.642 0 0 0-.535-.357c-.328-.178-.528-.307-.571-.357-.05-.057-1.036-.593-1.5-.814-.214-.1-.45-.214-.514-.25-.157-.086-.271-.093-.271-.014zm-5.75-1.536a4.78 4.78 0 0 0-.056.415c-.043.5-.379 1.164-.764 1.52-.465.436-.75.572-.993.48a3.353 3.353 0 0 0-.628-.115c-.357-.043-.486-.022-.657.078-.186.108-.222.179-.222.4 0 .315-.007.307.257.165a1.02 1.02 0 0 1 .3-.108c.15 0 .093.143-.093.229-.207.093-.264.271-.278.828-.007.422.121.586.236.286.035-.093.17-.221.3-.293A1.42 1.42 0 0 0 8 21.43c.186-.314.286-.364.286-.15 0 .457.236.479.436.036.121-.243.186-.307.271-.271.236.1.515.114.615.028.1-.086.092-.114-.043-.257-.086-.093-.15-.179-.129-.193.157-.114.5-.193.85-.193.628 0 .714-.107.714-.914 0-.82-.214-1.406-.564-1.556-.179-.072-.236-.079-.257-.008zM22.535 1.062a1.22 1.22 0 0 0-.193.315c-.414.885-1.785 1.72-3.949 2.392-.193.064-.535.164-.75.236-.214.064-.635.2-.928.285-3.635 1.107-4.27 1.678-5.57 4.963-.586 1.472-.893 1.964-1.5 2.364-.507.343-.92.457-2.07.6-1.829.221-2.536.436-3.107.943-.35.3-.464.614-.464 1.242 0 .286-.029.536-.057.557-.036.022-.1.214-.15.436-.072.3-.072.45-.007.643.1.292.378.535.628.535.178 0 .186-.05.05-.371-.029-.079.014-.179.136-.307.157-.157.235-.179.72-.179.558 0 .744-.057 1.008-.3.15-.135.157-.135.357.086.421.464 1.52 1.121 2.892 1.735.65.293 1.057.643 1.364 1.186.207.357.236.457.236.97 0 .836-.3 1.408-.886 1.68-.1.05-.243.113-.307.15-.071.035-.336.063-.593.063H8.93l-.15.336a8.087 8.087 0 0 1-.25.528c-.078.158-.078.208 0 .322.093.121.122.107.464-.243.358-.364.579-.471.579-.271 0 .057-.129.2-.279.321-.35.278-.4.478-.235.95.135.385.314.5.357.235.014-.078.121-.235.235-.35.115-.107.208-.242.208-.292 0-.05.05-.129.107-.179.157-.128.221.1.121.457-.064.243-.057.314.036.414.071.079.093.186.064.307-.029.129-.014.179.05.179.1 0 .336-.221.336-.314 0-.029.064-.15.15-.264.15-.215.157-.258.021-1.014-.021-.143-.014-.265.014-.265.15 0 .664.329.693.443.05.186.264.079.264-.136a.802.802 0 0 0-.428-.678c-.236-.1-.279-.257-.086-.314.45-.143.871-.4 1.25-.779.457-.442.535-.535.828-.964.407-.592.786-.857 1.221-.857.6 0 2.485.843 3.942 1.764.679.429 2.007 1.357 2.228 1.557.043.043.286.221.543.407.257.179.7.521.986.764.285.236.542.436.57.436.236 0 .315-.614.108-.8a5.417 5.417 0 0 0-.557-.343c-.521-.293-1.528-.971-1.964-1.335-.985-.807-2.242-2.385-3.078-3.864a9.517 9.517 0 0 1-.278-.485c-.6-1.05-1.743-2.385-2.05-2.385-.121 0-.121-.008.072-.929.057-.293.142-.792.185-1.107.129-.87.314-1.863.45-2.356.386-1.45 1.207-2.457 2.7-3.3 2.092-1.192 2.927-1.928 3.527-3.12.322-.636.386-.793.579-1.507.1-.364.221-1.25.171-1.25a.391.391 0 0 0-.1.057zM3.496.484C1.839 2.198 1.003 3.926 1.003 5.647c0 .393.029.729.072.75.043.021.071.114.071.2 0 .2.172.693.4 1.157.3.621.736 1.057 1.921 1.914.929.67 1.443 1.428 1.614 2.385l.093.514.257-.107c.65-.279 1.15-.379 2.642-.536.957-.1 1.328-.243 1.771-.678.629-.629.329-1.036-1.635-2.2-2.114-1.257-2.87-1.842-3.692-2.863-.657-.822-.993-1.5-1.157-2.343-.157-.785.057-2.028.536-3.142.135-.328.25-.614.25-.642 0-.15-.236.007-.65.428Z" }) + ] + } + ); +}); + +exports.default = SiFalcon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.d.ts new file mode 100644 index 000000000..a93097d00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0AD4E"; +declare const SiFalcon: IconType; +export { SiFalcon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.mjs new file mode 100644 index 000000000..f8b7e61c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFalcon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0AD4E"; +const SiFalcon = React.forwardRef(function SiFalcon2({ title = "Falcon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.929 19.487c0 .035.264.2.592.364 1.578.835 2.55 1.742 2.914 2.75.164.435.171.592.028.92-.178.436-.207.429.95.393 1.043-.035 1.657-.15 1.657-.314 0-.078-.857-.885-1.171-1.093a1.431 1.431 0 0 1-.186-.15 7.636 7.636 0 0 0-.321-.257 11.96 11.96 0 0 1-.372-.278 6.126 6.126 0 0 0-.25-.193l-.45-.35a4.642 4.642 0 0 0-.535-.357c-.328-.178-.528-.307-.571-.357-.05-.057-1.036-.593-1.5-.814-.214-.1-.45-.214-.514-.25-.157-.086-.271-.093-.271-.014zm-5.75-1.536a4.78 4.78 0 0 0-.056.415c-.043.5-.379 1.164-.764 1.52-.465.436-.75.572-.993.48a3.353 3.353 0 0 0-.628-.115c-.357-.043-.486-.022-.657.078-.186.108-.222.179-.222.4 0 .315-.007.307.257.165a1.02 1.02 0 0 1 .3-.108c.15 0 .093.143-.093.229-.207.093-.264.271-.278.828-.007.422.121.586.236.286.035-.093.17-.221.3-.293A1.42 1.42 0 0 0 8 21.43c.186-.314.286-.364.286-.15 0 .457.236.479.436.036.121-.243.186-.307.271-.271.236.1.515.114.615.028.1-.086.092-.114-.043-.257-.086-.093-.15-.179-.129-.193.157-.114.5-.193.85-.193.628 0 .714-.107.714-.914 0-.82-.214-1.406-.564-1.556-.179-.072-.236-.079-.257-.008zM22.535 1.062a1.22 1.22 0 0 0-.193.315c-.414.885-1.785 1.72-3.949 2.392-.193.064-.535.164-.75.236-.214.064-.635.2-.928.285-3.635 1.107-4.27 1.678-5.57 4.963-.586 1.472-.893 1.964-1.5 2.364-.507.343-.92.457-2.07.6-1.829.221-2.536.436-3.107.943-.35.3-.464.614-.464 1.242 0 .286-.029.536-.057.557-.036.022-.1.214-.15.436-.072.3-.072.45-.007.643.1.292.378.535.628.535.178 0 .186-.05.05-.371-.029-.079.014-.179.136-.307.157-.157.235-.179.72-.179.558 0 .744-.057 1.008-.3.15-.135.157-.135.357.086.421.464 1.52 1.121 2.892 1.735.65.293 1.057.643 1.364 1.186.207.357.236.457.236.97 0 .836-.3 1.408-.886 1.68-.1.05-.243.113-.307.15-.071.035-.336.063-.593.063H8.93l-.15.336a8.087 8.087 0 0 1-.25.528c-.078.158-.078.208 0 .322.093.121.122.107.464-.243.358-.364.579-.471.579-.271 0 .057-.129.2-.279.321-.35.278-.4.478-.235.95.135.385.314.5.357.235.014-.078.121-.235.235-.35.115-.107.208-.242.208-.292 0-.05.05-.129.107-.179.157-.128.221.1.121.457-.064.243-.057.314.036.414.071.079.093.186.064.307-.029.129-.014.179.05.179.1 0 .336-.221.336-.314 0-.029.064-.15.15-.264.15-.215.157-.258.021-1.014-.021-.143-.014-.265.014-.265.15 0 .664.329.693.443.05.186.264.079.264-.136a.802.802 0 0 0-.428-.678c-.236-.1-.279-.257-.086-.314.45-.143.871-.4 1.25-.779.457-.442.535-.535.828-.964.407-.592.786-.857 1.221-.857.6 0 2.485.843 3.942 1.764.679.429 2.007 1.357 2.228 1.557.043.043.286.221.543.407.257.179.7.521.986.764.285.236.542.436.57.436.236 0 .315-.614.108-.8a5.417 5.417 0 0 0-.557-.343c-.521-.293-1.528-.971-1.964-1.335-.985-.807-2.242-2.385-3.078-3.864a9.517 9.517 0 0 1-.278-.485c-.6-1.05-1.743-2.385-2.05-2.385-.121 0-.121-.008.072-.929.057-.293.142-.792.185-1.107.129-.87.314-1.863.45-2.356.386-1.45 1.207-2.457 2.7-3.3 2.092-1.192 2.927-1.928 3.527-3.12.322-.636.386-.793.579-1.507.1-.364.221-1.25.171-1.25a.391.391 0 0 0-.1.057zM3.496.484C1.839 2.198 1.003 3.926 1.003 5.647c0 .393.029.729.072.75.043.021.071.114.071.2 0 .2.172.693.4 1.157.3.621.736 1.057 1.921 1.914.929.67 1.443 1.428 1.614 2.385l.093.514.257-.107c.65-.279 1.15-.379 2.642-.536.957-.1 1.328-.243 1.771-.678.629-.629.329-1.036-1.635-2.2-2.114-1.257-2.87-1.842-3.692-2.863-.657-.822-.993-1.5-1.157-2.343-.157-.785.057-2.028.536-3.142.135-.328.25-.614.25-.642 0-.15-.236.007-.65.428Z" }) + ] + } + ); +}); + +export { SiFalcon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.cjs new file mode 100644 index 000000000..1592c06b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFAD00"; +const SiFampay = React__namespace.forwardRef(function SiFampay2({ title = "FamPay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.828 23.971a.206.206 0 01-.233-.016c-.646-.407-3.892-2.571-6.089-5.288-1.34-1.677 3.783-4.173 3.783-3.844.005 1.782.5 6.467 2.603 8.747a.268.268 0 01-.013.356l-.051.035 M13.48 13.082l4.659-2.119a4.386 4.386 0 002.542-2.636l.581-1.634a.174.174 0 00-.11-.222.171.171 0 00-.125 0l-8.897 3.771.033-.142a.902.902 0 01.439-.626c1.505-.927 6.903-3.686 6.903-3.686a6.592 6.592 0 003.53-4.112L23.444.28a.225.225 0 00-.153-.268.222.222 0 00-.144 0s-8.123 3.156-10.734 4.425C9.8 5.707 7.126 7.34 6.2 12.142c-.376 1.945.313 3.592 1.607 5.46-.006-1.836 4.637-4.02 5.673-4.52z M2.026 4.86C1.289 4.299.662 4.25.553 4.299c-.049-.174.846-.597.956-.707.362-.346.565-.804.988-1.098.863-.611 1.93-.424 2.824.064.455.25 1.709 1.071 1.728 1.112A14.02 14.02 0 018.945 5.38a.241.241 0 010 .314c-.211.203-.418.348-.675.565-1.703 1.43-2.73 5.24-2.746 5.711V12s-.999-5.38-3.498-7.14z" }) + ] + } + ); +}); + +exports.default = SiFampay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.d.ts new file mode 100644 index 000000000..2c0fb860d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFAD00"; +declare const SiFampay: IconType; +export { SiFampay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.mjs new file mode 100644 index 000000000..7bf8cce41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFampay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFAD00"; +const SiFampay = React.forwardRef(function SiFampay2({ title = "FamPay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.828 23.971a.206.206 0 01-.233-.016c-.646-.407-3.892-2.571-6.089-5.288-1.34-1.677 3.783-4.173 3.783-3.844.005 1.782.5 6.467 2.603 8.747a.268.268 0 01-.013.356l-.051.035 M13.48 13.082l4.659-2.119a4.386 4.386 0 002.542-2.636l.581-1.634a.174.174 0 00-.11-.222.171.171 0 00-.125 0l-8.897 3.771.033-.142a.902.902 0 01.439-.626c1.505-.927 6.903-3.686 6.903-3.686a6.592 6.592 0 003.53-4.112L23.444.28a.225.225 0 00-.153-.268.222.222 0 00-.144 0s-8.123 3.156-10.734 4.425C9.8 5.707 7.126 7.34 6.2 12.142c-.376 1.945.313 3.592 1.607 5.46-.006-1.836 4.637-4.02 5.673-4.52z M2.026 4.86C1.289 4.299.662 4.25.553 4.299c-.049-.174.846-.597.956-.707.362-.346.565-.804.988-1.098.863-.611 1.93-.424 2.824.064.455.25 1.709 1.071 1.728 1.112A14.02 14.02 0 018.945 5.38a.241.241 0 010 .314c-.211.203-.418.348-.675.565-1.703 1.43-2.73 5.24-2.746 5.711V12s-.999-5.38-3.498-7.14z" }) + ] + } + ); +}); + +export { SiFampay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.cjs new file mode 100644 index 000000000..05f55c146 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7300"; +const SiFandango = React__namespace.forwardRef(function SiFandango2({ title = "Fandango", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.664 6.956L8.05 8.496 9.19 12.72l5.615-1.54L15.95 15.4l-5.615 1.49 1.093 4.224-5.615 1.49L4.42 17.54c.846-.995 1.194-2.386.846-3.728-.398-1.342-1.392-2.385-2.584-2.832L1.29 5.763 12.57 2.78zm7.106-.198L18.932.05 0 5.068l1.838 6.758c1.093.2 2.087 1.043 2.385 2.236.348 1.193-.1 2.385-.944 3.18l1.788 6.708L24 18.882l-1.79-6.708c-1.142-.2-2.086-1.043-2.434-2.236-.298-1.193.1-2.435.994-3.18z" }) + ] + } + ); +}); + +exports.default = SiFandango; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.d.ts new file mode 100644 index 000000000..baea708cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7300"; +declare const SiFandango: IconType; +export { SiFandango as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.mjs new file mode 100644 index 000000000..29797da15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFandango.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7300"; +const SiFandango = React.forwardRef(function SiFandango2({ title = "Fandango", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.664 6.956L8.05 8.496 9.19 12.72l5.615-1.54L15.95 15.4l-5.615 1.49 1.093 4.224-5.615 1.49L4.42 17.54c.846-.995 1.194-2.386.846-3.728-.398-1.342-1.392-2.385-2.584-2.832L1.29 5.763 12.57 2.78zm7.106-.198L18.932.05 0 5.068l1.838 6.758c1.093.2 2.087 1.043 2.385 2.236.348 1.193-.1 2.385-.944 3.18l1.788 6.708L24 18.882l-1.79-6.708c-1.142-.2-2.086-1.043-2.434-2.236-.298-1.193.1-2.435.994-3.18z" }) + ] + } + ); +}); + +export { SiFandango as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.cjs new file mode 100644 index 000000000..5a9ec6c44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA005A"; +const SiFandom = React__namespace.forwardRef(function SiFandom2({ title = "Fandom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.123.008a.431.431 0 00-.512.42v9.746L4.104 6.666a.432.432 0 00-.66.064.428.428 0 00-.071.239v10.064a2.387 2.387 0 00.701 1.694l4.565 4.57a2.4 2.4 0 001.693.703h3.34c.635 0 1.242-.252 1.691-.701l4.565-4.572a2.394 2.394 0 00.699-1.694V13.41a2.39 2.39 0 00-.7-1.693L8.343.125a.427.427 0 00-.219-.117zM9.646 12.51a.719.719 0 01.508.21l1.848 1.85 1.844-1.85a.714.714 0 011.015 0l1.32 1.321a.724.724 0 01.212.508v1.406a.72.72 0 01-.21.508l-3.68 3.7a.72.72 0 01-1.019 0l-3.668-3.7a.716.716 0 01-.209-.506v-1.408a.71.71 0 01.211-.506l1.32-1.322a.713.713 0 01.508-.211Z" }) + ] + } + ); +}); + +exports.default = SiFandom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.d.ts new file mode 100644 index 000000000..2fee63fee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA005A"; +declare const SiFandom: IconType; +export { SiFandom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.mjs new file mode 100644 index 000000000..8d1460d3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFandom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA005A"; +const SiFandom = React.forwardRef(function SiFandom2({ title = "Fandom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.123.008a.431.431 0 00-.512.42v9.746L4.104 6.666a.432.432 0 00-.66.064.428.428 0 00-.071.239v10.064a2.387 2.387 0 00.701 1.694l4.565 4.57a2.4 2.4 0 001.693.703h3.34c.635 0 1.242-.252 1.691-.701l4.565-4.572a2.394 2.394 0 00.699-1.694V13.41a2.39 2.39 0 00-.7-1.693L8.343.125a.427.427 0 00-.219-.117zM9.646 12.51a.719.719 0 01.508.21l1.848 1.85 1.844-1.85a.714.714 0 011.015 0l1.32 1.321a.724.724 0 01.212.508v1.406a.72.72 0 01-.21.508l-3.68 3.7a.72.72 0 01-1.019 0l-3.668-3.7a.716.716 0 01-.209-.506v-1.408a.71.71 0 01.211-.506l1.32-1.322a.713.713 0 01.508-.211Z" }) + ] + } + ); +}); + +export { SiFandom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.cjs new file mode 100644 index 000000000..0952a0990 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CCFF"; +const SiFanfou = React__namespace.forwardRef(function SiFanfou2({ title = "Fanfou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.96.0655 1.369 2.082c-3.2662.9041-6.8623 1.5142-10.7875 1.8302v3.8061H22.736c-.448 4.4272-1.616 7.9444-3.5041 10.5525 1.239 1.475 2.8271 2.788 4.7682 3.9381l-1.7 1.6601a25.133 25.133 0 0 1-4.5823-3.7402 20.9459 20.9459 0 0 1-4.9932 3.7402l-1.528-1.726c2.143-1.2121 3.8151-2.4762 5.0192-3.7932-1.599-2.5201-2.6441-5.2913-3.1352-8.3124h-.54c.07 5.5593-.892 10.1604-2.8851 13.8056l-2.002-1.396c1.73-3.0302 2.594-7.2944 2.594-12.7916V1.8966c4.2872-.167 8.1904-.776 11.7125-1.8301Zm-1.8972 10.0384h-4.6102c.35 2.3001 1.115 4.4132 2.2921 6.3353 1.184-1.861 1.9571-3.9732 2.3181-6.3353zM9.4054 3.6227c-.123 1.984-.51 4.0441-1.159 6.1772l-2.1461-.618c.308-.887.584-1.9551.83-3.2002H3.583C2.96 7.4998 2.314 8.8299 1.646 9.9709L0 8.18C1.186 6.0817 2.138 3.3845 2.8581.0924l2.2401.646a63.5656 63.5656 0 0 1-.764 2.8842Zm-.961 15.7546c-1.6161 1.616-3.1532 2.9021-4.6102 3.8602L2.45 21.3274c.255-.22.382-.554.382-1.002V8.4308h2.3451v10.8404c.623-.483 1.396-1.185 2.3181-2.107z" }) + ] + } + ); +}); + +exports.default = SiFanfou; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.d.ts new file mode 100644 index 000000000..0cbc846ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CCFF"; +declare const SiFanfou: IconType; +export { SiFanfou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.mjs new file mode 100644 index 000000000..c2a7a4bbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFanfou.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CCFF"; +const SiFanfou = React.forwardRef(function SiFanfou2({ title = "Fanfou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.96.0655 1.369 2.082c-3.2662.9041-6.8623 1.5142-10.7875 1.8302v3.8061H22.736c-.448 4.4272-1.616 7.9444-3.5041 10.5525 1.239 1.475 2.8271 2.788 4.7682 3.9381l-1.7 1.6601a25.133 25.133 0 0 1-4.5823-3.7402 20.9459 20.9459 0 0 1-4.9932 3.7402l-1.528-1.726c2.143-1.2121 3.8151-2.4762 5.0192-3.7932-1.599-2.5201-2.6441-5.2913-3.1352-8.3124h-.54c.07 5.5593-.892 10.1604-2.8851 13.8056l-2.002-1.396c1.73-3.0302 2.594-7.2944 2.594-12.7916V1.8966c4.2872-.167 8.1904-.776 11.7125-1.8301Zm-1.8972 10.0384h-4.6102c.35 2.3001 1.115 4.4132 2.2921 6.3353 1.184-1.861 1.9571-3.9732 2.3181-6.3353zM9.4054 3.6227c-.123 1.984-.51 4.0441-1.159 6.1772l-2.1461-.618c.308-.887.584-1.9551.83-3.2002H3.583C2.96 7.4998 2.314 8.8299 1.646 9.9709L0 8.18C1.186 6.0817 2.138 3.3845 2.8581.0924l2.2401.646a63.5656 63.5656 0 0 1-.764 2.8842Zm-.961 15.7546c-1.6161 1.616-3.1532 2.9021-4.6102 3.8602L2.45 21.3274c.255-.22.382-.554.382-1.002V8.4308h2.3451v10.8404c.623-.483 1.396-1.185 2.3181-2.107z" }) + ] + } + ); +}); + +export { SiFanfou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.cjs new file mode 100644 index 000000000..37eeda45a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0928FF"; +const SiFantom = React__namespace.forwardRef(function SiFantom2({ title = "Fantom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.9604.2299c.5833-.3065 1.4709-.3065 2.0542 0l5.9522 3.1279c.3513.1846.5442.4597.5788.7437h.0057V19.824c-.0077.3097-.2025.6174-.5845.8182l-5.9522 3.1279c-.5833.3065-1.4708.3065-2.0542 0l-5.9521-3.1279c-.3804-.1999-.563-.5098-.572-.8182a1.1165 1.1165 0 0 1-.0002-.0767V4.2025a.7965.7965 0 0 1-.0002-.051l.0004-.05h.0026c.0265-.2871.2106-.5552.5694-.7437Zm7.6538 12.643-5.5996 2.9427c-.5833.3066-1.4709.3066-2.0542 0l-5.5874-2.936v6.9132l5.5874 2.9207c.3155.1678.643.3313.9632.3521l.064.0021c.3336.0011.6575-.1674.986-.327l5.6406-2.973Zm-15.146 6.6093c0 .6022.0703.9982.21 1.2772.1158.2312.2896.4078.6068.6229l.0181.0122a7.138 7.138 0 0 0 .2397.153l.1101.067.3381.2032-.4849.7976-.3784-.2275-.0636-.0388a8.4255 8.4255 0 0 1-.2847-.1817c-.9042-.6065-1.2414-1.2677-1.248-2.6433l-.0001-.0419Zm8.0507-10.8233a.855.855 0 0 0-.121.0514l-5.9521 3.1279a.735.735 0 0 0-.0179.0097l-.005.0029.0093.0053.0136.0073 5.9522 3.1279a.8546.8546 0 0 0 .121.0514zm.9372 0v6.3839a.8538.8538 0 0 0 .121-.0514l5.9521-3.128a.8117.8117 0 0 0 .0179-.0096l.005-.003-.0094-.0052-.0136-.0073-5.9521-3.128a.8534.8534 0 0 0-.121-.0513zm6.1581-3.4421-5.3394 2.806 5.3394 2.8059zM5.373 5.2234v5.5987L10.7 8.0227Zm7.204-4.1692c-.3095-.1627-.8695-.1627-1.179 0L5.4458 4.182a.6432.6432 0 0 0-.0179.0097l-.005.003.0093.0052.0136.0074 5.9522 3.1279c.3095.1626.8695.1626 1.179 0l5.9522-3.128a.643.643 0 0 0 .0179-.0097l.005-.0029-.0094-.0053-.0136-.0073zm6.9169.343.3784.2273.0636.0389c.1094.0672.2.125.2847.1817.9042.6065 1.2414 1.2677 1.248 2.6433l.0001.0419h-.9368c0-.6024-.0704-.9983-.2101-1.2773-.1158-.2312-.2896-.4078-.6068-.6228l-.0181-.0122a7.2984 7.2984 0 0 0-.2397-.1532l-.1101-.067-.3381-.203z" }) + ] + } + ); +}); + +exports.default = SiFantom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.d.ts new file mode 100644 index 000000000..f36b9e1a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0928FF"; +declare const SiFantom: IconType; +export { SiFantom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.mjs new file mode 100644 index 000000000..b21e38957 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFantom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0928FF"; +const SiFantom = React.forwardRef(function SiFantom2({ title = "Fantom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.9604.2299c.5833-.3065 1.4709-.3065 2.0542 0l5.9522 3.1279c.3513.1846.5442.4597.5788.7437h.0057V19.824c-.0077.3097-.2025.6174-.5845.8182l-5.9522 3.1279c-.5833.3065-1.4708.3065-2.0542 0l-5.9521-3.1279c-.3804-.1999-.563-.5098-.572-.8182a1.1165 1.1165 0 0 1-.0002-.0767V4.2025a.7965.7965 0 0 1-.0002-.051l.0004-.05h.0026c.0265-.2871.2106-.5552.5694-.7437Zm7.6538 12.643-5.5996 2.9427c-.5833.3066-1.4709.3066-2.0542 0l-5.5874-2.936v6.9132l5.5874 2.9207c.3155.1678.643.3313.9632.3521l.064.0021c.3336.0011.6575-.1674.986-.327l5.6406-2.973Zm-15.146 6.6093c0 .6022.0703.9982.21 1.2772.1158.2312.2896.4078.6068.6229l.0181.0122a7.138 7.138 0 0 0 .2397.153l.1101.067.3381.2032-.4849.7976-.3784-.2275-.0636-.0388a8.4255 8.4255 0 0 1-.2847-.1817c-.9042-.6065-1.2414-1.2677-1.248-2.6433l-.0001-.0419Zm8.0507-10.8233a.855.855 0 0 0-.121.0514l-5.9521 3.1279a.735.735 0 0 0-.0179.0097l-.005.0029.0093.0053.0136.0073 5.9522 3.1279a.8546.8546 0 0 0 .121.0514zm.9372 0v6.3839a.8538.8538 0 0 0 .121-.0514l5.9521-3.128a.8117.8117 0 0 0 .0179-.0096l.005-.003-.0094-.0052-.0136-.0073-5.9521-3.128a.8534.8534 0 0 0-.121-.0513zm6.1581-3.4421-5.3394 2.806 5.3394 2.8059zM5.373 5.2234v5.5987L10.7 8.0227Zm7.204-4.1692c-.3095-.1627-.8695-.1627-1.179 0L5.4458 4.182a.6432.6432 0 0 0-.0179.0097l-.005.003.0093.0052.0136.0074 5.9522 3.1279c.3095.1626.8695.1626 1.179 0l5.9522-3.128a.643.643 0 0 0 .0179-.0097l.005-.0029-.0094-.0053-.0136-.0073zm6.9169.343.3784.2273.0636.0389c.1094.0672.2.125.2847.1817.9042.6065 1.2414 1.2677 1.248 2.6433l.0001.0419h-.9368c0-.6024-.0704-.9983-.2101-1.2773-.1158-.2312-.2896-.4078-.6068-.6228l-.0181-.0122a7.2984 7.2984 0 0 0-.2397-.1532l-.1101-.067-.3381-.203z" }) + ] + } + ); +}); + +export { SiFantom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.cjs new file mode 100644 index 000000000..62651f1e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#855DCD"; +const SiFarcaster = React__namespace.forwardRef(function SiFarcaster2({ title = "Farcaster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.24.24H5.76C2.5789.24 0 2.8188 0 6v12c0 3.1811 2.5789 5.76 5.76 5.76h12.48c3.1812 0 5.76-2.5789 5.76-5.76V6C24 2.8188 21.4212.24 18.24.24m.8155 17.1662v.504c.2868-.0256.5458.1905.5439.479v.5688h-5.1437v-.5688c-.0019-.2885.2576-.5047.5443-.479v-.504c0-.22.1525-.402.358-.458l-.0095-4.3645c-.1589-1.7366-1.6402-3.0979-3.4435-3.0979-1.8038 0-3.2846 1.3613-3.4435 3.0979l-.0096 4.3578c.2276.0424.5318.2083.5395.4648v.504c.2863-.0256.5457.1905.5438.479v.5688H4.3915v-.5688c-.0019-.2885.2575-.5047.5438-.479v-.504c0-.2529.2011-.4548.4536-.4724v-7.895h-.4905L4.2898 7.008l2.6405-.0005V5.0419h9.9495v1.9656h2.8219l-.6091 2.0314h-.4901v7.8949c.2519.0177.453.2195.453.4724" }) + ] + } + ); +}); + +exports.default = SiFarcaster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.d.ts new file mode 100644 index 000000000..83cf28e3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#855DCD"; +declare const SiFarcaster: IconType; +export { SiFarcaster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.mjs new file mode 100644 index 000000000..73db91531 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFarcaster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#855DCD"; +const SiFarcaster = React.forwardRef(function SiFarcaster2({ title = "Farcaster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.24.24H5.76C2.5789.24 0 2.8188 0 6v12c0 3.1811 2.5789 5.76 5.76 5.76h12.48c3.1812 0 5.76-2.5789 5.76-5.76V6C24 2.8188 21.4212.24 18.24.24m.8155 17.1662v.504c.2868-.0256.5458.1905.5439.479v.5688h-5.1437v-.5688c-.0019-.2885.2576-.5047.5443-.479v-.504c0-.22.1525-.402.358-.458l-.0095-4.3645c-.1589-1.7366-1.6402-3.0979-3.4435-3.0979-1.8038 0-3.2846 1.3613-3.4435 3.0979l-.0096 4.3578c.2276.0424.5318.2083.5395.4648v.504c.2863-.0256.5457.1905.5438.479v.5688H4.3915v-.5688c-.0019-.2885.2575-.5047.5438-.479v-.504c0-.2529.2011-.4548.4536-.4724v-7.895h-.4905L4.2898 7.008l2.6405-.0005V5.0419h9.9495v1.9656h2.8219l-.6091 2.0314h-.4901v7.8949c.2519.0177.453.2195.453.4724" }) + ] + } + ); +}); + +export { SiFarcaster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.cjs new file mode 100644 index 000000000..979d5362d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A6ECE"; +const SiFareharbor = React__namespace.forwardRef(function SiFareharbor2({ title = "FareHarbor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.4746 3.9355c.0004.0135.002.0276.002.041 0 .7804-.6318 1.4122-1.4122 1.4122-.0197 0-.039-.0012-.0585-.002v1.4746c.0195-.0018.0385-.0058.0585-.0058.3534 0 .6387.2873.6387.6406a.6379.6379 0 0 1-.6387.6387c-.02 0-.039-.004-.0585-.0059v1.168c.0195-.0018.0385-.0059.0585-.0059a.6379.6379 0 0 1 .6387.6387c0 .3533-.2853.6406-.6387.6406-.02 0-.039-.004-.0585-.0059v1.166c.0195-.0018.0385-.0059.0585-.0059.3534 0 .6387.2873.6387.6407a.6379.6379 0 0 1-.6387.6386c-.02 0-.039-.004-.0585-.0059v1.4317c.0195-.0008.0388-.004.0585-.004.7804 0 1.4122.6338 1.4122 1.4141v.0117h19.0879v-.0117c0-.7803.6317-1.414 1.412-1.414.0064 0 .0114.0019.0176.002v-1.4258c-.0063.0002-.0112.002-.0175.002-.3534 0-.6407-.2854-.6407-.6387a.6412.6412 0 0 1 .6407-.6406c.0064 0 .0112.0018.0175.002v-1.1582c-.0063.0002-.0112.002-.0175.002a.6412.6412 0 0 1-.6407-.6406c0-.3534.2873-.6387.6407-.6387.0064 0 .0112.0018.0175.002V8.1327c-.0063.0002-.0112.002-.0175.002-.3534 0-.6407-.2854-.6407-.6387a.6412.6412 0 0 1 .6407-.6406c.0064 0 .0112.0017.0175.002V5.3886h-.0175c-.7804 0-1.4121-.6318-1.4121-1.4121 0-.0135.0016-.0276.002-.041zm9.5176.832c.035.0001.07.0088.1016.0274l3.3906 2.0059a.1996.1996 0 0 1 .121.1836.2015.2015 0 0 1-.2011.2011h-.8204v3.6094h1.0176v1.0567l-.6406.6015v1.795h5.371c.187 0 .34-.174.34-.3887V6.039c0-.2148-.153-.3887-.34-.3887h-4.7948V5.248h4.795c.4082 0 .7402.355.7402.791v7.8204c0 .436-.332.791-.7403.791H3.6836c-.4082 0-.7402-.355-.7402-.791V6.039c0-.4361.332-.791.7402-.791h4.7187v.4023H3.6836c-.1868 0-.3398.174-.3398.3887v7.8203c0 .2147.153.3886.3398.3886h5.3281v-1.8046l-.6308-.5918v-1.0567h1.0175V7.1855H8.582a.2032.2032 0 0 1-.1953-.1484.1993.1993 0 0 1 .0918-.2246l3.4121-2.0176a.1977.1977 0 0 1 .1016-.0273zm0 .4337-2.6777 1.582h5.3535zm7.1445 1.662a.203.203 0 0 1 .166.1485.2001.2001 0 0 1-.1406.2461l-3.2305.877a.2007.2007 0 0 1-.0527.0078.2008.2008 0 0 1-.1934-.1485.2002.2002 0 0 1 .1407-.246l3.2304-.879a.1993.1993 0 0 1 .0801-.0058zM5.0312 6.916a.202.202 0 0 1 .0801.0059l2.9278.8261a.201.201 0 0 1-.0547.3946.1996.1996 0 0 1-.0547-.0078l-2.9258-.8262a.201.201 0 0 1-.1387-.248.1983.1983 0 0 1 .166-.1446Zm4.7696.2695v3.6094h1.996v-.6094c-.5804-.0931-1.0253-.5967-1.0253-1.203 0-.6064.4449-1.11 1.0254-1.2032v-.5938zm2.3984 0v.5977c.5734.0992 1.0117.5979 1.0117 1.1992 0 .6014-.4383 1.102-1.0117 1.2012v.6113h1.9824V7.1855Zm-.207.9786c-.451 0-.8184.3674-.8184.8183 0 .451.3674.8184.8184.8184s.8164-.3674.8164-.8184-.3654-.8183-.8164-.8183zm-7.8477.6308h3.4297a.1998.1998 0 0 1 .1992.2012.1999.1999 0 0 1-.1992.2012H4.1445a.2015.2015 0 0 1-.2011-.2012.2015.2015 0 0 1 .2011-.2012zm12.1465 0h3.4297a.2015.2015 0 0 1 .2012.2012.2015.2015 0 0 1-.2012.2012H16.291a.2015.2015 0 0 1-.2012-.2012.2015.2015 0 0 1 .2012-.2012zm-8.2832.9024a.2011.2011 0 0 1 .17.1425.2009.2009 0 0 1-.1348.25l-2.7207.8204a.2043.2043 0 0 1-.0586.0078.2021.2021 0 0 1-.1934-.1426.2008.2008 0 0 1 .1348-.25l2.7226-.8203a.2033.2033 0 0 1 .0801-.0078zm7.8496 0a.204.204 0 0 1 .0801.0078l3.0762.9238a.2009.2009 0 0 1 .1347.25.2018.2018 0 0 1-.1933.1426.1912.1912 0 0 1-.0567-.0078l-3.0761-.9238a.201.201 0 0 1-.1348-.25.2007.2007 0 0 1 .17-.1426zm-7.0762 1.5v.4804l.5157.4825h5.3886l.5157-.4825v-.4804H9.3984Zm.631 1.3652v1.1563l3.0038-1.1563Zm4.121 0-4.0937 1.5762c-.009.0034-.0184.0018-.0274.0039v.1054h2.5352l2.6113-1.1074v-.5781Zm1.0254 1.0137-1.6074.6718h1.6074zM0 17.6172v2.4121h.5078v-.9336h1.1777v-.4824H.5078v-.5137h1.336v-.4824zm9.5195 0v2.4121h.4844v-1.0117h1.002v1.0117h.5058v-2.4121h-.5058v.9433h-1.002v-.9433zm10.9434.3476c-.6406 0-1.1074.4721-1.1074 1.0489v.0059c0 .5766.461 1.0449 1.1015 1.0449.6407 0 1.1055-.4742 1.1055-1.0508v-.0059c0-.5766-.459-1.043-1.0996-1.043zm-17.5645.0215-.8906 2.043h.4668l.1895-.455h.877l.1894.455h.4785l-.8906-2.043zm9.9805 0-.8887 2.043h.4649l.1894-.455h.879l.1894.455h.4766l-.8887-2.043ZM4.707 18v2.0293h.457v-.6504h.3575l.4453.6504H6.5l-.5059-.7246c.264-.0955.4454-.3015.4454-.629V18.67c0-.4173-.2939-.6699-.7832-.6699Zm2.4395 0v2.0293h1.582v-.3984h-1.127v-.4258h.9786v-.3965h-.9785v-.4121h1.1113V18Zm7.541 0v2.0293h.457v-.6504h.3594l.4453.6504h.5332l-.5078-.7246c.264-.0955.4453-.3015.4453-.629V18.67c0-.4173-.2938-.6699-.7832-.6699Zm2.3828 0v2.0293h.9863c.4686 0 .7774-.1857.7774-.5566v-.006c0-.2723-.1485-.4082-.3887-.498.1483-.081.2735-.2085.2735-.4375v-.0059c0-.3187-.2616-.5253-.6856-.5253Zm5.1348 0v2.0293h.457v-.6504h.3594l.4453.6504H24l-.5078-.7246c.264-.0955.4453-.3015.4453-.629V18.67c0-.4173-.2938-.6699-.7832-.6699Zm-1.748.377c.3678 0 .6269.289.6269.6367v.0059c0 .3476-.2534.6328-.6211.6328-.3677 0-.629-.2909-.629-.6387v-.0059c0-.3478.2555-.6308.6231-.6308zm-2.9434.0136h.4511c.1928 0 .3008.0758.3008.209v.006c0 .1506-.1285.2148-.33.2148h-.422zm-12.3496.0117h.453c.2225 0 .3595.0998.3595.291v.006c0 .171-.1272.287-.3496.287h-.463Zm9.9804 0h.4551c.2224 0 .3574.0998.3574.291v.006c0 .171-.1271.287-.3496.287h-.4629zm7.5176 0h.455c.2225 0 .3575.0998.3575.291v.006c0 .171-.1271.287-.3496.287h-.4629zm-19.5605.1192.2773.6582h-.5527Zm9.9824 0 .2754.6582h-.5508zm4.4297.67h.5293c.2343 0 .3379.0844.3379.2206v.006c0 .1506-.1225.2187-.3243.2187h-.543z" }) + ] + } + ); +}); + +exports.default = SiFareharbor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.d.ts new file mode 100644 index 000000000..ccaed824b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A6ECE"; +declare const SiFareharbor: IconType; +export { SiFareharbor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.mjs new file mode 100644 index 000000000..54e8f0344 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFareharbor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A6ECE"; +const SiFareharbor = React.forwardRef(function SiFareharbor2({ title = "FareHarbor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.4746 3.9355c.0004.0135.002.0276.002.041 0 .7804-.6318 1.4122-1.4122 1.4122-.0197 0-.039-.0012-.0585-.002v1.4746c.0195-.0018.0385-.0058.0585-.0058.3534 0 .6387.2873.6387.6406a.6379.6379 0 0 1-.6387.6387c-.02 0-.039-.004-.0585-.0059v1.168c.0195-.0018.0385-.0059.0585-.0059a.6379.6379 0 0 1 .6387.6387c0 .3533-.2853.6406-.6387.6406-.02 0-.039-.004-.0585-.0059v1.166c.0195-.0018.0385-.0059.0585-.0059.3534 0 .6387.2873.6387.6407a.6379.6379 0 0 1-.6387.6386c-.02 0-.039-.004-.0585-.0059v1.4317c.0195-.0008.0388-.004.0585-.004.7804 0 1.4122.6338 1.4122 1.4141v.0117h19.0879v-.0117c0-.7803.6317-1.414 1.412-1.414.0064 0 .0114.0019.0176.002v-1.4258c-.0063.0002-.0112.002-.0175.002-.3534 0-.6407-.2854-.6407-.6387a.6412.6412 0 0 1 .6407-.6406c.0064 0 .0112.0018.0175.002v-1.1582c-.0063.0002-.0112.002-.0175.002a.6412.6412 0 0 1-.6407-.6406c0-.3534.2873-.6387.6407-.6387.0064 0 .0112.0018.0175.002V8.1327c-.0063.0002-.0112.002-.0175.002-.3534 0-.6407-.2854-.6407-.6387a.6412.6412 0 0 1 .6407-.6406c.0064 0 .0112.0017.0175.002V5.3886h-.0175c-.7804 0-1.4121-.6318-1.4121-1.4121 0-.0135.0016-.0276.002-.041zm9.5176.832c.035.0001.07.0088.1016.0274l3.3906 2.0059a.1996.1996 0 0 1 .121.1836.2015.2015 0 0 1-.2011.2011h-.8204v3.6094h1.0176v1.0567l-.6406.6015v1.795h5.371c.187 0 .34-.174.34-.3887V6.039c0-.2148-.153-.3887-.34-.3887h-4.7948V5.248h4.795c.4082 0 .7402.355.7402.791v7.8204c0 .436-.332.791-.7403.791H3.6836c-.4082 0-.7402-.355-.7402-.791V6.039c0-.4361.332-.791.7402-.791h4.7187v.4023H3.6836c-.1868 0-.3398.174-.3398.3887v7.8203c0 .2147.153.3886.3398.3886h5.3281v-1.8046l-.6308-.5918v-1.0567h1.0175V7.1855H8.582a.2032.2032 0 0 1-.1953-.1484.1993.1993 0 0 1 .0918-.2246l3.4121-2.0176a.1977.1977 0 0 1 .1016-.0273zm0 .4337-2.6777 1.582h5.3535zm7.1445 1.662a.203.203 0 0 1 .166.1485.2001.2001 0 0 1-.1406.2461l-3.2305.877a.2007.2007 0 0 1-.0527.0078.2008.2008 0 0 1-.1934-.1485.2002.2002 0 0 1 .1407-.246l3.2304-.879a.1993.1993 0 0 1 .0801-.0058zM5.0312 6.916a.202.202 0 0 1 .0801.0059l2.9278.8261a.201.201 0 0 1-.0547.3946.1996.1996 0 0 1-.0547-.0078l-2.9258-.8262a.201.201 0 0 1-.1387-.248.1983.1983 0 0 1 .166-.1446Zm4.7696.2695v3.6094h1.996v-.6094c-.5804-.0931-1.0253-.5967-1.0253-1.203 0-.6064.4449-1.11 1.0254-1.2032v-.5938zm2.3984 0v.5977c.5734.0992 1.0117.5979 1.0117 1.1992 0 .6014-.4383 1.102-1.0117 1.2012v.6113h1.9824V7.1855Zm-.207.9786c-.451 0-.8184.3674-.8184.8183 0 .451.3674.8184.8184.8184s.8164-.3674.8164-.8184-.3654-.8183-.8164-.8183zm-7.8477.6308h3.4297a.1998.1998 0 0 1 .1992.2012.1999.1999 0 0 1-.1992.2012H4.1445a.2015.2015 0 0 1-.2011-.2012.2015.2015 0 0 1 .2011-.2012zm12.1465 0h3.4297a.2015.2015 0 0 1 .2012.2012.2015.2015 0 0 1-.2012.2012H16.291a.2015.2015 0 0 1-.2012-.2012.2015.2015 0 0 1 .2012-.2012zm-8.2832.9024a.2011.2011 0 0 1 .17.1425.2009.2009 0 0 1-.1348.25l-2.7207.8204a.2043.2043 0 0 1-.0586.0078.2021.2021 0 0 1-.1934-.1426.2008.2008 0 0 1 .1348-.25l2.7226-.8203a.2033.2033 0 0 1 .0801-.0078zm7.8496 0a.204.204 0 0 1 .0801.0078l3.0762.9238a.2009.2009 0 0 1 .1347.25.2018.2018 0 0 1-.1933.1426.1912.1912 0 0 1-.0567-.0078l-3.0761-.9238a.201.201 0 0 1-.1348-.25.2007.2007 0 0 1 .17-.1426zm-7.0762 1.5v.4804l.5157.4825h5.3886l.5157-.4825v-.4804H9.3984Zm.631 1.3652v1.1563l3.0038-1.1563Zm4.121 0-4.0937 1.5762c-.009.0034-.0184.0018-.0274.0039v.1054h2.5352l2.6113-1.1074v-.5781Zm1.0254 1.0137-1.6074.6718h1.6074zM0 17.6172v2.4121h.5078v-.9336h1.1777v-.4824H.5078v-.5137h1.336v-.4824zm9.5195 0v2.4121h.4844v-1.0117h1.002v1.0117h.5058v-2.4121h-.5058v.9433h-1.002v-.9433zm10.9434.3476c-.6406 0-1.1074.4721-1.1074 1.0489v.0059c0 .5766.461 1.0449 1.1015 1.0449.6407 0 1.1055-.4742 1.1055-1.0508v-.0059c0-.5766-.459-1.043-1.0996-1.043zm-17.5645.0215-.8906 2.043h.4668l.1895-.455h.877l.1894.455h.4785l-.8906-2.043zm9.9805 0-.8887 2.043h.4649l.1894-.455h.879l.1894.455h.4766l-.8887-2.043ZM4.707 18v2.0293h.457v-.6504h.3575l.4453.6504H6.5l-.5059-.7246c.264-.0955.4454-.3015.4454-.629V18.67c0-.4173-.2939-.6699-.7832-.6699Zm2.4395 0v2.0293h1.582v-.3984h-1.127v-.4258h.9786v-.3965h-.9785v-.4121h1.1113V18Zm7.541 0v2.0293h.457v-.6504h.3594l.4453.6504h.5332l-.5078-.7246c.264-.0955.4453-.3015.4453-.629V18.67c0-.4173-.2938-.6699-.7832-.6699Zm2.3828 0v2.0293h.9863c.4686 0 .7774-.1857.7774-.5566v-.006c0-.2723-.1485-.4082-.3887-.498.1483-.081.2735-.2085.2735-.4375v-.0059c0-.3187-.2616-.5253-.6856-.5253Zm5.1348 0v2.0293h.457v-.6504h.3594l.4453.6504H24l-.5078-.7246c.264-.0955.4453-.3015.4453-.629V18.67c0-.4173-.2938-.6699-.7832-.6699Zm-1.748.377c.3678 0 .6269.289.6269.6367v.0059c0 .3476-.2534.6328-.6211.6328-.3677 0-.629-.2909-.629-.6387v-.0059c0-.3478.2555-.6308.6231-.6308zm-2.9434.0136h.4511c.1928 0 .3008.0758.3008.209v.006c0 .1506-.1285.2148-.33.2148h-.422zm-12.3496.0117h.453c.2225 0 .3595.0998.3595.291v.006c0 .171-.1272.287-.3496.287h-.463Zm9.9804 0h.4551c.2224 0 .3574.0998.3574.291v.006c0 .171-.1271.287-.3496.287h-.4629zm7.5176 0h.455c.2225 0 .3575.0998.3575.291v.006c0 .171-.1271.287-.3496.287h-.4629zm-19.5605.1192.2773.6582h-.5527Zm9.9824 0 .2754.6582h-.5508zm4.4297.67h.5293c.2343 0 .3379.0844.3379.2206v.006c0 .1506-.1225.2187-.3243.2187h-.543z" }) + ] + } + ); +}); + +export { SiFareharbor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.cjs new file mode 100644 index 000000000..26e26229b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFarfetch = React__namespace.forwardRef(function SiFarfetch2({ title = "FARFETCH", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.248V6.749H13.586c-3.062 0-4.737 1.837-4.737 4.488v2.231H4.321V8.599c0-3.425.332-5.074 4.212-5.074H24V0H6.259C2.336 0 0 2.589 0 6.386V24h4.321v-7.033h4.527V24h4.339v-7.033H24v-3.499H13.188v-1.155c0-1.461.232-2.064 2.257-2.064H24z" }) + ] + } + ); +}); + +exports.default = SiFarfetch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.d.ts new file mode 100644 index 000000000..c01107b8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFarfetch: IconType; +export { SiFarfetch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.mjs new file mode 100644 index 000000000..00c462ac5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFarfetch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFarfetch = React.forwardRef(function SiFarfetch2({ title = "FARFETCH", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.248V6.749H13.586c-3.062 0-4.737 1.837-4.737 4.488v2.231H4.321V8.599c0-3.425.332-5.074 4.212-5.074H24V0H6.259C2.336 0 0 2.589 0 6.386V24h4.321v-7.033h4.527V24h4.339v-7.033H24v-3.499H13.188v-1.155c0-1.461.232-2.064 2.257-2.064H24z" }) + ] + } + ); +}); + +export { SiFarfetch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.cjs new file mode 100644 index 000000000..c5376c53c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009688"; +const SiFastapi = React__namespace.forwardRef(function SiFastapi2({ title = "FastAPI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .0387C5.3729.0384.0003 5.3931 0 11.9988c-.001 6.6066 5.372 11.9628 12 11.9625 6.628.0003 12.001-5.3559 12-11.9625-.0003-6.6057-5.3729-11.9604-12-11.96m-.829 5.4153h7.55l-7.5805 5.3284h5.1828L5.279 18.5436q2.9466-6.5444 5.892-13.0896" }) + ] + } + ); +}); + +exports.default = SiFastapi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.d.ts new file mode 100644 index 000000000..7bdbaafaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009688"; +declare const SiFastapi: IconType; +export { SiFastapi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.mjs new file mode 100644 index 000000000..49363ef97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastapi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009688"; +const SiFastapi = React.forwardRef(function SiFastapi2({ title = "FastAPI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .0387C5.3729.0384.0003 5.3931 0 11.9988c-.001 6.6066 5.372 11.9628 12 11.9625 6.628.0003 12.001-5.3559 12-11.9625-.0003-6.6057-5.3729-11.9604-12-11.96m-.829 5.4153h7.55l-7.5805 5.3284h5.1828L5.279 18.5436q2.9466-6.5444 5.892-13.0896" }) + ] + } + ); +}); + +export { SiFastapi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.cjs new file mode 100644 index 000000000..d9ceb95d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFastify = React__namespace.forwardRef(function SiFastify2({ title = "Fastify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.245 6.49L24 4.533l-.031-.121-7.473 1.967c.797-1.153.523-2.078.523-2.078s-2.387 1.524-4.193 1.485c-1.804-.04-2.387-.52-5.155.362-2.768.882-3.551 3.59-4.351 4.173-.804.583-3.32 2.477-3.32 2.477l.006.034 2.27-.724s-.622.585-1.945 2.37l-.062-.057.002.011s1.064 1.626 2.107 1.324a2.14 2.14 0 0 0 .353-.147c.419.234.967.463 1.572.525 0 0-.41-.475-.752-1.017l.238-.154.865.318-.096-.812c.003-.003.006-.003.008-.006l.849.311-.105-.738a5.65 5.65 0 0 1 .322-.158l.885-3.345 3.662-2.497-.291.733c-.741 1.826-2.135 2.256-2.135 2.256l-.582.22c-.433.512-.614.637-.764 2.353.348-.088.682-.107.984-.028 1.564.421 2.107 2.307 1.685 2.827-.104.13-.356.354-.673.617H7.77l-.008.514-.065.051h-.645l-.009.504-.17.127c-.607.011-1.373-.518-1.373-.518 0 .481.401 1.225.401 1.225l.07-.034-.061.045s1.625 1.083 2.646.681c.91-.356 3.263-2.213 5.296-3.093l6.15-1.62.811-2.1-4.688 1.235v-1.889l5.5-1.448.811-2.1-6.31 1.662V8.367zm-11.163 4l1.459-.384.02.074-.455 1.179-1.513.398zm.503 2.526l-1.512.398.489-1.266 1.459-.385.02.074zm1.971-.424l-1.513.398.49-1.266 1.459-.385.02.073Z" }) + ] + } + ); +}); + +exports.default = SiFastify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.d.ts new file mode 100644 index 000000000..cbb7ad7c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFastify: IconType; +export { SiFastify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.mjs new file mode 100644 index 000000000..b28b05a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFastify = React.forwardRef(function SiFastify2({ title = "Fastify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.245 6.49L24 4.533l-.031-.121-7.473 1.967c.797-1.153.523-2.078.523-2.078s-2.387 1.524-4.193 1.485c-1.804-.04-2.387-.52-5.155.362-2.768.882-3.551 3.59-4.351 4.173-.804.583-3.32 2.477-3.32 2.477l.006.034 2.27-.724s-.622.585-1.945 2.37l-.062-.057.002.011s1.064 1.626 2.107 1.324a2.14 2.14 0 0 0 .353-.147c.419.234.967.463 1.572.525 0 0-.41-.475-.752-1.017l.238-.154.865.318-.096-.812c.003-.003.006-.003.008-.006l.849.311-.105-.738a5.65 5.65 0 0 1 .322-.158l.885-3.345 3.662-2.497-.291.733c-.741 1.826-2.135 2.256-2.135 2.256l-.582.22c-.433.512-.614.637-.764 2.353.348-.088.682-.107.984-.028 1.564.421 2.107 2.307 1.685 2.827-.104.13-.356.354-.673.617H7.77l-.008.514-.065.051h-.645l-.009.504-.17.127c-.607.011-1.373-.518-1.373-.518 0 .481.401 1.225.401 1.225l.07-.034-.061.045s1.625 1.083 2.646.681c.91-.356 3.263-2.213 5.296-3.093l6.15-1.62.811-2.1-4.688 1.235v-1.889l5.5-1.448.811-2.1-6.31 1.662V8.367zm-11.163 4l1.459-.384.02.074-.455 1.179-1.513.398zm.503 2.526l-1.512.398.489-1.266 1.459-.385.02.074zm1.971-.424l-1.513.398.49-1.266 1.459-.385.02.073Z" }) + ] + } + ); +}); + +export { SiFastify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.cjs new file mode 100644 index 000000000..e20fcbfb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00F200"; +const SiFastlane = React__namespace.forwardRef(function SiFastlane2({ title = "Fastlane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.144 19.182a1.445 1.445 0 00-1.237-.868l-1.615-4.976-.37-1.135c-.017.01-.112.052-.13.06-.008.01-.025.01-.033.018a.366.366 0 00-.07.037.472.472 0 01-.102.043c-.043.016-.078.034-.12.042-.035.01-.07.027-.104.036-.04.01-.083.025-.126.034-.034.01-.068.017-.103.026a.584.584 0 01-.137.017c-.035.01-.07.01-.103.017-.028 0-.054 0-.08.01h-.16c-.052 0-.095 0-.146-.01-.035 0-.07 0-.095-.01l-.165-.025c-.026-.01-.052-.01-.086-.017a2.456 2.456 0 01-.25-.06 2.498 2.498 0 01-1.633-3.137C1.7 7.97 3.102 7.23 4.417 7.65l.344-1.1A3.673 3.673 0 00.167 8.94a3.674 3.674 0 002.39 4.59 3.877 3.877 0 001.624.128l1.634 5.035a1.432 1.432 0 00-.232.267 1.47 1.47 0 00.387 2.053 1.47 1.47 0 002.2-.662 1.572 1.572 0 00-.03-1.167zM11.901.412a3.656 3.656 0 00-3.62 3.697c.01.54.147 1.09.38 1.58L4.381 8.8a1.468 1.468 0 00-.327-.138 1.47 1.47 0 00-1.83.997c-.233.78.214 1.596.996 1.83.103.032.207.05.31.05.404.025.8-.11 1.09-.38.2-.18.354-.4.43-.678a1.44 1.44 0 00.018-.764l4.237-3.08.962-.702c-.017-.018-.077-.086-.094-.103l-.026-.026c-.017-.018-.035-.036-.052-.06a.46.46 0 01-.07-.087 1.952 1.952 0 00-.076-.103c-.026-.026-.043-.06-.07-.086a1.027 1.027 0 01-.068-.11.56.56 0 00-.06-.096.746.746 0 01-.06-.12c-.017-.034-.034-.06-.043-.095l-.026-.07c-.006-.017-.014-.042-.023-.06-.01-.034-.025-.07-.034-.094-.016-.044-.025-.096-.042-.147l-.025-.096c-.01-.05-.017-.11-.026-.163 0-.025-.01-.05-.018-.085a2.269 2.269 0 01-.017-.26 2.502 2.502 0 012.475-2.526 2.502 2.502 0 012.526 2.475l1.152-.01C15.576 2.01 13.92.386 11.9.41zm11.908 8.664a3.664 3.664 0 00-4.632-2.303 3.803 3.803 0 00-1.385.851l-4.28-3.109c.026-.113.034-.233.034-.354a1.483 1.483 0 00-1.512-1.435 1.483 1.483 0 00-1.436 1.513 1.47 1.47 0 00.744 1.23c.232.128.5.205.782.197.267-.01.525-.086.73-.224l4.239 3.077.962.705.07-.12c.008-.008.008-.025.016-.034.008-.027.025-.044.034-.07.017-.034.034-.06.05-.094a.46.46 0 00.07-.112l.06-.085c.026-.035.052-.07.086-.104.026-.026.043-.05.07-.086l.094-.095.077-.078c.018-.017.035-.034.06-.05.018-.018.036-.027.053-.044a.282.282 0 01.086-.06c.04-.026.084-.052.12-.078a.528.528 0 01.084-.05c.052-.027.094-.053.146-.08.026-.008.052-.025.077-.033a2.51 2.51 0 013.412 1.477 2.507 2.507 0 01-1.572 3.17l.37 1.09c1.9-.627 2.93-2.7 2.294-4.615zm-2.166.62a1.474 1.474 0 00-1.881-.895 1.532 1.532 0 00-.284.14c-.344.214-.584.56-.662.945-.05.258-.043.533.052.8.094.257.24.463.438.627l-1.616 4.976-.37 1.134c.018 0 .112.026.138.026.017 0 .026 0 .043.01.028.008.054.008.08.017.035.01.07.017.104.025.043.01.086.026.13.035.033.01.068.017.102.034l.12.05c.035.018.07.027.103.044.04.017.076.043.12.06.033.017.06.034.093.052.026.01.043.025.06.043.018.01.035.024.052.033.026.018.06.035.086.06a.58.58 0 01.113.096c.025.016.05.042.077.06.043.033.077.076.12.12.02.016.043.034.06.06.06.06.11.13.164.197a2.505 2.505 0 01-.516 3.497 2.507 2.507 0 01-3.5-.515l-.927.686c1.205 1.616 3.5 1.96 5.116.757 1.615-1.203 1.96-3.497.756-5.112a3.82 3.82 0 00-1.237-1.058l1.632-5.036a1.479 1.479 0 001.238-1.968zM18.2 18.905a1.446 1.446 0 00-1.315-.558 1.38 1.38 0 00-.748.3c-.215.163-.37.378-.465.61H9.243c0 .017.01.12.02.137 0 .018 0 .026.01.043 0 .026.01.052.01.078 0 .034.007.07.007.112 0 .043 0 .086.01.128v.112c0 .043-.01.086-.01.13 0 .034-.01.068-.01.11-.01.044-.02.087-.02.138-.007.035-.007.07-.015.103-.01.025-.01.05-.017.08-.01.014-.01.04-.018.06-.01.03-.017.066-.026.1-.017.043-.034.095-.052.14-.01.032-.025.06-.034.092a2.771 2.771 0 01-.077.146c-.016.025-.024.05-.033.077a2.132 2.132 0 01-.138.215 2.504 2.504 0 01-3.49.583 2.501 2.501 0 01-.585-3.489l-.937-.67a3.658 3.658 0 00.86 5.096 3.656 3.656 0 005.095-.86c.318-.445.524-.97.628-1.502h5.294a1.479 1.479 0 002.252.567c.61-.508.73-1.436.232-2.08z" }) + ] + } + ); +}); + +exports.default = SiFastlane; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.d.ts new file mode 100644 index 000000000..6970c6b02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00F200"; +declare const SiFastlane: IconType; +export { SiFastlane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.mjs new file mode 100644 index 000000000..a2cc84fac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastlane.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00F200"; +const SiFastlane = React.forwardRef(function SiFastlane2({ title = "Fastlane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.144 19.182a1.445 1.445 0 00-1.237-.868l-1.615-4.976-.37-1.135c-.017.01-.112.052-.13.06-.008.01-.025.01-.033.018a.366.366 0 00-.07.037.472.472 0 01-.102.043c-.043.016-.078.034-.12.042-.035.01-.07.027-.104.036-.04.01-.083.025-.126.034-.034.01-.068.017-.103.026a.584.584 0 01-.137.017c-.035.01-.07.01-.103.017-.028 0-.054 0-.08.01h-.16c-.052 0-.095 0-.146-.01-.035 0-.07 0-.095-.01l-.165-.025c-.026-.01-.052-.01-.086-.017a2.456 2.456 0 01-.25-.06 2.498 2.498 0 01-1.633-3.137C1.7 7.97 3.102 7.23 4.417 7.65l.344-1.1A3.673 3.673 0 00.167 8.94a3.674 3.674 0 002.39 4.59 3.877 3.877 0 001.624.128l1.634 5.035a1.432 1.432 0 00-.232.267 1.47 1.47 0 00.387 2.053 1.47 1.47 0 002.2-.662 1.572 1.572 0 00-.03-1.167zM11.901.412a3.656 3.656 0 00-3.62 3.697c.01.54.147 1.09.38 1.58L4.381 8.8a1.468 1.468 0 00-.327-.138 1.47 1.47 0 00-1.83.997c-.233.78.214 1.596.996 1.83.103.032.207.05.31.05.404.025.8-.11 1.09-.38.2-.18.354-.4.43-.678a1.44 1.44 0 00.018-.764l4.237-3.08.962-.702c-.017-.018-.077-.086-.094-.103l-.026-.026c-.017-.018-.035-.036-.052-.06a.46.46 0 01-.07-.087 1.952 1.952 0 00-.076-.103c-.026-.026-.043-.06-.07-.086a1.027 1.027 0 01-.068-.11.56.56 0 00-.06-.096.746.746 0 01-.06-.12c-.017-.034-.034-.06-.043-.095l-.026-.07c-.006-.017-.014-.042-.023-.06-.01-.034-.025-.07-.034-.094-.016-.044-.025-.096-.042-.147l-.025-.096c-.01-.05-.017-.11-.026-.163 0-.025-.01-.05-.018-.085a2.269 2.269 0 01-.017-.26 2.502 2.502 0 012.475-2.526 2.502 2.502 0 012.526 2.475l1.152-.01C15.576 2.01 13.92.386 11.9.41zm11.908 8.664a3.664 3.664 0 00-4.632-2.303 3.803 3.803 0 00-1.385.851l-4.28-3.109c.026-.113.034-.233.034-.354a1.483 1.483 0 00-1.512-1.435 1.483 1.483 0 00-1.436 1.513 1.47 1.47 0 00.744 1.23c.232.128.5.205.782.197.267-.01.525-.086.73-.224l4.239 3.077.962.705.07-.12c.008-.008.008-.025.016-.034.008-.027.025-.044.034-.07.017-.034.034-.06.05-.094a.46.46 0 00.07-.112l.06-.085c.026-.035.052-.07.086-.104.026-.026.043-.05.07-.086l.094-.095.077-.078c.018-.017.035-.034.06-.05.018-.018.036-.027.053-.044a.282.282 0 01.086-.06c.04-.026.084-.052.12-.078a.528.528 0 01.084-.05c.052-.027.094-.053.146-.08.026-.008.052-.025.077-.033a2.51 2.51 0 013.412 1.477 2.507 2.507 0 01-1.572 3.17l.37 1.09c1.9-.627 2.93-2.7 2.294-4.615zm-2.166.62a1.474 1.474 0 00-1.881-.895 1.532 1.532 0 00-.284.14c-.344.214-.584.56-.662.945-.05.258-.043.533.052.8.094.257.24.463.438.627l-1.616 4.976-.37 1.134c.018 0 .112.026.138.026.017 0 .026 0 .043.01.028.008.054.008.08.017.035.01.07.017.104.025.043.01.086.026.13.035.033.01.068.017.102.034l.12.05c.035.018.07.027.103.044.04.017.076.043.12.06.033.017.06.034.093.052.026.01.043.025.06.043.018.01.035.024.052.033.026.018.06.035.086.06a.58.58 0 01.113.096c.025.016.05.042.077.06.043.033.077.076.12.12.02.016.043.034.06.06.06.06.11.13.164.197a2.505 2.505 0 01-.516 3.497 2.507 2.507 0 01-3.5-.515l-.927.686c1.205 1.616 3.5 1.96 5.116.757 1.615-1.203 1.96-3.497.756-5.112a3.82 3.82 0 00-1.237-1.058l1.632-5.036a1.479 1.479 0 001.238-1.968zM18.2 18.905a1.446 1.446 0 00-1.315-.558 1.38 1.38 0 00-.748.3c-.215.163-.37.378-.465.61H9.243c0 .017.01.12.02.137 0 .018 0 .026.01.043 0 .026.01.052.01.078 0 .034.007.07.007.112 0 .043 0 .086.01.128v.112c0 .043-.01.086-.01.13 0 .034-.01.068-.01.11-.01.044-.02.087-.02.138-.007.035-.007.07-.015.103-.01.025-.01.05-.017.08-.01.014-.01.04-.018.06-.01.03-.017.066-.026.1-.017.043-.034.095-.052.14-.01.032-.025.06-.034.092a2.771 2.771 0 01-.077.146c-.016.025-.024.05-.033.077a2.132 2.132 0 01-.138.215 2.504 2.504 0 01-3.49.583 2.501 2.501 0 01-.585-3.489l-.937-.67a3.658 3.658 0 00.86 5.096 3.656 3.656 0 005.095-.86c.318-.445.524-.97.628-1.502h5.294a1.479 1.479 0 002.252.567c.61-.508.73-1.436.232-2.08z" }) + ] + } + ); +}); + +export { SiFastlane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.cjs new file mode 100644 index 000000000..dc8ce057f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF282D"; +const SiFastly = React__namespace.forwardRef(function SiFastly2({ title = "Fastly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.919 3.036V1.3h.632V0H9.377v1.3h.631v1.749a10.572 10.572 0 00-8.575 10.384C1.433 19.275 6.17 24 12 24c5.842 0 10.567-4.737 10.567-10.567 0-5.186-3.729-9.486-8.648-10.397zm-1.628 15.826v-.607h-.619v.607c-2.757-.158-4.955-2.38-5.101-5.137h.607v-.62h-.607a5.436 5.436 0 015.101-5.089v.607h.62v-.607a5.435 5.435 0 015.137 5.114h-.607v.619h.607a5.444 5.444 0 01-5.138 5.113zm2.26-7.712l-.39-.389-1.979 1.725a.912.912 0 00-.316-.06c-.534 0-.971.448-.971.995 0 .547.437.996.971.996.535 0 .972-.45.972-.996a.839.839 0 00-.049-.304Z" }) + ] + } + ); +}); + +exports.default = SiFastly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.d.ts new file mode 100644 index 000000000..a8b7d0fbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF282D"; +declare const SiFastly: IconType; +export { SiFastly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.mjs new file mode 100644 index 000000000..d6055dbb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFastly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF282D"; +const SiFastly = React.forwardRef(function SiFastly2({ title = "Fastly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.919 3.036V1.3h.632V0H9.377v1.3h.631v1.749a10.572 10.572 0 00-8.575 10.384C1.433 19.275 6.17 24 12 24c5.842 0 10.567-4.737 10.567-10.567 0-5.186-3.729-9.486-8.648-10.397zm-1.628 15.826v-.607h-.619v.607c-2.757-.158-4.955-2.38-5.101-5.137h.607v-.62h-.607a5.436 5.436 0 015.101-5.089v.607h.62v-.607a5.435 5.435 0 015.137 5.114h-.607v.619h.607a5.444 5.444 0 01-5.138 5.113zm2.26-7.712l-.39-.389-1.979 1.725a.912.912 0 00-.316-.06c-.534 0-.971.448-.971.995 0 .547.437.996.971.996.535 0 .972-.45.972-.996a.839.839 0 00-.049-.304Z" }) + ] + } + ); +}); + +export { SiFastly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.cjs new file mode 100644 index 000000000..9321c0e59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9187FF"; +const SiFathom = React__namespace.forwardRef(function SiFathom2({ title = "Fathom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.185 0c-1.702.008-3.693.467-6.068 1.331C.115 4.244-1.581 7.881 1.33 15.883c2.912 8.002 6.55 9.698 14.552 6.786 8.002-2.913 9.699-6.55 6.786-14.552C20.62 2.491 18.214-.018 14.185 0zm2.77 6.57h1.253a.25.25 0 01.199.098.25.25 0 01.043.217L15.672 17.22a.25.25 0 01-.241.186h-1.254a.25.25 0 01-.242-.315l.169-.628.123-.457 2.486-9.252a.25.25 0 01.241-.185zm-9.184.808h.504a.25.25 0 01.25.25v.844a.25.25 0 01-.25.25h-.428a1.7 1.7 0 00-.258.012.221.221 0 00-.12.048.197.197 0 00-.049.078.886.886 0 00-.043.315v.641h.898a.25.25 0 01.25.25v.844a.25.25 0 01-.25.25h-.898v5.094a.25.25 0 01-.25.25h-.985a.25.25 0 01-.25-.25v-7.23a1.723 1.723 0 01.169-.78 1.395 1.395 0 01.453-.523c.37-.257.826-.341 1.257-.343zm3.85 2.344c.767 0 1.419.218 1.883.622.465.404.725.994.723 1.668v1.683l-.755 2.809h-.48a.25.25 0 01-.25-.25v-.187a1.84 1.84 0 01-.223.167c-.335.213-.79.352-1.39.352a2.936 2.936 0 01-1.337-.29 1.898 1.898 0 01-.883-.907 2.193 2.193 0 01-.187-.916 1.907 1.907 0 01.245-.99 1.724 1.724 0 01.646-.618c.52-.293 1.16-.396 1.788-.48H11.4c.342-.046.616-.075.827-.103a1.968 1.968 0 00.431-.088.147.147 0 00.065-.04l.01-.021a.319.319 0 00.009-.086v-.035a.809.809 0 00-.274-.638c-.178-.155-.458-.26-.847-.261-.385 0-.686.106-.89.262a.821.821 0 00-.338.588.25.25 0 01-.249.228H9.101a.25.25 0 01-.25-.261 2.139 2.139 0 01.825-1.593c.491-.391 1.165-.615 1.945-.615zm1.121 3.783c-.09.024-.187.047-.296.068-.303.06-.67.113-1.025.163a2.855 2.855 0 00-.692.171c-.196.082-.333.186-.407.308a.569.569 0 00-.08.307v.007a.604.604 0 00.062.275.554.554 0 00.176.198c.16.115.428.194.79.194.56-.002.915-.164 1.14-.39.223-.228.33-.542.332-.896v-.404z" }) + ] + } + ); +}); + +exports.default = SiFathom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.d.ts new file mode 100644 index 000000000..071337a1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9187FF"; +declare const SiFathom: IconType; +export { SiFathom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.mjs new file mode 100644 index 000000000..f517f47dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFathom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9187FF"; +const SiFathom = React.forwardRef(function SiFathom2({ title = "Fathom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.185 0c-1.702.008-3.693.467-6.068 1.331C.115 4.244-1.581 7.881 1.33 15.883c2.912 8.002 6.55 9.698 14.552 6.786 8.002-2.913 9.699-6.55 6.786-14.552C20.62 2.491 18.214-.018 14.185 0zm2.77 6.57h1.253a.25.25 0 01.199.098.25.25 0 01.043.217L15.672 17.22a.25.25 0 01-.241.186h-1.254a.25.25 0 01-.242-.315l.169-.628.123-.457 2.486-9.252a.25.25 0 01.241-.185zm-9.184.808h.504a.25.25 0 01.25.25v.844a.25.25 0 01-.25.25h-.428a1.7 1.7 0 00-.258.012.221.221 0 00-.12.048.197.197 0 00-.049.078.886.886 0 00-.043.315v.641h.898a.25.25 0 01.25.25v.844a.25.25 0 01-.25.25h-.898v5.094a.25.25 0 01-.25.25h-.985a.25.25 0 01-.25-.25v-7.23a1.723 1.723 0 01.169-.78 1.395 1.395 0 01.453-.523c.37-.257.826-.341 1.257-.343zm3.85 2.344c.767 0 1.419.218 1.883.622.465.404.725.994.723 1.668v1.683l-.755 2.809h-.48a.25.25 0 01-.25-.25v-.187a1.84 1.84 0 01-.223.167c-.335.213-.79.352-1.39.352a2.936 2.936 0 01-1.337-.29 1.898 1.898 0 01-.883-.907 2.193 2.193 0 01-.187-.916 1.907 1.907 0 01.245-.99 1.724 1.724 0 01.646-.618c.52-.293 1.16-.396 1.788-.48H11.4c.342-.046.616-.075.827-.103a1.968 1.968 0 00.431-.088.147.147 0 00.065-.04l.01-.021a.319.319 0 00.009-.086v-.035a.809.809 0 00-.274-.638c-.178-.155-.458-.26-.847-.261-.385 0-.686.106-.89.262a.821.821 0 00-.338.588.25.25 0 01-.249.228H9.101a.25.25 0 01-.25-.261 2.139 2.139 0 01.825-1.593c.491-.391 1.165-.615 1.945-.615zm1.121 3.783c-.09.024-.187.047-.296.068-.303.06-.67.113-1.025.163a2.855 2.855 0 00-.692.171c-.196.082-.333.186-.407.308a.569.569 0 00-.08.307v.007a.604.604 0 00.062.275.554.554 0 00.176.198c.16.115.428.194.79.194.56-.002.915-.164 1.14-.39.223-.228.33-.542.332-.896v-.404z" }) + ] + } + ); +}); + +export { SiFathom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.cjs new file mode 100644 index 000000000..4a620cc8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3A1AB6"; +const SiFauna = React__namespace.forwardRef(function SiFauna2({ title = "Fauna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.864 5.034c-1.454.496-2.155 1.385-2.632 2.77-.123.369-.43.778-.777 1.053l1.193 1.306-3.787-2.706L1.411 0s.754 5.003 1.015 6.844c.185 1.298.5 1.88 1.5 2.47l.401.22 1.724.928-1.024-.543 4.726 2.636-.031.07-5.087-2.407c.27.944.793 2.761 1.016 3.564.238.865.508 1.18 1.331 1.487l1.516.566.94-.378-1.194.81L2.28 24c3.963-3.76 7.319-5.097 9.774-6.19 3.132-1.385 5.018-2.274 6.249-5.468.877-2.242 1.562-5.113 2.432-6.222l1.855-2.423s-3.84 1.039-4.726 1.337z" }) + ] + } + ); +}); + +exports.default = SiFauna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.d.ts new file mode 100644 index 000000000..46e5ace9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3A1AB6"; +declare const SiFauna: IconType; +export { SiFauna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.mjs new file mode 100644 index 000000000..d1648c70d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFauna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3A1AB6"; +const SiFauna = React.forwardRef(function SiFauna2({ title = "Fauna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.864 5.034c-1.454.496-2.155 1.385-2.632 2.77-.123.369-.43.778-.777 1.053l1.193 1.306-3.787-2.706L1.411 0s.754 5.003 1.015 6.844c.185 1.298.5 1.88 1.5 2.47l.401.22 1.724.928-1.024-.543 4.726 2.636-.031.07-5.087-2.407c.27.944.793 2.761 1.016 3.564.238.865.508 1.18 1.331 1.487l1.516.566.94-.378-1.194.81L2.28 24c3.963-3.76 7.319-5.097 9.774-6.19 3.132-1.385 5.018-2.274 6.249-5.468.877-2.242 1.562-5.113 2.432-6.222l1.855-2.423s-3.84 1.039-4.726 1.337z" }) + ] + } + ); +}); + +export { SiFauna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.cjs new file mode 100644 index 000000000..843297d81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#512DA8"; +const SiFavro = React__namespace.forwardRef(function SiFavro2({ title = "Favro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.586 1.655a6.623 6.623 0 0 0-6.62 6.62v.773a7.503 7.503 0 0 1 3.31 3.269V8.276a3.302 3.302 0 0 1 3.31-3.31A1.66 1.66 0 0 0 13.24 3.31a1.66 1.66 0 0 0-1.656-1.655zm-9.93 7.448A1.66 1.66 0 0 0 0 10.758c0 .91.745 1.655 1.655 1.655a3.302 3.302 0 0 1 3.31 3.31v4.966c0 .91.745 1.655 1.655 1.655a1.66 1.66 0 0 0 1.655-1.655v-4.966a6.623 6.623 0 0 0-6.62-6.621zm15.724 0a6.623 6.623 0 0 0-6.622 6.621 6.623 6.623 0 0 0 6.622 6.621 6.583 6.583 0 0 0 3.462-.979c.262.58.84.98 1.503.98A1.66 1.66 0 0 0 24 20.69v-9.93a1.66 1.66 0 0 0-1.655-1.655c-.676 0-1.241.4-1.503.979a6.574 6.574 0 0 0-3.462-.98zm0 3.311a3.303 3.303 0 0 1 3.31 3.31 3.303 3.303 0 0 1-3.31 3.31 3.302 3.302 0 0 1-3.31-3.31 3.303 3.303 0 0 1 3.31-3.31z" }) + ] + } + ); +}); + +exports.default = SiFavro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.d.ts new file mode 100644 index 000000000..bc570071e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#512DA8"; +declare const SiFavro: IconType; +export { SiFavro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.mjs new file mode 100644 index 000000000..374648421 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFavro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#512DA8"; +const SiFavro = React.forwardRef(function SiFavro2({ title = "Favro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.586 1.655a6.623 6.623 0 0 0-6.62 6.62v.773a7.503 7.503 0 0 1 3.31 3.269V8.276a3.302 3.302 0 0 1 3.31-3.31A1.66 1.66 0 0 0 13.24 3.31a1.66 1.66 0 0 0-1.656-1.655zm-9.93 7.448A1.66 1.66 0 0 0 0 10.758c0 .91.745 1.655 1.655 1.655a3.302 3.302 0 0 1 3.31 3.31v4.966c0 .91.745 1.655 1.655 1.655a1.66 1.66 0 0 0 1.655-1.655v-4.966a6.623 6.623 0 0 0-6.62-6.621zm15.724 0a6.623 6.623 0 0 0-6.622 6.621 6.623 6.623 0 0 0 6.622 6.621 6.583 6.583 0 0 0 3.462-.979c.262.58.84.98 1.503.98A1.66 1.66 0 0 0 24 20.69v-9.93a1.66 1.66 0 0 0-1.655-1.655c-.676 0-1.241.4-1.503.979a6.574 6.574 0 0 0-3.462-.98zm0 3.311a3.303 3.303 0 0 1 3.31 3.31 3.303 3.303 0 0 1-3.31 3.31 3.302 3.302 0 0 1-3.31-3.31 3.303 3.303 0 0 1 3.31-3.31z" }) + ] + } + ); +}); + +export { SiFavro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.cjs new file mode 100644 index 000000000..7f40a3eef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C3664"; +const SiFcc = React__namespace.forwardRef(function SiFcc2({ title = "FCC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.412 17.587A7.89 7.89 0 0 1 10.268 6.414a7.867 7.867 0 0 1 11.144 0 8 8 0 0 1 .839.996L24 6.116a10.03 10.03 0 0 0-8.16-4.196c-5.19 0-9.458 3.942-9.996 9.002h-3.82V4.328H6.78L8.508 1.92H0v20.16l2.024-1.488V13.08h3.82c.538 5.059 4.806 9 9.996 9A10.03 10.03 0 0 0 24 17.884l-1.749-1.296a8 8 0 0 1-.84.999m-5.57-9.205a3.61 3.61 0 0 1 2.97 1.572l1.752-1.296a5.77 5.77 0 0 0-4.723-2.456c-3.194 0-5.782 2.595-5.782 5.798s2.588 5.796 5.782 5.797a5.77 5.77 0 0 0 4.723-2.455l-1.751-1.296a3.61 3.61 0 1 1-2.972-5.664" }) + ] + } + ); +}); + +exports.default = SiFcc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.d.ts new file mode 100644 index 000000000..623202d47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C3664"; +declare const SiFcc: IconType; +export { SiFcc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.mjs new file mode 100644 index 000000000..ceac53ccf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFcc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C3664"; +const SiFcc = React.forwardRef(function SiFcc2({ title = "FCC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.412 17.587A7.89 7.89 0 0 1 10.268 6.414a7.867 7.867 0 0 1 11.144 0 8 8 0 0 1 .839.996L24 6.116a10.03 10.03 0 0 0-8.16-4.196c-5.19 0-9.458 3.942-9.996 9.002h-3.82V4.328H6.78L8.508 1.92H0v20.16l2.024-1.488V13.08h3.82c.538 5.059 4.806 9 9.996 9A10.03 10.03 0 0 0 24 17.884l-1.749-1.296a8 8 0 0 1-.84.999m-5.57-9.205a3.61 3.61 0 0 1 2.97 1.572l1.752-1.296a5.77 5.77 0 0 0-4.723-2.456c-3.194 0-5.782 2.595-5.782 5.798s2.588 5.796 5.782 5.797a5.77 5.77 0 0 0 4.723-2.455l-1.751-1.296a3.61 3.61 0 1 1-2.972-5.664" }) + ] + } + ); +}); + +export { SiFcc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.cjs new file mode 100644 index 000000000..61d3308b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1976D2"; +const SiFdroid = React__namespace.forwardRef(function SiFdroid2({ title = "F-Droid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.472,10.081H3.528c-0.877,0-1.589,0.711-1.589,1.589v10.59c0,0.877,0.711,1.589,1.589,1.589h16.944 c0.877,0,1.589-0.711,1.589-1.589V11.67C22.061,10.792,21.349,10.081,20.472,10.081z M12,22.525c-3.066,0-5.56-2.494-5.56-5.56 s2.494-5.56,5.56-5.56c3.066,0,5.56,2.494,5.56,5.56S15.066,22.525,12,22.525z M12,12.411c-2.511,0-4.554,2.043-4.554,4.554 S9.489,21.519,12,21.519s4.554-2.043,4.554-4.554S14.511,12.411,12,12.411z M12,20.274c-1.563,0-2.881-1.103-3.221-2.568h1.67 c0.275,0.581,0.859,0.979,1.551,0.979c0.96,0,1.721-0.761,1.721-1.721c0-0.96-0.761-1.721-1.721-1.721 c-0.649,0-1.2,0.352-1.493,0.874H8.805c0.378-1.412,1.669-2.462,3.195-2.462c1.818,0,3.309,1.491,3.309,3.309 C15.309,18.783,13.818,20.274,12,20.274z M23.849,0.396c-0.001,0.001-0.002,0.002-0.002,0.003 c-0.002-0.002-0.004-0.003-0.006-0.005c0.001-0.001,0.002-0.003,0.004-0.004c-0.116-0.137-0.279-0.231-0.519-0.238 c-0.202,0.005-0.391,0.097-0.512,0.259l-1.818,2.353c-0.164-0.058-0.339-0.095-0.523-0.095H3.528c-0.184,0-0.358,0.038-0.523,0.095 L1.187,0.41c-0.121-0.162-0.31-0.253-0.512-0.259c-0.24,0.006-0.403,0.1-0.519,0.238c0.001,0.001,0.002,0.003,0.004,0.004 C0.157,0.395,0.155,0.397,0.153,0.399C0.153,0.398,0.152,0.397,0.151,0.396C0.085,0.474-0.146,0.822,0.139,1.22l1.909,2.471 C1.981,3.867,1.94,4.057,1.94,4.257v3.707c0,0.877,0.711,1.589,1.589,1.589h16.944c0.877,0,1.589-0.711,1.589-1.589V4.257 c0-0.2-0.041-0.39-0.109-0.566l1.909-2.471C24.146,0.822,23.915,0.474,23.849,0.396z M6.904,8.228c-0.987,0-1.787-0.8-1.787-1.787 s0.8-1.787,1.787-1.787s1.787,0.8,1.787,1.787S7.891,8.228,6.904,8.228z M17.229,8.228c-0.987,0-1.787-0.8-1.787-1.787 s0.8-1.787,1.787-1.787c0.987,0,1.787,0.8,1.787,1.787S18.216,8.228,17.229,8.228z" }) + ] + } + ); +}); + +exports.default = SiFdroid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.d.ts new file mode 100644 index 000000000..e51582bd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1976D2"; +declare const SiFdroid: IconType; +export { SiFdroid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.mjs new file mode 100644 index 000000000..d0c218ef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFdroid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1976D2"; +const SiFdroid = React.forwardRef(function SiFdroid2({ title = "F-Droid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.472,10.081H3.528c-0.877,0-1.589,0.711-1.589,1.589v10.59c0,0.877,0.711,1.589,1.589,1.589h16.944 c0.877,0,1.589-0.711,1.589-1.589V11.67C22.061,10.792,21.349,10.081,20.472,10.081z M12,22.525c-3.066,0-5.56-2.494-5.56-5.56 s2.494-5.56,5.56-5.56c3.066,0,5.56,2.494,5.56,5.56S15.066,22.525,12,22.525z M12,12.411c-2.511,0-4.554,2.043-4.554,4.554 S9.489,21.519,12,21.519s4.554-2.043,4.554-4.554S14.511,12.411,12,12.411z M12,20.274c-1.563,0-2.881-1.103-3.221-2.568h1.67 c0.275,0.581,0.859,0.979,1.551,0.979c0.96,0,1.721-0.761,1.721-1.721c0-0.96-0.761-1.721-1.721-1.721 c-0.649,0-1.2,0.352-1.493,0.874H8.805c0.378-1.412,1.669-2.462,3.195-2.462c1.818,0,3.309,1.491,3.309,3.309 C15.309,18.783,13.818,20.274,12,20.274z M23.849,0.396c-0.001,0.001-0.002,0.002-0.002,0.003 c-0.002-0.002-0.004-0.003-0.006-0.005c0.001-0.001,0.002-0.003,0.004-0.004c-0.116-0.137-0.279-0.231-0.519-0.238 c-0.202,0.005-0.391,0.097-0.512,0.259l-1.818,2.353c-0.164-0.058-0.339-0.095-0.523-0.095H3.528c-0.184,0-0.358,0.038-0.523,0.095 L1.187,0.41c-0.121-0.162-0.31-0.253-0.512-0.259c-0.24,0.006-0.403,0.1-0.519,0.238c0.001,0.001,0.002,0.003,0.004,0.004 C0.157,0.395,0.155,0.397,0.153,0.399C0.153,0.398,0.152,0.397,0.151,0.396C0.085,0.474-0.146,0.822,0.139,1.22l1.909,2.471 C1.981,3.867,1.94,4.057,1.94,4.257v3.707c0,0.877,0.711,1.589,1.589,1.589h16.944c0.877,0,1.589-0.711,1.589-1.589V4.257 c0-0.2-0.041-0.39-0.109-0.566l1.909-2.471C24.146,0.822,23.915,0.474,23.849,0.396z M6.904,8.228c-0.987,0-1.787-0.8-1.787-1.787 s0.8-1.787,1.787-1.787s1.787,0.8,1.787,1.787S7.891,8.228,6.904,8.228z M17.229,8.228c-0.987,0-1.787-0.8-1.787-1.787 s0.8-1.787,1.787-1.787c0.987,0,1.787,0.8,1.787,1.787S18.216,8.228,17.229,8.228z" }) + ] + } + ); +}); + +export { SiFdroid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.cjs new file mode 100644 index 000000000..a59454890 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4D148C"; +const SiFedex = React__namespace.forwardRef(function SiFedex2({ title = "FedEx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.498 14.298c-.016-.414.345-.751.75-.755a.745.745 0 0 1 .752.755.755.755 0 0 1-.751.745c-.395.002-.759-.346-.751-.745zm.759-.083c.067-.02.164-.042.162-.13.007-.09-.086-.133-.162-.134h-.163v.263c0 .001.165-.002.163.001zm-.163.107v.418h-.14v-.91h.327c.156-.021.294.092.286.253a.218.218 0 0 1-.156.19c.162.083.108.322.173.467h-.156a2.355 2.355 0 0 1-.04-.205c-.018-.093-.047-.229-.17-.213h-.124zm.76-.024a.603.603 0 0 0-.605-.632c-.338-.012-.62.302-.605.632a.619.619 0 0 0 .605.622.61.61 0 0 0 .605-.622zm-5.052-.579l-.878 1.008h-1.306l1.559-1.745-1.56-1.75h1.355l.902.997.878-.998h1.306l-1.543 1.743 1.559 1.753h-1.371l-.901-1.008zm-4.703-.352v-.827h1.904v-1.506l1.724 1.948-1.724 1.941v-1.556h-1.904zm1.56 1.36h-3.2V9.044h3.224v1.024H13.77v1.163h1.888v.958h-1.904v1.522h1.904v1.016zm-5.705-.655c-.54.017-.878-.552-.877-1.04-.01-.507.307-1.123.878-1.105.579-.025.871.6.845 1.103.023.501-.29 1.062-.846 1.042zM4.743 12.41c.076-.358.403-.67.78-.663a.788.788 0 0 1 .803.663H4.743zm15.182.564l1.815-2.047h-2.125l-.74.844-.763-.844h-4.037v-.548h1.912V8.741H10.84v2.58c-.362-.448-.981-.559-1.526-.492-.782.123-1.427.762-1.634 1.514-.254-.958-1.179-1.588-2.157-1.554-.781.009-1.6.365-1.987 1.071v-.818h-1.87v-.9h2.043v-1.4H0v6.287h1.666v-2.644h1.666a7.59 7.59 0 0 0-.082.622c-.013 1.232 1.042 2.27 2.274 2.236a2.204 2.204 0 0 0 2.157-1.432H6.254c-.14.268-.441.38-.73.36-.457.009-.83-.417-.829-.86h2.914c.083 1.027.988 1.966 2.043 1.947a1.53 1.53 0 0 0 1.19-.639v.41h7.215l.754-.86.754.86h2.192l-1.832-2.055z" }) + ] + } + ); +}); + +exports.default = SiFedex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.d.ts new file mode 100644 index 000000000..3c07a9541 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4D148C"; +declare const SiFedex: IconType; +export { SiFedex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.mjs new file mode 100644 index 000000000..419fab1e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFedex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4D148C"; +const SiFedex = React.forwardRef(function SiFedex2({ title = "FedEx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.498 14.298c-.016-.414.345-.751.75-.755a.745.745 0 0 1 .752.755.755.755 0 0 1-.751.745c-.395.002-.759-.346-.751-.745zm.759-.083c.067-.02.164-.042.162-.13.007-.09-.086-.133-.162-.134h-.163v.263c0 .001.165-.002.163.001zm-.163.107v.418h-.14v-.91h.327c.156-.021.294.092.286.253a.218.218 0 0 1-.156.19c.162.083.108.322.173.467h-.156a2.355 2.355 0 0 1-.04-.205c-.018-.093-.047-.229-.17-.213h-.124zm.76-.024a.603.603 0 0 0-.605-.632c-.338-.012-.62.302-.605.632a.619.619 0 0 0 .605.622.61.61 0 0 0 .605-.622zm-5.052-.579l-.878 1.008h-1.306l1.559-1.745-1.56-1.75h1.355l.902.997.878-.998h1.306l-1.543 1.743 1.559 1.753h-1.371l-.901-1.008zm-4.703-.352v-.827h1.904v-1.506l1.724 1.948-1.724 1.941v-1.556h-1.904zm1.56 1.36h-3.2V9.044h3.224v1.024H13.77v1.163h1.888v.958h-1.904v1.522h1.904v1.016zm-5.705-.655c-.54.017-.878-.552-.877-1.04-.01-.507.307-1.123.878-1.105.579-.025.871.6.845 1.103.023.501-.29 1.062-.846 1.042zM4.743 12.41c.076-.358.403-.67.78-.663a.788.788 0 0 1 .803.663H4.743zm15.182.564l1.815-2.047h-2.125l-.74.844-.763-.844h-4.037v-.548h1.912V8.741H10.84v2.58c-.362-.448-.981-.559-1.526-.492-.782.123-1.427.762-1.634 1.514-.254-.958-1.179-1.588-2.157-1.554-.781.009-1.6.365-1.987 1.071v-.818h-1.87v-.9h2.043v-1.4H0v6.287h1.666v-2.644h1.666a7.59 7.59 0 0 0-.082.622c-.013 1.232 1.042 2.27 2.274 2.236a2.204 2.204 0 0 0 2.157-1.432H6.254c-.14.268-.441.38-.73.36-.457.009-.83-.417-.829-.86h2.914c.083 1.027.988 1.966 2.043 1.947a1.53 1.53 0 0 0 1.19-.639v.41h7.215l.754-.86.754.86h2.192l-1.832-2.055z" }) + ] + } + ); +}); + +export { SiFedex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.cjs new file mode 100644 index 000000000..4d5aa4a10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#51A2DA"; +const SiFedora = React__namespace.forwardRef(function SiFedora2({ title = "Fedora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001 0C5.376 0 .008 5.369.004 11.992H.002v9.287h.002A2.726 2.726 0 0 0 2.73 24h9.275c6.626-.004 11.993-5.372 11.993-11.997C23.998 5.375 18.628 0 12 0zm2.431 4.94c2.015 0 3.917 1.543 3.917 3.671 0 .197.001.395-.03.619a1.002 1.002 0 0 1-1.137.893 1.002 1.002 0 0 1-.842-1.175 2.61 2.61 0 0 0 .013-.337c0-1.207-.987-1.672-1.92-1.672-.934 0-1.775.784-1.777 1.672.016 1.027 0 2.046 0 3.07l1.732-.012c1.352-.028 1.368 2.009.016 1.998l-1.748.013c-.004.826.006.677.002 1.093 0 0 .015 1.01-.016 1.776-.209 2.25-2.124 4.046-4.424 4.046-2.438 0-4.448-1.993-4.448-4.437.073-2.515 2.078-4.492 4.603-4.469l1.409-.01v1.996l-1.409.013h-.007c-1.388.04-2.577.984-2.6 2.47a2.438 2.438 0 0 0 2.452 2.439c1.356 0 2.441-.987 2.441-2.437l-.001-7.557c0-.14.005-.252.02-.407.23-1.848 1.883-3.256 3.754-3.256z" }) + ] + } + ); +}); + +exports.default = SiFedora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.d.ts new file mode 100644 index 000000000..a78d1e004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#51A2DA"; +declare const SiFedora: IconType; +export { SiFedora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.mjs new file mode 100644 index 000000000..3f956bff9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFedora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#51A2DA"; +const SiFedora = React.forwardRef(function SiFedora2({ title = "Fedora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001 0C5.376 0 .008 5.369.004 11.992H.002v9.287h.002A2.726 2.726 0 0 0 2.73 24h9.275c6.626-.004 11.993-5.372 11.993-11.997C23.998 5.375 18.628 0 12 0zm2.431 4.94c2.015 0 3.917 1.543 3.917 3.671 0 .197.001.395-.03.619a1.002 1.002 0 0 1-1.137.893 1.002 1.002 0 0 1-.842-1.175 2.61 2.61 0 0 0 .013-.337c0-1.207-.987-1.672-1.92-1.672-.934 0-1.775.784-1.777 1.672.016 1.027 0 2.046 0 3.07l1.732-.012c1.352-.028 1.368 2.009.016 1.998l-1.748.013c-.004.826.006.677.002 1.093 0 0 .015 1.01-.016 1.776-.209 2.25-2.124 4.046-4.424 4.046-2.438 0-4.448-1.993-4.448-4.437.073-2.515 2.078-4.492 4.603-4.469l1.409-.01v1.996l-1.409.013h-.007c-1.388.04-2.577.984-2.6 2.47a2.438 2.438 0 0 0 2.452 2.439c1.356 0 2.441-.987 2.441-2.437l-.001-7.557c0-.14.005-.252.02-.407.23-1.848 1.883-3.256 3.754-3.256z" }) + ] + } + ); +}); + +export { SiFedora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.cjs new file mode 100644 index 000000000..2cd31fb8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2BB24C"; +const SiFeedly = React__namespace.forwardRef(function SiFeedly2({ title = "Feedly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.85995 1.98852a2.60906 2.60906 0 00-3.72608 0L.76766 11.52674a2.72906 2.72906 0 000 3.79508l6.68415 6.80816a2.61806 2.61806 0 001.74004.66401h5.61313a2.61606 2.61606 0 001.87204-.79101l6.55415-6.67516a2.72606 2.72606 0 000-3.79508l-9.37021-9.54422zm-.26 17.4224l-.93502.95002a.372.372 0 01-.268.114h-.80003a.376.376 0 01-.247-.096l-.95402-.97002a.39.39 0 010-.54201l1.33703-1.36003a.37.37 0 01.531 0l1.33704 1.36103a.389.389 0 010 .543zm0-5.71113l-3.73709 3.80808a.374.374 0 01-.268.111h-.79902a.376.376 0 01-.25-.093l-.95103-.97002a.391.391 0 010-.54401l4.1391-4.2141a.372.372 0 01.531 0l1.33704 1.36204a.386.386 0 010 .54zm0-5.70713L7.0598 14.6528a.372.372 0 01-.268.113h-.80002a.373.373 0 01-.24901-.094l-.95302-.97202a.388.388 0 010-.54001L11.7329 6.0896a.372.372 0 01.531 0l1.33704 1.36004a.389.389 0 010 .543z" }) + ] + } + ); +}); + +exports.default = SiFeedly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.d.ts new file mode 100644 index 000000000..99b4fb8cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2BB24C"; +declare const SiFeedly: IconType; +export { SiFeedly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.mjs new file mode 100644 index 000000000..b60b6d4bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFeedly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2BB24C"; +const SiFeedly = React.forwardRef(function SiFeedly2({ title = "Feedly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.85995 1.98852a2.60906 2.60906 0 00-3.72608 0L.76766 11.52674a2.72906 2.72906 0 000 3.79508l6.68415 6.80816a2.61806 2.61806 0 001.74004.66401h5.61313a2.61606 2.61606 0 001.87204-.79101l6.55415-6.67516a2.72606 2.72606 0 000-3.79508l-9.37021-9.54422zm-.26 17.4224l-.93502.95002a.372.372 0 01-.268.114h-.80003a.376.376 0 01-.247-.096l-.95402-.97002a.39.39 0 010-.54201l1.33703-1.36003a.37.37 0 01.531 0l1.33704 1.36103a.389.389 0 010 .543zm0-5.71113l-3.73709 3.80808a.374.374 0 01-.268.111h-.79902a.376.376 0 01-.25-.093l-.95103-.97002a.391.391 0 010-.54401l4.1391-4.2141a.372.372 0 01.531 0l1.33704 1.36204a.386.386 0 010 .54zm0-5.70713L7.0598 14.6528a.372.372 0 01-.268.113h-.80002a.373.373 0 01-.24901-.094l-.95302-.97202a.388.388 0 010-.54001L11.7329 6.0896a.372.372 0 01.531 0l1.33704 1.36004a.389.389 0 010 .543z" }) + ] + } + ); +}); + +export { SiFeedly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.cjs new file mode 100644 index 000000000..d0dfdf2d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D40000"; +const SiFerrari = React__namespace.forwardRef(function SiFerrari2({ title = "Ferrari", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.543 0s-.01.141-.053.227c-.032.075-.118.128-.107.182.01.054.064.119.15.162.086.043.117.074.203.096.075.021.184.076.205.011.033-.064-.01-.151-.064-.226-.086-.14-.13-.172-.248-.365C11.607.044 11.586 0 11.543 0zm.678 0c-.022.011-.054.174-.108.313-.064.161-.022.236.01.3.043.065.098.108-.01.173-.107.064-.248.043-.248.043s-.118-.023-.215-.076a23.832 23.832 0 0 0-.3-.13s-.194-.053-.323-.042c-.129.01-.14.022-.236.033-.054 0-.075-.001-.129.01-.043.01-.096-.02-.096.033s.107.054.182.086c.075.032.247.031.215.074-.043.043-.204.054-.215.043-.01 0-.117-.021-.203-.021-.14.01-.15.01-.353.107-.033.01-.022.086.042.064a1.12 1.12 0 0 1 .301-.043c.13 0 .203.044.332.077.108.032.118.052.28.074.032 0 .095-.022.095.021 0 .022-.043.055-.043.055s-.096.02-.086.053c.022.043.108 0 .15 0 .044 0 .11.012.098.054l-.021.032a2.312 2.312 0 0 0-.291.097c-.269.108-.375.237-.633.366-.247.118-.644.267-.644.267s-.118.065-.29.107c-.171.044-.182.034-.3.055a.571.571 0 0 0-.27.086.52.52 0 0 0-.15.117l-.15.227-.087.127c-.021.043-.042.064-.052.107-.022.054-.033.076-.043.13-.032.128 0 .204.021.333.011.032.011.054.022.086.01.032.052.065.052.065l.043.01s.152-.01.248-.032c.097-.021.237-.055.237-.055l.181-.052.12-.043s.075 0 .086.043c.01.032-.022.086-.022.086s-.065.03-.119.052c-.054.022-.183.054-.193.065l-.14.043-.118.011s-.022.011-.043.043c-.022.033-.022.032-.022.053.022.022.033.043.055.065.043.032.064.053.117.064.075.032.118.022.193.022a.587.587 0 0 0 .27-.065c.086-.054.118-.053.236-.096a.543.543 0 0 1 .118-.021c.204-.022.32.01.525.043.204.032.302.097.506.129.215.032.343.096.568.043.108-.022.173-.076.227.031.053.097.043.15.043.15s-.001.066-.076.27c-.076.204-.311.709-.311.709l-.162.322s-.13.257-.43.59a54.284 54.284 0 0 1-.32.353s-.161.119-.322.323c-.161.204-.163.279-.313.43-.097.096-.15.15-.268.226-.118.075-.258.053-.634.31-.322.226-.494.41-.516.399-.021-.01-.129-.098-.172-.12-.032-.02-.654-.439-.654-.439l-.258-.172-.119-.076-.021-.043-.063-.086s-.097-.118-.215-.214a.92.92 0 0 0-.441-.237c-.183-.053-.3-.086-.482-.021a.646.646 0 0 0-.27.172c-.107.107-.129.193-.215.322s-.172.248-.215.312c-.043.065-.129.237-.129.237s-.214.343-.332.568c-.14.247-.193.399-.322.635-.204.376-.495.762-.57.933l-.084.194s-.023.095-.033.16c-.011.064-.011.172-.022.215a.312.312 0 0 1-.053.119c-.01.01-.129.257-.172.418-.043.16-.14.666-.021.73.118.065.987-.31 1.105-.676.076-.236-.236-.355-.15-.57.032-.075.054-.085.107-.16.086-.14.054-.429.215-.697.118-.193.354-.442.676-.807.204-.225.398-.59.398-.59s.043-.129.13-.107c.096.021.181.01.181.01l.043.033.086.086.129.193s.216.31.29.397c.076.086.151.15.259.236.118.107.16.161.31.28.215.171.139.236-.14.085a1.82 1.82 0 0 0-.364-.138c-.128-.033-.612-.162-.859-.194-.236-.032-.28-.021-.28-.021s-.118-.012-.257.074c-.14.086-.215.15-.215.15s-.161.183-.172.215c-.01.032-.086.16-.086.16s-.044.066-.054.14c-.022.076-.01.151-.01.151l.01.16.011.15s.033.377.108.753c.021.107.043.279.043.279l.052.387s.033.409.065.548c.032.13.054.14.076.225.043.161-.032.236.043.43.075.193.14.17.215.289.054.086.074.107.117.215.043.107.183.463.344.72.172.269.398.601.549.569.15-.033.257-.268.257-.268s.172-.463.065-.914c-.108-.462-.602-.245-.666-.578-.01-.075 0-.193 0-.193s-.012-.141-.033-.184c-.022-.043-.194-.364-.258-.633-.054-.204-.043-.86-.086-1.043-.118-.472-.129-.43-.065-.515.076-.086.141-.065.141-.065l.096.012.076.031.139.086c.043.032.193.15.193.15l.365.237s.205.119.291.162c.086.043.16.096.16.096l.096.064.162.12.031.03.022.043s.076.173.398.356c.258.15.484.106.58.225.022.021.203.27.29.42.107.171.236.374.279.439.043.064.312.396.312.396l.354.387.463.43.418.355.267.215s.237.226.506.408c.258.172.268.193.44.31.128.087.3.206.472.335.172.14.366.396.291.482-.054.032-.151-.106-.334-.267a4.298 4.298 0 0 0-.375-.301c-.193-.15-.291-.227-.506-.356-.107-.064-.3-.181-.31-.16-.075.226-.066.44-.055.719.01.193.043.386.107.633.054.236.108.366.194.591.086.226.248.58.248.58l.246.495.226.375.118.193.043.064s.053.13 0 .215-.119.269-.215.28c-.097.021-.322.033-.322.033l-1.278-.022-.666-.054s-.074-.043-.46-.043c-.226 0-.409.096-.538.107-.107.01-.634-.032-.988.107-.333.14-.484.172-.602.387-.086.161.42.42.838.516.677.15.483-.14.74-.322.033-.022.044-.042.077-.053.171-.054.267.084.44.084.192 0 .3-.064.493-.096.977-.129 2.502.332 2.502.332s.377.118.549.086c.204-.043.16-.118.224-.236.054-.097.033-.117.043-.225 0-.064-.01-.096-.021-.16-.043-.183-.16-.441-.16-.441s-.087-.193-.12-.29c-.042-.139-.085-.226-.107-.376-.064-.398-.053-.365-.053-.59 0-.408.043-.634.15-1.031.162-.58.463-.827.688-1.385.065-.15.064-.365.14-.387.085-.01.075.269.032.43-.14.558-.483.794-.644 1.363-.118.44-.183.697-.15 1.148.01.247.107.635.107.635s.129.429.193.59c.065.161.193.43.193.43l.29.515.15.246s.106.097.053.258c-.054.161-.16.26-.29.399-.364.43-1.212 1.062-1.427 1.212-.3.226-.291.291-.313.356-.118.344-.462.354-.837.762-.086.086-.311.321-.268.525.021.075.945.237 1.482.012.42-.183.054-.388.172-.592.086-.15.3-.15.397-.28.16-.214.053-.203.193-.374.462-.559.763-.88 1.59-1.385.075-.043.215-.107.215-.107s.117-.055.16-.12c.054-.086.043-.16.043-.257 0-.065-.01-.096-.01-.16 0-.076.01-.119-.012-.194-.021-.118-.095-.215-.138-.28a.772.772 0 0 1-.162-.355.894.894 0 0 1 .033-.6c.086-.225.279-.407.279-.407l.482-.323s.42-.301.55-.42c.139-.118.407-.365.6-.644.226-.311.344-.505.44-.88.032-.14.065-.354.065-.354s0-.15.086-.16c.085-.011.107.02.107.02s.074.042.096.257c.01.215-.053.463-.053.463s-.065.246-.086.396c-.01.097-.012.15-.012.258 0 .183.076.334.076.334s.043.032.043-.043a1.6 1.6 0 0 1 .055-.344c.032-.107.053-.087.117-.27.086-.236.01-.213.053-.353.022-.064.076-.129.14-.129.065 0 .075.086.075.086s.065.28.012.537c-.054.258-.248.612-.248.612l-.149.257s-.107.183-.15.301c-.043.129-.055.183-.033.3.032.13.13.303.183.27.043-.032-.064-.14.065-.398s.298-.418.298-.418.237-.28.344-.494c.097-.193.194-.506.194-.506s.076-.28.054-.516c-.01-.225-.054-.343-.054-.343l-.096-.172-.055-.127.022-.076c.021-.011.097.043.162.129a.854.854 0 0 1 .16.343 1.018 1.018 0 0 1 .043.301c0 .086-.031.44.097.666.054.108.183.354.194.246.021-.247-.087-.364-.076-.59.01-.257.076-.193.097-.322.022-.14.053-.173.032-.355a2.632 2.632 0 0 0-.096-.397l-.076-.172-.032-.064s.021-.031.053-.031l.258-.086s.334-.15.463-.258c.14-.097.3-.27.3-.27s.215-.267.323-.46c.258-.484.257-1.096.246-1.376-.01-.268-.086-.623-.086-.623s-.086-.43-.064-.709c.021-.279.043-.408.043-.408s-.01-.279.226-.58c.236-.3.342-.493.385-.719.043-.193-.022-.504-.108-.386-.096.129-.137.387-.277.601-.193.301-.474.666-.613.666-.075 0-.096-.172-.096-.172s-.096-.29.065-.656c.118-.258.181-.332.332-.525.14-.183.225-.28.322-.473.086-.172.106-.204.16-.472.01-.065-.01-.204-.074-.194-.086 0-.322.517-.569.807-.236.268-.677.611-.677.611s-.043.031-.043-.055c-.01-.075-.022-.3.021-.503a2.22 2.22 0 0 1 .291-.72c.204-.354.461-.6.59-.73.054-.053.215-.151.13-.205-.076-.043-.302.15-.474.28-.214.16-.289.205-.503.463-.215.257-.27.365-.27.365s-.204.332-.258.654c-.054.322-.053.504-.053.504s0 .291.032.463c.021.182.097.46.097.46s.108.313.15.507c.044.193.118.761.118.761s.054.409.021.795c-.032.387-.064.612-.107.73-.043.119-.16.43-.354.645-.182.204-.226.236-.226.236s-.193.16-.354.246a3.743 3.743 0 0 1-.505.227 2.211 2.211 0 0 1-.268.031h-.139l-.043-.03-.023-.087s-.106-.419-.234-.687c-.108-.226-.334-.537-.334-.537s-.387-.527-.688-.817c-.344-.343-.73-.6-.967-.783-.086-.064-.279-.184-.279-.184s-.783-.783-1.062-1.406c-.194-.43-.322-.74-.268-1.213.01-.107.053-.312.074-.312l.14.043c.012.01.14.129.259.172.064.021.181.043.181.043s.097.01.15.021c.054.022.151.054.215.086.065.032.16.098.16.098l.184.138.194.15s.106.076.138.087c.032.01.054.021.065.021h.043s.044-.012.054-.055c.011-.053-.053-.01-.15-.117a.698.698 0 0 1-.15-.181s-.022-.087-.108-.184-.193-.182-.193-.182-.076-.053-.184-.086c-.107-.032-.14-.033-.15-.076-.01-.043.129-.021.129-.021s.162.021.29.086c.13.064.204.14.204.14l.086.075.055.054.052.032s.054.053.065-.022c.01-.064-.011-.118-.022-.129l-.053-.053-.214-.183a1.076 1.076 0 0 0-.172-.15 1.303 1.303 0 0 0-.28-.15c-.107-.044-.171-.033-.279-.087-.075-.032-.14-.053-.183-.117-.011-.01-.064-.055.033-.033.096.021.16.054.267.076.172.043.28.042.442.096.064.021.15.064.15.064l.203.086s.28.151.473.162a.938.938 0 0 0 .42-.064.814.814 0 0 0 .215-.13.36.36 0 0 0 .052-.064l.022-.054v-.043c-.054-.065-.16.108-.332.14-.183.033-.173.053-.291.032a.477.477 0 0 1-.3-.15c-.173-.162-.236-.312-.462-.409-.096-.043-.27-.086-.27-.086s-.236-.075-.365-.15c-.096-.054-.298-.086-.234-.172.032-.043.29.107.482.129.14.021.237.011.344.011s.258-.033.28-.033c.021-.01.106 0 .181.022.075.021.118.053.193.086.076.032.163.086.184.086l.043.011.022-.021.01-.022-.01-.021-.034-.022-.064-.043s-.096-.054-.182-.14c-.086-.086-.162-.182-.29-.225-.13-.043-.28-.064-.28-.064l-.15-.012-.065-.01s-.107-.033-.021-.054a.888.888 0 0 1 .15-.032.495.495 0 0 1 .248.01c.086.032.226.107.236.107.011.011.14.109.28.141.14.032.322.043.322.043l.086-.021.043-.012.031-.022-.01-.052s0-.044-.064-.055a.697.697 0 0 1-.313-.117c-.118-.086-.203-.172-.203-.172s-.086-.076-.258-.12c-.16-.042-.214-.042-.214-.042l-.055-.022-.117-.052s-.055-.033-.098-.086c-.043-.054-.106-.152.076-.098.183.054.225.086.225.086s.097.097.183.107c.054.011.097.022.13-.021.053-.054-.098-.118-.206-.194a.725.725 0 0 1-.172-.193s-.063-.053.034-.031c.096.021.267.129.267.129s.086.042.13.053c.031.01.118.064.161.085.032.011.13.033.193.065.086.054.13.14.172.172.043.032.076.087.13.097.053.011.063.032.095.01a.418.418 0 0 0 .043-.031s.01-.023-.043-.055-.117-.117-.117-.117l-.022-.043-.011-.043-.053-.086-.098-.14s-.15-.204-.289-.28c-.129-.075-.226-.117-.226-.117s-.064-.031-.096-.053c-.054-.043-.076-.077-.12-.13-.053-.065-.073-.106-.138-.17-.118-.118-.483-.184-.344-.27.076-.043.172-.02.215-.01.043.011.14.052.237.084.064.022.107.024.171.045.065.022.14.031.172.053.032.021.065.065.086.076.011.01.096.15.246.225.15.075.227.128.377.138.118.011.31-.03.31-.03s.055-.023.012-.077c-.053-.054-.054-.064-.097-.074-.172-.065-.31-.043-.44-.172-.053-.054-.076-.065-.119-.15-.043-.086-.02-.107-.052-.16-.022-.054-.077-.13-.077-.13s-.16-.194-.332-.29a1.955 1.955 0 0 1-.334-.215c-.032-.022-.095-.108-.095-.108l-.055-.086-.031-.064c-.022-.118.192.033.31.076.194.064.291.15.485.215.107.032.172.031.279.074.182.075.236.258.43.28.107.01.322.053.279-.044-.043-.107-.258-.107-.365-.236-.054-.054-.054-.106-.108-.16-.086-.108-.29-.205-.29-.205s-.064-.053-.14-.203c-.064-.15-.225-.26-.515-.399-.193-.096-.58-.118-.43-.215.086-.064.161-.053.28-.021.118.043.16.098.257.14.097.044.14.054.16.065.022.01.097.043.13.043.02.01.183.032.226.043l.215.053.172.064s.085.033.138.033.141-.021.141-.021l.064-.043.01-.022s.033-.053-.053-.064a.986.986 0 0 0-.128-.012l-.077-.021-.03-.01s-.151-.118-.28-.172a4.841 4.841 0 0 1-.162-.064l-.053-.012-.064-.01s-.055 0-.141-.076c-.086-.075-.118-.118-.193-.193l-.096-.096s-.086-.066-.086-.12c.01-.085.193.098.193.098l.13.086s.107.076.3.086c.193.011.43-.054.43-.054s.031-.02.138.011.194.096.194.096l.086.076.129.139.021-.01c.01-.01.065-.065-.031-.183-.097-.119-.258-.225-.258-.225s-.215-.129-.43-.172c-.214-.043-.312-.043-.312-.043s-.161 0-.258-.107c-.097-.108-.16-.215-.16-.215l-.033-.15s-.053-.065-.16-.108c-.097-.043-.206-.107-.206-.107s-.16-.054-.172-.13c-.032-.139.27 0 .43.032.15.032.215.087.365.12a.915.915 0 0 0 .344.03c.075 0 .118-.008.193-.02.076 0 .13-.01.206 0 .107.022.15.075.257.118.065.032.097.063.172.074.065.011.194.055.172-.01l-.033-.043c-.054-.075-.117-.075-.182-.128-.14-.108-.204-.193-.365-.268a.932.932 0 0 0-.29-.098c-.087-.01-.151.012-.237-.01-.097-.032-.128-.075-.225-.128-.15-.086-.237-.162-.398-.227a2.663 2.663 0 0 0-.29-.086l-.076-.01-.03-.011c-.151-.054.267-.171.46-.225.097-.021.14-.044.236-.033.086.01.183.13.28.076.14-.075-.161-.28-.258-.312-.129-.054-.354-.01-.354-.01l-.494-.012-.14-.021s-.086 0-.15-.075c-.065-.075-.311-.377-.59-.42-.29-.043-.376 0-.397-.02-.247-.388-.506-.473-.7-.655-.053-.054-.138-.173-.16-.162zm1.173 1.14a.53.53 0 0 1 .051 0l.053.033a.54.54 0 0 1 .107.15c.011.043-.128-.01-.181-.022a.43.43 0 0 1-.15-.076s-.023-.032.03-.064a.197.197 0 0 1 .09-.022zm.252.53c.026 0 .045.006.045.006l.053.034a.538.538 0 0 1 .107.15c.011.043-.128-.01-.181-.022a.43.43 0 0 1-.15-.076s-.022-.032.043-.064a.133.133 0 0 1 .083-.027zm-1.882.014a.398.398 0 0 1 .08.004s.043 0 .107.031c.065.043.108.172.108.172s.01.022-.043.022c-.033 0-.033-.053-.065-.075-.043-.032-.075-.043-.129-.064-.053-.021-.128.01-.138-.043 0-.032.04-.044.08-.047zm-.844.125c.042-.012 0 .072 0 .072s-.139.225-.332.311-.322.13-.688.162c-.053 0-.03-.033-.03-.033s.417-.117.654-.246a2.36 2.36 0 0 0 .322-.215.25.25 0 0 1 .074-.05zm.752.06s.065.002.14.055c.076.054.14.237.14.237s.022.117-.032.16-.14-.031-.184-.096a.269.269 0 0 0-.16-.107c-.086-.032-.215.064-.236 0 0-.022.01-.076.01-.076s.022-.064.119-.117c.086-.054.203-.055.203-.055zm1.998.415c.043.004.103.037.15.037.14 0 .257 0 .354.021.086.022.107.075.064.075a.33.33 0 0 1-.096.011c-.096 0-.086-.043-.214.022-.13.064-.033.033-.215.097-.172.065-.13-.107-.13-.107s.013-.033.034-.12c.008-.031.027-.039.053-.036zm-4.844.498c.065 0 .184.044.184.14.01.097-.066.054-.12.086-.031.022-.052.033-.095.065-.054.043-.108.15-.14.117-.044-.032-.022-.15-.022-.15s.033-.086.076-.172c.054-.086.117-.086.117-.086zm5.137.111a.228.228 0 0 1 .05.008s.032.01.053.031c.022.022.108.098.108.14 0 .033-.139-.022-.203-.032-.065-.011-.15-.075-.15-.075s-.022-.02.042-.052a.21.21 0 0 1 .1-.02zm-1.895.088c.01 0 .009.015-.01.049-.042.086-.171.193-.171.193s-.15.214-.182.246c-.14.108-.312.044-.387.055-.064.01-.021-.055-.021-.055s.183-.074.3-.138c.158-.079.427-.35.471-.35zM9.86 3.17c.023 0 .041.01.041.043.011.075-.128.128-.128.128s-.042.011-.053-.064c-.01-.075.053-.086.053-.086s.05-.024.087-.021zm2.66.117c.018-.01.003.097.003.097s-.033.141-.108.184c-.096.054-.334.118-.355.086 0-.022.311-.12.45-.355a.034.034 0 0 1 .01-.012zm1.454.039a.239.239 0 0 1 .052.006s.03.01.063.03c.032.033.108.12.119.163.01.043-.14-.01-.215-.021-.064-.011-.162-.086-.162-.086s-.02-.033.045-.065a.175.175 0 0 1 .098-.027zm-1.301.244c.02-.006-.012.084-.012.084s-.043.14-.129.172c-.107.032-.514.042-.525.01-.01-.033.472-.076.654-.258a.026.026 0 0 1 .012-.008zm1.334.185a.3.3 0 0 1 .06.006s.033.01.065.032c.032.032.118.13.129.183.01.065-.15 0-.225-.021a.535.535 0 0 1-.184-.098s-.021-.031.043-.074a.207.207 0 0 1 .112-.028zm0 .537a.3.3 0 0 1 .06.006s.033.01.065.032c.032.032.118.13.129.183.01.054-.15-.011-.225-.033a.525.525 0 0 1-.184-.096s-.021-.021.043-.064a.207.207 0 0 1 .112-.027zm-1.568.514c.083.024.007.629-.153.91a4.718 4.718 0 0 1-.742.944c-.15.107-.053-.086-.053-.086s.418-.579.612-.987c.14-.29.226-.676.29-.752.02-.022.034-.032.046-.029zm1.55.008a.314.314 0 0 1 .069.01s.042.01.074.043c.032.032.14.151.15.205 0 .064-.182-.023-.267-.033a.54.54 0 0 1-.203-.108s-.023-.043.052-.086a.206.206 0 0 1 .125-.031zm-.068.52a.3.3 0 0 1 .06.005s.033.012.065.034c.032.032.118.128.129.181.01.054-.15-.01-.225-.021a.526.526 0 0 1-.182-.096s-.02-.033.043-.076a.201.201 0 0 1 .11-.027zm-.031.466a.482.482 0 0 1 .048 0l.055.033a.542.542 0 0 1 .108.15c0 .044-.13-.01-.194-.02-.064-.011-.15-.075-.15-.075s-.022-.032.043-.064a.2.2 0 0 1 .09-.024zm-.059.457a.32.32 0 0 1 .045.006l.043.022c.021.021.084.085.084.117 0 .043-.117-.01-.16-.01a.32.32 0 0 1-.117-.064s-.012-.023.03-.055c.022-.016.05-.017.075-.016zm-.09.422a.31.31 0 0 1 .037.002l.043.022c.022.021.074.075.074.107-.01.022-.107-.021-.15-.021a.475.475 0 0 1-.107-.053s-.01-.022.033-.043a.165.165 0 0 1 .07-.014zm-7.609.207c.118.022.14.032.129.086.01.054-.139.053-.139.053s-.216.044-.183-.031c.043-.076.193-.108.193-.108zm7.511.125c.022 0 .04.004.04.004l.043.022c.021.021.074.075.074.107-.011.032-.108-.01-.15-.021-.044-.011-.108-.055-.108-.055s-.01-.022.033-.043a.156.156 0 0 1 .068-.014zm-.12.377a.22.22 0 0 1 .03.002l.032.022c.01.01.064.064.064.086 0 .032-.076 0-.119-.01-.032-.01-.084-.043-.084-.043s-.01-.022.022-.043a.1.1 0 0 1 .054-.014zm-3.061.12a1.5 1.5 0 0 1 .182.011c.3.043.59.312.546.344-.043.032-.107 0-.129 0l-.107-.053-.162-.043s-.29-.065-.504-.055c-.215.011-.408.086-.408.086s-.086.044-.107-.01c-.011-.064.033-.097.033-.097l.01-.022s.246-.164.646-.162zm-5.113.128c.007 0 .01.002.01.002l.021.022c-.01 0 .032.107-.064.214-.097.108-.397.677-.461.58-.065-.075.29-.613.365-.72.056-.089.107-.098.129-.098zm8.05.117c.015 0 .026.002.026.002l.031.012.055.074c-.011.032-.076.011-.108 0-.032 0-.076-.043-.076-.043s-.01-.01.022-.03a.094.094 0 0 1 .05-.015zm-6.783.303c.017-.006.029.008.043.012l.053.021.033.032.108.107c.043.064.16.28.138.3-.096.097-.128-.032-.267-.193-.14-.15-.108-.279-.108-.279zm6.633.05a.079.079 0 0 1 .025.005l.032.01.054.076c0 .021-.065-.012-.097-.012-.033 0-.075-.043-.075-.043s-.022-.01.01-.021a.094.094 0 0 1 .051-.014zM8.4 8.497c.035.003-.013.065-.013.065s-.184.246-.291.397c-.14.203-.312.514-.344.482-.032-.032.151-.374.248-.557.107-.225.268-.343.332-.365a.173.173 0 0 1 .068-.021zm-3.052.805l.021.022s.011.042-.064.16-.13.119-.13.119c0-.01-.02-.053.044-.182s.129-.119.129-.119zm-1.317.42a.032.032 0 0 1 .016.01c.032.043-.064.236-.064.236s-.097.203-.13.117c-.032-.075.034-.214.034-.214.075-.066.108-.156.144-.149zm8.565.277c.096.011.086.194.086.237.032.311.162.624.398 1 .333.526.87.934.848.967-.054.053-.59-.366-.784-.602-.322-.387-.56-.806-.634-1.332-.022-.118-.022-.291.086-.27zm-6.324.15c.021 0 .117.034.117.034l.236.096c.01 0 .13.054.227.107l.234.15.066.055c0 .022.075.14-.076.108-.15-.033-.472-.28-.601-.344-.13-.064-.343-.086-.246-.172.01-.01.021-.033.043-.033zm-1.14.593a.058.058 0 0 1 .022 0c.065 0 .065.052.065.052v.033s-.001.194.01.344c0 .043.119.526.119.526s.021.043-.022.043c-.032 0-.064-.065-.064-.065s-.087-.128-.12-.224c-.031-.086-.042-.227-.042-.227s-.022-.182-.022-.246c.011-.086.011-.162.022-.205a.039.039 0 0 1 .031-.031zm-1.49.257a.06.06 0 0 1 .03 0c.064.011.031.128.031.182s-.062.15-.084.15c-.021 0-.065-.096-.054-.15.01-.047.018-.167.078-.182zm5.442.893c.122-.01.475.497.988 1.05.58.624 1.256 1.215 1.278 1.29.043.129-.473-.28-.752-.494-.741-.57-1.643-1.729-1.535-1.836a.036.036 0 0 1 .021-.01zm10.273.523c.02-.002.037.024.037.024l.022.031c0 .022.128.526.117.848-.022.45-.042.773-.31 1.117-.323.419-.882.85-.764.506.075-.204.57-.462.763-1.031.108-.344.13-.667.13-.667l-.022-.654s-.012-.053-.012-.129c.012-.032.027-.043.04-.045zm-5.478 1.12c.1.011.145.074.027.16-.14.096-.193.085-.28.181-.096.118-.127.517-.224.356-.096-.161-.032-.387.13-.559a.418.418 0 0 1 .347-.139zm-7.799.439c.041-.008.149.074.149.074.053.01.107.108.107.108s.022.076-.043.097c-.064.032-.107-.033-.107-.033s-.14-.193-.12-.236a.019.019 0 0 1 .014-.01zm10.307 1.525c.021 0 .065.022.119.13s-.086.868-.258.76c-.097-.064.053-.256.053-.417 0-.129-.022-.227-.022-.334 0-.107.108-.139.108-.139zM13.2 16.824c.038.004.048.058-.004.166-.075.161-.096.215-.107.366-.022.16.076.61-.074.44-.054-.076-.108-.43-.065-.602.047-.242.186-.375.25-.37zm-.82 2.118c.036-.005.054.013.054.013.022.043-.022.087-.033.098a.435.435 0 0 1-.129.043c-.064.01-.03-.043-.03-.043s.041-.066.095-.098a.134.134 0 0 1 .043-.013zm-2.877.228c.086 0 .086.043.086.043 0 .032-.033.044-.12.033-.074-.01-.084-.032-.073-.043 0-.01.021-.033.107-.033zm.652.031a.063.063 0 0 1 .024.002s.365.064.601.074c.172.011.258.023.43.012.097 0 .043-.012.193-.012.054-.01.022.066-.021.077-.161.043-.226.02-.365.031-.119.01-.173.021-.291.021-.204 0-.224.012-.514-.074-.054-.021-.12-.086-.098-.107a.055.055 0 0 1 .041-.024zm-2.435.065c.126.003.086.045.086.045s-.001.042-.076.095c-.076.054-.107.022-.118.022-.01 0-.086-.043-.086-.086.011-.043.13-.074.13-.074a.489.489 0 0 1 .064-.002zm6.761 1.48a.133.133 0 0 1 .026.002l.021.043c0 .01-.086.13-.129.13-.053-.012-.033-.075-.033-.075s-.021-.065.043-.086a.232.232 0 0 1 .072-.014zm-.802.318c.008 0 .018.001.023.006v.043c.01.033-.27.345-.463.528-.182.172-.494.408-.494.408h-.043v-.055l.012-.021.021-.032.022-.033.021-.03.065-.077.15-.139.15-.14.237-.237s.085-.095.117-.117c.032-.021.054-.043.086-.064.032-.016.07-.038.096-.04zm-1.553 1.293a.064.064 0 0 1 .05.014c.033.075-.02.096-.02.096l-.098.076c-.011 0-.075.054-.096.021-.022-.032.01-.075.01-.086 0-.01.065-.085.119-.107a.093.093 0 0 1 .035-.014zm-1.047.994c.044-.005.076.061.076.061s.022.031.022.074c0 .033-.097.022-.15.065-.065.043.065.173-.14.162-.117-.01-.053-.118-.042-.129l.074-.107c.054-.076.087-.087.14-.12a.046.046 0 0 1 .02-.006z" }) + ] + } + ); +}); + +exports.default = SiFerrari; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.d.ts new file mode 100644 index 000000000..29ac981ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D40000"; +declare const SiFerrari: IconType; +export { SiFerrari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.mjs new file mode 100644 index 000000000..9c11373ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrari.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D40000"; +const SiFerrari = React.forwardRef(function SiFerrari2({ title = "Ferrari", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.543 0s-.01.141-.053.227c-.032.075-.118.128-.107.182.01.054.064.119.15.162.086.043.117.074.203.096.075.021.184.076.205.011.033-.064-.01-.151-.064-.226-.086-.14-.13-.172-.248-.365C11.607.044 11.586 0 11.543 0zm.678 0c-.022.011-.054.174-.108.313-.064.161-.022.236.01.3.043.065.098.108-.01.173-.107.064-.248.043-.248.043s-.118-.023-.215-.076a23.832 23.832 0 0 0-.3-.13s-.194-.053-.323-.042c-.129.01-.14.022-.236.033-.054 0-.075-.001-.129.01-.043.01-.096-.02-.096.033s.107.054.182.086c.075.032.247.031.215.074-.043.043-.204.054-.215.043-.01 0-.117-.021-.203-.021-.14.01-.15.01-.353.107-.033.01-.022.086.042.064a1.12 1.12 0 0 1 .301-.043c.13 0 .203.044.332.077.108.032.118.052.28.074.032 0 .095-.022.095.021 0 .022-.043.055-.043.055s-.096.02-.086.053c.022.043.108 0 .15 0 .044 0 .11.012.098.054l-.021.032a2.312 2.312 0 0 0-.291.097c-.269.108-.375.237-.633.366-.247.118-.644.267-.644.267s-.118.065-.29.107c-.171.044-.182.034-.3.055a.571.571 0 0 0-.27.086.52.52 0 0 0-.15.117l-.15.227-.087.127c-.021.043-.042.064-.052.107-.022.054-.033.076-.043.13-.032.128 0 .204.021.333.011.032.011.054.022.086.01.032.052.065.052.065l.043.01s.152-.01.248-.032c.097-.021.237-.055.237-.055l.181-.052.12-.043s.075 0 .086.043c.01.032-.022.086-.022.086s-.065.03-.119.052c-.054.022-.183.054-.193.065l-.14.043-.118.011s-.022.011-.043.043c-.022.033-.022.032-.022.053.022.022.033.043.055.065.043.032.064.053.117.064.075.032.118.022.193.022a.587.587 0 0 0 .27-.065c.086-.054.118-.053.236-.096a.543.543 0 0 1 .118-.021c.204-.022.32.01.525.043.204.032.302.097.506.129.215.032.343.096.568.043.108-.022.173-.076.227.031.053.097.043.15.043.15s-.001.066-.076.27c-.076.204-.311.709-.311.709l-.162.322s-.13.257-.43.59a54.284 54.284 0 0 1-.32.353s-.161.119-.322.323c-.161.204-.163.279-.313.43-.097.096-.15.15-.268.226-.118.075-.258.053-.634.31-.322.226-.494.41-.516.399-.021-.01-.129-.098-.172-.12-.032-.02-.654-.439-.654-.439l-.258-.172-.119-.076-.021-.043-.063-.086s-.097-.118-.215-.214a.92.92 0 0 0-.441-.237c-.183-.053-.3-.086-.482-.021a.646.646 0 0 0-.27.172c-.107.107-.129.193-.215.322s-.172.248-.215.312c-.043.065-.129.237-.129.237s-.214.343-.332.568c-.14.247-.193.399-.322.635-.204.376-.495.762-.57.933l-.084.194s-.023.095-.033.16c-.011.064-.011.172-.022.215a.312.312 0 0 1-.053.119c-.01.01-.129.257-.172.418-.043.16-.14.666-.021.73.118.065.987-.31 1.105-.676.076-.236-.236-.355-.15-.57.032-.075.054-.085.107-.16.086-.14.054-.429.215-.697.118-.193.354-.442.676-.807.204-.225.398-.59.398-.59s.043-.129.13-.107c.096.021.181.01.181.01l.043.033.086.086.129.193s.216.31.29.397c.076.086.151.15.259.236.118.107.16.161.31.28.215.171.139.236-.14.085a1.82 1.82 0 0 0-.364-.138c-.128-.033-.612-.162-.859-.194-.236-.032-.28-.021-.28-.021s-.118-.012-.257.074c-.14.086-.215.15-.215.15s-.161.183-.172.215c-.01.032-.086.16-.086.16s-.044.066-.054.14c-.022.076-.01.151-.01.151l.01.16.011.15s.033.377.108.753c.021.107.043.279.043.279l.052.387s.033.409.065.548c.032.13.054.14.076.225.043.161-.032.236.043.43.075.193.14.17.215.289.054.086.074.107.117.215.043.107.183.463.344.72.172.269.398.601.549.569.15-.033.257-.268.257-.268s.172-.463.065-.914c-.108-.462-.602-.245-.666-.578-.01-.075 0-.193 0-.193s-.012-.141-.033-.184c-.022-.043-.194-.364-.258-.633-.054-.204-.043-.86-.086-1.043-.118-.472-.129-.43-.065-.515.076-.086.141-.065.141-.065l.096.012.076.031.139.086c.043.032.193.15.193.15l.365.237s.205.119.291.162c.086.043.16.096.16.096l.096.064.162.12.031.03.022.043s.076.173.398.356c.258.15.484.106.58.225.022.021.203.27.29.42.107.171.236.374.279.439.043.064.312.396.312.396l.354.387.463.43.418.355.267.215s.237.226.506.408c.258.172.268.193.44.31.128.087.3.206.472.335.172.14.366.396.291.482-.054.032-.151-.106-.334-.267a4.298 4.298 0 0 0-.375-.301c-.193-.15-.291-.227-.506-.356-.107-.064-.3-.181-.31-.16-.075.226-.066.44-.055.719.01.193.043.386.107.633.054.236.108.366.194.591.086.226.248.58.248.58l.246.495.226.375.118.193.043.064s.053.13 0 .215-.119.269-.215.28c-.097.021-.322.033-.322.033l-1.278-.022-.666-.054s-.074-.043-.46-.043c-.226 0-.409.096-.538.107-.107.01-.634-.032-.988.107-.333.14-.484.172-.602.387-.086.161.42.42.838.516.677.15.483-.14.74-.322.033-.022.044-.042.077-.053.171-.054.267.084.44.084.192 0 .3-.064.493-.096.977-.129 2.502.332 2.502.332s.377.118.549.086c.204-.043.16-.118.224-.236.054-.097.033-.117.043-.225 0-.064-.01-.096-.021-.16-.043-.183-.16-.441-.16-.441s-.087-.193-.12-.29c-.042-.139-.085-.226-.107-.376-.064-.398-.053-.365-.053-.59 0-.408.043-.634.15-1.031.162-.58.463-.827.688-1.385.065-.15.064-.365.14-.387.085-.01.075.269.032.43-.14.558-.483.794-.644 1.363-.118.44-.183.697-.15 1.148.01.247.107.635.107.635s.129.429.193.59c.065.161.193.43.193.43l.29.515.15.246s.106.097.053.258c-.054.161-.16.26-.29.399-.364.43-1.212 1.062-1.427 1.212-.3.226-.291.291-.313.356-.118.344-.462.354-.837.762-.086.086-.311.321-.268.525.021.075.945.237 1.482.012.42-.183.054-.388.172-.592.086-.15.3-.15.397-.28.16-.214.053-.203.193-.374.462-.559.763-.88 1.59-1.385.075-.043.215-.107.215-.107s.117-.055.16-.12c.054-.086.043-.16.043-.257 0-.065-.01-.096-.01-.16 0-.076.01-.119-.012-.194-.021-.118-.095-.215-.138-.28a.772.772 0 0 1-.162-.355.894.894 0 0 1 .033-.6c.086-.225.279-.407.279-.407l.482-.323s.42-.301.55-.42c.139-.118.407-.365.6-.644.226-.311.344-.505.44-.88.032-.14.065-.354.065-.354s0-.15.086-.16c.085-.011.107.02.107.02s.074.042.096.257c.01.215-.053.463-.053.463s-.065.246-.086.396c-.01.097-.012.15-.012.258 0 .183.076.334.076.334s.043.032.043-.043a1.6 1.6 0 0 1 .055-.344c.032-.107.053-.087.117-.27.086-.236.01-.213.053-.353.022-.064.076-.129.14-.129.065 0 .075.086.075.086s.065.28.012.537c-.054.258-.248.612-.248.612l-.149.257s-.107.183-.15.301c-.043.129-.055.183-.033.3.032.13.13.303.183.27.043-.032-.064-.14.065-.398s.298-.418.298-.418.237-.28.344-.494c.097-.193.194-.506.194-.506s.076-.28.054-.516c-.01-.225-.054-.343-.054-.343l-.096-.172-.055-.127.022-.076c.021-.011.097.043.162.129a.854.854 0 0 1 .16.343 1.018 1.018 0 0 1 .043.301c0 .086-.031.44.097.666.054.108.183.354.194.246.021-.247-.087-.364-.076-.59.01-.257.076-.193.097-.322.022-.14.053-.173.032-.355a2.632 2.632 0 0 0-.096-.397l-.076-.172-.032-.064s.021-.031.053-.031l.258-.086s.334-.15.463-.258c.14-.097.3-.27.3-.27s.215-.267.323-.46c.258-.484.257-1.096.246-1.376-.01-.268-.086-.623-.086-.623s-.086-.43-.064-.709c.021-.279.043-.408.043-.408s-.01-.279.226-.58c.236-.3.342-.493.385-.719.043-.193-.022-.504-.108-.386-.096.129-.137.387-.277.601-.193.301-.474.666-.613.666-.075 0-.096-.172-.096-.172s-.096-.29.065-.656c.118-.258.181-.332.332-.525.14-.183.225-.28.322-.473.086-.172.106-.204.16-.472.01-.065-.01-.204-.074-.194-.086 0-.322.517-.569.807-.236.268-.677.611-.677.611s-.043.031-.043-.055c-.01-.075-.022-.3.021-.503a2.22 2.22 0 0 1 .291-.72c.204-.354.461-.6.59-.73.054-.053.215-.151.13-.205-.076-.043-.302.15-.474.28-.214.16-.289.205-.503.463-.215.257-.27.365-.27.365s-.204.332-.258.654c-.054.322-.053.504-.053.504s0 .291.032.463c.021.182.097.46.097.46s.108.313.15.507c.044.193.118.761.118.761s.054.409.021.795c-.032.387-.064.612-.107.73-.043.119-.16.43-.354.645-.182.204-.226.236-.226.236s-.193.16-.354.246a3.743 3.743 0 0 1-.505.227 2.211 2.211 0 0 1-.268.031h-.139l-.043-.03-.023-.087s-.106-.419-.234-.687c-.108-.226-.334-.537-.334-.537s-.387-.527-.688-.817c-.344-.343-.73-.6-.967-.783-.086-.064-.279-.184-.279-.184s-.783-.783-1.062-1.406c-.194-.43-.322-.74-.268-1.213.01-.107.053-.312.074-.312l.14.043c.012.01.14.129.259.172.064.021.181.043.181.043s.097.01.15.021c.054.022.151.054.215.086.065.032.16.098.16.098l.184.138.194.15s.106.076.138.087c.032.01.054.021.065.021h.043s.044-.012.054-.055c.011-.053-.053-.01-.15-.117a.698.698 0 0 1-.15-.181s-.022-.087-.108-.184-.193-.182-.193-.182-.076-.053-.184-.086c-.107-.032-.14-.033-.15-.076-.01-.043.129-.021.129-.021s.162.021.29.086c.13.064.204.14.204.14l.086.075.055.054.052.032s.054.053.065-.022c.01-.064-.011-.118-.022-.129l-.053-.053-.214-.183a1.076 1.076 0 0 0-.172-.15 1.303 1.303 0 0 0-.28-.15c-.107-.044-.171-.033-.279-.087-.075-.032-.14-.053-.183-.117-.011-.01-.064-.055.033-.033.096.021.16.054.267.076.172.043.28.042.442.096.064.021.15.064.15.064l.203.086s.28.151.473.162a.938.938 0 0 0 .42-.064.814.814 0 0 0 .215-.13.36.36 0 0 0 .052-.064l.022-.054v-.043c-.054-.065-.16.108-.332.14-.183.033-.173.053-.291.032a.477.477 0 0 1-.3-.15c-.173-.162-.236-.312-.462-.409-.096-.043-.27-.086-.27-.086s-.236-.075-.365-.15c-.096-.054-.298-.086-.234-.172.032-.043.29.107.482.129.14.021.237.011.344.011s.258-.033.28-.033c.021-.01.106 0 .181.022.075.021.118.053.193.086.076.032.163.086.184.086l.043.011.022-.021.01-.022-.01-.021-.034-.022-.064-.043s-.096-.054-.182-.14c-.086-.086-.162-.182-.29-.225-.13-.043-.28-.064-.28-.064l-.15-.012-.065-.01s-.107-.033-.021-.054a.888.888 0 0 1 .15-.032.495.495 0 0 1 .248.01c.086.032.226.107.236.107.011.011.14.109.28.141.14.032.322.043.322.043l.086-.021.043-.012.031-.022-.01-.052s0-.044-.064-.055a.697.697 0 0 1-.313-.117c-.118-.086-.203-.172-.203-.172s-.086-.076-.258-.12c-.16-.042-.214-.042-.214-.042l-.055-.022-.117-.052s-.055-.033-.098-.086c-.043-.054-.106-.152.076-.098.183.054.225.086.225.086s.097.097.183.107c.054.011.097.022.13-.021.053-.054-.098-.118-.206-.194a.725.725 0 0 1-.172-.193s-.063-.053.034-.031c.096.021.267.129.267.129s.086.042.13.053c.031.01.118.064.161.085.032.011.13.033.193.065.086.054.13.14.172.172.043.032.076.087.13.097.053.011.063.032.095.01a.418.418 0 0 0 .043-.031s.01-.023-.043-.055-.117-.117-.117-.117l-.022-.043-.011-.043-.053-.086-.098-.14s-.15-.204-.289-.28c-.129-.075-.226-.117-.226-.117s-.064-.031-.096-.053c-.054-.043-.076-.077-.12-.13-.053-.065-.073-.106-.138-.17-.118-.118-.483-.184-.344-.27.076-.043.172-.02.215-.01.043.011.14.052.237.084.064.022.107.024.171.045.065.022.14.031.172.053.032.021.065.065.086.076.011.01.096.15.246.225.15.075.227.128.377.138.118.011.31-.03.31-.03s.055-.023.012-.077c-.053-.054-.054-.064-.097-.074-.172-.065-.31-.043-.44-.172-.053-.054-.076-.065-.119-.15-.043-.086-.02-.107-.052-.16-.022-.054-.077-.13-.077-.13s-.16-.194-.332-.29a1.955 1.955 0 0 1-.334-.215c-.032-.022-.095-.108-.095-.108l-.055-.086-.031-.064c-.022-.118.192.033.31.076.194.064.291.15.485.215.107.032.172.031.279.074.182.075.236.258.43.28.107.01.322.053.279-.044-.043-.107-.258-.107-.365-.236-.054-.054-.054-.106-.108-.16-.086-.108-.29-.205-.29-.205s-.064-.053-.14-.203c-.064-.15-.225-.26-.515-.399-.193-.096-.58-.118-.43-.215.086-.064.161-.053.28-.021.118.043.16.098.257.14.097.044.14.054.16.065.022.01.097.043.13.043.02.01.183.032.226.043l.215.053.172.064s.085.033.138.033.141-.021.141-.021l.064-.043.01-.022s.033-.053-.053-.064a.986.986 0 0 0-.128-.012l-.077-.021-.03-.01s-.151-.118-.28-.172a4.841 4.841 0 0 1-.162-.064l-.053-.012-.064-.01s-.055 0-.141-.076c-.086-.075-.118-.118-.193-.193l-.096-.096s-.086-.066-.086-.12c.01-.085.193.098.193.098l.13.086s.107.076.3.086c.193.011.43-.054.43-.054s.031-.02.138.011.194.096.194.096l.086.076.129.139.021-.01c.01-.01.065-.065-.031-.183-.097-.119-.258-.225-.258-.225s-.215-.129-.43-.172c-.214-.043-.312-.043-.312-.043s-.161 0-.258-.107c-.097-.108-.16-.215-.16-.215l-.033-.15s-.053-.065-.16-.108c-.097-.043-.206-.107-.206-.107s-.16-.054-.172-.13c-.032-.139.27 0 .43.032.15.032.215.087.365.12a.915.915 0 0 0 .344.03c.075 0 .118-.008.193-.02.076 0 .13-.01.206 0 .107.022.15.075.257.118.065.032.097.063.172.074.065.011.194.055.172-.01l-.033-.043c-.054-.075-.117-.075-.182-.128-.14-.108-.204-.193-.365-.268a.932.932 0 0 0-.29-.098c-.087-.01-.151.012-.237-.01-.097-.032-.128-.075-.225-.128-.15-.086-.237-.162-.398-.227a2.663 2.663 0 0 0-.29-.086l-.076-.01-.03-.011c-.151-.054.267-.171.46-.225.097-.021.14-.044.236-.033.086.01.183.13.28.076.14-.075-.161-.28-.258-.312-.129-.054-.354-.01-.354-.01l-.494-.012-.14-.021s-.086 0-.15-.075c-.065-.075-.311-.377-.59-.42-.29-.043-.376 0-.397-.02-.247-.388-.506-.473-.7-.655-.053-.054-.138-.173-.16-.162zm1.173 1.14a.53.53 0 0 1 .051 0l.053.033a.54.54 0 0 1 .107.15c.011.043-.128-.01-.181-.022a.43.43 0 0 1-.15-.076s-.023-.032.03-.064a.197.197 0 0 1 .09-.022zm.252.53c.026 0 .045.006.045.006l.053.034a.538.538 0 0 1 .107.15c.011.043-.128-.01-.181-.022a.43.43 0 0 1-.15-.076s-.022-.032.043-.064a.133.133 0 0 1 .083-.027zm-1.882.014a.398.398 0 0 1 .08.004s.043 0 .107.031c.065.043.108.172.108.172s.01.022-.043.022c-.033 0-.033-.053-.065-.075-.043-.032-.075-.043-.129-.064-.053-.021-.128.01-.138-.043 0-.032.04-.044.08-.047zm-.844.125c.042-.012 0 .072 0 .072s-.139.225-.332.311-.322.13-.688.162c-.053 0-.03-.033-.03-.033s.417-.117.654-.246a2.36 2.36 0 0 0 .322-.215.25.25 0 0 1 .074-.05zm.752.06s.065.002.14.055c.076.054.14.237.14.237s.022.117-.032.16-.14-.031-.184-.096a.269.269 0 0 0-.16-.107c-.086-.032-.215.064-.236 0 0-.022.01-.076.01-.076s.022-.064.119-.117c.086-.054.203-.055.203-.055zm1.998.415c.043.004.103.037.15.037.14 0 .257 0 .354.021.086.022.107.075.064.075a.33.33 0 0 1-.096.011c-.096 0-.086-.043-.214.022-.13.064-.033.033-.215.097-.172.065-.13-.107-.13-.107s.013-.033.034-.12c.008-.031.027-.039.053-.036zm-4.844.498c.065 0 .184.044.184.14.01.097-.066.054-.12.086-.031.022-.052.033-.095.065-.054.043-.108.15-.14.117-.044-.032-.022-.15-.022-.15s.033-.086.076-.172c.054-.086.117-.086.117-.086zm5.137.111a.228.228 0 0 1 .05.008s.032.01.053.031c.022.022.108.098.108.14 0 .033-.139-.022-.203-.032-.065-.011-.15-.075-.15-.075s-.022-.02.042-.052a.21.21 0 0 1 .1-.02zm-1.895.088c.01 0 .009.015-.01.049-.042.086-.171.193-.171.193s-.15.214-.182.246c-.14.108-.312.044-.387.055-.064.01-.021-.055-.021-.055s.183-.074.3-.138c.158-.079.427-.35.471-.35zM9.86 3.17c.023 0 .041.01.041.043.011.075-.128.128-.128.128s-.042.011-.053-.064c-.01-.075.053-.086.053-.086s.05-.024.087-.021zm2.66.117c.018-.01.003.097.003.097s-.033.141-.108.184c-.096.054-.334.118-.355.086 0-.022.311-.12.45-.355a.034.034 0 0 1 .01-.012zm1.454.039a.239.239 0 0 1 .052.006s.03.01.063.03c.032.033.108.12.119.163.01.043-.14-.01-.215-.021-.064-.011-.162-.086-.162-.086s-.02-.033.045-.065a.175.175 0 0 1 .098-.027zm-1.301.244c.02-.006-.012.084-.012.084s-.043.14-.129.172c-.107.032-.514.042-.525.01-.01-.033.472-.076.654-.258a.026.026 0 0 1 .012-.008zm1.334.185a.3.3 0 0 1 .06.006s.033.01.065.032c.032.032.118.13.129.183.01.065-.15 0-.225-.021a.535.535 0 0 1-.184-.098s-.021-.031.043-.074a.207.207 0 0 1 .112-.028zm0 .537a.3.3 0 0 1 .06.006s.033.01.065.032c.032.032.118.13.129.183.01.054-.15-.011-.225-.033a.525.525 0 0 1-.184-.096s-.021-.021.043-.064a.207.207 0 0 1 .112-.027zm-1.568.514c.083.024.007.629-.153.91a4.718 4.718 0 0 1-.742.944c-.15.107-.053-.086-.053-.086s.418-.579.612-.987c.14-.29.226-.676.29-.752.02-.022.034-.032.046-.029zm1.55.008a.314.314 0 0 1 .069.01s.042.01.074.043c.032.032.14.151.15.205 0 .064-.182-.023-.267-.033a.54.54 0 0 1-.203-.108s-.023-.043.052-.086a.206.206 0 0 1 .125-.031zm-.068.52a.3.3 0 0 1 .06.005s.033.012.065.034c.032.032.118.128.129.181.01.054-.15-.01-.225-.021a.526.526 0 0 1-.182-.096s-.02-.033.043-.076a.201.201 0 0 1 .11-.027zm-.031.466a.482.482 0 0 1 .048 0l.055.033a.542.542 0 0 1 .108.15c0 .044-.13-.01-.194-.02-.064-.011-.15-.075-.15-.075s-.022-.032.043-.064a.2.2 0 0 1 .09-.024zm-.059.457a.32.32 0 0 1 .045.006l.043.022c.021.021.084.085.084.117 0 .043-.117-.01-.16-.01a.32.32 0 0 1-.117-.064s-.012-.023.03-.055c.022-.016.05-.017.075-.016zm-.09.422a.31.31 0 0 1 .037.002l.043.022c.022.021.074.075.074.107-.01.022-.107-.021-.15-.021a.475.475 0 0 1-.107-.053s-.01-.022.033-.043a.165.165 0 0 1 .07-.014zm-7.609.207c.118.022.14.032.129.086.01.054-.139.053-.139.053s-.216.044-.183-.031c.043-.076.193-.108.193-.108zm7.511.125c.022 0 .04.004.04.004l.043.022c.021.021.074.075.074.107-.011.032-.108-.01-.15-.021-.044-.011-.108-.055-.108-.055s-.01-.022.033-.043a.156.156 0 0 1 .068-.014zm-.12.377a.22.22 0 0 1 .03.002l.032.022c.01.01.064.064.064.086 0 .032-.076 0-.119-.01-.032-.01-.084-.043-.084-.043s-.01-.022.022-.043a.1.1 0 0 1 .054-.014zm-3.061.12a1.5 1.5 0 0 1 .182.011c.3.043.59.312.546.344-.043.032-.107 0-.129 0l-.107-.053-.162-.043s-.29-.065-.504-.055c-.215.011-.408.086-.408.086s-.086.044-.107-.01c-.011-.064.033-.097.033-.097l.01-.022s.246-.164.646-.162zm-5.113.128c.007 0 .01.002.01.002l.021.022c-.01 0 .032.107-.064.214-.097.108-.397.677-.461.58-.065-.075.29-.613.365-.72.056-.089.107-.098.129-.098zm8.05.117c.015 0 .026.002.026.002l.031.012.055.074c-.011.032-.076.011-.108 0-.032 0-.076-.043-.076-.043s-.01-.01.022-.03a.094.094 0 0 1 .05-.015zm-6.783.303c.017-.006.029.008.043.012l.053.021.033.032.108.107c.043.064.16.28.138.3-.096.097-.128-.032-.267-.193-.14-.15-.108-.279-.108-.279zm6.633.05a.079.079 0 0 1 .025.005l.032.01.054.076c0 .021-.065-.012-.097-.012-.033 0-.075-.043-.075-.043s-.022-.01.01-.021a.094.094 0 0 1 .051-.014zM8.4 8.497c.035.003-.013.065-.013.065s-.184.246-.291.397c-.14.203-.312.514-.344.482-.032-.032.151-.374.248-.557.107-.225.268-.343.332-.365a.173.173 0 0 1 .068-.021zm-3.052.805l.021.022s.011.042-.064.16-.13.119-.13.119c0-.01-.02-.053.044-.182s.129-.119.129-.119zm-1.317.42a.032.032 0 0 1 .016.01c.032.043-.064.236-.064.236s-.097.203-.13.117c-.032-.075.034-.214.034-.214.075-.066.108-.156.144-.149zm8.565.277c.096.011.086.194.086.237.032.311.162.624.398 1 .333.526.87.934.848.967-.054.053-.59-.366-.784-.602-.322-.387-.56-.806-.634-1.332-.022-.118-.022-.291.086-.27zm-6.324.15c.021 0 .117.034.117.034l.236.096c.01 0 .13.054.227.107l.234.15.066.055c0 .022.075.14-.076.108-.15-.033-.472-.28-.601-.344-.13-.064-.343-.086-.246-.172.01-.01.021-.033.043-.033zm-1.14.593a.058.058 0 0 1 .022 0c.065 0 .065.052.065.052v.033s-.001.194.01.344c0 .043.119.526.119.526s.021.043-.022.043c-.032 0-.064-.065-.064-.065s-.087-.128-.12-.224c-.031-.086-.042-.227-.042-.227s-.022-.182-.022-.246c.011-.086.011-.162.022-.205a.039.039 0 0 1 .031-.031zm-1.49.257a.06.06 0 0 1 .03 0c.064.011.031.128.031.182s-.062.15-.084.15c-.021 0-.065-.096-.054-.15.01-.047.018-.167.078-.182zm5.442.893c.122-.01.475.497.988 1.05.58.624 1.256 1.215 1.278 1.29.043.129-.473-.28-.752-.494-.741-.57-1.643-1.729-1.535-1.836a.036.036 0 0 1 .021-.01zm10.273.523c.02-.002.037.024.037.024l.022.031c0 .022.128.526.117.848-.022.45-.042.773-.31 1.117-.323.419-.882.85-.764.506.075-.204.57-.462.763-1.031.108-.344.13-.667.13-.667l-.022-.654s-.012-.053-.012-.129c.012-.032.027-.043.04-.045zm-5.478 1.12c.1.011.145.074.027.16-.14.096-.193.085-.28.181-.096.118-.127.517-.224.356-.096-.161-.032-.387.13-.559a.418.418 0 0 1 .347-.139zm-7.799.439c.041-.008.149.074.149.074.053.01.107.108.107.108s.022.076-.043.097c-.064.032-.107-.033-.107-.033s-.14-.193-.12-.236a.019.019 0 0 1 .014-.01zm10.307 1.525c.021 0 .065.022.119.13s-.086.868-.258.76c-.097-.064.053-.256.053-.417 0-.129-.022-.227-.022-.334 0-.107.108-.139.108-.139zM13.2 16.824c.038.004.048.058-.004.166-.075.161-.096.215-.107.366-.022.16.076.61-.074.44-.054-.076-.108-.43-.065-.602.047-.242.186-.375.25-.37zm-.82 2.118c.036-.005.054.013.054.013.022.043-.022.087-.033.098a.435.435 0 0 1-.129.043c-.064.01-.03-.043-.03-.043s.041-.066.095-.098a.134.134 0 0 1 .043-.013zm-2.877.228c.086 0 .086.043.086.043 0 .032-.033.044-.12.033-.074-.01-.084-.032-.073-.043 0-.01.021-.033.107-.033zm.652.031a.063.063 0 0 1 .024.002s.365.064.601.074c.172.011.258.023.43.012.097 0 .043-.012.193-.012.054-.01.022.066-.021.077-.161.043-.226.02-.365.031-.119.01-.173.021-.291.021-.204 0-.224.012-.514-.074-.054-.021-.12-.086-.098-.107a.055.055 0 0 1 .041-.024zm-2.435.065c.126.003.086.045.086.045s-.001.042-.076.095c-.076.054-.107.022-.118.022-.01 0-.086-.043-.086-.086.011-.043.13-.074.13-.074a.489.489 0 0 1 .064-.002zm6.761 1.48a.133.133 0 0 1 .026.002l.021.043c0 .01-.086.13-.129.13-.053-.012-.033-.075-.033-.075s-.021-.065.043-.086a.232.232 0 0 1 .072-.014zm-.802.318c.008 0 .018.001.023.006v.043c.01.033-.27.345-.463.528-.182.172-.494.408-.494.408h-.043v-.055l.012-.021.021-.032.022-.033.021-.03.065-.077.15-.139.15-.14.237-.237s.085-.095.117-.117c.032-.021.054-.043.086-.064.032-.016.07-.038.096-.04zm-1.553 1.293a.064.064 0 0 1 .05.014c.033.075-.02.096-.02.096l-.098.076c-.011 0-.075.054-.096.021-.022-.032.01-.075.01-.086 0-.01.065-.085.119-.107a.093.093 0 0 1 .035-.014zm-1.047.994c.044-.005.076.061.076.061s.022.031.022.074c0 .033-.097.022-.15.065-.065.043.065.173-.14.162-.117-.01-.053-.118-.042-.129l.074-.107c.054-.076.087-.087.14-.12a.046.046 0 0 1 .02-.006z" }) + ] + } + ); +}); + +export { SiFerrari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.cjs new file mode 100644 index 000000000..505cf212f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB2E2C"; +const SiFerrarinv = React__namespace.forwardRef(function SiFerrarinv2({ title = "Ferrari N.V.", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.297 13.283v-1.745c0-.541-.297-.646-1.135-.646-.908 0-1.222.122-1.222.751v.279h.768v-.227c0-.314.017-.367.419-.367.332 0 .349.035.349.367v.628h-.803c-.628 0-.82.297-.82.646h.785v-.017c0-.157.105-.297.262-.297h.593v.698c0 .244-.122.297-.297.297h-.314c-.192 0-.262-.122-.262-.297v-.384h-.785v.436c0 .367.279.663.716.663h2.06v-.471h-.314v-.314zm6.389.332v-2.653h-1.169v.436h.332v2.217h-.332v.454H24v-.454h-.314zm-2.95-2.723c-.436 0-.716.541-.908.768v-.716h-1.152v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c.001-.313-.191-.505-.558-.505M5.324 12.393h-.82v-.838c0-.157.052-.244.244-.244h.349c.14 0 .227.07.227.175v.907zm-.349-1.501h-.123c-.943 0-1.187.209-1.187.751v1.745c0 .593.349.698 1.204.716h.087c.925-.017 1.204-.087 1.204-.646v-.454h-.801v.227c0 .314-.052.332-.436.332-.454 0-.436-.035-.419-.332v-.541H6.18v-1.17c-.001-.436-.333-.628-1.205-.628zm17.89-.489h.855v-.559h-.855v.559zm-22.743 0h.489v3.299H0v.454h2.269v-.454h-.768v-1.466h.436v.419h.524v-1.309h-.524v.384h-.436v-1.327h20.701v-.559H.122v.559zm9.269.489c-.436 0-.716.541-.908.768v-.716H7.331v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c0-.313-.192-.505-.558-.505m3.665 0c-.436 0-.716.541-.908.768v-.716h-1.152v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c.001-.313-.191-.505-.558-.505" }) + ] + } + ); +}); + +exports.default = SiFerrarinv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.d.ts new file mode 100644 index 000000000..3e04009ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB2E2C"; +declare const SiFerrarinv: IconType; +export { SiFerrarinv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.mjs new file mode 100644 index 000000000..7aec91d04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerrarinv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB2E2C"; +const SiFerrarinv = React.forwardRef(function SiFerrarinv2({ title = "Ferrari N.V.", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.297 13.283v-1.745c0-.541-.297-.646-1.135-.646-.908 0-1.222.122-1.222.751v.279h.768v-.227c0-.314.017-.367.419-.367.332 0 .349.035.349.367v.628h-.803c-.628 0-.82.297-.82.646h.785v-.017c0-.157.105-.297.262-.297h.593v.698c0 .244-.122.297-.297.297h-.314c-.192 0-.262-.122-.262-.297v-.384h-.785v.436c0 .367.279.663.716.663h2.06v-.471h-.314v-.314zm6.389.332v-2.653h-1.169v.436h.332v2.217h-.332v.454H24v-.454h-.314zm-2.95-2.723c-.436 0-.716.541-.908.768v-.716h-1.152v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c.001-.313-.191-.505-.558-.505M5.324 12.393h-.82v-.838c0-.157.052-.244.244-.244h.349c.14 0 .227.07.227.175v.907zm-.349-1.501h-.123c-.943 0-1.187.209-1.187.751v1.745c0 .593.349.698 1.204.716h.087c.925-.017 1.204-.087 1.204-.646v-.454h-.801v.227c0 .314-.052.332-.436.332-.454 0-.436-.035-.419-.332v-.541H6.18v-1.17c-.001-.436-.333-.628-1.205-.628zm17.89-.489h.855v-.559h-.855v.559zm-22.743 0h.489v3.299H0v.454h2.269v-.454h-.768v-1.466h.436v.419h.524v-1.309h-.524v.384h-.436v-1.327h20.701v-.559H.122v.559zm9.269.489c-.436 0-.716.541-.908.768v-.716H7.331v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c0-.313-.192-.505-.558-.505m3.665 0c-.436 0-.716.541-.908.768v-.716h-1.152v.436h.314v2.217h-.314v.471h1.431v-.471h-.297V12.41c0-.105.681-.96.681-.873v1.187h.803v-1.327c.001-.313-.191-.505-.558-.505" }) + ] + } + ); +}); + +export { SiFerrarinv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.cjs new file mode 100644 index 000000000..9f1355e81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#042133"; +const SiFerretdb = React__namespace.forwardRef(function SiFerretdb2({ title = "FerretDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.736.223a7.834 7.834 0 0 0-1.48.12C8.821.744 6.504 2.14 5.02 4.086c-.817 1.098-1.203 1.737-1.04 1.737.045 0 .283-.134.52-.312 1.99-1.41 5.6-2.05 8.005-1.41 2.302.608 3.52 1.559 4.544 3.578.862 1.664 1.04 2.302 1.47 5.05l.105.579.282-.357c.505-.653 1.128-2.123 1.38-3.222.847-3.817-.771-6.995-4.44-8.747-1.03-.49-2.048-.742-3.11-.76zm-6.597 5.76c-.307.018-.637.27-1.12.76-.52.51-1.055 1.007-1.604 1.487C1.975 9.447.653 11.6.193 13.456c-.43 1.768-.12 4.352.727 6.03 1.292 2.584 4.738 4.336 8.42 4.291.728 0 .818-.03.565-.178-.832-.505-2.05-1.856-2.495-2.762-.445-.92-.475-1.07-.475-2.614 0-1.5.03-1.693.416-2.42.683-1.292 1.396-1.901 2.732-2.287 1.604-.46 2.406-1.233 2.852-2.733.178-.579.311-1.129.311-1.203 0-.312-.43-.49-1.559-.653-2.109-.282-3.371-.936-4.574-2.302-.386-.446-.668-.66-.974-.642Zm1.182 1.93c.186 0 .408.056.653.167.342.149.387.238.298.624-.268 1.233-.268 1.574 0 1.871.415.46.816.357 1.559-.356.653-.654.861-.728 1.648-.698.297.015.43.119.49.371.045.208.223.416.386.46.387.12.372.357-.074.98-1.544 2.11-4.633 2.095-5.717-.014-.49-.965-.357-2.376.326-3.238.097-.11.245-.167.431-.167Zm14.702 1.771c-.074 0-.208.342-.297.758-.564 2.613-2.54 5.569-4.678 6.95-1.663 1.084-2.346 1.262-4.99 1.277-1.262 0-2.658-.06-3.103-.119l-.802-.119.104.49c.133.713 1.069 1.976 2.004 2.748 1.708 1.396 3.312 1.9 5.51 1.782 3.906-.208 7.07-2.57 8.034-5.97.12-.446.209-1.381.194-2.302 0-1.292-.075-1.767-.401-2.718-.402-1.173-1.322-2.777-1.575-2.777z" }) + ] + } + ); +}); + +exports.default = SiFerretdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.d.ts new file mode 100644 index 000000000..dfb02cfa8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#042133"; +declare const SiFerretdb: IconType; +export { SiFerretdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.mjs new file mode 100644 index 000000000..4f7cd5839 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFerretdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#042133"; +const SiFerretdb = React.forwardRef(function SiFerretdb2({ title = "FerretDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.736.223a7.834 7.834 0 0 0-1.48.12C8.821.744 6.504 2.14 5.02 4.086c-.817 1.098-1.203 1.737-1.04 1.737.045 0 .283-.134.52-.312 1.99-1.41 5.6-2.05 8.005-1.41 2.302.608 3.52 1.559 4.544 3.578.862 1.664 1.04 2.302 1.47 5.05l.105.579.282-.357c.505-.653 1.128-2.123 1.38-3.222.847-3.817-.771-6.995-4.44-8.747-1.03-.49-2.048-.742-3.11-.76zm-6.597 5.76c-.307.018-.637.27-1.12.76-.52.51-1.055 1.007-1.604 1.487C1.975 9.447.653 11.6.193 13.456c-.43 1.768-.12 4.352.727 6.03 1.292 2.584 4.738 4.336 8.42 4.291.728 0 .818-.03.565-.178-.832-.505-2.05-1.856-2.495-2.762-.445-.92-.475-1.07-.475-2.614 0-1.5.03-1.693.416-2.42.683-1.292 1.396-1.901 2.732-2.287 1.604-.46 2.406-1.233 2.852-2.733.178-.579.311-1.129.311-1.203 0-.312-.43-.49-1.559-.653-2.109-.282-3.371-.936-4.574-2.302-.386-.446-.668-.66-.974-.642Zm1.182 1.93c.186 0 .408.056.653.167.342.149.387.238.298.624-.268 1.233-.268 1.574 0 1.871.415.46.816.357 1.559-.356.653-.654.861-.728 1.648-.698.297.015.43.119.49.371.045.208.223.416.386.46.387.12.372.357-.074.98-1.544 2.11-4.633 2.095-5.717-.014-.49-.965-.357-2.376.326-3.238.097-.11.245-.167.431-.167Zm14.702 1.771c-.074 0-.208.342-.297.758-.564 2.613-2.54 5.569-4.678 6.95-1.663 1.084-2.346 1.262-4.99 1.277-1.262 0-2.658-.06-3.103-.119l-.802-.119.104.49c.133.713 1.069 1.976 2.004 2.748 1.708 1.396 3.312 1.9 5.51 1.782 3.906-.208 7.07-2.57 8.034-5.97.12-.446.209-1.381.194-2.302 0-1.292-.075-1.767-.401-2.718-.402-1.173-1.322-2.777-1.575-2.777z" }) + ] + } + ); +}); + +export { SiFerretdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.cjs new file mode 100644 index 000000000..a0bbfed1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007808"; +const SiFfmpeg = React__namespace.forwardRef(function SiFfmpeg2({ title = "FFmpeg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.72 17.91V6.5l-.53-.49L9.05 18.52l-1.29-.06L24 1.53l-.33-.95-11.93 1-5.75 6.6v-.23l4.7-5.39-1.38-.77-9.11.77v2.85l1.91.46v.01l.19-.01-.56.66v10.6c.609-.126 1.22-.241 1.83-.36L14.12 5.22l.83-.04L0 21.44l9.67.82 1.35-.77 6.82-6.74v2.15l-5.72 5.57 11.26.95.35-.94v-3.16l-3.29-.18c.434-.403.858-.816 1.28-1.23z" }) + ] + } + ); +}); + +exports.default = SiFfmpeg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.d.ts new file mode 100644 index 000000000..23344ba23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007808"; +declare const SiFfmpeg: IconType; +export { SiFfmpeg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.mjs new file mode 100644 index 000000000..ca43d5d01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFfmpeg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007808"; +const SiFfmpeg = React.forwardRef(function SiFfmpeg2({ title = "FFmpeg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.72 17.91V6.5l-.53-.49L9.05 18.52l-1.29-.06L24 1.53l-.33-.95-11.93 1-5.75 6.6v-.23l4.7-5.39-1.38-.77-9.11.77v2.85l1.91.46v.01l.19-.01-.56.66v10.6c.609-.126 1.22-.241 1.83-.36L14.12 5.22l.83-.04L0 21.44l9.67.82 1.35-.77 6.82-6.74v2.15l-5.72 5.57 11.26.95.35-.94v-3.16l-3.29-.18c.434-.403.858-.816 1.28-1.23z" }) + ] + } + ); +}); + +export { SiFfmpeg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFi.cjs new file mode 100644 index 000000000..5f0251631 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B899"; +const SiFi = React__namespace.forwardRef(function SiFi2({ title = "Fi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.908 4.621c0-1.749 1.472-3.162 3.286-3.162 1.813 0 3.287 1.416 3.287 3.162s-1.472 3.162-3.287 3.162c-1.816 0-3.286-1.414-3.286-3.162zM24 17.077h-.735c-1.507 0-2.267-1.069-2.267-2.753v-3.162h-5.569v4.482c0 4.869 3.228 6.913 6.353 6.913H24ZM5.578 18.581c0-1.628.901-2.369 2.731-2.369h4.541v-5.064H5.578V9.057c0-1.654 1.427-2.552 3.132-2.552h4.133V1.443H7.289C2.925 1.443 0 3.753 0 8.594v13.95h5.578Z" }) + ] + } + ); +}); + +exports.default = SiFi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFi.d.ts new file mode 100644 index 000000000..1a8d7604e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B899"; +declare const SiFi: IconType; +export { SiFi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFi.mjs new file mode 100644 index 000000000..6e71a1394 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B899"; +const SiFi = React.forwardRef(function SiFi2({ title = "Fi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.908 4.621c0-1.749 1.472-3.162 3.286-3.162 1.813 0 3.287 1.416 3.287 3.162s-1.472 3.162-3.287 3.162c-1.816 0-3.286-1.414-3.286-3.162zM24 17.077h-.735c-1.507 0-2.267-1.069-2.267-2.753v-3.162h-5.569v4.482c0 4.869 3.228 6.913 6.353 6.913H24ZM5.578 18.581c0-1.628.901-2.369 2.731-2.369h4.541v-5.064H5.578V9.057c0-1.654 1.427-2.552 3.132-2.552h4.133V1.443H7.289C2.925 1.443 0 3.753 0 8.594v13.95h5.578Z" }) + ] + } + ); +}); + +export { SiFi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.cjs new file mode 100644 index 000000000..99d829275 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#941711"; +const SiFiat = React__namespace.forwardRef(function SiFiat2({ title = "Fiat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.175 6.25c.489 1.148.726 2.442.726 3.956 0 .818-.068 1.69-.206 2.666-.286 2.01-1.048 4.11-1.75 5.494-.114.223-.205.371-.388.533-.32.282-.602.352-.706.291-.084-.05-.131-.302-.114-.673.014-.316.089-.55.204-.924a36.261 36.261 0 0 0 1.2-5.416c.385-2.664.37-5.06-.201-6.52a2.224 2.224 0 0 0-.22-.427c-.062-.09-.106-.136-.106-.136-1.181-1.183-4.37-1.776-7.56-1.776-3.19 0-6.378.593-7.558 1.776 0 0-.045.045-.106.136a2.122 2.122 0 0 0-.221.426c-.572 1.46-.586 3.857-.201 6.521.26 1.807.672 3.72 1.227 5.504.096.307.158.516.173.84.016.369-.03.62-.114.67-.104.06-.389-.01-.71-.295-.23-.205-.345-.405-.49-.701-.68-1.385-1.393-3.397-1.667-5.323a18.884 18.884 0 0 1-.206-2.666c0-1.514.238-2.807.726-3.954.367-.86.983-1.58 1.782-2.083a13.892 13.892 0 0 1 6.526-2.122 13.9 13.9 0 0 1 .815-.026h.02c.274 0 .548.01.818.026 2.282.138 4.539.873 6.525 2.122a4.583 4.583 0 0 1 1.782 2.082zm-4.763 14.526c-.088.019-.361.083-.632.157-.243.067-.483.12-.597.143a16.51 16.51 0 0 1-3.115.285h-.028c-1.117 0-2.177-.103-3.114-.285a9.23 9.23 0 0 1-.56-.133 14.987 14.987 0 0 0-.604-.148c-.418-.095-.796-.163-.817-.083-.025.093.162.288.401.472.056.042.195.14.357.22.15.073.32.128.386.15 1.098.355 2.346.502 3.941.502h.022c1.563 0 2.794-.142 3.877-.483.371-.117.59-.211.853-.42.22-.174.385-.353.361-.44-.02-.075-.348-.021-.731.063zm-2.508-10.313c-.145-.81-.32-1.432-.518-1.85l-.002-.004h-.021l-.682-.006h-.01l-.027 2.998h1.426l-.001-.01c0-.005-.056-.522-.165-1.128zm5.76 1.687c-.322 2.228-.88 4.623-1.66 6.701-.13.35-.248.48-.53.7a6.23 6.23 0 0 1-2.431 1.028c-.897.175-1.908.272-2.974.272h-.029a15.66 15.66 0 0 1-2.973-.272 6.23 6.23 0 0 1-2.433-1.028c-.282-.22-.399-.35-.527-.7-.782-2.078-1.34-4.473-1.661-6.701-.373-2.577-.35-4.847.18-6.202.067-.17.138-.292.19-.369.046-.065.078-.1.078-.1 1.068-1.07 4.06-1.652 7.16-1.652 3.101 0 6.093.582 7.16 1.653 0 0 .032.033.078.1.052.076.124.197.19.368.531 1.355.554 3.625.182 6.202zM8.904 7.565L6.222 7.55l.267 9.337 1.122.012-.016-4.25h1.014v-1.097H7.595V8.66h1.31V7.564zm1.876-.02l-1.365.003.181 9.35h1.157l.027-9.352zm3.448.014h-2.732l.108 9.334h1.092l.009-4.222h1.418l.002.007c.128.797.138 4.171.138 4.205v.015h1.063l.009-.479c.048-2.42.13-6.469-1.107-8.86zm4.32-.013l-3.344.013v1.077h.998v.01l-.042 8.252h1.132l.275-8.262h.981v-1.09zM23.975 12c0 6.617-5.372 12-11.976 12C5.397 24 .025 18.617.025 12S5.397 0 12 0c6.604 0 11.976 5.383 11.976 12zm-.33-.008C23.64 5.561 18.418.33 11.998.33 5.642.33.46 5.463.358 11.811a1.71 1.71 0 0 1 .684-.78c.655-.388.834-1.385.893-1.981l.012-.062c-.039.395-.07.79-.07 1.218 0 .832.07 1.718.21 2.708.412 2.9 1.813 6.007 2.637 6.958l.046.05.192.202.007.006c2.01 1.647 3.857 2.23 7.061 2.23h.022c3.203 0 5.05-.583 7.06-2.23l.009-.006.185-.197.052-.056c.826-.954 2.226-4.057 2.638-6.957.14-.99.209-1.876.209-2.708 0-.454-.021-.89-.064-1.309l.006.006c.06.597.379 2.141.995 2.586.21.152.375.317.503.503z" }) + ] + } + ); +}); + +exports.default = SiFiat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.d.ts new file mode 100644 index 000000000..f970a5614 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#941711"; +declare const SiFiat: IconType; +export { SiFiat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.mjs new file mode 100644 index 000000000..b7523082b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#941711"; +const SiFiat = React.forwardRef(function SiFiat2({ title = "Fiat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.175 6.25c.489 1.148.726 2.442.726 3.956 0 .818-.068 1.69-.206 2.666-.286 2.01-1.048 4.11-1.75 5.494-.114.223-.205.371-.388.533-.32.282-.602.352-.706.291-.084-.05-.131-.302-.114-.673.014-.316.089-.55.204-.924a36.261 36.261 0 0 0 1.2-5.416c.385-2.664.37-5.06-.201-6.52a2.224 2.224 0 0 0-.22-.427c-.062-.09-.106-.136-.106-.136-1.181-1.183-4.37-1.776-7.56-1.776-3.19 0-6.378.593-7.558 1.776 0 0-.045.045-.106.136a2.122 2.122 0 0 0-.221.426c-.572 1.46-.586 3.857-.201 6.521.26 1.807.672 3.72 1.227 5.504.096.307.158.516.173.84.016.369-.03.62-.114.67-.104.06-.389-.01-.71-.295-.23-.205-.345-.405-.49-.701-.68-1.385-1.393-3.397-1.667-5.323a18.884 18.884 0 0 1-.206-2.666c0-1.514.238-2.807.726-3.954.367-.86.983-1.58 1.782-2.083a13.892 13.892 0 0 1 6.526-2.122 13.9 13.9 0 0 1 .815-.026h.02c.274 0 .548.01.818.026 2.282.138 4.539.873 6.525 2.122a4.583 4.583 0 0 1 1.782 2.082zm-4.763 14.526c-.088.019-.361.083-.632.157-.243.067-.483.12-.597.143a16.51 16.51 0 0 1-3.115.285h-.028c-1.117 0-2.177-.103-3.114-.285a9.23 9.23 0 0 1-.56-.133 14.987 14.987 0 0 0-.604-.148c-.418-.095-.796-.163-.817-.083-.025.093.162.288.401.472.056.042.195.14.357.22.15.073.32.128.386.15 1.098.355 2.346.502 3.941.502h.022c1.563 0 2.794-.142 3.877-.483.371-.117.59-.211.853-.42.22-.174.385-.353.361-.44-.02-.075-.348-.021-.731.063zm-2.508-10.313c-.145-.81-.32-1.432-.518-1.85l-.002-.004h-.021l-.682-.006h-.01l-.027 2.998h1.426l-.001-.01c0-.005-.056-.522-.165-1.128zm5.76 1.687c-.322 2.228-.88 4.623-1.66 6.701-.13.35-.248.48-.53.7a6.23 6.23 0 0 1-2.431 1.028c-.897.175-1.908.272-2.974.272h-.029a15.66 15.66 0 0 1-2.973-.272 6.23 6.23 0 0 1-2.433-1.028c-.282-.22-.399-.35-.527-.7-.782-2.078-1.34-4.473-1.661-6.701-.373-2.577-.35-4.847.18-6.202.067-.17.138-.292.19-.369.046-.065.078-.1.078-.1 1.068-1.07 4.06-1.652 7.16-1.652 3.101 0 6.093.582 7.16 1.653 0 0 .032.033.078.1.052.076.124.197.19.368.531 1.355.554 3.625.182 6.202zM8.904 7.565L6.222 7.55l.267 9.337 1.122.012-.016-4.25h1.014v-1.097H7.595V8.66h1.31V7.564zm1.876-.02l-1.365.003.181 9.35h1.157l.027-9.352zm3.448.014h-2.732l.108 9.334h1.092l.009-4.222h1.418l.002.007c.128.797.138 4.171.138 4.205v.015h1.063l.009-.479c.048-2.42.13-6.469-1.107-8.86zm4.32-.013l-3.344.013v1.077h.998v.01l-.042 8.252h1.132l.275-8.262h.981v-1.09zM23.975 12c0 6.617-5.372 12-11.976 12C5.397 24 .025 18.617.025 12S5.397 0 12 0c6.604 0 11.976 5.383 11.976 12zm-.33-.008C23.64 5.561 18.418.33 11.998.33 5.642.33.46 5.463.358 11.811a1.71 1.71 0 0 1 .684-.78c.655-.388.834-1.385.893-1.981l.012-.062c-.039.395-.07.79-.07 1.218 0 .832.07 1.718.21 2.708.412 2.9 1.813 6.007 2.637 6.958l.046.05.192.202.007.006c2.01 1.647 3.857 2.23 7.061 2.23h.022c3.203 0 5.05-.583 7.06-2.23l.009-.006.185-.197.052-.056c.826-.954 2.226-4.057 2.638-6.957.14-.99.209-1.876.209-2.708 0-.454-.021-.89-.064-1.309l.006.006c.06.597.379 2.141.995 2.586.21.152.375.317.503.503z" }) + ] + } + ); +}); + +export { SiFiat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.cjs new file mode 100644 index 000000000..dc063c65d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFBF3B"; +const SiFidoalliance = React__namespace.forwardRef(function SiFidoalliance2({ title = "Fido Alliance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.849 7.513a1.085 1.085 0 1 0 1.085 1.086v-.001c0-.599-.486-1.085-1.085-1.085zM4.942 10.553v1.418H6.89v4.793h.704V14.04h.509v2.724h.71v-6.211H4.941zM14.122 11.089H14.1c-.287-.416-.862-.702-1.639-.702-1.489 0-2.797 1.224-2.786 3.319 0 1.936 1.181 3.201 2.659 3.201.797 0 1.56-.361 1.935-1.04l.117.893h1.669V7.651h-1.934zm0 2.904c0 .158-.012.313-.034.465l.002-.017c-.11.532-.574.925-1.13.925h-.014.001c-.797 0-1.318-.659-1.318-1.723 0-.978.446-1.767 1.329-1.767.606 0 1.022.437 1.138.947.014.09.023.194.023.3l-.001.054v-.003zM4.802 8.89l.475-1.6a2.914 2.914 0 0 0-.384-.101l-.019-.003a3.654 3.654 0 0 0-.829-.092 3.73 3.73 0 0 0-1.084.159l.027-.007a2.022 2.022 0 0 0-.38.153l.011-.005a2.624 2.624 0 0 0-.663.475c-.5.49-.754 1.155-.754 1.975v.708H-.001v1.418h1.199v4.793h1.921V11.97h1.199v-1.416H3.119v-.75a1.019 1.019 0 0 1 .23-.713l-.001.002a.736.736 0 0 1 .063-.062l.001-.001s.414-.41 1.389-.14zM20.306 10.388c-2.01 0-3.327 1.286-3.327 3.307s1.393 3.212 3.213 3.212c1.664 0 3.276-1.04 3.276-3.327-.002-1.874-1.267-3.192-3.162-3.192zm-.063 5.126c-.832 0-1.276-.797-1.276-1.871 0-.915.361-1.861 1.276-1.861.871 0 1.234.936 1.234 1.851 0 1.137-.482 1.882-1.234 1.882zM22.493 9.761h.232v.589h.14v-.589h.231v-.117h-.603v.117zM23.799 9.644l-.182.505-.181-.505h-.203v.707h.13V9.78l.198.571h.113l.195-.571v.571h.13v-.707h-.201z" }) + ] + } + ); +}); + +exports.default = SiFidoalliance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.d.ts new file mode 100644 index 000000000..65798a748 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFBF3B"; +declare const SiFidoalliance: IconType; +export { SiFidoalliance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.mjs new file mode 100644 index 000000000..f548fa733 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFidoalliance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFBF3B"; +const SiFidoalliance = React.forwardRef(function SiFidoalliance2({ title = "Fido Alliance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.849 7.513a1.085 1.085 0 1 0 1.085 1.086v-.001c0-.599-.486-1.085-1.085-1.085zM4.942 10.553v1.418H6.89v4.793h.704V14.04h.509v2.724h.71v-6.211H4.941zM14.122 11.089H14.1c-.287-.416-.862-.702-1.639-.702-1.489 0-2.797 1.224-2.786 3.319 0 1.936 1.181 3.201 2.659 3.201.797 0 1.56-.361 1.935-1.04l.117.893h1.669V7.651h-1.934zm0 2.904c0 .158-.012.313-.034.465l.002-.017c-.11.532-.574.925-1.13.925h-.014.001c-.797 0-1.318-.659-1.318-1.723 0-.978.446-1.767 1.329-1.767.606 0 1.022.437 1.138.947.014.09.023.194.023.3l-.001.054v-.003zM4.802 8.89l.475-1.6a2.914 2.914 0 0 0-.384-.101l-.019-.003a3.654 3.654 0 0 0-.829-.092 3.73 3.73 0 0 0-1.084.159l.027-.007a2.022 2.022 0 0 0-.38.153l.011-.005a2.624 2.624 0 0 0-.663.475c-.5.49-.754 1.155-.754 1.975v.708H-.001v1.418h1.199v4.793h1.921V11.97h1.199v-1.416H3.119v-.75a1.019 1.019 0 0 1 .23-.713l-.001.002a.736.736 0 0 1 .063-.062l.001-.001s.414-.41 1.389-.14zM20.306 10.388c-2.01 0-3.327 1.286-3.327 3.307s1.393 3.212 3.213 3.212c1.664 0 3.276-1.04 3.276-3.327-.002-1.874-1.267-3.192-3.162-3.192zm-.063 5.126c-.832 0-1.276-.797-1.276-1.871 0-.915.361-1.861 1.276-1.861.871 0 1.234.936 1.234 1.851 0 1.137-.482 1.882-1.234 1.882zM22.493 9.761h.232v.589h.14v-.589h.231v-.117h-.603v.117zM23.799 9.644l-.182.505-.181-.505h-.203v.707h.13V9.78l.198.571h.113l.195-.571v.571h.13v-.707h-.201z" }) + ] + } + ); +}); + +export { SiFidoalliance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.cjs new file mode 100644 index 000000000..65b740f69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#326295"; +const SiFifa = React__namespace.forwardRef(function SiFifa2({ title = "FIFA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 8.064v7.872h2.486v-2.843h1.728l.671-1.72H2.486V9.775h2.92l.637-1.711zm6.804 0L6.8 15.936h2.457V8.064zm4.15 0v7.872h2.484v-2.843h1.726l.677-1.72h-2.403V9.775h2.922L17 8.064zm7.658 0l-2.83 7.872h2.375l.306-1.058h2.769l.32 1.058H24l-2.837-7.872zm1.235 2.023l.981 3.277h-1.927z" }) + ] + } + ); +}); + +exports.default = SiFifa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.d.ts new file mode 100644 index 000000000..856edce5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#326295"; +declare const SiFifa: IconType; +export { SiFifa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.mjs new file mode 100644 index 000000000..799191d0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFifa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#326295"; +const SiFifa = React.forwardRef(function SiFifa2({ title = "FIFA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 8.064v7.872h2.486v-2.843h1.728l.671-1.72H2.486V9.775h2.92l.637-1.711zm6.804 0L6.8 15.936h2.457V8.064zm4.15 0v7.872h2.484v-2.843h1.726l.677-1.72h-2.403V9.775h2.922L17 8.064zm7.658 0l-2.83 7.872h2.375l.306-1.058h2.769l.32 1.058H24l-2.837-7.872zm1.235 2.023l.981 3.277h-1.927z" }) + ] + } + ); +}); + +export { SiFifa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFig.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFig.cjs new file mode 100644 index 000000000..2e55372bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFig.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFig = React__namespace.forwardRef(function SiFig2({ title = "Fig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.543 0A4.543 4.543 0 0 0 0 4.543v14.914A4.543 4.543 0 0 0 4.543 24h14.914A4.543 4.543 0 0 0 24 19.457V4.543A4.543 4.543 0 0 0 19.457 0H4.543zm10.715 2.572h3.086a3.326 3.326 0 0 1 .656.065 3.28 3.28 0 0 1 .898.326c.093.05.181.106.268.164.087.058.172.12.252.186a3.264 3.264 0 0 1 .789.96c.05.093.098.188.139.286a3.21 3.21 0 0 1 .187.61 3.276 3.276 0 0 1 .067.66v12.343a3.276 3.276 0 0 1-.146.97 3.21 3.21 0 0 1-.108.3 3.259 3.259 0 0 1-.301.552 3.28 3.28 0 0 1-.627.694c-.08.066-.165.127-.252.185a3.242 3.242 0 0 1-.553.3 3.222 3.222 0 0 1-1.27.255h-3.085a3.326 3.326 0 0 1-.658-.065 3.242 3.242 0 0 1-2.344-1.922 3.222 3.222 0 0 1-.256-1.27V5.829a3.324 3.324 0 0 1 .393-1.555 3.221 3.221 0 0 1 1.04-1.146 3.241 3.241 0 0 1 .553-.3 3.26 3.26 0 0 1 1.272-.255z" }) + ] + } + ); +}); + +exports.default = SiFig; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFig.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFig.d.ts new file mode 100644 index 000000000..fc4b0c3b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFig.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFig: IconType; +export { SiFig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFig.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFig.mjs new file mode 100644 index 000000000..c5e8cb4da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFig.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFig = React.forwardRef(function SiFig2({ title = "Fig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.543 0A4.543 4.543 0 0 0 0 4.543v14.914A4.543 4.543 0 0 0 4.543 24h14.914A4.543 4.543 0 0 0 24 19.457V4.543A4.543 4.543 0 0 0 19.457 0H4.543zm10.715 2.572h3.086a3.326 3.326 0 0 1 .656.065 3.28 3.28 0 0 1 .898.326c.093.05.181.106.268.164.087.058.172.12.252.186a3.264 3.264 0 0 1 .789.96c.05.093.098.188.139.286a3.21 3.21 0 0 1 .187.61 3.276 3.276 0 0 1 .067.66v12.343a3.276 3.276 0 0 1-.146.97 3.21 3.21 0 0 1-.108.3 3.259 3.259 0 0 1-.301.552 3.28 3.28 0 0 1-.627.694c-.08.066-.165.127-.252.185a3.242 3.242 0 0 1-.553.3 3.222 3.222 0 0 1-1.27.255h-3.085a3.326 3.326 0 0 1-.658-.065 3.242 3.242 0 0 1-2.344-1.922 3.222 3.222 0 0 1-.256-1.27V5.829a3.324 3.324 0 0 1 .393-1.555 3.221 3.221 0 0 1 1.04-1.146 3.241 3.241 0 0 1 .553-.3 3.26 3.26 0 0 1 1.272-.255z" }) + ] + } + ); +}); + +export { SiFig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.cjs new file mode 100644 index 000000000..494a7ffd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F24E1E"; +const SiFigma = React__namespace.forwardRef(function SiFigma2({ title = "Figma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.852 8.981h-4.588V0h4.588c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.491-4.49 4.491zM12.735 7.51h3.117c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-3.117V7.51zm0 1.471H8.148c-2.476 0-4.49-2.014-4.49-4.49S5.672 0 8.148 0h4.588v8.981zm-4.587-7.51c-1.665 0-3.019 1.355-3.019 3.019s1.354 3.02 3.019 3.02h3.117V1.471H8.148zm4.587 15.019H8.148c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h4.588v8.98zM8.148 8.981c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h3.117V8.981H8.148zM8.172 24c-2.489 0-4.515-2.014-4.515-4.49s2.014-4.49 4.49-4.49h4.588v4.441c0 2.503-2.047 4.539-4.563 4.539zm-.024-7.51a3.023 3.023 0 0 0-3.019 3.019c0 1.665 1.365 3.019 3.044 3.019 1.705 0 3.093-1.376 3.093-3.068v-2.97H8.148zm7.704 0h-.098c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h.098c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.49-4.49 4.49zm-.097-7.509c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h.098c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-.098z" }) + ] + } + ); +}); + +exports.default = SiFigma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.d.ts new file mode 100644 index 000000000..4b8126413 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F24E1E"; +declare const SiFigma: IconType; +export { SiFigma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.mjs new file mode 100644 index 000000000..7f4972dd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFigma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F24E1E"; +const SiFigma = React.forwardRef(function SiFigma2({ title = "Figma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.852 8.981h-4.588V0h4.588c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.491-4.49 4.491zM12.735 7.51h3.117c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-3.117V7.51zm0 1.471H8.148c-2.476 0-4.49-2.014-4.49-4.49S5.672 0 8.148 0h4.588v8.981zm-4.587-7.51c-1.665 0-3.019 1.355-3.019 3.019s1.354 3.02 3.019 3.02h3.117V1.471H8.148zm4.587 15.019H8.148c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h4.588v8.98zM8.148 8.981c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h3.117V8.981H8.148zM8.172 24c-2.489 0-4.515-2.014-4.515-4.49s2.014-4.49 4.49-4.49h4.588v4.441c0 2.503-2.047 4.539-4.563 4.539zm-.024-7.51a3.023 3.023 0 0 0-3.019 3.019c0 1.665 1.365 3.019 3.044 3.019 1.705 0 3.093-1.376 3.093-3.068v-2.97H8.148zm7.704 0h-.098c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h.098c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.49-4.49 4.49zm-.097-7.509c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h.098c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-.098z" }) + ] + } + ); +}); + +export { SiFigma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.cjs new file mode 100644 index 000000000..14ed04d3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#556472"; +const SiFigshare = React__namespace.forwardRef(function SiFigshare2({ title = "figshare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a1.0073 1.0073 0 00-1.0078 1.0078c0 .5566.4506 1.0098 1.0078 1.0098.5578 0 1.0078-.4532 1.0078-1.0098C13.0078.451 12.5578 0 12 0zM8.6895.541A1.0069 1.0069 0 008.291.588c-.528.1706-.8194.7408-.6465 1.2695.1719.5304.7419.8213 1.2696.6485.5302-.1724.8208-.7423.6484-1.2715-.128-.3986-.481-.6607-.873-.6934zm6.621 0c-.3917.0331-.7451.2948-.873.6934-.1724.5292.118 1.0991.6484 1.2715.5297.1728 1.0984-.1181 1.2715-.6485.171-.5287-.1205-1.0966-.6504-1.2695a.9976.9976 0 00-.3965-.0469zM10.588 1.9902A.8517.8517 0 0010.416 2c-.4648.0743-.7815.508-.707.9727a.85.85 0 00.9746.707c.4638-.073.7794-.5099.707-.9727a.8537.8537 0 00-.8027-.7168zm2.8242 0a.8498.8498 0 00-.8008.7168c-.0745.464.242.8998.7051.9727.4635.0734.8998-.2415.9746-.705.0717-.466-.2428-.9004-.707-.9747a.8536.8536 0 00-.1719-.0098zm-7.9082.1094a1.0023 1.0023 0 00-.5566.1914c-.4495.327-.5522.9586-.2246 1.4102.3278.4502.96.5508 1.4101.2226.4506-.326.5508-.959.2227-1.4101-.2047-.2816-.5278-.4251-.8516-.414zm12.9922 0c-.3237-.011-.6472.1325-.8516.414-.3284.4508-.2278 1.0832.2227 1.4102.4505.327 1.0817.2281 1.4101-.2226.327-.4516.2273-1.0831-.2226-1.4102a1.0095 1.0095 0 00-.5586-.1914zm-10.7676.7871a.8428.8428 0 00-.3242.0918c-.4186.2126-.5855.7256-.3711 1.1445a.8463.8463 0 001.1426.3711c.4167-.213.5856-.725.373-1.1445a.8538.8538 0 00-.8203-.4629zm8.543 0a.8538.8538 0 00-.8203.463.8513.8513 0 00.373 1.1444c.4194.2145.9317.0487 1.1426-.371.2137-.419.0495-.932-.3691-1.1446a.8521.8521 0 00-.3262-.0918zM12 3.5625a.7086.7086 0 00-.709.709c0 .3927.3168.709.709.709a.7081.7081 0 00.709-.709.7088.7088 0 00-.709-.709zm-2.3281.3809a.7062.7062 0 00-.2793.0332c-.3724.1203-.5755.5197-.4551.8925a.7088.7088 0 00.8926.4551c.3711-.121.5781-.5208.457-.8926a.7123.7123 0 00-.6152-.4882zm4.6562 0c-.2754.0236-.5246.209-.6152.4882-.1209.3718.0847.7717.457.8926.3726.1207.7724-.0833.8926-.455a.7081.7081 0 00-.455-.8926.7053.7053 0 00-.2794-.0332zm-11.1836.5878a1.0132 1.0132 0 00-.8535.416c-.3265.4494-.2245 1.0812.2246 1.4083.4506.3279 1.0804.228 1.4063-.2227.3292-.4505.2311-1.082-.2207-1.4101a.9945.9945 0 00-.5567-.1914zm17.713 0a1.0028 1.0028 0 00-.5587.1915c-.4513.3281-.5491.9596-.2226 1.4101.327.4508.9577.5494 1.4082.2227.4516-.3282.552-.96.2226-1.4102-.2039-.281-.526-.4248-.8496-.414zm-15.4141.0586a.8494.8494 0 00-.6016.25c-.3328.3324-.334.8725-.002 1.2051a.8547.8547 0 001.2051 0c.3306-.3326.332-.873 0-1.205a.847.847 0 00-.6015-.25zm13.1152 0a.8523.8523 0 00-.6035.25c-.3321.3318-.3321.8725 0 1.2051.3332.3315.8724.3321 1.205 0 .3335-.332.3335-.8724 0-1.205a.8474.8474 0 00-.6015-.25zm-11.125.4493a.709.709 0 00-.3926.1347c-.3156.231-.3868.6735-.1562.9903.2304.3178.6733.3855.9902.1562a.7065.7065 0 00.1563-.9883.7073.7073 0 00-.5977-.293zm9.1328 0a.7074.7074 0 00-.5977.293c-.2297.3172-.16.7595.1563.9882a.707.707 0 00.9902-.1562.7081.7081 0 00-.5488-1.125zm-5.5469.0097a.5897.5897 0 00-.1191.0078c-.3213.0512-.5435.3521-.4922.6739.051.322.3557.5427.6777.4922.3222-.0509.5407-.3532.4903-.6758a.5906.5906 0 00-.5567-.498zm1.961 0a.5882.5882 0 00-.5547.498c-.0515.3215.1675.625.4883.6759.3221.051.6259-.1702.6757-.4922.0524-.3229-.168-.6233-.4902-.6739a.5904.5904 0 00-.1191-.0078zm-3.9453.623a.6048.6048 0 00-.2286.0645.5902.5902 0 00-.2578.793.592.592 0 00.795.2598c.2898-.1497.4077-.5062.2597-.797a.589.589 0 00-.5683-.3202zm5.9316 0c-.2294-.0165-.4582.102-.5684.3204-.1503.2918-.034.648.2559.795a.5923.5923 0 00.7969-.2579.5898.5898 0 00-.2598-.793.5863.5863 0 00-.2246-.0644zM12 6.1876a.4885.4885 0 00-.4883.4883c0 .2703.2186.4883.4883.4883.2704 0 .4902-.218.4902-.4883 0-.2693-.2198-.4883-.4902-.4883zm-1.6035.2617a.4835.4835 0 00-.1914.0235c-.2574.0832-.3985.3588-.3145.6152.0827.2564.3594.396.6153.3125a.4884.4884 0 00.3144-.6152.4917.4917 0 00-.4238-.336zm3.207 0a.4865.4865 0 00-.4219.336.488.488 0 00.3125.6152c.2566.0824.5322-.0561.6153-.3125.0826-.2564-.0561-.5326-.3125-.6152a.4897.4897 0 00-.1934-.0235zm-7.83.2988a.705.705 0 00-.5977.293c-.2308.3153-.1596.7587.1562.9883.317.2307.7605.16.9903-.1563.2296-.3165.159-.759-.1582-.9902a.702.702 0 00-.3907-.1348zm12.455 0a.7098.7098 0 00-.3926.1348.707.707 0 00-.1582.9902c.231.3163.675.3879.9903.1582.3175-.2314.3883-.6749.1582-.9902a.705.705 0 00-.5977-.293zm-10.7832.1075a.592.592 0 00-.418.1738c-.2312.2296-.2301.6047 0 .834a.5895.5895 0 00.836 0 .591.591 0 00.002-.836.5924.5924 0 00-.42-.1718zm9.1094 0a.5885.5885 0 00-.418.1738.5867.5867 0 000 .834.5887.5887 0 00.834 0c.2301-.2302.2315-.6033.002-.834a.5884.5884 0 00-.418-.1738zm-12.7559.084a.856.856 0 00-.8203.4648.849.849 0 00.373 1.1426c.419.2149.9316.046 1.1446-.3711.2136-.4186.0454-.9303-.373-1.1446a.843.843 0 00-.3243-.0917zm16.4043 0a.8529.8529 0 00-.3261.0918c-.4193.2128-.5854.725-.373 1.1445.213.4182.7269.5845 1.1444.371.4195-.2143.5867-.725.373-1.1425a.8538.8538 0 00-.8183-.4648zM8.8535 7.205a.483.483 0 00-.2695.0918c-.2182.158-.2662.4657-.1074.6836.1584.217.4635.2664.6816.1074a.489.489 0 00.1074-.6816.4844.4844 0 00-.412-.2012zm6.293 0a.4847.4847 0 00-.4121.2012c-.16.2184-.1088.5237.1093.6816a.4876.4876 0 00.6817-.1074c.1598-.2179.1088-.5261-.1094-.6836a.4831.4831 0 00-.2695-.0918zm-3.8125.0683a.3879.3879 0 00-.08.004c-.2205.0349-.3718.2414-.336.4609.0338.2193.24.3675.461.334.2194-.035.3678-.2412.3339-.461-.03-.1906-.192-.3296-.379-.3379zm1.332 0a.4009.4009 0 00-.3789.338c-.0324.2176.117.4244.334.4609.2216.0335.4267-.115.461-.336.034-.2178-.1164-.4232-.334-.459a.4094.4094 0 00-.082-.0039zm-11.205.3243c-.3915.0344-.744.2965-.8731.6933-.172.5306.118 1.0999.6484 1.2715.5291.173 1.0974-.1166 1.2696-.6465.1715-.5304-.119-1.0994-.6485-1.2734a1.0013 1.0013 0 00-.3965-.045zm21.078 0a1.0009 1.0009 0 00-.3964.0449c-.5304.1734-.8208.743-.6485 1.2734.1738.53.7409.8195 1.2696.6465.5315-.1716.821-.741.6484-1.2715-.1292-.3968-.482-.6589-.873-.6933zm-12.5546.0996a.409.409 0 00-.1563.043c-.196.1004-.2756.342-.1758.539a.4005.4005 0 00.541.1758c.1973-.101.277-.342.1758-.539a.397.397 0 00-.3847-.2188zm4.0312 0a.3988.3988 0 00-.3847.2168.4012.4012 0 00.1757.541c.1975.1009.4374.022.5391-.1758a.4005.4005 0 00-.1758-.541.3983.3983 0 00-.1543-.041zm-6.3047.6855c-.1568-.0054-.3144.0641-.412.2012-.159.217-.1098.523.1074.6816.2181.1596.5225.1084.6816-.1093.1592-.2186.1093-.523-.1074-.6817a.4847.4847 0 00-.2696-.0918zm8.5801 0a.4904.4904 0 00-.2715.0918.4873.4873 0 00-.1074.6816c.1598.2178.464.268.6816.1094.2187-.1597.2672-.4645.1075-.6816a.481.481 0 00-.4102-.2012zm-9.9863.1035a.594.594 0 00-.5703.3223.5913.5913 0 00.2597.793.5867.5867 0 00.793-.2559c.1484-.292.0326-.649-.2578-.7969a.5837.5837 0 00-.2246-.0625zm11.3926 0a.59.59 0 00-.2266.0625c-.2913.1472-.4053.5048-.2578.7969a.5895.5895 0 00.793.2578.5898.5898 0 00.2578-.795.5867.5867 0 00-.5664-.3222zM8.9043 8.5a.4096.4096 0 00-.2871.1191.4023.4023 0 00.002.5684.4024.4024 0 00.5683 0 .4023.4023 0 000-.5684.4.4 0 00-.2832-.1191zm6.1934.002a.4004.4004 0 00-.2852.1171.3993.3993 0 00.002.5684.3998.3998 0 00.5664 0c.1577-.158.1568-.4129 0-.5684a.3991.3991 0 00-.2832-.1171zm-10.5079.4042c-.2752.0234-.5233.2071-.6132.4864-.1217.3721.0827.7708.455.8926a.7074.7074 0 00.8926-.4532c.12-.373-.0814-.7734-.455-.8925a.7026.7026 0 00-.2794-.0333zm14.8204 0a.703.703 0 00-.2793.0333c-.3729.1191-.5758.5195-.4551.8925.12.3718.5203.5743.8926.4532.3717-.1218.578-.5205.457-.8926a.7113.7113 0 00-.6152-.4863zM8.127 9.6113a.4015.4015 0 00-.3868.2188.4.4 0 00.1758.539.3974.3974 0 00.539-.1738.401.401 0 00-.1757-.541.3936.3936 0 00-.1523-.043zm7.746 0a.3923.3923 0 00-.1523.043.4008.4008 0 00-.1758.541.4031.4031 0 00.539.1738.3989.3989 0 00.1759-.541.4033.4033 0 00-.3868-.2168zm-13.0722.088a.8528.8528 0 00-.8028.7167.8519.8519 0 00.709.9727.8477.8477 0 00.9727-.7051c.0735-.4642-.2409-.9007-.705-.9746a.8745.8745 0 00-.174-.0098zm18.3984 0a.854.854 0 00-.1719.0097.8498.8498 0 00-.707.9746.8477.8477 0 00.9727.705.8494.8494 0 00.707-.9726c-.0643-.4055-.4057-.6986-.8008-.7168zm-14.3047.1679a.4876.4876 0 00-.4218.336.4873.4873 0 00.3144.6152c.2558.084.5329-.0558.6152-.3125.0838-.2558-.0578-.5337-.3144-.6172a.4888.4888 0 00-.1934-.0215zm10.211 0a.489.489 0 00-.1934.0215c-.2555.0835-.3971.3614-.3144.6172a.4896.4896 0 00.6171.3125c.2564-.0827.3947-.3593.3106-.6153-.0601-.192-.2299-.3192-.42-.336zm-11.4942.5332a.5899.5899 0 00-.5547.498c-.0511.323.1676.6266.4883.6778.3235.0518.6274-.1689.6778-.4903a.5926.5926 0 00-.4922-.6777.5862.5862 0 00-.1192-.0078zm12.7774 0a.593.593 0 00-.1192.0078.5923.5923 0 00-.4922.6777.5897.5897 0 00.6758.4903c.322-.0512.5414-.3548.4903-.6778a.5905.5905 0 00-.5547-.498zm-10.7325.5137c-.1853.0095-.3472.145-.3789.3359a.4024.4024 0 00.336.461.4009.4009 0 00.457-.332.4025.4025 0 00-.334-.463.3937.3937 0 00-.08-.002zm8.6875 0a.4169.4169 0 00-.082.0039.4023.4023 0 00-.332.461c.0341.2184.2406.3656.459.332a.4019.4019 0 00.334-.459c-.0301-.1928-.1917-.3291-.379-.338zm-15.3359.078C.4508 10.9922 0 11.4437 0 12c0 .5575.4503 1.0078 1.0078 1.0078A1.0069 1.0069 0 002.0156 12c0-.5564-.4506-1.0078-1.0078-1.0078zm21.9844 0c-.558 0-1.0098.4509-1.0098 1.0079 0 .5569.4518 1.0078 1.0098 1.0078C23.5466 13.0078 24 12.5575 24 12c0-.5564-.4534-1.0078-1.0078-1.0078zm-18.7207.299a.7086.7086 0 00-.709.7089c.001.3924.317.709.709.709a.7086.7086 0 00.709-.709.709.709 0 00-.709-.709zm15.457 0c-.3904 0-.709.3171-.709.7089 0 .3924.3186.709.709.709a.7062.7062 0 00.707-.709c0-.3918-.3146-.709-.707-.709zm-13.0527.2187c-.27 0-.4883.2213-.4883.4902 0 .269.2183.4879.4883.4863.269 0 .4883-.2174.4883-.4863 0-.269-.2194-.4902-.4883-.4902zm10.6484 0c-.2698 0-.4883.2213-.4883.4902a.486.486 0 00.4883.4863.4867.4867 0 00.4883-.4863c0-.269-.218-.4902-.4883-.4902zm-1.0176.7734c-.1861.0074-.3464.147-.377.3379-.0348.2202.1128.426.3321.461.2187.0331.4252-.1146.461-.334a.3976.3976 0 00-.334-.459.4076.4076 0 00-.082-.0059zm-8.6132.002a.4168.4168 0 00-.082.0039c-.2181.0347-.37.239-.334.459.035.2198.2407.3674.4609.334a.404.404 0 00.334-.461c-.0306-.192-.192-.3278-.379-.336zm-2.0274.1328a.6064.6064 0 00-.121.0058c-.3208.0504-.5395.3529-.4884.6758a.5894.5894 0 00.6739.4922.5917.5917 0 00.4922-.6777c-.0441-.2816-.2813-.4838-.5567-.4961zm12.668 0a.5905.5905 0 00-.5567.498c-.0513.3214.168.625.4903.6758.3231.0514.6244-.1701.6758-.4922.051-.323-.1671-.6254-.4903-.6758a.585.585 0 00-.1191-.0058zm-15.455.1816a.8538.8538 0 00-.172.0098c-.4638.0735-.7817.5105-.709.9746.074.4642.511.7812.9747.707.466-.0732.7808-.5105.707-.9746a.8497.8497 0 00-.8008-.7168zm18.242 0c-.396.0179-.7384.3103-.8026.7168-.0727.4641.2442.901.709.9746.4636.0739.8983-.243.9726-.707.0726-.4648-.2409-.9011-.705-.9746a.8735.8735 0 00-.174-.0098zm-14.1405.5586a.4917.4917 0 00-.1934.0215.4892.4892 0 00-.3144.6172c.082.2566.3585.3958.6152.3125.2566-.0827.397-.3606.3144-.6153a.4879.4879 0 00-.4218-.3359zm10.041 0a.4896.4896 0 00-.4238.336c-.0822.2546.0589.5325.3144.6152.2564.0833.532-.056.6133-.3125.084-.2572-.0542-.5337-.3106-.6172a.4916.4916 0 00-.1933-.0215zm-8.9512.4277a.3959.3959 0 00-.1523.043.3983.3983 0 00-.1758.541.399.399 0 00.5371.1758.3994.3994 0 00.1758-.539c-.0759-.1482-.2297-.2314-.3848-.2208zm7.8613 0a.4052.4052 0 00-.3886.2188.4037.4037 0 00.1758.541c.1983.101.4418.0231.543-.1758.1005-.196.0196-.4391-.1778-.541a.3905.3905 0 00-.1524-.043zm-11.2207.0938a.7048.7048 0 00-.2793.0332c-.3723.1218-.5767.5213-.455.8945a.7072.7072 0 00.8925.4531c.3737-.12.575-.5195.4551-.8925a.7111.7111 0 00-.6133-.4883zm14.5782 0a.7118.7118 0 00-.6133.4902c-.1196.372.0822.7705.455.8906a.7071.7071 0 00.8926-.453c.1226-.3733-.0833-.7728-.455-.8946a.7042.7042 0 00-.2793-.0332zm-13.0704.6543a.5803.5803 0 00-.2246.0625c-.2907.148-.4083.5042-.2597.795a.59.59 0 00.7949.2577.5864.5864 0 00.2578-.793.5911.5911 0 00-.5683-.3222zm11.5625 0a.5917.5917 0 00-.5683.3203.5902.5902 0 00.2578.795c.2907.1473.6475.0327.795-.2579.1488-.2907.0317-.6469-.2598-.795a.5784.5784 0 00-.2247-.0624zm-16.1484.0566a.992.992 0 00-.3965.0469c-.5303.1712-.8205.741-.6484 1.2715.172.5289.741.8182 1.2695.6465.53-.173.8197-.741.6485-1.2715a1.009 1.009 0 00-.873-.6934zm20.7344 0a1.0107 1.0107 0 00-.873.6934c-.1707.5305.118 1.0985.6484 1.2715.5292.1717 1.0972-.1176 1.2695-.6465.1726-.5306-.117-1.1003-.6484-1.2715a.992.992 0 00-.3965-.0469zm-14.6914.25a.4847.4847 0 00-.2695.0938c-.2175.159-.2663.4639-.1094.6816a.4893.4893 0 00.6836.1094c.2167-.1586.2683-.4658.1093-.6836a.494.494 0 00-.414-.2012zm8.6484 0a.4911.4911 0 00-.412.2012.4897.4897 0 00.1073.6836c.2185.1585.525.11.6817-.1094a.4875.4875 0 00-.1075-.6816.4844.4844 0 00-.2695-.0938zm-7.4199.0547c-.1028 0-.2064.037-.2852.1152a.4016.4016 0 000 .5684c.1582.1572.4118.1574.5684.002a.403.403 0 000-.5704.3973.3973 0 00-.2832-.1152zm6.1914 0a.3975.3975 0 00-.2832.1172c-.1579.1565-.1568.4122 0 .5684.1589.1565.4117.1565.5684 0a.4016.4016 0 000-.5684.4026.4026 0 00-.2852-.1172zm-11.42.666a.8422.8422 0 00-.3241.0899c-.4186.2135-.5862.7252-.373 1.1445.2132.4186.7252.5859 1.1444.373.4185-.2139.5867-.7263.373-1.1445-.1596-.3135-.4891-.4857-.8202-.4629zm16.6485 0a.8553.8553 0 00-.8203.463c-.2134.4181-.0462.9305.373 1.1445.4187.2128.9304.0455 1.1446-.3731.214-.4193.0459-.931-.373-1.1445a.8397.8397 0 00-.3243-.0899zM13.959 15.5a.4037.4037 0 00-.1543.043c-.195.1015-.2742.3435-.1738.541a.3988.3988 0 00.539.1758c.1964-.1017.277-.3433.1758-.541a.4006.4006 0 00-.3867-.2188zm-3.918.002c-.1569-.0107-.3114.0691-.3867.2167a.4012.4012 0 00.1758.541c.1978.1.4387.0222.539-.1757.1023-.198.0228-.4393-.1738-.541a.402.402 0 00-.1543-.041zm-1.1523.3164a.487.487 0 00-.4121.2011.4874.4874 0 10.789.5723c.158-.217.1098-.5226-.1074-.6816a.4826.4826 0 00-.2695-.0918zm6.2246 0a.4833.4833 0 00-.2696.0918c-.2181.159-.2675.4646-.1093.6816.1573.2192.4643.2671.6816.1094.2182-.159.2692-.4645.1094-.6817a.4863.4863 0 00-.4121-.2011zm-9.3906.0156a.6996.6996 0 00-.3907.1328c-.3158.2309-.3867.6757-.1562.9922a.7044.7044 0 00.9883.1562c.3172-.2307.3884-.6724.1582-.9882a.711.711 0 00-.5996-.293zm12.5546 0a.7134.7134 0 00-.5996.293.7052.7052 0 00.1582.9882c.3173.2312.761.162.9903-.1562.2301-.3165.1593-.7613-.1582-.9922a.699.699 0 00-.3907-.1328zm-6.9804.0879c-.188.008-.3496.1486-.3809.3418-.0333.2182.1183.4223.338.459.2195.0349.4232-.116.4589-.336.0335-.2184-.1165-.4225-.334-.459a.4123.4123 0 00-.082-.0058zm1.4062.002a.4108.4108 0 00-.082.0038c-.2196.035-.3667.2411-.332.461a.4013.4013 0 00.459.334.3987.3987 0 00.332-.459.3996.3996 0 00-.377-.3399zm-5.2578.039a.59.59 0 00-.418.1738.5905.5905 0 00.836.834c.2313-.2306.2324-.6037.002-.834a.5958.5958 0 00-.42-.1738zm9.1094 0a.5891.5891 0 00-.418.1738.5867.5867 0 000 .834.5875.5875 0 00.834 0 .5893.5893 0 000-.834.5849.5849 0 00-.416-.1738zm-6.2422.6133a.4878.4878 0 00-.4219.336.4857.4857 0 00.3145.6151.489.489 0 00.6152-.3125c.0834-.2569-.0579-.5344-.3144-.6171a.4904.4904 0 00-.1934-.0215zm3.375 0a.4907.4907 0 00-.1934.0215c-.255.0827-.3961.3602-.3125.6171.0824.2559.3589.3944.6153.3125a.4885.4885 0 00.3125-.6152.4877.4877 0 00-.4219-.336zM12 16.8359a.4878.4878 0 00-.4883.4883c0 .2698.2186.4883.4883.4883.2704 0 .4902-.2185.4902-.4883 0-.2703-.2198-.4883-.4902-.4883zm-2.8828.3125a.5908.5908 0 00-.5684.3204c-.1467.2916-.0318.6463.2578.7949a.5923.5923 0 00.797-.2578c.1469-.2902.0316-.6464-.2579-.795a.6008.6008 0 00-.2285-.0625zm5.7656 0a.59.59 0 00-.2265.0625c-.2917.1479-.4058.504-.2598.795.1494.291.5061.4064.7969.2578a.59.59 0 00.2558-.795.5864.5864 0 00-.5664-.3203zm-11.8105.3028a1.0037 1.0037 0 00-.5567.1933c-.4502.3271-.5514.9589-.2226 1.4102.327.4491.9581.549 1.4082.2207.4518-.3276.5497-.9583.2226-1.4082a1.0092 1.0092 0 00-.8515-.416zm17.8554.002c-.3235-.011-.6468.133-.8515.414-.3285.4499-.2287 1.0811.2226 1.4082.452.3284 1.082.2284 1.4082-.2207.3293-.4513.2284-1.083-.2226-1.4102a1.0005 1.0005 0 00-.5567-.1914zm-13.4453.0898a.7077.7077 0 00-.5976.293c-.2306.3159-.1594.7591.1562.9902.3175.23.7595.1583.9902-.1582.23-.317.1605-.7607-.1562-.9903a.704.704 0 00-.3926-.1347zm9.0352 0a.7037.7037 0 00-.3926.1347c-.316.2296-.386.6733-.1563.9903a.7096.7096 0 00.9903.1582c.317-.2302.387-.6743.1562-.9903a.707.707 0 00-.5976-.293zm-11.0742.162a.8466.8466 0 00-.6016.25c-.3328.3325-.3328.8713 0 1.2032.3322.3323.8696.3323 1.2031 0a.8518.8518 0 00-.6015-1.4531zm13.1152.002a.8552.8552 0 00-.6035.248.85.85 0 000 1.2032c.3332.3323.8707.3314 1.205 0a.85.85 0 000-1.2031.8443.8443 0 00-.6015-.248zm-7.5918.0625c-.2745.0126-.514.2163-.5586.498-.0513.322.1692.625.4922.6759a.5907.5907 0 00.6758-.4922c.0527-.3215-.168-.6227-.4903-.6739a.5935.5935 0 00-.1191-.0078zm2.0664 0a.5911.5911 0 00-.1191.0078c-.3208.0503-.5398.3524-.4883.6739.0505.3222.3509.5441.6738.4922a.5893.5893 0 00.4902-.6758c-.0436-.2818-.282-.486-.5566-.498zm-3.4824.873a.7095.7095 0 00-.6133.4884.708.708 0 00.455.8925c.3734.1214.7732-.0839.8946-.455.1211-.3726-.0859-.772-.457-.8926a.7066.7066 0 00-.2793-.0332zm4.8984 0a.7056.7056 0 00-.2793.0313c-.3723.1212-.5779.522-.457.8946.1208.3711.5218.5764.8945.455.3717-.1217.5762-.5197.4551-.8925a.7086.7086 0 00-.6133-.4883zM12 19.0196a.7086.7086 0 00-.709.709c0 .3916.3168.709.709.709a.7088.7088 0 00.709-.709.7089.7089 0 00-.709-.709zm-4.1504.3946a.8518.8518 0 00-.8183.4629c-.2126.4187-.0453.9295.373 1.1425.419.2138.9304.0484 1.1426-.3691.213-.419.0486-.9328-.3711-1.1465a.8503.8503 0 00-.3262-.0898zm8.3008 0a.8595.8595 0 00-.3281.0898c-.4181.2137-.5848.7261-.3711 1.1465.2138.4186.7278.5829 1.1465.3691.4175-.2125.5833-.7238.3691-1.1425a.8465.8465 0 00-.8164-.463zm-10.5762.4687a1.0087 1.0087 0 00-.8515.416c-.3276.4503-.225 1.0812.2246 1.4082a1.0076 1.0076 0 001.4082-.2226c.3281-.4506.2279-1.0811-.2227-1.4082a1.0096 1.0096 0 00-.5586-.1934zm12.8516 0a1.0122 1.0122 0 00-.5586.1934c-.4505.327-.5511.9576-.2227 1.4082.328.4513.9583.5508 1.4102.2226.45-.3265.5497-.958.2226-1.4082a1.0083 1.0083 0 00-.8515-.416zm-7.914.4258c-.3956.0179-.7384.3119-.8028.7187-.0739.4623.2422.8998.707.9727.4626.0743.9001-.244.9727-.709.0745-.4639-.242-.8983-.7051-.9726a.8516.8516 0 00-.1719-.0098zm2.9784 0a.8513.8513 0 00-.879.9844c.0734.4642.5083.7813.9728.707.4642-.0729.7806-.509.707-.9727-.0638-.4068-.4067-.7008-.8008-.7187zm-4.9726 1.1406c-.391.0338-.7442.2962-.873.6934-.173.5292.117 1.0971.6464 1.2695.5306.1726 1.1008-.1183 1.2715-.6484.1724-.5296-.1182-1.097-.6484-1.2696a.9986.9986 0 00-.3965-.0449zm6.9648 0a.9988.9988 0 00-.3965.045c-.529.1725-.8218.74-.6504 1.2695.1714.53.743.821 1.2715.6484.5299-.1724.8213-.7403.6504-1.2695-.1298-.3972-.4834-.6596-.875-.6934zM12 21.9824c-.5572 0-1.0078.4532-1.0078 1.0098S11.4428 24 12 24a1.007 1.007 0 001.0078-1.0078c0-.5566-.45-1.0098-1.0078-1.0098Z" }) + ] + } + ); +}); + +exports.default = SiFigshare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.d.ts new file mode 100644 index 000000000..25ea84de8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#556472"; +declare const SiFigshare: IconType; +export { SiFigshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.mjs new file mode 100644 index 000000000..49ff7faa6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFigshare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#556472"; +const SiFigshare = React.forwardRef(function SiFigshare2({ title = "figshare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a1.0073 1.0073 0 00-1.0078 1.0078c0 .5566.4506 1.0098 1.0078 1.0098.5578 0 1.0078-.4532 1.0078-1.0098C13.0078.451 12.5578 0 12 0zM8.6895.541A1.0069 1.0069 0 008.291.588c-.528.1706-.8194.7408-.6465 1.2695.1719.5304.7419.8213 1.2696.6485.5302-.1724.8208-.7423.6484-1.2715-.128-.3986-.481-.6607-.873-.6934zm6.621 0c-.3917.0331-.7451.2948-.873.6934-.1724.5292.118 1.0991.6484 1.2715.5297.1728 1.0984-.1181 1.2715-.6485.171-.5287-.1205-1.0966-.6504-1.2695a.9976.9976 0 00-.3965-.0469zM10.588 1.9902A.8517.8517 0 0010.416 2c-.4648.0743-.7815.508-.707.9727a.85.85 0 00.9746.707c.4638-.073.7794-.5099.707-.9727a.8537.8537 0 00-.8027-.7168zm2.8242 0a.8498.8498 0 00-.8008.7168c-.0745.464.242.8998.7051.9727.4635.0734.8998-.2415.9746-.705.0717-.466-.2428-.9004-.707-.9747a.8536.8536 0 00-.1719-.0098zm-7.9082.1094a1.0023 1.0023 0 00-.5566.1914c-.4495.327-.5522.9586-.2246 1.4102.3278.4502.96.5508 1.4101.2226.4506-.326.5508-.959.2227-1.4101-.2047-.2816-.5278-.4251-.8516-.414zm12.9922 0c-.3237-.011-.6472.1325-.8516.414-.3284.4508-.2278 1.0832.2227 1.4102.4505.327 1.0817.2281 1.4101-.2226.327-.4516.2273-1.0831-.2226-1.4102a1.0095 1.0095 0 00-.5586-.1914zm-10.7676.7871a.8428.8428 0 00-.3242.0918c-.4186.2126-.5855.7256-.3711 1.1445a.8463.8463 0 001.1426.3711c.4167-.213.5856-.725.373-1.1445a.8538.8538 0 00-.8203-.4629zm8.543 0a.8538.8538 0 00-.8203.463.8513.8513 0 00.373 1.1444c.4194.2145.9317.0487 1.1426-.371.2137-.419.0495-.932-.3691-1.1446a.8521.8521 0 00-.3262-.0918zM12 3.5625a.7086.7086 0 00-.709.709c0 .3927.3168.709.709.709a.7081.7081 0 00.709-.709.7088.7088 0 00-.709-.709zm-2.3281.3809a.7062.7062 0 00-.2793.0332c-.3724.1203-.5755.5197-.4551.8925a.7088.7088 0 00.8926.4551c.3711-.121.5781-.5208.457-.8926a.7123.7123 0 00-.6152-.4882zm4.6562 0c-.2754.0236-.5246.209-.6152.4882-.1209.3718.0847.7717.457.8926.3726.1207.7724-.0833.8926-.455a.7081.7081 0 00-.455-.8926.7053.7053 0 00-.2794-.0332zm-11.1836.5878a1.0132 1.0132 0 00-.8535.416c-.3265.4494-.2245 1.0812.2246 1.4083.4506.3279 1.0804.228 1.4063-.2227.3292-.4505.2311-1.082-.2207-1.4101a.9945.9945 0 00-.5567-.1914zm17.713 0a1.0028 1.0028 0 00-.5587.1915c-.4513.3281-.5491.9596-.2226 1.4101.327.4508.9577.5494 1.4082.2227.4516-.3282.552-.96.2226-1.4102-.2039-.281-.526-.4248-.8496-.414zm-15.4141.0586a.8494.8494 0 00-.6016.25c-.3328.3324-.334.8725-.002 1.2051a.8547.8547 0 001.2051 0c.3306-.3326.332-.873 0-1.205a.847.847 0 00-.6015-.25zm13.1152 0a.8523.8523 0 00-.6035.25c-.3321.3318-.3321.8725 0 1.2051.3332.3315.8724.3321 1.205 0 .3335-.332.3335-.8724 0-1.205a.8474.8474 0 00-.6015-.25zm-11.125.4493a.709.709 0 00-.3926.1347c-.3156.231-.3868.6735-.1562.9903.2304.3178.6733.3855.9902.1562a.7065.7065 0 00.1563-.9883.7073.7073 0 00-.5977-.293zm9.1328 0a.7074.7074 0 00-.5977.293c-.2297.3172-.16.7595.1563.9882a.707.707 0 00.9902-.1562.7081.7081 0 00-.5488-1.125zm-5.5469.0097a.5897.5897 0 00-.1191.0078c-.3213.0512-.5435.3521-.4922.6739.051.322.3557.5427.6777.4922.3222-.0509.5407-.3532.4903-.6758a.5906.5906 0 00-.5567-.498zm1.961 0a.5882.5882 0 00-.5547.498c-.0515.3215.1675.625.4883.6759.3221.051.6259-.1702.6757-.4922.0524-.3229-.168-.6233-.4902-.6739a.5904.5904 0 00-.1191-.0078zm-3.9453.623a.6048.6048 0 00-.2286.0645.5902.5902 0 00-.2578.793.592.592 0 00.795.2598c.2898-.1497.4077-.5062.2597-.797a.589.589 0 00-.5683-.3202zm5.9316 0c-.2294-.0165-.4582.102-.5684.3204-.1503.2918-.034.648.2559.795a.5923.5923 0 00.7969-.2579.5898.5898 0 00-.2598-.793.5863.5863 0 00-.2246-.0644zM12 6.1876a.4885.4885 0 00-.4883.4883c0 .2703.2186.4883.4883.4883.2704 0 .4902-.218.4902-.4883 0-.2693-.2198-.4883-.4902-.4883zm-1.6035.2617a.4835.4835 0 00-.1914.0235c-.2574.0832-.3985.3588-.3145.6152.0827.2564.3594.396.6153.3125a.4884.4884 0 00.3144-.6152.4917.4917 0 00-.4238-.336zm3.207 0a.4865.4865 0 00-.4219.336.488.488 0 00.3125.6152c.2566.0824.5322-.0561.6153-.3125.0826-.2564-.0561-.5326-.3125-.6152a.4897.4897 0 00-.1934-.0235zm-7.83.2988a.705.705 0 00-.5977.293c-.2308.3153-.1596.7587.1562.9883.317.2307.7605.16.9903-.1563.2296-.3165.159-.759-.1582-.9902a.702.702 0 00-.3907-.1348zm12.455 0a.7098.7098 0 00-.3926.1348.707.707 0 00-.1582.9902c.231.3163.675.3879.9903.1582.3175-.2314.3883-.6749.1582-.9902a.705.705 0 00-.5977-.293zm-10.7832.1075a.592.592 0 00-.418.1738c-.2312.2296-.2301.6047 0 .834a.5895.5895 0 00.836 0 .591.591 0 00.002-.836.5924.5924 0 00-.42-.1718zm9.1094 0a.5885.5885 0 00-.418.1738.5867.5867 0 000 .834.5887.5887 0 00.834 0c.2301-.2302.2315-.6033.002-.834a.5884.5884 0 00-.418-.1738zm-12.7559.084a.856.856 0 00-.8203.4648.849.849 0 00.373 1.1426c.419.2149.9316.046 1.1446-.3711.2136-.4186.0454-.9303-.373-1.1446a.843.843 0 00-.3243-.0917zm16.4043 0a.8529.8529 0 00-.3261.0918c-.4193.2128-.5854.725-.373 1.1445.213.4182.7269.5845 1.1444.371.4195-.2143.5867-.725.373-1.1425a.8538.8538 0 00-.8183-.4648zM8.8535 7.205a.483.483 0 00-.2695.0918c-.2182.158-.2662.4657-.1074.6836.1584.217.4635.2664.6816.1074a.489.489 0 00.1074-.6816.4844.4844 0 00-.412-.2012zm6.293 0a.4847.4847 0 00-.4121.2012c-.16.2184-.1088.5237.1093.6816a.4876.4876 0 00.6817-.1074c.1598-.2179.1088-.5261-.1094-.6836a.4831.4831 0 00-.2695-.0918zm-3.8125.0683a.3879.3879 0 00-.08.004c-.2205.0349-.3718.2414-.336.4609.0338.2193.24.3675.461.334.2194-.035.3678-.2412.3339-.461-.03-.1906-.192-.3296-.379-.3379zm1.332 0a.4009.4009 0 00-.3789.338c-.0324.2176.117.4244.334.4609.2216.0335.4267-.115.461-.336.034-.2178-.1164-.4232-.334-.459a.4094.4094 0 00-.082-.0039zm-11.205.3243c-.3915.0344-.744.2965-.8731.6933-.172.5306.118 1.0999.6484 1.2715.5291.173 1.0974-.1166 1.2696-.6465.1715-.5304-.119-1.0994-.6485-1.2734a1.0013 1.0013 0 00-.3965-.045zm21.078 0a1.0009 1.0009 0 00-.3964.0449c-.5304.1734-.8208.743-.6485 1.2734.1738.53.7409.8195 1.2696.6465.5315-.1716.821-.741.6484-1.2715-.1292-.3968-.482-.6589-.873-.6933zm-12.5546.0996a.409.409 0 00-.1563.043c-.196.1004-.2756.342-.1758.539a.4005.4005 0 00.541.1758c.1973-.101.277-.342.1758-.539a.397.397 0 00-.3847-.2188zm4.0312 0a.3988.3988 0 00-.3847.2168.4012.4012 0 00.1757.541c.1975.1009.4374.022.5391-.1758a.4005.4005 0 00-.1758-.541.3983.3983 0 00-.1543-.041zm-6.3047.6855c-.1568-.0054-.3144.0641-.412.2012-.159.217-.1098.523.1074.6816.2181.1596.5225.1084.6816-.1093.1592-.2186.1093-.523-.1074-.6817a.4847.4847 0 00-.2696-.0918zm8.5801 0a.4904.4904 0 00-.2715.0918.4873.4873 0 00-.1074.6816c.1598.2178.464.268.6816.1094.2187-.1597.2672-.4645.1075-.6816a.481.481 0 00-.4102-.2012zm-9.9863.1035a.594.594 0 00-.5703.3223.5913.5913 0 00.2597.793.5867.5867 0 00.793-.2559c.1484-.292.0326-.649-.2578-.7969a.5837.5837 0 00-.2246-.0625zm11.3926 0a.59.59 0 00-.2266.0625c-.2913.1472-.4053.5048-.2578.7969a.5895.5895 0 00.793.2578.5898.5898 0 00.2578-.795.5867.5867 0 00-.5664-.3222zM8.9043 8.5a.4096.4096 0 00-.2871.1191.4023.4023 0 00.002.5684.4024.4024 0 00.5683 0 .4023.4023 0 000-.5684.4.4 0 00-.2832-.1191zm6.1934.002a.4004.4004 0 00-.2852.1171.3993.3993 0 00.002.5684.3998.3998 0 00.5664 0c.1577-.158.1568-.4129 0-.5684a.3991.3991 0 00-.2832-.1171zm-10.5079.4042c-.2752.0234-.5233.2071-.6132.4864-.1217.3721.0827.7708.455.8926a.7074.7074 0 00.8926-.4532c.12-.373-.0814-.7734-.455-.8925a.7026.7026 0 00-.2794-.0333zm14.8204 0a.703.703 0 00-.2793.0333c-.3729.1191-.5758.5195-.4551.8925.12.3718.5203.5743.8926.4532.3717-.1218.578-.5205.457-.8926a.7113.7113 0 00-.6152-.4863zM8.127 9.6113a.4015.4015 0 00-.3868.2188.4.4 0 00.1758.539.3974.3974 0 00.539-.1738.401.401 0 00-.1757-.541.3936.3936 0 00-.1523-.043zm7.746 0a.3923.3923 0 00-.1523.043.4008.4008 0 00-.1758.541.4031.4031 0 00.539.1738.3989.3989 0 00.1759-.541.4033.4033 0 00-.3868-.2168zm-13.0722.088a.8528.8528 0 00-.8028.7167.8519.8519 0 00.709.9727.8477.8477 0 00.9727-.7051c.0735-.4642-.2409-.9007-.705-.9746a.8745.8745 0 00-.174-.0098zm18.3984 0a.854.854 0 00-.1719.0097.8498.8498 0 00-.707.9746.8477.8477 0 00.9727.705.8494.8494 0 00.707-.9726c-.0643-.4055-.4057-.6986-.8008-.7168zm-14.3047.1679a.4876.4876 0 00-.4218.336.4873.4873 0 00.3144.6152c.2558.084.5329-.0558.6152-.3125.0838-.2558-.0578-.5337-.3144-.6172a.4888.4888 0 00-.1934-.0215zm10.211 0a.489.489 0 00-.1934.0215c-.2555.0835-.3971.3614-.3144.6172a.4896.4896 0 00.6171.3125c.2564-.0827.3947-.3593.3106-.6153-.0601-.192-.2299-.3192-.42-.336zm-11.4942.5332a.5899.5899 0 00-.5547.498c-.0511.323.1676.6266.4883.6778.3235.0518.6274-.1689.6778-.4903a.5926.5926 0 00-.4922-.6777.5862.5862 0 00-.1192-.0078zm12.7774 0a.593.593 0 00-.1192.0078.5923.5923 0 00-.4922.6777.5897.5897 0 00.6758.4903c.322-.0512.5414-.3548.4903-.6778a.5905.5905 0 00-.5547-.498zm-10.7325.5137c-.1853.0095-.3472.145-.3789.3359a.4024.4024 0 00.336.461.4009.4009 0 00.457-.332.4025.4025 0 00-.334-.463.3937.3937 0 00-.08-.002zm8.6875 0a.4169.4169 0 00-.082.0039.4023.4023 0 00-.332.461c.0341.2184.2406.3656.459.332a.4019.4019 0 00.334-.459c-.0301-.1928-.1917-.3291-.379-.338zm-15.3359.078C.4508 10.9922 0 11.4437 0 12c0 .5575.4503 1.0078 1.0078 1.0078A1.0069 1.0069 0 002.0156 12c0-.5564-.4506-1.0078-1.0078-1.0078zm21.9844 0c-.558 0-1.0098.4509-1.0098 1.0079 0 .5569.4518 1.0078 1.0098 1.0078C23.5466 13.0078 24 12.5575 24 12c0-.5564-.4534-1.0078-1.0078-1.0078zm-18.7207.299a.7086.7086 0 00-.709.7089c.001.3924.317.709.709.709a.7086.7086 0 00.709-.709.709.709 0 00-.709-.709zm15.457 0c-.3904 0-.709.3171-.709.7089 0 .3924.3186.709.709.709a.7062.7062 0 00.707-.709c0-.3918-.3146-.709-.707-.709zm-13.0527.2187c-.27 0-.4883.2213-.4883.4902 0 .269.2183.4879.4883.4863.269 0 .4883-.2174.4883-.4863 0-.269-.2194-.4902-.4883-.4902zm10.6484 0c-.2698 0-.4883.2213-.4883.4902a.486.486 0 00.4883.4863.4867.4867 0 00.4883-.4863c0-.269-.218-.4902-.4883-.4902zm-1.0176.7734c-.1861.0074-.3464.147-.377.3379-.0348.2202.1128.426.3321.461.2187.0331.4252-.1146.461-.334a.3976.3976 0 00-.334-.459.4076.4076 0 00-.082-.0059zm-8.6132.002a.4168.4168 0 00-.082.0039c-.2181.0347-.37.239-.334.459.035.2198.2407.3674.4609.334a.404.404 0 00.334-.461c-.0306-.192-.192-.3278-.379-.336zm-2.0274.1328a.6064.6064 0 00-.121.0058c-.3208.0504-.5395.3529-.4884.6758a.5894.5894 0 00.6739.4922.5917.5917 0 00.4922-.6777c-.0441-.2816-.2813-.4838-.5567-.4961zm12.668 0a.5905.5905 0 00-.5567.498c-.0513.3214.168.625.4903.6758.3231.0514.6244-.1701.6758-.4922.051-.323-.1671-.6254-.4903-.6758a.585.585 0 00-.1191-.0058zm-15.455.1816a.8538.8538 0 00-.172.0098c-.4638.0735-.7817.5105-.709.9746.074.4642.511.7812.9747.707.466-.0732.7808-.5105.707-.9746a.8497.8497 0 00-.8008-.7168zm18.242 0c-.396.0179-.7384.3103-.8026.7168-.0727.4641.2442.901.709.9746.4636.0739.8983-.243.9726-.707.0726-.4648-.2409-.9011-.705-.9746a.8735.8735 0 00-.174-.0098zm-14.1405.5586a.4917.4917 0 00-.1934.0215.4892.4892 0 00-.3144.6172c.082.2566.3585.3958.6152.3125.2566-.0827.397-.3606.3144-.6153a.4879.4879 0 00-.4218-.3359zm10.041 0a.4896.4896 0 00-.4238.336c-.0822.2546.0589.5325.3144.6152.2564.0833.532-.056.6133-.3125.084-.2572-.0542-.5337-.3106-.6172a.4916.4916 0 00-.1933-.0215zm-8.9512.4277a.3959.3959 0 00-.1523.043.3983.3983 0 00-.1758.541.399.399 0 00.5371.1758.3994.3994 0 00.1758-.539c-.0759-.1482-.2297-.2314-.3848-.2208zm7.8613 0a.4052.4052 0 00-.3886.2188.4037.4037 0 00.1758.541c.1983.101.4418.0231.543-.1758.1005-.196.0196-.4391-.1778-.541a.3905.3905 0 00-.1524-.043zm-11.2207.0938a.7048.7048 0 00-.2793.0332c-.3723.1218-.5767.5213-.455.8945a.7072.7072 0 00.8925.4531c.3737-.12.575-.5195.4551-.8925a.7111.7111 0 00-.6133-.4883zm14.5782 0a.7118.7118 0 00-.6133.4902c-.1196.372.0822.7705.455.8906a.7071.7071 0 00.8926-.453c.1226-.3733-.0833-.7728-.455-.8946a.7042.7042 0 00-.2793-.0332zm-13.0704.6543a.5803.5803 0 00-.2246.0625c-.2907.148-.4083.5042-.2597.795a.59.59 0 00.7949.2577.5864.5864 0 00.2578-.793.5911.5911 0 00-.5683-.3222zm11.5625 0a.5917.5917 0 00-.5683.3203.5902.5902 0 00.2578.795c.2907.1473.6475.0327.795-.2579.1488-.2907.0317-.6469-.2598-.795a.5784.5784 0 00-.2247-.0624zm-16.1484.0566a.992.992 0 00-.3965.0469c-.5303.1712-.8205.741-.6484 1.2715.172.5289.741.8182 1.2695.6465.53-.173.8197-.741.6485-1.2715a1.009 1.009 0 00-.873-.6934zm20.7344 0a1.0107 1.0107 0 00-.873.6934c-.1707.5305.118 1.0985.6484 1.2715.5292.1717 1.0972-.1176 1.2695-.6465.1726-.5306-.117-1.1003-.6484-1.2715a.992.992 0 00-.3965-.0469zm-14.6914.25a.4847.4847 0 00-.2695.0938c-.2175.159-.2663.4639-.1094.6816a.4893.4893 0 00.6836.1094c.2167-.1586.2683-.4658.1093-.6836a.494.494 0 00-.414-.2012zm8.6484 0a.4911.4911 0 00-.412.2012.4897.4897 0 00.1073.6836c.2185.1585.525.11.6817-.1094a.4875.4875 0 00-.1075-.6816.4844.4844 0 00-.2695-.0938zm-7.4199.0547c-.1028 0-.2064.037-.2852.1152a.4016.4016 0 000 .5684c.1582.1572.4118.1574.5684.002a.403.403 0 000-.5704.3973.3973 0 00-.2832-.1152zm6.1914 0a.3975.3975 0 00-.2832.1172c-.1579.1565-.1568.4122 0 .5684.1589.1565.4117.1565.5684 0a.4016.4016 0 000-.5684.4026.4026 0 00-.2852-.1172zm-11.42.666a.8422.8422 0 00-.3241.0899c-.4186.2135-.5862.7252-.373 1.1445.2132.4186.7252.5859 1.1444.373.4185-.2139.5867-.7263.373-1.1445-.1596-.3135-.4891-.4857-.8202-.4629zm16.6485 0a.8553.8553 0 00-.8203.463c-.2134.4181-.0462.9305.373 1.1445.4187.2128.9304.0455 1.1446-.3731.214-.4193.0459-.931-.373-1.1445a.8397.8397 0 00-.3243-.0899zM13.959 15.5a.4037.4037 0 00-.1543.043c-.195.1015-.2742.3435-.1738.541a.3988.3988 0 00.539.1758c.1964-.1017.277-.3433.1758-.541a.4006.4006 0 00-.3867-.2188zm-3.918.002c-.1569-.0107-.3114.0691-.3867.2167a.4012.4012 0 00.1758.541c.1978.1.4387.0222.539-.1757.1023-.198.0228-.4393-.1738-.541a.402.402 0 00-.1543-.041zm-1.1523.3164a.487.487 0 00-.4121.2011.4874.4874 0 10.789.5723c.158-.217.1098-.5226-.1074-.6816a.4826.4826 0 00-.2695-.0918zm6.2246 0a.4833.4833 0 00-.2696.0918c-.2181.159-.2675.4646-.1093.6816.1573.2192.4643.2671.6816.1094.2182-.159.2692-.4645.1094-.6817a.4863.4863 0 00-.4121-.2011zm-9.3906.0156a.6996.6996 0 00-.3907.1328c-.3158.2309-.3867.6757-.1562.9922a.7044.7044 0 00.9883.1562c.3172-.2307.3884-.6724.1582-.9882a.711.711 0 00-.5996-.293zm12.5546 0a.7134.7134 0 00-.5996.293.7052.7052 0 00.1582.9882c.3173.2312.761.162.9903-.1562.2301-.3165.1593-.7613-.1582-.9922a.699.699 0 00-.3907-.1328zm-6.9804.0879c-.188.008-.3496.1486-.3809.3418-.0333.2182.1183.4223.338.459.2195.0349.4232-.116.4589-.336.0335-.2184-.1165-.4225-.334-.459a.4123.4123 0 00-.082-.0058zm1.4062.002a.4108.4108 0 00-.082.0038c-.2196.035-.3667.2411-.332.461a.4013.4013 0 00.459.334.3987.3987 0 00.332-.459.3996.3996 0 00-.377-.3399zm-5.2578.039a.59.59 0 00-.418.1738.5905.5905 0 00.836.834c.2313-.2306.2324-.6037.002-.834a.5958.5958 0 00-.42-.1738zm9.1094 0a.5891.5891 0 00-.418.1738.5867.5867 0 000 .834.5875.5875 0 00.834 0 .5893.5893 0 000-.834.5849.5849 0 00-.416-.1738zm-6.2422.6133a.4878.4878 0 00-.4219.336.4857.4857 0 00.3145.6151.489.489 0 00.6152-.3125c.0834-.2569-.0579-.5344-.3144-.6171a.4904.4904 0 00-.1934-.0215zm3.375 0a.4907.4907 0 00-.1934.0215c-.255.0827-.3961.3602-.3125.6171.0824.2559.3589.3944.6153.3125a.4885.4885 0 00.3125-.6152.4877.4877 0 00-.4219-.336zM12 16.8359a.4878.4878 0 00-.4883.4883c0 .2698.2186.4883.4883.4883.2704 0 .4902-.2185.4902-.4883 0-.2703-.2198-.4883-.4902-.4883zm-2.8828.3125a.5908.5908 0 00-.5684.3204c-.1467.2916-.0318.6463.2578.7949a.5923.5923 0 00.797-.2578c.1469-.2902.0316-.6464-.2579-.795a.6008.6008 0 00-.2285-.0625zm5.7656 0a.59.59 0 00-.2265.0625c-.2917.1479-.4058.504-.2598.795.1494.291.5061.4064.7969.2578a.59.59 0 00.2558-.795.5864.5864 0 00-.5664-.3203zm-11.8105.3028a1.0037 1.0037 0 00-.5567.1933c-.4502.3271-.5514.9589-.2226 1.4102.327.4491.9581.549 1.4082.2207.4518-.3276.5497-.9583.2226-1.4082a1.0092 1.0092 0 00-.8515-.416zm17.8554.002c-.3235-.011-.6468.133-.8515.414-.3285.4499-.2287 1.0811.2226 1.4082.452.3284 1.082.2284 1.4082-.2207.3293-.4513.2284-1.083-.2226-1.4102a1.0005 1.0005 0 00-.5567-.1914zm-13.4453.0898a.7077.7077 0 00-.5976.293c-.2306.3159-.1594.7591.1562.9902.3175.23.7595.1583.9902-.1582.23-.317.1605-.7607-.1562-.9903a.704.704 0 00-.3926-.1347zm9.0352 0a.7037.7037 0 00-.3926.1347c-.316.2296-.386.6733-.1563.9903a.7096.7096 0 00.9903.1582c.317-.2302.387-.6743.1562-.9903a.707.707 0 00-.5976-.293zm-11.0742.162a.8466.8466 0 00-.6016.25c-.3328.3325-.3328.8713 0 1.2032.3322.3323.8696.3323 1.2031 0a.8518.8518 0 00-.6015-1.4531zm13.1152.002a.8552.8552 0 00-.6035.248.85.85 0 000 1.2032c.3332.3323.8707.3314 1.205 0a.85.85 0 000-1.2031.8443.8443 0 00-.6015-.248zm-7.5918.0625c-.2745.0126-.514.2163-.5586.498-.0513.322.1692.625.4922.6759a.5907.5907 0 00.6758-.4922c.0527-.3215-.168-.6227-.4903-.6739a.5935.5935 0 00-.1191-.0078zm2.0664 0a.5911.5911 0 00-.1191.0078c-.3208.0503-.5398.3524-.4883.6739.0505.3222.3509.5441.6738.4922a.5893.5893 0 00.4902-.6758c-.0436-.2818-.282-.486-.5566-.498zm-3.4824.873a.7095.7095 0 00-.6133.4884.708.708 0 00.455.8925c.3734.1214.7732-.0839.8946-.455.1211-.3726-.0859-.772-.457-.8926a.7066.7066 0 00-.2793-.0332zm4.8984 0a.7056.7056 0 00-.2793.0313c-.3723.1212-.5779.522-.457.8946.1208.3711.5218.5764.8945.455.3717-.1217.5762-.5197.4551-.8925a.7086.7086 0 00-.6133-.4883zM12 19.0196a.7086.7086 0 00-.709.709c0 .3916.3168.709.709.709a.7088.7088 0 00.709-.709.7089.7089 0 00-.709-.709zm-4.1504.3946a.8518.8518 0 00-.8183.4629c-.2126.4187-.0453.9295.373 1.1425.419.2138.9304.0484 1.1426-.3691.213-.419.0486-.9328-.3711-1.1465a.8503.8503 0 00-.3262-.0898zm8.3008 0a.8595.8595 0 00-.3281.0898c-.4181.2137-.5848.7261-.3711 1.1465.2138.4186.7278.5829 1.1465.3691.4175-.2125.5833-.7238.3691-1.1425a.8465.8465 0 00-.8164-.463zm-10.5762.4687a1.0087 1.0087 0 00-.8515.416c-.3276.4503-.225 1.0812.2246 1.4082a1.0076 1.0076 0 001.4082-.2226c.3281-.4506.2279-1.0811-.2227-1.4082a1.0096 1.0096 0 00-.5586-.1934zm12.8516 0a1.0122 1.0122 0 00-.5586.1934c-.4505.327-.5511.9576-.2227 1.4082.328.4513.9583.5508 1.4102.2226.45-.3265.5497-.958.2226-1.4082a1.0083 1.0083 0 00-.8515-.416zm-7.914.4258c-.3956.0179-.7384.3119-.8028.7187-.0739.4623.2422.8998.707.9727.4626.0743.9001-.244.9727-.709.0745-.4639-.242-.8983-.7051-.9726a.8516.8516 0 00-.1719-.0098zm2.9784 0a.8513.8513 0 00-.879.9844c.0734.4642.5083.7813.9728.707.4642-.0729.7806-.509.707-.9727-.0638-.4068-.4067-.7008-.8008-.7187zm-4.9726 1.1406c-.391.0338-.7442.2962-.873.6934-.173.5292.117 1.0971.6464 1.2695.5306.1726 1.1008-.1183 1.2715-.6484.1724-.5296-.1182-1.097-.6484-1.2696a.9986.9986 0 00-.3965-.0449zm6.9648 0a.9988.9988 0 00-.3965.045c-.529.1725-.8218.74-.6504 1.2695.1714.53.743.821 1.2715.6484.5299-.1724.8213-.7403.6504-1.2695-.1298-.3972-.4834-.6596-.875-.6934zM12 21.9824c-.5572 0-1.0078.4532-1.0078 1.0098S11.4428 24 12 24a1.007 1.007 0 001.0078-1.0078c0-.5566-.45-1.0098-1.0078-1.0098Z" }) + ] + } + ); +}); + +export { SiFigshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFila.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFila.cjs new file mode 100644 index 000000000..6eb5cb3dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFila.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002D62"; +const SiFila = React__namespace.forwardRef(function SiFila2({ title = "Fila", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.814 8.027c-.614 0-1.113.498-1.113 1.113v5.72a1.113 1.113 0 0 0 2.226 0V9.14c0-.614-.498-1.113-1.113-1.113m-2.849.078H1.113a1.113 1.113 0 0 0 0 2.226h4.852a1.113 1.113 0 0 0 0-2.226m17.411 4.417L21.03 8.705c-.275-.444-.65-.658-1.125-.658-.488 0-.904.229-1.162.658l-2.715 4.5c-.186.308-.4.436-.753.436h-2.019a.275.275 0 0 1-.285-.284V9.102c0-.613-.497-1.075-1.11-1.075-.614 0-1.11.463-1.11 1.076v5.215c0 .784.774 1.544 1.544 1.544h4.064c.576 0 .963-.42 1.292-.996l2.114-3.627c.018-.04.053-.091.093-.091.043 0 .07.051.091.088l1.384 2.22c.058.094.069.141.032.225-.033.077-.108.093-.23.093h-1.943a1.044 1.044 0 1 0 0 2.088h3.17c.77 0 1.638-.734 1.638-1.693 0-.608-.117-.822-.624-1.647M5.431 10.954H1.113c-.615 0-1.113.498-1.113 1.113v2.715a1.113 1.113 0 1 0 2.226 0v-1.268c0-.185.15-.334.334-.334h2.87a1.113 1.113 0 0 0 0-2.226" }) + ] + } + ); +}); + +exports.default = SiFila; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFila.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFila.d.ts new file mode 100644 index 000000000..cc0f2df6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFila.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002D62"; +declare const SiFila: IconType; +export { SiFila as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFila.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFila.mjs new file mode 100644 index 000000000..eba205af7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFila.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002D62"; +const SiFila = React.forwardRef(function SiFila2({ title = "Fila", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.814 8.027c-.614 0-1.113.498-1.113 1.113v5.72a1.113 1.113 0 0 0 2.226 0V9.14c0-.614-.498-1.113-1.113-1.113m-2.849.078H1.113a1.113 1.113 0 0 0 0 2.226h4.852a1.113 1.113 0 0 0 0-2.226m17.411 4.417L21.03 8.705c-.275-.444-.65-.658-1.125-.658-.488 0-.904.229-1.162.658l-2.715 4.5c-.186.308-.4.436-.753.436h-2.019a.275.275 0 0 1-.285-.284V9.102c0-.613-.497-1.075-1.11-1.075-.614 0-1.11.463-1.11 1.076v5.215c0 .784.774 1.544 1.544 1.544h4.064c.576 0 .963-.42 1.292-.996l2.114-3.627c.018-.04.053-.091.093-.091.043 0 .07.051.091.088l1.384 2.22c.058.094.069.141.032.225-.033.077-.108.093-.23.093h-1.943a1.044 1.044 0 1 0 0 2.088h3.17c.77 0 1.638-.734 1.638-1.693 0-.608-.117-.822-.624-1.647M5.431 10.954H1.113c-.615 0-1.113.498-1.113 1.113v2.715a1.113 1.113 0 1 0 2.226 0v-1.268c0-.185.15-.334.334-.334h2.87a1.113 1.113 0 0 0 0-2.226" }) + ] + } + ); +}); + +export { SiFila as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.cjs new file mode 100644 index 000000000..edff871c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDAE4B"; +const SiFilament = React__namespace.forwardRef(function SiFilament2({ title = "Filament", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.074 9.603c-.404 0-.866.122-1.128.596-.086.15-.151.336-.197.558l-.084.41H.149l-.149.71h.515c-.17.812-.337 1.623-.506 2.435h.925c.172-.811.34-1.624.508-2.436h.849l.149-.71h-.888l.058-.295a.664.664 0 0 1 .18-.364c.1-.086.229-.13.36-.122.173.003.344.044.5.12l.224-.757a2.173 2.173 0 0 0-.8-.145Zm3.865.007-.944.082c-.319 1.54-.64 3.08-.962 4.62h.928c.021-.104.491-2.381.978-4.702Zm-2.046.022c-.288-.01-.605.136-.654.473-.13.663.559.652.874.481.115-.064.19-.188.227-.37.054-.21-.027-.584-.447-.584Zm19.43.347-.95.167-.213 1.02h-.5l-.15.71h.503c-.091.448-.185.895-.279 1.342-.056.267-.05.488.02.662.13.348.483.517.961.517.127-.003.473-.031.664-.151l.1-.772a.818.818 0 0 1-.46.154c-.42 0-.37-.409-.326-.617l.235-1.135h.923l.149-.71h-.925s.074-.348.248-1.187zM7.542 11.08c-.562.001-1.147.192-1.204.211l-.146.825c.2-.087.66-.264 1.077-.264a.93.93 0 0 1 .357.058.336.336 0 0 1 .217.411c-.902.148-1.15.172-1.342.238-.38.116-.665.375-.728.762-.084.389.03.726.292.918a.809.809 0 0 0 .493.147c.402.008.714-.216.9-.495h.072l-.04.42h.8c.143-.661.28-1.324.416-1.987.056-.256.047-.476-.028-.662-.197-.485-.735-.582-1.136-.582Zm3.958 0c-.142 0-.28.025-.41.076-.258.1-.482.273-.644.498h-.08l.067-.536-.783.047c-.215 1.049-.436 2.097-.655 3.145h.929l.133-.65c.095-.438.183-.878.273-1.317.301-.357.501-.406.646-.406.335 0 .34.33.278.627-.077.365-.15.731-.225 1.097-.044.217-.088.434-.134.65h.925c.77-3.66-.303 1.396.417-1.998.053-.064.117-.116.175-.174.108-.099.266-.203.447-.203.328 0 .343.317.279.628l-.36 1.746h.928c.135-.673.278-1.345.419-2.017.08-.368.054-.661-.074-.882-.128-.22-.35-.331-.668-.331-.142 0-.28.026-.412.077a1.492 1.492 0 0 0-.658.51h-.068a.708.708 0 0 0-.204-.404c-.13-.122-.31-.183-.541-.183Zm4.752 0c-.29 0-.547.063-.773.188-.633.352-.825 1.049-.878 1.324-.087.437-.114 1.182.57 1.581.25.146.56.22.932.22.428 0 .825-.103.978-.196l.124-.8c-.089.05-.186.091-.292.124-.464.144-1.192.182-1.404-.304a.706.706 0 0 1-.053-.313l.001-.012h1.9c.048-.12.073-.249.109-.373.07-.287.07-.54-.003-.756a.9.9 0 0 0-.416-.503c-.205-.12-.47-.18-.795-.18zm3.956 0c-.147 0-.288.025-.424.076a1.41 1.41 0 0 0-.654.498h-.076l.064-.536-.782.047c-.088.426-.292 1.421-.655 3.145h.928c.136-.656.273-1.311.407-1.967a2.03 2.03 0 0 1 .203-.208.95.95 0 0 1 .218-.144c.168-.08.476-.097.556.117.044.115.045.267.004.456l-.36 1.746h.928l.138-.654c.093-.455.188-.909.284-1.363.124-.59.004-1.213-.779-1.213zm-16.63.08-.453.016-.058.212a.08.08 0 0 0 .03.074l.314.219-.366.024c-.03.002-.053.026-.06.058l-.03.137a.08.08 0 0 0 .03.074l.314.218-.366.024c-.03.002-.053.026-.06.058l-.029.135a.08.08 0 0 0 .03.075l.314.218-.367.025c-.028.002-.053.025-.06.057-.011.046-.02.092-.029.138a.08.08 0 0 0 .03.073l.314.218-.366.025c-.03.002-.053.025-.06.058l-.03.137a.08.08 0 0 0 .032.073l.313.22-.367.023c-.028.002-.053.025-.06.057l-.127.504h.41l.065-.274.513-.045c.03-.002.054-.025.06-.058l.03-.136a.08.08 0 0 0-.031-.074l-.314-.219.367-.024c.029-.002.053-.026.06-.058.011-.045.019-.091.028-.136a.08.08 0 0 0-.03-.074l-.313-.219.366-.025c.03 0 .054-.025.06-.057l.03-.137a.08.08 0 0 0-.03-.074l-.315-.218.367-.025c.029-.002.053-.025.06-.057l.028-.128v-.009a.08.08 0 0 0-.03-.074l-.313-.218.367-.024c.029-.002.053-.025.06-.057l.028-.128v-.01a.08.08 0 0 0-.03-.073l-.415-.292Zm12.693.585c.168 0 .286.07.357.208a.67.67 0 0 1 .057.398l-1.122.024.01-.028c.122-.368.392-.6.698-.602zM7.728 12.75l-.105.504c-.173.256-.409.405-.633.408-.099.004-.359-.054-.305-.368a.374.374 0 0 1 .252-.286c.234-.089.519-.113.685-.196a.691.691 0 0 0 .106-.062Z" }) + ] + } + ); +}); + +exports.default = SiFilament; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.d.ts new file mode 100644 index 000000000..1dce29707 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDAE4B"; +declare const SiFilament: IconType; +export { SiFilament as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.mjs new file mode 100644 index 000000000..ae6910c77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilament.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDAE4B"; +const SiFilament = React.forwardRef(function SiFilament2({ title = "Filament", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.074 9.603c-.404 0-.866.122-1.128.596-.086.15-.151.336-.197.558l-.084.41H.149l-.149.71h.515c-.17.812-.337 1.623-.506 2.435h.925c.172-.811.34-1.624.508-2.436h.849l.149-.71h-.888l.058-.295a.664.664 0 0 1 .18-.364c.1-.086.229-.13.36-.122.173.003.344.044.5.12l.224-.757a2.173 2.173 0 0 0-.8-.145Zm3.865.007-.944.082c-.319 1.54-.64 3.08-.962 4.62h.928c.021-.104.491-2.381.978-4.702Zm-2.046.022c-.288-.01-.605.136-.654.473-.13.663.559.652.874.481.115-.064.19-.188.227-.37.054-.21-.027-.584-.447-.584Zm19.43.347-.95.167-.213 1.02h-.5l-.15.71h.503c-.091.448-.185.895-.279 1.342-.056.267-.05.488.02.662.13.348.483.517.961.517.127-.003.473-.031.664-.151l.1-.772a.818.818 0 0 1-.46.154c-.42 0-.37-.409-.326-.617l.235-1.135h.923l.149-.71h-.925s.074-.348.248-1.187zM7.542 11.08c-.562.001-1.147.192-1.204.211l-.146.825c.2-.087.66-.264 1.077-.264a.93.93 0 0 1 .357.058.336.336 0 0 1 .217.411c-.902.148-1.15.172-1.342.238-.38.116-.665.375-.728.762-.084.389.03.726.292.918a.809.809 0 0 0 .493.147c.402.008.714-.216.9-.495h.072l-.04.42h.8c.143-.661.28-1.324.416-1.987.056-.256.047-.476-.028-.662-.197-.485-.735-.582-1.136-.582Zm3.958 0c-.142 0-.28.025-.41.076-.258.1-.482.273-.644.498h-.08l.067-.536-.783.047c-.215 1.049-.436 2.097-.655 3.145h.929l.133-.65c.095-.438.183-.878.273-1.317.301-.357.501-.406.646-.406.335 0 .34.33.278.627-.077.365-.15.731-.225 1.097-.044.217-.088.434-.134.65h.925c.77-3.66-.303 1.396.417-1.998.053-.064.117-.116.175-.174.108-.099.266-.203.447-.203.328 0 .343.317.279.628l-.36 1.746h.928c.135-.673.278-1.345.419-2.017.08-.368.054-.661-.074-.882-.128-.22-.35-.331-.668-.331-.142 0-.28.026-.412.077a1.492 1.492 0 0 0-.658.51h-.068a.708.708 0 0 0-.204-.404c-.13-.122-.31-.183-.541-.183Zm4.752 0c-.29 0-.547.063-.773.188-.633.352-.825 1.049-.878 1.324-.087.437-.114 1.182.57 1.581.25.146.56.22.932.22.428 0 .825-.103.978-.196l.124-.8c-.089.05-.186.091-.292.124-.464.144-1.192.182-1.404-.304a.706.706 0 0 1-.053-.313l.001-.012h1.9c.048-.12.073-.249.109-.373.07-.287.07-.54-.003-.756a.9.9 0 0 0-.416-.503c-.205-.12-.47-.18-.795-.18zm3.956 0c-.147 0-.288.025-.424.076a1.41 1.41 0 0 0-.654.498h-.076l.064-.536-.782.047c-.088.426-.292 1.421-.655 3.145h.928c.136-.656.273-1.311.407-1.967a2.03 2.03 0 0 1 .203-.208.95.95 0 0 1 .218-.144c.168-.08.476-.097.556.117.044.115.045.267.004.456l-.36 1.746h.928l.138-.654c.093-.455.188-.909.284-1.363.124-.59.004-1.213-.779-1.213zm-16.63.08-.453.016-.058.212a.08.08 0 0 0 .03.074l.314.219-.366.024c-.03.002-.053.026-.06.058l-.03.137a.08.08 0 0 0 .03.074l.314.218-.366.024c-.03.002-.053.026-.06.058l-.029.135a.08.08 0 0 0 .03.075l.314.218-.367.025c-.028.002-.053.025-.06.057-.011.046-.02.092-.029.138a.08.08 0 0 0 .03.073l.314.218-.366.025c-.03.002-.053.025-.06.058l-.03.137a.08.08 0 0 0 .032.073l.313.22-.367.023c-.028.002-.053.025-.06.057l-.127.504h.41l.065-.274.513-.045c.03-.002.054-.025.06-.058l.03-.136a.08.08 0 0 0-.031-.074l-.314-.219.367-.024c.029-.002.053-.026.06-.058.011-.045.019-.091.028-.136a.08.08 0 0 0-.03-.074l-.313-.219.366-.025c.03 0 .054-.025.06-.057l.03-.137a.08.08 0 0 0-.03-.074l-.315-.218.367-.025c.029-.002.053-.025.06-.057l.028-.128v-.009a.08.08 0 0 0-.03-.074l-.313-.218.367-.024c.029-.002.053-.025.06-.057l.028-.128v-.01a.08.08 0 0 0-.03-.073l-.415-.292Zm12.693.585c.168 0 .286.07.357.208a.67.67 0 0 1 .057.398l-1.122.024.01-.028c.122-.368.392-.6.698-.602zM7.728 12.75l-.105.504c-.173.256-.409.405-.633.408-.099.004-.359-.054-.305-.368a.374.374 0 0 1 .252-.286c.234-.089.519-.113.685-.196a.691.691 0 0 0 .106-.062Z" }) + ] + } + ); +}); + +export { SiFilament as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.cjs new file mode 100644 index 000000000..d021af0ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3D3C9D"; +const SiFiledotio = React__namespace.forwardRef(function SiFiledotio2({ title = "File.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.034 11.837a2.976 2.976 0 0 1-1.868 2.718l-4.385 1.401-.06-5.23c-.011-1.256-.514-2.48-1.135-2.727-2.024-.816-4.054-1.619-6.07-2.456a1.028 1.028 0 0 1-.509-.934c.001-.272.11-.532.303-.724.115-.061.236-.111.36-.149L18.049.084c1.051-.331 1.91.341 1.91 1.504l.075 10.249Zm-7.02 10.296c.011 1.256-.485 2.073-1.102 1.821-2.287-.916-4.565-1.869-6.854-2.773-.775-.509-.999-1.023-.999-2.653L3.975 7.471a4.295 4.295 0 0 1 .256-1.732 2.755 2.755 0 0 1 1.116-1.368c.063-.044.129-.085.196-.121-.195.19-.304.451-.303.723-.019.381.175.741.504.934l1.13.467 4.945 2.013c.616.252 1.135 1.47 1.135 2.726.027 3.673.043 7.347.06 11.02Z" }) + ] + } + ); +}); + +exports.default = SiFiledotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.d.ts new file mode 100644 index 000000000..4c44f7c7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3D3C9D"; +declare const SiFiledotio: IconType; +export { SiFiledotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.mjs new file mode 100644 index 000000000..654865bd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiledotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3D3C9D"; +const SiFiledotio = React.forwardRef(function SiFiledotio2({ title = "File.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.034 11.837a2.976 2.976 0 0 1-1.868 2.718l-4.385 1.401-.06-5.23c-.011-1.256-.514-2.48-1.135-2.727-2.024-.816-4.054-1.619-6.07-2.456a1.028 1.028 0 0 1-.509-.934c.001-.272.11-.532.303-.724.115-.061.236-.111.36-.149L18.049.084c1.051-.331 1.91.341 1.91 1.504l.075 10.249Zm-7.02 10.296c.011 1.256-.485 2.073-1.102 1.821-2.287-.916-4.565-1.869-6.854-2.773-.775-.509-.999-1.023-.999-2.653L3.975 7.471a4.295 4.295 0 0 1 .256-1.732 2.755 2.755 0 0 1 1.116-1.368c.063-.044.129-.085.196-.121-.195.19-.304.451-.303.723-.019.381.175.741.504.934l1.13.467 4.945 2.013c.616.252 1.135 1.47 1.135 2.726.027 3.673.043 7.347.06 11.02Z" }) + ] + } + ); +}); + +export { SiFiledotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.cjs new file mode 100644 index 000000000..54c9e2dd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFilen = React__namespace.forwardRef(function SiFilen2({ title = "Filen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.387 0 0 5.387 0 12s5.387 12 12 12 12-5.387 12-12S18.613 0 12 0zm0 1.531a10.47 10.47 0 0 1 6.384 2.196v3.92H8.052a.749.749 0 0 0-.749.748v2.373c-.425.26-.69.719-.7 1.217A1.464 1.464 0 1 0 8.83 10.74V9.172h10.332a.749.749 0 0 0 .748-.75V5.193A10.47 10.47 0 0 1 22.47 12l-.012.151h-3.324a.749.749 0 0 0-.749.749v7.372a10.47 10.47 0 0 1-1.963 1.193V14.12c.425-.26.69-.718.7-1.217a1.464 1.464 0 0 0-2.927 0c.01.499.275.957.7 1.217v7.92a10.47 10.47 0 0 1-2.894.43 10.463 10.463 0 0 1-3.19-.502v-6.024h1.83c.259.426.718.69 1.216.7a1.464 1.464 0 0 0 0-2.927 1.464 1.464 0 0 0-1.217.7H8.033a.749.749 0 0 0-.749.75v6.177A10.471 10.471 0 0 1 4.8 19.576V5.252h8.314c.26.425.718.69 1.216.7a1.464 1.464 0 0 0 0-2.928 1.464 1.464 0 0 0-1.216.701H5.619A10.47 10.47 0 0 1 12 1.532zM3.274 6.266v11.468A10.469 10.469 0 0 1 1.53 12c.01-2.04.615-4.033 1.743-5.734zm16.637 7.412h2.42a10.47 10.47 0 0 1-2.42 5.13z" }) + ] + } + ); +}); + +exports.default = SiFilen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.d.ts new file mode 100644 index 000000000..6e1dd0980 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFilen: IconType; +export { SiFilen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.mjs new file mode 100644 index 000000000..92f768c61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFilen = React.forwardRef(function SiFilen2({ title = "Filen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.387 0 0 5.387 0 12s5.387 12 12 12 12-5.387 12-12S18.613 0 12 0zm0 1.531a10.47 10.47 0 0 1 6.384 2.196v3.92H8.052a.749.749 0 0 0-.749.748v2.373c-.425.26-.69.719-.7 1.217A1.464 1.464 0 1 0 8.83 10.74V9.172h10.332a.749.749 0 0 0 .748-.75V5.193A10.47 10.47 0 0 1 22.47 12l-.012.151h-3.324a.749.749 0 0 0-.749.749v7.372a10.47 10.47 0 0 1-1.963 1.193V14.12c.425-.26.69-.718.7-1.217a1.464 1.464 0 0 0-2.927 0c.01.499.275.957.7 1.217v7.92a10.47 10.47 0 0 1-2.894.43 10.463 10.463 0 0 1-3.19-.502v-6.024h1.83c.259.426.718.69 1.216.7a1.464 1.464 0 0 0 0-2.927 1.464 1.464 0 0 0-1.217.7H8.033a.749.749 0 0 0-.749.75v6.177A10.471 10.471 0 0 1 4.8 19.576V5.252h8.314c.26.425.718.69 1.216.7a1.464 1.464 0 0 0 0-2.928 1.464 1.464 0 0 0-1.216.701H5.619A10.47 10.47 0 0 1 12 1.532zM3.274 6.266v11.468A10.469 10.469 0 0 1 1.53 12c.01-2.04.615-4.033 1.743-5.734zm16.637 7.412h2.42a10.47 10.47 0 0 1-2.42 5.13z" }) + ] + } + ); +}); + +export { SiFilen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.cjs new file mode 100644 index 000000000..84a3aba2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiFiles = React__namespace.forwardRef(function SiFiles2({ title = "Files", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.367 2.453a.822.822 0 0 0-.576.238L.241 14.213a.822.822 0 0 0-.241.584v.066c0-.323.209-.608.516-.709l7.275-2.318a2.437 2.437 0 0 0 1.584-1.592l2.318-7.267a.757.757 0 0 1 .719-.524zM0 14.863v5.047c0 .904.733 1.637 1.637 1.637h20.726c.904 0 1.637-.733 1.637-1.637V4.09c0-.904-.733-1.637-1.637-1.637h-9.951v.5l.088 9.861c.01 1.175-.962 2.14-2.137 2.14L0 14.862zM12 3.66l-2.148 6.735v.001a2.94 2.94 0 0 1-1.909 1.916l-6.716 2.141h9.136c.905 0 1.638-.734 1.637-1.639zm-10.363.975c-.905 0-1.638.734-1.637 1.638v7.473l9.135-9.111Z" }) + ] + } + ); +}); + +exports.default = SiFiles; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.d.ts new file mode 100644 index 000000000..ed474aa95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiFiles: IconType; +export { SiFiles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.mjs new file mode 100644 index 000000000..0587d42cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiles.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiFiles = React.forwardRef(function SiFiles2({ title = "Files", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.367 2.453a.822.822 0 0 0-.576.238L.241 14.213a.822.822 0 0 0-.241.584v.066c0-.323.209-.608.516-.709l7.275-2.318a2.437 2.437 0 0 0 1.584-1.592l2.318-7.267a.757.757 0 0 1 .719-.524zM0 14.863v5.047c0 .904.733 1.637 1.637 1.637h20.726c.904 0 1.637-.733 1.637-1.637V4.09c0-.904-.733-1.637-1.637-1.637h-9.951v.5l.088 9.861c.01 1.175-.962 2.14-2.137 2.14L0 14.862zM12 3.66l-2.148 6.735v.001a2.94 2.94 0 0 1-1.909 1.916l-6.716 2.141h9.136c.905 0 1.638-.734 1.637-1.639zm-10.363.975c-.905 0-1.638.734-1.637 1.638v7.473l9.135-9.111Z" }) + ] + } + ); +}); + +export { SiFiles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.cjs new file mode 100644 index 000000000..7718854de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BF0000"; +const SiFilezilla = React__namespace.forwardRef(function SiFilezilla2({ title = "FileZilla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.999 1.861V.803a.81.81 0 0 1-.568-.236.81.81 0 0 1-.234-.567h-1.06a.806.806 0 0 1-1.608 0h-1.06a.805.805 0 0 1-1.608 0h-1.059a.807.807 0 0 1-.845.765.808.808 0 0 1-.764-.765h-1.06a.806.806 0 0 1-1.609 0h-1.058a.805.805 0 0 1-1.608 0h-1.06a.794.794 0 0 1-.825.774A.803.803 0 0 1 7.197 0h-1.06A.806.806 0 0 1 4.53 0H3.47a.803.803 0 0 1-1.607 0H.803a.806.806 0 0 1-.802.803V1.86a.804.804 0 0 1 0 1.607v1.06a.803.803 0 0 1 0 1.607v1.059a.805.805 0 0 1 0 1.608v1.06a.803.803 0 1 1 0 1.607v1.06a.803.803 0 0 1 0 1.606v1.06a.803.803 0 1 1 0 1.608v1.06c.444.017.79.388.774.83a.801.801 0 0 1-.774.775v1.061a.803.803 0 1 1 0 1.608v1.06A.805.805 0 0 1 .804 24h1.06a.806.806 0 0 1 1.607 0h1.06a.806.806 0 0 1 1.608 0h1.059a.806.806 0 0 1 1.609 0h1.06a.804.804 0 0 1 1.607 0h1.06a.806.806 0 0 1 1.607 0H15.2a.807.807 0 0 1 1.61 0h1.058a.807.807 0 0 1 1.61 0h1.059a.804.804 0 0 1 1.606 0h1.054c0-.21.086-.418.235-.568a.808.808 0 0 1 .567-.234v-1.06a.805.805 0 0 1 0-1.606v-1.06a.805.805 0 0 1 0-1.608v-1.06a.806.806 0 0 1 0-1.608v-1.061a.804.804 0 0 1 0-1.608V11.47a.806.806 0 0 1 0-1.608v-1.06a.804.804 0 0 1 0-1.607v-1.06a.805.805 0 0 1 0-1.606v-1.06a.806.806 0 0 1 0-1.608zm-4.067 9.836L13.53 17.92c.58.09 1.14.225 1.742.225 1.464 0 3.147-.445 4.285-.916l-.584 2.745c-1.675.805-2.7.87-3.701.87-1.095 0-2.144-.356-3.215-.356-.602 0-1.473.045-2.008.4l-1.16-2.052 6.604-6.54h-7.6l-1.45 6.806h-3.17L6.577 3.528h10.487l-.67 3.145H9.097l-.624 2.924h11.973z" }) + ] + } + ); +}); + +exports.default = SiFilezilla; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.d.ts new file mode 100644 index 000000000..0db639cae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BF0000"; +declare const SiFilezilla: IconType; +export { SiFilezilla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.mjs new file mode 100644 index 000000000..7a9e9a9e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFilezilla.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BF0000"; +const SiFilezilla = React.forwardRef(function SiFilezilla2({ title = "FileZilla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.999 1.861V.803a.81.81 0 0 1-.568-.236.81.81 0 0 1-.234-.567h-1.06a.806.806 0 0 1-1.608 0h-1.06a.805.805 0 0 1-1.608 0h-1.059a.807.807 0 0 1-.845.765.808.808 0 0 1-.764-.765h-1.06a.806.806 0 0 1-1.609 0h-1.058a.805.805 0 0 1-1.608 0h-1.06a.794.794 0 0 1-.825.774A.803.803 0 0 1 7.197 0h-1.06A.806.806 0 0 1 4.53 0H3.47a.803.803 0 0 1-1.607 0H.803a.806.806 0 0 1-.802.803V1.86a.804.804 0 0 1 0 1.607v1.06a.803.803 0 0 1 0 1.607v1.059a.805.805 0 0 1 0 1.608v1.06a.803.803 0 1 1 0 1.607v1.06a.803.803 0 0 1 0 1.606v1.06a.803.803 0 1 1 0 1.608v1.06c.444.017.79.388.774.83a.801.801 0 0 1-.774.775v1.061a.803.803 0 1 1 0 1.608v1.06A.805.805 0 0 1 .804 24h1.06a.806.806 0 0 1 1.607 0h1.06a.806.806 0 0 1 1.608 0h1.059a.806.806 0 0 1 1.609 0h1.06a.804.804 0 0 1 1.607 0h1.06a.806.806 0 0 1 1.607 0H15.2a.807.807 0 0 1 1.61 0h1.058a.807.807 0 0 1 1.61 0h1.059a.804.804 0 0 1 1.606 0h1.054c0-.21.086-.418.235-.568a.808.808 0 0 1 .567-.234v-1.06a.805.805 0 0 1 0-1.606v-1.06a.805.805 0 0 1 0-1.608v-1.06a.806.806 0 0 1 0-1.608v-1.061a.804.804 0 0 1 0-1.608V11.47a.806.806 0 0 1 0-1.608v-1.06a.804.804 0 0 1 0-1.607v-1.06a.805.805 0 0 1 0-1.606v-1.06a.806.806 0 0 1 0-1.608zm-4.067 9.836L13.53 17.92c.58.09 1.14.225 1.742.225 1.464 0 3.147-.445 4.285-.916l-.584 2.745c-1.675.805-2.7.87-3.701.87-1.095 0-2.144-.356-3.215-.356-.602 0-1.473.045-2.008.4l-1.16-2.052 6.604-6.54h-7.6l-1.45 6.806h-3.17L6.577 3.528h10.487l-.67 3.145H9.097l-.624 2.924h11.973z" }) + ] + } + ); +}); + +export { SiFilezilla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.cjs new file mode 100644 index 000000000..0f784465d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC738"; +const SiFillout = React__namespace.forwardRef(function SiFillout2({ title = "Fillout", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.12 10.254C14.559 10.254 15.286 11.029 15.286 12.579C15.286 13.314 15.062 14.017 14.702 14.425C14.343 14.832 13.76 15.048 13.033 15.048C12.329 15.048 11.81 14.856 11.474 14.481C11.099 14.065 10.875 13.362 10.875 12.571C10.875 11.037 11.634 10.254 13.12 10.254ZM13.104 11.668C12.537 11.668 12.241 12.036 12.241 12.731C12.241 13.482 12.545 13.905 13.08 13.905C13.616 13.905 13.927 13.458 13.927 12.691C13.927 12.012 13.656 11.668 13.104 11.668ZM20.06 10.414V14.888H18.622V14.417C18.622 14.265 18.63 14.225 18.67 13.937H18.622C18.486 14.329 18.391 14.497 18.207 14.673C17.959 14.92 17.615 15.048 17.232 15.048C16.761 15.048 16.345 14.856 16.113 14.529C15.985 14.345 15.882 14.033 15.85 13.69C15.842 13.554 15.834 13.282 15.834 12.595V10.414H17.336V12.555C17.336 13.274 17.344 13.338 17.432 13.49C17.528 13.642 17.695 13.73 17.903 13.73C18.183 13.73 18.407 13.57 18.494 13.314C18.55 13.138 18.558 13.059 18.558 12.555V10.414H20.06ZM8.813 14.898V8.952H10.3V14.898H8.813ZM6.548 14.898V8.952H8.07V14.898H6.548ZM0.0 9.589H3.61V10.923H1.411V11.801H3.61V13.039H1.411V14.898H0.0V9.589ZM4.303 14.889L4.303 10.462C4.575 10.566 4.751 10.598 5.03 10.598C5.302 10.598 5.518 10.558 5.805 10.462L5.805 14.889H4.303ZM5.037 10.202C4.46 10.202 4.168 10 4.168 9.596C4.168 9.404 4.258 9.221 4.402 9.114C4.546 9.008 4.781 8.952 5.073 8.952C5.355 8.952 5.563 9.002 5.698 9.1C5.849 9.208 5.939 9.392 5.939 9.598C5.939 9.998 5.634 10.202 5.037 10.202ZM21.634 9.577C21.634 10.711 21.235 10.916 20.492 10.916V11.796H21.235C21.203 12.267 21.195 12.555 21.195 13.011C21.195 13.818 21.267 14.225 21.459 14.529C21.675 14.864 22.098 15.048 22.658 15.048C23.233 15.048 23.608 14.896 24 14.505V13.466C23.76 13.77 23.505 13.905 23.193 13.905C23.001 13.905 22.833 13.826 22.754 13.698C22.666 13.562 22.634 13.354 22.634 12.987C22.634 12.475 22.61 11.796 22.61 11.796H24V10.41H22.61V9.577H21.634Z" }) + ] + } + ); +}); + +exports.default = SiFillout; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.d.ts new file mode 100644 index 000000000..4c50fbbe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC738"; +declare const SiFillout: IconType; +export { SiFillout as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.mjs new file mode 100644 index 000000000..1190449ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFillout.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC738"; +const SiFillout = React.forwardRef(function SiFillout2({ title = "Fillout", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.12 10.254C14.559 10.254 15.286 11.029 15.286 12.579C15.286 13.314 15.062 14.017 14.702 14.425C14.343 14.832 13.76 15.048 13.033 15.048C12.329 15.048 11.81 14.856 11.474 14.481C11.099 14.065 10.875 13.362 10.875 12.571C10.875 11.037 11.634 10.254 13.12 10.254ZM13.104 11.668C12.537 11.668 12.241 12.036 12.241 12.731C12.241 13.482 12.545 13.905 13.08 13.905C13.616 13.905 13.927 13.458 13.927 12.691C13.927 12.012 13.656 11.668 13.104 11.668ZM20.06 10.414V14.888H18.622V14.417C18.622 14.265 18.63 14.225 18.67 13.937H18.622C18.486 14.329 18.391 14.497 18.207 14.673C17.959 14.92 17.615 15.048 17.232 15.048C16.761 15.048 16.345 14.856 16.113 14.529C15.985 14.345 15.882 14.033 15.85 13.69C15.842 13.554 15.834 13.282 15.834 12.595V10.414H17.336V12.555C17.336 13.274 17.344 13.338 17.432 13.49C17.528 13.642 17.695 13.73 17.903 13.73C18.183 13.73 18.407 13.57 18.494 13.314C18.55 13.138 18.558 13.059 18.558 12.555V10.414H20.06ZM8.813 14.898V8.952H10.3V14.898H8.813ZM6.548 14.898V8.952H8.07V14.898H6.548ZM0.0 9.589H3.61V10.923H1.411V11.801H3.61V13.039H1.411V14.898H0.0V9.589ZM4.303 14.889L4.303 10.462C4.575 10.566 4.751 10.598 5.03 10.598C5.302 10.598 5.518 10.558 5.805 10.462L5.805 14.889H4.303ZM5.037 10.202C4.46 10.202 4.168 10 4.168 9.596C4.168 9.404 4.258 9.221 4.402 9.114C4.546 9.008 4.781 8.952 5.073 8.952C5.355 8.952 5.563 9.002 5.698 9.1C5.849 9.208 5.939 9.392 5.939 9.598C5.939 9.998 5.634 10.202 5.037 10.202ZM21.634 9.577C21.634 10.711 21.235 10.916 20.492 10.916V11.796H21.235C21.203 12.267 21.195 12.555 21.195 13.011C21.195 13.818 21.267 14.225 21.459 14.529C21.675 14.864 22.098 15.048 22.658 15.048C23.233 15.048 23.608 14.896 24 14.505V13.466C23.76 13.77 23.505 13.905 23.193 13.905C23.001 13.905 22.833 13.826 22.754 13.698C22.666 13.562 22.634 13.354 22.634 12.987C22.634 12.475 22.61 11.796 22.61 11.796H24V10.41H22.61V9.577H21.634Z" }) + ] + } + ); +}); + +export { SiFillout as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.cjs new file mode 100644 index 000000000..51132c3e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00549F"; +const SiFineco = React__namespace.forwardRef(function SiFineco2({ title = "Fineco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.712 8.72a1.702 1.702 0 0 0-1.21.488A1.678 1.678 0 0 0 0 10.404v3.176a1.677 1.677 0 0 0 .496 1.207 1.702 1.702 0 0 0 1.216.493h20.576v-.016a1.702 1.702 0 0 0 1.21-.487A1.678 1.678 0 0 0 24 13.58v-3.176a1.677 1.677 0 0 0-.502-1.196 1.703 1.703 0 0 0-1.21-.488Zm18.256 1.462c1.136 0 2.048.81 2.048 1.795 0 .984-.912 1.794-2.048 1.794-1.136 0-2.048-.683-2.048-1.794 0-1.112.912-1.795 2.048-1.795zm-3.344.016a3.238 3.238 0 0 1 .96.143l-.16.524a2.416 2.416 0 0 0-.8-.127c-.992 0-1.792.397-1.792 1.254 0 .858.8 1.255 1.792 1.255a2.432 2.432 0 0 0 .784-.127l.16.524a3.238 3.238 0 0 1-.944.143c-1.52 0-2.464-.683-2.464-1.795 0-1.111 1.104-1.794 2.464-1.794zm-14.336.063h2.576v.508h-1.92v.97h1.824v.508H2.944v1.477h-.656Zm3.312 0h.656v3.469H5.6Zm1.504 0h.816l1.088 1.477a9.027 9.027 0 0 1 .72 1.16h.016a12.977 12.977 0 0 1-.064-1.446v-1.191h.656v3.462H9.6L8.496 12.2a11.58 11.58 0 0 1-.752-1.207h-.016c.032.444.032.905.032 1.477v1.238l-.656.016zm4 0h2.576v.524h-1.92v.953h1.824v.524H11.76v.953l1.92-.016v.524h-2.576zm8.864.445c-.768 0-1.392.397-1.392 1.27 0 .874.624 1.271 1.392 1.271.768 0 1.392-.572 1.392-1.27 0-.7-.624-1.271-1.392-1.271z" }) + ] + } + ); +}); + +exports.default = SiFineco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.d.ts new file mode 100644 index 000000000..e3306c7fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00549F"; +declare const SiFineco: IconType; +export { SiFineco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.mjs new file mode 100644 index 000000000..0f7e2930a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFineco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00549F"; +const SiFineco = React.forwardRef(function SiFineco2({ title = "Fineco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.712 8.72a1.702 1.702 0 0 0-1.21.488A1.678 1.678 0 0 0 0 10.404v3.176a1.677 1.677 0 0 0 .496 1.207 1.702 1.702 0 0 0 1.216.493h20.576v-.016a1.702 1.702 0 0 0 1.21-.487A1.678 1.678 0 0 0 24 13.58v-3.176a1.677 1.677 0 0 0-.502-1.196 1.703 1.703 0 0 0-1.21-.488Zm18.256 1.462c1.136 0 2.048.81 2.048 1.795 0 .984-.912 1.794-2.048 1.794-1.136 0-2.048-.683-2.048-1.794 0-1.112.912-1.795 2.048-1.795zm-3.344.016a3.238 3.238 0 0 1 .96.143l-.16.524a2.416 2.416 0 0 0-.8-.127c-.992 0-1.792.397-1.792 1.254 0 .858.8 1.255 1.792 1.255a2.432 2.432 0 0 0 .784-.127l.16.524a3.238 3.238 0 0 1-.944.143c-1.52 0-2.464-.683-2.464-1.795 0-1.111 1.104-1.794 2.464-1.794zm-14.336.063h2.576v.508h-1.92v.97h1.824v.508H2.944v1.477h-.656Zm3.312 0h.656v3.469H5.6Zm1.504 0h.816l1.088 1.477a9.027 9.027 0 0 1 .72 1.16h.016a12.977 12.977 0 0 1-.064-1.446v-1.191h.656v3.462H9.6L8.496 12.2a11.58 11.58 0 0 1-.752-1.207h-.016c.032.444.032.905.032 1.477v1.238l-.656.016zm4 0h2.576v.524h-1.92v.953h1.824v.524H11.76v.953l1.92-.016v.524h-2.576zm8.864.445c-.768 0-1.392.397-1.392 1.27 0 .874.624 1.271 1.392 1.271.768 0 1.392-.572 1.392-1.27 0-.7-.624-1.271-1.392-1.271z" }) + ] + } + ); +}); + +export { SiFineco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFing.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFing.cjs new file mode 100644 index 000000000..0b1d004c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFing.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009AEE"; +const SiFing = React__namespace.forwardRef(function SiFing2({ title = "Fing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.706 9.583c1.359.018 2.375 1.094 2.347 2.485-.027 1.317-1.117 2.352-2.46 2.337-1.333-.015-2.352-1.113-2.334-2.515.018-1.334 1.069-2.325 2.447-2.307zm6.259-3.852c-.654-.716-1.447-1.271-2.316-1.726-.26-.136-.535-.241-.8-.367-.444-.211-.719-.539-.579-1.052.147-.537.547-.738 1.071-.597 1.196.323 2.198 1.004 3.15 1.769.114.092.225.189.333.288.194.179.346.542.611.459.254-.08.079-.446.129-.681.048-.228.161-.422.405-.402.256.021.519.141.511.455a46.98 46.98 0 0 1-.116 2.518c-.03.375-.31.509-.68.491a72.177 72.177 0 0 0-2.081-.068c-.329-.006-.679.012-.685-.439-.005-.435.333-.47.667-.483.118-.002.256.039.38-.165zm-4.422-3.714c-.007 1.068-.87 1.938-1.917 1.934-1.063-.004-1.98-.923-1.971-1.973.009-1.057.944-1.993 1.973-1.978 1.059.016 1.922.926 1.915 2.017zM5.465 20.792c-1.049-.013-1.895-.891-1.894-1.964.001-1.106.893-2.018 1.949-1.993 1.063.025 1.925.959 1.893 2.049-.032 1.081-.89 1.921-1.948 1.908zm5.267 1.174c.023-1.124.857-1.896 2.017-1.866 1.04.026 1.9.948 1.861 1.992-.039 1.04-.955 1.92-1.984 1.908-1.062-.013-1.917-.931-1.894-2.034zM5.649 6.814c-1.13.002-1.966-.822-1.964-1.937.001-1.051.875-1.947 1.911-1.96 1.046-.012 1.953.868 1.965 1.907.013 1.126-.816 1.988-1.912 1.99zm-2.954 7.082a1.92 1.92 0 0 1-1.927-1.923c-.004-1.08.894-1.988 1.96-1.981 1.08.007 1.94.912 1.916 2.014-.025 1.099-.845 1.894-1.949 1.89zm18.931 5.047c-.009 1.103-.872 1.926-1.997 1.906-1.077-.02-1.84-.844-1.831-1.979.009-1.11.811-1.921 1.899-1.92 1.077.002 1.938.892 1.929 1.993zm1.606-6.87a10.458 10.458 0 0 1-.856 4.046c-.188.443-.51.724-1.044.546-.495-.164-.75-.587-.542-1.095a9.8 9.8 0 0 0 .731-4.062c-.016-.522.304-.818.836-.814.487.003.793.245.843.75.021.208.022.419.032.629zm-6.363 7.897c.575-.027.804.255.925.598a.808.808 0 0 1-.351.989c-.404.25-.84.473-1.328.529-.418.048-.741-.114-.918-.502-.168-.369-.102-.738.216-.965a4.064 4.064 0 0 1 1.456-.649zM4.67 7.84c-.027.8-.622 1.588-1.179 1.563-.441-.02-.886-.47-.885-.896.001-.762.622-1.615 1.161-1.595.512.017.92.437.903.928zm5.254 13.317c.003.597-.317.906-.902.853-.495-.045-.914-.299-1.291-.586-.302-.23-.411-.589-.213-.958.192-.358.472-.564.919-.497.838.124 1.484.627 1.487 1.188zm-6.456-6.743c.531.002 1.093.781 1.075 1.491a.871.871 0 0 1-.859.835c-.508.009-1.082-.738-1.1-1.432-.011-.423.456-.895.884-.894zM9.102 2.002c.53.009.839.344.818.885-.021.528-.81 1.1-1.487 1.078-.47-.015-.783-.369-.778-.879.006-.596.675-1.097 1.447-1.084z" }) + ] + } + ); +}); + +exports.default = SiFing; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFing.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFing.d.ts new file mode 100644 index 000000000..aac154165 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFing.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009AEE"; +declare const SiFing: IconType; +export { SiFing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFing.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFing.mjs new file mode 100644 index 000000000..08b3c82f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFing.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009AEE"; +const SiFing = React.forwardRef(function SiFing2({ title = "Fing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.706 9.583c1.359.018 2.375 1.094 2.347 2.485-.027 1.317-1.117 2.352-2.46 2.337-1.333-.015-2.352-1.113-2.334-2.515.018-1.334 1.069-2.325 2.447-2.307zm6.259-3.852c-.654-.716-1.447-1.271-2.316-1.726-.26-.136-.535-.241-.8-.367-.444-.211-.719-.539-.579-1.052.147-.537.547-.738 1.071-.597 1.196.323 2.198 1.004 3.15 1.769.114.092.225.189.333.288.194.179.346.542.611.459.254-.08.079-.446.129-.681.048-.228.161-.422.405-.402.256.021.519.141.511.455a46.98 46.98 0 0 1-.116 2.518c-.03.375-.31.509-.68.491a72.177 72.177 0 0 0-2.081-.068c-.329-.006-.679.012-.685-.439-.005-.435.333-.47.667-.483.118-.002.256.039.38-.165zm-4.422-3.714c-.007 1.068-.87 1.938-1.917 1.934-1.063-.004-1.98-.923-1.971-1.973.009-1.057.944-1.993 1.973-1.978 1.059.016 1.922.926 1.915 2.017zM5.465 20.792c-1.049-.013-1.895-.891-1.894-1.964.001-1.106.893-2.018 1.949-1.993 1.063.025 1.925.959 1.893 2.049-.032 1.081-.89 1.921-1.948 1.908zm5.267 1.174c.023-1.124.857-1.896 2.017-1.866 1.04.026 1.9.948 1.861 1.992-.039 1.04-.955 1.92-1.984 1.908-1.062-.013-1.917-.931-1.894-2.034zM5.649 6.814c-1.13.002-1.966-.822-1.964-1.937.001-1.051.875-1.947 1.911-1.96 1.046-.012 1.953.868 1.965 1.907.013 1.126-.816 1.988-1.912 1.99zm-2.954 7.082a1.92 1.92 0 0 1-1.927-1.923c-.004-1.08.894-1.988 1.96-1.981 1.08.007 1.94.912 1.916 2.014-.025 1.099-.845 1.894-1.949 1.89zm18.931 5.047c-.009 1.103-.872 1.926-1.997 1.906-1.077-.02-1.84-.844-1.831-1.979.009-1.11.811-1.921 1.899-1.92 1.077.002 1.938.892 1.929 1.993zm1.606-6.87a10.458 10.458 0 0 1-.856 4.046c-.188.443-.51.724-1.044.546-.495-.164-.75-.587-.542-1.095a9.8 9.8 0 0 0 .731-4.062c-.016-.522.304-.818.836-.814.487.003.793.245.843.75.021.208.022.419.032.629zm-6.363 7.897c.575-.027.804.255.925.598a.808.808 0 0 1-.351.989c-.404.25-.84.473-1.328.529-.418.048-.741-.114-.918-.502-.168-.369-.102-.738.216-.965a4.064 4.064 0 0 1 1.456-.649zM4.67 7.84c-.027.8-.622 1.588-1.179 1.563-.441-.02-.886-.47-.885-.896.001-.762.622-1.615 1.161-1.595.512.017.92.437.903.928zm5.254 13.317c.003.597-.317.906-.902.853-.495-.045-.914-.299-1.291-.586-.302-.23-.411-.589-.213-.958.192-.358.472-.564.919-.497.838.124 1.484.627 1.487 1.188zm-6.456-6.743c.531.002 1.093.781 1.075 1.491a.871.871 0 0 1-.859.835c-.508.009-1.082-.738-1.1-1.432-.011-.423.456-.895.884-.894zM9.102 2.002c.53.009.839.344.818.885-.021.528-.81 1.1-1.487 1.078-.47-.015-.783-.369-.778-.879.006-.596.675-1.097 1.447-1.084z" }) + ] + } + ); +}); + +export { SiFing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.cjs new file mode 100644 index 000000000..0fccb3dbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD2C00"; +const SiFirebase = React__namespace.forwardRef(function SiFirebase2({ title = "Firebase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.455 8.369c-.538-.748-1.778-2.285-3.681-4.569-.826-.991-1.535-1.832-1.884-2.245a146 146 0 0 0-.488-.576l-.207-.245-.113-.133-.022-.032-.01-.005L12.57 0l-.609.488c-1.555 1.246-2.828 2.851-3.681 4.64-.523 1.064-.864 2.105-1.043 3.176-.047.241-.088.489-.121.738-.209-.017-.421-.028-.632-.033-.018-.001-.035-.002-.059-.003a7.46 7.46 0 0 0-2.28.274l-.317.089-.163.286c-.765 1.342-1.198 2.869-1.252 4.416-.07 2.01.477 3.954 1.583 5.625 1.082 1.633 2.61 2.882 4.42 3.611l.236.095.071.025.003-.001a9.59 9.59 0 0 0 2.941.568q.171.006.342.006c1.273 0 2.513-.249 3.69-.742l.008.004.313-.145a9.63 9.63 0 0 0 3.927-3.335c1.01-1.49 1.577-3.234 1.641-5.042.075-2.161-.643-4.304-2.133-6.371m-7.083 6.695c.328 1.244.264 2.44-.191 3.558-1.135-1.12-1.967-2.352-2.475-3.665-.543-1.404-.87-2.74-.974-3.975.48.157.922.366 1.315.622 1.132.737 1.914 1.902 2.325 3.461zm.207 6.022c.482.368.99.712 1.513 1.028-.771.21-1.565.302-2.369.273a8 8 0 0 1-.373-.022c.458-.394.869-.823 1.228-1.279zm1.347-6.431c-.516-1.957-1.527-3.437-3.002-4.398-.647-.421-1.385-.741-2.194-.95.011-.134.026-.268.043-.4.014-.113.03-.216.046-.313.133-.689.332-1.37.589-2.025.099-.25.206-.499.321-.74l.004-.008c.177-.358.376-.719.61-1.105l.092-.152-.003-.001c.544-.851 1.197-1.627 1.942-2.311l.288.341c.672.796 1.304 1.548 1.878 2.237 1.291 1.549 2.966 3.583 3.612 4.48 1.277 1.771 1.893 3.579 1.83 5.375-.049 1.395-.461 2.755-1.195 3.933-.694 1.116-1.661 2.05-2.8 2.708-.636-.318-1.559-.839-2.539-1.599.79-1.575.952-3.28.479-5.072zm-2.575 5.397c-.725.939-1.587 1.55-2.09 1.856-.081-.029-.163-.06-.243-.093l-.065-.026c-1.49-.616-2.747-1.656-3.635-3.01-.907-1.384-1.356-2.993-1.298-4.653.041-1.19.338-2.327.882-3.379.316-.07.638-.114.96-.131l.084-.002c.162-.003.324-.003.478 0 .227.011.454.035.677.07.073 1.513.445 3.145 1.105 4.852.637 1.644 1.694 3.162 3.144 4.515z" }) + ] + } + ); +}); + +exports.default = SiFirebase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.d.ts new file mode 100644 index 000000000..711df94cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD2C00"; +declare const SiFirebase: IconType; +export { SiFirebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.mjs new file mode 100644 index 000000000..fbc45b9f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirebase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD2C00"; +const SiFirebase = React.forwardRef(function SiFirebase2({ title = "Firebase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.455 8.369c-.538-.748-1.778-2.285-3.681-4.569-.826-.991-1.535-1.832-1.884-2.245a146 146 0 0 0-.488-.576l-.207-.245-.113-.133-.022-.032-.01-.005L12.57 0l-.609.488c-1.555 1.246-2.828 2.851-3.681 4.64-.523 1.064-.864 2.105-1.043 3.176-.047.241-.088.489-.121.738-.209-.017-.421-.028-.632-.033-.018-.001-.035-.002-.059-.003a7.46 7.46 0 0 0-2.28.274l-.317.089-.163.286c-.765 1.342-1.198 2.869-1.252 4.416-.07 2.01.477 3.954 1.583 5.625 1.082 1.633 2.61 2.882 4.42 3.611l.236.095.071.025.003-.001a9.59 9.59 0 0 0 2.941.568q.171.006.342.006c1.273 0 2.513-.249 3.69-.742l.008.004.313-.145a9.63 9.63 0 0 0 3.927-3.335c1.01-1.49 1.577-3.234 1.641-5.042.075-2.161-.643-4.304-2.133-6.371m-7.083 6.695c.328 1.244.264 2.44-.191 3.558-1.135-1.12-1.967-2.352-2.475-3.665-.543-1.404-.87-2.74-.974-3.975.48.157.922.366 1.315.622 1.132.737 1.914 1.902 2.325 3.461zm.207 6.022c.482.368.99.712 1.513 1.028-.771.21-1.565.302-2.369.273a8 8 0 0 1-.373-.022c.458-.394.869-.823 1.228-1.279zm1.347-6.431c-.516-1.957-1.527-3.437-3.002-4.398-.647-.421-1.385-.741-2.194-.95.011-.134.026-.268.043-.4.014-.113.03-.216.046-.313.133-.689.332-1.37.589-2.025.099-.25.206-.499.321-.74l.004-.008c.177-.358.376-.719.61-1.105l.092-.152-.003-.001c.544-.851 1.197-1.627 1.942-2.311l.288.341c.672.796 1.304 1.548 1.878 2.237 1.291 1.549 2.966 3.583 3.612 4.48 1.277 1.771 1.893 3.579 1.83 5.375-.049 1.395-.461 2.755-1.195 3.933-.694 1.116-1.661 2.05-2.8 2.708-.636-.318-1.559-.839-2.539-1.599.79-1.575.952-3.28.479-5.072zm-2.575 5.397c-.725.939-1.587 1.55-2.09 1.856-.081-.029-.163-.06-.243-.093l-.065-.026c-1.49-.616-2.747-1.656-3.635-3.01-.907-1.384-1.356-2.993-1.298-4.653.041-1.19.338-2.327.882-3.379.316-.07.638-.114.96-.131l.084-.002c.162-.003.324-.003.478 0 .227.011.454.035.677.07.073 1.513.445 3.145 1.105 4.852.637 1.644 1.694 3.162 3.144 4.515z" }) + ] + } + ); +}); + +export { SiFirebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.cjs new file mode 100644 index 000000000..1e83e76d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F07A5B"; +const SiFirefish = React__namespace.forwardRef(function SiFirefish2({ title = "Firefish", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.771 0c-.68-.016-1.342.507-1.342 1.304V7.27c0 .719.582 1.301 1.3 1.301h5.967c1.16 0 1.74-1.401.92-2.22L17.65.383a1.275 1.275 0 0 0-.879-.383ZM6.573.106c-.672-.017-1.326.5-1.326 1.287v5.892c0 .71.575 1.285 1.285 1.285h5.892c1.145 0 1.718-1.384.908-2.194L7.44.484a1.259 1.259 0 0 0-.867-.379ZM1.286 10.287c-.71 0-1.286.576-1.286 1.286v11.142C0 23.425.576 24 1.286 24h11.143c.71 0 1.285-.575 1.285-1.285V11.573c0-.71-.575-1.286-1.285-1.286zm15.485 0c-.68-.017-1.342.507-1.342 1.304v5.966c0 .718.582 1.3 1.3 1.3h5.967c1.16 0 1.74-1.4.92-2.22L17.65 10.67a1.275 1.275 0 0 0-.879-.384zM3.43 17.144a1.714 1.714 0 1 1 0 3.428 1.714 1.714 0 0 1 0-3.428zm4.285 0a1.714 1.714 0 1 1 0 3.428 1.714 1.714 0 0 1 0-3.428z" }) + ] + } + ); +}); + +exports.default = SiFirefish; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.d.ts new file mode 100644 index 000000000..f0852a589 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F07A5B"; +declare const SiFirefish: IconType; +export { SiFirefish as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.mjs new file mode 100644 index 000000000..210b1bfb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefish.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F07A5B"; +const SiFirefish = React.forwardRef(function SiFirefish2({ title = "Firefish", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.771 0c-.68-.016-1.342.507-1.342 1.304V7.27c0 .719.582 1.301 1.3 1.301h5.967c1.16 0 1.74-1.401.92-2.22L17.65.383a1.275 1.275 0 0 0-.879-.383ZM6.573.106c-.672-.017-1.326.5-1.326 1.287v5.892c0 .71.575 1.285 1.285 1.285h5.892c1.145 0 1.718-1.384.908-2.194L7.44.484a1.259 1.259 0 0 0-.867-.379ZM1.286 10.287c-.71 0-1.286.576-1.286 1.286v11.142C0 23.425.576 24 1.286 24h11.143c.71 0 1.285-.575 1.285-1.285V11.573c0-.71-.575-1.286-1.285-1.286zm15.485 0c-.68-.017-1.342.507-1.342 1.304v5.966c0 .718.582 1.3 1.3 1.3h5.967c1.16 0 1.74-1.4.92-2.22L17.65 10.67a1.275 1.275 0 0 0-.879-.384zM3.43 17.144a1.714 1.714 0 1 1 0 3.428 1.714 1.714 0 0 1 0-3.428zm4.285 0a1.714 1.714 0 1 1 0 3.428 1.714 1.714 0 0 1 0-3.428z" }) + ] + } + ); +}); + +export { SiFirefish as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.cjs new file mode 100644 index 000000000..c7d6e290c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD5029"; +const SiFireflyiii = React__namespace.forwardRef(function SiFireflyiii2({ title = "Firefly III", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.107 0s.917 3.103-.842 4.91c-1.76 1.807-1.57 3.803-.856 4.754.713.951.665 1.664.095 2.187-.57.523-1.046.904-1.379.048-.333-.856-.713-.856-.856-1.284a43.535 43.535 0 0 0-.428-1.189s-.903 1.427-1.474 2.283c-.57.855-.57 2.187-.19 2.9.38.713.238 1.569-.047 2.757-.286 1.189.095 2.996 1.426 3.709 1.331.713 2.948 1.283 3.66 1.949.714.666 2.378 1.284 4.518.808 2.14-.475 4.85-2.662 5.324-4.136 0 0 1.237-1.379 1-3.185-.239-1.807-1.095-1.76-1.475-3.138-.38-1.38.823-1.04-.19-3.406 0 0-.452-1.127-2.168-1.939-1.102-.521-.352-2.88-2.3-5.258C11.974.393 10.106 0 10.106 0zm-.326 11.753c1.373-.01 2.14 1.376 2.14 1.376 1.78-.216 3.533.152 4.374.94.531.498.965.956 1.181 1.834-.1-.034-.282-.08-.52-.076a1.875 1.875 0 0 0-.902.256s-.99-.333-1.52.097c-.55.446-.604.968-.576 1.586 0 0 .476-1.628 1.68-1.208 0 0-.852 1.5.472 1.762 0 0 .313-.002.57-.158.247-.148.44-.424.361-.92 0 0-.16-.494-.577-.794 0 0 .378-.267 1.096-.104.035.238.056.503.063.802.047 2.057-1.326 3.402-1.326 3.402v.927c-.167.334-.445.445-1.39.445-.946 0-1.076-.26-1.076-.26v-.185c-1.446.186-2.234 0-2.234 0 0 .167 0 .195-.14.334-.138.139-1 .148-1.65.055-.649-.092-.574-.407-.574-.407v-.946a3.663 3.663 0 0 1-1.354-1.873l-.61.012c-.334 0-.477-.428-.477-.428v-1.379c0-.428.428-.523.428-.523l.594-.045c.201-1.426 1.688-2.522 1.688-2.522l-.083-1.966c.125-.023.246-.033.362-.034zm-.548 4.716a.352.352 0 0 0-.353.352.352.352 0 0 0 .353.352.352.352 0 0 0 .352-.352.352.352 0 0 0-.352-.352zm6.85.301s.124.031.39.469c.257.425-.182.635-.182.635-.827.063-.208-1.104-.208-1.104z" }) + ] + } + ); +}); + +exports.default = SiFireflyiii; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.d.ts new file mode 100644 index 000000000..140386326 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD5029"; +declare const SiFireflyiii: IconType; +export { SiFireflyiii as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.mjs new file mode 100644 index 000000000..f20a717e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFireflyiii.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD5029"; +const SiFireflyiii = React.forwardRef(function SiFireflyiii2({ title = "Firefly III", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.107 0s.917 3.103-.842 4.91c-1.76 1.807-1.57 3.803-.856 4.754.713.951.665 1.664.095 2.187-.57.523-1.046.904-1.379.048-.333-.856-.713-.856-.856-1.284a43.535 43.535 0 0 0-.428-1.189s-.903 1.427-1.474 2.283c-.57.855-.57 2.187-.19 2.9.38.713.238 1.569-.047 2.757-.286 1.189.095 2.996 1.426 3.709 1.331.713 2.948 1.283 3.66 1.949.714.666 2.378 1.284 4.518.808 2.14-.475 4.85-2.662 5.324-4.136 0 0 1.237-1.379 1-3.185-.239-1.807-1.095-1.76-1.475-3.138-.38-1.38.823-1.04-.19-3.406 0 0-.452-1.127-2.168-1.939-1.102-.521-.352-2.88-2.3-5.258C11.974.393 10.106 0 10.106 0zm-.326 11.753c1.373-.01 2.14 1.376 2.14 1.376 1.78-.216 3.533.152 4.374.94.531.498.965.956 1.181 1.834-.1-.034-.282-.08-.52-.076a1.875 1.875 0 0 0-.902.256s-.99-.333-1.52.097c-.55.446-.604.968-.576 1.586 0 0 .476-1.628 1.68-1.208 0 0-.852 1.5.472 1.762 0 0 .313-.002.57-.158.247-.148.44-.424.361-.92 0 0-.16-.494-.577-.794 0 0 .378-.267 1.096-.104.035.238.056.503.063.802.047 2.057-1.326 3.402-1.326 3.402v.927c-.167.334-.445.445-1.39.445-.946 0-1.076-.26-1.076-.26v-.185c-1.446.186-2.234 0-2.234 0 0 .167 0 .195-.14.334-.138.139-1 .148-1.65.055-.649-.092-.574-.407-.574-.407v-.946a3.663 3.663 0 0 1-1.354-1.873l-.61.012c-.334 0-.477-.428-.477-.428v-1.379c0-.428.428-.523.428-.523l.594-.045c.201-1.426 1.688-2.522 1.688-2.522l-.083-1.966c.125-.023.246-.033.362-.034zm-.548 4.716a.352.352 0 0 0-.353.352.352.352 0 0 0 .353.352.352.352 0 0 0 .352-.352.352.352 0 0 0-.352-.352zm6.85.301s.124.031.39.469c.257.425-.182.635-.182.635-.827.063-.208-1.104-.208-1.104z" }) + ] + } + ); +}); + +export { SiFireflyiii as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.cjs new file mode 100644 index 000000000..2ebecb11b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7139"; +const SiFirefox = React__namespace.forwardRef(function SiFirefox2({ title = "Firefox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.452 3.445a11.002 11.002 0 00-2.482-1.908C16.944.997 15.098.093 12.477.032c-.734-.017-1.457.03-2.174.144-.72.114-1.398.292-2.118.56-1.017.377-1.996.975-2.574 1.554.583-.349 1.476-.733 2.55-.992a10.083 10.083 0 013.729-.167c2.341.34 4.178 1.381 5.48 2.625a8.066 8.066 0 011.298 1.587c1.468 2.382 1.33 5.376.184 7.142-.85 1.312-2.67 2.544-4.37 2.53-.583-.023-1.438-.152-2.25-.566-2.629-1.343-3.021-4.688-1.118-6.306-.632-.136-1.82.13-2.646 1.363-.742 1.107-.7 2.816-.242 4.028a6.473 6.473 0 01-.59-1.895 7.695 7.695 0 01.416-3.845A8.212 8.212 0 019.45 5.399c.896-1.069 1.908-1.72 2.75-2.005-.54-.471-1.411-.738-2.421-.767C8.31 2.583 6.327 3.061 4.7 4.41a8.148 8.148 0 00-1.976 2.414c-.455.836-.691 1.659-.697 1.678.122-1.445.704-2.994 1.248-4.055-.79.413-1.827 1.668-2.41 3.042C.095 9.37-.2 11.608.14 13.989c.966 5.668 5.9 9.982 11.843 9.982C18.62 23.971 24 18.591 24 11.956a11.93 11.93 0 00-3.548-8.511z" }) + ] + } + ); +}); + +exports.default = SiFirefox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.d.ts new file mode 100644 index 000000000..2f0f30622 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7139"; +declare const SiFirefox: IconType; +export { SiFirefox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.mjs new file mode 100644 index 000000000..831f05534 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7139"; +const SiFirefox = React.forwardRef(function SiFirefox2({ title = "Firefox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.452 3.445a11.002 11.002 0 00-2.482-1.908C16.944.997 15.098.093 12.477.032c-.734-.017-1.457.03-2.174.144-.72.114-1.398.292-2.118.56-1.017.377-1.996.975-2.574 1.554.583-.349 1.476-.733 2.55-.992a10.083 10.083 0 013.729-.167c2.341.34 4.178 1.381 5.48 2.625a8.066 8.066 0 011.298 1.587c1.468 2.382 1.33 5.376.184 7.142-.85 1.312-2.67 2.544-4.37 2.53-.583-.023-1.438-.152-2.25-.566-2.629-1.343-3.021-4.688-1.118-6.306-.632-.136-1.82.13-2.646 1.363-.742 1.107-.7 2.816-.242 4.028a6.473 6.473 0 01-.59-1.895 7.695 7.695 0 01.416-3.845A8.212 8.212 0 019.45 5.399c.896-1.069 1.908-1.72 2.75-2.005-.54-.471-1.411-.738-2.421-.767C8.31 2.583 6.327 3.061 4.7 4.41a8.148 8.148 0 00-1.976 2.414c-.455.836-.691 1.659-.697 1.678.122-1.445.704-2.994 1.248-4.055-.79.413-1.827 1.668-2.41 3.042C.095 9.37-.2 11.608.14 13.989c.966 5.668 5.9 9.982 11.843 9.982C18.62 23.971 24 18.591 24 11.956a11.93 11.93 0 00-3.548-8.511z" }) + ] + } + ); +}); + +export { SiFirefox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.cjs new file mode 100644 index 000000000..caac5ed54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7139"; +const SiFirefoxbrowser = React__namespace.forwardRef(function SiFirefoxbrowser2({ title = "Firefox Browser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.824 7.287c.008 0 .004 0 0 0zm-2.8-1.4c.006 0 .003 0 0 0zm16.754 2.161c-.505-1.215-1.53-2.528-2.333-2.943.654 1.283 1.033 2.57 1.177 3.53l.002.02c-1.314-3.278-3.544-4.6-5.366-7.477-.091-.147-.184-.292-.273-.446a3.545 3.545 0 01-.13-.24 2.118 2.118 0 01-.172-.46.03.03 0 00-.027-.03.038.038 0 00-.021 0l-.006.001a.037.037 0 00-.01.005L15.624 0c-2.585 1.515-3.657 4.168-3.932 5.856a6.197 6.197 0 00-2.305.587.297.297 0 00-.147.37c.057.162.24.24.396.17a5.622 5.622 0 012.008-.523l.067-.005a5.847 5.847 0 011.957.222l.095.03a5.816 5.816 0 01.616.228c.08.036.16.073.238.112l.107.055a5.835 5.835 0 01.368.211 5.953 5.953 0 012.034 2.104c-.62-.437-1.733-.868-2.803-.681 4.183 2.09 3.06 9.292-2.737 9.02a5.164 5.164 0 01-1.513-.292 4.42 4.42 0 01-.538-.232c-1.42-.735-2.593-2.121-2.74-3.806 0 0 .537-2 3.845-2 .357 0 1.38-.998 1.398-1.287-.005-.095-2.029-.9-2.817-1.677-.422-.416-.622-.616-.8-.767a3.47 3.47 0 00-.301-.227 5.388 5.388 0 01-.032-2.842c-1.195.544-2.124 1.403-2.8 2.163h-.006c-.46-.584-.428-2.51-.402-2.913-.006-.025-.343.176-.389.206-.406.29-.787.616-1.136.974-.397.403-.76.839-1.085 1.303a9.816 9.816 0 00-1.562 3.52c-.003.013-.11.487-.19 1.073-.013.09-.026.181-.037.272a7.8 7.8 0 00-.069.667l-.002.034-.023.387-.001.06C.386 18.795 5.593 24 12.016 24c5.752 0 10.527-4.176 11.463-9.661.02-.149.035-.298.052-.448.232-1.994-.025-4.09-.753-5.844z" }) + ] + } + ); +}); + +exports.default = SiFirefoxbrowser; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.d.ts new file mode 100644 index 000000000..d3a25278b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7139"; +declare const SiFirefoxbrowser: IconType; +export { SiFirefoxbrowser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.mjs new file mode 100644 index 000000000..e1211c65e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirefoxbrowser.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7139"; +const SiFirefoxbrowser = React.forwardRef(function SiFirefoxbrowser2({ title = "Firefox Browser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.824 7.287c.008 0 .004 0 0 0zm-2.8-1.4c.006 0 .003 0 0 0zm16.754 2.161c-.505-1.215-1.53-2.528-2.333-2.943.654 1.283 1.033 2.57 1.177 3.53l.002.02c-1.314-3.278-3.544-4.6-5.366-7.477-.091-.147-.184-.292-.273-.446a3.545 3.545 0 01-.13-.24 2.118 2.118 0 01-.172-.46.03.03 0 00-.027-.03.038.038 0 00-.021 0l-.006.001a.037.037 0 00-.01.005L15.624 0c-2.585 1.515-3.657 4.168-3.932 5.856a6.197 6.197 0 00-2.305.587.297.297 0 00-.147.37c.057.162.24.24.396.17a5.622 5.622 0 012.008-.523l.067-.005a5.847 5.847 0 011.957.222l.095.03a5.816 5.816 0 01.616.228c.08.036.16.073.238.112l.107.055a5.835 5.835 0 01.368.211 5.953 5.953 0 012.034 2.104c-.62-.437-1.733-.868-2.803-.681 4.183 2.09 3.06 9.292-2.737 9.02a5.164 5.164 0 01-1.513-.292 4.42 4.42 0 01-.538-.232c-1.42-.735-2.593-2.121-2.74-3.806 0 0 .537-2 3.845-2 .357 0 1.38-.998 1.398-1.287-.005-.095-2.029-.9-2.817-1.677-.422-.416-.622-.616-.8-.767a3.47 3.47 0 00-.301-.227 5.388 5.388 0 01-.032-2.842c-1.195.544-2.124 1.403-2.8 2.163h-.006c-.46-.584-.428-2.51-.402-2.913-.006-.025-.343.176-.389.206-.406.29-.787.616-1.136.974-.397.403-.76.839-1.085 1.303a9.816 9.816 0 00-1.562 3.52c-.003.013-.11.487-.19 1.073-.013.09-.026.181-.037.272a7.8 7.8 0 00-.069.667l-.002.034-.023.387-.001.06C.386 18.795 5.593 24 12.016 24c5.752 0 10.527-4.176 11.463-9.661.02-.149.035-.298.052-.448.232-1.994-.025-4.09-.753-5.844z" }) + ] + } + ); +}); + +export { SiFirefoxbrowser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.cjs new file mode 100644 index 000000000..5302da284 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB844E"; +const SiFireship = React__namespace.forwardRef(function SiFireship2({ title = "Fireship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.245.05c-.042-.035-.14-.035-.22-.05-.041.06-.098.113-.113.166a3.114 3.114 0 0 0-.064.416 15.42 15.42 0 0 1-3.742 8.693c-1.258 1.474-2.51 2.982-3.44 4.585-2.293 3.972-.249 8.031 4.763 9.804.163.06.348.087.76.181-1.701-1.534-2.57-3.1-2.28-4.944.284-1.765 1.172-3.337 2.525-4.77a1.043 1.043 0 0 1 .099.549c-.068 1.572.453 2.96 2.063 4.055.741.507 1.41 1.081 2.079 1.644.684.57.884 1.263.688 2.015-.09.366-.227.725-.378 1.171 1.145-.11 2.203-.264 2.914-.9.68-.604 1.183-1.322 1.909-2.154.049.707.15 1.255.113 1.8-.045.566-.22 1.126-.336 1.689 3.477-.525 6.546-3.934 6.682-7.427.098-2.543-2.071-6.274-3.893-6.637l.302.688c.631 1.391.817 2.8.416 4.256-.4 1.448-2.426 3.073-4.214 3.277.06-.144.087-.28.17-.39 1.927-2.596 1.946-5.31.854-8.084C15.44 5.98 12.632 2.88 9.245.053Z" }) + ] + } + ); +}); + +exports.default = SiFireship; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.d.ts new file mode 100644 index 000000000..3d10b039d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB844E"; +declare const SiFireship: IconType; +export { SiFireship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.mjs new file mode 100644 index 000000000..7712c7c58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFireship.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB844E"; +const SiFireship = React.forwardRef(function SiFireship2({ title = "Fireship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.245.05c-.042-.035-.14-.035-.22-.05-.041.06-.098.113-.113.166a3.114 3.114 0 0 0-.064.416 15.42 15.42 0 0 1-3.742 8.693c-1.258 1.474-2.51 2.982-3.44 4.585-2.293 3.972-.249 8.031 4.763 9.804.163.06.348.087.76.181-1.701-1.534-2.57-3.1-2.28-4.944.284-1.765 1.172-3.337 2.525-4.77a1.043 1.043 0 0 1 .099.549c-.068 1.572.453 2.96 2.063 4.055.741.507 1.41 1.081 2.079 1.644.684.57.884 1.263.688 2.015-.09.366-.227.725-.378 1.171 1.145-.11 2.203-.264 2.914-.9.68-.604 1.183-1.322 1.909-2.154.049.707.15 1.255.113 1.8-.045.566-.22 1.126-.336 1.689 3.477-.525 6.546-3.934 6.682-7.427.098-2.543-2.071-6.274-3.893-6.637l.302.688c.631 1.391.817 2.8.416 4.256-.4 1.448-2.426 3.073-4.214 3.277.06-.144.087-.28.17-.39 1.927-2.596 1.946-5.31.854-8.084C15.44 5.98 12.632 2.88 9.245.053Z" }) + ] + } + ); +}); + +export { SiFireship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.cjs new file mode 100644 index 000000000..bda73924e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C8332D"; +const SiFirewalla = React__namespace.forwardRef(function SiFirewalla2({ title = "Firewalla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.156 0c-3.602 4.89.391 7.768 2.61 11.893-.751 1.527-1.745 3.08-2.733 4.836l-.072.025c-.849-.983-1.99-1.85-3.033-2.967 2.606-5.783-.809-9.812-.809-9.812a12.555 12.555 0 0 0-1.916 2.021c-2.296 3.06-2.027 5.897-2.027 5.897C4.176 19.07 12.125 24 12.125 24a21.738 21.738 0 0 0 2.139-1.594c5.864-4.974 5.564-10.513 5.564-10.513.122-4.308-1.622-5.905-4.82-9.014A83.864 83.864 0 0 1 12.156 0zm.281 17.37zm.397.687a4.298 4.298 0 0 1 .14.328 4.463 4.463 0 0 0-.14-.328zm.266.718a4.289 4.289 0 0 1 .14.791c.024.286.023.588-.006.91a5.23 5.23 0 0 0 .006-.91 4.513 4.513 0 0 0-.14-.79z" }) + ] + } + ); +}); + +exports.default = SiFirewalla; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.d.ts new file mode 100644 index 000000000..e88cd4e44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C8332D"; +declare const SiFirewalla: IconType; +export { SiFirewalla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.mjs new file mode 100644 index 000000000..8b7121f78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirewalla.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C8332D"; +const SiFirewalla = React.forwardRef(function SiFirewalla2({ title = "Firewalla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.156 0c-3.602 4.89.391 7.768 2.61 11.893-.751 1.527-1.745 3.08-2.733 4.836l-.072.025c-.849-.983-1.99-1.85-3.033-2.967 2.606-5.783-.809-9.812-.809-9.812a12.555 12.555 0 0 0-1.916 2.021c-2.296 3.06-2.027 5.897-2.027 5.897C4.176 19.07 12.125 24 12.125 24a21.738 21.738 0 0 0 2.139-1.594c5.864-4.974 5.564-10.513 5.564-10.513.122-4.308-1.622-5.905-4.82-9.014A83.864 83.864 0 0 1 12.156 0zm.281 17.37zm.397.687a4.298 4.298 0 0 1 .14.328 4.463 4.463 0 0 0-.14-.328zm.266.718a4.289 4.289 0 0 1 .14.791c.024.286.023.588-.006.91a5.23 5.23 0 0 0 .006-.91 4.513 4.513 0 0 0-.14-.79z" }) + ] + } + ); +}); + +export { SiFirewalla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.cjs new file mode 100644 index 000000000..de5b47988 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066B3"; +const SiFirst = React__namespace.forwardRef(function SiFirst2({ title = "FIRST", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.318 20.734c.608.18 1.239.274 1.873.278.834 0 1.472-.189 2.02-.585.609-.432 1.001-1.098 1.001-1.702a1.33 1.33 0 0 0-.49-1.035c-.245-.198-.5-.352-1.02-.595l-.422-.198c-.137-.072-.206-.144-.206-.225 0-.216.275-.378.647-.378.28 0 .612.081 1.247.289l.438-1.626a5.305 5.305 0 0 0-1.4-.194c-1.746 0-3.09.954-3.09 2.188 0 .649.432 1.108 1.51 1.612.51.234.599.297.599.46 0 .242-.265.396-.696.396-.383 0-.873-.117-1.54-.36h-.001Zm-4.526-5.818.138-.018c.686-.08 1.54-.135 2.01-.135.785 0 1.393.09 1.854.28.589.242.942.774.942 1.413 0 .55-.187 1.072-.54 1.477-.304.35-.578.522-1.147.693l-.138.045c.06.045.079.063.108.09.167.19.667 1.162 1.09 2.125h-2.355a32.79 32.79 0 0 0-.795-2.053l-.47 2.053h-2.08Zm-2.697-.036h2.138L6.84 20.886H4.702Zm-4.702 0h4.139l-.39 1.594H3.158l-.196.837h2.07l-.36 1.477H2.628l-.49 2.098H0Zm17.419 0H24l-.363 1.739h-1.54l-1.02 4.267H18.94l1.02-4.267h-1.67zm-8.441 2.864c.687 0 1.168-.406 1.168-.982 0-.306-.226-.46-.667-.46a1.46 1.46 0 0 0-.334.037l-.324 1.387c.07.009.079.018.157.018zm10.89-9.72L16 2.996 14.232 4.84c-.73-.283-1.88-.51-2.753-.51-1.271 0-2.581.434-3.496 1L5.516 2.992v-.003h-.002l-.002-.001v.002l-.882.092-1.904 10.427.886.092v-.003l4.019-1.758.019.018c.956.843 2.39 1.38 3.996 1.38 1.113 0 2.144-.259 2.991-.699l1.615 1.551 5.01-5.216v-.849ZM3.651 13.38 5.486 3.166l2.618 2.48.82.777.626.594 1.488 1.418v.647l.632.607-1.975.9a3.582 3.582 0 0 1-1.138-.745l-.02-.021 1.516-.708-3.564-3.32-.07-.07-.086.46-.842 4.387-.13.682.223-.096.001-.005 1.145-.491c.18.377.436.728.755 1.042zm12.601-.14-1.068-1.026a4.28 4.28 0 0 0 1.05-1l.01-.016L18.842 8.5l.077-.083.34-.353-3.173-3.046-.713.742-.787.82-.536.558-1.01 1.052-.087.092.295.282 1.367 1.333c-.3.283-.68.526-1.109.704l-.903-.865-.886-.851-.602-.571 1.432-1.492.72-.75.781-.814 1.953-2.034 5.143 4.922zm-1.728-1.652a5.57 5.57 0 0 1-.604.263c-.72.266-1.497.4-2.307.4-1.15 0-2.238-.272-3.147-.79a4.517 4.517 0 0 1-1.254-1.03 3.556 3.556 0 0 1-.332-.472 3.001 3.001 0 0 1-.419-1.491c0-.55.158-1.08.47-1.577l.836.846a2.09 2.09 0 0 0-.025 1.08c.057.233.155.46.291.676.108.172.239.335.39.485.415.415.978.74 1.628.943a5.244 5.244 0 0 0 1.562.232c.438 0 .87-.052 1.287-.155.236-.06.465-.134.678-.223.493-.205.926-.49 1.253-.826a2.44 2.44 0 0 0 .652-1.131c.04-.166.06-.332.06-.493 0-.466-.175-.993-.46-1.396l.71-.741c.61.634.97 1.48.97 2.28 0 .147-.013.3-.038.456-.11.671-.466 1.31-1.03 1.848-.33.316-.724.59-1.17.816zm-2.534-1.59.853.82a5.183 5.183 0 0 1-2.923-.14l1.892-.85zm4.925-1.083c.023-.152.037-.302.037-.447 0-.853-.387-1.752-1.035-2.422l.169-.176 2.628 2.524-2.176 2.266c.23-.538.38-1.2.38-1.676a.992.992 0 0 0-.003-.069zm-10.6.04.004.018a.79.79 0 0 0-.004.063c0 .251.154.848.216 1.086l-.817.35.78-4.06.32.316a3.133 3.133 0 0 0-.54 1.74c0 .158.013.317.04.487zm8.415.827-1.24-1.209 1.05-1.094c.374.311.65.684.797 1.093-.009.067-.02.134-.037.201-.088.363-.28.701-.57 1.009zm-6.509-.348-.029-.04a2.109 2.109 0 0 1-.267-.62c-.006-.023-.008-.045-.013-.068a2.21 2.21 0 0 1 .283-.61l.994.982zm4.317-2.83-1.53 1.594-1.343-1.274c.626-.266 1.3-.4 1.98-.396.308 0 .607.027.893.076zm-1.101-2.075c.83 0 1.938.213 2.643.47l-.032.033-.782.814-.002.003a5.113 5.113 0 0 0-1.618-.257c-1.01 0-1.927.28-2.609.737l-.01-.01-.82-.777-.073-.069c.896-.541 2.06-.944 3.303-.944Zm1.881 16.205c.608.18 1.239.274 1.873.278.834 0 1.472-.189 2.02-.585.609-.432 1.001-1.098 1.001-1.702a1.33 1.33 0 0 0-.49-1.035c-.245-.198-.5-.352-1.02-.595l-.422-.198c-.137-.072-.206-.144-.206-.225 0-.216.275-.378.647-.378.28 0 .612.081 1.247.289l.438-1.626a5.305 5.305 0 0 0-1.4-.194c-1.746 0-3.09.954-3.09 2.188 0 .649.432 1.108 1.51 1.612.51.234.599.297.599.46 0 .242-.265.396-.696.396-.383 0-.873-.117-1.54-.36h-.001Zm-4.526-5.818.138-.018c.686-.08 1.54-.135 2.01-.135.785 0 1.393.09 1.854.28.589.242.942.774.942 1.413 0 .55-.187 1.072-.54 1.477-.304.35-.578.522-1.147.693l-.138.045c.06.045.079.063.108.09.167.19.667 1.162 1.09 2.125h-2.355a32.79 32.79 0 0 0-.795-2.053l-.47 2.053h-2.08Zm-2.697-.036h2.138L6.84 20.886H4.702Zm-4.702 0h4.139l-.39 1.594H3.158l-.196.837h2.07l-.36 1.477H2.628l-.49 2.098H0Zm17.419 0H24l-.363 1.739h-1.54l-1.02 4.267H18.94l1.02-4.267h-1.67zm-8.441 2.864c.687 0 1.168-.406 1.168-.982 0-.306-.226-.46-.667-.46a1.46 1.46 0 0 0-.334.037l-.324 1.387c.07.009.079.018.157.018zm10.89-9.72L16 2.996 14.232 4.84c-.73-.283-1.88-.51-2.753-.51-1.271 0-2.581.434-3.496 1L5.516 2.992v-.003h-.002l-.002-.001v.002l-.882.092-1.904 10.427.886.092v-.003l4.019-1.758.019.018c.956.843 2.39 1.38 3.996 1.38 1.113 0 2.144-.259 2.991-.699l1.615 1.551 5.01-5.216v-.849ZM3.651 13.38 5.486 3.166l2.618 2.48.82.777.626.594 1.488 1.418v.647l.632.607-1.975.9a3.582 3.582 0 0 1-1.138-.745l-.02-.021 1.516-.708-3.564-3.32-.07-.07-.086.46-.842 4.387-.13.682.223-.096.001-.005 1.145-.491c.18.377.436.728.755 1.042zm12.601-.14-1.068-1.026a4.28 4.28 0 0 0 1.05-1l.01-.016L18.842 8.5l.077-.083.34-.353-3.173-3.046-.713.742-.787.82-.536.558-1.01 1.052-.087.092.295.282 1.367 1.333c-.3.283-.68.526-1.109.704l-.903-.865-.886-.851-.602-.571 1.432-1.492.72-.75.781-.814 1.953-2.034 5.143 4.922zm-1.728-1.652a5.57 5.57 0 0 1-.604.263c-.72.266-1.497.4-2.307.4-1.15 0-2.238-.272-3.147-.79a4.517 4.517 0 0 1-1.254-1.03 3.556 3.556 0 0 1-.332-.472 3.001 3.001 0 0 1-.419-1.491c0-.55.158-1.08.47-1.577l.836.846a2.09 2.09 0 0 0-.025 1.08c.057.233.155.46.291.676.108.172.239.335.39.485.415.415.978.74 1.628.943a5.244 5.244 0 0 0 1.562.232c.438 0 .87-.052 1.287-.155.236-.06.465-.134.678-.223.493-.205.926-.49 1.253-.826a2.44 2.44 0 0 0 .652-1.131c.04-.166.06-.332.06-.493 0-.466-.175-.993-.46-1.396l.71-.741c.61.634.97 1.48.97 2.28 0 .147-.013.3-.038.456-.11.671-.466 1.31-1.03 1.848-.33.316-.724.59-1.17.816zm-2.534-1.59.853.82a5.183 5.183 0 0 1-2.923-.14l1.892-.85zm4.925-1.083c.023-.152.037-.302.037-.447 0-.853-.387-1.752-1.035-2.422l.169-.176 2.628 2.524-2.176 2.266c.23-.538.38-1.2.38-1.676a.992.992 0 0 0-.003-.069zm-10.6.04.004.018a.79.79 0 0 0-.004.063c0 .251.154.848.216 1.086l-.817.35.78-4.06.32.316a3.133 3.133 0 0 0-.54 1.74c0 .158.013.317.04.487zm8.415.827-1.24-1.209 1.05-1.094c.374.311.65.684.797 1.093-.009.067-.02.134-.037.201-.088.363-.28.701-.57 1.009zm-6.509-.348-.029-.04a2.109 2.109 0 0 1-.267-.62c-.006-.023-.008-.045-.013-.068a2.21 2.21 0 0 1 .283-.61l.994.982zm4.317-2.83-1.53 1.594-1.343-1.274c.626-.266 1.3-.4 1.98-.396.308 0 .607.027.893.076zm-1.101-2.075c.83 0 1.938.213 2.643.47l-.032.033-.782.814-.002.003a5.113 5.113 0 0 0-1.618-.257c-1.01 0-1.927.28-2.609.737l-.01-.01-.82-.777-.073-.069c.896-.541 2.06-.944 3.303-.944Z" }) + ] + } + ); +}); + +exports.default = SiFirst; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.d.ts new file mode 100644 index 000000000..6d882b29d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066B3"; +declare const SiFirst: IconType; +export { SiFirst as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.mjs new file mode 100644 index 000000000..8e4c6cfb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFirst.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066B3"; +const SiFirst = React.forwardRef(function SiFirst2({ title = "FIRST", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.318 20.734c.608.18 1.239.274 1.873.278.834 0 1.472-.189 2.02-.585.609-.432 1.001-1.098 1.001-1.702a1.33 1.33 0 0 0-.49-1.035c-.245-.198-.5-.352-1.02-.595l-.422-.198c-.137-.072-.206-.144-.206-.225 0-.216.275-.378.647-.378.28 0 .612.081 1.247.289l.438-1.626a5.305 5.305 0 0 0-1.4-.194c-1.746 0-3.09.954-3.09 2.188 0 .649.432 1.108 1.51 1.612.51.234.599.297.599.46 0 .242-.265.396-.696.396-.383 0-.873-.117-1.54-.36h-.001Zm-4.526-5.818.138-.018c.686-.08 1.54-.135 2.01-.135.785 0 1.393.09 1.854.28.589.242.942.774.942 1.413 0 .55-.187 1.072-.54 1.477-.304.35-.578.522-1.147.693l-.138.045c.06.045.079.063.108.09.167.19.667 1.162 1.09 2.125h-2.355a32.79 32.79 0 0 0-.795-2.053l-.47 2.053h-2.08Zm-2.697-.036h2.138L6.84 20.886H4.702Zm-4.702 0h4.139l-.39 1.594H3.158l-.196.837h2.07l-.36 1.477H2.628l-.49 2.098H0Zm17.419 0H24l-.363 1.739h-1.54l-1.02 4.267H18.94l1.02-4.267h-1.67zm-8.441 2.864c.687 0 1.168-.406 1.168-.982 0-.306-.226-.46-.667-.46a1.46 1.46 0 0 0-.334.037l-.324 1.387c.07.009.079.018.157.018zm10.89-9.72L16 2.996 14.232 4.84c-.73-.283-1.88-.51-2.753-.51-1.271 0-2.581.434-3.496 1L5.516 2.992v-.003h-.002l-.002-.001v.002l-.882.092-1.904 10.427.886.092v-.003l4.019-1.758.019.018c.956.843 2.39 1.38 3.996 1.38 1.113 0 2.144-.259 2.991-.699l1.615 1.551 5.01-5.216v-.849ZM3.651 13.38 5.486 3.166l2.618 2.48.82.777.626.594 1.488 1.418v.647l.632.607-1.975.9a3.582 3.582 0 0 1-1.138-.745l-.02-.021 1.516-.708-3.564-3.32-.07-.07-.086.46-.842 4.387-.13.682.223-.096.001-.005 1.145-.491c.18.377.436.728.755 1.042zm12.601-.14-1.068-1.026a4.28 4.28 0 0 0 1.05-1l.01-.016L18.842 8.5l.077-.083.34-.353-3.173-3.046-.713.742-.787.82-.536.558-1.01 1.052-.087.092.295.282 1.367 1.333c-.3.283-.68.526-1.109.704l-.903-.865-.886-.851-.602-.571 1.432-1.492.72-.75.781-.814 1.953-2.034 5.143 4.922zm-1.728-1.652a5.57 5.57 0 0 1-.604.263c-.72.266-1.497.4-2.307.4-1.15 0-2.238-.272-3.147-.79a4.517 4.517 0 0 1-1.254-1.03 3.556 3.556 0 0 1-.332-.472 3.001 3.001 0 0 1-.419-1.491c0-.55.158-1.08.47-1.577l.836.846a2.09 2.09 0 0 0-.025 1.08c.057.233.155.46.291.676.108.172.239.335.39.485.415.415.978.74 1.628.943a5.244 5.244 0 0 0 1.562.232c.438 0 .87-.052 1.287-.155.236-.06.465-.134.678-.223.493-.205.926-.49 1.253-.826a2.44 2.44 0 0 0 .652-1.131c.04-.166.06-.332.06-.493 0-.466-.175-.993-.46-1.396l.71-.741c.61.634.97 1.48.97 2.28 0 .147-.013.3-.038.456-.11.671-.466 1.31-1.03 1.848-.33.316-.724.59-1.17.816zm-2.534-1.59.853.82a5.183 5.183 0 0 1-2.923-.14l1.892-.85zm4.925-1.083c.023-.152.037-.302.037-.447 0-.853-.387-1.752-1.035-2.422l.169-.176 2.628 2.524-2.176 2.266c.23-.538.38-1.2.38-1.676a.992.992 0 0 0-.003-.069zm-10.6.04.004.018a.79.79 0 0 0-.004.063c0 .251.154.848.216 1.086l-.817.35.78-4.06.32.316a3.133 3.133 0 0 0-.54 1.74c0 .158.013.317.04.487zm8.415.827-1.24-1.209 1.05-1.094c.374.311.65.684.797 1.093-.009.067-.02.134-.037.201-.088.363-.28.701-.57 1.009zm-6.509-.348-.029-.04a2.109 2.109 0 0 1-.267-.62c-.006-.023-.008-.045-.013-.068a2.21 2.21 0 0 1 .283-.61l.994.982zm4.317-2.83-1.53 1.594-1.343-1.274c.626-.266 1.3-.4 1.98-.396.308 0 .607.027.893.076zm-1.101-2.075c.83 0 1.938.213 2.643.47l-.032.033-.782.814-.002.003a5.113 5.113 0 0 0-1.618-.257c-1.01 0-1.927.28-2.609.737l-.01-.01-.82-.777-.073-.069c.896-.541 2.06-.944 3.303-.944Zm1.881 16.205c.608.18 1.239.274 1.873.278.834 0 1.472-.189 2.02-.585.609-.432 1.001-1.098 1.001-1.702a1.33 1.33 0 0 0-.49-1.035c-.245-.198-.5-.352-1.02-.595l-.422-.198c-.137-.072-.206-.144-.206-.225 0-.216.275-.378.647-.378.28 0 .612.081 1.247.289l.438-1.626a5.305 5.305 0 0 0-1.4-.194c-1.746 0-3.09.954-3.09 2.188 0 .649.432 1.108 1.51 1.612.51.234.599.297.599.46 0 .242-.265.396-.696.396-.383 0-.873-.117-1.54-.36h-.001Zm-4.526-5.818.138-.018c.686-.08 1.54-.135 2.01-.135.785 0 1.393.09 1.854.28.589.242.942.774.942 1.413 0 .55-.187 1.072-.54 1.477-.304.35-.578.522-1.147.693l-.138.045c.06.045.079.063.108.09.167.19.667 1.162 1.09 2.125h-2.355a32.79 32.79 0 0 0-.795-2.053l-.47 2.053h-2.08Zm-2.697-.036h2.138L6.84 20.886H4.702Zm-4.702 0h4.139l-.39 1.594H3.158l-.196.837h2.07l-.36 1.477H2.628l-.49 2.098H0Zm17.419 0H24l-.363 1.739h-1.54l-1.02 4.267H18.94l1.02-4.267h-1.67zm-8.441 2.864c.687 0 1.168-.406 1.168-.982 0-.306-.226-.46-.667-.46a1.46 1.46 0 0 0-.334.037l-.324 1.387c.07.009.079.018.157.018zm10.89-9.72L16 2.996 14.232 4.84c-.73-.283-1.88-.51-2.753-.51-1.271 0-2.581.434-3.496 1L5.516 2.992v-.003h-.002l-.002-.001v.002l-.882.092-1.904 10.427.886.092v-.003l4.019-1.758.019.018c.956.843 2.39 1.38 3.996 1.38 1.113 0 2.144-.259 2.991-.699l1.615 1.551 5.01-5.216v-.849ZM3.651 13.38 5.486 3.166l2.618 2.48.82.777.626.594 1.488 1.418v.647l.632.607-1.975.9a3.582 3.582 0 0 1-1.138-.745l-.02-.021 1.516-.708-3.564-3.32-.07-.07-.086.46-.842 4.387-.13.682.223-.096.001-.005 1.145-.491c.18.377.436.728.755 1.042zm12.601-.14-1.068-1.026a4.28 4.28 0 0 0 1.05-1l.01-.016L18.842 8.5l.077-.083.34-.353-3.173-3.046-.713.742-.787.82-.536.558-1.01 1.052-.087.092.295.282 1.367 1.333c-.3.283-.68.526-1.109.704l-.903-.865-.886-.851-.602-.571 1.432-1.492.72-.75.781-.814 1.953-2.034 5.143 4.922zm-1.728-1.652a5.57 5.57 0 0 1-.604.263c-.72.266-1.497.4-2.307.4-1.15 0-2.238-.272-3.147-.79a4.517 4.517 0 0 1-1.254-1.03 3.556 3.556 0 0 1-.332-.472 3.001 3.001 0 0 1-.419-1.491c0-.55.158-1.08.47-1.577l.836.846a2.09 2.09 0 0 0-.025 1.08c.057.233.155.46.291.676.108.172.239.335.39.485.415.415.978.74 1.628.943a5.244 5.244 0 0 0 1.562.232c.438 0 .87-.052 1.287-.155.236-.06.465-.134.678-.223.493-.205.926-.49 1.253-.826a2.44 2.44 0 0 0 .652-1.131c.04-.166.06-.332.06-.493 0-.466-.175-.993-.46-1.396l.71-.741c.61.634.97 1.48.97 2.28 0 .147-.013.3-.038.456-.11.671-.466 1.31-1.03 1.848-.33.316-.724.59-1.17.816zm-2.534-1.59.853.82a5.183 5.183 0 0 1-2.923-.14l1.892-.85zm4.925-1.083c.023-.152.037-.302.037-.447 0-.853-.387-1.752-1.035-2.422l.169-.176 2.628 2.524-2.176 2.266c.23-.538.38-1.2.38-1.676a.992.992 0 0 0-.003-.069zm-10.6.04.004.018a.79.79 0 0 0-.004.063c0 .251.154.848.216 1.086l-.817.35.78-4.06.32.316a3.133 3.133 0 0 0-.54 1.74c0 .158.013.317.04.487zm8.415.827-1.24-1.209 1.05-1.094c.374.311.65.684.797 1.093-.009.067-.02.134-.037.201-.088.363-.28.701-.57 1.009zm-6.509-.348-.029-.04a2.109 2.109 0 0 1-.267-.62c-.006-.023-.008-.045-.013-.068a2.21 2.21 0 0 1 .283-.61l.994.982zm4.317-2.83-1.53 1.594-1.343-1.274c.626-.266 1.3-.4 1.98-.396.308 0 .607.027.893.076zm-1.101-2.075c.83 0 1.938.213 2.643.47l-.032.033-.782.814-.002.003a5.113 5.113 0 0 0-1.618-.257c-1.01 0-1.927.28-2.609.737l-.01-.01-.82-.777-.073-.069c.896-.541 2.06-.944 3.303-.944Z" }) + ] + } + ); +}); + +export { SiFirst as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.cjs new file mode 100644 index 000000000..ea7800ff3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9B90E8"; +const SiFishaudio = React__namespace.forwardRef(function SiFishaudio2({ title = "Fish Audio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.12 12.13v.62c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-.62c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44m-1.77.37v1.74c0 .24.2.44.44.44.25 0 .44-.2.44-.44V12.5c0-.24-.19-.44-.44-.44-.24 0-.44.2-.44.44m-1.76.43v1.99q0 .09.03.17.04.08.1.14.07.07.15.1t.17.03c.24 0 .44-.19.44-.44v-1.99c0-.25-.2-.44-.44-.44q-.09 0-.17.03t-.15.1q-.06.06-.1.14-.03.08-.03.17m-1.76.35v1.97c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-1.97c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44m-1.77.32v1.65c0 .25.2.45.44.45s.44-.2.44-.45V13.6c0-.25-.2-.45-.44-.45s-.44.2-.44.45m-1.76 1.26v.3q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3v-.3q-.01-.17-.14-.3-.13-.11-.31-.12-.17.01-.3.12-.13.13-.14.3M0 9.38v.19c0 .24.2.44.44.44.25 0 .44-.2.44-.44v-.19c0-.25-.19-.44-.44-.44-.24 0-.44.19-.44.44m1.82.15v.81c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-.81q0-.18-.13-.31t-.31-.13-.31.13-.13.31m1.81-.24v3.39q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V9.29q-.01-.17-.14-.3-.13-.11-.31-.12-.17.01-.3.12-.13.13-.14.3m1.83-.35v.22c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-.22q0-.18-.13-.31T5.9 8.5t-.31.13-.13.31m0 2.94v2.34c0 .25.19.44.44.44.24 0 .44-.19.44-.44v-2.34c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44m15.89-3.32V11c0 .25.2.44.44.44.25 0 .44-.19.44-.44V8.56c0-.24-.19-.44-.44-.44-.24 0-.44.2-.44.44m-1.76-.39v3.28q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V8.17c0-.25-.2-.44-.44-.44q-.09 0-.17.03t-.15.1q-.06.06-.1.14-.03.08-.03.17M17.83 8v3.9c0 .24.19.44.44.44.24 0 .44-.2.44-.44V8c0-.25-.2-.44-.44-.44-.25 0-.44.19-.44.44m-1.77.11v3.96c0 .25.2.44.44.44s.44-.19.44-.44V8.11c0-.25-.2-.44-.44-.44s-.44.19-.44.44m-1.76.27v5.03q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V8.38c0-.25-.2-.44-.45-.44-.24 0-.44.19-.44.44m-1.8.46v5.75q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V8.84c0-.25-.2-.44-.45-.44-.24 0-.44.19-.44.44m-1.76.76v5.52c0 .24.2.44.44.44.25 0 .44-.2.44-.44V9.6c0-.24-.19-.44-.44-.44-.24 0-.44.2-.44.44m-1.77 1.01v4.77q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3v-4.77q-.01-.17-.14-.3-.13-.11-.31-.12-.17.01-.3.12-.13.13-.14.3M23.12 9.6v1.22c0 .24.19.44.44.44.24 0 .44-.2.44-.44V9.6c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44M7.21 11.32V16c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-4.68q0-.18-.13-.31t-.31-.13-.31.13-.13.31" }) + ] + } + ); +}); + +exports.default = SiFishaudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.d.ts new file mode 100644 index 000000000..4cb9cdc9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9B90E8"; +declare const SiFishaudio: IconType; +export { SiFishaudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.mjs new file mode 100644 index 000000000..fd9b3e7c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFishaudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9B90E8"; +const SiFishaudio = React.forwardRef(function SiFishaudio2({ title = "Fish Audio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.12 12.13v.62c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-.62c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44m-1.77.37v1.74c0 .24.2.44.44.44.25 0 .44-.2.44-.44V12.5c0-.24-.19-.44-.44-.44-.24 0-.44.2-.44.44m-1.76.43v1.99q0 .09.03.17.04.08.1.14.07.07.15.1t.17.03c.24 0 .44-.19.44-.44v-1.99c0-.25-.2-.44-.44-.44q-.09 0-.17.03t-.15.1q-.06.06-.1.14-.03.08-.03.17m-1.76.35v1.97c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-1.97c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44m-1.77.32v1.65c0 .25.2.45.44.45s.44-.2.44-.45V13.6c0-.25-.2-.45-.44-.45s-.44.2-.44.45m-1.76 1.26v.3q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3v-.3q-.01-.17-.14-.3-.13-.11-.31-.12-.17.01-.3.12-.13.13-.14.3M0 9.38v.19c0 .24.2.44.44.44.25 0 .44-.2.44-.44v-.19c0-.25-.19-.44-.44-.44-.24 0-.44.19-.44.44m1.82.15v.81c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-.81q0-.18-.13-.31t-.31-.13-.31.13-.13.31m1.81-.24v3.39q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V9.29q-.01-.17-.14-.3-.13-.11-.31-.12-.17.01-.3.12-.13.13-.14.3m1.83-.35v.22c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-.22q0-.18-.13-.31T5.9 8.5t-.31.13-.13.31m0 2.94v2.34c0 .25.19.44.44.44.24 0 .44-.19.44-.44v-2.34c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44m15.89-3.32V11c0 .25.2.44.44.44.25 0 .44-.19.44-.44V8.56c0-.24-.19-.44-.44-.44-.24 0-.44.2-.44.44m-1.76-.39v3.28q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V8.17c0-.25-.2-.44-.44-.44q-.09 0-.17.03t-.15.1q-.06.06-.1.14-.03.08-.03.17M17.83 8v3.9c0 .24.19.44.44.44.24 0 .44-.2.44-.44V8c0-.25-.2-.44-.44-.44-.25 0-.44.19-.44.44m-1.77.11v3.96c0 .25.2.44.44.44s.44-.19.44-.44V8.11c0-.25-.2-.44-.44-.44s-.44.19-.44.44m-1.76.27v5.03q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V8.38c0-.25-.2-.44-.45-.44-.24 0-.44.19-.44.44m-1.8.46v5.75q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3V8.84c0-.25-.2-.44-.45-.44-.24 0-.44.19-.44.44m-1.76.76v5.52c0 .24.2.44.44.44.25 0 .44-.2.44-.44V9.6c0-.24-.19-.44-.44-.44-.24 0-.44.2-.44.44m-1.77 1.01v4.77q.01.17.14.3.13.11.3.12.18-.01.31-.12.13-.13.14-.3v-4.77q-.01-.17-.14-.3-.13-.11-.31-.12-.17.01-.3.12-.13.13-.14.3M23.12 9.6v1.22c0 .24.19.44.44.44.24 0 .44-.2.44-.44V9.6c0-.24-.2-.44-.44-.44-.25 0-.44.2-.44.44M7.21 11.32V16c0 .24.19.44.44.44.24 0 .44-.2.44-.44v-4.68q0-.18-.13-.31t-.31-.13-.31.13-.13.31" }) + ] + } + ); +}); + +export { SiFishaudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.cjs new file mode 100644 index 000000000..ba9f2c17e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34C534"; +const SiFishshell = React__namespace.forwardRef(function SiFishshell2({ title = "fish shell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.164 9.228-3.016 2.688v.527l3.016 2.688v-1.228l-1.936-1.723 1.936-1.724V9.228m-6.658.046v1.208l1.905 1.696-1.905 1.695v1.209l2.968-2.645v-.518l-2.968-2.645M9.781 7.847a6.519 6.519 0 0 0-2.038-.335c-.672 0-1.349.112-2.03.335a9.23 9.23 0 0 0-2.088 1.017v.723c.69-.4 1.377-.7 2.06-.897a7.388 7.388 0 0 1 2.058-.296c.684 0 1.368.098 2.052.296a9.452 9.452 0 0 1 2.075.897v-.723a9.229 9.229 0 0 0-2.09-1.017m.014 7.78a7.371 7.371 0 0 1-2.052.296 7.388 7.388 0 0 1-2.057-.296 9.18 9.18 0 0 1-2.061-.897v.723a9.228 9.228 0 0 0 2.088 1.017 6.492 6.492 0 0 0 2.03.335c.678 0 1.357-.112 2.038-.335a9.227 9.227 0 0 0 2.089-1.017v-.723c-.7.4-1.391.7-2.075.897m.602-11.23h-.51L7.28 6.92h1.19l1.672-1.62 1.671 1.62h1.191l-2.607-2.525m-2.965 13.68v-.824H6.427v.825l.786 1.527h.614l-.395-1.527M4.127 10.95v1.216H5.13V10.95H4.127m-1.16-1.695L0 11.901v.518l2.967 2.645v-1.208L1.063 12.16l1.904-1.695V9.256m20.68 3.28c-.235-.3-.574-.509-1.017-.626.395-.103.696-.278.902-.525.206-.247.31-.556.31-.926 0-.546-.197-.984-.59-1.314-.393-.33-.919-.495-1.575-.495-.22 0-.473.025-.758.073-.284.048-.61.12-.974.217v.84c.314-.12.613-.21.9-.27a4.05 4.05 0 0 1 .832-.091c.403 0 .714.093.933.278.218.185.328.451.328.798 0 .328-.118.584-.353.768-.235.184-.562.276-.98.276h-.697v.75h.696c.458 0 .821.116 1.09.346.268.23.402.542.402.934 0 .425-.134.75-.402.976-.269.226-.653.339-1.153.339a3.55 3.55 0 0 1-.89-.117 4.395 4.395 0 0 1-.91-.358v.909a6.1 6.1 0 0 0 .95.249c.323.057.639.085.95.085.738 0 1.315-.177 1.733-.53.417-.355.626-.842.626-1.463 0-.449-.118-.823-.353-1.123" }) + ] + } + ); +}); + +exports.default = SiFishshell; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.d.ts new file mode 100644 index 000000000..0839f4d6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34C534"; +declare const SiFishshell: IconType; +export { SiFishshell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.mjs new file mode 100644 index 000000000..a75837665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFishshell.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34C534"; +const SiFishshell = React.forwardRef(function SiFishshell2({ title = "fish shell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.164 9.228-3.016 2.688v.527l3.016 2.688v-1.228l-1.936-1.723 1.936-1.724V9.228m-6.658.046v1.208l1.905 1.696-1.905 1.695v1.209l2.968-2.645v-.518l-2.968-2.645M9.781 7.847a6.519 6.519 0 0 0-2.038-.335c-.672 0-1.349.112-2.03.335a9.23 9.23 0 0 0-2.088 1.017v.723c.69-.4 1.377-.7 2.06-.897a7.388 7.388 0 0 1 2.058-.296c.684 0 1.368.098 2.052.296a9.452 9.452 0 0 1 2.075.897v-.723a9.229 9.229 0 0 0-2.09-1.017m.014 7.78a7.371 7.371 0 0 1-2.052.296 7.388 7.388 0 0 1-2.057-.296 9.18 9.18 0 0 1-2.061-.897v.723a9.228 9.228 0 0 0 2.088 1.017 6.492 6.492 0 0 0 2.03.335c.678 0 1.357-.112 2.038-.335a9.227 9.227 0 0 0 2.089-1.017v-.723c-.7.4-1.391.7-2.075.897m.602-11.23h-.51L7.28 6.92h1.19l1.672-1.62 1.671 1.62h1.191l-2.607-2.525m-2.965 13.68v-.824H6.427v.825l.786 1.527h.614l-.395-1.527M4.127 10.95v1.216H5.13V10.95H4.127m-1.16-1.695L0 11.901v.518l2.967 2.645v-1.208L1.063 12.16l1.904-1.695V9.256m20.68 3.28c-.235-.3-.574-.509-1.017-.626.395-.103.696-.278.902-.525.206-.247.31-.556.31-.926 0-.546-.197-.984-.59-1.314-.393-.33-.919-.495-1.575-.495-.22 0-.473.025-.758.073-.284.048-.61.12-.974.217v.84c.314-.12.613-.21.9-.27a4.05 4.05 0 0 1 .832-.091c.403 0 .714.093.933.278.218.185.328.451.328.798 0 .328-.118.584-.353.768-.235.184-.562.276-.98.276h-.697v.75h.696c.458 0 .821.116 1.09.346.268.23.402.542.402.934 0 .425-.134.75-.402.976-.269.226-.653.339-1.153.339a3.55 3.55 0 0 1-.89-.117 4.395 4.395 0 0 1-.91-.358v.909a6.1 6.1 0 0 0 .95.249c.323.057.639.085.95.085.738 0 1.315-.177 1.733-.53.417-.355.626-.842.626-1.463 0-.449-.118-.823-.353-1.123" }) + ] + } + ); +}); + +export { SiFishshell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.cjs new file mode 100644 index 000000000..c1bebb8a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B0B9"; +const SiFitbit = React__namespace.forwardRef(function SiFitbit2({ title = "Fitbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.298 1.825c0 .976-.81 1.785-1.786 1.785-.972 0-1.784-.81-1.784-1.785 0-.973.813-1.785 1.784-1.785.976 0 1.786.813 1.786 1.785zm-1.786 3.243c-1.052 0-1.863.81-1.863 1.866 0 1.053.81 1.865 1.865 1.865 1.053 0 1.865-.811 1.865-1.865s-.825-1.866-1.875-1.866h.008zm0 5.029c-1.052 0-1.945.891-1.945 1.945s.894 1.945 1.947 1.945 1.946-.891 1.946-1.945-.894-1.945-1.946-1.945h-.002zm0 5.107c-1.052 0-1.863.81-1.863 1.864s.81 1.866 1.865 1.866c1.053 0 1.865-.811 1.865-1.866 0-.972-.825-1.864-1.875-1.864h.008zm0 5.191c-.972 0-1.784.809-1.784 1.784 0 .97.813 1.781 1.784 1.781.977 0 1.786-.809 1.786-1.784 0-.973-.81-1.781-1.786-1.781zM16.46 4.823c-1.136 0-2.108.977-2.108 2.111 0 1.134.973 2.107 2.108 2.107 1.135 0 2.106-.975 2.106-2.107 0-1.135-.972-2.109-2.106-2.109v-.002zm0 5.03c-1.216 0-2.19.973-2.19 2.19 0 1.216.975 2.187 2.19 2.187 1.215 0 2.189-.971 2.189-2.189 0-1.216-.974-2.188-2.189-2.188zm0 5.108c-1.136 0-2.108.976-2.108 2.107 0 1.135.973 2.109 2.108 2.109 1.135 0 2.106-.976 2.106-2.109s-.971-2.107-2.106-2.107zm5.106-5.353c-1.296 0-2.43 1.055-2.43 2.434 0 1.297 1.051 2.433 2.43 2.433 1.381 0 2.434-1.065 2.434-2.444-.082-1.382-1.135-2.431-2.434-2.431v.008zM6.486 5.312c-.892 0-1.62.73-1.62 1.623 0 .891.729 1.62 1.62 1.62.893 0 1.619-.729 1.619-1.62 0-.893-.727-1.62-1.619-1.62v-.003zm0 5.027c-.973 0-1.703.729-1.703 1.703 0 .975.721 1.703 1.695 1.703s1.695-.73 1.695-1.703c0-.975-.735-1.703-1.71-1.703h.023zm0 5.107c-.892 0-1.62.731-1.62 1.62 0 .895.729 1.623 1.62 1.623.893 0 1.619-.735 1.619-1.635s-.727-1.62-1.619-1.62v.012zm-5.025-4.863c-.813 0-1.461.646-1.461 1.459 0 .81.648 1.459 1.46 1.459.81 0 1.459-.648 1.459-1.459s-.648-1.459-1.458-1.459z" }) + ] + } + ); +}); + +exports.default = SiFitbit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.d.ts new file mode 100644 index 000000000..80f0f455e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B0B9"; +declare const SiFitbit: IconType; +export { SiFitbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.mjs new file mode 100644 index 000000000..30d840b93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFitbit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B0B9"; +const SiFitbit = React.forwardRef(function SiFitbit2({ title = "Fitbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.298 1.825c0 .976-.81 1.785-1.786 1.785-.972 0-1.784-.81-1.784-1.785 0-.973.813-1.785 1.784-1.785.976 0 1.786.813 1.786 1.785zm-1.786 3.243c-1.052 0-1.863.81-1.863 1.866 0 1.053.81 1.865 1.865 1.865 1.053 0 1.865-.811 1.865-1.865s-.825-1.866-1.875-1.866h.008zm0 5.029c-1.052 0-1.945.891-1.945 1.945s.894 1.945 1.947 1.945 1.946-.891 1.946-1.945-.894-1.945-1.946-1.945h-.002zm0 5.107c-1.052 0-1.863.81-1.863 1.864s.81 1.866 1.865 1.866c1.053 0 1.865-.811 1.865-1.866 0-.972-.825-1.864-1.875-1.864h.008zm0 5.191c-.972 0-1.784.809-1.784 1.784 0 .97.813 1.781 1.784 1.781.977 0 1.786-.809 1.786-1.784 0-.973-.81-1.781-1.786-1.781zM16.46 4.823c-1.136 0-2.108.977-2.108 2.111 0 1.134.973 2.107 2.108 2.107 1.135 0 2.106-.975 2.106-2.107 0-1.135-.972-2.109-2.106-2.109v-.002zm0 5.03c-1.216 0-2.19.973-2.19 2.19 0 1.216.975 2.187 2.19 2.187 1.215 0 2.189-.971 2.189-2.189 0-1.216-.974-2.188-2.189-2.188zm0 5.108c-1.136 0-2.108.976-2.108 2.107 0 1.135.973 2.109 2.108 2.109 1.135 0 2.106-.976 2.106-2.109s-.971-2.107-2.106-2.107zm5.106-5.353c-1.296 0-2.43 1.055-2.43 2.434 0 1.297 1.051 2.433 2.43 2.433 1.381 0 2.434-1.065 2.434-2.444-.082-1.382-1.135-2.431-2.434-2.431v.008zM6.486 5.312c-.892 0-1.62.73-1.62 1.623 0 .891.729 1.62 1.62 1.62.893 0 1.619-.729 1.619-1.62 0-.893-.727-1.62-1.619-1.62v-.003zm0 5.027c-.973 0-1.703.729-1.703 1.703 0 .975.721 1.703 1.695 1.703s1.695-.73 1.695-1.703c0-.975-.735-1.703-1.71-1.703h.023zm0 5.107c-.892 0-1.62.731-1.62 1.62 0 .895.729 1.623 1.62 1.623.893 0 1.619-.735 1.619-1.635s-.727-1.62-1.619-1.62v.012zm-5.025-4.863c-.813 0-1.461.646-1.461 1.459 0 .81.648 1.459 1.46 1.459.81 0 1.459-.648 1.459-1.459s-.648-1.459-1.458-1.459z" }) + ] + } + ); +}); + +export { SiFitbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.cjs new file mode 100644 index 000000000..68529c5cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F40552"; +const SiFivem = React__namespace.forwardRef(function SiFivem2({ title = "FiveM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.4 24h-5.225c-.117 0-.455-1.127-1.026-3.375-1.982-6.909-3.124-10.946-3.417-12.12l3.37-3.325h.099c.454 1.42 2.554 7.676 6.299 18.768ZM12.342 7.084h-.048a3.382 3.385 0 0 1-.098-.492v-.098a102.619 102.715 0 0 1 3.272-3.275c.13.196.196.356.196.491v.05a140.694 140.826 0 0 1-3.322 3.324ZM5.994 10.9h-.05c.67-2.12 1.076-3.209 1.223-3.275L14.492.343c.08 0 .258.524.533 1.562zm1.37-4.014h-.05C8.813 2.342 9.612.048 9.71 0h4.495v.05a664.971 664.971 0 0 1-6.841 6.839Zm-2.69 7.874h-.05c.166-.798.554-1.418 1.174-1.855a312.918 313.213 0 0 1 5.71-5.717h.05c-.117.672-.375 1.175-.781 1.52zM1.598 24l-.098-.05c1.399-4.172 2.148-6.322 2.248-6.45l6.74-6.694v.05C10.232 11.88 8.974 16.263 6.73 24Z" }) + ] + } + ); +}); + +exports.default = SiFivem; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.d.ts new file mode 100644 index 000000000..c842da440 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F40552"; +declare const SiFivem: IconType; +export { SiFivem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.mjs new file mode 100644 index 000000000..b813e1ea4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFivem.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F40552"; +const SiFivem = React.forwardRef(function SiFivem2({ title = "FiveM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.4 24h-5.225c-.117 0-.455-1.127-1.026-3.375-1.982-6.909-3.124-10.946-3.417-12.12l3.37-3.325h.099c.454 1.42 2.554 7.676 6.299 18.768ZM12.342 7.084h-.048a3.382 3.385 0 0 1-.098-.492v-.098a102.619 102.715 0 0 1 3.272-3.275c.13.196.196.356.196.491v.05a140.694 140.826 0 0 1-3.322 3.324ZM5.994 10.9h-.05c.67-2.12 1.076-3.209 1.223-3.275L14.492.343c.08 0 .258.524.533 1.562zm1.37-4.014h-.05C8.813 2.342 9.612.048 9.71 0h4.495v.05a664.971 664.971 0 0 1-6.841 6.839Zm-2.69 7.874h-.05c.166-.798.554-1.418 1.174-1.855a312.918 313.213 0 0 1 5.71-5.717h.05c-.117.672-.375 1.175-.781 1.52zM1.598 24l-.098-.05c1.399-4.172 2.148-6.322 2.248-6.45l6.74-6.694v.05C10.232 11.88 8.974 16.263 6.73 24Z" }) + ] + } + ); +}); + +export { SiFivem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.cjs new file mode 100644 index 000000000..c2155b6cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1DBF73"; +const SiFiverr = React__namespace.forwardRef(function SiFiverr2({ title = "Fiverr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.004 15.588a.995.995 0 1 0 .002-1.99.995.995 0 0 0-.002 1.99zm-.996-3.705h-.85c-.546 0-.84.41-.84 1.092v2.466h-1.61v-3.558h-.684c-.547 0-.84.41-.84 1.092v2.466h-1.61v-4.874h1.61v.74c.264-.574.626-.74 1.163-.74h1.972v.74c.264-.574.625-.74 1.162-.74h.527v1.316zm-6.786 1.501h-3.359c.088.546.43.858 1.006.858.43 0 .732-.175.83-.487l1.425.4c-.351.848-1.22 1.364-2.255 1.364-1.748 0-2.549-1.355-2.549-2.515 0-1.14.703-2.505 2.45-2.505 1.856 0 2.471 1.384 2.471 2.408 0 .224-.01.37-.02.477zm-1.562-.945c-.04-.42-.342-.81-.889-.81-.508 0-.81.225-.908.81h1.797zM7.508 15.44h1.416l1.767-4.874h-1.62l-.86 2.837-.878-2.837H5.72l1.787 4.874zm-6.6 0H2.51v-3.558h1.524v3.558h1.591v-4.874H2.51v-.302c0-.332.235-.536.606-.536h.918V8.412H2.85c-1.162 0-1.943.712-1.943 1.755v.4H0v1.316h.908v3.558z" }) + ] + } + ); +}); + +exports.default = SiFiverr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.d.ts new file mode 100644 index 000000000..3cb916b2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1DBF73"; +declare const SiFiverr: IconType; +export { SiFiverr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.mjs new file mode 100644 index 000000000..6aad6af9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFiverr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1DBF73"; +const SiFiverr = React.forwardRef(function SiFiverr2({ title = "Fiverr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.004 15.588a.995.995 0 1 0 .002-1.99.995.995 0 0 0-.002 1.99zm-.996-3.705h-.85c-.546 0-.84.41-.84 1.092v2.466h-1.61v-3.558h-.684c-.547 0-.84.41-.84 1.092v2.466h-1.61v-4.874h1.61v.74c.264-.574.626-.74 1.163-.74h1.972v.74c.264-.574.625-.74 1.162-.74h.527v1.316zm-6.786 1.501h-3.359c.088.546.43.858 1.006.858.43 0 .732-.175.83-.487l1.425.4c-.351.848-1.22 1.364-2.255 1.364-1.748 0-2.549-1.355-2.549-2.515 0-1.14.703-2.505 2.45-2.505 1.856 0 2.471 1.384 2.471 2.408 0 .224-.01.37-.02.477zm-1.562-.945c-.04-.42-.342-.81-.889-.81-.508 0-.81.225-.908.81h1.797zM7.508 15.44h1.416l1.767-4.874h-1.62l-.86 2.837-.878-2.837H5.72l1.787 4.874zm-6.6 0H2.51v-3.558h1.524v3.558h1.591v-4.874H2.51v-.302c0-.332.235-.536.606-.536h.918V8.412H2.85c-1.162 0-1.943.712-1.943 1.755v.4H0v1.316h.908v3.558z" }) + ] + } + ); +}); + +export { SiFiverr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.cjs new file mode 100644 index 000000000..46e1e75c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D672"; +const SiFizz = React__namespace.forwardRef(function SiFizz2({ title = "Fizz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.822 17.813h3.274v-7.228H5.822Zm4.298-7.228v2.841h2.107l-2.243 4.387h6.779v-2.824h-2.24l2.24-4.399h-6.644v-.005zm13.88 0h-6.762v2.841h2.241l-2.24 4.387h6.633v-2.824H21.76ZM6.633 6.966l-1.23 2.736a1.587 1.587 0 0 0-.955-.324c-.56 0-1.012.363-1.012 1.125v.038H5.13v2.858H3.43v4.414H0v-7.804c0-2.292 1.737-3.822 3.895-3.822 1.056 0 2.023.351 2.738.779z" }) + ] + } + ); +}); + +exports.default = SiFizz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.d.ts new file mode 100644 index 000000000..f46058e7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D672"; +declare const SiFizz: IconType; +export { SiFizz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.mjs new file mode 100644 index 000000000..45e0ff6d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFizz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D672"; +const SiFizz = React.forwardRef(function SiFizz2({ title = "Fizz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.822 17.813h3.274v-7.228H5.822Zm4.298-7.228v2.841h2.107l-2.243 4.387h6.779v-2.824h-2.24l2.24-4.399h-6.644v-.005zm13.88 0h-6.762v2.841h2.241l-2.24 4.387h6.633v-2.824H21.76ZM6.633 6.966l-1.23 2.736a1.587 1.587 0 0 0-.955-.324c-.56 0-1.012.363-1.012 1.125v.038H5.13v2.858H3.43v4.414H0v-7.804c0-2.292 1.737-3.822 3.895-3.822 1.056 0 2.023.351 2.738.779z" }) + ] + } + ); +}); + +export { SiFizz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.cjs new file mode 100644 index 000000000..89efe8225 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFlashforge = React__namespace.forwardRef(function SiFlashforge2({ title = "Flashforge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.025 12 11.98-12 11.97 12-11.97 12Zm14.544 2.672-2.574 2.584v5.916L23.177 11.97 11.995.76v5.136L9.402 8.53v6.123l5.157-5.196Z" }) + ] + } + ); +}); + +exports.default = SiFlashforge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.d.ts new file mode 100644 index 000000000..edcfdb3fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFlashforge: IconType; +export { SiFlashforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.mjs new file mode 100644 index 000000000..a1b52212e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlashforge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFlashforge = React.forwardRef(function SiFlashforge2({ title = "Flashforge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.025 12 11.98-12 11.97 12-11.97 12Zm14.544 2.672-2.574 2.584v5.916L23.177 11.97 11.995.76v5.136L9.402 8.53v6.123l5.157-5.196Z" }) + ] + } + ); +}); + +export { SiFlashforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.cjs new file mode 100644 index 000000000..8df0defac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3BABC3"; +const SiFlask = React__namespace.forwardRef(function SiFlask2({ title = "Flask", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.773 2.878c-.013 1.434.322 4.624.445 5.734l-8.558 3.83c-.56-.959-.98-2.304-1.237-3.38l-.06.027c-.205.09-.406.053-.494-.088l-.011-.018-.82-1.506c-.058-.105-.05-.252.024-.392a.78.78 0 0 1 .358-.331l9.824-4.207c.146-.064.299-.063.4.004.106.062.127.128.13.327Zm.68 7c.523 1.97.675 2.412.832 2.818l-7.263 3.7a19.35 19.35 0 0 1-1.81-2.83l8.24-3.689Zm12.432 8.786h.003c.283.402-.047.657-.153.698l-.947.37c.037.125.035.319-.217.414l-.736.287c-.229.09-.398-.059-.42-.2l-.025-.125c-4.427 1.784-7.94 1.685-10.696.647-1.981-.745-3.576-1.983-4.846-3.379l6.948-3.54c.721 1.431 1.586 2.454 2.509 3.178 2.086 1.638 4.415 1.712 5.793 1.563l-.047-.233c-.015-.077.007-.135.086-.165l.734-.288a.302.302 0 0 1 .342.086l.748-.288a.306.306 0 0 1 .341.086l.583.89Z" }) + ] + } + ); +}); + +exports.default = SiFlask; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.d.ts new file mode 100644 index 000000000..efe27b765 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3BABC3"; +declare const SiFlask: IconType; +export { SiFlask as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.mjs new file mode 100644 index 000000000..8cb8e679a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlask.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3BABC3"; +const SiFlask = React.forwardRef(function SiFlask2({ title = "Flask", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.773 2.878c-.013 1.434.322 4.624.445 5.734l-8.558 3.83c-.56-.959-.98-2.304-1.237-3.38l-.06.027c-.205.09-.406.053-.494-.088l-.011-.018-.82-1.506c-.058-.105-.05-.252.024-.392a.78.78 0 0 1 .358-.331l9.824-4.207c.146-.064.299-.063.4.004.106.062.127.128.13.327Zm.68 7c.523 1.97.675 2.412.832 2.818l-7.263 3.7a19.35 19.35 0 0 1-1.81-2.83l8.24-3.689Zm12.432 8.786h.003c.283.402-.047.657-.153.698l-.947.37c.037.125.035.319-.217.414l-.736.287c-.229.09-.398-.059-.42-.2l-.025-.125c-4.427 1.784-7.94 1.685-10.696.647-1.981-.745-3.576-1.983-4.846-3.379l6.948-3.54c.721 1.431 1.586 2.454 2.509 3.178 2.086 1.638 4.415 1.712 5.793 1.563l-.047-.233c-.015-.077.007-.135.086-.165l.734-.288a.302.302 0 0 1 .342.086l.748-.288a.306.306 0 0 1 .341.086l.583.89Z" }) + ] + } + ); +}); + +export { SiFlask as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.cjs new file mode 100644 index 000000000..c678637ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3481FE"; +const SiFlat = React__namespace.forwardRef(function SiFlat2({ title = "Flat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5455 17.4545v3.2728C6.5455 22.5348 5.0802 24 3.2727 24S0 22.5348 0 20.7273c0-1.8075 1.4652-3.2728 3.2727-3.2728Zm8.7272-8.7272V12c0 1.8075-1.4652 3.2727-3.2727 3.2727H5.4545c-1.8074 0-3.2727-1.4652-3.2727-3.2727 0-1.8075 1.4653-3.2727 3.2727-3.2727zM24 0v3.2727c0 1.8075-1.4652 3.2728-3.2727 3.2728H7.6363c-1.8074 0-3.2727-1.4653-3.2727-3.2728S5.829 0 7.6364 0Z" }) + ] + } + ); +}); + +exports.default = SiFlat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.d.ts new file mode 100644 index 000000000..027966820 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3481FE"; +declare const SiFlat: IconType; +export { SiFlat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.mjs new file mode 100644 index 000000000..69f1e9ba8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3481FE"; +const SiFlat = React.forwardRef(function SiFlat2({ title = "Flat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.5455 17.4545v3.2728C6.5455 22.5348 5.0802 24 3.2727 24S0 22.5348 0 20.7273c0-1.8075 1.4652-3.2728 3.2727-3.2728Zm8.7272-8.7272V12c0 1.8075-1.4652 3.2727-3.2727 3.2727H5.4545c-1.8074 0-3.2727-1.4652-3.2727-3.2727 0-1.8075 1.4653-3.2727 3.2727-3.2727zM24 0v3.2727c0 1.8075-1.4652 3.2728-3.2727 3.2728H7.6363c-1.8074 0-3.2727-1.4653-3.2727-3.2728S5.829 0 7.6364 0Z" }) + ] + } + ); +}); + +export { SiFlat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.cjs new file mode 100644 index 000000000..7e701667e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFlathub = React__namespace.forwardRef(function SiFlathub2({ title = "Flathub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.068 0a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 5.998-6 6 6 0 0 0-5.998-6Zm9.15.08a1.656 1.656 0 0 0-1.654 1.656v8.15a1.656 1.656 0 0 0 2.483 1.434l7.058-4.074a1.656 1.656 0 0 0 0-2.869l-1.044-.604-6.014-3.47a1.656 1.656 0 0 0-.828-.223Zm3.575 13.135a.815.815 0 0 0-.816.818v2.453h-2.454a.817.817 0 1 0 0 1.635h2.454v2.453a.817.817 0 1 0 1.635 0v-2.453h2.452a.817.817 0 1 0 0-1.635h-2.453v-2.453a.817.817 0 0 0-.818-.818zM2.865 13.5a2.794 2.794 0 0 0-2.799 2.8v4.9c0 1.55 1.248 2.8 2.8 2.8h4.9c1.55 0 2.8-1.25 2.8-2.8v-4.9c0-1.55-1.25-2.8-2.8-2.8Z" }) + ] + } + ); +}); + +exports.default = SiFlathub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.d.ts new file mode 100644 index 000000000..70b4a47cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFlathub: IconType; +export { SiFlathub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.mjs new file mode 100644 index 000000000..754a562f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlathub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFlathub = React.forwardRef(function SiFlathub2({ title = "Flathub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.068 0a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 5.998-6 6 6 0 0 0-5.998-6Zm9.15.08a1.656 1.656 0 0 0-1.654 1.656v8.15a1.656 1.656 0 0 0 2.483 1.434l7.058-4.074a1.656 1.656 0 0 0 0-2.869l-1.044-.604-6.014-3.47a1.656 1.656 0 0 0-.828-.223Zm3.575 13.135a.815.815 0 0 0-.816.818v2.453h-2.454a.817.817 0 1 0 0 1.635h2.454v2.453a.817.817 0 1 0 1.635 0v-2.453h2.452a.817.817 0 1 0 0-1.635h-2.453v-2.453a.817.817 0 0 0-.818-.818zM2.865 13.5a2.794 2.794 0 0 0-2.799 2.8v4.9c0 1.55 1.248 2.8 2.8 2.8h4.9c1.55 0 2.8-1.25 2.8-2.8v-4.9c0-1.55-1.25-2.8-2.8-2.8Z" }) + ] + } + ); +}); + +export { SiFlathub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.cjs new file mode 100644 index 000000000..99540563e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4A90D9"; +const SiFlatpak = React__namespace.forwardRef(function SiFlatpak2({ title = "Flatpak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.556 0-1.111.144-1.61.432l-7.603 4.39a3.217 3.217 0 0 0-1.61 2.788v8.78c0 1.151.612 2.212 1.61 2.788l7.603 4.39a3.217 3.217 0 0 0 3.22 0l7.603-4.39a3.217 3.217 0 0 0 1.61-2.788V7.61a3.217 3.217 0 0 0-1.61-2.788L13.61.432A3.218 3.218 0 0 0 12 0Zm0 2.358c.15 0 .299.039.431.115l7.604 4.39c.132.077.24.187.315.316L12 12v9.642a.863.863 0 0 1-.431-.116l-7.604-4.39a.866.866 0 0 1-.431-.746V7.61c0-.153.041-.302.116-.43L12 12Z" }) + ] + } + ); +}); + +exports.default = SiFlatpak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.d.ts new file mode 100644 index 000000000..f732c0f8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4A90D9"; +declare const SiFlatpak: IconType; +export { SiFlatpak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.mjs new file mode 100644 index 000000000..0fa150df6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlatpak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4A90D9"; +const SiFlatpak = React.forwardRef(function SiFlatpak2({ title = "Flatpak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.556 0-1.111.144-1.61.432l-7.603 4.39a3.217 3.217 0 0 0-1.61 2.788v8.78c0 1.151.612 2.212 1.61 2.788l7.603 4.39a3.217 3.217 0 0 0 3.22 0l7.603-4.39a3.217 3.217 0 0 0 1.61-2.788V7.61a3.217 3.217 0 0 0-1.61-2.788L13.61.432A3.218 3.218 0 0 0 12 0Zm0 2.358c.15 0 .299.039.431.115l7.604 4.39c.132.077.24.187.315.316L12 12v9.642a.863.863 0 0 1-.431-.116l-7.604-4.39a.866.866 0 0 1-.431-.746V7.61c0-.153.041-.302.116-.43L12 12Z" }) + ] + } + ); +}); + +export { SiFlatpak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.cjs new file mode 100644 index 000000000..a15e1d2c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0063DC"; +const SiFlickr = React__namespace.forwardRef(function SiFlickr2({ title = "Flickr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.334 6.666C2.3884 6.666 0 9.055 0 12c0 2.9456 2.3884 5.334 5.334 5.334 2.9456 0 5.332-2.3884 5.332-5.334 0-2.945-2.3864-5.334-5.332-5.334zm13.332 0c-2.9456 0-5.332 2.389-5.332 5.334 0 2.9456 2.3864 5.334 5.332 5.334C21.6116 17.334 24 14.9456 24 12c0-2.945-2.3884-5.334-5.334-5.334Z" }) + ] + } + ); +}); + +exports.default = SiFlickr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.d.ts new file mode 100644 index 000000000..6adfef5a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0063DC"; +declare const SiFlickr: IconType; +export { SiFlickr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.mjs new file mode 100644 index 000000000..591e8183d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlickr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0063DC"; +const SiFlickr = React.forwardRef(function SiFlickr2({ title = "Flickr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.334 6.666C2.3884 6.666 0 9.055 0 12c0 2.9456 2.3884 5.334 5.334 5.334 2.9456 0 5.332-2.3884 5.332-5.334 0-2.945-2.3864-5.334-5.332-5.334zm13.332 0c-2.9456 0-5.332 2.389-5.332 5.334 0 2.9456 2.3864 5.334 5.332 5.334C21.6116 17.334 24 14.9456 24 12c0-2.945-2.3884-5.334-5.334-5.334Z" }) + ] + } + ); +}); + +export { SiFlickr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.cjs new file mode 100644 index 000000000..0f0f6d640 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#19315B"; +const SiFlightaware = React__namespace.forwardRef(function SiFlightaware2({ title = "Flightaware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.178 12.905-1.064 2.519h-.47l1.37-3.22h.322l1.443 3.22h-.47zm10.837 1.5h-1.477c.011.204.079.362.203.481a.667.667 0 0 0 .481.181c.272 0 .527-.085.759-.255v.408c-.13.085-.255.147-.38.181a1.674 1.674 0 0 1-.44.057c-.233 0-.42-.046-.561-.148a1.052 1.052 0 0 1-.345-.39 1.21 1.21 0 0 1-.13-.566c0-.322.09-.583.271-.78.181-.205.419-.3.708-.3.277 0 .503.095.667.294.165.198.25.458.25.786v.051zm-1.472-.249h1.064a.614.614 0 0 0-.147-.39.482.482 0 0 0-.356-.136.518.518 0 0 0-.368.136.674.674 0 0 0-.193.39m-1.76-.843v.48l.023-.033c.204-.328.408-.487.606-.487.158 0 .322.08.492.238l-.22.368c-.148-.136-.284-.204-.403-.204-.135 0-.249.062-.35.192a.718.718 0 0 0-.147.459v1.103h-.42v-2.11h.42zm-1.131.843v.9c0 .073.022.107.073.107s.13-.04.238-.113v.25c-.096.061-.17.101-.226.124a.49.49 0 0 1-.181.034c-.182 0-.283-.068-.317-.21a.922.922 0 0 1-.566.21.503.503 0 0 1-.515-.515.51.51 0 0 1 .141-.357 1.02 1.02 0 0 1 .408-.249l.532-.181v-.113c0-.255-.125-.385-.38-.385-.226 0-.447.119-.662.35v-.452c.164-.187.397-.283.696-.283.227 0 .408.063.55.181.045.04.084.09.124.153a.491.491 0 0 1 .068.193c.011.056.017.18.017.356m-.408.849v-.623l-.277.108a.93.93 0 0 0-.3.17.3.3 0 0 0-.09.215c0 .085.028.158.084.215.057.056.13.085.215.085a.567.567 0 0 0 .368-.17m-1.771-1.692h.447l-.928 2.156h-.141l-.623-1.477-.611 1.477h-.142l-.933-2.156h.447l.554 1.284.532-1.284h.312l.537 1.284zm7.526-4.182c.006.017-.028.062-.056.096-.045.045-.176.198-.696.311-.52.114-1.177.232-1.223.244-.045.005-.135-.012-.186.141a765.16 765.16 0 0 0-.623 2.218l-.175.04-.198-2.162s-1.228.244-1.353.244l-.311.826-.158.017.033-.838s-.17-.028-.198-.034c-.01 0-.022 0-.028-.017 0-.01.006-.017.017-.022.023-.017.17-.108.17-.108l-.368-.752.153-.051.617.634c.113-.051 1.335-.323 1.335-.323l-.685-2.066.176-.033s1.358 1.663 1.466 1.782c.107.119.18.068.226.057.045-.012.696-.164 1.217-.272.52-.107.701-.017.763.006.034.011.085.045.085.062zm-12.908 6.293a.16.16 0 0 1-.084-.023.147.147 0 0 1-.04-.21c.006-.01.17-.26.498-.65a.146.146 0 0 1 .21-.017c.062.05.073.147.016.21-.317.373-.475.616-.48.622a.133.133 0 0 1-.12.068zm1.025-1.228a.136.136 0 0 1-.102-.04.145.145 0 0 1-.006-.21c.187-.192.38-.384.577-.565a.15.15 0 0 1 .21.005.15.15 0 0 1-.006.21c-.192.18-.385.368-.566.554a.134.134 0 0 1-.107.046zm1.171-1.081a.132.132 0 0 1-.113-.057.146.146 0 0 1 .023-.21c.209-.169.424-.339.639-.491a.147.147 0 0 1 .21.033.147.147 0 0 1-.035.21c-.209.153-.424.317-.622.486a.23.23 0 0 1-.102.029zm1.296-.945a.142.142 0 0 1-.125-.068.154.154 0 0 1 .046-.21c.226-.147.458-.288.69-.418a.148.148 0 0 1 .204.056.148.148 0 0 1-.057.204c-.226.13-.458.266-.679.407a.114.114 0 0 1-.079.029zm1.392-.781a.149.149 0 0 1-.068-.283c.243-.119.487-.232.736-.334.073-.034.164.006.198.08a.152.152 0 0 1-.08.197c-.243.102-.486.21-.718.323a.196.196 0 0 1-.068.017zm1.471-.617a.151.151 0 0 1-.141-.102.154.154 0 0 1 .09-.192c.255-.085.515-.17.77-.238a.151.151 0 0 1 .187.102.151.151 0 0 1-.102.187c-.255.068-.51.147-.753.232-.017.011-.034.011-.05.011zm-8.601 2.875.786-.77v.436h.663v.373H9.63v1.042c0 .243.102.362.3.362.147 0 .306-.051.47-.147v.39c-.158.09-.334.136-.52.136a.68.68 0 0 1-.476-.17.446.446 0 0 1-.096-.113.553.553 0 0 1-.062-.164 1.866 1.866 0 0 1-.029-.39v-.94h-.367v-.045zM6.666 12.22h.419v1.363a.814.814 0 0 1 .645-.316.674.674 0 0 1 .628.401c.057.125.08.312.08.555v1.205h-.42v-1.307a.599.599 0 0 0-.113-.373.357.357 0 0 0-.3-.142.492.492 0 0 0-.26.074 1.07 1.07 0 0 0-.266.237v1.517h-.418v-3.214zm-2.224 1.822c0-.226.085-.402.25-.532.163-.13.39-.198.673-.198h.871v.322h-.424a.705.705 0 0 1 .17.232c.033.068.05.148.05.238 0 .113-.034.22-.096.328a.628.628 0 0 1-.243.244c-.102.056-.26.102-.487.135-.158.023-.237.08-.237.165 0 .05.028.09.09.118.057.034.164.063.323.097.26.056.424.101.498.135.073.034.141.08.198.136a.512.512 0 0 1 .152.38.56.56 0 0 1-.266.48c-.175.12-.418.181-.713.181-.3 0-.543-.062-.718-.18a.554.554 0 0 1-.272-.482c0-.288.176-.47.526-.554-.141-.09-.209-.181-.209-.266 0-.068.028-.13.09-.181a.518.518 0 0 1 .244-.12c-.311-.146-.47-.367-.47-.678m.69 1.482a.591.591 0 0 0-.345.091c-.09.062-.135.136-.135.232 0 .22.198.328.588.328a.97.97 0 0 0 .43-.079c.102-.057.153-.13.153-.232 0-.096-.062-.181-.192-.238a1.067 1.067 0 0 0-.498-.102m.096-1.85c-.113 0-.21.04-.289.113a.377.377 0 0 0 0 .55c.08.073.176.107.3.107a.41.41 0 0 0 .294-.108.356.356 0 0 0 .12-.272.36.36 0 0 0-.12-.277.453.453 0 0 0-.305-.113M3.622 12.43c.068 0 .13.023.175.074.051.045.074.107.074.175a.235.235 0 0 1-.074.175.235.235 0 0 1-.175.074.232.232 0 0 1-.17-.074.235.235 0 0 1-.074-.175c0-.062.023-.119.074-.17a.219.219 0 0 1 .17-.079m-.204.883h.419v2.11h-.419zM2.269 12.22h.419v3.203h-.419zM0 12.22h1.709v.407H.453v.9h1.256v.402H.453v1.494H0Z" }) + ] + } + ); +}); + +exports.default = SiFlightaware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.d.ts new file mode 100644 index 000000000..6dbb0bb94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#19315B"; +declare const SiFlightaware: IconType; +export { SiFlightaware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.mjs new file mode 100644 index 000000000..7486a0805 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlightaware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#19315B"; +const SiFlightaware = React.forwardRef(function SiFlightaware2({ title = "Flightaware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.178 12.905-1.064 2.519h-.47l1.37-3.22h.322l1.443 3.22h-.47zm10.837 1.5h-1.477c.011.204.079.362.203.481a.667.667 0 0 0 .481.181c.272 0 .527-.085.759-.255v.408c-.13.085-.255.147-.38.181a1.674 1.674 0 0 1-.44.057c-.233 0-.42-.046-.561-.148a1.052 1.052 0 0 1-.345-.39 1.21 1.21 0 0 1-.13-.566c0-.322.09-.583.271-.78.181-.205.419-.3.708-.3.277 0 .503.095.667.294.165.198.25.458.25.786v.051zm-1.472-.249h1.064a.614.614 0 0 0-.147-.39.482.482 0 0 0-.356-.136.518.518 0 0 0-.368.136.674.674 0 0 0-.193.39m-1.76-.843v.48l.023-.033c.204-.328.408-.487.606-.487.158 0 .322.08.492.238l-.22.368c-.148-.136-.284-.204-.403-.204-.135 0-.249.062-.35.192a.718.718 0 0 0-.147.459v1.103h-.42v-2.11h.42zm-1.131.843v.9c0 .073.022.107.073.107s.13-.04.238-.113v.25c-.096.061-.17.101-.226.124a.49.49 0 0 1-.181.034c-.182 0-.283-.068-.317-.21a.922.922 0 0 1-.566.21.503.503 0 0 1-.515-.515.51.51 0 0 1 .141-.357 1.02 1.02 0 0 1 .408-.249l.532-.181v-.113c0-.255-.125-.385-.38-.385-.226 0-.447.119-.662.35v-.452c.164-.187.397-.283.696-.283.227 0 .408.063.55.181.045.04.084.09.124.153a.491.491 0 0 1 .068.193c.011.056.017.18.017.356m-.408.849v-.623l-.277.108a.93.93 0 0 0-.3.17.3.3 0 0 0-.09.215c0 .085.028.158.084.215.057.056.13.085.215.085a.567.567 0 0 0 .368-.17m-1.771-1.692h.447l-.928 2.156h-.141l-.623-1.477-.611 1.477h-.142l-.933-2.156h.447l.554 1.284.532-1.284h.312l.537 1.284zm7.526-4.182c.006.017-.028.062-.056.096-.045.045-.176.198-.696.311-.52.114-1.177.232-1.223.244-.045.005-.135-.012-.186.141a765.16 765.16 0 0 0-.623 2.218l-.175.04-.198-2.162s-1.228.244-1.353.244l-.311.826-.158.017.033-.838s-.17-.028-.198-.034c-.01 0-.022 0-.028-.017 0-.01.006-.017.017-.022.023-.017.17-.108.17-.108l-.368-.752.153-.051.617.634c.113-.051 1.335-.323 1.335-.323l-.685-2.066.176-.033s1.358 1.663 1.466 1.782c.107.119.18.068.226.057.045-.012.696-.164 1.217-.272.52-.107.701-.017.763.006.034.011.085.045.085.062zm-12.908 6.293a.16.16 0 0 1-.084-.023.147.147 0 0 1-.04-.21c.006-.01.17-.26.498-.65a.146.146 0 0 1 .21-.017c.062.05.073.147.016.21-.317.373-.475.616-.48.622a.133.133 0 0 1-.12.068zm1.025-1.228a.136.136 0 0 1-.102-.04.145.145 0 0 1-.006-.21c.187-.192.38-.384.577-.565a.15.15 0 0 1 .21.005.15.15 0 0 1-.006.21c-.192.18-.385.368-.566.554a.134.134 0 0 1-.107.046zm1.171-1.081a.132.132 0 0 1-.113-.057.146.146 0 0 1 .023-.21c.209-.169.424-.339.639-.491a.147.147 0 0 1 .21.033.147.147 0 0 1-.035.21c-.209.153-.424.317-.622.486a.23.23 0 0 1-.102.029zm1.296-.945a.142.142 0 0 1-.125-.068.154.154 0 0 1 .046-.21c.226-.147.458-.288.69-.418a.148.148 0 0 1 .204.056.148.148 0 0 1-.057.204c-.226.13-.458.266-.679.407a.114.114 0 0 1-.079.029zm1.392-.781a.149.149 0 0 1-.068-.283c.243-.119.487-.232.736-.334.073-.034.164.006.198.08a.152.152 0 0 1-.08.197c-.243.102-.486.21-.718.323a.196.196 0 0 1-.068.017zm1.471-.617a.151.151 0 0 1-.141-.102.154.154 0 0 1 .09-.192c.255-.085.515-.17.77-.238a.151.151 0 0 1 .187.102.151.151 0 0 1-.102.187c-.255.068-.51.147-.753.232-.017.011-.034.011-.05.011zm-8.601 2.875.786-.77v.436h.663v.373H9.63v1.042c0 .243.102.362.3.362.147 0 .306-.051.47-.147v.39c-.158.09-.334.136-.52.136a.68.68 0 0 1-.476-.17.446.446 0 0 1-.096-.113.553.553 0 0 1-.062-.164 1.866 1.866 0 0 1-.029-.39v-.94h-.367v-.045zM6.666 12.22h.419v1.363a.814.814 0 0 1 .645-.316.674.674 0 0 1 .628.401c.057.125.08.312.08.555v1.205h-.42v-1.307a.599.599 0 0 0-.113-.373.357.357 0 0 0-.3-.142.492.492 0 0 0-.26.074 1.07 1.07 0 0 0-.266.237v1.517h-.418v-3.214zm-2.224 1.822c0-.226.085-.402.25-.532.163-.13.39-.198.673-.198h.871v.322h-.424a.705.705 0 0 1 .17.232c.033.068.05.148.05.238 0 .113-.034.22-.096.328a.628.628 0 0 1-.243.244c-.102.056-.26.102-.487.135-.158.023-.237.08-.237.165 0 .05.028.09.09.118.057.034.164.063.323.097.26.056.424.101.498.135.073.034.141.08.198.136a.512.512 0 0 1 .152.38.56.56 0 0 1-.266.48c-.175.12-.418.181-.713.181-.3 0-.543-.062-.718-.18a.554.554 0 0 1-.272-.482c0-.288.176-.47.526-.554-.141-.09-.209-.181-.209-.266 0-.068.028-.13.09-.181a.518.518 0 0 1 .244-.12c-.311-.146-.47-.367-.47-.678m.69 1.482a.591.591 0 0 0-.345.091c-.09.062-.135.136-.135.232 0 .22.198.328.588.328a.97.97 0 0 0 .43-.079c.102-.057.153-.13.153-.232 0-.096-.062-.181-.192-.238a1.067 1.067 0 0 0-.498-.102m.096-1.85c-.113 0-.21.04-.289.113a.377.377 0 0 0 0 .55c.08.073.176.107.3.107a.41.41 0 0 0 .294-.108.356.356 0 0 0 .12-.272.36.36 0 0 0-.12-.277.453.453 0 0 0-.305-.113M3.622 12.43c.068 0 .13.023.175.074.051.045.074.107.074.175a.235.235 0 0 1-.074.175.235.235 0 0 1-.175.074.232.232 0 0 1-.17-.074.235.235 0 0 1-.074-.175c0-.062.023-.119.074-.17a.219.219 0 0 1 .17-.079m-.204.883h.419v2.11h-.419zM2.269 12.22h.419v3.203h-.419zM0 12.22h1.709v.407H.453v.9h1.256v.402H.453v1.494H0Z" }) + ] + } + ); +}); + +export { SiFlightaware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.cjs new file mode 100644 index 000000000..566ebfc41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E12828"; +const SiFlipboard = React__namespace.forwardRef(function SiFlipboard2({ title = "Flipboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm19.2 9.6h-4.8v4.8H9.6v4.8H4.8V4.8h14.4v4.8z" }) + ] + } + ); +}); + +exports.default = SiFlipboard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.d.ts new file mode 100644 index 000000000..440d74e31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E12828"; +declare const SiFlipboard: IconType; +export { SiFlipboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.mjs new file mode 100644 index 000000000..2592050ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlipboard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E12828"; +const SiFlipboard = React.forwardRef(function SiFlipboard2({ title = "Flipboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm19.2 9.6h-4.8v4.8H9.6v4.8H4.8V4.8h14.4v4.8z" }) + ] + } + ); +}); + +export { SiFlipboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.cjs new file mode 100644 index 000000000..94fe61dd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AEEF"; +const SiFloatplane = React__namespace.forwardRef(function SiFloatplane2({ title = "Floatplane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.948,20.162c-1.81,1.527-4.078,2.366-6.466,2.366c-2.682,0-5.19-1.047-7.088-2.933c-1.897-1.897-2.933-4.416-2.933-7.088 c0-2.399,0.84-4.667,2.366-6.466L2.911,4.874C1.101,6.902,0,9.585,0,12.518C0,18.864,5.136,24,11.482,24 c2.933,0,5.616-1.101,7.644-2.911L17.948,20.162z M8.331,2.988c1.003-0.327,2.061-0.502,3.151-0.502c2.682,0,5.19,1.047,7.088,2.933 c1.897,1.897,2.933,4.416,2.933,7.088c0,1.09-0.174,2.148-0.502,3.151l1.134,1.134c0.534-1.319,0.829-2.77,0.829-4.285 c0-6.346-5.136-11.482-11.482-11.482c-1.516,0-2.966,0.294-4.285,0.829L8.331,2.988z M9.683,6.444L3.446,0l-0.97,1.516 C2.388,1.657,2.399,1.843,2.508,1.974L7.916,8.92L9.683,6.444z M7.655,14.96l-2.508-1.886l-0.458,0.774 c-0.055,0.087-0.044,0.196,0.033,0.273l2.115,2.29L7.655,14.96z M12.158,9.007l-0.578-0.6l0.153-0.611 c0.065-0.273,0.087-0.491,0.065-0.622c-0.087-0.393-0.273-0.687-0.273-0.687l-5.474,5.866c0,0,0.371,0.36,0.905-0.055 c0.24-0.185,1.189-0.96,2.203-1.799l0.927,1.189L12.158,9.007z M17.501,14.263l0.153-0.611c0.055-0.207,0.087-0.382,0.065-0.502 c-0.065-0.393-0.218-0.687-0.218-0.687l-5.866,5.474c0,0,0.36,0.371,0.916,0c0.273-0.185,1.428-0.992,2.584-1.821l6.891,5.365 c0.131,0.109,0.316,0.12,0.458,0.033L24,20.543L17.501,14.263z M9.061,16.389c0.883-0.676,2.115-1.625,3.217-2.475l1.243,0.97 l2.039-2.475l-0.676-0.654l0.218-0.774c0.109-0.393,0.153-0.698,0.12-0.883c-0.109-0.567-0.36-0.981-0.36-0.981l-8.069,8.069 c0,0,0.251,0.207,0.774,0l2.279,2.104c0.076,0.065,0.185,0.076,0.273,0.033l0.774-0.458L9.061,16.389z" }) + ] + } + ); +}); + +exports.default = SiFloatplane; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.d.ts new file mode 100644 index 000000000..a6a078be0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AEEF"; +declare const SiFloatplane: IconType; +export { SiFloatplane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.mjs new file mode 100644 index 000000000..35e71285d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFloatplane.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AEEF"; +const SiFloatplane = React.forwardRef(function SiFloatplane2({ title = "Floatplane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.948,20.162c-1.81,1.527-4.078,2.366-6.466,2.366c-2.682,0-5.19-1.047-7.088-2.933c-1.897-1.897-2.933-4.416-2.933-7.088 c0-2.399,0.84-4.667,2.366-6.466L2.911,4.874C1.101,6.902,0,9.585,0,12.518C0,18.864,5.136,24,11.482,24 c2.933,0,5.616-1.101,7.644-2.911L17.948,20.162z M8.331,2.988c1.003-0.327,2.061-0.502,3.151-0.502c2.682,0,5.19,1.047,7.088,2.933 c1.897,1.897,2.933,4.416,2.933,7.088c0,1.09-0.174,2.148-0.502,3.151l1.134,1.134c0.534-1.319,0.829-2.77,0.829-4.285 c0-6.346-5.136-11.482-11.482-11.482c-1.516,0-2.966,0.294-4.285,0.829L8.331,2.988z M9.683,6.444L3.446,0l-0.97,1.516 C2.388,1.657,2.399,1.843,2.508,1.974L7.916,8.92L9.683,6.444z M7.655,14.96l-2.508-1.886l-0.458,0.774 c-0.055,0.087-0.044,0.196,0.033,0.273l2.115,2.29L7.655,14.96z M12.158,9.007l-0.578-0.6l0.153-0.611 c0.065-0.273,0.087-0.491,0.065-0.622c-0.087-0.393-0.273-0.687-0.273-0.687l-5.474,5.866c0,0,0.371,0.36,0.905-0.055 c0.24-0.185,1.189-0.96,2.203-1.799l0.927,1.189L12.158,9.007z M17.501,14.263l0.153-0.611c0.055-0.207,0.087-0.382,0.065-0.502 c-0.065-0.393-0.218-0.687-0.218-0.687l-5.866,5.474c0,0,0.36,0.371,0.916,0c0.273-0.185,1.428-0.992,2.584-1.821l6.891,5.365 c0.131,0.109,0.316,0.12,0.458,0.033L24,20.543L17.501,14.263z M9.061,16.389c0.883-0.676,2.115-1.625,3.217-2.475l1.243,0.97 l2.039-2.475l-0.676-0.654l0.218-0.774c0.109-0.393,0.153-0.698,0.12-0.883c-0.109-0.567-0.36-0.981-0.36-0.981l-8.069,8.069 c0,0,0.251,0.207,0.774,0l2.279,2.104c0.076,0.065,0.185,0.076,0.273,0.033l0.774-0.458L9.061,16.389z" }) + ] + } + ); +}); + +export { SiFloatplane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.cjs new file mode 100644 index 000000000..2b2e587e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiFlood = React__namespace.forwardRef(function SiFlood2({ title = "Flood", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.683 16.283c-1.233-.066-1.85-1.533-2.15-2.433-.266-.767-.666-2.117-.966-2.933-.35-.95-.45-1.017-.65-1.017-.417 0-.734 1.183-1.05 2.067-.667 1.833-1.167 3.85-2.934 3.85-1.533 0-2.216-1.184-2.7-1.884-.45-.666-.716-.816-1.133-.816-.533 0-.783.466-1.267 1.283-.283.467-.6.95-.966 1.267-.1.083-.934.733-1.717.633-.45-.067-.767-.333-.767-.783 0-.617.684-.734 1.067-.884.333-.116.733-.716.933-1.05.534-.916 1.217-2.116 2.75-2.116 1.35 0 2 .866 2.5 1.55.45.616.717 1.116 1.234 1.133.433.017 1.033-1.617 1.383-2.75.533-1.733 1.233-3.333 2.633-3.333 1.884 0 2.434 2.633 3.017 4.65.083.3.283.933.333 1.016.267.567.484.934.717 1.05.267.15.7.434.567.934-.084.383-.434.583-.834.566zm-15.366-1.6c.016 0 .016 0 0 0 .016 0 .016 0 0 0zM12 0C5.367 0 0 5.367 0 12s5.367 12 12 12 12-5.367 12-12S18.633 0 12 0zm0 22.017A10.015 10.015 0 011.983 12 10.015 10.015 0 0112 1.983 10.015 10.015 0 0122.017 12 10.015 10.015 0 0112 22.017Z" }) + ] + } + ); +}); + +exports.default = SiFlood; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.d.ts new file mode 100644 index 000000000..85c1bd16c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiFlood: IconType; +export { SiFlood as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.mjs new file mode 100644 index 000000000..52f553087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlood.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiFlood = React.forwardRef(function SiFlood2({ title = "Flood", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.683 16.283c-1.233-.066-1.85-1.533-2.15-2.433-.266-.767-.666-2.117-.966-2.933-.35-.95-.45-1.017-.65-1.017-.417 0-.734 1.183-1.05 2.067-.667 1.833-1.167 3.85-2.934 3.85-1.533 0-2.216-1.184-2.7-1.884-.45-.666-.716-.816-1.133-.816-.533 0-.783.466-1.267 1.283-.283.467-.6.95-.966 1.267-.1.083-.934.733-1.717.633-.45-.067-.767-.333-.767-.783 0-.617.684-.734 1.067-.884.333-.116.733-.716.933-1.05.534-.916 1.217-2.116 2.75-2.116 1.35 0 2 .866 2.5 1.55.45.616.717 1.116 1.234 1.133.433.017 1.033-1.617 1.383-2.75.533-1.733 1.233-3.333 2.633-3.333 1.884 0 2.434 2.633 3.017 4.65.083.3.283.933.333 1.016.267.567.484.934.717 1.05.267.15.7.434.567.934-.084.383-.434.583-.834.566zm-15.366-1.6c.016 0 .016 0 0 0 .016 0 .016 0 0 0zM12 0C5.367 0 0 5.367 0 12s5.367 12 12 12 12-5.367 12-12S18.633 0 12 0zm0 22.017A10.015 10.015 0 011.983 12 10.015 10.015 0 0112 1.983 10.015 10.015 0 0122.017 12 10.015 10.015 0 0112 22.017Z" }) + ] + } + ); +}); + +export { SiFlood as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.cjs new file mode 100644 index 000000000..fa569b53e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5309E8"; +const SiFloorp = React__namespace.forwardRef(function SiFloorp2({ title = "Floorp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.348 1.146c-1.917 0-2.807.326-3.84 2.116L.717 9.852S0 10.779 0 11.998c0 1.22.717 2.156.717 2.156l3.803 6.584c1.033 1.79 1.92 2.116 3.837 2.116h7.286c1.917 0 2.804-.326 3.837-2.116l3.803-6.584s.717-.937.717-2.156-.717-2.146-.717-2.146l-3.79-6.59c-1.034-1.79-1.924-2.116-3.84-2.116Zm.02 2.788.134.003h7c.74-.02 1.174.048 1.605.795l1.116 1.932c.223.386.031.502-.147.502H8.97c-.282 0-.4.079-.4.338v3.102c0 .258.118.337.4.337h11.379c.176 0 .757.145.756 1.016a1.27 1.27 0 0 1-.206.75l-.634 1.1c-.145.22-.28.384-.604.384H8.97v.002c-.282 0-.4.081-.4.34v5.137c0 .197-.122.394-.464.394-.76 0-1.128-.63-1.166-.695l-2.908-5.035-.66-1.147c-.657-1.137-.654-1.216 0-2.35l2.41-4.175 1.115-1.932c.405-.7.811-.805 1.471-.798" }) + ] + } + ); +}); + +exports.default = SiFloorp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.d.ts new file mode 100644 index 000000000..ca882deaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5309E8"; +declare const SiFloorp: IconType; +export { SiFloorp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.mjs new file mode 100644 index 000000000..80cec2d26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFloorp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5309E8"; +const SiFloorp = React.forwardRef(function SiFloorp2({ title = "Floorp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.348 1.146c-1.917 0-2.807.326-3.84 2.116L.717 9.852S0 10.779 0 11.998c0 1.22.717 2.156.717 2.156l3.803 6.584c1.033 1.79 1.92 2.116 3.837 2.116h7.286c1.917 0 2.804-.326 3.837-2.116l3.803-6.584s.717-.937.717-2.156-.717-2.146-.717-2.146l-3.79-6.59c-1.034-1.79-1.924-2.116-3.84-2.116Zm.02 2.788.134.003h7c.74-.02 1.174.048 1.605.795l1.116 1.932c.223.386.031.502-.147.502H8.97c-.282 0-.4.079-.4.338v3.102c0 .258.118.337.4.337h11.379c.176 0 .757.145.756 1.016a1.27 1.27 0 0 1-.206.75l-.634 1.1c-.145.22-.28.384-.604.384H8.97v.002c-.282 0-.4.081-.4.34v5.137c0 .197-.122.394-.464.394-.76 0-1.128-.63-1.166-.695l-2.908-5.035-.66-1.147c-.657-1.137-.654-1.216 0-2.35l2.41-4.175 1.115-1.932c.405-.7.811-.805 1.471-.798" }) + ] + } + ); +}); + +export { SiFloorp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.cjs new file mode 100644 index 000000000..668af5674 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2B705"; +const SiFlower = React__namespace.forwardRef(function SiFlower2({ title = "Flower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.938 5.31-.647-2.263-1.094-.28-.062-1.11L15.318.514l-1.036.274-.69-.788h-2.175l-.619.788L9.751.372l-1.754.764L7.61 2.22l-1.347.067-1.066 2.325.68 1.125-.63.96.29 2.03 1.251.415.012 1.302 1.937 1.119.908-.284.66.816v4.973H9.24v-.578H7.037v1.162H9.23v.579h1.075v3.517H5.062v1.162H7.42V24h6.929v-1.09h2.262v-1.162h-5.147v-4.626h1.624v-.927h-1.624v-4.097h1.286l.76-.74.84.336 2.098-.76.202-1.238 1.266-.13.83-2.043-.535-1.166Zm-1.453 2.243-.377.928-1.455.15-.237 1.442-1.045.377-1.128-.452-.963.937h-1.42l-.808-1-1.176.367-.921-.532L7.94 8.3l-1.356-.448-.126-.88.792-1.208-.742-1.227.515-1.124 1.42-.071.477-1.34.852-.372 1.403.558.806-1.027h1.082l.818.934 1.244-.329.881.554.077 1.36 1.274.326.31 1.09-.789 1.143zm-1.615 7.476h-2.783v1.163h2.783zM11.04 3.715l-1.036 1.038v1.87l1.049 1.037 2.975-.035 1.02-1.01.046-1.834-1.037-1.066Zm2.86 2.403-.354.349-2.023.024-.36-.356v-.903l.357-.357h2.047l.354.364z" }) + ] + } + ); +}); + +exports.default = SiFlower; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.d.ts new file mode 100644 index 000000000..949983a1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2B705"; +declare const SiFlower: IconType; +export { SiFlower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.mjs new file mode 100644 index 000000000..69e2f00fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlower.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2B705"; +const SiFlower = React.forwardRef(function SiFlower2({ title = "Flower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.938 5.31-.647-2.263-1.094-.28-.062-1.11L15.318.514l-1.036.274-.69-.788h-2.175l-.619.788L9.751.372l-1.754.764L7.61 2.22l-1.347.067-1.066 2.325.68 1.125-.63.96.29 2.03 1.251.415.012 1.302 1.937 1.119.908-.284.66.816v4.973H9.24v-.578H7.037v1.162H9.23v.579h1.075v3.517H5.062v1.162H7.42V24h6.929v-1.09h2.262v-1.162h-5.147v-4.626h1.624v-.927h-1.624v-4.097h1.286l.76-.74.84.336 2.098-.76.202-1.238 1.266-.13.83-2.043-.535-1.166Zm-1.453 2.243-.377.928-1.455.15-.237 1.442-1.045.377-1.128-.452-.963.937h-1.42l-.808-1-1.176.367-.921-.532L7.94 8.3l-1.356-.448-.126-.88.792-1.208-.742-1.227.515-1.124 1.42-.071.477-1.34.852-.372 1.403.558.806-1.027h1.082l.818.934 1.244-.329.881.554.077 1.36 1.274.326.31 1.09-.789 1.143zm-1.615 7.476h-2.783v1.163h2.783zM11.04 3.715l-1.036 1.038v1.87l1.049 1.037 2.975-.035 1.02-1.01.046-1.834-1.037-1.066Zm2.86 2.403-.354.349-2.023.024-.36-.356v-.903l.357-.357h2.047l.354.364z" }) + ] + } + ); +}); + +export { SiFlower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.cjs new file mode 100644 index 000000000..c42c68666 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#49BDA5"; +const SiFluentbit = React__namespace.forwardRef(function SiFluentbit2({ title = "Fluent Bit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.02Zm.412-.503c-.038 0-.072 0-.102.01a.336.336 0 0 0-.087.035H.215a.325.325 0 0 0-.113.113.416.416 0 0 0-.053.1c-.008.021-.019.036-.023.067a.423.423 0 0 0-.015.071v-.01H.004v.018L0 3.936l.007-.023v.046L0 4.004v.015h.004l.003-.004v-.003a1.323 1.323 0 0 0 .095.472l.019.046v.007l.06.144.023.06.064.163a19.736 19.736 0 0 0 1.724 3.254L2 8.173l.023.038c.922 1.44 2.037 2.885 3.202 4.095l.037.04c.832.859 1.686 1.6 2.514 2.129a4 4 0 0 0 .37.216l.038.019-.026.019c-1.127 1.64-2.42 2.834-3.742 3.704C2.51 19.763.91 20.172.91 20.172s4.237 1.164 8.887-1.013c3.534-1.664 5.368-4.903 5.787-5.621l2.124-3.61c.333-.458.522-.647.54-.68.065-.065.538-.614 1.524-.946 1.46-.488 3.667-.783 4.188-.832a.113.113 0 0 0 .03-.132.076.076 0 0 0-.056-.05 4.177 4.177 0 0 0-.544-.037 9.234 9.234 0 0 0-1.399.068 18.39 18.39 0 0 0-1.383.204 29.78 29.78 0 0 0-1.066.204l-.053.012h-.023a3.493 3.493 0 0 1-.574.037 2.737 2.737 0 0 1-.473-.075 7.3 7.3 0 0 1-.465-.129 6.79 6.79 0 0 0-.484-.143 4.645 4.645 0 0 0-1.463-.152 2.797 2.797 0 0 0-.657.133l-.167.06a2.767 2.767 0 0 0-1.22.972c-.401.536-1.233 2.178-2.374 2.613l-.023-.023h.01a77.214 77.214 0 0 0-.9-.829l-.021-.015-.2-.189-.053-.042a60.73 60.73 0 0 0-2.307-2.014 28.411 28.411 0 0 0-1.504-1.13l-.227-.163a30.725 30.725 0 0 0-3.93-2.332c-.114-.064-.23-.102-.36-.166-.038-.016-.076-.038-.102-.038l.196.11-.079-.038h-.01V4.18a1.013 1.013 0 0 0-.054-.023l-.023-.015-.03-.015a1.01 1.01 0 0 1-.102-.05l-.072-.033a1.512 1.512 0 0 1-.098-.046c-.03-.01-.057-.022-.076-.022a1.296 1.296 0 0 0-.22-.08l-.007-.004-.015-.007h-.007l-.012-.004v-.004h-.022a.37.37 0 0 1-.038-.019l-.038-.018a.113.113 0 0 0-.034-.012h-.004l-.234-.094a2.854 2.854 0 0 0-.242-.087.601.601 0 0 0-.151-.03ZM0 3.891Zm.094.593.012.027Zm.012.03c.022.06.041.118.068.17zm.068.174.003.012zM16.757 8.3a.386.386 0 0 1 .113.015.386.386 0 0 1 .269.473.386.386 0 0 1-.473.264.386.386 0 0 1-.264-.468.386.386 0 0 1 .355-.284z" }) + ] + } + ); +}); + +exports.default = SiFluentbit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.d.ts new file mode 100644 index 000000000..6c04a6a3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#49BDA5"; +declare const SiFluentbit: IconType; +export { SiFluentbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.mjs new file mode 100644 index 000000000..0758ea69b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentbit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#49BDA5"; +const SiFluentbit = React.forwardRef(function SiFluentbit2({ title = "Fluent Bit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.02Zm.412-.503c-.038 0-.072 0-.102.01a.336.336 0 0 0-.087.035H.215a.325.325 0 0 0-.113.113.416.416 0 0 0-.053.1c-.008.021-.019.036-.023.067a.423.423 0 0 0-.015.071v-.01H.004v.018L0 3.936l.007-.023v.046L0 4.004v.015h.004l.003-.004v-.003a1.323 1.323 0 0 0 .095.472l.019.046v.007l.06.144.023.06.064.163a19.736 19.736 0 0 0 1.724 3.254L2 8.173l.023.038c.922 1.44 2.037 2.885 3.202 4.095l.037.04c.832.859 1.686 1.6 2.514 2.129a4 4 0 0 0 .37.216l.038.019-.026.019c-1.127 1.64-2.42 2.834-3.742 3.704C2.51 19.763.91 20.172.91 20.172s4.237 1.164 8.887-1.013c3.534-1.664 5.368-4.903 5.787-5.621l2.124-3.61c.333-.458.522-.647.54-.68.065-.065.538-.614 1.524-.946 1.46-.488 3.667-.783 4.188-.832a.113.113 0 0 0 .03-.132.076.076 0 0 0-.056-.05 4.177 4.177 0 0 0-.544-.037 9.234 9.234 0 0 0-1.399.068 18.39 18.39 0 0 0-1.383.204 29.78 29.78 0 0 0-1.066.204l-.053.012h-.023a3.493 3.493 0 0 1-.574.037 2.737 2.737 0 0 1-.473-.075 7.3 7.3 0 0 1-.465-.129 6.79 6.79 0 0 0-.484-.143 4.645 4.645 0 0 0-1.463-.152 2.797 2.797 0 0 0-.657.133l-.167.06a2.767 2.767 0 0 0-1.22.972c-.401.536-1.233 2.178-2.374 2.613l-.023-.023h.01a77.214 77.214 0 0 0-.9-.829l-.021-.015-.2-.189-.053-.042a60.73 60.73 0 0 0-2.307-2.014 28.411 28.411 0 0 0-1.504-1.13l-.227-.163a30.725 30.725 0 0 0-3.93-2.332c-.114-.064-.23-.102-.36-.166-.038-.016-.076-.038-.102-.038l.196.11-.079-.038h-.01V4.18a1.013 1.013 0 0 0-.054-.023l-.023-.015-.03-.015a1.01 1.01 0 0 1-.102-.05l-.072-.033a1.512 1.512 0 0 1-.098-.046c-.03-.01-.057-.022-.076-.022a1.296 1.296 0 0 0-.22-.08l-.007-.004-.015-.007h-.007l-.012-.004v-.004h-.022a.37.37 0 0 1-.038-.019l-.038-.018a.113.113 0 0 0-.034-.012h-.004l-.234-.094a2.854 2.854 0 0 0-.242-.087.601.601 0 0 0-.151-.03ZM0 3.891Zm.094.593.012.027Zm.012.03c.022.06.041.118.068.17zm.068.174.003.012zM16.757 8.3a.386.386 0 0 1 .113.015.386.386 0 0 1 .269.473.386.386 0 0 1-.473.264.386.386 0 0 1-.264-.468.386.386 0 0 1 .355-.284z" }) + ] + } + ); +}); + +export { SiFluentbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.cjs new file mode 100644 index 000000000..3f078dbe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E83C8"; +const SiFluentd = React__namespace.forwardRef(function SiFluentd2({ title = "Fluentd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.83 2.195C1.279 2.191.8 2.377.425 2.82-.429 3.823.03 6.135 1.787 8.917l.02.028a10.177 10.177 0 0 0 .197.297c1.733 2.579 4.249 4.677 3.743 7.586a4.28 4.28 0 0 1-.599 1.564C3.615 20.797.003 21.047.003 21.047l.042.001-.045.005s4.355 1.344 8.533.438c.598-.13 1.192-.305 1.769-.537a12.331 12.331 0 0 0 .023-.01c.343-.138.667-.284.975-.437a12.331 12.331 0 0 0 .282-.145c.285-.15.556-.306.814-.467a12.331 12.331 0 0 0 .152-.095c.316-.204.61-.416.888-.635a12.331 12.331 0 0 0 .146-.116c.164-.134.323-.27.476-.407a12.331 12.331 0 0 0 .123-.105l.036-.04c.008-.008.015-.016.024-.023a12.842 12.842 0 0 0 .86-.888c.05-.056.1-.112.148-.169.059-.068.118-.135.175-.203l.1-.123c.127-.154.25-.31.372-.465l.032-.042c.679-.88 1.28-1.779 1.933-2.639l.216-.278c.294-.374.6-.74.932-1.091l.03-.031c.108-.114.22-.226.334-.337l.07-.067a10.997 10.997 0 0 1 .264-.243c.036-.032.072-.065.109-.096a5.003 5.003 0 0 1 .374-.293c.012-.01.025-.018.038-.027a5.003 5.003 0 0 1 .85-.48l-.065.03.022-.01.06-.027a5.623 5.623 0 0 1 1.63-.412h.001a5.623 5.623 0 0 1 .533-.026h.07a5.623 5.623 0 0 1 .115.002l.428-.003a.204.204 0 0 0 .088-.016c.062-.03.047-.102-.012-.186a1.38 1.38 0 0 0-.39-.343 3.688 3.688 0 0 1-.098-.052 3.871 3.871 0 0 1-.036-.022 3.688 3.688 0 0 1-.256-.161 3.871 3.871 0 0 1-.129-.096 3.688 3.688 0 0 1-.193-.15c-.205-.2-.432-.733-.523-.888a2.05 2.05 0 0 0-.24-.33c-.272-.306-.665-.533-1.302-.615-.891-.115-1.727.072-2.565.333l.1-.035c-1.168.354-2.334.87-3.655.94h-.04a5.553 5.553 0 0 1-.668-.01l-.06-.004a5.473 5.473 0 0 1-1.16-.233c-1.312-.412-3.154-1.88-5.047-3.316a113.017 113.017 0 0 0-.651-.49 51.56 51.56 0 0 0-.789-.58l-.222-.155-.236-.166-.086-.06a17.622 17.622 0 0 0-1.612-.997l-.019-.01a10.036 10.036 0 0 0-.367-.186c-.039-.019-.078-.035-.117-.053a7.732 7.732 0 0 0-.548-.23l-.05-.017a5.023 5.023 0 0 0-.316-.101l-.026-.007a3.055 3.055 0 0 0-.816-.125zM20.6 8.641a.504.5 0 0 1 .505.5.504.5 0 0 1-.505.5.504.5 0 0 1-.504-.5.504.5 0 0 1 .504-.5z" }) + ] + } + ); +}); + +exports.default = SiFluentd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.d.ts new file mode 100644 index 000000000..667d81930 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E83C8"; +declare const SiFluentd: IconType; +export { SiFluentd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.mjs new file mode 100644 index 000000000..fbdb998e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluentd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E83C8"; +const SiFluentd = React.forwardRef(function SiFluentd2({ title = "Fluentd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.83 2.195C1.279 2.191.8 2.377.425 2.82-.429 3.823.03 6.135 1.787 8.917l.02.028a10.177 10.177 0 0 0 .197.297c1.733 2.579 4.249 4.677 3.743 7.586a4.28 4.28 0 0 1-.599 1.564C3.615 20.797.003 21.047.003 21.047l.042.001-.045.005s4.355 1.344 8.533.438c.598-.13 1.192-.305 1.769-.537a12.331 12.331 0 0 0 .023-.01c.343-.138.667-.284.975-.437a12.331 12.331 0 0 0 .282-.145c.285-.15.556-.306.814-.467a12.331 12.331 0 0 0 .152-.095c.316-.204.61-.416.888-.635a12.331 12.331 0 0 0 .146-.116c.164-.134.323-.27.476-.407a12.331 12.331 0 0 0 .123-.105l.036-.04c.008-.008.015-.016.024-.023a12.842 12.842 0 0 0 .86-.888c.05-.056.1-.112.148-.169.059-.068.118-.135.175-.203l.1-.123c.127-.154.25-.31.372-.465l.032-.042c.679-.88 1.28-1.779 1.933-2.639l.216-.278c.294-.374.6-.74.932-1.091l.03-.031c.108-.114.22-.226.334-.337l.07-.067a10.997 10.997 0 0 1 .264-.243c.036-.032.072-.065.109-.096a5.003 5.003 0 0 1 .374-.293c.012-.01.025-.018.038-.027a5.003 5.003 0 0 1 .85-.48l-.065.03.022-.01.06-.027a5.623 5.623 0 0 1 1.63-.412h.001a5.623 5.623 0 0 1 .533-.026h.07a5.623 5.623 0 0 1 .115.002l.428-.003a.204.204 0 0 0 .088-.016c.062-.03.047-.102-.012-.186a1.38 1.38 0 0 0-.39-.343 3.688 3.688 0 0 1-.098-.052 3.871 3.871 0 0 1-.036-.022 3.688 3.688 0 0 1-.256-.161 3.871 3.871 0 0 1-.129-.096 3.688 3.688 0 0 1-.193-.15c-.205-.2-.432-.733-.523-.888a2.05 2.05 0 0 0-.24-.33c-.272-.306-.665-.533-1.302-.615-.891-.115-1.727.072-2.565.333l.1-.035c-1.168.354-2.334.87-3.655.94h-.04a5.553 5.553 0 0 1-.668-.01l-.06-.004a5.473 5.473 0 0 1-1.16-.233c-1.312-.412-3.154-1.88-5.047-3.316a113.017 113.017 0 0 0-.651-.49 51.56 51.56 0 0 0-.789-.58l-.222-.155-.236-.166-.086-.06a17.622 17.622 0 0 0-1.612-.997l-.019-.01a10.036 10.036 0 0 0-.367-.186c-.039-.019-.078-.035-.117-.053a7.732 7.732 0 0 0-.548-.23l-.05-.017a5.023 5.023 0 0 0-.316-.101l-.026-.007a3.055 3.055 0 0 0-.816-.125zM20.6 8.641a.504.5 0 0 1 .505.5.504.5 0 0 1-.505.5.504.5 0 0 1-.504-.5.504.5 0 0 1 .504-.5z" }) + ] + } + ); +}); + +export { SiFluentd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.cjs new file mode 100644 index 000000000..45bdd1759 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC20E"; +const SiFluke = React__namespace.forwardRef(function SiFluke2({ title = "Fluke", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.603 12.656h-.092v-.131h.08c.065 0 .078.013.078.065 0 .04-.026.066-.066.066zm.263.013c0 .157-.118.288-.276.288s-.275-.13-.275-.288c0-.158.105-.276.262-.289.17 0 .289.118.289.289zm-.118.197-.105-.17c.052-.014.091-.053.091-.106 0-.079-.052-.118-.13-.118h-.145v.394h.066v-.17h.065l.105.17h.053zM24 8.393v7.214H0V8.393h24zM6.44 11.567H4.222V11.2h2.203v-.498H3.633v2.308h.59v-.892h2.216v-.55zm2.819.866H7.384v-1.731h-.577v2.308h2.452v-.577zm3.462-1.731h-.577v1.77h-2.02v-1.77h-.576v1.875c.039.42.432.433.432.433h2.308s.38-.013.433-.433v-1.875zm3.568 2.308-1.837-1.18 1.745-1.128h-1.023l-1.299.8v-.8h-.577v2.308h.577v-.866l1.377.866h1.037zm3.239-2.308h-2.912v2.308h2.912v-.538h-2.335v-.328h2.335v-.537h-2.335v-.355h2.335v-.55zm1.403 1.967a.347.347 0 0 0-.34-.341.347.347 0 0 0-.342.34c0 .184.158.342.341.342a.347.347 0 0 0 .341-.341z" }) + ] + } + ); +}); + +exports.default = SiFluke; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.d.ts new file mode 100644 index 000000000..dbdf69605 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC20E"; +declare const SiFluke: IconType; +export { SiFluke as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.mjs new file mode 100644 index 000000000..dd30f9921 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFluke.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC20E"; +const SiFluke = React.forwardRef(function SiFluke2({ title = "Fluke", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.603 12.656h-.092v-.131h.08c.065 0 .078.013.078.065 0 .04-.026.066-.066.066zm.263.013c0 .157-.118.288-.276.288s-.275-.13-.275-.288c0-.158.105-.276.262-.289.17 0 .289.118.289.289zm-.118.197-.105-.17c.052-.014.091-.053.091-.106 0-.079-.052-.118-.13-.118h-.145v.394h.066v-.17h.065l.105.17h.053zM24 8.393v7.214H0V8.393h24zM6.44 11.567H4.222V11.2h2.203v-.498H3.633v2.308h.59v-.892h2.216v-.55zm2.819.866H7.384v-1.731h-.577v2.308h2.452v-.577zm3.462-1.731h-.577v1.77h-2.02v-1.77h-.576v1.875c.039.42.432.433.432.433h2.308s.38-.013.433-.433v-1.875zm3.568 2.308-1.837-1.18 1.745-1.128h-1.023l-1.299.8v-.8h-.577v2.308h.577v-.866l1.377.866h1.037zm3.239-2.308h-2.912v2.308h2.912v-.538h-2.335v-.328h2.335v-.537h-2.335v-.355h2.335v-.55zm1.403 1.967a.347.347 0 0 0-.34-.341.347.347 0 0 0-.342.34c0 .184.158.342.341.342a.347.347 0 0 0 .341-.341z" }) + ] + } + ); +}); + +export { SiFluke as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.cjs new file mode 100644 index 000000000..4c58dbfee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02569B"; +const SiFlutter = React__namespace.forwardRef(function SiFlutter2({ title = "Flutter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.314 0L2.3 12 6 15.7 21.684.013h-7.357zm.014 11.072L7.857 17.53l6.47 6.47H21.7l-6.46-6.468 6.46-6.46h-7.37z" }) + ] + } + ); +}); + +exports.default = SiFlutter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.d.ts new file mode 100644 index 000000000..8ce1da69e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02569B"; +declare const SiFlutter: IconType; +export { SiFlutter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.mjs new file mode 100644 index 000000000..b1405bc05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlutter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02569B"; +const SiFlutter = React.forwardRef(function SiFlutter2({ title = "Flutter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.314 0L2.3 12 6 15.7 21.684.013h-7.357zm.014 11.072L7.857 17.53l6.47 6.47H21.7l-6.46-6.468 6.46-6.46h-7.37z" }) + ] + } + ); +}); + +export { SiFlutter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.cjs new file mode 100644 index 000000000..108adae74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5468FF"; +const SiFlux = React__namespace.forwardRef(function SiFlux2({ title = "Flux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.402 23.747c.154.075.306.154.454.238.181.038.37.004.525-.097l.386-.251c-1.242-.831-2.622-1.251-3.998-1.602l2.633 1.712Zm-7.495-5.783a8.088 8.088 0 0 1-.222-.236.696.696 0 0 0 .112 1.075l2.304 1.498c1.019.422 2.085.686 3.134.944 1.636.403 3.2.79 4.554 1.728l.697-.453c-1.541-1.158-3.327-1.602-5.065-2.03-2.039-.503-3.965-.977-5.514-2.526Zm1.414-1.322-.665.432c.023.024.044.049.068.073 1.702 1.702 3.825 2.225 5.877 2.731 1.778.438 3.469.856 4.9 1.982l.682-.444c-1.612-1.357-3.532-1.834-5.395-2.293-2.019-.497-3.926-.969-5.467-2.481Zm7.502 2.084c1.596.412 3.096.904 4.367 2.036l.67-.436c-1.484-1.396-3.266-1.953-5.037-2.403v.803Zm.698-2.337a64.695 64.695 0 0 1-.698-.174v.802l.512.127c2.039.503 3.965.978 5.514 2.526l.007.009.663-.431c-.041-.042-.079-.086-.121-.128-1.702-1.701-3.824-2.225-5.877-2.731Zm-.698-1.928v.816c.624.19 1.255.347 1.879.501 2.039.502 3.965.977 5.513 2.526.077.077.153.157.226.239a.704.704 0 0 0-.238-.911l-3.064-1.992c-.744-.245-1.502-.433-2.251-.618a31.436 31.436 0 0 1-2.065-.561Zm-1.646 3.049c-1.526-.4-2.96-.888-4.185-1.955l-.674.439c1.439 1.326 3.151 1.88 4.859 2.319v-.803Zm0-1.772a8.543 8.543 0 0 1-2.492-1.283l-.686.446c.975.804 2.061 1.293 3.178 1.655v-.818Zm0-1.946a7.59 7.59 0 0 1-.776-.453l-.701.456c.462.337.957.627 1.477.865v-.868Zm3.533.269-1.887-1.226v.581c.614.257 1.244.473 1.887.645Zm5.493-8.863L12.381.112a.705.705 0 0 0-.762 0L3.797 5.198a.698.698 0 0 0 0 1.171l7.38 4.797V7.678a.414.414 0 0 0-.412-.412h-.543a.413.413 0 0 1-.356-.617l1.777-3.079a.412.412 0 0 1 .714 0l1.777 3.079a.413.413 0 0 1-.356.617h-.543a.414.414 0 0 0-.412.412v3.488l7.38-4.797a.7.7 0 0 0 0-1.171Z" }) + ] + } + ); +}); + +exports.default = SiFlux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.d.ts new file mode 100644 index 000000000..61bde84b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5468FF"; +declare const SiFlux: IconType; +export { SiFlux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.mjs new file mode 100644 index 000000000..7abff8c6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5468FF"; +const SiFlux = React.forwardRef(function SiFlux2({ title = "Flux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.402 23.747c.154.075.306.154.454.238.181.038.37.004.525-.097l.386-.251c-1.242-.831-2.622-1.251-3.998-1.602l2.633 1.712Zm-7.495-5.783a8.088 8.088 0 0 1-.222-.236.696.696 0 0 0 .112 1.075l2.304 1.498c1.019.422 2.085.686 3.134.944 1.636.403 3.2.79 4.554 1.728l.697-.453c-1.541-1.158-3.327-1.602-5.065-2.03-2.039-.503-3.965-.977-5.514-2.526Zm1.414-1.322-.665.432c.023.024.044.049.068.073 1.702 1.702 3.825 2.225 5.877 2.731 1.778.438 3.469.856 4.9 1.982l.682-.444c-1.612-1.357-3.532-1.834-5.395-2.293-2.019-.497-3.926-.969-5.467-2.481Zm7.502 2.084c1.596.412 3.096.904 4.367 2.036l.67-.436c-1.484-1.396-3.266-1.953-5.037-2.403v.803Zm.698-2.337a64.695 64.695 0 0 1-.698-.174v.802l.512.127c2.039.503 3.965.978 5.514 2.526l.007.009.663-.431c-.041-.042-.079-.086-.121-.128-1.702-1.701-3.824-2.225-5.877-2.731Zm-.698-1.928v.816c.624.19 1.255.347 1.879.501 2.039.502 3.965.977 5.513 2.526.077.077.153.157.226.239a.704.704 0 0 0-.238-.911l-3.064-1.992c-.744-.245-1.502-.433-2.251-.618a31.436 31.436 0 0 1-2.065-.561Zm-1.646 3.049c-1.526-.4-2.96-.888-4.185-1.955l-.674.439c1.439 1.326 3.151 1.88 4.859 2.319v-.803Zm0-1.772a8.543 8.543 0 0 1-2.492-1.283l-.686.446c.975.804 2.061 1.293 3.178 1.655v-.818Zm0-1.946a7.59 7.59 0 0 1-.776-.453l-.701.456c.462.337.957.627 1.477.865v-.868Zm3.533.269-1.887-1.226v.581c.614.257 1.244.473 1.887.645Zm5.493-8.863L12.381.112a.705.705 0 0 0-.762 0L3.797 5.198a.698.698 0 0 0 0 1.171l7.38 4.797V7.678a.414.414 0 0 0-.412-.412h-.543a.413.413 0 0 1-.356-.617l1.777-3.079a.412.412 0 0 1 .714 0l1.777 3.079a.413.413 0 0 1-.356.617h-.543a.414.414 0 0 0-.412.412v3.488l7.38-4.797a.7.7 0 0 0 0-1.171Z" }) + ] + } + ); +}); + +export { SiFlux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.cjs new file mode 100644 index 000000000..4ff945426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24175B"; +const SiFlydotio = React__namespace.forwardRef(function SiFlydotio2({ title = "Fly.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.987 0c-2.45-.01-5.002.925-6.541 2.897-1.17 1.502-1.664 3.474-1.49 5.356.29 2.112 1.476 3.96 2.676 5.672a41.5 41.5 0 0 0 4.216 4.831c-1.063.832-1.943 2.286-1.357 3.644.821 2.32 4.665 2.05 5.122-.372.39-1.288-.694-2.533-1.428-3.309 2.388-2.431 4.706-5.036 6.17-8.145.595-1.32.902-2.802.614-4.24-.28-2.341-1.823-4.473-3.967-5.46C14.76.266 13.364.016 11.987 0m-.236 1.577v15.534C9.881 13.483 7.724 9.266 8.73 5.069c.35-1.539 1.253-3.309 3.02-3.492m1.996.04c1.534.357 3.031 1.096 3.906 2.48 1.3 1.93 1.318 4.55.1 6.521-1.268 2.395-3.06 4.463-4.916 6.415 1.472-2.974 3.074-6.106 3.182-9.5-.043-2.08-.438-4.612-2.272-5.916M11.97 20.103c.848.342 1.597 1.983.153 2.173-.664.15-1.367-.599-.995-1.222.213-.355.488-.73.842-.95" }) + ] + } + ); +}); + +exports.default = SiFlydotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.d.ts new file mode 100644 index 000000000..508561c8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24175B"; +declare const SiFlydotio: IconType; +export { SiFlydotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.mjs new file mode 100644 index 000000000..b9b1138a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlydotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24175B"; +const SiFlydotio = React.forwardRef(function SiFlydotio2({ title = "Fly.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.987 0c-2.45-.01-5.002.925-6.541 2.897-1.17 1.502-1.664 3.474-1.49 5.356.29 2.112 1.476 3.96 2.676 5.672a41.5 41.5 0 0 0 4.216 4.831c-1.063.832-1.943 2.286-1.357 3.644.821 2.32 4.665 2.05 5.122-.372.39-1.288-.694-2.533-1.428-3.309 2.388-2.431 4.706-5.036 6.17-8.145.595-1.32.902-2.802.614-4.24-.28-2.341-1.823-4.473-3.967-5.46C14.76.266 13.364.016 11.987 0m-.236 1.577v15.534C9.881 13.483 7.724 9.266 8.73 5.069c.35-1.539 1.253-3.309 3.02-3.492m1.996.04c1.534.357 3.031 1.096 3.906 2.48 1.3 1.93 1.318 4.55.1 6.521-1.268 2.395-3.06 4.463-4.916 6.415 1.472-2.974 3.074-6.106 3.182-9.5-.043-2.08-.438-4.612-2.272-5.916M11.97 20.103c.848.342 1.597 1.983.153 2.173-.664.15-1.367-.599-.995-1.222.213-.355.488-.73.842-.95" }) + ] + } + ); +}); + +export { SiFlydotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.cjs new file mode 100644 index 000000000..1036c8e57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0200"; +const SiFlyway = React__namespace.forwardRef(function SiFlyway2({ title = "Flyway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.02 21.055 1.12-.23c1.054-.219 2.114-.415 3.161-.66a4.955 4.952 0 0 0 3.696-3.915 6.06 6.057 0 0 0 .085-1.153l.366-.09a4.936 4.933 0 0 0 3.75-3.717 3.8 3.798 0 0 0 .128-1.06c-.002-.096 0-.193 0-.305.094-.023.18-.047.267-.067a4.552 4.549 0 0 0 2.68-1.755 5.772 5.769 0 0 0 1.005-4.854c-.021-.088-.035-.179-.061-.264a.63.629 0 0 0-.728-.432l-3.184.652-3.485.716-4.002.822q-2.186.449-4.373.893a1.125 1.125 0 0 1-.422.06c-.007-.074-.017-.14-.017-.204-.001-1.12.002-2.243-.005-3.364a.324.324 0 0 1 .174-.307 8.493 8.488 0 0 1 1.9-.86A17.205 17.194 0 0 1 7.827.315C8.373.23 8.922.181 9.47.12a26.795 26.777 0 0 1 3.526-.102c.496.01.992.051 1.487.097.542.051 1.085.11 1.623.192a14.482 14.472 0 0 1 4.007 1.124c.262.123.509.28.764.422a.215.215 0 0 1 .122.223c-.004.054 0 .11 0 .163v19.519c0 .347.045.28-.262.472a8.437 8.432 0 0 1-1.961.857 16.78 16.769 0 0 1-2.851.63c-.6.08-1.2.146-1.804.207-.277.03-.556.035-.835.043-.564.015-1.128.041-1.691.03-.636-.014-1.272-.059-1.907-.099a20.054 20.041 0 0 1-2.519-.332 13.423 13.415 0 0 1-3.224-.976c-.273-.13-.53-.29-.797-.435a.246.246 0 0 1-.144-.248c.008-.23 0-.46.003-.69 0-.049.01-.096.016-.163zm9.985-10.652a1.248 1.248 0 0 1-.09.55 2.624 2.622 0 0 1-2.045 1.84c-1.3.28-2.607.537-3.912.805l-.57.114a1.147 1.146 0 1 0 .403 2.256c.595-.11 1.186-.242 1.779-.363.064-.014.128-.022.209-.035a2.584 2.582 0 0 1-.55 1.41A2.801 2.8 0 0 1 6.516 18c-1.103.223-2.206.45-3.308.676-.052.01-.106.013-.156.02-.048-.146-.061-10.38-.014-10.63l14.048-2.883a1.523 1.522 0 0 1-.016.18 3.438 3.436 0 0 1-.738 1.502 2.399 2.397 0 0 1-1.426.804c-1.11.216-2.218.45-3.326.677l-.96.196a1.168 1.168 0 0 0-.953 1.057 1.147 1.147 0 0 0 .875 1.186 1.747 1.746 0 0 0 .807-.054c.492-.1.983-.203 1.475-.304.053-.01.108-.014.18-.023z" }) + ] + } + ); +}); + +exports.default = SiFlyway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.d.ts new file mode 100644 index 000000000..049673bcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0200"; +declare const SiFlyway: IconType; +export { SiFlyway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.mjs new file mode 100644 index 000000000..a5be0e1d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFlyway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0200"; +const SiFlyway = React.forwardRef(function SiFlyway2({ title = "Flyway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.02 21.055 1.12-.23c1.054-.219 2.114-.415 3.161-.66a4.955 4.952 0 0 0 3.696-3.915 6.06 6.057 0 0 0 .085-1.153l.366-.09a4.936 4.933 0 0 0 3.75-3.717 3.8 3.798 0 0 0 .128-1.06c-.002-.096 0-.193 0-.305.094-.023.18-.047.267-.067a4.552 4.549 0 0 0 2.68-1.755 5.772 5.769 0 0 0 1.005-4.854c-.021-.088-.035-.179-.061-.264a.63.629 0 0 0-.728-.432l-3.184.652-3.485.716-4.002.822q-2.186.449-4.373.893a1.125 1.125 0 0 1-.422.06c-.007-.074-.017-.14-.017-.204-.001-1.12.002-2.243-.005-3.364a.324.324 0 0 1 .174-.307 8.493 8.488 0 0 1 1.9-.86A17.205 17.194 0 0 1 7.827.315C8.373.23 8.922.181 9.47.12a26.795 26.777 0 0 1 3.526-.102c.496.01.992.051 1.487.097.542.051 1.085.11 1.623.192a14.482 14.472 0 0 1 4.007 1.124c.262.123.509.28.764.422a.215.215 0 0 1 .122.223c-.004.054 0 .11 0 .163v19.519c0 .347.045.28-.262.472a8.437 8.432 0 0 1-1.961.857 16.78 16.769 0 0 1-2.851.63c-.6.08-1.2.146-1.804.207-.277.03-.556.035-.835.043-.564.015-1.128.041-1.691.03-.636-.014-1.272-.059-1.907-.099a20.054 20.041 0 0 1-2.519-.332 13.423 13.415 0 0 1-3.224-.976c-.273-.13-.53-.29-.797-.435a.246.246 0 0 1-.144-.248c.008-.23 0-.46.003-.69 0-.049.01-.096.016-.163zm9.985-10.652a1.248 1.248 0 0 1-.09.55 2.624 2.622 0 0 1-2.045 1.84c-1.3.28-2.607.537-3.912.805l-.57.114a1.147 1.146 0 1 0 .403 2.256c.595-.11 1.186-.242 1.779-.363.064-.014.128-.022.209-.035a2.584 2.582 0 0 1-.55 1.41A2.801 2.8 0 0 1 6.516 18c-1.103.223-2.206.45-3.308.676-.052.01-.106.013-.156.02-.048-.146-.061-10.38-.014-10.63l14.048-2.883a1.523 1.522 0 0 1-.016.18 3.438 3.436 0 0 1-.738 1.502 2.399 2.397 0 0 1-1.426.804c-1.11.216-2.218.45-3.326.677l-.96.196a1.168 1.168 0 0 0-.953 1.057 1.147 1.147 0 0 0 .875 1.186 1.747 1.746 0 0 0 .807-.054c.492-.1.983-.203 1.475-.304.053-.01.108-.014.18-.023z" }) + ] + } + ); +}); + +export { SiFlyway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.cjs new file mode 100644 index 000000000..d1ae2bd0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFmod = React__namespace.forwardRef(function SiFmod2({ title = "FMOD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.3522 10.17a.903.903 0 0 0-.903.903v4.0696H1.127v-2.8134H0v-1.318h1.1284a2.2252 2.2252 0 0 1 2.2238-2.1703H4.673v1.3222zm7.3257 1.8403a.2501.2501 0 0 0-.2378.1732l-.532 1.8348a1.564 1.564 0 0 1-3.0016 0l-.532-1.8348a.2515.2515 0 0 0-.4769 0l-.5319 1.8348a1.5723 1.5723 0 0 1-1.5118 1.123h-.3684v-1.3195h.3739a.2474.2474 0 0 0 .235-.1732l.5319-1.8348a1.5696 1.5696 0 0 1 3.0086 0l.536 1.8376a.246.246 0 0 0 .4714 0l.532-1.8349a1.5696 1.5696 0 0 1 3.0086 0l.5319 1.8349a.2474.2474 0 0 0 .235.1731h.3738v1.3195h-.3683a1.571 1.571 0 0 1-1.5119-1.123l-.5319-1.8348a.2515.2515 0 0 0-.2336-.1759zm2.6897.9058a2.2252 2.2252 0 1 1 2.2252 2.2251 2.2252 2.2252 0 0 1-2.2252-2.2251zm3.1282 0a.903.903 0 1 0-.903.903.903.903 0 0 0 .903-.903zm4.6744.4604a.962.962 0 0 0 .0673-.1237.6707.6707 0 0 1 1.2659.3079.6542.6542 0 0 1-.055.2625l-.0192.0398a2.2678 2.2678 0 0 1-2.0342 1.2755 2.2252 2.2252 0 0 1 0-4.4504h.0976a2.25 2.25 0 0 1 1.0143.2914V8.8409h1.3222v3.01a.7422.7422 0 0 1-.712.7215 1.5902 1.5902 0 0 1-1.0692-.3738.9016.9016 0 0 0-.5498-.191h-.0976a.903.903 0 1 0 .7752 1.3661zM4.2277 11.624a.7037.7037 0 0 1-.7037.7037.7037.7037 0 0 1-.7037-.7037.7037.7037 0 0 1 .7037-.7037.7037.7037 0 0 1 .7037.7037zm18.398 2.8354a.6872.6872 0 1 0 .6872-.6748.6776.6776 0 0 0-.6872.6748zm.1237 0a.5594.5594 0 1 1 .5608.5828.558.558 0 0 1-.565-.5828zm.2817.3821h.1237v-.3408h.1375l.2158.3408h.1374l-.2268-.3505a.2034.2034 0 0 0 .209-.2157c0-.1526-.0894-.2268-.275-.2268h-.3064zm.1237-.6872h.1581c.0838 0 .1746.0165.1746.121 0 .1044-.1004.1374-.209.1374h-.1292z" }) + ] + } + ); +}); + +exports.default = SiFmod; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.d.ts new file mode 100644 index 000000000..9deaa30f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFmod: IconType; +export { SiFmod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.mjs new file mode 100644 index 000000000..ea216abdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFmod.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFmod = React.forwardRef(function SiFmod2({ title = "FMOD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.3522 10.17a.903.903 0 0 0-.903.903v4.0696H1.127v-2.8134H0v-1.318h1.1284a2.2252 2.2252 0 0 1 2.2238-2.1703H4.673v1.3222zm7.3257 1.8403a.2501.2501 0 0 0-.2378.1732l-.532 1.8348a1.564 1.564 0 0 1-3.0016 0l-.532-1.8348a.2515.2515 0 0 0-.4769 0l-.5319 1.8348a1.5723 1.5723 0 0 1-1.5118 1.123h-.3684v-1.3195h.3739a.2474.2474 0 0 0 .235-.1732l.5319-1.8348a1.5696 1.5696 0 0 1 3.0086 0l.536 1.8376a.246.246 0 0 0 .4714 0l.532-1.8349a1.5696 1.5696 0 0 1 3.0086 0l.5319 1.8349a.2474.2474 0 0 0 .235.1731h.3738v1.3195h-.3683a1.571 1.571 0 0 1-1.5119-1.123l-.5319-1.8348a.2515.2515 0 0 0-.2336-.1759zm2.6897.9058a2.2252 2.2252 0 1 1 2.2252 2.2251 2.2252 2.2252 0 0 1-2.2252-2.2251zm3.1282 0a.903.903 0 1 0-.903.903.903.903 0 0 0 .903-.903zm4.6744.4604a.962.962 0 0 0 .0673-.1237.6707.6707 0 0 1 1.2659.3079.6542.6542 0 0 1-.055.2625l-.0192.0398a2.2678 2.2678 0 0 1-2.0342 1.2755 2.2252 2.2252 0 0 1 0-4.4504h.0976a2.25 2.25 0 0 1 1.0143.2914V8.8409h1.3222v3.01a.7422.7422 0 0 1-.712.7215 1.5902 1.5902 0 0 1-1.0692-.3738.9016.9016 0 0 0-.5498-.191h-.0976a.903.903 0 1 0 .7752 1.3661zM4.2277 11.624a.7037.7037 0 0 1-.7037.7037.7037.7037 0 0 1-.7037-.7037.7037.7037 0 0 1 .7037-.7037.7037.7037 0 0 1 .7037.7037zm18.398 2.8354a.6872.6872 0 1 0 .6872-.6748.6776.6776 0 0 0-.6872.6748zm.1237 0a.5594.5594 0 1 1 .5608.5828.558.558 0 0 1-.565-.5828zm.2817.3821h.1237v-.3408h.1375l.2158.3408h.1374l-.2268-.3505a.2034.2034 0 0 0 .209-.2157c0-.1526-.0894-.2268-.275-.2268h-.3064zm.1237-.6872h.1581c.0838 0 .1746.0165.1746.121 0 .1044-.1004.1374-.209.1374h-.1292z" }) + ] + } + ); +}); + +export { SiFmod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.cjs new file mode 100644 index 000000000..82a370f17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E1A925"; +const SiFnac = React__namespace.forwardRef(function SiFnac2({ title = "Fnac", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.874 7.2s-1.622-.106-1.684 1.369v.04c.062 1.476 1.684 1.39 1.684 1.39.737 0 1.137-.23 1.326-.652h.842l.232-1.495H22.18c-.19-.42-.569-.673-1.305-.652zm-4.59 1.516c-.147.19-.862.19-.862.19-.717.042-1.79.02-1.769.652.02.673.884.59 1.305.569.464-.021.863-.148 1.18-.548.294-.337.168-.842.146-.863.022-.021 0 0 0 0zM3.295 0l-1.01 6.358h.442c-.02-.19-.02-.97.547-1.474 0 0 .632-.632 2.485-.485 0 0 1.894.148 1.894 1.516H6.347s-.042-.757-1.22-.715c0 0-1.2-.021-1.096 1.137h3.621v.59c.106-.17.38-.443 1.074-.632 0 0 2.968-.654 3.284 1.474v2.989h-1.304V8.316C10.516 6.99 9.02 7.221 9.02 7.221c-1.011.084-1.306.673-1.369 1.095V10.8H6.347V7.263H4.052V10.8H2.747V7.263h-.59L.01 20.716 20.726 24l2.148-13.622c-.442.316-1.179.548-2.358.485-.484-.021-.863-.085-1.179-.21-.59-.21-1.536-.822-1.536-2.001v-.147c-.022-1.16.947-1.769 1.536-2 .316-.126.695-.17 1.18-.21 1.768-.106 2.525.483 2.841.989l.633-4.043zM16.37 10.799l-.043-.505v-.02c-.526.652-1.789.609-1.789.609-2.358.043-2.316-1.241-2.316-1.241-.19-1.348 1.537-1.327 2.968-1.41 1.432-.085 1.095-.653 1.095-.653-.063-.464-1.094-.506-1.094-.506-1.432-.105-1.453.757-1.453.757H12.39s0-1.136 1.411-1.452c.02 0 .842-.252 2.295 0 0 0 1.62.21 1.516 1.768l.042 2.674H16.37z" }) + ] + } + ); +}); + +exports.default = SiFnac; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.d.ts new file mode 100644 index 000000000..f3f0deb1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E1A925"; +declare const SiFnac: IconType; +export { SiFnac as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.mjs new file mode 100644 index 000000000..91c843374 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFnac.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E1A925"; +const SiFnac = React.forwardRef(function SiFnac2({ title = "Fnac", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.874 7.2s-1.622-.106-1.684 1.369v.04c.062 1.476 1.684 1.39 1.684 1.39.737 0 1.137-.23 1.326-.652h.842l.232-1.495H22.18c-.19-.42-.569-.673-1.305-.652zm-4.59 1.516c-.147.19-.862.19-.862.19-.717.042-1.79.02-1.769.652.02.673.884.59 1.305.569.464-.021.863-.148 1.18-.548.294-.337.168-.842.146-.863.022-.021 0 0 0 0zM3.295 0l-1.01 6.358h.442c-.02-.19-.02-.97.547-1.474 0 0 .632-.632 2.485-.485 0 0 1.894.148 1.894 1.516H6.347s-.042-.757-1.22-.715c0 0-1.2-.021-1.096 1.137h3.621v.59c.106-.17.38-.443 1.074-.632 0 0 2.968-.654 3.284 1.474v2.989h-1.304V8.316C10.516 6.99 9.02 7.221 9.02 7.221c-1.011.084-1.306.673-1.369 1.095V10.8H6.347V7.263H4.052V10.8H2.747V7.263h-.59L.01 20.716 20.726 24l2.148-13.622c-.442.316-1.179.548-2.358.485-.484-.021-.863-.085-1.179-.21-.59-.21-1.536-.822-1.536-2.001v-.147c-.022-1.16.947-1.769 1.536-2 .316-.126.695-.17 1.18-.21 1.768-.106 2.525.483 2.841.989l.633-4.043zM16.37 10.799l-.043-.505v-.02c-.526.652-1.789.609-1.789.609-2.358.043-2.316-1.241-2.316-1.241-.19-1.348 1.537-1.327 2.968-1.41 1.432-.085 1.095-.653 1.095-.653-.063-.464-1.094-.506-1.094-.506-1.432-.105-1.453.757-1.453.757H12.39s0-1.136 1.411-1.452c.02 0 .842-.252 2.295 0 0 0 1.62.21 1.516 1.768l.042 2.674H16.37z" }) + ] + } + ); +}); + +export { SiFnac as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.cjs new file mode 100644 index 000000000..8bad4034c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#77B829"; +const SiFolium = React__namespace.forwardRef(function SiFolium2({ title = "Folium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.209 17.302v.558h-.558v-.558h.558zm-1.116-.558v.558h.558v-.558h-.558zm1.116 1.116v.558h.558v-.558h-.558zm-1.674-1.674v.558h.558v-.558h-.558zm2.232 2.233v.558h.558v-.558h-.558zm.559-4.466v.558h.558v-.558h-.558zM9.767 2.791v.558h.558v-.558h-.558zm.559 5.581v.558h.558v-.558h-.558zm0 10.605v.558h.558v-.558h-.558zm-2.233-7.256v-.558h-.558v.558h.558zm1.116-4.465v-.558h-.558v.558h.558zm-.558-.558V6.14h-.558v.558h.558zm1.116 1.116v-.558h-.558v.558h.558zM8.093 6.14v-.559h-.558v.559h.558zm1.116 6.697v-.558h-.558v.558h.558zm1.117 1.116v-.558h-.559v.558h.559zm-1.675-1.674v-.558h-.558v.558h.558zm1.116 1.116v-.558h-.558v.558h.558zm.559-5.023v-.558h-.559v.558h.559zM6.977 18.977v.558h.558v-.558h-.558zm1.116-15.07h-.558v.558h.558v-.558zm0 16.186v.558h.558v-.558h-.558zm-.558-3.907v-.558h-.558v-4.465h.558v-.558h-.558V5.581h.558V4.465h-.558v.558h-.558v13.953h.558v-2.791h.558zm0 3.349v.558h.558v-.558h-.558zm1.116 1.116v.558h.558v-.558h-.558zm1.675 1.675v.558h.558v-.558h-.558zm-.559-.559v.558h.558v-.558h-.558zm-.558-.558v.558h.558v-.558h-.558zm1.117-19.535h-.559v.558h.558v-.558zm0 1.675v.558h.558v-.558h-.558zm-.559-1.116h-.558v.558h.558v-.558zm1.117-1.117h-.558v.558h.558v-.558zM9.209 2.791h-.558v.558h.558v-.558zm-.558.558h-.558v.558h.558v-.558zm5.023 15.628h.558v-.558h-.558v.558zm.559-16.186h-.558v.558h.558v-.558zm0 15.628h.558v-.559h-.558v.559zm-1.117 1.116h.558v-.558h-.558v.558zm2.233-7.256h-.558v.558h.558v-.558zm.558 4.465h.558v-.558h-.558v.558zm-1.116 1.116h.558v-.558h-.558v.558zm.558-.558h.558v-.558h-.558v.558zm-1.675-3.349h-.558v.558h.558v-.558zm.559-.558h-.558v.558h.558v-.558zm.558-6.139h-.558v.558h.558v-.558zm.558-.558h-.558v.558h.558v-.558zm.558-.558h-.558v.558h.558V6.14zm-2.233-2.791h-.558v.558h.558v-.558zm1.117 9.488h-.558v.558h.558v-.558zm1.116-1.116h-.558v.558h.558v-.558zm-1.674-3.907h-.558v.558h.558v-.558zm-.559.558h-.558v.558h.558v-.558zm-.558 14.512h.558v-.558h-.558v.558zm1.675-1.675h.558v-.558h-.558v.558zm-.558.558h.558v-.558h-.558v.558zm1.674-10.046h.558v-.558h-.558v.558zm-.558 8.93h.558v-.558h-.558v.558zm.558-.558h.558v-.558h-.558v.558zm1.116-15.07v-.558h-.558v1.116h.558v5.023h-.558v.558h.558v4.465h-.558v.558h.558v2.791h.558V5.023h-.558zm-.558 14.512h.558v-.558h-.558v.558zm-2.791 2.791h.558v-.558h-.558v.558zm2.791-17.861v-.558h-.558v.558h.558zm-.558-.558v-.558h-.558v.558h.558zm-.558-.558v-.558h-.558v.558h.558zm.558 2.791h.558v-.559h-.558v.559zm-2.233-4.466v-.558h-.558v.558h.558zm1.117 1.117v-.558h-.558v.558h.558zm-2.233 17.302h.558v-.558h-.558V15.07h.558v-.558h-.558V9.488h.558V8.93h-.558V4.465h.558v-.558h-.558V1.116h.558V.558h-.558V0h-1.116v.558h-.558v.558h.558v2.791h-.558v.558h.558V8.93h-.558v.558h.558v5.023h-.558v.558h.558v4.465h-.558v.558h.558v2.791h-.558v.558h.558V24h1.116v-.558h.558v-.558h-.558v-2.791zm1.675-17.86v-.559h-.558v.558h.558z" }) + ] + } + ); +}); + +exports.default = SiFolium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.d.ts new file mode 100644 index 000000000..ab4523777 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#77B829"; +declare const SiFolium: IconType; +export { SiFolium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.mjs new file mode 100644 index 000000000..02764c2e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFolium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#77B829"; +const SiFolium = React.forwardRef(function SiFolium2({ title = "Folium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.209 17.302v.558h-.558v-.558h.558zm-1.116-.558v.558h.558v-.558h-.558zm1.116 1.116v.558h.558v-.558h-.558zm-1.674-1.674v.558h.558v-.558h-.558zm2.232 2.233v.558h.558v-.558h-.558zm.559-4.466v.558h.558v-.558h-.558zM9.767 2.791v.558h.558v-.558h-.558zm.559 5.581v.558h.558v-.558h-.558zm0 10.605v.558h.558v-.558h-.558zm-2.233-7.256v-.558h-.558v.558h.558zm1.116-4.465v-.558h-.558v.558h.558zm-.558-.558V6.14h-.558v.558h.558zm1.116 1.116v-.558h-.558v.558h.558zM8.093 6.14v-.559h-.558v.559h.558zm1.116 6.697v-.558h-.558v.558h.558zm1.117 1.116v-.558h-.559v.558h.559zm-1.675-1.674v-.558h-.558v.558h.558zm1.116 1.116v-.558h-.558v.558h.558zm.559-5.023v-.558h-.559v.558h.559zM6.977 18.977v.558h.558v-.558h-.558zm1.116-15.07h-.558v.558h.558v-.558zm0 16.186v.558h.558v-.558h-.558zm-.558-3.907v-.558h-.558v-4.465h.558v-.558h-.558V5.581h.558V4.465h-.558v.558h-.558v13.953h.558v-2.791h.558zm0 3.349v.558h.558v-.558h-.558zm1.116 1.116v.558h.558v-.558h-.558zm1.675 1.675v.558h.558v-.558h-.558zm-.559-.559v.558h.558v-.558h-.558zm-.558-.558v.558h.558v-.558h-.558zm1.117-19.535h-.559v.558h.558v-.558zm0 1.675v.558h.558v-.558h-.558zm-.559-1.116h-.558v.558h.558v-.558zm1.117-1.117h-.558v.558h.558v-.558zM9.209 2.791h-.558v.558h.558v-.558zm-.558.558h-.558v.558h.558v-.558zm5.023 15.628h.558v-.558h-.558v.558zm.559-16.186h-.558v.558h.558v-.558zm0 15.628h.558v-.559h-.558v.559zm-1.117 1.116h.558v-.558h-.558v.558zm2.233-7.256h-.558v.558h.558v-.558zm.558 4.465h.558v-.558h-.558v.558zm-1.116 1.116h.558v-.558h-.558v.558zm.558-.558h.558v-.558h-.558v.558zm-1.675-3.349h-.558v.558h.558v-.558zm.559-.558h-.558v.558h.558v-.558zm.558-6.139h-.558v.558h.558v-.558zm.558-.558h-.558v.558h.558v-.558zm.558-.558h-.558v.558h.558V6.14zm-2.233-2.791h-.558v.558h.558v-.558zm1.117 9.488h-.558v.558h.558v-.558zm1.116-1.116h-.558v.558h.558v-.558zm-1.674-3.907h-.558v.558h.558v-.558zm-.559.558h-.558v.558h.558v-.558zm-.558 14.512h.558v-.558h-.558v.558zm1.675-1.675h.558v-.558h-.558v.558zm-.558.558h.558v-.558h-.558v.558zm1.674-10.046h.558v-.558h-.558v.558zm-.558 8.93h.558v-.558h-.558v.558zm.558-.558h.558v-.558h-.558v.558zm1.116-15.07v-.558h-.558v1.116h.558v5.023h-.558v.558h.558v4.465h-.558v.558h.558v2.791h.558V5.023h-.558zm-.558 14.512h.558v-.558h-.558v.558zm-2.791 2.791h.558v-.558h-.558v.558zm2.791-17.861v-.558h-.558v.558h.558zm-.558-.558v-.558h-.558v.558h.558zm-.558-.558v-.558h-.558v.558h.558zm.558 2.791h.558v-.559h-.558v.559zm-2.233-4.466v-.558h-.558v.558h.558zm1.117 1.117v-.558h-.558v.558h.558zm-2.233 17.302h.558v-.558h-.558V15.07h.558v-.558h-.558V9.488h.558V8.93h-.558V4.465h.558v-.558h-.558V1.116h.558V.558h-.558V0h-1.116v.558h-.558v.558h.558v2.791h-.558v.558h.558V8.93h-.558v.558h.558v5.023h-.558v.558h.558v4.465h-.558v.558h.558v2.791h-.558v.558h.558V24h1.116v-.558h.558v-.558h-.558v-2.791zm1.675-17.86v-.559h-.558v.558h.558z" }) + ] + } + ); +}); + +export { SiFolium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.cjs new file mode 100644 index 000000000..9a6076846 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5C00"; +const SiFolo = React__namespace.forwardRef(function SiFolo2({ title = "Folo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.382 0h13.236A5.37 5.37 0 0 1 24 5.383v13.235A5.37 5.37 0 0 1 18.618 24H5.382A5.37 5.37 0 0 1 0 18.618V5.383A5.37 5.37 0 0 1 5.382.001Zm7.887 17.31a1.813 1.813 0 1 0-3.626.002 1.813 1.813 0 0 0 3.626-.002m-.535-6.527H7.213a1.813 1.813 0 1 0 0 3.624h5.521a1.813 1.813 0 1 0 0-3.624m4.417-4.712H8.87a1.813 1.813 0 1 0 0 3.625h8.283a1.813 1.813 0 1 0 0-3.624z" }) + ] + } + ); +}); + +exports.default = SiFolo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.d.ts new file mode 100644 index 000000000..552c272f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5C00"; +declare const SiFolo: IconType; +export { SiFolo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.mjs new file mode 100644 index 000000000..8685e8df8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFolo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5C00"; +const SiFolo = React.forwardRef(function SiFolo2({ title = "Folo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.382 0h13.236A5.37 5.37 0 0 1 24 5.383v13.235A5.37 5.37 0 0 1 18.618 24H5.382A5.37 5.37 0 0 1 0 18.618V5.383A5.37 5.37 0 0 1 5.382.001Zm7.887 17.31a1.813 1.813 0 1 0-3.626.002 1.813 1.813 0 0 0 3.626-.002m-.535-6.527H7.213a1.813 1.813 0 1 0 0 3.624h5.521a1.813 1.813 0 1 0 0-3.624m4.417-4.712H8.87a1.813 1.813 0 1 0 0 3.625h8.283a1.813 1.813 0 1 0 0-3.624z" }) + ] + } + ); +}); + +export { SiFolo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.cjs new file mode 100644 index 000000000..73433d945 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02B78F"; +const SiFonoma = React__namespace.forwardRef(function SiFonoma2({ title = "Fonoma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.706 21.919a4.295 4.295 0 0 0 4.293-4.296 4.295 4.295 0 1 0-4.293 4.296zM4.296 10.672a4.295 4.295 0 0 0 4.293-4.295 4.295 4.295 0 1 0-4.294 4.295zm10.412 0h4.975a4.277 4.277 0 0 0 4.293-4.295 4.277 4.277 0 0 0-4.293-4.296h-4.975a4.277 4.277 0 0 0-4.294 4.296 4.277 4.277 0 0 0 4.294 4.295zM4.295 21.92h4.976a4.277 4.277 0 0 0 4.293-4.296 4.277 4.277 0 0 0-4.293-4.295H4.295a4.277 4.277 0 0 0-4.293 4.295c.068 2.318 1.976 4.296 4.293 4.296z" }) + ] + } + ); +}); + +exports.default = SiFonoma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.d.ts new file mode 100644 index 000000000..31b2c2ddd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02B78F"; +declare const SiFonoma: IconType; +export { SiFonoma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.mjs new file mode 100644 index 000000000..bcd4f54a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFonoma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02B78F"; +const SiFonoma = React.forwardRef(function SiFonoma2({ title = "Fonoma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.706 21.919a4.295 4.295 0 0 0 4.293-4.296 4.295 4.295 0 1 0-4.293 4.296zM4.296 10.672a4.295 4.295 0 0 0 4.293-4.295 4.295 4.295 0 1 0-4.294 4.295zm10.412 0h4.975a4.277 4.277 0 0 0 4.293-4.295 4.277 4.277 0 0 0-4.293-4.296h-4.975a4.277 4.277 0 0 0-4.294 4.296 4.277 4.277 0 0 0 4.294 4.295zM4.295 21.92h4.976a4.277 4.277 0 0 0 4.293-4.296 4.277 4.277 0 0 0-4.293-4.295H4.295a4.277 4.277 0 0 0-4.293 4.295c.068 2.318 1.976 4.296 4.293 4.296z" }) + ] + } + ); +}); + +export { SiFonoma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.cjs new file mode 100644 index 000000000..cf7dc4996 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#538DD7"; +const SiFontawesome = React__namespace.forwardRef(function SiFontawesome2({ title = "Font Awesome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.3934 4.5c.6837-.4317 1.1379-1.194 1.1379-2.0625C5.5313 1.0913 4.4398 0 3.0938 0 1.7475 0 .6563 1.0913.6563 2.4375c0 .7805.3668 1.4753.9375 1.9214V24h3v-3h17.5126c.6834 0 1.2373-.554 1.2373-1.2373a1.237 1.237 0 0 0-.1066-.5027l-2.8934-6.51 2.8934-6.51a1.237 1.237 0 0 0 .1066-.5026c0-.6834-.5539-1.2374-1.2373-1.2374Z" }) + ] + } + ); +}); + +exports.default = SiFontawesome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.d.ts new file mode 100644 index 000000000..90c4a30a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#538DD7"; +declare const SiFontawesome: IconType; +export { SiFontawesome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.mjs new file mode 100644 index 000000000..fe2a2a6e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontawesome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#538DD7"; +const SiFontawesome = React.forwardRef(function SiFontawesome2({ title = "Font Awesome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.3934 4.5c.6837-.4317 1.1379-1.194 1.1379-2.0625C5.5313 1.0913 4.4398 0 3.0938 0 1.7475 0 .6563 1.0913.6563 2.4375c0 .7805.3668 1.4753.9375 1.9214V24h3v-3h17.5126c.6834 0 1.2373-.554 1.2373-1.2373a1.237 1.237 0 0 0-.1066-.5027l-2.8934-6.51 2.8934-6.51a1.237 1.237 0 0 0 .1066-.5026c0-.6834-.5539-1.2374-1.2373-1.2374Z" }) + ] + } + ); +}); + +export { SiFontawesome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.cjs new file mode 100644 index 000000000..73c61fc53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3D03A7"; +const SiFontbase = React__namespace.forwardRef(function SiFontbase2({ title = "FontBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.079 13.996c-2.702-2.771-5.702-5.703-8.105-8.103-1.62-1.621-4.284-1.621-5.943 0-2.97 2.963-5.248 5.21-8.104 8.066a3.12 3.12 0 0 0 0 4.437 3.12 3.12 0 0 0 4.437 0l2.2-2.2 2.2 2.2a3.12 3.12 0 0 0 4.438 0 3.12 3.12 0 0 0 0-4.438l4.4 4.4a3.12 3.12 0 0 0 4.438 0c1.274-1.16 1.274-3.165.039-4.362z" }) + ] + } + ); +}); + +exports.default = SiFontbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.d.ts new file mode 100644 index 000000000..b3a192ca9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3D03A7"; +declare const SiFontbase: IconType; +export { SiFontbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.mjs new file mode 100644 index 000000000..c3528e68d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3D03A7"; +const SiFontbase = React.forwardRef(function SiFontbase2({ title = "FontBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.079 13.996c-2.702-2.771-5.702-5.703-8.105-8.103-1.62-1.621-4.284-1.621-5.943 0-2.97 2.963-5.248 5.21-8.104 8.066a3.12 3.12 0 0 0 0 4.437 3.12 3.12 0 0 0 4.437 0l2.2-2.2 2.2 2.2a3.12 3.12 0 0 0 4.438 0 3.12 3.12 0 0 0 0-4.438l4.4 4.4a3.12 3.12 0 0 0 4.438 0c1.274-1.16 1.274-3.165.039-4.362z" }) + ] + } + ); +}); + +export { SiFontbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.cjs new file mode 100644 index 000000000..a9c084177 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2712B"; +const SiFontforge = React__namespace.forwardRef(function SiFontforge2({ title = "FontForge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0Zm6.32 7.04c-.602 0-.305-1.375-1.156-1.375-.696 0-1.274 1.836-1.563 3.437h1.5c.172 0 .203.125.203.258 0 .359-.164.664-.46.664h-1.477s-.679 3.212-1.18 5.218c-.201.806-.527 1.439-.92 1.93l.02.01 2.461-2.272-.383-.016a.003.003 0 0 1-.002 0v-.003l.013-.337c0-.001.001-.002.003-.002l.614.024.024-.614.001-.002h.002l.337.013c.002 0 .003.002.003.003l-.025.614.614.024.002.001v.002l-.013.337a.003.003 0 0 1-.003.003l-.614-.024-.024.613v.002l-.003.001-.332-.013h-.005a.003.003 0 0 1-.002-.001.003.003 0 0 1 0-.002l.014-.36-2.448 2.26a.633.633 0 0 1-.268.854.631.631 0 0 1-.485.044.631.631 0 0 1-.147-.067l-2.389 2.205.34.013c.001 0 .003.002.003.004l-.014.337a.003.003 0 0 1-.003.002l-.614-.024-.024.613a.003.003 0 0 1-.003.003h-.001l-.336-.013a.003.003 0 0 1-.003-.003l.024-.614-.613-.024a.003.003 0 0 1-.003-.003l.013-.337c0-.002.002-.003.003-.003l.614.024.024-.613a.003.003 0 0 1 .001-.002l.002-.001.338.013.002.001v.002l-.016.403 2.424-2.237-.008-.016c-.758.515-1.59.7-2.233.7-.617 0-1.274-.218-1.711-.671-.586.601-1.476 1.078-2.43 1.078-.468 0-1.25-.313-1.25-.906 0-.336.337-.844.696-.844.633 0 .71.687 1.422.687.343 0 .582-.094.867-1.124.625-2.258 1.57-6.89 1.57-6.89H8.196c-.18 0-.203-.11-.203-.227 0-.312.117-.695.515-.695h1.04c.57-1.96 1.835-3.796 4.163-3.796.75 0 1.437.25 1.78.68.844-.852 1.633-1.087 2.313-1.087 1.094 0 1.437.696 1.437 1.156 0 .578-.367.985-.921.985zm-8.415 7.975c-.247.953-.454 1.488-.67 1.938.445.523 1.023.788 1.523.788.61 0 1.094-.203 1.39-1.265.703-2.53 1.485-6.452 1.485-6.452h-2.578c-.375 1.728-.787 3.591-1.15 4.991zm3.196-8.928c-1.101 0-1.601 1.827-1.843 3.015h2.609a9.07 9.07 0 0 1 .836-2.055c-.375-.593-1.024-.96-1.602-.96Z" }) + ] + } + ); +}); + +exports.default = SiFontforge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.d.ts new file mode 100644 index 000000000..7370463c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2712B"; +declare const SiFontforge: IconType; +export { SiFontforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.mjs new file mode 100644 index 000000000..31ca5e032 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFontforge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2712B"; +const SiFontforge = React.forwardRef(function SiFontforge2({ title = "FontForge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0Zm6.32 7.04c-.602 0-.305-1.375-1.156-1.375-.696 0-1.274 1.836-1.563 3.437h1.5c.172 0 .203.125.203.258 0 .359-.164.664-.46.664h-1.477s-.679 3.212-1.18 5.218c-.201.806-.527 1.439-.92 1.93l.02.01 2.461-2.272-.383-.016a.003.003 0 0 1-.002 0v-.003l.013-.337c0-.001.001-.002.003-.002l.614.024.024-.614.001-.002h.002l.337.013c.002 0 .003.002.003.003l-.025.614.614.024.002.001v.002l-.013.337a.003.003 0 0 1-.003.003l-.614-.024-.024.613v.002l-.003.001-.332-.013h-.005a.003.003 0 0 1-.002-.001.003.003 0 0 1 0-.002l.014-.36-2.448 2.26a.633.633 0 0 1-.268.854.631.631 0 0 1-.485.044.631.631 0 0 1-.147-.067l-2.389 2.205.34.013c.001 0 .003.002.003.004l-.014.337a.003.003 0 0 1-.003.002l-.614-.024-.024.613a.003.003 0 0 1-.003.003h-.001l-.336-.013a.003.003 0 0 1-.003-.003l.024-.614-.613-.024a.003.003 0 0 1-.003-.003l.013-.337c0-.002.002-.003.003-.003l.614.024.024-.613a.003.003 0 0 1 .001-.002l.002-.001.338.013.002.001v.002l-.016.403 2.424-2.237-.008-.016c-.758.515-1.59.7-2.233.7-.617 0-1.274-.218-1.711-.671-.586.601-1.476 1.078-2.43 1.078-.468 0-1.25-.313-1.25-.906 0-.336.337-.844.696-.844.633 0 .71.687 1.422.687.343 0 .582-.094.867-1.124.625-2.258 1.57-6.89 1.57-6.89H8.196c-.18 0-.203-.11-.203-.227 0-.312.117-.695.515-.695h1.04c.57-1.96 1.835-3.796 4.163-3.796.75 0 1.437.25 1.78.68.844-.852 1.633-1.087 2.313-1.087 1.094 0 1.437.696 1.437 1.156 0 .578-.367.985-.921.985zm-8.415 7.975c-.247.953-.454 1.488-.67 1.938.445.523 1.023.788 1.523.788.61 0 1.094-.203 1.39-1.265.703-2.53 1.485-6.452 1.485-6.452h-2.578c-.375 1.728-.787 3.591-1.15 4.991zm3.196-8.928c-1.101 0-1.601 1.827-1.843 3.015h2.609a9.07 9.07 0 0 1 .836-2.055c-.375-.593-1.024-.96-1.602-.96Z" }) + ] + } + ); +}); + +export { SiFontforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.cjs new file mode 100644 index 000000000..3a95c1bb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFoobar2000 = React__namespace.forwardRef(function SiFoobar20002({ title = "foobar2000", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.3824 7.6193 15.3809 0l-2.3955 5.1661c-.5091-.1745-1.4618-.1757-1.9709 0L8.6191 0 5.6176 7.6193c-.8457 2.1469-1.6218 4.3796 0 6.8113.597.8951 6.3758 9.5793 6.3824 9.5694l6.3824-9.5694c1.6219-2.4317.8458-4.6644 0-6.8113zm-5.0072 7.2514c-.3362-.2978-.4172-.8447-.2281-1.54.1893-.696.626-1.4546 1.2295-2.136.6035-.6814 1.3039-1.2064 1.972-1.4784.6673-.2717 1.22-.2572 1.5562.0406.3362.2978.4172.8447.2281 1.5399-.1893.696-.626 1.4546-1.2296 2.136-.6035.6814-1.3039 1.2064-1.9719 1.4784-.6673.2717-1.2199.2573-1.5562-.0405zm.4448 4.8335c-.1573.0906-.3757.0798-.4889-.1165l-1.3283-2.3038L12 17.279l-1.3329 2.3114c-.0627.1087-.1625.1686-.2812.1686-.1385 0-.2784-.0811-.348-.2018-.0601-.1042-.0583-.2219.005-.3313l1.5555-2.6884c.0825-.1425.232-.2275.3999-.2275h.0004c.1703.0001.3216.0864.4048.2308l1.5477 2.6856c.1197.2073.0158.393-.1312.4778zm-4.7515-4.7929c-.6681-.272-1.3684-.797-1.9719-1.4784-.6035-.6814-1.0402-1.44-1.2295-2.136-.1892-.6952-.1081-1.2421.2281-1.5399.1762-.1561.4119-.2343.6924-.2343.2546 0 .5463.0645.8638.1938.6681.272 1.3684.797 1.9719 1.4784.6036.6814 1.0402 1.44 1.2295 2.136.1891.6952.1081 1.2421-.2281 1.54-.3361.2976-.8888.312-1.5562.0404z" }) + ] + } + ); +}); + +exports.default = SiFoobar2000; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.d.ts new file mode 100644 index 000000000..152272ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFoobar2000: IconType; +export { SiFoobar2000 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.mjs new file mode 100644 index 000000000..27f7c9755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoobar2000.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFoobar2000 = React.forwardRef(function SiFoobar20002({ title = "foobar2000", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.3824 7.6193 15.3809 0l-2.3955 5.1661c-.5091-.1745-1.4618-.1757-1.9709 0L8.6191 0 5.6176 7.6193c-.8457 2.1469-1.6218 4.3796 0 6.8113.597.8951 6.3758 9.5793 6.3824 9.5694l6.3824-9.5694c1.6219-2.4317.8458-4.6644 0-6.8113zm-5.0072 7.2514c-.3362-.2978-.4172-.8447-.2281-1.54.1893-.696.626-1.4546 1.2295-2.136.6035-.6814 1.3039-1.2064 1.972-1.4784.6673-.2717 1.22-.2572 1.5562.0406.3362.2978.4172.8447.2281 1.5399-.1893.696-.626 1.4546-1.2296 2.136-.6035.6814-1.3039 1.2064-1.9719 1.4784-.6673.2717-1.2199.2573-1.5562-.0405zm.4448 4.8335c-.1573.0906-.3757.0798-.4889-.1165l-1.3283-2.3038L12 17.279l-1.3329 2.3114c-.0627.1087-.1625.1686-.2812.1686-.1385 0-.2784-.0811-.348-.2018-.0601-.1042-.0583-.2219.005-.3313l1.5555-2.6884c.0825-.1425.232-.2275.3999-.2275h.0004c.1703.0001.3216.0864.4048.2308l1.5477 2.6856c.1197.2073.0158.393-.1312.4778zm-4.7515-4.7929c-.6681-.272-1.3684-.797-1.9719-1.4784-.6035-.6814-1.0402-1.44-1.2295-2.136-.1892-.6952-.1081-1.2421.2281-1.5399.1762-.1561.4119-.2343.6924-.2343.2546 0 .5463.0645.8638.1938.6681.272 1.3684.797 1.9719 1.4784.6036.6814 1.0402 1.44 1.2295 2.136.1891.6952.1081 1.2421-.2281 1.54-.3361.2976-.8888.312-1.5562.0404z" }) + ] + } + ); +}); + +export { SiFoobar2000 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.cjs new file mode 100644 index 000000000..82aad9fea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D70F64"; +const SiFoodpanda = React__namespace.forwardRef(function SiFoodpanda2({ title = "foodpanda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.224 0a3.14 3.14 0 00-3.14 3.127 3.1 3.1 0 001.079 2.36 11.811 11.811 0 00-2.037 6.639C.126 18.68 5.458 24 12 24c6.542 0 11.874-5.32 11.874-11.874a11.69 11.69 0 00-2.025-6.614 3.136 3.136 0 001.09-2.373A3.132 3.132 0 0019.8.012a3.118 3.118 0 00-2.636 1.438A11.792 11.792 0 0012.012.264c-1.845 0-3.595.419-5.152 1.174A3.133 3.133 0 004.224 0zM12 1.198c1.713 0 3.331.396 4.78 1.102a10.995 10.995 0 014.29 3.715 10.89 10.89 0 011.882 6.135c.011 6.039-4.901 10.951-10.94 10.951-6.04 0-10.951-4.912-10.951-10.951 0-2.277.694-4.386 1.88-6.135A11.08 11.08 0 017.232 2.3 10.773 10.773 0 0112 1.198zM7.367 6.345c-.853.012-1.743.292-2.28.653-1.031.682-2.29 2.156-2.085 4.181.191 2.025 1.785 3.283 2.612 3.283.826 0 1.234-.42 1.485-1.45.252-1.018 1.115-2.192 2.217-3.45s-.024-2.469-.024-2.469c-.393-.513-1.052-.727-1.755-.747a3.952 3.952 0 00-.17-.001zm9.233.007l-.17.001c-.702.02-1.358.233-1.746.752 0 0-1.126 1.21-.024 2.469 1.114 1.258 1.965 2.432 2.217 3.45.251 1.019.659 1.438 1.485 1.45.827 0 2.409-1.258 2.612-3.283.204-2.025-1.054-3.51-2.084-4.182-.544-.36-1.437-.643-2.29-.657zm-8.962 2c.348 0 .624.275.624.623-.012.335-.288.623-.624.623a.619.619 0 01-.623-.623c0-.348.276-.624.623-.624zm8.891 0c.348 0 .623.275.623.623-.012.335-.287.623-.623.623a.619.619 0 01-.623-.623c0-.348.288-.624.623-.624zm-4.541 4.025c-.527 0-2.06.096-2.06.587 0 .887 1.88 1.522 2.06 1.474.18.048 2.06-.587 2.06-1.474 0-.49-1.52-.587-2.06-.587zM9.076 15.17c0 1.414 1.294 2.564 2.912 2.564 1.618 0 2.924-1.15 2.924-2.564z" }) + ] + } + ); +}); + +exports.default = SiFoodpanda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.d.ts new file mode 100644 index 000000000..44a851e19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D70F64"; +declare const SiFoodpanda: IconType; +export { SiFoodpanda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.mjs new file mode 100644 index 000000000..a701ab6c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoodpanda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D70F64"; +const SiFoodpanda = React.forwardRef(function SiFoodpanda2({ title = "foodpanda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.224 0a3.14 3.14 0 00-3.14 3.127 3.1 3.1 0 001.079 2.36 11.811 11.811 0 00-2.037 6.639C.126 18.68 5.458 24 12 24c6.542 0 11.874-5.32 11.874-11.874a11.69 11.69 0 00-2.025-6.614 3.136 3.136 0 001.09-2.373A3.132 3.132 0 0019.8.012a3.118 3.118 0 00-2.636 1.438A11.792 11.792 0 0012.012.264c-1.845 0-3.595.419-5.152 1.174A3.133 3.133 0 004.224 0zM12 1.198c1.713 0 3.331.396 4.78 1.102a10.995 10.995 0 014.29 3.715 10.89 10.89 0 011.882 6.135c.011 6.039-4.901 10.951-10.94 10.951-6.04 0-10.951-4.912-10.951-10.951 0-2.277.694-4.386 1.88-6.135A11.08 11.08 0 017.232 2.3 10.773 10.773 0 0112 1.198zM7.367 6.345c-.853.012-1.743.292-2.28.653-1.031.682-2.29 2.156-2.085 4.181.191 2.025 1.785 3.283 2.612 3.283.826 0 1.234-.42 1.485-1.45.252-1.018 1.115-2.192 2.217-3.45s-.024-2.469-.024-2.469c-.393-.513-1.052-.727-1.755-.747a3.952 3.952 0 00-.17-.001zm9.233.007l-.17.001c-.702.02-1.358.233-1.746.752 0 0-1.126 1.21-.024 2.469 1.114 1.258 1.965 2.432 2.217 3.45.251 1.019.659 1.438 1.485 1.45.827 0 2.409-1.258 2.612-3.283.204-2.025-1.054-3.51-2.084-4.182-.544-.36-1.437-.643-2.29-.657zm-8.962 2c.348 0 .624.275.624.623-.012.335-.288.623-.624.623a.619.619 0 01-.623-.623c0-.348.276-.624.623-.624zm8.891 0c.348 0 .623.275.623.623-.012.335-.287.623-.623.623a.619.619 0 01-.623-.623c0-.348.288-.624.623-.624zm-4.541 4.025c-.527 0-2.06.096-2.06.587 0 .887 1.88 1.522 2.06 1.474.18.048 2.06-.587 2.06-1.474 0-.49-1.52-.587-2.06-.587zM9.076 15.17c0 1.414 1.294 2.564 2.912 2.564 1.618 0 2.924-1.15 2.924-2.564z" }) + ] + } + ); +}); + +export { SiFoodpanda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFord.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFord.cjs new file mode 100644 index 000000000..e60e4675b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFord.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00274E"; +const SiFord = React__namespace.forwardRef(function SiFord2({ title = "Ford", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 8.236C5.872 8.236.905 9.93.905 12.002S5.872 15.767 12 15.767c6.127 0 11.094-1.693 11.094-3.765 0-2.073-4.967-3.766-11.094-3.766zm-5.698 6.24c-.656.005-1.233-.4-1.3-1.101a1.415 1.415 0 0 1 .294-1.02c.195-.254.525-.465.804-.517.09-.017.213-.006.264.054.079.093.056.194-.023.234-.213.109-.47.295-.597.55a.675.675 0 0 0 .034.696c.263.397.997.408 1.679-.225.169-.156.32-.304.473-.48.3-.344.4-.47.8-1.024.005-.006.006-.014.004-.018-.003-.007-.009-.01-.02-.01-.267.007-.5.087-.725.255-.065.048-.159.041-.2-.021-.046-.07-.013-.163.062-.215.363-.253.76-.298 1.166-.367 0 0 .028.002.051-.03.167-.213.292-.405.47-.621.178-.22.41-.42.586-.572.246-.212.404-.283.564-.37.043-.022-.005-.049-.018-.049-.896-.168-1.827-.386-2.717-.056-.616.23-.887.718-.757 1.045.093.231.397.27.683.13a1.55 1.55 0 0 0 .611-.544c.087-.134.27-.038.171.195-.26.611-.757 1.097-1.363 1.118-.516.016-.849-.363-.848-.831.002-.924 1.03-1.532 2.11-1.622 1.301-.108 2.533.239 3.825.395.989.12 1.938.123 2.932-.106.118-.025.2.05.193.168-.01.172-.143.337-.47.516-.373.204-.763.266-1.17.27-.984.008-1.901-.376-2.85-.582.002.041.012.091-.023.117-.525.388-1 .782-1.318 1.334-.011.013-.005.025.013.024.277-.015.525-.022.783-.042.045-.004.047-.015.043-.048a.64.64 0 0 1 .2-.558c.172-.153.387-.17.53-.06.16.126.147.353.058.523a.63.63 0 0 1-.382.31s-.03.006-.026.034c.006.043.2.151.217.18.017.027.008.07-.021.102a.123.123 0 0 1-.095.045c-.033 0-.053-.012-.096-.035a.92.92 0 0 1-.27-.217c-.024-.031-.037-.032-.099-.029-.279.017-.714.059-1.009.096-.071.008-.082.022-.096.047-.47.775-.972 1.61-1.523 2.17-.592.6-1.083.758-1.604.762zM19.05 10.71c-.091.158-1.849 2.834-1.96 3.11-.035.088-.04.155-.004.204.092.124.297.051.425-.038.381-.262.645-.58.937-.858.017-.013.046-.018.065 0 .043.04.106.091.15.137a.04.04 0 0 1 .002.057 5.873 5.873 0 0 1-.904.911c-.47.364-.939.457-1.172.224a.508.508 0 0 1-.14-.316c-.002-.057-.031-.06-.058-.034-.278.275-.76.579-1.198.362-.366-.18-.451-.618-.383-.986.001-.008-.006-.06-.051-.03a1.28 1.28 0 0 1-.3.162.853.853 0 0 1-.366.077.518.518 0 0 1-.451-.253.759.759 0 0 1-.095-.347c-.001-.011-.017-.032-.033-.005-.3.457-.579.899-.875 1.363-.016.022-.03.036-.06.037l-.587.001c-.036 0-.053-.028-.034-.063.104-.2.674-1.03 1.06-1.736.107-.194.085-.294.019-.337-.083-.054-.248.027-.387.133-.379.287-.697.735-.859.935-.095.117-.185.291-.433.56-.391.425-.91.669-1.408.5a.848.848 0 0 1-.546-.58c-.015-.052-.044-.066-.073-.032-.08.1-.245.249-.383.342-.015.011-.052.033-.084.017a.851.851 0 0 1-.152-.199.07.07 0 0 1 .016-.08c.197-.173.305-.271.391-.38.064-.08.113-.17.17-.315.12-.302.393-.866.938-1.158a1.81 1.81 0 0 1 .652-.219c.1-.01.183.002.213.08.011.033.039.105.056.158.011.032.003.057-.035.071-.32.122-.643.311-.865.61-.253.338-.321.746-.152.98.123.17.322.2.514.139.29-.092.538-.363.666-.663.138-.329.16-.717.058-1.059-.016-.059-.001-.104.037-.136.077-.063.184-.112.215-.128a.14.14 0 0 1 .182.045c.106.157.163.378.17.607.006.049.026.05.05.025.19-.202.366-.418.568-.58.185-.147.422-.267.643-.262.286.006.428.2.419.546-.001.044.03.04.051.011a1.19 1.19 0 0 1 .24-.264c.198-.163.4-.236.611-.222.26.02.468.257.425.527a.53.53 0 0 1-.281.406.362.362 0 0 1-.405-.044.336.336 0 0 1-.096-.322c.005-.025-.027-.048-.054-.02-.254.264-.273.606-.107.76.183.17.458.056.658-.075.366-.239.65-.563.979-.813.218-.166.467-.314.746-.351a.87.87 0 0 1 .454.052c.2.081.326.25.342.396.004.043.036.048.063.01.158-.246 1.005-1.517 1.075-1.65.02-.041.044-.047.089-.047h.606c.035 0 .051.02.036.047zm-2.32 2.204a.053.053 0 0 0-.003.04c.003.02.03.04.056.05.01.003.015.01.004.032-.075.16-.143.252-.237.391a1.472 1.472 0 0 1-.3.325c-.178.147-.424.307-.628.2-.09-.047-.13-.174-.127-.276.004-.288.132-.584.369-.875.288-.355.607-.539.816-.438.216.103.148.354.05.55zm-5.949-1.881a.398.398 0 0 1 .132-.345c.057-.05.133-.062.18-.022.052.045.027.157-.026.234a.43.43 0 0 1-.245.177c-.018.004-.034-.004-.041-.044zM12 7.5C5.34 7.5 0 9.497 0 12c0 2.488 5.383 4.5 12 4.5s12-2.02 12-4.5-5.383-4.5-12-4.5zm0 8.608C5.649 16.108.5 14.27.5 12.002.5 9.733 5.65 7.895 12 7.895s11.498 1.838 11.498 4.107c0 2.268-5.148 4.106-11.498 4.106z" }) + ] + } + ); +}); + +exports.default = SiFord; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFord.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFord.d.ts new file mode 100644 index 000000000..92acbe141 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFord.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00274E"; +declare const SiFord: IconType; +export { SiFord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFord.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFord.mjs new file mode 100644 index 000000000..536f86fa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFord.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00274E"; +const SiFord = React.forwardRef(function SiFord2({ title = "Ford", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 8.236C5.872 8.236.905 9.93.905 12.002S5.872 15.767 12 15.767c6.127 0 11.094-1.693 11.094-3.765 0-2.073-4.967-3.766-11.094-3.766zm-5.698 6.24c-.656.005-1.233-.4-1.3-1.101a1.415 1.415 0 0 1 .294-1.02c.195-.254.525-.465.804-.517.09-.017.213-.006.264.054.079.093.056.194-.023.234-.213.109-.47.295-.597.55a.675.675 0 0 0 .034.696c.263.397.997.408 1.679-.225.169-.156.32-.304.473-.48.3-.344.4-.47.8-1.024.005-.006.006-.014.004-.018-.003-.007-.009-.01-.02-.01-.267.007-.5.087-.725.255-.065.048-.159.041-.2-.021-.046-.07-.013-.163.062-.215.363-.253.76-.298 1.166-.367 0 0 .028.002.051-.03.167-.213.292-.405.47-.621.178-.22.41-.42.586-.572.246-.212.404-.283.564-.37.043-.022-.005-.049-.018-.049-.896-.168-1.827-.386-2.717-.056-.616.23-.887.718-.757 1.045.093.231.397.27.683.13a1.55 1.55 0 0 0 .611-.544c.087-.134.27-.038.171.195-.26.611-.757 1.097-1.363 1.118-.516.016-.849-.363-.848-.831.002-.924 1.03-1.532 2.11-1.622 1.301-.108 2.533.239 3.825.395.989.12 1.938.123 2.932-.106.118-.025.2.05.193.168-.01.172-.143.337-.47.516-.373.204-.763.266-1.17.27-.984.008-1.901-.376-2.85-.582.002.041.012.091-.023.117-.525.388-1 .782-1.318 1.334-.011.013-.005.025.013.024.277-.015.525-.022.783-.042.045-.004.047-.015.043-.048a.64.64 0 0 1 .2-.558c.172-.153.387-.17.53-.06.16.126.147.353.058.523a.63.63 0 0 1-.382.31s-.03.006-.026.034c.006.043.2.151.217.18.017.027.008.07-.021.102a.123.123 0 0 1-.095.045c-.033 0-.053-.012-.096-.035a.92.92 0 0 1-.27-.217c-.024-.031-.037-.032-.099-.029-.279.017-.714.059-1.009.096-.071.008-.082.022-.096.047-.47.775-.972 1.61-1.523 2.17-.592.6-1.083.758-1.604.762zM19.05 10.71c-.091.158-1.849 2.834-1.96 3.11-.035.088-.04.155-.004.204.092.124.297.051.425-.038.381-.262.645-.58.937-.858.017-.013.046-.018.065 0 .043.04.106.091.15.137a.04.04 0 0 1 .002.057 5.873 5.873 0 0 1-.904.911c-.47.364-.939.457-1.172.224a.508.508 0 0 1-.14-.316c-.002-.057-.031-.06-.058-.034-.278.275-.76.579-1.198.362-.366-.18-.451-.618-.383-.986.001-.008-.006-.06-.051-.03a1.28 1.28 0 0 1-.3.162.853.853 0 0 1-.366.077.518.518 0 0 1-.451-.253.759.759 0 0 1-.095-.347c-.001-.011-.017-.032-.033-.005-.3.457-.579.899-.875 1.363-.016.022-.03.036-.06.037l-.587.001c-.036 0-.053-.028-.034-.063.104-.2.674-1.03 1.06-1.736.107-.194.085-.294.019-.337-.083-.054-.248.027-.387.133-.379.287-.697.735-.859.935-.095.117-.185.291-.433.56-.391.425-.91.669-1.408.5a.848.848 0 0 1-.546-.58c-.015-.052-.044-.066-.073-.032-.08.1-.245.249-.383.342-.015.011-.052.033-.084.017a.851.851 0 0 1-.152-.199.07.07 0 0 1 .016-.08c.197-.173.305-.271.391-.38.064-.08.113-.17.17-.315.12-.302.393-.866.938-1.158a1.81 1.81 0 0 1 .652-.219c.1-.01.183.002.213.08.011.033.039.105.056.158.011.032.003.057-.035.071-.32.122-.643.311-.865.61-.253.338-.321.746-.152.98.123.17.322.2.514.139.29-.092.538-.363.666-.663.138-.329.16-.717.058-1.059-.016-.059-.001-.104.037-.136.077-.063.184-.112.215-.128a.14.14 0 0 1 .182.045c.106.157.163.378.17.607.006.049.026.05.05.025.19-.202.366-.418.568-.58.185-.147.422-.267.643-.262.286.006.428.2.419.546-.001.044.03.04.051.011a1.19 1.19 0 0 1 .24-.264c.198-.163.4-.236.611-.222.26.02.468.257.425.527a.53.53 0 0 1-.281.406.362.362 0 0 1-.405-.044.336.336 0 0 1-.096-.322c.005-.025-.027-.048-.054-.02-.254.264-.273.606-.107.76.183.17.458.056.658-.075.366-.239.65-.563.979-.813.218-.166.467-.314.746-.351a.87.87 0 0 1 .454.052c.2.081.326.25.342.396.004.043.036.048.063.01.158-.246 1.005-1.517 1.075-1.65.02-.041.044-.047.089-.047h.606c.035 0 .051.02.036.047zm-2.32 2.204a.053.053 0 0 0-.003.04c.003.02.03.04.056.05.01.003.015.01.004.032-.075.16-.143.252-.237.391a1.472 1.472 0 0 1-.3.325c-.178.147-.424.307-.628.2-.09-.047-.13-.174-.127-.276.004-.288.132-.584.369-.875.288-.355.607-.539.816-.438.216.103.148.354.05.55zm-5.949-1.881a.398.398 0 0 1 .132-.345c.057-.05.133-.062.18-.022.052.045.027.157-.026.234a.43.43 0 0 1-.245.177c-.018.004-.034-.004-.041-.044zM12 7.5C5.34 7.5 0 9.497 0 12c0 2.488 5.383 4.5 12 4.5s12-2.02 12-4.5-5.383-4.5-12-4.5zm0 8.608C5.649 16.108.5 14.27.5 12.002.5 9.733 5.65 7.895 12 7.895s11.498 1.838 11.498 4.107c0 2.268-5.148 4.106-11.498 4.106z" }) + ] + } + ); +}); + +export { SiFord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.cjs new file mode 100644 index 000000000..4e75000bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB923C"; +const SiForgejo = React__namespace.forwardRef(function SiForgejo2({ title = "Forgejo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.7773 0c1.6018 0 2.9004 1.2986 2.9004 2.9005s-1.2986 2.9004-2.9004 2.9004c-1.0854 0-2.0315-.596-2.5288-1.4787H12.91c-2.3322 0-4.2272 1.8718-4.2649 4.195l-.0007 2.1175a7.0759 7.0759 0 0 1 4.148-1.4205l.1176-.001 1.3385.0002c.4973-.8827 1.4434-1.4788 2.5288-1.4788 1.6018 0 2.9004 1.2986 2.9004 2.9005s-1.2986 2.9004-2.9004 2.9004c-1.0854 0-2.0315-.596-2.5288-1.4787H12.91c-2.3322 0-4.2272 1.8718-4.2649 4.195l-.0007 2.319c.8827.4973 1.4788 1.4434 1.4788 2.5287 0 1.602-1.2986 2.9005-2.9005 2.9005-1.6018 0-2.9004-1.2986-2.9004-2.9005 0-1.0853.596-2.0314 1.4788-2.5287l-.0002-9.9831c0-3.887 3.1195-7.0453 6.9915-7.108l.1176-.001h1.3385C14.7458.5962 15.692 0 16.7773 0ZM7.2227 19.9052c-.6596 0-1.1943.5347-1.1943 1.1943s.5347 1.1943 1.1943 1.1943 1.1944-.5347 1.1944-1.1943-.5348-1.1943-1.1944-1.1943Zm9.5546-10.4644c-.6596 0-1.1944.5347-1.1944 1.1943s.5348 1.1943 1.1944 1.1943c.6596 0 1.1943-.5347 1.1943-1.1943s-.5347-1.1943-1.1943-1.1943Zm0-7.7346c-.6596 0-1.1944.5347-1.1944 1.1943s.5348 1.1943 1.1944 1.1943c.6596 0 1.1943-.5347 1.1943-1.1943s-.5347-1.1943-1.1943-1.1943Z" }) + ] + } + ); +}); + +exports.default = SiForgejo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.d.ts new file mode 100644 index 000000000..29bb1fbd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB923C"; +declare const SiForgejo: IconType; +export { SiForgejo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.mjs new file mode 100644 index 000000000..36fd7f5ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiForgejo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB923C"; +const SiForgejo = React.forwardRef(function SiForgejo2({ title = "Forgejo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.7773 0c1.6018 0 2.9004 1.2986 2.9004 2.9005s-1.2986 2.9004-2.9004 2.9004c-1.0854 0-2.0315-.596-2.5288-1.4787H12.91c-2.3322 0-4.2272 1.8718-4.2649 4.195l-.0007 2.1175a7.0759 7.0759 0 0 1 4.148-1.4205l.1176-.001 1.3385.0002c.4973-.8827 1.4434-1.4788 2.5288-1.4788 1.6018 0 2.9004 1.2986 2.9004 2.9005s-1.2986 2.9004-2.9004 2.9004c-1.0854 0-2.0315-.596-2.5288-1.4787H12.91c-2.3322 0-4.2272 1.8718-4.2649 4.195l-.0007 2.319c.8827.4973 1.4788 1.4434 1.4788 2.5287 0 1.602-1.2986 2.9005-2.9005 2.9005-1.6018 0-2.9004-1.2986-2.9004-2.9005 0-1.0853.596-2.0314 1.4788-2.5287l-.0002-9.9831c0-3.887 3.1195-7.0453 6.9915-7.108l.1176-.001h1.3385C14.7458.5962 15.692 0 16.7773 0ZM7.2227 19.9052c-.6596 0-1.1943.5347-1.1943 1.1943s.5347 1.1943 1.1943 1.1943 1.1944-.5347 1.1944-1.1943-.5348-1.1943-1.1944-1.1943Zm9.5546-10.4644c-.6596 0-1.1944.5347-1.1944 1.1943s.5348 1.1943 1.1944 1.1943c.6596 0 1.1943-.5347 1.1943-1.1943s-.5347-1.1943-1.1943-1.1943Zm0-7.7346c-.6596 0-1.1944.5347-1.1944 1.1943s.5348 1.1943 1.1944 1.1943c.6596 0 1.1943-.5347 1.1943-1.1943s-.5347-1.1943-1.1943-1.1943Z" }) + ] + } + ); +}); + +export { SiForgejo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.cjs new file mode 100644 index 000000000..dba441ac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00C4B8"; +const SiFormbricks = React__namespace.forwardRef(function SiFormbricks2({ title = "Formbricks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.658 0a5.714 5.714 0 0 0-5.715 5.714v1.532h14.49a3.623 3.623 0 0 0 0-7.246ZM2.943 8.377v7.246h14.49a3.623 3.623 0 0 0 0-7.246zm0 8.377v3.623a3.623 3.623 0 0 0 7.246 0v-3.623z" }) + ] + } + ); +}); + +exports.default = SiFormbricks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.d.ts new file mode 100644 index 000000000..03a9024dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00C4B8"; +declare const SiFormbricks: IconType; +export { SiFormbricks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.mjs new file mode 100644 index 000000000..6fe8b9997 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormbricks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00C4B8"; +const SiFormbricks = React.forwardRef(function SiFormbricks2({ title = "Formbricks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.658 0a5.714 5.714 0 0 0-5.715 5.714v1.532h14.49a3.623 3.623 0 0 0 0-7.246ZM2.943 8.377v7.246h14.49a3.623 3.623 0 0 0 0-7.246zm0 8.377v3.623a3.623 3.623 0 0 0 7.246 0v-3.623z" }) + ] + } + ); +}); + +export { SiFormbricks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.cjs new file mode 100644 index 000000000..6bbb5ebfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2563EB"; +const SiFormik = React__namespace.forwardRef(function SiFormik2({ title = "Formik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.545 10.2945 17.792 8.712l.0011-3.3004 2.7531 1.5824Zm-.001 3.5897-2.7522-1.582.0011-3.1528 2.7522 1.5819zm.0263 3.6317-2.786-1.6013.0012-3.1529 2.786 1.6013zm-7.152-6.5068 3.9973-2.2977.0003-3.1523-3.9973 2.2978zm-2.4754 4.9833 6.4574-3.7118.0003-3.1522-6.4574 3.7118zm-4.3424 6.1423 10.8226-6.2208.0003-3.1522L6.601 18.9825zM9.5898 24l-2.7697-1.5927 10.7837-6.2013 2.7697 1.5927ZM3.455 13.7775 6.208 15.36l-.0011 3.3609-2.7531-1.5825Zm.0012-3.5897 2.7522 1.582-.001 3.1528-2.7523-1.5819zm-.0265-3.6114 2.786 1.6013-.001 3.1529-2.786-1.6013Zm7.1517 6.4856L6.584 15.3598l-.0004 3.1523 3.9973-2.2978zm2.4754-4.9832-6.4574 3.7117-.0004 3.1523 6.4574-3.7118zm4.3586-6.1516L6.5765 8.1573l-.0004 3.1522L17.415 5.0793ZM14.534 0l2.7697 1.5927L6.3961 7.8652 3.6264 6.2725Z" }) + ] + } + ); +}); + +exports.default = SiFormik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.d.ts new file mode 100644 index 000000000..490750342 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2563EB"; +declare const SiFormik: IconType; +export { SiFormik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.mjs new file mode 100644 index 000000000..dc9ec0bd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2563EB"; +const SiFormik = React.forwardRef(function SiFormik2({ title = "Formik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.545 10.2945 17.792 8.712l.0011-3.3004 2.7531 1.5824Zm-.001 3.5897-2.7522-1.582.0011-3.1528 2.7522 1.5819zm.0263 3.6317-2.786-1.6013.0012-3.1529 2.786 1.6013zm-7.152-6.5068 3.9973-2.2977.0003-3.1523-3.9973 2.2978zm-2.4754 4.9833 6.4574-3.7118.0003-3.1522-6.4574 3.7118zm-4.3424 6.1423 10.8226-6.2208.0003-3.1522L6.601 18.9825zM9.5898 24l-2.7697-1.5927 10.7837-6.2013 2.7697 1.5927ZM3.455 13.7775 6.208 15.36l-.0011 3.3609-2.7531-1.5825Zm.0012-3.5897 2.7522 1.582-.001 3.1528-2.7523-1.5819zm-.0265-3.6114 2.786 1.6013-.001 3.1529-2.786-1.6013Zm7.1517 6.4856L6.584 15.3598l-.0004 3.1523 3.9973-2.2978zm2.4754-4.9832-6.4574 3.7117-.0004 3.1523 6.4574-3.7118zm4.3586-6.1516L6.5765 8.1573l-.0004 3.1522L17.415 5.0793ZM14.534 0l2.7697 1.5927L6.3961 7.8652 3.6264 6.2725Z" }) + ] + } + ); +}); + +export { SiFormik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.cjs new file mode 100644 index 000000000..c804809e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E5122E"; +const SiFormspree = React__namespace.forwardRef(function SiFormspree2({ title = "Formspree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.333 2a2 2 0 0 1 2-2h17.334a2 2 0 0 1 2 2v2.857a2 2 0 0 1-2 2H3.333a2 2 0 0 1-2-2zm0 8.571a2 2 0 0 1 2-2h17.334a2 2 0 0 1 2 2v2.858a2 2 0 0 1-2 2H3.333a2 2 0 0 1-2-2zm2 6.572a2 2 0 0 0-2 2V22a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-2.857a2 2 0 0 0-2-2z" }) + ] + } + ); +}); + +exports.default = SiFormspree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.d.ts new file mode 100644 index 000000000..db9366cee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E5122E"; +declare const SiFormspree: IconType; +export { SiFormspree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.mjs new file mode 100644 index 000000000..20cefc89d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormspree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E5122E"; +const SiFormspree = React.forwardRef(function SiFormspree2({ title = "Formspree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.333 2a2 2 0 0 1 2-2h17.334a2 2 0 0 1 2 2v2.857a2 2 0 0 1-2 2H3.333a2 2 0 0 1-2-2zm0 8.571a2 2 0 0 1 2-2h17.334a2 2 0 0 1 2 2v2.858a2 2 0 0 1-2 2H3.333a2 2 0 0 1-2-2zm2 6.572a2 2 0 0 0-2 2V22a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-2.857a2 2 0 0 0-2-2z" }) + ] + } + ); +}); + +export { SiFormspree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.cjs new file mode 100644 index 000000000..5eab8c750 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21B573"; +const SiFormstack = React__namespace.forwardRef(function SiFormstack2({ title = "Formstack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19,4.035h1.4c0.331,0,0.6,0.269,0.6,0.6v14.73c0,0.331-0.269,0.6-0.6,0.6H19V4.035z M22,6.026h1.4 c0.331,0,0.6,0.269,0.6,0.6v10.747c0,0.331-0.269,0.6-0.6,0.6H22V6.026z M0.6,2.044h16.8c0.331,0,0.6,0.269,0.6,0.6v18.712 c0,0.331-0.269,0.6-0.6,0.6H0.6c-0.331,0-0.6-0.269-0.6-0.6V2.644C0,2.313,0.269,2.044,0.6,2.044z M4.2,5.23 c-0.11,0-0.2,0.09-0.2,0.2v7.35c0,0.045,0.015,0.089,0.044,0.125c0.069,0.086,0.195,0.101,0.281,0.032l9.228-7.35 c0.048-0.038,0.075-0.096,0.075-0.156c0-0.11-0.09-0.2-0.2-0.2L4.2,5.23z M4,17.185c0,0.04,0.012,0.08,0.035,0.113 c0.062,0.091,0.187,0.114,0.278,0.052l7.576-5.184c0.054-0.037,0.087-0.099,0.087-0.165c0-0.11-0.09-0.2-0.2-0.2H6.89 c-0.045,0-0.088,0.015-0.123,0.042l-2.69,2.102C4.028,13.983,4,14.041,4,14.103L4,17.185z M4.086,18.342 C4.032,18.379,4,18.441,4,18.506v0.087c0,0.106,0.086,0.192,0.192,0.192H7c0.11,0,0.2-0.09,0.2-0.2v-2.022 c0-0.041-0.012-0.081-0.036-0.114c-0.063-0.091-0.188-0.113-0.278-0.05L4.086,18.342z" }) + ] + } + ); +}); + +exports.default = SiFormstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.d.ts new file mode 100644 index 000000000..370dc5013 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21B573"; +declare const SiFormstack: IconType; +export { SiFormstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.mjs new file mode 100644 index 000000000..70e7fe151 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFormstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21B573"; +const SiFormstack = React.forwardRef(function SiFormstack2({ title = "Formstack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19,4.035h1.4c0.331,0,0.6,0.269,0.6,0.6v14.73c0,0.331-0.269,0.6-0.6,0.6H19V4.035z M22,6.026h1.4 c0.331,0,0.6,0.269,0.6,0.6v10.747c0,0.331-0.269,0.6-0.6,0.6H22V6.026z M0.6,2.044h16.8c0.331,0,0.6,0.269,0.6,0.6v18.712 c0,0.331-0.269,0.6-0.6,0.6H0.6c-0.331,0-0.6-0.269-0.6-0.6V2.644C0,2.313,0.269,2.044,0.6,2.044z M4.2,5.23 c-0.11,0-0.2,0.09-0.2,0.2v7.35c0,0.045,0.015,0.089,0.044,0.125c0.069,0.086,0.195,0.101,0.281,0.032l9.228-7.35 c0.048-0.038,0.075-0.096,0.075-0.156c0-0.11-0.09-0.2-0.2-0.2L4.2,5.23z M4,17.185c0,0.04,0.012,0.08,0.035,0.113 c0.062,0.091,0.187,0.114,0.278,0.052l7.576-5.184c0.054-0.037,0.087-0.099,0.087-0.165c0-0.11-0.09-0.2-0.2-0.2H6.89 c-0.045,0-0.088,0.015-0.123,0.042l-2.69,2.102C4.028,13.983,4,14.041,4,14.103L4,17.185z M4.086,18.342 C4.032,18.379,4,18.441,4,18.506v0.087c0,0.106,0.086,0.192,0.192,0.192H7c0.11,0,0.2-0.09,0.2-0.2v-2.022 c0-0.041-0.012-0.081-0.036-0.114c-0.063-0.091-0.188-0.113-0.278-0.05L4.086,18.342z" }) + ] + } + ); +}); + +export { SiFormstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.cjs new file mode 100644 index 000000000..a9dd3f6ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE3124"; +const SiFortinet = React__namespace.forwardRef(function SiFortinet2({ title = "Fortinet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 9.785h6.788v4.454H0zm8.666-6.33h6.668v4.453H8.666zm0 12.637h6.668v4.454H8.666zm8.522-6.307H24v4.454h-6.812zM2.792 3.455C1.372 3.814.265 5.404 0 7.425v.506h6.788V3.454zM0 16.091v.554c.24 1.926 1.276 3.466 2.624 3.9h4.188v-4.454zm24-8.184v-.506c-.265-1.998-1.372-3.587-2.792-3.972h-4.02v4.454H24zM21.376 20.57c1.324-.458 2.36-1.974 2.624-3.9v-.554h-6.812v4.454Z" }) + ] + } + ); +}); + +exports.default = SiFortinet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.d.ts new file mode 100644 index 000000000..1246d6214 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE3124"; +declare const SiFortinet: IconType; +export { SiFortinet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.mjs new file mode 100644 index 000000000..5f8c95104 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortinet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE3124"; +const SiFortinet = React.forwardRef(function SiFortinet2({ title = "Fortinet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 9.785h6.788v4.454H0zm8.666-6.33h6.668v4.453H8.666zm0 12.637h6.668v4.454H8.666zm8.522-6.307H24v4.454h-6.812zM2.792 3.455C1.372 3.814.265 5.404 0 7.425v.506h6.788V3.454zM0 16.091v.554c.24 1.926 1.276 3.466 2.624 3.9h4.188v-4.454zm24-8.184v-.506c-.265-1.998-1.372-3.587-2.792-3.972h-4.02v4.454H24zM21.376 20.57c1.324-.458 2.36-1.974 2.624-3.9v-.554h-6.812v4.454Z" }) + ] + } + ); +}); + +export { SiFortinet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.cjs new file mode 100644 index 000000000..f66d68fab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFortnite = React__namespace.forwardRef(function SiFortnite2({ title = "Fortnite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.767 14.171.097-5.05H12.4V5.197h3.99L16.872 0H7.128v24l5.271-.985V14.17z" }) + ] + } + ); +}); + +exports.default = SiFortnite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.d.ts new file mode 100644 index 000000000..63dcaa8ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFortnite: IconType; +export { SiFortnite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.mjs new file mode 100644 index 000000000..f179de28d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortnite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFortnite = React.forwardRef(function SiFortnite2({ title = "Fortnite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.767 14.171.097-5.05H12.4V5.197h3.99L16.872 0H7.128v24l5.271-.985V14.17z" }) + ] + } + ); +}); + +export { SiFortnite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.cjs new file mode 100644 index 000000000..5a0e15761 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#734F96"; +const SiFortran = React__namespace.forwardRef(function SiFortran2({ title = "Fortran", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.536 0H4.464A4.463 4.463 0 0 0 0 4.464v15.073A4.463 4.463 0 0 0 4.464 24h15.073A4.463 4.463 0 0 0 24 19.536V4.464A4.463 4.463 0 0 0 19.536 0zm1.193 6.493v3.871l-.922-.005c-.507-.003-.981-.021-1.052-.041-.128-.036-.131-.05-.192-.839-.079-1.013-.143-1.462-.306-2.136-.352-1.457-1.096-2.25-2.309-2.463-.509-.089-2.731-.176-4.558-.177L10.13 4.7v5.82l.662-.033c.757-.038 1.353-.129 1.64-.252.306-.131.629-.462.781-.799.158-.352.262-.815.345-1.542.033-.286.07-.572.083-.636.024-.116.028-.117 1.036-.117h1.012v9.3h-2.062l-.035-.536c-.063-.971-.252-1.891-.479-2.331-.311-.601-.922-.871-2.151-.95a11.422 11.422 0 0 1-.666-.059l-.172-.027.02 2.926c.021 3.086.03 3.206.265 3.465.241.266.381.284 2.827.368.05.002.065.246.065 1.041v1.039H3.271v-1.039c0-.954.007-1.039.091-1.041.05-.001.543-.023 1.097-.049.891-.042 1.033-.061 1.244-.167a.712.712 0 0 0 .345-.328c.106-.206.107-.254.107-6.78 0-6.133-.006-6.584-.09-6.737a.938.938 0 0 0-.553-.436c-.104-.032-.65-.07-1.215-.086l-1.026-.027V2.622h17.458v3.871z" }) + ] + } + ); +}); + +exports.default = SiFortran; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.d.ts new file mode 100644 index 000000000..57bff757c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#734F96"; +declare const SiFortran: IconType; +export { SiFortran as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.mjs new file mode 100644 index 000000000..ac84fc1be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFortran.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#734F96"; +const SiFortran = React.forwardRef(function SiFortran2({ title = "Fortran", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.536 0H4.464A4.463 4.463 0 0 0 0 4.464v15.073A4.463 4.463 0 0 0 4.464 24h15.073A4.463 4.463 0 0 0 24 19.536V4.464A4.463 4.463 0 0 0 19.536 0zm1.193 6.493v3.871l-.922-.005c-.507-.003-.981-.021-1.052-.041-.128-.036-.131-.05-.192-.839-.079-1.013-.143-1.462-.306-2.136-.352-1.457-1.096-2.25-2.309-2.463-.509-.089-2.731-.176-4.558-.177L10.13 4.7v5.82l.662-.033c.757-.038 1.353-.129 1.64-.252.306-.131.629-.462.781-.799.158-.352.262-.815.345-1.542.033-.286.07-.572.083-.636.024-.116.028-.117 1.036-.117h1.012v9.3h-2.062l-.035-.536c-.063-.971-.252-1.891-.479-2.331-.311-.601-.922-.871-2.151-.95a11.422 11.422 0 0 1-.666-.059l-.172-.027.02 2.926c.021 3.086.03 3.206.265 3.465.241.266.381.284 2.827.368.05.002.065.246.065 1.041v1.039H3.271v-1.039c0-.954.007-1.039.091-1.041.05-.001.543-.023 1.097-.049.891-.042 1.033-.061 1.244-.167a.712.712 0 0 0 .345-.328c.106-.206.107-.254.107-6.78 0-6.133-.006-6.584-.09-6.737a.938.938 0 0 0-.553-.436c-.104-.032-.65-.07-1.215-.086l-1.026-.027V2.622h17.458v3.871z" }) + ] + } + ); +}); + +export { SiFortran as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.cjs new file mode 100644 index 000000000..cfb2b1466 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#289E6D"; +const SiFossa = React__namespace.forwardRef(function SiFossa2({ title = "Fossa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.398 9.516a.123.123 0 0 1 .036.087v.693a.123.123 0 0 1-.123.123H1.018v1.155h1.766a.123.123 0 0 1 .123.123v.693a.123.123 0 0 1-.123.12H1.018v1.9a.123.123 0 0 1-.124.123h-.77A.123.123 0 0 1 0 14.41V9.6a.123.123 0 0 1 .123-.12h3.188c.033 0 .064.013.087.036zm5.829 1.803a3.252 3.252 0 0 1 0 1.366c-.053.243-.14.477-.256.696a2.4 2.4 0 0 1-.45.621 2.074 2.074 0 0 1-.719.436 2.763 2.763 0 0 1-.992.17c-.34.005-.68-.053-1-.17a2.073 2.073 0 0 1-.718-.436 2.48 2.48 0 0 1-.462-.62 2.651 2.651 0 0 1-.26-.697 3.248 3.248 0 0 1 0-1.366c.054-.242.142-.475.26-.693.121-.23.278-.44.463-.62a2.12 2.12 0 0 1 .719-.441 2.73 2.73 0 0 1 .998-.173c.339-.005.675.054.992.173.266.097.51.247.718.44.183.182.335.392.451.621.116.219.202.452.256.693zm-.96.675c0-.111-.01-.222-.028-.332a2.204 2.204 0 0 0-.123-.426 1.706 1.706 0 0 0-.242-.434 1.163 1.163 0 0 0-.431-.325 1.458 1.458 0 0 0-.633-.126 1.503 1.503 0 0 0-.65.134c-.165.07-.312.18-.428.317a1.8 1.8 0 0 0-.243.437c-.058.137-.1.28-.124.426a1.953 1.953 0 0 0 .123 1.091c.06.158.143.306.246.44.116.141.263.253.43.328.202.093.423.139.646.134v.006c.219.003.435-.044.633-.138.165-.076.31-.188.425-.328.105-.134.188-.283.248-.442a2.048 2.048 0 0 0 .152-.762zm5.5.385a.954.954 0 0 0-.242-.27 4.435 4.435 0 0 0-.278-.21 2.08 2.08 0 0 0-.346-.172 8.157 8.157 0 0 0-.335-.134l-.353-.123a7.626 7.626 0 0 1-.368-.13 2.925 2.925 0 0 1-.268-.126.601.601 0 0 1-.224-.177.415.415 0 0 1-.067-.217c.015-.312.243-.469.685-.469.444.027.88.137 1.284.325a.123.123 0 0 0 .165-.072l.268-.628a.112.112 0 0 0-.058-.166 4.31 4.31 0 0 0-1.736-.41 1.735 1.735 0 0 0-1.183.397 1.353 1.353 0 0 0-.45 1.074c0 .532.25.933.751 1.203a6.37 6.37 0 0 0 1.039.382c.225.06.439.158.632.288a.401.401 0 0 1 .173.415.493.493 0 0 1-.254.349c-.17.093-.361.138-.554.13a3.273 3.273 0 0 1-1.353-.36.116.116 0 0 0-.093 0 .123.123 0 0 0-.07.064l-.332.629a.126.126 0 0 0 0 .093.11.11 0 0 0 .058.072c.57.297 1.204.451 1.847.45.466.019.924-.127 1.294-.411a1.387 1.387 0 0 0 .549-1.039 1.282 1.282 0 0 0-.18-.757zm4.637 0a.954.954 0 0 0-.242-.27 4.465 4.465 0 0 0-.278-.21 2.077 2.077 0 0 0-.346-.172 8.123 8.123 0 0 0-.335-.134l-.353-.123a7.545 7.545 0 0 1-.368-.13 2.925 2.925 0 0 1-.268-.126.601.601 0 0 1-.224-.177.415.415 0 0 1-.072-.217c.014-.312.242-.469.685-.469.446.027.883.137 1.288.325a.123.123 0 0 0 .166-.072l.267-.628a.11.11 0 0 0-.015-.14.11.11 0 0 0-.042-.026 4.31 4.31 0 0 0-1.74-.41c-.43-.02-.852.122-1.183.397a1.353 1.353 0 0 0-.451 1.074c0 .532.25.933.751 1.203.335.157.682.285 1.039.382.224.06.437.158.63.288a.404.404 0 0 1 .173.415.491.491 0 0 1-.256.353c-.169.092-.36.137-.551.13a3.273 3.273 0 0 1-1.353-.361.116.116 0 0 0-.093 0 .123.123 0 0 0-.073.061l-.332.629a.126.126 0 0 0 0 .093.11.11 0 0 0 .057.072c.57.297 1.205.451 1.848.45.465.018.921-.127 1.29-.41a1.388 1.388 0 0 0 .55-1.04 1.276 1.276 0 0 0-.04-.422 1.534 1.534 0 0 0-.129-.335zM24 14.452a.094.094 0 0 1-.01.04.071.071 0 0 1-.065.041h-.902a.16.16 0 0 1-.17-.115l-.436-1.068h-1.58l-.431 1.062a.168.168 0 0 1-.171.115h-.916a.07.07 0 0 1-.066-.04.1.1 0 0 1-.007-.083l2.208-4.924a.19.19 0 0 1 .15-.065.183.183 0 0 1 .165.066l2.222 4.93a.098.098 0 0 1 .009.041zm-1.93-1.912l-.451-1.133-.45 1.133h.901z" }) + ] + } + ); +}); + +exports.default = SiFossa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.d.ts new file mode 100644 index 000000000..4144a65b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#289E6D"; +declare const SiFossa: IconType; +export { SiFossa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.mjs new file mode 100644 index 000000000..482af9073 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFossa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#289E6D"; +const SiFossa = React.forwardRef(function SiFossa2({ title = "Fossa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.398 9.516a.123.123 0 0 1 .036.087v.693a.123.123 0 0 1-.123.123H1.018v1.155h1.766a.123.123 0 0 1 .123.123v.693a.123.123 0 0 1-.123.12H1.018v1.9a.123.123 0 0 1-.124.123h-.77A.123.123 0 0 1 0 14.41V9.6a.123.123 0 0 1 .123-.12h3.188c.033 0 .064.013.087.036zm5.829 1.803a3.252 3.252 0 0 1 0 1.366c-.053.243-.14.477-.256.696a2.4 2.4 0 0 1-.45.621 2.074 2.074 0 0 1-.719.436 2.763 2.763 0 0 1-.992.17c-.34.005-.68-.053-1-.17a2.073 2.073 0 0 1-.718-.436 2.48 2.48 0 0 1-.462-.62 2.651 2.651 0 0 1-.26-.697 3.248 3.248 0 0 1 0-1.366c.054-.242.142-.475.26-.693.121-.23.278-.44.463-.62a2.12 2.12 0 0 1 .719-.441 2.73 2.73 0 0 1 .998-.173c.339-.005.675.054.992.173.266.097.51.247.718.44.183.182.335.392.451.621.116.219.202.452.256.693zm-.96.675c0-.111-.01-.222-.028-.332a2.204 2.204 0 0 0-.123-.426 1.706 1.706 0 0 0-.242-.434 1.163 1.163 0 0 0-.431-.325 1.458 1.458 0 0 0-.633-.126 1.503 1.503 0 0 0-.65.134c-.165.07-.312.18-.428.317a1.8 1.8 0 0 0-.243.437c-.058.137-.1.28-.124.426a1.953 1.953 0 0 0 .123 1.091c.06.158.143.306.246.44.116.141.263.253.43.328.202.093.423.139.646.134v.006c.219.003.435-.044.633-.138.165-.076.31-.188.425-.328.105-.134.188-.283.248-.442a2.048 2.048 0 0 0 .152-.762zm5.5.385a.954.954 0 0 0-.242-.27 4.435 4.435 0 0 0-.278-.21 2.08 2.08 0 0 0-.346-.172 8.157 8.157 0 0 0-.335-.134l-.353-.123a7.626 7.626 0 0 1-.368-.13 2.925 2.925 0 0 1-.268-.126.601.601 0 0 1-.224-.177.415.415 0 0 1-.067-.217c.015-.312.243-.469.685-.469.444.027.88.137 1.284.325a.123.123 0 0 0 .165-.072l.268-.628a.112.112 0 0 0-.058-.166 4.31 4.31 0 0 0-1.736-.41 1.735 1.735 0 0 0-1.183.397 1.353 1.353 0 0 0-.45 1.074c0 .532.25.933.751 1.203a6.37 6.37 0 0 0 1.039.382c.225.06.439.158.632.288a.401.401 0 0 1 .173.415.493.493 0 0 1-.254.349c-.17.093-.361.138-.554.13a3.273 3.273 0 0 1-1.353-.36.116.116 0 0 0-.093 0 .123.123 0 0 0-.07.064l-.332.629a.126.126 0 0 0 0 .093.11.11 0 0 0 .058.072c.57.297 1.204.451 1.847.45.466.019.924-.127 1.294-.411a1.387 1.387 0 0 0 .549-1.039 1.282 1.282 0 0 0-.18-.757zm4.637 0a.954.954 0 0 0-.242-.27 4.465 4.465 0 0 0-.278-.21 2.077 2.077 0 0 0-.346-.172 8.123 8.123 0 0 0-.335-.134l-.353-.123a7.545 7.545 0 0 1-.368-.13 2.925 2.925 0 0 1-.268-.126.601.601 0 0 1-.224-.177.415.415 0 0 1-.072-.217c.014-.312.242-.469.685-.469.446.027.883.137 1.288.325a.123.123 0 0 0 .166-.072l.267-.628a.11.11 0 0 0-.015-.14.11.11 0 0 0-.042-.026 4.31 4.31 0 0 0-1.74-.41c-.43-.02-.852.122-1.183.397a1.353 1.353 0 0 0-.451 1.074c0 .532.25.933.751 1.203.335.157.682.285 1.039.382.224.06.437.158.63.288a.404.404 0 0 1 .173.415.491.491 0 0 1-.256.353c-.169.092-.36.137-.551.13a3.273 3.273 0 0 1-1.353-.361.116.116 0 0 0-.093 0 .123.123 0 0 0-.073.061l-.332.629a.126.126 0 0 0 0 .093.11.11 0 0 0 .057.072c.57.297 1.205.451 1.848.45.465.018.921-.127 1.29-.41a1.388 1.388 0 0 0 .55-1.04 1.276 1.276 0 0 0-.04-.422 1.534 1.534 0 0 0-.129-.335zM24 14.452a.094.094 0 0 1-.01.04.071.071 0 0 1-.065.041h-.902a.16.16 0 0 1-.17-.115l-.436-1.068h-1.58l-.431 1.062a.168.168 0 0 1-.171.115h-.916a.07.07 0 0 1-.066-.04.1.1 0 0 1-.007-.083l2.208-4.924a.19.19 0 0 1 .15-.065.183.183 0 0 1 .165.066l2.222 4.93a.098.098 0 0 1 .009.041zm-1.93-1.912l-.451-1.133-.45 1.133h.901z" }) + ] + } + ); +}); + +export { SiFossa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.cjs new file mode 100644 index 000000000..76f6ee433 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#548294"; +const SiFossilscm = React__namespace.forwardRef(function SiFossilscm2({ title = "Fossil SCM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.571 0c-.699.022-2.041.555-3.458 1.419C7.464 2.42 6.258 3.538 6.16 4.108c-.008.009-.019.014-.026.023-.563.746.203 2.277 1.711 3.414 1.408 1.063 2.958 1.397 3.617.832.518-.09 1.227-1.776 1.627-3.94.383-2.054.35-3.812-.045-4.214-.006-.02.001-.048-.01-.066-.069-.113-.23-.163-.463-.156zm-2.277 2.936c-.164.193-.329.383-.492.605-.217.296-.403.587-.568.866a5.705 5.705 0 00-.908-.432 14.052 14.052 0 001.785-.914c.067-.04.118-.084.183-.125zm.912 1.084c-.004.024-.01.043-.015.066a16.33 16.33 0 00-.227 1.78 6.106 6.106 0 00-.654-.674c.215-.241.436-.507.652-.801.093-.127.16-.246.244-.371zm-3.14 4.002c-.41-.075-.968 1.14-1.246 2.706-.276 1.566-.164 2.897.246 2.969.41.072.972-1.141 1.248-2.707.276-1.566.164-2.896-.248-2.968zm-5.56 2.708c-.072.032-.026.314.103.625.132.312.297.539.37.51.074-.031.025-.311-.104-.623-.13-.312-.295-.54-.37-.512zm-.602.506c-.035-.005-.061 0-.076.018-.062.067.083.298.322.512.24.215.483.332.545.265.06-.07-.084-.298-.324-.513-.18-.16-.361-.267-.467-.282zm-.224.684c-.118 0-.197.02-.205.058-.017.077.247.205.587.282.343.078.636.078.653.002.017-.08-.248-.204-.588-.284a2.163 2.163 0 00-.447-.058zm1.296.144c-.251.067-.235.954.036 1.98.27 1.03.695 1.81.945 1.745.25-.067.234-.954-.037-1.98-.271-1.03-.694-1.812-.944-1.745zm10.394.186c-.072-.031-.237.198-.369.51-.13.311-.178.59-.103.62.072.032.24-.197.369-.51.13-.31.178-.591.103-.62zm.61.504c-.105.015-.285.12-.463.281-.238.213-.382.445-.323.512.058.064.304-.057.541-.27.238-.213.38-.443.32-.508-.014-.016-.04-.02-.075-.015zm-7.625.593c-.34.035-.86.369-1.326.883-.621.686-.914 1.437-.652 1.672.261.237.978-.125 1.601-.81.621-.689.912-1.437.65-1.674-.065-.059-.16-.082-.273-.07zm7.85.092c-.119 0-.276.018-.446.057-.343.077-.607.202-.59.281.017.077.31.077.652 0 .34-.077.607-.202.588-.28-.008-.037-.087-.057-.205-.058zm-6.13.168a.15.15 0 00-.099.028c-.21.163.143.978.793 1.82.647.841 1.346 1.393 1.557 1.23.21-.16-.148-.977-.795-1.818-.567-.737-1.172-1.251-1.455-1.26zm4.557.043c-.267-.03-.843.36-1.387.96-.62.685-.966 1.386-.767 1.563.196.18.861-.232 1.482-.917.621-.686.964-1.385.768-1.565a.17.17 0 00-.096-.04zm-5.603.133c-.386.082-.48 1.2-.205 2.492.273 1.292.815 2.275 1.2 2.193.387-.081.481-1.2.208-2.49-.276-1.292-.815-2.279-1.203-2.195zm15.448 2.459c-.13-.055-.48.471-.78 1.174-.297.705-.432 1.323-.3 1.378.13.056.48-.47.777-1.173.297-.705.433-1.324.303-1.38zm-9.503.412c-.07.031-.024.31.105.621.132.312.298.542.367.514.072-.031.027-.31-.105-.621-.13-.312-.295-.543-.367-.514zm-.6.506c-.035-.005-.062 0-.078.017-.06.07.087.297.324.51.238.213.481.33.541.264.06-.067-.083-.297-.32-.51-.178-.158-.36-.266-.467-.281zm-.224.681c-.118 0-.195.019-.203.057-.017.079.245.204.585.283.343.077.636.077.653 0 .016-.077-.246-.204-.586-.281a2.133 2.133 0 00-.45-.059zm1.37.21c-.26 0-.476.75-.476 1.675s.215 1.676.477 1.676c.26 0 .478-.75.478-1.676 0-.926-.217-1.676-.478-1.676zm-5.175.333a.235.235 0 00-.133.045c-.294.216.04 1.17.744 2.13.703.962 1.514 1.564 1.807 1.35.295-.215-.035-1.171-.74-2.13-.617-.842-1.315-1.41-1.678-1.395zm13.02.522c-.105-.094-.601.297-1.105.873-.503.575-.824 1.119-.718 1.213.108.093.603-.298 1.107-.873.504-.576.825-1.12.717-1.213zm-11.014.443c-.113-.005-.194.019-.23.074-.144.223.46.875 1.353 1.453.89.58 1.73.872 1.875.649.146-.223-.46-.877-1.35-1.457-.667-.434-1.308-.704-1.648-.719zM8.73 20.451c-.266 0-.48.75-.48 1.675 0 .926.214 1.676.48 1.676s.482-.75.482-1.676c0-.925-.216-1.675-.482-1.675zm-3.644.06c-.072.031-.026.313.103.625.132.312.297.539.37.51.074-.031.025-.312-.104-.623-.13-.312-.295-.54-.37-.512zm14.296.477c-.368-.04-1.127.127-1.96.453-1.107.434-1.929.984-1.833 1.228.096.242 1.074.093 2.181-.342 1.11-.434 1.932-.985 1.836-1.23-.024-.06-.102-.096-.224-.11zm-14.898.029c-.035-.005-.061 0-.076.018-.062.067.082.298.322.511.24.216.483.333.545.266.06-.07-.084-.298-.324-.514-.18-.16-.362-.267-.467-.281zm-.223.685c-.118 0-.196.019-.205.057-.016.08.248.204.588.283.343.077.636.077.653 0 .016-.077-.248-.204-.588-.281a2.116 2.116 0 00-.448-.059zm1.29.047c-.114-.005-.194.019-.231.075-.144.223.461.875 1.353 1.453.89.58 1.731.871 1.875.648.147-.223-.46-.877-1.35-1.457-.666-.433-1.307-.704-1.648-.719zm6.628.09c-.865-.036-1.493.081-1.527.32-.046.317.98.73 2.289.92 1.311.19 2.415.087 2.46-.232.046-.317-.98-.73-2.292-.92a9.203 9.203 0 00-.93-.088z" }) + ] + } + ); +}); + +exports.default = SiFossilscm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.d.ts new file mode 100644 index 000000000..cd0d8a1e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#548294"; +declare const SiFossilscm: IconType; +export { SiFossilscm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.mjs new file mode 100644 index 000000000..6e7b95f5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFossilscm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#548294"; +const SiFossilscm = React.forwardRef(function SiFossilscm2({ title = "Fossil SCM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.571 0c-.699.022-2.041.555-3.458 1.419C7.464 2.42 6.258 3.538 6.16 4.108c-.008.009-.019.014-.026.023-.563.746.203 2.277 1.711 3.414 1.408 1.063 2.958 1.397 3.617.832.518-.09 1.227-1.776 1.627-3.94.383-2.054.35-3.812-.045-4.214-.006-.02.001-.048-.01-.066-.069-.113-.23-.163-.463-.156zm-2.277 2.936c-.164.193-.329.383-.492.605-.217.296-.403.587-.568.866a5.705 5.705 0 00-.908-.432 14.052 14.052 0 001.785-.914c.067-.04.118-.084.183-.125zm.912 1.084c-.004.024-.01.043-.015.066a16.33 16.33 0 00-.227 1.78 6.106 6.106 0 00-.654-.674c.215-.241.436-.507.652-.801.093-.127.16-.246.244-.371zm-3.14 4.002c-.41-.075-.968 1.14-1.246 2.706-.276 1.566-.164 2.897.246 2.969.41.072.972-1.141 1.248-2.707.276-1.566.164-2.896-.248-2.968zm-5.56 2.708c-.072.032-.026.314.103.625.132.312.297.539.37.51.074-.031.025-.311-.104-.623-.13-.312-.295-.54-.37-.512zm-.602.506c-.035-.005-.061 0-.076.018-.062.067.083.298.322.512.24.215.483.332.545.265.06-.07-.084-.298-.324-.513-.18-.16-.361-.267-.467-.282zm-.224.684c-.118 0-.197.02-.205.058-.017.077.247.205.587.282.343.078.636.078.653.002.017-.08-.248-.204-.588-.284a2.163 2.163 0 00-.447-.058zm1.296.144c-.251.067-.235.954.036 1.98.27 1.03.695 1.81.945 1.745.25-.067.234-.954-.037-1.98-.271-1.03-.694-1.812-.944-1.745zm10.394.186c-.072-.031-.237.198-.369.51-.13.311-.178.59-.103.62.072.032.24-.197.369-.51.13-.31.178-.591.103-.62zm.61.504c-.105.015-.285.12-.463.281-.238.213-.382.445-.323.512.058.064.304-.057.541-.27.238-.213.38-.443.32-.508-.014-.016-.04-.02-.075-.015zm-7.625.593c-.34.035-.86.369-1.326.883-.621.686-.914 1.437-.652 1.672.261.237.978-.125 1.601-.81.621-.689.912-1.437.65-1.674-.065-.059-.16-.082-.273-.07zm7.85.092c-.119 0-.276.018-.446.057-.343.077-.607.202-.59.281.017.077.31.077.652 0 .34-.077.607-.202.588-.28-.008-.037-.087-.057-.205-.058zm-6.13.168a.15.15 0 00-.099.028c-.21.163.143.978.793 1.82.647.841 1.346 1.393 1.557 1.23.21-.16-.148-.977-.795-1.818-.567-.737-1.172-1.251-1.455-1.26zm4.557.043c-.267-.03-.843.36-1.387.96-.62.685-.966 1.386-.767 1.563.196.18.861-.232 1.482-.917.621-.686.964-1.385.768-1.565a.17.17 0 00-.096-.04zm-5.603.133c-.386.082-.48 1.2-.205 2.492.273 1.292.815 2.275 1.2 2.193.387-.081.481-1.2.208-2.49-.276-1.292-.815-2.279-1.203-2.195zm15.448 2.459c-.13-.055-.48.471-.78 1.174-.297.705-.432 1.323-.3 1.378.13.056.48-.47.777-1.173.297-.705.433-1.324.303-1.38zm-9.503.412c-.07.031-.024.31.105.621.132.312.298.542.367.514.072-.031.027-.31-.105-.621-.13-.312-.295-.543-.367-.514zm-.6.506c-.035-.005-.062 0-.078.017-.06.07.087.297.324.51.238.213.481.33.541.264.06-.067-.083-.297-.32-.51-.178-.158-.36-.266-.467-.281zm-.224.681c-.118 0-.195.019-.203.057-.017.079.245.204.585.283.343.077.636.077.653 0 .016-.077-.246-.204-.586-.281a2.133 2.133 0 00-.45-.059zm1.37.21c-.26 0-.476.75-.476 1.675s.215 1.676.477 1.676c.26 0 .478-.75.478-1.676 0-.926-.217-1.676-.478-1.676zm-5.175.333a.235.235 0 00-.133.045c-.294.216.04 1.17.744 2.13.703.962 1.514 1.564 1.807 1.35.295-.215-.035-1.171-.74-2.13-.617-.842-1.315-1.41-1.678-1.395zm13.02.522c-.105-.094-.601.297-1.105.873-.503.575-.824 1.119-.718 1.213.108.093.603-.298 1.107-.873.504-.576.825-1.12.717-1.213zm-11.014.443c-.113-.005-.194.019-.23.074-.144.223.46.875 1.353 1.453.89.58 1.73.872 1.875.649.146-.223-.46-.877-1.35-1.457-.667-.434-1.308-.704-1.648-.719zM8.73 20.451c-.266 0-.48.75-.48 1.675 0 .926.214 1.676.48 1.676s.482-.75.482-1.676c0-.925-.216-1.675-.482-1.675zm-3.644.06c-.072.031-.026.313.103.625.132.312.297.539.37.51.074-.031.025-.312-.104-.623-.13-.312-.295-.54-.37-.512zm14.296.477c-.368-.04-1.127.127-1.96.453-1.107.434-1.929.984-1.833 1.228.096.242 1.074.093 2.181-.342 1.11-.434 1.932-.985 1.836-1.23-.024-.06-.102-.096-.224-.11zm-14.898.029c-.035-.005-.061 0-.076.018-.062.067.082.298.322.511.24.216.483.333.545.266.06-.07-.084-.298-.324-.514-.18-.16-.362-.267-.467-.281zm-.223.685c-.118 0-.196.019-.205.057-.016.08.248.204.588.283.343.077.636.077.653 0 .016-.077-.248-.204-.588-.281a2.116 2.116 0 00-.448-.059zm1.29.047c-.114-.005-.194.019-.231.075-.144.223.461.875 1.353 1.453.89.58 1.731.871 1.875.648.147-.223-.46-.877-1.35-1.457-.666-.433-1.307-.704-1.648-.719zm6.628.09c-.865-.036-1.493.081-1.527.32-.046.317.98.73 2.289.92 1.311.19 2.415.087 2.46-.232.046-.317-.98-.73-2.292-.92a9.203 9.203 0 00-.93-.088z" }) + ] + } + ); +}); + +export { SiFossilscm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.cjs new file mode 100644 index 000000000..d439ff46f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE6A1F"; +const SiFoundryvirtualtabletop = React__namespace.forwardRef(function SiFoundryvirtualtabletop2({ title = "Foundry Virtual Tabletop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.391 23.879-9.386-5.5c-.269-.158-.492-.546-.492-.86V6.48c0-.314.223-.7.494-.857L11.506.116c.274-.157.717-.154.988.003l9.499 5.561c.271.16.494.546.494.86v10.979c0 .314-.223.7-.494.857l-9.613 5.509c-.271.154-.717.154-.989-.006m1.221-.934 6.929-3.958c.274-.157.471-.354.443-.443-.029-.088-.309-.125-.62-.085l-6.684.877c-.311.04-.566.331-.566.646v2.674c0 .315.226.446.498.289M9.714 1.951l-6.766 3.92c-.272.158-.272.418 0 .575l2.208 1.288c.272.158.652.086.846-.162l4.075-5.204c.194-.248.306-.508.243-.577s-.335.003-.606.16m2.429 16.222 5.212-9.064c.157-.272.028-.494-.286-.494H6.725c-.314 0-.443.222-.289.497l5.141 9.058c.154.274.409.274.566.003m1.489-7.247s-.949.28-.952.958c0 .674 1.129 1.025 1.129 1.025v.669h-1.12c-.232-.151-.483-.237-.752-.237-.268 0-.523.086-.751.237H10.12v-.669c.36 0 1.086-.591 1.086-1.02 0-.428-.683-.517-.683-.517h-.54c-1.258 0-1.749-1.186-1.749-1.186h2.08v-.228h4.824v.731c-.646 0-1.506.237-1.506.237m-3.052-.58h4.303c.026 0 .049-.02.049-.048v-.029c0-.026-.02-.048-.049-.048H10.58c-.026 0-.049.02-.049.048v.029c0 .025.02.048.049.048m-.297.2v-.097c0-.014-.012-.023-.023-.023H8.868c-.02 0-.028.032-.008.043.211.112.351.1.351.1h1.049c.014 0 .023-.011.023-.023M2.17 7.166v7.972c0 .315.075.589.166.606s.266-.203.386-.494l2.617-6.252a.655.655 0 0 0-.28-.803L2.67 6.872c-.274-.152-.5-.02-.5.294m11.459-5.375c-.06.071.048.329.243.577l4.072 5.204c.194.248.574.32.845.162l2.209-1.288c.272-.157.272-.417 0-.575l-6.763-3.92c-.272-.157-.546-.229-.606-.16m8.172 13.347V7.166c0-.314-.226-.446-.5-.294l-2.389 1.323a.652.652 0 0 0-.28.803l2.618 6.252c.123.291.294.511.385.494.092-.02.166-.291.166-.606m-8.895 3.652 8.218-1.083c.311-.04.466-.311.346-.6l-3.201-7.644c-.123-.288-.348-.303-.505-.031l-5.141 8.938c-.154.271-.029.46.283.42m4.317-11.144-4.88-6.444c-.189-.251-.503-.254-.697-.005L6.594 7.649c-.195.248-.095.451.22.451h10.184c.314 0 .414-.203.225-.454M2.759 17.71l8.055 1.077c.314.043.44-.146.286-.42L6.036 9.44c-.157-.274-.38-.26-.5.032L2.41 17.104c-.12.292.037.563.349.606m8.841 4.946h-.003v-2.669c0-.314-.254-.605-.566-.648l-6.54-.878c-.312-.042-.592-.002-.621.083-.028.086.169.289.441.446l6.795 3.949c.271.16.494.032.494-.283" }) + ] + } + ); +}); + +exports.default = SiFoundryvirtualtabletop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.d.ts new file mode 100644 index 000000000..ec9bfbdc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE6A1F"; +declare const SiFoundryvirtualtabletop: IconType; +export { SiFoundryvirtualtabletop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.mjs new file mode 100644 index 000000000..0850cda63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoundryvirtualtabletop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE6A1F"; +const SiFoundryvirtualtabletop = React.forwardRef(function SiFoundryvirtualtabletop2({ title = "Foundry Virtual Tabletop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.391 23.879-9.386-5.5c-.269-.158-.492-.546-.492-.86V6.48c0-.314.223-.7.494-.857L11.506.116c.274-.157.717-.154.988.003l9.499 5.561c.271.16.494.546.494.86v10.979c0 .314-.223.7-.494.857l-9.613 5.509c-.271.154-.717.154-.989-.006m1.221-.934 6.929-3.958c.274-.157.471-.354.443-.443-.029-.088-.309-.125-.62-.085l-6.684.877c-.311.04-.566.331-.566.646v2.674c0 .315.226.446.498.289M9.714 1.951l-6.766 3.92c-.272.158-.272.418 0 .575l2.208 1.288c.272.158.652.086.846-.162l4.075-5.204c.194-.248.306-.508.243-.577s-.335.003-.606.16m2.429 16.222 5.212-9.064c.157-.272.028-.494-.286-.494H6.725c-.314 0-.443.222-.289.497l5.141 9.058c.154.274.409.274.566.003m1.489-7.247s-.949.28-.952.958c0 .674 1.129 1.025 1.129 1.025v.669h-1.12c-.232-.151-.483-.237-.752-.237-.268 0-.523.086-.751.237H10.12v-.669c.36 0 1.086-.591 1.086-1.02 0-.428-.683-.517-.683-.517h-.54c-1.258 0-1.749-1.186-1.749-1.186h2.08v-.228h4.824v.731c-.646 0-1.506.237-1.506.237m-3.052-.58h4.303c.026 0 .049-.02.049-.048v-.029c0-.026-.02-.048-.049-.048H10.58c-.026 0-.049.02-.049.048v.029c0 .025.02.048.049.048m-.297.2v-.097c0-.014-.012-.023-.023-.023H8.868c-.02 0-.028.032-.008.043.211.112.351.1.351.1h1.049c.014 0 .023-.011.023-.023M2.17 7.166v7.972c0 .315.075.589.166.606s.266-.203.386-.494l2.617-6.252a.655.655 0 0 0-.28-.803L2.67 6.872c-.274-.152-.5-.02-.5.294m11.459-5.375c-.06.071.048.329.243.577l4.072 5.204c.194.248.574.32.845.162l2.209-1.288c.272-.157.272-.417 0-.575l-6.763-3.92c-.272-.157-.546-.229-.606-.16m8.172 13.347V7.166c0-.314-.226-.446-.5-.294l-2.389 1.323a.652.652 0 0 0-.28.803l2.618 6.252c.123.291.294.511.385.494.092-.02.166-.291.166-.606m-8.895 3.652 8.218-1.083c.311-.04.466-.311.346-.6l-3.201-7.644c-.123-.288-.348-.303-.505-.031l-5.141 8.938c-.154.271-.029.46.283.42m4.317-11.144-4.88-6.444c-.189-.251-.503-.254-.697-.005L6.594 7.649c-.195.248-.095.451.22.451h10.184c.314 0 .414-.203.225-.454M2.759 17.71l8.055 1.077c.314.043.44-.146.286-.42L6.036 9.44c-.157-.274-.38-.26-.5.032L2.41 17.104c-.12.292.037.563.349.606m8.841 4.946h-.003v-2.669c0-.314-.254-.605-.566-.648l-6.54-.878c-.312-.042-.592-.002-.621.083-.028.086.169.289.441.446l6.795 3.949c.271.16.494.032.494-.283" }) + ] + } + ); +}); + +export { SiFoundryvirtualtabletop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.cjs new file mode 100644 index 000000000..b44e448a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3333FF"; +const SiFoursquare = React__namespace.forwardRef(function SiFoursquare2({ title = "Foursquare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.376 0h7.338v1.204h-6.12v3.372h5.44V5.78h-5.44v4.874H2.376V0zm-.208 20.16l1.19-.268c.213 1.473 1.232 2.352 2.89 2.352 1.487 0 2.664-.694 2.664-1.828 0-.807-.595-1.487-2.919-2.18-2.635-.752-3.513-1.715-3.513-3.13 0-1.829 1.473-2.805 3.613-2.805 2.393 0 3.456 1.218 3.825 2.89l-1.19.269c-.299-1.374-1.233-1.955-2.679-1.955-1.36 0-2.323.51-2.323 1.487 0 .793.624 1.403 2.777 2.083 2.565.793 3.67 1.658 3.67 3.301 0 2.04-1.715 3.103-3.896 3.103-2.281-.003-3.84-1.193-4.11-3.318zm9.223-2.238c0-3.159 2.068-5.624 5.242-5.624 3.159 0 5.2 2.479 5.2 5.624 0 1.573-.525 2.933-1.404 3.925a36.155 36.155 0 011.247 1.303l-.879.85a57.16 57.16 0 00-1.303-1.346c-.807.524-1.771.822-2.861.822-3.061 0-5.242-2.352-5.242-5.554zm7.181 3.825a31.241 31.241 0 00-1.247-1.148l.85-.863a36.537 36.537 0 011.331 1.218c.638-.764 1.02-1.813 1.02-3.046 0-2.493-1.516-4.39-3.896-4.39s-3.91 1.897-3.91 4.39c0 2.565 1.658 4.363 3.91 4.363.725 0 1.375-.184 1.942-.524z" }) + ] + } + ); +}); + +exports.default = SiFoursquare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.d.ts new file mode 100644 index 000000000..425c95c45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3333FF"; +declare const SiFoursquare: IconType; +export { SiFoursquare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.mjs new file mode 100644 index 000000000..d1ca7bc91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoursquare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3333FF"; +const SiFoursquare = React.forwardRef(function SiFoursquare2({ title = "Foursquare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.376 0h7.338v1.204h-6.12v3.372h5.44V5.78h-5.44v4.874H2.376V0zm-.208 20.16l1.19-.268c.213 1.473 1.232 2.352 2.89 2.352 1.487 0 2.664-.694 2.664-1.828 0-.807-.595-1.487-2.919-2.18-2.635-.752-3.513-1.715-3.513-3.13 0-1.829 1.473-2.805 3.613-2.805 2.393 0 3.456 1.218 3.825 2.89l-1.19.269c-.299-1.374-1.233-1.955-2.679-1.955-1.36 0-2.323.51-2.323 1.487 0 .793.624 1.403 2.777 2.083 2.565.793 3.67 1.658 3.67 3.301 0 2.04-1.715 3.103-3.896 3.103-2.281-.003-3.84-1.193-4.11-3.318zm9.223-2.238c0-3.159 2.068-5.624 5.242-5.624 3.159 0 5.2 2.479 5.2 5.624 0 1.573-.525 2.933-1.404 3.925a36.155 36.155 0 011.247 1.303l-.879.85a57.16 57.16 0 00-1.303-1.346c-.807.524-1.771.822-2.861.822-3.061 0-5.242-2.352-5.242-5.554zm7.181 3.825a31.241 31.241 0 00-1.247-1.148l.85-.863a36.537 36.537 0 011.331 1.218c.638-.764 1.02-1.813 1.02-3.046 0-2.493-1.516-4.39-3.896-4.39s-3.91 1.897-3.91 4.39c0 2.565 1.658 4.363 3.91 4.363.725 0 1.375-.184 1.942-.524z" }) + ] + } + ); +}); + +export { SiFoursquare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFox.cjs new file mode 100644 index 000000000..c7988d751 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFox = React__namespace.forwardRef(function SiFox2({ title = "FOX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.069 9.7h3.42L6.3 6.932H0v10.136h3.069V13.8h2.789v-2.778H3.069ZM24 6.932h-3.291L19.48 9.1l-1.231-2.168h-3.292l2.871 5.076-2.871 5.06h3.308l1.215-2.142 1.213 2.142H24l-2.871-5.06Zm-12.592 0A5.067 5.067 0 1 0 16.475 12a5.067 5.067 0 0 0-5.067-5.065Zm.888 7.146a.867.867 0 0 1-.873.847.847.847 0 0 1-.837-.858V9.919a.882.882 0 0 1 .837-.9.913.913 0 0 1 .873.9Z" }) + ] + } + ); +}); + +exports.default = SiFox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFox.d.ts new file mode 100644 index 000000000..e78c25fed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFox: IconType; +export { SiFox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFox.mjs new file mode 100644 index 000000000..7cf910cd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFox = React.forwardRef(function SiFox2({ title = "FOX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.069 9.7h3.42L6.3 6.932H0v10.136h3.069V13.8h2.789v-2.778H3.069ZM24 6.932h-3.291L19.48 9.1l-1.231-2.168h-3.292l2.871 5.076-2.871 5.06h3.308l1.215-2.142 1.213 2.142H24l-2.871-5.06Zm-12.592 0A5.067 5.067 0 1 0 16.475 12a5.067 5.067 0 0 0-5.067-5.065Zm.888 7.146a.867.867 0 0 1-.873.847.847.847 0 0 1-.837-.858V9.919a.882.882 0 0 1 .837-.9.913.913 0 0 1 .873.9Z" }) + ] + } + ); +}); + +export { SiFox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.cjs new file mode 100644 index 000000000..717444f87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB5205"; +const SiFoxtel = React__namespace.forwardRef(function SiFoxtel2({ title = "Foxtel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.867 10.631l.341-1.024H0v4.779h1.16v-1.72h1.434l.341-1.024H1.16v-1.01zm3.03-1.085a2.454 2.454 0 1 0-.006 4.908 2.454 2.454 0 0 0 .007-4.908zm0 3.74a1.287 1.287 0 1 1-.007-2.574 1.287 1.287 0 0 1 .008 2.575zm6.506-3.679h-1.297l-.812 1.304-.82-1.304H8.177l1.468 2.335-1.536 2.444h1.297l.888-1.405.88 1.405h1.297l-1.529-2.444zm.102 1.024h1.413v3.755h1.16V10.63h1.23V9.607h-3.16zm7.304 0l.341-1.024h-3.208v4.779h2.867l.341-1.024h-2.046v-.915h1.432l.341-1.024h-1.773v-.792zm2.143 2.73V9.608h-1.16v4.779h2.867L24 13.362Z" }) + ] + } + ); +}); + +exports.default = SiFoxtel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.d.ts new file mode 100644 index 000000000..9aed1af11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB5205"; +declare const SiFoxtel: IconType; +export { SiFoxtel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.mjs new file mode 100644 index 000000000..6f461b829 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFoxtel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB5205"; +const SiFoxtel = React.forwardRef(function SiFoxtel2({ title = "Foxtel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.867 10.631l.341-1.024H0v4.779h1.16v-1.72h1.434l.341-1.024H1.16v-1.01zm3.03-1.085a2.454 2.454 0 1 0-.006 4.908 2.454 2.454 0 0 0 .007-4.908zm0 3.74a1.287 1.287 0 1 1-.007-2.574 1.287 1.287 0 0 1 .008 2.575zm6.506-3.679h-1.297l-.812 1.304-.82-1.304H8.177l1.468 2.335-1.536 2.444h1.297l.888-1.405.88 1.405h1.297l-1.529-2.444zm.102 1.024h1.413v3.755h1.16V10.63h1.23V9.607h-3.16zm7.304 0l.341-1.024h-3.208v4.779h2.867l.341-1.024h-2.046v-.915h1.432l.341-1.024h-1.773v-.792zm2.143 2.73V9.608h-1.16v4.779h2.867L24 13.362Z" }) + ] + } + ); +}); + +export { SiFoxtel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.cjs new file mode 100644 index 000000000..8acd0a9b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15B29"; +const SiFozzy = React__namespace.forwardRef(function SiFozzy2({ title = "Fozzy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.494 20.48l-.998-2.095 5.787-11.273c.897 1.396 1.496 3.092 1.496 4.888 0 3.99-2.594 7.382-6.285 8.48zM12.998.029C5.615-.471-.47 5.615.028 12.998c.5 5.786 5.188 10.475 10.974 10.973 7.383.5 13.468-5.586 12.97-12.969C23.471 5.216 18.783.527 12.997.03zM7.112 4.717c1.297-.897 2.793-1.396 4.39-1.496L8.807 8.409 7.112 4.717zm3.491 7.383l4.19-8.38c.798.3 1.497.598 2.195 1.097L11.9 14.793 10.603 12.1zM3.221 12c0-1.796.599-3.492 1.496-4.888l6.485 13.667C6.712 20.38 3.22 16.589 3.22 12z" }) + ] + } + ); +}); + +exports.default = SiFozzy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.d.ts new file mode 100644 index 000000000..7cd2903bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15B29"; +declare const SiFozzy: IconType; +export { SiFozzy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.mjs new file mode 100644 index 000000000..d5659fc80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFozzy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15B29"; +const SiFozzy = React.forwardRef(function SiFozzy2({ title = "Fozzy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.494 20.48l-.998-2.095 5.787-11.273c.897 1.396 1.496 3.092 1.496 4.888 0 3.99-2.594 7.382-6.285 8.48zM12.998.029C5.615-.471-.47 5.615.028 12.998c.5 5.786 5.188 10.475 10.974 10.973 7.383.5 13.468-5.586 12.97-12.969C23.471 5.216 18.783.527 12.997.03zM7.112 4.717c1.297-.897 2.793-1.396 4.39-1.496L8.807 8.409 7.112 4.717zm3.491 7.383l4.19-8.38c.798.3 1.497.598 2.195 1.097L11.9 14.793 10.603 12.1zM3.221 12c0-1.796.599-3.492 1.496-4.888l6.485 13.667C6.712 20.38 3.22 16.589 3.22 12z" }) + ] + } + ); +}); + +export { SiFozzy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.cjs new file mode 100644 index 000000000..2e47bb330 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0055FF"; +const SiFramer = React__namespace.forwardRef(function SiFramer2({ title = "Framer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 0h16v8h-8zM4 8h8l8 8H4zM4 16h8v8z" }) + ] + } + ); +}); + +exports.default = SiFramer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.d.ts new file mode 100644 index 000000000..1fc0c1125 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0055FF"; +declare const SiFramer: IconType; +export { SiFramer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.mjs new file mode 100644 index 000000000..8b805ce0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0055FF"; +const SiFramer = React.forwardRef(function SiFramer2({ title = "Framer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4 0h16v8h-8zM4 8h8l8 8H4zM4 16h8v8z" }) + ] + } + ); +}); + +export { SiFramer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.cjs new file mode 100644 index 000000000..f6c1c03b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFramework = React__namespace.forwardRef(function SiFramework2({ title = "Framework", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.186 9.07 21.41 8.019a2.78 2.78 0 0 1-1.344-2.391V3.523c0-.431-.19-.837-.516-1.108A11.965 11.965 0 0 0 16.317.493a1.356 1.356 0 0 0-1.193.091L13.347 1.64a2.622 2.622 0 0 1-2.688 0L8.882.584a1.348 1.348 0 0 0-1.194-.09 11.93 11.93 0 0 0-3.231 1.918 1.44 1.44 0 0 0-.516 1.108v2.104c0 .986-.51 1.897-1.344 2.392L.823 9.068c-.363.215-.61.588-.675 1.013A12.24 12.24 0 0 0 0 12.001c0 .651.048 1.292.145 1.916.065.425.312.801.675 1.016l1.774 1.052a2.78 2.78 0 0 1 1.344 2.392v2.104c0 .431.191.837.516 1.108.965.8 2.054 1.452 3.231 1.919.393.155.831.124 1.194-.091l1.777-1.055a2.622 2.622 0 0 1 2.688 0l1.777 1.055c.363.215.804.246 1.193.091a11.973 11.973 0 0 0 3.232-1.92 1.44 1.44 0 0 0 .516-1.107v-2.104a2.78 2.78 0 0 1 1.344-2.392l1.774-1.052c.363-.215.61-.588.675-1.016.094-.624.145-1.265.145-1.916 0-.652-.048-1.293-.145-1.917a1.41 1.41 0 0 0-.67-1.013zM12.003 19.41c-3.981 0-7.21-3.317-7.21-7.407s3.229-7.406 7.21-7.406c3.98 0 7.21 3.316 7.21 7.406s-3.23 7.407-7.21 7.407z" }) + ] + } + ); +}); + +exports.default = SiFramework; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.d.ts new file mode 100644 index 000000000..ab3ecb71b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFramework: IconType; +export { SiFramework as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.mjs new file mode 100644 index 000000000..ed9aa6f99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFramework = React.forwardRef(function SiFramework2({ title = "Framework", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.186 9.07 21.41 8.019a2.78 2.78 0 0 1-1.344-2.391V3.523c0-.431-.19-.837-.516-1.108A11.965 11.965 0 0 0 16.317.493a1.356 1.356 0 0 0-1.193.091L13.347 1.64a2.622 2.622 0 0 1-2.688 0L8.882.584a1.348 1.348 0 0 0-1.194-.09 11.93 11.93 0 0 0-3.231 1.918 1.44 1.44 0 0 0-.516 1.108v2.104c0 .986-.51 1.897-1.344 2.392L.823 9.068c-.363.215-.61.588-.675 1.013A12.24 12.24 0 0 0 0 12.001c0 .651.048 1.292.145 1.916.065.425.312.801.675 1.016l1.774 1.052a2.78 2.78 0 0 1 1.344 2.392v2.104c0 .431.191.837.516 1.108.965.8 2.054 1.452 3.231 1.919.393.155.831.124 1.194-.091l1.777-1.055a2.622 2.622 0 0 1 2.688 0l1.777 1.055c.363.215.804.246 1.193.091a11.973 11.973 0 0 0 3.232-1.92 1.44 1.44 0 0 0 .516-1.107v-2.104a2.78 2.78 0 0 1 1.344-2.392l1.774-1.052c.363-.215.61-.588.675-1.016.094-.624.145-1.265.145-1.916 0-.652-.048-1.293-.145-1.917a1.41 1.41 0 0 0-.67-1.013zM12.003 19.41c-3.981 0-7.21-3.317-7.21-7.407s3.229-7.406 7.21-7.406c3.98 0 7.21 3.316 7.21 7.406s-3.23 7.407-7.21 7.407z" }) + ] + } + ); +}); + +export { SiFramework as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.cjs new file mode 100644 index 000000000..462c9b187 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE350F"; +const SiFramework7 = React__namespace.forwardRef(function SiFramework72({ title = "Framework7", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12a11.95 11.95 0 012.713-7.6h18.574L8.037 23.33C3.358 21.694 0 17.24 0 12zm22.271-6.208A11.944 11.944 0 0124 12c0 6.627-5.373 12-12 12-.794 0-1.57-.077-2.32-.224zM4.295 2.8A11.952 11.952 0 0112 0c2.933 0 5.62 1.052 7.705 2.8z" }) + ] + } + ); +}); + +exports.default = SiFramework7; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.d.ts new file mode 100644 index 000000000..057ef31d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE350F"; +declare const SiFramework7: IconType; +export { SiFramework7 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.mjs new file mode 100644 index 000000000..a6894597e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFramework7.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE350F"; +const SiFramework7 = React.forwardRef(function SiFramework72({ title = "Framework7", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12a11.95 11.95 0 012.713-7.6h18.574L8.037 23.33C3.358 21.694 0 17.24 0 12zm22.271-6.208A11.944 11.944 0 0124 12c0 6.627-5.373 12-12 12-.794 0-1.57-.077-2.32-.224zM4.295 2.8A11.952 11.952 0 0112 0c2.933 0 5.62 1.052 7.705 2.8z" }) + ] + } + ); +}); + +export { SiFramework7 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.cjs new file mode 100644 index 000000000..a8f2888c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC6237"; +const SiFranprix = React__namespace.forwardRef(function SiFranprix2({ title = "Franprix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6.305c3.691 0 6.323-3.071 6.13-6.286-2.124-.17-5.069.791-6.13 3.79C10.939.81 7.993-.15 5.87.02 5.677 3.234 8.309 6.305 12 6.305m11.002 6.962c-.139-3.413-2.821-6.362-6.55-6.362-1.69 0-3.236.635-4.452 1.744-1.217-1.11-2.763-1.744-4.452-1.744-3.729 0-6.412 2.949-6.55 6.362C.758 19.19 5.913 24 12 24c6.087 0 11.242-4.81 11.002-10.733" }) + ] + } + ); +}); + +exports.default = SiFranprix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.d.ts new file mode 100644 index 000000000..437c85a96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC6237"; +declare const SiFranprix: IconType; +export { SiFranprix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.mjs new file mode 100644 index 000000000..2ac8733a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFranprix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC6237"; +const SiFranprix = React.forwardRef(function SiFranprix2({ title = "Franprix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6.305c3.691 0 6.323-3.071 6.13-6.286-2.124-.17-5.069.791-6.13 3.79C10.939.81 7.993-.15 5.87.02 5.677 3.234 8.309 6.305 12 6.305m11.002 6.962c-.139-3.413-2.821-6.362-6.55-6.362-1.69 0-3.236.635-4.452 1.744-1.217-1.11-2.763-1.744-4.452-1.744-3.729 0-6.412 2.949-6.55 6.362C.758 19.19 5.913 24 12 24c6.087 0 11.242-4.81 11.002-10.733" }) + ] + } + ); +}); + +export { SiFranprix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.cjs new file mode 100644 index 000000000..2c94ef95c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0089FF"; +const SiFrappe = React__namespace.forwardRef(function SiFrappe2({ title = "Frappe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.88 0C1.29 0 0 1.29 0 2.88v18.24C0 22.71 1.29 24 2.88 24h18.24c1.59 0 2.88-1.29 2.88-2.88V2.88C24 1.29 22.71 0 21.12 0H2.88zM8.4 6h8.024v2.111H8.4V6zm0 5.385h7.49v2.113h-4.93V18H8.4v-6.615z" }) + ] + } + ); +}); + +exports.default = SiFrappe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.d.ts new file mode 100644 index 000000000..e97f2a894 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0089FF"; +declare const SiFrappe: IconType; +export { SiFrappe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.mjs new file mode 100644 index 000000000..1d38e3006 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrappe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0089FF"; +const SiFrappe = React.forwardRef(function SiFrappe2({ title = "Frappe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.88 0C1.29 0 0 1.29 0 2.88v18.24C0 22.71 1.29 24 2.88 24h18.24c1.59 0 2.88-1.29 2.88-2.88V2.88C24 1.29 22.71 0 21.12 0H2.88zM8.4 6h8.024v2.111H8.4V6zm0 5.385h7.49v2.113h-4.93V18H8.4v-6.615z" }) + ] + } + ); +}); + +export { SiFrappe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.cjs new file mode 100644 index 000000000..5db48ce6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#179C7D"; +const SiFraunhofergesellschaft = React__namespace.forwardRef(function SiFraunhofergesellschaft2({ title = "Fraunhofer-Gesellschaft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.06 23.99c5.681-2.926 14-7.653 23.88-14.567v-2.32C15.247 12.792 6.406 17.359.06 20.38zm0-6.93c6.325-2.575 15.166-6.558 23.88-11.74V4.174C15.751 8.238 7.24 10.781.06 12.366zM23.94 24V12.332A201.394 201.393 0 0 1 8.596 24zM5.542 24a166.927 166.926 0 0 0 14.7-9.765 323.136 324.76 0 0 0 3.698-2.81V9.98C16.257 15.74 8.413 20.542 2.287 24zM.06 10.668C7.044 9.44 15.589 7.231 23.94 3.262v-1.3C15.526 5.737 7.102 7.338.06 7.91zM.06 0v6.686c.522-.033 1.054-.07 1.596-.111C7.464 6.126 15.387 5.1 23.94 1.402V0z" }) + ] + } + ); +}); + +exports.default = SiFraunhofergesellschaft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.d.ts new file mode 100644 index 000000000..556bd5673 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#179C7D"; +declare const SiFraunhofergesellschaft: IconType; +export { SiFraunhofergesellschaft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.mjs new file mode 100644 index 000000000..222127085 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFraunhofergesellschaft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#179C7D"; +const SiFraunhofergesellschaft = React.forwardRef(function SiFraunhofergesellschaft2({ title = "Fraunhofer-Gesellschaft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.06 23.99c5.681-2.926 14-7.653 23.88-14.567v-2.32C15.247 12.792 6.406 17.359.06 20.38zm0-6.93c6.325-2.575 15.166-6.558 23.88-11.74V4.174C15.751 8.238 7.24 10.781.06 12.366zM23.94 24V12.332A201.394 201.393 0 0 1 8.596 24zM5.542 24a166.927 166.926 0 0 0 14.7-9.765 323.136 324.76 0 0 0 3.698-2.81V9.98C16.257 15.74 8.413 20.542 2.287 24zM.06 10.668C7.044 9.44 15.589 7.231 23.94 3.262v-1.3C15.526 5.737 7.102 7.338.06 7.91zM.06 0v6.686c.522-.033 1.054-.07 1.596-.111C7.464 6.126 15.387 5.1 23.94 1.402V0z" }) + ] + } + ); +}); + +export { SiFraunhofergesellschaft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.cjs new file mode 100644 index 000000000..5c4d6135e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AB2B28"; +const SiFreebsd = React__namespace.forwardRef(function SiFreebsd2({ title = "FreeBSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.682 2.406c-.001-.149-.097-.187-.24-.189h-.25v.659h.108v-.282h.102l.17.282h.122l-.184-.29c.102-.012.175-.065.172-.18zm-.382.096v-.193h.13c.06-.002.145.011.143.089.005.09-.08.107-.153.103h-.12zM21.851 1.49c1.172 1.171-2.077 6.319-2.626 6.869-.549.548-1.944.044-3.115-1.128-1.172-1.171-1.676-2.566-1.127-3.115.549-.55 5.697-3.798 6.868-2.626zM1.652 6.61C.626 4.818-.544 2.215.276 1.395c.81-.81 3.355.319 5.144 1.334A11.003 11.003 0 0 0 1.652 6.61zm18.95.418a10.584 10.584 0 0 1 1.368 5.218c0 5.874-4.762 10.636-10.637 10.636C5.459 22.882.697 18.12.697 12.246.697 6.371 5.459 1.61 11.333 1.61c1.771 0 3.441.433 4.909 1.199-.361.201-.69.398-.969.574-.428-.077-.778-.017-.998.202-.402.402-.269 1.245.263 2.2.273.539.701 1.124 1.25 1.674.103.104.208.202.315.297 1.519 1.446 3.205 2.111 3.829 1.486.267-.267.297-.728.132-1.287.167-.27.35-.584.538-.927zm2.814-5.088c-.322 0-.584.266-.584.595s.261.595.584.595c.323 0 .584-.266.584-.595s-.261-.595-.584-.595zm0 1.087c-.252 0-.457-.22-.457-.492s.204-.492.457-.492c.252 0 .457.22.457.492s-.204.492-.457.492z" }) + ] + } + ); +}); + +exports.default = SiFreebsd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.d.ts new file mode 100644 index 000000000..30eb6a94d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AB2B28"; +declare const SiFreebsd: IconType; +export { SiFreebsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.mjs new file mode 100644 index 000000000..75d28f83b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreebsd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AB2B28"; +const SiFreebsd = React.forwardRef(function SiFreebsd2({ title = "FreeBSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.682 2.406c-.001-.149-.097-.187-.24-.189h-.25v.659h.108v-.282h.102l.17.282h.122l-.184-.29c.102-.012.175-.065.172-.18zm-.382.096v-.193h.13c.06-.002.145.011.143.089.005.09-.08.107-.153.103h-.12zM21.851 1.49c1.172 1.171-2.077 6.319-2.626 6.869-.549.548-1.944.044-3.115-1.128-1.172-1.171-1.676-2.566-1.127-3.115.549-.55 5.697-3.798 6.868-2.626zM1.652 6.61C.626 4.818-.544 2.215.276 1.395c.81-.81 3.355.319 5.144 1.334A11.003 11.003 0 0 0 1.652 6.61zm18.95.418a10.584 10.584 0 0 1 1.368 5.218c0 5.874-4.762 10.636-10.637 10.636C5.459 22.882.697 18.12.697 12.246.697 6.371 5.459 1.61 11.333 1.61c1.771 0 3.441.433 4.909 1.199-.361.201-.69.398-.969.574-.428-.077-.778-.017-.998.202-.402.402-.269 1.245.263 2.2.273.539.701 1.124 1.25 1.674.103.104.208.202.315.297 1.519 1.446 3.205 2.111 3.829 1.486.267-.267.297-.728.132-1.287.167-.27.35-.584.538-.927zm2.814-5.088c-.322 0-.584.266-.584.595s.261.595.584.595c.323 0 .584-.266.584-.595s-.261-.595-.584-.595zm0 1.087c-.252 0-.457-.22-.457-.492s.204-.492.457-.492c.252 0 .457.22.457.492s-.204.492-.457.492z" }) + ] + } + ); +}); + +export { SiFreebsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.cjs new file mode 100644 index 000000000..ff57462e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#418FDE"; +const SiFreecad = React__namespace.forwardRef(function SiFreecad2({ title = "FreeCAD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 0h16v7.996a.7.7 0 0 1-.288.566l-2.173 1.58a.7.7 0 0 0-.289.565v.586c0 .224.107.434.289.566l1.895 1.377a.7.7 0 0 1 .254.783l-.649 1.997a.7.7 0 0 1-.665.484H18.03a.7.7 0 0 0-.566.288l-.344.474a.7.7 0 0 0-.1.627l.724 2.229a.7.7 0 0 1-.254.782l-1.699 1.234a.7.7 0 0 1-.823 0l-1.895-1.377a.7.7 0 0 0-.628-.099l-.556.18a.7.7 0 0 0-.45.45l-.724 2.228a.7.7 0 0 1-.665.484H2V4zm12 8V4H6v16h4v-5h4v-4h-4V8z" }) + ] + } + ); +}); + +exports.default = SiFreecad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.d.ts new file mode 100644 index 000000000..e27aad18d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#418FDE"; +declare const SiFreecad: IconType; +export { SiFreecad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.mjs new file mode 100644 index 000000000..5665614c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#418FDE"; +const SiFreecad = React.forwardRef(function SiFreecad2({ title = "FreeCAD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 0h16v7.996a.7.7 0 0 1-.288.566l-2.173 1.58a.7.7 0 0 0-.289.565v.586c0 .224.107.434.289.566l1.895 1.377a.7.7 0 0 1 .254.783l-.649 1.997a.7.7 0 0 1-.665.484H18.03a.7.7 0 0 0-.566.288l-.344.474a.7.7 0 0 0-.1.627l.724 2.229a.7.7 0 0 1-.254.782l-1.699 1.234a.7.7 0 0 1-.823 0l-1.895-1.377a.7.7 0 0 0-.628-.099l-.556.18a.7.7 0 0 0-.45.45l-.724 2.228a.7.7 0 0 1-.665.484H2V4zm12 8V4H6v16h4v-5h4v-4h-4V8z" }) + ] + } + ); +}); + +export { SiFreecad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.cjs new file mode 100644 index 000000000..97c4dd451 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0A23"; +const SiFreecodecamp = React__namespace.forwardRef(function SiFreecodecamp2({ title = "freeCodeCamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.885 3.906a.621.621 0 00-.354.12c-.08.08-.161.196-.161.313 0 .2.236.474.673.923 1.822 1.754 2.738 3.903 2.732 6.494-.007 2.867-.97 5.17-2.844 6.954-.394.353-.556.63-.557.867 0 .116.08.237.16.353.076.08.237.162.353.162.434 0 1.04-.512 1.833-1.509 1.542-1.89 2.24-3.978 2.279-6.824.036-2.847-.857-4.777-2.603-6.77-.63-.712-1.153-1.082-1.511-1.083zm-15.769.002c-.358 0-.882.37-1.51 1.083C.858 6.984-.035 8.914.001 11.761c.04 2.846.737 4.933 2.28 6.824.791.997 1.398 1.51 1.832 1.509a.573.573 0 00.352-.162c.08-.116.16-.237.16-.353 0-.237-.162-.514-.556-.866-1.873-1.785-2.837-4.087-2.844-6.955-.006-2.591.91-4.74 2.732-6.494.437-.449.674-.722.673-.923 0-.117-.08-.233-.161-.313a.621.621 0 00-.354-.12zm7.056.895s.655 2.081-2.649 6.727c-3.156 4.433 1.045 7.15 1.432 7.386-.281-.18-2.001-1.5.402-5.423.466-.77 1.076-1.47 1.834-3.041 0 0 .67.946.32 2.998-.523 3.101 2.271 2.214 2.314 2.257.976 1.15-.808 3.17-.917 3.233-.108.061 5.096-3.13 1.399-7.935-.253.253-.582 1.442-1.267 1.266-.684-.174 2.125-3.494-2.868-7.468zM9.955 18.916c.023.016.038.024.038.024l-.038-.024z" }) + ] + } + ); +}); + +exports.default = SiFreecodecamp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.d.ts new file mode 100644 index 000000000..b667c1dc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0A23"; +declare const SiFreecodecamp: IconType; +export { SiFreecodecamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.mjs new file mode 100644 index 000000000..7fed98b89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreecodecamp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0A23"; +const SiFreecodecamp = React.forwardRef(function SiFreecodecamp2({ title = "freeCodeCamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.885 3.906a.621.621 0 00-.354.12c-.08.08-.161.196-.161.313 0 .2.236.474.673.923 1.822 1.754 2.738 3.903 2.732 6.494-.007 2.867-.97 5.17-2.844 6.954-.394.353-.556.63-.557.867 0 .116.08.237.16.353.076.08.237.162.353.162.434 0 1.04-.512 1.833-1.509 1.542-1.89 2.24-3.978 2.279-6.824.036-2.847-.857-4.777-2.603-6.77-.63-.712-1.153-1.082-1.511-1.083zm-15.769.002c-.358 0-.882.37-1.51 1.083C.858 6.984-.035 8.914.001 11.761c.04 2.846.737 4.933 2.28 6.824.791.997 1.398 1.51 1.832 1.509a.573.573 0 00.352-.162c.08-.116.16-.237.16-.353 0-.237-.162-.514-.556-.866-1.873-1.785-2.837-4.087-2.844-6.955-.006-2.591.91-4.74 2.732-6.494.437-.449.674-.722.673-.923 0-.117-.08-.233-.161-.313a.621.621 0 00-.354-.12zm7.056.895s.655 2.081-2.649 6.727c-3.156 4.433 1.045 7.15 1.432 7.386-.281-.18-2.001-1.5.402-5.423.466-.77 1.076-1.47 1.834-3.041 0 0 .67.946.32 2.998-.523 3.101 2.271 2.214 2.314 2.257.976 1.15-.808 3.17-.917 3.233-.108.061 5.096-3.13 1.399-7.935-.253.253-.582 1.442-1.267 1.266-.684-.174 2.125-3.494-2.868-7.468zM9.955 18.916c.023.016.038.024.038.024l-.038-.024z" }) + ] + } + ); +}); + +export { SiFreecodecamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.cjs new file mode 100644 index 000000000..3dbf5b215 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B80AE"; +const SiFreedesktopdotorg = React__namespace.forwardRef(function SiFreedesktopdotorg2({ title = "freedesktop.org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.855 13.112l-2.054-7.875a4.414 4.414 0 0 0-5.379-3.153L3.296 5.509a4.413 4.413 0 0 0-3.153 5.378l2.055 7.875a4.416 4.416 0 0 0 5.379 3.153l13.126-3.425a4.377 4.377 0 0 0 2.69-2.036 4.377 4.377 0 0 0 .462-3.342zm-1.047 3a3.701 3.701 0 0 1-2.277 1.723L7.406 21.26a3.735 3.735 0 0 1-4.551-2.668L.8 10.717a3.734 3.734 0 0 1 2.668-4.552L16.593 2.74a3.727 3.727 0 0 1 4.551 2.668l2.054 7.875a3.7 3.7 0 0 1-.39 2.829zm-2.362-9.893c-.482-2.061-2.122-2.941-4.369-2.437l-11.65 3.04c-2.426.706-3.104 2.014-2.621 4.261l1.748 6.698c.482 2.112 2.281 3.098 4.369 2.437l11.651-3.04c2.121-.504 3.104-2.095 2.622-4.261l-1.75-6.698zm-6.277 3.097l.173.663-4.117.475-.173-.663 4.117-.475zm-9.05 3.861a.639.639 0 0 1-.783-.46l-.777-2.975a.643.643 0 0 1 .459-.783l4.169-1.087a.644.644 0 0 1 .784.458l.776 2.975a.643.643 0 0 1-.459.784l-4.169 1.088zm5.618 1.76l-2.06-1.988.769-.201 2.03 1.959-.519.135a.944.944 0 0 0-.22.095zm3.397 1.93a.212.212 0 0 1-.128.097l-2.336.609a.21.21 0 0 1-.257-.151l-.435-1.667a.21.21 0 0 1 .151-.257l2.336-.609a.211.211 0 0 1 .256.15l.435 1.667a.214.214 0 0 1-.022.161zm.011-2.398a.882.882 0 0 0-.178-.142.882.882 0 0 0-.463-.119l1.562-2.351c.183.147.41.235.649.248l-1.57 2.364zm5.151-3.94l-3.401.887a.462.462 0 0 1-.563-.33l-.633-2.428a.461.461 0 0 1 .33-.563l3.401-.887a.47.47 0 0 1 .35.049.457.457 0 0 1 .213.282l.633 2.428a.46.46 0 0 1-.33.562z" }) + ] + } + ); +}); + +exports.default = SiFreedesktopdotorg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.d.ts new file mode 100644 index 000000000..21785d8a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B80AE"; +declare const SiFreedesktopdotorg: IconType; +export { SiFreedesktopdotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.mjs new file mode 100644 index 000000000..9acf02d17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreedesktopdotorg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B80AE"; +const SiFreedesktopdotorg = React.forwardRef(function SiFreedesktopdotorg2({ title = "freedesktop.org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.855 13.112l-2.054-7.875a4.414 4.414 0 0 0-5.379-3.153L3.296 5.509a4.413 4.413 0 0 0-3.153 5.378l2.055 7.875a4.416 4.416 0 0 0 5.379 3.153l13.126-3.425a4.377 4.377 0 0 0 2.69-2.036 4.377 4.377 0 0 0 .462-3.342zm-1.047 3a3.701 3.701 0 0 1-2.277 1.723L7.406 21.26a3.735 3.735 0 0 1-4.551-2.668L.8 10.717a3.734 3.734 0 0 1 2.668-4.552L16.593 2.74a3.727 3.727 0 0 1 4.551 2.668l2.054 7.875a3.7 3.7 0 0 1-.39 2.829zm-2.362-9.893c-.482-2.061-2.122-2.941-4.369-2.437l-11.65 3.04c-2.426.706-3.104 2.014-2.621 4.261l1.748 6.698c.482 2.112 2.281 3.098 4.369 2.437l11.651-3.04c2.121-.504 3.104-2.095 2.622-4.261l-1.75-6.698zm-6.277 3.097l.173.663-4.117.475-.173-.663 4.117-.475zm-9.05 3.861a.639.639 0 0 1-.783-.46l-.777-2.975a.643.643 0 0 1 .459-.783l4.169-1.087a.644.644 0 0 1 .784.458l.776 2.975a.643.643 0 0 1-.459.784l-4.169 1.088zm5.618 1.76l-2.06-1.988.769-.201 2.03 1.959-.519.135a.944.944 0 0 0-.22.095zm3.397 1.93a.212.212 0 0 1-.128.097l-2.336.609a.21.21 0 0 1-.257-.151l-.435-1.667a.21.21 0 0 1 .151-.257l2.336-.609a.211.211 0 0 1 .256.15l.435 1.667a.214.214 0 0 1-.022.161zm.011-2.398a.882.882 0 0 0-.178-.142.882.882 0 0 0-.463-.119l1.562-2.351c.183.147.41.235.649.248l-1.57 2.364zm5.151-3.94l-3.401.887a.462.462 0 0 1-.563-.33l-.633-2.428a.461.461 0 0 1 .33-.563l3.401-.887a.47.47 0 0 1 .35.049.457.457 0 0 1 .213.282l.633 2.428a.46.46 0 0 1-.33.562z" }) + ] + } + ); +}); + +export { SiFreedesktopdotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.cjs new file mode 100644 index 000000000..ffa6da33b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#29B2FE"; +const SiFreelancer = React__namespace.forwardRef(function SiFreelancer2({ title = "Freelancer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.096 3.076l1.634 2.292L24 3.076M5.503 20.924l4.474-4.374-2.692-2.89m6.133-10.584L11.027 5.23l4.022.15M4.124 3.077l.857 1.76 4.734.294m-3.058 7.072l3.497-6.522L0 5.13m7.064 7.485l3.303 3.548 3.643-3.57 1.13-6.652-4.439-.228Z" }) + ] + } + ); +}); + +exports.default = SiFreelancer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.d.ts new file mode 100644 index 000000000..e4cf71110 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#29B2FE"; +declare const SiFreelancer: IconType; +export { SiFreelancer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.mjs new file mode 100644 index 000000000..5cd835ced --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#29B2FE"; +const SiFreelancer = React.forwardRef(function SiFreelancer2({ title = "Freelancer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.096 3.076l1.634 2.292L24 3.076M5.503 20.924l4.474-4.374-2.692-2.89m6.133-10.584L11.027 5.23l4.022.15M4.124 3.077l.857 1.76 4.734.294m-3.058 7.072l3.497-6.522L0 5.13m7.064 7.485l3.303 3.548 3.643-3.57 1.13-6.652-4.439-.228Z" }) + ] + } + ); +}); + +export { SiFreelancer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.cjs new file mode 100644 index 000000000..e5fd26b3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CFD6"; +const SiFreelancermap = React__namespace.forwardRef(function SiFreelancermap2({ title = "freelancermap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3723 0 0 5.3723 0 12s5.3723 12 12 12l-.0115-1.3962H12c5.857 0 10.6038-4.7469 10.6038-10.6038H24c0-6.6277-5.3723-12-12-12m0 21.2054c-5.0838 0-9.2054-4.1216-9.2054-9.2054S6.9162 2.7923 12 2.7923s9.2054 4.1215 9.2054 9.2054S17.0838 21.203 12 21.203zm6.3254-4.597c3.577-5.0492.173-10.2115-2.8639-11.6146-3.6092.5747-6.8607 3.9254-7.2323 7.9108 2.8177 4.8162 8.5039 4.223 10.0985 3.7039m-9.9115-1.4493c.2653 1.6362.7246 3.247 1.703 4.4377 3.4246.8839 6.45-.7823 7.9431-2.6423-3.15 1.463-6.6623.623-9.6438-1.7954M4.7054 9.0715c-1.897 4.9939 1.3246 9.1431 4.6754 10.3039-1.0754-1.3108-1.8531-3.1639-2.0516-4.9985-1.4307-1.4307-2.4115-3.2492-2.6261-5.3054M14.31 4.53c-3.09-1.0062-6.0508.1915-7.7423 1.7954.0438 2.0746.3761 3.6946.9092 5.07.7316-3.48 3.5516-6.3416 6.8331-6.863" }) + ] + } + ); +}); + +exports.default = SiFreelancermap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.d.ts new file mode 100644 index 000000000..c0c42f062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CFD6"; +declare const SiFreelancermap: IconType; +export { SiFreelancermap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.mjs new file mode 100644 index 000000000..1e46497c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreelancermap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CFD6"; +const SiFreelancermap = React.forwardRef(function SiFreelancermap2({ title = "freelancermap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3723 0 0 5.3723 0 12s5.3723 12 12 12l-.0115-1.3962H12c5.857 0 10.6038-4.7469 10.6038-10.6038H24c0-6.6277-5.3723-12-12-12m0 21.2054c-5.0838 0-9.2054-4.1216-9.2054-9.2054S6.9162 2.7923 12 2.7923s9.2054 4.1215 9.2054 9.2054S17.0838 21.203 12 21.203zm6.3254-4.597c3.577-5.0492.173-10.2115-2.8639-11.6146-3.6092.5747-6.8607 3.9254-7.2323 7.9108 2.8177 4.8162 8.5039 4.223 10.0985 3.7039m-9.9115-1.4493c.2653 1.6362.7246 3.247 1.703 4.4377 3.4246.8839 6.45-.7823 7.9431-2.6423-3.15 1.463-6.6623.623-9.6438-1.7954M4.7054 9.0715c-1.897 4.9939 1.3246 9.1431 4.6754 10.3039-1.0754-1.3108-1.8531-3.1639-2.0516-4.9985-1.4307-1.4307-2.4115-3.2492-2.6261-5.3054M14.31 4.53c-3.09-1.0062-6.0508.1915-7.7423 1.7954.0438 2.0746.3761 3.6946.9092 5.07.7316-3.48 3.5516-6.3416 6.8331-6.863" }) + ] + } + ); +}); + +export { SiFreelancermap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.cjs new file mode 100644 index 000000000..461937b6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#343434"; +const SiFreenas = React__namespace.forwardRef(function SiFreenas2({ title = "FreeNAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.598 2.707h.143c.06 0 .101.01.124.032a.107.107 0 0 1 .034.083c0 .045-.017.077-.051.097a.307.307 0 0 1-.153.029h-.098v-.241zm0 .391h.09l.214.337h.203l-.242-.356v-.008a.29.29 0 0 0 .161-.081.237.237 0 0 0 .059-.168.254.254 0 0 0-.03-.125.241.241 0 0 0-.08-.082.349.349 0 0 0-.114-.045.645.645 0 0 0-.133-.013h-.303v.879h.175v-.338m-.485-.368a.628.628 0 0 1 .348-.367.688.688 0 0 1 .277-.053.64.64 0 0 1 .625.42.735.735 0 0 1 .049.27.74.74 0 0 1-.049.271.642.642 0 0 1-.348.366.675.675 0 0 1-.277.054.646.646 0 0 1-.624-.421.712.712 0 0 1-.049-.27c0-.095.015-.185.048-.27zm.014.884a.835.835 0 0 0 .273.179.884.884 0 0 0 .338.064c.12 0 .233-.021.339-.064A.83.83 0 0 0 20.598 3a.852.852 0 0 0-.249-.613.815.815 0 0 0-.272-.179c-.105-.043-.218-.064-.339-.064s-.233.021-.338.064a.82.82 0 0 0-.454.45.838.838 0 0 0-.067.342c0 .125.021.239.067.343a.796.796 0 0 0 .181.271m-1.864 12.361a3.268 3.268 0 0 1-.931 1.215 3.203 3.203 0 0 1-2.008.695 3.199 3.199 0 0 1-2.423-1.085 1.989 1.989 0 0 1-.439-.855 2.223 2.223 0 0 1-.06-.519c.002-.854.428-1.71.845-2.362.21-.326.418-.602.575-.794l.208.254.036.046a7.499 7.499 0 0 0 1.126 1.083c.766.597 1.85 1.197 3.126 1.229.012 0 .023.003.035.004a.172.172 0 0 1 .064 0 .16.16 0 0 1 .126.189c-.061.33-.158.628-.28.9zm6.719-7.025a5.339 5.339 0 0 1-.821.905c-.752.664-1.936 1.343-3.649 1.435l-.505.926a.173.173 0 0 1-.299.008l-.581-.954c-.275.051-.984.168-1.808.168-1.376-.03-1.807-.241-2.263-.532l1.538-2.072-3.297-.764 4.136-.795c1.208-2.437 1.583-4.521 1.675-5.157-4.638.514-8.102 1.666-10.329 2.632l-.179.079-.034.014-.249-.241a9.292 9.292 0 0 0-1.459-.985 9.404 9.404 0 0 0-4.516-1.175 8.05 8.05 0 0 0-.894.043c-.491.031-.253.153-.194.203.225.184.544.573.753 1.112.211.541.354 1.27.354 2.254 0 .275-.012.579-.036.896-.195.362-.376.741-.539 1.132C.311 9.227 0 10.479 0 11.767c0 2.291.9 4.378 2.181 6.074l.173.262-1.355 2.7a.063.063 0 0 0 .021.08c.011.007.023.01.035.01a.067.067 0 0 0 .047-.02l2.117-1.863.248.24a10.1 10.1 0 0 0 6.812 2.63c4.516 0 8.342-2.953 9.652-7.032l.288-.124a6.314 6.314 0 0 0 1.132-.555c.684-.424 1.502-1.107 2.045-2.141.362-.687.604-1.534.604-2.576 0-.163-.006-.33-.018-.502" }) + ] + } + ); +}); + +exports.default = SiFreenas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.d.ts new file mode 100644 index 000000000..161dc47b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#343434"; +declare const SiFreenas: IconType; +export { SiFreenas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.mjs new file mode 100644 index 000000000..eef9a38a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#343434"; +const SiFreenas = React.forwardRef(function SiFreenas2({ title = "FreeNAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.598 2.707h.143c.06 0 .101.01.124.032a.107.107 0 0 1 .034.083c0 .045-.017.077-.051.097a.307.307 0 0 1-.153.029h-.098v-.241zm0 .391h.09l.214.337h.203l-.242-.356v-.008a.29.29 0 0 0 .161-.081.237.237 0 0 0 .059-.168.254.254 0 0 0-.03-.125.241.241 0 0 0-.08-.082.349.349 0 0 0-.114-.045.645.645 0 0 0-.133-.013h-.303v.879h.175v-.338m-.485-.368a.628.628 0 0 1 .348-.367.688.688 0 0 1 .277-.053.64.64 0 0 1 .625.42.735.735 0 0 1 .049.27.74.74 0 0 1-.049.271.642.642 0 0 1-.348.366.675.675 0 0 1-.277.054.646.646 0 0 1-.624-.421.712.712 0 0 1-.049-.27c0-.095.015-.185.048-.27zm.014.884a.835.835 0 0 0 .273.179.884.884 0 0 0 .338.064c.12 0 .233-.021.339-.064A.83.83 0 0 0 20.598 3a.852.852 0 0 0-.249-.613.815.815 0 0 0-.272-.179c-.105-.043-.218-.064-.339-.064s-.233.021-.338.064a.82.82 0 0 0-.454.45.838.838 0 0 0-.067.342c0 .125.021.239.067.343a.796.796 0 0 0 .181.271m-1.864 12.361a3.268 3.268 0 0 1-.931 1.215 3.203 3.203 0 0 1-2.008.695 3.199 3.199 0 0 1-2.423-1.085 1.989 1.989 0 0 1-.439-.855 2.223 2.223 0 0 1-.06-.519c.002-.854.428-1.71.845-2.362.21-.326.418-.602.575-.794l.208.254.036.046a7.499 7.499 0 0 0 1.126 1.083c.766.597 1.85 1.197 3.126 1.229.012 0 .023.003.035.004a.172.172 0 0 1 .064 0 .16.16 0 0 1 .126.189c-.061.33-.158.628-.28.9zm6.719-7.025a5.339 5.339 0 0 1-.821.905c-.752.664-1.936 1.343-3.649 1.435l-.505.926a.173.173 0 0 1-.299.008l-.581-.954c-.275.051-.984.168-1.808.168-1.376-.03-1.807-.241-2.263-.532l1.538-2.072-3.297-.764 4.136-.795c1.208-2.437 1.583-4.521 1.675-5.157-4.638.514-8.102 1.666-10.329 2.632l-.179.079-.034.014-.249-.241a9.292 9.292 0 0 0-1.459-.985 9.404 9.404 0 0 0-4.516-1.175 8.05 8.05 0 0 0-.894.043c-.491.031-.253.153-.194.203.225.184.544.573.753 1.112.211.541.354 1.27.354 2.254 0 .275-.012.579-.036.896-.195.362-.376.741-.539 1.132C.311 9.227 0 10.479 0 11.767c0 2.291.9 4.378 2.181 6.074l.173.262-1.355 2.7a.063.063 0 0 0 .021.08c.011.007.023.01.035.01a.067.067 0 0 0 .047-.02l2.117-1.863.248.24a10.1 10.1 0 0 0 6.812 2.63c4.516 0 8.342-2.953 9.652-7.032l.288-.124a6.314 6.314 0 0 0 1.132-.555c.684-.424 1.502-1.107 2.045-2.141.362-.687.604-1.534.604-2.576 0-.163-.006-.33-.018-.502" }) + ] + } + ); +}); + +export { SiFreenas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.cjs new file mode 100644 index 000000000..f73189943 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#84BC34"; +const SiFreenet = React__namespace.forwardRef(function SiFreenet2({ title = "freenet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.327 6.184c-.771-.17-1.577-.48-4.266-1.884C1.48 2.467.692 2.33.23 3.084c-.617.993-.051 3.512 2.415 8.103 1.594 3.015 4.112 6.904 4.574 7.418.103.102.223.137.326.068.103-.068.154-.154.069-.308-.377-.703-1.68-3.41-2.279-4.814-1.405-3.392-1.73-4.54-1.25-4.797.136-.068.308-.017.702.206 1.353.72 4.334 3.015 4.865 4.625.223.703.343 1.508.394 4.386.069 3.786.343 4.488 1.268 4.488 1.233 0 3.289-1.713 6.356-5.996 2.021-2.81 4.385-6.767 4.625-7.4.069-.138 0-.24-.086-.309-.102-.068-.222-.051-.308.086-.463.65-2.33 3.066-3.358 4.248-2.45 2.81-3.34 3.632-3.837 3.375-.137-.068-.171-.24-.171-.65 0-1.474.633-5.02 1.867-6.22.531-.53 1.25-1.027 3.906-2.5 3.512-1.954 4.009-2.519 3.546-3.29-.617-.993-3.22-1.799-8.771-2.124-3.615-.223-8.497-.137-9.2-.017-.154.017-.222.103-.24.222 0 .103.069.206.24.206.84.051 4.026.343 5.636.565 3.855.549 5.088.874 5.088 1.405 0 .137-.137.257-.53.463-1.388.788-5.02 2.038-6.75 1.661" }) + ] + } + ); +}); + +exports.default = SiFreenet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.d.ts new file mode 100644 index 000000000..ed40a23c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#84BC34"; +declare const SiFreenet: IconType; +export { SiFreenet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.mjs new file mode 100644 index 000000000..86844408a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreenet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#84BC34"; +const SiFreenet = React.forwardRef(function SiFreenet2({ title = "freenet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.327 6.184c-.771-.17-1.577-.48-4.266-1.884C1.48 2.467.692 2.33.23 3.084c-.617.993-.051 3.512 2.415 8.103 1.594 3.015 4.112 6.904 4.574 7.418.103.102.223.137.326.068.103-.068.154-.154.069-.308-.377-.703-1.68-3.41-2.279-4.814-1.405-3.392-1.73-4.54-1.25-4.797.136-.068.308-.017.702.206 1.353.72 4.334 3.015 4.865 4.625.223.703.343 1.508.394 4.386.069 3.786.343 4.488 1.268 4.488 1.233 0 3.289-1.713 6.356-5.996 2.021-2.81 4.385-6.767 4.625-7.4.069-.138 0-.24-.086-.309-.102-.068-.222-.051-.308.086-.463.65-2.33 3.066-3.358 4.248-2.45 2.81-3.34 3.632-3.837 3.375-.137-.068-.171-.24-.171-.65 0-1.474.633-5.02 1.867-6.22.531-.53 1.25-1.027 3.906-2.5 3.512-1.954 4.009-2.519 3.546-3.29-.617-.993-3.22-1.799-8.771-2.124-3.615-.223-8.497-.137-9.2-.017-.154.017-.222.103-.24.222 0 .103.069.206.24.206.84.051 4.026.343 5.636.565 3.855.549 5.088.874 5.088 1.405 0 .137-.137.257-.53.463-1.388.788-5.02 2.038-6.75 1.661" }) + ] + } + ); +}); + +export { SiFreenet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.cjs new file mode 100644 index 000000000..cc3d9447f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1273EB"; +const SiFreepik = React__namespace.forwardRef(function SiFreepik2({ title = "Freepik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.315 6.939c-.702.702-1.204 1.505-1.706 2.308l-.702-.402c-.1-.401-.602-.702-1.004-.702-.602.1-.903.502-.903 1.104 0 .501.502.903 1.004.803.1 0 .2 0 .3-.1l.703.4c-.401.904-.702 1.807-.803 2.81l1.204.201c.402-2.107 1.305-4.014 2.81-5.52Zm12.544 7.626c-1.204 0-2.107-1.003-2.107-2.107 0-1.204 1.004-2.107 2.107-2.107 1.205 0 2.108 1.003 2.108 2.107 0 1.204-.903 2.107-2.108 2.107zm-7.325 1.506a2.912 2.912 0 0 1-2.91-2.91c0-1.707 1.304-3.011 2.91-3.011a2.912 2.912 0 0 1 2.91 2.91c0 1.606-1.305 3.01-2.91 3.01zm3.311-10.337a9.422 9.422 0 0 0-9.433 9.434c0 .702.1 1.304.2 2.007 1.004.802 4.216 1.405 8.33 1.204 4.516-.301 8.23-1.505 10.437-3.412 0-.301 0-.602-.1-.903-.603-4.817-4.617-8.33-9.434-8.33Zm-.803 13.749c-.602 0-1.204.1-1.806.1-1.405 0-2.71-.1-3.914-.3-.602-.101-1.304-.302-2.007-.503 1.606 2.91 4.817 4.918 8.43 4.918 4.415 0 8.229-3.011 9.232-7.125a16.828 16.828 0 0 1-3.813 1.806c-1.806.602-3.914 1.003-6.122 1.104zM23.182 7.34c.501-.1.903-.502.803-1.104-.1-.502-.502-.903-1.004-.803-.502.1-.803.502-.803 1.004l-.702.602c-.703-.703-1.405-1.305-2.208-1.806l-.602 1.003a11.225 11.225 0 0 1 4.014 4.616l1.104-.501c-.402-.904-.903-1.706-1.505-2.51l.602-.601c.1.1.2.1.3.1zM12.845 3.326h-.803l-.1-1.004c.301-.2.502-.602.401-1.003-.1-.602-.602-1.104-1.204-1.004-.602.1-1.003.602-1.003 1.305.1.401.3.702.602.903l.1 1.004c-1.104.2-2.208.501-3.211 1.003l.502 1.104a10.425 10.425 0 0 1 4.616-1.104c.803 0 1.505.1 2.308.301l.2-1.204c-.702-.2-1.505-.301-2.408-.301Z" }) + ] + } + ); +}); + +exports.default = SiFreepik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.d.ts new file mode 100644 index 000000000..383c15c85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1273EB"; +declare const SiFreepik: IconType; +export { SiFreepik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.mjs new file mode 100644 index 000000000..62c463127 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreepik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1273EB"; +const SiFreepik = React.forwardRef(function SiFreepik2({ title = "Freepik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.315 6.939c-.702.702-1.204 1.505-1.706 2.308l-.702-.402c-.1-.401-.602-.702-1.004-.702-.602.1-.903.502-.903 1.104 0 .501.502.903 1.004.803.1 0 .2 0 .3-.1l.703.4c-.401.904-.702 1.807-.803 2.81l1.204.201c.402-2.107 1.305-4.014 2.81-5.52Zm12.544 7.626c-1.204 0-2.107-1.003-2.107-2.107 0-1.204 1.004-2.107 2.107-2.107 1.205 0 2.108 1.003 2.108 2.107 0 1.204-.903 2.107-2.108 2.107zm-7.325 1.506a2.912 2.912 0 0 1-2.91-2.91c0-1.707 1.304-3.011 2.91-3.011a2.912 2.912 0 0 1 2.91 2.91c0 1.606-1.305 3.01-2.91 3.01zm3.311-10.337a9.422 9.422 0 0 0-9.433 9.434c0 .702.1 1.304.2 2.007 1.004.802 4.216 1.405 8.33 1.204 4.516-.301 8.23-1.505 10.437-3.412 0-.301 0-.602-.1-.903-.603-4.817-4.617-8.33-9.434-8.33Zm-.803 13.749c-.602 0-1.204.1-1.806.1-1.405 0-2.71-.1-3.914-.3-.602-.101-1.304-.302-2.007-.503 1.606 2.91 4.817 4.918 8.43 4.918 4.415 0 8.229-3.011 9.232-7.125a16.828 16.828 0 0 1-3.813 1.806c-1.806.602-3.914 1.003-6.122 1.104zM23.182 7.34c.501-.1.903-.502.803-1.104-.1-.502-.502-.903-1.004-.803-.502.1-.803.502-.803 1.004l-.702.602c-.703-.703-1.405-1.305-2.208-1.806l-.602 1.003a11.225 11.225 0 0 1 4.014 4.616l1.104-.501c-.402-.904-.903-1.706-1.505-2.51l.602-.601c.1.1.2.1.3.1zM12.845 3.326h-.803l-.1-1.004c.301-.2.502-.602.401-1.003-.1-.602-.602-1.104-1.204-1.004-.602.1-1.003.602-1.003 1.305.1.401.3.702.602.903l.1 1.004c-1.104.2-2.208.501-3.211 1.003l.502 1.104a10.425 10.425 0 0 1 4.616-1.104c.803 0 1.505.1 2.308.301l.2-1.204c-.702-.2-1.505-.301-2.408-.301Z" }) + ] + } + ); +}); + +export { SiFreepik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.cjs new file mode 100644 index 000000000..360ccc54e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F04242"; +const SiFreetube = React__namespace.forwardRef(function SiFreetube2({ title = "FreeTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.7066 0c.9 0 1.6294.7295 1.6294 1.6294V24H4.0993a4.0988 4.0988 0 0 1-2.8986-1.2007A4.0988 4.0988 0 0 1 0 19.9007V1.6294C0 .7294.7295 0 1.6294 0ZM24 0v1.9409a4.3951 4.3951 0 0 1-4.3951 4.3951H9.0053c-.891 0-1.6133-.7223-1.6133-1.6133V1.6133C7.392.7223 8.1143 0 9.0053 0Zm-6.7817 11.734a.618.618 0 0 1 0 1.108l-8.9022 4.412a.64.64 0 0 1-.9241-.5734V7.8954a.64.64 0 0 1 .9241-.5734Z" }) + ] + } + ); +}); + +exports.default = SiFreetube; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.d.ts new file mode 100644 index 000000000..e788aac73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F04242"; +declare const SiFreetube: IconType; +export { SiFreetube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.mjs new file mode 100644 index 000000000..5c199625a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreetube.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F04242"; +const SiFreetube = React.forwardRef(function SiFreetube2({ title = "FreeTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.7066 0c.9 0 1.6294.7295 1.6294 1.6294V24H4.0993a4.0988 4.0988 0 0 1-2.8986-1.2007A4.0988 4.0988 0 0 1 0 19.9007V1.6294C0 .7294.7295 0 1.6294 0ZM24 0v1.9409a4.3951 4.3951 0 0 1-4.3951 4.3951H9.0053c-.891 0-1.6133-.7223-1.6133-1.6133V1.6133C7.392.7223 8.1143 0 9.0053 0Zm-6.7817 11.734a.618.618 0 0 1 0 1.108l-8.9022 4.412a.64.64 0 0 1-.9241-.5734V7.8954a.64.64 0 0 1 .9241-.5734Z" }) + ] + } + ); +}); + +export { SiFreetube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.cjs new file mode 100644 index 000000000..dc9155497 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDB1E"; +const SiFresh = React__namespace.forwardRef(function SiFresh2({ title = "Fresh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.144 1.913c-.818-.017-1.704.078-2.626.264-2.46.496-5.215 1.667-7.73 3.319-2.877 1.89-5.037 4.094-6.346 6.056-.656.981-1.1 1.9-1.309 2.708s-.192 1.536.187 2.067c.93 1.3 1.312 2.654 1.748 3.747.218.547.449 1.034.809 1.409s.868.606 1.49.606c.368 0 .685-.08.937-.247s.422-.407.537-.665a3.3 3.3 0 0 0 .178-.544c3.863 1.74 7.955 1.54 10.295.732 1.096 1.247 3.982.724 3.258-1.81 2.963-2.534 6.465-7.13 2.963-15.678a5 5 0 0 0-.88-.74q-.062-.063-.13-.125h-.002c-.674-.587-1.56-.92-2.586-1.044q-.384-.047-.793-.055m-.031.732q.374.01.72.05c.92.112 1.68.398 2.216.863.404.352.572.715.596 1.136s-.112.916-.407 1.463c-.59 1.091-1.797 2.349-3.265 3.559-2.937 2.42-6.922 4.68-9.034 5.52-2.462.98-3.108 2.701-3.389 4.043-.078.383-.14.73-.204 1.027v.003a5 5 0 0 1-.07.291q-.044.16-.097.282a1 1 0 0 1-.125.215.7.7 0 0 1-.15.14c-.112.076-.27.128-.537.128q-.173 0-.312-.024a1.04 1.04 0 0 1-.467-.192 1.5 1.5 0 0 1-.189-.167c-.244-.253-.452-.66-.659-1.176-.105-.268-.213-.566-.33-.881a28 28 0 0 0-.292-.756c-.034-.082-.065-.163-.102-.247A10.4 10.4 0 0 0 .91 15.905a1 1 0 0 1-.07-.12 1 1 0 0 1-.064-.184l-.011-.05a1.5 1.5 0 0 1-.032-.231 2 2 0 0 1 .002-.26l.004-.073a3 3 0 0 1 .044-.311v-.002q.022-.112.053-.232c.18-.695.586-1.556 1.207-2.488C3.287 10.09 5.388 7.94 8.187 6.101c2.443-1.604 5.13-2.743 7.474-3.216a11.2 11.2 0 0 1 2.452-.24m-2.007.923c-1.601.254-5.374 1.608-8.391 3.636-.679.456-.681.559-.291 1.118-.583 0-1.008-.102-1.653.469-3.576 3.162-4.71 6.603-2.183 6.603 1.167 0 3.236-.562 4.224-.932.17-.064.676-1.383.676-1.685 0-.906.906.85 1.171.725.954-.45 3.035-1.548 5.737-3.498 2.851-2.057 6.479-5.276 3.115-6.181-.295-.08-1.516.1-1.813.2 0-.202-.327-.444-.592-.455m-5.45 3.507c.235.337 1.2.44 1.776.507-.517.327-.764.617-1.05 1.525-1.06-.442-2.294-.22-3.18.304.714-.541 1.19-.732 1.521-1.829.41.087.608-.057.933-.507" }) + ] + } + ); +}); + +exports.default = SiFresh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.d.ts new file mode 100644 index 000000000..191334c7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDB1E"; +declare const SiFresh: IconType; +export { SiFresh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.mjs new file mode 100644 index 000000000..72dc6bc7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFresh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDB1E"; +const SiFresh = React.forwardRef(function SiFresh2({ title = "Fresh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.144 1.913c-.818-.017-1.704.078-2.626.264-2.46.496-5.215 1.667-7.73 3.319-2.877 1.89-5.037 4.094-6.346 6.056-.656.981-1.1 1.9-1.309 2.708s-.192 1.536.187 2.067c.93 1.3 1.312 2.654 1.748 3.747.218.547.449 1.034.809 1.409s.868.606 1.49.606c.368 0 .685-.08.937-.247s.422-.407.537-.665a3.3 3.3 0 0 0 .178-.544c3.863 1.74 7.955 1.54 10.295.732 1.096 1.247 3.982.724 3.258-1.81 2.963-2.534 6.465-7.13 2.963-15.678a5 5 0 0 0-.88-.74q-.062-.063-.13-.125h-.002c-.674-.587-1.56-.92-2.586-1.044q-.384-.047-.793-.055m-.031.732q.374.01.72.05c.92.112 1.68.398 2.216.863.404.352.572.715.596 1.136s-.112.916-.407 1.463c-.59 1.091-1.797 2.349-3.265 3.559-2.937 2.42-6.922 4.68-9.034 5.52-2.462.98-3.108 2.701-3.389 4.043-.078.383-.14.73-.204 1.027v.003a5 5 0 0 1-.07.291q-.044.16-.097.282a1 1 0 0 1-.125.215.7.7 0 0 1-.15.14c-.112.076-.27.128-.537.128q-.173 0-.312-.024a1.04 1.04 0 0 1-.467-.192 1.5 1.5 0 0 1-.189-.167c-.244-.253-.452-.66-.659-1.176-.105-.268-.213-.566-.33-.881a28 28 0 0 0-.292-.756c-.034-.082-.065-.163-.102-.247A10.4 10.4 0 0 0 .91 15.905a1 1 0 0 1-.07-.12 1 1 0 0 1-.064-.184l-.011-.05a1.5 1.5 0 0 1-.032-.231 2 2 0 0 1 .002-.26l.004-.073a3 3 0 0 1 .044-.311v-.002q.022-.112.053-.232c.18-.695.586-1.556 1.207-2.488C3.287 10.09 5.388 7.94 8.187 6.101c2.443-1.604 5.13-2.743 7.474-3.216a11.2 11.2 0 0 1 2.452-.24m-2.007.923c-1.601.254-5.374 1.608-8.391 3.636-.679.456-.681.559-.291 1.118-.583 0-1.008-.102-1.653.469-3.576 3.162-4.71 6.603-2.183 6.603 1.167 0 3.236-.562 4.224-.932.17-.064.676-1.383.676-1.685 0-.906.906.85 1.171.725.954-.45 3.035-1.548 5.737-3.498 2.851-2.057 6.479-5.276 3.115-6.181-.295-.08-1.516.1-1.813.2 0-.202-.327-.444-.592-.455m-5.45 3.507c.235.337 1.2.44 1.776.507-.517.327-.764.617-1.05 1.525-1.06-.442-2.294-.22-3.18.304.714-.541 1.19-.732 1.521-1.829.41.087.608-.057.933-.507" }) + ] + } + ); +}); + +export { SiFresh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.cjs new file mode 100644 index 000000000..6d512e3ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0062BE"; +const SiFreshrss = React__namespace.forwardRef(function SiFreshrss2({ title = "FreshRSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.738.003C5.217.151.006 5.476 0 11.999h2.25a9.74 9.74 0 0 1 6.02-9.008 9.74 9.74 0 0 1 10.628 2.113 9.74 9.74 0 0 1 2.113 10.626 9.74 9.74 0 0 1-9.01 6.02V24c4.85 0 9.23-2.927 11.088-7.408A12 12 0 0 0 11.738.003m.264.5v1.252c-1.32 0-2.653.25-3.922.775-3.674 1.521-6.06 5.03-6.256 8.97H.574c.2-4.443 2.89-8.413 7.028-10.126A11.4 11.4 0 0 1 12 .503m-.031 3.434a8 8 0 0 0-3.055.613A8.07 8.07 0 0 0 3.938 12h2.25a5.8 5.8 0 0 1 3.589-5.37 5.81 5.81 0 0 1 6.334 1.26 5.8 5.8 0 0 1 1.26 6.335 5.8 5.8 0 0 1-5.37 3.588v2.25a8.07 8.07 0 0 0 7.451-4.977 8.07 8.07 0 0 0-1.75-8.788c-2.125-2.125-4.667-2.365-5.732-2.362m.03.501V5.69a6.3 6.3 0 0 0-2.415.477c-2.2.911-3.633 2.987-3.823 5.332h-1.25C4.703 8.65 6.44 6.115 9.105 5.012A7.5 7.5 0 0 1 12 4.438M18.312 12h1.248a7.6 7.6 0 0 1-.57 2.896c-1.104 2.664-3.639 4.4-6.488 4.593v-1.25c2.345-.19 4.42-1.621 5.333-3.822A6.3 6.3 0 0 0 18.312 12m3.936 0h1.248c0 1.483-.278 2.978-.867 4.4-1.714 4.137-5.685 6.828-10.127 7.027v-1.25c3.94-.197 7.45-2.582 8.97-6.254A10.3 10.3 0 0 0 22.249 12m-7.155 0A3.094 3.094 0 0 1 12 15.094 3.094 3.094 0 0 1 8.906 12 3.094 3.094 0 0 1 12 8.906 3.094 3.094 0 0 1 15.094 12" }) + ] + } + ); +}); + +exports.default = SiFreshrss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.d.ts new file mode 100644 index 000000000..d98885b81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0062BE"; +declare const SiFreshrss: IconType; +export { SiFreshrss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.mjs new file mode 100644 index 000000000..e8ade5650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFreshrss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0062BE"; +const SiFreshrss = React.forwardRef(function SiFreshrss2({ title = "FreshRSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.738.003C5.217.151.006 5.476 0 11.999h2.25a9.74 9.74 0 0 1 6.02-9.008 9.74 9.74 0 0 1 10.628 2.113 9.74 9.74 0 0 1 2.113 10.626 9.74 9.74 0 0 1-9.01 6.02V24c4.85 0 9.23-2.927 11.088-7.408A12 12 0 0 0 11.738.003m.264.5v1.252c-1.32 0-2.653.25-3.922.775-3.674 1.521-6.06 5.03-6.256 8.97H.574c.2-4.443 2.89-8.413 7.028-10.126A11.4 11.4 0 0 1 12 .503m-.031 3.434a8 8 0 0 0-3.055.613A8.07 8.07 0 0 0 3.938 12h2.25a5.8 5.8 0 0 1 3.589-5.37 5.81 5.81 0 0 1 6.334 1.26 5.8 5.8 0 0 1 1.26 6.335 5.8 5.8 0 0 1-5.37 3.588v2.25a8.07 8.07 0 0 0 7.451-4.977 8.07 8.07 0 0 0-1.75-8.788c-2.125-2.125-4.667-2.365-5.732-2.362m.03.501V5.69a6.3 6.3 0 0 0-2.415.477c-2.2.911-3.633 2.987-3.823 5.332h-1.25C4.703 8.65 6.44 6.115 9.105 5.012A7.5 7.5 0 0 1 12 4.438M18.312 12h1.248a7.6 7.6 0 0 1-.57 2.896c-1.104 2.664-3.639 4.4-6.488 4.593v-1.25c2.345-.19 4.42-1.621 5.333-3.822A6.3 6.3 0 0 0 18.312 12m3.936 0h1.248c0 1.483-.278 2.978-.867 4.4-1.714 4.137-5.685 6.828-10.127 7.027v-1.25c3.94-.197 7.45-2.582 8.97-6.254A10.3 10.3 0 0 0 22.249 12m-7.155 0A3.094 3.094 0 0 1 12 15.094 3.094 3.094 0 0 1 8.906 12 3.094 3.094 0 0 1 12 8.906 3.094 3.094 0 0 1 15.094 12" }) + ] + } + ); +}); + +export { SiFreshrss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.cjs new file mode 100644 index 000000000..bf6f6f288 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiFrigate = React__namespace.forwardRef(function SiFrigate2({ title = "Frigate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.892.036c-.066.078-4.134 1.356-5.313 1.679-1.089.3-4.201 1.49-4.646 1.778-.144.1-.255.267-.255.378s.278.622.611 1.134c.756 1.156.778 1.434.211 2.767-.556 1.29-.9 1.7-1.8 2.123-.412.19-.867.467-1.023.6-.156.134-.556.356-.89.478-.333.123-.622.3-.644.39-.033.144.022.144.4.022.6-.212.912-.112.912.289 0 .355-.445.666-1.623 1.156-2.823 1.144-3.646 1.511-4.024 1.822-.578.445-.655.856-.355 1.79.122.378.222.811.222.945 0 .233.589 1.923 1.5 4.323.367.956 1.123 2.279 1.312 2.29.056 0 .067-.256.022-.567-.066-.5-.166-3.245-.189-5.602-.022-1.2.223-1.767 1.112-2.634.844-.834 2.123-1.712 3.256-2.256.756-.356.834-.378 1.701-.312.934.067 2.479-.144 3.323-.444.3-.111.578-.122.89-.067.6.111 4.412.122 4.412.011 0-.044-.356-.144-.789-.21-1.167-.179-1.19-.334-.056-.423 1.845-.156.834-.39-1.69-.39-1.655 0-1.978-.088-2.567-.7-.578-.61-.855-2.211-.555-3.19.066-.21.155-1.111.21-2 .045-.89.123-1.7.168-1.812.1-.256 1.344-.978 2.512-1.456.51-.211 1.333-.556 1.822-.767.778-.333 1.845-.789 2.557-1.078.167-.078.122-.1-.234-.1-.244-.011-.478.011-.5.033" }) + ] + } + ); +}); + +exports.default = SiFrigate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.d.ts new file mode 100644 index 000000000..6abf4de23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiFrigate: IconType; +export { SiFrigate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.mjs new file mode 100644 index 000000000..2b97e48bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrigate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiFrigate = React.forwardRef(function SiFrigate2({ title = "Frigate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.892.036c-.066.078-4.134 1.356-5.313 1.679-1.089.3-4.201 1.49-4.646 1.778-.144.1-.255.267-.255.378s.278.622.611 1.134c.756 1.156.778 1.434.211 2.767-.556 1.29-.9 1.7-1.8 2.123-.412.19-.867.467-1.023.6-.156.134-.556.356-.89.478-.333.123-.622.3-.644.39-.033.144.022.144.4.022.6-.212.912-.112.912.289 0 .355-.445.666-1.623 1.156-2.823 1.144-3.646 1.511-4.024 1.822-.578.445-.655.856-.355 1.79.122.378.222.811.222.945 0 .233.589 1.923 1.5 4.323.367.956 1.123 2.279 1.312 2.29.056 0 .067-.256.022-.567-.066-.5-.166-3.245-.189-5.602-.022-1.2.223-1.767 1.112-2.634.844-.834 2.123-1.712 3.256-2.256.756-.356.834-.378 1.701-.312.934.067 2.479-.144 3.323-.444.3-.111.578-.122.89-.067.6.111 4.412.122 4.412.011 0-.044-.356-.144-.789-.21-1.167-.179-1.19-.334-.056-.423 1.845-.156.834-.39-1.69-.39-1.655 0-1.978-.088-2.567-.7-.578-.61-.855-2.211-.555-3.19.066-.21.155-1.111.21-2 .045-.89.123-1.7.168-1.812.1-.256 1.344-.978 2.512-1.456.51-.211 1.333-.556 1.822-.767.778-.333 1.845-.789 2.557-1.078.167-.078.122-.1-.234-.1-.244-.011-.478.011-.5.033" }) + ] + } + ); +}); + +export { SiFrigate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.cjs new file mode 100644 index 000000000..7cf5feaec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E2001A"; +const SiFritz = React__namespace.forwardRef(function SiFritz2({ title = "FRITZ!", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.495 19.183 17.37 24l4.817-3.903-3.875-4.817zM23.571.692 16.097.111l-.914 15.003 6.118.221zM6.962 5.564v4.097l5.62-.055v5.37H7.016v8.055H.43V.277L13.024 0V5.51z" }) + ] + } + ); +}); + +exports.default = SiFritz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.d.ts new file mode 100644 index 000000000..4a302605b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E2001A"; +declare const SiFritz: IconType; +export { SiFritz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.mjs new file mode 100644 index 000000000..33fa4d142 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFritz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E2001A"; +const SiFritz = React.forwardRef(function SiFritz2({ title = "FRITZ!", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.495 19.183 17.37 24l4.817-3.903-3.875-4.817zM23.571.692 16.097.111l-.914 15.003 6.118.221zM6.962 5.564v4.097l5.62-.055v5.37H7.016v8.055H.43V.277L13.024 0V5.51z" }) + ] + } + ); +}); + +export { SiFritz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.cjs new file mode 100644 index 000000000..4cf0f2670 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3F54A3"; +const SiFrontendmentor = React__namespace.forwardRef(function SiFrontendmentor2({ title = "Frontend Mentor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1706 1.2719a.732.732 0 00-.7186.732v13.914a.732.732 0 00.732.732.732.732 0 00.7318-.732V2.004a.732.732 0 00-.7452-.732zm11.0741 4.1685a.7339.7339 0 00-.2764.063L16.686 8.307a.7329.7329 0 000 1.3361l6.2823 2.8134a.7378.7378 0 00.2993.0648.732.732 0 00.2973-1.401l-4.786-2.1443 4.786-2.1366a.7339.7339 0 00.3698-.9664.7339.7339 0 00-.69-.4327zm-22.499 5.032a.7316.7316 0 00-.7223.9149c1.736 6.677 7.7748 11.341 14.6822 11.341a.732.732 0 000-1.464 13.7055 13.7055 0 01-13.266-10.2449.7316.7316 0 00-.6939-.547z" }) + ] + } + ); +}); + +exports.default = SiFrontendmentor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.d.ts new file mode 100644 index 000000000..865b3c09e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3F54A3"; +declare const SiFrontendmentor: IconType; +export { SiFrontendmentor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.mjs new file mode 100644 index 000000000..8ac64e39d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontendmentor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3F54A3"; +const SiFrontendmentor = React.forwardRef(function SiFrontendmentor2({ title = "Frontend Mentor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.1706 1.2719a.732.732 0 00-.7186.732v13.914a.732.732 0 00.732.732.732.732 0 00.7318-.732V2.004a.732.732 0 00-.7452-.732zm11.0741 4.1685a.7339.7339 0 00-.2764.063L16.686 8.307a.7329.7329 0 000 1.3361l6.2823 2.8134a.7378.7378 0 00.2993.0648.732.732 0 00.2973-1.401l-4.786-2.1443 4.786-2.1366a.7339.7339 0 00.3698-.9664.7339.7339 0 00-.69-.4327zm-22.499 5.032a.7316.7316 0 00-.7223.9149c1.736 6.677 7.7748 11.341 14.6822 11.341a.732.732 0 000-1.464 13.7055 13.7055 0 01-13.266-10.2449.7316.7316 0 00-.6939-.547z" }) + ] + } + ); +}); + +export { SiFrontendmentor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.cjs new file mode 100644 index 000000000..93e872544 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D3232"; +const SiFrontify = React__namespace.forwardRef(function SiFrontify2({ title = "Frontify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.13 15.777-2.588-1.495a.752.752 0 0 1-.376-.649v-2.989a1.743 1.743 0 0 0-.872-1.508l-2.588-1.494a.755.755 0 0 1-.375-.651V4.002a1.748 1.748 0 0 0-.871-1.511L12 .496 8.54 2.491a1.748 1.748 0 0 0-.868 1.511v2.989a.755.755 0 0 1-.375.65L4.706 9.137a1.746 1.746 0 0 0-.87 1.508v2.99a.75.75 0 0 1-.375.648l-2.59 1.495A1.75 1.75 0 0 0 0 17.287v3.989l3.46 1.994a1.74 1.74 0 0 0 1.741 0l2.589-1.494a.753.753 0 0 1 .75 0l2.589 1.494a1.745 1.745 0 0 0 1.743 0l2.588-1.494a.753.753 0 0 1 .75 0L18.8 23.27a1.74 1.74 0 0 0 1.741 0L24 21.276v-3.99a1.75 1.75 0 0 0-.87-1.51ZM15.343 4.002v2.989a1.748 1.748 0 0 0 .872 1.508l2.588 1.495a.753.753 0 0 1 .376.65v2.99a1.746 1.746 0 0 0 .87 1.507l2.589 1.495a.752.752 0 0 1 .375.65v2.85l-10.517-6.07V1.928l2.468 1.425a.75.75 0 0 1 .38.65zM1.367 16.636l2.589-1.495a1.748 1.748 0 0 0 .871-1.508v-2.989a.752.752 0 0 1 .374-.65L7.79 8.499a1.748 1.748 0 0 0 .871-1.508V4.002a.753.753 0 0 1 .375-.649l2.471-1.425v12.138L.993 20.136v-2.85a.752.752 0 0 1 .374-.65Zm18.677 5.784a.753.753 0 0 1-.75 0l-2.588-1.494a1.74 1.74 0 0 0-1.742 0l-2.588 1.494a.753.753 0 0 1-.75 0l-2.589-1.494a1.743 1.743 0 0 0-1.743 0L4.706 22.42a.753.753 0 0 1-.75 0l-2.468-1.425L12 14.919l10.512 6.07Z" }) + ] + } + ); +}); + +exports.default = SiFrontify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.d.ts new file mode 100644 index 000000000..9fb86984c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D3232"; +declare const SiFrontify: IconType; +export { SiFrontify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.mjs new file mode 100644 index 000000000..da36aa38e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFrontify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D3232"; +const SiFrontify = React.forwardRef(function SiFrontify2({ title = "Frontify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.13 15.777-2.588-1.495a.752.752 0 0 1-.376-.649v-2.989a1.743 1.743 0 0 0-.872-1.508l-2.588-1.494a.755.755 0 0 1-.375-.651V4.002a1.748 1.748 0 0 0-.871-1.511L12 .496 8.54 2.491a1.748 1.748 0 0 0-.868 1.511v2.989a.755.755 0 0 1-.375.65L4.706 9.137a1.746 1.746 0 0 0-.87 1.508v2.99a.75.75 0 0 1-.375.648l-2.59 1.495A1.75 1.75 0 0 0 0 17.287v3.989l3.46 1.994a1.74 1.74 0 0 0 1.741 0l2.589-1.494a.753.753 0 0 1 .75 0l2.589 1.494a1.745 1.745 0 0 0 1.743 0l2.588-1.494a.753.753 0 0 1 .75 0L18.8 23.27a1.74 1.74 0 0 0 1.741 0L24 21.276v-3.99a1.75 1.75 0 0 0-.87-1.51ZM15.343 4.002v2.989a1.748 1.748 0 0 0 .872 1.508l2.588 1.495a.753.753 0 0 1 .376.65v2.99a1.746 1.746 0 0 0 .87 1.507l2.589 1.495a.752.752 0 0 1 .375.65v2.85l-10.517-6.07V1.928l2.468 1.425a.75.75 0 0 1 .38.65zM1.367 16.636l2.589-1.495a1.748 1.748 0 0 0 .871-1.508v-2.989a.752.752 0 0 1 .374-.65L7.79 8.499a1.748 1.748 0 0 0 .871-1.508V4.002a.753.753 0 0 1 .375-.649l2.471-1.425v12.138L.993 20.136v-2.85a.752.752 0 0 1 .374-.65Zm18.677 5.784a.753.753 0 0 1-.75 0l-2.588-1.494a1.74 1.74 0 0 0-1.742 0l-2.588 1.494a.753.753 0 0 1-.75 0l-2.589-1.494a1.743 1.743 0 0 0-1.743 0L4.706 22.42a.753.753 0 0 1-.75 0l-2.468-1.425L12 14.919l10.512 6.07Z" }) + ] + } + ); +}); + +export { SiFrontify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.cjs new file mode 100644 index 000000000..526697f51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#378BBA"; +const SiFsharp = React__namespace.forwardRef(function SiFsharp2({ title = "F#", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12 11.39.61v5.695L5.695 12l5.695 5.695v5.695L0 12zm7.322 0 4.068-4.068v8.136L7.322 12zM24 12 12.203.61v5.695L17.898 12l-5.695 5.695v5.695L24 12z" }) + ] + } + ); +}); + +exports.default = SiFsharp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.d.ts new file mode 100644 index 000000000..f26156efc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#378BBA"; +declare const SiFsharp: IconType; +export { SiFsharp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.mjs new file mode 100644 index 000000000..c9fa94dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFsharp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#378BBA"; +const SiFsharp = React.forwardRef(function SiFsharp2({ title = "F#", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12 11.39.61v5.695L5.695 12l5.695 5.695v5.695L0 12zm7.322 0 4.068-4.068v8.136L7.322 12zM24 12 12.203.61v5.695L17.898 12l-5.695 5.695v5.695L24 12z" }) + ] + } + ); +}); + +export { SiFsharp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.cjs new file mode 100644 index 000000000..e8c3e9071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C83D1E"; +const SiFubo = React__namespace.forwardRef(function SiFubo2({ title = "Fubo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.898 16.705H9.114v-.29c-.265.196-.656.416-1.32.416-2.158 0-2.996-1.167-2.996-3.43V9.809h1.783v3.592c-.006.616 0 1.778 1.284 1.778 1.241 0 1.248-1.1 1.248-1.765V9.809h1.783v6.896zM4.101 7.207c-1.961-.216-2.407.233-2.763.7-.316.413-.357.988-.357 1.401v.501H0v1.652h.999v5.244h1.783v-5.244h1.346V9.809h-1.31v-.465c0-.474.38-.533.571-.521l.392.018.32-1.634zM24 13.257c0-1.984-1.594-3.592-3.561-3.592-.835 0-1.603.29-2.21.775.384.44.677.965.85 1.543a1.707 1.707 0 0 1 1.337-.666c.975 0 1.765.86 1.765 1.922 0 1.061-.79 1.922-1.765 1.922-.969 0-1.757-.851-1.765-1.904 0-.913-.332-1.747-.878-2.381a3.447 3.447 0 0 0-2.617-1.211c-.651 0-1.261.183-1.783.502V7.259l-1.783.35v9.097h1.783v-.288c.522.319 1.132.432 1.783.432a3.42 3.42 0 0 0 2.176-.781 4.215 4.215 0 0 1-.876-1.537c-.321.429-.8.702-1.336.702-.965 0-1.747-.884-1.747-1.975s.782-1.975 1.747-1.975c.965 0 1.748.885 1.748 1.976 0 1.984 1.6 3.591 3.566 3.591C22.4 16.849 24 15.241 24 13.257" }) + ] + } + ); +}); + +exports.default = SiFubo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.d.ts new file mode 100644 index 000000000..8b3252fa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C83D1E"; +declare const SiFubo: IconType; +export { SiFubo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.mjs new file mode 100644 index 000000000..87290abe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFubo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C83D1E"; +const SiFubo = React.forwardRef(function SiFubo2({ title = "Fubo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.898 16.705H9.114v-.29c-.265.196-.656.416-1.32.416-2.158 0-2.996-1.167-2.996-3.43V9.809h1.783v3.592c-.006.616 0 1.778 1.284 1.778 1.241 0 1.248-1.1 1.248-1.765V9.809h1.783v6.896zM4.101 7.207c-1.961-.216-2.407.233-2.763.7-.316.413-.357.988-.357 1.401v.501H0v1.652h.999v5.244h1.783v-5.244h1.346V9.809h-1.31v-.465c0-.474.38-.533.571-.521l.392.018.32-1.634zM24 13.257c0-1.984-1.594-3.592-3.561-3.592-.835 0-1.603.29-2.21.775.384.44.677.965.85 1.543a1.707 1.707 0 0 1 1.337-.666c.975 0 1.765.86 1.765 1.922 0 1.061-.79 1.922-1.765 1.922-.969 0-1.757-.851-1.765-1.904 0-.913-.332-1.747-.878-2.381a3.447 3.447 0 0 0-2.617-1.211c-.651 0-1.261.183-1.783.502V7.259l-1.783.35v9.097h1.783v-.288c.522.319 1.132.432 1.783.432a3.42 3.42 0 0 0 2.176-.781 4.215 4.215 0 0 1-.876-1.537c-.321.429-.8.702-1.336.702-.965 0-1.747-.884-1.747-1.975s.782-1.975 1.747-1.975c.965 0 1.748.885 1.748 1.976 0 1.984 1.6 3.591 3.566 3.591C22.4 16.849 24 15.241 24 13.257" }) + ] + } + ); +}); + +export { SiFubo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.cjs new file mode 100644 index 000000000..3c7171212 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09C9E3"; +const SiFueler = React__namespace.forwardRef(function SiFueler2({ title = "Fueler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c1.204 0 2.086 1.932 3.172 2.283 1.126.364 2.978-.67 3.915.009.946.685.527 2.762 1.216 3.704.682.933 2.8 1.175 3.165 2.295.353 1.081-1.207 2.51-1.207 3.709 0 1.198 1.56 2.628 1.207 3.709-.365 1.12-2.483 1.362-3.165 2.295-.69.942-.27 3.02-1.217 3.704-.937.68-2.789-.355-3.914.01C14.086 22.067 13.204 24 12 24c-1.204 0-2.086-1.932-3.172-2.283-1.126-.364-2.978.67-3.915-.009-.946-.685-.527-2.762-1.216-3.704-.682-.933-2.8-1.175-3.165-2.295-.353-1.081 1.207-2.51 1.207-3.709 0-1.198-1.56-2.628-1.207-3.709.365-1.12 2.483-1.362 3.166-2.295.688-.942.27-3.02 1.216-3.704.937-.68 2.789.355 3.914-.01C9.914 1.933 10.796 0 12 0Zm-.199 6.34-3.247 6.169c-.158.3.065.653.388.654h1.707c.234 0 .44.193.44.445v3.706c0 .459.603.618.825.218l3.39-6.11c.16-.289-.043-.662-.384-.663l-1.85-.002c-.243 0-.44-.2-.44-.445V6.549c0-.464-.613-.619-.829-.21Z" }) + ] + } + ); +}); + +exports.default = SiFueler; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.d.ts new file mode 100644 index 000000000..b956f95c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09C9E3"; +declare const SiFueler: IconType; +export { SiFueler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.mjs new file mode 100644 index 000000000..b1a876da0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFueler.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09C9E3"; +const SiFueler = React.forwardRef(function SiFueler2({ title = "Fueler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c1.204 0 2.086 1.932 3.172 2.283 1.126.364 2.978-.67 3.915.009.946.685.527 2.762 1.216 3.704.682.933 2.8 1.175 3.165 2.295.353 1.081-1.207 2.51-1.207 3.709 0 1.198 1.56 2.628 1.207 3.709-.365 1.12-2.483 1.362-3.165 2.295-.69.942-.27 3.02-1.217 3.704-.937.68-2.789-.355-3.914.01C14.086 22.067 13.204 24 12 24c-1.204 0-2.086-1.932-3.172-2.283-1.126-.364-2.978.67-3.915-.009-.946-.685-.527-2.762-1.216-3.704-.682-.933-2.8-1.175-3.165-2.295-.353-1.081 1.207-2.51 1.207-3.709 0-1.198-1.56-2.628-1.207-3.709.365-1.12 2.483-1.362 3.166-2.295.688-.942.27-3.02 1.216-3.704.937-.68 2.789.355 3.914-.01C9.914 1.933 10.796 0 12 0Zm-.199 6.34-3.247 6.169c-.158.3.065.653.388.654h1.707c.234 0 .44.193.44.445v3.706c0 .459.603.618.825.218l3.39-6.11c.16-.289-.043-.662-.384-.663l-1.85-.002c-.243 0-.44-.2-.44-.445V6.549c0-.464-.613-.619-.829-.21Z" }) + ] + } + ); +}); + +export { SiFueler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.cjs new file mode 100644 index 000000000..09df36acd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#242F4B"; +const SiFugacloud = React__namespace.forwardRef(function SiFugacloud2({ title = "Fuga Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.0876 13.9765-1.1014-.6361v-2.5345l1.1013.6389 3.1738-1.8305v2.5275zm-14.1752.01h-.0067l-3.167-1.8341V9.625l3.1702 1.8284 1.0982-.6371v2.5345zm.0592-3.5472L1.7387 8.5686V5.9464l.971-.5568L11.9941 0l1.9539 1.1371 5.9567 3.4708.2013.1303 1.0303.5922.1657.095.9593.5686v2.5597l-3.1738 1.8349-1.1013-.6353V8.4341l-4.95-2.8903-1.0421-.6277-.971.5567-5.033 2.9495v1.4254l-1.0185.5883m0 4.4197 1.0184-.5805v1.2082l6.0633 3.5418.225-.1421.0473-.024 5.6725-3.3168-.0119-.4264v-.8918l1.1014.6313 3.1737-1.833v5.0193l-.9593.5568-1.196.6988-.2013.1185-5.9567 3.4826L11.994 24l-1.9302-1.1371-5.9685-3.4708-.2013-.1303-1.1842-.687-.9711-.5698v-4.6197l.0118-.3971 3.2211 1.8673" }) + ] + } + ); +}); + +exports.default = SiFugacloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.d.ts new file mode 100644 index 000000000..73e39247f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#242F4B"; +declare const SiFugacloud: IconType; +export { SiFugacloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.mjs new file mode 100644 index 000000000..0689591a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFugacloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#242F4B"; +const SiFugacloud = React.forwardRef(function SiFugacloud2({ title = "Fuga Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.0876 13.9765-1.1014-.6361v-2.5345l1.1013.6389 3.1738-1.8305v2.5275zm-14.1752.01h-.0067l-3.167-1.8341V9.625l3.1702 1.8284 1.0982-.6371v2.5345zm.0592-3.5472L1.7387 8.5686V5.9464l.971-.5568L11.9941 0l1.9539 1.1371 5.9567 3.4708.2013.1303 1.0303.5922.1657.095.9593.5686v2.5597l-3.1738 1.8349-1.1013-.6353V8.4341l-4.95-2.8903-1.0421-.6277-.971.5567-5.033 2.9495v1.4254l-1.0185.5883m0 4.4197 1.0184-.5805v1.2082l6.0633 3.5418.225-.1421.0473-.024 5.6725-3.3168-.0119-.4264v-.8918l1.1014.6313 3.1737-1.833v5.0193l-.9593.5568-1.196.6988-.2013.1185-5.9567 3.4826L11.994 24l-1.9302-1.1371-5.9685-3.4708-.2013-.1303-1.1842-.687-.9711-.5698v-4.6197l.0118-.3971 3.2211 1.8673" }) + ] + } + ); +}); + +export { SiFugacloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.cjs new file mode 100644 index 000000000..8a6a12785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB0020"; +const SiFujifilm = React__namespace.forwardRef(function SiFujifilm2({ title = "Fujifilm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.288 10v3.129c0 .204.096.313.3.313h1.034v.352c0 .04-.028.068-.068.068h-1.672c-.518 0-.6-.284-.6-.544v-3.1c0-.148.056-.216.232-.216h.774m-1.916 0v3.656c0 .164-.068.204-.204.204h-.788v-3.655c0-.125.04-.205.216-.205h.776M0 10.532c0-.3 0-.53.49-.53h2.12v.366c0 .028-.012.054-.054.054H1.28c-.162 0-.244.083-.244.26v.979h1.496v.393c0 .04-.028.054-.056.054h-1.44v1.55c0 .15-.082.204-.246.204H0v-3.33m4.148-.531v2.95c0 .26.04.434.216.53.232.136.64.136.884 0 .164-.096.232-.244.232-.53v-2.76c0-.122.04-.19.218-.19h.774v2.853c0 .667-.42.94-.788 1.035a3.592 3.592 0 0 1-1.7 0c-.558-.164-.816-.49-.816-1.035v-2.663c0-.122.04-.204.19-.204h.79M22.872 10c-.19 0-.314.094-.354.272l-.626 2.663h-.014L21.212 10h-.884c-.176 0-.23.08-.23.23v3.644h.38c.054 0 .08-.026.08-.094v-3.06h.056l.802 3.14h.53c.204 0 .272-.08.328-.272l.72-2.868h.054v3.14h.708c.176 0 .244-.069.244-.23V10h-1.128m-11.708 2.093h-.992v1.767h.788c.136 0 .204-.04.204-.205v-1.562m-.054-.747c.04-.028.054-.056.054-.11V10h-.776c-.176 0-.216.08-.216.204v1.875l.938-.733m-3.4 2.216c.436-.055.572-.314.572-.695v-2.663c0-.164.08-.204.19-.204h.788v2.513c0 .612-.136.927-.49 1.198-.19.136-.516.3-1.25.3-.408 0-.6-.028-.626-.028-.04-.014-.054-.028-.054-.056v-.326c.204-.014.584 0 .87-.04M12.674 10c-.49 0-.49.244-.49.53v.992c0 .028-.014.028-.014.04l-.68.532h.694v1.766h.788c.164 0 .244-.054.244-.204v-1.562h1.442c.028 0 .054-.014.054-.056v-.394h-1.496v-.98c0-.176.082-.256.26-.256h1.278c.04 0 .054-.028.054-.056V10h-2.134" }) + ] + } + ); +}); + +exports.default = SiFujifilm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.d.ts new file mode 100644 index 000000000..b35ee54b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB0020"; +declare const SiFujifilm: IconType; +export { SiFujifilm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.mjs new file mode 100644 index 000000000..5a8b24f1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFujifilm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB0020"; +const SiFujifilm = React.forwardRef(function SiFujifilm2({ title = "Fujifilm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.288 10v3.129c0 .204.096.313.3.313h1.034v.352c0 .04-.028.068-.068.068h-1.672c-.518 0-.6-.284-.6-.544v-3.1c0-.148.056-.216.232-.216h.774m-1.916 0v3.656c0 .164-.068.204-.204.204h-.788v-3.655c0-.125.04-.205.216-.205h.776M0 10.532c0-.3 0-.53.49-.53h2.12v.366c0 .028-.012.054-.054.054H1.28c-.162 0-.244.083-.244.26v.979h1.496v.393c0 .04-.028.054-.056.054h-1.44v1.55c0 .15-.082.204-.246.204H0v-3.33m4.148-.531v2.95c0 .26.04.434.216.53.232.136.64.136.884 0 .164-.096.232-.244.232-.53v-2.76c0-.122.04-.19.218-.19h.774v2.853c0 .667-.42.94-.788 1.035a3.592 3.592 0 0 1-1.7 0c-.558-.164-.816-.49-.816-1.035v-2.663c0-.122.04-.204.19-.204h.79M22.872 10c-.19 0-.314.094-.354.272l-.626 2.663h-.014L21.212 10h-.884c-.176 0-.23.08-.23.23v3.644h.38c.054 0 .08-.026.08-.094v-3.06h.056l.802 3.14h.53c.204 0 .272-.08.328-.272l.72-2.868h.054v3.14h.708c.176 0 .244-.069.244-.23V10h-1.128m-11.708 2.093h-.992v1.767h.788c.136 0 .204-.04.204-.205v-1.562m-.054-.747c.04-.028.054-.056.054-.11V10h-.776c-.176 0-.216.08-.216.204v1.875l.938-.733m-3.4 2.216c.436-.055.572-.314.572-.695v-2.663c0-.164.08-.204.19-.204h.788v2.513c0 .612-.136.927-.49 1.198-.19.136-.516.3-1.25.3-.408 0-.6-.028-.626-.028-.04-.014-.054-.028-.054-.056v-.326c.204-.014.584 0 .87-.04M12.674 10c-.49 0-.49.244-.49.53v.992c0 .028-.014.028-.014.04l-.68.532h.694v1.766h.788c.164 0 .244-.054.244-.204v-1.562h1.442c.028 0 .054-.014.054-.056v-.394h-1.496v-.98c0-.176.082-.256.26-.256h1.278c.04 0 .054-.028.054-.056V10h-2.134" }) + ] + } + ); +}); + +export { SiFujifilm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.cjs new file mode 100644 index 000000000..b4327e621 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiFujitsu = React__namespace.forwardRef(function SiFujitsu2({ title = "Fujitsu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.56 3C14.15 3 12.04 4.24 10.68 5.97L10.68 9.76C12.5 4.71 16.56 5.08 16.56 5.08C19.5 5.08 21.84 7.38 21.84 10.2C21.84 13.04 19.5 15.33 16.56 15.33A5.32 5.32 0 0 1 12.84 13.83L10.28 11.03A6.06 6.06 0 0 0 6.03 9.32C2.7 9.32 0 11.93 0 15.16C0 18.4 2.7 21 6.03 21C7.9 21 9.58 20.19 10.68 18.89L10.68 15.86C8.88 19.29 6.03 18.92 6.03 18.92C3.9 18.92 2.17 17.24 2.17 15.16C2.17 13.1 3.9 11.42 6.03 11.42C7.09 11.42 8.05 11.84 8.75 12.5L11.31 15.31A7.5 7.5 0 0 0 16.56 17.43C20.67 17.43 24 14.19 24 10.2C24 6.21 20.67 3 16.56 3Z" }) + ] + } + ); +}); + +exports.default = SiFujitsu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.d.ts new file mode 100644 index 000000000..c7c20d0a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiFujitsu: IconType; +export { SiFujitsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.mjs new file mode 100644 index 000000000..50adcc18b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFujitsu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiFujitsu = React.forwardRef(function SiFujitsu2({ title = "Fujitsu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.56 3C14.15 3 12.04 4.24 10.68 5.97L10.68 9.76C12.5 4.71 16.56 5.08 16.56 5.08C19.5 5.08 21.84 7.38 21.84 10.2C21.84 13.04 19.5 15.33 16.56 15.33A5.32 5.32 0 0 1 12.84 13.83L10.28 11.03A6.06 6.06 0 0 0 6.03 9.32C2.7 9.32 0 11.93 0 15.16C0 18.4 2.7 21 6.03 21C7.9 21 9.58 20.19 10.68 18.89L10.68 15.86C8.88 19.29 6.03 18.92 6.03 18.92C3.9 18.92 2.17 17.24 2.17 15.16C2.17 13.1 3.9 11.42 6.03 11.42C7.09 11.42 8.05 11.84 8.75 12.5L11.31 15.31A7.5 7.5 0 0 0 16.56 17.43C20.67 17.43 24 14.19 24 10.2C24 6.21 20.67 3 16.56 3Z" }) + ] + } + ); +}); + +export { SiFujitsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.cjs new file mode 100644 index 000000000..3c47afb86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#36566F"; +const SiFuraffinity = React__namespace.forwardRef(function SiFuraffinity2({ title = "Fur Affinity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.7 22.086c-.43-.11-1.068-.505-1.193-.74-.113-.21-.02-1.356.116-1.44.113-.07.113-.265 0-.444-.069-.109-.235-.081-.801.132-.89.335-1.195.336-1.839.01C1.348 19.282.7 18.557.273 17.69c-.45-.914-.388-1.097.518-1.538.392-.19.932-.485 1.2-.655l.485-.31-.049-.724-.05-.725.492-.525.492-.526-.185-.285-.438-.671c-.212-.323-.234-.424-.132-.615.158-.295.095-.347-.256-.213-.157.06-.33.108-.384.108-.133 0-.124-.387.016-.648.158-.296.036-.373-.221-.14-.157.141-.245.162-.331.076-.299-.299.627-2.522 1.193-2.867l.351-.214h-.447c-.247 0-.448-.04-.448-.09 0-.302 1.386-.99 2.37-1.175l.678-.128 1.169-1.878c.643-1.033 1.235-1.932 1.316-2 .313-.26.532-.028 1.471 1.548.524.879.982 1.628 1.018 1.664.037.037.371-.164.743-.446.83-.627 3.339-2.091 4.391-2.562.588-.262.817-.32.949-.237.142.09.206.518.355 2.364.1 1.24.18 2.61.177 3.045-.007 1.202.004 1.37.09 1.367.043 0 .265-.262.493-.58.702-.981.523-.945 2.491-.508l1.731.384 1.197 1.007c1.127.949 1.378 1.217 1.253 1.342-.03.029-.758.063-1.62.076-1.845.028-2.937.289-3.567.852-.328.294-.366.386-.377.907-.007.319-.009.612-.004.65.005.04.445-.114.977-.342.532-.227 1.042-.413 1.135-.413.092 0 .582.416 1.089.926l.921.925-.55 1.06-.552 1.06.5.57c.274.313.485.622.47.686-.044.179-1.023.99-1.195.99-.083 0-.151-.036-.152-.079 0-.043-.09-.228-.202-.41l-.201-.33-.718.199c-.956.265-1.105.253-1.456-.114-.358-.373-.478-.33-.478.173 0 .512-.368 1.125-.83 1.381-.409.227-2.396.944-3.438 1.24a7.784 7.784 0 0 0-1.13.43c-1.05.528-1.072.256-.089-1.108.608-.842.946-1.18 2.002-2.007.698-.547 1.29-1.068 1.316-1.16.025-.09.153-.944.284-1.896l.238-1.732-.52-.983c-.518-.978-.52-.984-.34-1.298.098-.173.16-.315.137-.315-.038 0-.784.414-.887.492-.023.018.085.132.24.255.323.253.724.99.904 1.659.137.507.04 2.034-.113 1.792-.057-.09-.09.025-.09.314-.003.465-.376 1.495-.542 1.495-.051 0-.093-.095-.093-.21 0-.117-.048-.212-.106-.212-.065 0-.081.16-.042.41l.066.41-.685-.015c-.502-.01-.738.032-.881.159-.287.253-2.584 1.447-3.396 1.766-1.069.419-1.14.494-1.498 1.602-.176.545-.389 1.096-.473 1.226-.34.521-1.547.87-2.326.67zm1.11-.594c.18-.204.327-.309.327-.231a.447.447 0 0 1-.125.265c-.068.069-.092.158-.051.198.1.1.344-.254.502-.734.153-.463.299-.61.226-.228-.027.143-.025.26.005.26.148 0 .537-.872.724-1.622.28-1.122.361-1.259 1.283-2.13.63-.596.816-.842.91-1.212.192-.748.233-.814.32-.516.044.145.055.382.025.527-.08.403.11.163.607-.763.543-1.011.668-1.105.617-.467l-.038.484.351-.338c.465-.447 1.386-1.672 1.387-1.845 0-.075-.13-.257-.289-.405-.276-.255-.231-.269.25-.075.139.056.156.023.091-.184-.424-1.372-.948-2.169-2.166-3.296-1-.925-1.51-1.273-2.411-1.645l-.727-.299-.658.386c-.614.36-3.89 3.406-3.89 3.617 0 .558 2.683-1.523 3.953-3.064.326-.397.607-.64.74-.64.392-.002 1.555.78 2.428 1.632 1.001.978 1.359 1.584 1.28 2.171-.06.442-.456 1.3-.691 1.495-.13.107-.146.075-.103-.215.027-.189.034-.343.014-.343-.02 0-.181.155-.36.343-.285.303-.317.315-.271.105.063-.289.046-.29-.729-.022a25.67 25.67 0 0 1-1.628.47c-1.125.287-1.701.505-2.13.81-.346.246-.372.402-.065.402.124 0 .388.172.586.383l.362.383.165-.236c.155-.221.728-.53.983-.53.063 0-.006.158-.153.35-.24.315-.267.443-.258 1.239.009.824-.03.993-.543 2.363-.303.811-.665 1.628-.804 1.815-.339.455-1.1.887-1.678.952-.444.05-.462.064-.303.24.284.314.759.464 1.05.331.209-.095.243-.088.194.038-.117.306.364.154.69-.219zm-1.664-.97a4.035 4.035 0 0 0-.251-.386c-.144-.192-.154-.188-.225.095-.08.317.047.47.39.473.147.001.166-.038.086-.183zm1.443-.68c.194-.194.152-.355-.127-.482-.326-.15-.387-.078-.255.3.118.338.191.372.382.182zm-3.1-.35c.21-.087.381-.178.381-.201 0-.175-1.24-.886-2.034-1.165a38.388 38.388 0 0 1-1.158-.421c-.306-.131.179.609.8 1.22.714.703 1.294.867 2.01.567zm-1.279-.127c-.158-.056-.177-.345-.023-.345.11 0 .269.295.195.359-.022.018-.1.012-.172-.014zm-.734-.688c-.2-.26-.242-.381-.149-.439.128-.08.664.352.588.474-.085.138-.32.12-.44-.035zm3.975.296c.813-.147.928-.198 1.245-.557.563-.638.986-1.455.948-1.834-.052-.525-.448-.75-1.425-.805-.451-.026-1.02.006-1.262.072-.582.157-1.206.863-1.45 1.64l-.184.583.276.47c.296.506.547.706.798.637.087-.024.561-.116 1.054-.206zm.1-.96c-.11-.134-.106-.192.03-.328.21-.21.397-.099.397.234 0 .293-.22.342-.426.094zm-.953-.638c-.27-.326.26-.736.594-.459.224.186.19.288-.152.465-.273.141-.32.14-.442-.006zm1.226-.526c-.161-.161-.162-.193-.013-.343.183-.182.338-.09.395.237.047.268-.162.326-.382.106zm4.412 1.437c.425-.182.99-.798.855-.932-.1-.1-1.189.63-1.3.873-.145.319-.157.317.445.06zm-8.732-.641c-.46-.23-.879-.458-.929-.508-.05-.05.19-.122.546-.163.7-.079 1.748-.36 1.662-.447-.03-.03-.426.017-.88.105-1.457.28-1.653.294-1.5.109.074-.089.363-.277.642-.418.544-.276.68-.42.236-.251-.602.229-1.204.657-1.204.857 0 .136.77.61 1.44.885.932.383.926.298-.013-.169zm10.603-.325c.972-.547.98-.556.391-.48-.636.084-1.04.274-1.04.49a.49.49 0 0 1-.127.299c-.218.218-.023.14.776-.309zm8.076-1.603c.037-.565-.019-.588-.69-.283-.496.225-.491.213-.34.761l.11.39.444-.189c.422-.179.446-.212.476-.679zm-5.436-.145c.046-.392-.033-.972-.179-1.32-.045-.107-.031-.185.032-.185.117 0 .546 1.053.546 1.342 0 .14.026.149.13.044.247-.246.077-1.808-.293-2.703-.169-.407.257.05.481.515l.208.433-.035-.527c-.062-.934-.38-1.46-1.203-1.993-1.042-.673-1.089-.759-.417-.753.563.004 1.724-.433 1.985-.747.099-.12.085-.133-.077-.071-.12.046-.042-.085.196-.33.518-.533.535-.822.026-.433-.445.338-.466.277-.08-.229.267-.349.293-.47.327-1.494.036-1.091.033-1.11-.165-.932-.123.111-.24.145-.3.086-.23-.227-.43.18-.615 1.258-.105.609-.253 1.258-.33 1.442-.143.347-.665.751-1.323 1.025l-.38.157-.58-.933-.582-.932.32-.064c.297-.06.306-.075.128-.205-.18-.131-.171-.146.113-.209.309-.068.85-.456.761-.545-.026-.026-.2-.005-.384.048-.39.112-.44-.006-.098-.234.13-.087.397-.453.593-.813.327-.603.338-.65.132-.585-.178.056-.246.014-.33-.206a1.805 1.805 0 0 1-.105-.53c0-.182-.045-.237-.157-.194-.222.085-.298-.192-.175-.637.057-.208.082-.378.055-.378-.118 0-1.311.811-1.962 1.334-.79.634-.854.828-.55 1.67.083.231.152.428.153.438 0 .01-.07.006-.158-.007-.088-.013-.337-.196-.553-.407-.573-.557-1.494-.93-2.448-.992-.83-.053-.883.098-.083.233.863.146.47.26-.896.26-1.059 0-1.615.052-2.222.207-.99.253-1.374.438-.732.353.554-.074 1.637.055 1.556.185-.033.054-.2.098-.373.098-.573 0-1.49.4-1.95.853-.402.394-1.07 1.528-.963 1.634.025.025.254-.07.509-.213.66-.366 1.57-.708 1.57-.59 0 .055-.102.154-.226.22-.53.285-1.46 1.31-1.46 1.611 0 .027.25-.018.553-.099.305-.08.673-.147.82-.148.248-.001.264.029.232.447l-.034.447.237-.316c.395-.528 2.1-2.244 2.853-2.872.39-.325.697-.604.682-.619-.015-.015-.204.013-.42.061-.609.138-.461-.06.214-.285l.606-.202-.395-.075c-.676-.127-.433-.245.304-.146 1.468.197 2.966 1.002 4.336 2.33 1.051 1.02 1.635 1.917 2.014 3.097l.311.972-.5.766c-.659 1.007-.906 1.438-.848 1.48.051.037 1.375.473 1.485.489.037.005.088-.167.113-.382zm-9.664-.727l1.053-1.013-.422.068-.421.068.263-.211c.312-.251.258-.269-.224-.072-.195.08-.474.182-.619.225-.262.08-.262.079-.063-.145.438-.49.006-.183-.76.54-.446.42-1 .92-1.232 1.108-.366.298-.387.336-.158.289.145-.03.5-.012.79.039.29.05.575.098.634.105.058.007.58-.444 1.159-1zm-1.747-.388c.327-.297.423-.452.375-.606-.068-.212-.262-.287-.262-.1a.106.106 0 0 1-.106.105c-.058 0-.105-.118-.105-.263 0-.34-.14-.335-.414.014-.276.351-.28.5-.008.355.249-.134.273-.017.056.27-.167.221-.22.718-.068.66.05-.019.29-.215.532-.435zm15.769-.113c.443-.196.754-.388.69-.427-.135-.084-1.518.504-1.573.669-.055.163-.008.15.883-.242zm-15.231-1.64c-.06-.112-.11-.35-.11-.527 0-.344-.173-.437-.283-.151-.07.183.254.882.41.882.05 0 .043-.092-.017-.204zm.38-.272c.063-.164-.127-.473-.291-.473-.108 0-.126.459-.023.562.117.117.25.08.314-.089zm4.212-.492l.347-.262c.023-.018-.078-.126-.225-.242-.319-.25-.641-.998-.552-1.28.087-.272-.09-.25-.445.056-.252.216-.295.33-.289.768.009.626.309 1.19.634 1.19.124 0 .363-.104.53-.23zm-4.962-1.33c-.078-.078-.396.107-.447.26-.02.058.072.155.204.214.211.095.244.077.275-.15.018-.142.004-.288-.032-.324zm5.232.016c.106-.096.192-.231.192-.3 0-.208-.378-.484-.564-.413-.203.078-.234.574-.047.76.163.164.189.161.419-.047zm5.653-1.38c.377-.361.427-.476.583-1.344.094-.521.244-1.517.334-2.213a87.1 87.1 0 0 1 .262-1.89c.055-.345.082-.644.06-.666-.021-.021-.261.616-.533 1.417-.272.8-.52 1.527-.552 1.614-.033.089.062.047.22-.098.152-.14.277-.216.277-.167 0 .271-.39 1.314-.599 1.601-.28.385-.317.542-.083.347.433-.36.226.322-.27.887-.304.345-.318.554-.017.254.238-.239.14.15-.103.41-.378.402-.023.274.421-.152zm-4.133-2.467c-.191-.273-.227-.183-.055.138.063.117.139.188.17.158.03-.03-.022-.163-.115-.296zm-.64-1.149c.16-.31.156-.343-.125-.817-.208-.352-.303-.44-.33-.31-.047.23-.22.235-.532.016-.24-.167-.24-.166-.172.2.038.201.025.394-.028.427-.054.033-.339-.103-.634-.302l-.537-.362-.069.314c-.038.173-.11.314-.16.314-.137 0-.419-.442-.419-.656 0-.331-.148-.201-.599.525l-.44.71.322.034c.177.02.373-.016.435-.079.187-.186 1.744-.127 2.337.089.729.265.763.261.952-.103zm1.1 14.733l-.47-.237v-1.264l.79-.394c.435-.216.824-.394.865-.395.106-.002.61.881.61 1.07 0 .159-1.114 1.457-1.25 1.457-.042 0-.287-.106-.545-.237zm-1.154-.657c-.196-.202-.335-.386-.31-.41.025-.024.223-.117.44-.207l.395-.164v.574c0 .316-.038.574-.084.574-.047 0-.245-.165-.44-.367zm2.876-1.33c-.278-.42-.282-.448-.097-.558.107-.063.51-.316.894-.561.691-.441.962-.54.962-.354 0 .116-1.2 1.748-1.356 1.845-.061.038-.243-.13-.403-.373z" }) + ] + } + ); +}); + +exports.default = SiFuraffinity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.d.ts new file mode 100644 index 000000000..04cabd685 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#36566F"; +declare const SiFuraffinity: IconType; +export { SiFuraffinity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.mjs new file mode 100644 index 000000000..eeb2e8f6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFuraffinity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#36566F"; +const SiFuraffinity = React.forwardRef(function SiFuraffinity2({ title = "Fur Affinity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.7 22.086c-.43-.11-1.068-.505-1.193-.74-.113-.21-.02-1.356.116-1.44.113-.07.113-.265 0-.444-.069-.109-.235-.081-.801.132-.89.335-1.195.336-1.839.01C1.348 19.282.7 18.557.273 17.69c-.45-.914-.388-1.097.518-1.538.392-.19.932-.485 1.2-.655l.485-.31-.049-.724-.05-.725.492-.525.492-.526-.185-.285-.438-.671c-.212-.323-.234-.424-.132-.615.158-.295.095-.347-.256-.213-.157.06-.33.108-.384.108-.133 0-.124-.387.016-.648.158-.296.036-.373-.221-.14-.157.141-.245.162-.331.076-.299-.299.627-2.522 1.193-2.867l.351-.214h-.447c-.247 0-.448-.04-.448-.09 0-.302 1.386-.99 2.37-1.175l.678-.128 1.169-1.878c.643-1.033 1.235-1.932 1.316-2 .313-.26.532-.028 1.471 1.548.524.879.982 1.628 1.018 1.664.037.037.371-.164.743-.446.83-.627 3.339-2.091 4.391-2.562.588-.262.817-.32.949-.237.142.09.206.518.355 2.364.1 1.24.18 2.61.177 3.045-.007 1.202.004 1.37.09 1.367.043 0 .265-.262.493-.58.702-.981.523-.945 2.491-.508l1.731.384 1.197 1.007c1.127.949 1.378 1.217 1.253 1.342-.03.029-.758.063-1.62.076-1.845.028-2.937.289-3.567.852-.328.294-.366.386-.377.907-.007.319-.009.612-.004.65.005.04.445-.114.977-.342.532-.227 1.042-.413 1.135-.413.092 0 .582.416 1.089.926l.921.925-.55 1.06-.552 1.06.5.57c.274.313.485.622.47.686-.044.179-1.023.99-1.195.99-.083 0-.151-.036-.152-.079 0-.043-.09-.228-.202-.41l-.201-.33-.718.199c-.956.265-1.105.253-1.456-.114-.358-.373-.478-.33-.478.173 0 .512-.368 1.125-.83 1.381-.409.227-2.396.944-3.438 1.24a7.784 7.784 0 0 0-1.13.43c-1.05.528-1.072.256-.089-1.108.608-.842.946-1.18 2.002-2.007.698-.547 1.29-1.068 1.316-1.16.025-.09.153-.944.284-1.896l.238-1.732-.52-.983c-.518-.978-.52-.984-.34-1.298.098-.173.16-.315.137-.315-.038 0-.784.414-.887.492-.023.018.085.132.24.255.323.253.724.99.904 1.659.137.507.04 2.034-.113 1.792-.057-.09-.09.025-.09.314-.003.465-.376 1.495-.542 1.495-.051 0-.093-.095-.093-.21 0-.117-.048-.212-.106-.212-.065 0-.081.16-.042.41l.066.41-.685-.015c-.502-.01-.738.032-.881.159-.287.253-2.584 1.447-3.396 1.766-1.069.419-1.14.494-1.498 1.602-.176.545-.389 1.096-.473 1.226-.34.521-1.547.87-2.326.67zm1.11-.594c.18-.204.327-.309.327-.231a.447.447 0 0 1-.125.265c-.068.069-.092.158-.051.198.1.1.344-.254.502-.734.153-.463.299-.61.226-.228-.027.143-.025.26.005.26.148 0 .537-.872.724-1.622.28-1.122.361-1.259 1.283-2.13.63-.596.816-.842.91-1.212.192-.748.233-.814.32-.516.044.145.055.382.025.527-.08.403.11.163.607-.763.543-1.011.668-1.105.617-.467l-.038.484.351-.338c.465-.447 1.386-1.672 1.387-1.845 0-.075-.13-.257-.289-.405-.276-.255-.231-.269.25-.075.139.056.156.023.091-.184-.424-1.372-.948-2.169-2.166-3.296-1-.925-1.51-1.273-2.411-1.645l-.727-.299-.658.386c-.614.36-3.89 3.406-3.89 3.617 0 .558 2.683-1.523 3.953-3.064.326-.397.607-.64.74-.64.392-.002 1.555.78 2.428 1.632 1.001.978 1.359 1.584 1.28 2.171-.06.442-.456 1.3-.691 1.495-.13.107-.146.075-.103-.215.027-.189.034-.343.014-.343-.02 0-.181.155-.36.343-.285.303-.317.315-.271.105.063-.289.046-.29-.729-.022a25.67 25.67 0 0 1-1.628.47c-1.125.287-1.701.505-2.13.81-.346.246-.372.402-.065.402.124 0 .388.172.586.383l.362.383.165-.236c.155-.221.728-.53.983-.53.063 0-.006.158-.153.35-.24.315-.267.443-.258 1.239.009.824-.03.993-.543 2.363-.303.811-.665 1.628-.804 1.815-.339.455-1.1.887-1.678.952-.444.05-.462.064-.303.24.284.314.759.464 1.05.331.209-.095.243-.088.194.038-.117.306.364.154.69-.219zm-1.664-.97a4.035 4.035 0 0 0-.251-.386c-.144-.192-.154-.188-.225.095-.08.317.047.47.39.473.147.001.166-.038.086-.183zm1.443-.68c.194-.194.152-.355-.127-.482-.326-.15-.387-.078-.255.3.118.338.191.372.382.182zm-3.1-.35c.21-.087.381-.178.381-.201 0-.175-1.24-.886-2.034-1.165a38.388 38.388 0 0 1-1.158-.421c-.306-.131.179.609.8 1.22.714.703 1.294.867 2.01.567zm-1.279-.127c-.158-.056-.177-.345-.023-.345.11 0 .269.295.195.359-.022.018-.1.012-.172-.014zm-.734-.688c-.2-.26-.242-.381-.149-.439.128-.08.664.352.588.474-.085.138-.32.12-.44-.035zm3.975.296c.813-.147.928-.198 1.245-.557.563-.638.986-1.455.948-1.834-.052-.525-.448-.75-1.425-.805-.451-.026-1.02.006-1.262.072-.582.157-1.206.863-1.45 1.64l-.184.583.276.47c.296.506.547.706.798.637.087-.024.561-.116 1.054-.206zm.1-.96c-.11-.134-.106-.192.03-.328.21-.21.397-.099.397.234 0 .293-.22.342-.426.094zm-.953-.638c-.27-.326.26-.736.594-.459.224.186.19.288-.152.465-.273.141-.32.14-.442-.006zm1.226-.526c-.161-.161-.162-.193-.013-.343.183-.182.338-.09.395.237.047.268-.162.326-.382.106zm4.412 1.437c.425-.182.99-.798.855-.932-.1-.1-1.189.63-1.3.873-.145.319-.157.317.445.06zm-8.732-.641c-.46-.23-.879-.458-.929-.508-.05-.05.19-.122.546-.163.7-.079 1.748-.36 1.662-.447-.03-.03-.426.017-.88.105-1.457.28-1.653.294-1.5.109.074-.089.363-.277.642-.418.544-.276.68-.42.236-.251-.602.229-1.204.657-1.204.857 0 .136.77.61 1.44.885.932.383.926.298-.013-.169zm10.603-.325c.972-.547.98-.556.391-.48-.636.084-1.04.274-1.04.49a.49.49 0 0 1-.127.299c-.218.218-.023.14.776-.309zm8.076-1.603c.037-.565-.019-.588-.69-.283-.496.225-.491.213-.34.761l.11.39.444-.189c.422-.179.446-.212.476-.679zm-5.436-.145c.046-.392-.033-.972-.179-1.32-.045-.107-.031-.185.032-.185.117 0 .546 1.053.546 1.342 0 .14.026.149.13.044.247-.246.077-1.808-.293-2.703-.169-.407.257.05.481.515l.208.433-.035-.527c-.062-.934-.38-1.46-1.203-1.993-1.042-.673-1.089-.759-.417-.753.563.004 1.724-.433 1.985-.747.099-.12.085-.133-.077-.071-.12.046-.042-.085.196-.33.518-.533.535-.822.026-.433-.445.338-.466.277-.08-.229.267-.349.293-.47.327-1.494.036-1.091.033-1.11-.165-.932-.123.111-.24.145-.3.086-.23-.227-.43.18-.615 1.258-.105.609-.253 1.258-.33 1.442-.143.347-.665.751-1.323 1.025l-.38.157-.58-.933-.582-.932.32-.064c.297-.06.306-.075.128-.205-.18-.131-.171-.146.113-.209.309-.068.85-.456.761-.545-.026-.026-.2-.005-.384.048-.39.112-.44-.006-.098-.234.13-.087.397-.453.593-.813.327-.603.338-.65.132-.585-.178.056-.246.014-.33-.206a1.805 1.805 0 0 1-.105-.53c0-.182-.045-.237-.157-.194-.222.085-.298-.192-.175-.637.057-.208.082-.378.055-.378-.118 0-1.311.811-1.962 1.334-.79.634-.854.828-.55 1.67.083.231.152.428.153.438 0 .01-.07.006-.158-.007-.088-.013-.337-.196-.553-.407-.573-.557-1.494-.93-2.448-.992-.83-.053-.883.098-.083.233.863.146.47.26-.896.26-1.059 0-1.615.052-2.222.207-.99.253-1.374.438-.732.353.554-.074 1.637.055 1.556.185-.033.054-.2.098-.373.098-.573 0-1.49.4-1.95.853-.402.394-1.07 1.528-.963 1.634.025.025.254-.07.509-.213.66-.366 1.57-.708 1.57-.59 0 .055-.102.154-.226.22-.53.285-1.46 1.31-1.46 1.611 0 .027.25-.018.553-.099.305-.08.673-.147.82-.148.248-.001.264.029.232.447l-.034.447.237-.316c.395-.528 2.1-2.244 2.853-2.872.39-.325.697-.604.682-.619-.015-.015-.204.013-.42.061-.609.138-.461-.06.214-.285l.606-.202-.395-.075c-.676-.127-.433-.245.304-.146 1.468.197 2.966 1.002 4.336 2.33 1.051 1.02 1.635 1.917 2.014 3.097l.311.972-.5.766c-.659 1.007-.906 1.438-.848 1.48.051.037 1.375.473 1.485.489.037.005.088-.167.113-.382zm-9.664-.727l1.053-1.013-.422.068-.421.068.263-.211c.312-.251.258-.269-.224-.072-.195.08-.474.182-.619.225-.262.08-.262.079-.063-.145.438-.49.006-.183-.76.54-.446.42-1 .92-1.232 1.108-.366.298-.387.336-.158.289.145-.03.5-.012.79.039.29.05.575.098.634.105.058.007.58-.444 1.159-1zm-1.747-.388c.327-.297.423-.452.375-.606-.068-.212-.262-.287-.262-.1a.106.106 0 0 1-.106.105c-.058 0-.105-.118-.105-.263 0-.34-.14-.335-.414.014-.276.351-.28.5-.008.355.249-.134.273-.017.056.27-.167.221-.22.718-.068.66.05-.019.29-.215.532-.435zm15.769-.113c.443-.196.754-.388.69-.427-.135-.084-1.518.504-1.573.669-.055.163-.008.15.883-.242zm-15.231-1.64c-.06-.112-.11-.35-.11-.527 0-.344-.173-.437-.283-.151-.07.183.254.882.41.882.05 0 .043-.092-.017-.204zm.38-.272c.063-.164-.127-.473-.291-.473-.108 0-.126.459-.023.562.117.117.25.08.314-.089zm4.212-.492l.347-.262c.023-.018-.078-.126-.225-.242-.319-.25-.641-.998-.552-1.28.087-.272-.09-.25-.445.056-.252.216-.295.33-.289.768.009.626.309 1.19.634 1.19.124 0 .363-.104.53-.23zm-4.962-1.33c-.078-.078-.396.107-.447.26-.02.058.072.155.204.214.211.095.244.077.275-.15.018-.142.004-.288-.032-.324zm5.232.016c.106-.096.192-.231.192-.3 0-.208-.378-.484-.564-.413-.203.078-.234.574-.047.76.163.164.189.161.419-.047zm5.653-1.38c.377-.361.427-.476.583-1.344.094-.521.244-1.517.334-2.213a87.1 87.1 0 0 1 .262-1.89c.055-.345.082-.644.06-.666-.021-.021-.261.616-.533 1.417-.272.8-.52 1.527-.552 1.614-.033.089.062.047.22-.098.152-.14.277-.216.277-.167 0 .271-.39 1.314-.599 1.601-.28.385-.317.542-.083.347.433-.36.226.322-.27.887-.304.345-.318.554-.017.254.238-.239.14.15-.103.41-.378.402-.023.274.421-.152zm-4.133-2.467c-.191-.273-.227-.183-.055.138.063.117.139.188.17.158.03-.03-.022-.163-.115-.296zm-.64-1.149c.16-.31.156-.343-.125-.817-.208-.352-.303-.44-.33-.31-.047.23-.22.235-.532.016-.24-.167-.24-.166-.172.2.038.201.025.394-.028.427-.054.033-.339-.103-.634-.302l-.537-.362-.069.314c-.038.173-.11.314-.16.314-.137 0-.419-.442-.419-.656 0-.331-.148-.201-.599.525l-.44.71.322.034c.177.02.373-.016.435-.079.187-.186 1.744-.127 2.337.089.729.265.763.261.952-.103zm1.1 14.733l-.47-.237v-1.264l.79-.394c.435-.216.824-.394.865-.395.106-.002.61.881.61 1.07 0 .159-1.114 1.457-1.25 1.457-.042 0-.287-.106-.545-.237zm-1.154-.657c-.196-.202-.335-.386-.31-.41.025-.024.223-.117.44-.207l.395-.164v.574c0 .316-.038.574-.084.574-.047 0-.245-.165-.44-.367zm2.876-1.33c-.278-.42-.282-.448-.097-.558.107-.063.51-.316.894-.561.691-.441.962-.54.962-.354 0 .116-1.2 1.748-1.356 1.845-.061.038-.243-.13-.403-.373z" }) + ] + } + ); +}); + +export { SiFuraffinity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.cjs new file mode 100644 index 000000000..1269582e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E75B4"; +const SiFurrynetwork = React__namespace.forwardRef(function SiFurrynetwork2({ title = "Furry Network", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.91 0C12.79 0 9.69 0 6.6.03c0 .05-.06.05-.09.08a10.5 10.5 0 0 0-3.66 2.57c-.84.87-1.52 1.9-2.06 3-.2.38-.38.79-.55 1.2-.02.08-.05.2-.13.25v6.22c.05.08.05.2.08.3a8.66 8.66 0 0 0 3.42 4.83c.03.03.05.09.11.06-.03-.03-.03-.06-.06-.08-.24-.36-.46-.69-.67-1.04a9.1 9.1 0 0 1-1.28-5.57 10.09 10.09 0 0 1 1.71-4.53 23.07 23.07 0 0 1 3.64-4.18A13.05 13.05 0 0 1 10.32.98 8.82 8.82 0 0 1 14.74.2c.7.06 1.39.17 2.07.27L17 .5c.08.03.13.03.21.03-.38-.16-.76-.33-1.14-.44-.05-.02-.1-.02-.16-.08zm-1.66.66c-.43.02-.84.05-1.27.13-.74.14-1.44.36-2.15.58a7.47 7.47 0 0 0-1.44.62c-.02 0-.08 0-.08.06h.05a28.12 28.12 0 0 1 3.05-.33c.51-.03 1.06 0 1.57.08.76.11 1.47.39 2.12.77a10.8 10.8 0 0 1 4.4 4.7 15.14 15.14 0 0 1 1.38 5.43c.06.65.06 1.34.03 2.02l-.08 1.14c-.03.33-.08.66-.14.99a6.1 6.1 0 0 1-.27 1.17 11.7 11.7 0 0 1-1.55 2.73c-.49.66-1.05 1.26-1.6 1.86-.08.08-.13.13-.19.22.06 0 .06-.03.08-.03a16.74 16.74 0 0 0 2.31-1.61 10.87 10.87 0 0 0 3.2-4.45l.17-.41h.03v5.87c0 .02 0-9.17.02-15 0 .02 0 .05-.02.07l-.03-.09a10.75 10.75 0 0 0-1.52-2.73 9.7 9.7 0 0 0-3.12-2.64A9.76 9.76 0 0 0 14.25.66zm9.63 6.54.01-.02zm-13-3.33c-.4-.04-.8.09-1.19.42a2.33 2.33 0 0 0-.62.9c-.33.8-.38 1.58-.22 2.4.11.63.4 1.18.92 1.58.52.44 1.12.5 1.66.2.33-.2.57-.44.76-.77.33-.57.46-1.2.46-1.85 0-.3-.02-.58-.08-.88a2.8 2.8 0 0 0-.62-1.4 1.69 1.69 0 0 0-1.08-.6zM16 5.15a2.38 2.38 0 0 0-1.72.83c-.3.27-.46.63-.65.98a3.04 3.04 0 0 0-.38 1.53c0 .38.05.74.21 1.1.28.65.8 1 1.44 1 .47 0 .85-.16 1.2-.43a3.75 3.75 0 0 0 1.5-2.57c.05-.46 0-.93-.17-1.4-.16-.4-.4-.75-.82-.92a1.61 1.61 0 0 0-.6-.12zM6.38 7.56c-.44.03-.84.2-1.11.6-.36.5-.47 1.07-.5 1.64-.02.6.12 1.15.39 1.67.22.43.51.82.92 1.1.52.34 1.17.34 1.63.02.27-.2.46-.47.6-.77.27-.63.32-1.3.16-1.99a3.3 3.3 0 0 0-1.06-1.86c-.3-.24-.62-.4-1.03-.4zm11.86 2.64a1.84 1.84 0 0 0-.9.2 3.5 3.5 0 0 0-1.81 1.97 2.44 2.44 0 0 0-.11 1.58c.14.5.4.85.9.99.19.05.4.08.6.08.32 0 .54-.03.8-.17.53-.24.93-.6 1.28-1.03a2.9 2.9 0 0 0 .63-2.46 1.3 1.3 0 0 0-1.09-1.12 1.87 1.87 0 0 0-.3-.04zm-7.11 1.65c-.08 0-.22 0-.35.03a3.58 3.58 0 0 0-1.5.4c-.6.34-1.1.77-1.57 1.26a10.07 10.07 0 0 0-1.39 1.83c-.21.38-.35.8-.32 1.23.03.25.03.47.14.68.3.39.7.66 1.19.77.46.08.92.03 1.38-.03.52-.05 1-.1 1.5-.08.78.05 1.5.3 2.12.79.24.2.46.41.73.6.51.36 1.06.52 1.68.38.52-.1.87-.43.98-.95.1-.44.08-.85.02-1.29a9.46 9.46 0 0 0-.37-1.5 9.95 9.95 0 0 0-1-2.26c-.3-.5-.66-.93-1.15-1.26a3.68 3.68 0 0 0-2.09-.6zM.11 14.64v2.13c.1.13.16.3.22.46a12.8 12.8 0 0 0 2.41 4.18 9.6 9.6 0 0 0 3.83 2.56c.03 0 .05.03.08.03h8.01c.03-.03.03-.03.05-.03a8.68 8.68 0 0 0 1.99-.9 11.4 11.4 0 0 0 4.26-4.8c.43-1.01.65-2.08.7-3.2a.4.4 0 0 0 0-.24c-.02.02-.05.05-.05.08l-.22.7a8.29 8.29 0 0 1-1.87 3.2 8.08 8.08 0 0 1-2.85 1.91c-.95.39-1.95.55-2.99.6-.76.03-1.49 0-2.22-.05a24.34 24.34 0 0 1-3.1-.44 15.48 15.48 0 0 1-3.75-1.36 10.15 10.15 0 0 1-3.3-2.76 7.5 7.5 0 0 1-1.2-2.07z" }) + ] + } + ); +}); + +exports.default = SiFurrynetwork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.d.ts new file mode 100644 index 000000000..c1988eee0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E75B4"; +declare const SiFurrynetwork: IconType; +export { SiFurrynetwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.mjs new file mode 100644 index 000000000..7cbf7d393 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFurrynetwork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E75B4"; +const SiFurrynetwork = React.forwardRef(function SiFurrynetwork2({ title = "Furry Network", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.91 0C12.79 0 9.69 0 6.6.03c0 .05-.06.05-.09.08a10.5 10.5 0 0 0-3.66 2.57c-.84.87-1.52 1.9-2.06 3-.2.38-.38.79-.55 1.2-.02.08-.05.2-.13.25v6.22c.05.08.05.2.08.3a8.66 8.66 0 0 0 3.42 4.83c.03.03.05.09.11.06-.03-.03-.03-.06-.06-.08-.24-.36-.46-.69-.67-1.04a9.1 9.1 0 0 1-1.28-5.57 10.09 10.09 0 0 1 1.71-4.53 23.07 23.07 0 0 1 3.64-4.18A13.05 13.05 0 0 1 10.32.98 8.82 8.82 0 0 1 14.74.2c.7.06 1.39.17 2.07.27L17 .5c.08.03.13.03.21.03-.38-.16-.76-.33-1.14-.44-.05-.02-.1-.02-.16-.08zm-1.66.66c-.43.02-.84.05-1.27.13-.74.14-1.44.36-2.15.58a7.47 7.47 0 0 0-1.44.62c-.02 0-.08 0-.08.06h.05a28.12 28.12 0 0 1 3.05-.33c.51-.03 1.06 0 1.57.08.76.11 1.47.39 2.12.77a10.8 10.8 0 0 1 4.4 4.7 15.14 15.14 0 0 1 1.38 5.43c.06.65.06 1.34.03 2.02l-.08 1.14c-.03.33-.08.66-.14.99a6.1 6.1 0 0 1-.27 1.17 11.7 11.7 0 0 1-1.55 2.73c-.49.66-1.05 1.26-1.6 1.86-.08.08-.13.13-.19.22.06 0 .06-.03.08-.03a16.74 16.74 0 0 0 2.31-1.61 10.87 10.87 0 0 0 3.2-4.45l.17-.41h.03v5.87c0 .02 0-9.17.02-15 0 .02 0 .05-.02.07l-.03-.09a10.75 10.75 0 0 0-1.52-2.73 9.7 9.7 0 0 0-3.12-2.64A9.76 9.76 0 0 0 14.25.66zm9.63 6.54.01-.02zm-13-3.33c-.4-.04-.8.09-1.19.42a2.33 2.33 0 0 0-.62.9c-.33.8-.38 1.58-.22 2.4.11.63.4 1.18.92 1.58.52.44 1.12.5 1.66.2.33-.2.57-.44.76-.77.33-.57.46-1.2.46-1.85 0-.3-.02-.58-.08-.88a2.8 2.8 0 0 0-.62-1.4 1.69 1.69 0 0 0-1.08-.6zM16 5.15a2.38 2.38 0 0 0-1.72.83c-.3.27-.46.63-.65.98a3.04 3.04 0 0 0-.38 1.53c0 .38.05.74.21 1.1.28.65.8 1 1.44 1 .47 0 .85-.16 1.2-.43a3.75 3.75 0 0 0 1.5-2.57c.05-.46 0-.93-.17-1.4-.16-.4-.4-.75-.82-.92a1.61 1.61 0 0 0-.6-.12zM6.38 7.56c-.44.03-.84.2-1.11.6-.36.5-.47 1.07-.5 1.64-.02.6.12 1.15.39 1.67.22.43.51.82.92 1.1.52.34 1.17.34 1.63.02.27-.2.46-.47.6-.77.27-.63.32-1.3.16-1.99a3.3 3.3 0 0 0-1.06-1.86c-.3-.24-.62-.4-1.03-.4zm11.86 2.64a1.84 1.84 0 0 0-.9.2 3.5 3.5 0 0 0-1.81 1.97 2.44 2.44 0 0 0-.11 1.58c.14.5.4.85.9.99.19.05.4.08.6.08.32 0 .54-.03.8-.17.53-.24.93-.6 1.28-1.03a2.9 2.9 0 0 0 .63-2.46 1.3 1.3 0 0 0-1.09-1.12 1.87 1.87 0 0 0-.3-.04zm-7.11 1.65c-.08 0-.22 0-.35.03a3.58 3.58 0 0 0-1.5.4c-.6.34-1.1.77-1.57 1.26a10.07 10.07 0 0 0-1.39 1.83c-.21.38-.35.8-.32 1.23.03.25.03.47.14.68.3.39.7.66 1.19.77.46.08.92.03 1.38-.03.52-.05 1-.1 1.5-.08.78.05 1.5.3 2.12.79.24.2.46.41.73.6.51.36 1.06.52 1.68.38.52-.1.87-.43.98-.95.1-.44.08-.85.02-1.29a9.46 9.46 0 0 0-.37-1.5 9.95 9.95 0 0 0-1-2.26c-.3-.5-.66-.93-1.15-1.26a3.68 3.68 0 0 0-2.09-.6zM.11 14.64v2.13c.1.13.16.3.22.46a12.8 12.8 0 0 0 2.41 4.18 9.6 9.6 0 0 0 3.83 2.56c.03 0 .05.03.08.03h8.01c.03-.03.03-.03.05-.03a8.68 8.68 0 0 0 1.99-.9 11.4 11.4 0 0 0 4.26-4.8c.43-1.01.65-2.08.7-3.2a.4.4 0 0 0 0-.24c-.02.02-.05.05-.05.08l-.22.7a8.29 8.29 0 0 1-1.87 3.2 8.08 8.08 0 0 1-2.85 1.91c-.95.39-1.95.55-2.99.6-.76.03-1.49 0-2.22-.05a24.34 24.34 0 0 1-3.1-.44 15.48 15.48 0 0 1-3.75-1.36 10.15 10.15 0 0 1-3.3-2.76 7.5 7.5 0 0 1-1.2-2.07z" }) + ] + } + ); +}); + +export { SiFurrynetwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.cjs new file mode 100644 index 000000000..04440ae9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F58320"; +const SiFusionauth = React__namespace.forwardRef(function SiFusionauth2({ title = "FusionAuth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a1.667 1.667 0 0 0-1.666 1.666A1.667 1.667 0 0 0 12 3.334a1.667 1.667 0 0 0 1.666-1.668A1.667 1.667 0 0 0 12 0ZM9.506 1.145A11.572 11.572 0 0 0 .442 12.317a.716.716 0 0 0 1.075.618.702.702 0 0 0 .358-.6 10.136 10.136 0 0 1 5.06-8.666c.843-.486 1.75-.848 2.696-1.074a2.55 2.55 0 0 1-.125-1.452Zm8.015 1.26a.712.712 0 0 0-.695.713.704.704 0 0 0 .34.61 10.133 10.133 0 0 1 4.545 11.587c.314.046.618.15.894.309.148.084.29.183.42.293a11.573 11.573 0 0 0-5.15-13.43.715.715 0 0 0-.354-.082Zm-5.519 3.791a6.247 6.247 0 1 0 .002 12.494 6.247 6.247 0 0 0-.002-12.494Zm0 1.43a4.819 4.819 0 0 1 3.41 8.222 4.817 4.817 0 1 1-3.41-8.222Zm-.01 2.295c-1.412.014-1.896 1.887-.668 2.584l-.435 2.207a.237.237 0 0 0 .234.281h1.772a.236.236 0 0 0 .234-.281l-.438-2.207c.43-.247.694-.706.692-1.202a1.38 1.38 0 0 0-1.39-1.382zm-9.324 6.242a1.667 1.667 0 0 0-1.666 1.666 1.667 1.667 0 0 0 1.666 1.668 1.667 1.667 0 0 0 1.666-1.668 1.667 1.667 0 0 0-1.666-1.666zm18.664 0a1.667 1.667 0 0 0-1.666 1.666 1.667 1.667 0 0 0 1.666 1.668 1.667 1.667 0 0 0 1.666-1.668 1.667 1.667 0 0 0-1.666-1.666zM4.655 19.427c-.195.244-.432.45-.702.608a2.584 2.584 0 0 1-.468.207 11.576 11.576 0 0 0 14.208 2.273.713.713 0 0 0 0-1.238.704.704 0 0 0-.703-.012 10.134 10.134 0 0 1-10.052-.05 10.17 10.17 0 0 1-2.283-1.788z" }) + ] + } + ); +}); + +exports.default = SiFusionauth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.d.ts new file mode 100644 index 000000000..80cb41866 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F58320"; +declare const SiFusionauth: IconType; +export { SiFusionauth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.mjs new file mode 100644 index 000000000..e51f5c75f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFusionauth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F58320"; +const SiFusionauth = React.forwardRef(function SiFusionauth2({ title = "FusionAuth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a1.667 1.667 0 0 0-1.666 1.666A1.667 1.667 0 0 0 12 3.334a1.667 1.667 0 0 0 1.666-1.668A1.667 1.667 0 0 0 12 0ZM9.506 1.145A11.572 11.572 0 0 0 .442 12.317a.716.716 0 0 0 1.075.618.702.702 0 0 0 .358-.6 10.136 10.136 0 0 1 5.06-8.666c.843-.486 1.75-.848 2.696-1.074a2.55 2.55 0 0 1-.125-1.452Zm8.015 1.26a.712.712 0 0 0-.695.713.704.704 0 0 0 .34.61 10.133 10.133 0 0 1 4.545 11.587c.314.046.618.15.894.309.148.084.29.183.42.293a11.573 11.573 0 0 0-5.15-13.43.715.715 0 0 0-.354-.082Zm-5.519 3.791a6.247 6.247 0 1 0 .002 12.494 6.247 6.247 0 0 0-.002-12.494Zm0 1.43a4.819 4.819 0 0 1 3.41 8.222 4.817 4.817 0 1 1-3.41-8.222Zm-.01 2.295c-1.412.014-1.896 1.887-.668 2.584l-.435 2.207a.237.237 0 0 0 .234.281h1.772a.236.236 0 0 0 .234-.281l-.438-2.207c.43-.247.694-.706.692-1.202a1.38 1.38 0 0 0-1.39-1.382zm-9.324 6.242a1.667 1.667 0 0 0-1.666 1.666 1.667 1.667 0 0 0 1.666 1.668 1.667 1.667 0 0 0 1.666-1.668 1.667 1.667 0 0 0-1.666-1.666zm18.664 0a1.667 1.667 0 0 0-1.666 1.666 1.667 1.667 0 0 0 1.666 1.668 1.667 1.667 0 0 0 1.666-1.668 1.667 1.667 0 0 0-1.666-1.666zM4.655 19.427c-.195.244-.432.45-.702.608a2.584 2.584 0 0 1-.468.207 11.576 11.576 0 0 0 14.208 2.273.713.713 0 0 0 0-1.238.704.704 0 0 0-.703-.012 10.134 10.134 0 0 1-10.052-.05 10.17 10.17 0 0 1-2.283-1.788z" }) + ] + } + ); +}); + +export { SiFusionauth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.cjs new file mode 100644 index 000000000..07f577592 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DE00A5"; +const SiFuturelearn = React__namespace.forwardRef(function SiFuturelearn2({ title = "FutureLearn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.081.61v7.566h-7.223v6.661H7.566v6.634H0v1.92h9.471v-6.649h7.306v-6.66H24V.61Z" }) + ] + } + ); +}); + +exports.default = SiFuturelearn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.d.ts new file mode 100644 index 000000000..c74d78fc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DE00A5"; +declare const SiFuturelearn: IconType; +export { SiFuturelearn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.mjs new file mode 100644 index 000000000..15086cd2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFuturelearn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DE00A5"; +const SiFuturelearn = React.forwardRef(function SiFuturelearn2({ title = "FutureLearn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.081.61v7.566h-7.223v6.661H7.566v6.634H0v1.92h9.471v-6.649h7.306v-6.66H24V.61Z" }) + ] + } + ); +}); + +export { SiFuturelearn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.cjs new file mode 100644 index 000000000..b1e71ffeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF2E63"; +const SiFyle = React__namespace.forwardRef(function SiFyle2({ title = "Fyle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.024 0H1.241C.56 0 0 .56 0 1.243v21.514C0 23.44.56 24 1.241 24h21.518A1.24 1.24 0 0 0 24 22.757V1.243C24 .56 23.44 0 22.759 0H11.675v15.592c-.04.775-.29 1.397-.761 1.865-.92.927-2.521 1.049-3.921 1.049-1.891 0-4.432-.244-4.862-2.273l-.06-.508c-.02-.101-.02-.387-.02-1.131V3.965c0-.488.16-.907.51-1.254A1.7 1.7 0 0 1 3.812 2.2l4.611.02.161.041v1.562H3.962c-.12 0-.18.061-.18.142v3.484h3.491v1.599H3.782v6.566c.04 1.15 1.74 1.375 3.181 1.375.64-.021 1.991-.021 2.601-.632.16-.165.32-.471.46-.928V0Z" }) + ] + } + ); +}); + +exports.default = SiFyle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.d.ts new file mode 100644 index 000000000..20b3dddb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF2E63"; +declare const SiFyle: IconType; +export { SiFyle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.mjs new file mode 100644 index 000000000..7dd6169fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiFyle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF2E63"; +const SiFyle = React.forwardRef(function SiFyle2({ title = "Fyle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.024 0H1.241C.56 0 0 .56 0 1.243v21.514C0 23.44.56 24 1.241 24h21.518A1.24 1.24 0 0 0 24 22.757V1.243C24 .56 23.44 0 22.759 0H11.675v15.592c-.04.775-.29 1.397-.761 1.865-.92.927-2.521 1.049-3.921 1.049-1.891 0-4.432-.244-4.862-2.273l-.06-.508c-.02-.101-.02-.387-.02-1.131V3.965c0-.488.16-.907.51-1.254A1.7 1.7 0 0 1 3.812 2.2l4.611.02.161.041v1.562H3.962c-.12 0-.18.061-.18.142v3.484h3.491v1.599H3.782v6.566c.04 1.15 1.74 1.375 3.181 1.375.64-.021 1.991-.021 2.601-.632.16-.165.32-.471.46-.928V0Z" }) + ] + } + ); +}); + +export { SiFyle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiG2.cjs new file mode 100644 index 000000000..b5b708d7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF492C"; +const SiG2 = React__namespace.forwardRef(function SiG22({ title = "G2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm.122 5.143c.45 0 .9.044 1.342.132l-1.342 2.806C9.962 8.08 8.203 9.84 8.203 12s1.76 3.92 3.92 3.92c.937 0 1.844-.338 2.553-.951l1.483 2.572A6.856 6.856 0 0 1 5.266 12a6.856 6.856 0 0 1 6.856-6.856Zm3.498.49a1.262 1.262 0 0 1 .026 0c.427 0 .792.113 1.101.34.31.229.466.546.466.946 0 .639-.36 1.03-1.035 1.376l-.377.191c-.403.204-.602.385-.657.706h2.05v.85h-3.101v-.144c0-.526.103-.96.314-1.306.211-.345.576-.65 1.102-.917l.242-.117c.427-.216.538-.401.538-.625 0-.266-.228-.458-.6-.458-.44 0-.773.228-1.004.694l-.592-.595c.13-.279.338-.502.619-.675a1.7 1.7 0 0 1 .908-.266Zm-2.094 5.388h3.394l1.697 2.937-1.697 2.94-1.697-2.94H11.83l1.696-2.937Z" }) + ] + } + ); +}); + +exports.default = SiG2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiG2.d.ts new file mode 100644 index 000000000..201e788b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF492C"; +declare const SiG2: IconType; +export { SiG2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiG2.mjs new file mode 100644 index 000000000..083333edf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF492C"; +const SiG2 = React.forwardRef(function SiG22({ title = "G2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm.122 5.143c.45 0 .9.044 1.342.132l-1.342 2.806C9.962 8.08 8.203 9.84 8.203 12s1.76 3.92 3.92 3.92c.937 0 1.844-.338 2.553-.951l1.483 2.572A6.856 6.856 0 0 1 5.266 12a6.856 6.856 0 0 1 6.856-6.856Zm3.498.49a1.262 1.262 0 0 1 .026 0c.427 0 .792.113 1.101.34.31.229.466.546.466.946 0 .639-.36 1.03-1.035 1.376l-.377.191c-.403.204-.602.385-.657.706h2.05v.85h-3.101v-.144c0-.526.103-.96.314-1.306.211-.345.576-.65 1.102-.917l.242-.117c.427-.216.538-.401.538-.625 0-.266-.228-.458-.6-.458-.44 0-.773.228-1.004.694l-.592-.595c.13-.279.338-.502.619-.675a1.7 1.7 0 0 1 .908-.266Zm-2.094 5.388h3.394l1.697 2.937-1.697 2.94-1.697-2.94H11.83l1.696-2.937Z" }) + ] + } + ); +}); + +export { SiG2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.cjs new file mode 100644 index 000000000..1400f3feb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F05F00"; +const SiG2a = React__namespace.forwardRef(function SiG2a2({ title = "G2A", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 15.419s-1.8844-3.5895-3.1571-6.0153a1.6802 1.6802 0 0 0-.4674-.5659 1.3021 1.3021 0 0 0-.7927-.2572 1.239 1.239 0 0 0-.7715.2572 1.6802 1.6802 0 0 0-.4674.5659c-1.2726 2.4258-3.1783 6.0153-3.1783 6.0153l1.7391.0004 2.6781-5.1339 1.2586 2.4128h-1.9378l.6832 1.3053h1.9356l.7386 1.4154H24zM3.4872 13.9588c-1.071 0-1.9392-.8682-1.9392-1.9392s.8682-1.9392 1.9392-1.9392l3.9342-.0031V8.6212H3.3946C1.5174 8.6236-.0024 10.1473 0 12.0244c.0024 1.8738 1.5208 3.3922 3.3946 3.3946h4.0268v-4.1277H3.053v1.4571l2.8447-.0001v1.2141l-2.4105-.0036zm7.2305-1.2109 3.0641-.0002c1.1395 0 2.0633-.9238 2.0633-2.0633s-.9238-2.0633-2.0633-2.0633h-3.6463c-.804-.0002-1.4559.6515-1.4561 1.4555v.0006l4.9963-.0001a.6157.6157 0 0 1 .6201.591.6064.6064 0 0 1-.5894.6229l-.0159.0002h-3.185c-1.0725.0004-1.9417.8701-1.9413 1.9426v2.185h5.4523l.7727-1.4566h-4.7014v-.5841a.63.63 0 0 1 .6299-.6302z" }) + ] + } + ); +}); + +exports.default = SiG2a; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.d.ts new file mode 100644 index 000000000..f3a017fa2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F05F00"; +declare const SiG2a: IconType; +export { SiG2a as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.mjs new file mode 100644 index 000000000..5511bc0b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2a.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F05F00"; +const SiG2a = React.forwardRef(function SiG2a2({ title = "G2A", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 15.419s-1.8844-3.5895-3.1571-6.0153a1.6802 1.6802 0 0 0-.4674-.5659 1.3021 1.3021 0 0 0-.7927-.2572 1.239 1.239 0 0 0-.7715.2572 1.6802 1.6802 0 0 0-.4674.5659c-1.2726 2.4258-3.1783 6.0153-3.1783 6.0153l1.7391.0004 2.6781-5.1339 1.2586 2.4128h-1.9378l.6832 1.3053h1.9356l.7386 1.4154H24zM3.4872 13.9588c-1.071 0-1.9392-.8682-1.9392-1.9392s.8682-1.9392 1.9392-1.9392l3.9342-.0031V8.6212H3.3946C1.5174 8.6236-.0024 10.1473 0 12.0244c.0024 1.8738 1.5208 3.3922 3.3946 3.3946h4.0268v-4.1277H3.053v1.4571l2.8447-.0001v1.2141l-2.4105-.0036zm7.2305-1.2109 3.0641-.0002c1.1395 0 2.0633-.9238 2.0633-2.0633s-.9238-2.0633-2.0633-2.0633h-3.6463c-.804-.0002-1.4559.6515-1.4561 1.4555v.0006l4.9963-.0001a.6157.6157 0 0 1 .6201.591.6064.6064 0 0 1-.5894.6229l-.0159.0002h-3.185c-1.0725.0004-1.9417.8701-1.9413 1.9426v2.185h5.4523l.7727-1.4566h-4.7014v-.5841a.63.63 0 0 1 .6299-.6302z" }) + ] + } + ); +}); + +export { SiG2a as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.cjs new file mode 100644 index 000000000..6e6e3e504 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiG2g = React__namespace.forwardRef(function SiG2g2({ title = "G2G", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v4.357h19.643v6.43H24V0H0zm0 6.44V24h24V12.805H6.648v4.36h12.995v2.478H4.357v-8.846h12.995V6.439H0z" }) + ] + } + ); +}); + +exports.default = SiG2g; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.d.ts new file mode 100644 index 000000000..1ad73bcbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiG2g: IconType; +export { SiG2g as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.mjs new file mode 100644 index 000000000..271fa3913 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiG2g.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiG2g = React.forwardRef(function SiG2g2({ title = "G2G", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v4.357h19.643v6.43H24V0H0zm0 6.44V24h24V12.805H6.648v4.36h12.995v2.478H4.357v-8.846h12.995V6.439H0z" }) + ] + } + ); +}); + +export { SiG2g as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.cjs new file mode 100644 index 000000000..d3824905f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGalaxus = React__namespace.forwardRef(function SiGalaxus2({ title = "Galaxus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6.181c3.604 0 6.53 3.111 6.53 6.943 0 3.831-2.926 6.942-6.53 6.942s-6.53-3.111-6.53-6.942c0-3.832 2.926-6.943 6.53-6.943m2.506-3.088c-.101.258-.209.531-.209.733 0 .245.072.458.144.673.043.127.086.254.114.389.024.11-.014.174-.078.283-.04.069-.092.157-.145.288a.738.738 0 0 0-.078-.019 7.36 7.36 0 0 0-4.515.002l-.023.005-.05.013a2.06 2.06 0 0 0-.146-.289c-.062-.107-.099-.169-.076-.277.03-.13.069-.258.114-.384.072-.216.145-.431.145-.676 0-.205-.108-.478-.21-.736-.091-.232-.178-.451-.178-.599 0-.192.384-.462.783-.744.253-.179.513-.362.685-.532.158-.156.315-.357.465-.55.271-.348.524-.673.739-.673h.039c.213.012.463.331.729.672.15.191.305.39.462.545.171.169.43.351.682.53.4.282.785.554.785.745 0 .148-.087.368-.178.601M5.054 9.69a3.45 3.45 0 0 0-1.467-.273c-1.659.036-1.694-3.348-1.384-3.553.257-.169 3.032-.061 4.656 1.293A8.079 8.079 0 0 0 5.054 9.69m1.361 10.137c-.163 1.58-3.578 1.29-3.748.971-.16-.3.184-3.356 2.311-4.417a8.111 8.111 0 0 0 1.661 2.494c-.107.246-.183.557-.224.952m12.607-3.445c2.135 1.068 2.542 4.185 2.382 4.486-.17.318-3.658.538-3.82-1.04a3.189 3.189 0 0 0-.224-.952 8.102 8.102 0 0 0 1.662-2.494m-6.96 4.78c.365 0 .73-.028 1.091-.082-.117 1.287.312 2.387 1.562 2.599a.277.277 0 0 0 .091-.002.323.323 0 0 1 .082-.004c-.53.251-1.112.397-1.728.293-1.43-.243-2.425-1.496-2.421-2.926.429.079.872.122 1.323.122m5.08-14.006c1.623-1.353 4.398-1.461 4.654-1.292.311.205.276 3.59-1.383 3.553a3.457 3.457 0 0 0-1.468.273 8.105 8.105 0 0 0-1.803-2.534" }) + ] + } + ); +}); + +exports.default = SiGalaxus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.d.ts new file mode 100644 index 000000000..ac742ce61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGalaxus: IconType; +export { SiGalaxus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.mjs new file mode 100644 index 000000000..874771390 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGalaxus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGalaxus = React.forwardRef(function SiGalaxus2({ title = "Galaxus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6.181c3.604 0 6.53 3.111 6.53 6.943 0 3.831-2.926 6.942-6.53 6.942s-6.53-3.111-6.53-6.942c0-3.832 2.926-6.943 6.53-6.943m2.506-3.088c-.101.258-.209.531-.209.733 0 .245.072.458.144.673.043.127.086.254.114.389.024.11-.014.174-.078.283-.04.069-.092.157-.145.288a.738.738 0 0 0-.078-.019 7.36 7.36 0 0 0-4.515.002l-.023.005-.05.013a2.06 2.06 0 0 0-.146-.289c-.062-.107-.099-.169-.076-.277.03-.13.069-.258.114-.384.072-.216.145-.431.145-.676 0-.205-.108-.478-.21-.736-.091-.232-.178-.451-.178-.599 0-.192.384-.462.783-.744.253-.179.513-.362.685-.532.158-.156.315-.357.465-.55.271-.348.524-.673.739-.673h.039c.213.012.463.331.729.672.15.191.305.39.462.545.171.169.43.351.682.53.4.282.785.554.785.745 0 .148-.087.368-.178.601M5.054 9.69a3.45 3.45 0 0 0-1.467-.273c-1.659.036-1.694-3.348-1.384-3.553.257-.169 3.032-.061 4.656 1.293A8.079 8.079 0 0 0 5.054 9.69m1.361 10.137c-.163 1.58-3.578 1.29-3.748.971-.16-.3.184-3.356 2.311-4.417a8.111 8.111 0 0 0 1.661 2.494c-.107.246-.183.557-.224.952m12.607-3.445c2.135 1.068 2.542 4.185 2.382 4.486-.17.318-3.658.538-3.82-1.04a3.189 3.189 0 0 0-.224-.952 8.102 8.102 0 0 0 1.662-2.494m-6.96 4.78c.365 0 .73-.028 1.091-.082-.117 1.287.312 2.387 1.562 2.599a.277.277 0 0 0 .091-.002.323.323 0 0 1 .082-.004c-.53.251-1.112.397-1.728.293-1.43-.243-2.425-1.496-2.421-2.926.429.079.872.122 1.323.122m5.08-14.006c1.623-1.353 4.398-1.461 4.654-1.292.311.205.276 3.59-1.383 3.553a3.457 3.457 0 0 0-1.468.273 8.105 8.105 0 0 0-1.803-2.534" }) + ] + } + ); +}); + +export { SiGalaxus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.cjs new file mode 100644 index 000000000..f24a5fb55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FCEF40"; +const SiGamebanana = React__namespace.forwardRef(function SiGamebanana2({ title = "GameBanana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.249 0v3h1.5V1.5h1.505V3h-1.505V7.5h1.5V4.5h3.002v-1.5h-1.505V0Zm6.002 4.498v1.5h1.5V4.501Zm1.5 1.5v10.503h1.5V5.998Zm0 10.503h-1.5V19.5h1.5zm-1.5 2.998h-1.505v1.5h1.5zm-1.5 1.5h-3.002v1.5h3.001zm-3.002 1.5H6.75V24h9zm-8.999 0V21h-3v1.5zm-3-1.5v-1.497H2.248v1.5zm-1.501-1.497v-2.997H9.75v-1.5H.748v4.497zm7.502-4.497h2.997v-1.5H9.751Zm2.997-1.5h1.5v-1.501h-1.5zm1.5-1.501h1.501V7.506h-1.5z" }) + ] + } + ); +}); + +exports.default = SiGamebanana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.d.ts new file mode 100644 index 000000000..2374c34ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FCEF40"; +declare const SiGamebanana: IconType; +export { SiGamebanana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.mjs new file mode 100644 index 000000000..722b6ae83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamebanana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FCEF40"; +const SiGamebanana = React.forwardRef(function SiGamebanana2({ title = "GameBanana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.249 0v3h1.5V1.5h1.505V3h-1.505V7.5h1.5V4.5h3.002v-1.5h-1.505V0Zm6.002 4.498v1.5h1.5V4.501Zm1.5 1.5v10.503h1.5V5.998Zm0 10.503h-1.5V19.5h1.5zm-1.5 2.998h-1.505v1.5h1.5zm-1.5 1.5h-3.002v1.5h3.001zm-3.002 1.5H6.75V24h9zm-8.999 0V21h-3v1.5zm-3-1.5v-1.497H2.248v1.5zm-1.501-1.497v-2.997H9.75v-1.5H.748v4.497zm7.502-4.497h2.997v-1.5H9.751Zm2.997-1.5h1.5v-1.501h-1.5zm1.5-1.501h1.501V7.506h-1.5z" }) + ] + } + ); +}); + +export { SiGamebanana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.cjs new file mode 100644 index 000000000..b94229913 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60012"; +const SiGamedeveloper = React__namespace.forwardRef(function SiGamedeveloper2({ title = "Game Developer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.955 11.956a.84.84 0 0 0-.837-.796H17.37V1.9c0-.019 0-.037-.002-.055a.84.84 0 0 0-.494-.806A11.89 11.89 0 0 0 12 0a11.89 11.89 0 0 0-8.454 3.515A11.983 11.983 0 0 0 .043 12c0 1.62.316 3.192.94 4.672a11.928 11.928 0 0 0 2.563 3.813 11.96 11.96 0 0 0 3.799 2.572C8.82 23.683 10.386 24 12 24c1.614 0 3.18-.317 4.655-.943a11.905 11.905 0 0 0 3.799-2.572A11.983 11.983 0 0 0 23.957 12c0-.014 0-.03-.002-.044Zm-4.685 7.343a10.24 10.24 0 0 1-7.272 3.022 10.228 10.228 0 0 1-7.273-3.022A10.305 10.305 0 0 1 1.714 12a10.312 10.312 0 0 1 6.281-9.511 10.212 10.212 0 0 1 4.003-.809 10.197 10.197 0 0 1 3.694.688v8.792h-3.765a.84.84 0 0 0 0 1.68h3.729a3.78 3.78 0 0 1-1.205 2.012 3.75 3.75 0 0 1-2.458.92A3.77 3.77 0 0 1 8.235 12a3.768 3.768 0 0 1 3.758-3.772.84.84 0 0 0 0-1.68 5.385 5.385 0 0 0-3.841 1.597A5.429 5.429 0 0 0 6.559 12c0 1.457.564 2.825 1.591 3.855a5.384 5.384 0 0 0 3.841 1.597 5.431 5.431 0 0 0 3.555-1.329 5.46 5.46 0 0 0 1.813-3.281h4.89a10.292 10.292 0 0 1-2.979 6.457Z" }) + ] + } + ); +}); + +exports.default = SiGamedeveloper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.d.ts new file mode 100644 index 000000000..a3fe614aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60012"; +declare const SiGamedeveloper: IconType; +export { SiGamedeveloper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.mjs new file mode 100644 index 000000000..8f859e2c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamedeveloper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60012"; +const SiGamedeveloper = React.forwardRef(function SiGamedeveloper2({ title = "Game Developer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.955 11.956a.84.84 0 0 0-.837-.796H17.37V1.9c0-.019 0-.037-.002-.055a.84.84 0 0 0-.494-.806A11.89 11.89 0 0 0 12 0a11.89 11.89 0 0 0-8.454 3.515A11.983 11.983 0 0 0 .043 12c0 1.62.316 3.192.94 4.672a11.928 11.928 0 0 0 2.563 3.813 11.96 11.96 0 0 0 3.799 2.572C8.82 23.683 10.386 24 12 24c1.614 0 3.18-.317 4.655-.943a11.905 11.905 0 0 0 3.799-2.572A11.983 11.983 0 0 0 23.957 12c0-.014 0-.03-.002-.044Zm-4.685 7.343a10.24 10.24 0 0 1-7.272 3.022 10.228 10.228 0 0 1-7.273-3.022A10.305 10.305 0 0 1 1.714 12a10.312 10.312 0 0 1 6.281-9.511 10.212 10.212 0 0 1 4.003-.809 10.197 10.197 0 0 1 3.694.688v8.792h-3.765a.84.84 0 0 0 0 1.68h3.729a3.78 3.78 0 0 1-1.205 2.012 3.75 3.75 0 0 1-2.458.92A3.77 3.77 0 0 1 8.235 12a3.768 3.768 0 0 1 3.758-3.772.84.84 0 0 0 0-1.68 5.385 5.385 0 0 0-3.841 1.597A5.429 5.429 0 0 0 6.559 12c0 1.457.564 2.825 1.591 3.855a5.384 5.384 0 0 0 3.841 1.597 5.431 5.431 0 0 0 3.555-1.329 5.46 5.46 0 0 0 1.813-3.281h4.89a10.292 10.292 0 0 1-2.979 6.457Z" }) + ] + } + ); +}); + +export { SiGamedeveloper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.cjs new file mode 100644 index 000000000..586db497e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CCFF00"; +const SiGamejolt = React__namespace.forwardRef(function SiGamejolt2({ title = "Game Jolt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.353 0v2.824H4.94v2.823H3.53v2.824H2.118v2.823H.706v2.824h8.47v2.823H7.765v2.824H6.353v2.823h1.412v-1.412h1.411v-1.411h1.412v-1.412H12V16.94h1.412v-1.41h1.412v-1.411h1.411v-1.412h1.412v-1.412h1.412V9.882h1.412V8.471h1.411V7.059h-4.235V5.647h1.412V4.235h1.412V2.824h1.411V1.412h1.412V0zm0 22.588H4.94V24h1.412zM7.765 2.824h9.882v1.411h-1.412v1.412h-1.411V7.06h-1.412v1.41H12v1.411h1.412v1.412H12V9.882h-1.412v1.412H9.176V9.882H7.765v1.412H6.353V9.882H4.94V8.471h1.412V5.647h1.412zM6.353 8.47v1.411h1.412v-1.41zm2.823 1.411h1.412v-1.41H9.176zm5.648 0h1.411v1.412h-1.411Z" }) + ] + } + ); +}); + +exports.default = SiGamejolt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.d.ts new file mode 100644 index 000000000..1cec56a7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CCFF00"; +declare const SiGamejolt: IconType; +export { SiGamejolt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.mjs new file mode 100644 index 000000000..b461c2c7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamejolt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CCFF00"; +const SiGamejolt = React.forwardRef(function SiGamejolt2({ title = "Game Jolt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.353 0v2.824H4.94v2.823H3.53v2.824H2.118v2.823H.706v2.824h8.47v2.823H7.765v2.824H6.353v2.823h1.412v-1.412h1.411v-1.411h1.412v-1.412H12V16.94h1.412v-1.41h1.412v-1.411h1.411v-1.412h1.412v-1.412h1.412V9.882h1.412V8.471h1.411V7.059h-4.235V5.647h1.412V4.235h1.412V2.824h1.411V1.412h1.412V0zm0 22.588H4.94V24h1.412zM7.765 2.824h9.882v1.411h-1.412v1.412h-1.411V7.06h-1.412v1.41H12v1.411h1.412v1.412H12V9.882h-1.412v1.412H9.176V9.882H7.765v1.412H6.353V9.882H4.94V8.471h1.412V5.647h1.412zM6.353 8.47v1.411h1.412v-1.41zm2.823 1.411h1.412v-1.41H9.176zm5.648 0h1.411v1.412h-1.411Z" }) + ] + } + ); +}); + +export { SiGamejolt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.cjs new file mode 100644 index 000000000..a54a40844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGameloft = React__namespace.forwardRef(function SiGameloft2({ title = "Gameloft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.841 18.938c.494.86 1.247 1.262 2.192 1.368 3.394.387 13.519.176 13.534.176 2.402 0 4.33-1.1 4.852-3.372.133-.579.238-2.54.117-4.619-.126-2.16-1.11-3.587-4.048-3.787-3.901-.264-9.42-.14-11.651.09-1.193.124-1.887.939-1.872 2.05.036 2.647.065 3.054.093 3.197 1.185.17 1.17.18 1.206.116.21-.385.596-.642 1.032-.688.503-.066.124-.046 10.598-.205.41 0 .653.185.729.588.086.522.102 1.054.047 1.58-.034.45-.404 1.166-1.08 1.175-.015 0-7.503.035-11.076-.13-1.08-.05-2.263-1.114-2.263-3.094 0-.841 0-3.548.07-4.39A2.235 2.235 0 0 1 5.174 6.96c1.333-.242 13.753-.095 14.542.085 2.241.513 2.43 3.198 2.437 3.255.21 1.543.23 3.283.211 4.855-.046 3.548-1.371 4.327-1.814 4.84-.133.154.039.225.3.415 1.115-.209 2.708-1.427 3.02-4.011.12-.999.213-3.283.02-7.382-.125-2.661-1.243-4.954-4.952-5.376-3.217-.366-10.3-.074-13.482 0C-.097 3.767.008 6.937.006 8.229c-.021 8.174-.014 9.233.836 10.709Z" }) + ] + } + ); +}); + +exports.default = SiGameloft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.d.ts new file mode 100644 index 000000000..8444120cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGameloft: IconType; +export { SiGameloft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.mjs new file mode 100644 index 000000000..c0a32c7b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGameloft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGameloft = React.forwardRef(function SiGameloft2({ title = "Gameloft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.841 18.938c.494.86 1.247 1.262 2.192 1.368 3.394.387 13.519.176 13.534.176 2.402 0 4.33-1.1 4.852-3.372.133-.579.238-2.54.117-4.619-.126-2.16-1.11-3.587-4.048-3.787-3.901-.264-9.42-.14-11.651.09-1.193.124-1.887.939-1.872 2.05.036 2.647.065 3.054.093 3.197 1.185.17 1.17.18 1.206.116.21-.385.596-.642 1.032-.688.503-.066.124-.046 10.598-.205.41 0 .653.185.729.588.086.522.102 1.054.047 1.58-.034.45-.404 1.166-1.08 1.175-.015 0-7.503.035-11.076-.13-1.08-.05-2.263-1.114-2.263-3.094 0-.841 0-3.548.07-4.39A2.235 2.235 0 0 1 5.174 6.96c1.333-.242 13.753-.095 14.542.085 2.241.513 2.43 3.198 2.437 3.255.21 1.543.23 3.283.211 4.855-.046 3.548-1.371 4.327-1.814 4.84-.133.154.039.225.3.415 1.115-.209 2.708-1.427 3.02-4.011.12-.999.213-3.283.02-7.382-.125-2.661-1.243-4.954-4.952-5.376-3.217-.366-10.3-.074-13.482 0C-.097 3.767.008 6.937.006 8.229c-.021 8.174-.014 9.233.836 10.709Z" }) + ] + } + ); +}); + +export { SiGameloft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.cjs new file mode 100644 index 000000000..e7de7986d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGamemaker = React__namespace.forwardRef(function SiGamemaker2({ title = "Gamemaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.012 11.994 12.006 0l11.982 12.006h-6.831l-5.163-5.151-5.151 5.151 5.163 5.151v-5.151h5.151v6.903L12.006 24z" }) + ] + } + ); +}); + +exports.default = SiGamemaker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.d.ts new file mode 100644 index 000000000..9212dcf8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGamemaker: IconType; +export { SiGamemaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.mjs new file mode 100644 index 000000000..0728aa171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamemaker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGamemaker = React.forwardRef(function SiGamemaker2({ title = "Gamemaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.012 11.994 12.006 0l11.982 12.006h-6.831l-5.163-5.151-5.151 5.151 5.163 5.151v-5.151h5.151v6.903L12.006 24z" }) + ] + } + ); +}); + +export { SiGamemaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.cjs new file mode 100644 index 000000000..607434068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGamescience = React__namespace.forwardRef(function SiGamescience2({ title = "Game Science", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.847 19.089c-.555-.137-.853-.305-1.213-.685-.613-.645-.76-1.273-.534-2.287.394-1.77 1.645-3.34 3.321-4.166 1.03-.508 1.64-.657 2.693-.656.759 0 .928.027 1.325.212l.456.213 4.263-2.841c2.344-1.563 4.276-2.828 4.294-2.81s-.177.987-.431 2.155c-.254 1.169-.462 2.176-.462 2.24 0 .063 1.865-1.167 4.144-2.734 4.153-2.856 4.42-3.037 4.265-2.883-.268.266-10.33 8.653-10.353 8.63-.015-.017.174-1.036.419-2.267s.436-2.28.426-2.334c-.011-.053-1.231.964-2.712 2.26l-2.693 2.356-.053.765c-.17 2.428-2.022 4.156-5.168 4.823-.69.146-1.42.15-1.987.009" }) + ] + } + ); +}); + +exports.default = SiGamescience; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.d.ts new file mode 100644 index 000000000..ce278f9b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGamescience: IconType; +export { SiGamescience as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.mjs new file mode 100644 index 000000000..00f94534f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGamescience.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGamescience = React.forwardRef(function SiGamescience2({ title = "Game Science", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.847 19.089c-.555-.137-.853-.305-1.213-.685-.613-.645-.76-1.273-.534-2.287.394-1.77 1.645-3.34 3.321-4.166 1.03-.508 1.64-.657 2.693-.656.759 0 .928.027 1.325.212l.456.213 4.263-2.841c2.344-1.563 4.276-2.828 4.294-2.81s-.177.987-.431 2.155c-.254 1.169-.462 2.176-.462 2.24 0 .063 1.865-1.167 4.144-2.734 4.153-2.856 4.42-3.037 4.265-2.883-.268.266-10.33 8.653-10.353 8.63-.015-.017.174-1.036.419-2.267s.436-2.28.426-2.334c-.011-.053-1.231.964-2.712 2.26l-2.693 2.356-.053.765c-.17 2.428-2.022 4.156-5.168 4.823-.69.146-1.42.15-1.987.009" }) + ] + } + ); +}); + +export { SiGamescience as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.cjs new file mode 100644 index 000000000..3996a77e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6640FE"; +const SiGandi = React__namespace.forwardRef(function SiGandi2({ title = "Gandi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.72 5.908a1.496 1.496 0 1 1 2.442 1.729c-.871 1.23-1.906 2.176-3.082 2.82-.661.436-1.414.844-2.209 1.274-.689.373-1.401.758-2.065 1.171-1.565.974-2.46 1.87-2.814 2.82-.473 1.266-.26 2.322.002 2.985a3.8 3.8 0 0 0 1.79 2.006c.808.413 1.931.39 2.93-.06.924-.415 1.542-1.11 1.612-1.813.07-.71-.24-1.114-.553-1.255-.368-.165-.788.006-1.152.467a1.495 1.495 0 1 1-2.349-1.854c1.227-1.554 3.082-2.08 4.726-1.342 1.588.713 2.493 2.392 2.305 4.28-.179 1.792-1.435 3.38-3.36 4.246-1.836.826-3.899.824-5.52-.005a6.8 6.8 0 0 1-3.212-3.572c-.642-1.625-.65-3.446-.022-5.13.605-1.62 1.869-2.803 3.037-3.647a8 8 0 0 1-.828-.33c-1.376-.638-2.573-1.668-3.56-3.061A1.496 1.496 0 0 1 7.28 5.908c.69.976 1.467 1.654 2.376 2.075.69.319 1.457.487 2.344.514.888-.027 1.656-.195 2.345-.514q.098-.045.194-.096.106-.053.208-.112c.738-.424 1.387-1.038 1.972-1.867M11.2 4.17c.191.192.447.297.717.297.271 0 .526-.105.718-.297s.297-.446.297-.717a1 1 0 0 0-.298-.718 1 1 0 0 0-.717-.297c-.27 0-.526.105-.717.297a1 1 0 0 0-.297.718c0 .27.105.525.297.717M9.476 1.011A3.43 3.43 0 0 1 11.917 0c.922 0 1.79.359 2.442 1.01a3.43 3.43 0 0 1 1.01 2.443c0 .922-.358 1.789-1.01 2.44a3.43 3.43 0 0 1-2.442 1.012 3.43 3.43 0 0 1-2.44-1.011 3.43 3.43 0 0 1-1.013-2.441c0-.923.36-1.79 1.012-2.442" }) + ] + } + ); +}); + +exports.default = SiGandi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.d.ts new file mode 100644 index 000000000..5eaaff430 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6640FE"; +declare const SiGandi: IconType; +export { SiGandi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.mjs new file mode 100644 index 000000000..94f22126a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGandi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6640FE"; +const SiGandi = React.forwardRef(function SiGandi2({ title = "Gandi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.72 5.908a1.496 1.496 0 1 1 2.442 1.729c-.871 1.23-1.906 2.176-3.082 2.82-.661.436-1.414.844-2.209 1.274-.689.373-1.401.758-2.065 1.171-1.565.974-2.46 1.87-2.814 2.82-.473 1.266-.26 2.322.002 2.985a3.8 3.8 0 0 0 1.79 2.006c.808.413 1.931.39 2.93-.06.924-.415 1.542-1.11 1.612-1.813.07-.71-.24-1.114-.553-1.255-.368-.165-.788.006-1.152.467a1.495 1.495 0 1 1-2.349-1.854c1.227-1.554 3.082-2.08 4.726-1.342 1.588.713 2.493 2.392 2.305 4.28-.179 1.792-1.435 3.38-3.36 4.246-1.836.826-3.899.824-5.52-.005a6.8 6.8 0 0 1-3.212-3.572c-.642-1.625-.65-3.446-.022-5.13.605-1.62 1.869-2.803 3.037-3.647a8 8 0 0 1-.828-.33c-1.376-.638-2.573-1.668-3.56-3.061A1.496 1.496 0 0 1 7.28 5.908c.69.976 1.467 1.654 2.376 2.075.69.319 1.457.487 2.344.514.888-.027 1.656-.195 2.345-.514q.098-.045.194-.096.106-.053.208-.112c.738-.424 1.387-1.038 1.972-1.867M11.2 4.17c.191.192.447.297.717.297.271 0 .526-.105.718-.297s.297-.446.297-.717a1 1 0 0 0-.298-.718 1 1 0 0 0-.717-.297c-.27 0-.526.105-.717.297a1 1 0 0 0-.297.718c0 .27.105.525.297.717M9.476 1.011A3.43 3.43 0 0 1 11.917 0c.922 0 1.79.359 2.442 1.01a3.43 3.43 0 0 1 1.01 2.443c0 .922-.358 1.789-1.01 2.44a3.43 3.43 0 0 1-2.442 1.012 3.43 3.43 0 0 1-2.44-1.011 3.43 3.43 0 0 1-1.013-2.441c0-.923.36-1.79 1.012-2.442" }) + ] + } + ); +}); + +export { SiGandi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.cjs new file mode 100644 index 000000000..673ce8cd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGarmin = React__namespace.forwardRef(function SiGarmin2({ title = "Garmin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.265 12.024a.289.289 0 0 0-.236-.146h-.182a.289.289 0 0 0-.234.146l-1.449 3.025c-.041.079.004.138.094.138h.335c.132 0 .193-.061.228-.134.037-.073.116-.234.13-.266.02-.045.083-.071.175-.071h1.559c.089 0 .148.016.175.071.018.035.098.179.136.256a.24.24 0 0 0 .234.142h.486c.089 0 .13-.069.098-.132-.034-.061-1.549-3.029-1.549-3.029zm-.914 2.224c-.089 0-.132-.067-.094-.148l.571-1.222c.039-.081.1-.081.136 0l.555 1.222c.037.081-.006.148-.096.148H5.351zm12.105-2.201v3.001c0 .083.073.138.163.138h.396c.089 0 .163-.057.163-.146v-2.998c0-.089-.059-.163-.148-.163h-.411c-.09-.001-.163.054-.163.168zm-6.631 1.88c-.051-.073-.022-.154.063-.181 0 0 .342-.102.506-.25.165-.146.246-.36.246-.636a1 1 0 0 0-.096-.457.787.787 0 0 0-.27-.303 1.276 1.276 0 0 0-.423-.171c-.165-.035-.386-.047-.386-.047a8.81 8.81 0 0 0-.325-.008H8.495a.164.164 0 0 0-.163.163v2.998c0 .089.073.146.163.146h.388c.089 0 .163-.057.163-.146v-1.193s.002 0 .002-.002l.738-.002c.089 0 .205.061.258.134l.766 1.077c.071.096.138.132.228.132h.508c.089 0 .104-.085.073-.128-.032-.038-.794-1.126-.794-1.126zm-.311-.61a1.57 1.57 0 0 1-.213.028 8.807 8.807 0 0 1-.325.006h-.763a.164.164 0 0 1-.163-.163v-.608c0-.089.073-.163.163-.163h.762c.089 0 .236.004.325.006 0 0 .114.004.213.028a.629.629 0 0 1 .24.098.358.358 0 0 1 .126.148.473.473 0 0 1 0 .374.352.352 0 0 1-.126.148.617.617 0 0 1-.239.098zm11.803-1.439c-.089 0-.163.059-.163.146v1.919c0 .089-.051.11-.114.047l-1.921-1.992a.376.376 0 0 0-.276-.118h-.362c-.114 0-.163.061-.163.122v3.068c0 .061.059.12.148.12h.362c.089 0 .152-.049.152-.132l.002-2.021c0-.089.051-.11.114-.045l2.004 2.082a.36.36 0 0 0 .279.116h.272a.164.164 0 0 0 .163-.163v-2.986a.164.164 0 0 0-.163-.163h-.334zm-7.835 1.87c-.043.079-.116.077-.159 0l-.939-1.724a.262.262 0 0 0-.236-.146h-.51a.164.164 0 0 0-.163.163v2.996c0 .089.059.15.163.15h.317c.089 0 .154-.057.154-.142 0-.041.002-2.179.004-2.179.004 0 1.173 2.177 1.173 2.177a.105.105 0 0 0 .189 0s1.179-2.173 1.181-2.173c.004 0 .002 2.11.002 2.173 0 .087.069.142.159.142h.364c.089 0 .163-.045.163-.163V12.04a.164.164 0 0 0-.163-.163h-.488a.265.265 0 0 0-.244.142l-.967 1.729zM0 13.529c0 1.616 1.653 1.697 1.984 1.697 1.098 0 1.561-.297 1.58-.309a.29.29 0 0 0 .152-.264v-1.116a.186.186 0 0 0-.187-.187H2.151c-.104 0-.171.083-.171.187v.116c0 .104.067.187.171.187h.797a.14.14 0 0 1 .14.14v.52c-.157.065-.874.274-1.451.136-.836-.199-.901-.89-.901-1.096 0-.173.053-1.043 1.079-1.13.831-.071 1.378.264 1.384.268.098.051.199.014.254-.089l.104-.209c.043-.085.028-.175-.077-.246-.006-.004-.59-.319-1.494-.319C.055 11.813 0 13.354 0 13.529zm22.134-2.478h-2.165c-.079 0-.148-.039-.187-.108s-.039-.146 0-.215l1.084-1.874a.21.21 0 0 1 .187-.108.21.21 0 0 1 .187.108l1.084 1.874a.203.203 0 0 1 0 .215.22.22 0 0 1-.19.108zm1.488 3.447c.207 0 .378.169.378.378a.379.379 0 0 1-.378.378.379.379 0 0 1-.378-.378.38.38 0 0 1 .378-.378zm.002.7c.173 0 .305-.14.305-.321s-.13-.321-.305-.321-.307.14-.307.321c0 .18.13.321.307.321zm-.146-.543h.169c.102 0 .152.041.152.124 0 .071-.045.122-.114.122l.126.195h-.077l-.124-.195h-.061v.195h-.073v-.441h.002zm.073.189h.085c.055 0 .091-.012.091-.069 0-.051-.045-.065-.091-.065h-.085v.134z" }) + ] + } + ); +}); + +exports.default = SiGarmin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.d.ts new file mode 100644 index 000000000..b69068b61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGarmin: IconType; +export { SiGarmin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.mjs new file mode 100644 index 000000000..e86d76591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGarmin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGarmin = React.forwardRef(function SiGarmin2({ title = "Garmin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.265 12.024a.289.289 0 0 0-.236-.146h-.182a.289.289 0 0 0-.234.146l-1.449 3.025c-.041.079.004.138.094.138h.335c.132 0 .193-.061.228-.134.037-.073.116-.234.13-.266.02-.045.083-.071.175-.071h1.559c.089 0 .148.016.175.071.018.035.098.179.136.256a.24.24 0 0 0 .234.142h.486c.089 0 .13-.069.098-.132-.034-.061-1.549-3.029-1.549-3.029zm-.914 2.224c-.089 0-.132-.067-.094-.148l.571-1.222c.039-.081.1-.081.136 0l.555 1.222c.037.081-.006.148-.096.148H5.351zm12.105-2.201v3.001c0 .083.073.138.163.138h.396c.089 0 .163-.057.163-.146v-2.998c0-.089-.059-.163-.148-.163h-.411c-.09-.001-.163.054-.163.168zm-6.631 1.88c-.051-.073-.022-.154.063-.181 0 0 .342-.102.506-.25.165-.146.246-.36.246-.636a1 1 0 0 0-.096-.457.787.787 0 0 0-.27-.303 1.276 1.276 0 0 0-.423-.171c-.165-.035-.386-.047-.386-.047a8.81 8.81 0 0 0-.325-.008H8.495a.164.164 0 0 0-.163.163v2.998c0 .089.073.146.163.146h.388c.089 0 .163-.057.163-.146v-1.193s.002 0 .002-.002l.738-.002c.089 0 .205.061.258.134l.766 1.077c.071.096.138.132.228.132h.508c.089 0 .104-.085.073-.128-.032-.038-.794-1.126-.794-1.126zm-.311-.61a1.57 1.57 0 0 1-.213.028 8.807 8.807 0 0 1-.325.006h-.763a.164.164 0 0 1-.163-.163v-.608c0-.089.073-.163.163-.163h.762c.089 0 .236.004.325.006 0 0 .114.004.213.028a.629.629 0 0 1 .24.098.358.358 0 0 1 .126.148.473.473 0 0 1 0 .374.352.352 0 0 1-.126.148.617.617 0 0 1-.239.098zm11.803-1.439c-.089 0-.163.059-.163.146v1.919c0 .089-.051.11-.114.047l-1.921-1.992a.376.376 0 0 0-.276-.118h-.362c-.114 0-.163.061-.163.122v3.068c0 .061.059.12.148.12h.362c.089 0 .152-.049.152-.132l.002-2.021c0-.089.051-.11.114-.045l2.004 2.082a.36.36 0 0 0 .279.116h.272a.164.164 0 0 0 .163-.163v-2.986a.164.164 0 0 0-.163-.163h-.334zm-7.835 1.87c-.043.079-.116.077-.159 0l-.939-1.724a.262.262 0 0 0-.236-.146h-.51a.164.164 0 0 0-.163.163v2.996c0 .089.059.15.163.15h.317c.089 0 .154-.057.154-.142 0-.041.002-2.179.004-2.179.004 0 1.173 2.177 1.173 2.177a.105.105 0 0 0 .189 0s1.179-2.173 1.181-2.173c.004 0 .002 2.11.002 2.173 0 .087.069.142.159.142h.364c.089 0 .163-.045.163-.163V12.04a.164.164 0 0 0-.163-.163h-.488a.265.265 0 0 0-.244.142l-.967 1.729zM0 13.529c0 1.616 1.653 1.697 1.984 1.697 1.098 0 1.561-.297 1.58-.309a.29.29 0 0 0 .152-.264v-1.116a.186.186 0 0 0-.187-.187H2.151c-.104 0-.171.083-.171.187v.116c0 .104.067.187.171.187h.797a.14.14 0 0 1 .14.14v.52c-.157.065-.874.274-1.451.136-.836-.199-.901-.89-.901-1.096 0-.173.053-1.043 1.079-1.13.831-.071 1.378.264 1.384.268.098.051.199.014.254-.089l.104-.209c.043-.085.028-.175-.077-.246-.006-.004-.59-.319-1.494-.319C.055 11.813 0 13.354 0 13.529zm22.134-2.478h-2.165c-.079 0-.148-.039-.187-.108s-.039-.146 0-.215l1.084-1.874a.21.21 0 0 1 .187-.108.21.21 0 0 1 .187.108l1.084 1.874a.203.203 0 0 1 0 .215.22.22 0 0 1-.19.108zm1.488 3.447c.207 0 .378.169.378.378a.379.379 0 0 1-.378.378.379.379 0 0 1-.378-.378.38.38 0 0 1 .378-.378zm.002.7c.173 0 .305-.14.305-.321s-.13-.321-.305-.321-.307.14-.307.321c0 .18.13.321.307.321zm-.146-.543h.169c.102 0 .152.041.152.124 0 .071-.045.122-.114.122l.126.195h-.077l-.124-.195h-.061v.195h-.073v-.441h.002zm.073.189h.085c.055 0 .091-.012.091-.069 0-.051-.045-.065-.091-.065h-.085v.134z" }) + ] + } + ); +}); + +export { SiGarmin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.cjs new file mode 100644 index 000000000..22dd185eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8839EF"; +const SiGarudalinux = React__namespace.forwardRef(function SiGarudalinux2({ title = "Garuda Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.24 3.179C6.82 6.579 3.366 10.064 0 13.465c2.4 2.406 4.889 4.898 7.319 7.332l7.504.024 6.334-6.316-13.754-.012-1.525 1.54 11.512.024-3.198 3.197H7.956L2.172 13.47l8.74-8.74h6.284l4.815 4.815-7.501-.01v-2.12l-3.68 3.68c3.873.004 7.746.003 11.62 0v2.102l1.55-1.55-.003-2.306-6.16-6.159z" }) + ] + } + ); +}); + +exports.default = SiGarudalinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.d.ts new file mode 100644 index 000000000..f0ecad615 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8839EF"; +declare const SiGarudalinux: IconType; +export { SiGarudalinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.mjs new file mode 100644 index 000000000..b83ecafcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGarudalinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8839EF"; +const SiGarudalinux = React.forwardRef(function SiGarudalinux2({ title = "Garuda Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.24 3.179C6.82 6.579 3.366 10.064 0 13.465c2.4 2.406 4.889 4.898 7.319 7.332l7.504.024 6.334-6.316-13.754-.012-1.525 1.54 11.512.024-3.198 3.197H7.956L2.172 13.47l8.74-8.74h6.284l4.815 4.815-7.501-.01v-2.12l-3.68 3.68c3.873.004 7.746.003 11.62 0v2.102l1.55-1.55-.003-2.306-6.16-6.159z" }) + ] + } + ); +}); + +export { SiGarudalinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.cjs new file mode 100644 index 000000000..826f3450a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9E2A"; +const SiGatling = React__namespace.forwardRef(function SiGatling2({ title = "Gatling", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.1361 17.306c.6633-.393 1.2406-.9211 1.6827-1.5598h.7738a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7124h-.0614c.1474-.4545.2457-.9212.2702-1.4125h.7615a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7124h-.786c-.0492-.4913-.172-.9703-.344-1.4125h.1474a.7129.7129 0 0 0 .7124-.7123.7129.7129 0 0 0-.7124-.7124h-.958c-.9826-1.2283-2.5302-2.0512-4.262-2.0512h-1.216c-.7615 0-1.4984.1597-2.1617.4545H14.26c2.9478 0 5.3674 2.4196 5.3674 5.3674 0 2.7267-2.0511 4.9867-4.6919 5.3306-.1597.0123-.3193.0246-.4913.0246H8.9171a6.5941 6.5941 0 0 0 2.2477-2.0266c.0368.0122.086.0122.1228.0122h4.8148a.7129.7129 0 0 0 .7123-.7123.7129.7129 0 0 0-.7123-.7124H11.914a6.8244 6.8244 0 0 0 .3685-1.4125h5.5148a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7124H12.344c-.0368-.4913-.1351-.958-.2702-1.4125h4.0532a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7123h-4.6796c-1.1423-1.9284-3.2549-3.2303-5.65-3.2303h-.4667C3.1443 5.4289 1.1914 6.522 0 8.18a5.8463 5.8463 0 0 1 4.434-2.0266c2.5302 0 4.6919 1.609 5.5025 3.8567H6.9642C6.3746 9.261 5.4534 8.782 4.434 8.782c-1.781.0246-3.218 1.4616-3.218 3.2426s1.4493 3.2303 3.2303 3.2303c1.0563 0 1.9897-.5036 2.5793-1.2897H3.955c0-1.4248 1.1545-2.567 2.567-2.567h3.7462c.0245.2088.0368.4176.0368.6264 0 3.2303-2.6284 5.8587-5.8587 5.8587-1.7073 0-3.2426-.737-4.3235-1.9038 1.2037 1.5722 3.0952 2.5916 5.22 2.5916h9.6296c4.9867 0 9.0276-.2947 9.0276-.6755 0-.2457-1.9775-.479-4.8639-.5896Z" }) + ] + } + ); +}); + +exports.default = SiGatling; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.d.ts new file mode 100644 index 000000000..82a2df868 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9E2A"; +declare const SiGatling: IconType; +export { SiGatling as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.mjs new file mode 100644 index 000000000..9810ff5e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGatling.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9E2A"; +const SiGatling = React.forwardRef(function SiGatling2({ title = "Gatling", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.1361 17.306c.6633-.393 1.2406-.9211 1.6827-1.5598h.7738a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7124h-.0614c.1474-.4545.2457-.9212.2702-1.4125h.7615a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7124h-.786c-.0492-.4913-.172-.9703-.344-1.4125h.1474a.7129.7129 0 0 0 .7124-.7123.7129.7129 0 0 0-.7124-.7124h-.958c-.9826-1.2283-2.5302-2.0512-4.262-2.0512h-1.216c-.7615 0-1.4984.1597-2.1617.4545H14.26c2.9478 0 5.3674 2.4196 5.3674 5.3674 0 2.7267-2.0511 4.9867-4.6919 5.3306-.1597.0123-.3193.0246-.4913.0246H8.9171a6.5941 6.5941 0 0 0 2.2477-2.0266c.0368.0122.086.0122.1228.0122h4.8148a.7129.7129 0 0 0 .7123-.7123.7129.7129 0 0 0-.7123-.7124H11.914a6.8244 6.8244 0 0 0 .3685-1.4125h5.5148a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7124H12.344c-.0368-.4913-.1351-.958-.2702-1.4125h4.0532a.7129.7129 0 0 0 .7124-.7124.7129.7129 0 0 0-.7124-.7123h-4.6796c-1.1423-1.9284-3.2549-3.2303-5.65-3.2303h-.4667C3.1443 5.4289 1.1914 6.522 0 8.18a5.8463 5.8463 0 0 1 4.434-2.0266c2.5302 0 4.6919 1.609 5.5025 3.8567H6.9642C6.3746 9.261 5.4534 8.782 4.434 8.782c-1.781.0246-3.218 1.4616-3.218 3.2426s1.4493 3.2303 3.2303 3.2303c1.0563 0 1.9897-.5036 2.5793-1.2897H3.955c0-1.4248 1.1545-2.567 2.567-2.567h3.7462c.0245.2088.0368.4176.0368.6264 0 3.2303-2.6284 5.8587-5.8587 5.8587-1.7073 0-3.2426-.737-4.3235-1.9038 1.2037 1.5722 3.0952 2.5916 5.22 2.5916h9.6296c4.9867 0 9.0276-.2947 9.0276-.6755 0-.2457-1.9775-.479-4.8639-.5896Z" }) + ] + } + ); +}); + +export { SiGatling as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.cjs new file mode 100644 index 000000000..7b9286e06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#663399"; +const SiGatsby = React__namespace.forwardRef(function SiGatsby2({ title = "Gatsby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm0 2.571c3.171 0 5.915 1.543 7.629 3.858l-1.286 1.115C16.886 5.572 14.571 4.286 12 4.286c-3.343 0-6.171 2.143-7.286 5.143l9.857 9.857c2.486-.857 4.373-3 4.973-5.572h-4.115V12h6c0 4.457-3.172 8.228-7.372 9.17L2.83 9.944C3.772 5.743 7.543 2.57 12 2.57zm-9.429 9.6l9.344 9.258c-2.4-.086-4.801-.943-6.601-2.743-1.8-1.8-2.743-4.201-2.743-6.515z" }) + ] + } + ); +}); + +exports.default = SiGatsby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.d.ts new file mode 100644 index 000000000..2e476d17c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#663399"; +declare const SiGatsby: IconType; +export { SiGatsby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.mjs new file mode 100644 index 000000000..9fe9bc7a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGatsby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#663399"; +const SiGatsby = React.forwardRef(function SiGatsby2({ title = "Gatsby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm0 2.571c3.171 0 5.915 1.543 7.629 3.858l-1.286 1.115C16.886 5.572 14.571 4.286 12 4.286c-3.343 0-6.171 2.143-7.286 5.143l9.857 9.857c2.486-.857 4.373-3 4.973-5.572h-4.115V12h6c0 4.457-3.172 8.228-7.372 9.17L2.83 9.944C3.772 5.743 7.543 2.57 12 2.57zm-9.429 9.6l9.344 9.258c-2.4-.086-4.801-.943-6.601-2.743-1.8-1.8-2.743-4.201-2.743-6.515z" }) + ] + } + ); +}); + +export { SiGatsby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.cjs new file mode 100644 index 000000000..09743380c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4C00"; +const SiGcore = React__namespace.forwardRef(function SiGcore2({ title = "Gcore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.2852 12c0 6.627-5.3608 12-11.973 12-2.6711 0-5.1385-.877-7.1298-2.3583 1.1668.6558 3.0299 1.4182 5.392 1.4187 2.7791 0 5.4545-1.0542 7.4915-2.9458a11.06 11.06 0 0 0 3.5004-7.2625 8.3 8.3 0 0 0 .05-.7875c.0099-.4174-.0662-1.0793-.075-1.2959l-.0103.0104a24 24 0 0 0-.1018-.8145h-8.6868c-.7485 1.398-1.486 2.8019-2.2262 4.2042h6.5644a6.91 6.91 0 0 1-1.0747 2.0187 6.82 6.82 0 0 1-2.403 1.9813 6.796 6.796 0 0 1-3.0306.7082c-.8044 0-1.6026-.1458-2.3572-.425a6.845 6.845 0 0 1-3.2635-2.5145A6.893 6.893 0 0 1 1.7148 12a6.88 6.88 0 0 1 .5218-2.6312 6.92 6.92 0 0 1 1.4862-2.2313 6.82 6.82 0 0 1 2.2263-1.4896c.8335-.3437 1.7252-.5229 2.6253-.5229a6.82 6.82 0 0 1 4.043 1.3208c.6626-1.2376 1.317-2.4795 1.9726-3.7208C11.1651.4884 6.7805.3489 3.2156 2.3292 5.205.8667 7.6577 0 10.3122 0c6.6122 0 11.973 5.373 11.973 12" }) + ] + } + ); +}); + +exports.default = SiGcore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.d.ts new file mode 100644 index 000000000..a197b5348 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4C00"; +declare const SiGcore: IconType; +export { SiGcore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.mjs new file mode 100644 index 000000000..9c662f4b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGcore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4C00"; +const SiGcore = React.forwardRef(function SiGcore2({ title = "Gcore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.2852 12c0 6.627-5.3608 12-11.973 12-2.6711 0-5.1385-.877-7.1298-2.3583 1.1668.6558 3.0299 1.4182 5.392 1.4187 2.7791 0 5.4545-1.0542 7.4915-2.9458a11.06 11.06 0 0 0 3.5004-7.2625 8.3 8.3 0 0 0 .05-.7875c.0099-.4174-.0662-1.0793-.075-1.2959l-.0103.0104a24 24 0 0 0-.1018-.8145h-8.6868c-.7485 1.398-1.486 2.8019-2.2262 4.2042h6.5644a6.91 6.91 0 0 1-1.0747 2.0187 6.82 6.82 0 0 1-2.403 1.9813 6.796 6.796 0 0 1-3.0306.7082c-.8044 0-1.6026-.1458-2.3572-.425a6.845 6.845 0 0 1-3.2635-2.5145A6.893 6.893 0 0 1 1.7148 12a6.88 6.88 0 0 1 .5218-2.6312 6.92 6.92 0 0 1 1.4862-2.2313 6.82 6.82 0 0 1 2.2263-1.4896c.8335-.3437 1.7252-.5229 2.6253-.5229a6.82 6.82 0 0 1 4.043 1.3208c.6626-1.2376 1.317-2.4795 1.9726-3.7208C11.1651.4884 6.7805.3489 3.2156 2.3292 5.205.8667 7.6577 0 10.3122 0c6.6122 0 11.973 5.373 11.973 12" }) + ] + } + ); +}); + +export { SiGcore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.cjs new file mode 100644 index 000000000..cdb430265 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5CAE58"; +const SiGdal = React__namespace.forwardRef(function SiGdal2({ title = "GDAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.32642 13.62652q.0173-.01611.03381-.0332l-.03424.03357ZM14.09705 13.85192c-.00366-.01709-.00659-.032-.008-.04266l.00476.04688ZM13.804 9.19l-.003.001h.025l-.022-.001M15.153 19.24066l.18909.70178a1.2597 1.2597 0 0 0-.01013-.49133.54159.54159 0 0 0-.17896-.21045ZM13.042 19.65h.493l-.246-1.015-.247 1.015M9.87977 21.60888a3.79211 3.79211 0 0 0 .71356-2.41742 3.147 3.147 0 0 0-1.02142-2.71429 2.65021 2.65021 0 0 0-1.59338-.44354H6.23994v6.47876h1.73858a2.30043 2.30043 0 0 0 1.90125-.90351Zm-.45984-1.99127a3.05194 3.05194 0 0 1-.39929 1.14139 1.31157 1.31157 0 0 1-1.12762.56927h-.54761v-4.10696h.54071a1.34787 1.34787 0 0 1 1.138.53156 2.34662 2.34662 0 0 1 .40558 1.45685 2.60466 2.60466 0 0 1-.00977.40789ZM16.03614 22.519v.29352h-.30042c.01422.01556.02765.03088.04285.04651a7.85132 7.85132 0 0 1-.8775.119c.05566-.06921.06915-.13-.10828-.13843.004-.01056.01245-.01709.01715-.027h-.52716l-.05554-.22943-.29358-1.21136H12.661l-.29047 1.21069-.05518.2301H10.4867l.10474-.37988 1.78656-6.47881.06079-.2204h.35962a.46174.46174 0 0 0-.111-.094c-.166-.07837-.25952.03418-.43475.01135a2.56431 2.56431 0 0 1-.51556-.24365.93778.93778 0 0 1-.56879-.54657 1.99741 1.99741 0 0 0-.40472-.559c-.16864-.20514-.22144-.38-.48138-.43457-.03052-.00659.06366.21533.07336.23315a5.19238 5.19238 0 0 0 .34454.4826c.1651.23267.09467.27637-.07318.05133-.19214-.25739-.41492-.51337-.58142-.786-.063-.103-.0509-.16962-.15472-.2674-.1004-.09454-.23169-.14056-.33276-.23047a1.17538 1.17538 0 0 1-.38824-.839 11.4318 11.4318 0 0 0-2.14563 2.12183.43649.43649 0 0 1-.35748.18665.45038.45038 0 0 1-.16614-.03253.43647.43647 0 0 1-.26447-.474l.5791-3.56317a8.43654 8.43654 0 0 0-.8754 7.30994v-2.32655h2.03875c1.32983 0 2.915.59991 2.915 3.458a4.09848 4.09848 0 0 1-.77826 2.60345 2.65178 2.65178 0 0 1-.7995.67523 8.75084 8.75084 0 0 0 9.3446.34235H16.115ZM5.72462 6.43475a.33025.33025 0 0 0 .10327.23016c.01727.01654.04523.01416.06573.02667a.316.316 0 0 0 .16388.06642l.006-.00171.00293.0011a.33287.33287 0 0 0 .16479-.04932l.70483-.43481.815.589-1.21869 7.49919a.13764.13764 0 0 0 .08337.14868.14377.14377 0 0 0 .051.00952.13623.13623 0 0 0 .11145-.05841 13.86614 13.86614 0 0 1 8.12085-4.905.13707.13707 0 0 0 .10828-.12317.13567.13567 0 0 0-.08917-.13745L7.95673 6.7409l-.16143-.99756.6864-.42334a.36654.36654 0 0 0-.0167-.57538l-.96722-.52148a.69958.69958 0 0 0-.09662-.27826l-.31372-.50854.28864-.178.2887.84869 3.32935-2.22754v-.00004l-.16229-.477L10.35481 0l-.00006.00006V0L9.402.63745 7.02546 2.22753l.27686.8139-.33209.20483-.42126-.683a.71267.71267 0 0 0-.97839-.23193l-.73474.45325A.71241.71241 0 0 0 4.604 3.763l.42133.683-.3006.1853-.29315-.86194-.00006.00006v-.00008L2.76685 4.88311 1.10218 5.99688l.63928 1.87946 1.99475-1.3346 1.3346-.89294-.2724-.8006.172-.10614.172-.106.31372.50854a.69144.69144 0 0 0 .23749.22571Zm2.2724.61017 6.39117 2.3457a14.42212 14.42212 0 0 0-7.50433 4.5036ZM7.88612 17.52142h-.2406v3.497l-.00037-.00042v.01h.00037v.00006H7.893a1.00689 1.00689 0 0 0 .884-.44446 2.33078 2.33078 0 0 0 .35248-1.3739 2.0705 2.0705 0 0 0-.34418-1.2749 1.05461 1.05461 0 0 0-.89918-.41338ZM15.06068 9.04589c.0116-.08856-.04041-.1001-.16583-.18481a1.52 1.52 0 0 0-.46069-.28589c-.20569-.04053-.286.01477-.32788.10284l.91339.33521c.01726.00623.02495.02447.04101.03265ZM11.05128 8.92217a3.59931 3.59931 0 0 1 .6134.00812c.08173.00989.35529.10052.42944.05914a.25037.25037 0 0 0 .05035-.10254l-.42877-.15747a.57211.57211 0 0 1-.38153.0545c-.21741-.02942-.44623-.10071-.63464.08734.10413.06174.38965.30201.35175.05091ZM9.09272 11.48962a.857.857 0 0 0-.05988-.073c-.02881-.04517-.10114-.15674-.10529-.16388a1.38356 1.38356 0 0 0-.27789-.37915c-.0752-.064-.2699-.21344-.45312-.33862a7.78108 7.78108 0 0 1 2.7077-2.10339l-1.244-.45648a8.76509 8.76509 0 0 0-1.73781 1.39971l-.58362 3.591a14.66961 14.66961 0 0 1 1.75391-1.47619ZM14.26783 6.65765a8.798 8.798 0 0 0-3.57068.76929l1.75214.643a.59106.59106 0 0 1 .22546-.24921h-.02765a7.81472 7.81472 0 0 1 2.67945-.09573c-.11993.062-.03131.10406-.11859.16748a3.28251 3.28251 0 0 1-.66132.29852c.25232-.00067.86292.23334.98047-.11578l-.24408-.037a2.15371 2.15371 0 0 1 .49963-.23889 7.80564 7.80564 0 0 1 4.12256 2.24591c-.00781-.00018-.0155-.00043-.02307-.00018a1.24316 1.24316 0 0 0-.757.17523.96716.96716 0 0 1-.28906.18988c-.11151.03094-.232.00378-.34265.04083-.39935.13367-.336.9776-.86224.8501-.24719-.05988-.42139-.348-.54584-.53619-.10956-.16559-.30908-.30243-.17432-.50964-.06152.0155-.12708-.0022-.18756.00916.08423-.18256.367-.16663.414-.26.11719-.23383-.32251-.2583-.447-.29071.15-.15778.226.0531.37415.01727.14233-.03455-.0752-.21948-.16046-.2403-.0307-.00745-.53192.1366-.24176-.11951q-.53723-.33774-1.07428-.67572c-.06036.25067.47662.393.652.48126-.02716.10352-.19037.25421-.31525.21008-.11768-.04163-.06995-.234-.24762-.21466-.12677.291.26825.20593.305.38428.04169.20306-.14935.117-.22284.11346-.01752-.00092-.15448-.14069-.16187-.03485-.00885.12567.21844.07672.23444.20367a.90278.90278 0 0 1-.59637-.21387.416.416 0 0 1-.27655.22565l-.023.00555a1.35584 1.35584 0 0 0 .1947.0553c.1488.01794.2334.22137.31451.30469.05383.05524.15027.17249.24438.15985.14941-.02026.08685-.14911.17352-.2085.23248-.15912.29376.057.38641.27307a.93987.93987 0 0 0 .32483.40857c.072.06067.38782.277.358.41028-.02026.08978-.381.22607-.47742.25616-.35254.11017-1.014-.18036-1.085.37128.13678-.05023.526-.36383.64258-.21521.05322.06744-.04218.16565-.01978.2326.06671.20081.22357.1308.38818.09839a.27866.27866 0 0 1-.03485.01831c.22491-.11407.20154-.09027.30481-.27521a1.31278 1.31278 0 0 1 .13123-.24988c.16351-.14844.1886-.04626.29.06824.02649.03021.27686.38586.18781.368a1.0612 1.0612 0 0 0-.8125.10718 2.21242 2.21242 0 0 1-.437.27338c-.03973.01428-.33484.04187-.29987-.00769.05084-.07239.22607-.1203.29517-.19849-.19159-.07782-.35144.094-.502.19458-.15973.07458-.19684.21356-.33295.33545-.05939.053-.17163.06213-.23.13208-.05652.06781-.06354.17444-.11719.239-.0376.045-.13391.01782-.17322.08569-.05115.08881.04675.17126.02533.23523-.03925.116-.26288.21442-.34912.29822a1.31213 1.31213 0 0 0-.22937.2254 2.45806 2.45806 0 0 1 .10138.5744c-.08978.26367-.26428-.14343-.335-.24854-.2431-.36133-.729-.11951-1.061-.08954a.72775.72775 0 0 0-.57843 1.023.51569.51569 0 0 0 .57965.24451c.21594-.04364.2807-.34149.48395-.34692.37354-.00983.00824.36108-.024.49725-.02991.126.04651.1377.178.169.09717.02289.23474-.041.319.01367a.09664.09664 0 0 1 .02887.04474h.4184l.05981.22211.11975.44446a.36922.36922 0 0 1 .06036.00073c.32281.08124.1687-.02423.45221-.19312.19135-.11377.22272.02136.35352.02191.08905.00037.14557-.12622.29437-.08942.12134.03027.16919.12262.31409.14386.05817.00848.1181-.02008.17389-.0155v-.535h1.70575v1.79755a.56866.56866 0 0 0 .1073-.07654h.00018a.56432.56432 0 0 1-.10748.07666v-.00012c-.04993.02826-.09778.04535-.09778.011 0 .02271.0509.057.09778.08661v.00006c.02344.01483.05023.03156.06055.03876.09381-.30066.248-.10718.43341-.03278a3.68275 3.68275 0 0 0 .52014.10632 1.41968 1.41968 0 0 1 .56354.24384c.12732.13855.03937.36365-.055.50159-.12329.18066-.30914.25018-.38611.46283a3.3724 3.3724 0 0 0-.04987.52557c-.04694.25293-.08453.16431-.24963.3186-.139.13-.00232.1073-.19147.19019-.19.08325-.35724.05853-.48877.26416a.34342.34342 0 0 0 .01318-.03943 1.69423 1.69423 0 0 0-.1095.285.65412.65412 0 0 1-.06049.0766v.45813h1.81726v1.2027a8.60156 8.60156 0 0 0 3.49837-6.9019 8.731 8.731 0 0 0-8.78961-8.67135ZM13.20747 8.034c.16559-.05945.638-.00409.69623-.15771a4.13028 4.13028 0 0 0-1.02838.227.82393.82393 0 0 0-.11877.07947l.24976.09161c.05626-.13155.03563-.18093.20116-.24037ZM14.44044 10.84155c.23077-.16809.17877-.17834.09576-.44623a1.69841 1.69841 0 0 1-.103-.4187 14.04165 14.04165 0 0 0-1.64868.50958c.19977.11017.46649.18182.615.24823.13184.0589.51715.13953.58893.23792.09625.1322-.08295.2561.118.349a.251.251 0 0 0 .25183-.02563c.08984-.09991-.0365-.12244-.058-.23779-.04179-.22212.02694-.13386.14016-.21638ZM12.66737 16.03363l-1.78656 6.47876h1.19788l.17279-.7204.17285-.7204h1.74542l.34918 1.4408h1.20465l-1.74548-6.47876Zm-.00684 3.91644.53387-2.19495a3.18756 3.18756 0 0 0 .08557-.5658h.02734c.0014.02423.00824.04779.01013.072a3.646 3.646 0 0 0 .072.511l.26355 1.08887.26349 1.08893ZM3.19733 19.98663h.98224v1.26514a1.15779 1.15779 0 0 1-.62976.14948 1.22144 1.22144 0 0 1-1.049-.54761 2.63419 2.63419 0 0 1-.38844-1.54464 2.59979 2.59979 0 0 1 .433-1.57434 1.33094 1.33094 0 0 1 1.12091-.58978 2.22557 2.22557 0 0 1 1.38947.43347v-1.369a3.16046 3.16046 0 0 0-1.37579-.28412 2.38651 2.38651 0 0 0-1.985.96179 3.94868 3.94868 0 0 0-.74616 2.48926 3.7552 3.7552 0 0 0 .6828 2.3844 2.2512 2.2512 0 0 0 1.867.86469 2.86845 2.86845 0 0 0 1.78656-.54645v-3.25819H3.19733ZM17.442 16.034h-1.106v6.478h2.923v-1.184h-1.817Z" }) + ] + } + ); +}); + +exports.default = SiGdal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.d.ts new file mode 100644 index 000000000..50ffbd877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5CAE58"; +declare const SiGdal: IconType; +export { SiGdal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.mjs new file mode 100644 index 000000000..393236b48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGdal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5CAE58"; +const SiGdal = React.forwardRef(function SiGdal2({ title = "GDAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.32642 13.62652q.0173-.01611.03381-.0332l-.03424.03357ZM14.09705 13.85192c-.00366-.01709-.00659-.032-.008-.04266l.00476.04688ZM13.804 9.19l-.003.001h.025l-.022-.001M15.153 19.24066l.18909.70178a1.2597 1.2597 0 0 0-.01013-.49133.54159.54159 0 0 0-.17896-.21045ZM13.042 19.65h.493l-.246-1.015-.247 1.015M9.87977 21.60888a3.79211 3.79211 0 0 0 .71356-2.41742 3.147 3.147 0 0 0-1.02142-2.71429 2.65021 2.65021 0 0 0-1.59338-.44354H6.23994v6.47876h1.73858a2.30043 2.30043 0 0 0 1.90125-.90351Zm-.45984-1.99127a3.05194 3.05194 0 0 1-.39929 1.14139 1.31157 1.31157 0 0 1-1.12762.56927h-.54761v-4.10696h.54071a1.34787 1.34787 0 0 1 1.138.53156 2.34662 2.34662 0 0 1 .40558 1.45685 2.60466 2.60466 0 0 1-.00977.40789ZM16.03614 22.519v.29352h-.30042c.01422.01556.02765.03088.04285.04651a7.85132 7.85132 0 0 1-.8775.119c.05566-.06921.06915-.13-.10828-.13843.004-.01056.01245-.01709.01715-.027h-.52716l-.05554-.22943-.29358-1.21136H12.661l-.29047 1.21069-.05518.2301H10.4867l.10474-.37988 1.78656-6.47881.06079-.2204h.35962a.46174.46174 0 0 0-.111-.094c-.166-.07837-.25952.03418-.43475.01135a2.56431 2.56431 0 0 1-.51556-.24365.93778.93778 0 0 1-.56879-.54657 1.99741 1.99741 0 0 0-.40472-.559c-.16864-.20514-.22144-.38-.48138-.43457-.03052-.00659.06366.21533.07336.23315a5.19238 5.19238 0 0 0 .34454.4826c.1651.23267.09467.27637-.07318.05133-.19214-.25739-.41492-.51337-.58142-.786-.063-.103-.0509-.16962-.15472-.2674-.1004-.09454-.23169-.14056-.33276-.23047a1.17538 1.17538 0 0 1-.38824-.839 11.4318 11.4318 0 0 0-2.14563 2.12183.43649.43649 0 0 1-.35748.18665.45038.45038 0 0 1-.16614-.03253.43647.43647 0 0 1-.26447-.474l.5791-3.56317a8.43654 8.43654 0 0 0-.8754 7.30994v-2.32655h2.03875c1.32983 0 2.915.59991 2.915 3.458a4.09848 4.09848 0 0 1-.77826 2.60345 2.65178 2.65178 0 0 1-.7995.67523 8.75084 8.75084 0 0 0 9.3446.34235H16.115ZM5.72462 6.43475a.33025.33025 0 0 0 .10327.23016c.01727.01654.04523.01416.06573.02667a.316.316 0 0 0 .16388.06642l.006-.00171.00293.0011a.33287.33287 0 0 0 .16479-.04932l.70483-.43481.815.589-1.21869 7.49919a.13764.13764 0 0 0 .08337.14868.14377.14377 0 0 0 .051.00952.13623.13623 0 0 0 .11145-.05841 13.86614 13.86614 0 0 1 8.12085-4.905.13707.13707 0 0 0 .10828-.12317.13567.13567 0 0 0-.08917-.13745L7.95673 6.7409l-.16143-.99756.6864-.42334a.36654.36654 0 0 0-.0167-.57538l-.96722-.52148a.69958.69958 0 0 0-.09662-.27826l-.31372-.50854.28864-.178.2887.84869 3.32935-2.22754v-.00004l-.16229-.477L10.35481 0l-.00006.00006V0L9.402.63745 7.02546 2.22753l.27686.8139-.33209.20483-.42126-.683a.71267.71267 0 0 0-.97839-.23193l-.73474.45325A.71241.71241 0 0 0 4.604 3.763l.42133.683-.3006.1853-.29315-.86194-.00006.00006v-.00008L2.76685 4.88311 1.10218 5.99688l.63928 1.87946 1.99475-1.3346 1.3346-.89294-.2724-.8006.172-.10614.172-.106.31372.50854a.69144.69144 0 0 0 .23749.22571Zm2.2724.61017 6.39117 2.3457a14.42212 14.42212 0 0 0-7.50433 4.5036ZM7.88612 17.52142h-.2406v3.497l-.00037-.00042v.01h.00037v.00006H7.893a1.00689 1.00689 0 0 0 .884-.44446 2.33078 2.33078 0 0 0 .35248-1.3739 2.0705 2.0705 0 0 0-.34418-1.2749 1.05461 1.05461 0 0 0-.89918-.41338ZM15.06068 9.04589c.0116-.08856-.04041-.1001-.16583-.18481a1.52 1.52 0 0 0-.46069-.28589c-.20569-.04053-.286.01477-.32788.10284l.91339.33521c.01726.00623.02495.02447.04101.03265ZM11.05128 8.92217a3.59931 3.59931 0 0 1 .6134.00812c.08173.00989.35529.10052.42944.05914a.25037.25037 0 0 0 .05035-.10254l-.42877-.15747a.57211.57211 0 0 1-.38153.0545c-.21741-.02942-.44623-.10071-.63464.08734.10413.06174.38965.30201.35175.05091ZM9.09272 11.48962a.857.857 0 0 0-.05988-.073c-.02881-.04517-.10114-.15674-.10529-.16388a1.38356 1.38356 0 0 0-.27789-.37915c-.0752-.064-.2699-.21344-.45312-.33862a7.78108 7.78108 0 0 1 2.7077-2.10339l-1.244-.45648a8.76509 8.76509 0 0 0-1.73781 1.39971l-.58362 3.591a14.66961 14.66961 0 0 1 1.75391-1.47619ZM14.26783 6.65765a8.798 8.798 0 0 0-3.57068.76929l1.75214.643a.59106.59106 0 0 1 .22546-.24921h-.02765a7.81472 7.81472 0 0 1 2.67945-.09573c-.11993.062-.03131.10406-.11859.16748a3.28251 3.28251 0 0 1-.66132.29852c.25232-.00067.86292.23334.98047-.11578l-.24408-.037a2.15371 2.15371 0 0 1 .49963-.23889 7.80564 7.80564 0 0 1 4.12256 2.24591c-.00781-.00018-.0155-.00043-.02307-.00018a1.24316 1.24316 0 0 0-.757.17523.96716.96716 0 0 1-.28906.18988c-.11151.03094-.232.00378-.34265.04083-.39935.13367-.336.9776-.86224.8501-.24719-.05988-.42139-.348-.54584-.53619-.10956-.16559-.30908-.30243-.17432-.50964-.06152.0155-.12708-.0022-.18756.00916.08423-.18256.367-.16663.414-.26.11719-.23383-.32251-.2583-.447-.29071.15-.15778.226.0531.37415.01727.14233-.03455-.0752-.21948-.16046-.2403-.0307-.00745-.53192.1366-.24176-.11951q-.53723-.33774-1.07428-.67572c-.06036.25067.47662.393.652.48126-.02716.10352-.19037.25421-.31525.21008-.11768-.04163-.06995-.234-.24762-.21466-.12677.291.26825.20593.305.38428.04169.20306-.14935.117-.22284.11346-.01752-.00092-.15448-.14069-.16187-.03485-.00885.12567.21844.07672.23444.20367a.90278.90278 0 0 1-.59637-.21387.416.416 0 0 1-.27655.22565l-.023.00555a1.35584 1.35584 0 0 0 .1947.0553c.1488.01794.2334.22137.31451.30469.05383.05524.15027.17249.24438.15985.14941-.02026.08685-.14911.17352-.2085.23248-.15912.29376.057.38641.27307a.93987.93987 0 0 0 .32483.40857c.072.06067.38782.277.358.41028-.02026.08978-.381.22607-.47742.25616-.35254.11017-1.014-.18036-1.085.37128.13678-.05023.526-.36383.64258-.21521.05322.06744-.04218.16565-.01978.2326.06671.20081.22357.1308.38818.09839a.27866.27866 0 0 1-.03485.01831c.22491-.11407.20154-.09027.30481-.27521a1.31278 1.31278 0 0 1 .13123-.24988c.16351-.14844.1886-.04626.29.06824.02649.03021.27686.38586.18781.368a1.0612 1.0612 0 0 0-.8125.10718 2.21242 2.21242 0 0 1-.437.27338c-.03973.01428-.33484.04187-.29987-.00769.05084-.07239.22607-.1203.29517-.19849-.19159-.07782-.35144.094-.502.19458-.15973.07458-.19684.21356-.33295.33545-.05939.053-.17163.06213-.23.13208-.05652.06781-.06354.17444-.11719.239-.0376.045-.13391.01782-.17322.08569-.05115.08881.04675.17126.02533.23523-.03925.116-.26288.21442-.34912.29822a1.31213 1.31213 0 0 0-.22937.2254 2.45806 2.45806 0 0 1 .10138.5744c-.08978.26367-.26428-.14343-.335-.24854-.2431-.36133-.729-.11951-1.061-.08954a.72775.72775 0 0 0-.57843 1.023.51569.51569 0 0 0 .57965.24451c.21594-.04364.2807-.34149.48395-.34692.37354-.00983.00824.36108-.024.49725-.02991.126.04651.1377.178.169.09717.02289.23474-.041.319.01367a.09664.09664 0 0 1 .02887.04474h.4184l.05981.22211.11975.44446a.36922.36922 0 0 1 .06036.00073c.32281.08124.1687-.02423.45221-.19312.19135-.11377.22272.02136.35352.02191.08905.00037.14557-.12622.29437-.08942.12134.03027.16919.12262.31409.14386.05817.00848.1181-.02008.17389-.0155v-.535h1.70575v1.79755a.56866.56866 0 0 0 .1073-.07654h.00018a.56432.56432 0 0 1-.10748.07666v-.00012c-.04993.02826-.09778.04535-.09778.011 0 .02271.0509.057.09778.08661v.00006c.02344.01483.05023.03156.06055.03876.09381-.30066.248-.10718.43341-.03278a3.68275 3.68275 0 0 0 .52014.10632 1.41968 1.41968 0 0 1 .56354.24384c.12732.13855.03937.36365-.055.50159-.12329.18066-.30914.25018-.38611.46283a3.3724 3.3724 0 0 0-.04987.52557c-.04694.25293-.08453.16431-.24963.3186-.139.13-.00232.1073-.19147.19019-.19.08325-.35724.05853-.48877.26416a.34342.34342 0 0 0 .01318-.03943 1.69423 1.69423 0 0 0-.1095.285.65412.65412 0 0 1-.06049.0766v.45813h1.81726v1.2027a8.60156 8.60156 0 0 0 3.49837-6.9019 8.731 8.731 0 0 0-8.78961-8.67135ZM13.20747 8.034c.16559-.05945.638-.00409.69623-.15771a4.13028 4.13028 0 0 0-1.02838.227.82393.82393 0 0 0-.11877.07947l.24976.09161c.05626-.13155.03563-.18093.20116-.24037ZM14.44044 10.84155c.23077-.16809.17877-.17834.09576-.44623a1.69841 1.69841 0 0 1-.103-.4187 14.04165 14.04165 0 0 0-1.64868.50958c.19977.11017.46649.18182.615.24823.13184.0589.51715.13953.58893.23792.09625.1322-.08295.2561.118.349a.251.251 0 0 0 .25183-.02563c.08984-.09991-.0365-.12244-.058-.23779-.04179-.22212.02694-.13386.14016-.21638ZM12.66737 16.03363l-1.78656 6.47876h1.19788l.17279-.7204.17285-.7204h1.74542l.34918 1.4408h1.20465l-1.74548-6.47876Zm-.00684 3.91644.53387-2.19495a3.18756 3.18756 0 0 0 .08557-.5658h.02734c.0014.02423.00824.04779.01013.072a3.646 3.646 0 0 0 .072.511l.26355 1.08887.26349 1.08893ZM3.19733 19.98663h.98224v1.26514a1.15779 1.15779 0 0 1-.62976.14948 1.22144 1.22144 0 0 1-1.049-.54761 2.63419 2.63419 0 0 1-.38844-1.54464 2.59979 2.59979 0 0 1 .433-1.57434 1.33094 1.33094 0 0 1 1.12091-.58978 2.22557 2.22557 0 0 1 1.38947.43347v-1.369a3.16046 3.16046 0 0 0-1.37579-.28412 2.38651 2.38651 0 0 0-1.985.96179 3.94868 3.94868 0 0 0-.74616 2.48926 3.7552 3.7552 0 0 0 .6828 2.3844 2.2512 2.2512 0 0 0 1.867.86469 2.86845 2.86845 0 0 0 1.78656-.54645v-3.25819H3.19733ZM17.442 16.034h-1.106v6.478h2.923v-1.184h-1.817Z" }) + ] + } + ); +}); + +export { SiGdal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.cjs new file mode 100644 index 000000000..c251756d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F8D46"; +const SiGeeksforgeeks = React__namespace.forwardRef(function SiGeeksforgeeks2({ title = "GeeksforGeeks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.45 14.315c-.143.28-.334.532-.565.745a3.691 3.691 0 0 1-1.104.695 4.51 4.51 0 0 1-3.116-.016 3.79 3.79 0 0 1-2.135-2.078 3.571 3.571 0 0 1-.13-.353h7.418a4.26 4.26 0 0 1-.368 1.008zm-11.99-.654a3.793 3.793 0 0 1-2.134 2.078 4.51 4.51 0 0 1-3.117.016 3.7 3.7 0 0 1-1.104-.695 2.652 2.652 0 0 1-.564-.745 4.221 4.221 0 0 1-.368-1.006H9.59c-.038.12-.08.238-.13.352zm14.501-1.758a3.849 3.849 0 0 0-.082-.475l-9.634-.008a3.932 3.932 0 0 1 1.143-2.348c.363-.35.79-.625 1.26-.809a3.97 3.97 0 0 1 4.484.957l1.521-1.49a5.7 5.7 0 0 0-1.922-1.357 6.283 6.283 0 0 0-2.544-.49 6.35 6.35 0 0 0-2.405.457 6.007 6.007 0 0 0-1.963 1.276 6.142 6.142 0 0 0-1.325 1.94 5.862 5.862 0 0 0-.466 1.864h-.063a5.857 5.857 0 0 0-.467-1.865 6.13 6.13 0 0 0-1.325-1.939A6 6 0 0 0 8.21 6.34a6.698 6.698 0 0 0-4.949.031A5.708 5.708 0 0 0 1.34 7.73l1.52 1.49a4.166 4.166 0 0 1 4.484-.958c.47.184.898.46 1.26.81.368.36.66.792.859 1.268.146.344.242.708.285 1.08l-9.635.008A4.714 4.714 0 0 0 0 12.457a6.493 6.493 0 0 0 .345 2.127 4.927 4.927 0 0 0 1.08 1.783c.528.56 1.17 1 1.88 1.293a6.454 6.454 0 0 0 2.504.457c.824.005 1.64-.15 2.404-.457a5.986 5.986 0 0 0 1.964-1.277 6.116 6.116 0 0 0 1.686-3.076h.273a6.13 6.13 0 0 0 1.686 3.077 5.99 5.99 0 0 0 1.964 1.276 6.345 6.345 0 0 0 2.405.457 6.45 6.45 0 0 0 2.502-.457 5.42 5.42 0 0 0 1.882-1.293 4.928 4.928 0 0 0 1.08-1.783A6.52 6.52 0 0 0 24 12.457a4.757 4.757 0 0 0-.039-.554z" }) + ] + } + ); +}); + +exports.default = SiGeeksforgeeks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.d.ts new file mode 100644 index 000000000..b40f872c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F8D46"; +declare const SiGeeksforgeeks: IconType; +export { SiGeeksforgeeks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.mjs new file mode 100644 index 000000000..a3b285cfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeeksforgeeks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F8D46"; +const SiGeeksforgeeks = React.forwardRef(function SiGeeksforgeeks2({ title = "GeeksforGeeks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.45 14.315c-.143.28-.334.532-.565.745a3.691 3.691 0 0 1-1.104.695 4.51 4.51 0 0 1-3.116-.016 3.79 3.79 0 0 1-2.135-2.078 3.571 3.571 0 0 1-.13-.353h7.418a4.26 4.26 0 0 1-.368 1.008zm-11.99-.654a3.793 3.793 0 0 1-2.134 2.078 4.51 4.51 0 0 1-3.117.016 3.7 3.7 0 0 1-1.104-.695 2.652 2.652 0 0 1-.564-.745 4.221 4.221 0 0 1-.368-1.006H9.59c-.038.12-.08.238-.13.352zm14.501-1.758a3.849 3.849 0 0 0-.082-.475l-9.634-.008a3.932 3.932 0 0 1 1.143-2.348c.363-.35.79-.625 1.26-.809a3.97 3.97 0 0 1 4.484.957l1.521-1.49a5.7 5.7 0 0 0-1.922-1.357 6.283 6.283 0 0 0-2.544-.49 6.35 6.35 0 0 0-2.405.457 6.007 6.007 0 0 0-1.963 1.276 6.142 6.142 0 0 0-1.325 1.94 5.862 5.862 0 0 0-.466 1.864h-.063a5.857 5.857 0 0 0-.467-1.865 6.13 6.13 0 0 0-1.325-1.939A6 6 0 0 0 8.21 6.34a6.698 6.698 0 0 0-4.949.031A5.708 5.708 0 0 0 1.34 7.73l1.52 1.49a4.166 4.166 0 0 1 4.484-.958c.47.184.898.46 1.26.81.368.36.66.792.859 1.268.146.344.242.708.285 1.08l-9.635.008A4.714 4.714 0 0 0 0 12.457a6.493 6.493 0 0 0 .345 2.127 4.927 4.927 0 0 0 1.08 1.783c.528.56 1.17 1 1.88 1.293a6.454 6.454 0 0 0 2.504.457c.824.005 1.64-.15 2.404-.457a5.986 5.986 0 0 0 1.964-1.277 6.116 6.116 0 0 0 1.686-3.076h.273a6.13 6.13 0 0 0 1.686 3.077 5.99 5.99 0 0 0 1.964 1.276 6.345 6.345 0 0 0 2.405.457 6.45 6.45 0 0 0 2.502-.457 5.42 5.42 0 0 0 1.882-1.293 4.928 4.928 0 0 0 1.08-1.783A6.52 6.52 0 0 0 24 12.457a4.757 4.757 0 0 0-.039-.554z" }) + ] + } + ); +}); + +export { SiGeeksforgeeks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.cjs new file mode 100644 index 000000000..1a5282c47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0870D8"; +const SiGeneralelectric = React__namespace.forwardRef(function SiGeneralelectric2({ title = "General Electric", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001 24C5.385 24 0 18.647 0 11.999 0 5.385 5.385 0 12.001 0 18.614 0 24 5.385 24 11.999 24 18.647 18.614 24 12.001 24zm0-23.436C5.684.564.565 5.685.565 12c0 6.316 5.12 11.435 11.436 11.435 6.315 0 11.434-5.119 11.434-11.435C23.434 5.717 18.316.564 12.001.564zM22.169 15.42l-.062.013-.034-.043c.002-.019.403-1.202.4-2.56-.005-1.463-.599-2.36-1.363-2.36-.465 0-.798.334-.798.831 0 .898 1.097.964 1.097 2.926 0 .798-.166 1.561-.432 2.393-1.23 4.154-5.153 6.082-8.975 6.082-1.763 0-3.014-.361-3.387-.529-.015-.008-.028-.037-.016-.066l.048-.034c.151.06 1.226.397 2.556.397 1.463 0 2.327-.598 2.327-1.33a.823.823 0 0 0-.832-.829c-.898 0-.964 1.13-2.892 1.13-.831 0-1.561-.166-2.427-.432-4.122-1.263-6.087-5.154-6.084-9.01.002-1.878.527-3.372.536-3.388l.059-.01.035.043c-.049.155-.398 1.228-.398 2.556 0 1.463.598 2.327 1.362 2.327a.789.789 0 0 0 .799-.798c0-.898-1.098-.997-1.098-2.925 0-.831.167-1.562.432-2.426 1.265-4.12 5.154-6.052 8.977-6.081 1.776-.013 3.331.518 3.39.565l.011.06-.044.033c-.018-.002-1.029-.425-2.559-.425-1.429-.001-2.327.598-2.327 1.363 0 .432.333.798.831.798.898 0 .964-1.097 2.892-1.097.831 0 1.562.166 2.427.432 4.156 1.261 6.05 5.185 6.084 8.974.018 1.941-.529 3.41-.535 3.42zm-5.715-2.855c-1.13 0-1.995.832-1.995 1.828 0 .831.498 1.495 1.164 1.495.233 0 .465-.133.465-.432 0-.431-.573-.537-.528-1.184.028-.427.43-.711.828-.711.798 0 1.171.774 1.171 1.57-.034 1.23-.938 2.086-2.001 2.086-1.398 0-2.293-1.33-2.293-2.759 0-2.128 1.396-2.959 2.127-3.158.008-.001 1.911.34 1.852-.499-.026-.369-.575-.511-.974-.527-.441-.017-.885.142-.885.142-.233-.117-.393-.346-.492-.611 1.363-1.03 2.326-2.027 2.326-3.158 0-.598-.4-1.131-1.164-1.131-1.363 0-2.394 1.729-2.394 3.291 0 .266 0 .532.067.766-.865.631-1.507 1.023-2.671 1.721 0-.146.031-.521.128-1.008.399-.432.946-1.079.946-1.578 0-.233-.132-.432-.4-.432-.664 0-1.164.998-1.296 1.695-.3.366-.897.832-1.397.832-.399 0-.531-.366-.566-.498 1.263-.432 2.826-2.162 2.826-3.724 0-.333-.133-1.064-1.13-1.064-1.496 0-2.759 2.228-2.759 3.955-.532 0-.731-.565-.731-.996 0-.432.166-.865.166-.997 0-.134-.067-.3-.266-.3-.499 0-.798.664-.798 1.429.034 1.064.732 1.729 1.663 1.795.132.632.698 1.23 1.396 1.23.432 0 .964-.133 1.33-.465-.034.233-.067.431-.1.631-1.463.765-2.527 1.297-3.491 2.161-.762.698-1.195 1.628-1.195 2.359 0 .997.632 1.928 1.928 1.928 1.529 0 2.693-1.23 3.257-2.925.267-.798.373-1.958.44-3.022 1.529-.864 2.254-1.364 3.051-1.931.099.166.2.3.334.399-.699.366-2.36 1.397-2.36 3.823 0 1.729 1.164 3.656 3.457 3.656 1.895 0 3.191-1.562 3.191-3.057 0-1.362-.765-2.625-2.227-2.625zm-9.141 4.653c-.498.023-.83-.296-.83-.827 0-1.429 1.981-2.793 3.477-3.526-.266 1.996-.939 4.275-2.647 4.353zM8.41 9.374c0-1.097 1.082-3.182 1.745-2.962.781.26-.648 2.364-1.745 2.962zm6.283-.499c0-1.362.923-2.688 1.427-2.436.574.287-.43 1.572-1.427 2.436z" }) + ] + } + ); +}); + +exports.default = SiGeneralelectric; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.d.ts new file mode 100644 index 000000000..59c76056f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0870D8"; +declare const SiGeneralelectric: IconType; +export { SiGeneralelectric as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.mjs new file mode 100644 index 000000000..f622604ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralelectric.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0870D8"; +const SiGeneralelectric = React.forwardRef(function SiGeneralelectric2({ title = "General Electric", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001 24C5.385 24 0 18.647 0 11.999 0 5.385 5.385 0 12.001 0 18.614 0 24 5.385 24 11.999 24 18.647 18.614 24 12.001 24zm0-23.436C5.684.564.565 5.685.565 12c0 6.316 5.12 11.435 11.436 11.435 6.315 0 11.434-5.119 11.434-11.435C23.434 5.717 18.316.564 12.001.564zM22.169 15.42l-.062.013-.034-.043c.002-.019.403-1.202.4-2.56-.005-1.463-.599-2.36-1.363-2.36-.465 0-.798.334-.798.831 0 .898 1.097.964 1.097 2.926 0 .798-.166 1.561-.432 2.393-1.23 4.154-5.153 6.082-8.975 6.082-1.763 0-3.014-.361-3.387-.529-.015-.008-.028-.037-.016-.066l.048-.034c.151.06 1.226.397 2.556.397 1.463 0 2.327-.598 2.327-1.33a.823.823 0 0 0-.832-.829c-.898 0-.964 1.13-2.892 1.13-.831 0-1.561-.166-2.427-.432-4.122-1.263-6.087-5.154-6.084-9.01.002-1.878.527-3.372.536-3.388l.059-.01.035.043c-.049.155-.398 1.228-.398 2.556 0 1.463.598 2.327 1.362 2.327a.789.789 0 0 0 .799-.798c0-.898-1.098-.997-1.098-2.925 0-.831.167-1.562.432-2.426 1.265-4.12 5.154-6.052 8.977-6.081 1.776-.013 3.331.518 3.39.565l.011.06-.044.033c-.018-.002-1.029-.425-2.559-.425-1.429-.001-2.327.598-2.327 1.363 0 .432.333.798.831.798.898 0 .964-1.097 2.892-1.097.831 0 1.562.166 2.427.432 4.156 1.261 6.05 5.185 6.084 8.974.018 1.941-.529 3.41-.535 3.42zm-5.715-2.855c-1.13 0-1.995.832-1.995 1.828 0 .831.498 1.495 1.164 1.495.233 0 .465-.133.465-.432 0-.431-.573-.537-.528-1.184.028-.427.43-.711.828-.711.798 0 1.171.774 1.171 1.57-.034 1.23-.938 2.086-2.001 2.086-1.398 0-2.293-1.33-2.293-2.759 0-2.128 1.396-2.959 2.127-3.158.008-.001 1.911.34 1.852-.499-.026-.369-.575-.511-.974-.527-.441-.017-.885.142-.885.142-.233-.117-.393-.346-.492-.611 1.363-1.03 2.326-2.027 2.326-3.158 0-.598-.4-1.131-1.164-1.131-1.363 0-2.394 1.729-2.394 3.291 0 .266 0 .532.067.766-.865.631-1.507 1.023-2.671 1.721 0-.146.031-.521.128-1.008.399-.432.946-1.079.946-1.578 0-.233-.132-.432-.4-.432-.664 0-1.164.998-1.296 1.695-.3.366-.897.832-1.397.832-.399 0-.531-.366-.566-.498 1.263-.432 2.826-2.162 2.826-3.724 0-.333-.133-1.064-1.13-1.064-1.496 0-2.759 2.228-2.759 3.955-.532 0-.731-.565-.731-.996 0-.432.166-.865.166-.997 0-.134-.067-.3-.266-.3-.499 0-.798.664-.798 1.429.034 1.064.732 1.729 1.663 1.795.132.632.698 1.23 1.396 1.23.432 0 .964-.133 1.33-.465-.034.233-.067.431-.1.631-1.463.765-2.527 1.297-3.491 2.161-.762.698-1.195 1.628-1.195 2.359 0 .997.632 1.928 1.928 1.928 1.529 0 2.693-1.23 3.257-2.925.267-.798.373-1.958.44-3.022 1.529-.864 2.254-1.364 3.051-1.931.099.166.2.3.334.399-.699.366-2.36 1.397-2.36 3.823 0 1.729 1.164 3.656 3.457 3.656 1.895 0 3.191-1.562 3.191-3.057 0-1.362-.765-2.625-2.227-2.625zm-9.141 4.653c-.498.023-.83-.296-.83-.827 0-1.429 1.981-2.793 3.477-3.526-.266 1.996-.939 4.275-2.647 4.353zM8.41 9.374c0-1.097 1.082-3.182 1.745-2.962.781.26-.648 2.364-1.745 2.962zm6.283-.499c0-1.362.923-2.688 1.427-2.436.574.287-.43 1.572-1.427 2.436z" }) + ] + } + ); +}); + +export { SiGeneralelectric as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.cjs new file mode 100644 index 000000000..a7ad8be26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0170CE"; +const SiGeneralmotors = React__namespace.forwardRef(function SiGeneralmotors2({ title = "General Motors", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.34 0A3.345 3.345 0 0 0 0 3.34v17.32A3.345 3.345 0 0 0 3.34 24h17.32A3.345 3.345 0 0 0 24 20.66V3.34C23.982 1.5 22.501 0 20.66 0zm0 1.535h17.32c.992 0 1.805.813 1.805 1.806v17.3c0 .993-.813 1.806-1.806 1.806H3.341a1.811 1.811 0 0 1-1.806-1.806v-17.3c0-.993.813-1.806 1.806-1.806zm2.98 4.677A1.877 1.877 0 0 0 4.442 8.09v4.569c0 1.03.85 1.86 1.879 1.878h1.552v.343c-.018.85-.505 1.337-1.679 1.355h-.74v1.535h.74c2.167 0 3.395-1.03 3.431-2.908v-8.65zm4.623 0v8.307h1.752V7.73h1.68v6.79h1.752V7.73h1.01c.362 0 .669.289.669.668v6.14h1.752V8.09c-.018-1.029-.85-1.878-1.879-1.878zM6.863 7.73h1.01v5.273h-1.01a.666.666 0 0 1-.669-.668V8.397c0-.36.29-.668.668-.668zm4.08 8.506v1.535h8.596v-1.535z" }) + ] + } + ); +}); + +exports.default = SiGeneralmotors; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.d.ts new file mode 100644 index 000000000..644683e34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0170CE"; +declare const SiGeneralmotors: IconType; +export { SiGeneralmotors as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.mjs new file mode 100644 index 000000000..b19a595de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeneralmotors.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0170CE"; +const SiGeneralmotors = React.forwardRef(function SiGeneralmotors2({ title = "General Motors", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.34 0A3.345 3.345 0 0 0 0 3.34v17.32A3.345 3.345 0 0 0 3.34 24h17.32A3.345 3.345 0 0 0 24 20.66V3.34C23.982 1.5 22.501 0 20.66 0zm0 1.535h17.32c.992 0 1.805.813 1.805 1.806v17.3c0 .993-.813 1.806-1.806 1.806H3.341a1.811 1.811 0 0 1-1.806-1.806v-17.3c0-.993.813-1.806 1.806-1.806zm2.98 4.677A1.877 1.877 0 0 0 4.442 8.09v4.569c0 1.03.85 1.86 1.879 1.878h1.552v.343c-.018.85-.505 1.337-1.679 1.355h-.74v1.535h.74c2.167 0 3.395-1.03 3.431-2.908v-8.65zm4.623 0v8.307h1.752V7.73h1.68v6.79h1.752V7.73h1.01c.362 0 .669.289.669.668v6.14h1.752V8.09c-.018-1.029-.85-1.878-1.879-1.878zM6.863 7.73h1.01v5.273h-1.01a.666.666 0 0 1-.669-.668V8.397c0-.36.29-.668.668-.668zm4.08 8.506v1.535h8.596v-1.535z" }) + ] + } + ); +}); + +export { SiGeneralmotors as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.cjs new file mode 100644 index 000000000..fae78a039 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFF64"; +const SiGenius = React__namespace.forwardRef(function SiGenius2({ title = "Genius", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6.827c0 2.164.79 4.133 2.167 5.51.393.393.786.59 1.18.983h.195c.197 0 .196-.196.196-.196-.393-.787-.588-1.77-.588-2.754 0-2.164.982-4.329 2.36-5.706V1.518c0-.197-.197-.196-.197-.196h-2.95C.789 2.896 0 4.664 0 6.827zm2.559 12.59c2.36 2.164 5.31 3.343 8.851 3.343 7.082 0 12.59-5.702 12.59-12.586 0-3.344-1.378-6.492-3.542-8.656h-.196c0-.197-.196 0-.196 0 .59 1.574.983 3.147.983 4.918 0 7.278-5.902 13.373-13.377 13.373-1.77 0-3.344-.393-4.917-.983-.197 0-.196.199-.196.395zm5.9-11.998c0 .59.395 1.178.788 1.571h.392c3.54 1.18 4.722-.193 4.722-1.767V5.056c0-.196.196-.196.196-.196h.787c.197 0 .196-.196.196-.196-.196-1.18-.784-2.358-1.571-3.342h-2.363c0-.197-.196 0-.196.196v2.95c0 1.574-1.18 2.754-2.754 2.951 0-.197-.196 0-.196 0z" }) + ] + } + ); +}); + +exports.default = SiGenius; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.d.ts new file mode 100644 index 000000000..3c8d97312 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFF64"; +declare const SiGenius: IconType; +export { SiGenius as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.mjs new file mode 100644 index 000000000..f633eabcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGenius.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFF64"; +const SiGenius = React.forwardRef(function SiGenius2({ title = "Genius", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6.827c0 2.164.79 4.133 2.167 5.51.393.393.786.59 1.18.983h.195c.197 0 .196-.196.196-.196-.393-.787-.588-1.77-.588-2.754 0-2.164.982-4.329 2.36-5.706V1.518c0-.197-.197-.196-.197-.196h-2.95C.789 2.896 0 4.664 0 6.827zm2.559 12.59c2.36 2.164 5.31 3.343 8.851 3.343 7.082 0 12.59-5.702 12.59-12.586 0-3.344-1.378-6.492-3.542-8.656h-.196c0-.197-.196 0-.196 0 .59 1.574.983 3.147.983 4.918 0 7.278-5.902 13.373-13.377 13.373-1.77 0-3.344-.393-4.917-.983-.197 0-.196.199-.196.395zm5.9-11.998c0 .59.395 1.178.788 1.571h.392c3.54 1.18 4.722-.193 4.722-1.767V5.056c0-.196.196-.196.196-.196h.787c.197 0 .196-.196.196-.196-.196-1.18-.784-2.358-1.571-3.342h-2.363c0-.197-.196 0-.196.196v2.95c0 1.574-1.18 2.754-2.754 2.951 0-.197-.196 0-.196 0z" }) + ] + } + ); +}); + +export { SiGenius as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.cjs new file mode 100644 index 000000000..a6b46d420 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#54487A"; +const SiGentoo = React__namespace.forwardRef(function SiGentoo2({ title = "Gentoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.94 0a7.31 7.31 0 00-1.26.116c-4.344.795-7.4 4.555-7.661 7.031-.126 1.215.53 2.125.89 2.526.977 1.085 2.924 1.914 4.175 2.601-1.81 1.543-2.64 2.296-3.457 3.154C1.403 16.712.543 18.125.54 19.138c0 .325-.053 1.365.371 2.187.16.309.613 1.338 1.98 2.109.874.494 2.119.675 3.337.501 3.772-.538 8.823-3.737 12.427-6.716 2.297-1.9 3.977-3.739 4.462-4.644.39-.731.434-2.043.207-2.866-.645-2.337-5.887-7.125-10.172-9.051A7.824 7.824 0 009.94 0zm-.008.068a7.4 7.4 0 013.344.755c3.46 1.7 9.308 6.482 9.739 8.886.534 2.972-9.931 11.017-16.297 12.272-2.47.485-4.576.618-5.537-1.99-.832-2.262.783-3.916 3.16-6.09a92.546 92.546 0 012.96-2.576c.065-.069-5.706-2.059-5.89-4.343C1.221 4.634 4.938.3 9.697.076c.08-.004.157-.007.235-.008zm-.112.52a5.647 5.647 0 00-.506.032c-2.337.245-2.785.547-4.903 2.149-.71.537-2.016 1.844-2.35 3.393-.128.59.024 1.1.448 1.458 1.36 1.144 3.639 2.072 5.509 2.97.547.263.185.74-.698 1.505-2.227 1.928-5.24 4.276-5.45 6.066-.099.842.19 1.988 1.213 2.574 1.195.685 3.676.238 5.333-.379 2.422-.902 5.602-2.892 8.127-4.848 2.625-2.034 5.067-4.617 5.188-5.038.148-.517.133-.996-.154-1.546-.448-.862-1.049-1.503-1.694-2.22-1.732-1.825-3.563-3.43-5.754-4.658C12.694 1.242 11.417.564 9.82.588zm1.075 3.623c.546 0 1.176.173 1.853.5 1.688.817 3.422 2.961-.015 4.195-.935.336-3.9-.824-3.81-2.407.09-1.57.854-2.289 1.972-2.288zm.285 1.367c-.317-.002-.575.079-.694.263-.557.861-.303 1.472.212 1.862.192-.457 2.156.043 2.148.472a.32.32 0 00.055-.032c1.704-1.282-.472-2.557-1.72-2.565z" }) + ] + } + ); +}); + +exports.default = SiGentoo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.d.ts new file mode 100644 index 000000000..dc6bba26b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#54487A"; +declare const SiGentoo: IconType; +export { SiGentoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.mjs new file mode 100644 index 000000000..405b36811 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGentoo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#54487A"; +const SiGentoo = React.forwardRef(function SiGentoo2({ title = "Gentoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.94 0a7.31 7.31 0 00-1.26.116c-4.344.795-7.4 4.555-7.661 7.031-.126 1.215.53 2.125.89 2.526.977 1.085 2.924 1.914 4.175 2.601-1.81 1.543-2.64 2.296-3.457 3.154C1.403 16.712.543 18.125.54 19.138c0 .325-.053 1.365.371 2.187.16.309.613 1.338 1.98 2.109.874.494 2.119.675 3.337.501 3.772-.538 8.823-3.737 12.427-6.716 2.297-1.9 3.977-3.739 4.462-4.644.39-.731.434-2.043.207-2.866-.645-2.337-5.887-7.125-10.172-9.051A7.824 7.824 0 009.94 0zm-.008.068a7.4 7.4 0 013.344.755c3.46 1.7 9.308 6.482 9.739 8.886.534 2.972-9.931 11.017-16.297 12.272-2.47.485-4.576.618-5.537-1.99-.832-2.262.783-3.916 3.16-6.09a92.546 92.546 0 012.96-2.576c.065-.069-5.706-2.059-5.89-4.343C1.221 4.634 4.938.3 9.697.076c.08-.004.157-.007.235-.008zm-.112.52a5.647 5.647 0 00-.506.032c-2.337.245-2.785.547-4.903 2.149-.71.537-2.016 1.844-2.35 3.393-.128.59.024 1.1.448 1.458 1.36 1.144 3.639 2.072 5.509 2.97.547.263.185.74-.698 1.505-2.227 1.928-5.24 4.276-5.45 6.066-.099.842.19 1.988 1.213 2.574 1.195.685 3.676.238 5.333-.379 2.422-.902 5.602-2.892 8.127-4.848 2.625-2.034 5.067-4.617 5.188-5.038.148-.517.133-.996-.154-1.546-.448-.862-1.049-1.503-1.694-2.22-1.732-1.825-3.563-3.43-5.754-4.658C12.694 1.242 11.417.564 9.82.588zm1.075 3.623c.546 0 1.176.173 1.853.5 1.688.817 3.422 2.961-.015 4.195-.935.336-3.9-.824-3.81-2.407.09-1.57.854-2.289 1.972-2.288zm.285 1.367c-.317-.002-.575.079-.694.263-.557.861-.303 1.472.212 1.862.192-.457 2.156.043 2.148.472a.32.32 0 00.055-.032c1.704-1.282-.472-2.557-1.72-2.565z" }) + ] + } + ); +}); + +export { SiGentoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.cjs new file mode 100644 index 000000000..8986c0dd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00874D"; +const SiGeocaching = React__namespace.forwardRef(function SiGeocaching2({ title = "Geocaching", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 11.239h1.918c.151-1.738.841-3.819 2.521-5.498C2.81 4.532 2.484 3.136 2.484 2.36h.652c.068.682.357 1.656 2.247 2.753C7.167 4.067 7.532 3.037 7.631 2.36h.652c0 .721-.317 2.082-1.951 3.38 1.366.89 2.506 2.195 2.928 4.237H7.576c-.294-1.461-1.04-2.616-2.193-3.504-1.169 1.143-1.774 3.023-1.811 4.766h6.57V1.098H0v10.141zM5.383 2.63c.469 0 .85.377.85.842 0 .465-.38.841-.85.841a.846.846 0 0 1-.85-.841.847.847 0 0 1 .85-.842zM3.574 12.779h6.567v6.567a7.338 7.338 0 0 1-3.775-1.528L5.195 18.99a8.978 8.978 0 0 0 4.946 2.012v1.919H0V12.779h1.919a8.98 8.98 0 0 0 2.03 4.968l1.171-1.171a7.33 7.33 0 0 1-1.546-3.797zm8.108-11.681h10.142V11.24h-1.919a8.981 8.981 0 0 0-2.012-4.947l-1.171 1.171a7.338 7.338 0 0 1 1.528 3.776h-6.568V4.672a7.347 7.347 0 0 1 3.798 1.545l1.171-1.171a8.987 8.987 0 0 0-4.968-2.03V1.098zm0 11.681h10.142V22.92h-5.988l-1.172-4.736c.473-.572.965-.836 2.137-1.018 2.184-.341 2.576-2.232 2.576-2.232-1.02.245-1.837.001-2.799-.234-.949-.231-1.859-.211-2.727.092-.659.23-.818.445-.818.445l1.907 7.683h-3.257V12.779zm11.4-11.7a.894.894 0 0 0-.913.918c0 .521.392.913.913.913A.894.894 0 0 0 24 1.997a.895.895 0 0 0-.918-.918zm0 1.679a.738.738 0 0 1-.753-.761c0-.437.319-.764.753-.764.437 0 .759.327.759.764a.741.741 0 0 1-.759.761zm.379-.907c0-.201-.149-.298-.327-.298h-.411v.889h.204v-.309h.084l.259.309h.22v-.04l-.251-.28c.118-.028.222-.122.222-.271zm-.335.133h-.199v-.262h.199c.076 0 .133.044.133.131.001.081-.057.131-.133.131z" }) + ] + } + ); +}); + +exports.default = SiGeocaching; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.d.ts new file mode 100644 index 000000000..bcf8f7b11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00874D"; +declare const SiGeocaching: IconType; +export { SiGeocaching as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.mjs new file mode 100644 index 000000000..f611f24a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeocaching.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00874D"; +const SiGeocaching = React.forwardRef(function SiGeocaching2({ title = "Geocaching", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 11.239h1.918c.151-1.738.841-3.819 2.521-5.498C2.81 4.532 2.484 3.136 2.484 2.36h.652c.068.682.357 1.656 2.247 2.753C7.167 4.067 7.532 3.037 7.631 2.36h.652c0 .721-.317 2.082-1.951 3.38 1.366.89 2.506 2.195 2.928 4.237H7.576c-.294-1.461-1.04-2.616-2.193-3.504-1.169 1.143-1.774 3.023-1.811 4.766h6.57V1.098H0v10.141zM5.383 2.63c.469 0 .85.377.85.842 0 .465-.38.841-.85.841a.846.846 0 0 1-.85-.841.847.847 0 0 1 .85-.842zM3.574 12.779h6.567v6.567a7.338 7.338 0 0 1-3.775-1.528L5.195 18.99a8.978 8.978 0 0 0 4.946 2.012v1.919H0V12.779h1.919a8.98 8.98 0 0 0 2.03 4.968l1.171-1.171a7.33 7.33 0 0 1-1.546-3.797zm8.108-11.681h10.142V11.24h-1.919a8.981 8.981 0 0 0-2.012-4.947l-1.171 1.171a7.338 7.338 0 0 1 1.528 3.776h-6.568V4.672a7.347 7.347 0 0 1 3.798 1.545l1.171-1.171a8.987 8.987 0 0 0-4.968-2.03V1.098zm0 11.681h10.142V22.92h-5.988l-1.172-4.736c.473-.572.965-.836 2.137-1.018 2.184-.341 2.576-2.232 2.576-2.232-1.02.245-1.837.001-2.799-.234-.949-.231-1.859-.211-2.727.092-.659.23-.818.445-.818.445l1.907 7.683h-3.257V12.779zm11.4-11.7a.894.894 0 0 0-.913.918c0 .521.392.913.913.913A.894.894 0 0 0 24 1.997a.895.895 0 0 0-.918-.918zm0 1.679a.738.738 0 0 1-.753-.761c0-.437.319-.764.753-.764.437 0 .759.327.759.764a.741.741 0 0 1-.759.761zm.379-.907c0-.201-.149-.298-.327-.298h-.411v.889h.204v-.309h.084l.259.309h.22v-.04l-.251-.28c.118-.028.222-.122.222-.271zm-.335.133h-.199v-.262h.199c.076 0 .133.044.133.131.001.081-.057.131-.133.131z" }) + ] + } + ); +}); + +export { SiGeocaching as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.cjs new file mode 100644 index 000000000..7348fc2e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8D7ACF"; +const SiGeode = React__namespace.forwardRef(function SiGeode2({ title = "Geode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.30206 0-.60438.09583-.85742.28906L.5957 8.34375c-.4705.3593-.66703.97346-.49218 1.53906l4.05664 13.1211c.1829.59168.7303.99609 1.3496.99609h12.98047c.61931 0 1.1667-.40441 1.34961-.9961l4.05664-13.12109c.17485-.5656-.02168-1.17975-.49218-1.53906l-.97266-.74219-1.11914 3.51758-3.07031 9.99024c-.12005.3903-.48032.65624-.88868.65624H6.57813c-.40836 0-.76863-.26593-.88868-.65624l-3.36132-10.9336c-.11419-.37133.01411-.77514.32226-1.01172l8.74805-6.7168a.93.93 0 0 1 .10937-.07226L13.55273.82031l-.6953-.53125C12.60437.09583 12.30205 0 12 0m.06836 4.75781c-.16254 0-.32493.05197-.46094.15625l-6.52344 5.0039c-.25142.19277-.35688.52145-.26367.82423l.4336 1.4082 2.19726-1.61914 4.31445-3.37695c.13717-.10727.33159-.10727.46875 0l4.70508 3.68164c.12315.09628.17407.25661.1289.40625l-1.80858 5.99219c-.0483.15993-.19619.26953-.36329.26953H9.10352a.377.377 0 0 1-.07618-.0078H6.9004l.42774 1.39257c.0979.3179.39196.53516.7246.53516h8.0332c.33265 0 .62477-.21725.72266-.53516l2.50977-8.14648c.09321-.30278-.01225-.63146-.26367-.82422l-6.5254-5.00392c-.136-.10428-.29839-.15625-.46093-.15625Z" }) + ] + } + ); +}); + +exports.default = SiGeode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.d.ts new file mode 100644 index 000000000..88bdf4637 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8D7ACF"; +declare const SiGeode: IconType; +export { SiGeode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.mjs new file mode 100644 index 000000000..d15fda704 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8D7ACF"; +const SiGeode = React.forwardRef(function SiGeode2({ title = "Geode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.30206 0-.60438.09583-.85742.28906L.5957 8.34375c-.4705.3593-.66703.97346-.49218 1.53906l4.05664 13.1211c.1829.59168.7303.99609 1.3496.99609h12.98047c.61931 0 1.1667-.40441 1.34961-.9961l4.05664-13.12109c.17485-.5656-.02168-1.17975-.49218-1.53906l-.97266-.74219-1.11914 3.51758-3.07031 9.99024c-.12005.3903-.48032.65624-.88868.65624H6.57813c-.40836 0-.76863-.26593-.88868-.65624l-3.36132-10.9336c-.11419-.37133.01411-.77514.32226-1.01172l8.74805-6.7168a.93.93 0 0 1 .10937-.07226L13.55273.82031l-.6953-.53125C12.60437.09583 12.30205 0 12 0m.06836 4.75781c-.16254 0-.32493.05197-.46094.15625l-6.52344 5.0039c-.25142.19277-.35688.52145-.26367.82423l.4336 1.4082 2.19726-1.61914 4.31445-3.37695c.13717-.10727.33159-.10727.46875 0l4.70508 3.68164c.12315.09628.17407.25661.1289.40625l-1.80858 5.99219c-.0483.15993-.19619.26953-.36329.26953H9.10352a.377.377 0 0 1-.07618-.0078H6.9004l.42774 1.39257c.0979.3179.39196.53516.7246.53516h8.0332c.33265 0 .62477-.21725.72266-.53516l2.50977-8.14648c.09321-.30278-.01225-.63146-.26367-.82422l-6.5254-5.00392c-.136-.10428-.29839-.15625-.46093-.15625Z" }) + ] + } + ); +}); + +export { SiGeode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.cjs new file mode 100644 index 000000000..f68ddc4aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#139C5A"; +const SiGeopandas = React__namespace.forwardRef(function SiGeopandas2({ title = "GeoPandas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0043 0C5.3911 0 0 5.3805 0 12c0 6.6108 5.3825 12 12.0043 12C18.6263 24 24 18.6108 24 12c0-6.6195-5.3824-12-11.9957-12Zm9.8288 12a9.7343 9.7343 0 0 1-.8234 3.925v-7.85c.5288 1.1958.8235 2.53.8235 3.925zm-4.0996 7.9798v-1.8715h-2.0889v3.0152a9.7946 9.7946 0 0 1-3.6403.7018c-.3033 0-.6067-.0173-.91-.0433V9.1928H9.0054v12.1646c-3.961-1.2736-6.8385-4.9906-6.8385-9.366 0-5.4239 4.4117-9.834 9.8374-9.834 2.6956 0 5.1485 1.0917 6.9253 2.8592v13.8888h.0607c-.39.3986-.8148.7538-1.2568 1.0744zM15.6446 9.2014h2.0889v4.3322h-2.0889zm-3.2849 5.3372h2.0888v4.3322h-2.0888Zm0-8.9068h2.0888v4.3321h-2.0888Zm3.285 9.1668h2.0888v2.0447h-2.0889Zm-3.285-3.5697h2.0888v2.0448h-2.0888Z" }) + ] + } + ); +}); + +exports.default = SiGeopandas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.d.ts new file mode 100644 index 000000000..d1e18fd39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#139C5A"; +declare const SiGeopandas: IconType; +export { SiGeopandas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.mjs new file mode 100644 index 000000000..5367846cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGeopandas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#139C5A"; +const SiGeopandas = React.forwardRef(function SiGeopandas2({ title = "GeoPandas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0043 0C5.3911 0 0 5.3805 0 12c0 6.6108 5.3825 12 12.0043 12C18.6263 24 24 18.6108 24 12c0-6.6195-5.3824-12-11.9957-12Zm9.8288 12a9.7343 9.7343 0 0 1-.8234 3.925v-7.85c.5288 1.1958.8235 2.53.8235 3.925zm-4.0996 7.9798v-1.8715h-2.0889v3.0152a9.7946 9.7946 0 0 1-3.6403.7018c-.3033 0-.6067-.0173-.91-.0433V9.1928H9.0054v12.1646c-3.961-1.2736-6.8385-4.9906-6.8385-9.366 0-5.4239 4.4117-9.834 9.8374-9.834 2.6956 0 5.1485 1.0917 6.9253 2.8592v13.8888h.0607c-.39.3986-.8148.7538-1.2568 1.0744zM15.6446 9.2014h2.0889v4.3322h-2.0889zm-3.2849 5.3372h2.0888v4.3322h-2.0888Zm0-8.9068h2.0888v4.3321h-2.0888Zm3.285 9.1668h2.0888v2.0447h-2.0889Zm-3.285-3.5697h2.0888v2.0448h-2.0888Z" }) + ] + } + ); +}); + +export { SiGeopandas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.cjs new file mode 100644 index 000000000..302f85ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EEEEEE"; +const SiGerrit = React__namespace.forwardRef(function SiGerrit2({ title = "Gerrit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.648 2.678l-.245-.266c.004-.004.29-.268.413-.41.121-.146.342-.484.346-.486l.301.195c-.014.016-.234.359-.375.522-.137.165-.428.432-.44.445zm1.577 10.597c-.012-.004-.24-.154-.365-.221-.117-.059-.32-.146-.422-.191l.213-.612-.898-.444-.286.871c-.174.004-.713.053-1.51.389-.959.4-1.688 1.025-1.695 1.029l-.143.125.641.025.02-.016c.006-.006.721-.535 1.119-.705.088-.037.207-.074.33-.105-.209.105-.439.227-.6.32-.199.119-.57.381-.586.393l-.186.129.682.016.018-.01c.012-.008 1.164-.623 1.789-.76l.196-.047c.145-.037.246-.064.422-.064.156 0 .369.021.688.07.398.059.66.158.664.16l.24.094-.322-.436-.012-.008.003-.002zm-8.98-7.298h-.029l-1.006.916v.03c-.016.266.078.52.258.716.182.196.42.309.686.319h.043c.531 0 .965-.413.992-.94.023-.545-.399-1.01-.944-1.041zM5.2 7.808h-.041c-.117-.005-.23-.032-.33-.085.045.008.098.01.148.002.284-.035.481-.291.448-.575-.035-.279-.293-.48-.576-.442-.264.034-.457.267-.446.531-.031-.09-.045-.183-.045-.28l.912-.833c.446.042.79.431.768.882s-.391.8-.842.8H5.2zm9.329-3.725l-.293-.195-.41.265-.395-.285-.301.18.404.291-.416.27.297.18.4-.254.387.28.309-.169-.407-.296M24 19.525c-.213-.209-.418-.416-.629-.627-.48-.488-.957-.984-1.418-1.486-.547-.598-1.082-1.207-1.582-1.844-.225-.283-.441-.58-.646-.881-.254-.387-.469-.795-.668-1.215-.211-.445-.398-.9-.576-1.356.24.21.463.444.664.692.021-.215.041-.43.059-.648l.023-.322c0-.033.012-.066-.008-.096-.016-.029-.033-.051-.053-.075-.121-.149-.264-.282-.406-.413-.189-.181-.387-.36-.584-.533l-.18-.156c-.027-.027-.057-.051-.086-.074-.031-.03-.041-.096-.055-.136l-.154-.479c.607.285 1.109.741 1.578 1.215.004-.219.004-.436 0-.652 0-.114-.002-.229-.008-.346 0-.029.006-.1-.016-.127-.012-.02-.031-.036-.043-.055-.109-.117-.234-.217-.357-.314-.172-.143-.35-.277-.527-.408-.156-.117-.318-.232-.477-.345-.018-.016-.076-.039-.064-.06l.039-.08c.02-.035.014-.045.053-.029l.17.059c.406.156.779.368 1.143.608-.123-.45-.311-.885-.525-1.296-.389-.762-.893-1.468-1.463-2.105-.379-.426-.785-.824-1.219-1.193-.223-.19-.457-.369-.699-.533-.113-.074-.225-.149-.346-.217-.049-.03-.105-.056-.15-.094-.18-.144-.365-.284-.549-.429.238.098.469.21.689.338-.127-.194-.342-.331-.545-.436-.307-.159-.637-.276-.967-.378.113-.12.234-.228.346-.348.113-.12.223-.246.33-.372.127-.15.252-.3.375-.455l-1.156-.726-.48-.303c-.123.246-.277.476-.458.68-.18.203-.391.369-.6.539-.191.156-.379.316-.566.472-.047.04-.092.085-.145.12-.025.021-.096.004-.127.004H10.7c-.297.006-.596.029-.891.068-.058.007-.113.013-.175.008l-.178-.01c-.137-.008-.271-.016-.408-.016-.289-.004-.58 0-.871.025-.244.022-.489.055-.729.112-.238.056-.461.172-.66.312-.193.141-.387.32-.504.53s-.17.456-.213.689c-.135.013-.268.01-.4.016-.141.008-.277.021-.416.039-.27.037-.535.096-.795.18-.496.154-.945.405-1.336.75-.195.181-.377.38-.539.596-.02.025-.037.051-.063.068-.01.009-.027.016-.033.027-.015.027-.033.052-.051.076l-.134.212c-.168.285-.276.595-.383.906l-.045.123.033-.021c-.01.067-.02.135-.025.202l-.008.105v.053l-.066.013c-.135.026-.271.06-.4.101-.12.039-.233.086-.337.15-.105.066-.195.153-.285.239-.318.31-.562.698-.687 1.128-.1.348-.137.735-.059 1.092.021.09.049.188.107.262.074.09.199.126.313.095.131-.036.248-.124.371-.187l.314-.157c.455-.226.93-.446 1.438-.525.035-.005.1.067.131.091.049.037.1.074.148.104.109.069.221.129.334.181.262.114.541.174.818.231.502.105 1.014.171 1.529.18.207.004.416 0 .625-.018.225-.02.451-.049.678-.051.25-.005.496.025.74.055.254.031.51.068.764.105.518.079 1.031.169 1.543.279-.115.18-.227.362-.338.545-.008.013-.072 0-.088 0-.041-.002-.086-.002-.127 0-.074 0-.15.008-.225.019-.211.03-.416.083-.615.156-.49.181-.938.483-1.326.833-.221.195-.43.408-.609.641-.049.064-.094.129-.139.193.105-.023.211-.045.318-.07.061-.016.117-.027.176-.039.021-.008.029-.016.049-.027.219-.203.451-.393.695-.563.111-.08.225-.154.348-.215.166-.083.354-.131.533-.174-.33.18-.678.35-.977.584-.172.139-.328.291-.49.439l.654-.104c.01 0 .014-.004.023-.01l.17-.094c.113-.064.23-.125.346-.186.24-.123.482-.24.732-.34.236-.094.48-.178.732-.225.221-.046.428-.052.648 0 .342.074.67.232.969.414.021.014.035.033.055.014.016-.014.098-.074.09-.092l-.18-.334c-.016-.029-.023-.049-.051-.066l-.131-.077c-.176-.104-.348-.21-.51-.331-.037-.023-.078-.039-.082-.089-.004-.046.014-.093.029-.136.033-.09.08-.169.131-.248.033-.058.072-.111.109-.166.014-.018.01-.021.031-.014l.119.034c.236.077.469.159.711.22.27.068.545.123.82.176l.048.01c-.056-.03-.091-.09-.132-.136-.023-.03-.035-.05-.074-.06l-.105-.02c-.074-.016-.148-.03-.225-.049-.262-.057-.525-.119-.777-.209-.375-.13-.758-.232-1.145-.322-.486-.107-.977-.194-1.465-.275-.25-.041-.498-.074-.75-.109-.246-.034-.496-.07-.746-.087-.539-.034-1.074.087-1.615.081-.365-.004-.734-.055-1.096-.105l-.068-.009c.252-.093.5-.188.75-.285.236-.095.471-.192.705-.289.127-.052.25-.105.373-.157.113-.051.225-.1.328-.17.408-.279.676-.727.975-1.109.273-.361.586-.7.99-.908.129-.066.262-.117.4-.156-.283-.439-.549-.93-.623-1.455.029.012.061.025.094.037.035.012.064.016.072.045l.029.135c.026.091.053.176.086.262.072.191.16.375.26.551.219.396.484.766.766 1.12.539.686 1.145 1.305 1.736 1.941.145.158.275.324.41.492.15.187.303.375.457.561.121.141.234.285.356.426l.094.112c.016.018.037.026.061.036.604.3 1.213.6 1.822.895.434.209.869.42 1.309.623.236.109.471.219.711.32.029.014.066.029.098.039.016.01.029.016.047.023l.016.049c.027.072.051.145.076.217.049.141.098.279.148.416.33.912.695 1.814 1.145 2.676.346.656.715 1.301 1.09 1.939.4.68.811 1.354 1.225 2.025.332.535.666 1.072 1.008 1.605.146.227.289.459.439.688l.063.094.775-1.141.191-.283c.008-.006.082-.102.076-.109l-.156-.24c-.291-.451-.584-.898-.871-1.35l-.828-1.283-.105-.166.656.799 1.115 1.35c.121.146.236.289.354.438.219-.402.439-.801.662-1.201.086-.164.176-.33.266-.492M12.13 1.915c.309-.246.563-.563.757-.906l1.178.743.18.112c-.246.3-.496.604-.775.873-.035.034-.074.069-.107.104-.021.025-.047.051-.07.075l-.033.038c-.023-.007-.045-.016-.068-.02-.146-.041-.289-.08-.436-.111-.292-.066-.589-.117-.886-.152-.191-.021-.385-.04-.578-.058.275-.234.557-.467.838-.698m-1.754 1.37c.232-.096.482-.15.73-.191.49-.082.994-.094 1.489-.04.354.038.701.108 1.041.21l-.141.115-.225-.061c-.141-.029-.281-.06-.422-.082-.246-.037-.497-.06-.749-.065-.461-.008-.926.042-1.371.159-.301.078-.604.188-.879.332-.286.154-.555.346-.78.582-.134.137-.257.289-.359.455-.057.09-.105.18-.15.275-.024.047-.043.096-.061.144l-.029.075c-.004.015-.008.026-.012.038L8.39 5.22l-.082-.011c.234-.719.763-1.286 1.418-1.649.207-.114.426-.218.65-.279m-3.93.374c.266-.381.686-.649 1.139-.743.502-.101 1.016-.119 1.525-.107-.525.131-1.05.326-1.488.652-.34.075-.664.24-.934.459-.09.071-.17.15-.246.236-.035.037-.066.075-.097.116-.014.015-.027.03-.037.049h-.084c.023-.135.055-.27.098-.4.029-.09.064-.18.119-.26m.882.056c-.145.143-.27.303-.391.469-.047.069-.098.153-.18.191-.085.039-.194-.005-.28-.031.224-.279.521-.494.851-.629M2.308 6.585c.08-.16.182-.315.275-.465.016-.027.053-.046.074-.063.049-.034.096-.069.143-.106.309-.225.621-.446.939-.656.166-.107.33-.213.502-.307.182-.101.369-.18.565-.244.347-.112.707-.189 1.068-.244.174-.025.361-.057.531-.015-.33.188-.658.375-.99.558-.342.191-.689.367-1.035.552-.332.18-.66.375-.981.577-.336.206-.67.419-1.002.629-.08.051-.16.105-.24.155.045-.125.09-.251.151-.371m1.009 3.056c-.029.056-.134.042-.187.042-.094 0-.186 0-.279.006-.258.015-.51.06-.758.138-.475.147-.922.375-1.365.604-.1.055-.203.135-.316.162-.061.015-.131-.008-.166-.063-.035-.061-.053-.131-.064-.198-.027-.12-.035-.245-.033-.368 0-.33.076-.66.215-.96.096-.21.221-.401.371-.574.15-.175.326-.351.539-.45.355-.162.775-.213 1.164-.235.072-.005.145-.007.217-.007.1 0 .217-.016.311.019.074.027.121.105.15.173.045.105.074.225.1.336.061.26.123.525.145.791.01.119.016.239.004.359-.009.073-.014.156-.05.223m2.829-1.973c-.194.123-.403.218-.616.298-.215.077-.436.144-.66.181-.097.013-.195.025-.293.021-.101-.003-.193-.036-.293-.067-.195-.063-.393-.13-.57-.233-.064-.039-.135-.084-.174-.15-.029-.052-.029-.116-.023-.174.012-.231.094-.458.203-.66.187-.343.482-.612.84-.775.879-.396 1.865-.029 2.611.49l.08.061c-.154.165-.311.321-.473.477-.199.189-.404.381-.634.531M8.31 5.739c-.475-.203-.926-.458-1.356-.738.449.188.934.3 1.414.37.258.037.521.072.781.08.281.008.564-.021.84-.075.545-.103 1.068-.305 1.566-.551.494-.245.964-.537 1.413-.859.217-.155.43-.315.633-.487.021-.016.174-.161.184-.154l.041.031.537.416c.328.254.658.51.988.762-.906.326-1.826.629-2.752.904-.519.156-1.038.301-1.565.42-.412.098-.834.189-1.256.21-.507.022-1.006-.135-1.47-.33m8.85 3.942c.076.021.145.045.215.067l.094.033c.016.006.031.015.045.02l.021.06c.045.146.09.289.139.432-.15-.127-.301-.254-.451-.379l-.09-.074c-.021-.016-.045-.021-.029-.046l.059-.114m-.671 1.444l.035-.063.027-.046c.012-.018.008-.022.029-.012.129.054.258.111.385.17.24.11.475.23.703.364.107.065.217.135.322.205l.15.105.074.057c.033.027.041.063.057.102.104.282.219.564.338.844.078.189.162.379.248.566-.293-.371-.621-.715-.957-1.045-.346-.346-.705-.671-1.078-.981l-.323-.264m3.746 6.42l-.121.09.008.016.063.094.271.42.904 1.402c.311.48.621.963.932 1.445l.309.48.084.133c.004.004.029.041.029.045-.26.385-.523.77-.783 1.154-.027.037-.051.076-.074.111-.24-.373-.479-.744-.715-1.117-.4-.635-.795-1.277-1.184-1.916-.434-.709-.855-1.418-1.264-2.141-.383-.674-.75-1.361-1.059-2.076-.301-.697-.563-1.408-.811-2.121.486.193.98.367 1.48.521.145.045.289.09.436.127l.063.018c.008 0 .014-.039.018-.049.018-.064.031-.129.045-.195.031-.125.051-.254.074-.381.205.428.436.844.701 1.236.215.314.445.621.686.92.521.656 1.074 1.283 1.643 1.898.463.494.934.984 1.408 1.465l.389.389c.006.006.039.031.037.041l-.031.053-.148.275-.588 1.068c-.18-.219-.361-.436-.541-.658l-1.125-1.361c-.314-.387-.637-.773-.953-1.16l-.186-.225" }) + ] + } + ); +}); + +exports.default = SiGerrit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.d.ts new file mode 100644 index 000000000..d38b65379 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EEEEEE"; +declare const SiGerrit: IconType; +export { SiGerrit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.mjs new file mode 100644 index 000000000..e30900210 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGerrit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EEEEEE"; +const SiGerrit = React.forwardRef(function SiGerrit2({ title = "Gerrit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.648 2.678l-.245-.266c.004-.004.29-.268.413-.41.121-.146.342-.484.346-.486l.301.195c-.014.016-.234.359-.375.522-.137.165-.428.432-.44.445zm1.577 10.597c-.012-.004-.24-.154-.365-.221-.117-.059-.32-.146-.422-.191l.213-.612-.898-.444-.286.871c-.174.004-.713.053-1.51.389-.959.4-1.688 1.025-1.695 1.029l-.143.125.641.025.02-.016c.006-.006.721-.535 1.119-.705.088-.037.207-.074.33-.105-.209.105-.439.227-.6.32-.199.119-.57.381-.586.393l-.186.129.682.016.018-.01c.012-.008 1.164-.623 1.789-.76l.196-.047c.145-.037.246-.064.422-.064.156 0 .369.021.688.07.398.059.66.158.664.16l.24.094-.322-.436-.012-.008.003-.002zm-8.98-7.298h-.029l-1.006.916v.03c-.016.266.078.52.258.716.182.196.42.309.686.319h.043c.531 0 .965-.413.992-.94.023-.545-.399-1.01-.944-1.041zM5.2 7.808h-.041c-.117-.005-.23-.032-.33-.085.045.008.098.01.148.002.284-.035.481-.291.448-.575-.035-.279-.293-.48-.576-.442-.264.034-.457.267-.446.531-.031-.09-.045-.183-.045-.28l.912-.833c.446.042.79.431.768.882s-.391.8-.842.8H5.2zm9.329-3.725l-.293-.195-.41.265-.395-.285-.301.18.404.291-.416.27.297.18.4-.254.387.28.309-.169-.407-.296M24 19.525c-.213-.209-.418-.416-.629-.627-.48-.488-.957-.984-1.418-1.486-.547-.598-1.082-1.207-1.582-1.844-.225-.283-.441-.58-.646-.881-.254-.387-.469-.795-.668-1.215-.211-.445-.398-.9-.576-1.356.24.21.463.444.664.692.021-.215.041-.43.059-.648l.023-.322c0-.033.012-.066-.008-.096-.016-.029-.033-.051-.053-.075-.121-.149-.264-.282-.406-.413-.189-.181-.387-.36-.584-.533l-.18-.156c-.027-.027-.057-.051-.086-.074-.031-.03-.041-.096-.055-.136l-.154-.479c.607.285 1.109.741 1.578 1.215.004-.219.004-.436 0-.652 0-.114-.002-.229-.008-.346 0-.029.006-.1-.016-.127-.012-.02-.031-.036-.043-.055-.109-.117-.234-.217-.357-.314-.172-.143-.35-.277-.527-.408-.156-.117-.318-.232-.477-.345-.018-.016-.076-.039-.064-.06l.039-.08c.02-.035.014-.045.053-.029l.17.059c.406.156.779.368 1.143.608-.123-.45-.311-.885-.525-1.296-.389-.762-.893-1.468-1.463-2.105-.379-.426-.785-.824-1.219-1.193-.223-.19-.457-.369-.699-.533-.113-.074-.225-.149-.346-.217-.049-.03-.105-.056-.15-.094-.18-.144-.365-.284-.549-.429.238.098.469.21.689.338-.127-.194-.342-.331-.545-.436-.307-.159-.637-.276-.967-.378.113-.12.234-.228.346-.348.113-.12.223-.246.33-.372.127-.15.252-.3.375-.455l-1.156-.726-.48-.303c-.123.246-.277.476-.458.68-.18.203-.391.369-.6.539-.191.156-.379.316-.566.472-.047.04-.092.085-.145.12-.025.021-.096.004-.127.004H10.7c-.297.006-.596.029-.891.068-.058.007-.113.013-.175.008l-.178-.01c-.137-.008-.271-.016-.408-.016-.289-.004-.58 0-.871.025-.244.022-.489.055-.729.112-.238.056-.461.172-.66.312-.193.141-.387.32-.504.53s-.17.456-.213.689c-.135.013-.268.01-.4.016-.141.008-.277.021-.416.039-.27.037-.535.096-.795.18-.496.154-.945.405-1.336.75-.195.181-.377.38-.539.596-.02.025-.037.051-.063.068-.01.009-.027.016-.033.027-.015.027-.033.052-.051.076l-.134.212c-.168.285-.276.595-.383.906l-.045.123.033-.021c-.01.067-.02.135-.025.202l-.008.105v.053l-.066.013c-.135.026-.271.06-.4.101-.12.039-.233.086-.337.15-.105.066-.195.153-.285.239-.318.31-.562.698-.687 1.128-.1.348-.137.735-.059 1.092.021.09.049.188.107.262.074.09.199.126.313.095.131-.036.248-.124.371-.187l.314-.157c.455-.226.93-.446 1.438-.525.035-.005.1.067.131.091.049.037.1.074.148.104.109.069.221.129.334.181.262.114.541.174.818.231.502.105 1.014.171 1.529.18.207.004.416 0 .625-.018.225-.02.451-.049.678-.051.25-.005.496.025.74.055.254.031.51.068.764.105.518.079 1.031.169 1.543.279-.115.18-.227.362-.338.545-.008.013-.072 0-.088 0-.041-.002-.086-.002-.127 0-.074 0-.15.008-.225.019-.211.03-.416.083-.615.156-.49.181-.938.483-1.326.833-.221.195-.43.408-.609.641-.049.064-.094.129-.139.193.105-.023.211-.045.318-.07.061-.016.117-.027.176-.039.021-.008.029-.016.049-.027.219-.203.451-.393.695-.563.111-.08.225-.154.348-.215.166-.083.354-.131.533-.174-.33.18-.678.35-.977.584-.172.139-.328.291-.49.439l.654-.104c.01 0 .014-.004.023-.01l.17-.094c.113-.064.23-.125.346-.186.24-.123.482-.24.732-.34.236-.094.48-.178.732-.225.221-.046.428-.052.648 0 .342.074.67.232.969.414.021.014.035.033.055.014.016-.014.098-.074.09-.092l-.18-.334c-.016-.029-.023-.049-.051-.066l-.131-.077c-.176-.104-.348-.21-.51-.331-.037-.023-.078-.039-.082-.089-.004-.046.014-.093.029-.136.033-.09.08-.169.131-.248.033-.058.072-.111.109-.166.014-.018.01-.021.031-.014l.119.034c.236.077.469.159.711.22.27.068.545.123.82.176l.048.01c-.056-.03-.091-.09-.132-.136-.023-.03-.035-.05-.074-.06l-.105-.02c-.074-.016-.148-.03-.225-.049-.262-.057-.525-.119-.777-.209-.375-.13-.758-.232-1.145-.322-.486-.107-.977-.194-1.465-.275-.25-.041-.498-.074-.75-.109-.246-.034-.496-.07-.746-.087-.539-.034-1.074.087-1.615.081-.365-.004-.734-.055-1.096-.105l-.068-.009c.252-.093.5-.188.75-.285.236-.095.471-.192.705-.289.127-.052.25-.105.373-.157.113-.051.225-.1.328-.17.408-.279.676-.727.975-1.109.273-.361.586-.7.99-.908.129-.066.262-.117.4-.156-.283-.439-.549-.93-.623-1.455.029.012.061.025.094.037.035.012.064.016.072.045l.029.135c.026.091.053.176.086.262.072.191.16.375.26.551.219.396.484.766.766 1.12.539.686 1.145 1.305 1.736 1.941.145.158.275.324.41.492.15.187.303.375.457.561.121.141.234.285.356.426l.094.112c.016.018.037.026.061.036.604.3 1.213.6 1.822.895.434.209.869.42 1.309.623.236.109.471.219.711.32.029.014.066.029.098.039.016.01.029.016.047.023l.016.049c.027.072.051.145.076.217.049.141.098.279.148.416.33.912.695 1.814 1.145 2.676.346.656.715 1.301 1.09 1.939.4.68.811 1.354 1.225 2.025.332.535.666 1.072 1.008 1.605.146.227.289.459.439.688l.063.094.775-1.141.191-.283c.008-.006.082-.102.076-.109l-.156-.24c-.291-.451-.584-.898-.871-1.35l-.828-1.283-.105-.166.656.799 1.115 1.35c.121.146.236.289.354.438.219-.402.439-.801.662-1.201.086-.164.176-.33.266-.492M12.13 1.915c.309-.246.563-.563.757-.906l1.178.743.18.112c-.246.3-.496.604-.775.873-.035.034-.074.069-.107.104-.021.025-.047.051-.07.075l-.033.038c-.023-.007-.045-.016-.068-.02-.146-.041-.289-.08-.436-.111-.292-.066-.589-.117-.886-.152-.191-.021-.385-.04-.578-.058.275-.234.557-.467.838-.698m-1.754 1.37c.232-.096.482-.15.73-.191.49-.082.994-.094 1.489-.04.354.038.701.108 1.041.21l-.141.115-.225-.061c-.141-.029-.281-.06-.422-.082-.246-.037-.497-.06-.749-.065-.461-.008-.926.042-1.371.159-.301.078-.604.188-.879.332-.286.154-.555.346-.78.582-.134.137-.257.289-.359.455-.057.09-.105.18-.15.275-.024.047-.043.096-.061.144l-.029.075c-.004.015-.008.026-.012.038L8.39 5.22l-.082-.011c.234-.719.763-1.286 1.418-1.649.207-.114.426-.218.65-.279m-3.93.374c.266-.381.686-.649 1.139-.743.502-.101 1.016-.119 1.525-.107-.525.131-1.05.326-1.488.652-.34.075-.664.24-.934.459-.09.071-.17.15-.246.236-.035.037-.066.075-.097.116-.014.015-.027.03-.037.049h-.084c.023-.135.055-.27.098-.4.029-.09.064-.18.119-.26m.882.056c-.145.143-.27.303-.391.469-.047.069-.098.153-.18.191-.085.039-.194-.005-.28-.031.224-.279.521-.494.851-.629M2.308 6.585c.08-.16.182-.315.275-.465.016-.027.053-.046.074-.063.049-.034.096-.069.143-.106.309-.225.621-.446.939-.656.166-.107.33-.213.502-.307.182-.101.369-.18.565-.244.347-.112.707-.189 1.068-.244.174-.025.361-.057.531-.015-.33.188-.658.375-.99.558-.342.191-.689.367-1.035.552-.332.18-.66.375-.981.577-.336.206-.67.419-1.002.629-.08.051-.16.105-.24.155.045-.125.09-.251.151-.371m1.009 3.056c-.029.056-.134.042-.187.042-.094 0-.186 0-.279.006-.258.015-.51.06-.758.138-.475.147-.922.375-1.365.604-.1.055-.203.135-.316.162-.061.015-.131-.008-.166-.063-.035-.061-.053-.131-.064-.198-.027-.12-.035-.245-.033-.368 0-.33.076-.66.215-.96.096-.21.221-.401.371-.574.15-.175.326-.351.539-.45.355-.162.775-.213 1.164-.235.072-.005.145-.007.217-.007.1 0 .217-.016.311.019.074.027.121.105.15.173.045.105.074.225.1.336.061.26.123.525.145.791.01.119.016.239.004.359-.009.073-.014.156-.05.223m2.829-1.973c-.194.123-.403.218-.616.298-.215.077-.436.144-.66.181-.097.013-.195.025-.293.021-.101-.003-.193-.036-.293-.067-.195-.063-.393-.13-.57-.233-.064-.039-.135-.084-.174-.15-.029-.052-.029-.116-.023-.174.012-.231.094-.458.203-.66.187-.343.482-.612.84-.775.879-.396 1.865-.029 2.611.49l.08.061c-.154.165-.311.321-.473.477-.199.189-.404.381-.634.531M8.31 5.739c-.475-.203-.926-.458-1.356-.738.449.188.934.3 1.414.37.258.037.521.072.781.08.281.008.564-.021.84-.075.545-.103 1.068-.305 1.566-.551.494-.245.964-.537 1.413-.859.217-.155.43-.315.633-.487.021-.016.174-.161.184-.154l.041.031.537.416c.328.254.658.51.988.762-.906.326-1.826.629-2.752.904-.519.156-1.038.301-1.565.42-.412.098-.834.189-1.256.21-.507.022-1.006-.135-1.47-.33m8.85 3.942c.076.021.145.045.215.067l.094.033c.016.006.031.015.045.02l.021.06c.045.146.09.289.139.432-.15-.127-.301-.254-.451-.379l-.09-.074c-.021-.016-.045-.021-.029-.046l.059-.114m-.671 1.444l.035-.063.027-.046c.012-.018.008-.022.029-.012.129.054.258.111.385.17.24.11.475.23.703.364.107.065.217.135.322.205l.15.105.074.057c.033.027.041.063.057.102.104.282.219.564.338.844.078.189.162.379.248.566-.293-.371-.621-.715-.957-1.045-.346-.346-.705-.671-1.078-.981l-.323-.264m3.746 6.42l-.121.09.008.016.063.094.271.42.904 1.402c.311.48.621.963.932 1.445l.309.48.084.133c.004.004.029.041.029.045-.26.385-.523.77-.783 1.154-.027.037-.051.076-.074.111-.24-.373-.479-.744-.715-1.117-.4-.635-.795-1.277-1.184-1.916-.434-.709-.855-1.418-1.264-2.141-.383-.674-.75-1.361-1.059-2.076-.301-.697-.563-1.408-.811-2.121.486.193.98.367 1.48.521.145.045.289.09.436.127l.063.018c.008 0 .014-.039.018-.049.018-.064.031-.129.045-.195.031-.125.051-.254.074-.381.205.428.436.844.701 1.236.215.314.445.621.686.92.521.656 1.074 1.283 1.643 1.898.463.494.934.984 1.408 1.465l.389.389c.006.006.039.031.037.041l-.031.053-.148.275-.588 1.068c-.18-.219-.361-.436-.541-.658l-1.125-1.361c-.314-.387-.637-.773-.953-1.16l-.186-.225" }) + ] + } + ); +}); + +export { SiGerrit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.cjs new file mode 100644 index 000000000..543925d7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8A2BE2"; +const SiGetx = React__namespace.forwardRef(function SiGetx2({ title = "GetX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.643.934c-.302.067-.928.29-1.386.503-2.167 1.05-3.485 3.52-3.15 5.899a5.76 5.76 0 0 0 1.575 3.25c1.128 1.174 2.469 1.732 4.134 1.744 1.642 0 2.994-.57 4.133-1.743C19.39 7 17.055 1.113 12.095.867c-.492-.022-1.14 0-1.452.067zM13.77 3.17c.905.335 1.966 1.374 2.178 2.145.213.793.1 1.82-.29 2.547-.86 1.575-2.816 2.726-3.989 2.346-.536-.179-1.25-.994-1.642-1.855C9.18 6.464 8.9 4.833 9.291 4.073c.592-1.15 2.715-1.575 4.48-.904ZM4.107 11.86c-2.838.916-4.513 3.598-4.022 6.48.48 2.86 3.173 4.994 6.033 4.77 2.033-.145 3.765-1.24 4.681-2.96.503-.96.681-1.676.681-2.815 0-2.045-.971-3.799-2.737-4.894-1.24-.782-3.25-1.028-4.636-.58Zm2.436 1.799c2.737.447 4.222 2.737 3.15 4.882-.436.86-1.352 1.732-2.29 2.179-.637.29-.838.335-1.43.29-1.028-.067-1.486-.48-2.045-1.877-.67-1.642-.95-3.608-.614-4.245.413-.771 1.117-1.162 2.413-1.33.067 0 .424.045.816.101zm9.842-1.743c-3.34 1.173-4.837 4.882-3.273 8.077.435.894 1.463 1.944 2.38 2.425 2.356 1.24 4.904.871 6.78-.995 3.05-3.016 1.9-8.077-2.178-9.507-1.039-.368-2.67-.368-3.709 0zm3.419 1.978c1.184.38 2.368 1.485 2.636 2.48.179.659.078 1.609-.223 2.234-.548 1.129-1.91 2.145-3.251 2.413-1.81.358-2.737-.882-3.15-4.19-.247-1.999.3-2.915 1.91-3.16.67-.101 1.25-.046 2.078.223z" }) + ] + } + ); +}); + +exports.default = SiGetx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.d.ts new file mode 100644 index 000000000..049c3770f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8A2BE2"; +declare const SiGetx: IconType; +export { SiGetx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.mjs new file mode 100644 index 000000000..893da21f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGetx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8A2BE2"; +const SiGetx = React.forwardRef(function SiGetx2({ title = "GetX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.643.934c-.302.067-.928.29-1.386.503-2.167 1.05-3.485 3.52-3.15 5.899a5.76 5.76 0 0 0 1.575 3.25c1.128 1.174 2.469 1.732 4.134 1.744 1.642 0 2.994-.57 4.133-1.743C19.39 7 17.055 1.113 12.095.867c-.492-.022-1.14 0-1.452.067zM13.77 3.17c.905.335 1.966 1.374 2.178 2.145.213.793.1 1.82-.29 2.547-.86 1.575-2.816 2.726-3.989 2.346-.536-.179-1.25-.994-1.642-1.855C9.18 6.464 8.9 4.833 9.291 4.073c.592-1.15 2.715-1.575 4.48-.904ZM4.107 11.86c-2.838.916-4.513 3.598-4.022 6.48.48 2.86 3.173 4.994 6.033 4.77 2.033-.145 3.765-1.24 4.681-2.96.503-.96.681-1.676.681-2.815 0-2.045-.971-3.799-2.737-4.894-1.24-.782-3.25-1.028-4.636-.58Zm2.436 1.799c2.737.447 4.222 2.737 3.15 4.882-.436.86-1.352 1.732-2.29 2.179-.637.29-.838.335-1.43.29-1.028-.067-1.486-.48-2.045-1.877-.67-1.642-.95-3.608-.614-4.245.413-.771 1.117-1.162 2.413-1.33.067 0 .424.045.816.101zm9.842-1.743c-3.34 1.173-4.837 4.882-3.273 8.077.435.894 1.463 1.944 2.38 2.425 2.356 1.24 4.904.871 6.78-.995 3.05-3.016 1.9-8.077-2.178-9.507-1.039-.368-2.67-.368-3.709 0zm3.419 1.978c1.184.38 2.368 1.485 2.636 2.48.179.659.078 1.609-.223 2.234-.548 1.129-1.91 2.145-3.251 2.413-1.81.358-2.737-.882-3.15-4.19-.247-1.999.3-2.915 1.91-3.16.67-.101 1.25-.046 2.078.223z" }) + ] + } + ); +}); + +export { SiGetx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.cjs new file mode 100644 index 000000000..7948743ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#15171A"; +const SiGhost = React__namespace.forwardRef(function SiGhost2({ title = "Ghost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.256 2.313c2.47.005 5.116 2.008 5.898 2.962l.244.3c1.64 1.994 3.569 4.34 3.569 6.966 0 3.719-2.98 5.808-6.158 7.508-1.433.766-2.98 1.508-4.748 1.508-4.543 0-8.366-3.569-8.366-8.112 0-.706.17-1.425.342-2.15.122-.515.244-1.033.307-1.549.548-4.539 2.967-6.795 8.422-7.408a4.29 4.29 0 01.49-.026Z" }) + ] + } + ); +}); + +exports.default = SiGhost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.d.ts new file mode 100644 index 000000000..ff4b4a37b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#15171A"; +declare const SiGhost: IconType; +export { SiGhost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.mjs new file mode 100644 index 000000000..0df0126fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#15171A"; +const SiGhost = React.forwardRef(function SiGhost2({ title = "Ghost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.256 2.313c2.47.005 5.116 2.008 5.898 2.962l.244.3c1.64 1.994 3.569 4.34 3.569 6.966 0 3.719-2.98 5.808-6.158 7.508-1.433.766-2.98 1.508-4.748 1.508-4.543 0-8.366-3.569-8.366-8.112 0-.706.17-1.425.342-2.15.122-.515.244-1.033.307-1.549.548-4.539 2.967-6.795 8.422-7.408a4.29 4.29 0 01.49-.026Z" }) + ] + } + ); +}); + +export { SiGhost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.cjs new file mode 100644 index 000000000..182694dcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AEF0"; +const SiGhostery = React__namespace.forwardRef(function SiGhostery2({ title = "Ghostery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.058 19.93c-1.01-2.29-1.185-4.228-1.212-4.99V8.67C20.846 3.882 16.886 0 12 0S3.15 3.882 3.15 8.671v6.36c-.037.82-.236 2.7-1.207 4.899-1.306 2.955-.226 2.603.742 2.36.968-.242 3.13-1.192 3.805-.022.675 1.17 1.238 2.184 2.814 1.523 1.576-.663 2.318-.883 2.543-.883h.306c.225 0 .968.22 2.543.882 1.576.662 2.14-.353 2.814-1.522.676-1.17 2.837-.22 3.805.022.968.243 2.048.595.743-2.36M9.268 4.728c.953 0 1.725 1.198 1.725 2.676 0 1.478-.772 2.677-1.725 2.677-.953 0-1.726-1.198-1.726-2.677 0-1.478.773-2.676 1.726-2.676m2.73 10.697c-2.1 0-3.867-2.025-4.4-4.279 1.029 1.387 2.617 2.277 4.4 2.277 1.784 0 3.372-.89 4.401-2.277-.533 2.254-2.3 4.28-4.4 4.28m2.73-5.345c-.953 0-1.725-1.198-1.725-2.677 0-1.478.772-2.676 1.726-2.676.953 0 1.725 1.198 1.725 2.676 0 1.478-.772 2.677-1.725 2.677Z" }) + ] + } + ); +}); + +exports.default = SiGhostery; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.d.ts new file mode 100644 index 000000000..d559ee3a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AEF0"; +declare const SiGhostery: IconType; +export { SiGhostery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.mjs new file mode 100644 index 000000000..b32433bfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostery.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AEF0"; +const SiGhostery = React.forwardRef(function SiGhostery2({ title = "Ghostery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.058 19.93c-1.01-2.29-1.185-4.228-1.212-4.99V8.67C20.846 3.882 16.886 0 12 0S3.15 3.882 3.15 8.671v6.36c-.037.82-.236 2.7-1.207 4.899-1.306 2.955-.226 2.603.742 2.36.968-.242 3.13-1.192 3.805-.022.675 1.17 1.238 2.184 2.814 1.523 1.576-.663 2.318-.883 2.543-.883h.306c.225 0 .968.22 2.543.882 1.576.662 2.14-.353 2.814-1.522.676-1.17 2.837-.22 3.805.022.968.243 2.048.595.743-2.36M9.268 4.728c.953 0 1.725 1.198 1.725 2.676 0 1.478-.772 2.677-1.725 2.677-.953 0-1.726-1.198-1.726-2.677 0-1.478.773-2.676 1.726-2.676m2.73 10.697c-2.1 0-3.867-2.025-4.4-4.279 1.029 1.387 2.617 2.277 4.4 2.277 1.784 0 3.372-.89 4.401-2.277-.533 2.254-2.3 4.28-4.4 4.28m2.73-5.345c-.953 0-1.725-1.198-1.725-2.677 0-1.478.772-2.676 1.726-2.676.953 0 1.725 1.198 1.725 2.676 0 1.478-.772 2.677-1.725 2.677Z" }) + ] + } + ); +}); + +export { SiGhostery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.cjs new file mode 100644 index 000000000..27decb639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3551F3"; +const SiGhostty = React__namespace.forwardRef(function SiGhostty2({ title = "Ghostty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.7 0 2.4 4.3 2.4 9.6v11.146c0 1.772 1.45 3.267 3.222 3.254a3.18 3.18 0 0 0 1.955-.686 1.96 1.96 0 0 1 2.444 0 3.18 3.18 0 0 0 1.976.686c.75 0 1.436-.257 1.98-.686.715-.563 1.71-.587 2.419-.018.59.476 1.355.743 2.182.699 1.705-.094 3.022-1.537 3.022-3.244V9.601C21.6 4.3 17.302 0 12 0M6.069 6.562a1 1 0 0 1 .46.131l3.578 2.065v.002a.974.974 0 0 1 0 1.687L6.53 12.512a.975.975 0 0 1-.976-1.687L7.67 9.602 5.553 8.38a.975.975 0 0 1 .515-1.818m7.438 2.063h4.7a.975.975 0 1 1 0 1.95h-4.7a.975.975 0 0 1 0-1.95" }) + ] + } + ); +}); + +exports.default = SiGhostty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.d.ts new file mode 100644 index 000000000..095824052 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3551F3"; +declare const SiGhostty: IconType; +export { SiGhostty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.mjs new file mode 100644 index 000000000..b9cad11af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGhostty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3551F3"; +const SiGhostty = React.forwardRef(function SiGhostty2({ title = "Ghostty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.7 0 2.4 4.3 2.4 9.6v11.146c0 1.772 1.45 3.267 3.222 3.254a3.18 3.18 0 0 0 1.955-.686 1.96 1.96 0 0 1 2.444 0 3.18 3.18 0 0 0 1.976.686c.75 0 1.436-.257 1.98-.686.715-.563 1.71-.587 2.419-.018.59.476 1.355.743 2.182.699 1.705-.094 3.022-1.537 3.022-3.244V9.601C21.6 4.3 17.302 0 12 0M6.069 6.562a1 1 0 0 1 .46.131l3.578 2.065v.002a.974.974 0 0 1 0 1.687L6.53 12.512a.975.975 0 0 1-.976-1.687L7.67 9.602 5.553 8.38a.975.975 0 0 1 .515-1.818m7.438 2.063h4.7a.975.975 0 1 1 0 1.95h-4.7a.975.975 0 0 1 0-1.95" }) + ] + } + ); +}); + +export { SiGhostty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.cjs new file mode 100644 index 000000000..f611a424f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8C8073"; +const SiGimp = React__namespace.forwardRef(function SiGimp2({ title = "GIMP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.496 8.608a2.175 2.385 0 0 0-2.175 2.384 2.175 2.385 0 0 0 2.175 2.385 2.175 2.385 0 0 0 2.175-2.385 2.175 2.385 0 0 0-2.175-2.384zm0 .15a.934.934 0 0 1 .933.935.934.934 0 0 1-.933.934.934.934 0 0 1-.934-.934.934.934 0 0 1 .934-.934zm4.903 9.433a.314.314 0 0 0-.094.014c-.278.08-.642.735-.563 1.013.079.278.356.152.524.245.149.083.196.33.4.329-.033.446.125.903.398 1.231.464.564 1.173.576 1.627.68.453.103.789.38.955.683h-.01c.14.253.413-.965.313-1.81-.199-1.692-1.827-2.294-2.657-1.856-.095-.218-.349-.112-.507-.2-.147-.082-.195-.323-.39-.329zM2.01 8.207a2.938 2.279 78.561 0 0-.296.036 2.938 2.279 78.561 0 0-1.637 3.343 2.938 2.279 78.561 0 0 2.824 2.412 2.938 2.279 78.561 0 0 1.637-3.343A2.938 2.279 78.561 0 0 2.01 8.207zm.02.182a1.24 1.24 89.982 0 1 1.24 1.24 1.24 1.24 89.982 0 1-1.24 1.241 1.24 1.24 89.982 0 1-1.24-1.24 1.24 1.24 89.982 0 1 1.24-1.24zm7.296.619a1.61 1.957 0 0 0-1.61 1.957 1.61 1.957 0 0 0 1.61 1.957 1.61 1.957 0 0 0 1.61-1.957 1.61 1.957 0 0 0-1.61-1.957zm.01.142a.734.734 0 0 1 .733.733.734.734 0 0 1-.733.734.734.734 0 0 1-.734-.734.734.734 0 0 1 .734-.733zm13.785-7.57c-.082.01-.178.056-.278.184-2.255 3.385-5.54 4.902-7.936 5.521a3.513 3.586 0 0 1 3.25 3.576 3.513 3.586 0 0 1-3.513 3.586 3.513 3.586 0 0 1-3.375-2.595 2.676 2.998 0 0 1-2.52 2 2.676 2.998 0 0 1-2.676-2.998 2.676 2.998 0 0 1 2.675-2.999 2.676 2.998 0 0 1 2.517 2.037 3.513 3.586 0 0 1 1.878-2.27c-1.887.246-2.89-.025-4.335-.649-1.024-.56-1.722-1.173-2.48-2.359-.036-.055-.11-.086-.16-.025-.18.241-.97 5.723-.98 6.227-.033 1.632-.706 3.593-2.73 3.661 1.864 3.799 5.919 5.465 10.586 5.397 1.404.01 3.329-.332 5.171-1.243a213.84 213.84 0 0 1-1.568-.996c-1.347.788-2.935 1.09-4.674 1.019-2.217-.09-1.847-.732-1.36-.667 3.574.506 5.82-.624 7.315-2.547a34.596 34.596 0 0 1-.556-.377c-.164-.114.032-.291.385-.304h.04c.205-.002.458.056.722.206.757.433.783.965.535 1.081-.08.037-.263-.048-.439-.151-.255.329-.53.622-.818.887h.01c.668.29 1.568.684 2.005.89a9.634 9.634 0 0 0 3.017-3.574c2.18-4.449.652-12.176.614-12.29-.039-.112-.15-.211-.242-.226h-.076z" }) + ] + } + ); +}); + +exports.default = SiGimp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.d.ts new file mode 100644 index 000000000..c575afee9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8C8073"; +declare const SiGimp: IconType; +export { SiGimp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.mjs new file mode 100644 index 000000000..d70407a20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGimp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8C8073"; +const SiGimp = React.forwardRef(function SiGimp2({ title = "GIMP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.496 8.608a2.175 2.385 0 0 0-2.175 2.384 2.175 2.385 0 0 0 2.175 2.385 2.175 2.385 0 0 0 2.175-2.385 2.175 2.385 0 0 0-2.175-2.384zm0 .15a.934.934 0 0 1 .933.935.934.934 0 0 1-.933.934.934.934 0 0 1-.934-.934.934.934 0 0 1 .934-.934zm4.903 9.433a.314.314 0 0 0-.094.014c-.278.08-.642.735-.563 1.013.079.278.356.152.524.245.149.083.196.33.4.329-.033.446.125.903.398 1.231.464.564 1.173.576 1.627.68.453.103.789.38.955.683h-.01c.14.253.413-.965.313-1.81-.199-1.692-1.827-2.294-2.657-1.856-.095-.218-.349-.112-.507-.2-.147-.082-.195-.323-.39-.329zM2.01 8.207a2.938 2.279 78.561 0 0-.296.036 2.938 2.279 78.561 0 0-1.637 3.343 2.938 2.279 78.561 0 0 2.824 2.412 2.938 2.279 78.561 0 0 1.637-3.343A2.938 2.279 78.561 0 0 2.01 8.207zm.02.182a1.24 1.24 89.982 0 1 1.24 1.24 1.24 1.24 89.982 0 1-1.24 1.241 1.24 1.24 89.982 0 1-1.24-1.24 1.24 1.24 89.982 0 1 1.24-1.24zm7.296.619a1.61 1.957 0 0 0-1.61 1.957 1.61 1.957 0 0 0 1.61 1.957 1.61 1.957 0 0 0 1.61-1.957 1.61 1.957 0 0 0-1.61-1.957zm.01.142a.734.734 0 0 1 .733.733.734.734 0 0 1-.733.734.734.734 0 0 1-.734-.734.734.734 0 0 1 .734-.733zm13.785-7.57c-.082.01-.178.056-.278.184-2.255 3.385-5.54 4.902-7.936 5.521a3.513 3.586 0 0 1 3.25 3.576 3.513 3.586 0 0 1-3.513 3.586 3.513 3.586 0 0 1-3.375-2.595 2.676 2.998 0 0 1-2.52 2 2.676 2.998 0 0 1-2.676-2.998 2.676 2.998 0 0 1 2.675-2.999 2.676 2.998 0 0 1 2.517 2.037 3.513 3.586 0 0 1 1.878-2.27c-1.887.246-2.89-.025-4.335-.649-1.024-.56-1.722-1.173-2.48-2.359-.036-.055-.11-.086-.16-.025-.18.241-.97 5.723-.98 6.227-.033 1.632-.706 3.593-2.73 3.661 1.864 3.799 5.919 5.465 10.586 5.397 1.404.01 3.329-.332 5.171-1.243a213.84 213.84 0 0 1-1.568-.996c-1.347.788-2.935 1.09-4.674 1.019-2.217-.09-1.847-.732-1.36-.667 3.574.506 5.82-.624 7.315-2.547a34.596 34.596 0 0 1-.556-.377c-.164-.114.032-.291.385-.304h.04c.205-.002.458.056.722.206.757.433.783.965.535 1.081-.08.037-.263-.048-.439-.151-.255.329-.53.622-.818.887h.01c.668.29 1.568.684 2.005.89a9.634 9.634 0 0 0 3.017-3.574c2.18-4.449.652-12.176.614-12.29-.039-.112-.15-.211-.242-.226h-.076z" }) + ] + } + ); +}); + +export { SiGimp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGin.cjs new file mode 100644 index 000000000..e7a043789 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008ECF"; +const SiGin = React__namespace.forwardRef(function SiGin2({ title = "Gin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.836 23.977c-2.0587-.1046-3.3698-.3594-4.468-.8684-.131-.0606-.1153-.0272-.278-.596-.2755-.9627-.5534-2.128-.7848-3.29-.135-.678-.1535-.7614-.4716-2.1176-.5104-2.1762-.6402-2.831-.804-4.0557-.1064-.7962.1223-1.3156.2754-.6255.6026 2.7148 1.124 4.6969 1.6753 6.3684.1901.5764.1752.5525.3347.537.1095-.0105.1097-.0096.0278.1811-.1118.2604-.0573.3991.2913.7409.2612.256.2638.2712.0407.2387-.174-.0254-.1655-.0434-.1023.2138.0295.1199.0809.3448.1141.4997.2644 1.2314.6094 1.8336 1.1121 1.941 1.4684.3139 3.6012.4502 5.4794.3503 2.1817-.116 2.7037-.1989 3.3812-.5368.4582-.2286.8528-.6569.611-.6632-.1781-.0047-.1948-.0464-.0437-.109.329-.1365.468-.2818.4411-.4612-.008-.0535.0021-.1094.0422-.2318.1232-.3762.1439-.6822.1123-1.664-.0146-.4543-.0136-.487.021-.6574.0912-.449.132-.7886.199-1.6564.0474-.6126.0627-.766.1118-1.1186.0491-.3532.0648-.5537.0929-1.1868.0549-1.2385.116-1.7317.2287-1.8443.1884-.1885.1874-.289-.006-.5633-.2205-.3129-.2198-.4765.003-.711.1085-.1142.1132-.242.0391-1.0652-.019-.2114-.0394-.5284-.0452-.7045-.0073-.217-.0169-.3202-.0297-.3202-.041 0-.306.2264-.8894.76-.6635.6068-.8368.75-1.2089.9984-.7674.5123-1.5042.7633-2.7787.9462-1.2864.1847-2.8008.1411-3.7922-.1092-.6681-.1686-1.055-.3507-1.8085-.8512-.7058-.4688-.6674-1.2277.079-1.5624.3362-.1507.076-.3149-.5986-.3778-.5074-.0474-.2495-.1461.3996-.153.7887-.0083 1.349-.2884 2.0736-1.0363.3034-.3131.374-.3746.7782-.677.6428-.4808.8696-.6895.972-.8947.0776-.155.0733-.3082-.0094-.3397-.0271-.0103-.0404-.029-.0404-.0566 0-.0517.1571-.0442-2.5615-.122-2.8682-.0822-5.0395-.2118-6.1476-.367-.2164-.0304-.1133.1615.1509.2806.0836.0377.0914.0714.0198.0852-.1952.0377-.1844.01-.1284.3283.2173 1.235.5548 1.5418 1.2152 1.1047.1309-.0866.1765-.1027.4961-.1753.7-.1589 1.4556-.2464 2.5838-.2993 1.1633-.0545 1.2892-.0588 1.3032-.0448.0305.0304-.5599.1101-1.5935.215-1.07.1086-1.4287.1577-1.926.2638-.1342.0286-.2802.0521-.3245.0522-.2895.0008-.7114.2931-.8644.5988-.1926.3851-.0152.6153.5107.6627.1761.0159.6063.0923.6826.1213.0658.025.0525.0663-.0337.1044-.0932.0413-.093.039-.0085.0922.1688.1066.0969.0998-.37-.0351-.7785-.225-.9368-.2379-.723-.0588.1015.085.0972.1096-.0132.076-.1712-.0519-.1676-.0865-.0636.6052.1332.8858.031.8419-.1545-.0665-.2554-1.25-.6686-2.3144-.484-1.2466.04.2318.0853.4146.2197.888.1811.638.2872 1.2493.2237 1.2885-.0297.0184-.1904-.4844-.3028-.947-.124-.5102-.1767-.8005-.4328-2.3821-.1298-.802-.2425-1.3464-.378-1.8265-.0773-.2736-.0497-.403.128-.6008.3644-.4052 1.2746-.6528 1.2746-.3466 0 .147-.187.2458-.6436.3402-.5204.1076-.5632.1751-.2897.4578.2486.2569 1.8142.4808 3.7254.5327.3663.01.9119.0259 1.2124.0354 2.1339.0674 4.3877.0663 4.5184-.0022.015-.0079.0837-.105.1527-.2158.2825-.454.552-.795.9445-1.1954.2782-.2838.2865-.2942.2417-.3055-.132-.033-.1427-.5621-.0127-.6282.2383-.121.3542-.2918.7283-1.0725.198-.4133.3093-.5955.4777-.7825.1457-.1618.2569-.385.421-.8452.1614-.4524.2639-.6635.3799-.7823.223-.2285.2324-.103.0363.4903-.162.49-.7111 1.686-1.1268 2.4542-.355.656-.307.8451.1881.7427.0883-.0182.1706-.024.2462-.017.1306.0119.2723-.0174.6213-.1284.2892-.092.3264-.0769.201.0818-.0891.1128-.0887.1142.053.1799.1405.065.1301.0783-.0611.0783-.265 0-.4498.1059-.4766.2732-.0118.074-.0118.074-.1226-.0473-.3058-.335-.6452-.2808-.851.136-.072.1458-.1856.2528-.2684.2528-.0513 0-.0393-.0339.082-.232.293-.4784.2985-.5618.028-.4245-.308.1563-.7837.8261-.803 1.1308-.017.2655.2956.4083.5327.2434.9017-.627 1.348-.8748.9794-.5438-.0765.0687-.159.148-.1832.1762-.1744.2028-.3106.2933-.5656.3757-.8493.2745-.8493.6558 0 .6355.2265-.0055.4225-.0022.4774.0079.412.0756 2.2334-.2378 3.1616-.544.5878-.1938.6844-.4293.3229-.7867-.4647-.4592-.959-.3684-.6466.1189.1936.302-.3882.6232-1.3705.7565-.4425.06-.6113.0898-.7738.1363-.1108.0318-.4379.0719-.704.0863-.3523.019-.4642-.0274-.1925-.08.4158-.0804.5822-.105 1.0783-.1598 1.3303-.1468 1.7592-.3548 1.7627-.8548.0019-.2777-.2227-.3198-.8506-.1598-.201.0513-.2093.0324-.0248-.0564.2821-.1358.2599-.2519-.0717-.374-.1107-.0408-.1107-.0408.0516-.0538.7422-.0595 1.1048-.3546.7593-.6182-.0677-.0516-.0657-.0685.01-.0837.029-.0058.086-.0344.1266-.0635.1634-.1174.2997.246.1556.4144-.198.2313-.0359.5312.357.6602.403.1323.5887-.0506.4222-.4158-.03-.0657-.089-.2578-.131-.4269-.2398-.9631-.7595-2.0407-.9843-2.0407-.0216 0-.036-.0196-.0475-.064-.2147-.8343-.2878-.9893-.5348-1.1333-.4195-.2445-.551-.6687-.1636-.5275.8873.3236 1.8223 1.4494 2.5325 3.0495.5654 1.274.6932 3.168.3239 4.8039-.203.8994-.363 2.6656-.5462 6.0301-.0749 1.3745-.1492 2.3884-.2385 3.2532-.0223.216-.0453.4696-.051.5635-.0438.708-.2035 2.0275-.3607 2.98-.033.1995-.0473.3696-.0585.6915-.0422 1.2204-.4315 1.8227-1.2581 1.9468a2.7189 2.7189 0 0 0-.325.075c-1.0801.3317-2.166.471-4.3425.557-.728.0288-.7087.0288-1.3064-.0016zm.2615-.2356c.0474-.0474-.2411-.0896-.8847-.1297-.1644-.0102-.3527-.026-.4184-.0352-.4177-.058-1.1698-.1029-1.1698-.0699 0 .1276 2.3564.3514 2.473.2348zm-4.0952-.8634c0-.0406-.3364-1.3698-.4044-1.5977-.1252-.42-.3766-1.0159-.4231-1.003-.0697.0192.0988.9043.2754 1.447.1744.5358.5521 1.3252.5521 1.1537zm-.5246-.1305c.0433-.2745-.0418-.6732-.3351-1.5704-.176-.5382-.2341-.7414-.276-.9641-.0441-.2356-.0402-.2248-.0799-.2188-.1655.0246-.151.285.054.9752.1484.4996.1654.5673.1879.7506.064.5203.4057 1.3021.449 1.0275zm-.7904-3.2816c-.0001-.3436-.0485-.6234-.2044-1.1826-.1744-.6253-.2435-.896-.2825-1.1058-.0745-.4017-.2292-.621-.1807-.2564.026.1948.215 1.1792.2665 1.3878.0233.094.0618.3268.0857.5174.0662.5282.1018.6734.197.8049.0977.1347.1185.1055.1184-.1653zm5.7823-8.2201c.047-.0521.0384-.1659-.0348-.4592-.1-.3999-.0996-.5862.0013-.7401.1707-.2607-.8164-.3768-1.398-.1645-.53.1934-.648.5174-.3192.877.1613.1766-.0747.272-.2973.1203-.3041-.2074-.2766-.8612.0363-.8612.0362 0 .106-.073.106-.111 0-.0561-.0674-.1035-.211-.148-.1984-.0617-.1974-.0741.0085-.108.4832-.0793.939-.4219 1.6589-1.2467.935-1.0714 1.3075-1.3927.8116-.7002-.2504.3497-.4599.592-.8783 1.016-.7501.7603-.8434.9222-.5313.9222.472 0 .6826-.1937 1.1142-1.0246.4076-.7848.6084-.9866.8963-.901.1217.0362.121.0386-.2186.8754-.314.7736-.2997.986.0543.8106.1767-.0875.17-.0762.2403-.4093.173-.8206.5299-1.9468.617-1.9468.1153 0 .0463.5054-.1424 1.0417-.2842.8081-.298 1.0686-.0684 1.2959.2501.2476.5305.202.7474-.1216.0793-.1184.1145-.1023.1763.0809.046.1363.0536.1408.244.1434.2617.0037.6195-.091.6392-.169.0064-.0254.0206-.0402.035-.0364.1408.0369.1388-.1065-.0025-.1673-.0918-.0395-.0998-.0645-.032-.0992.1499-.0764.3061.038.3061.2243 0 .0784.0186.0885.205.11 1.2175.1412 1.9496-.176 2.364-1.024.0706-.1445.205-.4086.299-.587.3348-.6367.4726-1.1026.4121-1.3938-.0352-.1699-.0169-.164-.3792-.12-1.8582.2256-3.5292.3794-4.933.454-.2677.0141-.5553.0298-.639.0348-.1525.009-.1525.009-.4526.3035-.4846.4754-.9042.8606-1.7005 1.5606-.2254.1982-.4329.3853-.461.4158-.0804.0868-.3442.2954-.7344.5806-.815.5957-1.2381 1.0543-1.0973 1.189.1613.1545 1.371.3751 2.378.4339.1692.0099.4035.029.521.0426.3097.036.319.0367.4797.0397.1296.0024.1506-.0015.1793-.0333zm4.9335-2.6883c-.6352-.103-1.2474-.4616-1.8828-1.103-.419-.4228-.3704-.4557.2256-.1524.4367.2222.5944.2777.7778.2734.0704-.0017.1626-.0037.2049-.0045.1903-.0038.9252.4017.8551.4718-.024.024-.159-.0192-.4196-.1342-.8347-.3685-1.3685-.3711-.8026-.0041.5953.3862 1.2494.571 1.64.4632.146-.0402.186-.0393.1923.0044.0242.1694-.3493.257-.7907.1854zm-3.5168 2.6903c.0746-.0187.3623-.0728.6394-.1204 1.31-.2247 1.6092-.3389 2.4225-.9243.552-.3972.6191-.7887.1254-.731-.5517.0644-.6125.1133-.7745.6229-.1885.5932-.272.665-.7748.6656-.5271.0006-.7398-.181-.889-.7596-.0528-.2045-.067-.2222-.2166-.2715-.5559-.1833-.8321.1858-.8322 1.112 0 .1586-.0097.1672-.1927.1722-.2981.0081-.3303-.091-.1542-.4747.2334-.509.2423-.6089.0614-.6855-.392-.1659-.7831.2546-.7091.7622.0663.4551.3933.6953.8023.5892.116-.0301.116-.0301.2182.0226.123.0634.1069.0622.274.0203zm1.822-.7768c.2327-.0208.3877-.1848.3877-.4102 0-.3258-.2825-.4682-.6292-.317-.1015.0442-.1223.0476-.2064.034-.3571-.0575-.5023.2388-.2548.52.1594.1812.2799.2108.7026.1732zm-3.2106-.9502c.373-.1904.8327-1.1638.6843-1.4494-.0437-.0844-.0598-.0769-.158.0736-.048.0734-.1677.2402-.266.3708-.458.6076-.5777.8672-.4559.989.0617.0617.0998.0648.1956.016zM10.302 21.2613c-.1018-.013-.4553-.0772-.7855-.1426-.6434-.1273-.9326-.1714-1.1234-.1714-.1763 0-.2162-.0341-.1669-.1425.0536-.1175.2172-.105.7572.0579.3561.1074.6022.167.7437.1803.061.0057.1494.021.1964.0338.1346.037 1.2056.1779 1.3516.1779.0044 0 .0033.0077-.0025.017-.0158.0257-.751.0177-.9706-.0104zm1.7587-.7484c-.2231-.1093-.2921-.2537-.3514-.7354-.0621-.5045-.1591-.66-.4529-.7263a4.0909 4.0909 0 0 1-.1152-.0274c-.0404-.011-.0716-.173-.0565-.2939.034-.2724.2048-.4916.7172-.9203.1127-.0943.2348-.2026.2713-.2405.3605-.3747 1.5306.1053 1.9894.816.3258.5047.322.6185-.028.8492-.4315.2844-.4933.3657-.4846.6372.003.0892.0065.2044.008.2561.0095.3235-.1771.4074-.6452.29-.3964-.0994-.5232-.0838-.6829.0842-.0597.0628-.0632.063-.1692.0111zm1.1381-.2254c.31-.1586.3749-.5512.1474-.892-.244-.3652-.5598-.2393-.5485.2187.0139.5637.1544.7995.4011.6733zm-.8657-.0823c.245-.1105.326-.537.1665-.8751-.1556-.3297-.4463-.1355-.5016.335a3.7214 3.7214 0 0 1-.033.2215c-.0671.345.062.4567.3681.3186zm-.5397-1.1367c.2714-.1816.542-.19 1.3747-.043.4775.0845.8627.0285.8621-.1253-.0023-.5725-.3483-.7422-1.2293-.603-.5545.0876-.7589.0879-1.0083.0016-.2747-.095-.6015.1652-.5532.4404.045.2565.3721.451.554.3293zm-2.0236-.8882c-1.242-.2611-2.0297-1.7477-1.3788-2.6022.1995-.2618.2624-.1704.1232.1789-.5807 1.4577 1.2303 2.8224 2.6353 1.9858 1.027-.6115 1.0144-2.1067-.0221-2.619a3.1056 3.1056 0 0 1-.1964-.1114c-.4015-.247-.8534-.2309-1.7165.0612-.504.1705-.4886.1706-.3296-.0011.6047-.6532 1.8983-.6335 2.6865.041 1.4324 1.2255.1142 3.4695-1.8016 3.0668zm5.0377-.1125c-1.9591-.3-2.6203-2.1867-1.1535-3.2915 1.3107-.9873 3.3222-.0095 3.2577 1.5836-.0398.9811-1.1207 1.8585-2.1042 1.708zm.4013-.3203c1.5031-.02 2.0059-1.9306.735-2.7936-.7982-.5421-2.0927-.295-2.5552.4876-.542.9171.0474 2.1467 1.1115 2.3185.0282.0045.1473.0043.2647-.0006.1174-.005.3172-.0103.444-.012zm-1.504-.8356c-.4402-.1245-.5095-.6544-.1381-1.0566.3355-.3633.817-.2062 1.0182.3322.0892.2387.058.2748-.2225.2581-.1793-.0106-.2639.0025-.2635.041 0 .0067.0603.0566.134.1109.2197.162.2247.2153.0267.2836-.144.0497-.4316.0657-.5548.0308zm-4.6535.1072c-.4663-.0444-.6306-.2972-.4418-.6793.224-.453.732-.5855 1.0146-.2645.4276.4858.1102 1.0088-.5728.9438zM5.2609 4.894c-.0061-.01.0088-.0465.0331-.0811.0243-.0347.0641-.0913.0885-.1258.0243-.0345.0483-.0939.0534-.132.0058-.043.0197-.0722.037-.0775.0706-.0214.6893-.1486.9498-.1953.6694-.12.851-.132 2.3652-.156 2.81-.0445 3.8851-.08 4.9246-.1626.3576-.0284.3387-.0321.4233.0843.1331.1833.0163.311-.3377.3693-.4252.0699-2.1378.0258-2.5939-.0668-.4837-.0983-.636-.0931-.7755.0264-.0812.0694-.0633.0696-.2775-.0018-.27-.09-.507-.1186-.8766-.106-.3002.0103-.417.0236-1.1357.129-.1925.0283-.4615.0599-.5976.0701-.4723.0356-1.013.1356-1.7562.325-.4978.1267-.507.1285-.5242.1008Zm11.997-1.2081c0-.0854.1102-.209.595-.6678.2691-.2547.4638-.4815.4638-.5401 0-.0556.0477-.0598.0665-.006.1044.2996-.1068.597-.6983.9833a31.133 31.133 0 0 0-.3207.2115c-.0847.0578-.1062.0617-.1062.019z" }) + ] + } + ); +}); + +exports.default = SiGin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGin.d.ts new file mode 100644 index 000000000..b6a8bda8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008ECF"; +declare const SiGin: IconType; +export { SiGin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGin.mjs new file mode 100644 index 000000000..8f2972e93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008ECF"; +const SiGin = React.forwardRef(function SiGin2({ title = "Gin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.836 23.977c-2.0587-.1046-3.3698-.3594-4.468-.8684-.131-.0606-.1153-.0272-.278-.596-.2755-.9627-.5534-2.128-.7848-3.29-.135-.678-.1535-.7614-.4716-2.1176-.5104-2.1762-.6402-2.831-.804-4.0557-.1064-.7962.1223-1.3156.2754-.6255.6026 2.7148 1.124 4.6969 1.6753 6.3684.1901.5764.1752.5525.3347.537.1095-.0105.1097-.0096.0278.1811-.1118.2604-.0573.3991.2913.7409.2612.256.2638.2712.0407.2387-.174-.0254-.1655-.0434-.1023.2138.0295.1199.0809.3448.1141.4997.2644 1.2314.6094 1.8336 1.1121 1.941 1.4684.3139 3.6012.4502 5.4794.3503 2.1817-.116 2.7037-.1989 3.3812-.5368.4582-.2286.8528-.6569.611-.6632-.1781-.0047-.1948-.0464-.0437-.109.329-.1365.468-.2818.4411-.4612-.008-.0535.0021-.1094.0422-.2318.1232-.3762.1439-.6822.1123-1.664-.0146-.4543-.0136-.487.021-.6574.0912-.449.132-.7886.199-1.6564.0474-.6126.0627-.766.1118-1.1186.0491-.3532.0648-.5537.0929-1.1868.0549-1.2385.116-1.7317.2287-1.8443.1884-.1885.1874-.289-.006-.5633-.2205-.3129-.2198-.4765.003-.711.1085-.1142.1132-.242.0391-1.0652-.019-.2114-.0394-.5284-.0452-.7045-.0073-.217-.0169-.3202-.0297-.3202-.041 0-.306.2264-.8894.76-.6635.6068-.8368.75-1.2089.9984-.7674.5123-1.5042.7633-2.7787.9462-1.2864.1847-2.8008.1411-3.7922-.1092-.6681-.1686-1.055-.3507-1.8085-.8512-.7058-.4688-.6674-1.2277.079-1.5624.3362-.1507.076-.3149-.5986-.3778-.5074-.0474-.2495-.1461.3996-.153.7887-.0083 1.349-.2884 2.0736-1.0363.3034-.3131.374-.3746.7782-.677.6428-.4808.8696-.6895.972-.8947.0776-.155.0733-.3082-.0094-.3397-.0271-.0103-.0404-.029-.0404-.0566 0-.0517.1571-.0442-2.5615-.122-2.8682-.0822-5.0395-.2118-6.1476-.367-.2164-.0304-.1133.1615.1509.2806.0836.0377.0914.0714.0198.0852-.1952.0377-.1844.01-.1284.3283.2173 1.235.5548 1.5418 1.2152 1.1047.1309-.0866.1765-.1027.4961-.1753.7-.1589 1.4556-.2464 2.5838-.2993 1.1633-.0545 1.2892-.0588 1.3032-.0448.0305.0304-.5599.1101-1.5935.215-1.07.1086-1.4287.1577-1.926.2638-.1342.0286-.2802.0521-.3245.0522-.2895.0008-.7114.2931-.8644.5988-.1926.3851-.0152.6153.5107.6627.1761.0159.6063.0923.6826.1213.0658.025.0525.0663-.0337.1044-.0932.0413-.093.039-.0085.0922.1688.1066.0969.0998-.37-.0351-.7785-.225-.9368-.2379-.723-.0588.1015.085.0972.1096-.0132.076-.1712-.0519-.1676-.0865-.0636.6052.1332.8858.031.8419-.1545-.0665-.2554-1.25-.6686-2.3144-.484-1.2466.04.2318.0853.4146.2197.888.1811.638.2872 1.2493.2237 1.2885-.0297.0184-.1904-.4844-.3028-.947-.124-.5102-.1767-.8005-.4328-2.3821-.1298-.802-.2425-1.3464-.378-1.8265-.0773-.2736-.0497-.403.128-.6008.3644-.4052 1.2746-.6528 1.2746-.3466 0 .147-.187.2458-.6436.3402-.5204.1076-.5632.1751-.2897.4578.2486.2569 1.8142.4808 3.7254.5327.3663.01.9119.0259 1.2124.0354 2.1339.0674 4.3877.0663 4.5184-.0022.015-.0079.0837-.105.1527-.2158.2825-.454.552-.795.9445-1.1954.2782-.2838.2865-.2942.2417-.3055-.132-.033-.1427-.5621-.0127-.6282.2383-.121.3542-.2918.7283-1.0725.198-.4133.3093-.5955.4777-.7825.1457-.1618.2569-.385.421-.8452.1614-.4524.2639-.6635.3799-.7823.223-.2285.2324-.103.0363.4903-.162.49-.7111 1.686-1.1268 2.4542-.355.656-.307.8451.1881.7427.0883-.0182.1706-.024.2462-.017.1306.0119.2723-.0174.6213-.1284.2892-.092.3264-.0769.201.0818-.0891.1128-.0887.1142.053.1799.1405.065.1301.0783-.0611.0783-.265 0-.4498.1059-.4766.2732-.0118.074-.0118.074-.1226-.0473-.3058-.335-.6452-.2808-.851.136-.072.1458-.1856.2528-.2684.2528-.0513 0-.0393-.0339.082-.232.293-.4784.2985-.5618.028-.4245-.308.1563-.7837.8261-.803 1.1308-.017.2655.2956.4083.5327.2434.9017-.627 1.348-.8748.9794-.5438-.0765.0687-.159.148-.1832.1762-.1744.2028-.3106.2933-.5656.3757-.8493.2745-.8493.6558 0 .6355.2265-.0055.4225-.0022.4774.0079.412.0756 2.2334-.2378 3.1616-.544.5878-.1938.6844-.4293.3229-.7867-.4647-.4592-.959-.3684-.6466.1189.1936.302-.3882.6232-1.3705.7565-.4425.06-.6113.0898-.7738.1363-.1108.0318-.4379.0719-.704.0863-.3523.019-.4642-.0274-.1925-.08.4158-.0804.5822-.105 1.0783-.1598 1.3303-.1468 1.7592-.3548 1.7627-.8548.0019-.2777-.2227-.3198-.8506-.1598-.201.0513-.2093.0324-.0248-.0564.2821-.1358.2599-.2519-.0717-.374-.1107-.0408-.1107-.0408.0516-.0538.7422-.0595 1.1048-.3546.7593-.6182-.0677-.0516-.0657-.0685.01-.0837.029-.0058.086-.0344.1266-.0635.1634-.1174.2997.246.1556.4144-.198.2313-.0359.5312.357.6602.403.1323.5887-.0506.4222-.4158-.03-.0657-.089-.2578-.131-.4269-.2398-.9631-.7595-2.0407-.9843-2.0407-.0216 0-.036-.0196-.0475-.064-.2147-.8343-.2878-.9893-.5348-1.1333-.4195-.2445-.551-.6687-.1636-.5275.8873.3236 1.8223 1.4494 2.5325 3.0495.5654 1.274.6932 3.168.3239 4.8039-.203.8994-.363 2.6656-.5462 6.0301-.0749 1.3745-.1492 2.3884-.2385 3.2532-.0223.216-.0453.4696-.051.5635-.0438.708-.2035 2.0275-.3607 2.98-.033.1995-.0473.3696-.0585.6915-.0422 1.2204-.4315 1.8227-1.2581 1.9468a2.7189 2.7189 0 0 0-.325.075c-1.0801.3317-2.166.471-4.3425.557-.728.0288-.7087.0288-1.3064-.0016zm.2615-.2356c.0474-.0474-.2411-.0896-.8847-.1297-.1644-.0102-.3527-.026-.4184-.0352-.4177-.058-1.1698-.1029-1.1698-.0699 0 .1276 2.3564.3514 2.473.2348zm-4.0952-.8634c0-.0406-.3364-1.3698-.4044-1.5977-.1252-.42-.3766-1.0159-.4231-1.003-.0697.0192.0988.9043.2754 1.447.1744.5358.5521 1.3252.5521 1.1537zm-.5246-.1305c.0433-.2745-.0418-.6732-.3351-1.5704-.176-.5382-.2341-.7414-.276-.9641-.0441-.2356-.0402-.2248-.0799-.2188-.1655.0246-.151.285.054.9752.1484.4996.1654.5673.1879.7506.064.5203.4057 1.3021.449 1.0275zm-.7904-3.2816c-.0001-.3436-.0485-.6234-.2044-1.1826-.1744-.6253-.2435-.896-.2825-1.1058-.0745-.4017-.2292-.621-.1807-.2564.026.1948.215 1.1792.2665 1.3878.0233.094.0618.3268.0857.5174.0662.5282.1018.6734.197.8049.0977.1347.1185.1055.1184-.1653zm5.7823-8.2201c.047-.0521.0384-.1659-.0348-.4592-.1-.3999-.0996-.5862.0013-.7401.1707-.2607-.8164-.3768-1.398-.1645-.53.1934-.648.5174-.3192.877.1613.1766-.0747.272-.2973.1203-.3041-.2074-.2766-.8612.0363-.8612.0362 0 .106-.073.106-.111 0-.0561-.0674-.1035-.211-.148-.1984-.0617-.1974-.0741.0085-.108.4832-.0793.939-.4219 1.6589-1.2467.935-1.0714 1.3075-1.3927.8116-.7002-.2504.3497-.4599.592-.8783 1.016-.7501.7603-.8434.9222-.5313.9222.472 0 .6826-.1937 1.1142-1.0246.4076-.7848.6084-.9866.8963-.901.1217.0362.121.0386-.2186.8754-.314.7736-.2997.986.0543.8106.1767-.0875.17-.0762.2403-.4093.173-.8206.5299-1.9468.617-1.9468.1153 0 .0463.5054-.1424 1.0417-.2842.8081-.298 1.0686-.0684 1.2959.2501.2476.5305.202.7474-.1216.0793-.1184.1145-.1023.1763.0809.046.1363.0536.1408.244.1434.2617.0037.6195-.091.6392-.169.0064-.0254.0206-.0402.035-.0364.1408.0369.1388-.1065-.0025-.1673-.0918-.0395-.0998-.0645-.032-.0992.1499-.0764.3061.038.3061.2243 0 .0784.0186.0885.205.11 1.2175.1412 1.9496-.176 2.364-1.024.0706-.1445.205-.4086.299-.587.3348-.6367.4726-1.1026.4121-1.3938-.0352-.1699-.0169-.164-.3792-.12-1.8582.2256-3.5292.3794-4.933.454-.2677.0141-.5553.0298-.639.0348-.1525.009-.1525.009-.4526.3035-.4846.4754-.9042.8606-1.7005 1.5606-.2254.1982-.4329.3853-.461.4158-.0804.0868-.3442.2954-.7344.5806-.815.5957-1.2381 1.0543-1.0973 1.189.1613.1545 1.371.3751 2.378.4339.1692.0099.4035.029.521.0426.3097.036.319.0367.4797.0397.1296.0024.1506-.0015.1793-.0333zm4.9335-2.6883c-.6352-.103-1.2474-.4616-1.8828-1.103-.419-.4228-.3704-.4557.2256-.1524.4367.2222.5944.2777.7778.2734.0704-.0017.1626-.0037.2049-.0045.1903-.0038.9252.4017.8551.4718-.024.024-.159-.0192-.4196-.1342-.8347-.3685-1.3685-.3711-.8026-.0041.5953.3862 1.2494.571 1.64.4632.146-.0402.186-.0393.1923.0044.0242.1694-.3493.257-.7907.1854zm-3.5168 2.6903c.0746-.0187.3623-.0728.6394-.1204 1.31-.2247 1.6092-.3389 2.4225-.9243.552-.3972.6191-.7887.1254-.731-.5517.0644-.6125.1133-.7745.6229-.1885.5932-.272.665-.7748.6656-.5271.0006-.7398-.181-.889-.7596-.0528-.2045-.067-.2222-.2166-.2715-.5559-.1833-.8321.1858-.8322 1.112 0 .1586-.0097.1672-.1927.1722-.2981.0081-.3303-.091-.1542-.4747.2334-.509.2423-.6089.0614-.6855-.392-.1659-.7831.2546-.7091.7622.0663.4551.3933.6953.8023.5892.116-.0301.116-.0301.2182.0226.123.0634.1069.0622.274.0203zm1.822-.7768c.2327-.0208.3877-.1848.3877-.4102 0-.3258-.2825-.4682-.6292-.317-.1015.0442-.1223.0476-.2064.034-.3571-.0575-.5023.2388-.2548.52.1594.1812.2799.2108.7026.1732zm-3.2106-.9502c.373-.1904.8327-1.1638.6843-1.4494-.0437-.0844-.0598-.0769-.158.0736-.048.0734-.1677.2402-.266.3708-.458.6076-.5777.8672-.4559.989.0617.0617.0998.0648.1956.016zM10.302 21.2613c-.1018-.013-.4553-.0772-.7855-.1426-.6434-.1273-.9326-.1714-1.1234-.1714-.1763 0-.2162-.0341-.1669-.1425.0536-.1175.2172-.105.7572.0579.3561.1074.6022.167.7437.1803.061.0057.1494.021.1964.0338.1346.037 1.2056.1779 1.3516.1779.0044 0 .0033.0077-.0025.017-.0158.0257-.751.0177-.9706-.0104zm1.7587-.7484c-.2231-.1093-.2921-.2537-.3514-.7354-.0621-.5045-.1591-.66-.4529-.7263a4.0909 4.0909 0 0 1-.1152-.0274c-.0404-.011-.0716-.173-.0565-.2939.034-.2724.2048-.4916.7172-.9203.1127-.0943.2348-.2026.2713-.2405.3605-.3747 1.5306.1053 1.9894.816.3258.5047.322.6185-.028.8492-.4315.2844-.4933.3657-.4846.6372.003.0892.0065.2044.008.2561.0095.3235-.1771.4074-.6452.29-.3964-.0994-.5232-.0838-.6829.0842-.0597.0628-.0632.063-.1692.0111zm1.1381-.2254c.31-.1586.3749-.5512.1474-.892-.244-.3652-.5598-.2393-.5485.2187.0139.5637.1544.7995.4011.6733zm-.8657-.0823c.245-.1105.326-.537.1665-.8751-.1556-.3297-.4463-.1355-.5016.335a3.7214 3.7214 0 0 1-.033.2215c-.0671.345.062.4567.3681.3186zm-.5397-1.1367c.2714-.1816.542-.19 1.3747-.043.4775.0845.8627.0285.8621-.1253-.0023-.5725-.3483-.7422-1.2293-.603-.5545.0876-.7589.0879-1.0083.0016-.2747-.095-.6015.1652-.5532.4404.045.2565.3721.451.554.3293zm-2.0236-.8882c-1.242-.2611-2.0297-1.7477-1.3788-2.6022.1995-.2618.2624-.1704.1232.1789-.5807 1.4577 1.2303 2.8224 2.6353 1.9858 1.027-.6115 1.0144-2.1067-.0221-2.619a3.1056 3.1056 0 0 1-.1964-.1114c-.4015-.247-.8534-.2309-1.7165.0612-.504.1705-.4886.1706-.3296-.0011.6047-.6532 1.8983-.6335 2.6865.041 1.4324 1.2255.1142 3.4695-1.8016 3.0668zm5.0377-.1125c-1.9591-.3-2.6203-2.1867-1.1535-3.2915 1.3107-.9873 3.3222-.0095 3.2577 1.5836-.0398.9811-1.1207 1.8585-2.1042 1.708zm.4013-.3203c1.5031-.02 2.0059-1.9306.735-2.7936-.7982-.5421-2.0927-.295-2.5552.4876-.542.9171.0474 2.1467 1.1115 2.3185.0282.0045.1473.0043.2647-.0006.1174-.005.3172-.0103.444-.012zm-1.504-.8356c-.4402-.1245-.5095-.6544-.1381-1.0566.3355-.3633.817-.2062 1.0182.3322.0892.2387.058.2748-.2225.2581-.1793-.0106-.2639.0025-.2635.041 0 .0067.0603.0566.134.1109.2197.162.2247.2153.0267.2836-.144.0497-.4316.0657-.5548.0308zm-4.6535.1072c-.4663-.0444-.6306-.2972-.4418-.6793.224-.453.732-.5855 1.0146-.2645.4276.4858.1102 1.0088-.5728.9438zM5.2609 4.894c-.0061-.01.0088-.0465.0331-.0811.0243-.0347.0641-.0913.0885-.1258.0243-.0345.0483-.0939.0534-.132.0058-.043.0197-.0722.037-.0775.0706-.0214.6893-.1486.9498-.1953.6694-.12.851-.132 2.3652-.156 2.81-.0445 3.8851-.08 4.9246-.1626.3576-.0284.3387-.0321.4233.0843.1331.1833.0163.311-.3377.3693-.4252.0699-2.1378.0258-2.5939-.0668-.4837-.0983-.636-.0931-.7755.0264-.0812.0694-.0633.0696-.2775-.0018-.27-.09-.507-.1186-.8766-.106-.3002.0103-.417.0236-1.1357.129-.1925.0283-.4615.0599-.5976.0701-.4723.0356-1.013.1356-1.7562.325-.4978.1267-.507.1285-.5242.1008Zm11.997-1.2081c0-.0854.1102-.209.595-.6678.2691-.2547.4638-.4815.4638-.5401 0-.0556.0477-.0598.0665-.006.1044.2996-.1068.597-.6983.9833a31.133 31.133 0 0 0-.3207.2115c-.0847.0578-.1062.0617-.1062.019z" }) + ] + } + ); +}); + +export { SiGin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.cjs new file mode 100644 index 000000000..2a1a087d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6666"; +const SiGiphy = React__namespace.forwardRef(function SiGiphy2({ title = "GIPHY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.666 0v24h18.668V8.666l-2.668 2.668v10H5.334V2.668H10L12.666 0zm10.668 0v8h8V5.334h-2.668V2.668H16V0" }) + ] + } + ); +}); + +exports.default = SiGiphy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.d.ts new file mode 100644 index 000000000..e8469af7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6666"; +declare const SiGiphy: IconType; +export { SiGiphy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.mjs new file mode 100644 index 000000000..10dc1d621 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGiphy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6666"; +const SiGiphy = React.forwardRef(function SiGiphy2({ title = "GIPHY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.666 0v24h18.668V8.666l-2.668 2.668v10H5.334V2.668H10L12.666 0zm10.668 0v8h8V5.334h-2.668V2.668H16V0" }) + ] + } + ); +}); + +export { SiGiphy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGit.cjs new file mode 100644 index 000000000..7c276c40a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F05032"; +const SiGit = React__namespace.forwardRef(function SiGit2({ title = "Git", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.546 10.93L13.067.452c-.604-.603-1.582-.603-2.188 0L8.708 2.627l2.76 2.76c.645-.215 1.379-.07 1.889.441.516.515.658 1.258.438 1.9l2.658 2.66c.645-.223 1.387-.078 1.9.435.721.72.721 1.884 0 2.604-.719.719-1.881.719-2.6 0-.539-.541-.674-1.337-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348.713.721.713 1.883 0 2.6-.719.721-1.889.721-2.609 0-.719-.719-.719-1.879 0-2.598.182-.18.387-.316.605-.406V8.835c-.217-.091-.424-.222-.6-.401-.545-.545-.676-1.342-.396-2.009L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477c.604.604 1.582.604 2.186 0l10.43-10.43c.605-.603.605-1.582 0-2.187" }) + ] + } + ); +}); + +exports.default = SiGit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGit.d.ts new file mode 100644 index 000000000..3678654d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F05032"; +declare const SiGit: IconType; +export { SiGit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGit.mjs new file mode 100644 index 000000000..fabc24b3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F05032"; +const SiGit = React.forwardRef(function SiGit2({ title = "Git", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.546 10.93L13.067.452c-.604-.603-1.582-.603-2.188 0L8.708 2.627l2.76 2.76c.645-.215 1.379-.07 1.889.441.516.515.658 1.258.438 1.9l2.658 2.66c.645-.223 1.387-.078 1.9.435.721.72.721 1.884 0 2.604-.719.719-1.881.719-2.6 0-.539-.541-.674-1.337-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348.713.721.713 1.883 0 2.6-.719.721-1.889.721-2.609 0-.719-.719-.719-1.879 0-2.598.182-.18.387-.316.605-.406V8.835c-.217-.091-.424-.222-.6-.401-.545-.545-.676-1.342-.396-2.009L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477c.604.604 1.582.604 2.186 0l10.43-10.43c.605-.603.605-1.582 0-2.187" }) + ] + } + ); +}); + +export { SiGit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.cjs new file mode 100644 index 000000000..d2adf3455 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BBDDE5"; +const SiGitbook = React__namespace.forwardRef(function SiGitbook2({ title = "GitBook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.513 1.097c-.645 0-1.233.34-2.407 1.017L3.675 5.82A7.233 7.233 0 0 0 0 12.063v.236a7.233 7.233 0 0 0 3.667 6.238L7.69 20.86c2.354 1.36 3.531 2.042 4.824 2.042 1.292.001 2.47-.678 4.825-2.038l4.251-2.453c1.177-.68 1.764-1.02 2.087-1.579.323-.56.324-1.24.323-2.6v-2.63a1.04 1.04 0 0 0-1.558-.903l-8.728 5.024c-.587.337-.88.507-1.201.507-.323 0-.616-.168-1.204-.506l-5.904-3.393c-.297-.171-.446-.256-.565-.271a.603.603 0 0 0-.634.368c-.045.111-.045.282-.043.625.002.252 0 .378.025.494.053.259.189.493.387.667.089.077.198.14.416.266l6.315 3.65c.589.34.884.51 1.207.51.324 0 .617-.17 1.206-.509l7.74-4.469c.202-.116.302-.172.377-.13.075.044.075.16.075.392v1.193c0 .34.001.51-.08.649-.08.14-.227.224-.522.394l-6.382 3.685c-1.178.68-1.767 1.02-2.413 1.02-.646 0-1.236-.34-2.412-1.022l-5.97-3.452-.043-.025a4.106 4.106 0 0 1-2.031-3.52V11.7c0-.801.427-1.541 1.12-1.944a1.979 1.979 0 0 1 1.982-.001l4.946 2.858c1.174.679 1.762 1.019 2.407 1.02.645 0 1.233-.34 2.41-1.017l7.482-4.306a1.091 1.091 0 0 0 0-1.891L14.92 2.11c-1.175-.675-1.762-1.013-2.406-1.013Z" }) + ] + } + ); +}); + +exports.default = SiGitbook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.d.ts new file mode 100644 index 000000000..9189ec19d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BBDDE5"; +declare const SiGitbook: IconType; +export { SiGitbook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.mjs new file mode 100644 index 000000000..79aefccb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitbook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BBDDE5"; +const SiGitbook = React.forwardRef(function SiGitbook2({ title = "GitBook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.513 1.097c-.645 0-1.233.34-2.407 1.017L3.675 5.82A7.233 7.233 0 0 0 0 12.063v.236a7.233 7.233 0 0 0 3.667 6.238L7.69 20.86c2.354 1.36 3.531 2.042 4.824 2.042 1.292.001 2.47-.678 4.825-2.038l4.251-2.453c1.177-.68 1.764-1.02 2.087-1.579.323-.56.324-1.24.323-2.6v-2.63a1.04 1.04 0 0 0-1.558-.903l-8.728 5.024c-.587.337-.88.507-1.201.507-.323 0-.616-.168-1.204-.506l-5.904-3.393c-.297-.171-.446-.256-.565-.271a.603.603 0 0 0-.634.368c-.045.111-.045.282-.043.625.002.252 0 .378.025.494.053.259.189.493.387.667.089.077.198.14.416.266l6.315 3.65c.589.34.884.51 1.207.51.324 0 .617-.17 1.206-.509l7.74-4.469c.202-.116.302-.172.377-.13.075.044.075.16.075.392v1.193c0 .34.001.51-.08.649-.08.14-.227.224-.522.394l-6.382 3.685c-1.178.68-1.767 1.02-2.413 1.02-.646 0-1.236-.34-2.412-1.022l-5.97-3.452-.043-.025a4.106 4.106 0 0 1-2.031-3.52V11.7c0-.801.427-1.541 1.12-1.944a1.979 1.979 0 0 1 1.982-.001l4.946 2.858c1.174.679 1.762 1.019 2.407 1.02.645 0 1.233-.34 2.41-1.017l7.482-4.306a1.091 1.091 0 0 0 0-1.891L14.92 2.11c-1.175-.675-1.762-1.013-2.406-1.013Z" }) + ] + } + ); +}); + +export { SiGitbook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.cjs new file mode 100644 index 000000000..f9c7fe5f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA203E"; +const SiGitcode = React__namespace.forwardRef(function SiGitcode2({ title = "GitCode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387" }) + ] + } + ); +}); + +exports.default = SiGitcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.d.ts new file mode 100644 index 000000000..94a0d9282 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA203E"; +declare const SiGitcode: IconType; +export { SiGitcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.mjs new file mode 100644 index 000000000..8332abbf6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA203E"; +const SiGitcode = React.forwardRef(function SiGitcode2({ title = "GitCode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.585 4.586.486-.274q.032.17.06.303c.032.158.06.289.072.418.103 1.118.665 1.941 1.462 2.127 1.165.27 2.264-.177 2.856-1.164.711-1.184.403-2.634-.808-3.507C16.346.061 12.647-.609 8.663.56.072 3.095-2.867 13.65 3.23 20.122c2.608 2.769 5.92 3.964 9.68 3.873 4.817-.113 8.285-2.513 10.5-6.674 1.57-2.952-.137-6.178-3.405-6.849a21 21 0 0 0-5.675-.362 4.8 4.8 0 0 0-1.805.548c-.625.325-.805.998-.735 1.666.065.608.531.972 1.086 1.064 1.118.175 2.25.277 3.378.37.327.027.657.03.986.033.473.005.944.01 1.405.086 1.314.217 1.766 1.284 1.09 2.425a4.7 4.7 0 0 1-.577.766 6.55 6.55 0 0 1-3.318 1.964c-2.333.57-4.669.603-6.99-.13-2.645-.835-4.221-2.777-4.277-5.392A9.1 9.1 0 0 1 5.76 8.907c.36-.654.558-1.327.503-2.067a26 26 0 0 1-.05-.972l-.025-.565q.401.084.792.212c1.011.406 2.007.592 3.102.294a5.6 5.6 0 0 1 1.902-.122 4.76 4.76 0 0 0 2.921-.714c.218-.128.439-.251.681-.387" }) + ] + } + ); +}); + +export { SiGitcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.cjs new file mode 100644 index 000000000..f10dc5e2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E69AE"; +const SiGitconnected = React__namespace.forwardRef(function SiGitconnected2({ title = "Gitconnected", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.734 5.42C2.865 5.42 0 8.405 0 12.035c0 3.607 2.842 6.545 6.688 6.545 3.859 0 6.708-2.936 6.755-6.58l.002-.08c.03-2.19 1.504-3.967 3.797-3.967 2.268 0 3.87 1.838 3.87 4.082 0 2.222-1.483 4.037-3.823 4.037-1.334 0-2.43-.657-3.107-1.656a7.557 7.557 0 0 1-1.41 2.53c1.163 1.013 2.71 1.634 4.47 1.634 3.893 0 6.758-2.986 6.758-6.592 0-3.63-2.841-6.568-6.71-6.568-3.828 0-6.672 2.922-6.733 6.5-.015.04 0 .101 0 .115 0 2.222-1.482 4.037-3.823 4.037-2.244 0-3.845-1.84-3.845-4.084 0-2.221 1.482-4.035 3.799-4.035 1.232 0 2.254.554 2.943 1.41l1.385-2.449A6.75 6.75 0 0 0 6.734 5.42Z" }) + ] + } + ); +}); + +exports.default = SiGitconnected; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.d.ts new file mode 100644 index 000000000..fc1bb2bf6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E69AE"; +declare const SiGitconnected: IconType; +export { SiGitconnected as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.mjs new file mode 100644 index 000000000..e0dde62e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitconnected.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E69AE"; +const SiGitconnected = React.forwardRef(function SiGitconnected2({ title = "Gitconnected", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.734 5.42C2.865 5.42 0 8.405 0 12.035c0 3.607 2.842 6.545 6.688 6.545 3.859 0 6.708-2.936 6.755-6.58l.002-.08c.03-2.19 1.504-3.967 3.797-3.967 2.268 0 3.87 1.838 3.87 4.082 0 2.222-1.483 4.037-3.823 4.037-1.334 0-2.43-.657-3.107-1.656a7.557 7.557 0 0 1-1.41 2.53c1.163 1.013 2.71 1.634 4.47 1.634 3.893 0 6.758-2.986 6.758-6.592 0-3.63-2.841-6.568-6.71-6.568-3.828 0-6.672 2.922-6.733 6.5-.015.04 0 .101 0 .115 0 2.222-1.482 4.037-3.823 4.037-2.244 0-3.845-1.84-3.845-4.084 0-2.221 1.482-4.035 3.799-4.035 1.232 0 2.254.554 2.943 1.41l1.385-2.449A6.75 6.75 0 0 0 6.734 5.42Z" }) + ] + } + ); +}); + +export { SiGitconnected as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.cjs new file mode 100644 index 000000000..517206e4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#609926"; +const SiGitea = React__namespace.forwardRef(function SiGitea2({ title = "Gitea", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.209 4.603c-.247 0-.525.02-.84.088-.333.07-1.28.283-2.054 1.027C-.403 7.25.035 9.685.089 10.052c.065.446.263 1.687 1.21 2.768 1.749 2.141 5.513 2.092 5.513 2.092s.462 1.103 1.168 2.119c.955 1.263 1.936 2.248 2.89 2.367 2.406 0 7.212-.004 7.212-.004s.458.004 1.08-.394c.535-.324 1.013-.893 1.013-.893s.492-.527 1.18-1.73c.21-.37.385-.729.538-1.068 0 0 2.107-4.471 2.107-8.823-.042-1.318-.367-1.55-.443-1.627-.156-.156-.366-.153-.366-.153s-4.475.252-6.792.306c-.508.011-1.012.023-1.512.027v4.474l-.634-.301c0-1.39-.004-4.17-.004-4.17-1.107.016-3.405-.084-3.405-.084s-5.399-.27-5.987-.324c-.187-.011-.401-.032-.648-.032zm.354 1.832h.111s.271 2.269.6 3.597C5.549 11.147 6.22 13 6.22 13s-.996-.119-1.641-.348c-.99-.324-1.409-.714-1.409-.714s-.73-.511-1.096-1.52C1.444 8.73 2.021 7.7 2.021 7.7s.32-.859 1.47-1.145c.395-.106.863-.12 1.072-.12zm8.33 2.554c.26.003.509.127.509.127l.868.422-.529 1.075a.686.686 0 0 0-.614.359.685.685 0 0 0 .072.756l-.939 1.924a.69.69 0 0 0-.66.527.687.687 0 0 0 .347.763.686.686 0 0 0 .867-.206.688.688 0 0 0-.069-.882l.916-1.874a.667.667 0 0 0 .237-.02.657.657 0 0 0 .271-.137 8.826 8.826 0 0 1 1.016.512.761.761 0 0 1 .286.282c.073.21-.073.569-.073.569-.087.29-.702 1.55-.702 1.55a.692.692 0 0 0-.676.477.681.681 0 1 0 1.157-.252c.073-.141.141-.282.214-.431.19-.397.515-1.16.515-1.16.035-.066.218-.394.103-.814-.095-.435-.48-.638-.48-.638-.467-.301-1.116-.58-1.116-.58s0-.156-.042-.27a.688.688 0 0 0-.148-.241l.516-1.062 2.89 1.401s.48.218.583.619c.073.282-.019.534-.069.657-.24.587-2.1 4.317-2.1 4.317s-.232.554-.748.588a1.065 1.065 0 0 1-.393-.045l-.202-.08-4.31-2.1s-.417-.218-.49-.596c-.083-.31.104-.691.104-.691l2.073-4.272s.183-.37.466-.497a.855.855 0 0 1 .35-.077z" }) + ] + } + ); +}); + +exports.default = SiGitea; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.d.ts new file mode 100644 index 000000000..b0e48763c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#609926"; +declare const SiGitea: IconType; +export { SiGitea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.mjs new file mode 100644 index 000000000..73f5bb8fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitea.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#609926"; +const SiGitea = React.forwardRef(function SiGitea2({ title = "Gitea", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.209 4.603c-.247 0-.525.02-.84.088-.333.07-1.28.283-2.054 1.027C-.403 7.25.035 9.685.089 10.052c.065.446.263 1.687 1.21 2.768 1.749 2.141 5.513 2.092 5.513 2.092s.462 1.103 1.168 2.119c.955 1.263 1.936 2.248 2.89 2.367 2.406 0 7.212-.004 7.212-.004s.458.004 1.08-.394c.535-.324 1.013-.893 1.013-.893s.492-.527 1.18-1.73c.21-.37.385-.729.538-1.068 0 0 2.107-4.471 2.107-8.823-.042-1.318-.367-1.55-.443-1.627-.156-.156-.366-.153-.366-.153s-4.475.252-6.792.306c-.508.011-1.012.023-1.512.027v4.474l-.634-.301c0-1.39-.004-4.17-.004-4.17-1.107.016-3.405-.084-3.405-.084s-5.399-.27-5.987-.324c-.187-.011-.401-.032-.648-.032zm.354 1.832h.111s.271 2.269.6 3.597C5.549 11.147 6.22 13 6.22 13s-.996-.119-1.641-.348c-.99-.324-1.409-.714-1.409-.714s-.73-.511-1.096-1.52C1.444 8.73 2.021 7.7 2.021 7.7s.32-.859 1.47-1.145c.395-.106.863-.12 1.072-.12zm8.33 2.554c.26.003.509.127.509.127l.868.422-.529 1.075a.686.686 0 0 0-.614.359.685.685 0 0 0 .072.756l-.939 1.924a.69.69 0 0 0-.66.527.687.687 0 0 0 .347.763.686.686 0 0 0 .867-.206.688.688 0 0 0-.069-.882l.916-1.874a.667.667 0 0 0 .237-.02.657.657 0 0 0 .271-.137 8.826 8.826 0 0 1 1.016.512.761.761 0 0 1 .286.282c.073.21-.073.569-.073.569-.087.29-.702 1.55-.702 1.55a.692.692 0 0 0-.676.477.681.681 0 1 0 1.157-.252c.073-.141.141-.282.214-.431.19-.397.515-1.16.515-1.16.035-.066.218-.394.103-.814-.095-.435-.48-.638-.48-.638-.467-.301-1.116-.58-1.116-.58s0-.156-.042-.27a.688.688 0 0 0-.148-.241l.516-1.062 2.89 1.401s.48.218.583.619c.073.282-.019.534-.069.657-.24.587-2.1 4.317-2.1 4.317s-.232.554-.748.588a1.065 1.065 0 0 1-.393-.045l-.202-.08-4.31-2.1s-.417-.218-.49-.596c-.083-.31.104-.691.104-.691l2.073-4.272s.183-.37.466-.497a.855.855 0 0 1 .35-.077z" }) + ] + } + ); +}); + +export { SiGitea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.cjs new file mode 100644 index 000000000..8e3a6eaa5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C71D23"; +const SiGitee = React__namespace.forwardRef(function SiGitee2({ title = "Gitee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.984 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.016 0zm6.09 5.333c.328 0 .593.266.592.593v1.482a.594.594 0 0 1-.593.592H9.777c-.982 0-1.778.796-1.778 1.778v5.63c0 .327.266.592.593.592h5.63c.982 0 1.778-.796 1.778-1.778v-.296a.593.593 0 0 0-.592-.593h-4.15a.592.592 0 0 1-.592-.592v-1.482a.593.593 0 0 1 .593-.592h6.815c.327 0 .593.265.593.592v3.408a4 4 0 0 1-4 4H5.926a.593.593 0 0 1-.593-.593V9.778a4.444 4.444 0 0 1 4.445-4.444h8.296Z" }) + ] + } + ); +}); + +exports.default = SiGitee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.d.ts new file mode 100644 index 000000000..2b39a7ecf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C71D23"; +declare const SiGitee: IconType; +export { SiGitee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.mjs new file mode 100644 index 000000000..26427aed3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C71D23"; +const SiGitee = React.forwardRef(function SiGitee2({ title = "Gitee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.984 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.016 0zm6.09 5.333c.328 0 .593.266.592.593v1.482a.594.594 0 0 1-.593.592H9.777c-.982 0-1.778.796-1.778 1.778v5.63c0 .327.266.592.593.592h5.63c.982 0 1.778-.796 1.778-1.778v-.296a.593.593 0 0 0-.592-.593h-4.15a.592.592 0 0 1-.592-.592v-1.482a.593.593 0 0 1 .593-.592h6.815c.327 0 .593.265.593.592v3.408a4 4 0 0 1-4 4H5.926a.593.593 0 0 1-.593-.593V9.778a4.444 4.444 0 0 1 4.445-4.444h8.296Z" }) + ] + } + ); +}); + +export { SiGitee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.cjs new file mode 100644 index 000000000..ce2bc7b28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiGitextensions = React__namespace.forwardRef(function SiGitextensions2({ title = "Git Extensions", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.504 0l-4.631 4.875 2.533.004c0 2.604-1.327 4.58-3.32 6.16l-6.393 5.065c-2.559 2.027-3.859 4.392-3.859 7.886.01-.009 4.283.026 4.283 0 0-1.91.73-3.581 2.223-4.793l6.723-5.455c2.57-2.085 4.514-4.86 4.517-8.867h2.586zM1.834 4.873c0 3.78 1.833 6.398 4.148 8.518l1.11.88 3.222-2.554-1.078-.858C7.43 9.22 6.117 7.383 6.117 4.873c-1.423-.004-2.856 0-4.283 0zm12.592 10.115l-3.178 2.58.992.787c1.82 1.593 3.166 3.33 3.166 5.635h4.166c-.009-3.633-1.788-6.1-4.066-8.144-.356-.28-.722-.572-1.08-.858Z" }) + ] + } + ); +}); + +exports.default = SiGitextensions; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.d.ts new file mode 100644 index 000000000..881e04ad3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiGitextensions: IconType; +export { SiGitextensions as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.mjs new file mode 100644 index 000000000..6aa711034 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitextensions.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiGitextensions = React.forwardRef(function SiGitextensions2({ title = "Git Extensions", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.504 0l-4.631 4.875 2.533.004c0 2.604-1.327 4.58-3.32 6.16l-6.393 5.065c-2.559 2.027-3.859 4.392-3.859 7.886.01-.009 4.283.026 4.283 0 0-1.91.73-3.581 2.223-4.793l6.723-5.455c2.57-2.085 4.514-4.86 4.517-8.867h2.586zM1.834 4.873c0 3.78 1.833 6.398 4.148 8.518l1.11.88 3.222-2.554-1.078-.858C7.43 9.22 6.117 7.383 6.117 4.873c-1.423-.004-2.856 0-4.283 0zm12.592 10.115l-3.178 2.58.992.787c1.82 1.593 3.166 3.33 3.166 5.635h4.166c-.009-3.633-1.788-6.1-4.066-8.144-.356-.28-.722-.572-1.08-.858Z" }) + ] + } + ); +}); + +export { SiGitextensions as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.cjs new file mode 100644 index 000000000..c016c3346 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#80B3FF"; +const SiGitforwindows = React__namespace.forwardRef(function SiGitforwindows2({ title = "Git for Windows", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.976.0003a1.541 1.541 0 0 0-1.0928.4526L8.707 2.6287l2.7604 2.7604c.6417-.2166 1.377-.0715 1.8882.4399.514.5145.6583 1.2563.4362 1.9l.9101.9102 3.2768-3.2764L13.0684.4529A1.5394 1.5394 0 0 0 11.976.0003ZM7.638 3.698 5.926 5.4101l4.9095 4.9095c.1535.1536.332.267.5217.3423V8.831a1.8198 1.8198 0 0 1-.6024-.4011c-.5441-.5437-.6749-1.3422-.3958-2.0104Zm10.916 2.24-3.2765 3.2764 1.1743 1.1747c.6436-.2217 1.3862-.0782 1.9001.4366.7185.7183.7185 1.8823 0 2.6008-.7186.7187-1.8823.7187-2.6012 0-.5402-.5407-.674-1.3344-.4003-2l-1.1427-1.1423-.588.588c-.6036.604-.6036 1.5829 0 2.1865l4.9935 4.993 4.9342-4.9342c.6035-.6038.6035-1.5829 0-2.1865zM5.34 5.9956.4528 10.8825c-.6037.604-.6037 1.5828 0 2.1864l4.8395 4.8396 4.8873-4.8873c.6035-.6038.6035-1.5828 0-2.1865zm7.5293 2.9497v1.4986c.0516-.04.1048-.077.1522-.1243l.611-.611zm-1.5121 4.2224c-.2317.072-.4514.1927-.6349.376-1.6323 1.6325-3.2647 3.2649-4.8971 4.8972l5.1065 5.1062c.6033.6035 1.582.6035 2.1861 0l4.8967-4.8968-5.1065-5.1065c-.012-.012-.0264-.0202-.0387-.0317v1.9618a1.854 1.854 0 0 1 .4863.3477c.7183.7182.7183 1.8819 0 2.6012-.7185.7182-1.883.7182-2.6008 0-.7184-.7193-.7184-1.883 0-2.6012a1.8406 1.8406 0 0 1 .6024-.4012z" }) + ] + } + ); +}); + +exports.default = SiGitforwindows; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.d.ts new file mode 100644 index 000000000..4460b7bfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#80B3FF"; +declare const SiGitforwindows: IconType; +export { SiGitforwindows as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.mjs new file mode 100644 index 000000000..f169b9e1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitforwindows.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#80B3FF"; +const SiGitforwindows = React.forwardRef(function SiGitforwindows2({ title = "Git for Windows", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.976.0003a1.541 1.541 0 0 0-1.0928.4526L8.707 2.6287l2.7604 2.7604c.6417-.2166 1.377-.0715 1.8882.4399.514.5145.6583 1.2563.4362 1.9l.9101.9102 3.2768-3.2764L13.0684.4529A1.5394 1.5394 0 0 0 11.976.0003ZM7.638 3.698 5.926 5.4101l4.9095 4.9095c.1535.1536.332.267.5217.3423V8.831a1.8198 1.8198 0 0 1-.6024-.4011c-.5441-.5437-.6749-1.3422-.3958-2.0104Zm10.916 2.24-3.2765 3.2764 1.1743 1.1747c.6436-.2217 1.3862-.0782 1.9001.4366.7185.7183.7185 1.8823 0 2.6008-.7186.7187-1.8823.7187-2.6012 0-.5402-.5407-.674-1.3344-.4003-2l-1.1427-1.1423-.588.588c-.6036.604-.6036 1.5829 0 2.1865l4.9935 4.993 4.9342-4.9342c.6035-.6038.6035-1.5829 0-2.1865zM5.34 5.9956.4528 10.8825c-.6037.604-.6037 1.5828 0 2.1864l4.8395 4.8396 4.8873-4.8873c.6035-.6038.6035-1.5828 0-2.1865zm7.5293 2.9497v1.4986c.0516-.04.1048-.077.1522-.1243l.611-.611zm-1.5121 4.2224c-.2317.072-.4514.1927-.6349.376-1.6323 1.6325-3.2647 3.2649-4.8971 4.8972l5.1065 5.1062c.6033.6035 1.582.6035 2.1861 0l4.8967-4.8968-5.1065-5.1065c-.012-.012-.0264-.0202-.0387-.0317v1.9618a1.854 1.854 0 0 1 .4863.3477c.7183.7182.7183 1.8819 0 2.6012-.7185.7182-1.883.7182-2.6008 0-.7184-.7193-.7184-1.883 0-2.6012a1.8406 1.8406 0 0 1 .6024-.4012z" }) + ] + } + ); +}); + +export { SiGitforwindows as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.cjs new file mode 100644 index 000000000..358dd1735 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#181717"; +const SiGithub = React__namespace.forwardRef(function SiGithub2({ title = "GitHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" }) + ] + } + ); +}); + +exports.default = SiGithub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.d.ts new file mode 100644 index 000000000..21dc36dad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#181717"; +declare const SiGithub: IconType; +export { SiGithub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.mjs new file mode 100644 index 000000000..501213cfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#181717"; +const SiGithub = React.forwardRef(function SiGithub2({ title = "GitHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" }) + ] + } + ); +}); + +export { SiGithub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.cjs new file mode 100644 index 000000000..fdc6f19ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2088FF"; +const SiGithubactions = React__namespace.forwardRef(function SiGithubactions2({ title = "GitHub Actions", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.984 13.836a.5.5 0 0 1-.353-.146l-.745-.743a.5.5 0 1 1 .706-.708l.392.391 1.181-1.18a.5.5 0 0 1 .708.707l-1.535 1.533a.504.504 0 0 1-.354.146zm9.353-.147l1.534-1.532a.5.5 0 0 0-.707-.707l-1.181 1.18-.392-.391a.5.5 0 1 0-.706.708l.746.743a.497.497 0 0 0 .706-.001zM4.527 7.452l2.557-1.585A1 1 0 0 0 7.09 4.17L4.533 2.56A1 1 0 0 0 3 3.406v3.196a1.001 1.001 0 0 0 1.527.85zm2.03-2.436L4 6.602V3.406l2.557 1.61zM24 12.5c0 1.93-1.57 3.5-3.5 3.5a3.503 3.503 0 0 1-3.46-3h-2.08a3.503 3.503 0 0 1-3.46 3 3.502 3.502 0 0 1-3.46-3h-.558c-.972 0-1.85-.399-2.482-1.042V17c0 1.654 1.346 3 3 3h.04c.244-1.693 1.7-3 3.46-3 1.93 0 3.5 1.57 3.5 3.5S13.43 24 11.5 24a3.502 3.502 0 0 1-3.46-3H8c-2.206 0-4-1.794-4-4V9.899A5.008 5.008 0 0 1 0 5c0-2.757 2.243-5 5-5s5 2.243 5 5a5.005 5.005 0 0 1-4.952 4.998A2.482 2.482 0 0 0 7.482 12h.558c.244-1.693 1.7-3 3.46-3a3.502 3.502 0 0 1 3.46 3h2.08a3.503 3.503 0 0 1 3.46-3c1.93 0 3.5 1.57 3.5 3.5zm-15 8c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5S9 19.122 9 20.5zM5 9c2.206 0 4-1.794 4-4S7.206 1 5 1 1 2.794 1 5s1.794 4 4 4zm9 3.5c0-1.378-1.122-2.5-2.5-2.5S9 11.122 9 12.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5zm9 0c0-1.378-1.122-2.5-2.5-2.5S18 11.122 18 12.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5zm-13 8a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0zm2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0zm12 0c0 1.93-1.57 3.5-3.5 3.5a3.503 3.503 0 0 1-3.46-3.002c-.007.001-.013.005-.021.005l-.506.017h-.017a.5.5 0 0 1-.016-.999l.506-.017c.018-.002.035.006.052.007A3.503 3.503 0 0 1 20.5 17c1.93 0 3.5 1.57 3.5 3.5zm-1 0c0-1.378-1.122-2.5-2.5-2.5S18 19.122 18 20.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5z" }) + ] + } + ); +}); + +exports.default = SiGithubactions; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.d.ts new file mode 100644 index 000000000..88940a71b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2088FF"; +declare const SiGithubactions: IconType; +export { SiGithubactions as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.mjs new file mode 100644 index 000000000..16a8495cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubactions.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2088FF"; +const SiGithubactions = React.forwardRef(function SiGithubactions2({ title = "GitHub Actions", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.984 13.836a.5.5 0 0 1-.353-.146l-.745-.743a.5.5 0 1 1 .706-.708l.392.391 1.181-1.18a.5.5 0 0 1 .708.707l-1.535 1.533a.504.504 0 0 1-.354.146zm9.353-.147l1.534-1.532a.5.5 0 0 0-.707-.707l-1.181 1.18-.392-.391a.5.5 0 1 0-.706.708l.746.743a.497.497 0 0 0 .706-.001zM4.527 7.452l2.557-1.585A1 1 0 0 0 7.09 4.17L4.533 2.56A1 1 0 0 0 3 3.406v3.196a1.001 1.001 0 0 0 1.527.85zm2.03-2.436L4 6.602V3.406l2.557 1.61zM24 12.5c0 1.93-1.57 3.5-3.5 3.5a3.503 3.503 0 0 1-3.46-3h-2.08a3.503 3.503 0 0 1-3.46 3 3.502 3.502 0 0 1-3.46-3h-.558c-.972 0-1.85-.399-2.482-1.042V17c0 1.654 1.346 3 3 3h.04c.244-1.693 1.7-3 3.46-3 1.93 0 3.5 1.57 3.5 3.5S13.43 24 11.5 24a3.502 3.502 0 0 1-3.46-3H8c-2.206 0-4-1.794-4-4V9.899A5.008 5.008 0 0 1 0 5c0-2.757 2.243-5 5-5s5 2.243 5 5a5.005 5.005 0 0 1-4.952 4.998A2.482 2.482 0 0 0 7.482 12h.558c.244-1.693 1.7-3 3.46-3a3.502 3.502 0 0 1 3.46 3h2.08a3.503 3.503 0 0 1 3.46-3c1.93 0 3.5 1.57 3.5 3.5zm-15 8c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5S9 19.122 9 20.5zM5 9c2.206 0 4-1.794 4-4S7.206 1 5 1 1 2.794 1 5s1.794 4 4 4zm9 3.5c0-1.378-1.122-2.5-2.5-2.5S9 11.122 9 12.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5zm9 0c0-1.378-1.122-2.5-2.5-2.5S18 11.122 18 12.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5zm-13 8a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0zm2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0zm12 0c0 1.93-1.57 3.5-3.5 3.5a3.503 3.503 0 0 1-3.46-3.002c-.007.001-.013.005-.021.005l-.506.017h-.017a.5.5 0 0 1-.016-.999l.506-.017c.018-.002.035.006.052.007A3.503 3.503 0 0 1 20.5 17c1.93 0 3.5 1.57 3.5 3.5zm-1 0c0-1.378-1.122-2.5-2.5-2.5S18 19.122 18 20.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5z" }) + ] + } + ); +}); + +export { SiGithubactions as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.cjs new file mode 100644 index 000000000..126989569 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGithubcopilot = React__namespace.forwardRef(function SiGithubcopilot2({ title = "GitHub Copilot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.922 16.997C23.061 18.492 18.063 22.02 12 22.02 5.937 22.02.939 18.492.078 16.997A.641.641 0 0 1 0 16.741v-2.869a.883.883 0 0 1 .053-.22c.372-.935 1.347-2.292 2.605-2.656.167-.429.414-1.055.644-1.517a10.098 10.098 0 0 1-.052-1.086c0-1.331.282-2.499 1.132-3.368.397-.406.89-.717 1.474-.952C7.255 2.937 9.248 1.98 11.978 1.98c2.731 0 4.767.957 6.166 2.093.584.235 1.077.546 1.474.952.85.869 1.132 2.037 1.132 3.368 0 .368-.014.733-.052 1.086.23.462.477 1.088.644 1.517 1.258.364 2.233 1.721 2.605 2.656a.841.841 0 0 1 .053.22v2.869a.641.641 0 0 1-.078.256Zm-11.75-5.992h-.344a4.359 4.359 0 0 1-.355.508c-.77.947-1.918 1.492-3.508 1.492-1.725 0-2.989-.359-3.782-1.259a2.137 2.137 0 0 1-.085-.104L4 11.746v6.585c1.435.779 4.514 2.179 8 2.179 3.486 0 6.565-1.4 8-2.179v-6.585l-.098-.104s-.033.045-.085.104c-.793.9-2.057 1.259-3.782 1.259-1.59 0-2.738-.545-3.508-1.492a4.359 4.359 0 0 1-.355-.508Zm2.328 3.25c.549 0 1 .451 1 1v2c0 .549-.451 1-1 1-.549 0-1-.451-1-1v-2c0-.549.451-1 1-1Zm-5 0c.549 0 1 .451 1 1v2c0 .549-.451 1-1 1-.549 0-1-.451-1-1v-2c0-.549.451-1 1-1Zm3.313-6.185c.136 1.057.403 1.913.878 2.497.442.544 1.134.938 2.344.938 1.573 0 2.292-.337 2.657-.751.384-.435.558-1.15.558-2.361 0-1.14-.243-1.847-.705-2.319-.477-.488-1.319-.862-2.824-1.025-1.487-.161-2.192.138-2.533.529-.269.307-.437.808-.438 1.578v.021c0 .265.021.562.063.893Zm-1.626 0c.042-.331.063-.628.063-.894v-.02c-.001-.77-.169-1.271-.438-1.578-.341-.391-1.046-.69-2.533-.529-1.505.163-2.347.537-2.824 1.025-.462.472-.705 1.179-.705 2.319 0 1.211.175 1.926.558 2.361.365.414 1.084.751 2.657.751 1.21 0 1.902-.394 2.344-.938.475-.584.742-1.44.878-2.497Z" }) + ] + } + ); +}); + +exports.default = SiGithubcopilot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.d.ts new file mode 100644 index 000000000..a5acfd369 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGithubcopilot: IconType; +export { SiGithubcopilot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.mjs new file mode 100644 index 000000000..34a0cbc4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubcopilot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGithubcopilot = React.forwardRef(function SiGithubcopilot2({ title = "GitHub Copilot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.922 16.997C23.061 18.492 18.063 22.02 12 22.02 5.937 22.02.939 18.492.078 16.997A.641.641 0 0 1 0 16.741v-2.869a.883.883 0 0 1 .053-.22c.372-.935 1.347-2.292 2.605-2.656.167-.429.414-1.055.644-1.517a10.098 10.098 0 0 1-.052-1.086c0-1.331.282-2.499 1.132-3.368.397-.406.89-.717 1.474-.952C7.255 2.937 9.248 1.98 11.978 1.98c2.731 0 4.767.957 6.166 2.093.584.235 1.077.546 1.474.952.85.869 1.132 2.037 1.132 3.368 0 .368-.014.733-.052 1.086.23.462.477 1.088.644 1.517 1.258.364 2.233 1.721 2.605 2.656a.841.841 0 0 1 .053.22v2.869a.641.641 0 0 1-.078.256Zm-11.75-5.992h-.344a4.359 4.359 0 0 1-.355.508c-.77.947-1.918 1.492-3.508 1.492-1.725 0-2.989-.359-3.782-1.259a2.137 2.137 0 0 1-.085-.104L4 11.746v6.585c1.435.779 4.514 2.179 8 2.179 3.486 0 6.565-1.4 8-2.179v-6.585l-.098-.104s-.033.045-.085.104c-.793.9-2.057 1.259-3.782 1.259-1.59 0-2.738-.545-3.508-1.492a4.359 4.359 0 0 1-.355-.508Zm2.328 3.25c.549 0 1 .451 1 1v2c0 .549-.451 1-1 1-.549 0-1-.451-1-1v-2c0-.549.451-1 1-1Zm-5 0c.549 0 1 .451 1 1v2c0 .549-.451 1-1 1-.549 0-1-.451-1-1v-2c0-.549.451-1 1-1Zm3.313-6.185c.136 1.057.403 1.913.878 2.497.442.544 1.134.938 2.344.938 1.573 0 2.292-.337 2.657-.751.384-.435.558-1.15.558-2.361 0-1.14-.243-1.847-.705-2.319-.477-.488-1.319-.862-2.824-1.025-1.487-.161-2.192.138-2.533.529-.269.307-.437.808-.438 1.578v.021c0 .265.021.562.063.893Zm-1.626 0c.042-.331.063-.628.063-.894v-.02c-.001-.77-.169-1.271-.438-1.578-.341-.391-1.046-.69-2.533-.529-1.505.163-2.347.537-2.824 1.025-.462.472-.705 1.179-.705 2.319 0 1.211.175 1.926.558 2.361.365.414 1.084.751 2.657.751 1.21 0 1.902-.394 2.344-.938.475-.584.742-1.44.878-2.497Z" }) + ] + } + ); +}); + +export { SiGithubcopilot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.cjs new file mode 100644 index 000000000..08db73e5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const SiGithubpages = React__namespace.forwardRef(function SiGithubpages2({ title = "GitHub Pages", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.088 13.126h-.296V9.858h.998c.815 0 1.094.47 1.094.98s-.28.98-1.094.98h-.701v1.308zm0-1.582h.74a.642.642 0 0 0 .733-.705.642.642 0 0 0-.732-.706h-.741zm2.881-.37a1.913 1.913 0 0 0-.653.11v-.262a1.756 1.756 0 0 1 .653-.118c.654 0 .824.297.824.732v1.49h-.17l-.066-.174a1.143 1.143 0 0 1-.657.218.663.663 0 0 1-.763-.702c0-.37.205-.645.776-.68l.575-.035v-.122c0-.318-.113-.457-.519-.457zm-.078.85c-.31.03-.445.192-.445.445 0 .196.048.431.462.431a1.056 1.056 0 0 0 .58-.174v-.758zm1.86.493a.252.252 0 0 0-.083.16c0 .11.053.158.166.17l.74.088c.41.044.598.205.598.584 0 .532-.532.74-1.133.74-.61 0-.976-.178-.976-.657a.609.609 0 0 1 .449-.575v-.005a.321.321 0 0 1-.14-.287.392.392 0 0 1 .166-.297.746.746 0 0 1-.349-.714c0-.449.192-.82.85-.82a1.36 1.36 0 0 1 .349.044h.74v.165l-.365.105a.908.908 0 0 1 .126.505c0 .449-.192.82-.85.82a1.397 1.397 0 0 1-.288-.027zm.127.588c-.288.065-.532.2-.532.48 0 .322.244.413.693.413.435 0 .845-.109.845-.48 0-.221-.105-.309-.37-.34zm.727-1.381c0-.288-.056-.554-.566-.554-.51 0-.567.266-.567.554 0 .288.057.553.567.553.51 0 .566-.266.566-.554zm1.637-.82c.74 0 .828.506.828 1.133v.14h-1.438c.018.379.118.723.61.723a1.665 1.665 0 0 0 .719-.122v.261a1.765 1.765 0 0 1-.719.131c-.736 0-.915-.505-.915-1.133s.179-1.133.915-1.133zm-.61 1.024h1.133c0-.387-.022-.753-.523-.753-.506 0-.597.36-.61.753zm2.601-.052c.619.057.767.266.767.623 0 .336-.213.671-.876.671a2.147 2.147 0 0 1-.649-.109V12.8a1.924 1.924 0 0 0 .654.1c.453 0 .575-.192.575-.397 0-.2-.061-.34-.492-.374-.632-.057-.763-.28-.763-.58 0-.31.2-.645.815-.645a1.627 1.627 0 0 1 .627.11v.26a1.799 1.799 0 0 0-.631-.1c-.432 0-.523.162-.523.376 0 .19.078.29.496.326zm-20.787-.659H1.38a.05.05 0 0 0-.05.05v.522a.05.05 0 0 0 .05.05h.416v.649a1.267 1.267 0 0 1-.351.032c-.305 0-.731-.112-.731-1.048s.443-1.06.86-1.06a1.69 1.69 0 0 1 .614.094.05.05 0 0 0 .06-.05l.12-.504a.047.047 0 0 0-.02-.039 1.715 1.715 0 0 0-.903-.165C.73 9.748 0 10.05 0 11.508s.837 1.675 1.542 1.675a1.736 1.736 0 0 0 .938-.25.043.043 0 0 0 .016-.038v-1.628a.05.05 0 0 0-.05-.05zm5.545-1.294a.05.05 0 0 0-.05-.05H7.34a.05.05 0 0 0-.05.05v1.161h-.936V9.923a.05.05 0 0 0-.05-.05h-.6a.05.05 0 0 0-.05.05v3.145a.05.05 0 0 0 .05.05h.6a.05.05 0 0 0 .05-.05v-1.345h.937l-.002 1.345a.05.05 0 0 0 .05.05h.603a.05.05 0 0 0 .05-.05zm-4.389.412a.388.388 0 1 0-.387.392.39.39 0 0 0 .387-.392zm-.042 2.068v-1.451a.05.05 0 0 0-.05-.05h-.6a.057.057 0 0 0-.051.056v2.08c0 .06.038.079.087.079h.54c.06 0 .074-.03.074-.08zm6.764-1.497h-.597a.05.05 0 0 0-.05.05v1.542a.673.673 0 0 1-.367.11c-.215 0-.272-.097-.272-.307v-1.344a.05.05 0 0 0-.05-.05h-.604a.05.05 0 0 0-.05.05v1.446c0 .626.348.779.828.779a1.398 1.398 0 0 0 .71-.217 1.274 1.274 0 0 0 .022.128.052.052 0 0 0 .044.027l.385-.002a.05.05 0 0 0 .05-.05v-2.112a.05.05 0 0 0-.05-.05zm1.662-.07a1.121 1.121 0 0 0-.569.15V9.923a.05.05 0 0 0-.05-.05h-.602a.05.05 0 0 0-.05.05v3.145a.05.05 0 0 0 .05.05h.418a.05.05 0 0 0 .044-.027.973.973 0 0 0 .025-.144 1.08 1.08 0 0 0 .713.233c.548 0 .862-.278.862-1.248s-.502-1.095-.841-1.095zm-.235 1.771a.716.716 0 0 1-.347-.1v-.996a.793.793 0 0 1 .308-.1c.215-.019.422.046.422.558 0 .54-.094.647-.383.639zm-6.475-1.706h-.45l-.002-.595c0-.023-.011-.034-.037-.034h-.615c-.024 0-.036.01-.036.033v.615l-.33.08a.05.05 0 0 0-.035.048v.387a.05.05 0 0 0 .05.05h.315v.93c0 .692.484.76.812.76a1.375 1.375 0 0 0 .357-.06.046.046 0 0 0 .028-.044l.001-.426a.05.05 0 0 0-.05-.05c-.026 0-.094.01-.163.01-.221 0-.296-.102-.296-.236v-.884h.451a.05.05 0 0 0 .05-.05v-.484a.05.05 0 0 0-.05-.05z" }) + ] + } + ); +}); + +exports.default = SiGithubpages; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.d.ts new file mode 100644 index 000000000..c4c57007b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const SiGithubpages: IconType; +export { SiGithubpages as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.mjs new file mode 100644 index 000000000..746d3434e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubpages.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const SiGithubpages = React.forwardRef(function SiGithubpages2({ title = "GitHub Pages", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.088 13.126h-.296V9.858h.998c.815 0 1.094.47 1.094.98s-.28.98-1.094.98h-.701v1.308zm0-1.582h.74a.642.642 0 0 0 .733-.705.642.642 0 0 0-.732-.706h-.741zm2.881-.37a1.913 1.913 0 0 0-.653.11v-.262a1.756 1.756 0 0 1 .653-.118c.654 0 .824.297.824.732v1.49h-.17l-.066-.174a1.143 1.143 0 0 1-.657.218.663.663 0 0 1-.763-.702c0-.37.205-.645.776-.68l.575-.035v-.122c0-.318-.113-.457-.519-.457zm-.078.85c-.31.03-.445.192-.445.445 0 .196.048.431.462.431a1.056 1.056 0 0 0 .58-.174v-.758zm1.86.493a.252.252 0 0 0-.083.16c0 .11.053.158.166.17l.74.088c.41.044.598.205.598.584 0 .532-.532.74-1.133.74-.61 0-.976-.178-.976-.657a.609.609 0 0 1 .449-.575v-.005a.321.321 0 0 1-.14-.287.392.392 0 0 1 .166-.297.746.746 0 0 1-.349-.714c0-.449.192-.82.85-.82a1.36 1.36 0 0 1 .349.044h.74v.165l-.365.105a.908.908 0 0 1 .126.505c0 .449-.192.82-.85.82a1.397 1.397 0 0 1-.288-.027zm.127.588c-.288.065-.532.2-.532.48 0 .322.244.413.693.413.435 0 .845-.109.845-.48 0-.221-.105-.309-.37-.34zm.727-1.381c0-.288-.056-.554-.566-.554-.51 0-.567.266-.567.554 0 .288.057.553.567.553.51 0 .566-.266.566-.554zm1.637-.82c.74 0 .828.506.828 1.133v.14h-1.438c.018.379.118.723.61.723a1.665 1.665 0 0 0 .719-.122v.261a1.765 1.765 0 0 1-.719.131c-.736 0-.915-.505-.915-1.133s.179-1.133.915-1.133zm-.61 1.024h1.133c0-.387-.022-.753-.523-.753-.506 0-.597.36-.61.753zm2.601-.052c.619.057.767.266.767.623 0 .336-.213.671-.876.671a2.147 2.147 0 0 1-.649-.109V12.8a1.924 1.924 0 0 0 .654.1c.453 0 .575-.192.575-.397 0-.2-.061-.34-.492-.374-.632-.057-.763-.28-.763-.58 0-.31.2-.645.815-.645a1.627 1.627 0 0 1 .627.11v.26a1.799 1.799 0 0 0-.631-.1c-.432 0-.523.162-.523.376 0 .19.078.29.496.326zm-20.787-.659H1.38a.05.05 0 0 0-.05.05v.522a.05.05 0 0 0 .05.05h.416v.649a1.267 1.267 0 0 1-.351.032c-.305 0-.731-.112-.731-1.048s.443-1.06.86-1.06a1.69 1.69 0 0 1 .614.094.05.05 0 0 0 .06-.05l.12-.504a.047.047 0 0 0-.02-.039 1.715 1.715 0 0 0-.903-.165C.73 9.748 0 10.05 0 11.508s.837 1.675 1.542 1.675a1.736 1.736 0 0 0 .938-.25.043.043 0 0 0 .016-.038v-1.628a.05.05 0 0 0-.05-.05zm5.545-1.294a.05.05 0 0 0-.05-.05H7.34a.05.05 0 0 0-.05.05v1.161h-.936V9.923a.05.05 0 0 0-.05-.05h-.6a.05.05 0 0 0-.05.05v3.145a.05.05 0 0 0 .05.05h.6a.05.05 0 0 0 .05-.05v-1.345h.937l-.002 1.345a.05.05 0 0 0 .05.05h.603a.05.05 0 0 0 .05-.05zm-4.389.412a.388.388 0 1 0-.387.392.39.39 0 0 0 .387-.392zm-.042 2.068v-1.451a.05.05 0 0 0-.05-.05h-.6a.057.057 0 0 0-.051.056v2.08c0 .06.038.079.087.079h.54c.06 0 .074-.03.074-.08zm6.764-1.497h-.597a.05.05 0 0 0-.05.05v1.542a.673.673 0 0 1-.367.11c-.215 0-.272-.097-.272-.307v-1.344a.05.05 0 0 0-.05-.05h-.604a.05.05 0 0 0-.05.05v1.446c0 .626.348.779.828.779a1.398 1.398 0 0 0 .71-.217 1.274 1.274 0 0 0 .022.128.052.052 0 0 0 .044.027l.385-.002a.05.05 0 0 0 .05-.05v-2.112a.05.05 0 0 0-.05-.05zm1.662-.07a1.121 1.121 0 0 0-.569.15V9.923a.05.05 0 0 0-.05-.05h-.602a.05.05 0 0 0-.05.05v3.145a.05.05 0 0 0 .05.05h.418a.05.05 0 0 0 .044-.027.973.973 0 0 0 .025-.144 1.08 1.08 0 0 0 .713.233c.548 0 .862-.278.862-1.248s-.502-1.095-.841-1.095zm-.235 1.771a.716.716 0 0 1-.347-.1v-.996a.793.793 0 0 1 .308-.1c.215-.019.422.046.422.558 0 .54-.094.647-.383.639zm-6.475-1.706h-.45l-.002-.595c0-.023-.011-.034-.037-.034h-.615c-.024 0-.036.01-.036.033v.615l-.33.08a.05.05 0 0 0-.035.048v.387a.05.05 0 0 0 .05.05h.315v.93c0 .692.484.76.812.76a1.375 1.375 0 0 0 .357-.06.046.046 0 0 0 .028-.044l.001-.426a.05.05 0 0 0-.05-.05c-.026 0-.094.01-.163.01-.221 0-.296-.102-.296-.236v-.884h.451a.05.05 0 0 0 .05-.05v-.484a.05.05 0 0 0-.05-.05z" }) + ] + } + ); +}); + +export { SiGithubpages as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.cjs new file mode 100644 index 000000000..5402f7db9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA4AAA"; +const SiGithubsponsors = React__namespace.forwardRef(function SiGithubsponsors2({ title = "GitHub Sponsors", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.625 1.499c-2.32 0-4.354 1.203-5.625 3.03-1.271-1.827-3.305-3.03-5.625-3.03C3.129 1.499 0 4.253 0 8.249c0 4.275 3.068 7.847 5.828 10.227a33.14 33.14 0 0 0 5.616 3.876l.028.017.008.003-.001.003c.163.085.342.126.521.125.179.001.358-.041.521-.125l-.001-.003.008-.003.028-.017a33.14 33.14 0 0 0 5.616-3.876C20.932 16.096 24 12.524 24 8.249c0-3.996-3.129-6.75-6.375-6.75zm-.919 15.275a30.766 30.766 0 0 1-4.703 3.316l-.004-.002-.004.002a30.955 30.955 0 0 1-4.703-3.316c-2.677-2.307-5.047-5.298-5.047-8.523 0-2.754 2.121-4.5 4.125-4.5 2.06 0 3.914 1.479 4.544 3.684.143.495.596.797 1.086.796.49.001.943-.302 1.085-.796.63-2.205 2.484-3.684 4.544-3.684 2.004 0 4.125 1.746 4.125 4.5 0 3.225-2.37 6.216-5.048 8.523z" }) + ] + } + ); +}); + +exports.default = SiGithubsponsors; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.d.ts new file mode 100644 index 000000000..27fbdec78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA4AAA"; +declare const SiGithubsponsors: IconType; +export { SiGithubsponsors as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.mjs new file mode 100644 index 000000000..146dfb798 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGithubsponsors.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA4AAA"; +const SiGithubsponsors = React.forwardRef(function SiGithubsponsors2({ title = "GitHub Sponsors", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.625 1.499c-2.32 0-4.354 1.203-5.625 3.03-1.271-1.827-3.305-3.03-5.625-3.03C3.129 1.499 0 4.253 0 8.249c0 4.275 3.068 7.847 5.828 10.227a33.14 33.14 0 0 0 5.616 3.876l.028.017.008.003-.001.003c.163.085.342.126.521.125.179.001.358-.041.521-.125l-.001-.003.008-.003.028-.017a33.14 33.14 0 0 0 5.616-3.876C20.932 16.096 24 12.524 24 8.249c0-3.996-3.129-6.75-6.375-6.75zm-.919 15.275a30.766 30.766 0 0 1-4.703 3.316l-.004-.002-.004.002a30.955 30.955 0 0 1-4.703-3.316c-2.677-2.307-5.047-5.298-5.047-8.523 0-2.754 2.121-4.5 4.125-4.5 2.06 0 3.914 1.479 4.544 3.684.143.495.596.797 1.086.796.49.001.943-.302 1.085-.796.63-2.205 2.484-3.684 4.544-3.684 2.004 0 4.125 1.746 4.125 4.5 0 3.225-2.37 6.216-5.048 8.523z" }) + ] + } + ); +}); + +export { SiGithubsponsors as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.cjs new file mode 100644 index 000000000..e03530ef3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#204ECF"; +const SiGitignoredotio = React__namespace.forwardRef(function SiGitignoredotio2({ title = "gitignore.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.08 7.143c-.958.57-1.977 1.065-3.743 1.02-2.082 0-3.55 1.11-3.55 2.91 0 1.035.405 1.74 1.409 2.28-.57.36-.884.93-.884 1.516 0 .84.719 1.575 2.456 1.575h1.257c.794 0 1.153.33 1.153.795 0 .525-.344.915-1.841.915-1.513 0-1.812-.315-1.812-1.005H7.428c0 1.575.794 2.565 3.849 2.565 2.815 0 4.252-1.005 4.252-2.64 0-1.335-1.183-2.31-3.024-2.31h-1.318c-.764 0-.869-.24-.869-.48 0-.18.09-.36.255-.45.284.06.584.09.928.09 2.052 0 3.37-1.125 3.37-2.67 0-1.036-.54-1.62-1.543-2.056 1.003 0 1.737-.09 2.291-.315zm-3.683 2.565c.793 0 1.212.42 1.212 1.305 0 .915-.434 1.395-1.212 1.395-.734 0-1.213-.495-1.213-1.365 0-.825.464-1.335 1.213-1.335zm9.135-5.423c-.826 0-1.412.588-1.412 1.341 0 .77.586 1.342 1.412 1.342s1.396-.573 1.396-1.341c0-.754-.57-1.341-1.396-1.341zm1.426 4.19h-4.55v1.627h2.178v4.747h-2.253v1.627H24V14.85h-2.042zM3.933 13.933l1.02 1.02-2.477 2.476-.62-.62v-.8l2.077-2.076Zm-2.695-.219v2.477L0 14.952l1.238-1.238Zm2.257-.219-1.638 1.639v-2.039l.619-.619 1.019 1.02z" }) + ] + } + ); +}); + +exports.default = SiGitignoredotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.d.ts new file mode 100644 index 000000000..14a91bc56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#204ECF"; +declare const SiGitignoredotio: IconType; +export { SiGitignoredotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.mjs new file mode 100644 index 000000000..f80ff97d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitignoredotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#204ECF"; +const SiGitignoredotio = React.forwardRef(function SiGitignoredotio2({ title = "gitignore.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.08 7.143c-.958.57-1.977 1.065-3.743 1.02-2.082 0-3.55 1.11-3.55 2.91 0 1.035.405 1.74 1.409 2.28-.57.36-.884.93-.884 1.516 0 .84.719 1.575 2.456 1.575h1.257c.794 0 1.153.33 1.153.795 0 .525-.344.915-1.841.915-1.513 0-1.812-.315-1.812-1.005H7.428c0 1.575.794 2.565 3.849 2.565 2.815 0 4.252-1.005 4.252-2.64 0-1.335-1.183-2.31-3.024-2.31h-1.318c-.764 0-.869-.24-.869-.48 0-.18.09-.36.255-.45.284.06.584.09.928.09 2.052 0 3.37-1.125 3.37-2.67 0-1.036-.54-1.62-1.543-2.056 1.003 0 1.737-.09 2.291-.315zm-3.683 2.565c.793 0 1.212.42 1.212 1.305 0 .915-.434 1.395-1.212 1.395-.734 0-1.213-.495-1.213-1.365 0-.825.464-1.335 1.213-1.335zm9.135-5.423c-.826 0-1.412.588-1.412 1.341 0 .77.586 1.342 1.412 1.342s1.396-.573 1.396-1.341c0-.754-.57-1.341-1.396-1.341zm1.426 4.19h-4.55v1.627h2.178v4.747h-2.253v1.627H24V14.85h-2.042zM3.933 13.933l1.02 1.02-2.477 2.476-.62-.62v-.8l2.077-2.076Zm-2.695-.219v2.477L0 14.952l1.238-1.238Zm2.257-.219-1.638 1.639v-2.039l.619-.619 1.019 1.02z" }) + ] + } + ); +}); + +export { SiGitignoredotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.cjs new file mode 100644 index 000000000..634bd4b31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#179287"; +const SiGitkraken = React__namespace.forwardRef(function SiGitkraken2({ title = "GitKraken", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.225 6.252a.478.478 0 00-.923.171c0 .053.013.119.026.171 2.15 5.71-.751 12.077-6.46 14.226a10.9 10.9 0 01-2.426.607v-5.155c.33-.066.646-.158.962-.264v4.338c5.445-1.332 8.794-6.817 7.463-12.262a10.147 10.147 0 00-4.958-6.487.472.472 0 00-.646.185.472.472 0 00.185.646c4.443 2.452 6.051 8.056 3.6 12.499a9.13 9.13 0 01-4.681 4.1v-3.836a1.472 1.472 0 001.028-1.398c0-.527-.264-1.002-.725-1.266.343-3.309 1.859-2.439 1.859-3.493v-.62c0-1.582-3.665-6.737-5.38-6.856h-.316c-1.714.119-5.379 5.274-5.379 6.856v.62c0 1.054 1.503.184 1.859 3.493a1.461 1.461 0 00-.725 1.266c0 .646.422 1.2 1.028 1.398v3.836C3.91 17.168 1.59 11.83 3.448 7.11a9.24 9.24 0 014.1-4.68.479.479 0 00.185-.66.487.487 0 00-.422-.237.444.444 0 00-.224.065 10.142 10.142 0 00-3.982 13.791 10.147 10.147 0 006.487 4.958V16.02c.316.106.633.198.962.264v5.155C4.503 20.636.257 15.085 1.062 9.034a10.9 10.9 0 01.606-2.426.489.489 0 00-.277-.62.494.494 0 00-.62.277c-2.333 6.21.805 13.131 7.015 15.452 1.2.448 2.452.699 3.73.751v-6.09c.172.012.489.012.489.012s.316 0 .488-.013v6.078c6.631-.277 11.773-5.867 11.496-12.499a12.458 12.458 0 00-.764-3.704zm-9.019 6.842a.995.995 0 011.398 0 .995.995 0 010 1.398.995.995 0 01-1.398 0 .988.988 0 010-1.398zm-4.43 1.398a.979.979 0 01-1.384 0 .995.995 0 010-1.398.995.995 0 011.398 0 .983.983 0 01-.013 1.398z" }) + ] + } + ); +}); + +exports.default = SiGitkraken; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.d.ts new file mode 100644 index 000000000..28e1f1c50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#179287"; +declare const SiGitkraken: IconType; +export { SiGitkraken as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.mjs new file mode 100644 index 000000000..142e1536d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitkraken.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#179287"; +const SiGitkraken = React.forwardRef(function SiGitkraken2({ title = "GitKraken", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.225 6.252a.478.478 0 00-.923.171c0 .053.013.119.026.171 2.15 5.71-.751 12.077-6.46 14.226a10.9 10.9 0 01-2.426.607v-5.155c.33-.066.646-.158.962-.264v4.338c5.445-1.332 8.794-6.817 7.463-12.262a10.147 10.147 0 00-4.958-6.487.472.472 0 00-.646.185.472.472 0 00.185.646c4.443 2.452 6.051 8.056 3.6 12.499a9.13 9.13 0 01-4.681 4.1v-3.836a1.472 1.472 0 001.028-1.398c0-.527-.264-1.002-.725-1.266.343-3.309 1.859-2.439 1.859-3.493v-.62c0-1.582-3.665-6.737-5.38-6.856h-.316c-1.714.119-5.379 5.274-5.379 6.856v.62c0 1.054 1.503.184 1.859 3.493a1.461 1.461 0 00-.725 1.266c0 .646.422 1.2 1.028 1.398v3.836C3.91 17.168 1.59 11.83 3.448 7.11a9.24 9.24 0 014.1-4.68.479.479 0 00.185-.66.487.487 0 00-.422-.237.444.444 0 00-.224.065 10.142 10.142 0 00-3.982 13.791 10.147 10.147 0 006.487 4.958V16.02c.316.106.633.198.962.264v5.155C4.503 20.636.257 15.085 1.062 9.034a10.9 10.9 0 01.606-2.426.489.489 0 00-.277-.62.494.494 0 00-.62.277c-2.333 6.21.805 13.131 7.015 15.452 1.2.448 2.452.699 3.73.751v-6.09c.172.012.489.012.489.012s.316 0 .488-.013v6.078c6.631-.277 11.773-5.867 11.496-12.499a12.458 12.458 0 00-.764-3.704zm-9.019 6.842a.995.995 0 011.398 0 .995.995 0 010 1.398.995.995 0 01-1.398 0 .988.988 0 010-1.398zm-4.43 1.398a.979.979 0 01-1.384 0 .995.995 0 010-1.398.995.995 0 011.398 0 .983.983 0 01-.013 1.398z" }) + ] + } + ); +}); + +export { SiGitkraken as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.cjs new file mode 100644 index 000000000..ab91985bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC6D26"; +const SiGitlab = React__namespace.forwardRef(function SiGitlab2({ title = "GitLab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.6004 9.5927-.0337-.0862L20.3.9814a.851.851 0 0 0-.3362-.405.8748.8748 0 0 0-.9997.0539.8748.8748 0 0 0-.29.4399l-2.2055 6.748H7.5375l-2.2057-6.748a.8573.8573 0 0 0-.29-.4412.8748.8748 0 0 0-.9997-.0537.8585.8585 0 0 0-.3362.4049L.4332 9.5015l-.0325.0862a6.0657 6.0657 0 0 0 2.0119 7.0105l.0113.0087.03.0213 4.976 3.7264 2.462 1.8633 1.4995 1.1321a1.0085 1.0085 0 0 0 1.2197 0l1.4995-1.1321 2.4619-1.8633 5.006-3.7489.0125-.01a6.0682 6.0682 0 0 0 2.0094-7.003z" }) + ] + } + ); +}); + +exports.default = SiGitlab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.d.ts new file mode 100644 index 000000000..934b56fd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC6D26"; +declare const SiGitlab: IconType; +export { SiGitlab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.mjs new file mode 100644 index 000000000..8343b8287 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC6D26"; +const SiGitlab = React.forwardRef(function SiGitlab2({ title = "GitLab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.6004 9.5927-.0337-.0862L20.3.9814a.851.851 0 0 0-.3362-.405.8748.8748 0 0 0-.9997.0539.8748.8748 0 0 0-.29.4399l-2.2055 6.748H7.5375l-2.2057-6.748a.8573.8573 0 0 0-.29-.4412.8748.8748 0 0 0-.9997-.0537.8585.8585 0 0 0-.3362.4049L.4332 9.5015l-.0325.0862a6.0657 6.0657 0 0 0 2.0119 7.0105l.0113.0087.03.0213 4.976 3.7264 2.462 1.8633 1.4995 1.1321a1.0085 1.0085 0 0 0 1.2197 0l1.4995-1.1321 2.4619-1.8633 5.006-3.7489.0125-.01a6.0682 6.0682 0 0 0 2.0094-7.003z" }) + ] + } + ); +}); + +export { SiGitlab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.cjs new file mode 100644 index 000000000..f46252785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F64935"; +const SiGitlfs = React__namespace.forwardRef(function SiGitlfs2({ title = "Git LFS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.967.304L0 7.215v9.68l11.79 6.802V14.02l11.96-6.91-4.383-2.53-11.959 6.905v3.887l-2.775-1.601V9.886l11.965-6.91zM24 7.545L12.29 14.31v9.387L24 16.929V7.547z" }) + ] + } + ); +}); + +exports.default = SiGitlfs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.d.ts new file mode 100644 index 000000000..8285156cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F64935"; +declare const SiGitlfs: IconType; +export { SiGitlfs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.mjs new file mode 100644 index 000000000..ad1c22768 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitlfs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F64935"; +const SiGitlfs = React.forwardRef(function SiGitlfs2({ title = "Git LFS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.967.304L0 7.215v9.68l11.79 6.802V14.02l11.96-6.91-4.383-2.53-11.959 6.905v3.887l-2.775-1.601V9.886l11.965-6.91zM24 7.545L12.29 14.31v9.387L24 16.929V7.547z" }) + ] + } + ); +}); + +export { SiGitlfs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.cjs new file mode 100644 index 000000000..4474ccb0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFAE33"; +const SiGitpod = React__namespace.forwardRef(function SiGitpod2({ title = "Gitpod", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.033 1.195a2.387 2.387 0 0 1-.87 3.235l-6.98 4.04a.602.602 0 0 0-.3.522v6.342a.6.6 0 0 0 .3.521l5.524 3.199a.585.585 0 0 0 .586 0l5.527-3.199a.603.603 0 0 0 .299-.52V11.39l-4.969 2.838a2.326 2.326 0 0 1-3.19-.9 2.388 2.388 0 0 1 .89-3.23l7.108-4.062C20.123 4.8 22.8 6.384 22.8 8.901v6.914a4.524 4.524 0 0 1-2.245 3.919l-6.345 3.672a4.407 4.407 0 0 1-4.422 0l-6.344-3.672A4.524 4.524 0 0 1 1.2 15.816V8.51a4.524 4.524 0 0 1 2.245-3.918l7.393-4.28a2.326 2.326 0 0 1 3.195.883z" }) + ] + } + ); +}); + +exports.default = SiGitpod; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.d.ts new file mode 100644 index 000000000..aedd62f8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFAE33"; +declare const SiGitpod: IconType; +export { SiGitpod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.mjs new file mode 100644 index 000000000..e2baf5442 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitpod.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFAE33"; +const SiGitpod = React.forwardRef(function SiGitpod2({ title = "Gitpod", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.033 1.195a2.387 2.387 0 0 1-.87 3.235l-6.98 4.04a.602.602 0 0 0-.3.522v6.342a.6.6 0 0 0 .3.521l5.524 3.199a.585.585 0 0 0 .586 0l5.527-3.199a.603.603 0 0 0 .299-.52V11.39l-4.969 2.838a2.326 2.326 0 0 1-3.19-.9 2.388 2.388 0 0 1 .89-3.23l7.108-4.062C20.123 4.8 22.8 6.384 22.8 8.901v6.914a4.524 4.524 0 0 1-2.245 3.919l-6.345 3.672a4.407 4.407 0 0 1-4.422 0l-6.344-3.672A4.524 4.524 0 0 1 1.2 15.816V8.51a4.524 4.524 0 0 1 2.245-3.918l7.393-4.28a2.326 2.326 0 0 1 3.195.883z" }) + ] + } + ); +}); + +export { SiGitpod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.cjs new file mode 100644 index 000000000..8a9c9d8b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1965"; +const SiGitter = React__namespace.forwardRef(function SiGitter2({ title = "Gitter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.501 4.001H10.5V24H8.501V4.001zm6.999 0V24h-2V4.001h2zM3.5 0h2.001v15H3.5V0zm15 4.001h2V15h-2V4.001z" }) + ] + } + ); +}); + +exports.default = SiGitter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.d.ts new file mode 100644 index 000000000..d43dc3b92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1965"; +declare const SiGitter: IconType; +export { SiGitter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.mjs new file mode 100644 index 000000000..7af653ba1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGitter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1965"; +const SiGitter = React.forwardRef(function SiGitter2({ title = "Gitter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.501 4.001H10.5V24H8.501V4.001zm6.999 0V24h-2V4.001h2zM3.5 0h2.001v15H3.5V0zm15 4.001h2V15h-2V4.001z" }) + ] + } + ); +}); + +export { SiGitter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.cjs new file mode 100644 index 000000000..7875e6096 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D9C38C"; +const SiGlance = React__namespace.forwardRef(function SiGlance2({ title = "Glance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.77 0A2.763 2.763 0 0 0 0 2.77v18.46A2.763 2.763 0 0 0 2.77 24h18.46A2.763 2.763 0 0 0 24 21.23V2.77A2.763 2.763 0 0 0 21.23 0Zm.922 1.846h5.539c1.023 0 1.846.824 1.846 1.846v16.616a1.842 1.842 0 0 1-1.846 1.846H3.692a1.842 1.842 0 0 1-1.846-1.846V3.692c0-1.022.824-1.846 1.846-1.846zm11.077 0h5.539c1.022 0 1.846.824 1.846 1.846v5.539a1.842 1.842 0 0 1-1.846 1.846h-5.539a1.842 1.842 0 0 1-1.846-1.846V3.692c0-1.022.823-1.846 1.846-1.846zm1.226 1.846-.946.961h2.964c.148 0 .29-.005.423-.012a.78.78 0 0 0 .312-.089L14.77 8.528l.725.703 3.923-3.941a1.031 1.031 0 0 0-.1.322 3.265 3.265 0 0 0-.023.38v3.071l1.014-1.004V3.692Zm-1.226 9.231h5.539c1.022 0 1.846.823 1.846 1.846v5.539a1.842 1.842 0 0 1-1.846 1.846h-5.539a1.842 1.842 0 0 1-1.846-1.846v-5.539c0-1.023.823-1.846 1.846-1.846z" }) + ] + } + ); +}); + +exports.default = SiGlance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.d.ts new file mode 100644 index 000000000..f24fbfe26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D9C38C"; +declare const SiGlance: IconType; +export { SiGlance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.mjs new file mode 100644 index 000000000..024a18849 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D9C38C"; +const SiGlance = React.forwardRef(function SiGlance2({ title = "Glance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.77 0A2.763 2.763 0 0 0 0 2.77v18.46A2.763 2.763 0 0 0 2.77 24h18.46A2.763 2.763 0 0 0 24 21.23V2.77A2.763 2.763 0 0 0 21.23 0Zm.922 1.846h5.539c1.023 0 1.846.824 1.846 1.846v16.616a1.842 1.842 0 0 1-1.846 1.846H3.692a1.842 1.842 0 0 1-1.846-1.846V3.692c0-1.022.824-1.846 1.846-1.846zm11.077 0h5.539c1.022 0 1.846.824 1.846 1.846v5.539a1.842 1.842 0 0 1-1.846 1.846h-5.539a1.842 1.842 0 0 1-1.846-1.846V3.692c0-1.022.823-1.846 1.846-1.846zm1.226 1.846-.946.961h2.964c.148 0 .29-.005.423-.012a.78.78 0 0 0 .312-.089L14.77 8.528l.725.703 3.923-3.941a1.031 1.031 0 0 0-.1.322 3.265 3.265 0 0 0-.023.38v3.071l1.014-1.004V3.692Zm-1.226 9.231h5.539c1.022 0 1.846.823 1.846 1.846v5.539a1.842 1.842 0 0 1-1.846 1.846h-5.539a1.842 1.842 0 0 1-1.846-1.846v-5.539c0-1.023.823-1.846 1.846-1.846z" }) + ] + } + ); +}); + +export { SiGlance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.cjs new file mode 100644 index 000000000..f5b8f5115 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A162"; +const SiGlassdoor = React__namespace.forwardRef(function SiGlassdoor2({ title = "Glassdoor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.1093.0006c-.0749-.0074-.1348.0522-.1348.127v3.451c0 .0673.0537.1194.121.127 2.619.172 4.6092.9501 4.6092 3.6814H13.086a.1343.1343 0 0 0-.1348.1347v8.9644c0 .0748.06.1347.1348.1347h10.0034c.0748 0 .1347-.0599.1347-.1347V7.342c0-2.2374-.7996-4.0558-2.4159-5.3279C19.3191.8469 17.0874.1428 14.1093.0006ZM.9107 7.387a.1342.1342 0 0 0-.1347.1347v8.9566c0 .0748.06.1347.1347.1347h5.6189c0 2.7313-1.9902 3.5094-4.6091 3.6815-.0674.0075-.1192.0596-.1192.127v3.451c0 .0747.06.1343.1348.1269 2.9781-.1422 5.2078-.8463 6.6969-2.0136 1.6163-1.272 2.4159-3.0905 2.4159-5.3278V7.5217a.1343.1343 0 0 0-.1348-.1347z" }) + ] + } + ); +}); + +exports.default = SiGlassdoor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.d.ts new file mode 100644 index 000000000..60d9c6f84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A162"; +declare const SiGlassdoor: IconType; +export { SiGlassdoor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.mjs new file mode 100644 index 000000000..eecbf52e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlassdoor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A162"; +const SiGlassdoor = React.forwardRef(function SiGlassdoor2({ title = "Glassdoor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.1093.0006c-.0749-.0074-.1348.0522-.1348.127v3.451c0 .0673.0537.1194.121.127 2.619.172 4.6092.9501 4.6092 3.6814H13.086a.1343.1343 0 0 0-.1348.1347v8.9644c0 .0748.06.1347.1348.1347h10.0034c.0748 0 .1347-.0599.1347-.1347V7.342c0-2.2374-.7996-4.0558-2.4159-5.3279C19.3191.8469 17.0874.1428 14.1093.0006ZM.9107 7.387a.1342.1342 0 0 0-.1347.1347v8.9566c0 .0748.06.1347.1347.1347h5.6189c0 2.7313-1.9902 3.5094-4.6091 3.6815-.0674.0075-.1192.0596-.1192.127v3.451c0 .0747.06.1343.1348.1269 2.9781-.1422 5.2078-.8463 6.6969-2.0136 1.6163-1.272 2.4159-3.0905 2.4159-5.3278V7.5217a.1343.1343 0 0 0-.1348-.1347z" }) + ] + } + ); +}); + +export { SiGlassdoor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.cjs new file mode 100644 index 000000000..46a69d7c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#636363"; +const SiGldotinet = React__namespace.forwardRef(function SiGldotinet2({ title = "GL.iNet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2422 8.5762a3.508 3.508 0 0 0-1.752.4687l-.0761.0469c-.0684.0384-.081.1324-.0254.1836l.248.248c.0385.0385.098.0475.1406.0176a2.9196 2.9196 0 0 1 1.459-.3926c.5124 0 1.017.1364 1.461.3926h.0039c.047.0256.1064.0166.1406-.0176l.252-.248a.115.115 0 0 0-.0254-.1836l-.0801-.0469a3.4864 3.4864 0 0 0-1.7461-.4687Zm-.006 1.0117c-.3756 0-.7473.0941-1.076.2734a.1145.1145 0 0 0-.0548.084c0 .0256.0083.0572.0254.0742l.2735.2735c.0341.0341.09.0467.1328.0254a1.6352 1.6352 0 0 1 .6953-.1543c.2434 0 .4834.056.7011.1543.047.0213.0967.0088.131-.0254l.2655-.2657c.0214-.0213.0293-.0521.0293-.082v-.0078c.0043-.0256-.013-.0552-.043-.0723a2.2579 2.2579 0 0 0-1.08-.2773Zm.0099 1.123c-.252 0-.4395.1876-.4395.4395 0 .2476.1824.4355.4258.4355.1324 0 .2529-.0474.334-.1328a.414.414 0 0 0 .1152-.3027c-.0043-.2562-.1879-.4395-.4355-.4395zm-9.7695.3457c-1.473 0-2.4723.8842-2.4766 2.1993 0 .6404.2346 1.2207.6445 1.5878.427.38.9874.5625 1.709.5625.5721 0 1.0614-.122 1.373-.2246l.0567-.0175a.0413.0413 0 0 0 .0293-.0391v-2.0703c.0085-.0299-.0076-.0469-.0332-.0469H2.1777a.0408.0408 0 0 0-.043.043v.5762c0 .0256.0174.043.043.043h.836v.9902c-.141.0427-.363.0683-.6192.0683-.9521 0-1.5449-.5758-1.5449-1.498 0-.9223.6185-1.4961 1.6133-1.4961.4526 0 .7223.0872.9101.164l.0899.0372a.0443.0443 0 0 0 .0332 0c.0128-.0043.0172-.0126.0215-.0254l.1836-.5762c.0085-.0214-.0044-.0422-.0215-.0508l-.0684-.0312c-.2135-.094-.6224-.1954-1.1347-.1954Zm2.8945.0391c-.0256 0-.043.0154-.043.041v4.1817c0 .0256.0174.041.043.041H7.959c.0256 0 .043-.0154.043-.041v-.5977c0-.017-.0174-.039-.043-.039H6.1484v-3.545c0-.0256-.0173-.041-.043-.041zm8.5098.0039a.0408.0408 0 0 0-.043.043v4.1797c0 .0256.0173.043.043.043h.6992a.0408.0408 0 0 0 .043-.043v-1.7989c0-.4483-.0029-.8111-.0157-1.1484.1537.2647.3401.5595.5664.8926l1.4004 2.08a.041.041 0 0 0 .0352.0176h.6992a.0408.0408 0 0 0 .043-.043v-4.1796a.0408.0408 0 0 0-.043-.043h-.6992a.0408.0408 0 0 0-.043.043v1.7617c0 .3416.0044.7091.0215 1.0976-.1495-.2604-.3196-.5287-.5117-.8105l-1.4141-2.0762c-.0085-.0128-.0204-.0156-.0332-.0156zm9.248.2773-.7266.1797a.0455.0455 0 0 0-.0332.043v.6309h-.4394a.0408.0408 0 0 0-.043.043v.5585c0 .0256.0174.043.043.043h.4433v1.4512c0 .4013.0812.6717.252.834.1622.1707.4058.2597.709.2597.2177 0 .4141-.0288.5508-.08l.0547-.0215c.017-.0085.0316-.026.0273-.043l-.0352-.5508c0-.0128-.009-.027-.0175-.0312-.0085-.0085-.0204-.0078-.0332-.0078l-.1036.0253c-.0555.0129-.154.0293-.2949.0293-.1494 0-.293-.0338-.293-.4394v-1.4336h.7676a.0408.0408 0 0 0 .043-.043v-.5586a.0523.0523 0 0 0-.0469-.0351h-.7695v-.8106c0-.0128-.0028-.0266-.0156-.0351-.0085-.0085-.0263-.0121-.0391-.0078zm-3.2285.7891c-.935 0-1.588.6914-1.588 1.6777 0 .9607.6546 1.5801 1.6622 1.5801.5252 0 .883-.102 1.0879-.1875l.0644-.0254c.0214-.0085.0297-.0294.0254-.0508l-.1367-.5351a.0435.0435 0 0 0-.0215-.0254c-.0128-.0043-.0246-.0043-.0332 0l-.0957.039c-.1836.0727-.4092.1407-.8105.1407-.2562 0-.8548-.077-.9317-.7559h2.127a.0444.0444 0 0 0 .043-.037l.0136-.0958a1.5523 1.5523 0 0 0 .0157-.2344c-.0043-.6916-.3758-1.4902-1.4219-1.4902zm-8.0254.0645a.0408.0408 0 0 0-.043.043v3.0488c0 .0256.0174.043.043.043h.7383a.0408.0408 0 0 0 .043-.043v-3.0489a.0408.0408 0 0 0-.043-.043zm7.9824.5547c.1879 0 .3425.0518.4492.1543.141.1323.1884.325.2012.453h-1.3633c.0513-.192.222-.6073.713-.6073zm-10.1992.0253a.4526.4526 0 0 0-.4531.4532.4526.4526 0 0 0 .4531.4531.4526.4526 0 0 0 .4531-.4531.4526.4526 0 0 0-.4531-.4532Z" }) + ] + } + ); +}); + +exports.default = SiGldotinet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.d.ts new file mode 100644 index 000000000..90bd565e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#636363"; +declare const SiGldotinet: IconType; +export { SiGldotinet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.mjs new file mode 100644 index 000000000..1e7fef77d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGldotinet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#636363"; +const SiGldotinet = React.forwardRef(function SiGldotinet2({ title = "GL.iNet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.2422 8.5762a3.508 3.508 0 0 0-1.752.4687l-.0761.0469c-.0684.0384-.081.1324-.0254.1836l.248.248c.0385.0385.098.0475.1406.0176a2.9196 2.9196 0 0 1 1.459-.3926c.5124 0 1.017.1364 1.461.3926h.0039c.047.0256.1064.0166.1406-.0176l.252-.248a.115.115 0 0 0-.0254-.1836l-.0801-.0469a3.4864 3.4864 0 0 0-1.7461-.4687Zm-.006 1.0117c-.3756 0-.7473.0941-1.076.2734a.1145.1145 0 0 0-.0548.084c0 .0256.0083.0572.0254.0742l.2735.2735c.0341.0341.09.0467.1328.0254a1.6352 1.6352 0 0 1 .6953-.1543c.2434 0 .4834.056.7011.1543.047.0213.0967.0088.131-.0254l.2655-.2657c.0214-.0213.0293-.0521.0293-.082v-.0078c.0043-.0256-.013-.0552-.043-.0723a2.2579 2.2579 0 0 0-1.08-.2773Zm.0099 1.123c-.252 0-.4395.1876-.4395.4395 0 .2476.1824.4355.4258.4355.1324 0 .2529-.0474.334-.1328a.414.414 0 0 0 .1152-.3027c-.0043-.2562-.1879-.4395-.4355-.4395zm-9.7695.3457c-1.473 0-2.4723.8842-2.4766 2.1993 0 .6404.2346 1.2207.6445 1.5878.427.38.9874.5625 1.709.5625.5721 0 1.0614-.122 1.373-.2246l.0567-.0175a.0413.0413 0 0 0 .0293-.0391v-2.0703c.0085-.0299-.0076-.0469-.0332-.0469H2.1777a.0408.0408 0 0 0-.043.043v.5762c0 .0256.0174.043.043.043h.836v.9902c-.141.0427-.363.0683-.6192.0683-.9521 0-1.5449-.5758-1.5449-1.498 0-.9223.6185-1.4961 1.6133-1.4961.4526 0 .7223.0872.9101.164l.0899.0372a.0443.0443 0 0 0 .0332 0c.0128-.0043.0172-.0126.0215-.0254l.1836-.5762c.0085-.0214-.0044-.0422-.0215-.0508l-.0684-.0312c-.2135-.094-.6224-.1954-1.1347-.1954Zm2.8945.0391c-.0256 0-.043.0154-.043.041v4.1817c0 .0256.0174.041.043.041H7.959c.0256 0 .043-.0154.043-.041v-.5977c0-.017-.0174-.039-.043-.039H6.1484v-3.545c0-.0256-.0173-.041-.043-.041zm8.5098.0039a.0408.0408 0 0 0-.043.043v4.1797c0 .0256.0173.043.043.043h.6992a.0408.0408 0 0 0 .043-.043v-1.7989c0-.4483-.0029-.8111-.0157-1.1484.1537.2647.3401.5595.5664.8926l1.4004 2.08a.041.041 0 0 0 .0352.0176h.6992a.0408.0408 0 0 0 .043-.043v-4.1796a.0408.0408 0 0 0-.043-.043h-.6992a.0408.0408 0 0 0-.043.043v1.7617c0 .3416.0044.7091.0215 1.0976-.1495-.2604-.3196-.5287-.5117-.8105l-1.4141-2.0762c-.0085-.0128-.0204-.0156-.0332-.0156zm9.248.2773-.7266.1797a.0455.0455 0 0 0-.0332.043v.6309h-.4394a.0408.0408 0 0 0-.043.043v.5585c0 .0256.0174.043.043.043h.4433v1.4512c0 .4013.0812.6717.252.834.1622.1707.4058.2597.709.2597.2177 0 .4141-.0288.5508-.08l.0547-.0215c.017-.0085.0316-.026.0273-.043l-.0352-.5508c0-.0128-.009-.027-.0175-.0312-.0085-.0085-.0204-.0078-.0332-.0078l-.1036.0253c-.0555.0129-.154.0293-.2949.0293-.1494 0-.293-.0338-.293-.4394v-1.4336h.7676a.0408.0408 0 0 0 .043-.043v-.5586a.0523.0523 0 0 0-.0469-.0351h-.7695v-.8106c0-.0128-.0028-.0266-.0156-.0351-.0085-.0085-.0263-.0121-.0391-.0078zm-3.2285.7891c-.935 0-1.588.6914-1.588 1.6777 0 .9607.6546 1.5801 1.6622 1.5801.5252 0 .883-.102 1.0879-.1875l.0644-.0254c.0214-.0085.0297-.0294.0254-.0508l-.1367-.5351a.0435.0435 0 0 0-.0215-.0254c-.0128-.0043-.0246-.0043-.0332 0l-.0957.039c-.1836.0727-.4092.1407-.8105.1407-.2562 0-.8548-.077-.9317-.7559h2.127a.0444.0444 0 0 0 .043-.037l.0136-.0958a1.5523 1.5523 0 0 0 .0157-.2344c-.0043-.6916-.3758-1.4902-1.4219-1.4902zm-8.0254.0645a.0408.0408 0 0 0-.043.043v3.0488c0 .0256.0174.043.043.043h.7383a.0408.0408 0 0 0 .043-.043v-3.0489a.0408.0408 0 0 0-.043-.043zm7.9824.5547c.1879 0 .3425.0518.4492.1543.141.1323.1884.325.2012.453h-1.3633c.0513-.192.222-.6073.713-.6073zm-10.1992.0253a.4526.4526 0 0 0-.4531.4532.4526.4526 0 0 0 .4531.4531.4526.4526 0 0 0 .4531-.4531.4526.4526 0 0 0-.4531-.4532Z" }) + ] + } + ); +}); + +export { SiGldotinet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.cjs new file mode 100644 index 000000000..37527c54a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFAFF3"; +const SiGleam = React__namespace.forwardRef(function SiGleam2({ title = "Gleam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.6144.0026a1.9 1.9 0 0 0-.229.0261l.0001.0002C9.78.1358 9.2263.538 8.9971 1.1873l-1.7855 5.059A1.8 1.8 0 0 1 6.1704 7.323L1.1706 9.282c-1.283.5027-1.531 2.2673-.4373 3.1027l4.2646 3.257a1.795 1.795 0 0 1 .7031 1.3212l.3179 5.3537c.0815 1.3735 1.6836 2.1548 2.819 1.3729v-.0002l4.4212-3.0459v-.0001a1.8 1.8 0 0 1 1.4757-.2601l5.1962 1.3498c1.3342.3467 2.5725-.9356 2.1794-2.2543v.0002l-1.532-5.1397a1.796 1.796 0 0 1 .209-1.482v-.0002l2.8934-4.5194c.742-1.1591-.0945-2.7324-1.472-2.766l-5.368-.1303a1.8 1.8 0 0 1-1.3467-.6558L12.0862.6422c-.3827-.4654-.9342-.6678-1.4718-.6396m5.7066 10.4086c.4626-.0106.8762.3176.959.7872a.953.953 0 0 1-.773 1.1038.9528.9528 0 1 1-.186-1.891M8.6439 11.765a.953.953 0 0 1 .959.7873c.0913.5182-.2548 1.0123-.773 1.1038s-1.0125-.2547-1.1038-.7729c-.0914-.5182.2547-1.0124.773-1.1038a.96.96 0 0 1 .1448-.0144m4.928 1.3841a.486.486 0 0 1 .3397.15.485.485 0 0 1 .1339.3463 1.264 1.264 0 0 1-.3917.8853v.0001h-.0002a1.266 1.266 0 0 1-.9026.3488h-.0004a1.26 1.26 0 0 1-.4812-.1079 1.26 1.26 0 0 1-.4038-.284 1.27 1.27 0 0 1-.2642-.4168.485.485 0 0 1 .278-.6272.483.483 0 0 1 .371.009.485.485 0 0 1 .2561.2687.29.29 0 0 0 .0615.097v.0002a.3.3 0 0 0 .0938.0658v.0001h.0003a.295.295 0 0 0 .2252.0055l.0003-.0001a.292.292 0 0 0 .1628-.1553l.0002-.0002v-.0001a.29.29 0 0 0 .025-.1116.486.486 0 0 1 .15-.3395.485.485 0 0 1 .3463-.134z" }) + ] + } + ); +}); + +exports.default = SiGleam; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.d.ts new file mode 100644 index 000000000..18061c2ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFAFF3"; +declare const SiGleam: IconType; +export { SiGleam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.mjs new file mode 100644 index 000000000..aca0cf085 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGleam.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFAFF3"; +const SiGleam = React.forwardRef(function SiGleam2({ title = "Gleam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.6144.0026a1.9 1.9 0 0 0-.229.0261l.0001.0002C9.78.1358 9.2263.538 8.9971 1.1873l-1.7855 5.059A1.8 1.8 0 0 1 6.1704 7.323L1.1706 9.282c-1.283.5027-1.531 2.2673-.4373 3.1027l4.2646 3.257a1.795 1.795 0 0 1 .7031 1.3212l.3179 5.3537c.0815 1.3735 1.6836 2.1548 2.819 1.3729v-.0002l4.4212-3.0459v-.0001a1.8 1.8 0 0 1 1.4757-.2601l5.1962 1.3498c1.3342.3467 2.5725-.9356 2.1794-2.2543v.0002l-1.532-5.1397a1.796 1.796 0 0 1 .209-1.482v-.0002l2.8934-4.5194c.742-1.1591-.0945-2.7324-1.472-2.766l-5.368-.1303a1.8 1.8 0 0 1-1.3467-.6558L12.0862.6422c-.3827-.4654-.9342-.6678-1.4718-.6396m5.7066 10.4086c.4626-.0106.8762.3176.959.7872a.953.953 0 0 1-.773 1.1038.9528.9528 0 1 1-.186-1.891M8.6439 11.765a.953.953 0 0 1 .959.7873c.0913.5182-.2548 1.0123-.773 1.1038s-1.0125-.2547-1.1038-.7729c-.0914-.5182.2547-1.0124.773-1.1038a.96.96 0 0 1 .1448-.0144m4.928 1.3841a.486.486 0 0 1 .3397.15.485.485 0 0 1 .1339.3463 1.264 1.264 0 0 1-.3917.8853v.0001h-.0002a1.266 1.266 0 0 1-.9026.3488h-.0004a1.26 1.26 0 0 1-.4812-.1079 1.26 1.26 0 0 1-.4038-.284 1.27 1.27 0 0 1-.2642-.4168.485.485 0 0 1 .278-.6272.483.483 0 0 1 .371.009.485.485 0 0 1 .2561.2687.29.29 0 0 0 .0615.097v.0002a.3.3 0 0 0 .0938.0658v.0001h.0003a.295.295 0 0 0 .2252.0055l.0003-.0001a.292.292 0 0 0 .1628-.1553l.0002-.0002v-.0001a.29.29 0 0 0 .025-.1116.486.486 0 0 1 .15-.3395.485.485 0 0 1 .3463-.134z" }) + ] + } + ); +}); + +export { SiGleam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.cjs new file mode 100644 index 000000000..87f7c2a93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18BED4"; +const SiGlide = React__namespace.forwardRef(function SiGlide2({ title = "Glide", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8 17.52a6.72 6.72 0 0 1 6.72-6.72H24L10.8 24ZM0 13.2 13.2 0v6.48a6.72 6.72 0 0 1-6.72 6.72z" }) + ] + } + ); +}); + +exports.default = SiGlide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.d.ts new file mode 100644 index 000000000..3448d41dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18BED4"; +declare const SiGlide: IconType; +export { SiGlide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.mjs new file mode 100644 index 000000000..81c0edac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18BED4"; +const SiGlide = React.forwardRef(function SiGlide2({ title = "Glide", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.8 17.52a6.72 6.72 0 0 1 6.72-6.72H24L10.8 24ZM0 13.2 13.2 0v6.48a6.72 6.72 0 0 1-6.72 6.72z" }) + ] + } + ); +}); + +export { SiGlide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.cjs new file mode 100644 index 000000000..685b42201 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3333FF"; +const SiGlitch = React__namespace.forwardRef(function SiGlitch2({ title = "Glitch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.146 2.393c-.618 0-1.794 1.61-1.794 1.61s-.453 0-1.803.07c-1.35.07-2.553.67-4.159 1.934C-.216 7.27.011 8.537.011 8.537s1.498.507 1.498.781c0 .275-1.311.6-1.311.6.845 1.081 3.467 2.09 4.13 2.09h.524c-1.086.214-2.136.804-3.462 1.847-1.606 1.264-1.379 2.53-1.379 2.53s1.498.507 1.498.781c0 .275-1.311.6-1.311.6.845 1.081 3.467 2.09 4.13 2.09.635 0 1.079.018 1.882-.132.06.134.686 1.461 1.965 1.736 1.347.29 2.092.062 2.092.062s.067-.595-.24-1.189c1.17.115 2.495.145 3.792-.052 3.603-.547 5.382-1.413 5.963-1.528.582-.115 3.904 1.476 4.106 1.104.203-.373-.73-1.188-.295-2.288.434-1.1-.534-1.827.003-2.705.537-.879.43-2.219.292-2.29-.295-.15-3.423 1.407-4.106 1.28-1.686-.311-1.377-.513-3.647-1.027-.907-.206-.781-.084-.982-.236-.134-.102-.265-.116-.455-.306 3.015-.543 4.552-1.275 5.084-1.38.582-.116 3.904 1.476 4.106 1.103.202-.372-.73-1.187-.295-2.288.434-1.1-.534-1.826.003-2.705.537-.878.43-2.218.292-2.289-.295-.151-3.423 1.407-4.106 1.28-1.686-.312-1.377-.513-3.647-1.027-.907-.206-.781-.084-.982-.236-.2-.152-.39-.106-.782-.74-.392-.635-4.916-1.61-5.225-1.61zM8.09 5.158l.04.002.111.006.397.02a286.477 286.477 0 0 1 1.59.088c.348.02.64.038.865.054.861.06 2.172.26 3.177.464 1.556.315 2.82.778 4.81 1.673l.677.305c.131.059.195.228.143.377-.052.15-.201.222-.333.163a663.41 663.41 0 0 0-.675-.305c-1.962-.881-3.198-1.335-4.711-1.64-.988-.2-2.28-.397-3.12-.457a76.718 76.718 0 0 0-.859-.054l-.384-.022c-.383-.021-.793-.044-1.203-.065l-.126-.006a6.79 6.79 0 0 1 .339 1.187c.02.11.035.216.045.32.034.336-.028.816-.162 1.42-.044.2-.096.409-.153.624a21.303 21.303 0 0 1-.29.995l-.02.064-.008.023c-.05.15-.198.226-.33.17-.133-.057-.2-.225-.15-.375l.007-.02a11.841 11.841 0 0 0 .089-.283c.072-.236.144-.487.212-.741.055-.208.104-.408.146-.599.12-.54.175-.966.15-1.213a3.436 3.436 0 0 0-.038-.269 5.829 5.829 0 0 0-.21-.796 8.1 8.1 0 0 0-.264-.685c-.091-.199.041-.435.238-.425zm-1.653.17c.066.002.13.033.179.091a4.758 4.758 0 0 1 .417.627c.224.404.374.816.415 1.221.023.231.008.49-.038.771-.044.27-.115.555-.206.845a8.216 8.216 0 0 1-.25.688c-.063.144-.216.203-.343.132-.127-.07-.18-.245-.117-.389l.018-.044a7.595 7.595 0 0 0 .21-.582c.082-.263.146-.518.185-.755a2.42 2.42 0 0 0 .032-.6c-.03-.306-.153-.64-.34-.978a4.176 4.176 0 0 0-.356-.538.319.319 0 0 1 .01-.41.239.239 0 0 1 .184-.08zm-3.042.97c.62 0 1.122.57 1.122 1.272 0 .704-.503 1.273-1.122 1.273-.555 0-1.016-.457-1.106-1.058.077.452.428.793.849.793.477 0 .864-.44.864-.981 0-.542-.387-.981-.864-.981-.474 0-.86.432-.865.968V7.57c0-.703.502-1.273 1.122-1.273zM2.88 7.622a.234.265 0 0 1 .233.266.234.265 0 0 1-.233.265.234.265 0 0 1-.234-.265.234.265 0 0 1 .234-.266zm3.329 4.253l.006.013-.115.005.109-.018zm1.88 1.13l.04.003.111.005.397.02a286.463 286.463 0 0 1 1.59.088c.348.02.64.039.865.055.861.06 2.172.26 3.177.463 1.556.315 2.82.778 4.81 1.673l.677.305c.131.06.195.228.143.377-.052.15-.201.222-.333.163a663.41 663.41 0 0 0-.675-.305c-1.962-.881-3.198-1.334-4.711-1.64-.988-.2-2.28-.397-3.12-.456a76.718 76.718 0 0 0-1.243-.077l-1.203-.065-.126-.006a6.79 6.79 0 0 1 .339 1.187c.02.11.035.217.045.32.034.336-.028.817-.162 1.42-.044.2-.096.41-.153.625a21.303 21.303 0 0 1-.31 1.058l-.008.023c-.05.15-.198.226-.33.17-.133-.057-.2-.224-.15-.375l.007-.02a11.841 11.841 0 0 0 .089-.283c.072-.236.144-.487.212-.74.055-.208.104-.409.146-.6.12-.539.175-.966.15-1.213a3.436 3.436 0 0 0-.038-.268 5.829 5.829 0 0 0-.21-.796 8.1 8.1 0 0 0-.264-.686c-.091-.198.041-.434.238-.424zm-1.653.17c.066.002.13.033.179.091a4.758 4.758 0 0 1 .417.627c.224.405.374.816.415 1.222.023.23.008.489-.038.77-.044.27-.115.555-.206.845a8.215 8.215 0 0 1-.25.688c-.063.144-.216.204-.343.133-.127-.071-.18-.246-.117-.39a6.083 6.083 0 0 0 .07-.173 7.59 7.59 0 0 0 .158-.453c.082-.262.146-.518.185-.755a2.42 2.42 0 0 0 .032-.6c-.03-.305-.153-.64-.34-.978a4.176 4.176 0 0 0-.356-.537.319.319 0 0 1 .01-.411.239.239 0 0 1 .184-.079zm-3.042.97c.62 0 1.122.57 1.122 1.273s-.503 1.273-1.122 1.273c-.555 0-1.016-.458-1.106-1.058.077.451.428.792.849.792.477 0 .864-.439.864-.98 0-.543-.387-.982-.864-.982-.474 0-.86.433-.865.969v-.014c0-.703.502-1.273 1.122-1.273zm-.514 1.326a.234.265 0 0 1 .233.265.234.265 0 0 1-.233.265.234.265 0 0 1-.234-.265.234.265 0 0 1 .234-.265z" }) + ] + } + ); +}); + +exports.default = SiGlitch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.d.ts new file mode 100644 index 000000000..fa3470e24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3333FF"; +declare const SiGlitch: IconType; +export { SiGlitch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.mjs new file mode 100644 index 000000000..bc74cc4d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlitch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3333FF"; +const SiGlitch = React.forwardRef(function SiGlitch2({ title = "Glitch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.146 2.393c-.618 0-1.794 1.61-1.794 1.61s-.453 0-1.803.07c-1.35.07-2.553.67-4.159 1.934C-.216 7.27.011 8.537.011 8.537s1.498.507 1.498.781c0 .275-1.311.6-1.311.6.845 1.081 3.467 2.09 4.13 2.09h.524c-1.086.214-2.136.804-3.462 1.847-1.606 1.264-1.379 2.53-1.379 2.53s1.498.507 1.498.781c0 .275-1.311.6-1.311.6.845 1.081 3.467 2.09 4.13 2.09.635 0 1.079.018 1.882-.132.06.134.686 1.461 1.965 1.736 1.347.29 2.092.062 2.092.062s.067-.595-.24-1.189c1.17.115 2.495.145 3.792-.052 3.603-.547 5.382-1.413 5.963-1.528.582-.115 3.904 1.476 4.106 1.104.203-.373-.73-1.188-.295-2.288.434-1.1-.534-1.827.003-2.705.537-.879.43-2.219.292-2.29-.295-.15-3.423 1.407-4.106 1.28-1.686-.311-1.377-.513-3.647-1.027-.907-.206-.781-.084-.982-.236-.134-.102-.265-.116-.455-.306 3.015-.543 4.552-1.275 5.084-1.38.582-.116 3.904 1.476 4.106 1.103.202-.372-.73-1.187-.295-2.288.434-1.1-.534-1.826.003-2.705.537-.878.43-2.218.292-2.289-.295-.151-3.423 1.407-4.106 1.28-1.686-.312-1.377-.513-3.647-1.027-.907-.206-.781-.084-.982-.236-.2-.152-.39-.106-.782-.74-.392-.635-4.916-1.61-5.225-1.61zM8.09 5.158l.04.002.111.006.397.02a286.477 286.477 0 0 1 1.59.088c.348.02.64.038.865.054.861.06 2.172.26 3.177.464 1.556.315 2.82.778 4.81 1.673l.677.305c.131.059.195.228.143.377-.052.15-.201.222-.333.163a663.41 663.41 0 0 0-.675-.305c-1.962-.881-3.198-1.335-4.711-1.64-.988-.2-2.28-.397-3.12-.457a76.718 76.718 0 0 0-.859-.054l-.384-.022c-.383-.021-.793-.044-1.203-.065l-.126-.006a6.79 6.79 0 0 1 .339 1.187c.02.11.035.216.045.32.034.336-.028.816-.162 1.42-.044.2-.096.409-.153.624a21.303 21.303 0 0 1-.29.995l-.02.064-.008.023c-.05.15-.198.226-.33.17-.133-.057-.2-.225-.15-.375l.007-.02a11.841 11.841 0 0 0 .089-.283c.072-.236.144-.487.212-.741.055-.208.104-.408.146-.599.12-.54.175-.966.15-1.213a3.436 3.436 0 0 0-.038-.269 5.829 5.829 0 0 0-.21-.796 8.1 8.1 0 0 0-.264-.685c-.091-.199.041-.435.238-.425zm-1.653.17c.066.002.13.033.179.091a4.758 4.758 0 0 1 .417.627c.224.404.374.816.415 1.221.023.231.008.49-.038.771-.044.27-.115.555-.206.845a8.216 8.216 0 0 1-.25.688c-.063.144-.216.203-.343.132-.127-.07-.18-.245-.117-.389l.018-.044a7.595 7.595 0 0 0 .21-.582c.082-.263.146-.518.185-.755a2.42 2.42 0 0 0 .032-.6c-.03-.306-.153-.64-.34-.978a4.176 4.176 0 0 0-.356-.538.319.319 0 0 1 .01-.41.239.239 0 0 1 .184-.08zm-3.042.97c.62 0 1.122.57 1.122 1.272 0 .704-.503 1.273-1.122 1.273-.555 0-1.016-.457-1.106-1.058.077.452.428.793.849.793.477 0 .864-.44.864-.981 0-.542-.387-.981-.864-.981-.474 0-.86.432-.865.968V7.57c0-.703.502-1.273 1.122-1.273zM2.88 7.622a.234.265 0 0 1 .233.266.234.265 0 0 1-.233.265.234.265 0 0 1-.234-.265.234.265 0 0 1 .234-.266zm3.329 4.253l.006.013-.115.005.109-.018zm1.88 1.13l.04.003.111.005.397.02a286.463 286.463 0 0 1 1.59.088c.348.02.64.039.865.055.861.06 2.172.26 3.177.463 1.556.315 2.82.778 4.81 1.673l.677.305c.131.06.195.228.143.377-.052.15-.201.222-.333.163a663.41 663.41 0 0 0-.675-.305c-1.962-.881-3.198-1.334-4.711-1.64-.988-.2-2.28-.397-3.12-.456a76.718 76.718 0 0 0-1.243-.077l-1.203-.065-.126-.006a6.79 6.79 0 0 1 .339 1.187c.02.11.035.217.045.32.034.336-.028.817-.162 1.42-.044.2-.096.41-.153.625a21.303 21.303 0 0 1-.31 1.058l-.008.023c-.05.15-.198.226-.33.17-.133-.057-.2-.224-.15-.375l.007-.02a11.841 11.841 0 0 0 .089-.283c.072-.236.144-.487.212-.74.055-.208.104-.409.146-.6.12-.539.175-.966.15-1.213a3.436 3.436 0 0 0-.038-.268 5.829 5.829 0 0 0-.21-.796 8.1 8.1 0 0 0-.264-.686c-.091-.198.041-.434.238-.424zm-1.653.17c.066.002.13.033.179.091a4.758 4.758 0 0 1 .417.627c.224.405.374.816.415 1.222.023.23.008.489-.038.77-.044.27-.115.555-.206.845a8.215 8.215 0 0 1-.25.688c-.063.144-.216.204-.343.133-.127-.071-.18-.246-.117-.39a6.083 6.083 0 0 0 .07-.173 7.59 7.59 0 0 0 .158-.453c.082-.262.146-.518.185-.755a2.42 2.42 0 0 0 .032-.6c-.03-.305-.153-.64-.34-.978a4.176 4.176 0 0 0-.356-.537.319.319 0 0 1 .01-.411.239.239 0 0 1 .184-.079zm-3.042.97c.62 0 1.122.57 1.122 1.273s-.503 1.273-1.122 1.273c-.555 0-1.016-.458-1.106-1.058.077.451.428.792.849.792.477 0 .864-.439.864-.98 0-.543-.387-.982-.864-.982-.474 0-.86.433-.865.969v-.014c0-.703.502-1.273 1.122-1.273zm-.514 1.326a.234.265 0 0 1 .233.265.234.265 0 0 1-.233.265.234.265 0 0 1-.234-.265.234.265 0 0 1 .234-.265z" }) + ] + } + ); +}); + +export { SiGlitch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.cjs new file mode 100644 index 000000000..9990ecfb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CA6201"; +const SiGlobus = React__namespace.forwardRef(function SiGlobus2({ title = "Globus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9977 4.3904c-3.8248 0-7.1506 1.6949-8.7866 4.1598-.39.022-.78.041-1.1699.067-.582.041-1.32.56-1.427 1.2399l-.182 1.133c-.18 1.1249-.327 2.0109-.4259 3.1598-.033.403.065.78.262 1.01.263.312.781.386.986.41.7289.067 1.4489.126 2.1638.18 1.698 2.3018 4.9058 3.8597 8.5796 3.8597 3.6748 0 6.8837-1.5599 8.5816-3.8618.442-.034.88-.064 1.326-.104.624-.057 1.1989-.582 1.3379-1.222.18-.8209.24-1.1399.305-1.5498.025-.132.048-.282.072-.454 0-.025.017-.114.033-.229.041-.246.1-.64.149-.92l.18-1.207a1.091 1.091 0 0 0-.27-.9349c-.213-.246-.584-.419-.953-.443a159.7123 159.7123 0 0 0-1.961-.12c-1.6298-2.4728-4.9617-4.1727-8.7995-4.1727Zm0 .329c3.5938 0 6.7257 1.5479 8.3276 3.8218l-.428-.02c-.773-.98-1.8579-1.807-3.1558-2.398-.336.09-.73.173-1.148.238a13.5993 13.5993 0 0 1 1.101 2.034 50.9275 50.9275 0 0 0-.556-.014 14.0593 14.0593 0 0 0-1.096-1.945c-.8289.106-1.7728.163-2.7578.18v.294h-.433c-.02 0-.04.002-.059.004v-.299a24.8788 24.8788 0 0 1-2.8318-.172 14.0733 14.0733 0 0 0-1.09 1.932l-.28.006h-.106l.007-.108a1.5 1.5 0 0 0-.01-.255 13.9993 13.9993 0 0 1 .93-1.649 11.3495 11.3495 0 0 1-1.173-.238c-1.2829.59-2.3538 1.406-3.1198 2.373-.145.007-.29.012-.435.02 1.606-2.265 4.7298-3.8048 8.3136-3.8048Zm-.213.418c-.686.009-1.357.084-2.0029.207a11.6894 11.6894 0 0 0-.508.6479c.771.082 1.625.13 2.511.139zm.5 0v.9859a24.7418 24.7418 0 0 0 2.4399-.14c-.28-.378-.477-.608-.51-.649a12.1924 12.1924 0 0 0-1.9299-.197Zm-3.2648.37c-.337.091-.666.1889-.986.3039.213.04.443.074.681.107.107-.156.215-.295.305-.41Zm5.9667 0c.09.116.188.2559.294.4029.23-.033.453-.074.666-.107a9.3076 9.3076 0 0 0-.96-.295Zm-3.0039 1.9198h.476c.189 0 .36.09.475.247a.808.808 0 0 1 .14.607c-.024.205-.057.402-.082.608.501 0 1.01.01 1.5099.017.189 0 .362.09.477.246a.81.81 0 0 1 .138.598c-.213 1.6658-.468 3.3327-.722 5.0077-.066.435-.41.77-.78.779-.722.008-1.4529.01-2.1749.01a.603.603 0 0 1-.485-.246.813.813 0 0 1-.138-.592v-.008c.32-2.421.673-4.8438 1.01-7.2647.057 0 .106 0 .156-.008zm-5.5667.141c.18 0 .33.074.436.213.115.148.156.36.115.582-.402 2.3729-.746 4.7047-.984 7.0196-.214-.008-.42-.025-.633-.033a.65.65 0 0 1-.484-.256.777.777 0 0 1-.157-.575 92.7355 92.7355 0 0 1 1.043-6.9096c.214-.008.418-.025.631-.033.008 0 .017 0 .033-.008zm3.8838 1.329c.197 0 .362.082.477.23a.841.841 0 0 1 .13.607c-.237 1.6828-.475 3.3567-.697 5.0317-.057.435-.394.764-.763.755a97.9953 97.9953 0 0 1-2.1759-.074.658.658 0 0 1-.492-.261.779.779 0 0 1-.157-.575 119.0943 119.0943 0 0 1 .682-4.9018c.066-.427.427-.771.805-.78.73-.016 1.46-.024 2.1909-.032Zm5.5407.05c.213.009.427.008.64.016.198 0 .37.09.485.246.123.156.181.37.148.592a131.9136 131.9136 0 0 1-.625 4.2337l.871-.023c.238-1.437.45-2.8579.631-4.2618.05-.419.394-.737.7719-.72l.69.023a86.6198 86.6198 0 0 1-.846 5.5738c-.074.41-.426.755-.803.771-.73.033-1.4529.066-2.1839.09a.551.551 0 0 1-.476-.228.78.78 0 0 1-.123-.584c.303-1.921.582-3.8398.82-5.7287zm-11.6554.114a.62.62 0 0 1 .492.205.779.779 0 0 1 .123.5839c-.074.41-.14.82-.205 1.222-.304 0-.606.008-.91.008a.4.4 0 0 1-.387-.402c0-.025.033-.213.033-.213-.311.008-.69.01-1.002.017-.057.238-.4749 3.0448-.4919 3.3658.312.016.69.04 1.002.056.115-.64.165-.836.198-1.066-.041-.008-.141-.008-.182-.008-.205-.008-.384-.23-.352-.469.041-.2869.082-.5499.131-.8449H4.07c.213 0 .46.073.402.45-.09.731-.213 1.808-.361 2.6529-.082.435-.28.664-.73.672-.436 0-1.5689-.08-2.2249-.188-.197-.032-.41-.09-.541-.238-.132-.156-.172-.41-.172-.6 0-.508.27-2.6679.582-4.3178.074-.394.55-.738.935-.779a25.7508 25.7508 0 0 1 2.2249-.107Zm16.5482.04h.025c1.256.025 1.814.083 2.1419.124.19.024.402.18.508.312.123.148.181.287.157.4839-.05.353-.107.708-.165 1.069-.295 0-.59-.01-.886-.01a.416.416 0 0 1-.395-.393c0-.024 0-.057.008-.081.008-.042.025-.083.033-.124l-.894-.025c-.025.18-.131.771-.172 1.025h1.502c.189 0 .361.076.476.215.115.1479.164.2789.131.5329-.123 1.035-.237 1.56-.385 2.1019-.098.378-.468.754-.845.795-1.076.123-1.4049.133-2.2009.174a.541.541 0 0 1-.475-.207.68.68 0 0 1-.115-.557 66.0968 66.0968 0 0 0 .213-1.232c.303-.017.606-.025.91-.034.205-.008.379.165.379.387 0 .033 0 .057-.008.09 0 .041-.01.09-.018.13.296-.007.592-.024.887-.04.033-.18.14-.73.182-.984-.296.008-1.43.007-1.43.007-.197.008-.344-.032-.46-.18-.114-.147-.195-.262-.212-.492.099-.9189.31-2.0598.352-2.3878.049-.402.378-.7.756-.7zm-7.9376 1.2399c-.033.247-.484 3.3918-.533 3.7448h.918c.04-.255.486-3.3828.535-3.7438zm-3.3239.009c-.304 0-.616.007-.92.007-.041.255-.4769 3.3428-.5099 3.6958.304.008.609.007.912.015.025-.246.46-3.3568.518-3.7178zm-5.5497 5.4367.454.031c.732.822 1.691 1.521 2.8129 2.043a10.8995 10.8995 0 0 1 1.1909-.264 14.0933 14.0933 0 0 1-.9-1.613l.57.024c.29.575.6 1.09.879 1.508.862-.115 1.8469-.18 2.8648-.188v-1.25l.287.002.205-.002v1.25a23.8268 23.8268 0 0 1 2.7839.188c.279-.42.587-.935.876-1.51.19-.007.38-.01.5689-.018a14.5593 14.5593 0 0 1-.904 1.62c.443.073.838.162 1.183.269 1.137-.522 2.1089-1.226 2.8479-2.057l.443-.033c-1.664 2.093-4.6678 3.4938-8.0857 3.4938-3.4168 0-6.4137-1.4009-8.0776-3.4938zm7.8716 2.033c-.903.008-1.7729.056-2.5528.147.271.3769.485.6239.56.7149.6399.115 1.3039.189 1.9928.197zm.492 0v1.0589a12.0944 12.0944 0 0 0 1.914-.198 13.1164 13.1164 0 0 0 .5499-.705 24.7188 24.7188 0 0 0-2.4639-.156zm-3.6028.22c-.263.042-.5.085-.73.1339a9.1156 9.1156 0 0 0 1.076.336c-.099-.132-.223-.289-.346-.47Zm6.6247.01a24.5778 24.5778 0 0 1-.336.4599c.361-.09.714-.197 1.058-.328-.221-.05-.468-.09-.722-.131z" }) + ] + } + ); +}); + +exports.default = SiGlobus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.d.ts new file mode 100644 index 000000000..eeda3f961 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CA6201"; +declare const SiGlobus: IconType; +export { SiGlobus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.mjs new file mode 100644 index 000000000..89cd47bc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlobus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CA6201"; +const SiGlobus = React.forwardRef(function SiGlobus2({ title = "Globus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9977 4.3904c-3.8248 0-7.1506 1.6949-8.7866 4.1598-.39.022-.78.041-1.1699.067-.582.041-1.32.56-1.427 1.2399l-.182 1.133c-.18 1.1249-.327 2.0109-.4259 3.1598-.033.403.065.78.262 1.01.263.312.781.386.986.41.7289.067 1.4489.126 2.1638.18 1.698 2.3018 4.9058 3.8597 8.5796 3.8597 3.6748 0 6.8837-1.5599 8.5816-3.8618.442-.034.88-.064 1.326-.104.624-.057 1.1989-.582 1.3379-1.222.18-.8209.24-1.1399.305-1.5498.025-.132.048-.282.072-.454 0-.025.017-.114.033-.229.041-.246.1-.64.149-.92l.18-1.207a1.091 1.091 0 0 0-.27-.9349c-.213-.246-.584-.419-.953-.443a159.7123 159.7123 0 0 0-1.961-.12c-1.6298-2.4728-4.9617-4.1727-8.7995-4.1727Zm0 .329c3.5938 0 6.7257 1.5479 8.3276 3.8218l-.428-.02c-.773-.98-1.8579-1.807-3.1558-2.398-.336.09-.73.173-1.148.238a13.5993 13.5993 0 0 1 1.101 2.034 50.9275 50.9275 0 0 0-.556-.014 14.0593 14.0593 0 0 0-1.096-1.945c-.8289.106-1.7728.163-2.7578.18v.294h-.433c-.02 0-.04.002-.059.004v-.299a24.8788 24.8788 0 0 1-2.8318-.172 14.0733 14.0733 0 0 0-1.09 1.932l-.28.006h-.106l.007-.108a1.5 1.5 0 0 0-.01-.255 13.9993 13.9993 0 0 1 .93-1.649 11.3495 11.3495 0 0 1-1.173-.238c-1.2829.59-2.3538 1.406-3.1198 2.373-.145.007-.29.012-.435.02 1.606-2.265 4.7298-3.8048 8.3136-3.8048Zm-.213.418c-.686.009-1.357.084-2.0029.207a11.6894 11.6894 0 0 0-.508.6479c.771.082 1.625.13 2.511.139zm.5 0v.9859a24.7418 24.7418 0 0 0 2.4399-.14c-.28-.378-.477-.608-.51-.649a12.1924 12.1924 0 0 0-1.9299-.197Zm-3.2648.37c-.337.091-.666.1889-.986.3039.213.04.443.074.681.107.107-.156.215-.295.305-.41Zm5.9667 0c.09.116.188.2559.294.4029.23-.033.453-.074.666-.107a9.3076 9.3076 0 0 0-.96-.295Zm-3.0039 1.9198h.476c.189 0 .36.09.475.247a.808.808 0 0 1 .14.607c-.024.205-.057.402-.082.608.501 0 1.01.01 1.5099.017.189 0 .362.09.477.246a.81.81 0 0 1 .138.598c-.213 1.6658-.468 3.3327-.722 5.0077-.066.435-.41.77-.78.779-.722.008-1.4529.01-2.1749.01a.603.603 0 0 1-.485-.246.813.813 0 0 1-.138-.592v-.008c.32-2.421.673-4.8438 1.01-7.2647.057 0 .106 0 .156-.008zm-5.5667.141c.18 0 .33.074.436.213.115.148.156.36.115.582-.402 2.3729-.746 4.7047-.984 7.0196-.214-.008-.42-.025-.633-.033a.65.65 0 0 1-.484-.256.777.777 0 0 1-.157-.575 92.7355 92.7355 0 0 1 1.043-6.9096c.214-.008.418-.025.631-.033.008 0 .017 0 .033-.008zm3.8838 1.329c.197 0 .362.082.477.23a.841.841 0 0 1 .13.607c-.237 1.6828-.475 3.3567-.697 5.0317-.057.435-.394.764-.763.755a97.9953 97.9953 0 0 1-2.1759-.074.658.658 0 0 1-.492-.261.779.779 0 0 1-.157-.575 119.0943 119.0943 0 0 1 .682-4.9018c.066-.427.427-.771.805-.78.73-.016 1.46-.024 2.1909-.032Zm5.5407.05c.213.009.427.008.64.016.198 0 .37.09.485.246.123.156.181.37.148.592a131.9136 131.9136 0 0 1-.625 4.2337l.871-.023c.238-1.437.45-2.8579.631-4.2618.05-.419.394-.737.7719-.72l.69.023a86.6198 86.6198 0 0 1-.846 5.5738c-.074.41-.426.755-.803.771-.73.033-1.4529.066-2.1839.09a.551.551 0 0 1-.476-.228.78.78 0 0 1-.123-.584c.303-1.921.582-3.8398.82-5.7287zm-11.6554.114a.62.62 0 0 1 .492.205.779.779 0 0 1 .123.5839c-.074.41-.14.82-.205 1.222-.304 0-.606.008-.91.008a.4.4 0 0 1-.387-.402c0-.025.033-.213.033-.213-.311.008-.69.01-1.002.017-.057.238-.4749 3.0448-.4919 3.3658.312.016.69.04 1.002.056.115-.64.165-.836.198-1.066-.041-.008-.141-.008-.182-.008-.205-.008-.384-.23-.352-.469.041-.2869.082-.5499.131-.8449H4.07c.213 0 .46.073.402.45-.09.731-.213 1.808-.361 2.6529-.082.435-.28.664-.73.672-.436 0-1.5689-.08-2.2249-.188-.197-.032-.41-.09-.541-.238-.132-.156-.172-.41-.172-.6 0-.508.27-2.6679.582-4.3178.074-.394.55-.738.935-.779a25.7508 25.7508 0 0 1 2.2249-.107Zm16.5482.04h.025c1.256.025 1.814.083 2.1419.124.19.024.402.18.508.312.123.148.181.287.157.4839-.05.353-.107.708-.165 1.069-.295 0-.59-.01-.886-.01a.416.416 0 0 1-.395-.393c0-.024 0-.057.008-.081.008-.042.025-.083.033-.124l-.894-.025c-.025.18-.131.771-.172 1.025h1.502c.189 0 .361.076.476.215.115.1479.164.2789.131.5329-.123 1.035-.237 1.56-.385 2.1019-.098.378-.468.754-.845.795-1.076.123-1.4049.133-2.2009.174a.541.541 0 0 1-.475-.207.68.68 0 0 1-.115-.557 66.0968 66.0968 0 0 0 .213-1.232c.303-.017.606-.025.91-.034.205-.008.379.165.379.387 0 .033 0 .057-.008.09 0 .041-.01.09-.018.13.296-.007.592-.024.887-.04.033-.18.14-.73.182-.984-.296.008-1.43.007-1.43.007-.197.008-.344-.032-.46-.18-.114-.147-.195-.262-.212-.492.099-.9189.31-2.0598.352-2.3878.049-.402.378-.7.756-.7zm-7.9376 1.2399c-.033.247-.484 3.3918-.533 3.7448h.918c.04-.255.486-3.3828.535-3.7438zm-3.3239.009c-.304 0-.616.007-.92.007-.041.255-.4769 3.3428-.5099 3.6958.304.008.609.007.912.015.025-.246.46-3.3568.518-3.7178zm-5.5497 5.4367.454.031c.732.822 1.691 1.521 2.8129 2.043a10.8995 10.8995 0 0 1 1.1909-.264 14.0933 14.0933 0 0 1-.9-1.613l.57.024c.29.575.6 1.09.879 1.508.862-.115 1.8469-.18 2.8648-.188v-1.25l.287.002.205-.002v1.25a23.8268 23.8268 0 0 1 2.7839.188c.279-.42.587-.935.876-1.51.19-.007.38-.01.5689-.018a14.5593 14.5593 0 0 1-.904 1.62c.443.073.838.162 1.183.269 1.137-.522 2.1089-1.226 2.8479-2.057l.443-.033c-1.664 2.093-4.6678 3.4938-8.0857 3.4938-3.4168 0-6.4137-1.4009-8.0776-3.4938zm7.8716 2.033c-.903.008-1.7729.056-2.5528.147.271.3769.485.6239.56.7149.6399.115 1.3039.189 1.9928.197zm.492 0v1.0589a12.0944 12.0944 0 0 0 1.914-.198 13.1164 13.1164 0 0 0 .5499-.705 24.7188 24.7188 0 0 0-2.4639-.156zm-3.6028.22c-.263.042-.5.085-.73.1339a9.1156 9.1156 0 0 0 1.076.336c-.099-.132-.223-.289-.346-.47Zm6.6247.01a24.5778 24.5778 0 0 1-.336.4599c.361-.09.714-.197 1.058-.328-.221-.05-.468-.09-.722-.131z" }) + ] + } + ); +}); + +export { SiGlobus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.cjs new file mode 100644 index 000000000..f8ffd8c51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2CC38"; +const SiGlovo = React__namespace.forwardRef(function SiGlovo2({ title = "Glovo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.012 0C7.847 0 4.459 3.388 4.459 7.553c0 1.576.494 3.106 1.412 4.4l.211.281 3.93 5.555s.47.775 1.529.775h.941c1.036 0 1.53-.775 1.53-.775l3.93-5.555.187-.28a7.43 7.43 0 0 0 1.412-4.401C19.564 3.388 16.176 0 12.011 0Zm0 3.693a3.837 3.837 0 0 1 3.836 3.836c0 .824-.26 1.578-.73 2.237l-.212.28-2.894 4.095-2.895-4.07-.21-.305a3.848 3.848 0 0 1-.731-2.237 3.837 3.837 0 0 1 3.836-3.836zm-2.117 18.26c0 1.106.893 2.023 2.07 2.047 1.223 0 2.117-.917 2.117-2.059 0-1.14-.894-2.058-2.094-2.058-1.2 0-2.093.917-2.093 2.07z" }) + ] + } + ); +}); + +exports.default = SiGlovo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.d.ts new file mode 100644 index 000000000..685ca92a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2CC38"; +declare const SiGlovo: IconType; +export { SiGlovo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.mjs new file mode 100644 index 000000000..c8eb898aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGlovo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2CC38"; +const SiGlovo = React.forwardRef(function SiGlovo2({ title = "Glovo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.012 0C7.847 0 4.459 3.388 4.459 7.553c0 1.576.494 3.106 1.412 4.4l.211.281 3.93 5.555s.47.775 1.529.775h.941c1.036 0 1.53-.775 1.53-.775l3.93-5.555.187-.28a7.43 7.43 0 0 0 1.412-4.401C19.564 3.388 16.176 0 12.011 0Zm0 3.693a3.837 3.837 0 0 1 3.836 3.836c0 .824-.26 1.578-.73 2.237l-.212.28-2.894 4.095-2.895-4.07-.21-.305a3.848 3.848 0 0 1-.731-2.237 3.837 3.837 0 0 1 3.836-3.836zm-2.117 18.26c0 1.106.893 2.023 2.07 2.047 1.223 0 2.117-.917 2.117-2.059 0-1.14-.894-2.058-2.094-2.058-1.2 0-2.093.917-2.093 2.07z" }) + ] + } + ); +}); + +export { SiGlovo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.cjs new file mode 100644 index 000000000..df12e2e1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#87C540"; +const SiGltf = React__namespace.forwardRef(function SiGltf2({ title = "glTF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.154 9.357h-.205v.533h-.179v-.533h-.206v-.154h.59zm.08-.154h.263l.119.458h.002l.118-.458H24v.687h-.169v-.522h-.001l-.145.522h-.137l-.144-.522h-.002v.522h-.168zM9.671 16.29c-.742.832-2.001 1.293-4.483 1.208C2.094 16.427 0 14.366 0 11.998 0 8.53 4.497 5.72 10.043 5.721c3.621 0 6.788 1.263 8.555 3.061-1.619-1.073-4.052-1.691-6.767-1.691C6.959 7.091 3.01 9.289 3.01 12c0 1.7 1.552 3.198 3.911 4.079v-.001c.006.002.011.005.017.007.06.022.12.044.182.066.056.017.113.031.173.043.165.032.322.048.473.048q.45 0 .762-.156t.516-.429c.136-.183.234-.403.295-.661s.091-.544.091-.859v-.365h-.021c-.079.171-.179.32-.3.445q-.183.189-.414.312c-.154.082-.319.145-.494.188-.176.043-.349.064-.521.064-.416 0-.777-.075-1.085-.225-.308-.151-.566-.355-.774-.613-.207-.257-.363-.556-.467-.896s-.155-.7-.155-1.08c0-.329.042-.666.128-1.01.086-.343.229-.658.43-.945.2-.286.465-.521.795-.703.329-.183.734-.274 1.214-.274.35 0 .673.077.966.231.294.154.523.385.688.693h.01v-.795h.87v5.08c0 .909-.217 1.584-.629 2.046m-.375-3.689c.061-.258.091-.516.091-.774 0-.243-.028-.483-.085-.719-.058-.237-.149-.45-.274-.639-.126-.19-.289-.342-.489-.457-.201-.114-.444-.172-.73-.172-.294 0-.545.056-.752.167-.208.111-.378.259-.51.446-.133.186-.23.401-.291.644-.06.244-.091.498-.091.763 0 .25.025.501.075.751.05.251.136.479.258.683s.283.368.484.494c.2.125.451.188.751.188.301 0 .557-.063.768-.188.211-.126.382-.29.511-.494.128-.204.223-.435.284-.693m.798 4.213c.604.072 1.095.095 1.738.095 2.704 0 5.128-.607 6.746-1.673-1.771 1.785-4.93 3.044-8.537 3.043-.933 0-1.836-.079-2.693-.228 1.28-.214 2.22-.76 2.746-1.237m5.554-2.082h-1.311v-4.415h-1.644V9.194h4.599v1.123h-1.644zm3.637 0h-1.31V9.194h4.046v1.123h-2.736v1.036h2.395v1.123h-2.395zm-8.222-6.917h.913v6.902h-.913z" }) + ] + } + ); +}); + +exports.default = SiGltf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.d.ts new file mode 100644 index 000000000..6bf627dd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#87C540"; +declare const SiGltf: IconType; +export { SiGltf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.mjs new file mode 100644 index 000000000..a52e7d5c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGltf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#87C540"; +const SiGltf = React.forwardRef(function SiGltf2({ title = "glTF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.154 9.357h-.205v.533h-.179v-.533h-.206v-.154h.59zm.08-.154h.263l.119.458h.002l.118-.458H24v.687h-.169v-.522h-.001l-.145.522h-.137l-.144-.522h-.002v.522h-.168zM9.671 16.29c-.742.832-2.001 1.293-4.483 1.208C2.094 16.427 0 14.366 0 11.998 0 8.53 4.497 5.72 10.043 5.721c3.621 0 6.788 1.263 8.555 3.061-1.619-1.073-4.052-1.691-6.767-1.691C6.959 7.091 3.01 9.289 3.01 12c0 1.7 1.552 3.198 3.911 4.079v-.001c.006.002.011.005.017.007.06.022.12.044.182.066.056.017.113.031.173.043.165.032.322.048.473.048q.45 0 .762-.156t.516-.429c.136-.183.234-.403.295-.661s.091-.544.091-.859v-.365h-.021c-.079.171-.179.32-.3.445q-.183.189-.414.312c-.154.082-.319.145-.494.188-.176.043-.349.064-.521.064-.416 0-.777-.075-1.085-.225-.308-.151-.566-.355-.774-.613-.207-.257-.363-.556-.467-.896s-.155-.7-.155-1.08c0-.329.042-.666.128-1.01.086-.343.229-.658.43-.945.2-.286.465-.521.795-.703.329-.183.734-.274 1.214-.274.35 0 .673.077.966.231.294.154.523.385.688.693h.01v-.795h.87v5.08c0 .909-.217 1.584-.629 2.046m-.375-3.689c.061-.258.091-.516.091-.774 0-.243-.028-.483-.085-.719-.058-.237-.149-.45-.274-.639-.126-.19-.289-.342-.489-.457-.201-.114-.444-.172-.73-.172-.294 0-.545.056-.752.167-.208.111-.378.259-.51.446-.133.186-.23.401-.291.644-.06.244-.091.498-.091.763 0 .25.025.501.075.751.05.251.136.479.258.683s.283.368.484.494c.2.125.451.188.751.188.301 0 .557-.063.768-.188.211-.126.382-.29.511-.494.128-.204.223-.435.284-.693m.798 4.213c.604.072 1.095.095 1.738.095 2.704 0 5.128-.607 6.746-1.673-1.771 1.785-4.93 3.044-8.537 3.043-.933 0-1.836-.079-2.693-.228 1.28-.214 2.22-.76 2.746-1.237m5.554-2.082h-1.311v-4.415h-1.644V9.194h4.599v1.123h-1.644zm3.637 0h-1.31V9.194h4.046v1.123h-2.736v1.036h2.395v1.123h-2.395zm-8.222-6.917h.913v6.902h-.913z" }) + ] + } + ); +}); + +export { SiGltf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.cjs new file mode 100644 index 000000000..8d2ddfc5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA4335"; +const SiGmail = React__namespace.forwardRef(function SiGmail2({ title = "Gmail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457z" }) + ] + } + ); +}); + +exports.default = SiGmail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.d.ts new file mode 100644 index 000000000..853e0fa32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA4335"; +declare const SiGmail: IconType; +export { SiGmail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.mjs new file mode 100644 index 000000000..e40a8745a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGmail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA4335"; +const SiGmail = React.forwardRef(function SiGmail2({ title = "Gmail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457z" }) + ] + } + ); +}); + +export { SiGmail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.cjs new file mode 100644 index 000000000..5bfd115a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C449B"; +const SiGmx = React__namespace.forwardRef(function SiGmx2({ title = "GMX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.904 11.571v1.501H5.46c-.075.845-.712 1.274-1.539 1.274-1.255 0-1.934-1.157-1.934-2.3 0-1.118.65-2.317 1.906-2.317.77 0 1.321.468 1.586 1.166l1.812-.76C6.66 8.765 5.489 8.086 3.979 8.086 1.614 8.087 0 9.654 0 12.037c0 2.309 1.604 3.876 3.913 3.876 1.227 0 2.308-.439 3.025-1.44.651-.916.731-1.831.75-2.904zM13.65 8.3l-1.586 3.95-1.5-3.95H8.67l-1.255 7.392h1.91l.619-4.257h.019l1.695 4.257h.765l1.775-4.257h.024l.538 4.257h1.92L15.562 8.3zm7.708 3.473 2.086-3.475h-2.128l-1.11 1.767L19.012 8.3H16.68l2.459 3.47-2.46 3.922h2.333l1.33-2.223 1.576 2.223H24l-2.642-3.92" }) + ] + } + ); +}); + +exports.default = SiGmx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.d.ts new file mode 100644 index 000000000..1688e35b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C449B"; +declare const SiGmx: IconType; +export { SiGmx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.mjs new file mode 100644 index 000000000..233ef6a7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGmx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C449B"; +const SiGmx = React.forwardRef(function SiGmx2({ title = "GMX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.904 11.571v1.501H5.46c-.075.845-.712 1.274-1.539 1.274-1.255 0-1.934-1.157-1.934-2.3 0-1.118.65-2.317 1.906-2.317.77 0 1.321.468 1.586 1.166l1.812-.76C6.66 8.765 5.489 8.086 3.979 8.086 1.614 8.087 0 9.654 0 12.037c0 2.309 1.604 3.876 3.913 3.876 1.227 0 2.308-.439 3.025-1.44.651-.916.731-1.831.75-2.904zM13.65 8.3l-1.586 3.95-1.5-3.95H8.67l-1.255 7.392h1.91l.619-4.257h.019l1.695 4.257h.765l1.775-4.257h.024l.538 4.257h1.92L15.562 8.3zm7.708 3.473 2.086-3.475h-2.128l-1.11 1.767L19.012 8.3H16.68l2.459 3.47-2.46 3.922h2.333l1.33-2.223 1.576 2.223H24l-2.642-3.92" }) + ] + } + ); +}); + +export { SiGmx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.cjs new file mode 100644 index 000000000..277483a50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4A86CF"; +const SiGnome = React__namespace.forwardRef(function SiGnome2({ title = "GNOME", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.703 0c-4.99 0-5.927 7.111-3.12 7.111 2.81 0 8.113-7.111 3.12-7.111M11.99.872q-.119-.001-.25.016c-2.811.364-1.82 5.25-.324 5.34 1.449.09 3.032-5.347.574-5.356M7.123 2.803a1.4 1.4 0 0 0-.488.114c-2.259.933-.344 4.776.921 4.519 1.168-.24 1.319-4.671-.433-4.632Zm-3.6 3.016a1.05 1.05 0 0 0-.634.215c-1.807 1.248.607 4.269 1.671 3.799.93-.41.338-3.967-1.037-4.014m10.032 2.309c-3.835.033-8.716 1.978-9.567 5.784C3.044 18.14 7.875 24 12.915 24c2.48 0 5.34-2.24 5.875-5.077.409-2.163-4.81-1.295-4.623.137.225 1.715-1.258 2.561-2.711 1.454-4.623-3.52 7.658-5.276 6.847-10.086-.263-1.56-2.29-2.322-4.748-2.301Z" }) + ] + } + ); +}); + +exports.default = SiGnome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.d.ts new file mode 100644 index 000000000..c22289ac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4A86CF"; +declare const SiGnome: IconType; +export { SiGnome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.mjs new file mode 100644 index 000000000..6ae18cca8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4A86CF"; +const SiGnome = React.forwardRef(function SiGnome2({ title = "GNOME", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.703 0c-4.99 0-5.927 7.111-3.12 7.111 2.81 0 8.113-7.111 3.12-7.111M11.99.872q-.119-.001-.25.016c-2.811.364-1.82 5.25-.324 5.34 1.449.09 3.032-5.347.574-5.356M7.123 2.803a1.4 1.4 0 0 0-.488.114c-2.259.933-.344 4.776.921 4.519 1.168-.24 1.319-4.671-.433-4.632Zm-3.6 3.016a1.05 1.05 0 0 0-.634.215c-1.807 1.248.607 4.269 1.671 3.799.93-.41.338-3.967-1.037-4.014m10.032 2.309c-3.835.033-8.716 1.978-9.567 5.784C3.044 18.14 7.875 24 12.915 24c2.48 0 5.34-2.24 5.875-5.077.409-2.163-4.81-1.295-4.623.137.225 1.715-1.258 2.561-2.711 1.454-4.623-3.52 7.658-5.276 6.847-10.086-.263-1.56-2.29-2.322-4.748-2.301Z" }) + ] + } + ); +}); + +export { SiGnome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.cjs new file mode 100644 index 000000000..97e89e6cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#241F31"; +const SiGnometerminal = React__namespace.forwardRef(function SiGnometerminal2({ title = "GNOME Terminal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.846 0A1.841 1.841 0 000 1.846v18.463c0 1.022.823 1.845 1.846 1.845h20.308A1.841 1.841 0 0024 20.31V1.846A1.841 1.841 0 0022.154 0H1.846zm0 .924h20.308c.512 0 .922.41.922.922v18.463c0 .511-.41.921-.922.921H1.846a.919.919 0 01-.922-.921V1.846c0-.512.41-.922.922-.922zm0 .922v18.463h20.308V1.846H1.846zm1.845 2.14l3.235 1.758v.836L3.69 8.477V7.385l2.243-1.207v-.033L3.69 5.076v-1.09zM7.846 9.23h3.693v.924H7.846V9.23zM0 21.736v.418C0 23.177.823 24 1.846 24h20.308A1.841 1.841 0 0024 22.154v-.418a2.334 2.334 0 01-1.846.918H1.846A2.334 2.334 0 010 21.736Z" }) + ] + } + ); +}); + +exports.default = SiGnometerminal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.d.ts new file mode 100644 index 000000000..884aa05fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#241F31"; +declare const SiGnometerminal: IconType; +export { SiGnometerminal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.mjs new file mode 100644 index 000000000..b3605b77b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnometerminal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#241F31"; +const SiGnometerminal = React.forwardRef(function SiGnometerminal2({ title = "GNOME Terminal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.846 0A1.841 1.841 0 000 1.846v18.463c0 1.022.823 1.845 1.846 1.845h20.308A1.841 1.841 0 0024 20.31V1.846A1.841 1.841 0 0022.154 0H1.846zm0 .924h20.308c.512 0 .922.41.922.922v18.463c0 .511-.41.921-.922.921H1.846a.919.919 0 01-.922-.921V1.846c0-.512.41-.922.922-.922zm0 .922v18.463h20.308V1.846H1.846zm1.845 2.14l3.235 1.758v.836L3.69 8.477V7.385l2.243-1.207v-.033L3.69 5.076v-1.09zM7.846 9.23h3.693v.924H7.846V9.23zM0 21.736v.418C0 23.177.823 24 1.846 24h20.308A1.841 1.841 0 0024 22.154v-.418a2.334 2.334 0 01-1.846.918H1.846A2.334 2.334 0 010 21.736Z" }) + ] + } + ); +}); + +export { SiGnometerminal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.cjs new file mode 100644 index 000000000..30a5867a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A42E2B"; +const SiGnu = React__namespace.forwardRef(function SiGnu2({ title = "GNU", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.072 13.931a.62.62 0 00-.52.338c-.114.211-.388.242-.516.201-.21-.07-.48-.119-.744.068-.263.187-.546.045-.495-.297.05-.34.172-.645.5-.83.713-.41.216-.695.607-1.108.394-.412.307-.537.293-1.1-1.326-.2-2.077-.58-2.915-1.63C.442 8.528.117 7.664.03 6.35-.057 5.033.02 4.18.588 3.09 1.156 2 1.756 1.475 2.788.93 3.825.383 4.84.254 5.78.271c.938.014 1.563.082 2.093.386.53.303 1.016.684 1.324.685.24.015.477-.053.673-.192.04 1.02-.878 1.108-1.698 1.13-.82.02-1.324-.317-2.08-.192-.754.128-1.992.47-2.595 1.52-.603 1.05-.624 1.42-.573 2.3.05.879.806 1.535 1.234 1.543.428.007.523-.117.898-.36.374-.246 2.284-2.61 2.934-3.14.653-.53 1.296-.696 1.99-.705.695-.008.87.015 1.433.246.56.229.903.652 1.355.91.23-.135.375-.34.584-.495.76-.552 1.152-.702 2.053-.615.518.052 1.17.347 1.56.686.693.604 1.265 1.44 1.727 2.079.36.497.785 1.09 1.392 1.277.66.2 1.157-.652 1.23-1.13.043-.27.097-.505.097-.8 0-.297-.03-.655-.115-.965a3.453 3.453 0 00-.392-.87c-.258-.415-.68-.85-1.116-1.071-.246-.125-.826-.353-1.19-.36-.449-.01-.79.14-1.202.168-.5.034-1.396.146-1.786-.24-.25-.246-.283-.41-.324-.73a.76.76 0 00.4.162c.314.026.606-.23.86-.378.21-.123.504-.34.778-.45.704-.285 1.567-.278 2.31-.2.594.06 1.367.324 1.89.62.525.297 1.03.798 1.4 1.269.465.594.72 1.104.888 1.844.216.945.277 2.365.015 3.299-.205.734-.887 1.86-1.467 2.414-.573.547-1.235.81-1.986.955.03.149.033.29.071.416.056.178.163.375.38.313.086-.025.133-.047.246.053.115.1.056.484-.266.66-.164.085-.334.103-.595.11a5.61 5.61 0 01-.953-.046c-.283-.047-.45-.272-.765-.308-.484-.055-.854-.404-1.244-.653-.162-.104-.218-.104-.31-.158.05.154.117.314.15.465.034.145.02.284.037.403.02.12.052.21.07.308.077.068.103.173.233.207.13.035.334-.018.468-.037.135-.018.224-.09.327-.07.105.02.204.096.292.166s.164.08.234.254c.07.178.135.537.146.777.01.24-.018.455-.089.648-.07.19-.135.273-.327.463s-.505.465-.818.66c.058.084.083.162.173.254.09.094.277.197.36.295.083.098.126.168.126.277a.587.587 0 01-.092.373c-.223.3-.483.352-.803.492.054.334.098.572.02.906-.03.137-.102.445-.27.525-.17.08-.492.041-.698.074-.205.031-.32.063-.48.094-.097.141-.24.297-.29.422-.05.127-.034.172.006.3.042.128.185.315.225.468a.93.93 0 01.01.463.834.834 0 01-.23.396c-.128.135-.38.24-.508.346-.125.11-.252.123-.217.303.047.248.41.646.67.744a.793.793 0 00.557-.04c-.014.208-.195.353-.315.493.322-.094.636-.27.854-.504-.067.203-.3.529-.645.816-.345.287-.343.229-.517.344.314.06.606.045.85.002a1.69 1.69 0 01-.64.207 1.876 1.876 0 01-.73-.055c-.26-.063-.499-.301-.814-.465.03.119.053.26.185.38.136.12.335.183.55.284-.273-.03-.559-.037-.825-.096a2.083 2.083 0 01-.478-.164c-.144-.07-.255-.176-.384-.264.06.117.08.256.184.352.104.098.275.135.412.199-.143-.004-.28.029-.43-.01a1.166 1.166 0 01-.443-.21 3.165 3.165 0 01-.445-.395c-.132-.145-.296-.332-.345-.463-.048-.133.03-.225.044-.338-.09.06-.2.094-.272.18-.07.088-.131.166-.1.318.03.15.171.338.27.506-.295-.242-.46-.336-.53-.625-.064-.273.104-.52.233-.725.064-.104.161-.2.22-.3-.134-.128-.284-.24-.4-.388-.112-.15-.161-.352-.276-.492-.117-.143-.274-.232-.41-.348.119.256.317.572.359.77.044.2-.048.323-.12.43-.07.108-.183.134-.291.198-.11.068-.277.016-.342.113s-.083.246-.021.344l.256.398a1.173 1.173 0 01-.327-.28c-.074-.097-.186-.189-.2-.317-.015-.13-.022-.246.064-.363.084-.117.318-.156.422-.246.105-.09.162-.148.156-.264-.006-.117-.12-.2-.217-.273-.3-.225-.68-.43-.934-.699a.931.931 0 01-.24-.379c-.03-.105.002-.188.072-.314.072-.13.315-.305.346-.443.029-.14-.095-.172-.205-.22-.111-.05-.322.024-.425-.062-.103-.086.03-.266-.086-.365-.116-.099-.38-.045-.52-.15a.724.724 0 01-.24-.395.828.828 0 01-.02-.436c.032-.113.128-.133.187-.19.06-.058.108-.105.03-.192-.074-.088-.33.004-.476-.105-.15-.113-.06-.38-.163-.494-.104-.109-.287-.066-.386-.104-.097-.035-.135.09-.194-.109-.06-.199-.063-.797-.143-1.02-.08-.223-.238-.016-.31-.236-.076-.22-.005-.574-.038-.908l-.15-.91c-.52.352-.867.463-1.428.561-.047 1.373-.176 2.182.29 3.705.466 1.521 1.409 2.42 2.68 3.707-1.68-1.256-2.478-2.279-2.98-3.588-.501-1.31-.406-2.407-.356-3.666zm8.918-.553a.837.837 0 01.376.098c.09.061.188.107.27.19.206.21.36.462.428.751.044.186.05.422.064.64-.062-.2-.103-.409-.192-.589-.14-.285-.376-.56-.672-.688a.35.35 0 00-.214-.027c.023.041.063.076.065.133 0 .06-.012.174-.112.223-.16.078-.34.021-.464-.086a.414.414 0 01-.102-.459c.08-.194.375-.194.553-.186zm-1.62-.272c.016-.332.134-.609.432-.77.187-.107.392-.18.604-.215.207-.026.713-.008 1.018.13.232.105.39.271.597.394.205.121.35.201.546.338.3.211.475.44.682.576.1.066.24.057.374.098-.104.03-.24.064-.35.03a1.565 1.565 0 01-.438-.265 2.946 2.946 0 00-.497-.359c-.124-.072-.33-.158-.466-.246-.135-.09-.37-.283-.502-.349a1.618 1.618 0 00-.65-.125c-.256.008-.626.05-.822.228-.197.18-.27.336-.227.566.073-.084.123-.19.195-.254.154-.133.33-.139.52-.113.216.027.323.15.394.354-.047-.033-.135-.109-.204-.135a.495.495 0 00-.438.043c-.18.098-.13.24-.154.396-.013.076-.04.133-.06.2a.39.39 0 01-.18-.099c0 .076-.01.141.005.223.014.084.055.184.084.273-.126-.125-.256-.24-.335-.402a1.058 1.058 0 01-.13-.517zm.218-2.4c.09-.134.12-.343.174-.515-.02.217.02.453-.083.609-.105.158-.292.129-.443.176.118-.09.258-.131.352-.268zm-2.206 3.203c.119-.096.438-.02.676-.002l-.514.133c-.017.06-.01.123-.048.174-.04.051-.114.068-.171.104.006-.155-.062-.313.057-.409zm1.682-6.65c.143.075.32.178.45.18.123.004.157-.08.231-.131.115.38.25.797.448 1.142.083.146.136.079.2.224.063.145.09.439.15.626s.137.32.207.483c-.174-.25-.4-.566-.5-.773-.098-.207-.035-.225-.115-.421-.078-.198-.238-.504-.357-.756-.086.01-.19.026-.255.006-.065-.021-.054-.091-.112-.134-.06-.045-.158-.027-.24-.1-.08-.07-.1-.217-.107-.346zm-.766 1.875c.135-.012.299.023.425.017.126-.006.216-.04.324-.06-.02-.19-.002-.537-.175-.664-.115-.08-.578-.02-.701.006-.28.06-.604.227-.873.33.258-.18.48-.346.79-.44.189-.054.622-.128.814-.075.089.023.104.06.158.135.183.255.183.475.23.773.046.07.095.119.134.194a.91.91 0 01.068.289c-.048-.07-.018-.155-.15-.206-.134-.053-.335-.005-.515.014.13.096.195.186.2.384.007.233-.19.4-.397.417-.285.022-.434-.041-.55-.285-.05-.107-.015-.236-.017-.341-.346.024-.34.013-.592.222.139.2.224.315.45.436.126.066.27.133.426.16.157.027.415.053.58.027a.629.629 0 00.38-.187c.122-.112.134-.274.181-.403a1.2 1.2 0 01-.07.37c-.14.27-.38.353-.667.353-.275 0-.616-.063-.873-.17-.205-.084-.545-.324-.625-.533-.056-.143-.012-.318-.018-.477.285-.19.354-.143.689-.198.14-.025.239-.076.374-.088zm-1.655-1.28c.007-.113.02-.11.03-.166-.26-.07-.36.099-.514.41-.057.116 0 .187-.062.264-.06.076-.16.065-.257.139-.098.074-.196.215-.29.292-.188.156-.446.25-.666.358.15-.111.443-.28.538-.44.05-.085.042-.246.12-.324.078-.075.105-.13.205-.15.1-.018.06-.135.093-.228.032-.091.097-.158.165-.251s.156-.23.29-.282c.136-.05.348.005.45-.023.103-.03.044-.105.119-.15s.219-.023.32-.072c.176-.084.26-.227.367-.377.015.326.01.56-.107.869-.131.346-.266.55-.641.763-.128.072-.257.098-.365.137.062-.086.152-.123.188-.256.034-.136.009-.4.017-.512zM15.7 9.447c-.177.014-.22-.012-.363.09l.232.36c-.006-.236.018-.284.133-.45zm-.465-.172c.246-.104.46-.19.73-.207.107-.008.274.009.383.016.094-.137.21-.244.256-.4.028-.104.015-.584-.038-.71-.146-.36-.29-.376-.495-.584-.146-.15-.152-.38-.197-.638-.015-.094-.062-.213-.084-.31a3.9 3.9 0 00-.857-.045c.148-.143.29-.271.334-.486a.959.959 0 00-.113-.667c-.12-.191-.315-.36-.494-.517-.178-.155-.436-.284-.604-.412.22-.077.444-.194.66-.235.56-.108 1.043.057 1.584.384.315.19.573.37.902.716.33.344.735.975 1.053 1.348.317.375.575.67.853.893.276.226.528.289.792.43l.412.439.335-.413.535.06.111-.601.49-.136-.079-.811.354-.252-.267-.504.27-.553-.352-.63.135-.607-.407-.348-.053-.646-.569-.217-.227-.56-.64-.008-.315-.417-.43.03-.48-.053-.27-.2-.395.26-.477-.247-.947.36.618-.538.64-.102.49-.126.662.218.582-.147.563.33.596-.03.293.525.591.067.32.58.372.206.1.746.333.315-.148.653.39.494-.363.529.39.332-.499.443.506.529-.613.2.398.566-.5.088.327.622-.563-.008.285.466-.62-.074.147.672-.468-.411-.159.814-.322-.585-.175.73-.397-.537.011.765-.439-.688c.091.39.073.817.33 1.185.793-.107 1.311-.307 1.92-.892.552-.533 1.214-1.644 1.394-2.35.204-.802.21-2.281.01-3.101-.195-.787-.447-1.163-.897-1.807-.43-.455-.853-.94-1.399-1.264-.8-.48-1.828-.608-2.74-.596a3.22 3.22 0 00-1.147.215c-.527.19-.95.61-1.487.818-.175.067-.315.068-.454-.004.135.27.28.39.62.49.243.07.824.025 1.226-.012.43-.04.654-.167 1.238-.16.57.01 1.024.225 1.272.368.511.292.877.614 1.196 1.13.175.28.298.6.383.924.086.324.124.688.13 1.006.006.318-.019.602-.097.888-.182.669-.583 1.35-1.407 1.245-.504-.063-1.263-1.01-1.518-1.357-.514-.701-1.042-1.477-1.687-2.06a2.587 2.587 0 00-1.463-.65c-.992-.09-1.287.099-2.033.716.15.047.3.074.455.145.346.156.662.357.938.615.29.27.42.442.43.829.007.259-.204.465-.4.649-.117.114-.274.218-.37.307-.128.117-.286.246-.125.432.06.07.165.123.252.189.14.103.075.488-.108.592a.61.61 0 01-.713-.061c.246-.035.402-.068.395-.27-.002-.115-.15-.213-.297-.28-.35-.16-.614-.134-.963-.386-.353-.254-.36-.393-.455-.79-.17.017-.327.02-.554.097-.226.074-.478.254-.684.299-.52.11-.623.078-.907.006-.501-.132-1.15.09-1.8.299-.107.033-.543 0-.836.102a5.518 5.518 0 00-1.457.853c-.556.469-1.286 1.869-1.698 3.477-.045.49.095.817-.213 1.055-.308.24-.3.851-.405 1.023-.103.17-.225.094-.45.336-.223.24-.337.201-.332.654.195-.125.477-.273.725-.285.22-.006.222.283.785-.273.3-.299.88-.309 1.283-.439.402-.13 1.125-.402 1.85-1.21.725-.81 1.072-1.664 1.213-2.896.02.215.06.463-.033 1.065-.095.604-.296 1.28.13 2.092l.264.504c-.157-.215-.465-.566-.56-.815l-.21-.577c-.48.752-.59.885-1.256 1.423-.026.334-.033.682.076 1.002.108.32-.064.688.02.9.082.21.273.09.336.303s-.032.635.064.842c.1.207.337.082.453.15.115.066.154.158.215.246.063.088-.023.297.103.365.126.066.32.01.453.074.13.066.15.223.12.361-.033.141-.173.205-.234.348a.365.365 0 00.02.373c.074.131.236.201.4.27.162.064.39.027.559.12.169.09.32.272.408.405a.542.542 0 01.109.363 1.038 1.038 0 01-.137.434c-.074.135-.236.3.02.555.254.254.246.145.393.313-.017-.289-.135-.52-.05-.738.089-.217.35-.256.485-.352.139-.1.219-.232.326-.348 0 .148.015.31-.002.42-.033.227-.102.432.237.467.153.016.299-.082.458-.14-.084.147-.23.27-.252.45a.793.793 0 00.13.56c.123.18.34.312.498.415.158.105.244.115.365.174.006.176-.03.363-.01.53a.962.962 0 00.17.454c.098.14.252.22.398.32-.08-.188-.242-.365-.24-.56.002-.197.06-.335.252-.51.19-.175.64-.325.85-.495a1.03 1.03 0 00.355-.436c.075-.164.055-.43.07-.576.068.205.078.27.102.486.02.217-.127.521-.19.68a1.02 1.02 0 00.51-.525c.058.035.03.125.05.301.094-.092.2-.162.293-.25.094-.088.195-.164.243-.287.046-.12.027-.252-.007-.393-.035-.143-.193-.307-.28-.463-.083-.152.017-.305.01-.492-.17-.029-.313-.117-.51-.088-.196.03-.42.248-.622.252-.2 0-.314-.188-.478-.238-.165-.053-.33-.045-.495-.07.21-.199 1.02-.295 1.576-.385a9.794 9.794 0 011.47-.133c.22-.006.506.068.66.025.153-.045.12-.15.165-.264.13-.318.066-.604-.004-.924-.444-.053-.908-.115-1.356-.082-.438.033-.956.242-1.41.256-.39.014-.975-.074-1.31-.28-.414-.25-.732-.79-.846-.966-.184-.28-.415-.836-.56-1.088-.14-.254-.171-.324-.29-.43-.116-.105-.276-.113-.417-.17.16.014.336-.035.482.047.22.127.465.648.601.877.145-.486.11-.676.53-.95-.337.378-.347.665-.429 1.11.28.46.67 1.193 1.18 1.396.186.074.502.12.7.145.622.076 1.22-.119 1.83-.27.444-.11.896-.066 1.437-.035.183.012.616-.1.707-.283a.33.33 0 00-.024-.33c-.07-.105-.255-.158-.355-.254-.1-.098-.156-.21-.235-.314a6.51 6.51 0 01-1.062.115c.22-.09.433-.14.66-.23.237-.098.463-.219.676-.359.186-.123.303-.193.438-.334.133-.143.304-.289.403-.463.1-.174.114-.369.12-.584.004-.215-.005-.516-.088-.69-.084-.173-.243-.226-.37-.265-.128-.04-.217.063-.35.076-.134.014-.258.096-.452.006a1.68 1.68 0 01-.617-.548c-.196-.274-.335-.722-.534-1.067-.343-.596-.77-1.15-1.18-1.702a3.392 3.392 0 01-.1-.508c-.032-.322-.036-.656.064-.97.075-.24.188-.493.438-.591a.48.48 0 01.317-.022c.09.032.18.135.142.252-.04.129-.127.134-.188.198a.693.693 0 00-.183.33c.11-.004.262-.011.354.013.12.03.23.11.29.279-.142-.126-.212-.185-.39-.188-.082-.002-.18.026-.27.04-.034.109-.054.244-.1.33-.05.084-.142.063-.177.16a.992.992 0 00-.02.392h.004zm1.242-.15c.056.022.075.028.146.08.07.053.165.105.22.23a.878.878 0 01.04.4c-.048-.015-.113-.005-.163-.047-.05-.043-.08-.14-.143-.18-.065-.043-.117-.034-.188-.043.038.096.05.199.036.3-.036.204-.156.308-.352.33-.084.013-.22-.015-.292-.028.034.075.09.143.126.219.164-.023.285-.02.375-.061.088-.041.183-.135.296-.173.113-.04.214-.04.338-.06-.098.085-.162.168-.26.254l.215.623c.152.096.294.146.485.263.19.116.42.327.67.44.248.112.395.176.656.224.26.05.467.262.722.295.255.032.735.041.932.021.225-.02.516-.135.542-.38-.188.044-.475.004-.619-.35-.064-.156-.034-.446-.132-.63-.099-.187-.236-.246-.4-.475-.164-.23-.43-.59-.58-.895-.15-.308-.188-.654-.313-.93-.128-.273-.319-.494-.469-.707-.323-.463-.584-.777-1.12-1.011-.257-.112-.55-.143-.823-.213-.113.05-.268.104-.295.237a.536.536 0 00.12.42c.16.166.395.343.487.604.06.168.076.73.025.883-.054.16-.178.257-.282.36zm.052 1.332c-.05.043-.087.087-.167.122-.08.036-.19.045-.295.07.148.232.305.467.447.71.143.242.266.51.4.764-.006-.147.003-.301-.018-.437-.02-.136-.083-.254-.145-.461-.06-.206-.135-.484-.222-.768zm-4-5.087a3.32 3.32 0 00.065.806c.058.267.11.404.328.564.396.295.648.245.955.416.145.08.328.217.382.359.053.146-.036.3-.146.363.192.029.408-.19.318-.41-.045-.11-.255-.16-.32-.271a.41.41 0 01-.033-.335c.053-.202.454-.388.597-.546.218-.248.3-.453.177-.77-.172-.445-.842-.804-1.242-.98-.183-.08-.287-.083-.43-.128.293.174.602.31.75.69.124.32.016.444.022.72.002.13.172.197.248.277.064.072.06.125.008.223a.256.256 0 00-.11-.2c-.113-.08-.235-.062-.295-.224-.09-.248.09-.484-.112-.762-.15-.208-.353-.441-.625-.447a1.073 1.073 0 00-.36.058l-.183-.22-.005-.003c-.372-.34-.626-.62-1.146-.852-.522-.234-.78-.27-1.38-.256-.596.013-1.19.063-1.882.66-.694.6-2.48 2.888-2.915 3.177-.43.289-.527.389-1.068.389-.54 0-1.387-.766-1.42-1.723-.032-.956-.045-1.297.62-2.45.665-1.151 1.867-1.504 2.762-1.624.895-.12 1.432.194 2.092.195.66.002 1.314-.11 1.508-.637-.095.056-.221.12-.577.1-.355-.018-.85-.43-1.402-.705C7.157.548 6.54.515 5.75.501c-.79-.015-1.777.045-2.755.574C2.018 1.6 1.35 2.16.783 3.195.215 4.228.13 5.07.223 6.322.313 7.57.7 8.5 1.442 9.42c.744.914 1.485 1.363 2.823 1.529l.283-1.242-.504.72.014-.802-.455.565-.202-.767-.367.615-.183-.855-.535.432.17-.705-.707.078.324-.491-.644.006.375-.653-.57-.091.454-.596-.698-.206.578-.555-.573-.467.448-.348-.42-.56.448-.52-.167-.684.379-.33.113-.785.426-.214.365-.61.677-.073.334-.553.68.035.642-.348.666.154.756-.228.562.13.73.108.706.564-1.08-.377-.545.26-.45-.273-.31.21-.55.056-.492-.03-.358.436-.732.007-.26.59-.65.227-.06.678-.468.366.155.637-.401.664.31.58-.305.53.403.264-.09.853.563.14.125.634.613-.063.38.434.47-.461c.859-.428 1.213-.668 1.883-1.391.76-.823 1.196-1.584 2.208-2.147.73-.405 1.32-.551 2.139-.408.766.132 1.024.593 1.59 1.077.06-.11.07-.14.168-.218-.03.142-.08.287-.093.423z" }) + ] + } + ); +}); + +exports.default = SiGnu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.d.ts new file mode 100644 index 000000000..a0c2c9844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A42E2B"; +declare const SiGnu: IconType; +export { SiGnu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.mjs new file mode 100644 index 000000000..de1c74ff8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A42E2B"; +const SiGnu = React.forwardRef(function SiGnu2({ title = "GNU", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.072 13.931a.62.62 0 00-.52.338c-.114.211-.388.242-.516.201-.21-.07-.48-.119-.744.068-.263.187-.546.045-.495-.297.05-.34.172-.645.5-.83.713-.41.216-.695.607-1.108.394-.412.307-.537.293-1.1-1.326-.2-2.077-.58-2.915-1.63C.442 8.528.117 7.664.03 6.35-.057 5.033.02 4.18.588 3.09 1.156 2 1.756 1.475 2.788.93 3.825.383 4.84.254 5.78.271c.938.014 1.563.082 2.093.386.53.303 1.016.684 1.324.685.24.015.477-.053.673-.192.04 1.02-.878 1.108-1.698 1.13-.82.02-1.324-.317-2.08-.192-.754.128-1.992.47-2.595 1.52-.603 1.05-.624 1.42-.573 2.3.05.879.806 1.535 1.234 1.543.428.007.523-.117.898-.36.374-.246 2.284-2.61 2.934-3.14.653-.53 1.296-.696 1.99-.705.695-.008.87.015 1.433.246.56.229.903.652 1.355.91.23-.135.375-.34.584-.495.76-.552 1.152-.702 2.053-.615.518.052 1.17.347 1.56.686.693.604 1.265 1.44 1.727 2.079.36.497.785 1.09 1.392 1.277.66.2 1.157-.652 1.23-1.13.043-.27.097-.505.097-.8 0-.297-.03-.655-.115-.965a3.453 3.453 0 00-.392-.87c-.258-.415-.68-.85-1.116-1.071-.246-.125-.826-.353-1.19-.36-.449-.01-.79.14-1.202.168-.5.034-1.396.146-1.786-.24-.25-.246-.283-.41-.324-.73a.76.76 0 00.4.162c.314.026.606-.23.86-.378.21-.123.504-.34.778-.45.704-.285 1.567-.278 2.31-.2.594.06 1.367.324 1.89.62.525.297 1.03.798 1.4 1.269.465.594.72 1.104.888 1.844.216.945.277 2.365.015 3.299-.205.734-.887 1.86-1.467 2.414-.573.547-1.235.81-1.986.955.03.149.033.29.071.416.056.178.163.375.38.313.086-.025.133-.047.246.053.115.1.056.484-.266.66-.164.085-.334.103-.595.11a5.61 5.61 0 01-.953-.046c-.283-.047-.45-.272-.765-.308-.484-.055-.854-.404-1.244-.653-.162-.104-.218-.104-.31-.158.05.154.117.314.15.465.034.145.02.284.037.403.02.12.052.21.07.308.077.068.103.173.233.207.13.035.334-.018.468-.037.135-.018.224-.09.327-.07.105.02.204.096.292.166s.164.08.234.254c.07.178.135.537.146.777.01.24-.018.455-.089.648-.07.19-.135.273-.327.463s-.505.465-.818.66c.058.084.083.162.173.254.09.094.277.197.36.295.083.098.126.168.126.277a.587.587 0 01-.092.373c-.223.3-.483.352-.803.492.054.334.098.572.02.906-.03.137-.102.445-.27.525-.17.08-.492.041-.698.074-.205.031-.32.063-.48.094-.097.141-.24.297-.29.422-.05.127-.034.172.006.3.042.128.185.315.225.468a.93.93 0 01.01.463.834.834 0 01-.23.396c-.128.135-.38.24-.508.346-.125.11-.252.123-.217.303.047.248.41.646.67.744a.793.793 0 00.557-.04c-.014.208-.195.353-.315.493.322-.094.636-.27.854-.504-.067.203-.3.529-.645.816-.345.287-.343.229-.517.344.314.06.606.045.85.002a1.69 1.69 0 01-.64.207 1.876 1.876 0 01-.73-.055c-.26-.063-.499-.301-.814-.465.03.119.053.26.185.38.136.12.335.183.55.284-.273-.03-.559-.037-.825-.096a2.083 2.083 0 01-.478-.164c-.144-.07-.255-.176-.384-.264.06.117.08.256.184.352.104.098.275.135.412.199-.143-.004-.28.029-.43-.01a1.166 1.166 0 01-.443-.21 3.165 3.165 0 01-.445-.395c-.132-.145-.296-.332-.345-.463-.048-.133.03-.225.044-.338-.09.06-.2.094-.272.18-.07.088-.131.166-.1.318.03.15.171.338.27.506-.295-.242-.46-.336-.53-.625-.064-.273.104-.52.233-.725.064-.104.161-.2.22-.3-.134-.128-.284-.24-.4-.388-.112-.15-.161-.352-.276-.492-.117-.143-.274-.232-.41-.348.119.256.317.572.359.77.044.2-.048.323-.12.43-.07.108-.183.134-.291.198-.11.068-.277.016-.342.113s-.083.246-.021.344l.256.398a1.173 1.173 0 01-.327-.28c-.074-.097-.186-.189-.2-.317-.015-.13-.022-.246.064-.363.084-.117.318-.156.422-.246.105-.09.162-.148.156-.264-.006-.117-.12-.2-.217-.273-.3-.225-.68-.43-.934-.699a.931.931 0 01-.24-.379c-.03-.105.002-.188.072-.314.072-.13.315-.305.346-.443.029-.14-.095-.172-.205-.22-.111-.05-.322.024-.425-.062-.103-.086.03-.266-.086-.365-.116-.099-.38-.045-.52-.15a.724.724 0 01-.24-.395.828.828 0 01-.02-.436c.032-.113.128-.133.187-.19.06-.058.108-.105.03-.192-.074-.088-.33.004-.476-.105-.15-.113-.06-.38-.163-.494-.104-.109-.287-.066-.386-.104-.097-.035-.135.09-.194-.109-.06-.199-.063-.797-.143-1.02-.08-.223-.238-.016-.31-.236-.076-.22-.005-.574-.038-.908l-.15-.91c-.52.352-.867.463-1.428.561-.047 1.373-.176 2.182.29 3.705.466 1.521 1.409 2.42 2.68 3.707-1.68-1.256-2.478-2.279-2.98-3.588-.501-1.31-.406-2.407-.356-3.666zm8.918-.553a.837.837 0 01.376.098c.09.061.188.107.27.19.206.21.36.462.428.751.044.186.05.422.064.64-.062-.2-.103-.409-.192-.589-.14-.285-.376-.56-.672-.688a.35.35 0 00-.214-.027c.023.041.063.076.065.133 0 .06-.012.174-.112.223-.16.078-.34.021-.464-.086a.414.414 0 01-.102-.459c.08-.194.375-.194.553-.186zm-1.62-.272c.016-.332.134-.609.432-.77.187-.107.392-.18.604-.215.207-.026.713-.008 1.018.13.232.105.39.271.597.394.205.121.35.201.546.338.3.211.475.44.682.576.1.066.24.057.374.098-.104.03-.24.064-.35.03a1.565 1.565 0 01-.438-.265 2.946 2.946 0 00-.497-.359c-.124-.072-.33-.158-.466-.246-.135-.09-.37-.283-.502-.349a1.618 1.618 0 00-.65-.125c-.256.008-.626.05-.822.228-.197.18-.27.336-.227.566.073-.084.123-.19.195-.254.154-.133.33-.139.52-.113.216.027.323.15.394.354-.047-.033-.135-.109-.204-.135a.495.495 0 00-.438.043c-.18.098-.13.24-.154.396-.013.076-.04.133-.06.2a.39.39 0 01-.18-.099c0 .076-.01.141.005.223.014.084.055.184.084.273-.126-.125-.256-.24-.335-.402a1.058 1.058 0 01-.13-.517zm.218-2.4c.09-.134.12-.343.174-.515-.02.217.02.453-.083.609-.105.158-.292.129-.443.176.118-.09.258-.131.352-.268zm-2.206 3.203c.119-.096.438-.02.676-.002l-.514.133c-.017.06-.01.123-.048.174-.04.051-.114.068-.171.104.006-.155-.062-.313.057-.409zm1.682-6.65c.143.075.32.178.45.18.123.004.157-.08.231-.131.115.38.25.797.448 1.142.083.146.136.079.2.224.063.145.09.439.15.626s.137.32.207.483c-.174-.25-.4-.566-.5-.773-.098-.207-.035-.225-.115-.421-.078-.198-.238-.504-.357-.756-.086.01-.19.026-.255.006-.065-.021-.054-.091-.112-.134-.06-.045-.158-.027-.24-.1-.08-.07-.1-.217-.107-.346zm-.766 1.875c.135-.012.299.023.425.017.126-.006.216-.04.324-.06-.02-.19-.002-.537-.175-.664-.115-.08-.578-.02-.701.006-.28.06-.604.227-.873.33.258-.18.48-.346.79-.44.189-.054.622-.128.814-.075.089.023.104.06.158.135.183.255.183.475.23.773.046.07.095.119.134.194a.91.91 0 01.068.289c-.048-.07-.018-.155-.15-.206-.134-.053-.335-.005-.515.014.13.096.195.186.2.384.007.233-.19.4-.397.417-.285.022-.434-.041-.55-.285-.05-.107-.015-.236-.017-.341-.346.024-.34.013-.592.222.139.2.224.315.45.436.126.066.27.133.426.16.157.027.415.053.58.027a.629.629 0 00.38-.187c.122-.112.134-.274.181-.403a1.2 1.2 0 01-.07.37c-.14.27-.38.353-.667.353-.275 0-.616-.063-.873-.17-.205-.084-.545-.324-.625-.533-.056-.143-.012-.318-.018-.477.285-.19.354-.143.689-.198.14-.025.239-.076.374-.088zm-1.655-1.28c.007-.113.02-.11.03-.166-.26-.07-.36.099-.514.41-.057.116 0 .187-.062.264-.06.076-.16.065-.257.139-.098.074-.196.215-.29.292-.188.156-.446.25-.666.358.15-.111.443-.28.538-.44.05-.085.042-.246.12-.324.078-.075.105-.13.205-.15.1-.018.06-.135.093-.228.032-.091.097-.158.165-.251s.156-.23.29-.282c.136-.05.348.005.45-.023.103-.03.044-.105.119-.15s.219-.023.32-.072c.176-.084.26-.227.367-.377.015.326.01.56-.107.869-.131.346-.266.55-.641.763-.128.072-.257.098-.365.137.062-.086.152-.123.188-.256.034-.136.009-.4.017-.512zM15.7 9.447c-.177.014-.22-.012-.363.09l.232.36c-.006-.236.018-.284.133-.45zm-.465-.172c.246-.104.46-.19.73-.207.107-.008.274.009.383.016.094-.137.21-.244.256-.4.028-.104.015-.584-.038-.71-.146-.36-.29-.376-.495-.584-.146-.15-.152-.38-.197-.638-.015-.094-.062-.213-.084-.31a3.9 3.9 0 00-.857-.045c.148-.143.29-.271.334-.486a.959.959 0 00-.113-.667c-.12-.191-.315-.36-.494-.517-.178-.155-.436-.284-.604-.412.22-.077.444-.194.66-.235.56-.108 1.043.057 1.584.384.315.19.573.37.902.716.33.344.735.975 1.053 1.348.317.375.575.67.853.893.276.226.528.289.792.43l.412.439.335-.413.535.06.111-.601.49-.136-.079-.811.354-.252-.267-.504.27-.553-.352-.63.135-.607-.407-.348-.053-.646-.569-.217-.227-.56-.64-.008-.315-.417-.43.03-.48-.053-.27-.2-.395.26-.477-.247-.947.36.618-.538.64-.102.49-.126.662.218.582-.147.563.33.596-.03.293.525.591.067.32.58.372.206.1.746.333.315-.148.653.39.494-.363.529.39.332-.499.443.506.529-.613.2.398.566-.5.088.327.622-.563-.008.285.466-.62-.074.147.672-.468-.411-.159.814-.322-.585-.175.73-.397-.537.011.765-.439-.688c.091.39.073.817.33 1.185.793-.107 1.311-.307 1.92-.892.552-.533 1.214-1.644 1.394-2.35.204-.802.21-2.281.01-3.101-.195-.787-.447-1.163-.897-1.807-.43-.455-.853-.94-1.399-1.264-.8-.48-1.828-.608-2.74-.596a3.22 3.22 0 00-1.147.215c-.527.19-.95.61-1.487.818-.175.067-.315.068-.454-.004.135.27.28.39.62.49.243.07.824.025 1.226-.012.43-.04.654-.167 1.238-.16.57.01 1.024.225 1.272.368.511.292.877.614 1.196 1.13.175.28.298.6.383.924.086.324.124.688.13 1.006.006.318-.019.602-.097.888-.182.669-.583 1.35-1.407 1.245-.504-.063-1.263-1.01-1.518-1.357-.514-.701-1.042-1.477-1.687-2.06a2.587 2.587 0 00-1.463-.65c-.992-.09-1.287.099-2.033.716.15.047.3.074.455.145.346.156.662.357.938.615.29.27.42.442.43.829.007.259-.204.465-.4.649-.117.114-.274.218-.37.307-.128.117-.286.246-.125.432.06.07.165.123.252.189.14.103.075.488-.108.592a.61.61 0 01-.713-.061c.246-.035.402-.068.395-.27-.002-.115-.15-.213-.297-.28-.35-.16-.614-.134-.963-.386-.353-.254-.36-.393-.455-.79-.17.017-.327.02-.554.097-.226.074-.478.254-.684.299-.52.11-.623.078-.907.006-.501-.132-1.15.09-1.8.299-.107.033-.543 0-.836.102a5.518 5.518 0 00-1.457.853c-.556.469-1.286 1.869-1.698 3.477-.045.49.095.817-.213 1.055-.308.24-.3.851-.405 1.023-.103.17-.225.094-.45.336-.223.24-.337.201-.332.654.195-.125.477-.273.725-.285.22-.006.222.283.785-.273.3-.299.88-.309 1.283-.439.402-.13 1.125-.402 1.85-1.21.725-.81 1.072-1.664 1.213-2.896.02.215.06.463-.033 1.065-.095.604-.296 1.28.13 2.092l.264.504c-.157-.215-.465-.566-.56-.815l-.21-.577c-.48.752-.59.885-1.256 1.423-.026.334-.033.682.076 1.002.108.32-.064.688.02.9.082.21.273.09.336.303s-.032.635.064.842c.1.207.337.082.453.15.115.066.154.158.215.246.063.088-.023.297.103.365.126.066.32.01.453.074.13.066.15.223.12.361-.033.141-.173.205-.234.348a.365.365 0 00.02.373c.074.131.236.201.4.27.162.064.39.027.559.12.169.09.32.272.408.405a.542.542 0 01.109.363 1.038 1.038 0 01-.137.434c-.074.135-.236.3.02.555.254.254.246.145.393.313-.017-.289-.135-.52-.05-.738.089-.217.35-.256.485-.352.139-.1.219-.232.326-.348 0 .148.015.31-.002.42-.033.227-.102.432.237.467.153.016.299-.082.458-.14-.084.147-.23.27-.252.45a.793.793 0 00.13.56c.123.18.34.312.498.415.158.105.244.115.365.174.006.176-.03.363-.01.53a.962.962 0 00.17.454c.098.14.252.22.398.32-.08-.188-.242-.365-.24-.56.002-.197.06-.335.252-.51.19-.175.64-.325.85-.495a1.03 1.03 0 00.355-.436c.075-.164.055-.43.07-.576.068.205.078.27.102.486.02.217-.127.521-.19.68a1.02 1.02 0 00.51-.525c.058.035.03.125.05.301.094-.092.2-.162.293-.25.094-.088.195-.164.243-.287.046-.12.027-.252-.007-.393-.035-.143-.193-.307-.28-.463-.083-.152.017-.305.01-.492-.17-.029-.313-.117-.51-.088-.196.03-.42.248-.622.252-.2 0-.314-.188-.478-.238-.165-.053-.33-.045-.495-.07.21-.199 1.02-.295 1.576-.385a9.794 9.794 0 011.47-.133c.22-.006.506.068.66.025.153-.045.12-.15.165-.264.13-.318.066-.604-.004-.924-.444-.053-.908-.115-1.356-.082-.438.033-.956.242-1.41.256-.39.014-.975-.074-1.31-.28-.414-.25-.732-.79-.846-.966-.184-.28-.415-.836-.56-1.088-.14-.254-.171-.324-.29-.43-.116-.105-.276-.113-.417-.17.16.014.336-.035.482.047.22.127.465.648.601.877.145-.486.11-.676.53-.95-.337.378-.347.665-.429 1.11.28.46.67 1.193 1.18 1.396.186.074.502.12.7.145.622.076 1.22-.119 1.83-.27.444-.11.896-.066 1.437-.035.183.012.616-.1.707-.283a.33.33 0 00-.024-.33c-.07-.105-.255-.158-.355-.254-.1-.098-.156-.21-.235-.314a6.51 6.51 0 01-1.062.115c.22-.09.433-.14.66-.23.237-.098.463-.219.676-.359.186-.123.303-.193.438-.334.133-.143.304-.289.403-.463.1-.174.114-.369.12-.584.004-.215-.005-.516-.088-.69-.084-.173-.243-.226-.37-.265-.128-.04-.217.063-.35.076-.134.014-.258.096-.452.006a1.68 1.68 0 01-.617-.548c-.196-.274-.335-.722-.534-1.067-.343-.596-.77-1.15-1.18-1.702a3.392 3.392 0 01-.1-.508c-.032-.322-.036-.656.064-.97.075-.24.188-.493.438-.591a.48.48 0 01.317-.022c.09.032.18.135.142.252-.04.129-.127.134-.188.198a.693.693 0 00-.183.33c.11-.004.262-.011.354.013.12.03.23.11.29.279-.142-.126-.212-.185-.39-.188-.082-.002-.18.026-.27.04-.034.109-.054.244-.1.33-.05.084-.142.063-.177.16a.992.992 0 00-.02.392h.004zm1.242-.15c.056.022.075.028.146.08.07.053.165.105.22.23a.878.878 0 01.04.4c-.048-.015-.113-.005-.163-.047-.05-.043-.08-.14-.143-.18-.065-.043-.117-.034-.188-.043.038.096.05.199.036.3-.036.204-.156.308-.352.33-.084.013-.22-.015-.292-.028.034.075.09.143.126.219.164-.023.285-.02.375-.061.088-.041.183-.135.296-.173.113-.04.214-.04.338-.06-.098.085-.162.168-.26.254l.215.623c.152.096.294.146.485.263.19.116.42.327.67.44.248.112.395.176.656.224.26.05.467.262.722.295.255.032.735.041.932.021.225-.02.516-.135.542-.38-.188.044-.475.004-.619-.35-.064-.156-.034-.446-.132-.63-.099-.187-.236-.246-.4-.475-.164-.23-.43-.59-.58-.895-.15-.308-.188-.654-.313-.93-.128-.273-.319-.494-.469-.707-.323-.463-.584-.777-1.12-1.011-.257-.112-.55-.143-.823-.213-.113.05-.268.104-.295.237a.536.536 0 00.12.42c.16.166.395.343.487.604.06.168.076.73.025.883-.054.16-.178.257-.282.36zm.052 1.332c-.05.043-.087.087-.167.122-.08.036-.19.045-.295.07.148.232.305.467.447.71.143.242.266.51.4.764-.006-.147.003-.301-.018-.437-.02-.136-.083-.254-.145-.461-.06-.206-.135-.484-.222-.768zm-4-5.087a3.32 3.32 0 00.065.806c.058.267.11.404.328.564.396.295.648.245.955.416.145.08.328.217.382.359.053.146-.036.3-.146.363.192.029.408-.19.318-.41-.045-.11-.255-.16-.32-.271a.41.41 0 01-.033-.335c.053-.202.454-.388.597-.546.218-.248.3-.453.177-.77-.172-.445-.842-.804-1.242-.98-.183-.08-.287-.083-.43-.128.293.174.602.31.75.69.124.32.016.444.022.72.002.13.172.197.248.277.064.072.06.125.008.223a.256.256 0 00-.11-.2c-.113-.08-.235-.062-.295-.224-.09-.248.09-.484-.112-.762-.15-.208-.353-.441-.625-.447a1.073 1.073 0 00-.36.058l-.183-.22-.005-.003c-.372-.34-.626-.62-1.146-.852-.522-.234-.78-.27-1.38-.256-.596.013-1.19.063-1.882.66-.694.6-2.48 2.888-2.915 3.177-.43.289-.527.389-1.068.389-.54 0-1.387-.766-1.42-1.723-.032-.956-.045-1.297.62-2.45.665-1.151 1.867-1.504 2.762-1.624.895-.12 1.432.194 2.092.195.66.002 1.314-.11 1.508-.637-.095.056-.221.12-.577.1-.355-.018-.85-.43-1.402-.705C7.157.548 6.54.515 5.75.501c-.79-.015-1.777.045-2.755.574C2.018 1.6 1.35 2.16.783 3.195.215 4.228.13 5.07.223 6.322.313 7.57.7 8.5 1.442 9.42c.744.914 1.485 1.363 2.823 1.529l.283-1.242-.504.72.014-.802-.455.565-.202-.767-.367.615-.183-.855-.535.432.17-.705-.707.078.324-.491-.644.006.375-.653-.57-.091.454-.596-.698-.206.578-.555-.573-.467.448-.348-.42-.56.448-.52-.167-.684.379-.33.113-.785.426-.214.365-.61.677-.073.334-.553.68.035.642-.348.666.154.756-.228.562.13.73.108.706.564-1.08-.377-.545.26-.45-.273-.31.21-.55.056-.492-.03-.358.436-.732.007-.26.59-.65.227-.06.678-.468.366.155.637-.401.664.31.58-.305.53.403.264-.09.853.563.14.125.634.613-.063.38.434.47-.461c.859-.428 1.213-.668 1.883-1.391.76-.823 1.196-1.584 2.208-2.147.73-.405 1.32-.551 2.139-.408.766.132 1.024.593 1.59 1.077.06-.11.07-.14.168-.218-.03.142-.08.287-.093.423z" }) + ] + } + ); +}); + +export { SiGnu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.cjs new file mode 100644 index 000000000..2d3ce55f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4EAA25"; +const SiGnubash = React__namespace.forwardRef(function SiGnubash2({ title = "GNU Bash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.038,4.9l-7.577-4.498C13.009,0.134,12.505,0,12,0c-0.505,0-1.009,0.134-1.462,0.403L2.961,4.9 C2.057,5.437,1.5,6.429,1.5,7.503v8.995c0,1.073,0.557,2.066,1.462,2.603l7.577,4.497C10.991,23.866,11.495,24,12,24 c0.505,0,1.009-0.134,1.461-0.402l7.577-4.497c0.904-0.537,1.462-1.529,1.462-2.603V7.503C22.5,6.429,21.943,5.437,21.038,4.9z M15.17,18.946l0.013,0.646c0.001,0.078-0.05,0.167-0.111,0.198l-0.383,0.22c-0.061,0.031-0.111-0.007-0.112-0.085L14.57,19.29 c-0.328,0.136-0.66,0.169-0.872,0.084c-0.04-0.016-0.057-0.075-0.041-0.142l0.139-0.584c0.011-0.046,0.036-0.092,0.069-0.121 c0.012-0.011,0.024-0.02,0.036-0.026c0.022-0.011,0.043-0.014,0.062-0.006c0.229,0.077,0.521,0.041,0.802-0.101 c0.357-0.181,0.596-0.545,0.592-0.907c-0.003-0.328-0.181-0.465-0.613-0.468c-0.55,0.001-1.064-0.107-1.072-0.917 c-0.007-0.667,0.34-1.361,0.889-1.8l-0.007-0.652c-0.001-0.08,0.048-0.168,0.111-0.2l0.37-0.236 c0.061-0.031,0.111,0.007,0.112,0.087l0.006,0.653c0.273-0.109,0.511-0.138,0.726-0.088c0.047,0.012,0.067,0.076,0.048,0.151 l-0.144,0.578c-0.011,0.044-0.036,0.088-0.065,0.116c-0.012,0.012-0.025,0.021-0.038,0.028c-0.019,0.01-0.038,0.013-0.057,0.009 c-0.098-0.022-0.332-0.073-0.699,0.113c-0.385,0.195-0.52,0.53-0.517,0.778c0.003,0.297,0.155,0.387,0.681,0.396 c0.7,0.012,1.003,0.318,1.01,1.023C16.105,17.747,15.736,18.491,15.17,18.946z M19.143,17.859c0,0.06-0.008,0.116-0.058,0.145 l-1.916,1.164c-0.05,0.029-0.09,0.004-0.09-0.056v-0.494c0-0.06,0.037-0.093,0.087-0.122l1.887-1.129 c0.05-0.029,0.09-0.004,0.09,0.056V17.859z M20.459,6.797l-7.168,4.427c-0.894,0.523-1.553,1.109-1.553,2.187v8.833 c0,0.645,0.26,1.063,0.66,1.184c-0.131,0.023-0.264,0.039-0.398,0.039c-0.42,0-0.833-0.114-1.197-0.33L3.226,18.64 c-0.741-0.44-1.201-1.261-1.201-2.142V7.503c0-0.881,0.46-1.702,1.201-2.142l7.577-4.498c0.363-0.216,0.777-0.33,1.197-0.33 c0.419,0,0.833,0.114,1.197,0.33l7.577,4.498c0.624,0.371,1.046,1.013,1.164,1.732C21.686,6.557,21.12,6.411,20.459,6.797z" }) + ] + } + ); +}); + +exports.default = SiGnubash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.d.ts new file mode 100644 index 000000000..52f6dc240 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4EAA25"; +declare const SiGnubash: IconType; +export { SiGnubash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.mjs new file mode 100644 index 000000000..486a161b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnubash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4EAA25"; +const SiGnubash = React.forwardRef(function SiGnubash2({ title = "GNU Bash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.038,4.9l-7.577-4.498C13.009,0.134,12.505,0,12,0c-0.505,0-1.009,0.134-1.462,0.403L2.961,4.9 C2.057,5.437,1.5,6.429,1.5,7.503v8.995c0,1.073,0.557,2.066,1.462,2.603l7.577,4.497C10.991,23.866,11.495,24,12,24 c0.505,0,1.009-0.134,1.461-0.402l7.577-4.497c0.904-0.537,1.462-1.529,1.462-2.603V7.503C22.5,6.429,21.943,5.437,21.038,4.9z M15.17,18.946l0.013,0.646c0.001,0.078-0.05,0.167-0.111,0.198l-0.383,0.22c-0.061,0.031-0.111-0.007-0.112-0.085L14.57,19.29 c-0.328,0.136-0.66,0.169-0.872,0.084c-0.04-0.016-0.057-0.075-0.041-0.142l0.139-0.584c0.011-0.046,0.036-0.092,0.069-0.121 c0.012-0.011,0.024-0.02,0.036-0.026c0.022-0.011,0.043-0.014,0.062-0.006c0.229,0.077,0.521,0.041,0.802-0.101 c0.357-0.181,0.596-0.545,0.592-0.907c-0.003-0.328-0.181-0.465-0.613-0.468c-0.55,0.001-1.064-0.107-1.072-0.917 c-0.007-0.667,0.34-1.361,0.889-1.8l-0.007-0.652c-0.001-0.08,0.048-0.168,0.111-0.2l0.37-0.236 c0.061-0.031,0.111,0.007,0.112,0.087l0.006,0.653c0.273-0.109,0.511-0.138,0.726-0.088c0.047,0.012,0.067,0.076,0.048,0.151 l-0.144,0.578c-0.011,0.044-0.036,0.088-0.065,0.116c-0.012,0.012-0.025,0.021-0.038,0.028c-0.019,0.01-0.038,0.013-0.057,0.009 c-0.098-0.022-0.332-0.073-0.699,0.113c-0.385,0.195-0.52,0.53-0.517,0.778c0.003,0.297,0.155,0.387,0.681,0.396 c0.7,0.012,1.003,0.318,1.01,1.023C16.105,17.747,15.736,18.491,15.17,18.946z M19.143,17.859c0,0.06-0.008,0.116-0.058,0.145 l-1.916,1.164c-0.05,0.029-0.09,0.004-0.09-0.056v-0.494c0-0.06,0.037-0.093,0.087-0.122l1.887-1.129 c0.05-0.029,0.09-0.004,0.09,0.056V17.859z M20.459,6.797l-7.168,4.427c-0.894,0.523-1.553,1.109-1.553,2.187v8.833 c0,0.645,0.26,1.063,0.66,1.184c-0.131,0.023-0.264,0.039-0.398,0.039c-0.42,0-0.833-0.114-1.197-0.33L3.226,18.64 c-0.741-0.44-1.201-1.261-1.201-2.142V7.503c0-0.881,0.46-1.702,1.201-2.142l7.577-4.498c0.363-0.216,0.777-0.33,1.197-0.33 c0.419,0,0.833,0.114,1.197,0.33l7.577,4.498c0.624,0.371,1.046,1.013,1.164,1.732C21.686,6.557,21.12,6.411,20.459,6.797z" }) + ] + } + ); +}); + +export { SiGnubash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.cjs new file mode 100644 index 000000000..7c8721daf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7F5AB6"; +const SiGnuemacs = React__namespace.forwardRef(function SiGnuemacs2({ title = "GNU Emacs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,24C5.448,24,0.118,18.617,0.118,12S5.448,0,12,0c6.552,0,11.882,5.383,11.882,12S18.552,24,12,24z M12,0.661 C5.813,0.661,0.779,5.748,0.779,12S5.813,23.339,12,23.339c6.187,0,11.221-5.086,11.221-11.339S18.187,0.661,12,0.661z M8.03,20.197 c0,0,0.978,0.069,2.236-0.042c0.51-0.045,2.444-0.235,3.891-0.552c0,0,1.764-0.377,2.707-0.725c0.987-0.364,1.524-0.673,1.766-1.11 c-0.011-0.09,0.074-0.408-0.381-0.599c-1.164-0.488-2.514-0.4-5.185-0.457c-2.962-0.102-3.948-0.598-4.472-0.997 c-0.503-0.405-0.25-1.526,1.907-2.513c1.086-0.526,5.345-1.496,5.345-1.496c-1.434-0.709-4.109-1.955-4.659-2.224 c-0.482-0.236-1.254-0.591-1.421-1.021c-0.19-0.413,0.448-0.768,0.804-0.87c1.147-0.331,2.766-0.536,4.24-0.56 c0.741-0.012,0.861-0.059,0.861-0.059c1.022-0.17,1.695-0.869,1.414-1.976c-0.252-1.13-1.579-1.795-2.84-1.565 c-1.188,0.217-4.05,1.048-4.05,1.048c3.539-0.031,4.131,0.028,4.395,0.398c0.156,0.218-0.071,0.518-1.015,0.672 c-1.027,0.168-3.163,0.37-3.163,0.37c-2.049,0.122-3.492,0.13-3.925,1.046C6.202,7.564,6.787,8.094,7.043,8.425 c1.082,1.204,2.646,1.853,3.652,2.331c0.379,0.18,1.49,0.52,1.49,0.52c-3.265-0.18-5.619,0.823-7.001,1.977 c-1.562,1.445-0.871,3.168,2.33,4.228c1.891,0.626,2.828,0.921,5.648,0.667c1.661-0.09,1.923-0.036,1.939,0.1 c0.023,0.192-1.845,0.669-2.355,0.816C11.448,19.438,8.047,20.193,8.03,20.197z" }) + ] + } + ); +}); + +exports.default = SiGnuemacs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.d.ts new file mode 100644 index 000000000..9571316dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7F5AB6"; +declare const SiGnuemacs: IconType; +export { SiGnuemacs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.mjs new file mode 100644 index 000000000..85ffaee19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuemacs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7F5AB6"; +const SiGnuemacs = React.forwardRef(function SiGnuemacs2({ title = "GNU Emacs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,24C5.448,24,0.118,18.617,0.118,12S5.448,0,12,0c6.552,0,11.882,5.383,11.882,12S18.552,24,12,24z M12,0.661 C5.813,0.661,0.779,5.748,0.779,12S5.813,23.339,12,23.339c6.187,0,11.221-5.086,11.221-11.339S18.187,0.661,12,0.661z M8.03,20.197 c0,0,0.978,0.069,2.236-0.042c0.51-0.045,2.444-0.235,3.891-0.552c0,0,1.764-0.377,2.707-0.725c0.987-0.364,1.524-0.673,1.766-1.11 c-0.011-0.09,0.074-0.408-0.381-0.599c-1.164-0.488-2.514-0.4-5.185-0.457c-2.962-0.102-3.948-0.598-4.472-0.997 c-0.503-0.405-0.25-1.526,1.907-2.513c1.086-0.526,5.345-1.496,5.345-1.496c-1.434-0.709-4.109-1.955-4.659-2.224 c-0.482-0.236-1.254-0.591-1.421-1.021c-0.19-0.413,0.448-0.768,0.804-0.87c1.147-0.331,2.766-0.536,4.24-0.56 c0.741-0.012,0.861-0.059,0.861-0.059c1.022-0.17,1.695-0.869,1.414-1.976c-0.252-1.13-1.579-1.795-2.84-1.565 c-1.188,0.217-4.05,1.048-4.05,1.048c3.539-0.031,4.131,0.028,4.395,0.398c0.156,0.218-0.071,0.518-1.015,0.672 c-1.027,0.168-3.163,0.37-3.163,0.37c-2.049,0.122-3.492,0.13-3.925,1.046C6.202,7.564,6.787,8.094,7.043,8.425 c1.082,1.204,2.646,1.853,3.652,2.331c0.379,0.18,1.49,0.52,1.49,0.52c-3.265-0.18-5.619,0.823-7.001,1.977 c-1.562,1.445-0.871,3.168,2.33,4.228c1.891,0.626,2.828,0.921,5.648,0.667c1.661-0.09,1.923-0.036,1.939,0.1 c0.023,0.192-1.845,0.669-2.355,0.816C11.448,19.438,8.047,20.193,8.03,20.197z" }) + ] + } + ); +}); + +export { SiGnuemacs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.cjs new file mode 100644 index 000000000..638ed9c3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002F5B"; +const SiGnuicecat = React__namespace.forwardRef(function SiGnuicecat2({ title = "GNU IceCat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.437.001c-.365.006-.743.03-1.136.075-4.786.54-7.595 4.525-7.758 9.357C.423 11.63.094 14.213.821 16.74c1.392 4.841 6.201 7.767 11.143 7.187l.906-.107c4.944.327 5.999-1.021 7.182-4.308.125-.27.305-.768.568-1.57.007-.037.016-.076.021-.096.788-2.147.903-4.57.24-6.875a9.996 9.996 0 0 0-.272-.81c-.03-.19-.024-.42.009-.599.29-.474.648-.83 1.076-1.097l.272-1.871c.287-.322.177-.6.19-1.058.166-.08.258-.214.327-.43.077-.237.447-.686.861-1.034.064-.188.224-.572.222-.893-1.984.227-3.23.608-4.226-.61l-.53-.208c-.24-.372-.67-.584-.978-.95l-.35 1.21c-.43-.265-2.742-2.688-7.045-2.62zm.14.795c2.59.036 4.962 1.344 6.207 2.28l-.95.354-.596-.382-.27.787v.325l-.733 1.762-.08-.026.379-1.573.57-1.517-.191-.163-.84.92c-.18.979-.09 2.358-.541 2.93.14-1.15.34-2.155.352-3.498l-.488-.162c-.113.594-.265 1.275-.382 1.652l.163-1.706-.621.405v.976l-.163-.541-.056-.976-.216-.03-.162.625c.028.27-.015.542.216.813l.056 2.06.133.246-.243 1.165.027-1.139-.08-.08-.163-2.007-.271-1.085-.435-.27-.163-.46-.46-.03 1.03 3.69.08 1.109c-.117-.526-.112-1.1-.567-1.49.045-.553-.036-1.093-.706-1.573l-.976-2.005c-.033-.237-.366-.276-.597-.381-.07.319-.13.642.082 1.032.488.775.976 1.555 1.464 1.978l.027.949c-.16-.875-.602-1.347-.76-1.219-.005-.713-.79-.98-1.245-1.437l-.056-.786-.27-.056c.17.532-.217.57.542 1.626l.027.381c-.29-.196-.578-.563-.867-.975l-.352-.624c.038.427-.175.523.134 1.274.454.395.864.974 1.383 1.112 0 0 .109.19 0 .19-.108 0-.325-.084-.325-.084-.3-.137-.585-.259-1.165-.677l-.597-1.762-.272-.053.056.949.242.107.027.623c.106.37.227.517.408.462-.101.124-.22.15-.461.136-.2-.378-.324-.745-.733-1.192l-.27-.787-.162.163a2.23 2.23 0 0 0 0 .976c-.264-.157-.656-.592-1.122-.819C6.105 1.513 8.469.832 10.327.798c.084-.001.167-.003.25-.002zm7.553 2.188l.517.171 1.514.864 2.146.018c-.615.242-1.373.525-1.858.672l-.613-.018c-.485-.414-.874-.612-1.309-.875-.526.551-.837 1.033-1.01 1.736l.152-1.19.52-1.17zm-13.577.331l.547 1.09.026.243-.298-.107-.27-.623-.298.215-.216-.128c.156-.246.327-.476.51-.69zm3.519 2.309c1.613-.037 1.868 1.303 2.127 2.543v2.223c.186.019.567 1.135.488 1.49-.045.204.488 1.422.45 1.426.288.278.235.248.465.424.316.243.602 1.134.426 1.264-.167.124.22.4.312.6.566.506.987 1.013.978 1.52l.27.487.514.08.136.192.65.08c.375-.08.32-.485.435-.76.022-.278-.057-.598-.461-.949.021-.421.074-.836-.325-1.327.056-.503-.311-.92-.598-1.355-.034-.373-.196-.883-.32-1.378-.06-.244-.089-.497-.138-.738-.181-1.674.058-1.862.133-2.765.618-.93.943-1.376 1.493-1.573l.704.87c.347.631.198 1.44 1.058 1.599l.022.021c.439-.396 1.02-.383 1.493-.395l-.057.187c-.57-.06-1.035-.074-1.42.216l.383.374c.412-.536.98-.5 1.539-.52l.006.206c-.604-.08-1.181.021-1.494.362l.123.117h.005c.465-.363 1.022-.383 1.549-.39l-.104.184c-.53.044-.893.008-1.272.23.293.03.587.057.88.085l.11.243.676.056c.12.03.215.042.302.045.083.22.157.444.224.674a9.983 9.983 0 0 1 .058 5.27c-1.356 3.64-2.797 4.614-5.729 4.418-3.06-.205-5.53-3.605-7.706-8.264-.475-1.292-1.638-2.11-2.313-1.42-3.073 3.055.394 8.49 2.1 9.801a16.34 16.34 0 0 0 2.87 1.67c-3.38-.563-6.27-2.914-7.245-6.308-1.177-4.092.77-8.374 4.486-10.423l.014-.006c.694-.259 1.251-.376 1.703-.386zm10.22 2.04c.293.044.838.365 1.136.663.09.243-.135.353-.12.496.008.023.004.031.003.032-.001-.011-.001-.022-.003-.032-.023-.072-.42-.56-1.016-1.16zm1.804 2.18c-.003.254-.083.341-.192.475-.111.009-.39-.075-.512-.25.185-.212.469-.21.704-.224zm-2.834.172c-.059.07-.086.157-.156.305.092-.14.146-.2.207-.244zm.141.176c-.225.063-.386.418-.611.92.24-.296.406-.716.744-.85zm-11.84 2.91l.054 1.055-1.653.949-.027-.786c.689.179 1.147-.56 1.627-1.219zm.734 2.25l.242.623-2.087 1.138-.299-.706c2.09-.764 1.731-.759 2.144-1.056zm.757 1.436l.272.461c-.787.389-1.435.912-2.005 1.517l-.435-.866c.789-.24 1.53-.572 2.168-1.112zm1.005 1.301l.46.434c-.36.81-1.106 1.312-1.817 1.843l-.73-.84c.716-.469 1.626-.84 2.087-1.437zm1.539 1.503c.072.432-.222 1.073-1.214 2.021-.386-.174-.785-.336-1.032-.65 1.607-.814 2.02-1.253 2.139-1.468.042-.006.112.032.107.097zm1.01.667c.036.382-.041.829.188 1.082l.216.056c-.113.47-.34.821-.325 1.291-.857-.208-.951-.297-1.274-.504.996-1.549 1.186-1.913 1.194-1.925zm1.407.784l1.058 1.22c-.106.584-.097.933.299 1.085-.599-.033-1.186-.04-1.68-.344.43-.637.423-1.208.323-1.961zm5.325.475c.307.467.348.706.655.813-.405.393-.587.47-1.063.65.149-.303 0-.728-.134-1.244-.1-.192.4-.176.542-.219zm-2.993.284c1.786.534 1.18.872 1.729 1.405-.472.1-.904.205-1.656.163.555-.411.301-.87-.073-1.568z" }) + ] + } + ); +}); + +exports.default = SiGnuicecat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.d.ts new file mode 100644 index 000000000..c0d186b40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002F5B"; +declare const SiGnuicecat: IconType; +export { SiGnuicecat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.mjs new file mode 100644 index 000000000..c902045d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuicecat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002F5B"; +const SiGnuicecat = React.forwardRef(function SiGnuicecat2({ title = "GNU IceCat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.437.001c-.365.006-.743.03-1.136.075-4.786.54-7.595 4.525-7.758 9.357C.423 11.63.094 14.213.821 16.74c1.392 4.841 6.201 7.767 11.143 7.187l.906-.107c4.944.327 5.999-1.021 7.182-4.308.125-.27.305-.768.568-1.57.007-.037.016-.076.021-.096.788-2.147.903-4.57.24-6.875a9.996 9.996 0 0 0-.272-.81c-.03-.19-.024-.42.009-.599.29-.474.648-.83 1.076-1.097l.272-1.871c.287-.322.177-.6.19-1.058.166-.08.258-.214.327-.43.077-.237.447-.686.861-1.034.064-.188.224-.572.222-.893-1.984.227-3.23.608-4.226-.61l-.53-.208c-.24-.372-.67-.584-.978-.95l-.35 1.21c-.43-.265-2.742-2.688-7.045-2.62zm.14.795c2.59.036 4.962 1.344 6.207 2.28l-.95.354-.596-.382-.27.787v.325l-.733 1.762-.08-.026.379-1.573.57-1.517-.191-.163-.84.92c-.18.979-.09 2.358-.541 2.93.14-1.15.34-2.155.352-3.498l-.488-.162c-.113.594-.265 1.275-.382 1.652l.163-1.706-.621.405v.976l-.163-.541-.056-.976-.216-.03-.162.625c.028.27-.015.542.216.813l.056 2.06.133.246-.243 1.165.027-1.139-.08-.08-.163-2.007-.271-1.085-.435-.27-.163-.46-.46-.03 1.03 3.69.08 1.109c-.117-.526-.112-1.1-.567-1.49.045-.553-.036-1.093-.706-1.573l-.976-2.005c-.033-.237-.366-.276-.597-.381-.07.319-.13.642.082 1.032.488.775.976 1.555 1.464 1.978l.027.949c-.16-.875-.602-1.347-.76-1.219-.005-.713-.79-.98-1.245-1.437l-.056-.786-.27-.056c.17.532-.217.57.542 1.626l.027.381c-.29-.196-.578-.563-.867-.975l-.352-.624c.038.427-.175.523.134 1.274.454.395.864.974 1.383 1.112 0 0 .109.19 0 .19-.108 0-.325-.084-.325-.084-.3-.137-.585-.259-1.165-.677l-.597-1.762-.272-.053.056.949.242.107.027.623c.106.37.227.517.408.462-.101.124-.22.15-.461.136-.2-.378-.324-.745-.733-1.192l-.27-.787-.162.163a2.23 2.23 0 0 0 0 .976c-.264-.157-.656-.592-1.122-.819C6.105 1.513 8.469.832 10.327.798c.084-.001.167-.003.25-.002zm7.553 2.188l.517.171 1.514.864 2.146.018c-.615.242-1.373.525-1.858.672l-.613-.018c-.485-.414-.874-.612-1.309-.875-.526.551-.837 1.033-1.01 1.736l.152-1.19.52-1.17zm-13.577.331l.547 1.09.026.243-.298-.107-.27-.623-.298.215-.216-.128c.156-.246.327-.476.51-.69zm3.519 2.309c1.613-.037 1.868 1.303 2.127 2.543v2.223c.186.019.567 1.135.488 1.49-.045.204.488 1.422.45 1.426.288.278.235.248.465.424.316.243.602 1.134.426 1.264-.167.124.22.4.312.6.566.506.987 1.013.978 1.52l.27.487.514.08.136.192.65.08c.375-.08.32-.485.435-.76.022-.278-.057-.598-.461-.949.021-.421.074-.836-.325-1.327.056-.503-.311-.92-.598-1.355-.034-.373-.196-.883-.32-1.378-.06-.244-.089-.497-.138-.738-.181-1.674.058-1.862.133-2.765.618-.93.943-1.376 1.493-1.573l.704.87c.347.631.198 1.44 1.058 1.599l.022.021c.439-.396 1.02-.383 1.493-.395l-.057.187c-.57-.06-1.035-.074-1.42.216l.383.374c.412-.536.98-.5 1.539-.52l.006.206c-.604-.08-1.181.021-1.494.362l.123.117h.005c.465-.363 1.022-.383 1.549-.39l-.104.184c-.53.044-.893.008-1.272.23.293.03.587.057.88.085l.11.243.676.056c.12.03.215.042.302.045.083.22.157.444.224.674a9.983 9.983 0 0 1 .058 5.27c-1.356 3.64-2.797 4.614-5.729 4.418-3.06-.205-5.53-3.605-7.706-8.264-.475-1.292-1.638-2.11-2.313-1.42-3.073 3.055.394 8.49 2.1 9.801a16.34 16.34 0 0 0 2.87 1.67c-3.38-.563-6.27-2.914-7.245-6.308-1.177-4.092.77-8.374 4.486-10.423l.014-.006c.694-.259 1.251-.376 1.703-.386zm10.22 2.04c.293.044.838.365 1.136.663.09.243-.135.353-.12.496.008.023.004.031.003.032-.001-.011-.001-.022-.003-.032-.023-.072-.42-.56-1.016-1.16zm1.804 2.18c-.003.254-.083.341-.192.475-.111.009-.39-.075-.512-.25.185-.212.469-.21.704-.224zm-2.834.172c-.059.07-.086.157-.156.305.092-.14.146-.2.207-.244zm.141.176c-.225.063-.386.418-.611.92.24-.296.406-.716.744-.85zm-11.84 2.91l.054 1.055-1.653.949-.027-.786c.689.179 1.147-.56 1.627-1.219zm.734 2.25l.242.623-2.087 1.138-.299-.706c2.09-.764 1.731-.759 2.144-1.056zm.757 1.436l.272.461c-.787.389-1.435.912-2.005 1.517l-.435-.866c.789-.24 1.53-.572 2.168-1.112zm1.005 1.301l.46.434c-.36.81-1.106 1.312-1.817 1.843l-.73-.84c.716-.469 1.626-.84 2.087-1.437zm1.539 1.503c.072.432-.222 1.073-1.214 2.021-.386-.174-.785-.336-1.032-.65 1.607-.814 2.02-1.253 2.139-1.468.042-.006.112.032.107.097zm1.01.667c.036.382-.041.829.188 1.082l.216.056c-.113.47-.34.821-.325 1.291-.857-.208-.951-.297-1.274-.504.996-1.549 1.186-1.913 1.194-1.925zm1.407.784l1.058 1.22c-.106.584-.097.933.299 1.085-.599-.033-1.186-.04-1.68-.344.43-.637.423-1.208.323-1.961zm5.325.475c.307.467.348.706.655.813-.405.393-.587.47-1.063.65.149-.303 0-.728-.134-1.244-.1-.192.4-.176.542-.219zm-2.993.284c1.786.534 1.18.872 1.729 1.405-.472.1-.904.205-1.656.163.555-.411.301-.87-.073-1.568z" }) + ] + } + ); +}); + +export { SiGnuicecat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.cjs new file mode 100644 index 000000000..6e2022089 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0093DD"; +const SiGnuprivacyguard = React__namespace.forwardRef(function SiGnuprivacyguard2({ title = "GNU Privacy Guard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.968 11.583h1.274v-3.82A7.76 7.76 0 0 1 12.005 0a7.76 7.76 0 0 1 7.762 7.763v3.783c-.018.01-.037.028-.056.037l-.01.01-.008.009h-.01l-.01.01-.009.009H19.636l-.018.018h-.02l-.018.01h-.01l-.009.01-.009.009h-.01l-.009.009-.009.01-.01.009-.009.009-.028.019-.019.01-.028.018-.018.01-.02.009-.027.018-.019.01-.01.009-.027.019-.02.01-.046.027-.019.01-.018.009-.02.01h-.008l-.057.027h-.019c-.018.01-.037.02-.065.038h-.01l-.009.01-.028.018-.018.01-.029.018-.018.01h-.01l-.028.018-.018.01-.02.009c-.018.01-.046.019-.065.028l-.018.01-.02.009-.037.018-.037.02-.047.018-.047.019-.019.009-.037.019-.019.01c-1.545.739-4.017 1.516-8.708 1.853-3.362.244-5.403 1.723-6.724 3.502zm4.842 0h8.371v-3.82a4.184 4.184 0 0 0-4.186-4.186A4.184 4.184 0 0 0 7.81 7.763zm13.222 1.461V24H5.572c1.704-.946 2.968-.852 5.075-.787 2.865.094 6.03-1.105 7.585-2.696 1.554-1.592-.14-.375-1.901.074-1.76.45-5.17.497-7.454-.103 7.173.094 9.973-2.219 11.555-4.307 1.583-2.079-.683-.365-2.153.356-1.47.72-4.036 1.227-6.864.852 4.27-.01 7.52-2.144 9.607-4.345z" }) + ] + } + ); +}); + +exports.default = SiGnuprivacyguard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.d.ts new file mode 100644 index 000000000..03508898f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0093DD"; +declare const SiGnuprivacyguard: IconType; +export { SiGnuprivacyguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.mjs new file mode 100644 index 000000000..74bd31e62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnuprivacyguard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0093DD"; +const SiGnuprivacyguard = React.forwardRef(function SiGnuprivacyguard2({ title = "GNU Privacy Guard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.968 11.583h1.274v-3.82A7.76 7.76 0 0 1 12.005 0a7.76 7.76 0 0 1 7.762 7.763v3.783c-.018.01-.037.028-.056.037l-.01.01-.008.009h-.01l-.01.01-.009.009H19.636l-.018.018h-.02l-.018.01h-.01l-.009.01-.009.009h-.01l-.009.009-.009.01-.01.009-.009.009-.028.019-.019.01-.028.018-.018.01-.02.009-.027.018-.019.01-.01.009-.027.019-.02.01-.046.027-.019.01-.018.009-.02.01h-.008l-.057.027h-.019c-.018.01-.037.02-.065.038h-.01l-.009.01-.028.018-.018.01-.029.018-.018.01h-.01l-.028.018-.018.01-.02.009c-.018.01-.046.019-.065.028l-.018.01-.02.009-.037.018-.037.02-.047.018-.047.019-.019.009-.037.019-.019.01c-1.545.739-4.017 1.516-8.708 1.853-3.362.244-5.403 1.723-6.724 3.502zm4.842 0h8.371v-3.82a4.184 4.184 0 0 0-4.186-4.186A4.184 4.184 0 0 0 7.81 7.763zm13.222 1.461V24H5.572c1.704-.946 2.968-.852 5.075-.787 2.865.094 6.03-1.105 7.585-2.696 1.554-1.592-.14-.375-1.901.074-1.76.45-5.17.497-7.454-.103 7.173.094 9.973-2.219 11.555-4.307 1.583-2.079-.683-.365-2.153.356-1.47.72-4.036 1.227-6.864.852 4.27-.01 7.52-2.144 9.607-4.345z" }) + ] + } + ); +}); + +export { SiGnuprivacyguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.cjs new file mode 100644 index 000000000..552d1c3f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A22430"; +const SiGnusocial = React__namespace.forwardRef(function SiGnusocial2({ title = "GNU social", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.217 0C2.474 0 1.06 1.413 1.06 3.156V15.77c0 1.744 1.414 3.158 3.157 3.158h9.367C13.567 22.498 8.756 24 8.756 24s8.138-.038 9.305-5.072h1.72c1.744 0 3.157-1.414 3.157-3.157V3.157C22.938 1.413 21.524 0 19.782 0H4.218zm4.527 2.53c.073-.013.132-.003.174.034.335.3-.556.593-.484 2.063.032.646-.16 1.146 1.076 1.146.826 0 .483-.734 1.523-.734.656 0 .86.435.934.767.072-.33.274-.768.93-.768 1.04 0 .7.733 1.525.733 1.237 0 1.044-.5 1.076-1.146.072-1.47-.82-1.764-.484-2.063.042-.037.1-.042.172-.02.5.143 1.607 1.558 1.638 2.155.038.71.04 1.825-1.015 2.407 1.19 1.167 1.352 2.72 1.352 2.72l-2.045-.034s-.464-2.118-2.94-2.01c-2.474.108-2.796.538-2.796 3.156 0 2.617 1.147 3.517 2.905 3.585 2.76.108 2.51-1.433 2.51-1.433l-1.29.072-.718-1.937h4.41c0 2.116-.897 5.414-5.092 5.2-4.196-.216-5.128-3.515-5.164-5.74-.018-1.225.188-2.602 1.2-3.574-1.052-.58-1.033-1.7-1.033-2.414 0-.88 1.13-2.084 1.637-2.17z" }) + ] + } + ); +}); + +exports.default = SiGnusocial; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.d.ts new file mode 100644 index 000000000..5b05a7df8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A22430"; +declare const SiGnusocial: IconType; +export { SiGnusocial as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.mjs new file mode 100644 index 000000000..380ed73bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGnusocial.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A22430"; +const SiGnusocial = React.forwardRef(function SiGnusocial2({ title = "GNU social", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.217 0C2.474 0 1.06 1.413 1.06 3.156V15.77c0 1.744 1.414 3.158 3.157 3.158h9.367C13.567 22.498 8.756 24 8.756 24s8.138-.038 9.305-5.072h1.72c1.744 0 3.157-1.414 3.157-3.157V3.157C22.938 1.413 21.524 0 19.782 0H4.218zm4.527 2.53c.073-.013.132-.003.174.034.335.3-.556.593-.484 2.063.032.646-.16 1.146 1.076 1.146.826 0 .483-.734 1.523-.734.656 0 .86.435.934.767.072-.33.274-.768.93-.768 1.04 0 .7.733 1.525.733 1.237 0 1.044-.5 1.076-1.146.072-1.47-.82-1.764-.484-2.063.042-.037.1-.042.172-.02.5.143 1.607 1.558 1.638 2.155.038.71.04 1.825-1.015 2.407 1.19 1.167 1.352 2.72 1.352 2.72l-2.045-.034s-.464-2.118-2.94-2.01c-2.474.108-2.796.538-2.796 3.156 0 2.617 1.147 3.517 2.905 3.585 2.76.108 2.51-1.433 2.51-1.433l-1.29.072-.718-1.937h4.41c0 2.116-.897 5.414-5.092 5.2-4.196-.216-5.128-3.515-5.164-5.74-.018-1.225.188-2.602 1.2-3.574-1.052-.58-1.033-1.7-1.033-2.414 0-.88 1.13-2.084 1.637-2.17z" }) + ] + } + ); +}); + +export { SiGnusocial as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGo.cjs new file mode 100644 index 000000000..89577115f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00ADD8"; +const SiGo = React__namespace.forwardRef(function SiGo2({ title = "Go", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.811 10.231c-.047 0-.058-.023-.035-.059l.246-.315c.023-.035.081-.058.128-.058h4.172c.046 0 .058.035.035.07l-.199.303c-.023.036-.082.07-.117.07zM.047 11.306c-.047 0-.059-.023-.035-.058l.245-.316c.023-.035.082-.058.129-.058h5.328c.047 0 .07.035.058.07l-.093.28c-.012.047-.058.07-.105.07zm2.828 1.075c-.047 0-.059-.035-.035-.07l.163-.292c.023-.035.07-.07.117-.07h2.337c.047 0 .07.035.07.082l-.023.28c0 .047-.047.082-.082.082zm12.129-2.36c-.736.187-1.239.327-1.963.514-.176.046-.187.058-.34-.117-.174-.199-.303-.327-.548-.444-.737-.362-1.45-.257-2.115.175-.795.514-1.204 1.274-1.192 2.22.011.935.654 1.706 1.577 1.835.795.105 1.46-.175 1.987-.77.105-.13.198-.27.315-.434H10.47c-.245 0-.304-.152-.222-.35.152-.362.432-.97.596-1.274a.315.315 0 01.292-.187h4.253c-.023.316-.023.631-.07.947a4.983 4.983 0 01-.958 2.29c-.841 1.11-1.94 1.8-3.33 1.986-1.145.152-2.209-.07-3.143-.77-.865-.655-1.356-1.52-1.484-2.595-.152-1.274.222-2.419.993-3.424.83-1.086 1.928-1.776 3.272-2.02 1.098-.2 2.15-.07 3.096.571.62.41 1.063.97 1.356 1.648.07.105.023.164-.117.2m3.868 6.461c-1.064-.024-2.034-.328-2.852-1.029a3.665 3.665 0 01-1.262-2.255c-.21-1.32.152-2.489.947-3.529.853-1.122 1.881-1.706 3.272-1.95 1.192-.21 2.314-.095 3.33.595.923.63 1.496 1.484 1.648 2.605.198 1.578-.257 2.863-1.344 3.962-.771.783-1.718 1.273-2.805 1.495-.315.06-.63.07-.934.106zm2.78-4.72c-.011-.153-.011-.27-.034-.387-.21-1.157-1.274-1.81-2.384-1.554-1.087.245-1.788.935-2.045 2.033-.21.912.234 1.835 1.075 2.21.643.28 1.285.244 1.905-.07.923-.48 1.425-1.228 1.484-2.233z" }) + ] + } + ); +}); + +exports.default = SiGo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGo.d.ts new file mode 100644 index 000000000..a5da52f20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00ADD8"; +declare const SiGo: IconType; +export { SiGo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGo.mjs new file mode 100644 index 000000000..50040add4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00ADD8"; +const SiGo = React.forwardRef(function SiGo2({ title = "Go", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.811 10.231c-.047 0-.058-.023-.035-.059l.246-.315c.023-.035.081-.058.128-.058h4.172c.046 0 .058.035.035.07l-.199.303c-.023.036-.082.07-.117.07zM.047 11.306c-.047 0-.059-.023-.035-.058l.245-.316c.023-.035.082-.058.129-.058h5.328c.047 0 .07.035.058.07l-.093.28c-.012.047-.058.07-.105.07zm2.828 1.075c-.047 0-.059-.035-.035-.07l.163-.292c.023-.035.07-.07.117-.07h2.337c.047 0 .07.035.07.082l-.023.28c0 .047-.047.082-.082.082zm12.129-2.36c-.736.187-1.239.327-1.963.514-.176.046-.187.058-.34-.117-.174-.199-.303-.327-.548-.444-.737-.362-1.45-.257-2.115.175-.795.514-1.204 1.274-1.192 2.22.011.935.654 1.706 1.577 1.835.795.105 1.46-.175 1.987-.77.105-.13.198-.27.315-.434H10.47c-.245 0-.304-.152-.222-.35.152-.362.432-.97.596-1.274a.315.315 0 01.292-.187h4.253c-.023.316-.023.631-.07.947a4.983 4.983 0 01-.958 2.29c-.841 1.11-1.94 1.8-3.33 1.986-1.145.152-2.209-.07-3.143-.77-.865-.655-1.356-1.52-1.484-2.595-.152-1.274.222-2.419.993-3.424.83-1.086 1.928-1.776 3.272-2.02 1.098-.2 2.15-.07 3.096.571.62.41 1.063.97 1.356 1.648.07.105.023.164-.117.2m3.868 6.461c-1.064-.024-2.034-.328-2.852-1.029a3.665 3.665 0 01-1.262-2.255c-.21-1.32.152-2.489.947-3.529.853-1.122 1.881-1.706 3.272-1.95 1.192-.21 2.314-.095 3.33.595.923.63 1.496 1.484 1.648 2.605.198 1.578-.257 2.863-1.344 3.962-.771.783-1.718 1.273-2.805 1.495-.315.06-.63.07-.934.106zm2.78-4.72c-.011-.153-.011-.27-.034-.387-.21-1.157-1.274-1.81-2.384-1.554-1.087.245-1.788.935-2.045 2.033-.21.912.234 1.835 1.075 2.21.643.28 1.285.244 1.905-.07.923-.48 1.425-1.228 1.484-2.233z" }) + ] + } + ); +}); + +export { SiGo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.cjs new file mode 100644 index 000000000..7892aab2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#94399E"; +const SiGocd = React__namespace.forwardRef(function SiGocd2({ title = "GoCD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.043 13.237l-8.907 5.935a1.47 1.47 0 01-.823.25 1.449 1.449 0 01-.696-.173 1.48 1.48 0 01-.784-1.308V12a1.482 1.482 0 112.957 0v3.163L14.537 12 7.478 7.304A1.49 1.49 0 119.13 4.823l8.913 5.94a1.492 1.492 0 010 2.474M12 0a12 12 0 1012 12A12.012 12.012 0 0012 0" }) + ] + } + ); +}); + +exports.default = SiGocd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.d.ts new file mode 100644 index 000000000..90e4eac29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#94399E"; +declare const SiGocd: IconType; +export { SiGocd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.mjs new file mode 100644 index 000000000..5ef2fb81f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGocd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#94399E"; +const SiGocd = React.forwardRef(function SiGocd2({ title = "GoCD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.043 13.237l-8.907 5.935a1.47 1.47 0 01-.823.25 1.449 1.449 0 01-.696-.173 1.48 1.48 0 01-.784-1.308V12a1.482 1.482 0 112.957 0v3.163L14.537 12 7.478 7.304A1.49 1.49 0 119.13 4.823l8.913 5.94a1.492 1.492 0 010 2.474M12 0a12 12 0 1012 12A12.012 12.012 0 0012 0" }) + ] + } + ); +}); + +export { SiGocd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.cjs new file mode 100644 index 000000000..a632c3f12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BDBDB"; +const SiGodaddy = React__namespace.forwardRef(function SiGodaddy2({ title = "GoDaddy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.702 2.29c-2.494-1.554-5.778-1.187-8.706.654C9.076 1.104 5.79.736 3.3 2.29c-3.941 2.463-4.42 8.806-1.07 14.167 2.47 3.954 6.333 6.269 9.77 6.226 3.439.043 7.301-2.273 9.771-6.226 3.347-5.361 2.872-11.704-1.069-14.167zM4.042 15.328a12.838 12.838 0 01-1.546-3.541 10.12 10.12 0 01-.336-3.338c.15-1.98.956-3.524 2.27-4.345 1.315-.822 3.052-.87 4.903-.137.281.113.556.24.825.382A15.11 15.11 0 007.5 7.54c-2.035 3.255-2.655 6.878-1.945 9.765a13.247 13.247 0 01-1.514-1.98zm17.465-3.541a12.866 12.866 0 01-1.547 3.54 13.25 13.25 0 01-1.513 1.984c.635-2.589.203-5.76-1.353-8.734a.39.39 0 00-.563-.153l-4.852 3.032a.397.397 0 00-.126.546l.712 1.139a.395.395 0 00.547.126l3.145-1.965c.101.306.203.606.28.916.296 1.086.41 2.214.335 3.337-.15 1.982-.956 3.525-2.27 4.347a4.437 4.437 0 01-2.25.65h-.101a4.432 4.432 0 01-2.25-.65c-1.314-.822-2.121-2.365-2.27-4.347-.074-1.123.039-2.251.335-3.337a13.212 13.212 0 014.05-6.482 10.148 10.148 0 012.849-1.765c1.845-.733 3.586-.685 4.9.137 1.316.822 2.122 2.365 2.271 4.345a10.146 10.146 0 01-.33 3.334z" }) + ] + } + ); +}); + +exports.default = SiGodaddy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.d.ts new file mode 100644 index 000000000..11481cfb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BDBDB"; +declare const SiGodaddy: IconType; +export { SiGodaddy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.mjs new file mode 100644 index 000000000..22f625d29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGodaddy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BDBDB"; +const SiGodaddy = React.forwardRef(function SiGodaddy2({ title = "GoDaddy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.702 2.29c-2.494-1.554-5.778-1.187-8.706.654C9.076 1.104 5.79.736 3.3 2.29c-3.941 2.463-4.42 8.806-1.07 14.167 2.47 3.954 6.333 6.269 9.77 6.226 3.439.043 7.301-2.273 9.771-6.226 3.347-5.361 2.872-11.704-1.069-14.167zM4.042 15.328a12.838 12.838 0 01-1.546-3.541 10.12 10.12 0 01-.336-3.338c.15-1.98.956-3.524 2.27-4.345 1.315-.822 3.052-.87 4.903-.137.281.113.556.24.825.382A15.11 15.11 0 007.5 7.54c-2.035 3.255-2.655 6.878-1.945 9.765a13.247 13.247 0 01-1.514-1.98zm17.465-3.541a12.866 12.866 0 01-1.547 3.54 13.25 13.25 0 01-1.513 1.984c.635-2.589.203-5.76-1.353-8.734a.39.39 0 00-.563-.153l-4.852 3.032a.397.397 0 00-.126.546l.712 1.139a.395.395 0 00.547.126l3.145-1.965c.101.306.203.606.28.916.296 1.086.41 2.214.335 3.337-.15 1.982-.956 3.525-2.27 4.347a4.437 4.437 0 01-2.25.65h-.101a4.432 4.432 0 01-2.25-.65c-1.314-.822-2.121-2.365-2.27-4.347-.074-1.123.039-2.251.335-3.337a13.212 13.212 0 014.05-6.482 10.148 10.148 0 012.849-1.765c1.845-.733 3.586-.685 4.9.137 1.316.822 2.122 2.365 2.271 4.345a10.146 10.146 0 01-.33 3.334z" }) + ] + } + ); +}); + +export { SiGodaddy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.cjs new file mode 100644 index 000000000..cce93bebd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#478CBF"; +const SiGodotengine = React__namespace.forwardRef(function SiGodotengine2({ title = "Godot Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5598.683c-1.096.244-2.1812.5831-3.1983 1.0951.023.8981.081 1.7582.199 2.6323-.395.253-.81.47-1.178.766-.375.288-.7581.564-1.0971.9011-.6781-.448-1.3962-.869-2.1352-1.2411C1.3532 5.6934.608 6.6186 0 7.6546c.458.7411.936 1.4352 1.4521 2.0942h.014v6.3565c.012 0 .023 0 .035.003l3.8963.376c.204.02.364.184.378.3891l.12 1.7201 3.3994.242.234-1.587c.03-.206.207-.358.415-.358h4.1114c.208 0 .385.152.415.358l.234 1.587 3.3993-.242.12-1.72a.4196.4196 0 01.378-.3891l3.8954-.376c.012 0 .023-.003.035-.003v-.5071h.002V9.7498h.014c.516-.659.994-1.3531 1.4521-2.0942-.608-1.036-1.3541-1.9611-2.1512-2.8192-.739.372-1.4571.793-2.1352 1.2411-.339-.337-.721-.613-1.096-.901-.369-.296-.7841-.5131-1.1781-.7661.117-.8741.175-1.7342.199-2.6323-1.0171-.512-2.1012-.851-3.1983-1.095-.438.736-.838 1.533-1.1871 2.3121-.414-.069-.829-.094-1.2461-.099h-.016c-.417.005-.832.03-1.2461.099-.349-.779-.749-1.576-1.1881-2.3121l.001-.001zM6.4765 9.9889c1.2971 0 2.3492 1.0511 2.3492 2.3482s-1.052 2.3482-2.3492 2.3482c-1.296 0-2.3482-1.051-2.3482-2.3482 0-1.297 1.0511-2.3482 2.3482-2.3482zm11.049 0c1.296 0 2.3482 1.0511 2.3482 2.3482s-1.0511 2.3482-2.3482 2.3482-2.3492-1.051-2.3492-2.3482c0-1.297 1.051-2.3482 2.3492-2.3482zm-10.824.9301c-.861 0-1.559.698-1.559 1.5591s.698 1.5582 1.559 1.5582c.8611 0 1.5592-.698 1.5592-1.5582 0-.86-.697-1.559-1.5591-1.559zm10.598 0c-.8611 0-1.5582.698-1.5582 1.5591s.697 1.5582 1.5581 1.5582c.8611 0 1.5592-.698 1.5592-1.5582 0-.86-.697-1.559-1.5592-1.559zm-5.2985.453c.417 0 .757.308.757.6871v2.1622c0 .379-.339.687-.757.687s-.756-.308-.756-.687V12.059c0-.379.339-.687.756-.687zM1.4601 16.9464c.002.377.006.789.006.871 0 3.7014 4.6944 5.4795 10.5269 5.5005h.014c5.8325-.02 10.5259-1.7991 10.5259-5.5004 0-.084.005-.495.007-.871l-3.5023.338-.121 1.729a.421.421 0 01-.389.3901l-4.1814.296a.4203.4203 0 01-.415-.358l-.238-1.6141h-3.3863l-.238 1.6141a.4192.4192 0 01-.4451.357l-4.1513-.296c-.208-.015-.375-.181-.389-.389l-.12-1.7292-3.5044-.337z" }) + ] + } + ); +}); + +exports.default = SiGodotengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.d.ts new file mode 100644 index 000000000..27f28fdb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#478CBF"; +declare const SiGodotengine: IconType; +export { SiGodotengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.mjs new file mode 100644 index 000000000..73fd34f9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGodotengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#478CBF"; +const SiGodotengine = React.forwardRef(function SiGodotengine2({ title = "Godot Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.5598.683c-1.096.244-2.1812.5831-3.1983 1.0951.023.8981.081 1.7582.199 2.6323-.395.253-.81.47-1.178.766-.375.288-.7581.564-1.0971.9011-.6781-.448-1.3962-.869-2.1352-1.2411C1.3532 5.6934.608 6.6186 0 7.6546c.458.7411.936 1.4352 1.4521 2.0942h.014v6.3565c.012 0 .023 0 .035.003l3.8963.376c.204.02.364.184.378.3891l.12 1.7201 3.3994.242.234-1.587c.03-.206.207-.358.415-.358h4.1114c.208 0 .385.152.415.358l.234 1.587 3.3993-.242.12-1.72a.4196.4196 0 01.378-.3891l3.8954-.376c.012 0 .023-.003.035-.003v-.5071h.002V9.7498h.014c.516-.659.994-1.3531 1.4521-2.0942-.608-1.036-1.3541-1.9611-2.1512-2.8192-.739.372-1.4571.793-2.1352 1.2411-.339-.337-.721-.613-1.096-.901-.369-.296-.7841-.5131-1.1781-.7661.117-.8741.175-1.7342.199-2.6323-1.0171-.512-2.1012-.851-3.1983-1.095-.438.736-.838 1.533-1.1871 2.3121-.414-.069-.829-.094-1.2461-.099h-.016c-.417.005-.832.03-1.2461.099-.349-.779-.749-1.576-1.1881-2.3121l.001-.001zM6.4765 9.9889c1.2971 0 2.3492 1.0511 2.3492 2.3482s-1.052 2.3482-2.3492 2.3482c-1.296 0-2.3482-1.051-2.3482-2.3482 0-1.297 1.0511-2.3482 2.3482-2.3482zm11.049 0c1.296 0 2.3482 1.0511 2.3482 2.3482s-1.0511 2.3482-2.3482 2.3482-2.3492-1.051-2.3492-2.3482c0-1.297 1.051-2.3482 2.3492-2.3482zm-10.824.9301c-.861 0-1.559.698-1.559 1.5591s.698 1.5582 1.559 1.5582c.8611 0 1.5592-.698 1.5592-1.5582 0-.86-.697-1.559-1.5591-1.559zm10.598 0c-.8611 0-1.5582.698-1.5582 1.5591s.697 1.5582 1.5581 1.5582c.8611 0 1.5592-.698 1.5592-1.5582 0-.86-.697-1.559-1.5592-1.559zm-5.2985.453c.417 0 .757.308.757.6871v2.1622c0 .379-.339.687-.757.687s-.756-.308-.756-.687V12.059c0-.379.339-.687.756-.687zM1.4601 16.9464c.002.377.006.789.006.871 0 3.7014 4.6944 5.4795 10.5269 5.5005h.014c5.8325-.02 10.5259-1.7991 10.5259-5.5004 0-.084.005-.495.007-.871l-3.5023.338-.121 1.729a.421.421 0 01-.389.3901l-4.1814.296a.4203.4203 0 01-.415-.358l-.238-1.6141h-3.3863l-.238 1.6141a.4192.4192 0 01-.4451.357l-4.1513-.296c-.208-.015-.375-.181-.389-.389l-.12-1.7292-3.5044-.337z" }) + ] + } + ); +}); + +export { SiGodotengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.cjs new file mode 100644 index 000000000..46d75415e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B964"; +const SiGofundme = React__namespace.forwardRef(function SiGofundme2({ title = "GoFundMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.6236 4.0792l-4.2223 3.0705c-.6695.4892-.8127 1.4224-.3309 2.0922.4892.6698 1.4221.8128 2.0921.3312l4.2219-3.0706c.67-.4892.8127-1.4224.3313-2.0922a1.4883 1.4883 0 0 0-2.092-.3312zm-9.6483-1.1816c-.8278 0-1.4978.6698-1.4978 1.4976v2.5212c0 .8279.67 1.4977 1.4978 1.4977.8279 0 1.4974-.6698 1.4974-1.4977V4.3952c0-.8278-.6695-1.4976-1.4974-1.4976zM.2877 4.4103c-.4892.6698-.3387 1.603.3308 2.0922L4.841 9.573c.6695.4891 1.6029.3386 2.092-.3312.4893-.6698.3387-1.603-.3313-2.0922L2.3798 4.0792c-.6773-.4817-1.6107-.3387-2.092.331zm3.695 7.7893C6.1051 10.303 8.905 9.144 11.9753 9.144c3.0705 0 5.8702 1.159 7.9926 3.0555zm14.5556 1.6335c-1.3473 0-2.236.4433-2.8004.9926-.5948.587-1.0232 1.5058-1.0232 2.6497 0 1.302.5646 2.1445 1.0089 2.5885.843.843 1.926 1.0385 2.829 1.0385 1.4827 0 2.2804-.4586 2.7843-.9478.5043-.4892.7234-1.024.8284-1.4078H19.825c-.1056.2107-.279.3687-.4296.459-.3083.1656-.7368.1814-.797.1814-.5492 0-.8583-.1883-1.0088-.3388-.2933-.286-.4296-.7757-.4296-1.1445h5.095v-.2634c0-.7601-.12-1.9567-1.0833-2.8749-.8132-.7676-1.8358-.9325-2.6334-.9325zm.0601 1.5577c.241 0 .6845.0448 1.008.3684.1881.1882.3384.4744.399.7378h-2.77c.0455-.3085.2038-.5572.3694-.7378.2561-.2634.5797-.3684.9936-.3684zm-16.851-1.3549h2.446v.8279c.5795-.7 1.377-.9483 2.047-.9483.4893 0 .9482.1054 1.3171.3086.5044.2634.783.6397.948.9783.2786-.4892.6251-.7827.9335-.9482.4892-.2785.9632-.3387 1.4226-.3387.5038 0 1.3317.0753 1.8961.6247.61.5945.6397 1.4073.6397 1.8814v4.4553h-2.4459v-3.379c0-.7226-.0753-1.2117-.3533-1.4676-.1359-.1204-.324-.2258-.6397-.2258-.2786 0-.5044.0753-.7228.2785-.414.3988-.4437.9633-.4437 1.302v3.507H6.346v-3.3791c0-.6548-.0454-1.1816-.324-1.4676-.2106-.2258-.4891-.2784-.7374-.2784-.2634 0-.474.0451-.6695.2483-.429.414-.429 1.0687-.429 1.4977v3.3791H1.74v-6.856Z" }) + ] + } + ); +}); + +exports.default = SiGofundme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.d.ts new file mode 100644 index 000000000..d1cbe4b94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B964"; +declare const SiGofundme: IconType; +export { SiGofundme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.mjs new file mode 100644 index 000000000..68e14f913 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGofundme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B964"; +const SiGofundme = React.forwardRef(function SiGofundme2({ title = "GoFundMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.6236 4.0792l-4.2223 3.0705c-.6695.4892-.8127 1.4224-.3309 2.0922.4892.6698 1.4221.8128 2.0921.3312l4.2219-3.0706c.67-.4892.8127-1.4224.3313-2.0922a1.4883 1.4883 0 0 0-2.092-.3312zm-9.6483-1.1816c-.8278 0-1.4978.6698-1.4978 1.4976v2.5212c0 .8279.67 1.4977 1.4978 1.4977.8279 0 1.4974-.6698 1.4974-1.4977V4.3952c0-.8278-.6695-1.4976-1.4974-1.4976zM.2877 4.4103c-.4892.6698-.3387 1.603.3308 2.0922L4.841 9.573c.6695.4891 1.6029.3386 2.092-.3312.4893-.6698.3387-1.603-.3313-2.0922L2.3798 4.0792c-.6773-.4817-1.6107-.3387-2.092.331zm3.695 7.7893C6.1051 10.303 8.905 9.144 11.9753 9.144c3.0705 0 5.8702 1.159 7.9926 3.0555zm14.5556 1.6335c-1.3473 0-2.236.4433-2.8004.9926-.5948.587-1.0232 1.5058-1.0232 2.6497 0 1.302.5646 2.1445 1.0089 2.5885.843.843 1.926 1.0385 2.829 1.0385 1.4827 0 2.2804-.4586 2.7843-.9478.5043-.4892.7234-1.024.8284-1.4078H19.825c-.1056.2107-.279.3687-.4296.459-.3083.1656-.7368.1814-.797.1814-.5492 0-.8583-.1883-1.0088-.3388-.2933-.286-.4296-.7757-.4296-1.1445h5.095v-.2634c0-.7601-.12-1.9567-1.0833-2.8749-.8132-.7676-1.8358-.9325-2.6334-.9325zm.0601 1.5577c.241 0 .6845.0448 1.008.3684.1881.1882.3384.4744.399.7378h-2.77c.0455-.3085.2038-.5572.3694-.7378.2561-.2634.5797-.3684.9936-.3684zm-16.851-1.3549h2.446v.8279c.5795-.7 1.377-.9483 2.047-.9483.4893 0 .9482.1054 1.3171.3086.5044.2634.783.6397.948.9783.2786-.4892.6251-.7827.9335-.9482.4892-.2785.9632-.3387 1.4226-.3387.5038 0 1.3317.0753 1.8961.6247.61.5945.6397 1.4073.6397 1.8814v4.4553h-2.4459v-3.379c0-.7226-.0753-1.2117-.3533-1.4676-.1359-.1204-.324-.2258-.6397-.2258-.2786 0-.5044.0753-.7228.2785-.414.3988-.4437.9633-.4437 1.302v3.507H6.346v-3.3791c0-.6548-.0454-1.1816-.324-1.4676-.2106-.2258-.4891-.2784-.7374-.2784-.2634 0-.474.0451-.6695.2483-.429.414-.429 1.0687-.429 1.4977v3.3791H1.74v-6.856Z" }) + ] + } + ); +}); + +export { SiGofundme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.cjs new file mode 100644 index 000000000..519771e21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#86328A"; +const SiGogdotcom = React__namespace.forwardRef(function SiGogdotcom2({ title = "GOG.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.15 15.24H4.36a.4.4 0 0 0-.4.4v2c0 .21.18.4.4.4h2.8v1.32h-3.5c-.56 0-1.02-.46-1.02-1.03v-3.39c0-.56.46-1.02 1.03-1.02h3.48v1.32zM8.16 11.54c0 .58-.47 1.05-1.05 1.05H2.63v-1.35h3.78a.4.4 0 0 0 .4-.4V6.39a.4.4 0 0 0-.4-.4H4.39a.4.4 0 0 0-.41.4v2.02c0 .23.18.4.4.4H6v1.35H3.68c-.58 0-1.05-.46-1.05-1.04V5.68c0-.57.47-1.04 1.05-1.04H7.1c.58 0 1.05.47 1.05 1.04v5.86zM21.36 19.36h-1.32v-4.12h-.93a.4.4 0 0 0-.4.4v3.72h-1.33v-4.12h-.93a.4.4 0 0 0-.4.4v3.72h-1.33v-4.42c0-.56.46-1.02 1.03-1.02h5.61v5.44zM21.37 11.54c0 .58-.47 1.05-1.05 1.05h-4.48v-1.35h3.78a.4.4 0 0 0 .4-.4V6.39a.4.4 0 0 0-.4-.4h-2.03a.4.4 0 0 0-.4.4v2.02c0 .23.18.4.4.4h1.62v1.35H16.9c-.58 0-1.05-.46-1.05-1.04V5.68c0-.57.47-1.04 1.05-1.04h3.43c.58 0 1.05.47 1.05 1.04v5.86zM13.72 4.64h-3.44c-.58 0-1.04.47-1.04 1.04v3.44c0 .58.46 1.04 1.04 1.04h3.44c.57 0 1.04-.46 1.04-1.04V5.68c0-.57-.47-1.04-1.04-1.04m-.3 1.75v2.02a.4.4 0 0 1-.4.4h-2.03a.4.4 0 0 1-.4-.4V6.4c0-.22.17-.4.4-.4H13c.23 0 .4.18.4.4zM12.63 13.92H9.24c-.57 0-1.03.46-1.03 1.02v3.39c0 .57.46 1.03 1.03 1.03h3.39c.57 0 1.03-.46 1.03-1.03v-3.39c0-.56-.46-1.02-1.03-1.02m-.3 1.72v2a.4.4 0 0 1-.4.4v-.01H9.94a.4.4 0 0 1-.4-.4v-1.99c0-.22.18-.4.4-.4h2c.22 0 .4.18.4.4zM23.49 1.1a1.74 1.74 0 0 0-1.24-.52H1.75A1.74 1.74 0 0 0 0 2.33v19.34a1.74 1.74 0 0 0 1.75 1.75h20.5A1.74 1.74 0 0 0 24 21.67V2.33c0-.48-.2-.92-.51-1.24m0 20.58a1.23 1.23 0 0 1-1.24 1.24H1.75A1.23 1.23 0 0 1 .5 21.67V2.33a1.23 1.23 0 0 1 1.24-1.24h20.5a1.24 1.24 0 0 1 1.24 1.24v19.34z" }) + ] + } + ); +}); + +exports.default = SiGogdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.d.ts new file mode 100644 index 000000000..7400c73b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#86328A"; +declare const SiGogdotcom: IconType; +export { SiGogdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.mjs new file mode 100644 index 000000000..089e8af5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGogdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#86328A"; +const SiGogdotcom = React.forwardRef(function SiGogdotcom2({ title = "GOG.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.15 15.24H4.36a.4.4 0 0 0-.4.4v2c0 .21.18.4.4.4h2.8v1.32h-3.5c-.56 0-1.02-.46-1.02-1.03v-3.39c0-.56.46-1.02 1.03-1.02h3.48v1.32zM8.16 11.54c0 .58-.47 1.05-1.05 1.05H2.63v-1.35h3.78a.4.4 0 0 0 .4-.4V6.39a.4.4 0 0 0-.4-.4H4.39a.4.4 0 0 0-.41.4v2.02c0 .23.18.4.4.4H6v1.35H3.68c-.58 0-1.05-.46-1.05-1.04V5.68c0-.57.47-1.04 1.05-1.04H7.1c.58 0 1.05.47 1.05 1.04v5.86zM21.36 19.36h-1.32v-4.12h-.93a.4.4 0 0 0-.4.4v3.72h-1.33v-4.12h-.93a.4.4 0 0 0-.4.4v3.72h-1.33v-4.42c0-.56.46-1.02 1.03-1.02h5.61v5.44zM21.37 11.54c0 .58-.47 1.05-1.05 1.05h-4.48v-1.35h3.78a.4.4 0 0 0 .4-.4V6.39a.4.4 0 0 0-.4-.4h-2.03a.4.4 0 0 0-.4.4v2.02c0 .23.18.4.4.4h1.62v1.35H16.9c-.58 0-1.05-.46-1.05-1.04V5.68c0-.57.47-1.04 1.05-1.04h3.43c.58 0 1.05.47 1.05 1.04v5.86zM13.72 4.64h-3.44c-.58 0-1.04.47-1.04 1.04v3.44c0 .58.46 1.04 1.04 1.04h3.44c.57 0 1.04-.46 1.04-1.04V5.68c0-.57-.47-1.04-1.04-1.04m-.3 1.75v2.02a.4.4 0 0 1-.4.4h-2.03a.4.4 0 0 1-.4-.4V6.4c0-.22.17-.4.4-.4H13c.23 0 .4.18.4.4zM12.63 13.92H9.24c-.57 0-1.03.46-1.03 1.02v3.39c0 .57.46 1.03 1.03 1.03h3.39c.57 0 1.03-.46 1.03-1.03v-3.39c0-.56-.46-1.02-1.03-1.02m-.3 1.72v2a.4.4 0 0 1-.4.4v-.01H9.94a.4.4 0 0 1-.4-.4v-1.99c0-.22.18-.4.4-.4h2c.22 0 .4.18.4.4zM23.49 1.1a1.74 1.74 0 0 0-1.24-.52H1.75A1.74 1.74 0 0 0 0 2.33v19.34a1.74 1.74 0 0 0 1.75 1.75h20.5A1.74 1.74 0 0 0 24 21.67V2.33c0-.48-.2-.92-.51-1.24m0 20.58a1.23 1.23 0 0 1-1.24 1.24H1.75A1.23 1.23 0 0 1 .5 21.67V2.33a1.23 1.23 0 0 1 1.24-1.24h20.5a1.24 1.24 0 0 1 1.24 1.24v19.34z" }) + ] + } + ); +}); + +export { SiGogdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.cjs new file mode 100644 index 000000000..c852f5992 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AA13"; +const SiGojek = React__namespace.forwardRef(function SiGojek2({ title = "Gojek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.072.713a15.38 15.38 0 0 0-.643.011C5.317.998.344 5.835.017 11.818c-.266 4.913 2.548 9.21 6.723 11.204 1.557.744 3.405-.19 3.706-1.861.203-1.126-.382-2.241-1.429-2.742-2.373-1.139-3.966-3.602-3.778-6.406.22-3.28 2.931-5.945 6.279-6.171 3.959-.267 7.257 2.797 7.257 6.619 0 2.623-1.553 4.888-3.809 5.965a2.511 2.511 0 0 0-1.395 2.706l.011.056c.295 1.644 2.111 2.578 3.643 1.852C21.233 21.139 24 17.117 24 12.461 23.996 5.995 18.664.749 12.072.711v.002Zm-.061 7.614c-2.331 0-4.225 1.856-4.225 4.139 0 2.282 1.894 4.137 4.225 4.137 2.33 0 4.225-1.855 4.225-4.137 0-2.283-1.895-4.139-4.225-4.139Z" }) + ] + } + ); +}); + +exports.default = SiGojek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.d.ts new file mode 100644 index 000000000..aa3ccf154 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AA13"; +declare const SiGojek: IconType; +export { SiGojek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.mjs new file mode 100644 index 000000000..20f3656a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGojek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AA13"; +const SiGojek = React.forwardRef(function SiGojek2({ title = "Gojek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.072.713a15.38 15.38 0 0 0-.643.011C5.317.998.344 5.835.017 11.818c-.266 4.913 2.548 9.21 6.723 11.204 1.557.744 3.405-.19 3.706-1.861.203-1.126-.382-2.241-1.429-2.742-2.373-1.139-3.966-3.602-3.778-6.406.22-3.28 2.931-5.945 6.279-6.171 3.959-.267 7.257 2.797 7.257 6.619 0 2.623-1.553 4.888-3.809 5.965a2.511 2.511 0 0 0-1.395 2.706l.011.056c.295 1.644 2.111 2.578 3.643 1.852C21.233 21.139 24 17.117 24 12.461 23.996 5.995 18.664.749 12.072.711v.002Zm-.061 7.614c-2.331 0-4.225 1.856-4.225 4.139 0 2.282 1.894 4.137 4.225 4.137 2.33 0 4.225-1.855 4.225-4.137 0-2.283-1.895-4.139-4.225-4.139Z" }) + ] + } + ); +}); + +export { SiGojek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.cjs new file mode 100644 index 000000000..59ca03ecc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGoland = React__namespace.forwardRef(function SiGoland2({ title = "GoLand", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm6.764 3a5.448 5.448 0 0 1 3.892 1.356L9.284 6.012A3.652 3.652 0 0 0 6.696 5c-1.6 0-2.844 1.4-2.844 3.08v.028c0 1.812 1.244 3.14 3 3.14a3.468 3.468 0 0 0 2.048-.596V9.228H6.708v-1.88H11v4.296a6.428 6.428 0 0 1-4.228 1.572c-3.076 0-5.196-2.164-5.196-5.092v-.028A5.08 5.08 0 0 1 6.764 3Zm10.432 0c3.052 0 5.244 2.276 5.244 5.088v.028a5.116 5.116 0 0 1-5.272 5.12c-3.056-.02-5.248-2.296-5.248-5.112v-.028A5.116 5.116 0 0 1 17.196 3Zm-.028 2A2.96 2.96 0 0 0 14.2 8.068v.028a3.008 3.008 0 0 0 3 3.112 2.96 2.96 0 0 0 2.964-3.084v-.028A3.004 3.004 0 0 0 17.168 5ZM2.252 19.5h9V21h-9z" }) + ] + } + ); +}); + +exports.default = SiGoland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.d.ts new file mode 100644 index 000000000..a65ab3524 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGoland: IconType; +export { SiGoland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.mjs new file mode 100644 index 000000000..3007a0222 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGoland = React.forwardRef(function SiGoland2({ title = "GoLand", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm6.764 3a5.448 5.448 0 0 1 3.892 1.356L9.284 6.012A3.652 3.652 0 0 0 6.696 5c-1.6 0-2.844 1.4-2.844 3.08v.028c0 1.812 1.244 3.14 3 3.14a3.468 3.468 0 0 0 2.048-.596V9.228H6.708v-1.88H11v4.296a6.428 6.428 0 0 1-4.228 1.572c-3.076 0-5.196-2.164-5.196-5.092v-.028A5.08 5.08 0 0 1 6.764 3Zm10.432 0c3.052 0 5.244 2.276 5.244 5.088v.028a5.116 5.116 0 0 1-5.272 5.12c-3.056-.02-5.248-2.296-5.248-5.112v-.028A5.116 5.116 0 0 1 17.196 3Zm-.028 2A2.96 2.96 0 0 0 14.2 8.068v.028a3.008 3.008 0 0 0 3 3.112 2.96 2.96 0 0 0 2.964-3.084v-.028A3.004 3.004 0 0 0 17.168 5ZM2.252 19.5h9V21h-9z" }) + ] + } + ); +}); + +export { SiGoland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.cjs new file mode 100644 index 000000000..7b99cde98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7399C6"; +const SiGoldmansachs = React__namespace.forwardRef(function SiGoldmansachs2({ title = "Goldman Sachs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.963 9.264h1.452v2.378c-.484.098-.855.148-1.262.148C.561 11.79 0 10.878 0 9.377c0-1.614.778-2.526 2.329-2.526.196 0 .567.014 1.03.084v1.522h-.336l-.19-.582c-.183-.553-.4-.827-.744-.827-.596 0-.912.806-.912 2.315 0 1.515.126 2.23.904 2.23.106 0 .231-.014.351-.048V9.776l-.469-.323v-.189Zm1.424 6.382c0 .954-.651 1.501-1.802 1.501-.315 0-.778-.048-1.213-.119v-1.865h.337l.14.441c.315 1.017.54 1.353.94 1.353.421 0 .722-.371.722-.862 0-.399-.189-.68-.595-.898l-.702-.378c-.541-.287-.835-.736-.835-1.283 0-.828.68-1.326 1.796-1.326.252 0 .547.022 1.016.085v1.521h-.337l-.188-.581c-.19-.618-.393-.842-.764-.842-.415 0-.66.266-.66.652 0 .343.19.589.561.799l.708.399c.596.337.876.786.876 1.403Zm3.101 1.102.14.211v.106H5.556l-.05-.407c-.112.308-.407.491-.786.491-.561 0-.912-.351-.912-.926 0-.561.315-.933 1.283-1.311l.414-.161v-.525c0-.463-.085-.652-.344-.652-.21 0-.329.112-.533.623l-.231.573h-.315v-1.144c.414-.126.828-.21 1.185-.21.792 0 1.221.378 1.221 1.066v2.266Zm.405-6.824c0 1.192-.637 1.866-1.459 1.866-.82 0-1.457-.674-1.457-1.866 0-1.193.637-1.866 1.459-1.866.82 0 1.457.673 1.457 1.866Zm-1.387 6.235v-1.213l-.133.056c-.414.169-.569.547-.569 1.101 0 .414.099.652.329.652.231 0 .373-.225.373-.596Zm.357-6.235c0-1.347-.112-1.704-.427-1.704s-.428.357-.428 1.704c0 1.346.113 1.704.428 1.704s.427-.358.427-1.704Zm3.521 6.269.126.064c-.224.646-.511.89-1.066.89-.904 0-1.409-.679-1.409-1.865 0-1.185.589-1.866 1.55-1.866.258 0 .603.042.897.16v1.193h-.329l-.132-.449c-.176-.596-.273-.75-.449-.75-.281 0-.505.365-.505 1.754 0 1.114.168 1.521.595 1.521.287.001.532-.181.722-.652Zm-.779-4.488H7.342v-.104l.141-.211V7.476l-.141-.21V7.16l1.123-.084v4.313l.14.211v.105Zm1.726.085c-.772 0-1.235-.702-1.235-1.901 0-1.192.483-1.83 1.227-1.83.379 0 .589.147.68.441V7.476l-.141-.21V7.16l1.123-.084v4.313l.14.211v.104h-.996l-.077-.533c-.111.457-.321.619-.721.619Zm2.461 4.958.14.211v.106H11.67v-.106l.14-.211v-2.525c0-.301-.091-.483-.309-.483-.26 0-.449.218-.449.645v2.363l.141.211v.106H9.93v-.106l.14-.211v-3.914l-.14-.21v-.105l1.122-.084v1.451c.127-.301.414-.469.82-.469.576 0 .919.365.919 1.073v2.258h.001Zm-2.664-6.846c0 1.263.112 1.648.421 1.648.385 0 .455-.554.455-1.662 0-1.073-.077-1.606-.449-1.606-.315 0-.427.379-.427 1.62Zm7.041 1.487.14.211v.104h-1.262V11.6l.14-.211V8.787c0-.252-.084-.407-.281-.407-.244 0-.441.219-.441.638v2.371l.14.211v.104h-1.262V11.6l.14-.211V8.787c0-.252-.084-.407-.28-.407-.245 0-.442.219-.442.638v2.371l.141.211v.104h-1.263V11.6l.14-.211V8.535l-.14-.169v-.104l1.01-.12h.084l.028.393c.119-.309.414-.477.814-.477.427 0 .708.21.834.589.105-.365.435-.589.856-.589.553 0 .904.365.904 1.072v2.259Zm-1.311 4.644c0 .609-.393 1.114-1.339 1.114-.245 0-.575-.028-1.087-.119v-1.304h.287l.091.281c.224.715.441.982.785.982.323 0 .533-.232.533-.59 0-.294-.147-.497-.497-.687l-.603-.323c-.385-.21-.596-.539-.596-.946 0-.638.499-1.024 1.325-1.024.239 0 .547.034.884.105v1.024h-.287l-.148-.373c-.168-.449-.329-.595-.595-.595-.287 0-.456.168-.456.449 0 .238.141.399.484.595l.595.337c.406.232.624.561.624 1.074Zm4.538-4.644.14.211v.104h-1.073l-.048-.407c-.112.309-.407.491-.786.491-.561 0-.911-.35-.911-.926 0-.561.315-.932 1.283-1.311l.413-.16v-.526c0-.463-.084-.652-.343-.652-.211 0-.329.113-.533.624l-.231.575h-.317V8.27c.415-.127.828-.211 1.185-.211.792 0 1.221.379 1.221 1.066v2.264Zm-.982-.589V9.587l-.133.056c-.413.168-.567.547-.567 1.101 0 .414.098.653.329.653.23 0 .371-.225.371-.597Zm4.586.8v.104h-1.263V11.6l.141-.211V8.864c0-.302-.091-.484-.309-.484-.26 0-.449.219-.449.646v2.363l.14.211v.104h-1.262V11.6l.14-.211V8.535l-.14-.169v-.104l1.01-.12h.084l.028.393c.119-.309.407-.477.82-.477.575 0 .918.365.918 1.072v2.259L24 11.6Z" }) + ] + } + ); +}); + +exports.default = SiGoldmansachs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.d.ts new file mode 100644 index 000000000..d0a6c3b77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7399C6"; +declare const SiGoldmansachs: IconType; +export { SiGoldmansachs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.mjs new file mode 100644 index 000000000..02ec9ecb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoldmansachs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7399C6"; +const SiGoldmansachs = React.forwardRef(function SiGoldmansachs2({ title = "Goldman Sachs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.963 9.264h1.452v2.378c-.484.098-.855.148-1.262.148C.561 11.79 0 10.878 0 9.377c0-1.614.778-2.526 2.329-2.526.196 0 .567.014 1.03.084v1.522h-.336l-.19-.582c-.183-.553-.4-.827-.744-.827-.596 0-.912.806-.912 2.315 0 1.515.126 2.23.904 2.23.106 0 .231-.014.351-.048V9.776l-.469-.323v-.189Zm1.424 6.382c0 .954-.651 1.501-1.802 1.501-.315 0-.778-.048-1.213-.119v-1.865h.337l.14.441c.315 1.017.54 1.353.94 1.353.421 0 .722-.371.722-.862 0-.399-.189-.68-.595-.898l-.702-.378c-.541-.287-.835-.736-.835-1.283 0-.828.68-1.326 1.796-1.326.252 0 .547.022 1.016.085v1.521h-.337l-.188-.581c-.19-.618-.393-.842-.764-.842-.415 0-.66.266-.66.652 0 .343.19.589.561.799l.708.399c.596.337.876.786.876 1.403Zm3.101 1.102.14.211v.106H5.556l-.05-.407c-.112.308-.407.491-.786.491-.561 0-.912-.351-.912-.926 0-.561.315-.933 1.283-1.311l.414-.161v-.525c0-.463-.085-.652-.344-.652-.21 0-.329.112-.533.623l-.231.573h-.315v-1.144c.414-.126.828-.21 1.185-.21.792 0 1.221.378 1.221 1.066v2.266Zm.405-6.824c0 1.192-.637 1.866-1.459 1.866-.82 0-1.457-.674-1.457-1.866 0-1.193.637-1.866 1.459-1.866.82 0 1.457.673 1.457 1.866Zm-1.387 6.235v-1.213l-.133.056c-.414.169-.569.547-.569 1.101 0 .414.099.652.329.652.231 0 .373-.225.373-.596Zm.357-6.235c0-1.347-.112-1.704-.427-1.704s-.428.357-.428 1.704c0 1.346.113 1.704.428 1.704s.427-.358.427-1.704Zm3.521 6.269.126.064c-.224.646-.511.89-1.066.89-.904 0-1.409-.679-1.409-1.865 0-1.185.589-1.866 1.55-1.866.258 0 .603.042.897.16v1.193h-.329l-.132-.449c-.176-.596-.273-.75-.449-.75-.281 0-.505.365-.505 1.754 0 1.114.168 1.521.595 1.521.287.001.532-.181.722-.652Zm-.779-4.488H7.342v-.104l.141-.211V7.476l-.141-.21V7.16l1.123-.084v4.313l.14.211v.105Zm1.726.085c-.772 0-1.235-.702-1.235-1.901 0-1.192.483-1.83 1.227-1.83.379 0 .589.147.68.441V7.476l-.141-.21V7.16l1.123-.084v4.313l.14.211v.104h-.996l-.077-.533c-.111.457-.321.619-.721.619Zm2.461 4.958.14.211v.106H11.67v-.106l.14-.211v-2.525c0-.301-.091-.483-.309-.483-.26 0-.449.218-.449.645v2.363l.141.211v.106H9.93v-.106l.14-.211v-3.914l-.14-.21v-.105l1.122-.084v1.451c.127-.301.414-.469.82-.469.576 0 .919.365.919 1.073v2.258h.001Zm-2.664-6.846c0 1.263.112 1.648.421 1.648.385 0 .455-.554.455-1.662 0-1.073-.077-1.606-.449-1.606-.315 0-.427.379-.427 1.62Zm7.041 1.487.14.211v.104h-1.262V11.6l.14-.211V8.787c0-.252-.084-.407-.281-.407-.244 0-.441.219-.441.638v2.371l.14.211v.104h-1.262V11.6l.14-.211V8.787c0-.252-.084-.407-.28-.407-.245 0-.442.219-.442.638v2.371l.141.211v.104h-1.263V11.6l.14-.211V8.535l-.14-.169v-.104l1.01-.12h.084l.028.393c.119-.309.414-.477.814-.477.427 0 .708.21.834.589.105-.365.435-.589.856-.589.553 0 .904.365.904 1.072v2.259Zm-1.311 4.644c0 .609-.393 1.114-1.339 1.114-.245 0-.575-.028-1.087-.119v-1.304h.287l.091.281c.224.715.441.982.785.982.323 0 .533-.232.533-.59 0-.294-.147-.497-.497-.687l-.603-.323c-.385-.21-.596-.539-.596-.946 0-.638.499-1.024 1.325-1.024.239 0 .547.034.884.105v1.024h-.287l-.148-.373c-.168-.449-.329-.595-.595-.595-.287 0-.456.168-.456.449 0 .238.141.399.484.595l.595.337c.406.232.624.561.624 1.074Zm4.538-4.644.14.211v.104h-1.073l-.048-.407c-.112.309-.407.491-.786.491-.561 0-.911-.35-.911-.926 0-.561.315-.932 1.283-1.311l.413-.16v-.526c0-.463-.084-.652-.343-.652-.211 0-.329.113-.533.624l-.231.575h-.317V8.27c.415-.127.828-.211 1.185-.211.792 0 1.221.379 1.221 1.066v2.264Zm-.982-.589V9.587l-.133.056c-.413.168-.567.547-.567 1.101 0 .414.098.653.329.653.23 0 .371-.225.371-.597Zm4.586.8v.104h-1.263V11.6l.141-.211V8.864c0-.302-.091-.484-.309-.484-.26 0-.449.219-.449.646v2.363l.14.211v.104h-1.262V11.6l.14-.211V8.535l-.14-.169v-.104l1.01-.12h.084l.028.393c.119-.309.407-.477.82-.477.575 0 .918.365.918 1.072v2.259L24 11.6Z" }) + ] + } + ); +}); + +export { SiGoldmansachs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.cjs new file mode 100644 index 000000000..57081a5b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E1914"; +const SiGoodreads = React__namespace.forwardRef(function SiGoodreads2({ title = "Goodreads", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.346.026c.422-.083.859.037 1.179.325.346.284.55.705.557 1.153-.023.457-.247.88-.612 1.156l-2.182 1.748a.601.601 0 0 0-.255.43.52.52 0 0 0 .11.424 5.886 5.886 0 0 1 .832 6.58c-1.394 2.79-4.503 3.99-7.501 2.927a.792.792 0 0 0-.499-.01c-.224.07-.303.18-.453.383l-.014.02-.941 1.254s-.792.985.457.935c3.027-.119 3.817-.119 5.439-.01 2.641.18 3.806 1.903 3.806 3.275 0 1.623-1.036 3.383-3.809 3.383a117.46 117.46 0 0 0-5.517-.03c-.31.005-.597.013-.835.02-.228.006-.41.011-.52.011-.712 0-1.648-.186-1.66-1.068-.008-.729.624-1.12 1.11-1.172.43-.045.815.007 1.24.064.252.034.518.07.815.088.185.011.366.025.552.038.53.038 1.102.08 1.926.087.427.005.759.01 1.025.015.695.012.941.016 1.28-.015 1.248-.112 1.832-.61 1.832-1.376 0-.805-.584-1.264-1.698-1.414-1.564-.213-2.33-.163-3.72-.074a87.66 87.66 0 0 1-1.669.095c-.608.029-2.449.026-2.682-1.492-.053-.416-.073-1.116.807-2.325l.75-1.003c.36-.49.582-.898.053-1.559 0 0-.39-.468-.52-.638-1.215-1.587-1.512-4.08-.448-6.114 1.577-3.011 5.4-4.26 8.37-2.581.253.143.438.203.655.163.201-.032.27-.167.363-.344.02-.04.042-.082.067-.126.004-.01.241-.465.535-1.028l.734-1.41a1.493 1.493 0 0 1 1.041-.785ZM9.193 13.243c1.854.903 3.912.208 5.254-2.47 1.352-2.699.827-5.11-1.041-6.023C10.918 3.537 8.81 5.831 8.017 7.41c-1.355 2.698-.717 4.886 1.147 5.818Z" }) + ] + } + ); +}); + +exports.default = SiGoodreads; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.d.ts new file mode 100644 index 000000000..d8204fcc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E1914"; +declare const SiGoodreads: IconType; +export { SiGoodreads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.mjs new file mode 100644 index 000000000..c91951cb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoodreads.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E1914"; +const SiGoodreads = React.forwardRef(function SiGoodreads2({ title = "Goodreads", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.346.026c.422-.083.859.037 1.179.325.346.284.55.705.557 1.153-.023.457-.247.88-.612 1.156l-2.182 1.748a.601.601 0 0 0-.255.43.52.52 0 0 0 .11.424 5.886 5.886 0 0 1 .832 6.58c-1.394 2.79-4.503 3.99-7.501 2.927a.792.792 0 0 0-.499-.01c-.224.07-.303.18-.453.383l-.014.02-.941 1.254s-.792.985.457.935c3.027-.119 3.817-.119 5.439-.01 2.641.18 3.806 1.903 3.806 3.275 0 1.623-1.036 3.383-3.809 3.383a117.46 117.46 0 0 0-5.517-.03c-.31.005-.597.013-.835.02-.228.006-.41.011-.52.011-.712 0-1.648-.186-1.66-1.068-.008-.729.624-1.12 1.11-1.172.43-.045.815.007 1.24.064.252.034.518.07.815.088.185.011.366.025.552.038.53.038 1.102.08 1.926.087.427.005.759.01 1.025.015.695.012.941.016 1.28-.015 1.248-.112 1.832-.61 1.832-1.376 0-.805-.584-1.264-1.698-1.414-1.564-.213-2.33-.163-3.72-.074a87.66 87.66 0 0 1-1.669.095c-.608.029-2.449.026-2.682-1.492-.053-.416-.073-1.116.807-2.325l.75-1.003c.36-.49.582-.898.053-1.559 0 0-.39-.468-.52-.638-1.215-1.587-1.512-4.08-.448-6.114 1.577-3.011 5.4-4.26 8.37-2.581.253.143.438.203.655.163.201-.032.27-.167.363-.344.02-.04.042-.082.067-.126.004-.01.241-.465.535-1.028l.734-1.41a1.493 1.493 0 0 1 1.041-.785ZM9.193 13.243c1.854.903 3.912.208 5.254-2.47 1.352-2.699.827-5.11-1.041-6.023C10.918 3.537 8.81 5.831 8.017 7.41c-1.355 2.698-.717 4.886 1.147 5.818Z" }) + ] + } + ); +}); + +export { SiGoodreads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.cjs new file mode 100644 index 000000000..dfe9478d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogle = React__namespace.forwardRef(function SiGoogle2({ title = "Google", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" }) + ] + } + ); +}); + +exports.default = SiGoogle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.d.ts new file mode 100644 index 000000000..b814a029b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogle: IconType; +export { SiGoogle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.mjs new file mode 100644 index 000000000..a2016ac07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogle = React.forwardRef(function SiGoogle2({ title = "Google", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" }) + ] + } + ); +}); + +export { SiGoogle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.cjs new file mode 100644 index 000000000..7d4f6606d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA4335"; +const SiGoogleadmob = React__namespace.forwardRef(function SiGoogleadmob2({ title = "Google AdMob", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.46.033h-.052A11.993 11.993 0 0 0 0 11.922v.052c0 7.475 6.563 11.928 11.447 11.928h.17a3.086 3.086 0 0 0 3.125-3.047c0-1.693-1.433-2.917-3.152-2.917h-.039a6.016 6.016 0 0 1-5.508-6.368v-.052a6.016 6.016 0 0 1 5.573-5.509c1.719 0 3.125-1.237 3.125-2.917A3.086 3.086 0 0 0 11.604.02h-.143zm2.031.026a3.516 3.516 0 0 1 1.746 3.021 3.386 3.386 0 0 1-1.928 3.047c2.865.6 4.532 3.126 4.688 5.378v7.684a3.49 3.49 0 0 1 6.003.026v-7.736A12.046 12.046 0 0 0 13.491.045zm7.475 17.932a2.995 2.995 0 1 0 .04 0z" }) + ] + } + ); +}); + +exports.default = SiGoogleadmob; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.d.ts new file mode 100644 index 000000000..810fbae3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA4335"; +declare const SiGoogleadmob: IconType; +export { SiGoogleadmob as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.mjs new file mode 100644 index 000000000..3bb131950 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadmob.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA4335"; +const SiGoogleadmob = React.forwardRef(function SiGoogleadmob2({ title = "Google AdMob", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.46.033h-.052A11.993 11.993 0 0 0 0 11.922v.052c0 7.475 6.563 11.928 11.447 11.928h.17a3.086 3.086 0 0 0 3.125-3.047c0-1.693-1.433-2.917-3.152-2.917h-.039a6.016 6.016 0 0 1-5.508-6.368v-.052a6.016 6.016 0 0 1 5.573-5.509c1.719 0 3.125-1.237 3.125-2.917A3.086 3.086 0 0 0 11.604.02h-.143zm2.031.026a3.516 3.516 0 0 1 1.746 3.021 3.386 3.386 0 0 1-1.928 3.047c2.865.6 4.532 3.126 4.688 5.378v7.684a3.49 3.49 0 0 1 6.003.026v-7.736A12.046 12.046 0 0 0 13.491.045zm7.475 17.932a2.995 2.995 0 1 0 .04 0z" }) + ] + } + ); +}); + +export { SiGoogleadmob as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.cjs new file mode 100644 index 000000000..4b7785ccd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleads = React__namespace.forwardRef(function SiGoogleads2({ title = "Google Ads", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.9998 22.9291C1.7908 22.9291 0 21.1383 0 18.9293s1.7908-3.9998 3.9998-3.9998 3.9998 1.7908 3.9998 3.9998-1.7908 3.9998-3.9998 3.9998zm19.4643-6.0004L15.4632 3.072C14.3586 1.1587 11.9121.5028 9.9988 1.6074S7.4295 5.1585 8.5341 7.0718l8.0009 13.8567c1.1046 1.9133 3.5511 2.5679 5.4644 1.4646 1.9134-1.1046 2.568-3.5511 1.4647-5.4644zM7.5137 4.8438L1.5645 15.1484A4.5 4.5 0 0 1 4 14.4297c2.5597-.0075 4.6248 2.1585 4.4941 4.7148l3.2168-5.5723-3.6094-6.25c-.4499-.7793-.6322-1.6394-.5878-2.4784z" }) + ] + } + ); +}); + +exports.default = SiGoogleads; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.d.ts new file mode 100644 index 000000000..59ab957af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleads: IconType; +export { SiGoogleads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.mjs new file mode 100644 index 000000000..e64822cf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleads.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleads = React.forwardRef(function SiGoogleads2({ title = "Google Ads", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.9998 22.9291C1.7908 22.9291 0 21.1383 0 18.9293s1.7908-3.9998 3.9998-3.9998 3.9998 1.7908 3.9998 3.9998-1.7908 3.9998-3.9998 3.9998zm19.4643-6.0004L15.4632 3.072C14.3586 1.1587 11.9121.5028 9.9988 1.6074S7.4295 5.1585 8.5341 7.0718l8.0009 13.8567c1.1046 1.9133 3.5511 2.5679 5.4644 1.4646 1.9134-1.1046 2.568-3.5511 1.4647-5.4644zM7.5137 4.8438L1.5645 15.1484A4.5 4.5 0 0 1 4 14.4297c2.5597-.0075 4.6248 2.1585 4.4941 4.7148l3.2168-5.5723-3.6094-6.25c-.4499-.7793-.6322-1.6394-.5878-2.4784z" }) + ] + } + ); +}); + +export { SiGoogleads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.cjs new file mode 100644 index 000000000..9dc0cc0a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleadsense = React__namespace.forwardRef(function SiGoogleadsense2({ title = "Google AdSense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.056 8.447a3.894 3.894 0 0 0-5.313 1.419l-3.889 6.72a3.874 3.874 0 0 0 1.415 5.293l.01.005a3.894 3.894 0 0 0 5.312-1.42l3.889-6.718a3.875 3.875 0 0 0-1.416-5.294l-.008-.005m-14.7 12.168c-1.08 1.888-3.514 2.583-5.384 1.493-1.87-1.09-2.533-3.455-1.453-5.343s3.494-2.586 5.365-1.496c1.87 1.09 2.554 3.457 1.474 5.344m4.131-19.228a3.935 3.935 0 0 0-3.267 2.189l-3.67 6.279a4.638 4.638 0 0 0-.227.387l-2.746 4.737c1.345-.86 3.09-.993 4.55-.143a4.456 4.456 0 0 1 2.22 4.041l2.77-4.763c.082-.124.157-.252.224-.385l3.67-6.281a3.86 3.86 0 0 0-1.283-5.55 3.958 3.958 0 0 0-2.24-.511z" }) + ] + } + ); +}); + +exports.default = SiGoogleadsense; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.d.ts new file mode 100644 index 000000000..370158713 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleadsense: IconType; +export { SiGoogleadsense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.mjs new file mode 100644 index 000000000..23c2dc15b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleadsense.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleadsense = React.forwardRef(function SiGoogleadsense2({ title = "Google AdSense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.056 8.447a3.894 3.894 0 0 0-5.313 1.419l-3.889 6.72a3.874 3.874 0 0 0 1.415 5.293l.01.005a3.894 3.894 0 0 0 5.312-1.42l3.889-6.718a3.875 3.875 0 0 0-1.416-5.294l-.008-.005m-14.7 12.168c-1.08 1.888-3.514 2.583-5.384 1.493-1.87-1.09-2.533-3.455-1.453-5.343s3.494-2.586 5.365-1.496c1.87 1.09 2.554 3.457 1.474 5.344m4.131-19.228a3.935 3.935 0 0 0-3.267 2.189l-3.67 6.279a4.638 4.638 0 0 0-.227.387l-2.746 4.737c1.345-.86 3.09-.993 4.55-.143a4.456 4.456 0 0 1 2.22 4.041l2.77-4.763c.082-.124.157-.252.224-.385l3.67-6.281a3.86 3.86 0 0 0-1.283-5.55 3.958 3.958 0 0 0-2.24-.511z" }) + ] + } + ); +}); + +export { SiGoogleadsense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.cjs new file mode 100644 index 000000000..93070386a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E37400"; +const SiGoogleanalytics = React__namespace.forwardRef(function SiGoogleanalytics2({ title = "Google Analytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.84 2.9982v17.9987c.0086 1.6473-1.3197 2.9897-2.967 2.9984a2.9808 2.9808 0 01-.3677-.0208c-1.528-.226-2.6477-1.5558-2.6105-3.1V3.1204c-.0369-1.5458 1.0856-2.8762 2.6157-3.1 1.6361-.1915 3.1178.9796 3.3093 2.6158.014.1201.0208.241.0202.3619zM4.1326 18.0548c-1.6417 0-2.9726 1.331-2.9726 2.9726C1.16 22.6691 2.4909 24 4.1326 24s2.9726-1.3309 2.9726-2.9726-1.331-2.9726-2.9726-2.9726zm7.8728-9.0098c-.0171 0-.0342 0-.0513.0003-1.6495.0904-2.9293 1.474-2.891 3.1256v7.9846c0 2.167.9535 3.4825 2.3505 3.763 1.6118.3266 3.1832-.7152 3.5098-2.327.04-.1974.06-.3983.0593-.5998v-8.9585c.003-1.6474-1.33-2.9852-2.9773-2.9882z" }) + ] + } + ); +}); + +exports.default = SiGoogleanalytics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.d.ts new file mode 100644 index 000000000..7d2e3a442 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E37400"; +declare const SiGoogleanalytics: IconType; +export { SiGoogleanalytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.mjs new file mode 100644 index 000000000..118b9e143 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleanalytics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E37400"; +const SiGoogleanalytics = React.forwardRef(function SiGoogleanalytics2({ title = "Google Analytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.84 2.9982v17.9987c.0086 1.6473-1.3197 2.9897-2.967 2.9984a2.9808 2.9808 0 01-.3677-.0208c-1.528-.226-2.6477-1.5558-2.6105-3.1V3.1204c-.0369-1.5458 1.0856-2.8762 2.6157-3.1 1.6361-.1915 3.1178.9796 3.3093 2.6158.014.1201.0208.241.0202.3619zM4.1326 18.0548c-1.6417 0-2.9726 1.331-2.9726 2.9726C1.16 22.6691 2.4909 24 4.1326 24s2.9726-1.3309 2.9726-2.9726-1.331-2.9726-2.9726-2.9726zm7.8728-9.0098c-.0171 0-.0342 0-.0513.0003-1.6495.0904-2.9293 1.474-2.891 3.1256v7.9846c0 2.167.9535 3.4825 2.3505 3.763 1.6118.3266 3.1832-.7152 3.5098-2.327.04-.1974.06-.3983.0593-.5998v-8.9585c.003-1.6474-1.33-2.9852-2.9773-2.9882z" }) + ] + } + ); +}); + +export { SiGoogleanalytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.cjs new file mode 100644 index 000000000..a01551617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleappsscript = React__namespace.forwardRef(function SiGoogleappsscript2({ title = "Google Apps Script", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.363 2.54a3.136 3.136 0 0 0-.376.022 2.864 2.864 0 0 0-1.589.828c-.562.58-.82 1.115-.773 1.943-.01.264.193 1.023.272 1.274 1.115 3.546 2.09 6.75 3.26 10.279.08.246.168.486.267.72.02.047.035.046.048-.004.077-.297.174-.612.29-.945.894-2.576 1.772-5.14 2.633-7.696a.345.345 0 0 0 .004-.217 163.054 163.054 0 0 0-1.49-4.572 2.603 2.603 0 0 0-.704-.933c-.55-.46-1.166-.694-1.842-.7Zm9.078.117a2.734 2.734 0 0 0-2.878 1.828l-4.576 13.289a2.734 2.734 0 0 0 1.695 3.475l.12.04a2.734 2.734 0 0 0 3.475-1.694L23.85 6.307a2.734 2.734 0 0 0-1.695-3.476c-.233-.1-.506-.124-.716-.174ZM12.375 3.96a1.396 1.396 0 1 1 0 2.791 1.395 1.395 0 0 1 0-2.79zm8.809.07a1.402 1.402 0 1 1 0 2.803 1.402 1.402 0 0 1 0-2.803zM5.419 7.605a2.853 2.853 0 0 0-.468.052 2.683 2.683 0 0 0-1.337.627 2.62 2.62 0 0 0-.924 1.833 3.808 3.808 0 0 0 0 .648 2.52 2.52 0 0 0 .673 1.52c.221.238.465.454.732.648 3.043 2.21 6.08 4.43 9.108 6.664a.78.78 0 0 0 .158.089c.03-.043.032-.098.007-.167a17.409 17.409 0 0 0-.317-1.066 532.752 532.752 0 0 1-2.02-6.251 41.91 41.91 0 0 0-.497-1.477c-.967-.849-2.078-1.6-3.023-2.302A3.848 3.848 0 0 0 6.153 7.7a2.388 2.388 0 0 0-.734-.094Zm.02 1.424a1.398 1.398 0 1 1 0 2.796 1.398 1.398 0 0 1 0-2.796zm-2.458 6.792c-.733-.006-1.375.202-1.927.622a2.72 2.72 0 0 0-.95 1.45 2.78 2.78 0 0 0-.09 1.04 2.74 2.74 0 0 0 .695 1.583c.664.578 1.26.85 2 .945 1.42-.005 2.84-.012 4.262-.02h.418c2.277-.003 4.513-.002 6.706.003.148.005.28.003.392-.01.06-.005.091-.031.092-.077a10.656 10.656 0 0 0-.834-.653 488.746 488.746 0 0 1-6.57-4.815.236.236 0 0 0-.14-.047c-1.34-.003-2.691-.01-4.054-.02zm-.19 1.418a1.402 1.402 0 1 1 0 2.803 1.402 1.402 0 0 1 0-2.803zm13.874.002a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8z" }) + ] + } + ); +}); + +exports.default = SiGoogleappsscript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.d.ts new file mode 100644 index 000000000..9d7c8a01d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleappsscript: IconType; +export { SiGoogleappsscript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.mjs new file mode 100644 index 000000000..d73a11fef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleappsscript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleappsscript = React.forwardRef(function SiGoogleappsscript2({ title = "Google Apps Script", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.363 2.54a3.136 3.136 0 0 0-.376.022 2.864 2.864 0 0 0-1.589.828c-.562.58-.82 1.115-.773 1.943-.01.264.193 1.023.272 1.274 1.115 3.546 2.09 6.75 3.26 10.279.08.246.168.486.267.72.02.047.035.046.048-.004.077-.297.174-.612.29-.945.894-2.576 1.772-5.14 2.633-7.696a.345.345 0 0 0 .004-.217 163.054 163.054 0 0 0-1.49-4.572 2.603 2.603 0 0 0-.704-.933c-.55-.46-1.166-.694-1.842-.7Zm9.078.117a2.734 2.734 0 0 0-2.878 1.828l-4.576 13.289a2.734 2.734 0 0 0 1.695 3.475l.12.04a2.734 2.734 0 0 0 3.475-1.694L23.85 6.307a2.734 2.734 0 0 0-1.695-3.476c-.233-.1-.506-.124-.716-.174ZM12.375 3.96a1.396 1.396 0 1 1 0 2.791 1.395 1.395 0 0 1 0-2.79zm8.809.07a1.402 1.402 0 1 1 0 2.803 1.402 1.402 0 0 1 0-2.803zM5.419 7.605a2.853 2.853 0 0 0-.468.052 2.683 2.683 0 0 0-1.337.627 2.62 2.62 0 0 0-.924 1.833 3.808 3.808 0 0 0 0 .648 2.52 2.52 0 0 0 .673 1.52c.221.238.465.454.732.648 3.043 2.21 6.08 4.43 9.108 6.664a.78.78 0 0 0 .158.089c.03-.043.032-.098.007-.167a17.409 17.409 0 0 0-.317-1.066 532.752 532.752 0 0 1-2.02-6.251 41.91 41.91 0 0 0-.497-1.477c-.967-.849-2.078-1.6-3.023-2.302A3.848 3.848 0 0 0 6.153 7.7a2.388 2.388 0 0 0-.734-.094Zm.02 1.424a1.398 1.398 0 1 1 0 2.796 1.398 1.398 0 0 1 0-2.796zm-2.458 6.792c-.733-.006-1.375.202-1.927.622a2.72 2.72 0 0 0-.95 1.45 2.78 2.78 0 0 0-.09 1.04 2.74 2.74 0 0 0 .695 1.583c.664.578 1.26.85 2 .945 1.42-.005 2.84-.012 4.262-.02h.418c2.277-.003 4.513-.002 6.706.003.148.005.28.003.392-.01.06-.005.091-.031.092-.077a10.656 10.656 0 0 0-.834-.653 488.746 488.746 0 0 1-6.57-4.815.236.236 0 0 0-.14-.047c-1.34-.003-2.691-.01-4.054-.02zm-.19 1.418a1.402 1.402 0 1 1 0 2.803 1.402 1.402 0 0 1 0-2.803zm13.874.002a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8z" }) + ] + } + ); +}); + +export { SiGoogleappsscript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.cjs new file mode 100644 index 000000000..cc50dd0fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleassistant = React__namespace.forwardRef(function SiGoogleassistant2({ title = "Google Assistant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.365 8.729c.9 0 1.635-.735 1.635-1.635s-.735-1.636-1.635-1.636-1.636.735-1.636 1.636.723 1.635 1.636 1.635m-4.907 5.452a3.27 3.27 0 1 0 0-6.542 3.27 3.27 0 0 0 0 6.542m0 8.722c2.105 0 3.816-1.711 3.816-3.829s-1.711-3.816-3.829-3.816a3.82 3.82 0 0 0-3.816 3.816 3.825 3.825 0 0 0 3.829 3.83M6.542 14.18a6.542 6.542 0 1 0 0-13.084 6.542 6.542 0 1 0 0 13.084" }) + ] + } + ); +}); + +exports.default = SiGoogleassistant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.d.ts new file mode 100644 index 000000000..56687fae9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleassistant: IconType; +export { SiGoogleassistant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.mjs new file mode 100644 index 000000000..088751e05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleassistant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleassistant = React.forwardRef(function SiGoogleassistant2({ title = "Google Assistant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.365 8.729c.9 0 1.635-.735 1.635-1.635s-.735-1.636-1.635-1.636-1.636.735-1.636 1.636.723 1.635 1.636 1.635m-4.907 5.452a3.27 3.27 0 1 0 0-6.542 3.27 3.27 0 0 0 0 6.542m0 8.722c2.105 0 3.816-1.711 3.816-3.829s-1.711-3.816-3.829-3.816a3.82 3.82 0 0 0-3.816 3.816 3.825 3.825 0 0 0 3.829 3.83M6.542 14.18a6.542 6.542 0 1 0 0-13.084 6.542 6.542 0 1 0 0 13.084" }) + ] + } + ); +}); + +export { SiGoogleassistant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.cjs new file mode 100644 index 000000000..38e524665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleauthenticator = React__namespace.forwardRef(function SiGoogleauthenticator2({ title = "Google Authenticator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.957 1.3379A2.0133 2.0133 0 0 0 6 1.6074c-.967.5583-1.2985 1.7947-.7402 2.7617L8.498 9.9785H2.0215C.9049 9.9785 0 10.8835 0 12c0 1.1166.905 2.0215 2.0215 2.0215H8.498l-3.2382 5.6094c-.5583.967-.2268 2.2034.7402 2.7617.967.5582 2.2034.2267 2.7617-.7403L12 16.045l3.2383 5.6074c.5583.967 1.7947 1.2985 2.7617.7403.967-.5583 1.2985-1.7947.7402-2.7617l-3.2382-5.6094h6.4765C23.0951 14.0215 24 13.1165 24 12c0-1.1166-.905-2.0215-2.0215-2.0215H15.502l3.2382-5.6094c.5583-.967.2268-2.2034-.7402-2.7617-.967-.5582-2.2034-.2267-2.7617.7403L12 7.955 8.7617 2.3477C8.378 1.6829 7.674 1.3193 6.957 1.3379Zm9.959 1.0058c.1932-.0127.3928.0317.5781.1387.4944.2854.6565.8866.3711 1.3809l-4.1132 7.125h8.2265c.5709 0 1.0117.4408 1.0117 1.0117s-.4408 1.0117-1.0117 1.0117H14.92l-1.168-2.0234-1.168-2.0235 3.5294-6.1113c.1783-.3089.4808-.4885.8027-.5098zm-9.9336.004c.3587-.0093.7081.166.9043.5058l3.5293 6.1113-1.168 2.0235-1.168 2.0234H2.0216c-.5709 0-1.0117-.4408-1.0117-1.0117s.4408-1.0117 1.0117-1.0117h8.2265l-4.1132-7.125c-.2854-.4943-.1233-1.0955.371-1.3809a.9891.9891 0 0 1 .4766-.1347ZM9.666 14.0215h4.668l3.5312 6.1152c.2854.4943.1233 1.0955-.371 1.3809-.4942.2852-1.0956.1231-1.381-.3711L12 14.0254l-4.1133 7.121c-.2853.4943-.8867.6564-1.3808.3712-.4944-.2854-.6565-.8866-.3711-1.3809Z" }) + ] + } + ); +}); + +exports.default = SiGoogleauthenticator; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.d.ts new file mode 100644 index 000000000..d3f3fd4d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleauthenticator: IconType; +export { SiGoogleauthenticator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.mjs new file mode 100644 index 000000000..834fd7343 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleauthenticator.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleauthenticator = React.forwardRef(function SiGoogleauthenticator2({ title = "Google Authenticator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.957 1.3379A2.0133 2.0133 0 0 0 6 1.6074c-.967.5583-1.2985 1.7947-.7402 2.7617L8.498 9.9785H2.0215C.9049 9.9785 0 10.8835 0 12c0 1.1166.905 2.0215 2.0215 2.0215H8.498l-3.2382 5.6094c-.5583.967-.2268 2.2034.7402 2.7617.967.5582 2.2034.2267 2.7617-.7403L12 16.045l3.2383 5.6074c.5583.967 1.7947 1.2985 2.7617.7403.967-.5583 1.2985-1.7947.7402-2.7617l-3.2382-5.6094h6.4765C23.0951 14.0215 24 13.1165 24 12c0-1.1166-.905-2.0215-2.0215-2.0215H15.502l3.2382-5.6094c.5583-.967.2268-2.2034-.7402-2.7617-.967-.5582-2.2034-.2267-2.7617.7403L12 7.955 8.7617 2.3477C8.378 1.6829 7.674 1.3193 6.957 1.3379Zm9.959 1.0058c.1932-.0127.3928.0317.5781.1387.4944.2854.6565.8866.3711 1.3809l-4.1132 7.125h8.2265c.5709 0 1.0117.4408 1.0117 1.0117s-.4408 1.0117-1.0117 1.0117H14.92l-1.168-2.0234-1.168-2.0235 3.5294-6.1113c.1783-.3089.4808-.4885.8027-.5098zm-9.9336.004c.3587-.0093.7081.166.9043.5058l3.5293 6.1113-1.168 2.0235-1.168 2.0234H2.0216c-.5709 0-1.0117-.4408-1.0117-1.0117s.4408-1.0117 1.0117-1.0117h8.2265l-4.1132-7.125c-.2854-.4943-.1233-1.0955.371-1.3809a.9891.9891 0 0 1 .4766-.1347ZM9.666 14.0215h4.668l3.5312 6.1152c.2854.4943.1233 1.0955-.371 1.3809-.4942.2852-1.0956.1231-1.381-.3711L12 14.0254l-4.1133 7.121c-.2853.4943-.8867.6564-1.3808.3712-.4944-.2854-.6565-.8866-.3711-1.3809Z" }) + ] + } + ); +}); + +export { SiGoogleauthenticator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.cjs new file mode 100644 index 000000000..18c9bae99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#669DF6"; +const SiGooglebigquery = React__namespace.forwardRef(function SiGooglebigquery2({ title = "Google BigQuery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.676 10.595h2.052v5.244a5.892 5.892 0 0 1-2.052-2.088v-3.156zm18.179 10.836a.504.504 0 0 1 0 .708l-1.716 1.716a.504.504 0 0 1-.708 0l-4.248-4.248a.206.206 0 0 1-.007-.007c-.02-.02-.028-.045-.043-.066a10.736 10.736 0 0 1-6.334 2.065C4.835 21.599 0 16.764 0 10.799S4.835 0 10.8 0s10.799 4.835 10.799 10.8c0 2.369-.772 4.553-2.066 6.333.025.017.052.028.074.05l4.248 4.248zm-5.028-10.632a8.015 8.015 0 1 0-8.028 8.028h.024a8.016 8.016 0 0 0 8.004-8.028zm-4.86 4.98a6.002 6.002 0 0 0 2.04-2.184v-1.764h-2.04v3.948zm-4.5.948c.442.057.887.08 1.332.072.4.025.8.025 1.2 0V7.692H9.468v9.035z" }) + ] + } + ); +}); + +exports.default = SiGooglebigquery; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.d.ts new file mode 100644 index 000000000..103369d1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#669DF6"; +declare const SiGooglebigquery: IconType; +export { SiGooglebigquery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.mjs new file mode 100644 index 000000000..88bf24eb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigquery.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#669DF6"; +const SiGooglebigquery = React.forwardRef(function SiGooglebigquery2({ title = "Google BigQuery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.676 10.595h2.052v5.244a5.892 5.892 0 0 1-2.052-2.088v-3.156zm18.179 10.836a.504.504 0 0 1 0 .708l-1.716 1.716a.504.504 0 0 1-.708 0l-4.248-4.248a.206.206 0 0 1-.007-.007c-.02-.02-.028-.045-.043-.066a10.736 10.736 0 0 1-6.334 2.065C4.835 21.599 0 16.764 0 10.799S4.835 0 10.8 0s10.799 4.835 10.799 10.8c0 2.369-.772 4.553-2.066 6.333.025.017.052.028.074.05l4.248 4.248zm-5.028-10.632a8.015 8.015 0 1 0-8.028 8.028h.024a8.016 8.016 0 0 0 8.004-8.028zm-4.86 4.98a6.002 6.002 0 0 0 2.04-2.184v-1.764h-2.04v3.948zm-4.5.948c.442.057.887.08 1.332.072.4.025.8.025 1.2 0V7.692H9.468v9.035z" }) + ] + } + ); +}); + +export { SiGooglebigquery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.cjs new file mode 100644 index 000000000..6809732a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#669DF6"; +const SiGooglebigtable = React__namespace.forwardRef(function SiGooglebigtable2({ title = "Google Bigtable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.511.278s0-.4.456-.24c.267.094 3.728 2.243 5.88 3.533l.006.003.364.217c.004.003.007.009.011.011.322.2.656.42 1.006.673.27.165.43.463.42.78l-.06 7.566a.42.42 0 0 1-.192.396l-1.2.815V5.436c-.042-.034-.083-.07-.131-.098l-5.06-3.01c-.744-.466-1.5-1.642-1.5-2.05zm-2.89 12.171 4.39 2.614 4.388-2.566v-1.079L12.25 13.84a.78.78 0 0 1-.24.072.43.43 0 0 1-.24-.072l-4.149-2.47v1.08zm0 1.943c0 .17.086.327.228.42l3.933 2.398c.123.06.162.07.228.064.088-.003.173-.074.252-.112l3.933-2.398a.468.468 0 0 0 .228-.42v-.791L12.25 16.07a.432.432 0 0 1-.48 0L7.621 13.6v.79zm8.778-4.137v-.516a.467.467 0 0 0-.228-.408l-3.933-2.398a.444.444 0 0 0-.456 0L7.85 9.331a.492.492 0 0 0-.228.408v.516l4.39 2.614 4.388-2.614zm-4.473 11.332L6.95 18.625c-.041-.025-.06-.07-.096-.1v-8.63l-1.2.708a.491.491 0 0 0-.227.395v7.867a.9.9 0 0 0 .407.72l1.272.79c-.002 0-.003-.003-.005-.004l6.024 3.59a.216.216 0 0 0 .336-.216 3.262 3.262 0 0 0-1.535-2.158zM8.891 4.097a.845.845 0 0 1 .859.009L16.41 8.06V6.645a.444.444 0 0 0-.24-.371l-6.38-3.778a.81.81 0 0 0-.85-.012l-1.433.856C5.56 4.498 1.525 6.893 1.36 6.975a.276.276 0 0 0 0 .48 3.154 3.154 0 0 0 2.495-.312L8.89 4.097zM22.635 16.49a3.154 3.154 0 0 0-2.519.3l-5.036 2.986a.875.875 0 0 1-.887 0l-.018-.006-6.554-3.867v1.39c.021.152.093.292.204.397l6.356 3.765a.84.84 0 0 0 .887 0l1.415-.863h-.004l6.156-3.646a.252.252 0 0 0 0-.456zM10.967 6.13l-1.2-.708a.407.407 0 0 0-.431 0L3.688 8.756a.863.863 0 0 0-.456.767v8.862a.216.216 0 0 0 .36.156 3.297 3.297 0 0 0 1.043-2.398v-5.996a.9.9 0 0 1 .098-.367l6.234-3.65zm2.11 11.728 1.2.683a.42.42 0 0 0 .443 0l5.684-3.418c.335-.207.442-.408.442-.706l.002-.001V12.665c0 .006-.004.01-.004.017-.006-2.494-.013-6.831.004-7.104.024-.384-.372-.252-.372-.252a3.37 3.37 0 0 0-1.007 2.399v5.995a.97.97 0 0 1-.191.413l-6.2 3.725z" }) + ] + } + ); +}); + +exports.default = SiGooglebigtable; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.d.ts new file mode 100644 index 000000000..bb61d2de9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#669DF6"; +declare const SiGooglebigtable: IconType; +export { SiGooglebigtable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.mjs new file mode 100644 index 000000000..52a237268 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglebigtable.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#669DF6"; +const SiGooglebigtable = React.forwardRef(function SiGooglebigtable2({ title = "Google Bigtable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.511.278s0-.4.456-.24c.267.094 3.728 2.243 5.88 3.533l.006.003.364.217c.004.003.007.009.011.011.322.2.656.42 1.006.673.27.165.43.463.42.78l-.06 7.566a.42.42 0 0 1-.192.396l-1.2.815V5.436c-.042-.034-.083-.07-.131-.098l-5.06-3.01c-.744-.466-1.5-1.642-1.5-2.05zm-2.89 12.171 4.39 2.614 4.388-2.566v-1.079L12.25 13.84a.78.78 0 0 1-.24.072.43.43 0 0 1-.24-.072l-4.149-2.47v1.08zm0 1.943c0 .17.086.327.228.42l3.933 2.398c.123.06.162.07.228.064.088-.003.173-.074.252-.112l3.933-2.398a.468.468 0 0 0 .228-.42v-.791L12.25 16.07a.432.432 0 0 1-.48 0L7.621 13.6v.79zm8.778-4.137v-.516a.467.467 0 0 0-.228-.408l-3.933-2.398a.444.444 0 0 0-.456 0L7.85 9.331a.492.492 0 0 0-.228.408v.516l4.39 2.614 4.388-2.614zm-4.473 11.332L6.95 18.625c-.041-.025-.06-.07-.096-.1v-8.63l-1.2.708a.491.491 0 0 0-.227.395v7.867a.9.9 0 0 0 .407.72l1.272.79c-.002 0-.003-.003-.005-.004l6.024 3.59a.216.216 0 0 0 .336-.216 3.262 3.262 0 0 0-1.535-2.158zM8.891 4.097a.845.845 0 0 1 .859.009L16.41 8.06V6.645a.444.444 0 0 0-.24-.371l-6.38-3.778a.81.81 0 0 0-.85-.012l-1.433.856C5.56 4.498 1.525 6.893 1.36 6.975a.276.276 0 0 0 0 .48 3.154 3.154 0 0 0 2.495-.312L8.89 4.097zM22.635 16.49a3.154 3.154 0 0 0-2.519.3l-5.036 2.986a.875.875 0 0 1-.887 0l-.018-.006-6.554-3.867v1.39c.021.152.093.292.204.397l6.356 3.765a.84.84 0 0 0 .887 0l1.415-.863h-.004l6.156-3.646a.252.252 0 0 0 0-.456zM10.967 6.13l-1.2-.708a.407.407 0 0 0-.431 0L3.688 8.756a.863.863 0 0 0-.456.767v8.862a.216.216 0 0 0 .36.156 3.297 3.297 0 0 0 1.043-2.398v-5.996a.9.9 0 0 1 .098-.367l6.234-3.65zm2.11 11.728 1.2.683a.42.42 0 0 0 .443 0l5.684-3.418c.335-.207.442-.408.442-.706l.002-.001V12.665c0 .006-.004.01-.004.017-.006-2.494-.013-6.831.004-7.104.024-.384-.372-.252-.372-.252a3.37 3.37 0 0 0-1.007 2.399v5.995a.97.97 0 0 1-.191.413l-6.2 3.725z" }) + ] + } + ); +}); + +export { SiGooglebigtable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.cjs new file mode 100644 index 000000000..2fecd75da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglecalendar = React__namespace.forwardRef(function SiGooglecalendar2({ title = "Google Calendar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.316 5.684H24v12.632h-5.684V5.684zM5.684 24h12.632v-5.684H5.684V24zM18.316 5.684V0H1.895A1.894 1.894 0 0 0 0 1.895v16.421h5.684V5.684h12.632zm-7.207 6.25v-.065c.272-.144.5-.349.687-.617s.279-.595.279-.982c0-.379-.099-.72-.3-1.025a2.05 2.05 0 0 0-.832-.714 2.703 2.703 0 0 0-1.197-.257c-.6 0-1.094.156-1.481.467-.386.311-.65.671-.793 1.078l1.085.452c.086-.249.224-.461.413-.633.189-.172.445-.257.767-.257.33 0 .602.088.816.264a.86.86 0 0 1 .322.703c0 .33-.12.589-.36.778-.24.19-.535.284-.886.284h-.567v1.085h.633c.407 0 .748.109 1.02.327.272.218.407.499.407.843 0 .336-.129.614-.387.832s-.565.327-.924.327c-.351 0-.651-.103-.897-.311-.248-.208-.422-.502-.521-.881l-1.096.452c.178.616.505 1.082.977 1.401.472.319.984.478 1.538.477a2.84 2.84 0 0 0 1.293-.291c.382-.193.684-.458.902-.794.218-.336.327-.72.327-1.149 0-.429-.115-.797-.344-1.105a2.067 2.067 0 0 0-.881-.689zm2.093-1.931l.602.913L15 10.045v5.744h1.187V8.446h-.827l-2.158 1.557zM22.105 0h-3.289v5.184H24V1.895A1.894 1.894 0 0 0 22.105 0zm-3.289 23.5l4.684-4.684h-4.684V23.5zM0 22.105C0 23.152.848 24 1.895 24h3.289v-5.184H0v3.289z" }) + ] + } + ); +}); + +exports.default = SiGooglecalendar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.d.ts new file mode 100644 index 000000000..bc2753589 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglecalendar: IconType; +export { SiGooglecalendar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.mjs new file mode 100644 index 000000000..d7995e9e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecalendar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglecalendar = React.forwardRef(function SiGooglecalendar2({ title = "Google Calendar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.316 5.684H24v12.632h-5.684V5.684zM5.684 24h12.632v-5.684H5.684V24zM18.316 5.684V0H1.895A1.894 1.894 0 0 0 0 1.895v16.421h5.684V5.684h12.632zm-7.207 6.25v-.065c.272-.144.5-.349.687-.617s.279-.595.279-.982c0-.379-.099-.72-.3-1.025a2.05 2.05 0 0 0-.832-.714 2.703 2.703 0 0 0-1.197-.257c-.6 0-1.094.156-1.481.467-.386.311-.65.671-.793 1.078l1.085.452c.086-.249.224-.461.413-.633.189-.172.445-.257.767-.257.33 0 .602.088.816.264a.86.86 0 0 1 .322.703c0 .33-.12.589-.36.778-.24.19-.535.284-.886.284h-.567v1.085h.633c.407 0 .748.109 1.02.327.272.218.407.499.407.843 0 .336-.129.614-.387.832s-.565.327-.924.327c-.351 0-.651-.103-.897-.311-.248-.208-.422-.502-.521-.881l-1.096.452c.178.616.505 1.082.977 1.401.472.319.984.478 1.538.477a2.84 2.84 0 0 0 1.293-.291c.382-.193.684-.458.902-.794.218-.336.327-.72.327-1.149 0-.429-.115-.797-.344-1.105a2.067 2.067 0 0 0-.881-.689zm2.093-1.931l.602.913L15 10.045v5.744h1.187V8.446h-.827l-2.158 1.557zM22.105 0h-3.289v5.184H24V1.895A1.894 1.894 0 0 0 22.105 0zm-3.289 23.5l4.684-4.684h-4.684V23.5zM0 22.105C0 23.152.848 24 1.895 24h3.289v-5.184H0v3.289z" }) + ] + } + ); +}); + +export { SiGooglecalendar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.cjs new file mode 100644 index 000000000..c53925177 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E8E3E"; +const SiGooglecampaignmanager360 = React__namespace.forwardRef(function SiGooglecampaignmanager3602({ title = "Google Campaign Manager 360", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.8203 0c-2.093.0002-4.1858.7997-5.7832 2.3965-1.3364 1.3364-2.112 3.0208-2.33 4.7617a8.731 8.731 0 0 1 .4726-.0137c1.7849-.0001 3.5658.5466 5.0763 1.6387-.2066-.8822.0681-1.8261.7127-2.4707 1.046-1.0459 2.7113-.9977 3.7149.0059 1.0827 1.0826 2.8372 1.0826 3.92 0 1.0826-1.084 1.0826-2.8392 0-3.922C20.006.7992 17.9133-.0001 15.8202 0Zm7.0781 4.0781c.0785.929-.234 1.8855-.9414 2.5938-.9808.9809-2.438 1.2037-3.6386.6738.3115.9383.065 1.9896-.6329 2.6875-.9913.9913-2.6633 1.0662-3.7255.0039-.0173-.0172-.0293-.0352-.046-.0527l-.003.002c-3.1988-3.142-8.3393-3.1251-11.5165.0507-3.1935 3.1935-3.1935 8.373 0 11.5664 1.1618 1.1618 3.0453 1.1618 4.207 0 1.1618-1.1618.8689-2.7562-.293-3.918-.9353-.9354-1.1225-2.5928-.0058-3.7109.9095-.9095 2.5376-1.1696 3.7266-.0078.0726.0726.1477.1405.2246.2031 3.208 2.9849 8.2258 2.9155 11.3496-.207 2.68-2.679 3.1113-6.7548 1.295-9.8848zM10.7246 15.1992c.2151.8774-.0348 1.8317-.7012 2.498-.6718.672-1.6786.924-2.5918.6583.2105.3921.3471.8085.3926 1.2363.088.8272-.1925 1.6886-.8691 2.3652-.7565.7566-1.781 1.0896-2.7735 1 3.1157 1.7478 7.1304 1.2962 9.7813-1.3535 1.337-1.3364 2.1102-3.0208 2.3281-4.7617-1.946.1045-3.9194-.4446-5.5664-1.6426z" }) + ] + } + ); +}); + +exports.default = SiGooglecampaignmanager360; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.d.ts new file mode 100644 index 000000000..80e2299af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E8E3E"; +declare const SiGooglecampaignmanager360: IconType; +export { SiGooglecampaignmanager360 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.mjs new file mode 100644 index 000000000..8f086c953 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecampaignmanager360.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E8E3E"; +const SiGooglecampaignmanager360 = React.forwardRef(function SiGooglecampaignmanager3602({ title = "Google Campaign Manager 360", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.8203 0c-2.093.0002-4.1858.7997-5.7832 2.3965-1.3364 1.3364-2.112 3.0208-2.33 4.7617a8.731 8.731 0 0 1 .4726-.0137c1.7849-.0001 3.5658.5466 5.0763 1.6387-.2066-.8822.0681-1.8261.7127-2.4707 1.046-1.0459 2.7113-.9977 3.7149.0059 1.0827 1.0826 2.8372 1.0826 3.92 0 1.0826-1.084 1.0826-2.8392 0-3.922C20.006.7992 17.9133-.0001 15.8202 0Zm7.0781 4.0781c.0785.929-.234 1.8855-.9414 2.5938-.9808.9809-2.438 1.2037-3.6386.6738.3115.9383.065 1.9896-.6329 2.6875-.9913.9913-2.6633 1.0662-3.7255.0039-.0173-.0172-.0293-.0352-.046-.0527l-.003.002c-3.1988-3.142-8.3393-3.1251-11.5165.0507-3.1935 3.1935-3.1935 8.373 0 11.5664 1.1618 1.1618 3.0453 1.1618 4.207 0 1.1618-1.1618.8689-2.7562-.293-3.918-.9353-.9354-1.1225-2.5928-.0058-3.7109.9095-.9095 2.5376-1.1696 3.7266-.0078.0726.0726.1477.1405.2246.2031 3.208 2.9849 8.2258 2.9155 11.3496-.207 2.68-2.679 3.1113-6.7548 1.295-9.8848zM10.7246 15.1992c.2151.8774-.0348 1.8317-.7012 2.498-.6718.672-1.6786.924-2.5918.6583.2105.3921.3471.8085.3926 1.2363.088.8272-.1925 1.6886-.8691 2.3652-.7565.7566-1.781 1.0896-2.7735 1 3.1157 1.7478 7.1304 1.2962 9.7813-1.3535 1.337-1.3364 2.1102-3.0208 2.3281-4.7617-1.946.1045-3.9194-.4446-5.5664-1.6426z" }) + ] + } + ); +}); + +export { SiGooglecampaignmanager360 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.cjs new file mode 100644 index 000000000..66c7883f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7143"; +const SiGooglecardboard = React__namespace.forwardRef(function SiGooglecardboard2({ title = "Google Cardboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.087 4.235a3.07 3.07 0 0 0-2.183.91A3.133 3.133 0 0 0 0 7.35v9.296a3.13 3.13 0 0 0 .903 2.206 3.066 3.066 0 0 0 2.184.913h4.28a3.078 3.078 0 0 0 2.713-1.645l1.209-2.276a.785.785 0 0 1 .703-.42.783.783 0 0 1 .701.42l1.21 2.276a3.08 3.08 0 0 0 2.718 1.645h4.292a3.07 3.07 0 0 0 2.184-.913A3.13 3.13 0 0 0 24 16.646V7.35c0-.825-.324-1.618-.904-2.205a3.065 3.065 0 0 0-2.183-.91zm3.495 5.656c1.138 0 2.06.937 2.06 2.092 0 1.157-.922 2.093-2.06 2.093-1.139 0-2.061-.936-2.061-2.093 0-1.155.922-2.092 2.06-2.092zm10.832 0c1.139 0 2.061.937 2.061 2.092 0 1.157-.922 2.093-2.06 2.093-1.14 0-2.063-.936-2.063-2.093 0-1.155.923-2.092 2.062-2.092z" }) + ] + } + ); +}); + +exports.default = SiGooglecardboard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.d.ts new file mode 100644 index 000000000..cdab67e99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7143"; +declare const SiGooglecardboard: IconType; +export { SiGooglecardboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.mjs new file mode 100644 index 000000000..f97fecde9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecardboard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7143"; +const SiGooglecardboard = React.forwardRef(function SiGooglecardboard2({ title = "Google Cardboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.087 4.235a3.07 3.07 0 0 0-2.183.91A3.133 3.133 0 0 0 0 7.35v9.296a3.13 3.13 0 0 0 .903 2.206 3.066 3.066 0 0 0 2.184.913h4.28a3.078 3.078 0 0 0 2.713-1.645l1.209-2.276a.785.785 0 0 1 .703-.42.783.783 0 0 1 .701.42l1.21 2.276a3.08 3.08 0 0 0 2.718 1.645h4.292a3.07 3.07 0 0 0 2.184-.913A3.13 3.13 0 0 0 24 16.646V7.35c0-.825-.324-1.618-.904-2.205a3.065 3.065 0 0 0-2.183-.91zm3.495 5.656c1.138 0 2.06.937 2.06 2.092 0 1.157-.922 2.093-2.06 2.093-1.139 0-2.061-.936-2.061-2.093 0-1.155.922-2.092 2.06-2.092zm10.832 0c1.139 0 2.061.937 2.061 2.092 0 1.157-.922 2.093-2.06 2.093-1.14 0-2.063-.936-2.063-2.093 0-1.155.923-2.092 2.062-2.092z" }) + ] + } + ); +}); + +export { SiGooglecardboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.cjs new file mode 100644 index 000000000..a97c03aa9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglecast = React__namespace.forwardRef(function SiGooglecast2({ title = "Google Cast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 18.5455v3.2727h3.2727c0-1.811-1.4618-3.2727-3.2727-3.2727zm0-4.3637v2.1818c3.011 0 5.4545 2.4437 5.4545 5.4546h2.1819c0-4.2218-3.4146-7.6364-7.6364-7.6364zm0-4.3636V12c5.4218 0 9.8182 4.3964 9.8182 9.8182H12c0-6.6327-5.3782-12-12-12zm21.8182-7.6364H2.1818C.9818 2.1818 0 3.1636 0 4.3636v3.2728h2.1818V4.3636h19.6364v15.2728h-7.6364v2.1818h7.6364c1.2 0 2.1818-.9818 2.1818-2.1818V4.3636c0-1.2-.9818-2.1818-2.1818-2.1818Z" }) + ] + } + ); +}); + +exports.default = SiGooglecast; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.d.ts new file mode 100644 index 000000000..7bdb83991 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglecast: IconType; +export { SiGooglecast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.mjs new file mode 100644 index 000000000..3181945e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecast.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglecast = React.forwardRef(function SiGooglecast2({ title = "Google Cast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 18.5455v3.2727h3.2727c0-1.811-1.4618-3.2727-3.2727-3.2727zm0-4.3637v2.1818c3.011 0 5.4545 2.4437 5.4545 5.4546h2.1819c0-4.2218-3.4146-7.6364-7.6364-7.6364zm0-4.3636V12c5.4218 0 9.8182 4.3964 9.8182 9.8182H12c0-6.6327-5.3782-12-12-12zm21.8182-7.6364H2.1818C.9818 2.1818 0 3.1636 0 4.3636v3.2728h2.1818V4.3636h19.6364v15.2728h-7.6364v2.1818h7.6364c1.2 0 2.1818-.9818 2.1818-2.1818V4.3636c0-1.2-.9818-2.1818-2.1818-2.1818Z" }) + ] + } + ); +}); + +export { SiGooglecast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.cjs new file mode 100644 index 000000000..e3679e54e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34A853"; +const SiGooglechat = React__namespace.forwardRef(function SiGooglechat2({ title = "Google Chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.637 0C.733 0 0 .733 0 1.637v16.5c0 .904.733 1.636 1.637 1.636h3.955v3.323c0 .804.97 1.207 1.539.638l3.963-3.96h11.27c.903 0 1.636-.733 1.636-1.637V5.592L18.408 0Zm3.955 5.592h12.816v8.59H8.455l-2.863 2.863Z" }) + ] + } + ); +}); + +exports.default = SiGooglechat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.d.ts new file mode 100644 index 000000000..a0deb72a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34A853"; +declare const SiGooglechat: IconType; +export { SiGooglechat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.mjs new file mode 100644 index 000000000..05c581697 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34A853"; +const SiGooglechat = React.forwardRef(function SiGooglechat2({ title = "Google Chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.637 0C.733 0 0 .733 0 1.637v16.5c0 .904.733 1.636 1.637 1.636h3.955v3.323c0 .804.97 1.207 1.539.638l3.963-3.96h11.27c.903 0 1.636-.733 1.636-1.637V5.592L18.408 0Zm3.955 5.592h12.816v8.59H8.455l-2.863 2.863Z" }) + ] + } + ); +}); + +export { SiGooglechat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.cjs new file mode 100644 index 000000000..6da29df55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglechrome = React__namespace.forwardRef(function SiGooglechrome2({ title = "Google Chrome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C8.21 0 4.831 1.757 2.632 4.501l3.953 6.848A5.454 5.454 0 0 1 12 6.545h10.691A12 12 0 0 0 12 0zM1.931 5.47A11.943 11.943 0 0 0 0 12c0 6.012 4.42 10.991 10.189 11.864l3.953-6.847a5.45 5.45 0 0 1-6.865-2.29zm13.342 2.166a5.446 5.446 0 0 1 1.45 7.09l.002.001h-.002l-5.344 9.257c.206.01.413.016.621.016 6.627 0 12-5.373 12-12 0-1.54-.29-3.011-.818-4.364zM12 16.364a4.364 4.364 0 1 1 0-8.728 4.364 4.364 0 0 1 0 8.728Z" }) + ] + } + ); +}); + +exports.default = SiGooglechrome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.d.ts new file mode 100644 index 000000000..145a068a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglechrome: IconType; +export { SiGooglechrome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.mjs new file mode 100644 index 000000000..705304c28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechrome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglechrome = React.forwardRef(function SiGooglechrome2({ title = "Google Chrome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C8.21 0 4.831 1.757 2.632 4.501l3.953 6.848A5.454 5.454 0 0 1 12 6.545h10.691A12 12 0 0 0 12 0zM1.931 5.47A11.943 11.943 0 0 0 0 12c0 6.012 4.42 10.991 10.189 11.864l3.953-6.847a5.45 5.45 0 0 1-6.865-2.29zm13.342 2.166a5.446 5.446 0 0 1 1.45 7.09l.002.001h-.002l-5.344 9.257c.206.01.413.016.621.016 6.627 0 12-5.373 12-12 0-1.54-.29-3.011-.818-4.364zM12 16.364a4.364 4.364 0 1 1 0-8.728 4.364 4.364 0 0 1 0 8.728Z" }) + ] + } + ); +}); + +export { SiGooglechrome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.cjs new file mode 100644 index 000000000..e4cab234f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglechronicle = React__namespace.forwardRef(function SiGooglechronicle2({ title = "Google Chronicle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m2.719 4.812 4.812 3v4l-4.812 3Zm0 10 4.812-3v9.375l-3.914-2.389a1.875 1.875 0 0 1-.898-1.6ZM2.719 0h18.562v4.812H2.719Zm4.812 21.188 13.75-8.594v4.618c0 .626-.323 1.208-.854 1.539L12 24Z" }) + ] + } + ); +}); + +exports.default = SiGooglechronicle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.d.ts new file mode 100644 index 000000000..cc1d5799f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglechronicle: IconType; +export { SiGooglechronicle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.mjs new file mode 100644 index 000000000..d55094fbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglechronicle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglechronicle = React.forwardRef(function SiGooglechronicle2({ title = "Google Chronicle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m2.719 4.812 4.812 3v4l-4.812 3Zm0 10 4.812-3v9.375l-3.914-2.389a1.875 1.875 0 0 1-.898-1.6ZM2.719 0h18.562v4.812H2.719Zm4.812 21.188 13.75-8.594v4.618c0 .626-.323 1.208-.854 1.539L12 24Z" }) + ] + } + ); +}); + +export { SiGooglechronicle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.cjs new file mode 100644 index 000000000..84e147d1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0F9D58"; +const SiGoogleclassroom = React__namespace.forwardRef(function SiGoogleclassroom2({ title = "Google Classroom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.6367 1.6367C.7322 1.6367 0 2.369 0 3.2734v17.4532c0 .9045.7322 1.6367 1.6367 1.6367h20.7266c.9045 0 1.6367-.7322 1.6367-1.6367V3.2734c0-.9045-.7322-1.6367-1.6367-1.6367H1.6367zm.545 2.1817h19.6367v16.3632h-2.7266v-1.0898h-4.9102v1.0898h-12V3.8184zM12 8.1816c-.9046 0-1.6367.7322-1.6367 1.6368 0 .9045.7321 1.6367 1.6367 1.6367.9046 0 1.6367-.7322 1.6367-1.6367 0-.9046-.7321-1.6368-1.6367-1.6368zm-4.3633 1.9102c-.6773 0-1.2285.5493-1.2285 1.2266 0 .6772.5512 1.2265 1.2285 1.2265.6773 0 1.2266-.5493 1.2266-1.2265 0-.6773-.5493-1.2266-1.2266-1.2266zm8.7266 0c-.6773 0-1.2266.5493-1.2266 1.2266 0 .6772.5493 1.2265 1.2266 1.2265.6773 0 1.2285-.5493 1.2285-1.2265 0-.6773-.5512-1.2266-1.2285-1.2266zM12 12.5449c-1.179 0-2.4128.4012-3.1484 1.0059-.384-.1198-.8043-.1875-1.2149-.1875-1.3136 0-2.7285.695-2.7285 1.5586v.8965h14.1836v-.8965c0-.8637-1.4149-1.5586-2.7285-1.5586-.4106 0-.831.0677-1.2149.1875-.7356-.6047-1.9694-1.0059-3.1484-1.0059Z" }) + ] + } + ); +}); + +exports.default = SiGoogleclassroom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.d.ts new file mode 100644 index 000000000..ccf73ad71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0F9D58"; +declare const SiGoogleclassroom: IconType; +export { SiGoogleclassroom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.mjs new file mode 100644 index 000000000..895dcf874 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleclassroom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0F9D58"; +const SiGoogleclassroom = React.forwardRef(function SiGoogleclassroom2({ title = "Google Classroom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.6367 1.6367C.7322 1.6367 0 2.369 0 3.2734v17.4532c0 .9045.7322 1.6367 1.6367 1.6367h20.7266c.9045 0 1.6367-.7322 1.6367-1.6367V3.2734c0-.9045-.7322-1.6367-1.6367-1.6367H1.6367zm.545 2.1817h19.6367v16.3632h-2.7266v-1.0898h-4.9102v1.0898h-12V3.8184zM12 8.1816c-.9046 0-1.6367.7322-1.6367 1.6368 0 .9045.7321 1.6367 1.6367 1.6367.9046 0 1.6367-.7322 1.6367-1.6367 0-.9046-.7321-1.6368-1.6367-1.6368zm-4.3633 1.9102c-.6773 0-1.2285.5493-1.2285 1.2266 0 .6772.5512 1.2265 1.2285 1.2265.6773 0 1.2266-.5493 1.2266-1.2265 0-.6773-.5493-1.2266-1.2266-1.2266zm8.7266 0c-.6773 0-1.2266.5493-1.2266 1.2266 0 .6772.5493 1.2265 1.2266 1.2265.6773 0 1.2285-.5493 1.2285-1.2265 0-.6773-.5512-1.2266-1.2285-1.2266zM12 12.5449c-1.179 0-2.4128.4012-3.1484 1.0059-.384-.1198-.8043-.1875-1.2149-.1875-1.3136 0-2.7285.695-2.7285 1.5586v.8965h14.1836v-.8965c0-.8637-1.4149-1.5586-2.7285-1.5586-.4106 0-.831.0677-1.2149.1875-.7356-.6047-1.9694-1.0059-3.1484-1.0059Z" }) + ] + } + ); +}); + +export { SiGoogleclassroom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.cjs new file mode 100644 index 000000000..a93a3171b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglecloud = React__namespace.forwardRef(function SiGooglecloud2({ title = "Google Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.19 2.38a9.344 9.344 0 0 0-9.234 6.893c.053-.02-.055.013 0 0-3.875 2.551-3.922 8.11-.247 10.941l.006-.007-.007.03a6.717 6.717 0 0 0 4.077 1.356h5.173l.03.03h5.192c6.687.053 9.376-8.605 3.835-12.35a9.365 9.365 0 0 0-2.821-4.552l-.043.043.006-.05A9.344 9.344 0 0 0 12.19 2.38zm-.358 4.146c1.244-.04 2.518.368 3.486 1.15a5.186 5.186 0 0 1 1.862 4.078v.518c3.53-.07 3.53 5.262 0 5.193h-5.193l-.008.009v-.04H6.785a2.59 2.59 0 0 1-1.067-.23h.001a2.597 2.597 0 1 1 3.437-3.437l3.013-3.012A6.747 6.747 0 0 0 8.11 8.24c.018-.01.04-.026.054-.023a5.186 5.186 0 0 1 3.67-1.69z" }) + ] + } + ); +}); + +exports.default = SiGooglecloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.d.ts new file mode 100644 index 000000000..7f408de55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglecloud: IconType; +export { SiGooglecloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.mjs new file mode 100644 index 000000000..5bdc4e73e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglecloud = React.forwardRef(function SiGooglecloud2({ title = "Google Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.19 2.38a9.344 9.344 0 0 0-9.234 6.893c.053-.02-.055.013 0 0-3.875 2.551-3.922 8.11-.247 10.941l.006-.007-.007.03a6.717 6.717 0 0 0 4.077 1.356h5.173l.03.03h5.192c6.687.053 9.376-8.605 3.835-12.35a9.365 9.365 0 0 0-2.821-4.552l-.043.043.006-.05A9.344 9.344 0 0 0 12.19 2.38zm-.358 4.146c1.244-.04 2.518.368 3.486 1.15a5.186 5.186 0 0 1 1.862 4.078v.518c3.53-.07 3.53 5.262 0 5.193h-5.193l-.008.009v-.04H6.785a2.59 2.59 0 0 1-1.067-.23h.001a2.597 2.597 0 1 1 3.437-3.437l3.013-3.012A6.747 6.747 0 0 0 8.11 8.24c.018-.01.04-.026.054-.023a5.186 5.186 0 0 1 3.67-1.69z" }) + ] + } + ); +}); + +export { SiGooglecloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.cjs new file mode 100644 index 000000000..29be39f48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglecloudcomposer = React__namespace.forwardRef(function SiGooglecloudcomposer2({ title = "Google Cloud Composer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.636 4.752h-6.42V0h17.556v4.728h-6.36v6.396H9.636V4.752zm-6.42 1.692h4.74v6.36h6.408V24H9.636v-6.42h-6.42V6.444zm12.84-.012h4.728V24h-4.728V6.432zM7.92 24H3.216v-4.728H7.92V24z" }) + ] + } + ); +}); + +exports.default = SiGooglecloudcomposer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.d.ts new file mode 100644 index 000000000..d240491b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglecloudcomposer: IconType; +export { SiGooglecloudcomposer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.mjs new file mode 100644 index 000000000..056760251 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudcomposer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglecloudcomposer = React.forwardRef(function SiGooglecloudcomposer2({ title = "Google Cloud Composer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.636 4.752h-6.42V0h17.556v4.728h-6.36v6.396H9.636V4.752zm-6.42 1.692h4.74v6.36h6.408V24H9.636v-6.42h-6.42V6.444zm12.84-.012h4.728V24h-4.728V6.432zM7.92 24H3.216v-4.728H7.92V24z" }) + ] + } + ); +}); + +export { SiGooglecloudcomposer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.cjs new file mode 100644 index 000000000..0c20063ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglecloudspanner = React__namespace.forwardRef(function SiGooglecloudspanner2({ title = "Google Cloud Spanner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 9.06 7.944 6.864V2.388L10.38.924v3.66l1.62.744 1.62-.744V.924l2.436 1.464v4.476L12 9.06zm-8.124 4.752L0 16.056v2.988l3.228-1.86 1.404.912.096 1.632-3.24 1.872 2.616 1.476 3.828-2.268-.132-4.596-3.924-2.4zm9.732-.9V8.758l-1.37.742-.238.129-.238-.13-1.37-.741v4.154l-3.613 2.09 1.282.783.231.142.008.27.046 1.612L12 15.696l3.595 2.079.045-1.59.008-.27.231-.142 1.301-.795-3.572-2.066zm7.164 4.272L24 19.044v-2.988L20.064 13.8l-3.924 2.4-.132 4.596 3.888 2.244 2.616-1.44-3.24-1.836.096-1.668 1.404-.912z" }) + ] + } + ); +}); + +exports.default = SiGooglecloudspanner; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.d.ts new file mode 100644 index 000000000..02c7e177f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglecloudspanner: IconType; +export { SiGooglecloudspanner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.mjs new file mode 100644 index 000000000..40ca27f19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudspanner.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglecloudspanner = React.forwardRef(function SiGooglecloudspanner2({ title = "Google Cloud Spanner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 9.06 7.944 6.864V2.388L10.38.924v3.66l1.62.744 1.62-.744V.924l2.436 1.464v4.476L12 9.06zm-8.124 4.752L0 16.056v2.988l3.228-1.86 1.404.912.096 1.632-3.24 1.872 2.616 1.476 3.828-2.268-.132-4.596-3.924-2.4zm9.732-.9V8.758l-1.37.742-.238.129-.238-.13-1.37-.741v4.154l-3.613 2.09 1.282.783.231.142.008.27.046 1.612L12 15.696l3.595 2.079.045-1.59.008-.27.231-.142 1.301-.795-3.572-2.066zm7.164 4.272L24 19.044v-2.988L20.064 13.8l-3.924 2.4-.132 4.596 3.888 2.244 2.616-1.44-3.24-1.836.096-1.668 1.404-.912z" }) + ] + } + ); +}); + +export { SiGooglecloudspanner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.cjs new file mode 100644 index 000000000..f1ea5601c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AECBFA"; +const SiGooglecloudstorage = React__namespace.forwardRef(function SiGooglecloudstorage2({ title = "Google Cloud Storage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 2.4v8.4h-2.4V2.4H24zM0 10.8h2.4V2.4H0v8.4zm3-8.4h18v8.4H3V2.4zm12.6 4.2a1.8 1.8 0 1 0 3.6 0 1.8 1.8 0 0 0-3.6 0zm-10.8.6H12V6H4.8v1.2zm16.8 14.4H24v-8.4h-2.4v8.4zM0 21.6h2.4v-8.4H0v8.4zm3-8.4h18v8.4H3v-8.4zm12.6 4.2a1.8 1.8 0 1 0 3.6 0 1.8 1.8 0 0 0-3.6 0zM4.8 18H12v-1.2H4.8V18z" }) + ] + } + ); +}); + +exports.default = SiGooglecloudstorage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.d.ts new file mode 100644 index 000000000..737a85931 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AECBFA"; +declare const SiGooglecloudstorage: IconType; +export { SiGooglecloudstorage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.mjs new file mode 100644 index 000000000..b2ea7543c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecloudstorage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AECBFA"; +const SiGooglecloudstorage = React.forwardRef(function SiGooglecloudstorage2({ title = "Google Cloud Storage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 2.4v8.4h-2.4V2.4H24zM0 10.8h2.4V2.4H0v8.4zm3-8.4h18v8.4H3V2.4zm12.6 4.2a1.8 1.8 0 1 0 3.6 0 1.8 1.8 0 0 0-3.6 0zm-10.8.6H12V6H4.8v1.2zm16.8 14.4H24v-8.4h-2.4v8.4zM0 21.6h2.4v-8.4H0v8.4zm3-8.4h18v8.4H3v-8.4zm12.6 4.2a1.8 1.8 0 1 0 3.6 0 1.8 1.8 0 0 0-3.6 0zM4.8 18H12v-1.2H4.8V18z" }) + ] + } + ); +}); + +export { SiGooglecloudstorage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.cjs new file mode 100644 index 000000000..f93d39e85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9AB00"; +const SiGooglecolab = React__namespace.forwardRef(function SiGooglecolab2({ title = "Google Colab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.9414 4.9757a7.033 7.033 0 0 0-4.9308 2.0646 7.033 7.033 0 0 0-.1232 9.8068l2.395-2.395a3.6455 3.6455 0 0 1 5.1497-5.1478l2.397-2.3989a7.033 7.033 0 0 0-4.8877-1.9297zM7.07 4.9855a7.033 7.033 0 0 0-4.8878 1.9316l2.3911 2.3911a3.6434 3.6434 0 0 1 5.0227.1271l1.7341-2.9737-.0997-.0802A7.033 7.033 0 0 0 7.07 4.9855zm15.0093 2.1721l-2.3892 2.3911a3.6455 3.6455 0 0 1-5.1497 5.1497l-2.4067 2.4068a7.0362 7.0362 0 0 0 9.9456-9.9476zM1.932 7.1674a7.033 7.033 0 0 0-.002 9.6816l2.397-2.397a3.6434 3.6434 0 0 1-.004-4.8916zm7.664 7.4235c-1.38 1.3816-3.5863 1.411-5.0168.1134l-2.397 2.395c2.4693 2.3328 6.263 2.5753 9.0072.5455l.1368-.1115z" }) + ] + } + ); +}); + +exports.default = SiGooglecolab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.d.ts new file mode 100644 index 000000000..035159021 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9AB00"; +declare const SiGooglecolab: IconType; +export { SiGooglecolab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.mjs new file mode 100644 index 000000000..86bfee00e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecolab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9AB00"; +const SiGooglecolab = React.forwardRef(function SiGooglecolab2({ title = "Google Colab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.9414 4.9757a7.033 7.033 0 0 0-4.9308 2.0646 7.033 7.033 0 0 0-.1232 9.8068l2.395-2.395a3.6455 3.6455 0 0 1 5.1497-5.1478l2.397-2.3989a7.033 7.033 0 0 0-4.8877-1.9297zM7.07 4.9855a7.033 7.033 0 0 0-4.8878 1.9316l2.3911 2.3911a3.6434 3.6434 0 0 1 5.0227.1271l1.7341-2.9737-.0997-.0802A7.033 7.033 0 0 0 7.07 4.9855zm15.0093 2.1721l-2.3892 2.3911a3.6455 3.6455 0 0 1-5.1497 5.1497l-2.4067 2.4068a7.0362 7.0362 0 0 0 9.9456-9.9476zM1.932 7.1674a7.033 7.033 0 0 0-.002 9.6816l2.397-2.397a3.6434 3.6434 0 0 1-.004-4.8916zm7.664 7.4235c-1.38 1.3816-3.5863 1.411-5.0168.1134l-2.397 2.395c2.4693 2.3328 6.263 2.5753 9.0072.5455l.1368-.1115z" }) + ] + } + ); +}); + +export { SiGooglecolab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.cjs new file mode 100644 index 000000000..1da2aa55c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglecontaineroptimizedos = React__namespace.forwardRef(function SiGooglecontaineroptimizedos2({ title = "Google Container Optimized OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 21.6a9.6 9.6 0 0 1-5.016-1.416L11.28 17.7v-5.4L6.612 9.6v5.424l3.3 1.908-4.152 2.4A9.6 9.6 0 0 1 7.296 3.6v4.8L12 11.136 16.68 8.4 12 5.724 8.688 7.632V2.964a9.6 9.6 0 0 1 12.372 5.64A9.72 9.72 0 0 1 21.672 12v.084L17.352 9.6l-4.68 2.712v5.412l4.68-2.7v-3.816l4.14 2.4A9.6 9.6 0 0 1 12 21.6z" }) + ] + } + ); +}); + +exports.default = SiGooglecontaineroptimizedos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.d.ts new file mode 100644 index 000000000..034c0686a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglecontaineroptimizedos: IconType; +export { SiGooglecontaineroptimizedos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.mjs new file mode 100644 index 000000000..8f48de799 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglecontaineroptimizedos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglecontaineroptimizedos = React.forwardRef(function SiGooglecontaineroptimizedos2({ title = "Google Container Optimized OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 21.6a9.6 9.6 0 0 1-5.016-1.416L11.28 17.7v-5.4L6.612 9.6v5.424l3.3 1.908-4.152 2.4A9.6 9.6 0 0 1 7.296 3.6v4.8L12 11.136 16.68 8.4 12 5.724 8.688 7.632V2.964a9.6 9.6 0 0 1 12.372 5.64A9.72 9.72 0 0 1 21.672 12v.084L17.352 9.6l-4.68 2.712v5.412l4.68-2.7v-3.816l4.14 2.4A9.6 9.6 0 0 1 12 21.6z" }) + ] + } + ); +}); + +export { SiGooglecontaineroptimizedos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.cjs new file mode 100644 index 000000000..3973cd62e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AECBFA"; +const SiGoogledataflow = React__namespace.forwardRef(function SiGoogledataflow2({ title = "Google Dataflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.856 9.6 3.72 9.564l.036-2.46 6.312-3.516L5.94 1.14 8.028 0l4.092 2.436h.012L16.284.108h.06l1.992 1.188-4.188 2.352 6.168 3.684v2.46l-2.124-.036.012-1.284L13.116 5.4l-.024 2.076-1.224-.012v-.0022l-.84-.0098.024-2.076-5.172 2.94L5.856 9.6zm12.252 6.072-5.16 2.94.024-2.064-2.064-.024-.024 2.064-5.1-3.072.012-1.248H3.684v2.4l6.168 3.684 2.0111 1.1971.005.0149L15.972 24h.06l2.028-1.14-4.128-2.448-.02.0111.008-.0231 6.324-3.516.036-2.508-2.148-.024-.024 1.32zM5.664 22.704l1.992 1.188h.06l4.152-2.328-2.016-1.212-4.188 2.352zm13.68-12.024c-.7555 0-1.368.6125-1.368 1.368 0 .7555.6125 1.368 1.368 1.368.7556 0 1.368-.6125 1.368-1.368 0-.7555-.6124-1.368-1.368-1.368zM4.656 13.224c.7555 0 1.368-.6125 1.368-1.368 0-.7556-.6125-1.368-1.368-1.368-.7556 0-1.368.6124-1.368 1.368 0 .7555.6124 1.368 1.368 1.368zm7.416-5.004c-.7555 0-1.368.6125-1.368 1.368 0 .7556.6125 1.368 1.368 1.368s1.368-.6124 1.368-1.368c0-.7555-.6125-1.368-1.368-1.368zm-.108 4.812c-.7555 0-1.368.6125-1.368 1.368s.6125 1.368 1.368 1.368c.7555 0 1.368-.6125 1.368-1.368s-.6125-1.368-1.368-1.368z" }) + ] + } + ); +}); + +exports.default = SiGoogledataflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.d.ts new file mode 100644 index 000000000..5bb3d413d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AECBFA"; +declare const SiGoogledataflow: IconType; +export { SiGoogledataflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.mjs new file mode 100644 index 000000000..3c488f40b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AECBFA"; +const SiGoogledataflow = React.forwardRef(function SiGoogledataflow2({ title = "Google Dataflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.856 9.6 3.72 9.564l.036-2.46 6.312-3.516L5.94 1.14 8.028 0l4.092 2.436h.012L16.284.108h.06l1.992 1.188-4.188 2.352 6.168 3.684v2.46l-2.124-.036.012-1.284L13.116 5.4l-.024 2.076-1.224-.012v-.0022l-.84-.0098.024-2.076-5.172 2.94L5.856 9.6zm12.252 6.072-5.16 2.94.024-2.064-2.064-.024-.024 2.064-5.1-3.072.012-1.248H3.684v2.4l6.168 3.684 2.0111 1.1971.005.0149L15.972 24h.06l2.028-1.14-4.128-2.448-.02.0111.008-.0231 6.324-3.516.036-2.508-2.148-.024-.024 1.32zM5.664 22.704l1.992 1.188h.06l4.152-2.328-2.016-1.212-4.188 2.352zm13.68-12.024c-.7555 0-1.368.6125-1.368 1.368 0 .7555.6125 1.368 1.368 1.368.7556 0 1.368-.6125 1.368-1.368 0-.7555-.6124-1.368-1.368-1.368zM4.656 13.224c.7555 0 1.368-.6125 1.368-1.368 0-.7556-.6125-1.368-1.368-1.368-.7556 0-1.368.6124-1.368 1.368 0 .7555.6124 1.368 1.368 1.368zm7.416-5.004c-.7555 0-1.368.6125-1.368 1.368 0 .7556.6125 1.368 1.368 1.368s1.368-.6124 1.368-1.368c0-.7555-.6125-1.368-1.368-1.368zm-.108 4.812c-.7555 0-1.368.6125-1.368 1.368s.6125 1.368 1.368 1.368c.7555 0 1.368-.6125 1.368-1.368s-.6125-1.368-1.368-1.368z" }) + ] + } + ); +}); + +export { SiGoogledataflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.cjs new file mode 100644 index 000000000..61f6ed9fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AECBFA"; +const SiGoogledataproc = React__namespace.forwardRef(function SiGoogledataproc2({ title = "Google Dataproc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.373 20.364a4.682 4.682 0 0 1-8.1 0 4.694 4.694 0 0 1 0-4.669c.326-.564.778-.995 1.272-1.358.472.198 3.394 1.421 3.917 1.717a2.291 2.291 0 0 0-3.109.842 2.304 2.304 0 0 0 0 2.267 2.267 2.267 0 0 0 2.564 1.053 2.254 2.254 0 0 0 1.375-1.053 2.328 2.328 0 0 0 0-2.279 2.478 2.478 0 0 0-.83-.83l-3.53-2.045-5.727-3.317a5.022 5.022 0 0 0 4.139-.36l6.32 3.641a4.682 4.682 0 0 1 1.709 6.391zm-14-2.01v.004l-3.558 2a2.27 2.27 0 0 1-3.102-.823 2.267 2.267 0 0 1 2.551-3.332c.591.161 1.089.56 1.375 1.102v-.05a2.27 2.27 0 0 1-.824 3.103c.559-.303 3.352-2.62 3.465-2.714-.304-1.744-1.573-3.24-3.396-3.72a4.608 4.608 0 0 0-3.558.479 4.67 4.67 0 0 0-1.694 6.383 4.682 4.682 0 0 0 2.865 2.192 4.657 4.657 0 0 0 3.66-.56l6.877-3.973c-.019-1.303.512-2.604 1.375-3.58l-6.036 3.49zm-2.4-4.703v-8.1h.012c.002-1.617.821-3.189 2.321-4.055a4.682 4.682 0 1 1 2.337 8.737 4.678 4.678 0 0 1-1.55-.28c-.016-.085-.733-3.796-.733-4.188L9.29 9.59v6.761a4.075 4.075 0 0 0-2.317-2.7zm2.403-8.1a2.279 2.279 0 1 0 4.546 0 2.23 2.23 0 0 0-.297-1.127 2.279 2.279 0 0 0-1.97-1.14 2.267 2.267 0 0 0-2.279 2.254v.013z" }) + ] + } + ); +}); + +exports.default = SiGoogledataproc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.d.ts new file mode 100644 index 000000000..5dfe9ce2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AECBFA"; +declare const SiGoogledataproc: IconType; +export { SiGoogledataproc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.mjs new file mode 100644 index 000000000..3a35b851b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledataproc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AECBFA"; +const SiGoogledataproc = React.forwardRef(function SiGoogledataproc2({ title = "Google Dataproc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.373 20.364a4.682 4.682 0 0 1-8.1 0 4.694 4.694 0 0 1 0-4.669c.326-.564.778-.995 1.272-1.358.472.198 3.394 1.421 3.917 1.717a2.291 2.291 0 0 0-3.109.842 2.304 2.304 0 0 0 0 2.267 2.267 2.267 0 0 0 2.564 1.053 2.254 2.254 0 0 0 1.375-1.053 2.328 2.328 0 0 0 0-2.279 2.478 2.478 0 0 0-.83-.83l-3.53-2.045-5.727-3.317a5.022 5.022 0 0 0 4.139-.36l6.32 3.641a4.682 4.682 0 0 1 1.709 6.391zm-14-2.01v.004l-3.558 2a2.27 2.27 0 0 1-3.102-.823 2.267 2.267 0 0 1 2.551-3.332c.591.161 1.089.56 1.375 1.102v-.05a2.27 2.27 0 0 1-.824 3.103c.559-.303 3.352-2.62 3.465-2.714-.304-1.744-1.573-3.24-3.396-3.72a4.608 4.608 0 0 0-3.558.479 4.67 4.67 0 0 0-1.694 6.383 4.682 4.682 0 0 0 2.865 2.192 4.657 4.657 0 0 0 3.66-.56l6.877-3.973c-.019-1.303.512-2.604 1.375-3.58l-6.036 3.49zm-2.4-4.703v-8.1h.012c.002-1.617.821-3.189 2.321-4.055a4.682 4.682 0 1 1 2.337 8.737 4.678 4.678 0 0 1-1.55-.28c-.016-.085-.733-3.796-.733-4.188L9.29 9.59v6.761a4.075 4.075 0 0 0-2.317-2.7zm2.403-8.1a2.279 2.279 0 1 0 4.546 0 2.23 2.23 0 0 0-.297-1.127 2.279 2.279 0 0 0-1.97-1.14 2.267 2.267 0 0 0-2.279 2.254v.013z" }) + ] + } + ); +}); + +export { SiGoogledataproc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.cjs new file mode 100644 index 000000000..3bde2dab4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34A853"; +const SiGoogledisplayandvideo360 = React__namespace.forwardRef(function SiGoogledisplayandvideo3602({ title = "Google Display & Video 360", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.421.01a2.947 2.947 0 0 0-2.828 1.52 2.967 2.967 0 0 0 1.094 4.076l10.6 6.064 4.79-2.672a3.546 3.546 0 0 1 1.811-.443L5.701.424A2.947 2.947 0 0 0 4.42.01ZM1.164 4.768v14.484a3.474 3.474 0 0 1 2.972-1.687 3.47 3.47 0 0 1 2.961 1.672l.004-10.53L2.44 6.04a3.433 3.433 0 0 1-1.275-1.271Zm18.42 4.289a3.08 3.08 0 0 0-1.264.379L7.6 15.414c.003 1.873-.011 3.745.003 5.617 0 .4-.072.988-.396 1.606l12.548-7.227 1.487-.83a2.978 2.978 0 0 0 1.463-3.511 3.08 3.08 0 0 0-3.121-2.012ZM4.136 18.065A2.967 2.967 0 1 0 4.134 24a2.967 2.967 0 0 0 .002-5.935z" }) + ] + } + ); +}); + +exports.default = SiGoogledisplayandvideo360; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.d.ts new file mode 100644 index 000000000..e9f6b2761 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34A853"; +declare const SiGoogledisplayandvideo360: IconType; +export { SiGoogledisplayandvideo360 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.mjs new file mode 100644 index 000000000..b5c7315dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledisplayandvideo360.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34A853"; +const SiGoogledisplayandvideo360 = React.forwardRef(function SiGoogledisplayandvideo3602({ title = "Google Display & Video 360", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.421.01a2.947 2.947 0 0 0-2.828 1.52 2.967 2.967 0 0 0 1.094 4.076l10.6 6.064 4.79-2.672a3.546 3.546 0 0 1 1.811-.443L5.701.424A2.947 2.947 0 0 0 4.42.01ZM1.164 4.768v14.484a3.474 3.474 0 0 1 2.972-1.687 3.47 3.47 0 0 1 2.961 1.672l.004-10.53L2.44 6.04a3.433 3.433 0 0 1-1.275-1.271Zm18.42 4.289a3.08 3.08 0 0 0-1.264.379L7.6 15.414c.003 1.873-.011 3.745.003 5.617 0 .4-.072.988-.396 1.606l12.548-7.227 1.487-.83a2.978 2.978 0 0 0 1.463-3.511 3.08 3.08 0 0 0-3.121-2.012ZM4.136 18.065A2.967 2.967 0 1 0 4.134 24a2.967 2.967 0 0 0 .002-5.935z" }) + ] + } + ); +}); + +export { SiGoogledisplayandvideo360 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.cjs new file mode 100644 index 000000000..9f76cb9c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogledocs = React__namespace.forwardRef(function SiGoogledocs2({ title = "Google Docs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.727 6.727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zm-.545 10.455H7.09v-1.364h7.09v1.364zm2.727-3.273H7.091v-1.364h9.818v1.364zm0-3.273H7.091V9.273h9.818v1.363zM14.727 6h6l-6-6v6z" }) + ] + } + ); +}); + +exports.default = SiGoogledocs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.d.ts new file mode 100644 index 000000000..b2d7bc964 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogledocs: IconType; +export { SiGoogledocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.mjs new file mode 100644 index 000000000..b6e3a2fe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledocs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogledocs = React.forwardRef(function SiGoogledocs2({ title = "Google Docs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.727 6.727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zm-.545 10.455H7.09v-1.364h7.09v1.364zm2.727-3.273H7.091v-1.364h9.818v1.364zm0-3.273H7.091V9.273h9.818v1.363zM14.727 6h6l-6-6v6z" }) + ] + } + ); +}); + +export { SiGoogledocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.cjs new file mode 100644 index 000000000..db76bd2a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogledrive = React__namespace.forwardRef(function SiGoogledrive2({ title = "Google Drive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.01 1.485c-2.082 0-3.754.02-3.743.047.01.02 1.708 3.001 3.774 6.62l3.76 6.574h3.76c2.081 0 3.753-.02 3.742-.047-.005-.02-1.708-3.001-3.775-6.62l-3.76-6.574zm-4.76 1.73a789.828 789.861 0 0 0-3.63 6.319L0 15.868l1.89 3.298 1.885 3.297 3.62-6.335 3.618-6.33-1.88-3.287C8.1 4.704 7.255 3.22 7.25 3.214zm2.259 12.653-.203.348c-.114.198-.96 1.672-1.88 3.287a423.93 423.948 0 0 1-1.698 2.97c-.01.026 3.24.042 7.222.042h7.244l1.796-3.157c.992-1.734 1.85-3.23 1.906-3.323l.104-.167h-7.249z" }) + ] + } + ); +}); + +exports.default = SiGoogledrive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.d.ts new file mode 100644 index 000000000..6940a3bc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogledrive: IconType; +export { SiGoogledrive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.mjs new file mode 100644 index 000000000..03900762c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogledrive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogledrive = React.forwardRef(function SiGoogledrive2({ title = "Google Drive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.01 1.485c-2.082 0-3.754.02-3.743.047.01.02 1.708 3.001 3.774 6.62l3.76 6.574h3.76c2.081 0 3.753-.02 3.742-.047-.005-.02-1.708-3.001-3.775-6.62l-3.76-6.574zm-4.76 1.73a789.828 789.861 0 0 0-3.63 6.319L0 15.868l1.89 3.298 1.885 3.297 3.62-6.335 3.618-6.33-1.88-3.287C8.1 4.704 7.255 3.22 7.25 3.214zm2.259 12.653-.203.348c-.114.198-.96 1.672-1.88 3.287a423.93 423.948 0 0 1-1.698 2.97c-.01.026 3.24.042 7.222.042h7.244l1.796-3.157c.992-1.734 1.85-3.23 1.906-3.323l.104-.167h-7.249z" }) + ] + } + ); +}); + +export { SiGoogledrive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.cjs new file mode 100644 index 000000000..7462b07e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleearth = React__namespace.forwardRef(function SiGoogleearth2({ title = "Google Earth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-1.326 0-2.597.22-3.787.613 4.94-1.243 8.575 1.72 11.096 5.606 1.725 2.695 2.813 2.83 4.207 2.412A11.956 11.956 0 0012 0zM7.658 2.156c-1.644.019-3.295.775-4.931 2.207A11.967 11.967 0 000 12c.184-2.823 2.163-5.128 4.87-5.07 2.104.044 4.648 1.518 7.13 5.289 4.87 7.468 10.917 5.483 11.863 1.51.081-.566.137-1.14.137-1.729 0-.176-.02-.347-.027-.521-1.645 1.725-4.899 2.35-8.264-2.97-2.59-4.363-5.31-6.383-8.05-6.353zM3.33 13.236c-1.675.13-2.657 1.804-2.242 3.756A11.955 11.955 0 0012 24c4.215 0 7.898-2.149 10.037-5.412v-.043c-2.836 3.49-8.946 4.255-13.855-2.182-1.814-2.386-3.544-3.228-4.852-3.127Z" }) + ] + } + ); +}); + +exports.default = SiGoogleearth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.d.ts new file mode 100644 index 000000000..e77281b84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleearth: IconType; +export { SiGoogleearth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.mjs new file mode 100644 index 000000000..50dd5998d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleearth = React.forwardRef(function SiGoogleearth2({ title = "Google Earth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-1.326 0-2.597.22-3.787.613 4.94-1.243 8.575 1.72 11.096 5.606 1.725 2.695 2.813 2.83 4.207 2.412A11.956 11.956 0 0012 0zM7.658 2.156c-1.644.019-3.295.775-4.931 2.207A11.967 11.967 0 000 12c.184-2.823 2.163-5.128 4.87-5.07 2.104.044 4.648 1.518 7.13 5.289 4.87 7.468 10.917 5.483 11.863 1.51.081-.566.137-1.14.137-1.729 0-.176-.02-.347-.027-.521-1.645 1.725-4.899 2.35-8.264-2.97-2.59-4.363-5.31-6.383-8.05-6.353zM3.33 13.236c-1.675.13-2.657 1.804-2.242 3.756A11.955 11.955 0 0012 24c4.215 0 7.898-2.149 10.037-5.412v-.043c-2.836 3.49-8.946 4.255-13.855-2.182-1.814-2.386-3.544-3.228-4.852-3.127Z" }) + ] + } + ); +}); + +export { SiGoogleearth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.cjs new file mode 100644 index 000000000..a0fb43d7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogleearthengine = React__namespace.forwardRef(function SiGoogleearthengine2({ title = "Google Earth Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.853.717a1.19 1.19 0 00-.65.17L4.53 2.49c-.53.317-.732.984-.467 1.543l.93 1.958a9.217 9.217 0 00-1.745 3.076l-2.124.135A1.198 1.198 0 000 10.399v3.116a1.2 1.2 0 001.084 1.194l2.171.21a9.207 9.207 0 001.748 3.066l-.941 1.982a1.198 1.198 0 00.467 1.543l2.673 1.603a1.2 1.2 0 001.605-.347l1.22-1.771a9.22 9.22 0 001.971.216c.032 0 .064-.004.096-.004a9.245 9.245 0 001.876-.212l1.22 1.77a1.2 1.2 0 001.606.348l2.673-1.603c.53-.317.732-.984.467-1.543l-.941-1.982c.022-.025.048-.049.07-.076.066-.077.125-.159.188-.238a9.225 9.225 0 001.484-2.736l2.138-.137A1.198 1.198 0 0024 13.601v-3.116a1.2 1.2 0 00-1.084-1.194V9.29l-2.16-.21a9.182 9.182 0 00-1.501-2.786c-.063-.08-.124-.16-.19-.238-.018-.022-.039-.043-.058-.065l.93-1.958a1.198 1.198 0 00-.467-1.543L16.797.887a1.2 1.2 0 00-1.605.347L13.99 2.976a9.169 9.169 0 00-1.896-.219c-.033 0-.064-.004-.096-.004a9.2 9.2 0 00-1.992.223L8.808 1.234a1.2 1.2 0 00-.955-.517zm4.148 3.882c.574 0 1.13.072 1.668.197a7.41 7.41 0 015.384 4.993 7.36 7.36 0 01.332 2.193c0 .764-.116 1.5-.332 2.193a7.407 7.407 0 01-5.384 4.992 7.393 7.393 0 01-1.668.199c-4.071 0-7.384-3.313-7.384-7.384 0-4.07 3.313-7.383 7.384-7.383zM11.907 6C9.558 6 8.429 7.207 8.429 7.207c3.501-1.577 5.23 2.986 6.702 4.386 1.472 1.4 2.887.203 2.887.203-.012-.787-.252-1.533-.252-1.533-.968.168-1.398-.494-1.97-1.252C15.224 8.253 13.561 6 11.907 6zm-3.84 3.228c-.705.015-1.3.35-1.653 1-.868 1.601-.096 3.64-.096 3.64s.3-1.532 1.537-1.309c1.238.224 1.754 1.208 2.504 1.985.75.776 1.895 2.064 3.978 2.064 2.082 0 3.018-1.516 3.435-2.937v-.002l-.053.04c-1.265.98-3.335.882-4.548-.275-.89-.846-1.403-1.908-2.135-2.68-.981-1.038-2.065-1.545-2.97-1.526z" }) + ] + } + ); +}); + +exports.default = SiGoogleearthengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.d.ts new file mode 100644 index 000000000..24e5bd262 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogleearthengine: IconType; +export { SiGoogleearthengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.mjs new file mode 100644 index 000000000..5a33fe7ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleearthengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogleearthengine = React.forwardRef(function SiGoogleearthengine2({ title = "Google Earth Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.853.717a1.19 1.19 0 00-.65.17L4.53 2.49c-.53.317-.732.984-.467 1.543l.93 1.958a9.217 9.217 0 00-1.745 3.076l-2.124.135A1.198 1.198 0 000 10.399v3.116a1.2 1.2 0 001.084 1.194l2.171.21a9.207 9.207 0 001.748 3.066l-.941 1.982a1.198 1.198 0 00.467 1.543l2.673 1.603a1.2 1.2 0 001.605-.347l1.22-1.771a9.22 9.22 0 001.971.216c.032 0 .064-.004.096-.004a9.245 9.245 0 001.876-.212l1.22 1.77a1.2 1.2 0 001.606.348l2.673-1.603c.53-.317.732-.984.467-1.543l-.941-1.982c.022-.025.048-.049.07-.076.066-.077.125-.159.188-.238a9.225 9.225 0 001.484-2.736l2.138-.137A1.198 1.198 0 0024 13.601v-3.116a1.2 1.2 0 00-1.084-1.194V9.29l-2.16-.21a9.182 9.182 0 00-1.501-2.786c-.063-.08-.124-.16-.19-.238-.018-.022-.039-.043-.058-.065l.93-1.958a1.198 1.198 0 00-.467-1.543L16.797.887a1.2 1.2 0 00-1.605.347L13.99 2.976a9.169 9.169 0 00-1.896-.219c-.033 0-.064-.004-.096-.004a9.2 9.2 0 00-1.992.223L8.808 1.234a1.2 1.2 0 00-.955-.517zm4.148 3.882c.574 0 1.13.072 1.668.197a7.41 7.41 0 015.384 4.993 7.36 7.36 0 01.332 2.193c0 .764-.116 1.5-.332 2.193a7.407 7.407 0 01-5.384 4.992 7.393 7.393 0 01-1.668.199c-4.071 0-7.384-3.313-7.384-7.384 0-4.07 3.313-7.383 7.384-7.383zM11.907 6C9.558 6 8.429 7.207 8.429 7.207c3.501-1.577 5.23 2.986 6.702 4.386 1.472 1.4 2.887.203 2.887.203-.012-.787-.252-1.533-.252-1.533-.968.168-1.398-.494-1.97-1.252C15.224 8.253 13.561 6 11.907 6zm-3.84 3.228c-.705.015-1.3.35-1.653 1-.868 1.601-.096 3.64-.096 3.64s.3-1.532 1.537-1.309c1.238.224 1.754 1.208 2.504 1.985.75.776 1.895 2.064 3.978 2.064 2.082 0 3.018-1.516 3.435-2.937v-.002l-.053.04c-1.265.98-3.335.882-4.548-.275-.89-.846-1.403-1.908-2.135-2.68-.981-1.038-2.065-1.545-2.97-1.526z" }) + ] + } + ); +}); + +export { SiGoogleearthengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.cjs new file mode 100644 index 000000000..d2b1a35a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglefonts = React__namespace.forwardRef(function SiGooglefonts2({ title = "Google Fonts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 2.8A3.6 3.6 0 1 0 4 10a3.6 3.6 0 0 0 0-7.2zm7.6 0v18.4h7.2a5.2 5.2 0 1 1 0-10.4 4 4 0 1 1 0-8zm7.2 0v8a4 4 0 1 0 0-8zm0 8v10.4A5.2 5.2 0 0 0 24 16a5.2 5.2 0 0 0-5.2-5.2zm-7.7-7.206L0 21.199h8.8l2.3-3.64Z" }) + ] + } + ); +}); + +exports.default = SiGooglefonts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.d.ts new file mode 100644 index 000000000..98a5455c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglefonts: IconType; +export { SiGooglefonts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.mjs new file mode 100644 index 000000000..bddc3a01f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglefonts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglefonts = React.forwardRef(function SiGooglefonts2({ title = "Google Fonts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4 2.8A3.6 3.6 0 1 0 4 10a3.6 3.6 0 0 0 0-7.2zm7.6 0v18.4h7.2a5.2 5.2 0 1 1 0-10.4 4 4 0 1 1 0-8zm7.2 0v8a4 4 0 1 0 0-8zm0 8v10.4A5.2 5.2 0 0 0 24 16a5.2 5.2 0 0 0-5.2-5.2zm-7.7-7.206L0 21.199h8.8l2.3-3.64Z" }) + ] + } + ); +}); + +export { SiGooglefonts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.cjs new file mode 100644 index 000000000..ab6815065 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7248B9"; +const SiGoogleforms = React__namespace.forwardRef(function SiGoogleforms2({ title = "Google Forms", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.727 6h6l-6-6v6zm0 .727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zM7.91 17.318a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm0-3.273a.819.819 0 1 1 .001-1.637.819.819 0 0 1 0 1.637zm0-3.272a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm9 6.409h-6.818v-1.364h6.818v1.364zm0-3.273h-6.818v-1.364h6.818v1.364zm0-3.273h-6.818V9.273h6.818v1.363z" }) + ] + } + ); +}); + +exports.default = SiGoogleforms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.d.ts new file mode 100644 index 000000000..2995c57c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7248B9"; +declare const SiGoogleforms: IconType; +export { SiGoogleforms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.mjs new file mode 100644 index 000000000..0a67e6c26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleforms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7248B9"; +const SiGoogleforms = React.forwardRef(function SiGoogleforms2({ title = "Google Forms", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.727 6h6l-6-6v6zm0 .727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zM7.91 17.318a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm0-3.273a.819.819 0 1 1 .001-1.637.819.819 0 0 1 0 1.637zm0-3.272a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm9 6.409h-6.818v-1.364h6.818v1.364zm0-3.273h-6.818v-1.364h6.818v1.364zm0-3.273h-6.818V9.273h6.818v1.363z" }) + ] + } + ); +}); + +export { SiGoogleforms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.cjs new file mode 100644 index 000000000..317580c95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8E75B2"; +const SiGooglegemini = React__namespace.forwardRef(function SiGooglegemini2({ title = "Google Gemini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.04 19.32Q12 21.51 12 24q0-2.49.93-4.68.96-2.19 2.58-3.81t3.81-2.55Q21.51 12 24 12q-2.49 0-4.68-.93a12.3 12.3 0 0 1-3.81-2.58 12.3 12.3 0 0 1-2.58-3.81Q12 2.49 12 0q0 2.49-.96 4.68-.93 2.19-2.55 3.81a12.3 12.3 0 0 1-3.81 2.58Q2.49 12 0 12q2.49 0 4.68.96 2.19.93 3.81 2.55t2.55 3.81" }) + ] + } + ); +}); + +exports.default = SiGooglegemini; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.d.ts new file mode 100644 index 000000000..2a221673e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8E75B2"; +declare const SiGooglegemini: IconType; +export { SiGooglegemini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.mjs new file mode 100644 index 000000000..624ad7d6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglegemini.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8E75B2"; +const SiGooglegemini = React.forwardRef(function SiGooglegemini2({ title = "Google Gemini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.04 19.32Q12 21.51 12 24q0-2.49.93-4.68.96-2.19 2.58-3.81t3.81-2.55Q21.51 12 24 12q-2.49 0-4.68-.93a12.3 12.3 0 0 1-3.81-2.58 12.3 12.3 0 0 1-2.58-3.81Q12 2.49 12 0q0 2.49-.96 4.68-.93 2.19-2.55 3.81a12.3 12.3 0 0 1-3.81 2.58Q2.49 12 0 12q2.49 0 4.68.96 2.19.93 3.81 2.55t2.55 3.81" }) + ] + } + ); +}); + +export { SiGooglegemini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.cjs new file mode 100644 index 000000000..328f8c43e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglehome = React__namespace.forwardRef(function SiGooglehome2({ title = "Google Home", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a1.44 1.44 0 0 0-.947.399L.547 10.762a1.26 1.26 0 0 0-.342.808v11.138c0 .768.53 1.292 1.311 1.292h20.968c.78 0 1.311-.522 1.311-1.292V11.57a1.25 1.25 0 0 0-.34-.804L15.68 3.097h-.001L12.947.4A1.454 1.454 0 0 0 12 0Zm0 6.727 6.552 6.456v5.65H5.446v-5.65z" }) + ] + } + ); +}); + +exports.default = SiGooglehome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.d.ts new file mode 100644 index 000000000..afdba9327 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglehome: IconType; +export { SiGooglehome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.mjs new file mode 100644 index 000000000..56f15a230 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglehome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglehome = React.forwardRef(function SiGooglehome2({ title = "Google Home", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a1.44 1.44 0 0 0-.947.399L.547 10.762a1.26 1.26 0 0 0-.342.808v11.138c0 .768.53 1.292 1.311 1.292h20.968c.78 0 1.311-.522 1.311-1.292V11.57a1.25 1.25 0 0 0-.34-.804L15.68 3.097h-.001L12.947.4A1.454 1.454 0 0 0 12 0Zm0 6.727 6.552 6.456v5.65H5.446v-5.65z" }) + ] + } + ); +}); + +export { SiGooglehome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.cjs new file mode 100644 index 000000000..44e32db54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#715CD7"; +const SiGooglejules = React__namespace.forwardRef(function SiGooglejules2({ title = "Google Jules", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.2 24q-1.26 0-2.13-.87T1.2 21v-.6q0-.51.345-.855T2.4 19.2t.855.345.345.855v.6q0 .24.18.42t.42.18.42-.18.18-.42V7.2q0-3 2.1-5.1T12 0t5.1 2.1 2.1 5.1V21q0 .24.18.42t.42.18.42-.18.18-.42v-.6q0-.51.345-.855t.855-.345.855.345.345.855v.6q0 1.26-.87 2.13T19.8 24t-2.13-.87T16.8 21v-5.4h-1.62v4.8q0 .51-.345.855t-.855.345-.855-.345-.345-.855v-4.8h-1.59v4.8q0 .51-.345.855t-.855.345-.855-.345-.345-.855v-4.8H7.2V21q0 1.26-.87 2.13T4.2 24m4.2-11.4q.54 0 .87-.45t.33-1.05-.33-1.05-.87-.45-.87.45-.33 1.05.33 1.05.87.45m7.2 0q.54 0 .87-.45t.33-1.05-.33-1.05-.87-.45-.87.45-.33 1.05.33 1.05.87.45" }) + ] + } + ); +}); + +exports.default = SiGooglejules; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.d.ts new file mode 100644 index 000000000..4910bff4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#715CD7"; +declare const SiGooglejules: IconType; +export { SiGooglejules as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.mjs new file mode 100644 index 000000000..f16c0a2fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglejules.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#715CD7"; +const SiGooglejules = React.forwardRef(function SiGooglejules2({ title = "Google Jules", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.2 24q-1.26 0-2.13-.87T1.2 21v-.6q0-.51.345-.855T2.4 19.2t.855.345.345.855v.6q0 .24.18.42t.42.18.42-.18.18-.42V7.2q0-3 2.1-5.1T12 0t5.1 2.1 2.1 5.1V21q0 .24.18.42t.42.18.42-.18.18-.42v-.6q0-.51.345-.855t.855-.345.855.345.345.855v.6q0 1.26-.87 2.13T19.8 24t-2.13-.87T16.8 21v-5.4h-1.62v4.8q0 .51-.345.855t-.855.345-.855-.345-.345-.855v-4.8h-1.59v4.8q0 .51-.345.855t-.855.345-.855-.345-.345-.855v-4.8H7.2V21q0 1.26-.87 2.13T4.2 24m4.2-11.4q.54 0 .87-.45t.33-1.05-.33-1.05-.87-.45-.87.45-.33 1.05.33 1.05.87.45m7.2 0q.54 0 .87-.45t.33-1.05-.33-1.05-.87-.45-.87.45-.33 1.05.33 1.05.87.45" }) + ] + } + ); +}); + +export { SiGooglejules as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.cjs new file mode 100644 index 000000000..077acd84c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFBB00"; +const SiGooglekeep = React__namespace.forwardRef(function SiGooglekeep2({ title = "Google Keep", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.908 0c-.904 0-1.635.733-1.635 1.637v20.726c0 .904.732 1.637 1.635 1.637H19.09c.904 0 1.637-.733 1.637-1.637V6.5h-6.5V0H4.908zm9.819 0v6h6l-6-6zM11.97 8.229c.224 0 .571.031.765.072.2.04.576.185.842.312.828.414 1.467 1.164 1.774 2.088.168.511.188 1.34.05 1.865a3.752 3.752 0 0 1-1.277 1.952l-.25.193h-1.87c-2.134 0-1.931.042-2.478-.494a3.349 3.349 0 0 1-.984-1.844c-.148-.766-.053-1.437.32-2.203.19-.399.303-.556.65-.899.68-.679 1.513-1.037 2.458-1.042zm-1.866 7.863h3.781v1.328h-3.779v-1.328z" }) + ] + } + ); +}); + +exports.default = SiGooglekeep; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.d.ts new file mode 100644 index 000000000..379a8f20a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFBB00"; +declare const SiGooglekeep: IconType; +export { SiGooglekeep as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.mjs new file mode 100644 index 000000000..a0bd58ebf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglekeep.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFBB00"; +const SiGooglekeep = React.forwardRef(function SiGooglekeep2({ title = "Google Keep", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.908 0c-.904 0-1.635.733-1.635 1.637v20.726c0 .904.732 1.637 1.635 1.637H19.09c.904 0 1.637-.733 1.637-1.637V6.5h-6.5V0H4.908zm9.819 0v6h6l-6-6zM11.97 8.229c.224 0 .571.031.765.072.2.04.576.185.842.312.828.414 1.467 1.164 1.774 2.088.168.511.188 1.34.05 1.865a3.752 3.752 0 0 1-1.277 1.952l-.25.193h-1.87c-2.134 0-1.931.042-2.478-.494a3.349 3.349 0 0 1-.984-1.844c-.148-.766-.053-1.437.32-2.203.19-.399.303-.556.65-.899.68-.679 1.513-1.037 2.458-1.042zm-1.866 7.863h3.781v1.328h-3.779v-1.328z" }) + ] + } + ); +}); + +export { SiGooglekeep as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.cjs new file mode 100644 index 000000000..bb89a0fcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglelens = React__namespace.forwardRef(function SiGooglelens2({ title = "Google Lens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 17.333q-1.667 0-2.833-1.166Q8 15 8 13.333q0-1.666 1.167-2.833Q10.333 9.333 12 9.333q1.667 0 2.833 1.167Q16 11.667 16 13.333q0 1.667-1.167 2.834-1.166 1.166-2.833 1.166Zm8 5.334q-1.1 0-1.883-.784-.784-.783-.784-1.883t.784-1.883q.783-.784 1.883-.784t1.883.784q.784.783.784 1.883t-.784 1.883q-.783.784-1.883.784ZM5.333 24q-2.2 0-3.766-1.567Q0 20.867 0 18.667V16h2.667v2.667q0 1.1.783 1.883.783.783 1.883.783H12V24Zm16-10.667V8q0-1.1-.783-1.883-.783-.784-1.883-.784H5.333q-1.1 0-1.883.784Q2.667 6.9 2.667 8v4H0V8q0-2.2 1.567-3.767 1.566-1.566 3.766-1.566H8L9.333 0h5.334L16 2.667h2.667q2.2 0 3.766 1.566Q24 5.8 24 8v5.333z" }) + ] + } + ); +}); + +exports.default = SiGooglelens; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.d.ts new file mode 100644 index 000000000..a01eea8fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglelens: IconType; +export { SiGooglelens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.mjs new file mode 100644 index 000000000..12439eb56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglelens.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglelens = React.forwardRef(function SiGooglelens2({ title = "Google Lens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 17.333q-1.667 0-2.833-1.166Q8 15 8 13.333q0-1.666 1.167-2.833Q10.333 9.333 12 9.333q1.667 0 2.833 1.167Q16 11.667 16 13.333q0 1.667-1.167 2.834-1.166 1.166-2.833 1.166Zm8 5.334q-1.1 0-1.883-.784-.784-.783-.784-1.883t.784-1.883q.783-.784 1.883-.784t1.883.784q.784.783.784 1.883t-.784 1.883q-.783.784-1.883.784ZM5.333 24q-2.2 0-3.766-1.567Q0 20.867 0 18.667V16h2.667v2.667q0 1.1.783 1.883.783.783 1.883.783H12V24Zm16-10.667V8q0-1.1-.783-1.883-.783-.784-1.883-.784H5.333q-1.1 0-1.883.784Q2.667 6.9 2.667 8v4H0V8q0-2.2 1.567-3.767 1.566-1.566 3.766-1.566H8L9.333 0h5.334L16 2.667h2.667q2.2 0 3.766 1.566Q24 5.8 24 8v5.333z" }) + ] + } + ); +}); + +export { SiGooglelens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.cjs new file mode 100644 index 000000000..4d1b22db6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglemaps = React__namespace.forwardRef(function SiGooglemaps2({ title = "Google Maps", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.527 4.799c1.212 2.608.937 5.678-.405 8.173-1.101 2.047-2.744 3.74-4.098 5.614-.619.858-1.244 1.75-1.669 2.727-.141.325-.263.658-.383.992-.121.333-.224.673-.34 1.008-.109.314-.236.684-.627.687h-.007c-.466-.001-.579-.53-.695-.887-.284-.874-.581-1.713-1.019-2.525-.51-.944-1.145-1.817-1.79-2.671L19.527 4.799zM8.545 7.705l-3.959 4.707c.724 1.54 1.821 2.863 2.871 4.18.247.31.494.622.737.936l4.984-5.925-.029.01c-1.741.601-3.691-.291-4.392-1.987a3.377 3.377 0 0 1-.209-.716c-.063-.437-.077-.761-.004-1.198l.001-.007zM5.492 3.149l-.003.004c-1.947 2.466-2.281 5.88-1.117 8.77l4.785-5.689-.058-.05-3.607-3.035zM14.661.436l-3.838 4.563a.295.295 0 0 1 .027-.01c1.6-.551 3.403.15 4.22 1.626.176.319.323.683.377 1.045.068.446.085.773.012 1.22l-.003.016 3.836-4.561A8.382 8.382 0 0 0 14.67.439l-.009-.003zM9.466 5.868L14.162.285l-.047-.012A8.31 8.31 0 0 0 11.986 0a8.439 8.439 0 0 0-6.169 2.766l-.016.018 3.665 3.084z" }) + ] + } + ); +}); + +exports.default = SiGooglemaps; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.d.ts new file mode 100644 index 000000000..068d5ddbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglemaps: IconType; +export { SiGooglemaps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.mjs new file mode 100644 index 000000000..0fcfbfe99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemaps.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglemaps = React.forwardRef(function SiGooglemaps2({ title = "Google Maps", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.527 4.799c1.212 2.608.937 5.678-.405 8.173-1.101 2.047-2.744 3.74-4.098 5.614-.619.858-1.244 1.75-1.669 2.727-.141.325-.263.658-.383.992-.121.333-.224.673-.34 1.008-.109.314-.236.684-.627.687h-.007c-.466-.001-.579-.53-.695-.887-.284-.874-.581-1.713-1.019-2.525-.51-.944-1.145-1.817-1.79-2.671L19.527 4.799zM8.545 7.705l-3.959 4.707c.724 1.54 1.821 2.863 2.871 4.18.247.31.494.622.737.936l4.984-5.925-.029.01c-1.741.601-3.691-.291-4.392-1.987a3.377 3.377 0 0 1-.209-.716c-.063-.437-.077-.761-.004-1.198l.001-.007zM5.492 3.149l-.003.004c-1.947 2.466-2.281 5.88-1.117 8.77l4.785-5.689-.058-.05-3.607-3.035zM14.661.436l-3.838 4.563a.295.295 0 0 1 .027-.01c1.6-.551 3.403.15 4.22 1.626.176.319.323.683.377 1.045.068.446.085.773.012 1.22l-.003.016 3.836-4.561A8.382 8.382 0 0 0 14.67.439l-.009-.003zM9.466 5.868L14.162.285l-.047-.012A8.31 8.31 0 0 0 11.986 0a8.439 8.439 0 0 0-6.169 2.766l-.016.018 3.665 3.084z" }) + ] + } + ); +}); + +export { SiGooglemaps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.cjs new file mode 100644 index 000000000..18184cbb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglemarketingplatform = React__namespace.forwardRef(function SiGooglemarketingplatform2({ title = "Google Marketing Platform", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C8.926 0 5.852 1.17 3.511 3.511c-4.37 4.371-4.66 11.299-.869 16.01a3.138 3.138 0 0 1 .719-3.314 3.138 3.138 0 0 1 3.672-.56 6.163 6.163 0 0 1 9.324-8.004 2.921 2.921 0 1 0 4.132-4.132A11.968 11.968 0 0 0 12 0zm9.36 4.481a3.138 3.138 0 0 1-.72 3.313 3.138 3.138 0 0 1-3.672.56 6.165 6.165 0 0 1-.61 8.003 2.921 2.921 0 1 0 4.131 4.132c4.37-4.37 4.66-11.298.87-16.008zM5.576 15.501a2.92 2.92 0 0 0-2.922 2.922 2.92 2.92 0 0 0 2.922 2.922 2.92 2.92 0 0 0 2.922-2.922A2.92 2.92 0 0 0 5.577 15.5zm10.07 1.467a6.168 6.168 0 0 1-7.293 0 3.14 3.14 0 0 1-.56 3.672 3.136 3.136 0 0 1-3.314.718c4.376 3.523 10.665 3.523 15.04 0a3.136 3.136 0 0 1-3.313-.718 3.138 3.138 0 0 1-.56-3.672z" }) + ] + } + ); +}); + +exports.default = SiGooglemarketingplatform; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.d.ts new file mode 100644 index 000000000..6c054c050 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglemarketingplatform: IconType; +export { SiGooglemarketingplatform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.mjs new file mode 100644 index 000000000..bd27d3557 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemarketingplatform.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglemarketingplatform = React.forwardRef(function SiGooglemarketingplatform2({ title = "Google Marketing Platform", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C8.926 0 5.852 1.17 3.511 3.511c-4.37 4.371-4.66 11.299-.869 16.01a3.138 3.138 0 0 1 .719-3.314 3.138 3.138 0 0 1 3.672-.56 6.163 6.163 0 0 1 9.324-8.004 2.921 2.921 0 1 0 4.132-4.132A11.968 11.968 0 0 0 12 0zm9.36 4.481a3.138 3.138 0 0 1-.72 3.313 3.138 3.138 0 0 1-3.672.56 6.165 6.165 0 0 1-.61 8.003 2.921 2.921 0 1 0 4.131 4.132c4.37-4.37 4.66-11.298.87-16.008zM5.576 15.501a2.92 2.92 0 0 0-2.922 2.922 2.92 2.92 0 0 0 2.922 2.922 2.92 2.92 0 0 0 2.922-2.922A2.92 2.92 0 0 0 5.577 15.5zm10.07 1.467a6.168 6.168 0 0 1-7.293 0 3.14 3.14 0 0 1-.56 3.672 3.136 3.136 0 0 1-3.314.718c4.376 3.523 10.665 3.523 15.04 0a3.136 3.136 0 0 1-3.313-.718 3.138 3.138 0 0 1-.56-3.672z" }) + ] + } + ); +}); + +export { SiGooglemarketingplatform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.cjs new file mode 100644 index 000000000..d8257255e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00897B"; +const SiGooglemeet = React__namespace.forwardRef(function SiGooglemeet2({ title = "Google Meet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.53 2.13 0 7.75h5.53zm.398 0v5.62h7.608v3.65l5.47-4.45c-.014-1.22.031-2.25-.025-3.46-.148-1.09-1.287-1.47-2.236-1.36zM23.1 4.32c-.802.295-1.358.995-2.047 1.49-2.506 2.05-4.982 4.12-7.468 6.19 3.025 2.59 6.04 5.18 9.065 7.76 1.218.671 1.428-.814 1.328-1.64v-13a.828.828 0 0 0-.877-.825zM.038 8.15v7.7h5.53v-7.7zm13.577 8.1H6.008v5.62c3.864-.006 7.737.011 11.58-.009 1.02-.07 1.618-1.12 1.468-2.07v-2.51l-5.47-4.68v3.65zm-13.577 0c.02 1.44-.041 2.88.033 4.31.162.948 1.158 1.43 2.047 1.31h3.464v-5.62z" }) + ] + } + ); +}); + +exports.default = SiGooglemeet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.d.ts new file mode 100644 index 000000000..63ec35299 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00897B"; +declare const SiGooglemeet: IconType; +export { SiGooglemeet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.mjs new file mode 100644 index 000000000..0bf6220b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemeet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00897B"; +const SiGooglemeet = React.forwardRef(function SiGooglemeet2({ title = "Google Meet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.53 2.13 0 7.75h5.53zm.398 0v5.62h7.608v3.65l5.47-4.45c-.014-1.22.031-2.25-.025-3.46-.148-1.09-1.287-1.47-2.236-1.36zM23.1 4.32c-.802.295-1.358.995-2.047 1.49-2.506 2.05-4.982 4.12-7.468 6.19 3.025 2.59 6.04 5.18 9.065 7.76 1.218.671 1.428-.814 1.328-1.64v-13a.828.828 0 0 0-.877-.825zM.038 8.15v7.7h5.53v-7.7zm13.577 8.1H6.008v5.62c3.864-.006 7.737.011 11.58-.009 1.02-.07 1.618-1.12 1.468-2.07v-2.51l-5.47-4.68v3.65zm-13.577 0c.02 1.44-.041 2.88.033 4.31.162.948 1.158 1.43 2.047 1.31h3.464v-5.62z" }) + ] + } + ); +}); + +export { SiGooglemeet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.cjs new file mode 100644 index 000000000..3737bf4f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A73E8"; +const SiGooglemessages = React__namespace.forwardRef(function SiGooglemessages2({ title = "Google Messages", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM4.911 7.089h11.456a2.197 2.197 0 0 1 2.165 2.19v5.863a2.213 2.213 0 0 1-2.177 2.178H8.04c-1.174 0-2.04-.99-2.04-2.178v-4.639L4.503 7.905c-.31-.42-.05-.816.408-.816zm3.415 2.19c-.347 0-.68.21-.68.544 0 .334.333.544.68.544h7.905c.346 0 .68-.21.68-.544 0-.334-.334-.545-.68-.545zm0 2.177c-.347 0-.68.21-.68.544 0 .334.333.544.68.544h7.905c.346 0 .68-.21.68-.544 0-.334-.334-.544-.68-.544zm-.013 2.19c-.346 0-.68.21-.68.544 0 .334.334.544.68.544h5.728c.347 0 .68-.21.68-.544 0-.334-.333-.545-.68-.545z" }) + ] + } + ); +}); + +exports.default = SiGooglemessages; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.d.ts new file mode 100644 index 000000000..84684c2df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A73E8"; +declare const SiGooglemessages: IconType; +export { SiGooglemessages as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.mjs new file mode 100644 index 000000000..3f398a57f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglemessages.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A73E8"; +const SiGooglemessages = React.forwardRef(function SiGooglemessages2({ title = "Google Messages", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM4.911 7.089h11.456a2.197 2.197 0 0 1 2.165 2.19v5.863a2.213 2.213 0 0 1-2.177 2.178H8.04c-1.174 0-2.04-.99-2.04-2.178v-4.639L4.503 7.905c-.31-.42-.05-.816.408-.816zm3.415 2.19c-.347 0-.68.21-.68.544 0 .334.333.544.68.544h7.905c.346 0 .68-.21.68-.544 0-.334-.334-.545-.68-.545zm0 2.177c-.347 0-.68.21-.68.544 0 .334.333.544.68.544h7.905c.346 0 .68-.21.68-.544 0-.334-.334-.544-.68-.544zm-.013 2.19c-.346 0-.68.21-.68.544 0 .334.334.544.68.544h5.728c.347 0 .68-.21.68-.544 0-.334-.333-.545-.68-.545z" }) + ] + } + ); +}); + +export { SiGooglemessages as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.cjs new file mode 100644 index 000000000..d7186af2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglenearby = React__namespace.forwardRef(function SiGooglenearby2({ title = "Google Nearby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5459 12.0003L12.001 6.545l5.4541 5.4552-5.4541 5.454zm16.9763-1.154L13.158.48a1.635 1.635 0 00-2.314 0L.4778 10.8462a1.629 1.629 0 000 2.305L10.848 23.5226a1.629 1.629 0 002.304 0l10.3702-10.3712a1.629 1.629 0 000-2.305zM12 20.7263l-8.7272-8.7281L12 3.27l8.7272 8.7282z" }) + ] + } + ); +}); + +exports.default = SiGooglenearby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.d.ts new file mode 100644 index 000000000..30ead788c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglenearby: IconType; +export { SiGooglenearby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.mjs new file mode 100644 index 000000000..5ecd274cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenearby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglenearby = React.forwardRef(function SiGooglenearby2({ title = "Google Nearby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.5459 12.0003L12.001 6.545l5.4541 5.4552-5.4541 5.454zm16.9763-1.154L13.158.48a1.635 1.635 0 00-2.314 0L.4778 10.8462a1.629 1.629 0 000 2.305L10.848 23.5226a1.629 1.629 0 002.304 0l10.3702-10.3712a1.629 1.629 0 000-2.305zM12 20.7263l-8.7272-8.7281L12 3.27l8.7272 8.7282z" }) + ] + } + ); +}); + +export { SiGooglenearby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.cjs new file mode 100644 index 000000000..d16889f5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#174EA6"; +const SiGooglenews = React__namespace.forwardRef(function SiGooglenews2({ title = "Google News", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.2666 21.2a.6141.6141 0 0 1-.6128.6128H3.3446a.614.614 0 0 1-.6128-.6128V8.1153a.6141.6141 0 0 1 .6128-.6128h17.3091a.6141.6141 0 0 1 .6128.6128V21.2zm-3.0315-3.4196v-1.1957a.0803.0803 0 0 0-.0803-.0803h-5.3725v1.3619h5.3725a.0817.0817 0 0 0 .0804-.083l-.0001-.0029zm.8171-2.5875v-1.2012a.0803.0803 0 0 0-.079-.0817h-6.191v1.3619h6.1896a.079.079 0 0 0 .0804-.0776v-.0041.0027zm-.8171-2.5875v-1.2066a.0803.0803 0 0 0-.0803-.0803h-5.3725v1.3619h5.3725a.0816.0816 0 0 0 .0803-.079v.004zM8.1492 14.0448v1.2257h1.7704c-.1457.749-.8049 1.2924-1.7704 1.2924-1.0906-.0405-1.9418-.9574-1.9013-2.048.0384-1.0338.8676-1.8629 1.9013-1.9013a1.77 1.77 0 0 1 1.2529.4903l.9342-.9329a3.1405 3.1405 0 0 0-2.1871-.8525c-1.8051 0-3.2684 1.4633-3.2684 3.2684 0 1.8051 1.4633 3.2684 3.2684 3.2684 1.8889 0 3.1323-1.3278 3.1323-3.1976a3.941 3.941 0 0 0-.0518-.6183l-3.0805.0054zM2.2701 7.6537a.6156.6156 0 0 1 .6128-.6128h12.1545l-1.2692-3.4904a.5952.5952 0 0 0-.7436-.3827L.3676 7.7749a.5938.5938 0 0 0-.3228.7749l2.2253 6.112V7.6537za.6156.6156 0 0 1 .6128-.6128h12.1545l-1.2692-3.4904a.5952.5952 0 0 0-.7436-.3827L.3676 7.7749a.5938.5938 0 0 0-.3228.7749l2.2253 6.112V7.6537zm21.3116-.3105l-8.803-2.3683.7517 2.0659h5.5836a.6141.6141 0 0 1 .6128.6128v8.7948l2.2471-8.3659a.5923.5923 0 0 0-.3922-.7393zm-4.4955-1.6738V2.7946a.6101.6101 0 0 0-.6115-.6074H5.5236a.6101.6101 0 0 0-.6156.6046v2.8368l8.3904-3.0519a.5937.5937 0 0 1 .7422.3895l.5447 1.498 4.5009 1.2052z" }) + ] + } + ); +}); + +exports.default = SiGooglenews; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.d.ts new file mode 100644 index 000000000..a862852b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#174EA6"; +declare const SiGooglenews: IconType; +export { SiGooglenews as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.mjs new file mode 100644 index 000000000..529310e05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglenews.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#174EA6"; +const SiGooglenews = React.forwardRef(function SiGooglenews2({ title = "Google News", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.2666 21.2a.6141.6141 0 0 1-.6128.6128H3.3446a.614.614 0 0 1-.6128-.6128V8.1153a.6141.6141 0 0 1 .6128-.6128h17.3091a.6141.6141 0 0 1 .6128.6128V21.2zm-3.0315-3.4196v-1.1957a.0803.0803 0 0 0-.0803-.0803h-5.3725v1.3619h5.3725a.0817.0817 0 0 0 .0804-.083l-.0001-.0029zm.8171-2.5875v-1.2012a.0803.0803 0 0 0-.079-.0817h-6.191v1.3619h6.1896a.079.079 0 0 0 .0804-.0776v-.0041.0027zm-.8171-2.5875v-1.2066a.0803.0803 0 0 0-.0803-.0803h-5.3725v1.3619h5.3725a.0816.0816 0 0 0 .0803-.079v.004zM8.1492 14.0448v1.2257h1.7704c-.1457.749-.8049 1.2924-1.7704 1.2924-1.0906-.0405-1.9418-.9574-1.9013-2.048.0384-1.0338.8676-1.8629 1.9013-1.9013a1.77 1.77 0 0 1 1.2529.4903l.9342-.9329a3.1405 3.1405 0 0 0-2.1871-.8525c-1.8051 0-3.2684 1.4633-3.2684 3.2684 0 1.8051 1.4633 3.2684 3.2684 3.2684 1.8889 0 3.1323-1.3278 3.1323-3.1976a3.941 3.941 0 0 0-.0518-.6183l-3.0805.0054zM2.2701 7.6537a.6156.6156 0 0 1 .6128-.6128h12.1545l-1.2692-3.4904a.5952.5952 0 0 0-.7436-.3827L.3676 7.7749a.5938.5938 0 0 0-.3228.7749l2.2253 6.112V7.6537za.6156.6156 0 0 1 .6128-.6128h12.1545l-1.2692-3.4904a.5952.5952 0 0 0-.7436-.3827L.3676 7.7749a.5938.5938 0 0 0-.3228.7749l2.2253 6.112V7.6537zm21.3116-.3105l-8.803-2.3683.7517 2.0659h5.5836a.6141.6141 0 0 1 .6128.6128v8.7948l2.2471-8.3659a.5923.5923 0 0 0-.3922-.7393zm-4.4955-1.6738V2.7946a.6101.6101 0 0 0-.6115-.6074H5.5236a.6101.6101 0 0 0-.6156.6046v2.8368l8.3904-3.0519a.5937.5937 0 0 1 .7422.3895l.5447 1.498 4.5009 1.2052z" }) + ] + } + ); +}); + +export { SiGooglenews as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.cjs new file mode 100644 index 000000000..4a122df95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglepay = React__namespace.forwardRef(function SiGooglepay2({ title = "Google Pay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.963 7.235A3.963 3.963 0 00.422 9.419a3.963 3.963 0 000 3.559 3.963 3.963 0 003.541 2.184c1.07 0 1.97-.352 2.627-.957.748-.69 1.18-1.71 1.18-2.916a4.722 4.722 0 00-.07-.806H3.964v1.526h2.14a1.835 1.835 0 01-.79 1.205c-.356.241-.814.379-1.35.379-1.034 0-1.911-.697-2.225-1.636a2.375 2.375 0 010-1.517c.314-.94 1.191-1.636 2.225-1.636a2.152 2.152 0 011.52.594l1.132-1.13a3.808 3.808 0 00-2.652-1.033zm6.501.55v6.9h.886V11.89h1.465c.603 0 1.11-.196 1.522-.588a1.911 1.911 0 00.635-1.464 1.92 1.92 0 00-.635-1.456 2.125 2.125 0 00-1.522-.598zm2.427.85a1.156 1.156 0 01.823.365 1.176 1.176 0 010 1.686 1.171 1.171 0 01-.877.357H11.35V8.635h1.487a1.156 1.156 0 01.054 0zm4.124 1.175c-.842 0-1.477.308-1.907.925l.781.491c.288-.417.68-.626 1.175-.626a1.255 1.255 0 01.856.323 1.009 1.009 0 01.366.785v.202c-.34-.193-.774-.289-1.3-.289-.617 0-1.11.145-1.479.434-.37.288-.554.677-.554 1.165a1.476 1.476 0 00.525 1.156c.35.308.785.463 1.305.463.61 0 1.098-.27 1.465-.81h.038v.655h.848v-2.909c0-.61-.19-1.09-.568-1.44-.38-.35-.896-.525-1.551-.525zm2.263.154l1.946 4.422-1.098 2.38h.915L24 9.963h-.965l-1.368 3.391h-.02l-1.406-3.39zm-2.146 2.368c.494 0 .88.11 1.156.33 0 .372-.147.696-.44.973a1.413 1.413 0 01-.997.414 1.081 1.081 0 01-.69-.232.708.708 0 01-.293-.578c0-.257.12-.47.363-.647.24-.173.54-.26.9-.26Z" }) + ] + } + ); +}); + +exports.default = SiGooglepay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.d.ts new file mode 100644 index 000000000..2c3b253e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglepay: IconType; +export { SiGooglepay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.mjs new file mode 100644 index 000000000..feaff68fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglepay = React.forwardRef(function SiGooglepay2({ title = "Google Pay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.963 7.235A3.963 3.963 0 00.422 9.419a3.963 3.963 0 000 3.559 3.963 3.963 0 003.541 2.184c1.07 0 1.97-.352 2.627-.957.748-.69 1.18-1.71 1.18-2.916a4.722 4.722 0 00-.07-.806H3.964v1.526h2.14a1.835 1.835 0 01-.79 1.205c-.356.241-.814.379-1.35.379-1.034 0-1.911-.697-2.225-1.636a2.375 2.375 0 010-1.517c.314-.94 1.191-1.636 2.225-1.636a2.152 2.152 0 011.52.594l1.132-1.13a3.808 3.808 0 00-2.652-1.033zm6.501.55v6.9h.886V11.89h1.465c.603 0 1.11-.196 1.522-.588a1.911 1.911 0 00.635-1.464 1.92 1.92 0 00-.635-1.456 2.125 2.125 0 00-1.522-.598zm2.427.85a1.156 1.156 0 01.823.365 1.176 1.176 0 010 1.686 1.171 1.171 0 01-.877.357H11.35V8.635h1.487a1.156 1.156 0 01.054 0zm4.124 1.175c-.842 0-1.477.308-1.907.925l.781.491c.288-.417.68-.626 1.175-.626a1.255 1.255 0 01.856.323 1.009 1.009 0 01.366.785v.202c-.34-.193-.774-.289-1.3-.289-.617 0-1.11.145-1.479.434-.37.288-.554.677-.554 1.165a1.476 1.476 0 00.525 1.156c.35.308.785.463 1.305.463.61 0 1.098-.27 1.465-.81h.038v.655h.848v-2.909c0-.61-.19-1.09-.568-1.44-.38-.35-.896-.525-1.551-.525zm2.263.154l1.946 4.422-1.098 2.38h.915L24 9.963h-.965l-1.368 3.391h-.02l-1.406-3.39zm-2.146 2.368c.494 0 .88.11 1.156.33 0 .372-.147.696-.44.973a1.413 1.413 0 01-.997.414 1.081 1.081 0 01-.69-.232.708.708 0 01-.293-.578c0-.257.12-.47.363-.647.24-.173.54-.26.9-.26Z" }) + ] + } + ); +}); + +export { SiGooglepay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.cjs new file mode 100644 index 000000000..a964b11db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglephotos = React__namespace.forwardRef(function SiGooglephotos2({ title = "Google Photos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.678 16.672c0 2.175.002 4.565-.001 6.494-.001.576-.244.814-.817.833-7.045.078-8.927-7.871-4.468-11.334-1.95.016-4.019.007-5.986.007-1.351 0-1.414-.01-1.405-1.351.258-6.583 7.946-8.275 11.323-3.936L11.308.928c-.001-.695.212-.906.906-.925 6.409-.187 9.16 7.308 4.426 11.326l6.131.002c1.097 0 1.241.105 1.228 1.217-.223 6.723-7.802 8.376-11.321 4.124zm.002-15.284l-.003 9.972c6.56-.465 6.598-9.532.003-9.972zm-1.36 21.224l-.001-9.97c-6.927.598-6.29 9.726.002 9.97zM1.4 11.315l9.95.008c-.527-6.829-9.762-6.367-9.95-.008zm11.238 1.365c.682 6.875 9.67 6.284 9.977.01z" }) + ] + } + ); +}); + +exports.default = SiGooglephotos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.d.ts new file mode 100644 index 000000000..2c5cbd671 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglephotos: IconType; +export { SiGooglephotos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.mjs new file mode 100644 index 000000000..8d02610f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglephotos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglephotos = React.forwardRef(function SiGooglephotos2({ title = "Google Photos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.678 16.672c0 2.175.002 4.565-.001 6.494-.001.576-.244.814-.817.833-7.045.078-8.927-7.871-4.468-11.334-1.95.016-4.019.007-5.986.007-1.351 0-1.414-.01-1.405-1.351.258-6.583 7.946-8.275 11.323-3.936L11.308.928c-.001-.695.212-.906.906-.925 6.409-.187 9.16 7.308 4.426 11.326l6.131.002c1.097 0 1.241.105 1.228 1.217-.223 6.723-7.802 8.376-11.321 4.124zm.002-15.284l-.003 9.972c6.56-.465 6.598-9.532.003-9.972zm-1.36 21.224l-.001-9.97c-6.927.598-6.29 9.726.002 9.97zM1.4 11.315l9.95.008c-.527-6.829-9.762-6.367-9.95-.008zm11.238 1.365c.682 6.875 9.67 6.284 9.977.01z" }) + ] + } + ); +}); + +export { SiGooglephotos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.cjs new file mode 100644 index 000000000..cbf6de5bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#414141"; +const SiGoogleplay = React__namespace.forwardRef(function SiGoogleplay2({ title = "Google Play", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.018 13.298l-3.919 2.218-3.515-3.493 3.543-3.521 3.891 2.202a1.49 1.49 0 0 1 0 2.594zM1.337.924a1.486 1.486 0 0 0-.112.568v21.017c0 .217.045.419.124.6l11.155-11.087L1.337.924zm12.207 10.065l3.258-3.238L3.45.195a1.466 1.466 0 0 0-.946-.179l11.04 10.973zm0 2.067l-11 10.933c.298.036.612-.016.906-.183l13.324-7.54-3.23-3.21z" }) + ] + } + ); +}); + +exports.default = SiGoogleplay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.d.ts new file mode 100644 index 000000000..6430fbcbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#414141"; +declare const SiGoogleplay: IconType; +export { SiGoogleplay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.mjs new file mode 100644 index 000000000..fc080b871 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleplay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#414141"; +const SiGoogleplay = React.forwardRef(function SiGoogleplay2({ title = "Google Play", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.018 13.298l-3.919 2.218-3.515-3.493 3.543-3.521 3.891 2.202a1.49 1.49 0 0 1 0 2.594zM1.337.924a1.486 1.486 0 0 0-.112.568v21.017c0 .217.045.419.124.6l11.155-11.087L1.337.924zm12.207 10.065l3.258-3.238L3.45.195a1.466 1.466 0 0 0-.946-.179l11.04 10.973zm0 2.067l-11 10.933c.298.036.612-.016.906-.183l13.324-7.54-3.23-3.21z" }) + ] + } + ); +}); + +export { SiGoogleplay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.cjs new file mode 100644 index 000000000..82b8e4a57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AECBFA"; +const SiGooglepubsub = React__namespace.forwardRef(function SiGooglepubsub2({ title = "Google Pub/Sub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.3 7.452a2.064 2.064 0 1 1 4.128 0 2.064 2.064 0 0 1-4.128 0zM3.636 9.516a2.064 2.064 0 1 0 0-4.128 2.064 2.064 0 0 0 0 4.128zM12 19.872A2.064 2.064 0 1 0 12 24a2.064 2.064 0 0 0 0-4.128zm-5.774-3.151a2.591 2.591 0 0 0-.118-.48c0-.002 0-.004-.002-.006a2.595 2.595 0 0 0-.2-.436l-.004-.008a2.618 2.618 0 0 0-.276-.39l-.001-.001a2.622 2.622 0 0 0-.346-.336 2.603 2.603 0 0 0-1.643-.592A2.628 2.628 0 1 0 6.264 17.1c0-.13-.02-.254-.038-.38zm8.499-2.53c.033-.047.063-.097.094-.147a3.32 3.32 0 0 0 .201-.37c.026-.055.052-.108.074-.164a3.301 3.301 0 0 0 .242-1.234c0-1.51-1.01-2.772-2.388-3.183a3.277 3.277 0 0 0-.42-.1A2.882 2.882 0 0 0 12 8.94c-.183 0-.359.021-.532.054a3.272 3.272 0 0 0-.428.103 3.325 3.325 0 0 0-2.376 3.179c0 .567.155 1.093.405 1.561.028.054.055.108.086.16.062.102.13.198.201.292.039.051.08.099.12.147a3.314 3.314 0 0 0 4.885.196c.135-.135.254-.284.364-.44zm-8.987.608c.473.433.818 1.002.956 1.651l2.575-1.486a3.83 3.83 0 0 1-.946-1.657L5.738 14.8zm5.302-9.21v2.988A3.79 3.79 0 0 1 12 8.44c.329 0 .643.055.948.133v-2.98c-.3.097-.615.163-.948.163-.337 0-.656-.067-.96-.166zm7.317 9.132L15.711 13.2a3.818 3.818 0 0 1-.914 1.683l2.542 1.46a3.115 3.115 0 0 1 1.018-1.622zm2.007-.249c-.58 0-1.112.194-1.547.513a2.633 2.633 0 0 0-.662.701l-.013.024c-.082.13-.155.265-.212.409-.008.02-.012.041-.02.061a2.588 2.588 0 0 0-.124.421 2.628 2.628 0 1 0 2.578-2.129zm-8.862-9.266a2.52 2.52 0 0 0 .99 0A2.626 2.626 0 0 0 12 0a2.627 2.627 0 0 0-.498 5.206z" }) + ] + } + ); +}); + +exports.default = SiGooglepubsub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.d.ts new file mode 100644 index 000000000..feb864280 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AECBFA"; +declare const SiGooglepubsub: IconType; +export { SiGooglepubsub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.mjs new file mode 100644 index 000000000..9fb34ed08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglepubsub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AECBFA"; +const SiGooglepubsub = React.forwardRef(function SiGooglepubsub2({ title = "Google Pub/Sub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.3 7.452a2.064 2.064 0 1 1 4.128 0 2.064 2.064 0 0 1-4.128 0zM3.636 9.516a2.064 2.064 0 1 0 0-4.128 2.064 2.064 0 0 0 0 4.128zM12 19.872A2.064 2.064 0 1 0 12 24a2.064 2.064 0 0 0 0-4.128zm-5.774-3.151a2.591 2.591 0 0 0-.118-.48c0-.002 0-.004-.002-.006a2.595 2.595 0 0 0-.2-.436l-.004-.008a2.618 2.618 0 0 0-.276-.39l-.001-.001a2.622 2.622 0 0 0-.346-.336 2.603 2.603 0 0 0-1.643-.592A2.628 2.628 0 1 0 6.264 17.1c0-.13-.02-.254-.038-.38zm8.499-2.53c.033-.047.063-.097.094-.147a3.32 3.32 0 0 0 .201-.37c.026-.055.052-.108.074-.164a3.301 3.301 0 0 0 .242-1.234c0-1.51-1.01-2.772-2.388-3.183a3.277 3.277 0 0 0-.42-.1A2.882 2.882 0 0 0 12 8.94c-.183 0-.359.021-.532.054a3.272 3.272 0 0 0-.428.103 3.325 3.325 0 0 0-2.376 3.179c0 .567.155 1.093.405 1.561.028.054.055.108.086.16.062.102.13.198.201.292.039.051.08.099.12.147a3.314 3.314 0 0 0 4.885.196c.135-.135.254-.284.364-.44zm-8.987.608c.473.433.818 1.002.956 1.651l2.575-1.486a3.83 3.83 0 0 1-.946-1.657L5.738 14.8zm5.302-9.21v2.988A3.79 3.79 0 0 1 12 8.44c.329 0 .643.055.948.133v-2.98c-.3.097-.615.163-.948.163-.337 0-.656-.067-.96-.166zm7.317 9.132L15.711 13.2a3.818 3.818 0 0 1-.914 1.683l2.542 1.46a3.115 3.115 0 0 1 1.018-1.622zm2.007-.249c-.58 0-1.112.194-1.547.513a2.633 2.633 0 0 0-.662.701l-.013.024c-.082.13-.155.265-.212.409-.008.02-.012.041-.02.061a2.588 2.588 0 0 0-.124.421 2.628 2.628 0 1 0 2.578-2.129zm-8.862-9.266a2.52 2.52 0 0 0 .99 0A2.626 2.626 0 0 0 12 0a2.627 2.627 0 0 0-.498 5.206z" }) + ] + } + ); +}); + +export { SiGooglepubsub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.cjs new file mode 100644 index 000000000..fdcdfe206 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGooglescholar = React__namespace.forwardRef(function SiGooglescholar2({ title = "Google Scholar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.242 13.769L0 9.5 12 0l12 9.5-5.242 4.269C17.548 11.249 14.978 9.5 12 9.5c-2.977 0-5.548 1.748-6.758 4.269zM12 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14z" }) + ] + } + ); +}); + +exports.default = SiGooglescholar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.d.ts new file mode 100644 index 000000000..eba1c25b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGooglescholar: IconType; +export { SiGooglescholar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.mjs new file mode 100644 index 000000000..048e23be0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglescholar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGooglescholar = React.forwardRef(function SiGooglescholar2({ title = "Google Scholar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.242 13.769L0 9.5 12 0l12 9.5-5.242 4.269C17.548 11.249 14.978 9.5 12 9.5c-2.977 0-5.548 1.748-6.758 4.269zM12 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14z" }) + ] + } + ); +}); + +export { SiGooglescholar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.cjs new file mode 100644 index 000000000..0fd9154a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#458CF5"; +const SiGooglesearchconsole = React__namespace.forwardRef(function SiGooglesearchconsole2({ title = "Google Search Console", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.548 1.156L6.832 2.872v1.682h1.716zm0 3.398v.035H6.832v-.035H3.386L0 7.844v3.577h2.826V8.94c0-.525.429-.954.954-.954h16.476c.525 0 .954.43.954.954v2.48h2.754V7.844l-3.386-3.29H17.3v.035h-1.717v-.035zm7.035 0H17.3V2.872l-1.717-1.716zM8.679 1.188V2.84h6.773V1.188zm11.471 7.07a.834.834 0 00-.132.01l-.543.002c-5.216.014-10.432-.008-15.648.01-.435-.063-.794.436-.716.883v2.264h17.812c-.016-.888.045-1.782-.034-2.666-.104-.342-.427-.502-.739-.502zm-15.422.634a.689.698 0 01.689.698.689.698 0 01-.689.697.689.698 0 01-.688-.697.689.698 0 01.688-.698zm2.134 0a.689.698 0 01.689.698.689.698 0 01-.689.697.689.698 0 01-.688-.697.689.698 0 01.688-.698zM.036 11.645v9.156c0 1.05.858 1.908 1.907 1.908h.883V11.645zm21.174 0v11.064h.882c1.05 0 1.908-.858 1.908-1.908v-9.156zM4.057 13.133v6.85h6.137v-6.85zm13.243.021v3.777l-1.708.977-1.708-.977v-3.758a4.006 4.006 0 000 7.23v2.441h3.457v-2.442a4.006 4.006 0 00-.041-7.248zm-13.243 8.26v1.43h7.925v-1.43z" }) + ] + } + ); +}); + +exports.default = SiGooglesearchconsole; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.d.ts new file mode 100644 index 000000000..197d3057e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#458CF5"; +declare const SiGooglesearchconsole: IconType; +export { SiGooglesearchconsole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.mjs new file mode 100644 index 000000000..3c9adf75d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesearchconsole.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#458CF5"; +const SiGooglesearchconsole = React.forwardRef(function SiGooglesearchconsole2({ title = "Google Search Console", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.548 1.156L6.832 2.872v1.682h1.716zm0 3.398v.035H6.832v-.035H3.386L0 7.844v3.577h2.826V8.94c0-.525.429-.954.954-.954h16.476c.525 0 .954.43.954.954v2.48h2.754V7.844l-3.386-3.29H17.3v.035h-1.717v-.035zm7.035 0H17.3V2.872l-1.717-1.716zM8.679 1.188V2.84h6.773V1.188zm11.471 7.07a.834.834 0 00-.132.01l-.543.002c-5.216.014-10.432-.008-15.648.01-.435-.063-.794.436-.716.883v2.264h17.812c-.016-.888.045-1.782-.034-2.666-.104-.342-.427-.502-.739-.502zm-15.422.634a.689.698 0 01.689.698.689.698 0 01-.689.697.689.698 0 01-.688-.697.689.698 0 01.688-.698zm2.134 0a.689.698 0 01.689.698.689.698 0 01-.689.697.689.698 0 01-.688-.697.689.698 0 01.688-.698zM.036 11.645v9.156c0 1.05.858 1.908 1.907 1.908h.883V11.645zm21.174 0v11.064h.882c1.05 0 1.908-.858 1.908-1.908v-9.156zM4.057 13.133v6.85h6.137v-6.85zm13.243.021v3.777l-1.708.977-1.708-.977v-3.758a4.006 4.006 0 000 7.23v2.441h3.457v-2.442a4.006 4.006 0 00-.041-7.248zm-13.243 8.26v1.43h7.925v-1.43z" }) + ] + } + ); +}); + +export { SiGooglesearchconsole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.cjs new file mode 100644 index 000000000..409f52eaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34A853"; +const SiGooglesheets = React__namespace.forwardRef(function SiGooglesheets2({ title = "Google Sheets", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.318 12.545H7.91v-1.909h3.41v1.91zM14.728 0v6h6l-6-6zm1.363 10.636h-3.41v1.91h3.41v-1.91zm0 3.273h-3.41v1.91h3.41v-1.91zM20.727 6.5v15.864c0 .904-.732 1.636-1.636 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.318v6.5h6.5zm-3.273 2.773H6.545v7.909h10.91v-7.91zm-6.136 4.636H7.91v1.91h3.41v-1.91z" }) + ] + } + ); +}); + +exports.default = SiGooglesheets; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.d.ts new file mode 100644 index 000000000..7931d2b3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34A853"; +declare const SiGooglesheets: IconType; +export { SiGooglesheets as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.mjs new file mode 100644 index 000000000..7e77cf7ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesheets.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34A853"; +const SiGooglesheets = React.forwardRef(function SiGooglesheets2({ title = "Google Sheets", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.318 12.545H7.91v-1.909h3.41v1.91zM14.728 0v6h6l-6-6zm1.363 10.636h-3.41v1.91h3.41v-1.91zm0 3.273h-3.41v1.91h3.41v-1.91zM20.727 6.5v15.864c0 .904-.732 1.636-1.636 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.318v6.5h6.5zm-3.273 2.773H6.545v7.909h10.91v-7.91zm-6.136 4.636H7.91v1.91h3.41v-1.91z" }) + ] + } + ); +}); + +export { SiGooglesheets as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.cjs new file mode 100644 index 000000000..892fac6de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBBC04"; +const SiGoogleslides = React__namespace.forwardRef(function SiGoogleslides2({ title = "Google Slides", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.09 15.273H7.91v-4.637h8.18v4.637zm1.728-8.523h2.91v15.614c0 .904-.733 1.636-1.637 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.068v6.75h3.841zm-.363 2.523H6.545v7.363h10.91V9.273zm-2.728-5.979V6h6.001l-6-6v3.294z" }) + ] + } + ); +}); + +exports.default = SiGoogleslides; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.d.ts new file mode 100644 index 000000000..e4e9b640c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBBC04"; +declare const SiGoogleslides: IconType; +export { SiGoogleslides as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.mjs new file mode 100644 index 000000000..eb13d6887 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogleslides.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBBC04"; +const SiGoogleslides = React.forwardRef(function SiGoogleslides2({ title = "Google Slides", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.09 15.273H7.91v-4.637h8.18v4.637zm1.728-8.523h2.91v15.614c0 .904-.733 1.636-1.637 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.068v6.75h3.841zm-.363 2.523H6.545v7.363h10.91V9.273zm-2.728-5.979V6h6.001l-6-6v3.294z" }) + ] + } + ); +}); + +export { SiGoogleslides as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.cjs new file mode 100644 index 000000000..61e79db2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FEC111"; +const SiGooglestreetview = React__namespace.forwardRef(function SiGooglestreetview2({ title = "Google Street View", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.571 5.714a5.714 5.714 0 1 1 11.43 0 5.714 5.714 0 0 1-11.43 0zm2.264 5.165l-3.502 3.502c2.015-1.488 4.48-2.31 6.953-2.31 1.155 0 2.307.182 3.428.53v-1.709a6.176 6.176 0 0 1-3.428 1.037 6.177 6.177 0 0 1-3.45-1.05zm6.88 11.407V13.12a11.074 11.074 0 0 0-3.43-.55 11.25 11.25 0 0 0-6.731 2.265c-.425.34-.697.863-.697 1.45V24H20a1.72 1.72 0 0 0 1.714-1.714zM13.12 9.165L.001 22.285V4a1.72 1.72 0 0 1 1.713-1.714h11.394a6.176 6.176 0 0 0-1.037 3.428c0 1.276.388 2.463 1.05 3.45zm-5.246-1.95a2.7 2.7 0 0 0-.077-.644h-2.94v1.142h1.69c.001.303-.228.755-.625 1.025-.258.176-.606.298-1.066.298-.818 0-1.512-.552-1.76-1.295a1.887 1.887 0 0 1 0-1.196c.248-.743.942-1.295 1.76-1.295.6 0 .987.268 1.19.458l.913-.889A3.018 3.018 0 0 0 4.857 4a3.143 3.143 0 1 0 0 6.287c.848 0 1.563-.279 2.083-.759.593-.547.935-1.356.935-2.313zm2.482 9.07c0-.511.17-.995.471-1.399L1.714 24h8.643v-7.714z" }) + ] + } + ); +}); + +exports.default = SiGooglestreetview; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.d.ts new file mode 100644 index 000000000..5ae835c74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FEC111"; +declare const SiGooglestreetview: IconType; +export { SiGooglestreetview as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.mjs new file mode 100644 index 000000000..903b78134 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglestreetview.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FEC111"; +const SiGooglestreetview = React.forwardRef(function SiGooglestreetview2({ title = "Google Street View", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.571 5.714a5.714 5.714 0 1 1 11.43 0 5.714 5.714 0 0 1-11.43 0zm2.264 5.165l-3.502 3.502c2.015-1.488 4.48-2.31 6.953-2.31 1.155 0 2.307.182 3.428.53v-1.709a6.176 6.176 0 0 1-3.428 1.037 6.177 6.177 0 0 1-3.45-1.05zm6.88 11.407V13.12a11.074 11.074 0 0 0-3.43-.55 11.25 11.25 0 0 0-6.731 2.265c-.425.34-.697.863-.697 1.45V24H20a1.72 1.72 0 0 0 1.714-1.714zM13.12 9.165L.001 22.285V4a1.72 1.72 0 0 1 1.713-1.714h11.394a6.176 6.176 0 0 0-1.037 3.428c0 1.276.388 2.463 1.05 3.45zm-5.246-1.95a2.7 2.7 0 0 0-.077-.644h-2.94v1.142h1.69c.001.303-.228.755-.625 1.025-.258.176-.606.298-1.066.298-.818 0-1.512-.552-1.76-1.295a1.887 1.887 0 0 1 0-1.196c.248-.743.942-1.295 1.76-1.295.6 0 .987.268 1.19.458l.913-.889A3.018 3.018 0 0 0 4.857 4a3.143 3.143 0 1 0 0 6.287c.848 0 1.563-.279 2.083-.759.593-.547.935-1.356.935-2.313zm2.482 9.07c0-.511.17-.995.471-1.399L1.714 24h8.643v-7.714z" }) + ] + } + ); +}); + +export { SiGooglestreetview as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.cjs new file mode 100644 index 000000000..61def5ece --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9AB00"; +const SiGooglesummerofcode = React__namespace.forwardRef(function SiGooglesummerofcode2({ title = "Google Summer of Code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.995 0-.954.954L9.24 2.758l-.755.725h-4.97v5.001L0 12.004l2.758 2.76.755.752v4.973h4.971L11.995 24l3.523-3.511h4.961v-4.973L24 12.005l-3.52-3.521v-5h-5.01zm0 5.068a6.928 6.928 0 0 1 6.94 6.918v.019a6.937 6.937 0 1 1-6.94-6.937Zm.436 3.457-1.709 6.339.94.253 1.709-6.339zm1.97 1.047-.715.649 1.431 1.594-1.431 1.593.725.649 2.013-2.242zm-4.8.01-2.014 2.242L9.6 14.075l.725-.648-1.431-1.594 1.431-1.603z" }) + ] + } + ); +}); + +exports.default = SiGooglesummerofcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.d.ts new file mode 100644 index 000000000..a2a1b6a0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9AB00"; +declare const SiGooglesummerofcode: IconType; +export { SiGooglesummerofcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.mjs new file mode 100644 index 000000000..b024f6438 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGooglesummerofcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9AB00"; +const SiGooglesummerofcode = React.forwardRef(function SiGooglesummerofcode2({ title = "Google Summer of Code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.995 0-.954.954L9.24 2.758l-.755.725h-4.97v5.001L0 12.004l2.758 2.76.755.752v4.973h4.971L11.995 24l3.523-3.511h4.961v-4.973L24 12.005l-3.52-3.521v-5h-5.01zm0 5.068a6.928 6.928 0 0 1 6.94 6.918v.019a6.937 6.937 0 1 1-6.94-6.937Zm.436 3.457-1.709 6.339.94.253 1.709-6.339zm1.97 1.047-.715.649 1.431 1.594-1.431 1.593.725.649 2.013-2.242zm-4.8.01-2.014 2.242L9.6 14.075l.725-.648-1.431-1.594 1.431-1.603z" }) + ] + } + ); +}); + +export { SiGooglesummerofcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.cjs new file mode 100644 index 000000000..037768053 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#246FDB"; +const SiGoogletagmanager = React__namespace.forwardRef(function SiGoogletagmanager2({ title = "Google Tag Manager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.003 0a3 3 0 0 0-2.121 5.121l6.865 6.865-4.446 4.541 1.745 1.836a3.432 3.432 0 0 1 .7.739l.012.011-.001.002a3.432 3.432 0 0 1 .609 1.953 3.432 3.432 0 0 1-.09.78l7.75-7.647c.031-.029.067-.05.098-.08.023-.023.038-.052.06-.076a2.994 2.994 0 0 0-.06-4.166l-9-9A2.99 2.99 0 0 0 12.003 0zM8.63 2.133L.88 9.809a2.998 2.998 0 0 0 0 4.238l7.7 7.75a3.432 3.432 0 0 1-.077-.729 3.432 3.432 0 0 1 3.431-3.431 3.432 3.432 0 0 1 .826.101l-5.523-5.81 4.371-4.373-2.08-2.08c-.903-.904-1.193-2.183-.898-3.342zm3.304 16.004a2.932 2.932 0 0 0-2.931 2.931A2.932 2.932 0 0 0 11.934 24a2.932 2.932 0 0 0 2.932-2.932 2.932 2.932 0 0 0-2.932-2.931z" }) + ] + } + ); +}); + +exports.default = SiGoogletagmanager; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.d.ts new file mode 100644 index 000000000..0710e75a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#246FDB"; +declare const SiGoogletagmanager: IconType; +export { SiGoogletagmanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.mjs new file mode 100644 index 000000000..ff322c8da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletagmanager.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#246FDB"; +const SiGoogletagmanager = React.forwardRef(function SiGoogletagmanager2({ title = "Google Tag Manager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.003 0a3 3 0 0 0-2.121 5.121l6.865 6.865-4.446 4.541 1.745 1.836a3.432 3.432 0 0 1 .7.739l.012.011-.001.002a3.432 3.432 0 0 1 .609 1.953 3.432 3.432 0 0 1-.09.78l7.75-7.647c.031-.029.067-.05.098-.08.023-.023.038-.052.06-.076a2.994 2.994 0 0 0-.06-4.166l-9-9A2.99 2.99 0 0 0 12.003 0zM8.63 2.133L.88 9.809a2.998 2.998 0 0 0 0 4.238l7.7 7.75a3.432 3.432 0 0 1-.077-.729 3.432 3.432 0 0 1 3.431-3.431 3.432 3.432 0 0 1 .826.101l-5.523-5.81 4.371-4.373-2.08-2.08c-.903-.904-1.193-2.183-.898-3.342zm3.304 16.004a2.932 2.932 0 0 0-2.931 2.931A2.932 2.932 0 0 0 11.934 24a2.932 2.932 0 0 0 2.932-2.932 2.932 2.932 0 0 0-2.932-2.931z" }) + ] + } + ); +}); + +export { SiGoogletagmanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.cjs new file mode 100644 index 000000000..83201261d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2684FC"; +const SiGoogletasks = React__namespace.forwardRef(function SiGoogletasks2({ title = "Google Tasks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.383.617C5.097.617 0 5.714 0 12c0 6.286 5.097 11.383 11.383 11.383 6.286 0 11.38-5.097 11.38-11.383a11.34 11.34 0 0 0-.878-4.389l-3.203 3.203c.062.387.1.782.1 1.186a7.398 7.398 0 1 1-7.4-7.398c1.499 0 2.889.448 4.054 1.214l2.857-2.857a11.325 11.325 0 0 0-6.91-2.342zm9.674.756c-.292 0-.583.112-.805.334-2.97 2.965-5.934 5.934-8.9 8.902L9.596 8.854a1.139 1.139 0 0 0-1.61 0l-1.775 1.773a1.139 1.139 0 0 0 0 1.61l4.166 4.163a1.421 1.421 0 0 0 2.012 0L23.666 5.121a1.136 1.136 0 0 0 0-1.61l-1.805-1.804a1.136 1.136 0 0 0-.804-.334z" }) + ] + } + ); +}); + +exports.default = SiGoogletasks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.d.ts new file mode 100644 index 000000000..6f66db70d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2684FC"; +declare const SiGoogletasks: IconType; +export { SiGoogletasks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.mjs new file mode 100644 index 000000000..8202cb711 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletasks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2684FC"; +const SiGoogletasks = React.forwardRef(function SiGoogletasks2({ title = "Google Tasks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.383.617C5.097.617 0 5.714 0 12c0 6.286 5.097 11.383 11.383 11.383 6.286 0 11.38-5.097 11.38-11.383a11.34 11.34 0 0 0-.878-4.389l-3.203 3.203c.062.387.1.782.1 1.186a7.398 7.398 0 1 1-7.4-7.398c1.499 0 2.889.448 4.054 1.214l2.857-2.857a11.325 11.325 0 0 0-6.91-2.342zm9.674.756c-.292 0-.583.112-.805.334-2.97 2.965-5.934 5.934-8.9 8.902L9.596 8.854a1.139 1.139 0 0 0-1.61 0l-1.775 1.773a1.139 1.139 0 0 0 0 1.61l4.166 4.163a1.421 1.421 0 0 0 2.012 0L23.666 5.121a1.136 1.136 0 0 0 0-1.61l-1.805-1.804a1.136 1.136 0 0 0-.804-.334z" }) + ] + } + ); +}); + +export { SiGoogletasks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.cjs new file mode 100644 index 000000000..85aea0de3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogletranslate = React__namespace.forwardRef(function SiGoogletranslate2({ title = "Google Translate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.401 4.818h-9.927L10.927 0H1.599C.72 0 .002.719.002 1.599v16.275c0 .878.72 1.597 1.597 1.597h10L13.072 24H22.4c.878 0 1.597-.707 1.597-1.572V6.39c0-.865-.72-1.572-1.597-1.572zm-15.66 8.68c-2.07 0-3.75-1.68-3.75-3.75 0-2.07 1.68-3.75 3.75-3.75 1.012 0 1.86.375 2.512.976l-.99.952a2.194 2.194 0 0 0-1.522-.584c-1.305 0-2.363 1.08-2.363 2.409S5.436 12.16 6.74 12.16c1.507 0 2.13-1.08 2.19-1.808l-2.188-.002V9.066h3.51c.05.23.09.457.09.764 0 2.147-1.434 3.669-3.602 3.669zm16.757 8.93c0 .59-.492 1.072-1.097 1.072h-8.875l3.649-4.03h.005l-.74-2.302.006-.005s.568-.488 1.277-1.24c.712.771 1.63 1.699 2.818 2.805l.771-.772c-1.272-1.154-2.204-2.07-2.89-2.805.919-1.087 1.852-2.455 2.049-3.707h2.034v.002h.002v-.94h-4.532v-1.52h-1.471v1.52H14.3l-1.672-5.21.006.022h9.767c.605 0 1.097.48 1.097 1.072v16.038zm-6.484-7.311c-.536.548-.943.873-.943.873l-.008.004-1.46-4.548h4.764c-.307 1.084-.988 2.108-1.651 2.904-1.176-1.392-1.18-1.844-1.18-1.844h-1.222s.05.678 1.7 2.61z" }) + ] + } + ); +}); + +exports.default = SiGoogletranslate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.d.ts new file mode 100644 index 000000000..3dde783c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogletranslate: IconType; +export { SiGoogletranslate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.mjs new file mode 100644 index 000000000..f162b2758 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletranslate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogletranslate = React.forwardRef(function SiGoogletranslate2({ title = "Google Translate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.401 4.818h-9.927L10.927 0H1.599C.72 0 .002.719.002 1.599v16.275c0 .878.72 1.597 1.597 1.597h10L13.072 24H22.4c.878 0 1.597-.707 1.597-1.572V6.39c0-.865-.72-1.572-1.597-1.572zm-15.66 8.68c-2.07 0-3.75-1.68-3.75-3.75 0-2.07 1.68-3.75 3.75-3.75 1.012 0 1.86.375 2.512.976l-.99.952a2.194 2.194 0 0 0-1.522-.584c-1.305 0-2.363 1.08-2.363 2.409S5.436 12.16 6.74 12.16c1.507 0 2.13-1.08 2.19-1.808l-2.188-.002V9.066h3.51c.05.23.09.457.09.764 0 2.147-1.434 3.669-3.602 3.669zm16.757 8.93c0 .59-.492 1.072-1.097 1.072h-8.875l3.649-4.03h.005l-.74-2.302.006-.005s.568-.488 1.277-1.24c.712.771 1.63 1.699 2.818 2.805l.771-.772c-1.272-1.154-2.204-2.07-2.89-2.805.919-1.087 1.852-2.455 2.049-3.707h2.034v.002h.002v-.94h-4.532v-1.52h-1.471v1.52H14.3l-1.672-5.21.006.022h9.767c.605 0 1.097.48 1.097 1.072v16.038zm-6.484-7.311c-.536.548-.943.873-.943.873l-.008.004-1.46-4.548h4.764c-.307 1.084-.988 2.108-1.651 2.904-1.176-1.392-1.18-1.844-1.18-1.844h-1.222s.05.678 1.7 2.61z" }) + ] + } + ); +}); + +export { SiGoogletranslate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.cjs new file mode 100644 index 000000000..3077e7a35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiGoogletv = React__namespace.forwardRef(function SiGoogletv2({ title = "Google TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.11 3.245A3.117 3.117 0 0 0 0 6.355V13.7a1.87 1.87 0 0 0 1.878 1.878h2.588V5.124c0-.73.313-1.399.814-1.879zm3.944 0a1.87 1.87 0 0 0-1.879 1.879V7.71h16.947v.021c.73 0 1.398.313 1.878.814v-2.19a3.117 3.117 0 0 0-3.11-3.11zm12.48 5.176v10.455c0 .73-.313 1.399-.814 1.879h2.17a3.117 3.117 0 0 0 3.11-3.11V10.3a1.87 1.87 0 0 0-1.878-1.878zM0 15.475v2.17a3.117 3.117 0 0 0 3.11 3.11h13.836a1.87 1.87 0 0 0 1.878-1.879V16.29H1.878c-.73 0-1.398-.314-1.878-.814" }) + ] + } + ); +}); + +exports.default = SiGoogletv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.d.ts new file mode 100644 index 000000000..5ea6ea83e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiGoogletv: IconType; +export { SiGoogletv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.mjs new file mode 100644 index 000000000..873e88857 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGoogletv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiGoogletv = React.forwardRef(function SiGoogletv2({ title = "Google TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.11 3.245A3.117 3.117 0 0 0 0 6.355V13.7a1.87 1.87 0 0 0 1.878 1.878h2.588V5.124c0-.73.313-1.399.814-1.879zm3.944 0a1.87 1.87 0 0 0-1.879 1.879V7.71h16.947v.021c.73 0 1.398.313 1.878.814v-2.19a3.117 3.117 0 0 0-3.11-3.11zm12.48 5.176v10.455c0 .73-.313 1.399-.814 1.879h2.17a3.117 3.117 0 0 0 3.11-3.11V10.3a1.87 1.87 0 0 0-1.878-1.878zM0 15.475v2.17a3.117 3.117 0 0 0 3.11 3.11h13.836a1.87 1.87 0 0 0 1.878-1.879V16.29H1.878c-.73 0-1.398-.314-1.878-.814" }) + ] + } + ); +}); + +export { SiGoogletv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.cjs new file mode 100644 index 000000000..670599b11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F68D2E"; +const SiGotomeeting = React__namespace.forwardRef(function SiGotomeeting2({ title = "GoToMeeting", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.3 13.72a3.158 3.158 0 0 0-3.462.124.632.632 0 0 1-.682.035l-3.137-1.81a.08.08 0 0 1 0-.137l3.12-1.8a.632.632 0 0 1 .685.036 3.158 3.158 0 0 0 3.47.139A3.194 3.194 0 0 0 22.442 6.1a3.158 3.158 0 0 0-5.924 1.773.633.633 0 0 1-.311.606l-3.136 1.811a.08.08 0 0 1-.118-.068V6.6a.632.632 0 0 1 .372-.573 3.158 3.158 0 1 0-2.64 0 .632.632 0 0 1 .373.573v3.622a.08.08 0 0 1-.119.068L7.804 8.48a.632.632 0 0 1-.311-.605 3.157 3.157 0 1 0-1.307 2.294.633.633 0 0 1 .687-.038l3.12 1.8a.08.08 0 0 1 0 .137L6.854 13.88a.632.632 0 0 1-.683-.035 3.158 3.158 0 0 0-3.461-.124 3.194 3.194 0 0 0-1.143 4.202 3.159 3.159 0 0 0 5.924-1.792.633.633 0 0 1 .31-.61l3.137-1.81a.08.08 0 0 1 .119.068V17.4a.632.632 0 0 1-.372.573 3.158 3.158 0 1 0 2.64 0 .633.633 0 0 1-.373-.573v-3.621a.08.08 0 0 1 .118-.069l3.137 1.812a.631.631 0 0 1 .31.609 3.159 3.159 0 0 0 5.924 1.792A3.194 3.194 0 0 0 21.3 13.72Z" }) + ] + } + ); +}); + +exports.default = SiGotomeeting; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.d.ts new file mode 100644 index 000000000..57f11ecc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F68D2E"; +declare const SiGotomeeting: IconType; +export { SiGotomeeting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.mjs new file mode 100644 index 000000000..6b7688bd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGotomeeting.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F68D2E"; +const SiGotomeeting = React.forwardRef(function SiGotomeeting2({ title = "GoToMeeting", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.3 13.72a3.158 3.158 0 0 0-3.462.124.632.632 0 0 1-.682.035l-3.137-1.81a.08.08 0 0 1 0-.137l3.12-1.8a.632.632 0 0 1 .685.036 3.158 3.158 0 0 0 3.47.139A3.194 3.194 0 0 0 22.442 6.1a3.158 3.158 0 0 0-5.924 1.773.633.633 0 0 1-.311.606l-3.136 1.811a.08.08 0 0 1-.118-.068V6.6a.632.632 0 0 1 .372-.573 3.158 3.158 0 1 0-2.64 0 .632.632 0 0 1 .373.573v3.622a.08.08 0 0 1-.119.068L7.804 8.48a.632.632 0 0 1-.311-.605 3.157 3.157 0 1 0-1.307 2.294.633.633 0 0 1 .687-.038l3.12 1.8a.08.08 0 0 1 0 .137L6.854 13.88a.632.632 0 0 1-.683-.035 3.158 3.158 0 0 0-3.461-.124 3.194 3.194 0 0 0-1.143 4.202 3.159 3.159 0 0 0 5.924-1.792.633.633 0 0 1 .31-.61l3.137-1.81a.08.08 0 0 1 .119.068V17.4a.632.632 0 0 1-.372.573 3.158 3.158 0 1 0 2.64 0 .633.633 0 0 1-.373-.573v-3.621a.08.08 0 0 1 .118-.069l3.137 1.812a.631.631 0 0 1 .31.609 3.159 3.159 0 0 0 5.924 1.792A3.194 3.194 0 0 0 21.3 13.72Z" }) + ] + } + ); +}); + +export { SiGotomeeting as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.cjs new file mode 100644 index 000000000..8b6892eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BD0000"; +const SiGplv3 = React__namespace.forwardRef(function SiGplv32({ title = "GPLv3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.588 7.177h-.005c-.43.031-1.003.161-1.546.379H2.056L0 16.526H13.376a2.42 2.42 0 0 0 1.012.296l.006.001h.679c.215-.017.44-.048.672-.094.4-.078.822-.198 1.26-.357.33-.121.67-.264 1.015-.43.75-.36 1.524-.822 2.283-1.38.25-.184.49-.373.72-.565.165-.137.315-.266.608-.536.544-.524.957-1.057 1.197-1.538.003-.015.19-.34.222-.708a.84.84 0 0 0-.146-.592.787.787 0 0 0-.365-.252c.476-.39.864-.808 1.118-1.216.297-.477.429-.95.284-1.348a.927.927 0 0 0-.578-.547 1.57 1.57 0 0 0-.4-.083h-.006zm.014.295h.34c.12.01.228.033.32.066.21.076.34.201.401.37.098.268.013.656-.257 1.09-.27.436-.718.907-1.286 1.333l-.313.236.39.03c.232.018.384.09.47.204.004.009.105.11.089.388a1.76 1.76 0 0 1-.193.602c-.217.437-.611.95-1.136 1.457a15.051 15.051 0 0 1-1.3 1.076c-.084.06-.924.724-2.235 1.352-.336.162-.667.3-.989.418a8.12 8.12 0 0 1-1.215.345c-.22.043-.432.073-.633.088-.198-.001-.397.003-.594 0-.59-.052-1.055-.259-1.332-.636a1.342 1.342 0 0 1-.2-.399 1.778 1.778 0 0 1-.072-.619c.03-.62.32-1.356.824-2.128.535-.82 1.31-1.68 2.27-2.477.216-.179.438-.355.671-.527.288-.211.578-.407.868-.589 1.07-.673 2.136-1.144 3.082-1.384-.904.295-1.918.795-2.92 1.476l-.108.074c-.556.386-1.06.795-1.5 1.208-1.415 1.331-2.163 2.71-1.823 3.518.024.055.053.108.086.159.366.537 1.271.63 2.419.341a9.333 9.333 0 0 0 1.714-.637c1.265-.629 2.237-1.352 2.448-1.786.046-.095.057-.175.025-.239-.15-.304-1.2-.098-2.473.453-.102.044-.206.09-.31.139a9.853 9.853 0 0 1 .716-.603c.25-.188.5-.359.748-.51 1.16-.875 1.747-1.702 1.624-2.01-.023-.057-.072-.097-.148-.121-.241-.077-.683.015-1.219.234-.442.182-.95.45-1.465.785l-.083.054-.247.164.142-.26c.21-.386.555-.79.983-1.164a6.98 6.98 0 0 1 1.941-1.19c.424-.167.83-.27 1.182-.297h-.251c.2-.043.389-.072.549-.084zm-9.939.097c-.058.884.114 2.18.503 3.617a20.062 20.062 0 0 0 .386 1.26c-.032.047-.064.093-.094.14-.486.744-.77 1.447-.84 2.058a12.67 12.67 0 0 1-.448-2.237 13.603 13.603 0 0 1-.057-.678c-.096-1.622.116-3.093.55-4.16zm-9.685 1.15h2.219c.186 0 .33.036.434.106.102.07.14.162.116.273l-.26 1.177h-.77l.252-1.145H3.041l-.948 4.288H4.02l.388-1.752h-.905l.086-.393h1.676l-.48 2.176a.307.307 0 0 1-.034.087.48.48 0 0 1-.205.184c-.133.07-.293.106-.48.106H1.882c-.186 0-.33-.035-.434-.106-.102-.07-.141-.16-.116-.271l.962-4.35c.025-.112.103-.203.237-.274l.015-.005c.122-.062.266-.096.432-.1zm3.425 0h2.75c.185 0 .33.036.433.106.103.07.143.162.118.273l-.514 2.32c-.024.111-.103.201-.238.272a1.01 1.01 0 0 1-.478.107h-2c-.149.677-.3 1.352-.448 2.029h-.754l1.13-5.106zm3.8 0h.753l-1.04 4.699h1.803c.02.138.041.274.065.408H9.072l1.13-5.106zm-3.137.41-.5 2.258h1.878l.499-2.257zm-1.58 5.051h.023a.53.53 0 0 1 .225.045c.066.03.113.076.139.137a.334.334 0 0 1 .018.197l-.005.028h-.217l.002-.026c.006-.05 0-.09-.02-.118a.1.1 0 0 0-.028-.026.267.267 0 0 0-.138-.03.323.323 0 0 0-.183.043c-.04.028-.066.059-.074.096-.008.038.005.058.015.068l.002.002c.011.01.053.034.182.065.117.028.195.054.239.075a.282.282 0 0 1 .136.132c.025.053.03.115.015.183a.417.417 0 0 1-.098.182.495.495 0 0 1-.186.133.63.63 0 0 1-.24.048.599.599 0 0 1-.26-.048.298.298 0 0 1-.149-.153.376.376 0 0 1-.018-.223l.005-.026h.213l-.002.026c-.005.049 0 .088.013.118a.143.143 0 0 0 .074.07.407.407 0 0 0 .288.006.248.248 0 0 0 .098-.06.164.164 0 0 0 .042-.079c.006-.025.005-.047-.005-.065-.011-.019-.034-.035-.069-.05l-.18-.053a.813.813 0 0 1-.21-.074.259.259 0 0 1-.112-.122.263.263 0 0 1-.01-.16.391.391 0 0 1 .091-.176.454.454 0 0 1 .181-.124.636.636 0 0 1 .204-.04zm1.94.004h.035l.133.015.045.004-.065.164-.013.026-.102-.01c-.03 0-.052.005-.066.015a.255.255 0 0 0-.011.012.175.175 0 0 0-.028.07l-.007.03h.159l-.041.182H7.31l-.157.704h-.214l.157-.704h-.124l.04-.183h.122l.015-.057a.452.452 0 0 1 .044-.131.279.279 0 0 1 .233-.137zm.512.01-.07.315h.138l-.04.183h-.139l-.1.445s-.007.043-.007.065l.024.002.102-.007-.012.164.002.03-.146.016c-.058 0-.1-.01-.13-.03a.13.13 0 0 1-.06-.084c-.001-.007-.004-.016-.004-.03 0-.027.005-.072.023-.15l.094-.42H7.51l.04-.184h.102l.043-.188.242-.128zM1.13 14.2h.832l-.046.207h-.608l-.061.273h.526l-.046.207h-.526l-.113.508H.865l.265-1.195zm1.114.292h.026c.054 0 .103.016.15.05l.03.02-.115.188-.031-.022a.135.135 0 0 0-.074-.022.116.116 0 0 0-.065.022.163.163 0 0 0-.055.061.585.585 0 0 0-.056.152l-.1.454H1.74l.198-.887h.2l-.01.037c.01-.007.02-.017.028-.022a.228.228 0 0 1 .088-.031zm.636 0h.039c.12 0 .212.042.271.125.038.054.058.12.058.2 0 .044-.006.09-.017.142l-.017.065h-.602a.408.408 0 0 0-.002.037c0 .046.01.082.03.109.01.013.02.024.033.033a.164.164 0 0 0 .09.024.213.213 0 0 0 .119-.035.312.312 0 0 0 .096-.105h.229l-.02.044a.49.49 0 0 1-.449.283c-.131 0-.228-.043-.288-.126-.06-.082-.073-.194-.041-.336a.612.612 0 0 1 .188-.34.477.477 0 0 1 .283-.12zm.962 0h.04c.12 0 .211.042.27.125.038.054.058.12.058.2a.65.65 0 0 1-.033.207h-.602l-.002.024c0 .02 0 .026.002.039a.16.16 0 0 0 .027.083l.01.013a.15.15 0 0 0 .114.044.212.212 0 0 0 .118-.035.312.312 0 0 0 .096-.105h.231l-.022.044a.49.49 0 0 1-.449.283c-.13 0-.228-.043-.288-.126-.079-.108-.059-.256-.04-.336a.612.612 0 0 1 .186-.34.483.483 0 0 1 .284-.12zm2.622 0h.039c.122 0 .217.041.278.124.061.082.076.193.045.332a.681.681 0 0 1-.107.26.509.509 0 0 1-.405.206c-.125 0-.219-.043-.279-.126-.078-.104-.064-.25-.042-.344a.58.58 0 0 1 .214-.356.5.5 0 0 1 .257-.096zm3.245 0c.016-.001.03 0 .047 0 .074 0 .133.007.177.026.047.019.08.045.1.077.018.03.027.067.027.113l-.022.135-.04.183a2.008 2.008 0 0 0-.045.236c-.001.03.001.058.01.085l.014.048H9.76l-.009-.028c-.003-.013-.002-.03-.004-.044a.522.522 0 0 1-.29.09c-.1 0-.174-.026-.22-.077a.196.196 0 0 1-.05-.137.308.308 0 0 1 .065-.187.346.346 0 0 1 .1-.088.444.444 0 0 1 .12-.048l.131-.022a1.44 1.44 0 0 0 .231-.043l.004-.013c.009-.038.007-.066-.002-.08l-.011-.012c-.022-.018-.06-.026-.11-.026-.058 0-.1.01-.13.028a.241.241 0 0 0-.08.1h-.223l.02-.045a.472.472 0 0 1 .098-.151.408.408 0 0 1 .155-.09.615.615 0 0 1 .155-.03zm.937 0h.026c.054 0 .104.016.151.05l.028.02-.114.188-.032-.022a.13.13 0 0 0-.072-.022.123.123 0 0 0-.066.022.164.164 0 0 0-.054.061.607.607 0 0 0-.055.152l-.102.454h-.214l.197-.887h.2l-.008.037c.01-.007.02-.017.028-.022a.218.218 0 0 1 .087-.031zm.634 0h.038c.121 0 .213.042.272.125.038.054.057.12.057.2a.68.68 0 0 1-.018.142l-.015.065h-.602c-.001.012-.004.025-.004.037 0 .046.01.082.03.109a.189.189 0 0 0 .018.02.154.154 0 0 0 .107.037.214.214 0 0 0 .119-.035.318.318 0 0 0 .096-.105h.23l-.022.044a.49.49 0 0 1-.449.283c-.13 0-.226-.043-.286-.126-.06-.082-.074-.194-.042-.336a.61.61 0 0 1 .186-.34.484.484 0 0 1 .285-.12zm-3.235.016h.22l.028.534a.991.991 0 0 0 .016-.037l.242-.497h.202l.018.523.275-.523h.218l-.48.887h-.198l-.02-.508-.248.508h-.203l-.07-.887zm-5.161.168a.235.235 0 0 0-.14.056.272.272 0 0 0-.077.105h.364l.002-.02a.153.153 0 0 0-.016-.078c-.026-.042-.065-.063-.122-.063h-.011zm.962 0a.234.234 0 0 0-.14.056.278.278 0 0 0-.076.105h.364l.002-.02a.147.147 0 0 0-.017-.078.147.147 0 0 0-.018-.024.137.137 0 0 0-.104-.039h-.01zm7.445 0c-.033.001-.09.01-.147.057a.279.279 0 0 0-.077.104h.366l.002-.02a.15.15 0 0 0-.017-.078.12.12 0 0 0-.098-.06c-.014-.002-.017-.003-.03-.003zm-4.84.004a.245.245 0 0 0-.137.067.4.4 0 0 0-.109.214c-.017.077-.021.155.011.205.02.029.056.06.124.06.06 0 .112-.021.163-.067a.41.41 0 0 0 .109-.218c.02-.09.017-.157-.012-.2-.027-.041-.067-.06-.122-.06-.009 0-.018-.002-.027 0zm3.338.323c-.05.014-.107.025-.181.035a.629.629 0 0 0-.118.026.132.132 0 0 0-.05.035.11.11 0 0 0-.026.048.094.094 0 0 0 0 .037.073.073 0 0 0 .013.023c.015.016.044.024.087.024a.294.294 0 0 0 .133-.03c.04-.02.073-.05.098-.085a.345.345 0 0 0 .044-.113z" }) + ] + } + ); +}); + +exports.default = SiGplv3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.d.ts new file mode 100644 index 000000000..67574ce38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BD0000"; +declare const SiGplv3: IconType; +export { SiGplv3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.mjs new file mode 100644 index 000000000..004ac4dc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGplv3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BD0000"; +const SiGplv3 = React.forwardRef(function SiGplv32({ title = "GPLv3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.588 7.177h-.005c-.43.031-1.003.161-1.546.379H2.056L0 16.526H13.376a2.42 2.42 0 0 0 1.012.296l.006.001h.679c.215-.017.44-.048.672-.094.4-.078.822-.198 1.26-.357.33-.121.67-.264 1.015-.43.75-.36 1.524-.822 2.283-1.38.25-.184.49-.373.72-.565.165-.137.315-.266.608-.536.544-.524.957-1.057 1.197-1.538.003-.015.19-.34.222-.708a.84.84 0 0 0-.146-.592.787.787 0 0 0-.365-.252c.476-.39.864-.808 1.118-1.216.297-.477.429-.95.284-1.348a.927.927 0 0 0-.578-.547 1.57 1.57 0 0 0-.4-.083h-.006zm.014.295h.34c.12.01.228.033.32.066.21.076.34.201.401.37.098.268.013.656-.257 1.09-.27.436-.718.907-1.286 1.333l-.313.236.39.03c.232.018.384.09.47.204.004.009.105.11.089.388a1.76 1.76 0 0 1-.193.602c-.217.437-.611.95-1.136 1.457a15.051 15.051 0 0 1-1.3 1.076c-.084.06-.924.724-2.235 1.352-.336.162-.667.3-.989.418a8.12 8.12 0 0 1-1.215.345c-.22.043-.432.073-.633.088-.198-.001-.397.003-.594 0-.59-.052-1.055-.259-1.332-.636a1.342 1.342 0 0 1-.2-.399 1.778 1.778 0 0 1-.072-.619c.03-.62.32-1.356.824-2.128.535-.82 1.31-1.68 2.27-2.477.216-.179.438-.355.671-.527.288-.211.578-.407.868-.589 1.07-.673 2.136-1.144 3.082-1.384-.904.295-1.918.795-2.92 1.476l-.108.074c-.556.386-1.06.795-1.5 1.208-1.415 1.331-2.163 2.71-1.823 3.518.024.055.053.108.086.159.366.537 1.271.63 2.419.341a9.333 9.333 0 0 0 1.714-.637c1.265-.629 2.237-1.352 2.448-1.786.046-.095.057-.175.025-.239-.15-.304-1.2-.098-2.473.453-.102.044-.206.09-.31.139a9.853 9.853 0 0 1 .716-.603c.25-.188.5-.359.748-.51 1.16-.875 1.747-1.702 1.624-2.01-.023-.057-.072-.097-.148-.121-.241-.077-.683.015-1.219.234-.442.182-.95.45-1.465.785l-.083.054-.247.164.142-.26c.21-.386.555-.79.983-1.164a6.98 6.98 0 0 1 1.941-1.19c.424-.167.83-.27 1.182-.297h-.251c.2-.043.389-.072.549-.084zm-9.939.097c-.058.884.114 2.18.503 3.617a20.062 20.062 0 0 0 .386 1.26c-.032.047-.064.093-.094.14-.486.744-.77 1.447-.84 2.058a12.67 12.67 0 0 1-.448-2.237 13.603 13.603 0 0 1-.057-.678c-.096-1.622.116-3.093.55-4.16zm-9.685 1.15h2.219c.186 0 .33.036.434.106.102.07.14.162.116.273l-.26 1.177h-.77l.252-1.145H3.041l-.948 4.288H4.02l.388-1.752h-.905l.086-.393h1.676l-.48 2.176a.307.307 0 0 1-.034.087.48.48 0 0 1-.205.184c-.133.07-.293.106-.48.106H1.882c-.186 0-.33-.035-.434-.106-.102-.07-.141-.16-.116-.271l.962-4.35c.025-.112.103-.203.237-.274l.015-.005c.122-.062.266-.096.432-.1zm3.425 0h2.75c.185 0 .33.036.433.106.103.07.143.162.118.273l-.514 2.32c-.024.111-.103.201-.238.272a1.01 1.01 0 0 1-.478.107h-2c-.149.677-.3 1.352-.448 2.029h-.754l1.13-5.106zm3.8 0h.753l-1.04 4.699h1.803c.02.138.041.274.065.408H9.072l1.13-5.106zm-3.137.41-.5 2.258h1.878l.499-2.257zm-1.58 5.051h.023a.53.53 0 0 1 .225.045c.066.03.113.076.139.137a.334.334 0 0 1 .018.197l-.005.028h-.217l.002-.026c.006-.05 0-.09-.02-.118a.1.1 0 0 0-.028-.026.267.267 0 0 0-.138-.03.323.323 0 0 0-.183.043c-.04.028-.066.059-.074.096-.008.038.005.058.015.068l.002.002c.011.01.053.034.182.065.117.028.195.054.239.075a.282.282 0 0 1 .136.132c.025.053.03.115.015.183a.417.417 0 0 1-.098.182.495.495 0 0 1-.186.133.63.63 0 0 1-.24.048.599.599 0 0 1-.26-.048.298.298 0 0 1-.149-.153.376.376 0 0 1-.018-.223l.005-.026h.213l-.002.026c-.005.049 0 .088.013.118a.143.143 0 0 0 .074.07.407.407 0 0 0 .288.006.248.248 0 0 0 .098-.06.164.164 0 0 0 .042-.079c.006-.025.005-.047-.005-.065-.011-.019-.034-.035-.069-.05l-.18-.053a.813.813 0 0 1-.21-.074.259.259 0 0 1-.112-.122.263.263 0 0 1-.01-.16.391.391 0 0 1 .091-.176.454.454 0 0 1 .181-.124.636.636 0 0 1 .204-.04zm1.94.004h.035l.133.015.045.004-.065.164-.013.026-.102-.01c-.03 0-.052.005-.066.015a.255.255 0 0 0-.011.012.175.175 0 0 0-.028.07l-.007.03h.159l-.041.182H7.31l-.157.704h-.214l.157-.704h-.124l.04-.183h.122l.015-.057a.452.452 0 0 1 .044-.131.279.279 0 0 1 .233-.137zm.512.01-.07.315h.138l-.04.183h-.139l-.1.445s-.007.043-.007.065l.024.002.102-.007-.012.164.002.03-.146.016c-.058 0-.1-.01-.13-.03a.13.13 0 0 1-.06-.084c-.001-.007-.004-.016-.004-.03 0-.027.005-.072.023-.15l.094-.42H7.51l.04-.184h.102l.043-.188.242-.128zM1.13 14.2h.832l-.046.207h-.608l-.061.273h.526l-.046.207h-.526l-.113.508H.865l.265-1.195zm1.114.292h.026c.054 0 .103.016.15.05l.03.02-.115.188-.031-.022a.135.135 0 0 0-.074-.022.116.116 0 0 0-.065.022.163.163 0 0 0-.055.061.585.585 0 0 0-.056.152l-.1.454H1.74l.198-.887h.2l-.01.037c.01-.007.02-.017.028-.022a.228.228 0 0 1 .088-.031zm.636 0h.039c.12 0 .212.042.271.125.038.054.058.12.058.2 0 .044-.006.09-.017.142l-.017.065h-.602a.408.408 0 0 0-.002.037c0 .046.01.082.03.109.01.013.02.024.033.033a.164.164 0 0 0 .09.024.213.213 0 0 0 .119-.035.312.312 0 0 0 .096-.105h.229l-.02.044a.49.49 0 0 1-.449.283c-.131 0-.228-.043-.288-.126-.06-.082-.073-.194-.041-.336a.612.612 0 0 1 .188-.34.477.477 0 0 1 .283-.12zm.962 0h.04c.12 0 .211.042.27.125.038.054.058.12.058.2a.65.65 0 0 1-.033.207h-.602l-.002.024c0 .02 0 .026.002.039a.16.16 0 0 0 .027.083l.01.013a.15.15 0 0 0 .114.044.212.212 0 0 0 .118-.035.312.312 0 0 0 .096-.105h.231l-.022.044a.49.49 0 0 1-.449.283c-.13 0-.228-.043-.288-.126-.079-.108-.059-.256-.04-.336a.612.612 0 0 1 .186-.34.483.483 0 0 1 .284-.12zm2.622 0h.039c.122 0 .217.041.278.124.061.082.076.193.045.332a.681.681 0 0 1-.107.26.509.509 0 0 1-.405.206c-.125 0-.219-.043-.279-.126-.078-.104-.064-.25-.042-.344a.58.58 0 0 1 .214-.356.5.5 0 0 1 .257-.096zm3.245 0c.016-.001.03 0 .047 0 .074 0 .133.007.177.026.047.019.08.045.1.077.018.03.027.067.027.113l-.022.135-.04.183a2.008 2.008 0 0 0-.045.236c-.001.03.001.058.01.085l.014.048H9.76l-.009-.028c-.003-.013-.002-.03-.004-.044a.522.522 0 0 1-.29.09c-.1 0-.174-.026-.22-.077a.196.196 0 0 1-.05-.137.308.308 0 0 1 .065-.187.346.346 0 0 1 .1-.088.444.444 0 0 1 .12-.048l.131-.022a1.44 1.44 0 0 0 .231-.043l.004-.013c.009-.038.007-.066-.002-.08l-.011-.012c-.022-.018-.06-.026-.11-.026-.058 0-.1.01-.13.028a.241.241 0 0 0-.08.1h-.223l.02-.045a.472.472 0 0 1 .098-.151.408.408 0 0 1 .155-.09.615.615 0 0 1 .155-.03zm.937 0h.026c.054 0 .104.016.151.05l.028.02-.114.188-.032-.022a.13.13 0 0 0-.072-.022.123.123 0 0 0-.066.022.164.164 0 0 0-.054.061.607.607 0 0 0-.055.152l-.102.454h-.214l.197-.887h.2l-.008.037c.01-.007.02-.017.028-.022a.218.218 0 0 1 .087-.031zm.634 0h.038c.121 0 .213.042.272.125.038.054.057.12.057.2a.68.68 0 0 1-.018.142l-.015.065h-.602c-.001.012-.004.025-.004.037 0 .046.01.082.03.109a.189.189 0 0 0 .018.02.154.154 0 0 0 .107.037.214.214 0 0 0 .119-.035.318.318 0 0 0 .096-.105h.23l-.022.044a.49.49 0 0 1-.449.283c-.13 0-.226-.043-.286-.126-.06-.082-.074-.194-.042-.336a.61.61 0 0 1 .186-.34.484.484 0 0 1 .285-.12zm-3.235.016h.22l.028.534a.991.991 0 0 0 .016-.037l.242-.497h.202l.018.523.275-.523h.218l-.48.887h-.198l-.02-.508-.248.508h-.203l-.07-.887zm-5.161.168a.235.235 0 0 0-.14.056.272.272 0 0 0-.077.105h.364l.002-.02a.153.153 0 0 0-.016-.078c-.026-.042-.065-.063-.122-.063h-.011zm.962 0a.234.234 0 0 0-.14.056.278.278 0 0 0-.076.105h.364l.002-.02a.147.147 0 0 0-.017-.078.147.147 0 0 0-.018-.024.137.137 0 0 0-.104-.039h-.01zm7.445 0c-.033.001-.09.01-.147.057a.279.279 0 0 0-.077.104h.366l.002-.02a.15.15 0 0 0-.017-.078.12.12 0 0 0-.098-.06c-.014-.002-.017-.003-.03-.003zm-4.84.004a.245.245 0 0 0-.137.067.4.4 0 0 0-.109.214c-.017.077-.021.155.011.205.02.029.056.06.124.06.06 0 .112-.021.163-.067a.41.41 0 0 0 .109-.218c.02-.09.017-.157-.012-.2-.027-.041-.067-.06-.122-.06-.009 0-.018-.002-.027 0zm3.338.323c-.05.014-.107.025-.181.035a.629.629 0 0 0-.118.026.132.132 0 0 0-.05.035.11.11 0 0 0-.026.048.094.094 0 0 0 0 .037.073.073 0 0 0 .013.023c.015.016.044.024.087.024a.294.294 0 0 0 .133-.03c.04-.02.073-.05.098-.085a.345.345 0 0 0 .044-.113z" }) + ] + } + ); +}); + +export { SiGplv3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.cjs new file mode 100644 index 000000000..f6934227c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B14F"; +const SiGrab = React__namespace.forwardRef(function SiGrab2({ title = "Grab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.129 10.863a2.927 2.927 0 00-2.079-.872c-.57 0-1.141.212-1.455.421-.651.434-1.186.904-2.149 2.148v.894c.817-1.064 1.59-1.903 2.177-2.364.386-.31.933-.501 1.427-.501 1.275 0 2.352 1.077 2.352 2.352v.538c0 .63-.247 1.223-.698 1.668a2.341 2.341 0 01-1.654.685c-1.048 0-1.97-.719-2.22-1.701l-.422.51c.307 1.03 1.417 1.789 2.642 1.789.778 0 1.516-.31 2.079-.872.562-.562.871-1.3.871-2.079v-.538c0-.778-.31-1.517-.871-2.078m-12.8-.274c.406 0 .757.087 1.074.266.149-.186.299-.337.411-.449-.335-.256-.903-.415-1.485-.415-.83 0-1.584.3-2.122.843-.534.54-.83 1.287-.83 2.107v3.489h.598V12.94c0-1.385.968-2.352 2.354-2.352m5.678 5.84v-3.488c0-1.072-.84-1.913-1.913-1.913-.5 0-.976.203-1.343.57a1.895 1.895 0 00-.57 1.343v.538c0 1.037.877 1.913 1.913 1.913.285 0 .671-.07.908-.264v-.631c-.232.187-.57.298-.908.298a1.302 1.302 0 01-1.315-1.316v-.538a1.3 1.3 0 011.315-1.314 1.3 1.3 0 011.316 1.314v3.489zM0 12.596v.193c0 1.036.393 2.003 1.107 2.722a3.759 3.759 0 002.689 1.112c.82 0 1.548-.186 2.162-.551.506-.302.73-.607.75-.635V12.22H3.65v.597H6.11v2.434l-.002.002c-.288.288-.972.77-2.312.77a3.165 3.165 0 01-2.279-.938 3.247 3.247 0 01-.92-2.297v-.193c0-.83.375-1.656 1.026-2.269a3.558 3.558 0 012.442-.967c.847 0 1.438.129 1.913.416v-.67c-.494-.21-1.085-.305-1.913-.305C1.862 8.8 0 10.538 0 12.595m10.329-.968c.226 0 .419.037.571.112.075-.186.151-.339.262-.525-.162-.116-.549-.186-.833-.186-1.09 0-1.913.823-1.913 1.913v3.489h.598V12.94c0-.774.54-1.314 1.315-1.314m-4.351-.702v-.707c-.541-.29-1.131-.419-1.913-.419-.799 0-1.555.293-2.132.824-.577.532-.895 1.233-.895 1.972v.193c0 1.542 1.237 2.796 2.758 2.796 1.237 0 1.745-.405 1.874-.533v-1.794H3.65v.598h1.46v.899l-.005.001c-.187.075-.578.231-1.31.231-.58 0-1.122-.225-1.528-.636a2.203 2.203 0 01-.632-1.562v-.193c0-1.192 1.113-2.198 2.43-2.198.91 0 1.45.147 1.913.528m14.105 1.126c.27-.27.623-.424.967-.424.737 0 1.315.577 1.315 1.314v.538c0 .738-.578 1.316-1.315 1.316-.357 0-.702-.196-.972-.55a2.151 2.151 0 01-.418-1.12l-.484.591c.095.452.33.885.665 1.19.344.313.774.486 1.209.486a1.915 1.915 0 001.913-1.913v-.538c0-.499-.202-.977-.57-1.343a1.896 1.896 0 00-1.343-.57c-.316 0-.818.114-1.417.652l-.002.002c-.16.16-.536.536-.765.804-.384.42-.943 1.054-1.42 1.688v.933c.529-.68.833-1.06 1.33-1.634.445-.519.996-1.15 1.307-1.422m-8.939 1.428c0 .779.31 1.517.872 2.08a2.93 2.93 0 002.078.87c.33 0 .669-.07.908-.188v-.597c-.28.117-.618.188-.908.188-1.274 0-2.352-1.077-2.352-2.353v-.538c0-1.275 1.078-2.352 2.352-2.352a2.34 2.34 0 012.353 2.353v3.488h.598v-3.604a2.979 2.979 0 00-.915-2.006 2.92 2.92 0 00-2.036-.83c-.778 0-1.516.31-2.078.873a2.926 2.926 0 00-.872 2.078zm6.918-2.313c.183-.22.372-.443.596-.631V7.378h-.596zm1.037-.876V7.378h.597V9.88a3.601 3.601 0 00-.597.41" }) + ] + } + ); +}); + +exports.default = SiGrab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.d.ts new file mode 100644 index 000000000..40a59dc05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B14F"; +declare const SiGrab: IconType; +export { SiGrab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.mjs new file mode 100644 index 000000000..ee5bf1f6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B14F"; +const SiGrab = React.forwardRef(function SiGrab2({ title = "Grab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.129 10.863a2.927 2.927 0 00-2.079-.872c-.57 0-1.141.212-1.455.421-.651.434-1.186.904-2.149 2.148v.894c.817-1.064 1.59-1.903 2.177-2.364.386-.31.933-.501 1.427-.501 1.275 0 2.352 1.077 2.352 2.352v.538c0 .63-.247 1.223-.698 1.668a2.341 2.341 0 01-1.654.685c-1.048 0-1.97-.719-2.22-1.701l-.422.51c.307 1.03 1.417 1.789 2.642 1.789.778 0 1.516-.31 2.079-.872.562-.562.871-1.3.871-2.079v-.538c0-.778-.31-1.517-.871-2.078m-12.8-.274c.406 0 .757.087 1.074.266.149-.186.299-.337.411-.449-.335-.256-.903-.415-1.485-.415-.83 0-1.584.3-2.122.843-.534.54-.83 1.287-.83 2.107v3.489h.598V12.94c0-1.385.968-2.352 2.354-2.352m5.678 5.84v-3.488c0-1.072-.84-1.913-1.913-1.913-.5 0-.976.203-1.343.57a1.895 1.895 0 00-.57 1.343v.538c0 1.037.877 1.913 1.913 1.913.285 0 .671-.07.908-.264v-.631c-.232.187-.57.298-.908.298a1.302 1.302 0 01-1.315-1.316v-.538a1.3 1.3 0 011.315-1.314 1.3 1.3 0 011.316 1.314v3.489zM0 12.596v.193c0 1.036.393 2.003 1.107 2.722a3.759 3.759 0 002.689 1.112c.82 0 1.548-.186 2.162-.551.506-.302.73-.607.75-.635V12.22H3.65v.597H6.11v2.434l-.002.002c-.288.288-.972.77-2.312.77a3.165 3.165 0 01-2.279-.938 3.247 3.247 0 01-.92-2.297v-.193c0-.83.375-1.656 1.026-2.269a3.558 3.558 0 012.442-.967c.847 0 1.438.129 1.913.416v-.67c-.494-.21-1.085-.305-1.913-.305C1.862 8.8 0 10.538 0 12.595m10.329-.968c.226 0 .419.037.571.112.075-.186.151-.339.262-.525-.162-.116-.549-.186-.833-.186-1.09 0-1.913.823-1.913 1.913v3.489h.598V12.94c0-.774.54-1.314 1.315-1.314m-4.351-.702v-.707c-.541-.29-1.131-.419-1.913-.419-.799 0-1.555.293-2.132.824-.577.532-.895 1.233-.895 1.972v.193c0 1.542 1.237 2.796 2.758 2.796 1.237 0 1.745-.405 1.874-.533v-1.794H3.65v.598h1.46v.899l-.005.001c-.187.075-.578.231-1.31.231-.58 0-1.122-.225-1.528-.636a2.203 2.203 0 01-.632-1.562v-.193c0-1.192 1.113-2.198 2.43-2.198.91 0 1.45.147 1.913.528m14.105 1.126c.27-.27.623-.424.967-.424.737 0 1.315.577 1.315 1.314v.538c0 .738-.578 1.316-1.315 1.316-.357 0-.702-.196-.972-.55a2.151 2.151 0 01-.418-1.12l-.484.591c.095.452.33.885.665 1.19.344.313.774.486 1.209.486a1.915 1.915 0 001.913-1.913v-.538c0-.499-.202-.977-.57-1.343a1.896 1.896 0 00-1.343-.57c-.316 0-.818.114-1.417.652l-.002.002c-.16.16-.536.536-.765.804-.384.42-.943 1.054-1.42 1.688v.933c.529-.68.833-1.06 1.33-1.634.445-.519.996-1.15 1.307-1.422m-8.939 1.428c0 .779.31 1.517.872 2.08a2.93 2.93 0 002.078.87c.33 0 .669-.07.908-.188v-.597c-.28.117-.618.188-.908.188-1.274 0-2.352-1.077-2.352-2.353v-.538c0-1.275 1.078-2.352 2.352-2.352a2.34 2.34 0 012.353 2.353v3.488h.598v-3.604a2.979 2.979 0 00-.915-2.006 2.92 2.92 0 00-2.036-.83c-.778 0-1.516.31-2.078.873a2.926 2.926 0 00-.872 2.078zm6.918-2.313c.183-.22.372-.443.596-.631V7.378h-.596zm1.037-.876V7.378h.597V9.88a3.601 3.601 0 00-.597.41" }) + ] + } + ); +}); + +export { SiGrab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.cjs new file mode 100644 index 000000000..121ba68d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F97316"; +const SiGradio = React__namespace.forwardRef(function SiGradio2({ title = "Gradio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 12 1.527 A 1.532 1.532 0 0 0 11.24 1.73 L 0.7695 7.732 A 1.532 1.532 0 0 0 0 9.021 L 0 9.109 A 1.532 1.532 0 0 0 0.7695 10.4 L 3.57 12 L 0.7695 13.61 C 0.256 13.9 0 14.42 0 14.94 C 0 15.45 0.256 15.97 0.7695 16.26 L 11.24 22.27 C 11.71 22.54 12.29 22.54 12.76 22.27 L 23.23 16.26 C 23.73 15.98 23.99 15.48 24 14.97 L 24 14.9 C 23.99 14.4 23.73 13.89 23.23 13.61 L 20.42 12 L 23.23 10.4 A 1.532 1.532 0 0 0 24 9.223 L 24 8.91 A 1.532 1.532 0 0 0 23.23 7.732 L 12.76 1.73 A 1.532 1.532 0 0 0 12 1.527 z M 12 4.826 L 19.39 9.061 L 17.34 10.24 L 12.76 7.602 C 12.53 7.47 12.27 7.398 12 7.398 C 11.73 7.398 11.47 7.469 11.24 7.602 L 6.652 10.24 L 4.613 9.061 L 12 4.826 z M 12 10.7 L 14.27 12 L 12 13.3 L 9.734 12 L 12 10.7 z M 6.652 13.77 L 11.24 16.39 A 1.532 1.532 0 0 0 12.76 16.39 L 17.34 13.77 L 19.39 14.94 L 12 19.17 L 4.613 14.94 L 6.652 13.77 z" }) + ] + } + ); +}); + +exports.default = SiGradio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.d.ts new file mode 100644 index 000000000..e1a936b94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F97316"; +declare const SiGradio: IconType; +export { SiGradio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.mjs new file mode 100644 index 000000000..dcc2f4e32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F97316"; +const SiGradio = React.forwardRef(function SiGradio2({ title = "Gradio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 12 1.527 A 1.532 1.532 0 0 0 11.24 1.73 L 0.7695 7.732 A 1.532 1.532 0 0 0 0 9.021 L 0 9.109 A 1.532 1.532 0 0 0 0.7695 10.4 L 3.57 12 L 0.7695 13.61 C 0.256 13.9 0 14.42 0 14.94 C 0 15.45 0.256 15.97 0.7695 16.26 L 11.24 22.27 C 11.71 22.54 12.29 22.54 12.76 22.27 L 23.23 16.26 C 23.73 15.98 23.99 15.48 24 14.97 L 24 14.9 C 23.99 14.4 23.73 13.89 23.23 13.61 L 20.42 12 L 23.23 10.4 A 1.532 1.532 0 0 0 24 9.223 L 24 8.91 A 1.532 1.532 0 0 0 23.23 7.732 L 12.76 1.73 A 1.532 1.532 0 0 0 12 1.527 z M 12 4.826 L 19.39 9.061 L 17.34 10.24 L 12.76 7.602 C 12.53 7.47 12.27 7.398 12 7.398 C 11.73 7.398 11.47 7.469 11.24 7.602 L 6.652 10.24 L 4.613 9.061 L 12 4.826 z M 12 10.7 L 14.27 12 L 12 13.3 L 9.734 12 L 12 10.7 z M 6.652 13.77 L 11.24 16.39 A 1.532 1.532 0 0 0 12.76 16.39 L 17.34 13.77 L 19.39 14.94 L 12 19.17 L 4.613 14.94 L 6.652 13.77 z" }) + ] + } + ); +}); + +export { SiGradio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.cjs new file mode 100644 index 000000000..a1462b165 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02303A"; +const SiGradle = React__namespace.forwardRef(function SiGradle2({ title = "Gradle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.695 4.297a3.807 3.807 0 0 0-5.29-.09.368.368 0 0 0 0 .533l.46.47a.363.363 0 0 0 .474.032 2.182 2.182 0 0 1 2.86 3.291c-3.023 3.02-7.056-5.447-16.211-1.083a1.24 1.24 0 0 0-.534 1.745l1.571 2.713a1.238 1.238 0 0 0 1.681.461l.037-.02-.029.02.688-.384a16.083 16.083 0 0 0 2.193-1.635.384.384 0 0 1 .499-.016.357.357 0 0 1 .016.534 16.435 16.435 0 0 1-2.316 1.741H8.77l-.696.39a1.958 1.958 0 0 1-.963.25 1.987 1.987 0 0 1-1.726-.989L3.9 9.696C1.06 11.72-.686 15.603.26 20.522a.363.363 0 0 0 .354.296h1.675a.363.363 0 0 0 .37-.331 2.478 2.478 0 0 1 4.915 0 .36.36 0 0 0 .357.317h1.638a.363.363 0 0 0 .357-.317 2.478 2.478 0 0 1 4.914 0 .363.363 0 0 0 .358.317h1.627a.363.363 0 0 0 .363-.357c.037-2.294.656-4.93 2.42-6.25 6.108-4.57 4.502-8.486 3.088-9.9zm-6.229 6.901l-1.165-.584a.73.73 0 1 1 1.165.587z" }) + ] + } + ); +}); + +exports.default = SiGradle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.d.ts new file mode 100644 index 000000000..07df48d62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02303A"; +declare const SiGradle: IconType; +export { SiGradle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.mjs new file mode 100644 index 000000000..02fad3984 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02303A"; +const SiGradle = React.forwardRef(function SiGradle2({ title = "Gradle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.695 4.297a3.807 3.807 0 0 0-5.29-.09.368.368 0 0 0 0 .533l.46.47a.363.363 0 0 0 .474.032 2.182 2.182 0 0 1 2.86 3.291c-3.023 3.02-7.056-5.447-16.211-1.083a1.24 1.24 0 0 0-.534 1.745l1.571 2.713a1.238 1.238 0 0 0 1.681.461l.037-.02-.029.02.688-.384a16.083 16.083 0 0 0 2.193-1.635.384.384 0 0 1 .499-.016.357.357 0 0 1 .016.534 16.435 16.435 0 0 1-2.316 1.741H8.77l-.696.39a1.958 1.958 0 0 1-.963.25 1.987 1.987 0 0 1-1.726-.989L3.9 9.696C1.06 11.72-.686 15.603.26 20.522a.363.363 0 0 0 .354.296h1.675a.363.363 0 0 0 .37-.331 2.478 2.478 0 0 1 4.915 0 .36.36 0 0 0 .357.317h1.638a.363.363 0 0 0 .357-.317 2.478 2.478 0 0 1 4.914 0 .363.363 0 0 0 .358.317h1.627a.363.363 0 0 0 .363-.357c.037-2.294.656-4.93 2.42-6.25 6.108-4.57 4.502-8.486 3.088-9.9zm-6.229 6.901l-1.165-.584a.73.73 0 1 1 1.165.587z" }) + ] + } + ); +}); + +export { SiGradle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.cjs new file mode 100644 index 000000000..f63483517 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#82B816"; +const SiGradleplaypublisher = React__namespace.forwardRef(function SiGradleplaypublisher2({ title = "Gradle Play Publisher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.191 6.777a1.409 1.409 0 0 0-1.384 1.41v7.62a1.406 1.406 0 0 0 2.109 1.218l6.633-3.832a1.38 1.38 0 0 0 0-2.392L9.916 6.969a1.39 1.39 0 0 0-.725-.192zm.381 1.33a.895.895 0 0 1 .602.106l5.22 3.014a.896.896 0 0 1 0 1.546l-5.22 3.014a.894.894 0 0 1-1.342-.773V8.986a.895.895 0 0 1 .74-.878zM8.154.633C3.414 2.233 0 6.716 0 12c0 6.626 5.374 12 12 12 5.161 0 9.568-3.266 11.258-7.84l-3.838-.844-5.148 5.149-8.465-2.272-2.272-8.465 5.059-5.056zM12 0c-.471 0-.929.025-1.387.076l.412 3.801 7.168 1.924 1.91 7.101 3.774.832c.084-.567.123-1.14.123-1.734 0-6.626-5.374-12-12-12z" }) + ] + } + ); +}); + +exports.default = SiGradleplaypublisher; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.d.ts new file mode 100644 index 000000000..09a838310 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#82B816"; +declare const SiGradleplaypublisher: IconType; +export { SiGradleplaypublisher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.mjs new file mode 100644 index 000000000..583495606 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGradleplaypublisher.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#82B816"; +const SiGradleplaypublisher = React.forwardRef(function SiGradleplaypublisher2({ title = "Gradle Play Publisher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.191 6.777a1.409 1.409 0 0 0-1.384 1.41v7.62a1.406 1.406 0 0 0 2.109 1.218l6.633-3.832a1.38 1.38 0 0 0 0-2.392L9.916 6.969a1.39 1.39 0 0 0-.725-.192zm.381 1.33a.895.895 0 0 1 .602.106l5.22 3.014a.896.896 0 0 1 0 1.546l-5.22 3.014a.894.894 0 0 1-1.342-.773V8.986a.895.895 0 0 1 .74-.878zM8.154.633C3.414 2.233 0 6.716 0 12c0 6.626 5.374 12 12 12 5.161 0 9.568-3.266 11.258-7.84l-3.838-.844-5.148 5.149-8.465-2.272-2.272-8.465 5.059-5.056zM12 0c-.471 0-.929.025-1.387.076l.412 3.801 7.168 1.924 1.91 7.101 3.774.832c.084-.567.123-1.14.123-1.734 0-6.626-5.374-12-12-12z" }) + ] + } + ); +}); + +export { SiGradleplaypublisher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.cjs new file mode 100644 index 000000000..694a8e2e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F46800"; +const SiGrafana = React__namespace.forwardRef(function SiGrafana2({ title = "Grafana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.02 10.59a8.578 8.578 0 0 0-.862-3.034 8.911 8.911 0 0 0-1.789-2.445c.337-1.342-.413-2.505-.413-2.505-1.292-.08-2.113.4-2.416.62-.052-.02-.102-.044-.154-.064-.22-.089-.446-.172-.677-.247-.231-.073-.47-.14-.711-.197a9.867 9.867 0 0 0-.875-.161C14.557.753 12.94 0 12.94 0c-1.804 1.145-2.147 2.744-2.147 2.744l-.018.093c-.098.029-.2.057-.298.088-.138.042-.275.094-.413.143-.138.055-.275.107-.41.166a8.869 8.869 0 0 0-1.557.87l-.063-.029c-2.497-.955-4.716.195-4.716.195-.203 2.658.996 4.33 1.235 4.636a11.608 11.608 0 0 0-.607 2.635C1.636 12.677.953 15.014.953 15.014c1.926 2.214 4.171 2.351 4.171 2.351.003-.002.006-.002.006-.005.285.509.615.994.986 1.446.156.19.32.371.488.548-.704 2.009.099 3.68.099 3.68 2.144.08 3.553-.937 3.849-1.173a9.784 9.784 0 0 0 3.164.501h.08l.055-.003.107-.002.103-.005.003.002c1.01 1.44 2.788 1.646 2.788 1.646 1.264-1.332 1.337-2.653 1.337-2.94v-.058c0-.02-.003-.039-.003-.06.265-.187.52-.387.758-.6a7.875 7.875 0 0 0 1.415-1.7c1.43.083 2.437-.885 2.437-.885-.236-1.49-1.085-2.216-1.264-2.354l-.018-.013-.016-.013a.217.217 0 0 1-.031-.02c.008-.092.016-.18.02-.27.011-.162.016-.323.016-.48v-.253l-.005-.098-.008-.135a1.891 1.891 0 0 0-.01-.13c-.003-.042-.008-.083-.013-.125l-.016-.124-.018-.122a6.215 6.215 0 0 0-2.032-3.73 6.015 6.015 0 0 0-3.222-1.46 6.292 6.292 0 0 0-.85-.048l-.107.002h-.063l-.044.003-.104.008a4.777 4.777 0 0 0-3.335 1.695c-.332.4-.592.84-.768 1.297a4.594 4.594 0 0 0-.312 1.817l.003.091c.005.055.007.11.013.164a3.615 3.615 0 0 0 .698 1.82 3.53 3.53 0 0 0 1.827 1.282c.33.098.66.14.971.137.039 0 .078 0 .114-.002l.063-.003c.02 0 .041-.003.062-.003.034-.002.065-.007.099-.01.007 0 .018-.003.028-.003l.031-.005.06-.008a1.18 1.18 0 0 0 .112-.02c.036-.008.072-.013.109-.024a2.634 2.634 0 0 0 .914-.415c.028-.02.056-.041.085-.065a.248.248 0 0 0 .039-.35.244.244 0 0 0-.309-.06l-.078.042c-.09.044-.184.083-.283.116a2.476 2.476 0 0 1-.475.096c-.028.003-.054.006-.083.006l-.083.002c-.026 0-.054 0-.08-.002l-.102-.006h-.012l-.024.006c-.016-.003-.031-.003-.044-.006-.031-.002-.06-.007-.091-.01a2.59 2.59 0 0 1-.724-.213 2.557 2.557 0 0 1-.667-.438 2.52 2.52 0 0 1-.805-1.475 2.306 2.306 0 0 1-.029-.444l.006-.122v-.023l.002-.031c.003-.021.003-.04.005-.06a3.163 3.163 0 0 1 1.352-2.29 3.12 3.12 0 0 1 .937-.43 2.946 2.946 0 0 1 .776-.101h.06l.07.002.045.003h.026l.07.005a4.041 4.041 0 0 1 1.635.49 3.94 3.94 0 0 1 1.602 1.662 3.77 3.77 0 0 1 .397 1.414l.005.076.003.075c.002.026.002.05.002.075 0 .024.003.052 0 .07v.065l-.002.073-.008.174a6.195 6.195 0 0 1-.08.639 5.1 5.1 0 0 1-.267.927 5.31 5.31 0 0 1-.624 1.13 5.052 5.052 0 0 1-3.237 2.014 4.82 4.82 0 0 1-.649.066l-.039.003h-.287a6.607 6.607 0 0 1-1.716-.265 6.776 6.776 0 0 1-3.4-2.274 6.75 6.75 0 0 1-.746-1.15 6.616 6.616 0 0 1-.714-2.596l-.005-.083-.002-.02v-.056l-.003-.073v-.096l-.003-.104v-.07l.003-.163c.008-.22.026-.45.054-.678a8.707 8.707 0 0 1 .28-1.355c.128-.444.286-.872.473-1.277a7.04 7.04 0 0 1 1.456-2.1 5.925 5.925 0 0 1 .953-.763c.169-.111.343-.213.524-.306.089-.05.182-.091.273-.135.047-.02.093-.042.138-.062a7.177 7.177 0 0 1 .714-.267l.145-.045c.049-.015.098-.026.148-.041.098-.029.197-.052.296-.076.049-.013.1-.02.15-.033l.15-.032.151-.028.076-.013.075-.01.153-.024c.057-.01.114-.013.171-.023l.169-.021c.036-.003.073-.008.106-.01l.073-.008.036-.003.042-.002c.057-.003.114-.008.171-.01l.086-.006h.023l.037-.003.145-.007a7.999 7.999 0 0 1 1.708.125 7.917 7.917 0 0 1 2.048.68 8.253 8.253 0 0 1 1.672 1.09l.09.077.089.078c.06.052.114.107.171.159.057.052.112.106.166.16.052.055.107.107.159.164a8.671 8.671 0 0 1 1.41 1.978c.012.026.028.052.04.078l.04.078.075.156c.023.051.05.1.07.153l.065.15a8.848 8.848 0 0 1 .45 1.34.19.19 0 0 0 .201.142.186.186 0 0 0 .172-.184c.01-.246.002-.532-.024-.856z" }) + ] + } + ); +}); + +exports.default = SiGrafana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.d.ts new file mode 100644 index 000000000..9f2f70160 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F46800"; +declare const SiGrafana: IconType; +export { SiGrafana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.mjs new file mode 100644 index 000000000..873a594fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrafana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F46800"; +const SiGrafana = React.forwardRef(function SiGrafana2({ title = "Grafana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.02 10.59a8.578 8.578 0 0 0-.862-3.034 8.911 8.911 0 0 0-1.789-2.445c.337-1.342-.413-2.505-.413-2.505-1.292-.08-2.113.4-2.416.62-.052-.02-.102-.044-.154-.064-.22-.089-.446-.172-.677-.247-.231-.073-.47-.14-.711-.197a9.867 9.867 0 0 0-.875-.161C14.557.753 12.94 0 12.94 0c-1.804 1.145-2.147 2.744-2.147 2.744l-.018.093c-.098.029-.2.057-.298.088-.138.042-.275.094-.413.143-.138.055-.275.107-.41.166a8.869 8.869 0 0 0-1.557.87l-.063-.029c-2.497-.955-4.716.195-4.716.195-.203 2.658.996 4.33 1.235 4.636a11.608 11.608 0 0 0-.607 2.635C1.636 12.677.953 15.014.953 15.014c1.926 2.214 4.171 2.351 4.171 2.351.003-.002.006-.002.006-.005.285.509.615.994.986 1.446.156.19.32.371.488.548-.704 2.009.099 3.68.099 3.68 2.144.08 3.553-.937 3.849-1.173a9.784 9.784 0 0 0 3.164.501h.08l.055-.003.107-.002.103-.005.003.002c1.01 1.44 2.788 1.646 2.788 1.646 1.264-1.332 1.337-2.653 1.337-2.94v-.058c0-.02-.003-.039-.003-.06.265-.187.52-.387.758-.6a7.875 7.875 0 0 0 1.415-1.7c1.43.083 2.437-.885 2.437-.885-.236-1.49-1.085-2.216-1.264-2.354l-.018-.013-.016-.013a.217.217 0 0 1-.031-.02c.008-.092.016-.18.02-.27.011-.162.016-.323.016-.48v-.253l-.005-.098-.008-.135a1.891 1.891 0 0 0-.01-.13c-.003-.042-.008-.083-.013-.125l-.016-.124-.018-.122a6.215 6.215 0 0 0-2.032-3.73 6.015 6.015 0 0 0-3.222-1.46 6.292 6.292 0 0 0-.85-.048l-.107.002h-.063l-.044.003-.104.008a4.777 4.777 0 0 0-3.335 1.695c-.332.4-.592.84-.768 1.297a4.594 4.594 0 0 0-.312 1.817l.003.091c.005.055.007.11.013.164a3.615 3.615 0 0 0 .698 1.82 3.53 3.53 0 0 0 1.827 1.282c.33.098.66.14.971.137.039 0 .078 0 .114-.002l.063-.003c.02 0 .041-.003.062-.003.034-.002.065-.007.099-.01.007 0 .018-.003.028-.003l.031-.005.06-.008a1.18 1.18 0 0 0 .112-.02c.036-.008.072-.013.109-.024a2.634 2.634 0 0 0 .914-.415c.028-.02.056-.041.085-.065a.248.248 0 0 0 .039-.35.244.244 0 0 0-.309-.06l-.078.042c-.09.044-.184.083-.283.116a2.476 2.476 0 0 1-.475.096c-.028.003-.054.006-.083.006l-.083.002c-.026 0-.054 0-.08-.002l-.102-.006h-.012l-.024.006c-.016-.003-.031-.003-.044-.006-.031-.002-.06-.007-.091-.01a2.59 2.59 0 0 1-.724-.213 2.557 2.557 0 0 1-.667-.438 2.52 2.52 0 0 1-.805-1.475 2.306 2.306 0 0 1-.029-.444l.006-.122v-.023l.002-.031c.003-.021.003-.04.005-.06a3.163 3.163 0 0 1 1.352-2.29 3.12 3.12 0 0 1 .937-.43 2.946 2.946 0 0 1 .776-.101h.06l.07.002.045.003h.026l.07.005a4.041 4.041 0 0 1 1.635.49 3.94 3.94 0 0 1 1.602 1.662 3.77 3.77 0 0 1 .397 1.414l.005.076.003.075c.002.026.002.05.002.075 0 .024.003.052 0 .07v.065l-.002.073-.008.174a6.195 6.195 0 0 1-.08.639 5.1 5.1 0 0 1-.267.927 5.31 5.31 0 0 1-.624 1.13 5.052 5.052 0 0 1-3.237 2.014 4.82 4.82 0 0 1-.649.066l-.039.003h-.287a6.607 6.607 0 0 1-1.716-.265 6.776 6.776 0 0 1-3.4-2.274 6.75 6.75 0 0 1-.746-1.15 6.616 6.616 0 0 1-.714-2.596l-.005-.083-.002-.02v-.056l-.003-.073v-.096l-.003-.104v-.07l.003-.163c.008-.22.026-.45.054-.678a8.707 8.707 0 0 1 .28-1.355c.128-.444.286-.872.473-1.277a7.04 7.04 0 0 1 1.456-2.1 5.925 5.925 0 0 1 .953-.763c.169-.111.343-.213.524-.306.089-.05.182-.091.273-.135.047-.02.093-.042.138-.062a7.177 7.177 0 0 1 .714-.267l.145-.045c.049-.015.098-.026.148-.041.098-.029.197-.052.296-.076.049-.013.1-.02.15-.033l.15-.032.151-.028.076-.013.075-.01.153-.024c.057-.01.114-.013.171-.023l.169-.021c.036-.003.073-.008.106-.01l.073-.008.036-.003.042-.002c.057-.003.114-.008.171-.01l.086-.006h.023l.037-.003.145-.007a7.999 7.999 0 0 1 1.708.125 7.917 7.917 0 0 1 2.048.68 8.253 8.253 0 0 1 1.672 1.09l.09.077.089.078c.06.052.114.107.171.159.057.052.112.106.166.16.052.055.107.107.159.164a8.671 8.671 0 0 1 1.41 1.978c.012.026.028.052.04.078l.04.078.075.156c.023.051.05.1.07.153l.065.15a8.848 8.848 0 0 1 .45 1.34.19.19 0 0 0 .201.142.186.186 0 0 0 .172-.184c.01-.246.002-.532-.024-.856z" }) + ] + } + ); +}); + +export { SiGrafana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.cjs new file mode 100644 index 000000000..1cc35cd52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#027E6F"; +const SiGrammarly = React__namespace.forwardRef(function SiGrammarly2({ title = "Grammarly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24H.032V12c0-3.314 1.341-6.314 3.504-8.486C5.703 1.344 8.694 0 12 0c3.305 0 6.297 1.344 8.463 3.514 2.164 2.172 3.505 5.172 3.505 8.486s-1.338 6.314-3.505 8.486C18.297 22.656 15.305 24 12 24m2.889-13.137-1.271 2.205h4.418c-.505 2.882-3.018 5.078-6.036 5.078-3.38 0-6.132-2.757-6.132-6.146S8.618 5.854 12 5.854c1.821 0 3.458.801 4.584 2.069l1.143-1.988c-1.493-1.418-3.506-2.29-5.725-2.29-4.6 0-8.332 3.74-8.332 8.355s3.73 8.354 8.332 8.354c4.603 0 8.332-3.739 8.332-8.354 0-.387-.029-.765-.079-1.137z" }) + ] + } + ); +}); + +exports.default = SiGrammarly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.d.ts new file mode 100644 index 000000000..bb210b67a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#027E6F"; +declare const SiGrammarly: IconType; +export { SiGrammarly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.mjs new file mode 100644 index 000000000..450daa7a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrammarly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#027E6F"; +const SiGrammarly = React.forwardRef(function SiGrammarly2({ title = "Grammarly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24H.032V12c0-3.314 1.341-6.314 3.504-8.486C5.703 1.344 8.694 0 12 0c3.305 0 6.297 1.344 8.463 3.514 2.164 2.172 3.505 5.172 3.505 8.486s-1.338 6.314-3.505 8.486C18.297 22.656 15.305 24 12 24m2.889-13.137-1.271 2.205h4.418c-.505 2.882-3.018 5.078-6.036 5.078-3.38 0-6.132-2.757-6.132-6.146S8.618 5.854 12 5.854c1.821 0 3.458.801 4.584 2.069l1.143-1.988c-1.493-1.418-3.506-2.29-5.725-2.29-4.6 0-8.332 3.74-8.332 8.355s3.73 8.354 8.332 8.354c4.603 0 8.332-3.739 8.332-8.354 0-.387-.029-.765-.079-1.137z" }) + ] + } + ); +}); + +export { SiGrammarly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.cjs new file mode 100644 index 000000000..f693bdeaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED2D2F"; +const SiGrandfrais = React__namespace.forwardRef(function SiGrandfrais2({ title = "Grand Frais", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.003 0a11.92 11.92 0 0 0-8.485 3.512A11.92 11.92 0 0 0 0 11.998c0 3.205 1.248 6.22 3.515 8.488A11.914 11.914 0 0 0 11.995 24a11.922 11.922 0 0 0 8.487-3.512A11.92 11.92 0 0 0 24 12.003c0-3.205-1.247-6.219-3.512-8.486A11.924 11.924 0 0 0 12.003 0zm0 1.336c5.879.002 10.66 4.785 10.66 10.664v.003l-.001.146H19.41c.488.15.816.594.884 1.233l.004.044-.933.103-.003-.046c-.04-.479-.313-.53-.428-.53-.258 0-.4.164-.4.463 0 .369.34.657.73.99.503.427 1.073.912 1.073 1.714 0 .845-.553 1.37-1.446 1.37-.9 0-1.341-.74-1.376-1.475l-.002-.04.933-.134.003.048c.031.469.208.738.485.738.298 0 .47-.156.47-.428 0-.443-.353-.737-.76-1.077-.489-.407-1.042-.868-1.042-1.698 0-.847.516-1.334 1.418-1.334.137 0 .266.02.386.057.627-.16.945-.667.945-1.513V8.61c.001-.545-.132-.953-.395-1.213-.237-.236-.584-.355-1.031-.355h-1.341l-.001 5.104h-.802l.002-5.104-.853-.002v.014l-.004 2.814a18946 18946 0 0 0-1.044-2.828h-.866l-.002 5.105h-.463l-.948-5.105h-1.145l-.951 5.105h-.314L9.46 9.874c.282-.136.613-.471.613-1.3 0-1.06-.47-1.533-1.525-1.534h-1.27v5.105h-.845l.001-2.589H4.93v.748h.565v.467c-.002.495-.126.679-.459.679-.263 0-.386-.162-.386-.509V8.318c0-.353.124-.53.366-.53.31 0 .479.148.479.934v.027h.898v-.353c0-.866-.532-1.427-1.355-1.427-.807 0-1.328.525-1.328 1.335v2.629c0 .576.241 1.008.645 1.21h1.1c.13-.073.239-.175.35-.303l.131.303h.451v.86H4.799v1.242h1.187v.863H4.799v2.288H3.82v-5.252H1.338l-.002-.146c0-2.85 1.11-5.527 3.126-7.541a10.591 10.591 0 0 1 7.54-3.121zm-3.785 6.48.287.001c.476 0 .628.184.628.757s-.152.757-.629.757h-.286zm10.307.003h.28c.454 0 .608.173.608.686v2.235c0 .282-.046.452-.149.554-.093.092-.235.132-.461.132h-.278zm-6.494.4.322 2.032h-.647l.056-.351.27-1.68zm2.84.884 1.073 3.04h.409v5.253h-.975v-5.25h-.507zm-6.243.985.609 2.058h-.49c1.001.03 1.45.514 1.45 1.565 0 .834-.324 1.18-.612 1.324l.76 2.361h-.997L8.72 15.26a4.527 4.527 0 0 1-.382.019v2.117h-.976v-5.253h.856v-2.037c.142 0 .303-.008.41-.018zm2.942.981h.92l.151 1.074h.635l.967 5.253h-.93l-.176-1.144h-.896l-.173 1.144h-.935l.968-5.25h-.682l.15-1.077zM8.338 12.96v1.5h.27c.47 0 .613-.175.613-.75 0-.574-.142-.75-.612-.75zm4.353.355-.328 2.151h.654z" }) + ] + } + ); +}); + +exports.default = SiGrandfrais; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.d.ts new file mode 100644 index 000000000..ae4c890c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED2D2F"; +declare const SiGrandfrais: IconType; +export { SiGrandfrais as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.mjs new file mode 100644 index 000000000..cccaddb60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrandfrais.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED2D2F"; +const SiGrandfrais = React.forwardRef(function SiGrandfrais2({ title = "Grand Frais", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.003 0a11.92 11.92 0 0 0-8.485 3.512A11.92 11.92 0 0 0 0 11.998c0 3.205 1.248 6.22 3.515 8.488A11.914 11.914 0 0 0 11.995 24a11.922 11.922 0 0 0 8.487-3.512A11.92 11.92 0 0 0 24 12.003c0-3.205-1.247-6.219-3.512-8.486A11.924 11.924 0 0 0 12.003 0zm0 1.336c5.879.002 10.66 4.785 10.66 10.664v.003l-.001.146H19.41c.488.15.816.594.884 1.233l.004.044-.933.103-.003-.046c-.04-.479-.313-.53-.428-.53-.258 0-.4.164-.4.463 0 .369.34.657.73.99.503.427 1.073.912 1.073 1.714 0 .845-.553 1.37-1.446 1.37-.9 0-1.341-.74-1.376-1.475l-.002-.04.933-.134.003.048c.031.469.208.738.485.738.298 0 .47-.156.47-.428 0-.443-.353-.737-.76-1.077-.489-.407-1.042-.868-1.042-1.698 0-.847.516-1.334 1.418-1.334.137 0 .266.02.386.057.627-.16.945-.667.945-1.513V8.61c.001-.545-.132-.953-.395-1.213-.237-.236-.584-.355-1.031-.355h-1.341l-.001 5.104h-.802l.002-5.104-.853-.002v.014l-.004 2.814a18946 18946 0 0 0-1.044-2.828h-.866l-.002 5.105h-.463l-.948-5.105h-1.145l-.951 5.105h-.314L9.46 9.874c.282-.136.613-.471.613-1.3 0-1.06-.47-1.533-1.525-1.534h-1.27v5.105h-.845l.001-2.589H4.93v.748h.565v.467c-.002.495-.126.679-.459.679-.263 0-.386-.162-.386-.509V8.318c0-.353.124-.53.366-.53.31 0 .479.148.479.934v.027h.898v-.353c0-.866-.532-1.427-1.355-1.427-.807 0-1.328.525-1.328 1.335v2.629c0 .576.241 1.008.645 1.21h1.1c.13-.073.239-.175.35-.303l.131.303h.451v.86H4.799v1.242h1.187v.863H4.799v2.288H3.82v-5.252H1.338l-.002-.146c0-2.85 1.11-5.527 3.126-7.541a10.591 10.591 0 0 1 7.54-3.121zm-3.785 6.48.287.001c.476 0 .628.184.628.757s-.152.757-.629.757h-.286zm10.307.003h.28c.454 0 .608.173.608.686v2.235c0 .282-.046.452-.149.554-.093.092-.235.132-.461.132h-.278zm-6.494.4.322 2.032h-.647l.056-.351.27-1.68zm2.84.884 1.073 3.04h.409v5.253h-.975v-5.25h-.507zm-6.243.985.609 2.058h-.49c1.001.03 1.45.514 1.45 1.565 0 .834-.324 1.18-.612 1.324l.76 2.361h-.997L8.72 15.26a4.527 4.527 0 0 1-.382.019v2.117h-.976v-5.253h.856v-2.037c.142 0 .303-.008.41-.018zm2.942.981h.92l.151 1.074h.635l.967 5.253h-.93l-.176-1.144h-.896l-.173 1.144h-.935l.968-5.25h-.682l.15-1.077zM8.338 12.96v1.5h.27c.47 0 .613-.175.613-.75 0-.574-.142-.75-.612-.75zm4.353.355-.328 2.151h.654z" }) + ] + } + ); +}); + +export { SiGrandfrais as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.cjs new file mode 100644 index 000000000..f2a22995c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0053A3"; +const SiGrapheneos = React__namespace.forwardRef(function SiGrapheneos2({ title = "GrapheneOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.953 7.244 3.458-1.97a1.901 1.901 0 0 1-.108-.608c0-.835.608-1.525 1.407-1.67V0h.58v2.995a1.704 1.704 0 0 1 1.407 1.67c0 .219-.045.418-.118.609l3.468 1.97c.127-.146.281-.273.454-.382a1.705 1.705 0 0 1 2.151.382l2.596-1.498.29.508-2.595 1.498a1.69 1.69 0 0 1-1.244 2.242v4.012a1.69 1.69 0 0 1 1.244 2.242l2.596 1.498-.29.508-2.597-1.498a1.705 1.705 0 0 1-2.151.382 2.065 2.065 0 0 1-.454-.382c-1.153.654-2.306 1.317-3.468 1.97.073.19.118.39.118.608 0 .835-.608 1.525-1.407 1.67V24h-.58v-2.995a1.704 1.704 0 0 1-1.407-1.67c0-.219.045-.418.108-.609l-3.458-1.97a2.065 2.065 0 0 1-.454.382 1.705 1.705 0 0 1-2.151-.382l-2.596 1.498-.29-.508 2.595-1.498a1.69 1.69 0 0 1 1.244-2.242V9.994a1.69 1.69 0 0 1-1.244-2.242L1.461 6.254l.29-.508 2.597 1.498a1.705 1.705 0 0 1 2.151-.382c.173.11.327.236.454.382Zm9.803 9.004a1.682 1.682 0 0 1 .128-1.425 1.702 1.702 0 0 1 1.234-.835v-3.976a1.702 1.702 0 0 1-1.234-.835 1.682 1.682 0 0 1-.128-1.425L13.29 5.773c-.318.363-.772.59-1.289.59-.517 0-.971-.227-1.289-.59L7.244 7.752c.163.454.136.98-.128 1.425a1.702 1.702 0 0 1-1.234.835v3.976c.5.073.962.363 1.234.835.264.445.291.971.128 1.425l3.467 1.979c.318-.363.772-.59 1.289-.59.517 0 .971.227 1.289.59z" }) + ] + } + ); +}); + +exports.default = SiGrapheneos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.d.ts new file mode 100644 index 000000000..603ffb8c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0053A3"; +declare const SiGrapheneos: IconType; +export { SiGrapheneos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.mjs new file mode 100644 index 000000000..4adccd6d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrapheneos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0053A3"; +const SiGrapheneos = React.forwardRef(function SiGrapheneos2({ title = "GrapheneOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.953 7.244 3.458-1.97a1.901 1.901 0 0 1-.108-.608c0-.835.608-1.525 1.407-1.67V0h.58v2.995a1.704 1.704 0 0 1 1.407 1.67c0 .219-.045.418-.118.609l3.468 1.97c.127-.146.281-.273.454-.382a1.705 1.705 0 0 1 2.151.382l2.596-1.498.29.508-2.595 1.498a1.69 1.69 0 0 1-1.244 2.242v4.012a1.69 1.69 0 0 1 1.244 2.242l2.596 1.498-.29.508-2.597-1.498a1.705 1.705 0 0 1-2.151.382 2.065 2.065 0 0 1-.454-.382c-1.153.654-2.306 1.317-3.468 1.97.073.19.118.39.118.608 0 .835-.608 1.525-1.407 1.67V24h-.58v-2.995a1.704 1.704 0 0 1-1.407-1.67c0-.219.045-.418.108-.609l-3.458-1.97a2.065 2.065 0 0 1-.454.382 1.705 1.705 0 0 1-2.151-.382l-2.596 1.498-.29-.508 2.595-1.498a1.69 1.69 0 0 1 1.244-2.242V9.994a1.69 1.69 0 0 1-1.244-2.242L1.461 6.254l.29-.508 2.597 1.498a1.705 1.705 0 0 1 2.151-.382c.173.11.327.236.454.382Zm9.803 9.004a1.682 1.682 0 0 1 .128-1.425 1.702 1.702 0 0 1 1.234-.835v-3.976a1.702 1.702 0 0 1-1.234-.835 1.682 1.682 0 0 1-.128-1.425L13.29 5.773c-.318.363-.772.59-1.289.59-.517 0-.971-.227-1.289-.59L7.244 7.752c.163.454.136.98-.128 1.425a1.702 1.702 0 0 1-1.234.835v3.976c.5.073.962.363 1.234.835.264.445.291.971.128 1.425l3.467 1.979c.318-.363.772-.59 1.289-.59.517 0 .971.227 1.289.59z" }) + ] + } + ); +}); + +export { SiGrapheneos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.cjs new file mode 100644 index 000000000..8b1a109ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGraphite = React__namespace.forwardRef(function SiGraphite2({ title = "Graphite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.215 0-12 3.215-3.215 12L8.785 24l12-3.215 3.215-12L15.215 0Zm1.958 20.966H6.827L1.655 12l5.172-8.966h10.346L22.345 12l-5.172 8.966Zm.68-14.823L9.86 4 4.006 9.858l2.14 8 7.995 2.141 5.853-5.857-2.14-8Z" }) + ] + } + ); +}); + +exports.default = SiGraphite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.d.ts new file mode 100644 index 000000000..d22ff2b24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGraphite: IconType; +export { SiGraphite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.mjs new file mode 100644 index 000000000..c7dcf3782 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGraphite = React.forwardRef(function SiGraphite2({ title = "Graphite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.215 0-12 3.215-3.215 12L8.785 24l12-3.215 3.215-12L15.215 0Zm1.958 20.966H6.827L1.655 12l5.172-8.966h10.346L22.345 12l-5.172 8.966Zm.68-14.823L9.86 4 4.006 9.858l2.14 8 7.995 2.141 5.853-5.857-2.14-8Z" }) + ] + } + ); +}); + +export { SiGraphite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.cjs new file mode 100644 index 000000000..923804929 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#473A3A"; +const SiGraphiteEditor = React__namespace.forwardRef(function SiGraphiteEditor2({ title = "Graphite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.738 15.97-3.5-6.06c-.15-.23-.08-.54.15-.69s.54-.08.69.15c.01.01.02.03.02.04l3.5 6.06c.15.23.08.54-.15.69s-.54.08-.69-.15a.1.1 0 0 1-.02-.04m15.82 5.93c.03.3-.08.6-.31.81-.42.51-2.24.89-3.61 1.08-.91.13-1.83.2-2.75.21-.86-.01-2.06-.23-3.2-.3-1.61-.1-6.94-.3-8.78-.29-2.06.01-2.47-.11-2.82-.41-.14-.11 1.03-.7 3.5-.9 6.02-.49 11.33-.55 13.14-.46.73.04 1.45.17 2.15.38l-3.86-2.77c-.32.21-.7.33-1.08.33h-9c-.71 0-1.37-.38-1.73-1l-4.5-7.79c-.36-.62-.36-1.38 0-2L5.208 1c.35-.62 1.01-1 1.73-1h9c.71 0 1.38.38 1.73 1l3.32 5.75 1.18 2.04.01.02c0 .01.01.02.01.02q.21.375.24.81c0 .05 1.03 11.25 1.12 12.19zM6.518 2.73l5.61 9.72c.7-.17 1.42-.26 2.14-.25l1.48-2.01 2.48-.28c.36-.63.79-1.21 1.29-1.73l-3.33-5.76a1 1 0 0 0-.75-.43h-8c-.3.02-.58.18-.75.43zm8.18 14.86-3.1-2.22a1 1 0 0 1-.28-.31L5.358 4.73l-2.67 4.63c-.14.27-.14.59 0 .87l4 6.93c.17.26.45.42.75.43zm6.38-.43-.7-7.09c-.44.48-.83 1.01-1.15 1.58l-2.48.28-1.48 2.01c-.65 0-1.31.07-1.94.21l5.79 4.15a1.91 1.91 0 0 1 1.96-1.14" }) + ] + } + ); +}); + +exports.default = SiGraphiteEditor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.d.ts new file mode 100644 index 000000000..192b03bb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#473A3A"; +declare const SiGraphiteEditor: IconType; +export { SiGraphiteEditor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.mjs new file mode 100644 index 000000000..492316725 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphiteEditor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#473A3A"; +const SiGraphiteEditor = React.forwardRef(function SiGraphiteEditor2({ title = "Graphite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.738 15.97-3.5-6.06c-.15-.23-.08-.54.15-.69s.54-.08.69.15c.01.01.02.03.02.04l3.5 6.06c.15.23.08.54-.15.69s-.54.08-.69-.15a.1.1 0 0 1-.02-.04m15.82 5.93c.03.3-.08.6-.31.81-.42.51-2.24.89-3.61 1.08-.91.13-1.83.2-2.75.21-.86-.01-2.06-.23-3.2-.3-1.61-.1-6.94-.3-8.78-.29-2.06.01-2.47-.11-2.82-.41-.14-.11 1.03-.7 3.5-.9 6.02-.49 11.33-.55 13.14-.46.73.04 1.45.17 2.15.38l-3.86-2.77c-.32.21-.7.33-1.08.33h-9c-.71 0-1.37-.38-1.73-1l-4.5-7.79c-.36-.62-.36-1.38 0-2L5.208 1c.35-.62 1.01-1 1.73-1h9c.71 0 1.38.38 1.73 1l3.32 5.75 1.18 2.04.01.02c0 .01.01.02.01.02q.21.375.24.81c0 .05 1.03 11.25 1.12 12.19zM6.518 2.73l5.61 9.72c.7-.17 1.42-.26 2.14-.25l1.48-2.01 2.48-.28c.36-.63.79-1.21 1.29-1.73l-3.33-5.76a1 1 0 0 0-.75-.43h-8c-.3.02-.58.18-.75.43zm8.18 14.86-3.1-2.22a1 1 0 0 1-.28-.31L5.358 4.73l-2.67 4.63c-.14.27-.14.59 0 .87l4 6.93c.17.26.45.42.75.43zm6.38-.43-.7-7.09c-.44.48-.83 1.01-1.15 1.58l-2.48.28-1.48 2.01c-.65 0-1.31.07-1.94.21l5.79 4.15a1.91 1.91 0 0 1 1.96-1.14" }) + ] + } + ); +}); + +export { SiGraphiteEditor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.cjs new file mode 100644 index 000000000..8bcc040ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E10098"; +const SiGraphql = React__namespace.forwardRef(function SiGraphql2({ title = "GraphQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002 0a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm8.54 4.931a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm0 9.862a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm-8.54 4.931a2.138 2.138 0 1 0 0 4.276 2.138 2.138 0 1 0 0-4.276zm-8.542-4.93a2.138 2.138 0 1 0 0 4.276 2.138 2.138 0 1 0 0-4.277zm0-9.863a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm8.542-3.378L2.953 6.777v10.448l9.049 5.224 9.047-5.224V6.777zm0 1.601 7.66 13.27H4.34zm-1.387.371L3.97 15.037V7.363zm2.774 0 6.646 3.838v7.674zM5.355 17.44h13.293l-6.646 3.836z" }) + ] + } + ); +}); + +exports.default = SiGraphql; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.d.ts new file mode 100644 index 000000000..1f9c6177c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E10098"; +declare const SiGraphql: IconType; +export { SiGraphql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.mjs new file mode 100644 index 000000000..ee4ff5ebf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraphql.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E10098"; +const SiGraphql = React.forwardRef(function SiGraphql2({ title = "GraphQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002 0a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm8.54 4.931a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm0 9.862a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm-8.54 4.931a2.138 2.138 0 1 0 0 4.276 2.138 2.138 0 1 0 0-4.276zm-8.542-4.93a2.138 2.138 0 1 0 0 4.276 2.138 2.138 0 1 0 0-4.277zm0-9.863a2.138 2.138 0 1 0 0 4.277 2.138 2.138 0 1 0 0-4.277zm8.542-3.378L2.953 6.777v10.448l9.049 5.224 9.047-5.224V6.777zm0 1.601 7.66 13.27H4.34zm-1.387.371L3.97 15.037V7.363zm2.774 0 6.646 3.838v7.674zM5.355 17.44h13.293l-6.646 3.836z" }) + ] + } + ); +}); + +export { SiGraphql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.cjs new file mode 100644 index 000000000..90f2fb568 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#221E1F"; +const SiGrav = React__namespace.forwardRef(function SiGrav2({ title = "Grav", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm6.489 13.965c-1.251-.825-1.965-1.523-2.589-2.777-.427.859-1.421 2.135-3.098 3.139-.84 2.61-4.823 7.605-6.113 6.885-.381-.195-.452-.48-.367-.765.093-.704 1.566-2.34 1.566-2.34s.029.345.494 1.065c-.629-1.936 1.021-4.305 1.456-5.131.689-.209.734-1.095.734-1.095.046-1.364-.569-2.34-1.155-2.94.421.525.556 1.306.57 2.025v.255c-.029.601-.21 1.41-.585 1.41v.016c-.39-.016-.885.074-1.319.21l-.961.239s.51-.015.78.226c-.314.51-1.005 1.125-1.771 1.484-1.109.525-1.439-.51-.869-1.17.135-.165.285-.3.404-.404-.09-.09-.135-.21-.149-.36-.075-.345-.045-.78.45-1.485.09-.149.21-.3.345-.449l.015-.016.016-.015v-.015c.029-.046.074-.076.104-.12.57-.585 1.485-1.2 2.911-1.74 1.694-2.49 2.309-2.956 2.309-2.956.181-.179.511-.419.615-.479-.87-1.515-1.049-3.646-.824-4.215-.03.03-.046.06-.061.105.09-.195.135-.255.225-.36.24-.27 1.035-.42 1.336.18.15.315.18.735.18 1.035-.645-.029-1.215.69-1.215.69s.524-.24 1.186-.255c0 0 .179.164.389.449-.284.556-.779 1.725-.42 2.971.061.24.15.45.256.629.015.016.015.016.015.031l.03.029c.585.886 1.649.976 1.649.976-.495-.24-.915-.646-1.169-1.125-.136-.255-.227-.48-.271-.646-.285-1.08.135-1.725.375-2.145.54-.84 1.544-1.351 2.609-1.23 1.5.165 2.581 1.53 2.399 3.03-.104.915-.659 1.681-1.409 2.085.181.494-.015 1.08-.015 1.08.449.57.479.9.465 1.215-.585-.09-1.141.301-1.141.301s1.111-.256 1.756.314c.42.449.704.87.869 1.17.24.435 1.35.465 1.229 1.23-.135.779-.989.779-2.31-.09l.074-.151zm-4.824-4.61c-.22-.219-.574-.219-.795 0l-.465.468c-.222.21-.222.57 0 .796l.51.51c.222.225.577.21.795 0l.47-.466c.221-.225.221-.585 0-.794l-.515-.525v.011zm-2.205-.186c-.14.14-.14.368 0 .511.141.138.368.138.51 0 .14-.143.14-.371 0-.511-.142-.141-.369-.141-.51 0zm1.269-.252c.142-.139.142-.366 0-.51-.141-.138-.367-.138-.51 0-.139.144-.139.371 0 .51.142.142.369.142.51 0zm5.385-1.304c.591-1.131-.247-1.791-.825-2.332-.924-.87-1.846-1.245-2.9-.029-1.052 1.199-.383 2.609.58 3.284.96.69 2.535.226 3.135-.915l.01-.008zm-1.595-.463c-.372-.445.322-1.252.757-.77.8.89-.387 1.216-.757.77z" }) + ] + } + ); +}); + +exports.default = SiGrav; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.d.ts new file mode 100644 index 000000000..b984686ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#221E1F"; +declare const SiGrav: IconType; +export { SiGrav as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.mjs new file mode 100644 index 000000000..8e8355e43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrav.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#221E1F"; +const SiGrav = React.forwardRef(function SiGrav2({ title = "Grav", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm6.489 13.965c-1.251-.825-1.965-1.523-2.589-2.777-.427.859-1.421 2.135-3.098 3.139-.84 2.61-4.823 7.605-6.113 6.885-.381-.195-.452-.48-.367-.765.093-.704 1.566-2.34 1.566-2.34s.029.345.494 1.065c-.629-1.936 1.021-4.305 1.456-5.131.689-.209.734-1.095.734-1.095.046-1.364-.569-2.34-1.155-2.94.421.525.556 1.306.57 2.025v.255c-.029.601-.21 1.41-.585 1.41v.016c-.39-.016-.885.074-1.319.21l-.961.239s.51-.015.78.226c-.314.51-1.005 1.125-1.771 1.484-1.109.525-1.439-.51-.869-1.17.135-.165.285-.3.404-.404-.09-.09-.135-.21-.149-.36-.075-.345-.045-.78.45-1.485.09-.149.21-.3.345-.449l.015-.016.016-.015v-.015c.029-.046.074-.076.104-.12.57-.585 1.485-1.2 2.911-1.74 1.694-2.49 2.309-2.956 2.309-2.956.181-.179.511-.419.615-.479-.87-1.515-1.049-3.646-.824-4.215-.03.03-.046.06-.061.105.09-.195.135-.255.225-.36.24-.27 1.035-.42 1.336.18.15.315.18.735.18 1.035-.645-.029-1.215.69-1.215.69s.524-.24 1.186-.255c0 0 .179.164.389.449-.284.556-.779 1.725-.42 2.971.061.24.15.45.256.629.015.016.015.016.015.031l.03.029c.585.886 1.649.976 1.649.976-.495-.24-.915-.646-1.169-1.125-.136-.255-.227-.48-.271-.646-.285-1.08.135-1.725.375-2.145.54-.84 1.544-1.351 2.609-1.23 1.5.165 2.581 1.53 2.399 3.03-.104.915-.659 1.681-1.409 2.085.181.494-.015 1.08-.015 1.08.449.57.479.9.465 1.215-.585-.09-1.141.301-1.141.301s1.111-.256 1.756.314c.42.449.704.87.869 1.17.24.435 1.35.465 1.229 1.23-.135.779-.989.779-2.31-.09l.074-.151zm-4.824-4.61c-.22-.219-.574-.219-.795 0l-.465.468c-.222.21-.222.57 0 .796l.51.51c.222.225.577.21.795 0l.47-.466c.221-.225.221-.585 0-.794l-.515-.525v.011zm-2.205-.186c-.14.14-.14.368 0 .511.141.138.368.138.51 0 .14-.143.14-.371 0-.511-.142-.141-.369-.141-.51 0zm1.269-.252c.142-.139.142-.366 0-.51-.141-.138-.367-.138-.51 0-.139.144-.139.371 0 .51.142.142.369.142.51 0zm5.385-1.304c.591-1.131-.247-1.791-.825-2.332-.924-.87-1.846-1.245-2.9-.029-1.052 1.199-.383 2.609.58 3.284.96.69 2.535.226 3.135-.915l.01-.008zm-1.595-.463c-.372-.445.322-1.252.757-.77.8.89-.387 1.216-.757.77z" }) + ] + } + ); +}); + +export { SiGrav as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.cjs new file mode 100644 index 000000000..f05c523d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E8CBE"; +const SiGravatar = React__namespace.forwardRef(function SiGravatar2({ title = "Gravatar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-1.326 0-2.4 1.074-2.4 2.4v8.4c0 1.324 1.074 2.398 2.4 2.398s2.4-1.074 2.4-2.398V5.21c2.795.99 4.799 3.654 4.799 6.789 0 3.975-3.225 7.199-7.199 7.199S4.801 15.975 4.801 12c0-1.989.805-3.789 2.108-5.091.938-.938.938-2.458 0-3.396s-2.458-.938-3.396 0C1.344 5.686 0 8.686 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0" }) + ] + } + ); +}); + +exports.default = SiGravatar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.d.ts new file mode 100644 index 000000000..417e7235a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E8CBE"; +declare const SiGravatar: IconType; +export { SiGravatar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.mjs new file mode 100644 index 000000000..fac9c8d08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGravatar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E8CBE"; +const SiGravatar = React.forwardRef(function SiGravatar2({ title = "Gravatar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-1.326 0-2.4 1.074-2.4 2.4v8.4c0 1.324 1.074 2.398 2.4 2.398s2.4-1.074 2.4-2.398V5.21c2.795.99 4.799 3.654 4.799 6.789 0 3.975-3.225 7.199-7.199 7.199S4.801 15.975 4.801 12c0-1.989.805-3.789 2.108-5.091.938-.938.938-2.458 0-3.396s-2.458-.938-3.396 0C1.344 5.686 0 8.686 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0" }) + ] + } + ); +}); + +export { SiGravatar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.cjs new file mode 100644 index 000000000..fb52aeb97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3633"; +const SiGraylog = React__namespace.forwardRef(function SiGraylog2({ title = "Graylog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.93 11.369a.84.84 0 01.75.45h.705l1.112-2.675a.483.483 0 01.3-.278c.235-.042.47.086.513.321l1.177 5.177 1.198-6.974a.41.41 0 01.32-.342.44.44 0 01.535.321l1.284 5.24.663-1.946a.449.449 0 01.17-.235c.193-.129.471-.086.6.107l.556.791c.021.193.021.385.021.578a8.3 8.3 0 01-.043.748c-.085-.021-.15-.085-.213-.15l-.557-.77-.855 2.589a.448.448 0 01-.556.278.393.393 0 01-.278-.3l-1.156-4.663-1.219 7.08a.449.449 0 01-.492.364c-.192-.021-.32-.17-.363-.363l-1.305-5.99-.706 1.69a.439.439 0 01-.406.278H7.679a.863.863 0 01-.748.428.88.88 0 01-.877-.877c.02-.47.406-.877.877-.877zM12 .396c6.973 0 12 5.369 12 11.615 0 6.353-4.77 11.593-12 11.593S0 18.364 0 12.011C-.02 5.765 5.005.396 12 .396zM4.064 12.01c0 4.256 3.658 8 7.915 8 4.256 0 7.914-3.744 7.914-8 0-4.6-3.658-8.043-7.914-8.043-4.236 0-7.915 3.444-7.915 8.043z" }) + ] + } + ); +}); + +exports.default = SiGraylog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.d.ts new file mode 100644 index 000000000..924c46d66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3633"; +declare const SiGraylog: IconType; +export { SiGraylog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.mjs new file mode 100644 index 000000000..a50c46662 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGraylog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3633"; +const SiGraylog = React.forwardRef(function SiGraylog2({ title = "Graylog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.93 11.369a.84.84 0 01.75.45h.705l1.112-2.675a.483.483 0 01.3-.278c.235-.042.47.086.513.321l1.177 5.177 1.198-6.974a.41.41 0 01.32-.342.44.44 0 01.535.321l1.284 5.24.663-1.946a.449.449 0 01.17-.235c.193-.129.471-.086.6.107l.556.791c.021.193.021.385.021.578a8.3 8.3 0 01-.043.748c-.085-.021-.15-.085-.213-.15l-.557-.77-.855 2.589a.448.448 0 01-.556.278.393.393 0 01-.278-.3l-1.156-4.663-1.219 7.08a.449.449 0 01-.492.364c-.192-.021-.32-.17-.363-.363l-1.305-5.99-.706 1.69a.439.439 0 01-.406.278H7.679a.863.863 0 01-.748.428.88.88 0 01-.877-.877c.02-.47.406-.877.877-.877zM12 .396c6.973 0 12 5.369 12 11.615 0 6.353-4.77 11.593-12 11.593S0 18.364 0 12.011C-.02 5.765 5.005.396 12 .396zM4.064 12.01c0 4.256 3.658 8 7.915 8 4.256 0 7.914-3.744 7.914-8 0-4.6-3.658-8.043-7.914-8.043-4.236 0-7.915 3.444-7.915 8.043z" }) + ] + } + ); +}); + +export { SiGraylog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.cjs new file mode 100644 index 000000000..f9e915a71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#670000"; +const SiGreasyfork = React__namespace.forwardRef(function SiGreasyfork2({ title = "Greasy Fork", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.89 2.227a.28.28 0 0 1 .266.076l5.063 5.062c.54.54.509 1.652-.031 2.192l8.771 8.77c1.356 1.355-.36 3.097-1.73 1.728l-8.772-8.77c-.54.54-1.651.571-2.191.031l-5.063-5.06c-.304-.304.304-.911.608-.608l3.714 3.713L7.59 8.297 3.875 4.582c-.304-.304.304-.911.607-.607l3.715 3.714 1.067-1.066L5.549 2.91c-.228-.228.057-.626.342-.683ZM12 0C5.374 0 0 5.375 0 12s5.374 12 12 12c6.625 0 12-5.375 12-12S18.625 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiGreasyfork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.d.ts new file mode 100644 index 000000000..0c1cdf509 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#670000"; +declare const SiGreasyfork: IconType; +export { SiGreasyfork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.mjs new file mode 100644 index 000000000..e7545fc95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreasyfork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#670000"; +const SiGreasyfork = React.forwardRef(function SiGreasyfork2({ title = "Greasy Fork", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.89 2.227a.28.28 0 0 1 .266.076l5.063 5.062c.54.54.509 1.652-.031 2.192l8.771 8.77c1.356 1.355-.36 3.097-1.73 1.728l-8.772-8.77c-.54.54-1.651.571-2.191.031l-5.063-5.06c-.304-.304.304-.911.608-.608l3.714 3.713L7.59 8.297 3.875 4.582c-.304-.304.304-.911.607-.607l3.715 3.714 1.067-1.066L5.549 2.91c-.228-.228.057-.626.342-.683ZM12 0C5.374 0 0 5.375 0 12s5.374 12 12 12c6.625 0 12-5.375 12-12S18.625 0 12 0Z" }) + ] + } + ); +}); + +export { SiGreasyfork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.cjs new file mode 100644 index 000000000..6f7f45287 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E39A9"; +const SiGreatlearning = React__namespace.forwardRef(function SiGreatlearning2({ title = "Great Learning", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.373 0c-6.617 0-12 5.383-12 12s5.383 12 12 12h.856c.958-1.175 1.911-2.354 2.867-3.531h-3.723c-4.669 0-8.469-3.8-8.469-8.469 0-4.67 3.8-8.469 8.469-8.469h4.375L21.615 0Zm3.723 20.469 3.531-4.354v-6.013h-7.502l-2.861 3.533h6.832z" }) + ] + } + ); +}); + +exports.default = SiGreatlearning; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.d.ts new file mode 100644 index 000000000..427b76533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E39A9"; +declare const SiGreatlearning: IconType; +export { SiGreatlearning as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.mjs new file mode 100644 index 000000000..ac1e4cc30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreatlearning.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E39A9"; +const SiGreatlearning = React.forwardRef(function SiGreatlearning2({ title = "Great Learning", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.373 0c-6.617 0-12 5.383-12 12s5.383 12 12 12h.856c.958-1.175 1.911-2.354 2.867-3.531h-3.723c-4.669 0-8.469-3.8-8.469-8.469 0-4.67 3.8-8.469 8.469-8.469h4.375L21.615 0Zm3.723 20.469 3.531-4.354v-6.013h-7.502l-2.861 3.533h6.832z" }) + ] + } + ); +}); + +export { SiGreatlearning as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.cjs new file mode 100644 index 000000000..fcc02cb60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24A47F"; +const SiGreenhouse = React__namespace.forwardRef(function SiGreenhouse2({ title = "Greenhouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.279 7.13c0 1.16-.49 2.185-1.293 2.987-.891.891-2.184 1.114-2.184 1.872 0 1.025 1.65.713 3.231 2.295 1.048 1.047 1.694 2.43 1.694 4.034C17.727 21.482 15.187 24 12 24c-3.187 0-5.727-2.518-5.727-5.68 0-1.607.646-2.989 1.694-4.036 1.582-1.582 3.23-1.27 3.23-2.295 0-.758-1.292-.98-2.183-1.872-.802-.802-1.293-1.827-1.293-3.03 0-2.318 1.895-4.19 4.212-4.19.446 0 .847.067 1.181.067.602 0 .914-.268.914-.691 0-.245-.112-.557-.112-.891 0-.758.647-1.382 1.427-1.382s1.404.646 1.404 1.426c0 .825-.647 1.204-1.137 1.382-.401.134-.713.312-.713.713 0 .758 1.382 1.493 1.382 3.61zm-.446 11.19c0-2.206-1.627-3.99-3.833-3.99-2.206 0-3.833 1.784-3.833 3.99 0 2.184 1.627 3.989 3.833 3.989 2.206 0 3.833-1.808 3.833-3.99zM14.518 7.086c0-1.404-1.136-2.562-2.518-2.562S9.482 5.682 9.482 7.086 10.618 9.65 12 9.65s2.518-1.159 2.518-2.563z" }) + ] + } + ); +}); + +exports.default = SiGreenhouse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.d.ts new file mode 100644 index 000000000..624211e24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24A47F"; +declare const SiGreenhouse: IconType; +export { SiGreenhouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.mjs new file mode 100644 index 000000000..4b54c31cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreenhouse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24A47F"; +const SiGreenhouse = React.forwardRef(function SiGreenhouse2({ title = "Greenhouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.279 7.13c0 1.16-.49 2.185-1.293 2.987-.891.891-2.184 1.114-2.184 1.872 0 1.025 1.65.713 3.231 2.295 1.048 1.047 1.694 2.43 1.694 4.034C17.727 21.482 15.187 24 12 24c-3.187 0-5.727-2.518-5.727-5.68 0-1.607.646-2.989 1.694-4.036 1.582-1.582 3.23-1.27 3.23-2.295 0-.758-1.292-.98-2.183-1.872-.802-.802-1.293-1.827-1.293-3.03 0-2.318 1.895-4.19 4.212-4.19.446 0 .847.067 1.181.067.602 0 .914-.268.914-.691 0-.245-.112-.557-.112-.891 0-.758.647-1.382 1.427-1.382s1.404.646 1.404 1.426c0 .825-.647 1.204-1.137 1.382-.401.134-.713.312-.713.713 0 .758 1.382 1.493 1.382 3.61zm-.446 11.19c0-2.206-1.627-3.99-3.833-3.99-2.206 0-3.833 1.784-3.833 3.99 0 2.184 1.627 3.989 3.833 3.989 2.206 0 3.833-1.808 3.833-3.99zM14.518 7.086c0-1.404-1.136-2.562-2.518-2.562S9.482 5.682 9.482 7.086 10.618 9.65 12 9.65s2.518-1.159 2.518-2.563z" }) + ] + } + ); +}); + +export { SiGreenhouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.cjs new file mode 100644 index 000000000..9d2216ca5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#88CE02"; +const SiGreensock = React__namespace.forwardRef(function SiGreensock2({ title = "GreenSock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.21 0c-.545.003-1.084.134-1.256.367-.11.165-.192 1.196-.11 1.718 0 0 .032.345.09.614a14.6 14.6 0 0 1-.02.182 7.024 7.024 0 0 1-.097.605c-.01.056-.207.095-.425.152a2.495 2.495 0 0 0-.138-.042c-.234-.069-.385.123-.618.26-.069-.04-.371-.178-.536-.082-.165.096-.275.193-.44.261-.082-.041-.302-.041-.48.028a1.27 1.27 0 0 0-.483.278c-2.314.58-4.813 1.635-5.012 1.741-1.017.522-2.679 1.415-3.434 2.033-1.291 1.071-2.06 2.322-2.363 3.242-.385 1.14-.275 1.827.096 1.387.298-.366 1.632-1.454 2.475-1.999l-.002.007a3.219 3.219 0 0 1 .44-.26l.233-.124.505-.323c.602.552.803 1.433.937 2.63.22 1.841 1.704 2.693 3.434 2.72 1.8.028 2.446.399 3.119 1.305.153.201.318.307.47.368a1.954 1.954 0 0 0-.16.405c-.075.17-.125.38-.157.608a.157.157 0 0 0-.03.075c-.068.536-.055 1.8-.068 2.473-.014.673-.028.77-.083.866-.055.11-.11.178-.178.467-.069.302-.193.384-.316.631-.206.385-.165.81.041 1.003.206.192.77.481 1.538.385.77-.096.88-.151.756-.893-.014-.11-.192-.605-.137-.797.082-.206-.096-.563-.055-.577.041-.014.096-.288.096-.426 0-.137-.014-.796.137-1.14.062-.14.193-.46.326-.785.442-.723.459-1.161.48-1.41.03-.202.046-.46.018-.744.055-.083.289-.275.316-.646 0 0 .644-.337 1.102-1.148.16.557.31.91.286 1.272-.499.39-.684.678-.76.959-.048-.02-.076-.037-.11-.04h-.027a.437.437 0 0 0-.106.029c-.192.068-.041 1.318.165 1.827.206.508.316.81.398 1.36.083.549-.192 1.222-.302 1.524 0 0-.179.536.233.824.358.248 1.704.18 2.308.18.605 0 1.511.219 2.088.109.715-.124.824-.55.399-.77-.426-.22-1.072-.329-1.91-.933-.22-.152-.522-.289-.563-.412-.041-.124-.041-.838-.027-1.457.013-.618.22-1.414.288-1.84.064-.398-.076-.388-.262-.351.032-.147.066-.292.097-.446.344-.632.193-1.223.193-1.223.82-1.044.4-3.27.22-4.048.64.303.96.188.96.188.102-.055.192-.134.274-.224.337-.362.51-.916.51-.916V11c.782-.783 1.151-1.936.26-2.692a1.331 1.331 0 0 0-.219-1.263 1.56 1.56 0 0 0-.37-1.731 1.36 1.36 0 0 0-.487-.297c-.2-.295-.245-.417-.572-.349-.15-.165-.178-.288-.494-.178 0 0-.096-.234-.275-.289a.25.25 0 0 0-.05-.015c-.302-.21-.576-.215-.772-.16-.064-.048-.061-.124-.07-.388-.008-.2-.019-.486-.031-.744.027-.328.102-.974.126-1.303.028-.37.042-.948-.123-1.195C18.303.12 17.754-.003 17.21 0zm-.005.34c.7 0 1.002.22 1.044.343.013.028.082.495.04.797-.013.11-.027.509-.054.687-.014.179-.069.385-.124.673-.041.234-.233.495-.384.536-.261.069-.742.055-1.017 0-.069-.014-.124-.055-.192-.096-.151-.248-.234-.44-.261-.742-.028-.289-.083-.412-.096-.632-.014-.33-.014-.55-.014-.55.014-.178.069-.618.069-.659.013-.123.233-.357.989-.357zm-1.133 2.702c.146.149.301.306.432.416.124.11.426.096.7.096.248 0 .468.028.564-.027.154-.077.355-.235.523-.394.011.152.022.304.026.435.01.295-.043.468.024.57-.082.048-.174.105-.269.156-.151.08-.306.136-.403.115h-.002c-.209-.035-.931-.215-1.331-.407-.167-.259-.335-.398-.326-.448.027-.137.04-.247.054-.425.004-.03.005-.058.008-.088zm-.853.69l.035.001c.424.036.65.152.808.284l.076.03.008-.027c.047.03.102.06.162.088.47.159 1.104.308 1.309.353.247.055.645-.192.838-.316.343-.22.783-.04.989.193.137.15.192.247.192.288.316-.11.357.041.508.206.385-.179.412.041.44.137-.122 0-.298.014-.538.04l-.012-.012c-.144-.153-.402-.289-.599-.384-.087-.031-.18-.049-.252-.097-.11-.055-.22-.137-.385-.123-.687.082-.824.315-1.415.178-.577-.134-.737-.254-1.333-.221l.001.026c-.105.016-.2.03-.22.03-.206.012-.722.067-1.153-.1a1.256 1.256 0 0 0-.161-.076l-.005-.002h-.001c-.18-.07-.39-.11-.63-.112h-.026c.218-.11.356-.259.56-.218.22.041.44.22.564.357a.858.858 0 0 0-.178-.288c.128-.09.245-.229.418-.234zm-1.1.545c.15.002.28.026.417.073.018.009.034.018.059.029.288.137.81.164 1.25.137a2.26 2.26 0 0 0 .563-.095c.322.024.514.11.977.216.31.07.502.045.695-.007.193-.053.386-.13.723-.17a.542.542 0 0 1 .188.013c.038.02.075.04.11.061.062.049.214.135.343.189.164.068.59.357.645.425a.1.1 0 0 0 .038.03c.242.314.407.755.396 1.21-.06.46-.426.214-.626.12-.412-.178-.824-.302-1.305-.302-.48 0-1.099.041-1.635.179-.741.206-.961.192-1.29.027-.33-.178-.907-.618-.907-.618v.01c-.007-.007-.012-.012-.014-.01-.042.069-.138.247-.193.33-.027.522-.343 1.346-.934 1.552a.547.547 0 0 1-.467-.041 2.503 2.503 0 0 0-.55-.275c.481.384.729.673.949 1.181.174.43.415 1.017 1.002 1.646.363-.004.725.097.962.346.137.137.357.289.33.426 0 .041-.083.151-.151.234a3.231 3.231 0 0 1-.207.22c-.054.04-.247.192-.288.22-.041.027-.096.095-.137.109-.138.069-.289.014-.426-.055s.027-.082-.124-.192c-.34-.24-.541-.411-.454-.832-.932-.794-2.561-1.26-2.911-2.108-.22-.55-.248-.824-.042-1.058.605-.687.371-1.346.825-1.634.425-.275.783.04.989.33-.124-.509-.55-.633-.55-.674 0-.632.605-1.071 1.21-1.181.218-.041.389-.062.54-.06zm-1.847.534c-.14.196-.231.435-.246.721-.206.028-.673.055-.907.907a3.39 3.39 0 0 1-.214.62c-.103.045-2.946 1.274-5.229 2.542l-.01-.007c-.32.18-.627.363-.919.546l-.125.077-.001.003c-1.136.723-2.04 1.45-2.637 2.112.412-2.679 2.528-4.08 3.53-4.698 2.42-1.489 4.629-2.225 6.758-2.823zm8.037.323c.26-.004.536.06.756.275.59.577.425 1.209.247 1.648.15.179.508.687.288 1.291-.04.138-.343.138-.563.495.55-.316.893-.233 1.017.165.192.618-.234 1.36-.605 1.772 0-.014-.014-.028-.014-.041-.055.206-.123.604-.535 1.044-.206.22-.371.192-.605.137-.215-.054-.322-.142-.543-.276-.036-.207-.102-.482-.102-.59 0-.044-.004-.141-.01-.243.032-.036.066-.074.106-.114 0 0 .178-.247.44-.233.26.014.535-.041.604-.11 0-.48-.55-.494-.357-1.319.013-.04.082-.11.302-.137-.33-.069-.48-.083-.714-.302l-.013-.013c.11-.253.224-.457.301-.605.193-.385.082-.852.082-.852.207-.069.385-.179.413-.247.203-.673-.164-1.322-.605-1.74.036-.003.073-.005.11-.006zm-5.46.925c.01.016.02.033.034.05.179.22.577.495 1.113.673.26.083.467.028.7-.027 1.123-.278 2.304-.346 3.33.155a1.82 1.82 0 0 1-.157 1.068c-.232.465-.533 1.068-.48 2.215-.246.044-1.419.144-1.992.037-.521-.097-1.416-.525-1.62-.69a6.703 6.703 0 0 1-.125-.848 1.37 1.37 0 0 0 .454-.343c-.412.068-.577.04-.825-.097-.235-.13-.642-.533-.87-.82.229-.29.393-.69.335-1.226.037-.05.07-.099.102-.147zm-4.38 1.598c-.09.253.093.654.224.953.508 1.179 2.07 1.29 3.127 2.18a.723.723 0 0 0 .06.388c.083.165.371.413.371.413-.055.054-.027.164-.027.164.204.217.504.243.547.246-.435 1.248-.816 2.626-.451 4.095-.179.244-.368.445-.531.668a.851.851 0 0 1-.444-.31c-.591-.852-1.457-1.416-3.023-1.374-2.349.055-3.283-.907-3.461-2.748-.094-.974-.357-1.922-.888-2.479C7.489 9.014 9.6 7.937 10.268 7.73a2.8 2.8 0 0 0 .2-.073zm3.496.18c.381.442.795.727 1.193.979.082.343.11.577.192 1.03h-.041l-.027.308a2.836 2.836 0 0 0-.62-.113l.001-.003c-.893-1.057-.7-1.47-1.058-2.019.097-.034.225-.094.36-.182zm5.911 1.086c.076.067.178.12.323.154-.327.68.33.912.37 1.17-.143.083-.367.037-.603.025-.115-.006-.229.065-.321.147l.032-.367c.006-.43.09-.809.2-1.13zM15.79 9.947c.024.035.178.131 1.002.352 1.026.275 2.323.12 2.55.09a.378.378 0 0 1-.022.089c0 .343.055.59.096.81.053.308.13.533.163.74l.008-.007c.234 1.367.561 3.133-.267 4.048.041.192.069.467.014.783a3.204 3.204 0 0 1-.151.535 2.29 2.29 0 0 0-.108.352c-1.1.142-1.755.055-2.06-.015.123-.374.407-.754.876-.735-.022-.911-.264-1.223-.511-1.891.395-.883.299-1.665.621-2.848-.247.261-.44 1.209-.604 1.786-.206.838-.563 1.648-1.525 2.294 0 .22-.069.384-.151.494-.179.261-.412.344-.494.77.11-.138.26-.261.26-.22a8.51 8.51 0 0 1-.025.493l.012.001c-.165 1.044-.522 1.525-.742 2.115-.151.426-.096 1.36-.151 1.374-.385.083-.975-.068-1.14-.15.162-1.14.019-2.278.436-3.6l-.015-.006c.16-.554.478-.878.939-1.464-.161-.52-.532-1.64.266-4.182.033-.014.067-.03.105-.049l.206-.137c.04-.028.096-.069.137-.096.069-.042.371-.371.412-.412.096-.097.165-.124.192-.234.055-.206-.247-.412-.37-.55-.018-.019-.03-.034-.043-.05.013-.039.027-.077.042-.114.01-.125.028-.26.042-.367zm.883 7.942c.05.002.174.122.751.158.66.04 1.539-.083 1.772-.138.234-.055.097.11.069.275l-.026.169c-.399.134-1.008.188-1.416.202-.393.013-.846-.012-1.161-.11-.048-.26-.063-.47-.007-.55a.024.024 0 0 1 .018-.006zm2.506.846c-.02.135-.035.223-.058.372-.388.12-.888.122-1.27.135a4.413 4.413 0 0 1-1.012-.07 2.065 2.065 0 0 1-.033-.109 11.343 11.343 0 0 1-.065-.252c.179.034.53.079 1.15.087a4.142 4.142 0 0 0 1.288-.163zm-.106.685c-.069.44-.055 1.786-.014 2.157.014.11.948.522 1.277.77.107.085.259.157.422.222.042.042.116.105.197.203.162.213.052.436-.135.526-.264-.007-.568-.052-1.074-.128-.695-.104-1.129-.101-1.73-.106v-.003c-.152-.275-.056-.728-.056-.728a2.2 2.2 0 0 1-.809-.18l.012-.026c.234-.48.22-.591.151-1.415-.047-.578-.196-.883-.335-1.195.169.016.409.035.857.041a4.567 4.567 0 0 0 1.237-.138zm-5.306 2.084c.243 0 .6.032.676.1v.014c.014.165.165.399.11.522-.027.069-.096-.041-.192-.068.041.26.151.741.316 1.112.11.248.041.426-.33.495-.33.014-.755 0-1.112-.083-.412-.206-.55-.316-.467-.7.068-.275.494-.59.865-.838-.206.014-.426.165-.398-.014.055-.357.206-.33.302-.508-.02-.02.084-.032.23-.032z" }) + ] + } + ); +}); + +exports.default = SiGreensock; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.d.ts new file mode 100644 index 000000000..834cd3f4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#88CE02"; +declare const SiGreensock: IconType; +export { SiGreensock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.mjs new file mode 100644 index 000000000..209777d58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreensock.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#88CE02"; +const SiGreensock = React.forwardRef(function SiGreensock2({ title = "GreenSock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.21 0c-.545.003-1.084.134-1.256.367-.11.165-.192 1.196-.11 1.718 0 0 .032.345.09.614a14.6 14.6 0 0 1-.02.182 7.024 7.024 0 0 1-.097.605c-.01.056-.207.095-.425.152a2.495 2.495 0 0 0-.138-.042c-.234-.069-.385.123-.618.26-.069-.04-.371-.178-.536-.082-.165.096-.275.193-.44.261-.082-.041-.302-.041-.48.028a1.27 1.27 0 0 0-.483.278c-2.314.58-4.813 1.635-5.012 1.741-1.017.522-2.679 1.415-3.434 2.033-1.291 1.071-2.06 2.322-2.363 3.242-.385 1.14-.275 1.827.096 1.387.298-.366 1.632-1.454 2.475-1.999l-.002.007a3.219 3.219 0 0 1 .44-.26l.233-.124.505-.323c.602.552.803 1.433.937 2.63.22 1.841 1.704 2.693 3.434 2.72 1.8.028 2.446.399 3.119 1.305.153.201.318.307.47.368a1.954 1.954 0 0 0-.16.405c-.075.17-.125.38-.157.608a.157.157 0 0 0-.03.075c-.068.536-.055 1.8-.068 2.473-.014.673-.028.77-.083.866-.055.11-.11.178-.178.467-.069.302-.193.384-.316.631-.206.385-.165.81.041 1.003.206.192.77.481 1.538.385.77-.096.88-.151.756-.893-.014-.11-.192-.605-.137-.797.082-.206-.096-.563-.055-.577.041-.014.096-.288.096-.426 0-.137-.014-.796.137-1.14.062-.14.193-.46.326-.785.442-.723.459-1.161.48-1.41.03-.202.046-.46.018-.744.055-.083.289-.275.316-.646 0 0 .644-.337 1.102-1.148.16.557.31.91.286 1.272-.499.39-.684.678-.76.959-.048-.02-.076-.037-.11-.04h-.027a.437.437 0 0 0-.106.029c-.192.068-.041 1.318.165 1.827.206.508.316.81.398 1.36.083.549-.192 1.222-.302 1.524 0 0-.179.536.233.824.358.248 1.704.18 2.308.18.605 0 1.511.219 2.088.109.715-.124.824-.55.399-.77-.426-.22-1.072-.329-1.91-.933-.22-.152-.522-.289-.563-.412-.041-.124-.041-.838-.027-1.457.013-.618.22-1.414.288-1.84.064-.398-.076-.388-.262-.351.032-.147.066-.292.097-.446.344-.632.193-1.223.193-1.223.82-1.044.4-3.27.22-4.048.64.303.96.188.96.188.102-.055.192-.134.274-.224.337-.362.51-.916.51-.916V11c.782-.783 1.151-1.936.26-2.692a1.331 1.331 0 0 0-.219-1.263 1.56 1.56 0 0 0-.37-1.731 1.36 1.36 0 0 0-.487-.297c-.2-.295-.245-.417-.572-.349-.15-.165-.178-.288-.494-.178 0 0-.096-.234-.275-.289a.25.25 0 0 0-.05-.015c-.302-.21-.576-.215-.772-.16-.064-.048-.061-.124-.07-.388-.008-.2-.019-.486-.031-.744.027-.328.102-.974.126-1.303.028-.37.042-.948-.123-1.195C18.303.12 17.754-.003 17.21 0zm-.005.34c.7 0 1.002.22 1.044.343.013.028.082.495.04.797-.013.11-.027.509-.054.687-.014.179-.069.385-.124.673-.041.234-.233.495-.384.536-.261.069-.742.055-1.017 0-.069-.014-.124-.055-.192-.096-.151-.248-.234-.44-.261-.742-.028-.289-.083-.412-.096-.632-.014-.33-.014-.55-.014-.55.014-.178.069-.618.069-.659.013-.123.233-.357.989-.357zm-1.133 2.702c.146.149.301.306.432.416.124.11.426.096.7.096.248 0 .468.028.564-.027.154-.077.355-.235.523-.394.011.152.022.304.026.435.01.295-.043.468.024.57-.082.048-.174.105-.269.156-.151.08-.306.136-.403.115h-.002c-.209-.035-.931-.215-1.331-.407-.167-.259-.335-.398-.326-.448.027-.137.04-.247.054-.425.004-.03.005-.058.008-.088zm-.853.69l.035.001c.424.036.65.152.808.284l.076.03.008-.027c.047.03.102.06.162.088.47.159 1.104.308 1.309.353.247.055.645-.192.838-.316.343-.22.783-.04.989.193.137.15.192.247.192.288.316-.11.357.041.508.206.385-.179.412.041.44.137-.122 0-.298.014-.538.04l-.012-.012c-.144-.153-.402-.289-.599-.384-.087-.031-.18-.049-.252-.097-.11-.055-.22-.137-.385-.123-.687.082-.824.315-1.415.178-.577-.134-.737-.254-1.333-.221l.001.026c-.105.016-.2.03-.22.03-.206.012-.722.067-1.153-.1a1.256 1.256 0 0 0-.161-.076l-.005-.002h-.001c-.18-.07-.39-.11-.63-.112h-.026c.218-.11.356-.259.56-.218.22.041.44.22.564.357a.858.858 0 0 0-.178-.288c.128-.09.245-.229.418-.234zm-1.1.545c.15.002.28.026.417.073.018.009.034.018.059.029.288.137.81.164 1.25.137a2.26 2.26 0 0 0 .563-.095c.322.024.514.11.977.216.31.07.502.045.695-.007.193-.053.386-.13.723-.17a.542.542 0 0 1 .188.013c.038.02.075.04.11.061.062.049.214.135.343.189.164.068.59.357.645.425a.1.1 0 0 0 .038.03c.242.314.407.755.396 1.21-.06.46-.426.214-.626.12-.412-.178-.824-.302-1.305-.302-.48 0-1.099.041-1.635.179-.741.206-.961.192-1.29.027-.33-.178-.907-.618-.907-.618v.01c-.007-.007-.012-.012-.014-.01-.042.069-.138.247-.193.33-.027.522-.343 1.346-.934 1.552a.547.547 0 0 1-.467-.041 2.503 2.503 0 0 0-.55-.275c.481.384.729.673.949 1.181.174.43.415 1.017 1.002 1.646.363-.004.725.097.962.346.137.137.357.289.33.426 0 .041-.083.151-.151.234a3.231 3.231 0 0 1-.207.22c-.054.04-.247.192-.288.22-.041.027-.096.095-.137.109-.138.069-.289.014-.426-.055s.027-.082-.124-.192c-.34-.24-.541-.411-.454-.832-.932-.794-2.561-1.26-2.911-2.108-.22-.55-.248-.824-.042-1.058.605-.687.371-1.346.825-1.634.425-.275.783.04.989.33-.124-.509-.55-.633-.55-.674 0-.632.605-1.071 1.21-1.181.218-.041.389-.062.54-.06zm-1.847.534c-.14.196-.231.435-.246.721-.206.028-.673.055-.907.907a3.39 3.39 0 0 1-.214.62c-.103.045-2.946 1.274-5.229 2.542l-.01-.007c-.32.18-.627.363-.919.546l-.125.077-.001.003c-1.136.723-2.04 1.45-2.637 2.112.412-2.679 2.528-4.08 3.53-4.698 2.42-1.489 4.629-2.225 6.758-2.823zm8.037.323c.26-.004.536.06.756.275.59.577.425 1.209.247 1.648.15.179.508.687.288 1.291-.04.138-.343.138-.563.495.55-.316.893-.233 1.017.165.192.618-.234 1.36-.605 1.772 0-.014-.014-.028-.014-.041-.055.206-.123.604-.535 1.044-.206.22-.371.192-.605.137-.215-.054-.322-.142-.543-.276-.036-.207-.102-.482-.102-.59 0-.044-.004-.141-.01-.243.032-.036.066-.074.106-.114 0 0 .178-.247.44-.233.26.014.535-.041.604-.11 0-.48-.55-.494-.357-1.319.013-.04.082-.11.302-.137-.33-.069-.48-.083-.714-.302l-.013-.013c.11-.253.224-.457.301-.605.193-.385.082-.852.082-.852.207-.069.385-.179.413-.247.203-.673-.164-1.322-.605-1.74.036-.003.073-.005.11-.006zm-5.46.925c.01.016.02.033.034.05.179.22.577.495 1.113.673.26.083.467.028.7-.027 1.123-.278 2.304-.346 3.33.155a1.82 1.82 0 0 1-.157 1.068c-.232.465-.533 1.068-.48 2.215-.246.044-1.419.144-1.992.037-.521-.097-1.416-.525-1.62-.69a6.703 6.703 0 0 1-.125-.848 1.37 1.37 0 0 0 .454-.343c-.412.068-.577.04-.825-.097-.235-.13-.642-.533-.87-.82.229-.29.393-.69.335-1.226.037-.05.07-.099.102-.147zm-4.38 1.598c-.09.253.093.654.224.953.508 1.179 2.07 1.29 3.127 2.18a.723.723 0 0 0 .06.388c.083.165.371.413.371.413-.055.054-.027.164-.027.164.204.217.504.243.547.246-.435 1.248-.816 2.626-.451 4.095-.179.244-.368.445-.531.668a.851.851 0 0 1-.444-.31c-.591-.852-1.457-1.416-3.023-1.374-2.349.055-3.283-.907-3.461-2.748-.094-.974-.357-1.922-.888-2.479C7.489 9.014 9.6 7.937 10.268 7.73a2.8 2.8 0 0 0 .2-.073zm3.496.18c.381.442.795.727 1.193.979.082.343.11.577.192 1.03h-.041l-.027.308a2.836 2.836 0 0 0-.62-.113l.001-.003c-.893-1.057-.7-1.47-1.058-2.019.097-.034.225-.094.36-.182zm5.911 1.086c.076.067.178.12.323.154-.327.68.33.912.37 1.17-.143.083-.367.037-.603.025-.115-.006-.229.065-.321.147l.032-.367c.006-.43.09-.809.2-1.13zM15.79 9.947c.024.035.178.131 1.002.352 1.026.275 2.323.12 2.55.09a.378.378 0 0 1-.022.089c0 .343.055.59.096.81.053.308.13.533.163.74l.008-.007c.234 1.367.561 3.133-.267 4.048.041.192.069.467.014.783a3.204 3.204 0 0 1-.151.535 2.29 2.29 0 0 0-.108.352c-1.1.142-1.755.055-2.06-.015.123-.374.407-.754.876-.735-.022-.911-.264-1.223-.511-1.891.395-.883.299-1.665.621-2.848-.247.261-.44 1.209-.604 1.786-.206.838-.563 1.648-1.525 2.294 0 .22-.069.384-.151.494-.179.261-.412.344-.494.77.11-.138.26-.261.26-.22a8.51 8.51 0 0 1-.025.493l.012.001c-.165 1.044-.522 1.525-.742 2.115-.151.426-.096 1.36-.151 1.374-.385.083-.975-.068-1.14-.15.162-1.14.019-2.278.436-3.6l-.015-.006c.16-.554.478-.878.939-1.464-.161-.52-.532-1.64.266-4.182.033-.014.067-.03.105-.049l.206-.137c.04-.028.096-.069.137-.096.069-.042.371-.371.412-.412.096-.097.165-.124.192-.234.055-.206-.247-.412-.37-.55-.018-.019-.03-.034-.043-.05.013-.039.027-.077.042-.114.01-.125.028-.26.042-.367zm.883 7.942c.05.002.174.122.751.158.66.04 1.539-.083 1.772-.138.234-.055.097.11.069.275l-.026.169c-.399.134-1.008.188-1.416.202-.393.013-.846-.012-1.161-.11-.048-.26-.063-.47-.007-.55a.024.024 0 0 1 .018-.006zm2.506.846c-.02.135-.035.223-.058.372-.388.12-.888.122-1.27.135a4.413 4.413 0 0 1-1.012-.07 2.065 2.065 0 0 1-.033-.109 11.343 11.343 0 0 1-.065-.252c.179.034.53.079 1.15.087a4.142 4.142 0 0 0 1.288-.163zm-.106.685c-.069.44-.055 1.786-.014 2.157.014.11.948.522 1.277.77.107.085.259.157.422.222.042.042.116.105.197.203.162.213.052.436-.135.526-.264-.007-.568-.052-1.074-.128-.695-.104-1.129-.101-1.73-.106v-.003c-.152-.275-.056-.728-.056-.728a2.2 2.2 0 0 1-.809-.18l.012-.026c.234-.48.22-.591.151-1.415-.047-.578-.196-.883-.335-1.195.169.016.409.035.857.041a4.567 4.567 0 0 0 1.237-.138zm-5.306 2.084c.243 0 .6.032.676.1v.014c.014.165.165.399.11.522-.027.069-.096-.041-.192-.068.041.26.151.741.316 1.112.11.248.041.426-.33.495-.33.014-.755 0-1.112-.083-.412-.206-.55-.316-.467-.7.068-.275.494-.59.865-.838-.206.014-.426.165-.398-.014.055-.357.206-.33.302-.508-.02-.02.084-.032.23-.032z" }) + ] + } + ); +}); + +export { SiGreensock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.cjs new file mode 100644 index 000000000..1c8147561 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8322FF"; +const SiGreptimedb = React__namespace.forwardRef(function SiGreptimedb2({ title = "GreptimeDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.005 0C5.375 0 0 5.373 0 12s5.375 12 12.005 12c6.428 0 11.679-5.052 11.991-11.4l.004-.07H13.33l-.017.04c-.227.52-.74.856-1.308.856h-.001c-.491.01-.85-.166-1.092-.433a1.48 1.48 0 0 1-.363-.993c0-.363.121-.726.363-.993.241-.267.6-.443 1.092-.433h.001c.51 0 .98.272 1.235.713l.02.033h1.722l-.022-.083A3.053 3.053 0 0 0 8.954 12a3.05 3.05 0 0 0 3.051 3.05 3.04 3.04 0 0 0 2.288-1.044h7.892c-.936 4.769-5.134 8.37-10.18 8.37-5.733 0-10.38-4.645-10.38-10.376S6.272 1.624 12.005 1.624c5.484 0 9.975 4.25 10.355 9.635l.004.061h1.628l-.004-.07C23.6 4.972 18.383 0 12.005 0m.009 2.983c-4.987 0-9.031 4.038-9.031 9.017 0 4.98 4.043 9.017 9.03 9.017a9.03 9.03 0 0 0 8.405-5.711l.036-.09h-1.771l-.018.037a7.4 7.4 0 0 1-6.651 4.14c-4.09 0-7.405-3.309-7.405-7.393s3.315-7.393 7.405-7.393a7.4 7.4 0 0 1 7.367 6.654l.006.06h1.632l-.006-.072c-.382-4.628-4.266-8.266-9-8.266m.007 2.984c-3.343 0-6.055 2.702-6.055 6.033s2.712 6.033 6.055 6.033a6.06 6.06 0 0 0 5.058-2.715l.068-.103H15.05l-.019.018a4.42 4.42 0 0 1-3.009 1.176A4.417 4.417 0 0 1 7.595 12a4.42 4.42 0 0 1 4.426-4.41 4.42 4.42 0 0 1 4.365 3.675l.01.055h1.643l-.009-.074a6.05 6.05 0 0 0-6.009-5.279" }) + ] + } + ); +}); + +exports.default = SiGreptimedb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.d.ts new file mode 100644 index 000000000..488535353 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8322FF"; +declare const SiGreptimedb: IconType; +export { SiGreptimedb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.mjs new file mode 100644 index 000000000..85c6547b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGreptimedb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8322FF"; +const SiGreptimedb = React.forwardRef(function SiGreptimedb2({ title = "GreptimeDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.005 0C5.375 0 0 5.373 0 12s5.375 12 12.005 12c6.428 0 11.679-5.052 11.991-11.4l.004-.07H13.33l-.017.04c-.227.52-.74.856-1.308.856h-.001c-.491.01-.85-.166-1.092-.433a1.48 1.48 0 0 1-.363-.993c0-.363.121-.726.363-.993.241-.267.6-.443 1.092-.433h.001c.51 0 .98.272 1.235.713l.02.033h1.722l-.022-.083A3.053 3.053 0 0 0 8.954 12a3.05 3.05 0 0 0 3.051 3.05 3.04 3.04 0 0 0 2.288-1.044h7.892c-.936 4.769-5.134 8.37-10.18 8.37-5.733 0-10.38-4.645-10.38-10.376S6.272 1.624 12.005 1.624c5.484 0 9.975 4.25 10.355 9.635l.004.061h1.628l-.004-.07C23.6 4.972 18.383 0 12.005 0m.009 2.983c-4.987 0-9.031 4.038-9.031 9.017 0 4.98 4.043 9.017 9.03 9.017a9.03 9.03 0 0 0 8.405-5.711l.036-.09h-1.771l-.018.037a7.4 7.4 0 0 1-6.651 4.14c-4.09 0-7.405-3.309-7.405-7.393s3.315-7.393 7.405-7.393a7.4 7.4 0 0 1 7.367 6.654l.006.06h1.632l-.006-.072c-.382-4.628-4.266-8.266-9-8.266m.007 2.984c-3.343 0-6.055 2.702-6.055 6.033s2.712 6.033 6.055 6.033a6.06 6.06 0 0 0 5.058-2.715l.068-.103H15.05l-.019.018a4.42 4.42 0 0 1-3.009 1.176A4.417 4.417 0 0 1 7.595 12a4.42 4.42 0 0 1 4.426-4.41 4.42 4.42 0 0 1 4.365 3.675l.01.055h1.643l-.009-.074a6.05 6.05 0 0 0-6.009-5.279" }) + ] + } + ); +}); + +export { SiGreptimedb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.cjs new file mode 100644 index 000000000..b73a8f81c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#78FF96"; +const SiGriddotai = React__namespace.forwardRef(function SiGriddotai2({ title = "Grid.ai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.732 9.091v-3.52H6.506v12.816h5.612v-5.613h11.226V24h-5.613v-5.613H12.12V24h-4.5a6.965 6.965 0 0 1-6.964-6.964V6.966A6.966 6.966 0 0 1 7.619 0h8.762a6.965 6.965 0 0 1 6.964 6.964v2.127h-5.613z" }) + ] + } + ); +}); + +exports.default = SiGriddotai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.d.ts new file mode 100644 index 000000000..6ed1e0ad2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#78FF96"; +declare const SiGriddotai: IconType; +export { SiGriddotai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.mjs new file mode 100644 index 000000000..bd8281728 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGriddotai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#78FF96"; +const SiGriddotai = React.forwardRef(function SiGriddotai2({ title = "Grid.ai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.732 9.091v-3.52H6.506v12.816h5.612v-5.613h11.226V24h-5.613v-5.613H12.12V24h-4.5a6.965 6.965 0 0 1-6.964-6.964V6.966A6.966 6.966 0 0 1 7.619 0h8.762a6.965 6.965 0 0 1 6.964 6.964v2.127h-5.613z" }) + ] + } + ); +}); + +export { SiGriddotai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.cjs new file mode 100644 index 000000000..493082944 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A672"; +const SiGridsome = React__namespace.forwardRef(function SiGridsome2({ title = "Gridsome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.026.017l-.108.001C4.905.135-.102 5.975.002 11.956.025 19.286 6.02 24.13 12.083 23.98c7.208-.2 12.323-6.461 11.892-12.05a2.197 2.197 0 0 0-2.192-2.001h-3.15a2.155 2.155 0 0 0-2.161 2.147c0 1.187.967 2.148 2.16 2.148h.788c-.87 2.791-3.62 5.455-7.44 5.56-3.803.095-7.61-2.904-7.768-7.569a2.173 2.173 0 0 0 0-.159c-.148-3.72 2.895-7.637 7.88-7.845a2.096 2.096 0 0 0 2.003-2.183 2.095 2.095 0 0 0-2.07-2.011zm-.018 9.911a2.15 2.15 0 0 0-2.146 2.151 2.15 2.15 0 0 0 2.146 2.152 2.15 2.15 0 0 0 2.147-2.152 2.15 2.15 0 0 0-2.147-2.15Z" }) + ] + } + ); +}); + +exports.default = SiGridsome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.d.ts new file mode 100644 index 000000000..07a816edc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A672"; +declare const SiGridsome: IconType; +export { SiGridsome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.mjs new file mode 100644 index 000000000..dc6c87b21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGridsome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A672"; +const SiGridsome = React.forwardRef(function SiGridsome2({ title = "Gridsome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.026.017l-.108.001C4.905.135-.102 5.975.002 11.956.025 19.286 6.02 24.13 12.083 23.98c7.208-.2 12.323-6.461 11.892-12.05a2.197 2.197 0 0 0-2.192-2.001h-3.15a2.155 2.155 0 0 0-2.161 2.147c0 1.187.967 2.148 2.16 2.148h.788c-.87 2.791-3.62 5.455-7.44 5.56-3.803.095-7.61-2.904-7.768-7.569a2.173 2.173 0 0 0 0-.159c-.148-3.72 2.895-7.637 7.88-7.845a2.096 2.096 0 0 0 2.003-2.183 2.095 2.095 0 0 0-2.07-2.011zm-.018 9.911a2.15 2.15 0 0 0-2.146 2.151 2.15 2.15 0 0 0 2.146 2.152 2.15 2.15 0 0 0 2.147-2.152 2.15 2.15 0 0 0-2.147-2.15Z" }) + ] + } + ); +}); + +export { SiGridsome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.cjs new file mode 100644 index 000000000..c0a8bdba4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#337AB7"; +const SiGrocy = React__namespace.forwardRef(function SiGrocy2({ title = "Grocy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.621.068C7.527.786 3.608 4.618 2.345 10.082c-.316 1.35-.392 3.896-.163 5.203.62 3.57 2.96 6.574 6.15 7.913 1.36.577 2.1.73 3.842.784 1.22.043 1.862.01 2.722-.13 2.688-.447 5.399-1.699 6.65-3.092l.403-.447-.054-1.872a481.92 481.92 0 0 1-.12-5.344l-.065-3.473-2.907.087c-1.589.033-3.722.098-4.746.142l-1.85.065-.087 2.319c-.055 1.284-.076 2.34-.055 2.362.022.022.882.076 1.916.12l1.872.076v.294c0 .707-.13.98-.555 1.208-.653.326-1.872.479-2.623.326-2.71-.566-3.777-4.55-1.96-7.369C11.86 7.48 13.873 6.62 16.562 6.74c.74.043 1.665.163 2.123.272.446.12.838.174.87.12.098-.142.468-5.726.403-5.9-.087-.24-1.35-.697-2.569-.947-1.252-.25-3.722-.37-4.767-.218z" }) + ] + } + ); +}); + +exports.default = SiGrocy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.d.ts new file mode 100644 index 000000000..c64f9385c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#337AB7"; +declare const SiGrocy: IconType; +export { SiGrocy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.mjs new file mode 100644 index 000000000..a75ae6298 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrocy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#337AB7"; +const SiGrocy = React.forwardRef(function SiGrocy2({ title = "Grocy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.621.068C7.527.786 3.608 4.618 2.345 10.082c-.316 1.35-.392 3.896-.163 5.203.62 3.57 2.96 6.574 6.15 7.913 1.36.577 2.1.73 3.842.784 1.22.043 1.862.01 2.722-.13 2.688-.447 5.399-1.699 6.65-3.092l.403-.447-.054-1.872a481.92 481.92 0 0 1-.12-5.344l-.065-3.473-2.907.087c-1.589.033-3.722.098-4.746.142l-1.85.065-.087 2.319c-.055 1.284-.076 2.34-.055 2.362.022.022.882.076 1.916.12l1.872.076v.294c0 .707-.13.98-.555 1.208-.653.326-1.872.479-2.623.326-2.71-.566-3.777-4.55-1.96-7.369C11.86 7.48 13.873 6.62 16.562 6.74c.74.043 1.665.163 2.123.272.446.12.838.174.87.12.098-.142.468-5.726.403-5.9-.087-.24-1.35-.697-2.569-.947-1.252-.25-3.722-.37-4.767-.218z" }) + ] + } + ); +}); + +export { SiGrocy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.cjs new file mode 100644 index 000000000..50d975c62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AFF0"; +const SiGroupme = React__namespace.forwardRef(function SiGroupme2({ title = "GroupMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.1597 6.57419H12.8398V8.16898H11.1597V6.57419ZM18.1997 0H5.80011C3.14898 0 1 2.03979 1 4.55577V16.3243C1 18.8402 3.14898 20.88 5.80011 20.88H9.92715L11.9786 24L14.0306 20.88H18.1997C20.8506 20.88 23 18.8402 23 16.3243V4.55574C23 2.03976 20.8506 0 18.1997 0ZM7.56833 8.16895H9.34755V6.57416H7.56833V4.85447H9.34755V3.16587H11.1597V4.85447H12.8398V3.16587H14.6519V4.85447H16.4308V6.57416H14.6519V8.16895H16.4308V9.88852H14.6519V11.5772H12.8398V9.88852H11.1597V11.5772H9.34755V9.88852H7.56833V8.16895ZM20.3122 13.4321C20.3122 13.4321 17.9202 17.708 12.2406 17.708C12.1619 17.708 12.0843 17.707 12.007 17.7057C11.9299 17.707 11.8522 17.708 11.7737 17.708C6.09416 17.708 3.70211 13.4321 3.70211 13.4321C3.70211 13.4321 3.54729 13.1536 3.54729 12.8534C3.53754 12.6368 3.64915 12.3263 3.9421 12.1433C4.105 12.0417 4.259 11.9914 4.40179 11.9757C5.08566 11.9069 5.48202 12.3295 5.80794 12.8121C6.16788 13.3447 8.24445 15.678 12.007 15.7672C15.7698 15.678 17.8464 13.3447 18.2063 12.8121C18.5322 12.3295 18.9429 11.9062 19.6125 11.9757C19.7553 11.9914 19.9094 12.0417 20.0722 12.1433C20.3652 12.3263 20.4792 12.5839 20.469 12.8532C20.446 13.2494 20.3122 13.4321 20.3122 13.4321Z" }) + ] + } + ); +}); + +exports.default = SiGroupme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.d.ts new file mode 100644 index 000000000..cb1318f19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AFF0"; +declare const SiGroupme: IconType; +export { SiGroupme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.mjs new file mode 100644 index 000000000..ce7d6e276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AFF0"; +const SiGroupme = React.forwardRef(function SiGroupme2({ title = "GroupMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.1597 6.57419H12.8398V8.16898H11.1597V6.57419ZM18.1997 0H5.80011C3.14898 0 1 2.03979 1 4.55577V16.3243C1 18.8402 3.14898 20.88 5.80011 20.88H9.92715L11.9786 24L14.0306 20.88H18.1997C20.8506 20.88 23 18.8402 23 16.3243V4.55574C23 2.03976 20.8506 0 18.1997 0ZM7.56833 8.16895H9.34755V6.57416H7.56833V4.85447H9.34755V3.16587H11.1597V4.85447H12.8398V3.16587H14.6519V4.85447H16.4308V6.57416H14.6519V8.16895H16.4308V9.88852H14.6519V11.5772H12.8398V9.88852H11.1597V11.5772H9.34755V9.88852H7.56833V8.16895ZM20.3122 13.4321C20.3122 13.4321 17.9202 17.708 12.2406 17.708C12.1619 17.708 12.0843 17.707 12.007 17.7057C11.9299 17.707 11.8522 17.708 11.7737 17.708C6.09416 17.708 3.70211 13.4321 3.70211 13.4321C3.70211 13.4321 3.54729 13.1536 3.54729 12.8534C3.53754 12.6368 3.64915 12.3263 3.9421 12.1433C4.105 12.0417 4.259 11.9914 4.40179 11.9757C5.08566 11.9069 5.48202 12.3295 5.80794 12.8121C6.16788 13.3447 8.24445 15.678 12.007 15.7672C15.7698 15.678 17.8464 13.3447 18.2063 12.8121C18.5322 12.3295 18.9429 11.9062 19.6125 11.9757C19.7553 11.9914 19.9094 12.0417 20.0722 12.1433C20.3652 12.3263 20.4792 12.5839 20.469 12.8532C20.446 13.2494 20.3122 13.4321 20.3122 13.4321Z" }) + ] + } + ); +}); + +export { SiGroupme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.cjs new file mode 100644 index 000000000..9d6311519 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#53A318"; +const SiGroupon = React__namespace.forwardRef(function SiGroupon2({ title = "Groupon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.316 20.334C5.618 22.736 8.554 24 12.012 24c3.988 0 7.739-1.95 9.978-5.163 1.353-1.95 2.01-4.158 2.01-6.755 0-.484-.032-1.006-.063-1.529H10.595v4.61h6.687c-1.155 2.012-3.094 3.12-5.27 3.12-3.229 0-6.125-2.824-6.125-6.497 0-3.315 2.699-6.069 6.125-6.069 1.844 0 3.355.749 4.811 2.239h6.52C21.468 3.019 17.084 0 12.083 0c-3.323 0-6.22 1.17-8.53 3.409C1.25 5.647 0 8.572 0 11.754c-.008 3.417 1.108 6.271 3.316 8.58z" }) + ] + } + ); +}); + +exports.default = SiGroupon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.d.ts new file mode 100644 index 000000000..8d992317f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#53A318"; +declare const SiGroupon: IconType; +export { SiGroupon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.mjs new file mode 100644 index 000000000..f87b4dccd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGroupon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#53A318"; +const SiGroupon = React.forwardRef(function SiGroupon2({ title = "Groupon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.316 20.334C5.618 22.736 8.554 24 12.012 24c3.988 0 7.739-1.95 9.978-5.163 1.353-1.95 2.01-4.158 2.01-6.755 0-.484-.032-1.006-.063-1.529H10.595v4.61h6.687c-1.155 2.012-3.094 3.12-5.27 3.12-3.229 0-6.125-2.824-6.125-6.497 0-3.315 2.699-6.069 6.125-6.069 1.844 0 3.355.749 4.811 2.239h6.52C21.468 3.019 17.084 0 12.083 0c-3.323 0-6.22 1.17-8.53 3.409C1.25 5.647 0 8.572 0 11.754c-.008 3.417 1.108 6.271 3.316 8.58z" }) + ] + } + ); +}); + +export { SiGroupon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.cjs new file mode 100644 index 000000000..dddcabbcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAA918"; +const SiGrunt = React__namespace.forwardRef(function SiGrunt2({ title = "Grunt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.04 0c-1.381.488-1.731 1.231-1.835 1.906-.355-.254-.316-1.079-.336-1.29-.353.041-1.366 1.025-1.32 2.265a7.96 7.96 0 00-.276.08c-.296-.402-1.167-1.472-2.314-1.842A3.647 3.647 0 005.832.936c-1.36 0-2.163.81-2.17.818l-.383.445.576.114c.01.002.966.201 1.362.826.065.104.083.31.101.527.012.13-.016.257-.043.379-.02.09-.038.181-.043.273-.358.014-.665.084-.914.211a1.255 1.255 0 00-.662.797c-.233.854.525 1.805.551 1.836.089.158.126 1.303-.078 1.762-.028.063-.103.126-.201.205-.03.024-.065.049-.102.076-.288.217-.722.548-.722 1.305 0 1.036 1.05 1.597 1.894 2.049.139.074.271.144.39.212l-.003.004c.126.073.57.534.57 1.223 0 .323-.028 1.859-.172 2.924-.541-.464-1.04-1.211-1.152-2.049 0 0-1.372 1.057-.969 3.32.246 1.385 1.087 2.16 2.203 2.565.405.89 1.365 2.143 3.155 2.326.677.554 1.613.913 2.978.914V24h.008c1.367-.001 2.305-.36 2.982-.916 1.786-.185 2.744-1.437 3.149-2.326 1.116-.406 1.957-1.18 2.203-2.565.402-2.263-.969-3.32-.969-3.32-.112.838-.61 1.585-1.152 2.049-.144-1.065-.174-2.601-.174-2.924 0-.689.446-1.15.572-1.223l-.004-.004c.12-.068.253-.138.39-.212.845-.452 1.893-1.013 1.893-2.05 0-.756-.434-1.087-.722-1.304l-.102-.076c-.097-.079-.173-.142-.2-.205-.205-.46-.168-1.604-.079-1.762.026-.03.784-.982.55-1.836a1.255 1.255 0 00-.661-.797c-.248-.127-.554-.197-.91-.21a1.655 1.655 0 00-.043-.276 1.289 1.289 0 01-.043-.379c.018-.218.036-.423.101-.527.396-.625 1.35-.825 1.36-.826l.576-.114-.381-.445c-.007-.008-.812-.818-2.172-.818-.371 0-.75.06-1.129.183-1.148.37-2.018 1.443-2.312 1.844a8.06 8.06 0 00-.45-.127c-.196-.74.42-1.803.42-1.803s-.635-.14-1.578.715C13 1.442 12.743.784 13.04 0zm5.118 1.637c.516 0 .936.14 1.158.234-.144.065-.3.15-.455.252a2.51 2.51 0 00-.43-.037 2.33 2.33 0 00-1.347.418c-.578.406-.846.793-.969 1.049a5.47 5.47 0 00-.552-.28c.285-.418.926-1.236 1.767-1.507.265-.086.543-.13.828-.13zm-12.314.002c.285 0 .564.043.828.129.839.27 1.481 1.086 1.767 1.505-.074.034-.15.068-.222.104a5.505 5.505 0 00-.33.176c-.124-.256-.392-.641-.969-1.047a2.32 2.32 0 00-1.346-.418c-.172 0-.32.017-.433.037a3.15 3.15 0 00-.453-.25 3.034 3.034 0 011.158-.236zm-.157.982c.349.014.655.123.913.328.386.308.572.844.634 1.057a2.965 2.965 0 00-.49.521 6.575 6.575 0 00-.543-.125C6.048 4.194 6.025 3.91 6 3.61c-.024-.29-.05-.588-.205-.834a1.932 1.932 0 00-.107-.154zm12.625.002a1.91 1.91 0 00-.105.15c-.155.246-.18.544-.205.834-.025.3-.05.587-.203.795-.197.037-.38.08-.541.125a2.952 2.952 0 00-.488-.52c.065-.221.256-.754.634-1.056.257-.204.562-.314.909-.328zm-6.31.727c1.307 0 2.477.25 3.482.74.667.325.916.57 1.01.705-1.596.709-2.483 2.164-2.492 2.18l-.162.273.262-.182.02-.015c.407-.321 1.827-1.395 3.003-1.768.329-.104.966-.28 1.541-.28.293 0 .53.045.707.136.166.085.27.206.314.369.117.425-.289 1.057-.439 1.246a.518.518 0 00-.06.1 6.35 6.35 0 01-.016-.672c-.188.41-.305 1.477-.238 2.017.168 1.373.736 2.078.736 2.078-.037-.073-.082-.362-.125-.699.034.03.068.057.101.084l.024.02c.214.172.416.333.416.853 0 .665-.72 1.056-1.416 1.432-.134.072-.267.143-.395.217-.406.234-.845.784-.894 1.603-.041.687.043 2.338.162 3.555-.584.226-1.253.3-1.861.318a5.246 5.246 0 01-.258-.617h.002c-.032-.092-.919-2.394-1.239-2.918.257 1.835.823 3.459 1.102 4.201a4.04 4.04 0 00-.549-.035l-2.736-.002h-.006l-2.736.002c-.206 0-.387.013-.55.035.28-.742.846-2.366 1.102-4.201-.319.524-1.205 2.826-1.236 2.918a5.244 5.244 0 01-.258.617c-.608-.017-1.277-.092-1.861-.318.12-1.217.201-2.868.16-3.555-.049-.819-.486-1.37-.892-1.603-.127-.074-.261-.145-.395-.217-.696-.376-1.416-.767-1.416-1.432 0-.52.202-.681.416-.853l.023-.02.102-.084c-.043.335-.089.623-.125.697.006-.007.569-.71.736-2.076.067-.54-.052-1.607-.24-2.017.008.227 0 .454-.016.67a.516.516 0 00-.058-.098c-.15-.189-.556-.821-.44-1.246a.575.575 0 01.315-.37c.176-.09.414-.134.707-.134.575 0 1.214.175 1.543.28C8.055 5.655 9.474 6.73 9.88 7.05l.02.015.26.182-.163-.273c-.01-.016-.895-1.471-2.49-2.18.094-.135.342-.38 1.01-.705 1.005-.49 2.177-.74 3.484-.74zm-1.281 4.613s.68.827 1.277.834v.002h.006c.597-.007 1.277-.834 1.277-.834v-.002c-.466.282-.884.38-1.281.389a2.495 2.495 0 01-1.28-.39zm-4.434.066c-.23.006-.47.036-.717.096.204.045.416.11.633.191l-.004.002c-.192.085-.3.323-.326.555-.054.47.244.898.244.898.03-.35.104-.6.19-.777.02.483.147 1.104.597 1.602.323.357 1.667 1.094 2.57.285.048.115.1.25.141.398.137.481-.125 1.184-.125 1.184s.705-.8.65-1.525c.507-.023 1.005-.394.99-.915 0 0-.883.488-1.663-.41-.4-.458-1.567-1.622-3.18-1.584zm11.428 0c-1.613-.038-2.781 1.126-3.18 1.584-.78.898-1.664.41-1.664.41-.014.52.482.892.988.915-.054.724.653 1.525.653 1.525s-.262-.703-.125-1.184c.042-.147.091-.282.138-.396.903.807 2.248.07 2.57-.287.452-.5.579-1.12.598-1.604.086.178.16.428.19.78 0 0 .3-.43.246-.899-.027-.232-.134-.47-.326-.555-.002 0-.004 0-.006-.002.217-.082.431-.146.635-.191a3.367 3.367 0 00-.717-.096zm-10.512.76c.915.514 1.754 1.204 2.104 1.736-.263.155-1.008.496-1.778-.076-.487-.362-.465-1.235-.326-1.66zm9.596 0c.14.425.161 1.298-.326 1.66-.77.572-1.517.23-1.78.076.35-.532 1.191-1.222 2.106-1.736zM4.455 16.197c.512 1.614 2.212 2.075 3.486 2.131a7.15 7.15 0 01-.34.485l-.052.052c-.339.366-.404.87-.194 1.494-1.057-.016-2.163-.468-2.724-1.392-.569-.936-.41-2.535-.176-2.77zm15.092 0c.233.235.393 1.834-.176 2.77-.561.923-1.664 1.373-2.72 1.39.21-.624.144-1.125-.194-1.49l-.002-.002c-.018-.02-.04-.04-.06-.06a7.1 7.1 0 01-.334-.477c1.274-.055 2.975-.517 3.486-2.13zM12 18.895l2.045.001h.74c.709 0 1.019.184 1.154.338.198.226.21.589.04 1.08v.002c-.31.886-1.14 3.03-3.979 3.034-2.839-.004-3.67-2.148-3.979-3.034-.17-.491-.157-.856.041-1.082.136-.154.446-.338 1.155-.338h.74L12 18.895zm-1.805.72l-.896.002h-.182c-.256 0-.384.074-.445.135-.089.09-.102.213-.041.37.163.415.533.756.642.85a.86.86 0 00.551.196l.002.002c.207 0 .39-.076.516-.211.352-.376.561-.782.611-.906.029-.071.062-.207-.04-.313-.081-.082-.221-.125-.417-.125h-.3zm3.31 0c-.194 0-.335.043-.415.125-.104.106-.07.242-.041.313.05.124.259.53.611.906v.002c.126.135.31.209.518.209a.861.861 0 00.55-.197c.11-.094.48-.434.643-.85.061-.156.048-.281-.04-.371-.061-.06-.188-.135-.444-.135h-.184l-.896-.002h-.301zm-6.728 1.387c.282.052.575.088.873.111.163.379.347.748.577 1.088a3.186 3.186 0 01-1.45-1.199zm10.446 0a3.19 3.19 0 01-1.442 1.195c.228-.34.413-.707.574-1.084a8.26 8.26 0 00.868-.111Z" }) + ] + } + ); +}); + +exports.default = SiGrunt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.d.ts new file mode 100644 index 000000000..446c4dc4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAA918"; +declare const SiGrunt: IconType; +export { SiGrunt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.mjs new file mode 100644 index 000000000..e9d206228 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGrunt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAA918"; +const SiGrunt = React.forwardRef(function SiGrunt2({ title = "Grunt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.04 0c-1.381.488-1.731 1.231-1.835 1.906-.355-.254-.316-1.079-.336-1.29-.353.041-1.366 1.025-1.32 2.265a7.96 7.96 0 00-.276.08c-.296-.402-1.167-1.472-2.314-1.842A3.647 3.647 0 005.832.936c-1.36 0-2.163.81-2.17.818l-.383.445.576.114c.01.002.966.201 1.362.826.065.104.083.31.101.527.012.13-.016.257-.043.379-.02.09-.038.181-.043.273-.358.014-.665.084-.914.211a1.255 1.255 0 00-.662.797c-.233.854.525 1.805.551 1.836.089.158.126 1.303-.078 1.762-.028.063-.103.126-.201.205-.03.024-.065.049-.102.076-.288.217-.722.548-.722 1.305 0 1.036 1.05 1.597 1.894 2.049.139.074.271.144.39.212l-.003.004c.126.073.57.534.57 1.223 0 .323-.028 1.859-.172 2.924-.541-.464-1.04-1.211-1.152-2.049 0 0-1.372 1.057-.969 3.32.246 1.385 1.087 2.16 2.203 2.565.405.89 1.365 2.143 3.155 2.326.677.554 1.613.913 2.978.914V24h.008c1.367-.001 2.305-.36 2.982-.916 1.786-.185 2.744-1.437 3.149-2.326 1.116-.406 1.957-1.18 2.203-2.565.402-2.263-.969-3.32-.969-3.32-.112.838-.61 1.585-1.152 2.049-.144-1.065-.174-2.601-.174-2.924 0-.689.446-1.15.572-1.223l-.004-.004c.12-.068.253-.138.39-.212.845-.452 1.893-1.013 1.893-2.05 0-.756-.434-1.087-.722-1.304l-.102-.076c-.097-.079-.173-.142-.2-.205-.205-.46-.168-1.604-.079-1.762.026-.03.784-.982.55-1.836a1.255 1.255 0 00-.661-.797c-.248-.127-.554-.197-.91-.21a1.655 1.655 0 00-.043-.276 1.289 1.289 0 01-.043-.379c.018-.218.036-.423.101-.527.396-.625 1.35-.825 1.36-.826l.576-.114-.381-.445c-.007-.008-.812-.818-2.172-.818-.371 0-.75.06-1.129.183-1.148.37-2.018 1.443-2.312 1.844a8.06 8.06 0 00-.45-.127c-.196-.74.42-1.803.42-1.803s-.635-.14-1.578.715C13 1.442 12.743.784 13.04 0zm5.118 1.637c.516 0 .936.14 1.158.234-.144.065-.3.15-.455.252a2.51 2.51 0 00-.43-.037 2.33 2.33 0 00-1.347.418c-.578.406-.846.793-.969 1.049a5.47 5.47 0 00-.552-.28c.285-.418.926-1.236 1.767-1.507.265-.086.543-.13.828-.13zm-12.314.002c.285 0 .564.043.828.129.839.27 1.481 1.086 1.767 1.505-.074.034-.15.068-.222.104a5.505 5.505 0 00-.33.176c-.124-.256-.392-.641-.969-1.047a2.32 2.32 0 00-1.346-.418c-.172 0-.32.017-.433.037a3.15 3.15 0 00-.453-.25 3.034 3.034 0 011.158-.236zm-.157.982c.349.014.655.123.913.328.386.308.572.844.634 1.057a2.965 2.965 0 00-.49.521 6.575 6.575 0 00-.543-.125C6.048 4.194 6.025 3.91 6 3.61c-.024-.29-.05-.588-.205-.834a1.932 1.932 0 00-.107-.154zm12.625.002a1.91 1.91 0 00-.105.15c-.155.246-.18.544-.205.834-.025.3-.05.587-.203.795-.197.037-.38.08-.541.125a2.952 2.952 0 00-.488-.52c.065-.221.256-.754.634-1.056.257-.204.562-.314.909-.328zm-6.31.727c1.307 0 2.477.25 3.482.74.667.325.916.57 1.01.705-1.596.709-2.483 2.164-2.492 2.18l-.162.273.262-.182.02-.015c.407-.321 1.827-1.395 3.003-1.768.329-.104.966-.28 1.541-.28.293 0 .53.045.707.136.166.085.27.206.314.369.117.425-.289 1.057-.439 1.246a.518.518 0 00-.06.1 6.35 6.35 0 01-.016-.672c-.188.41-.305 1.477-.238 2.017.168 1.373.736 2.078.736 2.078-.037-.073-.082-.362-.125-.699.034.03.068.057.101.084l.024.02c.214.172.416.333.416.853 0 .665-.72 1.056-1.416 1.432-.134.072-.267.143-.395.217-.406.234-.845.784-.894 1.603-.041.687.043 2.338.162 3.555-.584.226-1.253.3-1.861.318a5.246 5.246 0 01-.258-.617h.002c-.032-.092-.919-2.394-1.239-2.918.257 1.835.823 3.459 1.102 4.201a4.04 4.04 0 00-.549-.035l-2.736-.002h-.006l-2.736.002c-.206 0-.387.013-.55.035.28-.742.846-2.366 1.102-4.201-.319.524-1.205 2.826-1.236 2.918a5.244 5.244 0 01-.258.617c-.608-.017-1.277-.092-1.861-.318.12-1.217.201-2.868.16-3.555-.049-.819-.486-1.37-.892-1.603-.127-.074-.261-.145-.395-.217-.696-.376-1.416-.767-1.416-1.432 0-.52.202-.681.416-.853l.023-.02.102-.084c-.043.335-.089.623-.125.697.006-.007.569-.71.736-2.076.067-.54-.052-1.607-.24-2.017.008.227 0 .454-.016.67a.516.516 0 00-.058-.098c-.15-.189-.556-.821-.44-1.246a.575.575 0 01.315-.37c.176-.09.414-.134.707-.134.575 0 1.214.175 1.543.28C8.055 5.655 9.474 6.73 9.88 7.05l.02.015.26.182-.163-.273c-.01-.016-.895-1.471-2.49-2.18.094-.135.342-.38 1.01-.705 1.005-.49 2.177-.74 3.484-.74zm-1.281 4.613s.68.827 1.277.834v.002h.006c.597-.007 1.277-.834 1.277-.834v-.002c-.466.282-.884.38-1.281.389a2.495 2.495 0 01-1.28-.39zm-4.434.066c-.23.006-.47.036-.717.096.204.045.416.11.633.191l-.004.002c-.192.085-.3.323-.326.555-.054.47.244.898.244.898.03-.35.104-.6.19-.777.02.483.147 1.104.597 1.602.323.357 1.667 1.094 2.57.285.048.115.1.25.141.398.137.481-.125 1.184-.125 1.184s.705-.8.65-1.525c.507-.023 1.005-.394.99-.915 0 0-.883.488-1.663-.41-.4-.458-1.567-1.622-3.18-1.584zm11.428 0c-1.613-.038-2.781 1.126-3.18 1.584-.78.898-1.664.41-1.664.41-.014.52.482.892.988.915-.054.724.653 1.525.653 1.525s-.262-.703-.125-1.184c.042-.147.091-.282.138-.396.903.807 2.248.07 2.57-.287.452-.5.579-1.12.598-1.604.086.178.16.428.19.78 0 0 .3-.43.246-.899-.027-.232-.134-.47-.326-.555-.002 0-.004 0-.006-.002.217-.082.431-.146.635-.191a3.367 3.367 0 00-.717-.096zm-10.512.76c.915.514 1.754 1.204 2.104 1.736-.263.155-1.008.496-1.778-.076-.487-.362-.465-1.235-.326-1.66zm9.596 0c.14.425.161 1.298-.326 1.66-.77.572-1.517.23-1.78.076.35-.532 1.191-1.222 2.106-1.736zM4.455 16.197c.512 1.614 2.212 2.075 3.486 2.131a7.15 7.15 0 01-.34.485l-.052.052c-.339.366-.404.87-.194 1.494-1.057-.016-2.163-.468-2.724-1.392-.569-.936-.41-2.535-.176-2.77zm15.092 0c.233.235.393 1.834-.176 2.77-.561.923-1.664 1.373-2.72 1.39.21-.624.144-1.125-.194-1.49l-.002-.002c-.018-.02-.04-.04-.06-.06a7.1 7.1 0 01-.334-.477c1.274-.055 2.975-.517 3.486-2.13zM12 18.895l2.045.001h.74c.709 0 1.019.184 1.154.338.198.226.21.589.04 1.08v.002c-.31.886-1.14 3.03-3.979 3.034-2.839-.004-3.67-2.148-3.979-3.034-.17-.491-.157-.856.041-1.082.136-.154.446-.338 1.155-.338h.74L12 18.895zm-1.805.72l-.896.002h-.182c-.256 0-.384.074-.445.135-.089.09-.102.213-.041.37.163.415.533.756.642.85a.86.86 0 00.551.196l.002.002c.207 0 .39-.076.516-.211.352-.376.561-.782.611-.906.029-.071.062-.207-.04-.313-.081-.082-.221-.125-.417-.125h-.3zm3.31 0c-.194 0-.335.043-.415.125-.104.106-.07.242-.041.313.05.124.259.53.611.906v.002c.126.135.31.209.518.209a.861.861 0 00.55-.197c.11-.094.48-.434.643-.85.061-.156.048-.281-.04-.371-.061-.06-.188-.135-.444-.135h-.184l-.896-.002h-.301zm-6.728 1.387c.282.052.575.088.873.111.163.379.347.748.577 1.088a3.186 3.186 0 01-1.45-1.199zm10.446 0a3.19 3.19 0 01-1.442 1.195c.228-.34.413-.707.574-1.084a8.26 8.26 0 00.868-.111Z" }) + ] + } + ); +}); + +export { SiGrunt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.cjs new file mode 100644 index 000000000..b4530126f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0AE448"; +const SiGsap = React__namespace.forwardRef(function SiGsap2({ title = "GSAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.83,7.59C10.647,7.595 11.267,7.828 11.672,8.282C12.055,8.713 12.239,9.336 12.219,10.132L12.205,10.193C12.197,10.211 12.185,10.229 12.17,10.243C12.14,10.272 12.099,10.288 12.057,10.288L10.398,10.288C10.29,10.288 10.199,10.2 10.199,10.093C10.199,9.669 10.071,9.435 9.809,9.383L9.689,9.372C9.347,9.372 9.125,9.583 9.119,9.951C9.112,10.361 9.344,10.734 10.004,11.374C10.872,12.19 11.221,12.913 11.204,13.867C11.177,15.411 10.127,16.41 8.531,16.41C7.716,16.41 7.093,16.191 6.678,15.761C6.258,15.324 6.066,14.683 6.106,13.855C6.108,13.813 6.125,13.772 6.155,13.743C6.185,13.714 6.226,13.698 6.267,13.698L7.983,13.698C8.007,13.699 8.03,13.705 8.052,13.715C8.073,13.726 8.092,13.741 8.107,13.76C8.12,13.775 8.129,13.793 8.135,13.813C8.14,13.832 8.141,13.853 8.137,13.873C8.118,14.171 8.171,14.394 8.288,14.518C8.363,14.598 8.469,14.639 8.599,14.639C8.916,14.639 9.102,14.414 9.109,14.024C9.115,13.687 9.007,13.39 8.427,12.792C7.676,12.058 7.003,11.3 7.024,10.108C7.037,9.416 7.311,8.784 7.798,8.327C8.312,7.845 9.014,7.59 9.83,7.59ZM4.047,7.618C4.794,7.612 5.381,7.842 5.789,8.303C6.221,8.79 6.44,9.524 6.441,10.485C6.44,10.527 6.422,10.567 6.392,10.597C6.362,10.626 6.322,10.643 6.28,10.643L4.479,10.643C4.448,10.642 4.417,10.629 4.395,10.607C4.373,10.584 4.361,10.553 4.36,10.522C4.346,9.899 4.172,9.576 3.828,9.538L3.757,9.534C3.067,9.535 2.66,10.472 2.444,10.992C2.142,11.719 1.988,12.507 2.018,13.293C2.033,13.659 2.092,14.173 2.438,14.386C2.746,14.575 3.185,14.45 3.451,14.24C3.716,14.031 3.93,13.669 4.02,13.339C4.033,13.293 4.033,13.258 4.021,13.241C4.015,13.233 4.003,13.229 3.989,13.226L3.485,13.222C3.461,13.222 3.436,13.216 3.414,13.206C3.392,13.196 3.372,13.181 3.356,13.162C3.344,13.148 3.335,13.13 3.331,13.112C3.327,13.093 3.327,13.074 3.331,13.056L3.647,11.682C3.663,11.611 3.726,11.558 3.804,11.548L3.804,11.545L6.839,11.545C6.846,11.545 6.854,11.545 6.86,11.546C6.939,11.556 6.995,11.63 6.994,11.71L6.994,11.714L6.678,13.085C6.661,13.163 6.583,13.22 6.494,13.22L6.113,13.22C6.1,13.22 6.086,13.225 6.075,13.233C6.064,13.241 6.056,13.253 6.052,13.266C5.7,14.46 5.223,15.282 4.594,15.775C4.058,16.195 3.399,16.391 2.517,16.391C1.725,16.391 1.191,16.136 0.738,15.633C0.14,14.967 -0.107,13.879 0.043,12.566C0.313,10.103 1.589,7.618 4.047,7.618ZM21.016,7.75C23.026,7.75 24.03,8.662 23.999,10.461C23.962,12.569 22.678,14.119 20.745,14.477C20.47,14.527 20.191,14.547 19.912,14.545L18.978,14.541C18.963,14.541 18.948,14.547 18.937,14.558C18.926,14.568 18.92,14.583 18.92,14.598C18.92,14.608 18.922,14.618 18.928,14.627C18.933,14.636 18.941,14.643 18.95,14.648L19.744,15.062C19.809,15.096 19.835,15.153 19.82,15.226C19.815,15.249 19.618,16.139 19.613,16.159C19.596,16.237 19.533,16.282 19.442,16.282L17.739,16.282C17.715,16.282 17.69,16.277 17.668,16.267C17.646,16.257 17.626,16.241 17.61,16.223C17.598,16.208 17.589,16.191 17.585,16.173C17.58,16.155 17.581,16.135 17.585,16.116L19.481,7.875C19.5,7.789 19.581,7.751 19.653,7.751L21.016,7.75ZM17.273,7.762C17.292,7.77 17.31,7.781 17.324,7.795C17.338,7.81 17.351,7.828 17.358,7.847C17.366,7.866 17.369,7.886 17.369,7.906L17.358,16.119C17.361,16.138 17.36,16.158 17.355,16.177C17.35,16.196 17.34,16.213 17.328,16.228C17.313,16.245 17.295,16.259 17.274,16.268C17.254,16.277 17.232,16.282 17.21,16.281L15.397,16.281C15.377,16.282 15.356,16.277 15.337,16.27C15.318,16.262 15.3,16.25 15.286,16.236C15.272,16.221 15.26,16.204 15.253,16.185C15.245,16.166 15.241,16.146 15.241,16.125L15.28,15.328C15.282,15.241 15.28,15.217 15.229,15.211L15.161,15.209L13.447,15.209C13.323,15.209 13.314,15.22 13.27,15.334L12.914,16.191C12.882,16.252 12.818,16.281 12.722,16.281L10.927,16.281C10.818,16.281 10.74,16.173 10.781,16.072L14.499,7.873C14.524,7.824 14.562,7.75 14.648,7.75L17.214,7.75C17.234,7.75 17.254,7.754 17.273,7.762ZM15.5,9.985C15.492,9.953 15.466,9.956 15.445,9.998C15.43,10.028 15.416,10.06 15.405,10.091L14.121,13.274C14.114,13.294 14.109,13.31 14.105,13.322C14.104,13.328 14.103,13.335 14.104,13.341C14.105,13.347 14.108,13.353 14.111,13.358C14.115,13.363 14.12,13.367 14.126,13.37C14.131,13.373 14.137,13.376 14.143,13.376L15.215,13.39C15.334,13.38 15.34,13.374 15.352,13.253C15.354,13.21 15.506,10.022 15.5,9.985ZM20.112,9.582C20.097,9.582 20.083,9.588 20.072,9.599C20.061,9.609 20.055,9.624 20.054,9.639C20.054,9.649 20.057,9.659 20.062,9.668C20.068,9.677 20.075,9.685 20.084,9.69C20.097,9.697 20.869,10.104 20.926,10.135C20.968,10.158 20.969,10.198 20.955,10.267C20.948,10.298 20.415,12.642 20.416,12.644C20.419,12.647 20.435,12.655 20.515,12.655L20.551,12.655C21.446,12.619 21.934,11.561 21.952,10.534C21.961,9.979 21.772,9.638 21.429,9.588L21.358,9.582L20.112,9.582Z" }) + ] + } + ); +}); + +exports.default = SiGsap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.d.ts new file mode 100644 index 000000000..8fda68ce5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0AE448"; +declare const SiGsap: IconType; +export { SiGsap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.mjs new file mode 100644 index 000000000..59e18da14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0AE448"; +const SiGsap = React.forwardRef(function SiGsap2({ title = "GSAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.83,7.59C10.647,7.595 11.267,7.828 11.672,8.282C12.055,8.713 12.239,9.336 12.219,10.132L12.205,10.193C12.197,10.211 12.185,10.229 12.17,10.243C12.14,10.272 12.099,10.288 12.057,10.288L10.398,10.288C10.29,10.288 10.199,10.2 10.199,10.093C10.199,9.669 10.071,9.435 9.809,9.383L9.689,9.372C9.347,9.372 9.125,9.583 9.119,9.951C9.112,10.361 9.344,10.734 10.004,11.374C10.872,12.19 11.221,12.913 11.204,13.867C11.177,15.411 10.127,16.41 8.531,16.41C7.716,16.41 7.093,16.191 6.678,15.761C6.258,15.324 6.066,14.683 6.106,13.855C6.108,13.813 6.125,13.772 6.155,13.743C6.185,13.714 6.226,13.698 6.267,13.698L7.983,13.698C8.007,13.699 8.03,13.705 8.052,13.715C8.073,13.726 8.092,13.741 8.107,13.76C8.12,13.775 8.129,13.793 8.135,13.813C8.14,13.832 8.141,13.853 8.137,13.873C8.118,14.171 8.171,14.394 8.288,14.518C8.363,14.598 8.469,14.639 8.599,14.639C8.916,14.639 9.102,14.414 9.109,14.024C9.115,13.687 9.007,13.39 8.427,12.792C7.676,12.058 7.003,11.3 7.024,10.108C7.037,9.416 7.311,8.784 7.798,8.327C8.312,7.845 9.014,7.59 9.83,7.59ZM4.047,7.618C4.794,7.612 5.381,7.842 5.789,8.303C6.221,8.79 6.44,9.524 6.441,10.485C6.44,10.527 6.422,10.567 6.392,10.597C6.362,10.626 6.322,10.643 6.28,10.643L4.479,10.643C4.448,10.642 4.417,10.629 4.395,10.607C4.373,10.584 4.361,10.553 4.36,10.522C4.346,9.899 4.172,9.576 3.828,9.538L3.757,9.534C3.067,9.535 2.66,10.472 2.444,10.992C2.142,11.719 1.988,12.507 2.018,13.293C2.033,13.659 2.092,14.173 2.438,14.386C2.746,14.575 3.185,14.45 3.451,14.24C3.716,14.031 3.93,13.669 4.02,13.339C4.033,13.293 4.033,13.258 4.021,13.241C4.015,13.233 4.003,13.229 3.989,13.226L3.485,13.222C3.461,13.222 3.436,13.216 3.414,13.206C3.392,13.196 3.372,13.181 3.356,13.162C3.344,13.148 3.335,13.13 3.331,13.112C3.327,13.093 3.327,13.074 3.331,13.056L3.647,11.682C3.663,11.611 3.726,11.558 3.804,11.548L3.804,11.545L6.839,11.545C6.846,11.545 6.854,11.545 6.86,11.546C6.939,11.556 6.995,11.63 6.994,11.71L6.994,11.714L6.678,13.085C6.661,13.163 6.583,13.22 6.494,13.22L6.113,13.22C6.1,13.22 6.086,13.225 6.075,13.233C6.064,13.241 6.056,13.253 6.052,13.266C5.7,14.46 5.223,15.282 4.594,15.775C4.058,16.195 3.399,16.391 2.517,16.391C1.725,16.391 1.191,16.136 0.738,15.633C0.14,14.967 -0.107,13.879 0.043,12.566C0.313,10.103 1.589,7.618 4.047,7.618ZM21.016,7.75C23.026,7.75 24.03,8.662 23.999,10.461C23.962,12.569 22.678,14.119 20.745,14.477C20.47,14.527 20.191,14.547 19.912,14.545L18.978,14.541C18.963,14.541 18.948,14.547 18.937,14.558C18.926,14.568 18.92,14.583 18.92,14.598C18.92,14.608 18.922,14.618 18.928,14.627C18.933,14.636 18.941,14.643 18.95,14.648L19.744,15.062C19.809,15.096 19.835,15.153 19.82,15.226C19.815,15.249 19.618,16.139 19.613,16.159C19.596,16.237 19.533,16.282 19.442,16.282L17.739,16.282C17.715,16.282 17.69,16.277 17.668,16.267C17.646,16.257 17.626,16.241 17.61,16.223C17.598,16.208 17.589,16.191 17.585,16.173C17.58,16.155 17.581,16.135 17.585,16.116L19.481,7.875C19.5,7.789 19.581,7.751 19.653,7.751L21.016,7.75ZM17.273,7.762C17.292,7.77 17.31,7.781 17.324,7.795C17.338,7.81 17.351,7.828 17.358,7.847C17.366,7.866 17.369,7.886 17.369,7.906L17.358,16.119C17.361,16.138 17.36,16.158 17.355,16.177C17.35,16.196 17.34,16.213 17.328,16.228C17.313,16.245 17.295,16.259 17.274,16.268C17.254,16.277 17.232,16.282 17.21,16.281L15.397,16.281C15.377,16.282 15.356,16.277 15.337,16.27C15.318,16.262 15.3,16.25 15.286,16.236C15.272,16.221 15.26,16.204 15.253,16.185C15.245,16.166 15.241,16.146 15.241,16.125L15.28,15.328C15.282,15.241 15.28,15.217 15.229,15.211L15.161,15.209L13.447,15.209C13.323,15.209 13.314,15.22 13.27,15.334L12.914,16.191C12.882,16.252 12.818,16.281 12.722,16.281L10.927,16.281C10.818,16.281 10.74,16.173 10.781,16.072L14.499,7.873C14.524,7.824 14.562,7.75 14.648,7.75L17.214,7.75C17.234,7.75 17.254,7.754 17.273,7.762ZM15.5,9.985C15.492,9.953 15.466,9.956 15.445,9.998C15.43,10.028 15.416,10.06 15.405,10.091L14.121,13.274C14.114,13.294 14.109,13.31 14.105,13.322C14.104,13.328 14.103,13.335 14.104,13.341C14.105,13.347 14.108,13.353 14.111,13.358C14.115,13.363 14.12,13.367 14.126,13.37C14.131,13.373 14.137,13.376 14.143,13.376L15.215,13.39C15.334,13.38 15.34,13.374 15.352,13.253C15.354,13.21 15.506,10.022 15.5,9.985ZM20.112,9.582C20.097,9.582 20.083,9.588 20.072,9.599C20.061,9.609 20.055,9.624 20.054,9.639C20.054,9.649 20.057,9.659 20.062,9.668C20.068,9.677 20.075,9.685 20.084,9.69C20.097,9.697 20.869,10.104 20.926,10.135C20.968,10.158 20.969,10.198 20.955,10.267C20.948,10.298 20.415,12.642 20.416,12.644C20.419,12.647 20.435,12.655 20.515,12.655L20.551,12.655C21.446,12.619 21.934,11.561 21.952,10.534C21.961,9.979 21.772,9.638 21.429,9.588L21.358,9.582L20.112,9.582Z" }) + ] + } + ); +}); + +export { SiGsap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.cjs new file mode 100644 index 000000000..8e0357ad6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F36633"; +const SiGsk = React__namespace.forwardRef(function SiGsk2({ title = "GSK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.769 13.5v2.114h1.49V12.3c0-.15.115-.174.2-.093l3.512 3.408H24L20.279 12 24 8.384h-2.034l-3.512 3.408c-.081.081-.2.058-.2-.093V8.384h-1.485v2.125c0 .763.5 1.225 1.386 1.468.035.011.035.046 0 .057-.89.243-1.386.705-1.386 1.466ZM8.323 11.191c0 .924.774 1.5 1.825 1.5h3.535a.388.388 0 0 1 .416.416v.6a.388.388 0 0 1-.416.416H8.7v1.49h5.014a1.793 1.793 0 0 0 1.837-1.838v-.657a1.791 1.791 0 0 0-1.836-1.837H10.2a.388.388 0 0 1-.416-.416v-.717a.255.255 0 0 1 .277-.277h4.9V8.384H10.76a1.011 1.011 0 0 0-1.016 1V9.8a.067.067 0 0 1-.065.069h-.005a1.269 1.269 0 0 0-1.351 1.322ZM6.666 11.284H4.274v.448a.957.957 0 0 0 .951.962h.585v1.155a.278.278 0 0 1-.278.277H1.907a.416.416 0 0 1-.416-.416v-3.42a.415.415 0 0 1 .415-.416H5.8v-1.49h-4a1.8 1.8 0 0 0-1.8 1.8v3.635a1.8 1.8 0 0 0 1.8 1.8h3.017A1.018 1.018 0 0 0 5.834 14.6v-.4a.067.067 0 0 1 .065-.07c.808-.023 1.328-.416 1.328-1.1v-1.746Z" }) + ] + } + ); +}); + +exports.default = SiGsk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.d.ts new file mode 100644 index 000000000..12067e9a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F36633"; +declare const SiGsk: IconType; +export { SiGsk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.mjs new file mode 100644 index 000000000..68b899160 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F36633"; +const SiGsk = React.forwardRef(function SiGsk2({ title = "GSK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.769 13.5v2.114h1.49V12.3c0-.15.115-.174.2-.093l3.512 3.408H24L20.279 12 24 8.384h-2.034l-3.512 3.408c-.081.081-.2.058-.2-.093V8.384h-1.485v2.125c0 .763.5 1.225 1.386 1.468.035.011.035.046 0 .057-.89.243-1.386.705-1.386 1.466ZM8.323 11.191c0 .924.774 1.5 1.825 1.5h3.535a.388.388 0 0 1 .416.416v.6a.388.388 0 0 1-.416.416H8.7v1.49h5.014a1.793 1.793 0 0 0 1.837-1.838v-.657a1.791 1.791 0 0 0-1.836-1.837H10.2a.388.388 0 0 1-.416-.416v-.717a.255.255 0 0 1 .277-.277h4.9V8.384H10.76a1.011 1.011 0 0 0-1.016 1V9.8a.067.067 0 0 1-.065.069h-.005a1.269 1.269 0 0 0-1.351 1.322ZM6.666 11.284H4.274v.448a.957.957 0 0 0 .951.962h.585v1.155a.278.278 0 0 1-.278.277H1.907a.416.416 0 0 1-.416-.416v-3.42a.415.415 0 0 1 .415-.416H5.8v-1.49h-4a1.8 1.8 0 0 0-1.8 1.8v3.635a1.8 1.8 0 0 0 1.8 1.8h3.017A1.018 1.018 0 0 0 5.834 14.6v-.4a.067.067 0 0 1 .065-.07c.808-.023 1.328-.416 1.328-1.1v-1.746Z" }) + ] + } + ); +}); + +export { SiGsk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.cjs new file mode 100644 index 000000000..3584fd6f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC002B"; +const SiGsma = React__namespace.forwardRef(function SiGsma2({ title = "GSMA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.484 11.788v.422c0 .515-.123.84-.38 1.095-.345.343-.99.575-2.24.575-1.45 0-2.053-.297-2.394-.638C.173 12.946 0 12.53 0 12c0-.502.156-.934.47-1.247.34-.338 1.02-.633 2.404-.633 1.099 0 1.915.182 2.355.386v.752c-.522-.265-1.357-.468-2.36-.468-.986 0-1.506.176-1.735.404-.188.187-.285.446-.285.806 0 .378.104.63.28.807.235.233.68.422 1.736.422.84 0 1.39-.138 1.6-.347a.58.58 0 0 0 .177-.444h-2.21v-.65h3.052Zm.84-1.234c.264-.263.785-.434 2.055-.434.995 0 1.791.145 2.275.337v.712c-.552-.233-1.477-.404-2.273-.404-.972 0-1.277.085-1.395.203a.306.306 0 0 0-.085.227c0 .09.025.162.075.211.11.11.388.165 1.526.215 1.508.068 1.97.183 2.228.44.147.146.226.373.226.632 0 .271-.057.524-.256.722-.263.26-.793.465-2.166.465-1.016 0-2.008-.16-2.57-.402v-.713c.54.255 1.694.47 2.57.47.973 0 1.345-.072 1.492-.218a.316.316 0 0 0 .092-.236c0-.1-.024-.176-.082-.234-.109-.108-.307-.156-1.587-.218-1.428-.065-1.913-.186-2.174-.446-.145-.144-.211-.351-.211-.611 0-.266.056-.515.26-.718Zm10.212-.342-1.954 3.063-1.95-3.063h-1.09v3.576h.826V11.19L14 13.788h1.13l1.63-2.584.002 2.584h.839v-3.576h-1.066Zm3.247 2.118h2.25l-1.127-1.642-1.123 1.642Zm1.707-2.118L24 13.788h-.967l-.55-.803h-3.149l-.55.803h-.928l2.51-3.576h1.124Zm1.597.536h-.095v-.45h-.17v-.087h.435v.088h-.17v.45Zm.5-.132h-.004l-.168-.251v.383h-.092v-.537h.1l.163.254.164-.254h.1v.537h-.094v-.385l-.17.253Z" }) + ] + } + ); +}); + +exports.default = SiGsma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.d.ts new file mode 100644 index 000000000..43882d20f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC002B"; +declare const SiGsma: IconType; +export { SiGsma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.mjs new file mode 100644 index 000000000..7ccd63725 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC002B"; +const SiGsma = React.forwardRef(function SiGsma2({ title = "GSMA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.484 11.788v.422c0 .515-.123.84-.38 1.095-.345.343-.99.575-2.24.575-1.45 0-2.053-.297-2.394-.638C.173 12.946 0 12.53 0 12c0-.502.156-.934.47-1.247.34-.338 1.02-.633 2.404-.633 1.099 0 1.915.182 2.355.386v.752c-.522-.265-1.357-.468-2.36-.468-.986 0-1.506.176-1.735.404-.188.187-.285.446-.285.806 0 .378.104.63.28.807.235.233.68.422 1.736.422.84 0 1.39-.138 1.6-.347a.58.58 0 0 0 .177-.444h-2.21v-.65h3.052Zm.84-1.234c.264-.263.785-.434 2.055-.434.995 0 1.791.145 2.275.337v.712c-.552-.233-1.477-.404-2.273-.404-.972 0-1.277.085-1.395.203a.306.306 0 0 0-.085.227c0 .09.025.162.075.211.11.11.388.165 1.526.215 1.508.068 1.97.183 2.228.44.147.146.226.373.226.632 0 .271-.057.524-.256.722-.263.26-.793.465-2.166.465-1.016 0-2.008-.16-2.57-.402v-.713c.54.255 1.694.47 2.57.47.973 0 1.345-.072 1.492-.218a.316.316 0 0 0 .092-.236c0-.1-.024-.176-.082-.234-.109-.108-.307-.156-1.587-.218-1.428-.065-1.913-.186-2.174-.446-.145-.144-.211-.351-.211-.611 0-.266.056-.515.26-.718Zm10.212-.342-1.954 3.063-1.95-3.063h-1.09v3.576h.826V11.19L14 13.788h1.13l1.63-2.584.002 2.584h.839v-3.576h-1.066Zm3.247 2.118h2.25l-1.127-1.642-1.123 1.642Zm1.707-2.118L24 13.788h-.967l-.55-.803h-3.149l-.55.803h-.928l2.51-3.576h1.124Zm1.597.536h-.095v-.45h-.17v-.087h.435v.088h-.17v.45Zm.5-.132h-.004l-.168-.251v.383h-.092v-.537h.1l.163.254.164-.254h.1v.537h-.094v-.385l-.17.253Z" }) + ] + } + ); +}); + +export { SiGsma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.cjs new file mode 100644 index 000000000..7321d18a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D50000"; +const SiGsmarenadotcom = React__namespace.forwardRef(function SiGsmarenadotcom2({ title = "GSMArena.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.324 22.992c-.905-.454-12.625-5.27-12.625-5.27a1.275 1.275 0 0 0-.389-.122c-.39-.056-.78.091-1.061.444 0 0-2.672 4.354-3.066 4.948C2.782 23.58 3.2 24 3.726 24h16.38c.644 0 .898-.67.218-1.008ZM19.688 0h-7.743c-.868 0-1.49.28-2.042 1.043L4.05 10.497c-.333.457-.14.985.336 1.185.974.412 2.766.977 3.68 1.388.718.326 1.157.204 1.552-.382l4.092-6.507.49-.005v7.405c0 .924.37 1.279.946 1.54.577.246 4.144 1.773 4.689 1.973.644.246 1.143-.05 1.143-.731V1.289c0-.706-.585-1.289-1.29-1.289Z" }) + ] + } + ); +}); + +exports.default = SiGsmarenadotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.d.ts new file mode 100644 index 000000000..0190386b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D50000"; +declare const SiGsmarenadotcom: IconType; +export { SiGsmarenadotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.mjs new file mode 100644 index 000000000..31359f617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGsmarenadotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D50000"; +const SiGsmarenadotcom = React.forwardRef(function SiGsmarenadotcom2({ title = "GSMArena.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.324 22.992c-.905-.454-12.625-5.27-12.625-5.27a1.275 1.275 0 0 0-.389-.122c-.39-.056-.78.091-1.061.444 0 0-2.672 4.354-3.066 4.948C2.782 23.58 3.2 24 3.726 24h16.38c.644 0 .898-.67.218-1.008ZM19.688 0h-7.743c-.868 0-1.49.28-2.042 1.043L4.05 10.497c-.333.457-.14.985.336 1.185.974.412 2.766.977 3.68 1.388.718.326 1.157.204 1.552-.382l4.092-6.507.49-.005v7.405c0 .924.37 1.279.946 1.54.577.246 4.144 1.773 4.689 1.973.644.246 1.143-.05 1.143-.731V1.289c0-.706-.585-1.289-1.29-1.289Z" }) + ] + } + ); +}); + +export { SiGsmarenadotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.cjs new file mode 100644 index 000000000..d73d27ea7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3131"; +const SiGstreamer = React__namespace.forwardRef(function SiGstreamer2({ title = "GStreamer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.091 14.055c-.029-.586.226-1.949.811-1.82.25.055.181.399.1.77-.11.502-.3 1.049-.3 1.049s.714.028.7 0c.071-.9.26-1.878.785-1.805.435.061-.124 1.805-.124 1.805h.65c-.023-.296.136-.985.226-1.483.09-.498-.101-.716-.502-.72s-.798.347-.798.347c.016-.3-.38-.347-.38-.347-.421-.027-.826.257-.826.257l.038-.22h-.636s-.032.35-.16.99c-.129.638-.3 1.176-.3 1.176h.716zm4.354-2.22c-.87 0-1.259.614-1.259 1.242s.371 1.042 1.128 1.042c.355 0 .556-.328.556-.328s.012-.09-.055-.053c-.067.038-.25.116-.49.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.974h-.665c0-.46.368-.806.618-.683.228.106.047.683.047.683zm-8.306-.975c-.871 0-1.26.615-1.26 1.243s.372 1.042 1.128 1.042c.356 0 .557-.328.557-.328s.012-.09-.056-.053c-.067.038-.25.116-.489.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.975h-.665c0-.46.31-.757.56-.634.228.106.105.634.105.634zm9.623 1.28h-.703s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.381 1.597zm-12.12 0h-.702s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.382 1.597zm-.856-2.95-.574.198-.132.535h-.366v.352h.289s-.308 1.103-.25 1.44c.057.366.414.443.626.433s.27-.164.26-.221-.299.055-.328-.205c-.02-.154.24-1.447.24-1.447h.454v-.352h-.357l.138-.734zm5.985 2.916c.085-.07.028-.21-.045-.228-.084-.172.173-1.178.173-1.454s-.462-.828-1.416-.308c-.092.059-.058.155-.036.187s.066.053.086.032c.09-.098.48-.2.663-.007.125.115.12.339.033.425-.106.01-1.15-.02-1.276.644-.216 1.18 1.107.558 1.175.51s.06.14.172.219c.301.026.412.03.471-.02zm-.66-.493c-.107.282-.505.24-.528.04-.086-.668.603-.618.603-.618s.032.296-.075.578zm-6.948-1.04.2-.337s-.163-.347-.644-.347-.758.347-.758.758.915.721.694 1.128c-.37.379-.76-.24-.753-.28-.028.04-.219.304-.21.304.047.092.214.385.75.392.444.005.712-.324.72-.73.01-.546-.785-.823-.794-1.072-.01-.25.527-.537.795.184zm-1.048-.803c-.085-.08-.15.027-.342.107-.193.08-.257.07-.45.043-.316-.07-.871-.049-1.017.022-.975.391-.452 1.116-.293 1.26-.001 0-.238.125-.272.32-.044.251.071.387.075.39-.319.017-.524.338-.474.6.053.283.39.508.872.51 1.02.022 1.072-.63 1.072-.63.14-.793-.533-.83-1.012-.792-.173-.155-.038-.3-.045-.3 1.619.039 1.211-1.041 1.211-1.041.273-.067.81-.36.675-.489zm-2.168 2.272c.634.114.89-.031.933.292.018.316-.25.406-.561.425-.311.02-.538-.138-.551-.34-.012-.203.164-.182.179-.377zm.98-1.38c-.06.26-.239.44-.402.404-.163-.037-.248-.277-.19-.537.06-.26.239-.44.402-.403.163.037.248.277.19.537zM4.037 9.475c-.464 0-1.142-.378-1.802-.378s-1.055.378-1.124.43c-.069.05-.112.248.094.188.206-.06.378-.06.704-.06s1.107.446 1.896.446 1.45-.609 1.596-.823c.145-.215.008-.284-.103-.232-.112.051-.832.429-1.261.429zm2.012 1.175c-.487 0-1.199-.377-1.893-.377s-1.108.377-1.18.429c-.073.051-.118.248.099.188.216-.06.396-.06.739-.06.342 0 1.162.446 1.992.446s1.523-.609 1.676-.823c.153-.215.009-.283-.108-.232s-.874.43-1.325.43zm-2.8 1.297c-.506 0-1.244-.408-1.964-.408s-1.15.408-1.224.464-.122.268.103.203c.224-.065.41-.065.766-.065s1.206.482 2.066.482c.86 0 1.58-.658 1.738-.89.16-.23.01-.305-.112-.25-.121.056-.906.464-1.374.464z" }) + ] + } + ); +}); + +exports.default = SiGstreamer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.d.ts new file mode 100644 index 000000000..87ccfacdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3131"; +declare const SiGstreamer: IconType; +export { SiGstreamer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.mjs new file mode 100644 index 000000000..75be9faf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGstreamer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3131"; +const SiGstreamer = React.forwardRef(function SiGstreamer2({ title = "GStreamer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.091 14.055c-.029-.586.226-1.949.811-1.82.25.055.181.399.1.77-.11.502-.3 1.049-.3 1.049s.714.028.7 0c.071-.9.26-1.878.785-1.805.435.061-.124 1.805-.124 1.805h.65c-.023-.296.136-.985.226-1.483.09-.498-.101-.716-.502-.72s-.798.347-.798.347c.016-.3-.38-.347-.38-.347-.421-.027-.826.257-.826.257l.038-.22h-.636s-.032.35-.16.99c-.129.638-.3 1.176-.3 1.176h.716zm4.354-2.22c-.87 0-1.259.614-1.259 1.242s.371 1.042 1.128 1.042c.355 0 .556-.328.556-.328s.012-.09-.055-.053c-.067.038-.25.116-.49.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.974h-.665c0-.46.368-.806.618-.683.228.106.047.683.047.683zm-8.306-.975c-.871 0-1.26.615-1.26 1.243s.372 1.042 1.128 1.042c.356 0 .557-.328.557-.328s.012-.09-.056-.053c-.067.038-.25.116-.489.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.975h-.665c0-.46.31-.757.56-.634.228.106.105.634.105.634zm9.623 1.28h-.703s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.381 1.597zm-12.12 0h-.702s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.382 1.597zm-.856-2.95-.574.198-.132.535h-.366v.352h.289s-.308 1.103-.25 1.44c.057.366.414.443.626.433s.27-.164.26-.221-.299.055-.328-.205c-.02-.154.24-1.447.24-1.447h.454v-.352h-.357l.138-.734zm5.985 2.916c.085-.07.028-.21-.045-.228-.084-.172.173-1.178.173-1.454s-.462-.828-1.416-.308c-.092.059-.058.155-.036.187s.066.053.086.032c.09-.098.48-.2.663-.007.125.115.12.339.033.425-.106.01-1.15-.02-1.276.644-.216 1.18 1.107.558 1.175.51s.06.14.172.219c.301.026.412.03.471-.02zm-.66-.493c-.107.282-.505.24-.528.04-.086-.668.603-.618.603-.618s.032.296-.075.578zm-6.948-1.04.2-.337s-.163-.347-.644-.347-.758.347-.758.758.915.721.694 1.128c-.37.379-.76-.24-.753-.28-.028.04-.219.304-.21.304.047.092.214.385.75.392.444.005.712-.324.72-.73.01-.546-.785-.823-.794-1.072-.01-.25.527-.537.795.184zm-1.048-.803c-.085-.08-.15.027-.342.107-.193.08-.257.07-.45.043-.316-.07-.871-.049-1.017.022-.975.391-.452 1.116-.293 1.26-.001 0-.238.125-.272.32-.044.251.071.387.075.39-.319.017-.524.338-.474.6.053.283.39.508.872.51 1.02.022 1.072-.63 1.072-.63.14-.793-.533-.83-1.012-.792-.173-.155-.038-.3-.045-.3 1.619.039 1.211-1.041 1.211-1.041.273-.067.81-.36.675-.489zm-2.168 2.272c.634.114.89-.031.933.292.018.316-.25.406-.561.425-.311.02-.538-.138-.551-.34-.012-.203.164-.182.179-.377zm.98-1.38c-.06.26-.239.44-.402.404-.163-.037-.248-.277-.19-.537.06-.26.239-.44.402-.403.163.037.248.277.19.537zM4.037 9.475c-.464 0-1.142-.378-1.802-.378s-1.055.378-1.124.43c-.069.05-.112.248.094.188.206-.06.378-.06.704-.06s1.107.446 1.896.446 1.45-.609 1.596-.823c.145-.215.008-.284-.103-.232-.112.051-.832.429-1.261.429zm2.012 1.175c-.487 0-1.199-.377-1.893-.377s-1.108.377-1.18.429c-.073.051-.118.248.099.188.216-.06.396-.06.739-.06.342 0 1.162.446 1.992.446s1.523-.609 1.676-.823c.153-.215.009-.283-.108-.232s-.874.43-1.325.43zm-2.8 1.297c-.506 0-1.244-.408-1.964-.408s-1.15.408-1.224.464-.122.268.103.203c.224-.065.41-.065.766-.065s1.206.482 2.066.482c.86 0 1.58-.658 1.738-.89.16-.23.01-.305-.112-.25-.121.056-.906.464-1.374.464z" }) + ] + } + ); +}); + +export { SiGstreamer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.cjs new file mode 100644 index 000000000..ff63d28ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7FE719"; +const SiGtk = React__namespace.forwardRef(function SiGtk2({ title = "GTK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.01 23.773V14.45l-7.584 2.245Zm0-13.87L.91 3.828l.502 12.526 7.597-2.249ZM9.57 24l12.353-5.146-8.285-5.775-4.068 1.204ZM23.09 5.815l-9.257 2.849v4.148l8.237 5.741ZM9.57 9.975v3.964l3.932-1.164v-4.01Zm-.228-.52 4.16-1.28V0L1.231 3.37ZM22.715 5.34 13.833.052v8.021Z" }) + ] + } + ); +}); + +exports.default = SiGtk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.d.ts new file mode 100644 index 000000000..877e037bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7FE719"; +declare const SiGtk: IconType; +export { SiGtk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.mjs new file mode 100644 index 000000000..878b62b8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGtk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7FE719"; +const SiGtk = React.forwardRef(function SiGtk2({ title = "GTK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.01 23.773V14.45l-7.584 2.245Zm0-13.87L.91 3.828l.502 12.526 7.597-2.249ZM9.57 24l12.353-5.146-8.285-5.775-4.068 1.204ZM23.09 5.815l-9.257 2.849v4.148l8.237 5.741ZM9.57 9.975v3.964l3.932-1.164v-4.01Zm-.228-.52 4.16-1.28V0L1.231 3.37ZM22.715 5.34 13.833.052v8.021Z" }) + ] + } + ); +}); + +export { SiGtk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.cjs new file mode 100644 index 000000000..8e00c23b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C51935"; +const SiGuangzhoumetro = React__namespace.forwardRef(function SiGuangzhoumetro2({ title = "Guangzhou Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.433 12.329A16.188 16.188 0 0 1 22.118.009L17.684 0a16.2 16.2 0 0 0-4.776 11.374V24h3.525zm-8.869 0A16.174 16.174 0 0 0 1.882.009L6.319 0a16.238 16.238 0 0 1 4.773 11.374V24H7.564z" }) + ] + } + ); +}); + +exports.default = SiGuangzhoumetro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.d.ts new file mode 100644 index 000000000..b85ca7305 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C51935"; +declare const SiGuangzhoumetro: IconType; +export { SiGuangzhoumetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.mjs new file mode 100644 index 000000000..dbc565521 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuangzhoumetro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C51935"; +const SiGuangzhoumetro = React.forwardRef(function SiGuangzhoumetro2({ title = "Guangzhou Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.433 12.329A16.188 16.188 0 0 1 22.118.009L17.684 0a16.2 16.2 0 0 0-4.776 11.374V24h3.525zm-8.869 0A16.174 16.174 0 0 0 1.882.009L6.319 0a16.238 16.238 0 0 1 4.773 11.374V24H7.564z" }) + ] + } + ); +}); + +export { SiGuangzhoumetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.cjs new file mode 100644 index 000000000..6e3904dca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5C400"; +const SiGuilded = React__namespace.forwardRef(function SiGuilded2({ title = "Guilded", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.297 6.255s.02 2.846 1.481 5.79c1.502 2.834 3.572 4.654 5.28 5.38 1.765-.826 3.47-2.258 4.4-3.8h-4.845c-1.253-1.04-2.24-2.763-2.466-4.755H23.36c-.701 3.203-2.188 6.116-3.605 7.971a17.108 17.108 0 01-7.686 5.659h-.045c-5.098-2.031-7.84-5.23-9.65-8.84C1.214 11.347 0 7.147 0 1.5h24a34.23 34.23 0 01-.32 4.755z" }) + ] + } + ); +}); + +exports.default = SiGuilded; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.d.ts new file mode 100644 index 000000000..527e552cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5C400"; +declare const SiGuilded: IconType; +export { SiGuilded as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.mjs new file mode 100644 index 000000000..178e96825 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuilded.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5C400"; +const SiGuilded = React.forwardRef(function SiGuilded2({ title = "Guilded", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.297 6.255s.02 2.846 1.481 5.79c1.502 2.834 3.572 4.654 5.28 5.38 1.765-.826 3.47-2.258 4.4-3.8h-4.845c-1.253-1.04-2.24-2.763-2.466-4.755H23.36c-.701 3.203-2.188 6.116-3.605 7.971a17.108 17.108 0 01-7.686 5.659h-.045c-5.098-2.031-7.84-5.23-9.65-8.84C1.214 11.347 0 7.147 0 1.5h24a34.23 34.23 0 01-.32 4.755z" }) + ] + } + ); +}); + +export { SiGuilded as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.cjs new file mode 100644 index 000000000..8d628a7c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#569FFF"; +const SiGuitarpro = React__namespace.forwardRef(function SiGuitarpro2({ title = "Guitar Pro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.998 0C6.422 0 1.773 3.573 1.773 7.295S8.561 23.973 11.998 24c3.435.027 10.218-12.971 10.229-16.705C22.227 3.575 17.575 0 11.998 0zm3.842 5.078a2.292 2.292 0 0 1 2.389 2.34l.007 1.783a2.267 2.267 0 0 1-2.265 2.342 2.364 2.364 0 0 1-1.772-.799v3.115l-1.746.239V5.375l1.688-.287.058.785a2.292 2.292 0 0 1 1.64-.795zm-5.555.035h1.7l-.005 5.953c0 1.736-.931 2.973-2.58 2.973a4.946 4.946 0 0 1-2.423-.523l.207-1.748a3.297 3.297 0 0 0 1.996.843.946.946 0 0 0 1.056-.998v-.904l-.011.014a2.333 2.333 0 0 1-1.77.806 2.28 2.28 0 0 1-2.26-2.345V7.47a2.285 2.285 0 0 1 4.03-1.551zM9.082 6.385a1.156 1.156 0 0 0-1.139 1.273v1.26a1.164 1.164 0 0 0 1.139 1.258 1.183 1.183 0 0 0 1.154-1.139V7.55a1.158 1.158 0 0 0-1.154-1.153zm5.98.008a1.152 1.152 0 0 0-.874 1.228v1.33a1.18 1.18 0 0 0 1.152 1.26 1.166 1.166 0 0 0 1.14-1.26v-1.33a1.152 1.152 0 0 0-1.418-1.228z" }) + ] + } + ); +}); + +exports.default = SiGuitarpro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.d.ts new file mode 100644 index 000000000..74ab68eb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#569FFF"; +declare const SiGuitarpro: IconType; +export { SiGuitarpro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.mjs new file mode 100644 index 000000000..1dd12a3f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGuitarpro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#569FFF"; +const SiGuitarpro = React.forwardRef(function SiGuitarpro2({ title = "Guitar Pro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.998 0C6.422 0 1.773 3.573 1.773 7.295S8.561 23.973 11.998 24c3.435.027 10.218-12.971 10.229-16.705C22.227 3.575 17.575 0 11.998 0zm3.842 5.078a2.292 2.292 0 0 1 2.389 2.34l.007 1.783a2.267 2.267 0 0 1-2.265 2.342 2.364 2.364 0 0 1-1.772-.799v3.115l-1.746.239V5.375l1.688-.287.058.785a2.292 2.292 0 0 1 1.64-.795zm-5.555.035h1.7l-.005 5.953c0 1.736-.931 2.973-2.58 2.973a4.946 4.946 0 0 1-2.423-.523l.207-1.748a3.297 3.297 0 0 0 1.996.843.946.946 0 0 0 1.056-.998v-.904l-.011.014a2.333 2.333 0 0 1-1.77.806 2.28 2.28 0 0 1-2.26-2.345V7.47a2.285 2.285 0 0 1 4.03-1.551zM9.082 6.385a1.156 1.156 0 0 0-1.139 1.273v1.26a1.164 1.164 0 0 0 1.139 1.258 1.183 1.183 0 0 0 1.154-1.139V7.55a1.158 1.158 0 0 0-1.154-1.153zm5.98.008a1.152 1.152 0 0 0-.874 1.228v1.33a1.18 1.18 0 0 0 1.152 1.26 1.166 1.166 0 0 0 1.14-1.26v-1.33a1.152 1.152 0 0 0-1.418-1.228z" }) + ] + } + ); +}); + +export { SiGuitarpro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.cjs new file mode 100644 index 000000000..6d0e279b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CF4647"; +const SiGulp = React__namespace.forwardRef(function SiGulp2({ title = "gulp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.936 4.694c-.336 0-.675.078-1.013.222-.34.145-.676.346-1.007.605a7.133 7.133 0 00-.97.917c-.313.354-.61.745-.887 1.164-.276.42-.533.867-.78 1.32h-.001v.001c-.239.473-.448.96-.63 1.455-.18.496-.324.993-.438 1.497-.11.5-.178.987-.2 1.465a.515.515 0 00-.01.091v.095c0 .261.038.53.075.776v.002l.001.002c.068.262.175.504.31.717a1.7 1.7 0 00.537.518c.217.138.474.207.776.207.263 0 .536-.06.817-.185.279-.125.557-.288.834-.479.268-.192.536-.412.794-.66.207-.192.396-.392.583-.59l-.196.608c-.085.293-.18.576-.257.853-.085.274-.152.52-.209.738-.057.216-.096.362-.096.456v.215c0 .241.025.411.104.518a.398.398 0 00.333.152.435.435 0 00.265-.095c.081-.06.15-.137.219-.224v-.002l.002-.001c.057-.087.115-.18.164-.278.05-.101.078-.19.107-.269v-.001l.067-.24.143-.495.19-.662c.076-.247.142-.495.227-.747l.225-.75c.072-.244.14-.465.203-.661.063-.2.116-.362.16-.493.02-.065.04-.116.054-.154l.014-.032.04.018.018-.048c.076-.218.151-.427.227-.626.076-.2.152-.4.21-.597a3.762 3.762 0 00.22-1.29.637.637 0 00-.05-.255.44.44 0 00-.124-.18.499.499 0 00-.174-.1.622.622 0 00-.19-.03.655.655 0 00-.378.127c-.129.086-.225.229-.297.422v.001l-.55 1.764a3.91 3.91 0 01-.317.513v.001a9.407 9.407 0 01-1.71 1.832c-.207.17-.404.301-.6.404a1.063 1.063 0 01-.5.146.48.48 0 01-.312-.103.637.637 0 01-.204-.275 1.582 1.582 0 01-.102-.387 3.182 3.182 0 01-.028-.422c0-.413.066-.874.198-1.394.132-.52.312-1.04.539-1.579.227-.54.492-1.06.786-1.571.293-.511.605-.965.926-1.362.32-.396.64-.706.97-.95.327-.244.62-.362.902-.362a.88.88 0 01.497.145c.152.098.29.263.42.496v-.001c.134.259.269.46.385.606.12.15.259.227.408.227a.51.51 0 00.416-.208c.115-.138.17-.327.17-.556 0-.096-.01-.2-.03-.307a.87.87 0 00-.14-.334c-.314-.47-.651-.807-1.01-1.024H7.06a2.216 2.216 0 00-1.125-.317zm10.961.855a.802.802 0 00-.41.12h-.001l-.001.001a.85.85 0 00-.318.43l-1.889 4.758-.417 1.045c-.153.38-.295.76-.447 1.148a4.792 4.792 0 00-.176.551 4.995 4.995 0 01-.257.215c-.207.16-.403.281-.589.365h-.002c-.184.093-.339.129-.463.129-.082 0-.137-.02-.172-.053-.035-.033-.056-.084-.056-.166 0-.185.028-.39.084-.615.057-.22.132-.451.217-.683a8.73 8.73 0 01.274-.69l.276-.644c.086-.2.153-.382.21-.534a1.15 1.15 0 00.089-.377.71.71 0 00-.143-.437.474.474 0 00-.39-.19.466.466 0 00-.378.179 1.514 1.514 0 00-.254.42 3.917 3.917 0 00-.201.537c-.056.19-.131.368-.207.535-.113.25-.246.524-.416.826a6.64 6.64 0 01-.565.849c-.207.26-.432.479-.675.654-.24.175-.495.257-.75.257-.083 0-.138-.03-.167-.088a.472.472 0 01-.052-.225c.01-.204.046-.419.112-.643.066-.222.141-.443.226-.66.085-.21.18-.424.283-.625.105-.201.2-.391.294-.56v-.001l.248-.47c.068-.136.107-.243.135-.33l.001-.002v-.001c.01-.04.021-.09.021-.145a.419.419 0 00-.054-.214v-.001l-.001-.001a.526.526 0 00-.335-.238.65.65 0 00-.588.103c-.132.091-.231.232-.319.426a23.085 23.085 0 00-.79 1.817c-.19.505-.323.914-.418 1.229a4.666 4.666 0 00-.163.7v.001l-.02.231v.002c0 .214.029.4.09.55v.002c.068.147.148.266.249.357a.893.893 0 00.36.191c.132.04.27.059.41.059.311 0 .598-.058.861-.155s.501-.232.714-.396c.21-.163.4-.346.563-.548.12-.14.21-.285.3-.427-.04.22-.078.437-.078.614 0 .33.063.57.202.717a.695.695 0 00.523.214c.208 0 .439-.057.694-.17.253-.113.51-.262.77-.446.065-.045.127-.093.19-.141l.005.036a1 1 0 00.15.35h.001l.001.002c.08.099.17.18.291.24.123.062.273.091.45.091.253 0 .516-.059.787-.175h.002c.268-.125.537-.279.805-.48.268-.201.545-.44.812-.697l.01-.009c-.046.106-.09.212-.138.319-.219.484-.442.972-.674 1.471-.233.5-.466.994-.684 1.488l-.001.003-.001.002a3.93 3.93 0 01-.104.278c-.036.092-.085.188-.115.298v.001c-.037.1-.075.198-.095.306-.03.11-.04.217-.04.315 0 .208.059.367.172.447a.67.67 0 00.398.115c.122 0 .234-.03.335-.08v-.001h.001a.95.95 0 00.263-.22c.076-.09.14-.192.198-.308.059-.117.107-.242.154-.365l.002-.004v-.004c.008-.037.037-.121.084-.244l.162-.436.19-.512.199-.522.17-.435c.048-.124.077-.21.095-.255v-.001c.019-.038.048-.095.085-.189l.133-.313.161-.37.172-.38.142-.342.103-.226.001-.001c.085-.17.188-.358.302-.566v-.001c.123-.207.255-.405.396-.612v-.001c.152-.2.302-.397.463-.585.161-.187.33-.347.5-.498.173-.14.346-.262.521-.345a1.14 1.14 0 01.499-.128c.086 0 .143.018.178.039a.135.135 0 01.042.103c0 .08-.043.207-.144.353v.001c-.104.16-.226.33-.377.519-.162.19-.323.389-.503.597-.18.21-.352.419-.514.628a6.18 6.18 0 00-.412.603v.001a1.518 1.518 0 00-.205.53v.007a.193.193 0 01-.004.022c-.003.01-.006.014-.006.035v.057c0 .257.092.465.274.606.183.152.441.22.76.22.349 0 .67-.068.97-.204.298-.134.605-.316.92-.556h.001c.315-.236.64-.517.991-.843.341-.325.739-.685 1.184-1.08a.847.847 0 00.262-.352c.059-.138.089-.275.089-.41a.635.635 0 00-.082-.324.278.278 0 00-.248-.148.369.369 0 00-.164.043c-.053.026-.109.06-.17.101-.104.033.017.063.03.108-.538.481-1.004.887-1.373 1.206-.38.332-.699.588-.946.788a5.893 5.893 0 01-.574.41c-.132.079-.233.117-.289.117-.078 0-.132-.02-.156-.043a.142.142 0 01-.043-.108c0-.007.01-.036.035-.075.026-.04.065-.091.117-.152l.398-.465c.162-.181.324-.381.504-.6.18-.22.35-.447.502-.682.16-.23.285-.467.39-.7.101-.233.156-.455.156-.666a.837.837 0 00-.106-.426.92.92 0 00-.277-.3c-.11-.08-.238-.14-.375-.181h-.001a1.557 1.557 0 00-1.043.073 3.064 3.064 0 00-.598.332 5.677 5.677 0 00-.565.45 9.89 9.89 0 00-.38.378l.036-.176c.015-.073.025-.141.034-.207v-.001c.01-.068.013-.116.013-.149a.529.529 0 00-.126-.373v-.001h-.002c-.087-.09-.222-.129-.4-.129-.122 0-.24.07-.34.19a2.18 2.18 0 00-.263.418 4.225 4.225 0 00-.202.48l-.133.378v.001c-.046.159-.097.321-.15.485-.014.004-.027.008-.041.014a.33.33 0 00-.136.089l.003-.003c-.118.114-.251.247-.399.389-.147.142-.303.284-.464.426-.162.133-.326.275-.49.407-.162.13-.32.245-.471.345-.15.101-.29.18-.419.241a.776.776 0 01-.309.088c-.06 0-.085-.014-.1-.042h-.001a.311.311 0 01-.032-.155c0-.113.02-.243.064-.39.042-.146.086-.274.13-.385l.028-.03.374-.952c.142-.365.294-.746.465-1.152l.513-1.254c.17-.427.342-.84.503-1.234l.475-1.102c.142-.336.266-.619.37-.848l-.001.002c.059-.117.097-.227.135-.32v-.002a.934.934 0 00.055-.297c0-.196-.061-.35-.18-.443a.6.6 0 00-.384-.133Z" }) + ] + } + ); +}); + +exports.default = SiGulp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.d.ts new file mode 100644 index 000000000..dc88e2e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CF4647"; +declare const SiGulp: IconType; +export { SiGulp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.mjs new file mode 100644 index 000000000..d6ea33ea5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGulp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CF4647"; +const SiGulp = React.forwardRef(function SiGulp2({ title = "gulp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.936 4.694c-.336 0-.675.078-1.013.222-.34.145-.676.346-1.007.605a7.133 7.133 0 00-.97.917c-.313.354-.61.745-.887 1.164-.276.42-.533.867-.78 1.32h-.001v.001c-.239.473-.448.96-.63 1.455-.18.496-.324.993-.438 1.497-.11.5-.178.987-.2 1.465a.515.515 0 00-.01.091v.095c0 .261.038.53.075.776v.002l.001.002c.068.262.175.504.31.717a1.7 1.7 0 00.537.518c.217.138.474.207.776.207.263 0 .536-.06.817-.185.279-.125.557-.288.834-.479.268-.192.536-.412.794-.66.207-.192.396-.392.583-.59l-.196.608c-.085.293-.18.576-.257.853-.085.274-.152.52-.209.738-.057.216-.096.362-.096.456v.215c0 .241.025.411.104.518a.398.398 0 00.333.152.435.435 0 00.265-.095c.081-.06.15-.137.219-.224v-.002l.002-.001c.057-.087.115-.18.164-.278.05-.101.078-.19.107-.269v-.001l.067-.24.143-.495.19-.662c.076-.247.142-.495.227-.747l.225-.75c.072-.244.14-.465.203-.661.063-.2.116-.362.16-.493.02-.065.04-.116.054-.154l.014-.032.04.018.018-.048c.076-.218.151-.427.227-.626.076-.2.152-.4.21-.597a3.762 3.762 0 00.22-1.29.637.637 0 00-.05-.255.44.44 0 00-.124-.18.499.499 0 00-.174-.1.622.622 0 00-.19-.03.655.655 0 00-.378.127c-.129.086-.225.229-.297.422v.001l-.55 1.764a3.91 3.91 0 01-.317.513v.001a9.407 9.407 0 01-1.71 1.832c-.207.17-.404.301-.6.404a1.063 1.063 0 01-.5.146.48.48 0 01-.312-.103.637.637 0 01-.204-.275 1.582 1.582 0 01-.102-.387 3.182 3.182 0 01-.028-.422c0-.413.066-.874.198-1.394.132-.52.312-1.04.539-1.579.227-.54.492-1.06.786-1.571.293-.511.605-.965.926-1.362.32-.396.64-.706.97-.95.327-.244.62-.362.902-.362a.88.88 0 01.497.145c.152.098.29.263.42.496v-.001c.134.259.269.46.385.606.12.15.259.227.408.227a.51.51 0 00.416-.208c.115-.138.17-.327.17-.556 0-.096-.01-.2-.03-.307a.87.87 0 00-.14-.334c-.314-.47-.651-.807-1.01-1.024H7.06a2.216 2.216 0 00-1.125-.317zm10.961.855a.802.802 0 00-.41.12h-.001l-.001.001a.85.85 0 00-.318.43l-1.889 4.758-.417 1.045c-.153.38-.295.76-.447 1.148a4.792 4.792 0 00-.176.551 4.995 4.995 0 01-.257.215c-.207.16-.403.281-.589.365h-.002c-.184.093-.339.129-.463.129-.082 0-.137-.02-.172-.053-.035-.033-.056-.084-.056-.166 0-.185.028-.39.084-.615.057-.22.132-.451.217-.683a8.73 8.73 0 01.274-.69l.276-.644c.086-.2.153-.382.21-.534a1.15 1.15 0 00.089-.377.71.71 0 00-.143-.437.474.474 0 00-.39-.19.466.466 0 00-.378.179 1.514 1.514 0 00-.254.42 3.917 3.917 0 00-.201.537c-.056.19-.131.368-.207.535-.113.25-.246.524-.416.826a6.64 6.64 0 01-.565.849c-.207.26-.432.479-.675.654-.24.175-.495.257-.75.257-.083 0-.138-.03-.167-.088a.472.472 0 01-.052-.225c.01-.204.046-.419.112-.643.066-.222.141-.443.226-.66.085-.21.18-.424.283-.625.105-.201.2-.391.294-.56v-.001l.248-.47c.068-.136.107-.243.135-.33l.001-.002v-.001c.01-.04.021-.09.021-.145a.419.419 0 00-.054-.214v-.001l-.001-.001a.526.526 0 00-.335-.238.65.65 0 00-.588.103c-.132.091-.231.232-.319.426a23.085 23.085 0 00-.79 1.817c-.19.505-.323.914-.418 1.229a4.666 4.666 0 00-.163.7v.001l-.02.231v.002c0 .214.029.4.09.55v.002c.068.147.148.266.249.357a.893.893 0 00.36.191c.132.04.27.059.41.059.311 0 .598-.058.861-.155s.501-.232.714-.396c.21-.163.4-.346.563-.548.12-.14.21-.285.3-.427-.04.22-.078.437-.078.614 0 .33.063.57.202.717a.695.695 0 00.523.214c.208 0 .439-.057.694-.17.253-.113.51-.262.77-.446.065-.045.127-.093.19-.141l.005.036a1 1 0 00.15.35h.001l.001.002c.08.099.17.18.291.24.123.062.273.091.45.091.253 0 .516-.059.787-.175h.002c.268-.125.537-.279.805-.48.268-.201.545-.44.812-.697l.01-.009c-.046.106-.09.212-.138.319-.219.484-.442.972-.674 1.471-.233.5-.466.994-.684 1.488l-.001.003-.001.002a3.93 3.93 0 01-.104.278c-.036.092-.085.188-.115.298v.001c-.037.1-.075.198-.095.306-.03.11-.04.217-.04.315 0 .208.059.367.172.447a.67.67 0 00.398.115c.122 0 .234-.03.335-.08v-.001h.001a.95.95 0 00.263-.22c.076-.09.14-.192.198-.308.059-.117.107-.242.154-.365l.002-.004v-.004c.008-.037.037-.121.084-.244l.162-.436.19-.512.199-.522.17-.435c.048-.124.077-.21.095-.255v-.001c.019-.038.048-.095.085-.189l.133-.313.161-.37.172-.38.142-.342.103-.226.001-.001c.085-.17.188-.358.302-.566v-.001c.123-.207.255-.405.396-.612v-.001c.152-.2.302-.397.463-.585.161-.187.33-.347.5-.498.173-.14.346-.262.521-.345a1.14 1.14 0 01.499-.128c.086 0 .143.018.178.039a.135.135 0 01.042.103c0 .08-.043.207-.144.353v.001c-.104.16-.226.33-.377.519-.162.19-.323.389-.503.597-.18.21-.352.419-.514.628a6.18 6.18 0 00-.412.603v.001a1.518 1.518 0 00-.205.53v.007a.193.193 0 01-.004.022c-.003.01-.006.014-.006.035v.057c0 .257.092.465.274.606.183.152.441.22.76.22.349 0 .67-.068.97-.204.298-.134.605-.316.92-.556h.001c.315-.236.64-.517.991-.843.341-.325.739-.685 1.184-1.08a.847.847 0 00.262-.352c.059-.138.089-.275.089-.41a.635.635 0 00-.082-.324.278.278 0 00-.248-.148.369.369 0 00-.164.043c-.053.026-.109.06-.17.101-.104.033.017.063.03.108-.538.481-1.004.887-1.373 1.206-.38.332-.699.588-.946.788a5.893 5.893 0 01-.574.41c-.132.079-.233.117-.289.117-.078 0-.132-.02-.156-.043a.142.142 0 01-.043-.108c0-.007.01-.036.035-.075.026-.04.065-.091.117-.152l.398-.465c.162-.181.324-.381.504-.6.18-.22.35-.447.502-.682.16-.23.285-.467.39-.7.101-.233.156-.455.156-.666a.837.837 0 00-.106-.426.92.92 0 00-.277-.3c-.11-.08-.238-.14-.375-.181h-.001a1.557 1.557 0 00-1.043.073 3.064 3.064 0 00-.598.332 5.677 5.677 0 00-.565.45 9.89 9.89 0 00-.38.378l.036-.176c.015-.073.025-.141.034-.207v-.001c.01-.068.013-.116.013-.149a.529.529 0 00-.126-.373v-.001h-.002c-.087-.09-.222-.129-.4-.129-.122 0-.24.07-.34.19a2.18 2.18 0 00-.263.418 4.225 4.225 0 00-.202.48l-.133.378v.001c-.046.159-.097.321-.15.485-.014.004-.027.008-.041.014a.33.33 0 00-.136.089l.003-.003c-.118.114-.251.247-.399.389-.147.142-.303.284-.464.426-.162.133-.326.275-.49.407-.162.13-.32.245-.471.345-.15.101-.29.18-.419.241a.776.776 0 01-.309.088c-.06 0-.085-.014-.1-.042h-.001a.311.311 0 01-.032-.155c0-.113.02-.243.064-.39.042-.146.086-.274.13-.385l.028-.03.374-.952c.142-.365.294-.746.465-1.152l.513-1.254c.17-.427.342-.84.503-1.234l.475-1.102c.142-.336.266-.619.37-.848l-.001.002c.059-.117.097-.227.135-.32v-.002a.934.934 0 00.055-.297c0-.196-.061-.35-.18-.443a.6.6 0 00-.384-.133Z" }) + ] + } + ); +}); + +export { SiGulp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.cjs new file mode 100644 index 000000000..e4f657f45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF90E8"; +const SiGumroad = React__namespace.forwardRef(function SiGumroad2({ title = "Gumroad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm-.007 5.12c4.48 0 5.995 3.025 6.064 4.744h-3.239c-.069-.962-.897-2.406-2.896-2.406-2.136 0-3.514 1.857-3.514 4.126 0 2.27 1.378 4.125 3.514 4.125 1.93 0 2.758-1.512 3.103-3.025h-3.103v-1.238h6.509v6.327h-2.855v-3.989c-.207 1.444-1.102 4.264-4.617 4.264-3.516 0-5.584-2.82-5.584-6.326 0-3.645 2.276-6.602 6.618-6.602z" }) + ] + } + ); +}); + +exports.default = SiGumroad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.d.ts new file mode 100644 index 000000000..831980a7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF90E8"; +declare const SiGumroad: IconType; +export { SiGumroad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.mjs new file mode 100644 index 000000000..b1382e812 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGumroad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF90E8"; +const SiGumroad = React.forwardRef(function SiGumroad2({ title = "Gumroad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm-.007 5.12c4.48 0 5.995 3.025 6.064 4.744h-3.239c-.069-.962-.897-2.406-2.896-2.406-2.136 0-3.514 1.857-3.514 4.126 0 2.27 1.378 4.125 3.514 4.125 1.93 0 2.758-1.512 3.103-3.025h-3.103v-1.238h6.509v6.327h-2.855v-3.989c-.207 1.444-1.102 4.264-4.617 4.264-3.516 0-5.584-2.82-5.584-6.326 0-3.645 2.276-6.602 6.618-6.602z" }) + ] + } + ); +}); + +export { SiGumroad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.cjs new file mode 100644 index 000000000..c2c2ed18a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#72EF36"; +const SiGumtree = React__namespace.forwardRef(function SiGumtree2({ title = "Gumtree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.846 6.582a.698.698 0 0 1-.333-.599C18.181 2.66 15.39 0 12 0 8.609 0 5.75 2.593 5.485 5.983a.796.796 0 0 1-.332.599C3.49 7.778 2.36 9.707 2.36 11.9c0 2.991 2.061 5.584 4.853 6.316.465.133.998.2 1.13.066.333-.2.798-1.862.599-2.194-.134-.2-.533-.399-1.064-.532-1.662-.465-2.86-1.928-2.86-3.723 0-.997.4-1.861.998-2.592a2.927 2.927 0 0 1 .998-.798c.73-.4 1.13-1.13 1.13-1.928 0-.4.066-.798.2-1.196.531-1.53 1.927-2.66 3.656-2.66 1.728 0 3.125 1.13 3.656 2.66.132.399.2.798.2 1.196 0 .798.397 1.529 1.13 1.928.398.2.664.465.997.798a3.918 3.918 0 0 1 .997 2.592 3.859 3.859 0 0 1-3.855 3.856c-2.46 0-4.388 1.995-4.388 4.455v2.526c0 .465.066.997.2 1.13.266.267 1.995.267 2.26 0 .133-.133.2-.665.2-1.13v-2.593c0-.93.797-1.728 1.728-1.728 3.59 0 6.515-2.925 6.515-6.515-.002-2.128-1.133-4.056-2.794-5.252z" }) + ] + } + ); +}); + +exports.default = SiGumtree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.d.ts new file mode 100644 index 000000000..5c404d6a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#72EF36"; +declare const SiGumtree: IconType; +export { SiGumtree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.mjs new file mode 100644 index 000000000..1bcc4c157 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGumtree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#72EF36"; +const SiGumtree = React.forwardRef(function SiGumtree2({ title = "Gumtree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.846 6.582a.698.698 0 0 1-.333-.599C18.181 2.66 15.39 0 12 0 8.609 0 5.75 2.593 5.485 5.983a.796.796 0 0 1-.332.599C3.49 7.778 2.36 9.707 2.36 11.9c0 2.991 2.061 5.584 4.853 6.316.465.133.998.2 1.13.066.333-.2.798-1.862.599-2.194-.134-.2-.533-.399-1.064-.532-1.662-.465-2.86-1.928-2.86-3.723 0-.997.4-1.861.998-2.592a2.927 2.927 0 0 1 .998-.798c.73-.4 1.13-1.13 1.13-1.928 0-.4.066-.798.2-1.196.531-1.53 1.927-2.66 3.656-2.66 1.728 0 3.125 1.13 3.656 2.66.132.399.2.798.2 1.196 0 .798.397 1.529 1.13 1.928.398.2.664.465.997.798a3.918 3.918 0 0 1 .997 2.592 3.859 3.859 0 0 1-3.855 3.856c-2.46 0-4.388 1.995-4.388 4.455v2.526c0 .465.066.997.2 1.13.266.267 1.995.267 2.26 0 .133-.133.2-.665.2-1.13v-2.593c0-.93.797-1.728 1.728-1.728 3.59 0 6.515-2.925 6.515-6.515-.002-2.128-1.133-4.056-2.794-5.252z" }) + ] + } + ); +}); + +export { SiGumtree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.cjs new file mode 100644 index 000000000..199d51654 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#499848"; +const SiGunicorn = React__namespace.forwardRef(function SiGunicorn2({ title = "Gunicorn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.145 20.014c-.266-.085-.267-.122-.022-.865.244-.743.132-1.432-.32-1.974-.617-.737-.914-1.366-1.009-2.135-.08-.66-.107-.713-.376-.764-.18-.035-.43.034-1.023.281-.864.36-1.07.52-1.273.98-.108.242-.12.387-.06.667.075.342.378.892.494.893.03 0 .196.114.368.252.287.23.307.27.225.458-.176.408-.595.902-.764.902-.095 0-.482-.272-.91-.637-.836-.717-.872-.79-.96-1.965-.1-1.403.244-2.058 1.78-3.375l.964-.827.062-.5c.063-.518-.026-1.748-.177-2.427-.09-.4-.382-.783-.66-.86-.303-.084-.48.09-.712.694-.25.654-.486.882-.92.882-.27 0-.52-.173-.694-.477C4.033 9 3.96 7.691 4.035 7.002c.036-.33.038-.666.005-.745-.054-.128-.52-.405-1.62-.962a4.343 4.343 0 0 1-.518-.303 3.053 3.053 0 0 0-.49-.267C.994 4.54-.095 3.903.007 3.903c.193 0 1.01.252 1.446.445.266.118.52.215.565.215.045 0 .558.165 1.14.366.58.202 1.111.367 1.18.367.16 0 .185-.14.134-.746-.024-.275-.023-.5.002-.5s.132.053.238.118c.324.198 1.02.32 1.84.32.783.002 1.806.157 2.196.335.56.254 1.211 1.05 2.036 2.49.574 1.002 1.19 1.426 2.073 1.427.357 0 1.31-.147 2.6-.4 1.063-.21 2.467-.259 3.012-.103.665.19 1.545.7 2.27 1.314.68.576.786.704 1.204 1.468.5.912 1.05 2.207 1.54 3.622.07.202.216.54.326.753.294.568.28.603-.255.603-.58 0-.853-.092-1.233-.415-.365-.31-.46-.5-1.032-2.05-.292-.796-.577-1.273-.76-1.273-.124 0-.376.852-.376 1.273 0 .3.187.702.67 1.447.788 1.21 1.202 2.922 1.036 4.28l-.07.586-.526.022c-.825.034-.817.046-.817-1.135 0-1.257-.085-1.529-.64-2.035-.23-.21-.748-.81-1.149-1.33-.402-.52-.786-.946-.854-.946-.158 0-.236.428-.244 1.332-.006.595-.03.696-.205.88-.476.497-.81 1.403-1.016 2.754-.046.3-.085.355-.279.398-.285.064-1.075.075-1.143.015-.059-.05.044-.863.278-2.19.088-.504.185-1.18.214-1.503.053-.574-.065-1.65-.204-1.867-.058-.09-.353-.11-1.732-.116-.915-.003-1.918-.033-2.23-.066l-.565-.06v.25c0 .27.07.506.53 1.822.162.464.397 1.17.523 1.57l.227.728-.192.592a6.11 6.11 0 0 1-.348.867c-.152.266-.17.274-.595.27a2.97 2.97 0 0 1-.677-.083z" }) + ] + } + ); +}); + +exports.default = SiGunicorn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.d.ts new file mode 100644 index 000000000..63cafe094 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#499848"; +declare const SiGunicorn: IconType; +export { SiGunicorn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.mjs new file mode 100644 index 000000000..afd0a2094 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGunicorn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#499848"; +const SiGunicorn = React.forwardRef(function SiGunicorn2({ title = "Gunicorn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.145 20.014c-.266-.085-.267-.122-.022-.865.244-.743.132-1.432-.32-1.974-.617-.737-.914-1.366-1.009-2.135-.08-.66-.107-.713-.376-.764-.18-.035-.43.034-1.023.281-.864.36-1.07.52-1.273.98-.108.242-.12.387-.06.667.075.342.378.892.494.893.03 0 .196.114.368.252.287.23.307.27.225.458-.176.408-.595.902-.764.902-.095 0-.482-.272-.91-.637-.836-.717-.872-.79-.96-1.965-.1-1.403.244-2.058 1.78-3.375l.964-.827.062-.5c.063-.518-.026-1.748-.177-2.427-.09-.4-.382-.783-.66-.86-.303-.084-.48.09-.712.694-.25.654-.486.882-.92.882-.27 0-.52-.173-.694-.477C4.033 9 3.96 7.691 4.035 7.002c.036-.33.038-.666.005-.745-.054-.128-.52-.405-1.62-.962a4.343 4.343 0 0 1-.518-.303 3.053 3.053 0 0 0-.49-.267C.994 4.54-.095 3.903.007 3.903c.193 0 1.01.252 1.446.445.266.118.52.215.565.215.045 0 .558.165 1.14.366.58.202 1.111.367 1.18.367.16 0 .185-.14.134-.746-.024-.275-.023-.5.002-.5s.132.053.238.118c.324.198 1.02.32 1.84.32.783.002 1.806.157 2.196.335.56.254 1.211 1.05 2.036 2.49.574 1.002 1.19 1.426 2.073 1.427.357 0 1.31-.147 2.6-.4 1.063-.21 2.467-.259 3.012-.103.665.19 1.545.7 2.27 1.314.68.576.786.704 1.204 1.468.5.912 1.05 2.207 1.54 3.622.07.202.216.54.326.753.294.568.28.603-.255.603-.58 0-.853-.092-1.233-.415-.365-.31-.46-.5-1.032-2.05-.292-.796-.577-1.273-.76-1.273-.124 0-.376.852-.376 1.273 0 .3.187.702.67 1.447.788 1.21 1.202 2.922 1.036 4.28l-.07.586-.526.022c-.825.034-.817.046-.817-1.135 0-1.257-.085-1.529-.64-2.035-.23-.21-.748-.81-1.149-1.33-.402-.52-.786-.946-.854-.946-.158 0-.236.428-.244 1.332-.006.595-.03.696-.205.88-.476.497-.81 1.403-1.016 2.754-.046.3-.085.355-.279.398-.285.064-1.075.075-1.143.015-.059-.05.044-.863.278-2.19.088-.504.185-1.18.214-1.503.053-.574-.065-1.65-.204-1.867-.058-.09-.353-.11-1.732-.116-.915-.003-1.918-.033-2.23-.066l-.565-.06v.25c0 .27.07.506.53 1.822.162.464.397 1.17.523 1.57l.227.728-.192.592a6.11 6.11 0 0 1-.348.867c-.152.266-.17.274-.595.27a2.97 2.97 0 0 1-.677-.083z" }) + ] + } + ); +}); + +export { SiGunicorn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.cjs new file mode 100644 index 000000000..bfa10d2a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE3524"; +const SiGurobi = React__namespace.forwardRef(function SiGurobi2({ title = "Gurobi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.036 0 7.032 1.359L24 18.37 18.37 24 0 17.635 1.805 5.952 11.036 0Zm12.389 18.239L17.887 2.36l-3.557 7.83 3.88 13.264 5.215-5.214Zm-5.822-16.46L11.138.528l-8.71 5.617 11.554 3.6 3.62-7.968Z" }) + ] + } + ); +}); + +exports.default = SiGurobi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.d.ts new file mode 100644 index 000000000..61618245a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE3524"; +declare const SiGurobi: IconType; +export { SiGurobi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.mjs new file mode 100644 index 000000000..be5686a4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGurobi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE3524"; +const SiGurobi = React.forwardRef(function SiGurobi2({ title = "Gurobi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.036 0 7.032 1.359L24 18.37 18.37 24 0 17.635 1.805 5.952 11.036 0Zm12.389 18.239L17.887 2.36l-3.557 7.83 3.88 13.264 5.215-5.214Zm-5.822-16.46L11.138.528l-8.71 5.617 11.554 3.6 3.62-7.968Z" }) + ] + } + ); +}); + +export { SiGurobi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.cjs new file mode 100644 index 000000000..ff18b1033 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F45D48"; +const SiGusto = React__namespace.forwardRef(function SiGusto2({ title = "Gusto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.311 8.768c-1.482 0-2.69 1.212-2.69 2.702s1.208 2.701 2.69 2.701c1.483 0 2.689-1.212 2.689-2.701s-1.206-2.702-2.689-2.702Zm0 4.123a1.42 1.42 0 0 1-1.415-1.421 1.42 1.42 0 0 1 1.415-1.422c.78 0 1.415.638 1.415 1.422s-.635 1.42-1.415 1.42Zm-7.919-1.969-.47-.235c-.204-.102-.332-.18-.384-.239a.283.283 0 0 1-.078-.19c0-.091.04-.168.122-.228.08-.063.193-.091.338-.091.264 0 .556.16.878.48l.794-.797a2.09 2.09 0 0 0-.744-.63 2.06 2.06 0 0 0-.937-.22c-.484 0-.884.143-1.196.431a1.367 1.367 0 0 0-.468 1.04c0 .63.412 1.154 1.24 1.57l.433.218c.373.189.559.381.559.58 0 .108-.052.201-.155.284a.63.63 0 0 1-.409.122c-.156 0-.336-.054-.538-.163a1.81 1.81 0 0 1-.528-.427l-.79.864c.446.584 1.04.878 1.786.878.561 0 1.009-.153 1.34-.458.335-.304.502-.685.502-1.141 0-.342-.093-.642-.277-.897-.185-.255-.525-.504-1.018-.75Zm-7.985 2.66V8.876H4.131v.316a2.662 2.662 0 0 0-1.442-.423C1.206 8.768 0 9.98 0 11.47s1.206 2.701 2.689 2.701c.505 0 1-.142 1.427-.412l-.002.104a1.42 1.42 0 0 1-1.415 1.42c-.265 0-.524-.075-.748-.217l-.631 1.11c.416.255.894.39 1.382.39a2.713 2.713 0 0 0 2.705-2.702c0-.057.004-.227 0-.281ZM2.69 12.89a1.42 1.42 0 0 1-1.415-1.42c0-.784.636-1.422 1.415-1.422s1.415.638 1.415 1.422a1.42 1.42 0 0 1-1.415 1.42Zm7.803-4.016H9.21v2.568c.002.365.002.995-.265 1.264-.128.128-.269.245-.563.245a.707.707 0 0 1-.565-.245c-.269-.27-.266-.901-.265-1.264V8.874H6.27v2.56c-.004.528-.01 1.509.633 2.16.377.38.827.575 1.476.575.65 0 1.1-.193 1.477-.576.643-.65.637-1.633.633-2.159l.004-2.56Zm7.27 3.787c-.104.078-.353.253-.636.213-.23-.03-.418-.2-.447-.768v-2.13h1.507V8.87H16.68V7.434H15.4v.281h-.002v4.223c0 .671.17 2.231 1.726 2.231.788-.012 1.266-.441 1.467-.609l.026-.02-.767-.95a4.174 4.174 0 0 1-.089.07Z" }) + ] + } + ); +}); + +exports.default = SiGusto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.d.ts new file mode 100644 index 000000000..3781023c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F45D48"; +declare const SiGusto: IconType; +export { SiGusto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.mjs new file mode 100644 index 000000000..07ec8eea0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGusto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F45D48"; +const SiGusto = React.forwardRef(function SiGusto2({ title = "Gusto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.311 8.768c-1.482 0-2.69 1.212-2.69 2.702s1.208 2.701 2.69 2.701c1.483 0 2.689-1.212 2.689-2.701s-1.206-2.702-2.689-2.702Zm0 4.123a1.42 1.42 0 0 1-1.415-1.421 1.42 1.42 0 0 1 1.415-1.422c.78 0 1.415.638 1.415 1.422s-.635 1.42-1.415 1.42Zm-7.919-1.969-.47-.235c-.204-.102-.332-.18-.384-.239a.283.283 0 0 1-.078-.19c0-.091.04-.168.122-.228.08-.063.193-.091.338-.091.264 0 .556.16.878.48l.794-.797a2.09 2.09 0 0 0-.744-.63 2.06 2.06 0 0 0-.937-.22c-.484 0-.884.143-1.196.431a1.367 1.367 0 0 0-.468 1.04c0 .63.412 1.154 1.24 1.57l.433.218c.373.189.559.381.559.58 0 .108-.052.201-.155.284a.63.63 0 0 1-.409.122c-.156 0-.336-.054-.538-.163a1.81 1.81 0 0 1-.528-.427l-.79.864c.446.584 1.04.878 1.786.878.561 0 1.009-.153 1.34-.458.335-.304.502-.685.502-1.141 0-.342-.093-.642-.277-.897-.185-.255-.525-.504-1.018-.75Zm-7.985 2.66V8.876H4.131v.316a2.662 2.662 0 0 0-1.442-.423C1.206 8.768 0 9.98 0 11.47s1.206 2.701 2.689 2.701c.505 0 1-.142 1.427-.412l-.002.104a1.42 1.42 0 0 1-1.415 1.42c-.265 0-.524-.075-.748-.217l-.631 1.11c.416.255.894.39 1.382.39a2.713 2.713 0 0 0 2.705-2.702c0-.057.004-.227 0-.281ZM2.69 12.89a1.42 1.42 0 0 1-1.415-1.42c0-.784.636-1.422 1.415-1.422s1.415.638 1.415 1.422a1.42 1.42 0 0 1-1.415 1.42Zm7.803-4.016H9.21v2.568c.002.365.002.995-.265 1.264-.128.128-.269.245-.563.245a.707.707 0 0 1-.565-.245c-.269-.27-.266-.901-.265-1.264V8.874H6.27v2.56c-.004.528-.01 1.509.633 2.16.377.38.827.575 1.476.575.65 0 1.1-.193 1.477-.576.643-.65.637-1.633.633-2.159l.004-2.56Zm7.27 3.787c-.104.078-.353.253-.636.213-.23-.03-.418-.2-.447-.768v-2.13h1.507V8.87H16.68V7.434H15.4v.281h-.002v4.223c0 .671.17 2.231 1.726 2.231.788-.012 1.266-.441 1.467-.609l.026-.02-.767-.95a4.174 4.174 0 0 1-.089.07Z" }) + ] + } + ); +}); + +export { SiGusto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.cjs new file mode 100644 index 000000000..9a3dd64ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiGutenberg = React__namespace.forwardRef(function SiGutenberg2({ title = "Gutenberg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.34 0a.205.205 0 00-.18.116c-.05.105-.01.23.095.28.503.25.459.692.418.87-.08.352-.391.723-.8.723-.522 0-.772-.263-1.052-.746-.138-.236-.523-.81-1.113-.982a1.615 1.615 0 00-1.718.533 1.615 1.615 0 00-1.717-.533c-.59.172-.975.746-1.114.982-.28.483-.53.746-1.042.746H8.11a.833.833 0 01-.81-.62c-.04-.146-.124-.642.442-.98a.208.208 0 00.071-.286.208.208 0 00-.286-.071c-.652.388-.753 1.002-.631 1.447.148.55.637.921 1.21.925h.01c.787 0 1.138-.493 1.404-.952.088-.151.412-.658.871-.79.567-.164 1.17.099 1.407.615a.212.212 0 00.182.121h.024a.211.211 0 00.182-.121c.236-.516.84-.78 1.407-.614.459.135.783.638.87.79.267.462.618.95 1.414.95.479 0 1.046-.357 1.204-1.042.132-.566-.11-1.08-.64-1.34a.215.215 0 00-.102-.02zM3.821.093a.21.21 0 00-.21.209c0 .115.092.21.21.21H6.41a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm13.863 0a.21.21 0 00-.209.209c0 .115.095.21.21.21h2.587a.21.21 0 00.21-.21.21.21 0 00-.21-.21zM2.904.096a.21.21 0 00-.206.21.21.21 0 00.21.208.21.21 0 00.209-.209.21.21 0 00-.21-.209.21.21 0 00-.003 0zm18.24 0a.21.21 0 00-.206.21.21.21 0 00.209.208.21.21 0 00.21-.209.21.21 0 00-.21-.209.21.21 0 00-.004 0zm-19.39 0a.209.209 0 00-.196.21v2.216c0 .115.091.21.206.21a.21.21 0 00.21-.21V.859l1.015 1.153a.209.209 0 00.313-.273L1.922.167a.211.211 0 00-.167-.07zm20.512 0a.21.21 0 00-.168.07l-1.38 1.57a.205.205 0 00.02.293c.082.078.213.068.29-.02L22.045.855V2.52c0 .114.095.209.21.209a.21.21 0 00.209-.21V.306a.208.208 0 00-.197-.208zM8.235.526a.564.564 0 10.563.563.564.564 0 00-.563-.563zm7.591 0a.564.564 0 000 1.126.565.565 0 000-1.126zm3.59.224a.208.208 0 00-.212.164c-.078.354-.034.637.134.846.243.304.635.314.679.314a.209.209 0 00.202-.158c.078-.29.047-.547-.094-.756-.226-.338-.641-.402-.689-.408a.214.214 0 00-.02-.002zm-14.835 0c-.007 0-.013 0-.02.002-.047.006-.459.07-.688.408-.139.209-.172.462-.098.759a.213.213 0 00.202.159c.044 0 .435-.01.678-.314.169-.21.213-.496.135-.847a.208.208 0 00-.209-.167zm3.654.19a.15.15 0 01.148.149.15.15 0 01-.148.148.15.15 0 01-.148-.148.15.15 0 01.148-.148zm7.591 0a.15.15 0 01.149.149.15.15 0 01-.149.148.15.15 0 01-.148-.148.15.15 0 01.148-.148zM4.41 1.234a.41.41 0 01-.078.267.395.395 0 01-.178.121c0-.088.023-.165.064-.226a.51.51 0 01.192-.162zm15.18 0c.07.034.144.088.192.162.04.064.064.138.064.226a.404.404 0 01-.176-.121.412.412 0 01-.08-.267zm-6.593.135a1.3 1.3 0 00-.439.07.206.206 0 00-.121.267.21.21 0 00.266.125c.034-.013.844-.283 1.464.682.04.06.108.094.176.094.037 0 .077-.01.111-.034a.208.208 0 00.064-.286c-.465-.72-1.07-.918-1.52-.918zm-1.989.003a1.577 1.577 0 00-.262.017c-.35.05-.853.25-1.272.901a.207.207 0 00.064.287.196.196 0 00.112.034.212.212 0 00.175-.095c.618-.965 1.427-.695 1.464-.681a.208.208 0 00.267-.125.211.211 0 00-.125-.27c-.023-.008-.184-.065-.423-.068zm.976.162a.21.21 0 00-.205.21.21.21 0 00.209.209.21.21 0 00.209-.21.21.21 0 00-.21-.209.21.21 0 00-.003 0zm6.779.303c-.2-.007-.455.052-.77.244a3.24 3.24 0 00-.533.415c-.513.452-.941.442-.965.442a.208.208 0 00-.1.395c.33.155.63.216.9.216.516 0 .928-.226 1.215-.463.458-.378.695-.853.705-.873a.206.206 0 00-.081-.27.777.777 0 00-.372-.106zm-13.434.002a.796.796 0 00-.372.104.206.206 0 00-.081.27c.01.02.246.495.705.873.287.237.695.463 1.214.463.274 0 .574-.061.901-.216a.207.207 0 00.112-.24.208.208 0 00-.213-.158c-.017 0-.449.013-.962-.44A3.237 3.237 0 006.1 2.08c-.315-.19-.57-.248-.77-.242zM12 2.114c-.263 0-.469.273-.627.634-1.677.074-3.762 1.157-3.85 1.201-1.427.719-2.898-.638-3.273-1.019-.057-.064-.097-.101-.1-.108a.208.208 0 00-.304.283l.26.294c.151.189.343.462.505.79.405.82.412 1.565.024 2.22a8.822 8.822 0 00-1.174 1.896c-1.13.368-1.535-.32-1.552-.351 0-.004-.003-.003-.003-.007-.213-.357-.129-.84.195-1.147.25-.236.685-.256.82-.256h.003c.453 0 .918-.071 1.219-.59.229-.399.168-.892-.156-1.219-.327-.334-.82-.391-1.258-.148a.206.206 0 00-.081.283.206.206 0 00.283.081c.28-.152.564-.125.76.078a.596.596 0 01.09.718c-.185.32-.438.385-.843.385h-.014c-.185 0-.617.027-.961.25V3.335a.21.21 0 00-.21-.21.21.21 0 00-.208.21v3.509c-.23.412-.243.914-.007 1.32.023.043.168.286.492.468.186.105.453.203.807.203.128 0 .27-.014.421-.044-.364.978-.546 2.03-.553 3.178v.037a9.1 9.1 0 002.052 5.729 9.45 9.45 0 004.527 3.047 3.84 3.84 0 00-3.634 1.491 1.391 1.391 0 00-.192-.206.77.77 0 00.375-.658.767.767 0 00-.989-.732 1.175 1.175 0 00-.087-.368c-.324-.725-.915-.847-1.445-.904-.175-.02-.765-.108-1.076-.472-.391-.442-.398-1.1-.023-1.525a.208.208 0 10-.31-.277c-.51.58-.507 1.474.006 2.082.067.08.145.148.226.209a1.738 1.738 0 00-.651.334c-.496.408-.75 1.09-.756 2.017a.212.212 0 00.095.22c.033.02.07.03.107.03.014 0 .03-.003.044-.007h.004c.006 0 .01-.003.017-.007.01-.003.023-.007.033-.013.004 0 .004-.003.007-.003a.242.242 0 00.084-.081c.081-.105.415-.237.692-.294 1.083-.236 1.31-.968 1.275-1.32a.208.208 0 10-.415.038c0 .003.004.064-.016.155-.051.21-.237.57-.932.722h-.006a2.772 2.772 0 00-.55.179c.06-.6.253-1.04.58-1.312.503-.419 1.167-.3 1.174-.297a.203.203 0 00.064 0 2.5 2.5 0 00.277.043c.557.061.897.183 1.11.658.165.375-.047.807-.334 1.023-.145.111-.533.33-.968-.027a.209.209 0 00-.267.32c.196.162.415.257.641.284-.29.236-.486.533-.573.688-.284.49-.513.752-.895.756v-1.461a.21.21 0 00-.209-.21.21.21 0 00-.209.21v1.694c0 .084.05.155.122.189.037.027.08.047.128.047h4.858a.212.212 0 00.176-.095.22.22 0 00.06-.1 1.686 1.686 0 013.192-.223h-.445a1.204 1.204 0 00-1.117-.75c-.543 0-1.022.368-1.167.891a.21.21 0 00.145.257.21.21 0 00.256-.145.791.791 0 011.407-.253h-.121a.21.21 0 00-.21.209c0 .114.095.209.21.209h.421l.024.003c.01 0 .02 0 .027-.003h.837a.21.21 0 00.209-.21c0-.01 0-.02-.004-.03a.257.257 0 00-.003-.087 2.106 2.106 0 00-4.035-.092h-1.09c.088-.28.206-.54.354-.782.01-.014.017-.027.027-.04a3.434 3.434 0 014.862-.97c.017.011.034.021.05.025.088.104.176.215.26.33l.058.081c-.02.429.212.877.695 1.336.017.05.034.095.044.128v.044c0 .115.094.21.209.21a.203.203 0 00.199-.156c0-.003.03-.104.091-.273.435-.425.651-.84.648-1.242a6.449 6.449 0 01.381-.496 3.393 3.393 0 011.947-.607 3.42 3.42 0 013.273 2.413h-1.09a2.1 2.1 0 00-2.004-1.461c-.948 0-1.782.637-2.031 1.552a.173.173 0 000 .1v.018c0 .114.094.209.209.209h1.828a.21.21 0 00.21-.21.21.21 0 00-.21-.208h-.664a.791.791 0 011.41.263.206.206 0 00.253.148.21.21 0 00.152-.253 1.21 1.21 0 00-2.288-.159h-.421a1.687 1.687 0 013.191.223c.004.017.014.034.02.05a.208.208 0 00.2.146h4.95a.21.21 0 00.208-.21v-.067c.004-.02.004-.04.004-.06 0-.004 0-.008-.004-.011v-1.582a.21.21 0 00-.209-.21.21.21 0 00-.209.21v1.417c-.35-.027-.57-.287-.84-.752a2.65 2.65 0 00-.54-.658c.186-.04.364-.129.53-.267a.209.209 0 00-.267-.32c-.432.357-.82.138-.968.027-.287-.216-.5-.652-.334-1.023.212-.475.553-.6 1.11-.658.07-.006.165-.02.277-.043.02.003.043.003.067 0 .007 0 .665-.122 1.17.296.331.274.527.712.584 1.316a2.762 2.762 0 00-.553-.182h-.007c-.691-.152-.88-.51-.93-.719a.468.468 0 01-.018-.155.208.208 0 10-.415-.037c-.033.354.193 1.083 1.28 1.32.28.06.633.198.698.303a.356.356 0 00.034.04l.01.007c.01.007.02.017.03.02.003.003.01.007.013.007.01.007.02.01.03.014l.014.003c.014.003.03.007.047.007.014 0 .024 0 .037-.003.004 0 .007 0 .01-.003.01-.003.02-.007.034-.01h.004c.01-.003.017-.01.027-.014l.003-.003c.007-.003.014-.01.017-.013.003-.003.01-.007.014-.014l.013-.013c.003-.007.01-.01.013-.017l.01-.017.01-.017c.004-.007.004-.014.007-.02.004-.007.004-.014.007-.02 0-.007.004-.014.004-.017 0-.007.003-.014.003-.024v-.003c-.003-.955-.26-1.646-.763-2.061a1.69 1.69 0 00-.65-.334c.08-.061.158-.132.225-.21.517-.607.52-1.5.007-2.081a.205.205 0 00-.293-.017.205.205 0 00-.017.293c.374.426.367 1.083-.014 1.536-.31.364-.9.452-1.076.472-.53.057-1.124.179-1.444.904-.05.111-.081.236-.088.371a.767.767 0 00-1.002.729c0 .29.162.543.402.671-.071.065-.139.135-.2.216a3.847 3.847 0 00-3.62-1.518 9.413 9.413 0 005.55-4.619 8.912 8.912 0 001.016-4.153V11.977a8.487 8.487 0 00-.644-3.168c.138.027.27.037.388.037.873 0 1.258-.6 1.299-.671a1.3 1.3 0 00.11-1.05c.004-.01.004-.023.004-.037V3.286a.21.21 0 00-.209-.21.21.21 0 00-.21.21V6.48c-.353-.307-.866-.34-1.079-.34-.411.003-.668-.062-.857-.385a.592.592 0 01.091-.72c.2-.202.483-.228.76-.077a.209.209 0 00.202-.364c-.439-.243-.931-.182-1.259.148-.323.331-.384.82-.155 1.218.3.517.756.59 1.205.59h.017c.135 0 .57.021.82.257.323.307.408.79.195 1.147 0 0-.003.004-.003.007-.017.03-.419.712-1.539.354a10.48 10.48 0 00-1.093-1.808l-.165.125.165-.128-.067-.088c-.719-1.205.111-2.487.543-3.03l.243-.277a.208.208 0 00-.304-.283 2.71 2.71 0 00-.101.108c-.375.381-1.839 1.73-3.26 1.026l-.04-.027-.02-.014c-1.272-.685-2.527-1.08-3.725-1.18-.155-.355-.36-.625-.62-.625zm-8.509.077a.21.21 0 00-.205.21.21.21 0 00.209.209.21.21 0 00.209-.21.21.21 0 00-.21-.209.21.21 0 00-.003 0zm16.91 0a.21.21 0 00-.206.21.21.21 0 00.21.209.21.21 0 00.209-.21.21.21 0 00-.21-.209.21.21 0 00-.003 0zm-15.017.061c.35.017.8.385.958.543l.01.01c.159.142.318.247.463.324-.73.007-1.212-.55-1.43-.877zm13.324 0a2.62 2.62 0 01-.46.513c-.303.25-.627.37-.97.364.14-.074.3-.182.461-.324l.01-.01c.159-.158.608-.526.959-.543zm-6.718.283c.186.071.473.945.56 1.539.017.118.027.226.027.314a.59.59 0 01-1.18 0 2.91 2.91 0 01.03-.31c.09-.632.401-1.475.563-1.543zm-8.84.313l-.02.001c-.047.007-.459.071-.688.408-.138.21-.172.463-.098.76a.213.213 0 00.203.158c.043 0 .435-.01.678-.314.168-.209.212-.496.135-.846a.206.206 0 00-.21-.167zm17.727 0a.208.208 0 00-.213.163c-.077.354-.033.638.135.847.25.304.641.314.682.317a.209.209 0 00.202-.158c.075-.297.044-.55-.097-.76-.226-.337-.641-.401-.689-.408a.213.213 0 00-.02-.001zm-8.11.325c1.082.122 2.212.493 3.363 1.11l.044.03.023.014c.334.169.692.253 1.063.253.392 0 .8-.094 1.211-.283l-1.08 1.231a.761.761 0 00-.732.047 7.877 7.877 0 00-3.69-1.46 6.766 6.766 0 00-.203-.942zm-1.556.007c-.101.34-.169.695-.203.938a7.879 7.879 0 00-3.735 1.504.752.752 0 00-.712-.03L5.429 4.3c.415.186.82.28 1.211.28a2.36 2.36 0 001.066-.253c.02-.01 1.947-1.012 3.506-1.147zm-8.23.152c0 .11-.026.199-.077.266a.395.395 0 01-.179.122c0-.088.024-.166.065-.226a.51.51 0 01.192-.162zm18.071 0a.51.51 0 01.193.162c.04.064.064.138.064.226a.404.404 0 01-.176-.122.412.412 0 01-.08-.266zm-10.05 1.207a.994.994 0 00.79.837v.145A6.472 6.472 0 007.83 7.036l-.297-.34a.76.76 0 00.037-.77 7.488 7.488 0 013.432-1.387zm1.983 0a7.472 7.472 0 013.398 1.353.755.755 0 00.044.746l-1.68 1.916a.205.205 0 00.02.294.212.212 0 00.297-.02l1.677-1.913a.752.752 0 00.749-.047 7.506 7.506 0 011.96 4.15 1.008 1.008 0 00-.715.769l-.24.01a6.48 6.48 0 00-1.69-4.157.208.208 0 00-.307.28 6.07 6.07 0 011.569 3.63l-2.244-2.236a.208.208 0 00-.294.293l2.41 2.409L12 17.954l-5.938-5.938 2.389-2.389a.208.208 0 00-.294-.293L5.941 11.55a6.07 6.07 0 011.855-3.92l1.046 1.194c.04.048.098.071.159.071a.219.219 0 00.138-.05.208.208 0 00.02-.294L8.11 7.353a6.043 6.043 0 013.428-1.396L9.757 7.72a.208.208 0 00.148.354c.054 0 .105-.02.149-.06l1.956-1.937 1.9 1.9a.208.208 0 00.293-.294l-1.727-1.727a6.03 6.03 0 012.976 1.049.21.21 0 00.29-.054.21.21 0 00-.054-.29 6.435 6.435 0 00-3.468-1.134V5.38c.39-.095.705-.429.765-.84zm-7.75.17l1.013 1.156a.76.76 0 00-.058.73 7.912 7.912 0 00-2.058 4.399c-.3.047-.698.175-.998.367.118-1.78.715-3.323 1.822-4.693l.016-.023c.351-.58.439-1.242.264-1.937zm13.435.003c-.182.695-.094 1.353.257 1.936l.088.118c.765 1.023 1.663 2.605 1.835 4.575a2.526 2.526 0 00-.989-.354 7.916 7.916 0 00-2.098-4.44.748.748 0 00-.05-.742zm-1.622 1.167h.043c.156.01.287.121.321.27.003.02.007.037.007.057-.004.004 0 .01 0 .017a.353.353 0 01-.24.33.38.38 0 01-.108.018h-.033a.344.344 0 01-.314-.345.348.348 0 01.324-.348zm-10.186.057h.023c.159 0 .294.108.334.257.007.03.014.06.014.09a.345.345 0 01-.32.344h-.028a.347.347 0 01-.344-.344c0-.016 0-.03.004-.046 0-.01.003-.017.003-.027a.345.345 0 01.314-.274zm-4.045.938a.621.621 0 100 1.243.621.621 0 000-1.243zm18.296 0a.621.621 0 10.001 1.243.621.621 0 000-1.243zM6.46 6.918a.78.78 0 00.756.054l.3.344a6.486 6.486 0 00-2.01 4.477l-.17-.01a1.008 1.008 0 00-.782-.786A7.49 7.49 0 016.46 6.918zm.223.368a.199.199 0 00-.145.064c-.054.054-1.296 1.343-1.508 3.165a.21.21 0 00.185.23h.024a.205.205 0 00.206-.186c.192-1.677 1.38-2.909 1.39-2.919a.208.208 0 00-.004-.293.207.207 0 00-.148-.06zm10.65.002a.208.208 0 00-.15.353c.013.013 1.2 1.244 1.393 2.921a.208.208 0 00.206.186h.023a.209.209 0 00.183-.233c-.21-1.822-1.455-3.111-1.509-3.165a.212.212 0 00-.146-.062zm-14.516.005c.11 0 .202.09.202.202a.203.203 0 01-.202.203.203.203 0 01-.203-.203c0-.111.091-.202.203-.202zm18.296 0c.112 0 .203.09.203.202a.203.203 0 01-.203.203.199.199 0 01-.202-.203c0-.111.09-.202.202-.202zM1.741 9.026a.206.206 0 00-.22.207v3.802a.202.202 0 00.206.206.21.21 0 00.209-.21V9.628c.337.156.668.145.688.145a.205.205 0 00.2-.215.205.205 0 00-.217-.2c-.003 0-.455.01-.728-.27a.21.21 0 00-.138-.061zm20.5 0a.213.213 0 00-.14.062c-.273.28-.721.27-.728.27h-.007a.21.21 0 00-.209.199.208.208 0 00.2.215c.02 0 .35.01.687-.145v3.405c0 .114.095.209.21.209a.21.21 0 00.209-.21V9.234a.214.214 0 00-.132-.193.216.216 0 00-.09-.014zm-10.234.824c-.49 0-.884.162-1.184.483-.284.3-.432.695-.449 1.18l-.003.102.003.948h-.003c0 .536.152.965.452 1.285.3.32.695.483 1.184.483.412 0 .752-.098 1.026-.297.25-.182.398-.422.448-.719l.01-1.06c.308-.074.726-.242.989-.64a.173.173 0 00-.044-.257.185.185 0 00-.256.05c-.334.504-1.043.53-1.08.53h-.017c-.874 0-1.208.746-1.221.777a.186.186 0 00.169.26c.07 0 .138-.041.168-.112.004-.007.233-.52.824-.553v.954a.668.668 0 01-.294.49c-.179.125-.418.189-.712.189-.35 0-.638-.122-.85-.361-.216-.24-.324-.58-.324-1.02l.003-1.052c.017-.388.122-.695.32-.914.217-.24.5-.361.851-.361.294 0 .533.064.712.189.179.125.28.297.297.52v.023a.233.233 0 00.466 0v-.024a1.076 1.076 0 00-.46-.796c-.273-.2-.613-.297-1.025-.297zm7.706 1.542c.06 0 .125.007.189.017.455.074.968.381.978.567v.01c-.006.189-.523.496-.978.57-.064.01-.128.017-.189.017a.592.592 0 01-.59-.59.592.592 0 01.59-.591zm-15.361.003a.59.59 0 01.59.59.591.591 0 01-.59.591c-.078 0-.166-.01-.257-.03-.428-.091-.971-.361-.978-.557v-.01c.007-.196.55-.466.978-.553.095-.02.182-.03.257-.03zm.981.807l.173.01a6.49 6.49 0 002.405 4.852 7.728 7.728 0 00-1.613-.193 7.5 7.5 0 01-1.744-3.903c.388-.081.695-.382.78-.766zm13.402 0c.08.36.354.65.711.749a7.492 7.492 0 01-1.747 3.92c-.462 0-.999.054-1.606.186a6.486 6.486 0 002.399-4.845zm-12.798.276l5.598 5.598a6.089 6.089 0 01-5.598-5.598zm12.123 0a6.085 6.085 0 01-3.533 5.065c-.135.054-.23.097-.276.118-.56.222-1.16.367-1.788.415zM3.137 12.6c.3.196.702.324.999.371a7.892 7.892 0 001.643 3.92 4.867 4.867 0 00-1.006.196A8.538 8.538 0 013.137 12.6zm17.723.023a8.481 8.481 0 01-.948 3.354c-.202.388-.435.76-.692 1.117a4.765 4.765 0 00-1.002-.2 7.944 7.944 0 001.643-3.913c.29-.034.692-.158 1-.358zm1.407.878a.21.21 0 00-.21.209.21.21 0 00.21.21.21.21 0 00.21-.21.21.21 0 00-.21-.21zm-20.55.01a.21.21 0 00-.206.209.21.21 0 00.209.21.21.21 0 00.21-.21.21.21 0 00-.21-.21.21.21 0 00-.004 0zm20.236.61a.21.21 0 00-.209.21c0 .114.095.209.21.209h.333a.21.21 0 00.21-.21.21.21 0 00-.21-.208zM1.7 14.129a.21.21 0 00-.21.21c0 .114.095.209.21.209h.334a.21.21 0 00.209-.21.21.21 0 00-.21-.209zm20.074.59a.21.21 0 00-.209.21c0 .115.095.209.21.209h.512a.21.21 0 00.21-.21.21.21 0 00-.21-.208zM1.7 14.723a.21.21 0 00-.21.21c0 .117.095.208.21.208h.513a.21.21 0 00.209-.209.21.21 0 00-.21-.209zm19.835.59a.21.21 0 00-.21.21c0 .114.095.209.21.209h.752a.21.21 0 00.21-.21.21.21 0 00-.21-.209zM1.7 15.32a.21.21 0 00-.21.21c0 .114.095.209.21.209h.752a.21.21 0 00.21-.21.21.21 0 00-.21-.209zm19.538.59a.21.21 0 00-.21.21c0 .114.095.209.21.209h1.05a.21.21 0 00.209-.21.21.21 0 00-.21-.208zM1.7 15.917a.21.21 0 00-.21.21c0 .114.095.209.21.209h1.05a.21.21 0 00.208-.21.21.21 0 00-.209-.209zm19.238.587a.21.21 0 00-.21.21c0 .114.095.209.21.209h1.35c.114 0 .209-.091.209-.21a.21.21 0 00-.21-.209zM1.7 16.51a.21.21 0 00-.21.21c0 .117.095.208.21.208h1.35a.21.21 0 00.209-.209.21.21 0 00-.21-.209zm18.877.584a.21.21 0 00-.21.209c0 .115.095.21.21.21h.52a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm-17.686.01a.21.21 0 00-.21.21c0 .114.095.208.21.208h.52a.21.21 0 00.209-.209.21.21 0 00-.21-.209zm14.891.177c.386.005.78.05 1.162.157a8.757 8.757 0 01-.554.62c-.283-.077-1.005-.225-1.98-.12-1.06.114-2.618.566-4.21 2.037v-.368a.21.21 0 00-.21-.209.21.21 0 00-.209.21v.347c-1.582-1.454-3.134-1.903-4.187-2.018-.999-.108-1.73.054-1.997.128a9.934 9.934 0 01-.523-.587c-.01-.013-.02-.023-.03-.037 1.015-.28 2.125-.131 2.904.054.942.226 1.63.554 1.637.557l.003-.007a6.5 6.5 0 004.808.004l.02-.01c.088-.038.179-.075.263-.115.287-.118.77-.294 1.35-.432a7.204 7.204 0 011.753-.211zm2.322.407a.21.21 0 00-.209.209c0 .115.095.209.21.209h1.288c.115 0 .21-.091.21-.21a.21.21 0 00-.21-.208zm-17.51.01a.21.21 0 00-.21.209c0 .115.095.21.21.21h1.289a.21.21 0 00.209-.21.208.208 0 00-.21-.21zm16.974.587a.21.21 0 00-.21.209c0 .115.095.21.21.21h1.009a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm1.855 0a.21.21 0 00-.205.209.21.21 0 00.209.21.21.21 0 00.21-.21.21.21 0 00-.21-.21.21.21 0 00-.004 0zm-18.86.007a.21.21 0 00-.209.209.21.21 0 00.21.209.21.21 0 00.209-.21.21.21 0 00-.21-.208zm.847 0a.21.21 0 00-.209.209c0 .114.095.209.21.209h1.008a.21.21 0 00.21-.21.21.21 0 00-.21-.208zm3.547.033c.192.001.401.012.623.037 1.873.21 3.31 1.28 4.211 2.177v.61a.983.983 0 00-.101.064 6.845 6.845 0 00-.867-.924c-.85-.753-2.281-1.603-4.258-1.367v.004a8.758 8.758 0 01-.604-.51c.232-.046.574-.092.996-.09zm10.096.002c.416-.002.755.042.987.086a7.807 7.807 0 01-.601.506c-1.97-.23-3.394.618-4.244 1.367a6.788 6.788 0 00-.878.94c-.04-.026-.077-.053-.11-.07v-.594c1.595-1.602 3.18-2.081 4.233-2.2.219-.024.424-.034.613-.035zm1.86.555a.21.21 0 00-.209.21c0 .114.095.208.21.208h.573a.21.21 0 00.21-.209.21.21 0 00-.21-.209zm1.171 0a.21.21 0 00-.209.21.21.21 0 00.21.208.21.21 0 00.208-.209.21.21 0 00-.209-.209zm-16.181.007a.21.21 0 00-.206.209.21.21 0 00.21.21.21.21 0 00.208-.21.21.21 0 00-.209-.21.21.21 0 00-.003 0zm.597 0a.21.21 0 00-.21.209c0 .115.095.21.21.21h.574a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm2.71.41c1.225-.008 2.339.424 3.326 1.29.35.307.628.624.837.898-.064.07-.122.148-.172.236a5.338 5.338 0 00-1.259-1.174l.004-.01a.098.098 0 00-.03-.007 5.006 5.006 0 00-2.022-.76 8.77 8.77 0 01-.803-.472l.12-.002zm9.581 0l.118.001a8.91 8.91 0 01-.81.476c-1.443.22-2.432.968-3.066 1.69a4.511 4.511 0 00-.23.28 1.594 1.594 0 00-.168-.24c.209-.272.492-.6.85-.913.98-.863 2.09-1.296 3.306-1.294zm-11.727 1.77a.347.347 0 110 .693.347.347 0 010-.694zm13.856 0a.347.347 0 11.001.693.347.347 0 010-.694zm-6.93.445h.004c.023.013.047.03.077.05a1.16 1.16 0 01.307.294.763.763 0 01.139.32c.037.247-.068.517-.307.81a2.7 2.7 0 01-.213.226l-.003.003-.004.003v-.007c-.007-.007-.017-.013-.024-.023a2.324 2.324 0 01-.178-.193c-.247-.293-.355-.567-.317-.816.003-.02.006-.04.013-.061a.794.794 0 01.138-.283c.051-.068.108-.125.166-.176.05-.044.1-.08.145-.111.02-.014.037-.024.054-.034 0 0 .003 0 .003-.003zm.004 1.703c.003-.003 0-.003 0-.007zm0-1.116h.003zm7.625 0c.117 0 .237.016.354.05.459.135.783.638.87.79.108.189.253.438.466.634h-2.331a3.873 3.873 0 00-.372-.894c.2-.358.595-.577 1.013-.58zm-15.125.038c.381.005.713.19.9.512a3.999 3.999 0 00-.388.924H2.81a2.86 2.86 0 00.418-.59c.088-.152.412-.658.87-.79.136-.04.268-.058.396-.056z" }) + ] + } + ); +}); + +exports.default = SiGutenberg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.d.ts new file mode 100644 index 000000000..67f87c5b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiGutenberg: IconType; +export { SiGutenberg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.mjs new file mode 100644 index 000000000..aff127c9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiGutenberg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiGutenberg = React.forwardRef(function SiGutenberg2({ title = "Gutenberg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.34 0a.205.205 0 00-.18.116c-.05.105-.01.23.095.28.503.25.459.692.418.87-.08.352-.391.723-.8.723-.522 0-.772-.263-1.052-.746-.138-.236-.523-.81-1.113-.982a1.615 1.615 0 00-1.718.533 1.615 1.615 0 00-1.717-.533c-.59.172-.975.746-1.114.982-.28.483-.53.746-1.042.746H8.11a.833.833 0 01-.81-.62c-.04-.146-.124-.642.442-.98a.208.208 0 00.071-.286.208.208 0 00-.286-.071c-.652.388-.753 1.002-.631 1.447.148.55.637.921 1.21.925h.01c.787 0 1.138-.493 1.404-.952.088-.151.412-.658.871-.79.567-.164 1.17.099 1.407.615a.212.212 0 00.182.121h.024a.211.211 0 00.182-.121c.236-.516.84-.78 1.407-.614.459.135.783.638.87.79.267.462.618.95 1.414.95.479 0 1.046-.357 1.204-1.042.132-.566-.11-1.08-.64-1.34a.215.215 0 00-.102-.02zM3.821.093a.21.21 0 00-.21.209c0 .115.092.21.21.21H6.41a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm13.863 0a.21.21 0 00-.209.209c0 .115.095.21.21.21h2.587a.21.21 0 00.21-.21.21.21 0 00-.21-.21zM2.904.096a.21.21 0 00-.206.21.21.21 0 00.21.208.21.21 0 00.209-.209.21.21 0 00-.21-.209.21.21 0 00-.003 0zm18.24 0a.21.21 0 00-.206.21.21.21 0 00.209.208.21.21 0 00.21-.209.21.21 0 00-.21-.209.21.21 0 00-.004 0zm-19.39 0a.209.209 0 00-.196.21v2.216c0 .115.091.21.206.21a.21.21 0 00.21-.21V.859l1.015 1.153a.209.209 0 00.313-.273L1.922.167a.211.211 0 00-.167-.07zm20.512 0a.21.21 0 00-.168.07l-1.38 1.57a.205.205 0 00.02.293c.082.078.213.068.29-.02L22.045.855V2.52c0 .114.095.209.21.209a.21.21 0 00.209-.21V.306a.208.208 0 00-.197-.208zM8.235.526a.564.564 0 10.563.563.564.564 0 00-.563-.563zm7.591 0a.564.564 0 000 1.126.565.565 0 000-1.126zm3.59.224a.208.208 0 00-.212.164c-.078.354-.034.637.134.846.243.304.635.314.679.314a.209.209 0 00.202-.158c.078-.29.047-.547-.094-.756-.226-.338-.641-.402-.689-.408a.214.214 0 00-.02-.002zm-14.835 0c-.007 0-.013 0-.02.002-.047.006-.459.07-.688.408-.139.209-.172.462-.098.759a.213.213 0 00.202.159c.044 0 .435-.01.678-.314.169-.21.213-.496.135-.847a.208.208 0 00-.209-.167zm3.654.19a.15.15 0 01.148.149.15.15 0 01-.148.148.15.15 0 01-.148-.148.15.15 0 01.148-.148zm7.591 0a.15.15 0 01.149.149.15.15 0 01-.149.148.15.15 0 01-.148-.148.15.15 0 01.148-.148zM4.41 1.234a.41.41 0 01-.078.267.395.395 0 01-.178.121c0-.088.023-.165.064-.226a.51.51 0 01.192-.162zm15.18 0c.07.034.144.088.192.162.04.064.064.138.064.226a.404.404 0 01-.176-.121.412.412 0 01-.08-.267zm-6.593.135a1.3 1.3 0 00-.439.07.206.206 0 00-.121.267.21.21 0 00.266.125c.034-.013.844-.283 1.464.682.04.06.108.094.176.094.037 0 .077-.01.111-.034a.208.208 0 00.064-.286c-.465-.72-1.07-.918-1.52-.918zm-1.989.003a1.577 1.577 0 00-.262.017c-.35.05-.853.25-1.272.901a.207.207 0 00.064.287.196.196 0 00.112.034.212.212 0 00.175-.095c.618-.965 1.427-.695 1.464-.681a.208.208 0 00.267-.125.211.211 0 00-.125-.27c-.023-.008-.184-.065-.423-.068zm.976.162a.21.21 0 00-.205.21.21.21 0 00.209.209.21.21 0 00.209-.21.21.21 0 00-.21-.209.21.21 0 00-.003 0zm6.779.303c-.2-.007-.455.052-.77.244a3.24 3.24 0 00-.533.415c-.513.452-.941.442-.965.442a.208.208 0 00-.1.395c.33.155.63.216.9.216.516 0 .928-.226 1.215-.463.458-.378.695-.853.705-.873a.206.206 0 00-.081-.27.777.777 0 00-.372-.106zm-13.434.002a.796.796 0 00-.372.104.206.206 0 00-.081.27c.01.02.246.495.705.873.287.237.695.463 1.214.463.274 0 .574-.061.901-.216a.207.207 0 00.112-.24.208.208 0 00-.213-.158c-.017 0-.449.013-.962-.44A3.237 3.237 0 006.1 2.08c-.315-.19-.57-.248-.77-.242zM12 2.114c-.263 0-.469.273-.627.634-1.677.074-3.762 1.157-3.85 1.201-1.427.719-2.898-.638-3.273-1.019-.057-.064-.097-.101-.1-.108a.208.208 0 00-.304.283l.26.294c.151.189.343.462.505.79.405.82.412 1.565.024 2.22a8.822 8.822 0 00-1.174 1.896c-1.13.368-1.535-.32-1.552-.351 0-.004-.003-.003-.003-.007-.213-.357-.129-.84.195-1.147.25-.236.685-.256.82-.256h.003c.453 0 .918-.071 1.219-.59.229-.399.168-.892-.156-1.219-.327-.334-.82-.391-1.258-.148a.206.206 0 00-.081.283.206.206 0 00.283.081c.28-.152.564-.125.76.078a.596.596 0 01.09.718c-.185.32-.438.385-.843.385h-.014c-.185 0-.617.027-.961.25V3.335a.21.21 0 00-.21-.21.21.21 0 00-.208.21v3.509c-.23.412-.243.914-.007 1.32.023.043.168.286.492.468.186.105.453.203.807.203.128 0 .27-.014.421-.044-.364.978-.546 2.03-.553 3.178v.037a9.1 9.1 0 002.052 5.729 9.45 9.45 0 004.527 3.047 3.84 3.84 0 00-3.634 1.491 1.391 1.391 0 00-.192-.206.77.77 0 00.375-.658.767.767 0 00-.989-.732 1.175 1.175 0 00-.087-.368c-.324-.725-.915-.847-1.445-.904-.175-.02-.765-.108-1.076-.472-.391-.442-.398-1.1-.023-1.525a.208.208 0 10-.31-.277c-.51.58-.507 1.474.006 2.082.067.08.145.148.226.209a1.738 1.738 0 00-.651.334c-.496.408-.75 1.09-.756 2.017a.212.212 0 00.095.22c.033.02.07.03.107.03.014 0 .03-.003.044-.007h.004c.006 0 .01-.003.017-.007.01-.003.023-.007.033-.013.004 0 .004-.003.007-.003a.242.242 0 00.084-.081c.081-.105.415-.237.692-.294 1.083-.236 1.31-.968 1.275-1.32a.208.208 0 10-.415.038c0 .003.004.064-.016.155-.051.21-.237.57-.932.722h-.006a2.772 2.772 0 00-.55.179c.06-.6.253-1.04.58-1.312.503-.419 1.167-.3 1.174-.297a.203.203 0 00.064 0 2.5 2.5 0 00.277.043c.557.061.897.183 1.11.658.165.375-.047.807-.334 1.023-.145.111-.533.33-.968-.027a.209.209 0 00-.267.32c.196.162.415.257.641.284-.29.236-.486.533-.573.688-.284.49-.513.752-.895.756v-1.461a.21.21 0 00-.209-.21.21.21 0 00-.209.21v1.694c0 .084.05.155.122.189.037.027.08.047.128.047h4.858a.212.212 0 00.176-.095.22.22 0 00.06-.1 1.686 1.686 0 013.192-.223h-.445a1.204 1.204 0 00-1.117-.75c-.543 0-1.022.368-1.167.891a.21.21 0 00.145.257.21.21 0 00.256-.145.791.791 0 011.407-.253h-.121a.21.21 0 00-.21.209c0 .114.095.209.21.209h.421l.024.003c.01 0 .02 0 .027-.003h.837a.21.21 0 00.209-.21c0-.01 0-.02-.004-.03a.257.257 0 00-.003-.087 2.106 2.106 0 00-4.035-.092h-1.09c.088-.28.206-.54.354-.782.01-.014.017-.027.027-.04a3.434 3.434 0 014.862-.97c.017.011.034.021.05.025.088.104.176.215.26.33l.058.081c-.02.429.212.877.695 1.336.017.05.034.095.044.128v.044c0 .115.094.21.209.21a.203.203 0 00.199-.156c0-.003.03-.104.091-.273.435-.425.651-.84.648-1.242a6.449 6.449 0 01.381-.496 3.393 3.393 0 011.947-.607 3.42 3.42 0 013.273 2.413h-1.09a2.1 2.1 0 00-2.004-1.461c-.948 0-1.782.637-2.031 1.552a.173.173 0 000 .1v.018c0 .114.094.209.209.209h1.828a.21.21 0 00.21-.21.21.21 0 00-.21-.208h-.664a.791.791 0 011.41.263.206.206 0 00.253.148.21.21 0 00.152-.253 1.21 1.21 0 00-2.288-.159h-.421a1.687 1.687 0 013.191.223c.004.017.014.034.02.05a.208.208 0 00.2.146h4.95a.21.21 0 00.208-.21v-.067c.004-.02.004-.04.004-.06 0-.004 0-.008-.004-.011v-1.582a.21.21 0 00-.209-.21.21.21 0 00-.209.21v1.417c-.35-.027-.57-.287-.84-.752a2.65 2.65 0 00-.54-.658c.186-.04.364-.129.53-.267a.209.209 0 00-.267-.32c-.432.357-.82.138-.968.027-.287-.216-.5-.652-.334-1.023.212-.475.553-.6 1.11-.658.07-.006.165-.02.277-.043.02.003.043.003.067 0 .007 0 .665-.122 1.17.296.331.274.527.712.584 1.316a2.762 2.762 0 00-.553-.182h-.007c-.691-.152-.88-.51-.93-.719a.468.468 0 01-.018-.155.208.208 0 10-.415-.037c-.033.354.193 1.083 1.28 1.32.28.06.633.198.698.303a.356.356 0 00.034.04l.01.007c.01.007.02.017.03.02.003.003.01.007.013.007.01.007.02.01.03.014l.014.003c.014.003.03.007.047.007.014 0 .024 0 .037-.003.004 0 .007 0 .01-.003.01-.003.02-.007.034-.01h.004c.01-.003.017-.01.027-.014l.003-.003c.007-.003.014-.01.017-.013.003-.003.01-.007.014-.014l.013-.013c.003-.007.01-.01.013-.017l.01-.017.01-.017c.004-.007.004-.014.007-.02.004-.007.004-.014.007-.02 0-.007.004-.014.004-.017 0-.007.003-.014.003-.024v-.003c-.003-.955-.26-1.646-.763-2.061a1.69 1.69 0 00-.65-.334c.08-.061.158-.132.225-.21.517-.607.52-1.5.007-2.081a.205.205 0 00-.293-.017.205.205 0 00-.017.293c.374.426.367 1.083-.014 1.536-.31.364-.9.452-1.076.472-.53.057-1.124.179-1.444.904-.05.111-.081.236-.088.371a.767.767 0 00-1.002.729c0 .29.162.543.402.671-.071.065-.139.135-.2.216a3.847 3.847 0 00-3.62-1.518 9.413 9.413 0 005.55-4.619 8.912 8.912 0 001.016-4.153V11.977a8.487 8.487 0 00-.644-3.168c.138.027.27.037.388.037.873 0 1.258-.6 1.299-.671a1.3 1.3 0 00.11-1.05c.004-.01.004-.023.004-.037V3.286a.21.21 0 00-.209-.21.21.21 0 00-.21.21V6.48c-.353-.307-.866-.34-1.079-.34-.411.003-.668-.062-.857-.385a.592.592 0 01.091-.72c.2-.202.483-.228.76-.077a.209.209 0 00.202-.364c-.439-.243-.931-.182-1.259.148-.323.331-.384.82-.155 1.218.3.517.756.59 1.205.59h.017c.135 0 .57.021.82.257.323.307.408.79.195 1.147 0 0-.003.004-.003.007-.017.03-.419.712-1.539.354a10.48 10.48 0 00-1.093-1.808l-.165.125.165-.128-.067-.088c-.719-1.205.111-2.487.543-3.03l.243-.277a.208.208 0 00-.304-.283 2.71 2.71 0 00-.101.108c-.375.381-1.839 1.73-3.26 1.026l-.04-.027-.02-.014c-1.272-.685-2.527-1.08-3.725-1.18-.155-.355-.36-.625-.62-.625zm-8.509.077a.21.21 0 00-.205.21.21.21 0 00.209.209.21.21 0 00.209-.21.21.21 0 00-.21-.209.21.21 0 00-.003 0zm16.91 0a.21.21 0 00-.206.21.21.21 0 00.21.209.21.21 0 00.209-.21.21.21 0 00-.21-.209.21.21 0 00-.003 0zm-15.017.061c.35.017.8.385.958.543l.01.01c.159.142.318.247.463.324-.73.007-1.212-.55-1.43-.877zm13.324 0a2.62 2.62 0 01-.46.513c-.303.25-.627.37-.97.364.14-.074.3-.182.461-.324l.01-.01c.159-.158.608-.526.959-.543zm-6.718.283c.186.071.473.945.56 1.539.017.118.027.226.027.314a.59.59 0 01-1.18 0 2.91 2.91 0 01.03-.31c.09-.632.401-1.475.563-1.543zm-8.84.313l-.02.001c-.047.007-.459.071-.688.408-.138.21-.172.463-.098.76a.213.213 0 00.203.158c.043 0 .435-.01.678-.314.168-.209.212-.496.135-.846a.206.206 0 00-.21-.167zm17.727 0a.208.208 0 00-.213.163c-.077.354-.033.638.135.847.25.304.641.314.682.317a.209.209 0 00.202-.158c.075-.297.044-.55-.097-.76-.226-.337-.641-.401-.689-.408a.213.213 0 00-.02-.001zm-8.11.325c1.082.122 2.212.493 3.363 1.11l.044.03.023.014c.334.169.692.253 1.063.253.392 0 .8-.094 1.211-.283l-1.08 1.231a.761.761 0 00-.732.047 7.877 7.877 0 00-3.69-1.46 6.766 6.766 0 00-.203-.942zm-1.556.007c-.101.34-.169.695-.203.938a7.879 7.879 0 00-3.735 1.504.752.752 0 00-.712-.03L5.429 4.3c.415.186.82.28 1.211.28a2.36 2.36 0 001.066-.253c.02-.01 1.947-1.012 3.506-1.147zm-8.23.152c0 .11-.026.199-.077.266a.395.395 0 01-.179.122c0-.088.024-.166.065-.226a.51.51 0 01.192-.162zm18.071 0a.51.51 0 01.193.162c.04.064.064.138.064.226a.404.404 0 01-.176-.122.412.412 0 01-.08-.266zm-10.05 1.207a.994.994 0 00.79.837v.145A6.472 6.472 0 007.83 7.036l-.297-.34a.76.76 0 00.037-.77 7.488 7.488 0 013.432-1.387zm1.983 0a7.472 7.472 0 013.398 1.353.755.755 0 00.044.746l-1.68 1.916a.205.205 0 00.02.294.212.212 0 00.297-.02l1.677-1.913a.752.752 0 00.749-.047 7.506 7.506 0 011.96 4.15 1.008 1.008 0 00-.715.769l-.24.01a6.48 6.48 0 00-1.69-4.157.208.208 0 00-.307.28 6.07 6.07 0 011.569 3.63l-2.244-2.236a.208.208 0 00-.294.293l2.41 2.409L12 17.954l-5.938-5.938 2.389-2.389a.208.208 0 00-.294-.293L5.941 11.55a6.07 6.07 0 011.855-3.92l1.046 1.194c.04.048.098.071.159.071a.219.219 0 00.138-.05.208.208 0 00.02-.294L8.11 7.353a6.043 6.043 0 013.428-1.396L9.757 7.72a.208.208 0 00.148.354c.054 0 .105-.02.149-.06l1.956-1.937 1.9 1.9a.208.208 0 00.293-.294l-1.727-1.727a6.03 6.03 0 012.976 1.049.21.21 0 00.29-.054.21.21 0 00-.054-.29 6.435 6.435 0 00-3.468-1.134V5.38c.39-.095.705-.429.765-.84zm-7.75.17l1.013 1.156a.76.76 0 00-.058.73 7.912 7.912 0 00-2.058 4.399c-.3.047-.698.175-.998.367.118-1.78.715-3.323 1.822-4.693l.016-.023c.351-.58.439-1.242.264-1.937zm13.435.003c-.182.695-.094 1.353.257 1.936l.088.118c.765 1.023 1.663 2.605 1.835 4.575a2.526 2.526 0 00-.989-.354 7.916 7.916 0 00-2.098-4.44.748.748 0 00-.05-.742zm-1.622 1.167h.043c.156.01.287.121.321.27.003.02.007.037.007.057-.004.004 0 .01 0 .017a.353.353 0 01-.24.33.38.38 0 01-.108.018h-.033a.344.344 0 01-.314-.345.348.348 0 01.324-.348zm-10.186.057h.023c.159 0 .294.108.334.257.007.03.014.06.014.09a.345.345 0 01-.32.344h-.028a.347.347 0 01-.344-.344c0-.016 0-.03.004-.046 0-.01.003-.017.003-.027a.345.345 0 01.314-.274zm-4.045.938a.621.621 0 100 1.243.621.621 0 000-1.243zm18.296 0a.621.621 0 10.001 1.243.621.621 0 000-1.243zM6.46 6.918a.78.78 0 00.756.054l.3.344a6.486 6.486 0 00-2.01 4.477l-.17-.01a1.008 1.008 0 00-.782-.786A7.49 7.49 0 016.46 6.918zm.223.368a.199.199 0 00-.145.064c-.054.054-1.296 1.343-1.508 3.165a.21.21 0 00.185.23h.024a.205.205 0 00.206-.186c.192-1.677 1.38-2.909 1.39-2.919a.208.208 0 00-.004-.293.207.207 0 00-.148-.06zm10.65.002a.208.208 0 00-.15.353c.013.013 1.2 1.244 1.393 2.921a.208.208 0 00.206.186h.023a.209.209 0 00.183-.233c-.21-1.822-1.455-3.111-1.509-3.165a.212.212 0 00-.146-.062zm-14.516.005c.11 0 .202.09.202.202a.203.203 0 01-.202.203.203.203 0 01-.203-.203c0-.111.091-.202.203-.202zm18.296 0c.112 0 .203.09.203.202a.203.203 0 01-.203.203.199.199 0 01-.202-.203c0-.111.09-.202.202-.202zM1.741 9.026a.206.206 0 00-.22.207v3.802a.202.202 0 00.206.206.21.21 0 00.209-.21V9.628c.337.156.668.145.688.145a.205.205 0 00.2-.215.205.205 0 00-.217-.2c-.003 0-.455.01-.728-.27a.21.21 0 00-.138-.061zm20.5 0a.213.213 0 00-.14.062c-.273.28-.721.27-.728.27h-.007a.21.21 0 00-.209.199.208.208 0 00.2.215c.02 0 .35.01.687-.145v3.405c0 .114.095.209.21.209a.21.21 0 00.209-.21V9.234a.214.214 0 00-.132-.193.216.216 0 00-.09-.014zm-10.234.824c-.49 0-.884.162-1.184.483-.284.3-.432.695-.449 1.18l-.003.102.003.948h-.003c0 .536.152.965.452 1.285.3.32.695.483 1.184.483.412 0 .752-.098 1.026-.297.25-.182.398-.422.448-.719l.01-1.06c.308-.074.726-.242.989-.64a.173.173 0 00-.044-.257.185.185 0 00-.256.05c-.334.504-1.043.53-1.08.53h-.017c-.874 0-1.208.746-1.221.777a.186.186 0 00.169.26c.07 0 .138-.041.168-.112.004-.007.233-.52.824-.553v.954a.668.668 0 01-.294.49c-.179.125-.418.189-.712.189-.35 0-.638-.122-.85-.361-.216-.24-.324-.58-.324-1.02l.003-1.052c.017-.388.122-.695.32-.914.217-.24.5-.361.851-.361.294 0 .533.064.712.189.179.125.28.297.297.52v.023a.233.233 0 00.466 0v-.024a1.076 1.076 0 00-.46-.796c-.273-.2-.613-.297-1.025-.297zm7.706 1.542c.06 0 .125.007.189.017.455.074.968.381.978.567v.01c-.006.189-.523.496-.978.57-.064.01-.128.017-.189.017a.592.592 0 01-.59-.59.592.592 0 01.59-.591zm-15.361.003a.59.59 0 01.59.59.591.591 0 01-.59.591c-.078 0-.166-.01-.257-.03-.428-.091-.971-.361-.978-.557v-.01c.007-.196.55-.466.978-.553.095-.02.182-.03.257-.03zm.981.807l.173.01a6.49 6.49 0 002.405 4.852 7.728 7.728 0 00-1.613-.193 7.5 7.5 0 01-1.744-3.903c.388-.081.695-.382.78-.766zm13.402 0c.08.36.354.65.711.749a7.492 7.492 0 01-1.747 3.92c-.462 0-.999.054-1.606.186a6.486 6.486 0 002.399-4.845zm-12.798.276l5.598 5.598a6.089 6.089 0 01-5.598-5.598zm12.123 0a6.085 6.085 0 01-3.533 5.065c-.135.054-.23.097-.276.118-.56.222-1.16.367-1.788.415zM3.137 12.6c.3.196.702.324.999.371a7.892 7.892 0 001.643 3.92 4.867 4.867 0 00-1.006.196A8.538 8.538 0 013.137 12.6zm17.723.023a8.481 8.481 0 01-.948 3.354c-.202.388-.435.76-.692 1.117a4.765 4.765 0 00-1.002-.2 7.944 7.944 0 001.643-3.913c.29-.034.692-.158 1-.358zm1.407.878a.21.21 0 00-.21.209.21.21 0 00.21.21.21.21 0 00.21-.21.21.21 0 00-.21-.21zm-20.55.01a.21.21 0 00-.206.209.21.21 0 00.209.21.21.21 0 00.21-.21.21.21 0 00-.21-.21.21.21 0 00-.004 0zm20.236.61a.21.21 0 00-.209.21c0 .114.095.209.21.209h.333a.21.21 0 00.21-.21.21.21 0 00-.21-.208zM1.7 14.129a.21.21 0 00-.21.21c0 .114.095.209.21.209h.334a.21.21 0 00.209-.21.21.21 0 00-.21-.209zm20.074.59a.21.21 0 00-.209.21c0 .115.095.209.21.209h.512a.21.21 0 00.21-.21.21.21 0 00-.21-.208zM1.7 14.723a.21.21 0 00-.21.21c0 .117.095.208.21.208h.513a.21.21 0 00.209-.209.21.21 0 00-.21-.209zm19.835.59a.21.21 0 00-.21.21c0 .114.095.209.21.209h.752a.21.21 0 00.21-.21.21.21 0 00-.21-.209zM1.7 15.32a.21.21 0 00-.21.21c0 .114.095.209.21.209h.752a.21.21 0 00.21-.21.21.21 0 00-.21-.209zm19.538.59a.21.21 0 00-.21.21c0 .114.095.209.21.209h1.05a.21.21 0 00.209-.21.21.21 0 00-.21-.208zM1.7 15.917a.21.21 0 00-.21.21c0 .114.095.209.21.209h1.05a.21.21 0 00.208-.21.21.21 0 00-.209-.209zm19.238.587a.21.21 0 00-.21.21c0 .114.095.209.21.209h1.35c.114 0 .209-.091.209-.21a.21.21 0 00-.21-.209zM1.7 16.51a.21.21 0 00-.21.21c0 .117.095.208.21.208h1.35a.21.21 0 00.209-.209.21.21 0 00-.21-.209zm18.877.584a.21.21 0 00-.21.209c0 .115.095.21.21.21h.52a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm-17.686.01a.21.21 0 00-.21.21c0 .114.095.208.21.208h.52a.21.21 0 00.209-.209.21.21 0 00-.21-.209zm14.891.177c.386.005.78.05 1.162.157a8.757 8.757 0 01-.554.62c-.283-.077-1.005-.225-1.98-.12-1.06.114-2.618.566-4.21 2.037v-.368a.21.21 0 00-.21-.209.21.21 0 00-.209.21v.347c-1.582-1.454-3.134-1.903-4.187-2.018-.999-.108-1.73.054-1.997.128a9.934 9.934 0 01-.523-.587c-.01-.013-.02-.023-.03-.037 1.015-.28 2.125-.131 2.904.054.942.226 1.63.554 1.637.557l.003-.007a6.5 6.5 0 004.808.004l.02-.01c.088-.038.179-.075.263-.115.287-.118.77-.294 1.35-.432a7.204 7.204 0 011.753-.211zm2.322.407a.21.21 0 00-.209.209c0 .115.095.209.21.209h1.288c.115 0 .21-.091.21-.21a.21.21 0 00-.21-.208zm-17.51.01a.21.21 0 00-.21.209c0 .115.095.21.21.21h1.289a.21.21 0 00.209-.21.208.208 0 00-.21-.21zm16.974.587a.21.21 0 00-.21.209c0 .115.095.21.21.21h1.009a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm1.855 0a.21.21 0 00-.205.209.21.21 0 00.209.21.21.21 0 00.21-.21.21.21 0 00-.21-.21.21.21 0 00-.004 0zm-18.86.007a.21.21 0 00-.209.209.21.21 0 00.21.209.21.21 0 00.209-.21.21.21 0 00-.21-.208zm.847 0a.21.21 0 00-.209.209c0 .114.095.209.21.209h1.008a.21.21 0 00.21-.21.21.21 0 00-.21-.208zm3.547.033c.192.001.401.012.623.037 1.873.21 3.31 1.28 4.211 2.177v.61a.983.983 0 00-.101.064 6.845 6.845 0 00-.867-.924c-.85-.753-2.281-1.603-4.258-1.367v.004a8.758 8.758 0 01-.604-.51c.232-.046.574-.092.996-.09zm10.096.002c.416-.002.755.042.987.086a7.807 7.807 0 01-.601.506c-1.97-.23-3.394.618-4.244 1.367a6.788 6.788 0 00-.878.94c-.04-.026-.077-.053-.11-.07v-.594c1.595-1.602 3.18-2.081 4.233-2.2.219-.024.424-.034.613-.035zm1.86.555a.21.21 0 00-.209.21c0 .114.095.208.21.208h.573a.21.21 0 00.21-.209.21.21 0 00-.21-.209zm1.171 0a.21.21 0 00-.209.21.21.21 0 00.21.208.21.21 0 00.208-.209.21.21 0 00-.209-.209zm-16.181.007a.21.21 0 00-.206.209.21.21 0 00.21.21.21.21 0 00.208-.21.21.21 0 00-.209-.21.21.21 0 00-.003 0zm.597 0a.21.21 0 00-.21.209c0 .115.095.21.21.21h.574a.21.21 0 00.209-.21.21.21 0 00-.21-.21zm2.71.41c1.225-.008 2.339.424 3.326 1.29.35.307.628.624.837.898-.064.07-.122.148-.172.236a5.338 5.338 0 00-1.259-1.174l.004-.01a.098.098 0 00-.03-.007 5.006 5.006 0 00-2.022-.76 8.77 8.77 0 01-.803-.472l.12-.002zm9.581 0l.118.001a8.91 8.91 0 01-.81.476c-1.443.22-2.432.968-3.066 1.69a4.511 4.511 0 00-.23.28 1.594 1.594 0 00-.168-.24c.209-.272.492-.6.85-.913.98-.863 2.09-1.296 3.306-1.294zm-11.727 1.77a.347.347 0 110 .693.347.347 0 010-.694zm13.856 0a.347.347 0 11.001.693.347.347 0 010-.694zm-6.93.445h.004c.023.013.047.03.077.05a1.16 1.16 0 01.307.294.763.763 0 01.139.32c.037.247-.068.517-.307.81a2.7 2.7 0 01-.213.226l-.003.003-.004.003v-.007c-.007-.007-.017-.013-.024-.023a2.324 2.324 0 01-.178-.193c-.247-.293-.355-.567-.317-.816.003-.02.006-.04.013-.061a.794.794 0 01.138-.283c.051-.068.108-.125.166-.176.05-.044.1-.08.145-.111.02-.014.037-.024.054-.034 0 0 .003 0 .003-.003zm.004 1.703c.003-.003 0-.003 0-.007zm0-1.116h.003zm7.625 0c.117 0 .237.016.354.05.459.135.783.638.87.79.108.189.253.438.466.634h-2.331a3.873 3.873 0 00-.372-.894c.2-.358.595-.577 1.013-.58zm-15.125.038c.381.005.713.19.9.512a3.999 3.999 0 00-.388.924H2.81a2.86 2.86 0 00.418-.59c.088-.152.412-.658.87-.79.136-.04.268-.058.396-.056z" }) + ] + } + ); +}); + +export { SiGutenberg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.cjs new file mode 100644 index 000000000..31977f8c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09476B"; +const SiH2database = React__namespace.forwardRef(function SiH2database2({ title = "H2 Database", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.17 13.27c.14-.015.28-.023.416-.023.7 0 1.228.159 1.599.469.37.314.555.756.555 1.334a2.861 2.861 0 0 1-.43 1.455c-.291.492-.775 1.066-1.46 1.727-.453.446-1.061.976-1.821 1.592a48.02 48.02 0 0 1-2.275 1.742v2.083h9.895V21.24H17.99c.219-.159.59-.435 1.11-.832.519-.4 1.033-.835 1.55-1.311.817-.76 1.425-1.5 1.822-2.215a4.624 4.624 0 0 0 .597-2.268c0-1.213-.416-2.154-1.247-2.815-.828-.662-2.033-.994-3.613-.994-.344 0-.692.015-1.036.049V6.04H13.86v4.701H8.965V6.04H5.65v12.846h3.315v-5.661h4.89v5.661h.039c.31-.242.623-.487.933-.74a28.564 28.564 0 0 0 1.826-1.588 14.854 14.854 0 0 0 .517-.529zM12.011 23.3A11.327 11.327 0 0 1 .7 11.99 11.305 11.305 0 0 1 12.011.699a11.286 11.286 0 0 1 11.29 11.29v.351H24v-.351A11.985 11.985 0 0 0 12.011 0 12.008 12.008 0 0 0 0 11.989 12.026 12.026 0 0 0 12.011 24h.352v-.7z" }) + ] + } + ); +}); + +exports.default = SiH2database; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.d.ts new file mode 100644 index 000000000..c69476413 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09476B"; +declare const SiH2database: IconType; +export { SiH2database as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.mjs new file mode 100644 index 000000000..2c7e59bc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiH2database.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09476B"; +const SiH2database = React.forwardRef(function SiH2database2({ title = "H2 Database", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.17 13.27c.14-.015.28-.023.416-.023.7 0 1.228.159 1.599.469.37.314.555.756.555 1.334a2.861 2.861 0 0 1-.43 1.455c-.291.492-.775 1.066-1.46 1.727-.453.446-1.061.976-1.821 1.592a48.02 48.02 0 0 1-2.275 1.742v2.083h9.895V21.24H17.99c.219-.159.59-.435 1.11-.832.519-.4 1.033-.835 1.55-1.311.817-.76 1.425-1.5 1.822-2.215a4.624 4.624 0 0 0 .597-2.268c0-1.213-.416-2.154-1.247-2.815-.828-.662-2.033-.994-3.613-.994-.344 0-.692.015-1.036.049V6.04H13.86v4.701H8.965V6.04H5.65v12.846h3.315v-5.661h4.89v5.661h.039c.31-.242.623-.487.933-.74a28.564 28.564 0 0 0 1.826-1.588 14.854 14.854 0 0 0 .517-.529zM12.011 23.3A11.327 11.327 0 0 1 .7 11.99 11.305 11.305 0 0 1 12.011.699a11.286 11.286 0 0 1 11.29 11.29v.351H24v-.351A11.985 11.985 0 0 0 12.011 0 12.008 12.008 0 0 0 0 11.989 12.026 12.026 0 0 0 12.011 24h.352v-.7z" }) + ] + } + ); +}); + +export { SiH2database as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiH3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiH3.cjs new file mode 100644 index 000000000..fb72ee90e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiH3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E54B7"; +const SiH3 = React__namespace.forwardRef(function SiH32({ title = "H3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.2364 6.1048c-.0992-.0445-.2566-.0838-.3729-.1728-.4858-.3746-.9596-.768-1.442-1.1478-.1728-.135-.195-.2788-.089-.4687.3097-.5576.5936-1.1324.9238-1.6763.1043-.1728.3096-.3319.5029-.3952.792-.2617 1.5925-.5012 2.3999-.7116.1916-.0496.4499-.0086.6295.0839.5234.2685 1.0246.5816 1.5327.8826.2651.1574.2908.2327.1813.5217-.2155.5662-.4396 1.1273-.6466 1.697-.1095.2976-.3216.472-.609.5576-.8792.26-1.7602.5114-2.6411.7646-.101.0257-.207.036-.3695.065zm-6.1067 4.9299c-.1317-.0838-.2943-.1437-.3918-.2583C1.3137 10.2769.91 9.7586.4926 9.2523.3541 9.0846.3695 8.9119.467 8.751c.4636-.7544.922-1.5105 1.4146-2.246.113-.1677.337-.2977.5372-.3627.8176-.2634 1.6455-.4943 2.4717-.7355.2583-.0753.491-.048.7082.1437.4413.39.8946.7697 1.3514 1.1444.1915.1556.2275.3284.1265.5422-.3729.7834-.727 1.5772-1.1324 2.3435-.1111.2121-.349.426-.5747.4978-1.0127.325-2.0407.602-3.0636.8929-.0462.0137-.0975.012-.1454.0171-.012.0188-.0206.0325-.0308.0462zm14.9281-9.1875c.1626.0462.337.0718.4876.1437.7167.342 1.4266.6945 2.1365 1.0486.2685.1334.4105.2822.3301.6448-.1368.6141-.231 1.2385-.3284 1.8611-.048.3062-.2156.4961-.496.5782-1.052.308-2.1058.6073-3.1595.9015-.2823.0787-.5525.0086-.7954-.1522-.6877-.4585-1.3753-.9186-2.063-1.377-.1967-.1318-.2651-.296-.1796-.527.2275-.6226.4328-1.252.6808-1.8662.0633-.1556.231-.325.3866-.3746.9254-.2976 1.8628-.5645 2.7968-.8382.0616-.0188.13-.012.195-.017.0034-.0087.0068-.0172.0086-.0257zm-7.405 10.8023c-.2002-.1095-.4345-.1848-.5953-.337-.609-.573-1.1923-1.1752-1.7927-1.7568-.2172-.212-.2668-.4379-.1437-.7099.3592-.7903.6996-1.589 1.088-2.3657.0957-.1916.3181-.378.5234-.4447.9425-.3062 1.897-.573 2.8498-.8416.26-.0736.52-.0377.7527.1248.6637.4653 1.3308.9289 1.9945 1.3959.313.219.3712.3848.2668.7577-.2326.828-.472 1.6542-.6996 2.482-.0992.3593-.3318.5817-.6774.6809-1.0776.3113-2.157.614-3.2364.9151-.094.0257-.1933.0274-.2908.0411a.8758.8758 0 0 0-.0393.0582zM0 16.098c.0907-.2292.1522-.4499.2583-.6466.4892-.9169.9921-1.827 1.4882-2.7404.1847-.342.4584-.5696.833-.6756.946-.2686 1.8902-.5372 2.8362-.8074.3575-.1027.6432-.0274.9049.2583.544.5918 1.1084 1.1632 1.673 1.7345.2685.2703.3369.5679.2018.9186-.4294 1.1153-.8553 2.2306-1.2881 3.3424-.166.426-.4807.6877-.9237.8074-1.105.301-2.2084.609-3.3134.9135-.5371.1488-.756.0633-1.0503-.4037-.4618-.7339-.9288-1.4677-1.3856-2.205-.0906-.1505-.1505-.3181-.2343-.496Zm23.9857-6.1872c-.0565.9511-.106 1.8697-.166 2.7848-.0359.5337-.207.7356-.727.8793-1.1837.3284-2.369.6483-3.5528.9784-.4636.1283-.8741.0394-1.2436-.2583-.8946-.7184-1.7858-1.4403-2.6839-2.1553-.3301-.2634-.455-.5696-.337-.9921.2292-.8194.4362-1.6456.645-2.4718.0854-.337.2976-.5405.6191-.6346 1.0076-.2925 2.0168-.5782 3.0243-.8673.3661-.1043.715-.0633 1.0435.1283.9562.556 1.909 1.1153 2.8652 1.6712.3712.219.5867.5183.5132.9374zM8.1612 18.3251c.0923-.2976.1556-.5337.2377-.7646.3473-.9699.7133-1.9346 1.0486-2.9097.171-.496.4841-.7834.9904-.9185 1.0212-.2686 2.0339-.5645 3.05-.8536.4276-.1215.7971-.048 1.1426.248.8588.7356 1.726 1.4608 2.5967 2.1844.4003.3336.5696.727.4687 1.2556-.2446 1.2863-.4602 2.5795-.6928 3.8693-.089.4892-.3797.8074-.8621.9374-1.3428.361-2.6873.7236-4.0336 1.0742-.4875.1266-.8826-.0444-1.1956-.4327-.5714-.7082-1.1461-1.413-1.7209-2.1194-.2429-.2994-.5063-.585-.7218-.9015-.142-.2104-.2156-.4636-.308-.6689z" }) + ] + } + ); +}); + +exports.default = SiH3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiH3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiH3.d.ts new file mode 100644 index 000000000..d79357e34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiH3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E54B7"; +declare const SiH3: IconType; +export { SiH3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiH3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiH3.mjs new file mode 100644 index 000000000..a4079f470 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiH3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E54B7"; +const SiH3 = React.forwardRef(function SiH32({ title = "H3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.2364 6.1048c-.0992-.0445-.2566-.0838-.3729-.1728-.4858-.3746-.9596-.768-1.442-1.1478-.1728-.135-.195-.2788-.089-.4687.3097-.5576.5936-1.1324.9238-1.6763.1043-.1728.3096-.3319.5029-.3952.792-.2617 1.5925-.5012 2.3999-.7116.1916-.0496.4499-.0086.6295.0839.5234.2685 1.0246.5816 1.5327.8826.2651.1574.2908.2327.1813.5217-.2155.5662-.4396 1.1273-.6466 1.697-.1095.2976-.3216.472-.609.5576-.8792.26-1.7602.5114-2.6411.7646-.101.0257-.207.036-.3695.065zm-6.1067 4.9299c-.1317-.0838-.2943-.1437-.3918-.2583C1.3137 10.2769.91 9.7586.4926 9.2523.3541 9.0846.3695 8.9119.467 8.751c.4636-.7544.922-1.5105 1.4146-2.246.113-.1677.337-.2977.5372-.3627.8176-.2634 1.6455-.4943 2.4717-.7355.2583-.0753.491-.048.7082.1437.4413.39.8946.7697 1.3514 1.1444.1915.1556.2275.3284.1265.5422-.3729.7834-.727 1.5772-1.1324 2.3435-.1111.2121-.349.426-.5747.4978-1.0127.325-2.0407.602-3.0636.8929-.0462.0137-.0975.012-.1454.0171-.012.0188-.0206.0325-.0308.0462zm14.9281-9.1875c.1626.0462.337.0718.4876.1437.7167.342 1.4266.6945 2.1365 1.0486.2685.1334.4105.2822.3301.6448-.1368.6141-.231 1.2385-.3284 1.8611-.048.3062-.2156.4961-.496.5782-1.052.308-2.1058.6073-3.1595.9015-.2823.0787-.5525.0086-.7954-.1522-.6877-.4585-1.3753-.9186-2.063-1.377-.1967-.1318-.2651-.296-.1796-.527.2275-.6226.4328-1.252.6808-1.8662.0633-.1556.231-.325.3866-.3746.9254-.2976 1.8628-.5645 2.7968-.8382.0616-.0188.13-.012.195-.017.0034-.0087.0068-.0172.0086-.0257zm-7.405 10.8023c-.2002-.1095-.4345-.1848-.5953-.337-.609-.573-1.1923-1.1752-1.7927-1.7568-.2172-.212-.2668-.4379-.1437-.7099.3592-.7903.6996-1.589 1.088-2.3657.0957-.1916.3181-.378.5234-.4447.9425-.3062 1.897-.573 2.8498-.8416.26-.0736.52-.0377.7527.1248.6637.4653 1.3308.9289 1.9945 1.3959.313.219.3712.3848.2668.7577-.2326.828-.472 1.6542-.6996 2.482-.0992.3593-.3318.5817-.6774.6809-1.0776.3113-2.157.614-3.2364.9151-.094.0257-.1933.0274-.2908.0411a.8758.8758 0 0 0-.0393.0582zM0 16.098c.0907-.2292.1522-.4499.2583-.6466.4892-.9169.9921-1.827 1.4882-2.7404.1847-.342.4584-.5696.833-.6756.946-.2686 1.8902-.5372 2.8362-.8074.3575-.1027.6432-.0274.9049.2583.544.5918 1.1084 1.1632 1.673 1.7345.2685.2703.3369.5679.2018.9186-.4294 1.1153-.8553 2.2306-1.2881 3.3424-.166.426-.4807.6877-.9237.8074-1.105.301-2.2084.609-3.3134.9135-.5371.1488-.756.0633-1.0503-.4037-.4618-.7339-.9288-1.4677-1.3856-2.205-.0906-.1505-.1505-.3181-.2343-.496Zm23.9857-6.1872c-.0565.9511-.106 1.8697-.166 2.7848-.0359.5337-.207.7356-.727.8793-1.1837.3284-2.369.6483-3.5528.9784-.4636.1283-.8741.0394-1.2436-.2583-.8946-.7184-1.7858-1.4403-2.6839-2.1553-.3301-.2634-.455-.5696-.337-.9921.2292-.8194.4362-1.6456.645-2.4718.0854-.337.2976-.5405.6191-.6346 1.0076-.2925 2.0168-.5782 3.0243-.8673.3661-.1043.715-.0633 1.0435.1283.9562.556 1.909 1.1153 2.8652 1.6712.3712.219.5867.5183.5132.9374zM8.1612 18.3251c.0923-.2976.1556-.5337.2377-.7646.3473-.9699.7133-1.9346 1.0486-2.9097.171-.496.4841-.7834.9904-.9185 1.0212-.2686 2.0339-.5645 3.05-.8536.4276-.1215.7971-.048 1.1426.248.8588.7356 1.726 1.4608 2.5967 2.1844.4003.3336.5696.727.4687 1.2556-.2446 1.2863-.4602 2.5795-.6928 3.8693-.089.4892-.3797.8074-.8621.9374-1.3428.361-2.6873.7236-4.0336 1.0742-.4875.1266-.8826-.0444-1.1956-.4327-.5714-.7082-1.1461-1.413-1.7209-2.1194-.2429-.2994-.5063-.585-.7218-.9015-.142-.2104-.2156-.4636-.308-.6689z" }) + ] + } + ); +}); + +export { SiH3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.cjs new file mode 100644 index 000000000..e6a7b9f4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#65A3BE"; +const SiHabr = React__namespace.forwardRef(function SiHabr2({ title = "Habr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.14 9.295l.17.253c-.34-.01-.696-.043-.764-.189 0-.007.002-.014.004-.021.19-.05.353-.053.59-.043zm1.806.77l.082.25-.192.008.046-.256c.022 0 .042-.001.064-.003zM3.6 11.89c-.17.156-.301.26-.402.497-.14-.115-.213-.343-.258-.598-.05-.278-.066-.587-.104-.818l.012-.118.197-.014.502.95.053.1zm-.254-2.342a60.527 60.527 0 01.077-.512l.065-.004c-.048.172-.096.344-.142.516zm-.137-2.322l.9.244a1.975 1.975 0 00-.004.04c-.419.31-.806.446-1.014 1.006L3.17 7.27l.039-.043zm.84-1.29c-.058.58.024.836.125 1.196.16.114.224.183.172.352-.27-.134-.556-.274-.97-.252a2.799 2.799 0 01-.03-.035c.116-.457.342-.738.517-1.1l.187-.162zm1.294-.772l.039-.003c-.124.428-.174 1.415-.391 1.807-.513-.243-.503-1.296.071-1.712l.28-.092zm-.478 3.17l.432.469c-.17.522-.491.915-.627 1.52l-.255-.02c-.218-.609.327-1.601.42-2.045l.4.046c.05.125.098.25.147.376l-.517-.347zM6.047 5.16c-.044.507.068.77.098 1.162-.254.13-.509.258-.763.387a5.262 5.262 0 01.373-1.527l.292-.022zm.296-.77l.057-.004-.086.247-.169.011.13-.153.068-.101zM6.4 6.755l-.764.47c.016-.284.378-.667.681-.773l.07.038.013.265zm.51-1.778c-.047.262-.093.523-.138.785l-.143.09-.076.083c-.138-.194-.173-.67-.143-1.032l.5.074zm.508-.59c0 .01-.002.018-.003.026L7.22 4.6c-.13.05-.146.048-.31.042.021-.085.045-.17.068-.255h.44zm.51-1.032L7.7 3.87l-.79-.057.003-.042c.325-.15.61-.328 1.014-.417zm-.412 1.34l.084-.05.073.258-.255-.05.098-.159zm.666.763c-.303.118-.722.085-.965.22a77.912 77.912 0 00-.053-.31l.158-.207c.257.1.514.202.77.303l.09-.006zm-.651.464l-.346.013c-.008-.036-.014-.072-.021-.109.243-.099.651-.108 1.018-.149l-.387.213-.264.032zm.905 0c-.291.073-.57.33-.761.53-.037-.234.412-.646.627-.775.095.085.105.076.134.245zm.51-3.083l-.004.04-.306.185-.454.033.004-.04.76-.218zm-.412.774l-.098-.145c.23-.193.737-.087 1.019-.058l-.921.203zm2.278-.76c.425.035.814.135 1.11.32L12 3.168l-.047.066-.407.12c-.245-.034-.49-.07-.734-.105L9.2 3.02l.004-.033a5.375 5.375 0 011.608-.133zm1.693-.136l-.09.122a1.23 1.23 0 01-.67-.258l.764.097-.004.039zm1.356.954l.211-.08.219.188c-.03.215-.237.391-.396.6l-.122.008c-.332-.55-.751-1.151-1.486-1.363l-.032-.065.297-.12c.499.174.915.438 1.378.59.06.145.041.096-.07.242zm.614 1.223l-.058-.057-.126.009.21-.2-.026.248zm.225 2.848c.344.298.432.73.289 1.29-.148-.332-.295-.665-.444-.997.05-.074.097-.148.146-.222.003-.024.005-.048.009-.071zm.1-2.32l-.004.048-.181.207-.07-.137c.109-.195.03-.09.173-.11l.082-.008zm.212-.003l.806.299c-.001.027-.004.054-.007.08-.068.047-.136.092-.204.137l-.807-.298.007-.081.205-.137zm1.57 1.033l-.447-.297-.062-.12c.194-.12.166-.114.371-.074.045.164.092.327.138.49zm.254-.098l-.09.098c-.108-.056-.127-.127-.164-.259l.233.102.021.059zm-.19-.739l-.064.005c.07-.067.14-.134.212-.2-.05.065-.1.13-.148.195zm1.209 1.298l-.125.055a230.14 230.14 0 01-.681-.383 98.74 98.74 0 01-.213-.29c.353-.26.366.042.699.207l.32.411zm.254.228l-.254-.093.153-.08.101.173zm-.31.416c.092.185.092.133.31.105L17.718 8l-.373-.712.005-.044c.275-.059.363.04.632.08l.103.166-.285.067zm.056.463l.509-.278c-.102.23-.235.348-.392.516l-.117-.238zm1.018.985c-.138.119-.228.157-.489.179l.21.023-.004.037-.717.304-.018-.92.494-.585.09-.043.434 1.005zm-.255-1.412c1.406-.392 1.134.354.507.923-.17-.307-.339-.615-.507-.923zm1.273.149c-.518 2.434-.618 2.567-2.45 3.613-.03-.049-.063-.097-.096-.145l.065-.272c1.195-.34 1.874-.966 1.803-2.383l.599-.77.079-.043zm.062 0c-.02-.084-.04-.168-.062-.252l.19-.006-.128.258zm-3.117 2.367l.018-.269.016-.23.176-.059c.009 0 .017-.002.025-.003.05.305 0 .53-.1.775-.086-.055-.103-.078-.135-.214zm-1.018 2.258l.004-.045.334-.799.07-.168.588.04c.009.044.015.087.018.128.026.304-.079.547-.187.864l-.827-.02zm.255 1.036l.007-.4.01-.1.43.032.062-.005c-.099.163-.197.326-.294.49l-.215-.017zm-.252-1.67l.026-.013.203-.105.023-.002-.03.107-.119.409-.106-.364.003-.032zm-.397 1.285l-.115-.115c.112.078.039.002.115.115zm-.624-.307c.143-.09.298-.062.51-.06l-.063.207c-.175.07-.2.044-.397.023l-.05-.17zm.312.966l.197.466c-.152.103-.305.205-.457.309-.136-.187.012-.71.26-.775zm-.503-1.62l-.064.005.084-.191-.02.187zm.733.072l-.033-.021.112-.236.037-.001.106.248-.222.01zm1.763-3.355l-.014-.087c.067-.082.11-.133.225-.17l.03.152c-.05.033-.1.065-.149.099l-.092.006zm-.014.63c-.046.061-.128.095-.186.144l-.069-1.29.255 1.146zm-.467 1.73c.168-.094.192-.007.212.22h-.509l.009-.08.288-.14zm-.25-.713l.115-.098.093.166-.043.092-.212-.025.047-.135zm-.047.684l-.265.25-.173-.029-.07.007c.04-.079.082-.158.123-.236l.385.008zm-.96-.147c-.106-.074-.03-.064-.05-.12l.05.12zm.802-1.152l-.86-.446c.04-.59.112-1.268.054-1.876.663.24 1.258 1.319.806 2.322zm-.605 0c.211.112.2.214.493.304.051.191-.027.267-.149.47l-.312-.012c-.064-.34.006-.535-.032-.762zm.058 1.669c-.107-.074-.03-.064-.05-.12l.05.12zm1.723-2.484l.003-.048.23-.169c.04.264.025.704-.035 1.032-.136-.106-.161-.554-.198-.815zm0 .815c.052-.086.104-.172.154-.258l-.09.254-.064.004zm1.485-.771l.043-.003c.012.989-.598 1.169-1.4 1.54l-.128.009.5-1.036.985-.51zM17.32 7.103c.008.026.017.051.024.077l-.063.046-.191-.258.23.135zm-.23.43l.007-.045a3.35 3.35 0 01.056-.004l.192.258c-.148-.07-.172-.088-.255-.21zm.254.66l-.343.323-.737-1.07-.956-.83.21-.164c.463.2 1.273.581 1.436 1.057.053.155-.13.283-.006.412.148.154.296.044.397.271zm-2.148 1.613l.078.031.034.744-.119-.028c-.112-.083-.19-.467-.088-.634l.095-.113zm-.564 1.294l.082-.003.085.202-.13.05-.125.006c.03-.085.06-.17.088-.255zm-.232 4.126l-.11-.377c.157-.045.313-.09.47-.137l.04-.002a.527.527 0 00-.005.035l-.395.48zm-.365-1.032c.047-.152.08-.175.165-.259l.07.028.02.066-.157.154-.098.01zm.12.258l-.12-.132.255-.126-.066.253-.069.005zm-.268 1.17c-.036-.028-.07-.057-.106-.087l.078-.005.393-.304.038.31-.301.206-.102-.12zm.02 2.956c-.613.026-.98-.13-1.48-.174l-.573-1.133-.11-.114c.962-.114 1.567-.578 2.28-.899.252.24.823 1.462.32 2.003-.12.185-.255.204-.438.317zm-2.632-1.273l.23-.015c.347.233.583.65.749 1.033l-1.019-.295c.076-.258.108-.52.04-.723zm-.732-.974L11.691 16l1.804.176.032.091c-.537.242-1.148.446-1.764.758-.667.053-.828-.196-1.29-.36l.071-.334zm-.071 1.216l.023-.224.439-.033c.036.195.074.304.02.516l-.482-.26zm-.51.404l.171-.094c.21-.139.367.046.593.119l-.09.088-.673-.113zm.495-.403a15.96 15.96 0 01-.166-.075l-.074-.183.255.016-.015.242zm-.749 0l.255.219c0 .135-.012.12-.043.297l-.212-.516zm-.66-.967c.239-.073.557-.057.915-.065l-.333.258-.685-.067.103-.126zM8.436 3.648c.473-.452 1.659-.317 1.956-.03l.08-.007c-.395.369-1.007.411-1.383.776-.295-.196-.539-.322-.653-.739zm2.6.739l.2.227c-.178.01-.365.021-.552.037-.421.036-.837.099-1.128.25l-.038.002a51.163 51.163 0 01-.063-.099 3.644 3.644 0 011.544-.414l.037-.003zm.992-1.29c.329.33.82.526.99 1.032-.69-.321-1.752-.316-2.29-.827.474.101.878.063 1.3-.205zm.227 1.806l.944.13.074-.006-.757.65c-.12-.239-.148-.563-.261-.774zm1.213 1.104l-.195-.03.254-.042-.06.072zm-.195-.617l.233-.229.021.258-.169-.037-.085.008zm.462 8.54l-.112.005-.096-.09.074-.097.18-.07-.046.253zm-.203.472c.03-.036.062-.072.094-.108l.008-.1.148.235-.255.023.005-.05zm-.101.824l-.158-.19.509-.068-.243.25-.108.008zm.096.774l-.509-.061.36-.197.15.258zm-.357-.728l.103.098-.369.094-.395.02.55-.258.111.046zM11.746 4.129c.297.008.611.083.763.258-.205-.02-.574.013-.667-.145l-.096-.113zm.258 1.032c.145.127.196.277.17.516-.224-.077-.166-.322-.17-.516zm.25 1.627l.009-.044c.507-.11.616.066.385.224-.2-.028-.29-.103-.393-.18zm.653 6.631l.111.028a1.49 1.49 0 00-.004.036l-.25.194.104-.255.039-.003zm-.14-6.294l.19-.157.061.258-.254-.056.002-.045zm.76 6.9l-.615.161-.148.007c0-.008.002-.017.004-.025.23-.046.378-.122.514-.233l.216.04.03.05zm-.439-.606l-.07-.143.175-.115.08.043-.1.208-.085.007zm-1.597 1.785l.303-.236.938.08.032.07-.634.366c-.235-.039-.438-.143-.56-.286l-.08.006zm-.471.022l.47.258-.763-.135c.098-.04.195-.082.293-.123zm-.038.527a7.12 7.12 0 00-.003.062l-.145.08-.107.014.004-.062c.111-.147.092-.098.25-.094zM9.782 5.25a6.022 6.022 0 00-.073-.077c.253-.138.652-.204 1.044-.235.323-.027.641-.03.869-.035l.124.774c-.333-.036-.65-.08-.993-.095a5.2 5.2 0 00-.888.032 41.055 41.055 0 00-.083-.364zm.374 10.355l.062.11-.06.231-.703.054c.075-.23.187-.341.308-.516l.393.121zm-.868-.895c-.32-.018-.758-.252-.852-.516l1.019.259-.167.257zm.358-.014l-.191.014.006-.062.212-.196c-.01.081-.018.162-.027.244zm-.7-9.437l.31-.098.199.25-.21.008-.3-.16zm-.004 11.08c-.017.056-.032.113-.048.17-.025.001-.05.004-.074.007a92.65 92.65 0 00-.129-.258l.255.026-.004.055zm.141-1.113l.594.12.032.08-.461.574-.557-.082.392-.692zm4.444-8.088l.115-.169.042-.001.32.08.032.046-.357.132a41.52 41.52 0 00-.152-.088zm.689-.834l-.18-.11c.183.067.078-.009.18.11zm-.058 1.18l-.122-.104.255-.154-.133.258zm-.122 1.806l.396.098c.107.042.104.053.113.16-.17-.065-.454-.11-.509-.258zm.04-.703l.054-.07.161.257-.255-.05.04-.137zm-5.157 8.491l.027.068-.343.131-.167.013.004-.035.117-.183c.162-.075.166-.026.362.006zm-.737-12.95c.222.166.28.37.245 1.033-.146-.187-.235-.584-.245-1.032zm.146-.515L8.31 3.8l-.127.009.146-.196zm-.146.258c-.007.062-.012.124-.02.186l-.235-.043.194-.139.06-.004zm0 14.968l.126-1.314.892-.235-.938 1.501-.08.048zm.063-3.532l.137-.081c.125.148.013.361-.105.516-.098-.092-.109-.15-.083-.359l.05-.076zm-.827-.126l.293-.471.47.276c-.16.252-.323.504-.485.756-.146-.13-.236-.321-.278-.56zm0 2.021l.47-.428.221.02.073.12c-.02.126-.038.251-.056.376l-.708-.088zm-.763-.35l.56-.336.426.067.032.059-.449.39c-.224-.023-.373-.083-.49-.185l-.08.005zm-.075-.499l.205-.095.088.019.036.042-.593.197-.17-.06.434-.103zm-.689-.242l.15-.363c.278-.036.344.101.553.188l.06.092-.311.213-.253.017-.199-.147zm-.51 1.059l.371-.654c.246 0 .276.02.377.15.045.076.006.035-.092.052l-.023.225.386.06c-.076.189-.088.164-.202.284-.38.02-.551-.052-.816-.117zm-.428-.912l.647.195.036.077-.415.502-.603-.198.335-.576zM2.46 15.56l.008-.077.361.278.031.074c-.751.58.398 2.47 1.705 1.245l.562.226c-.216.385-.587.537-.978.755-.935.078-2.244-1.449-1.69-2.501zm.872.264l.014.175c-.07-.053-.14-.104-.208-.157l-.047-.101.24.083zm1.286 1.096l-.465.36c-.916.096-1.287-.538-1.317-1.317l.179-.216.078-.006c.461.363.869.917 1.495 1.1l.03.079zm-.887-3.76c-.083-.06-.088-.09-.13-.192l.174-.662.203-.178.131.192-.378.84zm-.13.223l.401-.949.082-.048c.185.326.453.474.534.917l-.604.631a1.223 1.223 0 01-.414-.55zm.763.79l.51-.497.253.517c-.254-.008-.508-.014-.763-.02zm1.272-5.215c-.241.515-.562.865-.754 1.364-.084-.453.422-1.104.585-1.504l.078-.045.091.185zm0-1.42c.379-.117.633-.331.904-.571l.115.344-.322.43-.697-.202zm1.273.027l-.138.176-.116-.02.002-.028.232-.21.02.082zm-.2-1.112l.04-.002.16.337-.06.179c-.233-.122-.224-.267-.14-.514zm-.048 7.481l.235.169-.241-.106a1.03 1.03 0 01.006-.063zm-.004.259l.252.109a.9.9 0 00-.004.03l-.54.377c-.155-.07-.174-.209-.22-.36l.005-.032.507-.124zm-.753-.517l.242.098-.13.075-.125.014.013-.187zm-.013-5.16c.306.086.209.028.222.257-.14-.082-.15-.121-.222-.258zm0 4.609l.021-.223c.119.083.16.132.234.258a61.01 61.01 0 00-.255-.035zm.51-3.223c-.096.123-.092.09-.255.161l.111-.258.143.097zm0-1.038l-.16.167c-.16-.09-.085-.054-.013-.221l.095-.037.077.091zm-.021-.439l-.234-.168c.18.069.138.027.234.168zm-.489 4.735l.255.203c-.13-.003-.2-.031-.255-.203zm.764-.01l-.104.01-.089-.164-.062-.08.138-.014c.039.083.077.166.117.248zm-.14-4.778L6.4 8.258c.112.078.038.002.114.115zm.015 4.25l-.13-.27.055-.222.032-.002.168.516a37.21 37.21 0 00-.125-.022zm-.667 3.003l.028.034L5.8 16a.697.697 0 01-.418-.516l.481.142zM5.127 16l.255.226c-.163-.072-.173-.069-.255-.226zm.44-2.288l.03.223-.215-.258.185.035zm-.252 1.207l-.188-.467c.223.085.397.34.51.516l-.322-.049zm.2-4.594l.063-.002-.186.258c-.03-.064.007-.125.11-.2l.013-.057zm-.133 2.218l-.051.102-.146-.113a116.8 116.8 0 01-.058-.123l.2-.022.055.156zM3.6 14.71c.51.332 1.377.64 1.527 1.29A4.234 4.234 0 013.6 14.71zm1.323-.25l.204.25-.509-.258.305.008zm1.864.766l-.387-.39.677-.642.087.707-.377.325zm.377.431l.067-.168.09-.005.097.258-.254-.085zm.343-.947l-.089-.258.185.034-.096.224zm-.343-8.69l.002-.023c.084-.02.168-.04.252-.062l-.176.258-.078-.173zm-2.567 5.335l-.233-.516c.299.065.25.278.233.516zm-.623.258c-.218-.151-.357-.452-.374-.774.447.105.422.281.51.689l-.136.085zm-.263-1.347c-.325-.307.148-1.535.356-1.818.11-.139.248-.136.43-.19l.121.031c-.306.542-.512 1.28-.585 2.034l-.322-.057zm-.475 4.186l.155.261-.139.325-.08.085c.114.016.14-.082.31-.221.33.535.834 1.047 1.39 1.338l-.303.534-.92-.592c-.105-.195.04-.419-.129-.538-.153-.108-.35.048-.506.001l-.432-.396c.127-.284.249-.562.5-.707l.154-.09zm-.88-2.846a6.65 6.65 0 01.149-.764l.034-.003.133.767.07.4c.2.558.402 1.115.604 1.671-.484-.264-.783-.875-.74-1.697-.116.265-.02.682.018.916-.297-.252-.335-.753-.269-1.29zm-.442.265a.941.941 0 01-.086-.31 2.031 2.031 0 01.004-.435l.044-.092.197-.195-.111.721-.048.31zm17.722 2.58l-.509-.196.494-.061.015.258zm-13.47 4.2l.133-.07-.154.257.02-.186zM2.327 9.807l-.217-.02c-.27-.089-.523-.404-.546-.754.413.037.553.233.757.472.002.1.005.201.006.302zm-.03-.021c.03-.557-.395-.905-.947-.89.094-.782.774-1.182 1.38-1.445l.117-.009c-.101.982-.024 1.828-.391 2.678-.271.626-1.232.614-1.18 1.58l.007.08c.137 1.284 1.533 1.545 1.726 2.674-2.07 1.053.453 5.478 2.09 2.879.294.042.555.175.92.047.17-.094.203-.17.269-.366l.585.303.03.074c-.536.416-.914.987-1.49 1.377l.055-.158-.15-.027-.083.045-.075.35c.329.336 1.326-.879 1.618-1.117-.165.577-.573.874-.8 1.402l.07.072c.43-.308.957-1.18 1.037-1.843l.644.107c-.807 1.091-2.88 3.491-3.97 4.132.166-.521.43-.919.564-1.347l-.078.006a14.401 14.401 0 00-.07-.072c-.265.522-.702.889-.78 1.593a.688.688 0 00.174.179c1.296-.216 3.46-3.473 4.494-4.363-.28 2.81-1.786 3.248-3.092 4.95 1.187-.592 1.907-2.102 2.922-2.94C7.781 20.91 7.502 23.533 6.8 24l.116-.009c.788-.49.834-2.505 1.097-3.535l.112-1.083 1.125-1.58.082-.045c.126.395.696.824 1.313.709l.443-.186 1.112.416c.146 1.6.09 2.497-.923 3.715 1.035-.529 1.415-2.567 1.07-3.649 2.407.279 2.31-.533 1.854-2.286l.423.007c-.078-.117-.289-.03-.45-.12-.073-.047-.059-.038-.104-.108.572-.645 1.95-.004 1.66 1.067.396-.888-.479-1.678-1.322-1.36.36-.427.796-.778 1.024-1.343l.082-.044 1.98 2.08.117-.009.09-.122c-.63-.746-1.259-1.493-1.887-2.24l.202-.092a.41.41 0 01.349-.121 22.552 22.552 0 01-.1-.05c1.011.101 2.303.944 3.358.672.097-.169.102-.26.043-.425 1.124.028 3.146-.348 3.79-.894-1.73.363-3.678.486-5.266.274l-1.407-.165-.079.006.379-.68c1.16-.022 4.202-.051 4.817-.779l-.136-.182-.53-.076c-.046.068-.053.132-.06.197l.42.045c-.912.23-3.452.715-4.281.432-.087-.106-.023-.474-.019-.739a.968.968 0 00-.006-.142c1.192-.356 2.077-1.158 2.44-2.368.207-.693.07-1.603.518-2.035.286.025.344.146.554.228-.111-.154-.27-.24-.469-.31l-.373.257c-.341.132-.698-.213-1.277.056-.47-.402-.735-1.037-1.37-1.28l-.065-.11.77-.749c-.252.211-.509.46-.766.71l-.516-.231-.03-.075c.588-.416 1.11-.57 1.779-.438.031.062.064.123.096.185-.031.053-.059.068-.086.083l-.225-.06c.097.057.198.075.299.093l.085-.083.013-.116c-.146-.13-.191-.224-.478-.234l.137-.202c-.328.226-.994.286-1.32.482l.754-.594.09-.121-1.395.832c-.298-.02-.615-.16-.776-.327a39.46 39.46 0 00-.077.006l1.656-1.12-.027-.113c-.628.366-1.257.732-1.884 1.099l-.602-.148.056-.541 4.317-3.39.077-.006-.061-.149c-.16-.076-.817.457-1.065.616-.956.613-1.801 1.376-2.741 1.93.388-.493 1.098-.984 1.216-1.702l-.19-.024-.296.252.322-.14c-.208.633-1.15 1.763-1.682 2.121l-.062-.149c.346-.582.687-1.365.527-2.112l-.29-.17-.311.023c.199.079.334.098.48.195.093.724-.263 1.214-.455 1.8l-.082.044c-.128-.237-.12-.351-.383-.394l-.023-.152.18-.244.124-.086c.042.08.044.051.057.188a.388.388 0 00.059-.196l-.147-.066-.389.412c-.325-.217-.683-.445-1.14-.53.259-.537 1.046-1.4.64-2.081-.496-.828-2.189.126-2.809.783a1.231 1.231 0 00-.186.244c.04-.032.104-.082.186-.144.612-.456 2.241-1.548 2.594-.675.37.487-.339 1.424-.532 1.805-.66-.067-1.35-.13-2.06-.116a7.422 7.422 0 00-2.201.354c-.36.119-1.896 1.039-1.955 1.027l-.7-.678-1.464-.735-.008.077-.086.083 1.876 1.588-.286.175c-.772-.585-1.304-.94-2.453-1.239l-.194.015c.671.462 1.347.885 2.022 1.309l.135.182c-.482.203-.686.625-1.093.887-.636-.304-1.225-.58-1.996-.813l-.054.158 1.444.93.078-.006-.249.172c-.115.387-.34.836-.528 1.382-.72.586-1.653.551-1.798 1.745-.23.063-.392.083-.602.237l-.016.155c.132.184 1.301.679 1.58.727l.172-.166zm8.54-8.256l.107.02-.143-.018c-.025 0-.05.002-.074.003.113-.21.445-.262.764-.239l-.022.152-.624.031-.008.05zm.446.277l.3-.098c.13-.216.204-.445.138-.654-.309-.061-.487.014-.776.136a49.67 49.67 0 00-.157.257l-.06.1a.57.57 0 00.06.06c.098.08.216.108.433.09.06.102-.01.057-.117.085l.18.024zm7.403 2.323l-.322.06.198-.014.227.098-.344.63c.177-.209.353-.357.428-.674l-.187-.1zm-1.85 10.065c-.08-.143-.167-.237-.254-.259.077.073.166.159.254.259zm-1.018 3.096l-.254.148.195-.018.06-.13zm1.018-3.096c.259.292.453.852.397 1.29.294-.635-.041-1.031-.397-1.29Z" }) + ] + } + ); +}); + +exports.default = SiHabr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.d.ts new file mode 100644 index 000000000..5fc547ef2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#65A3BE"; +declare const SiHabr: IconType; +export { SiHabr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.mjs new file mode 100644 index 000000000..2c55f99aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHabr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#65A3BE"; +const SiHabr = React.forwardRef(function SiHabr2({ title = "Habr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.14 9.295l.17.253c-.34-.01-.696-.043-.764-.189 0-.007.002-.014.004-.021.19-.05.353-.053.59-.043zm1.806.77l.082.25-.192.008.046-.256c.022 0 .042-.001.064-.003zM3.6 11.89c-.17.156-.301.26-.402.497-.14-.115-.213-.343-.258-.598-.05-.278-.066-.587-.104-.818l.012-.118.197-.014.502.95.053.1zm-.254-2.342a60.527 60.527 0 01.077-.512l.065-.004c-.048.172-.096.344-.142.516zm-.137-2.322l.9.244a1.975 1.975 0 00-.004.04c-.419.31-.806.446-1.014 1.006L3.17 7.27l.039-.043zm.84-1.29c-.058.58.024.836.125 1.196.16.114.224.183.172.352-.27-.134-.556-.274-.97-.252a2.799 2.799 0 01-.03-.035c.116-.457.342-.738.517-1.1l.187-.162zm1.294-.772l.039-.003c-.124.428-.174 1.415-.391 1.807-.513-.243-.503-1.296.071-1.712l.28-.092zm-.478 3.17l.432.469c-.17.522-.491.915-.627 1.52l-.255-.02c-.218-.609.327-1.601.42-2.045l.4.046c.05.125.098.25.147.376l-.517-.347zM6.047 5.16c-.044.507.068.77.098 1.162-.254.13-.509.258-.763.387a5.262 5.262 0 01.373-1.527l.292-.022zm.296-.77l.057-.004-.086.247-.169.011.13-.153.068-.101zM6.4 6.755l-.764.47c.016-.284.378-.667.681-.773l.07.038.013.265zm.51-1.778c-.047.262-.093.523-.138.785l-.143.09-.076.083c-.138-.194-.173-.67-.143-1.032l.5.074zm.508-.59c0 .01-.002.018-.003.026L7.22 4.6c-.13.05-.146.048-.31.042.021-.085.045-.17.068-.255h.44zm.51-1.032L7.7 3.87l-.79-.057.003-.042c.325-.15.61-.328 1.014-.417zm-.412 1.34l.084-.05.073.258-.255-.05.098-.159zm.666.763c-.303.118-.722.085-.965.22a77.912 77.912 0 00-.053-.31l.158-.207c.257.1.514.202.77.303l.09-.006zm-.651.464l-.346.013c-.008-.036-.014-.072-.021-.109.243-.099.651-.108 1.018-.149l-.387.213-.264.032zm.905 0c-.291.073-.57.33-.761.53-.037-.234.412-.646.627-.775.095.085.105.076.134.245zm.51-3.083l-.004.04-.306.185-.454.033.004-.04.76-.218zm-.412.774l-.098-.145c.23-.193.737-.087 1.019-.058l-.921.203zm2.278-.76c.425.035.814.135 1.11.32L12 3.168l-.047.066-.407.12c-.245-.034-.49-.07-.734-.105L9.2 3.02l.004-.033a5.375 5.375 0 011.608-.133zm1.693-.136l-.09.122a1.23 1.23 0 01-.67-.258l.764.097-.004.039zm1.356.954l.211-.08.219.188c-.03.215-.237.391-.396.6l-.122.008c-.332-.55-.751-1.151-1.486-1.363l-.032-.065.297-.12c.499.174.915.438 1.378.59.06.145.041.096-.07.242zm.614 1.223l-.058-.057-.126.009.21-.2-.026.248zm.225 2.848c.344.298.432.73.289 1.29-.148-.332-.295-.665-.444-.997.05-.074.097-.148.146-.222.003-.024.005-.048.009-.071zm.1-2.32l-.004.048-.181.207-.07-.137c.109-.195.03-.09.173-.11l.082-.008zm.212-.003l.806.299c-.001.027-.004.054-.007.08-.068.047-.136.092-.204.137l-.807-.298.007-.081.205-.137zm1.57 1.033l-.447-.297-.062-.12c.194-.12.166-.114.371-.074.045.164.092.327.138.49zm.254-.098l-.09.098c-.108-.056-.127-.127-.164-.259l.233.102.021.059zm-.19-.739l-.064.005c.07-.067.14-.134.212-.2-.05.065-.1.13-.148.195zm1.209 1.298l-.125.055a230.14 230.14 0 01-.681-.383 98.74 98.74 0 01-.213-.29c.353-.26.366.042.699.207l.32.411zm.254.228l-.254-.093.153-.08.101.173zm-.31.416c.092.185.092.133.31.105L17.718 8l-.373-.712.005-.044c.275-.059.363.04.632.08l.103.166-.285.067zm.056.463l.509-.278c-.102.23-.235.348-.392.516l-.117-.238zm1.018.985c-.138.119-.228.157-.489.179l.21.023-.004.037-.717.304-.018-.92.494-.585.09-.043.434 1.005zm-.255-1.412c1.406-.392 1.134.354.507.923-.17-.307-.339-.615-.507-.923zm1.273.149c-.518 2.434-.618 2.567-2.45 3.613-.03-.049-.063-.097-.096-.145l.065-.272c1.195-.34 1.874-.966 1.803-2.383l.599-.77.079-.043zm.062 0c-.02-.084-.04-.168-.062-.252l.19-.006-.128.258zm-3.117 2.367l.018-.269.016-.23.176-.059c.009 0 .017-.002.025-.003.05.305 0 .53-.1.775-.086-.055-.103-.078-.135-.214zm-1.018 2.258l.004-.045.334-.799.07-.168.588.04c.009.044.015.087.018.128.026.304-.079.547-.187.864l-.827-.02zm.255 1.036l.007-.4.01-.1.43.032.062-.005c-.099.163-.197.326-.294.49l-.215-.017zm-.252-1.67l.026-.013.203-.105.023-.002-.03.107-.119.409-.106-.364.003-.032zm-.397 1.285l-.115-.115c.112.078.039.002.115.115zm-.624-.307c.143-.09.298-.062.51-.06l-.063.207c-.175.07-.2.044-.397.023l-.05-.17zm.312.966l.197.466c-.152.103-.305.205-.457.309-.136-.187.012-.71.26-.775zm-.503-1.62l-.064.005.084-.191-.02.187zm.733.072l-.033-.021.112-.236.037-.001.106.248-.222.01zm1.763-3.355l-.014-.087c.067-.082.11-.133.225-.17l.03.152c-.05.033-.1.065-.149.099l-.092.006zm-.014.63c-.046.061-.128.095-.186.144l-.069-1.29.255 1.146zm-.467 1.73c.168-.094.192-.007.212.22h-.509l.009-.08.288-.14zm-.25-.713l.115-.098.093.166-.043.092-.212-.025.047-.135zm-.047.684l-.265.25-.173-.029-.07.007c.04-.079.082-.158.123-.236l.385.008zm-.96-.147c-.106-.074-.03-.064-.05-.12l.05.12zm.802-1.152l-.86-.446c.04-.59.112-1.268.054-1.876.663.24 1.258 1.319.806 2.322zm-.605 0c.211.112.2.214.493.304.051.191-.027.267-.149.47l-.312-.012c-.064-.34.006-.535-.032-.762zm.058 1.669c-.107-.074-.03-.064-.05-.12l.05.12zm1.723-2.484l.003-.048.23-.169c.04.264.025.704-.035 1.032-.136-.106-.161-.554-.198-.815zm0 .815c.052-.086.104-.172.154-.258l-.09.254-.064.004zm1.485-.771l.043-.003c.012.989-.598 1.169-1.4 1.54l-.128.009.5-1.036.985-.51zM17.32 7.103c.008.026.017.051.024.077l-.063.046-.191-.258.23.135zm-.23.43l.007-.045a3.35 3.35 0 01.056-.004l.192.258c-.148-.07-.172-.088-.255-.21zm.254.66l-.343.323-.737-1.07-.956-.83.21-.164c.463.2 1.273.581 1.436 1.057.053.155-.13.283-.006.412.148.154.296.044.397.271zm-2.148 1.613l.078.031.034.744-.119-.028c-.112-.083-.19-.467-.088-.634l.095-.113zm-.564 1.294l.082-.003.085.202-.13.05-.125.006c.03-.085.06-.17.088-.255zm-.232 4.126l-.11-.377c.157-.045.313-.09.47-.137l.04-.002a.527.527 0 00-.005.035l-.395.48zm-.365-1.032c.047-.152.08-.175.165-.259l.07.028.02.066-.157.154-.098.01zm.12.258l-.12-.132.255-.126-.066.253-.069.005zm-.268 1.17c-.036-.028-.07-.057-.106-.087l.078-.005.393-.304.038.31-.301.206-.102-.12zm.02 2.956c-.613.026-.98-.13-1.48-.174l-.573-1.133-.11-.114c.962-.114 1.567-.578 2.28-.899.252.24.823 1.462.32 2.003-.12.185-.255.204-.438.317zm-2.632-1.273l.23-.015c.347.233.583.65.749 1.033l-1.019-.295c.076-.258.108-.52.04-.723zm-.732-.974L11.691 16l1.804.176.032.091c-.537.242-1.148.446-1.764.758-.667.053-.828-.196-1.29-.36l.071-.334zm-.071 1.216l.023-.224.439-.033c.036.195.074.304.02.516l-.482-.26zm-.51.404l.171-.094c.21-.139.367.046.593.119l-.09.088-.673-.113zm.495-.403a15.96 15.96 0 01-.166-.075l-.074-.183.255.016-.015.242zm-.749 0l.255.219c0 .135-.012.12-.043.297l-.212-.516zm-.66-.967c.239-.073.557-.057.915-.065l-.333.258-.685-.067.103-.126zM8.436 3.648c.473-.452 1.659-.317 1.956-.03l.08-.007c-.395.369-1.007.411-1.383.776-.295-.196-.539-.322-.653-.739zm2.6.739l.2.227c-.178.01-.365.021-.552.037-.421.036-.837.099-1.128.25l-.038.002a51.163 51.163 0 01-.063-.099 3.644 3.644 0 011.544-.414l.037-.003zm.992-1.29c.329.33.82.526.99 1.032-.69-.321-1.752-.316-2.29-.827.474.101.878.063 1.3-.205zm.227 1.806l.944.13.074-.006-.757.65c-.12-.239-.148-.563-.261-.774zm1.213 1.104l-.195-.03.254-.042-.06.072zm-.195-.617l.233-.229.021.258-.169-.037-.085.008zm.462 8.54l-.112.005-.096-.09.074-.097.18-.07-.046.253zm-.203.472c.03-.036.062-.072.094-.108l.008-.1.148.235-.255.023.005-.05zm-.101.824l-.158-.19.509-.068-.243.25-.108.008zm.096.774l-.509-.061.36-.197.15.258zm-.357-.728l.103.098-.369.094-.395.02.55-.258.111.046zM11.746 4.129c.297.008.611.083.763.258-.205-.02-.574.013-.667-.145l-.096-.113zm.258 1.032c.145.127.196.277.17.516-.224-.077-.166-.322-.17-.516zm.25 1.627l.009-.044c.507-.11.616.066.385.224-.2-.028-.29-.103-.393-.18zm.653 6.631l.111.028a1.49 1.49 0 00-.004.036l-.25.194.104-.255.039-.003zm-.14-6.294l.19-.157.061.258-.254-.056.002-.045zm.76 6.9l-.615.161-.148.007c0-.008.002-.017.004-.025.23-.046.378-.122.514-.233l.216.04.03.05zm-.439-.606l-.07-.143.175-.115.08.043-.1.208-.085.007zm-1.597 1.785l.303-.236.938.08.032.07-.634.366c-.235-.039-.438-.143-.56-.286l-.08.006zm-.471.022l.47.258-.763-.135c.098-.04.195-.082.293-.123zm-.038.527a7.12 7.12 0 00-.003.062l-.145.08-.107.014.004-.062c.111-.147.092-.098.25-.094zM9.782 5.25a6.022 6.022 0 00-.073-.077c.253-.138.652-.204 1.044-.235.323-.027.641-.03.869-.035l.124.774c-.333-.036-.65-.08-.993-.095a5.2 5.2 0 00-.888.032 41.055 41.055 0 00-.083-.364zm.374 10.355l.062.11-.06.231-.703.054c.075-.23.187-.341.308-.516l.393.121zm-.868-.895c-.32-.018-.758-.252-.852-.516l1.019.259-.167.257zm.358-.014l-.191.014.006-.062.212-.196c-.01.081-.018.162-.027.244zm-.7-9.437l.31-.098.199.25-.21.008-.3-.16zm-.004 11.08c-.017.056-.032.113-.048.17-.025.001-.05.004-.074.007a92.65 92.65 0 00-.129-.258l.255.026-.004.055zm.141-1.113l.594.12.032.08-.461.574-.557-.082.392-.692zm4.444-8.088l.115-.169.042-.001.32.08.032.046-.357.132a41.52 41.52 0 00-.152-.088zm.689-.834l-.18-.11c.183.067.078-.009.18.11zm-.058 1.18l-.122-.104.255-.154-.133.258zm-.122 1.806l.396.098c.107.042.104.053.113.16-.17-.065-.454-.11-.509-.258zm.04-.703l.054-.07.161.257-.255-.05.04-.137zm-5.157 8.491l.027.068-.343.131-.167.013.004-.035.117-.183c.162-.075.166-.026.362.006zm-.737-12.95c.222.166.28.37.245 1.033-.146-.187-.235-.584-.245-1.032zm.146-.515L8.31 3.8l-.127.009.146-.196zm-.146.258c-.007.062-.012.124-.02.186l-.235-.043.194-.139.06-.004zm0 14.968l.126-1.314.892-.235-.938 1.501-.08.048zm.063-3.532l.137-.081c.125.148.013.361-.105.516-.098-.092-.109-.15-.083-.359l.05-.076zm-.827-.126l.293-.471.47.276c-.16.252-.323.504-.485.756-.146-.13-.236-.321-.278-.56zm0 2.021l.47-.428.221.02.073.12c-.02.126-.038.251-.056.376l-.708-.088zm-.763-.35l.56-.336.426.067.032.059-.449.39c-.224-.023-.373-.083-.49-.185l-.08.005zm-.075-.499l.205-.095.088.019.036.042-.593.197-.17-.06.434-.103zm-.689-.242l.15-.363c.278-.036.344.101.553.188l.06.092-.311.213-.253.017-.199-.147zm-.51 1.059l.371-.654c.246 0 .276.02.377.15.045.076.006.035-.092.052l-.023.225.386.06c-.076.189-.088.164-.202.284-.38.02-.551-.052-.816-.117zm-.428-.912l.647.195.036.077-.415.502-.603-.198.335-.576zM2.46 15.56l.008-.077.361.278.031.074c-.751.58.398 2.47 1.705 1.245l.562.226c-.216.385-.587.537-.978.755-.935.078-2.244-1.449-1.69-2.501zm.872.264l.014.175c-.07-.053-.14-.104-.208-.157l-.047-.101.24.083zm1.286 1.096l-.465.36c-.916.096-1.287-.538-1.317-1.317l.179-.216.078-.006c.461.363.869.917 1.495 1.1l.03.079zm-.887-3.76c-.083-.06-.088-.09-.13-.192l.174-.662.203-.178.131.192-.378.84zm-.13.223l.401-.949.082-.048c.185.326.453.474.534.917l-.604.631a1.223 1.223 0 01-.414-.55zm.763.79l.51-.497.253.517c-.254-.008-.508-.014-.763-.02zm1.272-5.215c-.241.515-.562.865-.754 1.364-.084-.453.422-1.104.585-1.504l.078-.045.091.185zm0-1.42c.379-.117.633-.331.904-.571l.115.344-.322.43-.697-.202zm1.273.027l-.138.176-.116-.02.002-.028.232-.21.02.082zm-.2-1.112l.04-.002.16.337-.06.179c-.233-.122-.224-.267-.14-.514zm-.048 7.481l.235.169-.241-.106a1.03 1.03 0 01.006-.063zm-.004.259l.252.109a.9.9 0 00-.004.03l-.54.377c-.155-.07-.174-.209-.22-.36l.005-.032.507-.124zm-.753-.517l.242.098-.13.075-.125.014.013-.187zm-.013-5.16c.306.086.209.028.222.257-.14-.082-.15-.121-.222-.258zm0 4.609l.021-.223c.119.083.16.132.234.258a61.01 61.01 0 00-.255-.035zm.51-3.223c-.096.123-.092.09-.255.161l.111-.258.143.097zm0-1.038l-.16.167c-.16-.09-.085-.054-.013-.221l.095-.037.077.091zm-.021-.439l-.234-.168c.18.069.138.027.234.168zm-.489 4.735l.255.203c-.13-.003-.2-.031-.255-.203zm.764-.01l-.104.01-.089-.164-.062-.08.138-.014c.039.083.077.166.117.248zm-.14-4.778L6.4 8.258c.112.078.038.002.114.115zm.015 4.25l-.13-.27.055-.222.032-.002.168.516a37.21 37.21 0 00-.125-.022zm-.667 3.003l.028.034L5.8 16a.697.697 0 01-.418-.516l.481.142zM5.127 16l.255.226c-.163-.072-.173-.069-.255-.226zm.44-2.288l.03.223-.215-.258.185.035zm-.252 1.207l-.188-.467c.223.085.397.34.51.516l-.322-.049zm.2-4.594l.063-.002-.186.258c-.03-.064.007-.125.11-.2l.013-.057zm-.133 2.218l-.051.102-.146-.113a116.8 116.8 0 01-.058-.123l.2-.022.055.156zM3.6 14.71c.51.332 1.377.64 1.527 1.29A4.234 4.234 0 013.6 14.71zm1.323-.25l.204.25-.509-.258.305.008zm1.864.766l-.387-.39.677-.642.087.707-.377.325zm.377.431l.067-.168.09-.005.097.258-.254-.085zm.343-.947l-.089-.258.185.034-.096.224zm-.343-8.69l.002-.023c.084-.02.168-.04.252-.062l-.176.258-.078-.173zm-2.567 5.335l-.233-.516c.299.065.25.278.233.516zm-.623.258c-.218-.151-.357-.452-.374-.774.447.105.422.281.51.689l-.136.085zm-.263-1.347c-.325-.307.148-1.535.356-1.818.11-.139.248-.136.43-.19l.121.031c-.306.542-.512 1.28-.585 2.034l-.322-.057zm-.475 4.186l.155.261-.139.325-.08.085c.114.016.14-.082.31-.221.33.535.834 1.047 1.39 1.338l-.303.534-.92-.592c-.105-.195.04-.419-.129-.538-.153-.108-.35.048-.506.001l-.432-.396c.127-.284.249-.562.5-.707l.154-.09zm-.88-2.846a6.65 6.65 0 01.149-.764l.034-.003.133.767.07.4c.2.558.402 1.115.604 1.671-.484-.264-.783-.875-.74-1.697-.116.265-.02.682.018.916-.297-.252-.335-.753-.269-1.29zm-.442.265a.941.941 0 01-.086-.31 2.031 2.031 0 01.004-.435l.044-.092.197-.195-.111.721-.048.31zm17.722 2.58l-.509-.196.494-.061.015.258zm-13.47 4.2l.133-.07-.154.257.02-.186zM2.327 9.807l-.217-.02c-.27-.089-.523-.404-.546-.754.413.037.553.233.757.472.002.1.005.201.006.302zm-.03-.021c.03-.557-.395-.905-.947-.89.094-.782.774-1.182 1.38-1.445l.117-.009c-.101.982-.024 1.828-.391 2.678-.271.626-1.232.614-1.18 1.58l.007.08c.137 1.284 1.533 1.545 1.726 2.674-2.07 1.053.453 5.478 2.09 2.879.294.042.555.175.92.047.17-.094.203-.17.269-.366l.585.303.03.074c-.536.416-.914.987-1.49 1.377l.055-.158-.15-.027-.083.045-.075.35c.329.336 1.326-.879 1.618-1.117-.165.577-.573.874-.8 1.402l.07.072c.43-.308.957-1.18 1.037-1.843l.644.107c-.807 1.091-2.88 3.491-3.97 4.132.166-.521.43-.919.564-1.347l-.078.006a14.401 14.401 0 00-.07-.072c-.265.522-.702.889-.78 1.593a.688.688 0 00.174.179c1.296-.216 3.46-3.473 4.494-4.363-.28 2.81-1.786 3.248-3.092 4.95 1.187-.592 1.907-2.102 2.922-2.94C7.781 20.91 7.502 23.533 6.8 24l.116-.009c.788-.49.834-2.505 1.097-3.535l.112-1.083 1.125-1.58.082-.045c.126.395.696.824 1.313.709l.443-.186 1.112.416c.146 1.6.09 2.497-.923 3.715 1.035-.529 1.415-2.567 1.07-3.649 2.407.279 2.31-.533 1.854-2.286l.423.007c-.078-.117-.289-.03-.45-.12-.073-.047-.059-.038-.104-.108.572-.645 1.95-.004 1.66 1.067.396-.888-.479-1.678-1.322-1.36.36-.427.796-.778 1.024-1.343l.082-.044 1.98 2.08.117-.009.09-.122c-.63-.746-1.259-1.493-1.887-2.24l.202-.092a.41.41 0 01.349-.121 22.552 22.552 0 01-.1-.05c1.011.101 2.303.944 3.358.672.097-.169.102-.26.043-.425 1.124.028 3.146-.348 3.79-.894-1.73.363-3.678.486-5.266.274l-1.407-.165-.079.006.379-.68c1.16-.022 4.202-.051 4.817-.779l-.136-.182-.53-.076c-.046.068-.053.132-.06.197l.42.045c-.912.23-3.452.715-4.281.432-.087-.106-.023-.474-.019-.739a.968.968 0 00-.006-.142c1.192-.356 2.077-1.158 2.44-2.368.207-.693.07-1.603.518-2.035.286.025.344.146.554.228-.111-.154-.27-.24-.469-.31l-.373.257c-.341.132-.698-.213-1.277.056-.47-.402-.735-1.037-1.37-1.28l-.065-.11.77-.749c-.252.211-.509.46-.766.71l-.516-.231-.03-.075c.588-.416 1.11-.57 1.779-.438.031.062.064.123.096.185-.031.053-.059.068-.086.083l-.225-.06c.097.057.198.075.299.093l.085-.083.013-.116c-.146-.13-.191-.224-.478-.234l.137-.202c-.328.226-.994.286-1.32.482l.754-.594.09-.121-1.395.832c-.298-.02-.615-.16-.776-.327a39.46 39.46 0 00-.077.006l1.656-1.12-.027-.113c-.628.366-1.257.732-1.884 1.099l-.602-.148.056-.541 4.317-3.39.077-.006-.061-.149c-.16-.076-.817.457-1.065.616-.956.613-1.801 1.376-2.741 1.93.388-.493 1.098-.984 1.216-1.702l-.19-.024-.296.252.322-.14c-.208.633-1.15 1.763-1.682 2.121l-.062-.149c.346-.582.687-1.365.527-2.112l-.29-.17-.311.023c.199.079.334.098.48.195.093.724-.263 1.214-.455 1.8l-.082.044c-.128-.237-.12-.351-.383-.394l-.023-.152.18-.244.124-.086c.042.08.044.051.057.188a.388.388 0 00.059-.196l-.147-.066-.389.412c-.325-.217-.683-.445-1.14-.53.259-.537 1.046-1.4.64-2.081-.496-.828-2.189.126-2.809.783a1.231 1.231 0 00-.186.244c.04-.032.104-.082.186-.144.612-.456 2.241-1.548 2.594-.675.37.487-.339 1.424-.532 1.805-.66-.067-1.35-.13-2.06-.116a7.422 7.422 0 00-2.201.354c-.36.119-1.896 1.039-1.955 1.027l-.7-.678-1.464-.735-.008.077-.086.083 1.876 1.588-.286.175c-.772-.585-1.304-.94-2.453-1.239l-.194.015c.671.462 1.347.885 2.022 1.309l.135.182c-.482.203-.686.625-1.093.887-.636-.304-1.225-.58-1.996-.813l-.054.158 1.444.93.078-.006-.249.172c-.115.387-.34.836-.528 1.382-.72.586-1.653.551-1.798 1.745-.23.063-.392.083-.602.237l-.016.155c.132.184 1.301.679 1.58.727l.172-.166zm8.54-8.256l.107.02-.143-.018c-.025 0-.05.002-.074.003.113-.21.445-.262.764-.239l-.022.152-.624.031-.008.05zm.446.277l.3-.098c.13-.216.204-.445.138-.654-.309-.061-.487.014-.776.136a49.67 49.67 0 00-.157.257l-.06.1a.57.57 0 00.06.06c.098.08.216.108.433.09.06.102-.01.057-.117.085l.18.024zm7.403 2.323l-.322.06.198-.014.227.098-.344.63c.177-.209.353-.357.428-.674l-.187-.1zm-1.85 10.065c-.08-.143-.167-.237-.254-.259.077.073.166.159.254.259zm-1.018 3.096l-.254.148.195-.018.06-.13zm1.018-3.096c.259.292.453.852.397 1.29.294-.635-.041-1.031-.397-1.29Z" }) + ] + } + ); +}); + +export { SiHabr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.cjs new file mode 100644 index 000000000..1e68d1f60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1A1A"; +const SiHackaday = React__namespace.forwardRef(function SiHackaday2({ title = "Hackaday", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.124c0-.204.021-.401.06-.595l1.956 1.734 2.144-2.38L2.246 1.18c.259-.072.53-.114.812-.114a3.062 3.062 0 0 1 3.058 3.037v.021c0 .152-.012.304-.033.45l2.385 2.112a6.716 6.716 0 0 0-2.013 2.54L3.982 7.037a3.038 3.038 0 0 1-.924.145A3.06 3.06 0 0 1 0 4.124zm20.942 12.694c-.306 0-.601.045-.88.129l-2.308-2.044a6.862 6.862 0 0 1-1.819 2.706l1.993 1.765a3.05 3.05 0 0 0-.044.502 3.06 3.06 0 0 0 3.935 2.929l-1.992-1.77 2.14-2.365 1.981 1.76c.034-.181.052-.364.052-.554v-.026a3.057 3.057 0 0 0-3.058-3.032zm-3.397-7.592l2.473-2.189c.292.093.601.145.924.145A3.06 3.06 0 0 0 23.94 3.53l-1.956 1.734-2.144-2.38 1.914-1.703a3.049 3.049 0 0 0-.812-.114 3.062 3.062 0 0 0-3.058 3.037v.021c0 .152.012.304.033.45l-2.385 2.112a6.716 6.716 0 0 1 2.013 2.54zm-11.3 5.677l-2.307 2.044A3.057 3.057 0 0 0 0 19.85v.026c0 .19.018.373.052.554l1.982-1.76 2.14 2.365-1.993 1.77a3.06 3.06 0 0 0 3.935-2.929 3.05 3.05 0 0 0-.044-.502l1.993-1.765a6.862 6.862 0 0 1-1.82-2.706zm8.971 2.657a1.076 1.076 0 1 1-1.961.424h-.192a1.076 1.076 0 1 1-2.127 0h-.15A1.105 1.105 0 0 1 9.7 19.23c-.604 0-1.094-.5-1.094-1.115 0-.21.057-.405.156-.572-1.493-1.142-2.474-3.051-2.474-5.213 0-3.497 2.559-6.332 5.713-6.332s5.713 2.835 5.713 6.332c0 2.173-.991 4.091-2.497 5.231zm-4.194-5.914a1.995 1.995 0 0 0-.559-.66 1.804 1.804 0 0 0-.918-.264 1.45 1.45 0 0 0-.319.036c-.405.05-.747.327-.983.647-.207.257-.368.569-.372.905-.032.278.024.556.075.828.066.322.293.584.55.774.119.095.29.226.44.116.1-.134.016-.33.107-.478a.5.5 0 0 1 .258-.326c.263-.132.527-.262.808-.355.228-.067.416-.219.61-.349.255-.197.424-.558.303-.874zm.996 2.325c-.279-.007-.63 1.237-.574 1.78.175.72.237-.505.574-.506.323.014.275 1.255.53.504.078-.5-.224-1.77-.53-1.778zm4.036-.833c.051-.272.107-.55.075-.828-.004-.336-.165-.648-.372-.905-.236-.32-.578-.596-.983-.647a1.45 1.45 0 0 0-.319-.036c-.32-.001-.644.1-.918.264-.235.171-.42.406-.559.66-.121.316.048.677.303.874.194.13.382.282.61.35.28.092.545.222.808.354a.5.5 0 0 1 .258.326c.091.147.007.344.106.478.151.11.322-.021.44-.116.258-.19.485-.452.551-.774z" }) + ] + } + ); +}); + +exports.default = SiHackaday; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.d.ts new file mode 100644 index 000000000..6b0f6e02a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1A1A"; +declare const SiHackaday: IconType; +export { SiHackaday as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.mjs new file mode 100644 index 000000000..0dcec63e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackaday.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1A1A"; +const SiHackaday = React.forwardRef(function SiHackaday2({ title = "Hackaday", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.124c0-.204.021-.401.06-.595l1.956 1.734 2.144-2.38L2.246 1.18c.259-.072.53-.114.812-.114a3.062 3.062 0 0 1 3.058 3.037v.021c0 .152-.012.304-.033.45l2.385 2.112a6.716 6.716 0 0 0-2.013 2.54L3.982 7.037a3.038 3.038 0 0 1-.924.145A3.06 3.06 0 0 1 0 4.124zm20.942 12.694c-.306 0-.601.045-.88.129l-2.308-2.044a6.862 6.862 0 0 1-1.819 2.706l1.993 1.765a3.05 3.05 0 0 0-.044.502 3.06 3.06 0 0 0 3.935 2.929l-1.992-1.77 2.14-2.365 1.981 1.76c.034-.181.052-.364.052-.554v-.026a3.057 3.057 0 0 0-3.058-3.032zm-3.397-7.592l2.473-2.189c.292.093.601.145.924.145A3.06 3.06 0 0 0 23.94 3.53l-1.956 1.734-2.144-2.38 1.914-1.703a3.049 3.049 0 0 0-.812-.114 3.062 3.062 0 0 0-3.058 3.037v.021c0 .152.012.304.033.45l-2.385 2.112a6.716 6.716 0 0 1 2.013 2.54zm-11.3 5.677l-2.307 2.044A3.057 3.057 0 0 0 0 19.85v.026c0 .19.018.373.052.554l1.982-1.76 2.14 2.365-1.993 1.77a3.06 3.06 0 0 0 3.935-2.929 3.05 3.05 0 0 0-.044-.502l1.993-1.765a6.862 6.862 0 0 1-1.82-2.706zm8.971 2.657a1.076 1.076 0 1 1-1.961.424h-.192a1.076 1.076 0 1 1-2.127 0h-.15A1.105 1.105 0 0 1 9.7 19.23c-.604 0-1.094-.5-1.094-1.115 0-.21.057-.405.156-.572-1.493-1.142-2.474-3.051-2.474-5.213 0-3.497 2.559-6.332 5.713-6.332s5.713 2.835 5.713 6.332c0 2.173-.991 4.091-2.497 5.231zm-4.194-5.914a1.995 1.995 0 0 0-.559-.66 1.804 1.804 0 0 0-.918-.264 1.45 1.45 0 0 0-.319.036c-.405.05-.747.327-.983.647-.207.257-.368.569-.372.905-.032.278.024.556.075.828.066.322.293.584.55.774.119.095.29.226.44.116.1-.134.016-.33.107-.478a.5.5 0 0 1 .258-.326c.263-.132.527-.262.808-.355.228-.067.416-.219.61-.349.255-.197.424-.558.303-.874zm.996 2.325c-.279-.007-.63 1.237-.574 1.78.175.72.237-.505.574-.506.323.014.275 1.255.53.504.078-.5-.224-1.77-.53-1.778zm4.036-.833c.051-.272.107-.55.075-.828-.004-.336-.165-.648-.372-.905-.236-.32-.578-.596-.983-.647a1.45 1.45 0 0 0-.319-.036c-.32-.001-.644.1-.918.264-.235.171-.42.406-.559.66-.121.316.048.677.303.874.194.13.382.282.61.35.28.092.545.222.808.354a.5.5 0 0 1 .258.326c.091.147.007.344.106.478.151.11.322-.021.44-.116.258-.19.485-.452.551-.774z" }) + ] + } + ); +}); + +export { SiHackaday as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.cjs new file mode 100644 index 000000000..189c17fd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC3750"; +const SiHackclub = React__namespace.forwardRef(function SiHackclub2({ title = "Hack Club", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C2.4 0 0 2.4 0 12s2.4 12 12 12 12-2.4 12-12S21.6 0 12 0zm4.5 19.5094h-3.3094V13.003c0-.975-.1875-1.6218-.8343-1.6218-.7125 0-1.575 1.003-1.575 2.625v5.503H7.5V4.9689l3.2906-.5625v5.428c.7125-.6468 1.7063-.928 2.7188-.928 2.1562 0 2.9906 1.4156 2.9906 3.628z" }) + ] + } + ); +}); + +exports.default = SiHackclub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.d.ts new file mode 100644 index 000000000..9b0137858 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC3750"; +declare const SiHackclub: IconType; +export { SiHackclub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.mjs new file mode 100644 index 000000000..7eb92f64e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackclub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC3750"; +const SiHackclub = React.forwardRef(function SiHackclub2({ title = "Hack Club", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C2.4 0 0 2.4 0 12s2.4 12 12 12 12-2.4 12-12S21.6 0 12 0zm4.5 19.5094h-3.3094V13.003c0-.975-.1875-1.6218-.8343-1.6218-.7125 0-1.575 1.003-1.575 2.625v5.503H7.5V4.9689l3.2906-.5625v5.428c.7125-.6468 1.7063-.928 2.7188-.928 2.1562 0 2.9906 1.4156 2.9906 3.628z" }) + ] + } + ); +}); + +export { SiHackclub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.cjs new file mode 100644 index 000000000..2948f9855 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C3454"; +const SiHackerearth = React__namespace.forwardRef(function SiHackerearth2({ title = "HackerEarth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.447 20.936H5.553V19.66h12.894zM20.973 0H9.511v6.51h.104c.986-1.276 2.206-1.4 3.538-1.306 1.967.117 3.89 1.346 4.017 5.169v7.322c0 .089-.05.177-.138.177h-2.29c-.09 0-.253-.082-.253-.177V10.6c0-1.783-.58-3.115-2.341-3.115-1.282 0-2.637.892-2.637 2.77v7.417c0 .089-.008.072-.102.072h-2.29c-.09 0-.29.022-.29-.072V0H3.178c-.843 0-1.581.673-1.581 1.515v20.996c0 .843.738 1.489 1.58 1.489h17.797c.843 0 1.431-.646 1.431-1.489V1.515c0-.842-.588-1.515-1.43-1.515" }) + ] + } + ); +}); + +exports.default = SiHackerearth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.d.ts new file mode 100644 index 000000000..38361e75e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C3454"; +declare const SiHackerearth: IconType; +export { SiHackerearth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.mjs new file mode 100644 index 000000000..5cd085f1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerearth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C3454"; +const SiHackerearth = React.forwardRef(function SiHackerearth2({ title = "HackerEarth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.447 20.936H5.553V19.66h12.894zM20.973 0H9.511v6.51h.104c.986-1.276 2.206-1.4 3.538-1.306 1.967.117 3.89 1.346 4.017 5.169v7.322c0 .089-.05.177-.138.177h-2.29c-.09 0-.253-.082-.253-.177V10.6c0-1.783-.58-3.115-2.341-3.115-1.282 0-2.637.892-2.637 2.77v7.417c0 .089-.008.072-.102.072h-2.29c-.09 0-.29.022-.29-.072V0H3.178c-.843 0-1.581.673-1.581 1.515v20.996c0 .843.738 1.489 1.58 1.489h17.797c.843 0 1.431-.646 1.431-1.489V1.515c0-.842-.588-1.515-1.43-1.515" }) + ] + } + ); +}); + +export { SiHackerearth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.cjs new file mode 100644 index 000000000..4a3b41030 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FE00"; +const SiHackernoon = React__namespace.forwardRef(function SiHackernoon2({ title = "Hacker Noon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.701 0v6.223H8.85V4.654h1.576v7.842H12V4.654h1.574v1.569h3.15V0zm11.024 6.223v3.136h1.574V6.223zm1.574 3.136v4.705h1.576v-1.568h1.574v-1.568h-1.574V9.359zm0 4.705h-1.574v3.137h1.574zm-1.574 3.137h-3.15v1.569H8.85V17.2H5.7V24h11.024zm-11.024 0v-3.137H4.125v3.137zm-1.576-3.137V9.36H2.551v4.705zm0-4.705h1.576V6.223H4.125Z" }) + ] + } + ); +}); + +exports.default = SiHackernoon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.d.ts new file mode 100644 index 000000000..58ab331d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FE00"; +declare const SiHackernoon: IconType; +export { SiHackernoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.mjs new file mode 100644 index 000000000..800cf4a74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackernoon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FE00"; +const SiHackernoon = React.forwardRef(function SiHackernoon2({ title = "Hacker Noon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.701 0v6.223H8.85V4.654h1.576v7.842H12V4.654h1.574v1.569h3.15V0zm11.024 6.223v3.136h1.574V6.223zm1.574 3.136v4.705h1.576v-1.568h1.574v-1.568h-1.574V9.359zm0 4.705h-1.574v3.137h1.574zm-1.574 3.137h-3.15v1.569H8.85V17.2H5.7V24h11.024zm-11.024 0v-3.137H4.125v3.137zm-1.576-3.137V9.36H2.551v4.705zm0-4.705h1.576V6.223H4.125Z" }) + ] + } + ); +}); + +export { SiHackernoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.cjs new file mode 100644 index 000000000..9fa0641bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#494649"; +const SiHackerone = React__namespace.forwardRef(function SiHackerone2({ title = "HackerOne", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.207 0c-.4836 0-.8774.1018-1.1823.3002-.3044.2003-.4592.4627-.4592.7798v21.809c0 .2766.1581.5277.4752.7609.315.2335.7031.3501 1.1664.3501.4427 0 .8306-.1166 1.1678-.3501.3352-.231.5058-.4843.5058-.761V1.0815c0-.319-.1623-.5769-.4893-.7813C8.0644.1018 7.6702 0 7.207 0zm9.5234 8.662c-.4836 0-.8717.0981-1.1683.3007l-4.439 2.7822c-.1988.1861-.2841.4687-.2473.855.0342.3826.2108.747.5238 1.0907.3145.346.6662.5626 1.0684.6547.3963.0899.6973.041.8962-.143l1.7551-1.0951v9.7817c0 .2767.1522.5278.4607.761.3007.2335.6873.3501 1.1504.3501.463 0 .863-.1166 1.1983-.3501.3371-.2332.5058-.4843.5058-.761V9.7381c0-.3193-.165-.577-.4898-.7754-.3252-.2026-.7288-.3007-1.2143-.3007z" }) + ] + } + ); +}); + +exports.default = SiHackerone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.d.ts new file mode 100644 index 000000000..67b29d078 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#494649"; +declare const SiHackerone: IconType; +export { SiHackerone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.mjs new file mode 100644 index 000000000..fb485cf17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#494649"; +const SiHackerone = React.forwardRef(function SiHackerone2({ title = "HackerOne", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.207 0c-.4836 0-.8774.1018-1.1823.3002-.3044.2003-.4592.4627-.4592.7798v21.809c0 .2766.1581.5277.4752.7609.315.2335.7031.3501 1.1664.3501.4427 0 .8306-.1166 1.1678-.3501.3352-.231.5058-.4843.5058-.761V1.0815c0-.319-.1623-.5769-.4893-.7813C8.0644.1018 7.6702 0 7.207 0zm9.5234 8.662c-.4836 0-.8717.0981-1.1683.3007l-4.439 2.7822c-.1988.1861-.2841.4687-.2473.855.0342.3826.2108.747.5238 1.0907.3145.346.6662.5626 1.0684.6547.3963.0899.6973.041.8962-.143l1.7551-1.0951v9.7817c0 .2767.1522.5278.4607.761.3007.2335.6873.3501 1.1504.3501.463 0 .863-.1166 1.1983-.3501.3371-.2332.5058-.4843.5058-.761V9.7381c0-.3193-.165-.577-.4898-.7754-.3252-.2026-.7288-.3007-1.2143-.3007z" }) + ] + } + ); +}); + +export { SiHackerone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.cjs new file mode 100644 index 000000000..e167a17e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00EA64"; +const SiHackerrank = React__namespace.forwardRef(function SiHackerrank2({ title = "HackerRank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm9.95 8.002h1.805c.061 0 .111.05.111.111v7.767c0 .061-.05.111-.11.111H9.95c-.061 0-.111-.05-.111-.11v-2.87H7.894v2.87c0 .06-.05.11-.11.11H5.976a.11.11 0 01-.11-.11V8.112c0-.06.05-.11.11-.11h1.806c.061 0 .11.05.11.11v2.869H9.84v-2.87c0-.06.05-.11.11-.11zm2.999 0h5.778c.061 0 .111.05.111.11v7.767a.11.11 0 01-.11.112h-5.78a.11.11 0 01-.11-.11V8.111c0-.06.05-.11.11-.11z" }) + ] + } + ); +}); + +exports.default = SiHackerrank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.d.ts new file mode 100644 index 000000000..49b0f3a40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00EA64"; +declare const SiHackerrank: IconType; +export { SiHackerrank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.mjs new file mode 100644 index 000000000..6fc5a3488 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackerrank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00EA64"; +const SiHackerrank = React.forwardRef(function SiHackerrank2({ title = "HackerRank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm9.95 8.002h1.805c.061 0 .111.05.111.111v7.767c0 .061-.05.111-.11.111H9.95c-.061 0-.111-.05-.111-.11v-2.87H7.894v2.87c0 .06-.05.11-.11.11H5.976a.11.11 0 01-.11-.11V8.112c0-.06.05-.11.11-.11h1.806c.061 0 .11.05.11.11v2.869H9.84v-2.87c0-.06.05-.11.11-.11zm2.999 0h5.778c.061 0 .111.05.111.11v7.767a.11.11 0 01-.11.112h-5.78a.11.11 0 01-.11-.11V8.111c0-.06.05-.11.11-.11z" }) + ] + } + ); +}); + +export { SiHackerrank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.cjs new file mode 100644 index 000000000..773129f32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#453AFF"; +const SiHackmd = React__namespace.forwardRef(function SiHackmd2({ title = "HackMD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.93 12.987c.006-.954-.289-1.489-1.035-1.86l-4.559-2.275q-.271-.135-.551-.239l-.03-3.085c-.02-.907-.293-1.485-1.039-1.857l-4.56-2.274a5.49 5.49 0 0 0-5.025.06l-5.86 3.1c-.648.343-.983.98-.998 1.626l-.272 4.67c-.012.441.157.914.576 1.166l4.878 2.924q.436.26.9.434l-.149 2.95c-.018.468.13.895.55 1.147l4.878 2.924a5.49 5.49 0 0 0 5.583.044l6.213-3.593c.43-.248.57-.68.57-1.152l-.071-4.71zM6.21 9.07c-1.035-.478-3.854-1.977-4.07-2.098-.487-.273-.51-.562-.484-.91a.96.96 0 0 1 .531-.793l5.579-2.838a4.26 4.26 0 0 1 3.819-.01c.994.496 2.984 1.488 3.978 1.986l.01.005a.96.96 0 0 1 .513 1.036.92.92 0 0 1-.495.678c-.077.042-4.35 2.346-5.202 2.804a4.67 4.67 0 0 1-4.178.14zm16.038 3.965c-.042.29-.204.567-.492.738l-5.313 3.159a4.34 4.34 0 0 1-4.31.076L8.235 14.87c-.708-.388-.712-1.418-.008-1.813l5.275-2.947a4.34 4.34 0 0 1 3.967-.14l4.201 1.976c.359.17.556.503.585.85q.01.12-.007.24z" }) + ] + } + ); +}); + +exports.default = SiHackmd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.d.ts new file mode 100644 index 000000000..d28dd5487 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#453AFF"; +declare const SiHackmd: IconType; +export { SiHackmd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.mjs new file mode 100644 index 000000000..cfa034f52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackmd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#453AFF"; +const SiHackmd = React.forwardRef(function SiHackmd2({ title = "HackMD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.93 12.987c.006-.954-.289-1.489-1.035-1.86l-4.559-2.275q-.271-.135-.551-.239l-.03-3.085c-.02-.907-.293-1.485-1.039-1.857l-4.56-2.274a5.49 5.49 0 0 0-5.025.06l-5.86 3.1c-.648.343-.983.98-.998 1.626l-.272 4.67c-.012.441.157.914.576 1.166l4.878 2.924q.436.26.9.434l-.149 2.95c-.018.468.13.895.55 1.147l4.878 2.924a5.49 5.49 0 0 0 5.583.044l6.213-3.593c.43-.248.57-.68.57-1.152l-.071-4.71zM6.21 9.07c-1.035-.478-3.854-1.977-4.07-2.098-.487-.273-.51-.562-.484-.91a.96.96 0 0 1 .531-.793l5.579-2.838a4.26 4.26 0 0 1 3.819-.01c.994.496 2.984 1.488 3.978 1.986l.01.005a.96.96 0 0 1 .513 1.036.92.92 0 0 1-.495.678c-.077.042-4.35 2.346-5.202 2.804a4.67 4.67 0 0 1-4.178.14zm16.038 3.965c-.042.29-.204.567-.492.738l-5.313 3.159a4.34 4.34 0 0 1-4.31.076L8.235 14.87c-.708-.388-.712-1.418-.008-1.813l5.275-2.947a4.34 4.34 0 0 1 3.967-.14l4.201 1.976c.359.17.556.503.585.85q.01.12-.007.24z" }) + ] + } + ); +}); + +export { SiHackmd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.cjs new file mode 100644 index 000000000..6a8ab352a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E9FE6"; +const SiHackster = React__namespace.forwardRef(function SiHackster2({ title = "Hackster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.091 13.294c-.057.05-.247.09-.396.132l-4.778 1.306c-.15.041-.273-.052-.273-.208V13.29a.282.282 0 00-.283-.283H8.117a.282.282 0 01-.282-.282V11.29a.283.283 0 00-.283-.283H5.035c-.1 0-.18-.08-.18-.178 0-.058.025-.098.055-.126.056-.052.246-.093.397-.134l4.758-1.3c.15-.042.272.051.272.208v1.247c0 .156.128.283.284.283h5.24c.156 0 .282.126.282.283v1.42c0 .157.127.284.282.284h2.542a.18.18 0 01.18.179.158.158 0 01-.056.12m-2.948 2.288a.39.39 0 01-.272.356l-1.954.534c-.15.042-.273-.052-.273-.208v-.728c0-.157.127-.284.283-.284h1.933c.157 0 .283.127.283.284zm-5.81 1.586a.39.39 0 01-.272.357l-1.953.535c-.15.04-.273-.053-.273-.209v-3.758c0-.157.127-.284.283-.284h1.933c.156 0 .283.127.283.284zM7.836 8.46c0-.156.122-.316.273-.357l1.952-.534c.152-.042.274.052.274.208v.729a.283.283 0 01-.283.283H8.118a.283.283 0 01-.283-.283zm5.809-1.587c0-.157.122-.316.273-.358l1.954-.533c.15-.042.272.052.272.208v3.759a.283.283 0 01-.283.283h-1.933a.283.283 0 01-.283-.283zM12 0C5.384 0 0 5.384 0 12c0 6.617 5.384 12 12 12 6.618 0 12-5.383 12-12 0-6.616-5.382-12-12-12Z" }) + ] + } + ); +}); + +exports.default = SiHackster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.d.ts new file mode 100644 index 000000000..314d12edd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E9FE6"; +declare const SiHackster: IconType; +export { SiHackster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.mjs new file mode 100644 index 000000000..39c2b85aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E9FE6"; +const SiHackster = React.forwardRef(function SiHackster2({ title = "Hackster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.091 13.294c-.057.05-.247.09-.396.132l-4.778 1.306c-.15.041-.273-.052-.273-.208V13.29a.282.282 0 00-.283-.283H8.117a.282.282 0 01-.282-.282V11.29a.283.283 0 00-.283-.283H5.035c-.1 0-.18-.08-.18-.178 0-.058.025-.098.055-.126.056-.052.246-.093.397-.134l4.758-1.3c.15-.042.272.051.272.208v1.247c0 .156.128.283.284.283h5.24c.156 0 .282.126.282.283v1.42c0 .157.127.284.282.284h2.542a.18.18 0 01.18.179.158.158 0 01-.056.12m-2.948 2.288a.39.39 0 01-.272.356l-1.954.534c-.15.042-.273-.052-.273-.208v-.728c0-.157.127-.284.283-.284h1.933c.157 0 .283.127.283.284zm-5.81 1.586a.39.39 0 01-.272.357l-1.953.535c-.15.04-.273-.053-.273-.209v-3.758c0-.157.127-.284.283-.284h1.933c.156 0 .283.127.283.284zM7.836 8.46c0-.156.122-.316.273-.357l1.952-.534c.152-.042.274.052.274.208v.729a.283.283 0 01-.283.283H8.118a.283.283 0 01-.283-.283zm5.809-1.587c0-.157.122-.316.273-.358l1.954-.533c.15-.042.272.052.272.208v3.759a.283.283 0 01-.283.283h-1.933a.283.283 0 01-.283-.283zM12 0C5.384 0 0 5.384 0 12c0 6.617 5.384 12 12 12 6.618 0 12-5.383 12-12 0-6.616-5.382-12-12-12Z" }) + ] + } + ); +}); + +export { SiHackster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.cjs new file mode 100644 index 000000000..c69576c8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9FEF00"; +const SiHackthebox = React__namespace.forwardRef(function SiHackthebox2({ title = "Hack The Box", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.5106 6.4566.0008-.0123a.888.888 0 0 0-.2717-.6384c-.0084-.0084-.018-.0155-.0267-.0235-.0186-.0166-.0371-.0333-.0572-.0484-.0193-.0147-.04-.0276-.0607-.0406-.0096-.006-.0182-.0131-.0281-.0188L12.4576.1266a.891.891 0 0 0-.9223.0043L1.933 5.6744c-.0107.0062-.0203.014-.0307.0205-.0073.0047-.015.008-.0223.0128-.007.0047-.013.0106-.02.0155a.8769.8769 0 0 0-.147.1333l-.0026.003a.8872.8872 0 0 0-.2218.5847l.0009.014c-.0002.0088-.0015.0176-.0015.0264v11.0708c0 .3277.1802.6288.469.7836l9.5986 5.5417c.0076.0044.0158.0075.0236.0117a.8754.8754 0 0 0 .166.0687c.0134.004.0266.0083.0401.0117a.8793.8793 0 0 0 .072.0142c.0117.0019.0232.0045.0349.006a.835.835 0 0 0 .2157 0c.0117-.0015.0232-.0041.0348-.006a.9.9 0 0 0 .072-.0142c.0135-.0034.0267-.0077.04-.0117a.895.895 0 0 0 .0646-.0217.9134.9134 0 0 0 .1015-.047c.0078-.0042.016-.0072.0236-.0117l9.5986-5.5417a.8888.8888 0 0 0 .469-.7836V6.4779c0-.0071-.0012-.0142-.0014-.0213zM5.2543 6.0822l6.5367-3.774a.4182.4182 0 0 1 .4182 0l6.5366 3.774a.4182.4182 0 0 1 0 .7243l-6.5367 3.774a.4182.4182 0 0 1-.4182 0l-6.5366-3.774a.4182.4182 0 0 1 0-.7243zm5.6134 14.3449a.4172.4172 0 0 1-.626.3613L3.718 17.0218a.4173.4173 0 0 1-.2086-.3613V9.1279a.4172.4172 0 0 1 .6258-.3613l6.524 3.7666a.4172.4172 0 0 1 .2086.3614v7.5325zm9.623-3.7666a.4173.4173 0 0 1-.2086.3613l-6.5239 3.7666a.4172.4172 0 0 1-.6259-.3613v-7.5325c0-.149.0796-.2868.2087-.3614l6.5239-3.7666a.4172.4172 0 0 1 .6258.3613v7.5326z" }) + ] + } + ); +}); + +exports.default = SiHackthebox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.d.ts new file mode 100644 index 000000000..f0ec461f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9FEF00"; +declare const SiHackthebox: IconType; +export { SiHackthebox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.mjs new file mode 100644 index 000000000..a4ef23713 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHackthebox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9FEF00"; +const SiHackthebox = React.forwardRef(function SiHackthebox2({ title = "Hack The Box", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m22.5106 6.4566.0008-.0123a.888.888 0 0 0-.2717-.6384c-.0084-.0084-.018-.0155-.0267-.0235-.0186-.0166-.0371-.0333-.0572-.0484-.0193-.0147-.04-.0276-.0607-.0406-.0096-.006-.0182-.0131-.0281-.0188L12.4576.1266a.891.891 0 0 0-.9223.0043L1.933 5.6744c-.0107.0062-.0203.014-.0307.0205-.0073.0047-.015.008-.0223.0128-.007.0047-.013.0106-.02.0155a.8769.8769 0 0 0-.147.1333l-.0026.003a.8872.8872 0 0 0-.2218.5847l.0009.014c-.0002.0088-.0015.0176-.0015.0264v11.0708c0 .3277.1802.6288.469.7836l9.5986 5.5417c.0076.0044.0158.0075.0236.0117a.8754.8754 0 0 0 .166.0687c.0134.004.0266.0083.0401.0117a.8793.8793 0 0 0 .072.0142c.0117.0019.0232.0045.0349.006a.835.835 0 0 0 .2157 0c.0117-.0015.0232-.0041.0348-.006a.9.9 0 0 0 .072-.0142c.0135-.0034.0267-.0077.04-.0117a.895.895 0 0 0 .0646-.0217.9134.9134 0 0 0 .1015-.047c.0078-.0042.016-.0072.0236-.0117l9.5986-5.5417a.8888.8888 0 0 0 .469-.7836V6.4779c0-.0071-.0012-.0142-.0014-.0213zM5.2543 6.0822l6.5367-3.774a.4182.4182 0 0 1 .4182 0l6.5366 3.774a.4182.4182 0 0 1 0 .7243l-6.5367 3.774a.4182.4182 0 0 1-.4182 0l-6.5366-3.774a.4182.4182 0 0 1 0-.7243zm5.6134 14.3449a.4172.4172 0 0 1-.626.3613L3.718 17.0218a.4173.4173 0 0 1-.2086-.3613V9.1279a.4172.4172 0 0 1 .6258-.3613l6.524 3.7666a.4172.4172 0 0 1 .2086.3614v7.5325zm9.623-3.7666a.4173.4173 0 0 1-.2086.3613l-6.5239 3.7666a.4172.4172 0 0 1-.6259-.3613v-7.5325c0-.149.0796-.2868.2087-.3614l6.5239-3.7666a.4172.4172 0 0 1 .6258.3613v7.5326z" }) + ] + } + ); +}); + +export { SiHackthebox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHal.cjs new file mode 100644 index 000000000..5aa539af1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B03532"; +const SiHal = React__namespace.forwardRef(function SiHal2({ title = "HAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.794 5.327c.48.485 1.118.75 1.797.755h.009a2.5 2.5 0 0 0 1.58-.553 12.106 12.106 0 0 0-3.548-3.615 2.555 2.555 0 0 0 .162 3.413zm-.647.71A7.056 7.056 0 0 1 16.058.624a11.977 11.977 0 0 0-2.64-.62 9.685 9.685 0 0 0 2.834 7.933 9.918 9.918 0 0 0 7.002 2.893h.036c.238 0 .476-.01.71-.027-.09-.92-.283-1.81-.566-2.66a7.269 7.269 0 0 1-5.287-2.106zm4.6 7.322a21.564 21.564 0 0 1-7.142-4.717 21.175 21.175 0 0 1-5.283-8.61 12.31 12.31 0 0 0-2.605.66 23.879 23.879 0 0 0 5.992 9.85 24.16 24.16 0 0 0 8.027 5.3c.49.198.988.383 1.487.549.323-.827.557-1.694.696-2.597-.39-.13-.786-.278-1.172-.435zm-1.316 6.145L4.54 2.493a12.037 12.037 0 0 0-1.913 1.882l16.907 17.029c.7-.562 1.334-1.2 1.896-1.9zm-10.974-5.885a24.16 24.16 0 0 0-8.027-5.3c-.57-.23-1.145-.436-1.725-.624a11.954 11.954 0 0 0-.67 2.6 21.564 21.564 0 0 1 8.53 5.224 21.239 21.239 0 0 1 5.216 8.405c.903-.135 1.77-.369 2.596-.692-.18-.553-.377-1.1-.602-1.644a23.767 23.767 0 0 0-5.318-7.969zm-2.542 2.606A9.91 9.91 0 0 0 0 13.372c.103.921.314 1.806.61 2.65.09-.004.18-.004.27-.004 1.865 0 3.729.705 5.144 2.111a7.056 7.056 0 0 1 2.097 5.044c0 .081-.004.167-.004.248.844.287 1.734.48 2.65.575.022-.27.036-.54.036-.814a9.688 9.688 0 0 0-2.888-6.957zm-2.538 2.61a2.55 2.55 0 0 0-3.437-.162 12.106 12.106 0 0 0 3.63 3.535c.35-.445.543-.993.548-1.568a2.523 2.523 0 0 0-.741-1.806z" }) + ] + } + ); +}); + +exports.default = SiHal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHal.d.ts new file mode 100644 index 000000000..8cfdc4457 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B03532"; +declare const SiHal: IconType; +export { SiHal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHal.mjs new file mode 100644 index 000000000..1c17fdebb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B03532"; +const SiHal = React.forwardRef(function SiHal2({ title = "HAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.794 5.327c.48.485 1.118.75 1.797.755h.009a2.5 2.5 0 0 0 1.58-.553 12.106 12.106 0 0 0-3.548-3.615 2.555 2.555 0 0 0 .162 3.413zm-.647.71A7.056 7.056 0 0 1 16.058.624a11.977 11.977 0 0 0-2.64-.62 9.685 9.685 0 0 0 2.834 7.933 9.918 9.918 0 0 0 7.002 2.893h.036c.238 0 .476-.01.71-.027-.09-.92-.283-1.81-.566-2.66a7.269 7.269 0 0 1-5.287-2.106zm4.6 7.322a21.564 21.564 0 0 1-7.142-4.717 21.175 21.175 0 0 1-5.283-8.61 12.31 12.31 0 0 0-2.605.66 23.879 23.879 0 0 0 5.992 9.85 24.16 24.16 0 0 0 8.027 5.3c.49.198.988.383 1.487.549.323-.827.557-1.694.696-2.597-.39-.13-.786-.278-1.172-.435zm-1.316 6.145L4.54 2.493a12.037 12.037 0 0 0-1.913 1.882l16.907 17.029c.7-.562 1.334-1.2 1.896-1.9zm-10.974-5.885a24.16 24.16 0 0 0-8.027-5.3c-.57-.23-1.145-.436-1.725-.624a11.954 11.954 0 0 0-.67 2.6 21.564 21.564 0 0 1 8.53 5.224 21.239 21.239 0 0 1 5.216 8.405c.903-.135 1.77-.369 2.596-.692-.18-.553-.377-1.1-.602-1.644a23.767 23.767 0 0 0-5.318-7.969zm-2.542 2.606A9.91 9.91 0 0 0 0 13.372c.103.921.314 1.806.61 2.65.09-.004.18-.004.27-.004 1.865 0 3.729.705 5.144 2.111a7.056 7.056 0 0 1 2.097 5.044c0 .081-.004.167-.004.248.844.287 1.734.48 2.65.575.022-.27.036-.54.036-.814a9.688 9.688 0 0 0-2.888-6.957zm-2.538 2.61a2.55 2.55 0 0 0-3.437-.162 12.106 12.106 0 0 0 3.63 3.535c.35-.445.543-.993.548-1.568a2.523 2.523 0 0 0-.741-1.806z" }) + ] + } + ); +}); + +export { SiHal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.cjs new file mode 100644 index 000000000..2d2af5c20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHandlebarsdotjs = React__namespace.forwardRef(function SiHandlebarsdotjs2({ title = "Handlebars.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.1 4.948a3.45 3.45 0 0 0-.398.014C6.32 5.15 5.373 6.375 4.802 6.9c-.572.525-1.656 1.763-2.376 1.545-.721-.217-.924-1.107-.67-1.381s.454-.225.613 0c.097.18.145.383.14.587a1.36 1.36 0 0 0 .438-.665.792.792 0 0 0-.443-1.017c-1.3-.659-2.139.514-2.26.787-.122.273-.336.707-.2 1.695.135.989.612 1.902 2.104 2.261a6.31 6.31 0 0 0 4.238-.495l4.41-1.84a5.408 5.408 0 0 1 .556-.101v9.864c0 .506.316.913.708.913.391 0 .707-.407.707-.913V8.29a5.408 5.408 0 0 1 .437.088l4.41 1.84a6.31 6.31 0 0 0 4.238.494c1.492-.36 1.969-1.272 2.105-2.26.135-.989-.08-1.423-.2-1.696-.122-.273-.962-1.446-2.261-.787a.792.792 0 0 0-.443 1.017c.076.26.229.492.437.665a1.19 1.19 0 0 1 .141-.587c.159-.225.359-.274.613 0s.051 1.164-.67 1.382c-.72.217-1.804-1.02-2.376-1.546-.571-.525-1.518-1.75-3.9-1.938A3.45 3.45 0 0 0 12 6.653a3.45 3.45 0 0 0-2.9-1.705zm12.39 2.703v.004l.006.002c-.002-.002-.004-.004-.006-.004zm-18.98 0c-.002.002-.004.004-.006.004l.006-.001V7.65z" }) + ] + } + ); +}); + +exports.default = SiHandlebarsdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.d.ts new file mode 100644 index 000000000..485e04f53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHandlebarsdotjs: IconType; +export { SiHandlebarsdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.mjs new file mode 100644 index 000000000..bdca1bf55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandlebarsdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHandlebarsdotjs = React.forwardRef(function SiHandlebarsdotjs2({ title = "Handlebars.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.1 4.948a3.45 3.45 0 0 0-.398.014C6.32 5.15 5.373 6.375 4.802 6.9c-.572.525-1.656 1.763-2.376 1.545-.721-.217-.924-1.107-.67-1.381s.454-.225.613 0c.097.18.145.383.14.587a1.36 1.36 0 0 0 .438-.665.792.792 0 0 0-.443-1.017c-1.3-.659-2.139.514-2.26.787-.122.273-.336.707-.2 1.695.135.989.612 1.902 2.104 2.261a6.31 6.31 0 0 0 4.238-.495l4.41-1.84a5.408 5.408 0 0 1 .556-.101v9.864c0 .506.316.913.708.913.391 0 .707-.407.707-.913V8.29a5.408 5.408 0 0 1 .437.088l4.41 1.84a6.31 6.31 0 0 0 4.238.494c1.492-.36 1.969-1.272 2.105-2.26.135-.989-.08-1.423-.2-1.696-.122-.273-.962-1.446-2.261-.787a.792.792 0 0 0-.443 1.017c.076.26.229.492.437.665a1.19 1.19 0 0 1 .141-.587c.159-.225.359-.274.613 0s.051 1.164-.67 1.382c-.72.217-1.804-1.02-2.376-1.546-.571-.525-1.518-1.75-3.9-1.938A3.45 3.45 0 0 0 12 6.653a3.45 3.45 0 0 0-2.9-1.705zm12.39 2.703v.004l.006.002c-.002-.002-.004-.004-.006-.004zm-18.98 0c-.002.002-.004.004-.006.004l.006-.001V7.65z" }) + ] + } + ); +}); + +export { SiHandlebarsdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.cjs new file mode 100644 index 000000000..eb10f7cd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E50010"; +const SiHandm = React__namespace.forwardRef(function SiHandm2({ title = "H&M", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.866 4.565c.871-.429 1.303-.372 1.313.061.012.565-.071 1.313-.131 1.857-.323 2.947-.864 5.356-.906 8.383 1.424-3.686 2.619-6.248 4.156-9.403.488-1.004.799-.818 1.2-.996 1.563-.695 1.622-.268 1.417.581-.758 3.15-2.695 13.068-2.992 14.595-.086.442-.566.255-.691.082-.556-.769-1.183-.781-1.112-1.293.348-2.546 1.603-8.934 1.93-10.439-1.669 3.42-3.398 7.694-4.286 10.118-.189.515-.531.477-.745.1-.3-.529-.883-.799-.979-1.424-.306-1.987.348-5.776.439-8.172-.908 2.618-2.433 7.701-3.101 9.997-.276.95-1.193.795-.949-.131 1.015-3.854 3.201-10.67 4.148-13.121.222-.576.805-.556 1.289-.795Zm-5.535-.474c.276.067.254.393.085.838-.499 1.314-1.19 3.04-1.981 5.076.497-.057.767-.076.767-.076.713-.088.846.269.645.648-.16.303-.353.101-1.02 1.096-.376.561-.99.709-1.332.784-.821 2.175-1.702 4.602-2.557 7.188-.125.377-.489.295-.598.142-.402-.562-.698-.58-1.01-1.034-.037-.074-.11-.173-.066-.354.229-.936.837-2.859 1.762-5.392-1.165.253-2.426.524-2.947.645-.624 1.651-1.234 3.308-1.811 4.944-.358 1.015-1.29.819-.963-.141.521-1.528 1.096-3.115 1.673-4.654-.646-.069-.864-.525-1.225-.906-.139-.147-.443-.126-.592-.332-.267-.371-.241-.536.377-.714.806-.233 1.617-.449 2.432-.649 1.044-2.694 1.987-5.006 2.49-6.239.388-.951 1.387-.862 1.008.075-.772 1.906-1.563 3.885-2.344 5.893.963-.217 1.931-.409 2.904-.576.713-1.831 1.462-3.648 2.247-5.449.055-.126.215-.304.381-.332.525-.09 1.379-.552 1.675-.481ZM9.543 16.426c.082-.05.163-.111.244-.178-.062-.183-.123-.366-.183-.55-.061.078-.12.157-.179.237-.349.479-.142.65.118.491Zm.465-2.275c.433-.489-.423-.693-.226.054.011.042.025.092.04.146.063-.065.125-.132.186-.2Zm.45 1.473c.429-.372.838-.003.414.624a6.955 6.955 0 0 1-.307.424c.045.128.091.255.14.381.219.562-.357.703-.542.237a7.29 7.29 0 0 1-.05-.129c-.35.31-.754.505-1.186.37-.711-.221-.892-1.222-.228-1.993.266-.309.466-.524.634-.695-.041-.133-.081-.267-.118-.401-.087-.312-.164-.675.148-1.046.586-.695 1.945-.078 1.257.992-.165.258-.359.501-.561.748.07.221.14.441.212.661.061-.06.123-.117.187-.173Z" }) + ] + } + ); +}); + +exports.default = SiHandm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.d.ts new file mode 100644 index 000000000..cdf8b2c2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E50010"; +declare const SiHandm: IconType; +export { SiHandm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.mjs new file mode 100644 index 000000000..96705c069 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E50010"; +const SiHandm = React.forwardRef(function SiHandm2({ title = "H&M", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.866 4.565c.871-.429 1.303-.372 1.313.061.012.565-.071 1.313-.131 1.857-.323 2.947-.864 5.356-.906 8.383 1.424-3.686 2.619-6.248 4.156-9.403.488-1.004.799-.818 1.2-.996 1.563-.695 1.622-.268 1.417.581-.758 3.15-2.695 13.068-2.992 14.595-.086.442-.566.255-.691.082-.556-.769-1.183-.781-1.112-1.293.348-2.546 1.603-8.934 1.93-10.439-1.669 3.42-3.398 7.694-4.286 10.118-.189.515-.531.477-.745.1-.3-.529-.883-.799-.979-1.424-.306-1.987.348-5.776.439-8.172-.908 2.618-2.433 7.701-3.101 9.997-.276.95-1.193.795-.949-.131 1.015-3.854 3.201-10.67 4.148-13.121.222-.576.805-.556 1.289-.795Zm-5.535-.474c.276.067.254.393.085.838-.499 1.314-1.19 3.04-1.981 5.076.497-.057.767-.076.767-.076.713-.088.846.269.645.648-.16.303-.353.101-1.02 1.096-.376.561-.99.709-1.332.784-.821 2.175-1.702 4.602-2.557 7.188-.125.377-.489.295-.598.142-.402-.562-.698-.58-1.01-1.034-.037-.074-.11-.173-.066-.354.229-.936.837-2.859 1.762-5.392-1.165.253-2.426.524-2.947.645-.624 1.651-1.234 3.308-1.811 4.944-.358 1.015-1.29.819-.963-.141.521-1.528 1.096-3.115 1.673-4.654-.646-.069-.864-.525-1.225-.906-.139-.147-.443-.126-.592-.332-.267-.371-.241-.536.377-.714.806-.233 1.617-.449 2.432-.649 1.044-2.694 1.987-5.006 2.49-6.239.388-.951 1.387-.862 1.008.075-.772 1.906-1.563 3.885-2.344 5.893.963-.217 1.931-.409 2.904-.576.713-1.831 1.462-3.648 2.247-5.449.055-.126.215-.304.381-.332.525-.09 1.379-.552 1.675-.481ZM9.543 16.426c.082-.05.163-.111.244-.178-.062-.183-.123-.366-.183-.55-.061.078-.12.157-.179.237-.349.479-.142.65.118.491Zm.465-2.275c.433-.489-.423-.693-.226.054.011.042.025.092.04.146.063-.065.125-.132.186-.2Zm.45 1.473c.429-.372.838-.003.414.624a6.955 6.955 0 0 1-.307.424c.045.128.091.255.14.381.219.562-.357.703-.542.237a7.29 7.29 0 0 1-.05-.129c-.35.31-.754.505-1.186.37-.711-.221-.892-1.222-.228-1.993.266-.309.466-.524.634-.695-.041-.133-.081-.267-.118-.401-.087-.312-.164-.675.148-1.046.586-.695 1.945-.078 1.257.992-.165.258-.359.501-.561.748.07.221.14.441.212.661.061-.06.123-.117.187-.173Z" }) + ] + } + ); +}); + +export { SiHandm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.cjs new file mode 100644 index 000000000..ac9b91dbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D3FB52"; +const SiHandshake = React__namespace.forwardRef(function SiHandshake2({ title = "Handshake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.728 0 16.49 24h-4.583l1.87-10.532-4.743 3.893L7.856 24H3.272L7.51 0h4.582L9.806 13.012l4.729-3.862L16.145 0h4.583z" }) + ] + } + ); +}); + +exports.default = SiHandshake; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.d.ts new file mode 100644 index 000000000..95e3b9124 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D3FB52"; +declare const SiHandshake: IconType; +export { SiHandshake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.mjs new file mode 100644 index 000000000..a9fc9669f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshake.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D3FB52"; +const SiHandshake = React.forwardRef(function SiHandshake2({ title = "Handshake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.728 0 16.49 24h-4.583l1.87-10.532-4.743 3.893L7.856 24H3.272L7.51 0h4.582L9.806 13.012l4.729-3.862L16.145 0h4.583z" }) + ] + } + ); +}); + +export { SiHandshake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.cjs new file mode 100644 index 000000000..cb9008bc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHandshakeProtocol = React__namespace.forwardRef(function SiHandshakeProtocol2({ title = "Handshake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.348 7.829l-1.491-2.65 2.889.001c.077 0 .167.051.21.12l1.533 2.529zm-5.344 16.046c-.07.125-.161.125-.19.125h-2.956l4.591-8.243a.442.442 0 0 0-.384-.657l-7.825.01-1.556-2.694h11.397c.248-.017.362-.158.393-.231l1.879-3.473h3.101zm-3.91-.314l-1.522-2.506c-.023-.037-.034-.128.014-.214l2.694-4.853 3.034-.004zM5.92 18.403l-1.508-2.68 1.52-2.848 1.524 2.64c-.474.891-1.213 2.283-1.536 2.888zm-3.668.417a.268.268 0 0 1-.207-.12L.51 16.17h3.141l1.491 2.65-2.891-.001zM8.996.126C9.066 0 9.156 0 9.186 0h2.968L7.551 8.243c-.11.167-.11.712.58.657l7.63-.01c.527.92 1.002 1.752 1.51 2.642H5.922a.465.465 0 0 0-.397.234l-1.879 3.522h-3.1L8.996.126zm3.917.323l1.515 2.496c.023.037.034.128-.015.214L11.72 8.012l-3.032.004zm5.166 5.145l1.509 2.68-1.538 2.844c-.517-.905-.997-1.745-1.529-2.673.328-.6 1.195-2.189 1.558-2.851Z" }) + ] + } + ); +}); + +exports.default = SiHandshakeProtocol; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.d.ts new file mode 100644 index 000000000..762ed2fea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHandshakeProtocol: IconType; +export { SiHandshakeProtocol as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.mjs new file mode 100644 index 000000000..723cf7731 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHandshakeProtocol.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHandshakeProtocol = React.forwardRef(function SiHandshakeProtocol2({ title = "Handshake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.348 7.829l-1.491-2.65 2.889.001c.077 0 .167.051.21.12l1.533 2.529zm-5.344 16.046c-.07.125-.161.125-.19.125h-2.956l4.591-8.243a.442.442 0 0 0-.384-.657l-7.825.01-1.556-2.694h11.397c.248-.017.362-.158.393-.231l1.879-3.473h3.101zm-3.91-.314l-1.522-2.506c-.023-.037-.034-.128.014-.214l2.694-4.853 3.034-.004zM5.92 18.403l-1.508-2.68 1.52-2.848 1.524 2.64c-.474.891-1.213 2.283-1.536 2.888zm-3.668.417a.268.268 0 0 1-.207-.12L.51 16.17h3.141l1.491 2.65-2.891-.001zM8.996.126C9.066 0 9.156 0 9.186 0h2.968L7.551 8.243c-.11.167-.11.712.58.657l7.63-.01c.527.92 1.002 1.752 1.51 2.642H5.922a.465.465 0 0 0-.397.234l-1.879 3.522h-3.1L8.996.126zm3.917.323l1.515 2.496c.023.037.034.128-.015.214L11.72 8.012l-3.032.004zm5.166 5.145l1.509 2.68-1.538 2.844c-.517-.905-.997-1.745-1.529-2.673.328-.6 1.195-2.189 1.558-2.851Z" }) + ] + } + ); +}); + +export { SiHandshakeProtocol as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.cjs new file mode 100644 index 000000000..3258742d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7C4EC4"; +const SiHappycow = React__namespace.forwardRef(function SiHappycow2({ title = "HappyCow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.6946 1.2292a.931.931 0 0 0-.029.0006 3.4494 3.4494 0 0 0-1.1187.2308c-.8395.3397-1.563 1.1383-1.9712 2.1918a5.638 5.638 0 0 0-.1226 3.6034c.1814-.2945.3958-.5765.6498-.8325.3935-.3964.8505-.7006 1.3677-.9165-.1726-.8106-.4935-3.0758 1.1872-3.648 0 0-1.3698.9094-.606 3.4504a5.1974 5.1974 0 0 1 .3929-.0911c-.3527-.9004-.4079-1.6602-.1586-2.264a2.4787 2.4787 0 0 1 .5042-.641c.2636-.2702.5118-.5262.4776-.7799a.331.331 0 0 0-.181-.2206.931.931 0 0 0-.3923-.0834zm9.7635 1.9014a.3464.3464 0 0 0-.255.1191c-.1389.1964-.0409.5329.0617.8881a2.5008 2.5008 0 0 1 .1457.815c-.0942.8995-.8157 1.6027-1.3324 2.0141.102.0844.2052.1766.3083.2777 2.0197-1.9376 1.1994-3.4313 1.1994-3.4313 1.3398 1.4344-.4167 3.5091-.7752 3.9042.5643.718.8876 1.5399 1.0493 2.383a5.6182 5.6182 0 0 0 1.6068-3.2458c.1368-1.1208-.1202-2.1622-.706-2.8582-.236-.2813-.8605-.8626-1.2863-.866a.3464.3464 0 0 0-.0163 0zm-8.1467 1.1462c.3144.1489.8394.4732.9783 1.0292l.0244.0982-.0993-.019c-1.081-.2051-1.6887.3068-1.9458.6124a2.0099 2.0099 0 0 1 .7776-.1467 2.857 2.857 0 0 1 1.112.2383l.1643.077-.1764.0443c-.427.1103-.705.3034-.8263.5858-.1423.331-.0408.7103.0453.932.2824-1.1682 1.8752-1.3743 1.8972-1.3765h.0156a2.7115 2.7115 0 0 1 2.1036 1.3711c.0287-.3552-.0242-1.0856-.8825-1.4l-.1467-.0594.1433-.0651c.6486-.2956 1.8478.4126 2.2747.6884-.4247-1.1208-2.0153-1.2434-2.0319-1.2445l-.1258-.0088.0806-.097c.2835-.343 1.0038-.2536 1.3888-.1753-.973-.7722-2.0506-.1644-2.0628-.1577l-.0971.0562v-.1103a1.0899 1.0899 0 0 0-.321-.7468.9718.9718 0 0 0-.353.6354l-.0067.151-.1047-.1103c-.695-.728-1.4485-.8119-1.8257-.802zm-.6225.9633c-1.463-.0086-2.6392.4217-3.4944 1.2836-1.4268 1.4398-1.6029 3.7256-1.6027 4.7753a2.828 2.828 0 0 1 .3386-.087c.6472-.1217 1.1947-.0872 1.6985.042.0232-.6248.2125-3.2638 1.7999-3.1928.058.0026.1177.009.1794.0192 2.519.4057 1.3093 4.2599 1.1622 4.7016.4608.209.965.389 1.5493.506.6285.125 1.2128.1391 1.7605.0955.0267-.5659.278-4.1197 2.4481-4.1024.157.0012.324.0215.5016.0633 1.6989.408.958 2.7914.7347 3.411.4124-.013.821.0335 1.2343.183.2592.0926.4983.232.7153.4085.2933-1.7684.2803-4.0385-1.1145-5.6869a4.493 4.493 0 0 0-2.0089-1.3834l-.0902-.0172c.2026.2001.3674.4519.4487.773l.042.1676-.1424-.0993c-.0143-.0099-1.3732-.9553-2.1366-.8273 1.0402.504.7667 1.668.7633 1.68l-.0463.2009-.0728-.1942a2.5581 2.5581 0 0 0-2.087-1.476 3.1637 3.1637 0 0 0-.867.2648c-.5781.278-.8958.685-.9455 1.2067l-.0187.2008-.1015-.1788c-.0154-.0276-.3762-.674-.1368-1.2333.1191-.2768.364-.481.729-.6067-.3474-.1191-1.1548-.3199-1.8332.0927l-.1987.1215.1104-.2064a1.8036 1.8036 0 0 1 .5162-.5593 2.0228 2.0228 0 0 1 .7237-.3213 7.941 7.941 0 0 0-.5585-.0248zm-7.4413.9891v.0011c-.5383 0-1.113.1236-1.5829.5516a2.096 2.096 0 0 0-.6619 1.434A1.4605 1.4605 0 0 0 .389 9.2992c.7215.759 2.2063.6266 3.1892.5395h.0506l.086-.0078c.3599-.0293.6392-.061.8687-.0935.112-.6948.3348-1.5469.7814-2.3303a5.7726 5.7726 0 0 1-.1148-.4066c-.2422-.106-.4808-.2062-.6384-.266a9.6523 9.6523 0 0 0-1.4539-.4082 4.9188 4.9188 0 0 0-.91-.0971zm.1463.6757c.1684-.002.3423.0235.5255.0558.2868.0474.8825.2106 1.1296.4974.2471.2869.9852 1.359-.7467 1.6271-.5648.0574-1.464.1623-1.8954-.2966-.3927-.4214-.2294-1.1672.1722-1.55.2689-.251.5343-.3304.8148-.3337zm6.127 1.8604c-.749.0232-1.3424.9045-1.3237 1.9856a2.722 2.722 0 0 0 .1157.7407c.4005.173.7882.3932 1.196.625.2097.1196.422.24.641.357.4504-.3247.7624-.9968.7489-1.7757C9.88 9.6169 9.27 8.7421 8.521 8.7653zm11.9064.7157a8.6915 8.6915 0 0 0-.434.0102h-.0516a30.9709 30.9709 0 0 0-.4109.0252 5.7517 5.7517 0 0 1-.6438.7368c.097.575.122 1.1572.1 1.7208.225.1047.5127.2286.9226.3863l.0872.0343c.8748.3409 2.3297.9078 3.2497.471a1.294 1.294 0 0 0 .6929-.8351 1.7462 1.7462 0 0 0-.2032-1.379c-.4986-.7721-1.4592-.9927-2.2413-1.103a8.6915 8.6915 0 0 0-1.0676-.0675zm-11.8376.232a.4115.4115 0 0 1 .0041 0 .4148.4148 0 0 1 .4115.4115.4115.4115 0 1 1-.4156-.4115zm6.8613.2204c-.6017.0266-1.2382.5722-1.5644 1.3914-.293.7359-.2376 1.4806.0808 1.9386.3548-.0642.6957-.1407 1.0212-.2146.3923-.089.7719-.1766 1.1452-.2331a2.7766 2.7766 0 0 0 .2602-.4981c.4016-1.0083.162-2.0386-.5362-2.3166a.9754.9754 0 0 0-.4068-.0676zm5.6444.1842c.167.0013.3206.0144.4281.0288.4975.0706.909.1634 1.1958.6223.278.4401.2207 1.1197-.2868 1.369-.546.2647-1.3691-.0761-1.8953-.2868-1.5786-.7082-.5624-1.4165-.238-1.5941.2026-.111.518-.1414.7962-.1392zm-5.7558.6431a.4093.4093 0 0 1 .4036.4018.4115.4115 0 1 1-.4215-.4016.4093.4093 0 0 1 .018-.0002zm-9.6234.5035c-.2406-.001-.4944.0215-.766.0726-1.6248.3089-2.7136 2.0551-2.6474 4.247a6.8095 6.8095 0 0 0 1.7848 4.3584c1.3083 1.4429 3.2333 2.365 5.5675 2.6673v.0011c8.1046 1.0414 9.789-3.2795 10.1134-4.633.5118-2.1335-.32-4.387-1.817-4.922-.9564-.3432-1.8753-.1302-2.9387.1169-1.0634.2471-2.2769.5284-3.723.2404-1.1804-.236-2.067-.7412-2.8492-1.1858-.89-.5073-1.682-.958-2.7244-.9629zm1.6614 2.0098c.3983-.01.88.3147 1.1589.7973.3066.5516.2206 1.11-.2008 1.2346-.4214.1246-1.0149-.2206-1.3238-.7722-.3088-.5516-.2206-1.1099.2008-1.2345a.6354.6354 0 0 1 .1649-.0252zm-2.563.9443c.5186.0072 1.132.3163 1.5598.9154.6222.8715.6232 2.0385.086 2.4213-.5372.3828-1.5697.009-2.1918-.8614-.6222-.8703-.6212-1.904-.0763-2.2967.1703-.1227.3865-.1819.6222-.1786zm10.7383.173c.3082.0067.5432.1574.6018.427.0937.4313-.2869.9927-.8616 1.273-.5748.2779-1.1197.1533-1.2135-.278-.0937-.4313.287-.993.8616-1.2731.2156-.1051.4268-.153.6117-.149zm2.083 1.6323c.2403.0082.451.0856.6048.2387.4688.4666.2392 1.4637-.5264 2.2204-.7556.7557-1.7516.9928-2.2204.5262-.4689-.4666-.2295-1.4637.5261-2.2205.4723-.473 1.0385-.7424 1.5112-.7642a1.331 1.331 0 0 1 .1047-.0006zM7.3172 17.7818a.128.128 0 0 1 .0015 0 .128.128 0 0 1 .0662.0202.139.139 0 0 1 .0474.182.9255.9255 0 0 1-.2161.2429 4.1918 4.1918 0 0 0 3.0807 2.1222c2.0797.291 3.6596-.662 4.1025-.9659a.9928.9928 0 0 1-.1487-.2596.1191.1191 0 0 1 .086-.1622.149.149 0 0 1 .1721.0862.7181.7181 0 0 0 .4788.43.1445.1445 0 0 1 .1103.1534.1478.1478 0 0 1-.149.096H14.93a.9928.9928 0 0 1-.3378-.1591c-.4375.3218-2.1112 1.4116-4.315 1.0593-2.1977-.3512-3.0876-1.8351-3.3019-2.2633a.9255.9255 0 0 1-.3152.0614h-.0188l-.0045-.0043a.1269.1269 0 0 1-.1103-.1336.118.118 0 0 1 .1248-.1312.6453.6453 0 0 0 .5515-.3068.128.128 0 0 1 .1144-.0676z" }) + ] + } + ); +}); + +exports.default = SiHappycow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.d.ts new file mode 100644 index 000000000..e537639cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7C4EC4"; +declare const SiHappycow: IconType; +export { SiHappycow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.mjs new file mode 100644 index 000000000..168af53d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHappycow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7C4EC4"; +const SiHappycow = React.forwardRef(function SiHappycow2({ title = "HappyCow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.6946 1.2292a.931.931 0 0 0-.029.0006 3.4494 3.4494 0 0 0-1.1187.2308c-.8395.3397-1.563 1.1383-1.9712 2.1918a5.638 5.638 0 0 0-.1226 3.6034c.1814-.2945.3958-.5765.6498-.8325.3935-.3964.8505-.7006 1.3677-.9165-.1726-.8106-.4935-3.0758 1.1872-3.648 0 0-1.3698.9094-.606 3.4504a5.1974 5.1974 0 0 1 .3929-.0911c-.3527-.9004-.4079-1.6602-.1586-2.264a2.4787 2.4787 0 0 1 .5042-.641c.2636-.2702.5118-.5262.4776-.7799a.331.331 0 0 0-.181-.2206.931.931 0 0 0-.3923-.0834zm9.7635 1.9014a.3464.3464 0 0 0-.255.1191c-.1389.1964-.0409.5329.0617.8881a2.5008 2.5008 0 0 1 .1457.815c-.0942.8995-.8157 1.6027-1.3324 2.0141.102.0844.2052.1766.3083.2777 2.0197-1.9376 1.1994-3.4313 1.1994-3.4313 1.3398 1.4344-.4167 3.5091-.7752 3.9042.5643.718.8876 1.5399 1.0493 2.383a5.6182 5.6182 0 0 0 1.6068-3.2458c.1368-1.1208-.1202-2.1622-.706-2.8582-.236-.2813-.8605-.8626-1.2863-.866a.3464.3464 0 0 0-.0163 0zm-8.1467 1.1462c.3144.1489.8394.4732.9783 1.0292l.0244.0982-.0993-.019c-1.081-.2051-1.6887.3068-1.9458.6124a2.0099 2.0099 0 0 1 .7776-.1467 2.857 2.857 0 0 1 1.112.2383l.1643.077-.1764.0443c-.427.1103-.705.3034-.8263.5858-.1423.331-.0408.7103.0453.932.2824-1.1682 1.8752-1.3743 1.8972-1.3765h.0156a2.7115 2.7115 0 0 1 2.1036 1.3711c.0287-.3552-.0242-1.0856-.8825-1.4l-.1467-.0594.1433-.0651c.6486-.2956 1.8478.4126 2.2747.6884-.4247-1.1208-2.0153-1.2434-2.0319-1.2445l-.1258-.0088.0806-.097c.2835-.343 1.0038-.2536 1.3888-.1753-.973-.7722-2.0506-.1644-2.0628-.1577l-.0971.0562v-.1103a1.0899 1.0899 0 0 0-.321-.7468.9718.9718 0 0 0-.353.6354l-.0067.151-.1047-.1103c-.695-.728-1.4485-.8119-1.8257-.802zm-.6225.9633c-1.463-.0086-2.6392.4217-3.4944 1.2836-1.4268 1.4398-1.6029 3.7256-1.6027 4.7753a2.828 2.828 0 0 1 .3386-.087c.6472-.1217 1.1947-.0872 1.6985.042.0232-.6248.2125-3.2638 1.7999-3.1928.058.0026.1177.009.1794.0192 2.519.4057 1.3093 4.2599 1.1622 4.7016.4608.209.965.389 1.5493.506.6285.125 1.2128.1391 1.7605.0955.0267-.5659.278-4.1197 2.4481-4.1024.157.0012.324.0215.5016.0633 1.6989.408.958 2.7914.7347 3.411.4124-.013.821.0335 1.2343.183.2592.0926.4983.232.7153.4085.2933-1.7684.2803-4.0385-1.1145-5.6869a4.493 4.493 0 0 0-2.0089-1.3834l-.0902-.0172c.2026.2001.3674.4519.4487.773l.042.1676-.1424-.0993c-.0143-.0099-1.3732-.9553-2.1366-.8273 1.0402.504.7667 1.668.7633 1.68l-.0463.2009-.0728-.1942a2.5581 2.5581 0 0 0-2.087-1.476 3.1637 3.1637 0 0 0-.867.2648c-.5781.278-.8958.685-.9455 1.2067l-.0187.2008-.1015-.1788c-.0154-.0276-.3762-.674-.1368-1.2333.1191-.2768.364-.481.729-.6067-.3474-.1191-1.1548-.3199-1.8332.0927l-.1987.1215.1104-.2064a1.8036 1.8036 0 0 1 .5162-.5593 2.0228 2.0228 0 0 1 .7237-.3213 7.941 7.941 0 0 0-.5585-.0248zm-7.4413.9891v.0011c-.5383 0-1.113.1236-1.5829.5516a2.096 2.096 0 0 0-.6619 1.434A1.4605 1.4605 0 0 0 .389 9.2992c.7215.759 2.2063.6266 3.1892.5395h.0506l.086-.0078c.3599-.0293.6392-.061.8687-.0935.112-.6948.3348-1.5469.7814-2.3303a5.7726 5.7726 0 0 1-.1148-.4066c-.2422-.106-.4808-.2062-.6384-.266a9.6523 9.6523 0 0 0-1.4539-.4082 4.9188 4.9188 0 0 0-.91-.0971zm.1463.6757c.1684-.002.3423.0235.5255.0558.2868.0474.8825.2106 1.1296.4974.2471.2869.9852 1.359-.7467 1.6271-.5648.0574-1.464.1623-1.8954-.2966-.3927-.4214-.2294-1.1672.1722-1.55.2689-.251.5343-.3304.8148-.3337zm6.127 1.8604c-.749.0232-1.3424.9045-1.3237 1.9856a2.722 2.722 0 0 0 .1157.7407c.4005.173.7882.3932 1.196.625.2097.1196.422.24.641.357.4504-.3247.7624-.9968.7489-1.7757C9.88 9.6169 9.27 8.7421 8.521 8.7653zm11.9064.7157a8.6915 8.6915 0 0 0-.434.0102h-.0516a30.9709 30.9709 0 0 0-.4109.0252 5.7517 5.7517 0 0 1-.6438.7368c.097.575.122 1.1572.1 1.7208.225.1047.5127.2286.9226.3863l.0872.0343c.8748.3409 2.3297.9078 3.2497.471a1.294 1.294 0 0 0 .6929-.8351 1.7462 1.7462 0 0 0-.2032-1.379c-.4986-.7721-1.4592-.9927-2.2413-1.103a8.6915 8.6915 0 0 0-1.0676-.0675zm-11.8376.232a.4115.4115 0 0 1 .0041 0 .4148.4148 0 0 1 .4115.4115.4115.4115 0 1 1-.4156-.4115zm6.8613.2204c-.6017.0266-1.2382.5722-1.5644 1.3914-.293.7359-.2376 1.4806.0808 1.9386.3548-.0642.6957-.1407 1.0212-.2146.3923-.089.7719-.1766 1.1452-.2331a2.7766 2.7766 0 0 0 .2602-.4981c.4016-1.0083.162-2.0386-.5362-2.3166a.9754.9754 0 0 0-.4068-.0676zm5.6444.1842c.167.0013.3206.0144.4281.0288.4975.0706.909.1634 1.1958.6223.278.4401.2207 1.1197-.2868 1.369-.546.2647-1.3691-.0761-1.8953-.2868-1.5786-.7082-.5624-1.4165-.238-1.5941.2026-.111.518-.1414.7962-.1392zm-5.7558.6431a.4093.4093 0 0 1 .4036.4018.4115.4115 0 1 1-.4215-.4016.4093.4093 0 0 1 .018-.0002zm-9.6234.5035c-.2406-.001-.4944.0215-.766.0726-1.6248.3089-2.7136 2.0551-2.6474 4.247a6.8095 6.8095 0 0 0 1.7848 4.3584c1.3083 1.4429 3.2333 2.365 5.5675 2.6673v.0011c8.1046 1.0414 9.789-3.2795 10.1134-4.633.5118-2.1335-.32-4.387-1.817-4.922-.9564-.3432-1.8753-.1302-2.9387.1169-1.0634.2471-2.2769.5284-3.723.2404-1.1804-.236-2.067-.7412-2.8492-1.1858-.89-.5073-1.682-.958-2.7244-.9629zm1.6614 2.0098c.3983-.01.88.3147 1.1589.7973.3066.5516.2206 1.11-.2008 1.2346-.4214.1246-1.0149-.2206-1.3238-.7722-.3088-.5516-.2206-1.1099.2008-1.2345a.6354.6354 0 0 1 .1649-.0252zm-2.563.9443c.5186.0072 1.132.3163 1.5598.9154.6222.8715.6232 2.0385.086 2.4213-.5372.3828-1.5697.009-2.1918-.8614-.6222-.8703-.6212-1.904-.0763-2.2967.1703-.1227.3865-.1819.6222-.1786zm10.7383.173c.3082.0067.5432.1574.6018.427.0937.4313-.2869.9927-.8616 1.273-.5748.2779-1.1197.1533-1.2135-.278-.0937-.4313.287-.993.8616-1.2731.2156-.1051.4268-.153.6117-.149zm2.083 1.6323c.2403.0082.451.0856.6048.2387.4688.4666.2392 1.4637-.5264 2.2204-.7556.7557-1.7516.9928-2.2204.5262-.4689-.4666-.2295-1.4637.5261-2.2205.4723-.473 1.0385-.7424 1.5112-.7642a1.331 1.331 0 0 1 .1047-.0006zM7.3172 17.7818a.128.128 0 0 1 .0015 0 .128.128 0 0 1 .0662.0202.139.139 0 0 1 .0474.182.9255.9255 0 0 1-.2161.2429 4.1918 4.1918 0 0 0 3.0807 2.1222c2.0797.291 3.6596-.662 4.1025-.9659a.9928.9928 0 0 1-.1487-.2596.1191.1191 0 0 1 .086-.1622.149.149 0 0 1 .1721.0862.7181.7181 0 0 0 .4788.43.1445.1445 0 0 1 .1103.1534.1478.1478 0 0 1-.149.096H14.93a.9928.9928 0 0 1-.3378-.1591c-.4375.3218-2.1112 1.4116-4.315 1.0593-2.1977-.3512-3.0876-1.8351-3.3019-2.2633a.9255.9255 0 0 1-.3152.0614h-.0188l-.0045-.0043a.1269.1269 0 0 1-.1103-.1336.118.118 0 0 1 .1248-.1312.6453.6453 0 0 0 .5515-.3068.128.128 0 0 1 .1144-.0676z" }) + ] + } + ); +}); + +export { SiHappycow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.cjs new file mode 100644 index 000000000..0e1329599 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#60B932"; +const SiHarbor = React__namespace.forwardRef(function SiHarbor2({ title = "Harbor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.006 15.751 4.256 1.876.066.805-4.388-1.934.066-.747zm.304-3.435h-.605V11.21h.381V8.95h-.381v-.649l2.118-2.073v-.146c0-.11.09-.2.2-.2.11 0 .2.09.2.2v.146l2.12 2.073v.65h-.382v2.259h.381v1.106h-.514l.27 3.313L7.17 13.9l.14-1.583zm.39-1.106h.628v-.965c0-.383.313-.696.695-.696s.696.313.696.696v.965h.628V8.95H7.7v2.26zM6.89 17.05l-.066.747 4.618 2.035-.066-.805-4.486-1.977zm.23-2.6-.066.747 4.158 1.832-.065-.805-4.026-1.774zM24 12c0 6.617-5.383 12-12 12S0 18.617 0 12 5.383 0 12 0s12 5.383 12 12zm-2.43-.715a9.682 9.682 0 0 0-.223-1.523l-9.751.332 8.801-2.828-.019-.037A9.802 9.802 0 0 0 19.23 5.59l-7.786 4.03 5.712-5.941a9.675 9.675 0 0 0-5.14-1.474c-5.371 0-9.74 4.369-9.74 9.74 0 3.38 1.73 6.362 4.35 8.11l.151-1.704 4.715 2.078.102 1.246c.14.006.28.01.422.01 4.646 0 8.54-3.27 9.507-7.63l-10.08-3.497 10.128.727" }) + ] + } + ); +}); + +exports.default = SiHarbor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.d.ts new file mode 100644 index 000000000..c4def5828 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#60B932"; +declare const SiHarbor: IconType; +export { SiHarbor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.mjs new file mode 100644 index 000000000..d8dbfd74c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHarbor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#60B932"; +const SiHarbor = React.forwardRef(function SiHarbor2({ title = "Harbor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.006 15.751 4.256 1.876.066.805-4.388-1.934.066-.747zm.304-3.435h-.605V11.21h.381V8.95h-.381v-.649l2.118-2.073v-.146c0-.11.09-.2.2-.2.11 0 .2.09.2.2v.146l2.12 2.073v.65h-.382v2.259h.381v1.106h-.514l.27 3.313L7.17 13.9l.14-1.583zm.39-1.106h.628v-.965c0-.383.313-.696.695-.696s.696.313.696.696v.965h.628V8.95H7.7v2.26zM6.89 17.05l-.066.747 4.618 2.035-.066-.805-4.486-1.977zm.23-2.6-.066.747 4.158 1.832-.065-.805-4.026-1.774zM24 12c0 6.617-5.383 12-12 12S0 18.617 0 12 5.383 0 12 0s12 5.383 12 12zm-2.43-.715a9.682 9.682 0 0 0-.223-1.523l-9.751.332 8.801-2.828-.019-.037A9.802 9.802 0 0 0 19.23 5.59l-7.786 4.03 5.712-5.941a9.675 9.675 0 0 0-5.14-1.474c-5.371 0-9.74 4.369-9.74 9.74 0 3.38 1.73 6.362 4.35 8.11l.151-1.704 4.715 2.078.102 1.246c.14.006.28.01.422.01 4.646 0 8.54-3.27 9.507-7.63l-10.08-3.497 10.128.727" }) + ] + } + ); +}); + +export { SiHarbor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.cjs new file mode 100644 index 000000000..d4b09b035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHarmonyos = React__namespace.forwardRef(function SiHarmonyos2({ title = "HarmonyOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.861 0H3.59v3.548h3.861V0H9.19v8.883H7.458V5.136H3.59v3.746H1.858Zm8.248 8.883ZM13.854 0h1.706l2.809 4.7h.1L21.278 0h1.719v8.883h-1.719v-4.38l.1-1.489h-.1l-2.334 3.983h-1.039l-2.347-3.983h-.1l.1 1.489v4.38h-1.706Zm4.702 21.648a4.082 4.082 0 0 1-1.154-.161 3.417 3.417 0 0 1-1.01-.484 3.5 3.5 0 0 1-.8-.782 3.817 3.817 0 0 1-.538-1.092l1.666-.62a2.411 2.411 0 0 0 .643 1.116 1.683 1.683 0 0 0 1.207.434 2.173 2.173 0 0 0 .524-.062 1.749 1.749 0 0 0 .459-.2 1.02 1.02 0 0 0 .328-.335.88.88 0 0 0 .118-.459 1.052 1.052 0 0 0-.092-.447 1.031 1.031 0 0 0-.315-.373 2.538 2.538 0 0 0-.564-.335 8.135 8.135 0 0 0-.852-.335l-.577-.2a4.753 4.753 0 0 1-.774-.335 3.44 3.44 0 0 1-.7-.509 2.662 2.662 0 0 1-.525-.695 2.093 2.093 0 0 1-.2-.918 2.248 2.248 0 0 1 .21-.968 2.433 2.433 0 0 1 .616-.794 2.87 2.87 0 0 1 .957-.533 3.726 3.726 0 0 1 1.246-.2 3.57 3.57 0 0 1 1.22.186 2.783 2.783 0 0 1 .879.459 2.468 2.468 0 0 1 .59.608 2.9 2.9 0 0 1 .328.633l-1.56.62a1.55 1.55 0 0 0-.485-.67 1.387 1.387 0 0 0-.944-.3 1.655 1.655 0 0 0-.957.261.754.754 0 0 0-.38.658.843.843 0 0 0 .367.682 4.232 4.232 0 0 0 1.167.534l.59.186a6.271 6.271 0 0 1 1.023.434 2.948 2.948 0 0 1 .8.57 2.191 2.191 0 0 1 .511.769 2.44 2.44 0 0 1 .183.98 2.317 2.317 0 0 1-.3 1.2 2.559 2.559 0 0 1-.747.819 3.361 3.361 0 0 1-1.036.484 4.184 4.184 0 0 1-1.128.161Zm-13.028 0a4.441 4.441 0 0 1-3.23-1.34 4.757 4.757 0 0 1-.956-1.476 4.912 4.912 0 0 1-.339-1.824 4.813 4.813 0 0 1 .339-1.811 4.569 4.569 0 0 1 .956-1.477 4.38 4.38 0 0 1 1.427-.992 4.5 4.5 0 0 1 1.8-.36 4.417 4.417 0 0 1 1.79.36 4.343 4.343 0 0 1 1.44.992 4.418 4.418 0 0 1 .944 1.477 4.67 4.67 0 0 1 .351 1.811 4.765 4.765 0 0 1-.351 1.824 4.589 4.589 0 0 1-.944 1.476 4.495 4.495 0 0 1-3.23 1.34Zm0-1.588a2.822 2.822 0 0 0 1.125-.223 2.761 2.761 0 0 0 .92-.621 2.723 2.723 0 0 0 .617-.955 3.321 3.321 0 0 0 .23-1.253 3.227 3.227 0 0 0-.23-1.24 2.7 2.7 0 0 0-.617-.968 2.759 2.759 0 0 0-.92-.62 2.821 2.821 0 0 0-1.125-.223 2.856 2.856 0 0 0-2.057.844 2.946 2.946 0 0 0-.617.968 3.388 3.388 0 0 0-.218 1.24 3.488 3.488 0 0 0 .218 1.253 2.972 2.972 0 0 0 .617.955 2.856 2.856 0 0 0 2.057.843Zm4.972 1.389Zm-8.269 1.039h6.5V24h-6.5Z" }) + ] + } + ); +}); + +exports.default = SiHarmonyos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.d.ts new file mode 100644 index 000000000..c8169f9e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHarmonyos: IconType; +export { SiHarmonyos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.mjs new file mode 100644 index 000000000..7ea667462 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHarmonyos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHarmonyos = React.forwardRef(function SiHarmonyos2({ title = "HarmonyOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.861 0H3.59v3.548h3.861V0H9.19v8.883H7.458V5.136H3.59v3.746H1.858Zm8.248 8.883ZM13.854 0h1.706l2.809 4.7h.1L21.278 0h1.719v8.883h-1.719v-4.38l.1-1.489h-.1l-2.334 3.983h-1.039l-2.347-3.983h-.1l.1 1.489v4.38h-1.706Zm4.702 21.648a4.082 4.082 0 0 1-1.154-.161 3.417 3.417 0 0 1-1.01-.484 3.5 3.5 0 0 1-.8-.782 3.817 3.817 0 0 1-.538-1.092l1.666-.62a2.411 2.411 0 0 0 .643 1.116 1.683 1.683 0 0 0 1.207.434 2.173 2.173 0 0 0 .524-.062 1.749 1.749 0 0 0 .459-.2 1.02 1.02 0 0 0 .328-.335.88.88 0 0 0 .118-.459 1.052 1.052 0 0 0-.092-.447 1.031 1.031 0 0 0-.315-.373 2.538 2.538 0 0 0-.564-.335 8.135 8.135 0 0 0-.852-.335l-.577-.2a4.753 4.753 0 0 1-.774-.335 3.44 3.44 0 0 1-.7-.509 2.662 2.662 0 0 1-.525-.695 2.093 2.093 0 0 1-.2-.918 2.248 2.248 0 0 1 .21-.968 2.433 2.433 0 0 1 .616-.794 2.87 2.87 0 0 1 .957-.533 3.726 3.726 0 0 1 1.246-.2 3.57 3.57 0 0 1 1.22.186 2.783 2.783 0 0 1 .879.459 2.468 2.468 0 0 1 .59.608 2.9 2.9 0 0 1 .328.633l-1.56.62a1.55 1.55 0 0 0-.485-.67 1.387 1.387 0 0 0-.944-.3 1.655 1.655 0 0 0-.957.261.754.754 0 0 0-.38.658.843.843 0 0 0 .367.682 4.232 4.232 0 0 0 1.167.534l.59.186a6.271 6.271 0 0 1 1.023.434 2.948 2.948 0 0 1 .8.57 2.191 2.191 0 0 1 .511.769 2.44 2.44 0 0 1 .183.98 2.317 2.317 0 0 1-.3 1.2 2.559 2.559 0 0 1-.747.819 3.361 3.361 0 0 1-1.036.484 4.184 4.184 0 0 1-1.128.161Zm-13.028 0a4.441 4.441 0 0 1-3.23-1.34 4.757 4.757 0 0 1-.956-1.476 4.912 4.912 0 0 1-.339-1.824 4.813 4.813 0 0 1 .339-1.811 4.569 4.569 0 0 1 .956-1.477 4.38 4.38 0 0 1 1.427-.992 4.5 4.5 0 0 1 1.8-.36 4.417 4.417 0 0 1 1.79.36 4.343 4.343 0 0 1 1.44.992 4.418 4.418 0 0 1 .944 1.477 4.67 4.67 0 0 1 .351 1.811 4.765 4.765 0 0 1-.351 1.824 4.589 4.589 0 0 1-.944 1.476 4.495 4.495 0 0 1-3.23 1.34Zm0-1.588a2.822 2.822 0 0 0 1.125-.223 2.761 2.761 0 0 0 .92-.621 2.723 2.723 0 0 0 .617-.955 3.321 3.321 0 0 0 .23-1.253 3.227 3.227 0 0 0-.23-1.24 2.7 2.7 0 0 0-.617-.968 2.759 2.759 0 0 0-.92-.62 2.821 2.821 0 0 0-1.125-.223 2.856 2.856 0 0 0-2.057.844 2.946 2.946 0 0 0-.617.968 3.388 3.388 0 0 0-.218 1.24 3.488 3.488 0 0 0 .218 1.253 2.972 2.972 0 0 0 .617.955 2.856 2.856 0 0 0 2.057.843Zm4.972 1.389Zm-8.269 1.039h6.5V24h-6.5Z" }) + ] + } + ); +}); + +export { SiHarmonyos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.cjs new file mode 100644 index 000000000..495377cdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiHashcat = React__namespace.forwardRef(function SiHashcat2({ title = "Hashcat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.977 0c-.77.003-1.534.136-2.01.4C9.07.875 7.935.98 6.51.663L5.453.453l.818.765c.977.924 1.664 2.428 1.664 3.67 0 1.029 1.161 2.507 2.375 3.009.792.316.819.396.66 1.557-.791 5.887-1.504 8.422-2.771 9.873-1.083 1.268-1.32 1.875-1.32 3.326V24h10.295v-1.347c0-1.425-.237-2.032-1.267-3.273-1.293-1.557-2.217-4.752-2.64-9.16-.211-2.006-.185-2.086.396-2.218.924-.237 2.402-2.059 2.587-3.194.106-.554.238-1.346.317-1.742.053-.423.554-1.162 1.056-1.663l.924-.925-1.03.185c-1.372.29-2.587.185-3.51-.29-.49-.25-1.261-.376-2.03-.373M9.039 5.257h.004c.238 0 2.06 1.082 2.06 1.214 0 .317-.872.026-1.505-.554-.39-.338-.652-.65-.56-.66m5.976.058c.097-.003-.097.195-.56.602-.396.37-.924.66-1.161.66-.528 0-.37-.159.765-.792.557-.31.87-.468.956-.47" }) + ] + } + ); +}); + +exports.default = SiHashcat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.d.ts new file mode 100644 index 000000000..dbe4c60b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiHashcat: IconType; +export { SiHashcat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.mjs new file mode 100644 index 000000000..00374705d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashcat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiHashcat = React.forwardRef(function SiHashcat2({ title = "Hashcat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.977 0c-.77.003-1.534.136-2.01.4C9.07.875 7.935.98 6.51.663L5.453.453l.818.765c.977.924 1.664 2.428 1.664 3.67 0 1.029 1.161 2.507 2.375 3.009.792.316.819.396.66 1.557-.791 5.887-1.504 8.422-2.771 9.873-1.083 1.268-1.32 1.875-1.32 3.326V24h10.295v-1.347c0-1.425-.237-2.032-1.267-3.273-1.293-1.557-2.217-4.752-2.64-9.16-.211-2.006-.185-2.086.396-2.218.924-.237 2.402-2.059 2.587-3.194.106-.554.238-1.346.317-1.742.053-.423.554-1.162 1.056-1.663l.924-.925-1.03.185c-1.372.29-2.587.185-3.51-.29-.49-.25-1.261-.376-2.03-.373M9.039 5.257h.004c.238 0 2.06 1.082 2.06 1.214 0 .317-.872.026-1.505-.554-.39-.338-.652-.65-.56-.66m5.976.058c.097-.003-.097.195-.56.602-.396.37-.924.66-1.161.66-.528 0-.37-.159.765-.792.557-.31.87-.468.956-.47" }) + ] + } + ); +}); + +export { SiHashcat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.cjs new file mode 100644 index 000000000..b13a45154 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHashicorp = React__namespace.forwardRef(function SiHashicorp2({ title = "HashiCorp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.114 4.094 4.215 7.5v13.09L.666 18.542V5.45L10.114 0v4.094zm3.772 13.37 3.549-2.049V2.05L13.885 0v10.426h-3.77v-3.89L6.562 8.585v13.357l3.551 2.054V13.599h3.772v3.865zM19.783 3.41V16.5l-5.897 3.405V24l9.448-5.45V5.458l-3.551-2.05z" }) + ] + } + ); +}); + +exports.default = SiHashicorp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.d.ts new file mode 100644 index 000000000..7e7ff8c0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHashicorp: IconType; +export { SiHashicorp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.mjs new file mode 100644 index 000000000..1184b8a3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashicorp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHashicorp = React.forwardRef(function SiHashicorp2({ title = "HashiCorp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.114 4.094 4.215 7.5v13.09L.666 18.542V5.45L10.114 0v4.094zm3.772 13.37 3.549-2.049V2.05L13.885 0v10.426h-3.77v-3.89L6.562 8.585v13.357l3.551 2.054V13.599h3.772v3.865zM19.783 3.41V16.5l-5.897 3.405V24l9.448-5.45V5.458l-3.551-2.05z" }) + ] + } + ); +}); + +export { SiHashicorp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.cjs new file mode 100644 index 000000000..e10dda49d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2962FF"; +const SiHashnode = React__namespace.forwardRef(function SiHashnode2({ title = "Hashnode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.351 8.019l-6.37-6.37a5.63 5.63 0 0 0-7.962 0l-6.37 6.37a5.63 5.63 0 0 0 0 7.962l6.37 6.37a5.63 5.63 0 0 0 7.962 0l6.37-6.37a5.63 5.63 0 0 0 0-7.962zM12 15.953a3.953 3.953 0 1 1 0-7.906 3.953 3.953 0 0 1 0 7.906z" }) + ] + } + ); +}); + +exports.default = SiHashnode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.d.ts new file mode 100644 index 000000000..8acaf1cc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2962FF"; +declare const SiHashnode: IconType; +export { SiHashnode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.mjs new file mode 100644 index 000000000..1733c892d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHashnode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2962FF"; +const SiHashnode = React.forwardRef(function SiHashnode2({ title = "Hashnode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.351 8.019l-6.37-6.37a5.63 5.63 0 0 0-7.962 0l-6.37 6.37a5.63 5.63 0 0 0 0 7.962l6.37 6.37a5.63 5.63 0 0 0 7.962 0l6.37-6.37a5.63 5.63 0 0 0 0-7.962zM12 15.953a3.953 3.953 0 1 1 0-7.906 3.953 3.953 0 0 1 0 7.906z" }) + ] + } + ); +}); + +export { SiHashnode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.cjs new file mode 100644 index 000000000..ee552a7e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5D4F85"; +const SiHaskell = React__namespace.forwardRef(function SiHaskell2({ title = "Haskell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.535L5.647 12 0 20.465h4.235L9.883 12 4.235 3.535zm5.647 0L11.294 12l-5.647 8.465h4.235l3.53-5.29 3.53 5.29h4.234L9.883 3.535zm8.941 4.938l1.883 2.822H24V8.473zm2.824 4.232l1.882 2.822H24v-2.822z" }) + ] + } + ); +}); + +exports.default = SiHaskell; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.d.ts new file mode 100644 index 000000000..982f0dc34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5D4F85"; +declare const SiHaskell: IconType; +export { SiHaskell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.mjs new file mode 100644 index 000000000..9182bcc2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaskell.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5D4F85"; +const SiHaskell = React.forwardRef(function SiHaskell2({ title = "Haskell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.535L5.647 12 0 20.465h4.235L9.883 12 4.235 3.535zm5.647 0L11.294 12l-5.647 8.465h4.235l3.53-5.29 3.53 5.29h4.234L9.883 3.535zm8.941 4.938l1.883 2.822H24V8.473zm2.824 4.232l1.882 2.822H24v-2.822z" }) + ] + } + ); +}); + +export { SiHaskell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.cjs new file mode 100644 index 000000000..45166f131 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1EB4D4"; +const SiHasura = React__namespace.forwardRef(function SiHasura2({ title = "Hasura", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.558 8.172c.707-2.152.282-6.447-1.09-8.032a.419.419 0 0 0-.664.051l-1.69 2.59a1.322 1.322 0 0 1-1.737.276C16.544 1.885 14.354 1.204 12 1.204s-4.544.68-6.378 1.853a1.326 1.326 0 0 1-1.736-.276L2.196.191A.42.42 0 0 0 1.532.14C.16 1.728-.265 6.023.442 8.172c.236.716.3 1.472.16 2.207-.137.73-.276 1.61-.276 2.223C.326 18.898 5.553 24 11.997 24c6.447 0 11.671-5.105 11.671-11.398 0-.613-.138-1.494-.276-2.223a4.468 4.468 0 0 1 .166-2.207zm-11.56 13.284c-4.984 0-9.036-3.96-9.036-8.827 0-.16.005-.316.014-.473.18-3.316 2.243-6.15 5.16-7.5 1.17-.546 2.481-.848 3.864-.848s2.69.302 3.864.85c2.917 1.351 4.98 4.187 5.16 7.501.008.157.014.316.014.473-.003 4.864-4.057 8.824-9.04 8.824zm3.915-5.43-2.31-3.91-1.98-3.26a.26.26 0 0 0-.223-.125H9.508a.26.26 0 0 0-.227.13.246.246 0 0 0 .003.254l1.895 3.109-2.542 3.787a.25.25 0 0 0-.011.259.26.26 0 0 0 .23.132h1.905a.259.259 0 0 0 .218-.116l1.375-2.096 1.233 2.088a.263.263 0 0 0 .224.127h1.878c.094 0 .18-.049.224-.127a.241.241 0 0 0 0-.251z" }) + ] + } + ); +}); + +exports.default = SiHasura; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.d.ts new file mode 100644 index 000000000..7d49f6f1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1EB4D4"; +declare const SiHasura: IconType; +export { SiHasura as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.mjs new file mode 100644 index 000000000..595dd9c50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHasura.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1EB4D4"; +const SiHasura = React.forwardRef(function SiHasura2({ title = "Hasura", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.558 8.172c.707-2.152.282-6.447-1.09-8.032a.419.419 0 0 0-.664.051l-1.69 2.59a1.322 1.322 0 0 1-1.737.276C16.544 1.885 14.354 1.204 12 1.204s-4.544.68-6.378 1.853a1.326 1.326 0 0 1-1.736-.276L2.196.191A.42.42 0 0 0 1.532.14C.16 1.728-.265 6.023.442 8.172c.236.716.3 1.472.16 2.207-.137.73-.276 1.61-.276 2.223C.326 18.898 5.553 24 11.997 24c6.447 0 11.671-5.105 11.671-11.398 0-.613-.138-1.494-.276-2.223a4.468 4.468 0 0 1 .166-2.207zm-11.56 13.284c-4.984 0-9.036-3.96-9.036-8.827 0-.16.005-.316.014-.473.18-3.316 2.243-6.15 5.16-7.5 1.17-.546 2.481-.848 3.864-.848s2.69.302 3.864.85c2.917 1.351 4.98 4.187 5.16 7.501.008.157.014.316.014.473-.003 4.864-4.057 8.824-9.04 8.824zm3.915-5.43-2.31-3.91-1.98-3.26a.26.26 0 0 0-.223-.125H9.508a.26.26 0 0 0-.227.13.246.246 0 0 0 .003.254l1.895 3.109-2.542 3.787a.25.25 0 0 0-.011.259.26.26 0 0 0 .23.132h1.905a.259.259 0 0 0 .218-.116l1.375-2.096 1.233 2.088a.263.263 0 0 0 .224.127h1.878c.094 0 .18-.049.224-.127a.241.241 0 0 0 0-.251z" }) + ] + } + ); +}); + +export { SiHasura as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.cjs new file mode 100644 index 000000000..9e3f301d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A4DE"; +const SiHatenabookmark = React__namespace.forwardRef(function SiHatenabookmark2({ title = "Hatena Bookmark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.47 0C22.42 0 24 1.58 24 3.53v16.94c0 1.95-1.58 3.53-3.53 3.53H3.53C1.58 24 0 22.42 0 20.47V3.53C0 1.58 1.58 0 3.53 0h16.94zm-3.705 14.47c-.78 0-1.41.63-1.41 1.41s.63 1.414 1.41 1.414 1.41-.645 1.41-1.425-.63-1.41-1.41-1.41zM8.61 17.247c1.2 0 2.056-.042 2.58-.12.526-.084.976-.222 1.32-.412.45-.232.78-.564 1.02-.99s.36-.915.36-1.48c0-.78-.21-1.403-.63-1.87-.42-.48-.99-.734-1.74-.794.66-.18 1.156-.45 1.456-.81.315-.344.465-.824.465-1.424 0-.48-.103-.885-.3-1.26-.21-.36-.493-.645-.883-.87-.345-.195-.735-.315-1.215-.405-.464-.074-1.29-.12-2.474-.12H5.654v10.486H8.61zm.736-4.185c.705 0 1.185.088 1.44.262.27.18.39.495.39.93 0 .405-.135.69-.42.855-.27.18-.765.254-1.44.254H8.31v-2.297h1.05zm8.656.706v-7.06h-2.46v7.06H18zM8.925 9.08c.71 0 1.185.08 1.432.24.245.16.367.435.367.83 0 .38-.13.646-.39.804-.265.154-.747.232-1.452.232h-.57V9.08h.615z" }) + ] + } + ); +}); + +exports.default = SiHatenabookmark; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.d.ts new file mode 100644 index 000000000..1b648c0bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A4DE"; +declare const SiHatenabookmark: IconType; +export { SiHatenabookmark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.mjs new file mode 100644 index 000000000..7bf8c064d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHatenabookmark.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A4DE"; +const SiHatenabookmark = React.forwardRef(function SiHatenabookmark2({ title = "Hatena Bookmark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.47 0C22.42 0 24 1.58 24 3.53v16.94c0 1.95-1.58 3.53-3.53 3.53H3.53C1.58 24 0 22.42 0 20.47V3.53C0 1.58 1.58 0 3.53 0h16.94zm-3.705 14.47c-.78 0-1.41.63-1.41 1.41s.63 1.414 1.41 1.414 1.41-.645 1.41-1.425-.63-1.41-1.41-1.41zM8.61 17.247c1.2 0 2.056-.042 2.58-.12.526-.084.976-.222 1.32-.412.45-.232.78-.564 1.02-.99s.36-.915.36-1.48c0-.78-.21-1.403-.63-1.87-.42-.48-.99-.734-1.74-.794.66-.18 1.156-.45 1.456-.81.315-.344.465-.824.465-1.424 0-.48-.103-.885-.3-1.26-.21-.36-.493-.645-.883-.87-.345-.195-.735-.315-1.215-.405-.464-.074-1.29-.12-2.474-.12H5.654v10.486H8.61zm.736-4.185c.705 0 1.185.088 1.44.262.27.18.39.495.39.93 0 .405-.135.69-.42.855-.27.18-.765.254-1.44.254H8.31v-2.297h1.05zm8.656.706v-7.06h-2.46v7.06H18zM8.925 9.08c.71 0 1.185.08 1.432.24.245.16.367.435.367.83 0 .38-.13.646-.39.804-.265.154-.747.232-1.452.232h-.57V9.08h.615z" }) + ] + } + ); +}); + +export { SiHatenabookmark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.cjs new file mode 100644 index 000000000..2fe89abd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#030304"; +const SiHaveibeenpwned = React__namespace.forwardRef(function SiHaveibeenpwned2({ title = "Have I Been Pwned", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.89 3.872 0 13.598h4.7l1.889-9.726ZM7.171 8.56l-.98 5.038h4.7l.98-5.038Zm5.936 1.306-.723 3.732h4.7l.722-3.732Zm6.192 0-.723 3.732h4.7L24 9.866ZM5.912 15.09l-.979 5.038h4.7l.98-5.038z" }) + ] + } + ); +}); + +exports.default = SiHaveibeenpwned; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.d.ts new file mode 100644 index 000000000..ab9953fdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#030304"; +declare const SiHaveibeenpwned: IconType; +export { SiHaveibeenpwned as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.mjs new file mode 100644 index 000000000..f0fda8862 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaveibeenpwned.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#030304"; +const SiHaveibeenpwned = React.forwardRef(function SiHaveibeenpwned2({ title = "Have I Been Pwned", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.89 3.872 0 13.598h4.7l1.889-9.726ZM7.171 8.56l-.98 5.038h4.7l.98-5.038Zm5.936 1.306-.723 3.732h4.7l.722-3.732Zm6.192 0-.723 3.732h4.7L24 9.866ZM5.912 15.09l-.979 5.038h4.7l.98-5.038z" }) + ] + } + ); +}); + +export { SiHaveibeenpwned as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.cjs new file mode 100644 index 000000000..af038c97c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiHavells = React__namespace.forwardRef(function SiHavells2({ title = "Havells", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.0031.3898c-.471.092-.8031.5296-.9065 1.104-.11.9203-.062 2.1818-.1504 2.7442-.3331 1.8956-2.2406 3.1016-3.9065 3.1705-2.3947.097-3.3764.1769-5.0306.3119-.4969.021-1.126.1578-1.6089.092-.6318-.092-1.1364-.4841-1.3777-1.0815-.2426-.62-.1888-1.1854.011-1.8714.1493-.517.3433-1.1497.6305-1.7816-.9536.9765-1.7564 2.114-2.3538 3.3433C.243 8.5852-.0002 10.6315-.0002 12.051c0 3.2512 1.2067 6.3183 3.3321 8.6275-.2872-.6778-.4705-1.3892-.5969-1.9521-.1228-.5263-.2841-1.2327-.013-1.9544.2297-.632.69-1.0688 1.3104-1.2296.5538-.14 1.1388-.01 1.7008.036 2.0828.1666 3.2252.2417 5.2842.3209 1.8122.068 3.7568 1.4772 4.0322 3.48.043.6982.1515 2.6465.1952 3.1707.1034.5284.4138.931.8504 1.0344.2098.048.371.058.8055-.1593 4.4335-2.0672 7.0995-6.6372 7.0995-11.41v-.092c-.02-4.685-2.6777-9.3475-7.2274-11.3604-.1493-.057-.6432-.1958-.7696-.1728zM5.7443 1.5723c-.4574 0-.8514.4663-.92.552-.5055.5974-.9402 1.5504-1.3193 2.8945-.1704.5964-.2139 1.0818-.036 1.5393.1723.425.53.7007.9895.7696.2696.038.5036-.01.6888-.022.6627-.074 1.7557-.1683 3.1122-.2513-.069-.471-.1369-.9075-.2288-1.3441-.2643-1.2752-.6096-2.3323-1.0232-3.0561-.3906-.7008-.8382-1.0815-1.2633-1.0815zM4.1579 16.0248c-.448.1264-.7813.449-.9536.92-.2057.5436-.086 1.1176.036 1.6649.3446 1.4246.7578 2.4352 1.2633 3.0785.1045.1437.4545.5745.8953.5745.2257 0 .7629-.127 1.3575-1.1713.4365-.7583.8254-1.8606 1.1241-3.1818.1149-.5284.22-1.0678.3119-1.6537-1.1245-.065-2.2461-.1672-3.368-.2647-.015 0-.3887-.042-.6664.034z" }) + ] + } + ); +}); + +exports.default = SiHavells; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.d.ts new file mode 100644 index 000000000..513ee721d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiHavells: IconType; +export { SiHavells as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.mjs new file mode 100644 index 000000000..19af784ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHavells.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiHavells = React.forwardRef(function SiHavells2({ title = "Havells", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.0031.3898c-.471.092-.8031.5296-.9065 1.104-.11.9203-.062 2.1818-.1504 2.7442-.3331 1.8956-2.2406 3.1016-3.9065 3.1705-2.3947.097-3.3764.1769-5.0306.3119-.4969.021-1.126.1578-1.6089.092-.6318-.092-1.1364-.4841-1.3777-1.0815-.2426-.62-.1888-1.1854.011-1.8714.1493-.517.3433-1.1497.6305-1.7816-.9536.9765-1.7564 2.114-2.3538 3.3433C.243 8.5852-.0002 10.6315-.0002 12.051c0 3.2512 1.2067 6.3183 3.3321 8.6275-.2872-.6778-.4705-1.3892-.5969-1.9521-.1228-.5263-.2841-1.2327-.013-1.9544.2297-.632.69-1.0688 1.3104-1.2296.5538-.14 1.1388-.01 1.7008.036 2.0828.1666 3.2252.2417 5.2842.3209 1.8122.068 3.7568 1.4772 4.0322 3.48.043.6982.1515 2.6465.1952 3.1707.1034.5284.4138.931.8504 1.0344.2098.048.371.058.8055-.1593 4.4335-2.0672 7.0995-6.6372 7.0995-11.41v-.092c-.02-4.685-2.6777-9.3475-7.2274-11.3604-.1493-.057-.6432-.1958-.7696-.1728zM5.7443 1.5723c-.4574 0-.8514.4663-.92.552-.5055.5974-.9402 1.5504-1.3193 2.8945-.1704.5964-.2139 1.0818-.036 1.5393.1723.425.53.7007.9895.7696.2696.038.5036-.01.6888-.022.6627-.074 1.7557-.1683 3.1122-.2513-.069-.471-.1369-.9075-.2288-1.3441-.2643-1.2752-.6096-2.3323-1.0232-3.0561-.3906-.7008-.8382-1.0815-1.2633-1.0815zM4.1579 16.0248c-.448.1264-.7813.449-.9536.92-.2057.5436-.086 1.1176.036 1.6649.3446 1.4246.7578 2.4352 1.2633 3.0785.1045.1437.4545.5745.8953.5745.2257 0 .7629-.127 1.3575-1.1713.4365-.7583.8254-1.8606 1.1241-3.1818.1149-.5284.22-1.0678.3119-1.6537-1.1245-.065-2.2461-.1672-3.368-.2647-.015 0-.3887-.042-.6664.034z" }) + ] + } + ); +}); + +export { SiHavells as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.cjs new file mode 100644 index 000000000..1adcbed2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA8220"; +const SiHaxe = React__namespace.forwardRef(function SiHaxe2({ title = "Haxe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.784 0a.221.221 0 0 0-.043.003h-5.853a.221.221 0 0 0-.1.023L12 2.918 6.21.026a.221.221 0 0 0-.098-.023H.238a.221.221 0 0 0-.026 0 .221.221 0 0 0-.21.256v5.853a.221.221 0 0 0 .024.1l2.894 5.785L.026 17.79a.221.221 0 0 0-.024.099v5.84a.221.221 0 0 0 .002.078.221.221 0 0 0 .253.19h5.855a.221.221 0 0 0 .099-.023L12 21.076l5.789 2.898a.221.221 0 0 0 .099.023h5.877a.221.221 0 0 0 .232-.257V17.89a.221.221 0 0 0-.023-.1l-2.895-5.792 2.895-5.786a.221.221 0 0 0 .023-.099V.267a.221.221 0 0 0-.005-.098.221.221 0 0 0-.208-.169zM2.022.445H6.06l4.038 2.017zm15.918 0h4.038l-8.075 2.017zM.528.528l11.039 2.76-8.28 8.275-.238-.953zM23.47.535l-2.76 11.031-8.277-8.279zm.084 1.487V6.06l-2.019 4.035zm-23.11.003L2.29 9.398l.175.7L.445 6.06zM12 3.48L20.52 12l-8.517 8.516-8.241-8.234L3.48 12zm8.712 8.952l.088.351 2.672 10.688-11.04-2.76zm-17.424 0l8.274 8.274L.531 23.46l.266-1.065zm18.247 1.466l2.02 4.042v4.027zm-19.07 0l-2.02 8.08v-4.038zm7.626 7.638l-4.032 2.018H2.02zm3.818 0l8.071 2.018h-4.04z" }) + ] + } + ); +}); + +exports.default = SiHaxe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.d.ts new file mode 100644 index 000000000..4ee35e45c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA8220"; +declare const SiHaxe: IconType; +export { SiHaxe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.mjs new file mode 100644 index 000000000..be96dc97a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaxe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA8220"; +const SiHaxe = React.forwardRef(function SiHaxe2({ title = "Haxe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.784 0a.221.221 0 0 0-.043.003h-5.853a.221.221 0 0 0-.1.023L12 2.918 6.21.026a.221.221 0 0 0-.098-.023H.238a.221.221 0 0 0-.026 0 .221.221 0 0 0-.21.256v5.853a.221.221 0 0 0 .024.1l2.894 5.785L.026 17.79a.221.221 0 0 0-.024.099v5.84a.221.221 0 0 0 .002.078.221.221 0 0 0 .253.19h5.855a.221.221 0 0 0 .099-.023L12 21.076l5.789 2.898a.221.221 0 0 0 .099.023h5.877a.221.221 0 0 0 .232-.257V17.89a.221.221 0 0 0-.023-.1l-2.895-5.792 2.895-5.786a.221.221 0 0 0 .023-.099V.267a.221.221 0 0 0-.005-.098.221.221 0 0 0-.208-.169zM2.022.445H6.06l4.038 2.017zm15.918 0h4.038l-8.075 2.017zM.528.528l11.039 2.76-8.28 8.275-.238-.953zM23.47.535l-2.76 11.031-8.277-8.279zm.084 1.487V6.06l-2.019 4.035zm-23.11.003L2.29 9.398l.175.7L.445 6.06zM12 3.48L20.52 12l-8.517 8.516-8.241-8.234L3.48 12zm8.712 8.952l.088.351 2.672 10.688-11.04-2.76zm-17.424 0l8.274 8.274L.531 23.46l.266-1.065zm18.247 1.466l2.02 4.042v4.027zm-19.07 0l-2.02 8.08v-4.038zm7.626 7.638l-4.032 2.018H2.02zm3.818 0l8.071 2.018h-4.04z" }) + ] + } + ); +}); + +export { SiHaxe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.cjs new file mode 100644 index 000000000..4fc85c825 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0EAF9C"; +const SiHaystack = React__namespace.forwardRef(function SiHaystack2({ title = "Haystack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.0084 0C.8992 0 0 .8992 0 2.0084v19.9832C0 23.1006.8992 24 2.0084 24h19.9832C23.1006 24 24 23.1007 24 21.9916V2.0084C24 .8992 23.1007 0 21.9916 0Zm9.9624 3.84c3.4303 0 6.2108 2.7626 6.2108 6.1709v6.4875a.2688.2688 0 0 1-.2697.2681c-1.3425 0-2.4306-1.0811-2.4306-2.415v-4.3409c0-1.9265-1.572-3.488-3.5105-3.488s-3.424 1.562-3.424 3.488v1.608a.2633.2633 0 0 0 .259.2681h1.5394a.2693.2693 0 0 0 .2753-.263V9.9453c0-.7412.6044-1.3414 1.3503-1.3414s1.3502.6002 1.3502 1.3414V20.029a.2747.2747 0 0 1-.2807.2682c-1.3362 0-2.4198-1.0766-2.4198-2.4043v-3.2307a.2747.2747 0 0 0-.2753-.268H8.8114a.2637.2637 0 0 0-.2646.263v1.0789c0 1.3338-1.1746 2.4152-2.517 2.4152a.2688.2688 0 0 1-.2698-.268v-7.8724c0-3.4083 2.7805-6.1709 6.2108-6.1709Z" }) + ] + } + ); +}); + +exports.default = SiHaystack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.d.ts new file mode 100644 index 000000000..d8541a1ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0EAF9C"; +declare const SiHaystack: IconType; +export { SiHaystack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.mjs new file mode 100644 index 000000000..3b42ebb51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHaystack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0EAF9C"; +const SiHaystack = React.forwardRef(function SiHaystack2({ title = "Haystack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.0084 0C.8992 0 0 .8992 0 2.0084v19.9832C0 23.1006.8992 24 2.0084 24h19.9832C23.1006 24 24 23.1007 24 21.9916V2.0084C24 .8992 23.1007 0 21.9916 0Zm9.9624 3.84c3.4303 0 6.2108 2.7626 6.2108 6.1709v6.4875a.2688.2688 0 0 1-.2697.2681c-1.3425 0-2.4306-1.0811-2.4306-2.415v-4.3409c0-1.9265-1.572-3.488-3.5105-3.488s-3.424 1.562-3.424 3.488v1.608a.2633.2633 0 0 0 .259.2681h1.5394a.2693.2693 0 0 0 .2753-.263V9.9453c0-.7412.6044-1.3414 1.3503-1.3414s1.3502.6002 1.3502 1.3414V20.029a.2747.2747 0 0 1-.2807.2682c-1.3362 0-2.4198-1.0766-2.4198-2.4043v-3.2307a.2747.2747 0 0 0-.2753-.268H8.8114a.2637.2637 0 0 0-.2646.263v1.0789c0 1.3338-1.1746 2.4152-2.517 2.4152a.2688.2688 0 0 1-.2698-.268v-7.8724c0-3.4083 2.7805-6.1709 6.2108-6.1709Z" }) + ] + } + ); +}); + +export { SiHaystack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.cjs new file mode 100644 index 000000000..93bc08da0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHbo = React__namespace.forwardRef(function SiHbo2({ title = "HBO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.042 16.896H4.414v-3.754H2.708v3.754H.01L0 7.22h2.708v3.6h1.706v-3.6h2.628zm12.043.046C21.795 16.94 24 14.689 24 11.978a4.89 4.89 0 0 0-4.915-4.92c-2.707-.002-4.09 1.991-4.432 2.795.003-1.207-1.187-2.632-2.58-2.634H7.59v9.674l4.181.001c1.686 0 2.886-1.46 2.888-2.713.385.788 1.72 2.762 4.427 2.76zm-7.665-3.936c.387 0 .692.382.692.817 0 .435-.305.817-.692.817h-1.33v-1.634zm.005-3.633c.387 0 .692.382.692.817 0 .436-.305.818-.692.818h-1.33V9.373zm1.77 2.607c.305-.039.813-.387.992-.61-.063.276-.068 1.074.006 1.35-.204-.314-.688-.701-.998-.74zm3.43 0a2.462 2.462 0 1 1 4.924 0 2.462 2.462 0 0 1-4.925 0zm2.462 1.936a1.936 1.936 0 1 0 0-3.872 1.936 1.936 0 0 0 0 3.872Z" }) + ] + } + ); +}); + +exports.default = SiHbo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.d.ts new file mode 100644 index 000000000..e98fd12a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHbo: IconType; +export { SiHbo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.mjs new file mode 100644 index 000000000..f753e2e13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHbo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHbo = React.forwardRef(function SiHbo2({ title = "HBO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.042 16.896H4.414v-3.754H2.708v3.754H.01L0 7.22h2.708v3.6h1.706v-3.6h2.628zm12.043.046C21.795 16.94 24 14.689 24 11.978a4.89 4.89 0 0 0-4.915-4.92c-2.707-.002-4.09 1.991-4.432 2.795.003-1.207-1.187-2.632-2.58-2.634H7.59v9.674l4.181.001c1.686 0 2.886-1.46 2.888-2.713.385.788 1.72 2.762 4.427 2.76zm-7.665-3.936c.387 0 .692.382.692.817 0 .435-.305.817-.692.817h-1.33v-1.634zm.005-3.633c.387 0 .692.382.692.817 0 .436-.305.818-.692.818h-1.33V9.373zm1.77 2.607c.305-.039.813-.387.992-.61-.063.276-.068 1.074.006 1.35-.204-.314-.688-.701-.998-.74zm3.43 0a2.462 2.462 0 1 1 4.924 0 2.462 2.462 0 0 1-4.925 0zm2.462 1.936a1.936 1.936 0 1 0 0-3.872 1.936 1.936 0 0 0 0 3.872Z" }) + ] + } + ); +}); + +export { SiHbo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.cjs new file mode 100644 index 000000000..26b735efc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHbomax = React__namespace.forwardRef(function SiHbomax2({ title = "HBO Max", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.784 8.716c-.655 0-1.32.29-2.173.946v-.78H0v6.236h1.715V11.24c.749-.592 1.091-.78 1.372-.78.333 0 .551.209.551.729v3.928h1.715V11.23c.748-.582 1.081-.769 1.372-.769.333 0 .55.208.55.728v3.928H8.99v-4.53c0-1.403-.8-1.871-1.57-1.871-.654 0-1.32.27-2.192.936-.28-.697-.894-.936-1.444-.936zm8.689 0c-1.705 0-3.118 1.466-3.118 3.284 0 1.82 1.413 3.285 3.118 3.285.842 0 1.57-.312 2.131-.988v.82h1.632V8.883h-1.632v.822c-.561-.676-1.29-.988-2.131-.988zm4.064.166c.707 1.102 1.507 2.09 2.443 3.077a26.593 26.593 0 0 0-2.443 3.16h2.069a13.603 13.603 0 0 1 1.673-2.183 14.067 14.067 0 0 1 1.632 2.182H24a25.142 25.142 0 0 0-2.432-3.16A23.918 23.918 0 0 0 24 8.883h-2.047a14.65 14.65 0 0 1-1.674 2.11 13.357 13.357 0 0 1-1.674-2.11zm-3.804 1.279c1.018 0 1.84.82 1.84 1.84a1.837 1.837 0 0 1-1.84 1.839c-1.019 0-1.84-.82-1.84-1.84 0-1.018.821-1.84 1.84-1.84zm0 .415c-.78 0-1.414.633-1.414 1.423s.634 1.424 1.413 1.424c.78 0 1.414-.634 1.414-1.424s-.634-1.424-1.414-1.424z" }) + ] + } + ); +}); + +exports.default = SiHbomax; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.d.ts new file mode 100644 index 000000000..49078a8b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHbomax: IconType; +export { SiHbomax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.mjs new file mode 100644 index 000000000..885074ce2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHbomax.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHbomax = React.forwardRef(function SiHbomax2({ title = "HBO Max", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.784 8.716c-.655 0-1.32.29-2.173.946v-.78H0v6.236h1.715V11.24c.749-.592 1.091-.78 1.372-.78.333 0 .551.209.551.729v3.928h1.715V11.23c.748-.582 1.081-.769 1.372-.769.333 0 .55.208.55.728v3.928H8.99v-4.53c0-1.403-.8-1.871-1.57-1.871-.654 0-1.32.27-2.192.936-.28-.697-.894-.936-1.444-.936zm8.689 0c-1.705 0-3.118 1.466-3.118 3.284 0 1.82 1.413 3.285 3.118 3.285.842 0 1.57-.312 2.131-.988v.82h1.632V8.883h-1.632v.822c-.561-.676-1.29-.988-2.131-.988zm4.064.166c.707 1.102 1.507 2.09 2.443 3.077a26.593 26.593 0 0 0-2.443 3.16h2.069a13.603 13.603 0 0 1 1.673-2.183 14.067 14.067 0 0 1 1.632 2.182H24a25.142 25.142 0 0 0-2.432-3.16A23.918 23.918 0 0 0 24 8.883h-2.047a14.65 14.65 0 0 1-1.674 2.11 13.357 13.357 0 0 1-1.674-2.11zm-3.804 1.279c1.018 0 1.84.82 1.84 1.84a1.837 1.837 0 0 1-1.84 1.839c-1.019 0-1.84-.82-1.84-1.84 0-1.018.821-1.84 1.84-1.84zm0 .415c-.78 0-1.414.633-1.414 1.423s.634 1.424 1.413 1.424c.78 0 1.414-.634 1.414-1.424s-.634-1.424-1.414-1.424z" }) + ] + } + ); +}); + +export { SiHbomax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.cjs new file mode 100644 index 000000000..63d45d366 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006BB6"; +const SiHcl = React__namespace.forwardRef(function SiHcl2({ title = "HCL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.3968 10.4013l-1.0971 2.4399H24l-.3435.7629H17.294l1.4331-3.2028zm-6.3985 1.0896h2.4633c-.0152-.5377-.5358-.911-1.5672-1.0592-2.0348-.2994-4.2354-.1718-5.802.6934-1.2346.6859-1.329 1.7176-.099 2.2232 1.0357.4218 3.2106.4656 4.767.201 1.0077-.1712 1.7776-.502 2.2093-.9974H14.454c-.3262.251-.7526.376-1.25.3804-1.4124.0094-1.5988-.4182-1.3525-.9106.293-.5801.9075-.8966 1.8447-.9216.7381-.0199 1.1029.1436 1.3021.3908M0 13.6067h2.604l.5578-1.2789h2.553l-.5732 1.2771h2.635l1.4457-3.2031h-2.653l-.4769 1.0807H3.5421l.4831-1.0807-2.5781-.0006Z" }) + ] + } + ); +}); + +exports.default = SiHcl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.d.ts new file mode 100644 index 000000000..2769c8a07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006BB6"; +declare const SiHcl: IconType; +export { SiHcl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.mjs new file mode 100644 index 000000000..c6cf19555 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHcl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006BB6"; +const SiHcl = React.forwardRef(function SiHcl2({ title = "HCL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.3968 10.4013l-1.0971 2.4399H24l-.3435.7629H17.294l1.4331-3.2028zm-6.3985 1.0896h2.4633c-.0152-.5377-.5358-.911-1.5672-1.0592-2.0348-.2994-4.2354-.1718-5.802.6934-1.2346.6859-1.329 1.7176-.099 2.2232 1.0357.4218 3.2106.4656 4.767.201 1.0077-.1712 1.7776-.502 2.2093-.9974H14.454c-.3262.251-.7526.376-1.25.3804-1.4124.0094-1.5988-.4182-1.3525-.9106.293-.5801.9075-.8966 1.8447-.9216.7381-.0199 1.1029.1436 1.3021.3908M0 13.6067h2.604l.5578-1.2789h2.553l-.5732 1.2771h2.635l1.4457-3.2031h-2.653l-.4769 1.0807H3.5421l.4831-1.0807-2.5781-.0006Z" }) + ] + } + ); +}); + +export { SiHcl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.cjs new file mode 100644 index 000000000..93dd5bb38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004B8D"; +const SiHdfcbank = React__namespace.forwardRef(function SiHdfcbank2({ title = "HDFC Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.572 0v10.842h3.712V4.485h6.381V0Zm12.413 0v4.485h6.383v6.357h4.06V0Zm-4.64 8.53v6.938h6.963V8.53ZM.572 13.153V24h10.093v-4.486h-6.38v-6.361zm18.796 0v6.361h-6.383V24h10.443V13.153Z" }) + ] + } + ); +}); + +exports.default = SiHdfcbank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.d.ts new file mode 100644 index 000000000..5d89bda04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004B8D"; +declare const SiHdfcbank: IconType; +export { SiHdfcbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.mjs new file mode 100644 index 000000000..526c7cd29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHdfcbank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004B8D"; +const SiHdfcbank = React.forwardRef(function SiHdfcbank2({ title = "HDFC Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.572 0v10.842h3.712V4.485h6.381V0Zm12.413 0v4.485h6.383v6.357h4.06V0Zm-4.64 8.53v6.938h6.963V8.53ZM.572 13.153V24h10.093v-4.486h-6.38v-6.361zm18.796 0v6.361h-6.383V24h10.443V13.153Z" }) + ] + } + ); +}); + +export { SiHdfcbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.cjs new file mode 100644 index 000000000..621e3bc0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#66E3FF"; +const SiHeadlessui = React__namespace.forwardRef(function SiHeadlessui2({ title = "Headless UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.477 13.192c-.36-2.274-.584-3.711-.65-4.805-.062-1.035.051-1.354.1-1.468.169-.395.424-.746.746-1.029.093-.081.363-.288 1.366-.548 1.06-.275 2.496-.507 4.769-.867 2.274-.36 3.71-.584 4.804-.65 1.034-.062 1.354.051 1.468.1.395.169.746.424 1.029.747.08.093.287.362.547 1.366.242.933.45 2.156.743 3.987l-14.646 4.89c-.085-.515-.176-1.085-.276-1.723Zm-3.762.596C.018 9.387-.33 7.187.425 5.422a6.665 6.665 0 0 1 1.743-2.401C3.614 1.757 5.813 1.41 10.211.713c4.4-.698 6.6-1.046 8.367-.291.92.393 1.74.99 2.399 1.743 1.264 1.447 1.612 3.647 2.308 8.047.697 4.4 1.045 6.601.29 8.366a6.664 6.664 0 0 1-1.743 2.402c-1.445 1.263-3.645 1.611-8.045 2.308-4.398.697-6.598 1.045-8.363.29a6.666 6.666 0 0 1-2.4-1.743c-1.263-1.448-1.611-3.648-2.308-8.048H.715v.001Zm7.759 7.814c1.178-.072 2.695-.31 4.94-.665 2.247-.356 3.762-.599 4.905-.895 1.107-.288 1.617-.568 1.947-.856a4.286 4.286 0 0 0 1.12-1.543c.172-.402.281-.974.212-2.116-.071-1.178-.309-2.696-.665-4.942-.355-2.247-.598-3.763-.894-4.906-.287-1.107-.568-1.618-.855-1.947a4.285 4.285 0 0 0-1.543-1.12c-.402-.174-.974-.282-2.116-.213-1.178.071-2.694.309-4.94.664-2.246.357-3.762.6-4.905.896-1.107.287-1.616.568-1.946.855a4.286 4.286 0 0 0-1.12 1.543c-.173.403-.281.974-.212 2.116.07 1.179.308 2.696.664 4.943.356 2.246.598 3.762.895 4.905.287 1.108.567 1.618.855 1.947.423.485.95.868 1.543 1.121.402.173.973.282 2.116.213Z" }) + ] + } + ); +}); + +exports.default = SiHeadlessui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.d.ts new file mode 100644 index 000000000..9ad835255 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#66E3FF"; +declare const SiHeadlessui: IconType; +export { SiHeadlessui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.mjs new file mode 100644 index 000000000..9c6f22a74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadlessui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#66E3FF"; +const SiHeadlessui = React.forwardRef(function SiHeadlessui2({ title = "Headless UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.477 13.192c-.36-2.274-.584-3.711-.65-4.805-.062-1.035.051-1.354.1-1.468.169-.395.424-.746.746-1.029.093-.081.363-.288 1.366-.548 1.06-.275 2.496-.507 4.769-.867 2.274-.36 3.71-.584 4.804-.65 1.034-.062 1.354.051 1.468.1.395.169.746.424 1.029.747.08.093.287.362.547 1.366.242.933.45 2.156.743 3.987l-14.646 4.89c-.085-.515-.176-1.085-.276-1.723Zm-3.762.596C.018 9.387-.33 7.187.425 5.422a6.665 6.665 0 0 1 1.743-2.401C3.614 1.757 5.813 1.41 10.211.713c4.4-.698 6.6-1.046 8.367-.291.92.393 1.74.99 2.399 1.743 1.264 1.447 1.612 3.647 2.308 8.047.697 4.4 1.045 6.601.29 8.366a6.664 6.664 0 0 1-1.743 2.402c-1.445 1.263-3.645 1.611-8.045 2.308-4.398.697-6.598 1.045-8.363.29a6.666 6.666 0 0 1-2.4-1.743c-1.263-1.448-1.611-3.648-2.308-8.048H.715v.001Zm7.759 7.814c1.178-.072 2.695-.31 4.94-.665 2.247-.356 3.762-.599 4.905-.895 1.107-.288 1.617-.568 1.947-.856a4.286 4.286 0 0 0 1.12-1.543c.172-.402.281-.974.212-2.116-.071-1.178-.309-2.696-.665-4.942-.355-2.247-.598-3.763-.894-4.906-.287-1.107-.568-1.618-.855-1.947a4.285 4.285 0 0 0-1.543-1.12c-.402-.174-.974-.282-2.116-.213-1.178.071-2.694.309-4.94.664-2.246.357-3.762.6-4.905.896-1.107.287-1.616.568-1.946.855a4.286 4.286 0 0 0-1.12 1.543c-.173.403-.281.974-.212 2.116.07 1.179.308 2.696.664 4.943.356 2.246.598 3.762.895 4.905.287 1.108.567 1.618.855 1.947.423.485.95.868 1.543 1.121.402.173.973.282 2.116.213Z" }) + ] + } + ); +}); + +export { SiHeadlessui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.cjs new file mode 100644 index 000000000..b6a9ea9e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C07FF"; +const SiHeadphonezone = React__namespace.forwardRef(function SiHeadphonezone2({ title = "Headphone Zone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.63 4.702 17.96 0 9.086 2.484c-.463 1.754-.694 4.139.133 6.655.232-.067.463-.1.695-.133a4.724 4.724 0 0 1 5.133 4.305 4.724 4.724 0 0 1-4.305 5.133 4.724 4.724 0 0 1-5.132-4.305 4.618 4.618 0 0 1 1.159-3.543c-.86-1.325-1.987-3.609-1.954-6.49C1.107 6.623-.847 11.258.378 15.86c1.49 5.828 7.45 9.305 13.245 7.782 4.603-1.192 7.748-5.198 8.113-9.702l2.251-1.622-6.358-7.616Z" }) + ] + } + ); +}); + +exports.default = SiHeadphonezone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.d.ts new file mode 100644 index 000000000..bee244a9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C07FF"; +declare const SiHeadphonezone: IconType; +export { SiHeadphonezone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.mjs new file mode 100644 index 000000000..ff3fe389e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadphonezone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C07FF"; +const SiHeadphonezone = React.forwardRef(function SiHeadphonezone2({ title = "Headphone Zone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.63 4.702 17.96 0 9.086 2.484c-.463 1.754-.694 4.139.133 6.655.232-.067.463-.1.695-.133a4.724 4.724 0 0 1 5.133 4.305 4.724 4.724 0 0 1-4.305 5.133 4.724 4.724 0 0 1-5.132-4.305 4.618 4.618 0 0 1 1.159-3.543c-.86-1.325-1.987-3.609-1.954-6.49C1.107 6.623-.847 11.258.378 15.86c1.49 5.828 7.45 9.305 13.245 7.782 4.603-1.192 7.748-5.198 8.113-9.702l2.251-1.622-6.358-7.616Z" }) + ] + } + ); +}); + +export { SiHeadphonezone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.cjs new file mode 100644 index 000000000..3b7ba66db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F47D31"; +const SiHeadspace = React__namespace.forwardRef(function SiHeadspace2({ title = "Headspace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9711 11.8612c.279 3.8878-1.5272 6.0933-2.6155 7.6357-1.694 1.7856-3.8397 4.2203-9.291 4.3565-4.6237.1827-6.8957-1.8508-8.8034-3.617-2.487-2.7336-3.1366-4.3512-3.261-8.3752-.0118-2.467.9397-4.9292 2.6025-7.0954C4.934 1.4736 8.6408.3699 12.0646.1426c3.5923-.1392 6.4493 1.6723 8.3993 3.624 2.4963 2.632 3.2629 4.8923 3.5054 8.0946Z" }) + ] + } + ); +}); + +exports.default = SiHeadspace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.d.ts new file mode 100644 index 000000000..8c08177c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F47D31"; +declare const SiHeadspace: IconType; +export { SiHeadspace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.mjs new file mode 100644 index 000000000..a9898400f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeadspace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F47D31"; +const SiHeadspace = React.forwardRef(function SiHeadspace2({ title = "Headspace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9711 11.8612c.279 3.8878-1.5272 6.0933-2.6155 7.6357-1.694 1.7856-3.8397 4.2203-9.291 4.3565-4.6237.1827-6.8957-1.8508-8.8034-3.617-2.487-2.7336-3.1366-4.3512-3.261-8.3752-.0118-2.467.9397-4.9292 2.6025-7.0954C4.934 1.4736 8.6408.3699 12.0646.1426c3.5923-.1392 6.4493 1.6723 8.3993 3.624 2.4963 2.632 3.2629 4.8923 3.5054 8.0946Z" }) + ] + } + ); +}); + +export { SiHeadspace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.cjs new file mode 100644 index 000000000..ce5421224 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A33035"; +const SiHearth = React__namespace.forwardRef(function SiHearth2({ title = "Hearth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.1958 10.318v9.576L.4531 24v-9.3298zm7.6591-4.162 7.692 4.1616v9.5736L15.8532 24v-9.3302l-7.6577-4.3522ZM8.196 0v9.576L.453 13.8027v-9.648Z" }) + ] + } + ); +}); + +exports.default = SiHearth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.d.ts new file mode 100644 index 000000000..a97bfc93e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A33035"; +declare const SiHearth: IconType; +export { SiHearth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.mjs new file mode 100644 index 000000000..e441c8c3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHearth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A33035"; +const SiHearth = React.forwardRef(function SiHearth2({ title = "Hearth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.1958 10.318v9.576L.4531 24v-9.3298zm7.6591-4.162 7.692 4.1616v9.5736L15.8532 24v-9.3302l-7.6577-4.3522ZM8.196 0v9.576L.453 13.8027v-9.648Z" }) + ] + } + ); +}); + +export { SiHearth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.cjs new file mode 100644 index 000000000..1943c04ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHearthisdotat = React__namespace.forwardRef(function SiHearthisdotat2({ title = "hearthis.at", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.485 3.515C15.799-1.17 8.2-1.17 3.515 3.515c-4.687 4.686-4.687 12.285 0 16.97 4.685 4.686 12.284 4.686 16.97 0 4.687-4.685 4.687-12.284 0-16.97zm-5.81 14.433c-.252.252-1.25.562-1.25-.012 0-.573-.157-3.089-2.028-4.958-1.88-1.88-4.55-2.192-5.056-2.192-.506 0-.331-1-.078-1.252.253-.253.558-.15 1.064-.15 0 0 3.445.464 5.326 2.345 1.868 1.869 2.173 5.153 2.173 5.153 0 .463.102.813-.15 1.066zm4.022-.509c-.36.36-1.786.803-1.786-.015 0-.82-.224-4.41-2.893-7.079C11.335 7.662 7.524 7.217 6.8 7.217c-.723 0-.473-1.426-.113-1.787.361-.36.799-.214 1.52-.214 0 0 4.918.663 7.603 3.348 2.666 2.667 3.1 7.356 3.1 7.356 0 .658.147 1.158-.214 1.52z" }) + ] + } + ); +}); + +exports.default = SiHearthisdotat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.d.ts new file mode 100644 index 000000000..8d6c17e03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHearthisdotat: IconType; +export { SiHearthisdotat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.mjs new file mode 100644 index 000000000..bfc3a2678 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHearthisdotat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHearthisdotat = React.forwardRef(function SiHearthisdotat2({ title = "hearthis.at", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.485 3.515C15.799-1.17 8.2-1.17 3.515 3.515c-4.687 4.686-4.687 12.285 0 16.97 4.685 4.686 12.284 4.686 16.97 0 4.687-4.685 4.687-12.284 0-16.97zm-5.81 14.433c-.252.252-1.25.562-1.25-.012 0-.573-.157-3.089-2.028-4.958-1.88-1.88-4.55-2.192-5.056-2.192-.506 0-.331-1-.078-1.252.253-.253.558-.15 1.064-.15 0 0 3.445.464 5.326 2.345 1.868 1.869 2.173 5.153 2.173 5.153 0 .463.102.813-.15 1.066zm4.022-.509c-.36.36-1.786.803-1.786-.015 0-.82-.224-4.41-2.893-7.079C11.335 7.662 7.524 7.217 6.8 7.217c-.723 0-.473-1.426-.113-1.787.361-.36.799-.214 1.52-.214 0 0 4.918.663 7.603 3.348 2.666 2.667 3.1 7.356 3.1 7.356 0 .658.147 1.158-.214 1.52z" }) + ] + } + ); +}); + +export { SiHearthisdotat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.cjs new file mode 100644 index 000000000..1981d1388 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const SiHedera = React__namespace.forwardRef(function SiHedera2({ title = "Hedera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm4.9571 17.3963h-1.5812V14.01H8.6224v3.3777H7.0498V6.6037H8.631v3.3845h6.7535V6.6037h1.5812zm-1.5812-6.2592H8.6224v1.7241h6.7535Z" }) + ] + } + ); +}); + +exports.default = SiHedera; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.d.ts new file mode 100644 index 000000000..74bc1e827 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const SiHedera: IconType; +export { SiHedera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.mjs new file mode 100644 index 000000000..8b924bf27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHedera.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const SiHedera = React.forwardRef(function SiHedera2({ title = "Hedera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm4.9571 17.3963h-1.5812V14.01H8.6224v3.3777H7.0498V6.6037H8.631v3.3845h6.7535V6.6037h1.5812zm-1.5812-6.2592H8.6224v1.7241h6.7535Z" }) + ] + } + ); +}); + +export { SiHedera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.cjs new file mode 100644 index 000000000..3257a8c9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B51F08"; +const SiHedgedoc = React__namespace.forwardRef(function SiHedgedoc2({ title = "HedgeDoc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.097.227-1.913 1.341L7.93.914 6.6 2.816l-2.346.142-.586 2.234-2.157.92.23 2.295L.032 9.995l1.015 2.083L0 14.14l1.679 1.616-.267 2.291 2.141.955.549 2.243 2.344.178 1.3 1.925 2.965-.836-6.421-6.298a4.548 4.548 0 0 1-1.491-3.364c0-2.542 2.1-4.601 4.692-4.601 1.406 0 2.668.607 3.527 1.57l.978.959 1.195-1.173a4.725 4.725 0 0 1 3.3-1.332c2.591 0 4.692 2.061 4.692 4.603 0 1.4-.702 2.628-1.644 3.497l-6.291 6.178a1.78 1.78 0 0 0-1.25-.509c-.489 0-.933.195-1.252.51.006.675.563 1.22 1.252 1.22.66 0 1.2-.502 1.248-1.139l2.822.78 1.33-1.901 2.348-.142.585-2.234 2.156-.921-.227-2.297 1.705-1.587-1.015-2.081L24 10.186l-1.68-1.614.266-2.293-2.14-.955-.55-2.243-2.344-.18L16.253.98l-2.265.619ZM9.292 13.58c-.614 0-1.111.489-1.111 1.091a1.1 1.1 0 0 0 1.111 1.09 1.1 1.1 0 0 0 1.112-1.09 1.1 1.1 0 0 0-1.112-1.09zm5.423 0a1.1 1.1 0 0 0-1.11 1.091 1.1 1.1 0 0 0 1.11 1.09c.616 0 1.112-.488 1.112-1.09 0-.602-.496-1.09-1.112-1.09z" }) + ] + } + ); +}); + +exports.default = SiHedgedoc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.d.ts new file mode 100644 index 000000000..6a2bd4790 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B51F08"; +declare const SiHedgedoc: IconType; +export { SiHedgedoc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.mjs new file mode 100644 index 000000000..6532e40b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHedgedoc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B51F08"; +const SiHedgedoc = React.forwardRef(function SiHedgedoc2({ title = "HedgeDoc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.097.227-1.913 1.341L7.93.914 6.6 2.816l-2.346.142-.586 2.234-2.157.92.23 2.295L.032 9.995l1.015 2.083L0 14.14l1.679 1.616-.267 2.291 2.141.955.549 2.243 2.344.178 1.3 1.925 2.965-.836-6.421-6.298a4.548 4.548 0 0 1-1.491-3.364c0-2.542 2.1-4.601 4.692-4.601 1.406 0 2.668.607 3.527 1.57l.978.959 1.195-1.173a4.725 4.725 0 0 1 3.3-1.332c2.591 0 4.692 2.061 4.692 4.603 0 1.4-.702 2.628-1.644 3.497l-6.291 6.178a1.78 1.78 0 0 0-1.25-.509c-.489 0-.933.195-1.252.51.006.675.563 1.22 1.252 1.22.66 0 1.2-.502 1.248-1.139l2.822.78 1.33-1.901 2.348-.142.585-2.234 2.156-.921-.227-2.297 1.705-1.587-1.015-2.081L24 10.186l-1.68-1.614.266-2.293-2.14-.955-.55-2.243-2.344-.18L16.253.98l-2.265.619ZM9.292 13.58c-.614 0-1.111.489-1.111 1.091a1.1 1.1 0 0 0 1.111 1.09 1.1 1.1 0 0 0 1.112-1.09 1.1 1.1 0 0 0-1.112-1.09zm5.423 0a1.1 1.1 0 0 0-1.11 1.091 1.1 1.1 0 0 0 1.11 1.09c.616 0 1.112-.488 1.112-1.09 0-.602-.496-1.09-1.112-1.09z" }) + ] + } + ); +}); + +export { SiHedgedoc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.cjs new file mode 100644 index 000000000..f9e3aec24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0ACF83"; +const SiHelium = React__namespace.forwardRef(function SiHelium2({ title = "Helium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.6274 0 12 5.3726 12 12s-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0Zm2.5535 5.6062a2.7033 2.7033 0 0 0-.7421 1.3856c-1.923-.7238-4.1285-.264-5.5968 1.2045-1.4696 1.4696-1.929 3.6777-1.2024 5.6018a2.7037 2.7037 0 0 0-1.3947.7441c-1.0604 1.0604-1.0604 2.7799 0 3.8403 1.0605 1.0604 2.7798 1.0604 3.8403 0a2.7035 2.7035 0 0 0 .746-1.4034 5.255 5.255 0 0 0 1.8373.332c1.3756 0 2.7344-.5344 3.7442-1.5442 1.463-1.463 1.9253-3.6579 1.2127-5.576a2.703 2.703 0 0 0 1.3957-.7444c1.0605-1.0604 1.0605-2.7798 0-3.8403-1.0604-1.0604-2.7798-1.0604-3.8402 0zm3.1724 3.1725c-.4029.403-.9577.5877-1.5231.5072a.3058.3058 0 0 0-.0793.0001.9214.9214 0 0 0-.9875.6035.9208.9208 0 0 0 .0307.7007c.602 1.3006.3253 2.8556-.6886 3.8695-1.014 1.0138-2.569 1.291-3.87.6884a.9211.9211 0 0 0-.7098-.0276.9212.9212 0 0 0-.5172.4781.9195.9195 0 0 0-.0831.4539.308.308 0 0 0 0 .0915 1.7992 1.7992 0 0 1-.5009 1.5636c-.6991.699-1.8368.699-2.5362 0a1.7821 1.7821 0 0 1-.5252-1.2681c0-.4791.1865-.9295.5252-1.2682.4028-.4029.9579-.5873 1.5516-.506a.921.921 0 0 0 .1824.0205c.13 0 .262-.0277.3877-.0858a.9213.9213 0 0 0 .4753-.5104.921.921 0 0 0-.0247-.7167c-.602-1.3006-.3253-2.8555.6886-3.8694 1.014-1.014 2.5692-1.2909 3.87-.6885a.9212.9212 0 0 0 .7074.0287.9218.9218 0 0 0 .5197-.4792c.083-.1793.103-.3715.07-.5583a1.7988 1.7988 0 0 1 .5009-1.5637c.6991-.6993 1.8369-.6993 2.536 0 .6993.6993.6993 1.837 0 2.5362zm-7.1177 1.8111c-.7758.7759-.7758 2.0337 0 2.8095.7759.776 2.0338.776 2.8096 0 .7758-.7758.7758-2.0336 0-2.8095-.7758-.7757-2.0337-.7757-2.8096 0z" }) + ] + } + ); +}); + +exports.default = SiHelium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.d.ts new file mode 100644 index 000000000..07b5d2a3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0ACF83"; +declare const SiHelium: IconType; +export { SiHelium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.mjs new file mode 100644 index 000000000..f8c0b9e12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0ACF83"; +const SiHelium = React.forwardRef(function SiHelium2({ title = "Helium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.6274 0 12 5.3726 12 12s-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0Zm2.5535 5.6062a2.7033 2.7033 0 0 0-.7421 1.3856c-1.923-.7238-4.1285-.264-5.5968 1.2045-1.4696 1.4696-1.929 3.6777-1.2024 5.6018a2.7037 2.7037 0 0 0-1.3947.7441c-1.0604 1.0604-1.0604 2.7799 0 3.8403 1.0605 1.0604 2.7798 1.0604 3.8403 0a2.7035 2.7035 0 0 0 .746-1.4034 5.255 5.255 0 0 0 1.8373.332c1.3756 0 2.7344-.5344 3.7442-1.5442 1.463-1.463 1.9253-3.6579 1.2127-5.576a2.703 2.703 0 0 0 1.3957-.7444c1.0605-1.0604 1.0605-2.7798 0-3.8403-1.0604-1.0604-2.7798-1.0604-3.8402 0zm3.1724 3.1725c-.4029.403-.9577.5877-1.5231.5072a.3058.3058 0 0 0-.0793.0001.9214.9214 0 0 0-.9875.6035.9208.9208 0 0 0 .0307.7007c.602 1.3006.3253 2.8556-.6886 3.8695-1.014 1.0138-2.569 1.291-3.87.6884a.9211.9211 0 0 0-.7098-.0276.9212.9212 0 0 0-.5172.4781.9195.9195 0 0 0-.0831.4539.308.308 0 0 0 0 .0915 1.7992 1.7992 0 0 1-.5009 1.5636c-.6991.699-1.8368.699-2.5362 0a1.7821 1.7821 0 0 1-.5252-1.2681c0-.4791.1865-.9295.5252-1.2682.4028-.4029.9579-.5873 1.5516-.506a.921.921 0 0 0 .1824.0205c.13 0 .262-.0277.3877-.0858a.9213.9213 0 0 0 .4753-.5104.921.921 0 0 0-.0247-.7167c-.602-1.3006-.3253-2.8555.6886-3.8694 1.014-1.014 2.5692-1.2909 3.87-.6885a.9212.9212 0 0 0 .7074.0287.9218.9218 0 0 0 .5197-.4792c.083-.1793.103-.3715.07-.5583a1.7988 1.7988 0 0 1 .5009-1.5637c.6991-.6993 1.8369-.6993 2.536 0 .6993.6993.6993 1.837 0 2.5362zm-7.1177 1.8111c-.7758.7759-.7758 2.0337 0 2.8095.7759.776 2.0338.776 2.8096 0 .7758-.7758.7758-2.0336 0-2.8095-.7758-.7757-2.0337-.7757-2.8096 0z" }) + ] + } + ); +}); + +export { SiHelium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.cjs new file mode 100644 index 000000000..56560bdf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#281733"; +const SiHelix = React__namespace.forwardRef(function SiHelix2({ title = "Helix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.968 4.97 4.364 0v3.55c0 .449.239.863.627 1.087l4.276 2.47zm5.339 3.083-3.7 2.138 4.86 2.807c.11-.19.17-.407.17-.633V9.552c0-.452-.241-.87-.633-1.096zm1.33 12.397c0-.449-.24-.863-.627-1.087l-4.253-2.456-3.7 2.137L19.637 24zm-13.92-4.49 3.7-2.137c-2.703-1.562-4.884-2.82-4.884-2.82a1.26 1.26 0 0 0-.17.632v2.813c0 .452.242.87.634 1.096zm-.287-1.252a.93.93 0 0 1 .343-.342l12.455-7.194-.01.007.786-.455c.392-.226.633-.643.633-1.096V2.815c0-.452-.241-.87-.633-1.096l-.765-.442a.944.944 0 0 1-.005 1.617l-.006.004-13.231 7.641a1.26 1.26 0 0 0-.633 1.096v2.813c0 .453.24.87.633 1.096l.72.416h.002a.944.944 0 0 1-.29-1.252m12.873-6.652a.945.945 0 0 1-.07 1.575l-.005.004-13.231 7.641a1.26 1.26 0 0 0-.633 1.096v2.813c0 .452.24.87.633 1.096l.765.442a.945.945 0 0 1 .01-1.62l12.456-7.194-.01.006.786-.454c.392-.226.633-.644.633-1.096V9.552c0-.453-.241-.87-.633-1.096l-.697-.403z" }) + ] + } + ); +}); + +exports.default = SiHelix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.d.ts new file mode 100644 index 000000000..f170ed168 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#281733"; +declare const SiHelix: IconType; +export { SiHelix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.mjs new file mode 100644 index 000000000..d11a7a78a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#281733"; +const SiHelix = React.forwardRef(function SiHelix2({ title = "Helix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.968 4.97 4.364 0v3.55c0 .449.239.863.627 1.087l4.276 2.47zm5.339 3.083-3.7 2.138 4.86 2.807c.11-.19.17-.407.17-.633V9.552c0-.452-.241-.87-.633-1.096zm1.33 12.397c0-.449-.24-.863-.627-1.087l-4.253-2.456-3.7 2.137L19.637 24zm-13.92-4.49 3.7-2.137c-2.703-1.562-4.884-2.82-4.884-2.82a1.26 1.26 0 0 0-.17.632v2.813c0 .452.242.87.634 1.096zm-.287-1.252a.93.93 0 0 1 .343-.342l12.455-7.194-.01.007.786-.455c.392-.226.633-.643.633-1.096V2.815c0-.452-.241-.87-.633-1.096l-.765-.442a.944.944 0 0 1-.005 1.617l-.006.004-13.231 7.641a1.26 1.26 0 0 0-.633 1.096v2.813c0 .453.24.87.633 1.096l.72.416h.002a.944.944 0 0 1-.29-1.252m12.873-6.652a.945.945 0 0 1-.07 1.575l-.005.004-13.231 7.641a1.26 1.26 0 0 0-.633 1.096v2.813c0 .452.24.87.633 1.096l.765.442a.945.945 0 0 1 .01-1.62l12.456-7.194-.01.006.786-.454c.392-.226.633-.644.633-1.096V9.552c0-.453-.241-.87-.633-1.096l-.697-.403z" }) + ] + } + ); +}); + +export { SiHelix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.cjs new file mode 100644 index 000000000..6ea6eb55a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#99CC33"; +const SiHellofresh = React__namespace.forwardRef(function SiHellofresh2({ title = "HelloFresh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.7894 22.2329c-.9661-.0974-2.0001-.326-3.042-.7589-.5912-.2456-1.1673-.5843-1.2123-.6109-.362-.2057-.6568-.457-1.2135-.7269-.7048-.3416-1.3836-.5276-2.1106-.611-.9842-.0661-1.038.0124-1.319-.0745-.1676-.0545-.3188-.1205-.495-.2848-.0526-.049-.125-.1304-.1607-.1808-.125-.1763-.1744-.3314-.194-.3997-.0284-.0981-.0424-.1563-.0423-.3324 0-.1565.0152-.2397.035-.3116.0763-.2788.173-.3408.4299-.8472.3285-.6476.5238-1.285.6176-1.9564a5.7292 5.7292 0 0 0 .0554-1.017c-.015-.5062-.0383-.6133-.0392-1.0444-.0026-1.2549.2374-2.3546.5533-3.2859.2061-.6079.3889-1.007.6046-1.4333.5845-1.1551 1.5013-2.4784 2.9354-3.6924.7732-.6545 1.9737-1.5002 3.5538-2.1176 1.3446-.5253 2.5225-.7015 3.064-.7614.664-.087 1.8067-.1234 2.975.0535.9966.151 2.2445.4867 3.5131 1.2.4312.2424.6815.4377 1.014.6296.814.4697 1.6498.7054 2.4477.8015.424.051 1.0618.0047 1.302.0666.1477.0381.2551.0862.3896.1755.1135.0755.3629.2761.4912.6485.061.1772.1243.6076-.0987.9911-.0365.063-.1066.183-.1557.2669-.0491.0838-.1423.2622-.2072.3964-.6611 1.3677-.6465 2.5461-.6009 3.263.0534.84.05 2.2341-.5417 3.9644-.1037.3032-.3364.9313-.7023 1.6143-.8281 1.5455-1.876 2.6331-2.5374 3.2256-1.474 1.3204-2.9634 2.038-3.9265 2.4021-.8975.3393-1.5834.5095-2.3024.6327-.6934.1188-1.8193.2425-3.0802.1154z" }) + ] + } + ); +}); + +exports.default = SiHellofresh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.d.ts new file mode 100644 index 000000000..530b4077c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#99CC33"; +declare const SiHellofresh: IconType; +export { SiHellofresh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.mjs new file mode 100644 index 000000000..3da5b7454 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHellofresh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#99CC33"; +const SiHellofresh = React.forwardRef(function SiHellofresh2({ title = "HelloFresh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.7894 22.2329c-.9661-.0974-2.0001-.326-3.042-.7589-.5912-.2456-1.1673-.5843-1.2123-.6109-.362-.2057-.6568-.457-1.2135-.7269-.7048-.3416-1.3836-.5276-2.1106-.611-.9842-.0661-1.038.0124-1.319-.0745-.1676-.0545-.3188-.1205-.495-.2848-.0526-.049-.125-.1304-.1607-.1808-.125-.1763-.1744-.3314-.194-.3997-.0284-.0981-.0424-.1563-.0423-.3324 0-.1565.0152-.2397.035-.3116.0763-.2788.173-.3408.4299-.8472.3285-.6476.5238-1.285.6176-1.9564a5.7292 5.7292 0 0 0 .0554-1.017c-.015-.5062-.0383-.6133-.0392-1.0444-.0026-1.2549.2374-2.3546.5533-3.2859.2061-.6079.3889-1.007.6046-1.4333.5845-1.1551 1.5013-2.4784 2.9354-3.6924.7732-.6545 1.9737-1.5002 3.5538-2.1176 1.3446-.5253 2.5225-.7015 3.064-.7614.664-.087 1.8067-.1234 2.975.0535.9966.151 2.2445.4867 3.5131 1.2.4312.2424.6815.4377 1.014.6296.814.4697 1.6498.7054 2.4477.8015.424.051 1.0618.0047 1.302.0666.1477.0381.2551.0862.3896.1755.1135.0755.3629.2761.4912.6485.061.1772.1243.6076-.0987.9911-.0365.063-.1066.183-.1557.2669-.0491.0838-.1423.2622-.2072.3964-.6611 1.3677-.6465 2.5461-.6009 3.263.0534.84.05 2.2341-.5417 3.9644-.1037.3032-.3364.9313-.7023 1.6143-.8281 1.5455-1.876 2.6331-2.5374 3.2256-1.474 1.3204-2.9634 2.038-3.9265 2.4021-.8975.3393-1.5834.5095-2.3024.6327-.6934.1188-1.8193.2425-3.0802.1154z" }) + ] + } + ); +}); + +export { SiHellofresh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.cjs new file mode 100644 index 000000000..86b7fb13f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA2128"; +const SiHellyhansen = React__namespace.forwardRef(function SiHellyhansen2({ title = "Helly Hansen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.912 5.945a1.089 1.089 0 10-.002 2.178 1.089 1.089 0 00.002-2.178zm.012.242a.85.85 0 110 1.7.85.85 0 010-1.7zm-.332.375v.952h.18v-.352h.171l.184.352h.207l-.213-.385c.046-.017.19-.067.19-.28 0-.166-.12-.287-.323-.287h-.396zm.18.157h.167c.124 0 .184.057.184.144 0 .089-.065.143-.156.143h-.196v-.287zM0 7.039v11.016h3.684v-3.78h3.523v3.78h1.42l2.15-11.016H7.221v3.854H3.695V7.039H0zm12.127 0L9.988 18.055h3.545V14.2h3.524v3.854h3.697V7.039H17.07v3.78h-3.525v-3.78h-1.418Z" }) + ] + } + ); +}); + +exports.default = SiHellyhansen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.d.ts new file mode 100644 index 000000000..94403aac4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA2128"; +declare const SiHellyhansen: IconType; +export { SiHellyhansen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.mjs new file mode 100644 index 000000000..cfe75d2ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHellyhansen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA2128"; +const SiHellyhansen = React.forwardRef(function SiHellyhansen2({ title = "Helly Hansen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.912 5.945a1.089 1.089 0 10-.002 2.178 1.089 1.089 0 00.002-2.178zm.012.242a.85.85 0 110 1.7.85.85 0 010-1.7zm-.332.375v.952h.18v-.352h.171l.184.352h.207l-.213-.385c.046-.017.19-.067.19-.28 0-.166-.12-.287-.323-.287h-.396zm.18.157h.167c.124 0 .184.057.184.144 0 .089-.065.143-.156.143h-.196v-.287zM0 7.039v11.016h3.684v-3.78h3.523v3.78h1.42l2.15-11.016H7.221v3.854H3.695V7.039H0zm12.127 0L9.988 18.055h3.545V14.2h3.524v3.854h3.697V7.039H17.07v3.78h-3.525v-3.78h-1.418Z" }) + ] + } + ); +}); + +export { SiHellyhansen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.cjs new file mode 100644 index 000000000..f0adfa7c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0F1689"; +const SiHelm = React__namespace.forwardRef(function SiHelm2({ title = "Helm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.337 0c-.475 0-.861 1.016-.861 2.269 0 .527.069 1.011.183 1.396a8.514 8.514 0 0 0-3.961 1.22 5.229 5.229 0 0 0-.595-1.093c-.606-.866-1.34-1.436-1.79-1.43a.381.381 0 0 0-.217.066c-.39.273-.123 1.326.596 2.353.267.381.559.705.84.948a8.683 8.683 0 0 0-1.528 1.716h1.734a7.179 7.179 0 0 1 5.381-2.421 7.18 7.18 0 0 1 5.382 2.42h1.733a8.687 8.687 0 0 0-1.32-1.53c.35-.249.735-.643 1.078-1.133.719-1.027.986-2.08.596-2.353a.382.382 0 0 0-.217-.065c-.45-.007-1.184.563-1.79 1.43a4.897 4.897 0 0 0-.676 1.325 8.52 8.52 0 0 0-3.899-1.42c.12-.39.193-.887.193-1.429 0-1.253-.386-2.269-.862-2.269zM1.624 9.443v5.162h1.358v-1.968h1.64v1.968h1.357V9.443H4.62v1.838H2.98V9.443zm5.912 0v5.162h3.21v-1.108H8.893v-.95h1.64v-1.142h-1.64v-.84h1.853V9.443zm4.698 0v5.162h3.218v-1.362h-1.86v-3.8zm4.706 0v5.162h1.364v-2.643l1.357 1.225 1.35-1.232v2.65h1.365V9.443h-.614l-2.1 1.914-2.109-1.914zm-11.82 7.28a8.688 8.688 0 0 0 1.412 1.548 5.206 5.206 0 0 0-.841.948c-.719 1.027-.985 2.08-.596 2.353.39.273 1.289-.338 2.007-1.364a5.23 5.23 0 0 0 .595-1.092 8.514 8.514 0 0 0 3.961 1.219 5.01 5.01 0 0 0-.183 1.396c0 1.253.386 2.269.861 2.269.476 0 .862-1.016.862-2.269 0-.542-.072-1.04-.193-1.43a8.52 8.52 0 0 0 3.9-1.42c.121.4.352.865.675 1.327.719 1.026 1.617 1.637 2.007 1.364.39-.273.123-1.326-.596-2.353-.343-.49-.727-.885-1.077-1.135a8.69 8.69 0 0 0 1.202-1.36h-1.771a7.174 7.174 0 0 1-5.227 2.252 7.174 7.174 0 0 1-5.226-2.252z" }) + ] + } + ); +}); + +exports.default = SiHelm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.d.ts new file mode 100644 index 000000000..618afd66b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0F1689"; +declare const SiHelm: IconType; +export { SiHelm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.mjs new file mode 100644 index 000000000..b99ef824e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0F1689"; +const SiHelm = React.forwardRef(function SiHelm2({ title = "Helm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.337 0c-.475 0-.861 1.016-.861 2.269 0 .527.069 1.011.183 1.396a8.514 8.514 0 0 0-3.961 1.22 5.229 5.229 0 0 0-.595-1.093c-.606-.866-1.34-1.436-1.79-1.43a.381.381 0 0 0-.217.066c-.39.273-.123 1.326.596 2.353.267.381.559.705.84.948a8.683 8.683 0 0 0-1.528 1.716h1.734a7.179 7.179 0 0 1 5.381-2.421 7.18 7.18 0 0 1 5.382 2.42h1.733a8.687 8.687 0 0 0-1.32-1.53c.35-.249.735-.643 1.078-1.133.719-1.027.986-2.08.596-2.353a.382.382 0 0 0-.217-.065c-.45-.007-1.184.563-1.79 1.43a4.897 4.897 0 0 0-.676 1.325 8.52 8.52 0 0 0-3.899-1.42c.12-.39.193-.887.193-1.429 0-1.253-.386-2.269-.862-2.269zM1.624 9.443v5.162h1.358v-1.968h1.64v1.968h1.357V9.443H4.62v1.838H2.98V9.443zm5.912 0v5.162h3.21v-1.108H8.893v-.95h1.64v-1.142h-1.64v-.84h1.853V9.443zm4.698 0v5.162h3.218v-1.362h-1.86v-3.8zm4.706 0v5.162h1.364v-2.643l1.357 1.225 1.35-1.232v2.65h1.365V9.443h-.614l-2.1 1.914-2.109-1.914zm-11.82 7.28a8.688 8.688 0 0 0 1.412 1.548 5.206 5.206 0 0 0-.841.948c-.719 1.027-.985 2.08-.596 2.353.39.273 1.289-.338 2.007-1.364a5.23 5.23 0 0 0 .595-1.092 8.514 8.514 0 0 0 3.961 1.219 5.01 5.01 0 0 0-.183 1.396c0 1.253.386 2.269.861 2.269.476 0 .862-1.016.862-2.269 0-.542-.072-1.04-.193-1.43a8.52 8.52 0 0 0 3.9-1.42c.121.4.352.865.675 1.327.719 1.026 1.617 1.637 2.007 1.364.39-.273.123-1.326-.596-2.353-.343-.49-.727-.885-1.077-1.135a8.69 8.69 0 0 0 1.202-1.36h-1.771a7.174 7.174 0 0 1-5.227 2.252 7.174 7.174 0 0 1-5.226-2.252z" }) + ] + } + ); +}); + +export { SiHelm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.cjs new file mode 100644 index 000000000..78875efe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2FC774"; +const SiHelpdesk = React__namespace.forwardRef(function SiHelpdesk2({ title = "HelpDesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 10.71l6.12-5.31H12c-2.16 0-4.32.06-6.36.21-.84.06-1.5.69-1.56 1.53-.12 1.26-.18 2.85-.18 4.41v.87c0 1.59.06 3.15.18 4.41.09.81.75 1.47 1.56 1.5a90 90 0 0012.72 0c.81-.03 1.5-.69 1.56-1.5.09-1.2.15-2.67.18-4.17L24 9.3V12.66c0 1.59-.06 3.18-.18 4.47a5.57 5.57 0 01-5.19 5.1c-2.13.18-4.38.27-6.63.27s-4.5-.09-6.63-.24a5.57 5.57 0 01-5.19-5.1C.06 15.81 0 14.13 0 12.45v-.87C0 9.9.06 8.22.18 6.84a5.57 5.57 0 015.19-5.1C7.5 1.59 9.75 1.5 12 1.5h12v3.9L12 15.81l-5.61-4.86L9.33 8.4z" }) + ] + } + ); +}); + +exports.default = SiHelpdesk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.d.ts new file mode 100644 index 000000000..8a5738d3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2FC774"; +declare const SiHelpdesk: IconType; +export { SiHelpdesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.mjs new file mode 100644 index 000000000..c24ecc0a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpdesk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2FC774"; +const SiHelpdesk = React.forwardRef(function SiHelpdesk2({ title = "HelpDesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 10.71l6.12-5.31H12c-2.16 0-4.32.06-6.36.21-.84.06-1.5.69-1.56 1.53-.12 1.26-.18 2.85-.18 4.41v.87c0 1.59.06 3.15.18 4.41.09.81.75 1.47 1.56 1.5a90 90 0 0012.72 0c.81-.03 1.5-.69 1.56-1.5.09-1.2.15-2.67.18-4.17L24 9.3V12.66c0 1.59-.06 3.18-.18 4.47a5.57 5.57 0 01-5.19 5.1c-2.13.18-4.38.27-6.63.27s-4.5-.09-6.63-.24a5.57 5.57 0 01-5.19-5.1C.06 15.81 0 14.13 0 12.45v-.87C0 9.9.06 8.22.18 6.84a5.57 5.57 0 015.19-5.1C7.5 1.59 9.75 1.5 12 1.5h12v3.9L12 15.81l-5.61-4.86L9.33 8.4z" }) + ] + } + ); +}); + +export { SiHelpdesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.cjs new file mode 100644 index 000000000..a8e038f83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1292EE"; +const SiHelpscout = React__namespace.forwardRef(function SiHelpscout2({ title = "Help Scout", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.497 14.044 7.022-7.021a4.946 4.946 0 0 0 1.474-3.526A4.99 4.99 0 0 0 10.563 0L3.54 7.024a4.945 4.945 0 0 0-1.473 3.525c0 1.373.55 2.6 1.43 3.496zm17.007-4.103-7.023 7.022a4.946 4.946 0 0 0-1.473 3.525c0 1.36.55 2.601 1.43 3.497l7.022-7.022a4.943 4.943 0 0 0 1.474-3.526c0-1.373-.55-2.6-1.43-3.496zm-.044-2.904a4.944 4.944 0 0 0 1.474-3.525c0-1.36-.55-2.6-1.43-3.497L3.54 16.965A4.986 4.986 0 0 0 3.497 24Z" }) + ] + } + ); +}); + +exports.default = SiHelpscout; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.d.ts new file mode 100644 index 000000000..8ab3f62aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1292EE"; +declare const SiHelpscout: IconType; +export { SiHelpscout as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.mjs new file mode 100644 index 000000000..c277a3dec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHelpscout.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1292EE"; +const SiHelpscout = React.forwardRef(function SiHelpscout2({ title = "Help Scout", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.497 14.044 7.022-7.021a4.946 4.946 0 0 0 1.474-3.526A4.99 4.99 0 0 0 10.563 0L3.54 7.024a4.945 4.945 0 0 0-1.473 3.525c0 1.373.55 2.6 1.43 3.496zm17.007-4.103-7.023 7.022a4.946 4.946 0 0 0-1.473 3.525c0 1.36.55 2.601 1.43 3.497l7.022-7.022a4.943 4.943 0 0 0 1.474-3.526c0-1.373-.55-2.6-1.43-3.496zm-.044-2.904a4.944 4.944 0 0 0 1.474-3.525c0-1.36-.55-2.6-1.43-3.497L3.54 16.965A4.986 4.986 0 0 0 3.497 24Z" }) + ] + } + ); +}); + +export { SiHelpscout as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.cjs new file mode 100644 index 000000000..db16d958d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E1251B"; +const SiHepsiemlak = React__namespace.forwardRef(function SiHepsiemlak2({ title = "Hepsiemlak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.7214 14.9904c0 .4768-.3982.7843-1.0803.7843-.3203 0-.74-.06-1.0463-.272l.2502-.4716c.2016.1308.4467.2262.8009.2262.2943 0 .4348-.081.4348-.217 0-.1109-.1188-.1736-.3911-.2122l-.1916-.0257c-.5435-.074-.8131-.3076-.8131-.7024 0-.4745.3739-.7553.9927-.7553.341-.0064.6784.0689.9832.2191l-.2137.4853c-.1882-.0905-.4852-.1848-.7499-.1885-.2405 0-.3618.0835-.3618.21 0 .1334.1697.1667.3836.1977l.2087.031c.51.0761.7937.3001.7937.6911zm-2.2784-.4613c0 .6757-.4832 1.1846-1.1238 1.1846-.312 0-.5322-.1184-.6832-.2929v.9614h-.6234v-2.9774h.611v.2486c.1514-.1838.374-.3091.693-.3091.6421 0 1.1264.5087 1.1264 1.1848zm-.6423 0c0-.3436-.23-.6202-.5991-.6202-.3549 0-.597.2646-.597.6202 0 .355.2421.6203.597.6203.3691 0 .5991-.2767.5991-.6203zm-2.0919.0277a1.7387 1.7387 0 0 1-.0121.2086H3.0679c.0666.3327.299.4805.5906.4805a.9243.9243 0 0 0 .5808-.2217l.363.4005c-.2612.2406-.5928.35-.9796.35-.704 0-1.1923-.4803-1.1923-1.208 0-.7276.474-1.2224 1.1618-1.2224.6617 0 1.1138.4933 1.1166 1.2125zm-.6213-.214c-.0567-.2956-.2347-.4623-.5-.4623-.292 0-.4626.1762-.517.4623h1.017zm6.0897 1.368h.6076v-2.2784h-.6076v2.2785zM4.709 14.5572v-.0014l-.0001.001v.0004zm.6076-4.4447 2.87 2.518 1.2312-1.415-4.1012-3.5977-4.1012 3.5978 1.2311 1.4149 2.8701-2.518zm-3.976 3.2444c-.2637 0-.52.0804-.6916.3077l.0004-.9898H0v3.038h.649v-1.2574c0-.3457.2315-.5186.5099-.5186.2964 0 .4703.1836.4703.5142v1.262h.6493V14.252c0-.5328-.3905-.8953-.938-.8953zm16.5835 2.3558h.6076v-3.0379h-.6076v3.038zm5.1964-1.2163.871-1.0811-.7676.0005-.6544.818h-.221l-.0006-1.559h-.6263l.0015 3.038.6262-.0004-.0004-.929h.2113l.6697.9287.7702-.0004-.8796-1.2153zm-1.7033-1.0903.0006 2.3084h-.6114v-.255c-.1506.1849-.3758.315-.6945.3154-.6397 0-1.1243-.5215-1.1244-1.2149-.0003-.6935.483-1.2152 1.1231-1.2156.319 0 .5418.1287.6953.3166v-.2549h.6113zm-.592 1.1533c-.0005-.3645-.2424-.6363-.5993-.6361-.3665 0-.5986.2838-.5986.6364 0 .3528.2326.636.5992.6357.3572 0 .5992-.2718.5986-.636zm-4.2813-1.2502c-.308.0003-.6144.1047-.7955.4019-.1572-.249-.4365-.4012-.7741-.4012-.266 0-.5224.0885-.689.3374v-.2756h-.6144v2.3426h.6314v-1.2841c-.0006-.3528.2247-.5295.4953-.5295.288 0 .4576.1877.4576.525v1.2876h.6313V14.429c-.0004-.3527.2247-.5295.4953-.5295.2855 0 .4572.1875.4572.525v1.2887h.6291v-1.4914l.0004.001c-.0004-.544-.3732-.9137-.9246-.9137zm-3.0249 1.2472a1.838 1.838 0 0 1-.0118.2089H11.878c.067.3325.2994.4803.591.4803a.9258.9258 0 0 0 .5804-.2216l.3633.4c-.2608.241-.5928.3508-.9792.3508-.704 0-1.1927-.4803-1.1928-1.2072-.0006-.7268.4734-1.2228 1.161-1.2232.6617 0 1.114.4925 1.1172 1.212zm-.6213-.2131c-.057-.2957-.235-.462-.5003-.462-.2917 0-.4622.1764-.5168.462h1.0171zm.6214.2134zm-3.0601-2.1814a.3796.3796 0 0 0-.351.2342.3794.3794 0 0 0 .0819.4139.3794.3794 0 0 0 .414.0824.38.38 0 0 0 .1233-.6193.379.379 0 0 0-.2682-.1112z" }) + ] + } + ); +}); + +exports.default = SiHepsiemlak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.d.ts new file mode 100644 index 000000000..c83f34ddd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E1251B"; +declare const SiHepsiemlak: IconType; +export { SiHepsiemlak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.mjs new file mode 100644 index 000000000..28193dc0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHepsiemlak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E1251B"; +const SiHepsiemlak = React.forwardRef(function SiHepsiemlak2({ title = "Hepsiemlak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.7214 14.9904c0 .4768-.3982.7843-1.0803.7843-.3203 0-.74-.06-1.0463-.272l.2502-.4716c.2016.1308.4467.2262.8009.2262.2943 0 .4348-.081.4348-.217 0-.1109-.1188-.1736-.3911-.2122l-.1916-.0257c-.5435-.074-.8131-.3076-.8131-.7024 0-.4745.3739-.7553.9927-.7553.341-.0064.6784.0689.9832.2191l-.2137.4853c-.1882-.0905-.4852-.1848-.7499-.1885-.2405 0-.3618.0835-.3618.21 0 .1334.1697.1667.3836.1977l.2087.031c.51.0761.7937.3001.7937.6911zm-2.2784-.4613c0 .6757-.4832 1.1846-1.1238 1.1846-.312 0-.5322-.1184-.6832-.2929v.9614h-.6234v-2.9774h.611v.2486c.1514-.1838.374-.3091.693-.3091.6421 0 1.1264.5087 1.1264 1.1848zm-.6423 0c0-.3436-.23-.6202-.5991-.6202-.3549 0-.597.2646-.597.6202 0 .355.2421.6203.597.6203.3691 0 .5991-.2767.5991-.6203zm-2.0919.0277a1.7387 1.7387 0 0 1-.0121.2086H3.0679c.0666.3327.299.4805.5906.4805a.9243.9243 0 0 0 .5808-.2217l.363.4005c-.2612.2406-.5928.35-.9796.35-.704 0-1.1923-.4803-1.1923-1.208 0-.7276.474-1.2224 1.1618-1.2224.6617 0 1.1138.4933 1.1166 1.2125zm-.6213-.214c-.0567-.2956-.2347-.4623-.5-.4623-.292 0-.4626.1762-.517.4623h1.017zm6.0897 1.368h.6076v-2.2784h-.6076v2.2785zM4.709 14.5572v-.0014l-.0001.001v.0004zm.6076-4.4447 2.87 2.518 1.2312-1.415-4.1012-3.5977-4.1012 3.5978 1.2311 1.4149 2.8701-2.518zm-3.976 3.2444c-.2637 0-.52.0804-.6916.3077l.0004-.9898H0v3.038h.649v-1.2574c0-.3457.2315-.5186.5099-.5186.2964 0 .4703.1836.4703.5142v1.262h.6493V14.252c0-.5328-.3905-.8953-.938-.8953zm16.5835 2.3558h.6076v-3.0379h-.6076v3.038zm5.1964-1.2163.871-1.0811-.7676.0005-.6544.818h-.221l-.0006-1.559h-.6263l.0015 3.038.6262-.0004-.0004-.929h.2113l.6697.9287.7702-.0004-.8796-1.2153zm-1.7033-1.0903.0006 2.3084h-.6114v-.255c-.1506.1849-.3758.315-.6945.3154-.6397 0-1.1243-.5215-1.1244-1.2149-.0003-.6935.483-1.2152 1.1231-1.2156.319 0 .5418.1287.6953.3166v-.2549h.6113zm-.592 1.1533c-.0005-.3645-.2424-.6363-.5993-.6361-.3665 0-.5986.2838-.5986.6364 0 .3528.2326.636.5992.6357.3572 0 .5992-.2718.5986-.636zm-4.2813-1.2502c-.308.0003-.6144.1047-.7955.4019-.1572-.249-.4365-.4012-.7741-.4012-.266 0-.5224.0885-.689.3374v-.2756h-.6144v2.3426h.6314v-1.2841c-.0006-.3528.2247-.5295.4953-.5295.288 0 .4576.1877.4576.525v1.2876h.6313V14.429c-.0004-.3527.2247-.5295.4953-.5295.2855 0 .4572.1875.4572.525v1.2887h.6291v-1.4914l.0004.001c-.0004-.544-.3732-.9137-.9246-.9137zm-3.0249 1.2472a1.838 1.838 0 0 1-.0118.2089H11.878c.067.3325.2994.4803.591.4803a.9258.9258 0 0 0 .5804-.2216l.3633.4c-.2608.241-.5928.3508-.9792.3508-.704 0-1.1927-.4803-1.1928-1.2072-.0006-.7268.4734-1.2228 1.161-1.2232.6617 0 1.114.4925 1.1172 1.212zm-.6213-.2131c-.057-.2957-.235-.462-.5003-.462-.2917 0-.4622.1764-.5168.462h1.0171zm.6214.2134zm-3.0601-2.1814a.3796.3796 0 0 0-.351.2342.3794.3794 0 0 0 .0819.4139.3794.3794 0 0 0 .414.0824.38.38 0 0 0 .1233-.6193.379.379 0 0 0-.2682-.1112z" }) + ] + } + ); +}); + +export { SiHepsiemlak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHere.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHere.cjs new file mode 100644 index 000000000..82fc5f095 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHere.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AFAA"; +const SiHere = React__namespace.forwardRef(function SiHere2({ title = "HERE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.29 1.007c-.697.036-1.367.384-2.008 1.036-.97.987-1.104 2.206-.679 3.316l-1.091-1.312c-.106.041-.306.203-.506.406-.572.596-.705 1.516-.558 2.125l-.734-.635-1.45 1.475 1.996 2.03c-1.583-1.326-3.007-1.259-4.323.082-1.331 1.353-1.252 3.006-.147 4.385l-.186-.189c-1.184-1.205-2.328-1.463-3.46-.298-.666.663-.772 1.314-.706 1.897l-2.794-2.83-1.625 1.651 5.372 5.48H0l3.312 3.37 3.282-3.34h3.128l-2.275-2.314c-.798-.8-1.039-1.354-.547-1.855.36-.379.773-.367 1.278.148l2.741 2.803 1.65-1.679-2.049-2.084c1.623 1.368 3.393 1.03 4.738-.351.706-.704 1.09-1.355 1.278-1.801l-1.452-.825a6.544 6.544 0 0 1-.878 1.218c-.799.812-1.543.812-2.048.392l2.94-2.992L17 12.25l1.65-1.678-1.782-1.815c-1.45-1.476-1.025-2.26-.691-2.599.212-.217.425-.378.572-.46a4.183 4.183 0 0 0 .797 1.096c1.728 1.774 3.62 1.53 5.07.042.865-.88 1.279-1.692 1.384-2.099l-1.424-.799a5.902 5.902 0 0 1-1.023 1.489c-.786.812-1.532.813-2.037.394l2.97-3.007-.374-.379C21.13 1.43 20.188.961 19.291 1.007zm-.055 1.918c.273-.002.558.113.838.35l-1.596 1.623c-.452-.527-.465-1.136 0-1.623.226-.23.485-.349.758-.35zm-7.357 7.486c.275-.002.564.113.85.35l-1.61 1.626c-.452-.528-.466-1.151 0-1.626.227-.23.486-.349.76-.35z" }) + ] + } + ); +}); + +exports.default = SiHere; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHere.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHere.d.ts new file mode 100644 index 000000000..f6caf707a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHere.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AFAA"; +declare const SiHere: IconType; +export { SiHere as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHere.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHere.mjs new file mode 100644 index 000000000..dd1941e6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHere.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AFAA"; +const SiHere = React.forwardRef(function SiHere2({ title = "HERE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.29 1.007c-.697.036-1.367.384-2.008 1.036-.97.987-1.104 2.206-.679 3.316l-1.091-1.312c-.106.041-.306.203-.506.406-.572.596-.705 1.516-.558 2.125l-.734-.635-1.45 1.475 1.996 2.03c-1.583-1.326-3.007-1.259-4.323.082-1.331 1.353-1.252 3.006-.147 4.385l-.186-.189c-1.184-1.205-2.328-1.463-3.46-.298-.666.663-.772 1.314-.706 1.897l-2.794-2.83-1.625 1.651 5.372 5.48H0l3.312 3.37 3.282-3.34h3.128l-2.275-2.314c-.798-.8-1.039-1.354-.547-1.855.36-.379.773-.367 1.278.148l2.741 2.803 1.65-1.679-2.049-2.084c1.623 1.368 3.393 1.03 4.738-.351.706-.704 1.09-1.355 1.278-1.801l-1.452-.825a6.544 6.544 0 0 1-.878 1.218c-.799.812-1.543.812-2.048.392l2.94-2.992L17 12.25l1.65-1.678-1.782-1.815c-1.45-1.476-1.025-2.26-.691-2.599.212-.217.425-.378.572-.46a4.183 4.183 0 0 0 .797 1.096c1.728 1.774 3.62 1.53 5.07.042.865-.88 1.279-1.692 1.384-2.099l-1.424-.799a5.902 5.902 0 0 1-1.023 1.489c-.786.812-1.532.813-2.037.394l2.97-3.007-.374-.379C21.13 1.43 20.188.961 19.291 1.007zm-.055 1.918c.273-.002.558.113.838.35l-1.596 1.623c-.452-.527-.465-1.136 0-1.623.226-.23.485-.349.758-.35zm-7.357 7.486c.275-.002.564.113.85.35l-1.61 1.626c-.452-.528-.466-1.151 0-1.626.227-.23.486-.349.76-.35z" }) + ] + } + ); +}); + +export { SiHere as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.cjs new file mode 100644 index 000000000..862195a55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0091CD"; +const SiHermes = React__namespace.forwardRef(function SiHermes2({ title = "Hermes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.818 4.516-1.05 4.148h2.175L24 4.516M19.41 14.04h2.17l1.04-4.08h-2.178m-2.41 9.523h2.154l1.056-4.147h-2.16m.193-5.377H5.55v.92l3.341 3.161h9.349m2.41-9.525H0v1.116l3.206 3.032H19.6m-8.372 7.58 3.43 3.24h2.205l1.05-4.147h-6.685" }) + ] + } + ); +}); + +exports.default = SiHermes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.d.ts new file mode 100644 index 000000000..34a339773 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0091CD"; +declare const SiHermes: IconType; +export { SiHermes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.mjs new file mode 100644 index 000000000..16b42b331 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHermes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0091CD"; +const SiHermes = React.forwardRef(function SiHermes2({ title = "Hermes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.818 4.516-1.05 4.148h2.175L24 4.516M19.41 14.04h2.17l1.04-4.08h-2.178m-2.41 9.523h2.154l1.056-4.147h-2.16m.193-5.377H5.55v.92l3.341 3.161h9.349m2.41-9.525H0v1.116l3.206 3.032H19.6m-8.372 7.58 3.43 3.24h2.205l1.05-4.147h-6.685" }) + ] + } + ); +}); + +export { SiHermes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.cjs new file mode 100644 index 000000000..704d8d37a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B93FF"; +const SiHeroicgameslauncher = React__namespace.forwardRef(function SiHeroicgameslauncher2({ title = "Heroic Games Launcher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0 11.997 0a.891.891 0 0 0-.36.075C8.964 1.253 6.29 2.434 3.618 3.613A.893.893 0 0 0 3.1 4.619l3.146 14.646c.043.197.15.375.307.504l4.88 4.027a.895.895 0 0 0 1.131.006l5-4.031a.895.895 0 0 0 .315-.516L20.9 4.614a.895.895 0 0 0-.515-1L12.358.074A.892.892 0 0 0 12 0zm0 .35v.003c.114 0 .228.023.334.07l7.42 3.27a.827.827 0 0 1 .476.924l-2.793 13.535a.83.83 0 0 1-.289.478l-4.623 3.725a.826.826 0 0 1-1.045-.006l-4.513-3.723a.829.829 0 0 1-.281-.465L3.775 4.622a.83.83 0 0 1 .476-.931L11.665.42a.832.832 0 0 1 .334-.07zm-.045 1.954L10.28 5.202h-.002l1.211 11.301.512.409.512-.409 1.117-11.3zM9.003 16.261l-.584 1.068.584 1.07 2.295-.38.47-.69-.47-.671zm5.996 0-2.295.397-.47.671.47.69 2.295.38.584-1.07zm-2.998 1.488-.51.444-.281 2.168.789.55.793-.55-.295-2.168z" }) + ] + } + ); +}); + +exports.default = SiHeroicgameslauncher; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.d.ts new file mode 100644 index 000000000..52cbeb845 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B93FF"; +declare const SiHeroicgameslauncher: IconType; +export { SiHeroicgameslauncher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.mjs new file mode 100644 index 000000000..a59b9bee2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroicgameslauncher.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B93FF"; +const SiHeroicgameslauncher = React.forwardRef(function SiHeroicgameslauncher2({ title = "Heroic Games Launcher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0 11.997 0a.891.891 0 0 0-.36.075C8.964 1.253 6.29 2.434 3.618 3.613A.893.893 0 0 0 3.1 4.619l3.146 14.646c.043.197.15.375.307.504l4.88 4.027a.895.895 0 0 0 1.131.006l5-4.031a.895.895 0 0 0 .315-.516L20.9 4.614a.895.895 0 0 0-.515-1L12.358.074A.892.892 0 0 0 12 0zm0 .35v.003c.114 0 .228.023.334.07l7.42 3.27a.827.827 0 0 1 .476.924l-2.793 13.535a.83.83 0 0 1-.289.478l-4.623 3.725a.826.826 0 0 1-1.045-.006l-4.513-3.723a.829.829 0 0 1-.281-.465L3.775 4.622a.83.83 0 0 1 .476-.931L11.665.42a.832.832 0 0 1 .334-.07zm-.045 1.954L10.28 5.202h-.002l1.211 11.301.512.409.512-.409 1.117-11.3zM9.003 16.261l-.584 1.068.584 1.07 2.295-.38.47-.69-.47-.671zm5.996 0-2.295.397-.47.671.47.69 2.295.38.584-1.07zm-2.998 1.488-.51.444-.281 2.168.789.55.793-.55-.295-2.168z" }) + ] + } + ); +}); + +export { SiHeroicgameslauncher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.cjs new file mode 100644 index 000000000..fbdb000a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHeroui = React__namespace.forwardRef(function SiHeroui2({ title = "HeroUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.353 0h11.294A6.353 6.353 0 0 1 24 6.353v11.294A6.353 6.353 0 0 1 17.647 24H6.353A6.353 6.353 0 0 1 0 17.647V6.353A6.353 6.353 0 0 1 6.353 0Zm7.755 6.913h-.933v6.702a2.88 2.88 0 0 1-.362 1.45c-.24.424-.596.77-1.025 1-.443.244-.96.365-1.553.365-.592 0-1.108-.121-1.55-.364a2.603 2.603 0 0 1-1.024-1 2.865 2.865 0 0 1-.365-1.45V6.912h-.933v6.767a3.558 3.558 0 0 0 .489 1.862c.327.547.798.994 1.362 1.292.582.316 1.256.474 2.021.474.769 0 1.444-.157 2.024-.471a3.473 3.473 0 0 0 1.36-1.293c.33-.565.5-1.21.49-1.864V6.913Zm3.648 10.22V6.914h-.933v10.22h.933Z" }) + ] + } + ); +}); + +exports.default = SiHeroui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.d.ts new file mode 100644 index 000000000..e9ec1bd56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHeroui: IconType; +export { SiHeroui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.mjs new file mode 100644 index 000000000..18d309fd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHeroui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHeroui = React.forwardRef(function SiHeroui2({ title = "HeroUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.353 0h11.294A6.353 6.353 0 0 1 24 6.353v11.294A6.353 6.353 0 0 1 17.647 24H6.353A6.353 6.353 0 0 1 0 17.647V6.353A6.353 6.353 0 0 1 6.353 0Zm7.755 6.913h-.933v6.702a2.88 2.88 0 0 1-.362 1.45c-.24.424-.596.77-1.025 1-.443.244-.96.365-1.553.365-.592 0-1.108-.121-1.55-.364a2.603 2.603 0 0 1-1.024-1 2.865 2.865 0 0 1-.365-1.45V6.912h-.933v6.767a3.558 3.558 0 0 0 .489 1.862c.327.547.798.994 1.362 1.292.582.316 1.256.474 2.021.474.769 0 1.444-.157 2.024-.471a3.473 3.473 0 0 0 1.36-1.293c.33-.565.5-1.21.49-1.864V6.913Zm3.648 10.22V6.914h-.933v10.22h.933Z" }) + ] + } + ); +}); + +export { SiHeroui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.cjs new file mode 100644 index 000000000..a38570ea1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D50C2D"; +const SiHetzner = React__namespace.forwardRef(function SiHetzner2({ title = "Hetzner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm4.602 4.025h2.244c.509 0 .716.215.716.717v5.64h8.883v-5.64c0-.509.215-.717.717-.717h2.229c.5 0 .71.23.724.717v14.516c0 .509-.215.717-.717.717h-2.23c-.51 0-.717-.215-.717-.717v-5.735H7.562v5.735c0 .516-.215.717-.716.717H4.602c-.51 0-.717-.208-.717-.717V4.742c0-.509.207-.717.717-.717z" }) + ] + } + ); +}); + +exports.default = SiHetzner; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.d.ts new file mode 100644 index 000000000..c1d9d7242 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D50C2D"; +declare const SiHetzner: IconType; +export { SiHetzner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.mjs new file mode 100644 index 000000000..2f422c57e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHetzner.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D50C2D"; +const SiHetzner = React.forwardRef(function SiHetzner2({ title = "Hetzner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm4.602 4.025h2.244c.509 0 .716.215.716.717v5.64h8.883v-5.64c0-.509.215-.717.717-.717h2.229c.5 0 .71.23.724.717v14.516c0 .509-.215.717-.717.717h-2.23c-.51 0-.717-.215-.717-.717v-5.735H7.562v5.735c0 .516-.215.717-.716.717H4.602c-.51 0-.717-.208-.717-.717V4.742c0-.509.207-.717.717-.717z" }) + ] + } + ); +}); + +export { SiHetzner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.cjs new file mode 100644 index 000000000..b123b8f9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHevy = React__namespace.forwardRef(function SiHevy2({ title = "Hevy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.76 2.489c1.473 0 2.672 1.16 2.716 2.607q.002 1.622.001 3.244c0 .572-.416 1.2-1.045 1.4-.63.202-1.013-.431-1.044-.975q-.002-1.794-.001-3.587a.624.624 0 0 0-.71-.615c-.375.047-.704.105-1.048.159l-.32.058q-1.33.253-2.122.584c-.338.142-.584.287-.737.423-.096.085-.133.141-.14.177-.041.167-.044.286-.069.449-.047.45-.057.749-.083 1.176l-.018.453c-.041 1.41-.049 2.343-.049 3.648.007 1.219.019 2.056.047 3.192.016.69.044 1.229.074 1.913q.02.348.046.696c.013.218.038.384.058.588q.025.026.053.05c.137.116.377.252.716.39q.495.203 1.212.39c.344.095.68.161 1.001.234.497.104.88.165 1.36.248a.626.626 0 0 0 .72-.512c.008-.033.006-.067.009-.1v-2.091a5.57 5.57 0 0 1 2.688-4.76l2.693-1.559a3.51 3.51 0 0 0 1.759-2.926c.005-.734.002-1.468.002-2.202 0-1.485 1.216-2.69 2.717-2.69q.22 0 .438.036c.506.08.85.148 1.323.236.268.052.478.102.744.16.139.032.271.065.415.1l.264.07c2.073.56 3.168 1.302 3.322 2.444.022.16.031.285.048.437q.023.28.043.56c.034.503.049.91.073 1.418.023.553.032.982.047 1.527l.019.914c.012.75.015 1.337.018 2.082l-.003.941q-.006.635-.015 1.27-.01.506-.026 1.012c-.011.387-.028.681-.044 1.053q-.015.263-.033.524c-.01.153-.026.305-.039.457-.014.167-.036.297-.056.462q-.02.138-.052.273c-.297 1.233-1.592 2.017-3.886 2.553-.243.058-.515.11-.733.156-.293.059-.52.094-.796.143q-.341.055-.682.104c-1.486.213-2.864-.807-3.078-2.277a3 3 0 0 1-.025-.256c-.007-1.09-.003-2.18-.003-3.269 0-.571.506-1.273 1.045-1.4s1.012.432 1.043.976c.004 1.188.002 2.376.002 3.564.003.38.341.67.717.614.335-.045.572-.09.872-.138.284-.048.5-.096.776-.149.249-.05.437-.102.679-.158.183-.046.322-.088.491-.135.116-.033.23-.072.344-.108.102-.034.201-.073.302-.109q.13-.051.258-.107c.073-.032.143-.07.214-.105.079-.039.134-.082.208-.127q.19-.137.219-.252c.091-.44.106-.946.134-1.327.09-1.976.081-3.96.064-5.744-.013-.934-.031-1.647-.058-2.548l-.031-.783c-.018-.403-.04-.715-.062-1.089-.01-.165-.029-.329-.043-.493l-.015-.128-.047-.044c-.136-.116-.375-.251-.713-.39q-.765-.313-2.063-.59c-.58-.124-1.01-.193-1.518-.282a.625.625 0 0 0-.726.564c-.005.713-.002 1.427-.002 2.14a5.57 5.57 0 0 1-2.689 4.759q-1.344.783-2.692 1.559a3.51 3.51 0 0 0-1.76 2.927v2.201q0 .217-.037.435c-.242 1.465-1.64 2.46-3.12 2.22-.366-.058-.646-.112-1.004-.176-.284-.052-.501-.101-.766-.155-.33-.068-.666-.16-.966-.234C1.52 20.31.421 19.57.255 18.434c-.038-.263-.047-.454-.075-.718-.033-.407-.047-.72-.07-1.12-.03-.593-.044-1.076-.063-1.677-.025-.877-.032-1.546-.043-2.391l-.003-.495L0 11.65l.002-.85c.004-.806.016-1.426.035-2.214.008-.305.022-.61.033-.916.011-.305.034-.61.052-.915.015-.24.037-.423.057-.653.013-.123.033-.246.049-.369.01-.077.029-.152.043-.228.272-1.18 1.41-1.955 3.4-2.48.249-.07.443-.106.679-.163.195-.043.391-.079.587-.118q.232-.043.466-.082c.24-.04.424-.065.654-.101l.342-.047q.18-.024.36-.024" }) + ] + } + ); +}); + +exports.default = SiHevy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.d.ts new file mode 100644 index 000000000..59b8a8cad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHevy: IconType; +export { SiHevy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.mjs new file mode 100644 index 000000000..ad48d6afd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHevy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHevy = React.forwardRef(function SiHevy2({ title = "Hevy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.76 2.489c1.473 0 2.672 1.16 2.716 2.607q.002 1.622.001 3.244c0 .572-.416 1.2-1.045 1.4-.63.202-1.013-.431-1.044-.975q-.002-1.794-.001-3.587a.624.624 0 0 0-.71-.615c-.375.047-.704.105-1.048.159l-.32.058q-1.33.253-2.122.584c-.338.142-.584.287-.737.423-.096.085-.133.141-.14.177-.041.167-.044.286-.069.449-.047.45-.057.749-.083 1.176l-.018.453c-.041 1.41-.049 2.343-.049 3.648.007 1.219.019 2.056.047 3.192.016.69.044 1.229.074 1.913q.02.348.046.696c.013.218.038.384.058.588q.025.026.053.05c.137.116.377.252.716.39q.495.203 1.212.39c.344.095.68.161 1.001.234.497.104.88.165 1.36.248a.626.626 0 0 0 .72-.512c.008-.033.006-.067.009-.1v-2.091a5.57 5.57 0 0 1 2.688-4.76l2.693-1.559a3.51 3.51 0 0 0 1.759-2.926c.005-.734.002-1.468.002-2.202 0-1.485 1.216-2.69 2.717-2.69q.22 0 .438.036c.506.08.85.148 1.323.236.268.052.478.102.744.16.139.032.271.065.415.1l.264.07c2.073.56 3.168 1.302 3.322 2.444.022.16.031.285.048.437q.023.28.043.56c.034.503.049.91.073 1.418.023.553.032.982.047 1.527l.019.914c.012.75.015 1.337.018 2.082l-.003.941q-.006.635-.015 1.27-.01.506-.026 1.012c-.011.387-.028.681-.044 1.053q-.015.263-.033.524c-.01.153-.026.305-.039.457-.014.167-.036.297-.056.462q-.02.138-.052.273c-.297 1.233-1.592 2.017-3.886 2.553-.243.058-.515.11-.733.156-.293.059-.52.094-.796.143q-.341.055-.682.104c-1.486.213-2.864-.807-3.078-2.277a3 3 0 0 1-.025-.256c-.007-1.09-.003-2.18-.003-3.269 0-.571.506-1.273 1.045-1.4s1.012.432 1.043.976c.004 1.188.002 2.376.002 3.564.003.38.341.67.717.614.335-.045.572-.09.872-.138.284-.048.5-.096.776-.149.249-.05.437-.102.679-.158.183-.046.322-.088.491-.135.116-.033.23-.072.344-.108.102-.034.201-.073.302-.109q.13-.051.258-.107c.073-.032.143-.07.214-.105.079-.039.134-.082.208-.127q.19-.137.219-.252c.091-.44.106-.946.134-1.327.09-1.976.081-3.96.064-5.744-.013-.934-.031-1.647-.058-2.548l-.031-.783c-.018-.403-.04-.715-.062-1.089-.01-.165-.029-.329-.043-.493l-.015-.128-.047-.044c-.136-.116-.375-.251-.713-.39q-.765-.313-2.063-.59c-.58-.124-1.01-.193-1.518-.282a.625.625 0 0 0-.726.564c-.005.713-.002 1.427-.002 2.14a5.57 5.57 0 0 1-2.689 4.759q-1.344.783-2.692 1.559a3.51 3.51 0 0 0-1.76 2.927v2.201q0 .217-.037.435c-.242 1.465-1.64 2.46-3.12 2.22-.366-.058-.646-.112-1.004-.176-.284-.052-.501-.101-.766-.155-.33-.068-.666-.16-.966-.234C1.52 20.31.421 19.57.255 18.434c-.038-.263-.047-.454-.075-.718-.033-.407-.047-.72-.07-1.12-.03-.593-.044-1.076-.063-1.677-.025-.877-.032-1.546-.043-2.391l-.003-.495L0 11.65l.002-.85c.004-.806.016-1.426.035-2.214.008-.305.022-.61.033-.916.011-.305.034-.61.052-.915.015-.24.037-.423.057-.653.013-.123.033-.246.049-.369.01-.077.029-.152.043-.228.272-1.18 1.41-1.955 3.4-2.48.249-.07.443-.106.679-.163.195-.043.391-.079.587-.118q.232-.043.466-.082c.24-.04.424-.065.654-.101l.342-.047q.18-.024.36-.024" }) + ] + } + ); +}); + +export { SiHevy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.cjs new file mode 100644 index 000000000..4d51eddb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#116EF5"; +const SiHexlet = React__namespace.forwardRef(function SiHexlet2({ title = "Hexlet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.732 7.099v6.422H7.268V7.099L4.563 6.085V24h2.705v-7.775h9.464V24h2.705V6.085l-2.705 1.014Zm3.043-4.057L12 0 4.225 3.042 12 5.746l7.775-2.704Z" }) + ] + } + ); +}); + +exports.default = SiHexlet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.d.ts new file mode 100644 index 000000000..c84a31c95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#116EF5"; +declare const SiHexlet: IconType; +export { SiHexlet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.mjs new file mode 100644 index 000000000..c355b69a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHexlet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#116EF5"; +const SiHexlet = React.forwardRef(function SiHexlet2({ title = "Hexlet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.732 7.099v6.422H7.268V7.099L4.563 6.085V24h2.705v-7.775h9.464V24h2.705V6.085l-2.705 1.014Zm3.043-4.057L12 0 4.225 3.042 12 5.746l7.775-2.704Z" }) + ] + } + ); +}); + +export { SiHexlet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.cjs new file mode 100644 index 000000000..f8be3920e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E83CD"; +const SiHexo = React__namespace.forwardRef(function SiHexo2({ title = "Hexo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.02 0L1.596 6.02l-.02 12L11.978 24l10.426-6.02.02-12zm4.828 17.14l-.96.558-.969-.574V12.99H9.081v4.15l-.96.558-.969-.574V6.854l.964-.552.965.563v4.145h5.838V6.86l.965-.552.964.563z" }) + ] + } + ); +}); + +exports.default = SiHexo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.d.ts new file mode 100644 index 000000000..c6d901300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E83CD"; +declare const SiHexo: IconType; +export { SiHexo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.mjs new file mode 100644 index 000000000..1f55513e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHexo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E83CD"; +const SiHexo = React.forwardRef(function SiHexo2({ title = "Hexo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.02 0L1.596 6.02l-.02 12L11.978 24l10.426-6.02.02-12zm4.828 17.14l-.96.558-.969-.574V12.99H9.081v4.15l-.96.558-.969-.574V6.854l.964-.552.965.563v4.145h5.838V6.86l.965-.552.964.563z" }) + ] + } + ); +}); + +export { SiHexo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHey.cjs new file mode 100644 index 000000000..0adf6a0f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5522FA"; +const SiHey = React__namespace.forwardRef(function SiHey2({ title = "HEY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.57 6.698a5.724 5.724 0 00-2.644 1.572c-.84-2.952-2.65-7.42-4.415-8.15a1.283 1.283 0 00-1.181.05c-1.104.643-1.823 2.709-1.194 6.624C7.71 2.353 6.863 2.36 6.472 2.353a.956.956 0 00-.873.597c-.263.584-.79 2.406.494 6.327C4.547 7.16 4.072 6.89 3.526 6.917a.969.969 0 00-.821.557c-.463.873-.41 3.068 1.027 6.34a2.946 2.946 0 00-1.773-.73 1.06 1.06 0 00-.853.544c-.584 1.073.642 4.083 2.157 6.124C4.49 21.427 6.947 24 10.515 24a8.047 8.047 0 001.489-.141.654.654 0 00-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515-2.021-2.19-2.908-4.82-2.959-5.622.424.173 1.644.892 4.018 3.934a.65.65 0 001.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166.982 1 3.433 4.671 5.28 7.445a.642.642 0 00.88.199.642.642 0 00.238-.873C6.312 8.16 6.446 4.952 6.67 3.874c.577.584 2.11 2.618 5.34 9.626a.642.642 0 00.84.327.642.642 0 00.366-.827c-3.132-8.504-1.772-11.385-1.252-11.712.674 0 2.567 3.247 3.748 7.502.07.263.141.52.205.77a4.094 4.094 0 00-.385.924c-.64 2.355-1.283 7.7-.045 9.17a1.194 1.194 0 001.04.444 1.688 1.688 0 001.232-.757c1.15-1.675.475-5.879-.443-9.557a4.832 4.832 0 012.567-1.84 1.283 1.283 0 011.284.307c.526.59 1.445 2.798-1.34 10.583a.654.654 0 001.231.436c2.22-6.206 2.568-10.204 1.084-11.886A2.528 2.528 0 0019.57 6.7zm-2.888 11.918a.41.41 0 01-.218.186c-.48-.571-.48-3.953.045-6.727.995 4.795.417 6.2.173 6.54z" }) + ] + } + ); +}); + +exports.default = SiHey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHey.d.ts new file mode 100644 index 000000000..5ca25afe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5522FA"; +declare const SiHey: IconType; +export { SiHey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHey.mjs new file mode 100644 index 000000000..a182ba484 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5522FA"; +const SiHey = React.forwardRef(function SiHey2({ title = "HEY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.57 6.698a5.724 5.724 0 00-2.644 1.572c-.84-2.952-2.65-7.42-4.415-8.15a1.283 1.283 0 00-1.181.05c-1.104.643-1.823 2.709-1.194 6.624C7.71 2.353 6.863 2.36 6.472 2.353a.956.956 0 00-.873.597c-.263.584-.79 2.406.494 6.327C4.547 7.16 4.072 6.89 3.526 6.917a.969.969 0 00-.821.557c-.463.873-.41 3.068 1.027 6.34a2.946 2.946 0 00-1.773-.73 1.06 1.06 0 00-.853.544c-.584 1.073.642 4.083 2.157 6.124C4.49 21.427 6.947 24 10.515 24a8.047 8.047 0 001.489-.141.654.654 0 00-.25-1.284c-2.965.578-5.2-1.052-6.553-2.515-2.021-2.19-2.908-4.82-2.959-5.622.424.173 1.644.892 4.018 3.934a.65.65 0 001.059-.757c-3.337-5.066-3.664-8.132-3.555-9.166.982 1 3.433 4.671 5.28 7.445a.642.642 0 00.88.199.642.642 0 00.238-.873C6.312 8.16 6.446 4.952 6.67 3.874c.577.584 2.11 2.618 5.34 9.626a.642.642 0 00.84.327.642.642 0 00.366-.827c-3.132-8.504-1.772-11.385-1.252-11.712.674 0 2.567 3.247 3.748 7.502.07.263.141.52.205.77a4.094 4.094 0 00-.385.924c-.64 2.355-1.283 7.7-.045 9.17a1.194 1.194 0 001.04.444 1.688 1.688 0 001.232-.757c1.15-1.675.475-5.879-.443-9.557a4.832 4.832 0 012.567-1.84 1.283 1.283 0 011.284.307c.526.59 1.445 2.798-1.34 10.583a.654.654 0 001.231.436c2.22-6.206 2.568-10.204 1.084-11.886A2.528 2.528 0 0019.57 6.7zm-2.888 11.918a.41.41 0 01-.218.186c-.48-.571-.48-3.953.045-6.727.995 4.795.417 6.2.173 6.54z" }) + ] + } + ); +}); + +export { SiHey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.cjs new file mode 100644 index 000000000..a312604a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#59666C"; +const SiHibernate = React__namespace.forwardRef(function SiHibernate2({ title = "Hibernate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.365 0L9.98 7.994h8.95L14.31 0H5.366zm-.431.248L.46 7.994l4.613 8.008L9.55 8.24 4.934.248zm13.992 7.75l-4.475 7.76 4.617 7.992 4.471-7.744-4.613-8.008zm-4.905 8.006l-8.95.002L9.688 24h8.946l-4.615-7.994.001-.002Z" }) + ] + } + ); +}); + +exports.default = SiHibernate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.d.ts new file mode 100644 index 000000000..7ce93b178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#59666C"; +declare const SiHibernate: IconType; +export { SiHibernate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.mjs new file mode 100644 index 000000000..19b1296f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHibernate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#59666C"; +const SiHibernate = React.forwardRef(function SiHibernate2({ title = "Hibernate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.365 0L9.98 7.994h8.95L14.31 0H5.366zm-.431.248L.46 7.994l4.613 8.008L9.55 8.24 4.934.248zm13.992 7.75l-4.475 7.76 4.617 7.992 4.471-7.744-4.613-8.008zm-4.905 8.006l-8.95.002L9.688 24h8.946l-4.615-7.994.001-.002Z" }) + ] + } + ); +}); + +export { SiHibernate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.cjs new file mode 100644 index 000000000..53b0f6e6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E42C51"; +const SiHibob = React__namespace.forwardRef(function SiHibob2({ title = "Hi Bob", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.527 17.538c-2.077 0-3.767-1.705-3.767-3.8 0-2.096 1.69-3.8 3.767-3.8s3.767 1.704 3.767 3.8c0 2.095-1.69 3.8-3.766 3.8m0-6.408c-1.426 0-2.586 1.17-2.586 2.607 0 1.439 1.159 2.609 2.585 2.609s2.585-1.17 2.585-2.609c0-1.437-1.16-2.606-2.585-2.606M1.707 10.4V7.082a.858.858 0 0 0-.853-.86.856.856 0 0 0-.854.86v6.632c.002 2.244 1.81 4.065 4.03 4.065 2.221 0 4.029-1.823 4.029-4.065 0-2.24-1.808-4.063-4.029-4.063a3.98 3.98 0 0 0-2.323.748zm2.323 5.658a2.335 2.335 0 0 1-2.323-2.343 2.335 2.335 0 0 1 2.323-2.342 2.335 2.335 0 0 1 2.323 2.342 2.335 2.335 0 0 1-2.323 2.343m16.465-5.854a3.49 3.491 0 0 0-2.848 1.484V6.704a.33.33 0 0 0-.327-.331.33.33 0 0 0-.328.331v7.036c.002 1.949 1.572 3.533 3.504 3.533 1.931 0 3.504-1.586 3.504-3.536 0-1.949-1.573-3.534-3.505-3.534m0 6.408c-1.57 0-2.847-1.289-2.847-2.873s1.278-2.872 2.847-2.872c1.57 0 2.848 1.288 2.848 2.872 0 1.585-1.277 2.873-2.848 2.873" }) + ] + } + ); +}); + +exports.default = SiHibob; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.d.ts new file mode 100644 index 000000000..8efbfd33c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E42C51"; +declare const SiHibob: IconType; +export { SiHibob as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.mjs new file mode 100644 index 000000000..437ded1b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHibob.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E42C51"; +const SiHibob = React.forwardRef(function SiHibob2({ title = "Hi Bob", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.527 17.538c-2.077 0-3.767-1.705-3.767-3.8 0-2.096 1.69-3.8 3.767-3.8s3.767 1.704 3.767 3.8c0 2.095-1.69 3.8-3.766 3.8m0-6.408c-1.426 0-2.586 1.17-2.586 2.607 0 1.439 1.159 2.609 2.585 2.609s2.585-1.17 2.585-2.609c0-1.437-1.16-2.606-2.585-2.606M1.707 10.4V7.082a.858.858 0 0 0-.853-.86.856.856 0 0 0-.854.86v6.632c.002 2.244 1.81 4.065 4.03 4.065 2.221 0 4.029-1.823 4.029-4.065 0-2.24-1.808-4.063-4.029-4.063a3.98 3.98 0 0 0-2.323.748zm2.323 5.658a2.335 2.335 0 0 1-2.323-2.343 2.335 2.335 0 0 1 2.323-2.342 2.335 2.335 0 0 1 2.323 2.342 2.335 2.335 0 0 1-2.323 2.343m16.465-5.854a3.49 3.491 0 0 0-2.848 1.484V6.704a.33.33 0 0 0-.327-.331.33.33 0 0 0-.328.331v7.036c.002 1.949 1.572 3.533 3.504 3.533 1.931 0 3.504-1.586 3.504-3.536 0-1.949-1.573-3.534-3.505-3.534m0 6.408c-1.57 0-2.847-1.289-2.847-2.873s1.278-2.872 2.847-2.872c1.57 0 2.848 1.288 2.848 2.872 0 1.585-1.277 2.873-2.848 2.873" }) + ] + } + ); +}); + +export { SiHibob as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.cjs new file mode 100644 index 000000000..957a1af6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiHilton = React__namespace.forwardRef(function SiHilton2({ title = "Hilton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 7.544v8.912h24V7.544H0zm23.588 8.503H.406V7.95h23.182v8.097zM3.682 14.41h-1.62v-.249l.324-.044V9.873l-.324-.045v-.242h1.62v.242l-.324.045v1.813h2.107V9.873l-.355-.045v-.242h1.647v.242l-.334.045v4.244l.334.044v.25H5.11v-.25l.355-.044v-1.933H3.358v1.933l.324.044v.25zm5.298 0H7.466v-.218l.31-.044V11.24l-.31-.045v-.218h1.203v3.17l.31.045v.218zm2.171.004H9.638v-.215l.303-.041V9.845l-.303-.044V9.59h1.203v4.568l.31.04v.216zm.941-3.116h-.634v-.32h.658v-.717l.88-.262v.978h.807v.32h-.81v2.043c0 .528.108.695.589.695.177 0 .334 0 .48-.037v.235c-.436.153-.804.218-1.114.218-.696 0-.856-.314-.856-.914v-2.24zm3.924 3.214c1.139 0 1.861-.715 1.861-1.786 0-1.176-.678-1.844-1.803-1.844-1.139 0-1.861.74-1.861 1.844 0 1.32.702 1.786 1.803 1.786zm.024-3.364c.525 0 .849.474.849 1.558 0 1.111-.304 1.544-.85 1.544-.51 0-.834-.453-.834-1.544 0-1.105.323-1.558.835-1.558zm3.72 3.262h-1.521v-.218l.31-.044v-2.884l-.31-.045v-.242h1.21v.478c.375-.3.74-.543 1.248-.543.678 0 .981.396.981 1.173v2.066l.31.041v.218h-1.513v-.218l.303-.044v-1.954c0-.542-.2-.784-.613-.784-.191 0-.495.133-.716.287v2.45l.31.045v.218zM7.738 10.07a.487.487 0 0 1 .975 0 .487.487 0 0 1-.488.485.485.485 0 0 1-.487-.485z" }) + ] + } + ); +}); + +exports.default = SiHilton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.d.ts new file mode 100644 index 000000000..69c9d09a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiHilton: IconType; +export { SiHilton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.mjs new file mode 100644 index 000000000..be69082b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHilton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiHilton = React.forwardRef(function SiHilton2({ title = "Hilton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 7.544v8.912h24V7.544H0zm23.588 8.503H.406V7.95h23.182v8.097zM3.682 14.41h-1.62v-.249l.324-.044V9.873l-.324-.045v-.242h1.62v.242l-.324.045v1.813h2.107V9.873l-.355-.045v-.242h1.647v.242l-.334.045v4.244l.334.044v.25H5.11v-.25l.355-.044v-1.933H3.358v1.933l.324.044v.25zm5.298 0H7.466v-.218l.31-.044V11.24l-.31-.045v-.218h1.203v3.17l.31.045v.218zm2.171.004H9.638v-.215l.303-.041V9.845l-.303-.044V9.59h1.203v4.568l.31.04v.216zm.941-3.116h-.634v-.32h.658v-.717l.88-.262v.978h.807v.32h-.81v2.043c0 .528.108.695.589.695.177 0 .334 0 .48-.037v.235c-.436.153-.804.218-1.114.218-.696 0-.856-.314-.856-.914v-2.24zm3.924 3.214c1.139 0 1.861-.715 1.861-1.786 0-1.176-.678-1.844-1.803-1.844-1.139 0-1.861.74-1.861 1.844 0 1.32.702 1.786 1.803 1.786zm.024-3.364c.525 0 .849.474.849 1.558 0 1.111-.304 1.544-.85 1.544-.51 0-.834-.453-.834-1.544 0-1.105.323-1.558.835-1.558zm3.72 3.262h-1.521v-.218l.31-.044v-2.884l-.31-.045v-.242h1.21v.478c.375-.3.74-.543 1.248-.543.678 0 .981.396.981 1.173v2.066l.31.041v.218h-1.513v-.218l.303-.044v-1.954c0-.542-.2-.784-.613-.784-.191 0-.495.133-.716.287v2.45l.31.045v.218zM7.738 10.07a.487.487 0 0 1 .975 0 .487.487 0 0 1-.488.485.485.485 0 0 1-.487-.485z" }) + ] + } + ); +}); + +export { SiHilton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.cjs new file mode 100644 index 000000000..9200d0961 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E4380"; +const SiHiltonhotelsandresorts = React__namespace.forwardRef(function SiHiltonhotelsandresorts2({ title = "Hilton Hotels & Resorts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.1968 3.6956C4.749 3.6956 0 7.8018 0 12.1897c0 2.2672 1.2753 4.1769 2.8798 5.5006l.122-.083C1.7288 16.5531.5798 14.9.5798 12.6365.9163 7.836 6.8255 5.1298 12.0763 5.1298c3.7177 0 10.3932.8607 10.3932 7.0862 0 3.2484-3.4645 7.4727-10.7367 7.4727-3.7243 0-6.618-1.9984-6.618-4.87 0-2.4873 1.943-4.2578 4.8414-4.2578.7985 0 1.5469.1868 2.1176.3423-1.2086-.218-3.085.093-4.0559.8572v4.2045h3.5612v-4.7796a4.3988 4.3988 0 0 1 1.5513.5977v4.182h.9277c-.7295.8196-2.0877 1.3186-3.2642 1.135v.176c3.3839.2666 4.8157-1.341 4.8157-3.1501 0-2.1283-1.9933-3.3782-4.0305-3.634V7.3488H8.0178v3.1805c-2.3045.465-4.5605 1.8371-4.5605 4.1097 0 3.4981 4.88 5.6654 9.1253 5.6654C19.035 20.3044 24 17.1786 24 12.7934c0-5.3088-7.1681-9.0978-12.8032-9.0978m4.9079 10.5528c0-1.5458-1.0548-2.7842-2.9744-3.3821V7.3488h3.5568v8.6161H15.575c.391-.552.5297-1.1783.5297-1.7165" }) + ] + } + ); +}); + +exports.default = SiHiltonhotelsandresorts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.d.ts new file mode 100644 index 000000000..dd8612646 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E4380"; +declare const SiHiltonhotelsandresorts: IconType; +export { SiHiltonhotelsandresorts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.mjs new file mode 100644 index 000000000..f0d782cf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHiltonhotelsandresorts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E4380"; +const SiHiltonhotelsandresorts = React.forwardRef(function SiHiltonhotelsandresorts2({ title = "Hilton Hotels & Resorts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.1968 3.6956C4.749 3.6956 0 7.8018 0 12.1897c0 2.2672 1.2753 4.1769 2.8798 5.5006l.122-.083C1.7288 16.5531.5798 14.9.5798 12.6365.9163 7.836 6.8255 5.1298 12.0763 5.1298c3.7177 0 10.3932.8607 10.3932 7.0862 0 3.2484-3.4645 7.4727-10.7367 7.4727-3.7243 0-6.618-1.9984-6.618-4.87 0-2.4873 1.943-4.2578 4.8414-4.2578.7985 0 1.5469.1868 2.1176.3423-1.2086-.218-3.085.093-4.0559.8572v4.2045h3.5612v-4.7796a4.3988 4.3988 0 0 1 1.5513.5977v4.182h.9277c-.7295.8196-2.0877 1.3186-3.2642 1.135v.176c3.3839.2666 4.8157-1.341 4.8157-3.1501 0-2.1283-1.9933-3.3782-4.0305-3.634V7.3488H8.0178v3.1805c-2.3045.465-4.5605 1.8371-4.5605 4.1097 0 3.4981 4.88 5.6654 9.1253 5.6654C19.035 20.3044 24 17.1786 24 12.7934c0-5.3088-7.1681-9.0978-12.8032-9.0978m4.9079 10.5528c0-1.5458-1.0548-2.7842-2.9744-3.3821V7.3488h3.5568v8.6161H15.575c.391-.552.5297-1.1783.5297-1.7165" }) + ] + } + ); +}); + +export { SiHiltonhotelsandresorts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.cjs new file mode 100644 index 000000000..a731b5e35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60027"; +const SiHitachi = React__namespace.forwardRef(function SiHitachi2({ title = "Hitachi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.787 11.41h-1.026a.852.852 0 00-.052-.284.714.714 0 00-.459-.427 1.417 1.417 0 00-.913.019.89.89 0 00-.535.542 2.318 2.318 0 00-.04 1.425.88.88 0 00.535.584 1.492 1.492 0 00.977.027.705.705 0 00.428-.384.976.976 0 00.08-.396h1.031a2.198 2.198 0 01-.049.351c-.09.365-.346.672-.684.814a3.254 3.254 0 01-2.251.104c-.477-.15-.89-.493-1.054-.96a2.375 2.375 0 01-.133-.788c0-.388.068-.764.254-1.077.192-.321.486-.569.842-.701a3.062 3.062 0 012.318.063 1.2 1.2 0 01.698.853c.017.076.028.156.033.235zm-3.979 2.436H12.72l-.32-.793h-1.834c-.001.001-.315.794-.319.793h-1.09l1.727-3.693c0 .002 1.199 0 1.199 0l1.725 3.693zm5.483.001h-.977s.005-3.693 0-3.693h.977v1.477h1.976c0 .005-.002-1.478 0-1.477h.979s.003 3.686 0 3.693h-.979v-1.626c0 .005-1.976 0-1.976 0 .002.007 0 1.624 0 1.626zm-18.312 0H0s.005-3.693 0-3.693h.979s-.002 1.487 0 1.477h1.976c0 .005-.004-1.478 0-1.477h.978s.004 3.686 0 3.693h-.978v-1.626c0 .005-1.976 0-1.976 0 0 .007-.002 1.625 0 1.626zm7.531-.001h-.977v-3.065H6.036s.002-.626 0-.627c.002.001 3.971 0 3.971 0v.627H8.51v3.065zm-3.801-3.692h.977v3.692h-.977v-3.692zm18.312 0H24v3.692h-.979v-3.692zm-11.537.627l-.681 1.68h1.361l-.68-1.68z" }) + ] + } + ); +}); + +exports.default = SiHitachi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.d.ts new file mode 100644 index 000000000..ebb679dfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60027"; +declare const SiHitachi: IconType; +export { SiHitachi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.mjs new file mode 100644 index 000000000..ce7fe92ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHitachi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60027"; +const SiHitachi = React.forwardRef(function SiHitachi2({ title = "Hitachi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.787 11.41h-1.026a.852.852 0 00-.052-.284.714.714 0 00-.459-.427 1.417 1.417 0 00-.913.019.89.89 0 00-.535.542 2.318 2.318 0 00-.04 1.425.88.88 0 00.535.584 1.492 1.492 0 00.977.027.705.705 0 00.428-.384.976.976 0 00.08-.396h1.031a2.198 2.198 0 01-.049.351c-.09.365-.346.672-.684.814a3.254 3.254 0 01-2.251.104c-.477-.15-.89-.493-1.054-.96a2.375 2.375 0 01-.133-.788c0-.388.068-.764.254-1.077.192-.321.486-.569.842-.701a3.062 3.062 0 012.318.063 1.2 1.2 0 01.698.853c.017.076.028.156.033.235zm-3.979 2.436H12.72l-.32-.793h-1.834c-.001.001-.315.794-.319.793h-1.09l1.727-3.693c0 .002 1.199 0 1.199 0l1.725 3.693zm5.483.001h-.977s.005-3.693 0-3.693h.977v1.477h1.976c0 .005-.002-1.478 0-1.477h.979s.003 3.686 0 3.693h-.979v-1.626c0 .005-1.976 0-1.976 0 .002.007 0 1.624 0 1.626zm-18.312 0H0s.005-3.693 0-3.693h.979s-.002 1.487 0 1.477h1.976c0 .005-.004-1.478 0-1.477h.978s.004 3.686 0 3.693h-.978v-1.626c0 .005-1.976 0-1.976 0 0 .007-.002 1.625 0 1.626zm7.531-.001h-.977v-3.065H6.036s.002-.626 0-.627c.002.001 3.971 0 3.971 0v.627H8.51v3.065zm-3.801-3.692h.977v3.692h-.977v-3.692zm18.312 0H24v3.692h-.979v-3.692zm-11.537.627l-.681 1.68h1.361l-.68-1.68z" }) + ] + } + ); +}); + +export { SiHitachi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHive.cjs new file mode 100644 index 000000000..35c8edaa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7A00"; +const SiHive = React__namespace.forwardRef(function SiHive2({ title = "Hive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.442 21.355c.55-.19.74-.256.99-.373.342-.152.605-.39.605-.818a.846.846 0 00-.605-.813c-.318-.092-.703.042-.99.122l-5.42 1.46a7.808 7.808 0 01-4.057 0l-5.407-1.46c-.287-.08-.672-.214-.99-.122a.847.847 0 00-.605.813c0 .427.263.666.605.818.25.117.44.184.99.373l5.138 1.79c1.491.52 3.104.52 4.601 0zm-9.263-3.224a7.622 7.622 0 003.636 0l8.01-1.967c.507-.122.709-.165.99-.257.354-.116.605-.415.605-.806a.847.847 0 00-.605-.813c-.281-.08-.697.024-.99.08l-8.664 1.545a6.813 6.813 0 01-2.334 0l-8.652-1.545c-.293-.056-.708-.16-.99-.08a.847.847 0 00-.604.813c0 .39.25.69.604.806.282.092.483.135.99.257zM14.75.621a24.43 24.43 0 00-5.511 0L6.495.933c-.294.03-.715.055-.99.14-.28.092-.605.355-.605.807 0 .39.257.702.605.806.281.08.696.074.99.074h11.01c.293 0 .709.006.99-.074a.835.835 0 00.605-.806c0-.452-.324-.715-.605-.807-.275-.085-.697-.11-.99-.14zm6.037 6.767c.3-.019.709-.037.99-.116a.84.84 0 000-1.614c-.281-.085-.69-.073-.99-.073H3.214c-.3 0-.709-.012-.99.073a.84.84 0 000 1.614c.281.079.69.097.99.116l7.808.556c.642.042 1.308.042 1.943 0zm1.62 4.242c.513-.08.708-.104.989-.202.354-.121.605-.409.605-.806a.84.84 0 00-.605-.806c-.28-.086-.69-.019-.99.012l-9.232.929c-.776.079-1.582.079-2.358 0l-9.22-.93c-.3-.03-.715-.097-.99-.011a.84.84 0 00-.605.806c0 .397.25.685.605.806.275.092.476.123.99.202l8.823 1.418c1.038.165 2.12.165 3.158 0Z" }) + ] + } + ); +}); + +exports.default = SiHive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHive.d.ts new file mode 100644 index 000000000..eaf7185c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7A00"; +declare const SiHive: IconType; +export { SiHive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHive.mjs new file mode 100644 index 000000000..075a66ede --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7A00"; +const SiHive = React.forwardRef(function SiHive2({ title = "Hive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.442 21.355c.55-.19.74-.256.99-.373.342-.152.605-.39.605-.818a.846.846 0 00-.605-.813c-.318-.092-.703.042-.99.122l-5.42 1.46a7.808 7.808 0 01-4.057 0l-5.407-1.46c-.287-.08-.672-.214-.99-.122a.847.847 0 00-.605.813c0 .427.263.666.605.818.25.117.44.184.99.373l5.138 1.79c1.491.52 3.104.52 4.601 0zm-9.263-3.224a7.622 7.622 0 003.636 0l8.01-1.967c.507-.122.709-.165.99-.257.354-.116.605-.415.605-.806a.847.847 0 00-.605-.813c-.281-.08-.697.024-.99.08l-8.664 1.545a6.813 6.813 0 01-2.334 0l-8.652-1.545c-.293-.056-.708-.16-.99-.08a.847.847 0 00-.604.813c0 .39.25.69.604.806.282.092.483.135.99.257zM14.75.621a24.43 24.43 0 00-5.511 0L6.495.933c-.294.03-.715.055-.99.14-.28.092-.605.355-.605.807 0 .39.257.702.605.806.281.08.696.074.99.074h11.01c.293 0 .709.006.99-.074a.835.835 0 00.605-.806c0-.452-.324-.715-.605-.807-.275-.085-.697-.11-.99-.14zm6.037 6.767c.3-.019.709-.037.99-.116a.84.84 0 000-1.614c-.281-.085-.69-.073-.99-.073H3.214c-.3 0-.709-.012-.99.073a.84.84 0 000 1.614c.281.079.69.097.99.116l7.808.556c.642.042 1.308.042 1.943 0zm1.62 4.242c.513-.08.708-.104.989-.202.354-.121.605-.409.605-.806a.84.84 0 00-.605-.806c-.28-.086-.69-.019-.99.012l-9.232.929c-.776.079-1.582.079-2.358 0l-9.22-.93c-.3-.03-.715-.097-.99-.011a.84.84 0 00-.605.806c0 .397.25.685.605.806.275.092.476.123.99.202l8.823 1.418c1.038.165 2.12.165 3.158 0Z" }) + ] + } + ); +}); + +export { SiHive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.cjs new file mode 100644 index 000000000..44a630dc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E31337"; +const SiHiveBlockchain = React__namespace.forwardRef(function SiHiveBlockchain2({ title = "Hive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.076 1.637a.103.103 0 00-.09.05L.014 11.95a.102.102 0 000 .104l6.039 10.26c.04.068.14.068.18 0l5.972-10.262a.102.102 0 00-.002-.104L6.166 1.687a.103.103 0 00-.09-.05zm2.863 0c-.079 0-.13.085-.09.154l5.186 8.967a.105.105 0 00.09.053h3.117c.08 0 .13-.088.09-.157l-5.186-8.966a.104.104 0 00-.09-.051H8.94zm5.891 0a.102.102 0 00-.088.154L20.656 12l-5.914 10.209a.102.102 0 00.088.154h3.123a.1.1 0 00.088-.05l5.945-10.262a.1.1 0 000-.102L18.041 1.688a.1.1 0 00-.088-.051H14.83zm-.79 11.7a.1.1 0 00-.089.052l-5.101 8.82c-.04.069.01.154.09.154h3.117a.104.104 0 00.09-.05l5.1-8.82a.103.103 0 00-.09-.155h-3.118z" }) + ] + } + ); +}); + +exports.default = SiHiveBlockchain; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.d.ts new file mode 100644 index 000000000..95b31f106 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E31337"; +declare const SiHiveBlockchain: IconType; +export { SiHiveBlockchain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.mjs new file mode 100644 index 000000000..47a34b57f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHiveBlockchain.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E31337"; +const SiHiveBlockchain = React.forwardRef(function SiHiveBlockchain2({ title = "Hive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.076 1.637a.103.103 0 00-.09.05L.014 11.95a.102.102 0 000 .104l6.039 10.26c.04.068.14.068.18 0l5.972-10.262a.102.102 0 00-.002-.104L6.166 1.687a.103.103 0 00-.09-.05zm2.863 0c-.079 0-.13.085-.09.154l5.186 8.967a.105.105 0 00.09.053h3.117c.08 0 .13-.088.09-.157l-5.186-8.966a.104.104 0 00-.09-.051H8.94zm5.891 0a.102.102 0 00-.088.154L20.656 12l-5.914 10.209a.102.102 0 00.088.154h3.123a.1.1 0 00.088-.05l5.945-10.262a.1.1 0 000-.102L18.041 1.688a.1.1 0 00-.088-.051H14.83zm-.79 11.7a.1.1 0 00-.089.052l-5.101 8.82c-.04.069.01.154.09.154h3.117a.104.104 0 00.09-.05l5.1-8.82a.103.103 0 00-.09-.155h-3.118z" }) + ] + } + ); +}); + +export { SiHiveBlockchain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.cjs new file mode 100644 index 000000000..195df70e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC000"; +const SiHivemq = React__namespace.forwardRef(function SiHivemq2({ title = "HiveMQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12,0C5.38,0,0,5.38,0,12s5.38,12,12,12,12-5.38,12-12S18.62,0,12,0Zm0,1.01c6.06,0,10.99,4.93,10.99,10.99s-4.93,10.99-10.99,10.99S1.01,18.06,1.01,12,5.94,1.01,12,1Zm0,.95C6.47,1.97,1.97,6.47,1.97,12s4.5,10.03,10.03,10.03,10.03-4.5,10.03-10.03S17.53,1.97,12,1.97Zm-.9,3.79c.05,0,.1.04.12.09l.23.5c.38-.12.8-.12,1.18,0l.23-.5c.03-.07.12-.11.2-.07.07.03.1.12.07.19l-.21.46v.02c.2.1.39.23.55.39.3.29.49.67.56,1.09.02.11.03.23.03.34,0,.31-.07.62-.21.9,2.77-1.25,5.03-1.6,5.57-.85.48.85-.49,1.92-2.12,3.31l-.04-.04c-.11-.11-.1-.29.01-.4.62-.58,1.98-1.96,1.2-2.36-.87-.44-3.23.17-5.85,1.56,3.73,2.16,6.26,4.74,5.66,5.78-.38.65-1.94.56-3.94-.14l.07-.12c.07-.11.2-.16.33-.12,1.39.42,2.25.62,2.55.17.42-.72-1.7-3.22-4.99-5.12-.08-.05-.17-.1-.25-.14l-.25.14c-3.29,1.9-5.41,4.39-4.99,5.12.3.45,1.16.25,2.55-.17.12-.04.26.01.33.12l.07.12c-2,.71-3.56.79-3.94.14-.6-1.04,1.94-3.62,5.66-5.78-.72-.38-1.47-.72-2.23-1.02-.73-.28-3.08-1.07-3.71-.47-.2.19-.19.54.23,1.12.32.44.78.9,1.07,1.17.11.11.12.28.01.4l-.04.04c-.6-.51-2.83-2.3-2.1-3.32.8-1.12,4.78.52,5.5.85-.48-1.01-.06-2.21.94-2.69l-.02-.04-.2-.45c-.03-.07,0-.16.07-.2.02-.01.05-.02.08-.01Zm.22.96c-.69.32-1.08,1.06-.97,1.82.69-.32,1.08-1.06.97-1.82Zm1.42,0c-.12.75.27,1.49.97,1.82.12-.75-.28-1.49-.97-1.82Zm-.7,4.58c.78.46,1.54.95,2.27,1.49.13.4.2.81.18,1.23h-4.91c-.02-.42.05-.83.18-1.23.73-.53,1.49-1.03,2.27-1.49Zm-2.31,3.57h4.63c-.11.37-.29.72-.52,1.02h-3.58c-.24-.3-.42-.65-.52-1.02Zm1.3,1.88h2.02c-.31.32-.55.61-1.01,1.44-.46-.83-.7-1.12-1.01-1.44Z" }) + ] + } + ); +}); + +exports.default = SiHivemq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.d.ts new file mode 100644 index 000000000..6020aa968 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC000"; +declare const SiHivemq: IconType; +export { SiHivemq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.mjs new file mode 100644 index 000000000..1d5851885 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHivemq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC000"; +const SiHivemq = React.forwardRef(function SiHivemq2({ title = "HiveMQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12,0C5.38,0,0,5.38,0,12s5.38,12,12,12,12-5.38,12-12S18.62,0,12,0Zm0,1.01c6.06,0,10.99,4.93,10.99,10.99s-4.93,10.99-10.99,10.99S1.01,18.06,1.01,12,5.94,1.01,12,1Zm0,.95C6.47,1.97,1.97,6.47,1.97,12s4.5,10.03,10.03,10.03,10.03-4.5,10.03-10.03S17.53,1.97,12,1.97Zm-.9,3.79c.05,0,.1.04.12.09l.23.5c.38-.12.8-.12,1.18,0l.23-.5c.03-.07.12-.11.2-.07.07.03.1.12.07.19l-.21.46v.02c.2.1.39.23.55.39.3.29.49.67.56,1.09.02.11.03.23.03.34,0,.31-.07.62-.21.9,2.77-1.25,5.03-1.6,5.57-.85.48.85-.49,1.92-2.12,3.31l-.04-.04c-.11-.11-.1-.29.01-.4.62-.58,1.98-1.96,1.2-2.36-.87-.44-3.23.17-5.85,1.56,3.73,2.16,6.26,4.74,5.66,5.78-.38.65-1.94.56-3.94-.14l.07-.12c.07-.11.2-.16.33-.12,1.39.42,2.25.62,2.55.17.42-.72-1.7-3.22-4.99-5.12-.08-.05-.17-.1-.25-.14l-.25.14c-3.29,1.9-5.41,4.39-4.99,5.12.3.45,1.16.25,2.55-.17.12-.04.26.01.33.12l.07.12c-2,.71-3.56.79-3.94.14-.6-1.04,1.94-3.62,5.66-5.78-.72-.38-1.47-.72-2.23-1.02-.73-.28-3.08-1.07-3.71-.47-.2.19-.19.54.23,1.12.32.44.78.9,1.07,1.17.11.11.12.28.01.4l-.04.04c-.6-.51-2.83-2.3-2.1-3.32.8-1.12,4.78.52,5.5.85-.48-1.01-.06-2.21.94-2.69l-.02-.04-.2-.45c-.03-.07,0-.16.07-.2.02-.01.05-.02.08-.01Zm.22.96c-.69.32-1.08,1.06-.97,1.82.69-.32,1.08-1.06.97-1.82Zm1.42,0c-.12.75.27,1.49.97,1.82.12-.75-.28-1.49-.97-1.82Zm-.7,4.58c.78.46,1.54.95,2.27,1.49.13.4.2.81.18,1.23h-4.91c-.02-.42.05-.83.18-1.23.73-.53,1.49-1.03,2.27-1.49Zm-2.31,3.57h4.63c-.11.37-.29.72-.52,1.02h-3.58c-.24-.3-.42-.65-.52-1.02Zm1.3,1.88h2.02c-.31.32-.55.61-1.01,1.44-.46-.83-.7-1.12-1.01-1.44Z" }) + ] + } + ); +}); + +export { SiHivemq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.cjs new file mode 100644 index 000000000..3529fc7f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA5252"; +const SiHomarr = React__namespace.forwardRef(function SiHomarr2({ title = "Homarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.2558 15.698a6.524 6.524 0 0 0 1.2498-3.8483c0-1.8533-.772-3.5259-2.011-4.7162a6.54 6.54 0 0 0-.8325-.6773c-.84-.5765-1.821-.9635-2.8813-1.0955 0 0-.002 0-.002.002L3.03 10.4628H0c.3086 2.3802 2.0065 4.3237 4.2532 4.9916l.4352 1.7718a6.56 6.56 0 0 0 1.5674-1.5277Zm14.714-5.2352 1.2514-5.1001-.002-.002c-1.0603.1315-2.0413.5185-2.8813 1.0955a6.6 6.6 0 0 0-.8326.6773c-1.239 1.1898-2.011 2.8625-2.011 4.7162a6.523 6.523 0 0 0 1.25 3.8483 6.56 6.56 0 0 0 1.5673 1.5277l.4352-1.7718c2.2467-.6684 3.944-2.6114 4.2532-4.9915h-3.0301zm-7.6152 3.5432a.8214.8214 0 0 0 .8216-.8216.8214.8214 0 0 0-.8216-.8217.8214.8214 0 0 0-.8217.8217c0 .454.3677.8216.8217.8216m-2.7087-1.6433a.8214.8214 0 0 0-.8216.8217c0 .454.3676.8216.8216.8216a.8214.8214 0 0 0 .8217-.8216.8214.8214 0 0 0-.8217-.8217m-.5378 2.8977c-1.6731.4019-3.0947 1.3153-4.1307 2.533a7.82 7.82 0 0 0-1.3416 2.252l2.1841.0125 12.4446.0556.002-.003c-1.369-3.6464-5.2739-5.784-9.158-4.8501Zm3.2465-4.9107c.0913 0 .178.0184.26.0462V7.263c0-1.35 1.0985-2.4486 2.4486-2.4486.8589 0 1.6145.4456 2.0517 1.1164.2376-.198.4872-.383.7487-.5518-.6068-.8995-1.6359-1.4925-2.8004-1.4925-1.8617 0-3.3765 1.5149-3.3765 3.3765v3.4326c.1489-.2084.3915-.3454.6674-.3454zM7.9368 4.8144c1.3501 0 2.4486 1.0985 2.4486 2.4486v3.1329c.0824-.0278.1687-.0462.26-.0462.276 0 .5185.137.6679.3459V7.263c0-1.8616-1.5143-3.3765-3.3765-3.3765-1.1645 0-2.193.593-2.8004 1.4925.2615.1687.511.3538.7487.5518.4372-.6708 1.1928-1.1164 2.0517-1.1164" }) + ] + } + ); +}); + +exports.default = SiHomarr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.d.ts new file mode 100644 index 000000000..ddf9e063c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA5252"; +declare const SiHomarr: IconType; +export { SiHomarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.mjs new file mode 100644 index 000000000..aa84653e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomarr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA5252"; +const SiHomarr = React.forwardRef(function SiHomarr2({ title = "Homarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.2558 15.698a6.524 6.524 0 0 0 1.2498-3.8483c0-1.8533-.772-3.5259-2.011-4.7162a6.54 6.54 0 0 0-.8325-.6773c-.84-.5765-1.821-.9635-2.8813-1.0955 0 0-.002 0-.002.002L3.03 10.4628H0c.3086 2.3802 2.0065 4.3237 4.2532 4.9916l.4352 1.7718a6.56 6.56 0 0 0 1.5674-1.5277Zm14.714-5.2352 1.2514-5.1001-.002-.002c-1.0603.1315-2.0413.5185-2.8813 1.0955a6.6 6.6 0 0 0-.8326.6773c-1.239 1.1898-2.011 2.8625-2.011 4.7162a6.523 6.523 0 0 0 1.25 3.8483 6.56 6.56 0 0 0 1.5673 1.5277l.4352-1.7718c2.2467-.6684 3.944-2.6114 4.2532-4.9915h-3.0301zm-7.6152 3.5432a.8214.8214 0 0 0 .8216-.8216.8214.8214 0 0 0-.8216-.8217.8214.8214 0 0 0-.8217.8217c0 .454.3677.8216.8217.8216m-2.7087-1.6433a.8214.8214 0 0 0-.8216.8217c0 .454.3676.8216.8216.8216a.8214.8214 0 0 0 .8217-.8216.8214.8214 0 0 0-.8217-.8217m-.5378 2.8977c-1.6731.4019-3.0947 1.3153-4.1307 2.533a7.82 7.82 0 0 0-1.3416 2.252l2.1841.0125 12.4446.0556.002-.003c-1.369-3.6464-5.2739-5.784-9.158-4.8501Zm3.2465-4.9107c.0913 0 .178.0184.26.0462V7.263c0-1.35 1.0985-2.4486 2.4486-2.4486.8589 0 1.6145.4456 2.0517 1.1164.2376-.198.4872-.383.7487-.5518-.6068-.8995-1.6359-1.4925-2.8004-1.4925-1.8617 0-3.3765 1.5149-3.3765 3.3765v3.4326c.1489-.2084.3915-.3454.6674-.3454zM7.9368 4.8144c1.3501 0 2.4486 1.0985 2.4486 2.4486v3.1329c.0824-.0278.1687-.0462.26-.0462.276 0 .5185.137.6679.3459V7.263c0-1.8616-1.5143-3.3765-3.3765-3.3765-1.1645 0-2.193.593-2.8004 1.4925.2615.1687.511.3538.7487.5518.4372-.6708 1.1928-1.1164 2.0517-1.1164" }) + ] + } + ); +}); + +export { SiHomarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.cjs new file mode 100644 index 000000000..df3acbc37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F68315"; +const SiHomeadvisor = React__namespace.forwardRef(function SiHomeadvisor2({ title = "HomeAdvisor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.98 2.442H8.02L0 10.46h2.275l6.882-6.88 6.881 6.881H24l-8.02-8.018m-.492 9.348L9.157 5.459 4.01 10.605v4.987a1.33 1.33 0 0 0 1.329 1.329h6.077l4.637 4.637v-4.637h2.598a1.33 1.33 0 0 0 1.33-1.33V11.79h-4.494Z" }) + ] + } + ); +}); + +exports.default = SiHomeadvisor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.d.ts new file mode 100644 index 000000000..2c56883a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F68315"; +declare const SiHomeadvisor: IconType; +export { SiHomeadvisor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.mjs new file mode 100644 index 000000000..b7163e591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeadvisor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F68315"; +const SiHomeadvisor = React.forwardRef(function SiHomeadvisor2({ title = "HomeAdvisor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.98 2.442H8.02L0 10.46h2.275l6.882-6.88 6.881 6.881H24l-8.02-8.018m-.492 9.348L9.157 5.459 4.01 10.605v4.987a1.33 1.33 0 0 0 1.329 1.329h6.077l4.637 4.637v-4.637h2.598a1.33 1.33 0 0 0 1.33-1.33V11.79h-4.494Z" }) + ] + } + ); +}); + +export { SiHomeadvisor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.cjs new file mode 100644 index 000000000..18915e338 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18BCF2"; +const SiHomeassistant = React__namespace.forwardRef(function SiHomeassistant2({ title = "Home Assistant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.939 10.627 13.061.749a1.505 1.505 0 0 0-2.121 0l-9.879 9.878C.478 11.21 0 12.363 0 13.187v9c0 .826.675 1.5 1.5 1.5h9.227l-4.063-4.062a2.034 2.034 0 0 1-.664.113c-1.13 0-2.05-.92-2.05-2.05s.92-2.05 2.05-2.05 2.05.92 2.05 2.05c0 .233-.041.456-.113.665l3.163 3.163V9.928a2.05 2.05 0 0 1-1.15-1.84c0-1.13.92-2.05 2.05-2.05s2.05.92 2.05 2.05a2.05 2.05 0 0 1-1.15 1.84v8.127l3.146-3.146A2.051 2.051 0 0 1 18 12.239c1.13 0 2.05.92 2.05 2.05s-.92 2.05-2.05 2.05c-.25 0-.488-.047-.709-.13L12.9 20.602v3.088h9.6c.825 0 1.5-.675 1.5-1.5v-9c0-.825-.477-1.977-1.061-2.561z" }) + ] + } + ); +}); + +exports.default = SiHomeassistant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.d.ts new file mode 100644 index 000000000..5fa1f82f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18BCF2"; +declare const SiHomeassistant: IconType; +export { SiHomeassistant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.mjs new file mode 100644 index 000000000..d843c86a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18BCF2"; +const SiHomeassistant = React.forwardRef(function SiHomeassistant2({ title = "Home Assistant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.939 10.627 13.061.749a1.505 1.505 0 0 0-2.121 0l-9.879 9.878C.478 11.21 0 12.363 0 13.187v9c0 .826.675 1.5 1.5 1.5h9.227l-4.063-4.062a2.034 2.034 0 0 1-.664.113c-1.13 0-2.05-.92-2.05-2.05s.92-2.05 2.05-2.05 2.05.92 2.05 2.05c0 .233-.041.456-.113.665l3.163 3.163V9.928a2.05 2.05 0 0 1-1.15-1.84c0-1.13.92-2.05 2.05-2.05s2.05.92 2.05 2.05a2.05 2.05 0 0 1-1.15 1.84v8.127l3.146-3.146A2.051 2.051 0 0 1 18 12.239c1.13 0 2.05.92 2.05 2.05s-.92 2.05-2.05 2.05c-.25 0-.488-.047-.709-.13L12.9 20.602v3.088h9.6c.825 0 1.5-.675 1.5-1.5v-9c0-.825-.477-1.977-1.061-2.561z" }) + ] + } + ); +}); + +export { SiHomeassistant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.cjs new file mode 100644 index 000000000..724ede4f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41BDF5"; +const SiHomeassistantcommunitystore = React__namespace.forwardRef(function SiHomeassistantcommunitystore2({ title = "Home Assistant Community Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.63.47a.393.393 0 0 0-.39.39v2.417c0 .212.177.39.39.39h20.74c.213 0 .39-.178.39-.39V.859a.393.393 0 0 0-.39-.39zm-.045 4.126a.41.41 0 0 0-.407.337l-1.17 6.314C0 11.274 0 11.3 0 11.327v2.117c0 .23.186.416.416.416h23.168c.23 0 .416-.186.416-.416v-2.126c0-.027 0-.053-.009-.08l-1.169-6.305a.41.41 0 0 0-.407-.337zM1.7 14.781a.457.457 0 0 0-.46.46v7.829c0 .257.203.46.46.46h14.108c.257 0 .46-.203.46-.46v-6.589c0-.257.204-.46.461-.46h4.02c.258 0 .461.203.461.46v6.589c0 .257.204.46.46.46h.62a.456.456 0 0 0 .461-.46v-7.829a.458.458 0 0 0-.46-.46zm1.842 1.55h7.847c.212 0 .39.177.39.39V21.6c0 .212-.178.39-.39.39H3.542a.393.393 0 0 1-.39-.39v-4.88c0-.221.178-.39.39-.39Z" }) + ] + } + ); +}); + +exports.default = SiHomeassistantcommunitystore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.d.ts new file mode 100644 index 000000000..a0cfcf0df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41BDF5"; +declare const SiHomeassistantcommunitystore: IconType; +export { SiHomeassistantcommunitystore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.mjs new file mode 100644 index 000000000..f397afbe7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomeassistantcommunitystore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41BDF5"; +const SiHomeassistantcommunitystore = React.forwardRef(function SiHomeassistantcommunitystore2({ title = "Home Assistant Community Store", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.63.47a.393.393 0 0 0-.39.39v2.417c0 .212.177.39.39.39h20.74c.213 0 .39-.178.39-.39V.859a.393.393 0 0 0-.39-.39zm-.045 4.126a.41.41 0 0 0-.407.337l-1.17 6.314C0 11.274 0 11.3 0 11.327v2.117c0 .23.186.416.416.416h23.168c.23 0 .416-.186.416-.416v-2.126c0-.027 0-.053-.009-.08l-1.169-6.305a.41.41 0 0 0-.407-.337zM1.7 14.781a.457.457 0 0 0-.46.46v7.829c0 .257.203.46.46.46h14.108c.257 0 .46-.203.46-.46v-6.589c0-.257.204-.46.461-.46h4.02c.258 0 .461.203.461.46v6.589c0 .257.204.46.46.46h.62a.456.456 0 0 0 .461-.46v-7.829a.458.458 0 0 0-.46-.46zm1.842 1.55h7.847c.212 0 .39.177.39.39V21.6c0 .212-.178.39-.39.39H3.542a.393.393 0 0 1-.39-.39v-4.88c0-.221.178-.39.39-.39Z" }) + ] + } + ); +}); + +export { SiHomeassistantcommunitystore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.cjs new file mode 100644 index 000000000..a6aa99117 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBB040"; +const SiHomebrew = React__namespace.forwardRef(function SiHomebrew2({ title = "Homebrew", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.938 0a.214.214 0 0 0-.206.156c-.316 1.104.179 2.15.838 2.935.153.181.313.347.476.501a2.039 2.039 0 0 0-.665.02c-1.184.233-2.193.985-2.74 2.532a3.893 3.893 0 0 0-.2 1.466 1.565 1.565 0 0 0-1.156 1.504 1.59 1.59 0 0 0 1.227 1.541l.026 12.046c0 .195.1.377.264.482a.214.214 0 0 0 .008.005c.537.31 2.047.812 5.21.812 3.238 0 4.7-.678 5.181-1.04a.214.214 0 0 0 .008-.007.571.571 0 0 0 .206-.439c.002-.344.002-1.136.002-1.604a.143.143 0 0 1 .147-.144c.397.006.869.006 1.318.005a1.826 1.826 0 0 0 1.832-1.825v-5.804a1.826 1.826 0 0 0-1.825-1.826H16.56a.14.14 0 0 1-.143-.144V10.6h.007v-.001a1.573 1.573 0 0 0 1.356-1.556c0-.816-.627-1.489-1.424-1.563-.025-1.438-.437-2.126-.736-2.58a.214.214 0 0 0-.005-.007c-.364-.51-1.193-1.282-2.275-1.316-.503-.016-.842.124-1.125.254-.217.1-.42.177-.67.22.002-1.286.945-1.981.945-1.981a.214.214 0 0 0 .05-.298s-.087-.122-.21-.26c-.121-.136-.269-.294-.47-.378a.214.214 0 0 0-.079-.017.214.214 0 0 0-.145.055 4.308 4.308 0 0 0-.875 1.101 3.42 3.42 0 0 0-.133.273 3.497 3.497 0 0 0-.381-.846C9.794.978 9.063.436 8.017.016A.214.214 0 0 0 7.939 0zm.156.524c.85.378 1.43.83 1.79 1.403.274.438.426.962.484 1.584a3.07 3.07 0 0 0-.012.462 6.897 6.897 0 0 1-.168-.052 5.487 5.487 0 0 1-1.29-1.106c-.551-.657-.935-1.46-.804-2.291zM11.8 1.618c.07.054.141.101.212.18.034.039.032.04.058.073-.332.308-1.07 1.144-.952 2.453a.214.214 0 0 0 .222.195c.469-.017.782-.172 1.056-.299.273-.126.508-.228.931-.214.875.027 1.639.715 1.939 1.134.295.449.65 1 .663 2.36a1.66 1.66 0 0 0-.41.142 1.938 1.938 0 0 0-1.77-1.16 1.94 1.94 0 0 0-1.87 1.448 1.783 1.783 0 0 0-1.356-.64c-.484 0-.91.205-1.233.517a1.873 1.873 0 0 0-1.85-1.625c-.649 0-1.218.335-1.552.84a3.1 3.1 0 0 1 .157-.735c.51-1.437 1.355-2.045 2.42-2.254.367-.073.664-.011.99.095.325.106.671.262 1.094.342a.214.214 0 0 0 .252-.245c-.112-.67.073-1.266.336-1.744a3.71 3.71 0 0 1 .663-.863zM7.44 6.611a1.442 1.442 0 0 1 1.363 1.925.214.214 0 0 0 .168.283h.005a.214.214 0 0 0 .238-.146 1.373 1.373 0 0 1 2.613-.01.214.214 0 0 0 .417-.09 1.509 1.509 0 0 1 1.504-1.664c.678 0 1.249.445 1.442 1.056a.214.214 0 0 0 .259.143l.15-.04a.214.214 0 0 0 .051-.02 1.139 1.139 0 0 1 1.702.995 1.14 1.14 0 0 1-.985 1.131.214.214 0 0 0-.001 0 2.215 2.215 0 0 0-.485.126 10.65 10.65 0 0 1-1.176.365.214.214 0 0 0-.162.186 1.276 1.276 0 0 1-.146.478 2.07 2.07 0 0 0-.239 1.111l.001.151a.438.438 0 0 1-.16.36.665.665 0 0 1-.43.14.586.586 0 0 1-.588-.59.803.803 0 0 0-.38-.681.214.214 0 0 0-.002-.002c-.24-.145-.43-.37-.532-.636a.214.214 0 0 0-.207-.138 19.469 19.469 0 0 1-5.37-.6l-.003-.002a9.007 9.007 0 0 0-.838-.194h.003a1.16 1.16 0 0 1-.937-1.134c0-.619.488-1.118 1.101-1.14a.214.214 0 0 0 .204-.176 1.443 1.443 0 0 1 1.42-1.187zm8.549 4.106v.455c0 .314.259.573.572.573h1.329a1.397 1.397 0 0 1 1.397 1.397v5.804a1.396 1.396 0 0 1-1.402 1.396.214.214 0 0 0-.002 0c-.448.002-.918 0-1.31-.005a.573.573 0 0 0-.584.573c0 .468 0 1.262-.002 1.603a.214.214 0 0 0 0 .001c0 .042-.019.08-.05.107-.346.26-1.75.95-4.915.95-3.107 0-4.587-.52-4.99-.752a.143.143 0 0 1-.065-.118l-.025-11.955c.145.033.288.07.431.11a.214.214 0 0 0 .003 0c.115.031.246.064.383.097v10.37c0 .129.069.247.18.31.453.217 1.767.732 4.071.732 2.32 0 3.595-.626 4.022-.884a.357.357 0 0 0 .164-.3l.001-10.21c.267-.075.531-.158.792-.254zm-7.99.894a.493.493 0 0 1 .494.493v8.578a.493.493 0 0 1-.493.493.493.493 0 0 1-.494-.493v-8.578A.493.493 0 0 1 8 11.611zm8.652 1.14a.663.663 0 0 0-.662.662v5.208a.663.663 0 0 0 .662.662h1.14a.663.663 0 0 0 .662-.662v-5.209a.663.663 0 0 0-.662-.662zm0 .428h1.14a.233.233 0 0 1 .233.233v5.21a.233.233 0 0 1-.233.232h-1.14a.233.233 0 0 1-.233-.233v-5.209a.233.233 0 0 1 .233-.233z" }) + ] + } + ); +}); + +exports.default = SiHomebrew; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.d.ts new file mode 100644 index 000000000..7f1a151ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBB040"; +declare const SiHomebrew: IconType; +export { SiHomebrew as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.mjs new file mode 100644 index 000000000..734ccbdac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebrew.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBB040"; +const SiHomebrew = React.forwardRef(function SiHomebrew2({ title = "Homebrew", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.938 0a.214.214 0 0 0-.206.156c-.316 1.104.179 2.15.838 2.935.153.181.313.347.476.501a2.039 2.039 0 0 0-.665.02c-1.184.233-2.193.985-2.74 2.532a3.893 3.893 0 0 0-.2 1.466 1.565 1.565 0 0 0-1.156 1.504 1.59 1.59 0 0 0 1.227 1.541l.026 12.046c0 .195.1.377.264.482a.214.214 0 0 0 .008.005c.537.31 2.047.812 5.21.812 3.238 0 4.7-.678 5.181-1.04a.214.214 0 0 0 .008-.007.571.571 0 0 0 .206-.439c.002-.344.002-1.136.002-1.604a.143.143 0 0 1 .147-.144c.397.006.869.006 1.318.005a1.826 1.826 0 0 0 1.832-1.825v-5.804a1.826 1.826 0 0 0-1.825-1.826H16.56a.14.14 0 0 1-.143-.144V10.6h.007v-.001a1.573 1.573 0 0 0 1.356-1.556c0-.816-.627-1.489-1.424-1.563-.025-1.438-.437-2.126-.736-2.58a.214.214 0 0 0-.005-.007c-.364-.51-1.193-1.282-2.275-1.316-.503-.016-.842.124-1.125.254-.217.1-.42.177-.67.22.002-1.286.945-1.981.945-1.981a.214.214 0 0 0 .05-.298s-.087-.122-.21-.26c-.121-.136-.269-.294-.47-.378a.214.214 0 0 0-.079-.017.214.214 0 0 0-.145.055 4.308 4.308 0 0 0-.875 1.101 3.42 3.42 0 0 0-.133.273 3.497 3.497 0 0 0-.381-.846C9.794.978 9.063.436 8.017.016A.214.214 0 0 0 7.939 0zm.156.524c.85.378 1.43.83 1.79 1.403.274.438.426.962.484 1.584a3.07 3.07 0 0 0-.012.462 6.897 6.897 0 0 1-.168-.052 5.487 5.487 0 0 1-1.29-1.106c-.551-.657-.935-1.46-.804-2.291zM11.8 1.618c.07.054.141.101.212.18.034.039.032.04.058.073-.332.308-1.07 1.144-.952 2.453a.214.214 0 0 0 .222.195c.469-.017.782-.172 1.056-.299.273-.126.508-.228.931-.214.875.027 1.639.715 1.939 1.134.295.449.65 1 .663 2.36a1.66 1.66 0 0 0-.41.142 1.938 1.938 0 0 0-1.77-1.16 1.94 1.94 0 0 0-1.87 1.448 1.783 1.783 0 0 0-1.356-.64c-.484 0-.91.205-1.233.517a1.873 1.873 0 0 0-1.85-1.625c-.649 0-1.218.335-1.552.84a3.1 3.1 0 0 1 .157-.735c.51-1.437 1.355-2.045 2.42-2.254.367-.073.664-.011.99.095.325.106.671.262 1.094.342a.214.214 0 0 0 .252-.245c-.112-.67.073-1.266.336-1.744a3.71 3.71 0 0 1 .663-.863zM7.44 6.611a1.442 1.442 0 0 1 1.363 1.925.214.214 0 0 0 .168.283h.005a.214.214 0 0 0 .238-.146 1.373 1.373 0 0 1 2.613-.01.214.214 0 0 0 .417-.09 1.509 1.509 0 0 1 1.504-1.664c.678 0 1.249.445 1.442 1.056a.214.214 0 0 0 .259.143l.15-.04a.214.214 0 0 0 .051-.02 1.139 1.139 0 0 1 1.702.995 1.14 1.14 0 0 1-.985 1.131.214.214 0 0 0-.001 0 2.215 2.215 0 0 0-.485.126 10.65 10.65 0 0 1-1.176.365.214.214 0 0 0-.162.186 1.276 1.276 0 0 1-.146.478 2.07 2.07 0 0 0-.239 1.111l.001.151a.438.438 0 0 1-.16.36.665.665 0 0 1-.43.14.586.586 0 0 1-.588-.59.803.803 0 0 0-.38-.681.214.214 0 0 0-.002-.002c-.24-.145-.43-.37-.532-.636a.214.214 0 0 0-.207-.138 19.469 19.469 0 0 1-5.37-.6l-.003-.002a9.007 9.007 0 0 0-.838-.194h.003a1.16 1.16 0 0 1-.937-1.134c0-.619.488-1.118 1.101-1.14a.214.214 0 0 0 .204-.176 1.443 1.443 0 0 1 1.42-1.187zm8.549 4.106v.455c0 .314.259.573.572.573h1.329a1.397 1.397 0 0 1 1.397 1.397v5.804a1.396 1.396 0 0 1-1.402 1.396.214.214 0 0 0-.002 0c-.448.002-.918 0-1.31-.005a.573.573 0 0 0-.584.573c0 .468 0 1.262-.002 1.603a.214.214 0 0 0 0 .001c0 .042-.019.08-.05.107-.346.26-1.75.95-4.915.95-3.107 0-4.587-.52-4.99-.752a.143.143 0 0 1-.065-.118l-.025-11.955c.145.033.288.07.431.11a.214.214 0 0 0 .003 0c.115.031.246.064.383.097v10.37c0 .129.069.247.18.31.453.217 1.767.732 4.071.732 2.32 0 3.595-.626 4.022-.884a.357.357 0 0 0 .164-.3l.001-10.21c.267-.075.531-.158.792-.254zm-7.99.894a.493.493 0 0 1 .494.493v8.578a.493.493 0 0 1-.493.493.493.493 0 0 1-.494-.493v-8.578A.493.493 0 0 1 8 11.611zm8.652 1.14a.663.663 0 0 0-.662.662v5.208a.663.663 0 0 0 .662.662h1.14a.663.663 0 0 0 .662-.662v-5.209a.663.663 0 0 0-.662-.662zm0 .428h1.14a.233.233 0 0 1 .233.233v5.21a.233.233 0 0 1-.233.232h-1.14a.233.233 0 0 1-.233-.233v-5.209a.233.233 0 0 1 .233-.233z" }) + ] + } + ); +}); + +export { SiHomebrew as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.cjs new file mode 100644 index 000000000..b9515c232 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#491F59"; +const SiHomebridge = React__namespace.forwardRef(function SiHomebridge2({ title = "Homebridge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm8.116 12.262a.74.74 0 0 1-.741-.74c0-.008.005-.016.005-.025l-1.46-1.46a1.31 1.31 0 0 1-.38-.917V5.731a.285.285 0 0 0-.284-.283h-.915a.284.284 0 0 0-.284.283v2.413L12.17 4.383a.284.284 0 0 0-.4.003L4.438 11.72a.283.283 0 0 0 0 .4l.696.697a.286.286 0 0 0 .4 0l5.635-5.552a1.302 1.302 0 0 1 1.83.008l5.525 5.525a1.3 1.3 0 0 1 0 1.836l-.679.68a1.305 1.305 0 0 1-1.824.012l-3.876-3.766a.283.283 0 0 0-.4.004l-3.723 3.74a.285.285 0 0 0 0 .4l.687.69a.283.283 0 0 0 .4 0l2.013-1.986a1.302 1.302 0 0 1 1.824 0l1.994 1.96.007.007a1.299 1.299 0 0 1 0 1.837l-1.985 1.984v.013a.74.74 0 1 1-.74-.741c.009 0 .016.005.025.005l1.975-1.98a.284.284 0 0 0 .084-.201.28.28 0 0 0-.085-.2l-1.995-1.96a.285.285 0 0 0-.4 0l-2.006 1.98a1.3 1.3 0 0 1-1.83-.004l-.69-.689a1.301 1.301 0 0 1 0-1.834l3.72-3.74a1.303 1.303 0 0 1 1.826-.016l3.879 3.758a.285.285 0 0 0 .4 0l.679-.679a.285.285 0 0 0 0-.4L12.28 7.986a.284.284 0 0 0-.4 0l-5.637 5.555a1.301 1.301 0 0 1-1.829-.008l-.698-.694-.002-.003a1.296 1.296 0 0 1 .002-1.834l7.334-7.334a1.305 1.305 0 0 1 1.821-.015l2.166 2.097v-.019a1.3 1.3 0 0 1 1.299-1.298h.916a1.3 1.3 0 0 1 1.298 1.298v3.384a.282.282 0 0 0 .083.2l1.467 1.467h.014a.74.74 0 0 1 .001 1.48z" }) + ] + } + ); +}); + +exports.default = SiHomebridge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.d.ts new file mode 100644 index 000000000..e4f48e79d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#491F59"; +declare const SiHomebridge: IconType; +export { SiHomebridge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.mjs new file mode 100644 index 000000000..be77a21eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomebridge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#491F59"; +const SiHomebridge = React.forwardRef(function SiHomebridge2({ title = "Homebridge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm8.116 12.262a.74.74 0 0 1-.741-.74c0-.008.005-.016.005-.025l-1.46-1.46a1.31 1.31 0 0 1-.38-.917V5.731a.285.285 0 0 0-.284-.283h-.915a.284.284 0 0 0-.284.283v2.413L12.17 4.383a.284.284 0 0 0-.4.003L4.438 11.72a.283.283 0 0 0 0 .4l.696.697a.286.286 0 0 0 .4 0l5.635-5.552a1.302 1.302 0 0 1 1.83.008l5.525 5.525a1.3 1.3 0 0 1 0 1.836l-.679.68a1.305 1.305 0 0 1-1.824.012l-3.876-3.766a.283.283 0 0 0-.4.004l-3.723 3.74a.285.285 0 0 0 0 .4l.687.69a.283.283 0 0 0 .4 0l2.013-1.986a1.302 1.302 0 0 1 1.824 0l1.994 1.96.007.007a1.299 1.299 0 0 1 0 1.837l-1.985 1.984v.013a.74.74 0 1 1-.74-.741c.009 0 .016.005.025.005l1.975-1.98a.284.284 0 0 0 .084-.201.28.28 0 0 0-.085-.2l-1.995-1.96a.285.285 0 0 0-.4 0l-2.006 1.98a1.3 1.3 0 0 1-1.83-.004l-.69-.689a1.301 1.301 0 0 1 0-1.834l3.72-3.74a1.303 1.303 0 0 1 1.826-.016l3.879 3.758a.285.285 0 0 0 .4 0l.679-.679a.285.285 0 0 0 0-.4L12.28 7.986a.284.284 0 0 0-.4 0l-5.637 5.555a1.301 1.301 0 0 1-1.829-.008l-.698-.694-.002-.003a1.296 1.296 0 0 1 .002-1.834l7.334-7.334a1.305 1.305 0 0 1 1.821-.015l2.166 2.097v-.019a1.3 1.3 0 0 1 1.299-1.298h.916a1.3 1.3 0 0 1 1.298 1.298v3.384a.282.282 0 0 0 .083.2l1.467 1.467h.014a.74.74 0 0 1 .001 1.48z" }) + ] + } + ); +}); + +export { SiHomebridge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.cjs new file mode 100644 index 000000000..ac0cd3d0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009BD5"; +const SiHomepage = React__namespace.forwardRef(function SiHomepage2({ title = "Homepage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.992.034C1.217.166.602.841.416 1.769.388 1.901.36 21.858.388 23.895c0 .181 0 .181.923-.593.497-.416 1.328-1.128 1.801-1.516.34-.28.626-.543.637-.576.011-.039.022-1.148.017-2.466L3.76 16.35h1.516c.829 0 1.52.022 1.537.044.017.021.028.538.022 1.142 0 .61.011 1.104.022 1.104.017 0 .643-.522.725-.604.017-.017.401-.335.851-.714.923-.77.917-.764 1.373-1.148.28-.236.34-.264.412-.203.072.066 2.878 2.421 3.592 3.02a1239.37 1239.37 0 0 1 3.932 3.306c.003.003 2.02 1.74 2.076 1.702.021-.01.038-3.333.038-7.38-.006-6.574.005-7.365.082-7.381.044-.011.895-.017 1.884-.017h1.801l-.022-3.761c-.005-2.07-.033-3.817-.05-3.877-.142-.495-.51-1.022-.883-1.28-.473-.318.164-.302-10.566-.302-5.442-.005-9.99.011-10.11.033Z" }) + ] + } + ); +}); + +exports.default = SiHomepage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.d.ts new file mode 100644 index 000000000..1ad6b9c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009BD5"; +declare const SiHomepage: IconType; +export { SiHomepage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.mjs new file mode 100644 index 000000000..97872d96c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomepage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009BD5"; +const SiHomepage = React.forwardRef(function SiHomepage2({ title = "Homepage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.992.034C1.217.166.602.841.416 1.769.388 1.901.36 21.858.388 23.895c0 .181 0 .181.923-.593.497-.416 1.328-1.128 1.801-1.516.34-.28.626-.543.637-.576.011-.039.022-1.148.017-2.466L3.76 16.35h1.516c.829 0 1.52.022 1.537.044.017.021.028.538.022 1.142 0 .61.011 1.104.022 1.104.017 0 .643-.522.725-.604.017-.017.401-.335.851-.714.923-.77.917-.764 1.373-1.148.28-.236.34-.264.412-.203.072.066 2.878 2.421 3.592 3.02a1239.37 1239.37 0 0 1 3.932 3.306c.003.003 2.02 1.74 2.076 1.702.021-.01.038-3.333.038-7.38-.006-6.574.005-7.365.082-7.381.044-.011.895-.017 1.884-.017h1.801l-.022-3.761c-.005-2.07-.033-3.817-.05-3.877-.142-.495-.51-1.022-.883-1.28-.473-.318.164-.302-10.566-.302-5.442-.005-9.99.011-10.11.033Z" }) + ] + } + ); +}); + +export { SiHomepage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.cjs new file mode 100644 index 000000000..3ed022f9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7DCDA3"; +const SiHomify = React__namespace.forwardRef(function SiHomify2({ title = "homify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.383 10.561a1.727 1.727 0 0 1 0 .055l-.004.048c-.088 2.33-.057 11.357-.057 11.823.002 1.078-.826 1.943-1.596 1.283l-6.98-5.53a373.72 373.72 0 0 1-4.742 4.925c-.977.946-1.786-1.327-1.045-1.808.066-.042 2.223-1.95 4.61-4.05L5.4 13.214c-.446-.356-.618-.946-.363-1.261a.46.46 0 0 1 .328-.127.47.47 0 0 1 .164.037c1.596.722 3.962 2.492 6.314 4.329 2.45-2.15 4.805-4.191 5.116-4.364.38-.214.48.354.354.516-.131.166-2.169 2.326-4.408 4.678 2.204 1.732 4.294 3.389 5.614 4.137l.217-10.62c-.17-.206-5.332-7.163-5.892-7.746-.892.78-5.566 6.112-5.802 6.342 1.067.11 5.597.382 8.452.684.721.07 1.2.606-.346.59l-11.105-.015a.44.44 0 0 1-.394-.267.415.415 0 0 1 .094-.457C3.8 9.613 11.782.748 12.454.184A.702.702 0 0 1 12.935 0a.732.732 0 0 1 .483.227c.083.077 4.292 5.94 6.344 8.802.492.678.617 1.137.621 1.5z" }) + ] + } + ); +}); + +exports.default = SiHomify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.d.ts new file mode 100644 index 000000000..7fdea46be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7DCDA3"; +declare const SiHomify: IconType; +export { SiHomify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.mjs new file mode 100644 index 000000000..185cb7a9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHomify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7DCDA3"; +const SiHomify = React.forwardRef(function SiHomify2({ title = "homify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.383 10.561a1.727 1.727 0 0 1 0 .055l-.004.048c-.088 2.33-.057 11.357-.057 11.823.002 1.078-.826 1.943-1.596 1.283l-6.98-5.53a373.72 373.72 0 0 1-4.742 4.925c-.977.946-1.786-1.327-1.045-1.808.066-.042 2.223-1.95 4.61-4.05L5.4 13.214c-.446-.356-.618-.946-.363-1.261a.46.46 0 0 1 .328-.127.47.47 0 0 1 .164.037c1.596.722 3.962 2.492 6.314 4.329 2.45-2.15 4.805-4.191 5.116-4.364.38-.214.48.354.354.516-.131.166-2.169 2.326-4.408 4.678 2.204 1.732 4.294 3.389 5.614 4.137l.217-10.62c-.17-.206-5.332-7.163-5.892-7.746-.892.78-5.566 6.112-5.802 6.342 1.067.11 5.597.382 8.452.684.721.07 1.2.606-.346.59l-11.105-.015a.44.44 0 0 1-.394-.267.415.415 0 0 1 .094-.457C3.8 9.613 11.782.748 12.454.184A.702.702 0 0 1 12.935 0a.732.732 0 0 1 .483.227c.083.077 4.292 5.94 6.344 8.802.492.678.617 1.137.621 1.5z" }) + ] + } + ); +}); + +export { SiHomify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.cjs new file mode 100644 index 000000000..df1e7ae65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E40521"; +const SiHonda = React__namespace.forwardRef(function SiHonda2({ title = "Honda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.902 6.87c-.33-3.218-2.47-3.895-4.354-4.204-.946-.16-2.63-.3-3.716-.34-.946-.06-3.168-.09-3.835-.09-.657 0-2.89.03-3.835.09-1.076.04-2.77.18-3.716.34C2.563 2.985.42 3.66.092 6.87c-.08.877-.1 2.023-.09 3.248.03 2.031.2 3.406.3 4.363.07.657.338 2.62.687 3.636.478 1.395.916 1.803 1.424 2.222.937.757 2.471.996 2.79 1.056 1.733.31 5.24.368 6.784.368 1.544 0 5.05-.05 6.784-.368.329-.06 1.863-.29 2.79-1.056.508-.419.946-.827 1.424-2.222.35-1.016.628-2.979.698-3.636.1-.957.279-2.332.299-4.363.04-1.225.01-2.371-.08-3.248m-1.176 5.4c-.19 2.57-.418 4.104-.747 5.22-.29.976-.637 1.623-1.165 2.092-.867.787-2.063.956-2.76 1.056-1.514.23-4.055.3-6.057.3-2.002 0-4.543-.08-6.057-.3-.697-.1-1.893-.269-2.76-1.056-.518-.469-.876-1.126-1.155-2.093-.329-1.105-.558-2.65-.747-5.22-.11-1.543-.09-4.054.08-5.4.258-2.011 1.255-3.018 3.387-3.396.996-.18 2.34-.31 3.606-.37 1.016-.07 2.7-.1 3.636-.09.936-.01 2.62.03 3.636.09 1.275.06 2.61.19 3.606.37 2.142.378 3.139 1.395 3.388 3.397.199 1.345.229 3.856.11 5.4m-5.202-8.39c-.548 2.462-.767 3.588-1.216 5.37-.428 1.715-.767 3.298-1.335 4.065-.587.777-1.365.947-1.893 1.006-.279.03-.478.04-1.066.05-.596 0-.796-.02-1.075-.05-.528-.06-1.315-.229-1.892-1.006-.578-.767-.907-2.35-1.335-4.064-.47-1.773-.678-2.91-1.236-5.37 0 0-.548.02-.797.04-.329.02-.588.05-.867.09.343 5.372.692 11.079 1.126 16.13a21.983 21.983 0 002.39.169c.33-1.266.748-3.02 1.207-3.767.378-.608.966-.677 1.295-.717.518-.07.956-.08 1.165-.08.2-.01.637 0 1.165.08.33.05.917.11 1.295.717.47.747.877 2.5 1.206 3.766 0 0 .358-.01 1.165-.05.41-.018.82-.058 1.226-.12.458-5.39.785-10.728 1.126-16.128-.28-.04-.538-.07-.867-.09-.23-.02-.787-.04-.787-.04z" }) + ] + } + ); +}); + +exports.default = SiHonda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.d.ts new file mode 100644 index 000000000..071c2f413 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E40521"; +declare const SiHonda: IconType; +export { SiHonda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.mjs new file mode 100644 index 000000000..f9a499d53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHonda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E40521"; +const SiHonda = React.forwardRef(function SiHonda2({ title = "Honda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.902 6.87c-.33-3.218-2.47-3.895-4.354-4.204-.946-.16-2.63-.3-3.716-.34-.946-.06-3.168-.09-3.835-.09-.657 0-2.89.03-3.835.09-1.076.04-2.77.18-3.716.34C2.563 2.985.42 3.66.092 6.87c-.08.877-.1 2.023-.09 3.248.03 2.031.2 3.406.3 4.363.07.657.338 2.62.687 3.636.478 1.395.916 1.803 1.424 2.222.937.757 2.471.996 2.79 1.056 1.733.31 5.24.368 6.784.368 1.544 0 5.05-.05 6.784-.368.329-.06 1.863-.29 2.79-1.056.508-.419.946-.827 1.424-2.222.35-1.016.628-2.979.698-3.636.1-.957.279-2.332.299-4.363.04-1.225.01-2.371-.08-3.248m-1.176 5.4c-.19 2.57-.418 4.104-.747 5.22-.29.976-.637 1.623-1.165 2.092-.867.787-2.063.956-2.76 1.056-1.514.23-4.055.3-6.057.3-2.002 0-4.543-.08-6.057-.3-.697-.1-1.893-.269-2.76-1.056-.518-.469-.876-1.126-1.155-2.093-.329-1.105-.558-2.65-.747-5.22-.11-1.543-.09-4.054.08-5.4.258-2.011 1.255-3.018 3.387-3.396.996-.18 2.34-.31 3.606-.37 1.016-.07 2.7-.1 3.636-.09.936-.01 2.62.03 3.636.09 1.275.06 2.61.19 3.606.37 2.142.378 3.139 1.395 3.388 3.397.199 1.345.229 3.856.11 5.4m-5.202-8.39c-.548 2.462-.767 3.588-1.216 5.37-.428 1.715-.767 3.298-1.335 4.065-.587.777-1.365.947-1.893 1.006-.279.03-.478.04-1.066.05-.596 0-.796-.02-1.075-.05-.528-.06-1.315-.229-1.892-1.006-.578-.767-.907-2.35-1.335-4.064-.47-1.773-.678-2.91-1.236-5.37 0 0-.548.02-.797.04-.329.02-.588.05-.867.09.343 5.372.692 11.079 1.126 16.13a21.983 21.983 0 002.39.169c.33-1.266.748-3.02 1.207-3.767.378-.608.966-.677 1.295-.717.518-.07.956-.08 1.165-.08.2-.01.637 0 1.165.08.33.05.917.11 1.295.717.47.747.877 2.5 1.206 3.766 0 0 .358-.01 1.165-.05.41-.018.82-.058 1.226-.12.458-5.39.785-10.728 1.126-16.128-.28-.04-.538-.07-.867-.09-.23-.02-.787-.04-.787-.04z" }) + ] + } + ); +}); + +export { SiHonda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.cjs new file mode 100644 index 000000000..00811a851 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6801"; +const SiHoney = React__namespace.forwardRef(function SiHoney2({ title = "Honey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.416 5.59c.04-.994.254-2.312.909-3.091.922-1.09 2.794-.914 3.102.658.146.767-.054 1.708-.402 2.367-.734 1.439-2.1 2.622-3.636 3.026.013-.901 0-2.071.027-2.96zm12.54 13.904c-.775.901-1.764 1.6-2.714 1.56-1.07-.04-.963-1.372-.963-2.124v-3.16c.014-.605.014-1.21-.053-1.802-.174-1.761-1.204-3.173-3.142-3.307-3.37-.135-4.706 3.132-5.695 5.821v-5.89c2.94-.456 7.02-2.11 7.14-5.875.2-6.4-10.563-6.629-10.523 1.426.014.618.014 1.802.014 2.42-1.445-.215-2.608-2.34-3.143-3.604a.35.35 0 0 0-.427-.215C.43 5.27.137 7.407 1.5 8.86c1.124 1.197 2.915 1.654 4.493 1.735-.013 4.664-.013 7.542-.013 12.194.067.66.962.835 1.484.848.588.013 1.684-.16 1.738-.928.187-2.286 2.125-9.036 4.76-9.036.613 0 .908.403.908.995v5.5c0 2.286 1.284 3.818 3.623 3.832 2.073 0 3.891-1.72 4.8-3.698.281-.632-.922-1.278-1.337-.807z" }) + ] + } + ); +}); + +exports.default = SiHoney; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.d.ts new file mode 100644 index 000000000..9e62d4b05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6801"; +declare const SiHoney: IconType; +export { SiHoney as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.mjs new file mode 100644 index 000000000..01bdd1a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoney.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6801"; +const SiHoney = React.forwardRef(function SiHoney2({ title = "Honey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.416 5.59c.04-.994.254-2.312.909-3.091.922-1.09 2.794-.914 3.102.658.146.767-.054 1.708-.402 2.367-.734 1.439-2.1 2.622-3.636 3.026.013-.901 0-2.071.027-2.96zm12.54 13.904c-.775.901-1.764 1.6-2.714 1.56-1.07-.04-.963-1.372-.963-2.124v-3.16c.014-.605.014-1.21-.053-1.802-.174-1.761-1.204-3.173-3.142-3.307-3.37-.135-4.706 3.132-5.695 5.821v-5.89c2.94-.456 7.02-2.11 7.14-5.875.2-6.4-10.563-6.629-10.523 1.426.014.618.014 1.802.014 2.42-1.445-.215-2.608-2.34-3.143-3.604a.35.35 0 0 0-.427-.215C.43 5.27.137 7.407 1.5 8.86c1.124 1.197 2.915 1.654 4.493 1.735-.013 4.664-.013 7.542-.013 12.194.067.66.962.835 1.484.848.588.013 1.684-.16 1.738-.928.187-2.286 2.125-9.036 4.76-9.036.613 0 .908.403.908.995v5.5c0 2.286 1.284 3.818 3.623 3.832 2.073 0 3.891-1.72 4.8-3.698.281-.632-.922-1.278-1.337-.807z" }) + ] + } + ); +}); + +export { SiHoney as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.cjs new file mode 100644 index 000000000..ae989cd2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA5937"; +const SiHoneybadger = React__namespace.forwardRef(function SiHoneybadger2({ title = "Honeybadger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0c-.346 0-.691.131-.955.395L.394 11.045a1.35 1.35 0 0 0 0 1.91l6.243 6.24.915-1.95L2.306 12l9.693-9.693 1.158 1.157 1.432-1.432L12.954.395A1.346 1.346 0 0 0 11.999 0Zm5.54 1.106a.331.331 0 0 0-.218.102l-1.777 1.778-1.432 1.432-8.393 8.392h4.726l-3.76 9.26c-.139.34.29.626.55.366l1.321-1.32v-.001l1.432-1.432h.001l8.56-8.561h-4.727l2.083-4.91v.001l.854-2.012 1.112-2.623c.108-.256-.108-.485-.333-.472Zm.25 4.125-.853 2.012 4.756 4.756L12 21.693l-1.056-1.055-1.432 1.432 1.533 1.534a1.35 1.35 0 0 0 1.91 0l10.65-10.65a1.35 1.35 0 0 0 0-1.91z" }) + ] + } + ); +}); + +exports.default = SiHoneybadger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.d.ts new file mode 100644 index 000000000..eb237a966 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA5937"; +declare const SiHoneybadger: IconType; +export { SiHoneybadger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.mjs new file mode 100644 index 000000000..55786a3b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneybadger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA5937"; +const SiHoneybadger = React.forwardRef(function SiHoneybadger2({ title = "Honeybadger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0c-.346 0-.691.131-.955.395L.394 11.045a1.35 1.35 0 0 0 0 1.91l6.243 6.24.915-1.95L2.306 12l9.693-9.693 1.158 1.157 1.432-1.432L12.954.395A1.346 1.346 0 0 0 11.999 0Zm5.54 1.106a.331.331 0 0 0-.218.102l-1.777 1.778-1.432 1.432-8.393 8.392h4.726l-3.76 9.26c-.139.34.29.626.55.366l1.321-1.32v-.001l1.432-1.432h.001l8.56-8.561h-4.727l2.083-4.91v.001l.854-2.012 1.112-2.623c.108-.256-.108-.485-.333-.472Zm.25 4.125-.853 2.012 4.756 4.756L12 21.693l-1.056-1.055-1.432 1.432 1.533 1.534a1.35 1.35 0 0 0 1.91 0l10.65-10.65a1.35 1.35 0 0 0 0-1.91z" }) + ] + } + ); +}); + +export { SiHoneybadger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.cjs new file mode 100644 index 000000000..378db4c73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9C900"; +const SiHoneygain = React__namespace.forwardRef(function SiHoneygain2({ title = "Honeygain", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.721 3.048a1.352 1.352 0 0 0-1.38 1.56 6.38 6.38 0 0 0-1.864 3.2l-.77-.001c-.63 0-1.35.003-2.12.016l-7.965-.028A4.394 4.394 0 0 0 3.4 16.463l.002.002-2.096 3.543 4.343-1.48c2.612 1.705 6.279 2.425 10.278 2.425a6.572 6.572 0 0 0 3.058-12.39 4.972 4.972 0 0 1 2.552-1.16 1.352 1.352 0 1 0-.096-1.377c-1.47.188-2.787.861-3.881 1.987-.22-.056-.443-.1-.67-.134a4.937 4.937 0 0 1 1.331-2.208 1.352 1.352 0 1 0 .5-2.623ZM4.391 9.167c.053 0 .106 0 .16.004l.033.001h.033l7.936.028-6.08 5.168-.021.018-.02.018a3.002 3.002 0 0 1-2.195.793 3.02 3.02 0 0 1-2.856-3.17 3.014 3.014 0 0 1 3.01-2.86Zm10.553.017h.455l.528.001a5.201 5.201 0 0 1 5.196 5.196 5.2 5.2 0 0 1-5.196 5.195c-.354 0-.701-.007-1.043-.018-1.779-1.578-2.676-3.269-2.665-5.026.021-3.025 2.698-5.325 2.725-5.348zm-3.628 2.875a7.142 7.142 0 0 0-.474 2.463c-.011 1.722.65 3.36 1.963 4.889a20.2 20.2 0 0 1-2.575-.45c-1.076-1.835-1.427-3.545-1.045-5.091Zm-3.659 3.11c.008 1.037.254 2.112.736 3.218-1.252-.488-2.297-1.124-3.118-1.898a4.393 4.393 0 0 0 2.089-1.071Zm9.237-4.08a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4zm-.431.723a.545.545 0 0 1 .521.708.535.535 0 0 1-.309.341.538.538 0 0 1-.322.032.535.535 0 0 1-.311-.188.552.552 0 0 1-.122-.403.563.563 0 0 1 .09-.25.549.549 0 0 1 .453-.24z" }) + ] + } + ); +}); + +exports.default = SiHoneygain; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.d.ts new file mode 100644 index 000000000..a6e916fab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9C900"; +declare const SiHoneygain: IconType; +export { SiHoneygain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.mjs new file mode 100644 index 000000000..4a52a3bee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoneygain.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9C900"; +const SiHoneygain = React.forwardRef(function SiHoneygain2({ title = "Honeygain", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.721 3.048a1.352 1.352 0 0 0-1.38 1.56 6.38 6.38 0 0 0-1.864 3.2l-.77-.001c-.63 0-1.35.003-2.12.016l-7.965-.028A4.394 4.394 0 0 0 3.4 16.463l.002.002-2.096 3.543 4.343-1.48c2.612 1.705 6.279 2.425 10.278 2.425a6.572 6.572 0 0 0 3.058-12.39 4.972 4.972 0 0 1 2.552-1.16 1.352 1.352 0 1 0-.096-1.377c-1.47.188-2.787.861-3.881 1.987-.22-.056-.443-.1-.67-.134a4.937 4.937 0 0 1 1.331-2.208 1.352 1.352 0 1 0 .5-2.623ZM4.391 9.167c.053 0 .106 0 .16.004l.033.001h.033l7.936.028-6.08 5.168-.021.018-.02.018a3.002 3.002 0 0 1-2.195.793 3.02 3.02 0 0 1-2.856-3.17 3.014 3.014 0 0 1 3.01-2.86Zm10.553.017h.455l.528.001a5.201 5.201 0 0 1 5.196 5.196 5.2 5.2 0 0 1-5.196 5.195c-.354 0-.701-.007-1.043-.018-1.779-1.578-2.676-3.269-2.665-5.026.021-3.025 2.698-5.325 2.725-5.348zm-3.628 2.875a7.142 7.142 0 0 0-.474 2.463c-.011 1.722.65 3.36 1.963 4.889a20.2 20.2 0 0 1-2.575-.45c-1.076-1.835-1.427-3.545-1.045-5.091Zm-3.659 3.11c.008 1.037.254 2.112.736 3.218-1.252-.488-2.297-1.124-3.118-1.898a4.393 4.393 0 0 0 2.089-1.071Zm9.237-4.08a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4zm-.431.723a.545.545 0 0 1 .521.708.535.535 0 0 1-.309.341.538.538 0 0 1-.322.032.535.535 0 0 1-.311-.188.552.552 0 0 1-.122-.403.563.563 0 0 1 .09-.25.549.549 0 0 1 .453-.24z" }) + ] + } + ); +}); + +export { SiHoneygain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHono.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHono.cjs new file mode 100644 index 000000000..629c73cd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHono.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E36002"; +const SiHono = React__namespace.forwardRef(function SiHono2({ title = "Hono", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.445.002a45.529 45.529 0 0 0-5.252 8.146 8.595 8.595 0 0 1-.555-.53 27.796 27.796 0 0 0-1.205-1.542 8.762 8.762 0 0 0-1.251 2.12 20.743 20.743 0 0 0-1.448 5.88 8.867 8.867 0 0 0 .338 3.468c1.312 3.48 3.794 5.593 7.445 6.337 3.055.438 5.755-.333 8.097-2.312 2.677-2.59 3.359-5.634 2.047-9.132a33.287 33.287 0 0 0-2.988-5.59A91.34 91.34 0 0 0 12.615.053a.216.216 0 0 0-.17-.051Zm-.336 3.906a50.93 50.93 0 0 1 4.794 6.552c.448.767.817 1.57 1.108 2.41.606 2.386-.044 4.354-1.951 5.904-1.845 1.298-3.87 1.683-6.072 1.156-2.376-.737-3.75-2.335-4.121-4.794a5.107 5.107 0 0 1 .242-2.266c.358-.908.79-1.774 1.3-2.601l1.446-2.121a397.33 397.33 0 0 0 3.254-4.24Z" }) + ] + } + ); +}); + +exports.default = SiHono; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHono.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHono.d.ts new file mode 100644 index 000000000..470f9811f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHono.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E36002"; +declare const SiHono: IconType; +export { SiHono as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHono.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHono.mjs new file mode 100644 index 000000000..e2d832676 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHono.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E36002"; +const SiHono = React.forwardRef(function SiHono2({ title = "Hono", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.445.002a45.529 45.529 0 0 0-5.252 8.146 8.595 8.595 0 0 1-.555-.53 27.796 27.796 0 0 0-1.205-1.542 8.762 8.762 0 0 0-1.251 2.12 20.743 20.743 0 0 0-1.448 5.88 8.867 8.867 0 0 0 .338 3.468c1.312 3.48 3.794 5.593 7.445 6.337 3.055.438 5.755-.333 8.097-2.312 2.677-2.59 3.359-5.634 2.047-9.132a33.287 33.287 0 0 0-2.988-5.59A91.34 91.34 0 0 0 12.615.053a.216.216 0 0 0-.17-.051Zm-.336 3.906a50.93 50.93 0 0 1 4.794 6.552c.448.767.817 1.57 1.108 2.41.606 2.386-.044 4.354-1.951 5.904-1.845 1.298-3.87 1.683-6.072 1.156-2.376-.737-3.75-2.335-4.121-4.794a5.107 5.107 0 0 1 .242-2.266c.358-.908.79-1.774 1.3-2.601l1.446-2.121a397.33 397.33 0 0 0 3.254-4.24Z" }) + ] + } + ); +}); + +export { SiHono as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.cjs new file mode 100644 index 000000000..418599131 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHonor = React__namespace.forwardRef(function SiHonor2({ title = "Honor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.601 9.753v1.823H.807V9.753H0v4.498h.807v-1.874h1.794v1.874h.807V9.753h-.807Zm18.671.801h.898c.369 0 .667.297.667.662a.665.665 0 0 1-.667.663h-.898v-1.325Zm-.806-.801v4.498h.806v-2.002l1.68 2.002H24l-1.376-1.64a1.462 1.462 0 0 0-.444-2.858h-1.716.002Zm-7.63-.014v2.807l-1.959-2.807h-.644v4.498h.807v-2.82l1.968 2.82h.633V9.739h-.805Zm-7.532 2.26c0-.832.68-1.506 1.517-1.506A1.51 1.51 0 0 1 8.337 12c0 .832-.679 1.506-1.516 1.506-.403 0-.789-.159-1.073-.441A1.504 1.504 0 0 1 5.304 12v-.001ZM4.497 12c0 .933.566 1.774 1.434 2.132.869.357 1.868.16 2.533-.5.664-.66.863-1.653.503-2.515a2.324 2.324 0 0 0-2.146-1.425 2.316 2.316 0 0 0-2.323 2.307L4.497 12Zm11.04-.001a1.513 1.513 0 0 1 1.518-1.506c.838 0 1.516.675 1.516 1.507a1.513 1.513 0 0 1-1.518 1.506c-.402 0-.788-.159-1.072-.441a1.5 1.5 0 0 1-.444-1.066ZM14.73 12c0 .933.566 1.774 1.434 2.132.868.357 1.868.16 2.532-.5.665-.66.864-1.653.504-2.515a2.325 2.325 0 0 0-2.147-1.425 2.316 2.316 0 0 0-2.323 2.307V12Z" }) + ] + } + ); +}); + +exports.default = SiHonor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.d.ts new file mode 100644 index 000000000..adaf3abe2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHonor: IconType; +export { SiHonor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.mjs new file mode 100644 index 000000000..217043957 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHonor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHonor = React.forwardRef(function SiHonor2({ title = "Honor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.601 9.753v1.823H.807V9.753H0v4.498h.807v-1.874h1.794v1.874h.807V9.753h-.807Zm18.671.801h.898c.369 0 .667.297.667.662a.665.665 0 0 1-.667.663h-.898v-1.325Zm-.806-.801v4.498h.806v-2.002l1.68 2.002H24l-1.376-1.64a1.462 1.462 0 0 0-.444-2.858h-1.716.002Zm-7.63-.014v2.807l-1.959-2.807h-.644v4.498h.807v-2.82l1.968 2.82h.633V9.739h-.805Zm-7.532 2.26c0-.832.68-1.506 1.517-1.506A1.51 1.51 0 0 1 8.337 12c0 .832-.679 1.506-1.516 1.506-.403 0-.789-.159-1.073-.441A1.504 1.504 0 0 1 5.304 12v-.001ZM4.497 12c0 .933.566 1.774 1.434 2.132.869.357 1.868.16 2.533-.5.664-.66.863-1.653.503-2.515a2.324 2.324 0 0 0-2.146-1.425 2.316 2.316 0 0 0-2.323 2.307L4.497 12Zm11.04-.001a1.513 1.513 0 0 1 1.518-1.506c.838 0 1.516.675 1.516 1.507a1.513 1.513 0 0 1-1.518 1.506c-.402 0-.788-.159-1.072-.441a1.5 1.5 0 0 1-.444-1.066ZM14.73 12c0 .933.566 1.774 1.434 2.132.868.357 1.868.16 2.532-.5.665-.66.864-1.653.504-2.515a2.325 2.325 0 0 0-2.147-1.425 2.316 2.316 0 0 0-2.323 2.307V12Z" }) + ] + } + ); +}); + +export { SiHonor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.cjs new file mode 100644 index 000000000..78d289a69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4C46"; +const SiHootsuite = React__namespace.forwardRef(function SiHootsuite2({ title = "Hootsuite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.417 11.14c.505.75.28 1.572-.38 2.017-.66.444-1.505.343-2.01-.407-.506-.75-.282-1.572.378-2.017.66-.444 1.506-.343 2.012.407zm5.017-.274c-.66.444-.884 1.266-.379 2.016.506.75 1.352.852 2.012.407.66-.444.884-1.266.379-2.016-.506-.75-1.352-.852-2.012-.407zm7.422-7.086L19.03 6.638l.236.272c2.224 2.613 3.591 6.409 4.247 8.606a4.362 4.362 0 0 1-.638 3.8C21.449 21.295 18.398 24 12.369 24c-6.58 0-10-3.25-11.644-5.251a3.117 3.117 0 0 1-.51-3.067c.909-2.444 2.766-7.126 4.257-8.825a13.158 13.158 0 0 1 2.897-2.478L2.4.534c-.27-.208-.034-.632.285-.513l8.077 3.006c.38-.066.758-.1 1.13-.1 1.407 0 2.737.307 4.074 1.084l7.744-.695c.266-.024.378.331.147.464zm-8.218 13.656a4.126 4.126 0 0 1-3.316-.232c-.073-.037-.143.055-.087.115.457.49 1.273 1.35 1.766 1.775.102.088.259.077.35-.023l1.369-1.512c.053-.059-.008-.15-.082-.123zm.24-1.156-1.796-2.018a.34.34 0 0 0-.513.008l-1.44 1.716a.18.18 0 0 0 .031.262c.333.239 1.148.76 1.942.76.734 0 1.402-.285 1.724-.447a.18.18 0 0 0 .052-.281zm1.616-8.409c-.3-.034-.603.035-.862.188l-1.808 1.07c-.45.268-1.02.231-1.432-.091L11.819 7.82a4.669 4.669 0 0 0-1.776-.858c-2.698-.638-4.532.78-5.914 3.44-1.32 2.539-.583 6.184 2.672 7.05 3.438.914 5.71-2.903 6.618-4.175a.439.439 0 0 1 .712-.002c1.408 1.916 3.306 3.968 5.34 3.557 2.656-.535 2.342-3.905 1.512-5.7-.735-1.588-1.83-3.074-3.49-3.262z" }) + ] + } + ); +}); + +exports.default = SiHootsuite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.d.ts new file mode 100644 index 000000000..2b001feea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4C46"; +declare const SiHootsuite: IconType; +export { SiHootsuite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.mjs new file mode 100644 index 000000000..09f93e2ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHootsuite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4C46"; +const SiHootsuite = React.forwardRef(function SiHootsuite2({ title = "Hootsuite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.417 11.14c.505.75.28 1.572-.38 2.017-.66.444-1.505.343-2.01-.407-.506-.75-.282-1.572.378-2.017.66-.444 1.506-.343 2.012.407zm5.017-.274c-.66.444-.884 1.266-.379 2.016.506.75 1.352.852 2.012.407.66-.444.884-1.266.379-2.016-.506-.75-1.352-.852-2.012-.407zm7.422-7.086L19.03 6.638l.236.272c2.224 2.613 3.591 6.409 4.247 8.606a4.362 4.362 0 0 1-.638 3.8C21.449 21.295 18.398 24 12.369 24c-6.58 0-10-3.25-11.644-5.251a3.117 3.117 0 0 1-.51-3.067c.909-2.444 2.766-7.126 4.257-8.825a13.158 13.158 0 0 1 2.897-2.478L2.4.534c-.27-.208-.034-.632.285-.513l8.077 3.006c.38-.066.758-.1 1.13-.1 1.407 0 2.737.307 4.074 1.084l7.744-.695c.266-.024.378.331.147.464zm-8.218 13.656a4.126 4.126 0 0 1-3.316-.232c-.073-.037-.143.055-.087.115.457.49 1.273 1.35 1.766 1.775.102.088.259.077.35-.023l1.369-1.512c.053-.059-.008-.15-.082-.123zm.24-1.156-1.796-2.018a.34.34 0 0 0-.513.008l-1.44 1.716a.18.18 0 0 0 .031.262c.333.239 1.148.76 1.942.76.734 0 1.402-.285 1.724-.447a.18.18 0 0 0 .052-.281zm1.616-8.409c-.3-.034-.603.035-.862.188l-1.808 1.07c-.45.268-1.02.231-1.432-.091L11.819 7.82a4.669 4.669 0 0 0-1.776-.858c-2.698-.638-4.532.78-5.914 3.44-1.32 2.539-.583 6.184 2.672 7.05 3.438.914 5.71-2.903 6.618-4.175a.439.439 0 0 1 .712-.002c1.408 1.916 3.306 3.968 5.34 3.557 2.656-.535 2.342-3.905 1.512-5.7-.735-1.588-1.83-3.074-3.49-3.262z" }) + ] + } + ); +}); + +export { SiHootsuite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.cjs new file mode 100644 index 000000000..2ed376414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09090B"; +const SiHoppscotch = React__namespace.forwardRef(function SiHoppscotch2({ title = "Hoppscotch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.632 4.746a8.894 8.894 0 0 1 5.29 7.938c1.867 1.47 3.723 3.527 2.86 5.465-.968 2.174-4.415 2.085-8.334.985A7.113 7.113 0 0 1 5.063 14.51C1.623 12.334-.75 9.832.218 7.658c.863-1.939 3.634-1.936 5.975-1.532a8.894 8.894 0 0 1 9.439-1.38ZM1.862 8.39c-.47 1.056 2.056 4.054 8.972 7.133 6.916 3.08 10.834 2.95 11.304 1.894.39-.874-1.212-2.554-3.046-3.856-1.426-1.02-3.38-2.143-5.929-3.278-.694-.309-.964-1.133-.673-1.788.292-.655.933-1.093 2.282-1.156.635-.002.718-.178.747-.329.036-.233-.287-.47-.62-.618-2.647-1.179-5.888-.685-8.134 1.68-2.195-.491-4.514-.556-4.903.318Zm11.083 5.666c-.24.54-.98.735-1.651.436s-1.02-.979-.78-1.518c.24-.54.979-.735 1.65-.436.671.299 1.021.979.78 1.518zm4.02 2.327c.703.202 1.404-.093 1.566-.658.162-.564-.276-1.186-.98-1.387-.702-.202-1.403.093-1.565.658-.162.564.276 1.186.98 1.387zM7.218 9.737c.62.388.87 1.106.559 1.604-.311.498-1.066.588-1.686.2-.62-.387-.87-1.105-.56-1.604.312-.498 1.067-.588 1.687-.2Z" }) + ] + } + ); +}); + +exports.default = SiHoppscotch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.d.ts new file mode 100644 index 000000000..5b7fdc304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09090B"; +declare const SiHoppscotch: IconType; +export { SiHoppscotch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.mjs new file mode 100644 index 000000000..c56832017 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoppscotch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09090B"; +const SiHoppscotch = React.forwardRef(function SiHoppscotch2({ title = "Hoppscotch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.632 4.746a8.894 8.894 0 0 1 5.29 7.938c1.867 1.47 3.723 3.527 2.86 5.465-.968 2.174-4.415 2.085-8.334.985A7.113 7.113 0 0 1 5.063 14.51C1.623 12.334-.75 9.832.218 7.658c.863-1.939 3.634-1.936 5.975-1.532a8.894 8.894 0 0 1 9.439-1.38ZM1.862 8.39c-.47 1.056 2.056 4.054 8.972 7.133 6.916 3.08 10.834 2.95 11.304 1.894.39-.874-1.212-2.554-3.046-3.856-1.426-1.02-3.38-2.143-5.929-3.278-.694-.309-.964-1.133-.673-1.788.292-.655.933-1.093 2.282-1.156.635-.002.718-.178.747-.329.036-.233-.287-.47-.62-.618-2.647-1.179-5.888-.685-8.134 1.68-2.195-.491-4.514-.556-4.903.318Zm11.083 5.666c-.24.54-.98.735-1.651.436s-1.02-.979-.78-1.518c.24-.54.979-.735 1.65-.436.671.299 1.021.979.78 1.518zm4.02 2.327c.703.202 1.404-.093 1.566-.658.162-.564-.276-1.186-.98-1.387-.702-.202-1.403.093-1.565.658-.162.564.276 1.186.98 1.387zM7.218 9.737c.62.388.87 1.106.559 1.604-.311.498-1.066.588-1.686.2-.62-.387-.87-1.105-.56-1.604.312-.498 1.067-.588 1.687-.2Z" }) + ] + } + ); +}); + +export { SiHoppscotch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.cjs new file mode 100644 index 000000000..384ea7229 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#673DE6"; +const SiHostinger = React__namespace.forwardRef(function SiHostinger2({ title = "Hostinger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.415 0v7.16l5.785 3.384V2.949L16.415 0ZM1.8 0v11.237h18.815L14.89 8.09l-7.457-.003V3.024L1.8 0Zm14.615 20.894v-5.019l-7.514-.005c.007.033-5.82-3.197-5.82-3.197l19.119.091V24l-5.785-3.106ZM1.8 13.551v7.343l5.633 2.949v-6.988L1.8 13.551Z" }) + ] + } + ); +}); + +exports.default = SiHostinger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.d.ts new file mode 100644 index 000000000..3bfb9917c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#673DE6"; +declare const SiHostinger: IconType; +export { SiHostinger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.mjs new file mode 100644 index 000000000..6f8b1c268 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHostinger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#673DE6"; +const SiHostinger = React.forwardRef(function SiHostinger2({ title = "Hostinger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.415 0v7.16l5.785 3.384V2.949L16.415 0ZM1.8 0v11.237h18.815L14.89 8.09l-7.457-.003V3.024L1.8 0Zm14.615 20.894v-5.019l-7.514-.005c.007.033-5.82-3.197-5.82-3.197l19.119.091V24l-5.785-3.106ZM1.8 13.551v7.343l5.633 2.949v-6.988L1.8 13.551Z" }) + ] + } + ); +}); + +export { SiHostinger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.cjs new file mode 100644 index 000000000..ba314fdca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF3346"; +const SiHotelsdotcom = React__namespace.forwardRef(function SiHotelsdotcom2({ title = "Hotels.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.064 0H4.936a4.937 4.937 0 0 0-4.93 4.93V19.06A4.94 4.94 0 0 0 4.935 24h14.128a4.926 4.926 0 0 0 4.93-4.941V4.93A4.93 4.93 0 0 0 19.065 0zM8.55 10.63v2.329a.32.32 0 0 1-.337.337H5.884a.32.32 0 0 1-.337-.337V10.63c0-.2.137-.337.337-.337h2.34c.2 0 .336.137.336.337h-.01zm5.162 7.491a.32.32 0 0 1-.337.337h-2.328a.32.32 0 0 1-.337-.337v-2.328c0-.2.136-.337.337-.337h2.328c.19 0 .337.136.337.337v2.328zm0-5.162a.32.32 0 0 1-.337.337h-2.328a.32.32 0 0 1-.337-.337V10.63c0-.2.136-.337.337-.337h2.328c.2 0 .337.137.337.337v2.329zm5.974 4.372a.654.654 0 0 1-.22.516l-2.308 2.297c-.18.168-.432.052-.432-.2V7.28H4.062c-.253 0-.369-.264-.2-.432L6.169 4.55c.137-.147.274-.232.506-.232h11.473c.854 0 1.538.685 1.538 1.539V17.33z" }) + ] + } + ); +}); + +exports.default = SiHotelsdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.d.ts new file mode 100644 index 000000000..d5944799b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF3346"; +declare const SiHotelsdotcom: IconType; +export { SiHotelsdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.mjs new file mode 100644 index 000000000..38d40842b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotelsdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF3346"; +const SiHotelsdotcom = React.forwardRef(function SiHotelsdotcom2({ title = "Hotels.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.064 0H4.936a4.937 4.937 0 0 0-4.93 4.93V19.06A4.94 4.94 0 0 0 4.935 24h14.128a4.926 4.926 0 0 0 4.93-4.941V4.93A4.93 4.93 0 0 0 19.065 0zM8.55 10.63v2.329a.32.32 0 0 1-.337.337H5.884a.32.32 0 0 1-.337-.337V10.63c0-.2.137-.337.337-.337h2.34c.2 0 .336.137.336.337h-.01zm5.162 7.491a.32.32 0 0 1-.337.337h-2.328a.32.32 0 0 1-.337-.337v-2.328c0-.2.136-.337.337-.337h2.328c.19 0 .337.136.337.337v2.328zm0-5.162a.32.32 0 0 1-.337.337h-2.328a.32.32 0 0 1-.337-.337V10.63c0-.2.136-.337.337-.337h2.328c.2 0 .337.137.337.337v2.329zm5.974 4.372a.654.654 0 0 1-.22.516l-2.308 2.297c-.18.168-.432.052-.432-.2V7.28H4.062c-.253 0-.369-.264-.2-.432L6.169 4.55c.137-.147.274-.232.506-.232h11.473c.854 0 1.538.685 1.538 1.539V17.33z" }) + ] + } + ); +}); + +export { SiHotelsdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.cjs new file mode 100644 index 000000000..10ec52f59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3C00"; +const SiHotjar = React__namespace.forwardRef(function SiHotjar2({ title = "Hotjar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.119 9.814C12.899 8.27 16.704 6.155 16.704 0h-4.609c0 3.444-1.676 4.375-4.214 5.786C5.1 7.33 1.295 9.444 1.295 15.6h4.61c0-3.444 1.676-4.376 4.214-5.786zM18.096 8.4c0 3.444-1.677 4.376-4.215 5.785-2.778 1.544-6.585 3.66-6.585 9.815h4.609c0-3.444 1.676-4.376 4.214-5.786 2.78-1.544 6.586-3.658 6.586-9.814h-4.609z" }) + ] + } + ); +}); + +exports.default = SiHotjar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.d.ts new file mode 100644 index 000000000..fa5092461 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3C00"; +declare const SiHotjar: IconType; +export { SiHotjar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.mjs new file mode 100644 index 000000000..ff9605a4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotjar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3C00"; +const SiHotjar = React.forwardRef(function SiHotjar2({ title = "Hotjar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.119 9.814C12.899 8.27 16.704 6.155 16.704 0h-4.609c0 3.444-1.676 4.375-4.214 5.786C5.1 7.33 1.295 9.444 1.295 15.6h4.61c0-3.444 1.676-4.376 4.214-5.786zM18.096 8.4c0 3.444-1.677 4.376-4.215 5.785-2.778 1.544-6.585 3.66-6.585 9.815h4.609c0-3.444 1.676-4.376 4.214-5.786 2.78-1.544 6.586-3.658 6.586-9.814h-4.609z" }) + ] + } + ); +}); + +export { SiHotjar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.cjs new file mode 100644 index 000000000..20362f738 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE801"; +const SiHotwire = React__namespace.forwardRef(function SiHotwire2({ title = "Hotwire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.764 6.917-3.48.81L16.32 0 7.236 11.705l4.334-.854-4.087 7.982 2.364-.532L7.456 24l7.51-8.111-2.77.64 4.568-9.612z" }) + ] + } + ); +}); + +exports.default = SiHotwire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.d.ts new file mode 100644 index 000000000..b46b528f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE801"; +declare const SiHotwire: IconType; +export { SiHotwire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.mjs new file mode 100644 index 000000000..10b051e79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHotwire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE801"; +const SiHotwire = React.forwardRef(function SiHotwire2({ title = "Hotwire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.764 6.917-3.48.81L16.32 0 7.236 11.705l4.334-.854-4.087 7.982 2.364-.532L7.456 24l7.51-8.111-2.77.64 4.568-9.612z" }) + ] + } + ); +}); + +export { SiHotwire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.cjs new file mode 100644 index 000000000..279b780cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4713"; +const SiHoudini = React__namespace.forwardRef(function SiHoudini2({ title = "Houdini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 19.635V24h3.824A8.662 8.662 0 0 1 0 19.635zm16.042-4.555c0-4.037-3.253-7.92-8.111-8.089C4.483 6.873 1.801 8.136 0 10.005v4.209c1.224-3.549 4.595-5.158 7.419-5.128 3.531.041 6.251 2.703 6.275 5.72 0 2.878-1.183 4.992-4.436 5.516-1.774.296-4.548-.754-4.436-3.434.065-1.381 1.138-2.162 2.366-2.106-1.207 1.618.39 2.801 1.52 2.561a2.51 2.51 0 0 0 1.966-2.502c0-1.017-.958-2.662-3.333-2.6-2.936.068-4.785 2.183-4.85 4.797-.071 3.28 3.007 5.457 6.174 5.483 4.633.059 7.395-2.984 7.377-7.441zM0 0v6.906a12.855 12.855 0 0 1 7.931-2.609c6.801 0 11.134 4.762 11.131 10.765 0 4.17-1.946 7.308-4.995 8.938H24V0H0z" }) + ] + } + ); +}); + +exports.default = SiHoudini; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.d.ts new file mode 100644 index 000000000..8882da36c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4713"; +declare const SiHoudini: IconType; +export { SiHoudini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.mjs new file mode 100644 index 000000000..b94c0eb79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHoudini.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4713"; +const SiHoudini = React.forwardRef(function SiHoudini2({ title = "Houdini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 19.635V24h3.824A8.662 8.662 0 0 1 0 19.635zm16.042-4.555c0-4.037-3.253-7.92-8.111-8.089C4.483 6.873 1.801 8.136 0 10.005v4.209c1.224-3.549 4.595-5.158 7.419-5.128 3.531.041 6.251 2.703 6.275 5.72 0 2.878-1.183 4.992-4.436 5.516-1.774.296-4.548-.754-4.436-3.434.065-1.381 1.138-2.162 2.366-2.106-1.207 1.618.39 2.801 1.52 2.561a2.51 2.51 0 0 0 1.966-2.502c0-1.017-.958-2.662-3.333-2.6-2.936.068-4.785 2.183-4.85 4.797-.071 3.28 3.007 5.457 6.174 5.483 4.633.059 7.395-2.984 7.377-7.441zM0 0v6.906a12.855 12.855 0 0 1 7.931-2.609c6.801 0 11.134 4.762 11.131 10.765 0 4.17-1.946 7.308-4.995 8.938H24V0H0z" }) + ] + } + ); +}); + +export { SiHoudini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.cjs new file mode 100644 index 000000000..c71c8d45c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4DBC15"; +const SiHouzz = React__namespace.forwardRef(function SiHouzz2({ title = "Houzz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.27 0V24H9.32V16.44H14.68V24H22.73V10.37L6.61 5.75V0H1.27Z" }) + ] + } + ); +}); + +exports.default = SiHouzz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.d.ts new file mode 100644 index 000000000..53e1fac0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4DBC15"; +declare const SiHouzz: IconType; +export { SiHouzz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.mjs new file mode 100644 index 000000000..ef67870e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHouzz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4DBC15"; +const SiHouzz = React.forwardRef(function SiHouzz2({ title = "Houzz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.27 0V24H9.32V16.44H14.68V24H22.73V10.37L6.61 5.75V0H1.27Z" }) + ] + } + ); +}); + +export { SiHouzz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHp.cjs new file mode 100644 index 000000000..7380085b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0096D6"; +const SiHp = React__namespace.forwardRef(function SiHp2({ title = "HP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0069 24h-.3572l2.459-6.7453h3.3796c.5907 0 1.2364-.4533 1.4424-1.0166l2.6652-7.3085c.4396-1.1952-.2473-2.1706-1.525-2.1706h-4.6983l-3.929 10.798-2.2255 6.127C3.929 22.434 0 17.6806 0 12.007 0 6.498 3.7092 1.8546 8.7647.4396L6.4705 6.759 2.6514 17.2547h2.5415L8.4488 8.339h1.9095l-3.2558 8.9158H9.644l3.0223-8.3251c.4396-1.1952-.2473-2.1706-1.525-2.1706h-2.143l2.459-6.7453C11.636 0 11.8145 0 11.9931 0 18.6285 0 24 5.3715 24 12.007c.0137 6.6216-5.3578 11.993-11.9931 11.993zM19.2742 8.325h-1.9096l-2.6789 7.336h1.9096l2.6789-7.336z" }) + ] + } + ); +}); + +exports.default = SiHp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHp.d.ts new file mode 100644 index 000000000..8bf9ce254 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0096D6"; +declare const SiHp: IconType; +export { SiHp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHp.mjs new file mode 100644 index 000000000..cf003af68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0096D6"; +const SiHp = React.forwardRef(function SiHp2({ title = "HP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0069 24h-.3572l2.459-6.7453h3.3796c.5907 0 1.2364-.4533 1.4424-1.0166l2.6652-7.3085c.4396-1.1952-.2473-2.1706-1.525-2.1706h-4.6983l-3.929 10.798-2.2255 6.127C3.929 22.434 0 17.6806 0 12.007 0 6.498 3.7092 1.8546 8.7647.4396L6.4705 6.759 2.6514 17.2547h2.5415L8.4488 8.339h1.9095l-3.2558 8.9158H9.644l3.0223-8.3251c.4396-1.1952-.2473-2.1706-1.525-2.1706h-2.143l2.459-6.7453C11.636 0 11.8145 0 11.9931 0 18.6285 0 24 5.3715 24 12.007c.0137 6.6216-5.3578 11.993-11.9931 11.993zM19.2742 8.325h-1.9096l-2.6789 7.336h1.9096l2.6789-7.336z" }) + ] + } + ); +}); + +export { SiHp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.cjs new file mode 100644 index 000000000..6fc0193b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB0011"; +const SiHsbc = React__namespace.forwardRef(function SiHsbc2({ title = "HSBC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m24 12.007-5.996 5.997V5.996L24 12.007zm-5.996-6.01H6.01l5.996 6.01 5.997-6.01zM0 12.006l6.01 5.997V5.996L0 12.007zm6.01 5.997h11.994l-5.997-5.997-5.996 5.997z" }) + ] + } + ); +}); + +exports.default = SiHsbc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.d.ts new file mode 100644 index 000000000..acf9fed49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB0011"; +declare const SiHsbc: IconType; +export { SiHsbc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.mjs new file mode 100644 index 000000000..b923fd760 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHsbc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB0011"; +const SiHsbc = React.forwardRef(function SiHsbc2({ title = "HSBC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m24 12.007-5.996 5.997V5.996L24 12.007zm-5.996-6.01H6.01l5.996 6.01 5.997-6.01zM0 12.006l6.01 5.997V5.996L0 12.007zm6.01 5.997h11.994l-5.997-5.997-5.996 5.997z" }) + ] + } + ); +}); + +export { SiHsbc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.cjs new file mode 100644 index 000000000..5e02c3c87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A5CF4C"; +const SiHtc = React__namespace.forwardRef(function SiHtc2({ title = "HTC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 14.75h-2.8c-.7-.05-1.15-.5-1.2-1.15v-1.15c.05-.65.6-1.25 1.2-1.25H24V9.95h-4.85c-.65.05-1.25.25-1.7.7-.4.4-.65 1.1-.7 1.75 0 .35-.05.85 0 1.15.05.75.3 1.3.7 1.7.4.45 1.05.7 1.7.7H24V14.7c0 .05-1.3.05-2 .05M8.5 10v1.25h2.95v4.7h1.25v-4.7h2.95V10Zm-1.3 2.35c0-.65-.25-1.25-.7-1.7-.5-.5-1.2-.7-1.7-.7H2.35c-.55 0-.95.2-1.15.35V8H0v8h1.25v-3.6c.05-.65.55-1.15 1.15-1.2.5-.05 1.95-.05 2.4 0 .65.05 1.1.55 1.15 1.2V16H7.2z" }) + ] + } + ); +}); + +exports.default = SiHtc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.d.ts new file mode 100644 index 000000000..84233f1bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A5CF4C"; +declare const SiHtc: IconType; +export { SiHtc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.mjs new file mode 100644 index 000000000..678238697 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A5CF4C"; +const SiHtc = React.forwardRef(function SiHtc2({ title = "HTC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22 14.75h-2.8c-.7-.05-1.15-.5-1.2-1.15v-1.15c.05-.65.6-1.25 1.2-1.25H24V9.95h-4.85c-.65.05-1.25.25-1.7.7-.4.4-.65 1.1-.7 1.75 0 .35-.05.85 0 1.15.05.75.3 1.3.7 1.7.4.45 1.05.7 1.7.7H24V14.7c0 .05-1.3.05-2 .05M8.5 10v1.25h2.95v4.7h1.25v-4.7h2.95V10Zm-1.3 2.35c0-.65-.25-1.25-.7-1.7-.5-.5-1.2-.7-1.7-.7H2.35c-.55 0-.95.2-1.15.35V8H0v8h1.25v-3.6c.05-.65.55-1.15 1.15-1.2.5-.05 1.95-.05 2.4 0 .65.05 1.1.55 1.15 1.2V16H7.2z" }) + ] + } + ); +}); + +export { SiHtc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.cjs new file mode 100644 index 000000000..3e992fd80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B2E3"; +const SiHtcvive = React__namespace.forwardRef(function SiHtcvive2({ title = "HTC Vive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.225 19.046a14.3 14.3 0 0 1-4.222.642 14.3 14.3 0 0 1-4.223-.642c-1.56-.505-2.525-2.066-2.203-3.672.596-2.938 2.111-5.508 4.268-7.482a3.19 3.19 0 0 1 4.36 0c2.112 1.928 3.627 4.544 4.27 7.482.275 1.606-.643 3.213-2.25 3.672m7.574-1.47L14.894 2.2a1.49 1.49 0 0 0-1.33-.78h-3.076a1.49 1.49 0 0 0-1.331.78L.207 17.577c-.276.505-.276 1.101 0 1.56l1.56 2.663c.276.504.78.78 1.331.78h17.763c.551 0 1.056-.276 1.331-.78l1.561-2.663c.321-.505.321-1.101.046-1.56" }) + ] + } + ); +}); + +exports.default = SiHtcvive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.d.ts new file mode 100644 index 000000000..05f60bd4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B2E3"; +declare const SiHtcvive: IconType; +export { SiHtcvive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.mjs new file mode 100644 index 000000000..789c217e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtcvive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B2E3"; +const SiHtcvive = React.forwardRef(function SiHtcvive2({ title = "HTC Vive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.225 19.046a14.3 14.3 0 0 1-4.222.642 14.3 14.3 0 0 1-4.223-.642c-1.56-.505-2.525-2.066-2.203-3.672.596-2.938 2.111-5.508 4.268-7.482a3.19 3.19 0 0 1 4.36 0c2.112 1.928 3.627 4.544 4.27 7.482.275 1.606-.643 3.213-2.25 3.672m7.574-1.47L14.894 2.2a1.49 1.49 0 0 0-1.33-.78h-3.076a1.49 1.49 0 0 0-1.331.78L.207 17.577c-.276.505-.276 1.101 0 1.56l1.56 2.663c.276.504.78.78 1.331.78h17.763c.551 0 1.056-.276 1.331-.78l1.561-2.663c.321-.505.321-1.101.046-1.56" }) + ] + } + ); +}); + +export { SiHtcvive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.cjs new file mode 100644 index 000000000..9aeba3e60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E34F26"; +const SiHtml5 = React__namespace.forwardRef(function SiHtml52({ title = "HTML5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.5 0h21l-1.91 21.563L11.977 24l-8.564-2.438L1.5 0zm7.031 9.75l-.232-2.718 10.059.003.23-2.622L5.412 4.41l.698 8.01h9.126l-.326 3.426-2.91.804-2.955-.81-.188-2.11H6.248l.33 4.171L12 19.351l5.379-1.443.744-8.157H8.531z" }) + ] + } + ); +}); + +exports.default = SiHtml5; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.d.ts new file mode 100644 index 000000000..2fb0b777f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E34F26"; +declare const SiHtml5: IconType; +export { SiHtml5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.mjs new file mode 100644 index 000000000..b05dac276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtml5.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E34F26"; +const SiHtml5 = React.forwardRef(function SiHtml52({ title = "HTML5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.5 0h21l-1.91 21.563L11.977 24l-8.564-2.438L1.5 0zm7.031 9.75l-.232-2.718 10.059.003.23-2.622L5.412 4.41l.698 8.01h9.126l-.326 3.426-2.91.804-2.955-.81-.188-2.11H6.248l.33 4.171L12 19.351l5.379-1.443.744-8.157H8.531z" }) + ] + } + ); +}); + +export { SiHtml5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.cjs new file mode 100644 index 000000000..25a840f29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#302683"; +const SiHtmlacademy = React__namespace.forwardRef(function SiHtmlacademy2({ title = "HTML Academy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L2.524.994v17.368L12 24l9.476-5.638V.994L12.099.01 12 0zm8.236 17.657L12 22.557l-8.236-4.9v-7.119l8.2 4.881.014.885-5.626-3.349-.008.86 5.648 3.394.015.908-5.647-3.36-.008.86L12 19.01l5.703-3.412v-.862l-.008.004v-2.805l2.54-1.517v7.238zm-.006-8.162l-2.254 1.328-1.04.613-4.96-2.951-.009.858 4.24 2.521-.037.023-.092.054-.602.355-3.5-2.083-.009.859 2.763 1.643-.652.436-.015.01-2.088-1.23-.008.858 1.37.807-1.395.837-8.16-4.85 8.172-4.912v.001l8.276 4.823zm.006-.864l-8.28-4.882h-.002l-8.19 4.877V2.11L12 1.246l8.237.864v6.52z" }) + ] + } + ); +}); + +exports.default = SiHtmlacademy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.d.ts new file mode 100644 index 000000000..a985b9d3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#302683"; +declare const SiHtmlacademy: IconType; +export { SiHtmlacademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.mjs new file mode 100644 index 000000000..41bf7d434 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmlacademy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#302683"; +const SiHtmlacademy = React.forwardRef(function SiHtmlacademy2({ title = "HTML Academy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L2.524.994v17.368L12 24l9.476-5.638V.994L12.099.01 12 0zm8.236 17.657L12 22.557l-8.236-4.9v-7.119l8.2 4.881.014.885-5.626-3.349-.008.86 5.648 3.394.015.908-5.647-3.36-.008.86L12 19.01l5.703-3.412v-.862l-.008.004v-2.805l2.54-1.517v7.238zm-.006-8.162l-2.254 1.328-1.04.613-4.96-2.951-.009.858 4.24 2.521-.037.023-.092.054-.602.355-3.5-2.083-.009.859 2.763 1.643-.652.436-.015.01-2.088-1.23-.008.858 1.37.807-1.395.837-8.16-4.85 8.172-4.912v.001l8.276 4.823zm.006-.864l-8.28-4.882h-.002l-8.19 4.877V2.11L12 1.246l8.237.864v6.52z" }) + ] + } + ); +}); + +export { SiHtmlacademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.cjs new file mode 100644 index 000000000..7c13962a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3366CC"; +const SiHtmx = React__namespace.forwardRef(function SiHtmx2({ title = "htmx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 13.01v-2l7.09-2.98.58 1.94-5.1 2.05 5.16 2.05-.63 1.9Zm16.37 1.03 5.18-2-5.16-2.09.65-1.88L24 10.95v2.12L17 16zm-2.85-9.98H16l-5.47 15.88H8.05Z" }) + ] + } + ); +}); + +exports.default = SiHtmx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.d.ts new file mode 100644 index 000000000..35122acec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3366CC"; +declare const SiHtmx: IconType; +export { SiHtmx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.mjs new file mode 100644 index 000000000..213b47aff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtmx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3366CC"; +const SiHtmx = React.forwardRef(function SiHtmx2({ title = "htmx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 13.01v-2l7.09-2.98.58 1.94-5.1 2.05 5.16 2.05-.63 1.9Zm16.37 1.03 5.18-2-5.16-2.09.65-1.88L24 10.95v2.12L17 16zm-2.85-9.98H16l-5.47 15.88H8.05Z" }) + ] + } + ); +}); + +export { SiHtmx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.cjs new file mode 100644 index 000000000..ccfe840ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009020"; +const SiHtop = React__namespace.forwardRef(function SiHtop2({ title = "htop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.928 16.738v7.233h1.414v-7.233H6.928Zm10.912 0v7.233h1.414v-7.233H17.84Zm2.179 0v7.233h1.414v-7.233h-1.414Zm-4.366 0v7.233h1.414v-7.233h-1.414Zm-13.089 0v7.233h1.415v-7.233H2.564Zm2.183 0v7.233h1.414v-7.233H4.747ZM24 16.771l-.02 7.178-2.16-.008v-1.257h.827v-4.745h-.814V16.76l2.167.011Zm-24-.009.02 7.178 2.16-.008v-1.257h-.827v-4.744h.814v-1.18L0 16.762Zm6.928-8.356v7.233h1.414V8.406H6.928Zm2.182 0v7.233h1.414V8.406H9.11Zm2.181 0v7.233h1.414V8.406h-1.414Zm4.362 0v7.233h1.414V8.406h-1.414Zm2.187 0v7.233h1.414V8.406H17.84Zm2.179 0v7.233h1.414V8.406h-1.414Zm-17.455 0v7.233h1.415V8.406H2.564Zm2.183 0v7.233h1.414V8.406H4.747Zm8.726 0v7.233h1.415V8.406h-1.415ZM24 8.433l-.02 7.178-2.16-.008v-1.257h.827V9.601h-.814V8.422L24 8.433ZM0 8.43l.02 7.178 2.16-.008v-1.257h-.827V9.599h.814v-1.18L0 8.43ZM6.928.029v7.233h1.414V.029H6.928Zm8.725 0v7.233h1.414V.029h-1.414Zm4.366 0v7.233h1.414V.029h-1.414Zm-2.179 0v7.233h1.414V.029H17.84Zm-15.276 0v7.233h1.415V.029H2.564Zm2.183 0v7.233h1.414V.029H4.747ZM24 .055l-.02 7.178-2.16-.009V5.967h.827V1.223h-.814V.044L24 .055ZM0 .052.02 7.23l2.16-.008V5.965h-.827V1.221h.814V.041L0 .052Z" }) + ] + } + ); +}); + +exports.default = SiHtop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.d.ts new file mode 100644 index 000000000..b2fa2e939 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009020"; +declare const SiHtop: IconType; +export { SiHtop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.mjs new file mode 100644 index 000000000..684c5c13e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHtop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009020"; +const SiHtop = React.forwardRef(function SiHtop2({ title = "htop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.928 16.738v7.233h1.414v-7.233H6.928Zm10.912 0v7.233h1.414v-7.233H17.84Zm2.179 0v7.233h1.414v-7.233h-1.414Zm-4.366 0v7.233h1.414v-7.233h-1.414Zm-13.089 0v7.233h1.415v-7.233H2.564Zm2.183 0v7.233h1.414v-7.233H4.747ZM24 16.771l-.02 7.178-2.16-.008v-1.257h.827v-4.745h-.814V16.76l2.167.011Zm-24-.009.02 7.178 2.16-.008v-1.257h-.827v-4.744h.814v-1.18L0 16.762Zm6.928-8.356v7.233h1.414V8.406H6.928Zm2.182 0v7.233h1.414V8.406H9.11Zm2.181 0v7.233h1.414V8.406h-1.414Zm4.362 0v7.233h1.414V8.406h-1.414Zm2.187 0v7.233h1.414V8.406H17.84Zm2.179 0v7.233h1.414V8.406h-1.414Zm-17.455 0v7.233h1.415V8.406H2.564Zm2.183 0v7.233h1.414V8.406H4.747Zm8.726 0v7.233h1.415V8.406h-1.415ZM24 8.433l-.02 7.178-2.16-.008v-1.257h.827V9.601h-.814V8.422L24 8.433ZM0 8.43l.02 7.178 2.16-.008v-1.257h-.827V9.599h.814v-1.18L0 8.43ZM6.928.029v7.233h1.414V.029H6.928Zm8.725 0v7.233h1.414V.029h-1.414Zm4.366 0v7.233h1.414V.029h-1.414Zm-2.179 0v7.233h1.414V.029H17.84Zm-15.276 0v7.233h1.415V.029H2.564Zm2.183 0v7.233h1.414V.029H4.747ZM24 .055l-.02 7.178-2.16-.009V5.967h.827V1.223h-.814V.044L24 .055ZM0 .052.02 7.23l2.16-.008V5.965h-.827V1.221h.814V.041L0 .052Z" }) + ] + } + ); +}); + +export { SiHtop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.cjs new file mode 100644 index 000000000..ee517f3ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#73DC8C"; +const SiHttpie = React__namespace.forwardRef(function SiHttpie2({ title = "HTTPie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.28 0C4.4 0 1.992 2.279 1.933 5.155a5.263 5.263 0 0 0 5.26 5.358h4.223a.306.306 0 0 1 .122.584l-6.47 2.835a5.263 5.263 0 0 0-3.135 4.85C1.953 21.683 4.368 24 7.273 24h2.212c2.922 0 5.357-2.345 5.35-5.267a5.263 5.263 0 0 0-3.29-4.867.303.303 0 0 1-.007-.556l7.402-3.246a5.263 5.263 0 0 0 3.128-4.846C22.047 2.317 19.626.003 16.724.003z" }) + ] + } + ); +}); + +exports.default = SiHttpie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.d.ts new file mode 100644 index 000000000..33ead442e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#73DC8C"; +declare const SiHttpie: IconType; +export { SiHttpie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.mjs new file mode 100644 index 000000000..cc9094225 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHttpie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#73DC8C"; +const SiHttpie = React.forwardRef(function SiHttpie2({ title = "HTTPie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.28 0C4.4 0 1.992 2.279 1.933 5.155a5.263 5.263 0 0 0 5.26 5.358h4.223a.306.306 0 0 1 .122.584l-6.47 2.835a5.263 5.263 0 0 0-3.135 4.85C1.953 21.683 4.368 24 7.273 24h2.212c2.922 0 5.357-2.345 5.35-5.267a5.263 5.263 0 0 0-3.29-4.867.303.303 0 0 1-.007-.556l7.402-3.246a5.263 5.263 0 0 0 3.128-4.846C22.047 2.317 19.626.003 16.724.003z" }) + ] + } + ); +}); + +export { SiHttpie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.cjs new file mode 100644 index 000000000..88d1f226a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiHuawei = React__namespace.forwardRef(function SiHuawei2({ title = "Huawei", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.67 6.14S1.82 7.91 1.72 9.78v.35c.08 1.51 1.22 2.4 1.22 2.4 1.83 1.79 6.26 4.04 7.3 4.55 0 0 .06.03.1-.01l.02-.04v-.04C7.52 10.8 3.67 6.14 3.67 6.14zM9.65 18.6c-.02-.08-.1-.08-.1-.08l-7.38.26c.8 1.43 2.15 2.53 3.56 2.2.96-.25 3.16-1.78 3.88-2.3.06-.05.04-.09.04-.09zm.08-.78C6.49 15.63.21 12.28.21 12.28c-.15.46-.2.9-.21 1.3v.07c0 1.07.4 1.82.4 1.82.8 1.69 2.34 2.2 2.34 2.2.7.3 1.4.31 1.4.31.12.02 4.4 0 5.54 0 .05 0 .08-.05.08-.05v-.06c0-.03-.03-.05-.03-.05zM9.06 3.19a3.42 3.42 0 00-2.57 3.15v.41c.03.6.16 1.05.16 1.05.66 2.9 3.86 7.65 4.55 8.65.05.05.1.03.1.03a.1.1 0 00.06-.1c1.06-10.6-1.11-13.42-1.11-13.42-.32.02-1.19.23-1.19.23zm8.299 2.27s-.49-1.8-2.44-2.28c0 0-.57-.14-1.17-.22 0 0-2.18 2.81-1.12 13.43.01.07.06.08.06.08.07.03.1-.03.1-.03.72-1.03 3.9-5.76 4.55-8.64 0 0 .36-1.4.02-2.34zm-2.92 13.07s-.07 0-.09.05c0 0-.01.07.03.1.7.51 2.85 2 3.88 2.3 0 0 .16.05.43.06h.14c.69-.02 1.9-.37 3-2.26l-7.4-.25zm7.83-8.41c.14-2.06-1.94-3.97-1.94-3.98 0 0-3.85 4.66-6.67 10.8 0 0-.03.08.02.13l.04.01h.06c1.06-.53 5.46-2.77 7.28-4.54 0 0 1.15-.93 1.21-2.42zm1.52 2.14s-6.28 3.37-9.52 5.55c0 0-.05.04-.03.11 0 0 .03.06.07.06 1.16 0 5.56 0 5.67-.02 0 0 .57-.02 1.27-.29 0 0 1.56-.5 2.37-2.27 0 0 .73-1.45.17-3.14z" }) + ] + } + ); +}); + +exports.default = SiHuawei; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.d.ts new file mode 100644 index 000000000..a3139e882 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiHuawei: IconType; +export { SiHuawei as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.mjs new file mode 100644 index 000000000..cbcd5d9d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHuawei.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiHuawei = React.forwardRef(function SiHuawei2({ title = "Huawei", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.67 6.14S1.82 7.91 1.72 9.78v.35c.08 1.51 1.22 2.4 1.22 2.4 1.83 1.79 6.26 4.04 7.3 4.55 0 0 .06.03.1-.01l.02-.04v-.04C7.52 10.8 3.67 6.14 3.67 6.14zM9.65 18.6c-.02-.08-.1-.08-.1-.08l-7.38.26c.8 1.43 2.15 2.53 3.56 2.2.96-.25 3.16-1.78 3.88-2.3.06-.05.04-.09.04-.09zm.08-.78C6.49 15.63.21 12.28.21 12.28c-.15.46-.2.9-.21 1.3v.07c0 1.07.4 1.82.4 1.82.8 1.69 2.34 2.2 2.34 2.2.7.3 1.4.31 1.4.31.12.02 4.4 0 5.54 0 .05 0 .08-.05.08-.05v-.06c0-.03-.03-.05-.03-.05zM9.06 3.19a3.42 3.42 0 00-2.57 3.15v.41c.03.6.16 1.05.16 1.05.66 2.9 3.86 7.65 4.55 8.65.05.05.1.03.1.03a.1.1 0 00.06-.1c1.06-10.6-1.11-13.42-1.11-13.42-.32.02-1.19.23-1.19.23zm8.299 2.27s-.49-1.8-2.44-2.28c0 0-.57-.14-1.17-.22 0 0-2.18 2.81-1.12 13.43.01.07.06.08.06.08.07.03.1-.03.1-.03.72-1.03 3.9-5.76 4.55-8.64 0 0 .36-1.4.02-2.34zm-2.92 13.07s-.07 0-.09.05c0 0-.01.07.03.1.7.51 2.85 2 3.88 2.3 0 0 .16.05.43.06h.14c.69-.02 1.9-.37 3-2.26l-7.4-.25zm7.83-8.41c.14-2.06-1.94-3.97-1.94-3.98 0 0-3.85 4.66-6.67 10.8 0 0-.03.08.02.13l.04.01h.06c1.06-.53 5.46-2.77 7.28-4.54 0 0 1.15-.93 1.21-2.42zm1.52 2.14s-6.28 3.37-9.52 5.55c0 0-.05.04-.03.11 0 0 .03.06.07.06 1.16 0 5.56 0 5.67-.02 0 0 .57-.02 1.27-.29 0 0 1.56-.5 2.37-2.27 0 0 .73-1.45.17-3.14z" }) + ] + } + ); +}); + +export { SiHuawei as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.cjs new file mode 100644 index 000000000..ce74c0698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7A59"; +const SiHubspot = React__namespace.forwardRef(function SiHubspot2({ title = "HubSpot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.164 7.93V5.084a2.198 2.198 0 001.267-1.978v-.067A2.2 2.2 0 0017.238.845h-.067a2.2 2.2 0 00-2.193 2.193v.067a2.196 2.196 0 001.252 1.973l.013.006v2.852a6.22 6.22 0 00-2.969 1.31l.012-.01-7.828-6.095A2.497 2.497 0 104.3 4.656l-.012.006 7.697 5.991a6.176 6.176 0 00-1.038 3.446c0 1.343.425 2.588 1.147 3.607l-.013-.02-2.342 2.343a1.968 1.968 0 00-.58-.095h-.002a2.033 2.033 0 102.033 2.033 1.978 1.978 0 00-.1-.595l.005.014 2.317-2.317a6.247 6.247 0 104.782-11.134l-.036-.005zm-.964 9.378a3.206 3.206 0 113.215-3.207v.002a3.206 3.206 0 01-3.207 3.207z" }) + ] + } + ); +}); + +exports.default = SiHubspot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.d.ts new file mode 100644 index 000000000..75b5688ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7A59"; +declare const SiHubspot: IconType; +export { SiHubspot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.mjs new file mode 100644 index 000000000..692549353 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHubspot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7A59"; +const SiHubspot = React.forwardRef(function SiHubspot2({ title = "HubSpot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.164 7.93V5.084a2.198 2.198 0 001.267-1.978v-.067A2.2 2.2 0 0017.238.845h-.067a2.2 2.2 0 00-2.193 2.193v.067a2.196 2.196 0 001.252 1.973l.013.006v2.852a6.22 6.22 0 00-2.969 1.31l.012-.01-7.828-6.095A2.497 2.497 0 104.3 4.656l-.012.006 7.697 5.991a6.176 6.176 0 00-1.038 3.446c0 1.343.425 2.588 1.147 3.607l-.013-.02-2.342 2.343a1.968 1.968 0 00-.58-.095h-.002a2.033 2.033 0 102.033 2.033 1.978 1.978 0 00-.1-.595l.005.014 2.317-2.317a6.247 6.247 0 104.782-11.134l-.036-.005zm-.964 9.378a3.206 3.206 0 113.215-3.207v.002a3.206 3.206 0 01-3.207 3.207z" }) + ] + } + ); +}); + +export { SiHubspot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.cjs new file mode 100644 index 000000000..450f8cbef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD21E"; +const SiHuggingface = React__namespace.forwardRef(function SiHuggingface2({ title = "Hugging Face", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.025 1.13c-5.77 0-10.449 4.647-10.449 10.378 0 1.112.178 2.181.503 3.185.064-.222.203-.444.416-.577a.96.96 0 0 1 .524-.15c.293 0 .584.124.84.284.278.173.48.408.71.694.226.282.458.611.684.951v-.014c.017-.324.106-.622.264-.874s.403-.487.762-.543c.3-.047.596.06.787.203s.31.313.4.467c.15.257.212.468.233.542.01.026.653 1.552 1.657 2.54.616.605 1.01 1.223 1.082 1.912.055.537-.096 1.059-.38 1.572.637.121 1.294.187 1.967.187.657 0 1.298-.063 1.921-.178-.287-.517-.44-1.041-.384-1.581.07-.69.465-1.307 1.081-1.913 1.004-.987 1.647-2.513 1.657-2.539.021-.074.083-.285.233-.542.09-.154.208-.323.4-.467a1.08 1.08 0 0 1 .787-.203c.359.056.604.29.762.543s.247.55.265.874v.015c.225-.34.457-.67.683-.952.23-.286.432-.52.71-.694.257-.16.547-.284.84-.285a.97.97 0 0 1 .524.151c.228.143.373.388.43.625l.006.04a10.3 10.3 0 0 0 .534-3.273c0-5.731-4.678-10.378-10.449-10.378M8.327 6.583a1.5 1.5 0 0 1 .713.174 1.487 1.487 0 0 1 .617 2.013c-.183.343-.762-.214-1.102-.094-.38.134-.532.914-.917.71a1.487 1.487 0 0 1 .69-2.803m7.486 0a1.487 1.487 0 0 1 .689 2.803c-.385.204-.536-.576-.916-.71-.34-.12-.92.437-1.103.094a1.487 1.487 0 0 1 .617-2.013 1.5 1.5 0 0 1 .713-.174m-10.68 1.55a.96.96 0 1 1 0 1.921.96.96 0 0 1 0-1.92m13.838 0a.96.96 0 1 1 0 1.92.96.96 0 0 1 0-1.92M8.489 11.458c.588.01 1.965 1.157 3.572 1.164 1.607-.007 2.984-1.155 3.572-1.164.196-.003.305.12.305.454 0 .886-.424 2.328-1.563 3.202-.22-.756-1.396-1.366-1.63-1.32q-.011.001-.02.006l-.044.026-.01.008-.03.024q-.018.017-.035.036l-.032.04a1 1 0 0 0-.058.09l-.014.025q-.049.088-.11.19a1 1 0 0 1-.083.116 1.2 1.2 0 0 1-.173.18q-.035.029-.075.058a1.3 1.3 0 0 1-.251-.243 1 1 0 0 1-.076-.107c-.124-.193-.177-.363-.337-.444-.034-.016-.104-.008-.2.022q-.094.03-.216.087-.06.028-.125.063l-.13.074q-.067.04-.136.086a3 3 0 0 0-.135.096 3 3 0 0 0-.26.219 2 2 0 0 0-.12.121 2 2 0 0 0-.106.128l-.002.002a2 2 0 0 0-.09.132l-.001.001a1.2 1.2 0 0 0-.105.212q-.013.036-.024.073c-1.139-.875-1.563-2.317-1.563-3.203 0-.334.109-.457.305-.454m.836 10.354c.824-1.19.766-2.082-.365-3.194-1.13-1.112-1.789-2.738-1.789-2.738s-.246-.945-.806-.858-.97 1.499.202 2.362c1.173.864-.233 1.45-.685.64-.45-.812-1.683-2.896-2.322-3.295s-1.089-.175-.938.647 2.822 2.813 2.562 3.244-1.176-.506-1.176-.506-2.866-2.567-3.49-1.898.473 1.23 2.037 2.16c1.564.932 1.686 1.178 1.464 1.53s-3.675-2.511-4-1.297c-.323 1.214 3.524 1.567 3.287 2.405-.238.839-2.71-1.587-3.216-.642-.506.946 3.49 2.056 3.522 2.064 1.29.33 4.568 1.028 5.713-.624m5.349 0c-.824-1.19-.766-2.082.365-3.194 1.13-1.112 1.789-2.738 1.789-2.738s.246-.945.806-.858.97 1.499-.202 2.362c-1.173.864.233 1.45.685.64.451-.812 1.683-2.896 2.322-3.295s1.089-.175.938.647-2.822 2.813-2.562 3.244 1.176-.506 1.176-.506 2.866-2.567 3.49-1.898-.473 1.23-2.037 2.16c-1.564.932-1.686 1.178-1.464 1.53s3.675-2.511 4-1.297c.323 1.214-3.524 1.567-3.287 2.405.238.839 2.71-1.587 3.216-.642.506.946-3.49 2.056-3.522 2.064-1.29.33-4.568 1.028-5.713-.624" }) + ] + } + ); +}); + +exports.default = SiHuggingface; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.d.ts new file mode 100644 index 000000000..f3f194063 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD21E"; +declare const SiHuggingface: IconType; +export { SiHuggingface as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.mjs new file mode 100644 index 000000000..6641d7300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHuggingface.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD21E"; +const SiHuggingface = React.forwardRef(function SiHuggingface2({ title = "Hugging Face", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.025 1.13c-5.77 0-10.449 4.647-10.449 10.378 0 1.112.178 2.181.503 3.185.064-.222.203-.444.416-.577a.96.96 0 0 1 .524-.15c.293 0 .584.124.84.284.278.173.48.408.71.694.226.282.458.611.684.951v-.014c.017-.324.106-.622.264-.874s.403-.487.762-.543c.3-.047.596.06.787.203s.31.313.4.467c.15.257.212.468.233.542.01.026.653 1.552 1.657 2.54.616.605 1.01 1.223 1.082 1.912.055.537-.096 1.059-.38 1.572.637.121 1.294.187 1.967.187.657 0 1.298-.063 1.921-.178-.287-.517-.44-1.041-.384-1.581.07-.69.465-1.307 1.081-1.913 1.004-.987 1.647-2.513 1.657-2.539.021-.074.083-.285.233-.542.09-.154.208-.323.4-.467a1.08 1.08 0 0 1 .787-.203c.359.056.604.29.762.543s.247.55.265.874v.015c.225-.34.457-.67.683-.952.23-.286.432-.52.71-.694.257-.16.547-.284.84-.285a.97.97 0 0 1 .524.151c.228.143.373.388.43.625l.006.04a10.3 10.3 0 0 0 .534-3.273c0-5.731-4.678-10.378-10.449-10.378M8.327 6.583a1.5 1.5 0 0 1 .713.174 1.487 1.487 0 0 1 .617 2.013c-.183.343-.762-.214-1.102-.094-.38.134-.532.914-.917.71a1.487 1.487 0 0 1 .69-2.803m7.486 0a1.487 1.487 0 0 1 .689 2.803c-.385.204-.536-.576-.916-.71-.34-.12-.92.437-1.103.094a1.487 1.487 0 0 1 .617-2.013 1.5 1.5 0 0 1 .713-.174m-10.68 1.55a.96.96 0 1 1 0 1.921.96.96 0 0 1 0-1.92m13.838 0a.96.96 0 1 1 0 1.92.96.96 0 0 1 0-1.92M8.489 11.458c.588.01 1.965 1.157 3.572 1.164 1.607-.007 2.984-1.155 3.572-1.164.196-.003.305.12.305.454 0 .886-.424 2.328-1.563 3.202-.22-.756-1.396-1.366-1.63-1.32q-.011.001-.02.006l-.044.026-.01.008-.03.024q-.018.017-.035.036l-.032.04a1 1 0 0 0-.058.09l-.014.025q-.049.088-.11.19a1 1 0 0 1-.083.116 1.2 1.2 0 0 1-.173.18q-.035.029-.075.058a1.3 1.3 0 0 1-.251-.243 1 1 0 0 1-.076-.107c-.124-.193-.177-.363-.337-.444-.034-.016-.104-.008-.2.022q-.094.03-.216.087-.06.028-.125.063l-.13.074q-.067.04-.136.086a3 3 0 0 0-.135.096 3 3 0 0 0-.26.219 2 2 0 0 0-.12.121 2 2 0 0 0-.106.128l-.002.002a2 2 0 0 0-.09.132l-.001.001a1.2 1.2 0 0 0-.105.212q-.013.036-.024.073c-1.139-.875-1.563-2.317-1.563-3.203 0-.334.109-.457.305-.454m.836 10.354c.824-1.19.766-2.082-.365-3.194-1.13-1.112-1.789-2.738-1.789-2.738s-.246-.945-.806-.858-.97 1.499.202 2.362c1.173.864-.233 1.45-.685.64-.45-.812-1.683-2.896-2.322-3.295s-1.089-.175-.938.647 2.822 2.813 2.562 3.244-1.176-.506-1.176-.506-2.866-2.567-3.49-1.898.473 1.23 2.037 2.16c1.564.932 1.686 1.178 1.464 1.53s-3.675-2.511-4-1.297c-.323 1.214 3.524 1.567 3.287 2.405-.238.839-2.71-1.587-3.216-.642-.506.946 3.49 2.056 3.522 2.064 1.29.33 4.568 1.028 5.713-.624m5.349 0c-.824-1.19-.766-2.082.365-3.194 1.13-1.112 1.789-2.738 1.789-2.738s.246-.945.806-.858.97 1.499-.202 2.362c-1.173.864.233 1.45.685.64.451-.812 1.683-2.896 2.322-3.295s1.089-.175.938.647-2.822 2.813-2.562 3.244 1.176-.506 1.176-.506 2.866-2.567 3.49-1.898-.473 1.23-2.037 2.16c-1.564.932-1.686 1.178-1.464 1.53s3.675-2.511 4-1.297c.323 1.214-3.524 1.567-3.287 2.405.238.839 2.71-1.587 3.216-.642.506.946-3.49 2.056-3.522 2.064-1.29.33-4.568 1.028-5.713-.624" }) + ] + } + ); +}); + +export { SiHuggingface as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.cjs new file mode 100644 index 000000000..5ab12da71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4088"; +const SiHugo = React__namespace.forwardRef(function SiHugo2({ title = "Hugo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.754 0a3.998 3.998 0 00-2.049.596L3.33 4.532a4.252 4.252 0 00-2.017 3.615v8.03c0 1.473.79 2.838 2.067 3.574l6.486 3.733a3.88 3.88 0 003.835.018l7.043-3.966a3.817 3.817 0 001.943-3.323V7.752a3.57 3.57 0 00-1.774-3.084L13.817.541a3.998 3.998 0 00-2.063-.54zm.022 1.674c.413-.006.828.1 1.2.315l7.095 4.127c.584.34.941.96.94 1.635v8.462c0 .774-.414 1.484-1.089 1.864l-7.042 3.966a2.199 2.199 0 01-2.179-.01l-6.485-3.734a2.447 2.447 0 01-1.228-2.123v-8.03c0-.893.461-1.72 1.221-2.19l6.376-3.935a2.323 2.323 0 011.19-.347zm-4.7 3.844V18.37h2.69v-5.62h4.46v5.62h2.696V5.518h-2.696v4.681h-4.46V5.518Z" }) + ] + } + ); +}); + +exports.default = SiHugo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.d.ts new file mode 100644 index 000000000..ab59a2be2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4088"; +declare const SiHugo: IconType; +export { SiHugo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.mjs new file mode 100644 index 000000000..282e0ca50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHugo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4088"; +const SiHugo = React.forwardRef(function SiHugo2({ title = "Hugo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.754 0a3.998 3.998 0 00-2.049.596L3.33 4.532a4.252 4.252 0 00-2.017 3.615v8.03c0 1.473.79 2.838 2.067 3.574l6.486 3.733a3.88 3.88 0 003.835.018l7.043-3.966a3.817 3.817 0 001.943-3.323V7.752a3.57 3.57 0 00-1.774-3.084L13.817.541a3.998 3.998 0 00-2.063-.54zm.022 1.674c.413-.006.828.1 1.2.315l7.095 4.127c.584.34.941.96.94 1.635v8.462c0 .774-.414 1.484-1.089 1.864l-7.042 3.966a2.199 2.199 0 01-2.179-.01l-6.485-3.734a2.447 2.447 0 01-1.228-2.123v-8.03c0-.893.461-1.72 1.221-2.19l6.376-3.935a2.323 2.323 0 011.19-.347zm-4.7 3.844V18.37h2.69v-5.62h4.46v5.62h2.696V5.518h-2.696v4.681h-4.46V5.518Z" }) + ] + } + ); +}); + +export { SiHugo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.cjs new file mode 100644 index 000000000..95aff6783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC2929"; +const SiHumblebundle = React__namespace.forwardRef(function SiHumblebundle2({ title = "Humble Bundle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.895 19.341c-3.384 0 1.826-19.186 1.826-19.186L16.233.151s-1.427 4.515-2.37 9.533h-3.005c.078-1.032.116-2.076.099-3.114-.135-8.26-4.974-6.73-7.14-4.835C1.758 3.538.033 6.962 0 9.6c.328-.016 1.624-.022 1.624-.022S2.702 4.66 6.086 4.66c3.385 0-1.834 19.187-1.834 19.187l3.49.002s1.803-5.136 2.7-10.872l2.87-.017c-.167 1.485-.22 3.124-.196 4.646.136 8.26 4.956 6.488 7.122 4.593 2.166-1.896 3.782-5.9 3.762-7.822.002-.002-1.645.013-1.665.013.006.152-1.056 4.951-4.44 4.951z" }) + ] + } + ); +}); + +exports.default = SiHumblebundle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.d.ts new file mode 100644 index 000000000..a58c2e430 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC2929"; +declare const SiHumblebundle: IconType; +export { SiHumblebundle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.mjs new file mode 100644 index 000000000..950b5ac02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHumblebundle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC2929"; +const SiHumblebundle = React.forwardRef(function SiHumblebundle2({ title = "Humble Bundle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.895 19.341c-3.384 0 1.826-19.186 1.826-19.186L16.233.151s-1.427 4.515-2.37 9.533h-3.005c.078-1.032.116-2.076.099-3.114-.135-8.26-4.974-6.73-7.14-4.835C1.758 3.538.033 6.962 0 9.6c.328-.016 1.624-.022 1.624-.022S2.702 4.66 6.086 4.66c3.385 0-1.834 19.187-1.834 19.187l3.49.002s1.803-5.136 2.7-10.872l2.87-.017c-.167 1.485-.22 3.124-.196 4.646.136 8.26 4.956 6.488 7.122 4.593 2.166-1.896 3.782-5.9 3.762-7.822.002-.002-1.645.013-1.665.013.006.152-1.056 4.951-4.44 4.951z" }) + ] + } + ); +}); + +export { SiHumblebundle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.cjs new file mode 100644 index 000000000..81550eb28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1B8291"; +const SiHumhub = React__namespace.forwardRef(function SiHumhub2({ title = "HumHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.709 7.7807c.1014-1.6778-.888-3.2298-2.4515-3.8452L11.9448.2695c-1.5655-.616-3.3488-.152-4.418 1.1463l-6.36 7.731C.0988 10.4444-.01 12.2912.8934 13.7087l5.387 8.4632c.9035 1.4175 2.6273 2.1289 4.2557 1.7076l9.6853-2.5096c1.627-.4213 2.7889-1.88 2.8903-3.5591l.0879-2.1924s.1657-1.3038-1.3694-1.3255c-1.1307-.0149-.9867.9616-1.9753 1.5676-.7933.4862-3.3583.7263-4.0237-1.93 0 0-.7784-2.3331.704-4.4944 1.481-2.1613 3.1675-1.0124 3.8255-.0967 1.3099 1.8238 3.252.9866 3.2386-.3828z" }) + ] + } + ); +}); + +exports.default = SiHumhub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.d.ts new file mode 100644 index 000000000..3e07e6ade --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1B8291"; +declare const SiHumhub: IconType; +export { SiHumhub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.mjs new file mode 100644 index 000000000..e51c015ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHumhub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1B8291"; +const SiHumhub = React.forwardRef(function SiHumhub2({ title = "HumHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.709 7.7807c.1014-1.6778-.888-3.2298-2.4515-3.8452L11.9448.2695c-1.5655-.616-3.3488-.152-4.418 1.1463l-6.36 7.731C.0988 10.4444-.01 12.2912.8934 13.7087l5.387 8.4632c.9035 1.4175 2.6273 2.1289 4.2557 1.7076l9.6853-2.5096c1.627-.4213 2.7889-1.88 2.8903-3.5591l.0879-2.1924s.1657-1.3038-1.3694-1.3255c-1.1307-.0149-.9867.9616-1.9753 1.5676-.7933.4862-3.3583.7263-4.0237-1.93 0 0-.7784-2.3331.704-4.4944 1.481-2.1613 3.1675-1.0124 3.8255-.0967 1.3099 1.8238 3.252.9866 3.2386-.3828z" }) + ] + } + ); +}); + +export { SiHumhub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.cjs new file mode 100644 index 000000000..35c67b107 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D0021B"; +const SiHungryjacks = React__namespace.forwardRef(function SiHungryjacks2({ title = "Hungry Jacks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.868.215C1.284.215 0 1.476 0 3.032v17.936c0 1.555 1.284 2.817 2.868 2.817h18.264c1.584 0 2.868-1.262 2.868-2.817V3.032C24 1.476 22.716.215 21.132.215zm9.033 1.82c6.143 0 9.46 2.233 9.743 4.487.043.333.016 1.012.016 1.012v10.585s-.03.612-.325 1.112c-1.067 1.808-4.108 2.674-9.434 2.674s-8.367-.866-9.434-2.674c-.295-.5-.324-1.112-.324-1.112s0-10.679-.003-10.813v-.532c.003-.093.009-.18.018-.252.283-2.254 3.6-4.488 9.743-4.488zm-.13.537c-5.685 0-8.714 1.97-9.08 3.953-.086.455.197.611.48.611H20.37c.283 0 .566-.156.48-.611-.366-1.983-3.395-3.953-9.08-3.953zM6.692 8.21c-.19 0-.47.098-.47.325v1.917c0 .525.658.895 1.232.895s1.233-.37 1.233-.895V8.536c0-.227-.28-.325-.47-.325-.192 0-.471.098-.471.325v1.73c0 .127-.154.2-.292.2-.138 0-.29-.073-.29-.2v-1.73c0-.227-.28-.325-.471-.325zm2.75 0c-.195 0-.482.134-.482.38v2.531c0 .246.287.362.483.362s.481-.147.481-.362v-.943c0-.069.09-.055.132 0 0 0 .611.786.814 1.044.203.257.316.26.484.26.196 0 .482-.116.482-.36V8.59c0-.245-.286-.38-.482-.38s-.483.135-.483.38v.935c0 .07-.087.058-.148-.02l-.766-.996c-.117-.156-.265-.298-.514-.298zm4.325 0c-.978 0-1.658.666-1.658 1.628 0 1.133.725 1.645 1.649 1.645.715 0 1.364-.278 1.364-.789v-.89c0-.234-.152-.329-.396-.329h-.69c-.346 0-.422.228-.422.405 0 .177.06.419.413.419.097 0 .126.007.126.07.012.167-.1.266-.42.266-.392 0-.615-.354-.615-.784 0-.43.18-.815.699-.815.185 0 .275.003.58.141.307.138.475-.022.55-.126.077-.104.158-.332-.036-.504-.264-.23-.644-.337-1.144-.337zm-10.08.136c-.194 0-.477.11-.477.346v2.445c0 .234.283.346.476.346.194 0 .476-.112.476-.346v-.713c0-.076.054-.097.114-.097h.474c.06 0 .11.021.11.097v.713c0 .234.282.346.475.346.194 0 .476-.112.476-.346V8.693c0-.235-.282-.346-.476-.346-.193 0-.476.11-.476.346v.653c0 .073-.041.1-.105.1h-.486c-.056 0-.106-.027-.106-.1v-.653c0-.235-.282-.346-.476-.346zm12.185 0c-.23 0-.477.12-.477.345v2.465c0 .225.283.322.477.322.193 0 .475-.097.475-.322v-.638c0-.06.055-.079.093-.033l.677.862c.138.177.486.163.648.062.18-.111.313-.358.174-.534l-.53-.678c-.022-.03-.027-.056.018-.09.333-.222.417-.55.417-.836 0-.319-.274-.925-1.074-.925zm4.293 0c-.174-.008-.384.052-.463.2l-.36.566c-.029.05-.062.049-.09.004l-.358-.57c-.105-.197-.441-.233-.619-.168-.232.084-.343.337-.239.535l.706 1.154c.053.092.077.144.076.236v.834c0 .235.285.346.48.346s.48-.111.48-.346v-.834c0-.092.006-.133.074-.233l.707-1.157c.105-.198-.012-.445-.239-.535a.49.49 0 0 0-.155-.031zm-3.636.545c.305 0 .372.133.372.344 0 .21-.161.338-.354.338-.124 0-.193.003-.193-.056V8.96c.035-.046.063-.068.175-.068zM5.163 12.166c-.264 0-.649.164-.649.51v2.599c.028.413-.244.52-.349.214-.15-.367-.526-.287-.67-.214-.144.072-.351.26-.264.615.153.543.543.907 1.291.913 1 0 1.284-.625 1.284-1.297l.005-.07v-2.76c0-.346-.384-.51-.648-.51zm2.634 0c-.246.008-.654.115-.75.458L5.97 16.122c-.108.336.188.629.447.675.232.042.633-.132.702-.435l.062-.206c.017-.065.046-.08.1-.08h1.034c.074 0 .08.03.095.08l.062.206c.07.303.47.477.702.435.259-.046.556-.339.447-.675l-1.075-3.498c-.1-.349-.504-.45-.75-.458zm3.833 0c-1.252 0-2.122.949-2.122 2.318 0 1.37.87 2.32 2.122 2.32.542 0 .898-.152 1.148-.41.248-.244.143-.544.046-.692-.097-.149-.308-.366-.704-.18-.225.104-.248.128-.427.128-.663 0-.895-.548-.895-1.16h-.001c0-.613.233-1.175.896-1.175.187 0 .225.034.427.128.396.186.607-.031.704-.18.097-.148.202-.444-.046-.688-.279-.287-.618-.41-1.148-.41zm2.347 0c-.258 0-.635.164-.635.512v3.613c0 .348.377.512.635.512s.635-.164.635-.512V15.3l-.001.014c0-.213.12-.096.12-.096l1.173 1.428s.28.375.774-.06c.494-.437.014-.897.014-.897s-.721-.849-.883-1.064c-.145-.194.04-.387.04-.387l.908-1.115c.22-.275.167-.545-.087-.763-.286-.246-.639-.238-.875.067l-1.057 1.277c-.05.068-.12.062-.126-.047v.003l-.001-.013.001.01v-.978c0-.348-.377-.512-.635-.512zm3.254 0c-.182 0-.33.138-.33.31.007.21.132.273.173.288.041.016.03.047.026.066a.342.342 0 0 1-.116.17c-.14.086-.002.266.113.257.128-.01.644-.452.443-.892a.34.34 0 0 0-.31-.2zm1.979 0c-.996 0-1.608.678-1.61 1.684-.001.61.525 1.019 1.052 1.126l.27.055c.123.029.29.097.29.289 0 .191-.103.372-.334.372-.155 0-.197.04-.526-.13-.37-.19-.573.032-.665.175-.092.145-.19.433.045.67.3.282.66.396 1.266.396 1.102 0 1.609-.668 1.6-1.594-.006-.72-.502-1.133-1.073-1.28l-.305-.079c-.104-.028-.276-.105-.276-.263 0-.174.103-.317.301-.317.126 0 .178-.02.449.128.366.199.574-.031.666-.175.091-.143.19-.424-.045-.66-.308-.31-.565-.397-1.105-.397zM7.725 14.212c.027-.002.054.022.068.075l.202.668c.02.062-.001.075-.071.075H7.51c-.038 0-.07-.026-.05-.075l.202-.666c.01-.048.036-.076.062-.077zm-4.554 3.665c-.283 0-.566.11-.48.473.516 1.98 3.395 3.018 9.08 3.018 5.684 0 8.563-1.037 9.08-3.018.085-.363-.198-.473-.48-.473h-8.6zm17.161 2.685c.288 0 .534.228.534.536a.531.531 0 0 1-.534.538.532.532 0 0 1-.536-.538c0-.308.246-.536.536-.536zm0 .09a.431.431 0 0 0-.43.446c0 .259.189.45.43.45.239 0 .428-.191.428-.45a.43.43 0 0 0-.428-.446zm-.21.128h.232c.144 0 .216.055.216.177 0 .11-.07.159-.159.17l.174.273h-.104l-.16-.269h-.107v.269h-.092zm.092.08v.192h.11c.079 0 .149-.006.149-.101 0-.077-.069-.09-.133-.09Z" }) + ] + } + ); +}); + +exports.default = SiHungryjacks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.d.ts new file mode 100644 index 000000000..fe88f192b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D0021B"; +declare const SiHungryjacks: IconType; +export { SiHungryjacks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.mjs new file mode 100644 index 000000000..454c9fd62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHungryjacks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D0021B"; +const SiHungryjacks = React.forwardRef(function SiHungryjacks2({ title = "Hungry Jacks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.868.215C1.284.215 0 1.476 0 3.032v17.936c0 1.555 1.284 2.817 2.868 2.817h18.264c1.584 0 2.868-1.262 2.868-2.817V3.032C24 1.476 22.716.215 21.132.215zm9.033 1.82c6.143 0 9.46 2.233 9.743 4.487.043.333.016 1.012.016 1.012v10.585s-.03.612-.325 1.112c-1.067 1.808-4.108 2.674-9.434 2.674s-8.367-.866-9.434-2.674c-.295-.5-.324-1.112-.324-1.112s0-10.679-.003-10.813v-.532c.003-.093.009-.18.018-.252.283-2.254 3.6-4.488 9.743-4.488zm-.13.537c-5.685 0-8.714 1.97-9.08 3.953-.086.455.197.611.48.611H20.37c.283 0 .566-.156.48-.611-.366-1.983-3.395-3.953-9.08-3.953zM6.692 8.21c-.19 0-.47.098-.47.325v1.917c0 .525.658.895 1.232.895s1.233-.37 1.233-.895V8.536c0-.227-.28-.325-.47-.325-.192 0-.471.098-.471.325v1.73c0 .127-.154.2-.292.2-.138 0-.29-.073-.29-.2v-1.73c0-.227-.28-.325-.471-.325zm2.75 0c-.195 0-.482.134-.482.38v2.531c0 .246.287.362.483.362s.481-.147.481-.362v-.943c0-.069.09-.055.132 0 0 0 .611.786.814 1.044.203.257.316.26.484.26.196 0 .482-.116.482-.36V8.59c0-.245-.286-.38-.482-.38s-.483.135-.483.38v.935c0 .07-.087.058-.148-.02l-.766-.996c-.117-.156-.265-.298-.514-.298zm4.325 0c-.978 0-1.658.666-1.658 1.628 0 1.133.725 1.645 1.649 1.645.715 0 1.364-.278 1.364-.789v-.89c0-.234-.152-.329-.396-.329h-.69c-.346 0-.422.228-.422.405 0 .177.06.419.413.419.097 0 .126.007.126.07.012.167-.1.266-.42.266-.392 0-.615-.354-.615-.784 0-.43.18-.815.699-.815.185 0 .275.003.58.141.307.138.475-.022.55-.126.077-.104.158-.332-.036-.504-.264-.23-.644-.337-1.144-.337zm-10.08.136c-.194 0-.477.11-.477.346v2.445c0 .234.283.346.476.346.194 0 .476-.112.476-.346v-.713c0-.076.054-.097.114-.097h.474c.06 0 .11.021.11.097v.713c0 .234.282.346.475.346.194 0 .476-.112.476-.346V8.693c0-.235-.282-.346-.476-.346-.193 0-.476.11-.476.346v.653c0 .073-.041.1-.105.1h-.486c-.056 0-.106-.027-.106-.1v-.653c0-.235-.282-.346-.476-.346zm12.185 0c-.23 0-.477.12-.477.345v2.465c0 .225.283.322.477.322.193 0 .475-.097.475-.322v-.638c0-.06.055-.079.093-.033l.677.862c.138.177.486.163.648.062.18-.111.313-.358.174-.534l-.53-.678c-.022-.03-.027-.056.018-.09.333-.222.417-.55.417-.836 0-.319-.274-.925-1.074-.925zm4.293 0c-.174-.008-.384.052-.463.2l-.36.566c-.029.05-.062.049-.09.004l-.358-.57c-.105-.197-.441-.233-.619-.168-.232.084-.343.337-.239.535l.706 1.154c.053.092.077.144.076.236v.834c0 .235.285.346.48.346s.48-.111.48-.346v-.834c0-.092.006-.133.074-.233l.707-1.157c.105-.198-.012-.445-.239-.535a.49.49 0 0 0-.155-.031zm-3.636.545c.305 0 .372.133.372.344 0 .21-.161.338-.354.338-.124 0-.193.003-.193-.056V8.96c.035-.046.063-.068.175-.068zM5.163 12.166c-.264 0-.649.164-.649.51v2.599c.028.413-.244.52-.349.214-.15-.367-.526-.287-.67-.214-.144.072-.351.26-.264.615.153.543.543.907 1.291.913 1 0 1.284-.625 1.284-1.297l.005-.07v-2.76c0-.346-.384-.51-.648-.51zm2.634 0c-.246.008-.654.115-.75.458L5.97 16.122c-.108.336.188.629.447.675.232.042.633-.132.702-.435l.062-.206c.017-.065.046-.08.1-.08h1.034c.074 0 .08.03.095.08l.062.206c.07.303.47.477.702.435.259-.046.556-.339.447-.675l-1.075-3.498c-.1-.349-.504-.45-.75-.458zm3.833 0c-1.252 0-2.122.949-2.122 2.318 0 1.37.87 2.32 2.122 2.32.542 0 .898-.152 1.148-.41.248-.244.143-.544.046-.692-.097-.149-.308-.366-.704-.18-.225.104-.248.128-.427.128-.663 0-.895-.548-.895-1.16h-.001c0-.613.233-1.175.896-1.175.187 0 .225.034.427.128.396.186.607-.031.704-.18.097-.148.202-.444-.046-.688-.279-.287-.618-.41-1.148-.41zm2.347 0c-.258 0-.635.164-.635.512v3.613c0 .348.377.512.635.512s.635-.164.635-.512V15.3l-.001.014c0-.213.12-.096.12-.096l1.173 1.428s.28.375.774-.06c.494-.437.014-.897.014-.897s-.721-.849-.883-1.064c-.145-.194.04-.387.04-.387l.908-1.115c.22-.275.167-.545-.087-.763-.286-.246-.639-.238-.875.067l-1.057 1.277c-.05.068-.12.062-.126-.047v.003l-.001-.013.001.01v-.978c0-.348-.377-.512-.635-.512zm3.254 0c-.182 0-.33.138-.33.31.007.21.132.273.173.288.041.016.03.047.026.066a.342.342 0 0 1-.116.17c-.14.086-.002.266.113.257.128-.01.644-.452.443-.892a.34.34 0 0 0-.31-.2zm1.979 0c-.996 0-1.608.678-1.61 1.684-.001.61.525 1.019 1.052 1.126l.27.055c.123.029.29.097.29.289 0 .191-.103.372-.334.372-.155 0-.197.04-.526-.13-.37-.19-.573.032-.665.175-.092.145-.19.433.045.67.3.282.66.396 1.266.396 1.102 0 1.609-.668 1.6-1.594-.006-.72-.502-1.133-1.073-1.28l-.305-.079c-.104-.028-.276-.105-.276-.263 0-.174.103-.317.301-.317.126 0 .178-.02.449.128.366.199.574-.031.666-.175.091-.143.19-.424-.045-.66-.308-.31-.565-.397-1.105-.397zM7.725 14.212c.027-.002.054.022.068.075l.202.668c.02.062-.001.075-.071.075H7.51c-.038 0-.07-.026-.05-.075l.202-.666c.01-.048.036-.076.062-.077zm-4.554 3.665c-.283 0-.566.11-.48.473.516 1.98 3.395 3.018 9.08 3.018 5.684 0 8.563-1.037 9.08-3.018.085-.363-.198-.473-.48-.473h-8.6zm17.161 2.685c.288 0 .534.228.534.536a.531.531 0 0 1-.534.538.532.532 0 0 1-.536-.538c0-.308.246-.536.536-.536zm0 .09a.431.431 0 0 0-.43.446c0 .259.189.45.43.45.239 0 .428-.191.428-.45a.43.43 0 0 0-.428-.446zm-.21.128h.232c.144 0 .216.055.216.177 0 .11-.07.159-.159.17l.174.273h-.104l-.16-.269h-.107v.269h-.092zm.092.08v.192h.11c.079 0 .149-.006.149-.101 0-.077-.069-.09-.133-.09Z" }) + ] + } + ); +}); + +export { SiHungryjacks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.cjs new file mode 100644 index 000000000..545c671e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#273A60"; +const SiHusqvarna = React__namespace.forwardRef(function SiHusqvarna2({ title = "Husqvarna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c1.022 0 1.687.18 1.968.242-.14 1.307-.1 2.354 0 2.657.34 1.005 2.276 1.474 3.058 1.011.86-.522.664-2.11.664-3.156 0 0 1.268.3 2.046.593.632.238 1.563.703 1.563.703.185 1.324.01 3.282-1.292 3.946.982.985 1.312 2.152 1.732 4.304.34 1.93.26 3.28.24 4.405-.1 1.53-.1 2.355-.46 3.743-.52 1.589-.829 2.335-1.883 3.439C17.496 24.132 14.007 24 12 23.998c-2.007.002-5.494.134-7.635-2.111-1.055-1.104-1.363-1.85-1.883-3.439-.36-1.388-.36-2.213-.46-3.743-.021-1.125-.1-2.474.24-4.405.42-2.154.75-3.319 1.732-4.304-1.302-.664-1.477-2.622-1.292-3.946 0 0 .933-.465 1.563-.703C5.043 1.055 6.31.754 6.31.754c0 1.047-.196 2.632.664 3.156.782.461 2.716-.006 3.058-1.011.1-.303.14-1.35 0-2.657C10.313.18 10.979 0 12 0m-.003 21.125c2.342 0 3.09 0 4.251-.322.4-.142 1.122-.342 1.644-1.167.96-1.65.96-4.748.96-6.235 0-1.49 0-4.124-.96-5.754-.52-.844-1.233-1.078-1.644-1.186-1.186-.316-1.948-.297-4.251-.302h.001c-2.303.005-3.065-.014-4.251.302-.41.11-1.122.342-1.644 1.186-.96 1.63-.96 4.266-.96 5.754s0 4.586.96 6.235c.52.825 1.241 1.025 1.644 1.167 1.16.324 1.909.322 4.25.322zM12 14.458c2.004 0 1.96.002 1.96.644v4.053h2.724V7.928H13.96V11.3c0 .664.044.662-1.96.662h.002c-2.003 0-1.96.002-1.96-.662V7.928H7.321v11.23h2.721v-4.056c0-.644-.04-.644 1.958-.644z" }) + ] + } + ); +}); + +exports.default = SiHusqvarna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.d.ts new file mode 100644 index 000000000..5bacb43d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#273A60"; +declare const SiHusqvarna: IconType; +export { SiHusqvarna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.mjs new file mode 100644 index 000000000..007ff06b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHusqvarna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#273A60"; +const SiHusqvarna = React.forwardRef(function SiHusqvarna2({ title = "Husqvarna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c1.022 0 1.687.18 1.968.242-.14 1.307-.1 2.354 0 2.657.34 1.005 2.276 1.474 3.058 1.011.86-.522.664-2.11.664-3.156 0 0 1.268.3 2.046.593.632.238 1.563.703 1.563.703.185 1.324.01 3.282-1.292 3.946.982.985 1.312 2.152 1.732 4.304.34 1.93.26 3.28.24 4.405-.1 1.53-.1 2.355-.46 3.743-.52 1.589-.829 2.335-1.883 3.439C17.496 24.132 14.007 24 12 23.998c-2.007.002-5.494.134-7.635-2.111-1.055-1.104-1.363-1.85-1.883-3.439-.36-1.388-.36-2.213-.46-3.743-.021-1.125-.1-2.474.24-4.405.42-2.154.75-3.319 1.732-4.304-1.302-.664-1.477-2.622-1.292-3.946 0 0 .933-.465 1.563-.703C5.043 1.055 6.31.754 6.31.754c0 1.047-.196 2.632.664 3.156.782.461 2.716-.006 3.058-1.011.1-.303.14-1.35 0-2.657C10.313.18 10.979 0 12 0m-.003 21.125c2.342 0 3.09 0 4.251-.322.4-.142 1.122-.342 1.644-1.167.96-1.65.96-4.748.96-6.235 0-1.49 0-4.124-.96-5.754-.52-.844-1.233-1.078-1.644-1.186-1.186-.316-1.948-.297-4.251-.302h.001c-2.303.005-3.065-.014-4.251.302-.41.11-1.122.342-1.644 1.186-.96 1.63-.96 4.266-.96 5.754s0 4.586.96 6.235c.52.825 1.241 1.025 1.644 1.167 1.16.324 1.909.322 4.25.322zM12 14.458c2.004 0 1.96.002 1.96.644v4.053h2.724V7.928H13.96V11.3c0 .664.044.662-1.96.662h.002c-2.003 0-1.96.002-1.96-.662V7.928H7.321v11.23h2.721v-4.056c0-.644-.04-.644 1.958-.644z" }) + ] + } + ); +}); + +export { SiHusqvarna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.cjs new file mode 100644 index 000000000..211b0d835 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiHyper = React__namespace.forwardRef(function SiHyper2({ title = "Hyper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.565 17.91H24v1.964H13.565zm-3.201-5.09l-9.187 8.003 2.86-7.004L0 11.179l9.187-8.002-3.11 7.451z" }) + ] + } + ); +}); + +exports.default = SiHyper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.d.ts new file mode 100644 index 000000000..ba826f0ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiHyper: IconType; +export { SiHyper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.mjs new file mode 100644 index 000000000..65b9e7c58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiHyper = React.forwardRef(function SiHyper2({ title = "Hyper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.565 17.91H24v1.964H13.565zm-3.201-5.09l-9.187 8.003 2.86-7.004L0 11.179l9.187-8.002-3.11 7.451z" }) + ] + } + ); +}); + +export { SiHyper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.cjs new file mode 100644 index 000000000..e79d931ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8C5AFF"; +const SiHyperskill = React__namespace.forwardRef(function SiHyperskill2({ title = "Hyperskill", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 22.6a1.4 1.4 0 0 1-1.4 1.4h-1.2a1.4 1.4 0 0 1-1.4-1.4V1.4A1.4 1.4 0 0 1 19.4 0h1.2A1.4 1.4 0 0 1 22 1.4zm-8-14a1.4 1.4 0 0 1-1.4 1.4h-1.2A1.4 1.4 0 0 1 10 8.6V3.4A1.4 1.4 0 0 1 11.4 2h1.2A1.4 1.4 0 0 1 14 3.4zm-8.001 8a1.4 1.4 0 0 1-1.4 1.4H3.4A1.4 1.4 0 0 1 2 16.6V7.4A1.4 1.4 0 0 1 3.4 6h1.2A1.4 1.4 0 0 1 6 7.4v9.2zm8.001 4a1.4 1.4 0 0 1-1.4 1.4h-1.2a1.4 1.4 0 0 1-1.4-1.4v-5.2a1.4 1.4 0 0 1 1.4-1.4h1.2a1.4 1.4 0 0 1 1.4 1.4z" }) + ] + } + ); +}); + +exports.default = SiHyperskill; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.d.ts new file mode 100644 index 000000000..728c63206 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8C5AFF"; +declare const SiHyperskill: IconType; +export { SiHyperskill as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.mjs new file mode 100644 index 000000000..cbab01f94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperskill.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8C5AFF"; +const SiHyperskill = React.forwardRef(function SiHyperskill2({ title = "Hyperskill", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22 22.6a1.4 1.4 0 0 1-1.4 1.4h-1.2a1.4 1.4 0 0 1-1.4-1.4V1.4A1.4 1.4 0 0 1 19.4 0h1.2A1.4 1.4 0 0 1 22 1.4zm-8-14a1.4 1.4 0 0 1-1.4 1.4h-1.2A1.4 1.4 0 0 1 10 8.6V3.4A1.4 1.4 0 0 1 11.4 2h1.2A1.4 1.4 0 0 1 14 3.4zm-8.001 8a1.4 1.4 0 0 1-1.4 1.4H3.4A1.4 1.4 0 0 1 2 16.6V7.4A1.4 1.4 0 0 1 3.4 6h1.2A1.4 1.4 0 0 1 6 7.4v9.2zm8.001 4a1.4 1.4 0 0 1-1.4 1.4h-1.2a1.4 1.4 0 0 1-1.4-1.4v-5.2a1.4 1.4 0 0 1 1.4-1.4h1.2a1.4 1.4 0 0 1 1.4 1.4z" }) + ] + } + ); +}); + +export { SiHyperskill as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.cjs new file mode 100644 index 000000000..44792b056 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E21836"; +const SiHyperx = React__namespace.forwardRef(function SiHyperx2({ title = "HyperX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.428 5.234c-.036-.005-.055.05-.055.05-.935 2.297-2.446 4.096-4.25 5.503-2.157-1.445-4.476-2.16-6.477-2.5l.508-1.695H10.56l-.445 1.496c-2.12-.194-3.61.004-3.664.008-.085.007-.108.027-.106.056.004.042.084.043.084.043 4.228.324 7.684 1.789 10.367 3.528C9.926 16.098.15 15.826.15 15.826c-.123-.002-.149.019-.15.065-.004.07.113.07.113.07 12.395 1.527 17.776-2.796 18.238-3.143 3.685 2.82 5.513 5.867 5.513 5.867.034.05.069.092.105.079.056-.02.02-.106.02-.106-1.062-3.053-2.666-5.243-4.475-6.808 2.846-2.757 2.926-6.242 2.945-6.499.01-.113-.01-.115-.03-.117zM4.939 6.592l-1.313 4.384h1.582l1.314-4.384Zm1.39 2.023-.222.748h3.625c-.09.297-.483 1.613-.483 1.613h1.594l.422-1.414a21.95 21.949 0 0 0-4.936-.947z" }) + ] + } + ); +}); + +exports.default = SiHyperx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.d.ts new file mode 100644 index 000000000..e0d67171f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E21836"; +declare const SiHyperx: IconType; +export { SiHyperx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.mjs new file mode 100644 index 000000000..d615ac95a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyperx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E21836"; +const SiHyperx = React.forwardRef(function SiHyperx2({ title = "HyperX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.428 5.234c-.036-.005-.055.05-.055.05-.935 2.297-2.446 4.096-4.25 5.503-2.157-1.445-4.476-2.16-6.477-2.5l.508-1.695H10.56l-.445 1.496c-2.12-.194-3.61.004-3.664.008-.085.007-.108.027-.106.056.004.042.084.043.084.043 4.228.324 7.684 1.789 10.367 3.528C9.926 16.098.15 15.826.15 15.826c-.123-.002-.149.019-.15.065-.004.07.113.07.113.07 12.395 1.527 17.776-2.796 18.238-3.143 3.685 2.82 5.513 5.867 5.513 5.867.034.05.069.092.105.079.056-.02.02-.106.02-.106-1.062-3.053-2.666-5.243-4.475-6.808 2.846-2.757 2.926-6.242 2.945-6.499.01-.113-.01-.115-.03-.117zM4.939 6.592l-1.313 4.384h1.582l1.314-4.384Zm1.39 2.023-.222.748h3.625c-.09.297-.483 1.613-.483 1.613h1.594l.422-1.414a21.95 21.949 0 0 0-4.936-.947z" }) + ] + } + ); +}); + +export { SiHyperx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.cjs new file mode 100644 index 000000000..daf4847af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BD1C2B"; +const SiHypothesis = React__namespace.forwardRef(function SiHypothesis2({ title = "Hypothesis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.425 0c-.93 0-1.71.768-1.71 1.72v17.14c0 .94.78 1.71 1.71 1.71h5.95l2.62 3.43 2.62-3.43h5.95c.93 0 1.72-.77 1.72-1.71V1.72c0-.95-.79-1.72-1.72-1.72H3.425m1.71 3.43h2.58v6s.86-1.71 2.56-1.71c1.72 0 3.46.85 3.46 3.52v5.9h-2.58V12c0-1.39-.88-1.93-1.73-1.71-.86.21-1.71 1.12-1.71 3v3.85h-2.58V3.43m12.86 10.29c.95 0 1.72.78 1.72 1.7a1.71 1.71 0 01-1.72 1.71 1.71 1.71 0 01-1.71-1.71c0-.92.76-1.71 1.71-1.71z" }) + ] + } + ); +}); + +exports.default = SiHypothesis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.d.ts new file mode 100644 index 000000000..4b534c9fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BD1C2B"; +declare const SiHypothesis: IconType; +export { SiHypothesis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.mjs new file mode 100644 index 000000000..f0ff3a709 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHypothesis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BD1C2B"; +const SiHypothesis = React.forwardRef(function SiHypothesis2({ title = "Hypothesis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.425 0c-.93 0-1.71.768-1.71 1.72v17.14c0 .94.78 1.71 1.71 1.71h5.95l2.62 3.43 2.62-3.43h5.95c.93 0 1.72-.77 1.72-1.71V1.72c0-.95-.79-1.72-1.72-1.72H3.425m1.71 3.43h2.58v6s.86-1.71 2.56-1.71c1.72 0 3.46.85 3.46 3.52v5.9h-2.58V12c0-1.39-.88-1.93-1.73-1.71-.86.21-1.71 1.12-1.71 3v3.85h-2.58V3.43m12.86 10.29c.95 0 1.72.78 1.72 1.7a1.71 1.71 0 01-1.72 1.71 1.71 1.71 0 01-1.71-1.71c0-.92.76-1.71 1.71-1.71z" }) + ] + } + ); +}); + +export { SiHypothesis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.cjs new file mode 100644 index 000000000..e52d93a00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#58E1FF"; +const SiHyprland = React__namespace.forwardRef(function SiHyprland2({ title = "Hyprland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.0998.001c.071.0753.1162.1116.1476.1576.5693.8424 1.13 1.691 1.7078 2.5277.3326.4816.6866.9486 1.0416 1.4141.3433.451.7058.8869 1.0494 1.3378.3975.5215.8003 1.0402 1.1696 1.5813.473.6933.9496 1.388 1.3588 2.1188.348.6213.626 1.285.8919 1.9477.1882.4691.3144.9646.4491 1.4537.0624.2267.0799.4659.1163.6994.0449.2858.1211.5717.1258.8583.0125.7465.0773 1.4954-.0528 2.2386-.1433.8195-.3832 1.6041-.74 2.3609-.3607.7646-.7978 1.4708-1.3328 2.1241-.4848.5921-1.054 1.0812-1.6697 1.5296-.452.329-.93.6085-1.4387.8306-.4577.1996-.9293.3597-1.4148.4951-1.0961.3052-2.2076.3722-3.3269.2934-.6747-.0474-1.3574-.1301-2-.3729-.5284-.1996-1.0606-.3967-1.5657-.6462-.3988-.1968-.781-.4435-1.131-.7183-.4591-.3604-.9097-.7418-1.3072-1.167-.356-.3808-.6644-.8153-.941-1.2587-.2916-.468-.5486-.9629-.7693-1.4687-.2385-.546-.3925-1.121-.518-1.71-.1953-.9164-.1322-1.8336-.0923-2.748.0229-.525.1615-1.0504.2945-1.5634.14-.541.3094-1.0786.5147-1.5983.2057-.5205.4445-1.0324.718-1.5204.3432-.6124.7218-1.2066 1.1121-1.7905.3543-.5304.7372-1.0423 1.1218-1.5513.3098-.41.6477-.7988.9614-1.206.3172-.4116.6224-.8326.9293-1.2522.3247-.4441.652-.8865.9656-1.3385.3979-.5728.781-1.156 1.1753-1.7314.0563-.0823.1383-.1475.2082-.2206.0139.0078.0278.0157.042.0235.003.0631.0082.1262.0082.1893.0004.9386.0053 1.8771-.006 2.8157-.0019.1376-.0578.2905-.1327.4085-.303.4795-.6127.9553-.9403 1.4184-.3105.4388-.6459.8601-.9703 1.289-.2673.3532-.5336.7068-.8027 1.0587-.1868.2441-.3829.4812-.5654.7286-.2552.3465-.5115.6933-.7496 1.0515-.2873.432-.57.8684-.828 1.3179-.1847.3215-.3302.6662-.4845 1.0041-.0856.1875-.1644.3793-.2267.5754-.1105.3479-.199.7026-.3094 1.0505-.3109.9774-.245 1.983-.1754 2.9764.0353.5044.2178 1.0035.3707 1.4933.2142.6858.5817 1.294.9963 1.88.283.4003.6042.762.9675 1.0822.299.263.6238.5051.9649.71.3882.2332.7924.4553 1.2163.6085.4523.1637.9303.2849 1.4073.3451.5678.0717 1.1464.0563 1.72.0834.5325.025 1.049-.0816 1.5659-.1832.6562-.129 1.2558-.412 1.8386-.7222.6969-.3707 1.2826-.8958 1.7955-1.4875.5244-.605.9646-1.285 1.2448-2.0319.2955-.7878.5418-1.603.5044-2.4688-.0203-.468.0053-.939-.0378-1.4041-.0317-.3426-.129-.6813-.2196-1.016-.1062-.3932-.215-.7878-.3622-1.1667-.1465-.3775-.3336-.7396-.5175-1.1014-.163-.3205-.3323-.6388-.5226-.9432a16.5743 16.5743 0 0 0-.7372-1.0848c-.3939-.5311-.8106-1.0451-1.2088-1.5727-.4662-.6177-.9314-1.2362-1.382-1.8654-.3889-.5425-.7596-1.0982-1.1303-1.6536-.0595-.0891-.107-.2064-.108-.3108-.0082-1.0156-.0053-2.0312-.0046-3.0467 0-.0339.0086-.0681.0206-.1583z" }) + ] + } + ); +}); + +exports.default = SiHyprland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.d.ts new file mode 100644 index 000000000..89c7a2ffa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#58E1FF"; +declare const SiHyprland: IconType; +export { SiHyprland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.mjs new file mode 100644 index 000000000..ebb8d690a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyprland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#58E1FF"; +const SiHyprland = React.forwardRef(function SiHyprland2({ title = "Hyprland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.0998.001c.071.0753.1162.1116.1476.1576.5693.8424 1.13 1.691 1.7078 2.5277.3326.4816.6866.9486 1.0416 1.4141.3433.451.7058.8869 1.0494 1.3378.3975.5215.8003 1.0402 1.1696 1.5813.473.6933.9496 1.388 1.3588 2.1188.348.6213.626 1.285.8919 1.9477.1882.4691.3144.9646.4491 1.4537.0624.2267.0799.4659.1163.6994.0449.2858.1211.5717.1258.8583.0125.7465.0773 1.4954-.0528 2.2386-.1433.8195-.3832 1.6041-.74 2.3609-.3607.7646-.7978 1.4708-1.3328 2.1241-.4848.5921-1.054 1.0812-1.6697 1.5296-.452.329-.93.6085-1.4387.8306-.4577.1996-.9293.3597-1.4148.4951-1.0961.3052-2.2076.3722-3.3269.2934-.6747-.0474-1.3574-.1301-2-.3729-.5284-.1996-1.0606-.3967-1.5657-.6462-.3988-.1968-.781-.4435-1.131-.7183-.4591-.3604-.9097-.7418-1.3072-1.167-.356-.3808-.6644-.8153-.941-1.2587-.2916-.468-.5486-.9629-.7693-1.4687-.2385-.546-.3925-1.121-.518-1.71-.1953-.9164-.1322-1.8336-.0923-2.748.0229-.525.1615-1.0504.2945-1.5634.14-.541.3094-1.0786.5147-1.5983.2057-.5205.4445-1.0324.718-1.5204.3432-.6124.7218-1.2066 1.1121-1.7905.3543-.5304.7372-1.0423 1.1218-1.5513.3098-.41.6477-.7988.9614-1.206.3172-.4116.6224-.8326.9293-1.2522.3247-.4441.652-.8865.9656-1.3385.3979-.5728.781-1.156 1.1753-1.7314.0563-.0823.1383-.1475.2082-.2206.0139.0078.0278.0157.042.0235.003.0631.0082.1262.0082.1893.0004.9386.0053 1.8771-.006 2.8157-.0019.1376-.0578.2905-.1327.4085-.303.4795-.6127.9553-.9403 1.4184-.3105.4388-.6459.8601-.9703 1.289-.2673.3532-.5336.7068-.8027 1.0587-.1868.2441-.3829.4812-.5654.7286-.2552.3465-.5115.6933-.7496 1.0515-.2873.432-.57.8684-.828 1.3179-.1847.3215-.3302.6662-.4845 1.0041-.0856.1875-.1644.3793-.2267.5754-.1105.3479-.199.7026-.3094 1.0505-.3109.9774-.245 1.983-.1754 2.9764.0353.5044.2178 1.0035.3707 1.4933.2142.6858.5817 1.294.9963 1.88.283.4003.6042.762.9675 1.0822.299.263.6238.5051.9649.71.3882.2332.7924.4553 1.2163.6085.4523.1637.9303.2849 1.4073.3451.5678.0717 1.1464.0563 1.72.0834.5325.025 1.049-.0816 1.5659-.1832.6562-.129 1.2558-.412 1.8386-.7222.6969-.3707 1.2826-.8958 1.7955-1.4875.5244-.605.9646-1.285 1.2448-2.0319.2955-.7878.5418-1.603.5044-2.4688-.0203-.468.0053-.939-.0378-1.4041-.0317-.3426-.129-.6813-.2196-1.016-.1062-.3932-.215-.7878-.3622-1.1667-.1465-.3775-.3336-.7396-.5175-1.1014-.163-.3205-.3323-.6388-.5226-.9432a16.5743 16.5743 0 0 0-.7372-1.0848c-.3939-.5311-.8106-1.0451-1.2088-1.5727-.4662-.6177-.9314-1.2362-1.382-1.8654-.3889-.5425-.7596-1.0982-1.1303-1.6536-.0595-.0891-.107-.2064-.108-.3108-.0082-1.0156-.0053-2.0312-.0046-3.0467 0-.0339.0086-.0681.0206-.1583z" }) + ] + } + ); +}); + +export { SiHyprland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.cjs new file mode 100644 index 000000000..8c730a2ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002C5E"; +const SiHyundai = React__namespace.forwardRef(function SiHyundai2({ title = "Hyundai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 18.1622c-6.6275 0-12-2.7586-12-6.163 0-3.4028 5.3725-6.1614 12-6.1614 6.6278 0 12 2.7586 12 6.1614 0 3.4044-5.3722 6.163-12 6.163zM7.6023 7.17C3.701 7.9784.973 9.8302.973 11.9844c0 1.1929.8382 2.2932 2.248 3.1757.1174.0724.1941.0862.251.0826.1019-.006.1593-.0698.201-.146.028-.0485.0631-.1225.0972-.1968.4601-1.0834 2.0776-4.8333 4.2023-7.3758a1.1775 1.1775 0 0 0 .1048-.1461c.046-.084.0356-.1513.0006-.192-.0593-.0647-.2247-.065-.4756-.016zM9.742 8.8995c-1.1728 2.8492 1.0473 2.4961 1.6478 2.3637 1.0203-.2258 1.9944-.6128 2.7746-.925 2.2216-.8887 3.4012-1.7804 3.7925-2.123a1.9839 1.9839 0 0 0 .1076-.0988c.0557-.058.0976-.1192.0976-.2002 0-.0936-.081-.1687-.2374-.2231-.012-.0049-.0517-.021-.0641-.025-1.698-.5415-3.724-.8563-5.9016-.8563-.0168 0-.0586-.0022-.1169 0-.2608.0078-.5509.0664-.787.1888-.7777.4049-1.1163 1.4235-1.313 1.899zm10.5851.0037c-.0268.0487-.0612.1224-.0962.1974-.4599 1.0826-2.0774 4.831-4.2018 7.3733-.0515.063-.0796.1031-.1042.1467-.0492.0846-.0388.1535 0 .1935.0572.0641.2235.0654.474.0157 3.8998-.81 6.628-2.6606 6.628-4.8149 0-1.1925-.836-2.2928-2.2472-3.1745-.1161-.073-.1934-.0871-.25-.083-.1028.0067-.16.0699-.2026.1458zM14.258 15.099c1.173-2.849-1.0483-2.494-1.6467-2.3622-1.0218.225-1.996.613-2.7757.924-2.2226.8883-3.4017 1.782-3.7944 2.1234-.0468.0428-.0833.0742-.1066.0995-.0564.0573-.0967.1178-.0967.2007 0 .0923.08.1688.2362.2229.012.0048.0511.0213.0657.0255 1.696.54 3.722.8557 5.9.8557.0177 0 .0592.0016.1178 0 .2609-.0081.5522-.0677.7871-.1888.7781-.4052 1.1169-1.4234 1.3133-1.9007z" }) + ] + } + ); +}); + +exports.default = SiHyundai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.d.ts new file mode 100644 index 000000000..fc74124b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002C5E"; +declare const SiHyundai: IconType; +export { SiHyundai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.mjs new file mode 100644 index 000000000..0ca8f8296 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiHyundai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002C5E"; +const SiHyundai = React.forwardRef(function SiHyundai2({ title = "Hyundai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 18.1622c-6.6275 0-12-2.7586-12-6.163 0-3.4028 5.3725-6.1614 12-6.1614 6.6278 0 12 2.7586 12 6.1614 0 3.4044-5.3722 6.163-12 6.163zM7.6023 7.17C3.701 7.9784.973 9.8302.973 11.9844c0 1.1929.8382 2.2932 2.248 3.1757.1174.0724.1941.0862.251.0826.1019-.006.1593-.0698.201-.146.028-.0485.0631-.1225.0972-.1968.4601-1.0834 2.0776-4.8333 4.2023-7.3758a1.1775 1.1775 0 0 0 .1048-.1461c.046-.084.0356-.1513.0006-.192-.0593-.0647-.2247-.065-.4756-.016zM9.742 8.8995c-1.1728 2.8492 1.0473 2.4961 1.6478 2.3637 1.0203-.2258 1.9944-.6128 2.7746-.925 2.2216-.8887 3.4012-1.7804 3.7925-2.123a1.9839 1.9839 0 0 0 .1076-.0988c.0557-.058.0976-.1192.0976-.2002 0-.0936-.081-.1687-.2374-.2231-.012-.0049-.0517-.021-.0641-.025-1.698-.5415-3.724-.8563-5.9016-.8563-.0168 0-.0586-.0022-.1169 0-.2608.0078-.5509.0664-.787.1888-.7777.4049-1.1163 1.4235-1.313 1.899zm10.5851.0037c-.0268.0487-.0612.1224-.0962.1974-.4599 1.0826-2.0774 4.831-4.2018 7.3733-.0515.063-.0796.1031-.1042.1467-.0492.0846-.0388.1535 0 .1935.0572.0641.2235.0654.474.0157 3.8998-.81 6.628-2.6606 6.628-4.8149 0-1.1925-.836-2.2928-2.2472-3.1745-.1161-.073-.1934-.0871-.25-.083-.1028.0067-.16.0699-.2026.1458zM14.258 15.099c1.173-2.849-1.0483-2.494-1.6467-2.3622-1.0218.225-1.996.613-2.7757.924-2.2226.8883-3.4017 1.782-3.7944 2.1234-.0468.0428-.0833.0742-.1066.0995-.0564.0573-.0967.1178-.0967.2007 0 .0923.08.1688.2362.2229.012.0048.0511.0213.0657.0255 1.696.54 3.722.8557 5.9.8557.0177 0 .0592.0016.1178 0 .2609-.0081.5522-.0677.7871-.1888.7781-.4052 1.1169-1.4234 1.3133-1.9007z" }) + ] + } + ); +}); + +export { SiHyundai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.cjs new file mode 100644 index 000000000..0063f5439 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#26A69A"; +const SiI18next = React__namespace.forwardRef(function SiI18next2({ title = "i18next", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.93646 2.48699v4.51684l5.0758 13.03647s1.5495 3.1839-2.8824 3.9597H7.01922s-4.13084-.4311-3.14053-3.7019L9.21276 7.00401V2.48699h5.7237Zm2.0894 13.10781c-4.4301-1.3742-8.15457-.6365-9.97498-.0788l-1.83572 4.4186c-.78296 2.499 2.27302 2.9417 2.59687 2.9813l.02755.0032h8.44448c3.5407-.5982 2.511-2.972 2.4147-3.1773l-.0068-.0142-1.6661-4.1328Zm-7.81345.7772c.78905.0004 1.42905.3862 1.42905.8646 0 .4764-.6404.864-1.42905.864-.7887 0-1.42711-.3878-1.42711-.864 0-.4784.6384-.8646 1.4271-.8646Zm5.08375 0c.7871.0004 1.4271.3862 1.4271.8646 0 .4764-.6403.864-1.4271.864-.791 0-1.429-.3878-1.429-.864 0-.4784.638-.8646 1.429-.8646Zm-4.5001-5.2131c-.55227 0-.99993.5395-.99993 1.2051 0 .6656.44766 1.2051.99993 1.2051.5522 0 .9998-.5395.9998-1.2051 0-.6656-.4476-1.2051-.9998-1.2051Zm3.6413-1.29686c-.6549 0-1.1862.63806-1.1862 1.42906 0 .7871.5313 1.4271 1.1862 1.4271.653 0 1.1862-.64 1.1862-1.4271 0-.7907-.5328-1.42906-1.1862-1.42906Zm6.0363-2.73783s-2.1219 1.54591-4.0858-.41975V4.55615s2.7243-.60065 4.0858 2.56806Zm-14.84367 0C5.9908 3.9555 8.71543 4.55615 8.71543 4.55615v2.14831c-1.96566 1.96566-4.08544.41975-4.08544.41975ZM15.04366 0c.4954 0 .8958.4387.8958.98109 0 .54203-.4006.98074-.8958.98074H8.95478c-.49315 0-.89428-.43871-.89428-.98074C8.0605.43871 8.46146 0 8.95478 0h6.08888Z" }) + ] + } + ); +}); + +exports.default = SiI18next; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.d.ts new file mode 100644 index 000000000..55e95c47c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#26A69A"; +declare const SiI18next: IconType; +export { SiI18next as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.mjs new file mode 100644 index 000000000..39352daec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiI18next.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#26A69A"; +const SiI18next = React.forwardRef(function SiI18next2({ title = "i18next", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.93646 2.48699v4.51684l5.0758 13.03647s1.5495 3.1839-2.8824 3.9597H7.01922s-4.13084-.4311-3.14053-3.7019L9.21276 7.00401V2.48699h5.7237Zm2.0894 13.10781c-4.4301-1.3742-8.15457-.6365-9.97498-.0788l-1.83572 4.4186c-.78296 2.499 2.27302 2.9417 2.59687 2.9813l.02755.0032h8.44448c3.5407-.5982 2.511-2.972 2.4147-3.1773l-.0068-.0142-1.6661-4.1328Zm-7.81345.7772c.78905.0004 1.42905.3862 1.42905.8646 0 .4764-.6404.864-1.42905.864-.7887 0-1.42711-.3878-1.42711-.864 0-.4784.6384-.8646 1.4271-.8646Zm5.08375 0c.7871.0004 1.4271.3862 1.4271.8646 0 .4764-.6403.864-1.4271.864-.791 0-1.429-.3878-1.429-.864 0-.4784.638-.8646 1.429-.8646Zm-4.5001-5.2131c-.55227 0-.99993.5395-.99993 1.2051 0 .6656.44766 1.2051.99993 1.2051.5522 0 .9998-.5395.9998-1.2051 0-.6656-.4476-1.2051-.9998-1.2051Zm3.6413-1.29686c-.6549 0-1.1862.63806-1.1862 1.42906 0 .7871.5313 1.4271 1.1862 1.4271.653 0 1.1862-.64 1.1862-1.4271 0-.7907-.5328-1.42906-1.1862-1.42906Zm6.0363-2.73783s-2.1219 1.54591-4.0858-.41975V4.55615s2.7243-.60065 4.0858 2.56806Zm-14.84367 0C5.9908 3.9555 8.71543 4.55615 8.71543 4.55615v2.14831c-1.96566 1.96566-4.08544.41975-4.08544.41975ZM15.04366 0c.4954 0 .8958.4387.8958.98109 0 .54203-.4006.98074-.8958.98074H8.95478c-.49315 0-.89428-.43871-.89428-.98074C8.0605.43871 8.46146 0 8.95478 0h6.08888Z" }) + ] + } + ); +}); + +export { SiI18next as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiI3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiI3.cjs new file mode 100644 index 000000000..5297a75ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiI3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#52C0FF"; +const SiI3 = React__namespace.forwardRef(function SiI32({ title = "i3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.933 9.09a1.341 1.341 0 0 0 .031 1.896l6.973 6.945a1.342 1.342 0 1 0 1.893-1.901l-6.973-6.945a1.344 1.344 0 0 0-1.924.005Zm-1.66 7.176a426.366 426.366 0 0 0-1.338-1.339c-.377-.369-.829-.843-1.401-.856a1.646 1.646 0 0 0-.615.132c-.123.05-.383.276-.383.276a1.34 1.34 0 0 0-.394 1.122c.051.414.364.728.653.993.066.063.142.132.262.25.305.298.755.751 1.312 1.312 1.114 1.123 2.658 2.688 4.39 4.414 1.508 1.501 3.668 1.701 5.549 1.149 1.881-.552 3.66-1.757 5.148-3.25 1.487-1.494 2.685-3.278 3.229-5.162s.335-4.042-1.173-5.544l-6.22-6.194a1.34 1.34 0 0 0-1.923.005 1.342 1.342 0 0 0 .03 1.896l6.22 6.194c.739.736.858 1.619.488 2.898-.369 1.28-1.325 2.781-2.552 4.013-1.228 1.233-2.725 2.195-4.002 2.57-1.278.374-2.162.259-2.9-.476-1.723-1.716-3.261-3.275-4.38-4.403Zm-4.946-4.947c.522.52.524 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.348 1.348 0 0 1-.004-1.897 1.348 1.348 0 0 1 1.897-.004Zm5.364-5.386c.522.519.524 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.348 1.348 0 0 1-.004-1.897 1.347 1.347 0 0 1 1.897-.004ZM13.213.388c.521.52.523 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.347 1.347 0 0 1-.004-1.897 1.348 1.348 0 0 1 1.897-.004Z" }) + ] + } + ); +}); + +exports.default = SiI3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiI3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiI3.d.ts new file mode 100644 index 000000000..9fc4b5190 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiI3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#52C0FF"; +declare const SiI3: IconType; +export { SiI3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiI3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiI3.mjs new file mode 100644 index 000000000..efe3cac3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiI3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#52C0FF"; +const SiI3 = React.forwardRef(function SiI32({ title = "i3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.933 9.09a1.341 1.341 0 0 0 .031 1.896l6.973 6.945a1.342 1.342 0 1 0 1.893-1.901l-6.973-6.945a1.344 1.344 0 0 0-1.924.005Zm-1.66 7.176a426.366 426.366 0 0 0-1.338-1.339c-.377-.369-.829-.843-1.401-.856a1.646 1.646 0 0 0-.615.132c-.123.05-.383.276-.383.276a1.34 1.34 0 0 0-.394 1.122c.051.414.364.728.653.993.066.063.142.132.262.25.305.298.755.751 1.312 1.312 1.114 1.123 2.658 2.688 4.39 4.414 1.508 1.501 3.668 1.701 5.549 1.149 1.881-.552 3.66-1.757 5.148-3.25 1.487-1.494 2.685-3.278 3.229-5.162s.335-4.042-1.173-5.544l-6.22-6.194a1.34 1.34 0 0 0-1.923.005 1.342 1.342 0 0 0 .03 1.896l6.22 6.194c.739.736.858 1.619.488 2.898-.369 1.28-1.325 2.781-2.552 4.013-1.228 1.233-2.725 2.195-4.002 2.57-1.278.374-2.162.259-2.9-.476-1.723-1.716-3.261-3.275-4.38-4.403Zm-4.946-4.947c.522.52.524 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.348 1.348 0 0 1-.004-1.897 1.348 1.348 0 0 1 1.897-.004Zm5.364-5.386c.522.519.524 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.348 1.348 0 0 1-.004-1.897 1.347 1.347 0 0 1 1.897-.004ZM13.213.388c.521.52.523 1.376.004 1.897a1.347 1.347 0 0 1-1.897.004 1.347 1.347 0 0 1-.004-1.897 1.348 1.348 0 0 1 1.897-.004Z" }) + ] + } + ); +}); + +export { SiI3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIata.cjs new file mode 100644 index 000000000..c6289a9f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004E81"; +const SiIata = React__namespace.forwardRef(function SiIata2({ title = "IATA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.417 19.695l.98-4.885H5.99l-.973 4.884zm4.808-1.6h1.012l-.26-1.792zm-2.235 1.6l2.412-4.885h1.57l.99 4.884H9.487l-.088-.58H7.827l-.25.58zm6.439 0l.547-3.674h-1.394l.238-1.233h4.28l-.237 1.233h-1.327L14 19.695zm5.354-1.6h1.012l-.26-1.792zm-2.23 1.6l2.407-4.885h1.57l.99 4.884h-1.487l-.073-.58h-1.57l-.25.58zM24 9.289h-7.495c-.276 1.372-1.228 2.517-3.125 3.308.215.652.95 1.255 1.714 1.255h4.066c.62 0 1.112-.52 1.31-.94h-4.13c-.254-.044-.265-.25-.01-.271h4.06c.524 0 1-.448 1.276-.935h-4.73c-.237-.04-.237-.238 0-.277h4.77c.48 0 .918-.558 1.1-.934h-5.232c-.26-.033-.26-.277 0-.282H22.9c.415 0 .819-.454 1.1-.924zm-24 0h7.495c.27 1.372 1.228 2.517 3.12 3.308-.216.652-.952 1.255-1.715 1.255H4.84c-.62 0-1.112-.52-1.311-.94h4.13c.25-.044.266-.25.01-.271H3.608c-.525 0-1-.448-1.272-.935H7.07c.238-.04.238-.238 0-.277H2.3c-.481 0-.918-.558-1.1-.934h5.232c.26-.033.26-.277 0-.282H1.106c-.42 0-.824-.454-1.106-.924zm9.569-4.114c.277.238.586.448.918.58.282-.553.675-1.028 1.129-1.45a4.05 4.05 0 0 0-2.047.87zM8.242 7.902h1.67a5.358 5.358 0 0 1 .454-1.91 4.021 4.021 0 0 1-1.002-.63 3.83 3.83 0 0 0-1.122 2.54zm3.628-1.567V7.9H10.2a4.62 4.62 0 0 1 .414-1.815c.399.143.83.237 1.256.25zm2.56-1.161a3.346 3.346 0 0 1-.917.58 5.243 5.243 0 0 0-1.134-1.443 3.993 3.993 0 0 1 2.052.863zM15.754 7.9h-1.665a5.096 5.096 0 0 0-.442-1.91c.354-.165.69-.375.984-.63a3.723 3.723 0 0 1 1.123 2.54zM12.14 6.335V7.9h1.66c0-.631-.155-1.234-.415-1.815a4.017 4.017 0 0 1-1.245.25zm-2.571 4.57c.277-.216.597-.454.918-.57.299.559.67 1.018 1.129 1.433a4.05 4.05 0 0 1-2.047-.863zM8.242 8.173h1.67c.039.69.182 1.3.454 1.924a4.202 4.202 0 0 0-1.002.625 3.864 3.864 0 0 1-1.122-2.55zm3.628 1.57v-1.57H10.2c.01.63.154 1.255.414 1.814.399-.144.83-.232 1.256-.244zm2.56 1.162a3.41 3.41 0 0 0-.917-.57 5.113 5.113 0 0 1-1.134 1.433 4.088 4.088 0 0 0 2.052-.863zm1.323-2.732h-1.665a5.075 5.075 0 0 1-.442 1.924c.354.166.674.366.984.625a3.806 3.806 0 0 0 1.123-2.55zm-3.612 1.57v-1.57h1.66c0 .63-.155 1.244-.415 1.814a4.01 4.01 0 0 0-1.245-.244zm-.271-5.276a4.387 4.387 0 0 0-1.123 1.382c.36.122.74.222 1.123.222zm.27 0c.444.365.847.846 1.113 1.382a3.26 3.26 0 0 1-1.112.222zm-.27 7.146a4.23 4.23 0 0 1-1.123-1.388c.36-.128.74-.2 1.123-.2zm.27.01c.444-.37.847-.867 1.113-1.4a3.715 3.715 0 0 0-1.112-.197z" }) + ] + } + ); +}); + +exports.default = SiIata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIata.d.ts new file mode 100644 index 000000000..eb594139e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004E81"; +declare const SiIata: IconType; +export { SiIata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIata.mjs new file mode 100644 index 000000000..d5cbc267d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004E81"; +const SiIata = React.forwardRef(function SiIata2({ title = "IATA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.417 19.695l.98-4.885H5.99l-.973 4.884zm4.808-1.6h1.012l-.26-1.792zm-2.235 1.6l2.412-4.885h1.57l.99 4.884H9.487l-.088-.58H7.827l-.25.58zm6.439 0l.547-3.674h-1.394l.238-1.233h4.28l-.237 1.233h-1.327L14 19.695zm5.354-1.6h1.012l-.26-1.792zm-2.23 1.6l2.407-4.885h1.57l.99 4.884h-1.487l-.073-.58h-1.57l-.25.58zM24 9.289h-7.495c-.276 1.372-1.228 2.517-3.125 3.308.215.652.95 1.255 1.714 1.255h4.066c.62 0 1.112-.52 1.31-.94h-4.13c-.254-.044-.265-.25-.01-.271h4.06c.524 0 1-.448 1.276-.935h-4.73c-.237-.04-.237-.238 0-.277h4.77c.48 0 .918-.558 1.1-.934h-5.232c-.26-.033-.26-.277 0-.282H22.9c.415 0 .819-.454 1.1-.924zm-24 0h7.495c.27 1.372 1.228 2.517 3.12 3.308-.216.652-.952 1.255-1.715 1.255H4.84c-.62 0-1.112-.52-1.311-.94h4.13c.25-.044.266-.25.01-.271H3.608c-.525 0-1-.448-1.272-.935H7.07c.238-.04.238-.238 0-.277H2.3c-.481 0-.918-.558-1.1-.934h5.232c.26-.033.26-.277 0-.282H1.106c-.42 0-.824-.454-1.106-.924zm9.569-4.114c.277.238.586.448.918.58.282-.553.675-1.028 1.129-1.45a4.05 4.05 0 0 0-2.047.87zM8.242 7.902h1.67a5.358 5.358 0 0 1 .454-1.91 4.021 4.021 0 0 1-1.002-.63 3.83 3.83 0 0 0-1.122 2.54zm3.628-1.567V7.9H10.2a4.62 4.62 0 0 1 .414-1.815c.399.143.83.237 1.256.25zm2.56-1.161a3.346 3.346 0 0 1-.917.58 5.243 5.243 0 0 0-1.134-1.443 3.993 3.993 0 0 1 2.052.863zM15.754 7.9h-1.665a5.096 5.096 0 0 0-.442-1.91c.354-.165.69-.375.984-.63a3.723 3.723 0 0 1 1.123 2.54zM12.14 6.335V7.9h1.66c0-.631-.155-1.234-.415-1.815a4.017 4.017 0 0 1-1.245.25zm-2.571 4.57c.277-.216.597-.454.918-.57.299.559.67 1.018 1.129 1.433a4.05 4.05 0 0 1-2.047-.863zM8.242 8.173h1.67c.039.69.182 1.3.454 1.924a4.202 4.202 0 0 0-1.002.625 3.864 3.864 0 0 1-1.122-2.55zm3.628 1.57v-1.57H10.2c.01.63.154 1.255.414 1.814.399-.144.83-.232 1.256-.244zm2.56 1.162a3.41 3.41 0 0 0-.917-.57 5.113 5.113 0 0 1-1.134 1.433 4.088 4.088 0 0 0 2.052-.863zm1.323-2.732h-1.665a5.075 5.075 0 0 1-.442 1.924c.354.166.674.366.984.625a3.806 3.806 0 0 0 1.123-2.55zm-3.612 1.57v-1.57h1.66c0 .63-.155 1.244-.415 1.814a4.01 4.01 0 0 0-1.245-.244zm-.271-5.276a4.387 4.387 0 0 0-1.123 1.382c.36.122.74.222 1.123.222zm.27 0c.444.365.847.846 1.113 1.382a3.26 3.26 0 0 1-1.112.222zm-.27 7.146a4.23 4.23 0 0 1-1.123-1.388c.36-.128.74-.2 1.123-.2zm.27.01c.444-.37.847-.867 1.113-1.4a3.715 3.715 0 0 0-1.112-.197z" }) + ] + } + ); +}); + +export { SiIata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.cjs new file mode 100644 index 000000000..d107c9eb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3D7EBB"; +const SiIbeacon = React__namespace.forwardRef(function SiIbeacon2({ title = "iBeacon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .053c-6.617 0-12 5.383-12 12 0 6.077 4.541 11.113 10.408 11.894v-.364C4.741 22.804.36 17.931.36 12.053.36 5.635 5.582.413 12 .413s11.64 5.222 11.64 11.64c0 5.878-4.38 10.751-10.048 11.53v.364C19.459 23.166 24 18.13 24 12.053c0-6.617-5.383-12-12-12zm0 1.696c-5.653 0-10.251 4.598-10.251 10.25 0 5.112 3.76 9.362 8.66 10.129v-.366c-4.7-.763-8.3-4.85-8.3-9.762 0-5.454 4.437-9.89 9.891-9.89s9.891 4.436 9.891 9.89c0 4.912-3.6 8.999-8.3 9.762v.366c4.9-.767 8.66-5.017 8.66-10.128 0-5.653-4.598-10.25-10.251-10.25zm0 1.736c-4.695 0-8.515 3.82-8.515 8.515 0 4.151 2.986 7.618 6.923 8.365v-.367C6.671 19.256 3.845 15.952 3.845 12c0-4.496 3.659-8.155 8.155-8.155 4.496 0 8.154 3.659 8.154 8.155 0 3.952-2.825 7.256-6.562 7.998v.367c3.937-.747 6.923-4.214 6.923-8.365 0-4.695-3.82-8.515-8.515-8.515zm0 1.725A6.798 6.798 0 0 0 5.21 12c0 3.196 2.22 5.883 5.198 6.602v-.372C7.63 17.52 5.57 14.996 5.57 12A6.437 6.437 0 0 1 12 5.57 6.437 6.437 0 0 1 18.43 12c0 2.996-2.06 5.52-4.838 6.23v.372c2.979-.719 5.198-3.406 5.198-6.602A6.798 6.798 0 0 0 12 5.21zm0 1.749A5.047 5.047 0 0 0 6.959 12a5.05 5.05 0 0 0 3.45 4.782v-.38A4.689 4.689 0 0 1 7.318 12c0-2.58 2.1-4.68 4.681-4.68s4.68 2.1 4.68 4.68a4.689 4.689 0 0 1-3.088 4.402v.38A5.05 5.05 0 0 0 17.042 12 5.047 5.047 0 0 0 12 6.96zm0 1.737A3.308 3.308 0 0 0 8.696 12c0 1.245.692 2.33 1.712 2.894v-.42a2.943 2.943 0 1 1 3.184 0v.42A3.306 3.306 0 0 0 15.304 12 3.308 3.308 0 0 0 12 8.696zm0 1.712A1.592 1.592 0 0 0 10.408 12 1.592 1.592 0 0 0 12 13.592 1.592 1.592 0 0 0 13.592 12 1.592 1.592 0 0 0 12 10.408Z" }) + ] + } + ); +}); + +exports.default = SiIbeacon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.d.ts new file mode 100644 index 000000000..98840404b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3D7EBB"; +declare const SiIbeacon: IconType; +export { SiIbeacon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.mjs new file mode 100644 index 000000000..7f89b3200 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIbeacon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3D7EBB"; +const SiIbeacon = React.forwardRef(function SiIbeacon2({ title = "iBeacon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .053c-6.617 0-12 5.383-12 12 0 6.077 4.541 11.113 10.408 11.894v-.364C4.741 22.804.36 17.931.36 12.053.36 5.635 5.582.413 12 .413s11.64 5.222 11.64 11.64c0 5.878-4.38 10.751-10.048 11.53v.364C19.459 23.166 24 18.13 24 12.053c0-6.617-5.383-12-12-12zm0 1.696c-5.653 0-10.251 4.598-10.251 10.25 0 5.112 3.76 9.362 8.66 10.129v-.366c-4.7-.763-8.3-4.85-8.3-9.762 0-5.454 4.437-9.89 9.891-9.89s9.891 4.436 9.891 9.89c0 4.912-3.6 8.999-8.3 9.762v.366c4.9-.767 8.66-5.017 8.66-10.128 0-5.653-4.598-10.25-10.251-10.25zm0 1.736c-4.695 0-8.515 3.82-8.515 8.515 0 4.151 2.986 7.618 6.923 8.365v-.367C6.671 19.256 3.845 15.952 3.845 12c0-4.496 3.659-8.155 8.155-8.155 4.496 0 8.154 3.659 8.154 8.155 0 3.952-2.825 7.256-6.562 7.998v.367c3.937-.747 6.923-4.214 6.923-8.365 0-4.695-3.82-8.515-8.515-8.515zm0 1.725A6.798 6.798 0 0 0 5.21 12c0 3.196 2.22 5.883 5.198 6.602v-.372C7.63 17.52 5.57 14.996 5.57 12A6.437 6.437 0 0 1 12 5.57 6.437 6.437 0 0 1 18.43 12c0 2.996-2.06 5.52-4.838 6.23v.372c2.979-.719 5.198-3.406 5.198-6.602A6.798 6.798 0 0 0 12 5.21zm0 1.749A5.047 5.047 0 0 0 6.959 12a5.05 5.05 0 0 0 3.45 4.782v-.38A4.689 4.689 0 0 1 7.318 12c0-2.58 2.1-4.68 4.681-4.68s4.68 2.1 4.68 4.68a4.689 4.689 0 0 1-3.088 4.402v.38A5.05 5.05 0 0 0 17.042 12 5.047 5.047 0 0 0 12 6.96zm0 1.737A3.308 3.308 0 0 0 8.696 12c0 1.245.692 2.33 1.712 2.894v-.42a2.943 2.943 0 1 1 3.184 0v.42A3.306 3.306 0 0 0 15.304 12 3.308 3.308 0 0 0 12 8.696zm0 1.712A1.592 1.592 0 0 0 10.408 12 1.592 1.592 0 0 0 12 13.592 1.592 1.592 0 0 0 13.592 12 1.592 1.592 0 0 0 12 10.408Z" }) + ] + } + ); +}); + +export { SiIbeacon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.cjs new file mode 100644 index 000000000..0ffa84c22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D7192D"; +const SiIberia = React__namespace.forwardRef(function SiIberia2({ title = "Iberia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.356 11.563c4.53-3.254 9.047-5.217 13.547-5.723L24 2.978c-6.662 0-7.57 1.457-9.873 3.752M0 21.021c14.719 0 18.189-3.46 20.213-8.17l1.7-4.434c-4.958.143-12.441 3.066-17.673 8.324" }) + ] + } + ); +}); + +exports.default = SiIberia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.d.ts new file mode 100644 index 000000000..ace528db8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D7192D"; +declare const SiIberia: IconType; +export { SiIberia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.mjs new file mode 100644 index 000000000..e057395d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIberia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D7192D"; +const SiIberia = React.forwardRef(function SiIberia2({ title = "Iberia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.356 11.563c4.53-3.254 9.047-5.217 13.547-5.723L24 2.978c-6.662 0-7.57 1.457-9.873 3.752M0 21.021c14.719 0 18.189-3.46 20.213-8.17l1.7-4.434c-4.958.143-12.441 3.066-17.673 8.324" }) + ] + } + ); +}); + +export { SiIberia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIced.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIced.cjs new file mode 100644 index 000000000..4cf8d89dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIced.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3645FF"; +const SiIced = React__namespace.forwardRef(function SiIced2({ title = "Iced", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.605 0-6.023 6.123 1.313 1.291 6.023-6.123L22.605 0zm-5.638.047L7.932 9.232l1.312 1.29 9.035-9.184L16.967.047zM9.699 1.775c-2.337 2.377-3.477 3.528-4.617 4.68a1972.17 1972.17 0 0 0-4.621 4.686l-.379.384 2.867 9.772L12.762 24l10.511-10.5-1.3-1.3-9.02 9.007-1.908-6.83 5.559-5.65-1.311-1.291-5.559 5.65-6.845-1.79C4.506 9.655 5.449 8.703 6.39 7.75c1.14-1.153 2.282-2.305 4.62-4.684L9.7 1.776zM21.605 6.73l-1.53 1.53-6.458 6.565 1.313 1.291 6.45-6.558 1.528-1.528-1.303-1.3zM2.46 13.088l6.812 1.781 1.895 6.783-6.738-1.857-1.969-6.707z" }) + ] + } + ); +}); + +exports.default = SiIced; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIced.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIced.d.ts new file mode 100644 index 000000000..e2f558279 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIced.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3645FF"; +declare const SiIced: IconType; +export { SiIced as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIced.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIced.mjs new file mode 100644 index 000000000..d98b1bdce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIced.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3645FF"; +const SiIced = React.forwardRef(function SiIced2({ title = "Iced", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m22.605 0-6.023 6.123 1.313 1.291 6.023-6.123L22.605 0zm-5.638.047L7.932 9.232l1.312 1.29 9.035-9.184L16.967.047zM9.699 1.775c-2.337 2.377-3.477 3.528-4.617 4.68a1972.17 1972.17 0 0 0-4.621 4.686l-.379.384 2.867 9.772L12.762 24l10.511-10.5-1.3-1.3-9.02 9.007-1.908-6.83 5.559-5.65-1.311-1.291-5.559 5.65-6.845-1.79C4.506 9.655 5.449 8.703 6.39 7.75c1.14-1.153 2.282-2.305 4.62-4.684L9.7 1.776zM21.605 6.73l-1.53 1.53-6.458 6.565 1.313 1.291 6.45-6.558 1.528-1.528-1.303-1.3zM2.46 13.088l6.812 1.781 1.895 6.783-6.738-1.857-1.969-6.707z" }) + ] + } + ); +}); + +export { SiIced as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.cjs new file mode 100644 index 000000000..f387fde9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC092F"; +const SiIceland = React__namespace.forwardRef(function SiIceland2({ title = "Iceland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.7442 13.9186c-.9419 0-1.2558-.4186-1.3256-.7674L9 12.593c0-1.8837-1.1512-2.2325-1.8837-2.2325-.9419 0-1.9884.6976-1.9884 2.1976 0 1.3256.907 2.1628 2.407 2.1628.4535 0 .9418-.1046 1.221-.2093l-.1396-.6976c-.2442.0697-.593.1046-.8721.1046zm-.628-2.7558c.3838 0 .6629.279.6978.8372l-1.5.314c.0348-.7326.314-1.1512.8023-1.1512zm6.0698-.8023c-.6627 0-1.2558.1744-1.6046.279 0 .035.1395.6977.1744.7675.3837-.1396.907-.2442 1.2558-.2442.5582 0 .8024.1744.8024.5581v.1744c-1.7442 0-2.4768.628-2.4768 1.4303 0 .907.8023 1.3953 1.9535 1.3953.7674 0 1.3953-.1395 1.6744-.2093v-2.7209c.0349-.9767-.5581-1.4302-1.779-1.4302zm.628 3.5232c-.1047.0349-.314.0349-.4187.0349-.3837 0-.8372-.1744-.8372-.628 0-.4534.3838-.6976 1.221-.6627v1.2558zm9-4.6046v1.186c-.1396-.0349-.314-.0698-.593-.0698-1.0117 0-2.093.6977-2.093 2.1977 0 1.3256.872 2.128 2.3022 2.128.593 0 1.2907-.1047 1.5698-.1745V9.2791Zm0 4.6395c-.1047.0349-.2442.0349-.314.0349-.7326 0-1.1512-.5233-1.1512-1.3954 0-.6628.2791-1.3604 1.0814-1.3604.1047 0 .314.0349.3838.0349zM0 9.2791h1.0814v5.2325H0Zm3.9767 5.4418c-1.2209 0-2.0232-.8372-2.0232-2.0581 0-1.3256.872-2.2675 2.0581-2.2675.2791 0 .628.0698.8372.1745l-.2093.7325c-.1395-.0349-.314-.1046-.4535-.1046-.6627 0-1.1162.5581-1.1162 1.3953 0 .8372.4186 1.3256 1.0465 1.3256.1744 0 .4186-.0349.6279-.1046l.1744.7325c-.2093.0698-.6279.1744-.9419.1744zM9.628 9.2791h1.0814v5.2325H9.6279ZM19.5 14.5116h-1.1512v-2.686c0-.5582-.279-.6977-.6976-.6977-.2093 0-.4535.0349-.628.0698v3.314h-1.1511v-3.942c.279-.0697 1.1163-.2092 1.814-.2092 1.2558 0 1.8139.4535 1.8139 1.3953z" }) + ] + } + ); +}); + +exports.default = SiIceland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.d.ts new file mode 100644 index 000000000..d7d71ef4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC092F"; +declare const SiIceland: IconType; +export { SiIceland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.mjs new file mode 100644 index 000000000..7eae12fec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIceland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC092F"; +const SiIceland = React.forwardRef(function SiIceland2({ title = "Iceland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.7442 13.9186c-.9419 0-1.2558-.4186-1.3256-.7674L9 12.593c0-1.8837-1.1512-2.2325-1.8837-2.2325-.9419 0-1.9884.6976-1.9884 2.1976 0 1.3256.907 2.1628 2.407 2.1628.4535 0 .9418-.1046 1.221-.2093l-.1396-.6976c-.2442.0697-.593.1046-.8721.1046zm-.628-2.7558c.3838 0 .6629.279.6978.8372l-1.5.314c.0348-.7326.314-1.1512.8023-1.1512zm6.0698-.8023c-.6627 0-1.2558.1744-1.6046.279 0 .035.1395.6977.1744.7675.3837-.1396.907-.2442 1.2558-.2442.5582 0 .8024.1744.8024.5581v.1744c-1.7442 0-2.4768.628-2.4768 1.4303 0 .907.8023 1.3953 1.9535 1.3953.7674 0 1.3953-.1395 1.6744-.2093v-2.7209c.0349-.9767-.5581-1.4302-1.779-1.4302zm.628 3.5232c-.1047.0349-.314.0349-.4187.0349-.3837 0-.8372-.1744-.8372-.628 0-.4534.3838-.6976 1.221-.6627v1.2558zm9-4.6046v1.186c-.1396-.0349-.314-.0698-.593-.0698-1.0117 0-2.093.6977-2.093 2.1977 0 1.3256.872 2.128 2.3022 2.128.593 0 1.2907-.1047 1.5698-.1745V9.2791Zm0 4.6395c-.1047.0349-.2442.0349-.314.0349-.7326 0-1.1512-.5233-1.1512-1.3954 0-.6628.2791-1.3604 1.0814-1.3604.1047 0 .314.0349.3838.0349zM0 9.2791h1.0814v5.2325H0Zm3.9767 5.4418c-1.2209 0-2.0232-.8372-2.0232-2.0581 0-1.3256.872-2.2675 2.0581-2.2675.2791 0 .628.0698.8372.1745l-.2093.7325c-.1395-.0349-.314-.1046-.4535-.1046-.6627 0-1.1162.5581-1.1162 1.3953 0 .8372.4186 1.3256 1.0465 1.3256.1744 0 .4186-.0349.6279-.1046l.1744.7325c-.2093.0698-.6279.1744-.9419.1744zM9.628 9.2791h1.0814v5.2325H9.6279ZM19.5 14.5116h-1.1512v-2.686c0-.5582-.279-.6977-.6976-.6977-.2093 0-.4535.0349-.628.0698v3.314h-1.1511v-3.942c.279-.0697 1.1163-.2092 1.814-.2092 1.2558 0 1.8139.4535 1.8139 1.3953z" }) + ] + } + ); +}); + +export { SiIceland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.cjs new file mode 100644 index 000000000..4c302d721 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AE282E"; +const SiIcicibank = React__namespace.forwardRef(function SiIcicibank2({ title = "ICICI Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.9258 2.0961C19.279-1.6476 12.698-.2426 7.2138 5.2416c-5.484 5.475-7.7865 12.9625-5.1397 16.7062.8728 1.2386 2.1837 1.902 3.7386 2.0522 1.0516.0078 1.9129-1.1846 2.6158-2.7774.7252-1.6678 1.1694-3.218 1.5138-4.6592.5077-2.2934.544-3.934.29-4.2786-.435-.5801-1.4321-.435-2.5561.2176-.544.2991-1.26.0997-.408-.9336.8612-1.0425 4.2605-3.5625 5.4933-3.9523 1.3415-.3898 2.8734.136 2.3568 1.6226-.3706 1.0847-5.0473 13.486-1.596 12.2719 1.1049-.747 2.205-1.6497 3.2639-2.7086 5.4841-5.475 7.7865-12.9625 5.1396-16.7063zm-5.3662 3.209c-1.0969 1.0968-2.52 1.4865-3.1364.852-.6617-.6345-.272-2.0577.8249-3.1726 1.1058-1.115 2.529-1.4594 3.1454-.834.6345.6436.2448 2.0487-.834 3.1545z" }) + ] + } + ); +}); + +exports.default = SiIcicibank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.d.ts new file mode 100644 index 000000000..6269d97e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AE282E"; +declare const SiIcicibank: IconType; +export { SiIcicibank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.mjs new file mode 100644 index 000000000..788ce549c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcicibank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AE282E"; +const SiIcicibank = React.forwardRef(function SiIcicibank2({ title = "ICICI Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.9258 2.0961C19.279-1.6476 12.698-.2426 7.2138 5.2416c-5.484 5.475-7.7865 12.9625-5.1397 16.7062.8728 1.2386 2.1837 1.902 3.7386 2.0522 1.0516.0078 1.9129-1.1846 2.6158-2.7774.7252-1.6678 1.1694-3.218 1.5138-4.6592.5077-2.2934.544-3.934.29-4.2786-.435-.5801-1.4321-.435-2.5561.2176-.544.2991-1.26.0997-.408-.9336.8612-1.0425 4.2605-3.5625 5.4933-3.9523 1.3415-.3898 2.8734.136 2.3568 1.6226-.3706 1.0847-5.0473 13.486-1.596 12.2719 1.1049-.747 2.205-1.6497 3.2639-2.7086 5.4841-5.475 7.7865-12.9625 5.1396-16.7063zm-5.3662 3.209c-1.0969 1.0968-2.52 1.4865-3.1364.852-.6617-.6345-.272-2.0577.8249-3.1726 1.1058-1.115 2.529-1.4594 3.1454-.834.6345.6436.2448 2.0487-.834 3.1545z" }) + ] + } + ); +}); + +export { SiIcicibank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.cjs new file mode 100644 index 000000000..67ef76888 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#06062C"; +const SiIcinga = React__namespace.forwardRef(function SiIcinga2({ title = "Icinga", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.8285.0086a2.122 2.122 0 00-1.1546.4705c-.9134.7446-1.052 2.0897-.3057 3.0038.1738.2135.382.3803.6085.5076l-1.9992 4.1526c-1.3307-.5156-2.8925-.3242-4.0768.6411a4.1264 4.1264 0 00-.2805.2538L4.3895 7.2125c.124-.31.1253-.6679-.0326-.9913-.2979-.6072-1.0314-.859-1.6385-.561-.6079.2963-.8581 1.0298-.561 1.637.2979.6063 1.029.8595 1.637.5624.0991-.0483.1849-.1119.2642-.181l2.1846 1.7868c-1.1343 1.4732-1.1567 3.5843.0712 5.0876.2648.3253.5696.5978.9009.8193l-2.5067 3.5945c-.5002-.3428-1.1085-.5336-1.7602-.4838-1.522.114-2.663 1.4395-2.5482 2.9608.114 1.522 1.4403 2.663 2.9623 2.5483 1.522-.114 2.6622-1.4396 2.5482-2.9609-.0494-.6638-.3388-1.2483-.7658-1.6948l2.569-3.6836c1.1473.5518 2.5128.5527 3.6718-.0505l1.444 2.4117c-.1372.1332-.2392.3041-.2627.509-.0547.472.2836.899.7555.9529.471.054.8965-.2836.9528-.7555.054-.471-.2836-.898-.7554-.9528-.057-.007-.1097.0104-.1648.0148l-1.4856-2.4829c.072-.0512.1443-.1008.2137-.1573 1.0746-.8777 1.584-2.1864 1.493-3.4729l6.968-1.7186c.3257.484.888.7887 1.5108.742.9248-.0698 1.6171-.8747 1.548-1.7987-.07-.924-.8755-1.6156-1.7988-1.5464-.9247.0706-1.6163.874-1.5464 1.7972.007.0956.0267.1876.049.2776l-6.8092 1.68c-.1312-.6151-.4011-1.2094-.8252-1.7305-.3373-.4132-.7407-.7403-1.1799-.9854l2.017-4.1882c.6295.1558 1.3211.0324 1.8625-.4081.9134-.7447 1.0504-2.092.3058-3.0054-.466-.5709-1.1665-.8375-1.8492-.7762z" }) + ] + } + ); +}); + +exports.default = SiIcinga; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.d.ts new file mode 100644 index 000000000..0831b9cc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#06062C"; +declare const SiIcinga: IconType; +export { SiIcinga as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.mjs new file mode 100644 index 000000000..4d61315ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcinga.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#06062C"; +const SiIcinga = React.forwardRef(function SiIcinga2({ title = "Icinga", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.8285.0086a2.122 2.122 0 00-1.1546.4705c-.9134.7446-1.052 2.0897-.3057 3.0038.1738.2135.382.3803.6085.5076l-1.9992 4.1526c-1.3307-.5156-2.8925-.3242-4.0768.6411a4.1264 4.1264 0 00-.2805.2538L4.3895 7.2125c.124-.31.1253-.6679-.0326-.9913-.2979-.6072-1.0314-.859-1.6385-.561-.6079.2963-.8581 1.0298-.561 1.637.2979.6063 1.029.8595 1.637.5624.0991-.0483.1849-.1119.2642-.181l2.1846 1.7868c-1.1343 1.4732-1.1567 3.5843.0712 5.0876.2648.3253.5696.5978.9009.8193l-2.5067 3.5945c-.5002-.3428-1.1085-.5336-1.7602-.4838-1.522.114-2.663 1.4395-2.5482 2.9608.114 1.522 1.4403 2.663 2.9623 2.5483 1.522-.114 2.6622-1.4396 2.5482-2.9609-.0494-.6638-.3388-1.2483-.7658-1.6948l2.569-3.6836c1.1473.5518 2.5128.5527 3.6718-.0505l1.444 2.4117c-.1372.1332-.2392.3041-.2627.509-.0547.472.2836.899.7555.9529.471.054.8965-.2836.9528-.7555.054-.471-.2836-.898-.7554-.9528-.057-.007-.1097.0104-.1648.0148l-1.4856-2.4829c.072-.0512.1443-.1008.2137-.1573 1.0746-.8777 1.584-2.1864 1.493-3.4729l6.968-1.7186c.3257.484.888.7887 1.5108.742.9248-.0698 1.6171-.8747 1.548-1.7987-.07-.924-.8755-1.6156-1.7988-1.5464-.9247.0706-1.6163.874-1.5464 1.7972.007.0956.0267.1876.049.2776l-6.8092 1.68c-.1312-.6151-.4011-1.2094-.8252-1.7305-.3373-.4132-.7407-.7403-1.1799-.9854l2.017-4.1882c.6295.1558 1.3211.0324 1.8625-.4081.9134-.7447 1.0504-2.092.3058-3.0054-.466-.5709-1.1665-.8375-1.8492-.7762z" }) + ] + } + ); +}); + +export { SiIcinga as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.cjs new file mode 100644 index 000000000..93519799f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3693F3"; +const SiIcloud = React__namespace.forwardRef(function SiIcloud2({ title = "iCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.762 4.29a6.51 6.51 0 0 0-5.669 3.332 3.571 3.571 0 0 0-1.558-.36 3.571 3.571 0 0 0-3.516 3A4.918 4.918 0 0 0 0 14.796a4.918 4.918 0 0 0 4.92 4.914 4.93 4.93 0 0 0 .617-.045h14.42c2.305-.272 4.041-2.258 4.043-4.589v-.009a4.594 4.594 0 0 0-3.727-4.508 6.51 6.51 0 0 0-6.511-6.27z" }) + ] + } + ); +}); + +exports.default = SiIcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.d.ts new file mode 100644 index 000000000..ef7c065a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3693F3"; +declare const SiIcloud: IconType; +export { SiIcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.mjs new file mode 100644 index 000000000..4115083c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3693F3"; +const SiIcloud = React.forwardRef(function SiIcloud2({ title = "iCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.762 4.29a6.51 6.51 0 0 0-5.669 3.332 3.571 3.571 0 0 0-1.558-.36 3.571 3.571 0 0 0-3.516 3A4.918 4.918 0 0 0 0 14.796a4.918 4.918 0 0 0 4.92 4.914 4.93 4.93 0 0 0 .617-.045h14.42c2.305-.272 4.041-2.258 4.043-4.589v-.009a4.594 4.594 0 0 0-3.727-4.508 6.51 6.51 0 0 0-6.511-6.27z" }) + ] + } + ); +}); + +export { SiIcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.cjs new file mode 100644 index 000000000..f323e6c9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#825794"; +const SiIcomoon = React__namespace.forwardRef(function SiIcomoon2({ title = "IcoMoon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C10.34 0 8.79 .313 7.34 .938A12 12 0 0 0 3.5 3.5A12 12 0 0 0 .937 7.34C.313 8.79 0 10.34 0 12C0 13.66 .313 15.21 .938 16.66A12 12 0 0 0 3.5 20.5A12 12 0 0 0 7.34 23.06C8.79 23.69 10.34 24 12 24C13.66 24 15.21 23.69 16.66 23.06A12 12 0 0 0 20.5 20.5A12 12 0 0 0 23.06 16.66C23.69 15.21 24 13.66 24 12C24 10.34 23.69 8.79 23.06 7.34A12 12 0 0 0 20.5 3.5A12 12 0 0 0 16.66 .937C15.21 .313 13.66 0 12 0M8.88 1.5A11.65 11.65 0 0 1 11.37 3.42A12.31 12.31 0 0 1 13.27 5.87C13.8 6.77 14.2 7.73 14.5 8.77C14.78 9.8 14.93 10.88 14.93 12S14.78 14.2 14.5 15.23A11.71 11.71 0 0 1 13.27 18.13A12.31 12.31 0 0 1 11.37 20.58C10.62 21.33 9.79 21.96 8.88 22.5A11.91 11.91 0 0 1 6.42 20.58A12.31 12.31 0 0 1 4.5 18.13A11.71 11.71 0 0 1 3.31 15.23A11.63 11.63 0 0 1 2.86 12C2.86 10.88 3 9.8 3.31 8.77A11.71 11.71 0 0 1 4.5 5.87A12.31 12.31 0 0 1 6.42 3.42C7.17 2.67 8 2.04 8.88 1.5M8.86 9.23C8.09 9.23 7.44 9.5 6.9 10.04A2.67 2.67 0 0 0 6.09 12C6.09 12.77 6.36 13.42 6.9 13.96C7.44 14.5 8.09 14.77 8.86 14.77C9.63 14.77 10.28 14.5 10.82 13.96C11.36 13.42 11.63 12.77 11.63 12S11.36 10.58 10.82 10.04A2.67 2.67 0 0 0 8.86 9.23Z" }) + ] + } + ); +}); + +exports.default = SiIcomoon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.d.ts new file mode 100644 index 000000000..14dcf293b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#825794"; +declare const SiIcomoon: IconType; +export { SiIcomoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.mjs new file mode 100644 index 000000000..7c35d499a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcomoon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#825794"; +const SiIcomoon = React.forwardRef(function SiIcomoon2({ title = "IcoMoon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C10.34 0 8.79 .313 7.34 .938A12 12 0 0 0 3.5 3.5A12 12 0 0 0 .937 7.34C.313 8.79 0 10.34 0 12C0 13.66 .313 15.21 .938 16.66A12 12 0 0 0 3.5 20.5A12 12 0 0 0 7.34 23.06C8.79 23.69 10.34 24 12 24C13.66 24 15.21 23.69 16.66 23.06A12 12 0 0 0 20.5 20.5A12 12 0 0 0 23.06 16.66C23.69 15.21 24 13.66 24 12C24 10.34 23.69 8.79 23.06 7.34A12 12 0 0 0 20.5 3.5A12 12 0 0 0 16.66 .937C15.21 .313 13.66 0 12 0M8.88 1.5A11.65 11.65 0 0 1 11.37 3.42A12.31 12.31 0 0 1 13.27 5.87C13.8 6.77 14.2 7.73 14.5 8.77C14.78 9.8 14.93 10.88 14.93 12S14.78 14.2 14.5 15.23A11.71 11.71 0 0 1 13.27 18.13A12.31 12.31 0 0 1 11.37 20.58C10.62 21.33 9.79 21.96 8.88 22.5A11.91 11.91 0 0 1 6.42 20.58A12.31 12.31 0 0 1 4.5 18.13A11.71 11.71 0 0 1 3.31 15.23A11.63 11.63 0 0 1 2.86 12C2.86 10.88 3 9.8 3.31 8.77A11.71 11.71 0 0 1 4.5 5.87A12.31 12.31 0 0 1 6.42 3.42C7.17 2.67 8 2.04 8.88 1.5M8.86 9.23C8.09 9.23 7.44 9.5 6.9 10.04A2.67 2.67 0 0 0 6.09 12C6.09 12.77 6.36 13.42 6.9 13.96C7.44 14.5 8.09 14.77 8.86 14.77C9.63 14.77 10.28 14.5 10.82 13.96C11.36 13.42 11.63 12.77 11.63 12S11.36 10.58 10.82 10.04A2.67 2.67 0 0 0 8.86 9.23Z" }) + ] + } + ); +}); + +export { SiIcomoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.cjs new file mode 100644 index 000000000..0194e25f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#31B8BB"; +const SiIcon = React__namespace.forwardRef(function SiIcon2({ title = "ICON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.92669 23.93457c-.93754-.17758-1.70436-.94464-1.88217-1.88241-.31993-1.6878 1.13237-3.1401 2.82018-2.82018.93754.17781 1.7046.94463 1.8824 1.88217.31993 1.68804-1.13237 3.14034-2.82041 2.82042zM21.13507 4.76808c-.93754-.1778-1.7046-.94463-1.8824-1.8824-.31993-1.68805 1.13284-3.14034 2.82065-2.82019.93777.17805 1.70436.94487 1.88217 1.88241.31992 1.6878-1.13261 3.1401-2.82042 2.82018zm-9.11415 1.24226c1.1475 0 2.21912.32347 3.13017.88292l2.58538-2.58562c-1.59582-1.1877-3.57352-1.89092-5.71555-1.89092-5.29278 0-9.58347 4.29045-9.58347 9.58323 0 2.14227.70321 4.11997 1.89116 5.7158l2.58538-2.5854c-.55945-.91105-.88268-1.9829-.88268-3.1304 0-3.30799 2.68162-5.98961 5.9896-5.98961zm5.10664 2.85936c.55969.91106.88292 1.98267.88292 3.13018 0 3.30798-2.68162 5.9896-5.98961 5.9896-1.1475 0-2.21935-.323-3.13041-.88268L6.30508 19.6922c1.59582 1.18794 3.57352 1.89115 5.71579 1.89115 5.29278 0 9.58323-4.29045 9.58323-9.58346 0-2.14227-.70345-4.11974-1.89092-5.7158Z" }) + ] + } + ); +}); + +exports.default = SiIcon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.d.ts new file mode 100644 index 000000000..3f59728b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#31B8BB"; +declare const SiIcon: IconType; +export { SiIcon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.mjs new file mode 100644 index 000000000..591d5c694 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#31B8BB"; +const SiIcon = React.forwardRef(function SiIcon2({ title = "ICON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.92669 23.93457c-.93754-.17758-1.70436-.94464-1.88217-1.88241-.31993-1.6878 1.13237-3.1401 2.82018-2.82018.93754.17781 1.7046.94463 1.8824 1.88217.31993 1.68804-1.13237 3.14034-2.82041 2.82042zM21.13507 4.76808c-.93754-.1778-1.7046-.94463-1.8824-1.8824-.31993-1.68805 1.13284-3.14034 2.82065-2.82019.93777.17805 1.70436.94487 1.88217 1.88241.31992 1.6878-1.13261 3.1401-2.82042 2.82018zm-9.11415 1.24226c1.1475 0 2.21912.32347 3.13017.88292l2.58538-2.58562c-1.59582-1.1877-3.57352-1.89092-5.71555-1.89092-5.29278 0-9.58347 4.29045-9.58347 9.58323 0 2.14227.70321 4.11997 1.89116 5.7158l2.58538-2.5854c-.55945-.91105-.88268-1.9829-.88268-3.1304 0-3.30799 2.68162-5.98961 5.9896-5.98961zm5.10664 2.85936c.55969.91106.88292 1.98267.88292 3.13018 0 3.30798-2.68162 5.9896-5.98961 5.9896-1.1475 0-2.21935-.323-3.13041-.88268L6.30508 19.6922c1.59582 1.18794 3.57352 1.89115 5.71579 1.89115 5.29278 0 9.58323-4.29045 9.58323-9.58346 0-2.14227-.70345-4.11974-1.89092-5.7158Z" }) + ] + } + ); +}); + +export { SiIcon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.cjs new file mode 100644 index 000000000..393ce107b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1B1F"; +const SiIconfinder = React__namespace.forwardRef(function SiIconfinder2({ title = "Iconfinder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C4.492 2.746-.885 11.312.502 19.963.502 19.963 4.989 24 12 24c7.01 0 11.496-4.037 11.496-4.037C24.882 11.312 19.508 2.746 12 0zm0 1.846s2.032.726 3.945 2.488c.073.067.13.163.129.277-.001.168-.128.287-.301.287a.496.496 0 01-.137-.027 6.537 6.537 0 00-2.316-.4 6.625 6.625 0 00-3.914 1.273l-.002.002a7.978 7.978 0 016.808.768C20.48 9.11 22.597 14.179 21.902 19c0 0-1.646 1.396-4.129 2.172a.369.369 0 01-.303-.026c-.144-.084-.185-.255-.1-.404a.492.492 0 01.094-.103 6.562 6.562 0 001.504-1.809 6.632 6.632 0 00.856-4.027l-.002-.002a7.949 7.949 0 01-3.838 5.383c-4.42 2.552-9.99 1.882-13.885-1.184 0 0-.388-2.124.182-4.662a.373.373 0 01.176-.25c.145-.084.31-.033.396.117a.448.448 0 01.045.13c.126.762.405 1.5.814 2.208a6.637 6.637 0 003.059 2.756 7.96 7.96 0 01-1.672-2.033 7.928 7.928 0 01-1.066-4.205C4.128 8.047 7.464 3.659 12 1.846zm0 7.623c-2.726 0-5.117.93-6.483 2.332-.064.32-.1.65-.1.984 0 3.146 2.947 5.695 6.583 5.695 3.635 0 6.584-2.549 6.584-5.695 0-.334-.038-.664-.102-.984C17.116 10.4 14.724 9.469 12 9.469zm0 .693a3.12 3.12 0 010 6.238 3.118 3.118 0 01-2.872-4.336 1.3 1.3 0 101.657-1.656A3.108 3.108 0 0112 10.162z" }) + ] + } + ); +}); + +exports.default = SiIconfinder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.d.ts new file mode 100644 index 000000000..fb0e2ba95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1B1F"; +declare const SiIconfinder: IconType; +export { SiIconfinder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.mjs new file mode 100644 index 000000000..e565d2c8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconfinder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1B1F"; +const SiIconfinder = React.forwardRef(function SiIconfinder2({ title = "Iconfinder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C4.492 2.746-.885 11.312.502 19.963.502 19.963 4.989 24 12 24c7.01 0 11.496-4.037 11.496-4.037C24.882 11.312 19.508 2.746 12 0zm0 1.846s2.032.726 3.945 2.488c.073.067.13.163.129.277-.001.168-.128.287-.301.287a.496.496 0 01-.137-.027 6.537 6.537 0 00-2.316-.4 6.625 6.625 0 00-3.914 1.273l-.002.002a7.978 7.978 0 016.808.768C20.48 9.11 22.597 14.179 21.902 19c0 0-1.646 1.396-4.129 2.172a.369.369 0 01-.303-.026c-.144-.084-.185-.255-.1-.404a.492.492 0 01.094-.103 6.562 6.562 0 001.504-1.809 6.632 6.632 0 00.856-4.027l-.002-.002a7.949 7.949 0 01-3.838 5.383c-4.42 2.552-9.99 1.882-13.885-1.184 0 0-.388-2.124.182-4.662a.373.373 0 01.176-.25c.145-.084.31-.033.396.117a.448.448 0 01.045.13c.126.762.405 1.5.814 2.208a6.637 6.637 0 003.059 2.756 7.96 7.96 0 01-1.672-2.033 7.928 7.928 0 01-1.066-4.205C4.128 8.047 7.464 3.659 12 1.846zm0 7.623c-2.726 0-5.117.93-6.483 2.332-.064.32-.1.65-.1.984 0 3.146 2.947 5.695 6.583 5.695 3.635 0 6.584-2.549 6.584-5.695 0-.334-.038-.664-.102-.984C17.116 10.4 14.724 9.469 12 9.469zm0 .693a3.12 3.12 0 010 6.238 3.118 3.118 0 01-2.872-4.336 1.3 1.3 0 101.657-1.656A3.108 3.108 0 0112 10.162z" }) + ] + } + ); +}); + +export { SiIconfinder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.cjs new file mode 100644 index 000000000..ee0f7c113 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#026C9C"; +const SiIconify = React__namespace.forwardRef(function SiIconify2({ title = "Iconify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.8571 19.4286V9.6423c.232-.06.4583-.1577.6703-.2949L5.143 8.3023v9.9834h4.5714v2.2857H4c-.6309 0-1.1429-.512-1.1429-1.1428Zm7.4286-8.5714c0-.9463.768-1.7143 1.7143-1.7143.9463 0 1.7143.768 1.7143 1.7143 0 .9511-.7751 1.7142-1.7143 1.7142-.9392 0-1.7143-.7631-1.7143-1.7142zm-5.1428-8V1.1429C5.1429.512 5.6549 0 6.2857 0c.6309 0 1.1429.512 1.1429 1.1429v.2354zm9.1428 15.4285h4.5715V8.3023l1.6154 1.0451c.212.1372.4383.2349.6703.2949v9.7863c0 .6308-.512 1.1429-1.1429 1.1429h-5.7143Zm-.0034-17.0274 8.0531 5.2109c.5292.3428.6812 1.0508.3383 1.5805-.3428.5292-1.0508.6812-1.5805.3383L13.052 3.1846l.1897-.1229c.64-.4143 1.004-1.0954 1.0406-1.8034ZM11.3789.1834c.5297-.3428 1.2377-.1908 1.5805.3383.3429.5297.1909 1.2377-.3383 1.5806L2.907 8.388c-.5298.3429-1.2378.1909-1.5806-.3383-.3429-.5297-.1909-1.2377.3383-1.5805Zm2.6005 22.1023H22c.4732 0 .8572.384.8572.8572A.8575.8575 0 0 1 22 24H2a.8575.8575 0 0 1-.8571-.8571c0-.4732.384-.8572.8571-.8572h8.0206c.3954.6829 1.1343 1.1429 1.9794 1.1429s1.584-.46 1.9794-1.1429zm-.8365-8.8097v7.6669c0 .6308-.512 1.1428-1.1429 1.1428s-1.1429-.512-1.1429-1.1428V13.476a2.8453 2.8453 0 0 0 1.143.2383c.4062 0 .7925-.0851 1.1428-.2383z" }) + ] + } + ); +}); + +exports.default = SiIconify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.d.ts new file mode 100644 index 000000000..a7b054789 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#026C9C"; +declare const SiIconify: IconType; +export { SiIconify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.mjs new file mode 100644 index 000000000..1af1ca14b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#026C9C"; +const SiIconify = React.forwardRef(function SiIconify2({ title = "Iconify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.8571 19.4286V9.6423c.232-.06.4583-.1577.6703-.2949L5.143 8.3023v9.9834h4.5714v2.2857H4c-.6309 0-1.1429-.512-1.1429-1.1428Zm7.4286-8.5714c0-.9463.768-1.7143 1.7143-1.7143.9463 0 1.7143.768 1.7143 1.7143 0 .9511-.7751 1.7142-1.7143 1.7142-.9392 0-1.7143-.7631-1.7143-1.7142zm-5.1428-8V1.1429C5.1429.512 5.6549 0 6.2857 0c.6309 0 1.1429.512 1.1429 1.1429v.2354zm9.1428 15.4285h4.5715V8.3023l1.6154 1.0451c.212.1372.4383.2349.6703.2949v9.7863c0 .6308-.512 1.1429-1.1429 1.1429h-5.7143Zm-.0034-17.0274 8.0531 5.2109c.5292.3428.6812 1.0508.3383 1.5805-.3428.5292-1.0508.6812-1.5805.3383L13.052 3.1846l.1897-.1229c.64-.4143 1.004-1.0954 1.0406-1.8034ZM11.3789.1834c.5297-.3428 1.2377-.1908 1.5805.3383.3429.5297.1909 1.2377-.3383 1.5806L2.907 8.388c-.5298.3429-1.2378.1909-1.5806-.3383-.3429-.5297-.1909-1.2377.3383-1.5805Zm2.6005 22.1023H22c.4732 0 .8572.384.8572.8572A.8575.8575 0 0 1 22 24H2a.8575.8575 0 0 1-.8571-.8571c0-.4732.384-.8572.8571-.8572h8.0206c.3954.6829 1.1343 1.1429 1.9794 1.1429s1.584-.46 1.9794-1.1429zm-.8365-8.8097v7.6669c0 .6308-.512 1.1428-1.1429 1.1428s-1.1429-.512-1.1429-1.1428V13.476a2.8453 2.8453 0 0 0 1.143.2383c.4062 0 .7925-.0851 1.1428-.2383z" }) + ] + } + ); +}); + +export { SiIconify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.cjs new file mode 100644 index 000000000..3b7a0dfda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#16A5F3"; +const SiIconjar = React__namespace.forwardRef(function SiIconjar2({ title = "IconJar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.15 5.875c-.492 0-.936-.453-.936-.954 0-1.155 2.858-2.01 6.11-2.01.295 0 .492 0 .492-.25 0-.452-.985-.602-.985-1.355C9.831.502 10.767 0 11.95 0c1.183 0 2.12.502 2.12 1.306 0 .753-.986.853-.986 1.355 0 .151.148.251.492.251 3.252 0 6.16.803 6.16 2.009a.944.944 0 01-.937.953H5.151zm14.732 4.568c1.183.753 1.626 2.109 1.43 3.365l-1.38 7.58C19.636 22.897 18.354 24 16.826 24H7.17c-1.526 0-2.808-1.104-3.104-2.611l-1.38-7.581a3.307 3.307 0 011.48-3.315c.69-.501.836-1.355 0-1.656-1.184-.452-.938-1.908.245-1.908h7.193c1.133 0 2.514.853 2.514 3.615 0 2.762-1.282 2.51-1.282 4.468 0 .854.69 1.758 1.527 1.859 1.43.15 2.267-.402 2.267-2.41 0-2.06-1.182-3.013-1.182-4.72 0-2.059 1.28-2.863 2.118-2.863h2.07c1.182 0 1.43 1.457.246 1.909-.837.35-.69 1.205 0 1.656z" }) + ] + } + ); +}); + +exports.default = SiIconjar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.d.ts new file mode 100644 index 000000000..6f77156ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#16A5F3"; +declare const SiIconjar: IconType; +export { SiIconjar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.mjs new file mode 100644 index 000000000..9d910d22c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIconjar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#16A5F3"; +const SiIconjar = React.forwardRef(function SiIconjar2({ title = "IconJar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.15 5.875c-.492 0-.936-.453-.936-.954 0-1.155 2.858-2.01 6.11-2.01.295 0 .492 0 .492-.25 0-.452-.985-.602-.985-1.355C9.831.502 10.767 0 11.95 0c1.183 0 2.12.502 2.12 1.306 0 .753-.986.853-.986 1.355 0 .151.148.251.492.251 3.252 0 6.16.803 6.16 2.009a.944.944 0 01-.937.953H5.151zm14.732 4.568c1.183.753 1.626 2.109 1.43 3.365l-1.38 7.58C19.636 22.897 18.354 24 16.826 24H7.17c-1.526 0-2.808-1.104-3.104-2.611l-1.38-7.581a3.307 3.307 0 011.48-3.315c.69-.501.836-1.355 0-1.656-1.184-.452-.938-1.908.245-1.908h7.193c1.133 0 2.514.853 2.514 3.615 0 2.762-1.282 2.51-1.282 4.468 0 .854.69 1.758 1.527 1.859 1.43.15 2.267-.402 2.267-2.41 0-2.06-1.182-3.013-1.182-4.72 0-2.059 1.28-2.863 2.118-2.863h2.07c1.182 0 1.43 1.457.246 1.909-.837.35-.69 1.205 0 1.656z" }) + ] + } + ); +}); + +export { SiIconjar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.cjs new file mode 100644 index 000000000..5f4bf9abb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1FB141"; +const SiIcons8 = React__namespace.forwardRef(function SiIcons82({ title = "Icons8", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0H0v24h12zM18 12c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6zM18 24c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6z" }) + ] + } + ); +}); + +exports.default = SiIcons8; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.d.ts new file mode 100644 index 000000000..0e7a4e264 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1FB141"; +declare const SiIcons8: IconType; +export { SiIcons8 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.mjs new file mode 100644 index 000000000..6975453b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcons8.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1FB141"; +const SiIcons8 = React.forwardRef(function SiIcons82({ title = "Icons8", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0H0v24h12zM18 12c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6zM18 24c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6z" }) + ] + } + ); +}); + +export { SiIcons8 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.cjs new file mode 100644 index 000000000..46073693f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24FF00"; +const SiIcq = React__namespace.forwardRef(function SiIcq2({ title = "ICQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.189 0a3.784 3.784 0 0 0-3.055 5.93l1.741 2.562a1.855 1.855 0 0 0 3.334-.13l1.454-2.929h-.006A3.784 3.784 0 0 0 10.189 0zm9.173 4.496a4.235 4.235 0 0 0-1.662.306 4.23 4.23 0 0 0-1.817 1.396l-2.214 2.837c-.025.032-.05.063-.074.096l-.01.012a2.088 2.088 0 0 0 1.509 3.306l3.614.536-.003-.007a4.259 4.259 0 0 0 4.532-5.807 4.264 4.264 0 0 0-3.875-2.675zM3.586 7.242A3.154 3.154 0 0 0 .55 9.628a3.151 3.151 0 0 0 3.903 3.804l2.539-.737a1.545 1.545 0 0 0 .742-2.673L5.79 8.118v.005a3.13 3.13 0 0 0-2.204-.881zM13.9 13.959a1.886 1.886 0 0 0-1.858 2.233l.387 3.263.005-.003a3.846 3.846 0 0 0 6.134 2.574 3.846 3.846 0 0 0-.9-6.645l-2.877-1.197a1.89 1.89 0 0 0-.89-.225zm-5.55.08c-.377 0-.75.104-1.076.3L4.06 16.018l.006.003a4.21 4.21 0 0 0-1.593 1.485 4.24 4.24 0 0 0 1.342 5.843 4.239 4.239 0 0 0 5.845-1.332 4.21 4.21 0 0 0 .647-2.172l.108-3.45a2.079 2.079 0 0 0-2.062-2.356z" }) + ] + } + ); +}); + +exports.default = SiIcq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.d.ts new file mode 100644 index 000000000..fbcff268f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24FF00"; +declare const SiIcq: IconType; +export { SiIcq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.mjs new file mode 100644 index 000000000..c49bd3d7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIcq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24FF00"; +const SiIcq = React.forwardRef(function SiIcq2({ title = "ICQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.189 0a3.784 3.784 0 0 0-3.055 5.93l1.741 2.562a1.855 1.855 0 0 0 3.334-.13l1.454-2.929h-.006A3.784 3.784 0 0 0 10.189 0zm9.173 4.496a4.235 4.235 0 0 0-1.662.306 4.23 4.23 0 0 0-1.817 1.396l-2.214 2.837c-.025.032-.05.063-.074.096l-.01.012a2.088 2.088 0 0 0 1.509 3.306l3.614.536-.003-.007a4.259 4.259 0 0 0 4.532-5.807 4.264 4.264 0 0 0-3.875-2.675zM3.586 7.242A3.154 3.154 0 0 0 .55 9.628a3.151 3.151 0 0 0 3.903 3.804l2.539-.737a1.545 1.545 0 0 0 .742-2.673L5.79 8.118v.005a3.13 3.13 0 0 0-2.204-.881zM13.9 13.959a1.886 1.886 0 0 0-1.858 2.233l.387 3.263.005-.003a3.846 3.846 0 0 0 6.134 2.574 3.846 3.846 0 0 0-.9-6.645l-2.877-1.197a1.89 1.89 0 0 0-.89-.225zm-5.55.08c-.377 0-.75.104-1.076.3L4.06 16.018l.006.003a4.21 4.21 0 0 0-1.593 1.485 4.24 4.24 0 0 0 1.342 5.843 4.239 4.239 0 0 0 5.845-1.332 4.21 4.21 0 0 0 .647-2.172l.108-3.45a2.079 2.079 0 0 0-2.062-2.356z" }) + ] + } + ); +}); + +export { SiIcq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.cjs new file mode 100644 index 000000000..aac4a28d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00629B"; +const SiIeee = React__namespace.forwardRef(function SiIeee2({ title = "IEEE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.74 14.973h-.05v-.064h.04c.022 0 .051.002.051.03 0 .028-.015.034-.04.034zm.101-.03c0-.06-.04-.079-.109-.079h-.099v.265h.057v-.111h.027l.061.111h.068l-.069-.116c.036-.003.064-.02.064-.07zm-.11.243c-.098 0-.176-.076-.176-.19 0-.113.078-.188.176-.188.095 0 .177.075.177.188 0 .114-.082.19-.177.19zm-.247-.19c0 .156.116.247.247.247.13 0 .247-.09.247-.247a.238.238 0 0 0-.247-.246.239.239 0 0 0-.247.246zM3.35 12.61c-.02.374-.025.72-.052 1.096.148.013.315.026.473.003l-.047-1.046-.009-.05c-.12.005-.234.01-.365-.003zm-.926-1.051c-.182.091-.45.23-.421.48.04.136.187.224.304.28.647.286 1.506.295 2.19.083.168-.065.395-.16.426-.366-.002-.171-.183-.279-.313-.344v-.008a.575.575 0 0 1 .144-.039v-.004c-.228-.041-.45-.101-.671-.16.043.097.073.2.109.301.067-.021.135-.038.207-.047.117.045.284.11.3.256.014.137-.136.204-.23.26-.501.181-1.065.2-1.588.06-.144-.045-.353-.103-.37-.287.102-.242.367-.292.588-.351-.114-.073-.23-.138-.34-.22-.119.007-.227.059-.335.106zm1.107-1.46l-.064.208-.326.932c.082.008.183 0 .263.008v.008l-.048 1.054.008.01c.104.01.234.016.34-.002V12.3l-.042-1.022.006-.035.286-.004a46.727 46.727 0 0 1-.414-1.14zm-.15-.469c.239-.163.453.065.639.195.717.578 1.393 1.238 1.909 1.984.065.096.094.246.036.355-.134.223-.314.426-.485.633v.011c-.426.454-.876.92-1.363 1.305-.237.144-.455.46-.761.264a11.007 11.007 0 0 1-1.927-1.82c-.096-.149-.246-.271-.312-.44-.093-.23.112-.394.229-.566.576-.71 1.291-1.407 2.034-1.92zm.6-.678l-.266-.376c-.032-.02-.073-.052-.108-.062-.079-.034-.163.007-.227.056l-.48.624c-.769.953-1.68 1.843-2.673 2.525-.079.061-.195.121-.22.222-.026.091.022.166.078.223a13.061 13.061 0 0 1 2.234 1.94c.12.127.217.252.335.37.198.265.43.53.613.813.057.06.066.158.156.187.07.024.156.04.223 0l.066-.067a13.269 13.269 0 0 1 3.034-3.06c.117-.103.34-.142.343-.336a.308.308 0 0 0-.137-.226l-.02-.003c-.6-.408-1.159-.87-1.686-1.394l-.582-.609a16.595 16.595 0 0 1-.684-.827zm.039.672c.206.157.42.336.61.518l.034.02a10.122 10.122 0 0 1 1.405 1.592c.065.1.122.212.086.343-.133.332-.403.597-.639.887-.51.55-1.05 1.081-1.652 1.506-.122.086-.287.166-.433.097-.444-.232-.818-.613-1.207-.96-.45-.417-.902-.904-1.244-1.413a.417.417 0 0 1-.064-.253c.044-.176.165-.32.279-.469.403-.514.897-1.002 1.397-1.447.011-.012.032-.036.05-.047.215-.186.428-.35.652-.511.234-.182.529-.031.726.137zm15.942-.197H24v1.028h-2.569v1.094h2.364v1.028H21.43V13.7H24v1.028h-4.038zm-4.859 0h4.037v1.028h-2.57v1.094h2.363v1.028H16.57V13.7h2.569v1.028h-4.037zm-4.86 0h4.037v1.028h-2.57v1.094h2.365v1.028H11.71V13.7h2.57v1.028h-4.038zm-2.24 0h1.469v5.301H8.004Z" }) + ] + } + ); +}); + +exports.default = SiIeee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.d.ts new file mode 100644 index 000000000..65ca4ba10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00629B"; +declare const SiIeee: IconType; +export { SiIeee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.mjs new file mode 100644 index 000000000..b8b0b64a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIeee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00629B"; +const SiIeee = React.forwardRef(function SiIeee2({ title = "IEEE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.74 14.973h-.05v-.064h.04c.022 0 .051.002.051.03 0 .028-.015.034-.04.034zm.101-.03c0-.06-.04-.079-.109-.079h-.099v.265h.057v-.111h.027l.061.111h.068l-.069-.116c.036-.003.064-.02.064-.07zm-.11.243c-.098 0-.176-.076-.176-.19 0-.113.078-.188.176-.188.095 0 .177.075.177.188 0 .114-.082.19-.177.19zm-.247-.19c0 .156.116.247.247.247.13 0 .247-.09.247-.247a.238.238 0 0 0-.247-.246.239.239 0 0 0-.247.246zM3.35 12.61c-.02.374-.025.72-.052 1.096.148.013.315.026.473.003l-.047-1.046-.009-.05c-.12.005-.234.01-.365-.003zm-.926-1.051c-.182.091-.45.23-.421.48.04.136.187.224.304.28.647.286 1.506.295 2.19.083.168-.065.395-.16.426-.366-.002-.171-.183-.279-.313-.344v-.008a.575.575 0 0 1 .144-.039v-.004c-.228-.041-.45-.101-.671-.16.043.097.073.2.109.301.067-.021.135-.038.207-.047.117.045.284.11.3.256.014.137-.136.204-.23.26-.501.181-1.065.2-1.588.06-.144-.045-.353-.103-.37-.287.102-.242.367-.292.588-.351-.114-.073-.23-.138-.34-.22-.119.007-.227.059-.335.106zm1.107-1.46l-.064.208-.326.932c.082.008.183 0 .263.008v.008l-.048 1.054.008.01c.104.01.234.016.34-.002V12.3l-.042-1.022.006-.035.286-.004a46.727 46.727 0 0 1-.414-1.14zm-.15-.469c.239-.163.453.065.639.195.717.578 1.393 1.238 1.909 1.984.065.096.094.246.036.355-.134.223-.314.426-.485.633v.011c-.426.454-.876.92-1.363 1.305-.237.144-.455.46-.761.264a11.007 11.007 0 0 1-1.927-1.82c-.096-.149-.246-.271-.312-.44-.093-.23.112-.394.229-.566.576-.71 1.291-1.407 2.034-1.92zm.6-.678l-.266-.376c-.032-.02-.073-.052-.108-.062-.079-.034-.163.007-.227.056l-.48.624c-.769.953-1.68 1.843-2.673 2.525-.079.061-.195.121-.22.222-.026.091.022.166.078.223a13.061 13.061 0 0 1 2.234 1.94c.12.127.217.252.335.37.198.265.43.53.613.813.057.06.066.158.156.187.07.024.156.04.223 0l.066-.067a13.269 13.269 0 0 1 3.034-3.06c.117-.103.34-.142.343-.336a.308.308 0 0 0-.137-.226l-.02-.003c-.6-.408-1.159-.87-1.686-1.394l-.582-.609a16.595 16.595 0 0 1-.684-.827zm.039.672c.206.157.42.336.61.518l.034.02a10.122 10.122 0 0 1 1.405 1.592c.065.1.122.212.086.343-.133.332-.403.597-.639.887-.51.55-1.05 1.081-1.652 1.506-.122.086-.287.166-.433.097-.444-.232-.818-.613-1.207-.96-.45-.417-.902-.904-1.244-1.413a.417.417 0 0 1-.064-.253c.044-.176.165-.32.279-.469.403-.514.897-1.002 1.397-1.447.011-.012.032-.036.05-.047.215-.186.428-.35.652-.511.234-.182.529-.031.726.137zm15.942-.197H24v1.028h-2.569v1.094h2.364v1.028H21.43V13.7H24v1.028h-4.038zm-4.859 0h4.037v1.028h-2.57v1.094h2.363v1.028H16.57V13.7h2.569v1.028h-4.037zm-4.86 0h4.037v1.028h-2.57v1.094h2.365v1.028H11.71V13.7h2.57v1.028h-4.038zm-2.24 0h1.469v5.301H8.004Z" }) + ] + } + ); +}); + +export { SiIeee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.cjs new file mode 100644 index 000000000..fb5a95080 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0071CE"; +const SiIfixit = React__namespace.forwardRef(function SiIfixit2({ title = "iFixit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.345 12.506l2.37 3.131c.198.261.211.69.025.961l-.119.177c-.181.27-.55.645-.814.831l-.285.201c-.266.195-.697.195-.956-.016l-3.135-2.369c-.255-.195-.681-.195-.94 0l-3.136 2.369c-.258.211-.689.211-.956.03l-.207-.135c-.27-.181-.641-.556-.825-.81l-.181-.256c-.186-.27-.18-.689.018-.96l2.377-3.149c.195-.256.195-.675 0-.945L6.197 8.43c-.194-.263-.203-.69-.013-.957l.2-.285c.187-.264.56-.629.828-.814l.175-.119c.27-.196.703-.182.961.014l3.135 2.37c.26.195.684.195.942 0l3.135-2.385c.258-.195.698-.226.979-.061l.33.195c.28.165.639.524.795.81l.12.21c.154.285.123.721-.075.99l-2.37 3.135c-.194.255-.194.676 0 .945l.006.028zM12 0C5.37 0 0 5.373 0 12s5.37 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0z" }) + ] + } + ); +}); + +exports.default = SiIfixit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.d.ts new file mode 100644 index 000000000..186e0e530 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0071CE"; +declare const SiIfixit: IconType; +export { SiIfixit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.mjs new file mode 100644 index 000000000..abfb08c1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfixit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0071CE"; +const SiIfixit = React.forwardRef(function SiIfixit2({ title = "iFixit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.345 12.506l2.37 3.131c.198.261.211.69.025.961l-.119.177c-.181.27-.55.645-.814.831l-.285.201c-.266.195-.697.195-.956-.016l-3.135-2.369c-.255-.195-.681-.195-.94 0l-3.136 2.369c-.258.211-.689.211-.956.03l-.207-.135c-.27-.181-.641-.556-.825-.81l-.181-.256c-.186-.27-.18-.689.018-.96l2.377-3.149c.195-.256.195-.675 0-.945L6.197 8.43c-.194-.263-.203-.69-.013-.957l.2-.285c.187-.264.56-.629.828-.814l.175-.119c.27-.196.703-.182.961.014l3.135 2.37c.26.195.684.195.942 0l3.135-2.385c.258-.195.698-.226.979-.061l.33.195c.28.165.639.524.795.81l.12.21c.154.285.123.721-.075.99l-2.37 3.135c-.194.255-.194.676 0 .945l.006.028zM12 0C5.37 0 0 5.373 0 12s5.37 12 12 12c6.627 0 12-5.373 12-12S18.627 0 12 0z" }) + ] + } + ); +}); + +export { SiIfixit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.cjs new file mode 100644 index 000000000..70f1b542d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA1D2C"; +const SiIfood = React__namespace.forwardRef(function SiIfood2({ title = "iFood", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.428 1.67c-4.65 0-7.184 4.149-7.184 6.998 0 2.294 2.2 3.299 4.25 3.299l-.006-.006c4.244 0 7.184-3.854 7.184-6.998 0-2.29-2.175-3.293-4.244-3.293zm11.328 0c-4.65 0-7.184 4.149-7.184 6.998 0 2.294 2.2 3.299 4.25 3.299l-.006-.006C21.061 11.96 24 8.107 24 4.963c0-2.29-2.18-3.293-4.244-3.293zM14.172 14.52l2.435 1.834c-2.17 2.07-6.124 3.525-9.353 3.17A8.913 8.913 0 01.23 14.541H0a9.598 9.598 0 008.828 7.758c3.814.24 7.323-.905 9.947-3.13l-.004.007 1.08 2.988 1.555-7.623-7.234-.02Z" }) + ] + } + ); +}); + +exports.default = SiIfood; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.d.ts new file mode 100644 index 000000000..fd81eb2b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA1D2C"; +declare const SiIfood: IconType; +export { SiIfood as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.mjs new file mode 100644 index 000000000..c5182c667 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfood.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA1D2C"; +const SiIfood = React.forwardRef(function SiIfood2({ title = "iFood", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.428 1.67c-4.65 0-7.184 4.149-7.184 6.998 0 2.294 2.2 3.299 4.25 3.299l-.006-.006c4.244 0 7.184-3.854 7.184-6.998 0-2.29-2.175-3.293-4.244-3.293zm11.328 0c-4.65 0-7.184 4.149-7.184 6.998 0 2.294 2.2 3.299 4.25 3.299l-.006-.006C21.061 11.96 24 8.107 24 4.963c0-2.29-2.18-3.293-4.244-3.293zM14.172 14.52l2.435 1.834c-2.17 2.07-6.124 3.525-9.353 3.17A8.913 8.913 0 01.23 14.541H0a9.598 9.598 0 008.828 7.758c3.814.24 7.323-.905 9.947-3.13l-.004.007 1.08 2.988 1.555-7.623-7.234-.02Z" }) + ] + } + ); +}); + +export { SiIfood as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.cjs new file mode 100644 index 000000000..a5dee16a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiIfttt = React__namespace.forwardRef(function SiIfttt2({ title = "IFTTT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 8.82h2.024v6.36H0zm11.566 0h-3.47v2.024h1.446v4.337h2.024v-4.337h1.446V8.82zm5.494 0h-3.47v2.024h1.446v4.337h2.024v-4.337h1.446V8.82zm5.494 0h-3.47v2.024h1.446v4.337h2.024v-4.337H24V8.82zM7.518 10.843V8.82H2.892v6.36h2.024v-1.734H6.65v-2.024H4.916v-.578z" }) + ] + } + ); +}); + +exports.default = SiIfttt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.d.ts new file mode 100644 index 000000000..6d72ccf85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiIfttt: IconType; +export { SiIfttt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.mjs new file mode 100644 index 000000000..ac54f6d48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIfttt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiIfttt = React.forwardRef(function SiIfttt2({ title = "IFTTT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 8.82h2.024v6.36H0zm11.566 0h-3.47v2.024h1.446v4.337h2.024v-4.337h1.446V8.82zm5.494 0h-3.47v2.024h1.446v4.337h2.024v-4.337h1.446V8.82zm5.494 0h-3.47v2.024h1.446v4.337h2.024v-4.337H24V8.82zM7.518 10.843V8.82H2.892v6.36h2.024v-1.734H6.65v-2.024H4.916v-.578z" }) + ] + } + ); +}); + +export { SiIfttt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.cjs new file mode 100644 index 000000000..3a6b1b98b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9147FF"; +const SiIgdb = React__namespace.forwardRef(function SiIgdb2({ title = "IGDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 6.228c-8 .002-16 0-24 0v11.543a88.875 88.875 0 0 1 2.271-.333 74.051 74.051 0 0 1 17.038-.28c1.57.153 3.134.363 4.69.614V6.228zm-.706.707v10.013a74.747 74.747 0 0 0-22.588 0V6.934h22.588ZM7.729 8.84a2.624 2.624 0 0 0-1.857.72 2.55 2.55 0 0 0-.73 1.33c-.098.5-.063 1.03.112 1.51.177.488.515.917.954 1.196.547.354 1.224.472 1.865.401a3.242 3.242 0 0 0 1.786-.777c-.003-.724.002-1.449-.002-2.173-.725.004-1.45-.002-2.174.003.003.317 0 .634.001.951h1.105c.002.236 0 .473.002.71-.268.196-.603.286-.932.298-.32.02-.65-.05-.922-.225a1.464 1.464 0 0 1-.59-.744c-.18-.499-.134-1.085.163-1.53.23-.355.619-.61 1.043-.647a1.8 1.8 0 0 1 1.012.206c.152.082.286.192.424.295.228-.281.461-.559.692-.838a3.033 3.033 0 0 0-.595-.403c-.418-.212-.892-.285-1.357-.283Zm11.66.086c-.093 0-.187.002-.28 0-.68.002-1.359-.004-2.038.003.003 1.666 0 3.332.002 4.998h2.497c.239-.002.478-.034.709-.097.276-.076.546-.208.742-.422.194-.208.297-.492.304-.776.016-.278-.032-.572-.195-.804-.175-.252-.453-.408-.734-.514.211-.122.407-.285.521-.505.134-.246.149-.535.117-.807a1.156 1.156 0 0 0-.436-.73c-.264-.207-.599-.304-.93-.334a2.757 2.757 0 0 0-.279-.012Zm-16.715 0v5.002h1.102V8.927c-.368-.002-.735 0-1.102 0zm8.524 0v5.002h2.016a2.87 2.87 0 0 0 1.07-.211 2.445 2.445 0 0 0 1.174-.993c.34-.555.429-1.244.292-1.876a2.367 2.367 0 0 0-.828-1.338c-.478-.387-1.096-.577-1.707-.584h-2.017zm6.949.967c.392.002.784-.001 1.176.002.183.011.38.054.51.19.11.112.136.28.112.43a.436.436 0 0 1-.22.316 1.082 1.082 0 0 1-.483.116c-.365.002-.73-.001-1.094.001-.002-.351 0-.703-.001-1.054zm-5.031.026c.28 0 .567.053.815.19.274.149.491.396.607.685.113.272.138.574.107.865a1.456 1.456 0 0 1-.335.786 1.425 1.425 0 0 1-.865.466c-.168.031-.34.022-.51.023h-.632V9.92h.813zm5.03 1.948h1.36c.174.006.354.035.505.127.11.066.191.18.212.308.025.15.004.32-.099.44-.102.12-.258.176-.409.2-.172.032-.348.02-.522.022-.35-.001-.698.002-1.047-.001v-1.096z" }) + ] + } + ); +}); + +exports.default = SiIgdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.d.ts new file mode 100644 index 000000000..7be43f56e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9147FF"; +declare const SiIgdb: IconType; +export { SiIgdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.mjs new file mode 100644 index 000000000..a65f9f617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIgdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9147FF"; +const SiIgdb = React.forwardRef(function SiIgdb2({ title = "IGDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 6.228c-8 .002-16 0-24 0v11.543a88.875 88.875 0 0 1 2.271-.333 74.051 74.051 0 0 1 17.038-.28c1.57.153 3.134.363 4.69.614V6.228zm-.706.707v10.013a74.747 74.747 0 0 0-22.588 0V6.934h22.588ZM7.729 8.84a2.624 2.624 0 0 0-1.857.72 2.55 2.55 0 0 0-.73 1.33c-.098.5-.063 1.03.112 1.51.177.488.515.917.954 1.196.547.354 1.224.472 1.865.401a3.242 3.242 0 0 0 1.786-.777c-.003-.724.002-1.449-.002-2.173-.725.004-1.45-.002-2.174.003.003.317 0 .634.001.951h1.105c.002.236 0 .473.002.71-.268.196-.603.286-.932.298-.32.02-.65-.05-.922-.225a1.464 1.464 0 0 1-.59-.744c-.18-.499-.134-1.085.163-1.53.23-.355.619-.61 1.043-.647a1.8 1.8 0 0 1 1.012.206c.152.082.286.192.424.295.228-.281.461-.559.692-.838a3.033 3.033 0 0 0-.595-.403c-.418-.212-.892-.285-1.357-.283Zm11.66.086c-.093 0-.187.002-.28 0-.68.002-1.359-.004-2.038.003.003 1.666 0 3.332.002 4.998h2.497c.239-.002.478-.034.709-.097.276-.076.546-.208.742-.422.194-.208.297-.492.304-.776.016-.278-.032-.572-.195-.804-.175-.252-.453-.408-.734-.514.211-.122.407-.285.521-.505.134-.246.149-.535.117-.807a1.156 1.156 0 0 0-.436-.73c-.264-.207-.599-.304-.93-.334a2.757 2.757 0 0 0-.279-.012Zm-16.715 0v5.002h1.102V8.927c-.368-.002-.735 0-1.102 0zm8.524 0v5.002h2.016a2.87 2.87 0 0 0 1.07-.211 2.445 2.445 0 0 0 1.174-.993c.34-.555.429-1.244.292-1.876a2.367 2.367 0 0 0-.828-1.338c-.478-.387-1.096-.577-1.707-.584h-2.017zm6.949.967c.392.002.784-.001 1.176.002.183.011.38.054.51.19.11.112.136.28.112.43a.436.436 0 0 1-.22.316 1.082 1.082 0 0 1-.483.116c-.365.002-.73-.001-1.094.001-.002-.351 0-.703-.001-1.054zm-5.031.026c.28 0 .567.053.815.19.274.149.491.396.607.685.113.272.138.574.107.865a1.456 1.456 0 0 1-.335.786 1.425 1.425 0 0 1-.865.466c-.168.031-.34.022-.51.023h-.632V9.92h.813zm5.03 1.948h1.36c.174.006.354.035.505.127.11.066.191.18.212.308.025.15.004.32-.099.44-.102.12-.258.176-.409.2-.172.032-.348.02-.522.022-.35-.001-.698.002-1.047-.001v-1.096z" }) + ] + } + ); +}); + +export { SiIgdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.cjs new file mode 100644 index 000000000..127ff31b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BF1313"; +const SiIgn = React__namespace.forwardRef(function SiIgn2({ title = "IGN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.38 7.66c.59-.9 1.359-1.67 2.26-2.26.13-1.18.31-2.26.52-3.21a10.602 10.602 0 0 0-6 6c.95-.22 2.03-.39 3.21-.52m10.97-2.3v.02c.9.59 1.67 1.37 2.27 2.27 1.18.13 2.26.31 3.21.52a10.632 10.632 0 0 0-6.02-6.01c.22.95.4 2.02.54 3.2m-8.7 13.26c-.9-.59-1.67-1.37-2.27-2.27h-.03c-1.19-.14-2.26-.32-3.19-.54 1.07 2.75 3.26 4.95 6.01 6.02-.22-.95-.39-2.03-.52-3.21m11-2.27h-.03c-.59.9-1.37 1.67-2.27 2.27v.03c-.14 1.17-.32 2.25-.54 3.19a10.593 10.593 0 0 0 6.03-6.03c-.94.22-2 .4-3.19.54M10.04.01h3.9c.85 1.85 1.2 4.59 1.3 5.52.04.22.06.43.06.63L12 9.12 8.7 6.16c0-.17.02-.35.05-.55.1-.95.43-3.75 1.29-5.61M8.7 17.84c0 .17.02.35.05.55.1.95.43 3.75 1.29 5.61h3.9c.85-1.84 1.2-4.59 1.3-5.52.04-.22.06-.43.06-.64L12 14.88l-3.3 2.96ZM6.16 8.69c-.17 0-.35.02-.55.05-.95.12-3.75.45-5.61 1.31v3.9c1.84.85 4.59 1.19 5.52 1.3.22.04.43.06.64.06l2.95-3.3-2.95-3.3v-.02ZM24 10.03c-1.86-.86-4.66-1.19-5.61-1.29-.2-.03-.38-.05-.55-.05l-2.96 3.3 2.96 3.3c.2 0 .41-.02.64-.06.93-.11 3.68-.45 5.52-1.3v-3.9Z" }) + ] + } + ); +}); + +exports.default = SiIgn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.d.ts new file mode 100644 index 000000000..ccf630c4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BF1313"; +declare const SiIgn: IconType; +export { SiIgn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.mjs new file mode 100644 index 000000000..2c5316b74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIgn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BF1313"; +const SiIgn = React.forwardRef(function SiIgn2({ title = "IGN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.38 7.66c.59-.9 1.359-1.67 2.26-2.26.13-1.18.31-2.26.52-3.21a10.602 10.602 0 0 0-6 6c.95-.22 2.03-.39 3.21-.52m10.97-2.3v.02c.9.59 1.67 1.37 2.27 2.27 1.18.13 2.26.31 3.21.52a10.632 10.632 0 0 0-6.02-6.01c.22.95.4 2.02.54 3.2m-8.7 13.26c-.9-.59-1.67-1.37-2.27-2.27h-.03c-1.19-.14-2.26-.32-3.19-.54 1.07 2.75 3.26 4.95 6.01 6.02-.22-.95-.39-2.03-.52-3.21m11-2.27h-.03c-.59.9-1.37 1.67-2.27 2.27v.03c-.14 1.17-.32 2.25-.54 3.19a10.593 10.593 0 0 0 6.03-6.03c-.94.22-2 .4-3.19.54M10.04.01h3.9c.85 1.85 1.2 4.59 1.3 5.52.04.22.06.43.06.63L12 9.12 8.7 6.16c0-.17.02-.35.05-.55.1-.95.43-3.75 1.29-5.61M8.7 17.84c0 .17.02.35.05.55.1.95.43 3.75 1.29 5.61h3.9c.85-1.84 1.2-4.59 1.3-5.52.04-.22.06-.43.06-.64L12 14.88l-3.3 2.96ZM6.16 8.69c-.17 0-.35.02-.55.05-.95.12-3.75.45-5.61 1.31v3.9c1.84.85 4.59 1.19 5.52 1.3.22.04.43.06.64.06l2.95-3.3-2.95-3.3v-.02ZM24 10.03c-1.86-.86-4.66-1.19-5.61-1.29-.2-.03-.38-.05-.55-.05l-2.96 3.3 2.96 3.3c.2 0 .41-.02.64-.06.93-.11 3.68-.45 5.52-1.3v-3.9Z" }) + ] + } + ); +}); + +export { SiIgn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.cjs new file mode 100644 index 000000000..7c064834f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C6002B"; +const SiIheartradio = React__namespace.forwardRef(function SiIheartradio2({ title = "iHeartRadio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.403 21.983c.597 0 1.023-.306 1.023-.817v-.012c0-.489-.375-.784-1.017-.784H3.182v1.613zm-1.67-1.8c0-.125.102-.228.221-.228h1.489c.488 0 .88.148 1.13.398.193.193.307.472.307.784v.011c0 .654-.443 1.034-1.062 1.154l.988 1.272c.046.051.074.102.074.164 0 .12-.114.222-.227.222-.091 0-.16-.05-.21-.12l-1.12-1.453H3.183v1.346a.228.228 0 01-.228.227.227.227 0 01-.221-.227v-3.55m6.674 2.29l-.914-2.035-.915 2.034zm-2.812 1.164l1.614-3.528c.056-.125.142-.2.284-.2h.022c.137 0 .228.075.279.2l1.613 3.522a.31.31 0 01.029.113c0 .12-.097.216-.216.216-.108 0-.182-.074-.222-.165l-.415-.914H7.402l-.415.926c-.04.097-.113.153-.216.153a.204.204 0 01-.204-.204.26.26 0 01.028-.12m6.078-.118c1.005 0 1.647-.682 1.647-1.563v-.011c0-.88-.642-1.574-1.647-1.574h-.932v3.148zm-1.38-3.335c0-.125.102-.228.221-.228h1.16c1.249 0 2.112.858 2.112 1.977v.012c0 1.119-.863 1.988-2.113 1.988h-1.159a.226.226 0 01-.221-.227v-3.522m4.481-.029c0-.124.103-.227.222-.227.125 0 .227.103.227.227v3.579a.228.228 0 01-.227.227.227.227 0 01-.222-.227v-3.579m5.027 1.801v-.011c0-.904-.659-1.642-1.568-1.642s-1.556.727-1.556 1.63v.012c0 .903.659 1.642 1.567 1.642.91 0 1.557-.728 1.557-1.631zm-3.59 0v-.011c0-1.097.824-2.057 2.033-2.057 1.21 0 2.023.949 2.023 2.045v.012c0 1.096-.824 2.056-2.034 2.056s-2.022-.949-2.022-2.045m2.03-17.192c0 1.397-.754 2.773-2.242 4.092a.345.345 0 01-.458-.517c1.333-1.182 2.01-2.385 2.01-3.575v-.016c0-.966-.606-2.103-1.38-2.588a.345.345 0 11.367-.586c.97.61 1.703 1.974 1.703 3.174zM14.76 7.677a.345.345 0 11-.337-.602c.799-.448 1.336-1.318 1.339-2.167a2.096 2.096 0 00-1.124-1.855.345.345 0 11.321-.611 2.785 2.785 0 011.493 2.46v.011c-.004 1.09-.683 2.199-1.692 2.764zm-2.772-1.015a1.498 1.498 0 11.001-2.997 1.498 1.498 0 01-.001 2.997zm-2.303.882a.345.345 0 01-.47.133c-1.009-.565-1.688-1.674-1.692-2.764v-.01a2.785 2.785 0 011.493-2.461.346.346 0 01.321.611 2.096 2.096 0 00-1.124 1.855c.003.849.54 1.719 1.34 2.166a.345.345 0 01.132.47zM7.464 8.825a.344.344 0 01-.488.03C5.49 7.536 4.734 6.16 4.734 4.763v-.016c0-1.2.732-2.564 1.703-3.174a.346.346 0 01.367.586c-.774.485-1.38 1.622-1.38 2.588v.016c0 1.19.677 2.393 2.01 3.575a.345.345 0 01.03.487zM16.152 0c-1.727 0-3.27.915-4.164 2.252C11.094.915 9.55 0 7.823 0A4.982 4.982 0 002.84 4.983c0 1.746 1.106 3.005 2.261 4.17l4.518 4.272a.371.371 0 00.626-.27V9.827c0-.963.78-1.743 1.743-1.745a1.745 1.745 0 011.742 1.745v3.328c0 .326.39.493.626.27l4.518-4.272c1.155-1.165 2.261-2.424 2.261-4.17A4.982 4.982 0 0016.152 0M4.582 14.766h1.194v1.612h1.532v-1.612H8.5v4.307H7.308v-1.637H5.776v1.637H4.582v-4.307m6.527 2.353a.563.563 0 00-.578-.587c-.308 0-.55.238-.578.587zm-2.264.305v-.012c0-.972.696-1.741 1.68-1.741 1.15 0 1.68.842 1.68 1.82 0 .075 0 .16-.007.24H9.971c.093.364.357.549.72.549.277 0 .498-.105.738-.34l.647.536c-.32.406-.782.677-1.447.677-1.045 0-1.784-.695-1.784-1.729m7.29-1.68h1.17v.67c.19-.454.498-.75 1.051-.725v1.23h-.098c-.609 0-.954.351-.954 1.12v1.034h-1.168v-3.329m2.95 2.295v-1.353h-.393v-.942h.393v-.842h1.17v.842h.775v.942h-.775v1.126c0 .234.105.332.32.332.153 0 .301-.043.442-.11v.916c-.209.117-.485.19-.812.19-.7 0-1.12-.307-1.12-1.1m-15.65-3.584a.62.62 0 100 1.24.62.62 0 000-1.24m10.502 3.952c-.303.013-.483-.161-.483-.371 0-.203.16-.307.454-.307h.667v.036c-.004.137-.06.617-.638.642zm1.746-1.008c0-1.033-.739-1.729-1.784-1.729-.665 0-1.126.271-1.447.677l.647.536c.24-.234.461-.34.738-.34.359 0 .621.182.716.537l.001.025-.77.003c-.956.013-1.458.37-1.458 1.045 0 .65.464.999 1.262.999.432 0 .764-.17.987-.401v.32h1.106v-1.628l.002-.032V17.4M3.458 15.99h-.043a.61.61 0 00-.61.61v2.474h1.263v-2.474a.61.61 0 00-.61-.61" }) + ] + } + ); +}); + +exports.default = SiIheartradio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.d.ts new file mode 100644 index 000000000..28d89d379 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C6002B"; +declare const SiIheartradio: IconType; +export { SiIheartradio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.mjs new file mode 100644 index 000000000..f97117ccd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIheartradio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C6002B"; +const SiIheartradio = React.forwardRef(function SiIheartradio2({ title = "iHeartRadio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.403 21.983c.597 0 1.023-.306 1.023-.817v-.012c0-.489-.375-.784-1.017-.784H3.182v1.613zm-1.67-1.8c0-.125.102-.228.221-.228h1.489c.488 0 .88.148 1.13.398.193.193.307.472.307.784v.011c0 .654-.443 1.034-1.062 1.154l.988 1.272c.046.051.074.102.074.164 0 .12-.114.222-.227.222-.091 0-.16-.05-.21-.12l-1.12-1.453H3.183v1.346a.228.228 0 01-.228.227.227.227 0 01-.221-.227v-3.55m6.674 2.29l-.914-2.035-.915 2.034zm-2.812 1.164l1.614-3.528c.056-.125.142-.2.284-.2h.022c.137 0 .228.075.279.2l1.613 3.522a.31.31 0 01.029.113c0 .12-.097.216-.216.216-.108 0-.182-.074-.222-.165l-.415-.914H7.402l-.415.926c-.04.097-.113.153-.216.153a.204.204 0 01-.204-.204.26.26 0 01.028-.12m6.078-.118c1.005 0 1.647-.682 1.647-1.563v-.011c0-.88-.642-1.574-1.647-1.574h-.932v3.148zm-1.38-3.335c0-.125.102-.228.221-.228h1.16c1.249 0 2.112.858 2.112 1.977v.012c0 1.119-.863 1.988-2.113 1.988h-1.159a.226.226 0 01-.221-.227v-3.522m4.481-.029c0-.124.103-.227.222-.227.125 0 .227.103.227.227v3.579a.228.228 0 01-.227.227.227.227 0 01-.222-.227v-3.579m5.027 1.801v-.011c0-.904-.659-1.642-1.568-1.642s-1.556.727-1.556 1.63v.012c0 .903.659 1.642 1.567 1.642.91 0 1.557-.728 1.557-1.631zm-3.59 0v-.011c0-1.097.824-2.057 2.033-2.057 1.21 0 2.023.949 2.023 2.045v.012c0 1.096-.824 2.056-2.034 2.056s-2.022-.949-2.022-2.045m2.03-17.192c0 1.397-.754 2.773-2.242 4.092a.345.345 0 01-.458-.517c1.333-1.182 2.01-2.385 2.01-3.575v-.016c0-.966-.606-2.103-1.38-2.588a.345.345 0 11.367-.586c.97.61 1.703 1.974 1.703 3.174zM14.76 7.677a.345.345 0 11-.337-.602c.799-.448 1.336-1.318 1.339-2.167a2.096 2.096 0 00-1.124-1.855.345.345 0 11.321-.611 2.785 2.785 0 011.493 2.46v.011c-.004 1.09-.683 2.199-1.692 2.764zm-2.772-1.015a1.498 1.498 0 11.001-2.997 1.498 1.498 0 01-.001 2.997zm-2.303.882a.345.345 0 01-.47.133c-1.009-.565-1.688-1.674-1.692-2.764v-.01a2.785 2.785 0 011.493-2.461.346.346 0 01.321.611 2.096 2.096 0 00-1.124 1.855c.003.849.54 1.719 1.34 2.166a.345.345 0 01.132.47zM7.464 8.825a.344.344 0 01-.488.03C5.49 7.536 4.734 6.16 4.734 4.763v-.016c0-1.2.732-2.564 1.703-3.174a.346.346 0 01.367.586c-.774.485-1.38 1.622-1.38 2.588v.016c0 1.19.677 2.393 2.01 3.575a.345.345 0 01.03.487zM16.152 0c-1.727 0-3.27.915-4.164 2.252C11.094.915 9.55 0 7.823 0A4.982 4.982 0 002.84 4.983c0 1.746 1.106 3.005 2.261 4.17l4.518 4.272a.371.371 0 00.626-.27V9.827c0-.963.78-1.743 1.743-1.745a1.745 1.745 0 011.742 1.745v3.328c0 .326.39.493.626.27l4.518-4.272c1.155-1.165 2.261-2.424 2.261-4.17A4.982 4.982 0 0016.152 0M4.582 14.766h1.194v1.612h1.532v-1.612H8.5v4.307H7.308v-1.637H5.776v1.637H4.582v-4.307m6.527 2.353a.563.563 0 00-.578-.587c-.308 0-.55.238-.578.587zm-2.264.305v-.012c0-.972.696-1.741 1.68-1.741 1.15 0 1.68.842 1.68 1.82 0 .075 0 .16-.007.24H9.971c.093.364.357.549.72.549.277 0 .498-.105.738-.34l.647.536c-.32.406-.782.677-1.447.677-1.045 0-1.784-.695-1.784-1.729m7.29-1.68h1.17v.67c.19-.454.498-.75 1.051-.725v1.23h-.098c-.609 0-.954.351-.954 1.12v1.034h-1.168v-3.329m2.95 2.295v-1.353h-.393v-.942h.393v-.842h1.17v.842h.775v.942h-.775v1.126c0 .234.105.332.32.332.153 0 .301-.043.442-.11v.916c-.209.117-.485.19-.812.19-.7 0-1.12-.307-1.12-1.1m-15.65-3.584a.62.62 0 100 1.24.62.62 0 000-1.24m10.502 3.952c-.303.013-.483-.161-.483-.371 0-.203.16-.307.454-.307h.667v.036c-.004.137-.06.617-.638.642zm1.746-1.008c0-1.033-.739-1.729-1.784-1.729-.665 0-1.126.271-1.447.677l.647.536c.24-.234.461-.34.738-.34.359 0 .621.182.716.537l.001.025-.77.003c-.956.013-1.458.37-1.458 1.045 0 .65.464.999 1.262.999.432 0 .764-.17.987-.401v.32h1.106v-1.628l.002-.032V17.4M3.458 15.99h-.043a.61.61 0 00-.61.61v2.474h1.263v-2.474a.61.61 0 00-.61-.61" }) + ] + } + ); +}); + +export { SiIheartradio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.cjs new file mode 100644 index 000000000..bc0c86bde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0058A3"; +const SiIkea = React__namespace.forwardRef(function SiIkea2({ title = "IKEA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 7.2v9.6h24V7.2H0zm12.002 9.12C5.308 16.32.48 14.36.48 12s4.831-4.32 11.522-4.32c6.69 0 11.518 1.96 11.518 4.32s-4.824 4.32-11.518 4.32zm-.225-6.062h4.176v.964c-.103-.047-.203-.047-.306-.047h-1.758v.46h1.689v.732h-1.689v.457h1.758c.103 0 .203 0 .306-.05v.967h-4.176c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.302zm-7.076.302v2.881c0 .101 0 .198.052.299H2.4c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.299h2.353c-.052.101-.052.198-.052.299zm6.447 2.881c.076.107.158.208.255.299H8.805c0-.101-.1-.306-.21-.467-.11-.161-.705-1.044-.705-1.044v1.212c0 .101 0 .198.052.299H5.778c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.299h2.164c-.052.101-.052.198-.052.299v1.259s.691-.88.85-1.085c.12-.154.268-.373.268-.473h2.257c-.155.101-.327.282-.468.45l-.826.984s1.039 1.548 1.177 1.746zm10.546-3.005a.178.178 0 0 0-.175-.178h-.21v.551h.083v-.195h.12l.11.195h.093l-.12-.212a.184.184 0 0 0 .099-.161zm-.189.101h-.114v-.191h.124c.055 0 .093.047.093.101 0 .053-.048.093-.103.09zm-.021-.457h-.031a.444.444 0 0 0-.437.457c0 .007 0 .017-.003.023a.466.466 0 0 0 .482.447.464.464 0 0 0 .458-.47v-.017a.454.454 0 0 0-.469-.44zm0 .823a.372.372 0 0 1-.375-.366v-.027a.357.357 0 0 1 .375-.339c.206 0 .375.165.375.366s-.168.366-.375.366zm-.877-.339c-.038-.101-.093-.198-.065-.299h-3.017c.014.101-.024.198-.062.299l-1.07 2.881a.852.852 0 0 1-.162.299h1.785c-.014-.101.024-.198.058-.299.034-.101.072-.198.072-.198l.021-.054h1.304l.021.05c.048.118.083.198.083.198.041.101.079.198.069.299h2.263a.837.837 0 0 1-.169-.299 690.277 690.277 0 0 0-1.131-2.877zm-2.167 1.893c.155-.42.289-.772.299-.806.028-.074.048-.151.062-.228.017.077.041.154.069.228l.316.806h-.746z" }) + ] + } + ); +}); + +exports.default = SiIkea; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.d.ts new file mode 100644 index 000000000..ef0284a16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0058A3"; +declare const SiIkea: IconType; +export { SiIkea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.mjs new file mode 100644 index 000000000..26472e263 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIkea.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0058A3"; +const SiIkea = React.forwardRef(function SiIkea2({ title = "IKEA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 7.2v9.6h24V7.2H0zm12.002 9.12C5.308 16.32.48 14.36.48 12s4.831-4.32 11.522-4.32c6.69 0 11.518 1.96 11.518 4.32s-4.824 4.32-11.518 4.32zm-.225-6.062h4.176v.964c-.103-.047-.203-.047-.306-.047h-1.758v.46h1.689v.732h-1.689v.457h1.758c.103 0 .203 0 .306-.05v.967h-4.176c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.302zm-7.076.302v2.881c0 .101 0 .198.052.299H2.4c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.299h2.353c-.052.101-.052.198-.052.299zm6.447 2.881c.076.107.158.208.255.299H8.805c0-.101-.1-.306-.21-.467-.11-.161-.705-1.044-.705-1.044v1.212c0 .101 0 .198.052.299H5.778c.052-.101.052-.198.052-.299V10.56c0-.101 0-.198-.052-.299h2.164c-.052.101-.052.198-.052.299v1.259s.691-.88.85-1.085c.12-.154.268-.373.268-.473h2.257c-.155.101-.327.282-.468.45l-.826.984s1.039 1.548 1.177 1.746zm10.546-3.005a.178.178 0 0 0-.175-.178h-.21v.551h.083v-.195h.12l.11.195h.093l-.12-.212a.184.184 0 0 0 .099-.161zm-.189.101h-.114v-.191h.124c.055 0 .093.047.093.101 0 .053-.048.093-.103.09zm-.021-.457h-.031a.444.444 0 0 0-.437.457c0 .007 0 .017-.003.023a.466.466 0 0 0 .482.447.464.464 0 0 0 .458-.47v-.017a.454.454 0 0 0-.469-.44zm0 .823a.372.372 0 0 1-.375-.366v-.027a.357.357 0 0 1 .375-.339c.206 0 .375.165.375.366s-.168.366-.375.366zm-.877-.339c-.038-.101-.093-.198-.065-.299h-3.017c.014.101-.024.198-.062.299l-1.07 2.881a.852.852 0 0 1-.162.299h1.785c-.014-.101.024-.198.058-.299.034-.101.072-.198.072-.198l.021-.054h1.304l.021.05c.048.118.083.198.083.198.041.101.079.198.069.299h2.263a.837.837 0 0 1-.169-.299 690.277 690.277 0 0 0-1.131-2.877zm-2.167 1.893c.155-.42.289-.772.299-.806.028-.074.048-.151.062-.228.017.077.041.154.069.228l.316.806h-.746z" }) + ] + } + ); +}); + +export { SiIkea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.cjs new file mode 100644 index 000000000..2ca2d4afd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#67B4E7"; +const SiIledefrancemobilites = React__namespace.forwardRef(function SiIledefrancemobilites2({ title = "Île-de-France Mobilités", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.54.001A5.461 5.447 0 0 1 24 5.447v13.107A5.461 5.447 0 0 1 18.54 24H5.459A5.461 5.447 0 0 1 0 18.553V5.446A5.461 5.447 0 0 1 5.46 0h13.081Zm-9.781 15.26c-1.365 1.816-2.503 3.405-3.925 5.334-.34.454-.057.624.398.34.512-.34.967-.736 1.309-1.247.3-.421.857-1.175 1.448-1.977l.595-.808c.33-.445.646-.876.914-1.243.796-1.135 2.047-1.023 2.9.17a398.137 397.144 0 0 0 3.242 4.481c.739 1.02 2.957.851 3.924.794.17 0 .228-.17.17-.283a310.878 310.103 0 0 0-4.663-6.467c-2.047-2.894-4.606-1.42-6.312.907ZM17.8 7.32c-2.9 1.474-3.809 1.304-6.255 1.701-2.445.34-4.266.908-6.313 3.064-.51.567-.74 1.021.058.624 2.9-1.475 3.81-1.305 6.254-1.702 2.446-.34 4.267-.907 6.314-3.064.512-.566.796-1.02-.057-.623Zm-5.06-4.142c-.966-.454-2.218.17-2.786 1.419-.569 1.19-.228 2.553.74 3.007.966.454 2.217-.17 2.786-1.42.568-1.246.228-2.609-.74-3.006Z" }) + ] + } + ); +}); + +exports.default = SiIledefrancemobilites; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.d.ts new file mode 100644 index 000000000..3d3d9423d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#67B4E7"; +declare const SiIledefrancemobilites: IconType; +export { SiIledefrancemobilites as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.mjs new file mode 100644 index 000000000..0c3873ef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIledefrancemobilites.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#67B4E7"; +const SiIledefrancemobilites = React.forwardRef(function SiIledefrancemobilites2({ title = "Île-de-France Mobilités", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.54.001A5.461 5.447 0 0 1 24 5.447v13.107A5.461 5.447 0 0 1 18.54 24H5.459A5.461 5.447 0 0 1 0 18.553V5.446A5.461 5.447 0 0 1 5.46 0h13.081Zm-9.781 15.26c-1.365 1.816-2.503 3.405-3.925 5.334-.34.454-.057.624.398.34.512-.34.967-.736 1.309-1.247.3-.421.857-1.175 1.448-1.977l.595-.808c.33-.445.646-.876.914-1.243.796-1.135 2.047-1.023 2.9.17a398.137 397.144 0 0 0 3.242 4.481c.739 1.02 2.957.851 3.924.794.17 0 .228-.17.17-.283a310.878 310.103 0 0 0-4.663-6.467c-2.047-2.894-4.606-1.42-6.312.907ZM17.8 7.32c-2.9 1.474-3.809 1.304-6.255 1.701-2.445.34-4.266.908-6.313 3.064-.51.567-.74 1.021.058.624 2.9-1.475 3.81-1.305 6.254-1.702 2.446-.34 4.267-.907 6.314-3.064.512-.566.796-1.02-.057-.623Zm-5.06-4.142c-.966-.454-2.218.17-2.786 1.419-.569 1.19-.228 2.553.74 3.007.966.454 2.217-.17 2.786-1.42.568-1.246.228-2.609-.74-3.006Z" }) + ] + } + ); +}); + +export { SiIledefrancemobilites as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.cjs new file mode 100644 index 000000000..75883d000 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E5322D"; +const SiIlovepdf = React__namespace.forwardRef(function SiIlovepdf2({ title = "iLovePDF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.374 2.094c-1.347.65-2.356 1.744-3.094 2.985C11.095 3.087 9.21 1.47 6.356 1.47 3.501 1.47 0 3.894 0 7.987c0 4.145 3.458 6.109 5.171 7.218 1.831 1.185 4.955 3.339 7.11 7.325 2.154-3.986 5.278-6.14 7.109-7.325 1.287-.834 3.56-2.151 4.61-4.514Zm-.104 8.832V3.138l7.788 7.788H15.27z" }) + ] + } + ); +}); + +exports.default = SiIlovepdf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.d.ts new file mode 100644 index 000000000..e69b3f4b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E5322D"; +declare const SiIlovepdf: IconType; +export { SiIlovepdf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.mjs new file mode 100644 index 000000000..374e71c60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIlovepdf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E5322D"; +const SiIlovepdf = React.forwardRef(function SiIlovepdf2({ title = "iLovePDF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.374 2.094c-1.347.65-2.356 1.744-3.094 2.985C11.095 3.087 9.21 1.47 6.356 1.47 3.501 1.47 0 3.894 0 7.987c0 4.145 3.458 6.109 5.171 7.218 1.831 1.185 4.955 3.339 7.11 7.325 2.154-3.986 5.278-6.14 7.109-7.325 1.287-.834 3.56-2.151 4.61-4.514Zm-.104 8.832V3.138l7.788 7.788H15.27z" }) + ] + } + ); +}); + +export { SiIlovepdf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.cjs new file mode 100644 index 000000000..6a88e0b43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#039CB2"; +const SiImagedotsc = React__namespace.forwardRef(function SiImagedotsc2({ title = "Image.sc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.6584 15.8117h.2543a.437.437 0 0 1 .4369.4369v3.7998a.437.437 0 0 1-.4369.4369h-3.7998a.437.437 0 0 1-.437-.4369v-.1225L6.839 21.5736v.6354c0 .6148.4984 1.1132 1.1132 1.1132h8.121c.6148 0 1.1132-.4984 1.1132-1.1132v-8.121c0-.6148-.4984-1.1132-1.1132-1.1132h-4.0561zm-.807-3.3369 2.0123-3.5311c.3044-.5341.9843-.7204 1.5184-.416l7.0557 4.021c.5341.3044.7204.9843.416 1.5184l-4.021 7.0557c-.3044.5342-.9843.7205-1.5184.416l-.6279-.3578v-3.2653l.1554.0886a.437.437 0 0 0 .5959-.1633l1.8814-3.3013a.437.437 0 0 0-.1633-.5959l-3.3013-1.8814a.437.437 0 0 0-.5959.1633l-.1444.2534zm4.9282-6.5488a.437.437 0 0 1 .5972.1584l1.9084 3.2858a.437.437 0 0 1-.1583.5972l-.1035.0601 2.8511 1.6248.5456-.3169c.5317-.3088.7123-.9901.4035-1.5217l-4.0788-7.0225c-.3088-.5316-.9901-.7123-1.5217-.4035l-7.0224 4.0788c-.5317.3088-.7123.9901-.4036 1.5217l2.037 3.5071 1.6291-2.8436-.1277-.22a.437.437 0 0 1 .1584-.5973m-4.1524.3539h-.2541a.437.437 0 0 1-.437-.4369V3.9515a.437.437 0 0 1 .437-.4369h3.7997a.437.437 0 0 1 .437.4369v.1225l2.8369-1.6478V1.791c0-.6148-.4984-1.1132-1.1132-1.1132h-8.121c-.6148 0-1.1132.4984-1.1132 1.1132v8.121c0 .6148.4984 1.1132 1.1132 1.1132h4.0561zm-2.4558 3.3328-.1444.2534a.437.437 0 0 1-.5959.1633l-3.3013-1.8814a.437.437 0 0 1-.1633-.5961L5.5623 6.159a.437.437 0 0 1 .5959-.1633l.1554.0886V2.819l-.6279-.3578c-.5342-.3044-1.214-.1182-1.5184.416L.1463 9.9329c-.3044.5342-.1182 1.214.416 1.5184l7.0557 4.021c.5342.3044 1.2139.1182 1.5184-.416l2.0123-3.531zm3.2802.9837 2.037 3.507c.3088.5317.1281 1.213-.4035 1.5218l-7.0225 4.0787c-.5316.3088-1.213.1282-1.5217-.4035L.1764 14.1864c-.3088-.5317-.1281-1.213.4035-1.5218l.5457-.3169 2.851 1.6248-.1035.0601a.437.437 0 0 0-.1584.5973l1.9084 3.2858a.437.437 0 0 0 .5972.1584l3.2858-1.9084a.437.437 0 0 0 .1584-.5973l-.1278-.22z" }) + ] + } + ); +}); + +exports.default = SiImagedotsc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.d.ts new file mode 100644 index 000000000..0cf741323 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#039CB2"; +declare const SiImagedotsc: IconType; +export { SiImagedotsc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.mjs new file mode 100644 index 000000000..2fbaa2b67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagedotsc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#039CB2"; +const SiImagedotsc = React.forwardRef(function SiImagedotsc2({ title = "Image.sc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.6584 15.8117h.2543a.437.437 0 0 1 .4369.4369v3.7998a.437.437 0 0 1-.4369.4369h-3.7998a.437.437 0 0 1-.437-.4369v-.1225L6.839 21.5736v.6354c0 .6148.4984 1.1132 1.1132 1.1132h8.121c.6148 0 1.1132-.4984 1.1132-1.1132v-8.121c0-.6148-.4984-1.1132-1.1132-1.1132h-4.0561zm-.807-3.3369 2.0123-3.5311c.3044-.5341.9843-.7204 1.5184-.416l7.0557 4.021c.5341.3044.7204.9843.416 1.5184l-4.021 7.0557c-.3044.5342-.9843.7205-1.5184.416l-.6279-.3578v-3.2653l.1554.0886a.437.437 0 0 0 .5959-.1633l1.8814-3.3013a.437.437 0 0 0-.1633-.5959l-3.3013-1.8814a.437.437 0 0 0-.5959.1633l-.1444.2534zm4.9282-6.5488a.437.437 0 0 1 .5972.1584l1.9084 3.2858a.437.437 0 0 1-.1583.5972l-.1035.0601 2.8511 1.6248.5456-.3169c.5317-.3088.7123-.9901.4035-1.5217l-4.0788-7.0225c-.3088-.5316-.9901-.7123-1.5217-.4035l-7.0224 4.0788c-.5317.3088-.7123.9901-.4036 1.5217l2.037 3.5071 1.6291-2.8436-.1277-.22a.437.437 0 0 1 .1584-.5973m-4.1524.3539h-.2541a.437.437 0 0 1-.437-.4369V3.9515a.437.437 0 0 1 .437-.4369h3.7997a.437.437 0 0 1 .437.4369v.1225l2.8369-1.6478V1.791c0-.6148-.4984-1.1132-1.1132-1.1132h-8.121c-.6148 0-1.1132.4984-1.1132 1.1132v8.121c0 .6148.4984 1.1132 1.1132 1.1132h4.0561zm-2.4558 3.3328-.1444.2534a.437.437 0 0 1-.5959.1633l-3.3013-1.8814a.437.437 0 0 1-.1633-.5961L5.5623 6.159a.437.437 0 0 1 .5959-.1633l.1554.0886V2.819l-.6279-.3578c-.5342-.3044-1.214-.1182-1.5184.416L.1463 9.9329c-.3044.5342-.1182 1.214.416 1.5184l7.0557 4.021c.5342.3044 1.2139.1182 1.5184-.416l2.0123-3.531zm3.2802.9837 2.037 3.507c.3088.5317.1281 1.213-.4035 1.5218l-7.0225 4.0787c-.5316.3088-1.213.1282-1.5217-.4035L.1764 14.1864c-.3088-.5317-.1281-1.213.4035-1.5218l.5457-.3169 2.851 1.6248-.1035.0601a.437.437 0 0 0-.1584.5973l1.9084 3.2858a.437.437 0 0 0 .5972.1584l3.2858-1.9084a.437.437 0 0 0 .1584-.5973l-.1278-.22z" }) + ] + } + ); +}); + +export { SiImagedotsc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.cjs new file mode 100644 index 000000000..3e394cd0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D8E0"; +const SiImagej = React__namespace.forwardRef(function SiImagej2({ title = "ImageJ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.1286 17.5084h-8.072a.187.187 0 0 1-.187-.187v-.4442a.187.187 0 0 1 .187-.187h8.0721a.187.187 0 0 1 .187.187v.4442a.1872.1872 0 0 1-.1871.187zm5.6234-12.195c-1.4233.0033-4.2184-.0098-5.6414-.0065a.4035.4035 0 0 0-.4035.4035v3.6061c0 .2229.1807.4035.4035.4035h1.7475v8.19a1.8275 1.8275 0 0 1-.9112 1.5761 1.8277 1.8277 0 0 1-1.8224 0 1.8276 1.8276 0 0 1-.9113-1.5784H6.941c0 2.1705 1.1677 4.193 3.0473 5.2782.9398.5428 1.9936.8141 3.0474.8141s2.1076-.2713 3.0474-.8139c1.8795-1.0837 3.0444-3.1089 3.0473-5.274V5.692a.3785.3785 0 0 0-.3784-.3786zM7.4546 15.2306h3.276a.6403.6403 0 0 0 .6403-.6403V.6403A.6403.6403 0 0 0 10.7306 0h-3.276a.6403.6403 0 0 0-.6403.6403v13.95c0 .3536.2867.6403.6403.6403z" }) + ] + } + ); +}); + +exports.default = SiImagej; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.d.ts new file mode 100644 index 000000000..207cb7843 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D8E0"; +declare const SiImagej: IconType; +export { SiImagej as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.mjs new file mode 100644 index 000000000..5ef2a5319 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagej.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D8E0"; +const SiImagej = React.forwardRef(function SiImagej2({ title = "ImageJ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.1286 17.5084h-8.072a.187.187 0 0 1-.187-.187v-.4442a.187.187 0 0 1 .187-.187h8.0721a.187.187 0 0 1 .187.187v.4442a.1872.1872 0 0 1-.1871.187zm5.6234-12.195c-1.4233.0033-4.2184-.0098-5.6414-.0065a.4035.4035 0 0 0-.4035.4035v3.6061c0 .2229.1807.4035.4035.4035h1.7475v8.19a1.8275 1.8275 0 0 1-.9112 1.5761 1.8277 1.8277 0 0 1-1.8224 0 1.8276 1.8276 0 0 1-.9113-1.5784H6.941c0 2.1705 1.1677 4.193 3.0473 5.2782.9398.5428 1.9936.8141 3.0474.8141s2.1076-.2713 3.0474-.8139c1.8795-1.0837 3.0444-3.1089 3.0473-5.274V5.692a.3785.3785 0 0 0-.3784-.3786zM7.4546 15.2306h3.276a.6403.6403 0 0 0 .6403-.6403V.6403A.6403.6403 0 0 0 10.7306 0h-3.276a.6403.6403 0 0 0-.6403.6403v13.95c0 .3536.2867.6403.6403.6403z" }) + ] + } + ); +}); + +export { SiImagej as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.cjs new file mode 100644 index 000000000..a6f6c4485 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#60EA78"; +const SiImagetoolbox = React__namespace.forwardRef(function SiImagetoolbox2({ title = "Image Toolbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.995 7.152v1.834q0 .471.32.791t.792.32h1.834q.223 0 .43-.083.21-.085.376-.25l5.78-5.78q.25-.249.362-.57.111-.318.111-.625 0-.305-.125-.61a2 2 0 0 0-.347-.557L22.499.594a1.67 1.67 0 0 0-1.195-.5q-.305 0-.611.111a1.5 1.5 0 0 0-.556.362L14.33 6.346a1.1 1.1 0 0 0-.25.375 1.2 1.2 0 0 0-.084.43ZM16.72 8.43h-1.056V7.374l3.39-3.362 1.029 1.028zm2.995 4.627c0-1.376-.001-2.492-.03-3.424l1.873-1.871c.143 1.334.143 3.035.143 5.295 0 4.57 0 6.855-1.184 8.444a6 6 0 0 1-1.221 1.22c-1.59 1.185-3.875 1.185-8.445 1.185s-6.856 0-8.445-1.184A6 6 0 0 1 1.184 21.5C0 19.91 0 17.627 0 13.057s0-6.854 1.184-8.443a6 6 0 0 1 1.222-1.221C3.995 2.209 6.28 2.209 10.85 2.209c2.476 0 4.282 0 5.669.188l-1.842 1.841c-1.01-.042-2.247-.043-3.827-.043-2.33 0-3.916.002-5.123.136-1.168.129-1.74.36-2.136.654a4 4 0 0 0-.815.816c-.295.395-.526.967-.655 2.135-.133 1.207-.136 2.791-.136 5.121s.003 3.915.136 5.122q.044.392.102.702l.02-.014c1.797-1.31 3.657-2.667 5.25-1.749l1.36.837c1.33.824 2.86-.58 4.52-2.105 1.12-1.028 2.299-2.11 3.517-2.602 1.112-.45 1.858-.063 2.823.74v-.93ZM5.168 9.527c0 1.302 1.033 2.335 2.335 2.335S9.84 10.784 9.84 9.527c0-1.302-1.033-2.335-2.336-2.335S5.168 8.225 5.168 9.527" }) + ] + } + ); +}); + +exports.default = SiImagetoolbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.d.ts new file mode 100644 index 000000000..9c35e2990 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#60EA78"; +declare const SiImagetoolbox: IconType; +export { SiImagetoolbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.mjs new file mode 100644 index 000000000..d41fe32cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImagetoolbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#60EA78"; +const SiImagetoolbox = React.forwardRef(function SiImagetoolbox2({ title = "Image Toolbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.995 7.152v1.834q0 .471.32.791t.792.32h1.834q.223 0 .43-.083.21-.085.376-.25l5.78-5.78q.25-.249.362-.57.111-.318.111-.625 0-.305-.125-.61a2 2 0 0 0-.347-.557L22.499.594a1.67 1.67 0 0 0-1.195-.5q-.305 0-.611.111a1.5 1.5 0 0 0-.556.362L14.33 6.346a1.1 1.1 0 0 0-.25.375 1.2 1.2 0 0 0-.084.43ZM16.72 8.43h-1.056V7.374l3.39-3.362 1.029 1.028zm2.995 4.627c0-1.376-.001-2.492-.03-3.424l1.873-1.871c.143 1.334.143 3.035.143 5.295 0 4.57 0 6.855-1.184 8.444a6 6 0 0 1-1.221 1.22c-1.59 1.185-3.875 1.185-8.445 1.185s-6.856 0-8.445-1.184A6 6 0 0 1 1.184 21.5C0 19.91 0 17.627 0 13.057s0-6.854 1.184-8.443a6 6 0 0 1 1.222-1.221C3.995 2.209 6.28 2.209 10.85 2.209c2.476 0 4.282 0 5.669.188l-1.842 1.841c-1.01-.042-2.247-.043-3.827-.043-2.33 0-3.916.002-5.123.136-1.168.129-1.74.36-2.136.654a4 4 0 0 0-.815.816c-.295.395-.526.967-.655 2.135-.133 1.207-.136 2.791-.136 5.121s.003 3.915.136 5.122q.044.392.102.702l.02-.014c1.797-1.31 3.657-2.667 5.25-1.749l1.36.837c1.33.824 2.86-.58 4.52-2.105 1.12-1.028 2.299-2.11 3.517-2.602 1.112-.45 1.858-.063 2.823.74v-.93ZM5.168 9.527c0 1.302 1.033 2.335 2.335 2.335S9.84 10.784 9.84 9.527c0-1.302-1.033-2.335-2.336-2.335S5.168 8.225 5.168 9.527" }) + ] + } + ); +}); + +export { SiImagetoolbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.cjs new file mode 100644 index 000000000..8c8d50903 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5C518"; +const SiImdb = React__namespace.forwardRef(function SiImdb2({ title = "IMDb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.3781 0H1.6218C.7411.0583.0587.7437.0018 1.5953l-.001 20.783c.0585.8761.7125 1.543 1.5559 1.6191A.337.337 0 0 0 1.6016 24h20.7971a.4579.4579 0 0 0 .0437-.002c.8727-.0768 1.5568-.8271 1.5568-1.7085V1.7098c0-.8914-.696-1.6416-1.584-1.7078A.3294.3294 0 0 0 22.3781 0zm0 .496a1.2144 1.2144 0 0 1 1.1252 1.2139v20.5797c0 .6377-.4875 1.1602-1.1045 1.2145H1.6016c-.5967-.0543-1.0645-.5297-1.1053-1.1258V1.6284C.5371 1.0185 1.0184.5364 1.6217.496h20.7564zM4.7954 8.2603v7.3636H2.8899V8.2603h1.9055zm6.5367 0v7.3636H9.6707v-4.9704l-.6711 4.9704H7.813l-.6986-4.8618-.0066 4.8618h-1.668V8.2603h2.468c.0748.4476.1492.9694.2307 1.5734l.2712 1.8713.4407-3.4447h2.4817zm2.9772 1.3289c.0742.0404.122.108.1417.2034.0279.0953.0345.3118.0345.6442v2.8548c0 .4881-.0345.7867-.0955.8954-.0609.1152-.2304.1695-.5018.1695V9.5211c.204 0 .3457.0205.4211.0681zm-.0211 6.0347c.4543 0 .8006-.0265 1.0245-.0742.2304-.0477.4204-.1357.5694-.2648.1556-.1218.2642-.298.3251-.5219.0611-.2238.1021-.6648.1021-1.3224v-2.5832c0-.6986-.0271-1.1668-.0742-1.4039-.041-.237-.1431-.4543-.3126-.6437-.1695-.1973-.4198-.3324-.7456-.421-.3191-.0808-.8542-.1285-1.7694-.1285h-1.4244v7.3636h2.3051zm5.14-1.7827c0 .3523-.0199.5762-.0544.6708-.033.0947-.1894.1424-.3046.1424-.1086 0-.19-.0477-.2238-.1351-.041-.0887-.0609-.2986-.0609-.6238v-1.9469c0-.3324.0199-.5423.0543-.6237.0338-.0808.1086-.122.2171-.122.1153 0 .2709.0412.3114.1425.041.0947.0609.2986.0609.6032v1.8926zm-2.4747-5.5809v7.3636h1.7157l.1152-.4675c.1556.1894.3251.3324.5152.4271.1828.0881.4608.1357.678.1357.3047 0 .5629-.0748.7802-.237.2165-.1562.3589-.3462.4198-.5628.0543-.2173.0887-.543.0887-.9841v-2.0675c0-.4409-.0139-.7324-.0344-.8681-.0199-.1357-.0742-.2781-.1695-.4204-.1021-.1425-.2437-.251-.4272-.3325-.1834-.0742-.3999-.1152-.6576-.1152-.2172 0-.4952.0477-.6846.1285-.1835.0887-.353.2238-.5086.4007V8.2603h-1.8309z" }) + ] + } + ); +}); + +exports.default = SiImdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.d.ts new file mode 100644 index 000000000..fa413fc34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5C518"; +declare const SiImdb: IconType; +export { SiImdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.mjs new file mode 100644 index 000000000..03687ab2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5C518"; +const SiImdb = React.forwardRef(function SiImdb2({ title = "IMDb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.3781 0H1.6218C.7411.0583.0587.7437.0018 1.5953l-.001 20.783c.0585.8761.7125 1.543 1.5559 1.6191A.337.337 0 0 0 1.6016 24h20.7971a.4579.4579 0 0 0 .0437-.002c.8727-.0768 1.5568-.8271 1.5568-1.7085V1.7098c0-.8914-.696-1.6416-1.584-1.7078A.3294.3294 0 0 0 22.3781 0zm0 .496a1.2144 1.2144 0 0 1 1.1252 1.2139v20.5797c0 .6377-.4875 1.1602-1.1045 1.2145H1.6016c-.5967-.0543-1.0645-.5297-1.1053-1.1258V1.6284C.5371 1.0185 1.0184.5364 1.6217.496h20.7564zM4.7954 8.2603v7.3636H2.8899V8.2603h1.9055zm6.5367 0v7.3636H9.6707v-4.9704l-.6711 4.9704H7.813l-.6986-4.8618-.0066 4.8618h-1.668V8.2603h2.468c.0748.4476.1492.9694.2307 1.5734l.2712 1.8713.4407-3.4447h2.4817zm2.9772 1.3289c.0742.0404.122.108.1417.2034.0279.0953.0345.3118.0345.6442v2.8548c0 .4881-.0345.7867-.0955.8954-.0609.1152-.2304.1695-.5018.1695V9.5211c.204 0 .3457.0205.4211.0681zm-.0211 6.0347c.4543 0 .8006-.0265 1.0245-.0742.2304-.0477.4204-.1357.5694-.2648.1556-.1218.2642-.298.3251-.5219.0611-.2238.1021-.6648.1021-1.3224v-2.5832c0-.6986-.0271-1.1668-.0742-1.4039-.041-.237-.1431-.4543-.3126-.6437-.1695-.1973-.4198-.3324-.7456-.421-.3191-.0808-.8542-.1285-1.7694-.1285h-1.4244v7.3636h2.3051zm5.14-1.7827c0 .3523-.0199.5762-.0544.6708-.033.0947-.1894.1424-.3046.1424-.1086 0-.19-.0477-.2238-.1351-.041-.0887-.0609-.2986-.0609-.6238v-1.9469c0-.3324.0199-.5423.0543-.6237.0338-.0808.1086-.122.2171-.122.1153 0 .2709.0412.3114.1425.041.0947.0609.2986.0609.6032v1.8926zm-2.4747-5.5809v7.3636h1.7157l.1152-.4675c.1556.1894.3251.3324.5152.4271.1828.0881.4608.1357.678.1357.3047 0 .5629-.0748.7802-.237.2165-.1562.3589-.3462.4198-.5628.0543-.2173.0887-.543.0887-.9841v-2.0675c0-.4409-.0139-.7324-.0344-.8681-.0199-.1357-.0742-.2781-.1695-.4204-.1021-.1425-.2437-.251-.4272-.3325-.1834-.0742-.3999-.1152-.6576-.1152-.2172 0-.4952.0477-.6846.1285-.1835.0887-.353.2238-.5086.4007V8.2603h-1.8309z" }) + ] + } + ); +}); + +export { SiImdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.cjs new file mode 100644 index 000000000..04eb5c2be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34DA50"; +const SiImessage = React__namespace.forwardRef(function SiImessage2({ title = "iMessage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.285 0A5.273 5.273 0 0 0 0 5.285v13.43A5.273 5.273 0 0 0 5.285 24h13.43A5.273 5.273 0 0 0 24 18.715V5.285A5.273 5.273 0 0 0 18.715 0ZM12 4.154a8.809 7.337 0 0 1 8.809 7.338A8.809 7.337 0 0 1 12 18.828a8.809 7.337 0 0 1-2.492-.303A8.656 7.337 0 0 1 5.93 19.93a9.929 7.337 0 0 0 1.54-2.155 8.809 7.337 0 0 1-4.279-6.283A8.809 7.337 0 0 1 12 4.154" }) + ] + } + ); +}); + +exports.default = SiImessage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.d.ts new file mode 100644 index 000000000..0890df96d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34DA50"; +declare const SiImessage: IconType; +export { SiImessage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.mjs new file mode 100644 index 000000000..90d491651 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImessage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34DA50"; +const SiImessage = React.forwardRef(function SiImessage2({ title = "iMessage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.285 0A5.273 5.273 0 0 0 0 5.285v13.43A5.273 5.273 0 0 0 5.285 24h13.43A5.273 5.273 0 0 0 24 18.715V5.285A5.273 5.273 0 0 0 18.715 0ZM12 4.154a8.809 7.337 0 0 1 8.809 7.338A8.809 7.337 0 0 1 12 18.828a8.809 7.337 0 0 1-2.492-.303A8.656 7.337 0 0 1 5.93 19.93a9.929 7.337 0 0 0 1.54-2.155 8.809 7.337 0 0 1-4.279-6.283A8.809 7.337 0 0 1 12 4.154" }) + ] + } + ); +}); + +export { SiImessage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.cjs new file mode 100644 index 000000000..005504bb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BB76E"; +const SiImgur = React__namespace.forwardRef(function SiImgur2({ title = "Imgur", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.147 3.043c-.002-.113-.069-.182-.189-.191a14.117 14.117 0 00-.51-.045l-.162-.01a21.998 21.998 0 00-1.085-.046l-.217-.005c-.172-.003-.35-.004-.532-.004l-.189-.001c-.295 0-.601.003-.919.01l-.106.003a55.86 55.86 0 00-.87.026l-.237.009c-.335.013-.676.029-1.027.049l-.012.001c-.357.021-.724.045-1.095.071l-.275.021c-.304.023-.609.048-.92.076l-.25.021c-.38.035-.766.074-1.156.115-.08.009-.161.019-.242.027-.319.035-.641.073-.965.113l-.33.042c-.403.051-.806.105-1.212.164a.547.547 0 00-.154.045.303.303 0 00-.097.074l-.003.002c-.045.055-.047.12.004.179.003.004.002.008.005.012l3.488 3.456-6.629 6.596c-.069.067-.068.165 0 .251.856 1.093 1.44 1.793 2.143 2.492.699.703 1.398 1.286 2.493 2.143a.216.216 0 00.132.051.167.167 0 00.119-.051l6.597-6.629 3.455 3.488a.143.143 0 00.101.047c.096 0 .187-.118.212-.292.746-5.141.882-10.051.634-12.31z M15.87 24l6.356-6.357.026-.026.156-.155-.006-.006a3.144 3.144 0 00.822-1.711c.804-5.53.903-10.591.654-12.952a2.904 2.904 0 00-.834-1.812 2.96 2.96 0 00-1.816-.855C20.458.042 19.476 0 18.318 0c-2.999 0-6.667.284-10.063.777a3.143 3.143 0 00-1.887.991L0 8.137V24H15.87zm1.528-6.707c-.151 0-.563.405-.563.613a.1.1 0 01-.099.1.1.1 0 01-.099-.1c0-.208-.411-.613-.563-.613a.1.1 0 01-.099-.1c0-.054.044-.098.099-.098.152 0 .563-.404.563-.614 0-.055.044-.098.099-.098.054 0 .099.043.099.098 0 .21.412.614.563.614a.1.1 0 010 .198zM5.4 7.045c.197 0 .735-.528.735-.801a.13.13 0 01.128-.129c.071 0 .128.058.128.129 0 .272.538.801.735.801.071 0 .128.057.128.128a.128.128 0 01-.128.128c-.197 0-.735.528-.735.801a.128.128 0 01-.128.128.128.128 0 01-.128-.128c0-.273-.538-.801-.735-.801a.128.128 0 010-.256zm-3.99 3.26c0-.065.057-.098.119-.118.69-.228 1.269-.8 1.403-1.554.011-.064.053-.118.118-.118.066 0 .107.054.119.118.133.754.711 1.326 1.401 1.554.062.02.118.053.118.118s-.056.098-.118.119c-.69.227-1.269.799-1.403 1.553-.011.064-.053.119-.119.119-.065 0-.106-.054-.118-.119-.134-.754-.713-1.326-1.403-1.553-.061-.022-.117-.054-.117-.119zm1.565 9.307c-.113 0-.42.302-.42.459 0 .04-.034.073-.074.073a.074.074 0 01-.074-.073c0-.157-.307-.459-.42-.459a.074.074 0 01-.074-.073c0-.039.034-.073.074-.073.113 0 .42-.302.42-.457 0-.042.033-.073.074-.073.04 0 .074.031.074.073 0 .155.307.457.42.457.04 0 .073.034.073.073a.073.073 0 01-.073.073zm.568-3.047c-.14 0-.521.375-.521.568a.092.092 0 11-.183 0c0-.193-.381-.568-.521-.568a.09.09 0 01-.091-.09c0-.051.041-.092.091-.092.14 0 .521-.375.521-.568a.09.09 0 01.092-.09.09.09 0 01.091.09c0 .193.381.568.521.568a.091.091 0 010 .182zm3.334 4.382c-.203 0-.758.546-.758.827 0 .073-.06.133-.132.133a.133.133 0 01-.133-.133c0-.281-.555-.827-.758-.827a.134.134 0 01-.133-.133c0-.073.059-.132.133-.132.204 0 .758-.545.758-.828 0-.071.06-.132.133-.132.073 0 .132.061.132.132 0 .283.555.828.758.828.074 0 .133.059.133.132a.133.133 0 01-.133.133zm1.922-.806c-1.086-.851-1.869-1.498-2.653-2.287-.789-.784-1.436-1.566-2.287-2.654-.626-.8-.566-1.897.144-2.607l.001-.001.002-.001L9.364 7.26 7.149 5.066l-.003-.003-.002-.003c-.52-.52-.7-1.27-.472-1.958.148-.447.464-.802.867-1.049a1.983 1.983 0 01.371-.19 2.1 2.1 0 01.468-.131c.005 0 .009-.003.014-.004C11.746 1.24 15.363.96 18.317.96h.002c1.125 0 2.072.041 2.818.121.469.046.903.249 1.228.576.328.331.525.767.562 1.237.243 2.311.144 7.253-.651 12.714-.001.01-.006.016-.007.025a2.258 2.258 0 01-.18.586c-.006.014-.01.028-.018.042-.333.699-1.001 1.163-1.771 1.163-.51 0-.992-.2-1.358-.567l-.003-.002-.004-.004-2.192-2.215-5.333 5.359-.001.002h-.001a1.94 1.94 0 01-1.378.573c-.44 0-.877-.151-1.231-.429zm2.576 2.09c-.139 0-.518.373-.518.566a.09.09 0 01-.091.09.09.09 0 01-.09-.09c0-.193-.379-.566-.519-.566a.09.09 0 110-.18c.139 0 .519-.373.519-.566a.09.09 0 01.09-.09c.05 0 .091.041.091.09 0 .193.379.566.518.566.05 0 .091.039.091.09s-.04.09-.091.09zm2.115-2.437c.248 0 .922-.662.922-1.003 0-.088.072-.161.161-.161.088 0 .161.073.161.161 0 .341.674 1.003.921 1.003.089 0 .161.073.161.161a.16.16 0 01-.161.161c-.247 0-.921.662-.921 1.005a.162.162 0 01-.161.162.162.162 0 01-.161-.162c0-.343-.674-1.005-.922-1.005a.161.161 0 010-.322z" }) + ] + } + ); +}); + +exports.default = SiImgur; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.d.ts new file mode 100644 index 000000000..c2c4825fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BB76E"; +declare const SiImgur: IconType; +export { SiImgur as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.mjs new file mode 100644 index 000000000..061f45a87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImgur.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BB76E"; +const SiImgur = React.forwardRef(function SiImgur2({ title = "Imgur", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.147 3.043c-.002-.113-.069-.182-.189-.191a14.117 14.117 0 00-.51-.045l-.162-.01a21.998 21.998 0 00-1.085-.046l-.217-.005c-.172-.003-.35-.004-.532-.004l-.189-.001c-.295 0-.601.003-.919.01l-.106.003a55.86 55.86 0 00-.87.026l-.237.009c-.335.013-.676.029-1.027.049l-.012.001c-.357.021-.724.045-1.095.071l-.275.021c-.304.023-.609.048-.92.076l-.25.021c-.38.035-.766.074-1.156.115-.08.009-.161.019-.242.027-.319.035-.641.073-.965.113l-.33.042c-.403.051-.806.105-1.212.164a.547.547 0 00-.154.045.303.303 0 00-.097.074l-.003.002c-.045.055-.047.12.004.179.003.004.002.008.005.012l3.488 3.456-6.629 6.596c-.069.067-.068.165 0 .251.856 1.093 1.44 1.793 2.143 2.492.699.703 1.398 1.286 2.493 2.143a.216.216 0 00.132.051.167.167 0 00.119-.051l6.597-6.629 3.455 3.488a.143.143 0 00.101.047c.096 0 .187-.118.212-.292.746-5.141.882-10.051.634-12.31z M15.87 24l6.356-6.357.026-.026.156-.155-.006-.006a3.144 3.144 0 00.822-1.711c.804-5.53.903-10.591.654-12.952a2.904 2.904 0 00-.834-1.812 2.96 2.96 0 00-1.816-.855C20.458.042 19.476 0 18.318 0c-2.999 0-6.667.284-10.063.777a3.143 3.143 0 00-1.887.991L0 8.137V24H15.87zm1.528-6.707c-.151 0-.563.405-.563.613a.1.1 0 01-.099.1.1.1 0 01-.099-.1c0-.208-.411-.613-.563-.613a.1.1 0 01-.099-.1c0-.054.044-.098.099-.098.152 0 .563-.404.563-.614 0-.055.044-.098.099-.098.054 0 .099.043.099.098 0 .21.412.614.563.614a.1.1 0 010 .198zM5.4 7.045c.197 0 .735-.528.735-.801a.13.13 0 01.128-.129c.071 0 .128.058.128.129 0 .272.538.801.735.801.071 0 .128.057.128.128a.128.128 0 01-.128.128c-.197 0-.735.528-.735.801a.128.128 0 01-.128.128.128.128 0 01-.128-.128c0-.273-.538-.801-.735-.801a.128.128 0 010-.256zm-3.99 3.26c0-.065.057-.098.119-.118.69-.228 1.269-.8 1.403-1.554.011-.064.053-.118.118-.118.066 0 .107.054.119.118.133.754.711 1.326 1.401 1.554.062.02.118.053.118.118s-.056.098-.118.119c-.69.227-1.269.799-1.403 1.553-.011.064-.053.119-.119.119-.065 0-.106-.054-.118-.119-.134-.754-.713-1.326-1.403-1.553-.061-.022-.117-.054-.117-.119zm1.565 9.307c-.113 0-.42.302-.42.459 0 .04-.034.073-.074.073a.074.074 0 01-.074-.073c0-.157-.307-.459-.42-.459a.074.074 0 01-.074-.073c0-.039.034-.073.074-.073.113 0 .42-.302.42-.457 0-.042.033-.073.074-.073.04 0 .074.031.074.073 0 .155.307.457.42.457.04 0 .073.034.073.073a.073.073 0 01-.073.073zm.568-3.047c-.14 0-.521.375-.521.568a.092.092 0 11-.183 0c0-.193-.381-.568-.521-.568a.09.09 0 01-.091-.09c0-.051.041-.092.091-.092.14 0 .521-.375.521-.568a.09.09 0 01.092-.09.09.09 0 01.091.09c0 .193.381.568.521.568a.091.091 0 010 .182zm3.334 4.382c-.203 0-.758.546-.758.827 0 .073-.06.133-.132.133a.133.133 0 01-.133-.133c0-.281-.555-.827-.758-.827a.134.134 0 01-.133-.133c0-.073.059-.132.133-.132.204 0 .758-.545.758-.828 0-.071.06-.132.133-.132.073 0 .132.061.132.132 0 .283.555.828.758.828.074 0 .133.059.133.132a.133.133 0 01-.133.133zm1.922-.806c-1.086-.851-1.869-1.498-2.653-2.287-.789-.784-1.436-1.566-2.287-2.654-.626-.8-.566-1.897.144-2.607l.001-.001.002-.001L9.364 7.26 7.149 5.066l-.003-.003-.002-.003c-.52-.52-.7-1.27-.472-1.958.148-.447.464-.802.867-1.049a1.983 1.983 0 01.371-.19 2.1 2.1 0 01.468-.131c.005 0 .009-.003.014-.004C11.746 1.24 15.363.96 18.317.96h.002c1.125 0 2.072.041 2.818.121.469.046.903.249 1.228.576.328.331.525.767.562 1.237.243 2.311.144 7.253-.651 12.714-.001.01-.006.016-.007.025a2.258 2.258 0 01-.18.586c-.006.014-.01.028-.018.042-.333.699-1.001 1.163-1.771 1.163-.51 0-.992-.2-1.358-.567l-.003-.002-.004-.004-2.192-2.215-5.333 5.359-.001.002h-.001a1.94 1.94 0 01-1.378.573c-.44 0-.877-.151-1.231-.429zm2.576 2.09c-.139 0-.518.373-.518.566a.09.09 0 01-.091.09.09.09 0 01-.09-.09c0-.193-.379-.566-.519-.566a.09.09 0 110-.18c.139 0 .519-.373.519-.566a.09.09 0 01.09-.09c.05 0 .091.041.091.09 0 .193.379.566.518.566.05 0 .091.039.091.09s-.04.09-.091.09zm2.115-2.437c.248 0 .922-.662.922-1.003 0-.088.072-.161.161-.161.088 0 .161.073.161.161 0 .341.674 1.003.921 1.003.089 0 .161.073.161.161a.16.16 0 01-.161.161c-.247 0-.921.662-.921 1.005a.162.162 0 01-.161.162.162.162 0 01-.161-.162c0-.343-.674-1.005-.922-1.005a.161.161 0 010-.322z" }) + ] + } + ); +}); + +export { SiImgur as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.cjs new file mode 100644 index 000000000..3bc6a3b21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00E7C3"; +const SiImmer = React__namespace.forwardRef(function SiImmer2({ title = "Immer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.2706 14.3327C1.0174 14.3327 0 13.3149 0 12.0612s1.0174-2.2714 2.2706-2.2714 2.2706 1.0178 2.2706 2.2714-1.0175 2.2715-2.2706 2.2715zm19.4594.8587a3.1215 3.1215 0 0 1-1.8217-.5845c-.7428.8369-1.0466 1.047-2.0669 1.047-1.5417 0-3.1201-2.3208-4.5579-4.3146 1.4966-2.3358 2.8703-3.8786 4.3307-3.8786 1.1153 0 2.1849.4937 2.7865 1.7668a3.1155 3.1155 0 0 1 1.3291-.2958 3.1051 3.1051 0 0 1 1.1697.2262c-.88-2.5989-2.9964-3.9134-5.1127-3.9134-2.3344 0-4.0593 2.16-5.5753 4.6292-1.7833-2.4318-3.4838-4.6292-5.9239-4.6292-2.0769 0-4.154 1.2863-5.0431 3.8295a3.1179 3.1179 0 0 1 .9355-.1423 3.113 3.113 0 0 1 1.7177.5139c.546-.7723 1.2454-1.2347 2.0074-1.2095 1.5368.0516 2.9282 1.8499 4.6866 4.3248-1.2802 1.9587-2.9227 3.8683-4.3102 3.8683-1.0566 0-2.0739-.4443-2.6895-1.5742a3.1139 3.1139 0 0 1-1.412.3362c-.371.0066-.7336-.0773-1.085-.1857.9316 2.417 2.9722 3.6396 5.0129 3.6396 2.326 0 3.9314-2.0555 5.5251-4.6143 1.7485 2.4637 3.4992 4.7244 5.9921 4.7244 2.0245 0 4.2973-1.3328 5.2229-3.7499-.3583.0875-.7236.1989-1.118.1861zm-.0006-5.4016c-1.2531 0-2.2705 1.0178-2.2705 2.2714s1.0174 2.2715 2.2705 2.2715c1.2532 0 2.2706-1.0178 2.2706-2.2715s-1.0174-2.2714-2.2706-2.2714z" }) + ] + } + ); +}); + +exports.default = SiImmer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.d.ts new file mode 100644 index 000000000..ca59ea498 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00E7C3"; +declare const SiImmer: IconType; +export { SiImmer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.mjs new file mode 100644 index 000000000..84117c214 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00E7C3"; +const SiImmer = React.forwardRef(function SiImmer2({ title = "Immer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.2706 14.3327C1.0174 14.3327 0 13.3149 0 12.0612s1.0174-2.2714 2.2706-2.2714 2.2706 1.0178 2.2706 2.2714-1.0175 2.2715-2.2706 2.2715zm19.4594.8587a3.1215 3.1215 0 0 1-1.8217-.5845c-.7428.8369-1.0466 1.047-2.0669 1.047-1.5417 0-3.1201-2.3208-4.5579-4.3146 1.4966-2.3358 2.8703-3.8786 4.3307-3.8786 1.1153 0 2.1849.4937 2.7865 1.7668a3.1155 3.1155 0 0 1 1.3291-.2958 3.1051 3.1051 0 0 1 1.1697.2262c-.88-2.5989-2.9964-3.9134-5.1127-3.9134-2.3344 0-4.0593 2.16-5.5753 4.6292-1.7833-2.4318-3.4838-4.6292-5.9239-4.6292-2.0769 0-4.154 1.2863-5.0431 3.8295a3.1179 3.1179 0 0 1 .9355-.1423 3.113 3.113 0 0 1 1.7177.5139c.546-.7723 1.2454-1.2347 2.0074-1.2095 1.5368.0516 2.9282 1.8499 4.6866 4.3248-1.2802 1.9587-2.9227 3.8683-4.3102 3.8683-1.0566 0-2.0739-.4443-2.6895-1.5742a3.1139 3.1139 0 0 1-1.412.3362c-.371.0066-.7336-.0773-1.085-.1857.9316 2.417 2.9722 3.6396 5.0129 3.6396 2.326 0 3.9314-2.0555 5.5251-4.6143 1.7485 2.4637 3.4992 4.7244 5.9921 4.7244 2.0245 0 4.2973-1.3328 5.2229-3.7499-.3583.0875-.7236.1989-1.118.1861zm-.0006-5.4016c-1.2531 0-2.2705 1.0178-2.2705 2.2714s1.0174 2.2715 2.2705 2.2715c1.2532 0 2.2706-1.0178 2.2706-2.2715s-1.0174-2.2714-2.2706-2.2714z" }) + ] + } + ); +}); + +export { SiImmer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.cjs new file mode 100644 index 000000000..c3b40648c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA4C89"; +const SiImmersivetranslate = React__namespace.forwardRef(function SiImmersivetranslate2({ title = "Immersive Translate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.607 4.008h-1.75v1.749H3.539v5.85h3.318v2.534h1.75v-2.533h3.317V5.757H8.607Zm-1.75 3.498H5.289V9.86h1.568Zm1.75 2.353V7.506h1.568V9.86Zm12.065 10.133-3.68-9.229h-1.75l-3.68 9.23h1.87l.954-2.474h3.462l.954 2.473zm-3.499-4.222-1.056-2.738-1.056 2.738zm-9.471 4.222h2.594v-1.749H7.702a1.57 1.57 0 0 1-1.569-1.568v-1.75h-1.75v1.75a3.32 3.32 0 0 0 3.319 3.317m5.851-15.14v1.75h2.594c.867 0 1.569.702 1.569 1.568v1.81h1.75V8.17a3.32 3.32 0 0 0-3.319-3.318zM0 3.75A3.75 3.75 0 0 1 3.75 0h16.5A3.75 3.75 0 0 1 24 3.75v16.5A3.75 3.75 0 0 1 20.25 24H3.75A3.75 3.75 0 0 1 0 20.25Z" }) + ] + } + ); +}); + +exports.default = SiImmersivetranslate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.d.ts new file mode 100644 index 000000000..c649de604 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA4C89"; +declare const SiImmersivetranslate: IconType; +export { SiImmersivetranslate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.mjs new file mode 100644 index 000000000..041a49044 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmersivetranslate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA4C89"; +const SiImmersivetranslate = React.forwardRef(function SiImmersivetranslate2({ title = "Immersive Translate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.607 4.008h-1.75v1.749H3.539v5.85h3.318v2.534h1.75v-2.533h3.317V5.757H8.607Zm-1.75 3.498H5.289V9.86h1.568Zm1.75 2.353V7.506h1.568V9.86Zm12.065 10.133-3.68-9.229h-1.75l-3.68 9.23h1.87l.954-2.474h3.462l.954 2.473zm-3.499-4.222-1.056-2.738-1.056 2.738zm-9.471 4.222h2.594v-1.749H7.702a1.57 1.57 0 0 1-1.569-1.568v-1.75h-1.75v1.75a3.32 3.32 0 0 0 3.319 3.317m5.851-15.14v1.75h2.594c.867 0 1.569.702 1.569 1.568v1.81h1.75V8.17a3.32 3.32 0 0 0-3.319-3.318zM0 3.75A3.75 3.75 0 0 1 3.75 0h16.5A3.75 3.75 0 0 1 24 3.75v16.5A3.75 3.75 0 0 1 20.25 24H3.75A3.75 3.75 0 0 1 0 20.25Z" }) + ] + } + ); +}); + +export { SiImmersivetranslate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.cjs new file mode 100644 index 000000000..add7e3c0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4250AF"; +const SiImmich = React__namespace.forwardRef(function SiImmich2({ title = "Immich", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9863.2695c-2.409 0-5.207 1.091-5.207 3.8946v.1523c1.3428.597 2.9347 1.6629 4.4121 2.9707 1.5713 1.3912 2.8374 2.8821 3.6524 4.2871 1.3997-2.5034 2.3358-5.4784 2.3476-7.373V4.164c0-2.8035-2.796-3.8946-5.205-3.8946m7.5117 4.4903c-.3778-.0081-.7747.0502-1.1914.1855-.0366.0118-.086.0278-.1445.0469-.1525 1.4611-.6756 3.304-1.4629 5.1133-.8373 1.9243-1.8627 3.5898-2.9472 4.7988 2.8132.558 5.9307.5273 7.7363-.0469.0126-.004.0246-.0065.0351-.0097 2.6665-.8666 2.84-3.8636 2.0957-6.1543-.6279-1.9332-2.081-3.89-4.121-3.9336m-14.996.039C2.4618 4.8424 1.0088 6.7973.3809 8.7305c-.7442 2.291-.5708 5.288 2.0957 6.1543l.1445.0468c.982-1.0926 2.4873-2.2761 4.1875-3.2773 1.8088-1.0646 3.619-1.808 5.207-2.1484-1.9483-2.1049-4.4884-3.9132-6.287-4.5098l-.0352-.0117c-.4167-.1354-.8136-.1936-1.1914-.1856m4.6718 6.7578c-2.6038 1.2025-5.1088 3.0598-6.2324 4.586l-.0215.0293c-1.6478 2.2683-.0272 4.7953 1.9219 6.211 1.9487 1.4159 4.8518 2.1765 6.5-.0919.0228-.0309.0536-.071.0898-.121-.7356-1.2717-1.396-3.0718-1.8222-4.9981-.4534-2.0492-.6023-4-.4356-5.6153m1.0723 3.338c.3387 2.8478 1.3315 5.8037 2.4355 7.3437l.0215.0293c1.6478 2.2683 4.551 1.5078 6.5.0918 1.9487-1.416 3.5697-3.943 1.9219-6.211-.0228-.0309-.0517-.073-.0879-.123-1.4367.3066-3.3522.3794-5.3164.1894-2.089-.2017-3.9895-.6623-5.4746-1.3203" }) + ] + } + ); +}); + +exports.default = SiImmich; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.d.ts new file mode 100644 index 000000000..ea2bc519a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4250AF"; +declare const SiImmich: IconType; +export { SiImmich as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.mjs new file mode 100644 index 000000000..51b61d9e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImmich.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4250AF"; +const SiImmich = React.forwardRef(function SiImmich2({ title = "Immich", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9863.2695c-2.409 0-5.207 1.091-5.207 3.8946v.1523c1.3428.597 2.9347 1.6629 4.4121 2.9707 1.5713 1.3912 2.8374 2.8821 3.6524 4.2871 1.3997-2.5034 2.3358-5.4784 2.3476-7.373V4.164c0-2.8035-2.796-3.8946-5.205-3.8946m7.5117 4.4903c-.3778-.0081-.7747.0502-1.1914.1855-.0366.0118-.086.0278-.1445.0469-.1525 1.4611-.6756 3.304-1.4629 5.1133-.8373 1.9243-1.8627 3.5898-2.9472 4.7988 2.8132.558 5.9307.5273 7.7363-.0469.0126-.004.0246-.0065.0351-.0097 2.6665-.8666 2.84-3.8636 2.0957-6.1543-.6279-1.9332-2.081-3.89-4.121-3.9336m-14.996.039C2.4618 4.8424 1.0088 6.7973.3809 8.7305c-.7442 2.291-.5708 5.288 2.0957 6.1543l.1445.0468c.982-1.0926 2.4873-2.2761 4.1875-3.2773 1.8088-1.0646 3.619-1.808 5.207-2.1484-1.9483-2.1049-4.4884-3.9132-6.287-4.5098l-.0352-.0117c-.4167-.1354-.8136-.1936-1.1914-.1856m4.6718 6.7578c-2.6038 1.2025-5.1088 3.0598-6.2324 4.586l-.0215.0293c-1.6478 2.2683-.0272 4.7953 1.9219 6.211 1.9487 1.4159 4.8518 2.1765 6.5-.0919.0228-.0309.0536-.071.0898-.121-.7356-1.2717-1.396-3.0718-1.8222-4.9981-.4534-2.0492-.6023-4-.4356-5.6153m1.0723 3.338c.3387 2.8478 1.3315 5.8037 2.4355 7.3437l.0215.0293c1.6478 2.2683 4.551 1.5078 6.5.0918 1.9487-1.416 3.5697-3.943 1.9219-6.211-.0228-.0309-.0517-.073-.0879-.123-1.4367.3066-3.3522.3794-5.3164.1894-2.089-.2017-3.9895-.6623-5.4746-1.3203" }) + ] + } + ); +}); + +export { SiImmich as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImou.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImou.cjs new file mode 100644 index 000000000..724c1db47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImou.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E89313"; +const SiImou = React__namespace.forwardRef(function SiImou2({ title = "Imou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.6426 9.1484c-1.5747 0-2.8555 1.279-2.8555 2.8516 0 1.5724 1.2808 2.8516 2.8555 2.8516 1.5748 0 2.8554-1.2792 2.8554-2.8516 0-1.5725-1.2806-2.8516-2.8554-2.8516zm-9.8184.0059c-1.3802 0-2.502 1.12-2.502 2.498v2.9532c0 .0886.0714.1601.1602.1601h.9727a.1598.1598 0 0 0 .1601-.1601v-2.9532c0-.6656.5425-1.207 1.209-1.207.6667 0 1.209.5414 1.209 1.207v2.9532c0 .0886.0733.1601.1621.1601h.9707a.1615.1615 0 0 0 .1621-.1601v-2.9532c0-.6656.5423-1.207 1.209-1.207.6665 0 1.209.5414 1.209 1.207v2.9532c0 .0886.0714.1601.1601.1601h.9727a.1598.1598 0 0 0 .1602-.1601v-2.9532c0-1.378-1.122-2.498-2.502-2.498-.7367 0-1.397.3209-1.8555.8281-.4582-.5072-1.1209-.8281-1.8574-.8281zm-4.664.1309A.1596.1596 0 0 0 0 9.4453v5.1602c0 .0888.0714.1601.1602.1601h.9628a.1614.1614 0 0 0 .1622-.1601V9.4453a.1615.1615 0 0 0-.1622-.1601H.1602zm18.289 0a.1612.1612 0 0 0-.162.1601v1.4492c0 .089.073.1602.162.1602h.963a.1596.1596 0 0 0 .16-.1602V9.4453a.1596.1596 0 0 0-.16-.1601h-.963zm4.4278 0a.1612.1612 0 0 0-.1622.1601v1.4492c0 .089.0732.1602.1622.1602h.9628A.1596.1596 0 0 0 24 10.8945V9.4453a.1596.1596 0 0 0-.1602-.1601h-.9628zm-8.2344 1.1464c.8663 0 1.5703.7035 1.5703 1.5684 0 .865-.704 1.5684-1.5703 1.5684-.8664 0-1.5723-.7035-1.5723-1.5684 0-.865.706-1.5684 1.5723-1.5684zm3.8066 1.2579a.1615.1615 0 0 0-.162.1601v.08c0 1.5443 1.2004 2.8615 2.746 2.92C22.6579 14.9108 24 13.6088 24 12v-.1504a.1598.1598 0 0 0-.1602-.1601h-.9628a.1615.1615 0 0 0-.1622.1601V12c0 .8651-.704 1.5684-1.5703 1.5684-.8663 0-1.5722-.7033-1.5722-1.5684v-.1504a.1597.1597 0 0 0-.1602-.1601h-.9629Z" }) + ] + } + ); +}); + +exports.default = SiImou; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImou.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImou.d.ts new file mode 100644 index 000000000..68744bd55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImou.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E89313"; +declare const SiImou: IconType; +export { SiImou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImou.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImou.mjs new file mode 100644 index 000000000..5eec3af31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImou.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E89313"; +const SiImou = React.forwardRef(function SiImou2({ title = "Imou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.6426 9.1484c-1.5747 0-2.8555 1.279-2.8555 2.8516 0 1.5724 1.2808 2.8516 2.8555 2.8516 1.5748 0 2.8554-1.2792 2.8554-2.8516 0-1.5725-1.2806-2.8516-2.8554-2.8516zm-9.8184.0059c-1.3802 0-2.502 1.12-2.502 2.498v2.9532c0 .0886.0714.1601.1602.1601h.9727a.1598.1598 0 0 0 .1601-.1601v-2.9532c0-.6656.5425-1.207 1.209-1.207.6667 0 1.209.5414 1.209 1.207v2.9532c0 .0886.0733.1601.1621.1601h.9707a.1615.1615 0 0 0 .1621-.1601v-2.9532c0-.6656.5423-1.207 1.209-1.207.6665 0 1.209.5414 1.209 1.207v2.9532c0 .0886.0714.1601.1601.1601h.9727a.1598.1598 0 0 0 .1602-.1601v-2.9532c0-1.378-1.122-2.498-2.502-2.498-.7367 0-1.397.3209-1.8555.8281-.4582-.5072-1.1209-.8281-1.8574-.8281zm-4.664.1309A.1596.1596 0 0 0 0 9.4453v5.1602c0 .0888.0714.1601.1602.1601h.9628a.1614.1614 0 0 0 .1622-.1601V9.4453a.1615.1615 0 0 0-.1622-.1601H.1602zm18.289 0a.1612.1612 0 0 0-.162.1601v1.4492c0 .089.073.1602.162.1602h.963a.1596.1596 0 0 0 .16-.1602V9.4453a.1596.1596 0 0 0-.16-.1601h-.963zm4.4278 0a.1612.1612 0 0 0-.1622.1601v1.4492c0 .089.0732.1602.1622.1602h.9628A.1596.1596 0 0 0 24 10.8945V9.4453a.1596.1596 0 0 0-.1602-.1601h-.9628zm-8.2344 1.1464c.8663 0 1.5703.7035 1.5703 1.5684 0 .865-.704 1.5684-1.5703 1.5684-.8664 0-1.5723-.7035-1.5723-1.5684 0-.865.706-1.5684 1.5723-1.5684zm3.8066 1.2579a.1615.1615 0 0 0-.162.1601v.08c0 1.5443 1.2004 2.8615 2.746 2.92C22.6579 14.9108 24 13.6088 24 12v-.1504a.1598.1598 0 0 0-.1602-.1601h-.9628a.1615.1615 0 0 0-.1622.1601V12c0 .8651-.704 1.5684-1.5703 1.5684-.8663 0-1.5722-.7033-1.5722-1.5684v-.1504a.1597.1597 0 0 0-.1602-.1601h-.9629Z" }) + ] + } + ); +}); + +export { SiImou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.cjs new file mode 100644 index 000000000..9e2250e01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2FBEFF"; +const SiImprovmx = React__namespace.forwardRef(function SiImprovmx2({ title = "ImprovMX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.043 7.203 7.326 9.757 7.309 4.75h1.66l6.13-.026h1.66l.009 4.998zm1.72-5.875.008 2.077-3.482.009V1.337h3.473zm4.341 9.11-.025-7.041h-2.98L15.09 0 8.96.017v3.405H5.98l.018 7.041-2.767 1.499.92 3.32a5.79 5.79 0 0 1 1.387.068l-.75-2.724 6.59-3.559.018 8.548h1.328l-.026-8.548 6.615 3.525-.715 2.656a5.79 5.79 0 0 1 1.345.085l.937-3.414-2.784-1.481zm-2.81 7.654a4.623 4.623 0 0 1-6.58 0 5.951 5.951 0 0 0-8.403 0l.91.91a4.657 4.657 0 0 1 6.582 0A5.9 5.9 0 0 0 12 20.748a5.9 5.9 0 0 0 4.197-1.746 4.657 4.657 0 0 1 6.581 0l.911-.91a5.951 5.951 0 0 0-8.403 0m.009 3.252a4.623 4.623 0 0 1-6.581 0 5.874 5.874 0 0 0-3.346-1.652v1.286c.885.17 1.745.596 2.435 1.277A5.9 5.9 0 0 0 12 24a5.9 5.9 0 0 0 4.197-1.745 4.614 4.614 0 0 1 2.299-1.243v-1.303a5.91 5.91 0 0 0-3.21 1.635" }) + ] + } + ); +}); + +exports.default = SiImprovmx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.d.ts new file mode 100644 index 000000000..6d39ae56a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2FBEFF"; +declare const SiImprovmx: IconType; +export { SiImprovmx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.mjs new file mode 100644 index 000000000..cf0e98f3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiImprovmx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2FBEFF"; +const SiImprovmx = React.forwardRef(function SiImprovmx2({ title = "ImprovMX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.043 7.203 7.326 9.757 7.309 4.75h1.66l6.13-.026h1.66l.009 4.998zm1.72-5.875.008 2.077-3.482.009V1.337h3.473zm4.341 9.11-.025-7.041h-2.98L15.09 0 8.96.017v3.405H5.98l.018 7.041-2.767 1.499.92 3.32a5.79 5.79 0 0 1 1.387.068l-.75-2.724 6.59-3.559.018 8.548h1.328l-.026-8.548 6.615 3.525-.715 2.656a5.79 5.79 0 0 1 1.345.085l.937-3.414-2.784-1.481zm-2.81 7.654a4.623 4.623 0 0 1-6.58 0 5.951 5.951 0 0 0-8.403 0l.91.91a4.657 4.657 0 0 1 6.582 0A5.9 5.9 0 0 0 12 20.748a5.9 5.9 0 0 0 4.197-1.746 4.657 4.657 0 0 1 6.581 0l.911-.91a5.951 5.951 0 0 0-8.403 0m.009 3.252a4.623 4.623 0 0 1-6.581 0 5.874 5.874 0 0 0-3.346-1.652v1.286c.885.17 1.745.596 2.435 1.277A5.9 5.9 0 0 0 12 24a5.9 5.9 0 0 0 4.197-1.745 4.614 4.614 0 0 1 2.299-1.243v-1.303a5.91 5.91 0 0 0-3.21 1.635" }) + ] + } + ); +}); + +export { SiImprovmx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.cjs new file mode 100644 index 000000000..aece6a16f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003A9B"; +const SiIndeed = React__namespace.forwardRef(function SiIndeed2({ title = "Indeed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.566 21.5633v-8.762c.2553.0231.5009.0346.758.0346 1.2225 0 2.3739-.3206 3.3506-.8928v9.6182c0 .8219-.1957 1.4287-.5757 1.8338-.378.4033-.8808.6049-1.491.6049-.6007 0-1.0766-.2016-1.468-.6183-.3781-.4032-.5739-1.01-.5739-1.8184zM11.589.5659c2.5447-.8929 5.4424-.8449 7.6186.987.405.3687.8673.8334 1.0515 1.3806.2207.6913-.7695-.073-.9057-.167-.71-.4532-1.4182-.8334-2.2127-1.0946C12.8614.3873 8.8122 2.709 6.2945 6.315c-1.0516 1.5939-1.7367 3.2721-2.299 5.1174-.0614.2017-.1094.4647-.2207.6413-.1113.2036-.048-.5453-.048-.5702.0845-.7623.2438-1.4997.4414-2.237C5.3292 5.3375 7.897 2.0655 11.5891.5658zm4.9281 7.0587c0 1.6686-1.353 3.0224-3.0205 3.0224-1.6677 0-3.0186-1.3538-3.0186-3.0224 0-1.6687 1.351-3.0224 3.0186-3.0224 1.6676 0 3.0205 1.3518 3.0205 3.0224Z" }) + ] + } + ); +}); + +exports.default = SiIndeed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.d.ts new file mode 100644 index 000000000..bae118086 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003A9B"; +declare const SiIndeed: IconType; +export { SiIndeed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.mjs new file mode 100644 index 000000000..326ef652f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndeed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003A9B"; +const SiIndeed = React.forwardRef(function SiIndeed2({ title = "Indeed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.566 21.5633v-8.762c.2553.0231.5009.0346.758.0346 1.2225 0 2.3739-.3206 3.3506-.8928v9.6182c0 .8219-.1957 1.4287-.5757 1.8338-.378.4033-.8808.6049-1.491.6049-.6007 0-1.0766-.2016-1.468-.6183-.3781-.4032-.5739-1.01-.5739-1.8184zM11.589.5659c2.5447-.8929 5.4424-.8449 7.6186.987.405.3687.8673.8334 1.0515 1.3806.2207.6913-.7695-.073-.9057-.167-.71-.4532-1.4182-.8334-2.2127-1.0946C12.8614.3873 8.8122 2.709 6.2945 6.315c-1.0516 1.5939-1.7367 3.2721-2.299 5.1174-.0614.2017-.1094.4647-.2207.6413-.1113.2036-.048-.5453-.048-.5702.0845-.7623.2438-1.4997.4414-2.237C5.3292 5.3375 7.897 2.0655 11.5891.5658zm4.9281 7.0587c0 1.6686-1.353 3.0224-3.0205 3.0224-1.6677 0-3.0186-1.3538-3.0186-3.0224 0-1.6687 1.351-3.0224 3.0186-3.0224 1.6676 0 3.0205 1.3518 3.0205 3.0224Z" }) + ] + } + ); +}); + +export { SiIndeed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.cjs new file mode 100644 index 000000000..da22f469c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED2F21"; +const SiIndiansuperleague = React__namespace.forwardRef(function SiIndiansuperleague2({ title = "Indian Super League", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.59766.10938C8.95434.10104 7.5554.58357 6.94336.88086c-.11273.0545-.22433.1126-.35156.18164C4.78218 3.766 4.33554 6.69795 4.0957 7.8789c.26408.30678.52699.58814.80078.84962-1.07275.03838-2.03204-.00761-2.80859-.1543-.33058.63514-.61723 1.20155-.86719 1.73047C.99935 9.7809.8152 9.28492.75195 8.56445c-.3342.39607-.49852.77729-.55664 1.11524v.03125c-.09448.49055-.14861.97195-.17773 1.48437-.03625.67942-.01414 1.35171.0586 2.00586 0 .04657.03052.28815.03905.32227.06.41695.13848.8315.23829 1.23828.00803.03241-.0082-.01544.0371.1504.00014.00053.0699.25394.07227.2461.83843 2.8787 2.3119 4.76328 4.35742 6.38086.10029.01877.20602.03355.31446.04688.31308.28653.6532.56117 1.11328.88086.71513.30126 1.60352.67465 2.77539.99414.0836-.13436.19644-.2729.3418-.42188-.81711-.50461-1.3046-.81155-1.97462-1.44726.9546-.06846 1.9968-.1977 3.0332-.32813v-.0039c.07814-.66713.18119-1.26748.34766-2.02343.5766.48578 1.14455.91864 1.84766 1.4336-.04942.273-.07803.51066-.11523.85546.39197.21598.68197.37125.93945.50195-.47944.09048-.95232.17008-1.41211.23828-.0073.58867.00029.61018.13477 1.11524.85762.29796 1.03607.33892 1.77734.50976.3452-.0691.95215-.2225 1.35547-.3496h.0039c.07636-.30533.1012-.31144.2793-.76563a96.46696 96.46696 0 0 1-.33594-.18555c.61706-.11713 1.24963-.26233 1.87695-.42969 0 0 .32307-.53391 1.06445-1.89648-.18245-.15612-.61101-.51041-1.15234-.95508.3126-.82414.5334-1.42238.70898-1.92187a29.32447 29.32447 0 0 1 .7793-.16797c.47606-1.37368.65186-1.87142 1.50586-4.03711-.24974-.4401-.46855-.81353-.68945-1.16797.2034.17544.42375.36465.70117.60547.13448-.05449.26798-.1079.40234-.16602 1.02473-.4288 1.94057-.86248 2.73633-1.29492v-.002c.31259-1.56614.34283-2.41444.38282-3.59178-.923-.83938-1.5409-1.29324-2.47852-1.97265-.7449.40332-1.59923.81124-2.55859 1.21093-.12349.05087-.24777.1051-.375.15235-.16097 1.09869-.3181 1.83647-.52148 2.6875-.05766-.07247-.10876-.13865-.16993-.21485-1.47166.30159-2.98648.6827-4.47265 1.14063-.20145 1.05256-.33834 1.84446-.43555 2.63477-.60046.12875-1.1954.24428-1.78125.3457-.76223-.87702-1.36607-1.63645-1.86719-2.33594.21567.09574.42651.18967.66211.28906 1.3355-1.03594 2.35838-1.86542 3.28907-2.67968.33263.1617.68196.33024 1.0918.52539.9178-.7365 1.81918-1.51219 2.67187-2.30664-.58867-1.72975-.92008-2.41288-1.46875-3.54297a237.94319 237.94319 0 0 1-.97657-.27344C13.43207 1.4266 12.93946.52017 12.93946.48828c-.79715-.27026-1.59483-.37512-2.3418-.3789Zm6.88086.7832c-.87955.28476-1.62698.67187-1.64648.67187.25083.68316.41743 1.3906.5664 2.01563.9775.50143 1.67304.97418 2.23633 1.35937.58866-.28346 1.14003-.51649 1.65234-.6836-.14898-.9121-.35539-1.51436-.53711-2.04491-.84663-.61772-1.63557-1.00586-2.27148-1.31836ZM3.46094 3.38086l.00195.00195.00195-.00195zm.00195.00195c-.42072.41375-.8214.85235-1.1914 1.32031 0 0-.00225.012-.00587.01563-.22534.54867-.48457 1.3216-.66992 1.88477.14898.14535.33448.28349.54883.41796.33433-.46518.79364-1.06087 1.14258-1.5078.17073-.54143.43548-1.2525.64258-1.7793-.1844-.11215-.33993-.2322-.4668-.35157Zm11.31836.52734c.4485.92496.77407 1.66902 1.23633 2.98633-.6919.635-1.40973 1.25594-2.14453 1.85352a115.7121 115.7121 0 0 1-.60938-.29297c.70758-.63443 1.38006-1.27556 2.11719-2.01562-.35197-1.01946-.67735-1.88363-.97656-2.63672-.0004-.0004.01565.0047.37695.10546zM2.41406 9.0625c.86184.12732 1.86338.15634 2.9668.0996.72448.6061 1.55666 1.12022 2.66602 1.65821.58175.87448 1.2899 1.80434 2.23828 2.9082-.38338 1.3918-.64943 2.4489-.98243 4.17774.38721.37202.73084.68634 1.06055.97656-.1579.71876-.26302 1.30403-.3418 1.90235-1.17492.1452-2.34363.27701-3.33789.3164-.632-.35033-1.3539-.7714-2.11328-1.31054-.16764.16503-.30908.32691-.42383.48437-1.52965-1.4295-2.63206-3.1043-3.29101-5.55664-.02458-.09153-.04463-.18145-.0625-.27148.11145-.1633.245-.3306.39062-.50196-.03164-.76196-.06062-1.45003.00977-2.32226.29063-.7321.71661-1.58413 1.2207-2.56055Zm14.83203.93555c.08038.10142.15203.19551.22657.29101-.01035.0423-.0187.07781-.0293.1211.1479.12316.22428.18808.34765.29101.68221.89958 1.13217 1.59025 1.67969 2.54688-.67878 1.72765-.93478 2.43437-1.32226 3.55078-.07204.0152-.14459.03303-.2168.04883.09074-.26703.1829-.54496.29101-.8711-1.6134-1.5734-1.87347-1.8424-3.33789-3.33593-.59952.16079-1.2005.30816-1.79687.44336.0851-.64947.19884-1.3142.3496-2.11524 2.16083-.64889 3.79153-.95932 3.8086-.9707zM3.15625 13.0039c-.30533 1.12658-.38373 1.92205-.44922 2.62695.64316 1.1447 1.34364 2.0049 1.91406 2.69531.66758.07264 1.4184.09774 2.23438.07617.06911-.91212.24807-1.80775.4043-2.60351-.85389-1.07923-1.41037-1.98807-1.85743-2.71485-.81751.01812-1.57393-.00371-2.24609-.08007Zm19.29297 1.04297c-.69777.4288-1.42251.84293-2.16016 1.25-.21446.79576-.24948.91586-.68554 2.34765.3998.24218.89073.55728 1.4746.94727.64317-.34883 1.19204-.72708 1.79883-1.09766.06186-.03637.11571-.07273.17383-.10547.01206 0 .01952-.0156.02343-.02734-.01315-.01315.03383-.02245.22852-.47655.26522-.55955.48625-1.1407.66797-1.74024.01088-.02912.01843-.05888.0293-.08789-.3852-.37794-.39231-.3737-1.35156-1.13672-.06626.0425-.13282.08463-.19922.12695zm-3.07813 6.28125c-.32707.35607-.78398.80239-1.1328 1.13671.10078.15118.17596.29508.23046.43555.47184-.16336.93866-.35904 1.38867-.58398 0 0 .0039-.0042.0039-.0078.37432-.34158.85011-.83969 1.19532-1.20313-.06175-.1671-.14772-.33793-.26758-.51953-.46474.26217-.94274.4998-1.41797.74218zm-2.52343-.52344c.29259.24078.5342.43964.69921.57812-.41402.74796-.70587 1.26414-.75 1.3379-.63406.16403-1.26896.30608-1.88476.416-.71425-.30196-1.1466-.51623-1.8457-.89452.01997-.16895.04622-.33773.07813-.51758 1.19164-.20783 2.4245-.47919 3.66015-.8086.0143-.03711.02864-.07421.04296-.11132z" }) + ] + } + ); +}); + +exports.default = SiIndiansuperleague; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.d.ts new file mode 100644 index 000000000..35a1d91bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED2F21"; +declare const SiIndiansuperleague: IconType; +export { SiIndiansuperleague as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.mjs new file mode 100644 index 000000000..d542fc3b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiansuperleague.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED2F21"; +const SiIndiansuperleague = React.forwardRef(function SiIndiansuperleague2({ title = "Indian Super League", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.59766.10938C8.95434.10104 7.5554.58357 6.94336.88086c-.11273.0545-.22433.1126-.35156.18164C4.78218 3.766 4.33554 6.69795 4.0957 7.8789c.26408.30678.52699.58814.80078.84962-1.07275.03838-2.03204-.00761-2.80859-.1543-.33058.63514-.61723 1.20155-.86719 1.73047C.99935 9.7809.8152 9.28492.75195 8.56445c-.3342.39607-.49852.77729-.55664 1.11524v.03125c-.09448.49055-.14861.97195-.17773 1.48437-.03625.67942-.01414 1.35171.0586 2.00586 0 .04657.03052.28815.03905.32227.06.41695.13848.8315.23829 1.23828.00803.03241-.0082-.01544.0371.1504.00014.00053.0699.25394.07227.2461.83843 2.8787 2.3119 4.76328 4.35742 6.38086.10029.01877.20602.03355.31446.04688.31308.28653.6532.56117 1.11328.88086.71513.30126 1.60352.67465 2.77539.99414.0836-.13436.19644-.2729.3418-.42188-.81711-.50461-1.3046-.81155-1.97462-1.44726.9546-.06846 1.9968-.1977 3.0332-.32813v-.0039c.07814-.66713.18119-1.26748.34766-2.02343.5766.48578 1.14455.91864 1.84766 1.4336-.04942.273-.07803.51066-.11523.85546.39197.21598.68197.37125.93945.50195-.47944.09048-.95232.17008-1.41211.23828-.0073.58867.00029.61018.13477 1.11524.85762.29796 1.03607.33892 1.77734.50976.3452-.0691.95215-.2225 1.35547-.3496h.0039c.07636-.30533.1012-.31144.2793-.76563a96.46696 96.46696 0 0 1-.33594-.18555c.61706-.11713 1.24963-.26233 1.87695-.42969 0 0 .32307-.53391 1.06445-1.89648-.18245-.15612-.61101-.51041-1.15234-.95508.3126-.82414.5334-1.42238.70898-1.92187a29.32447 29.32447 0 0 1 .7793-.16797c.47606-1.37368.65186-1.87142 1.50586-4.03711-.24974-.4401-.46855-.81353-.68945-1.16797.2034.17544.42375.36465.70117.60547.13448-.05449.26798-.1079.40234-.16602 1.02473-.4288 1.94057-.86248 2.73633-1.29492v-.002c.31259-1.56614.34283-2.41444.38282-3.59178-.923-.83938-1.5409-1.29324-2.47852-1.97265-.7449.40332-1.59923.81124-2.55859 1.21093-.12349.05087-.24777.1051-.375.15235-.16097 1.09869-.3181 1.83647-.52148 2.6875-.05766-.07247-.10876-.13865-.16993-.21485-1.47166.30159-2.98648.6827-4.47265 1.14063-.20145 1.05256-.33834 1.84446-.43555 2.63477-.60046.12875-1.1954.24428-1.78125.3457-.76223-.87702-1.36607-1.63645-1.86719-2.33594.21567.09574.42651.18967.66211.28906 1.3355-1.03594 2.35838-1.86542 3.28907-2.67968.33263.1617.68196.33024 1.0918.52539.9178-.7365 1.81918-1.51219 2.67187-2.30664-.58867-1.72975-.92008-2.41288-1.46875-3.54297a237.94319 237.94319 0 0 1-.97657-.27344C13.43207 1.4266 12.93946.52017 12.93946.48828c-.79715-.27026-1.59483-.37512-2.3418-.3789Zm6.88086.7832c-.87955.28476-1.62698.67187-1.64648.67187.25083.68316.41743 1.3906.5664 2.01563.9775.50143 1.67304.97418 2.23633 1.35937.58866-.28346 1.14003-.51649 1.65234-.6836-.14898-.9121-.35539-1.51436-.53711-2.04491-.84663-.61772-1.63557-1.00586-2.27148-1.31836ZM3.46094 3.38086l.00195.00195.00195-.00195zm.00195.00195c-.42072.41375-.8214.85235-1.1914 1.32031 0 0-.00225.012-.00587.01563-.22534.54867-.48457 1.3216-.66992 1.88477.14898.14535.33448.28349.54883.41796.33433-.46518.79364-1.06087 1.14258-1.5078.17073-.54143.43548-1.2525.64258-1.7793-.1844-.11215-.33993-.2322-.4668-.35157Zm11.31836.52734c.4485.92496.77407 1.66902 1.23633 2.98633-.6919.635-1.40973 1.25594-2.14453 1.85352a115.7121 115.7121 0 0 1-.60938-.29297c.70758-.63443 1.38006-1.27556 2.11719-2.01562-.35197-1.01946-.67735-1.88363-.97656-2.63672-.0004-.0004.01565.0047.37695.10546zM2.41406 9.0625c.86184.12732 1.86338.15634 2.9668.0996.72448.6061 1.55666 1.12022 2.66602 1.65821.58175.87448 1.2899 1.80434 2.23828 2.9082-.38338 1.3918-.64943 2.4489-.98243 4.17774.38721.37202.73084.68634 1.06055.97656-.1579.71876-.26302 1.30403-.3418 1.90235-1.17492.1452-2.34363.27701-3.33789.3164-.632-.35033-1.3539-.7714-2.11328-1.31054-.16764.16503-.30908.32691-.42383.48437-1.52965-1.4295-2.63206-3.1043-3.29101-5.55664-.02458-.09153-.04463-.18145-.0625-.27148.11145-.1633.245-.3306.39062-.50196-.03164-.76196-.06062-1.45003.00977-2.32226.29063-.7321.71661-1.58413 1.2207-2.56055Zm14.83203.93555c.08038.10142.15203.19551.22657.29101-.01035.0423-.0187.07781-.0293.1211.1479.12316.22428.18808.34765.29101.68221.89958 1.13217 1.59025 1.67969 2.54688-.67878 1.72765-.93478 2.43437-1.32226 3.55078-.07204.0152-.14459.03303-.2168.04883.09074-.26703.1829-.54496.29101-.8711-1.6134-1.5734-1.87347-1.8424-3.33789-3.33593-.59952.16079-1.2005.30816-1.79687.44336.0851-.64947.19884-1.3142.3496-2.11524 2.16083-.64889 3.79153-.95932 3.8086-.9707zM3.15625 13.0039c-.30533 1.12658-.38373 1.92205-.44922 2.62695.64316 1.1447 1.34364 2.0049 1.91406 2.69531.66758.07264 1.4184.09774 2.23438.07617.06911-.91212.24807-1.80775.4043-2.60351-.85389-1.07923-1.41037-1.98807-1.85743-2.71485-.81751.01812-1.57393-.00371-2.24609-.08007Zm19.29297 1.04297c-.69777.4288-1.42251.84293-2.16016 1.25-.21446.79576-.24948.91586-.68554 2.34765.3998.24218.89073.55728 1.4746.94727.64317-.34883 1.19204-.72708 1.79883-1.09766.06186-.03637.11571-.07273.17383-.10547.01206 0 .01952-.0156.02343-.02734-.01315-.01315.03383-.02245.22852-.47655.26522-.55955.48625-1.1407.66797-1.74024.01088-.02912.01843-.05888.0293-.08789-.3852-.37794-.39231-.3737-1.35156-1.13672-.06626.0425-.13282.08463-.19922.12695zm-3.07813 6.28125c-.32707.35607-.78398.80239-1.1328 1.13671.10078.15118.17596.29508.23046.43555.47184-.16336.93866-.35904 1.38867-.58398 0 0 .0039-.0042.0039-.0078.37432-.34158.85011-.83969 1.19532-1.20313-.06175-.1671-.14772-.33793-.26758-.51953-.46474.26217-.94274.4998-1.41797.74218zm-2.52343-.52344c.29259.24078.5342.43964.69921.57812-.41402.74796-.70587 1.26414-.75 1.3379-.63406.16403-1.26896.30608-1.88476.416-.71425-.30196-1.1466-.51623-1.8457-.89452.01997-.16895.04622-.33773.07813-.51758 1.19164-.20783 2.4245-.47919 3.66015-.8086.0143-.03711.02864-.07421.04296-.11132z" }) + ] + } + ); +}); + +export { SiIndiansuperleague as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.cjs new file mode 100644 index 000000000..cb2f72362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E2439"; +const SiIndiehackers = React__namespace.forwardRef(function SiIndiehackers2({ title = "Indie Hackers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h24v24H0V0Zm5.4 17.2h2.4V6.8H5.4v10.4Zm4.8 0h2.4v-4h3.6v4h2.4V6.8h-2.4v4h-3.6v-4h-2.4v10.4Z" }) + ] + } + ); +}); + +exports.default = SiIndiehackers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.d.ts new file mode 100644 index 000000000..cb511a288 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E2439"; +declare const SiIndiehackers: IconType; +export { SiIndiehackers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.mjs new file mode 100644 index 000000000..bff30b844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndiehackers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E2439"; +const SiIndiehackers = React.forwardRef(function SiIndiehackers2({ title = "Indie Hackers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0h24v24H0V0Zm5.4 17.2h2.4V6.8H5.4v10.4Zm4.8 0h2.4v-4h3.6v4h2.4V6.8h-2.4v4h-3.6v-4h-2.4v10.4Z" }) + ] + } + ); +}); + +export { SiIndiehackers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.cjs new file mode 100644 index 000000000..f174a3adf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09009B"; +const SiIndigo = React__namespace.forwardRef(function SiIndigo2({ title = "IndiGo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.99 0c-.25 0-.5.096-.691.287a.983.983 0 0 0 0 1.386.975.975 0 0 0 1.382 0 .983.983 0 0 0 0-1.386A.975.975 0 0 0 22.99 0Zm-2.444 1.959c-.25 0-.5.096-.691.287a.983.983 0 0 0 0 1.386.977.977 0 0 0 1.382 0 .981.981 0 0 0-.691-1.673ZM6.384 4.408a.98.98 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm2.928 0a.979.979 0 0 0 0 1.959.978.978 0 1 0 0-1.959Zm3.42 0a.979.979 0 0 0 0 1.959.98.98 0 0 0 0-1.959Zm2.931 0a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm2.931 0a.978.978 0 1 0-.001 1.961.978.978 0 0 0 .001-1.961Zm-2.931 2.939a.98.98 0 0 0 0 1.958.98.98 0 0 0 0-1.958Zm2.931 0a.98.98 0 0 0 0 1.959.977.977 0 0 0 .976-.979.978.978 0 0 0-.976-.98Zm-5.373 1.959a.97.97 0 0 0-.691.287.979.979 0 0 0 1.382 1.386.981.981 0 0 0-.691-1.673Zm5.373.98a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm-7.327 1.469a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm7.327 1.47a.98.98 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm-9.282.489a.981.981 0 0 0-.69 1.673.975.975 0 0 0 1.381 0 .981.981 0 0 0-.691-1.673Zm-8.303 2.45a.978.978 0 1 0 .004 1.956.978.978 0 0 0-.004-1.956Zm2.931 0a.978.978 0 1 0 .004 1.956.978.978 0 0 0-.004-1.956Zm2.931 0a.978.978 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm11.723.489a.98.98 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm-11.723 2.45a.978.978 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm0 2.938a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Z" }) + ] + } + ); +}); + +exports.default = SiIndigo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.d.ts new file mode 100644 index 000000000..0a522fd18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09009B"; +declare const SiIndigo: IconType; +export { SiIndigo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.mjs new file mode 100644 index 000000000..e5fa111e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIndigo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09009B"; +const SiIndigo = React.forwardRef(function SiIndigo2({ title = "IndiGo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.99 0c-.25 0-.5.096-.691.287a.983.983 0 0 0 0 1.386.975.975 0 0 0 1.382 0 .983.983 0 0 0 0-1.386A.975.975 0 0 0 22.99 0Zm-2.444 1.959c-.25 0-.5.096-.691.287a.983.983 0 0 0 0 1.386.977.977 0 0 0 1.382 0 .981.981 0 0 0-.691-1.673ZM6.384 4.408a.98.98 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm2.928 0a.979.979 0 0 0 0 1.959.978.978 0 1 0 0-1.959Zm3.42 0a.979.979 0 0 0 0 1.959.98.98 0 0 0 0-1.959Zm2.931 0a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm2.931 0a.978.978 0 1 0-.001 1.961.978.978 0 0 0 .001-1.961Zm-2.931 2.939a.98.98 0 0 0 0 1.958.98.98 0 0 0 0-1.958Zm2.931 0a.98.98 0 0 0 0 1.959.977.977 0 0 0 .976-.979.978.978 0 0 0-.976-.98Zm-5.373 1.959a.97.97 0 0 0-.691.287.979.979 0 0 0 1.382 1.386.981.981 0 0 0-.691-1.673Zm5.373.98a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm-7.327 1.469a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Zm7.327 1.47a.98.98 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm-9.282.489a.981.981 0 0 0-.69 1.673.975.975 0 0 0 1.381 0 .981.981 0 0 0-.691-1.673Zm-8.303 2.45a.978.978 0 1 0 .004 1.956.978.978 0 0 0-.004-1.956Zm2.931 0a.978.978 0 1 0 .004 1.956.978.978 0 0 0-.004-1.956Zm2.931 0a.978.978 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm11.723.489a.98.98 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm-11.723 2.45a.978.978 0 0 0 0 1.958.978.978 0 0 0 0-1.958Zm0 2.938a.979.979 0 0 0 0 1.959.979.979 0 0 0 0-1.959Z" }) + ] + } + ); +}); + +export { SiIndigo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.cjs new file mode 100644 index 000000000..b9874ca47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#445C6D"; +const SiInductiveautomation = React__namespace.forwardRef(function SiInductiveautomation2({ title = "Inductive Automation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.72 11.998c0-.616-2.647-4.598-2.647-4.598-.21-.362-.885-.362-1.507-.001-.622.361-.956.947-.745 1.31l.294.506.821 1.425H9.004l-1.43-.002c-.418 0-.758.61-.76 1.36v.004c.002.75.342 1.36.76 1.36l1.43-.001h3.932l-.82 1.424-.295.507c-.21.362.123.949.745 1.31.622.36 1.297.36 1.507-.002 0 0 2.647-3.982 2.647-4.598v-.004M12 19.473a7.472 7.472 0 1 1 0-14.945 7.472 7.472 0 1 1 0 14.945zM21.937 12c0-.322-.015-.64-.046-.955L24 9.63a12.032 12.032 0 0 0-.42-1.577l-2.534-.172a10.03 10.03 0 0 0-.958-1.655l1.116-2.274a12.27 12.27 0 0 0-1.156-1.157L17.773 3.91a9.909 9.909 0 0 0-1.656-.958L15.945.419A12.085 12.085 0 0 0 14.37 0l-1.415 2.108a10.124 10.124 0 0 0-1.912 0L9.631 0A12.02 12.02 0 0 0 8.05.422l-.17 2.531a9.905 9.905 0 0 0-1.657.958L3.95 2.795c-.41.36-.797.746-1.156 1.157l1.119 2.274a9.976 9.976 0 0 0-.959 1.655L.42 8.053A12.13 12.13 0 0 0 0 9.63l2.109 1.413a9.76 9.76 0 0 0 0 1.913L0 14.369a12.1 12.1 0 0 0 .42 1.579l2.534.17c.268.584.588 1.136.959 1.653l-1.12 2.275c.361.411.748.799 1.16 1.158l2.274-1.117c.517.368 1.07.69 1.654.957l.17 2.534c.513.173 1.038.317 1.578.422l1.415-2.11c.315.029.632.048.956.048.321 0 .642-.02.957-.049L14.372 24a12.208 12.208 0 0 0 1.573-.422l.172-2.534c.584-.267 1.14-.589 1.657-.957l2.274 1.117c.41-.36.796-.744 1.156-1.156l-1.115-2.274c.37-.518.69-1.07.957-1.656l2.532-.17a12.13 12.13 0 0 0 .422-1.58l-2.108-1.412a10 10 0 0 0 .045-.956m.658 6.056c.113 0 .315.021.315-.126 0-.094-.125-.111-.225-.111h-.246v.237zm.432.555h-.156l-.276-.425h-.155v.425h-.13v-.922h.401c.167 0 .329.045.329.243 0 .182-.126.25-.292.254zm.314-.457a.718.718 0 0 0-.716-.712.718.718 0 0 0-.717.712c0 .398.33.715.717.715a.72.72 0 0 0 .716-.715zm-1.563 0c0-.468.373-.841.847-.841a.84.84 0 0 1 .847.841.84.84 0 0 1-.847.844.839.839 0 0 1-.847-.844" }) + ] + } + ); +}); + +exports.default = SiInductiveautomation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.d.ts new file mode 100644 index 000000000..b3a9dd2d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#445C6D"; +declare const SiInductiveautomation: IconType; +export { SiInductiveautomation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.mjs new file mode 100644 index 000000000..a8c136436 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInductiveautomation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#445C6D"; +const SiInductiveautomation = React.forwardRef(function SiInductiveautomation2({ title = "Inductive Automation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.72 11.998c0-.616-2.647-4.598-2.647-4.598-.21-.362-.885-.362-1.507-.001-.622.361-.956.947-.745 1.31l.294.506.821 1.425H9.004l-1.43-.002c-.418 0-.758.61-.76 1.36v.004c.002.75.342 1.36.76 1.36l1.43-.001h3.932l-.82 1.424-.295.507c-.21.362.123.949.745 1.31.622.36 1.297.36 1.507-.002 0 0 2.647-3.982 2.647-4.598v-.004M12 19.473a7.472 7.472 0 1 1 0-14.945 7.472 7.472 0 1 1 0 14.945zM21.937 12c0-.322-.015-.64-.046-.955L24 9.63a12.032 12.032 0 0 0-.42-1.577l-2.534-.172a10.03 10.03 0 0 0-.958-1.655l1.116-2.274a12.27 12.27 0 0 0-1.156-1.157L17.773 3.91a9.909 9.909 0 0 0-1.656-.958L15.945.419A12.085 12.085 0 0 0 14.37 0l-1.415 2.108a10.124 10.124 0 0 0-1.912 0L9.631 0A12.02 12.02 0 0 0 8.05.422l-.17 2.531a9.905 9.905 0 0 0-1.657.958L3.95 2.795c-.41.36-.797.746-1.156 1.157l1.119 2.274a9.976 9.976 0 0 0-.959 1.655L.42 8.053A12.13 12.13 0 0 0 0 9.63l2.109 1.413a9.76 9.76 0 0 0 0 1.913L0 14.369a12.1 12.1 0 0 0 .42 1.579l2.534.17c.268.584.588 1.136.959 1.653l-1.12 2.275c.361.411.748.799 1.16 1.158l2.274-1.117c.517.368 1.07.69 1.654.957l.17 2.534c.513.173 1.038.317 1.578.422l1.415-2.11c.315.029.632.048.956.048.321 0 .642-.02.957-.049L14.372 24a12.208 12.208 0 0 0 1.573-.422l.172-2.534c.584-.267 1.14-.589 1.657-.957l2.274 1.117c.41-.36.796-.744 1.156-1.156l-1.115-2.274c.37-.518.69-1.07.957-1.656l2.532-.17a12.13 12.13 0 0 0 .422-1.58l-2.108-1.412a10 10 0 0 0 .045-.956m.658 6.056c.113 0 .315.021.315-.126 0-.094-.125-.111-.225-.111h-.246v.237zm.432.555h-.156l-.276-.425h-.155v.425h-.13v-.922h.401c.167 0 .329.045.329.243 0 .182-.126.25-.292.254zm.314-.457a.718.718 0 0 0-.716-.712.718.718 0 0 0-.717.712c0 .398.33.715.717.715a.72.72 0 0 0 .716-.715zm-1.563 0c0-.468.373-.841.847-.841a.84.84 0 0 1 .847.841.84.84 0 0 1-.847.844.839.839 0 0 1-.847-.844" }) + ] + } + ); +}); + +export { SiInductiveautomation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.cjs new file mode 100644 index 000000000..c985f0353 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9553E9"; +const SiInertia = React__namespace.forwardRef(function SiInertia2({ title = "Inertia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.901 5.331H0L6.669 12 0 18.669h6.901L13.571 12 6.9 5.331zm10.43 0H10.43L17.099 12l-6.67 6.669h6.902L24 12l-6.669-6.669z" }) + ] + } + ); +}); + +exports.default = SiInertia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.d.ts new file mode 100644 index 000000000..85e1e8fdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9553E9"; +declare const SiInertia: IconType; +export { SiInertia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.mjs new file mode 100644 index 000000000..db2a4ad26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInertia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9553E9"; +const SiInertia = React.forwardRef(function SiInertia2({ title = "Inertia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.901 5.331H0L6.669 12 0 18.669h6.901L13.571 12 6.9 5.331zm10.43 0H10.43L17.099 12l-6.67 6.669h6.902L24 12l-6.669-6.669z" }) + ] + } + ); +}); + +export { SiInertia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.cjs new file mode 100644 index 000000000..f74300226 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#020B24"; +const SiInfiniti = React__namespace.forwardRef(function SiInfiniti2({ title = "INFINITI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.953 11.643c0 1.51 1.83 2.69 4.601 3.344l4.841-5.523H12l-4.19 8.06C3.25 16.744 0 14.71 0 12.233c0-3.184 5.376-5.757 12-5.757s12 2.573 12 5.757c0 2.477-3.25 4.511-7.81 5.293L12 9.464h.605l4.84 5.523c2.772-.654 4.601-1.834 4.601-3.344 0-2.664-4.484-4.88-10.047-4.88-5.562 0-10.046 2.216-10.046 4.88z" }) + ] + } + ); +}); + +exports.default = SiInfiniti; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.d.ts new file mode 100644 index 000000000..5ea6ddda8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#020B24"; +declare const SiInfiniti: IconType; +export { SiInfiniti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.mjs new file mode 100644 index 000000000..f42989d89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfiniti.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#020B24"; +const SiInfiniti = React.forwardRef(function SiInfiniti2({ title = "INFINITI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.953 11.643c0 1.51 1.83 2.69 4.601 3.344l4.841-5.523H12l-4.19 8.06C3.25 16.744 0 14.71 0 12.233c0-3.184 5.376-5.757 12-5.757s12 2.573 12 5.757c0 2.477-3.25 4.511-7.81 5.293L12 9.464h.605l4.84 5.523c2.772-.654 4.601-1.834 4.601-3.344 0-2.664-4.484-4.88-10.047-4.88-5.562 0-10.046 2.216-10.046 4.88z" }) + ] + } + ); +}); + +export { SiInfiniti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.cjs new file mode 100644 index 000000000..3e23d666c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7738C8"; +const SiInfinityfree = React__namespace.forwardRef(function SiInfinityfree2({ title = "InfinityFree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.4323 6.3262a5.2924 5.2924 0 0 0-.7638.0611l1.5511.6818zm.5736.2641.8686.7408.9765-.4535c-.597-.2081-1.2097-.3026-1.8451-.2873Zm-12.8836.1375c-.973.2083-1.868.691-2.59 1.4111C.8304 8.841.3538 9.707.1358 10.65l.0961-.0098A5.2331 5.2331 0 0 0 0 12.1842c0 .2688.0204.534.06.7947l.1845-.1218c.174 1.0753.677 2.0659 1.4625 2.8497.5708.5713 1.2509.993 1.9928 1.2478l.1536-2.6135a2.6386 2.6386 0 0 1-.4318-.3498c-.5306-.529-.8229-1.2337-.8229-1.984 0-.3508.0655-.6925.1894-1.0118l-.133.0755a2.8303 2.8303 0 0 1 .5255-.8029l-.2406-.053a2.8635 2.8635 0 0 1 .3053-.3643c.244-.244.5383-.4367.8614-.572l.049.4955a2.8008 2.8008 0 0 1 .3786-.179 2.88 2.88 0 0 1 1.2338-.1855l.0009-.0006c.4876.0325.9545.1862 1.3494.4398.1567.1006.302.2169.4328.348l5.9407 5.706c.7683.7702 1.7452 1.2648 2.8114 1.4383l.0957.2778c.2508.0363.5062.0547.7649.0547.763 0 1.5001-.1635 2.173-.4717l-2.352-1.9831c-.4203-.0257-.8256-.1412-1.183-.3334l-.1142-.3266a2.5998 2.5998 0 0 1-.4996-.3886c-1.9797-1.9018-3.9604-3.8026-5.94-5.7045a5.1265 5.1265 0 0 0-1.7668-1.1515c-.0042-.0017-.0087-.0032-.0128-.005A5.2593 5.2593 0 0 0 5.574 6.959c-.495 0-.9793.07-1.4428.203zm12.4437.2664c-1.1716.1327-2.2569.6533-3.1032 1.5011-.497.4768-.9935.9541-1.4902 1.4313l1.745 1.685 1.4418-1.3868c.538-.5357 1.2382-.8339 1.974-.8419.0223-.0013.0444.0002.0666.0002.7354.0095 1.4236.2994 1.9416.8202.5311.5303.8237 1.2344.8237 1.9826a2.7884 2.7884 0 0 1-.2303 1.1135l.2154-.0136a2.7871 2.7871 0 0 1-.6317.9667c-.5076.5073-1.2296.7981-1.981.7981-.067 0-.1336-.003-.2-.0076l2.3687 1.987a5.2153 5.2153 0 0 0 1.5261-1.0618c.8132-.8128 1.3246-1.8457 1.4804-2.9637l-.1905.011c.0895-.5608.0716-.9823.0477-1.27l-4.4595-4.041.0178-.0143-.0321.0064zm2.4011.196-.7966.513 4.4659 4.1044c-.0895-1.2528-.6196-2.4193-1.518-3.3172-.6117-.612-1.348-1.053-2.1513-1.3002Zm-15.1346 3.12c.0303.2306.0754.4573.1352.6799l.5484-.1038zm19.1478 1.9606.1158.9891a8.4392 8.4392 0 0 0 .399-.7838zm-13.9673.4945-1.4333 1.3783a2.8112 2.8112 0 0 1-1.4736.7766 2.91 2.91 0 0 1-.5372.0504c-.5624 0-1.1102-.1676-1.564-.4699l-.1639 2.6176a5.2243 5.2243 0 0 0 2.4253.2472l.514-.6115 2.5787-.9576 1.401-1.3442ZM24 13.126l-1.0916.857.8438-.2816c.0973-.1872.18-.3794.2478-.5754zm-7.4458 1.0525.0042.5581.689-.5694a5.3413 5.3413 0 0 0-.693.0113zm-6.487 1.6948-2.6192.9825.5685.399c.6917-.2594 1.327-.6654 1.8661-1.2044ZM6.8415 16.943l-.575.6844a5.189 5.189 0 0 0 .6794-.1362z" }) + ] + } + ); +}); + +exports.default = SiInfinityfree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.d.ts new file mode 100644 index 000000000..056f7ecc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7738C8"; +declare const SiInfinityfree: IconType; +export { SiInfinityfree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.mjs new file mode 100644 index 000000000..2f6246aed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfinityfree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7738C8"; +const SiInfinityfree = React.forwardRef(function SiInfinityfree2({ title = "InfinityFree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.4323 6.3262a5.2924 5.2924 0 0 0-.7638.0611l1.5511.6818zm.5736.2641.8686.7408.9765-.4535c-.597-.2081-1.2097-.3026-1.8451-.2873Zm-12.8836.1375c-.973.2083-1.868.691-2.59 1.4111C.8304 8.841.3538 9.707.1358 10.65l.0961-.0098A5.2331 5.2331 0 0 0 0 12.1842c0 .2688.0204.534.06.7947l.1845-.1218c.174 1.0753.677 2.0659 1.4625 2.8497.5708.5713 1.2509.993 1.9928 1.2478l.1536-2.6135a2.6386 2.6386 0 0 1-.4318-.3498c-.5306-.529-.8229-1.2337-.8229-1.984 0-.3508.0655-.6925.1894-1.0118l-.133.0755a2.8303 2.8303 0 0 1 .5255-.8029l-.2406-.053a2.8635 2.8635 0 0 1 .3053-.3643c.244-.244.5383-.4367.8614-.572l.049.4955a2.8008 2.8008 0 0 1 .3786-.179 2.88 2.88 0 0 1 1.2338-.1855l.0009-.0006c.4876.0325.9545.1862 1.3494.4398.1567.1006.302.2169.4328.348l5.9407 5.706c.7683.7702 1.7452 1.2648 2.8114 1.4383l.0957.2778c.2508.0363.5062.0547.7649.0547.763 0 1.5001-.1635 2.173-.4717l-2.352-1.9831c-.4203-.0257-.8256-.1412-1.183-.3334l-.1142-.3266a2.5998 2.5998 0 0 1-.4996-.3886c-1.9797-1.9018-3.9604-3.8026-5.94-5.7045a5.1265 5.1265 0 0 0-1.7668-1.1515c-.0042-.0017-.0087-.0032-.0128-.005A5.2593 5.2593 0 0 0 5.574 6.959c-.495 0-.9793.07-1.4428.203zm12.4437.2664c-1.1716.1327-2.2569.6533-3.1032 1.5011-.497.4768-.9935.9541-1.4902 1.4313l1.745 1.685 1.4418-1.3868c.538-.5357 1.2382-.8339 1.974-.8419.0223-.0013.0444.0002.0666.0002.7354.0095 1.4236.2994 1.9416.8202.5311.5303.8237 1.2344.8237 1.9826a2.7884 2.7884 0 0 1-.2303 1.1135l.2154-.0136a2.7871 2.7871 0 0 1-.6317.9667c-.5076.5073-1.2296.7981-1.981.7981-.067 0-.1336-.003-.2-.0076l2.3687 1.987a5.2153 5.2153 0 0 0 1.5261-1.0618c.8132-.8128 1.3246-1.8457 1.4804-2.9637l-.1905.011c.0895-.5608.0716-.9823.0477-1.27l-4.4595-4.041.0178-.0143-.0321.0064zm2.4011.196-.7966.513 4.4659 4.1044c-.0895-1.2528-.6196-2.4193-1.518-3.3172-.6117-.612-1.348-1.053-2.1513-1.3002Zm-15.1346 3.12c.0303.2306.0754.4573.1352.6799l.5484-.1038zm19.1478 1.9606.1158.9891a8.4392 8.4392 0 0 0 .399-.7838zm-13.9673.4945-1.4333 1.3783a2.8112 2.8112 0 0 1-1.4736.7766 2.91 2.91 0 0 1-.5372.0504c-.5624 0-1.1102-.1676-1.564-.4699l-.1639 2.6176a5.2243 5.2243 0 0 0 2.4253.2472l.514-.6115 2.5787-.9576 1.401-1.3442ZM24 13.126l-1.0916.857.8438-.2816c.0973-.1872.18-.3794.2478-.5754zm-7.4458 1.0525.0042.5581.689-.5694a5.3413 5.3413 0 0 0-.693.0113zm-6.487 1.6948-2.6192.9825.5685.399c.6917-.2594 1.327-.6654 1.8661-1.2044ZM6.8415 16.943l-.575.6844a5.189 5.189 0 0 0 .6794-.1362z" }) + ] + } + ); +}); + +export { SiInfinityfree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.cjs new file mode 100644 index 000000000..bd5500c1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#22ADF6"; +const SiInfluxdb = React__namespace.forwardRef(function SiInfluxdb2({ title = "InfluxDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.778 14.482l-2.287-9.959c-.13-.545-.624-1.09-1.169-1.248L9.87.051C9.74 0 9.584 0 9.426 0c-.443 0-.909.18-1.222.443L.716 7.412C.3 7.776.092 8.504.222 9.024l2.445 10.662c.13.545.624 1.092 1.169 1.248l9.775 3.015c.13.051.285.051.443.051.443 0 .91-.18 1.223-.443l8.007-7.435c.418-.39.624-1.092.494-1.64zM10.962 2.417l7.175 2.21c.285.08.285.21 0 .286l-3.77.858c-.285.08-.674-.05-.883-.26l-2.626-2.834c-.235-.232-.184-.336.104-.26zm4.47 12.872c.079.286-.105.444-.39.365l-7.748-2.392c-.285-.079-.338-.313-.13-.52l5.93-5.514c.209-.209.443-.13.52.156zM2.667 8.267l6.293-5.85c.21-.209.545-.18.754.025L12.86 5.85c.209.21.18.545-.026.754l-6.293 5.85c-.21.21-.545.181-.754-.025L2.64 9.024a.536.536 0 01.026-.757zm1.536 9.284L2.54 10.244c-.08-.285.05-.34.234-.13L5.4 12.949c.209.209.285.624.209.909L4.462 17.55c-.079.285-.208.285-.26 0zm9.202 4.264l-8.217-2.522a.547.547 0 01-.364-.675l1.378-4.421a.547.547 0 01.675-.365l8.216 2.522c.285.079.443.39.364.675L14.08 21.45a.553.553 0 01-.674.365zm7.279-5.98L15.2 20.93c-.209.209-.31.13-.234-.155l1.144-3.694c.079-.285.39-.573.674-.624l3.77-.858c.288-.076.339.054.13.234zm.598-1.09l-4.523 1.039a.534.534 0 01-.65-.39l-1.922-8.372a.534.534 0 01.39-.65L19.1 5.335a.534.534 0 01.649.39l1.923 8.371c.079.31-.102.596-.39.65Z" }) + ] + } + ); +}); + +exports.default = SiInfluxdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.d.ts new file mode 100644 index 000000000..5d459f3b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#22ADF6"; +declare const SiInfluxdb: IconType; +export { SiInfluxdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.mjs new file mode 100644 index 000000000..1b214160c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfluxdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#22ADF6"; +const SiInfluxdb = React.forwardRef(function SiInfluxdb2({ title = "InfluxDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.778 14.482l-2.287-9.959c-.13-.545-.624-1.09-1.169-1.248L9.87.051C9.74 0 9.584 0 9.426 0c-.443 0-.909.18-1.222.443L.716 7.412C.3 7.776.092 8.504.222 9.024l2.445 10.662c.13.545.624 1.092 1.169 1.248l9.775 3.015c.13.051.285.051.443.051.443 0 .91-.18 1.223-.443l8.007-7.435c.418-.39.624-1.092.494-1.64zM10.962 2.417l7.175 2.21c.285.08.285.21 0 .286l-3.77.858c-.285.08-.674-.05-.883-.26l-2.626-2.834c-.235-.232-.184-.336.104-.26zm4.47 12.872c.079.286-.105.444-.39.365l-7.748-2.392c-.285-.079-.338-.313-.13-.52l5.93-5.514c.209-.209.443-.13.52.156zM2.667 8.267l6.293-5.85c.21-.209.545-.18.754.025L12.86 5.85c.209.21.18.545-.026.754l-6.293 5.85c-.21.21-.545.181-.754-.025L2.64 9.024a.536.536 0 01.026-.757zm1.536 9.284L2.54 10.244c-.08-.285.05-.34.234-.13L5.4 12.949c.209.209.285.624.209.909L4.462 17.55c-.079.285-.208.285-.26 0zm9.202 4.264l-8.217-2.522a.547.547 0 01-.364-.675l1.378-4.421a.547.547 0 01.675-.365l8.216 2.522c.285.079.443.39.364.675L14.08 21.45a.553.553 0 01-.674.365zm7.279-5.98L15.2 20.93c-.209.209-.31.13-.234-.155l1.144-3.694c.079-.285.39-.573.674-.624l3.77-.858c.288-.076.339.054.13.234zm.598-1.09l-4.523 1.039a.534.534 0 01-.65-.39l-1.922-8.372a.534.534 0 01.39-.65L19.1 5.335a.534.534 0 01.649.39l1.923 8.371c.079.31-.102.596-.39.65Z" }) + ] + } + ); +}); + +export { SiInfluxdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.cjs new file mode 100644 index 000000000..01cf5d90f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0098FF"; +const SiInfomaniak = React__namespace.forwardRef(function SiInfomaniak2({ title = "Infomaniak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.4 0A2.395 2.395 0 0 0 0 2.4v19.2C0 22.9296 1.0704 24 2.4 24h19.2c1.3296 0 2.4-1.0704 2.4-2.4V2.4C24 1.0704 22.9296 0 21.6 0H10.112v11.7119l3.648-4.128h6l-4.58 4.3506 4.868 8.1296h-5.52l-2.5938-5.0211L10.112 16.8v3.264H5.12V0Z" }) + ] + } + ); +}); + +exports.default = SiInfomaniak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.d.ts new file mode 100644 index 000000000..b9e2c005c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0098FF"; +declare const SiInfomaniak: IconType; +export { SiInfomaniak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.mjs new file mode 100644 index 000000000..45e6b52be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfomaniak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0098FF"; +const SiInfomaniak = React.forwardRef(function SiInfomaniak2({ title = "Infomaniak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.4 0A2.395 2.395 0 0 0 0 2.4v19.2C0 22.9296 1.0704 24 2.4 24h19.2c1.3296 0 2.4-1.0704 2.4-2.4V2.4C24 1.0704 22.9296 0 21.6 0H10.112v11.7119l3.648-4.128h6l-4.58 4.3506 4.868 8.1296h-5.52l-2.5938-5.0211L10.112 16.8v3.264H5.12V0Z" }) + ] + } + ); +}); + +export { SiInfomaniak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.cjs new file mode 100644 index 000000000..82709d518 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C6CAF"; +const SiInfoq = React__namespace.forwardRef(function SiInfoq2({ title = "InfoQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.931 8.321c-.448 0-.858.064-1.23.191a3.033 3.033 0 0 0-1.835 1.728c-.187.451-.28.962-.28 1.533 0 .819.19 1.508.564 2.07l.007.01c.018.027.036.054.056.08l.023.032a3.006 3.006 0 0 0 .143.18l.018.02a2.947 2.947 0 0 0 1.32.87 3.768 3.768 0 0 0 1.215.18c.33 0 .644-.035.94-.105a3.24 3.24 0 0 0 .81-.306 2.59 2.59 0 0 0 1.037.7c.243.089.505.147.786.175L24 14.504a2.581 2.581 0 0 1-.552-.122 2.343 2.343 0 0 1-.796-.465 2.885 2.885 0 0 0 .278-.454 3.05 3.05 0 0 0 .228-.633l.002-.006c.077-.318.116-.669.116-1.051 0-1.045-.305-1.88-.915-2.51-.61-.628-1.42-.942-2.43-.942ZM0 8.471v6.584h1.62V8.472Zm9.88 0c-.575 0-.989.115-1.241.344-.253.23-.38.604-.38 1.122a3.057 3.057 0 0 0 .02.342h-.753v.897h.752v3.879h1.48V11.176h.92v-.897h-.92v-.187c0-.2.044-.333.132-.4.087-.067.267-.1.54-.1h.248V8.567a3.35 3.35 0 0 0-.797-.095zm10.051 1.23c.522 0 .93.183 1.226.548.295.366.443.874.443 1.524 0 .277-.029.527-.083.753a2.384 2.384 0 0 1-.051.184l-.013.04a2.05 2.05 0 0 1-.056.142l-.027.06a1.829 1.829 0 0 1-.097.178l-.026.04a1.464 1.464 0 0 1-.322.353l-.008.006-.008.005a1.374 1.374 0 0 1-.27.162c-.003 0-.006.002-.008.003a1.527 1.527 0 0 1-.323.101h-.005l-.003.001c-.116.023-.239.034-.369.034-.521 0-.93-.183-1.225-.549a1.66 1.66 0 0 1-.102-.141l-.002-.002c-.031-.049-.06-.1-.087-.152l-.002-.004a1.925 1.925 0 0 1-.074-.163l-.012-.034a2.874 2.874 0 0 1-.164-1.017c0-.644.149-1.15.446-1.519.297-.369.704-.553 1.222-.553zm-6.577.3c-.79 0-1.43.24-1.915.72-.485.48-.728 1.109-.728 1.889 0 .072.004.141.008.21v.002a3.2 3.2 0 0 0 .024.239l.002.016c.01.07.022.139.036.206l.012.052a2.639 2.639 0 0 0 .126.395l.032.072c.021.046.042.091.066.135l.05.089c.023.036.044.073.068.109.027.041.058.08.088.12l.05.066a2.382 2.382 0 0 0 1.253.793c.085.022.172.04.26.055h.001c.18.03.368.045.567.045.793 0 1.433-.239 1.92-.717.058-.056.112-.115.163-.176v-.002c.036-.042.067-.086.098-.13.016-.02.033-.041.047-.063.032-.047.06-.096.088-.146.011-.02.024-.038.034-.058.031-.057.058-.117.084-.178l.015-.035c.028-.068.053-.138.075-.21l.004-.012v-.003a2.667 2.667 0 0 0 .099-.49 3.29 3.29 0 0 0 .02-.262v-.003c0-.04.004-.079.004-.12 0-.782-.242-1.412-.726-1.89s-1.126-.717-1.925-.717zm-7.74.046c-.298 0-.567.047-.807.14-.239.095-.454.238-.645.429v-.455h-1.48v4.894h1.48V12.173c0-.352.063-.6.19-.744.126-.144.338-.216.635-.216.252 0 .436.077.553.232.116.154.175.397.175.728v2.882h1.48V12.1c0-.695-.13-1.21-.39-1.548-.26-.337-.657-.505-1.19-.505zm7.74 1.102a.99.99 0 0 1 .825.396c.205.264.307.619.307 1.065 0 .055-.001.108-.004.16v.002c-.003.046-.008.09-.013.134v.003l-.013.083c-.003.018-.005.037-.009.054-.004.023-.01.046-.015.068a1.8 1.8 0 0 1-.075.242 1.397 1.397 0 0 1-.092.184l-.02.035a1.247 1.247 0 0 1-.068.096.992.992 0 0 1-.823.396.988.988 0 0 1-.822-.394 1.236 1.236 0 0 1-.065-.093l-.027-.045a1.29 1.29 0 0 1-.107-.232l-.012-.034a1.662 1.662 0 0 1-.026-.088l-.002-.007a2.03 2.03 0 0 1-.06-.364 2.637 2.637 0 0 1-.008-.2c0-.44.103-.794.31-1.06.206-.268.479-.401.819-.401z" }) + ] + } + ); +}); + +exports.default = SiInfoq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.d.ts new file mode 100644 index 000000000..e367f8abd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C6CAF"; +declare const SiInfoq: IconType; +export { SiInfoq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.mjs new file mode 100644 index 000000000..7ee0d6e53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfoq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C6CAF"; +const SiInfoq = React.forwardRef(function SiInfoq2({ title = "InfoQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.931 8.321c-.448 0-.858.064-1.23.191a3.033 3.033 0 0 0-1.835 1.728c-.187.451-.28.962-.28 1.533 0 .819.19 1.508.564 2.07l.007.01c.018.027.036.054.056.08l.023.032a3.006 3.006 0 0 0 .143.18l.018.02a2.947 2.947 0 0 0 1.32.87 3.768 3.768 0 0 0 1.215.18c.33 0 .644-.035.94-.105a3.24 3.24 0 0 0 .81-.306 2.59 2.59 0 0 0 1.037.7c.243.089.505.147.786.175L24 14.504a2.581 2.581 0 0 1-.552-.122 2.343 2.343 0 0 1-.796-.465 2.885 2.885 0 0 0 .278-.454 3.05 3.05 0 0 0 .228-.633l.002-.006c.077-.318.116-.669.116-1.051 0-1.045-.305-1.88-.915-2.51-.61-.628-1.42-.942-2.43-.942ZM0 8.471v6.584h1.62V8.472Zm9.88 0c-.575 0-.989.115-1.241.344-.253.23-.38.604-.38 1.122a3.057 3.057 0 0 0 .02.342h-.753v.897h.752v3.879h1.48V11.176h.92v-.897h-.92v-.187c0-.2.044-.333.132-.4.087-.067.267-.1.54-.1h.248V8.567a3.35 3.35 0 0 0-.797-.095zm10.051 1.23c.522 0 .93.183 1.226.548.295.366.443.874.443 1.524 0 .277-.029.527-.083.753a2.384 2.384 0 0 1-.051.184l-.013.04a2.05 2.05 0 0 1-.056.142l-.027.06a1.829 1.829 0 0 1-.097.178l-.026.04a1.464 1.464 0 0 1-.322.353l-.008.006-.008.005a1.374 1.374 0 0 1-.27.162c-.003 0-.006.002-.008.003a1.527 1.527 0 0 1-.323.101h-.005l-.003.001c-.116.023-.239.034-.369.034-.521 0-.93-.183-1.225-.549a1.66 1.66 0 0 1-.102-.141l-.002-.002c-.031-.049-.06-.1-.087-.152l-.002-.004a1.925 1.925 0 0 1-.074-.163l-.012-.034a2.874 2.874 0 0 1-.164-1.017c0-.644.149-1.15.446-1.519.297-.369.704-.553 1.222-.553zm-6.577.3c-.79 0-1.43.24-1.915.72-.485.48-.728 1.109-.728 1.889 0 .072.004.141.008.21v.002a3.2 3.2 0 0 0 .024.239l.002.016c.01.07.022.139.036.206l.012.052a2.639 2.639 0 0 0 .126.395l.032.072c.021.046.042.091.066.135l.05.089c.023.036.044.073.068.109.027.041.058.08.088.12l.05.066a2.382 2.382 0 0 0 1.253.793c.085.022.172.04.26.055h.001c.18.03.368.045.567.045.793 0 1.433-.239 1.92-.717.058-.056.112-.115.163-.176v-.002c.036-.042.067-.086.098-.13.016-.02.033-.041.047-.063.032-.047.06-.096.088-.146.011-.02.024-.038.034-.058.031-.057.058-.117.084-.178l.015-.035c.028-.068.053-.138.075-.21l.004-.012v-.003a2.667 2.667 0 0 0 .099-.49 3.29 3.29 0 0 0 .02-.262v-.003c0-.04.004-.079.004-.12 0-.782-.242-1.412-.726-1.89s-1.126-.717-1.925-.717zm-7.74.046c-.298 0-.567.047-.807.14-.239.095-.454.238-.645.429v-.455h-1.48v4.894h1.48V12.173c0-.352.063-.6.19-.744.126-.144.338-.216.635-.216.252 0 .436.077.553.232.116.154.175.397.175.728v2.882h1.48V12.1c0-.695-.13-1.21-.39-1.548-.26-.337-.657-.505-1.19-.505zm7.74 1.102a.99.99 0 0 1 .825.396c.205.264.307.619.307 1.065 0 .055-.001.108-.004.16v.002c-.003.046-.008.09-.013.134v.003l-.013.083c-.003.018-.005.037-.009.054-.004.023-.01.046-.015.068a1.8 1.8 0 0 1-.075.242 1.397 1.397 0 0 1-.092.184l-.02.035a1.247 1.247 0 0 1-.068.096.992.992 0 0 1-.823.396.988.988 0 0 1-.822-.394 1.236 1.236 0 0 1-.065-.093l-.027-.045a1.29 1.29 0 0 1-.107-.232l-.012-.034a1.662 1.662 0 0 1-.026-.088l-.002-.007a2.03 2.03 0 0 1-.06-.364 2.637 2.637 0 0 1-.008-.2c0-.44.103-.794.31-1.06.206-.268.479-.401.819-.401z" }) + ] + } + ); +}); + +export { SiInfoq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.cjs new file mode 100644 index 000000000..5075c68bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007CC3"; +const SiInfosys = React__namespace.forwardRef(function SiInfosys2({ title = "Infosys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.2734 7.5703c-.3984 0-.7246.3282-.7246.7266 0 .4013.3262.7246.7246.7246.3982 0 .7266-.3233.7266-.7246 0-.3984-.3284-.7266-.7266-.7266zm0 .1074c.3395 0 .6192.2795.6192.6192 0 .3396-.2797.6172-.6192.6172-.3397 0-.6171-.2776-.6171-.6172 0-.3397.2774-.6192.6171-.6192zm-15.1367.0547c-.9001 0-1.549.5917-1.6387 1.6406h-.6953v.5215h.6856c.0028 1.6664-.002 3.334-.002 4.998h.7774c-.0022-1.6659-.002-3.3319-.002-4.998h1.748c-.646.5242-1.0663 1.3739-1.0663 2.334 0 1.593 1.1564 2.8848 2.582 2.8848 1.4258 0 2.582-1.2918 2.582-2.8848 0-.1896-.0174-.3753-.0488-.5547.2565.4131.7488.6133 1.4082.8985.7784.329 1.2129.6165 1.2129 1.1074 0 .5885-.556.8955-1.1817.8906-.611 0-1.0883-.249-1.6191-.7305v.9239c.3239.2088.8256.3281 1.3691.3281.6844-.0023 2.0918-.249 2.0918-1.6758-.0044-.8557-.715-1.2239-1.4863-1.5586-.9383-.4653-1.2965-.5629-1.2871-1.0957 0-.7088.6178-.9219 1.0996-.9219.2099 0 .3891.0293.5586.086.3163.1194.4209.3553.5332.6113.5283 1.2356 1.0344 2.4811 1.5488 3.7227-.2464.5637-.526 1.1519-.7168 1.5273l-.0039.0098-.1601.2969-.1797.336h.7617c.3322-.7342 1.7436-4.1688 2.0469-4.9083.1995.533.6857.7467 1.4297 1.0684.7783.329 1.2148.6166 1.2148 1.1074 0 .5886-.5562.8936-1.1816.8887-.6348 0-1.1257-.2685-1.6817-.7871l-.0507-.041v.9413c.3115.259.8713.4102 1.4824.4102.6844-.0022 2.0918-.249 2.0918-1.6758-.0042-.8557-.7151-1.2258-1.4863-1.5605-.9384-.4654-1.2593-.563-1.25-1.0957 0-.709.5787-.9219 1.0605-.9219.5483 0 .8958.2037 1.379.5547V9.584c-.3923-.1381-.7212-.1915-1.1642-.1895-.8912-.0018-1.6966.3234-1.9004 1.0762l-1.1054 2.7344-.1153.3437-.1015-.3437c-.5022-1.2089-.9934-2.4236-1.4863-3.6309-.3154-.0828-.8307-.201-1.1934-.1953-.0377-.0007-.0758-.0002-.1152 0-1.0302-.002-2.0235.4332-2.0235 1.457 0 .0596.0022.1155.006.17-.412-.9813-1.3036-1.6602-2.338-1.6602-.1245 0-.2472.0085-.3672.0273H7.254c-.1194-.733.2228-1.1503.7383-1.1503.6472-.0006.9242.192 1.205.4511 0 0 .0195-.0007.0274 0 .0038-.2457.002-.5318.002-.7949-.185-.0857-.5061-.1465-1.0899-.1465zM0 7.756v7.1367h.8594V7.7559zm23 .1386v.7657h.1387v-.3086h.164l.1192.3086h.1543l-.1407-.3301c.0494-.0248.1329-.0518.1329-.1875 0-.2224-.1673-.248-.3125-.248zm.1387.1328h.1543c.0834 0 .1289.0337.1289.1016 0 .068-.0524.0996-.1172.0996h-.166zM4.1719 9.3555c-.945 0-1.3429.3359-1.6582.6738a.2474.2474 0 00-.0352.0644h-.0078v-.043l-.0098-.623H1.707v5.4649h.7754v-3.9961c.0226-.4905.7134-.9746 1.252-.9746.6477 0 1.1777.4364 1.1777 1.039v3.9317h.7754c-.0019-1.429-.002-2.858-.002-4.2871-.0234-.4835-.6094-1.25-1.5136-1.25zm6.2832.5566c.9741-.0175 1.7825 1.0214 1.8047 2.3184.022 1.297-.7504 2.3614-1.7246 2.3789-.9742.0171-1.7825-1.0195-1.8047-2.3164-.0221-1.2971.7503-2.3634 1.7246-2.3809Z" }) + ] + } + ); +}); + +exports.default = SiInfosys; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.d.ts new file mode 100644 index 000000000..2006410b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007CC3"; +declare const SiInfosys: IconType; +export { SiInfosys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.mjs new file mode 100644 index 000000000..3325a386b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfosys.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007CC3"; +const SiInfosys = React.forwardRef(function SiInfosys2({ title = "Infosys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.2734 7.5703c-.3984 0-.7246.3282-.7246.7266 0 .4013.3262.7246.7246.7246.3982 0 .7266-.3233.7266-.7246 0-.3984-.3284-.7266-.7266-.7266zm0 .1074c.3395 0 .6192.2795.6192.6192 0 .3396-.2797.6172-.6192.6172-.3397 0-.6171-.2776-.6171-.6172 0-.3397.2774-.6192.6171-.6192zm-15.1367.0547c-.9001 0-1.549.5917-1.6387 1.6406h-.6953v.5215h.6856c.0028 1.6664-.002 3.334-.002 4.998h.7774c-.0022-1.6659-.002-3.3319-.002-4.998h1.748c-.646.5242-1.0663 1.3739-1.0663 2.334 0 1.593 1.1564 2.8848 2.582 2.8848 1.4258 0 2.582-1.2918 2.582-2.8848 0-.1896-.0174-.3753-.0488-.5547.2565.4131.7488.6133 1.4082.8985.7784.329 1.2129.6165 1.2129 1.1074 0 .5885-.556.8955-1.1817.8906-.611 0-1.0883-.249-1.6191-.7305v.9239c.3239.2088.8256.3281 1.3691.3281.6844-.0023 2.0918-.249 2.0918-1.6758-.0044-.8557-.715-1.2239-1.4863-1.5586-.9383-.4653-1.2965-.5629-1.2871-1.0957 0-.7088.6178-.9219 1.0996-.9219.2099 0 .3891.0293.5586.086.3163.1194.4209.3553.5332.6113.5283 1.2356 1.0344 2.4811 1.5488 3.7227-.2464.5637-.526 1.1519-.7168 1.5273l-.0039.0098-.1601.2969-.1797.336h.7617c.3322-.7342 1.7436-4.1688 2.0469-4.9083.1995.533.6857.7467 1.4297 1.0684.7783.329 1.2148.6166 1.2148 1.1074 0 .5886-.5562.8936-1.1816.8887-.6348 0-1.1257-.2685-1.6817-.7871l-.0507-.041v.9413c.3115.259.8713.4102 1.4824.4102.6844-.0022 2.0918-.249 2.0918-1.6758-.0042-.8557-.7151-1.2258-1.4863-1.5605-.9384-.4654-1.2593-.563-1.25-1.0957 0-.709.5787-.9219 1.0605-.9219.5483 0 .8958.2037 1.379.5547V9.584c-.3923-.1381-.7212-.1915-1.1642-.1895-.8912-.0018-1.6966.3234-1.9004 1.0762l-1.1054 2.7344-.1153.3437-.1015-.3437c-.5022-1.2089-.9934-2.4236-1.4863-3.6309-.3154-.0828-.8307-.201-1.1934-.1953-.0377-.0007-.0758-.0002-.1152 0-1.0302-.002-2.0235.4332-2.0235 1.457 0 .0596.0022.1155.006.17-.412-.9813-1.3036-1.6602-2.338-1.6602-.1245 0-.2472.0085-.3672.0273H7.254c-.1194-.733.2228-1.1503.7383-1.1503.6472-.0006.9242.192 1.205.4511 0 0 .0195-.0007.0274 0 .0038-.2457.002-.5318.002-.7949-.185-.0857-.5061-.1465-1.0899-.1465zM0 7.756v7.1367h.8594V7.7559zm23 .1386v.7657h.1387v-.3086h.164l.1192.3086h.1543l-.1407-.3301c.0494-.0248.1329-.0518.1329-.1875 0-.2224-.1673-.248-.3125-.248zm.1387.1328h.1543c.0834 0 .1289.0337.1289.1016 0 .068-.0524.0996-.1172.0996h-.166zM4.1719 9.3555c-.945 0-1.3429.3359-1.6582.6738a.2474.2474 0 00-.0352.0644h-.0078v-.043l-.0098-.623H1.707v5.4649h.7754v-3.9961c.0226-.4905.7134-.9746 1.252-.9746.6477 0 1.1777.4364 1.1777 1.039v3.9317h.7754c-.0019-1.429-.002-2.858-.002-4.2871-.0234-.4835-.6094-1.25-1.5136-1.25zm6.2832.5566c.9741-.0175 1.7825 1.0214 1.8047 2.3184.022 1.297-.7504 2.3614-1.7246 2.3789-.9742.0171-1.7825-1.0195-1.8047-2.3164-.0221-1.2971.7503-2.3634 1.7246-2.3809Z" }) + ] + } + ); +}); + +export { SiInfosys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.cjs new file mode 100644 index 000000000..3a2e5b77c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB44B8"; +const SiInfracost = React__namespace.forwardRef(function SiInfracost2({ title = "Infracost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.5526 0.44419L8.04 7.98337H12.0699C14.7831 7.98337 16.02 10.546 16.02 11.9876V23.3593C16.02 23.7131 16.3058 24 16.6584 24H23.3217C23.6743 24 23.9601 23.7141 23.9606 23.3603C23.9652 20.0654 24 13.2819 24 7.98337C24 3.34017 20.3118 0.33410 16.6801 0.00515C16.2585 -0.03303 15.8518 0.14382 15.5526 0.44419Z M0 0.64C0 0.28654 0.28797 0 0.6432 0H1.4472C1.80243 0 2.0904 0.28654 2.0904 0.64V7.36C2.0904 7.71346 1.80243 8 1.4472 8H0.6432C0.28797 8 0 7.71346 0 7.36V0.64ZM3.618 0C3.26277 0 2.9748 0.28654 2.9748 0.64V7.36C2.9748 7.71346 3.26277 8 3.618 8H4.422C4.77723 8 5.0652 7.71346 5.0652 7.36V0.64C5.0652 0.28654 4.77723 0 4.422 0H3.618ZM6.5928 0C6.23757 0 5.9496 0.28654 5.9496 0.64V7.36C5.9496 7.71346 6.23757 8 6.5928 8H8.04L6.32638 9.7051C6.08514 9.94514 5.9496 10.2707 5.9496 10.6102V23.36C5.9496 23.7135 6.23757 24 6.5928 24H7.3968C7.75203 24 8.04 23.7135 8.04 23.36V8V0.64C8.04 0.28654 7.75203 0 7.3968 0H6.5928ZM0.37678 15.6251C0.13553 15.8651 0 16.1907 0 16.5302V23.36C0 23.7135 0.28797 24 0.6432 24H1.4472C1.80243 24 2.0904 23.7135 2.0904 23.36V14.3063C2.0904 14.1637 1.9172 14.0923 1.81589 14.1931L0.37678 15.6251ZM2.9748 13.5702C2.9748 13.2307 3.11033 12.9051 3.35158 12.6651L4.7907 11.2331C4.892 11.1323 5.0652 11.2037 5.0652 11.3463V23.36C5.0652 23.7135 4.77723 24 4.422 24H3.618C3.26277 24 2.9748 23.7135 2.9748 23.36V13.5702Z" }) + ] + } + ); +}); + +exports.default = SiInfracost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.d.ts new file mode 100644 index 000000000..efa68f29b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB44B8"; +declare const SiInfracost: IconType; +export { SiInfracost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.mjs new file mode 100644 index 000000000..ed740ce73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfracost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB44B8"; +const SiInfracost = React.forwardRef(function SiInfracost2({ title = "Infracost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.5526 0.44419L8.04 7.98337H12.0699C14.7831 7.98337 16.02 10.546 16.02 11.9876V23.3593C16.02 23.7131 16.3058 24 16.6584 24H23.3217C23.6743 24 23.9601 23.7141 23.9606 23.3603C23.9652 20.0654 24 13.2819 24 7.98337C24 3.34017 20.3118 0.33410 16.6801 0.00515C16.2585 -0.03303 15.8518 0.14382 15.5526 0.44419Z M0 0.64C0 0.28654 0.28797 0 0.6432 0H1.4472C1.80243 0 2.0904 0.28654 2.0904 0.64V7.36C2.0904 7.71346 1.80243 8 1.4472 8H0.6432C0.28797 8 0 7.71346 0 7.36V0.64ZM3.618 0C3.26277 0 2.9748 0.28654 2.9748 0.64V7.36C2.9748 7.71346 3.26277 8 3.618 8H4.422C4.77723 8 5.0652 7.71346 5.0652 7.36V0.64C5.0652 0.28654 4.77723 0 4.422 0H3.618ZM6.5928 0C6.23757 0 5.9496 0.28654 5.9496 0.64V7.36C5.9496 7.71346 6.23757 8 6.5928 8H8.04L6.32638 9.7051C6.08514 9.94514 5.9496 10.2707 5.9496 10.6102V23.36C5.9496 23.7135 6.23757 24 6.5928 24H7.3968C7.75203 24 8.04 23.7135 8.04 23.36V8V0.64C8.04 0.28654 7.75203 0 7.3968 0H6.5928ZM0.37678 15.6251C0.13553 15.8651 0 16.1907 0 16.5302V23.36C0 23.7135 0.28797 24 0.6432 24H1.4472C1.80243 24 2.0904 23.7135 2.0904 23.36V14.3063C2.0904 14.1637 1.9172 14.0923 1.81589 14.1931L0.37678 15.6251ZM2.9748 13.5702C2.9748 13.2307 3.11033 12.9051 3.35158 12.6651L4.7907 11.2331C4.892 11.1323 5.0652 11.2037 5.0652 11.3463V23.36C5.0652 23.7135 4.77723 24 4.422 24H3.618C3.26277 24 2.9748 23.7135 2.9748 23.36V13.5702Z" }) + ] + } + ); +}); + +export { SiInfracost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.cjs new file mode 100644 index 000000000..6d14c5ac4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8000"; +const SiInfuse = React__namespace.forwardRef(function SiInfuse2({ title = "Infuse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.802 7.736c0 .502-.035.8-.146 1.24a5.1 5.1 0 0 1-.968 1.932c-.176.218-.574.61-.778.764-.077.06-2.619 1.894-5.65 4.077a842 842 0 0 0-5.638 4.077 2.6 2.6 0 0 0-.55.715 2.39 2.39 0 0 0 1.003 3.18c.703.379 1.622.372 2.293-.02a2322 2322 0 0 0 11.378-8.184 6 6 0 0 0 .845-.849 4.78 4.78 0 0 0 .76-4.416 4.86 4.86 0 0 0-1.354-2.068 15 15 0 0 0-.673-.518c-.257-.185-.48-.35-.497-.361-.02-.017-.025.089-.025.43M4.31 5.62c-.903.2-1.573.844-1.822 1.75l-.066.234v7.712l.064.227c.302 1.093 1.212 1.8 2.316 1.8 1.158 0 2.12-.794 2.349-1.945.044-.223.044-7.654 0-7.877a2.5 2.5 0 0 0-.23-.656A2.38 2.38 0 0 0 5.393 5.64a3 3 0 0 0-1.083-.02M6.642.03a4.79 4.79 0 0 0-4.126 3.777c-.054.263-.124.912-.1.936a1 1 0 0 0 .208-.12 4.2 4.2 0 0 1 1.393-.572c.335-.073 1.005-.09 1.366-.037.596.089 1.104.295 1.705.698.103.07 1.913 1.376 4.02 2.902 2.107 1.529 3.884 2.804 3.95 2.837.098.049.15.058.328.058.185 0 .228-.009.352-.068.187-.091.654-.555.834-.834.882-1.341.71-3.078-.41-4.185-.143-.143-.938-.726-3.273-2.417C11.196 1.779 9.706.716 9.584.645A4.8 4.8 0 0 0 6.642.03" }) + ] + } + ); +}); + +exports.default = SiInfuse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.d.ts new file mode 100644 index 000000000..7bdad604c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8000"; +declare const SiInfuse: IconType; +export { SiInfuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.mjs new file mode 100644 index 000000000..407ff5be0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInfuse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8000"; +const SiInfuse = React.forwardRef(function SiInfuse2({ title = "Infuse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.802 7.736c0 .502-.035.8-.146 1.24a5.1 5.1 0 0 1-.968 1.932c-.176.218-.574.61-.778.764-.077.06-2.619 1.894-5.65 4.077a842 842 0 0 0-5.638 4.077 2.6 2.6 0 0 0-.55.715 2.39 2.39 0 0 0 1.003 3.18c.703.379 1.622.372 2.293-.02a2322 2322 0 0 0 11.378-8.184 6 6 0 0 0 .845-.849 4.78 4.78 0 0 0 .76-4.416 4.86 4.86 0 0 0-1.354-2.068 15 15 0 0 0-.673-.518c-.257-.185-.48-.35-.497-.361-.02-.017-.025.089-.025.43M4.31 5.62c-.903.2-1.573.844-1.822 1.75l-.066.234v7.712l.064.227c.302 1.093 1.212 1.8 2.316 1.8 1.158 0 2.12-.794 2.349-1.945.044-.223.044-7.654 0-7.877a2.5 2.5 0 0 0-.23-.656A2.38 2.38 0 0 0 5.393 5.64a3 3 0 0 0-1.083-.02M6.642.03a4.79 4.79 0 0 0-4.126 3.777c-.054.263-.124.912-.1.936a1 1 0 0 0 .208-.12 4.2 4.2 0 0 1 1.393-.572c.335-.073 1.005-.09 1.366-.037.596.089 1.104.295 1.705.698.103.07 1.913 1.376 4.02 2.902 2.107 1.529 3.884 2.804 3.95 2.837.098.049.15.058.328.058.185 0 .228-.009.352-.068.187-.091.654-.555.834-.834.882-1.341.71-3.078-.41-4.185-.143-.143-.938-.726-3.273-2.417C11.196 1.779 9.706.716 9.584.645A4.8 4.8 0 0 0 6.642.03" }) + ] + } + ); +}); + +export { SiInfuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.cjs new file mode 100644 index 000000000..42d4ba266 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#783CBD"; +const SiIngress = React__namespace.forwardRef(function SiIngress2({ title = "Ingress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.55 6.55v10.9c0 .434-.184.749-.55.95l-9.45 5.45c-.367.2-.733.2-1.1 0L2 18.4c-.366-.201-.55-.516-.55-.95V6.55c0-.434.184-.749.55-.95L11.45.15c.367-.2.733-.2 1.1 0L22 5.6c.366.201.55.516.55.95zM21 17.8l-3.9-2.25.5-.9 3.9 2.249V6.549l-.05-.048-8.95-5.2v4.5h-1v-4.5l-9 5.2v10.398l3.9-2.248.5.899L3 17.8l8.95 5.15h.1L21 17.8zM4.55 7.675c0-.016.016-.025.05-.025h14.8c.033 0 .05.009.05.025v.075l-7.4 12.799c0 .034-.017.05-.05.05-.034 0-.05-.016-.05-.05L4.55 7.75v-.075zm6.95 5.076c0-.301-.15-.533-.45-.7L6.9 9.65h-.05v.05l4.6 7.9c.033 0 .05-.019.05-.051v-4.8zm.9-1.601l4.2-2.45H7.4l.05.051 4.15 2.399a.701.701 0 00.8 0zM17.15 9.7v-.05h-.05l-4.15 2.4c-.3.167-.45.417-.45.749v4.8h.1l4.55-7.899z" }) + ] + } + ); +}); + +exports.default = SiIngress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.d.ts new file mode 100644 index 000000000..97c222ae1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#783CBD"; +declare const SiIngress: IconType; +export { SiIngress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.mjs new file mode 100644 index 000000000..adddc7475 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIngress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#783CBD"; +const SiIngress = React.forwardRef(function SiIngress2({ title = "Ingress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.55 6.55v10.9c0 .434-.184.749-.55.95l-9.45 5.45c-.367.2-.733.2-1.1 0L2 18.4c-.366-.201-.55-.516-.55-.95V6.55c0-.434.184-.749.55-.95L11.45.15c.367-.2.733-.2 1.1 0L22 5.6c.366.201.55.516.55.95zM21 17.8l-3.9-2.25.5-.9 3.9 2.249V6.549l-.05-.048-8.95-5.2v4.5h-1v-4.5l-9 5.2v10.398l3.9-2.248.5.899L3 17.8l8.95 5.15h.1L21 17.8zM4.55 7.675c0-.016.016-.025.05-.025h14.8c.033 0 .05.009.05.025v.075l-7.4 12.799c0 .034-.017.05-.05.05-.034 0-.05-.016-.05-.05L4.55 7.75v-.075zm6.95 5.076c0-.301-.15-.533-.45-.7L6.9 9.65h-.05v.05l4.6 7.9c.033 0 .05-.019.05-.051v-4.8zm.9-1.601l4.2-2.45H7.4l.05.051 4.15 2.399a.701.701 0 00.8 0zM17.15 9.7v-.05h-.05l-4.15 2.4c-.3.167-.45.417-.45.749v4.8h.1l4.55-7.899z" }) + ] + } + ); +}); + +export { SiIngress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.cjs new file mode 100644 index 000000000..1b5fabe61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7A78D7"; +const SiInkdrop = React__namespace.forwardRef(function SiInkdrop2({ title = "Inkdrop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.8538 1.8124C9.423.8338 10.471.1434 11.607.0204c.9389-.1016 1.9145.1801 2.6558.7704a3.665 3.665 0 0 1 .873 1.0085c2.1647 3.7212 4.314 7.4514 6.471 11.1772.3424.5943.5005 1.282.4751 1.9621-.0216.5791-.1762 1.1527-.4632 1.6586-1.067 1.8622-2.1418 3.72-3.2127 5.58-.6375 1.1018-1.868 1.8129-3.134 1.8209-2.1693.0043-4.3387 0-6.508 0-1.2684-.0027-2.4975-.711-3.1373-1.8003-1.0817-1.8593-2.1556-3.7232-3.2335-5.585-.6362-1.1042-.6358-2.5271-.0076-3.6282 2.1483-3.7285 4.312-7.4481 6.468-11.1721ZM4.625 14.1495a1.1916 1.1916 0 0 0 0 1.183c1.074 1.864 2.085 3.6278 3.1744 5.4828a1.1875 1.1875 0 0 0 1.019.5845c2.1693.0046 4.2194.0135 6.3887 0a1.1873 1.1873 0 0 0 1.0179-.5912c1.0746-1.858 2.0949-3.6112 3.154-5.4781a1.1876 1.1876 0 0 0-.004-1.176c-2.1496-3.73-4.1723-7.26-6.3524-10.9724-.2298-.3875-.666-.6167-1.1181-.5809a1.1856 1.1856 0 0 0-.9324.5853 2974.9829 2974.9829 0 0 0-6.347 10.963Zm8.4659 4.0637a1.2598 1.2598 0 0 1-2.182 0L8.745 14.465a1.2597 1.2597 0 0 1 1.091-1.8896h4.328a1.2597 1.2597 0 0 1 1.091 1.8896l-2.164 3.7481Z" }) + ] + } + ); +}); + +exports.default = SiInkdrop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.d.ts new file mode 100644 index 000000000..825473549 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7A78D7"; +declare const SiInkdrop: IconType; +export { SiInkdrop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.mjs new file mode 100644 index 000000000..9f6784609 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInkdrop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7A78D7"; +const SiInkdrop = React.forwardRef(function SiInkdrop2({ title = "Inkdrop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.8538 1.8124C9.423.8338 10.471.1434 11.607.0204c.9389-.1016 1.9145.1801 2.6558.7704a3.665 3.665 0 0 1 .873 1.0085c2.1647 3.7212 4.314 7.4514 6.471 11.1772.3424.5943.5005 1.282.4751 1.9621-.0216.5791-.1762 1.1527-.4632 1.6586-1.067 1.8622-2.1418 3.72-3.2127 5.58-.6375 1.1018-1.868 1.8129-3.134 1.8209-2.1693.0043-4.3387 0-6.508 0-1.2684-.0027-2.4975-.711-3.1373-1.8003-1.0817-1.8593-2.1556-3.7232-3.2335-5.585-.6362-1.1042-.6358-2.5271-.0076-3.6282 2.1483-3.7285 4.312-7.4481 6.468-11.1721ZM4.625 14.1495a1.1916 1.1916 0 0 0 0 1.183c1.074 1.864 2.085 3.6278 3.1744 5.4828a1.1875 1.1875 0 0 0 1.019.5845c2.1693.0046 4.2194.0135 6.3887 0a1.1873 1.1873 0 0 0 1.0179-.5912c1.0746-1.858 2.0949-3.6112 3.154-5.4781a1.1876 1.1876 0 0 0-.004-1.176c-2.1496-3.73-4.1723-7.26-6.3524-10.9724-.2298-.3875-.666-.6167-1.1181-.5809a1.1856 1.1856 0 0 0-.9324.5853 2974.9829 2974.9829 0 0 0-6.347 10.963Zm8.4659 4.0637a1.2598 1.2598 0 0 1-2.182 0L8.745 14.465a1.2597 1.2597 0 0 1 1.091-1.8896h4.328a1.2597 1.2597 0 0 1 1.091 1.8896l-2.164 3.7481Z" }) + ] + } + ); +}); + +export { SiInkdrop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.cjs new file mode 100644 index 000000000..493e09a91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiInkscape = React__namespace.forwardRef(function SiInkscape2({ title = "Inkscape", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.666 14.871c.237.147 3.818.875 4.693 1.02.303.064.088.376-.33.587-.943.251-5.517-1.607-4.363-1.607zm5.647-13.264l3.505 3.56c.333.34.328.998.142 1.187l-1.74-1.392-.342 2.061-1.455-.767-2.328 1.47-.771-3.1L9.073 6.79H7.16c-.78 0-.871-.99-.163-1.698 1.237-1.335 2.657-2.696 3.429-3.485.776-.793 2.127-.77 2.887 0zM9.786.97l-8.86 9.066c-2.993 3.707 2.038 3.276 4.194 4.343.774.791-2.965 1.375-2.191 2.166.773.791 4.678 1.524 5.453 2.314.773.791-1.584 1.63-.81 2.42.773.792 2.563.042 2.898 1.868.238 1.304 3.224.56 4.684-.508.774-.791-1.48-.717-.706-1.508 1.923-1.967 3.715-.714 4.373-2.686.325-.974-2.832-1.501-2.057-2.292 2.226-1.3 9.919-2.146 6.268-5.796L13.85.97c-1.123-1.078-2.998-1.09-4.063 0zm10.177 17.475c0 .45 3.314.745 3.314-.106-.472-1.366-2.922-1.274-3.314.106zm-14.928 2.39c.784.679 1.997-.169 2.36-1.116-.76-1.01-3.607.037-2.36 1.116zm14.512-1.466c-1.011.908.114 1.828 1.111 1.242.222-.225-.006-1.016-1.11-1.242Z" }) + ] + } + ); +}); + +exports.default = SiInkscape; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.d.ts new file mode 100644 index 000000000..a521355e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiInkscape: IconType; +export { SiInkscape as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.mjs new file mode 100644 index 000000000..c34df2d5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInkscape.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiInkscape = React.forwardRef(function SiInkscape2({ title = "Inkscape", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.666 14.871c.237.147 3.818.875 4.693 1.02.303.064.088.376-.33.587-.943.251-5.517-1.607-4.363-1.607zm5.647-13.264l3.505 3.56c.333.34.328.998.142 1.187l-1.74-1.392-.342 2.061-1.455-.767-2.328 1.47-.771-3.1L9.073 6.79H7.16c-.78 0-.871-.99-.163-1.698 1.237-1.335 2.657-2.696 3.429-3.485.776-.793 2.127-.77 2.887 0zM9.786.97l-8.86 9.066c-2.993 3.707 2.038 3.276 4.194 4.343.774.791-2.965 1.375-2.191 2.166.773.791 4.678 1.524 5.453 2.314.773.791-1.584 1.63-.81 2.42.773.792 2.563.042 2.898 1.868.238 1.304 3.224.56 4.684-.508.774-.791-1.48-.717-.706-1.508 1.923-1.967 3.715-.714 4.373-2.686.325-.974-2.832-1.501-2.057-2.292 2.226-1.3 9.919-2.146 6.268-5.796L13.85.97c-1.123-1.078-2.998-1.09-4.063 0zm10.177 17.475c0 .45 3.314.745 3.314-.106-.472-1.366-2.922-1.274-3.314.106zm-14.928 2.39c.784.679 1.997-.169 2.36-1.116-.76-1.01-3.607.037-2.36 1.116zm14.512-1.466c-1.011.908.114 1.828 1.111 1.242.222-.225-.006-1.016-1.11-1.242Z" }) + ] + } + ); +}); + +export { SiInkscape as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.cjs new file mode 100644 index 000000000..cc6e13202 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1875F3"; +const SiInoreader = React__namespace.forwardRef(function SiInoreader2({ title = "Inoreader", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0m3.6 4.8a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2" }) + ] + } + ); +}); + +exports.default = SiInoreader; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.d.ts new file mode 100644 index 000000000..a4e3b05c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1875F3"; +declare const SiInoreader: IconType; +export { SiInoreader as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.mjs new file mode 100644 index 000000000..ba8958596 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInoreader.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1875F3"; +const SiInoreader = React.forwardRef(function SiInoreader2({ title = "Inoreader", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0m3.6 4.8a3.6 3.6 0 1 0 0 7.2 3.6 3.6 0 0 0 0-7.2" }) + ] + } + ); +}); + +export { SiInoreader as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.cjs new file mode 100644 index 000000000..1c5e28078 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0DB4F"; +const SiInquirer = React__namespace.forwardRef(function SiInquirer2({ title = "Inquirer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.132 7.14v-.99h.992v-.992h5.752v.992h.793v.991h.992v2.777h-.992v.992h-.793v.992h-.992v.992h-.991v2.975h-1.786V12.1h.992v-.992h.992v-.991h.992v-.992h.991v-1.19h-.991v-.992H9.917v.992h-.991v1.983H7.14V7.14Zm-2.578-.198H1.587v10.116h3.967v1.785H0V5.157h5.554zm12.892 0h3.967v10.116h-3.967v1.785H24V5.157h-5.554zm-7.339 10.116h1.786v1.785h-1.786z" }) + ] + } + ); +}); + +exports.default = SiInquirer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.d.ts new file mode 100644 index 000000000..17bb5997b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0DB4F"; +declare const SiInquirer: IconType; +export { SiInquirer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.mjs new file mode 100644 index 000000000..23ddf3fe0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInquirer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0DB4F"; +const SiInquirer = React.forwardRef(function SiInquirer2({ title = "Inquirer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.132 7.14v-.99h.992v-.992h5.752v.992h.793v.991h.992v2.777h-.992v.992h-.793v.992h-.992v.992h-.991v2.975h-1.786V12.1h.992v-.992h.992v-.991h.992v-.992h.991v-1.19h-.991v-.992H9.917v.992h-.991v1.983H7.14V7.14Zm-2.578-.198H1.587v10.116h3.967v1.785H0V5.157h5.554zm12.892 0h3.967v10.116h-3.967v1.785H24V5.157h-5.554zm-7.339 10.116h1.786v1.785h-1.786z" }) + ] + } + ); +}); + +export { SiInquirer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.cjs new file mode 100644 index 000000000..0c16c8b64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4000BF"; +const SiInsomnia = React__namespace.forwardRef(function SiInsomnia2({ title = "Insomnia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1356 3.4577c4.7179 0 8.5424 3.8245 8.5424 8.5424 0 4.7178-3.8245 8.5423-8.5424 8.5423-4.7178 0-8.5423-3.8245-8.5423-8.5423 0-1.153.2284-2.2527.6425-3.2562.6046.8233 1.5796 1.3579 2.6795 1.3579 1.8347 0 3.322-1.4874 3.322-3.3221 0-1.0999-.5345-2.0749-1.3579-2.6795 1.0036-.414 2.1032-.6425 3.2562-.6425zM12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0Zm0 1.2203c5.9534 0 10.7797 4.8263 10.7797 10.7797S17.9534 22.7797 12 22.7797 1.2203 17.9534 1.2203 12 6.0466 1.2203 12 1.2203Z" }) + ] + } + ); +}); + +exports.default = SiInsomnia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.d.ts new file mode 100644 index 000000000..19c812edd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4000BF"; +declare const SiInsomnia: IconType; +export { SiInsomnia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.mjs new file mode 100644 index 000000000..538365987 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInsomnia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4000BF"; +const SiInsomnia = React.forwardRef(function SiInsomnia2({ title = "Insomnia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.1356 3.4577c4.7179 0 8.5424 3.8245 8.5424 8.5424 0 4.7178-3.8245 8.5423-8.5424 8.5423-4.7178 0-8.5423-3.8245-8.5423-8.5423 0-1.153.2284-2.2527.6425-3.2562.6046.8233 1.5796 1.3579 2.6795 1.3579 1.8347 0 3.322-1.4874 3.322-3.3221 0-1.0999-.5345-2.0749-1.3579-2.6795 1.0036-.414 2.1032-.6425 3.2562-.6425zM12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0Zm0 1.2203c5.9534 0 10.7797 4.8263 10.7797 10.7797S17.9534 22.7797 12 22.7797 1.2203 17.9534 1.2203 12 6.0466 1.2203 12 1.2203Z" }) + ] + } + ); +}); + +export { SiInsomnia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.cjs new file mode 100644 index 000000000..32afb6e19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00E5FF"; +const SiInspire = React__namespace.forwardRef(function SiInspire2({ title = "INSPIRE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm3.873 3.6875c1.0359-.0008 1.8758.8391 1.875 1.875-.0003 1.035-.8399 1.8738-1.875 1.873C2.8387 7.4352 2.0003 6.5968 2 5.5625c-.0008-1.035.838-1.8747 1.873-1.875zm4.4903.5078h3.5312l6.7344 10.8125h.045V4.1953H22v16.1172h-3.5469l-6.7168-10.791h-.0468v10.791H8.3633V4.1953zm-6.123 4.7871s.013.0041 3.3886 0v11.2754H2.2402V8.9824z" }) + ] + } + ); +}); + +exports.default = SiInspire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.d.ts new file mode 100644 index 000000000..ef963831b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00E5FF"; +declare const SiInspire: IconType; +export { SiInspire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.mjs new file mode 100644 index 000000000..acdc5dc6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInspire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00E5FF"; +const SiInspire = React.forwardRef(function SiInspire2({ title = "INSPIRE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm3.873 3.6875c1.0359-.0008 1.8758.8391 1.875 1.875-.0003 1.035-.8399 1.8738-1.875 1.873C2.8387 7.4352 2.0003 6.5968 2 5.5625c-.0008-1.035.838-1.8747 1.873-1.875zm4.4903.5078h3.5312l6.7344 10.8125h.045V4.1953H22v16.1172h-3.5469l-6.7168-10.791h-.0468v10.791H8.3633V4.1953zm-6.123 4.7871s.013.0041 3.3886 0v11.2754H2.2402V8.9824z" }) + ] + } + ); +}); + +export { SiInspire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.cjs new file mode 100644 index 000000000..5902ebb3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFEE00"; +const SiInsta360 = React__namespace.forwardRef(function SiInsta3602({ title = "Insta360", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.402 11.19c-.701.7-1.838.7-2.54 0a1.796 1.796 0 1 1 2.539 0m.998-3.614a6.17 6.17 0 0 0-4.39-1.818 6.17 6.17 0 0 0-4.392 1.818 6.217 6.217 0 0 0 0 8.782 6.169 6.169 0 0 0 4.39 1.819 6.169 6.169 0 0 0 4.392-1.82 6.217 6.217 0 0 0 0-8.78m1.554 10.33a8.353 8.353 0 0 1-5.945 2.462 8.353 8.353 0 0 1-5.944-2.46c-3.277-3.277-3.277-8.607 0-11.883a8.353 8.353 0 0 1 5.944-2.46 8.35 8.35 0 0 1 5.944 2.46c3.278 3.276 3.278 8.606 0 11.882m4.51-11.293a20.81 20.81 0 0 1-.137-.292 2.779 2.779 0 0 1 .485-3.007c.018-.014.08-.08.117-.118a.412.412 0 0 0 .053-.069.66.66 0 0 0-.097-.81.296.296 0 0 0-.026-.02 1.113 1.113 0 0 0-.18-.11l-.068-.034A19.08 19.08 0 0 0 9.71.443l-.016.022a11.708 11.708 0 0 0-6.012 3.218c-3.75 3.75-4.44 9.403-2.065 13.852.023.043.107.195.123.233a2.778 2.778 0 0 1-.556 2.919 4.39 4.39 0 0 0-.072.08.66.66 0 0 0 0 .934c.06.056.127.105.198.146l.01.006a19.08 19.08 0 0 0 13 1.677v.002a11.708 11.708 0 0 0 5.997-3.216c3.709-3.708 4.423-9.277 2.144-13.702" }) + ] + } + ); +}); + +exports.default = SiInsta360; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.d.ts new file mode 100644 index 000000000..c7cc0d53e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFEE00"; +declare const SiInsta360: IconType; +export { SiInsta360 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.mjs new file mode 100644 index 000000000..2bb1f2855 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInsta360.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFEE00"; +const SiInsta360 = React.forwardRef(function SiInsta3602({ title = "Insta360", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.402 11.19c-.701.7-1.838.7-2.54 0a1.796 1.796 0 1 1 2.539 0m.998-3.614a6.17 6.17 0 0 0-4.39-1.818 6.17 6.17 0 0 0-4.392 1.818 6.217 6.217 0 0 0 0 8.782 6.169 6.169 0 0 0 4.39 1.819 6.169 6.169 0 0 0 4.392-1.82 6.217 6.217 0 0 0 0-8.78m1.554 10.33a8.353 8.353 0 0 1-5.945 2.462 8.353 8.353 0 0 1-5.944-2.46c-3.277-3.277-3.277-8.607 0-11.883a8.353 8.353 0 0 1 5.944-2.46 8.35 8.35 0 0 1 5.944 2.46c3.278 3.276 3.278 8.606 0 11.882m4.51-11.293a20.81 20.81 0 0 1-.137-.292 2.779 2.779 0 0 1 .485-3.007c.018-.014.08-.08.117-.118a.412.412 0 0 0 .053-.069.66.66 0 0 0-.097-.81.296.296 0 0 0-.026-.02 1.113 1.113 0 0 0-.18-.11l-.068-.034A19.08 19.08 0 0 0 9.71.443l-.016.022a11.708 11.708 0 0 0-6.012 3.218c-3.75 3.75-4.44 9.403-2.065 13.852.023.043.107.195.123.233a2.778 2.778 0 0 1-.556 2.919 4.39 4.39 0 0 0-.072.08.66.66 0 0 0 0 .934c.06.056.127.105.198.146l.01.006a19.08 19.08 0 0 0 13 1.677v.002a11.708 11.708 0 0 0 5.997-3.216c3.709-3.708 4.423-9.277 2.144-13.702" }) + ] + } + ); +}); + +export { SiInsta360 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.cjs new file mode 100644 index 000000000..7c2710643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#43B02A"; +const SiInstacart = React__namespace.forwardRef(function SiInstacart2({ title = "Instacart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.629 9.619c1.421 1.429 2.58 3.766 1.917 5.152-1.778 3.715-15.04 10.226-16.169 9.1C.252 22.746 6.768 9.476 10.481 7.697c1.388-.66 3.724.51 5.152 1.92l-.005.014v-.012zm7.028-1.566c-.231-.855-.821-1.717-1.7-1.82-1.61-.186-4.151 2.663-3.971 3.339.181.69 3.766 1.875 5.1.915.691-.494.781-1.56.556-2.414l.015-.02zM17.666.158c1.198.324 2.407 1.148 2.551 2.382.261 2.259-3.732 5.819-4.68 5.564-.948-.251-2.618-5.284-1.269-7.162.695-.972 2.201-1.106 3.399-.788v.004h-.001z" }) + ] + } + ); +}); + +exports.default = SiInstacart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.d.ts new file mode 100644 index 000000000..9abcf57df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#43B02A"; +declare const SiInstacart: IconType; +export { SiInstacart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.mjs new file mode 100644 index 000000000..c990f819e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstacart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#43B02A"; +const SiInstacart = React.forwardRef(function SiInstacart2({ title = "Instacart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.629 9.619c1.421 1.429 2.58 3.766 1.917 5.152-1.778 3.715-15.04 10.226-16.169 9.1C.252 22.746 6.768 9.476 10.481 7.697c1.388-.66 3.724.51 5.152 1.92l-.005.014v-.012zm7.028-1.566c-.231-.855-.821-1.717-1.7-1.82-1.61-.186-4.151 2.663-3.971 3.339.181.69 3.766 1.875 5.1.915.691-.494.781-1.56.556-2.414l.015-.02zM17.666.158c1.198.324 2.407 1.148 2.551 2.382.261 2.259-3.732 5.819-4.68 5.564-.948-.251-2.618-5.284-1.269-7.162.695-.972 2.201-1.106 3.399-.788v.004h-.001z" }) + ] + } + ); +}); + +export { SiInstacart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.cjs new file mode 100644 index 000000000..f3e3cf8e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0069"; +const SiInstagram = React__namespace.forwardRef(function SiInstagram2({ title = "Instagram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.0301.084c-1.2768.0602-2.1487.264-2.911.5634-.7888.3075-1.4575.72-2.1228 1.3877-.6652.6677-1.075 1.3368-1.3802 2.127-.2954.7638-.4956 1.6365-.552 2.914-.0564 1.2775-.0689 1.6882-.0626 4.947.0062 3.2586.0206 3.6671.0825 4.9473.061 1.2765.264 2.1482.5635 2.9107.308.7889.72 1.4573 1.388 2.1228.6679.6655 1.3365 1.0743 2.1285 1.38.7632.295 1.6361.4961 2.9134.552 1.2773.056 1.6884.069 4.9462.0627 3.2578-.0062 3.668-.0207 4.9478-.0814 1.28-.0607 2.147-.2652 2.9098-.5633.7889-.3086 1.4578-.72 2.1228-1.3881.665-.6682 1.0745-1.3378 1.3795-2.1284.2957-.7632.4966-1.636.552-2.9124.056-1.2809.0692-1.6898.063-4.948-.0063-3.2583-.021-3.6668-.0817-4.9465-.0607-1.2797-.264-2.1487-.5633-2.9117-.3084-.7889-.72-1.4568-1.3876-2.1228C21.2982 1.33 20.628.9208 19.8378.6165 19.074.321 18.2017.1197 16.9244.0645 15.6471.0093 15.236-.005 11.977.0014 8.718.0076 8.31.0215 7.0301.0839m.1402 21.6932c-1.17-.0509-1.8053-.2453-2.2287-.408-.5606-.216-.96-.4771-1.3819-.895-.422-.4178-.6811-.8186-.9-1.378-.1644-.4234-.3624-1.058-.4171-2.228-.0595-1.2645-.072-1.6442-.079-4.848-.007-3.2037.0053-3.583.0607-4.848.05-1.169.2456-1.805.408-2.2282.216-.5613.4762-.96.895-1.3816.4188-.4217.8184-.6814 1.3783-.9003.423-.1651 1.0575-.3614 2.227-.4171 1.2655-.06 1.6447-.072 4.848-.079 3.2033-.007 3.5835.005 4.8495.0608 1.169.0508 1.8053.2445 2.228.408.5608.216.96.4754 1.3816.895.4217.4194.6816.8176.9005 1.3787.1653.4217.3617 1.056.4169 2.2263.0602 1.2655.0739 1.645.0796 4.848.0058 3.203-.0055 3.5834-.061 4.848-.051 1.17-.245 1.8055-.408 2.2294-.216.5604-.4763.96-.8954 1.3814-.419.4215-.8181.6811-1.3783.9-.4224.1649-1.0577.3617-2.2262.4174-1.2656.0595-1.6448.072-4.8493.079-3.2045.007-3.5825-.006-4.848-.0608M16.953 5.5864A1.44 1.44 0 1 0 18.39 4.144a1.44 1.44 0 0 0-1.437 1.4424M5.8385 12.012c.0067 3.4032 2.7706 6.1557 6.173 6.1493 3.4026-.0065 6.157-2.7701 6.1506-6.1733-.0065-3.4032-2.771-6.1565-6.174-6.1498-3.403.0067-6.156 2.771-6.1496 6.1738M8 12.0077a4 4 0 1 1 4.008 3.9921A3.9996 3.9996 0 0 1 8 12.0077" }) + ] + } + ); +}); + +exports.default = SiInstagram; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.d.ts new file mode 100644 index 000000000..d1a7735c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0069"; +declare const SiInstagram: IconType; +export { SiInstagram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.mjs new file mode 100644 index 000000000..5e4af5416 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstagram.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0069"; +const SiInstagram = React.forwardRef(function SiInstagram2({ title = "Instagram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.0301.084c-1.2768.0602-2.1487.264-2.911.5634-.7888.3075-1.4575.72-2.1228 1.3877-.6652.6677-1.075 1.3368-1.3802 2.127-.2954.7638-.4956 1.6365-.552 2.914-.0564 1.2775-.0689 1.6882-.0626 4.947.0062 3.2586.0206 3.6671.0825 4.9473.061 1.2765.264 2.1482.5635 2.9107.308.7889.72 1.4573 1.388 2.1228.6679.6655 1.3365 1.0743 2.1285 1.38.7632.295 1.6361.4961 2.9134.552 1.2773.056 1.6884.069 4.9462.0627 3.2578-.0062 3.668-.0207 4.9478-.0814 1.28-.0607 2.147-.2652 2.9098-.5633.7889-.3086 1.4578-.72 2.1228-1.3881.665-.6682 1.0745-1.3378 1.3795-2.1284.2957-.7632.4966-1.636.552-2.9124.056-1.2809.0692-1.6898.063-4.948-.0063-3.2583-.021-3.6668-.0817-4.9465-.0607-1.2797-.264-2.1487-.5633-2.9117-.3084-.7889-.72-1.4568-1.3876-2.1228C21.2982 1.33 20.628.9208 19.8378.6165 19.074.321 18.2017.1197 16.9244.0645 15.6471.0093 15.236-.005 11.977.0014 8.718.0076 8.31.0215 7.0301.0839m.1402 21.6932c-1.17-.0509-1.8053-.2453-2.2287-.408-.5606-.216-.96-.4771-1.3819-.895-.422-.4178-.6811-.8186-.9-1.378-.1644-.4234-.3624-1.058-.4171-2.228-.0595-1.2645-.072-1.6442-.079-4.848-.007-3.2037.0053-3.583.0607-4.848.05-1.169.2456-1.805.408-2.2282.216-.5613.4762-.96.895-1.3816.4188-.4217.8184-.6814 1.3783-.9003.423-.1651 1.0575-.3614 2.227-.4171 1.2655-.06 1.6447-.072 4.848-.079 3.2033-.007 3.5835.005 4.8495.0608 1.169.0508 1.8053.2445 2.228.408.5608.216.96.4754 1.3816.895.4217.4194.6816.8176.9005 1.3787.1653.4217.3617 1.056.4169 2.2263.0602 1.2655.0739 1.645.0796 4.848.0058 3.203-.0055 3.5834-.061 4.848-.051 1.17-.245 1.8055-.408 2.2294-.216.5604-.4763.96-.8954 1.3814-.419.4215-.8181.6811-1.3783.9-.4224.1649-1.0577.3617-2.2262.4174-1.2656.0595-1.6448.072-4.8493.079-3.2045.007-3.5825-.006-4.848-.0608M16.953 5.5864A1.44 1.44 0 1 0 18.39 4.144a1.44 1.44 0 0 0-1.437 1.4424M5.8385 12.012c.0067 3.4032 2.7706 6.1557 6.173 6.1493 3.4026-.0065 6.157-2.7701 6.1506-6.1733-.0065-3.4032-2.771-6.1565-6.174-6.1498-3.403.0067-6.156 2.771-6.1496 6.1738M8 12.0077a4 4 0 1 1 4.008 3.9921A3.9996 3.9996 0 0 1 8 12.0077" }) + ] + } + ); +}); + +export { SiInstagram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.cjs new file mode 100644 index 000000000..485a331e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F1F1F"; +const SiInstapaper = React__namespace.forwardRef(function SiInstapaper2({ title = "Instapaper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.766 20.259c0 1.819.271 2.089 2.934 2.292V24H6.301v-1.449c2.666-.203 2.934-.473 2.934-2.292V3.708c0-1.784-.27-2.089-2.934-2.292V0h11.398v1.416c-2.662.203-2.934.506-2.934 2.292v16.551z" }) + ] + } + ); +}); + +exports.default = SiInstapaper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.d.ts new file mode 100644 index 000000000..5dd196112 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F1F1F"; +declare const SiInstapaper: IconType; +export { SiInstapaper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.mjs new file mode 100644 index 000000000..d15ef62a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstapaper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F1F1F"; +const SiInstapaper = React.forwardRef(function SiInstapaper2({ title = "Instapaper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.766 20.259c0 1.819.271 2.089 2.934 2.292V24H6.301v-1.449c2.666-.203 2.934-.473 2.934-2.292V3.708c0-1.784-.27-2.089-2.934-2.292V0h11.398v1.416c-2.662.203-2.934.506-2.934 2.292v16.551z" }) + ] + } + ); +}); + +export { SiInstapaper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.cjs new file mode 100644 index 000000000..5859858ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4EE3C2"; +const SiInstatus = React__namespace.forwardRef(function SiInstatus2({ title = "Instatus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.994 21.028c3.5843-1.91 5.471-5.759 5.0561-9.5637-1.3206 1.0851-2.6237 2.3203-3.8709 3.6906-2.0656 2.2694-3.7476 4.6559-4.9953 6.9817 1.2946-0.09715 2.5907-0.45868 3.8101-1.1086zm-13.394-2.5626c-1.3408 1.8191-2.3771 4.4991-1.3032 5.3066 1.5151 1.1394 8.404-2.0133 13.908-8.8051 5.504-6.7918 7.3265-13.796 4.879-14.873-1.1283-0.49644-3.486 1.083-4.8394 2.3943l0.58412 0.31415c1.332-0.85276 3.5528-1.7338 1.4995 1.9758-0.0097 0.01768-0.01962 0.03541-0.02949 0.05317-2.9067-2.2075-6.9471-2.662-10.379-0.8328-4.7026 2.506-6.4831 8.3499-3.9771 13.052 0.58979 1.1067 1.3644 2.0516 2.2655 2.8168-3.5586 2.7493-2.6905 0.35965-2.1925-0.8162z" }) + ] + } + ); +}); + +exports.default = SiInstatus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.d.ts new file mode 100644 index 000000000..3bc7d7e7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4EE3C2"; +declare const SiInstatus: IconType; +export { SiInstatus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.mjs new file mode 100644 index 000000000..ab16a7993 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstatus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4EE3C2"; +const SiInstatus = React.forwardRef(function SiInstatus2({ title = "Instatus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.994 21.028c3.5843-1.91 5.471-5.759 5.0561-9.5637-1.3206 1.0851-2.6237 2.3203-3.8709 3.6906-2.0656 2.2694-3.7476 4.6559-4.9953 6.9817 1.2946-0.09715 2.5907-0.45868 3.8101-1.1086zm-13.394-2.5626c-1.3408 1.8191-2.3771 4.4991-1.3032 5.3066 1.5151 1.1394 8.404-2.0133 13.908-8.8051 5.504-6.7918 7.3265-13.796 4.879-14.873-1.1283-0.49644-3.486 1.083-4.8394 2.3943l0.58412 0.31415c1.332-0.85276 3.5528-1.7338 1.4995 1.9758-0.0097 0.01768-0.01962 0.03541-0.02949 0.05317-2.9067-2.2075-6.9471-2.662-10.379-0.8328-4.7026 2.506-6.4831 8.3499-3.9771 13.052 0.58979 1.1067 1.3644 2.0516 2.2655 2.8168-3.5586 2.7493-2.6905 0.35965-2.1925-0.8162z" }) + ] + } + ); +}); + +export { SiInstatus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.cjs new file mode 100644 index 000000000..878a8d56c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FABF15"; +const SiInstructables = React__namespace.forwardRef(function SiInstructables2({ title = "Instructables", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.4174.0004c-.1655-.0025-.319.0073-.4493.0363-.902.201-1.2372 1.1122-1.6211 1.9531-.1036.2255-.192.107-.5576.9754-1.1487-.137-2.5594-.1066-3.4065-.2041.1402.4845.8319.198 1.295.2041.7587.0061 1.5447.2011 2.1115.2042.0335.2102.2134.4414.25.6486.1188.6917.0764 1.3407-.1126 2.005-.1828.649-1.2492 1.1886-1.499 2.0448-.1037.3535.0118.6551-.1375 1.0909-.1097.137-.3256.1702-.475.2707-1.0572 1.1914-1.6729 3.178-1.9745 4.9026.7252.3382 1.3467.0185 1.7032.2714.2163.061.0916-.2255.2714-.2041.137.0213.1306.1828.2707.204-.1127 1.027.0673 1.7308.0673 2.7912 1.1152.4814 2.3768.399 3.9551.4112-.0182.2042.3868.9602.0578 1.4569.4875.4966-.2407 2.1783.7587 2.221-.332.4874-.5579 1.0785-.5457 1.9073-.2407.1066-.0396-.2316-.2041-.2041-1.691-.0427-2.6844-.3078-4.4943-.2042.5058.2072 1.4444.119 2.1787.2714.0792.0122.055.125.0672.2041.2956-.1401 1.1029-.0304 1.633 0-.2376.125.3325.2468.3416 0 .457.0701.8287.5852 1.2248.6797 1.3072.3138 2.0447-.6313 2.8613-1.2224.128.2681.7553.0152 1.1575 0-.3352-.198-1.1365-.134-1.499 0 .1218-.9629-.3534-1.3285-.8166-1.7032.189-.1067.3958-.1948.5451-.341.0183-1.3407-.0546-1.7948-.1368-2.9953.7252-.1493 1.7613-.2437 2.6572-.4082-.317.969-.1404 1.444-.2714 2.7238.1676.0823.399.101.6124.1375-.6704.3595-1.0573 1.8947-.2042 2.3823-.0761.1736-.3655.1344-.6123.1374.0091.3565.8498-.1221.7492.341.457-.3687 3.1811-.0394 4.2902.0673-.1188-.6094-1.453-.1192-2.0442-.5457.7648-.4876.7768-1.9618-.0673-2.3823.646-.4296.2683-2.1969.4755-3.1993.6186-.2682 1.5905-.1801 2.1115-.5458-.0152-.8714-.1825-1.5873-.341-2.3156.2164-.1493.7495-.3351 1.0206-.2041.1493-.0122.146-.174.137-.3416.0609-.1645.201.1526.4082.0673.0091-.8136-.3684-1.2249-.7493-1.9074-.5728-1.0238-1.3196-2.0295-2.453-2.453-.9538-1.6363-1.9711-3.2054-4.1528-3.6106-.1219-.3078-.049-.8135-.0672-1.2248.3016-.265.564-.573.5457-1.158.8288-.3535 2.1297.0852 2.928 0-.128-.4206-.8656-.1555-1.3623-.2042-.527-.0518-1.0481-.2803-1.499 0-.131-.387-.3533-1.1057-.591-.929-.1402-.3382-.1313-.8657-.0917-1.3836-.847-.1737-1.7762-.4385-2.7238-.5452-.4228-.048-1.0288-.1665-1.5253-.1737zm-.382.2374c1.5448.134 3.1656.1919 4.427.6124.2164 1.551-.085 2.9803.1375 4.6318-1.6484-.2803-3.5102-.6189-5.177-.3416.0793-1.6302.1463-3.434.6124-4.9026zM8.627.5092c-.0945 1.5387-.396 2.8426-.4083 4.6312-.323.2437-.6734.46-1.0908.6124-.0366-.5698.021-1.3403.1369-1.77.0975.1067.2652.143.4755.137.5545-.64.28-1.7428-.0673-2.5198.2803-.3991.4908-.8714.954-1.0908zm2.2626.7903c-.2944-.0043-.5763.0233-.8308.0964.3322.0061.7194-.037.954.0667-.4753.2072-.7955.5667-.7498 1.295.7282 1.0115 1.9712-.2254 1.2247-1.2248.4754-.0335 1.3378.3292 1.9746.2714-.6947-.1943-1.6894-.4917-2.5727-.5047zm.356.3535c.297.041.3246.751.2421 1.0284-.32.387-.9866.1405-1.0902-.2708.1615-.0853-.0248-.5212.2707-.4755-.0822.515.1649.701.5458.7498.0944-.131.1797-.2713.204-.4755-.0578-.2346-.2832-.3048-.4082-.4755.0644-.0464.1218-.0716.1726-.0797a.2142.2142 0 0 1 .0631-.0012zm-3.5726.4225c.1189.4175.2135 1.1727.0673 1.77-1.039-.0245-.7224-1.581-.0673-1.77zm3.1327 0c.2255.003.481-.0274.475.2042-.0366.0975-.1067.1645-.2042.204-.0853-.14-.3287-.1248-.2708-.4082zm1.6925.0238c-.2755.0209-.5396.2472-.535.7957.2407.1188.4021.3232.8165.2714.6685-.5656.1777-1.1018-.2815-1.067zm.0107.0429c.2986.0213.5146.119.475.4755-.2194-.0945-.2739-.3567-.475-.4755zm1.3617.1375c.393.4326.4144 1.7184-.2042 1.9073-.0243-.5667-.061-1.4412.2042-1.9073zm-1.4938.069c.0266.002.0497.0214.0649.0678-.189.1036-.009.4084.0702.4785-.2681.0396-.302-.1527-.3416-.3416.016-.0594.1267-.2109.2065-.2047zm.1321.135c.2133-.0304.3043.0606.2708.2709-.2133.0335-.3012-.0575-.2708-.2708zm-3.4064.8166c-.0792.0122-.0581.1249-.0673.2041 1.5266.1828 2.7729.6487 4.0861.5451-.2133-.3504-.7098-.1736-1.0206-.204-.9446-.0946-1.8924-.4537-2.8613-.475-.0793.0091-.1217-.0154-.137-.0702zm2.093 1.9014c.9318.0446 2.0293.469 2.5412.6183.1401.0396.3231-.0427.4755 0 .4844.134 1.1974.4724 1.499.6826.844.5911 1.4262 1.807 1.9747 2.7911.195.3535.5148.6095.6123.8867.3017.8593.3501 1.7671.7493 2.5198l.0732.341c.2163.7587.4269 1.8193.5457 2.453-3.0287.4297-5.872.7495-8.3096 1.0207-2.0232-.3291-4.1683-.1735-5.9934-.341-.3017-2.3036.3993-4.5952.2713-6.9474.0122-.192.2227-.1856.2714-.341-.1737-.0092-.3507-.0122-.3416-.2042.198-2.1054 2.4071-3.9675 4.6985-3.3368.2376-.0366.305-.1155.5457-.1369a2.8444 2.8444 0 0 1 .3868-.006zM9.894 8.9997a1.6087 1.6087 0 0 0-.3136.0226c-.2255.3474-.1552.6615-.137 1.1581 1.1142 1.1912 1.8694-1.134.4506-1.1807zm5.0633.0173c-1.3532.0321-.3819 2.6965.6837 1.3003.253-.8074-.1368-1.2554-.545-1.295a1.1653 1.1653 0 0 0-.1387-.0053zm-2.3609.0297c-.2254-.0106-.472.067-.7034.247-.0853.4174.0887.9444.3416 1.2248.518.0426.9107-.0429 1.1575-.2714.0943-.727-.2996-1.177-.7957-1.2004zm-7.3062.1095c.3595 1.0939-.0454 2.523-.0667 3.6779-.5667-.0915-1.0694-.2464-1.7032-.2708.329-1.3955.6638-2.7885 1.7699-3.407zm4.8847.0673a.264.264 0 0 1 .1523.0702c.1615.1615-.0121.3349 0 .5451-.2772.067-.2741-.006-.6123 0 .0487-.2529-.116-.2922-.0673-.5451.1943.0229.3695-.088.5273-.0702zm2.2995.003c.5982-.0527.9245.8043-.103.7498-.0761-.2194-.2739-.3172-.341-.5457.1538-.1314.306-.192.444-.2041zm2.5793.013c.2693-.001.52.1634.52.5327-.2345.2742-.4719.5575-.9533.4082-.0305-.1645.1215-.1496.0667-.3416-.1341.003-.085.1863-.2708.1375-.0857-.461.291-.7355.6374-.7368zm3.107.2583c1.0421.5028 1.6454 1.4442 2.1115 2.5198-.4966.0426-.7891-.1185-1.295-.0667-.1035-.5759-.4474-.9112-.4748-1.5663.1797-.003.4021.0362.4082-.1375-.0487-.262-.3507-.4692-.5457-.2041-.0091-.2408-.195-.3045-.2041-.5452zM4.879 9.702c-.0883.2894-.0607.5207.2714.545.1067-.1919-.0181-.28.0702-.545zm5.7227.204c.003.2073-.1432.2651-.2041.4083-.384.0214-.7133-.015-.7499-.341.3626.0762.6737.0912.954-.0672zm2.5864 0v.341c-.2712.125-1.2094.2804-.9534-.204.2468.3077.7675.0337.9534-.137zm2.3162.2042c-.0275.387-.762.582-.954.2041.4113.1097.7072.0122.954-.204zm-6.332 1.3652c.1279.5028-.1341.6338-.2042 1.0909.9263.067 1.9806-.0213 2.791-.003.0428-.061.0824-.1223 0-.1375H9.5109c2.5534-.5271 4.2109-.3652 7.014-.2708.0763.2133-.0186.1795.0667.341-1.6149.326-3.251-.402-4.8323.0673 1.5631-.0518 3.1962.1641 4.9026.2708.0365-.3474.0883-.8317 0-1.2248-.2468-.064-.07.2929-.2042.3416-1.8647-.1402-4.6772-.125-7.0813.2041-.0944-.0883-.0666-.2957-.0666-.4755 1.4595-.2468 4.305.253 5.4477-.2041-1.7002.1036-3.7235-.0122-5.5852 0zm6.5432.0637c-.3249-.0107-.6745.0136-.8909.003.3108.3016 1.2095.0152 1.633.204-.1173-.1507-.4172-.1964-.742-.207zm3.8957.6153c.3183.0018.6615.0695.7986.2048-.46-.1585-.911.1672-1.295-.1375.1234-.0457.3054-.0683.4964-.0673zm.1505.325c.2297-.0027.459.023.5779.0839-.2072.1432-1.0789.3626-1.1581 0 .1204-.0503.3506-.0813.5802-.084zm.9641.244c.2443-.0384.3716.3498.3636.6564-.2529.134-.4389-.3077-.4755-.6124.0397-.0244.077-.0386.112-.044zm-17.2756.044c.4083 0 1.3406.0668 1.7032.341-.588-.0945-1.3833.0216-1.7032-.341zm16.8894.1369c.2133.2681.25.4813.2714.8165-.262-.0549-.2836-.7099-.2714-.8165zm-.9504.0672h.2708c.006.3139.171.463.1374.8165-.387-.0213-.332-.4843-.4082-.8165zm.6094 0c.0396.2133.3197.542.1369.7493-.1067-.1463-.3106-.5482-.137-.7493zm-16.039.1298c.4297.0108.9446.1147 1.057.3451-.5455-.0883-1.134-.1336-1.6337-.2707.0914-.0538.3189-.081.5767-.0744zm-.25.3433c.1167.0012.2099.028.219.1423-.1493.1706-.0765.5575-.3416.6124 0-.1128-.1888-.0394-.204-.137.0944-.1766.2498-.2954.204-.6123a1.524 1.524 0 0 1 .1226-.0054zm-.3933.0054c-.0183.2529-.1069.4354-.2714.5451-.0213-.2925-.006-.5512.2714-.5451zm1.2247.1339c.1158.1371.0973.5514-.0672.6124-.1432-.0762-.274-.649.0672-.6124zm.4083.0702c.0152.125.1767.4507 0 .5452-.0214-.1189-.3139-.5238 0-.5452zm14.5738 2.0413c.2255.0244.1064.393.1369.6124-2.3797.582-4.5644.7128-7.1635 1.0997l-1.2158-.0089c-1.7916.131-4.171.1646-5.856-.2041-.0334-.2407-.1007-.4446-.0672-.7493 2.2822-.1676 4.6439.3136 6.9474.1369 2.526-.195 4.9512-.7831 7.2182-.8867zm-.4083.1369c-.0548.0365-.1096.0703-.204.0672.006.198.0239.3837.2707.341.0091-.1676.0126-.329-.0667-.4082zm-2.6572.3416c-.0152.2437.0979.3562.3416.341.0518-.061.0728-.152.0667-.2708-.0792-.0823-.2407-.0794-.4083-.0702zM5.97 16.582c-.0457.2285.116.25.2714.2714.0548-.061.0763-.1526.0702-.2714zm6.9474.0673c-.1006.2132-.0033.2772.1369.4082.1736-.006.1339-.2285.1339-.4082zm-4.1129.0743c-.057-.0037-.1187.0145-.1773.0625-.0152.2438.0972.3563.341.341.1348-.185.0074-.3923-.1637-.4035zm8.8113.1964c.0092.521-.0824.5822-.0702 1.1581-1.0207.0701-1.4718-.0978-2.3828-.1374.3108-.9111 1.5511-.8714 2.453-1.0207zm-5.5822.6826c.0457.2468.0947.4935.0673.8165-.8684.0275-1.7373-.222-2.5203-.0666-.0762-.2133-.0061-.1554 0-.4083.6033-.4022 1.9137-.2288 2.453-.3416zm3.9064.6636c.1382-.0064.3265.0284.451.153h-.204c-.5694-.0172-.4774-.1424-.247-.153zm1.3824.0036c.1326-.008.2384.0107.2262.1493-.0762.0914-.5362-.0058-.6124-.1368.0945.0304.2537-.0045.3862-.0125zm-6.395.2154c.1815.0066.3368.0398.4236.138-.2468-.003-.5362.0369-.6123-.1368a2.6671 2.6671 0 0 1 .1886-.0012zm5.2935.063c.4243-.0022.8604.043 1.261.2792-.9171-.2042-2.0204.11-2.453-.2708.355.0442.7677-.006 1.192-.0083zm-6.0756.1756c.6793-.0043 1.6155.0968 2.0222.378-.972-.125-1.743.0215-2.587-.341.1402-.0222.3384-.0355.5648-.037zm5.5144.1714c.6914.0055 1.3525.0443 1.8919.2065-.1158.1798-.009.5853-.137.7499-.6367-.067-1.828.128-2.5196 0-.0366-.3779.0361-.6432.0666-.954.2339-.0023.4676-.0042.698-.0024zm-6.0119.1363c.5729.1036 1.9195.189 2.5197.2744-.0883.4936.1676.9445 0 1.295-.5972.3534-1.5266.378-2.3828.4754-.1463-.5362-.3167-1.411-.1369-2.0448zm6.9474 1.0909c.9537-.0427 1.4072.7652 1.2914 1.4294-.2072 1.2036-2.5014 1.4865-3.132.475.009-.7161.0033-1.4503.5456-1.633.064.4905-.2193.591-.204.8867.0578 1.2096 2.2818 1.3774 2.4524.2713.131-.8562-.6213-.8993-.9534-1.4294zm-.7558.2404c.0436-.0153.0947.015.1036.0607.0036.0042.0088.0046.0119.0101.0365.07.043.1458.0583.222.0091.0457-.0217.0765-.0613.0887a.9213.9213 0 0 1-.2041.0333c-.061.003-.1189-.0612-.0762-.119.0548-.0762.0884-.161.125-.2524a.0721.0721 0 0 1 .0428-.0434zm1.0296.3053c.265.006.5516.4539.4755 1.0206-.2773.4875-1.5542.5269-1.5664.341.7953.0914 1.0362-.3714 1.3622-.7492.0214-.2743-.442-.4174-.2713-.6124zm-.3636.1654c.1848-.0061.3668.2504.4308.447-.3108.2102-.5.5453-.954.6123-.1706-.1676-.4478-.2345-.4082-.6123.4692-.0397.4177-.1583.7498.0672.1493-.1432-.0335-.195 0-.4082.058-.0724.12-.104.1816-.106zm-5.2912.31c.8866.0245 1.1762.6398 1.292 1.429.0304.1889-.2531.064-.2714.204.0792.0336.1554.073.2041.137-.46.8927-3.1687 1.4504-2.7238-.4083.07 1.1761 1.779.9509 2.2483.2714.2255-.9568-.4384-1.0389-.7492-1.633zm-.4755.5452c.088.0907.2554.1019.2755.2625a.313.313 0 0 1-.0012.0785c-.131.128-.171.0061-.3416 0 .0366-.1005-.079-.3532.0673-.341zm.545 0c1.4017.5515-.1582 2.0504-1.2247 1.2277-.0944-.265-.3105-.9659.0673-1.0908.1188.198.1612.4758.1369.817.2986.4724 1.3837.3046 1.4294-.2713-.2803-.0762-.1315-.4784-.4088-.6826zm.0673.4755c.0945.0884.0672.2957.0703.4785-.3322.0426-.71.2373-.8868-.1375.4175.0305.4905-.28.8165-.341zm8.503.532c-.0694-.005-.1785.0148-.3308.0834.393.1713.5394-.0684.3309-.0834Z" }) + ] + } + ); +}); + +exports.default = SiInstructables; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.d.ts new file mode 100644 index 000000000..ea30976c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FABF15"; +declare const SiInstructables: IconType; +export { SiInstructables as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.mjs new file mode 100644 index 000000000..20f0228cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructables.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FABF15"; +const SiInstructables = React.forwardRef(function SiInstructables2({ title = "Instructables", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.4174.0004c-.1655-.0025-.319.0073-.4493.0363-.902.201-1.2372 1.1122-1.6211 1.9531-.1036.2255-.192.107-.5576.9754-1.1487-.137-2.5594-.1066-3.4065-.2041.1402.4845.8319.198 1.295.2041.7587.0061 1.5447.2011 2.1115.2042.0335.2102.2134.4414.25.6486.1188.6917.0764 1.3407-.1126 2.005-.1828.649-1.2492 1.1886-1.499 2.0448-.1037.3535.0118.6551-.1375 1.0909-.1097.137-.3256.1702-.475.2707-1.0572 1.1914-1.6729 3.178-1.9745 4.9026.7252.3382 1.3467.0185 1.7032.2714.2163.061.0916-.2255.2714-.2041.137.0213.1306.1828.2707.204-.1127 1.027.0673 1.7308.0673 2.7912 1.1152.4814 2.3768.399 3.9551.4112-.0182.2042.3868.9602.0578 1.4569.4875.4966-.2407 2.1783.7587 2.221-.332.4874-.5579 1.0785-.5457 1.9073-.2407.1066-.0396-.2316-.2041-.2041-1.691-.0427-2.6844-.3078-4.4943-.2042.5058.2072 1.4444.119 2.1787.2714.0792.0122.055.125.0672.2041.2956-.1401 1.1029-.0304 1.633 0-.2376.125.3325.2468.3416 0 .457.0701.8287.5852 1.2248.6797 1.3072.3138 2.0447-.6313 2.8613-1.2224.128.2681.7553.0152 1.1575 0-.3352-.198-1.1365-.134-1.499 0 .1218-.9629-.3534-1.3285-.8166-1.7032.189-.1067.3958-.1948.5451-.341.0183-1.3407-.0546-1.7948-.1368-2.9953.7252-.1493 1.7613-.2437 2.6572-.4082-.317.969-.1404 1.444-.2714 2.7238.1676.0823.399.101.6124.1375-.6704.3595-1.0573 1.8947-.2042 2.3823-.0761.1736-.3655.1344-.6123.1374.0091.3565.8498-.1221.7492.341.457-.3687 3.1811-.0394 4.2902.0673-.1188-.6094-1.453-.1192-2.0442-.5457.7648-.4876.7768-1.9618-.0673-2.3823.646-.4296.2683-2.1969.4755-3.1993.6186-.2682 1.5905-.1801 2.1115-.5458-.0152-.8714-.1825-1.5873-.341-2.3156.2164-.1493.7495-.3351 1.0206-.2041.1493-.0122.146-.174.137-.3416.0609-.1645.201.1526.4082.0673.0091-.8136-.3684-1.2249-.7493-1.9074-.5728-1.0238-1.3196-2.0295-2.453-2.453-.9538-1.6363-1.9711-3.2054-4.1528-3.6106-.1219-.3078-.049-.8135-.0672-1.2248.3016-.265.564-.573.5457-1.158.8288-.3535 2.1297.0852 2.928 0-.128-.4206-.8656-.1555-1.3623-.2042-.527-.0518-1.0481-.2803-1.499 0-.131-.387-.3533-1.1057-.591-.929-.1402-.3382-.1313-.8657-.0917-1.3836-.847-.1737-1.7762-.4385-2.7238-.5452-.4228-.048-1.0288-.1665-1.5253-.1737zm-.382.2374c1.5448.134 3.1656.1919 4.427.6124.2164 1.551-.085 2.9803.1375 4.6318-1.6484-.2803-3.5102-.6189-5.177-.3416.0793-1.6302.1463-3.434.6124-4.9026zM8.627.5092c-.0945 1.5387-.396 2.8426-.4083 4.6312-.323.2437-.6734.46-1.0908.6124-.0366-.5698.021-1.3403.1369-1.77.0975.1067.2652.143.4755.137.5545-.64.28-1.7428-.0673-2.5198.2803-.3991.4908-.8714.954-1.0908zm2.2626.7903c-.2944-.0043-.5763.0233-.8308.0964.3322.0061.7194-.037.954.0667-.4753.2072-.7955.5667-.7498 1.295.7282 1.0115 1.9712-.2254 1.2247-1.2248.4754-.0335 1.3378.3292 1.9746.2714-.6947-.1943-1.6894-.4917-2.5727-.5047zm.356.3535c.297.041.3246.751.2421 1.0284-.32.387-.9866.1405-1.0902-.2708.1615-.0853-.0248-.5212.2707-.4755-.0822.515.1649.701.5458.7498.0944-.131.1797-.2713.204-.4755-.0578-.2346-.2832-.3048-.4082-.4755.0644-.0464.1218-.0716.1726-.0797a.2142.2142 0 0 1 .0631-.0012zm-3.5726.4225c.1189.4175.2135 1.1727.0673 1.77-1.039-.0245-.7224-1.581-.0673-1.77zm3.1327 0c.2255.003.481-.0274.475.2042-.0366.0975-.1067.1645-.2042.204-.0853-.14-.3287-.1248-.2708-.4082zm1.6925.0238c-.2755.0209-.5396.2472-.535.7957.2407.1188.4021.3232.8165.2714.6685-.5656.1777-1.1018-.2815-1.067zm.0107.0429c.2986.0213.5146.119.475.4755-.2194-.0945-.2739-.3567-.475-.4755zm1.3617.1375c.393.4326.4144 1.7184-.2042 1.9073-.0243-.5667-.061-1.4412.2042-1.9073zm-1.4938.069c.0266.002.0497.0214.0649.0678-.189.1036-.009.4084.0702.4785-.2681.0396-.302-.1527-.3416-.3416.016-.0594.1267-.2109.2065-.2047zm.1321.135c.2133-.0304.3043.0606.2708.2709-.2133.0335-.3012-.0575-.2708-.2708zm-3.4064.8166c-.0792.0122-.0581.1249-.0673.2041 1.5266.1828 2.7729.6487 4.0861.5451-.2133-.3504-.7098-.1736-1.0206-.204-.9446-.0946-1.8924-.4537-2.8613-.475-.0793.0091-.1217-.0154-.137-.0702zm2.093 1.9014c.9318.0446 2.0293.469 2.5412.6183.1401.0396.3231-.0427.4755 0 .4844.134 1.1974.4724 1.499.6826.844.5911 1.4262 1.807 1.9747 2.7911.195.3535.5148.6095.6123.8867.3017.8593.3501 1.7671.7493 2.5198l.0732.341c.2163.7587.4269 1.8193.5457 2.453-3.0287.4297-5.872.7495-8.3096 1.0207-2.0232-.3291-4.1683-.1735-5.9934-.341-.3017-2.3036.3993-4.5952.2713-6.9474.0122-.192.2227-.1856.2714-.341-.1737-.0092-.3507-.0122-.3416-.2042.198-2.1054 2.4071-3.9675 4.6985-3.3368.2376-.0366.305-.1155.5457-.1369a2.8444 2.8444 0 0 1 .3868-.006zM9.894 8.9997a1.6087 1.6087 0 0 0-.3136.0226c-.2255.3474-.1552.6615-.137 1.1581 1.1142 1.1912 1.8694-1.134.4506-1.1807zm5.0633.0173c-1.3532.0321-.3819 2.6965.6837 1.3003.253-.8074-.1368-1.2554-.545-1.295a1.1653 1.1653 0 0 0-.1387-.0053zm-2.3609.0297c-.2254-.0106-.472.067-.7034.247-.0853.4174.0887.9444.3416 1.2248.518.0426.9107-.0429 1.1575-.2714.0943-.727-.2996-1.177-.7957-1.2004zm-7.3062.1095c.3595 1.0939-.0454 2.523-.0667 3.6779-.5667-.0915-1.0694-.2464-1.7032-.2708.329-1.3955.6638-2.7885 1.7699-3.407zm4.8847.0673a.264.264 0 0 1 .1523.0702c.1615.1615-.0121.3349 0 .5451-.2772.067-.2741-.006-.6123 0 .0487-.2529-.116-.2922-.0673-.5451.1943.0229.3695-.088.5273-.0702zm2.2995.003c.5982-.0527.9245.8043-.103.7498-.0761-.2194-.2739-.3172-.341-.5457.1538-.1314.306-.192.444-.2041zm2.5793.013c.2693-.001.52.1634.52.5327-.2345.2742-.4719.5575-.9533.4082-.0305-.1645.1215-.1496.0667-.3416-.1341.003-.085.1863-.2708.1375-.0857-.461.291-.7355.6374-.7368zm3.107.2583c1.0421.5028 1.6454 1.4442 2.1115 2.5198-.4966.0426-.7891-.1185-1.295-.0667-.1035-.5759-.4474-.9112-.4748-1.5663.1797-.003.4021.0362.4082-.1375-.0487-.262-.3507-.4692-.5457-.2041-.0091-.2408-.195-.3045-.2041-.5452zM4.879 9.702c-.0883.2894-.0607.5207.2714.545.1067-.1919-.0181-.28.0702-.545zm5.7227.204c.003.2073-.1432.2651-.2041.4083-.384.0214-.7133-.015-.7499-.341.3626.0762.6737.0912.954-.0672zm2.5864 0v.341c-.2712.125-1.2094.2804-.9534-.204.2468.3077.7675.0337.9534-.137zm2.3162.2042c-.0275.387-.762.582-.954.2041.4113.1097.7072.0122.954-.204zm-6.332 1.3652c.1279.5028-.1341.6338-.2042 1.0909.9263.067 1.9806-.0213 2.791-.003.0428-.061.0824-.1223 0-.1375H9.5109c2.5534-.5271 4.2109-.3652 7.014-.2708.0763.2133-.0186.1795.0667.341-1.6149.326-3.251-.402-4.8323.0673 1.5631-.0518 3.1962.1641 4.9026.2708.0365-.3474.0883-.8317 0-1.2248-.2468-.064-.07.2929-.2042.3416-1.8647-.1402-4.6772-.125-7.0813.2041-.0944-.0883-.0666-.2957-.0666-.4755 1.4595-.2468 4.305.253 5.4477-.2041-1.7002.1036-3.7235-.0122-5.5852 0zm6.5432.0637c-.3249-.0107-.6745.0136-.8909.003.3108.3016 1.2095.0152 1.633.204-.1173-.1507-.4172-.1964-.742-.207zm3.8957.6153c.3183.0018.6615.0695.7986.2048-.46-.1585-.911.1672-1.295-.1375.1234-.0457.3054-.0683.4964-.0673zm.1505.325c.2297-.0027.459.023.5779.0839-.2072.1432-1.0789.3626-1.1581 0 .1204-.0503.3506-.0813.5802-.084zm.9641.244c.2443-.0384.3716.3498.3636.6564-.2529.134-.4389-.3077-.4755-.6124.0397-.0244.077-.0386.112-.044zm-17.2756.044c.4083 0 1.3406.0668 1.7032.341-.588-.0945-1.3833.0216-1.7032-.341zm16.8894.1369c.2133.2681.25.4813.2714.8165-.262-.0549-.2836-.7099-.2714-.8165zm-.9504.0672h.2708c.006.3139.171.463.1374.8165-.387-.0213-.332-.4843-.4082-.8165zm.6094 0c.0396.2133.3197.542.1369.7493-.1067-.1463-.3106-.5482-.137-.7493zm-16.039.1298c.4297.0108.9446.1147 1.057.3451-.5455-.0883-1.134-.1336-1.6337-.2707.0914-.0538.3189-.081.5767-.0744zm-.25.3433c.1167.0012.2099.028.219.1423-.1493.1706-.0765.5575-.3416.6124 0-.1128-.1888-.0394-.204-.137.0944-.1766.2498-.2954.204-.6123a1.524 1.524 0 0 1 .1226-.0054zm-.3933.0054c-.0183.2529-.1069.4354-.2714.5451-.0213-.2925-.006-.5512.2714-.5451zm1.2247.1339c.1158.1371.0973.5514-.0672.6124-.1432-.0762-.274-.649.0672-.6124zm.4083.0702c.0152.125.1767.4507 0 .5452-.0214-.1189-.3139-.5238 0-.5452zm14.5738 2.0413c.2255.0244.1064.393.1369.6124-2.3797.582-4.5644.7128-7.1635 1.0997l-1.2158-.0089c-1.7916.131-4.171.1646-5.856-.2041-.0334-.2407-.1007-.4446-.0672-.7493 2.2822-.1676 4.6439.3136 6.9474.1369 2.526-.195 4.9512-.7831 7.2182-.8867zm-.4083.1369c-.0548.0365-.1096.0703-.204.0672.006.198.0239.3837.2707.341.0091-.1676.0126-.329-.0667-.4082zm-2.6572.3416c-.0152.2437.0979.3562.3416.341.0518-.061.0728-.152.0667-.2708-.0792-.0823-.2407-.0794-.4083-.0702zM5.97 16.582c-.0457.2285.116.25.2714.2714.0548-.061.0763-.1526.0702-.2714zm6.9474.0673c-.1006.2132-.0033.2772.1369.4082.1736-.006.1339-.2285.1339-.4082zm-4.1129.0743c-.057-.0037-.1187.0145-.1773.0625-.0152.2438.0972.3563.341.341.1348-.185.0074-.3923-.1637-.4035zm8.8113.1964c.0092.521-.0824.5822-.0702 1.1581-1.0207.0701-1.4718-.0978-2.3828-.1374.3108-.9111 1.5511-.8714 2.453-1.0207zm-5.5822.6826c.0457.2468.0947.4935.0673.8165-.8684.0275-1.7373-.222-2.5203-.0666-.0762-.2133-.0061-.1554 0-.4083.6033-.4022 1.9137-.2288 2.453-.3416zm3.9064.6636c.1382-.0064.3265.0284.451.153h-.204c-.5694-.0172-.4774-.1424-.247-.153zm1.3824.0036c.1326-.008.2384.0107.2262.1493-.0762.0914-.5362-.0058-.6124-.1368.0945.0304.2537-.0045.3862-.0125zm-6.395.2154c.1815.0066.3368.0398.4236.138-.2468-.003-.5362.0369-.6123-.1368a2.6671 2.6671 0 0 1 .1886-.0012zm5.2935.063c.4243-.0022.8604.043 1.261.2792-.9171-.2042-2.0204.11-2.453-.2708.355.0442.7677-.006 1.192-.0083zm-6.0756.1756c.6793-.0043 1.6155.0968 2.0222.378-.972-.125-1.743.0215-2.587-.341.1402-.0222.3384-.0355.5648-.037zm5.5144.1714c.6914.0055 1.3525.0443 1.8919.2065-.1158.1798-.009.5853-.137.7499-.6367-.067-1.828.128-2.5196 0-.0366-.3779.0361-.6432.0666-.954.2339-.0023.4676-.0042.698-.0024zm-6.0119.1363c.5729.1036 1.9195.189 2.5197.2744-.0883.4936.1676.9445 0 1.295-.5972.3534-1.5266.378-2.3828.4754-.1463-.5362-.3167-1.411-.1369-2.0448zm6.9474 1.0909c.9537-.0427 1.4072.7652 1.2914 1.4294-.2072 1.2036-2.5014 1.4865-3.132.475.009-.7161.0033-1.4503.5456-1.633.064.4905-.2193.591-.204.8867.0578 1.2096 2.2818 1.3774 2.4524.2713.131-.8562-.6213-.8993-.9534-1.4294zm-.7558.2404c.0436-.0153.0947.015.1036.0607.0036.0042.0088.0046.0119.0101.0365.07.043.1458.0583.222.0091.0457-.0217.0765-.0613.0887a.9213.9213 0 0 1-.2041.0333c-.061.003-.1189-.0612-.0762-.119.0548-.0762.0884-.161.125-.2524a.0721.0721 0 0 1 .0428-.0434zm1.0296.3053c.265.006.5516.4539.4755 1.0206-.2773.4875-1.5542.5269-1.5664.341.7953.0914 1.0362-.3714 1.3622-.7492.0214-.2743-.442-.4174-.2713-.6124zm-.3636.1654c.1848-.0061.3668.2504.4308.447-.3108.2102-.5.5453-.954.6123-.1706-.1676-.4478-.2345-.4082-.6123.4692-.0397.4177-.1583.7498.0672.1493-.1432-.0335-.195 0-.4082.058-.0724.12-.104.1816-.106zm-5.2912.31c.8866.0245 1.1762.6398 1.292 1.429.0304.1889-.2531.064-.2714.204.0792.0336.1554.073.2041.137-.46.8927-3.1687 1.4504-2.7238-.4083.07 1.1761 1.779.9509 2.2483.2714.2255-.9568-.4384-1.0389-.7492-1.633zm-.4755.5452c.088.0907.2554.1019.2755.2625a.313.313 0 0 1-.0012.0785c-.131.128-.171.0061-.3416 0 .0366-.1005-.079-.3532.0673-.341zm.545 0c1.4017.5515-.1582 2.0504-1.2247 1.2277-.0944-.265-.3105-.9659.0673-1.0908.1188.198.1612.4758.1369.817.2986.4724 1.3837.3046 1.4294-.2713-.2803-.0762-.1315-.4784-.4088-.6826zm.0673.4755c.0945.0884.0672.2957.0703.4785-.3322.0426-.71.2373-.8868-.1375.4175.0305.4905-.28.8165-.341zm8.503.532c-.0694-.005-.1785.0148-.3308.0834.393.1713.5394-.0684.3309-.0834Z" }) + ] + } + ); +}); + +export { SiInstructables as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.cjs new file mode 100644 index 000000000..62b197708 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A7BA0"; +const SiInstructure = React__namespace.forwardRef(function SiInstructure2({ title = "Instructure", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.996 0-5.11 2.878L12 5.76l5.115-2.878ZM6.032 3.36.918 6.237 6.036 9.12l5.115-2.879Zm11.929 0-5.112 2.878 5.115 2.882 5.118-2.879zM12 11.52.918 17.76 12 24l11.082-6.241Z" }) + ] + } + ); +}); + +exports.default = SiInstructure; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.d.ts new file mode 100644 index 000000000..205a7fc06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A7BA0"; +declare const SiInstructure: IconType; +export { SiInstructure as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.mjs new file mode 100644 index 000000000..f9c932d49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInstructure.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A7BA0"; +const SiInstructure = React.forwardRef(function SiInstructure2({ title = "Instructure", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.996 0-5.11 2.878L12 5.76l5.115-2.878ZM6.032 3.36.918 6.237 6.036 9.12l5.115-2.879Zm11.929 0-5.112 2.878 5.115 2.882 5.118-2.879zM12 11.52.918 17.76 12 24l11.082-6.241Z" }) + ] + } + ); +}); + +export { SiInstructure as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.cjs new file mode 100644 index 000000000..8b9938cf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0071C5"; +const SiIntel = React__namespace.forwardRef(function SiIntel2({ title = "Intel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.42 7.345v9.18h1.651v-9.18zM0 7.475v1.737h1.737V7.474zm9.78.352v6.053c0 .513.044.945.13 1.292.087.34.235.618.44.828.203.21.475.359.803.451.334.093.754.136 1.255.136h.216v-1.533c-.24 0-.445-.012-.593-.037a.672.672 0 0 1-.39-.173.693.693 0 0 1-.173-.377 4.002 4.002 0 0 1-.037-.606v-2.182h1.193v-1.416h-1.193V7.827zm-3.505 2.312c-.396 0-.76.08-1.082.241-.327.161-.6.384-.822.668l-.087.117v-.902H2.658v6.256h1.639v-3.214c.018-.588.16-1.02.433-1.299.29-.297.642-.445 1.044-.445.476 0 .841.149 1.082.433.235.284.359.686.359 1.2v3.324h1.663V12.97c.006-.89-.229-1.595-.686-2.09-.458-.495-1.1-.742-1.917-.742zm10.065.006a3.252 3.252 0 0 0-2.306.946c-.29.29-.525.637-.692 1.033a3.145 3.145 0 0 0-.254 1.273c0 .452.08.878.241 1.274.161.395.39.742.674 1.032.284.29.637.526 1.045.693.408.173.86.26 1.342.26 1.397 0 2.262-.637 2.782-1.23l-1.187-.904c-.248.297-.841.699-1.583.699-.464 0-.847-.105-1.138-.321a1.588 1.588 0 0 1-.593-.872l-.019-.056h4.915v-.587c0-.451-.08-.872-.235-1.267a3.393 3.393 0 0 0-.661-1.033 3.013 3.013 0 0 0-1.02-.692 3.345 3.345 0 0 0-1.311-.248zm-16.297.118v6.256h1.651v-6.256zm16.278 1.286c1.132 0 1.664.797 1.664 1.255l-3.32.006c0-.458.525-1.255 1.656-1.261zm7.073 3.814a.606.606 0 0 0-.606.606.606.606 0 0 0 .606.606.606.606 0 0 0 .606-.606.606.606 0 0 0-.606-.606zm-.008.105a.5.5 0 0 1 .002 0 .5.5 0 0 1 .5.501.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .498-.5zm-.233.155v.699h.13v-.285h.093l.173.285h.136l-.18-.297a.191.191 0 0 0 .118-.056c.03-.03.05-.074.05-.136 0-.068-.02-.117-.063-.154-.037-.038-.105-.056-.185-.056zm.13.099h.154c.019 0 .037.006.056.012a.064.064 0 0 1 .037.031c.013.013.012.031.012.056a.124.124 0 0 1-.012.055.164.164 0 0 1-.037.031c-.019.006-.037.013-.056.013h-.154Z" }) + ] + } + ); +}); + +exports.default = SiIntel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.d.ts new file mode 100644 index 000000000..b3d9d1ab7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0071C5"; +declare const SiIntel: IconType; +export { SiIntel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.mjs new file mode 100644 index 000000000..7d312db98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0071C5"; +const SiIntel = React.forwardRef(function SiIntel2({ title = "Intel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.42 7.345v9.18h1.651v-9.18zM0 7.475v1.737h1.737V7.474zm9.78.352v6.053c0 .513.044.945.13 1.292.087.34.235.618.44.828.203.21.475.359.803.451.334.093.754.136 1.255.136h.216v-1.533c-.24 0-.445-.012-.593-.037a.672.672 0 0 1-.39-.173.693.693 0 0 1-.173-.377 4.002 4.002 0 0 1-.037-.606v-2.182h1.193v-1.416h-1.193V7.827zm-3.505 2.312c-.396 0-.76.08-1.082.241-.327.161-.6.384-.822.668l-.087.117v-.902H2.658v6.256h1.639v-3.214c.018-.588.16-1.02.433-1.299.29-.297.642-.445 1.044-.445.476 0 .841.149 1.082.433.235.284.359.686.359 1.2v3.324h1.663V12.97c.006-.89-.229-1.595-.686-2.09-.458-.495-1.1-.742-1.917-.742zm10.065.006a3.252 3.252 0 0 0-2.306.946c-.29.29-.525.637-.692 1.033a3.145 3.145 0 0 0-.254 1.273c0 .452.08.878.241 1.274.161.395.39.742.674 1.032.284.29.637.526 1.045.693.408.173.86.26 1.342.26 1.397 0 2.262-.637 2.782-1.23l-1.187-.904c-.248.297-.841.699-1.583.699-.464 0-.847-.105-1.138-.321a1.588 1.588 0 0 1-.593-.872l-.019-.056h4.915v-.587c0-.451-.08-.872-.235-1.267a3.393 3.393 0 0 0-.661-1.033 3.013 3.013 0 0 0-1.02-.692 3.345 3.345 0 0 0-1.311-.248zm-16.297.118v6.256h1.651v-6.256zm16.278 1.286c1.132 0 1.664.797 1.664 1.255l-3.32.006c0-.458.525-1.255 1.656-1.261zm7.073 3.814a.606.606 0 0 0-.606.606.606.606 0 0 0 .606.606.606.606 0 0 0 .606-.606.606.606 0 0 0-.606-.606zm-.008.105a.5.5 0 0 1 .002 0 .5.5 0 0 1 .5.501.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5.5.5 0 0 1 .498-.5zm-.233.155v.699h.13v-.285h.093l.173.285h.136l-.18-.297a.191.191 0 0 0 .118-.056c.03-.03.05-.074.05-.136 0-.068-.02-.117-.063-.154-.037-.038-.105-.056-.185-.056zm.13.099h.154c.019 0 .037.006.056.012a.064.064 0 0 1 .037.031c.013.013.012.031.012.056a.124.124 0 0 1-.012.055.164.164 0 0 1-.037.031c-.019.006-.037.013-.056.013h-.154Z" }) + ] + } + ); +}); + +export { SiIntel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.cjs new file mode 100644 index 000000000..2b45895f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiIntellijidea = React__namespace.forwardRef(function SiIntellijidea2({ title = "IntelliJ IDEA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm3.723 3.111h5v1.834h-1.39v6.277h1.39v1.834h-5v-1.834h1.444V4.945H3.723zm11.055 0H17v6.5c0 .612-.055 1.111-.222 1.556-.167.444-.39.777-.723 1.11-.277.279-.666.557-1.11.668a3.933 3.933 0 0 1-1.445.278c-.778 0-1.444-.167-1.944-.445a4.81 4.81 0 0 1-1.279-1.056l1.39-1.555c.277.334.555.555.833.722.277.167.611.278.945.278.389 0 .721-.111 1-.389.221-.278.333-.667.333-1.278zM2.222 19.5h9V21h-9z" }) + ] + } + ); +}); + +exports.default = SiIntellijidea; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.d.ts new file mode 100644 index 000000000..e178d9be5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiIntellijidea: IconType; +export { SiIntellijidea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.mjs new file mode 100644 index 000000000..91e9596bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntellijidea.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiIntellijidea = React.forwardRef(function SiIntellijidea2({ title = "IntelliJ IDEA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm3.723 3.111h5v1.834h-1.39v6.277h1.39v1.834h-5v-1.834h1.444V4.945H3.723zm11.055 0H17v6.5c0 .612-.055 1.111-.222 1.556-.167.444-.39.777-.723 1.11-.277.279-.666.557-1.11.668a3.933 3.933 0 0 1-1.445.278c-.778 0-1.444-.167-1.944-.445a4.81 4.81 0 0 1-1.279-1.056l1.39-1.555c.277.334.555.555.833.722.277.167.611.278.945.278.389 0 .721-.111 1-.389.221-.278.333-.667.333-1.278zM2.222 19.5h9V21h-9z" }) + ] + } + ); +}); + +export { SiIntellijidea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.cjs new file mode 100644 index 000000000..48ddddbc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2B2B2B"; +const SiInteractiondesignfoundation = React__namespace.forwardRef(function SiInteractiondesignfoundation2({ title = "Interaction Design Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.036C-.035 5.397 5.326.036 11.964 0c6.639-.035 12 5.326 12.036 11.965.035 6.639-5.326 11.999-11.964 12.035H12C5.397 24 .036 18.639 0 12.036Zm.355 0C.355 18.462 5.574 23.68 12 23.68c6.426 0 11.645-5.218 11.645-11.644S18.461.426 12.036.391H12C5.574.391.355 5.61.355 12.036Zm13.708 8.055a.603.603 0 0 1 .109.207.843.843 0 0 1 .036.247.808.808 0 0 1-.045.279.518.518 0 0 1-.312.33.68.68 0 0 1-.245.042.663.663 0 0 1-.263-.049.497.497 0 0 1-.188-.135.577.577 0 0 1-.112-.209.851.851 0 0 1-.038-.258.83.83 0 0 1 .036-.25.597.597 0 0 1 .113-.207.5.5 0 0 1 .189-.141.648.648 0 0 1 .264-.052.63.63 0 0 1 .269.053.534.534 0 0 1 .187.143Zm1.438 0a.586.586 0 0 1 .109.207.843.843 0 0 1 .036.247.808.808 0 0 1-.045.279.558.558 0 0 1-.122.204.51.51 0 0 1-.19.126.68.68 0 0 1-.245.042.663.663 0 0 1-.263-.049.497.497 0 0 1-.188-.135.592.592 0 0 1-.112-.209.851.851 0 0 1-.037-.258.83.83 0 0 1 .036-.25.595.595 0 0 1 .112-.207.5.5 0 0 1 .189-.141.648.648 0 0 1 .264-.052.63.63 0 0 1 .269.053.534.534 0 0 1 .187.143Zm-6.113.516a.3.3 0 0 1 .072.095c.017.036.025.08.025.132a.32.32 0 0 1-.117.256.458.458 0 0 1-.304.099.506.506 0 0 1-.3-.1l-.023.074h-.086l-.011-.392h.079a.508.508 0 0 0 .111.212.39.39 0 0 0 .107.085.282.282 0 0 0 .14.035c.073 0 .13-.017.169-.051.04-.033.06-.081.06-.143a.167.167 0 0 0-.019-.083.197.197 0 0 0-.055-.061.448.448 0 0 0-.093-.047 1.256 1.256 0 0 0-.123-.042 1.552 1.552 0 0 1-.119-.044.487.487 0 0 1-.113-.066.338.338 0 0 1-.082-.098.276.276 0 0 1-.032-.138c0-.092.034-.17.103-.234A.386.386 0 0 1 9.052 20a.534.534 0 0 1 .249.058l.026-.06h.082l.018.363h-.079a.365.365 0 0 0-.104-.198.27.27 0 0 0-.194-.076.211.211 0 0 0-.147.047.145.145 0 0 0-.054.114c0 .034.006.063.018.086a.146.146 0 0 0 .053.058.43.43 0 0 0 .086.043l.129.045c.05.016.098.035.142.056a.483.483 0 0 1 .111.071Zm.964.504c-.049.02-.096.037-.141.052a.54.54 0 0 1-.162.021c-.095 0-.161-.024-.2-.072a.316.316 0 0 1-.057-.202v-.764h-.204v-.11h.208v-.351h.208v.351h.324v.11h-.321v.63c0 .048.001.087.005.119a.212.212 0 0 0 .024.083.121.121 0 0 0 .055.05.232.232 0 0 0 .099.017.787.787 0 0 0 .162-.018v.084Zm.505-.083a.146.146 0 0 1-.047.109.147.147 0 0 1-.11.046.147.147 0 0 1-.11-.046.146.146 0 0 1-.047-.109.15.15 0 0 1 .047-.11.148.148 0 0 1 .11-.047c.043 0 .08.016.11.047a.15.15 0 0 1 .047.11Zm-2.35-.347-.031.479H7.128v-.082c.023-.001.053-.004.092-.009a.268.268 0 0 0 .074-.016.107.107 0 0 0 .051-.044.162.162 0 0 0 .014-.07v-1.167a.174.174 0 0 0-.012-.067.105.105 0 0 0-.053-.048.485.485 0 0 0-.083-.026.893.893 0 0 0-.083-.014v-.081h1.256v.391h-.086a.535.535 0 0 0-.098-.184c-.051-.065-.099-.101-.145-.107a.883.883 0 0 0-.085-.007c-.033-.002-.07-.002-.112-.002h-.255v.645h.183a.366.366 0 0 0 .129-.017.17.17 0 0 0 .071-.055.295.295 0 0 0 .043-.089.56.56 0 0 0 .024-.105h.085v.637h-.085a.6.6 0 0 0-.025-.117.277.277 0 0 0-.042-.088.168.168 0 0 0-.081-.059.426.426 0 0 0-.119-.013h-.183v.486c0 .049.003.087.01.116a.11.11 0 0 0 .04.064c.02.014.047.023.081.028.035.004.084.006.147.006h.099c.042 0 .076-.002.105-.005a.597.597 0 0 0 .089-.016.135.135 0 0 0 .066-.033.738.738 0 0 0 .111-.166c.038-.075.063-.129.073-.165h.083Zm8.455.479H15.89v-.157a.636.636 0 0 1 .086-.079 2.02 2.02 0 0 1 .24-.163l.145-.08c.06-.032.107-.06.139-.085a.422.422 0 0 0 .089-.09.307.307 0 0 0 .042-.089.537.537 0 0 0 .016-.151c0-.095-.025-.165-.077-.21a.29.29 0 0 0-.196-.067c-.05 0-.097.01-.141.029a.233.233 0 0 0-.1.081l.02.087a.423.423 0 0 1 .012.098.106.106 0 0 1-.036.078c-.024.022-.059.033-.107.033a.106.106 0 0 1-.088-.039.171.171 0 0 1-.031-.106c0-.041.012-.082.035-.124a.388.388 0 0 1 .098-.115.524.524 0 0 1 .156-.084.617.617 0 0 1 .2-.032c.156 0 .281.035.372.105.092.07.138.163.138.279a.453.453 0 0 1-.024.152.316.316 0 0 1-.08.122.622.622 0 0 1-.142.1 7.322 7.322 0 0 1-.248.116c-.066.029-.128.06-.185.093a.954.954 0 0 0-.141.094h.88v.204Zm-4.185 0h-1.072v-.157a.685.685 0 0 1 .085-.079 2.064 2.064 0 0 1 .386-.243c.06-.032.107-.06.139-.085a.447.447 0 0 0 .089-.09.307.307 0 0 0 .042-.089.537.537 0 0 0 .016-.151c0-.095-.026-.165-.077-.21a.29.29 0 0 0-.196-.067c-.05 0-.097.01-.141.029a.227.227 0 0 0-.1.081l.02.087a.423.423 0 0 1 .012.098.106.106 0 0 1-.036.078c-.024.022-.059.033-.107.033a.106.106 0 0 1-.088-.039.171.171 0 0 1-.031-.106c0-.041.012-.082.035-.124a.374.374 0 0 1 .098-.115.524.524 0 0 1 .156-.084.612.612 0 0 1 .2-.032.6.6 0 0 1 .372.105c.092.07.138.163.138.279a.429.429 0 0 1-.025.152.303.303 0 0 1-.079.122.622.622 0 0 1-.142.1 7.322 7.322 0 0 1-.248.116c-.067.029-.128.06-.186.093a.939.939 0 0 0-.14.094h.88v.204Zm1.178-.615c0-.181-.031-.322-.093-.422a.286.286 0 0 0-.254-.15.29.29 0 0 0-.256.15c-.062.1-.094.241-.094.422 0 .173.03.311.09.416.06.105.146.158.258.158.112 0 .198-.053.259-.158a.833.833 0 0 0 .09-.416Zm1.438 0c0-.181-.031-.322-.093-.422-.062-.1-.147-.15-.253-.15a.29.29 0 0 0-.257.15c-.062.1-.094.241-.094.422 0 .173.03.311.09.416.06.105.146.158.258.158a.285.285 0 0 0 .259-.158.833.833 0 0 0 .09-.416ZM5.148 19.456h-.071c-1.811-1.669-2.911-3.941-3.16-6.391.036-.071.071-.071.142-.071l.036.036a9.892 9.892 0 0 0 3.124 6.248c.036.036.036.107 0 .142h-.071v.036Zm13.739 0h-.142c-.035-.036-.035-.107 0-.142 1.776-1.634 2.876-3.87 3.125-6.284-.036-.071 0-.107.071-.142.071-.036.106 0 .142.071 0 .035 0 .071-.036.106a10.196 10.196 0 0 1-3.16 6.391ZM12.142 8.508a3.903 3.903 0 0 0-.284-1.407c.355 0 .675-.071.994-.213 0 .497.107.958.284 1.42-.35 0-.665.069-.98.207.518.242.815 1.446 1.087 1.958l-.462.249c.32.497.568 1.03.675 1.598l.568-.462-.249-.106c.178-.355.462-.639.817-.852.177.213.39.39.603.532a2.265 2.265 0 0 0-.781.852l-.319-.319c-.249.319-.462.71-.604 1.1.036.426 0 .888-.106 1.314a2.65 2.65 0 0 1 1.171-.355c.107-.426.355-.746.746-.959l-.391-.461c.426-.426 1.243-1.207 1.704-1.314.426.391.746.852.959 1.385a4.12 4.12 0 0 0-1.846.923l-.32-.462a1.568 1.568 0 0 0-.39.852c.532-.035 1.1 0 1.633.071.035-.213.071-.39.035-.603.284-.036 1.42 0 2.059.461-.142.462-.248.959-.248 1.456 0 0-1.314-.568-2.059-.426.071-.213.142-.462.177-.675a4.694 4.694 0 0 0-2.201.32l.71.142a.651.651 0 0 0 .071-.249c.391.071.746.284 1.03.568a1.374 1.374 0 0 0-.426.675 2.59 2.59 0 0 0-1.03-.533l.249-.39c-.32-.036-.639-.071-.959-.036l-.568.391a2.12 2.12 0 0 0-.497.745c.107.142.142.32.142.497.036.284-.106.533-.355.675 0 .39.142.781.391 1.065l.167.107h4.767v.177H5.858v-.177h4.694c.203-.116.357-.218.383-.32a4.21 4.21 0 0 0 0-1.882A2.444 2.444 0 0 0 9.55 14.84c-.213.036-.426.142-.639.249l.355.248a2.265 2.265 0 0 0-.781.852c-.177-.213-.39-.39-.603-.568.177-.355.461-.639.816-.852l.178.178c.142-.107.284-.213.461-.249-.603-.213-1.242-.39-1.881-.461v.639c-.71-.071-1.385 0-2.059.248 0-.071-.213-1.065.035-1.668.249-.604 1.598.035 2.166.142-.036.142-.071.319-.107.461a5.77 5.77 0 0 1 1.349-.071 1.939 1.939 0 0 0-.887-.71 3.934 3.934 0 0 1-.852-.523 3.625 3.625 0 0 1-.178-.116l.024-.014-.024-.021-.532.284c-.107-.675-.462-1.349-.923-1.846.532-.107 1.029-.32 1.491-.569.071.498.177 1.527.532 1.989a1.05 1.05 0 0 0-.544.163c.051.045.103.088.154.13.316.188.672.327 1.029.417a1.366 1.366 0 0 1 0-.533h-.248a2.68 2.68 0 0 1 .035-.923c.249-.035.497 0 .71.071a1.925 1.925 0 0 0-.213.888H8.13c0 .213.036.39.142.568.462.142.888.461 1.136.887l.959.249c0-.178-.036-.355-.107-.497l-.248.071a1.646 1.646 0 0 0-.426-.817c.213-.106.461-.213.71-.248.142.284.213.568.248.887h-.284c.107.178.178.355.213.568l.568.249a3.187 3.187 0 0 0-.745-2.308l-.568.462C9.55 12 8.45 11.042 8.45 11.042a4.497 4.497 0 0 0 1.171-.853c.675.355 1.172 1.385 1.278 1.669l-.532.284.639.533.248.355c.142-.107.249-.249.355-.426l-.355-.107c.249-.355.391-.745.462-1.171.248.177.533.284.817.319a2.485 2.485 0 0 1-.426 1.207l-.356-.177a1.497 1.497 0 0 1-.355.603c.213.462.355.994.568 1.491 1.279-1.065.924-3.088.675-4.011l-.603.461a4.804 4.804 0 0 0-1.669-1.598c.035-.035.781-.958 1.491-1.136a.435.435 0 0 1 .284.023v.013a.196.196 0 0 0 .014-.006.061.061 0 0 0-.014-.007Zm.675 7.823c.035-.142-.036-.284-.178-.355-.142.036-.213.178-.213.32-.035.142.036.284.178.355.142-.036.248-.178.213-.32Zm-.249-.639c-.248.071-.355.355-.284.746a.81.81 0 0 1 .249-.675c.106-.071.035-.106.035-.106v.035Zm5.787-2.059c.071-.248-.249-1.065-.533-1.633a5.358 5.358 0 0 0 2.308-.745c.071.568.249 1.136.533 1.633-.426-.071-1.811.461-2.308.745ZM5.61 11.787c-.142.178-.178.959-.142 1.491a5.948 5.948 0 0 0-2.095-.248c.142-.497.213-.994.142-1.491.319.248 1.598.284 2.095.248Zm-3.17.07.009.443-.05.001-.005-.054a.177.177 0 0 0-.009-.049.072.072 0 0 0-.025-.033.08.08 0 0 0-.044-.01l-.713.014a.095.095 0 0 0-.04.008c-.011.006-.02.018-.027.037a.33.33 0 0 0-.014.053.323.323 0 0 0-.008.051l-.049.001-.009-.443.05-.001c0 .015.002.032.006.052a.295.295 0 0 0 .012.051c.006.018.015.029.028.035a.083.083 0 0 0 .042.008l.712-.013a.088.088 0 0 0 .04-.011.065.065 0 0 0 .027-.035.315.315 0 0 0 .018-.104l.049-.001Zm20.033.454a.237.237 0 0 0-.012-.06.2.2 0 0 0-.023-.057c-.012-.016-.034-.027-.067-.032a.76.76 0 0 0-.125-.006l-.72.017-.002-.061.792-.614-.508.011a.65.65 0 0 0-.131.014.118.118 0 0 0-.064.035.371.371 0 0 0-.039.132l-.049.001-.01-.403.05-.001a.368.368 0 0 0 .038.117.097.097 0 0 0 .06.032.614.614 0 0 0 .136.006l.485-.011a.176.176 0 0 0 .063-.012.125.125 0 0 0 .049-.031.203.203 0 0 0 .037-.069.196.196 0 0 0 .016-.069l.05-.001.006.281-.737.57.467-.011a.58.58 0 0 0 .132-.014c.031-.008.051-.019.061-.033a.27.27 0 0 0 .024-.064.287.287 0 0 0 .012-.067l.05-.002.009.4-.05.002ZM15.16 9.976c.674-.355 1.349-1.633 1.349-1.633.319.391.674.71 1.1.994-.213.746-1.065 1.492-1.313 1.634-.107-.142-.213-.285-.355-.391a2.461 2.461 0 0 0-.604 1.065c.071-.426.249-.816.462-1.172l-.639-.497Zm2.094.639c.568-.355 1.349-1.1 1.527-1.704a5.46 5.46 0 0 0 1.278 1.278c-.497.284-1.491.888-1.811 1.421a2.674 2.674 0 0 0-.994-.995Zm-15.627-.171a.307.307 0 0 0 .005.06.179.179 0 0 0 .016.06c.009.018.03.031.062.04a.752.752 0 0 0 .124.021l.717.072-.006.06-.861.513.505.05a.606.606 0 0 0 .132.003c.031-.004.054-.013.068-.027a.156.156 0 0 0 .035-.062.38.38 0 0 0 .02-.064l.049.004-.04.402-.049-.005a.438.438 0 0 0-.023-.121.098.098 0 0 0-.056-.039.72.72 0 0 0-.135-.023l-.482-.048a.18.18 0 0 0-.065.005.115.115 0 0 0-.051.024.215.215 0 0 0-.046.064.236.236 0 0 0-.025.067l-.049-.005.028-.28.802-.476-.466-.046a.546.546 0 0 0-.133-.002c-.031.004-.052.013-.064.025a.273.273 0 0 0-.032.061.315.315 0 0 0-.02.065l-.049-.005.04-.398.049.005Zm12.326-.539c-.107.462-.32.924-.604 1.314a3.62 3.62 0 0 0 .355-1.385l-.568-.142c.355-.461.426-1.491.462-1.988.497.249.994.426 1.526.497-.426.355-.71 1.278-.781 1.917l-.39-.213Zm8.372.864a.477.477 0 0 1-.147.126.592.592 0 0 1-.204.068.575.575 0 0 1-.216-.005.474.474 0 0 1-.301-.21.461.461 0 0 1 .029-.532.56.56 0 0 1 .344-.188.584.584 0 0 1 .218.005.46.46 0 0 1 .356.572.439.439 0 0 1-.079.164Zm-.705.003c.045.02.095.031.149.035.055.003.114 0 .179-.01a.84.84 0 0 0 .181-.047.48.48 0 0 0 .134-.079.263.263 0 0 0 .089-.244.255.255 0 0 0-.059-.134.296.296 0 0 0-.116-.079.505.505 0 0 0-.149-.029.842.842 0 0 0-.348.054.452.452 0 0 0-.132.078.255.255 0 0 0-.094.247.266.266 0 0 0 .166.208Zm-12.78-.689c-.497.035-.958.213-1.384.461-.036-.674-.675-1.633-.994-2.13.639-.035 1.775-.603 1.775-.603-.142.639.213 1.633.603 2.272Zm-6.758-.72-.011.047a.473.473 0 0 0-.134.031.294.294 0 0 0-.064.032.086.086 0 0 0-.037.04l-.04.15.769.172a.104.104 0 0 0 .043 0 .075.075 0 0 0 .036-.027.334.334 0 0 0 .024-.048.324.324 0 0 0 .022-.059l.048.011-.101.453-.048-.01.008-.059a.22.22 0 0 0 .001-.057.06.06 0 0 0-.018-.038.083.083 0 0 0-.042-.02l-.774-.173-.019.091a.692.692 0 0 0-.009.061c-.002.015.004.032.016.052a.468.468 0 0 0 .153.141l-.01.047-.261-.058.187-.837.261.058Zm3.528.791c-.213-.568-1.101-1.243-1.101-1.243.32-.213.604-.426.852-.71.497.284.888.675 1.136 1.172-.319.213-.639.461-.887.781Zm15.639-.336-.112-.428.048-.013.017.052a.23.23 0 0 0 .021.046.07.07 0 0 0 .032.026.086.086 0 0 0 .045-.001l.689-.181a.096.096 0 0 0 .038-.018c.009-.008.015-.022.017-.042.002-.015.002-.033.002-.054a.314.314 0 0 0-.005-.052l.048-.013.112.429-.047.012a.671.671 0 0 0-.019-.048c-.007-.019-.016-.034-.024-.048-.01-.015-.021-.024-.035-.027a.086.086 0 0 0-.042.002l-.689.181a.078.078 0 0 0-.037.02.062.062 0 0 0-.018.04c-.002.01-.001.027 0 .049a.37.37 0 0 0 .007.056l-.048.012ZM8.521 8.343c.355-.142.71-.355.994-.639.106.497.319.959.639 1.385-.284.106-.568.248-.781.461-.142-.461-.462-.887-.852-1.207Zm-5.672.05.267.113-.27.768-.046-.016.013-.054a.333.333 0 0 0 .006-.046.063.063 0 0 0-.016-.038.086.086 0 0 0-.037-.022l-.664-.233a.126.126 0 0 0-.041-.007c-.013.001-.025.008-.038.021a.477.477 0 0 0-.056.086l-.046-.016.251-.715.223.078-.017.049a.312.312 0 0 0-.125.019c-.047.016-.077.036-.09.061l-.044.11-.051.146.367.129.037-.104a.213.213 0 0 0 .016-.077.114.114 0 0 0-.017-.052.166.166 0 0 0-.042-.042.305.305 0 0 0-.055-.034l.017-.049.362.127-.017.049a.26.26 0 0 0-.071-.009.161.161 0 0 0-.059.006.099.099 0 0 0-.049.034.261.261 0 0 0-.032.065l-.036.105.277.097c.028.01.05.015.068.017a.064.064 0 0 0 .044-.01.1.1 0 0 0 .032-.041l.053-.138a.72.72 0 0 0 .027-.115c.001-.019 0-.034-.006-.044a.668.668 0 0 0-.151-.171l.016-.047Zm18.91.508-.016-.044a.633.633 0 0 0 .097-.098.405.405 0 0 0 .037-.062.093.093 0 0 0 .009-.054l-.047-.148-.74.268a.09.09 0 0 0-.036.023.066.066 0 0 0-.016.042.277.277 0 0 0 .005.054.344.344 0 0 0 .013.061l-.047.017-.158-.437.047-.016.025.054c.012.024.021.04.029.048.01.012.022.02.035.023a.09.09 0 0 0 .047-.006l.745-.269-.032-.088-.025-.056c-.007-.014-.021-.025-.042-.035a.364.364 0 0 0-.143-.036.444.444 0 0 0-.062-.001l-.016-.046.251-.091.291.807-.251.09Zm-11.357-.7a4.626 4.626 0 0 0-1.349-1.633c.036-.035.817-.745 1.456-.887.639-.142.852 1.384 1.029 1.917l-.603.248a.985.985 0 0 1 0 .639c-.036-.177-.071-.39-.142-.568l-.391.284Zm8.237-.781c-.355.284-.675.639-.852 1.065a2.231 2.231 0 0 0-.781-.355c.142-.355.39-1.065.639-1.278.355.107.71.284.994.533v.035ZM3.647 7.362l-.117.239a5.958 5.958 0 0 0-.539.085l-.044.091.281.137a.084.084 0 0 0 .042.012c.013.001.026-.005.039-.017a.179.179 0 0 0 .028-.035l.027-.045.044.021-.183.375-.044-.022.017-.045a.16.16 0 0 0 .011-.044.063.063 0 0 0-.01-.039.107.107 0 0 0-.036-.028l-.64-.313a.122.122 0 0 0-.042-.012c-.013-.002-.027.004-.04.016a.472.472 0 0 0-.057.076l-.044-.022.2-.409a.5.5 0 0 1 .063-.1.34.34 0 0 1 .081-.071.225.225 0 0 1 .095-.03.212.212 0 0 1 .108.025.25.25 0 0 1 .083.06.216.216 0 0 1 .046.079.315.315 0 0 1 .013.09.624.624 0 0 1-.009.103l.396-.073a.316.316 0 0 0 .13-.053.178.178 0 0 0 .032-.034.477.477 0 0 0 .025-.038l.044.021Zm10.767.413c.213-.426.675-1.633.639-1.988.426.249.923.391 1.42.462a5.443 5.443 0 0 0-.603 1.952c-.462-.248-1.207-.532-1.42-.461l-.036.035Zm6.335.419-.183-.365.044-.022a.407.407 0 0 0 .052.074c.017.018.03.025.039.02l.013-.008.013-.011.16-.172-.155-.308a2.722 2.722 0 0 0-.09.009l-.118.021a.377.377 0 0 0-.029.011c-.017.008-.023.028-.019.058a.37.37 0 0 0 .028.096l-.044.023-.166-.331.044-.023a.226.226 0 0 0 .063.069.167.167 0 0 0 .118.022c.133-.011.281-.025.445-.041l.439-.042.025.049-.611.675a.173.173 0 0 0-.028.04.184.184 0 0 0-.013.048.183.183 0 0 0 .004.044.268.268 0 0 0 .013.042l-.044.022ZM2.827 7.368a.192.192 0 0 0-.15-.016c-.047.015-.084.051-.111.107l-.052.106.379.186.04-.082a.22.22 0 0 0 .015-.17.218.218 0 0 0-.121-.131Zm18.104.292.274-.305-.407.04.133.265ZM8.237 7.527s-.604-.888-1.101-1.065c.284-.213.533-.497.71-.781.462.248.817.603 1.065 1.065-.284.213-.497.497-.674.781ZM4.263 6.416l-.222.343L4 6.732a.38.38 0 0 0 .037-.083c.007-.023.006-.038-.002-.043l-.014-.008-.015-.005-.23-.051-.187.29c.02.028.038.053.054.072l.078.092a.25.25 0 0 0 .023.019c.016.01.036.006.06-.013a.374.374 0 0 0 .069-.073l.041.027-.201.311-.042-.027a.25.25 0 0 0 .018-.042.149.149 0 0 0 0-.104.249.249 0 0 0-.031-.056c-.077-.109-.164-.23-.261-.363a72.42 72.42 0 0 1-.258-.358l.03-.046.891.185a.143.143 0 0 0 .096-.009.132.132 0 0 0 .037-.026.253.253 0 0 0 .029-.032l.041.027Zm9.903.543a2.69 2.69 0 0 0-1.065 0c-.071-.462-.142-1.42.035-1.811a3.068 3.068 0 0 1 1.385.107c-.249.532-.391 1.1-.355 1.704Zm6.436-.109a.447.447 0 0 1-.401.065.547.547 0 0 1-.169-.092.696.696 0 0 1-.134-.147l-.228-.338.041-.027a.365.365 0 0 0 .063.071.053.053 0 0 0 .039.01.078.078 0 0 0 .041-.016l.589-.397a.095.095 0 0 0 .03-.03c.008-.011.01-.026.007-.043a.165.165 0 0 0-.013-.047l-.019-.039.041-.027.24.356a.572.572 0 0 1 .098.326.43.43 0 0 1-.058.203.543.543 0 0 1-.167.172Zm-.095-.141a.59.59 0 0 0 .134-.122.424.424 0 0 0 .072-.142.332.332 0 0 0 .009-.147.358.358 0 0 0-.06-.147l-.068-.096-.626.423c-.035.023-.053.05-.052.079 0 .03.014.065.043.108.033.048.07.085.112.11a.286.286 0 0 0 .131.04.381.381 0 0 0 .147-.024.705.705 0 0 0 .158-.082ZM3.711 6.53l-.402-.083.241.331.161-.248Zm8.857-.317a3.198 3.198 0 0 0-1.278.178 3.8 3.8 0 0 0-.71-1.846c.035-.036 1.029-.426 1.669-.32.639.107.355 1.456.319 1.988Zm-7.891-.277a.43.43 0 0 1-.303.153.466.466 0 0 1-.185-.026.574.574 0 0 1-.187-.107.59.59 0 0 1-.142-.165.487.487 0 0 1-.063-.183.432.432 0 0 1 .013-.182.47.47 0 0 1 .298-.309l-.018-.052.035-.043.274.22-.036.043a.841.841 0 0 0-.107-.045.423.423 0 0 0-.112-.025.253.253 0 0 0-.107.013.206.206 0 0 0-.087.064.277.277 0 0 0-.054.249.447.447 0 0 0 .07.14c.035.048.08.096.134.141.049.04.098.071.149.093a.468.468 0 0 0 .15.036.336.336 0 0 0 .139-.022.28.28 0 0 0 .112-.083.289.289 0 0 0 .054-.275.367.367 0 0 0-.037-.087l.052-.024c.05.093.07.178.06.255a.433.433 0 0 1-.102.221Zm15.552-.415a.247.247 0 0 0-.047-.038.246.246 0 0 0-.054-.029c-.02-.005-.044.001-.073.019a.758.758 0 0 0-.099.075l-.542.475-.04-.046.213-.979-.382.335a.582.582 0 0 0-.091.094c-.019.026-.028.048-.028.068 0 .015.007.037.022.068a.563.563 0 0 0 .033.059l-.037.032-.266-.303.037-.033a.423.423 0 0 0 .105.066.101.101 0 0 0 .067-.014.648.648 0 0 0 .108-.083l.365-.319a.196.196 0 0 0 .04-.05.118.118 0 0 0 .018-.055.288.288 0 0 0-.047-.141l.037-.032.185.212-.2.91.352-.308a.594.594 0 0 0 .092-.096c.018-.026.027-.047.025-.064A.234.234 0 0 0 20 5.279a.476.476 0 0 0-.034-.059l.037-.033.263.301-.037.033ZM5.165 4.342l-.034.033a.489.489 0 0 0-.203-.056c-.023 0-.041.004-.053.013l-.116.105.553.57a.085.085 0 0 0 .037.023.064.064 0 0 0 .045-.002.527.527 0 0 0 .098-.065l.035.036-.336.327-.035-.036a1.165 1.165 0 0 0 .072-.092.064.064 0 0 0 .006-.042.088.088 0 0 0-.024-.041l-.558-.574-.067.067a.565.565 0 0 0-.041.046c-.01.012-.015.03-.015.053a.304.304 0 0 0 .006.073.496.496 0 0 0 .045.131l-.035.034-.188-.193.62-.604.188.194Zm14.122.157a.337.337 0 0 0-.109-.055c-.019-.002-.042.007-.068.028a.694.694 0 0 0-.088.086l-.282.321a.284.284 0 0 1-.252.099.36.36 0 0 1-.122-.036.46.46 0 0 1-.247-.31.248.248 0 0 1 .06-.209l.384-.437a.102.102 0 0 0 .021-.035.079.079 0 0 0-.005-.044.325.325 0 0 0-.051-.076l.032-.037.308.271-.033.037a.427.427 0 0 0-.08-.049.051.051 0 0 0-.042 0 .107.107 0 0 0-.034.027l-.358.407a.344.344 0 0 0-.048.068.199.199 0 0 0-.014.178.28.28 0 0 0 .08.103.307.307 0 0 0 .112.066.203.203 0 0 0 .103.006.238.238 0 0 0 .082-.032.332.332 0 0 0 .063-.054l.266-.303a.576.576 0 0 0 .075-.101c.016-.03.022-.053.018-.07a.19.19 0 0 0-.032-.064.675.675 0 0 0-.041-.051l.033-.037.301.266-.032.037ZM6.206 4.436l-.344.274-.031-.039.04-.036a.238.238 0 0 0 .034-.038.067.067 0 0 0 .01-.039.075.075 0 0 0-.019-.041l-.44-.554a.094.094 0 0 0-.031-.027c-.011-.005-.026-.005-.045.001a.351.351 0 0 0-.096.045l-.031-.038.345-.274.03.038c-.01.01-.023.021-.036.036a.367.367 0 0 0-.034.041.055.055 0 0 0-.01.043.095.095 0 0 0 .018.038l.441.554c.009.012.02.02.033.025a.065.065 0 0 0 .044.001.41.41 0 0 0 .092-.049l.03.039Zm11.858-.874a.469.469 0 0 1-.007.193.584.584 0 0 1-.088.197.59.59 0 0 1-.15.156.487.487 0 0 1-.359.078.46.46 0 0 1-.171-.072.458.458 0 0 1-.2-.31.493.493 0 0 1 .01-.19.605.605 0 0 1 .236-.347.495.495 0 0 1 .177-.077.463.463 0 0 1 .552.372Zm-.475.521a.474.474 0 0 0 .126-.087.779.779 0 0 0 .115-.138.775.775 0 0 0 .087-.165.449.449 0 0 0 .033-.152.264.264 0 0 0-.119-.231.254.254 0 0 0-.138-.047.297.297 0 0 0-.136.031.495.495 0 0 0-.123.09.855.855 0 0 0-.196.292.473.473 0 0 0-.033.151.287.287 0 0 0 .025.131.26.26 0 0 0 .094.105.256.256 0 0 0 .13.046.279.279 0 0 0 .135-.026ZM6.645 3.099c.062.015.12.042.175.083.055.04.104.093.146.159a.59.59 0 0 1 .084.199.483.483 0 0 1 .001.193.455.455 0 0 1-.204.296.455.455 0 0 1-.364.061.486.486 0 0 1-.171-.084.591.591 0 0 1-.141-.153.56.56 0 0 1-.084-.2.502.502 0 0 1-.002-.193.445.445 0 0 1 .071-.169.48.48 0 0 1 .308-.198.459.459 0 0 1 .181.006Zm.291.643a.48.48 0 0 0-.029-.151.901.901 0 0 0-.199-.305.48.48 0 0 0-.127-.09.264.264 0 0 0-.259.018.253.253 0 0 0-.098.109.299.299 0 0 0-.025.137.5.5 0 0 0 .034.148.85.85 0 0 0 .192.296.471.471 0 0 0 .125.089.255.255 0 0 0 .264-.016.266.266 0 0 0 .122-.235Zm1.059-1.426a.294.294 0 0 0-.092.079c-.011.018-.011.043-.002.075a.69.69 0 0 0 .045.116l.308.652-.055.025-.883-.473.217.459c.024.052.046.09.066.114.019.025.039.04.058.045a.156.156 0 0 0 .071-.002.522.522 0 0 0 .066-.016l.021.045-.365.172-.021-.045a.343.343 0 0 0 .051-.039.179.179 0 0 0 .041-.043.102.102 0 0 0 .005-.068.73.73 0 0 0-.05-.127l-.208-.438a.188.188 0 0 0-.037-.053.122.122 0 0 0-.048-.032.19.19 0 0 0-.078-.006.23.23 0 0 0-.07.013l-.021-.044.254-.121.821.442-.2-.423a.632.632 0 0 0-.066-.115c-.02-.024-.039-.038-.055-.041a.218.218 0 0 0-.069.004.316.316 0 0 0-.066.016l-.021-.045.361-.171.022.045Zm9.026.746-.046-.023a.37.37 0 0 0 0-.133c-.009-.051-.024-.085-.048-.102l-.102-.059-.147-.076-.182.353.101.052a.28.28 0 0 0 .076.027.13.13 0 0 0 .059-.007.132.132 0 0 0 .044-.031.264.264 0 0 0 .045-.054l.047.023-.178.345-.047-.024a.325.325 0 0 0 .02-.068.191.191 0 0 0 .002-.062.103.103 0 0 0-.03-.055.275.275 0 0 0-.064-.044l-.101-.052-.156.302a.085.085 0 0 0-.01.04.07.07 0 0 0 .015.041.342.342 0 0 0 .078.062l-.023.044-.38-.196.023-.044a.682.682 0 0 0 .095.035.056.056 0 0 0 .039-.01.08.08 0 0 0 .028-.034l.327-.632a.107.107 0 0 0 .012-.04c.001-.013-.004-.026-.015-.04a.44.44 0 0 0-.079-.068l.023-.044.687.355-.113.219Zm-1.446-.907a.411.411 0 0 0-.06-.007.203.203 0 0 0-.061.004c-.02.006-.037.024-.052.054a.804.804 0 0 0-.045.117l-.21.689-.058-.018-.335-.944-.148.485a.583.583 0 0 0-.028.129.126.126 0 0 0 .012.072.174.174 0 0 0 .055.046.483.483 0 0 0 .059.033l-.015.047-.386-.118.015-.047a.528.528 0 0 0 .064.005c.031.001.051 0 .06-.005a.102.102 0 0 0 .049-.046.812.812 0 0 0 .048-.128l.142-.464a.19.19 0 0 0 .008-.064.132.132 0 0 0-.014-.056.23.23 0 0 0-.053-.057.24.24 0 0 0-.061-.037l.014-.047.269.082.31.879.136-.447a.536.536 0 0 0 .028-.13c.002-.031-.002-.054-.012-.068a.394.394 0 0 0-.113-.076l.014-.047.383.117-.015.047Zm-5.657.046a.447.447 0 0 1-.072.401.57.57 0 0 1-.144.128.664.664 0 0 1-.184.077l-.395.102-.012-.048c.013-.003.029-.009.049-.016a.156.156 0 0 0 .04-.02.056.056 0 0 0 .022-.033.094.094 0 0 0-.001-.044l-.178-.688a.1.1 0 0 0-.018-.039.062.062 0 0 0-.038-.022.199.199 0 0 0-.049-.003.367.367 0 0 0-.043.005l-.013-.048.417-.107a.555.555 0 0 1 .34.017.418.418 0 0 1 .173.123.523.523 0 0 1 .106.215Zm-.165.042a.575.575 0 0 0-.07-.167.407.407 0 0 0-.11-.116.355.355 0 0 0-.294-.05l-.113.032.189.733c.01.041.029.066.057.076a.213.213 0 0 0 .116-.005.358.358 0 0 0 .141-.069.269.269 0 0 0 .082-.111.383.383 0 0 0 .027-.146.703.703 0 0 0-.025-.177Zm4.389.062-.045-.001a.157.157 0 0 0-.047.005.057.057 0 0 0-.034.024.096.096 0 0 0-.016.043l-.031.187a.623.623 0 0 0-.006.048c-.066.017-.13.027-.193.032a.783.783 0 0 1-.182-.009.477.477 0 0 1-.308-.191.49.49 0 0 1-.076-.176.589.589 0 0 1 .069-.416.477.477 0 0 1 .506-.233.461.461 0 0 1 .24.111l.036-.042.055.009-.052.342-.056-.01a1.178 1.178 0 0 0-.017-.117.425.425 0 0 0-.038-.107.244.244 0 0 0-.182-.129.278.278 0 0 0-.252.08.419.419 0 0 0-.089.131.734.734 0 0 0-.063.365.42.42 0 0 0 .041.153.303.303 0 0 0 .229.175.306.306 0 0 0 .191-.027.82.82 0 0 0 .018-.071l.02-.116a.153.153 0 0 0 .001-.052.055.055 0 0 0-.027-.038.611.611 0 0 0-.119-.043l.009-.05.427.073-.009.05Zm-3.033-.08.019.289-.808.106-.006-.049c.013-.002.031-.007.054-.013a.191.191 0 0 0 .043-.015.06.06 0 0 0 .027-.031.097.097 0 0 0 .003-.043l-.092-.699a.095.095 0 0 0-.013-.039c-.006-.011-.018-.019-.035-.024a.301.301 0 0 0-.103-.011l-.006-.049.753-.099.031.234-.052.007a.317.317 0 0 0-.073-.103c-.036-.035-.068-.052-.096-.053l-.118.011-.153.02.051.386.109-.014a.218.218 0 0 0 .076-.02.112.112 0 0 0 .039-.039.182.182 0 0 0 .018-.057.243.243 0 0 0 .006-.064l.052-.007.05.381-.052.007a.253.253 0 0 0-.024-.068.147.147 0 0 0-.032-.049.098.098 0 0 0-.052-.029.257.257 0 0 0-.073.001l-.11.015.038.291a.294.294 0 0 0 .016.069.064.064 0 0 0 .029.035c.013.007.03.01.051.01l.148-.016a.622.622 0 0 0 .062-.01.627.627 0 0 0 .052-.017.095.095 0 0 0 .037-.025.442.442 0 0 0 .053-.109.603.603 0 0 0 .031-.104l.05-.006Zm1.76.301-.442-.028.003-.049.055-.001a.19.19 0 0 0 .05-.005.07.07 0 0 0 .035-.023.077.077 0 0 0 .013-.042l.046-.711a.086.086 0 0 0-.005-.041c-.004-.012-.016-.021-.034-.03a.469.469 0 0 0-.102-.031l.003-.049.442.029-.003.049a.324.324 0 0 0-.052.002.247.247 0 0 0-.052.008c-.018.004-.031.012-.037.024a.093.093 0 0 0-.012.041l-.046.711a.08.08 0 0 0 .007.041.07.07 0 0 0 .033.03c.009.005.025.01.046.015.022.006.04.01.056.011l-.004.049Zm-.84-.495a.252.252 0 0 1 .048.075.28.28 0 0 1 .016.096.274.274 0 0 1-.092.217.347.347 0 0 1-.237.089.429.429 0 0 1-.132-.018.452.452 0 0 1-.115-.047l-.029.051-.055.001-.017-.336.056-.001a.83.83 0 0 0 .043.111.382.382 0 0 0 .063.093.297.297 0 0 0 .086.064.263.263 0 0 0 .196.007.15.15 0 0 0 .057-.036.16.16 0 0 0 .032-.055.195.195 0 0 0 .009-.071.196.196 0 0 0-.035-.109.208.208 0 0 0-.101-.076l-.104-.037a1.465 1.465 0 0 1-.102-.04.318.318 0 0 1-.131-.095.256.256 0 0 1-.049-.157.237.237 0 0 1 .021-.106.265.265 0 0 1 .063-.088.336.336 0 0 1 .33-.062.563.563 0 0 1 .099.046l.028-.047.055-.002.012.327-.056.001a1.49 1.49 0 0 0-.036-.107.413.413 0 0 0-.052-.092.221.221 0 0 0-.074-.062.205.205 0 0 0-.106-.022.163.163 0 0 0-.111.044.134.134 0 0 0-.045.105.184.184 0 0 0 .032.105c.021.027.05.05.088.067l.196.076a.603.603 0 0 1 .081.039.298.298 0 0 1 .068.052Z" }) + ] + } + ); +}); + +exports.default = SiInteractiondesignfoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.d.ts new file mode 100644 index 000000000..8a461a3f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2B2B2B"; +declare const SiInteractiondesignfoundation: IconType; +export { SiInteractiondesignfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.mjs new file mode 100644 index 000000000..1d0a23076 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractiondesignfoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2B2B2B"; +const SiInteractiondesignfoundation = React.forwardRef(function SiInteractiondesignfoundation2({ title = "Interaction Design Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.036C-.035 5.397 5.326.036 11.964 0c6.639-.035 12 5.326 12.036 11.965.035 6.639-5.326 11.999-11.964 12.035H12C5.397 24 .036 18.639 0 12.036Zm.355 0C.355 18.462 5.574 23.68 12 23.68c6.426 0 11.645-5.218 11.645-11.644S18.461.426 12.036.391H12C5.574.391.355 5.61.355 12.036Zm13.708 8.055a.603.603 0 0 1 .109.207.843.843 0 0 1 .036.247.808.808 0 0 1-.045.279.518.518 0 0 1-.312.33.68.68 0 0 1-.245.042.663.663 0 0 1-.263-.049.497.497 0 0 1-.188-.135.577.577 0 0 1-.112-.209.851.851 0 0 1-.038-.258.83.83 0 0 1 .036-.25.597.597 0 0 1 .113-.207.5.5 0 0 1 .189-.141.648.648 0 0 1 .264-.052.63.63 0 0 1 .269.053.534.534 0 0 1 .187.143Zm1.438 0a.586.586 0 0 1 .109.207.843.843 0 0 1 .036.247.808.808 0 0 1-.045.279.558.558 0 0 1-.122.204.51.51 0 0 1-.19.126.68.68 0 0 1-.245.042.663.663 0 0 1-.263-.049.497.497 0 0 1-.188-.135.592.592 0 0 1-.112-.209.851.851 0 0 1-.037-.258.83.83 0 0 1 .036-.25.595.595 0 0 1 .112-.207.5.5 0 0 1 .189-.141.648.648 0 0 1 .264-.052.63.63 0 0 1 .269.053.534.534 0 0 1 .187.143Zm-6.113.516a.3.3 0 0 1 .072.095c.017.036.025.08.025.132a.32.32 0 0 1-.117.256.458.458 0 0 1-.304.099.506.506 0 0 1-.3-.1l-.023.074h-.086l-.011-.392h.079a.508.508 0 0 0 .111.212.39.39 0 0 0 .107.085.282.282 0 0 0 .14.035c.073 0 .13-.017.169-.051.04-.033.06-.081.06-.143a.167.167 0 0 0-.019-.083.197.197 0 0 0-.055-.061.448.448 0 0 0-.093-.047 1.256 1.256 0 0 0-.123-.042 1.552 1.552 0 0 1-.119-.044.487.487 0 0 1-.113-.066.338.338 0 0 1-.082-.098.276.276 0 0 1-.032-.138c0-.092.034-.17.103-.234A.386.386 0 0 1 9.052 20a.534.534 0 0 1 .249.058l.026-.06h.082l.018.363h-.079a.365.365 0 0 0-.104-.198.27.27 0 0 0-.194-.076.211.211 0 0 0-.147.047.145.145 0 0 0-.054.114c0 .034.006.063.018.086a.146.146 0 0 0 .053.058.43.43 0 0 0 .086.043l.129.045c.05.016.098.035.142.056a.483.483 0 0 1 .111.071Zm.964.504c-.049.02-.096.037-.141.052a.54.54 0 0 1-.162.021c-.095 0-.161-.024-.2-.072a.316.316 0 0 1-.057-.202v-.764h-.204v-.11h.208v-.351h.208v.351h.324v.11h-.321v.63c0 .048.001.087.005.119a.212.212 0 0 0 .024.083.121.121 0 0 0 .055.05.232.232 0 0 0 .099.017.787.787 0 0 0 .162-.018v.084Zm.505-.083a.146.146 0 0 1-.047.109.147.147 0 0 1-.11.046.147.147 0 0 1-.11-.046.146.146 0 0 1-.047-.109.15.15 0 0 1 .047-.11.148.148 0 0 1 .11-.047c.043 0 .08.016.11.047a.15.15 0 0 1 .047.11Zm-2.35-.347-.031.479H7.128v-.082c.023-.001.053-.004.092-.009a.268.268 0 0 0 .074-.016.107.107 0 0 0 .051-.044.162.162 0 0 0 .014-.07v-1.167a.174.174 0 0 0-.012-.067.105.105 0 0 0-.053-.048.485.485 0 0 0-.083-.026.893.893 0 0 0-.083-.014v-.081h1.256v.391h-.086a.535.535 0 0 0-.098-.184c-.051-.065-.099-.101-.145-.107a.883.883 0 0 0-.085-.007c-.033-.002-.07-.002-.112-.002h-.255v.645h.183a.366.366 0 0 0 .129-.017.17.17 0 0 0 .071-.055.295.295 0 0 0 .043-.089.56.56 0 0 0 .024-.105h.085v.637h-.085a.6.6 0 0 0-.025-.117.277.277 0 0 0-.042-.088.168.168 0 0 0-.081-.059.426.426 0 0 0-.119-.013h-.183v.486c0 .049.003.087.01.116a.11.11 0 0 0 .04.064c.02.014.047.023.081.028.035.004.084.006.147.006h.099c.042 0 .076-.002.105-.005a.597.597 0 0 0 .089-.016.135.135 0 0 0 .066-.033.738.738 0 0 0 .111-.166c.038-.075.063-.129.073-.165h.083Zm8.455.479H15.89v-.157a.636.636 0 0 1 .086-.079 2.02 2.02 0 0 1 .24-.163l.145-.08c.06-.032.107-.06.139-.085a.422.422 0 0 0 .089-.09.307.307 0 0 0 .042-.089.537.537 0 0 0 .016-.151c0-.095-.025-.165-.077-.21a.29.29 0 0 0-.196-.067c-.05 0-.097.01-.141.029a.233.233 0 0 0-.1.081l.02.087a.423.423 0 0 1 .012.098.106.106 0 0 1-.036.078c-.024.022-.059.033-.107.033a.106.106 0 0 1-.088-.039.171.171 0 0 1-.031-.106c0-.041.012-.082.035-.124a.388.388 0 0 1 .098-.115.524.524 0 0 1 .156-.084.617.617 0 0 1 .2-.032c.156 0 .281.035.372.105.092.07.138.163.138.279a.453.453 0 0 1-.024.152.316.316 0 0 1-.08.122.622.622 0 0 1-.142.1 7.322 7.322 0 0 1-.248.116c-.066.029-.128.06-.185.093a.954.954 0 0 0-.141.094h.88v.204Zm-4.185 0h-1.072v-.157a.685.685 0 0 1 .085-.079 2.064 2.064 0 0 1 .386-.243c.06-.032.107-.06.139-.085a.447.447 0 0 0 .089-.09.307.307 0 0 0 .042-.089.537.537 0 0 0 .016-.151c0-.095-.026-.165-.077-.21a.29.29 0 0 0-.196-.067c-.05 0-.097.01-.141.029a.227.227 0 0 0-.1.081l.02.087a.423.423 0 0 1 .012.098.106.106 0 0 1-.036.078c-.024.022-.059.033-.107.033a.106.106 0 0 1-.088-.039.171.171 0 0 1-.031-.106c0-.041.012-.082.035-.124a.374.374 0 0 1 .098-.115.524.524 0 0 1 .156-.084.612.612 0 0 1 .2-.032.6.6 0 0 1 .372.105c.092.07.138.163.138.279a.429.429 0 0 1-.025.152.303.303 0 0 1-.079.122.622.622 0 0 1-.142.1 7.322 7.322 0 0 1-.248.116c-.067.029-.128.06-.186.093a.939.939 0 0 0-.14.094h.88v.204Zm1.178-.615c0-.181-.031-.322-.093-.422a.286.286 0 0 0-.254-.15.29.29 0 0 0-.256.15c-.062.1-.094.241-.094.422 0 .173.03.311.09.416.06.105.146.158.258.158.112 0 .198-.053.259-.158a.833.833 0 0 0 .09-.416Zm1.438 0c0-.181-.031-.322-.093-.422-.062-.1-.147-.15-.253-.15a.29.29 0 0 0-.257.15c-.062.1-.094.241-.094.422 0 .173.03.311.09.416.06.105.146.158.258.158a.285.285 0 0 0 .259-.158.833.833 0 0 0 .09-.416ZM5.148 19.456h-.071c-1.811-1.669-2.911-3.941-3.16-6.391.036-.071.071-.071.142-.071l.036.036a9.892 9.892 0 0 0 3.124 6.248c.036.036.036.107 0 .142h-.071v.036Zm13.739 0h-.142c-.035-.036-.035-.107 0-.142 1.776-1.634 2.876-3.87 3.125-6.284-.036-.071 0-.107.071-.142.071-.036.106 0 .142.071 0 .035 0 .071-.036.106a10.196 10.196 0 0 1-3.16 6.391ZM12.142 8.508a3.903 3.903 0 0 0-.284-1.407c.355 0 .675-.071.994-.213 0 .497.107.958.284 1.42-.35 0-.665.069-.98.207.518.242.815 1.446 1.087 1.958l-.462.249c.32.497.568 1.03.675 1.598l.568-.462-.249-.106c.178-.355.462-.639.817-.852.177.213.39.39.603.532a2.265 2.265 0 0 0-.781.852l-.319-.319c-.249.319-.462.71-.604 1.1.036.426 0 .888-.106 1.314a2.65 2.65 0 0 1 1.171-.355c.107-.426.355-.746.746-.959l-.391-.461c.426-.426 1.243-1.207 1.704-1.314.426.391.746.852.959 1.385a4.12 4.12 0 0 0-1.846.923l-.32-.462a1.568 1.568 0 0 0-.39.852c.532-.035 1.1 0 1.633.071.035-.213.071-.39.035-.603.284-.036 1.42 0 2.059.461-.142.462-.248.959-.248 1.456 0 0-1.314-.568-2.059-.426.071-.213.142-.462.177-.675a4.694 4.694 0 0 0-2.201.32l.71.142a.651.651 0 0 0 .071-.249c.391.071.746.284 1.03.568a1.374 1.374 0 0 0-.426.675 2.59 2.59 0 0 0-1.03-.533l.249-.39c-.32-.036-.639-.071-.959-.036l-.568.391a2.12 2.12 0 0 0-.497.745c.107.142.142.32.142.497.036.284-.106.533-.355.675 0 .39.142.781.391 1.065l.167.107h4.767v.177H5.858v-.177h4.694c.203-.116.357-.218.383-.32a4.21 4.21 0 0 0 0-1.882A2.444 2.444 0 0 0 9.55 14.84c-.213.036-.426.142-.639.249l.355.248a2.265 2.265 0 0 0-.781.852c-.177-.213-.39-.39-.603-.568.177-.355.461-.639.816-.852l.178.178c.142-.107.284-.213.461-.249-.603-.213-1.242-.39-1.881-.461v.639c-.71-.071-1.385 0-2.059.248 0-.071-.213-1.065.035-1.668.249-.604 1.598.035 2.166.142-.036.142-.071.319-.107.461a5.77 5.77 0 0 1 1.349-.071 1.939 1.939 0 0 0-.887-.71 3.934 3.934 0 0 1-.852-.523 3.625 3.625 0 0 1-.178-.116l.024-.014-.024-.021-.532.284c-.107-.675-.462-1.349-.923-1.846.532-.107 1.029-.32 1.491-.569.071.498.177 1.527.532 1.989a1.05 1.05 0 0 0-.544.163c.051.045.103.088.154.13.316.188.672.327 1.029.417a1.366 1.366 0 0 1 0-.533h-.248a2.68 2.68 0 0 1 .035-.923c.249-.035.497 0 .71.071a1.925 1.925 0 0 0-.213.888H8.13c0 .213.036.39.142.568.462.142.888.461 1.136.887l.959.249c0-.178-.036-.355-.107-.497l-.248.071a1.646 1.646 0 0 0-.426-.817c.213-.106.461-.213.71-.248.142.284.213.568.248.887h-.284c.107.178.178.355.213.568l.568.249a3.187 3.187 0 0 0-.745-2.308l-.568.462C9.55 12 8.45 11.042 8.45 11.042a4.497 4.497 0 0 0 1.171-.853c.675.355 1.172 1.385 1.278 1.669l-.532.284.639.533.248.355c.142-.107.249-.249.355-.426l-.355-.107c.249-.355.391-.745.462-1.171.248.177.533.284.817.319a2.485 2.485 0 0 1-.426 1.207l-.356-.177a1.497 1.497 0 0 1-.355.603c.213.462.355.994.568 1.491 1.279-1.065.924-3.088.675-4.011l-.603.461a4.804 4.804 0 0 0-1.669-1.598c.035-.035.781-.958 1.491-1.136a.435.435 0 0 1 .284.023v.013a.196.196 0 0 0 .014-.006.061.061 0 0 0-.014-.007Zm.675 7.823c.035-.142-.036-.284-.178-.355-.142.036-.213.178-.213.32-.035.142.036.284.178.355.142-.036.248-.178.213-.32Zm-.249-.639c-.248.071-.355.355-.284.746a.81.81 0 0 1 .249-.675c.106-.071.035-.106.035-.106v.035Zm5.787-2.059c.071-.248-.249-1.065-.533-1.633a5.358 5.358 0 0 0 2.308-.745c.071.568.249 1.136.533 1.633-.426-.071-1.811.461-2.308.745ZM5.61 11.787c-.142.178-.178.959-.142 1.491a5.948 5.948 0 0 0-2.095-.248c.142-.497.213-.994.142-1.491.319.248 1.598.284 2.095.248Zm-3.17.07.009.443-.05.001-.005-.054a.177.177 0 0 0-.009-.049.072.072 0 0 0-.025-.033.08.08 0 0 0-.044-.01l-.713.014a.095.095 0 0 0-.04.008c-.011.006-.02.018-.027.037a.33.33 0 0 0-.014.053.323.323 0 0 0-.008.051l-.049.001-.009-.443.05-.001c0 .015.002.032.006.052a.295.295 0 0 0 .012.051c.006.018.015.029.028.035a.083.083 0 0 0 .042.008l.712-.013a.088.088 0 0 0 .04-.011.065.065 0 0 0 .027-.035.315.315 0 0 0 .018-.104l.049-.001Zm20.033.454a.237.237 0 0 0-.012-.06.2.2 0 0 0-.023-.057c-.012-.016-.034-.027-.067-.032a.76.76 0 0 0-.125-.006l-.72.017-.002-.061.792-.614-.508.011a.65.65 0 0 0-.131.014.118.118 0 0 0-.064.035.371.371 0 0 0-.039.132l-.049.001-.01-.403.05-.001a.368.368 0 0 0 .038.117.097.097 0 0 0 .06.032.614.614 0 0 0 .136.006l.485-.011a.176.176 0 0 0 .063-.012.125.125 0 0 0 .049-.031.203.203 0 0 0 .037-.069.196.196 0 0 0 .016-.069l.05-.001.006.281-.737.57.467-.011a.58.58 0 0 0 .132-.014c.031-.008.051-.019.061-.033a.27.27 0 0 0 .024-.064.287.287 0 0 0 .012-.067l.05-.002.009.4-.05.002ZM15.16 9.976c.674-.355 1.349-1.633 1.349-1.633.319.391.674.71 1.1.994-.213.746-1.065 1.492-1.313 1.634-.107-.142-.213-.285-.355-.391a2.461 2.461 0 0 0-.604 1.065c.071-.426.249-.816.462-1.172l-.639-.497Zm2.094.639c.568-.355 1.349-1.1 1.527-1.704a5.46 5.46 0 0 0 1.278 1.278c-.497.284-1.491.888-1.811 1.421a2.674 2.674 0 0 0-.994-.995Zm-15.627-.171a.307.307 0 0 0 .005.06.179.179 0 0 0 .016.06c.009.018.03.031.062.04a.752.752 0 0 0 .124.021l.717.072-.006.06-.861.513.505.05a.606.606 0 0 0 .132.003c.031-.004.054-.013.068-.027a.156.156 0 0 0 .035-.062.38.38 0 0 0 .02-.064l.049.004-.04.402-.049-.005a.438.438 0 0 0-.023-.121.098.098 0 0 0-.056-.039.72.72 0 0 0-.135-.023l-.482-.048a.18.18 0 0 0-.065.005.115.115 0 0 0-.051.024.215.215 0 0 0-.046.064.236.236 0 0 0-.025.067l-.049-.005.028-.28.802-.476-.466-.046a.546.546 0 0 0-.133-.002c-.031.004-.052.013-.064.025a.273.273 0 0 0-.032.061.315.315 0 0 0-.02.065l-.049-.005.04-.398.049.005Zm12.326-.539c-.107.462-.32.924-.604 1.314a3.62 3.62 0 0 0 .355-1.385l-.568-.142c.355-.461.426-1.491.462-1.988.497.249.994.426 1.526.497-.426.355-.71 1.278-.781 1.917l-.39-.213Zm8.372.864a.477.477 0 0 1-.147.126.592.592 0 0 1-.204.068.575.575 0 0 1-.216-.005.474.474 0 0 1-.301-.21.461.461 0 0 1 .029-.532.56.56 0 0 1 .344-.188.584.584 0 0 1 .218.005.46.46 0 0 1 .356.572.439.439 0 0 1-.079.164Zm-.705.003c.045.02.095.031.149.035.055.003.114 0 .179-.01a.84.84 0 0 0 .181-.047.48.48 0 0 0 .134-.079.263.263 0 0 0 .089-.244.255.255 0 0 0-.059-.134.296.296 0 0 0-.116-.079.505.505 0 0 0-.149-.029.842.842 0 0 0-.348.054.452.452 0 0 0-.132.078.255.255 0 0 0-.094.247.266.266 0 0 0 .166.208Zm-12.78-.689c-.497.035-.958.213-1.384.461-.036-.674-.675-1.633-.994-2.13.639-.035 1.775-.603 1.775-.603-.142.639.213 1.633.603 2.272Zm-6.758-.72-.011.047a.473.473 0 0 0-.134.031.294.294 0 0 0-.064.032.086.086 0 0 0-.037.04l-.04.15.769.172a.104.104 0 0 0 .043 0 .075.075 0 0 0 .036-.027.334.334 0 0 0 .024-.048.324.324 0 0 0 .022-.059l.048.011-.101.453-.048-.01.008-.059a.22.22 0 0 0 .001-.057.06.06 0 0 0-.018-.038.083.083 0 0 0-.042-.02l-.774-.173-.019.091a.692.692 0 0 0-.009.061c-.002.015.004.032.016.052a.468.468 0 0 0 .153.141l-.01.047-.261-.058.187-.837.261.058Zm3.528.791c-.213-.568-1.101-1.243-1.101-1.243.32-.213.604-.426.852-.71.497.284.888.675 1.136 1.172-.319.213-.639.461-.887.781Zm15.639-.336-.112-.428.048-.013.017.052a.23.23 0 0 0 .021.046.07.07 0 0 0 .032.026.086.086 0 0 0 .045-.001l.689-.181a.096.096 0 0 0 .038-.018c.009-.008.015-.022.017-.042.002-.015.002-.033.002-.054a.314.314 0 0 0-.005-.052l.048-.013.112.429-.047.012a.671.671 0 0 0-.019-.048c-.007-.019-.016-.034-.024-.048-.01-.015-.021-.024-.035-.027a.086.086 0 0 0-.042.002l-.689.181a.078.078 0 0 0-.037.02.062.062 0 0 0-.018.04c-.002.01-.001.027 0 .049a.37.37 0 0 0 .007.056l-.048.012ZM8.521 8.343c.355-.142.71-.355.994-.639.106.497.319.959.639 1.385-.284.106-.568.248-.781.461-.142-.461-.462-.887-.852-1.207Zm-5.672.05.267.113-.27.768-.046-.016.013-.054a.333.333 0 0 0 .006-.046.063.063 0 0 0-.016-.038.086.086 0 0 0-.037-.022l-.664-.233a.126.126 0 0 0-.041-.007c-.013.001-.025.008-.038.021a.477.477 0 0 0-.056.086l-.046-.016.251-.715.223.078-.017.049a.312.312 0 0 0-.125.019c-.047.016-.077.036-.09.061l-.044.11-.051.146.367.129.037-.104a.213.213 0 0 0 .016-.077.114.114 0 0 0-.017-.052.166.166 0 0 0-.042-.042.305.305 0 0 0-.055-.034l.017-.049.362.127-.017.049a.26.26 0 0 0-.071-.009.161.161 0 0 0-.059.006.099.099 0 0 0-.049.034.261.261 0 0 0-.032.065l-.036.105.277.097c.028.01.05.015.068.017a.064.064 0 0 0 .044-.01.1.1 0 0 0 .032-.041l.053-.138a.72.72 0 0 0 .027-.115c.001-.019 0-.034-.006-.044a.668.668 0 0 0-.151-.171l.016-.047Zm18.91.508-.016-.044a.633.633 0 0 0 .097-.098.405.405 0 0 0 .037-.062.093.093 0 0 0 .009-.054l-.047-.148-.74.268a.09.09 0 0 0-.036.023.066.066 0 0 0-.016.042.277.277 0 0 0 .005.054.344.344 0 0 0 .013.061l-.047.017-.158-.437.047-.016.025.054c.012.024.021.04.029.048.01.012.022.02.035.023a.09.09 0 0 0 .047-.006l.745-.269-.032-.088-.025-.056c-.007-.014-.021-.025-.042-.035a.364.364 0 0 0-.143-.036.444.444 0 0 0-.062-.001l-.016-.046.251-.091.291.807-.251.09Zm-11.357-.7a4.626 4.626 0 0 0-1.349-1.633c.036-.035.817-.745 1.456-.887.639-.142.852 1.384 1.029 1.917l-.603.248a.985.985 0 0 1 0 .639c-.036-.177-.071-.39-.142-.568l-.391.284Zm8.237-.781c-.355.284-.675.639-.852 1.065a2.231 2.231 0 0 0-.781-.355c.142-.355.39-1.065.639-1.278.355.107.71.284.994.533v.035ZM3.647 7.362l-.117.239a5.958 5.958 0 0 0-.539.085l-.044.091.281.137a.084.084 0 0 0 .042.012c.013.001.026-.005.039-.017a.179.179 0 0 0 .028-.035l.027-.045.044.021-.183.375-.044-.022.017-.045a.16.16 0 0 0 .011-.044.063.063 0 0 0-.01-.039.107.107 0 0 0-.036-.028l-.64-.313a.122.122 0 0 0-.042-.012c-.013-.002-.027.004-.04.016a.472.472 0 0 0-.057.076l-.044-.022.2-.409a.5.5 0 0 1 .063-.1.34.34 0 0 1 .081-.071.225.225 0 0 1 .095-.03.212.212 0 0 1 .108.025.25.25 0 0 1 .083.06.216.216 0 0 1 .046.079.315.315 0 0 1 .013.09.624.624 0 0 1-.009.103l.396-.073a.316.316 0 0 0 .13-.053.178.178 0 0 0 .032-.034.477.477 0 0 0 .025-.038l.044.021Zm10.767.413c.213-.426.675-1.633.639-1.988.426.249.923.391 1.42.462a5.443 5.443 0 0 0-.603 1.952c-.462-.248-1.207-.532-1.42-.461l-.036.035Zm6.335.419-.183-.365.044-.022a.407.407 0 0 0 .052.074c.017.018.03.025.039.02l.013-.008.013-.011.16-.172-.155-.308a2.722 2.722 0 0 0-.09.009l-.118.021a.377.377 0 0 0-.029.011c-.017.008-.023.028-.019.058a.37.37 0 0 0 .028.096l-.044.023-.166-.331.044-.023a.226.226 0 0 0 .063.069.167.167 0 0 0 .118.022c.133-.011.281-.025.445-.041l.439-.042.025.049-.611.675a.173.173 0 0 0-.028.04.184.184 0 0 0-.013.048.183.183 0 0 0 .004.044.268.268 0 0 0 .013.042l-.044.022ZM2.827 7.368a.192.192 0 0 0-.15-.016c-.047.015-.084.051-.111.107l-.052.106.379.186.04-.082a.22.22 0 0 0 .015-.17.218.218 0 0 0-.121-.131Zm18.104.292.274-.305-.407.04.133.265ZM8.237 7.527s-.604-.888-1.101-1.065c.284-.213.533-.497.71-.781.462.248.817.603 1.065 1.065-.284.213-.497.497-.674.781ZM4.263 6.416l-.222.343L4 6.732a.38.38 0 0 0 .037-.083c.007-.023.006-.038-.002-.043l-.014-.008-.015-.005-.23-.051-.187.29c.02.028.038.053.054.072l.078.092a.25.25 0 0 0 .023.019c.016.01.036.006.06-.013a.374.374 0 0 0 .069-.073l.041.027-.201.311-.042-.027a.25.25 0 0 0 .018-.042.149.149 0 0 0 0-.104.249.249 0 0 0-.031-.056c-.077-.109-.164-.23-.261-.363a72.42 72.42 0 0 1-.258-.358l.03-.046.891.185a.143.143 0 0 0 .096-.009.132.132 0 0 0 .037-.026.253.253 0 0 0 .029-.032l.041.027Zm9.903.543a2.69 2.69 0 0 0-1.065 0c-.071-.462-.142-1.42.035-1.811a3.068 3.068 0 0 1 1.385.107c-.249.532-.391 1.1-.355 1.704Zm6.436-.109a.447.447 0 0 1-.401.065.547.547 0 0 1-.169-.092.696.696 0 0 1-.134-.147l-.228-.338.041-.027a.365.365 0 0 0 .063.071.053.053 0 0 0 .039.01.078.078 0 0 0 .041-.016l.589-.397a.095.095 0 0 0 .03-.03c.008-.011.01-.026.007-.043a.165.165 0 0 0-.013-.047l-.019-.039.041-.027.24.356a.572.572 0 0 1 .098.326.43.43 0 0 1-.058.203.543.543 0 0 1-.167.172Zm-.095-.141a.59.59 0 0 0 .134-.122.424.424 0 0 0 .072-.142.332.332 0 0 0 .009-.147.358.358 0 0 0-.06-.147l-.068-.096-.626.423c-.035.023-.053.05-.052.079 0 .03.014.065.043.108.033.048.07.085.112.11a.286.286 0 0 0 .131.04.381.381 0 0 0 .147-.024.705.705 0 0 0 .158-.082ZM3.711 6.53l-.402-.083.241.331.161-.248Zm8.857-.317a3.198 3.198 0 0 0-1.278.178 3.8 3.8 0 0 0-.71-1.846c.035-.036 1.029-.426 1.669-.32.639.107.355 1.456.319 1.988Zm-7.891-.277a.43.43 0 0 1-.303.153.466.466 0 0 1-.185-.026.574.574 0 0 1-.187-.107.59.59 0 0 1-.142-.165.487.487 0 0 1-.063-.183.432.432 0 0 1 .013-.182.47.47 0 0 1 .298-.309l-.018-.052.035-.043.274.22-.036.043a.841.841 0 0 0-.107-.045.423.423 0 0 0-.112-.025.253.253 0 0 0-.107.013.206.206 0 0 0-.087.064.277.277 0 0 0-.054.249.447.447 0 0 0 .07.14c.035.048.08.096.134.141.049.04.098.071.149.093a.468.468 0 0 0 .15.036.336.336 0 0 0 .139-.022.28.28 0 0 0 .112-.083.289.289 0 0 0 .054-.275.367.367 0 0 0-.037-.087l.052-.024c.05.093.07.178.06.255a.433.433 0 0 1-.102.221Zm15.552-.415a.247.247 0 0 0-.047-.038.246.246 0 0 0-.054-.029c-.02-.005-.044.001-.073.019a.758.758 0 0 0-.099.075l-.542.475-.04-.046.213-.979-.382.335a.582.582 0 0 0-.091.094c-.019.026-.028.048-.028.068 0 .015.007.037.022.068a.563.563 0 0 0 .033.059l-.037.032-.266-.303.037-.033a.423.423 0 0 0 .105.066.101.101 0 0 0 .067-.014.648.648 0 0 0 .108-.083l.365-.319a.196.196 0 0 0 .04-.05.118.118 0 0 0 .018-.055.288.288 0 0 0-.047-.141l.037-.032.185.212-.2.91.352-.308a.594.594 0 0 0 .092-.096c.018-.026.027-.047.025-.064A.234.234 0 0 0 20 5.279a.476.476 0 0 0-.034-.059l.037-.033.263.301-.037.033ZM5.165 4.342l-.034.033a.489.489 0 0 0-.203-.056c-.023 0-.041.004-.053.013l-.116.105.553.57a.085.085 0 0 0 .037.023.064.064 0 0 0 .045-.002.527.527 0 0 0 .098-.065l.035.036-.336.327-.035-.036a1.165 1.165 0 0 0 .072-.092.064.064 0 0 0 .006-.042.088.088 0 0 0-.024-.041l-.558-.574-.067.067a.565.565 0 0 0-.041.046c-.01.012-.015.03-.015.053a.304.304 0 0 0 .006.073.496.496 0 0 0 .045.131l-.035.034-.188-.193.62-.604.188.194Zm14.122.157a.337.337 0 0 0-.109-.055c-.019-.002-.042.007-.068.028a.694.694 0 0 0-.088.086l-.282.321a.284.284 0 0 1-.252.099.36.36 0 0 1-.122-.036.46.46 0 0 1-.247-.31.248.248 0 0 1 .06-.209l.384-.437a.102.102 0 0 0 .021-.035.079.079 0 0 0-.005-.044.325.325 0 0 0-.051-.076l.032-.037.308.271-.033.037a.427.427 0 0 0-.08-.049.051.051 0 0 0-.042 0 .107.107 0 0 0-.034.027l-.358.407a.344.344 0 0 0-.048.068.199.199 0 0 0-.014.178.28.28 0 0 0 .08.103.307.307 0 0 0 .112.066.203.203 0 0 0 .103.006.238.238 0 0 0 .082-.032.332.332 0 0 0 .063-.054l.266-.303a.576.576 0 0 0 .075-.101c.016-.03.022-.053.018-.07a.19.19 0 0 0-.032-.064.675.675 0 0 0-.041-.051l.033-.037.301.266-.032.037ZM6.206 4.436l-.344.274-.031-.039.04-.036a.238.238 0 0 0 .034-.038.067.067 0 0 0 .01-.039.075.075 0 0 0-.019-.041l-.44-.554a.094.094 0 0 0-.031-.027c-.011-.005-.026-.005-.045.001a.351.351 0 0 0-.096.045l-.031-.038.345-.274.03.038c-.01.01-.023.021-.036.036a.367.367 0 0 0-.034.041.055.055 0 0 0-.01.043.095.095 0 0 0 .018.038l.441.554c.009.012.02.02.033.025a.065.065 0 0 0 .044.001.41.41 0 0 0 .092-.049l.03.039Zm11.858-.874a.469.469 0 0 1-.007.193.584.584 0 0 1-.088.197.59.59 0 0 1-.15.156.487.487 0 0 1-.359.078.46.46 0 0 1-.171-.072.458.458 0 0 1-.2-.31.493.493 0 0 1 .01-.19.605.605 0 0 1 .236-.347.495.495 0 0 1 .177-.077.463.463 0 0 1 .552.372Zm-.475.521a.474.474 0 0 0 .126-.087.779.779 0 0 0 .115-.138.775.775 0 0 0 .087-.165.449.449 0 0 0 .033-.152.264.264 0 0 0-.119-.231.254.254 0 0 0-.138-.047.297.297 0 0 0-.136.031.495.495 0 0 0-.123.09.855.855 0 0 0-.196.292.473.473 0 0 0-.033.151.287.287 0 0 0 .025.131.26.26 0 0 0 .094.105.256.256 0 0 0 .13.046.279.279 0 0 0 .135-.026ZM6.645 3.099c.062.015.12.042.175.083.055.04.104.093.146.159a.59.59 0 0 1 .084.199.483.483 0 0 1 .001.193.455.455 0 0 1-.204.296.455.455 0 0 1-.364.061.486.486 0 0 1-.171-.084.591.591 0 0 1-.141-.153.56.56 0 0 1-.084-.2.502.502 0 0 1-.002-.193.445.445 0 0 1 .071-.169.48.48 0 0 1 .308-.198.459.459 0 0 1 .181.006Zm.291.643a.48.48 0 0 0-.029-.151.901.901 0 0 0-.199-.305.48.48 0 0 0-.127-.09.264.264 0 0 0-.259.018.253.253 0 0 0-.098.109.299.299 0 0 0-.025.137.5.5 0 0 0 .034.148.85.85 0 0 0 .192.296.471.471 0 0 0 .125.089.255.255 0 0 0 .264-.016.266.266 0 0 0 .122-.235Zm1.059-1.426a.294.294 0 0 0-.092.079c-.011.018-.011.043-.002.075a.69.69 0 0 0 .045.116l.308.652-.055.025-.883-.473.217.459c.024.052.046.09.066.114.019.025.039.04.058.045a.156.156 0 0 0 .071-.002.522.522 0 0 0 .066-.016l.021.045-.365.172-.021-.045a.343.343 0 0 0 .051-.039.179.179 0 0 0 .041-.043.102.102 0 0 0 .005-.068.73.73 0 0 0-.05-.127l-.208-.438a.188.188 0 0 0-.037-.053.122.122 0 0 0-.048-.032.19.19 0 0 0-.078-.006.23.23 0 0 0-.07.013l-.021-.044.254-.121.821.442-.2-.423a.632.632 0 0 0-.066-.115c-.02-.024-.039-.038-.055-.041a.218.218 0 0 0-.069.004.316.316 0 0 0-.066.016l-.021-.045.361-.171.022.045Zm9.026.746-.046-.023a.37.37 0 0 0 0-.133c-.009-.051-.024-.085-.048-.102l-.102-.059-.147-.076-.182.353.101.052a.28.28 0 0 0 .076.027.13.13 0 0 0 .059-.007.132.132 0 0 0 .044-.031.264.264 0 0 0 .045-.054l.047.023-.178.345-.047-.024a.325.325 0 0 0 .02-.068.191.191 0 0 0 .002-.062.103.103 0 0 0-.03-.055.275.275 0 0 0-.064-.044l-.101-.052-.156.302a.085.085 0 0 0-.01.04.07.07 0 0 0 .015.041.342.342 0 0 0 .078.062l-.023.044-.38-.196.023-.044a.682.682 0 0 0 .095.035.056.056 0 0 0 .039-.01.08.08 0 0 0 .028-.034l.327-.632a.107.107 0 0 0 .012-.04c.001-.013-.004-.026-.015-.04a.44.44 0 0 0-.079-.068l.023-.044.687.355-.113.219Zm-1.446-.907a.411.411 0 0 0-.06-.007.203.203 0 0 0-.061.004c-.02.006-.037.024-.052.054a.804.804 0 0 0-.045.117l-.21.689-.058-.018-.335-.944-.148.485a.583.583 0 0 0-.028.129.126.126 0 0 0 .012.072.174.174 0 0 0 .055.046.483.483 0 0 0 .059.033l-.015.047-.386-.118.015-.047a.528.528 0 0 0 .064.005c.031.001.051 0 .06-.005a.102.102 0 0 0 .049-.046.812.812 0 0 0 .048-.128l.142-.464a.19.19 0 0 0 .008-.064.132.132 0 0 0-.014-.056.23.23 0 0 0-.053-.057.24.24 0 0 0-.061-.037l.014-.047.269.082.31.879.136-.447a.536.536 0 0 0 .028-.13c.002-.031-.002-.054-.012-.068a.394.394 0 0 0-.113-.076l.014-.047.383.117-.015.047Zm-5.657.046a.447.447 0 0 1-.072.401.57.57 0 0 1-.144.128.664.664 0 0 1-.184.077l-.395.102-.012-.048c.013-.003.029-.009.049-.016a.156.156 0 0 0 .04-.02.056.056 0 0 0 .022-.033.094.094 0 0 0-.001-.044l-.178-.688a.1.1 0 0 0-.018-.039.062.062 0 0 0-.038-.022.199.199 0 0 0-.049-.003.367.367 0 0 0-.043.005l-.013-.048.417-.107a.555.555 0 0 1 .34.017.418.418 0 0 1 .173.123.523.523 0 0 1 .106.215Zm-.165.042a.575.575 0 0 0-.07-.167.407.407 0 0 0-.11-.116.355.355 0 0 0-.294-.05l-.113.032.189.733c.01.041.029.066.057.076a.213.213 0 0 0 .116-.005.358.358 0 0 0 .141-.069.269.269 0 0 0 .082-.111.383.383 0 0 0 .027-.146.703.703 0 0 0-.025-.177Zm4.389.062-.045-.001a.157.157 0 0 0-.047.005.057.057 0 0 0-.034.024.096.096 0 0 0-.016.043l-.031.187a.623.623 0 0 0-.006.048c-.066.017-.13.027-.193.032a.783.783 0 0 1-.182-.009.477.477 0 0 1-.308-.191.49.49 0 0 1-.076-.176.589.589 0 0 1 .069-.416.477.477 0 0 1 .506-.233.461.461 0 0 1 .24.111l.036-.042.055.009-.052.342-.056-.01a1.178 1.178 0 0 0-.017-.117.425.425 0 0 0-.038-.107.244.244 0 0 0-.182-.129.278.278 0 0 0-.252.08.419.419 0 0 0-.089.131.734.734 0 0 0-.063.365.42.42 0 0 0 .041.153.303.303 0 0 0 .229.175.306.306 0 0 0 .191-.027.82.82 0 0 0 .018-.071l.02-.116a.153.153 0 0 0 .001-.052.055.055 0 0 0-.027-.038.611.611 0 0 0-.119-.043l.009-.05.427.073-.009.05Zm-3.033-.08.019.289-.808.106-.006-.049c.013-.002.031-.007.054-.013a.191.191 0 0 0 .043-.015.06.06 0 0 0 .027-.031.097.097 0 0 0 .003-.043l-.092-.699a.095.095 0 0 0-.013-.039c-.006-.011-.018-.019-.035-.024a.301.301 0 0 0-.103-.011l-.006-.049.753-.099.031.234-.052.007a.317.317 0 0 0-.073-.103c-.036-.035-.068-.052-.096-.053l-.118.011-.153.02.051.386.109-.014a.218.218 0 0 0 .076-.02.112.112 0 0 0 .039-.039.182.182 0 0 0 .018-.057.243.243 0 0 0 .006-.064l.052-.007.05.381-.052.007a.253.253 0 0 0-.024-.068.147.147 0 0 0-.032-.049.098.098 0 0 0-.052-.029.257.257 0 0 0-.073.001l-.11.015.038.291a.294.294 0 0 0 .016.069.064.064 0 0 0 .029.035c.013.007.03.01.051.01l.148-.016a.622.622 0 0 0 .062-.01.627.627 0 0 0 .052-.017.095.095 0 0 0 .037-.025.442.442 0 0 0 .053-.109.603.603 0 0 0 .031-.104l.05-.006Zm1.76.301-.442-.028.003-.049.055-.001a.19.19 0 0 0 .05-.005.07.07 0 0 0 .035-.023.077.077 0 0 0 .013-.042l.046-.711a.086.086 0 0 0-.005-.041c-.004-.012-.016-.021-.034-.03a.469.469 0 0 0-.102-.031l.003-.049.442.029-.003.049a.324.324 0 0 0-.052.002.247.247 0 0 0-.052.008c-.018.004-.031.012-.037.024a.093.093 0 0 0-.012.041l-.046.711a.08.08 0 0 0 .007.041.07.07 0 0 0 .033.03c.009.005.025.01.046.015.022.006.04.01.056.011l-.004.049Zm-.84-.495a.252.252 0 0 1 .048.075.28.28 0 0 1 .016.096.274.274 0 0 1-.092.217.347.347 0 0 1-.237.089.429.429 0 0 1-.132-.018.452.452 0 0 1-.115-.047l-.029.051-.055.001-.017-.336.056-.001a.83.83 0 0 0 .043.111.382.382 0 0 0 .063.093.297.297 0 0 0 .086.064.263.263 0 0 0 .196.007.15.15 0 0 0 .057-.036.16.16 0 0 0 .032-.055.195.195 0 0 0 .009-.071.196.196 0 0 0-.035-.109.208.208 0 0 0-.101-.076l-.104-.037a1.465 1.465 0 0 1-.102-.04.318.318 0 0 1-.131-.095.256.256 0 0 1-.049-.157.237.237 0 0 1 .021-.106.265.265 0 0 1 .063-.088.336.336 0 0 1 .33-.062.563.563 0 0 1 .099.046l.028-.047.055-.002.012.327-.056.001a1.49 1.49 0 0 0-.036-.107.413.413 0 0 0-.052-.092.221.221 0 0 0-.074-.062.205.205 0 0 0-.106-.022.163.163 0 0 0-.111.044.134.134 0 0 0-.045.105.184.184 0 0 0 .032.105c.021.027.05.05.088.067l.196.076a.603.603 0 0 1 .081.039.298.298 0 0 1 .068.052Z" }) + ] + } + ); +}); + +export { SiInteractiondesignfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.cjs new file mode 100644 index 000000000..8d812a822 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2599ED"; +const SiInteractjs = React__namespace.forwardRef(function SiInteractjs2({ title = "InteractJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.382.01C12.255.006 12.128 0 12 0A11.999 11.999 0 0 0 1.804 18.327l9.911-17.17zm7.097 19.686L11.201 5.121 2.788 19.689l.007.007h16.684zm.184 1.538H4.337a11.998 11.998 0 0 0 15.326 0zm2.917-3.568A11.999 11.999 0 0 0 12.382.01l.667 1.148zM12.383.009l-.001.001h.001V.009z" }) + ] + } + ); +}); + +exports.default = SiInteractjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.d.ts new file mode 100644 index 000000000..bc7bf2c90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2599ED"; +declare const SiInteractjs: IconType; +export { SiInteractjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.mjs new file mode 100644 index 000000000..7544ff323 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInteractjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2599ED"; +const SiInteractjs = React.forwardRef(function SiInteractjs2({ title = "InteractJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.382.01C12.255.006 12.128 0 12 0A11.999 11.999 0 0 0 1.804 18.327l9.911-17.17zm7.097 19.686L11.201 5.121 2.788 19.689l.007.007h16.684zm.184 1.538H4.337a11.998 11.998 0 0 0 15.326 0zm2.917-3.568A11.999 11.999 0 0 0 12.382.01l.667 1.148zM12.383.009l-.001.001h.001V.009z" }) + ] + } + ); +}); + +export { SiInteractjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.cjs new file mode 100644 index 000000000..dd8ab766c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E62431"; +const SiInterbase = React__namespace.forwardRef(function SiInterbase2({ title = "Interbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.6895 8.8296c-.0001.1303-.1149.2461-.2463.2487-.1312.0025-.2461-.11-.2486-.243-.0025-.1384.1004-.2475.2369-.2513.1402-.0039.258.1083.258.2456zm14.294 3.6783c-.0252.409-.0595.8184-.1126 1.2246-.0742.5675-.2022 1.1249-.3642 1.6746a11.8456 11.8456 0 0 1-.892 2.1936 11.9768 11.9768 0 0 1-2.4107 3.1587c-.9165.8593-1.9422 1.5593-3.0778 2.0967-.9867.467-2.0181.7934-3.095.9755-.511.0864-1.025.1418-1.5428.1622-.0501.002-.8557.0047-.8686.0043a12.0444 12.0444 0 0 1-1.4517-.1334 11.7612 11.7612 0 0 1-1.7943-.4175 11.9283 11.9283 0 0 1-2.2824-.9961 11.9821 11.9821 0 0 1-2.9132-2.3115c-.891-.9661-1.6055-2.0493-2.1417-3.2497-.5047-1.13-.824-2.3107-.9616-3.54a11.9165 11.9165 0 0 1-.0733-1.5264c.0072-.4321.0355-.8625.0876-1.2911.0655-.5373.1675-1.068.3055-1.5918.2367-.899.574-1.7584 1.011-2.5784.5443-1.0208 1.2235-1.943 2.0329-2.7688a11.8993 11.8993 0 0 1 1.1528-1.0307C5.633 1.745 6.7778 1.116 8.027.6766 8.5082.5073 8.9971.3635 9.4976.266c.381-.0742.7651-.1357 1.1504-.1821.3426-.0413.6883-.0613 1.0333-.0771.2358-.0108.4727-.001.709.004.4673.0101.9318.0555 1.3937.1244.5023.075.9982.1817 1.4873.32.8146.2305 1.596.5437 2.343.9409a11.9932 11.9932 0 0 1 3.016 2.2728 11.997 11.997 0 0 1 1.362 1.6917A11.9248 11.9248 0 0 1 23.4617 8.45c.2238.722.3769 1.4587.4604 2.2096.0684.6143.0996 1.231.0614 1.8483zM13.2143 8.6622c.0514.0869.1287.1346.2656.136.0284-.0127.089-.0306.1397-.0635.819-.5306 1.653-1.0357 2.5141-1.495.0686-.0366.1184-.0878.1499-.1589.1917-.4333.3843-.8663.5762-1.2996.0503-.1135.0477-.223-.041-.3166-.0885-.0933-.1993-.1082-.3132-.058-.1574.0692-.3165.1374-.4652.223-.3685.2121-.6932.484-1.0055.7705-.6483.595-1.225 1.2557-1.7792 1.9372a.4396.4396 0 0 0-.0413.057c-.0512.089-.0522.1799-.0001.2679zm8.1922-2.6436c-.0455-.01-.0931-.0125-.14-.015-.358-.0193-.7122.0157-1.064.0803-.6816.125-1.3331.3475-1.972.61-1.0279.4224-2.006.943-2.962 1.5069-1.0809.6376-2.1288 1.326-3.1393 2.0699-.2069.1522-.4372.082-.4876-.157-.0201-.0954-.0579-.187-.089-.28-.3483-1.0427-1.3356-1.6851-2.3812-1.6402-.3511.015-.6895.0997-1.0177.2225-.0924.0346-.1807.0392-.2755.0176-.1641-.0375-.3294-.0697-.4942-.1044l-4.449-.9366c-.2683-.0565-.5365-.1135-.8052-.1676-.0362-.0072-.0825-.0407-.116.0207.0332.053.0934.0526.1426.0672 1.8547.5505 3.7099 1.0995 5.5647 1.6495.0749.0222.1512.045.2203.0803.5374.2748.8673.7084.978 1.3029.0213.1147.0259.2336.0273.3507.0061.4937-.0127.9887.016 1.481.0558.9608.45 1.775 1.1374 2.4462.572.5585 1.1566 1.1044 1.7196 1.6717.7684.774 1.1923 1.7165 1.3017 2.8.0114.1128.0516.198.1314.2772.6285.6242 1.2543 1.2512 1.881 1.8773.0222.0222.0437.0453.0681.0648.0845.0671.1786.0796.2758.0347.101-.0467.1555-.1285.1584-.2413.0007-.0234-.0034-.0469-.006-.0702-.0738-.6595-.2042-1.3076-.3858-1.946-.2617-.92-.7002-1.744-1.3473-2.4494-.3018-.329-.628-.6354-.9433-.952-.0415-.0416-.0853-.081-.125-.1243-.1147-.1244-.1133-.265.0022-.3871.0269-.0285.0553-.0556.083-.0833l8.551-8.5444c.0304-.0304.0624-.0598.0899-.0928.1363-.164.0592-.3938-.1483-.4398z" }) + ] + } + ); +}); + +exports.default = SiInterbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.d.ts new file mode 100644 index 000000000..8696a74e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E62431"; +declare const SiInterbase: IconType; +export { SiInterbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.mjs new file mode 100644 index 000000000..118e8d597 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInterbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E62431"; +const SiInterbase = React.forwardRef(function SiInterbase2({ title = "Interbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.6895 8.8296c-.0001.1303-.1149.2461-.2463.2487-.1312.0025-.2461-.11-.2486-.243-.0025-.1384.1004-.2475.2369-.2513.1402-.0039.258.1083.258.2456zm14.294 3.6783c-.0252.409-.0595.8184-.1126 1.2246-.0742.5675-.2022 1.1249-.3642 1.6746a11.8456 11.8456 0 0 1-.892 2.1936 11.9768 11.9768 0 0 1-2.4107 3.1587c-.9165.8593-1.9422 1.5593-3.0778 2.0967-.9867.467-2.0181.7934-3.095.9755-.511.0864-1.025.1418-1.5428.1622-.0501.002-.8557.0047-.8686.0043a12.0444 12.0444 0 0 1-1.4517-.1334 11.7612 11.7612 0 0 1-1.7943-.4175 11.9283 11.9283 0 0 1-2.2824-.9961 11.9821 11.9821 0 0 1-2.9132-2.3115c-.891-.9661-1.6055-2.0493-2.1417-3.2497-.5047-1.13-.824-2.3107-.9616-3.54a11.9165 11.9165 0 0 1-.0733-1.5264c.0072-.4321.0355-.8625.0876-1.2911.0655-.5373.1675-1.068.3055-1.5918.2367-.899.574-1.7584 1.011-2.5784.5443-1.0208 1.2235-1.943 2.0329-2.7688a11.8993 11.8993 0 0 1 1.1528-1.0307C5.633 1.745 6.7778 1.116 8.027.6766 8.5082.5073 8.9971.3635 9.4976.266c.381-.0742.7651-.1357 1.1504-.1821.3426-.0413.6883-.0613 1.0333-.0771.2358-.0108.4727-.001.709.004.4673.0101.9318.0555 1.3937.1244.5023.075.9982.1817 1.4873.32.8146.2305 1.596.5437 2.343.9409a11.9932 11.9932 0 0 1 3.016 2.2728 11.997 11.997 0 0 1 1.362 1.6917A11.9248 11.9248 0 0 1 23.4617 8.45c.2238.722.3769 1.4587.4604 2.2096.0684.6143.0996 1.231.0614 1.8483zM13.2143 8.6622c.0514.0869.1287.1346.2656.136.0284-.0127.089-.0306.1397-.0635.819-.5306 1.653-1.0357 2.5141-1.495.0686-.0366.1184-.0878.1499-.1589.1917-.4333.3843-.8663.5762-1.2996.0503-.1135.0477-.223-.041-.3166-.0885-.0933-.1993-.1082-.3132-.058-.1574.0692-.3165.1374-.4652.223-.3685.2121-.6932.484-1.0055.7705-.6483.595-1.225 1.2557-1.7792 1.9372a.4396.4396 0 0 0-.0413.057c-.0512.089-.0522.1799-.0001.2679zm8.1922-2.6436c-.0455-.01-.0931-.0125-.14-.015-.358-.0193-.7122.0157-1.064.0803-.6816.125-1.3331.3475-1.972.61-1.0279.4224-2.006.943-2.962 1.5069-1.0809.6376-2.1288 1.326-3.1393 2.0699-.2069.1522-.4372.082-.4876-.157-.0201-.0954-.0579-.187-.089-.28-.3483-1.0427-1.3356-1.6851-2.3812-1.6402-.3511.015-.6895.0997-1.0177.2225-.0924.0346-.1807.0392-.2755.0176-.1641-.0375-.3294-.0697-.4942-.1044l-4.449-.9366c-.2683-.0565-.5365-.1135-.8052-.1676-.0362-.0072-.0825-.0407-.116.0207.0332.053.0934.0526.1426.0672 1.8547.5505 3.7099 1.0995 5.5647 1.6495.0749.0222.1512.045.2203.0803.5374.2748.8673.7084.978 1.3029.0213.1147.0259.2336.0273.3507.0061.4937-.0127.9887.016 1.481.0558.9608.45 1.775 1.1374 2.4462.572.5585 1.1566 1.1044 1.7196 1.6717.7684.774 1.1923 1.7165 1.3017 2.8.0114.1128.0516.198.1314.2772.6285.6242 1.2543 1.2512 1.881 1.8773.0222.0222.0437.0453.0681.0648.0845.0671.1786.0796.2758.0347.101-.0467.1555-.1285.1584-.2413.0007-.0234-.0034-.0469-.006-.0702-.0738-.6595-.2042-1.3076-.3858-1.946-.2617-.92-.7002-1.744-1.3473-2.4494-.3018-.329-.628-.6354-.9433-.952-.0415-.0416-.0853-.081-.125-.1243-.1147-.1244-.1133-.265.0022-.3871.0269-.0285.0553-.0556.083-.0833l8.551-8.5444c.0304-.0304.0624-.0598.0899-.0928.1363-.164.0592-.3938-.1483-.4398z" }) + ] + } + ); +}); + +export { SiInterbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.cjs new file mode 100644 index 000000000..3c4efb1b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6AFDEF"; +const SiIntercom = React__namespace.forwardRef(function SiIntercom2({ title = "Intercom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 0H3C1.343 0 0 1.343 0 3v18c0 1.658 1.343 3 3 3h18c1.658 0 3-1.342 3-3V3c0-1.657-1.342-3-3-3zm-5.801 4.399c0-.44.36-.8.802-.8.44 0 .8.36.8.8v10.688c0 .442-.36.801-.8.801-.443 0-.802-.359-.802-.801V4.399zM11.2 3.994c0-.44.357-.799.8-.799s.8.359.8.799v11.602c0 .44-.357.8-.8.8s-.8-.36-.8-.8V3.994zm-4 .405c0-.44.359-.8.799-.8.443 0 .802.36.802.8v10.688c0 .442-.36.801-.802.801-.44 0-.799-.359-.799-.801V4.399zM3.199 6c0-.442.36-.8.802-.8.44 0 .799.358.799.8v7.195c0 .441-.359.8-.799.8-.443 0-.802-.36-.802-.8V6zM20.52 18.202c-.123.105-3.086 2.593-8.52 2.593-5.433 0-8.397-2.486-8.521-2.593-.335-.288-.375-.792-.086-1.128.285-.334.79-.375 1.125-.09.047.041 2.693 2.211 7.481 2.211 4.848 0 7.456-2.186 7.479-2.207.334-.289.839-.25 1.128.086.289.336.25.84-.086 1.128zm.281-5.007c0 .441-.36.8-.801.8-.441 0-.801-.36-.801-.8V6c0-.442.361-.8.801-.8.441 0 .801.357.801.8v7.195z" }) + ] + } + ); +}); + +exports.default = SiIntercom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.d.ts new file mode 100644 index 000000000..bed8095b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6AFDEF"; +declare const SiIntercom: IconType; +export { SiIntercom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.mjs new file mode 100644 index 000000000..45a8674a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntercom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6AFDEF"; +const SiIntercom = React.forwardRef(function SiIntercom2({ title = "Intercom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21 0H3C1.343 0 0 1.343 0 3v18c0 1.658 1.343 3 3 3h18c1.658 0 3-1.342 3-3V3c0-1.657-1.342-3-3-3zm-5.801 4.399c0-.44.36-.8.802-.8.44 0 .8.36.8.8v10.688c0 .442-.36.801-.8.801-.443 0-.802-.359-.802-.801V4.399zM11.2 3.994c0-.44.357-.799.8-.799s.8.359.8.799v11.602c0 .44-.357.8-.8.8s-.8-.36-.8-.8V3.994zm-4 .405c0-.44.359-.8.799-.8.443 0 .802.36.802.8v10.688c0 .442-.36.801-.802.801-.44 0-.799-.359-.799-.801V4.399zM3.199 6c0-.442.36-.8.802-.8.44 0 .799.358.799.8v7.195c0 .441-.359.8-.799.8-.443 0-.802-.36-.802-.8V6zM20.52 18.202c-.123.105-3.086 2.593-8.52 2.593-5.433 0-8.397-2.486-8.521-2.593-.335-.288-.375-.792-.086-1.128.285-.334.79-.375 1.125-.09.047.041 2.693 2.211 7.481 2.211 4.848 0 7.456-2.186 7.479-2.207.334-.289.839-.25 1.128.086.289.336.25.84-.086 1.128zm.281-5.007c0 .441-.36.8-.801.8-.441 0-.801-.36-.801-.8V6c0-.442.361-.8.801-.8.441 0 .801.357.801.8v7.195z" }) + ] + } + ); +}); + +export { SiIntercom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.cjs new file mode 100644 index 000000000..147d197ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E2001A"; +const SiIntermarche = React__namespace.forwardRef(function SiIntermarche2({ title = "Intermarche", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.948 13.05.677 1.18h12.782l.15-1.18zm1.961-2.556a3.209 3.209 0 0 0-.694.071 1.72 1.72 0 0 0-.537-.07 2.699 2.699 0 0 0-1.007.168l-.215 1.53.317.552h.384l.254-1.834a.648.648 0 0 1 .2-.03c.17 0 .229.086.23.192l-.234 1.672h.782l.215-1.525a1 1 0 0 0 .008-.093l.03-.214a.646.646 0 0 1 .201-.029c.197 0 .246.115.227.25l-.22 1.608h.778l.215-1.524c.062-.442-.185-.72-.93-.72M8.88 11.88a.725.725 0 0 0 .438-.593l.012-.078h-.004c.062-.442-.185-.72-.93-.72a2.699 2.699 0 0 0-1.007.17v.003L7.1 12.741h.778l.104-.74h.2l1.466 2c.097.13.219.23.375.23h.208l-1.355-2.352zm-.32-.755-.01.084-.025.165a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.64.64 0 0 1 .202-.03c.197 0 .247.114.227.25zm-3.84 1.503c.014-.102-.023-.174-.145-.174h-.09c-.197 0-.247-.114-.228-.25l.165-1.178v-.015l.01-.078h.21a.058.058 0 0 1 .02 0c.113 0 .207-.115.231-.289H4.47l.122-.871c-.558.061-.815.32-.871.705l-.066.434-.006.042-.004.03-.14 1.04c-.061.432.17.707.876.72h.322l.016-.114m1.416-2.14a2.699 2.699 0 0 0-1.007.17l-.119.846-.068.509c-.06.43.175.705.877.718h.853l.015-.102c.015-.103-.021-.186-.143-.186H5.92c-.197 0-.246-.114-.227-.25l.025-.186h.244c.714-.01 1.03-.283 1.092-.713l.012-.079h-.004c.06-.44-.187-.719-.931-.719zm.166.642-.011.085-.027.155a.27.27 0 0 1-.3.247h-.191l.01-.078.09-.638a.642.642 0 0 1 .202-.029c.196 0 .245.115.226.25zm16.764-.642a2.696 2.696 0 0 0-1.005.17l-.12.846-.068.509c-.06.43.175.705.876.718h.854l.015-.103c.015-.103-.022-.185-.144-.185h-.625c-.196 0-.246-.114-.226-.25l.025-.186h.244c.713-.01 1.03-.283 1.092-.713l.012-.079h-.004c.061-.44-.186-.719-.93-.719zm.163.642-.01.085-.025.164a.271.271 0 0 1-.3.247h-.191l.01-.077.09-.639a.643.643 0 0 1 .202-.028c.196-.01.246.105.226.24zm-9.025-.632h-.665c-.116 0-.208.115-.233.29h.794c.197 0 .246.121.227.253l-.034.247h-.258c-.703.013-1.017.284-1.078.713l-.012.078h.007c-.06.44.187.719.933.719.342.008.684-.05 1.005-.17l.12-.847.075-.564c.06-.43-.175-.713-.876-.726zm.024 1.245-.09.645a.642.642 0 0 1-.201.03c-.196 0-.245-.115-.227-.25l.01-.085.026-.165a.27.27 0 0 1 .298-.248h.192l-.01.077zm3.16-.456.012-.079h.005c.06-.44-.187-.718-.93-.718a2.698 2.698 0 0 0-1.007.17v.003l-.293 2.08h.778l.104-.74h.198l.437.739h.778l-.513-.862a.725.725 0 0 0 .438-.593zm-.747-.165-.01.085-.039.163a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.64.64 0 0 1 .201-.029c.201.001.25.115.232.25zm2.604 1.33.018-.132a3.28 3.28 0 0 1-.647.073h-.06c-.196 0-.245-.115-.227-.254l.065-.479.018-.136.07-.477a.27.27 0 0 1 .296-.254h.06c.21-.002.42.02.624.067l.018-.137c.016-.114.027-.207-.127-.236a3.265 3.265 0 0 0-.537-.037c-.744 0-1.07.277-1.13.718l-.117.835c-.06.44.188.719.932.719.194 0 .388-.015.58-.048.085-.02.14-.058.165-.236m1.486-1.946c-.072 0-.143.002-.21.006l.1-.73c-.558.061-.815.32-.87.706l-.071.507-.247 1.76h.778l.254-1.834a.646.646 0 0 1 .2-.029c.197 0 .246.114.227.25l-.227 1.613h.778l.216-1.524c.062-.442-.186-.72-.932-.72M.865 11.51l.007-.055.243-1.684h-.78l-.27 1.843v.007l-.056.424c-.054.385.128.646.67.706l.18-1.239m22.771-1.53h-1.07l-.042.29h.878c.115 0 .208-.116.233-.29M2.274 12.741l.227-1.613c.019-.135-.03-.25-.227-.25a.64.64 0 0 0-.2.03l-.254 1.833h-.78l.293-2.079a2.69 2.69 0 0 1 1.006-.17c.745 0 .992.28.93.72l-.214 1.525h-.778" }) + ] + } + ); +}); + +exports.default = SiIntermarche; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.d.ts new file mode 100644 index 000000000..354213b94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E2001A"; +declare const SiIntermarche: IconType; +export { SiIntermarche as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.mjs new file mode 100644 index 000000000..fe9b52fd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntermarche.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E2001A"; +const SiIntermarche = React.forwardRef(function SiIntermarche2({ title = "Intermarche", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.948 13.05.677 1.18h12.782l.15-1.18zm1.961-2.556a3.209 3.209 0 0 0-.694.071 1.72 1.72 0 0 0-.537-.07 2.699 2.699 0 0 0-1.007.168l-.215 1.53.317.552h.384l.254-1.834a.648.648 0 0 1 .2-.03c.17 0 .229.086.23.192l-.234 1.672h.782l.215-1.525a1 1 0 0 0 .008-.093l.03-.214a.646.646 0 0 1 .201-.029c.197 0 .246.115.227.25l-.22 1.608h.778l.215-1.524c.062-.442-.185-.72-.93-.72M8.88 11.88a.725.725 0 0 0 .438-.593l.012-.078h-.004c.062-.442-.185-.72-.93-.72a2.699 2.699 0 0 0-1.007.17v.003L7.1 12.741h.778l.104-.74h.2l1.466 2c.097.13.219.23.375.23h.208l-1.355-2.352zm-.32-.755-.01.084-.025.165a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.64.64 0 0 1 .202-.03c.197 0 .247.114.227.25zm-3.84 1.503c.014-.102-.023-.174-.145-.174h-.09c-.197 0-.247-.114-.228-.25l.165-1.178v-.015l.01-.078h.21a.058.058 0 0 1 .02 0c.113 0 .207-.115.231-.289H4.47l.122-.871c-.558.061-.815.32-.871.705l-.066.434-.006.042-.004.03-.14 1.04c-.061.432.17.707.876.72h.322l.016-.114m1.416-2.14a2.699 2.699 0 0 0-1.007.17l-.119.846-.068.509c-.06.43.175.705.877.718h.853l.015-.102c.015-.103-.021-.186-.143-.186H5.92c-.197 0-.246-.114-.227-.25l.025-.186h.244c.714-.01 1.03-.283 1.092-.713l.012-.079h-.004c.06-.44-.187-.719-.931-.719zm.166.642-.011.085-.027.155a.27.27 0 0 1-.3.247h-.191l.01-.078.09-.638a.642.642 0 0 1 .202-.029c.196 0 .245.115.226.25zm16.764-.642a2.696 2.696 0 0 0-1.005.17l-.12.846-.068.509c-.06.43.175.705.876.718h.854l.015-.103c.015-.103-.022-.185-.144-.185h-.625c-.196 0-.246-.114-.226-.25l.025-.186h.244c.713-.01 1.03-.283 1.092-.713l.012-.079h-.004c.061-.44-.186-.719-.93-.719zm.163.642-.01.085-.025.164a.271.271 0 0 1-.3.247h-.191l.01-.077.09-.639a.643.643 0 0 1 .202-.028c.196-.01.246.105.226.24zm-9.025-.632h-.665c-.116 0-.208.115-.233.29h.794c.197 0 .246.121.227.253l-.034.247h-.258c-.703.013-1.017.284-1.078.713l-.012.078h.007c-.06.44.187.719.933.719.342.008.684-.05 1.005-.17l.12-.847.075-.564c.06-.43-.175-.713-.876-.726zm.024 1.245-.09.645a.642.642 0 0 1-.201.03c-.196 0-.245-.115-.227-.25l.01-.085.026-.165a.27.27 0 0 1 .298-.248h.192l-.01.077zm3.16-.456.012-.079h.005c.06-.44-.187-.718-.93-.718a2.698 2.698 0 0 0-1.007.17v.003l-.293 2.08h.778l.104-.74h.198l.437.739h.778l-.513-.862a.725.725 0 0 0 .438-.593zm-.747-.165-.01.085-.039.163a.27.27 0 0 1-.3.247h-.19l.01-.078.09-.638a.64.64 0 0 1 .201-.029c.201.001.25.115.232.25zm2.604 1.33.018-.132a3.28 3.28 0 0 1-.647.073h-.06c-.196 0-.245-.115-.227-.254l.065-.479.018-.136.07-.477a.27.27 0 0 1 .296-.254h.06c.21-.002.42.02.624.067l.018-.137c.016-.114.027-.207-.127-.236a3.265 3.265 0 0 0-.537-.037c-.744 0-1.07.277-1.13.718l-.117.835c-.06.44.188.719.932.719.194 0 .388-.015.58-.048.085-.02.14-.058.165-.236m1.486-1.946c-.072 0-.143.002-.21.006l.1-.73c-.558.061-.815.32-.87.706l-.071.507-.247 1.76h.778l.254-1.834a.646.646 0 0 1 .2-.029c.197 0 .246.114.227.25l-.227 1.613h.778l.216-1.524c.062-.442-.186-.72-.932-.72M.865 11.51l.007-.055.243-1.684h-.78l-.27 1.843v.007l-.056.424c-.054.385.128.646.67.706l.18-1.239m22.771-1.53h-1.07l-.042.29h.878c.115 0 .208-.116.233-.29M2.274 12.741l.227-1.613c.019-.135-.03-.25-.227-.25a.64.64 0 0 0-.2.03l-.254 1.833h-.78l.293-2.079a2.69 2.69 0 0 1 1.006-.17c.745 0 .992.28.93.72l-.214 1.525h-.778" }) + ] + } + ); +}); + +export { SiIntermarche as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.cjs new file mode 100644 index 000000000..677e3d93e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#666666"; +const SiInternetarchive = React__namespace.forwardRef(function SiInternetarchive2({ title = "Internet Archive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.667 22.884V24H1.333v-1.116zm-.842-1.675v1.396H2.175v-1.396zM4.233 6.14l.234.118.118 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098H3.062l-.352-.098-.136-2.47-.118-3.646v-2.941l.118-3.078.107-1.892.244-.107zm16.842 0l.235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098h-1.171l-.352-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm-11.79 0l.235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.331.098H8.114l-.352-.098-.136-2.47-.117-3.646v-2.941l.117-3.078.107-1.892.244-.107zm6.457 0l.234.118.117 1.882.118 3.058v2.941l-.118 3.666-.019 2.47-.332.098H14.57l-.351-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm6.083-2.511V5.58H2.175V3.628zM11.798 0l10.307 2.347-.413.723H1.951l-.618-.587Z" }) + ] + } + ); +}); + +exports.default = SiInternetarchive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.d.ts new file mode 100644 index 000000000..7d4c3d237 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#666666"; +declare const SiInternetarchive: IconType; +export { SiInternetarchive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.mjs new file mode 100644 index 000000000..e25bb7bea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetarchive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#666666"; +const SiInternetarchive = React.forwardRef(function SiInternetarchive2({ title = "Internet Archive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.667 22.884V24H1.333v-1.116zm-.842-1.675v1.396H2.175v-1.396zM4.233 6.14l.234.118.118 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098H3.062l-.352-.098-.136-2.47-.118-3.646v-2.941l.118-3.078.107-1.892.244-.107zm16.842 0l.235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.332.098h-1.171l-.352-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm-11.79 0l.235.118.117 1.882.117 3.058v2.941l-.117 3.666-.02 2.47-.331.098H8.114l-.352-.098-.136-2.47-.117-3.646v-2.941l.117-3.078.107-1.892.244-.107zm6.457 0l.234.118.117 1.882.118 3.058v2.941l-.118 3.666-.019 2.47-.332.098H14.57l-.351-.098-.137-2.47-.117-3.646v-2.941l.117-3.078.108-1.892.244-.107zm6.083-2.511V5.58H2.175V3.628zM11.798 0l10.307 2.347-.413.723H1.951l-.618-.587Z" }) + ] + } + ); +}); + +export { SiInternetarchive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.cjs new file mode 100644 index 000000000..db8b9003c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B00B9"; +const SiInternetcomputer = React__namespace.forwardRef(function SiInternetcomputer2({ title = "Internet Computer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.264 6.24c-2.52 0-5.376 3.024-6.264 3.984-.72-.792-3.696-3.984-6.264-3.984C2.568 6.24 0 8.832 0 12c0 3.168 2.568 5.76 5.736 5.76 2.52 0 5.376-3.024 6.264-3.984.72.792 3.696 3.984 6.264 3.984C21.432 17.76 24 15.168 24 12c0-3.168-2.568-5.76-5.736-5.76ZM5.736 15.384A3.38 3.38 0 0 1 2.352 12a3.395 3.395 0 0 1 3.384-3.384c1.176 0 3.24 1.8 4.68 3.384-.408.456-3.144 3.384-4.68 3.384zm12.528 0c-1.176 0-3.24-1.8-4.68-3.384.408-.456 3.168-3.384 4.68-3.384A3.38 3.38 0 0 1 21.648 12c-.024 1.872-1.536 3.384-3.384 3.384z" }) + ] + } + ); +}); + +exports.default = SiInternetcomputer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.d.ts new file mode 100644 index 000000000..4d529739f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B00B9"; +declare const SiInternetcomputer: IconType; +export { SiInternetcomputer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.mjs new file mode 100644 index 000000000..dca5e3d28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInternetcomputer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B00B9"; +const SiInternetcomputer = React.forwardRef(function SiInternetcomputer2({ title = "Internet Computer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.264 6.24c-2.52 0-5.376 3.024-6.264 3.984-.72-.792-3.696-3.984-6.264-3.984C2.568 6.24 0 8.832 0 12c0 3.168 2.568 5.76 5.736 5.76 2.52 0 5.376-3.024 6.264-3.984.72.792 3.696 3.984 6.264 3.984C21.432 17.76 24 15.168 24 12c0-3.168-2.568-5.76-5.736-5.76ZM5.736 15.384A3.38 3.38 0 0 1 2.352 12a3.395 3.395 0 0 1 3.384-3.384c1.176 0 3.24 1.8 4.68 3.384-.408.456-3.144 3.384-4.68 3.384zm12.528 0c-1.176 0-3.24-1.8-4.68-3.384.408-.456 3.168-3.384 4.68-3.384A3.38 3.38 0 0 1 21.648 12c-.024 1.872-1.536 3.384-3.384 3.384z" }) + ] + } + ); +}); + +export { SiInternetcomputer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.cjs new file mode 100644 index 000000000..400f5ab06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#161A36"; +const SiIntigriti = React__namespace.forwardRef(function SiIntigriti2({ title = "Intigriti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.9133 6.0364c-1.1056.574-3.7632 1.924-5.8999 3.0084-3.7738 1.9134-7.0267 3.593-7.1117 3.6674-.032.0213.0106.404.085.8611.574 3.4123 2.1473 6.4526 4.316 8.3555l.691.6165.6909-.5953c1.839-1.6158 3.3273-4.2202 4.0502-7.0585.1488-.5634.2764-1.3076.287-1.6477l.0213-.6166-2.9553-1.5308-.7335.372c-.3933.202-.7229.3934-.7229.4253 0 .0319.6698.3933 1.4883.7973l1.4882.7335-.0637.3827c-.3934 2.1686-1.6158 4.7517-2.9234 6.1868l-.606.6698-.4464-.4253c-.9248-.893-1.9347-2.615-2.5194-4.3053-.3295-.946-.7229-2.4343-.659-2.4875.0212-.0212 3.0402-1.5414 6.7077-3.391l6.6546-3.3699.2126.3508c.6697 1.0843.7229 2.5407.1382 3.7313-.6484 1.3181-1.754 1.9879-3.3698 2.0623l-.978.0425-.0638.3189c-.0319.1807-.0638.4784-.0638.6803 0 .319.032.3615.3827.4253.574.1063 1.7647-.032 2.4556-.287 1.6796-.6273 2.849-1.9135 3.3699-3.7313.4464-1.5627-.032-3.423-1.265-4.8475-.2127-.2445-.4465-.4464-.5103-.4464-.0744.0106-1.0312.4783-2.1473 1.0524zM1.3739 5.4836C.1833 6.8762-.2632 8.6196.1514 10.2354c.4677 1.8071 1.6583 3.136 3.3698 3.7737.691.2552 1.8816.3934 2.4556.287.4146-.085.4571-.202.319-1.031l-.0638-.3934-.978-.0425c-1.6265-.0744-2.7214-.7442-3.3805-2.0836-.574-1.148-.5315-2.5406.085-3.6143l.2658-.4571 3.8482 1.956 3.8588 1.956.7123-.3508c.3933-.202.7122-.404.7122-.4465 0-.0638-9.3441-4.805-9.4823-4.805-.0425 0-.2658.2233-.4996.4997zm6.3144-3.6144l-.2657.404.2338.0638c.691.1807 1.6903.9567 2.1048 1.637l.2127.3402-.5953.8824c-.5953.893-1.212 2.0304-1.212 2.2323 0 .0957.9568.6379 1.1375.6379.0426 0 .287-.404.5316-.8824.5315-1.0417.9567-1.6583 1.6583-2.4024l.4996-.5315.4465.4783c.7016.7548 1.2119 1.4883 1.6902 2.4237.2445.4678.4678.8824.489.9143.0638.0744 1.2013-.5422 1.2013-.6591 0-.1914-.6485-1.3713-1.2225-2.2111l-.5953-.8717.2232-.3508c.3295-.5316 1.2012-1.2757 1.754-1.499.2658-.1169.4784-.255.4784-.3082 0-.0638-.1063-.2445-.2445-.4146l-.2445-.2976-.5209.2445c-.3083.1488-.8717.5846-1.3394 1.0524l-.808.8079-.659-.606-.6485-.6165-.6484.6165-.6591.6166-.7548-.7654C9.3254 2.1882 8.2943 1.476 8.018 1.476c-.032 0-.1808.1807-.3296.3933z" }) + ] + } + ); +}); + +exports.default = SiIntigriti; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.d.ts new file mode 100644 index 000000000..479337b0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#161A36"; +declare const SiIntigriti: IconType; +export { SiIntigriti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.mjs new file mode 100644 index 000000000..ecd1482c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntigriti.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#161A36"; +const SiIntigriti = React.forwardRef(function SiIntigriti2({ title = "Intigriti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.9133 6.0364c-1.1056.574-3.7632 1.924-5.8999 3.0084-3.7738 1.9134-7.0267 3.593-7.1117 3.6674-.032.0213.0106.404.085.8611.574 3.4123 2.1473 6.4526 4.316 8.3555l.691.6165.6909-.5953c1.839-1.6158 3.3273-4.2202 4.0502-7.0585.1488-.5634.2764-1.3076.287-1.6477l.0213-.6166-2.9553-1.5308-.7335.372c-.3933.202-.7229.3934-.7229.4253 0 .0319.6698.3933 1.4883.7973l1.4882.7335-.0637.3827c-.3934 2.1686-1.6158 4.7517-2.9234 6.1868l-.606.6698-.4464-.4253c-.9248-.893-1.9347-2.615-2.5194-4.3053-.3295-.946-.7229-2.4343-.659-2.4875.0212-.0212 3.0402-1.5414 6.7077-3.391l6.6546-3.3699.2126.3508c.6697 1.0843.7229 2.5407.1382 3.7313-.6484 1.3181-1.754 1.9879-3.3698 2.0623l-.978.0425-.0638.3189c-.0319.1807-.0638.4784-.0638.6803 0 .319.032.3615.3827.4253.574.1063 1.7647-.032 2.4556-.287 1.6796-.6273 2.849-1.9135 3.3699-3.7313.4464-1.5627-.032-3.423-1.265-4.8475-.2127-.2445-.4465-.4464-.5103-.4464-.0744.0106-1.0312.4783-2.1473 1.0524zM1.3739 5.4836C.1833 6.8762-.2632 8.6196.1514 10.2354c.4677 1.8071 1.6583 3.136 3.3698 3.7737.691.2552 1.8816.3934 2.4556.287.4146-.085.4571-.202.319-1.031l-.0638-.3934-.978-.0425c-1.6265-.0744-2.7214-.7442-3.3805-2.0836-.574-1.148-.5315-2.5406.085-3.6143l.2658-.4571 3.8482 1.956 3.8588 1.956.7123-.3508c.3933-.202.7122-.404.7122-.4465 0-.0638-9.3441-4.805-9.4823-4.805-.0425 0-.2658.2233-.4996.4997zm6.3144-3.6144l-.2657.404.2338.0638c.691.1807 1.6903.9567 2.1048 1.637l.2127.3402-.5953.8824c-.5953.893-1.212 2.0304-1.212 2.2323 0 .0957.9568.6379 1.1375.6379.0426 0 .287-.404.5316-.8824.5315-1.0417.9567-1.6583 1.6583-2.4024l.4996-.5315.4465.4783c.7016.7548 1.2119 1.4883 1.6902 2.4237.2445.4678.4678.8824.489.9143.0638.0744 1.2013-.5422 1.2013-.6591 0-.1914-.6485-1.3713-1.2225-2.2111l-.5953-.8717.2232-.3508c.3295-.5316 1.2012-1.2757 1.754-1.499.2658-.1169.4784-.255.4784-.3082 0-.0638-.1063-.2445-.2445-.4146l-.2445-.2976-.5209.2445c-.3083.1488-.8717.5846-1.3394 1.0524l-.808.8079-.659-.606-.6485-.6165-.6484.6165-.6591.6166-.7548-.7654C9.3254 2.1882 8.2943 1.476 8.018 1.476c-.032 0-.1808.1807-.3296.3933z" }) + ] + } + ); +}); + +export { SiIntigriti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.cjs new file mode 100644 index 000000000..915762a12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#236CFF"; +const SiIntuit = React__namespace.forwardRef(function SiIntuit2({ title = "Intuit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.32 12.38c0 1.174.974 2.033 2.211 2.033 1.237 0 2.212-.859 2.212-2.033v-2.7h-1.198v2.56c0 .633-.44 1.06-1.017 1.06s-1.017-.424-1.017-1.06V9.68h-1.198l.008 2.699zm7.624-1.619h1.429v3.563h1.198V10.76H24V9.68h-4.056v1.082zM19.17 9.68h-1.198v4.645h1.198V9.679zM7.482 10.761h1.43v3.563h1.197V10.76h1.428V9.68H7.482v1.082zM1.198 9.68H0v4.645h1.198V9.679zm5.653 1.94c0-1.174-.974-2.032-2.212-2.032-1.238 0-2.212.858-2.212 2.032v2.705h1.198v-2.56c0-.633.44-1.06 1.017-1.06s1.018.425 1.018 1.06v2.56h1.197L6.85 11.62h.001z" }) + ] + } + ); +}); + +exports.default = SiIntuit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.d.ts new file mode 100644 index 000000000..a63eea258 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#236CFF"; +declare const SiIntuit: IconType; +export { SiIntuit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.mjs new file mode 100644 index 000000000..06517e097 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIntuit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#236CFF"; +const SiIntuit = React.forwardRef(function SiIntuit2({ title = "Intuit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.32 12.38c0 1.174.974 2.033 2.211 2.033 1.237 0 2.212-.859 2.212-2.033v-2.7h-1.198v2.56c0 .633-.44 1.06-1.017 1.06s-1.017-.424-1.017-1.06V9.68h-1.198l.008 2.699zm7.624-1.619h1.429v3.563h1.198V10.76H24V9.68h-4.056v1.082zM19.17 9.68h-1.198v4.645h1.198V9.679zM7.482 10.761h1.43v3.563h1.197V10.76h1.428V9.68H7.482v1.082zM1.198 9.68H0v4.645h1.198V9.679zm5.653 1.94c0-1.174-.974-2.032-2.212-2.032-1.238 0-2.212.858-2.212 2.032v2.705h1.198v-2.56c0-.633.44-1.06 1.017-1.06s1.018.425 1.018 1.06v2.56h1.197L6.85 11.62h.001z" }) + ] + } + ); +}); + +export { SiIntuit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.cjs new file mode 100644 index 000000000..971f761bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B6F0"; +const SiInvidious = React__namespace.forwardRef(function SiInvidious2({ title = "Invidious", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 .742A11.257 11.257 0 0 1 23.258 12 11.257 11.257 0 0 1 12 23.258 11.257 11.257 0 0 1 .742 12 11.257 11.257 0 0 1 12 .742zm-.66 4.375a.776.776 0 0 0-.777.778.776.776 0 0 0 .777.775.776.776 0 0 0 .775-.775.776.776 0 0 0-.775-.778zm.035 2.266-.523 1.853-2.75 9.291h-.713v.373h1.974v-.373h-.875l2.606-8.806 4.6 9.174h1.429L11.375 7.383z" }) + ] + } + ); +}); + +exports.default = SiInvidious; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.d.ts new file mode 100644 index 000000000..438d172fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B6F0"; +declare const SiInvidious: IconType; +export { SiInvidious as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.mjs new file mode 100644 index 000000000..5b7a9d1b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInvidious.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B6F0"; +const SiInvidious = React.forwardRef(function SiInvidious2({ title = "Invidious", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 .742A11.257 11.257 0 0 1 23.258 12 11.257 11.257 0 0 1 12 23.258 11.257 11.257 0 0 1 .742 12 11.257 11.257 0 0 1 12 .742zm-.66 4.375a.776.776 0 0 0-.777.778.776.776 0 0 0 .777.775.776.776 0 0 0 .775-.775.776.776 0 0 0-.775-.778zm.035 2.266-.523 1.853-2.75 9.291h-.713v.373h1.974v-.373h-.875l2.606-8.806 4.6 9.174h1.429L11.375 7.383z" }) + ] + } + ); +}); + +export { SiInvidious as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.cjs new file mode 100644 index 000000000..ea9680faa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiInvoiceninja = React__namespace.forwardRef(function SiInvoiceninja2({ title = "Invoice Ninja", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.247 10.326a1.164 1.164 0 11-2.328 0 1.164 1.164 0 012.328 0zm-6.288 0a1.164 1.164 0 11-2.329 0 1.164 1.164 0 012.329 0zm-.14 13.52c-4.712-.98-8.227-4.257-9.482-8.842-.421-1.537-.421-4.49 0-6.027C1.506 4.709 4.73 1.485 8.997.316c1.538-.421 4.49-.421 6.028 0 4.267 1.169 7.492 4.393 8.66 8.66.24.874.294 1.43.294 3.014 0 1.584-.054 2.14-.293 3.014-1.17 4.271-4.439 7.536-8.661 8.65-1.391.367-3.916.46-5.206.192zm6.64-9.315c-3.047-1.348-4.054-1.737-4.5-1.737-.446 0-1.433.38-4.38 1.684-2.091.926-3.828 1.76-3.86 1.79h16.663zm-9.873-.361c1.621-.729 3.06-1.387 3.196-1.464.258-.145.337-.09-5.285-3.682-.56-.358-1.023-.698-1.025-.65V15.564a790.1 790.1 0 003.114-1.394zm14.078-2.194V8.417c0-.11-1.676.993-3.496 2.12-3 1.854-3.281 2.06-3.004 2.185 1.345.611 6.42 2.862 6.5 2.872zm-8.169.11c.545.125.643.104 1.226-.263.349-.22.655-.419.681-.442.026-.024-.05-.181-.167-.35-.118-.168-.215-.5-.215-.739V9.86l-.569.21c-.726.267-2.28.27-3 .005l-.556-.205.013.452c.007.26-.088.563-.225.715-.232.256-.22.276.45.726.64.432.725.455 1.23.327a2.349 2.349 0 011.132-.002zm-4.23-2.65c-.105-.113-2.97-.954-3.033-.891-.03.03.504.414 1.186.854l1.24.8.34-.344c.186-.188.307-.377.268-.42zm9.76-.373c.473-.306.8-.555.728-.555-.155 0-2.877.804-3.027.894-.057.034.033.229.2.433l.304.37.47-.293c.257-.162.854-.544 1.326-.85zm-1.636-.555c2.11-.59 3.867-1.102 3.904-1.139H3.59c.187.187 7.779 2.195 8.323 2.202.41.005 2.014-.376 4.476-1.063z" }) + ] + } + ); +}); + +exports.default = SiInvoiceninja; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.d.ts new file mode 100644 index 000000000..19f529c1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiInvoiceninja: IconType; +export { SiInvoiceninja as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.mjs new file mode 100644 index 000000000..a7a53c471 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiInvoiceninja.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiInvoiceninja = React.forwardRef(function SiInvoiceninja2({ title = "Invoice Ninja", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.247 10.326a1.164 1.164 0 11-2.328 0 1.164 1.164 0 012.328 0zm-6.288 0a1.164 1.164 0 11-2.329 0 1.164 1.164 0 012.329 0zm-.14 13.52c-4.712-.98-8.227-4.257-9.482-8.842-.421-1.537-.421-4.49 0-6.027C1.506 4.709 4.73 1.485 8.997.316c1.538-.421 4.49-.421 6.028 0 4.267 1.169 7.492 4.393 8.66 8.66.24.874.294 1.43.294 3.014 0 1.584-.054 2.14-.293 3.014-1.17 4.271-4.439 7.536-8.661 8.65-1.391.367-3.916.46-5.206.192zm6.64-9.315c-3.047-1.348-4.054-1.737-4.5-1.737-.446 0-1.433.38-4.38 1.684-2.091.926-3.828 1.76-3.86 1.79h16.663zm-9.873-.361c1.621-.729 3.06-1.387 3.196-1.464.258-.145.337-.09-5.285-3.682-.56-.358-1.023-.698-1.025-.65V15.564a790.1 790.1 0 003.114-1.394zm14.078-2.194V8.417c0-.11-1.676.993-3.496 2.12-3 1.854-3.281 2.06-3.004 2.185 1.345.611 6.42 2.862 6.5 2.872zm-8.169.11c.545.125.643.104 1.226-.263.349-.22.655-.419.681-.442.026-.024-.05-.181-.167-.35-.118-.168-.215-.5-.215-.739V9.86l-.569.21c-.726.267-2.28.27-3 .005l-.556-.205.013.452c.007.26-.088.563-.225.715-.232.256-.22.276.45.726.64.432.725.455 1.23.327a2.349 2.349 0 011.132-.002zm-4.23-2.65c-.105-.113-2.97-.954-3.033-.891-.03.03.504.414 1.186.854l1.24.8.34-.344c.186-.188.307-.377.268-.42zm9.76-.373c.473-.306.8-.555.728-.555-.155 0-2.877.804-3.027.894-.057.034.033.229.2.433l.304.37.47-.293c.257-.162.854-.544 1.326-.85zm-1.636-.555c2.11-.59 3.867-1.102 3.904-1.139H3.59c.187.187 7.779 2.195 8.323 2.202.41.005 2.014-.376 4.476-1.063z" }) + ] + } + ); +}); + +export { SiInvoiceninja as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.cjs new file mode 100644 index 000000000..105763f2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3399CC"; +const SiIobroker = React__namespace.forwardRef(function SiIobroker2({ title = "ioBroker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.61 0-1.201.044-1.787.133v3.285a8.943 8.943 0 013.574.004V.139A11.83 11.83 0 0012 0zM9.38.295C4.084 1.5.13 6.283.13 12 .129 18.628 5.44 24 12 24s11.871-5.372 11.871-12c0-5.717-3.953-10.499-9.246-11.705v3.34c3.575 1.113 6.18 4.44 6.18 8.365 0 4.83-3.949 8.76-8.8 8.76-4.85 0-8.804-3.93-8.804-8.76 0-3.924 2.605-7.247 6.18-8.365V.295zM12 4.137c-.616 0-1.212.068-1.783.2V19.53A7.887 7.887 0 0012 19.73c.616 0 1.211-.068 1.787-.2V4.343A7.65 7.65 0 0012 4.137Z" }) + ] + } + ); +}); + +exports.default = SiIobroker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.d.ts new file mode 100644 index 000000000..d3a1d3132 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3399CC"; +declare const SiIobroker: IconType; +export { SiIobroker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.mjs new file mode 100644 index 000000000..48eec8ec1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIobroker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3399CC"; +const SiIobroker = React.forwardRef(function SiIobroker2({ title = "ioBroker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.61 0-1.201.044-1.787.133v3.285a8.943 8.943 0 013.574.004V.139A11.83 11.83 0 0012 0zM9.38.295C4.084 1.5.13 6.283.13 12 .129 18.628 5.44 24 12 24s11.871-5.372 11.871-12c0-5.717-3.953-10.499-9.246-11.705v3.34c3.575 1.113 6.18 4.44 6.18 8.365 0 4.83-3.949 8.76-8.8 8.76-4.85 0-8.804-3.93-8.804-8.76 0-3.924 2.605-7.247 6.18-8.365V.295zM12 4.137c-.616 0-1.212.068-1.783.2V19.53A7.887 7.887 0 0012 19.73c.616 0 1.211-.068 1.787-.2V4.343A7.65 7.65 0 0012 4.137Z" }) + ] + } + ); +}); + +export { SiIobroker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.cjs new file mode 100644 index 000000000..532884c4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3880FF"; +const SiIonic = React__namespace.forwardRef(function SiIonic2({ title = "Ionic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.922 7.027l-.103-.23-.169.188c-.408.464-.928.82-1.505 1.036l-.159.061.066.155a9.745 9.745 0 0 1 .75 3.759c0 5.405-4.397 9.806-9.806 9.806-5.409 0-9.802-4.397-9.802-9.802 0-5.405 4.402-9.806 9.806-9.806 1.467 0 2.883.319 4.2.947l.155.075.066-.155a3.767 3.767 0 0 1 1.106-1.453l.197-.159-.225-.117A11.905 11.905 0 0 0 12.001.001c-6.619 0-12 5.381-12 12s5.381 12 12 12 12-5.381 12-12c0-1.73-.361-3.403-1.078-4.973zM12 6.53A5.476 5.476 0 0 0 6.53 12 5.476 5.476 0 0 0 12 17.47 5.476 5.476 0 0 0 17.47 12 5.479 5.479 0 0 0 12 6.53zm10.345-2.007a2.494 2.494 0 1 1-4.988 0 2.494 2.494 0 0 1 4.988 0z" }) + ] + } + ); +}); + +exports.default = SiIonic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.d.ts new file mode 100644 index 000000000..906311a2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3880FF"; +declare const SiIonic: IconType; +export { SiIonic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.mjs new file mode 100644 index 000000000..61988de90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIonic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3880FF"; +const SiIonic = React.forwardRef(function SiIonic2({ title = "Ionic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.922 7.027l-.103-.23-.169.188c-.408.464-.928.82-1.505 1.036l-.159.061.066.155a9.745 9.745 0 0 1 .75 3.759c0 5.405-4.397 9.806-9.806 9.806-5.409 0-9.802-4.397-9.802-9.802 0-5.405 4.402-9.806 9.806-9.806 1.467 0 2.883.319 4.2.947l.155.075.066-.155a3.767 3.767 0 0 1 1.106-1.453l.197-.159-.225-.117A11.905 11.905 0 0 0 12.001.001c-6.619 0-12 5.381-12 12s5.381 12 12 12 12-5.381 12-12c0-1.73-.361-3.403-1.078-4.973zM12 6.53A5.476 5.476 0 0 0 6.53 12 5.476 5.476 0 0 0 12 17.47 5.476 5.476 0 0 0 17.47 12 5.479 5.479 0 0 0 12 6.53zm10.345-2.007a2.494 2.494 0 1 1-4.988 0 2.494 2.494 0 0 1 4.988 0z" }) + ] + } + ); +}); + +export { SiIonic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.cjs new file mode 100644 index 000000000..60a45d16c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003D8F"; +const SiIonos = React__namespace.forwardRef(function SiIonos2({ title = "Ionos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.182 15.499a1.7634 1.7634 0 0 1-.3536-.0358 1.8319 1.8319 0 0 1-1.2086-.8632l-.0066-.012c-.1308-.2616-.0448-.5693.2-.7162a.5236.5236 0 0 1 .2689-.0743.5327.5327 0 0 1 .4632.272.558.558 0 0 0 .018.0299l.0564.0766.0757.0765a.7385.7385 0 0 0 .3453.167.7596.7596 0 0 0 .5954-.136.7206.7206 0 0 0 .299-.5386.7441.7441 0 0 0-.207-.578s-1.5994-1.6612-1.6712-1.7382a1.9604 1.9604 0 0 1-.1929-.229c-.2256-.3198-.2962-.697-.2614-1.0702a1.7361 1.7361 0 0 1 .2253-.7397s.0732-.124.0948-.1554c.0847-.1236.2515-.2834.3658-.3726a1.8813 1.8813 0 0 1 .3069-.1844 1.7494 1.7494 0 0 1 2.2815.7041.5186.5186 0 0 1 .0553.402.5298.5298 0 0 1-.2528.3263.5082.5082 0 0 1-.2593.0705.5283.5283 0 0 1-.46-.2706.6953.6953 0 0 0-.4656-.329.721.721 0 0 0-.5645.1269.688.688 0 0 0-.267.498.6998.6998 0 0 0 .1905.5398l1.6351 1.6862a1.8284 1.8284 0 0 1 .5071 1.3931c-.0465.5243-.3071.9994-.7152 1.3053a1.8425 1.8425 0 0 1-1.0984.369m-5.175-.0006a1.7608 1.7608 0 0 0 1.7585-1.7589v-3.4787a1.7587 1.7587 0 0 0-3.5173 0v3.4786a1.7608 1.7608 0 0 0 1.7587 1.7589m0-5.9342c.3777 0 .6968.319.6968.6967v3.4786a.6977.6977 0 0 1-.6968.6968.6894.6894 0 0 1-.6968-.6968v-3.4786a.6976.6976 0 0 1 .697-.6967m-7.8986.3224v5.0804a.5309.5309 0 0 0 1.0618 0V12.09Zm2.8802 2.0255V9.0328a.531.531 0 0 1 1.0619 0v5.0828zm1.053 2.9406v.1134a.533.533 0 0 1-1.0067.2408L9.1153 9.154v-.1212a.5261.5261 0 0 1 .3028-.4772.5253.5253 0 0 1 .7088.2475Zm-7.9067.6457a1.761 1.761 0 0 0 1.7586-1.7589v-3.4786a1.7587 1.7587 0 0 0-3.5173 0v3.4786a1.7609 1.7609 0 0 0 1.7587 1.7589m0-5.9342a.707.707 0 0 1 .6968.6967v3.4786a.6968.6968 0 1 1-1.3936 0v-3.4786a.6976.6976 0 0 1 .6968-.6967M0 14.9111a.5791.5791 0 1 0 1.1581 0V9.0803a.5791.5791 0 0 0-1.1582 0z" }) + ] + } + ); +}); + +exports.default = SiIonos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.d.ts new file mode 100644 index 000000000..405eb5316 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003D8F"; +declare const SiIonos: IconType; +export { SiIonos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.mjs new file mode 100644 index 000000000..adee75d57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIonos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003D8F"; +const SiIonos = React.forwardRef(function SiIonos2({ title = "Ionos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.182 15.499a1.7634 1.7634 0 0 1-.3536-.0358 1.8319 1.8319 0 0 1-1.2086-.8632l-.0066-.012c-.1308-.2616-.0448-.5693.2-.7162a.5236.5236 0 0 1 .2689-.0743.5327.5327 0 0 1 .4632.272.558.558 0 0 0 .018.0299l.0564.0766.0757.0765a.7385.7385 0 0 0 .3453.167.7596.7596 0 0 0 .5954-.136.7206.7206 0 0 0 .299-.5386.7441.7441 0 0 0-.207-.578s-1.5994-1.6612-1.6712-1.7382a1.9604 1.9604 0 0 1-.1929-.229c-.2256-.3198-.2962-.697-.2614-1.0702a1.7361 1.7361 0 0 1 .2253-.7397s.0732-.124.0948-.1554c.0847-.1236.2515-.2834.3658-.3726a1.8813 1.8813 0 0 1 .3069-.1844 1.7494 1.7494 0 0 1 2.2815.7041.5186.5186 0 0 1 .0553.402.5298.5298 0 0 1-.2528.3263.5082.5082 0 0 1-.2593.0705.5283.5283 0 0 1-.46-.2706.6953.6953 0 0 0-.4656-.329.721.721 0 0 0-.5645.1269.688.688 0 0 0-.267.498.6998.6998 0 0 0 .1905.5398l1.6351 1.6862a1.8284 1.8284 0 0 1 .5071 1.3931c-.0465.5243-.3071.9994-.7152 1.3053a1.8425 1.8425 0 0 1-1.0984.369m-5.175-.0006a1.7608 1.7608 0 0 0 1.7585-1.7589v-3.4787a1.7587 1.7587 0 0 0-3.5173 0v3.4786a1.7608 1.7608 0 0 0 1.7587 1.7589m0-5.9342c.3777 0 .6968.319.6968.6967v3.4786a.6977.6977 0 0 1-.6968.6968.6894.6894 0 0 1-.6968-.6968v-3.4786a.6976.6976 0 0 1 .697-.6967m-7.8986.3224v5.0804a.5309.5309 0 0 0 1.0618 0V12.09Zm2.8802 2.0255V9.0328a.531.531 0 0 1 1.0619 0v5.0828zm1.053 2.9406v.1134a.533.533 0 0 1-1.0067.2408L9.1153 9.154v-.1212a.5261.5261 0 0 1 .3028-.4772.5253.5253 0 0 1 .7088.2475Zm-7.9067.6457a1.761 1.761 0 0 0 1.7586-1.7589v-3.4786a1.7587 1.7587 0 0 0-3.5173 0v3.4786a1.7609 1.7609 0 0 0 1.7587 1.7589m0-5.9342a.707.707 0 0 1 .6968.6967v3.4786a.6968.6968 0 1 1-1.3936 0v-3.4786a.6976.6976 0 0 1 .6968-.6967M0 14.9111a.5791.5791 0 1 0 1.1581 0V9.0803a.5791.5791 0 0 0-1.1582 0z" }) + ] + } + ); +}); + +export { SiIonos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIos.cjs new file mode 100644 index 000000000..3aeff25f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiIos = React__namespace.forwardRef(function SiIos2({ title = "iOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.1 6.05C.486 6.05 0 6.53 0 7.13A1.08 1.08 0 0 0 1.1 8.21C1.72 8.21 2.21 7.73 2.21 7.13C2.21 6.53 1.72 6.05 1.1 6.05M8.71 6.07C5.35 6.07 3.25 8.36 3.25 12C3.25 15.67 5.35 17.95 8.71 17.95C12.05 17.95 14.16 15.67 14.16 12C14.16 8.36 12.05 6.07 8.71 6.07M19.55 6.07C17.05 6.07 15.27 7.45 15.27 9.5C15.27 11.13 16.28 12.15 18.4 12.64L19.89 13C21.34 13.33 21.93 13.81 21.93 14.64C21.93 15.6 20.96 16.28 19.58 16.28C18.17 16.28 17.11 15.59 17 14.53H15C15.08 16.65 16.82 17.95 19.46 17.95C22.25 17.95 24 16.58 24 14.4C24 12.69 23 11.72 20.68 11.19L19.35 10.89C17.94 10.55 17.36 10.1 17.36 9.34C17.36 8.38 18.24 7.74 19.54 7.74C20.85 7.74 21.75 8.39 21.85 9.46H23.81C23.76 7.44 22.09 6.07 19.55 6.07M8.71 7.82C10.75 7.82 12.06 9.45 12.06 12C12.06 14.57 10.75 16.2 8.71 16.2C6.65 16.2 5.35 14.57 5.35 12C5.35 9.45 6.65 7.82 8.71 7.82M.111 9.31V17.76H2.1V9.31H.11Z" }) + ] + } + ); +}); + +exports.default = SiIos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIos.d.ts new file mode 100644 index 000000000..d63dc009d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiIos: IconType; +export { SiIos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIos.mjs new file mode 100644 index 000000000..ce625cd6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiIos = React.forwardRef(function SiIos2({ title = "iOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.1 6.05C.486 6.05 0 6.53 0 7.13A1.08 1.08 0 0 0 1.1 8.21C1.72 8.21 2.21 7.73 2.21 7.13C2.21 6.53 1.72 6.05 1.1 6.05M8.71 6.07C5.35 6.07 3.25 8.36 3.25 12C3.25 15.67 5.35 17.95 8.71 17.95C12.05 17.95 14.16 15.67 14.16 12C14.16 8.36 12.05 6.07 8.71 6.07M19.55 6.07C17.05 6.07 15.27 7.45 15.27 9.5C15.27 11.13 16.28 12.15 18.4 12.64L19.89 13C21.34 13.33 21.93 13.81 21.93 14.64C21.93 15.6 20.96 16.28 19.58 16.28C18.17 16.28 17.11 15.59 17 14.53H15C15.08 16.65 16.82 17.95 19.46 17.95C22.25 17.95 24 16.58 24 14.4C24 12.69 23 11.72 20.68 11.19L19.35 10.89C17.94 10.55 17.36 10.1 17.36 9.34C17.36 8.38 18.24 7.74 19.54 7.74C20.85 7.74 21.75 8.39 21.85 9.46H23.81C23.76 7.44 22.09 6.07 19.55 6.07M8.71 7.82C10.75 7.82 12.06 9.45 12.06 12C12.06 14.57 10.75 16.2 8.71 16.2C6.65 16.2 5.35 14.57 5.35 12C5.35 9.45 6.65 7.82 8.71 7.82M.111 9.31V17.76H2.1V9.31H.11Z" }) + ] + } + ); +}); + +export { SiIos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIota.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIota.cjs new file mode 100644 index 000000000..068087385 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIota.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#131F37"; +const SiIota = React__namespace.forwardRef(function SiIota2({ title = "IOTA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.4459 18.8235a.7393.7393 0 10-.7417-.7393.7401.7401 0 00.7417.7393zm9.1863 2.218a1.1578 1.1578 0 10-1.1602-1.1578 1.1586 1.1586 0 001.1602 1.1578zm-4.3951.392a.9858.9858 0 10-.9882-.9849.9866.9866 0 00.9882.985zm2.494 2.07a1.1578 1.1578 0 10-1.161-1.1578 1.1586 1.1586 0 001.161 1.1578zm-4.5448-.3944a.9858.9858 0 10-.9873-.985.9866.9866 0 00.9873.985zm-1.7035-2.1676a.8625.8625 0 10-.8649-.8601.8633.8633 0 00.865.8601zm2.0492-1.6747a.8625.8625 0 10-.8634-.8657.8641.8641 0 00.8634.8657zm3.631-.296a.9858.9858 0 10-.9882-.985.9866.9866 0 00.9882.985zm-1.729-2.1428a.8625.8625 0 10-.8634-.8625.8641.8641 0 00.8633.8625zm-2.939.32a.7393.7393 0 10-.741-.7393.7401.7401 0 00.741.7394zm-2.5188-.32a.6161.6161 0 10-.6177-.616.6169.6169 0 00.6177.616zm-.0248-1.7003a.5417.5417 0 10-.5433-.5417.5425.5425 0 00.5433.5417zm2.0995.0248a.6161.6161 0 10-.6169-.616.6169.6169 0 00.617.616zm2.37-.4672a.7393.7393 0 10-.74-.7394.741.741 0 00.74.7394zm-.4688-1.9708a.6161.6161 0 10-.617-.616.6169.6169 0 00.617.616zm-1.9508.7386a.5417.5417 0 10-.544-.5417.5425.5425 0 00.544.5417zm-1.7779.2216a.4433.4433 0 10-.4448-.4433.4449.4449 0 00.4448.4433zm2.4452-6.5515a.8625.8625 0 10-.8649-.8625.8633.8633 0 00.865.8625zm2.2468-.0256a.7393.7393 0 10-.7409-.7385.7401.7401 0 00.741.7385zm-.42-2.61a.7393.7393 0 10-.741-.7394.741.741 0 00.741.7394zm-2.2468-.0008a.8625.8625 0 10-.865-.8618.8633.8633 0 00.865.8618zm-2.618.5913a.9858.9858 0 10-.9898-.985.9858.9858 0 00.9897.985zm.4192 2.6116a.9858.9858 0 10-.9874-.9858.9874.9874 0 00.9874.9858zM3.1861 9.093a1.1578 1.1578 0 10-1.161-1.1578 1.1594 1.1594 0 001.161 1.1578zm-1.8035 5.2465A1.3794 1.3794 0 100 12.9602a1.381 1.381 0 001.3826 1.3794zm2.9637-2.3644a1.1578 1.1578 0 10-1.1602-1.1578 1.1594 1.1594 0 001.1602 1.1578zm2.8653-1.4034a.9858.9858 0 10-.9882-.9858.9866.9866 0 00.9882.9858zm2.6172-.5921a.8625.8625 0 10-.8673-.8602.8625.8625 0 00.8673.8602zm2.2476.0008a.7393.7393 0 10-.741-.7393.7401.7401 0 00.741.7393zm.6913-2.4884a.6161.6161 0 10-.6177-.6153.6169.6169 0 00.6177.6153zm-.4192-2.6133a.6161.6161 0 10-.6185-.616.6169.6169 0 00.6185.616zm7.1612 11.4803a.6161.6161 0 10-.6178-.6153.6161.6161 0 00.6178.6153zM13.755 5.599a.5425.5425 0 10-.5433-.5416.5417.5417 0 00.5433.5416zm1.0378.8338a.4433.4433 0 10-.445-.4433.444.444 0 00.445.4433zm-.593 1.7739a.5425.5425 0 10-.5432-.5417.5425.5425 0 00.5433.5417zm-.2712 2.1675a.6161.6161 0 10-.6177-.616.6169.6169 0 00.6177.616zm.0248 4.6312a.6161.6161 0 10-.6177-.616.6169.6169 0 00.6177.616zm1.6787 1.1818a.5417.5417 0 10-.5433-.5417.5425.5425 0 00.5433.5417zm1.1602 1.281a.4433.4433 0 10-.444-.4433.444.444 0 00.444.4433zm1.309-.3472a.5417.5417 0 10-.5433-.5417.5417.5417 0 00.5433.5417zm-1.0586-1.6971a.6161.6161 0 10-.6177-.6153.6161.6161 0 00.6177.6153zm-1.7074-1.6507a.7393.7393 0 10-.7402-.7393.7401.7401 0 00.7402.7393zm5.5569 1.3802a.7393.7393 0 10-.741-.7393.741.741 0 00.741.7393zm-2.494-.9361a.7393.7393 0 10-.741-.7393.7401.7401 0 00.741.7393zm3.7286-.8378a.8625.8625 0 10-.8642-.8617.8633.8633 0 00.8642.8617zM16.5459 12a.8625.8625 0 10-.8633-.8625.8641.8641 0 00.8634.8625zm3.087.4185a.8625.8625 0 10-.8642-.8618.8633.8633 0 00.8642.8618zm3.383-1.4035a.9858.9858 0 10-.9874-.9857.9874.9874 0 00.9873.9857zm-2.4693-.961a.9858.9858 0 10-.9881-.9849.9866.9866 0 00.9881.985zm-3.0869-.4184a.9858.9858 0 10-.9874-.9857.9874.9874 0 00.9874.9857zm3.4822-2.4884a1.1578 1.1578 0 10-1.1602-1.1578 1.1594 1.1594 0 001.1602 1.1578zm-3.087-.4433a1.1578 1.1578 0 10-1.161-1.1578 1.1586 1.1586 0 001.161 1.1578zm1.1603 16.0355a1.3794 1.3794 0 10-1.3827-1.3778 1.3818 1.3818 0 001.3827 1.3778zm-1.5555-19.484a1.3794 1.3794 0 10-1.3834-1.3795 1.3818 1.3818 0 001.3834 1.3795z" }) + ] + } + ); +}); + +exports.default = SiIota; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIota.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIota.d.ts new file mode 100644 index 000000000..2a3a24611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIota.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#131F37"; +declare const SiIota: IconType; +export { SiIota as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIota.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIota.mjs new file mode 100644 index 000000000..7149d5965 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIota.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#131F37"; +const SiIota = React.forwardRef(function SiIota2({ title = "IOTA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.4459 18.8235a.7393.7393 0 10-.7417-.7393.7401.7401 0 00.7417.7393zm9.1863 2.218a1.1578 1.1578 0 10-1.1602-1.1578 1.1586 1.1586 0 001.1602 1.1578zm-4.3951.392a.9858.9858 0 10-.9882-.9849.9866.9866 0 00.9882.985zm2.494 2.07a1.1578 1.1578 0 10-1.161-1.1578 1.1586 1.1586 0 001.161 1.1578zm-4.5448-.3944a.9858.9858 0 10-.9873-.985.9866.9866 0 00.9873.985zm-1.7035-2.1676a.8625.8625 0 10-.8649-.8601.8633.8633 0 00.865.8601zm2.0492-1.6747a.8625.8625 0 10-.8634-.8657.8641.8641 0 00.8634.8657zm3.631-.296a.9858.9858 0 10-.9882-.985.9866.9866 0 00.9882.985zm-1.729-2.1428a.8625.8625 0 10-.8634-.8625.8641.8641 0 00.8633.8625zm-2.939.32a.7393.7393 0 10-.741-.7393.7401.7401 0 00.741.7394zm-2.5188-.32a.6161.6161 0 10-.6177-.616.6169.6169 0 00.6177.616zm-.0248-1.7003a.5417.5417 0 10-.5433-.5417.5425.5425 0 00.5433.5417zm2.0995.0248a.6161.6161 0 10-.6169-.616.6169.6169 0 00.617.616zm2.37-.4672a.7393.7393 0 10-.74-.7394.741.741 0 00.74.7394zm-.4688-1.9708a.6161.6161 0 10-.617-.616.6169.6169 0 00.617.616zm-1.9508.7386a.5417.5417 0 10-.544-.5417.5425.5425 0 00.544.5417zm-1.7779.2216a.4433.4433 0 10-.4448-.4433.4449.4449 0 00.4448.4433zm2.4452-6.5515a.8625.8625 0 10-.8649-.8625.8633.8633 0 00.865.8625zm2.2468-.0256a.7393.7393 0 10-.7409-.7385.7401.7401 0 00.741.7385zm-.42-2.61a.7393.7393 0 10-.741-.7394.741.741 0 00.741.7394zm-2.2468-.0008a.8625.8625 0 10-.865-.8618.8633.8633 0 00.865.8618zm-2.618.5913a.9858.9858 0 10-.9898-.985.9858.9858 0 00.9897.985zm.4192 2.6116a.9858.9858 0 10-.9874-.9858.9874.9874 0 00.9874.9858zM3.1861 9.093a1.1578 1.1578 0 10-1.161-1.1578 1.1594 1.1594 0 001.161 1.1578zm-1.8035 5.2465A1.3794 1.3794 0 100 12.9602a1.381 1.381 0 001.3826 1.3794zm2.9637-2.3644a1.1578 1.1578 0 10-1.1602-1.1578 1.1594 1.1594 0 001.1602 1.1578zm2.8653-1.4034a.9858.9858 0 10-.9882-.9858.9866.9866 0 00.9882.9858zm2.6172-.5921a.8625.8625 0 10-.8673-.8602.8625.8625 0 00.8673.8602zm2.2476.0008a.7393.7393 0 10-.741-.7393.7401.7401 0 00.741.7393zm.6913-2.4884a.6161.6161 0 10-.6177-.6153.6169.6169 0 00.6177.6153zm-.4192-2.6133a.6161.6161 0 10-.6185-.616.6169.6169 0 00.6185.616zm7.1612 11.4803a.6161.6161 0 10-.6178-.6153.6161.6161 0 00.6178.6153zM13.755 5.599a.5425.5425 0 10-.5433-.5416.5417.5417 0 00.5433.5416zm1.0378.8338a.4433.4433 0 10-.445-.4433.444.444 0 00.445.4433zm-.593 1.7739a.5425.5425 0 10-.5432-.5417.5425.5425 0 00.5433.5417zm-.2712 2.1675a.6161.6161 0 10-.6177-.616.6169.6169 0 00.6177.616zm.0248 4.6312a.6161.6161 0 10-.6177-.616.6169.6169 0 00.6177.616zm1.6787 1.1818a.5417.5417 0 10-.5433-.5417.5425.5425 0 00.5433.5417zm1.1602 1.281a.4433.4433 0 10-.444-.4433.444.444 0 00.444.4433zm1.309-.3472a.5417.5417 0 10-.5433-.5417.5417.5417 0 00.5433.5417zm-1.0586-1.6971a.6161.6161 0 10-.6177-.6153.6161.6161 0 00.6177.6153zm-1.7074-1.6507a.7393.7393 0 10-.7402-.7393.7401.7401 0 00.7402.7393zm5.5569 1.3802a.7393.7393 0 10-.741-.7393.741.741 0 00.741.7393zm-2.494-.9361a.7393.7393 0 10-.741-.7393.7401.7401 0 00.741.7393zm3.7286-.8378a.8625.8625 0 10-.8642-.8617.8633.8633 0 00.8642.8617zM16.5459 12a.8625.8625 0 10-.8633-.8625.8641.8641 0 00.8634.8625zm3.087.4185a.8625.8625 0 10-.8642-.8618.8633.8633 0 00.8642.8618zm3.383-1.4035a.9858.9858 0 10-.9874-.9857.9874.9874 0 00.9873.9857zm-2.4693-.961a.9858.9858 0 10-.9881-.9849.9866.9866 0 00.9881.985zm-3.0869-.4184a.9858.9858 0 10-.9874-.9857.9874.9874 0 00.9874.9857zm3.4822-2.4884a1.1578 1.1578 0 10-1.1602-1.1578 1.1594 1.1594 0 001.1602 1.1578zm-3.087-.4433a1.1578 1.1578 0 10-1.161-1.1578 1.1586 1.1586 0 001.161 1.1578zm1.1603 16.0355a1.3794 1.3794 0 10-1.3827-1.3778 1.3818 1.3818 0 001.3827 1.3778zm-1.5555-19.484a1.3794 1.3794 0 10-1.3834-1.3795 1.3818 1.3818 0 001.3834 1.3795z" }) + ] + } + ); +}); + +export { SiIota as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.cjs new file mode 100644 index 000000000..f9d074e36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#65C2CB"; +const SiIpfs = React__namespace.forwardRef(function SiIpfs2({ title = "IPFS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L1.608 6v12L12 24l10.392-6V6zm-1.073 1.445h.001a1.8 1.8 0 002.138 0l7.534 4.35a1.794 1.794 0 000 .403l-7.535 4.35a1.8 1.8 0 00-2.137 0l-7.536-4.35a1.795 1.795 0 000-.402zM21.324 7.4c.109.08.226.147.349.201v8.7a1.8 1.8 0 00-1.069 1.852l-7.535 4.35a1.8 1.8 0 00-.349-.2l-.009-8.653a1.8 1.8 0 001.07-1.851zm-18.648.048l7.535 4.35a1.8 1.8 0 001.069 1.852v8.7c-.124.054-.24.122-.349.202l-7.535-4.35a1.8 1.8 0 00-1.069-1.852v-8.7c.124-.054.24-.122.35-.202z" }) + ] + } + ); +}); + +exports.default = SiIpfs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.d.ts new file mode 100644 index 000000000..39dc85d95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#65C2CB"; +declare const SiIpfs: IconType; +export { SiIpfs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.mjs new file mode 100644 index 000000000..89e5281c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIpfs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#65C2CB"; +const SiIpfs = React.forwardRef(function SiIpfs2({ title = "IPFS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L1.608 6v12L12 24l10.392-6V6zm-1.073 1.445h.001a1.8 1.8 0 002.138 0l7.534 4.35a1.794 1.794 0 000 .403l-7.535 4.35a1.8 1.8 0 00-2.137 0l-7.536-4.35a1.795 1.795 0 000-.402zM21.324 7.4c.109.08.226.147.349.201v8.7a1.8 1.8 0 00-1.069 1.852l-7.535 4.35a1.8 1.8 0 00-.349-.2l-.009-8.653a1.8 1.8 0 001.07-1.851zm-18.648.048l7.535 4.35a1.8 1.8 0 001.069 1.852v8.7c-.124.054-.24.122-.349.202l-7.535-4.35a1.8 1.8 0 00-1.069-1.852v-8.7c.124-.054.24-.122.35-.202z" }) + ] + } + ); +}); + +export { SiIpfs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIris.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIris.cjs new file mode 100644 index 000000000..8a604bff5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIris.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#25313C"; +const SiIris = React__namespace.forwardRef(function SiIris2({ title = "IRIS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.691 11.281c-1.26-.322-1.573-.479-1.573-.957v-.021c0-.354.323-.635.937-.635.578 0 1.174.239 1.779.639l.074.05c.026.01.055.002.074-.018l.775-1.121a.061.061 0 0 0-.009-.068c-.023-.015-.044-.034-.068-.05l-.007-.005c-.716-.541-1.584-.843-2.592-.843-1.492 0-2.552.874-2.552 2.196v.021c0 1.448.949 1.854 2.416 2.228 1.22.313 1.468.521 1.468.927v.021c0 .427-.396.687-1.052.687-.797 0-1.461-.315-2.092-.817l-.043-.035a.064.064 0 0 0-.075.012l-.881 1.049a.069.069 0 0 0 0 .073l.068.059a4.645 4.645 0 0 0 2.986 1.075c1.572 0 2.676-.813 2.676-2.259v-.018c.005-1.273-.828-1.805-2.309-2.19ZM5.765 8.42a.069.069 0 0 1 .068-.065h1.475a.068.068 0 0 1 .064.068v7.157a.064.064 0 0 1-.064.064H5.829a.068.068 0 0 1-.067-.064l.003-7.16ZM0 13.339c0-.035.029-.063.064-.063h1.475a.067.067 0 0 1 .065.063v2.241a.068.068 0 0 1-.065.064H.064A.064.064 0 0 1 0 15.58v-2.241ZM15.836 8.42c0-.035.029-.064.064-.064h1.476c.034 0 .063.029.063.064v7.16a.064.064 0 0 1-.063.064H15.9a.064.064 0 0 1-.064-.064V8.42Zm-.887 7.172-1.744-2.551c.926-.344 1.559-1.084 1.559-2.259v-.022c0-.688-.218-1.261-.624-1.667-.478-.477-1.193-.737-2.123-.737H8.749a.064.064 0 0 0-.063.064v7.16c0 .035.028.064.063.064h1.476a.064.064 0 0 0 .064-.064v-2.268h1.26l1.559 2.332h1.81c.038 0 .051-.024.031-.052ZM2.847 10.966a.068.068 0 0 1 .068-.063h1.47a.068.068 0 0 1 .064.063v4.61a.064.064 0 0 1-.064.063H2.909a.07.07 0 0 1-.068-.063l.006-4.61Zm7.448.93.008-2.093h1.578c.782 0 1.26.354 1.26 1.041v.021c0 .614-.447 1.031-1.228 1.031h-1.618Z" }) + ] + } + ); +}); + +exports.default = SiIris; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIris.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIris.d.ts new file mode 100644 index 000000000..8938d781d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIris.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#25313C"; +declare const SiIris: IconType; +export { SiIris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIris.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIris.mjs new file mode 100644 index 000000000..6661c4909 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIris.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#25313C"; +const SiIris = React.forwardRef(function SiIris2({ title = "IRIS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.691 11.281c-1.26-.322-1.573-.479-1.573-.957v-.021c0-.354.323-.635.937-.635.578 0 1.174.239 1.779.639l.074.05c.026.01.055.002.074-.018l.775-1.121a.061.061 0 0 0-.009-.068c-.023-.015-.044-.034-.068-.05l-.007-.005c-.716-.541-1.584-.843-2.592-.843-1.492 0-2.552.874-2.552 2.196v.021c0 1.448.949 1.854 2.416 2.228 1.22.313 1.468.521 1.468.927v.021c0 .427-.396.687-1.052.687-.797 0-1.461-.315-2.092-.817l-.043-.035a.064.064 0 0 0-.075.012l-.881 1.049a.069.069 0 0 0 0 .073l.068.059a4.645 4.645 0 0 0 2.986 1.075c1.572 0 2.676-.813 2.676-2.259v-.018c.005-1.273-.828-1.805-2.309-2.19ZM5.765 8.42a.069.069 0 0 1 .068-.065h1.475a.068.068 0 0 1 .064.068v7.157a.064.064 0 0 1-.064.064H5.829a.068.068 0 0 1-.067-.064l.003-7.16ZM0 13.339c0-.035.029-.063.064-.063h1.475a.067.067 0 0 1 .065.063v2.241a.068.068 0 0 1-.065.064H.064A.064.064 0 0 1 0 15.58v-2.241ZM15.836 8.42c0-.035.029-.064.064-.064h1.476c.034 0 .063.029.063.064v7.16a.064.064 0 0 1-.063.064H15.9a.064.064 0 0 1-.064-.064V8.42Zm-.887 7.172-1.744-2.551c.926-.344 1.559-1.084 1.559-2.259v-.022c0-.688-.218-1.261-.624-1.667-.478-.477-1.193-.737-2.123-.737H8.749a.064.064 0 0 0-.063.064v7.16c0 .035.028.064.063.064h1.476a.064.064 0 0 0 .064-.064v-2.268h1.26l1.559 2.332h1.81c.038 0 .051-.024.031-.052ZM2.847 10.966a.068.068 0 0 1 .068-.063h1.47a.068.068 0 0 1 .064.063v4.61a.064.064 0 0 1-.064.063H2.909a.07.07 0 0 1-.068-.063l.006-4.61Zm7.448.93.008-2.093h1.578c.782 0 1.26.354 1.26 1.041v.021c0 .614-.447 1.031-1.228 1.031h-1.618Z" }) + ] + } + ); +}); + +export { SiIris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.cjs new file mode 100644 index 000000000..82f584ebe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6CB86A"; +const SiIrobot = React__namespace.forwardRef(function SiIrobot2({ title = "iRobot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.848 8.166c.75-3.536-1.287-7.264-5.747-7.264h-6.955l-1.152 5.4h5.246c1.076 0 1.748.884 1.517 1.941-.23 1.076-1.267 1.903-2.344 1.903H9.11l7.111 13.143h7.437l-4.806-8.82c1.288-.692 4.21-2.632 4.997-6.303zM1.23 17.505 0 23.31h6.342l2.767-13.145c-3.863.135-6.9 2.71-7.88 7.34zM5.4 6.648a2.985 2.985 0 0 0 2.997-2.98A2.986 2.986 0 0 0 5.4.69a2.986 2.986 0 0 0-2.998 2.98c0 1.633 1.346 2.978 2.998 2.978z" }) + ] + } + ); +}); + +exports.default = SiIrobot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.d.ts new file mode 100644 index 000000000..231ec1c9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6CB86A"; +declare const SiIrobot: IconType; +export { SiIrobot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.mjs new file mode 100644 index 000000000..59d6b8daf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIrobot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6CB86A"; +const SiIrobot = React.forwardRef(function SiIrobot2({ title = "iRobot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.848 8.166c.75-3.536-1.287-7.264-5.747-7.264h-6.955l-1.152 5.4h5.246c1.076 0 1.748.884 1.517 1.941-.23 1.076-1.267 1.903-2.344 1.903H9.11l7.111 13.143h7.437l-4.806-8.82c1.288-.692 4.21-2.632 4.997-6.303zM1.23 17.505 0 23.31h6.342l2.767-13.145c-3.863.135-6.9 2.71-7.88 7.34zM5.4 6.648a2.985 2.985 0 0 0 2.997-2.98A2.986 2.986 0 0 0 5.4.69a2.986 2.986 0 0 0-2.998 2.98c0 1.633 1.346 2.978 2.998 2.978z" }) + ] + } + ); +}); + +export { SiIrobot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.cjs new file mode 100644 index 000000000..d2c8a7169 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#468145"; +const SiIsc2 = React__namespace.forwardRef(function SiIsc22({ title = "ISC2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.153 8.677c.876 0 1.592.333 2.196.839.014.012.063.051.077.064.059.049.071.052.142-.022l.068-.072.518-.566c.055-.065.046-.07.006-.112l-.071-.069c-.777-.69-1.776-1.183-2.936-1.183-2.454 0-4.366 1.972-4.366 4.45s1.912 4.438 4.366 4.438c1.16 0 2.161-.523 2.939-1.226.086-.074.118-.101.032-.187l-.528-.577c-.086-.087-.109-.066-.195.008-.604.505-1.372.861-2.248.861-1.763 0-3.194-1.431-3.194-3.317 0-1.898 1.431-3.329 3.194-3.329ZM4.1 9.824c0-.752.617-1.208 1.443-1.208.716 0 1.246.296 1.814.826.086.086.114.134.2.035l.512-.553c.087-.099.04-.123-.046-.209a3.317 3.317 0 0 0-2.492-1.159c-1.419 0-2.541.924-2.541 2.256 0 2.786 4.292 2.207 4.292 4.142 0 .789-.69 1.406-1.714 1.406-.985 0-1.504-.454-2.047-.971-.086-.087-.105-.107-.179-.033l-.585.553c-.087.074-.078.08-.017.179.561.756 1.607 1.344 2.828 1.344 1.53 0 2.849-1.011 2.849-2.429 0-2.934-4.317-2.28-4.317-4.179ZM1.147 7.639v7.616a.06.06 0 0 1-.019.044L.044 16.346c-.016.016-.044.004-.044-.019V7.639c0-.014.012-.026.026-.026h1.095c.014 0 .026.012.026.026Zm20.056-.066c-1.11 0-1.99.49-2.533 1.168a1.213 1.213 0 0 0-.057.081c-.04.061-.029.066.027.128.14.156.576.649.576.649.018.019.035.02.051.006l.075-.071c.346-.358.936-.95 1.849-.95 1.024 0 1.64.642 1.64 1.578 0 1.33-.762 1.962-2.459 3.389-.494.415-1.405 1.215-1.633 1.414a.158.158 0 0 0-.052.117v1.194c0 .053.063.082.103.047.468-.411 2.405-2.107 3.034-2.641 1.629-1.384 2.068-2.324 2.068-3.532 0-1.467-1.06-2.577-2.689-2.577Zm2.734 7.792H21.2a.064.064 0 0 0-.064.064v.81c0 .035.029.063.064.063h2.737a.063.063 0 0 0 .063-.063v-.81a.064.064 0 0 0-.063-.064Z" }) + ] + } + ); +}); + +exports.default = SiIsc2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.d.ts new file mode 100644 index 000000000..6b865ef37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#468145"; +declare const SiIsc2: IconType; +export { SiIsc2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.mjs new file mode 100644 index 000000000..2cd73470f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIsc2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#468145"; +const SiIsc2 = React.forwardRef(function SiIsc22({ title = "ISC2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.153 8.677c.876 0 1.592.333 2.196.839.014.012.063.051.077.064.059.049.071.052.142-.022l.068-.072.518-.566c.055-.065.046-.07.006-.112l-.071-.069c-.777-.69-1.776-1.183-2.936-1.183-2.454 0-4.366 1.972-4.366 4.45s1.912 4.438 4.366 4.438c1.16 0 2.161-.523 2.939-1.226.086-.074.118-.101.032-.187l-.528-.577c-.086-.087-.109-.066-.195.008-.604.505-1.372.861-2.248.861-1.763 0-3.194-1.431-3.194-3.317 0-1.898 1.431-3.329 3.194-3.329ZM4.1 9.824c0-.752.617-1.208 1.443-1.208.716 0 1.246.296 1.814.826.086.086.114.134.2.035l.512-.553c.087-.099.04-.123-.046-.209a3.317 3.317 0 0 0-2.492-1.159c-1.419 0-2.541.924-2.541 2.256 0 2.786 4.292 2.207 4.292 4.142 0 .789-.69 1.406-1.714 1.406-.985 0-1.504-.454-2.047-.971-.086-.087-.105-.107-.179-.033l-.585.553c-.087.074-.078.08-.017.179.561.756 1.607 1.344 2.828 1.344 1.53 0 2.849-1.011 2.849-2.429 0-2.934-4.317-2.28-4.317-4.179ZM1.147 7.639v7.616a.06.06 0 0 1-.019.044L.044 16.346c-.016.016-.044.004-.044-.019V7.639c0-.014.012-.026.026-.026h1.095c.014 0 .026.012.026.026Zm20.056-.066c-1.11 0-1.99.49-2.533 1.168a1.213 1.213 0 0 0-.057.081c-.04.061-.029.066.027.128.14.156.576.649.576.649.018.019.035.02.051.006l.075-.071c.346-.358.936-.95 1.849-.95 1.024 0 1.64.642 1.64 1.578 0 1.33-.762 1.962-2.459 3.389-.494.415-1.405 1.215-1.633 1.414a.158.158 0 0 0-.052.117v1.194c0 .053.063.082.103.047.468-.411 2.405-2.107 3.034-2.641 1.629-1.384 2.068-2.324 2.068-3.532 0-1.467-1.06-2.577-2.689-2.577Zm2.734 7.792H21.2a.064.064 0 0 0-.064.064v.81c0 .035.029.063.064.063h2.737a.063.063 0 0 0 .063-.063v-.81a.064.064 0 0 0-.063-.064Z" }) + ] + } + ); +}); + +export { SiIsc2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.cjs new file mode 100644 index 000000000..6e017e924 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F58220"; +const SiIsro = React__namespace.forwardRef(function SiIsro2({ title = "ISRO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5293.5067 5.9449 13.856l4.7616-5.7348 1.8261 15.372ZM5.4597 3.8449l-.528 1.085 1.8526.4203.5185-1.0755Zm2.243.528L7.178 5.4548l1.8526.4202.5146-1.0755Zm6.0003 1.3772-.518 1.0822 1.8499.423.5213-1.0754Zm2.2435.528-.5151 1.079 1.8493.423.5213-1.0755Zm-7.0452 6.6765a2.1418 2.1418 0 0 0-.1954.0096l-.2395.58c.6854-.1159.9826.077 1.2392.7908H.0034L0 14.8366h2.3446v.2819s-.928-.3607-1.7216.3507c-.6196.715-.1017 1.4138-.1017 1.4138s.518-.289 1.3246-.1514c.7507.1346.7117.492.7117.492s-.1015.4428-.705.3576c-.6065-.0918-.5608-.6982-.5608-.6982l-.6688.4423s.2584.4352.8315.5756l.4902.7591h.7637l-.5773-.7439a2.1576 2.1576 0 0 0 .1972-.043c1.459-.3901.948-1.4992-.1345-1.7876-.7507-.1967-1.5708.1706-1.5708.1706s.1114-.9248 1.4494-.705c.7639.1346 1.0297.436 1.0297.436v-1.1505h1.5047l-.6292.2949s.3312.364.436.8297c.1019.4886-.1082.584-.2462.5937-.0752-.0656-.4948-.6462-.4948-.6462l-.2988.2559 1.0528 1.6363h.7281s-.6624-.8261-.7738-.9642c.1672-.0132.4007-.0682.5592-.2722.108.056.2399.1018.3948.1146.4754.0359.7608-.1932.7608-.1932v1.315h.7609v-2.9643H8.502l-.6287.2949s.3312.364.436.8297c.0984.4886-.1113.584-.2524.5937-.0687-.0656-.4954-.6462-.4954-.6462l-.292.2559 1.0399 1.6329h.7342s-.6587-.8227-.7636-.9608c.2425-.0197.6324-.1313.7111-.692.0966-.7273-.2259-1.171-.3462-1.308h.9009v2.9608h.7636v-2.9609h.3966v-.5016h-.5536c-.301-1.0756-.6648-1.3793-1.2511-1.3804Zm4.992.331c-.2213 0-.4129.177-.4129.423 0 .2149.1814.4163.413.4163.2647 0 .4298-.2225.4298-.4163 0-.223-.1729-.423-.4299-.423zm-.7704 1.059v.4954c.9849.0002 1.9698-.0002 2.9547-.0006-.41.0953-.7541.2821-1.0263.561-.1377.1441-.2695.3543-.3875.6427-.0525.115-.0982.2396-.144.3807.8494.0031 1.3867.046 1.6165.1277.1604.0655.3082.1476.4558.2524.1836.1346.2785.2688.3017.4033h-1.7313l-.5902.5937h2.0294c.5935-.4558.8823-.8231.8823-1.115 0-.1346-.0586-.2523-.1604-.3638-.2329-.2294-.548-.384-.9382-.453-.2067-.0328-.5704-.0553-1.0817-.0553a7.5038 7.5038 0 0 0 .2164-.335c.1014-.131.2067-.1931.305-.1931.2722 0 .7084.1671 1.315.505l.5964-.6a5.6666 5.6666 0 0 0-.6818-.3513L24 14.84v-.4954zm-7.0272.492v.8654s.0034.2297-.4558.4626c-.2002.1038-.403.1448-.5761.157a1.078 1.078 0 0 0 .0384-.1768c.0941-.7279-.232-1.1714-.353-1.3082zm7.4277.4067v2.5508h.7309v-2.5508zm4.5509.0028v2.5514h.7348v-1.738c.1967-.0852.3902-.1249.5869-.1249.2067 0 .364.0497.479.1576.1473.1574.2125.3968.1898.7315l.6134-.6032c.0197-.315-.0494-.5581-.2163-.7185-.128-.125-.2889-.1966-.4886-.1966-.1936 0-.4068.0652-.6428.1932-.2067.1049-.3806.2294-.5214.3801v-.6326zm2.9908.0006v1.8984s.0131.3734.249.5473c.174.1146.4068.105.4068.105h1.9837v-1.8656c0-.3325-.1855-.6851-.5411-.6851zm1.7894.6642c.1882.0023.1678.0486.1678.3553v.849l-1.141-.0034s-.1081.0137-.1378-.026c-.0359-.0459-.0198-.0983-.0198-.3474v-.8263c.377.0002 1.1308-.0011 1.1308-.0011z" }) + ] + } + ); +}); + +exports.default = SiIsro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.d.ts new file mode 100644 index 000000000..66dc0001f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F58220"; +declare const SiIsro: IconType; +export { SiIsro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.mjs new file mode 100644 index 000000000..fef50c567 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIsro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F58220"; +const SiIsro = React.forwardRef(function SiIsro2({ title = "ISRO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.5293.5067 5.9449 13.856l4.7616-5.7348 1.8261 15.372ZM5.4597 3.8449l-.528 1.085 1.8526.4203.5185-1.0755Zm2.243.528L7.178 5.4548l1.8526.4202.5146-1.0755Zm6.0003 1.3772-.518 1.0822 1.8499.423.5213-1.0754Zm2.2435.528-.5151 1.079 1.8493.423.5213-1.0755Zm-7.0452 6.6765a2.1418 2.1418 0 0 0-.1954.0096l-.2395.58c.6854-.1159.9826.077 1.2392.7908H.0034L0 14.8366h2.3446v.2819s-.928-.3607-1.7216.3507c-.6196.715-.1017 1.4138-.1017 1.4138s.518-.289 1.3246-.1514c.7507.1346.7117.492.7117.492s-.1015.4428-.705.3576c-.6065-.0918-.5608-.6982-.5608-.6982l-.6688.4423s.2584.4352.8315.5756l.4902.7591h.7637l-.5773-.7439a2.1576 2.1576 0 0 0 .1972-.043c1.459-.3901.948-1.4992-.1345-1.7876-.7507-.1967-1.5708.1706-1.5708.1706s.1114-.9248 1.4494-.705c.7639.1346 1.0297.436 1.0297.436v-1.1505h1.5047l-.6292.2949s.3312.364.436.8297c.1019.4886-.1082.584-.2462.5937-.0752-.0656-.4948-.6462-.4948-.6462l-.2988.2559 1.0528 1.6363h.7281s-.6624-.8261-.7738-.9642c.1672-.0132.4007-.0682.5592-.2722.108.056.2399.1018.3948.1146.4754.0359.7608-.1932.7608-.1932v1.315h.7609v-2.9643H8.502l-.6287.2949s.3312.364.436.8297c.0984.4886-.1113.584-.2524.5937-.0687-.0656-.4954-.6462-.4954-.6462l-.292.2559 1.0399 1.6329h.7342s-.6587-.8227-.7636-.9608c.2425-.0197.6324-.1313.7111-.692.0966-.7273-.2259-1.171-.3462-1.308h.9009v2.9608h.7636v-2.9609h.3966v-.5016h-.5536c-.301-1.0756-.6648-1.3793-1.2511-1.3804Zm4.992.331c-.2213 0-.4129.177-.4129.423 0 .2149.1814.4163.413.4163.2647 0 .4298-.2225.4298-.4163 0-.223-.1729-.423-.4299-.423zm-.7704 1.059v.4954c.9849.0002 1.9698-.0002 2.9547-.0006-.41.0953-.7541.2821-1.0263.561-.1377.1441-.2695.3543-.3875.6427-.0525.115-.0982.2396-.144.3807.8494.0031 1.3867.046 1.6165.1277.1604.0655.3082.1476.4558.2524.1836.1346.2785.2688.3017.4033h-1.7313l-.5902.5937h2.0294c.5935-.4558.8823-.8231.8823-1.115 0-.1346-.0586-.2523-.1604-.3638-.2329-.2294-.548-.384-.9382-.453-.2067-.0328-.5704-.0553-1.0817-.0553a7.5038 7.5038 0 0 0 .2164-.335c.1014-.131.2067-.1931.305-.1931.2722 0 .7084.1671 1.315.505l.5964-.6a5.6666 5.6666 0 0 0-.6818-.3513L24 14.84v-.4954zm-7.0272.492v.8654s.0034.2297-.4558.4626c-.2002.1038-.403.1448-.5761.157a1.078 1.078 0 0 0 .0384-.1768c.0941-.7279-.232-1.1714-.353-1.3082zm7.4277.4067v2.5508h.7309v-2.5508zm4.5509.0028v2.5514h.7348v-1.738c.1967-.0852.3902-.1249.5869-.1249.2067 0 .364.0497.479.1576.1473.1574.2125.3968.1898.7315l.6134-.6032c.0197-.315-.0494-.5581-.2163-.7185-.128-.125-.2889-.1966-.4886-.1966-.1936 0-.4068.0652-.6428.1932-.2067.1049-.3806.2294-.5214.3801v-.6326zm2.9908.0006v1.8984s.0131.3734.249.5473c.174.1146.4068.105.4068.105h1.9837v-1.8656c0-.3325-.1855-.6851-.5411-.6851zm1.7894.6642c.1882.0023.1678.0486.1678.3553v.849l-1.141-.0034s-.1081.0137-.1378-.026c-.0359-.0459-.0198-.0983-.0198-.3474v-.8263c.377.0002 1.1308-.0011 1.1308-.0011z" }) + ] + } + ); +}); + +export { SiIsro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.cjs new file mode 100644 index 000000000..4f8ad1b83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F36D5D"; +const SiIssuu = React__namespace.forwardRef(function SiIssuu2({ title = "Issuu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.996 0A.998.998 0 0 0 0 .996V12c0 6.628 5.372 12 12 12s12-5.372 12-12S18.628 0 12 0H.996zm11.17 3.582a8.333 8.333 0 0 1 8.254 8.41 8.333 8.333 0 0 1-8.41 8.252c-4.597-.045-8.296-3.81-8.254-8.41.045-4.6 3.81-8.296 8.41-8.252zm-.031 2.27a6.107 6.107 0 0 0-6.155 6.046 6.109 6.109 0 0 0 6.05 6.163 6.099 6.099 0 0 0 6.154-6.047 6.107 6.107 0 0 0-6.041-6.162h-.008zm-.02 3.013a3.098 3.098 0 0 1 3.063 3.123 3.088 3.088 0 0 1-3.121 3.06l.002-.001a3.091 3.091 0 0 1 .056-6.182z" }) + ] + } + ); +}); + +exports.default = SiIssuu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.d.ts new file mode 100644 index 000000000..ae99485cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F36D5D"; +declare const SiIssuu: IconType; +export { SiIssuu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.mjs new file mode 100644 index 000000000..237e33a98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIssuu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F36D5D"; +const SiIssuu = React.forwardRef(function SiIssuu2({ title = "Issuu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.996 0A.998.998 0 0 0 0 .996V12c0 6.628 5.372 12 12 12s12-5.372 12-12S18.628 0 12 0H.996zm11.17 3.582a8.333 8.333 0 0 1 8.254 8.41 8.333 8.333 0 0 1-8.41 8.252c-4.597-.045-8.296-3.81-8.254-8.41.045-4.6 3.81-8.296 8.41-8.252zm-.031 2.27a6.107 6.107 0 0 0-6.155 6.046 6.109 6.109 0 0 0 6.05 6.163 6.099 6.099 0 0 0 6.154-6.047 6.107 6.107 0 0 0-6.041-6.162h-.008zm-.02 3.013a3.098 3.098 0 0 1 3.063 3.123 3.088 3.088 0 0 1-3.121 3.06l.002-.001a3.091 3.091 0 0 1 .056-6.182z" }) + ] + } + ); +}); + +export { SiIssuu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.cjs new file mode 100644 index 000000000..af0cd767d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#466BB0"; +const SiIstio = React__namespace.forwardRef(function SiIstio2({ title = "Istio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 21 20 21 10 24zM4 20 10 19 10 8zM11 19 20 20 11 0z" }) + ] + } + ); +}); + +exports.default = SiIstio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.d.ts new file mode 100644 index 000000000..517268ef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#466BB0"; +declare const SiIstio: IconType; +export { SiIstio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.mjs new file mode 100644 index 000000000..83d4c8300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIstio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#466BB0"; +const SiIstio = React.forwardRef(function SiIstio2({ title = "Istio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4 21 20 21 10 24zM4 20 10 19 10 8zM11 19 20 20 11 0z" }) + ] + } + ); +}); + +export { SiIstio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.cjs new file mode 100644 index 000000000..cc923133d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA5C5C"; +const SiItchdotio = React__namespace.forwardRef(function SiItchdotio2({ title = "Itch.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.13 1.338C2.08 1.96.02 4.328 0 4.95v1.03c0 1.303 1.22 2.45 2.325 2.45 1.33 0 2.436-1.102 2.436-2.41 0 1.308 1.07 2.41 2.4 2.41 1.328 0 2.362-1.102 2.362-2.41 0 1.308 1.137 2.41 2.466 2.41h.024c1.33 0 2.466-1.102 2.466-2.41 0 1.308 1.034 2.41 2.363 2.41 1.33 0 2.4-1.102 2.4-2.41 0 1.308 1.106 2.41 2.435 2.41C22.78 8.43 24 7.282 24 5.98V4.95c-.02-.62-2.082-2.99-3.13-3.612-3.253-.114-5.508-.134-8.87-.133-3.362 0-7.945.053-8.87.133zm6.376 6.477a2.74 2.74 0 0 1-.468.602c-.5.49-1.19.795-1.947.795a2.786 2.786 0 0 1-1.95-.795c-.182-.178-.32-.37-.446-.59-.127.222-.303.412-.486.59a2.788 2.788 0 0 1-1.95.795c-.092 0-.187-.025-.264-.052-.107 1.113-.152 2.176-.168 2.95v.005l-.006 1.167c.02 2.334-.23 7.564 1.03 8.85 1.952.454 5.545.662 9.15.663 3.605 0 7.198-.21 9.15-.664 1.26-1.284 1.01-6.514 1.03-8.848l-.006-1.167v-.004c-.016-.775-.06-1.838-.168-2.95-.077.026-.172.052-.263.052a2.788 2.788 0 0 1-1.95-.795c-.184-.178-.36-.368-.486-.59-.127.22-.265.412-.447.59a2.786 2.786 0 0 1-1.95.794c-.76 0-1.446-.303-1.948-.793a2.74 2.74 0 0 1-.468-.602 2.738 2.738 0 0 1-.463.602 2.787 2.787 0 0 1-1.95.794h-.16a2.787 2.787 0 0 1-1.95-.793 2.738 2.738 0 0 1-.464-.602zm-2.004 2.59v.002c.795.002 1.5 0 2.373.953.687-.072 1.406-.108 2.125-.107.72 0 1.438.035 2.125.107.873-.953 1.578-.95 2.372-.953.376 0 1.876 0 2.92 2.934l1.123 4.028c.832 2.995-.266 3.068-1.636 3.07-2.03-.075-3.156-1.55-3.156-3.025-1.124.184-2.436.276-3.748.277-1.312 0-2.624-.093-3.748-.277 0 1.475-1.125 2.95-3.156 3.026-1.37-.004-2.468-.077-1.636-3.072l1.122-4.027c1.045-2.934 2.545-2.934 2.92-2.934zM12 12.714c-.002.002-2.14 1.964-2.523 2.662l1.4-.056v1.22c0 .056.56.033 1.123.007.562.026 1.124.05 1.124-.008v-1.22l1.4.055C14.138 14.677 12 12.713 12 12.713z" }) + ] + } + ); +}); + +exports.default = SiItchdotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.d.ts new file mode 100644 index 000000000..7c510287c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA5C5C"; +declare const SiItchdotio: IconType; +export { SiItchdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.mjs new file mode 100644 index 000000000..0bdb8d3eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItchdotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA5C5C"; +const SiItchdotio = React.forwardRef(function SiItchdotio2({ title = "Itch.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.13 1.338C2.08 1.96.02 4.328 0 4.95v1.03c0 1.303 1.22 2.45 2.325 2.45 1.33 0 2.436-1.102 2.436-2.41 0 1.308 1.07 2.41 2.4 2.41 1.328 0 2.362-1.102 2.362-2.41 0 1.308 1.137 2.41 2.466 2.41h.024c1.33 0 2.466-1.102 2.466-2.41 0 1.308 1.034 2.41 2.363 2.41 1.33 0 2.4-1.102 2.4-2.41 0 1.308 1.106 2.41 2.435 2.41C22.78 8.43 24 7.282 24 5.98V4.95c-.02-.62-2.082-2.99-3.13-3.612-3.253-.114-5.508-.134-8.87-.133-3.362 0-7.945.053-8.87.133zm6.376 6.477a2.74 2.74 0 0 1-.468.602c-.5.49-1.19.795-1.947.795a2.786 2.786 0 0 1-1.95-.795c-.182-.178-.32-.37-.446-.59-.127.222-.303.412-.486.59a2.788 2.788 0 0 1-1.95.795c-.092 0-.187-.025-.264-.052-.107 1.113-.152 2.176-.168 2.95v.005l-.006 1.167c.02 2.334-.23 7.564 1.03 8.85 1.952.454 5.545.662 9.15.663 3.605 0 7.198-.21 9.15-.664 1.26-1.284 1.01-6.514 1.03-8.848l-.006-1.167v-.004c-.016-.775-.06-1.838-.168-2.95-.077.026-.172.052-.263.052a2.788 2.788 0 0 1-1.95-.795c-.184-.178-.36-.368-.486-.59-.127.22-.265.412-.447.59a2.786 2.786 0 0 1-1.95.794c-.76 0-1.446-.303-1.948-.793a2.74 2.74 0 0 1-.468-.602 2.738 2.738 0 0 1-.463.602 2.787 2.787 0 0 1-1.95.794h-.16a2.787 2.787 0 0 1-1.95-.793 2.738 2.738 0 0 1-.464-.602zm-2.004 2.59v.002c.795.002 1.5 0 2.373.953.687-.072 1.406-.108 2.125-.107.72 0 1.438.035 2.125.107.873-.953 1.578-.95 2.372-.953.376 0 1.876 0 2.92 2.934l1.123 4.028c.832 2.995-.266 3.068-1.636 3.07-2.03-.075-3.156-1.55-3.156-3.025-1.124.184-2.436.276-3.748.277-1.312 0-2.624-.093-3.748-.277 0 1.475-1.125 2.95-3.156 3.026-1.37-.004-2.468-.077-1.636-3.072l1.122-4.027c1.045-2.934 2.545-2.934 2.92-2.934zM12 12.714c-.002.002-2.14 1.964-2.523 2.662l1.4-.056v1.22c0 .056.56.033 1.123.007.562.026 1.124.05 1.124-.008v-1.22l1.4.055C14.138 14.677 12 12.713 12 12.713z" }) + ] + } + ); +}); + +export { SiItchdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.cjs new file mode 100644 index 000000000..9f9c24683 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiIterm2 = React__namespace.forwardRef(function SiIterm22({ title = "iTerm2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 5.359v13.282A5.36 5.36 0 0 1 18.641 24H5.359A5.36 5.36 0 0 1 0 18.641V5.359A5.36 5.36 0 0 1 5.359 0h13.282A5.36 5.36 0 0 1 24 5.359m-.932-.233A4.196 4.196 0 0 0 18.874.932H5.126A4.196 4.196 0 0 0 .932 5.126v13.748a4.196 4.196 0 0 0 4.194 4.194h13.748a4.196 4.196 0 0 0 4.194-4.194zm-.816.233v13.282a3.613 3.613 0 0 1-3.611 3.611H5.359a3.613 3.613 0 0 1-3.611-3.611V5.359a3.613 3.613 0 0 1 3.611-3.611h13.282a3.613 3.613 0 0 1 3.611 3.611M8.854 4.194v6.495h.962V4.194zM5.483 9.493v1.085h.597V9.48q.283-.037.508-.133.373-.165.575-.448.208-.284.208-.649a.9.9 0 0 0-.171-.568 1.4 1.4 0 0 0-.426-.388 3 3 0 0 0-.544-.261 32 32 0 0 0-.545-.209 1.8 1.8 0 0 1-.426-.216q-.164-.12-.164-.284 0-.223.179-.351.18-.126.485-.127.344 0 .575.105.239.105.5.298l.433-.5a2.3 2.3 0 0 0-.605-.433 1.6 1.6 0 0 0-.582-.159v-.968h-.597v.978a2 2 0 0 0-.477.127 1.2 1.2 0 0 0-.545.411q-.194.268-.194.634 0 .335.164.56.164.224.418.38a4 4 0 0 0 .552.262q.291.104.545.209.261.104.425.238a.39.39 0 0 1 .165.321q0 .225-.187.359-.18.134-.537.134-.381 0-.717-.134a4.4 4.4 0 0 1-.649-.351l-.388.589q.209.173.477.306.276.135.575.217.191.046.373.064" }) + ] + } + ); +}); + +exports.default = SiIterm2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.d.ts new file mode 100644 index 000000000..7a93454b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiIterm2: IconType; +export { SiIterm2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.mjs new file mode 100644 index 000000000..7764a7e52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIterm2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiIterm2 = React.forwardRef(function SiIterm22({ title = "iTerm2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 5.359v13.282A5.36 5.36 0 0 1 18.641 24H5.359A5.36 5.36 0 0 1 0 18.641V5.359A5.36 5.36 0 0 1 5.359 0h13.282A5.36 5.36 0 0 1 24 5.359m-.932-.233A4.196 4.196 0 0 0 18.874.932H5.126A4.196 4.196 0 0 0 .932 5.126v13.748a4.196 4.196 0 0 0 4.194 4.194h13.748a4.196 4.196 0 0 0 4.194-4.194zm-.816.233v13.282a3.613 3.613 0 0 1-3.611 3.611H5.359a3.613 3.613 0 0 1-3.611-3.611V5.359a3.613 3.613 0 0 1 3.611-3.611h13.282a3.613 3.613 0 0 1 3.611 3.611M8.854 4.194v6.495h.962V4.194zM5.483 9.493v1.085h.597V9.48q.283-.037.508-.133.373-.165.575-.448.208-.284.208-.649a.9.9 0 0 0-.171-.568 1.4 1.4 0 0 0-.426-.388 3 3 0 0 0-.544-.261 32 32 0 0 0-.545-.209 1.8 1.8 0 0 1-.426-.216q-.164-.12-.164-.284 0-.223.179-.351.18-.126.485-.127.344 0 .575.105.239.105.5.298l.433-.5a2.3 2.3 0 0 0-.605-.433 1.6 1.6 0 0 0-.582-.159v-.968h-.597v.978a2 2 0 0 0-.477.127 1.2 1.2 0 0 0-.545.411q-.194.268-.194.634 0 .335.164.56.164.224.418.38a4 4 0 0 0 .552.262q.291.104.545.209.261.104.425.238a.39.39 0 0 1 .165.321q0 .225-.187.359-.18.134-.537.134-.381 0-.717-.134a4.4 4.4 0 0 1-.649-.351l-.388.589q.209.173.477.306.276.135.575.217.191.046.373.064" }) + ] + } + ); +}); + +export { SiIterm2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.cjs new file mode 100644 index 000000000..7a3c3da34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB5BC5"; +const SiItunes = React__namespace.forwardRef(function SiItunes2({ title = "iTunes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.977 23.999c-2.483 0-4.898-.777-6.954-2.262a11.928 11.928 0 01-4.814-7.806A11.954 11.954 0 012.3 4.994 11.85 11.85 0 0110.08.159a11.831 11.831 0 018.896 2.104 11.933 11.933 0 014.815 7.807 11.958 11.958 0 01-2.091 8.937 11.855 11.855 0 01-7.78 4.835 12.17 12.17 0 01-1.943.157zm-6.474-2.926a11.022 11.022 0 008.284 1.96 11.044 11.044 0 007.246-4.504c3.583-5.003 2.445-12.003-2.538-15.603a11.022 11.022 0 00-8.284-1.96A11.046 11.046 0 002.966 5.47C-.618 10.474.521 17.473 5.503 21.073zm10.606-3.552a2.08 2.08 0 001.458-1.468l.062-.216.008-5.786c.006-4.334 0-5.814-.024-5.895a.535.535 0 00-.118-.214.514.514 0 00-.276-.073c-.073 0-.325.035-.56.078-1.041.19-7.176 1.411-7.281 1.45a.786.786 0 00-.399.354l-.065.128s-.031 9.07-.078 9.172a.7.7 0 01-.376.35 9.425 9.425 0 01-.609.137c-1.231.245-1.688.421-2.075.801-.22.216-.382.51-.453.82-.067.294-.045.736.051 1.005.1.281.262.521.473.71.192.148.419.258.674.324.563.144 1.618-.016 2.158-.328a2.36 2.36 0 00.667-.629c.06-.089.15-.268.2-.399.176-.456.181-8.581.204-8.683a.44.44 0 01.32-.344c.147-.04 6.055-1.207 6.222-1.23.146-.02.284.027.36.12a.29.29 0 01.109.096c.048.07.051.213.058 2.785.008 2.96.012 2.892-.149 3.079-.117.136-.263.189-.864.31-.914.188-1.226.276-1.576.447-.437.213-.679.446-.867.835a1.58 1.58 0 00-.182.754c.001.49.169.871.55 1.245.035.034.069.066.104.097.192.148.387.238.633.294.37.082 1.124.025 1.641-.126z" }) + ] + } + ); +}); + +exports.default = SiItunes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.d.ts new file mode 100644 index 000000000..4f063d221 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB5BC5"; +declare const SiItunes: IconType; +export { SiItunes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.mjs new file mode 100644 index 000000000..87776bdea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItunes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB5BC5"; +const SiItunes = React.forwardRef(function SiItunes2({ title = "iTunes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.977 23.999c-2.483 0-4.898-.777-6.954-2.262a11.928 11.928 0 01-4.814-7.806A11.954 11.954 0 012.3 4.994 11.85 11.85 0 0110.08.159a11.831 11.831 0 018.896 2.104 11.933 11.933 0 014.815 7.807 11.958 11.958 0 01-2.091 8.937 11.855 11.855 0 01-7.78 4.835 12.17 12.17 0 01-1.943.157zm-6.474-2.926a11.022 11.022 0 008.284 1.96 11.044 11.044 0 007.246-4.504c3.583-5.003 2.445-12.003-2.538-15.603a11.022 11.022 0 00-8.284-1.96A11.046 11.046 0 002.966 5.47C-.618 10.474.521 17.473 5.503 21.073zm10.606-3.552a2.08 2.08 0 001.458-1.468l.062-.216.008-5.786c.006-4.334 0-5.814-.024-5.895a.535.535 0 00-.118-.214.514.514 0 00-.276-.073c-.073 0-.325.035-.56.078-1.041.19-7.176 1.411-7.281 1.45a.786.786 0 00-.399.354l-.065.128s-.031 9.07-.078 9.172a.7.7 0 01-.376.35 9.425 9.425 0 01-.609.137c-1.231.245-1.688.421-2.075.801-.22.216-.382.51-.453.82-.067.294-.045.736.051 1.005.1.281.262.521.473.71.192.148.419.258.674.324.563.144 1.618-.016 2.158-.328a2.36 2.36 0 00.667-.629c.06-.089.15-.268.2-.399.176-.456.181-8.581.204-8.683a.44.44 0 01.32-.344c.147-.04 6.055-1.207 6.222-1.23.146-.02.284.027.36.12a.29.29 0 01.109.096c.048.07.051.213.058 2.785.008 2.96.012 2.892-.149 3.079-.117.136-.263.189-.864.31-.914.188-1.226.276-1.576.447-.437.213-.679.446-.867.835a1.58 1.58 0 00-.182.754c.001.49.169.871.55 1.245.035.034.069.066.104.097.192.148.387.238.633.294.37.082 1.124.025 1.641-.126z" }) + ] + } + ); +}); + +export { SiItunes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.cjs new file mode 100644 index 000000000..d4a751b67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DEEB52"; +const SiItvx = React__namespace.forwardRef(function SiItvx2({ title = "ITVx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.91 11.018a59.87 59.87 0 0 0-.98-.27c-.1 0-.16.05-.2.17-.35 1.2-.9 2.53-1.38 3.36-.16-.3-.45-.83-.73-1.3l-1.04-1.83c-.22-.34-.36-.43-.64-.43-.57 0-1.42.51-1.42 1 0 .16.04.28.21.57.2.32.3.6.3.92 0 .82-.62 1.56-1.8 1.56-.55 0-.99-.16-1.27-.45-.27-.28-.4-.65-.4-1.27v-1.03c.2.08.44.12.73.12h.93c.13 0 .17-.05.17-.16v-1c0-.11-.04-.17-.17-.17H6.56v-1.63c0-.2-.05-.33-.16-.43-.16-.15-.5-.22-.89-.22-.4 0-.72.07-.89.22-.1.1-.16.24-.16.43v4c0 .66-.1 1.02-.34 1.27-.2.22-.53.34-.88.34s-.66-.12-.84-.31c-.2-.2-.29-.48-.29-.9v-2.6c0-.11-.04-.16-.16-.16H.18c-.12 0-.17.05-.17.16v2.35c0 .94.25 1.47.67 1.9.55.54 1.48.79 2.38.79.88 0 1.81-.32 2.36-.82a4 4 0 0 0 2.6.82c1.42 0 2.47-.6 3.08-1.6.27.43.47.74.67 1.02.28.42.54.58 1.12.58.54 0 .87-.13 1.17-.59.78-1.18 1.44-2.59 1.92-3.88.05-.16.1-.28.1-.35 0-.08-.05-.14-.17-.18zm-14.85-.92c.66 0 1.07-.46 1.07-1.05 0-.6-.4-1.06-1.07-1.06-.65-.01-1.06.46-1.06 1.05 0 .59.4 1.05 1.06 1.05zm22.84 5.1-2.28-3.13c-.05-.07-.05-.14 0-.2l2.1-3.07c.07-.09.11-.15.11-.28 0-.12-.07-.25-.19-.37a.51.51 0 0 0-.39-.17.4.4 0 0 0-.24.1l-2.9 2.22c-.06.05-.13.05-.2 0l-2.89-2.22a.4.4 0 0 0-.25-.1.51.51 0 0 0-.38.17c-.12.12-.2.25-.2.37 0 .13.05.2.11.28l2.11 3.07c.05.06.05.13 0 .2l-2.28 3.13a.42.42 0 0 0-.1.26c0 .14.06.26.18.38.11.11.24.18.38.18.1 0 .17-.04.26-.1l3.06-2.23a.17.17 0 0 1 .2 0l3.07 2.23c.09.06.16.1.26.1.14 0 .27-.07.38-.18.12-.12.18-.24.18-.38 0-.1-.04-.17-.1-.26z" }) + ] + } + ); +}); + +exports.default = SiItvx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.d.ts new file mode 100644 index 000000000..c62f9daeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DEEB52"; +declare const SiItvx: IconType; +export { SiItvx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.mjs new file mode 100644 index 000000000..8f24d1110 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiItvx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DEEB52"; +const SiItvx = React.forwardRef(function SiItvx2({ title = "ITVx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.91 11.018a59.87 59.87 0 0 0-.98-.27c-.1 0-.16.05-.2.17-.35 1.2-.9 2.53-1.38 3.36-.16-.3-.45-.83-.73-1.3l-1.04-1.83c-.22-.34-.36-.43-.64-.43-.57 0-1.42.51-1.42 1 0 .16.04.28.21.57.2.32.3.6.3.92 0 .82-.62 1.56-1.8 1.56-.55 0-.99-.16-1.27-.45-.27-.28-.4-.65-.4-1.27v-1.03c.2.08.44.12.73.12h.93c.13 0 .17-.05.17-.16v-1c0-.11-.04-.17-.17-.17H6.56v-1.63c0-.2-.05-.33-.16-.43-.16-.15-.5-.22-.89-.22-.4 0-.72.07-.89.22-.1.1-.16.24-.16.43v4c0 .66-.1 1.02-.34 1.27-.2.22-.53.34-.88.34s-.66-.12-.84-.31c-.2-.2-.29-.48-.29-.9v-2.6c0-.11-.04-.16-.16-.16H.18c-.12 0-.17.05-.17.16v2.35c0 .94.25 1.47.67 1.9.55.54 1.48.79 2.38.79.88 0 1.81-.32 2.36-.82a4 4 0 0 0 2.6.82c1.42 0 2.47-.6 3.08-1.6.27.43.47.74.67 1.02.28.42.54.58 1.12.58.54 0 .87-.13 1.17-.59.78-1.18 1.44-2.59 1.92-3.88.05-.16.1-.28.1-.35 0-.08-.05-.14-.17-.18zm-14.85-.92c.66 0 1.07-.46 1.07-1.05 0-.6-.4-1.06-1.07-1.06-.65-.01-1.06.46-1.06 1.05 0 .59.4 1.05 1.06 1.05zm22.84 5.1-2.28-3.13c-.05-.07-.05-.14 0-.2l2.1-3.07c.07-.09.11-.15.11-.28 0-.12-.07-.25-.19-.37a.51.51 0 0 0-.39-.17.4.4 0 0 0-.24.1l-2.9 2.22c-.06.05-.13.05-.2 0l-2.89-2.22a.4.4 0 0 0-.25-.1.51.51 0 0 0-.38.17c-.12.12-.2.25-.2.37 0 .13.05.2.11.28l2.11 3.07c.05.06.05.13 0 .2l-2.28 3.13a.42.42 0 0 0-.1.26c0 .14.06.26.18.38.11.11.24.18.38.18.1 0 .17-.04.26-.1l3.06-2.23a.17.17 0 0 1 .2 0l3.07 2.23c.09.06.16.1.26.1.14 0 .27-.07.38-.18.12-.12.18-.24.18-.38 0-.1-.04-.17-.1-.26z" }) + ] + } + ); +}); + +export { SiItvx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.cjs new file mode 100644 index 000000000..c281a4686 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1554FF"; +const SiIveco = React__namespace.forwardRef(function SiIveco2({ title = "IVECO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.084 10.059a.084.084 0 0 0-.084.084v3.574c0 .046.038.084.084.084h.912a.083.083 0 0 0 .082-.084v-3.574a.083.083 0 0 0-.082-.084zm1.775 0c-.062 0-.105.058-.076.11l1.895 3.257.011.02c.195.306.577.495 1.002.494.426-.001.807-.196.997-.508L7.75 10.17c.028-.046-.007-.111-.076-.111H6.658a.086.086 0 0 0-.074.039l-1.857 2.925c-.017.028-.064.023-.079.006L2.936 10.1a.085.085 0 0 0-.077-.04zm7.598 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.049a.082.082 0 0 0 .082-.084v-.733a.082.082 0 0 0-.082-.084H9.234c-.017 0-.03-.015-.03-.033V10.99c0-.017.013-.033.03-.033h3.272a.08.08 0 0 0 .082-.082v-.732a.082.082 0 0 0-.082-.084zm5.443 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.05a.084.084 0 0 0 .083-.084v-.733a.084.084 0 0 0-.084-.084h-3.271c-.018 0-.032-.015-.032-.033V10.99c0-.017.014-.033.032-.033h3.271a.082.082 0 0 0 .084-.082v-.732a.084.084 0 0 0-.084-.084zm5.334 0c-.73 0-1.324.49-1.324 1.093v1.555c0 .603.594 1.094 1.324 1.094h2.442c.73 0 1.324-.49 1.324-1.094v-1.555c0-.603-.594-1.093-1.324-1.093zm-.226.898h2.879c.015 0 .027.012.027.027v1.889a.027.027 0 0 1-.027.027h-2.88a.027.027 0 0 1-.027-.027v-1.889c0-.015.013-.027.028-.027zm-10.215.56a.05.05 0 0 0-.049.051v.73c0 .028.022.052.049.052h2.72a.05.05 0 0 0 .05-.051v-.73a.05.05 0 0 0-.05-.051z" }) + ] + } + ); +}); + +exports.default = SiIveco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.d.ts new file mode 100644 index 000000000..7af3ee0eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1554FF"; +declare const SiIveco: IconType; +export { SiIveco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.mjs new file mode 100644 index 000000000..6363259ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiIveco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1554FF"; +const SiIveco = React.forwardRef(function SiIveco2({ title = "IVECO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.084 10.059a.084.084 0 0 0-.084.084v3.574c0 .046.038.084.084.084h.912a.083.083 0 0 0 .082-.084v-3.574a.083.083 0 0 0-.082-.084zm1.775 0c-.062 0-.105.058-.076.11l1.895 3.257.011.02c.195.306.577.495 1.002.494.426-.001.807-.196.997-.508L7.75 10.17c.028-.046-.007-.111-.076-.111H6.658a.086.086 0 0 0-.074.039l-1.857 2.925c-.017.028-.064.023-.079.006L2.936 10.1a.085.085 0 0 0-.077-.04zm7.598 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.049a.082.082 0 0 0 .082-.084v-.733a.082.082 0 0 0-.082-.084H9.234c-.017 0-.03-.015-.03-.033V10.99c0-.017.013-.033.03-.033h3.272a.08.08 0 0 0 .082-.082v-.732a.082.082 0 0 0-.082-.084zm5.443 0c-.73-.001-1.324.488-1.324 1.091v1.557c0 .603.594 1.094 1.324 1.094h3.05a.084.084 0 0 0 .083-.084v-.733a.084.084 0 0 0-.084-.084h-3.271c-.018 0-.032-.015-.032-.033V10.99c0-.017.014-.033.032-.033h3.271a.082.082 0 0 0 .084-.082v-.732a.084.084 0 0 0-.084-.084zm5.334 0c-.73 0-1.324.49-1.324 1.093v1.555c0 .603.594 1.094 1.324 1.094h2.442c.73 0 1.324-.49 1.324-1.094v-1.555c0-.603-.594-1.093-1.324-1.093zm-.226.898h2.879c.015 0 .027.012.027.027v1.889a.027.027 0 0 1-.027.027h-2.88a.027.027 0 0 1-.027-.027v-1.889c0-.015.013-.027.028-.027zm-10.215.56a.05.05 0 0 0-.049.051v.73c0 .028.022.052.049.052h2.72a.05.05 0 0 0 .05-.051v-.73a.05.05 0 0 0-.05-.051z" }) + ] + } + ); +}); + +export { SiIveco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.cjs new file mode 100644 index 000000000..830ba3d18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiJabber = React__namespace.forwardRef(function SiJabber2({ title = "Jabber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.597 11.737c0-.35-.065-.732-.268-1.025-.408-.588-1.283-.775-1.892-.405-.308.188-.48.515-.576.851-.191.668-.104 1.43.03 2.1.043.214.088.428.148.639.021.076.031.186.08.25.087.11.297.141.426.12.387-.065.291-.703.278-.974-.03-.634-.218-1.25-.036-1.881.076-.268.225-.568.494-.684.244-.105.49.023.586.261.156.385.117.83.215 1.23.033.137.07.272.131.399.018.037.043.113.094.108.126-.011.304-.22.398-.298.304-.25.616-.52.965-.705.165-.088.435-.23.603-.08a.612.612 0 0 1 .108.13c.198.31.002.55-.127.845-.166.38-.336.758-.577 1.098-.207.293-.49.549-.655.869-.107.205-.167.43-.123.663.036.188.181.301.373.257.143-.033.24-.156.322-.269.146-.202.281-.412.426-.615.28-.393.61-.76.846-1.183a3.41 3.41 0 0 0 .42-1.664c0-.474-.171-1.198-.723-1.298a.974.974 0 0 0-.326.01 1.432 1.432 0 0 0-.374.12 2.715 2.715 0 0 0-.818.637c-.146.16-.276.363-.449.495M9.078.016c-.435.058-.878.052-1.315.12-.838.129-1.64.389-2.425.703-.286.114-.568.241-.845.376-.103.05-.26.09-.343.17-.043.041-.039.139-.044.195-.014.156-.034.313-.05.47-.058.605-.1 1.229-.013 1.834.028.195.09.55.33.587.369.058.656-.397.837-.648.424-.586.905-1.132 1.6-1.394.817-.308 1.753-.381 2.618-.44 2.426-.167 5.078.277 6.865 2.064.254.254.495.524.7.82.8 1.159 1.223 2.477 1.427 3.86.096.65.161 1.308.013 1.955-.257 1.122-.932 2.1-1.706 2.931-.53.57-1.128 1.084-1.749 1.552-.347.261-.736.483-1.062.768-.375.329-.688.74-.925 1.179-.639 1.181-.81 2.602-.622 3.92.038.27.073.542.134.809.018.08.022.217.073.282.097.122.36.189.508.196.154.007.256-.11.294-.249.064-.236.026-.498-.012-.736-.076-.487-.147-.977-.125-1.471a3.71 3.71 0 0 1 1.026-2.425c.643-.673 1.512-1.061 2.243-1.625 1.474-1.136 2.794-2.668 3.301-4.492a5.194 5.194 0 0 0 .159-2.015c-.105-.849-.415-1.697-.708-2.497-.892-2.437-2.422-4.755-4.851-5.87-.964-.443-1.973-.645-3.016-.79-.49-.068-.98-.11-1.472-.132-.274-.012-.572-.042-.845-.006M5.277 15.796c-.473.068-.61.447-.523.876.112.548.543.965.97 1.295a6.03 6.03 0 0 0 3.884 1.238c.538-.023 1.124-.112 1.617-.34.265-.122.542-.563.181-.751a.59.59 0 0 0-.169-.051c-.157-.026-.333.041-.482.084-.263.075-.526.153-.797.196-.808.13-1.683-.055-2.352-.534-.542-.387-.98-.898-1.393-1.415-.253-.316-.482-.663-.936-.598M4.662 18.474c-.12.016-.259.011-.362.087-.215.158.022.476.135.62.328.417.76.763 1.192 1.068a7.832 7.832 0 0 0 4.03 1.442c.421.03.85 0 1.267-.07.152-.026.342-.037.482-.103.399-.186.284-.939-.072-1.106-.155-.073-.404.023-.567.046-.385.054-.771.06-1.158.05-1.015-.025-2.096-.338-2.98-.831a5.589 5.589 0 0 1-.966-.693c-.181-.16-.368-.42-.603-.502-.11-.037-.284-.023-.398-.008M4.903 20.73a.638.638 0 0 0-.413.236c-.078.088-.152.167-.197.278-.246.609.41 1.183.864 1.47.504.32 1.055.558 1.616.758 1.266.45 2.752.739 4.066.336.391-.12.778-.338 1.062-.634.16-.167.27-.419-.024-.526-.174-.063-.385.098-.543.162a4.57 4.57 0 0 1-1.158.312c-.527.064-1.001-.052-1.508-.179-.434-.108-.872-.217-1.291-.373a4.457 4.457 0 0 1-1.026-.513c-.094-.066-.206-.125-.282-.211-.25-.282-.439-.612-.707-.88-.116-.116-.281-.256-.459-.236" }) + ] + } + ); +}); + +exports.default = SiJabber; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.d.ts new file mode 100644 index 000000000..04658690c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiJabber: IconType; +export { SiJabber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.mjs new file mode 100644 index 000000000..001a4627d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJabber.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiJabber = React.forwardRef(function SiJabber2({ title = "Jabber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.597 11.737c0-.35-.065-.732-.268-1.025-.408-.588-1.283-.775-1.892-.405-.308.188-.48.515-.576.851-.191.668-.104 1.43.03 2.1.043.214.088.428.148.639.021.076.031.186.08.25.087.11.297.141.426.12.387-.065.291-.703.278-.974-.03-.634-.218-1.25-.036-1.881.076-.268.225-.568.494-.684.244-.105.49.023.586.261.156.385.117.83.215 1.23.033.137.07.272.131.399.018.037.043.113.094.108.126-.011.304-.22.398-.298.304-.25.616-.52.965-.705.165-.088.435-.23.603-.08a.612.612 0 0 1 .108.13c.198.31.002.55-.127.845-.166.38-.336.758-.577 1.098-.207.293-.49.549-.655.869-.107.205-.167.43-.123.663.036.188.181.301.373.257.143-.033.24-.156.322-.269.146-.202.281-.412.426-.615.28-.393.61-.76.846-1.183a3.41 3.41 0 0 0 .42-1.664c0-.474-.171-1.198-.723-1.298a.974.974 0 0 0-.326.01 1.432 1.432 0 0 0-.374.12 2.715 2.715 0 0 0-.818.637c-.146.16-.276.363-.449.495M9.078.016c-.435.058-.878.052-1.315.12-.838.129-1.64.389-2.425.703-.286.114-.568.241-.845.376-.103.05-.26.09-.343.17-.043.041-.039.139-.044.195-.014.156-.034.313-.05.47-.058.605-.1 1.229-.013 1.834.028.195.09.55.33.587.369.058.656-.397.837-.648.424-.586.905-1.132 1.6-1.394.817-.308 1.753-.381 2.618-.44 2.426-.167 5.078.277 6.865 2.064.254.254.495.524.7.82.8 1.159 1.223 2.477 1.427 3.86.096.65.161 1.308.013 1.955-.257 1.122-.932 2.1-1.706 2.931-.53.57-1.128 1.084-1.749 1.552-.347.261-.736.483-1.062.768-.375.329-.688.74-.925 1.179-.639 1.181-.81 2.602-.622 3.92.038.27.073.542.134.809.018.08.022.217.073.282.097.122.36.189.508.196.154.007.256-.11.294-.249.064-.236.026-.498-.012-.736-.076-.487-.147-.977-.125-1.471a3.71 3.71 0 0 1 1.026-2.425c.643-.673 1.512-1.061 2.243-1.625 1.474-1.136 2.794-2.668 3.301-4.492a5.194 5.194 0 0 0 .159-2.015c-.105-.849-.415-1.697-.708-2.497-.892-2.437-2.422-4.755-4.851-5.87-.964-.443-1.973-.645-3.016-.79-.49-.068-.98-.11-1.472-.132-.274-.012-.572-.042-.845-.006M5.277 15.796c-.473.068-.61.447-.523.876.112.548.543.965.97 1.295a6.03 6.03 0 0 0 3.884 1.238c.538-.023 1.124-.112 1.617-.34.265-.122.542-.563.181-.751a.59.59 0 0 0-.169-.051c-.157-.026-.333.041-.482.084-.263.075-.526.153-.797.196-.808.13-1.683-.055-2.352-.534-.542-.387-.98-.898-1.393-1.415-.253-.316-.482-.663-.936-.598M4.662 18.474c-.12.016-.259.011-.362.087-.215.158.022.476.135.62.328.417.76.763 1.192 1.068a7.832 7.832 0 0 0 4.03 1.442c.421.03.85 0 1.267-.07.152-.026.342-.037.482-.103.399-.186.284-.939-.072-1.106-.155-.073-.404.023-.567.046-.385.054-.771.06-1.158.05-1.015-.025-2.096-.338-2.98-.831a5.589 5.589 0 0 1-.966-.693c-.181-.16-.368-.42-.603-.502-.11-.037-.284-.023-.398-.008M4.903 20.73a.638.638 0 0 0-.413.236c-.078.088-.152.167-.197.278-.246.609.41 1.183.864 1.47.504.32 1.055.558 1.616.758 1.266.45 2.752.739 4.066.336.391-.12.778-.338 1.062-.634.16-.167.27-.419-.024-.526-.174-.063-.385.098-.543.162a4.57 4.57 0 0 1-1.158.312c-.527.064-1.001-.052-1.508-.179-.434-.108-.872-.217-1.291-.373a4.457 4.457 0 0 1-1.026-.513c-.094-.066-.206-.125-.282-.211-.25-.282-.439-.612-.707-.88-.116-.116-.281-.256-.459-.236" }) + ] + } + ); +}); + +export { SiJabber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.cjs new file mode 100644 index 000000000..8a4ec88e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#66CFE3"; +const SiJaeger = React__namespace.forwardRef(function SiJaeger2({ title = "Jaeger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.816 22.3774c0 .0724-.1283.1311-.2865.1311-.1581 0-.2864-.0587-.2864-.131 0-.0725.1283-.1311.2864-.1311.1582 0 .2865.0586.2865.131Zm-.738.1554c0 .075-.126.136-.2815.136-.1555 0-.2816-.061-.2816-.136 0-.075.126-.136.2816-.136.1555 0 .2816.061.2816.136Zm-.7427.1408c0 .0697-.1739.1262-.3884.1262-.2145 0-.3884-.0565-.3884-.1262 0-.0697.174-.1263.3884-.1263.2145 0 .3884.0566.3884.1263Zm-1.136.1116c0 .0885-.1587.1602-.3544.1602-.1957 0-.3544-.0717-.3544-.1602 0-.0885.1587-.1602.3544-.1602.1957 0 .3544.0717.3544.1602Zm-1.1943.0389c0 .0965-.2369.1747-.5291.1747-.2923 0-.5292-.0782-.5292-.1747 0-.0966.237-.1748.5292-.1748s.5291.0782.5291.1748Zm1.107-.8787c.6116-.0292.7718-.1214.7912-.3253 0 0 .1214-.1505-.2913-.233-.4126-.0826-.9952-.0826-.8932-.4127.102-.335 1.1554-.3932 1.7865-.3932s1.3447-.0388 1.2525.301c-.0874.3398-.5486.3447-.5097.5728.0388.2282.4175.1602.3495.5195-.068.3592-1.7428.4903-2.9274.5923-1.1797.102-1.9321-.0195-1.7428-.3399.1893-.3204 1.573-.2524 2.1846-.2815Zm-9.9693 1.0755c.0066.045-.128.102-.3004.127-.1724.0251-.3176.0089-.3241-.0362-.0066-.0452.128-.102.3004-.1271.1725-.025.3176-.0088.3241.0363Zm.0918.226c.0077.053-.1474.1195-.3464.1484-.199.029-.3665.0094-.3742-.0437-.0078-.053.1473-.1195.3463-.1485.199-.0289.3666-.0093.3743.0438Zm.1648.204c.0077.053-.1473.1194-.3463.1484-.199.0289-.3666.0093-.3743-.0437-.0077-.0531.1473-.1196.3463-.1485.199-.029.3666-.0094.3743.0437Zm.7387.114c.0086.0638-.1501.138-.3547.166-.2046.0278-.3774-.0013-.3861-.065-.0087-.0638.15-.138.3546-.166.2046-.0278.3775.0013.3862.065Zm1.1803.1309c.0066.0828-.2394.17-.5494.1947s-.5667-.0225-.5733-.1053c-.0066-.0829.2394-.17.5494-.1947s.5667.0224.5733.1053Zm1.1926.0011c.0182.0838-.2006.2026-.4888.2653-.2882.0627-.5366.0456-.5548-.0382-.0182-.0839.2006-.2027.4888-.2654.2882-.0627.5366-.0455.5548.0383Zm1.2463-2.0331c.3544-.0777 1.9856-.0388 2.0292.2476.0534.2913-2.67.5437-3.2866.631-.6165.0875-.6408.2622-.6408.2622 0 .0146-.0534.1554.3495.1505.5632-.0097.9564.1068.7234.3787-.233.2719-2.8109.199-3.34 0-.5292-.199-.3204-.398-.0486-.5.2719-.0971 1.0438-.1894 1.937-.3593.8933-.1699 1.9274-.7282 2.2769-.8107Zm6.7917-9.7337a.6457.6457 0 1 1-1.2914 0 .6457.6457 0 0 1 1.2914 0ZM7.3155 13.44a.6457.6457 0 1 1-1.2914 0 .6457.6457 0 0 1 1.2914 0ZM4.325 20.023c-.3544 0-.602-.1409-.7573-.4176-.0631-.1068-.102-.2379-.1311-.3738-.0631-.335-.0437-.7282.0291-1.0972.0825-.4126.2282-.7961.3835-1.0389.1408-.2233.2719-.369.3884-.466a50.61 50.61 0 0 0 .5195 1.3205c.2378.5874.4563 1.1068.6165 1.4758-.0097.0194-.0243.034-.0388.0534-.233.3107-.5583.5437-1.0098.5437Zm15.0155-2.1944c0 .0146.0049.0388.0195.0728.0534.2913.233 1.0778.3543 1.5292-1.8642.2088-4.5051.3399-7.4325.3399-2.4759 0-4.7479-.0923-6.515-.2476a86.46 86.46 0 0 1-.6748-1.607c-.597-1.4563-1.3302-3.3933-1.5583-4.5779-.2088-1.0923-.4612-2.4176.1165-3.6119A28.5682 28.5682 0 0 1 3.32 9.697c-1.369-.1456-1.5535-.4127-1.6263-.5243-.0777-.1117-.0923-.2427-.0389-.3738.1214-.3059.534-.5826 1.0146-.8108a5.028 5.028 0 0 0 .136.2816c-.437.2088-.7768.432-.8593.6457-.0194.0437-.0097.0631.0049.0874.068.097.4611.398 2.6846.4709a.6316.6316 0 0 1-.5-.505.634.634 0 0 1 .0582-.3931c-.2039.1068-.4078.233-.602.364 0 0-1.6554-2.1748-.4709-2.8933.136-.0826.267-.1214.3981-.1214.9904 0 1.7234 2.1603 1.7234 2.1603s-.1456.0534-.3592.1505c.2621.0243.7816.1457 1.8302.568 1.068.4321 1.4952.4612 1.6118.4612A.625.625 0 0 1 9 9.3426l.034.034a22.885 22.885 0 0 0 .4563-.0389c.0485-.0048.1116-.0194.1942-.0388a.6277.6277 0 0 1 .2864-.5826.6193.6193 0 0 1 .733.0437.434.434 0 0 0 .0874-.034c.2719-.1359 1.2331-1.1602 1.9565-2.034a.616.616 0 0 1 .6117-.2137c.1941-.6553.9709-2.9759 2.1554-2.9759 1.3788 0 .5777 2.7283.4418 2.9225 0 0-.3204-.0242-.7573-.0242-.4855 0-1.1166.029-1.6312.165.0146.0097.034.0243.0534.0389.267.2184.301.6117.0825.8787-.1165.1359-.267.3204-.4417.5194.3592-.1456.733-.3058 1.1068-.466.6263-.2768 1.2089-.539 1.7234-.7914h.0098l.0048-.0097c.4418-.2136.8399-.4175 1.1748-.6068 1.17-.6554 1.3157-.9418 1.3302-1.0146.0097-.0486 0-.0631-.0048-.068-.0097-.0194-.0923-.097-.4612-.097-.403 0-.9661.0922-1.5535.2184a3.849 3.849 0 0 0 .0291-.3253c.5729-.1165 1.1214-.2039 1.5292-.2039.369 0 .5923.068.7088.2136.0534.0631.1068.1748.068.335-.0437.1893-.2428.5194-1.4807 1.2137a8.6623 8.6623 0 0 1-.3738.2039c-.0922.0534-.1942.102-.2961.1553.5582.471.9758 1.1748 1.2379 2.1943.5292 2.039.937 4.4275 1.2185 6.3208-.4612.0583-.7427.2767-.801.6311-.0631.3836.136.5923.3447.8156.2233.2379.4806.505.5631 1.1069Zm-4.84-12.331c0 .0244.0048.0195.0048.0195s.0242-.0437.063-.1165c.0438-.0728.102-.1748.17-.2961.0728-.1214.1553-.2573.2573-.3787.0485-.0583.1068-.1165.165-.1602.0632-.0437.1214-.0728.1845-.0825.0194 0 .034-.0049.0486-.0049.0145.0049.034 0 .0485.0049.0146.0048.034.0048.0486.0097l.0388.0097.0097.0048c0 .0049.0049.0049.0049.0097.0097.0146.0145.0437.0194.0777 0 .068-.0049.1505-.0194.2233-.0097.0729-.0292.1457-.0437.2136-.034.136-.0631.2476-.0826.3302-.0242.0825-.034.131-.034.131s.034-.034.0874-.102c.0534-.063.1214-.165.1942-.2912.034-.0631.0729-.136.102-.2185.0291-.0825.0582-.1747.068-.2815.0048-.0534.0048-.1165-.0195-.1845-.0048-.0194-.0145-.034-.0242-.0534l-.0146-.0243-.0194-.0243c-.0194-.029-.0971-.0776-.102-.0776l-.0097-.0049h-.0048l-.0146-.0048h-.0049l-.0194-.0097-.0437-.0146c-.0242-.0097-.0582-.0146-.0874-.0194-.029-.0049-.063-.0049-.0922-.0049-.0291.0049-.0631.0049-.0922.0097a.6844.6844 0 0 0-.3204.1554c-.0874.0728-.1505.1553-.204.2379-.1019.165-.1601.33-.199.4709-.034.1456-.0534.267-.0582.3495-.0049.0388-.0049.0728-.0049.097Zm-4.2868 3.578c-.0874.0534-.1116.165-.063.2524.0145.0195.0922.1311.2572.1942a.707.707 0 0 0 .2525.0437c.1456 0 .3058-.0388.4709-.1116.3592-.1602 1.2379-1.0487 2.2428-2.2575.0631-.0776.0534-.1942-.0242-.2573-.0437-.034-.0874-.0437-.1166-.0437a.1794.1794 0 0 0-.1407.068c-.4321.5195-1.6555 1.9225-2.0924 2.1458l-.0194.0097c-.0534.0194-.102.0388-.1505.0534l-.2233.0631-.1797-.1456c-.0291-.0292-.0728-.0437-.1165-.0437a.175.175 0 0 0-.097.029ZM9.17 14.304c.0582.335.5874.5243 1.1845.4272.5971-.097 1.039-.4515.9807-.7865-.0583-.335-.5875-.5243-1.1846-.4272-.5971.102-1.034.4564-.9806.7865ZM4.4172 7.9493a2.001 2.001 0 0 0 .0729.0922s-.0049-.0145-.0049-.034c-.0049-.0194-.0049-.0485-.0146-.0873-.0097-.0777-.0388-.1845-.0776-.3107a2.4088 2.4088 0 0 0-.1748-.4175 1.8868 1.8868 0 0 0-.1408-.2233c-.0534-.0729-.1165-.1457-.2039-.2136-.0485-.0292-.097-.0632-.165-.0826-.0146-.0048-.034-.0048-.0535-.0097h-.0728c-.0097 0-.0291.0049-.034.0049l-.029.0097-.0195.0048-.0049.0049-.0097.0048a.3371.3371 0 0 0-.1602.136.4473.4473 0 0 0-.0534.1747c-.0097.1068.0146.1942.034.272.0243.0776.0534.1504.0825.2087a1.493 1.493 0 0 0 .17.2718c.0242.0291.0436.0534.0582.068l.0243.0243s-.0097-.0437-.0243-.1166c-.0146-.0728-.0388-.1796-.0582-.301a2.2904 2.2904 0 0 1-.0243-.1941c-.0049-.068-.0049-.136.0097-.1894.0048-.0242.0146-.0437.0243-.0534.0097-.0048.0145-.0097.029-.0145h.0098l.0146-.0049c.0048 0 0 .0049 0 .0049h.0048a.2045.2045 0 0 1 .0631.034c.0486.0388.102.0922.1505.1504.0534.0632.102.1214.1457.1845.0873.1262.1747.2476.2476.3496a5.199 5.199 0 0 0 .1844.2524Zm.3544 1.0777.034.0049c.131.0146.5534.0922 1.5923.5097.8545.3447 1.5001.5195 1.9128.5195.3107 0 .3932-.0971.4223-.131.0437-.0535.0486-.1069.0437-.136-.0048-.0291-.0145-.0825-.068-.1262-.0436-.034-.0873-.0437-.1164-.0437-.0292 0-.0583.0048-.0826.0194l-.0874.0437h-.1165c-.2476 0-.7622-.0825-1.767-.4903-1.204-.4855-1.6458-.539-1.7769-.539-.0291 0-.0388 0-.0582.005-.0632.0145-.102.0533-.1166.0776-.0145.0194-.0388.0728-.029.136.0145.0873.0922.1504.1795.1504h.034Zm.0437 3.6945c0 1.1262.9127 2.0438 2.039 2.039 1.1263 0 2.039-.9128 2.039-2.039 0-1.1263-.9127-2.039-2.039-2.039s-2.039.9127-2.039 2.039Zm5.5246 3.3643c-.267.102-.5.2475-.7039.3738.0486.2184.199.7088.6311.5825.3544-.1068.1505-.733.0728-.9563Zm.6214.7816c.1166.0437.5778.0825.534-.4758-.0145-.1942-.029-.3301-.0388-.4224-.0437-.0048-.0825-.0048-.1213-.0048-.136 0-.2622-.0049-.369-.0049-.1117 0-.17.0049-.1942.0097a9.3046 9.3046 0 0 0-.1553.0292c.0388.2524.1456.7961.3446.869Zm1.7866-1.3788c.432-.1942.432-.5243.4078-.6942-.0292-.1796-.2962-.5583-1.3788-.568 0 0-.335.7816-1.2428.9273-.9078.1505-1.2962-.0243-1.4515-.2185 0 0-.8739.2573-.9467.8107-.0728.5535.6603.7477 1.0098.5535.3495-.1942.8738-.6166 1.573-.7088.3737-.0486 1.5971.0922 2.0292-.102Zm2.471-4.2333c0-1.1262-.9127-2.039-2.039-2.039s-2.039.9128-2.039 2.039c0 1.1263.9127 2.039 2.039 2.039s2.039-.9175 2.039-2.039ZM3.1162 18.1975c-.0437.267-.0728.6117-.0243.9564-.6602-.1408-1.034-.3058-1.034-.4757 0-.17.3835-.335 1.0583-.4807Zm18.4866.0389c.5729.136.8884.2864.8836.4418 0 .2476-.767.4757-2.0633.6553.233-.063.4952-.233.7962-.5146.1505-.1407.267-.3107.3495-.5a.5922.5922 0 0 0 .034-.0825Zm-.3495-.0728a1.0453 1.0453 0 0 1-.2767.3883c-.3884.369-.6214.4467-.7525.4467-.2573 0-.4466-.3593-.5583-1.0632-.0049-.0486-.0146-.0971-.0194-.1456-.0923-.6991-.4127-1.039-.6457-1.2817-.2039-.2136-.301-.3301-.2621-.5486.0534-.3155.4369-.3835.7476-.3835.1456 0 .2573.0146.2573.0146h.0194c.5728.0097 1.17.5291 1.4515 1.2525.1554.398.2185.903.0389 1.3205ZM4.7085 6.3618c-.1068-.1456-.2136-.267-.3253-.3592-.0097-.3981-.0097-.7574.0098-.8981.0388-.2622.6893-1.0244 1.2962-1.607.5097-.4903 1.4855-1.335 2.301-1.5.1263-.0243.272-.0389.4419-.0389 1.5535 0 4.6993 1.1651 4.8546 1.3205l.0097.0097c.0389-.3787.0777-.9078.0098-1.0583 0 0 .296.0922.3495.2767 0 0 .733-.738.6602-1.6554 0 0 .165 0 .1845.296 0 0 .5292-1.2524.9175-1.1408.3884.1117-.1262 1.8594-.4029 2.1895 0 0 .4418-.1068.4952-.403 0 0 .0534.2574-.0194.403 0 0 .9952-.8107.9563-1.1214 0 0 .1311.3155.0923.5534 0 0 .8253-.6602.8253-.937 0 0 .1262 1.6021-1.471 2.1895 0 0 .4224-.0534.6263-.0922 0 0-.1748.2281-.4418.5534-.1602-.102-.3496-.1505-.5632-.1505-.6408 0-1.2282.4855-1.7476 1.4419.0776-.4175-.0292-.7574-.1845-.7914-.0049-.0048-.0146-.0048-.0243-.0048-.1602 0-.3884.2767-.4806.6894-.0923.4369.0146.8058.1748.8398.0582.0146.131-.0194.2039-.0874-.1505.3593-.267.6942-.3447.9321-3.976 1.7914-6.5053 1.7527-7.656 1.573-.0825-.2137-.233-.5778-.4417-.9419-.0583-.097-.1166-.1941-.1748-.2815 2.7769.7476 6.4761-.6506 7.9568-1.2962-.0777-.2185-.0874-.5-.0194-.806.0631-.296.1942-.5485.3544-.7184-.0291-.1165-.0534-.199-.0728-.2427-.3399-.1845-3.1556-1.2331-4.6265-1.2331-.1457 0-.272.0145-.3787.034-1.301.267-3.277 2.5292-3.3497 2.8497-.0243.1553-.0146.6796.0048 1.2136Z" }) + ] + } + ); +}); + +exports.default = SiJaeger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.d.ts new file mode 100644 index 000000000..785a0da62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#66CFE3"; +declare const SiJaeger: IconType; +export { SiJaeger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.mjs new file mode 100644 index 000000000..2fdca6c4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJaeger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#66CFE3"; +const SiJaeger = React.forwardRef(function SiJaeger2({ title = "Jaeger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.816 22.3774c0 .0724-.1283.1311-.2865.1311-.1581 0-.2864-.0587-.2864-.131 0-.0725.1283-.1311.2864-.1311.1582 0 .2865.0586.2865.131Zm-.738.1554c0 .075-.126.136-.2815.136-.1555 0-.2816-.061-.2816-.136 0-.075.126-.136.2816-.136.1555 0 .2816.061.2816.136Zm-.7427.1408c0 .0697-.1739.1262-.3884.1262-.2145 0-.3884-.0565-.3884-.1262 0-.0697.174-.1263.3884-.1263.2145 0 .3884.0566.3884.1263Zm-1.136.1116c0 .0885-.1587.1602-.3544.1602-.1957 0-.3544-.0717-.3544-.1602 0-.0885.1587-.1602.3544-.1602.1957 0 .3544.0717.3544.1602Zm-1.1943.0389c0 .0965-.2369.1747-.5291.1747-.2923 0-.5292-.0782-.5292-.1747 0-.0966.237-.1748.5292-.1748s.5291.0782.5291.1748Zm1.107-.8787c.6116-.0292.7718-.1214.7912-.3253 0 0 .1214-.1505-.2913-.233-.4126-.0826-.9952-.0826-.8932-.4127.102-.335 1.1554-.3932 1.7865-.3932s1.3447-.0388 1.2525.301c-.0874.3398-.5486.3447-.5097.5728.0388.2282.4175.1602.3495.5195-.068.3592-1.7428.4903-2.9274.5923-1.1797.102-1.9321-.0195-1.7428-.3399.1893-.3204 1.573-.2524 2.1846-.2815Zm-9.9693 1.0755c.0066.045-.128.102-.3004.127-.1724.0251-.3176.0089-.3241-.0362-.0066-.0452.128-.102.3004-.1271.1725-.025.3176-.0088.3241.0363Zm.0918.226c.0077.053-.1474.1195-.3464.1484-.199.029-.3665.0094-.3742-.0437-.0078-.053.1473-.1195.3463-.1485.199-.0289.3666-.0093.3743.0438Zm.1648.204c.0077.053-.1473.1194-.3463.1484-.199.0289-.3666.0093-.3743-.0437-.0077-.0531.1473-.1196.3463-.1485.199-.029.3666-.0094.3743.0437Zm.7387.114c.0086.0638-.1501.138-.3547.166-.2046.0278-.3774-.0013-.3861-.065-.0087-.0638.15-.138.3546-.166.2046-.0278.3775.0013.3862.065Zm1.1803.1309c.0066.0828-.2394.17-.5494.1947s-.5667-.0225-.5733-.1053c-.0066-.0829.2394-.17.5494-.1947s.5667.0224.5733.1053Zm1.1926.0011c.0182.0838-.2006.2026-.4888.2653-.2882.0627-.5366.0456-.5548-.0382-.0182-.0839.2006-.2027.4888-.2654.2882-.0627.5366-.0455.5548.0383Zm1.2463-2.0331c.3544-.0777 1.9856-.0388 2.0292.2476.0534.2913-2.67.5437-3.2866.631-.6165.0875-.6408.2622-.6408.2622 0 .0146-.0534.1554.3495.1505.5632-.0097.9564.1068.7234.3787-.233.2719-2.8109.199-3.34 0-.5292-.199-.3204-.398-.0486-.5.2719-.0971 1.0438-.1894 1.937-.3593.8933-.1699 1.9274-.7282 2.2769-.8107Zm6.7917-9.7337a.6457.6457 0 1 1-1.2914 0 .6457.6457 0 0 1 1.2914 0ZM7.3155 13.44a.6457.6457 0 1 1-1.2914 0 .6457.6457 0 0 1 1.2914 0ZM4.325 20.023c-.3544 0-.602-.1409-.7573-.4176-.0631-.1068-.102-.2379-.1311-.3738-.0631-.335-.0437-.7282.0291-1.0972.0825-.4126.2282-.7961.3835-1.0389.1408-.2233.2719-.369.3884-.466a50.61 50.61 0 0 0 .5195 1.3205c.2378.5874.4563 1.1068.6165 1.4758-.0097.0194-.0243.034-.0388.0534-.233.3107-.5583.5437-1.0098.5437Zm15.0155-2.1944c0 .0146.0049.0388.0195.0728.0534.2913.233 1.0778.3543 1.5292-1.8642.2088-4.5051.3399-7.4325.3399-2.4759 0-4.7479-.0923-6.515-.2476a86.46 86.46 0 0 1-.6748-1.607c-.597-1.4563-1.3302-3.3933-1.5583-4.5779-.2088-1.0923-.4612-2.4176.1165-3.6119A28.5682 28.5682 0 0 1 3.32 9.697c-1.369-.1456-1.5535-.4127-1.6263-.5243-.0777-.1117-.0923-.2427-.0389-.3738.1214-.3059.534-.5826 1.0146-.8108a5.028 5.028 0 0 0 .136.2816c-.437.2088-.7768.432-.8593.6457-.0194.0437-.0097.0631.0049.0874.068.097.4611.398 2.6846.4709a.6316.6316 0 0 1-.5-.505.634.634 0 0 1 .0582-.3931c-.2039.1068-.4078.233-.602.364 0 0-1.6554-2.1748-.4709-2.8933.136-.0826.267-.1214.3981-.1214.9904 0 1.7234 2.1603 1.7234 2.1603s-.1456.0534-.3592.1505c.2621.0243.7816.1457 1.8302.568 1.068.4321 1.4952.4612 1.6118.4612A.625.625 0 0 1 9 9.3426l.034.034a22.885 22.885 0 0 0 .4563-.0389c.0485-.0048.1116-.0194.1942-.0388a.6277.6277 0 0 1 .2864-.5826.6193.6193 0 0 1 .733.0437.434.434 0 0 0 .0874-.034c.2719-.1359 1.2331-1.1602 1.9565-2.034a.616.616 0 0 1 .6117-.2137c.1941-.6553.9709-2.9759 2.1554-2.9759 1.3788 0 .5777 2.7283.4418 2.9225 0 0-.3204-.0242-.7573-.0242-.4855 0-1.1166.029-1.6312.165.0146.0097.034.0243.0534.0389.267.2184.301.6117.0825.8787-.1165.1359-.267.3204-.4417.5194.3592-.1456.733-.3058 1.1068-.466.6263-.2768 1.2089-.539 1.7234-.7914h.0098l.0048-.0097c.4418-.2136.8399-.4175 1.1748-.6068 1.17-.6554 1.3157-.9418 1.3302-1.0146.0097-.0486 0-.0631-.0048-.068-.0097-.0194-.0923-.097-.4612-.097-.403 0-.9661.0922-1.5535.2184a3.849 3.849 0 0 0 .0291-.3253c.5729-.1165 1.1214-.2039 1.5292-.2039.369 0 .5923.068.7088.2136.0534.0631.1068.1748.068.335-.0437.1893-.2428.5194-1.4807 1.2137a8.6623 8.6623 0 0 1-.3738.2039c-.0922.0534-.1942.102-.2961.1553.5582.471.9758 1.1748 1.2379 2.1943.5292 2.039.937 4.4275 1.2185 6.3208-.4612.0583-.7427.2767-.801.6311-.0631.3836.136.5923.3447.8156.2233.2379.4806.505.5631 1.1069Zm-4.84-12.331c0 .0244.0048.0195.0048.0195s.0242-.0437.063-.1165c.0438-.0728.102-.1748.17-.2961.0728-.1214.1553-.2573.2573-.3787.0485-.0583.1068-.1165.165-.1602.0632-.0437.1214-.0728.1845-.0825.0194 0 .034-.0049.0486-.0049.0145.0049.034 0 .0485.0049.0146.0048.034.0048.0486.0097l.0388.0097.0097.0048c0 .0049.0049.0049.0049.0097.0097.0146.0145.0437.0194.0777 0 .068-.0049.1505-.0194.2233-.0097.0729-.0292.1457-.0437.2136-.034.136-.0631.2476-.0826.3302-.0242.0825-.034.131-.034.131s.034-.034.0874-.102c.0534-.063.1214-.165.1942-.2912.034-.0631.0729-.136.102-.2185.0291-.0825.0582-.1747.068-.2815.0048-.0534.0048-.1165-.0195-.1845-.0048-.0194-.0145-.034-.0242-.0534l-.0146-.0243-.0194-.0243c-.0194-.029-.0971-.0776-.102-.0776l-.0097-.0049h-.0048l-.0146-.0048h-.0049l-.0194-.0097-.0437-.0146c-.0242-.0097-.0582-.0146-.0874-.0194-.029-.0049-.063-.0049-.0922-.0049-.0291.0049-.0631.0049-.0922.0097a.6844.6844 0 0 0-.3204.1554c-.0874.0728-.1505.1553-.204.2379-.1019.165-.1601.33-.199.4709-.034.1456-.0534.267-.0582.3495-.0049.0388-.0049.0728-.0049.097Zm-4.2868 3.578c-.0874.0534-.1116.165-.063.2524.0145.0195.0922.1311.2572.1942a.707.707 0 0 0 .2525.0437c.1456 0 .3058-.0388.4709-.1116.3592-.1602 1.2379-1.0487 2.2428-2.2575.0631-.0776.0534-.1942-.0242-.2573-.0437-.034-.0874-.0437-.1166-.0437a.1794.1794 0 0 0-.1407.068c-.4321.5195-1.6555 1.9225-2.0924 2.1458l-.0194.0097c-.0534.0194-.102.0388-.1505.0534l-.2233.0631-.1797-.1456c-.0291-.0292-.0728-.0437-.1165-.0437a.175.175 0 0 0-.097.029ZM9.17 14.304c.0582.335.5874.5243 1.1845.4272.5971-.097 1.039-.4515.9807-.7865-.0583-.335-.5875-.5243-1.1846-.4272-.5971.102-1.034.4564-.9806.7865ZM4.4172 7.9493a2.001 2.001 0 0 0 .0729.0922s-.0049-.0145-.0049-.034c-.0049-.0194-.0049-.0485-.0146-.0873-.0097-.0777-.0388-.1845-.0776-.3107a2.4088 2.4088 0 0 0-.1748-.4175 1.8868 1.8868 0 0 0-.1408-.2233c-.0534-.0729-.1165-.1457-.2039-.2136-.0485-.0292-.097-.0632-.165-.0826-.0146-.0048-.034-.0048-.0535-.0097h-.0728c-.0097 0-.0291.0049-.034.0049l-.029.0097-.0195.0048-.0049.0049-.0097.0048a.3371.3371 0 0 0-.1602.136.4473.4473 0 0 0-.0534.1747c-.0097.1068.0146.1942.034.272.0243.0776.0534.1504.0825.2087a1.493 1.493 0 0 0 .17.2718c.0242.0291.0436.0534.0582.068l.0243.0243s-.0097-.0437-.0243-.1166c-.0146-.0728-.0388-.1796-.0582-.301a2.2904 2.2904 0 0 1-.0243-.1941c-.0049-.068-.0049-.136.0097-.1894.0048-.0242.0146-.0437.0243-.0534.0097-.0048.0145-.0097.029-.0145h.0098l.0146-.0049c.0048 0 0 .0049 0 .0049h.0048a.2045.2045 0 0 1 .0631.034c.0486.0388.102.0922.1505.1504.0534.0632.102.1214.1457.1845.0873.1262.1747.2476.2476.3496a5.199 5.199 0 0 0 .1844.2524Zm.3544 1.0777.034.0049c.131.0146.5534.0922 1.5923.5097.8545.3447 1.5001.5195 1.9128.5195.3107 0 .3932-.0971.4223-.131.0437-.0535.0486-.1069.0437-.136-.0048-.0291-.0145-.0825-.068-.1262-.0436-.034-.0873-.0437-.1164-.0437-.0292 0-.0583.0048-.0826.0194l-.0874.0437h-.1165c-.2476 0-.7622-.0825-1.767-.4903-1.204-.4855-1.6458-.539-1.7769-.539-.0291 0-.0388 0-.0582.005-.0632.0145-.102.0533-.1166.0776-.0145.0194-.0388.0728-.029.136.0145.0873.0922.1504.1795.1504h.034Zm.0437 3.6945c0 1.1262.9127 2.0438 2.039 2.039 1.1263 0 2.039-.9128 2.039-2.039 0-1.1263-.9127-2.039-2.039-2.039s-2.039.9127-2.039 2.039Zm5.5246 3.3643c-.267.102-.5.2475-.7039.3738.0486.2184.199.7088.6311.5825.3544-.1068.1505-.733.0728-.9563Zm.6214.7816c.1166.0437.5778.0825.534-.4758-.0145-.1942-.029-.3301-.0388-.4224-.0437-.0048-.0825-.0048-.1213-.0048-.136 0-.2622-.0049-.369-.0049-.1117 0-.17.0049-.1942.0097a9.3046 9.3046 0 0 0-.1553.0292c.0388.2524.1456.7961.3446.869Zm1.7866-1.3788c.432-.1942.432-.5243.4078-.6942-.0292-.1796-.2962-.5583-1.3788-.568 0 0-.335.7816-1.2428.9273-.9078.1505-1.2962-.0243-1.4515-.2185 0 0-.8739.2573-.9467.8107-.0728.5535.6603.7477 1.0098.5535.3495-.1942.8738-.6166 1.573-.7088.3737-.0486 1.5971.0922 2.0292-.102Zm2.471-4.2333c0-1.1262-.9127-2.039-2.039-2.039s-2.039.9128-2.039 2.039c0 1.1263.9127 2.039 2.039 2.039s2.039-.9175 2.039-2.039ZM3.1162 18.1975c-.0437.267-.0728.6117-.0243.9564-.6602-.1408-1.034-.3058-1.034-.4757 0-.17.3835-.335 1.0583-.4807Zm18.4866.0389c.5729.136.8884.2864.8836.4418 0 .2476-.767.4757-2.0633.6553.233-.063.4952-.233.7962-.5146.1505-.1407.267-.3107.3495-.5a.5922.5922 0 0 0 .034-.0825Zm-.3495-.0728a1.0453 1.0453 0 0 1-.2767.3883c-.3884.369-.6214.4467-.7525.4467-.2573 0-.4466-.3593-.5583-1.0632-.0049-.0486-.0146-.0971-.0194-.1456-.0923-.6991-.4127-1.039-.6457-1.2817-.2039-.2136-.301-.3301-.2621-.5486.0534-.3155.4369-.3835.7476-.3835.1456 0 .2573.0146.2573.0146h.0194c.5728.0097 1.17.5291 1.4515 1.2525.1554.398.2185.903.0389 1.3205ZM4.7085 6.3618c-.1068-.1456-.2136-.267-.3253-.3592-.0097-.3981-.0097-.7574.0098-.8981.0388-.2622.6893-1.0244 1.2962-1.607.5097-.4903 1.4855-1.335 2.301-1.5.1263-.0243.272-.0389.4419-.0389 1.5535 0 4.6993 1.1651 4.8546 1.3205l.0097.0097c.0389-.3787.0777-.9078.0098-1.0583 0 0 .296.0922.3495.2767 0 0 .733-.738.6602-1.6554 0 0 .165 0 .1845.296 0 0 .5292-1.2524.9175-1.1408.3884.1117-.1262 1.8594-.4029 2.1895 0 0 .4418-.1068.4952-.403 0 0 .0534.2574-.0194.403 0 0 .9952-.8107.9563-1.1214 0 0 .1311.3155.0923.5534 0 0 .8253-.6602.8253-.937 0 0 .1262 1.6021-1.471 2.1895 0 0 .4224-.0534.6263-.0922 0 0-.1748.2281-.4418.5534-.1602-.102-.3496-.1505-.5632-.1505-.6408 0-1.2282.4855-1.7476 1.4419.0776-.4175-.0292-.7574-.1845-.7914-.0049-.0048-.0146-.0048-.0243-.0048-.1602 0-.3884.2767-.4806.6894-.0923.4369.0146.8058.1748.8398.0582.0146.131-.0194.2039-.0874-.1505.3593-.267.6942-.3447.9321-3.976 1.7914-6.5053 1.7527-7.656 1.573-.0825-.2137-.233-.5778-.4417-.9419-.0583-.097-.1166-.1941-.1748-.2815 2.7769.7476 6.4761-.6506 7.9568-1.2962-.0777-.2185-.0874-.5-.0194-.806.0631-.296.1942-.5485.3544-.7184-.0291-.1165-.0534-.199-.0728-.2427-.3399-.1845-3.1556-1.2331-4.6265-1.2331-.1457 0-.272.0145-.3787.034-1.301.267-3.277 2.5292-3.3497 2.8497-.0243.1553-.0146.6796.0048 1.2136Z" }) + ] + } + ); +}); + +export { SiJaeger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.cjs new file mode 100644 index 000000000..2c23715c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004027"; +const SiJameson = React__namespace.forwardRef(function SiJameson2({ title = "Jameson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.35 0a.01.01 0 0 1 .012.007l.014.052a.01.01 0 0 1-.004.01c-.594.406-1.168 1.487-.837 2.726l1.259 4.71 1.82 6.808c.373 1.398.892 2.173 1.611 2.28a.01.01 0 0 1 .008.006l.02.055a.01.01 0 0 1-.003.01c-.373.365-.678 1.27-1.064 2.102-.044.094-.084.19-.126.285-.444 1.036-1.388 3.244-4.223 4.331-3.415 1.308-6.886.483-8.35-1.94-.958-1.58-.729-3.739.827-4.614 1.35-.757 2.806-.26 3.354.86.532 1.085.165 2.242-.274 2.623-.09.08-.002.232.204.37.91.629 1.945.595 2.945.065 1.28-.677 1.735-1.84 1.071-4.323L9.278 3.94C8.947 2.7 7.91 2.05 7.194 1.998a.01.01 0 0 1-.008-.007l-.014-.052a.01.01 0 0 1 .007-.012zm1.142.288c.01-.003.017.008.01.015-.386.438-.643 1.101-.35 2.196L18.2 13.894c.534 1.997 1.44 2.106 1.869 2.233.014.004.019.021.009.032-.223.226-.78 1.574-1.043 2.227-.412 1.027-1.157 2.176-1.895 2.764-.009.006-.02-.004-.014-.013.673-1.065 1.271-2.549 1.68-3.579.195-.494.383-.937.552-1.151a.634.634 0 0 1 .056-.064c.012-.012.005-.032-.011-.033a1.228 1.228 0 0 1-.128-.016c-.35-.073-.71-.352-.97-.715-.265-.37-.491-.882-.666-1.535L14.631 2.8c-.327-1.222.144-2.287.861-2.511ZM8.715 16.25c.608.206 1.14.649 1.504 1.401a3.31 3.31 0 0 1 .165 2.502.02.02 0 0 1-.015.013.849.849 0 0 1-.533-.08.059.059 0 0 1-.029-.071c.272-.76.287-1.731-.153-2.638a2.818 2.818 0 0 0-.947-1.11c-.01-.006-.003-.02.008-.017z" }) + ] + } + ); +}); + +exports.default = SiJameson; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.d.ts new file mode 100644 index 000000000..074b33d30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004027"; +declare const SiJameson: IconType; +export { SiJameson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.mjs new file mode 100644 index 000000000..dbb04b9cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJameson.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004027"; +const SiJameson = React.forwardRef(function SiJameson2({ title = "Jameson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.35 0a.01.01 0 0 1 .012.007l.014.052a.01.01 0 0 1-.004.01c-.594.406-1.168 1.487-.837 2.726l1.259 4.71 1.82 6.808c.373 1.398.892 2.173 1.611 2.28a.01.01 0 0 1 .008.006l.02.055a.01.01 0 0 1-.003.01c-.373.365-.678 1.27-1.064 2.102-.044.094-.084.19-.126.285-.444 1.036-1.388 3.244-4.223 4.331-3.415 1.308-6.886.483-8.35-1.94-.958-1.58-.729-3.739.827-4.614 1.35-.757 2.806-.26 3.354.86.532 1.085.165 2.242-.274 2.623-.09.08-.002.232.204.37.91.629 1.945.595 2.945.065 1.28-.677 1.735-1.84 1.071-4.323L9.278 3.94C8.947 2.7 7.91 2.05 7.194 1.998a.01.01 0 0 1-.008-.007l-.014-.052a.01.01 0 0 1 .007-.012zm1.142.288c.01-.003.017.008.01.015-.386.438-.643 1.101-.35 2.196L18.2 13.894c.534 1.997 1.44 2.106 1.869 2.233.014.004.019.021.009.032-.223.226-.78 1.574-1.043 2.227-.412 1.027-1.157 2.176-1.895 2.764-.009.006-.02-.004-.014-.013.673-1.065 1.271-2.549 1.68-3.579.195-.494.383-.937.552-1.151a.634.634 0 0 1 .056-.064c.012-.012.005-.032-.011-.033a1.228 1.228 0 0 1-.128-.016c-.35-.073-.71-.352-.97-.715-.265-.37-.491-.882-.666-1.535L14.631 2.8c-.327-1.222.144-2.287.861-2.511ZM8.715 16.25c.608.206 1.14.649 1.504 1.401a3.31 3.31 0 0 1 .165 2.502.02.02 0 0 1-.015.013.849.849 0 0 1-.533-.08.059.059 0 0 1-.029-.071c.272-.76.287-1.731-.153-2.638a2.818 2.818 0 0 0-.947-1.11c-.01-.006-.003-.02.008-.017z" }) + ] + } + ); +}); + +export { SiJameson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.cjs new file mode 100644 index 000000000..a02ab2768 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0047F"; +const SiJamstack = React__namespace.forwardRef(function SiJamstack2({ title = "Jamstack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.365 0 0 5.364 0 12s5.365 12 12 12 12-5.364 12-12V0zm.496 3.318h8.17v8.17h-8.17zm-9.168 9.178h8.16v8.149c-4.382-.257-7.904-3.767-8.16-8.149zm9.168.016h8.152a8.684 8.684 0 01-8.152 8.148z" }) + ] + } + ); +}); + +exports.default = SiJamstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.d.ts new file mode 100644 index 000000000..8aa89345a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0047F"; +declare const SiJamstack: IconType; +export { SiJamstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.mjs new file mode 100644 index 000000000..72b3aaced --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJamstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0047F"; +const SiJamstack = React.forwardRef(function SiJamstack2({ title = "Jamstack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.365 0 0 5.364 0 12s5.365 12 12 12 12-5.364 12-12V0zm.496 3.318h8.17v8.17h-8.17zm-9.168 9.178h8.16v8.149c-4.382-.257-7.904-3.767-8.16-8.149zm9.168.016h8.152a8.684 8.684 0 01-8.152 8.148z" }) + ] + } + ); +}); + +export { SiJamstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.cjs new file mode 100644 index 000000000..fa13e8172 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C00000"; +const SiJapanairlines = React__namespace.forwardRef(function SiJapanairlines2({ title = "Japan Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.1381.0342a11.9956 11.9956 0 0 0-8.789 4.8388 9.3446 9.3446 0 0 0 1.3511 7.8206.014.014 0 1 1-.0219.0172A8.229 8.229 0 0 1 1.598 6.0554c0-.0152-.0116-.019-.0188-.0078A11.8789 11.8789 0 0 0 .3624 9.0653a8.7616 8.7616 0 0 0 2.421 5.3574.015.015 0 0 1-.0188.0234A7.1718 7.1718 0 0 1 .125 10.4023c0-.0152-.0195-.0152-.0203 0a12.1316 12.1316 0 0 0-.0578 2.6552 7.2198 7.2198 0 0 0 2.193 3.1536c.0159.0144.0003.0353-.0157.0265a6.5064 6.5064 0 0 1-1.954-1.7806c-.0072-.0112-.0204-.0074-.0172.0062a11.9956 11.9956 0 0 0 23.4805 0c0-.0136-.0092-.0174-.0172-.0062a6.5008 6.5008 0 0 1-1.9555 1.7806c-.0176.0088-.0316-.0121-.0156-.0265a7.223 7.223 0 0 0 2.196-3.1536h.0125a12.1284 12.1284 0 0 0-.0593-2.6552c0-.0152-.0171-.0152-.0203 0a7.1742 7.1742 0 0 1-2.6397 4.0438.015.015 0 0 1-.0187-.0234 8.7576 8.7576 0 0 0 2.4194-5.3574 11.8789 11.8789 0 0 0-1.2167-3.0177c-.008-.0112-.022-.0074-.0188.0078a8.2322 8.2322 0 0 1-2.079 6.6554.0145.0145 0 1 1-.0233-.0172 9.3422 9.3422 0 0 0 1.3526-7.8206A11.9956 11.9956 0 0 0 11.138.0342zm.0438.3108a7.7212 7.7212 0 0 1 6.2383 13.1733l-.0016.0016c-2.4535 2.3871-6.1174.8622-5.7448-2.0695.2863-2.26 3.0575-4.5112 5.156-5.7323a.016.016 0 0 0 0-.0266c-.2751-.2623-.8466-.8526-1.2136-1.2964a2.4127 2.4127 0 0 0-3.8549.0672l-6.0321.5591a.0188.0188 0 0 0 0 .0375l6.4663.3749c1.1468.0647 1.5207 1.1057.4155 1.943-4.1073 3.1133-4.8401 6.4075-3.9189 9.0186a.0171.0171 0 0 1-.0312.014 5.3045 5.3045 0 0 1-.8138-1.8758A7.7212 7.7212 0 0 1 11.1818.345ZM9.12 17.3357h1.6353l-.8746 2.2804a2.1952 2.1952 0 0 1-2.3382 1.262 5.3005 5.3005 0 0 1-1.1387-.1124l.2796-.7279c.7485.0872 1.3905.0216 1.6416-.6326zm3.8658 0h1.4635l.328 3.43h-1.6369l-.025-.678H11.638l-.5435.678h-1.351l2.7395-3.1754a.7005.7005 0 0 1 .503-.2546zm3.5456 0h1.6353l-1.0387 2.7037h2.079l-.2796.7263h-3.7112zm-3.4707.998-.8793 1.0965h.92z" }) + ] + } + ); +}); + +exports.default = SiJapanairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.d.ts new file mode 100644 index 000000000..6c42d32f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C00000"; +declare const SiJapanairlines: IconType; +export { SiJapanairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.mjs new file mode 100644 index 000000000..6e67d3807 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJapanairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C00000"; +const SiJapanairlines = React.forwardRef(function SiJapanairlines2({ title = "Japan Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.1381.0342a11.9956 11.9956 0 0 0-8.789 4.8388 9.3446 9.3446 0 0 0 1.3511 7.8206.014.014 0 1 1-.0219.0172A8.229 8.229 0 0 1 1.598 6.0554c0-.0152-.0116-.019-.0188-.0078A11.8789 11.8789 0 0 0 .3624 9.0653a8.7616 8.7616 0 0 0 2.421 5.3574.015.015 0 0 1-.0188.0234A7.1718 7.1718 0 0 1 .125 10.4023c0-.0152-.0195-.0152-.0203 0a12.1316 12.1316 0 0 0-.0578 2.6552 7.2198 7.2198 0 0 0 2.193 3.1536c.0159.0144.0003.0353-.0157.0265a6.5064 6.5064 0 0 1-1.954-1.7806c-.0072-.0112-.0204-.0074-.0172.0062a11.9956 11.9956 0 0 0 23.4805 0c0-.0136-.0092-.0174-.0172-.0062a6.5008 6.5008 0 0 1-1.9555 1.7806c-.0176.0088-.0316-.0121-.0156-.0265a7.223 7.223 0 0 0 2.196-3.1536h.0125a12.1284 12.1284 0 0 0-.0593-2.6552c0-.0152-.0171-.0152-.0203 0a7.1742 7.1742 0 0 1-2.6397 4.0438.015.015 0 0 1-.0187-.0234 8.7576 8.7576 0 0 0 2.4194-5.3574 11.8789 11.8789 0 0 0-1.2167-3.0177c-.008-.0112-.022-.0074-.0188.0078a8.2322 8.2322 0 0 1-2.079 6.6554.0145.0145 0 1 1-.0233-.0172 9.3422 9.3422 0 0 0 1.3526-7.8206A11.9956 11.9956 0 0 0 11.138.0342zm.0438.3108a7.7212 7.7212 0 0 1 6.2383 13.1733l-.0016.0016c-2.4535 2.3871-6.1174.8622-5.7448-2.0695.2863-2.26 3.0575-4.5112 5.156-5.7323a.016.016 0 0 0 0-.0266c-.2751-.2623-.8466-.8526-1.2136-1.2964a2.4127 2.4127 0 0 0-3.8549.0672l-6.0321.5591a.0188.0188 0 0 0 0 .0375l6.4663.3749c1.1468.0647 1.5207 1.1057.4155 1.943-4.1073 3.1133-4.8401 6.4075-3.9189 9.0186a.0171.0171 0 0 1-.0312.014 5.3045 5.3045 0 0 1-.8138-1.8758A7.7212 7.7212 0 0 1 11.1818.345ZM9.12 17.3357h1.6353l-.8746 2.2804a2.1952 2.1952 0 0 1-2.3382 1.262 5.3005 5.3005 0 0 1-1.1387-.1124l.2796-.7279c.7485.0872 1.3905.0216 1.6416-.6326zm3.8658 0h1.4635l.328 3.43h-1.6369l-.025-.678H11.638l-.5435.678h-1.351l2.7395-3.1754a.7005.7005 0 0 1 .503-.2546zm3.5456 0h1.6353l-1.0387 2.7037h2.079l-.2796.7263h-3.7112zm-3.4707.998-.8793 1.0965h.92z" }) + ] + } + ); +}); + +export { SiJapanairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.cjs new file mode 100644 index 000000000..68443e53f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8A4182"; +const SiJasmine = React__namespace.forwardRef(function SiJasmine2({ title = "Jasmine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.591 19.649h.771v-3.786h-.77zm-6.874-5.03l-.238-.733 3.6-1.17.238.735-3.6 1.17m4.645-5.762L7.138 5.796l.624-.453 2.224 3.062-.624.454m5.315.028l-.624-.454 2.225-3.062.624.453-2.225 3.063m4.592 5.78l-3.6-1.17.238-.734 3.6 1.17-.238.733M12 .001C5.383.001 0 5.384 0 11.998 0 18.617 5.383 24 12 24s12-5.382 12-12c0-6.617-5.383-12-12-12zm0 2.43c5.284 0 9.569 4.283 9.569 9.567 0 5.287-4.285 9.573-9.569 9.573-5.286 0-9.57-4.286-9.57-9.573 0-5.284 4.285-9.567 9.57-9.567m1.552 7.96l.575 1.768.747.242 4.736-1.538-.86-2.645-4.736 1.539-.462.635m.337 2.5l-1.504 1.093v.785l2.927 4.03 2.25-1.636-2.927-4.029-.746-.243m-2.275 1.093l-1.504-1.093-.747.243-2.927 4.029 2.25 1.635 2.928-4.029v-.785M9.873 12.16l.574-1.767-.462-.635-4.736-1.54-.86 2.646 4.737 1.54.747-.244m1.198-2.22h1.859l.462-.636v-4.98H10.61v4.98l.461.636" }) + ] + } + ); +}); + +exports.default = SiJasmine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.d.ts new file mode 100644 index 000000000..02cc17c9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8A4182"; +declare const SiJasmine: IconType; +export { SiJasmine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.mjs new file mode 100644 index 000000000..70ce2536a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJasmine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8A4182"; +const SiJasmine = React.forwardRef(function SiJasmine2({ title = "Jasmine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.591 19.649h.771v-3.786h-.77zm-6.874-5.03l-.238-.733 3.6-1.17.238.735-3.6 1.17m4.645-5.762L7.138 5.796l.624-.453 2.224 3.062-.624.454m5.315.028l-.624-.454 2.225-3.062.624.453-2.225 3.063m4.592 5.78l-3.6-1.17.238-.734 3.6 1.17-.238.733M12 .001C5.383.001 0 5.384 0 11.998 0 18.617 5.383 24 12 24s12-5.382 12-12c0-6.617-5.383-12-12-12zm0 2.43c5.284 0 9.569 4.283 9.569 9.567 0 5.287-4.285 9.573-9.569 9.573-5.286 0-9.57-4.286-9.57-9.573 0-5.284 4.285-9.567 9.57-9.567m1.552 7.96l.575 1.768.747.242 4.736-1.538-.86-2.645-4.736 1.539-.462.635m.337 2.5l-1.504 1.093v.785l2.927 4.03 2.25-1.636-2.927-4.029-.746-.243m-2.275 1.093l-1.504-1.093-.747.243-2.927 4.029 2.25 1.635 2.928-4.029v-.785M9.873 12.16l.574-1.767-.462-.635-4.736-1.54-.86 2.646 4.737 1.54.747-.244m1.198-2.22h1.859l.462-.636v-4.98H10.61v4.98l.461.636" }) + ] + } + ); +}); + +export { SiJasmine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.cjs new file mode 100644 index 000000000..d7c860f9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7DF1E"; +const SiJavascript = React__namespace.forwardRef(function SiJavascript2({ title = "JavaScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h24v24H0V0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65l.046.067zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179l.004-.056z" }) + ] + } + ); +}); + +exports.default = SiJavascript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.d.ts new file mode 100644 index 000000000..2122729da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7DF1E"; +declare const SiJavascript: IconType; +export { SiJavascript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.mjs new file mode 100644 index 000000000..73867f8f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJavascript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7DF1E"; +const SiJavascript = React.forwardRef(function SiJavascript2({ title = "JavaScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0h24v24H0V0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65l.046.067zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179l.004-.056z" }) + ] + } + ); +}); + +export { SiJavascript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.cjs new file mode 100644 index 000000000..663bf887f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3300"; +const SiJbl = React__namespace.forwardRef(function SiJbl2({ title = "JBL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 5.2645l2.0221 4.5892 2.0217-4.5892zm2.0221 7.601c.6982 0 1.2656-.5655 1.2656-1.2606 0-.6985-.5674-1.2618-1.2656-1.2618-.7003 0-1.2661.5633-1.2661 1.2618 0 .6951.5658 1.2607 1.2661 1.2607zm-1.0937 3.361c0 .9572.862 2.509 3.3142 2.509 2.4529 0 3.3154-1.1872 3.3154-2.509V5.2645H5.3693l.0011 11.3428c0 .6196-.5037 1.1392-1.1261 1.1392-.6231 0-1.1279-.5045-1.1279-1.124l-.0016-2.3108H.9284zm8.2885 2.3119V5.2645h4.3745c.8441 0 2.187.693 2.187 2.1628v2.2611c0 .6612-.5798 1.8328-1.4412 1.8328.8614 0 1.4412.7422 1.4412 1.3045v3.9788c0 .6767-.5463 1.7339-2.187 1.7339zm3.3802-7.559c.7955 0 .9944-.134.9944-2.2147 0-2.0801-.199-2.246-.9944-2.246h-1.1948v4.4575zm.9944 3.8108c0-2.0812 0-2.6906-.8636-2.6906h-1.3256v5.3482l1.3255.0027c.8636 0 .8636-.5807.8636-2.6603zm3.779 3.7482H24v-4.2267h-2.1886l.0016 2.3107c0 .6196-.5047 1.1241-1.1273 1.1241-.622 0-1.1273-.5045-1.1273-1.124V5.2644h-2.188Z" }) + ] + } + ); +}); + +exports.default = SiJbl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.d.ts new file mode 100644 index 000000000..3226c2c3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3300"; +declare const SiJbl: IconType; +export { SiJbl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.mjs new file mode 100644 index 000000000..c93502ad2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJbl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3300"; +const SiJbl = React.forwardRef(function SiJbl2({ title = "JBL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 5.2645l2.0221 4.5892 2.0217-4.5892zm2.0221 7.601c.6982 0 1.2656-.5655 1.2656-1.2606 0-.6985-.5674-1.2618-1.2656-1.2618-.7003 0-1.2661.5633-1.2661 1.2618 0 .6951.5658 1.2607 1.2661 1.2607zm-1.0937 3.361c0 .9572.862 2.509 3.3142 2.509 2.4529 0 3.3154-1.1872 3.3154-2.509V5.2645H5.3693l.0011 11.3428c0 .6196-.5037 1.1392-1.1261 1.1392-.6231 0-1.1279-.5045-1.1279-1.124l-.0016-2.3108H.9284zm8.2885 2.3119V5.2645h4.3745c.8441 0 2.187.693 2.187 2.1628v2.2611c0 .6612-.5798 1.8328-1.4412 1.8328.8614 0 1.4412.7422 1.4412 1.3045v3.9788c0 .6767-.5463 1.7339-2.187 1.7339zm3.3802-7.559c.7955 0 .9944-.134.9944-2.2147 0-2.0801-.199-2.246-.9944-2.246h-1.1948v4.4575zm.9944 3.8108c0-2.0812 0-2.6906-.8636-2.6906h-1.3256v5.3482l1.3255.0027c.8636 0 .8636-.5807.8636-2.6603zm3.779 3.7482H24v-4.2267h-2.1886l.0016 2.3107c0 .6196-.5047 1.1241-1.1273 1.1241-.622 0-1.1273-.5045-1.1273-1.124V5.2644h-2.188Z" }) + ] + } + ); +}); + +export { SiJbl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.cjs new file mode 100644 index 000000000..841bab2d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B4EA2"; +const SiJcb = React__namespace.forwardRef(function SiJcb2({ title = "JCB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.05 9.8643c.9723.0736 1.7257.3671 2.3545.6843v-1.31s-1.2577-.3162-2.4408-.368c-4.1256-.1849-5.295 1.4344-5.295 3.1292 0 1.6947 1.1694 3.3145 5.295 3.1296 1.1831-.0536 2.4408-.3694 2.4408-.3694v-1.3086c-.6193.3081-1.3826.6107-2.3545.683-1.6793.1272-2.6898-.6907-2.6898-2.1342 0-1.4448 1.0105-2.2613 2.6898-2.1354m7.685 4.1223c-.0513.0105-.1581.02-.215.02h-1.8005V12.376H20.52c.0568 0 .1636.01.2149.02a.8056.8056 0 01.6325.7951c0 .4162-.2872.721-.6325.796zm-2.0155-4.0374h1.6325c.059 0 .1454.0077.1772.0137.3376.0572.6256.3307.6256.7392 0 .409-.288.6815-.626.7392a1.571 1.571 0 01-.1773.0137h-1.6311V9.9506zm3.4994 1.9856v-.0364c.9133-.1331 1.4149-.726 1.4149-1.4199 0-.8828-.7343-1.3916-1.7293-1.4416-.0772-.0032-.203-.011-.3044-.011h-5.3323v5.9467h5.7548c1.13 0 1.9774-.6043 1.9774-1.5466 0-.8701-.7724-1.4222-1.781-1.4917zm-17.8644.6788c0 .8787-.5906 1.5311-1.6656 1.5311-.917 0-1.8174-.2726-2.6889-.6938V14.76s1.4021.383 3.191.383c2.9714 0 3.8374-1.125 3.8374-2.529V9.0266H4.3541v3.5876Z" }) + ] + } + ); +}); + +exports.default = SiJcb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.d.ts new file mode 100644 index 000000000..a3f4f6c94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B4EA2"; +declare const SiJcb: IconType; +export { SiJcb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.mjs new file mode 100644 index 000000000..6c7a2c031 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJcb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B4EA2"; +const SiJcb = React.forwardRef(function SiJcb2({ title = "JCB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.05 9.8643c.9723.0736 1.7257.3671 2.3545.6843v-1.31s-1.2577-.3162-2.4408-.368c-4.1256-.1849-5.295 1.4344-5.295 3.1292 0 1.6947 1.1694 3.3145 5.295 3.1296 1.1831-.0536 2.4408-.3694 2.4408-.3694v-1.3086c-.6193.3081-1.3826.6107-2.3545.683-1.6793.1272-2.6898-.6907-2.6898-2.1342 0-1.4448 1.0105-2.2613 2.6898-2.1354m7.685 4.1223c-.0513.0105-.1581.02-.215.02h-1.8005V12.376H20.52c.0568 0 .1636.01.2149.02a.8056.8056 0 01.6325.7951c0 .4162-.2872.721-.6325.796zm-2.0155-4.0374h1.6325c.059 0 .1454.0077.1772.0137.3376.0572.6256.3307.6256.7392 0 .409-.288.6815-.626.7392a1.571 1.571 0 01-.1773.0137h-1.6311V9.9506zm3.4994 1.9856v-.0364c.9133-.1331 1.4149-.726 1.4149-1.4199 0-.8828-.7343-1.3916-1.7293-1.4416-.0772-.0032-.203-.011-.3044-.011h-5.3323v5.9467h5.7548c1.13 0 1.9774-.6043 1.9774-1.5466 0-.8701-.7724-1.4222-1.781-1.4917zm-17.8644.6788c0 .8787-.5906 1.5311-1.6656 1.5311-.917 0-1.8174-.2726-2.6889-.6938V14.76s1.4021.383 3.191.383c2.9714 0 3.8374-1.125 3.8374-2.529V9.0266H4.3541v3.5876Z" }) + ] + } + ); +}); + +export { SiJcb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.cjs new file mode 100644 index 000000000..f24904304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD5200"; +const SiJdoodle = React__namespace.forwardRef(function SiJdoodle2({ title = "JDoodle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.85 4.396a.712.712 0 0 0-.046.976l2.583 2.553a.734.734 0 0 0 .988-.046.721.721 0 0 0 0-1.035L3.898 4.396a.743.743 0 0 0-1.048 0zm18.305-.004a.712.712 0 0 1 .047.977l-2.583 2.553a.734.734 0 0 1-.988-.046.721.721 0 0 1 0-1.036l2.477-2.448a.743.743 0 0 1 1.047 0zm-16.65 9.045a.732.732 0 0 1-.742.732h-2.27a.738.738 0 0 1-.741-.732c0-.408.338-.732.74-.732h2.271c.413 0 .741.333.741.732zm7.49-11.123c.413 0 .742.324.742.732v2.243a.738.738 0 0 1-.741.732.738.738 0 0 1-.742-.732V3.046c0-.408.338-.732.742-.732zm11.257 11.132a.732.732 0 0 1-.741.732h-2.27a.738.738 0 0 1-.742-.732c0-.408.338-.732.742-.732h2.27c.413 0 .741.333.741.732zm-10.135 4.06c-.03 0-.036-.048-.007-.056 1.738-.484 3.04-2.105 3.04-3.984-.001-2.274-1.879-4.134-4.133-4.132-2.266.015-4.119 1.898-4.105 4.159a4.142 4.142 0 0 0 3.048 3.955c.029.008.023.057-.007.057l-2.733.006a.197.197 0 0 1-.14-.057 5.717 5.717 0 0 1-1.683-3.926c-.056-3.04 2.531-5.682 5.586-5.714 3.055-.032 5.675 2.577 5.683 5.63-.003 1.54-.667 2.977-1.704 4.01a.198.198 0 0 1-.14.057zM24 17.92c0 .804-.244 1.417-.72 1.853-.482.436-1.128.654-1.922.654h-7.156a1.862 1.862 0 0 0-.208-.012c-.804 0-1.21.5-1.457 1.203a.102.102 0 0 1-.096.07h-.874a.1.1 0 0 1-.095-.07c-.152-.457-.24-.826-.69-1.024-.217-.112-.489-.167-.812-.167H2.642c-.808 0-1.446-.218-1.922-.654-.475-.436-.72-1.049-.72-1.853 0-.098.004-.196.012-.292a.099.099 0 0 1 .099-.09h1.026c.065 0 .114.06.113.125v.066c0 .388.121.695.366.913.244.218.598.327 1.073.327h7.32c.795 0 1.427.218 1.91.66.026.028.053.055.074.083.026-.028.054-.055.081-.082.482-.443 1.12-.661 1.909-.661h7.327c.469 0 .829-.109 1.073-.327.244-.218.36-.525.36-.913v-.066c-.002-.064.048-.125.112-.125h1.034c.051 0 .095.039.099.09.008.095.011.193.011.292z" }) + ] + } + ); +}); + +exports.default = SiJdoodle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.d.ts new file mode 100644 index 000000000..11a48c062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD5200"; +declare const SiJdoodle: IconType; +export { SiJdoodle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.mjs new file mode 100644 index 000000000..54e9516c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJdoodle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD5200"; +const SiJdoodle = React.forwardRef(function SiJdoodle2({ title = "JDoodle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.85 4.396a.712.712 0 0 0-.046.976l2.583 2.553a.734.734 0 0 0 .988-.046.721.721 0 0 0 0-1.035L3.898 4.396a.743.743 0 0 0-1.048 0zm18.305-.004a.712.712 0 0 1 .047.977l-2.583 2.553a.734.734 0 0 1-.988-.046.721.721 0 0 1 0-1.036l2.477-2.448a.743.743 0 0 1 1.047 0zm-16.65 9.045a.732.732 0 0 1-.742.732h-2.27a.738.738 0 0 1-.741-.732c0-.408.338-.732.74-.732h2.271c.413 0 .741.333.741.732zm7.49-11.123c.413 0 .742.324.742.732v2.243a.738.738 0 0 1-.741.732.738.738 0 0 1-.742-.732V3.046c0-.408.338-.732.742-.732zm11.257 11.132a.732.732 0 0 1-.741.732h-2.27a.738.738 0 0 1-.742-.732c0-.408.338-.732.742-.732h2.27c.413 0 .741.333.741.732zm-10.135 4.06c-.03 0-.036-.048-.007-.056 1.738-.484 3.04-2.105 3.04-3.984-.001-2.274-1.879-4.134-4.133-4.132-2.266.015-4.119 1.898-4.105 4.159a4.142 4.142 0 0 0 3.048 3.955c.029.008.023.057-.007.057l-2.733.006a.197.197 0 0 1-.14-.057 5.717 5.717 0 0 1-1.683-3.926c-.056-3.04 2.531-5.682 5.586-5.714 3.055-.032 5.675 2.577 5.683 5.63-.003 1.54-.667 2.977-1.704 4.01a.198.198 0 0 1-.14.057zM24 17.92c0 .804-.244 1.417-.72 1.853-.482.436-1.128.654-1.922.654h-7.156a1.862 1.862 0 0 0-.208-.012c-.804 0-1.21.5-1.457 1.203a.102.102 0 0 1-.096.07h-.874a.1.1 0 0 1-.095-.07c-.152-.457-.24-.826-.69-1.024-.217-.112-.489-.167-.812-.167H2.642c-.808 0-1.446-.218-1.922-.654-.475-.436-.72-1.049-.72-1.853 0-.098.004-.196.012-.292a.099.099 0 0 1 .099-.09h1.026c.065 0 .114.06.113.125v.066c0 .388.121.695.366.913.244.218.598.327 1.073.327h7.32c.795 0 1.427.218 1.91.66.026.028.053.055.074.083.026-.028.054-.055.081-.082.482-.443 1.12-.661 1.909-.661h7.327c.469 0 .829-.109 1.073-.327.244-.218.36-.525.36-.913v-.066c-.002-.064.048-.125.112-.125h1.034c.051 0 .095.039.099.09.008.095.011.193.011.292z" }) + ] + } + ); +}); + +export { SiJdoodle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.cjs new file mode 100644 index 000000000..cd55d2133 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJeep = React__namespace.forwardRef(function SiJeep2({ title = "Jeep", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.1651 7.1687v5.2011c0 .6762-.444 1.0777-1.1628 1.0777-.7185 0-1.0992-.5283-1.0992-1.0992v-.9299H0v.9514c0 .972.296 2.7068 3.0235 2.7068 2.7272 0 3.1082-1.8614 3.1082-2.7488V7.1687Zm4.9177 2.1562c-1.7973 0-2.6003 1.6485-2.6003 3.0657 0 1.4168.9094 2.7912 2.7695 2.7912 1.6285.021 2.707-1.0361 2.707-1.8187h-1.7977s-.2113.5078-.8458.5078c-.6343 0-.9934-.3596-.9934-1.2265h3.6576c0-2.7277-1.3526-3.3195-2.897-3.3195zm5.8471 0c-1.7968 0-2.6007 1.6485-2.6007 3.0657 0 1.4168.9094 2.7912 2.7705 2.7912 1.628.021 2.7067-1.0361 2.7067-1.8187h-1.7978s-.2116.5078-.8454.5078c-.6348 0-.9942-.3596-.9942-1.2265h3.6574c0-2.7277-1.3523-3.3195-2.8965-3.3195zm6.7435.0635c-.9132 0-1.3186.4962-1.3401.522-.1283.1538-.2875.3165-.2875-.0782v-.2959h-1.8193v7.295h1.8398V14.822c0-.148.1478-.126.2543 0 .1063.1277.5711.4443 1.3752.4443C23.155 15.2663 24 13.9978 24 12.264c0-2.2415-1.4162-2.8757-2.3266-2.8756Zm-12.401 1.1203c.6766 0 .972.5073.972 1.0365H8.3843c0-.5718.2327-1.0365.8882-1.0365zm5.8468 0c.6767 0 .9724.5073.9724 1.0365H14.231c0-.5718.2332-1.0365.8883-1.0365zm5.9204.296c.9318 0 1.1.7189 1.1 1.4593 0 .74-.1272 1.7124-1.0141 1.7124-.8884 0-1.1212-.5709-1.1017-1.6486.022-1.0788.4441-1.523 1.0158-1.523zm2.2813 4.5664a.5855.5855 0 0 0-.5856.5857c0 .3233.2617.5856.5856.5856.3218 0 .585-.2623.585-.5856 0-.3233-.2632-.5857-.585-.5857zm0 .062a.524.524 0 0 1 .5236.5237c0 .2884-.2346.5246-.5236.5246a.5258.5258 0 0 1-.525-.5246c0-.289.2352-.5236.525-.5236zm-.2108.2024v.6208h.0725v-.2689h.1764l.1159.269h.0806l-.1216-.2873c.0386-.0133.0514-.0227.072-.0447.0266-.0287.0434-.0739.0434-.115 0-.1034-.0796-.174-.195-.174zm.0705.0676h.1722c.072 0 .1177.041.1177.1045 0 .072-.0485.1168-.1278.1168h-.1621z" }) + ] + } + ); +}); + +exports.default = SiJeep; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.d.ts new file mode 100644 index 000000000..cfd74bdf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJeep: IconType; +export { SiJeep as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.mjs new file mode 100644 index 000000000..725bfd704 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJeep.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJeep = React.forwardRef(function SiJeep2({ title = "Jeep", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.1651 7.1687v5.2011c0 .6762-.444 1.0777-1.1628 1.0777-.7185 0-1.0992-.5283-1.0992-1.0992v-.9299H0v.9514c0 .972.296 2.7068 3.0235 2.7068 2.7272 0 3.1082-1.8614 3.1082-2.7488V7.1687Zm4.9177 2.1562c-1.7973 0-2.6003 1.6485-2.6003 3.0657 0 1.4168.9094 2.7912 2.7695 2.7912 1.6285.021 2.707-1.0361 2.707-1.8187h-1.7977s-.2113.5078-.8458.5078c-.6343 0-.9934-.3596-.9934-1.2265h3.6576c0-2.7277-1.3526-3.3195-2.897-3.3195zm5.8471 0c-1.7968 0-2.6007 1.6485-2.6007 3.0657 0 1.4168.9094 2.7912 2.7705 2.7912 1.628.021 2.7067-1.0361 2.7067-1.8187h-1.7978s-.2116.5078-.8454.5078c-.6348 0-.9942-.3596-.9942-1.2265h3.6574c0-2.7277-1.3523-3.3195-2.8965-3.3195zm6.7435.0635c-.9132 0-1.3186.4962-1.3401.522-.1283.1538-.2875.3165-.2875-.0782v-.2959h-1.8193v7.295h1.8398V14.822c0-.148.1478-.126.2543 0 .1063.1277.5711.4443 1.3752.4443C23.155 15.2663 24 13.9978 24 12.264c0-2.2415-1.4162-2.8757-2.3266-2.8756Zm-12.401 1.1203c.6766 0 .972.5073.972 1.0365H8.3843c0-.5718.2327-1.0365.8882-1.0365zm5.8468 0c.6767 0 .9724.5073.9724 1.0365H14.231c0-.5718.2332-1.0365.8883-1.0365zm5.9204.296c.9318 0 1.1.7189 1.1 1.4593 0 .74-.1272 1.7124-1.0141 1.7124-.8884 0-1.1212-.5709-1.1017-1.6486.022-1.0788.4441-1.523 1.0158-1.523zm2.2813 4.5664a.5855.5855 0 0 0-.5856.5857c0 .3233.2617.5856.5856.5856.3218 0 .585-.2623.585-.5856 0-.3233-.2632-.5857-.585-.5857zm0 .062a.524.524 0 0 1 .5236.5237c0 .2884-.2346.5246-.5236.5246a.5258.5258 0 0 1-.525-.5246c0-.289.2352-.5236.525-.5236zm-.2108.2024v.6208h.0725v-.2689h.1764l.1159.269h.0806l-.1216-.2873c.0386-.0133.0514-.0227.072-.0447.0266-.0287.0434-.0739.0434-.115 0-.1034-.0796-.174-.195-.174zm.0705.0676h.1722c.072 0 .1177.041.1177.1045 0 .072-.0485.1168-.1278.1168h-.1621z" }) + ] + } + ); +}); + +export { SiJeep as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.cjs new file mode 100644 index 000000000..f2f447a5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiJekyll = React__namespace.forwardRef(function SiJekyll2({ title = "Jekyll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.073 24c-.348 0-.689-.063-1.02-.189-1.375-.525-2.104-2.02-1.726-3.402l-.015-.006.09-.226L12.399 2.01c.105-.27.057-.91.006-1.267-.016-.085-.016-.161.008-.24l.008-.023.006-.015V.458l.009-.019c.108-.292.45-.439 1.008-.439.673 0 1.602.21 2.551.573.797.307 1.523.689 2.033 1.075.602.45.842.854.707 1.2l-.031.045-.016.015c-.045.061-.09.12-.15.165-.314.271-.764.735-.84.945l-7.063 18.421-.016-.006c-.494.948-1.457 1.557-2.543 1.561H8.07l.003.006zm-2.187-3.718l-.02.05c-.447 1.201.162 2.557 1.364 3.018.271.105.551.154.837.154.971 0 1.83-.585 2.188-1.5l.027-.061 6.959-18.09c.146-.39.84-1.02.979-1.14l.016-.016c.012-.015.02-.015.02-.03 0-.06-.061-.27-.557-.645-.479-.36-1.154-.72-1.904-1.005-.868-.328-1.768-.539-2.368-.539-.39 0-.524.082-.545.126v.04c.016.104.147 1.035-.034 1.515l-6.962 18.12v.003zm8.95-11.507s-.964 1.109-1.843 1.509c-.88.398-1.529.293-2.32.756-.789.461-1.188 1.103-1.188 1.103L6.27 20.505c-.348.944.168 2.05 1.125 2.42.96.369 2.04-.12 2.412-1.056l5.029-13.094zM9.905 18.76c.104-.041.225 0 .266.105.042.104 0 .222-.105.264-.104.043-.225 0-.266-.104-.042-.097 0-.216.105-.265zm-1.014-1.802c-.152.068-.334 0-.397-.155-.07-.152 0-.334.154-.397.154-.07.335 0 .398.153.074.15.008.314-.155.39v.009zm.286-1.096c-.123-.288 0-.623.287-.758.285-.124.615 0 .75.285.121.289 0 .624-.285.757-.3.126-.629 0-.765-.285l.013.001zm2.426-2.258c.153-.074.335 0 .398.15.07.154 0 .336-.153.399-.155.07-.337 0-.399-.155-.074-.152 0-.334.154-.397v.003zm-1.293-1.379c.105-.042.226 0 .266.105.043.104 0 .226-.104.266-.104.042-.226 0-.265-.104-.044-.106.006-.227.103-.267zM13.681 1.14c.1-.261.993-.162 1.995.226.999.384 1.729.909 1.63 1.17-.104.264-.997.164-1.996-.221-1.005-.385-1.734-.91-1.632-1.176h.003z" }) + ] + } + ); +}); + +exports.default = SiJekyll; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.d.ts new file mode 100644 index 000000000..2906d93ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiJekyll: IconType; +export { SiJekyll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.mjs new file mode 100644 index 000000000..7eec05175 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJekyll.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiJekyll = React.forwardRef(function SiJekyll2({ title = "Jekyll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.073 24c-.348 0-.689-.063-1.02-.189-1.375-.525-2.104-2.02-1.726-3.402l-.015-.006.09-.226L12.399 2.01c.105-.27.057-.91.006-1.267-.016-.085-.016-.161.008-.24l.008-.023.006-.015V.458l.009-.019c.108-.292.45-.439 1.008-.439.673 0 1.602.21 2.551.573.797.307 1.523.689 2.033 1.075.602.45.842.854.707 1.2l-.031.045-.016.015c-.045.061-.09.12-.15.165-.314.271-.764.735-.84.945l-7.063 18.421-.016-.006c-.494.948-1.457 1.557-2.543 1.561H8.07l.003.006zm-2.187-3.718l-.02.05c-.447 1.201.162 2.557 1.364 3.018.271.105.551.154.837.154.971 0 1.83-.585 2.188-1.5l.027-.061 6.959-18.09c.146-.39.84-1.02.979-1.14l.016-.016c.012-.015.02-.015.02-.03 0-.06-.061-.27-.557-.645-.479-.36-1.154-.72-1.904-1.005-.868-.328-1.768-.539-2.368-.539-.39 0-.524.082-.545.126v.04c.016.104.147 1.035-.034 1.515l-6.962 18.12v.003zm8.95-11.507s-.964 1.109-1.843 1.509c-.88.398-1.529.293-2.32.756-.789.461-1.188 1.103-1.188 1.103L6.27 20.505c-.348.944.168 2.05 1.125 2.42.96.369 2.04-.12 2.412-1.056l5.029-13.094zM9.905 18.76c.104-.041.225 0 .266.105.042.104 0 .222-.105.264-.104.043-.225 0-.266-.104-.042-.097 0-.216.105-.265zm-1.014-1.802c-.152.068-.334 0-.397-.155-.07-.152 0-.334.154-.397.154-.07.335 0 .398.153.074.15.008.314-.155.39v.009zm.286-1.096c-.123-.288 0-.623.287-.758.285-.124.615 0 .75.285.121.289 0 .624-.285.757-.3.126-.629 0-.765-.285l.013.001zm2.426-2.258c.153-.074.335 0 .398.15.07.154 0 .336-.153.399-.155.07-.337 0-.399-.155-.074-.152 0-.334.154-.397v.003zm-1.293-1.379c.105-.042.226 0 .266.105.043.104 0 .226-.104.266-.104.042-.226 0-.265-.104-.044-.106.006-.227.103-.267zM13.681 1.14c.1-.261.993-.162 1.995.226.999.384 1.729.909 1.63 1.17-.104.264-.997.164-1.996-.221-1.005-.385-1.734-.91-1.632-1.176h.003z" }) + ] + } + ); +}); + +export { SiJekyll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.cjs new file mode 100644 index 000000000..ab41bbfa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A4DC"; +const SiJellyfin = React__namespace.forwardRef(function SiJellyfin2({ title = "Jellyfin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .002C8.826.002-1.398 18.537.16 21.666c1.56 3.129 22.14 3.094 23.682 0C25.384 18.573 15.177 0 12 0zm7.76 18.949c-1.008 2.028-14.493 2.05-15.514 0C3.224 16.9 9.92 4.755 12.003 4.755c2.081 0 8.77 12.166 7.759 14.196zM12 9.198c-1.054 0-4.446 6.15-3.93 7.189.518 1.04 7.348 1.027 7.86 0 .511-1.027-2.874-7.19-3.93-7.19z" }) + ] + } + ); +}); + +exports.default = SiJellyfin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.d.ts new file mode 100644 index 000000000..27fc3dac9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A4DC"; +declare const SiJellyfin: IconType; +export { SiJellyfin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.mjs new file mode 100644 index 000000000..042e014e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJellyfin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A4DC"; +const SiJellyfin = React.forwardRef(function SiJellyfin2({ title = "Jellyfin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .002C8.826.002-1.398 18.537.16 21.666c1.56 3.129 22.14 3.094 23.682 0C25.384 18.573 15.177 0 12 0zm7.76 18.949c-1.008 2.028-14.493 2.05-15.514 0C3.224 16.9 9.92 4.755 12.003 4.755c2.081 0 8.77 12.166 7.759 14.196zM12 9.198c-1.054 0-4.446 6.15-3.93 7.189.518 1.04 7.348 1.027 7.86 0 .511-1.027-2.874-7.19-3.93-7.19z" }) + ] + } + ); +}); + +export { SiJellyfin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.cjs new file mode 100644 index 000000000..37afdadaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D24939"; +const SiJenkins = React__namespace.forwardRef(function SiJenkins2({ title = "Jenkins", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.872 24h-.975a3.866 3.866 0 01-.07-.197c-.215-.666-.594-1.49-.692-2.154-.146-.984.78-1.039 1.374-1.465.915-.66 1.635-1.025 2.627-1.62.295-.179 1.182-.624 1.281-.829.201-.408-.345-.982-.49-1.3-.225-.507-.345-.937-.376-1.435-.824-.13-1.455-.627-1.844-1.185-.63-.925-1.066-2.635-.525-3.936.045-.103.254-.305.285-.463.06-.308-.105-.72-.12-1.048-.06-1.692.284-3.15 1.425-3.66.463-1.84 2.113-2.453 3.673-3.367.58-.342 1.224-.562 1.89-.807 2.372-.877 6.027-.712 7.994.783.836.633 2.176 1.97 2.656 2.939 1.262 2.555 1.17 6.825.287 9.934-.12.421-.29 1.032-.533 1.533-.168.35-.689 1.05-.625 1.36.064.314 1.19 1.17 1.432 1.395.434.422 1.26.975 1.324 1.5.07.557-.248 1.336-.41 1.875-.217.721-.436 1.441-.654 2.131H2.87zm11.104-3.54c-.545-.3-1.361-.622-2.065-.757-.87-.164-.78 1.188-.75 1.994.03.643.36 1.316.51 1.744.076.197.09.41.256.449.3.068 1.29-.326 1.575-.479.6-.328 1.064-.844 1.574-1.189.016-.17.016-.34.03-.508a2.648 2.648 0 00-1.095-.277c.314-.15.75-.15 1.035-.332l.016-.193c-.496-.03-.69-.254-1.021-.436zm7.454 2.935a17.78 17.78 0 00.465-1.752c.06-.287.215-.918.178-1.176-.059-.459-.684-.799-1.004-1.086-.584-.525-.95-.975-1.56-1.469-.249.375-.78.615-.983.914 1.447-.689 1.71 2.625 1.141 3.69.09.329.391.45.514.735l-.086.166h1.29c.013 0 .03 0 .044.014zm-6.634-.012c-.05-.074-.1-.135-.15-.209l-.301.195h.45zm2.77 0c.008-.209.018-.404.03-.598-.53.029-.825-.48-1.196-.527-.324-.045-.6.361-1.02.195-.095.105-.183.227-.284.316.154.18.295.375.424.584h.815c.014-.164.135-.285.3-.285.165 0 .284.121.284.27h.66zm2.116 0c-.314-.479-.947-.898-1.68-.555l-.03.541h1.71zm-8.51 0l-.104-.344c-.225-.72-.36-1.26-.405-1.68-.914-.436-1.875-.87-2.654-1.426-.15-.105-1.109-1.35-1.23-1.305-1.739.676-3.359 1.86-4.814 2.984.256.557.48 1.141.69 1.74h8.505zm8.265-2.113c-.029-.512-.164-1.56-.48-1.74-.66-.39-1.846.78-2.34.943.045.15.135.271.15.48.285-.074.645-.029.898.092-.299.03-.629.03-.824.164-.074.195.016.48-.029.764.69.197 1.5.303 2.385.332.164-.227.225-.645.211-1.082zm-4.08-.36c-.044.375.046.51.12.943 1.26.391 1.034-1.74-.135-.959zM8.76 19.5c-.45.457 1.27 1.082 1.814 1.115 0-.29.165-.564.135-.77-.65-.118-1.502-.042-1.945-.347zm5.565.215c0 .043-.061.03-.068.064.58.451 1.014.545 1.802.51.354-.262.67-.563 1.043-.807-.855.074-1.931.607-2.774.23zm3.42-17.726c-1.606-.906-4.35-1.591-6.076-.731-1.38.692-3.27 1.84-3.899 3.292.6 1.402-.166 2.686-.226 4.109-.018.757.36 1.42.391 2.242-.2.338-.825.38-1.26.356-.146-.729-.4-1.549-1.155-1.63-1.064-.116-1.845.764-1.89 1.683-.06 1.08.833 2.864 2.085 2.745.488-.046.608-.54 1.139-.54.285.57-.445.75-.523 1.154-.016.105.06.511.104.705.233.944.744 2.16 1.245 2.88.635.9 1.884 1.051 3.229 1.141.24-.525 1.125-.48 1.706-.346-.691-.27-1.336-.945-1.875-1.529-.615-.676-1.23-1.41-1.261-2.28 1.155 1.604 2.1 3 4.2 3.704 1.59.525 3.45-.254 4.664-1.109.51-.359.811-.93 1.17-1.439 1.35-1.936 1.98-4.71 1.846-7.394-.06-1.111-.06-2.221-.436-2.955-.389-.781-1.695-1.471-2.475-.781-.15-.764.63-1.23 1.545-.96-.66-.854-1.336-1.858-2.266-2.384zM13.58 14.896c.615 1.544 2.724 1.363 4.505 1.323-.084.194-.256.435-.465.515-.57.232-2.145.408-2.937-.012-.506-.27-.824-.873-1.102-1.227-.137-.172-.795-.608-.012-.609zm.164-.87c.893.464 2.52.517 3.731.48.066.267.066.593.068.913-1.55.08-3.386-.304-3.794-1.395h-.005zm6.675-.586c-.473.9-1.145 1.897-2.539 1.928-.023-.284-.045-.735 0-.904 1.064-.103 1.727-.646 2.543-1.017zm-.649-.667c-1.02.66-2.154 1.375-3.824 1.21-.351-.31-.485-1-.14-1.458.181.313.06.885.57.97.944.165 2.038-.579 2.73-.84.42-.713-.046-.976-.42-1.433-.782-.93-1.83-2.1-1.802-3.51.314-.224.346.346.391.45.404.96 1.424 2.175 2.174 3 .18.21.48.39.51.524.092.39-.254.854-.209 1.11zm-13.439-.675c-.314-.184-.393-.99-.768-1.01-.535-.03-.438 1.05-.436 1.68-.37-.33-.435-1.365-.164-1.89-.308-.15-.445.164-.618.284.22-1.59 2.34-.734 1.99.96zM4.713 5.995c-.685.756-.54 2.174-.459 3.188 1.244-.785 2.898.06 2.883 1.394.595-.016.223-.744.115-1.215-.353-1.528.592-3.187.041-4.59-1.064.084-1.939.52-2.578 1.215zm9.12 1.113c.307.562.404 1.148.84 1.57.195.19.574.424.387.95-.045.121-.365.391-.551.45-.674.195-2.254.03-1.721-.81.563.015 1.314.36 1.732-.045-.314-.524-.885-1.53-.674-2.13zm6.198-.013h.068c.33.668.6 1.375 1.004 1.965-.27.628-2.053 1.19-2.023.057.39-.17 1.05-.035 1.395-.25-.193-.556-.48-1.006-.434-1.771zm-6.927-1.617c-1.422-.33-2.131.592-2.56 1.553-.384-.094-.231-.615-.135-.883.255-.701 1.28-1.633 2.119-1.506.359.057.848.386.576.834zM9.642 1.593c-1.56.44-3.56 1.574-4.2 2.974.495-.07.84-.321 1.33-.351.186-.016.428.074.641.015.424-.104.78-1.065 1.102-1.41.31-.345.685-.496.94-.81.167-.09.409-.074.42-.33-.073-.075-.15-.135-.232-.105v.017z" }) + ] + } + ); +}); + +exports.default = SiJenkins; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.d.ts new file mode 100644 index 000000000..868133af9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D24939"; +declare const SiJenkins: IconType; +export { SiJenkins as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.mjs new file mode 100644 index 000000000..fa69512f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJenkins.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D24939"; +const SiJenkins = React.forwardRef(function SiJenkins2({ title = "Jenkins", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.872 24h-.975a3.866 3.866 0 01-.07-.197c-.215-.666-.594-1.49-.692-2.154-.146-.984.78-1.039 1.374-1.465.915-.66 1.635-1.025 2.627-1.62.295-.179 1.182-.624 1.281-.829.201-.408-.345-.982-.49-1.3-.225-.507-.345-.937-.376-1.435-.824-.13-1.455-.627-1.844-1.185-.63-.925-1.066-2.635-.525-3.936.045-.103.254-.305.285-.463.06-.308-.105-.72-.12-1.048-.06-1.692.284-3.15 1.425-3.66.463-1.84 2.113-2.453 3.673-3.367.58-.342 1.224-.562 1.89-.807 2.372-.877 6.027-.712 7.994.783.836.633 2.176 1.97 2.656 2.939 1.262 2.555 1.17 6.825.287 9.934-.12.421-.29 1.032-.533 1.533-.168.35-.689 1.05-.625 1.36.064.314 1.19 1.17 1.432 1.395.434.422 1.26.975 1.324 1.5.07.557-.248 1.336-.41 1.875-.217.721-.436 1.441-.654 2.131H2.87zm11.104-3.54c-.545-.3-1.361-.622-2.065-.757-.87-.164-.78 1.188-.75 1.994.03.643.36 1.316.51 1.744.076.197.09.41.256.449.3.068 1.29-.326 1.575-.479.6-.328 1.064-.844 1.574-1.189.016-.17.016-.34.03-.508a2.648 2.648 0 00-1.095-.277c.314-.15.75-.15 1.035-.332l.016-.193c-.496-.03-.69-.254-1.021-.436zm7.454 2.935a17.78 17.78 0 00.465-1.752c.06-.287.215-.918.178-1.176-.059-.459-.684-.799-1.004-1.086-.584-.525-.95-.975-1.56-1.469-.249.375-.78.615-.983.914 1.447-.689 1.71 2.625 1.141 3.69.09.329.391.45.514.735l-.086.166h1.29c.013 0 .03 0 .044.014zm-6.634-.012c-.05-.074-.1-.135-.15-.209l-.301.195h.45zm2.77 0c.008-.209.018-.404.03-.598-.53.029-.825-.48-1.196-.527-.324-.045-.6.361-1.02.195-.095.105-.183.227-.284.316.154.18.295.375.424.584h.815c.014-.164.135-.285.3-.285.165 0 .284.121.284.27h.66zm2.116 0c-.314-.479-.947-.898-1.68-.555l-.03.541h1.71zm-8.51 0l-.104-.344c-.225-.72-.36-1.26-.405-1.68-.914-.436-1.875-.87-2.654-1.426-.15-.105-1.109-1.35-1.23-1.305-1.739.676-3.359 1.86-4.814 2.984.256.557.48 1.141.69 1.74h8.505zm8.265-2.113c-.029-.512-.164-1.56-.48-1.74-.66-.39-1.846.78-2.34.943.045.15.135.271.15.48.285-.074.645-.029.898.092-.299.03-.629.03-.824.164-.074.195.016.48-.029.764.69.197 1.5.303 2.385.332.164-.227.225-.645.211-1.082zm-4.08-.36c-.044.375.046.51.12.943 1.26.391 1.034-1.74-.135-.959zM8.76 19.5c-.45.457 1.27 1.082 1.814 1.115 0-.29.165-.564.135-.77-.65-.118-1.502-.042-1.945-.347zm5.565.215c0 .043-.061.03-.068.064.58.451 1.014.545 1.802.51.354-.262.67-.563 1.043-.807-.855.074-1.931.607-2.774.23zm3.42-17.726c-1.606-.906-4.35-1.591-6.076-.731-1.38.692-3.27 1.84-3.899 3.292.6 1.402-.166 2.686-.226 4.109-.018.757.36 1.42.391 2.242-.2.338-.825.38-1.26.356-.146-.729-.4-1.549-1.155-1.63-1.064-.116-1.845.764-1.89 1.683-.06 1.08.833 2.864 2.085 2.745.488-.046.608-.54 1.139-.54.285.57-.445.75-.523 1.154-.016.105.06.511.104.705.233.944.744 2.16 1.245 2.88.635.9 1.884 1.051 3.229 1.141.24-.525 1.125-.48 1.706-.346-.691-.27-1.336-.945-1.875-1.529-.615-.676-1.23-1.41-1.261-2.28 1.155 1.604 2.1 3 4.2 3.704 1.59.525 3.45-.254 4.664-1.109.51-.359.811-.93 1.17-1.439 1.35-1.936 1.98-4.71 1.846-7.394-.06-1.111-.06-2.221-.436-2.955-.389-.781-1.695-1.471-2.475-.781-.15-.764.63-1.23 1.545-.96-.66-.854-1.336-1.858-2.266-2.384zM13.58 14.896c.615 1.544 2.724 1.363 4.505 1.323-.084.194-.256.435-.465.515-.57.232-2.145.408-2.937-.012-.506-.27-.824-.873-1.102-1.227-.137-.172-.795-.608-.012-.609zm.164-.87c.893.464 2.52.517 3.731.48.066.267.066.593.068.913-1.55.08-3.386-.304-3.794-1.395h-.005zm6.675-.586c-.473.9-1.145 1.897-2.539 1.928-.023-.284-.045-.735 0-.904 1.064-.103 1.727-.646 2.543-1.017zm-.649-.667c-1.02.66-2.154 1.375-3.824 1.21-.351-.31-.485-1-.14-1.458.181.313.06.885.57.97.944.165 2.038-.579 2.73-.84.42-.713-.046-.976-.42-1.433-.782-.93-1.83-2.1-1.802-3.51.314-.224.346.346.391.45.404.96 1.424 2.175 2.174 3 .18.21.48.39.51.524.092.39-.254.854-.209 1.11zm-13.439-.675c-.314-.184-.393-.99-.768-1.01-.535-.03-.438 1.05-.436 1.68-.37-.33-.435-1.365-.164-1.89-.308-.15-.445.164-.618.284.22-1.59 2.34-.734 1.99.96zM4.713 5.995c-.685.756-.54 2.174-.459 3.188 1.244-.785 2.898.06 2.883 1.394.595-.016.223-.744.115-1.215-.353-1.528.592-3.187.041-4.59-1.064.084-1.939.52-2.578 1.215zm9.12 1.113c.307.562.404 1.148.84 1.57.195.19.574.424.387.95-.045.121-.365.391-.551.45-.674.195-2.254.03-1.721-.81.563.015 1.314.36 1.732-.045-.314-.524-.885-1.53-.674-2.13zm6.198-.013h.068c.33.668.6 1.375 1.004 1.965-.27.628-2.053 1.19-2.023.057.39-.17 1.05-.035 1.395-.25-.193-.556-.48-1.006-.434-1.771zm-6.927-1.617c-1.422-.33-2.131.592-2.56 1.553-.384-.094-.231-.615-.135-.883.255-.701 1.28-1.633 2.119-1.506.359.057.848.386.576.834zM9.642 1.593c-1.56.44-3.56 1.574-4.2 2.974.495-.07.84-.321 1.33-.351.186-.016.428.074.641.015.424-.104.78-1.065 1.102-1.41.31-.345.685-.496.94-.81.167-.09.409-.074.42-.33-.073-.075-.15-.135-.232-.105v.017z" }) + ] + } + ); +}); + +export { SiJenkins as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJest.cjs new file mode 100644 index 000000000..abf97cfe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C21325"; +const SiJest = React__namespace.forwardRef(function SiJest2({ title = "Jest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.251 11.82a3.117 3.117 0 0 0-2.328-3.01L22.911 0H8.104L11.1 8.838a3.116 3.116 0 0 0-2.244 2.988c0 1.043.52 1.967 1.313 2.536a8.279 8.279 0 0 1-1.084 1.244 8.14 8.14 0 0 1-2.55 1.647c-.834-.563-1.195-1.556-.869-2.446a3.11 3.11 0 0 0-.91-6.08 3.117 3.117 0 0 0-3.113 3.113c0 .848.347 1.626.903 2.182-.048.097-.097.195-.146.299-.465.959-.993 2.043-1.195 3.259-.403 2.432.257 4.384 1.849 5.489A5.093 5.093 0 0 0 5.999 24c1.827 0 3.682-.917 5.475-1.807 1.279-.632 2.599-1.292 3.898-1.612.48-.118.98-.187 1.508-.264 1.07-.153 2.175-.312 3.168-.89a4.482 4.482 0 0 0 2.182-3.091c.174-.994 0-1.994-.444-2.87.298-.48.465-1.042.465-1.647zm-1.355 0c0 .965-.785 1.75-1.75 1.75a1.753 1.753 0 0 1-1.085-3.126l.007-.007c.056-.042.118-.084.18-.125 0 0 .008 0 .008-.007.028-.014.055-.035.083-.05.007 0 .014-.006.021-.006.028-.014.063-.028.097-.042.035-.014.07-.027.098-.041.007 0 .013-.007.02-.007.028-.007.056-.021.084-.028.007 0 .02-.007.028-.007.034-.007.062-.014.097-.02h.007l.104-.022c.007 0 .02 0 .028-.007.028 0 .055-.007.083-.007h.035c.035 0 .07-.007.111-.007h.09c.028 0 .05 0 .077.007h.014c.055.007.111.014.167.028a1.766 1.766 0 0 1 1.396 1.723zM10.043 1.39h10.93l-2.509 7.4c-.104.02-.208.055-.312.09l-2.64-5.385-2.648 5.35c-.104-.034-.216-.055-.327-.076l-2.494-7.38zm4.968 9.825a3.083 3.083 0 0 0-.938-1.668l1.438-2.904 1.452 2.967c-.43.43-.743.98-.868 1.605H15.01zm-3.481-1.098c.034-.007.062-.014.097-.02h.02c.029-.008.056-.008.084-.015h.028c.028 0 .049-.007.076-.007h.271c.028 0 .049.007.07.007.014 0 .02 0 .035.007.027.007.048.007.076.014.007 0 .014 0 .028.007l.097.02h.007c.028.008.056.015.083.029.007 0 .014.007.028.007.021.007.049.014.07.027.007 0 .014.007.02.007.028.014.056.021.084.035h.007a.374.374 0 0 1 .09.049h.007c.028.014.056.034.084.048.007 0 .007.007.013.007.028.014.05.035.077.049l.007.007c.083.062.16.132.236.201l.007.007a1.747 1.747 0 0 1 .48 1.209 1.752 1.752 0 0 1-3.502 0 1.742 1.742 0 0 1 1.32-1.695zm-6.838-.049c.966 0 1.751.786 1.751 1.751s-.785 1.751-1.75 1.751-1.752-.785-1.752-1.75.786-1.752 1.751-1.752zm16.163 6.025a3.07 3.07 0 0 1-1.508 2.133c-.758.438-1.689.577-2.669.716a17.29 17.29 0 0 0-1.64.291c-1.445.355-2.834 1.05-4.182 1.717-1.724.854-3.35 1.66-4.857 1.66a3.645 3.645 0 0 1-2.154-.688c-1.529-1.056-1.453-3.036-1.272-4.12.167-1.015.632-1.966 1.077-2.877.028-.055.049-.104.077-.16.152.056.312.098.479.126-.264 1.473.486 2.994 1.946 3.745l.264.139.284-.104c1.216-.431 2.342-1.133 3.336-2.071a9.334 9.334 0 0 0 1.445-1.716c.16.027.32.034.48.034a3.117 3.117 0 0 0 3.008-2.327h1.167a3.109 3.109 0 0 0 3.01 2.327c.576 0 1.11-.16 1.57-.43.18.52.236 1.063.139 1.605z" }) + ] + } + ); +}); + +exports.default = SiJest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJest.d.ts new file mode 100644 index 000000000..30e3735f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C21325"; +declare const SiJest: IconType; +export { SiJest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJest.mjs new file mode 100644 index 000000000..bf45edc9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C21325"; +const SiJest = React.forwardRef(function SiJest2({ title = "Jest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.251 11.82a3.117 3.117 0 0 0-2.328-3.01L22.911 0H8.104L11.1 8.838a3.116 3.116 0 0 0-2.244 2.988c0 1.043.52 1.967 1.313 2.536a8.279 8.279 0 0 1-1.084 1.244 8.14 8.14 0 0 1-2.55 1.647c-.834-.563-1.195-1.556-.869-2.446a3.11 3.11 0 0 0-.91-6.08 3.117 3.117 0 0 0-3.113 3.113c0 .848.347 1.626.903 2.182-.048.097-.097.195-.146.299-.465.959-.993 2.043-1.195 3.259-.403 2.432.257 4.384 1.849 5.489A5.093 5.093 0 0 0 5.999 24c1.827 0 3.682-.917 5.475-1.807 1.279-.632 2.599-1.292 3.898-1.612.48-.118.98-.187 1.508-.264 1.07-.153 2.175-.312 3.168-.89a4.482 4.482 0 0 0 2.182-3.091c.174-.994 0-1.994-.444-2.87.298-.48.465-1.042.465-1.647zm-1.355 0c0 .965-.785 1.75-1.75 1.75a1.753 1.753 0 0 1-1.085-3.126l.007-.007c.056-.042.118-.084.18-.125 0 0 .008 0 .008-.007.028-.014.055-.035.083-.05.007 0 .014-.006.021-.006.028-.014.063-.028.097-.042.035-.014.07-.027.098-.041.007 0 .013-.007.02-.007.028-.007.056-.021.084-.028.007 0 .02-.007.028-.007.034-.007.062-.014.097-.02h.007l.104-.022c.007 0 .02 0 .028-.007.028 0 .055-.007.083-.007h.035c.035 0 .07-.007.111-.007h.09c.028 0 .05 0 .077.007h.014c.055.007.111.014.167.028a1.766 1.766 0 0 1 1.396 1.723zM10.043 1.39h10.93l-2.509 7.4c-.104.02-.208.055-.312.09l-2.64-5.385-2.648 5.35c-.104-.034-.216-.055-.327-.076l-2.494-7.38zm4.968 9.825a3.083 3.083 0 0 0-.938-1.668l1.438-2.904 1.452 2.967c-.43.43-.743.98-.868 1.605H15.01zm-3.481-1.098c.034-.007.062-.014.097-.02h.02c.029-.008.056-.008.084-.015h.028c.028 0 .049-.007.076-.007h.271c.028 0 .049.007.07.007.014 0 .02 0 .035.007.027.007.048.007.076.014.007 0 .014 0 .028.007l.097.02h.007c.028.008.056.015.083.029.007 0 .014.007.028.007.021.007.049.014.07.027.007 0 .014.007.02.007.028.014.056.021.084.035h.007a.374.374 0 0 1 .09.049h.007c.028.014.056.034.084.048.007 0 .007.007.013.007.028.014.05.035.077.049l.007.007c.083.062.16.132.236.201l.007.007a1.747 1.747 0 0 1 .48 1.209 1.752 1.752 0 0 1-3.502 0 1.742 1.742 0 0 1 1.32-1.695zm-6.838-.049c.966 0 1.751.786 1.751 1.751s-.785 1.751-1.75 1.751-1.752-.785-1.752-1.75.786-1.752 1.751-1.752zm16.163 6.025a3.07 3.07 0 0 1-1.508 2.133c-.758.438-1.689.577-2.669.716a17.29 17.29 0 0 0-1.64.291c-1.445.355-2.834 1.05-4.182 1.717-1.724.854-3.35 1.66-4.857 1.66a3.645 3.645 0 0 1-2.154-.688c-1.529-1.056-1.453-3.036-1.272-4.12.167-1.015.632-1.966 1.077-2.877.028-.055.049-.104.077-.16.152.056.312.098.479.126-.264 1.473.486 2.994 1.946 3.745l.264.139.284-.104c1.216-.431 2.342-1.133 3.336-2.071a9.334 9.334 0 0 0 1.445-1.716c.16.027.32.034.48.034a3.117 3.117 0 0 0 3.008-2.327h1.167a3.109 3.109 0 0 0 3.01 2.327c.576 0 1.11-.16 1.57-.43.18.52.236 1.063.139 1.605z" }) + ] + } + ); +}); + +export { SiJest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJet.cjs new file mode 100644 index 000000000..5b7dab0d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBBA00"; +const SiJet = React__namespace.forwardRef(function SiJet2({ title = "JET", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.778 19.044c3.048-.498 4.755-.73 8.219-2.395L24 13.81c-3.228 3.225-9.249 5.146-15.07 5.098-.75-.01-1.948.017-2.246-.024 3.1.49 6.18.556 9.094.159M3.836 15.764c.75.003 1.805-.014 2.403-.394.535-.467.93-1.106 1.247-1.828l1.545-4.697-2.157.013-1.199 3.664c-.225 1.161-.943 1.566-1.483 1.483l-1.354-.097-.515 1.676 1.513.18m13.29-.104l1.672-5.074h2.44l.543-1.665-5.907-.01-.556 1.662H16.6l-1.73 5.077 2.257.01m-3.859-.024l.564-1.718h-3.204l.297-.909h2.668l.543-1.641h-2.661l.262-.81h3.08l.57-1.713-5.267.027-2.205 6.757 5.353.007m1.245-9.809c1.883-.072 3.743.083 5.969.277-2.192-.809-5.7-1.407-8.344-1.407-4.344 0-8.644 1.054-12.117 2.675L0 11.07c3.321-3.387 9.114-5.298 14.513-5.243" }) + ] + } + ); +}); + +exports.default = SiJet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJet.d.ts new file mode 100644 index 000000000..581946976 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBBA00"; +declare const SiJet: IconType; +export { SiJet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJet.mjs new file mode 100644 index 000000000..bbad7aba0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBBA00"; +const SiJet = React.forwardRef(function SiJet2({ title = "JET", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.778 19.044c3.048-.498 4.755-.73 8.219-2.395L24 13.81c-3.228 3.225-9.249 5.146-15.07 5.098-.75-.01-1.948.017-2.246-.024 3.1.49 6.18.556 9.094.159M3.836 15.764c.75.003 1.805-.014 2.403-.394.535-.467.93-1.106 1.247-1.828l1.545-4.697-2.157.013-1.199 3.664c-.225 1.161-.943 1.566-1.483 1.483l-1.354-.097-.515 1.676 1.513.18m13.29-.104l1.672-5.074h2.44l.543-1.665-5.907-.01-.556 1.662H16.6l-1.73 5.077 2.257.01m-3.859-.024l.564-1.718h-3.204l.297-.909h2.668l.543-1.641h-2.661l.262-.81h3.08l.57-1.713-5.267.027-2.205 6.757 5.353.007m1.245-9.809c1.883-.072 3.743.083 5.969.277-2.192-.809-5.7-1.407-8.344-1.407-4.344 0-8.644 1.054-12.117 2.675L0 11.07c3.321-3.387 9.114-5.298 14.513-5.243" }) + ] + } + ); +}); + +export { SiJet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.cjs new file mode 100644 index 000000000..d64d3ad9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#001E59"; +const SiJetblue = React__namespace.forwardRef(function SiJetblue2({ title = "JetBlue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.779 9.795h.926v4.986a1.265 1.265 0 0 1-1.344 1.256H0v-.869h.265c.316 0 .52-.147.52-.491V9.795M.779 7.96h.926v.926H.779V7.96Zm2.444 3.748a.98.98 0 0 1 .971-1.081.98.98 0 0 1 .97 1.081H3.223m2.867.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.029c-.887 0-1.897.565-1.897 2.365 0 1.885 1.095 2.337 2.043 2.337a2.117 2.117 0 0 0 1.665-.723l-.671-.564a1.452 1.452 0 0 1-1.005.446c-.024.002-.048.002-.072.002a1.037 1.037 0 0 1-1.029-1.131l2.862-.028Zm.734-4.047h.925v1.372h.672v.705h-.672v2.681c0 .254.102.344.328.344h.344v.869h-.48a1.06 1.06 0 0 1-1.129-1.128v-2.738H6.35v-.733h.462l.012-1.372Zm4.673 3.127a.981.981 0 0 1 1.081.971.981.981 0 0 1-1.081.97H9.99V11.55h1.507m-2.483 2.867h2.755a1.77 1.77 0 0 0 1.761-1.761l-.001-.073a1.449 1.449 0 0 0-1.05-1.49c.588-.201.977-.768.954-1.389 0-1.016-.655-1.732-1.913-1.732H9.019v6.456m2.393-5.587a.935.935 0 0 1 1.034.925.936.936 0 0 1-1.034.926H9.996V8.841h1.416Zm2.647-.881h.926v5.272c0 .209.119.316.344.316h.316v.869h-.406c-.672 0-1.18-.288-1.18-1.129V7.96Zm1.976 1.835h.925v2.737a.918.918 0 0 0 .912.986.918.918 0 0 0 .911-.986V9.795h.926v4.599h-.926v-.491a1.466 1.466 0 0 1-1.19.565 1.554 1.554 0 0 1-1.542-1.547l.001-.05-.017-3.076Zm5.096 1.913a.97.97 0 0 1 .971-1.072c.565 0 .943.372.971 1.072h-1.942m2.868.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.03c-.886 0-1.896.565-1.896 2.365 0 1.885 1.095 2.337 2.037 2.337a2.12 2.12 0 0 0 1.66-.745l-.672-.565a1.448 1.448 0 0 1-1.071.448 1.037 1.037 0 0 1-1.029-1.131l2.868-.005Z" }) + ] + } + ); +}); + +exports.default = SiJetblue; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.d.ts new file mode 100644 index 000000000..22ee90537 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#001E59"; +declare const SiJetblue: IconType; +export { SiJetblue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.mjs new file mode 100644 index 000000000..14fc7c661 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetblue.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#001E59"; +const SiJetblue = React.forwardRef(function SiJetblue2({ title = "JetBlue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.779 9.795h.926v4.986a1.265 1.265 0 0 1-1.344 1.256H0v-.869h.265c.316 0 .52-.147.52-.491V9.795M.779 7.96h.926v.926H.779V7.96Zm2.444 3.748a.98.98 0 0 1 .971-1.081.98.98 0 0 1 .97 1.081H3.223m2.867.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.029c-.887 0-1.897.565-1.897 2.365 0 1.885 1.095 2.337 2.043 2.337a2.117 2.117 0 0 0 1.665-.723l-.671-.564a1.452 1.452 0 0 1-1.005.446c-.024.002-.048.002-.072.002a1.037 1.037 0 0 1-1.029-1.131l2.862-.028Zm.734-4.047h.925v1.372h.672v.705h-.672v2.681c0 .254.102.344.328.344h.344v.869h-.48a1.06 1.06 0 0 1-1.129-1.128v-2.738H6.35v-.733h.462l.012-1.372Zm4.673 3.127a.981.981 0 0 1 1.081.971.981.981 0 0 1-1.081.97H9.99V11.55h1.507m-2.483 2.867h2.755a1.77 1.77 0 0 0 1.761-1.761l-.001-.073a1.449 1.449 0 0 0-1.05-1.49c.588-.201.977-.768.954-1.389 0-1.016-.655-1.732-1.913-1.732H9.019v6.456m2.393-5.587a.935.935 0 0 1 1.034.925.936.936 0 0 1-1.034.926H9.996V8.841h1.416Zm2.647-.881h.926v5.272c0 .209.119.316.344.316h.316v.869h-.406c-.672 0-1.18-.288-1.18-1.129V7.96Zm1.976 1.835h.925v2.737a.918.918 0 0 0 .912.986.918.918 0 0 0 .911-.986V9.795h.926v4.599h-.926v-.491a1.466 1.466 0 0 1-1.19.565 1.554 1.554 0 0 1-1.542-1.547l.001-.05-.017-3.076Zm5.096 1.913a.97.97 0 0 1 .971-1.072c.565 0 .943.372.971 1.072h-1.942m2.868.762v-.762l.001-.074a1.877 1.877 0 0 0-1.868-1.868h-.03c-.886 0-1.896.565-1.896 2.365 0 1.885 1.095 2.337 2.037 2.337a2.12 2.12 0 0 0 1.66-.745l-.672-.565a1.448 1.448 0 0 1-1.071.448 1.037 1.037 0 0 1-1.029-1.131l2.868-.005Z" }) + ] + } + ); +}); + +export { SiJetblue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.cjs new file mode 100644 index 000000000..1d7e03f51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJetbrains = React__namespace.forwardRef(function SiJetbrains2({ title = "JetBrains", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.345 23.997A2.347 2.347 0 0 1 0 21.652V10.988C0 9.665.535 8.37 1.473 7.433l5.965-5.961A5.01 5.01 0 0 1 10.989 0h10.666A2.347 2.347 0 0 1 24 2.345v10.664a5.056 5.056 0 0 1-1.473 3.554l-5.965 5.965A5.017 5.017 0 0 1 13.007 24v-.003H2.345Zm8.969-6.854H5.486v1.371h5.828v-1.371ZM3.963 6.514h13.523v13.519l4.257-4.257a3.936 3.936 0 0 0 1.146-2.767V2.345c0-.678-.552-1.234-1.234-1.234H10.989a3.897 3.897 0 0 0-2.767 1.145L3.963 6.514Zm-.192.192L2.256 8.22a3.944 3.944 0 0 0-1.145 2.768v10.664c0 .678.552 1.234 1.234 1.234h10.666a3.9 3.9 0 0 0 2.767-1.146l1.512-1.511H3.771V6.706Z" }) + ] + } + ); +}); + +exports.default = SiJetbrains; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.d.ts new file mode 100644 index 000000000..bff1e7d1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJetbrains: IconType; +export { SiJetbrains as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.mjs new file mode 100644 index 000000000..0be569b50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetbrains.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJetbrains = React.forwardRef(function SiJetbrains2({ title = "JetBrains", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.345 23.997A2.347 2.347 0 0 1 0 21.652V10.988C0 9.665.535 8.37 1.473 7.433l5.965-5.961A5.01 5.01 0 0 1 10.989 0h10.666A2.347 2.347 0 0 1 24 2.345v10.664a5.056 5.056 0 0 1-1.473 3.554l-5.965 5.965A5.017 5.017 0 0 1 13.007 24v-.003H2.345Zm8.969-6.854H5.486v1.371h5.828v-1.371ZM3.963 6.514h13.523v13.519l4.257-4.257a3.936 3.936 0 0 0 1.146-2.767V2.345c0-.678-.552-1.234-1.234-1.234H10.989a3.897 3.897 0 0 0-2.767 1.145L3.963 6.514Zm-.192.192L2.256 8.22a3.944 3.944 0 0 0-1.145 2.768v10.664c0 .678.552 1.234 1.234 1.234h10.666a3.9 3.9 0 0 0 2.767-1.146l1.512-1.511H3.771V6.706Z" }) + ] + } + ); +}); + +export { SiJetbrains as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.cjs new file mode 100644 index 000000000..738c2d619 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiJetpackcompose = React__namespace.forwardRef(function SiJetpackcompose2({ title = "Jetpack Compose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.135.003a2.577 2.577 0 0 0-1.42.344L2.55 5.06a2.577 2.577 0 0 0-.953.967l3.957 2.17a1.765 1.765 0 0 1 .603-.588l4.951-2.86a1.761 1.761 0 0 1 1.76 0l4.951 2.86a1.753 1.753 0 0 1 .526.46l3.921-2.265a2.577 2.577 0 0 0-.816-.744L13.291.347a2.577 2.577 0 0 0-1.152-.34Zm-.145 4.912a1.36 1.36 0 0 0-.68.182L6.36 7.953a1.345 1.345 0 0 0-.454.435l1.92 1.055a1.05 1.05 0 0 1 .31-.275l3.34-1.928a1.054 1.054 0 0 1 1.051 0l3.336 1.928a1.066 1.066 0 0 1 .238.199l.018-.01-.002-.002 1.877-1.08a1.353 1.353 0 0 0-.373-.322l-4.95-2.86a1.357 1.357 0 0 0-.68-.178Zm10.432 1.149-3.92 2.26a1.757 1.757 0 0 1 .2.812v5.715c0 .627-.332 1.21-.88 1.528l-4.95 2.86a1.761 1.761 0 0 1-.64.214v4.524a2.577 2.577 0 0 0 1.059-.313l8.162-4.713a2.577 2.577 0 0 0 1.289-2.23V7.297a2.577 2.577 0 0 0-.318-1.228Zm-20.937.238a2.577 2.577 0 0 0-.227.99v9.43c0 .918.491 1.767 1.293 2.229l8.162 4.713a2.57 2.57 0 0 0 1.225.336v-4.531a1.761 1.761 0 0 1-.833-.235L6.156 16.38a1.765 1.765 0 0 1-.877-1.528V9.136a1.776 1.776 0 0 1 .131-.676Zm16.67 2.223-1.89 1.092a1.058 1.058 0 0 1 .124.46v3.856c0 .378-.2.72-.526.907l-3.336 1.93a1.04 1.04 0 0 1-.295.107v2.17c.152-.027.304-.078.44-.157l4.949-2.859a1.36 1.36 0 0 0 .68-1.18V9.136a1.36 1.36 0 0 0-.147-.607Zm-12.387.13a1.36 1.36 0 0 0-.088.481v5.715a1.36 1.36 0 0 0 .68 1.18l4.95 2.86c.194.112.412.166.627.177v-2.174a1.054 1.054 0 0 1-.46-.123L8.14 14.843a1.054 1.054 0 0 1-.532-.908v-3.853a.99.99 0 0 1 .077-.38l-.034-.013z" }) + ] + } + ); +}); + +exports.default = SiJetpackcompose; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.d.ts new file mode 100644 index 000000000..9741bda0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiJetpackcompose: IconType; +export { SiJetpackcompose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.mjs new file mode 100644 index 000000000..8b44a2d1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJetpackcompose.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiJetpackcompose = React.forwardRef(function SiJetpackcompose2({ title = "Jetpack Compose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.135.003a2.577 2.577 0 0 0-1.42.344L2.55 5.06a2.577 2.577 0 0 0-.953.967l3.957 2.17a1.765 1.765 0 0 1 .603-.588l4.951-2.86a1.761 1.761 0 0 1 1.76 0l4.951 2.86a1.753 1.753 0 0 1 .526.46l3.921-2.265a2.577 2.577 0 0 0-.816-.744L13.291.347a2.577 2.577 0 0 0-1.152-.34Zm-.145 4.912a1.36 1.36 0 0 0-.68.182L6.36 7.953a1.345 1.345 0 0 0-.454.435l1.92 1.055a1.05 1.05 0 0 1 .31-.275l3.34-1.928a1.054 1.054 0 0 1 1.051 0l3.336 1.928a1.066 1.066 0 0 1 .238.199l.018-.01-.002-.002 1.877-1.08a1.353 1.353 0 0 0-.373-.322l-4.95-2.86a1.357 1.357 0 0 0-.68-.178Zm10.432 1.149-3.92 2.26a1.757 1.757 0 0 1 .2.812v5.715c0 .627-.332 1.21-.88 1.528l-4.95 2.86a1.761 1.761 0 0 1-.64.214v4.524a2.577 2.577 0 0 0 1.059-.313l8.162-4.713a2.577 2.577 0 0 0 1.289-2.23V7.297a2.577 2.577 0 0 0-.318-1.228Zm-20.937.238a2.577 2.577 0 0 0-.227.99v9.43c0 .918.491 1.767 1.293 2.229l8.162 4.713a2.57 2.57 0 0 0 1.225.336v-4.531a1.761 1.761 0 0 1-.833-.235L6.156 16.38a1.765 1.765 0 0 1-.877-1.528V9.136a1.776 1.776 0 0 1 .131-.676Zm16.67 2.223-1.89 1.092a1.058 1.058 0 0 1 .124.46v3.856c0 .378-.2.72-.526.907l-3.336 1.93a1.04 1.04 0 0 1-.295.107v2.17c.152-.027.304-.078.44-.157l4.949-2.859a1.36 1.36 0 0 0 .68-1.18V9.136a1.36 1.36 0 0 0-.147-.607Zm-12.387.13a1.36 1.36 0 0 0-.088.481v5.715a1.36 1.36 0 0 0 .68 1.18l4.95 2.86c.194.112.412.166.627.177v-2.174a1.054 1.054 0 0 1-.46-.123L8.14 14.843a1.054 1.054 0 0 1-.532-.908v-3.853a.99.99 0 0 1 .077-.38l-.034-.013z" }) + ] + } + ); +}); + +export { SiJetpackcompose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.cjs new file mode 100644 index 000000000..4c55a12c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40BE46"; +const SiJfrog = React__namespace.forwardRef(function SiJfrog2({ title = "JFrog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.655 15.631l-1.268.353c.11.32.2.893.2 1.665v3.795h1.421v-4.015c.265-.32.552-.474.86-.474.156 0 .277.033.409.11l.386-1.312a1.05 1.05 0 00-.53-.122 1.22 1.22 0 00-.463.09c-.265.131-.596.43-.805.715 0-.32-.077-.573-.21-.805zM5.76 13.757h-.154v7.676h1.477v-3.398h1.864v-1.268H7.082v-1.764H9.41l.088-.673c-1.4-.1-2.668-.32-3.738-.573zm-3.452 8.7l.684.796c.662-.265 1.49-.86 1.71-1.81.077-.308.1-.506.1-1.51v-6.165H3.308v6.33c0 .828-.032 1.136-.142 1.423-.144.32-.486.695-.86.938zm13.422-3.892c0 1.346-.264 1.92-.871 1.92a.782.782 0 01-.717-.464c-.11-.286-.176-.773-.176-1.434 0-.563.055-.96.143-1.268.11-.353.386-.574.728-.574.254 0 .474.11.606.298.199.265.287.76.287 1.522zm.87 2.206c.465-.551.674-1.225.674-2.195 0-.916-.187-1.544-.617-2.073-.464-.574-1.06-.85-1.831-.85-1.456 0-2.426 1.18-2.426 2.967 0 1.787.96 2.934 2.426 2.934.827.01 1.367-.297 1.775-.783zm4.038-3.177c0 .52-.31.805-.86.805-.497 0-.828-.23-.828-.805 0-.529.31-.838.838-.838.53 0 .85.31.85.838zm2.503-1.213l-.585-.937c-.33.31-.727.485-1.113.485-.177 0-.276-.022-.662-.12a3.282 3.282 0 00-.97-.145c-1.38 0-2.272.75-2.272 1.92 0 .837.375 1.367 1.158 1.576-.32.077-.662.243-.816.43a.79.79 0 00-.166.52c0 .176.044.33.11.463a.68.68 0 00.31.275c.253.1.66.166 1.29.177.33 0 .529.01.595.01.386.023.584.09.739.166.143.089.253.287.253.508 0 .22-.132.44-.341.573-.188.132-.497.188-.894.188-.65 0-1.014-.243-1.014-.695 0-.2.022-.243.066-.364h-1.301c-.055.11-.122.265-.122.573 0 .386.144.717.442 1.004.485.474 1.279.606 2.04.606.838 0 1.654-.198 2.128-.727.298-.331.43-.695.43-1.17 0-.507-.143-.893-.463-1.212-.375-.364-.805-.497-1.632-.508l-.761-.01c-.143 0-.232-.056-.232-.133 0-.154.199-.288.563-.464.11.01.143.01.21.01 1.146 0 1.984-.705 1.984-1.686 0-.375-.11-.662-.32-.927.177.022.232.033.364.033.375 0 .673-.12.982-.419zM5.384 7.085c-1.764.43-2.966 1.279-2.966 2.25 0 .606.463 1.157 1.224 1.587a2.155 2.155 0 01-.353-1.157c.01-1.004.794-1.941 2.095-2.68zM24 10.889c0-.64-.397-1.224-1.059-1.709.055.2.1.397.1.596 0 1.82-2.548 3.385-6.165 4.036.408.044.827.066 1.268.066 3.23-.01 5.856-1.345 5.856-2.989zm-2.084-.992c0-.673-.574-1.29-1.555-1.798.23.276.353.574.353.883 0 1.62-3.44 2.933-7.698 2.933-4.246 0-7.698-1.312-7.698-2.933 0-.21.055-.408.165-.596-.683.452-1.07.97-1.07 1.522 0 1.753 3.916 3.176 8.747 3.176 4.83 0 8.756-1.445 8.756-3.187zM18.1 9.81c-1.786 1.147-7.279 1.588-9.639.11-1.853-1.158-1.213-3-6.518-7.036-.694-.53.133-1.092.651-.728.518.364.044.453 1.092 1.5 2.117 2.118 2.095.21 2.426.938.706 1.51 2.25 3.032 2.25 3.032 1.555 1.015 2.79 1.235 5.084-.32 1.456-.981.86 1.566 4.423-.275 1.3-.673 1.246-.22 2.569-2.063.55-.76 1.6.585.408.772-.474.078-1.28.596-1.621 1.412-.496 1.224-.287 2.128-1.125 2.658zM8.196 6.7c-.44-.199-.904-.95-1.08-1.246.496-.486.297-1.29.01-1.732-.275-.44-.617-.32-.98-.727-.376-.41.142-1.467.617-.651 1.775 3.055 2.944 1.786 4.39 1.599 1.39-.177 2.624.584 3-1.566.065-.353.407-.43.44.143.033.585.254 1.996 1.015 2.173.76.187 1.378-.177 1.555-.375.176-.2.275-.177.353.33.077.497.275 1.192 1.345.42 2.195-1.566 1.566-2.173 2.426-2.58.485-.232 1.257.518.144 1.08-1.588.805-1.754 1.797-2.757 2.426-1.688 1.059-1.17.044-3.882-.342-1.048-.143-1.38 1.015-2.195.684-1.864-.772-3.177-.618-4.4.364zm5.879-5.657c.066.463.143.452.309.485.165.044.375-.22.375-.463.01-.254-.11-.408-.353-.397-.254.01-.342.132-.331.375zm8.16.827c.2.187.728.066.85-.078.32-.352.33-.562.165-.805-.165-.231-.507-.198-.85.056-.341.253-.275.727-.164.827zm-.143 2.338c-.165.22-.176.386-.055.507.132.132.397.242.585.1.187-.155.187-.376.033-.563-.166-.2-.386-.2-.563-.044zM5.352 1.45c.253.077.374.32.584.044.11-.133.12-.32-.023-.52-.088-.12-.507-.21-.683-.032-.177.177-.01.464.121.508zM.178 1.295c.463.287.76.717 1.114.33.121-.131.264-.363.01-.826C1.117.457.511.325.301.457c-.22.12-.485.618-.121.838zM4.447 3.49c.143.154.397.143.551.055.144-.088.121-.32-.022-.518-.088-.122-.353-.188-.53 0-.176.187-.098.352 0 .463z" }) + ] + } + ); +}); + +exports.default = SiJfrog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.d.ts new file mode 100644 index 000000000..fe682418c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40BE46"; +declare const SiJfrog: IconType; +export { SiJfrog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.mjs new file mode 100644 index 000000000..ed58df4fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40BE46"; +const SiJfrog = React.forwardRef(function SiJfrog2({ title = "JFrog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.655 15.631l-1.268.353c.11.32.2.893.2 1.665v3.795h1.421v-4.015c.265-.32.552-.474.86-.474.156 0 .277.033.409.11l.386-1.312a1.05 1.05 0 00-.53-.122 1.22 1.22 0 00-.463.09c-.265.131-.596.43-.805.715 0-.32-.077-.573-.21-.805zM5.76 13.757h-.154v7.676h1.477v-3.398h1.864v-1.268H7.082v-1.764H9.41l.088-.673c-1.4-.1-2.668-.32-3.738-.573zm-3.452 8.7l.684.796c.662-.265 1.49-.86 1.71-1.81.077-.308.1-.506.1-1.51v-6.165H3.308v6.33c0 .828-.032 1.136-.142 1.423-.144.32-.486.695-.86.938zm13.422-3.892c0 1.346-.264 1.92-.871 1.92a.782.782 0 01-.717-.464c-.11-.286-.176-.773-.176-1.434 0-.563.055-.96.143-1.268.11-.353.386-.574.728-.574.254 0 .474.11.606.298.199.265.287.76.287 1.522zm.87 2.206c.465-.551.674-1.225.674-2.195 0-.916-.187-1.544-.617-2.073-.464-.574-1.06-.85-1.831-.85-1.456 0-2.426 1.18-2.426 2.967 0 1.787.96 2.934 2.426 2.934.827.01 1.367-.297 1.775-.783zm4.038-3.177c0 .52-.31.805-.86.805-.497 0-.828-.23-.828-.805 0-.529.31-.838.838-.838.53 0 .85.31.85.838zm2.503-1.213l-.585-.937c-.33.31-.727.485-1.113.485-.177 0-.276-.022-.662-.12a3.282 3.282 0 00-.97-.145c-1.38 0-2.272.75-2.272 1.92 0 .837.375 1.367 1.158 1.576-.32.077-.662.243-.816.43a.79.79 0 00-.166.52c0 .176.044.33.11.463a.68.68 0 00.31.275c.253.1.66.166 1.29.177.33 0 .529.01.595.01.386.023.584.09.739.166.143.089.253.287.253.508 0 .22-.132.44-.341.573-.188.132-.497.188-.894.188-.65 0-1.014-.243-1.014-.695 0-.2.022-.243.066-.364h-1.301c-.055.11-.122.265-.122.573 0 .386.144.717.442 1.004.485.474 1.279.606 2.04.606.838 0 1.654-.198 2.128-.727.298-.331.43-.695.43-1.17 0-.507-.143-.893-.463-1.212-.375-.364-.805-.497-1.632-.508l-.761-.01c-.143 0-.232-.056-.232-.133 0-.154.199-.288.563-.464.11.01.143.01.21.01 1.146 0 1.984-.705 1.984-1.686 0-.375-.11-.662-.32-.927.177.022.232.033.364.033.375 0 .673-.12.982-.419zM5.384 7.085c-1.764.43-2.966 1.279-2.966 2.25 0 .606.463 1.157 1.224 1.587a2.155 2.155 0 01-.353-1.157c.01-1.004.794-1.941 2.095-2.68zM24 10.889c0-.64-.397-1.224-1.059-1.709.055.2.1.397.1.596 0 1.82-2.548 3.385-6.165 4.036.408.044.827.066 1.268.066 3.23-.01 5.856-1.345 5.856-2.989zm-2.084-.992c0-.673-.574-1.29-1.555-1.798.23.276.353.574.353.883 0 1.62-3.44 2.933-7.698 2.933-4.246 0-7.698-1.312-7.698-2.933 0-.21.055-.408.165-.596-.683.452-1.07.97-1.07 1.522 0 1.753 3.916 3.176 8.747 3.176 4.83 0 8.756-1.445 8.756-3.187zM18.1 9.81c-1.786 1.147-7.279 1.588-9.639.11-1.853-1.158-1.213-3-6.518-7.036-.694-.53.133-1.092.651-.728.518.364.044.453 1.092 1.5 2.117 2.118 2.095.21 2.426.938.706 1.51 2.25 3.032 2.25 3.032 1.555 1.015 2.79 1.235 5.084-.32 1.456-.981.86 1.566 4.423-.275 1.3-.673 1.246-.22 2.569-2.063.55-.76 1.6.585.408.772-.474.078-1.28.596-1.621 1.412-.496 1.224-.287 2.128-1.125 2.658zM8.196 6.7c-.44-.199-.904-.95-1.08-1.246.496-.486.297-1.29.01-1.732-.275-.44-.617-.32-.98-.727-.376-.41.142-1.467.617-.651 1.775 3.055 2.944 1.786 4.39 1.599 1.39-.177 2.624.584 3-1.566.065-.353.407-.43.44.143.033.585.254 1.996 1.015 2.173.76.187 1.378-.177 1.555-.375.176-.2.275-.177.353.33.077.497.275 1.192 1.345.42 2.195-1.566 1.566-2.173 2.426-2.58.485-.232 1.257.518.144 1.08-1.588.805-1.754 1.797-2.757 2.426-1.688 1.059-1.17.044-3.882-.342-1.048-.143-1.38 1.015-2.195.684-1.864-.772-3.177-.618-4.4.364zm5.879-5.657c.066.463.143.452.309.485.165.044.375-.22.375-.463.01-.254-.11-.408-.353-.397-.254.01-.342.132-.331.375zm8.16.827c.2.187.728.066.85-.078.32-.352.33-.562.165-.805-.165-.231-.507-.198-.85.056-.341.253-.275.727-.164.827zm-.143 2.338c-.165.22-.176.386-.055.507.132.132.397.242.585.1.187-.155.187-.376.033-.563-.166-.2-.386-.2-.563-.044zM5.352 1.45c.253.077.374.32.584.044.11-.133.12-.32-.023-.52-.088-.12-.507-.21-.683-.032-.177.177-.01.464.121.508zM.178 1.295c.463.287.76.717 1.114.33.121-.131.264-.363.01-.826C1.117.457.511.325.301.457c-.22.12-.485.618-.121.838zM4.447 3.49c.143.154.397.143.551.055.144-.088.121-.32-.022-.518-.088-.122-.353-.188-.53 0-.176.187-.098.352 0 .463z" }) + ] + } + ); +}); + +export { SiJfrog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.cjs new file mode 100644 index 000000000..86503dac5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40BE46"; +const SiJfrogpipelines = React__namespace.forwardRef(function SiJfrogpipelines2({ title = "JFrog Pipelines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.844 0 .021 1.2C7.226 1.636 4.1 4.387 3.231 8.176c-1.041 4.517 1.518 9.036 5.783 10.55.042.015.639.18.96.272v.01l.203.047c1.848.43 1.777.347 2.132-1.27.304-.117.568-.095.882-.15a7.35 7.35 0 0 0 .764-.178c1.081 1.476.687 1.635 2.696.378 2.453-1.534 1.331-1.205.86-2.593l.98-1.336c1.309.313 1.657.537 1.974-.889.608-2.742.89-2.653-1.054-3.083-.109-.31-.233-1.25-.31-1.635.378-.337 1.272-.589 1.197-1.271-.013-.115-1.523-2.754-1.91-2.887-.538-.188-1.091.449-1.523.6-.244-.206-1.176-.798-1.305-1.058.15-.645.544-1.42-.34-1.735-.685-.25-1.501-.443-2.477-.577l.003.004.527.497-.82.904c.67.045 1.185.165 1.848.356-.404 1.974-.029 1.192 1.322 2.258.252.198.85.794 1.098.854.456.108.894-.363 1.219-.532l.71 1.185c-1.368.866-1.019.648-.663 2.224.371 1.645-.506 1.713 1.457 2.198l-.332 1.35c-1.964-.425-1.197-.007-2.256 1.328-.933 1.172-1.275 1.008-.355 2.333l-1.16.68c-.782-1.409-.777-.959-2.22-.652-1.626.335-1.732-.44-2.194 1.458l-.285-.07-1.137-.344C5.879 16.168 3.7 12.38 4.573 8.588a7.523 7.523 0 0 1 5.955-5.702c.123-.022.245-.04.366-.057l.021 1.176 1.92-2.118zm1.385 6.854a3.642 3.642 0 0 0-1.142.168c-4.232 1.296-2.575 7.69 1.83 6.567 4.049-1.031 2.777-6.665-.688-6.735zm-.108 1.389c2.233.046 2.91 3.542.239 4.095-1.201.248-2.176-.667-2.352-1.657-.228-1.284.665-2.222 1.647-2.4.162-.03.317-.041.466-.038zM1.534 22.392V24h20.932v-1.608z" }) + ] + } + ); +}); + +exports.default = SiJfrogpipelines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.d.ts new file mode 100644 index 000000000..280f74e0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40BE46"; +declare const SiJfrogpipelines: IconType; +export { SiJfrogpipelines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.mjs new file mode 100644 index 000000000..78ecff1f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJfrogpipelines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40BE46"; +const SiJfrogpipelines = React.forwardRef(function SiJfrogpipelines2({ title = "JFrog Pipelines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.844 0 .021 1.2C7.226 1.636 4.1 4.387 3.231 8.176c-1.041 4.517 1.518 9.036 5.783 10.55.042.015.639.18.96.272v.01l.203.047c1.848.43 1.777.347 2.132-1.27.304-.117.568-.095.882-.15a7.35 7.35 0 0 0 .764-.178c1.081 1.476.687 1.635 2.696.378 2.453-1.534 1.331-1.205.86-2.593l.98-1.336c1.309.313 1.657.537 1.974-.889.608-2.742.89-2.653-1.054-3.083-.109-.31-.233-1.25-.31-1.635.378-.337 1.272-.589 1.197-1.271-.013-.115-1.523-2.754-1.91-2.887-.538-.188-1.091.449-1.523.6-.244-.206-1.176-.798-1.305-1.058.15-.645.544-1.42-.34-1.735-.685-.25-1.501-.443-2.477-.577l.003.004.527.497-.82.904c.67.045 1.185.165 1.848.356-.404 1.974-.029 1.192 1.322 2.258.252.198.85.794 1.098.854.456.108.894-.363 1.219-.532l.71 1.185c-1.368.866-1.019.648-.663 2.224.371 1.645-.506 1.713 1.457 2.198l-.332 1.35c-1.964-.425-1.197-.007-2.256 1.328-.933 1.172-1.275 1.008-.355 2.333l-1.16.68c-.782-1.409-.777-.959-2.22-.652-1.626.335-1.732-.44-2.194 1.458l-.285-.07-1.137-.344C5.879 16.168 3.7 12.38 4.573 8.588a7.523 7.523 0 0 1 5.955-5.702c.123-.022.245-.04.366-.057l.021 1.176 1.92-2.118zm1.385 6.854a3.642 3.642 0 0 0-1.142.168c-4.232 1.296-2.575 7.69 1.83 6.567 4.049-1.031 2.777-6.665-.688-6.735zm-.108 1.389c2.233.046 2.91 3.542.239 4.095-1.201.248-2.176-.667-2.352-1.657-.228-1.284.665-2.222 1.647-2.4.162-.03.317-.041.466-.038zM1.534 22.392V24h20.932v-1.608z" }) + ] + } + ); +}); + +export { SiJfrogpipelines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.cjs new file mode 100644 index 000000000..8e511cad0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3E8ACC"; +const SiJhipster = React__namespace.forwardRef(function SiJhipster2({ title = "JHipster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.709 7.171c-2.455-.029-6.332 1.749-8.684 2.962-3.434-1.75-10.178-4.729-10.942-1.54-1.03 4.297-2.187 7.563.985 8.167 2.207.42 7.122-2.43 9.912-4.205 2.78 1.771 7.746 4.66 9.96 4.231 3.168-.616 2-3.896.961-8.208-.24-1-1.067-1.394-2.192-1.407z" }) + ] + } + ); +}); + +exports.default = SiJhipster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.d.ts new file mode 100644 index 000000000..0e575e30b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3E8ACC"; +declare const SiJhipster: IconType; +export { SiJhipster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.mjs new file mode 100644 index 000000000..024535974 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJhipster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3E8ACC"; +const SiJhipster = React.forwardRef(function SiJhipster2({ title = "JHipster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.709 7.171c-2.455-.029-6.332 1.749-8.684 2.962-3.434-1.75-10.178-4.729-10.942-1.54-1.03 4.297-2.187 7.563.985 8.167 2.207.42 7.122-2.43 9.912-4.205 2.78 1.771 7.746 4.66 9.96 4.231 3.168-.616 2-3.896.961-8.208-.24-1-1.067-1.394-2.192-1.407z" }) + ] + } + ); +}); + +export { SiJhipster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.cjs new file mode 100644 index 000000000..09e33fe91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7E0C1B"; +const SiJinja = React__namespace.forwardRef(function SiJinja2({ title = "Jinja", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.613 3.494h-.087C19.268 4.91 13.69 4.91 12.14 4.885l-1.434-.025C6.476 4.705 4.318 3.082.538 1.394c-.261-.116-.565.077-.536.348.029.927.275 4.818 3.186 5.836.102.04.218.077.32.103.144.026.202.142.231.22l.246.76c.044.18.174.334.32.334h.245c.217 0 .391.155.406.348v.735c0 .077-.073.141-.16.141H2.928c-.174 0-.319.13-.319.284v1.147c0 .154.145.283.32.283h1.867c.087 0 .16.064.16.142v.31c0 .076-.073.141-.16.141H2.928c-.174.012-.305.128-.305.283v1.148c0 .129.116.27.247.27h1.94c.088 0 .16.065.16.142v7.537c0 .387.362.709.797.709h1.318c.434 0 .797-.322.797-.71V14.37c0-.077.072-.142.16-.142l8.14-.013c.087 0 .16.065.16.142v7.576c0 .386.362.709.797.709h1.318c.434 0 .796-.323.796-.71v-7.588c0-.077.073-.141.16-.141 0 0 2.028-.013 2.057-.026a.29.29 0 0 0 .144-.245v-1.135c0-.155-.144-.283-.333-.283h-2.013V12.5h-.015v-.425c0-.078.073-.142.16-.142h1.868c.174 0 .319-.129.319-.283v-1.147c0-.155-.145-.284-.32-.284h-1.867c-.087 0-.16-.064-.16-.14v-.736c0-.18.174-.348.406-.348h.246c.174 0 .275-.167.319-.335l.246-.76c.03-.103.13-.193.246-.232 1.869-.412 2.637-1.636 3.274-3.556V4.1c.072-.49-.26-.58-.377-.605zM16.37 8.97v1.12c0 .155-.102.271-.232.271h-2.607c-.13 0-.232-.116-.232-.27v-1.12c0-.143.1-.272.232-.272h2.607a.28.28 0 0 1 .232.27zm-5.375 0v1.12c0 .142-.102.271-.232.271H8.157c-.13 0-.232-.116-.232-.27v-1.12c0-.143.101-.272.232-.272h2.607a.28.28 0 0 1 .232.27z" }) + ] + } + ); +}); + +exports.default = SiJinja; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.d.ts new file mode 100644 index 000000000..df6190528 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7E0C1B"; +declare const SiJinja: IconType; +export { SiJinja as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.mjs new file mode 100644 index 000000000..1b0a85a6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJinja.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7E0C1B"; +const SiJinja = React.forwardRef(function SiJinja2({ title = "Jinja", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.613 3.494h-.087C19.268 4.91 13.69 4.91 12.14 4.885l-1.434-.025C6.476 4.705 4.318 3.082.538 1.394c-.261-.116-.565.077-.536.348.029.927.275 4.818 3.186 5.836.102.04.218.077.32.103.144.026.202.142.231.22l.246.76c.044.18.174.334.32.334h.245c.217 0 .391.155.406.348v.735c0 .077-.073.141-.16.141H2.928c-.174 0-.319.13-.319.284v1.147c0 .154.145.283.32.283h1.867c.087 0 .16.064.16.142v.31c0 .076-.073.141-.16.141H2.928c-.174.012-.305.128-.305.283v1.148c0 .129.116.27.247.27h1.94c.088 0 .16.065.16.142v7.537c0 .387.362.709.797.709h1.318c.434 0 .797-.322.797-.71V14.37c0-.077.072-.142.16-.142l8.14-.013c.087 0 .16.065.16.142v7.576c0 .386.362.709.797.709h1.318c.434 0 .796-.323.796-.71v-7.588c0-.077.073-.141.16-.141 0 0 2.028-.013 2.057-.026a.29.29 0 0 0 .144-.245v-1.135c0-.155-.144-.283-.333-.283h-2.013V12.5h-.015v-.425c0-.078.073-.142.16-.142h1.868c.174 0 .319-.129.319-.283v-1.147c0-.155-.145-.284-.32-.284h-1.867c-.087 0-.16-.064-.16-.14v-.736c0-.18.174-.348.406-.348h.246c.174 0 .275-.167.319-.335l.246-.76c.03-.103.13-.193.246-.232 1.869-.412 2.637-1.636 3.274-3.556V4.1c.072-.49-.26-.58-.377-.605zM16.37 8.97v1.12c0 .155-.102.271-.232.271h-2.607c-.13 0-.232-.116-.232-.27v-1.12c0-.143.1-.272.232-.272h2.607a.28.28 0 0 1 .232.27zm-5.375 0v1.12c0 .142-.102.271-.232.271H8.157c-.13 0-.232-.116-.232-.27v-1.12c0-.143.101-.272.232-.272h2.607a.28.28 0 0 1 .232.27z" }) + ] + } + ); +}); + +export { SiJinja as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJio.cjs new file mode 100644 index 000000000..a8f885589 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A2885"; +const SiJio = React__namespace.forwardRef(function SiJio2({ title = "Jio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 1 1 0 12 12 12 0 0 1 12 0m5.587 14.559c-.883 0-1.49-.648-1.49-1.574 0-.912.62-1.56 1.49-1.56s1.491.648 1.491 1.573c0 .897-.634 1.56-1.49 1.56zm.03-5.152c-2.265 0-3.772 1.437-3.772 3.576 0 2.195 1.451 3.604 3.729 3.604 2.264 0 3.755-1.409 3.755-3.59 0-2.153-1.475-3.59-3.713-3.59zM11.78 6.272c-.856 0-1.395.483-1.395 1.243 0 .774.552 1.257 1.435 1.257.857 0 1.395-.483 1.395-1.257s-.552-1.243-1.435-1.243m.152 3.204h-.277c-.675 0-1.187.317-1.187 1.285v4.42c0 .98.496 1.284 1.216 1.284h.275c.677 0 1.16-.33 1.16-1.285v-4.419c0-.995-.47-1.285-1.187-1.285M8.316 7.392h-.4c-.76 0-1.174.43-1.174 1.285v4.13c0 1.063-.36 1.436-1.2 1.436-.662 0-1.201-.29-1.63-.816C3.87 13.373 3 13.786 3 14.81c0 1.104 1.035 1.781 2.955 1.781 2.334 0 3.563-1.173 3.563-3.742V8.675c0-.856-.413-1.283-1.202-1.283" }) + ] + } + ); +}); + +exports.default = SiJio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJio.d.ts new file mode 100644 index 000000000..91a8f47b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A2885"; +declare const SiJio: IconType; +export { SiJio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJio.mjs new file mode 100644 index 000000000..0b1923670 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A2885"; +const SiJio = React.forwardRef(function SiJio2({ title = "Jio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 1 1 0 12 12 12 0 0 1 12 0m5.587 14.559c-.883 0-1.49-.648-1.49-1.574 0-.912.62-1.56 1.49-1.56s1.491.648 1.491 1.573c0 .897-.634 1.56-1.49 1.56zm.03-5.152c-2.265 0-3.772 1.437-3.772 3.576 0 2.195 1.451 3.604 3.729 3.604 2.264 0 3.755-1.409 3.755-3.59 0-2.153-1.475-3.59-3.713-3.59zM11.78 6.272c-.856 0-1.395.483-1.395 1.243 0 .774.552 1.257 1.435 1.257.857 0 1.395-.483 1.395-1.257s-.552-1.243-1.435-1.243m.152 3.204h-.277c-.675 0-1.187.317-1.187 1.285v4.42c0 .98.496 1.284 1.216 1.284h.275c.677 0 1.16-.33 1.16-1.285v-4.419c0-.995-.47-1.285-1.187-1.285M8.316 7.392h-.4c-.76 0-1.174.43-1.174 1.285v4.13c0 1.063-.36 1.436-1.2 1.436-.662 0-1.201-.29-1.63-.816C3.87 13.373 3 13.786 3 14.81c0 1.104 1.035 1.781 2.955 1.781 2.334 0 3.563-1.173 3.563-3.742V8.675c0-.856-.413-1.283-1.202-1.283" }) + ] + } + ); +}); + +export { SiJio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJira.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJira.cjs new file mode 100644 index 000000000..980cc66fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJira.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiJira = React__namespace.forwardRef(function SiJira2({ title = "Jira", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.571 11.513H0a5.218 5.218 0 0 0 5.232 5.215h2.13v2.057A5.215 5.215 0 0 0 12.575 24V12.518a1.005 1.005 0 0 0-1.005-1.005zm5.723-5.756H5.736a5.215 5.215 0 0 0 5.215 5.214h2.129v2.058a5.218 5.218 0 0 0 5.215 5.214V6.758a1.001 1.001 0 0 0-1.001-1.001zM23.013 0H11.455a5.215 5.215 0 0 0 5.215 5.215h2.129v2.057A5.215 5.215 0 0 0 24 12.483V1.005A1.001 1.001 0 0 0 23.013 0Z" }) + ] + } + ); +}); + +exports.default = SiJira; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJira.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJira.d.ts new file mode 100644 index 000000000..d00671372 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJira.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiJira: IconType; +export { SiJira as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJira.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJira.mjs new file mode 100644 index 000000000..a849c02aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJira.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiJira = React.forwardRef(function SiJira2({ title = "Jira", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.571 11.513H0a5.218 5.218 0 0 0 5.232 5.215h2.13v2.057A5.215 5.215 0 0 0 12.575 24V12.518a1.005 1.005 0 0 0-1.005-1.005zm5.723-5.756H5.736a5.215 5.215 0 0 0 5.215 5.214h2.129v2.058a5.218 5.218 0 0 0 5.215 5.214V6.758a1.001 1.001 0 0 0-1.001-1.001zM23.013 0H11.455a5.215 5.215 0 0 0 5.215 5.215h2.129v2.057A5.215 5.215 0 0 0 24 12.483V1.005A1.001 1.001 0 0 0 23.013 0Z" }) + ] + } + ); +}); + +export { SiJira as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.cjs new file mode 100644 index 000000000..0006d7875 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiJirasoftware = React__namespace.forwardRef(function SiJirasoftware2({ title = "Jira Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.004 0c-2.35 2.395-2.365 6.185.133 8.585l3.412 3.413-3.197 3.198a6.501 6.501 0 0 1 1.412 7.04l9.566-9.566a.95.95 0 0 0 0-1.344L12.004 0zm-1.748 1.74L.67 11.327a.95.95 0 0 0 0 1.344C4.45 16.44 8.22 20.244 12 24c2.295-2.298 2.395-6.096-.08-8.533l-3.47-3.469 3.2-3.2c-1.918-1.955-2.363-4.725-1.394-7.057z" }) + ] + } + ); +}); + +exports.default = SiJirasoftware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.d.ts new file mode 100644 index 000000000..f84224298 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiJirasoftware: IconType; +export { SiJirasoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.mjs new file mode 100644 index 000000000..d23a71ee0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJirasoftware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiJirasoftware = React.forwardRef(function SiJirasoftware2({ title = "Jira Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.004 0c-2.35 2.395-2.365 6.185.133 8.585l3.412 3.413-3.197 3.198a6.501 6.501 0 0 1 1.412 7.04l9.566-9.566a.95.95 0 0 0 0-1.344L12.004 0zm-1.748 1.74L.67 11.327a.95.95 0 0 0 0 1.344C4.45 16.44 8.22 20.244 12 24c2.295-2.298 2.395-6.096-.08-8.533l-3.47-3.469 3.2-3.2c-1.918-1.955-2.363-4.725-1.394-7.057z" }) + ] + } + ); +}); + +export { SiJirasoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.cjs new file mode 100644 index 000000000..e3b47028a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJitpack = React__namespace.forwardRef(function SiJitpack2({ title = "JitPack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.191 0c-2.03.393-3.466 1.199-4.325 2.318l2.883 1.664a2.81 2.81 0 0 1 1.882-.194c.181-1.091.048-2.358-.44-3.788Zm-4.94 3.06L5.83 10.715l4.734 2.736 1.113-1.925c-.505-.498-.716-1.256-.742-2.045-.032-.966.202-2.039.638-3.01.324-.72.759-1.387 1.308-1.892L10.252 3.06h-.001Zm10.498.15c-1.494.289-2.665.803-3.522 1.499a2.82 2.82 0 0 1 .777 1.731l2.874 1.658c.543-1.305.533-2.948-.129-4.888Zm-18.361.409L.459 6.961l5.186 2.173L8.737 3.78l-6.349-.161Zm12.539 1.016c-.332.005-.64.115-.943.297-.608.364-1.163 1.085-1.543 1.929-.38.844-.584 1.805-.558 2.588.026.782.271 1.325.652 1.546h.001c.382.219.974.16 1.664-.208.69-.369 1.421-1.026 1.962-1.776.541-.751.887-1.594.899-2.303.013-.708-.238-1.283-1.042-1.747-.402-.233-.759-.331-1.091-.326h-.001Zm2.991 2.853c-.163.728-.524 1.438-.985 2.079-.623.863-1.433 1.602-2.285 2.057-.699.373-1.464.57-2.15.378l-1.111 1.923 4.735 2.734 4.419-7.656-2.623-1.515Zm2.756 3.185-3.09 5.356 4.476 3.406 1.929-3.343-3.315-5.419Zm-14.066 1.59c-1.143.5-2.02 1.177-2.634 2l4.449 2.57c.408-.945.561-2.039.432-3.272l-2.247-1.298Zm-3.055 2.855-3.542 6.13v1.899l4.365-7.554-.823-.475Zm8.613.354c-1.143.501-2.02 1.177-2.634 2.001l4.449 2.569c.409-.945.562-2.04.432-3.273l-2.247-1.296v-.001Zm-6.869.653L.722 24h1.099l4.301-7.398-.825-.476v-.001Zm1.751 1.011L3.094 24H4.19l3.68-6.389-.822-.475Zm2.077 1.2L5.911 24h1.093l2.944-5.189-.823-.475Zm1.751 1.012L8.28 24h1.086l2.333-4.179-.823-.473Zm1.751 1.01L10.647 24h1.084l1.72-3.167-.824-.475Z" }) + ] + } + ); +}); + +exports.default = SiJitpack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.d.ts new file mode 100644 index 000000000..e2c6ebaef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJitpack: IconType; +export { SiJitpack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.mjs new file mode 100644 index 000000000..01187e22e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJitpack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJitpack = React.forwardRef(function SiJitpack2({ title = "JitPack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.191 0c-2.03.393-3.466 1.199-4.325 2.318l2.883 1.664a2.81 2.81 0 0 1 1.882-.194c.181-1.091.048-2.358-.44-3.788Zm-4.94 3.06L5.83 10.715l4.734 2.736 1.113-1.925c-.505-.498-.716-1.256-.742-2.045-.032-.966.202-2.039.638-3.01.324-.72.759-1.387 1.308-1.892L10.252 3.06h-.001Zm10.498.15c-1.494.289-2.665.803-3.522 1.499a2.82 2.82 0 0 1 .777 1.731l2.874 1.658c.543-1.305.533-2.948-.129-4.888Zm-18.361.409L.459 6.961l5.186 2.173L8.737 3.78l-6.349-.161Zm12.539 1.016c-.332.005-.64.115-.943.297-.608.364-1.163 1.085-1.543 1.929-.38.844-.584 1.805-.558 2.588.026.782.271 1.325.652 1.546h.001c.382.219.974.16 1.664-.208.69-.369 1.421-1.026 1.962-1.776.541-.751.887-1.594.899-2.303.013-.708-.238-1.283-1.042-1.747-.402-.233-.759-.331-1.091-.326h-.001Zm2.991 2.853c-.163.728-.524 1.438-.985 2.079-.623.863-1.433 1.602-2.285 2.057-.699.373-1.464.57-2.15.378l-1.111 1.923 4.735 2.734 4.419-7.656-2.623-1.515Zm2.756 3.185-3.09 5.356 4.476 3.406 1.929-3.343-3.315-5.419Zm-14.066 1.59c-1.143.5-2.02 1.177-2.634 2l4.449 2.57c.408-.945.561-2.039.432-3.272l-2.247-1.298Zm-3.055 2.855-3.542 6.13v1.899l4.365-7.554-.823-.475Zm8.613.354c-1.143.501-2.02 1.177-2.634 2.001l4.449 2.569c.409-.945.562-2.04.432-3.273l-2.247-1.296v-.001Zm-6.869.653L.722 24h1.099l4.301-7.398-.825-.476v-.001Zm1.751 1.011L3.094 24H4.19l3.68-6.389-.822-.475Zm2.077 1.2L5.911 24h1.093l2.944-5.189-.823-.475Zm1.751 1.012L8.28 24h1.086l2.333-4.179-.823-.473Zm1.751 1.01L10.647 24h1.084l1.72-3.167-.824-.475Z" }) + ] + } + ); +}); + +export { SiJitpack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.cjs new file mode 100644 index 000000000..6f213a4bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#97979A"; +const SiJitsi = React__namespace.forwardRef(function SiJitsi2({ title = "Jitsi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.6711 8.6222a2.31 2.31 0 0 0-.8952-.9978c-.4642-.2943-1.044-.3567-1.4482-.3567q-.2042 0-.4075.0211h-.01a3 3 0 0 1 .0335-.1862c.0202-.1028.0432-.2194.0562-.3408.0538-.5208-.1315-1.2216-.4728-1.7847-.0542-.0897-.0523-.1205-.0523-.1205a.4.4 0 0 1 .0595-.0696l.0312-.0326c.8069-.864 1.0507-1.814.7238-2.8291C16.6697 0 16.5036 0 16.3821 0a.192.192 0 0 0-.144.0629.224.224 0 0 0-.0484.1771c.0628.6384-.0812 1.5523-.1772 1.9003-.1176.4378-.528 1.0906-1.824 1.7112a3 3 0 0 1-.2784.1023c-.4228.1416-1.1294.3782-1.522.9187-.2962.347-.3678.6945-.496 1.322-.1141.5577-.2063 1.2369-.0258 2.0475a6 6 0 0 0 .0514.2074c.011.0428.0206.0797.0278.1118l.0154-.0033-.016.0043c.012.048.0045.0596-.0128.0716a1.3 1.3 0 0 1-.192.059c-.192.0307-.384.0648-.5674.1008-.5837.1003-2.3482.4046-3.1608 1.6982-.5016.7978-.5726 1.8398-.2122 3.1008.374 1.248 1.116 2.1058 1.6239 2.2805l.0081.0028q.0547.0246.1056.0418c0 .035-.0033.0778-.0076.1258a2 2 0 0 0-.0101.069c-.0557.4071-.2477.8459-.4435.8574-.1032-.0202-.5122-.252-.8016-.4421a31 31 0 0 1-.264-.1738c-.8079-.5347-1.2533-.8289-1.934-.9048a.7.7 0 0 0-.07-.0038c-.72 0-2.016 1.2125-2.0434 3.6288-.014 1.2106.1128 2.317.3778 3.289.189.697.3907 1.094.4492 1.2L5.0234 24l.1066-.48c.5616-2.544 1.2547-3.157 2.4081-3.8904.8453.792 1.9556 1.2096 3.2199 1.2096 1.0656 0 2.1806-.3096 3.1387-.8722.9413-.552 1.668-1.296 2.112-2.1556.0739.048.1632.1104.2222.1516.2112.1478.2559.179.3312.179h.0068c.0825-.0033.8611-.2644 1.6584-1.2384.4632-.5658.8453-1.2657 1.1352-2.0812.359-1.008.576-2.1984.65-3.5372.0815-1.124-.0327-2.0193-.3395-2.6606zm-2.9866-6.4708c.067.27.0756.551.0255.8246-.0749.5318-.3005 1.008-.6855 1.4424a8.21 8.21 0 0 0 .66-2.267m-.5568 3.301c.1173.1773.2068.3715.2655.576.065.268.0534.549-.0336.8106-.1378.3279-.3226.4935-.5496.4935h-.0303a.6.6 0 0 1-.2256-.0826c-.2918-.1709-.4497-.624-.336-.9561a.5.5 0 0 0 .0135-.0303c.0187-.048.072-.1401.2198-.2827.2112-.1867.5199-.4224.6754-.528zm-3.3792-.0903.003-.0053V5.352c.0623-.1536.492-.4022.777-.5669a6 6 0 0 1 .1067-.0619 4.1 4.1 0 0 1 .384-.1771c.469-.1997 1.2-.5107 1.8018-1.09-.1746.6124-.5952 1.644-1.2864 2.2684-.1536.1387-.4636.2616-.8232.4037-.3873.1526-.8529.336-1.3046.613.035-.3534.144-.9697.3394-1.3791zm-.3 1.9958c.2324-.192.6576-.4521 2.051-.912a6 6 0 0 1 .0313.1541c.0086.0418.0177.0893.0283.1411.0912.4503.192.9561 1.1294 1.237-.0873.192-.2668.5165-.3292.5783l-.0207.0178-.0144.0236c-.1824.2928-1.1683.9316-1.6099.9316a.33.33 0 0 1-.0566-.0042c-.266-.0514-.8765-.5938-1.056-.9946-.3471-.7868-.276-1.0704-.1556-1.1707zM8.9767 14.579c-.5107-.7598-.8976-2.0875-.6442-3.155v-.0048c.1224-.5808.528-.9226.6956-1.0426l.024-.0178c.2486-.2169.7574-.4458 1.4332-.646.096-.025.1488-.036.1512-.036.1243-.026.2602-.0572.3922-.0874a6.8 6.8 0 0 1 .7584-.1482 2.2 2.2 0 0 0 .189-.0308 1.45 1.45 0 0 1 .2526-.0326.324.324 0 0 1 .192.0508c.2506.2976.864.8852 1.2662.9198h.0255c.4579-.0246 1.1755-.4714 2.1336-1.3292.1627-.144.3139-.2698.4622-.3796l.0183-.014a3.52 3.52 0 0 1 .8553-.4776c-.1003.3284-.18.8894.144 1.68.1685.409.492 1.3306.7603 2.233.4618 1.5542.3975 1.8278.3884 1.8532a.53.53 0 0 1-.062.1498.37.37 0 0 1-.1032-.0364c-.2328-.1076-.494-.2996-.7992-.5252-.5664-.4152-1.2705-.9316-2.3011-1.3344-.757-.2952-1.5096-.4454-2.2358-.4454a4.67 4.67 0 0 0-.8967.0854c-1.6233.3202-2.4792 1.0358-2.9385 1.4208l-.0034.0029a.188.188 0 0 0-.059.2088.185.185 0 0 0 .1766.1215c.0418 0 .0826-.0116.2174-.0504a9.04 9.04 0 0 1 1.488-.3101q.271-.0316.5439-.0322c.7858 0 1.5086.24 2.2738.7599.1752.1464.2822.2433.347.3072l-.0662.0172-.4642.131c-1.1491.325-2.8863.816-3.7085.816a1.4 1.4 0 0 1-.1886-.011c-.2132-.0312-.4733-.254-.7148-.61zm-3.3893 5.8296a4.09 4.09 0 0 0-.7013 1.415c-.1545-.7406-.336-1.9588-.2328-2.9072.215-1.9652 1.1885-2.6232 1.333-2.6578h.0091c.0082 0 .0178 0 .037.0206.0777.0844.2457.4411.1233 1.9162-.0288.3038.0442.561.218.7646.1177.1346.2658.2392.432.3052a4.96 4.96 0 0 0-1.2202 1.144zM7.242 18.48a.43.43 0 0 1-.1608.0374.129.129 0 0 1-.1056-.0403c-.0312-.0327-.1018-.144-.0792-.4728.0158-.1618.0384-.3231.0595-.48a7 7 0 0 0 .0845-.8933c.5673.3715 1.1961.7651 1.6032.9466-.266.2356-.8194.6595-1.4016.9033zm7.404-.0528a5.35 5.35 0 0 1-3.47 1.632 6.3 6.3 0 0 1-.4627.0173c-1.7361 0-2.6184-.7368-3.024-1.1472 1.9618-.8463 2.3597-2.0563 2.5335-2.5849a2 2 0 0 1 .048-.1344c.0749-.0374.313-.144 1.0473-.419.576-.2074 1.2668-.4396 1.8759-.645.5073-.171.9456-.3193 1.1851-.4072l.0197-.0062a1 1 0 0 1 .096-.023l.0134.0173c.2232.2909.5914.468.5947.4704.2768.1236.5728.1983.875.2208-.0071 1.0488-.4862 2.1365-1.329 3.0087zm1.5216-3.5908c-.7263 0-.9811-.2338-1.2187-.5166-1.1794-1.4059-2.4831-1.6363-2.9895-1.6704a7.3 7.3 0 0 0-.4733-.0158c-.1277 0-.2525.0034-.3744.011a5.7 5.7 0 0 1 1.824-.3034c1.3008 0 2.5532.4608 3.721 1.369.4762.3701.8266.6326 1.1294.8434a28 28 0 0 1-.5976.168l-.096.0264a5.76 5.76 0 0 1-.9235.0883zm.4526 2.6586c-.0763-.0672-.192-.1742-.3115-.2832a4.7 4.7 0 0 0 .2477-.864c.0566-.3115.0921-.72.1085-.9364a8.6 8.6 0 0 0 1.0224-.2175c.4046-.1161.717-.2481.9398-.3984-.6946 1.7343-1.7006 2.496-2.007 2.6985zm2.4034-3.9662c-.1032-.8548-.4493-1.9118-.5847-2.3227-.0144-.048-.0264-.0825-.0345-.108-.0101-.0327-.0413-.1195-.1056-.2971-.1666-.4652-.5141-1.4318-.576-1.718-.0888-.4204.1118-.9988.24-1.0492a.35.35 0 0 1 .1238-.0226c.2362 0 .528.2232.7589.5832.2794.432.445 1.0046.4666 1.6076.048 1.3156-.074 2.4148-.288 3.3268" }) + ] + } + ); +}); + +exports.default = SiJitsi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.d.ts new file mode 100644 index 000000000..188803053 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#97979A"; +declare const SiJitsi: IconType; +export { SiJitsi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.mjs new file mode 100644 index 000000000..08116b628 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJitsi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#97979A"; +const SiJitsi = React.forwardRef(function SiJitsi2({ title = "Jitsi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.6711 8.6222a2.31 2.31 0 0 0-.8952-.9978c-.4642-.2943-1.044-.3567-1.4482-.3567q-.2042 0-.4075.0211h-.01a3 3 0 0 1 .0335-.1862c.0202-.1028.0432-.2194.0562-.3408.0538-.5208-.1315-1.2216-.4728-1.7847-.0542-.0897-.0523-.1205-.0523-.1205a.4.4 0 0 1 .0595-.0696l.0312-.0326c.8069-.864 1.0507-1.814.7238-2.8291C16.6697 0 16.5036 0 16.3821 0a.192.192 0 0 0-.144.0629.224.224 0 0 0-.0484.1771c.0628.6384-.0812 1.5523-.1772 1.9003-.1176.4378-.528 1.0906-1.824 1.7112a3 3 0 0 1-.2784.1023c-.4228.1416-1.1294.3782-1.522.9187-.2962.347-.3678.6945-.496 1.322-.1141.5577-.2063 1.2369-.0258 2.0475a6 6 0 0 0 .0514.2074c.011.0428.0206.0797.0278.1118l.0154-.0033-.016.0043c.012.048.0045.0596-.0128.0716a1.3 1.3 0 0 1-.192.059c-.192.0307-.384.0648-.5674.1008-.5837.1003-2.3482.4046-3.1608 1.6982-.5016.7978-.5726 1.8398-.2122 3.1008.374 1.248 1.116 2.1058 1.6239 2.2805l.0081.0028q.0547.0246.1056.0418c0 .035-.0033.0778-.0076.1258a2 2 0 0 0-.0101.069c-.0557.4071-.2477.8459-.4435.8574-.1032-.0202-.5122-.252-.8016-.4421a31 31 0 0 1-.264-.1738c-.8079-.5347-1.2533-.8289-1.934-.9048a.7.7 0 0 0-.07-.0038c-.72 0-2.016 1.2125-2.0434 3.6288-.014 1.2106.1128 2.317.3778 3.289.189.697.3907 1.094.4492 1.2L5.0234 24l.1066-.48c.5616-2.544 1.2547-3.157 2.4081-3.8904.8453.792 1.9556 1.2096 3.2199 1.2096 1.0656 0 2.1806-.3096 3.1387-.8722.9413-.552 1.668-1.296 2.112-2.1556.0739.048.1632.1104.2222.1516.2112.1478.2559.179.3312.179h.0068c.0825-.0033.8611-.2644 1.6584-1.2384.4632-.5658.8453-1.2657 1.1352-2.0812.359-1.008.576-2.1984.65-3.5372.0815-1.124-.0327-2.0193-.3395-2.6606zm-2.9866-6.4708c.067.27.0756.551.0255.8246-.0749.5318-.3005 1.008-.6855 1.4424a8.21 8.21 0 0 0 .66-2.267m-.5568 3.301c.1173.1773.2068.3715.2655.576.065.268.0534.549-.0336.8106-.1378.3279-.3226.4935-.5496.4935h-.0303a.6.6 0 0 1-.2256-.0826c-.2918-.1709-.4497-.624-.336-.9561a.5.5 0 0 0 .0135-.0303c.0187-.048.072-.1401.2198-.2827.2112-.1867.5199-.4224.6754-.528zm-3.3792-.0903.003-.0053V5.352c.0623-.1536.492-.4022.777-.5669a6 6 0 0 1 .1067-.0619 4.1 4.1 0 0 1 .384-.1771c.469-.1997 1.2-.5107 1.8018-1.09-.1746.6124-.5952 1.644-1.2864 2.2684-.1536.1387-.4636.2616-.8232.4037-.3873.1526-.8529.336-1.3046.613.035-.3534.144-.9697.3394-1.3791zm-.3 1.9958c.2324-.192.6576-.4521 2.051-.912a6 6 0 0 1 .0313.1541c.0086.0418.0177.0893.0283.1411.0912.4503.192.9561 1.1294 1.237-.0873.192-.2668.5165-.3292.5783l-.0207.0178-.0144.0236c-.1824.2928-1.1683.9316-1.6099.9316a.33.33 0 0 1-.0566-.0042c-.266-.0514-.8765-.5938-1.056-.9946-.3471-.7868-.276-1.0704-.1556-1.1707zM8.9767 14.579c-.5107-.7598-.8976-2.0875-.6442-3.155v-.0048c.1224-.5808.528-.9226.6956-1.0426l.024-.0178c.2486-.2169.7574-.4458 1.4332-.646.096-.025.1488-.036.1512-.036.1243-.026.2602-.0572.3922-.0874a6.8 6.8 0 0 1 .7584-.1482 2.2 2.2 0 0 0 .189-.0308 1.45 1.45 0 0 1 .2526-.0326.324.324 0 0 1 .192.0508c.2506.2976.864.8852 1.2662.9198h.0255c.4579-.0246 1.1755-.4714 2.1336-1.3292.1627-.144.3139-.2698.4622-.3796l.0183-.014a3.52 3.52 0 0 1 .8553-.4776c-.1003.3284-.18.8894.144 1.68.1685.409.492 1.3306.7603 2.233.4618 1.5542.3975 1.8278.3884 1.8532a.53.53 0 0 1-.062.1498.37.37 0 0 1-.1032-.0364c-.2328-.1076-.494-.2996-.7992-.5252-.5664-.4152-1.2705-.9316-2.3011-1.3344-.757-.2952-1.5096-.4454-2.2358-.4454a4.67 4.67 0 0 0-.8967.0854c-1.6233.3202-2.4792 1.0358-2.9385 1.4208l-.0034.0029a.188.188 0 0 0-.059.2088.185.185 0 0 0 .1766.1215c.0418 0 .0826-.0116.2174-.0504a9.04 9.04 0 0 1 1.488-.3101q.271-.0316.5439-.0322c.7858 0 1.5086.24 2.2738.7599.1752.1464.2822.2433.347.3072l-.0662.0172-.4642.131c-1.1491.325-2.8863.816-3.7085.816a1.4 1.4 0 0 1-.1886-.011c-.2132-.0312-.4733-.254-.7148-.61zm-3.3893 5.8296a4.09 4.09 0 0 0-.7013 1.415c-.1545-.7406-.336-1.9588-.2328-2.9072.215-1.9652 1.1885-2.6232 1.333-2.6578h.0091c.0082 0 .0178 0 .037.0206.0777.0844.2457.4411.1233 1.9162-.0288.3038.0442.561.218.7646.1177.1346.2658.2392.432.3052a4.96 4.96 0 0 0-1.2202 1.144zM7.242 18.48a.43.43 0 0 1-.1608.0374.129.129 0 0 1-.1056-.0403c-.0312-.0327-.1018-.144-.0792-.4728.0158-.1618.0384-.3231.0595-.48a7 7 0 0 0 .0845-.8933c.5673.3715 1.1961.7651 1.6032.9466-.266.2356-.8194.6595-1.4016.9033zm7.404-.0528a5.35 5.35 0 0 1-3.47 1.632 6.3 6.3 0 0 1-.4627.0173c-1.7361 0-2.6184-.7368-3.024-1.1472 1.9618-.8463 2.3597-2.0563 2.5335-2.5849a2 2 0 0 1 .048-.1344c.0749-.0374.313-.144 1.0473-.419.576-.2074 1.2668-.4396 1.8759-.645.5073-.171.9456-.3193 1.1851-.4072l.0197-.0062a1 1 0 0 1 .096-.023l.0134.0173c.2232.2909.5914.468.5947.4704.2768.1236.5728.1983.875.2208-.0071 1.0488-.4862 2.1365-1.329 3.0087zm1.5216-3.5908c-.7263 0-.9811-.2338-1.2187-.5166-1.1794-1.4059-2.4831-1.6363-2.9895-1.6704a7.3 7.3 0 0 0-.4733-.0158c-.1277 0-.2525.0034-.3744.011a5.7 5.7 0 0 1 1.824-.3034c1.3008 0 2.5532.4608 3.721 1.369.4762.3701.8266.6326 1.1294.8434a28 28 0 0 1-.5976.168l-.096.0264a5.76 5.76 0 0 1-.9235.0883zm.4526 2.6586c-.0763-.0672-.192-.1742-.3115-.2832a4.7 4.7 0 0 0 .2477-.864c.0566-.3115.0921-.72.1085-.9364a8.6 8.6 0 0 0 1.0224-.2175c.4046-.1161.717-.2481.9398-.3984-.6946 1.7343-1.7006 2.496-2.007 2.6985zm2.4034-3.9662c-.1032-.8548-.4493-1.9118-.5847-2.3227-.0144-.048-.0264-.0825-.0345-.108-.0101-.0327-.0413-.1195-.1056-.2971-.1666-.4652-.5141-1.4318-.576-1.718-.0888-.4204.1118-.9988.24-1.0492a.35.35 0 0 1 .1238-.0226c.2362 0 .528.2232.7589.5832.2794.432.445 1.0046.4666 1.6076.048 1.3156-.074 2.4148-.288 3.3268" }) + ] + } + ); +}); + +export { SiJitsi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.cjs new file mode 100644 index 000000000..886cbe957 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#367C2B"; +const SiJohndeere = React__namespace.forwardRef(function SiJohndeere2({ title = "John Deere", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9985 1.1609c-3.457.0002-6.9828.7454-10.2957 2.3475C.5331 6.3093 0 9.1929 0 12.0069c0 2.806.5258 5.6572 1.6956 8.4841 3.3292 1.61 6.8415 2.3481 10.3041 2.3481 3.4644 0 6.9774-.738 10.3029-2.348C23.4723 17.6637 24 14.8127 24 12.0068c0-2.814-.5345-5.6976-1.7034-8.4985-3.3123-1.602-6.8372-2.3473-10.2969-2.3475h-.0006zm0 .916c3.4185 0 6.6966.7568 9.5728 2.1054.9712 2.4297 1.5026 5.0671 1.5026 7.8246 0 2.7508-.5279 5.3856-1.496 7.8096-2.8779 1.3506-6.1578 2.1073-9.5794 2.1073-3.4197 0-6.6996-.7567-9.5775-2.1073-.967-2.424-1.4967-5.0586-1.4967-7.8096 0-2.7574.5304-5.3947 1.502-7.8246 2.8783-1.3487 6.155-2.1055 9.5722-2.1055zm-.0006.687c-3.1279 0-6.2393.6677-9.0219 1.9239-.8997 2.3398-1.3586 4.7996-1.3586 7.319 0 2.5135.4581 4.968 1.3532 7.3066 2.783 1.258 5.8979 1.9227 9.0273 1.9227 3.131 0 6.2453-.6647 9.0279-1.9227l.0041-.003-.0006-.0006c-.6049-.9957-1.4173-1.7997-1.4261-1.8073-.01-.005-.1691-.0544-.1691-.0544-1.7246-.53-2.8551-.9283-3.3548-1.1872-.6876-.3571-1.41-1.2241-1.4895-1.3216-.8061-.0608-1.4729-.0478-2.1145.0299l-.4087.0531c-.7793.1006-1.584.2073-2.3726.0807-.525-.086-1.0346-.2537-1.5749-.4296-.8324-.2726-1.685-.5524-2.6594-.5509H5.421l.0167.0347c.2214.4306 1.0958 1.7369 2.191 2.096.2416.058.4165.1223.4923.1816 0 .0026.4192.8556.5335 1.0862-.6814-.3094-2.789-1.3813-4.4894-3.4504v-.003c0-.0276-.044-.43-.0532-.518 1.0126-.3778 3.2927-.597 3.5496-.6214l.0186-.0018.0083-.0203c.1361-1.1996.4201-2.1597.9524-3.2109.0153-.0317.0245-.0608.0245-.086a.1175.1175 0 0 0-.0132-.052c-.0298-.0566-.1026-.0675-.1057-.0675L6.9946 9.219a222.297 222.297 0 0 0-.1678-.5126c1.1184-.416 2.4974-.8055 3.2867-.9769.1334-.213.1708-.3286.1708-.4678 0-.1181-.0569-.219-.1708-.2963-.5595-.3794-2.3215-.1508-4.104.533-.004-.0073-.0037-.0092-.009-.0168.3701-.2769 1.0317-.688 1.5223-.916l.0191-.0107-.006-.0185c-.133-.4509-1.0038-.796-1.1017-.8311.002-.0153.0039-.0252.0054-.037.8852-.0605 1.4727.3536 1.652.6488l.009.0143.0173-.0053c.1136-.0367.5135-.1639.9464-.2151l.0257-.0012-.0072-.0263c-.1422-.7583-.8658-1.2647-1.1125-1.4172.007-.0123.0093-.017.0162-.0257.8546.0661 1.6439.8023 1.8217 1.4244l.0047.0167.018.0018c.2294.008.5074.0332.6936.0645l.0192.0036.0071-.0161a1.3133 1.3133 0 0 0 .1034-.5174c0-.5602-.3164-1.1606-.7056-1.5403.0076-.0107.011-.0207.0209-.0299 1.1227.426 1.4082 1.2351 1.4082 1.9884 0 .5273-.1398 1.0297-.23 1.3497l-.0376.1326 1.7649-.2133c-.1682.213-.5309.5922-1.2547.9918 0-.0038-.7462-.095-.7462-.095l-.0192-.003-.0065.0192c-.0501.154-.487 1.5335-.4894 2.5476 0 .376.1068.6676.3167.8687.374.3599.9933.3801 1.4262.3633 1.8404-.0673 3.2765.0457 4.2731.3406l.0592.0161.009-.0137c.0619-.0953.1105-.272.1105-.5061 0-.4443-.1781-1.1067-.7762-1.8558.0065-.0053.0067-.0092.0144-.0149.099.0547 1.7136.9716 1.9292 2.3558-.0378.0146-.7737.315-.7737.315l.0239.0238c.6822.7143.9176 1.5776 1.1065 2.2686.1503.5476.3298.897.5676 1.1024.2757.2378 1.32.7366 1.6335.883.2607.3705.7092 1.0643 1.0343 1.6019a20.315 20.315 0 0 0 1.067-6.5077c0-2.5195-.46-4.9795-1.3586-7.3191-2.7818-1.2561-5.896-1.9239-9.0237-1.9239Z" }) + ] + } + ); +}); + +exports.default = SiJohndeere; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.d.ts new file mode 100644 index 000000000..843a5d7ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#367C2B"; +declare const SiJohndeere: IconType; +export { SiJohndeere as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.mjs new file mode 100644 index 000000000..69531dadd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJohndeere.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#367C2B"; +const SiJohndeere = React.forwardRef(function SiJohndeere2({ title = "John Deere", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9985 1.1609c-3.457.0002-6.9828.7454-10.2957 2.3475C.5331 6.3093 0 9.1929 0 12.0069c0 2.806.5258 5.6572 1.6956 8.4841 3.3292 1.61 6.8415 2.3481 10.3041 2.3481 3.4644 0 6.9774-.738 10.3029-2.348C23.4723 17.6637 24 14.8127 24 12.0068c0-2.814-.5345-5.6976-1.7034-8.4985-3.3123-1.602-6.8372-2.3473-10.2969-2.3475h-.0006zm0 .916c3.4185 0 6.6966.7568 9.5728 2.1054.9712 2.4297 1.5026 5.0671 1.5026 7.8246 0 2.7508-.5279 5.3856-1.496 7.8096-2.8779 1.3506-6.1578 2.1073-9.5794 2.1073-3.4197 0-6.6996-.7567-9.5775-2.1073-.967-2.424-1.4967-5.0586-1.4967-7.8096 0-2.7574.5304-5.3947 1.502-7.8246 2.8783-1.3487 6.155-2.1055 9.5722-2.1055zm-.0006.687c-3.1279 0-6.2393.6677-9.0219 1.9239-.8997 2.3398-1.3586 4.7996-1.3586 7.319 0 2.5135.4581 4.968 1.3532 7.3066 2.783 1.258 5.8979 1.9227 9.0273 1.9227 3.131 0 6.2453-.6647 9.0279-1.9227l.0041-.003-.0006-.0006c-.6049-.9957-1.4173-1.7997-1.4261-1.8073-.01-.005-.1691-.0544-.1691-.0544-1.7246-.53-2.8551-.9283-3.3548-1.1872-.6876-.3571-1.41-1.2241-1.4895-1.3216-.8061-.0608-1.4729-.0478-2.1145.0299l-.4087.0531c-.7793.1006-1.584.2073-2.3726.0807-.525-.086-1.0346-.2537-1.5749-.4296-.8324-.2726-1.685-.5524-2.6594-.5509H5.421l.0167.0347c.2214.4306 1.0958 1.7369 2.191 2.096.2416.058.4165.1223.4923.1816 0 .0026.4192.8556.5335 1.0862-.6814-.3094-2.789-1.3813-4.4894-3.4504v-.003c0-.0276-.044-.43-.0532-.518 1.0126-.3778 3.2927-.597 3.5496-.6214l.0186-.0018.0083-.0203c.1361-1.1996.4201-2.1597.9524-3.2109.0153-.0317.0245-.0608.0245-.086a.1175.1175 0 0 0-.0132-.052c-.0298-.0566-.1026-.0675-.1057-.0675L6.9946 9.219a222.297 222.297 0 0 0-.1678-.5126c1.1184-.416 2.4974-.8055 3.2867-.9769.1334-.213.1708-.3286.1708-.4678 0-.1181-.0569-.219-.1708-.2963-.5595-.3794-2.3215-.1508-4.104.533-.004-.0073-.0037-.0092-.009-.0168.3701-.2769 1.0317-.688 1.5223-.916l.0191-.0107-.006-.0185c-.133-.4509-1.0038-.796-1.1017-.8311.002-.0153.0039-.0252.0054-.037.8852-.0605 1.4727.3536 1.652.6488l.009.0143.0173-.0053c.1136-.0367.5135-.1639.9464-.2151l.0257-.0012-.0072-.0263c-.1422-.7583-.8658-1.2647-1.1125-1.4172.007-.0123.0093-.017.0162-.0257.8546.0661 1.6439.8023 1.8217 1.4244l.0047.0167.018.0018c.2294.008.5074.0332.6936.0645l.0192.0036.0071-.0161a1.3133 1.3133 0 0 0 .1034-.5174c0-.5602-.3164-1.1606-.7056-1.5403.0076-.0107.011-.0207.0209-.0299 1.1227.426 1.4082 1.2351 1.4082 1.9884 0 .5273-.1398 1.0297-.23 1.3497l-.0376.1326 1.7649-.2133c-.1682.213-.5309.5922-1.2547.9918 0-.0038-.7462-.095-.7462-.095l-.0192-.003-.0065.0192c-.0501.154-.487 1.5335-.4894 2.5476 0 .376.1068.6676.3167.8687.374.3599.9933.3801 1.4262.3633 1.8404-.0673 3.2765.0457 4.2731.3406l.0592.0161.009-.0137c.0619-.0953.1105-.272.1105-.5061 0-.4443-.1781-1.1067-.7762-1.8558.0065-.0053.0067-.0092.0144-.0149.099.0547 1.7136.9716 1.9292 2.3558-.0378.0146-.7737.315-.7737.315l.0239.0238c.6822.7143.9176 1.5776 1.1065 2.2686.1503.5476.3298.897.5676 1.1024.2757.2378 1.32.7366 1.6335.883.2607.3705.7092 1.0643 1.0343 1.6019a20.315 20.315 0 0 0 1.067-6.5077c0-2.5195-.46-4.9795-1.3586-7.3191-2.7818-1.2561-5.896-1.9239-9.0237-1.9239Z" }) + ] + } + ); +}); + +export { SiJohndeere as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.cjs new file mode 100644 index 000000000..8c820d4b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5091CD"; +const SiJoomla = React__namespace.forwardRef(function SiJoomla2({ title = "Joomla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.719 14.759L14.22 17.26l-2.37 2.37-.462.466c-1.368 1.365-3.297 1.83-5.047 1.397-.327 1.424-1.604 2.49-3.13 2.49C1.438 23.983 0 22.547 0 20.772c0-1.518 1.055-2.789 2.469-3.123-.446-1.76.016-3.705 1.396-5.08l.179-.18 2.37 2.37-.184.181c-.769.779-.769 2.024 0 2.789.771.78 2.022.78 2.787 0l.465-.465 2.367-2.371 2.502-2.506 2.368 2.372zm.924 6.652c-1.822.563-3.885.12-5.328-1.318l-.18-.185 2.365-2.369.18.184c.771.768 2.018.768 2.787 0 .765-.765.769-2.01-.004-2.781l-.466-.465-2.365-2.37-2.502-2.503 2.37-2.369 2.499 2.505 2.367 2.37.464.464c1.365 1.36 1.846 3.278 1.411 5.021 1.56.224 2.759 1.56 2.759 3.18 0 1.784-1.439 3.21-3.209 3.21-1.545 0-2.851-1.096-3.135-2.565l-.013-.009zM6.975 9.461l2.508-2.505 2.37-2.369.462-.461C13.74 2.7 15.772 2.251 17.58 2.79c.212-1.561 1.555-2.775 3.179-2.775 1.772 0 3.211 1.437 3.211 3.209 0 1.631-1.216 2.978-2.79 3.186.519 1.799.068 3.816-1.35 5.234l-.182.184-2.369-2.369.184-.184c.769-.77.769-2.016 0-2.783-.766-.766-2.011-.768-2.781.003l-.462.461-2.37 2.369-2.505 2.502-2.37-2.366zm-2.653 2.647l-.461-.462C2.43 10.215 1.986 8.17 2.529 6.358 1.1 6.029.03 4.754.03 3.224.03 1.454 1.47.015 3.24.015c1.596 0 2.92 1.166 3.17 2.691 1.73-.405 3.626.065 4.979 1.415l.184.185-2.37 2.37-.183-.181c-.77-.765-2.016-.765-2.785 0-.771.781-.77 2.025-.005 2.79l.465.466 2.37 2.369 2.505 2.505-2.367 2.37-2.51-2.505-2.371-2.37v-.012z" }) + ] + } + ); +}); + +exports.default = SiJoomla; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.d.ts new file mode 100644 index 000000000..792467baf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5091CD"; +declare const SiJoomla: IconType; +export { SiJoomla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.mjs new file mode 100644 index 000000000..0fc1cda9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJoomla.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5091CD"; +const SiJoomla = React.forwardRef(function SiJoomla2({ title = "Joomla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.719 14.759L14.22 17.26l-2.37 2.37-.462.466c-1.368 1.365-3.297 1.83-5.047 1.397-.327 1.424-1.604 2.49-3.13 2.49C1.438 23.983 0 22.547 0 20.772c0-1.518 1.055-2.789 2.469-3.123-.446-1.76.016-3.705 1.396-5.08l.179-.18 2.37 2.37-.184.181c-.769.779-.769 2.024 0 2.789.771.78 2.022.78 2.787 0l.465-.465 2.367-2.371 2.502-2.506 2.368 2.372zm.924 6.652c-1.822.563-3.885.12-5.328-1.318l-.18-.185 2.365-2.369.18.184c.771.768 2.018.768 2.787 0 .765-.765.769-2.01-.004-2.781l-.466-.465-2.365-2.37-2.502-2.503 2.37-2.369 2.499 2.505 2.367 2.37.464.464c1.365 1.36 1.846 3.278 1.411 5.021 1.56.224 2.759 1.56 2.759 3.18 0 1.784-1.439 3.21-3.209 3.21-1.545 0-2.851-1.096-3.135-2.565l-.013-.009zM6.975 9.461l2.508-2.505 2.37-2.369.462-.461C13.74 2.7 15.772 2.251 17.58 2.79c.212-1.561 1.555-2.775 3.179-2.775 1.772 0 3.211 1.437 3.211 3.209 0 1.631-1.216 2.978-2.79 3.186.519 1.799.068 3.816-1.35 5.234l-.182.184-2.369-2.369.184-.184c.769-.77.769-2.016 0-2.783-.766-.766-2.011-.768-2.781.003l-.462.461-2.37 2.369-2.505 2.502-2.37-2.366zm-2.653 2.647l-.461-.462C2.43 10.215 1.986 8.17 2.529 6.358 1.1 6.029.03 4.754.03 3.224.03 1.454 1.47.015 3.24.015c1.596 0 2.92 1.166 3.17 2.691 1.73-.405 3.626.065 4.979 1.415l.184.185-2.37 2.37-.183-.181c-.77-.765-2.016-.765-2.785 0-.771.781-.77 2.025-.005 2.79l.465.466 2.37 2.369 2.505 2.505-2.367 2.37-2.51-2.505-2.371-2.37v-.012z" }) + ] + } + ); +}); + +export { SiJoomla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.cjs new file mode 100644 index 000000000..1e454d49c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1071D3"; +const SiJoplin = React__namespace.forwardRef(function SiJoplin2({ title = "Joplin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.969 0h-8.904c-.084 0-.152.068-.152.152v2.827c0 .095.077.172.172.172h1.221c.493 0 .894.38.937.863v13.378h-.001l-.017.363-.05.282c-.011.044-.02.089-.033.132-.081.258-.208.497-.384.708-.007.007-.015.014-.021.021-.054.063-.11.123-.172.18-.063.057-.13.11-.2.16-.498.353-1.169.508-1.918.436-.955-.089-1.903-.523-2.669-1.22-.765-.696-1.242-1.558-1.34-2.427-.089-.778.144-1.462.655-1.927.002-.001.003-.002.004-.003.02-.018.041-.033.062-.05.366-.307.842-.493 1.387-.544.006 0 .012-.001.017-.002l.298-.014.35.017c.008 0 .016.002.024.003.499.05.993.199 1.462.425.01 0 .022.003.036.011.143.079.17-.005.174-.061v-4.256c0-.122-.085-.23-.203-.256-2.527-.556-5.005.022-6.754 1.615-1.528 1.389-2.267 3.395-2.027 5.502.213 1.876 1.176 3.679 2.712 5.076 1.497 1.362 3.402 2.213 5.368 2.399.271.025.543.038.809.038 1.877 0 3.619-.644 4.905-1.814 1.218-1.109 1.948-2.632 2.055-4.288l.01-10.866h.001v-2.955c.011-.513.429-.926.945-.926h1.221c.095 0 .172-.077.172-.172v-2.827c0-.084-.068-.152-.152-.152z" }) + ] + } + ); +}); + +exports.default = SiJoplin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.d.ts new file mode 100644 index 000000000..55e447d55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1071D3"; +declare const SiJoplin: IconType; +export { SiJoplin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.mjs new file mode 100644 index 000000000..0f7f10768 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJoplin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1071D3"; +const SiJoplin = React.forwardRef(function SiJoplin2({ title = "Joplin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m20.969 0h-8.904c-.084 0-.152.068-.152.152v2.827c0 .095.077.172.172.172h1.221c.493 0 .894.38.937.863v13.378h-.001l-.017.363-.05.282c-.011.044-.02.089-.033.132-.081.258-.208.497-.384.708-.007.007-.015.014-.021.021-.054.063-.11.123-.172.18-.063.057-.13.11-.2.16-.498.353-1.169.508-1.918.436-.955-.089-1.903-.523-2.669-1.22-.765-.696-1.242-1.558-1.34-2.427-.089-.778.144-1.462.655-1.927.002-.001.003-.002.004-.003.02-.018.041-.033.062-.05.366-.307.842-.493 1.387-.544.006 0 .012-.001.017-.002l.298-.014.35.017c.008 0 .016.002.024.003.499.05.993.199 1.462.425.01 0 .022.003.036.011.143.079.17-.005.174-.061v-4.256c0-.122-.085-.23-.203-.256-2.527-.556-5.005.022-6.754 1.615-1.528 1.389-2.267 3.395-2.027 5.502.213 1.876 1.176 3.679 2.712 5.076 1.497 1.362 3.402 2.213 5.368 2.399.271.025.543.038.809.038 1.877 0 3.619-.644 4.905-1.814 1.218-1.109 1.948-2.632 2.055-4.288l.01-10.866h.001v-2.955c.011-.513.429-.926.945-.926h1.221c.095 0 .172-.077.172-.172v-2.827c0-.084-.068-.152-.152-.152z" }) + ] + } + ); +}); + +export { SiJoplin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.cjs new file mode 100644 index 000000000..73dd8af68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJordan = React__namespace.forwardRef(function SiJordan2({ title = "Jordan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.55 2.194v-.075c0-.35.113-.663.338-.938.225-.275.512-.412.862-.412s.663.112.938.337.425.525.45.9c.025.375-.088.688-.338.938s-.55.375-.9.375l-.225.075.075.112-.075.413-.15 1.2c.05.05.075.1.075.15l-.15.75c-.05.1-.1.175-.15.225l-.075.3a22.59 22.59 0 01-.45 1.575v.15c-.05.25-.087.45-.112.6-.025.15-.113.4-.263.75-.1.2-.1.525 0 .975l.075.075c0 .15.063.325.188.525s.187.375.187.525c.05 1-.025 1.85-.225 2.55l.15.45c.6.3.775.625.525.975l.375.15c.6.3 1.025.562 1.275.787.25.225.5.463.75.713.2.05.35.125.45.225l.225.075c1.05.7 2.1 1.55 3.15 2.55l.3.225v.075l-.075.15.225.15h.075c.15.1.25.15.3.15h.075c.05 0 .1-.025.15-.075l.15-.075c.1-.1.2-.175.3-.225h.3c.05 0 .05.025 0 .075l-.3.15-.375.45h.525l.525.075c.15-.05.275-.1.375-.15l.375-.225c.15-.05.3 0 .45.15h.075c.05.05.025.125-.075.225l-.9.825c-.25.2-.475.325-.675.375l-.975.675c-.05.05-.1.05-.15 0l-.225-.3-.15-.3-.188-.263-.225-.3-.187-.225-.15-.187-.3-.225c-.1 0-.2-.025-.3-.075l-.975-.75c-.15 0-.325-.075-.525-.225-.75-.65-1.25-1.05-1.5-1.2l-.45-.3-.9-.15c-.3-.05-.7-.2-1.2-.45l-.6-.3c-.4-.2-.675-.3-.825-.3l-.3-.15c-.2-.05-.35-.1-.45-.15l-.15-.15c-.1 0-.2.025-.3.075l-1.5.75-1.875.825c-.5.4-.975.725-1.425.975l-.825.375-1.275.9c-.1.1-.2.1-.3 0l-.15.15c-.15.05-.25.075-.3.075l-.3.15v.15H3.2l-.15.225c-.1.2-.2.312-.3.337-.1.025-.162.063-.187.113a.434.434 0 01-.075.112l-.15.15-.225.15-.338-.037-.45.075-.3.075c-.25.05-.45.012-.6-.113-.15-.125-.275-.312-.375-.562-.1-.15-.05-.275.15-.375l.075-.075c.05-.05.125-.075.225-.075h.45l.6-.225.3-.075c0-.1.025-.175.075-.225.05-.05.125-.075.225-.075v-.075a.666.666 0 01-.075-.3c-.05-.1-.063-.175-.037-.225.025-.05.05-.075.075-.075h.037l.075.225c.05.25.125.325.225.225l.075-.15c.05-.1.125-.15.225-.15l.15.15.15-.15-.075-.075c0-.05.025-.075.075-.075l.3-.3c.25-.3.55-.575.9-.825.7-.55 1.45-.975 2.25-1.275.25-.25.525-.375.825-.375.2-.35.5-.725.9-1.125.35-.25.6-.425.75-.525.1-.2.225-.3.375-.3h.075l.15-.15c.1-.05.175-.1.225-.15v-.375c0-.25.025-.45.075-.6.05-.15.175-.225.375-.225l.3-.3c-.1-.2-.15-.425-.15-.675h-.075c-.1-.15-.15-.3-.15-.45-.15-.25-.25-.45-.3-.6H9.65c-.05.15-.175.25-.375.3l-.075.15c-.2.35-.375.612-.525.787-.15.175-.425.388-.825.638-.25.25-.425.525-.525.825-.05.15-.05.3 0 .45l-.075.15h.075c0 .1.025.15.075.15h.075c.1.05.15.112.15.187s-.075.1-.225.075a.606.606 0 01-.337-.15c-.075-.075-.138-.112-.188-.112l-.225.225c-.1.15-.2.212-.3.187-.1-.025-.125-.062-.075-.112l.075-.075c.05-.1.05-.15 0-.15l-.6.15c-.05.05-.112.05-.187 0s-.063-.1.037-.15l.375-.15c0-.05-.025-.075-.075-.075-.2.1-.4.125-.6.075l-.375-.075-.075-.075c0-.05.025-.075.075-.075.2.05.45.025.75-.075l.525-.225.6-.675.075-.15c.2-.4.413-.763.638-1.088a3.68 3.68 0 01.712-.787l.075-.3c.1-.2.2-.375.3-.525.1-.15.225-.35.375-.6l.225-.3c.2-.3.425-.45.675-.45l.225-.225c.05-.05.075-.125.075-.225l.15-.15-.075-.075c-.3-.25-.45-.475-.45-.675-.05-.35.063-.65.338-.9s.55-.363.825-.338c.275.025.487.113.637.263l.15.15c.05 0 .075.025.075.075l.3.15v.225c.1.1.15.175.15.225.1-.15.25-.325.45-.525l.375-1.2c0-.2.05-.4.15-.6l.15-.225v-.15l.225-.9h.15l.225-.9a.933.933 0 000-.525l-.3-.75-.15-.6z" }) + ] + } + ); +}); + +exports.default = SiJordan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.d.ts new file mode 100644 index 000000000..76b00d4a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJordan: IconType; +export { SiJordan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.mjs new file mode 100644 index 000000000..1fa4045dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJordan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJordan = React.forwardRef(function SiJordan2({ title = "Jordan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.55 2.194v-.075c0-.35.113-.663.338-.938.225-.275.512-.412.862-.412s.663.112.938.337.425.525.45.9c.025.375-.088.688-.338.938s-.55.375-.9.375l-.225.075.075.112-.075.413-.15 1.2c.05.05.075.1.075.15l-.15.75c-.05.1-.1.175-.15.225l-.075.3a22.59 22.59 0 01-.45 1.575v.15c-.05.25-.087.45-.112.6-.025.15-.113.4-.263.75-.1.2-.1.525 0 .975l.075.075c0 .15.063.325.188.525s.187.375.187.525c.05 1-.025 1.85-.225 2.55l.15.45c.6.3.775.625.525.975l.375.15c.6.3 1.025.562 1.275.787.25.225.5.463.75.713.2.05.35.125.45.225l.225.075c1.05.7 2.1 1.55 3.15 2.55l.3.225v.075l-.075.15.225.15h.075c.15.1.25.15.3.15h.075c.05 0 .1-.025.15-.075l.15-.075c.1-.1.2-.175.3-.225h.3c.05 0 .05.025 0 .075l-.3.15-.375.45h.525l.525.075c.15-.05.275-.1.375-.15l.375-.225c.15-.05.3 0 .45.15h.075c.05.05.025.125-.075.225l-.9.825c-.25.2-.475.325-.675.375l-.975.675c-.05.05-.1.05-.15 0l-.225-.3-.15-.3-.188-.263-.225-.3-.187-.225-.15-.187-.3-.225c-.1 0-.2-.025-.3-.075l-.975-.75c-.15 0-.325-.075-.525-.225-.75-.65-1.25-1.05-1.5-1.2l-.45-.3-.9-.15c-.3-.05-.7-.2-1.2-.45l-.6-.3c-.4-.2-.675-.3-.825-.3l-.3-.15c-.2-.05-.35-.1-.45-.15l-.15-.15c-.1 0-.2.025-.3.075l-1.5.75-1.875.825c-.5.4-.975.725-1.425.975l-.825.375-1.275.9c-.1.1-.2.1-.3 0l-.15.15c-.15.05-.25.075-.3.075l-.3.15v.15H3.2l-.15.225c-.1.2-.2.312-.3.337-.1.025-.162.063-.187.113a.434.434 0 01-.075.112l-.15.15-.225.15-.338-.037-.45.075-.3.075c-.25.05-.45.012-.6-.113-.15-.125-.275-.312-.375-.562-.1-.15-.05-.275.15-.375l.075-.075c.05-.05.125-.075.225-.075h.45l.6-.225.3-.075c0-.1.025-.175.075-.225.05-.05.125-.075.225-.075v-.075a.666.666 0 01-.075-.3c-.05-.1-.063-.175-.037-.225.025-.05.05-.075.075-.075h.037l.075.225c.05.25.125.325.225.225l.075-.15c.05-.1.125-.15.225-.15l.15.15.15-.15-.075-.075c0-.05.025-.075.075-.075l.3-.3c.25-.3.55-.575.9-.825.7-.55 1.45-.975 2.25-1.275.25-.25.525-.375.825-.375.2-.35.5-.725.9-1.125.35-.25.6-.425.75-.525.1-.2.225-.3.375-.3h.075l.15-.15c.1-.05.175-.1.225-.15v-.375c0-.25.025-.45.075-.6.05-.15.175-.225.375-.225l.3-.3c-.1-.2-.15-.425-.15-.675h-.075c-.1-.15-.15-.3-.15-.45-.15-.25-.25-.45-.3-.6H9.65c-.05.15-.175.25-.375.3l-.075.15c-.2.35-.375.612-.525.787-.15.175-.425.388-.825.638-.25.25-.425.525-.525.825-.05.15-.05.3 0 .45l-.075.15h.075c0 .1.025.15.075.15h.075c.1.05.15.112.15.187s-.075.1-.225.075a.606.606 0 01-.337-.15c-.075-.075-.138-.112-.188-.112l-.225.225c-.1.15-.2.212-.3.187-.1-.025-.125-.062-.075-.112l.075-.075c.05-.1.05-.15 0-.15l-.6.15c-.05.05-.112.05-.187 0s-.063-.1.037-.15l.375-.15c0-.05-.025-.075-.075-.075-.2.1-.4.125-.6.075l-.375-.075-.075-.075c0-.05.025-.075.075-.075.2.05.45.025.75-.075l.525-.225.6-.675.075-.15c.2-.4.413-.763.638-1.088a3.68 3.68 0 01.712-.787l.075-.3c.1-.2.2-.375.3-.525.1-.15.225-.35.375-.6l.225-.3c.2-.3.425-.45.675-.45l.225-.225c.05-.05.075-.125.075-.225l.15-.15-.075-.075c-.3-.25-.45-.475-.45-.675-.05-.35.063-.65.338-.9s.55-.363.825-.338c.275.025.487.113.637.263l.15.15c.05 0 .075.025.075.075l.3.15v.225c.1.1.15.175.15.225.1-.15.25-.325.45-.525l.375-1.2c0-.2.05-.4.15-.6l.15-.225v-.15l.225-.9h.15l.225-.9a.933.933 0 000-.525l-.3-.75-.15-.6z" }) + ] + } + ); +}); + +export { SiJordan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.cjs new file mode 100644 index 000000000..002683d3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E1B133"; +const SiJouav = React__namespace.forwardRef(function SiJouav2({ title = "JOUAV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m4.8218 13.1065.112-.069a1.35694 1.357 0 0 1-.48099-1.037 1.36994 1.37 0 0 1 1.37395-1.365c.40998 0 .77596.18 1.02995.462l.016-.027c.115-.203.226-.402.30999-.6.038-.078.066-.157.097-.233a2.2839 2.284 0 0 0-1.45194-.517 2.2869 2.287 0 0 0-2.2949 2.28c0 .562.20498 1.076.54397 1.473a2.4939 2.494 0 0 0 .141-.058c.19999-.086.39998-.195.60397-.309zm2.70189-2.642a4.8278 4.828 0 0 1-.312.787 6.70872 6.709 0 0 1-.11799.216 1.35994 1.36 0 0 1 .108.532 1.36994 1.37 0 0 1-1.87992 1.269 5.83176 5.832 0 0 1-.31599.175 4.8598 4.86 0 0 1-.67297.272l-.012.004a2.2929 2.293 0 0 0 1.50594.56 2.2869 2.287 0 0 0 2.2949-2.28 2.2569 2.257 0 0 0-.59797-1.535zm-6.20175-.673H2.7209v2.754c0 .592-.146 1.028-.43699 1.31-.29198.28-.74496.42-1.35994.42A3.70985 3.71 0 0 1 0 14.1605v-.959a1.41794 1.418 0 0 0 .44598.075c.31599 0 .53998-.077.67397-.23.135-.153.202-.418.202-.794v-2.46zm7.55469 0h1.39994v2.55c0 .374.065.644.199.812.13299.166.34598.25.63797.25.29998 0 .52698-.09.67997-.27.153-.178.22899-.443.22899-.792v-2.55h1.33194v2.55c0 .646-.18699 1.13-.55997 1.451-.37299.322-.93296.483-1.67993.483-.73997 0-1.29895-.162-1.67393-.486-.37599-.325-.56298-.807-.56298-1.448v-2.55zm6.91471 0h1.68693l1.98492 4.383h-1.49494l-.37198-.928h-2.01992l-.38998.928h-1.38495zm.81497.978-.67997 1.644h1.33694zm2.1739-.978h1.46195l1.16995 3.411 1.15595-3.41H24l-1.77793 4.382h-1.75392z" }) + ] + } + ); +}); + +exports.default = SiJouav; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.d.ts new file mode 100644 index 000000000..3acbf10db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E1B133"; +declare const SiJouav: IconType; +export { SiJouav as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.mjs new file mode 100644 index 000000000..4aedf5c30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJouav.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E1B133"; +const SiJouav = React.forwardRef(function SiJouav2({ title = "JOUAV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m4.8218 13.1065.112-.069a1.35694 1.357 0 0 1-.48099-1.037 1.36994 1.37 0 0 1 1.37395-1.365c.40998 0 .77596.18 1.02995.462l.016-.027c.115-.203.226-.402.30999-.6.038-.078.066-.157.097-.233a2.2839 2.284 0 0 0-1.45194-.517 2.2869 2.287 0 0 0-2.2949 2.28c0 .562.20498 1.076.54397 1.473a2.4939 2.494 0 0 0 .141-.058c.19999-.086.39998-.195.60397-.309zm2.70189-2.642a4.8278 4.828 0 0 1-.312.787 6.70872 6.709 0 0 1-.11799.216 1.35994 1.36 0 0 1 .108.532 1.36994 1.37 0 0 1-1.87992 1.269 5.83176 5.832 0 0 1-.31599.175 4.8598 4.86 0 0 1-.67297.272l-.012.004a2.2929 2.293 0 0 0 1.50594.56 2.2869 2.287 0 0 0 2.2949-2.28 2.2569 2.257 0 0 0-.59797-1.535zm-6.20175-.673H2.7209v2.754c0 .592-.146 1.028-.43699 1.31-.29198.28-.74496.42-1.35994.42A3.70985 3.71 0 0 1 0 14.1605v-.959a1.41794 1.418 0 0 0 .44598.075c.31599 0 .53998-.077.67397-.23.135-.153.202-.418.202-.794v-2.46zm7.55469 0h1.39994v2.55c0 .374.065.644.199.812.13299.166.34598.25.63797.25.29998 0 .52698-.09.67997-.27.153-.178.22899-.443.22899-.792v-2.55h1.33194v2.55c0 .646-.18699 1.13-.55997 1.451-.37299.322-.93296.483-1.67993.483-.73997 0-1.29895-.162-1.67393-.486-.37599-.325-.56298-.807-.56298-1.448v-2.55zm6.91471 0h1.68693l1.98492 4.383h-1.49494l-.37198-.928h-2.01992l-.38998.928h-1.38495zm.81497.978-.67997 1.644h1.33694zm2.1739-.978h1.46195l1.16995 3.411 1.15595-3.41H24l-1.77793 4.382h-1.75392z" }) + ] + } + ); +}); + +export { SiJouav as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.cjs new file mode 100644 index 000000000..76801cffb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D61FF"; +const SiJovian = React__namespace.forwardRef(function SiJovian2({ title = "Jovian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.25 1.65C20.25.74 19.51 0 18.6 0H5.4c-.91 0-1.65.74-1.65 1.65v20.7c0 .91.74 1.65 1.65 1.65h13.2c.91 0 1.65-.74 1.65-1.65V1.65zm-5.275 4.341a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm.04 9.018a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm-6.015 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z" }) + ] + } + ); +}); + +exports.default = SiJovian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.d.ts new file mode 100644 index 000000000..84d0e0c92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D61FF"; +declare const SiJovian: IconType; +export { SiJovian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.mjs new file mode 100644 index 000000000..9466ded88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJovian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D61FF"; +const SiJovian = React.forwardRef(function SiJovian2({ title = "Jovian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.25 1.65C20.25.74 19.51 0 18.6 0H5.4c-.91 0-1.65.74-1.65 1.65v20.7c0 .91.74 1.65 1.65 1.65h13.2c.91 0 1.65-.74 1.65-1.65V1.65zm-5.275 4.341a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm.04 9.018a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm-6.015 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z" }) + ] + } + ); +}); + +export { SiJovian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.cjs new file mode 100644 index 000000000..b5c9f6ccf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8A8A8A"; +const SiJpeg = React__namespace.forwardRef(function SiJpeg2({ title = "JPEG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.559 20.407c-.63 0-1.08-.026-1.08-.026V17.22h1.073c1.19 0 1.95.33 1.95 1.426 0 .93-.329 1.76-1.943 1.76m.028-3.965H6.61V24h.87v-2.797h1.275c1.783 0 2.634-1.096 2.634-2.483 0-1.413-.871-2.279-2.8-2.279M13.37 20.571h3.063v-.812H13.37v-2.55h3.548v-.768H12.5v7.42h4.566v-.768H13.37zM21.485 19.938v.753h1.289v1.866c-.395.587-1.452.587-1.452.587-.805 0-1.454-.277-1.927-.838-.47-.558-.707-1.158-.707-2.06 0-.947.235-1.675.711-2.257.482-.583 1.15-.905 1.982-.905.427 0 .884.131 1.33.405l.538-.602c-.482-.396-1.096-.593-1.84-.593-1.11 0-2.005.361-2.656 1.08-.657.715-.99 1.668-.99 2.832s.305 2.043.9 2.745c.591.692 1.42 1.047 2.44 1.047.46 0 .932-.043 1.423-.197.378-.12.508-.216 1.075-.216v-3.647zM3.856 16.441h-.584v.768h.584v3.571c0 1.101.033 1.746-.345 2.124a1.267 1.267 0 01-.865.367c-1.362 0-1.412-1.091-1.412-1.091H.4c.08 1.942 2.362 1.813 2.362 1.813.607-.033 1.087-.233 1.462-.609.495-.499.507-1.422.507-2.192v-4.75zM17.352 0H3.063v14.282h8.266V8.271h6.023zM18.038 9.067h5.213v5.216h-5.213z" }) + ] + } + ); +}); + +exports.default = SiJpeg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.d.ts new file mode 100644 index 000000000..dfaa7d3a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8A8A8A"; +declare const SiJpeg: IconType; +export { SiJpeg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.mjs new file mode 100644 index 000000000..30a4b2a31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJpeg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8A8A8A"; +const SiJpeg = React.forwardRef(function SiJpeg2({ title = "JPEG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.559 20.407c-.63 0-1.08-.026-1.08-.026V17.22h1.073c1.19 0 1.95.33 1.95 1.426 0 .93-.329 1.76-1.943 1.76m.028-3.965H6.61V24h.87v-2.797h1.275c1.783 0 2.634-1.096 2.634-2.483 0-1.413-.871-2.279-2.8-2.279M13.37 20.571h3.063v-.812H13.37v-2.55h3.548v-.768H12.5v7.42h4.566v-.768H13.37zM21.485 19.938v.753h1.289v1.866c-.395.587-1.452.587-1.452.587-.805 0-1.454-.277-1.927-.838-.47-.558-.707-1.158-.707-2.06 0-.947.235-1.675.711-2.257.482-.583 1.15-.905 1.982-.905.427 0 .884.131 1.33.405l.538-.602c-.482-.396-1.096-.593-1.84-.593-1.11 0-2.005.361-2.656 1.08-.657.715-.99 1.668-.99 2.832s.305 2.043.9 2.745c.591.692 1.42 1.047 2.44 1.047.46 0 .932-.043 1.423-.197.378-.12.508-.216 1.075-.216v-3.647zM3.856 16.441h-.584v.768h.584v3.571c0 1.101.033 1.746-.345 2.124a1.267 1.267 0 01-.865.367c-1.362 0-1.412-1.091-1.412-1.091H.4c.08 1.942 2.362 1.813 2.362 1.813.607-.033 1.087-.233 1.462-.609.495-.499.507-1.422.507-2.192v-4.75zM17.352 0H3.063v14.282h8.266V8.271h6.023zM18.038 9.067h5.213v5.216h-5.213z" }) + ] + } + ); +}); + +export { SiJpeg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.cjs new file mode 100644 index 000000000..ab34f9395 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0769AD"; +const SiJquery = React__namespace.forwardRef(function SiJquery2({ title = "jQuery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.525 5.87c-2.126 3.054-1.862 7.026-.237 10.269.037.079.078.154.118.229.023.052.049.1.077.15.013.027.031.056.047.082.026.052.054.102.081.152l.157.266c.03.049.057.097.09.146.056.094.12.187.178.281.026.04.05.078.079.117a6.368 6.368 0 00.31.445c.078.107.156.211.24.315.027.038.058.076.086.115l.22.269c.028.03.055.067.084.099.098.118.202.233.306.35l.005.006a3.134 3.134 0 00.425.44c.08.083.16.165.245.245l.101.097c.111.105.223.209.34.309.002 0 .003.002.005.003l.057.05c.102.089.205.178.31.26l.125.105c.085.068.174.133.26.2l.137.105c.093.07.192.139.287.207.035.025.07.05.106.073l.03.023.28.185.12.08c.148.094.294.184.44.272.041.02.084.044.123.068.108.062.22.125.329.183.06.034.122.063.184.094.075.042.153.083.234.125a.324.324 0 01.056.023c.033.015.064.031.096.047.12.06.245.118.375.175.024.01.05.02.076.034.144.063.289.123.438.182.034.01.07.027.105.04.135.051.274.103.411.152l.05.018c.154.052.305.102.46.15.036.01.073.023.111.033.16.048.314.105.474.137 10.273 1.872 13.258-6.177 13.258-6.177-2.508 3.266-6.958 4.127-11.174 3.169-.156-.036-.312-.086-.47-.132a13.539 13.539 0 01-.567-.182l-.062-.024c-.136-.046-.267-.097-.4-.148a1.615 1.615 0 00-.11-.04c-.148-.06-.29-.121-.433-.184-.031-.01-.057-.024-.088-.036a23.44 23.44 0 01-.362-.17 1.485 1.485 0 01-.106-.052c-.094-.044-.188-.095-.28-.143a3.947 3.947 0 01-.187-.096c-.114-.06-.227-.125-.34-.187-.034-.024-.073-.044-.112-.066a15.922 15.922 0 01-.439-.27 2.107 2.107 0 01-.118-.078 6.01 6.01 0 01-.312-.207c-.035-.023-.067-.048-.103-.073a9.553 9.553 0 01-.295-.212c-.042-.034-.087-.066-.132-.1-.088-.07-.177-.135-.265-.208l-.118-.095a10.593 10.593 0 01-.335-.28.258.258 0 00-.037-.031l-.347-.316-.1-.094c-.082-.084-.166-.164-.25-.246l-.098-.1a9.081 9.081 0 01-.309-.323l-.015-.016c-.106-.116-.21-.235-.313-.355-.027-.03-.053-.064-.08-.097l-.227-.277a21.275 21.275 0 01-.34-.449C2.152 11.79 1.306 7.384 3.177 3.771m4.943-.473c-1.54 2.211-1.454 5.169-.254 7.508a9.111 9.111 0 00.678 1.133c.23.33.484.721.793.988.107.122.223.24.344.36l.09.09c.114.11.232.217.35.325l.016.013a9.867 9.867 0 00.414.342c.034.023.063.05.096.073.14.108.282.212.428.316l.015.009c.062.045.128.086.198.13.028.018.06.042.09.06.106.068.21.132.318.197.017.007.032.016.048.023.09.055.188.108.282.157.033.02.065.035.1.054.066.033.132.068.197.102l.032.014c.135.067.273.129.408.19.034.014.063.025.092.039.111.048.224.094.336.137.05.017.097.037.144.052.102.038.21.073.31.108l.14.045c.147.045.295.104.449.13C22.164 17.206 24 11.098 24 11.098c-1.653 2.38-4.852 3.513-8.261 2.628a8.04 8.04 0 01-.449-.13c-.048-.014-.09-.029-.136-.043-.104-.036-.211-.07-.312-.109l-.144-.054c-.113-.045-.227-.087-.336-.135-.034-.015-.065-.025-.091-.04-.14-.063-.281-.125-.418-.192l-.206-.107-.119-.06a5.673 5.673 0 01-.265-.15.62.62 0 01-.062-.035c-.106-.066-.217-.13-.318-.198-.034-.019-.065-.042-.097-.062l-.208-.136c-.144-.1-.285-.208-.428-.313-.032-.029-.063-.053-.094-.079-1.499-1.178-2.681-2.79-3.242-4.613-.59-1.897-.46-4.023.56-5.75m4.292-.147c-.909 1.334-.996 2.99-.37 4.46.665 1.563 2.024 2.79 3.608 3.37.065.025.128.046.196.07l.088.027c.092.03.185.063.28.084 4.381.845 5.567-2.25 5.886-2.704-1.043 1.498-2.792 1.857-4.938 1.335a4.85 4.85 0 01-.516-.16 6.352 6.352 0 01-.618-.254 6.53 6.53 0 01-1.082-.66c-1.922-1.457-3.113-4.236-1.859-6.5" }) + ] + } + ); +}); + +exports.default = SiJquery; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.d.ts new file mode 100644 index 000000000..88a5036f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0769AD"; +declare const SiJquery: IconType; +export { SiJquery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.mjs new file mode 100644 index 000000000..8df78f664 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJquery.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0769AD"; +const SiJquery = React.forwardRef(function SiJquery2({ title = "jQuery", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.525 5.87c-2.126 3.054-1.862 7.026-.237 10.269.037.079.078.154.118.229.023.052.049.1.077.15.013.027.031.056.047.082.026.052.054.102.081.152l.157.266c.03.049.057.097.09.146.056.094.12.187.178.281.026.04.05.078.079.117a6.368 6.368 0 00.31.445c.078.107.156.211.24.315.027.038.058.076.086.115l.22.269c.028.03.055.067.084.099.098.118.202.233.306.35l.005.006a3.134 3.134 0 00.425.44c.08.083.16.165.245.245l.101.097c.111.105.223.209.34.309.002 0 .003.002.005.003l.057.05c.102.089.205.178.31.26l.125.105c.085.068.174.133.26.2l.137.105c.093.07.192.139.287.207.035.025.07.05.106.073l.03.023.28.185.12.08c.148.094.294.184.44.272.041.02.084.044.123.068.108.062.22.125.329.183.06.034.122.063.184.094.075.042.153.083.234.125a.324.324 0 01.056.023c.033.015.064.031.096.047.12.06.245.118.375.175.024.01.05.02.076.034.144.063.289.123.438.182.034.01.07.027.105.04.135.051.274.103.411.152l.05.018c.154.052.305.102.46.15.036.01.073.023.111.033.16.048.314.105.474.137 10.273 1.872 13.258-6.177 13.258-6.177-2.508 3.266-6.958 4.127-11.174 3.169-.156-.036-.312-.086-.47-.132a13.539 13.539 0 01-.567-.182l-.062-.024c-.136-.046-.267-.097-.4-.148a1.615 1.615 0 00-.11-.04c-.148-.06-.29-.121-.433-.184-.031-.01-.057-.024-.088-.036a23.44 23.44 0 01-.362-.17 1.485 1.485 0 01-.106-.052c-.094-.044-.188-.095-.28-.143a3.947 3.947 0 01-.187-.096c-.114-.06-.227-.125-.34-.187-.034-.024-.073-.044-.112-.066a15.922 15.922 0 01-.439-.27 2.107 2.107 0 01-.118-.078 6.01 6.01 0 01-.312-.207c-.035-.023-.067-.048-.103-.073a9.553 9.553 0 01-.295-.212c-.042-.034-.087-.066-.132-.1-.088-.07-.177-.135-.265-.208l-.118-.095a10.593 10.593 0 01-.335-.28.258.258 0 00-.037-.031l-.347-.316-.1-.094c-.082-.084-.166-.164-.25-.246l-.098-.1a9.081 9.081 0 01-.309-.323l-.015-.016c-.106-.116-.21-.235-.313-.355-.027-.03-.053-.064-.08-.097l-.227-.277a21.275 21.275 0 01-.34-.449C2.152 11.79 1.306 7.384 3.177 3.771m4.943-.473c-1.54 2.211-1.454 5.169-.254 7.508a9.111 9.111 0 00.678 1.133c.23.33.484.721.793.988.107.122.223.24.344.36l.09.09c.114.11.232.217.35.325l.016.013a9.867 9.867 0 00.414.342c.034.023.063.05.096.073.14.108.282.212.428.316l.015.009c.062.045.128.086.198.13.028.018.06.042.09.06.106.068.21.132.318.197.017.007.032.016.048.023.09.055.188.108.282.157.033.02.065.035.1.054.066.033.132.068.197.102l.032.014c.135.067.273.129.408.19.034.014.063.025.092.039.111.048.224.094.336.137.05.017.097.037.144.052.102.038.21.073.31.108l.14.045c.147.045.295.104.449.13C22.164 17.206 24 11.098 24 11.098c-1.653 2.38-4.852 3.513-8.261 2.628a8.04 8.04 0 01-.449-.13c-.048-.014-.09-.029-.136-.043-.104-.036-.211-.07-.312-.109l-.144-.054c-.113-.045-.227-.087-.336-.135-.034-.015-.065-.025-.091-.04-.14-.063-.281-.125-.418-.192l-.206-.107-.119-.06a5.673 5.673 0 01-.265-.15.62.62 0 01-.062-.035c-.106-.066-.217-.13-.318-.198-.034-.019-.065-.042-.097-.062l-.208-.136c-.144-.1-.285-.208-.428-.313-.032-.029-.063-.053-.094-.079-1.499-1.178-2.681-2.79-3.242-4.613-.59-1.897-.46-4.023.56-5.75m4.292-.147c-.909 1.334-.996 2.99-.37 4.46.665 1.563 2.024 2.79 3.608 3.37.065.025.128.046.196.07l.088.027c.092.03.185.063.28.084 4.381.845 5.567-2.25 5.886-2.704-1.043 1.498-2.792 1.857-4.938 1.335a4.85 4.85 0 01-.516-.16 6.352 6.352 0 01-.618-.254 6.53 6.53 0 01-1.082-.66c-1.922-1.457-3.113-4.236-1.859-6.5" }) + ] + } + ); +}); + +export { SiJquery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.cjs new file mode 100644 index 000000000..179f5ba03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#44AF35"; +const SiJrgroup = React__namespace.forwardRef(function SiJrgroup2({ title = "JR Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.955 13.653h1.089c2.684 0 2.684-4.123 2.684-4.123s0-4.162-2.684-4.162H9.18v8.869c0 1.556-3.112 1.478-3.112 1.478s-3.073.116-3.073-1.478v-3.423H0v4.395c0 3.19 5.68 3.384 6.107 3.423.428 0 6.107-.194 6.107-3.423V8.363h7.896c.661 0 .661 1.167.661 1.167s0 1.167-.66 1.167h-6.069l5.952 7.702H24Z" }) + ] + } + ); +}); + +exports.default = SiJrgroup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.d.ts new file mode 100644 index 000000000..1bcbbd4b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#44AF35"; +declare const SiJrgroup: IconType; +export { SiJrgroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.mjs new file mode 100644 index 000000000..f451f73fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJrgroup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#44AF35"; +const SiJrgroup = React.forwardRef(function SiJrgroup2({ title = "JR Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.955 13.653h1.089c2.684 0 2.684-4.123 2.684-4.123s0-4.162-2.684-4.162H9.18v8.869c0 1.556-3.112 1.478-3.112 1.478s-3.073.116-3.073-1.478v-3.423H0v4.395c0 3.19 5.68 3.384 6.107 3.423.428 0 6.107-.194 6.107-3.423V8.363h7.896c.661 0 .661 1.167.661 1.167s0 1.167-.66 1.167h-6.069l5.952 7.702H24Z" }) + ] + } + ); +}); + +export { SiJrgroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.cjs new file mode 100644 index 000000000..94307447d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E84D3D"; +const SiJsdelivr = React__namespace.forwardRef(function SiJsdelivr2({ title = "jsDelivr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.851 0L.811 4.02l1.56 14.7L11.85 24l9.6-5.28 1.74-14.76zm.062 4.622a6.668 6.75 0 0 1 2.666.572 12.507 12.507 0 0 0-2.59 1.95c-.045-.02-.092-.031-.138-.045a1.181 1.181 0 0 0-.346-.056c-.071 0-.141.01-.21.021a8.91 8.91 0 0 1-.615-2.318 6.668 6.75 0 0 1 1.171-.122 6.668 6.75 0 0 1 .062-.002zm-1.99.312a9.763 9.763 0 0 0 .69 2.504 1.213 1.213 0 0 0-.328.825 1.202 1.202 0 0 0 .18.63c-.937 1.294-1.656 2.803-1.905 4.31-.01.056-.013.11-.02.166-.282.09-.515.284-.656.54-.987-.333-1.885-.968-2.615-2.022a6.668 6.75 0 0 1-.026-.515 6.668 6.75 0 0 1 4.68-6.438zm5.507.709a6.668 6.75 0 0 1 2.53 2.9c-.377.953-1.049 1.892-1.893 2.727a1.242 1.242 0 0 0-.644-.184 1.243 1.243 0 0 0-.768.27c-.462-.354-.91-.737-1.318-1.168-.333-.35-.637-.73-.921-1.123.19-.215.31-.494.31-.802 0-.212-.061-.41-.159-.586 1.058-1.008 2.112-1.67 2.863-2.034zm-3.925 1.982a.624.624 0 0 1 .346.114.624.624 0 0 1 .292.524.624.624 0 0 1-.292.524.626.626 0 0 1-.346.113.634.634 0 0 1-.638-.637c0-.355.283-.638.638-.638zm-.441 1.771a1.205 1.205 0 0 0 .675.062c.036.05.075.097.112.148a11.438 11.438 0 0 0 .921 1.119 12.103 12.103 0 0 0 1.446 1.277c-.032.11-.054.224-.054.342a1.236 1.236 0 0 0 .066.38 9.91 9.91 0 0 1-2.118 1.042c-.087.029-.173.052-.261.078a7.735 7.735 0 0 1-1.87.332 1.15 1.15 0 0 0-.66-.773c.004-.024.005-.049.01-.073.219-1.333.873-2.73 1.733-3.934zm7.272.19a6.668 6.75 0 0 1 .245 1.786 6.668 6.75 0 0 1-.259 1.856 9.993 9.993 0 0 1-1.666-.63 1.243 1.243 0 0 0-.065-.713 9.434 9.434 0 0 0 1.745-2.3zm-2.913 2.101c.367 0 .657.291.657.658s-.291.657-.657.657c-.367 0-.658-.29-.658-.657s.29-.658.658-.658zm.837 1.59a10.79 10.79 0 0 0 1.802.688 6.668 6.75 0 0 1-6.149 4.157 6.668 6.75 0 0 1-.062-.004 6.668 6.75 0 0 1-.042 0c-.087-.042-.168-.08-.266-.129-.312-.154-.667-.352-.846-.5a3.796 3.796 0 0 1-1.294-2.03c.21-.111.38-.284.487-.495a8.428 8.428 0 0 0 1.96-.306 9.11 9.11 0 0 0 .513-.154 11.083 11.083 0 0 0 2.341-1.13c.205.143.452.23.719.23a1.248 1.248 0 0 0 .837-.328zm-10.707.116a5.761 5.761 0 0 0 2.212 1.298 1.146 1.146 0 0 0 .857.87 4.602 4.602 0 0 0 1.24 2.222 6.668 6.75 0 0 1-4.31-4.39zm3.327.464c.331 0 .595.263.595.596s-.264.595-.595.595a.59.59 0 0 1-.596-.595.591.591 0 0 1 .596-.596z" }) + ] + } + ); +}); + +exports.default = SiJsdelivr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.d.ts new file mode 100644 index 000000000..777611cb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E84D3D"; +declare const SiJsdelivr: IconType; +export { SiJsdelivr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.mjs new file mode 100644 index 000000000..6d3ed070c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsdelivr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E84D3D"; +const SiJsdelivr = React.forwardRef(function SiJsdelivr2({ title = "jsDelivr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.851 0L.811 4.02l1.56 14.7L11.85 24l9.6-5.28 1.74-14.76zm.062 4.622a6.668 6.75 0 0 1 2.666.572 12.507 12.507 0 0 0-2.59 1.95c-.045-.02-.092-.031-.138-.045a1.181 1.181 0 0 0-.346-.056c-.071 0-.141.01-.21.021a8.91 8.91 0 0 1-.615-2.318 6.668 6.75 0 0 1 1.171-.122 6.668 6.75 0 0 1 .062-.002zm-1.99.312a9.763 9.763 0 0 0 .69 2.504 1.213 1.213 0 0 0-.328.825 1.202 1.202 0 0 0 .18.63c-.937 1.294-1.656 2.803-1.905 4.31-.01.056-.013.11-.02.166-.282.09-.515.284-.656.54-.987-.333-1.885-.968-2.615-2.022a6.668 6.75 0 0 1-.026-.515 6.668 6.75 0 0 1 4.68-6.438zm5.507.709a6.668 6.75 0 0 1 2.53 2.9c-.377.953-1.049 1.892-1.893 2.727a1.242 1.242 0 0 0-.644-.184 1.243 1.243 0 0 0-.768.27c-.462-.354-.91-.737-1.318-1.168-.333-.35-.637-.73-.921-1.123.19-.215.31-.494.31-.802 0-.212-.061-.41-.159-.586 1.058-1.008 2.112-1.67 2.863-2.034zm-3.925 1.982a.624.624 0 0 1 .346.114.624.624 0 0 1 .292.524.624.624 0 0 1-.292.524.626.626 0 0 1-.346.113.634.634 0 0 1-.638-.637c0-.355.283-.638.638-.638zm-.441 1.771a1.205 1.205 0 0 0 .675.062c.036.05.075.097.112.148a11.438 11.438 0 0 0 .921 1.119 12.103 12.103 0 0 0 1.446 1.277c-.032.11-.054.224-.054.342a1.236 1.236 0 0 0 .066.38 9.91 9.91 0 0 1-2.118 1.042c-.087.029-.173.052-.261.078a7.735 7.735 0 0 1-1.87.332 1.15 1.15 0 0 0-.66-.773c.004-.024.005-.049.01-.073.219-1.333.873-2.73 1.733-3.934zm7.272.19a6.668 6.75 0 0 1 .245 1.786 6.668 6.75 0 0 1-.259 1.856 9.993 9.993 0 0 1-1.666-.63 1.243 1.243 0 0 0-.065-.713 9.434 9.434 0 0 0 1.745-2.3zm-2.913 2.101c.367 0 .657.291.657.658s-.291.657-.657.657c-.367 0-.658-.29-.658-.657s.29-.658.658-.658zm.837 1.59a10.79 10.79 0 0 0 1.802.688 6.668 6.75 0 0 1-6.149 4.157 6.668 6.75 0 0 1-.062-.004 6.668 6.75 0 0 1-.042 0c-.087-.042-.168-.08-.266-.129-.312-.154-.667-.352-.846-.5a3.796 3.796 0 0 1-1.294-2.03c.21-.111.38-.284.487-.495a8.428 8.428 0 0 0 1.96-.306 9.11 9.11 0 0 0 .513-.154 11.083 11.083 0 0 0 2.341-1.13c.205.143.452.23.719.23a1.248 1.248 0 0 0 .837-.328zm-10.707.116a5.761 5.761 0 0 0 2.212 1.298 1.146 1.146 0 0 0 .857.87 4.602 4.602 0 0 0 1.24 2.222 6.668 6.75 0 0 1-4.31-4.39zm3.327.464c.331 0 .595.263.595.596s-.264.595-.595.595a.59.59 0 0 1-.596-.595.591.591 0 0 1 .596-.596z" }) + ] + } + ); +}); + +export { SiJsdelivr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.cjs new file mode 100644 index 000000000..cabdc034b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0084FF"; +const SiJsfiddle = React__namespace.forwardRef(function SiJsfiddle2({ title = "JSFiddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.9 3.602c-2.749 0-5.103 1.544-6.35 3.779-.536-.317-1.139-.54-1.806-.54-1.981 0-3.6 1.606-3.6 3.579 0 .263.063.513.118.762C.912 12.09 0 13.602 0 15.344c0 2.763 2.241 5.012 5.008 5.054a.421.421 0 00.008 0h14c2.746.017 4.984-2.206 4.984-4.937 0-1.946-1.153-3.602-2.799-4.41.003-.062.01-.115.01-.184 0-4.008-3.28-7.265-7.31-7.265zm0 .843c3.58 0 6.47 2.872 6.47 6.422 0 .115-.012.242-.02.387a.421.421 0 00.26.414 4.104 4.104 0 012.546 3.793 4.094 4.094 0 01-4.135 4.096.421.421 0 00-.003 0H5.02C2.702 19.52.844 17.653.844 15.344c0-1.545.834-2.883 2.08-3.62a.421.421 0 00.187-.49 2.701 2.701 0 01-.125-.814 2.741 2.741 0 012.758-2.736 2.75 2.75 0 011.686.576.421.421 0 00.636-.15A6.462 6.462 0 0113.9 4.444zm-5.33 6.877c-1.586 0-2.91 1.213-2.91 2.737 0 1.523 1.324 2.736 2.91 2.736 1.411 0 2.182-.931 2.496-1.266a.421.421 0 10-.613-.578c-.378.402-.819 1.002-1.883 1.002-1.162 0-2.068-.86-2.068-1.894 0-1.035.906-1.895 2.068-1.895.533 0 1.105.297 1.686.77.372.303.737.668 1.098 1.043a.421.421 0 00.085.123c.533.552 1.122 1.205 1.774 1.736.652.531 1.386.959 2.217.959 1.586 0 2.91-1.213 2.91-2.736 0-1.524-1.324-2.737-2.91-2.737-1.411 0-2.182.931-2.496 1.266a.421.421 0 10.613.578c.378-.402.819-1.002 1.883-1.002 1.162 0 2.068.86 2.068 1.895 0 1.034-.906 1.894-2.068 1.894-.533 0-1.105-.297-1.686-.77-.372-.303-.737-.67-1.098-1.044a.421.421 0 00-.085-.121c-.533-.552-1.122-1.208-1.774-1.739-.652-.53-1.386-.957-2.217-.957Z" }) + ] + } + ); +}); + +exports.default = SiJsfiddle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.d.ts new file mode 100644 index 000000000..7ef7ba61c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0084FF"; +declare const SiJsfiddle: IconType; +export { SiJsfiddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.mjs new file mode 100644 index 000000000..3dc87c42f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsfiddle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0084FF"; +const SiJsfiddle = React.forwardRef(function SiJsfiddle2({ title = "JSFiddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.9 3.602c-2.749 0-5.103 1.544-6.35 3.779-.536-.317-1.139-.54-1.806-.54-1.981 0-3.6 1.606-3.6 3.579 0 .263.063.513.118.762C.912 12.09 0 13.602 0 15.344c0 2.763 2.241 5.012 5.008 5.054a.421.421 0 00.008 0h14c2.746.017 4.984-2.206 4.984-4.937 0-1.946-1.153-3.602-2.799-4.41.003-.062.01-.115.01-.184 0-4.008-3.28-7.265-7.31-7.265zm0 .843c3.58 0 6.47 2.872 6.47 6.422 0 .115-.012.242-.02.387a.421.421 0 00.26.414 4.104 4.104 0 012.546 3.793 4.094 4.094 0 01-4.135 4.096.421.421 0 00-.003 0H5.02C2.702 19.52.844 17.653.844 15.344c0-1.545.834-2.883 2.08-3.62a.421.421 0 00.187-.49 2.701 2.701 0 01-.125-.814 2.741 2.741 0 012.758-2.736 2.75 2.75 0 011.686.576.421.421 0 00.636-.15A6.462 6.462 0 0113.9 4.444zm-5.33 6.877c-1.586 0-2.91 1.213-2.91 2.737 0 1.523 1.324 2.736 2.91 2.736 1.411 0 2.182-.931 2.496-1.266a.421.421 0 10-.613-.578c-.378.402-.819 1.002-1.883 1.002-1.162 0-2.068-.86-2.068-1.894 0-1.035.906-1.895 2.068-1.895.533 0 1.105.297 1.686.77.372.303.737.668 1.098 1.043a.421.421 0 00.085.123c.533.552 1.122 1.205 1.774 1.736.652.531 1.386.959 2.217.959 1.586 0 2.91-1.213 2.91-2.736 0-1.524-1.324-2.737-2.91-2.737-1.411 0-2.182.931-2.496 1.266a.421.421 0 10.613.578c.378-.402.819-1.002 1.883-1.002 1.162 0 2.068.86 2.068 1.895 0 1.034-.906 1.894-2.068 1.894-.533 0-1.105-.297-1.686-.77-.372-.303-.737-.67-1.098-1.044a.421.421 0 00-.085-.121c-.533-.552-1.122-1.208-1.774-1.739-.652-.53-1.386-.957-2.217-.957Z" }) + ] + } + ); +}); + +export { SiJsfiddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJson.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJson.cjs new file mode 100644 index 000000000..46f9065f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJson.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJson = React__namespace.forwardRef(function SiJson2({ title = "JSON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.043 23.968c.479-.004.953-.029 1.426-.094a11.805 11.805 0 003.146-.863 12.404 12.404 0 003.793-2.542 11.977 11.977 0 002.44-3.427 11.794 11.794 0 001.02-3.476c.149-1.16.135-2.346-.045-3.499a11.96 11.96 0 00-.793-2.788 11.197 11.197 0 00-.854-1.617c-1.168-1.837-2.861-3.314-4.81-4.3a12.835 12.835 0 00-2.172-.87h-.005c.119.063.24.132.345.201.12.074.239.146.351.225a8.93 8.93 0 011.559 1.33c1.063 1.145 1.797 2.548 2.218 4.041.284.982.434 1.998.495 3.017.044.743.044 1.491-.047 2.229-.149 1.27-.554 2.51-1.228 3.596a7.475 7.475 0 01-1.903 2.084c-1.244.928-2.877 1.482-4.436 1.114a3.916 3.916 0 01-.748-.258 4.692 4.692 0 01-.779-.45 6.08 6.08 0 01-1.244-1.105 6.507 6.507 0 01-1.049-1.747 7.366 7.366 0 01-.494-2.54c-.03-1.273.225-2.553.854-3.67a6.43 6.43 0 011.663-1.918c.225-.178.464-.333.704-.479l.016-.007a5.121 5.121 0 00-1.441-.12 4.963 4.963 0 00-1.228.24c-.359.12-.704.27-1.019.45a6.146 6.146 0 00-.733.494c-.211.18-.42.36-.615.555-1.123 1.153-1.768 2.682-2.022 4.256-.15.973-.15 1.96-.091 2.95.105 1.395.391 2.787.945 4.062a8.518 8.518 0 001.348 2.173 8.14 8.14 0 003.132 2.23 7.934 7.934 0 002.113.54c.074.015.149.015.209.015zm-2.934-.398a4.102 4.102 0 01-.45-.228 8.5 8.5 0 01-2.038-1.534c-1.094-1.137-1.827-2.566-2.247-4.08a15.184 15.184 0 01-.495-3.172 12.14 12.14 0 01.046-2.082c.135-1.257.495-2.501 1.124-3.58a6.889 6.889 0 011.783-2.053 6.23 6.23 0 011.633-.9 5.363 5.363 0 013.522-.045c.029 0 .029 0 .045.03.015.015.045.015.06.03.045.016.104.045.165.074.239.12.479.271.704.42a6.294 6.294 0 012.097 2.502c.42.914.615 1.934.631 2.938.014 1.079-.18 2.157-.645 3.146a6.42 6.42 0 01-2.638 2.832c.09.03.18.045.271.075.225.044.449.074.688.074 1.468.045 2.892-.66 3.94-1.647.195-.18.375-.375.54-.585.225-.27.435-.54.614-.823.239-.375.435-.75.614-1.154a8.112 8.112 0 00.509-1.664c.196-1.004.211-2.022.149-3.026-.135-2.022-.673-4.045-1.842-5.724a9.054 9.054 0 00-.555-.719 9.868 9.868 0 00-1.063-1.034 8.477 8.477 0 00-1.363-.915 9.927 9.927 0 00-1.692-.598l-.3-.06c-.209-.03-.42-.044-.634-.06a8.453 8.453 0 00-1.015.016c-.704.045-1.412.16-2.112.337C5.799 1.227 2.863 3.566 1.3 6.67A11.834 11.834 0 00.238 9.801a11.81 11.81 0 00-.104 3.775c.12 1.02.374 2.023.778 2.977.227.57.511 1.124.825 1.648 1.094 1.783 2.683 3.236 4.51 4.24.688.39 1.408.69 2.157.944.226.074.45.15.689.21z" }) + ] + } + ); +}); + +exports.default = SiJson; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJson.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJson.d.ts new file mode 100644 index 000000000..93d56ce97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJson.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJson: IconType; +export { SiJson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJson.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJson.mjs new file mode 100644 index 000000000..ba3280981 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJson.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJson = React.forwardRef(function SiJson2({ title = "JSON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.043 23.968c.479-.004.953-.029 1.426-.094a11.805 11.805 0 003.146-.863 12.404 12.404 0 003.793-2.542 11.977 11.977 0 002.44-3.427 11.794 11.794 0 001.02-3.476c.149-1.16.135-2.346-.045-3.499a11.96 11.96 0 00-.793-2.788 11.197 11.197 0 00-.854-1.617c-1.168-1.837-2.861-3.314-4.81-4.3a12.835 12.835 0 00-2.172-.87h-.005c.119.063.24.132.345.201.12.074.239.146.351.225a8.93 8.93 0 011.559 1.33c1.063 1.145 1.797 2.548 2.218 4.041.284.982.434 1.998.495 3.017.044.743.044 1.491-.047 2.229-.149 1.27-.554 2.51-1.228 3.596a7.475 7.475 0 01-1.903 2.084c-1.244.928-2.877 1.482-4.436 1.114a3.916 3.916 0 01-.748-.258 4.692 4.692 0 01-.779-.45 6.08 6.08 0 01-1.244-1.105 6.507 6.507 0 01-1.049-1.747 7.366 7.366 0 01-.494-2.54c-.03-1.273.225-2.553.854-3.67a6.43 6.43 0 011.663-1.918c.225-.178.464-.333.704-.479l.016-.007a5.121 5.121 0 00-1.441-.12 4.963 4.963 0 00-1.228.24c-.359.12-.704.27-1.019.45a6.146 6.146 0 00-.733.494c-.211.18-.42.36-.615.555-1.123 1.153-1.768 2.682-2.022 4.256-.15.973-.15 1.96-.091 2.95.105 1.395.391 2.787.945 4.062a8.518 8.518 0 001.348 2.173 8.14 8.14 0 003.132 2.23 7.934 7.934 0 002.113.54c.074.015.149.015.209.015zm-2.934-.398a4.102 4.102 0 01-.45-.228 8.5 8.5 0 01-2.038-1.534c-1.094-1.137-1.827-2.566-2.247-4.08a15.184 15.184 0 01-.495-3.172 12.14 12.14 0 01.046-2.082c.135-1.257.495-2.501 1.124-3.58a6.889 6.889 0 011.783-2.053 6.23 6.23 0 011.633-.9 5.363 5.363 0 013.522-.045c.029 0 .029 0 .045.03.015.015.045.015.06.03.045.016.104.045.165.074.239.12.479.271.704.42a6.294 6.294 0 012.097 2.502c.42.914.615 1.934.631 2.938.014 1.079-.18 2.157-.645 3.146a6.42 6.42 0 01-2.638 2.832c.09.03.18.045.271.075.225.044.449.074.688.074 1.468.045 2.892-.66 3.94-1.647.195-.18.375-.375.54-.585.225-.27.435-.54.614-.823.239-.375.435-.75.614-1.154a8.112 8.112 0 00.509-1.664c.196-1.004.211-2.022.149-3.026-.135-2.022-.673-4.045-1.842-5.724a9.054 9.054 0 00-.555-.719 9.868 9.868 0 00-1.063-1.034 8.477 8.477 0 00-1.363-.915 9.927 9.927 0 00-1.692-.598l-.3-.06c-.209-.03-.42-.044-.634-.06a8.453 8.453 0 00-1.015.016c-.704.045-1.412.16-2.112.337C5.799 1.227 2.863 3.566 1.3 6.67A11.834 11.834 0 00.238 9.801a11.81 11.81 0 00-.104 3.775c.12 1.02.374 2.023.778 2.977.227.57.511 1.124.825 1.648 1.094 1.783 2.683 3.236 4.51 4.24.688.39 1.408.69 2.157.944.226.074.45.15.689.21z" }) + ] + } + ); +}); + +export { SiJson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.cjs new file mode 100644 index 000000000..9309f646b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJsonwebtokens = React__namespace.forwardRef(function SiJsonwebtokens2({ title = "JSON Web Tokens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.2 0v6.456L12 8.928l1.8-2.472V0zm3.6 6.456v3.072l2.904-.96L20.52 3.36l-2.928-2.136zm2.904 2.112l-1.8 2.496 2.928.936 6.144-1.992-1.128-3.432zM17.832 12l-2.928.936 1.8 2.496 6.144 1.992 1.128-3.432zm-1.128 3.432l-2.904-.96v3.072l3.792 5.232 2.928-2.136zM13.8 17.544L12 15.072l-1.8 2.472V24h3.6zm-3.6 0v-3.072l-2.904.96L3.48 20.64l2.928 2.136zm-2.904-2.112l1.8-2.496L6.168 12 .024 13.992l1.128 3.432zM6.168 12l2.928-.936-1.8-2.496-6.144-1.992-1.128 3.432zm1.128-3.432l2.904.96V6.456L6.408 1.224 3.48 3.36Z" }) + ] + } + ); +}); + +exports.default = SiJsonwebtokens; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.d.ts new file mode 100644 index 000000000..bfc6d3387 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJsonwebtokens: IconType; +export { SiJsonwebtokens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.mjs new file mode 100644 index 000000000..a9aaf8d3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsonwebtokens.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJsonwebtokens = React.forwardRef(function SiJsonwebtokens2({ title = "JSON Web Tokens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.2 0v6.456L12 8.928l1.8-2.472V0zm3.6 6.456v3.072l2.904-.96L20.52 3.36l-2.928-2.136zm2.904 2.112l-1.8 2.496 2.928.936 6.144-1.992-1.128-3.432zM17.832 12l-2.928.936 1.8 2.496 6.144 1.992 1.128-3.432zm-1.128 3.432l-2.904-.96v3.072l3.792 5.232 2.928-2.136zM13.8 17.544L12 15.072l-1.8 2.472V24h3.6zm-3.6 0v-3.072l-2.904.96L3.48 20.64l2.928 2.136zm-2.904-2.112l1.8-2.496L6.168 12 .024 13.992l1.128 3.432zM6.168 12l2.928-.936-1.8-2.496-6.144-1.992-1.128 3.432zm1.128-3.432l2.904.96V6.456L6.408 1.224 3.48 3.36Z" }) + ] + } + ); +}); + +export { SiJsonwebtokens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.cjs new file mode 100644 index 000000000..872bec35f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7DF1E"; +const SiJsr = React__namespace.forwardRef(function SiJsr2({ title = "JSR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.692 5.538v3.693H0v7.384h7.385v1.847h12.923v-3.693H24V7.385h-7.385V5.538Zm1.846 1.847h1.847v7.384H1.846v-3.692h1.846v1.846h1.846zm3.693 0h5.538V9.23h-3.692v1.846h3.692v5.538H9.231V14.77h3.692v-1.846H9.231Zm7.384 1.846h5.539v3.692h-1.846v-1.846h-1.846v5.538h-1.847z" }) + ] + } + ); +}); + +exports.default = SiJsr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.d.ts new file mode 100644 index 000000000..5c1b938c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7DF1E"; +declare const SiJsr: IconType; +export { SiJsr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.mjs new file mode 100644 index 000000000..d10d4ff52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJsr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7DF1E"; +const SiJsr = React.forwardRef(function SiJsr2({ title = "JSR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.692 5.538v3.693H0v7.384h7.385v1.847h12.923v-3.693H24V7.385h-7.385V5.538Zm1.846 1.847h1.847v7.384H1.846v-3.692h1.846v1.846h1.846zm3.693 0h5.538V9.23h-3.692v1.846h3.692v5.538H9.231V14.77h3.692v-1.846H9.231Zm7.384 1.846h5.539v3.692h-1.846v-1.846h-1.846v5.538h-1.847z" }) + ] + } + ); +}); + +export { SiJsr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJss.cjs new file mode 100644 index 000000000..8404a753e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7DF1E"; +const SiJss = React__namespace.forwardRef(function SiJss2({ title = "JSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2.5v19h19.2v-1.95c.506.263 1.124.42 1.857.42 1.687 0 2.943-.877 2.943-2.475 0-1.483-.852-2.143-2.36-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.142.76l1.383-.887c-.585-1.029-1.396-1.422-2.525-1.422-.715 0-1.312.207-1.754.555V2.5zm.36.359h18.48v9.182a2.266 2.266 0 00-.487 1.432c0 .654.176 1.152.486 1.552v2.537l-1.018.592c.232.456.57.864 1.018 1.177v1.81H.361zm14.188 8.268c-1.586 0-2.6 1.014-2.6 2.346 0 1.445.85 2.13 2.132 2.675l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.205.875-.876 0-1.371-.457-1.752-1.078l-1.443.839c.521 1.03 1.587 1.816 3.236 1.816 1.687 0 2.943-.876 2.943-2.475 0-1.483-.852-2.143-2.361-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.143.76l1.382-.887c-.584-1.029-1.396-1.422-2.525-1.422zm-5.868.101v6.038c0 .888-.368 1.116-.951 1.116-.61 0-.864-.418-1.143-.913l-1.446.875c.419.886 1.242 1.622 2.664 1.622 1.574 0 2.652-.837 2.652-2.676v-6.062zm10.52 4.173c.345.295.781.532 1.286.747l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.206.875-.876 0-1.37-.457-1.752-1.078l-.064.037z" }) + ] + } + ); +}); + +exports.default = SiJss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJss.d.ts new file mode 100644 index 000000000..1964dd195 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7DF1E"; +declare const SiJss: IconType; +export { SiJss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJss.mjs new file mode 100644 index 000000000..291492c25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7DF1E"; +const SiJss = React.forwardRef(function SiJss2({ title = "JSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2.5v19h19.2v-1.95c.506.263 1.124.42 1.857.42 1.687 0 2.943-.877 2.943-2.475 0-1.483-.852-2.143-2.36-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.142.76l1.383-.887c-.585-1.029-1.396-1.422-2.525-1.422-.715 0-1.312.207-1.754.555V2.5zm.36.359h18.48v9.182a2.266 2.266 0 00-.487 1.432c0 .654.176 1.152.486 1.552v2.537l-1.018.592c.232.456.57.864 1.018 1.177v1.81H.361zm14.188 8.268c-1.586 0-2.6 1.014-2.6 2.346 0 1.445.85 2.13 2.132 2.675l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.205.875-.876 0-1.371-.457-1.752-1.078l-1.443.839c.521 1.03 1.587 1.816 3.236 1.816 1.687 0 2.943-.876 2.943-2.475 0-1.483-.852-2.143-2.361-2.79l-.444-.19c-.762-.33-1.092-.546-1.092-1.078 0-.431.33-.761.85-.761.51 0 .838.215 1.143.76l1.382-.887c-.584-1.029-1.396-1.422-2.525-1.422zm-5.868.101v6.038c0 .888-.368 1.116-.951 1.116-.61 0-.864-.418-1.143-.913l-1.446.875c.419.886 1.242 1.622 2.664 1.622 1.574 0 2.652-.837 2.652-2.676v-6.062zm10.52 4.173c.345.295.781.532 1.286.747l.443.19c.81.355 1.293.57 1.293 1.18 0 .508-.47.875-1.206.875-.876 0-1.37-.457-1.752-1.078l-.064.037z" }) + ] + } + ); +}); + +export { SiJss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.cjs new file mode 100644 index 000000000..b3435f9f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8DC63F"; +const SiJuce = React__namespace.forwardRef(function SiJuce2({ title = "JUCE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0zm0 22.402c-5.744 0-10.417-4.667-10.417-10.404S6.256 1.595 12 1.595s10.417 4.666 10.417 10.403S17.744 22.402 12 22.402zm8.097-5.04a9.77 9.77 0 0 1-2.5 2.572 1.23 1.23 0 0 1-1.787-.42c-.97-1.794-1.75-3.59-2.468-5.391a.504.504 0 0 1 .669-.648c1.729.749 3.503 1.46 5.414 2.04a1.227 1.227 0 0 1 .672 1.847zm1.615-5.36c0 .596-.053 1.179-.156 1.746a1.235 1.235 0 0 1-1.559.97c-2.01-.583-3.87-1.324-5.687-2.111l.002.001a.503.503 0 0 1 .013-.93c1.802-.713 3.606-1.48 5.416-2.437.727-.385 1.62.04 1.782.846.124.619.19 1.26.19 1.915zm-6.847 7.713c.383.726-.04 1.61-.842 1.78a9.67 9.67 0 0 1-2.021.212 9.702 9.702 0 0 1-1.607-.132 1.233 1.233 0 0 1-.98-1.56c.583-2.003 1.322-3.854 2.107-5.666a.503.503 0 0 1 .93.014h.002c.704 1.78 1.468 3.565 2.411 5.352zM9.181 4.276a1.232 1.232 0 0 1 .844-1.782 9.745 9.745 0 0 1 3.692-.05c.722.129 1.176.852.973 1.557-.585 2.028-1.33 3.9-2.125 5.73a.503.503 0 0 1-.93-.013h-.001c-.715-1.81-1.49-3.623-2.453-5.442zm-5.374 2.51a9.759 9.759 0 0 1 2.635-2.747 1.233 1.233 0 0 1 1.787.42c1.021 1.88 1.83 3.763 2.578 5.65a.504.504 0 0 1-.668.648c-1.802-.783-3.644-1.53-5.64-2.13a1.234 1.234 0 0 1-.692-1.842zm6.864 7.223c-.763 1.753-1.486 3.55-2.072 5.488a1.23 1.23 0 0 1-1.838.679 9.77 9.77 0 0 1-2.662-2.53 1.23 1.23 0 0 1 .414-1.794c1.834-.99 3.67-1.783 5.51-2.513a.504.504 0 0 1 .648.668v.002zm2.72-3.872c.775-1.777 1.51-3.6 2.103-5.57a1.23 1.23 0 0 1 1.85-.672A9.791 9.791 0 0 1 20 6.497a1.23 1.23 0 0 1-.425 1.779c-1.842.998-3.688 1.796-5.538 2.53a.504.504 0 0 1-.648-.67zm-9.098 4.78a1.229 1.229 0 0 1-1.773-.81 9.735 9.735 0 0 1-.103-3.683 1.234 1.234 0 0 1 1.56-.981c2.02.584 3.888 1.328 5.713 2.119a.503.503 0 0 1-.014.93c-1.79.71-3.585 1.474-5.383 2.425z" }) + ] + } + ); +}); + +exports.default = SiJuce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.d.ts new file mode 100644 index 000000000..42de19a93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8DC63F"; +declare const SiJuce: IconType; +export { SiJuce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.mjs new file mode 100644 index 000000000..0ec0d846e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8DC63F"; +const SiJuce = React.forwardRef(function SiJuce2({ title = "JUCE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0zm0 22.402c-5.744 0-10.417-4.667-10.417-10.404S6.256 1.595 12 1.595s10.417 4.666 10.417 10.403S17.744 22.402 12 22.402zm8.097-5.04a9.77 9.77 0 0 1-2.5 2.572 1.23 1.23 0 0 1-1.787-.42c-.97-1.794-1.75-3.59-2.468-5.391a.504.504 0 0 1 .669-.648c1.729.749 3.503 1.46 5.414 2.04a1.227 1.227 0 0 1 .672 1.847zm1.615-5.36c0 .596-.053 1.179-.156 1.746a1.235 1.235 0 0 1-1.559.97c-2.01-.583-3.87-1.324-5.687-2.111l.002.001a.503.503 0 0 1 .013-.93c1.802-.713 3.606-1.48 5.416-2.437.727-.385 1.62.04 1.782.846.124.619.19 1.26.19 1.915zm-6.847 7.713c.383.726-.04 1.61-.842 1.78a9.67 9.67 0 0 1-2.021.212 9.702 9.702 0 0 1-1.607-.132 1.233 1.233 0 0 1-.98-1.56c.583-2.003 1.322-3.854 2.107-5.666a.503.503 0 0 1 .93.014h.002c.704 1.78 1.468 3.565 2.411 5.352zM9.181 4.276a1.232 1.232 0 0 1 .844-1.782 9.745 9.745 0 0 1 3.692-.05c.722.129 1.176.852.973 1.557-.585 2.028-1.33 3.9-2.125 5.73a.503.503 0 0 1-.93-.013h-.001c-.715-1.81-1.49-3.623-2.453-5.442zm-5.374 2.51a9.759 9.759 0 0 1 2.635-2.747 1.233 1.233 0 0 1 1.787.42c1.021 1.88 1.83 3.763 2.578 5.65a.504.504 0 0 1-.668.648c-1.802-.783-3.644-1.53-5.64-2.13a1.234 1.234 0 0 1-.692-1.842zm6.864 7.223c-.763 1.753-1.486 3.55-2.072 5.488a1.23 1.23 0 0 1-1.838.679 9.77 9.77 0 0 1-2.662-2.53 1.23 1.23 0 0 1 .414-1.794c1.834-.99 3.67-1.783 5.51-2.513a.504.504 0 0 1 .648.668v.002zm2.72-3.872c.775-1.777 1.51-3.6 2.103-5.57a1.23 1.23 0 0 1 1.85-.672A9.791 9.791 0 0 1 20 6.497a1.23 1.23 0 0 1-.425 1.779c-1.842.998-3.688 1.796-5.538 2.53a.504.504 0 0 1-.648-.67zm-9.098 4.78a1.229 1.229 0 0 1-1.773-.81 9.735 9.735 0 0 1-.103-3.683 1.234 1.234 0 0 1 1.56-.981c2.02.584 3.888 1.328 5.713 2.119a.503.503 0 0 1-.014.93c-1.79.71-3.585 1.474-5.383 2.425z" }) + ] + } + ); +}); + +export { SiJuce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.cjs new file mode 100644 index 000000000..1a2b65ecc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007FFF"; +const SiJuejin = React__namespace.forwardRef(function SiJuejin2({ title = "Juejin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 14.316 7.454-5.88-2.022-1.625L12 11.1l-.004.003-5.432-4.288-2.02 1.624 7.452 5.88Zm0-7.247 2.89-2.298L12 2.453l-.004-.005-2.884 2.318 2.884 2.3Zm0 11.266-.005.002-9.975-7.87L0 12.088l.194.156 11.803 9.308 7.463-5.885L24 12.085l-2.023-1.624Z" }) + ] + } + ); +}); + +exports.default = SiJuejin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.d.ts new file mode 100644 index 000000000..6eb2dcdaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007FFF"; +declare const SiJuejin: IconType; +export { SiJuejin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.mjs new file mode 100644 index 000000000..2a7150e48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuejin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007FFF"; +const SiJuejin = React.forwardRef(function SiJuejin2({ title = "Juejin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 14.316 7.454-5.88-2.022-1.625L12 11.1l-.004.003-5.432-4.288-2.02 1.624 7.452 5.88Zm0-7.247 2.89-2.298L12 2.453l-.004-.005-2.884 2.318 2.884 2.3Zm0 11.266-.005.002-9.975-7.87L0 12.088l.194.156 11.803 9.308 7.463-5.885L24 12.085l-2.023-1.624Z" }) + ] + } + ); +}); + +export { SiJuejin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.cjs new file mode 100644 index 000000000..ac7a605a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6CD74A"; +const SiJuke = React__namespace.forwardRef(function SiJuke2({ title = "JUKE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.965 15.778c-1.947 0-2.751-.929-2.751-2.58V8.409c0-.102.084-.184.188-.184h1.499c.104 0 .188.082.188.184v4.82a.87.87 0 0 0 .876.816c.466 0 .85-.358.876-.816v-4.82a.188.188 0 0 1 .188-.185h1.498c.104 0 .188.083.188.185v4.789c0 1.652-.805 2.58-2.751 2.58h.001Zm-4.495-2.66c0 1.652-.726 2.583-2.667 2.583H.188A.186.186 0 0 1 0 15.516v-1.367c0-.102.084-.185.188-.185h.677c.636 0 .73-.336.73-.735V9.582a.397.397 0 0 0-.157-.314L.259 8.456a.128.128 0 0 1-.042-.145.133.133 0 0 1 .125-.087h2.939c.104 0 .188.083.188.185v4.709h.001Zm10.927.106v2.195a.187.187 0 0 1-.188.185h-1.5a.187.187 0 0 1-.183-.18V8.409c0-.1.081-.182.183-.185h1.5c.104 0 .188.083.188.185v2.2c0 .108.045.122.101.028l1.323-2.251c.08-.136.159-.161.336-.161h1.772c.103 0 .137.084.075.185l-2.063 3.387a.248.248 0 0 0 0 .239l2.063 3.387c.057.101.028.185-.075.185h-1.772c-.179 0-.257-.03-.337-.161l-1.323-2.25c-.056-.094-.101-.082-.101.026l.001.001Zm9.602-1.308a.157.157 0 0 1-.093.13l-2.406 1.45a.102.102 0 0 0-.058.091c0 .039.023.074.057.091l2.446 1.694a.13.13 0 0 1 .042.145.134.134 0 0 1-.126.087h-4.299a.187.187 0 0 1-.188-.18V8.407c0-.102.084-.185.188-.185h4.305c.056 0 .107.035.125.087a.129.129 0 0 1-.042.145l-2.445 1.693a.1.1 0 0 0 0 .182l2.395 1.456c.065.037.098.08.098.13l.001.001Z" }) + ] + } + ); +}); + +exports.default = SiJuke; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.d.ts new file mode 100644 index 000000000..a2e04fe6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6CD74A"; +declare const SiJuke: IconType; +export { SiJuke as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.mjs new file mode 100644 index 000000000..6585cb996 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJuke.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6CD74A"; +const SiJuke = React.forwardRef(function SiJuke2({ title = "JUKE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.965 15.778c-1.947 0-2.751-.929-2.751-2.58V8.409c0-.102.084-.184.188-.184h1.499c.104 0 .188.082.188.184v4.82a.87.87 0 0 0 .876.816c.466 0 .85-.358.876-.816v-4.82a.188.188 0 0 1 .188-.185h1.498c.104 0 .188.083.188.185v4.789c0 1.652-.805 2.58-2.751 2.58h.001Zm-4.495-2.66c0 1.652-.726 2.583-2.667 2.583H.188A.186.186 0 0 1 0 15.516v-1.367c0-.102.084-.185.188-.185h.677c.636 0 .73-.336.73-.735V9.582a.397.397 0 0 0-.157-.314L.259 8.456a.128.128 0 0 1-.042-.145.133.133 0 0 1 .125-.087h2.939c.104 0 .188.083.188.185v4.709h.001Zm10.927.106v2.195a.187.187 0 0 1-.188.185h-1.5a.187.187 0 0 1-.183-.18V8.409c0-.1.081-.182.183-.185h1.5c.104 0 .188.083.188.185v2.2c0 .108.045.122.101.028l1.323-2.251c.08-.136.159-.161.336-.161h1.772c.103 0 .137.084.075.185l-2.063 3.387a.248.248 0 0 0 0 .239l2.063 3.387c.057.101.028.185-.075.185h-1.772c-.179 0-.257-.03-.337-.161l-1.323-2.25c-.056-.094-.101-.082-.101.026l.001.001Zm9.602-1.308a.157.157 0 0 1-.093.13l-2.406 1.45a.102.102 0 0 0-.058.091c0 .039.023.074.057.091l2.446 1.694a.13.13 0 0 1 .042.145.134.134 0 0 1-.126.087h-4.299a.187.187 0 0 1-.188-.18V8.407c0-.102.084-.185.188-.185h4.305c.056 0 .107.035.125.087a.129.129 0 0 1-.042.145l-2.445 1.693a.1.1 0 0 0 0 .182l2.395 1.456c.065.037.098.08.098.13l.001.001Z" }) + ] + } + ); +}); + +export { SiJuke as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.cjs new file mode 100644 index 000000000..93d847027 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9558B2"; +const SiJulia = React__namespace.forwardRef(function SiJulia2({ title = "Julia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.138 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0zm6.431-11.138a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0zM24 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0z" }) + ] + } + ); +}); + +exports.default = SiJulia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.d.ts new file mode 100644 index 000000000..8ba8687f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9558B2"; +declare const SiJulia: IconType; +export { SiJulia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.mjs new file mode 100644 index 000000000..0241a19c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJulia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9558B2"; +const SiJulia = React.forwardRef(function SiJulia2({ title = "Julia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.138 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0zm6.431-11.138a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0zM24 17.569a5.569 5.569 0 1 1-11.138 0 5.569 5.569 0 1 1 11.138 0z" }) + ] + } + ); +}); + +export { SiJulia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.cjs new file mode 100644 index 000000000..bf022a0d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#84B135"; +const SiJunipernetworks = React__namespace.forwardRef(function SiJunipernetworks2({ title = "Juniper Networks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.0864 13.1643c.0456 0 .0717-.0132.0717-.062 0-.0482-.0254-.0593-.0731-.0593h-.1023v.1213zm-.1037.0417v.1285h-.0445v-.334h.1487c.0846 0 .1172.0347.1172.1006 0 .054-.0229.0912-.0806.102l.0755.1314h-.0484l-.0746-.1285zm.0746-.2918a.2535.2535 0 0 0-.2533.2531c0 .1395.1136.2532.2533.2532a.2535.2535 0 0 0 .253-.2532.2534.2534 0 0 0-.253-.2531zm-.291.2531a.2912.2912 0 0 1 .291-.2908.291.291 0 0 1 .2905.2908.291.291 0 0 1-.2905.2907.2912.2912 0 0 1-.291-.2907zm-20.7445-.6602V8.8304h-.4212v3.6767c0 .8506.0337 1.5332-1.4404 1.5332A4.029 4.029 0 0 1 0 14.0369v.397a6.215 6.215 0 0 0 .1602.0022c1.7858 0 1.8616-.8002 1.8616-1.929zm15.5404-1.6972h3.1334c-.042-.918-.1011-1.7014-1.4404-1.7014-1.2887 0-1.6425.6992-1.693 1.7014zm1.7016-2.0889c1.794 0 1.853 1.2045 1.8447 2.4764h-3.5548c.0085 1.1204.2863 1.9544 1.7436 1.9544.775 0 1.1288-.2107 1.5079-.4886l.2357.3116c-.421.3117-.918.556-1.7436.556-1.8194 0-2.1565-1.053-2.1565-2.4091 0-1.356.3877-2.4007 2.123-2.4007zm-4.1484 2.7055c.7439 0 1.1135-.3625 1.1135-1.0949 0-.7322-.3988-1.0798-1.132-1.0798h-1.7285v2.1747zM15.109 8.839c1.0678 0 1.5519.5307 1.5519 1.474 0 .9497-.478 1.527-1.5578 1.527h-1.7348v1.5981h-.4124V8.839zm-2.9253 0v4.5991h-.4122V8.839zm-1.1939 4.5991h-.4296v-2.8134c0-.8086.0084-1.491-1.474-1.491-1.4743 0-1.4405.6824-1.4405 1.5331v2.7713h-.4212v-2.7713c0-1.1288.076-1.9289 1.8616-1.9289 1.7943 0 1.9037.8001 1.9037 1.8952zM2.7466 8.8304h.4297v2.8134c0 .8088-.0084 1.491 1.474 1.491 1.4742 0 1.4405-.6822 1.4405-1.533V8.8303h.4212v2.7713c0 1.1289-.0759 1.929-1.8616 1.929-1.7943 0-1.9038-.8001-1.9038-1.8952zm18.9675 1.8364v2.7713h.421v-2.7713c0-.8507-.0336-1.533 1.4407-1.533.1579 0 .298.0083.4242.023v-.4012a4.8535 4.8535 0 0 0-.4242-.0177c-1.7859 0-1.8617.8001-1.8617 1.929zm-.4315 4.3602c.1525.096.3017.1286.4542.1286.2624 0 .3789-.0737.3789-.2486 0-.18-.1508-.2057-.3789-.2468-.2743-.048-.4594-.0944-.4594-.3514 0-.2453.1577-.3413.4594-.3413.199 0 .3412.0447.4423.1132l-.072.1097c-.0908-.06-.2263-.0995-.3703-.0995-.228 0-.3257.0636-.3257.2144 0 .1612.132.192.3584.233.2776.0499.4782.091.4782.3635 0 .2521-.1612.3737-.5074.3737-.192 0-.3652-.0393-.5263-.1456zm-.7886-.4423l-.2538.2777v.396h-.132v-1.2703h.132v.7012l.643-.7012h.156l-.456.4989.5176.7715h-.1525l-.4543-.6738m-1.1006.0326c.18 0 .2914-.0549.2914-.2555 0-.1971-.108-.2485-.2965-.2485h-.4132v.504zm-.0377.1234h-.3806v.5178h-.132V13.988h.5486c.2948 0 .4286.1183.4286.3703 0 .2194-.1046.348-.3258.377l.3068.523h-.1439l-.3017-.5177m-.924-.1166c0-.3429-.1594-.528-.5058-.528-.3446 0-.5023.1851-.5023.528 0 .3446.1577.5298.5023.5298.3464 0 .5058-.1852.5058-.5298zm-.5058-.6566c.408 0 .6412.2024.6412.655 0 .4542-.2332.6565-.6412.6565-.4063 0-.6377-.2023-.6377-.6566 0-.4525.2314-.6549.6377-.6549zm-2.3571.0206l.3342 1.0508.3412-1.0508h.1166l.3394 1.0508.336-1.0508h.1303l-.408 1.2789h-.1165l-.343-1.0577-.341 1.0577h-.1183l-.4098-1.2789zm-1.392.1286v-.1286h1.0886v.1286h-.4766v1.1418h-.1355v-1.1418zm-.204-.1286v.1286h-.7046v.42h.6874v.127h-.6874v.4713h.7114v.1235h-.8468V13.988zm-2.0539 0l.7596 1.0475V13.988h.1303v1.2704h-.1235l-.7835-1.0784v1.0784h-.1303V13.988Z" }) + ] + } + ); +}); + +exports.default = SiJunipernetworks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.d.ts new file mode 100644 index 000000000..65b827ecd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#84B135"; +declare const SiJunipernetworks: IconType; +export { SiJunipernetworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.mjs new file mode 100644 index 000000000..af7931bdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJunipernetworks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#84B135"; +const SiJunipernetworks = React.forwardRef(function SiJunipernetworks2({ title = "Juniper Networks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.0864 13.1643c.0456 0 .0717-.0132.0717-.062 0-.0482-.0254-.0593-.0731-.0593h-.1023v.1213zm-.1037.0417v.1285h-.0445v-.334h.1487c.0846 0 .1172.0347.1172.1006 0 .054-.0229.0912-.0806.102l.0755.1314h-.0484l-.0746-.1285zm.0746-.2918a.2535.2535 0 0 0-.2533.2531c0 .1395.1136.2532.2533.2532a.2535.2535 0 0 0 .253-.2532.2534.2534 0 0 0-.253-.2531zm-.291.2531a.2912.2912 0 0 1 .291-.2908.291.291 0 0 1 .2905.2908.291.291 0 0 1-.2905.2907.2912.2912 0 0 1-.291-.2907zm-20.7445-.6602V8.8304h-.4212v3.6767c0 .8506.0337 1.5332-1.4404 1.5332A4.029 4.029 0 0 1 0 14.0369v.397a6.215 6.215 0 0 0 .1602.0022c1.7858 0 1.8616-.8002 1.8616-1.929zm15.5404-1.6972h3.1334c-.042-.918-.1011-1.7014-1.4404-1.7014-1.2887 0-1.6425.6992-1.693 1.7014zm1.7016-2.0889c1.794 0 1.853 1.2045 1.8447 2.4764h-3.5548c.0085 1.1204.2863 1.9544 1.7436 1.9544.775 0 1.1288-.2107 1.5079-.4886l.2357.3116c-.421.3117-.918.556-1.7436.556-1.8194 0-2.1565-1.053-2.1565-2.4091 0-1.356.3877-2.4007 2.123-2.4007zm-4.1484 2.7055c.7439 0 1.1135-.3625 1.1135-1.0949 0-.7322-.3988-1.0798-1.132-1.0798h-1.7285v2.1747zM15.109 8.839c1.0678 0 1.5519.5307 1.5519 1.474 0 .9497-.478 1.527-1.5578 1.527h-1.7348v1.5981h-.4124V8.839zm-2.9253 0v4.5991h-.4122V8.839zm-1.1939 4.5991h-.4296v-2.8134c0-.8086.0084-1.491-1.474-1.491-1.4743 0-1.4405.6824-1.4405 1.5331v2.7713h-.4212v-2.7713c0-1.1288.076-1.9289 1.8616-1.9289 1.7943 0 1.9037.8001 1.9037 1.8952zM2.7466 8.8304h.4297v2.8134c0 .8088-.0084 1.491 1.474 1.491 1.4742 0 1.4405-.6822 1.4405-1.533V8.8303h.4212v2.7713c0 1.1289-.0759 1.929-1.8616 1.929-1.7943 0-1.9038-.8001-1.9038-1.8952zm18.9675 1.8364v2.7713h.421v-2.7713c0-.8507-.0336-1.533 1.4407-1.533.1579 0 .298.0083.4242.023v-.4012a4.8535 4.8535 0 0 0-.4242-.0177c-1.7859 0-1.8617.8001-1.8617 1.929zm-.4315 4.3602c.1525.096.3017.1286.4542.1286.2624 0 .3789-.0737.3789-.2486 0-.18-.1508-.2057-.3789-.2468-.2743-.048-.4594-.0944-.4594-.3514 0-.2453.1577-.3413.4594-.3413.199 0 .3412.0447.4423.1132l-.072.1097c-.0908-.06-.2263-.0995-.3703-.0995-.228 0-.3257.0636-.3257.2144 0 .1612.132.192.3584.233.2776.0499.4782.091.4782.3635 0 .2521-.1612.3737-.5074.3737-.192 0-.3652-.0393-.5263-.1456zm-.7886-.4423l-.2538.2777v.396h-.132v-1.2703h.132v.7012l.643-.7012h.156l-.456.4989.5176.7715h-.1525l-.4543-.6738m-1.1006.0326c.18 0 .2914-.0549.2914-.2555 0-.1971-.108-.2485-.2965-.2485h-.4132v.504zm-.0377.1234h-.3806v.5178h-.132V13.988h.5486c.2948 0 .4286.1183.4286.3703 0 .2194-.1046.348-.3258.377l.3068.523h-.1439l-.3017-.5177m-.924-.1166c0-.3429-.1594-.528-.5058-.528-.3446 0-.5023.1851-.5023.528 0 .3446.1577.5298.5023.5298.3464 0 .5058-.1852.5058-.5298zm-.5058-.6566c.408 0 .6412.2024.6412.655 0 .4542-.2332.6565-.6412.6565-.4063 0-.6377-.2023-.6377-.6566 0-.4525.2314-.6549.6377-.6549zm-2.3571.0206l.3342 1.0508.3412-1.0508h.1166l.3394 1.0508.336-1.0508h.1303l-.408 1.2789h-.1165l-.343-1.0577-.341 1.0577h-.1183l-.4098-1.2789zm-1.392.1286v-.1286h1.0886v.1286h-.4766v1.1418h-.1355v-1.1418zm-.204-.1286v.1286h-.7046v.42h.6874v.127h-.6874v.4713h.7114v.1235h-.8468V13.988zm-2.0539 0l.7596 1.0475V13.988h.1303v1.2704h-.1235l-.7835-1.0784v1.0784h-.1303V13.988Z" }) + ] + } + ); +}); + +export { SiJunipernetworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.cjs new file mode 100644 index 000000000..4f0558a5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#25A162"; +const SiJunit5 = React__namespace.forwardRef(function SiJunit52({ title = "JUnit5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.886 9.769c1.647 0 2.95.436 3.912 1.307.961.872 1.442 2.06 1.442 3.566 0 1.744-.548 3.107-1.643 4.09-1.088.977-2.638 1.465-4.65 1.465-1.826 0-3.26-.294-4.303-.883v-2.38a7.89 7.89 0 002.079.793c.782.186 1.509.28 2.18.28 1.184 0 2.086-.265 2.704-.794.619-.53.928-1.304.928-2.325 0-1.952-1.245-2.929-3.733-2.929-.35 0-.783.038-1.297.112-.514.067-.965.145-1.352.235l-1.174-.693.626-7.98H16.1v2.335H9.919l-.37 4.046c.262-.044.578-.096.95-.156.38-.06.843-.09 1.387-.09zM12 0C5.373 0 0 5.373 0 12a11.998 11.998 0 006.65 10.738v-3.675h.138c.01.004 4.86 2.466 8.021 0 3.163-2.468 1.62-5.785 1.08-6.557-.54-.771-3.317-2.083-5.708-1.851-2.391.231-2.391.308-2.391.308l.617-7.096 7.687-.074V.744A12 12 0 0011.999 0zm4.095.744V3.793l-7.688.074-.617 7.096s0-.077 2.391-.308c2.392-.232 5.169 1.08 5.708 1.851.54.772 2.083 4.089-1.08 6.557-3.16 2.467-8.013.004-8.02 0h-.14v3.675A12 12 0 0012 24c6.628 0 12-5.373 12-12A12.007 12.007 0 0016.35.83c-.085-.03-.17-.059-.255-.086zM6.299 22.556z" }) + ] + } + ); +}); + +exports.default = SiJunit5; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.d.ts new file mode 100644 index 000000000..ed3807650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#25A162"; +declare const SiJunit5: IconType; +export { SiJunit5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.mjs new file mode 100644 index 000000000..af028520f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJunit5.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#25A162"; +const SiJunit5 = React.forwardRef(function SiJunit52({ title = "JUnit5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.886 9.769c1.647 0 2.95.436 3.912 1.307.961.872 1.442 2.06 1.442 3.566 0 1.744-.548 3.107-1.643 4.09-1.088.977-2.638 1.465-4.65 1.465-1.826 0-3.26-.294-4.303-.883v-2.38a7.89 7.89 0 002.079.793c.782.186 1.509.28 2.18.28 1.184 0 2.086-.265 2.704-.794.619-.53.928-1.304.928-2.325 0-1.952-1.245-2.929-3.733-2.929-.35 0-.783.038-1.297.112-.514.067-.965.145-1.352.235l-1.174-.693.626-7.98H16.1v2.335H9.919l-.37 4.046c.262-.044.578-.096.95-.156.38-.06.843-.09 1.387-.09zM12 0C5.373 0 0 5.373 0 12a11.998 11.998 0 006.65 10.738v-3.675h.138c.01.004 4.86 2.466 8.021 0 3.163-2.468 1.62-5.785 1.08-6.557-.54-.771-3.317-2.083-5.708-1.851-2.391.231-2.391.308-2.391.308l.617-7.096 7.687-.074V.744A12 12 0 0011.999 0zm4.095.744V3.793l-7.688.074-.617 7.096s0-.077 2.391-.308c2.392-.232 5.169 1.08 5.708 1.851.54.772 2.083 4.089-1.08 6.557-3.16 2.467-8.013.004-8.02 0h-.14v3.675A12 12 0 0012 24c6.628 0 12-5.373 12-12A12.007 12.007 0 0016.35.83c-.085-.03-.17-.059-.255-.086zM6.299 22.556z" }) + ] + } + ); +}); + +export { SiJunit5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.cjs new file mode 100644 index 000000000..b60621496 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F37626"; +const SiJupyter = React__namespace.forwardRef(function SiJupyter2({ title = "Jupyter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.157 22.201A1.784 1.799 0 0 1 5.374 24a1.784 1.799 0 0 1-1.784-1.799 1.784 1.799 0 0 1 1.784-1.799 1.784 1.799 0 0 1 1.783 1.799zM20.582 1.427a1.415 1.427 0 0 1-1.415 1.428 1.415 1.427 0 0 1-1.416-1.428A1.415 1.427 0 0 1 19.167 0a1.415 1.427 0 0 1 1.415 1.427zM4.992 3.336A1.047 1.056 0 0 1 3.946 4.39a1.047 1.056 0 0 1-1.047-1.055A1.047 1.056 0 0 1 3.946 2.28a1.047 1.056 0 0 1 1.046 1.056zm7.336 1.517c3.769 0 7.06 1.38 8.768 3.424a9.363 9.363 0 0 0-3.393-4.547 9.238 9.238 0 0 0-5.377-1.728A9.238 9.238 0 0 0 6.95 3.73a9.363 9.363 0 0 0-3.394 4.547c1.713-2.04 5.004-3.424 8.772-3.424zm.001 13.295c-3.768 0-7.06-1.381-8.768-3.425a9.363 9.363 0 0 0 3.394 4.547A9.238 9.238 0 0 0 12.33 21a9.238 9.238 0 0 0 5.377-1.729 9.363 9.363 0 0 0 3.393-4.547c-1.712 2.044-5.003 3.425-8.772 3.425Z" }) + ] + } + ); +}); + +exports.default = SiJupyter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.d.ts new file mode 100644 index 000000000..c4802a1a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F37626"; +declare const SiJupyter: IconType; +export { SiJupyter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.mjs new file mode 100644 index 000000000..0b6395a2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJupyter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F37626"; +const SiJupyter = React.forwardRef(function SiJupyter2({ title = "Jupyter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.157 22.201A1.784 1.799 0 0 1 5.374 24a1.784 1.799 0 0 1-1.784-1.799 1.784 1.799 0 0 1 1.784-1.799 1.784 1.799 0 0 1 1.783 1.799zM20.582 1.427a1.415 1.427 0 0 1-1.415 1.428 1.415 1.427 0 0 1-1.416-1.428A1.415 1.427 0 0 1 19.167 0a1.415 1.427 0 0 1 1.415 1.427zM4.992 3.336A1.047 1.056 0 0 1 3.946 4.39a1.047 1.056 0 0 1-1.047-1.055A1.047 1.056 0 0 1 3.946 2.28a1.047 1.056 0 0 1 1.046 1.056zm7.336 1.517c3.769 0 7.06 1.38 8.768 3.424a9.363 9.363 0 0 0-3.393-4.547 9.238 9.238 0 0 0-5.377-1.728A9.238 9.238 0 0 0 6.95 3.73a9.363 9.363 0 0 0-3.394 4.547c1.713-2.04 5.004-3.424 8.772-3.424zm.001 13.295c-3.768 0-7.06-1.381-8.768-3.425a9.363 9.363 0 0 0 3.394 4.547A9.238 9.238 0 0 0 12.33 21a9.238 9.238 0 0 0 5.377-1.729 9.363 9.363 0 0 0 3.393-4.547c-1.712 2.044-5.003 3.425-8.772 3.425Z" }) + ] + } + ); +}); + +export { SiJupyter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJust.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJust.cjs new file mode 100644 index 000000000..73b105162 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJust.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiJust = React__namespace.forwardRef(function SiJust2({ title = "Just", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.35a3.25 3.35 0 0 1 3.25 3.35A3.25 3.35 0 0 1 12 9.05 3.25 3.35 0 0 1 8.75 5.7 3.25 3.35 0 0 1 12 2.35m0 12.6a3.25 3.35 0 0 1 3.25 3.35A3.25 3.35 0 0 1 12 21.65a3.25 3.35 0 0 1-3.25-3.35A3.25 3.35 0 0 1 12 14.95" }) + ] + } + ); +}); + +exports.default = SiJust; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJust.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJust.d.ts new file mode 100644 index 000000000..8f8d34e03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJust.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiJust: IconType; +export { SiJust as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJust.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJust.mjs new file mode 100644 index 000000000..c36721806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJust.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiJust = React.forwardRef(function SiJust2({ title = "Just", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.35a3.25 3.35 0 0 1 3.25 3.35A3.25 3.35 0 0 1 12 9.05 3.25 3.35 0 0 1 8.75 5.7 3.25 3.35 0 0 1 12 2.35m0 12.6a3.25 3.35 0 0 1 3.25 3.35A3.25 3.35 0 0 1 12 21.65a3.25 3.35 0 0 1-3.25-3.35A3.25 3.35 0 0 1 12 14.95" }) + ] + } + ); +}); + +export { SiJust as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.cjs new file mode 100644 index 000000000..394696660 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8000"; +const SiJusteat = React__namespace.forwardRef(function SiJusteat2({ title = "Just Eat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.6138 7.1997c-.0019-.0024-.0716-.0708-.0867-.2003a37.1998 37.1998 0 0 0-.5677-4.0793.6637.6637 0 0 0-.575-.516l-1.9612-.2364c0 .0002-.0213-.0027-.0516 0a.4129.4129 0 0 0-.4129.4128v.6792c.0071.0337-.0345.0156-.0412.0186A27.5178 27.5178 0 0 0 12.9723.2931c-.366-.245-.7355-.293-.9692-.293-.5918-.0016-.9527.293-.9693.293C4.277 4.4686.559 11.243.4155 11.6146c-.1799.3807.0325.8309.4407.9341l1.9457.3747a.6668.6668 0 0 1 .4862.5688c.0155.3437.384 8.0161.8454 10.0062.0076.0609.1743.4985.6482.4986h.0145c1.1318-.0299 2.2639-.0485 3.396-.063a.2198.2198 0 0 0 .2178-.2188c0-.1794-.0283-.0597-.2312-3.9565a.4129.4129 0 0 0-.2024-.323 2.0985 2.0985 0 0 1-1.0208-1.695c-.2262-5.8941.0116-8.2329-.0072-8.2329.0112-.528.8097-.5116.7824.0465-.11 1.8084-.0902 3.6209-.0702 5.4315.0106.6197.9396.6032.929-.0165-.0351-1.9045-.0248-3.8347.0733-5.4615.0065-.5085.7941-.529.7824.0465-.1067 1.7985-.0933 3.601-.0702 5.4016.0097.6192.9387.6048.929-.0145.011.011-.0846-2.8339.0733-5.4346.0112-.528.7824-.5194.7824.0464-.1515 2.6902-.0805 5.386 0 8.0771a2.0975 2.0975 0 0 1-.9104 1.731.4046.4046 0 0 0-.1734.3045s-.0475.4036.13 2.3576c.0542.5713.116 1.1418.1766 1.7125a.2064.2064 0 0 0 .2064.1796 468.6068 468.6068 0 0 1 4.0556.0093.2064.2064 0 0 0 .2064-.1817c.256-2.3421.3159-3.6582.3159-3.6582a.2323.2323 0 0 0-.2065-.225l-1.3419-.1848c.0058.0119-.4402-.0659-.4005-.5347.5357-7.8107 3.109-10.4398 3.109-10.4398a.8257.8257 0 0 1 .125-.1032c.2186-.1583.528-.0676.6265.1837a.8132.8132 0 0 1 .033.188c.222 2.4535.1136 6.6298-.0237 9.8875-.1167 2.7653-.258 4.936-.258 4.936 0 .089.072.161.161.161.7425.0117 1.485.0293 2.2275.0465a.671.671 0 0 0 .6482-.4986c.4614-1.99.8258-9.6625.8454-10.0062a.6647.6647 0 0 1 .4862-.5688l1.9457-.3747c.4082-.1032.6206-.5534.4407-.9341-.0355-.0956-.918-1.8515-2.9707-4.418z" }) + ] + } + ); +}); + +exports.default = SiJusteat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.d.ts new file mode 100644 index 000000000..3652667da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8000"; +declare const SiJusteat: IconType; +export { SiJusteat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.mjs new file mode 100644 index 000000000..ce29475ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJusteat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8000"; +const SiJusteat = React.forwardRef(function SiJusteat2({ title = "Just Eat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.6138 7.1997c-.0019-.0024-.0716-.0708-.0867-.2003a37.1998 37.1998 0 0 0-.5677-4.0793.6637.6637 0 0 0-.575-.516l-1.9612-.2364c0 .0002-.0213-.0027-.0516 0a.4129.4129 0 0 0-.4129.4128v.6792c.0071.0337-.0345.0156-.0412.0186A27.5178 27.5178 0 0 0 12.9723.2931c-.366-.245-.7355-.293-.9692-.293-.5918-.0016-.9527.293-.9693.293C4.277 4.4686.559 11.243.4155 11.6146c-.1799.3807.0325.8309.4407.9341l1.9457.3747a.6668.6668 0 0 1 .4862.5688c.0155.3437.384 8.0161.8454 10.0062.0076.0609.1743.4985.6482.4986h.0145c1.1318-.0299 2.2639-.0485 3.396-.063a.2198.2198 0 0 0 .2178-.2188c0-.1794-.0283-.0597-.2312-3.9565a.4129.4129 0 0 0-.2024-.323 2.0985 2.0985 0 0 1-1.0208-1.695c-.2262-5.8941.0116-8.2329-.0072-8.2329.0112-.528.8097-.5116.7824.0465-.11 1.8084-.0902 3.6209-.0702 5.4315.0106.6197.9396.6032.929-.0165-.0351-1.9045-.0248-3.8347.0733-5.4615.0065-.5085.7941-.529.7824.0465-.1067 1.7985-.0933 3.601-.0702 5.4016.0097.6192.9387.6048.929-.0145.011.011-.0846-2.8339.0733-5.4346.0112-.528.7824-.5194.7824.0464-.1515 2.6902-.0805 5.386 0 8.0771a2.0975 2.0975 0 0 1-.9104 1.731.4046.4046 0 0 0-.1734.3045s-.0475.4036.13 2.3576c.0542.5713.116 1.1418.1766 1.7125a.2064.2064 0 0 0 .2064.1796 468.6068 468.6068 0 0 1 4.0556.0093.2064.2064 0 0 0 .2064-.1817c.256-2.3421.3159-3.6582.3159-3.6582a.2323.2323 0 0 0-.2065-.225l-1.3419-.1848c.0058.0119-.4402-.0659-.4005-.5347.5357-7.8107 3.109-10.4398 3.109-10.4398a.8257.8257 0 0 1 .125-.1032c.2186-.1583.528-.0676.6265.1837a.8132.8132 0 0 1 .033.188c.222 2.4535.1136 6.6298-.0237 9.8875-.1167 2.7653-.258 4.936-.258 4.936 0 .089.072.161.161.161.7425.0117 1.485.0293 2.2275.0465a.671.671 0 0 0 .6482-.4986c.4614-1.99.8258-9.6625.8454-10.0062a.6647.6647 0 0 1 .4862-.5688l1.9457-.3747c.4082-.1032.6206-.5534.4407-.9341-.0355-.0956-.918-1.8515-2.9707-4.418z" }) + ] + } + ); +}); + +export { SiJusteat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.cjs new file mode 100644 index 000000000..ddfc2ccdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AD29B6"; +const SiJustgiving = React__namespace.forwardRef(function SiJustgiving2({ title = "JustGiving", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.716 9.925H15.33l-4.898 4.919h6.727c-.885 1.975-2.865 3.061-5.16 3.061-3.104 0-5.639-2.67-5.639-5.771C6.36 9.02 8.896 6.42 12 6.42c1.134 0 2.189.295 3.061.871l4.542-4.561C17.541 1.031 14.893 0 12 0 5.37 0 0 5.367 0 12c0 6.623 5.37 12 12 12s12-5.115 12-11.738c0-.896-.103-1.35-.284-2.337z" }) + ] + } + ); +}); + +exports.default = SiJustgiving; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.d.ts new file mode 100644 index 000000000..23402a0e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AD29B6"; +declare const SiJustgiving: IconType; +export { SiJustgiving as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.mjs new file mode 100644 index 000000000..d107beb2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiJustgiving.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AD29B6"; +const SiJustgiving = React.forwardRef(function SiJustgiving2({ title = "JustGiving", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.716 9.925H15.33l-4.898 4.919h6.727c-.885 1.975-2.865 3.061-5.16 3.061-3.104 0-5.639-2.67-5.639-5.771C6.36 9.02 8.896 6.42 12 6.42c1.134 0 2.189.295 3.061.871l4.542-4.561C17.541 1.031 14.893 0 12 0 5.37 0 0 5.367 0 12c0 6.623 5.37 12 12 12s12-5.115 12-11.738c0-.896-.103-1.35-.284-2.337z" }) + ] + } + ); +}); + +export { SiJustgiving as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.cjs new file mode 100644 index 000000000..4e0418189 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC61C"; +const SiK3s = React__namespace.forwardRef(function SiK3s2({ title = "K3s", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.46 2.172H2.54A2.548 2.548 0 0 0 0 4.712v14.575a2.548 2.548 0 0 0 2.54 2.54h18.92a2.548 2.548 0 0 0 2.54-2.54V4.713a2.548 2.548 0 0 0-2.54-2.54ZM10.14 16.465 5.524 19.15a1.235 1.235 0 1 1-1.242-2.137L8.9 14.33a1.235 1.235 0 1 1 1.241 2.136zm1.817-4.088h-.006a1.235 1.235 0 0 1-1.23-1.24l.023-5.32a1.236 1.236 0 0 1 1.236-1.23h.005a1.235 1.235 0 0 1 1.23 1.241l-.023 5.32a1.236 1.236 0 0 1-1.235 1.23zm8.17 6.32a1.235 1.235 0 0 1-1.688.453l-4.624-2.67a1.235 1.235 0 1 1 1.235-2.14l4.624 2.67a1.235 1.235 0 0 1 .452 1.688z" }) + ] + } + ); +}); + +exports.default = SiK3s; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.d.ts new file mode 100644 index 000000000..922fc953c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC61C"; +declare const SiK3s: IconType; +export { SiK3s as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.mjs new file mode 100644 index 000000000..e2b35c2ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiK3s.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC61C"; +const SiK3s = React.forwardRef(function SiK3s2({ title = "K3s", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.46 2.172H2.54A2.548 2.548 0 0 0 0 4.712v14.575a2.548 2.548 0 0 0 2.54 2.54h18.92a2.548 2.548 0 0 0 2.54-2.54V4.713a2.548 2.548 0 0 0-2.54-2.54ZM10.14 16.465 5.524 19.15a1.235 1.235 0 1 1-1.242-2.137L8.9 14.33a1.235 1.235 0 1 1 1.241 2.136zm1.817-4.088h-.006a1.235 1.235 0 0 1-1.23-1.24l.023-5.32a1.236 1.236 0 0 1 1.236-1.23h.005a1.235 1.235 0 0 1 1.23 1.241l-.023 5.32a1.236 1.236 0 0 1-1.235 1.23zm8.17 6.32a1.235 1.235 0 0 1-1.688.453l-4.624-2.67a1.235 1.235 0 1 1 1.235-2.14l4.624 2.67a1.235 1.235 0 0 1 .452 1.688z" }) + ] + } + ); +}); + +export { SiK3s as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiK6.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiK6.cjs new file mode 100644 index 000000000..5ddd8752d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiK6.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7D64FF"; +const SiK6 = React__namespace.forwardRef(function SiK62({ title = "k6", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 23.646H0L7.99 6.603l4.813 3.538L19.08.354Zm-8.8-3.681h.052a2.292 2.292 0 0 0 1.593-.64 2.088 2.088 0 0 0 .685-1.576 1.912 1.912 0 0 0-.66-1.511 2.008 2.008 0 0 0-1.37-.59h-.04a.716.716 0 0 0-.199.027l1.267-1.883-1.01-.705-.477.705-1.22 1.864c-.21.31-.386.582-.495.77-.112.2-.21.41-.29.625a1.942 1.942 0 0 0-.138.719 2.086 2.086 0 0 0 .676 1.558c.422.411.989.641 1.578.64Zm-5.365-2.027 1.398 1.978h1.496l-1.645-2.295 1.46-2.029-.97-.671-.427.565-1.314 1.853v-3.725l-1.31-1.068v7.37h1.31v-1.98Zm5.367.792a.963.963 0 1 1 0-1.927h.009a.941.941 0 0 1 .679.29.897.897 0 0 1 .29.668.978.978 0 0 1-.977.967Z" }) + ] + } + ); +}); + +exports.default = SiK6; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiK6.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiK6.d.ts new file mode 100644 index 000000000..33e05b010 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiK6.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7D64FF"; +declare const SiK6: IconType; +export { SiK6 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiK6.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiK6.mjs new file mode 100644 index 000000000..b51af6927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiK6.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7D64FF"; +const SiK6 = React.forwardRef(function SiK62({ title = "k6", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 23.646H0L7.99 6.603l4.813 3.538L19.08.354Zm-8.8-3.681h.052a2.292 2.292 0 0 0 1.593-.64 2.088 2.088 0 0 0 .685-1.576 1.912 1.912 0 0 0-.66-1.511 2.008 2.008 0 0 0-1.37-.59h-.04a.716.716 0 0 0-.199.027l1.267-1.883-1.01-.705-.477.705-1.22 1.864c-.21.31-.386.582-.495.77-.112.2-.21.41-.29.625a1.942 1.942 0 0 0-.138.719 2.086 2.086 0 0 0 .676 1.558c.422.411.989.641 1.578.64Zm-5.365-2.027 1.398 1.978h1.496l-1.645-2.295 1.46-2.029-.97-.671-.427.565-1.314 1.853v-3.725l-1.31-1.068v7.37h1.31v-1.98Zm5.367.792a.963.963 0 1 1 0-1.927h.009a.941.941 0 0 1 .679.29.897.897 0 0 1 .29.668.978.978 0 0 1-.977.967Z" }) + ] + } + ); +}); + +export { SiK6 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.cjs new file mode 100644 index 000000000..868d2fcfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#20BEFF"; +const SiKaggle = React__namespace.forwardRef(function SiKaggle2({ title = "Kaggle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.1025 7.3475c-.0681 0-.1022.0341-.1022.102v6.752c0 .0681.034.1022.1022.1022h.7049c.068 0 .1022-.034.1022-.1023v-1.481l.4187-.3985 1.5016 1.91c.041.0477.0884.0716.143.0716h.9091c.0476 0 .0748-.0135.0817-.0407.0135-.041.0066-.075-.0206-.1023l-1.9816-2.4618 1.9002-1.8384c.0204-.0205.0237-.051.01-.092-.0137-.0339-.0408-.051-.0816-.051h-.9398c-.0477 0-.0953.024-.143.0716L.9096 11.607V7.4496c0-.0679-.0342-.102-.1022-.102zm18.0417 0c-.068 0-.102.0341-.102.102v6.752c0 .0681.034.102.102.102h.705c.068 0 .102-.034.102-.102v-6.752c0-.068-.034-.102-.102-.102zM5.961 9.6254c-.5653 0-1.11.1806-1.6343.5415-.0545.0545-.0648.102-.0307.143l.3676.5208c.0272.0477.0717.0545.133.0204.3948-.2722.783-.4086 1.1644-.4086.2927 0 .5158.0886.669.2656.1532.1771.2197.3917.1992.6436-.6606.0681-1.1545.1495-1.4813.245-.8308.2383-1.2461.6913-1.2461 1.3586 0 .4222.1533.7695.4598 1.0419.3132.2654.6845.3982 1.1134.3982.4698 0 .8545-.1125 1.1542-.3372v.1432c0 .0682.0374.102.1123.102h.7048c.068 0 .102-.0338.102-.102V11.372c0-.6604-.2245-1.1406-.6739-1.4403-.3065-.2043-.6776-.3063-1.1134-.3063zm4.3225 0c-.6742 0-1.195.2622-1.5627.7865-.3133.4359-.4699.9671-.4699 1.5936 0 .6604.1634 1.2087.4903 1.6444.3744.4972.892.7455 1.5526.7455.5313 0 .9567-.1327 1.2768-.3982v.531c0 .858-.4122 1.287-1.236 1.287-.361 0-.732-.1907-1.1132-.572a.098.098 0 00-.0716-.0306c-.034 0-.0613.0102-.0817.0307l-.4802.48c-.0408.0613-.0375.1124.0103.1532.1361.1157.2554.2129.3576.2911.102.0783.1905.1413.2656.189.354.1975.7284.2961 1.1235.2961.6808 0 1.207-.1925 1.5781-.577.3711-.3848.5567-.9484.5567-1.6903V9.8196c0-.068-.034-.102-.102-.102h-.705c-.0682 0-.1021.034-.1021.102v.2043c-.3471-.2657-.7763-.3985-1.287-.3985zm4.8021 0c-.6742 0-1.195.2622-1.5627.7865-.3132.4359-.4699.9671-.4699 1.5936 0 .6604.1633 1.2087.4903 1.6444.3744.4972.892.7455 1.5526.7455.5311 0 .9566-.1327 1.2768-.3982v.531c0 .858-.4122 1.287-1.236 1.287-.361 0-.732-.1907-1.1133-.572a.098.098 0 00-.0716-.0306c-.034 0-.0612.0102-.0816.0307l-.48.48c-.0409.0613-.0376.1124.01.1532.1363.1157.2555.2129.3576.2911.1021.0783.1906.1413.2657.189.354.1975.7285.2961 1.1237.2961.6808 0 1.2068-.1925 1.5781-.577.371-.3848.5565-.9484.5565-1.6903V9.8196c0-.068-.034-.102-.102-.102h-.7049c-.0682 0-.1022.034-.1022.102v.2043c-.3474-.2657-.7763-.3985-1.287-.3985zm6.7457 0c-.6537 0-1.185.211-1.5936.6332-.4427.4632-.664 1.0283-.664 1.6956 0 .7083.225 1.2905.6743 1.7467.463.463 1.042.6945 1.7366.6945.6467 0 1.2154-.1838 1.7057-.5515.0545-.041.0545-.0884 0-.143l-.4802-.4903c-.041-.0409-.0919-.0409-.1533 0-.2998.2112-.6368.3167-1.0112.3167-.4222 0-.7729-.119-1.052-.3576-.2452-.2248-.3882-.5038-.429-.8375h3.3197c.0679 0 .1022-.0341.1022-.1023l.01-.2244c.0341-.6878-.1668-1.26-.6025-1.7162-.4224-.4426-.9432-.664-1.5627-.664zm-.0206.7865c.3268 0 .6062.1056.8377.3166.2452.211.371.4734.378.7865h-2.4618c.0613-.3269.2077-.5925.4392-.7968.2313-.2042.5004-.3063.8069-.3063zm-11.4249.102c.6196 0 1.0146.2181 1.1848.6538v1.6854c-.1702.4358-.5755.6538-1.2155.6538-.3133 0-.5687-.0986-.7661-.2963-.2656-.2518-.3983-.6538-.3983-1.2053 0-.9941.3984-1.4914 1.1951-1.4914zm4.802 0c.6196 0 1.0148.2181 1.1851.6538h-.0002v1.6854c-.1703.4358-.5755.6538-1.2155.6538-.3132 0-.5686-.0986-.7661-.2963-.2655-.2518-.3983-.6538-.3983-1.2053 0-.9941.3983-1.4914 1.195-1.4914zm-8.3586 1.6547v1.0215c-.286.286-.6675.412-1.1441.3779-.1703-.0135-.32-.0663-.4493-.1582-.1294-.0919-.2045-.2129-.2249-.3627-.0341-.2657.1158-.47.4495-.6129.2452-.1088.7013-.1974 1.3688-.2656z" }) + ] + } + ); +}); + +exports.default = SiKaggle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.d.ts new file mode 100644 index 000000000..830b60d6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#20BEFF"; +declare const SiKaggle: IconType; +export { SiKaggle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.mjs new file mode 100644 index 000000000..f53a6fd8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaggle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#20BEFF"; +const SiKaggle = React.forwardRef(function SiKaggle2({ title = "Kaggle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.1025 7.3475c-.0681 0-.1022.0341-.1022.102v6.752c0 .0681.034.1022.1022.1022h.7049c.068 0 .1022-.034.1022-.1023v-1.481l.4187-.3985 1.5016 1.91c.041.0477.0884.0716.143.0716h.9091c.0476 0 .0748-.0135.0817-.0407.0135-.041.0066-.075-.0206-.1023l-1.9816-2.4618 1.9002-1.8384c.0204-.0205.0237-.051.01-.092-.0137-.0339-.0408-.051-.0816-.051h-.9398c-.0477 0-.0953.024-.143.0716L.9096 11.607V7.4496c0-.0679-.0342-.102-.1022-.102zm18.0417 0c-.068 0-.102.0341-.102.102v6.752c0 .0681.034.102.102.102h.705c.068 0 .102-.034.102-.102v-6.752c0-.068-.034-.102-.102-.102zM5.961 9.6254c-.5653 0-1.11.1806-1.6343.5415-.0545.0545-.0648.102-.0307.143l.3676.5208c.0272.0477.0717.0545.133.0204.3948-.2722.783-.4086 1.1644-.4086.2927 0 .5158.0886.669.2656.1532.1771.2197.3917.1992.6436-.6606.0681-1.1545.1495-1.4813.245-.8308.2383-1.2461.6913-1.2461 1.3586 0 .4222.1533.7695.4598 1.0419.3132.2654.6845.3982 1.1134.3982.4698 0 .8545-.1125 1.1542-.3372v.1432c0 .0682.0374.102.1123.102h.7048c.068 0 .102-.0338.102-.102V11.372c0-.6604-.2245-1.1406-.6739-1.4403-.3065-.2043-.6776-.3063-1.1134-.3063zm4.3225 0c-.6742 0-1.195.2622-1.5627.7865-.3133.4359-.4699.9671-.4699 1.5936 0 .6604.1634 1.2087.4903 1.6444.3744.4972.892.7455 1.5526.7455.5313 0 .9567-.1327 1.2768-.3982v.531c0 .858-.4122 1.287-1.236 1.287-.361 0-.732-.1907-1.1132-.572a.098.098 0 00-.0716-.0306c-.034 0-.0613.0102-.0817.0307l-.4802.48c-.0408.0613-.0375.1124.0103.1532.1361.1157.2554.2129.3576.2911.102.0783.1905.1413.2656.189.354.1975.7284.2961 1.1235.2961.6808 0 1.207-.1925 1.5781-.577.3711-.3848.5567-.9484.5567-1.6903V9.8196c0-.068-.034-.102-.102-.102h-.705c-.0682 0-.1021.034-.1021.102v.2043c-.3471-.2657-.7763-.3985-1.287-.3985zm4.8021 0c-.6742 0-1.195.2622-1.5627.7865-.3132.4359-.4699.9671-.4699 1.5936 0 .6604.1633 1.2087.4903 1.6444.3744.4972.892.7455 1.5526.7455.5311 0 .9566-.1327 1.2768-.3982v.531c0 .858-.4122 1.287-1.236 1.287-.361 0-.732-.1907-1.1133-.572a.098.098 0 00-.0716-.0306c-.034 0-.0612.0102-.0816.0307l-.48.48c-.0409.0613-.0376.1124.01.1532.1363.1157.2555.2129.3576.2911.1021.0783.1906.1413.2657.189.354.1975.7285.2961 1.1237.2961.6808 0 1.2068-.1925 1.5781-.577.371-.3848.5565-.9484.5565-1.6903V9.8196c0-.068-.034-.102-.102-.102h-.7049c-.0682 0-.1022.034-.1022.102v.2043c-.3474-.2657-.7763-.3985-1.287-.3985zm6.7457 0c-.6537 0-1.185.211-1.5936.6332-.4427.4632-.664 1.0283-.664 1.6956 0 .7083.225 1.2905.6743 1.7467.463.463 1.042.6945 1.7366.6945.6467 0 1.2154-.1838 1.7057-.5515.0545-.041.0545-.0884 0-.143l-.4802-.4903c-.041-.0409-.0919-.0409-.1533 0-.2998.2112-.6368.3167-1.0112.3167-.4222 0-.7729-.119-1.052-.3576-.2452-.2248-.3882-.5038-.429-.8375h3.3197c.0679 0 .1022-.0341.1022-.1023l.01-.2244c.0341-.6878-.1668-1.26-.6025-1.7162-.4224-.4426-.9432-.664-1.5627-.664zm-.0206.7865c.3268 0 .6062.1056.8377.3166.2452.211.371.4734.378.7865h-2.4618c.0613-.3269.2077-.5925.4392-.7968.2313-.2042.5004-.3063.8069-.3063zm-11.4249.102c.6196 0 1.0146.2181 1.1848.6538v1.6854c-.1702.4358-.5755.6538-1.2155.6538-.3133 0-.5687-.0986-.7661-.2963-.2656-.2518-.3983-.6538-.3983-1.2053 0-.9941.3984-1.4914 1.1951-1.4914zm4.802 0c.6196 0 1.0148.2181 1.1851.6538h-.0002v1.6854c-.1703.4358-.5755.6538-1.2155.6538-.3132 0-.5686-.0986-.7661-.2963-.2655-.2518-.3983-.6538-.3983-1.2053 0-.9941.3983-1.4914 1.195-1.4914zm-8.3586 1.6547v1.0215c-.286.286-.6675.412-1.1441.3779-.1703-.0135-.32-.0663-.4493-.1582-.1294-.0919-.2045-.2129-.2249-.3627-.0341-.2657.1158-.47.4495-.6129.2452-.1088.7013-.1974 1.3688-.2656z" }) + ] + } + ); +}); + +export { SiKaggle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.cjs new file mode 100644 index 000000000..bfa3e4206 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB319"; +const SiKagi = React__namespace.forwardRef(function SiKagi2({ title = "Kagi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.4829 18.392h-5.109c-1.3827 0-1.6231-1.5076-1.3827-2.1106.1203-.3015.4208-.7236.6612-1.0251.9618.5427 2.1039.8442 3.306.8442 3.847 0 6.9126-3.1357 6.9126-6.9347 0-2.0502-.9016-3.8593-2.2843-5.186l.1805-.1808c.3605-.3618.9016-.603 1.4426-.5427l.8414.0603V0h-1.4425c-1.683 0-3.0656 1.0251-3.6667 2.4724-.6011-.181-1.2622-.3016-1.9234-.3016-3.847 0-6.9126 3.1357-6.9126 6.9347 0 1.5076.481 2.9548 1.3225 4.1005-.1203.1206-.3005.2412-.4208.3015l-.1803.181c-1.3826 1.3266-2.0436 3.015-1.6832 4.9448.1805 1.025 1.0821 2.1105 1.9838 2.7134.601.4222 1.3824.6031 2.1637.6031l5.7706-.2413c.6612 0 1.2623.3015 1.6228.9046L16.4065 24l3.5464-1.206-.6011-1.3268c-.9016-1.8692-2.765-3.0752-4.869-3.0752M12.0186 5.8493c1.8033 0 3.306 1.5075 3.306 3.3165s-1.5027 3.3166-3.306 3.3166-3.306-1.5075-3.306-3.3166c0-1.8693 1.4426-3.3166 3.306-3.3166" }) + ] + } + ); +}); + +exports.default = SiKagi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.d.ts new file mode 100644 index 000000000..ea1f3c318 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB319"; +declare const SiKagi: IconType; +export { SiKagi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.mjs new file mode 100644 index 000000000..940766d1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKagi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB319"; +const SiKagi = React.forwardRef(function SiKagi2({ title = "Kagi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.4829 18.392h-5.109c-1.3827 0-1.6231-1.5076-1.3827-2.1106.1203-.3015.4208-.7236.6612-1.0251.9618.5427 2.1039.8442 3.306.8442 3.847 0 6.9126-3.1357 6.9126-6.9347 0-2.0502-.9016-3.8593-2.2843-5.186l.1805-.1808c.3605-.3618.9016-.603 1.4426-.5427l.8414.0603V0h-1.4425c-1.683 0-3.0656 1.0251-3.6667 2.4724-.6011-.181-1.2622-.3016-1.9234-.3016-3.847 0-6.9126 3.1357-6.9126 6.9347 0 1.5076.481 2.9548 1.3225 4.1005-.1203.1206-.3005.2412-.4208.3015l-.1803.181c-1.3826 1.3266-2.0436 3.015-1.6832 4.9448.1805 1.025 1.0821 2.1105 1.9838 2.7134.601.4222 1.3824.6031 2.1637.6031l5.7706-.2413c.6612 0 1.2623.3015 1.6228.9046L16.4065 24l3.5464-1.206-.6011-1.3268c-.9016-1.8692-2.765-3.0752-4.869-3.0752M12.0186 5.8493c1.8033 0 3.306 1.5075 3.306 3.3165s-1.5027 3.3166-3.306 3.3166-3.306-1.5075-3.306-3.3166c0-1.8693 1.4426-3.3166 3.306-3.3166" }) + ] + } + ); +}); + +export { SiKagi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.cjs new file mode 100644 index 000000000..7d96b0b3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#46178F"; +const SiKahoot = React__namespace.forwardRef(function SiKahoot2({ title = "Kahoot!", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.557 18.87l2.747-17.513L16.174 0zM.696 2.348v19.078l4.035.14-.035-6.679 2.487-2.4 2.626 9.078h3.565L10.087 9.722l4.957-5.444-3.496-1.339L4.73 9.443V1.322zm18.295 17.86l-.99 2.331L20.12 24l2.088-1.235-.887-2.556Z" }) + ] + } + ); +}); + +exports.default = SiKahoot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.d.ts new file mode 100644 index 000000000..47ccd8438 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#46178F"; +declare const SiKahoot: IconType; +export { SiKahoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.mjs new file mode 100644 index 000000000..41df589b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKahoot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#46178F"; +const SiKahoot = React.forwardRef(function SiKahoot2({ title = "Kahoot!", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.557 18.87l2.747-17.513L16.174 0zM.696 2.348v19.078l4.035.14-.035-6.679 2.487-2.4 2.626 9.078h3.565L10.087 9.722l4.957-5.444-3.496-1.339L4.73 9.443V1.322zm18.295 17.86l-.99 2.331L20.12 24l2.088-1.235-.887-2.556Z" }) + ] + } + ); +}); + +export { SiKahoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.cjs new file mode 100644 index 000000000..6c47c7595 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6F02B5"; +const SiKaios = React__namespace.forwardRef(function SiKaios2({ title = "KaiOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.3419.0001a3.6735 3.6735 0 0 0-3.647 3.6735 3.6727 3.6727 0 0 0 3.6735 3.6734 3.6735 3.6735 0 1 0-.0265-7.3469zM4.6233.16a2.7459 2.7459 0 0 0-2.7475 2.7473v18.167a2.7474 2.7474 0 1 0 5.4942 0V2.9071A2.749 2.749 0 0 0 4.6233.16zm6.9494 7.2078a2.729 2.729 0 0 0-2.237 4.2947l7.8107 11.1541a2.729 2.729 0 1 0 4.4706-3.1307L13.8062 8.5311a2.729 2.729 0 0 0-2.2335-1.1634z" }) + ] + } + ); +}); + +exports.default = SiKaios; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.d.ts new file mode 100644 index 000000000..8eb9c01dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6F02B5"; +declare const SiKaios: IconType; +export { SiKaios as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.mjs new file mode 100644 index 000000000..0ed2d4944 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaios.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6F02B5"; +const SiKaios = React.forwardRef(function SiKaios2({ title = "KaiOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.3419.0001a3.6735 3.6735 0 0 0-3.647 3.6735 3.6727 3.6727 0 0 0 3.6735 3.6734 3.6735 3.6735 0 1 0-.0265-7.3469zM4.6233.16a2.7459 2.7459 0 0 0-2.7475 2.7473v18.167a2.7474 2.7474 0 1 0 5.4942 0V2.9071A2.749 2.749 0 0 0 4.6233.16zm6.9494 7.2078a2.729 2.729 0 0 0-2.237 4.2947l7.8107 11.1541a2.729 2.729 0 1 0 4.4706-3.1307L13.8062 8.5311a2.729 2.729 0 0 0-2.2335-1.1634z" }) + ] + } + ); +}); + +export { SiKaios as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.cjs new file mode 100644 index 000000000..9fc39592a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCD00"; +const SiKakao = React__namespace.forwardRef(function SiKakao2({ title = "Kakao", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.0743 10.4403l.655.4728-1.6101 2.0192 1.8647 2.2373-.646.5004-2.201-2.6924zm-2.2376 5.102H0V8.5121l.8367-.182zm20.944-4.3837c-.4364 0-.7715.1637-1.0049.4912-.2338.3274-.3505.8064-.3505 1.437 0 .6247.1167 1.096.3505 1.4143.2334.3183.5685.4775 1.0049.4775.4423 0 .7804-.1593 1.0143-.4775.2332-.3182.35-.7896.35-1.4142 0-.6307-.1168-1.1097-.35-1.4371-.234-.3275-.572-.4912-1.0143-.4912m0-.673c.691 0 1.234.2245 1.6277.673.3944.4488.5916 1.0915.5916 1.9283 0 .8244-.1955 1.4583-.5868 1.901-.3909.4422-.9356.6637-1.6325.6637-.691 0-1.234-.2215-1.6277-.6638-.3944-.4426-.5916-1.0765-.5916-1.901 0-.8367.1984-1.4794.5957-1.9282.3973-.4485.9385-.673 1.6236-.673m-5.534 4.4658a1.496 1.496 0 0 0 .3576-.0456 2.8804 2.8804 0 0 0 .3713-.1181 2.0066 2.0066 0 0 0 .3488-.1774 2.0778 2.0778 0 0 0 .2895-.2229v-1.1641h-.8693c-.441 0-.7626.0758-.9645.2274-.2025.1516-.3031.391-.3031.7185 0 .5214.2563.7822.7697.7822m-1.5704-.7458c0-.5032.1682-.887.5045-1.1504.337-.2638.826-.396 1.4691-.396h.964v-.3182c0-.77-.3393-1.155-1.0185-1.155-.2184 0-.447.0304-.6869.091-.2398.0608-.4594.1365-.659.2274l-.2457-.5913c.2487-.1394.517-.2469.8047-.323.2878-.0754.5685-.1136.8414-.1136 1.176 0 1.7646.6276 1.7646 1.8826v3.1833h-.6188l-.1-.5457c-.2488.2001-.5134.3547-.796.464-.2817.1092-.55.1637-.8046.1637-.4429 0-.7899-.1258-1.0416-.3775-.2515-.2517-.3772-.5987-.3772-1.0413m-1.6508-3.7653l.655.4728-1.6095 2.0192 1.864 2.2373-.6454.5004-2.201-2.6924zm-2.237 5.102h-.8367V8.5121l.8368-.182zm-4.4936-.5909c.1148 0 .2339-.0151.3576-.0456a2.8794 2.8794 0 0 0 .3713-.1181 1.9842 1.9842 0 0 0 .3488-.1774 2.0477 2.0477 0 0 0 .29-.2229v-1.1641h-.8698c-.4404 0-.762.0758-.9645.2274-.202.1516-.3031.391-.3031.7185 0 .5214.2563.7822.7697.7822m-1.5704-.7458c0-.5032.1682-.887.5052-1.1504.3363-.2638.826-.396 1.4684-.396h.9646v-.3182c0-.77-.3399-1.155-1.019-1.155-.218 0-.4471.0304-.6863.091-.2398.0608-.4595.1365-.6597.2274l-.2457-.5913c.2487-.1394.517-.2469.8053-.323.2878-.0754.5684-.1136.8408-.1136 1.1766 0 1.7646.6276 1.7646 1.8826v3.1833h-.6182l-.1001-.5457c-.2487.2001-.514.3547-.7958.464-.282.1092-.5501.1637-.8053.1637-.4423 0-.7893-.1258-1.041-.3775-.2516-.2517-.3778-.5987-.3778-1.0413Z" }) + ] + } + ); +}); + +exports.default = SiKakao; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.d.ts new file mode 100644 index 000000000..ddfa8e706 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCD00"; +declare const SiKakao: IconType; +export { SiKakao as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.mjs new file mode 100644 index 000000000..1ab28442e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKakao.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCD00"; +const SiKakao = React.forwardRef(function SiKakao2({ title = "Kakao", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.0743 10.4403l.655.4728-1.6101 2.0192 1.8647 2.2373-.646.5004-2.201-2.6924zm-2.2376 5.102H0V8.5121l.8367-.182zm20.944-4.3837c-.4364 0-.7715.1637-1.0049.4912-.2338.3274-.3505.8064-.3505 1.437 0 .6247.1167 1.096.3505 1.4143.2334.3183.5685.4775 1.0049.4775.4423 0 .7804-.1593 1.0143-.4775.2332-.3182.35-.7896.35-1.4142 0-.6307-.1168-1.1097-.35-1.4371-.234-.3275-.572-.4912-1.0143-.4912m0-.673c.691 0 1.234.2245 1.6277.673.3944.4488.5916 1.0915.5916 1.9283 0 .8244-.1955 1.4583-.5868 1.901-.3909.4422-.9356.6637-1.6325.6637-.691 0-1.234-.2215-1.6277-.6638-.3944-.4426-.5916-1.0765-.5916-1.901 0-.8367.1984-1.4794.5957-1.9282.3973-.4485.9385-.673 1.6236-.673m-5.534 4.4658a1.496 1.496 0 0 0 .3576-.0456 2.8804 2.8804 0 0 0 .3713-.1181 2.0066 2.0066 0 0 0 .3488-.1774 2.0778 2.0778 0 0 0 .2895-.2229v-1.1641h-.8693c-.441 0-.7626.0758-.9645.2274-.2025.1516-.3031.391-.3031.7185 0 .5214.2563.7822.7697.7822m-1.5704-.7458c0-.5032.1682-.887.5045-1.1504.337-.2638.826-.396 1.4691-.396h.964v-.3182c0-.77-.3393-1.155-1.0185-1.155-.2184 0-.447.0304-.6869.091-.2398.0608-.4594.1365-.659.2274l-.2457-.5913c.2487-.1394.517-.2469.8047-.323.2878-.0754.5685-.1136.8414-.1136 1.176 0 1.7646.6276 1.7646 1.8826v3.1833h-.6188l-.1-.5457c-.2488.2001-.5134.3547-.796.464-.2817.1092-.55.1637-.8046.1637-.4429 0-.7899-.1258-1.0416-.3775-.2515-.2517-.3772-.5987-.3772-1.0413m-1.6508-3.7653l.655.4728-1.6095 2.0192 1.864 2.2373-.6454.5004-2.201-2.6924zm-2.237 5.102h-.8367V8.5121l.8368-.182zm-4.4936-.5909c.1148 0 .2339-.0151.3576-.0456a2.8794 2.8794 0 0 0 .3713-.1181 1.9842 1.9842 0 0 0 .3488-.1774 2.0477 2.0477 0 0 0 .29-.2229v-1.1641h-.8698c-.4404 0-.762.0758-.9645.2274-.202.1516-.3031.391-.3031.7185 0 .5214.2563.7822.7697.7822m-1.5704-.7458c0-.5032.1682-.887.5052-1.1504.3363-.2638.826-.396 1.4684-.396h.9646v-.3182c0-.77-.3399-1.155-1.019-1.155-.218 0-.4471.0304-.6863.091-.2398.0608-.4595.1365-.6597.2274l-.2457-.5913c.2487-.1394.517-.2469.8053-.323.2878-.0754.5684-.1136.8408-.1136 1.1766 0 1.7646.6276 1.7646 1.8826v3.1833h-.6182l-.1001-.5457c-.2487.2001-.514.3547-.7958.464-.282.1092-.5501.1637-.8053.1637-.4423 0-.7893-.1258-1.041-.3775-.2516-.2517-.3778-.5987-.3778-1.0413Z" }) + ] + } + ); +}); + +export { SiKakao as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.cjs new file mode 100644 index 000000000..4321ad027 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCD00"; +const SiKakaotalk = React__namespace.forwardRef(function SiKakaotalk2({ title = "KakaoTalk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.125 0H1.875C.8394 0 0 .8394 0 1.875v20.25C0 23.1606.8394 24 1.875 24h20.25C23.1606 24 24 23.1606 24 22.125V1.875C24 .8394 23.1606 0 22.125 0zM12 18.75c-.591 0-1.1697-.0413-1.7317-.1209-.5626.3965-3.813 2.6797-4.1198 2.7225 0 0-.1258.0489-.2328-.0141s-.0876-.2282-.0876-.2282c.0322-.2198.8426-3.0183.992-3.5333-2.7452-1.36-4.5701-3.7686-4.5701-6.5135C2.25 6.8168 6.6152 3.375 12 3.375s9.75 3.4418 9.75 7.6875c0 4.2457-4.3652 7.6875-9.75 7.6875zM8.0496 9.8672h-.8777v3.3417c0 .2963-.2523.5372-.5625.5372s-.5625-.2409-.5625-.5372V9.8672h-.8777c-.3044 0-.552-.2471-.552-.5508s.2477-.5508.552-.5508h2.8804c.3044 0 .552.2471.552.5508s-.2477.5508-.552.5508zm10.9879 2.9566a.558.558 0 0 1 .108.4167.5588.5588 0 0 1-.2183.371.5572.5572 0 0 1-.3383.1135.558.558 0 0 1-.4493-.2236l-1.3192-1.7479-.1952.1952v1.2273a.5635.5635 0 0 1-.5627.5628.563.563 0 0 1-.5625-.5625V9.3281c0-.3102.2523-.5625.5625-.5625s.5625.2523.5625.5625v1.209l1.5694-1.5694c.0807-.0807.1916-.1252.312-.1252.1404 0 .2814.0606.3871.1661.0985.0984.1573.2251.1654.3566.0082.1327-.036.2542-.1241.3425l-1.2818 1.2817 1.3845 1.8344zm-8.3502-3.5023c-.095-.2699-.3829-.5475-.7503-.5557-.3663.0083-.6542.2858-.749.5551l-1.3455 3.5415c-.1708.5305-.0217.7272.1333.7988a.8568.8568 0 0 0 .3576.0776c.2346 0 .4139-.0952.4678-.2481l.2787-.7297 1.7152.0001.2785.7292c.0541.1532.2335.2484.4681.2484a.8601.8601 0 0 0 .3576-.0775c.1551-.0713.3041-.2681.1329-.7999l-1.3449-3.5398zm-1.3116 2.4433l.5618-1.5961.5618 1.5961H9.3757zm5.9056 1.3836c0 .2843-.2418.5156-.5391.5156h-1.8047c-.2973 0-.5391-.2314-.5391-.5156V9.3281c0-.3102.2576-.5625.5742-.5625s.5742.2523.5742.5625v3.3047h1.1953c.2974 0 .5392.2314.5392.5156z" }) + ] + } + ); +}); + +exports.default = SiKakaotalk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.d.ts new file mode 100644 index 000000000..aa6fe0140 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCD00"; +declare const SiKakaotalk: IconType; +export { SiKakaotalk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.mjs new file mode 100644 index 000000000..cfb8bc0cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKakaotalk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCD00"; +const SiKakaotalk = React.forwardRef(function SiKakaotalk2({ title = "KakaoTalk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.125 0H1.875C.8394 0 0 .8394 0 1.875v20.25C0 23.1606.8394 24 1.875 24h20.25C23.1606 24 24 23.1606 24 22.125V1.875C24 .8394 23.1606 0 22.125 0zM12 18.75c-.591 0-1.1697-.0413-1.7317-.1209-.5626.3965-3.813 2.6797-4.1198 2.7225 0 0-.1258.0489-.2328-.0141s-.0876-.2282-.0876-.2282c.0322-.2198.8426-3.0183.992-3.5333-2.7452-1.36-4.5701-3.7686-4.5701-6.5135C2.25 6.8168 6.6152 3.375 12 3.375s9.75 3.4418 9.75 7.6875c0 4.2457-4.3652 7.6875-9.75 7.6875zM8.0496 9.8672h-.8777v3.3417c0 .2963-.2523.5372-.5625.5372s-.5625-.2409-.5625-.5372V9.8672h-.8777c-.3044 0-.552-.2471-.552-.5508s.2477-.5508.552-.5508h2.8804c.3044 0 .552.2471.552.5508s-.2477.5508-.552.5508zm10.9879 2.9566a.558.558 0 0 1 .108.4167.5588.5588 0 0 1-.2183.371.5572.5572 0 0 1-.3383.1135.558.558 0 0 1-.4493-.2236l-1.3192-1.7479-.1952.1952v1.2273a.5635.5635 0 0 1-.5627.5628.563.563 0 0 1-.5625-.5625V9.3281c0-.3102.2523-.5625.5625-.5625s.5625.2523.5625.5625v1.209l1.5694-1.5694c.0807-.0807.1916-.1252.312-.1252.1404 0 .2814.0606.3871.1661.0985.0984.1573.2251.1654.3566.0082.1327-.036.2542-.1241.3425l-1.2818 1.2817 1.3845 1.8344zm-8.3502-3.5023c-.095-.2699-.3829-.5475-.7503-.5557-.3663.0083-.6542.2858-.749.5551l-1.3455 3.5415c-.1708.5305-.0217.7272.1333.7988a.8568.8568 0 0 0 .3576.0776c.2346 0 .4139-.0952.4678-.2481l.2787-.7297 1.7152.0001.2785.7292c.0541.1532.2335.2484.4681.2484a.8601.8601 0 0 0 .3576-.0775c.1551-.0713.3041-.2681.1329-.7999l-1.3449-3.5398zm-1.3116 2.4433l.5618-1.5961.5618 1.5961H9.3757zm5.9056 1.3836c0 .2843-.2418.5156-.5391.5156h-1.8047c-.2973 0-.5391-.2314-.5391-.5156V9.3281c0-.3102.2576-.5625.5742-.5625s.5742.2523.5742.5625v3.3047h1.1953c.2974 0 .5392.2314.5392.5156z" }) + ] + } + ); +}); + +export { SiKakaotalk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.cjs new file mode 100644 index 000000000..ae6ffc197 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#557C94"; +const SiKalilinux = React__namespace.forwardRef(function SiKalilinux2({ title = "Kali Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.778 5.943s-1.97-.13-5.327.92c-3.42 1.07-5.36 2.587-5.36 2.587s5.098-2.847 10.852-3.008zm7.351 3.095l.257-.017s-1.468-1.78-4.278-2.648c1.58.642 2.954 1.493 4.021 2.665zm.42.74c.039-.068.166.217.263.337.004.024.01.039-.045.027-.005-.025-.013-.032-.013-.032s-.135-.08-.177-.137c-.041-.057-.049-.157-.028-.195zm3.448 8.479s.312-3.578-5.31-4.403a18.277 18.277 0 0 0-2.524-.187c-4.506.06-4.67-5.197-1.275-5.462 1.407-.116 3.087.643 4.73 1.408-.007.204.002.385.136.552.134.168.648.35.813.445.164.094.691.43 1.014.85.07-.131.654-.512.654-.512s-.14.003-.465-.119c-.326-.122-.713-.49-.722-.511-.01-.022-.015-.055.06-.07.059-.049-.072-.207-.13-.265-.058-.058-.445-.716-.454-.73-.009-.016-.012-.031-.04-.05-.085-.027-.46.04-.46.04s-.575-.283-.774-.893c.003.107-.099.224 0 .469-.3-.127-.558-.344-.762-.88-.12.305 0 .499 0 .499s-.707-.198-.82-.85c-.124.293 0 .469 0 .469s-1.153-.602-3.069-.61c-1.283-.118-1.55-2.374-1.43-2.754 0 0-1.85-.975-5.493-1.406-3.642-.43-6.628-.065-6.628-.065s6.45-.31 11.617 1.783c.176.785.704 2.094.989 2.723-.815.563-1.733 1.092-1.876 2.97-.143 1.878 1.472 3.53 3.474 3.58 1.9.102 3.214.116 4.806.942 1.52.84 2.766 3.4 2.89 5.703.132-1.709-.509-5.383-3.5-6.498 4.181.732 4.549 3.832 4.549 3.832zM12.68 5.663l-.15-.485s-2.484-.441-5.822-.204C3.37 5.211 0 6.38 0 6.38s6.896-1.735 12.68-.717Z" }) + ] + } + ); +}); + +exports.default = SiKalilinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.d.ts new file mode 100644 index 000000000..616179802 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#557C94"; +declare const SiKalilinux: IconType; +export { SiKalilinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.mjs new file mode 100644 index 000000000..3b3124b3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKalilinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#557C94"; +const SiKalilinux = React.forwardRef(function SiKalilinux2({ title = "Kali Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.778 5.943s-1.97-.13-5.327.92c-3.42 1.07-5.36 2.587-5.36 2.587s5.098-2.847 10.852-3.008zm7.351 3.095l.257-.017s-1.468-1.78-4.278-2.648c1.58.642 2.954 1.493 4.021 2.665zm.42.74c.039-.068.166.217.263.337.004.024.01.039-.045.027-.005-.025-.013-.032-.013-.032s-.135-.08-.177-.137c-.041-.057-.049-.157-.028-.195zm3.448 8.479s.312-3.578-5.31-4.403a18.277 18.277 0 0 0-2.524-.187c-4.506.06-4.67-5.197-1.275-5.462 1.407-.116 3.087.643 4.73 1.408-.007.204.002.385.136.552.134.168.648.35.813.445.164.094.691.43 1.014.85.07-.131.654-.512.654-.512s-.14.003-.465-.119c-.326-.122-.713-.49-.722-.511-.01-.022-.015-.055.06-.07.059-.049-.072-.207-.13-.265-.058-.058-.445-.716-.454-.73-.009-.016-.012-.031-.04-.05-.085-.027-.46.04-.46.04s-.575-.283-.774-.893c.003.107-.099.224 0 .469-.3-.127-.558-.344-.762-.88-.12.305 0 .499 0 .499s-.707-.198-.82-.85c-.124.293 0 .469 0 .469s-1.153-.602-3.069-.61c-1.283-.118-1.55-2.374-1.43-2.754 0 0-1.85-.975-5.493-1.406-3.642-.43-6.628-.065-6.628-.065s6.45-.31 11.617 1.783c.176.785.704 2.094.989 2.723-.815.563-1.733 1.092-1.876 2.97-.143 1.878 1.472 3.53 3.474 3.58 1.9.102 3.214.116 4.806.942 1.52.84 2.766 3.4 2.89 5.703.132-1.709-.509-5.383-3.5-6.498 4.181.732 4.549 3.832 4.549 3.832zM12.68 5.663l-.15-.485s-2.484-.441-5.822-.204C3.37 5.211 0 6.38 0 6.38s6.896-1.735 12.68-.717Z" }) + ] + } + ); +}); + +export { SiKalilinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.cjs new file mode 100644 index 000000000..1d43729ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#506365"; +const SiKamailio = React__namespace.forwardRef(function SiKamailio2({ title = "Kamailio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.647 13.643 1.113-2.62m-3.277.747 1.366-1.413H2.14L.577 12.009v-1.652H0v3.286h.577v-.953l.512-.526 1.122 1.479h.7L1.482 11.77zm11.06-.746.567 1.314h-.793l-.217.511h1.221l.334.794h.61l-1.446-3.31h-.535l-1.446 3.31h.592c.373-.88.736-1.741 1.112-2.62zm-7.783 0 .568 1.314h-.794l-.217.511H5.54l.333.794h.61l-1.445-3.31H4.5l-1.445 3.31h.591M24 11.995a1.718 1.718 0 0 0-.479-1.197 1.652 1.652 0 0 0-.54-.364 1.757 1.757 0 0 0-.694-.133 1.717 1.717 0 0 0-1.24.505 1.65 1.65 0 0 0-.356.541 1.719 1.719 0 0 0-.127.658 1.719 1.719 0 0 0 .479 1.196c.15.154.33.275.54.364.21.09.44.134.694.134a1.717 1.717 0 0 0 1.24-.505 1.65 1.65 0 0 0 .356-.542c.085-.206.127-.425.127-.657zm-.606.01c0 .16-.027.31-.082.453-.054.142-.13.265-.227.37a1.063 1.063 0 0 1-.798.34 1.076 1.076 0 0 1-.805-.347 1.151 1.151 0 0 1-.23-.373 1.25 1.25 0 0 1-.082-.453c0-.16.027-.31.082-.453.054-.142.13-.266.227-.37a1.063 1.063 0 0 1 .798-.34 1.075 1.075 0 0 1 .805.346c.099.107.176.231.23.374.055.142.082.293.082.453zm-4.14-1.648v3.286h.578v-3.286h-.578zm-2.938 3.286h2.305v-.526h-1.728v-2.76h-.577v3.286zm-1.455-3.286v3.286h.577v-3.286h-.577zm-5.163.93v2.356h.577v-3.286H9.66l-1 1.554-1-1.554h-.614v3.286h.568v-2.347l1.028 1.54h.018l1.038-1.55zm-.499-1.74c3.162-1.018 6.03-1.59 8.606-1.717 1.125-.056 2.34-.077 3.452.12.397.07.782.18 1.137.356.283.14.507.31.671.51.222-.77.045-1.333-.53-1.688-.54-.334-1.272-.413-1.889-.464-2.726-.224-6.542.737-11.447 2.882zm5.637 5.235c-3.192.918-6.077 1.4-8.656 1.447-1.126.02-2.341.003-3.446-.228a4.19 4.19 0 0 1-1.125-.391 2.014 2.014 0 0 1-.655-.53c-.246.763-.086 1.33.477 1.703.53.35 1.26.452 1.874.522 2.718.31 6.562-.532 11.53-2.523z" }) + ] + } + ); +}); + +exports.default = SiKamailio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.d.ts new file mode 100644 index 000000000..dde8643e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#506365"; +declare const SiKamailio: IconType; +export { SiKamailio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.mjs new file mode 100644 index 000000000..0f5078764 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKamailio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#506365"; +const SiKamailio = React.forwardRef(function SiKamailio2({ title = "Kamailio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.647 13.643 1.113-2.62m-3.277.747 1.366-1.413H2.14L.577 12.009v-1.652H0v3.286h.577v-.953l.512-.526 1.122 1.479h.7L1.482 11.77zm11.06-.746.567 1.314h-.793l-.217.511h1.221l.334.794h.61l-1.446-3.31h-.535l-1.446 3.31h.592c.373-.88.736-1.741 1.112-2.62zm-7.783 0 .568 1.314h-.794l-.217.511H5.54l.333.794h.61l-1.445-3.31H4.5l-1.445 3.31h.591M24 11.995a1.718 1.718 0 0 0-.479-1.197 1.652 1.652 0 0 0-.54-.364 1.757 1.757 0 0 0-.694-.133 1.717 1.717 0 0 0-1.24.505 1.65 1.65 0 0 0-.356.541 1.719 1.719 0 0 0-.127.658 1.719 1.719 0 0 0 .479 1.196c.15.154.33.275.54.364.21.09.44.134.694.134a1.717 1.717 0 0 0 1.24-.505 1.65 1.65 0 0 0 .356-.542c.085-.206.127-.425.127-.657zm-.606.01c0 .16-.027.31-.082.453-.054.142-.13.265-.227.37a1.063 1.063 0 0 1-.798.34 1.076 1.076 0 0 1-.805-.347 1.151 1.151 0 0 1-.23-.373 1.25 1.25 0 0 1-.082-.453c0-.16.027-.31.082-.453.054-.142.13-.266.227-.37a1.063 1.063 0 0 1 .798-.34 1.075 1.075 0 0 1 .805.346c.099.107.176.231.23.374.055.142.082.293.082.453zm-4.14-1.648v3.286h.578v-3.286h-.578zm-2.938 3.286h2.305v-.526h-1.728v-2.76h-.577v3.286zm-1.455-3.286v3.286h.577v-3.286h-.577zm-5.163.93v2.356h.577v-3.286H9.66l-1 1.554-1-1.554h-.614v3.286h.568v-2.347l1.028 1.54h.018l1.038-1.55zm-.499-1.74c3.162-1.018 6.03-1.59 8.606-1.717 1.125-.056 2.34-.077 3.452.12.397.07.782.18 1.137.356.283.14.507.31.671.51.222-.77.045-1.333-.53-1.688-.54-.334-1.272-.413-1.889-.464-2.726-.224-6.542.737-11.447 2.882zm5.637 5.235c-3.192.918-6.077 1.4-8.656 1.447-1.126.02-2.341.003-3.446-.228a4.19 4.19 0 0 1-1.125-.391 2.014 2.014 0 0 1-.655-.53c-.246.763-.086 1.33.477 1.703.53.35 1.26.452 1.874.522 2.718.31 6.562-.532 11.53-2.523z" }) + ] + } + ); +}); + +export { SiKamailio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKando.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKando.cjs new file mode 100644 index 000000000..b303da489 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKando.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EACFCF"; +const SiKando = React__namespace.forwardRef(function SiKando2({ title = "Kando", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.953 6.435c-1.45 1.529-5.679 2.311-6.702 1.291-1.022-1.019-.298-5.006 1.154-6.535a3.826 3.826 0 0 1 5.402-.146 3.807 3.807 0 0 1 .146 5.39m-5.27 12.74c-1.906-.904-3.96-4.674-3.303-5.96.656-1.287 4.68-1.83 6.585-.926a3.824 3.813 0 0 1-3.282 6.886m-10.799.451c.274-2.088 3.234-5.2 4.663-4.975s3.188 3.878 2.914 5.965a3.822 3.811 0 1 1-7.578-.99M3.117 9.532c2.075-.388 5.959 1.454 6.187 2.878S6.6 16.638 4.526 17.027a3.82 3.82 0 0 1-4.46-3.044 3.813 3.813 0 0 1 3.051-4.45m8.466-6.707c1.01 1.849.453 6.103-.835 6.759S5.883 8.324 4.873 6.474A3.824 3.813 0 0 1 6.4 1.302a3.82 3.81 0 0 1 5.183 1.524" }) + ] + } + ); +}); + +exports.default = SiKando; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKando.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKando.d.ts new file mode 100644 index 000000000..4bd8a4fd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKando.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EACFCF"; +declare const SiKando: IconType; +export { SiKando as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKando.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKando.mjs new file mode 100644 index 000000000..c93f81869 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKando.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EACFCF"; +const SiKando = React.forwardRef(function SiKando2({ title = "Kando", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.953 6.435c-1.45 1.529-5.679 2.311-6.702 1.291-1.022-1.019-.298-5.006 1.154-6.535a3.826 3.826 0 0 1 5.402-.146 3.807 3.807 0 0 1 .146 5.39m-5.27 12.74c-1.906-.904-3.96-4.674-3.303-5.96.656-1.287 4.68-1.83 6.585-.926a3.824 3.813 0 0 1-3.282 6.886m-10.799.451c.274-2.088 3.234-5.2 4.663-4.975s3.188 3.878 2.914 5.965a3.822 3.811 0 1 1-7.578-.99M3.117 9.532c2.075-.388 5.959 1.454 6.187 2.878S6.6 16.638 4.526 17.027a3.82 3.82 0 0 1-4.46-3.044 3.813 3.813 0 0 1 3.051-4.45m8.466-6.707c1.01 1.849.453 6.103-.835 6.759S5.883 8.324 4.873 6.474A3.824 3.813 0 0 1 6.4 1.302a3.82 3.81 0 0 1 5.183 1.524" }) + ] + } + ); +}); + +export { SiKando as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.cjs new file mode 100644 index 000000000..d09f8a6b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA600"; +const SiKaniko = React__namespace.forwardRef(function SiKaniko2({ title = "Kaniko", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.783 0h18.434c1.352 0 2.478.963 2.73 2.24a17.127 17.127 0 0 1-3.2 4.42 16.918 16.918 0 0 1-8.399 4.605V3.304h-.696V11.4c-.976.169-1.965.253-2.956.252v.696c1.011 0 1.998.086 2.956.252v8.096h.696v-7.961a16.918 16.918 0 0 1 8.399 4.605 17.127 17.127 0 0 1 3.2 4.42 2.783 2.783 0 0 1-2.73 2.24H2.783A2.783 2.783 0 0 1 0 21.217V2.783A2.783 2.783 0 0 1 2.783 0Zm18.456 7.152A17.712 17.712 0 0 0 24 3.572v16.856a17.712 17.712 0 0 0-2.761-3.58 17.802 17.802 0 0 0-8.891-4.815v-.066a17.802 17.802 0 0 0 8.891-4.815Z" }) + ] + } + ); +}); + +exports.default = SiKaniko; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.d.ts new file mode 100644 index 000000000..9c36b94b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA600"; +declare const SiKaniko: IconType; +export { SiKaniko as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.mjs new file mode 100644 index 000000000..dfbf4d04d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaniko.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA600"; +const SiKaniko = React.forwardRef(function SiKaniko2({ title = "Kaniko", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.783 0h18.434c1.352 0 2.478.963 2.73 2.24a17.127 17.127 0 0 1-3.2 4.42 16.918 16.918 0 0 1-8.399 4.605V3.304h-.696V11.4c-.976.169-1.965.253-2.956.252v.696c1.011 0 1.998.086 2.956.252v8.096h.696v-7.961a16.918 16.918 0 0 1 8.399 4.605 17.127 17.127 0 0 1 3.2 4.42 2.783 2.783 0 0 1-2.73 2.24H2.783A2.783 2.783 0 0 1 0 21.217V2.783A2.783 2.783 0 0 1 2.783 0Zm18.456 7.152A17.712 17.712 0 0 0 24 3.572v16.856a17.712 17.712 0 0 0-2.761-3.58 17.802 17.802 0 0 0-8.891-4.815v-.066a17.802 17.802 0 0 0 8.891-4.815Z" }) + ] + } + ); +}); + +export { SiKaniko as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.cjs new file mode 100644 index 000000000..aee33cebc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9B2321"; +const SiKarlsruherverkehrsverbund = React__namespace.forwardRef(function SiKarlsruherverkehrsverbund2({ title = "Karlsruher Verkehrsverbund", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.91 6.089c-2.491 2.4-6.153 4.238-11.265 4.3l-.397 1.745h22.316L24 10.388H9.309c2.984-1.01 4.688-2.676 6.56-4.3zm10.45 6.721c-5.723.013-8.441 2.712-10.095 5.101h2.49c2.6-3.296 5.827-3.428 7.196-3.442zm-22.307.475L0 17.887h1.236l.488-2.173 1.097 2.173H4.27l-1.34-2.368 2.23-2.234H3.575l-1.723 1.869.436-1.87zm4.237 0l.509 4.602h1.517l2.63-4.602h-1.32l-1.852 3.463-.265-3.463zm4.89 0l.503 4.602h1.54l2.62-4.602h-1.32l-1.852 3.463-.268-3.463Z" }) + ] + } + ); +}); + +exports.default = SiKarlsruherverkehrsverbund; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.d.ts new file mode 100644 index 000000000..4498c9630 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9B2321"; +declare const SiKarlsruherverkehrsverbund: IconType; +export { SiKarlsruherverkehrsverbund as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.mjs new file mode 100644 index 000000000..49758b77a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKarlsruherverkehrsverbund.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9B2321"; +const SiKarlsruherverkehrsverbund = React.forwardRef(function SiKarlsruherverkehrsverbund2({ title = "Karlsruher Verkehrsverbund", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.91 6.089c-2.491 2.4-6.153 4.238-11.265 4.3l-.397 1.745h22.316L24 10.388H9.309c2.984-1.01 4.688-2.676 6.56-4.3zm10.45 6.721c-5.723.013-8.441 2.712-10.095 5.101h2.49c2.6-3.296 5.827-3.428 7.196-3.442zm-22.307.475L0 17.887h1.236l.488-2.173 1.097 2.173H4.27l-1.34-2.368 2.23-2.234H3.575l-1.723 1.869.436-1.87zm4.237 0l.509 4.602h1.517l2.63-4.602h-1.32l-1.852 3.463-.265-3.463zm4.89 0l.503 4.602h1.54l2.62-4.602h-1.32l-1.852 3.463-.268-3.463Z" }) + ] + } + ); +}); + +export { SiKarlsruherverkehrsverbund as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.cjs new file mode 100644 index 000000000..00989c28c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4ACBD6"; +const SiKasasmart = React__namespace.forwardRef(function SiKasasmart2({ title = "Kasa Smart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.5 0-1 .25-1.5.75L7.97 3.28l8.83 8.83c1 1 1.5 2 1.5 3V24h3.3c1.6 0 2.4-.8 2.4-2.4v-8.85c0-1-.5-2-1.5-3l-9-9C13 .25 12.5 0 12 0zM6.9 4.34L2.89 8.37 9.6 15.1c1 1 1.5 2 1.5 3V24h5.7v-8.89c-.03-.83-.6-1.46-1.06-1.94L6.91 4.34zm-5.08 5.1l-.32.31c-1 1-1.5 2-1.5 3v8.85C0 23.2.8 24 2.4 24h7.2v-5.9c-.03-.8-.56-1.42-1.06-1.95Z" }) + ] + } + ); +}); + +exports.default = SiKasasmart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.d.ts new file mode 100644 index 000000000..095415546 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4ACBD6"; +declare const SiKasasmart: IconType; +export { SiKasasmart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.mjs new file mode 100644 index 000000000..ab52e9d36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKasasmart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4ACBD6"; +const SiKasasmart = React.forwardRef(function SiKasasmart2({ title = "Kasa Smart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.5 0-1 .25-1.5.75L7.97 3.28l8.83 8.83c1 1 1.5 2 1.5 3V24h3.3c1.6 0 2.4-.8 2.4-2.4v-8.85c0-1-.5-2-1.5-3l-9-9C13 .25 12.5 0 12 0zM6.9 4.34L2.89 8.37 9.6 15.1c1 1 1.5 2 1.5 3V24h5.7v-8.89c-.03-.83-.6-1.46-1.06-1.94L6.91 4.34zm-5.08 5.1l-.32.31c-1 1-1.5 2-1.5 3v8.85C0 23.2.8 24 2.4 24h7.2v-5.9c-.03-.8-.56-1.42-1.06-1.95Z" }) + ] + } + ); +}); + +export { SiKasasmart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.cjs new file mode 100644 index 000000000..bdc11b5d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E5426E"; +const SiKashflow = React__namespace.forwardRef(function SiKashflow2({ title = "KashFlow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.278 2.141l-.83 2.702C8.007.174 2.958 4.724 2.958 4.724-1.638 8.564.49 14.678.495 14.678 1.252-.016 14.24 8.943 14.24 8.943c-.237 1.066-.996 2.63-.972 2.654l8.508-1.256zm7.228 7.181C22.747 24.016 9.76 15.057 9.76 15.057c.332-1.066 1.02-2.654 1.02-2.607L2.27 13.66l5.451 8.2.83-2.702c7.441 4.669 12.49.119 12.49.119 4.597-3.84 2.464-9.954 2.464-9.954z" }) + ] + } + ); +}); + +exports.default = SiKashflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.d.ts new file mode 100644 index 000000000..236ce41b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E5426E"; +declare const SiKashflow: IconType; +export { SiKashflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.mjs new file mode 100644 index 000000000..25b8feb1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKashflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E5426E"; +const SiKashflow = React.forwardRef(function SiKashflow2({ title = "KashFlow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.278 2.141l-.83 2.702C8.007.174 2.958 4.724 2.958 4.724-1.638 8.564.49 14.678.495 14.678 1.252-.016 14.24 8.943 14.24 8.943c-.237 1.066-.996 2.63-.972 2.654l8.508-1.256zm7.228 7.181C22.747 24.016 9.76 15.057 9.76 15.057c.332-1.066 1.02-2.654 1.02-2.607L2.27 13.66l5.451 8.2.83-2.702c7.441 4.669 12.49.119 12.49.119 4.597-3.84 2.464-9.954 2.464-9.954z" }) + ] + } + ); +}); + +export { SiKashflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.cjs new file mode 100644 index 000000000..5082e5b3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006D5C"; +const SiKaspersky = React__namespace.forwardRef(function SiKaspersky2({ title = "Kaspersky", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.812 12.014c0 .91-.555 1.34-1.25 1.34h-.424v-.546h.392c.419 0 .698-.226.698-.794 0-.563-.264-.844-.71-.844-.43 0-.738.265-.738.833v2.282H8.2v-3.589h.58v.309h.082a.94.94 0 0 1 .776-.375c.64 0 1.174.463 1.174 1.384zm-3.804-.237l-.386-.039c-.304-.027-.464-.11-.464-.287 0-.21.204-.33.497-.33.303 0 .496.143.512.347h.557c-.022-.518-.424-.838-1.064-.838-.645 0-1.08.342-1.08.843 0 .42.264.69.865.75l.392.039c.237.022.397.072.397.298 0 .204-.15.352-.54.352-.361 0-.539-.163-.601-.382H5.49c.06.5.481.89 1.203.89.678 0 1.12-.359 1.12-.888 0-.469-.31-.706-.805-.755zm6.047.753c-.091.208-.308.366-.616.366-.425 0-.739-.276-.739-.871 0-.568.292-.882.744-.882.403 0 .634.242.657.606h-1.043v.42h1.61v-.277c0-.766-.507-1.262-1.23-1.262-.672 0-1.317.457-1.317 1.395 0 .937.645 1.395 1.318 1.395.615 0 1.054-.38 1.19-.89zm-9.127-1.9c-.634 0-1.108.33-1.163.838h.623c.044-.188.215-.325.54-.325.42 0 .557.22.557.49v.91c-.237.27-.513.397-.788.397-.287 0-.486-.138-.486-.386 0-.237.155-.386.452-.386h.464v-.419h-.48c-.662 0-1.031.331-1.031.838 0 .474.358.833.948.833.331 0 .623-.133.838-.292h.083v.226h.579v-1.776c0-.656-.447-.948-1.136-.948zM0 13.354h.579v-3.64H0zm2.432-2.658h-.706l-.844 1.108v.348l.866 1.202h.717L1.45 11.975zm20.928 0l-.474 1.053c-.116.254-.226.502-.259.667h-.083c-.033-.165-.148-.408-.264-.661l-.474-1.059h-.64l1.114 2.387-.552 1.202h.618L24 10.696zm-2.322 0h-.706l-.843 1.108v.348l.865 1.202h.717l-1.015-1.379zm-3.625 1.08l-.386-.038c-.303-.027-.463-.11-.463-.287 0-.21.204-.33.496-.33.303 0 .496.143.513.347h.557c-.022-.518-.425-.838-1.064-.838-.645 0-1.081.342-1.081.843 0 .42.265.69.866.75l.391.039c.237.022.397.072.397.298 0 .204-.149.352-.54.352-.36 0-.538-.163-.6-.382h-.603c.06.5.481.89 1.203.89.678 0 1.12-.359 1.12-.888 0-.469-.31-.706-.806-.755zm1.193 1.578h.58v-3.64h-.58zm-3.817-2.35h-.083v-.308h-.579v2.658h.579v-1.39c0-.474.219-.75.65-.75h.367v-.584h-.212c-.4 0-.57.15-.722.375z" }) + ] + } + ); +}); + +exports.default = SiKaspersky; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.d.ts new file mode 100644 index 000000000..97a522d42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006D5C"; +declare const SiKaspersky: IconType; +export { SiKaspersky as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.mjs new file mode 100644 index 000000000..934925a1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaspersky.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006D5C"; +const SiKaspersky = React.forwardRef(function SiKaspersky2({ title = "Kaspersky", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.812 12.014c0 .91-.555 1.34-1.25 1.34h-.424v-.546h.392c.419 0 .698-.226.698-.794 0-.563-.264-.844-.71-.844-.43 0-.738.265-.738.833v2.282H8.2v-3.589h.58v.309h.082a.94.94 0 0 1 .776-.375c.64 0 1.174.463 1.174 1.384zm-3.804-.237l-.386-.039c-.304-.027-.464-.11-.464-.287 0-.21.204-.33.497-.33.303 0 .496.143.512.347h.557c-.022-.518-.424-.838-1.064-.838-.645 0-1.08.342-1.08.843 0 .42.264.69.865.75l.392.039c.237.022.397.072.397.298 0 .204-.15.352-.54.352-.361 0-.539-.163-.601-.382H5.49c.06.5.481.89 1.203.89.678 0 1.12-.359 1.12-.888 0-.469-.31-.706-.805-.755zm6.047.753c-.091.208-.308.366-.616.366-.425 0-.739-.276-.739-.871 0-.568.292-.882.744-.882.403 0 .634.242.657.606h-1.043v.42h1.61v-.277c0-.766-.507-1.262-1.23-1.262-.672 0-1.317.457-1.317 1.395 0 .937.645 1.395 1.318 1.395.615 0 1.054-.38 1.19-.89zm-9.127-1.9c-.634 0-1.108.33-1.163.838h.623c.044-.188.215-.325.54-.325.42 0 .557.22.557.49v.91c-.237.27-.513.397-.788.397-.287 0-.486-.138-.486-.386 0-.237.155-.386.452-.386h.464v-.419h-.48c-.662 0-1.031.331-1.031.838 0 .474.358.833.948.833.331 0 .623-.133.838-.292h.083v.226h.579v-1.776c0-.656-.447-.948-1.136-.948zM0 13.354h.579v-3.64H0zm2.432-2.658h-.706l-.844 1.108v.348l.866 1.202h.717L1.45 11.975zm20.928 0l-.474 1.053c-.116.254-.226.502-.259.667h-.083c-.033-.165-.148-.408-.264-.661l-.474-1.059h-.64l1.114 2.387-.552 1.202h.618L24 10.696zm-2.322 0h-.706l-.843 1.108v.348l.865 1.202h.717l-1.015-1.379zm-3.625 1.08l-.386-.038c-.303-.027-.463-.11-.463-.287 0-.21.204-.33.496-.33.303 0 .496.143.513.347h.557c-.022-.518-.425-.838-1.064-.838-.645 0-1.081.342-1.081.843 0 .42.265.69.866.75l.391.039c.237.022.397.072.397.298 0 .204-.149.352-.54.352-.36 0-.538-.163-.6-.382h-.603c.06.5.481.89 1.203.89.678 0 1.12-.359 1.12-.888 0-.469-.31-.706-.806-.755zm1.193 1.578h.58v-3.64h-.58zm-3.817-2.35h-.083v-.308h-.579v2.658h.579v-1.39c0-.474.219-.75.65-.75h.367v-.584h-.212c-.4 0-.57.15-.722.375z" }) + ] + } + ); +}); + +export { SiKaspersky as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.cjs new file mode 100644 index 000000000..e9dd1c507 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiKatana = React__namespace.forwardRef(function SiKatana2({ title = "Katana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.016 22.762H12c-5.95-.009-10.765-4.84-10.756-10.789.009-5.95 4.839-10.766 10.789-10.757 5.943.009 10.756 4.829 10.756 10.773 0 5.95-4.823 10.773-10.773 10.773zm9.475-10.857a5.562 5.562 0 0 1-9.142 3.214 6.331 6.331 0 0 0 3.251-2.062l.104.169c.339.584.568 1.226.676 1.893a6.281 6.281 0 0 0-.349-2.656 6.328 6.328 0 0 0-8.94-8.63 5.563 5.563 0 0 1 7.418 6.256 6.334 6.334 0 0 0-3.425-1.762l.093-.175a5.53 5.53 0 0 1 1.304-1.533 6.31 6.31 0 0 0-2.122 1.636 6.327 6.327 0 0 0-3.016 12.044 5.564 5.564 0 0 1 1.713-9.562 6.33 6.33 0 0 0 .185 3.818h-.186a5.535 5.535 0 0 1-1.98-.36 6.295 6.295 0 0 0 2.471 1.025 6.328 6.328 0 0 0 8.513 2.758 6.319 6.319 0 0 0 3.432-6.073zm-11.018-1.443a5.582 5.582 0 0 1 3.6.998 5.584 5.584 0 0 1-2.667 2.618 5.57 5.57 0 0 1-.933-3.616z" }) + ] + } + ); +}); + +exports.default = SiKatana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.d.ts new file mode 100644 index 000000000..997bfe969 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiKatana: IconType; +export { SiKatana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.mjs new file mode 100644 index 000000000..fdccea986 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKatana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiKatana = React.forwardRef(function SiKatana2({ title = "Katana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.016 22.762H12c-5.95-.009-10.765-4.84-10.756-10.789.009-5.95 4.839-10.766 10.789-10.757 5.943.009 10.756 4.829 10.756 10.773 0 5.95-4.823 10.773-10.773 10.773zm9.475-10.857a5.562 5.562 0 0 1-9.142 3.214 6.331 6.331 0 0 0 3.251-2.062l.104.169c.339.584.568 1.226.676 1.893a6.281 6.281 0 0 0-.349-2.656 6.328 6.328 0 0 0-8.94-8.63 5.563 5.563 0 0 1 7.418 6.256 6.334 6.334 0 0 0-3.425-1.762l.093-.175a5.53 5.53 0 0 1 1.304-1.533 6.31 6.31 0 0 0-2.122 1.636 6.327 6.327 0 0 0-3.016 12.044 5.564 5.564 0 0 1 1.713-9.562 6.33 6.33 0 0 0 .185 3.818h-.186a5.535 5.535 0 0 1-1.98-.36 6.295 6.295 0 0 0 2.471 1.025 6.328 6.328 0 0 0 8.513 2.758 6.319 6.319 0 0 0 3.432-6.073zm-11.018-1.443a5.582 5.582 0 0 1 3.6.998 5.584 5.584 0 0 1-2.667 2.618 5.57 5.57 0 0 1-.933-3.616z" }) + ] + } + ); +}); + +export { SiKatana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.cjs new file mode 100644 index 000000000..c0e72b202 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E10915"; +const SiKaufland = React__namespace.forwardRef(function SiKaufland2({ title = "Kaufland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 24h24V0H0zm23.008-.989H.989V.989h22.022zM3.773 3.776h7.651v7.65H3.773zm8.801 0v7.652l7.653-7.652zm-8.801 8.8h7.651v7.651H3.773zm8.801-.004v7.652h7.653z" }) + ] + } + ); +}); + +exports.default = SiKaufland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.d.ts new file mode 100644 index 000000000..e4fe8879a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E10915"; +declare const SiKaufland: IconType; +export { SiKaufland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.mjs new file mode 100644 index 000000000..753ac3285 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKaufland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E10915"; +const SiKaufland = React.forwardRef(function SiKaufland2({ title = "Kaufland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 24h24V0H0zm23.008-.989H.989V.989h22.022zM3.773 3.776h7.651v7.65H3.773zm8.801 0v7.652l7.653-7.652zm-8.801 8.8h7.651v7.651H3.773zm8.801-.004v7.652h7.653z" }) + ] + } + ); +}); + +export { SiKaufland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKde.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKde.cjs new file mode 100644 index 000000000..826cce53b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKde.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D99F3"; +const SiKde = React__namespace.forwardRef(function SiKde2({ title = "KDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.881 0L9.89.382v16.435l3.949-.594V9.216l5.308 7.772 4.162-1.317-5.436-7.475 5.479-7.05L19.105.17 13.84 7.22zM4.834 4.005a.203.203 0 0 0-.123.059L3.145 5.63a.203.203 0 0 0-.03.248L4.949 8.9a7.84 7.84 0 0 0-.772 1.759l-3.367.7a.203.203 0 0 0-.162.199v2.215c0 .093.064.174.155.196l3.268.8a7.83 7.83 0 0 0 .801 2.03L2.98 19.683a.203.203 0 0 0 .027.254l1.566 1.567a.204.204 0 0 0 .249.03l2.964-1.8c.582.336 1.21.6 1.874.78l.692 3.325c.02.094.102.161.198.161h2.215a.202.202 0 0 0 .197-.155l.815-3.332a7.807 7.807 0 0 0 1.927-.811l2.922 1.915c.08.053.186.042.254-.026l1.567-1.566a.202.202 0 0 0 .03-.248l-1.067-1.758-.345.11a.12.12 0 0 1-.135-.047L17.371 15.8a6.347 6.347 0 1 1-8.255-8.674V5.488c-.401.14-.79.31-1.159.511l-.001-.002-2.99-1.96a.203.203 0 0 0-.132-.033Z" }) + ] + } + ); +}); + +exports.default = SiKde; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKde.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKde.d.ts new file mode 100644 index 000000000..50a30e314 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKde.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D99F3"; +declare const SiKde: IconType; +export { SiKde as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKde.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKde.mjs new file mode 100644 index 000000000..a5a26e767 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKde.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D99F3"; +const SiKde = React.forwardRef(function SiKde2({ title = "KDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.881 0L9.89.382v16.435l3.949-.594V9.216l5.308 7.772 4.162-1.317-5.436-7.475 5.479-7.05L19.105.17 13.84 7.22zM4.834 4.005a.203.203 0 0 0-.123.059L3.145 5.63a.203.203 0 0 0-.03.248L4.949 8.9a7.84 7.84 0 0 0-.772 1.759l-3.367.7a.203.203 0 0 0-.162.199v2.215c0 .093.064.174.155.196l3.268.8a7.83 7.83 0 0 0 .801 2.03L2.98 19.683a.203.203 0 0 0 .027.254l1.566 1.567a.204.204 0 0 0 .249.03l2.964-1.8c.582.336 1.21.6 1.874.78l.692 3.325c.02.094.102.161.198.161h2.215a.202.202 0 0 0 .197-.155l.815-3.332a7.807 7.807 0 0 0 1.927-.811l2.922 1.915c.08.053.186.042.254-.026l1.567-1.566a.202.202 0 0 0 .03-.248l-1.067-1.758-.345.11a.12.12 0 0 1-.135-.047L17.371 15.8a6.347 6.347 0 1 1-8.255-8.674V5.488c-.401.14-.79.31-1.159.511l-.001-.002-2.99-1.96a.203.203 0 0 0-.132-.033Z" }) + ] + } + ); +}); + +export { SiKde as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.cjs new file mode 100644 index 000000000..a6b6ec025 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DC08D"; +const SiKdeneon = React__namespace.forwardRef(function SiKdeneon2({ title = "KDE neon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.832 12.017a3.85 3.96 0 0 1-3.85 3.96 3.85 3.96 0 0 1-3.848-3.96 3.85 3.96 0 0 1 3.849-3.96 3.85 3.96 0 0 1 3.849 3.96zM11.999 3.47a.723.723 0 0 0-.675.467A8.096 8.096 0 0 0 3.904 12a8.096 8.096 0 0 0 7.42 8.063.723.723 0 0 0 .676.467.723.723 0 0 0 .676-.468A8.096 8.096 0 0 0 20.096 12a8.096 8.096 0 0 0-7.421-8.064.723.723 0 0 0-.675-.467zm.648 1.044A7.518 7.518 0 0 1 19.517 12a7.518 7.518 0 0 1-6.871 7.485.723.723 0 0 0-.647-.401.723.723 0 0 0-.647.401A7.518 7.518 0 0 1 4.482 12a7.518 7.518 0 0 1 6.871-7.486.723.723 0 0 0 .646.401.723.723 0 0 0 .648-.401zM12 0a.723.723 0 0 0-.676.467A11.566 11.566 0 0 0 4.33 3.384a.723.723 0 0 0-.283-.06.723.723 0 0 0-.723.724.723.723 0 0 0 .056.28 11.566 11.566 0 0 0-2.913 6.996A.723.723 0 0 0 0 12a.723.723 0 0 0 .468.676 11.566 11.566 0 0 0 2.907 7.012.723.723 0 0 0-.05.263.723.723 0 0 0 .723.723.723.723 0 0 0 .265-.05 11.566 11.566 0 0 0 7.015 2.918.723.723 0 0 0 .672.457.723.723 0 0 0 .676-.467 11.566 11.566 0 0 0 7.012-2.907.723.723 0 0 0 .263.05.723.723 0 0 0 .723-.724.723.723 0 0 0-.05-.265 11.566 11.566 0 0 0 2.918-7.015A.723.723 0 0 0 24 12a.723.723 0 0 0-.468-.676 11.566 11.566 0 0 0-2.907-7.012.723.723 0 0 0 .05-.263.723.723 0 0 0-.724-.723.723.723 0 0 0-.265.05A11.566 11.566 0 0 0 12.671.458.723.723 0 0 0 12-.001zm-.652 1.035a.723.723 0 0 0 .652.41.723.723 0 0 0 .647-.401 10.988 10.988 0 0 1 6.632 2.739.723.723 0 0 0-.05.265.723.723 0 0 0 .722.723.723.723 0 0 0 .262-.05 10.988 10.988 0 0 1 2.751 6.628.723.723 0 0 0-.41.65.723.723 0 0 0 .401.648 10.988 10.988 0 0 1-2.738 6.632.723.723 0 0 0-.266-.05.723.723 0 0 0-.723.722.723.723 0 0 0 .05.262 10.988 10.988 0 0 1-6.627 2.752.723.723 0 0 0-.651-.411.723.723 0 0 0-.648.401 10.988 10.988 0 0 1-6.632-2.738.723.723 0 0 0 .05-.265.723.723 0 0 0-.722-.723.723.723 0 0 0-.262.05 10.988 10.988 0 0 1-2.742-6.633.723.723 0 0 0 .401-.646.723.723 0 0 0-.4-.647 10.988 10.988 0 0 1 2.752-6.628.723.723 0 0 0 .25.046.723.723 0 0 0 .724-.723.723.723 0 0 0-.049-.257 10.988 10.988 0 0 1 6.626-2.756z" }) + ] + } + ); +}); + +exports.default = SiKdeneon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.d.ts new file mode 100644 index 000000000..4834c4904 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DC08D"; +declare const SiKdeneon: IconType; +export { SiKdeneon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.mjs new file mode 100644 index 000000000..bec7b01de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeneon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DC08D"; +const SiKdeneon = React.forwardRef(function SiKdeneon2({ title = "KDE neon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.832 12.017a3.85 3.96 0 0 1-3.85 3.96 3.85 3.96 0 0 1-3.848-3.96 3.85 3.96 0 0 1 3.849-3.96 3.85 3.96 0 0 1 3.849 3.96zM11.999 3.47a.723.723 0 0 0-.675.467A8.096 8.096 0 0 0 3.904 12a8.096 8.096 0 0 0 7.42 8.063.723.723 0 0 0 .676.467.723.723 0 0 0 .676-.468A8.096 8.096 0 0 0 20.096 12a8.096 8.096 0 0 0-7.421-8.064.723.723 0 0 0-.675-.467zm.648 1.044A7.518 7.518 0 0 1 19.517 12a7.518 7.518 0 0 1-6.871 7.485.723.723 0 0 0-.647-.401.723.723 0 0 0-.647.401A7.518 7.518 0 0 1 4.482 12a7.518 7.518 0 0 1 6.871-7.486.723.723 0 0 0 .646.401.723.723 0 0 0 .648-.401zM12 0a.723.723 0 0 0-.676.467A11.566 11.566 0 0 0 4.33 3.384a.723.723 0 0 0-.283-.06.723.723 0 0 0-.723.724.723.723 0 0 0 .056.28 11.566 11.566 0 0 0-2.913 6.996A.723.723 0 0 0 0 12a.723.723 0 0 0 .468.676 11.566 11.566 0 0 0 2.907 7.012.723.723 0 0 0-.05.263.723.723 0 0 0 .723.723.723.723 0 0 0 .265-.05 11.566 11.566 0 0 0 7.015 2.918.723.723 0 0 0 .672.457.723.723 0 0 0 .676-.467 11.566 11.566 0 0 0 7.012-2.907.723.723 0 0 0 .263.05.723.723 0 0 0 .723-.724.723.723 0 0 0-.05-.265 11.566 11.566 0 0 0 2.918-7.015A.723.723 0 0 0 24 12a.723.723 0 0 0-.468-.676 11.566 11.566 0 0 0-2.907-7.012.723.723 0 0 0 .05-.263.723.723 0 0 0-.724-.723.723.723 0 0 0-.265.05A11.566 11.566 0 0 0 12.671.458.723.723 0 0 0 12-.001zm-.652 1.035a.723.723 0 0 0 .652.41.723.723 0 0 0 .647-.401 10.988 10.988 0 0 1 6.632 2.739.723.723 0 0 0-.05.265.723.723 0 0 0 .722.723.723.723 0 0 0 .262-.05 10.988 10.988 0 0 1 2.751 6.628.723.723 0 0 0-.41.65.723.723 0 0 0 .401.648 10.988 10.988 0 0 1-2.738 6.632.723.723 0 0 0-.266-.05.723.723 0 0 0-.723.722.723.723 0 0 0 .05.262 10.988 10.988 0 0 1-6.627 2.752.723.723 0 0 0-.651-.411.723.723 0 0 0-.648.401 10.988 10.988 0 0 1-6.632-2.738.723.723 0 0 0 .05-.265.723.723 0 0 0-.722-.723.723.723 0 0 0-.262.05 10.988 10.988 0 0 1-2.742-6.633.723.723 0 0 0 .401-.646.723.723 0 0 0-.4-.647 10.988 10.988 0 0 1 2.752-6.628.723.723 0 0 0 .25.046.723.723 0 0 0 .724-.723.723.723 0 0 0-.049-.257 10.988 10.988 0 0 1 6.626-2.756z" }) + ] + } + ); +}); + +export { SiKdeneon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.cjs new file mode 100644 index 000000000..5ffadf50a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#527EB2"; +const SiKdenlive = React__namespace.forwardRef(function SiKdenlive2({ title = "Kdenlive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m8.727 1.554 2.727 4.334v16.558h1.091V5.889l2.728-4.335zm-6 4.948V9.8h7.091c.003-.83 0-1.672-.006-2.498 0-.383-.356-.732-.718-.8H2.727zm12.303.001c-.402.024-.835.41-.834.837l-.014 12.619c0 .57.767 1.065 1.207.727l8.28-6.331c.441-.335.44-1.12 0-1.455l-8.265-6.287a.553.553 0 0 0-.374-.11zM-.001 12v3.299h9.818V12zm4.363 5.497v3.3h5.455v-3.3z" }) + ] + } + ); +}); + +exports.default = SiKdenlive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.d.ts new file mode 100644 index 000000000..c2284e073 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#527EB2"; +declare const SiKdenlive: IconType; +export { SiKdenlive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.mjs new file mode 100644 index 000000000..8a30425e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdenlive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#527EB2"; +const SiKdenlive = React.forwardRef(function SiKdenlive2({ title = "Kdenlive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m8.727 1.554 2.727 4.334v16.558h1.091V5.889l2.728-4.335zm-6 4.948V9.8h7.091c.003-.83 0-1.672-.006-2.498 0-.383-.356-.732-.718-.8H2.727zm12.303.001c-.402.024-.835.41-.834.837l-.014 12.619c0 .57.767 1.065 1.207.727l8.28-6.331c.441-.335.44-1.12 0-1.455l-8.265-6.287a.553.553 0 0 0-.374-.11zM-.001 12v3.299h9.818V12zm4.363 5.497v3.3h5.455v-3.3z" }) + ] + } + ); +}); + +export { SiKdenlive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.cjs new file mode 100644 index 000000000..e8fa8d3b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D99F3"; +const SiKdeplasma = React__namespace.forwardRef(function SiKdeplasma2({ title = "KDE Plasma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 0c-.831 0-1.5.669-1.5 1.5S5.169 3 6 3s1.5-.669 1.5-1.5S6.831 0 6 0m10.5 0-3 3L18 7.5 13.5 12l3 3 4.5-4.5 3-3zM2.25 9A2.245 2.245 0 0 0 0 11.25a2.245 2.245 0 0 0 2.25 2.25 2.245 2.245 0 0 0 2.25-2.25A2.245 2.245 0 0 0 2.25 9M9 18c-1.662 0-3 1.338-3 3s1.338 3 3 3 3-1.338 3-3-1.338-3-3-3" }) + ] + } + ); +}); + +exports.default = SiKdeplasma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.d.ts new file mode 100644 index 000000000..3e7ec7bea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D99F3"; +declare const SiKdeplasma: IconType; +export { SiKdeplasma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.mjs new file mode 100644 index 000000000..3663569dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKdeplasma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D99F3"; +const SiKdeplasma = React.forwardRef(function SiKdeplasma2({ title = "KDE Plasma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 0c-.831 0-1.5.669-1.5 1.5S5.169 3 6 3s1.5-.669 1.5-1.5S6.831 0 6 0m10.5 0-3 3L18 7.5 13.5 12l3 3 4.5-4.5 3-3zM2.25 9A2.245 2.245 0 0 0 0 11.25a2.245 2.245 0 0 0 2.25 2.25 2.245 2.245 0 0 0 2.25-2.25A2.245 2.245 0 0 0 2.25 9M9 18c-1.662 0-3 1.338-3 3s1.338 3 3 3 3-1.338 3-3-1.338-3-3-3" }) + ] + } + ); +}); + +export { SiKdeplasma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.cjs new file mode 100644 index 000000000..e9050b6e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC900"; +const SiKedro = React__namespace.forwardRef(function SiKedro2({ title = "Kedro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 0 12 12-12 12L0 12 12 0z" }) + ] + } + ); +}); + +exports.default = SiKedro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.d.ts new file mode 100644 index 000000000..e7e30bfc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC900"; +declare const SiKedro: IconType; +export { SiKedro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.mjs new file mode 100644 index 000000000..257d588a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKedro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC900"; +const SiKedro = React.forwardRef(function SiKedro2({ title = "Kedro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 0 12 12-12 12L0 12 12 0z" }) + ] + } + ); +}); + +export { SiKedro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.cjs new file mode 100644 index 000000000..df6563383 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009EE2"; +const SiKeenetic = React__namespace.forwardRef(function SiKeenetic2({ title = "Keenetic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.718 10.188 24 2.376h-6.588L9.788 9.812H4.33V2.376H0v19.248h4.33V14.14h7.623c3.2 0 5.412.706 6.588 2.07.706.8 1.035 1.883 1.035 3.248v2.165h4.33v-2.165c0-2.353-.706-4.424-2.07-6.024-1.46-1.647-3.483-2.776-6.118-3.247" }) + ] + } + ); +}); + +exports.default = SiKeenetic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.d.ts new file mode 100644 index 000000000..3f1f60788 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009EE2"; +declare const SiKeenetic: IconType; +export { SiKeenetic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.mjs new file mode 100644 index 000000000..06ffda2b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeenetic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009EE2"; +const SiKeenetic = React.forwardRef(function SiKeenetic2({ title = "Keenetic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.718 10.188 24 2.376h-6.588L9.788 9.812H4.33V2.376H0v19.248h4.33V14.14h7.623c3.2 0 5.412.706 6.588 2.07.706.8 1.035 1.883 1.035 3.248v2.165h4.33v-2.165c0-2.353-.706-4.424-2.07-6.024-1.46-1.647-3.483-2.776-6.118-3.247" }) + ] + } + ); +}); + +export { SiKeenetic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.cjs new file mode 100644 index 000000000..a7ea7b3d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E05735"; +const SiKeepachangelog = React__namespace.forwardRef(function SiKeepachangelog2({ title = "Keep a Changelog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.803.179C9.108.174 8.413.24 7.72.38 5.639.797 3.974 1.828 2.77 3.445 1.232 5.515.367 8.072.049 11.492c-.125 1.353.008 2.711.181 4.216a9.97 9.97 0 0 0 2.144 5.214c.933 1.157 2.004 1.917 3.272 2.324a11.972 11.972 0 0 0 3.336.574 6.14 6.14 0 0 0 .795-.034l.416-.041a92.49 92.49 0 0 0 1.721-.186 21.41 21.41 0 0 0 7.393-2.257c2.007-1.048 3.41-2.594 4.17-4.597.354-.93.523-1.713.523-2.445a4.585 4.585 0 0 0-.064-.762c-.405-2.379-1.235-4.428-2.555-6.264-1.634-2.276-3.288-3.878-5.202-5.045C13.993.86 11.89.193 9.803.18Zm-.439 1.064c.77-.021 1.56.058 2.376.237h-.001c2.73.597 5.137 2.002 7.154 4.173 2.288 2.46 3.591 5.045 3.988 7.899.071.528-.013 1.114-.096 1.622-.388 2.327-1.663 4.063-3.786 5.16a20.998 20.998 0 0 1-7.166 2.182c-.558.066-1.12.123-1.757.187l-.088.01a6.84 6.84 0 0 1-1.658-.03c-.69-.098-1.472-.21-2.224-.389-1.767-.42-3.069-1.622-3.978-3.658-.684-1.538-1.038-3.245-1.081-5.233a17.918 17.918 0 0 1 1.149-6.798c.62-1.641 1.517-3.453 3.462-4.418a8.747 8.747 0 0 1 3.706-.944zm1.108 1.47a7.745 7.745 0 0 0-2.24.41c-1.6.525-2.718 1.304-3.523 2.438-1.499 2.118-2.275 4.58-2.31 7.325a10.123 10.123 0 0 0 .803 4.388c1.081 2.569 3.053 4.064 5.707 4.326 2.796.27 5.543-.381 8.178-1.937a8.122 8.122 0 0 0 2.772-2.624 7.104 7.104 0 0 0 1.168-3.86c0-2.162-1.015-4.47-3.049-6.862a6.403 6.403 0 0 0-.704-.707c-2.333-2.006-4.567-2.966-6.802-2.898zm.099 1.035c1.492-.022 3.015.475 4.672 1.508 1.783 1.117 3.161 2.763 4.091 4.909.887 2.02.905 3.938.058 5.696a6.809 6.809 0 0 1-2.907 2.988c-2.253 1.232-4.315 1.776-6.458 1.713h-.022c-1.55.06-2.89-.32-4.098-1.163-.7-.488-1.241-1.202-1.655-2.183a10.94 10.94 0 0 1-.872-4.273A12.65 12.65 0 0 1 4.404 8.09a12.156 12.156 0 0 1 .874-1.622l.163-.27c.67-1.108 1.725-1.639 3.103-2.099a6.756 6.756 0 0 1 2.027-.35zm.03 1.62c-1.18.037-2.28.465-3.289 1.283-1.395 1.13-2.23 2.72-2.63 4.993a7.241 7.241 0 0 0 .676 4.613c1.062 2.054 2.8 3.11 5.026 3.05h.008c2.958-.155 5.11-1.249 6.573-3.347a5.605 5.605 0 0 0 1.06-3.245 5.814 5.814 0 0 0-.242-1.639c-.72-2.435-2.161-4.145-4.29-5.085-1.009-.445-1.974-.652-2.892-.624Zm.312 1.064c.77.008 1.547.191 2.35.55 1.862.833 3.073 2.332 3.598 4.462.526 2.13-.27 4.205-2.066 5.423-1.479.999-2.93 1.447-4.438 1.367h-.04c-1.004.08-1.994-.226-2.943-.91a3.668 3.668 0 0 1-1.29-1.72 7.64 7.64 0 0 1-.514-2.727 8.474 8.474 0 0 1 .747-3.38c.676-1.556 1.724-2.503 3.215-2.893.46-.12.919-.178 1.38-.172zM9.455 8.758v6.882h1.155v-1.908l1.68 1.908h1.462l-2.273-2.5 1.871-1.958h-1.509l-1.231 1.337V8.758Z" }) + ] + } + ); +}); + +exports.default = SiKeepachangelog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.d.ts new file mode 100644 index 000000000..3ad6a2e1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E05735"; +declare const SiKeepachangelog: IconType; +export { SiKeepachangelog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.mjs new file mode 100644 index 000000000..f8cd15178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepachangelog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E05735"; +const SiKeepachangelog = React.forwardRef(function SiKeepachangelog2({ title = "Keep a Changelog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.803.179C9.108.174 8.413.24 7.72.38 5.639.797 3.974 1.828 2.77 3.445 1.232 5.515.367 8.072.049 11.492c-.125 1.353.008 2.711.181 4.216a9.97 9.97 0 0 0 2.144 5.214c.933 1.157 2.004 1.917 3.272 2.324a11.972 11.972 0 0 0 3.336.574 6.14 6.14 0 0 0 .795-.034l.416-.041a92.49 92.49 0 0 0 1.721-.186 21.41 21.41 0 0 0 7.393-2.257c2.007-1.048 3.41-2.594 4.17-4.597.354-.93.523-1.713.523-2.445a4.585 4.585 0 0 0-.064-.762c-.405-2.379-1.235-4.428-2.555-6.264-1.634-2.276-3.288-3.878-5.202-5.045C13.993.86 11.89.193 9.803.18Zm-.439 1.064c.77-.021 1.56.058 2.376.237h-.001c2.73.597 5.137 2.002 7.154 4.173 2.288 2.46 3.591 5.045 3.988 7.899.071.528-.013 1.114-.096 1.622-.388 2.327-1.663 4.063-3.786 5.16a20.998 20.998 0 0 1-7.166 2.182c-.558.066-1.12.123-1.757.187l-.088.01a6.84 6.84 0 0 1-1.658-.03c-.69-.098-1.472-.21-2.224-.389-1.767-.42-3.069-1.622-3.978-3.658-.684-1.538-1.038-3.245-1.081-5.233a17.918 17.918 0 0 1 1.149-6.798c.62-1.641 1.517-3.453 3.462-4.418a8.747 8.747 0 0 1 3.706-.944zm1.108 1.47a7.745 7.745 0 0 0-2.24.41c-1.6.525-2.718 1.304-3.523 2.438-1.499 2.118-2.275 4.58-2.31 7.325a10.123 10.123 0 0 0 .803 4.388c1.081 2.569 3.053 4.064 5.707 4.326 2.796.27 5.543-.381 8.178-1.937a8.122 8.122 0 0 0 2.772-2.624 7.104 7.104 0 0 0 1.168-3.86c0-2.162-1.015-4.47-3.049-6.862a6.403 6.403 0 0 0-.704-.707c-2.333-2.006-4.567-2.966-6.802-2.898zm.099 1.035c1.492-.022 3.015.475 4.672 1.508 1.783 1.117 3.161 2.763 4.091 4.909.887 2.02.905 3.938.058 5.696a6.809 6.809 0 0 1-2.907 2.988c-2.253 1.232-4.315 1.776-6.458 1.713h-.022c-1.55.06-2.89-.32-4.098-1.163-.7-.488-1.241-1.202-1.655-2.183a10.94 10.94 0 0 1-.872-4.273A12.65 12.65 0 0 1 4.404 8.09a12.156 12.156 0 0 1 .874-1.622l.163-.27c.67-1.108 1.725-1.639 3.103-2.099a6.756 6.756 0 0 1 2.027-.35zm.03 1.62c-1.18.037-2.28.465-3.289 1.283-1.395 1.13-2.23 2.72-2.63 4.993a7.241 7.241 0 0 0 .676 4.613c1.062 2.054 2.8 3.11 5.026 3.05h.008c2.958-.155 5.11-1.249 6.573-3.347a5.605 5.605 0 0 0 1.06-3.245 5.814 5.814 0 0 0-.242-1.639c-.72-2.435-2.161-4.145-4.29-5.085-1.009-.445-1.974-.652-2.892-.624Zm.312 1.064c.77.008 1.547.191 2.35.55 1.862.833 3.073 2.332 3.598 4.462.526 2.13-.27 4.205-2.066 5.423-1.479.999-2.93 1.447-4.438 1.367h-.04c-1.004.08-1.994-.226-2.943-.91a3.668 3.668 0 0 1-1.29-1.72 7.64 7.64 0 0 1-.514-2.727 8.474 8.474 0 0 1 .747-3.38c.676-1.556 1.724-2.503 3.215-2.893.46-.12.919-.178 1.38-.172zM9.455 8.758v6.882h1.155v-1.908l1.68 1.908h1.462l-2.273-2.5 1.871-1.958h-1.509l-1.231 1.337V8.758Z" }) + ] + } + ); +}); + +export { SiKeepachangelog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.cjs new file mode 100644 index 000000000..27bea6d68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6CAC4D"; +const SiKeepassxc = React__namespace.forwardRef(function SiKeepassxc2({ title = "KeePassXC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.378 0 0 5.378 0 12c0 6.623 5.378 12 12 12 6.623 0 12-5.377 12-12 0-6.622-5.377-12-12-12zm0 .791a11.203 11.203 0 0 1 11.209 11.21A11.202 11.202 0 0 1 12 23.208 11.203 11.203 0 0 1 .791 12 11.203 11.203 0 0 1 12.001.791zm0 1.871a9.356 9.356 0 0 0-1.705.162A1.746 1.746 0 0 0 12 4.95a1.746 1.746 0 0 0 1.706-2.126A9.342 9.342 0 0 0 12 2.662zM7.2 4a9.338 9.338 0 0 0-4.54 8 9.338 9.338 0 0 0 18.677 0 9.338 9.338 0 0 0-4.54-7.998 4.888 4.888 0 0 1-2.701 5.365l-.12 2.066 1.482 1.483-1.483 1.482.989.989-.989.988.12 1.857L12 20.328l-2.096-2.096V9.367A4.89 4.89 0 0 1 7.2 4zm3.4 6.543v6.99h.7v-6.99z" }) + ] + } + ); +}); + +exports.default = SiKeepassxc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.d.ts new file mode 100644 index 000000000..205a225ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6CAC4D"; +declare const SiKeepassxc: IconType; +export { SiKeepassxc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.mjs new file mode 100644 index 000000000..032519c69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeepassxc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6CAC4D"; +const SiKeepassxc = React.forwardRef(function SiKeepassxc2({ title = "KeePassXC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.378 0 0 5.378 0 12c0 6.623 5.378 12 12 12 6.623 0 12-5.377 12-12 0-6.622-5.377-12-12-12zm0 .791a11.203 11.203 0 0 1 11.209 11.21A11.202 11.202 0 0 1 12 23.208 11.203 11.203 0 0 1 .791 12 11.203 11.203 0 0 1 12.001.791zm0 1.871a9.356 9.356 0 0 0-1.705.162A1.746 1.746 0 0 0 12 4.95a1.746 1.746 0 0 0 1.706-2.126A9.342 9.342 0 0 0 12 2.662zM7.2 4a9.338 9.338 0 0 0-4.54 8 9.338 9.338 0 0 0 18.677 0 9.338 9.338 0 0 0-4.54-7.998 4.888 4.888 0 0 1-2.701 5.365l-.12 2.066 1.482 1.483-1.483 1.482.989.989-.989.988.12 1.857L12 20.328l-2.096-2.096V9.367A4.89 4.89 0 0 1 7.2 4zm3.4 6.543v6.99h.7v-6.99z" }) + ] + } + ); +}); + +export { SiKeepassxc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.cjs new file mode 100644 index 000000000..ba6133fcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC700"; +const SiKeeper = React__namespace.forwardRef(function SiKeeper2({ title = "Keeper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm1.365 1.788 1.854.472v2.597l2.073-1.704 1.537 1.135-3.949 3.247-1.515-.008zm-9.067 15.54L2.445 15.75V8.7L4.298 7zm3.631 2.22L6.076 21.16V3l1.853 1.614zm9.363 1.555-2.073-1.705v2.597l-1.854.473v-5.74l1.515-.007 3.95 3.246zm2.733-2.473-4.604-3.674h-3.826v7.512H9.742v-9.365h6.329l5.11 4.078zm2.62-8.329-2.059 1.7 2.059 1.698-1.181 1.431L17.67 12l3.793-3.13zm-6.574.6H9.742V1.534h1.853v7.512h3.826l4.604-3.674 1.156 1.449z" }) + ] + } + ); +}); + +exports.default = SiKeeper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.d.ts new file mode 100644 index 000000000..66a1848ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC700"; +declare const SiKeeper: IconType; +export { SiKeeper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.mjs new file mode 100644 index 000000000..8dde869e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC700"; +const SiKeeper = React.forwardRef(function SiKeeper2({ title = "Keeper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm1.365 1.788 1.854.472v2.597l2.073-1.704 1.537 1.135-3.949 3.247-1.515-.008zm-9.067 15.54L2.445 15.75V8.7L4.298 7zm3.631 2.22L6.076 21.16V3l1.853 1.614zm9.363 1.555-2.073-1.705v2.597l-1.854.473v-5.74l1.515-.007 3.95 3.246zm2.733-2.473-4.604-3.674h-3.826v7.512H9.742v-9.365h6.329l5.11 4.078zm2.62-8.329-2.059 1.7 2.059 1.698-1.181 1.431L17.67 12l3.793-3.13zm-6.574.6H9.742V1.534h1.853v7.512h3.826l4.604-3.674 1.156 1.449z" }) + ] + } + ); +}); + +export { SiKeeper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.cjs new file mode 100644 index 000000000..f55a6562a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#528BFF"; +const SiKeeweb = React__namespace.forwardRef(function SiKeeweb2({ title = "KeeWeb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.4138 24c-.2293-.0004-.4838-.0966-.7462-.2342-.5598-.2937-.9436-.665-.6231-1.2759l7.786-14.8424a58 58 0 0 1-.2224-.1157C9.8007 6.059 8.5551 3.8816 9.5635 1.9594c1.159-2.2094 4.7486-2.6104 8.0176-.8956 3.269 1.7149 4.9794 4.8961 3.8204 7.1056-.9968 1.9001-3.5993 2.0696-6.2161.6968a85 85 0 0 0-.3215-.1672L7.0716 23.5533c-.1703.3246-.3979.4471-.6578.4467m-1.4335-3.1798-.1474-.0773-.0328-.0171-1.9943-1.0463-.4808-.2522a.1664.1664 0 0 1-.0701-.2247l.6312-1.2032a.1665.1665 0 0 1 .2235-.0707l.0013.0006.9615.5044a.1665.1665 0 0 0 .2247-.0701l.6312-1.2031a.1665.1665 0 0 0-.0701-.2248l-.4808-.2522-.4807-.2522a.1664.1664 0 0 1-.0701-.2247l.6311-1.2033a.1664.1664 0 0 1 .2247-.07l.4809.2522 1.2514.6565.7757.4069.001.0005.1465.0768-.663 1.2636-.0456.087v.0002l-.9405 1.7927-.0957.1823-.5355 1.0208-.0003.0007zm3.1515-6.0076-.1474-.0774-.7002-.3673-.5529-.29a.1665.1665 0 0 1-.0702-.2247l.6313-1.2032a.1665.1665 0 0 1 .2247-.0702l.5529.2901.7002.3674.001.0004.1465.077-.0774.1473-.3155.6016-.3156.6016-.0004.0006zm10.302-7.121c.4153.0008.74-.1664.9557-.5777.6575-1.2533-.5588-3.1869-2.7166-4.3188s-4.44-1.0336-5.0974.2197 1.1712 2.0762 3.329 3.2082c1.4498.7605 2.6792 1.467 3.5294 1.4687" }) + ] + } + ); +}); + +exports.default = SiKeeweb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.d.ts new file mode 100644 index 000000000..cde69fddc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#528BFF"; +declare const SiKeeweb: IconType; +export { SiKeeweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.mjs new file mode 100644 index 000000000..1c21cfe2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeeweb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#528BFF"; +const SiKeeweb = React.forwardRef(function SiKeeweb2({ title = "KeeWeb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.4138 24c-.2293-.0004-.4838-.0966-.7462-.2342-.5598-.2937-.9436-.665-.6231-1.2759l7.786-14.8424a58 58 0 0 1-.2224-.1157C9.8007 6.059 8.5551 3.8816 9.5635 1.9594c1.159-2.2094 4.7486-2.6104 8.0176-.8956 3.269 1.7149 4.9794 4.8961 3.8204 7.1056-.9968 1.9001-3.5993 2.0696-6.2161.6968a85 85 0 0 0-.3215-.1672L7.0716 23.5533c-.1703.3246-.3979.4471-.6578.4467m-1.4335-3.1798-.1474-.0773-.0328-.0171-1.9943-1.0463-.4808-.2522a.1664.1664 0 0 1-.0701-.2247l.6312-1.2032a.1665.1665 0 0 1 .2235-.0707l.0013.0006.9615.5044a.1665.1665 0 0 0 .2247-.0701l.6312-1.2031a.1665.1665 0 0 0-.0701-.2248l-.4808-.2522-.4807-.2522a.1664.1664 0 0 1-.0701-.2247l.6311-1.2033a.1664.1664 0 0 1 .2247-.07l.4809.2522 1.2514.6565.7757.4069.001.0005.1465.0768-.663 1.2636-.0456.087v.0002l-.9405 1.7927-.0957.1823-.5355 1.0208-.0003.0007zm3.1515-6.0076-.1474-.0774-.7002-.3673-.5529-.29a.1665.1665 0 0 1-.0702-.2247l.6313-1.2032a.1665.1665 0 0 1 .2247-.0702l.5529.2901.7002.3674.001.0004.1465.077-.0774.1473-.3155.6016-.3156.6016-.0004.0006zm10.302-7.121c.4153.0008.74-.1664.9557-.5777.6575-1.2533-.5588-3.1869-2.7166-4.3188s-4.44-1.0336-5.0974.2197 1.1712 2.0762 3.329 3.2082c1.4498.7605 2.6792 1.467 3.5294 1.4687" }) + ] + } + ); +}); + +export { SiKeeweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.cjs new file mode 100644 index 000000000..146409874 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#545C64"; +const SiKenmei = React__namespace.forwardRef(function SiKenmei2({ title = "Kenmei", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.3169 1.9395a.7508.7508 0 0 0-.4372.1446c-.0524.0372-.0968.0836-.142.1289a.751.751 0 0 0-.2203.5288l.0037 10.1784a.7466.7466 0 0 0 .5219.7134l3.7254 1.184a.752.752 0 0 0 .669-.109c.0516-.0372.0952-.084.1401-.1287a.7547.7547 0 0 0 .2196-.5295V3.8719a.746.746 0 0 0-.5219-.7127L4.5474 1.974a.751.751 0 0 0-.2305-.0344zm.2004 1.089L7.796 4.0702v4.3343L4.5187 7.347Zm5.4325.194c-.0577.0413-.107.0925-.157.1426a.8924.8924 0 0 0-.2604.6257l.0032 10.1841c0 .6565-.2028 1.2648-.5433 1.627a1.1456 1.1456 0 0 1-.1163.0984.9662.9662 0 0 1-.5783.1877 1.3904 1.3904 0 0 1-.4324-.0758L.6719 13.6843a.4568.4568 0 0 0-.1446-.023.4768.4768 0 0 0-.3348.1388l-.0543.0545a.4725.4725 0 0 0 .189.7834l7.1909 2.326c.2344.08.48.1223.7277.1252.4047 0 .799-.128 1.1264-.366.1113-.079.2086-.1748.3054-.2704.2787-.289.492-.6345.6258-1.013a3.8692 3.8692 0 0 0 .2259-1.3142V12.683l4.4543 1.4212v1.856a6.1935 6.1935 0 0 1-.0982 1.2152c-.0626.301-.1564.524-.279.6635a.6105.6105 0 0 1-.0627.0481.575.575 0 0 1-.3197.0795c-.229 0-.5288-.0789-.8905-.2353a.4718.4718 0 0 0-.5213.0995l-.0551.0545a.4673.4673 0 0 0-.0995.1464.4737.4737 0 0 0 .2453.6214c.4806.2078.9086.3129 1.2722.3129a1.464 1.464 0 0 0 .8324-.2347c.1079-.068.1993-.1568.289-.2465.2685-.269.4531-.6478.5632-1.1584a6.7225 6.7225 0 0 0 .1265-1.418L15.983 5.3744a.8886.8886 0 0 0-.6226-.8473l-4.6196-1.4343c-.2607-.083-.5563-.0401-.791.1295zm.5789.8654 4.455 1.3836v2.4762L10.5298 6.526zm6.7573 2.963a.3836.3836 0 0 0-.2822.1108l-.0546.0539c-.122.1245-.1695.3428-.1157.5512l2.5707 10.4795c.0701.2848.3067.3311.6352.395l.0238.0048 1.9312.1346a.3196.3196 0 0 0 .2253-.1063l.0544-.0551a.6258.6258 0 0 0 .1626-.5538L19.8642 7.5867c-.0363-.149-.0952-.2366-.1972-.2948-.102-.0582-.227-.0839-.4617-.1051zm-6.7573.5414 4.455 1.4205v4.0325l-4.4526-1.426zm-6.0114.818 3.278 1.0581v4.2941l-3.2748-1.0407ZM15.6896 18.8l-.0545.0544a.4656.4656 0 0 0-.1151.1878.4743.4743 0 0 0 .3048.5952l7.503 2.3999a.4574.4574 0 0 0 .1453.023.4743.4743 0 0 0 .3341-.1388l.0546-.055a.4612.4612 0 0 0 .115-.1878.4687.4687 0 0 0-.0288-.3599.4681.4681 0 0 0-.2753-.234l-7.5031-2.4005a.4738.4738 0 0 0-.48.1157z" }) + ] + } + ); +}); + +exports.default = SiKenmei; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.d.ts new file mode 100644 index 000000000..b00fca03f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#545C64"; +declare const SiKenmei: IconType; +export { SiKenmei as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.mjs new file mode 100644 index 000000000..0030a5668 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKenmei.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#545C64"; +const SiKenmei = React.forwardRef(function SiKenmei2({ title = "Kenmei", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.3169 1.9395a.7508.7508 0 0 0-.4372.1446c-.0524.0372-.0968.0836-.142.1289a.751.751 0 0 0-.2203.5288l.0037 10.1784a.7466.7466 0 0 0 .5219.7134l3.7254 1.184a.752.752 0 0 0 .669-.109c.0516-.0372.0952-.084.1401-.1287a.7547.7547 0 0 0 .2196-.5295V3.8719a.746.746 0 0 0-.5219-.7127L4.5474 1.974a.751.751 0 0 0-.2305-.0344zm.2004 1.089L7.796 4.0702v4.3343L4.5187 7.347Zm5.4325.194c-.0577.0413-.107.0925-.157.1426a.8924.8924 0 0 0-.2604.6257l.0032 10.1841c0 .6565-.2028 1.2648-.5433 1.627a1.1456 1.1456 0 0 1-.1163.0984.9662.9662 0 0 1-.5783.1877 1.3904 1.3904 0 0 1-.4324-.0758L.6719 13.6843a.4568.4568 0 0 0-.1446-.023.4768.4768 0 0 0-.3348.1388l-.0543.0545a.4725.4725 0 0 0 .189.7834l7.1909 2.326c.2344.08.48.1223.7277.1252.4047 0 .799-.128 1.1264-.366.1113-.079.2086-.1748.3054-.2704.2787-.289.492-.6345.6258-1.013a3.8692 3.8692 0 0 0 .2259-1.3142V12.683l4.4543 1.4212v1.856a6.1935 6.1935 0 0 1-.0982 1.2152c-.0626.301-.1564.524-.279.6635a.6105.6105 0 0 1-.0627.0481.575.575 0 0 1-.3197.0795c-.229 0-.5288-.0789-.8905-.2353a.4718.4718 0 0 0-.5213.0995l-.0551.0545a.4673.4673 0 0 0-.0995.1464.4737.4737 0 0 0 .2453.6214c.4806.2078.9086.3129 1.2722.3129a1.464 1.464 0 0 0 .8324-.2347c.1079-.068.1993-.1568.289-.2465.2685-.269.4531-.6478.5632-1.1584a6.7225 6.7225 0 0 0 .1265-1.418L15.983 5.3744a.8886.8886 0 0 0-.6226-.8473l-4.6196-1.4343c-.2607-.083-.5563-.0401-.791.1295zm.5789.8654 4.455 1.3836v2.4762L10.5298 6.526zm6.7573 2.963a.3836.3836 0 0 0-.2822.1108l-.0546.0539c-.122.1245-.1695.3428-.1157.5512l2.5707 10.4795c.0701.2848.3067.3311.6352.395l.0238.0048 1.9312.1346a.3196.3196 0 0 0 .2253-.1063l.0544-.0551a.6258.6258 0 0 0 .1626-.5538L19.8642 7.5867c-.0363-.149-.0952-.2366-.1972-.2948-.102-.0582-.227-.0839-.4617-.1051zm-6.7573.5414 4.455 1.4205v4.0325l-4.4526-1.426zm-6.0114.818 3.278 1.0581v4.2941l-3.2748-1.0407ZM15.6896 18.8l-.0545.0544a.4656.4656 0 0 0-.1151.1878.4743.4743 0 0 0 .3048.5952l7.503 2.3999a.4574.4574 0 0 0 .1453.023.4743.4743 0 0 0 .3341-.1388l.0546-.055a.4612.4612 0 0 0 .115-.1878.4687.4687 0 0 0-.0288-.3599.4681.4681 0 0 0-.2753-.234l-7.5031-2.4005a.4738.4738 0 0 0-.48.1157z" }) + ] + } + ); +}); + +export { SiKenmei as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.cjs new file mode 100644 index 000000000..738c774d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F05A22"; +const SiKentico = React__namespace.forwardRef(function SiKentico2({ title = "Kentico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm11.65 3.417c.698 0 1.566.216 1.566 1.279v2.72c0 1.5-2.433 1.533-2.433.018V3.63a.146.146 0 0 1 .118-.142c.15-.028.432-.072.75-.071zm5.508 1.76a.146.146 0 0 1 .079.026c.408.277 1.875 1.397.782 2.49L16.091 9.62c-1.06 1.06-2.803-.64-1.733-1.707l2.695-2.695a.146.146 0 0 1 .105-.041zm-10.27.4c.263.01.538.123.811.396l1.928 1.93c1.061 1.059-.64 2.803-1.707 1.73L5.226 6.94a.142.142 0 0 1-.018-.182c.209-.307.891-1.208 1.68-1.18zm5.104 4.65a1.773 1.773 0 0 1 .008 0A1.773 1.773 0 1 1 10.227 12a1.773 1.773 0 0 1 1.765-1.773zm-7.291.55h2.728c1.499 0 1.532 2.433.017 2.433h-3.81a.144.144 0 0 1-.142-.117c-.092-.48-.337-2.315 1.207-2.315zm11.859 0h3.802a.142.142 0 0 1 .142.117c.093.48.338 2.316-1.206 2.316h-2.72c-1.5 0-1.533-2.433-.018-2.433zm-1.238 3.24c.259.002.523.102.756.337l2.695 2.692a.146.146 0 0 1 .017.184c-.278.41-1.398 1.876-2.49.784l-1.929-1.93c-.829-.827.028-2.072.951-2.066zm-6.657.013c.93-.011 1.811 1.209.975 2.044l-2.694 2.692a.144.144 0 0 1-.184.018c-.408-.278-1.876-1.398-.783-2.49l1.928-1.93a1.08 1.08 0 0 1 .758-.334zm3.334 1.403c.608-.007 1.217.364 1.217 1.122v3.802a.144.144 0 0 1-.118.14c-.48.093-2.316.338-2.316-1.206v-2.72c0-.749.609-1.132 1.217-1.138z" }) + ] + } + ); +}); + +exports.default = SiKentico; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.d.ts new file mode 100644 index 000000000..715622c41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F05A22"; +declare const SiKentico: IconType; +export { SiKentico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.mjs new file mode 100644 index 000000000..c78f728a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKentico.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F05A22"; +const SiKentico = React.forwardRef(function SiKentico2({ title = "Kentico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm11.65 3.417c.698 0 1.566.216 1.566 1.279v2.72c0 1.5-2.433 1.533-2.433.018V3.63a.146.146 0 0 1 .118-.142c.15-.028.432-.072.75-.071zm5.508 1.76a.146.146 0 0 1 .079.026c.408.277 1.875 1.397.782 2.49L16.091 9.62c-1.06 1.06-2.803-.64-1.733-1.707l2.695-2.695a.146.146 0 0 1 .105-.041zm-10.27.4c.263.01.538.123.811.396l1.928 1.93c1.061 1.059-.64 2.803-1.707 1.73L5.226 6.94a.142.142 0 0 1-.018-.182c.209-.307.891-1.208 1.68-1.18zm5.104 4.65a1.773 1.773 0 0 1 .008 0A1.773 1.773 0 1 1 10.227 12a1.773 1.773 0 0 1 1.765-1.773zm-7.291.55h2.728c1.499 0 1.532 2.433.017 2.433h-3.81a.144.144 0 0 1-.142-.117c-.092-.48-.337-2.315 1.207-2.315zm11.859 0h3.802a.142.142 0 0 1 .142.117c.093.48.338 2.316-1.206 2.316h-2.72c-1.5 0-1.533-2.433-.018-2.433zm-1.238 3.24c.259.002.523.102.756.337l2.695 2.692a.146.146 0 0 1 .017.184c-.278.41-1.398 1.876-2.49.784l-1.929-1.93c-.829-.827.028-2.072.951-2.066zm-6.657.013c.93-.011 1.811 1.209.975 2.044l-2.694 2.692a.144.144 0 0 1-.184.018c-.408-.278-1.876-1.398-.783-2.49l1.928-1.93a1.08 1.08 0 0 1 .758-.334zm3.334 1.403c.608-.007 1.217.364 1.217 1.122v3.802a.144.144 0 0 1-.118.14c-.48.093-2.316.338-2.316-1.206v-2.72c0-.749.609-1.132 1.217-1.138z" }) + ] + } + ); +}); + +export { SiKentico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.cjs new file mode 100644 index 000000000..35f5c3b52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF914D"; +const SiKeploy = React__namespace.forwardRef(function SiKeploy2({ title = "Keploy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.438 0C6.8952-.0029 6.3924.2006 5.954.6725c-.6953.7482-.354 1.7371.5356 2.7936 2.751.6529 6.3299 2.3982 9.4374 4.8783C14.4729 6.0506 10.37.0158 7.4381 0ZM4.2622 3.5776c-1.304.0225-2.2213.4728-2.4983 1.4363C.7452 8.5564 13.576 10.6173 13.576 10.6173c.269.0468.4741.2807.4741.5625 0 .292-.22.5298-.5034.564-7.508-.303-8.8518 4.309-8.8518 4.309C3.2689 20.6625 7.6858 24 7.6858 24c-2.1293-8.5433 7.0439-4.9774 7.0439-4.9774 7.5638 2.5793 7.8292.526 7.4649-1.0566-.0027-.0127-.0037-.0256-.0067-.0386C20.4495 9.987 9.3782 3.4895 4.262 3.5776Zm14.3353 10.5971c.2358-.0018.524.1173.7714.3406.396.3576.5366.8461.3148 1.091-.222.2447-.723.1535-1.1193-.2035-.3954-.3573-.536-.8458-.3141-1.0906.0832-.0918.2058-.1364.3472-.1375z" }) + ] + } + ); +}); + +exports.default = SiKeploy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.d.ts new file mode 100644 index 000000000..178d6b5ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF914D"; +declare const SiKeploy: IconType; +export { SiKeploy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.mjs new file mode 100644 index 000000000..e67464a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeploy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF914D"; +const SiKeploy = React.forwardRef(function SiKeploy2({ title = "Keploy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.438 0C6.8952-.0029 6.3924.2006 5.954.6725c-.6953.7482-.354 1.7371.5356 2.7936 2.751.6529 6.3299 2.3982 9.4374 4.8783C14.4729 6.0506 10.37.0158 7.4381 0ZM4.2622 3.5776c-1.304.0225-2.2213.4728-2.4983 1.4363C.7452 8.5564 13.576 10.6173 13.576 10.6173c.269.0468.4741.2807.4741.5625 0 .292-.22.5298-.5034.564-7.508-.303-8.8518 4.309-8.8518 4.309C3.2689 20.6625 7.6858 24 7.6858 24c-2.1293-8.5433 7.0439-4.9774 7.0439-4.9774 7.5638 2.5793 7.8292.526 7.4649-1.0566-.0027-.0127-.0037-.0256-.0067-.0386C20.4495 9.987 9.3782 3.4895 4.262 3.5776Zm14.3353 10.5971c.2358-.0018.524.1173.7714.3406.396.3576.5366.8461.3148 1.091-.222.2447-.723.1535-1.1193-.2035-.3954-.3573-.536-.8458-.3141-1.0906.0832-.0918.2058-.1364.3472-.1375z" }) + ] + } + ); +}); + +export { SiKeploy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.cjs new file mode 100644 index 000000000..cfe6da0c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D00000"; +const SiKeras = React__namespace.forwardRef(function SiKeras2({ title = "Keras", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 0H0v24h24V0zM8.45 5.16l.2.17v6.24l6.46-6.45h1.96l.2.4-5.14 5.1 5.47 7.94-.2.3h-1.94l-4.65-6.88-2.16 2.08v4.6l-.19.2H7l-.2-.2V5.33l.17-.17h1.48z" }) + ] + } + ); +}); + +exports.default = SiKeras; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.d.ts new file mode 100644 index 000000000..8fe2a2a6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D00000"; +declare const SiKeras: IconType; +export { SiKeras as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.mjs new file mode 100644 index 000000000..1158059b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeras.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D00000"; +const SiKeras = React.forwardRef(function SiKeras2({ title = "Keras", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 0H0v24h24V0zM8.45 5.16l.2.17v6.24l6.46-6.45h1.96l.2.4-5.14 5.1 5.47 7.94-.2.3h-1.94l-4.65-6.88-2.16 2.08v4.6l-.19.2H7l-.2-.2V5.33l.17-.17h1.48z" }) + ] + } + ); +}); + +export { SiKeras as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.cjs new file mode 100644 index 000000000..8c15c58ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#33A0FF"; +const SiKeybase = React__namespace.forwardRef(function SiKeybase2({ title = "Keybase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.445 21.372a.953.953 0 1 1-.955-.954c.524 0 .951.43.951.955m5.923-.001a.953.953 0 1 1-.958-.954c.526 0 .954.43.954.955m4.544-9.16l-.156-.204c-.046-.06-.096-.116-.143-.175-.045-.06-.094-.113-.141-.169-.104-.12-.21-.239-.32-.359l-.075-.08-.091-.099-.135-.13c-.015-.019-.032-.035-.05-.054a10.87 10.87 0 0 0-3.955-2.504l-.23-.078.035-.083a4.109 4.109 0 0 0-.12-3.255 4.11 4.11 0 0 0-2.438-2.16c-.656-.216-1.23-.319-1.712-.305-.033-.105-.1-.577.496-1.848L10.662 0l-.287.399c-.33.455-.648.895-.945 1.328a1.857 1.857 0 0 0-1.245-.58L6.79 1.061h-.012c-.033-.003-.07-.003-.104-.003-.99 0-1.81.771-1.87 1.755l-.088 1.402v.003a1.876 1.876 0 0 0 1.755 1.98l1.002.06c-.065.84.073 1.62.405 2.306a11.28 11.28 0 0 0-3.66 2.484C.912 14.392.912 18.052.912 20.995v1.775l1.305-1.387c.266.93.652 1.807 1.145 2.615H5.06a9.197 9.197 0 0 1-1.68-3.848l1.913-2.03-.985 3.09 1.74-1.267c3.075-2.234 6.745-2.75 10.91-1.53 1.806.533 3.56.04 4.474-1.256l.104-.165c.09.498.14.998.14 1.496 0 1.563-.254 3.687-1.38 5.512h1.612c.776-1.563 1.181-3.432 1.181-5.512-.001-2.2-.786-4.421-2.184-6.274zM8.894 6.192c.122-1.002.577-1.949 1.23-2.97a1.36 1.36 0 0 0 1.283.749c.216-.008.604.025 1.233.232a2.706 2.706 0 0 1 1.608 1.425c.322.681.349 1.442.079 2.15a2.69 2.69 0 0 1-.806 1.108l-.408-.502-.002-.003a1.468 1.468 0 0 0-2.06-.205c-.334.27-.514.66-.534 1.058-1.2-.54-1.8-1.643-1.628-3.04zm4.304 5.11l-.52.425a.228.228 0 0 1-.323-.032l-.11-.135a.238.238 0 0 1 .034-.334l.51-.42-1.056-1.299a.307.307 0 0 1 .044-.436.303.303 0 0 1 .435.041l2.963 3.646a.309.309 0 0 1-.168.499.315.315 0 0 1-.31-.104l-.295-.365-1.045.854a.244.244 0 0 1-.154.055.237.237 0 0 1-.186-.09l-.477-.58a.24.24 0 0 1 .035-.335l1.05-.858-.425-.533zM7.752 4.866l-1.196-.075a.463.463 0 0 1-.435-.488l.09-1.4a.462.462 0 0 1 .461-.437h.024l1.401.091a.459.459 0 0 1 .433.488l-.007.101a9.27 9.27 0 0 0-.773 1.72zm12.525 11.482c-.565.805-1.687 1.08-2.924.718-3.886-1.141-7.397-.903-10.469.7l1.636-5.122-5.29 5.609c.098-3.762 2.452-6.967 5.757-8.312.471.373 1.034.66 1.673.841.16.044.322.074.48.102a1.41 1.41 0 0 0 .21 1.408l.075.09c-.172.45-.105.975.221 1.374l.476.582a1.39 1.39 0 0 0 1.079.513c.32 0 .635-.111.886-.314l.285-.232c.174.074.367.113.566.113a1.45 1.45 0 0 0 .928-.326c.623-.51.72-1.435.209-2.06l-1.67-2.057a4.07 4.07 0 0 0 .408-.38c.135.036.27.077.4.12.266.096.533.197.795.314a9.55 9.55 0 0 1 2.77 1.897c.03.03.06.055.086.083l.17.176c.038.039.076.079.11.12.08.085.16.175.24.267l.126.15c.045.053.086.104.13.16l.114.15c.04.05.079.102.117.154.838 1.149.987 2.329.404 3.157v.005zM7.718 4.115l-.835-.05.053-.836.834.051z" }) + ] + } + ); +}); + +exports.default = SiKeybase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.d.ts new file mode 100644 index 000000000..8e124c47e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#33A0FF"; +declare const SiKeybase: IconType; +export { SiKeybase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.mjs new file mode 100644 index 000000000..a0a22837c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeybase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#33A0FF"; +const SiKeybase = React.forwardRef(function SiKeybase2({ title = "Keybase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.445 21.372a.953.953 0 1 1-.955-.954c.524 0 .951.43.951.955m5.923-.001a.953.953 0 1 1-.958-.954c.526 0 .954.43.954.955m4.544-9.16l-.156-.204c-.046-.06-.096-.116-.143-.175-.045-.06-.094-.113-.141-.169-.104-.12-.21-.239-.32-.359l-.075-.08-.091-.099-.135-.13c-.015-.019-.032-.035-.05-.054a10.87 10.87 0 0 0-3.955-2.504l-.23-.078.035-.083a4.109 4.109 0 0 0-.12-3.255 4.11 4.11 0 0 0-2.438-2.16c-.656-.216-1.23-.319-1.712-.305-.033-.105-.1-.577.496-1.848L10.662 0l-.287.399c-.33.455-.648.895-.945 1.328a1.857 1.857 0 0 0-1.245-.58L6.79 1.061h-.012c-.033-.003-.07-.003-.104-.003-.99 0-1.81.771-1.87 1.755l-.088 1.402v.003a1.876 1.876 0 0 0 1.755 1.98l1.002.06c-.065.84.073 1.62.405 2.306a11.28 11.28 0 0 0-3.66 2.484C.912 14.392.912 18.052.912 20.995v1.775l1.305-1.387c.266.93.652 1.807 1.145 2.615H5.06a9.197 9.197 0 0 1-1.68-3.848l1.913-2.03-.985 3.09 1.74-1.267c3.075-2.234 6.745-2.75 10.91-1.53 1.806.533 3.56.04 4.474-1.256l.104-.165c.09.498.14.998.14 1.496 0 1.563-.254 3.687-1.38 5.512h1.612c.776-1.563 1.181-3.432 1.181-5.512-.001-2.2-.786-4.421-2.184-6.274zM8.894 6.192c.122-1.002.577-1.949 1.23-2.97a1.36 1.36 0 0 0 1.283.749c.216-.008.604.025 1.233.232a2.706 2.706 0 0 1 1.608 1.425c.322.681.349 1.442.079 2.15a2.69 2.69 0 0 1-.806 1.108l-.408-.502-.002-.003a1.468 1.468 0 0 0-2.06-.205c-.334.27-.514.66-.534 1.058-1.2-.54-1.8-1.643-1.628-3.04zm4.304 5.11l-.52.425a.228.228 0 0 1-.323-.032l-.11-.135a.238.238 0 0 1 .034-.334l.51-.42-1.056-1.299a.307.307 0 0 1 .044-.436.303.303 0 0 1 .435.041l2.963 3.646a.309.309 0 0 1-.168.499.315.315 0 0 1-.31-.104l-.295-.365-1.045.854a.244.244 0 0 1-.154.055.237.237 0 0 1-.186-.09l-.477-.58a.24.24 0 0 1 .035-.335l1.05-.858-.425-.533zM7.752 4.866l-1.196-.075a.463.463 0 0 1-.435-.488l.09-1.4a.462.462 0 0 1 .461-.437h.024l1.401.091a.459.459 0 0 1 .433.488l-.007.101a9.27 9.27 0 0 0-.773 1.72zm12.525 11.482c-.565.805-1.687 1.08-2.924.718-3.886-1.141-7.397-.903-10.469.7l1.636-5.122-5.29 5.609c.098-3.762 2.452-6.967 5.757-8.312.471.373 1.034.66 1.673.841.16.044.322.074.48.102a1.41 1.41 0 0 0 .21 1.408l.075.09c-.172.45-.105.975.221 1.374l.476.582a1.39 1.39 0 0 0 1.079.513c.32 0 .635-.111.886-.314l.285-.232c.174.074.367.113.566.113a1.45 1.45 0 0 0 .928-.326c.623-.51.72-1.435.209-2.06l-1.67-2.057a4.07 4.07 0 0 0 .408-.38c.135.036.27.077.4.12.266.096.533.197.795.314a9.55 9.55 0 0 1 2.77 1.897c.03.03.06.055.086.083l.17.176c.038.039.076.079.11.12.08.085.16.175.24.267l.126.15c.045.053.086.104.13.16l.114.15c.04.05.079.102.117.154.838 1.149.987 2.329.404 3.157v.005zM7.718 4.115l-.835-.05.053-.836.834.051z" }) + ] + } + ); +}); + +export { SiKeybase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.cjs new file mode 100644 index 000000000..7ac9bcb02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#047AED"; +const SiKeycdn = React__namespace.forwardRef(function SiKeycdn2({ title = "KeyCDN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.3043 19.0607c.2259.01.4538.04.6667.12v-.003l.032.012 2.8091-2.7391.102.137c.146.1998.2999.3798.4638.5597l.06.068c.043.043.077.086.12.13l.3259.3249.077.07.07.06a7.4626 7.4626 0 004.6534 1.7753 7.5146 7.5146 0 004.0087-1.0396l.216.224c.2499.2658.5068.5327.7557.7997a8.8581 8.8581 0 01-5.0154 1.3995 8.8341 8.8341 0 01-5.4612-2.0623l.01-.015-1.8024 1.7764A2.2463 2.2463 0 110 21.305a2.2453 2.2453 0 012.2453-2.2453h.058zM19.4737 7.4765a8.8321 8.8321 0 011.2796 4.8264 8.7872 8.7872 0 01-2.2073 5.6152l.01.01 1.1066 1.1766c.4459-.06.8918.094 1.2017.4199a1.3935 1.3935 0 01-.052 1.9663 1.3935 1.3935 0 01-1.9664-.052 1.3826 1.3826 0 01-.3519-1.2196 336.5811 336.5811 0 00-1.9493-2.0693l-.11-.12.128-.103a6.9212 6.9212 0 00.9277-.8846 7.4256 7.4256 0 001.8793-4.7755 7.4376 7.4376 0 00-.9267-3.8118l1.0297-.9796zM3.8267 2.226c.395-.006.7648.15 1.0397.432.31.3258.4399.7817.353 1.2195L7.3475 6.111l-.128.104a6.9208 6.9208 0 00-.9276.8847 7.4906 7.4906 0 00-.9617 8.5942l-1.0217.9957A8.7602 8.7602 0 013.021 11.838c.044-2.0673.8498-4.0646 2.2033-5.6201L4.0517 4.9933a1.4005 1.4005 0 01-1.2026-.42 1.3955 1.3955 0 01.052-1.9673c.2169-.204.4968-.3349.7937-.3699.044-.006.09-.007.133-.01zM21.746.4427a2.2473 2.2473 0 11-.6998 4.3806l-.002.002-.033-.012-3.049 2.894-.102-.1379a7.1777 7.1777 0 00-.5328-.6268l-.034-.043-.2659-.2659-.12-.103-.077-.07-.06-.0499-.0769-.07a7.4556 7.4556 0 00-4.6185-1.7514A7.4336 7.4336 0 008.0724 5.629l-.9797-1.0216a8.8371 8.8371 0 015.0154-1.3996 8.7912 8.7912 0 015.4622 2.0694h.017l2.0194-1.9164A2.2463 2.2463 0 0121.75.4438zM11.956 5.4581c.254 0 .5069.02.7598.05 3.6228.4548 6.19 3.7608 5.7441 7.3846a6.6239 6.6239 0 01-7.3846 5.7451 6.6239 6.6239 0 01-5.7461-7.3846c.4318-3.3619 3.257-5.7831 6.6258-5.7951zm-.1 2.839c-1.4655.117-2.5271 1.2267-2.5651 2.6992.027 1.0537.5648 1.9394 1.5045 2.4252l-.5118 2.3993h3.4219l-.5099-2.3993c.9347-.5068 1.4896-1.3455 1.5046-2.4222-.02-1.5215-1.1977-2.6671-2.7052-2.7051l-.14.004zm.052-.015h-.01z" }) + ] + } + ); +}); + +exports.default = SiKeycdn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.d.ts new file mode 100644 index 000000000..05803adda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#047AED"; +declare const SiKeycdn: IconType; +export { SiKeycdn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.mjs new file mode 100644 index 000000000..d9c70bc30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycdn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#047AED"; +const SiKeycdn = React.forwardRef(function SiKeycdn2({ title = "KeyCDN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.3043 19.0607c.2259.01.4538.04.6667.12v-.003l.032.012 2.8091-2.7391.102.137c.146.1998.2999.3798.4638.5597l.06.068c.043.043.077.086.12.13l.3259.3249.077.07.07.06a7.4626 7.4626 0 004.6534 1.7753 7.5146 7.5146 0 004.0087-1.0396l.216.224c.2499.2658.5068.5327.7557.7997a8.8581 8.8581 0 01-5.0154 1.3995 8.8341 8.8341 0 01-5.4612-2.0623l.01-.015-1.8024 1.7764A2.2463 2.2463 0 110 21.305a2.2453 2.2453 0 012.2453-2.2453h.058zM19.4737 7.4765a8.8321 8.8321 0 011.2796 4.8264 8.7872 8.7872 0 01-2.2073 5.6152l.01.01 1.1066 1.1766c.4459-.06.8918.094 1.2017.4199a1.3935 1.3935 0 01-.052 1.9663 1.3935 1.3935 0 01-1.9664-.052 1.3826 1.3826 0 01-.3519-1.2196 336.5811 336.5811 0 00-1.9493-2.0693l-.11-.12.128-.103a6.9212 6.9212 0 00.9277-.8846 7.4256 7.4256 0 001.8793-4.7755 7.4376 7.4376 0 00-.9267-3.8118l1.0297-.9796zM3.8267 2.226c.395-.006.7648.15 1.0397.432.31.3258.4399.7817.353 1.2195L7.3475 6.111l-.128.104a6.9208 6.9208 0 00-.9276.8847 7.4906 7.4906 0 00-.9617 8.5942l-1.0217.9957A8.7602 8.7602 0 013.021 11.838c.044-2.0673.8498-4.0646 2.2033-5.6201L4.0517 4.9933a1.4005 1.4005 0 01-1.2026-.42 1.3955 1.3955 0 01.052-1.9673c.2169-.204.4968-.3349.7937-.3699.044-.006.09-.007.133-.01zM21.746.4427a2.2473 2.2473 0 11-.6998 4.3806l-.002.002-.033-.012-3.049 2.894-.102-.1379a7.1777 7.1777 0 00-.5328-.6268l-.034-.043-.2659-.2659-.12-.103-.077-.07-.06-.0499-.0769-.07a7.4556 7.4556 0 00-4.6185-1.7514A7.4336 7.4336 0 008.0724 5.629l-.9797-1.0216a8.8371 8.8371 0 015.0154-1.3996 8.7912 8.7912 0 015.4622 2.0694h.017l2.0194-1.9164A2.2463 2.2463 0 0121.75.4438zM11.956 5.4581c.254 0 .5069.02.7598.05 3.6228.4548 6.19 3.7608 5.7441 7.3846a6.6239 6.6239 0 01-7.3846 5.7451 6.6239 6.6239 0 01-5.7461-7.3846c.4318-3.3619 3.257-5.7831 6.6258-5.7951zm-.1 2.839c-1.4655.117-2.5271 1.2267-2.5651 2.6992.027 1.0537.5648 1.9394 1.5045 2.4252l-.5118 2.3993h3.4219l-.5099-2.3993c.9347-.5068 1.4896-1.3455 1.5046-2.4222-.02-1.5215-1.1977-2.6671-2.7052-2.7051l-.14.004zm.052-.015h-.01z" }) + ] + } + ); +}); + +export { SiKeycdn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.cjs new file mode 100644 index 000000000..d3357b969 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4D4D4D"; +const SiKeycloak = React__namespace.forwardRef(function SiKeycloak2({ title = "Keycloak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.742 1.182-12.493.002C4.155 4.784 2.079 8.393 0 12.002c2.071 3.612 4.162 7.214 6.252 10.816l12.49-.004 3.089-5.404h2.158v-.002H24L23.996 6.59h-2.168zM8.327 4.792h2.081l1.04 1.8-3.12 5.413 3.117 5.403-1.035 1.81H8.327a2047.566 2047.566 0 0 0-4.168-7.204C5.547 9.606 6.937 7.2 8.327 4.792Zm6.241 0 2.086.003c1.393 2.405 2.78 4.813 4.166 7.222l-4.167 7.2h-2.08c-.382-.562-1.038-1.808-1.038-1.808l3.123-5.405-3.124-5.413z" }) + ] + } + ); +}); + +exports.default = SiKeycloak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.d.ts new file mode 100644 index 000000000..fad88c730 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4D4D4D"; +declare const SiKeycloak: IconType; +export { SiKeycloak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.mjs new file mode 100644 index 000000000..f6fad76e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeycloak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4D4D4D"; +const SiKeycloak = React.forwardRef(function SiKeycloak2({ title = "Keycloak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.742 1.182-12.493.002C4.155 4.784 2.079 8.393 0 12.002c2.071 3.612 4.162 7.214 6.252 10.816l12.49-.004 3.089-5.404h2.158v-.002H24L23.996 6.59h-2.168zM8.327 4.792h2.081l1.04 1.8-3.12 5.413 3.117 5.403-1.035 1.81H8.327a2047.566 2047.566 0 0 0-4.168-7.204C5.547 9.606 6.937 7.2 8.327 4.792Zm6.241 0 2.086.003c1.393 2.405 2.78 4.813 4.166 7.222l-4.167 7.2h-2.08c-.382-.562-1.038-1.808-1.038-1.808l3.123-5.405-3.124-5.413z" }) + ] + } + ); +}); + +export { SiKeycloak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.cjs new file mode 100644 index 000000000..c5c2bf085 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#166BFF"; +const SiKeystone = React__namespace.forwardRef(function SiKeystone2({ title = "Keystone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 0A4.5 4.5 0 000 4.5v15A4.5 4.5 0 004.5 24h15a4.5 4.5 0 004.5-4.5v-15A4.5 4.5 0 0019.5 0zm5.47 14.789v3.586H6.744V5.692H9.97v5.45h.167l4.218-5.45h3.463l-4.385 5.599 4.64 7.084h-3.788l-3.2-5.001z" }) + ] + } + ); +}); + +exports.default = SiKeystone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.d.ts new file mode 100644 index 000000000..c11bd9766 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#166BFF"; +declare const SiKeystone: IconType; +export { SiKeystone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.mjs new file mode 100644 index 000000000..c26a1fc7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKeystone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#166BFF"; +const SiKeystone = React.forwardRef(function SiKeystone2({ title = "Keystone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.5 0A4.5 4.5 0 000 4.5v15A4.5 4.5 0 004.5 24h15a4.5 4.5 0 004.5-4.5v-15A4.5 4.5 0 0019.5 0zm5.47 14.789v3.586H6.744V5.692H9.97v5.45h.167l4.218-5.45h3.463l-4.385 5.599 4.64 7.084h-3.788l-3.2-5.001z" }) + ] + } + ); +}); + +export { SiKeystone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.cjs new file mode 100644 index 000000000..be067a126 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F40027"; +const SiKfc = React__namespace.forwardRef(function SiKfc2({ title = "KFC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.215.215 0 00.147-.166l.173-.91a.184.184 0 00-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 00.182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 00-.15-.255 7.21 7.21 0 00-1.95-.266zm-20.157.116a.2.2 0 00-.195.156l-.108.484a.198.198 0 00.13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 00-.176.157l-.102.464a.192.192 0 00.187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 00-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.181.181 0 00.177-.142l.105-.47a.195.195 0 00-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 00.163-.144l.103-.464a.184.184 0 00-.18-.223h-3.02a.199.199 0 00-.193.155l-.102.46a.2.2 0 00.138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.683.683 0 01.477-.487l.025-.008a.199.199 0 00.135-.147l.106-.477a.181.181 0 00-.177-.22zm8.88 0a.2.2 0 00-.194.156l-.107.483a.19.19 0 00.122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 00.178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 00-.098-.196 1.558 1.558 0 01-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 00-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 00.183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 00-.18-.222z" }) + ] + } + ); +}); + +exports.default = SiKfc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.d.ts new file mode 100644 index 000000000..791de0283 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F40027"; +declare const SiKfc: IconType; +export { SiKfc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.mjs new file mode 100644 index 000000000..df5055ec0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKfc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F40027"; +const SiKfc = React.forwardRef(function SiKfc2({ title = "KFC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.893 8.23c-4.187.001-5.249 2.365-5.42 3.97-.194 1.802 1.053 3.57 4.127 3.57 1.294 0 2.14-.225 2.44-.32a.215.215 0 00.147-.166l.173-.91a.184.184 0 00-.236-.21c-.336.106-.93.252-1.685.252-1.469 0-2.53-.882-2.395-2.4.13-1.47 1.121-2.59 2.485-2.59.82 0 1.183.43 1.156 1.003v.033a.184.184 0 00.182.193h.557c.086 0 .16-.06.18-.143l.39-1.76a.215.215 0 00-.15-.255 7.21 7.21 0 00-1.95-.266zm-20.157.116a.2.2 0 00-.195.156l-.108.484a.198.198 0 00.13.23l.033.01c.208.082.45.266.348.748l-.792 3.62c-.207.987-.542 1.19-.86 1.226h-.01a.2.2 0 00-.176.157l-.102.464a.192.192 0 00.187.233h3.487c.085 0 .159-.06.177-.142l.12-.543a.184.184 0 00-.112-.21l-.022-.01c-.177-.07-.418-.224-.356-.51l.405-1.85c1.389 2.535 1.848 3.266 3.514 3.265H8.91a.181.181 0 00.177-.142l.105-.47a.195.195 0 00-.186-.238c-.376-.006-.56-.093-.935-.575l-1.932-2.614 2.51-2.088c.337-.264.748-.338.976-.368l.022-.002a.185.185 0 00.163-.144l.103-.464a.184.184 0 00-.18-.223h-3.02a.199.199 0 00-.193.155l-.102.46a.2.2 0 00.138.235c.178.069.217.24.063.366L4.046 11.7l.44-2.014a.683.683 0 01.477-.487l.025-.008a.199.199 0 00.135-.147l.106-.477a.181.181 0 00-.177-.22zm8.88 0a.2.2 0 00-.194.156l-.107.483a.19.19 0 00.122.221l.02.008c.204.077.487.274.364.758l-1.21 5.48a.182.182 0 00.178.222h2.777c.086 0 .16-.06.179-.143l.12-.547a.174.174 0 00-.098-.196 1.558 1.558 0 01-.027-.013c-.176-.086-.438-.285-.35-.67.009-.05.27-1.24.27-1.24h2.362c.086 0 .16-.06.18-.143l.221-1a.183.183 0 00-.18-.224h-2.28l.427-1.94 1.592-.003c.515 0 .672.27.642.728l-.002.024a.184.184 0 00.183.205h.587c.086 0 .16-.06.178-.144l.4-1.8a.184.184 0 00-.18-.222z" }) + ] + } + ); +}); + +export { SiKfc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.cjs new file mode 100644 index 000000000..df57f1d66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14BF96"; +const SiKhanacademy = React__namespace.forwardRef(function SiKhanacademy2({ title = "Khan Academy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.724 4.973L13.418.328a3.214 3.214 0 0 0-2.828 0L2.276 4.973A3.05 3.05 0 0 0 .862 7.371v9.256a3.05 3.05 0 0 0 1.414 2.4l8.306 4.645a3.214 3.214 0 0 0 2.828 0l8.314-4.645a3.05 3.05 0 0 0 1.414-2.4V7.373a3.05 3.05 0 0 0-1.414-2.4zM12 4.921a2.571 2.571 0 1 1 .001 5.143A2.571 2.571 0 0 1 12 4.92zm3.094 13.627a9.119 9.119 0 0 1-3.103.549 8.972 8.972 0 0 1-3.076-.55 8.493 8.493 0 0 1-5.486-7.987v-.857c4.646.017 8.074 3.823 8.074 8.51v.198h.926v-.197c0-4.688 3.445-8.51 8.056-8.51.026.29.043.582.086.856a8.502 8.502 0 0 1-5.477 7.988z" }) + ] + } + ); +}); + +exports.default = SiKhanacademy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.d.ts new file mode 100644 index 000000000..5ff7330e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14BF96"; +declare const SiKhanacademy: IconType; +export { SiKhanacademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.mjs new file mode 100644 index 000000000..3de7d0a3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKhanacademy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14BF96"; +const SiKhanacademy = React.forwardRef(function SiKhanacademy2({ title = "Khan Academy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.724 4.973L13.418.328a3.214 3.214 0 0 0-2.828 0L2.276 4.973A3.05 3.05 0 0 0 .862 7.371v9.256a3.05 3.05 0 0 0 1.414 2.4l8.306 4.645a3.214 3.214 0 0 0 2.828 0l8.314-4.645a3.05 3.05 0 0 0 1.414-2.4V7.373a3.05 3.05 0 0 0-1.414-2.4zM12 4.921a2.571 2.571 0 1 1 .001 5.143A2.571 2.571 0 0 1 12 4.92zm3.094 13.627a9.119 9.119 0 0 1-3.103.549 8.972 8.972 0 0 1-3.076-.55 8.493 8.493 0 0 1-5.486-7.987v-.857c4.646.017 8.074 3.823 8.074 8.51v.198h.926v-.197c0-4.688 3.445-8.51 8.056-8.51.026.29.043.582.086.856a8.502 8.502 0 0 1-5.477 7.988z" }) + ] + } + ); +}); + +export { SiKhanacademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.cjs new file mode 100644 index 000000000..cef3d314e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC3333"; +const SiKhronosgroup = React__namespace.forwardRef(function SiKhronosgroup2({ title = "Khronos Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.496 12.919H0V10.38h.496zm.008-1.261.768-1.278h.554l-.814 1.26.814 1.277h-.554zm3.02.23v1.031h-.497V10.38h.497v1.031h.818V10.38h.497v2.539h-.497v-1.031zm3.272 1.031h-.497V10.38h.603c.192 0 .335.006.429.02s.174.035.239.065c.145.068.255.162.33.283s.114.263.114.426c0 .197-.054.363-.162.5-.107.137-.254.223-.44.261l.635.984h-.592l-.658-1.177zm0-1.301h.11c.202 0 .355-.037.46-.11.104-.072.157-.179.157-.318 0-.135-.044-.234-.132-.298s-.224-.097-.41-.097h-.185zm8.262 1.301h-.488V10.38h.472l1.05 1.621V10.38h.488v2.539h-.461l-1.061-1.67zm2.876-1.275c0-.139.019-.271.056-.395.038-.124.093-.239.166-.347.125-.183.283-.324.472-.423.19-.099.396-.149.621-.149.169 0 .331.033.488.098.156.065.295.159.419.281.127.126.224.269.29.427.067.158.099.325.099.499 0 .182-.031.351-.094.51s-.154.301-.274.424c-.122.129-.265.228-.427.297-.161.069-.332.104-.509.104-.189 0-.363-.034-.524-.101q-.2385-.102-.423-.3a1.3 1.3 0 0 1-.27-.422c-.06-.158-.09-.325-.09-.503m.519-.018c0 .109.017.211.054.305.036.094.089.18.16.258.078.085.167.151.266.196s.202.069.307.069c.222 0 .409-.079.559-.237.151-.158.226-.355.226-.591 0-.215-.077-.4-.228-.553-.152-.152-.335-.229-.548-.229-.222 0-.411.077-.565.228-.153.153-.231.337-.231.554m3.291.507.455-.002v.037c0 .106.027.192.082.256s.129.096.221.096c.099 0 .177-.03.234-.089.058-.06.087-.14.087-.243 0-.163-.117-.281-.35-.351-.03-.009-.054-.016-.071-.023-.197-.061-.344-.149-.439-.262-.095-.112-.143-.257-.143-.43 0-.238.066-.43.198-.574s.307-.217.528-.217c.205 0 .37.064.491.192.122.128.191.309.205.539h-.45v-.021c0-.08-.026-.146-.074-.194-.049-.049-.113-.074-.192-.074-.082 0-.146.025-.193.076-.048.051-.07.12-.07.208 0 .038.005.07.015.098.01.029.025.054.046.076.048.053.15.101.307.146.07.019.123.034.161.047.174.059.303.145.386.255.082.11.124.252.124.424 0 .262-.073.471-.218.63-.146.159-.339.238-.578.238-.227 0-.409-.076-.549-.229-.138-.155-.21-.359-.213-.609m-4.886 1.298-.067.076a.34.34 0 0 0-.101-.063.28.28 0 0 0-.107-.02c-.078 0-.143.026-.195.081-.052.054-.078.121-.078.2s.027.145.078.199a.262.262 0 0 0 .195.082.27.27 0 0 0 .097-.017c.03-.011.059-.027.086-.049v-.168h-.151v-.099h.258v.326a.57.57 0 0 1-.143.083.41.41 0 0 1-.147.028c-.111 0-.202-.037-.275-.109-.073-.073-.109-.165-.109-.275a.39.39 0 0 1 .1-.261c.037-.04.079-.07.127-.091.047-.022.1-.032.157-.032.053 0 .105.01.154.029s.09.045.121.08m1.06-.091h.139q.0585 0 .096.006a.25.25 0 0 1 .067.022c.031.016.056.041.074.073.017.033.027.071.027.111 0 .047-.015.089-.046.124s-.073.056-.124.065l.222.301-.103.044-.245-.355v.337l-.109.009zm.109.095v.232h.039c.046 0 .082-.01.109-.031.025-.022.038-.05.038-.088s-.012-.065-.036-.084-.06-.029-.108-.029zm1.687-.114q.072 0 .135.024c.043.015.082.038.114.068.043.039.077.082.099.133.023.05.034.104.034.159 0 .047-.008.095-.026.14a.43.43 0 0 1-.075.122c-.037.04-.078.07-.127.091-.047.022-.1.032-.157.032a.4.4 0 0 1-.136-.024.33.33 0 0 1-.113-.068.39.39 0 0 1-.099-.134.38.38 0 0 1-.035-.159c0-.055.011-.109.035-.159a.38.38 0 0 1 .099-.133c.033-.029.07-.052.113-.068.045-.016.09-.024.139-.024m0 .102c-.078 0-.143.026-.194.081-.053.054-.078.121-.078.199 0 .079.026.146.078.2s.116.08.195.08c.078 0 .142-.028.195-.081.052-.054.079-.121.079-.2s-.027-.145-.078-.199a.27.27 0 0 0-.197-.08m1.518-.093v.414c0 .087.011.149.034.185.022.035.06.053.114.053s.093-.017.117-.05c.023-.034.036-.089.036-.167v-.424l.105-.01v.459c0 .059-.004.105-.012.137a.22.22 0 0 1-.044.082c-.02.024-.049.043-.084.058a.3.3 0 0 1-.112.021c-.087 0-.154-.025-.197-.074s-.065-.124-.065-.224v-.448zm1.471.01h.193c.082 0 .146.019.19.056.044.038.065.093.065.165 0 .067-.025.121-.075.161s-.119.059-.207.059c-.011 0-.03-.001-.055-.002h-.002v.288l-.109.009zm.109.096v.244l.03.003c.011.002.022.002.036.002.053 0 .093-.01.12-.032.028-.021.042-.051.042-.092 0-.043-.013-.074-.038-.094s-.065-.031-.119-.031zm-11.68-.683c-.871-.031-2.061-.428-2.308-1.003-.213-.522-.001-1.13 1.004-1.563.597-.248 1.499-.318 2.195-.254.987.09 1.927.6 1.928.603v.715l-.001.048s-.306-.277-.688-.5c-.36-.211-.69-.359-1.344-.419-.153-.014-.414-.049-.836.01-.171.024-.411.042-.953.28-.175.084-.337.173-.463.277-.065.054-.154.13-.216.195-.155.193-.236.339-.197.602.045.198.133.322.387.512.11.082.123.081.172.106.455.236.818.322 1.337.388zm.048-2.231c.873-.004 2.112.346 2.434.91.282.513.152 1.128-.794 1.598-.561.272-1.452.378-2.154.341-.997-.051-2.002-.524-2.004-.525l-.095-.713-.006-.048s.342.265.753.473c.388.195.736.331 1.397.365.154.008.418.031.832-.043.167-.03.405-.058.913-.316.164-.09.313-.186.423-.295.058-.056.137-.136.191-.203.128-.199.19-.347.117-.608-.072-.195-.176-.316-.454-.495-.121-.078-.133-.076-.186-.1-.485-.217-.859-.288-1.386-.334zM24 10.58c0 .046-.011.089-.035.129a.257.257 0 0 1-.094.094.265.265 0 0 1-.129.035.243.243 0 0 1-.129-.035.243.243 0 0 1-.094-.094.255.255 0 0 1-.035-.129c0-.047.011-.089.035-.13.022-.04.055-.071.094-.094.04-.022.082-.035.129-.035.046 0 .089.012.129.035s.071.054.094.094c.024.041.035.084.035.13m-.05 0c0-.058-.02-.107-.062-.147a.203.203 0 0 0-.146-.062c-.058 0-.107.021-.147.062-.04.04-.061.09-.061.147 0 .056.02.106.061.146.04.04.09.062.147.062s.106-.02.146-.062c.042-.04.062-.089.062-.146m-.325-.138h.123c.035 0 .06.007.076.021s.024.033.024.056c0 .019-.006.035-.017.048-.013.014-.032.024-.057.029.01.004.019.009.024.012a.14.14 0 0 1 .023.028c0 .001.015.028.045.08h-.082c-.026-.052-.043-.084-.052-.094s-.018-.015-.028-.015c-.002 0-.005 0-.009.001v.109h-.069zm.068.117h.03c.02 0 .034-.003.041-.01a.031.031 0 0 0 .013-.025.034.034 0 0 0-.011-.025c-.008-.006-.022-.01-.041-.01h-.032z" }) + ] + } + ); +}); + +exports.default = SiKhronosgroup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.d.ts new file mode 100644 index 000000000..6cb04697d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC3333"; +declare const SiKhronosgroup: IconType; +export { SiKhronosgroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.mjs new file mode 100644 index 000000000..67e29e9ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKhronosgroup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC3333"; +const SiKhronosgroup = React.forwardRef(function SiKhronosgroup2({ title = "Khronos Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.496 12.919H0V10.38h.496zm.008-1.261.768-1.278h.554l-.814 1.26.814 1.277h-.554zm3.02.23v1.031h-.497V10.38h.497v1.031h.818V10.38h.497v2.539h-.497v-1.031zm3.272 1.031h-.497V10.38h.603c.192 0 .335.006.429.02s.174.035.239.065c.145.068.255.162.33.283s.114.263.114.426c0 .197-.054.363-.162.5-.107.137-.254.223-.44.261l.635.984h-.592l-.658-1.177zm0-1.301h.11c.202 0 .355-.037.46-.11.104-.072.157-.179.157-.318 0-.135-.044-.234-.132-.298s-.224-.097-.41-.097h-.185zm8.262 1.301h-.488V10.38h.472l1.05 1.621V10.38h.488v2.539h-.461l-1.061-1.67zm2.876-1.275c0-.139.019-.271.056-.395.038-.124.093-.239.166-.347.125-.183.283-.324.472-.423.19-.099.396-.149.621-.149.169 0 .331.033.488.098.156.065.295.159.419.281.127.126.224.269.29.427.067.158.099.325.099.499 0 .182-.031.351-.094.51s-.154.301-.274.424c-.122.129-.265.228-.427.297-.161.069-.332.104-.509.104-.189 0-.363-.034-.524-.101q-.2385-.102-.423-.3a1.3 1.3 0 0 1-.27-.422c-.06-.158-.09-.325-.09-.503m.519-.018c0 .109.017.211.054.305.036.094.089.18.16.258.078.085.167.151.266.196s.202.069.307.069c.222 0 .409-.079.559-.237.151-.158.226-.355.226-.591 0-.215-.077-.4-.228-.553-.152-.152-.335-.229-.548-.229-.222 0-.411.077-.565.228-.153.153-.231.337-.231.554m3.291.507.455-.002v.037c0 .106.027.192.082.256s.129.096.221.096c.099 0 .177-.03.234-.089.058-.06.087-.14.087-.243 0-.163-.117-.281-.35-.351-.03-.009-.054-.016-.071-.023-.197-.061-.344-.149-.439-.262-.095-.112-.143-.257-.143-.43 0-.238.066-.43.198-.574s.307-.217.528-.217c.205 0 .37.064.491.192.122.128.191.309.205.539h-.45v-.021c0-.08-.026-.146-.074-.194-.049-.049-.113-.074-.192-.074-.082 0-.146.025-.193.076-.048.051-.07.12-.07.208 0 .038.005.07.015.098.01.029.025.054.046.076.048.053.15.101.307.146.07.019.123.034.161.047.174.059.303.145.386.255.082.11.124.252.124.424 0 .262-.073.471-.218.63-.146.159-.339.238-.578.238-.227 0-.409-.076-.549-.229-.138-.155-.21-.359-.213-.609m-4.886 1.298-.067.076a.34.34 0 0 0-.101-.063.28.28 0 0 0-.107-.02c-.078 0-.143.026-.195.081-.052.054-.078.121-.078.2s.027.145.078.199a.262.262 0 0 0 .195.082.27.27 0 0 0 .097-.017c.03-.011.059-.027.086-.049v-.168h-.151v-.099h.258v.326a.57.57 0 0 1-.143.083.41.41 0 0 1-.147.028c-.111 0-.202-.037-.275-.109-.073-.073-.109-.165-.109-.275a.39.39 0 0 1 .1-.261c.037-.04.079-.07.127-.091.047-.022.1-.032.157-.032.053 0 .105.01.154.029s.09.045.121.08m1.06-.091h.139q.0585 0 .096.006a.25.25 0 0 1 .067.022c.031.016.056.041.074.073.017.033.027.071.027.111 0 .047-.015.089-.046.124s-.073.056-.124.065l.222.301-.103.044-.245-.355v.337l-.109.009zm.109.095v.232h.039c.046 0 .082-.01.109-.031.025-.022.038-.05.038-.088s-.012-.065-.036-.084-.06-.029-.108-.029zm1.687-.114q.072 0 .135.024c.043.015.082.038.114.068.043.039.077.082.099.133.023.05.034.104.034.159 0 .047-.008.095-.026.14a.43.43 0 0 1-.075.122c-.037.04-.078.07-.127.091-.047.022-.1.032-.157.032a.4.4 0 0 1-.136-.024.33.33 0 0 1-.113-.068.39.39 0 0 1-.099-.134.38.38 0 0 1-.035-.159c0-.055.011-.109.035-.159a.38.38 0 0 1 .099-.133c.033-.029.07-.052.113-.068.045-.016.09-.024.139-.024m0 .102c-.078 0-.143.026-.194.081-.053.054-.078.121-.078.199 0 .079.026.146.078.2s.116.08.195.08c.078 0 .142-.028.195-.081.052-.054.079-.121.079-.2s-.027-.145-.078-.199a.27.27 0 0 0-.197-.08m1.518-.093v.414c0 .087.011.149.034.185.022.035.06.053.114.053s.093-.017.117-.05c.023-.034.036-.089.036-.167v-.424l.105-.01v.459c0 .059-.004.105-.012.137a.22.22 0 0 1-.044.082c-.02.024-.049.043-.084.058a.3.3 0 0 1-.112.021c-.087 0-.154-.025-.197-.074s-.065-.124-.065-.224v-.448zm1.471.01h.193c.082 0 .146.019.19.056.044.038.065.093.065.165 0 .067-.025.121-.075.161s-.119.059-.207.059c-.011 0-.03-.001-.055-.002h-.002v.288l-.109.009zm.109.096v.244l.03.003c.011.002.022.002.036.002.053 0 .093-.01.12-.032.028-.021.042-.051.042-.092 0-.043-.013-.074-.038-.094s-.065-.031-.119-.031zm-11.68-.683c-.871-.031-2.061-.428-2.308-1.003-.213-.522-.001-1.13 1.004-1.563.597-.248 1.499-.318 2.195-.254.987.09 1.927.6 1.928.603v.715l-.001.048s-.306-.277-.688-.5c-.36-.211-.69-.359-1.344-.419-.153-.014-.414-.049-.836.01-.171.024-.411.042-.953.28-.175.084-.337.173-.463.277-.065.054-.154.13-.216.195-.155.193-.236.339-.197.602.045.198.133.322.387.512.11.082.123.081.172.106.455.236.818.322 1.337.388zm.048-2.231c.873-.004 2.112.346 2.434.91.282.513.152 1.128-.794 1.598-.561.272-1.452.378-2.154.341-.997-.051-2.002-.524-2.004-.525l-.095-.713-.006-.048s.342.265.753.473c.388.195.736.331 1.397.365.154.008.418.031.832-.043.167-.03.405-.058.913-.316.164-.09.313-.186.423-.295.058-.056.137-.136.191-.203.128-.199.19-.347.117-.608-.072-.195-.176-.316-.454-.495-.121-.078-.133-.076-.186-.1-.485-.217-.859-.288-1.386-.334zM24 10.58c0 .046-.011.089-.035.129a.257.257 0 0 1-.094.094.265.265 0 0 1-.129.035.243.243 0 0 1-.129-.035.243.243 0 0 1-.094-.094.255.255 0 0 1-.035-.129c0-.047.011-.089.035-.13.022-.04.055-.071.094-.094.04-.022.082-.035.129-.035.046 0 .089.012.129.035s.071.054.094.094c.024.041.035.084.035.13m-.05 0c0-.058-.02-.107-.062-.147a.203.203 0 0 0-.146-.062c-.058 0-.107.021-.147.062-.04.04-.061.09-.061.147 0 .056.02.106.061.146.04.04.09.062.147.062s.106-.02.146-.062c.042-.04.062-.089.062-.146m-.325-.138h.123c.035 0 .06.007.076.021s.024.033.024.056c0 .019-.006.035-.017.048-.013.014-.032.024-.057.029.01.004.019.009.024.012a.14.14 0 0 1 .023.028c0 .001.015.028.045.08h-.082c-.026-.052-.043-.084-.052-.094s-.018-.015-.028-.015c-.002 0-.005 0-.009.001v.109h-.069zm.068.117h.03c.02 0 .034-.003.041-.01a.031.031 0 0 0 .013-.025.034.034 0 0 0-.011-.025c-.008-.006-.022-.01-.041-.01h-.032z" }) + ] + } + ); +}); + +export { SiKhronosgroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKia.cjs new file mode 100644 index 000000000..be6b4707e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05141F"; +const SiKia = React__namespace.forwardRef(function SiKia2({ title = "Kia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.923 14.175c0 .046.015.072.041.072a.123.123 0 0 0 .058-.024l7.48-4.854a.72.72 0 0 1 .432-.13h1.644c.252 0 .422.168.422.42v3.139c0 .38-.084.6-.42.801l-1.994 1.2a.137.137 0 0 1-.067.024c-.024 0-.048-.019-.048-.088v-3.663c0-.043-.012-.071-.041-.071a.113.113 0 0 0-.058.024l-5.466 3.551a.733.733 0 0 1-.42.127h-3.624c-.254 0-.422-.168-.422-.422V9.757c0-.033-.015-.064-.044-.064a.118.118 0 0 0-.057.024L7.732 11.88c-.036.024-.046.041-.046.058 0 .014.008.029.032.055l2.577 2.575c.034.034.058.06.058.089 0 .024-.039.043-.084.043H7.94c-.183 0-.324-.026-.423-.125l-1.562-1.56a.067.067 0 0 0-.048-.024.103.103 0 0 0-.048.015l-2.61 1.57a.72.72 0 0 1-.423.122H.425C.168 14.7 0 14.53 0 14.279v-3.08c0-.38.084-.6.422-.8L2.43 9.192a.103.103 0 0 1 .052-.016c.032 0 .048.03.048.1V13.4c0 .043.01.063.041.063a.144.144 0 0 0 .06-.024L9.407 9.36a.733.733 0 0 1 .446-.124h3.648c.252 0 .422.168.422.42l-.002 4.518z" }) + ] + } + ); +}); + +exports.default = SiKia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKia.d.ts new file mode 100644 index 000000000..7907a6b15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05141F"; +declare const SiKia: IconType; +export { SiKia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKia.mjs new file mode 100644 index 000000000..49939c9c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05141F"; +const SiKia = React.forwardRef(function SiKia2({ title = "Kia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.923 14.175c0 .046.015.072.041.072a.123.123 0 0 0 .058-.024l7.48-4.854a.72.72 0 0 1 .432-.13h1.644c.252 0 .422.168.422.42v3.139c0 .38-.084.6-.42.801l-1.994 1.2a.137.137 0 0 1-.067.024c-.024 0-.048-.019-.048-.088v-3.663c0-.043-.012-.071-.041-.071a.113.113 0 0 0-.058.024l-5.466 3.551a.733.733 0 0 1-.42.127h-3.624c-.254 0-.422-.168-.422-.422V9.757c0-.033-.015-.064-.044-.064a.118.118 0 0 0-.057.024L7.732 11.88c-.036.024-.046.041-.046.058 0 .014.008.029.032.055l2.577 2.575c.034.034.058.06.058.089 0 .024-.039.043-.084.043H7.94c-.183 0-.324-.026-.423-.125l-1.562-1.56a.067.067 0 0 0-.048-.024.103.103 0 0 0-.048.015l-2.61 1.57a.72.72 0 0 1-.423.122H.425C.168 14.7 0 14.53 0 14.279v-3.08c0-.38.084-.6.422-.8L2.43 9.192a.103.103 0 0 1 .052-.016c.032 0 .048.03.048.1V13.4c0 .043.01.063.041.063a.144.144 0 0 0 .06-.024L9.407 9.36a.733.733 0 0 1 .446-.124h3.648c.252 0 .422.168.422.42l-.002 4.518z" }) + ] + } + ); +}); + +export { SiKia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.cjs new file mode 100644 index 000000000..92a6b5d5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiKibana = React__namespace.forwardRef(function SiKibana2({ title = "Kibana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.625 0v21.591L21.375 0zm10.864 12.47L3.477 24h17.522a18.755 18.755 0 0 0-7.51-11.53z" }) + ] + } + ); +}); + +exports.default = SiKibana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.d.ts new file mode 100644 index 000000000..765f97620 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiKibana: IconType; +export { SiKibana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.mjs new file mode 100644 index 000000000..db4a9bc24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKibana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiKibana = React.forwardRef(function SiKibana2({ title = "Kibana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.625 0v21.591L21.375 0zm10.864 12.47L3.477 24h17.522a18.755 18.755 0 0 0-7.51-11.53z" }) + ] + } + ); +}); + +export { SiKibana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.cjs new file mode 100644 index 000000000..c761b0b52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#314CB0"; +const SiKicad = React__namespace.forwardRef(function SiKicad2({ title = "KiCad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.4668 7.3039c-.472.0238-.8477.4142-.8477.8906 0 .4918.3994.8906.8926.8906.4933 0 .8926-.3988.8926-.8906 0-.4918-.3993-.8906-.8926-.8906-.0154 0-.0297-.0008-.0449 0zM.25 8.0109c-.1394 0-.25.1214-.25.254v8.1777c0 .1325.1106.2539.25.2539h8.5215c.1394 0 .248-.1214.248-.254V8.2649c0-.1327-.1083-.2539-.248-.2539h-.2598c.011.0595.0176.121.0176.1836 0 .0605-.0054.1201-.0156.1777h.1445v7.963H.3613v-7.963h6.1485a1.0179 1.0179 0 0 1-.0157-.1777c0-.0628.0066-.1238.0176-.1836zm.2617.5117v7.664h7.9961v-7.664h-.0332a1.025 1.025 0 0 1-.4883.5703.8482.8482 0 0 1-.4746.1426.8483.8483 0 0 1-.4746-.1426 1.025 1.025 0 0 1-.4883-.5703zm21.5606.252c.0966.1084.1562.2266.1797.3555.0116.0615.0175.1992.0175.4101v1.664c-.2753-.2606-.6554-.3906-1.1386-.3906-.3662 0-.6896.1007-.9707.3028-.5946.4276-.8926 1.2249-.8926 2.3906 0 .3515.0469.67.1406.957.1347.41.3487.7335.6387.9707.3075.252.669.379 1.0879.379.495 0 .9034-.1574 1.2226-.4708v.373H24c-.1347-.1492-.2012-.4072-.2012-.7733v-6.168Zm-9.6328.2988c-.785 0-1.463.2873-2.0372.8613-.6209.621-.9316 1.4593-.9316 2.5137 0 .9402.253 1.7238.7598 2.3535.5447.6795 1.2746 1.0196 2.1914 1.0196.577 0 1.0987-.131 1.5644-.3946.2636-.1494.414-.22.4492-.211l-.7304-1.1952c-.3456.3807-.7404.5703-1.1856.5703-.249 0-.4834-.0782-.703-.2363-.4717-.3398-.7071-.9749-.7071-1.9063 0-.328.0322-.628.0996-.9004.205-.8318.6447-1.248 1.3183-1.248.4306 0 .7755.1641 1.0332.4922l.7872-1.1426c-.085-.009-.1964-.0508-.334-.127-.536-.2987-1.0617-.4492-1.5742-.4492zM.5605 9.175H2.625c-.164.164-.2461.4474-.246.8515v1.6133l1.2616-1.5957c.2578-.325.3867-.5674.3867-.7285 0-.0585-.0088-.1054-.0234-.1406h2.2012c-.167.0937-.375.2901-.627.5918-.0673.079-.1856.2247-.3554.4355L3.5703 12.259l1.9727 2.7148c.12.164.2725.3497.457.5547.0498.0527.1211.1144.2148.1875H3.957a.7156.7156 0 0 0 .0254-.1797c0-.1611-.1114-.3946-.334-.6992L2.379 13.1066v1.754c0 .407.082.6914.2461.8554H.5605c.1143-.1142.1866-.2442.2188-.3906.0175-.082.0273-.2355.0273-.461v-4.8379c0-.2255-.0098-.3789-.0273-.4609-.0322-.1464-.1045-.2764-.2188-.3906zm16.2032 1.6386c-.2373 0-.4561.0195-.6582.0605l-.5977.1504c-.2812.0703-.4717.1055-.5683.1055l.4355 1.0488c.41-.2167.8019-.3242 1.1738-.3242.4364 0 .6543.2511.6543.752-.2167-.0116-.3691-.0176-.457-.0176-.618 0-1.0987.083-1.4414.25-.5946.29-.8906.7384-.8906 1.3476 0 .2666.0469.506.1406.7168.1318.2959.3409.5244.6308.6856.2754.1522.5831.2276.92.2246.4745-.006.8623-.1632 1.164-.4707v.373h1.6387c-.0996-.1083-.1621-.2276-.1855-.3594-.0117-.0644-.0176-.2031-.0176-.414V12.794c0-.4305-.0587-.791-.1758-1.084-.2402-.5974-.8284-.8964-1.7656-.8964zm-10.211.0957h1.7266v4.0332c0 .211.0059.3497.0176.4141.0234.1318.086.251.1855.3594H6.5488c.0996-.1083.1602-.2276.1836-.3594.0117-.0644.0176-.2032.0176-.414V11.675c0-.2109-.0059-.3467-.0176-.4082-.0234-.1289-.083-.249-.1797-.3574zM21.623 11.929c.2373 0 .4532.082.6465.246v2.1934c-.2284.1845-.4668.2754-.7129.2754-.4715 0-.707-.4025-.707-1.211 0-1.0016.258-1.5038.7734-1.5038zm-4.793 1.6484c.123 0 .2403.009.3516.0293v.7617c-.1464.252-.38.377-.6992.377-.1728 0-.3154-.046-.4297-.1367-.126-.0996-.1894-.2315-.1894-.3985 0-.2226.1114-.3906.334-.502.1757-.0878.3867-.1308.6328-.1308z" }) + ] + } + ); +}); + +exports.default = SiKicad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.d.ts new file mode 100644 index 000000000..5c939bae2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#314CB0"; +declare const SiKicad: IconType; +export { SiKicad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.mjs new file mode 100644 index 000000000..be94bfd76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKicad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#314CB0"; +const SiKicad = React.forwardRef(function SiKicad2({ title = "KiCad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.4668 7.3039c-.472.0238-.8477.4142-.8477.8906 0 .4918.3994.8906.8926.8906.4933 0 .8926-.3988.8926-.8906 0-.4918-.3993-.8906-.8926-.8906-.0154 0-.0297-.0008-.0449 0zM.25 8.0109c-.1394 0-.25.1214-.25.254v8.1777c0 .1325.1106.2539.25.2539h8.5215c.1394 0 .248-.1214.248-.254V8.2649c0-.1327-.1083-.2539-.248-.2539h-.2598c.011.0595.0176.121.0176.1836 0 .0605-.0054.1201-.0156.1777h.1445v7.963H.3613v-7.963h6.1485a1.0179 1.0179 0 0 1-.0157-.1777c0-.0628.0066-.1238.0176-.1836zm.2617.5117v7.664h7.9961v-7.664h-.0332a1.025 1.025 0 0 1-.4883.5703.8482.8482 0 0 1-.4746.1426.8483.8483 0 0 1-.4746-.1426 1.025 1.025 0 0 1-.4883-.5703zm21.5606.252c.0966.1084.1562.2266.1797.3555.0116.0615.0175.1992.0175.4101v1.664c-.2753-.2606-.6554-.3906-1.1386-.3906-.3662 0-.6896.1007-.9707.3028-.5946.4276-.8926 1.2249-.8926 2.3906 0 .3515.0469.67.1406.957.1347.41.3487.7335.6387.9707.3075.252.669.379 1.0879.379.495 0 .9034-.1574 1.2226-.4708v.373H24c-.1347-.1492-.2012-.4072-.2012-.7733v-6.168Zm-9.6328.2988c-.785 0-1.463.2873-2.0372.8613-.6209.621-.9316 1.4593-.9316 2.5137 0 .9402.253 1.7238.7598 2.3535.5447.6795 1.2746 1.0196 2.1914 1.0196.577 0 1.0987-.131 1.5644-.3946.2636-.1494.414-.22.4492-.211l-.7304-1.1952c-.3456.3807-.7404.5703-1.1856.5703-.249 0-.4834-.0782-.703-.2363-.4717-.3398-.7071-.9749-.7071-1.9063 0-.328.0322-.628.0996-.9004.205-.8318.6447-1.248 1.3183-1.248.4306 0 .7755.1641 1.0332.4922l.7872-1.1426c-.085-.009-.1964-.0508-.334-.127-.536-.2987-1.0617-.4492-1.5742-.4492zM.5605 9.175H2.625c-.164.164-.2461.4474-.246.8515v1.6133l1.2616-1.5957c.2578-.325.3867-.5674.3867-.7285 0-.0585-.0088-.1054-.0234-.1406h2.2012c-.167.0937-.375.2901-.627.5918-.0673.079-.1856.2247-.3554.4355L3.5703 12.259l1.9727 2.7148c.12.164.2725.3497.457.5547.0498.0527.1211.1144.2148.1875H3.957a.7156.7156 0 0 0 .0254-.1797c0-.1611-.1114-.3946-.334-.6992L2.379 13.1066v1.754c0 .407.082.6914.2461.8554H.5605c.1143-.1142.1866-.2442.2188-.3906.0175-.082.0273-.2355.0273-.461v-4.8379c0-.2255-.0098-.3789-.0273-.4609-.0322-.1464-.1045-.2764-.2188-.3906zm16.2032 1.6386c-.2373 0-.4561.0195-.6582.0605l-.5977.1504c-.2812.0703-.4717.1055-.5683.1055l.4355 1.0488c.41-.2167.8019-.3242 1.1738-.3242.4364 0 .6543.2511.6543.752-.2167-.0116-.3691-.0176-.457-.0176-.618 0-1.0987.083-1.4414.25-.5946.29-.8906.7384-.8906 1.3476 0 .2666.0469.506.1406.7168.1318.2959.3409.5244.6308.6856.2754.1522.5831.2276.92.2246.4745-.006.8623-.1632 1.164-.4707v.373h1.6387c-.0996-.1083-.1621-.2276-.1855-.3594-.0117-.0644-.0176-.2031-.0176-.414V12.794c0-.4305-.0587-.791-.1758-1.084-.2402-.5974-.8284-.8964-1.7656-.8964zm-10.211.0957h1.7266v4.0332c0 .211.0059.3497.0176.4141.0234.1318.086.251.1855.3594H6.5488c.0996-.1083.1602-.2276.1836-.3594.0117-.0644.0176-.2032.0176-.414V11.675c0-.2109-.0059-.3467-.0176-.4082-.0234-.1289-.083-.249-.1797-.3574zM21.623 11.929c.2373 0 .4532.082.6465.246v2.1934c-.2284.1845-.4668.2754-.7129.2754-.4715 0-.707-.4025-.707-1.211 0-1.0016.258-1.5038.7734-1.5038zm-4.793 1.6484c.123 0 .2403.009.3516.0293v.7617c-.1464.252-.38.377-.6992.377-.1728 0-.3154-.046-.4297-.1367-.126-.0996-.1894-.2315-.1894-.3985 0-.2226.1114-.3906.334-.502.1757-.0878.3867-.1308.6328-.1308z" }) + ] + } + ); +}); + +export { SiKicad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKick.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKick.cjs new file mode 100644 index 000000000..6ce460de8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKick.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#53FC19"; +const SiKick = React__namespace.forwardRef(function SiKick2({ title = "Kick", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.333 0h8v5.333H12V2.667h2.667V0h8v8H20v2.667h-2.667v2.666H20V16h2.667v8h-8v-2.667H12v-2.666H9.333V24h-8Z" }) + ] + } + ); +}); + +exports.default = SiKick; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKick.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKick.d.ts new file mode 100644 index 000000000..eb61c074d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKick.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#53FC19"; +declare const SiKick: IconType; +export { SiKick as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKick.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKick.mjs new file mode 100644 index 000000000..8d3f1162a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKick.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#53FC19"; +const SiKick = React.forwardRef(function SiKick2({ title = "Kick", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.333 0h8v5.333H12V2.667h2.667V0h8v8H20v2.667h-2.667v2.666H20V16h2.667v8h-8v-2.667H12v-2.666H9.333V24h-8Z" }) + ] + } + ); +}); + +export { SiKick as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.cjs new file mode 100644 index 000000000..91ce9fe6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05CE78"; +const SiKickstarter = React__namespace.forwardRef(function SiKickstarter2({ title = "Kickstarter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.168 0c-3.2 0-5.797 2.579-5.797 5.758v12.484C1.371 21.42 3.968 24 7.168 24c1.981 0 3.716-.978 4.768-2.479l.794.79c2.26 2.245 5.943 2.245 8.203 0a5.724 5.724 0 001.696-4.075 5.724 5.724 0 00-1.696-4.074l-2.182-2.168 2.182-2.156a5.724 5.724 0 001.696-4.074 5.724 5.724 0 00-1.696-4.074c-2.26-2.246-5.942-2.246-8.203 0l-.794.789A5.797 5.797 0 007.168 0Z" }) + ] + } + ); +}); + +exports.default = SiKickstarter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.d.ts new file mode 100644 index 000000000..5af2b595e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05CE78"; +declare const SiKickstarter: IconType; +export { SiKickstarter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.mjs new file mode 100644 index 000000000..afa76760e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKickstarter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05CE78"; +const SiKickstarter = React.forwardRef(function SiKickstarter2({ title = "Kickstarter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.168 0c-3.2 0-5.797 2.579-5.797 5.758v12.484C1.371 21.42 3.968 24 7.168 24c1.981 0 3.716-.978 4.768-2.479l.794.79c2.26 2.245 5.943 2.245 8.203 0a5.724 5.724 0 001.696-4.075 5.724 5.724 0 00-1.696-4.074l-2.182-2.168 2.182-2.156a5.724 5.724 0 001.696-4.074 5.724 5.724 0 00-1.696-4.074c-2.26-2.246-5.942-2.246-8.203 0l-.794.789A5.797 5.797 0 007.168 0Z" }) + ] + } + ); +}); + +export { SiKickstarter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKik.cjs new file mode 100644 index 000000000..3aabbb54d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#82BC23"; +const SiKik = React__namespace.forwardRef(function SiKik2({ title = "Kik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.482 16.752c-.01.688-.56 1.242-1.238 1.242-.689 0-1.23-.541-1.244-1.23h-.016v-6.243H9v-.029c0-.693.556-1.256 1.237-1.256s1.236.563 1.236 1.258v.045h.016v6.225h-.016l.009-.012zm11.137-4.889c.75 0 1.381.618 1.381 1.377 0 .76-.631 1.375-1.381 1.375-.766 0-1.395-.615-1.395-1.379 0-.766.615-1.381 1.379-1.381l.016.008zm-2.084 4.186c.121.195.193.432.193.686 0 .703-.553 1.26-1.244 1.26-.463 0-.869-.256-1.08-.631l-2.053-2.746-.631.586v1.635h-.014c-.039.652-.57 1.168-1.225 1.168-.674 0-1.221-.553-1.221-1.238v-.025h-.016v-9.45h.027v-.047c0-.69.551-1.253 1.23-1.253.674 0 1.225.562 1.225 1.253v.07h.016l.01 4.597 2.311-2.261c.229-.255.559-.405.928-.405.689 0 1.248.57 1.248 1.26 0 .346-.133.646-.344.871l.012.015-1.621 1.605 2.281 3.061-.016.016-.016-.027zm-13.246 0c.12.195.195.432.195.686 0 .703-.555 1.26-1.244 1.26-.466 0-.871-.256-1.081-.631l-2.054-2.746-.63.586v1.631H2.46c-.036.654-.57 1.17-1.221 1.17-.676 0-1.225-.555-1.225-1.238v-.027H0V7.29h.031c-.004-.015-.004-.029-.004-.044 0-.69.551-1.252 1.23-1.252.675 0 1.225.559 1.225 1.25v.07h.016l.01 4.6 2.311-2.261c.23-.255.562-.405.931-.405.687 0 1.245.57 1.245 1.26 0 .33-.131.646-.346.871l.016.015-1.627 1.605 2.271 3.061-.016.016-.004-.027z" }) + ] + } + ); +}); + +exports.default = SiKik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKik.d.ts new file mode 100644 index 000000000..e670ac51d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#82BC23"; +declare const SiKik: IconType; +export { SiKik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKik.mjs new file mode 100644 index 000000000..864428113 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#82BC23"; +const SiKik = React.forwardRef(function SiKik2({ title = "Kik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.482 16.752c-.01.688-.56 1.242-1.238 1.242-.689 0-1.23-.541-1.244-1.23h-.016v-6.243H9v-.029c0-.693.556-1.256 1.237-1.256s1.236.563 1.236 1.258v.045h.016v6.225h-.016l.009-.012zm11.137-4.889c.75 0 1.381.618 1.381 1.377 0 .76-.631 1.375-1.381 1.375-.766 0-1.395-.615-1.395-1.379 0-.766.615-1.381 1.379-1.381l.016.008zm-2.084 4.186c.121.195.193.432.193.686 0 .703-.553 1.26-1.244 1.26-.463 0-.869-.256-1.08-.631l-2.053-2.746-.631.586v1.635h-.014c-.039.652-.57 1.168-1.225 1.168-.674 0-1.221-.553-1.221-1.238v-.025h-.016v-9.45h.027v-.047c0-.69.551-1.253 1.23-1.253.674 0 1.225.562 1.225 1.253v.07h.016l.01 4.597 2.311-2.261c.229-.255.559-.405.928-.405.689 0 1.248.57 1.248 1.26 0 .346-.133.646-.344.871l.012.015-1.621 1.605 2.281 3.061-.016.016-.016-.027zm-13.246 0c.12.195.195.432.195.686 0 .703-.555 1.26-1.244 1.26-.466 0-.871-.256-1.081-.631l-2.054-2.746-.63.586v1.631H2.46c-.036.654-.57 1.17-1.221 1.17-.676 0-1.225-.555-1.225-1.238v-.027H0V7.29h.031c-.004-.015-.004-.029-.004-.044 0-.69.551-1.252 1.23-1.252.675 0 1.225.559 1.225 1.25v.07h.016l.01 4.6 2.311-2.261c.23-.255.562-.405.931-.405.687 0 1.245.57 1.245 1.26 0 .33-.131.646-.346.871l.016.015-1.627 1.605 2.271 3.061-.016.016-.004-.027z" }) + ] + } + ); +}); + +export { SiKik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.cjs new file mode 100644 index 000000000..d77adf39d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiKingstontechnology = React__namespace.forwardRef(function SiKingstontechnology2({ title = "Kingston Technology", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.123.0007c-.5442-.0038-1.0301.008-1.4389.0204C7.185.1697 4.2115 1.7057 4.2115 1.7057s-.2967.1988-.148.8428c0 0 .0993.7921.1983 1.139l.0494.0996c-.099.099-.4958.2973-.6445.4954-.3468.446-.0493 2.4772-.0493 2.4772.3468 2.1303.6938 2.5265.6938 2.5265s.4956.6436 1.1892 1.0895c.2973.1486.2477.4954.2477.4954L3.3203 24h16.3492l-3.4187-7.4808c.6936 0 2.1306.3464 2.9232-1.883.7432-2.1303 1.1397-5.3502 1.1893-6.2915.099-.9414-.0999-2.9233-.0503-3.4187 0-.1486.3473-.6442.3473-.9415.0496-.4459-.0006-.8418-.0996-1.585-.0496-.2972-.0983-.644-.1974-.9908-.0496-.2478-.0999-.3964-.298-.4955C17.91.1701 15.7555.0124 14.123.0007Zm-1.4389.4171c.545 0 5.1027-.0492 7.233.8922.1983.1486.0498.8915-.0493 1.2879-.0495.2972-.3967.3967-.3967.3967-.3468.099-.446.3464-.446.3464s.4458 4.3102.4954 4.4589c.0495.1981-.1485.1981-.5448.2477-.1982 0-2.4772.0493-2.4772.0493s-.4956-.0491-.446-.3464c0-.1981.0992-.595.1983-.595h.4461s.991.0497.6938-.0494l-1.0402-.2477s-.2483.0004-.3474.149c-.0495.1486-.297.9415-.297.9415s-.0002.0491.0493.0987c.0495.0495 2.5768 1.883 2.5768 1.883s-2.1311-.199-2.7752-.0503c-.644.1486-1.9813.8422-2.8235.9908-.8422.1487-3.9636.4955-4.1618.4955l-1.2386-5.35s-.1484-1.3375-1.5356-1.288c-1.0404.0495-1.189.2967-1.2386.3958-.099.1981 0 .3967 0 .3967l3.3693 5.7468s-2.2792-1.0896-3.171-2.3282c-.4954-.644-.9416-3.8645-.6444-4.4095.2973-.4954 2.1306-.8915 2.9233-.7925.3963.0496.7433.4452.9415.6929.0495.099.0985.0501.148.0996 0 0-.1982-1.2383-.9909-1.2879-1.1394-.099-2.3774.3464-2.3774.3464s-.0995-.0004-.149-.149c-.0496-.1982-.1984-1.2386-.1984-1.2386s.0495-.198.2477-.297c0 0 3.2209-1.4863 8.0265-1.4863zm.6435 1.4273c-.0704.003-.0987.0096-.0987.0096-2.0808.8423-3.765 2.675-3.765 2.5759.1981.0495.594 0 .594 0 1.8332-1.5854 3.4187-2.2295 3.4187-2.2295 1.3377 0 3.6165.7927 3.765.7432.0496 0 .0498-.2475-.0493-.297-.2477-.0496-.7433-.2973-1.6846-.4955-1.3748-.2973-1.9688-.316-2.1801-.3067Zm6.788 1.3972c.1981.0496.198.049.297.148.1486.0992.0991.3966 0 .4461-.099.0991-.1484-.0988-.7925-.0493 0 0 .2973-.5943.4955-.5448zm-4.8711.1016c-.3623-.0186-.8641.0469-1.4215.1955-.7431.1982-2.2294.9415-2.2294.9415.5945.2477 1.5861.3468 2.5275.4954 1.0404.0991 2.179-.446 2.179-.446-.0495-.1487-.3963-1.0408-.743-1.14-.0868-.0247-.1919-.0402-.3126-.0464zm.7867 7.4015c.7242.0174 1.5759.1012 2.449.3241 0 0 .4957.3964.4461.7432 0 0-3.567.198-4.9543-.9416 0 0 .852-.1548 2.0592-.1257zm-9.7383.176 1.5356 1.0403 2.5265 11.5429H3.9145Zm11.8032 1.4554a8.479 8.479 0 0 1 .7315.031s.2973.2475-.4954 1.0401c-.9909.9414-2.7256 1.6843-4.2615 1.288 0 0 .5664-2.351 4.0254-2.3591zm-8.0875 4.1918s3.1216 1.9323 3.617 2.6755l.3464 4.3108h-2.2787Zm5.3007 3.9634s1.8335 1.6852 2.3785 3.0229h-3.0713z" }) + ] + } + ); +}); + +exports.default = SiKingstontechnology; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.d.ts new file mode 100644 index 000000000..c4a03d251 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiKingstontechnology: IconType; +export { SiKingstontechnology as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.mjs new file mode 100644 index 000000000..283db0fba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKingstontechnology.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiKingstontechnology = React.forwardRef(function SiKingstontechnology2({ title = "Kingston Technology", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.123.0007c-.5442-.0038-1.0301.008-1.4389.0204C7.185.1697 4.2115 1.7057 4.2115 1.7057s-.2967.1988-.148.8428c0 0 .0993.7921.1983 1.139l.0494.0996c-.099.099-.4958.2973-.6445.4954-.3468.446-.0493 2.4772-.0493 2.4772.3468 2.1303.6938 2.5265.6938 2.5265s.4956.6436 1.1892 1.0895c.2973.1486.2477.4954.2477.4954L3.3203 24h16.3492l-3.4187-7.4808c.6936 0 2.1306.3464 2.9232-1.883.7432-2.1303 1.1397-5.3502 1.1893-6.2915.099-.9414-.0999-2.9233-.0503-3.4187 0-.1486.3473-.6442.3473-.9415.0496-.4459-.0006-.8418-.0996-1.585-.0496-.2972-.0983-.644-.1974-.9908-.0496-.2478-.0999-.3964-.298-.4955C17.91.1701 15.7555.0124 14.123.0007Zm-1.4389.4171c.545 0 5.1027-.0492 7.233.8922.1983.1486.0498.8915-.0493 1.2879-.0495.2972-.3967.3967-.3967.3967-.3468.099-.446.3464-.446.3464s.4458 4.3102.4954 4.4589c.0495.1981-.1485.1981-.5448.2477-.1982 0-2.4772.0493-2.4772.0493s-.4956-.0491-.446-.3464c0-.1981.0992-.595.1983-.595h.4461s.991.0497.6938-.0494l-1.0402-.2477s-.2483.0004-.3474.149c-.0495.1486-.297.9415-.297.9415s-.0002.0491.0493.0987c.0495.0495 2.5768 1.883 2.5768 1.883s-2.1311-.199-2.7752-.0503c-.644.1486-1.9813.8422-2.8235.9908-.8422.1487-3.9636.4955-4.1618.4955l-1.2386-5.35s-.1484-1.3375-1.5356-1.288c-1.0404.0495-1.189.2967-1.2386.3958-.099.1981 0 .3967 0 .3967l3.3693 5.7468s-2.2792-1.0896-3.171-2.3282c-.4954-.644-.9416-3.8645-.6444-4.4095.2973-.4954 2.1306-.8915 2.9233-.7925.3963.0496.7433.4452.9415.6929.0495.099.0985.0501.148.0996 0 0-.1982-1.2383-.9909-1.2879-1.1394-.099-2.3774.3464-2.3774.3464s-.0995-.0004-.149-.149c-.0496-.1982-.1984-1.2386-.1984-1.2386s.0495-.198.2477-.297c0 0 3.2209-1.4863 8.0265-1.4863zm.6435 1.4273c-.0704.003-.0987.0096-.0987.0096-2.0808.8423-3.765 2.675-3.765 2.5759.1981.0495.594 0 .594 0 1.8332-1.5854 3.4187-2.2295 3.4187-2.2295 1.3377 0 3.6165.7927 3.765.7432.0496 0 .0498-.2475-.0493-.297-.2477-.0496-.7433-.2973-1.6846-.4955-1.3748-.2973-1.9688-.316-2.1801-.3067Zm6.788 1.3972c.1981.0496.198.049.297.148.1486.0992.0991.3966 0 .4461-.099.0991-.1484-.0988-.7925-.0493 0 0 .2973-.5943.4955-.5448zm-4.8711.1016c-.3623-.0186-.8641.0469-1.4215.1955-.7431.1982-2.2294.9415-2.2294.9415.5945.2477 1.5861.3468 2.5275.4954 1.0404.0991 2.179-.446 2.179-.446-.0495-.1487-.3963-1.0408-.743-1.14-.0868-.0247-.1919-.0402-.3126-.0464zm.7867 7.4015c.7242.0174 1.5759.1012 2.449.3241 0 0 .4957.3964.4461.7432 0 0-3.567.198-4.9543-.9416 0 0 .852-.1548 2.0592-.1257zm-9.7383.176 1.5356 1.0403 2.5265 11.5429H3.9145Zm11.8032 1.4554a8.479 8.479 0 0 1 .7315.031s.2973.2475-.4954 1.0401c-.9909.9414-2.7256 1.6843-4.2615 1.288 0 0 .5664-2.351 4.0254-2.3591zm-8.0875 4.1918s3.1216 1.9323 3.617 2.6755l.3464 4.3108h-2.2787Zm5.3007 3.9634s1.8335 1.6852 2.3785 3.0229h-3.0713z" }) + ] + } + ); +}); + +export { SiKingstontechnology as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.cjs new file mode 100644 index 000000000..74729dc65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5500"; +const SiKinopoisk = React__namespace.forwardRef(function SiKinopoisk2({ title = "Kinopoisk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.049 0C5.45 0 .104 5.373.104 12S5.45 24 12.049 24c3.928 0 7.414-1.904 9.592-4.844l-9.803-5.174 6.256 6.418h-3.559l-4.373-6.086V20.4h-2.89V3.6h2.89v6.095L14.535 3.6h3.559l-6.422 6.627 9.98-5.368C19.476 1.911 15.984 0 12.05 0zm10.924 7.133-9.994 4.027 10.917-.713a11.963 11.963 0 0 0-.923-3.314zm-10.065 5.68 10.065 4.054c.458-1.036.774-2.149.923-3.314l-10.988-.74z" }) + ] + } + ); +}); + +exports.default = SiKinopoisk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.d.ts new file mode 100644 index 000000000..adafaee2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5500"; +declare const SiKinopoisk: IconType; +export { SiKinopoisk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.mjs new file mode 100644 index 000000000..eb01ff513 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKinopoisk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5500"; +const SiKinopoisk = React.forwardRef(function SiKinopoisk2({ title = "Kinopoisk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.049 0C5.45 0 .104 5.373.104 12S5.45 24 12.049 24c3.928 0 7.414-1.904 9.592-4.844l-9.803-5.174 6.256 6.418h-3.559l-4.373-6.086V20.4h-2.89V3.6h2.89v6.095L14.535 3.6h3.559l-6.422 6.627 9.98-5.368C19.476 1.911 15.984 0 12.05 0zm10.924 7.133-9.994 4.027 10.917-.713a11.963 11.963 0 0 0-.923-3.314zm-10.065 5.68 10.065 4.054c.458-1.036.774-2.149.923-3.314l-10.988-.74z" }) + ] + } + ); +}); + +export { SiKinopoisk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.cjs new file mode 100644 index 000000000..769da173d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5333ED"; +const SiKinsta = React__namespace.forwardRef(function SiKinsta2({ title = "Kinsta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.2228 10.4037a1.9856 1.9856 0 0 0-.6276-.4289 1.9113 1.9113 0 0 0-.7624-.1548 1.9704 1.9704 0 0 0-.72.1348 1.9909 1.9909 0 0 0-.6166.3812l-.3169-.3678a.1816.1816 0 0 0-.1358-.0624h-.01a.1796.1796 0 0 0-.1796.18v4.0695a.1806.1806 0 0 0 .1796.181h.7662a.1806.1806 0 0 0 .1802-.181v-2.3478a.831.831 0 0 1 .0658-.3288.843.843 0 0 1 .181-.2706.8525.8525 0 0 1 .6066-.2478.8134.8134 0 0 1 .3255.0658.8515.8515 0 0 1 .4493.4522.8406.8406 0 0 1 .0658.3288v2.3511a.181.181 0 0 0 .1802.181h.7652a.1806.1806 0 0 0 .1797-.181v-2.3506a1.9537 1.9537 0 0 0-.1544-.772 2.0218 2.0218 0 0 0-.4217-.6318zm8.692-.4865h-3.0191a.1801.1801 0 0 0-.1792.1806v.7624a.1796.1796 0 0 0 .1792.1801h.1906a.1806.1806 0 0 1 .1801.1806v1.135a1.9504 1.9504 0 0 0 .154.7696 2.009 2.009 0 0 0 1.055 1.0574 1.906 1.906 0 0 0 .767.1554h.6744a.1806.1806 0 0 0 .18-.1811v-.7624a.1801.1801 0 0 0-.18-.1806h-.6762a.8396.8396 0 0 1-.3336-.0681.8749.8749 0 0 1-.2716-.1835.8477.8477 0 0 1-.1815-.2711.8387.8387 0 0 1-.0653-.3336v-1.135a.1806.1806 0 0 1 .1796-.1806h1.348a.1801.1801 0 0 0 .1802-.1801v-.7625a.1806.1806 0 0 0-.1816-.1825zm4.9081-.082h-.008a.1787.1787 0 0 0-.1396.0662l-.2645.3169a.1792.1792 0 0 1-.2535.0229 2.9934 2.9934 0 0 0-.202-.1568 2.5312 2.5312 0 0 0-.3774-.2235 2.2239 2.2239 0 0 0-.4079-.1491 1.7264 1.7264 0 0 0-.425-.0538 2.2506 2.2506 0 0 0-.8768.172 2.1862 2.1862 0 0 0-.719.4803 2.281 2.281 0 0 0-.4847.7424 2.4826 2.4826 0 0 0-.1768.9497 2.5998 2.5998 0 0 0 .1768.9888 2.1538 2.1538 0 0 0 .4846.7343 2.0795 2.0795 0 0 0 .7176.457 2.426 2.426 0 0 0 .8768.1577 1.684 1.684 0 0 0 .4227-.0543 2.3054 2.3054 0 0 0 .4064-.1468 2.4864 2.4864 0 0 0 .3774-.2197 3.3448 3.3448 0 0 0 .1959-.1472.1787.1787 0 0 1 .2583.0348l.2697.375a.1796.1796 0 0 0 .326-.1058v-4.0608a.1801.1801 0 0 0-.1788-.1806zm-1.0426 2.616a1.2947 1.2947 0 0 1-.2411.3846 1.2051 1.2051 0 0 1-.357.2687.9768.9768 0 0 1-.4354.101 1.2037 1.2037 0 0 1-.4346-.0785.9768.9768 0 0 1-.3545-.2321 1.086 1.086 0 0 1-.2383-.3779 1.5753 1.5753 0 0 1 0-1.0307 1.1022 1.1022 0 0 1 .2383-.3778.9864.9864 0 0 1 .3545-.2316 1.2075 1.2075 0 0 1 .4346-.0786.9711.9711 0 0 1 .4355.101 1.185 1.185 0 0 1 .3569.2687 1.2961 1.2961 0 0 1 .2411.3846 1.1913 1.1913 0 0 1 0 .8996zM.9561 9.9091H.1808a.1801.1801 0 0 0-.1806.18v4.0695a.181.181 0 0 0 .1806.181h.7738a.1806.1806 0 0 0 .1802-.181v-4.0694A.1801.1801 0 0 0 .955 9.909zm3.1688.3068a.181.181 0 0 0-.1363-.2987h-.8692a.1787.1787 0 0 0-.1362.0634L1.2367 12.011a.1796.1796 0 0 0 0 .2382l1.7465 2.03a.1787.1787 0 0 0 .1362.0629h.8682a.181.181 0 0 0 .1363-.2993l-1.551-1.794a.1806.1806 0 0 1 0-.2383zm1.6873-.3073h-.01a.1792.1792 0 0 0-.1363.0629l-.0362.0424-.72.8343a.1787.1787 0 0 0-.0438.1182v3.1927a.1801.1801 0 0 0 .1797.1805h.7652a.1806.1806 0 0 0 .1797-.1805v-4.07a.1806.1806 0 0 0-.1797-.1805Zm9.2043 2.0728a1.3819 1.3819 0 0 0-.4455-.2711 1.5248 1.5248 0 0 0-.5442-.0953H12.854a.2664.2664 0 0 1-.1982-.0848.283.283 0 0 1-.0824-.205.282.282 0 0 1 .2806-.281h2.1015a.1801.1801 0 0 0 .1796-.1802v-.7662a.1801.1801 0 0 0-.1796-.1806h-2.102a1.3819 1.3819 0 0 0-.5489.1096 1.391 1.391 0 0 0-.7438.7462 1.4367 1.4367 0 0 0 0 1.1007 1.4167 1.4167 0 0 0 .7438.753 1.3571 1.3571 0 0 0 .549.1114h1.2093a.2411.2411 0 0 1 .2416.2159.2383.2383 0 0 1-.2382.2597h-2.436a.1796.1796 0 0 0-.1791.1801v.7624a.1796.1796 0 0 0 .1792.1801h2.394a1.3905 1.3905 0 0 0 .9897-.4112 1.4624 1.4624 0 0 0 .3011-.447 1.3643 1.3643 0 0 0 .1115-.548 1.2666 1.2666 0 0 0-.1115-.5332 1.3009 1.3009 0 0 0-.2997-.415z" }) + ] + } + ); +}); + +exports.default = SiKinsta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.d.ts new file mode 100644 index 000000000..603e1a917 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5333ED"; +declare const SiKinsta: IconType; +export { SiKinsta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.mjs new file mode 100644 index 000000000..ef6a894d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKinsta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5333ED"; +const SiKinsta = React.forwardRef(function SiKinsta2({ title = "Kinsta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.2228 10.4037a1.9856 1.9856 0 0 0-.6276-.4289 1.9113 1.9113 0 0 0-.7624-.1548 1.9704 1.9704 0 0 0-.72.1348 1.9909 1.9909 0 0 0-.6166.3812l-.3169-.3678a.1816.1816 0 0 0-.1358-.0624h-.01a.1796.1796 0 0 0-.1796.18v4.0695a.1806.1806 0 0 0 .1796.181h.7662a.1806.1806 0 0 0 .1802-.181v-2.3478a.831.831 0 0 1 .0658-.3288.843.843 0 0 1 .181-.2706.8525.8525 0 0 1 .6066-.2478.8134.8134 0 0 1 .3255.0658.8515.8515 0 0 1 .4493.4522.8406.8406 0 0 1 .0658.3288v2.3511a.181.181 0 0 0 .1802.181h.7652a.1806.1806 0 0 0 .1797-.181v-2.3506a1.9537 1.9537 0 0 0-.1544-.772 2.0218 2.0218 0 0 0-.4217-.6318zm8.692-.4865h-3.0191a.1801.1801 0 0 0-.1792.1806v.7624a.1796.1796 0 0 0 .1792.1801h.1906a.1806.1806 0 0 1 .1801.1806v1.135a1.9504 1.9504 0 0 0 .154.7696 2.009 2.009 0 0 0 1.055 1.0574 1.906 1.906 0 0 0 .767.1554h.6744a.1806.1806 0 0 0 .18-.1811v-.7624a.1801.1801 0 0 0-.18-.1806h-.6762a.8396.8396 0 0 1-.3336-.0681.8749.8749 0 0 1-.2716-.1835.8477.8477 0 0 1-.1815-.2711.8387.8387 0 0 1-.0653-.3336v-1.135a.1806.1806 0 0 1 .1796-.1806h1.348a.1801.1801 0 0 0 .1802-.1801v-.7625a.1806.1806 0 0 0-.1816-.1825zm4.9081-.082h-.008a.1787.1787 0 0 0-.1396.0662l-.2645.3169a.1792.1792 0 0 1-.2535.0229 2.9934 2.9934 0 0 0-.202-.1568 2.5312 2.5312 0 0 0-.3774-.2235 2.2239 2.2239 0 0 0-.4079-.1491 1.7264 1.7264 0 0 0-.425-.0538 2.2506 2.2506 0 0 0-.8768.172 2.1862 2.1862 0 0 0-.719.4803 2.281 2.281 0 0 0-.4847.7424 2.4826 2.4826 0 0 0-.1768.9497 2.5998 2.5998 0 0 0 .1768.9888 2.1538 2.1538 0 0 0 .4846.7343 2.0795 2.0795 0 0 0 .7176.457 2.426 2.426 0 0 0 .8768.1577 1.684 1.684 0 0 0 .4227-.0543 2.3054 2.3054 0 0 0 .4064-.1468 2.4864 2.4864 0 0 0 .3774-.2197 3.3448 3.3448 0 0 0 .1959-.1472.1787.1787 0 0 1 .2583.0348l.2697.375a.1796.1796 0 0 0 .326-.1058v-4.0608a.1801.1801 0 0 0-.1788-.1806zm-1.0426 2.616a1.2947 1.2947 0 0 1-.2411.3846 1.2051 1.2051 0 0 1-.357.2687.9768.9768 0 0 1-.4354.101 1.2037 1.2037 0 0 1-.4346-.0785.9768.9768 0 0 1-.3545-.2321 1.086 1.086 0 0 1-.2383-.3779 1.5753 1.5753 0 0 1 0-1.0307 1.1022 1.1022 0 0 1 .2383-.3778.9864.9864 0 0 1 .3545-.2316 1.2075 1.2075 0 0 1 .4346-.0786.9711.9711 0 0 1 .4355.101 1.185 1.185 0 0 1 .3569.2687 1.2961 1.2961 0 0 1 .2411.3846 1.1913 1.1913 0 0 1 0 .8996zM.9561 9.9091H.1808a.1801.1801 0 0 0-.1806.18v4.0695a.181.181 0 0 0 .1806.181h.7738a.1806.1806 0 0 0 .1802-.181v-4.0694A.1801.1801 0 0 0 .955 9.909zm3.1688.3068a.181.181 0 0 0-.1363-.2987h-.8692a.1787.1787 0 0 0-.1362.0634L1.2367 12.011a.1796.1796 0 0 0 0 .2382l1.7465 2.03a.1787.1787 0 0 0 .1362.0629h.8682a.181.181 0 0 0 .1363-.2993l-1.551-1.794a.1806.1806 0 0 1 0-.2383zm1.6873-.3073h-.01a.1792.1792 0 0 0-.1363.0629l-.0362.0424-.72.8343a.1787.1787 0 0 0-.0438.1182v3.1927a.1801.1801 0 0 0 .1797.1805h.7652a.1806.1806 0 0 0 .1797-.1805v-4.07a.1806.1806 0 0 0-.1797-.1805Zm9.2043 2.0728a1.3819 1.3819 0 0 0-.4455-.2711 1.5248 1.5248 0 0 0-.5442-.0953H12.854a.2664.2664 0 0 1-.1982-.0848.283.283 0 0 1-.0824-.205.282.282 0 0 1 .2806-.281h2.1015a.1801.1801 0 0 0 .1796-.1802v-.7662a.1801.1801 0 0 0-.1796-.1806h-2.102a1.3819 1.3819 0 0 0-.5489.1096 1.391 1.391 0 0 0-.7438.7462 1.4367 1.4367 0 0 0 0 1.1007 1.4167 1.4167 0 0 0 .7438.753 1.3571 1.3571 0 0 0 .549.1114h1.2093a.2411.2411 0 0 1 .2416.2159.2383.2383 0 0 1-.2382.2597h-2.436a.1796.1796 0 0 0-.1791.1801v.7624a.1796.1796 0 0 0 .1792.1801h2.394a1.3905 1.3905 0 0 0 .9897-.4112 1.4624 1.4624 0 0 0 .3011-.447 1.3643 1.3643 0 0 0 .1115-.548 1.2666 1.2666 0 0 0-.1115-.5332 1.3009 1.3009 0 0 0-.2997-.415z" }) + ] + } + ); +}); + +export { SiKinsta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.cjs new file mode 100644 index 000000000..e5545330a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiKirby = React__namespace.forwardRef(function SiKirby2({ title = "Kirby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.571 12l-2.857 1.48v.234h2.857V16H7.43v-2.286h2.857v-.25L7.429 12V9.143L12 11.598l4.571-2.455M12 0l10.286 5.999V18L12 24 1.714 18.001V6zM2.857 6.682v10.636L12 22.651l9.143-5.333V6.682L12 1.349Z" }) + ] + } + ); +}); + +exports.default = SiKirby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.d.ts new file mode 100644 index 000000000..71417591d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiKirby: IconType; +export { SiKirby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.mjs new file mode 100644 index 000000000..5d350c841 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKirby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiKirby = React.forwardRef(function SiKirby2({ title = "Kirby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.571 12l-2.857 1.48v.234h2.857V16H7.43v-2.286h2.857v-.25L7.429 12V9.143L12 11.598l4.571-2.455M12 0l10.286 5.999V18L12 24 1.714 18.001V6zM2.857 6.682v10.636L12 22.651l9.143-5.333V6.682L12 1.349Z" }) + ] + } + ); +}); + +export { SiKirby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKit.cjs new file mode 100644 index 000000000..1ae173ee3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiKit = React__namespace.forwardRef(function SiKit2({ title = "Kit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.5 11.633-2.434 2.408V8.687a.53.53 0 0 0-.533-.527.53.53 0 0 0-.533.527v6.624a.528.528 0 0 0 .532.526.533.533 0 0 0 .377-.153l2.974-2.939 2.974 2.94a.535.535 0 0 0 .754 0 .522.522 0 0 0 0-.746l-2.974-2.938L7.61 9.06a.522.522 0 0 0 0-.745.538.538 0 0 0-.753 0l-3.344 3.307c-.003 0-.005.003-.007.005l-.007.006v-.001zm8.826 4.206a.53.53 0 0 1-.533-.526V8.688a.53.53 0 0 1 .533-.528.53.53 0 0 1 .533.528v6.624a.53.53 0 0 1-.533.526v.001zm7.257-6.624v6.098c0 .29.238.526.532.526a.53.53 0 0 0 .533-.526V9.215h2.818A.53.53 0 0 0 24 8.688a.53.53 0 0 0-.533-.527h-6.702a.53.53 0 0 0-.533.527.53.53 0 0 0 .533.527h2.819-.001z" }) + ] + } + ); +}); + +exports.default = SiKit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKit.d.ts new file mode 100644 index 000000000..ccd376396 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiKit: IconType; +export { SiKit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKit.mjs new file mode 100644 index 000000000..1db743087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiKit = React.forwardRef(function SiKit2({ title = "Kit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.5 11.633-2.434 2.408V8.687a.53.53 0 0 0-.533-.527.53.53 0 0 0-.533.527v6.624a.528.528 0 0 0 .532.526.533.533 0 0 0 .377-.153l2.974-2.939 2.974 2.94a.535.535 0 0 0 .754 0 .522.522 0 0 0 0-.746l-2.974-2.938L7.61 9.06a.522.522 0 0 0 0-.745.538.538 0 0 0-.753 0l-3.344 3.307c-.003 0-.005.003-.007.005l-.007.006v-.001zm8.826 4.206a.53.53 0 0 1-.533-.526V8.688a.53.53 0 0 1 .533-.528.53.53 0 0 1 .533.528v6.624a.53.53 0 0 1-.533.526v.001zm7.257-6.624v6.098c0 .29.238.526.532.526a.53.53 0 0 0 .533-.526V9.215h2.818A.53.53 0 0 0 24 8.688a.53.53 0 0 0-.533-.527h-6.702a.53.53 0 0 0-.533.527.53.53 0 0 0 .533.527h2.819-.001z" }) + ] + } + ); +}); + +export { SiKit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.cjs new file mode 100644 index 000000000..03a9e8393 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD755C"; +const SiKitsu = React__namespace.forwardRef(function SiKitsu2({ title = "Kitsu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.429 5.441a12.478 12.478 0 0 0 1.916 2.056c.011.011.022.011.022.022.452.387 1.313.947 1.937 1.173 0 0 3.886 1.496 4.091 1.582a1.4 1.4 0 0 0 .237.075.694.694 0 0 0 .808-.549c.011-.065.022-.172.022-.248V5.161c.011-.667-.205-1.679-.398-2.239 0-.011-.011-.022-.011-.032A11.979 11.979 0 0 0 8.824.36L8.781.285a.697.697 0 0 0-.958-.162c-.054.032-.086.075-.129.119L7.608.36a4.743 4.743 0 0 0-.786 3.412 8.212 8.212 0 0 0-.775.463c-.043.032-.42.291-.71.56A4.803 4.803 0 0 0 1.87 4.3c-.043.011-.097.021-.14.032-.054.022-.107.043-.151.076a.702.702 0 0 0-.193.958l.043.075zM8.222 1.07c.366.614.678 1.249.925 1.917-.495.086-.98.215-1.453.388a3.918 3.918 0 0 1 .528-2.305zM4.658 5.463a7.467 7.467 0 0 0-.893 1.216 11.68 11.68 0 0 1-1.453-1.55 3.825 3.825 0 0 1 2.346.334zm13.048-.302a7.673 7.673 0 0 0-2.347-.474 7.583 7.583 0 0 0-3.811.818l-.215.108v3.918c0 .054 0 .258-.032.431a1.535 1.535 0 0 1-.646.98 1.545 1.545 0 0 1-1.152.247 2.618 2.618 0 0 1-.409-.118 747.6 747.6 0 0 1-3.402-1.313 8.9 8.9 0 0 0-.323-.129 30.597 30.597 0 0 0-3.822 3.832l-.075.086a.698.698 0 0 0 .538 1.098.676.676 0 0 0 .42-.118c.011-.011.022-.022.043-.032 1.313-.947 2.756-1.712 4.284-2.325a.7.7 0 0 1 .818.13.704.704 0 0 1 .054.915l-.237.388a20.277 20.277 0 0 0-1.97 4.306l-.032.129a.646.646 0 0 0 .108.538.713.713 0 0 0 .549.301.657.657 0 0 0 .42-.118c.054-.043.108-.086.151-.14l.043-.065a18.95 18.95 0 0 1 1.765-2.153 20.156 20.156 0 0 1 10.797-6.018c.032-.011.065-.011.097-.011.237.011.42.215.409.452a.424.424 0 0 1-.344.398c-3.908.829-10.948 5.469-8.483 12.208.043.108.075.172.129.269a.71.71 0 0 0 .538.301.742.742 0 0 0 .657-.398c.398-.754 1.152-1.593 3.326-2.497 6.061-2.508 7.062-6.093 7.17-8.364v-.129a7.716 7.716 0 0 0-5.016-7.451zm-6.083 17.762c-.56-1.669-.506-3.283.151-4.823 1.26 2.035 3.456 2.207 3.456 2.207-2.25.937-3.133 1.863-3.607 2.616z" }) + ] + } + ); +}); + +exports.default = SiKitsu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.d.ts new file mode 100644 index 000000000..6b6753f27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD755C"; +declare const SiKitsu: IconType; +export { SiKitsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.mjs new file mode 100644 index 000000000..7bff66d42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKitsu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD755C"; +const SiKitsu = React.forwardRef(function SiKitsu2({ title = "Kitsu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.429 5.441a12.478 12.478 0 0 0 1.916 2.056c.011.011.022.011.022.022.452.387 1.313.947 1.937 1.173 0 0 3.886 1.496 4.091 1.582a1.4 1.4 0 0 0 .237.075.694.694 0 0 0 .808-.549c.011-.065.022-.172.022-.248V5.161c.011-.667-.205-1.679-.398-2.239 0-.011-.011-.022-.011-.032A11.979 11.979 0 0 0 8.824.36L8.781.285a.697.697 0 0 0-.958-.162c-.054.032-.086.075-.129.119L7.608.36a4.743 4.743 0 0 0-.786 3.412 8.212 8.212 0 0 0-.775.463c-.043.032-.42.291-.71.56A4.803 4.803 0 0 0 1.87 4.3c-.043.011-.097.021-.14.032-.054.022-.107.043-.151.076a.702.702 0 0 0-.193.958l.043.075zM8.222 1.07c.366.614.678 1.249.925 1.917-.495.086-.98.215-1.453.388a3.918 3.918 0 0 1 .528-2.305zM4.658 5.463a7.467 7.467 0 0 0-.893 1.216 11.68 11.68 0 0 1-1.453-1.55 3.825 3.825 0 0 1 2.346.334zm13.048-.302a7.673 7.673 0 0 0-2.347-.474 7.583 7.583 0 0 0-3.811.818l-.215.108v3.918c0 .054 0 .258-.032.431a1.535 1.535 0 0 1-.646.98 1.545 1.545 0 0 1-1.152.247 2.618 2.618 0 0 1-.409-.118 747.6 747.6 0 0 1-3.402-1.313 8.9 8.9 0 0 0-.323-.129 30.597 30.597 0 0 0-3.822 3.832l-.075.086a.698.698 0 0 0 .538 1.098.676.676 0 0 0 .42-.118c.011-.011.022-.022.043-.032 1.313-.947 2.756-1.712 4.284-2.325a.7.7 0 0 1 .818.13.704.704 0 0 1 .054.915l-.237.388a20.277 20.277 0 0 0-1.97 4.306l-.032.129a.646.646 0 0 0 .108.538.713.713 0 0 0 .549.301.657.657 0 0 0 .42-.118c.054-.043.108-.086.151-.14l.043-.065a18.95 18.95 0 0 1 1.765-2.153 20.156 20.156 0 0 1 10.797-6.018c.032-.011.065-.011.097-.011.237.011.42.215.409.452a.424.424 0 0 1-.344.398c-3.908.829-10.948 5.469-8.483 12.208.043.108.075.172.129.269a.71.71 0 0 0 .538.301.742.742 0 0 0 .657-.398c.398-.754 1.152-1.593 3.326-2.497 6.061-2.508 7.062-6.093 7.17-8.364v-.129a7.716 7.716 0 0 0-5.016-7.451zm-6.083 17.762c-.56-1.669-.506-3.283.151-4.823 1.26 2.035 3.456 2.207 3.456 2.207-2.25.937-3.133 1.863-3.607 2.616z" }) + ] + } + ); +}); + +export { SiKitsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.cjs new file mode 100644 index 000000000..f64a778e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiKiwix = React__namespace.forwardRef(function SiKiwix2({ title = "Kiwix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.968 15.033c-.185-.811-1.527-3.15-4.27-5.224a27.047 27.047 0 0 0-1.33-.95c.548-2.346-2.303-5.177-5.084-3.844C11.287 3.136 9.06 2.37 7.012 2.401c-5.422.076-9.605 5.725-5.106 11.117l.01.009c.068.082.14.165.211.247.292.35.486.66.65 1.206l1.343 4.397h-.475a.794.794 0 0 0-.794.794h1.801L7.68 21.6a.79.79 0 0 0-.377-1.054l-.793-.374H8.79a.794.794 0 0 0-.793-.794H5.929a.822.822 0 0 1-.786-.581L4.08 15.305c-.266-.918.343-1.517.915-1.589.522-.064.785.272 1.03 1.088l.945 3.098h-.475a.794.794 0 0 0-.793.793h1.8l3.027 1.431a.79.79 0 0 0-.376-1.054l-.794-.375h1.674a4 4 0 0 0 6.278.805 4 4 0 0 0 0-5.654 4 4 0 0 0-6.632 4.056H8.784a.822.822 0 0 1-.787-.582l-1.569-5.157.268-.142c3.724-1.563 7.707 1.228 10.479-1.454l.018-.017c.343-.312.686-.631 1.7.004 1.092.684 3.501 2.47 4.593 5.522.002 0 .665-.236.482-1.045zm-7.662-6.764a.769.769 0 1 0-1.275.595 1.2 1.2 0 1 1 1.275-.595z" }) + ] + } + ); +}); + +exports.default = SiKiwix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.d.ts new file mode 100644 index 000000000..b547fd684 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiKiwix: IconType; +export { SiKiwix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.mjs new file mode 100644 index 000000000..41e761a80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKiwix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiKiwix = React.forwardRef(function SiKiwix2({ title = "Kiwix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.968 15.033c-.185-.811-1.527-3.15-4.27-5.224a27.047 27.047 0 0 0-1.33-.95c.548-2.346-2.303-5.177-5.084-3.844C11.287 3.136 9.06 2.37 7.012 2.401c-5.422.076-9.605 5.725-5.106 11.117l.01.009c.068.082.14.165.211.247.292.35.486.66.65 1.206l1.343 4.397h-.475a.794.794 0 0 0-.794.794h1.801L7.68 21.6a.79.79 0 0 0-.377-1.054l-.793-.374H8.79a.794.794 0 0 0-.793-.794H5.929a.822.822 0 0 1-.786-.581L4.08 15.305c-.266-.918.343-1.517.915-1.589.522-.064.785.272 1.03 1.088l.945 3.098h-.475a.794.794 0 0 0-.793.793h1.8l3.027 1.431a.79.79 0 0 0-.376-1.054l-.794-.375h1.674a4 4 0 0 0 6.278.805 4 4 0 0 0 0-5.654 4 4 0 0 0-6.632 4.056H8.784a.822.822 0 0 1-.787-.582l-1.569-5.157.268-.142c3.724-1.563 7.707 1.228 10.479-1.454l.018-.017c.343-.312.686-.631 1.7.004 1.092.684 3.501 2.47 4.593 5.522.002 0 .665-.236.482-1.045zm-7.662-6.764a.769.769 0 1 0-1.275.595 1.2 1.2 0 1 1 1.275-.595z" }) + ] + } + ); +}); + +export { SiKiwix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.cjs new file mode 100644 index 000000000..f17a78ee3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB3C7"; +const SiKlarna = React__namespace.forwardRef(function SiKlarna2({ title = "Klarna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.592 2v20H0V2h4.592zm11.46 0c0 4.194-1.583 8.105-4.415 11.068l-.278.283L17.702 22h-5.668l-6.893-9.4 1.779-1.332c2.858-2.14 4.535-5.378 4.637-8.924L11.562 2h4.49zM21.5 17a2.5 2.5 0 110 5 2.5 2.5 0 010-5z" }) + ] + } + ); +}); + +exports.default = SiKlarna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.d.ts new file mode 100644 index 000000000..7653ebb7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB3C7"; +declare const SiKlarna: IconType; +export { SiKlarna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.mjs new file mode 100644 index 000000000..7e835b4e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlarna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB3C7"; +const SiKlarna = React.forwardRef(function SiKlarna2({ title = "Klarna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.592 2v20H0V2h4.592zm11.46 0c0 4.194-1.583 8.105-4.415 11.068l-.278.283L17.702 22h-5.668l-6.893-9.4 1.779-1.332c2.858-2.14 4.535-5.378 4.637-8.924L11.562 2h4.49zM21.5 17a2.5 2.5 0 110 5 2.5 2.5 0 010-5z" }) + ] + } + ); +}); + +export { SiKlarna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.cjs new file mode 100644 index 000000000..570aa6877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D4B00"; +const SiKleinanzeigen = React__namespace.forwardRef(function SiKleinanzeigen2({ title = "Kleinanzeigen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.064 24c-3.234 0-4.816-2.245-5.137-2.71-.955.935-2.396 2.71-4.991 2.71-2.998 0-5.524-2.254-5.524-5.908V5.907C1.412 2.245 3.942 0 6.936 0c2.993 0 5.524 2.385 5.524 5.852a5.512 5.512 0 0 1 1.842-.314c3.083 0 5.524 2.515 5.524 5.538 0 .848-.161 1.602-.513 2.324a5.539 5.539 0 0 1 3.275 5.062c0 3.053-2.478 5.538-5.524 5.538zm-3.802-4.048c.795 1.383 2.132 2.202 3.802 2.202a3.692 3.692 0 0 0 3.683-3.692 3.689 3.689 0 0 0-2.518-3.505l-4.967 4.995zM6.936 1.846c-1.832 0-3.683 1.256-3.683 4.061v12.185c0 2.806 1.85 4.062 3.683 4.062 1.456 0 2.26-.736 3.557-2.037l.575-.576c-.297-.886-.45-1.869-.45-2.926V5.908c0-2.806-1.849-4.062-3.682-4.062zm5.524 6.031v8.738c0 .495.042.966.12 1.409l4.003-4.013c1.163-1.165 1.402-2.016 1.402-2.934 0-1.962-1.573-3.692-3.683-3.692-.657 0-1.285.169-1.842.493z" }) + ] + } + ); +}); + +exports.default = SiKleinanzeigen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.d.ts new file mode 100644 index 000000000..e22c3360d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D4B00"; +declare const SiKleinanzeigen: IconType; +export { SiKleinanzeigen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.mjs new file mode 100644 index 000000000..e6b7572a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKleinanzeigen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D4B00"; +const SiKleinanzeigen = React.forwardRef(function SiKleinanzeigen2({ title = "Kleinanzeigen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.064 24c-3.234 0-4.816-2.245-5.137-2.71-.955.935-2.396 2.71-4.991 2.71-2.998 0-5.524-2.254-5.524-5.908V5.907C1.412 2.245 3.942 0 6.936 0c2.993 0 5.524 2.385 5.524 5.852a5.512 5.512 0 0 1 1.842-.314c3.083 0 5.524 2.515 5.524 5.538 0 .848-.161 1.602-.513 2.324a5.539 5.539 0 0 1 3.275 5.062c0 3.053-2.478 5.538-5.524 5.538zm-3.802-4.048c.795 1.383 2.132 2.202 3.802 2.202a3.692 3.692 0 0 0 3.683-3.692 3.689 3.689 0 0 0-2.518-3.505l-4.967 4.995zM6.936 1.846c-1.832 0-3.683 1.256-3.683 4.061v12.185c0 2.806 1.85 4.062 3.683 4.062 1.456 0 2.26-.736 3.557-2.037l.575-.576c-.297-.886-.45-1.869-.45-2.926V5.908c0-2.806-1.849-4.062-3.682-4.062zm5.524 6.031v8.738c0 .495.042.966.12 1.409l4.003-4.013c1.163-1.165 1.402-2.016 1.402-2.934 0-1.962-1.573-3.692-3.683-3.692-.657 0-1.285.169-1.842.493z" }) + ] + } + ); +}); + +export { SiKleinanzeigen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.cjs new file mode 100644 index 000000000..1a332a0b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A1DE"; +const SiKlm = React__namespace.forwardRef(function SiKlm2({ title = "KLM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.75 13.034H4.5l-2.25 2.257v-2.257H0v6.018h2.25v-2.257l2.25 2.257h3l-3.375-3.385zm3 0H7.5v6.018h6v-1.518H9.75zm10.5 0l-1.125 3.385L18 13.034h-3.75v6.018h2.25v-4.514l1.5 4.514h2.25l1.5-4.514v4.514H24v-6.018zM10.5 9.649c.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317.587 1.316 1.312 1.316zm1.688-1.316c0 .727.588 1.316 1.312 1.316.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317zm2.999 0c0 .727.588 1.316 1.312 1.316.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317zm-6.375 0c0-.727-.588-1.317-1.313-1.317s-1.312.589-1.312 1.317.588 1.316 1.313 1.316 1.312-.589 1.312-1.316zM7.5 10.025h9v1.505h-9zm4.125-2.821h.75v-.752h.75V5.7h-.75v-.753h-.75V5.7h-.75v.752h.75z" }) + ] + } + ); +}); + +exports.default = SiKlm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.d.ts new file mode 100644 index 000000000..96af3b26a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A1DE"; +declare const SiKlm: IconType; +export { SiKlm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.mjs new file mode 100644 index 000000000..839e0bda7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A1DE"; +const SiKlm = React.forwardRef(function SiKlm2({ title = "KLM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.75 13.034H4.5l-2.25 2.257v-2.257H0v6.018h2.25v-2.257l2.25 2.257h3l-3.375-3.385zm3 0H7.5v6.018h6v-1.518H9.75zm10.5 0l-1.125 3.385L18 13.034h-3.75v6.018h2.25v-4.514l1.5 4.514h2.25l1.5-4.514v4.514H24v-6.018zM10.5 9.649c.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317.587 1.316 1.312 1.316zm1.688-1.316c0 .727.588 1.316 1.312 1.316.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317zm2.999 0c0 .727.588 1.316 1.312 1.316.725 0 1.313-.589 1.313-1.316s-.588-1.317-1.313-1.317-1.312.589-1.312 1.317zm-6.375 0c0-.727-.588-1.317-1.313-1.317s-1.312.589-1.312 1.317.588 1.316 1.313 1.316 1.312-.589 1.312-1.316zM7.5 10.025h9v1.505h-9zm4.125-2.821h.75v-.752h.75V5.7h-.75v-.753h-.75V5.7h-.75v.752h.75z" }) + ] + } + ); +}); + +export { SiKlm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.cjs new file mode 100644 index 000000000..c3955129f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5722"; +const SiKlook = React__namespace.forwardRef(function SiKlook2({ title = "Klook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.8 0A4.79 4.79 0 0 0 0 4.8v14.4C0 21.86 2.14 24 4.8 24h14.4c2.66 0 4.8-2.14 4.8-4.8V4.8C24 2.14 21.86 0 19.2 0H4.8zM12 3.449v.001c4.242 0 7.833 1.904 7.833 6.17 0 2.932-3.86 7.815-6.164 10.164-.99 1.008-2.32 1.036-3.338 0-2.303-2.349-6.164-7.232-6.164-10.164 0-4.162 3.476-6.171 7.833-6.171zm3.54 2.155l-5.05 4.96 5.05 4.956a1.84 1.84 0 0 0 0-2.634v-.001l-2.366-2.323 2.366-2.323a1.84 1.84 0 0 0 0-2.635zm-7.349.144v9.772a1.86 1.86 0 0 0 1.868-1.852V7.602a1.86 1.86 0 0 0-1.866-1.854h-.002z" }) + ] + } + ); +}); + +exports.default = SiKlook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.d.ts new file mode 100644 index 000000000..8e48fed72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5722"; +declare const SiKlook: IconType; +export { SiKlook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.mjs new file mode 100644 index 000000000..bf57e2e9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKlook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5722"; +const SiKlook = React.forwardRef(function SiKlook2({ title = "Klook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.8 0A4.79 4.79 0 0 0 0 4.8v14.4C0 21.86 2.14 24 4.8 24h14.4c2.66 0 4.8-2.14 4.8-4.8V4.8C24 2.14 21.86 0 19.2 0H4.8zM12 3.449v.001c4.242 0 7.833 1.904 7.833 6.17 0 2.932-3.86 7.815-6.164 10.164-.99 1.008-2.32 1.036-3.338 0-2.303-2.349-6.164-7.232-6.164-10.164 0-4.162 3.476-6.171 7.833-6.171zm3.54 2.155l-5.05 4.96 5.05 4.956a1.84 1.84 0 0 0 0-2.634v-.001l-2.366-2.323 2.366-2.323a1.84 1.84 0 0 0 0-2.635zm-7.349.144v9.772a1.86 1.86 0 0 0 1.868-1.852V7.602a1.86 1.86 0 0 0-1.866-1.854h-.002z" }) + ] + } + ); +}); + +export { SiKlook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.cjs new file mode 100644 index 000000000..a52bd7566 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0865AD"; +const SiKnative = React__namespace.forwardRef(function SiKnative2({ title = "Knative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.14 2.358 4.714 2.27-.915 1.584a.268.268 0 0 0-.032.182l.607 3.441a.263.263 0 0 0 .093.16l2.676 2.245c.048.041.11.064.174.064h1.878l.507 2.22a.492.492 0 0 1-.095.415l-5.237 6.567a.491.491 0 0 1-.383.184h-8.4a.491.491 0 0 1-.383-.184L.107 14.939a.492.492 0 0 1-.095-.415l1.869-8.189a.494.494 0 0 1 .266-.333l7.567-3.644a.49.49 0 0 1 .426 0ZM7.244 16.626h1.667v-2.429l.64-.784 1.822 3.213h1.965l-2.594-4.273 2.462-3.169h-2.065l-1.689 2.473c-.166.265-.342.53-.508.817h-.033v-3.29H7.244v7.442ZM19.281 2.352l2.975 1.083c.054.02.099.058.128.108l1.583 2.742c.029.05.039.108.029.165l-.55 3.118a.243.243 0 0 1-.083.145l-2.426 2.035a.245.245 0 0 1-.157.058h-3.166a.246.246 0 0 1-.158-.058l-2.425-2.035a.24.24 0 0 1-.084-.145l-.55-3.118a.244.244 0 0 1 .029-.165l1.583-2.742a.245.245 0 0 1 .129-.108l2.975-1.083a.243.243 0 0 1 .168 0Zm-.71 3.404c-.032-.092-.098-.137-.197-.137h-.487V8.57h.79V6.449c.088-.086.18-.153.278-.2a.694.694 0 0 1 .312-.072c.149 0 .261.045.338.136.076.091.114.218.114.382V8.57h.787V6.695c0-.164-.021-.315-.064-.452a.988.988 0 0 0-.192-.355.875.875 0 0 0-.313-.232 1.208 1.208 0 0 0-.697-.054 1.176 1.176 0 0 0-.436.203 1.956 1.956 0 0 0-.184.157l-.049-.206Z" }) + ] + } + ); +}); + +exports.default = SiKnative; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.d.ts new file mode 100644 index 000000000..9b45fb471 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0865AD"; +declare const SiKnative: IconType; +export { SiKnative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.mjs new file mode 100644 index 000000000..9eb830e23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnative.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0865AD"; +const SiKnative = React.forwardRef(function SiKnative2({ title = "Knative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.14 2.358 4.714 2.27-.915 1.584a.268.268 0 0 0-.032.182l.607 3.441a.263.263 0 0 0 .093.16l2.676 2.245c.048.041.11.064.174.064h1.878l.507 2.22a.492.492 0 0 1-.095.415l-5.237 6.567a.491.491 0 0 1-.383.184h-8.4a.491.491 0 0 1-.383-.184L.107 14.939a.492.492 0 0 1-.095-.415l1.869-8.189a.494.494 0 0 1 .266-.333l7.567-3.644a.49.49 0 0 1 .426 0ZM7.244 16.626h1.667v-2.429l.64-.784 1.822 3.213h1.965l-2.594-4.273 2.462-3.169h-2.065l-1.689 2.473c-.166.265-.342.53-.508.817h-.033v-3.29H7.244v7.442ZM19.281 2.352l2.975 1.083c.054.02.099.058.128.108l1.583 2.742c.029.05.039.108.029.165l-.55 3.118a.243.243 0 0 1-.083.145l-2.426 2.035a.245.245 0 0 1-.157.058h-3.166a.246.246 0 0 1-.158-.058l-2.425-2.035a.24.24 0 0 1-.084-.145l-.55-3.118a.244.244 0 0 1 .029-.165l1.583-2.742a.245.245 0 0 1 .129-.108l2.975-1.083a.243.243 0 0 1 .168 0Zm-.71 3.404c-.032-.092-.098-.137-.197-.137h-.487V8.57h.79V6.449c.088-.086.18-.153.278-.2a.694.694 0 0 1 .312-.072c.149 0 .261.045.338.136.076.091.114.218.114.382V8.57h.787V6.695c0-.164-.021-.315-.064-.452a.988.988 0 0 0-.192-.355.875.875 0 0 0-.313-.232 1.208 1.208 0 0 0-.697-.054 1.176 1.176 0 0 0-.436.203 1.956 1.956 0 0 0-.184.157l-.049-.206Z" }) + ] + } + ); +}); + +export { SiKnative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.cjs new file mode 100644 index 000000000..93bf05fcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D26B38"; +const SiKnexdotjs = React__namespace.forwardRef(function SiKnexdotjs2({ title = "Knex.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.288v.126l-.095.249q-.02.052-.071.076l-2.847 1.29a.024.024 0 0 0 0 .044L24 13.444v.638q-.264.444-.722.655-.05.023-.1.002l-2.224-.902q-.05-.02-.1-.004l-.909.283a.086.087 59.4 0 1-.089-.023l-.822-.86q-.066-.067-.082.025-.3 1.698-1.343 3.057a.019.019 0 0 0 .015.03l1.364-.024q.049 0 .072.043l.416.795a.204.207 88 0 0 .104.095l2.142.908a.137.137 0 0 1 .078.086c.139.475.157 1.172-.426 1.334q-.05.014-.097-.004l-2.9-1.094a.028.028 0 0 0-.035.036l1.068 2.845q.019.05.002.1c-.183.563-.846.543-1.312.414a.176.175 86.1 0 1-.113-.1l-.901-2.137q-.023-.053-.074-.08l-.813-.415q-.047-.025-.047-.079l.018-1.148a.04.04 0 0 1 .004-.018q.024-.052.018-.107-.007-.075-.07-.031-1.44 1.026-3.137 1.247a.033.033 0 0 0-.019.056l.957.912q.045.043.027.102l-.263.826a.28.28 0 0 0 .008.19l.867 2.135q.018.043-.002.085-.19.403-.552.645h-.745l-1.3-2.866a.023.022 44.7 0 0-.04 0l-1.31 2.866h-.604q-.436-.246-.652-.7-.024-.05-.003-.1l.881-2.17q.02-.05.003-.101l-.28-.878a.093.093 0 0 1 .026-.098l.916-.861a.032.032 0 0 0-.016-.056q-1.623-.288-2.937-1.216-.051-.036-.05.026l.023 1.225q0 .055-.047.08l-.837.448a.15.149 87.5 0 0-.067.074l-.938 2.213q-.024.058-.084.075c-.488.144-1.19.164-1.376-.434q-.012-.043.003-.084l1.111-2.955q.037-.096-.06-.06l-2.867 1.08q-.057.021-.116.005c-.59-.162-.56-.902-.416-1.375q.018-.056.072-.08l2.208-.935q.055-.024.083-.077l.433-.83a.107.108 14.6 0 1 .098-.057l1.111.038q.091.003.039-.07a6.912 6.912 0 0 1-1.185-2.876.026.026 0 0 0-.044-.014l-.853.9q-.033.033-.078.019l-.904-.28a.19.184 41.8 0 0-.126.005l-2.222.9q-.048.02-.095-.002-.552-.26-.763-.797v-.327l.07-.15a.133.133 0 0 1 .065-.066l2.928-1.327a.023.023 0 0 0 0-.042L.2 10.734q-.051-.024-.074-.076c-.246-.56.232-1.032.696-1.259a.125.127 43.2 0 1 .105-.004l2.227.906q.05.02.103.004l.909-.287a.087.085 58.8 0 1 .086.023l.783.817q.052.056.066-.02.252-1.493 1.136-2.776.035-.05-.027-.05l-1.158.026a.09.089 75.4 0 1-.08-.047l-.416-.798a.273.272 87.6 0 0-.137-.126l-2.168-.918a.116.112 2.4 0 1-.061-.064c-.177-.475-.193-1.2.402-1.395q.045-.015.09.002L5.585 5.78q.085.032.053-.053L4.516 2.747a.13.13 0 0 1 0-.087c.206-.578.901-.573 1.389-.408a.133.132 88.3 0 1 .077.074l.934 2.21a.158.158 0 0 0 .07.075l.82.43q.049.024.05.079.028.584-.019 1.212-.006.08.058.032 1.21-.894 2.798-1.226.103-.02.027-.093l-.787-.748q-.044-.04-.026-.099l.288-.9q.016-.053-.004-.103L9.285.965q-.02-.05.003-.097c.22-.461.725-.976 1.261-.698q.055.029.081.085l1.282 2.824a.034.035 45.2 0 0 .063 0l1.313-2.9q.025-.056.08-.078c.568-.233 1.028.223 1.257.69q.028.058.004.115l-.906 2.23a.133.13 47.8 0 0-.003.09l.284.903a.106.103 60 0 1-.028.107l-.86.82a.028.029 28.1 0 0 .015.05 6.85 6.85 0 0 1 2.934 1.2q.058.042.057-.03l-.015-1.157q0-.047.041-.067l.827-.428q.058-.03.084-.09l.939-2.22q.02-.05.072-.066c.505-.153 1.192-.163 1.382.421q.014.042-.002.082l-1.094 2.924q-.028.073.045.046l2.961-1.114q.062-.024.125-.002c.577.192.553.888.408 1.377a.123.124 86.7 0 1-.07.078l-2.217.933q-.054.023-.081.075l-.434.832q-.03.059-.095.057l-1.202-.037q-.094-.003-.04.074.895 1.235 1.202 2.844.012.068.06.017l.779-.822q.028-.03.068-.018l.923.289q.053.016.103-.004l2.213-.897q.05-.02.1 0 .624.253.796.885zM10.04 9.025c.344-.205.719-.38 1.113-.461a.09.09 0 0 0 .072-.088V7.099q0-.075-.075-.061-1.2.22-2.162.94-.048.034-.006.076l.96.959q.045.045.1.012zm2.707-.469c.425.104.81.263 1.156.493q.058.037.105-.012l1.035-1.034a.032.032 0 0 0-.004-.049q-1.032-.744-2.278-.933-.062-.009-.062.053v1.42a.064.063 7.7 0 0 .048.062zm4.302 2.716a5.158 5.158 0 0 0-.9-2.192.055.055 0 0 0-.084-.007l-1.034 1.033q-.043.044-.01.096.314.5.442 1.079.013.06.075.06h1.45q.07 0 .06-.069zm-8.598.011c.089-.402.24-.773.462-1.12q.034-.053-.01-.097l-.966-.967a.03.03 0 0 0-.047.004q-.69.953-.89 2.171a.058.058 0 0 0 .058.067h1.32q.06 0 .073-.058zm5.15.785a1.644 1.644 0 0 0-1.643-1.644 1.644 1.644 0 0 0-1.644 1.644 1.644 1.644 0 0 0 1.644 1.643 1.644 1.644 0 0 0 1.644-1.643zm-6.592.807a5.07 5.07 0 0 0 .905 2.168q.037.051.083.007l.932-.933q.047-.048.01-.104-.342-.52-.48-1.136-.014-.062-.08-.062H7.062q-.061 0-.052.06zm9.067 2.246c.5-.66.824-1.425.962-2.248q.01-.059-.05-.059l-1.452.001a.08.08 0 0 0-.078.064q-.129.592-.481 1.144-.02.03.005.056l1.045 1.046q.026.026.049-.004zm-3.344 1.958a5.167 5.167 0 0 0 2.247-.885.048.048 0 0 0 .006-.072l-1.011-1.012q-.042-.041-.091-.01-.537.341-1.145.477-.066.014-.066.08v1.371q0 .06.06.05zm-3.68-.9a5.1 5.1 0 0 0 2.131.88q.067.012.067-.055l.001-1.351q0-.064-.063-.078-.61-.132-1.114-.45a.057.057 0 0 0-.07.007l-.958.96q-.048.048.006.087z" }) + ] + } + ); +}); + +exports.default = SiKnexdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.d.ts new file mode 100644 index 000000000..7675fc45b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D26B38"; +declare const SiKnexdotjs: IconType; +export { SiKnexdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.mjs new file mode 100644 index 000000000..52356610d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnexdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D26B38"; +const SiKnexdotjs = React.forwardRef(function SiKnexdotjs2({ title = "Knex.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.288v.126l-.095.249q-.02.052-.071.076l-2.847 1.29a.024.024 0 0 0 0 .044L24 13.444v.638q-.264.444-.722.655-.05.023-.1.002l-2.224-.902q-.05-.02-.1-.004l-.909.283a.086.087 59.4 0 1-.089-.023l-.822-.86q-.066-.067-.082.025-.3 1.698-1.343 3.057a.019.019 0 0 0 .015.03l1.364-.024q.049 0 .072.043l.416.795a.204.207 88 0 0 .104.095l2.142.908a.137.137 0 0 1 .078.086c.139.475.157 1.172-.426 1.334q-.05.014-.097-.004l-2.9-1.094a.028.028 0 0 0-.035.036l1.068 2.845q.019.05.002.1c-.183.563-.846.543-1.312.414a.176.175 86.1 0 1-.113-.1l-.901-2.137q-.023-.053-.074-.08l-.813-.415q-.047-.025-.047-.079l.018-1.148a.04.04 0 0 1 .004-.018q.024-.052.018-.107-.007-.075-.07-.031-1.44 1.026-3.137 1.247a.033.033 0 0 0-.019.056l.957.912q.045.043.027.102l-.263.826a.28.28 0 0 0 .008.19l.867 2.135q.018.043-.002.085-.19.403-.552.645h-.745l-1.3-2.866a.023.022 44.7 0 0-.04 0l-1.31 2.866h-.604q-.436-.246-.652-.7-.024-.05-.003-.1l.881-2.17q.02-.05.003-.101l-.28-.878a.093.093 0 0 1 .026-.098l.916-.861a.032.032 0 0 0-.016-.056q-1.623-.288-2.937-1.216-.051-.036-.05.026l.023 1.225q0 .055-.047.08l-.837.448a.15.149 87.5 0 0-.067.074l-.938 2.213q-.024.058-.084.075c-.488.144-1.19.164-1.376-.434q-.012-.043.003-.084l1.111-2.955q.037-.096-.06-.06l-2.867 1.08q-.057.021-.116.005c-.59-.162-.56-.902-.416-1.375q.018-.056.072-.08l2.208-.935q.055-.024.083-.077l.433-.83a.107.108 14.6 0 1 .098-.057l1.111.038q.091.003.039-.07a6.912 6.912 0 0 1-1.185-2.876.026.026 0 0 0-.044-.014l-.853.9q-.033.033-.078.019l-.904-.28a.19.184 41.8 0 0-.126.005l-2.222.9q-.048.02-.095-.002-.552-.26-.763-.797v-.327l.07-.15a.133.133 0 0 1 .065-.066l2.928-1.327a.023.023 0 0 0 0-.042L.2 10.734q-.051-.024-.074-.076c-.246-.56.232-1.032.696-1.259a.125.127 43.2 0 1 .105-.004l2.227.906q.05.02.103.004l.909-.287a.087.085 58.8 0 1 .086.023l.783.817q.052.056.066-.02.252-1.493 1.136-2.776.035-.05-.027-.05l-1.158.026a.09.089 75.4 0 1-.08-.047l-.416-.798a.273.272 87.6 0 0-.137-.126l-2.168-.918a.116.112 2.4 0 1-.061-.064c-.177-.475-.193-1.2.402-1.395q.045-.015.09.002L5.585 5.78q.085.032.053-.053L4.516 2.747a.13.13 0 0 1 0-.087c.206-.578.901-.573 1.389-.408a.133.132 88.3 0 1 .077.074l.934 2.21a.158.158 0 0 0 .07.075l.82.43q.049.024.05.079.028.584-.019 1.212-.006.08.058.032 1.21-.894 2.798-1.226.103-.02.027-.093l-.787-.748q-.044-.04-.026-.099l.288-.9q.016-.053-.004-.103L9.285.965q-.02-.05.003-.097c.22-.461.725-.976 1.261-.698q.055.029.081.085l1.282 2.824a.034.035 45.2 0 0 .063 0l1.313-2.9q.025-.056.08-.078c.568-.233 1.028.223 1.257.69q.028.058.004.115l-.906 2.23a.133.13 47.8 0 0-.003.09l.284.903a.106.103 60 0 1-.028.107l-.86.82a.028.029 28.1 0 0 .015.05 6.85 6.85 0 0 1 2.934 1.2q.058.042.057-.03l-.015-1.157q0-.047.041-.067l.827-.428q.058-.03.084-.09l.939-2.22q.02-.05.072-.066c.505-.153 1.192-.163 1.382.421q.014.042-.002.082l-1.094 2.924q-.028.073.045.046l2.961-1.114q.062-.024.125-.002c.577.192.553.888.408 1.377a.123.124 86.7 0 1-.07.078l-2.217.933q-.054.023-.081.075l-.434.832q-.03.059-.095.057l-1.202-.037q-.094-.003-.04.074.895 1.235 1.202 2.844.012.068.06.017l.779-.822q.028-.03.068-.018l.923.289q.053.016.103-.004l2.213-.897q.05-.02.1 0 .624.253.796.885zM10.04 9.025c.344-.205.719-.38 1.113-.461a.09.09 0 0 0 .072-.088V7.099q0-.075-.075-.061-1.2.22-2.162.94-.048.034-.006.076l.96.959q.045.045.1.012zm2.707-.469c.425.104.81.263 1.156.493q.058.037.105-.012l1.035-1.034a.032.032 0 0 0-.004-.049q-1.032-.744-2.278-.933-.062-.009-.062.053v1.42a.064.063 7.7 0 0 .048.062zm4.302 2.716a5.158 5.158 0 0 0-.9-2.192.055.055 0 0 0-.084-.007l-1.034 1.033q-.043.044-.01.096.314.5.442 1.079.013.06.075.06h1.45q.07 0 .06-.069zm-8.598.011c.089-.402.24-.773.462-1.12q.034-.053-.01-.097l-.966-.967a.03.03 0 0 0-.047.004q-.69.953-.89 2.171a.058.058 0 0 0 .058.067h1.32q.06 0 .073-.058zm5.15.785a1.644 1.644 0 0 0-1.643-1.644 1.644 1.644 0 0 0-1.644 1.644 1.644 1.644 0 0 0 1.644 1.643 1.644 1.644 0 0 0 1.644-1.643zm-6.592.807a5.07 5.07 0 0 0 .905 2.168q.037.051.083.007l.932-.933q.047-.048.01-.104-.342-.52-.48-1.136-.014-.062-.08-.062H7.062q-.061 0-.052.06zm9.067 2.246c.5-.66.824-1.425.962-2.248q.01-.059-.05-.059l-1.452.001a.08.08 0 0 0-.078.064q-.129.592-.481 1.144-.02.03.005.056l1.045 1.046q.026.026.049-.004zm-3.344 1.958a5.167 5.167 0 0 0 2.247-.885.048.048 0 0 0 .006-.072l-1.011-1.012q-.042-.041-.091-.01-.537.341-1.145.477-.066.014-.066.08v1.371q0 .06.06.05zm-3.68-.9a5.1 5.1 0 0 0 2.131.88q.067.012.067-.055l.001-1.351q0-.064-.063-.078-.61-.132-1.114-.45a.057.057 0 0 0-.07.007l-.958.96q-.048.048.006.087z" }) + ] + } + ); +}); + +export { SiKnexdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.cjs new file mode 100644 index 000000000..b442c6f9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDD800"; +const SiKnime = React__namespace.forwardRef(function SiKnime2({ title = "KNIME", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.445 21.393 11.54-.775.451.775zM7.56 11.113l-5.092 10.28h-.904Zm10.427 2.652-6.43-9.505.452-.775zm2.57 5.216.627.896-10.652.707zM4.655 20.976l-1.143.09 4.709-9.488Zm6.173-14.667.476-.998 5.984 8.782zm8.272 11.055.847 1.015-8.685 1.413zM6.76 20.532l-1.32.224 3.11-8.162Zm3.406-12.189.472-1.207 5.558 6.732Zm7.403 7.54 1.13 1.016-6.378 1.98zm-8.759 4.08-1.46.448 1.46-6.44zm.8-9.539.363-1.48 4.868 4.477zm-.348 9.402v-7.851l.244-1.085 6.864 3.926.834.758L10.34 19.5zM12.01 1.694 0 22.306h24z" }) + ] + } + ); +}); + +exports.default = SiKnime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.d.ts new file mode 100644 index 000000000..aceac631f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDD800"; +declare const SiKnime: IconType; +export { SiKnime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.mjs new file mode 100644 index 000000000..73ec078f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDD800"; +const SiKnime = React.forwardRef(function SiKnime2({ title = "KNIME", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.445 21.393 11.54-.775.451.775zM7.56 11.113l-5.092 10.28h-.904Zm10.427 2.652-6.43-9.505.452-.775zm2.57 5.216.627.896-10.652.707zM4.655 20.976l-1.143.09 4.709-9.488Zm6.173-14.667.476-.998 5.984 8.782zm8.272 11.055.847 1.015-8.685 1.413zM6.76 20.532l-1.32.224 3.11-8.162Zm3.406-12.189.472-1.207 5.558 6.732Zm7.403 7.54 1.13 1.016-6.378 1.98zm-8.759 4.08-1.46.448 1.46-6.44zm.8-9.539.363-1.48 4.868 4.477zm-.348 9.402v-7.851l.244-1.085 6.864 3.926.834.758L10.34 19.5zM12.01 1.694 0 22.306h24z" }) + ] + } + ); +}); + +export { SiKnime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.cjs new file mode 100644 index 000000000..bddf4adf4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F56E0F"; +const SiKnip = React__namespace.forwardRef(function SiKnip2({ title = "Knip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5176 0C2.015 0 0 2.0149 0 4.5176v14.9648C0 21.985 2.0149 24 4.5176 24h14.9648C21.985 24 24 21.9851 24 19.4824V4.5176C24 2.015 21.9851 0 19.4824 0Zm12.9659 2.5467a3.4 3.4 0 0 1 .247.008l-5.5895 9.7468a1.935 1.935 0 0 1-.7084.9326c-.3034.1993-.468.1755-.7691.2833a1.08 1.08 0 0 0-.6235.5365l-.1038.3309c-.0933.2952-.2401.5905-.0203.8785.145.1894.4199.2598.7835.2474.3156.0641.6143.1936.8767.3801.2693.1999.4987.4485.6764.7328.5186 1.0066.5533 2.1165-.1739 3.3946-.8005 1.5062-1.9142 2.0284-3.194 2.0094-.8294-.1115-1.3981-.4927-1.7493-1.0958-.5398-.9266-.5312-1.9266-.1804-2.9074.26-.6607.5834-1.2947.9652-1.8933l.9865-2.4726.0964.091 5.1732-9.1073c.9693-1.4047 2.0802-2.0904 3.3073-2.0955M4.7507 7.4368c1.4697-.0032 2.4187.5759 3.0384 1.5236.1578.293.2594.613.2999.9434a2.31 2.31 0 0 1-.096.957c-.191.309-.2655.5828-.1715.8037.142.3332.4715.3512.7743.4158l.339.0729c.131.0057.2622-.012.3871-.0523l-.6167 1.1046-.0216-.0013.0058.0278-.0513.0906-2.559-.3521c-.709.0374-1.42.0057-2.1229-.0947-1.0254-.1774-1.9032-.6698-2.4392-1.59-.349-.5992-.403-1.2871-.0853-2.0598.615-1.1226 1.6225-1.8272 3.319-1.7892M4.7198 8.544a3.2 3.2 0 0 0-1.74.5275c-1.0344.7359-.6694 1.8267.2983 2.4018a2.557 2.557 0 0 0 1.4755.34 3.62 3.62 0 0 0 1.1605-.2512 1.82 1.82 0 0 0 .9709-.8359l-.0008-.0012c.3139-.6248.0415-1.2115-.454-1.6336-.3968-.339-.9306-.5205-1.5866-.5457a3 3 0 0 0-.1238-.0017m18.0086 2.5915c-.5746 1.1979-1.756 1.9016-3.5693 2.0616l-6.9009.005 1.1844-2.0227zm-11.7129.5823a.535.535 0 0 0-.2764.0725.536.536 0 0 0-.1338.8185.5363.5363 0 0 0 .8657-.6243.535.535 0 0 0-.4555-.2668zm-.7458 4.8196a1.822 1.822 0 0 0-1.2068.4308 3.59 3.59 0 0 0-.7912.8854 2.547 2.547 0 0 0-.433 1.45c.0229 1.1254.7918 1.9811 1.9428 1.4458a3.21 3.21 0 0 0 1.3815-1.354c.298-.5895.4042-1.142.3043-1.6558-.1227-.6392-.4978-1.1643-1.196-1.1996z" }) + ] + } + ); +}); + +exports.default = SiKnip; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.d.ts new file mode 100644 index 000000000..ed9f9b5c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F56E0F"; +declare const SiKnip: IconType; +export { SiKnip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.mjs new file mode 100644 index 000000000..e1881b18d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnip.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F56E0F"; +const SiKnip = React.forwardRef(function SiKnip2({ title = "Knip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.5176 0C2.015 0 0 2.0149 0 4.5176v14.9648C0 21.985 2.0149 24 4.5176 24h14.9648C21.985 24 24 21.9851 24 19.4824V4.5176C24 2.015 21.9851 0 19.4824 0Zm12.9659 2.5467a3.4 3.4 0 0 1 .247.008l-5.5895 9.7468a1.935 1.935 0 0 1-.7084.9326c-.3034.1993-.468.1755-.7691.2833a1.08 1.08 0 0 0-.6235.5365l-.1038.3309c-.0933.2952-.2401.5905-.0203.8785.145.1894.4199.2598.7835.2474.3156.0641.6143.1936.8767.3801.2693.1999.4987.4485.6764.7328.5186 1.0066.5533 2.1165-.1739 3.3946-.8005 1.5062-1.9142 2.0284-3.194 2.0094-.8294-.1115-1.3981-.4927-1.7493-1.0958-.5398-.9266-.5312-1.9266-.1804-2.9074.26-.6607.5834-1.2947.9652-1.8933l.9865-2.4726.0964.091 5.1732-9.1073c.9693-1.4047 2.0802-2.0904 3.3073-2.0955M4.7507 7.4368c1.4697-.0032 2.4187.5759 3.0384 1.5236.1578.293.2594.613.2999.9434a2.31 2.31 0 0 1-.096.957c-.191.309-.2655.5828-.1715.8037.142.3332.4715.3512.7743.4158l.339.0729c.131.0057.2622-.012.3871-.0523l-.6167 1.1046-.0216-.0013.0058.0278-.0513.0906-2.559-.3521c-.709.0374-1.42.0057-2.1229-.0947-1.0254-.1774-1.9032-.6698-2.4392-1.59-.349-.5992-.403-1.2871-.0853-2.0598.615-1.1226 1.6225-1.8272 3.319-1.7892M4.7198 8.544a3.2 3.2 0 0 0-1.74.5275c-1.0344.7359-.6694 1.8267.2983 2.4018a2.557 2.557 0 0 0 1.4755.34 3.62 3.62 0 0 0 1.1605-.2512 1.82 1.82 0 0 0 .9709-.8359l-.0008-.0012c.3139-.6248.0415-1.2115-.454-1.6336-.3968-.339-.9306-.5205-1.5866-.5457a3 3 0 0 0-.1238-.0017m18.0086 2.5915c-.5746 1.1979-1.756 1.9016-3.5693 2.0616l-6.9009.005 1.1844-2.0227zm-11.7129.5823a.535.535 0 0 0-.2764.0725.536.536 0 0 0-.1338.8185.5363.5363 0 0 0 .8657-.6243.535.535 0 0 0-.4555-.2668zm-.7458 4.8196a1.822 1.822 0 0 0-1.2068.4308 3.59 3.59 0 0 0-.7912.8854 2.547 2.547 0 0 0-.433 1.45c.0229 1.1254.7918 1.9811 1.9428 1.4458a3.21 3.21 0 0 0 1.3815-1.354c.298-.5895.4042-1.142.3043-1.6558-.1227-.6392-.4978-1.1643-1.196-1.1996z" }) + ] + } + ); +}); + +export { SiKnip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.cjs new file mode 100644 index 000000000..c94cc080b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9146FF"; +const SiKnowledgebase = React__namespace.forwardRef(function SiKnowledgebase2({ title = "KnowledgeBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.1 5.52V1.5h-.18c-3.36.15-6.15 2.31-7.83 4.02l-.09.09-.09-.09C10.2 3.81 7.44 1.65 4.08 1.5H3.9v4.02H0v6.93c0 1.68.06 3.36.18 4.74a5.57 5.57 0 005.19 5.1c2.13.12 4.38.21 6.63.21s4.5-.09 6.63-.24a5.57 5.57 0 005.19-5.1c.12-1.38.18-3.06.18-4.74v-6.9zm0 6.93c0 1.59-.06 3.15-.18 4.41-.09.81-.75 1.47-1.56 1.5a90 90 0 01-12.72 0c-.81-.03-1.5-.69-1.56-1.5-.12-1.26-.18-2.85-.18-4.41V5.52c2.82.12 5.64 3.15 6.48 4.32L12 12.09l1.62-2.25c.84-1.2 3.66-4.2 6.48-4.32z" }) + ] + } + ); +}); + +exports.default = SiKnowledgebase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.d.ts new file mode 100644 index 000000000..c8ab91a2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9146FF"; +declare const SiKnowledgebase: IconType; +export { SiKnowledgebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.mjs new file mode 100644 index 000000000..ad9ec7c53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnowledgebase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9146FF"; +const SiKnowledgebase = React.forwardRef(function SiKnowledgebase2({ title = "KnowledgeBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.1 5.52V1.5h-.18c-3.36.15-6.15 2.31-7.83 4.02l-.09.09-.09-.09C10.2 3.81 7.44 1.65 4.08 1.5H3.9v4.02H0v6.93c0 1.68.06 3.36.18 4.74a5.57 5.57 0 005.19 5.1c2.13.12 4.38.21 6.63.21s4.5-.09 6.63-.24a5.57 5.57 0 005.19-5.1c.12-1.38.18-3.06.18-4.74v-6.9zm0 6.93c0 1.59-.06 3.15-.18 4.41-.09.81-.75 1.47-1.56 1.5a90 90 0 01-12.72 0c-.81-.03-1.5-.69-1.56-1.5-.12-1.26-.18-2.85-.18-4.41V5.52c2.82.12 5.64 3.15 6.48 4.32L12 12.09l1.62-2.25c.84-1.2 3.66-4.2 6.48-4.32z" }) + ] + } + ); +}); + +export { SiKnowledgebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.cjs new file mode 100644 index 000000000..535467ec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiKnown = React__namespace.forwardRef(function SiKnown2({ title = "Known", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.387 16.926h.604v1.936h-6.086v-1.936h.904s.333-.072.26-.386l-2.392-3.776-1.893 1.847v1.322c0 .653.324.993.687.993h.844v1.936H5.414v-1.936h.741c.364 0 .688-.34.688-.993V7.992c0-.364-.324-.855-.688-.855h-.741V5.201h5.901v1.936h-.844c-.363 0-.687.491-.687.855v3.83l4.087-4.144a.316.316 0 0 0-.219-.541h-.747V5.201H19v1.936h-.872c-.363 0-.867.176-1.225.525l-3.058 2.985 3.396 5.276c.304.434.772 1.003 1.146 1.003zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-1.684 0c0-5.697-4.619-10.316-10.316-10.316C6.303 1.684 1.684 6.303 1.684 12c0 5.697 4.619 10.316 10.316 10.316 5.697 0 10.316-4.619 10.316-10.316z" }) + ] + } + ); +}); + +exports.default = SiKnown; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.d.ts new file mode 100644 index 000000000..650dfad44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiKnown: IconType; +export { SiKnown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.mjs new file mode 100644 index 000000000..382124280 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKnown.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiKnown = React.forwardRef(function SiKnown2({ title = "Known", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.387 16.926h.604v1.936h-6.086v-1.936h.904s.333-.072.26-.386l-2.392-3.776-1.893 1.847v1.322c0 .653.324.993.687.993h.844v1.936H5.414v-1.936h.741c.364 0 .688-.34.688-.993V7.992c0-.364-.324-.855-.688-.855h-.741V5.201h5.901v1.936h-.844c-.363 0-.687.491-.687.855v3.83l4.087-4.144a.316.316 0 0 0-.219-.541h-.747V5.201H19v1.936h-.872c-.363 0-.867.176-1.225.525l-3.058 2.985 3.396 5.276c.304.434.772 1.003 1.146 1.003zM24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-1.684 0c0-5.697-4.619-10.316-10.316-10.316C6.303 1.684 1.684 6.303 1.684 12c0 5.697 4.619 10.316 10.316 10.316 5.697 0 10.316-4.619 10.316-10.316z" }) + ] + } + ); +}); + +export { SiKnown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.cjs new file mode 100644 index 000000000..3947a09d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#33333D"; +const SiKoa = React__namespace.forwardRef(function SiKoa2({ title = "Koa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 5.587v12.757h1.19v-4.099l.46-.527 3.147 4.626h1.19L2.33 12.97l2.773-3.13h-.17L1.19 14.058v-8.47zm11.039 4.185c-1.19 0-2.177.391-2.96 1.173-.77.783-1.156 1.883-1.156 3.3 0 1.418.374 2.467 1.122 3.147.749.68 1.718 1.02 2.909 1.02 1.202 0 2.188-.39 2.96-1.173.782-.783 1.173-1.883 1.173-3.3 0-1.417-.374-2.466-1.122-3.147-.749-.68-1.724-1.02-2.926-1.02zm8.896 0c-1.043 0-2.07.232-3.079.697l.068.12c.261-.148.67-.296 1.225-.443.567-.159 1.06-.238 1.48-.238.42 0 .76.057 1.02.17.26.102.442.227.545.374.102.148.18.3.238.46.068.147.09.272.068.374.007.97 0 1.988 0 2.976a9.269 9.269 0 00-.834-.034c-.306 0-.64.017-1.003.051-1.463.091-2.41.34-2.841.749-.215.204-.346.391-.391.561-.046.17-.068.329-.068.476 0 .136.011.273.034.409.193 1.292 1.003 1.939 2.432 1.939 1.225 0 2.115-.505 2.67-1.514v.357c0 .181.131.397.392.646.283.295.81.443 1.582.443H24v-.136h-.527l-.187-.034c-.136-.012-.272-.103-.409-.273-.124-.181-.187-.436-.187-.765v-5.698c0-.363-.147-.709-.442-1.038-.498-.557-1.564-.624-2.313-.63zm-8.862.136c.862 0 1.553.329 2.075.986.522.658.783 1.673.783 3.045 0 1.36-.284 2.427-.85 3.198-.568.76-1.282 1.14-2.144 1.14-.862 0-1.554-.33-2.075-.987-.522-.658-.783-1.667-.783-3.028 0-1.372.284-2.438.85-3.198.568-.77 1.282-1.156 2.144-1.156zm9.491 4.456c.318 0 .63.012.936.034v2.058c-.034.386-.295.789-.783 1.208a2.416 2.416 0 01-1.616.613c-.907 0-1.411-.601-1.513-1.803a3.155 3.155 0 01-.02-.307c0-.499.131-.89.392-1.173.26-.284.822-.477 1.684-.579.314-.038.64-.039.92-.05z" }) + ] + } + ); +}); + +exports.default = SiKoa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.d.ts new file mode 100644 index 000000000..7cc02a319 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#33333D"; +declare const SiKoa: IconType; +export { SiKoa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.mjs new file mode 100644 index 000000000..89a49d24f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#33333D"; +const SiKoa = React.forwardRef(function SiKoa2({ title = "Koa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 5.587v12.757h1.19v-4.099l.46-.527 3.147 4.626h1.19L2.33 12.97l2.773-3.13h-.17L1.19 14.058v-8.47zm11.039 4.185c-1.19 0-2.177.391-2.96 1.173-.77.783-1.156 1.883-1.156 3.3 0 1.418.374 2.467 1.122 3.147.749.68 1.718 1.02 2.909 1.02 1.202 0 2.188-.39 2.96-1.173.782-.783 1.173-1.883 1.173-3.3 0-1.417-.374-2.466-1.122-3.147-.749-.68-1.724-1.02-2.926-1.02zm8.896 0c-1.043 0-2.07.232-3.079.697l.068.12c.261-.148.67-.296 1.225-.443.567-.159 1.06-.238 1.48-.238.42 0 .76.057 1.02.17.26.102.442.227.545.374.102.148.18.3.238.46.068.147.09.272.068.374.007.97 0 1.988 0 2.976a9.269 9.269 0 00-.834-.034c-.306 0-.64.017-1.003.051-1.463.091-2.41.34-2.841.749-.215.204-.346.391-.391.561-.046.17-.068.329-.068.476 0 .136.011.273.034.409.193 1.292 1.003 1.939 2.432 1.939 1.225 0 2.115-.505 2.67-1.514v.357c0 .181.131.397.392.646.283.295.81.443 1.582.443H24v-.136h-.527l-.187-.034c-.136-.012-.272-.103-.409-.273-.124-.181-.187-.436-.187-.765v-5.698c0-.363-.147-.709-.442-1.038-.498-.557-1.564-.624-2.313-.63zm-8.862.136c.862 0 1.553.329 2.075.986.522.658.783 1.673.783 3.045 0 1.36-.284 2.427-.85 3.198-.568.76-1.282 1.14-2.144 1.14-.862 0-1.554-.33-2.075-.987-.522-.658-.783-1.667-.783-3.028 0-1.372.284-2.438.85-3.198.568-.77 1.282-1.156 2.144-1.156zm9.491 4.456c.318 0 .63.012.936.034v2.058c-.034.386-.295.789-.783 1.208a2.416 2.416 0 01-1.616.613c-.907 0-1.411-.601-1.513-1.803a3.155 3.155 0 01-.02-.307c0-.499.131-.89.392-1.173.26-.284.822-.477 1.684-.579.314-.038.64-.039.92-.05z" }) + ] + } + ); +}); + +export { SiKoa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.cjs new file mode 100644 index 000000000..3aeb6a5e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9423A"; +const SiKoc = React__namespace.forwardRef(function SiKoc2({ title = "Koc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.72 9.887c-1.313-3.731-5.036-3.932-5.414-3.943-1.667-.036-3.511.541-4.917 1.906-.568.506-.97 1.095-1.395 1.719-.426-.636-.828-1.213-1.395-1.719C9.204 6.485 7.36 5.908 5.694 5.944c-.39.011-4.114.211-5.414 3.943-.46 1.33-.354 3.06.331 4.33.686 1.46 2.329 2.66 4.066 2.543 1.253-.035 2.624-.824 3.132-2.107.426-1.141.296-2.377-.685-3.354.024.247.035.6-.213.918-.39.541-1.016.683-1.666.447-.568-.259-.78-.67-.721-1.212.035-.46.413-.812.803-.989.757-.33 1.454-.164 2.14.483 1.123 1.247 1.253 3.13 1.785 4.567.378 1.177.969 2.2 2.28 2.495.154.035.32.059.485.047.166 0 .331-.012.485-.047 1.312-.294 1.903-1.318 2.281-2.495.532-1.436.662-3.32 1.773-4.567.686-.647 1.383-.812 2.14-.483.39.177.756.53.803.989.06.541-.153.953-.72 1.212-.65.236-1.265.094-1.667-.447-.248-.318-.237-.671-.213-.918-.981.977-1.111 2.213-.686 3.354.509 1.283 1.88 2.072 3.133 2.107 1.725.118 3.368-1.07 4.054-2.542.674-1.271.78-3.001.32-4.331zm-2.637 4.449c-.792.694-1.844.894-2.695.506-.508-.248-.886-.683-1.004-1.154.72.718 2.02 1.071 3.203-.176 0 0 1.11-1.024.484-2.966-.319-.965-1.489-1.754-2.47-1.86-1.466-.235-2.837.259-3.794 1.589-1.123 1.73-1.265 3.66-2.092 5.59a.732.732 0 0 1-.721.448.732.732 0 0 1-.721-.447c-.816-1.919-.946-3.837-2.08-5.58-.958-1.33-2.341-1.824-3.795-1.588-.98.094-2.163.894-2.47 1.86-.627 1.941.484 2.965.484 2.965 1.194 1.248 2.483.883 3.204.177-.119.47-.485.906-1.005 1.153-.851.389-1.915.177-2.707-.506-1.17-1.153-1.347-2.636-.886-4.001.555-1.66 2.246-2.484 3.581-2.59 1.584-.141 3.77.824 4.645 2.484.201.376.627 1.365.627 1.365h2.222s.426-.989.626-1.365c.875-1.648 3.062-2.613 4.646-2.484 1.335.106 3.026.942 3.581 2.59.485 1.353.307 2.836-.863 3.99z" }) + ] + } + ); +}); + +exports.default = SiKoc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.d.ts new file mode 100644 index 000000000..53eb81b7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9423A"; +declare const SiKoc: IconType; +export { SiKoc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.mjs new file mode 100644 index 000000000..1f6384b84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9423A"; +const SiKoc = React.forwardRef(function SiKoc2({ title = "Koc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.72 9.887c-1.313-3.731-5.036-3.932-5.414-3.943-1.667-.036-3.511.541-4.917 1.906-.568.506-.97 1.095-1.395 1.719-.426-.636-.828-1.213-1.395-1.719C9.204 6.485 7.36 5.908 5.694 5.944c-.39.011-4.114.211-5.414 3.943-.46 1.33-.354 3.06.331 4.33.686 1.46 2.329 2.66 4.066 2.543 1.253-.035 2.624-.824 3.132-2.107.426-1.141.296-2.377-.685-3.354.024.247.035.6-.213.918-.39.541-1.016.683-1.666.447-.568-.259-.78-.67-.721-1.212.035-.46.413-.812.803-.989.757-.33 1.454-.164 2.14.483 1.123 1.247 1.253 3.13 1.785 4.567.378 1.177.969 2.2 2.28 2.495.154.035.32.059.485.047.166 0 .331-.012.485-.047 1.312-.294 1.903-1.318 2.281-2.495.532-1.436.662-3.32 1.773-4.567.686-.647 1.383-.812 2.14-.483.39.177.756.53.803.989.06.541-.153.953-.72 1.212-.65.236-1.265.094-1.667-.447-.248-.318-.237-.671-.213-.918-.981.977-1.111 2.213-.686 3.354.509 1.283 1.88 2.072 3.133 2.107 1.725.118 3.368-1.07 4.054-2.542.674-1.271.78-3.001.32-4.331zm-2.637 4.449c-.792.694-1.844.894-2.695.506-.508-.248-.886-.683-1.004-1.154.72.718 2.02 1.071 3.203-.176 0 0 1.11-1.024.484-2.966-.319-.965-1.489-1.754-2.47-1.86-1.466-.235-2.837.259-3.794 1.589-1.123 1.73-1.265 3.66-2.092 5.59a.732.732 0 0 1-.721.448.732.732 0 0 1-.721-.447c-.816-1.919-.946-3.837-2.08-5.58-.958-1.33-2.341-1.824-3.795-1.588-.98.094-2.163.894-2.47 1.86-.627 1.941.484 2.965.484 2.965 1.194 1.248 2.483.883 3.204.177-.119.47-.485.906-1.005 1.153-.851.389-1.915.177-2.707-.506-1.17-1.153-1.347-2.636-.886-4.001.555-1.66 2.246-2.484 3.581-2.59 1.584-.141 3.77.824 4.645 2.484.201.376.627 1.365.627 1.365h2.222s.426-.989.626-1.365c.875-1.648 3.062-2.613 4.646-2.484 1.335.106 3.026.942 3.581 2.59.485 1.353.307 2.836-.863 3.99z" }) + ] + } + ); +}); + +export { SiKoc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.cjs new file mode 100644 index 000000000..34667dbe5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED0000"; +const SiKodak = React__namespace.forwardRef(function SiKodak2({ title = "Kodak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.496 9.076a.735.735 0 0 0 .84-.844c0-.51-.255-.771-.84-.771s-.835.263-.835.77a.733.733 0 0 0 .835.845zm.128 2.126h-.82v1.538h.82c.448 0 .634-.307.634-.81 0-.494-.186-.728-.634-.728zM2.406 12.848a1.448 1.448 0 0 1-.346-.753 1.058 1.058 0 0 1 .173-.603l6.739-9.138a.447.447 0 0 0 .077-.282.51.51 0 0 0-.52-.51H1.54A1.56 1.56 0 0 0 0 3.106v17.805a1.53 1.53 0 0 0 1.536 1.526h6.993a.513.513 0 0 0 .52-.505v-.005a.63.63 0 0 0-.096-.32l-6.547-8.759zM20.03 16.01h.928l-.464-1.154-.464 1.154zm2.468-14.446h-6.782a2.223 2.223 0 0 0-1.522.716L2.905 11.887c-.1.106-.1.271 0 .377l11.59 9.74c.346.279.776.432 1.22.434h6.763A1.517 1.517 0 0 0 24 20.926V3.11a1.542 1.542 0 0 0-1.502-1.546zM19.25 3.306h.643v1.166l1.157-1.166h.896l-1.295 1.272 1.345 1.268h-.918l-1.184-1.162v1.162h-.644v-2.54zm1.332 3.621c.945 0 1.47.437 1.47 1.299 0 .846-.51 1.367-1.47 1.367s-1.47-.521-1.47-1.367c0-.863.527-1.299 1.472-1.299h-.002zm1.392 5c0 .824-.367 1.317-1.272 1.317h-1.447v-2.565h1.447c.905 0 1.272.425 1.272 1.248zm-.896 8.703-1.184-1.163v1.163h-.643v-2.54h.643v1.166l1.158-1.166h.855l-1.252 1.272L22 20.63h-.922zm.325-3.692-.18-.449h-1.286l-.176.449h-.685l1.1-2.586h.848l1.096 2.586h-.717z" }) + ] + } + ); +}); + +exports.default = SiKodak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.d.ts new file mode 100644 index 000000000..2cc567f60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED0000"; +declare const SiKodak: IconType; +export { SiKodak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.mjs new file mode 100644 index 000000000..89c2428ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED0000"; +const SiKodak = React.forwardRef(function SiKodak2({ title = "Kodak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.496 9.076a.735.735 0 0 0 .84-.844c0-.51-.255-.771-.84-.771s-.835.263-.835.77a.733.733 0 0 0 .835.845zm.128 2.126h-.82v1.538h.82c.448 0 .634-.307.634-.81 0-.494-.186-.728-.634-.728zM2.406 12.848a1.448 1.448 0 0 1-.346-.753 1.058 1.058 0 0 1 .173-.603l6.739-9.138a.447.447 0 0 0 .077-.282.51.51 0 0 0-.52-.51H1.54A1.56 1.56 0 0 0 0 3.106v17.805a1.53 1.53 0 0 0 1.536 1.526h6.993a.513.513 0 0 0 .52-.505v-.005a.63.63 0 0 0-.096-.32l-6.547-8.759zM20.03 16.01h.928l-.464-1.154-.464 1.154zm2.468-14.446h-6.782a2.223 2.223 0 0 0-1.522.716L2.905 11.887c-.1.106-.1.271 0 .377l11.59 9.74c.346.279.776.432 1.22.434h6.763A1.517 1.517 0 0 0 24 20.926V3.11a1.542 1.542 0 0 0-1.502-1.546zM19.25 3.306h.643v1.166l1.157-1.166h.896l-1.295 1.272 1.345 1.268h-.918l-1.184-1.162v1.162h-.644v-2.54zm1.332 3.621c.945 0 1.47.437 1.47 1.299 0 .846-.51 1.367-1.47 1.367s-1.47-.521-1.47-1.367c0-.863.527-1.299 1.472-1.299h-.002zm1.392 5c0 .824-.367 1.317-1.272 1.317h-1.447v-2.565h1.447c.905 0 1.272.425 1.272 1.248zm-.896 8.703-1.184-1.163v1.163h-.643v-2.54h.643v1.166l1.158-1.166h.855l-1.252 1.272L22 20.63h-.922zm.325-3.692-.18-.449h-1.286l-.176.449h-.685l1.1-2.586h.848l1.096 2.586h-.717z" }) + ] + } + ); +}); + +export { SiKodak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.cjs new file mode 100644 index 000000000..ceb5846cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17B2E7"; +const SiKodi = React__namespace.forwardRef(function SiKodi2({ title = "Kodi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.03.047c-.226 0-.452.107-.669.324-.922.922-1.842 1.845-2.763 2.768-.233.233-.455.48-.703.695-.31.267-.405.583-.399.988.02 1.399.008 2.799.008 4.198 0 1.453-.002 2.907 0 4.36 0 .11.002.223.03.327.087.337.303.393.546.15 1.31-1.31 2.618-2.622 3.928-3.933l4.449-4.453c.43-.431.43-.905 0-1.336L12.697.37c-.216-.217-.442-.324-.668-.324zm7.224 7.23c-.223 0-.445.104-.65.309L14.82 11.37c-.428.429-.427.895 0 1.322l3.76 3.766c.44.44.908.44 1.346.002 1.215-1.216 2.427-2.433 3.644-3.647.182-.18.353-.364.43-.615v-.33c-.077-.251-.246-.436-.428-.617-1.224-1.22-2.443-2.445-3.666-3.668-.205-.205-.429-.307-.652-.307zM4.18 7.611c-.086.014-.145.094-.207.157L.209 11.572c-.28.284-.278.677.004.96l2.043 2.046c.59.59 1.177 1.182 1.767 1.772.169.168.33.139.416-.084.044-.114.062-.242.063-.364.004-1.283.004-2.567.004-3.851h-.002V8.184c0-.085-.01-.169-.022-.252-.019-.135-.072-.258-.207-.309a.186.186 0 0 0-.095-.012zm7.908 6.838c-.224 0-.447.106-.656.315L7.66 18.537c-.433.434-.433.899.002 1.334 1.215 1.216 2.43 2.43 3.643 3.649.18.18.361.354.611.433h.33c.244-.069.423-.226.598-.402 1.222-1.23 2.45-2.453 3.676-3.68.43-.43.427-.905-.004-1.338l-3.772-3.773c-.208-.208-.432-.311-.656-.31z" }) + ] + } + ); +}); + +exports.default = SiKodi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.d.ts new file mode 100644 index 000000000..f8127c671 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17B2E7"; +declare const SiKodi: IconType; +export { SiKodi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.mjs new file mode 100644 index 000000000..928ddedd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17B2E7"; +const SiKodi = React.forwardRef(function SiKodi2({ title = "Kodi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.03.047c-.226 0-.452.107-.669.324-.922.922-1.842 1.845-2.763 2.768-.233.233-.455.48-.703.695-.31.267-.405.583-.399.988.02 1.399.008 2.799.008 4.198 0 1.453-.002 2.907 0 4.36 0 .11.002.223.03.327.087.337.303.393.546.15 1.31-1.31 2.618-2.622 3.928-3.933l4.449-4.453c.43-.431.43-.905 0-1.336L12.697.37c-.216-.217-.442-.324-.668-.324zm7.224 7.23c-.223 0-.445.104-.65.309L14.82 11.37c-.428.429-.427.895 0 1.322l3.76 3.766c.44.44.908.44 1.346.002 1.215-1.216 2.427-2.433 3.644-3.647.182-.18.353-.364.43-.615v-.33c-.077-.251-.246-.436-.428-.617-1.224-1.22-2.443-2.445-3.666-3.668-.205-.205-.429-.307-.652-.307zM4.18 7.611c-.086.014-.145.094-.207.157L.209 11.572c-.28.284-.278.677.004.96l2.043 2.046c.59.59 1.177 1.182 1.767 1.772.169.168.33.139.416-.084.044-.114.062-.242.063-.364.004-1.283.004-2.567.004-3.851h-.002V8.184c0-.085-.01-.169-.022-.252-.019-.135-.072-.258-.207-.309a.186.186 0 0 0-.095-.012zm7.908 6.838c-.224 0-.447.106-.656.315L7.66 18.537c-.433.434-.433.899.002 1.334 1.215 1.216 2.43 2.43 3.643 3.649.18.18.361.354.611.433h.33c.244-.069.423-.226.598-.402 1.222-1.23 2.45-2.453 3.676-3.68.43-.43.427-.905-.004-1.338l-3.772-3.773c-.208-.208-.432-.311-.656-.31z" }) + ] + } + ); +}); + +export { SiKodi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.cjs new file mode 100644 index 000000000..05d00b6a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4527A0"; +const SiKodular = React__namespace.forwardRef(function SiKodular2({ title = "Kodular", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.612 0a5.6 5.6 0 0 1 5.6 5.6v4.934l2.44-2.44a4.48 4.48 0 0 1 6.336 0l-6.095 6.096 8.495 8.495a4.48 4.48 0 0 1-6.336 0l-4.84-4.84V24a5.6 5.6 0 0 1-5.6-5.6Z" }) + ] + } + ); +}); + +exports.default = SiKodular; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.d.ts new file mode 100644 index 000000000..3eb6f695d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4527A0"; +declare const SiKodular: IconType; +export { SiKodular as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.mjs new file mode 100644 index 000000000..fed916859 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKodular.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4527A0"; +const SiKodular = React.forwardRef(function SiKodular2({ title = "Kodular", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.612 0a5.6 5.6 0 0 1 5.6 5.6v4.934l2.44-2.44a4.48 4.48 0 0 1 6.336 0l-6.095 6.096 8.495 8.495a4.48 4.48 0 0 1-6.336 0l-4.84-4.84V24a5.6 5.6 0 0 1-5.6-5.6Z" }) + ] + } + ); +}); + +export { SiKodular as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.cjs new file mode 100644 index 000000000..1964aa2db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiKoenigsegg = React__namespace.forwardRef(function SiKoenigsegg2({ title = "Koenigsegg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.6396 2.2779A27.1802 27.1802 0 0 0 11.997 0a27.1795 27.1795 0 0 0-4.6366 2.2779C4.8482 3.8075 3.357 5.2707 3.357 5.2707a32.0542 32.0542 0 0 0 1.0293 7.2991C5.214 15.7228 7.3082 20.6134 11.997 24c4.6887-3.3866 6.7837-8.2771 7.6105-11.4302a32.058 32.058 0 0 0 1.0354-7.2991s-1.4911-1.4632-4.0033-2.9928zm2.7246 10.2285a21.9594 21.9594 0 0 1-2.33 5.5616 19.0142 19.0142 0 0 1-5.0372 5.6214 18.9938 18.9938 0 0 1-5.0372-5.6214 21.9617 21.9617 0 0 1-2.3292-5.5616 32.5174 32.5174 0 0 1-1.0271-7.1299 24.9492 24.9492 0 0 1 3.883-2.8848A27.3813 27.3813 0 0 1 11.997.2653a27.3813 27.3813 0 0 1 4.5104 2.225 24.9477 24.9477 0 0 1 3.8823 2.8862 32.6127 32.6127 0 0 1-1.0255 7.1299zm-2.9226-6.3636c-2.1796-.8207-3.682-1.2394-4.4469-1.2394-.764 0-2.2658.424-4.4461 1.2394-1.2546.4731-3.0579 1.241-3.0579 1.241a38.8137 38.8137 0 0 0 .8934 4.9246c.7497 2.8567 2.5068 7.1873 6.6106 10.4053 4.1068-3.2173 5.8617-7.5478 6.6107-10.4053a38.822 38.822 0 0 0 .894-4.9254s-1.8032-.7655-3.0578-1.2394zm1.841 6.081c-.7602 2.8983-2.4683 6.9733-6.2864 10.0621-3.8241-3.0888-5.523-7.1646-6.2864-10.0622a37.773 37.773 0 0 1-.8495-4.6313 91.5984 91.5984 0 0 1 2.8122-1.136c2.6678-1.0058 3.8242-1.219 4.3283-1.219.504 0 1.6611.2116 4.3275 1.2183a93.1855 93.1855 0 0 1 2.8129 1.136 37.7783 37.7783 0 0 1-.86 4.6312h.0014zm-3.32 6.2425c.2192-.3136.4247-.6295.619-.9455l-1.4163.5646zm1.3256-2.1985a19.7708 19.7708 0 0 0 .6447-1.3944l-2.021.8313zm1.0157-2.3467c.1716-.4776.3175-.9363.4422-1.3724l-2.2348.7633 1.7926.6084zm.6923-2.3489c.1119-.47.2116-.9401.2978-1.3928l-2.4079.7436zM16.261 8.5318l2.2166.6205c.081-.489.1414-.9326.1913-1.2939l-2.408.6726Zm-1.2825-2.1124c-1.8706-.6476-2.6626-.758-2.9823-.758-.3204 0-1.1117.1104-2.983.758l2.983.9168zm-2.9823 12.8677-1.6158.8797a17.133 17.133 0 0 0 1.6158 1.5614 17.1347 17.1347 0 0 0 1.6158-1.5614l-1.6158-.8805zm-3.8854-8.3686 3.8824 1.1918 3.8846-1.1926-3.8846-1.1918-3.8831 1.1926zm.3711 2.392 3.5113 1.1918 3.5113-1.1918-3.5113-1.1926zm-.749-4.781 4.2603 1.1911 4.2617-1.191-4.2617-1.1919-4.261 1.1918Zm2.8085-5.1331-.2441.2418a1.0959 1.0959 0 0 0 1.5281.0197v.6318h.35v-.6379a1.0959 1.0959 0 0 0 1.528-.0196l-.253-.2358a.7527.7527 0 0 1-1.2841-.5298.7482.7482 0 0 1 .464-.6923.7543.7543 0 0 1 .82.1625l.2434-.2426a1.1011 1.1011 0 0 0-1.5282-.0196v-.631h-.3431v.631a1.1011 1.1011 0 0 0-1.5274.0196l.2434.2419a.7527.7527 0 0 1 1.2832.5305.7467.7467 0 0 1-.464.6923.7543.7543 0 0 1-.8192-.1625ZM8.4026 17.5171c.1927.3159.399.6318.619.9447l.7912-.3764zm-1.3438-2.6437c.1905.4557.4036.9228.6447 1.3944l1.3762-.5646Zm-.8177-2.3247c.1247.436.2706.8948.4421 1.3717l1.7927-.6084ZM5.6924 10.18c.0862.452.1852.922.297 1.3921l2.1162-.6492-2.4132-.7436zm-.3718-2.3255c.046.3613.1103.8042.189 1.294l2.218-.6176Zm3.7606 7.8456 2.9135 1.1903 2.9142-1.1903-2.9142-1.194Zm.7414 2.3867 2.1751 1.1926 2.1766-1.1926-2.1766-1.1926z" }) + ] + } + ); +}); + +exports.default = SiKoenigsegg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.d.ts new file mode 100644 index 000000000..ceed85301 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiKoenigsegg: IconType; +export { SiKoenigsegg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.mjs new file mode 100644 index 000000000..8f9aebb9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoenigsegg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiKoenigsegg = React.forwardRef(function SiKoenigsegg2({ title = "Koenigsegg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.6396 2.2779A27.1802 27.1802 0 0 0 11.997 0a27.1795 27.1795 0 0 0-4.6366 2.2779C4.8482 3.8075 3.357 5.2707 3.357 5.2707a32.0542 32.0542 0 0 0 1.0293 7.2991C5.214 15.7228 7.3082 20.6134 11.997 24c4.6887-3.3866 6.7837-8.2771 7.6105-11.4302a32.058 32.058 0 0 0 1.0354-7.2991s-1.4911-1.4632-4.0033-2.9928zm2.7246 10.2285a21.9594 21.9594 0 0 1-2.33 5.5616 19.0142 19.0142 0 0 1-5.0372 5.6214 18.9938 18.9938 0 0 1-5.0372-5.6214 21.9617 21.9617 0 0 1-2.3292-5.5616 32.5174 32.5174 0 0 1-1.0271-7.1299 24.9492 24.9492 0 0 1 3.883-2.8848A27.3813 27.3813 0 0 1 11.997.2653a27.3813 27.3813 0 0 1 4.5104 2.225 24.9477 24.9477 0 0 1 3.8823 2.8862 32.6127 32.6127 0 0 1-1.0255 7.1299zm-2.9226-6.3636c-2.1796-.8207-3.682-1.2394-4.4469-1.2394-.764 0-2.2658.424-4.4461 1.2394-1.2546.4731-3.0579 1.241-3.0579 1.241a38.8137 38.8137 0 0 0 .8934 4.9246c.7497 2.8567 2.5068 7.1873 6.6106 10.4053 4.1068-3.2173 5.8617-7.5478 6.6107-10.4053a38.822 38.822 0 0 0 .894-4.9254s-1.8032-.7655-3.0578-1.2394zm1.841 6.081c-.7602 2.8983-2.4683 6.9733-6.2864 10.0621-3.8241-3.0888-5.523-7.1646-6.2864-10.0622a37.773 37.773 0 0 1-.8495-4.6313 91.5984 91.5984 0 0 1 2.8122-1.136c2.6678-1.0058 3.8242-1.219 4.3283-1.219.504 0 1.6611.2116 4.3275 1.2183a93.1855 93.1855 0 0 1 2.8129 1.136 37.7783 37.7783 0 0 1-.86 4.6312h.0014zm-3.32 6.2425c.2192-.3136.4247-.6295.619-.9455l-1.4163.5646zm1.3256-2.1985a19.7708 19.7708 0 0 0 .6447-1.3944l-2.021.8313zm1.0157-2.3467c.1716-.4776.3175-.9363.4422-1.3724l-2.2348.7633 1.7926.6084zm.6923-2.3489c.1119-.47.2116-.9401.2978-1.3928l-2.4079.7436zM16.261 8.5318l2.2166.6205c.081-.489.1414-.9326.1913-1.2939l-2.408.6726Zm-1.2825-2.1124c-1.8706-.6476-2.6626-.758-2.9823-.758-.3204 0-1.1117.1104-2.983.758l2.983.9168zm-2.9823 12.8677-1.6158.8797a17.133 17.133 0 0 0 1.6158 1.5614 17.1347 17.1347 0 0 0 1.6158-1.5614l-1.6158-.8805zm-3.8854-8.3686 3.8824 1.1918 3.8846-1.1926-3.8846-1.1918-3.8831 1.1926zm.3711 2.392 3.5113 1.1918 3.5113-1.1918-3.5113-1.1926zm-.749-4.781 4.2603 1.1911 4.2617-1.191-4.2617-1.1919-4.261 1.1918Zm2.8085-5.1331-.2441.2418a1.0959 1.0959 0 0 0 1.5281.0197v.6318h.35v-.6379a1.0959 1.0959 0 0 0 1.528-.0196l-.253-.2358a.7527.7527 0 0 1-1.2841-.5298.7482.7482 0 0 1 .464-.6923.7543.7543 0 0 1 .82.1625l.2434-.2426a1.1011 1.1011 0 0 0-1.5282-.0196v-.631h-.3431v.631a1.1011 1.1011 0 0 0-1.5274.0196l.2434.2419a.7527.7527 0 0 1 1.2832.5305.7467.7467 0 0 1-.464.6923.7543.7543 0 0 1-.8192-.1625ZM8.4026 17.5171c.1927.3159.399.6318.619.9447l.7912-.3764zm-1.3438-2.6437c.1905.4557.4036.9228.6447 1.3944l1.3762-.5646Zm-.8177-2.3247c.1247.436.2706.8948.4421 1.3717l1.7927-.6084ZM5.6924 10.18c.0862.452.1852.922.297 1.3921l2.1162-.6492-2.4132-.7436zm-.3718-2.3255c.046.3613.1103.8042.189 1.294l2.218-.6176Zm3.7606 7.8456 2.9135 1.1903 2.9142-1.1903-2.9142-1.194Zm.7414 2.3867 2.1751 1.1926 2.1766-1.1926-2.1766-1.1926z" }) + ] + } + ); +}); + +export { SiKoenigsegg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.cjs new file mode 100644 index 000000000..b22a64f54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00558C"; +const SiKofax = React__namespace.forwardRef(function SiKofax2({ title = "Kofax", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.38 12.94l.576-.5 1.273 1.698h1.835l-2.001-2.593 1.85-1.683h-1.82L1.38 11.545V9.862H0v4.276h1.38z M7.353 9.726c-1.455 0-2.683.5-2.683 2.274s1.228 2.274 2.683 2.274 2.684-.5 2.684-2.274-1.228-2.274-2.684-2.274zm0 3.593c-.728 0-1.228-.41-1.228-1.319 0-.894.5-1.319 1.228-1.319.743 0 1.228.425 1.228 1.32 0 .894-.5 1.318-1.228 1.318zM11.795 14.138v-1.653h2.365v-.925h-2.365v-.742h2.547v-.956h-3.926v4.276zM22.21 11.91l1.593-2.063h-1.638L21.407 11l-.758-1.153h-1.637l1.592 2.062-1.607 2.001-1.668-4.048h-1.683l-1.759 4.276h1.471l.243-.698h1.804l.242.698h2.896l.88-1.289.879 1.289H24zm-6.276.651l.576-1.622h.015l.577 1.622z" }) + ] + } + ); +}); + +exports.default = SiKofax; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.d.ts new file mode 100644 index 000000000..10ef6d741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00558C"; +declare const SiKofax: IconType; +export { SiKofax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.mjs new file mode 100644 index 000000000..ca1d4519f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKofax.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00558C"; +const SiKofax = React.forwardRef(function SiKofax2({ title = "Kofax", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.38 12.94l.576-.5 1.273 1.698h1.835l-2.001-2.593 1.85-1.683h-1.82L1.38 11.545V9.862H0v4.276h1.38z M7.353 9.726c-1.455 0-2.683.5-2.683 2.274s1.228 2.274 2.683 2.274 2.684-.5 2.684-2.274-1.228-2.274-2.684-2.274zm0 3.593c-.728 0-1.228-.41-1.228-1.319 0-.894.5-1.319 1.228-1.319.743 0 1.228.425 1.228 1.32 0 .894-.5 1.318-1.228 1.318zM11.795 14.138v-1.653h2.365v-.925h-2.365v-.742h2.547v-.956h-3.926v4.276zM22.21 11.91l1.593-2.063h-1.638L21.407 11l-.758-1.153h-1.637l1.592 2.062-1.607 2.001-1.668-4.048h-1.683l-1.759 4.276h1.471l.243-.698h1.804l.242.698h2.896l.88-1.289.879 1.289H24zm-6.276.651l.576-1.622h.015l.577 1.622z" }) + ] + } + ); +}); + +export { SiKofax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.cjs new file mode 100644 index 000000000..6e28bc9c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6433"; +const SiKofi = React__namespace.forwardRef(function SiKofi2({ title = "Ko-fi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.351 2.715c-2.7 0-4.986.025-6.83.26C2.078 3.285 0 5.154 0 8.61c0 3.506.182 6.13 1.585 8.493 1.584 2.701 4.233 4.182 7.662 4.182h.83c4.209 0 6.494-2.234 7.637-4a9.5 9.5 0 0 0 1.091-2.338C21.792 14.688 24 12.22 24 9.208v-.415c0-3.247-2.13-5.507-5.792-5.87-1.558-.156-2.65-.208-6.857-.208m0 1.947c4.208 0 5.09.052 6.571.182 2.624.311 4.13 1.584 4.13 4v.39c0 2.156-1.792 3.844-3.87 3.844h-.935l-.156.649c-.208 1.013-.597 1.818-1.039 2.546-.909 1.428-2.545 3.064-5.922 3.064h-.805c-2.571 0-4.831-.883-6.078-3.195-1.09-2-1.298-4.155-1.298-7.506 0-2.181.857-3.402 3.012-3.714 1.533-.233 3.559-.26 6.39-.26m6.547 2.287c-.416 0-.65.234-.65.546v2.935c0 .311.234.545.65.545 1.324 0 2.051-.754 2.051-2s-.727-2.026-2.052-2.026m-10.39.182c-1.818 0-3.013 1.48-3.013 3.142 0 1.533.858 2.857 1.949 3.897.727.701 1.87 1.429 2.649 1.896a1.47 1.47 0 0 0 1.507 0c.78-.467 1.922-1.195 2.623-1.896 1.117-1.039 1.974-2.364 1.974-3.897 0-1.662-1.247-3.142-3.039-3.142-1.065 0-1.792.545-2.338 1.298-.493-.753-1.246-1.298-2.312-1.298" }) + ] + } + ); +}); + +exports.default = SiKofi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.d.ts new file mode 100644 index 000000000..e2b94badb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6433"; +declare const SiKofi: IconType; +export { SiKofi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.mjs new file mode 100644 index 000000000..1d7767e55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKofi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6433"; +const SiKofi = React.forwardRef(function SiKofi2({ title = "Ko-fi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.351 2.715c-2.7 0-4.986.025-6.83.26C2.078 3.285 0 5.154 0 8.61c0 3.506.182 6.13 1.585 8.493 1.584 2.701 4.233 4.182 7.662 4.182h.83c4.209 0 6.494-2.234 7.637-4a9.5 9.5 0 0 0 1.091-2.338C21.792 14.688 24 12.22 24 9.208v-.415c0-3.247-2.13-5.507-5.792-5.87-1.558-.156-2.65-.208-6.857-.208m0 1.947c4.208 0 5.09.052 6.571.182 2.624.311 4.13 1.584 4.13 4v.39c0 2.156-1.792 3.844-3.87 3.844h-.935l-.156.649c-.208 1.013-.597 1.818-1.039 2.546-.909 1.428-2.545 3.064-5.922 3.064h-.805c-2.571 0-4.831-.883-6.078-3.195-1.09-2-1.298-4.155-1.298-7.506 0-2.181.857-3.402 3.012-3.714 1.533-.233 3.559-.26 6.39-.26m6.547 2.287c-.416 0-.65.234-.65.546v2.935c0 .311.234.545.65.545 1.324 0 2.051-.754 2.051-2s-.727-2.026-2.052-2.026m-10.39.182c-1.818 0-3.013 1.48-3.013 3.142 0 1.533.858 2.857 1.949 3.897.727.701 1.87 1.429 2.649 1.896a1.47 1.47 0 0 0 1.507 0c.78-.467 1.922-1.195 2.623-1.896 1.117-1.039 1.974-2.364 1.974-3.897 0-1.662-1.247-3.142-3.039-3.142-1.065 0-1.792.545-2.338 1.298-.493-.753-1.246-1.298-2.312-1.298" }) + ] + } + ); +}); + +export { SiKofi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.cjs new file mode 100644 index 000000000..c65a4808e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6AA127"; +const SiKomoot = React__namespace.forwardRef(function SiKomoot2({ title = "Komoot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.8 14.829l2.2-3.43 2.2 3.43 5.962 5.962A11.946 11.946 0 0 1 12 24c-3.043 0-5.935-1.14-8.162-3.209zM0 12C0 5.385 5.385 0 12 0c6.62 0 12 5.385 12 12 0 2.663-.855 5.175-2.469 7.284l-6.018-6.018c.15-.412.226-.839.226-1.27A3.743 3.743 0 0 0 12 8.257a3.743 3.743 0 0 0-3.739 3.739c0 .431.075.858.226 1.27l-6.018 6.018A11.865 11.865 0 0 1 0 12Z" }) + ] + } + ); +}); + +exports.default = SiKomoot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.d.ts new file mode 100644 index 000000000..d5109d129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6AA127"; +declare const SiKomoot: IconType; +export { SiKomoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.mjs new file mode 100644 index 000000000..7a9abfb0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKomoot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6AA127"; +const SiKomoot = React.forwardRef(function SiKomoot2({ title = "Komoot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.8 14.829l2.2-3.43 2.2 3.43 5.962 5.962A11.946 11.946 0 0 1 12 24c-3.043 0-5.935-1.14-8.162-3.209zM0 12C0 5.385 5.385 0 12 0c6.62 0 12 5.385 12 12 0 2.663-.855 5.175-2.469 7.284l-6.018-6.018c.15-.412.226-.839.226-1.27A3.743 3.743 0 0 0 12 8.257a3.743 3.743 0 0 0-3.739 3.739c0 .431.075.858.226 1.27l-6.018 6.018A11.865 11.865 0 0 1 0 12Z" }) + ] + } + ); +}); + +export { SiKomoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.cjs new file mode 100644 index 000000000..66348893b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B60014"; +const SiKonami = React__namespace.forwardRef(function SiKonami2({ title = "Konami", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.167 12.562.59-1.298a1.53 1.53 0 0 0 .062-.158h.012c.013.04.037.095.061.158l.575 1.298zm1.887 1.325h1.036l-1.635-3.537a.396.396 0 0 0-.359-.233h-.717c-.041 0-.041.04-.012.055.085.044.146.19.081.325l-1.582 3.39h.702l.39-.87h1.713zm-4.089-3.77v2.152c0 .107.004.174.008.269h-.008a6.068 6.068 0 0 0-.273-.348l-1.618-1.871c-.127-.147-.229-.202-.461-.202H8.79c-.037 0-.041.04-.013.055.123.056.22.123.22.345v3.37h.616v-2.425c0-.13-.004-.23-.008-.34h.008c.114.154.27.356.396.502l1.944 2.263h.322a.305.305 0 0 0 .306-.305v-3.465zm11.733 0h-.856c-.04 0-.045.04-.016.055.126.056.224.123.224.345v3.37H24v-3.465a.3.304 0 0 0-.302-.305m-1.386 3.77-.562-3.442a.401.401 0 0 0-.384-.328h-.53l-.921 2.144a1.866 1.866 0 0 0-.09.23h-.008a1.935 1.935 0 0 0-.081-.218l-.816-1.91a.401.401 0 0 0-.367-.246h-.807c-.04 0-.045.04-.016.055.11.048.192.131.155.34l-.55 3.375h.582l.367-2.382c.017-.118.041-.268.045-.344h.004c.037.1.086.218.139.34l1.015 2.386h.302l1.027-2.429c.057-.142.098-.245.126-.324h.004c.013.095.029.237.053.38l.38 2.373zm-16.205-.25c-.758 0-1.19-.739-1.19-1.59 0-.973.432-1.685 1.19-1.685s1.19.744 1.19 1.59c0 1.001-.432 1.686-1.19 1.686m0-3.66c-1.272 0-2.21.887-2.21 2.022 0 1.14.865 2.022 2.21 2.022 1.272 0 2.206-.883 2.206-2.022 0-1.135-.86-2.021-2.206-2.021M4.33 13.85c-.327-.07-.58-.225-.856-.506-.302-.309-1.387-1.586-1.387-1.586l1.729-1.642h-.934L1.305 11.66c-.07.067-.11.11-.147.154H1.15c.004-.051.004-.107.004-.158v-1.234a.3.304 0 0 0-.302-.305h-.82c-.036 0-.044.04-.012.055.123.056.22.123.22.345v3.37h.914V12.15c0-.047 0-.079-.004-.13h.008c.032.051.09.11.147.182 0 0 .962 1.131 1.064 1.238.407.427.978.578 1.957.483.053-.004.053-.06.004-.072" }) + ] + } + ); +}); + +exports.default = SiKonami; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.d.ts new file mode 100644 index 000000000..dbad2340d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B60014"; +declare const SiKonami: IconType; +export { SiKonami as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.mjs new file mode 100644 index 000000000..5822b188a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKonami.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B60014"; +const SiKonami = React.forwardRef(function SiKonami2({ title = "Konami", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.167 12.562.59-1.298a1.53 1.53 0 0 0 .062-.158h.012c.013.04.037.095.061.158l.575 1.298zm1.887 1.325h1.036l-1.635-3.537a.396.396 0 0 0-.359-.233h-.717c-.041 0-.041.04-.012.055.085.044.146.19.081.325l-1.582 3.39h.702l.39-.87h1.713zm-4.089-3.77v2.152c0 .107.004.174.008.269h-.008a6.068 6.068 0 0 0-.273-.348l-1.618-1.871c-.127-.147-.229-.202-.461-.202H8.79c-.037 0-.041.04-.013.055.123.056.22.123.22.345v3.37h.616v-2.425c0-.13-.004-.23-.008-.34h.008c.114.154.27.356.396.502l1.944 2.263h.322a.305.305 0 0 0 .306-.305v-3.465zm11.733 0h-.856c-.04 0-.045.04-.016.055.126.056.224.123.224.345v3.37H24v-3.465a.3.304 0 0 0-.302-.305m-1.386 3.77-.562-3.442a.401.401 0 0 0-.384-.328h-.53l-.921 2.144a1.866 1.866 0 0 0-.09.23h-.008a1.935 1.935 0 0 0-.081-.218l-.816-1.91a.401.401 0 0 0-.367-.246h-.807c-.04 0-.045.04-.016.055.11.048.192.131.155.34l-.55 3.375h.582l.367-2.382c.017-.118.041-.268.045-.344h.004c.037.1.086.218.139.34l1.015 2.386h.302l1.027-2.429c.057-.142.098-.245.126-.324h.004c.013.095.029.237.053.38l.38 2.373zm-16.205-.25c-.758 0-1.19-.739-1.19-1.59 0-.973.432-1.685 1.19-1.685s1.19.744 1.19 1.59c0 1.001-.432 1.686-1.19 1.686m0-3.66c-1.272 0-2.21.887-2.21 2.022 0 1.14.865 2.022 2.21 2.022 1.272 0 2.206-.883 2.206-2.022 0-1.135-.86-2.021-2.206-2.021M4.33 13.85c-.327-.07-.58-.225-.856-.506-.302-.309-1.387-1.586-1.387-1.586l1.729-1.642h-.934L1.305 11.66c-.07.067-.11.11-.147.154H1.15c.004-.051.004-.107.004-.158v-1.234a.3.304 0 0 0-.302-.305h-.82c-.036 0-.044.04-.012.055.123.056.22.123.22.345v3.37h.914V12.15c0-.047 0-.079-.004-.13h.008c.032.051.09.11.147.182 0 0 .962 1.131 1.064 1.238.407.427.978.578 1.957.483.053-.004.053-.06.004-.072" }) + ] + } + ); +}); + +export { SiKonami as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKong.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKong.cjs new file mode 100644 index 000000000..f1a5cfa5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKong.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003459"; +const SiKong = React__namespace.forwardRef(function SiKong2({ title = "Kong", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.88 18.96h4.405l2.286 2.876-.393.979h-5.69l.139-.979-1.341-2.117.594-.759Zm3.152-12.632 2.36-.004L24 18.97l-.824 3.845h-4.547l.283-1.083L9 9.912l2.032-3.584Zm4.17-5.144 4.932 3.876-.632.651.855 1.191v1.273l-2.458 2.004-4.135-4.884h-2.407l.969-1.777 2.876-2.334ZM4.852 13.597l3.44-2.989 4.565 5.494-1.296 2.012h-4.21l-2.912 3.822-.665.879H0v-4.689l3.517-4.529h1.335Z" }) + ] + } + ); +}); + +exports.default = SiKong; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKong.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKong.d.ts new file mode 100644 index 000000000..91b89d40b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKong.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003459"; +declare const SiKong: IconType; +export { SiKong as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKong.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKong.mjs new file mode 100644 index 000000000..26ce42817 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKong.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003459"; +const SiKong = React.forwardRef(function SiKong2({ title = "Kong", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.88 18.96h4.405l2.286 2.876-.393.979h-5.69l.139-.979-1.341-2.117.594-.759Zm3.152-12.632 2.36-.004L24 18.97l-.824 3.845h-4.547l.283-1.083L9 9.912l2.032-3.584Zm4.17-5.144 4.932 3.876-.632.651.855 1.191v1.273l-2.458 2.004-4.135-4.884h-2.407l.969-1.777 2.876-2.334ZM4.852 13.597l3.44-2.989 4.565 5.494-1.296 2.012h-4.21l-2.912 3.822-.665.879H0v-4.689l3.517-4.529h1.335Z" }) + ] + } + ); +}); + +export { SiKong as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.cjs new file mode 100644 index 000000000..4730cd36d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F04438"; +const SiKongregate = React__namespace.forwardRef(function SiKongregate2({ title = "Kongregate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.667 0A2.667 2.667 0 0 0 0 2.667v18.666A2.667 2.667 0 0 0 2.667 24h18.666A2.667 2.667 0 0 0 24 21.333V2.667A2.667 2.667 0 0 0 21.333 0ZM5.6 5.333h2.667v5.334H13.6v2.666H8.267v5.334H5.6Zm8 8h1.678a1.6 1.6 0 0 1 1.43.885L17.6 16h1.333v2.667h-2.666zm0-2.666 2.667-5.334h2.666V8H17.6l-.891 1.782a1.6 1.6 0 0 1-1.431.885z" }) + ] + } + ); +}); + +exports.default = SiKongregate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.d.ts new file mode 100644 index 000000000..92c2a02a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F04438"; +declare const SiKongregate: IconType; +export { SiKongregate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.mjs new file mode 100644 index 000000000..4acf71eab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKongregate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F04438"; +const SiKongregate = React.forwardRef(function SiKongregate2({ title = "Kongregate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.667 0A2.667 2.667 0 0 0 0 2.667v18.666A2.667 2.667 0 0 0 2.667 24h18.666A2.667 2.667 0 0 0 24 21.333V2.667A2.667 2.667 0 0 0 21.333 0ZM5.6 5.333h2.667v5.334H13.6v2.666H8.267v5.334H5.6Zm8 8h1.678a1.6 1.6 0 0 1 1.43.885L17.6 16h1.333v2.667h-2.666zm0-2.666 2.667-5.334h2.666V8H17.6l-.891 1.782a1.6 1.6 0 0 1-1.431.885z" }) + ] + } + ); +}); + +export { SiKongregate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.cjs new file mode 100644 index 000000000..ef6889d0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D83CD"; +const SiKonva = React__namespace.forwardRef(function SiKonva2({ title = "Konva", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm1.391 18.541-.239-3.76-2.391-1.608.152 5.129-4.325.152-.173-13.409L10.5 4.98l.087 5.346 2.217-1.608.109-3.781 4.412.283-.348 4.586-2.608 1.608 2.673 1.174.913 5.694-4.564.259z" }) + ] + } + ); +}); + +exports.default = SiKonva; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.d.ts new file mode 100644 index 000000000..c9c31a512 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D83CD"; +declare const SiKonva: IconType; +export { SiKonva as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.mjs new file mode 100644 index 000000000..8121872de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKonva.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D83CD"; +const SiKonva = React.forwardRef(function SiKonva2({ title = "Konva", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm1.391 18.541-.239-3.76-2.391-1.608.152 5.129-4.325.152-.173-13.409L10.5 4.98l.087 5.346 2.217-1.608.109-3.781 4.412.283-.348 4.586-2.608 1.608 2.673 1.174.913 5.694-4.564.259z" }) + ] + } + ); +}); + +export { SiKonva as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.cjs new file mode 100644 index 000000000..b5312c121 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A89C"; +const SiKoreader = React__namespace.forwardRef(function SiKoreader2({ title = "KOReader", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.8489 0v14.5581L6.1996 13.178 4.55 14.5581V.0258c-1.3637.1773-2.427 1.3509-2.427 2.7634v18.4216c0 1.3362.951 2.4601 2.2081 2.7279a7.9086 7.9086 0 0 1-.2363-1.92c0-4.3601 3.5401-7.9072 7.8918-7.9072 4.3516 0 7.8915 3.547 7.8915 7.9071a7.95 7.95 0 0 1-.0817 1.1292c.4864-.5029.788-1.186.788-1.937V2.7892c0-1.1618-.7192-2.1625-1.7332-2.5802L12.2039 7.323c.7334.8645 3.202 3.2692 6.3988 6.001.6706.5732 1.1863 1.0062 1.7217 1.234-1.1597.002-2.3696-.005-2.7622 0-2.2832.031-2.3345-.415-3.0694-1.0028-1.122-.8968-3.6824-3.4473-4.9377-4.6126-.4278-.3977-.6702-.8597-.6702-1.2922v-.352c0-.5752.2163-1.1301.6055-1.5534L14.7784 0zm10.5979 0c1.531 0 2.784 1.2553 2.784 2.7892v18.4216c0 1.534-1.253 2.7892-2.784 2.7892h.6461c1.531 0 2.784-1.2553 2.784-2.7892V2.7892C21.877 1.2552 20.624 0 19.093 0zm-6.4601 17.0838c-2.7159 0-4.9253 2.2137-4.9253 4.9348 0 .705.1508 1.3743.4177 1.9814h9.015a4.91 4.91 0 0 0 .4177-1.9814c0-2.721-2.2093-4.9348-4.9251-4.9348z" }) + ] + } + ); +}); + +exports.default = SiKoreader; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.d.ts new file mode 100644 index 000000000..26c128bf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A89C"; +declare const SiKoreader: IconType; +export { SiKoreader as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.mjs new file mode 100644 index 000000000..e8f49ba84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoreader.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A89C"; +const SiKoreader = React.forwardRef(function SiKoreader2({ title = "KOReader", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.8489 0v14.5581L6.1996 13.178 4.55 14.5581V.0258c-1.3637.1773-2.427 1.3509-2.427 2.7634v18.4216c0 1.3362.951 2.4601 2.2081 2.7279a7.9086 7.9086 0 0 1-.2363-1.92c0-4.3601 3.5401-7.9072 7.8918-7.9072 4.3516 0 7.8915 3.547 7.8915 7.9071a7.95 7.95 0 0 1-.0817 1.1292c.4864-.5029.788-1.186.788-1.937V2.7892c0-1.1618-.7192-2.1625-1.7332-2.5802L12.2039 7.323c.7334.8645 3.202 3.2692 6.3988 6.001.6706.5732 1.1863 1.0062 1.7217 1.234-1.1597.002-2.3696-.005-2.7622 0-2.2832.031-2.3345-.415-3.0694-1.0028-1.122-.8968-3.6824-3.4473-4.9377-4.6126-.4278-.3977-.6702-.8597-.6702-1.2922v-.352c0-.5752.2163-1.1301.6055-1.5534L14.7784 0zm10.5979 0c1.531 0 2.784 1.2553 2.784 2.7892v18.4216c0 1.534-1.253 2.7892-2.784 2.7892h.6461c1.531 0 2.784-1.2553 2.784-2.7892V2.7892C21.877 1.2552 20.624 0 19.093 0zm-6.4601 17.0838c-2.7159 0-4.9253 2.2137-4.9253 4.9348 0 .705.1508 1.3743.4177 1.9814h9.015a4.91 4.91 0 0 0 .4177-1.9814c0-2.721-2.2093-4.9348-4.9251-4.9348z" }) + ] + } + ); +}); + +export { SiKoreader as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.cjs new file mode 100644 index 000000000..775dbfd7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7F52FF"; +const SiKotlin = React__namespace.forwardRef(function SiKotlin2({ title = "Kotlin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 24H0V0h24L12 12Z" }) + ] + } + ); +}); + +exports.default = SiKotlin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.d.ts new file mode 100644 index 000000000..0a70f4a8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7F52FF"; +declare const SiKotlin: IconType; +export { SiKotlin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.mjs new file mode 100644 index 000000000..9b8892c9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKotlin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7F52FF"; +const SiKotlin = React.forwardRef(function SiKotlin2({ title = "Kotlin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 24H0V0h24L12 12Z" }) + ] + } + ); +}); + +export { SiKotlin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.cjs new file mode 100644 index 000000000..e81d6a8fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#121212"; +const SiKoyeb = React__namespace.forwardRef(function SiKoyeb2({ title = "Koyeb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.822V7.044L11.985.115 24 7.037v5.77L11.992 5.892Zm11.985 1.114L1.92 19.759 0 18.645v-3.557l11.985-6.93L24 15.089v3.542l-1.92 1.13Zm-3.028 9.949L3.95 21.004l8.036-4.656 8.066 4.656-5.009 2.88-3.05-1.759Z" }) + ] + } + ); +}); + +exports.default = SiKoyeb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.d.ts new file mode 100644 index 000000000..6f2fc4294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#121212"; +declare const SiKoyeb: IconType; +export { SiKoyeb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.mjs new file mode 100644 index 000000000..b6526eb66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKoyeb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#121212"; +const SiKoyeb = React.forwardRef(function SiKoyeb2({ title = "Koyeb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.822V7.044L11.985.115 24 7.037v5.77L11.992 5.892Zm11.985 1.114L1.92 19.759 0 18.645v-3.557l11.985-6.93L24 15.089v3.542l-1.92 1.13Zm-3.028 9.949L3.95 21.004l8.036-4.656 8.066 4.656-5.009 2.88-3.05-1.759Z" }) + ] + } + ); +}); + +export { SiKoyeb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKred.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKred.cjs new file mode 100644 index 000000000..547c37563 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKred.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#72BE50"; +const SiKred = React__namespace.forwardRef(function SiKred2({ title = "Kred", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 4.678c0-2.08-1.674-3.774-3.727-3.774H3.725C1.67.904 0 2.597 0 4.684v7.535c0 .336.045.667.135.997.03.134.07.264.12.39.25.623.653 1.17 1.173 1.593.51.524 1.17 1.095 1.965 1.71l.105.074.435.33.52.397c1.19.912 3.205 2.453 6.165 4.71.483.366 1.038.676 1.383.676.342 0 .901-.31 1.382-.676 2.96-2.257 4.972-3.798 6.164-4.71l.972-.74h-.002l.11-.085c.798-.612 1.463-1.19 1.968-1.71.514-.418.908-.96 1.15-1.576.166-.44.252-.906.254-1.376v-7.15h-.003l.003-.003v-.39zm-4.14 6.242a6.42 6.42 0 00-.283-.045c-.105 0-.226-.015-.33-.015a1.883 1.883 0 00-.81.164c-.214.1-.4.248-.54.436-.135.196-.23.415-.286.646-.06.254-.09.524-.09.81v2.88h-5.027l-3.733-5.583-1.556 1.575v3.975h-2.72V3.393H7.2v5.13l4.83-5.127h3.395l-4.83 4.885 5.166 7.293V9.395h1.662v1.182h.023c.084-.195.195-.38.33-.547.144-.168.3-.312.483-.43.18-.106.375-.21.58-.27.205-.06.42-.09.64-.09.114 0 .24.03.38.06z" }) + ] + } + ); +}); + +exports.default = SiKred; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKred.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKred.d.ts new file mode 100644 index 000000000..a0bbdde07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKred.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#72BE50"; +declare const SiKred: IconType; +export { SiKred as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKred.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKred.mjs new file mode 100644 index 000000000..7f9d3c3c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKred.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#72BE50"; +const SiKred = React.forwardRef(function SiKred2({ title = "Kred", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 4.678c0-2.08-1.674-3.774-3.727-3.774H3.725C1.67.904 0 2.597 0 4.684v7.535c0 .336.045.667.135.997.03.134.07.264.12.39.25.623.653 1.17 1.173 1.593.51.524 1.17 1.095 1.965 1.71l.105.074.435.33.52.397c1.19.912 3.205 2.453 6.165 4.71.483.366 1.038.676 1.383.676.342 0 .901-.31 1.382-.676 2.96-2.257 4.972-3.798 6.164-4.71l.972-.74h-.002l.11-.085c.798-.612 1.463-1.19 1.968-1.71.514-.418.908-.96 1.15-1.576.166-.44.252-.906.254-1.376v-7.15h-.003l.003-.003v-.39zm-4.14 6.242a6.42 6.42 0 00-.283-.045c-.105 0-.226-.015-.33-.015a1.883 1.883 0 00-.81.164c-.214.1-.4.248-.54.436-.135.196-.23.415-.286.646-.06.254-.09.524-.09.81v2.88h-5.027l-3.733-5.583-1.556 1.575v3.975h-2.72V3.393H7.2v5.13l4.83-5.127h3.395l-4.83 4.885 5.166 7.293V9.395h1.662v1.182h.023c.084-.195.195-.38.33-.547.144-.168.3-.312.483-.43.18-.106.375-.21.58-.27.205-.06.42-.09.64-.09.114 0 .24.03.38.06z" }) + ] + } + ); +}); + +export { SiKred as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.cjs new file mode 100644 index 000000000..7bd3241dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3BABFF"; +const SiKrita = React__namespace.forwardRef(function SiKrita2({ title = "Krita", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.652.76a.625.625 0 00-.5.246c-.352.448-.035.898.362 1.262.206.189 1.77 1.794 3.428 3.527a11.054 11.054 0 011.815-1.983C3.667 2.515 1.694 1.266 1.461 1.1 1.201.914.917.762.652.76zm5.105 3.052c1.848 1.148 3.786 2.332 4.693 2.84 1.469.821 3.758 2.684 4.092 4.434.535.466 2.182 1.916 2.596 2.413.698-.211 1.518.133 2.06 1.12.866 1.583.227 3.747-1.968 4.988a5.42 5.42 0 01-.296.267l.296-.267c1.14-1.468-.714-2.44-1.175-3.864a2.06 2.06 0 01-.11-.78c-.533-.282-2.11-1.452-2.795-1.965-1.801.16-4.207-1.773-5.35-3.08-.7-.802-2.32-2.517-3.858-4.123a11.052 11.052 0 00-2.046 6.393A11.052 11.052 0 1012.948 1.136c-2.64.004-5.19.954-7.19 2.676zm8.71 7.552c-.515.126-.968.831-1.118 1.306-.038.115-.04.303.066.342.802.592 1.556 1.168 2.4 1.7.162-.393.746-.963 1.096-1.2zm-11.53 1.639c.812 1.898 5.798 7.17 12.06 2.695a2.07 2.07 0 00.114.715c.46 1.42 2.36 2.427 1.238 3.89-2.135 1.364-5 1.201-6.989.528-3.558-1.204-5.914-4.332-6.424-7.828zm13.782.7a.771.771 0 00-.065.049c-.004.003-.008.008-.011.008.003-.003.007-.008.01-.008.024-.015.044-.034.066-.048z" }) + ] + } + ); +}); + +exports.default = SiKrita; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.d.ts new file mode 100644 index 000000000..9e36f7cbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3BABFF"; +declare const SiKrita: IconType; +export { SiKrita as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.mjs new file mode 100644 index 000000000..188dd50ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKrita.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3BABFF"; +const SiKrita = React.forwardRef(function SiKrita2({ title = "Krita", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.652.76a.625.625 0 00-.5.246c-.352.448-.035.898.362 1.262.206.189 1.77 1.794 3.428 3.527a11.054 11.054 0 011.815-1.983C3.667 2.515 1.694 1.266 1.461 1.1 1.201.914.917.762.652.76zm5.105 3.052c1.848 1.148 3.786 2.332 4.693 2.84 1.469.821 3.758 2.684 4.092 4.434.535.466 2.182 1.916 2.596 2.413.698-.211 1.518.133 2.06 1.12.866 1.583.227 3.747-1.968 4.988a5.42 5.42 0 01-.296.267l.296-.267c1.14-1.468-.714-2.44-1.175-3.864a2.06 2.06 0 01-.11-.78c-.533-.282-2.11-1.452-2.795-1.965-1.801.16-4.207-1.773-5.35-3.08-.7-.802-2.32-2.517-3.858-4.123a11.052 11.052 0 00-2.046 6.393A11.052 11.052 0 1012.948 1.136c-2.64.004-5.19.954-7.19 2.676zm8.71 7.552c-.515.126-.968.831-1.118 1.306-.038.115-.04.303.066.342.802.592 1.556 1.168 2.4 1.7.162-.393.746-.963 1.096-1.2zm-11.53 1.639c.812 1.898 5.798 7.17 12.06 2.695a2.07 2.07 0 00.114.715c.46 1.42 2.36 2.427 1.238 3.89-2.135 1.364-5 1.201-6.989.528-3.558-1.204-5.914-4.332-6.424-7.828zm13.782.7a.771.771 0 00-.065.049c-.004.003-.008.008-.011.008.003-.003.007-.008.01-.008.024-.015.044-.034.066-.048z" }) + ] + } + ); +}); + +export { SiKrita as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.cjs new file mode 100644 index 000000000..2fe902e0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiKtm = React__namespace.forwardRef(function SiKtm2({ title = "KTM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 15.735h3.354l.843-2.06 1.55 2.06h7.225l2.234-2.081-.372 2.081h2.83L20 13.675l-.32 2.06h3.052L24 9.99h-3.068l-2.486 2.191.48-2.19h-2.942l-3.209 3.216 1.342-3.938h4.907l.225-1.003H6.381l-.378 1.003h4.732l-1.994 5.054-1.572-2.066L9.886 9.99H7.612l-2.787 2.23.938-2.23H2.44L0 15.735Z" }) + ] + } + ); +}); + +exports.default = SiKtm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.d.ts new file mode 100644 index 000000000..38e6c329e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiKtm: IconType; +export { SiKtm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.mjs new file mode 100644 index 000000000..047f1c66c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKtm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiKtm = React.forwardRef(function SiKtm2({ title = "KTM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 15.735h3.354l.843-2.06 1.55 2.06h7.225l2.234-2.081-.372 2.081h2.83L20 13.675l-.32 2.06h3.052L24 9.99h-3.068l-2.486 2.191.48-2.19h-2.942l-3.209 3.216 1.342-3.938h4.907l.225-1.003H6.381l-.378 1.003h4.732l-1.994 5.054-1.572-2.066L9.886 9.99H7.612l-2.787 2.23.938-2.23H2.44L0 15.735Z" }) + ] + } + ); +}); + +export { SiKtm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.cjs new file mode 100644 index 000000000..ec9c1a207 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#087CFA"; +const SiKtor = React__namespace.forwardRef(function SiKtor2({ title = "Ktor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 0 0 8l8 8V8h8zm8 8v8H8l8 8 8-8z" }) + ] + } + ); +}); + +exports.default = SiKtor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.d.ts new file mode 100644 index 000000000..f6634d2d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#087CFA"; +declare const SiKtor: IconType; +export { SiKtor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.mjs new file mode 100644 index 000000000..d9b2a0770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKtor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#087CFA"; +const SiKtor = React.forwardRef(function SiKtor2({ title = "Ktor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8 0 0 8l8 8V8h8zm8 8v8H8l8 8 8-8z" }) + ] + } + ); +}); + +export { SiKtor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.cjs new file mode 100644 index 000000000..5dd63d971 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4906"; +const SiKuaishou = React__namespace.forwardRef(function SiKuaishou2({ title = "Kuaishou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.315 12.264c2.33 0 4.218 1.88 4.218 4.2V19.8c0 2.32-1.888 4.2-4.218 4.2h-6.202a4.218 4.218 0 0 1-4.023-2.938l-3.676 1.833a2.04 2.04 0 0 1-2.731-.903 2.015 2.015 0 0 1-.216-.907v-5.94a2.03 2.03 0 0 1 2.035-2.024 2.044 2.044 0 0 1 .919.218l3.673 1.85a4.218 4.218 0 0 1 4.02-2.925zm-.062 2.162h-6.078c-1.153 0-2.09.921-2.108 2.065v3.247c0 1.148.925 2.081 2.073 2.1h6.113c1.153 0 2.09-.922 2.109-2.065v-3.247a2.104 2.104 0 0 0-2.074-2.1zM4.18 15.72a.554.554 0 0 0-.555.542v3.734a.556.556 0 0 0 .798.496l.01-.004 3.463-1.756V17.51l-3.467-1.73a.557.557 0 0 0-.249-.06zM9.28 0a5.667 5.667 0 0 1 4.98 2.965 4.921 4.921 0 0 1 3.36-1.317c2.714 0 4.913 2.177 4.913 4.863 0 2.686-2.2 4.863-4.912 4.863a4.921 4.921 0 0 1-3.996-2.034 5.651 5.651 0 0 1-4.345 2.034c-3.131 0-5.67-2.546-5.67-5.687C3.61 2.546 6.149 0 9.28 0Zm8.34 3.926c-1.441 0-2.61 1.157-2.61 2.585s1.169 2.585 2.61 2.585c1.443 0 2.612-1.157 2.612-2.585s-1.169-2.585-2.611-2.585zM9.28 2.287a3.395 3.395 0 0 0-3.39 3.4c0 1.877 1.518 3.4 3.39 3.4a3.395 3.395 0 0 0 3.39-3.4c0-1.878-1.518-3.4-3.39-3.4z" }) + ] + } + ); +}); + +exports.default = SiKuaishou; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.d.ts new file mode 100644 index 000000000..04e0bfe7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4906"; +declare const SiKuaishou: IconType; +export { SiKuaishou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.mjs new file mode 100644 index 000000000..a3ff16bd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuaishou.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4906"; +const SiKuaishou = React.forwardRef(function SiKuaishou2({ title = "Kuaishou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.315 12.264c2.33 0 4.218 1.88 4.218 4.2V19.8c0 2.32-1.888 4.2-4.218 4.2h-6.202a4.218 4.218 0 0 1-4.023-2.938l-3.676 1.833a2.04 2.04 0 0 1-2.731-.903 2.015 2.015 0 0 1-.216-.907v-5.94a2.03 2.03 0 0 1 2.035-2.024 2.044 2.044 0 0 1 .919.218l3.673 1.85a4.218 4.218 0 0 1 4.02-2.925zm-.062 2.162h-6.078c-1.153 0-2.09.921-2.108 2.065v3.247c0 1.148.925 2.081 2.073 2.1h6.113c1.153 0 2.09-.922 2.109-2.065v-3.247a2.104 2.104 0 0 0-2.074-2.1zM4.18 15.72a.554.554 0 0 0-.555.542v3.734a.556.556 0 0 0 .798.496l.01-.004 3.463-1.756V17.51l-3.467-1.73a.557.557 0 0 0-.249-.06zM9.28 0a5.667 5.667 0 0 1 4.98 2.965 4.921 4.921 0 0 1 3.36-1.317c2.714 0 4.913 2.177 4.913 4.863 0 2.686-2.2 4.863-4.912 4.863a4.921 4.921 0 0 1-3.996-2.034 5.651 5.651 0 0 1-4.345 2.034c-3.131 0-5.67-2.546-5.67-5.687C3.61 2.546 6.149 0 9.28 0Zm8.34 3.926c-1.441 0-2.61 1.157-2.61 2.585s1.169 2.585 2.61 2.585c1.443 0 2.612-1.157 2.612-2.585s-1.169-2.585-2.611-2.585zM9.28 2.287a3.395 3.395 0 0 0-3.39 3.4c0 1.877 1.518 3.4 3.39 3.4a3.395 3.395 0 0 0 3.39-3.4c0-1.878-1.518-3.4-3.39-3.4z" }) + ] + } + ); +}); + +export { SiKuaishou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.cjs new file mode 100644 index 000000000..4cabdfbc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#326CE5"; +const SiKubernetes = React__namespace.forwardRef(function SiKubernetes2({ title = "Kubernetes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.204 14.35l.007.01-.999 2.413a5.171 5.171 0 0 1-2.075-2.597l2.578-.437.004.005a.44.44 0 0 1 .484.606zm-.833-2.129a.44.44 0 0 0 .173-.756l.002-.011L7.585 9.7a5.143 5.143 0 0 0-.73 3.255l2.514-.725.002-.009zm1.145-1.98a.44.44 0 0 0 .699-.337l.01-.005.15-2.62a5.144 5.144 0 0 0-3.01 1.442l2.147 1.523.004-.002zm.76 2.75l.723.349.722-.347.18-.78-.5-.623h-.804l-.5.623.179.779zm1.5-3.095a.44.44 0 0 0 .7.336l.008.003 2.134-1.513a5.188 5.188 0 0 0-2.992-1.442l.148 2.615.002.001zm10.876 5.97l-5.773 7.181a1.6 1.6 0 0 1-1.248.594l-9.261.003a1.6 1.6 0 0 1-1.247-.596l-5.776-7.18a1.583 1.583 0 0 1-.307-1.34L2.1 5.573c.108-.47.425-.864.863-1.073L11.305.513a1.606 1.606 0 0 1 1.385 0l8.345 3.985c.438.209.755.604.863 1.073l2.062 8.955c.108.47-.005.963-.308 1.34zm-3.289-2.057c-.042-.01-.103-.026-.145-.034-.174-.033-.315-.025-.479-.038-.35-.037-.638-.067-.895-.148-.105-.04-.18-.165-.216-.216l-.201-.059a6.45 6.45 0 0 0-.105-2.332 6.465 6.465 0 0 0-.936-2.163c.052-.047.15-.133.177-.159.008-.09.001-.183.094-.282.197-.185.444-.338.743-.522.142-.084.273-.137.415-.242.032-.024.076-.062.11-.089.24-.191.295-.52.123-.736-.172-.216-.506-.236-.745-.045-.034.027-.08.062-.111.088-.134.116-.217.23-.33.35-.246.25-.45.458-.673.609-.097.056-.239.037-.303.033l-.19.135a6.545 6.545 0 0 0-4.146-2.003l-.012-.223c-.065-.062-.143-.115-.163-.25-.022-.268.015-.557.057-.905.023-.163.061-.298.068-.475.001-.04-.001-.099-.001-.142 0-.306-.224-.555-.5-.555-.275 0-.499.249-.499.555l.001.014c0 .041-.002.092 0 .128.006.177.044.312.067.475.042.348.078.637.056.906a.545.545 0 0 1-.162.258l-.012.211a6.424 6.424 0 0 0-4.166 2.003 8.373 8.373 0 0 1-.18-.128c-.09.012-.18.04-.297-.029-.223-.15-.427-.358-.673-.608-.113-.12-.195-.234-.329-.349-.03-.026-.077-.062-.111-.088a.594.594 0 0 0-.348-.132.481.481 0 0 0-.398.176c-.172.216-.117.546.123.737l.007.005.104.083c.142.105.272.159.414.242.299.185.546.338.743.522.076.082.09.226.1.288l.16.143a6.462 6.462 0 0 0-1.02 4.506l-.208.06c-.055.072-.133.184-.215.217-.257.081-.546.11-.895.147-.164.014-.305.006-.48.039-.037.007-.09.02-.133.03l-.004.002-.007.002c-.295.071-.484.342-.423.608.061.267.349.429.645.365l.007-.001.01-.003.129-.029c.17-.046.294-.113.448-.172.33-.118.604-.217.87-.256.112-.009.23.069.288.101l.217-.037a6.5 6.5 0 0 0 2.88 3.596l-.09.218c.033.084.069.199.044.282-.097.252-.263.517-.452.813-.091.136-.185.242-.268.399-.02.037-.045.095-.064.134-.128.275-.034.591.213.71.248.12.556-.007.69-.282v-.002c.02-.039.046-.09.062-.127.07-.162.094-.301.144-.458.132-.332.205-.68.387-.897.05-.06.13-.082.215-.105l.113-.205a6.453 6.453 0 0 0 4.609.012l.106.192c.086.028.18.042.256.155.136.232.229.507.342.84.05.156.074.295.145.457.016.037.043.09.062.129.133.276.442.402.69.282.247-.118.341-.435.213-.71-.02-.039-.045-.096-.065-.134-.083-.156-.177-.261-.268-.398-.19-.296-.346-.541-.443-.793-.04-.13.007-.21.038-.294-.018-.022-.059-.144-.083-.202a6.499 6.499 0 0 0 2.88-3.622c.064.01.176.03.213.038.075-.05.144-.114.28-.104.266.039.54.138.87.256.154.06.277.128.448.173.036.01.088.019.13.028l.009.003.007.001c.297.064.584-.098.645-.365.06-.266-.128-.537-.423-.608zM16.4 9.701l-1.95 1.746v.005a.44.44 0 0 0 .173.757l.003.01 2.526.728a5.199 5.199 0 0 0-.108-1.674A5.208 5.208 0 0 0 16.4 9.7zm-4.013 5.325a.437.437 0 0 0-.404-.232.44.44 0 0 0-.372.233h-.002l-1.268 2.292a5.164 5.164 0 0 0 3.326.003l-1.27-2.296h-.01zm1.888-1.293a.44.44 0 0 0-.27.036.44.44 0 0 0-.214.572l-.003.004 1.01 2.438a5.15 5.15 0 0 0 2.081-2.615l-2.6-.44-.004.005z" }) + ] + } + ); +}); + +exports.default = SiKubernetes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.d.ts new file mode 100644 index 000000000..fd9cfd930 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#326CE5"; +declare const SiKubernetes: IconType; +export { SiKubernetes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.mjs new file mode 100644 index 000000000..cc655fc7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubernetes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#326CE5"; +const SiKubernetes = React.forwardRef(function SiKubernetes2({ title = "Kubernetes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.204 14.35l.007.01-.999 2.413a5.171 5.171 0 0 1-2.075-2.597l2.578-.437.004.005a.44.44 0 0 1 .484.606zm-.833-2.129a.44.44 0 0 0 .173-.756l.002-.011L7.585 9.7a5.143 5.143 0 0 0-.73 3.255l2.514-.725.002-.009zm1.145-1.98a.44.44 0 0 0 .699-.337l.01-.005.15-2.62a5.144 5.144 0 0 0-3.01 1.442l2.147 1.523.004-.002zm.76 2.75l.723.349.722-.347.18-.78-.5-.623h-.804l-.5.623.179.779zm1.5-3.095a.44.44 0 0 0 .7.336l.008.003 2.134-1.513a5.188 5.188 0 0 0-2.992-1.442l.148 2.615.002.001zm10.876 5.97l-5.773 7.181a1.6 1.6 0 0 1-1.248.594l-9.261.003a1.6 1.6 0 0 1-1.247-.596l-5.776-7.18a1.583 1.583 0 0 1-.307-1.34L2.1 5.573c.108-.47.425-.864.863-1.073L11.305.513a1.606 1.606 0 0 1 1.385 0l8.345 3.985c.438.209.755.604.863 1.073l2.062 8.955c.108.47-.005.963-.308 1.34zm-3.289-2.057c-.042-.01-.103-.026-.145-.034-.174-.033-.315-.025-.479-.038-.35-.037-.638-.067-.895-.148-.105-.04-.18-.165-.216-.216l-.201-.059a6.45 6.45 0 0 0-.105-2.332 6.465 6.465 0 0 0-.936-2.163c.052-.047.15-.133.177-.159.008-.09.001-.183.094-.282.197-.185.444-.338.743-.522.142-.084.273-.137.415-.242.032-.024.076-.062.11-.089.24-.191.295-.52.123-.736-.172-.216-.506-.236-.745-.045-.034.027-.08.062-.111.088-.134.116-.217.23-.33.35-.246.25-.45.458-.673.609-.097.056-.239.037-.303.033l-.19.135a6.545 6.545 0 0 0-4.146-2.003l-.012-.223c-.065-.062-.143-.115-.163-.25-.022-.268.015-.557.057-.905.023-.163.061-.298.068-.475.001-.04-.001-.099-.001-.142 0-.306-.224-.555-.5-.555-.275 0-.499.249-.499.555l.001.014c0 .041-.002.092 0 .128.006.177.044.312.067.475.042.348.078.637.056.906a.545.545 0 0 1-.162.258l-.012.211a6.424 6.424 0 0 0-4.166 2.003 8.373 8.373 0 0 1-.18-.128c-.09.012-.18.04-.297-.029-.223-.15-.427-.358-.673-.608-.113-.12-.195-.234-.329-.349-.03-.026-.077-.062-.111-.088a.594.594 0 0 0-.348-.132.481.481 0 0 0-.398.176c-.172.216-.117.546.123.737l.007.005.104.083c.142.105.272.159.414.242.299.185.546.338.743.522.076.082.09.226.1.288l.16.143a6.462 6.462 0 0 0-1.02 4.506l-.208.06c-.055.072-.133.184-.215.217-.257.081-.546.11-.895.147-.164.014-.305.006-.48.039-.037.007-.09.02-.133.03l-.004.002-.007.002c-.295.071-.484.342-.423.608.061.267.349.429.645.365l.007-.001.01-.003.129-.029c.17-.046.294-.113.448-.172.33-.118.604-.217.87-.256.112-.009.23.069.288.101l.217-.037a6.5 6.5 0 0 0 2.88 3.596l-.09.218c.033.084.069.199.044.282-.097.252-.263.517-.452.813-.091.136-.185.242-.268.399-.02.037-.045.095-.064.134-.128.275-.034.591.213.71.248.12.556-.007.69-.282v-.002c.02-.039.046-.09.062-.127.07-.162.094-.301.144-.458.132-.332.205-.68.387-.897.05-.06.13-.082.215-.105l.113-.205a6.453 6.453 0 0 0 4.609.012l.106.192c.086.028.18.042.256.155.136.232.229.507.342.84.05.156.074.295.145.457.016.037.043.09.062.129.133.276.442.402.69.282.247-.118.341-.435.213-.71-.02-.039-.045-.096-.065-.134-.083-.156-.177-.261-.268-.398-.19-.296-.346-.541-.443-.793-.04-.13.007-.21.038-.294-.018-.022-.059-.144-.083-.202a6.499 6.499 0 0 0 2.88-3.622c.064.01.176.03.213.038.075-.05.144-.114.28-.104.266.039.54.138.87.256.154.06.277.128.448.173.036.01.088.019.13.028l.009.003.007.001c.297.064.584-.098.645-.365.06-.266-.128-.537-.423-.608zM16.4 9.701l-1.95 1.746v.005a.44.44 0 0 0 .173.757l.003.01 2.526.728a5.199 5.199 0 0 0-.108-1.674A5.208 5.208 0 0 0 16.4 9.7zm-4.013 5.325a.437.437 0 0 0-.404-.232.44.44 0 0 0-.372.233h-.002l-1.268 2.292a5.164 5.164 0 0 0 3.326.003l-1.27-2.296h-.01zm1.888-1.293a.44.44 0 0 0-.27.036.44.44 0 0 0-.214.572l-.003.004 1.01 2.438a5.15 5.15 0 0 0 2.081-2.615l-2.6-.44-.004.005z" }) + ] + } + ); +}); + +export { SiKubernetes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.cjs new file mode 100644 index 000000000..dd0d79bbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3D647F"; +const SiKubespray = React__namespace.forwardRef(function SiKubespray2({ title = "Kubespray", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.691 11.008-.13-.071-2.09-1.143c-.242-.132-.438-.016-.438.26v2.386a.93.93 0 0 0 .439.74l.329.18 1.89 1.034c.242.132.438.016.438-.26v-2.386a.929.929 0 0 0-.438-.74m-3.97 2.17a.929.929 0 0 0 .437-.74V10.05c0-.276-.196-.393-.438-.26L5.62 10.94l-.118.065a.928.928 0 0 0-.439.74v2.386c0 .276.197.392.439.26l1.892-1.035.327-.179m3.537 2.032-1.939-1.06-.28-.153a1.02 1.02 0 0 0-.877 0l-.285.155-1.935 1.058c-.242.132-.242.347 0 .48l2.081 1.137.139.076c.242.132.635.132.877 0l.131-.072 2.088-1.142c.243-.132.243-.347 0-.479M5.12 16.231c-.456-.264-.826-.904-.826-1.432v-3.101c0-.056.006-.114.014-.172L1.136 9.792C.51 9.449 0 9.75 0 10.466v6.181c0 .716.509 1.574 1.136 1.917l5.75 3.145c.628.343 1.136.041 1.136-.674v-3.157a1.32 1.32 0 0 1-.216-.097zM16.055 9.8l-3.1 1.695c.01.069.017.136.017.203v3.101c0 .528-.37 1.168-.827 1.432l-2.686 1.55c-.087.05-.186.088-.29.119v3.144c0 .715.509 1.017 1.136.674l5.75-3.145c.628-.343 1.137-1.201 1.137-1.916v-6.184c0-.715-.51-1.016-1.137-.673m-8.25-1.085c.457-.264 1.197-.264 1.654 0l2.686 1.55c.093.054.181.127.264.208l3.064-1.675c.627-.343.627-.899 0-1.242l-5.75-3.144c-.628-.343-1.646-.343-2.273 0L1.7 7.556c-.628.343-.628.9 0 1.242l3.121 1.706c.093-.095.193-.178.299-.238zm10.136-.492v.913c0 .106.076.15.168.1l.85-.465a.355.355 0 0 0 .168-.283v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.168.283m-1.103-.896.85.464a.39.39 0 0 0 .335 0l.85-.464c.092-.05.092-.133 0-.183l-.85-.465a.39.39 0 0 0-.335 0l-.85.465c-.093.05-.093.133 0 .183m2.2-1.377v.913c0 .106.074.15.167.1l.85-.465a.355.355 0 0 0 .167-.283v-.914c0-.105-.075-.15-.167-.099l-.85.464a.355.355 0 0 0-.168.284m-1.103-.896.85.464a.39.39 0 0 0 .335 0l.85-.464c.092-.05.092-.133 0-.184l-.85-.464a.391.391 0 0 0-.336 0l-.85.464c-.092.051-.092.133 0 .184m2.47 3.169v.914c0 .105.075.15.168.099l.85-.464a.355.355 0 0 0 .167-.284v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.167.283m-1.104-.896.85.465a.39.39 0 0 0 .336 0l.85-.465c.092-.05.092-.132 0-.183l-.85-.465a.391.391 0 0 0-.336 0l-.85.465c-.093.05-.093.133 0 .183m3.516.896v.914c0 .105.075.15.167.099l.85-.464A.355.355 0 0 0 24 8.488v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.167.283m-1.104-.896.85.465a.39.39 0 0 0 .335 0l.85-.465c.092-.05.092-.132 0-.183l-.85-.465a.39.39 0 0 0-.335 0l-.85.465c-.093.05-.093.133 0 .183m-.246-1.377v.913c0 .106.076.15.168.1l.85-.465a.355.355 0 0 0 .168-.283v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.168.283m-1.103-.896.85.464a.39.39 0 0 0 .335 0l.85-.464c.092-.05.092-.133 0-.183l-.85-.465a.39.39 0 0 0-.335 0l-.85.465c-.093.05-.093.132 0 .183m-.306-1.331v.913c0 .106.075.15.168.1l.85-.465a.355.355 0 0 0 .167-.283v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.167.283m-1.104-.896.85.464a.39.39 0 0 0 .336 0l.85-.464c.092-.05.092-.133 0-.184l-.85-.464a.39.39 0 0 0-.336 0l-.85.464c-.093.051-.093.133 0 .184" }) + ] + } + ); +}); + +exports.default = SiKubespray; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.d.ts new file mode 100644 index 000000000..450be2159 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3D647F"; +declare const SiKubespray: IconType; +export { SiKubespray as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.mjs new file mode 100644 index 000000000..e69ea53b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubespray.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3D647F"; +const SiKubespray = React.forwardRef(function SiKubespray2({ title = "Kubespray", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.691 11.008-.13-.071-2.09-1.143c-.242-.132-.438-.016-.438.26v2.386a.93.93 0 0 0 .439.74l.329.18 1.89 1.034c.242.132.438.016.438-.26v-2.386a.929.929 0 0 0-.438-.74m-3.97 2.17a.929.929 0 0 0 .437-.74V10.05c0-.276-.196-.393-.438-.26L5.62 10.94l-.118.065a.928.928 0 0 0-.439.74v2.386c0 .276.197.392.439.26l1.892-1.035.327-.179m3.537 2.032-1.939-1.06-.28-.153a1.02 1.02 0 0 0-.877 0l-.285.155-1.935 1.058c-.242.132-.242.347 0 .48l2.081 1.137.139.076c.242.132.635.132.877 0l.131-.072 2.088-1.142c.243-.132.243-.347 0-.479M5.12 16.231c-.456-.264-.826-.904-.826-1.432v-3.101c0-.056.006-.114.014-.172L1.136 9.792C.51 9.449 0 9.75 0 10.466v6.181c0 .716.509 1.574 1.136 1.917l5.75 3.145c.628.343 1.136.041 1.136-.674v-3.157a1.32 1.32 0 0 1-.216-.097zM16.055 9.8l-3.1 1.695c.01.069.017.136.017.203v3.101c0 .528-.37 1.168-.827 1.432l-2.686 1.55c-.087.05-.186.088-.29.119v3.144c0 .715.509 1.017 1.136.674l5.75-3.145c.628-.343 1.137-1.201 1.137-1.916v-6.184c0-.715-.51-1.016-1.137-.673m-8.25-1.085c.457-.264 1.197-.264 1.654 0l2.686 1.55c.093.054.181.127.264.208l3.064-1.675c.627-.343.627-.899 0-1.242l-5.75-3.144c-.628-.343-1.646-.343-2.273 0L1.7 7.556c-.628.343-.628.9 0 1.242l3.121 1.706c.093-.095.193-.178.299-.238zm10.136-.492v.913c0 .106.076.15.168.1l.85-.465a.355.355 0 0 0 .168-.283v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.168.283m-1.103-.896.85.464a.39.39 0 0 0 .335 0l.85-.464c.092-.05.092-.133 0-.183l-.85-.465a.39.39 0 0 0-.335 0l-.85.465c-.093.05-.093.133 0 .183m2.2-1.377v.913c0 .106.074.15.167.1l.85-.465a.355.355 0 0 0 .167-.283v-.914c0-.105-.075-.15-.167-.099l-.85.464a.355.355 0 0 0-.168.284m-1.103-.896.85.464a.39.39 0 0 0 .335 0l.85-.464c.092-.05.092-.133 0-.184l-.85-.464a.391.391 0 0 0-.336 0l-.85.464c-.092.051-.092.133 0 .184m2.47 3.169v.914c0 .105.075.15.168.099l.85-.464a.355.355 0 0 0 .167-.284v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.167.283m-1.104-.896.85.465a.39.39 0 0 0 .336 0l.85-.465c.092-.05.092-.132 0-.183l-.85-.465a.391.391 0 0 0-.336 0l-.85.465c-.093.05-.093.133 0 .183m3.516.896v.914c0 .105.075.15.167.099l.85-.464A.355.355 0 0 0 24 8.488v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.167.283m-1.104-.896.85.465a.39.39 0 0 0 .335 0l.85-.465c.092-.05.092-.132 0-.183l-.85-.465a.39.39 0 0 0-.335 0l-.85.465c-.093.05-.093.133 0 .183m-.246-1.377v.913c0 .106.076.15.168.1l.85-.465a.355.355 0 0 0 .168-.283v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.168.283m-1.103-.896.85.464a.39.39 0 0 0 .335 0l.85-.464c.092-.05.092-.133 0-.183l-.85-.465a.39.39 0 0 0-.335 0l-.85.465c-.093.05-.093.132 0 .183m-.306-1.331v.913c0 .106.075.15.168.1l.85-.465a.355.355 0 0 0 .167-.283v-.913c0-.106-.075-.15-.168-.1l-.85.465a.355.355 0 0 0-.167.283m-1.104-.896.85.464a.39.39 0 0 0 .336 0l.85-.464c.092-.05.092-.133 0-.184l-.85-.464a.39.39 0 0 0-.336 0l-.85.464c-.093.051-.093.133 0 .184" }) + ] + } + ); +}); + +export { SiKubespray as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.cjs new file mode 100644 index 000000000..7ca743b61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0079C1"; +const SiKubuntu = React__namespace.forwardRef(function SiKubuntu2({ title = "Kubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.257 14.292a.2065.2065 0 01.1097.2374l-.5765 1.5293a.2063.2063 0 01-.2033.155l-2.3369-.2283c-.0628.001-.1623-.008-.2776.1255-.0178.0207-.7472.9328-.9783 1.1832-.079.0708-.1067.1652-.0878.281l.5521 2.1962a.2064.2064 0 01-.098.2314l-1.513.8906a.2063.2063 0 01-.2556-.0418l-1.5494-1.7055c-.0516-.0555-.1551-.0994-.2271-.0759l-1.645.2391c-.0804.011-.1267.0635-.1603.1164l-.9938 2.0793a.2063.2063 0 01-.2353.089l-1.6687-.3945a.2065.2065 0 01-.1462-.1824.209.209 0 01.0105-.0815l.8812-3.244a.222.222 0 01.2828-.1373l.0033-.001a5.8423 5.8423 0 002.7168.2176c2.3222-.3696 4.1964-2.0953 4.756-4.3791l.011-.0407c.0277-.1194.1768-.1827.2963-.155 0 0 2.8684.9737 3.2936 1.0816a.2089.2089 0 01.0394.0143zM5.539 4.9898l.0001.0001a.2051.2051 0 01.0659.0489l2.392 2.3567a.222.222 0 01-.0186.3138l-.0008.0034A5.8422 5.8422 0 006.4594 9.976c-.8132 2.2063-.2244 4.685 1.494 6.29l.0353.0396c.0906.0827.0678.2335-.0148.3241 0 0-2.2452 2.0243-2.5472 2.3425a.2064.2064 0 01-.2924.007l-1.0521-1.2507a.2063.2063 0 01-.0358-.253l1.335-1.9253c.0297-.0553.0863-.1376.0262-.3035-.0092-.0256-.4482-1.108-.5536-1.432-.0232-.1035-.092-.1738-.2022-.214l-2.1789-.594a.2064.2064 0 01-.154-.1986l-.0368-1.7552a.2065.2065 0 01.1615-.2026l2.2384-.516c.0737-.0177.1625-.0866.1772-.1609l.5958-1.5517c.0298-.0755.0068-.1417-.023-.1968L4.111 6.5396a.2064.2064 0 01.0374-.2488l1.1602-1.2626a.2066.2066 0 01.2305-.0385zm10.4906-1.747a.2139.2139 0 01.0313.0147l1.5385.8455a.2065.2065 0 01.0947.2412l-.6793 2.198c-.0214.0727-.0062.1841.0508.234l1.046 1.2918c.0505.0636.1193.0767.182.0785l2.3-.2029a.2064.2064 0 01.1968.1567l.5134 1.6361a.2064.2064 0 01-.082.2189h-.0001a.205.205 0 01-.0753.0326l-3.244.8946a.222.222 0 01-.2624-.1729.012.012 0 01-.0025-.0024 5.8422 5.8422 0 00-1.201-2.4466c-1.5041-1.8073-3.9452-2.5368-6.1943-1.851l-.0402.0123c-.1169.0371-.248-.0597-.285-.1766 0 0-.6236-2.958-.7481-3.3786a.2063.2063 0 01.14-.2568l1.6093-.2858a.2063.2063 0 01.237.0955l.9929 2.1203c.033.0534.076.1436.2498.1744.0268.0048 1.1835.1658 1.5169.2366.1012.0316.1966.0073.2864-.068l1.6107-1.5916a.2064.2064 0 01.2177-.0486zM16.021.6955A11.9968 11.9968 0 007.794.763C1.5889 3.086-1.5582 9.9993.7647 16.2044c2.323 6.205 9.2362 9.3522 15.4413 7.0293 6.2051-2.3229 9.3522-9.2362 7.0293-15.4413A11.997 11.997 0 0016.021.6955z" }) + ] + } + ); +}); + +exports.default = SiKubuntu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.d.ts new file mode 100644 index 000000000..59a532880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0079C1"; +declare const SiKubuntu: IconType; +export { SiKubuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.mjs new file mode 100644 index 000000000..1e383ca60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKubuntu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0079C1"; +const SiKubuntu = React.forwardRef(function SiKubuntu2({ title = "Kubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.257 14.292a.2065.2065 0 01.1097.2374l-.5765 1.5293a.2063.2063 0 01-.2033.155l-2.3369-.2283c-.0628.001-.1623-.008-.2776.1255-.0178.0207-.7472.9328-.9783 1.1832-.079.0708-.1067.1652-.0878.281l.5521 2.1962a.2064.2064 0 01-.098.2314l-1.513.8906a.2063.2063 0 01-.2556-.0418l-1.5494-1.7055c-.0516-.0555-.1551-.0994-.2271-.0759l-1.645.2391c-.0804.011-.1267.0635-.1603.1164l-.9938 2.0793a.2063.2063 0 01-.2353.089l-1.6687-.3945a.2065.2065 0 01-.1462-.1824.209.209 0 01.0105-.0815l.8812-3.244a.222.222 0 01.2828-.1373l.0033-.001a5.8423 5.8423 0 002.7168.2176c2.3222-.3696 4.1964-2.0953 4.756-4.3791l.011-.0407c.0277-.1194.1768-.1827.2963-.155 0 0 2.8684.9737 3.2936 1.0816a.2089.2089 0 01.0394.0143zM5.539 4.9898l.0001.0001a.2051.2051 0 01.0659.0489l2.392 2.3567a.222.222 0 01-.0186.3138l-.0008.0034A5.8422 5.8422 0 006.4594 9.976c-.8132 2.2063-.2244 4.685 1.494 6.29l.0353.0396c.0906.0827.0678.2335-.0148.3241 0 0-2.2452 2.0243-2.5472 2.3425a.2064.2064 0 01-.2924.007l-1.0521-1.2507a.2063.2063 0 01-.0358-.253l1.335-1.9253c.0297-.0553.0863-.1376.0262-.3035-.0092-.0256-.4482-1.108-.5536-1.432-.0232-.1035-.092-.1738-.2022-.214l-2.1789-.594a.2064.2064 0 01-.154-.1986l-.0368-1.7552a.2065.2065 0 01.1615-.2026l2.2384-.516c.0737-.0177.1625-.0866.1772-.1609l.5958-1.5517c.0298-.0755.0068-.1417-.023-.1968L4.111 6.5396a.2064.2064 0 01.0374-.2488l1.1602-1.2626a.2066.2066 0 01.2305-.0385zm10.4906-1.747a.2139.2139 0 01.0313.0147l1.5385.8455a.2065.2065 0 01.0947.2412l-.6793 2.198c-.0214.0727-.0062.1841.0508.234l1.046 1.2918c.0505.0636.1193.0767.182.0785l2.3-.2029a.2064.2064 0 01.1968.1567l.5134 1.6361a.2064.2064 0 01-.082.2189h-.0001a.205.205 0 01-.0753.0326l-3.244.8946a.222.222 0 01-.2624-.1729.012.012 0 01-.0025-.0024 5.8422 5.8422 0 00-1.201-2.4466c-1.5041-1.8073-3.9452-2.5368-6.1943-1.851l-.0402.0123c-.1169.0371-.248-.0597-.285-.1766 0 0-.6236-2.958-.7481-3.3786a.2063.2063 0 01.14-.2568l1.6093-.2858a.2063.2063 0 01.237.0955l.9929 2.1203c.033.0534.076.1436.2498.1744.0268.0048 1.1835.1658 1.5169.2366.1012.0316.1966.0073.2864-.068l1.6107-1.5916a.2064.2064 0 01.2177-.0486zM16.021.6955A11.9968 11.9968 0 007.794.763C1.5889 3.086-1.5582 9.9993.7647 16.2044c2.323 6.205 9.2362 9.3522 15.4413 7.0293 6.2051-2.3229 9.3522-9.2362 7.0293-15.4413A11.997 11.997 0 0016.021.6955z" }) + ] + } + ); +}); + +export { SiKubuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.cjs new file mode 100644 index 000000000..db1837921 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#01BC8D"; +const SiKucoin = React__namespace.forwardRef(function SiKucoin2({ title = "KuCoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.928 11.996 7.122 7.122 4.49-4.49a2.004 2.004 0 0 1 2.865 0 2.004 2.004 0 0 1 0 2.865l-5.918 5.918a2.058 2.058 0 0 1-2.883 0l-8.541-8.542v5.07a2.034 2.034 0 1 1-4.07 0V4.043a2.034 2.034 0 1 1 4.07 0v5.088L13.604.589a2.058 2.058 0 0 1 2.883 0l5.918 5.918c.785.803.785 2.088 0 2.865-.804.785-2.089.785-2.865 0l-4.49-4.49zM15.05 9.96a2.038 2.038 0 0 0-2.053 2.035c0 1.133.902 2.052 2.035 2.052a2.038 2.038 0 0 0 2.053-2.035v-.018a2.07 2.07 0 0 0-2.035-2.034z" }) + ] + } + ); +}); + +exports.default = SiKucoin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.d.ts new file mode 100644 index 000000000..77b8feaf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#01BC8D"; +declare const SiKucoin: IconType; +export { SiKucoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.mjs new file mode 100644 index 000000000..61946b2c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKucoin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#01BC8D"; +const SiKucoin = React.forwardRef(function SiKucoin2({ title = "KuCoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.928 11.996 7.122 7.122 4.49-4.49a2.004 2.004 0 0 1 2.865 0 2.004 2.004 0 0 1 0 2.865l-5.918 5.918a2.058 2.058 0 0 1-2.883 0l-8.541-8.542v5.07a2.034 2.034 0 1 1-4.07 0V4.043a2.034 2.034 0 1 1 4.07 0v5.088L13.604.589a2.058 2.058 0 0 1 2.883 0l5.918 5.918c.785.803.785 2.088 0 2.865-.804.785-2.089.785-2.865 0l-4.49-4.49zM15.05 9.96a2.038 2.038 0 0 0-2.053 2.035c0 1.133.902 2.052 2.035 2.052a2.038 2.038 0 0 0 2.053-2.035v-.018a2.07 2.07 0 0 0-2.035-2.034z" }) + ] + } + ); +}); + +export { SiKucoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.cjs new file mode 100644 index 000000000..8b055f0c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0075FF"; +const SiKueski = React__namespace.forwardRef(function SiKueski2({ title = "Kueski", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.403 7.989h-4.142c.029-1.022.506-1.33 1.48-1.95l2.294-1.47a2.161 2.161 0 0 0 1.048-1.776V.609c0-.62-.45-.787-1.038-.407l-3.043 1.962c-1.088.706-1.72 1.493-2.007 2.463-.194-1.02-.982-1.976-1.977-2.478L9.007.643C8.416.357 7.966.43 7.96 1.046L7.954 3.23a1.88 1.88 0 0 0 1.038 1.668l2.263 1.12c.933.47 1.47.648 1.491 1.97H4.592a.67.67 0 0 0-.674.667v2.665a.679.679 0 0 0 .2.472.67.67 0 0 0 .474.193h14.811a.67.67 0 0 0 .678-.665V8.655a.663.663 0 0 0-.2-.474.67.67 0 0 0-.478-.192zm0 0h-4.142c.029-1.022.506-1.33 1.48-1.95l2.294-1.47a2.161 2.161 0 0 0 1.048-1.776V.609c0-.62-.45-.787-1.038-.407l-3.043 1.962c-1.088.706-1.72 1.493-2.007 2.463-.194-1.02-.982-1.976-1.977-2.478L9.007.643C8.416.357 7.966.43 7.96 1.046L7.954 3.23a1.88 1.88 0 0 0 1.038 1.668l2.263 1.12c.933.47 1.47.648 1.491 1.97H4.592a.67.67 0 0 0-.674.667v2.665a.679.679 0 0 0 .2.472.67.67 0 0 0 .474.193h14.811a.67.67 0 0 0 .678-.665V8.655a.663.663 0 0 0-.2-.474.67.67 0 0 0-.478-.192zm-.007 5.903c0 .343-.657 6.288-.968 9.195-.09.857-.955.913-1.188.913H7.244c-1.04 0-1.411-.456-1.512-1-.106-.572-.658-6.161-.934-8.108l-.096-.967c0-.482.339-.896.81-.896h13.021a.867.867 0 0 1 .8.537.854.854 0 0 1 .063.332z" }) + ] + } + ); +}); + +exports.default = SiKueski; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.d.ts new file mode 100644 index 000000000..5237f3e78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0075FF"; +declare const SiKueski: IconType; +export { SiKueski as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.mjs new file mode 100644 index 000000000..30ebab4ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKueski.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0075FF"; +const SiKueski = React.forwardRef(function SiKueski2({ title = "Kueski", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.403 7.989h-4.142c.029-1.022.506-1.33 1.48-1.95l2.294-1.47a2.161 2.161 0 0 0 1.048-1.776V.609c0-.62-.45-.787-1.038-.407l-3.043 1.962c-1.088.706-1.72 1.493-2.007 2.463-.194-1.02-.982-1.976-1.977-2.478L9.007.643C8.416.357 7.966.43 7.96 1.046L7.954 3.23a1.88 1.88 0 0 0 1.038 1.668l2.263 1.12c.933.47 1.47.648 1.491 1.97H4.592a.67.67 0 0 0-.674.667v2.665a.679.679 0 0 0 .2.472.67.67 0 0 0 .474.193h14.811a.67.67 0 0 0 .678-.665V8.655a.663.663 0 0 0-.2-.474.67.67 0 0 0-.478-.192zm0 0h-4.142c.029-1.022.506-1.33 1.48-1.95l2.294-1.47a2.161 2.161 0 0 0 1.048-1.776V.609c0-.62-.45-.787-1.038-.407l-3.043 1.962c-1.088.706-1.72 1.493-2.007 2.463-.194-1.02-.982-1.976-1.977-2.478L9.007.643C8.416.357 7.966.43 7.96 1.046L7.954 3.23a1.88 1.88 0 0 0 1.038 1.668l2.263 1.12c.933.47 1.47.648 1.491 1.97H4.592a.67.67 0 0 0-.674.667v2.665a.679.679 0 0 0 .2.472.67.67 0 0 0 .474.193h14.811a.67.67 0 0 0 .678-.665V8.655a.663.663 0 0 0-.2-.474.67.67 0 0 0-.478-.192zm-.007 5.903c0 .343-.657 6.288-.968 9.195-.09.857-.955.913-1.188.913H7.244c-1.04 0-1.411-.456-1.512-1-.106-.572-.658-6.161-.934-8.108l-.096-.967c0-.482.339-.896.81-.896h13.021a.867.867 0 0 1 .8.537.854.854 0 0 1 .063.332z" }) + ] + } + ); +}); + +export { SiKueski as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.cjs new file mode 100644 index 000000000..1e437ea0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#290B53"; +const SiKuma = React__namespace.forwardRef(function SiKuma2({ title = "Kuma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.02 0c-1.118 0-1.935.362-2.474.946A.189.189 0 0 1 16.35 1a16.824 16.824 0 0 0-2.634-.623.184.184 0 0 0-.205.158.181.181 0 0 0 .003.07c.186.699 1.305 5.133 2.205 8.51.544 2.043-.866 4.05-2.98 4.044h-1.31c-2.136 0-3.433-2.014-2.94-4.022.83-3.393 1.968-7.792 2.152-8.517a.183.183 0 0 0-.13-.226.177.177 0 0 0-.07-.005 14.358 14.358 0 0 0-3.048.698.188.188 0 0 1-.208-.056C6.646.398 5.806.003 4.643.003c-2.254 0-3.287 1.473-3.287 3.29 0 .952.905 2.24 1.766 3.253a.188.188 0 0 1 .034.18l-1.468 4.259a.034.034 0 0 0 0 .011c-.038.148-.604 2.662 3.699 6.661 1.286 1.2 5.77 5.52 6.576 6.293a.182.182 0 0 0 .251 0l6.774-6.293c4.648-4.334 3.54-6.672 3.54-6.672L20.882 6.27a.183.183 0 0 1 .028-.175c.733-.925 1.4-1.991 1.4-2.808C22.31 1.473 21.274 0 19.02 0Zm-8.025 7.132a.525.525 0 0 0-.527.524l.217 2.157v.003a.525.525 0 0 0 .526.524h1.755a.525.525 0 0 0 .524-.53l.208-2.154a.525.525 0 0 0-.526-.524z" }) + ] + } + ); +}); + +exports.default = SiKuma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.d.ts new file mode 100644 index 000000000..68fd4dbc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#290B53"; +declare const SiKuma: IconType; +export { SiKuma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.mjs new file mode 100644 index 000000000..413833ee9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#290B53"; +const SiKuma = React.forwardRef(function SiKuma2({ title = "Kuma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.02 0c-1.118 0-1.935.362-2.474.946A.189.189 0 0 1 16.35 1a16.824 16.824 0 0 0-2.634-.623.184.184 0 0 0-.205.158.181.181 0 0 0 .003.07c.186.699 1.305 5.133 2.205 8.51.544 2.043-.866 4.05-2.98 4.044h-1.31c-2.136 0-3.433-2.014-2.94-4.022.83-3.393 1.968-7.792 2.152-8.517a.183.183 0 0 0-.13-.226.177.177 0 0 0-.07-.005 14.358 14.358 0 0 0-3.048.698.188.188 0 0 1-.208-.056C6.646.398 5.806.003 4.643.003c-2.254 0-3.287 1.473-3.287 3.29 0 .952.905 2.24 1.766 3.253a.188.188 0 0 1 .034.18l-1.468 4.259a.034.034 0 0 0 0 .011c-.038.148-.604 2.662 3.699 6.661 1.286 1.2 5.77 5.52 6.576 6.293a.182.182 0 0 0 .251 0l6.774-6.293c4.648-4.334 3.54-6.672 3.54-6.672L20.882 6.27a.183.183 0 0 1 .028-.175c.733-.925 1.4-1.991 1.4-2.808C22.31 1.473 21.274 0 19.02 0Zm-8.025 7.132a.525.525 0 0 0-.527.524l.217 2.157v.003a.525.525 0 0 0 .526.524h1.755a.525.525 0 0 0 .524-.53l.208-2.154a.525.525 0 0 0-.526-.524z" }) + ] + } + ); +}); + +export { SiKuma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.cjs new file mode 100644 index 000000000..168f5aca2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC62E"; +const SiKununu = React__namespace.forwardRef(function SiKununu2({ title = "Kununu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.686 17.759a3.26 3.26 0 0 1-2.344-1.004 3.487 3.487 0 0 1-.971-2.422l.015-4.668a1.08 1.08 0 0 0-.302-.751 1.014 1.014 0 0 0-.728-.311c-.272 0-.534.112-.727.311-.192.2-.301.47-.3.752l-.015 4.669c0 .908-.349 1.78-.971 2.422a3.259 3.259 0 0 1-2.344 1.002 3.257 3.257 0 0 1-2.343-1.004 3.482 3.482 0 0 1-.97-2.422L8.7 9.665c0-.282-.109-.552-.302-.752a1.007 1.007 0 0 0-1.454.001c-.193.2-.301.47-.301.752l-.014 4.669a3.507 3.507 0 0 1-.56 1.902 3.338 3.338 0 0 1-1.487 1.26 3.214 3.214 0 0 1-1.914.195 3.276 3.276 0 0 1-1.696-.937 3.412 3.412 0 0 1-.721-1.111A3.513 3.513 0 0 1 0 14.333v-3.707c0-.313.121-.613.335-.835.214-.221.505-.346.808-.346.303 0 .594.125.808.346a1.2 1.2 0 0 1 .335.835v3.707c0 .282.108.552.301.751.193.2.455.312.728.312.272 0 .534-.112.727-.312.193-.199.301-.469.301-.751l.015-4.669c0-.908.349-1.779.971-2.422A3.259 3.259 0 0 1 7.673 6.24c.879 0 1.722.361 2.343 1.004s.97 1.514.97 2.423l-.014 4.667c0 .282.109.552.302.752.193.199.454.311.727.311.273 0 .534-.113.727-.312.193-.2.301-.47.301-.752l.014-4.668c.001-.909.35-1.78.972-2.422a3.26 3.26 0 0 1 2.344-1.003c.879 0 1.721.362 2.343 1.004.621.643.97 1.514.97 2.423l-.014 4.668c0 .282.108.552.301.751.194.199.455.311.728.311.273 0 .534-.112.727-.312.193-.2.301-.47.301-.752v-3.706c0-.313.12-.613.334-.835.215-.221.505-.346.809-.346.303 0 .593.124.808.346.214.222.334.522.334.835v3.706c0 .908-.349 1.78-.97 2.422a3.26 3.26 0 0 1-2.344 1.004Z" }) + ] + } + ); +}); + +exports.default = SiKununu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.d.ts new file mode 100644 index 000000000..bacfada13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC62E"; +declare const SiKununu: IconType; +export { SiKununu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.mjs new file mode 100644 index 000000000..a6aefb583 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKununu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC62E"; +const SiKununu = React.forwardRef(function SiKununu2({ title = "Kununu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.686 17.759a3.26 3.26 0 0 1-2.344-1.004 3.487 3.487 0 0 1-.971-2.422l.015-4.668a1.08 1.08 0 0 0-.302-.751 1.014 1.014 0 0 0-.728-.311c-.272 0-.534.112-.727.311-.192.2-.301.47-.3.752l-.015 4.669c0 .908-.349 1.78-.971 2.422a3.259 3.259 0 0 1-2.344 1.002 3.257 3.257 0 0 1-2.343-1.004 3.482 3.482 0 0 1-.97-2.422L8.7 9.665c0-.282-.109-.552-.302-.752a1.007 1.007 0 0 0-1.454.001c-.193.2-.301.47-.301.752l-.014 4.669a3.507 3.507 0 0 1-.56 1.902 3.338 3.338 0 0 1-1.487 1.26 3.214 3.214 0 0 1-1.914.195 3.276 3.276 0 0 1-1.696-.937 3.412 3.412 0 0 1-.721-1.111A3.513 3.513 0 0 1 0 14.333v-3.707c0-.313.121-.613.335-.835.214-.221.505-.346.808-.346.303 0 .594.125.808.346a1.2 1.2 0 0 1 .335.835v3.707c0 .282.108.552.301.751.193.2.455.312.728.312.272 0 .534-.112.727-.312.193-.199.301-.469.301-.751l.015-4.669c0-.908.349-1.779.971-2.422A3.259 3.259 0 0 1 7.673 6.24c.879 0 1.722.361 2.343 1.004s.97 1.514.97 2.423l-.014 4.667c0 .282.109.552.302.752.193.199.454.311.727.311.273 0 .534-.113.727-.312.193-.2.301-.47.301-.752l.014-4.668c.001-.909.35-1.78.972-2.422a3.26 3.26 0 0 1 2.344-1.003c.879 0 1.721.362 2.343 1.004.621.643.97 1.514.97 2.423l-.014 4.668c0 .282.108.552.301.751.194.199.455.311.728.311.273 0 .534-.112.727-.312.193-.2.301-.47.301-.752v-3.706c0-.313.12-.613.334-.835.215-.221.505-.346.809-.346.303 0 .593.124.808.346.214.222.334.522.334.835v3.706c0 .908-.349 1.78-.97 2.422a3.26 3.26 0 0 1-2.344 1.004Z" }) + ] + } + ); +}); + +export { SiKununu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.cjs new file mode 100644 index 000000000..6aaf742b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4092B4"; +const SiKuula = React__namespace.forwardRef(function SiKuula2({ title = "Kuula", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.388 0 0 5.388 0 12s5.388 12 12 12 12-5.388 12-12S18.612 0 12 0Zm0 2.547A9.433 9.433 0 0 1 21.453 12 9.433 9.433 0 0 1 12 21.453 9.433 9.433 0 0 1 2.547 12 9.433 9.433 0 0 1 12 2.547Zm-.606 5.366 4.372-.693 2.01 3.944-3.13 3.13-3.944-2.01z" }) + ] + } + ); +}); + +exports.default = SiKuula; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.d.ts new file mode 100644 index 000000000..924104abf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4092B4"; +declare const SiKuula: IconType; +export { SiKuula as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.mjs new file mode 100644 index 000000000..f9ff7b098 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKuula.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4092B4"; +const SiKuula = React.forwardRef(function SiKuula2({ title = "Kuula", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.388 0 0 5.388 0 12s5.388 12 12 12 12-5.388 12-12S18.612 0 12 0Zm0 2.547A9.433 9.433 0 0 1 21.453 12 9.433 9.433 0 0 1 12 21.453 9.433 9.433 0 0 1 2.547 12 9.433 9.433 0 0 1 12 2.547Zm-.606 5.366 4.372-.693 2.01 3.944-3.13 3.13-3.944-2.01z" }) + ] + } + ); +}); + +export { SiKuula as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKx.cjs new file mode 100644 index 000000000..017c49e5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#101820"; +const SiKx = React__namespace.forwardRef(function SiKx2({ title = "KX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 5.873h3.59v12.254H0V5.873Zm11.746 0L7.65 12l4.097 6.127H7.65L3.59 12l4.06-6.127h4.097Zm12.254 0L19.903 12 24 18.127h-4.097l-2.03-3.045-2.03 3.045h-4.097L15.843 12l-4.097-6.127h4.097l2.03 3.082 2.03-3.082H24Z" }) + ] + } + ); +}); + +exports.default = SiKx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKx.d.ts new file mode 100644 index 000000000..f80692d93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#101820"; +declare const SiKx: IconType; +export { SiKx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKx.mjs new file mode 100644 index 000000000..b02a92fc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#101820"; +const SiKx = React.forwardRef(function SiKx2({ title = "KX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 5.873h3.59v12.254H0V5.873Zm11.746 0L7.65 12l4.097 6.127H7.65L3.59 12l4.06-6.127h4.097Zm12.254 0L19.903 12 24 18.127h-4.097l-2.03-3.045-2.03 3.045h-4.097L15.843 12l-4.097-6.127h4.097l2.03 3.082 2.03-3.082H24Z" }) + ] + } + ); +}); + +export { SiKx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.cjs new file mode 100644 index 000000000..61fffa6b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DF0522"; +const SiKyocera = React__namespace.forwardRef(function SiKyocera2({ title = "Kyocera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.677 4.645L2.323 12V4.645h7.354zm-7.354 14.71h7.355L2.323 12v7.355zm7.354 0L17.032 12 9.677 4.645v14.71zM21.677 0h-7.355L9.677 4.645h7.355V12l4.645-4.645V0zm-12 19.355L14.323 24h7.355v-7.355L17.032 12v7.355H9.677z" }) + ] + } + ); +}); + +exports.default = SiKyocera; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.d.ts new file mode 100644 index 000000000..410405d48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DF0522"; +declare const SiKyocera: IconType; +export { SiKyocera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.mjs new file mode 100644 index 000000000..16b93dfc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiKyocera.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DF0522"; +const SiKyocera = React.forwardRef(function SiKyocera2({ title = "Kyocera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.677 4.645L2.323 12V4.645h7.354zm-7.354 14.71h7.355L2.323 12v7.355zm7.354 0L17.032 12 9.677 4.645v14.71zM21.677 0h-7.355L9.677 4.645h7.355V12l4.645-4.645V0zm-12 19.355L14.323 24h7.355v-7.355L17.032 12v7.355H9.677z" }) + ] + } + ); +}); + +export { SiKyocera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.cjs new file mode 100644 index 000000000..333d9a0ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E7EEE"; +const SiLabex = React__namespace.forwardRef(function SiLabex2({ title = "LabEx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.2 0a1.2 1.2 0 0 1 1.2 1.2v4a1.2 1.2 0 0 1-1.2 1.2h-.402v1.212l6.976 9.687a1.2 1.2 0 0 1 .22.576L24 18v4.8a1.2 1.2 0 0 1-1.2 1.2H1.2A1.2 1.2 0 0 1 0 22.8V18c0-.252.08-.497.226-.701l6.975-9.687V6.4H6.8a1.2 1.2 0 0 1-1.194-1.084L5.6 5.2v-4A1.2 1.2 0 0 1 6.8 0zM16 2.4H8V4h.4a1.2 1.2 0 0 1 1.195 1.084l.006.116v2.703c0 .315-.1.622-.283.877L2.4 18.386V21.6h19.2v-3.213L14.681 8.78a1.5 1.5 0 0 1-.277-.743l-.006-.134V5.2a1.2 1.2 0 0 1 1.2-1.2H16zm-.48 14.4a1.2 1.2 0 0 1 0 2.4h-2.88a1.2 1.2 0 0 1 0-2.4zm-6.137-4.449 2.135 2.135a1.2 1.2 0 0 1 0 1.697l-2.135 2.135a1.2 1.2 0 1 1-1.697-1.697l1.286-1.286-1.286-1.286a1.2 1.2 0 0 1-.078-1.612l.078-.086a1.2 1.2 0 0 1 1.697 0" }) + ] + } + ); +}); + +exports.default = SiLabex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.d.ts new file mode 100644 index 000000000..7de1d42fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E7EEE"; +declare const SiLabex: IconType; +export { SiLabex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.mjs new file mode 100644 index 000000000..134a0daed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLabex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E7EEE"; +const SiLabex = React.forwardRef(function SiLabex2({ title = "LabEx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.2 0a1.2 1.2 0 0 1 1.2 1.2v4a1.2 1.2 0 0 1-1.2 1.2h-.402v1.212l6.976 9.687a1.2 1.2 0 0 1 .22.576L24 18v4.8a1.2 1.2 0 0 1-1.2 1.2H1.2A1.2 1.2 0 0 1 0 22.8V18c0-.252.08-.497.226-.701l6.975-9.687V6.4H6.8a1.2 1.2 0 0 1-1.194-1.084L5.6 5.2v-4A1.2 1.2 0 0 1 6.8 0zM16 2.4H8V4h.4a1.2 1.2 0 0 1 1.195 1.084l.006.116v2.703c0 .315-.1.622-.283.877L2.4 18.386V21.6h19.2v-3.213L14.681 8.78a1.5 1.5 0 0 1-.277-.743l-.006-.134V5.2a1.2 1.2 0 0 1 1.2-1.2H16zm-.48 14.4a1.2 1.2 0 0 1 0 2.4h-2.88a1.2 1.2 0 0 1 0-2.4zm-6.137-4.449 2.135 2.135a1.2 1.2 0 0 1 0 1.697l-2.135 2.135a1.2 1.2 0 1 1-1.697-1.697l1.286-1.286-1.286-1.286a1.2 1.2 0 0 1-.078-1.612l.078-.086a1.2 1.2 0 0 1 1.697 0" }) + ] + } + ); +}); + +export { SiLabex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.cjs new file mode 100644 index 000000000..2b39835a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDB00"; +const SiLabview = React__namespace.forwardRef(function SiLabview2({ title = "LabVIEW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.176 4.469a.817.817 0 00-.768.816v7.055a.816.816 0 001.182.73l7.058-3.527a.818.818 0 000-1.463L9.59 4.553a.808.808 0 00-.414-.084zm1.918 3.107h.638v.916h.916v.639h-.916v.918h-.638V9.13h-.918v-.639h.918v-.916zm-4.752 7.51v.367h.262c.086 0 .136.05.136.137v3.869h.41v-.273a2.6 2.6 0 00-.011-.256h.011s.281.603 1.028.603c.82 0 1.41-.646 1.41-1.635 0-.97-.522-1.642-1.361-1.642-.802 0-1.065.598-1.065.598H7.15s.012-.113.012-.256v-1.131c0-.267-.112-.381-.379-.381h-.441zm2.855 0v.387h.063c.118 0 .18.018.224.136l1.436 3.85h.467l1.437-3.85c.044-.118.105-.136.223-.136h.834v3.601h-.41v.385h1.25v-.385h-.418v-3.601h.418v-.387h-1.805c-.31 0-.404.056-.516.361l-1.076 2.942c-.08.223-.168.566-.168.566h-.011s-.088-.343-.168-.566L9.9 15.447c-.105-.298-.199-.361-.51-.361h-.193zm5.922 0v.387h.404v3.607c0 .268.112.379.38.379h1.89c.268 0 .379-.111.379-.379v-.435h-.404v.29c0 .094-.05.14-.137.14h-1.535c-.087 0-.137-.046-.137-.14v-1.484h1.64v-.387h-1.64v-1.591h1.492c.087 0 .137.043.137.136v.293h.41v-.435c0-.268-.112-.381-.379-.381h-2.5zM0 15.088v.385h.268c.086 0 .136.043.136.136v3.471c0 .268.112.379.38.379h1.81c.267 0 .379-.111.379-.379v-.435h-.41v.29c0 .094-.05.137-.137.137H.976c-.086 0-.136-.043-.136-.136v-3.47c0-.267-.112-.378-.38-.378H0zm18.334 0v.385h.076c.118 0 .197.018.229.136l1.002 3.85h.515l.897-3.047c.08-.28.156-.64.156-.64h.012s.067.366.142.646l.815 3.041h.515l1.008-3.85c.031-.118.106-.136.23-.136H24v-.385h-.193c-.311 0-.453.055-.528.36l-.76 3.015c-.055.224-.1.467-.1.467h-.01s-.039-.243-.1-.467l-.877-3.358h-.43l-.963 3.358c-.062.224-.12.467-.12.467h-.01s-.039-.243-.095-.467l-.757-3.016c-.075-.304-.219-.36-.53-.36h-.193zM4.637 16.256c-.274 0-1.02.094-1.02.53v.298h.404v-.2c0-.23.454-.273.61-.273.572 0 .808.23.808.883v.037h-.173c-.542 0-1.916.038-1.916 1.076 0 .622.54.926 1.062.926.784 0 1.046-.678 1.04-.678h.01s-.005.094-.005.23c0 .256.106.374.373.374h.43v-.367h-.262c-.087 0-.137-.044-.137-.137v-1.498c0-.672-.236-1.201-1.224-1.201zm3.527.387c.578 0 .988.49.988 1.255 0 .796-.452 1.262-1.006 1.262-.671 0-.996-.628-.996-1.256 0-.889.492-1.261 1.014-1.261zm-2.906 1.224h.181v.143c0 .54-.362 1.162-.959 1.162-.466 0-.695-.298-.695-.59 0-.703.982-.715 1.473-.715Z" }) + ] + } + ); +}); + +exports.default = SiLabview; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.d.ts new file mode 100644 index 000000000..a67d04328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDB00"; +declare const SiLabview: IconType; +export { SiLabview as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.mjs new file mode 100644 index 000000000..a1b2eac2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLabview.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDB00"; +const SiLabview = React.forwardRef(function SiLabview2({ title = "LabVIEW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.176 4.469a.817.817 0 00-.768.816v7.055a.816.816 0 001.182.73l7.058-3.527a.818.818 0 000-1.463L9.59 4.553a.808.808 0 00-.414-.084zm1.918 3.107h.638v.916h.916v.639h-.916v.918h-.638V9.13h-.918v-.639h.918v-.916zm-4.752 7.51v.367h.262c.086 0 .136.05.136.137v3.869h.41v-.273a2.6 2.6 0 00-.011-.256h.011s.281.603 1.028.603c.82 0 1.41-.646 1.41-1.635 0-.97-.522-1.642-1.361-1.642-.802 0-1.065.598-1.065.598H7.15s.012-.113.012-.256v-1.131c0-.267-.112-.381-.379-.381h-.441zm2.855 0v.387h.063c.118 0 .18.018.224.136l1.436 3.85h.467l1.437-3.85c.044-.118.105-.136.223-.136h.834v3.601h-.41v.385h1.25v-.385h-.418v-3.601h.418v-.387h-1.805c-.31 0-.404.056-.516.361l-1.076 2.942c-.08.223-.168.566-.168.566h-.011s-.088-.343-.168-.566L9.9 15.447c-.105-.298-.199-.361-.51-.361h-.193zm5.922 0v.387h.404v3.607c0 .268.112.379.38.379h1.89c.268 0 .379-.111.379-.379v-.435h-.404v.29c0 .094-.05.14-.137.14h-1.535c-.087 0-.137-.046-.137-.14v-1.484h1.64v-.387h-1.64v-1.591h1.492c.087 0 .137.043.137.136v.293h.41v-.435c0-.268-.112-.381-.379-.381h-2.5zM0 15.088v.385h.268c.086 0 .136.043.136.136v3.471c0 .268.112.379.38.379h1.81c.267 0 .379-.111.379-.379v-.435h-.41v.29c0 .094-.05.137-.137.137H.976c-.086 0-.136-.043-.136-.136v-3.47c0-.267-.112-.378-.38-.378H0zm18.334 0v.385h.076c.118 0 .197.018.229.136l1.002 3.85h.515l.897-3.047c.08-.28.156-.64.156-.64h.012s.067.366.142.646l.815 3.041h.515l1.008-3.85c.031-.118.106-.136.23-.136H24v-.385h-.193c-.311 0-.453.055-.528.36l-.76 3.015c-.055.224-.1.467-.1.467h-.01s-.039-.243-.1-.467l-.877-3.358h-.43l-.963 3.358c-.062.224-.12.467-.12.467h-.01s-.039-.243-.095-.467l-.757-3.016c-.075-.304-.219-.36-.53-.36h-.193zM4.637 16.256c-.274 0-1.02.094-1.02.53v.298h.404v-.2c0-.23.454-.273.61-.273.572 0 .808.23.808.883v.037h-.173c-.542 0-1.916.038-1.916 1.076 0 .622.54.926 1.062.926.784 0 1.046-.678 1.04-.678h.01s-.005.094-.005.23c0 .256.106.374.373.374h.43v-.367h-.262c-.087 0-.137-.044-.137-.137v-1.498c0-.672-.236-1.201-1.224-1.201zm3.527.387c.578 0 .988.49.988 1.255 0 .796-.452 1.262-1.006 1.262-.671 0-.996-.628-.996-1.256 0-.889.492-1.261 1.014-1.261zm-2.906 1.224h.181v.143c0 .54-.362 1.162-.959 1.162-.466 0-.695-.298-.695-.59 0-.703.982-.715 1.473-.715Z" }) + ] + } + ); +}); + +export { SiLabview as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLada.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLada.cjs new file mode 100644 index 000000000..e2b0aa487 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLada.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED6B21"; +const SiLada = React__namespace.forwardRef(function SiLada2({ title = "LADA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.998 7.312c-5.908 0-10.82 1.669-11.81 3.866a1.974 1.974 0 0 0-.188.831c0 .193.028.508.227.895 1.078 2.156 5.94 3.784 11.775 3.784C18.629 16.688 24 14.588 24 12c0-2.589-5.375-4.688-12.002-4.688Zm-.89.993c.42.383.16 1.217-.642 2.368-.894 1.276-1.752 1.976-2.771 2.233L9.91 8.084h.01c.566-.025.949.005 1.188.22zm5.027 4.7c-.065-.04-.045-.139.03-.154l1-.201a.07.07 0 0 0 .052-.047l.16-.474c.015-.044-.018-.087-.063-.09l-1.866-.103a.305.305 0 0 0-.18.048l-.748.496a.385.385 0 0 0-.17.394c.209 1.09-.202 1.684-2.354 1.942-3.127.373-5.461 0-5.868-.074a.218.218 0 0 0-.234.121l-.213.463c-2.209-.657-3.742-1.653-4.112-2.793 0-.036-.081-.226-.081-.535 0-1.893 3.186-3.49 7.544-3.992h.016s-2.232 4.863-2.612 5.688a.088.088 0 0 0 .08.122h.124c1.31.044 2.892.091 4.87-.396 2.102-.518 3.688-2.005 4.296-3.087.616-1.099.263-1.943.195-2.232 3.878.596 6.359 2.095 6.413 3.84-.014.356-.11.704-.283 1.019-.728 1.214-2.796 2.22-5.55 2.76 1.084-1.188.236-2.27-.446-2.712z" }) + ] + } + ); +}); + +exports.default = SiLada; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLada.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLada.d.ts new file mode 100644 index 000000000..e0ba70630 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLada.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED6B21"; +declare const SiLada: IconType; +export { SiLada as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLada.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLada.mjs new file mode 100644 index 000000000..20a3ce457 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLada.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED6B21"; +const SiLada = React.forwardRef(function SiLada2({ title = "LADA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.998 7.312c-5.908 0-10.82 1.669-11.81 3.866a1.974 1.974 0 0 0-.188.831c0 .193.028.508.227.895 1.078 2.156 5.94 3.784 11.775 3.784C18.629 16.688 24 14.588 24 12c0-2.589-5.375-4.688-12.002-4.688Zm-.89.993c.42.383.16 1.217-.642 2.368-.894 1.276-1.752 1.976-2.771 2.233L9.91 8.084h.01c.566-.025.949.005 1.188.22zm5.027 4.7c-.065-.04-.045-.139.03-.154l1-.201a.07.07 0 0 0 .052-.047l.16-.474c.015-.044-.018-.087-.063-.09l-1.866-.103a.305.305 0 0 0-.18.048l-.748.496a.385.385 0 0 0-.17.394c.209 1.09-.202 1.684-2.354 1.942-3.127.373-5.461 0-5.868-.074a.218.218 0 0 0-.234.121l-.213.463c-2.209-.657-3.742-1.653-4.112-2.793 0-.036-.081-.226-.081-.535 0-1.893 3.186-3.49 7.544-3.992h.016s-2.232 4.863-2.612 5.688a.088.088 0 0 0 .08.122h.124c1.31.044 2.892.091 4.87-.396 2.102-.518 3.688-2.005 4.296-3.087.616-1.099.263-1.943.195-2.232 3.878.596 6.359 2.095 6.413 3.84-.014.356-.11.704-.283 1.019-.728 1.214-2.796 2.22-5.55 2.76 1.084-1.188.236-2.27-.446-2.712z" }) + ] + } + ); +}); + +export { SiLada as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.cjs new file mode 100644 index 000000000..ce3a5bb18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B6A272"; +const SiLamborghini = React__namespace.forwardRef(function SiLamborghini2({ title = "Lamborghini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.192 13.826c-.032.02-.232.114-.288.136-.406.18-.772.152-1.18-.088-.294-.172-.566-.552-.672-.684-.084-.106-.186-.244-.332-.374-.272-.244-.638-.404-1.272-.392a.3.3 0 0 1-.146-.036c-.64-.338-1.746-.752-2.8-.7-.21.016-.24-.136-.31-.306a3.866 3.866 0 0 0-.46-.936c-.168-.238-.24-.24-.378-.278-.152-.042-.32-.06-.42-.236-.012-.022-.062-.116-.006-.182.14-.164.528-.388-.056-.718-.356-.2-.196-.33-.138-.36a.614.614 0 0 1 .392-.042 1 1 0 0 1 .56.36c.19.222.832 1.264 1.222 2.054.006.01.014.066.086.074.108.01.296.01.334.014.06.004.06-.044.054-.064-.552-1.836-1.19-4.124-2.296-5.714-.02-.046-.002-.094.068-.088.988.1 1.276 1.51 1.856 2.434.744 1.19 1.18.724 1.252-.08.048-.56-.1-1.272-.49-1.672-.092-.114-.258-.256-.326-.34-.024-.032-.028-.082.038-.1a.446.446 0 0 1 .118-.006c.458.034 1.092.404 1.36.816.546.846.506 1.3.43 1.6-.128.512-.368.806-.07 1.618.588 1.604.434 1.268.1 2.278-.03.076.018.134.084.128.77-.072 1.004.104 1.17.192.018.01.032.024.044.02.03-.01.04-.048.044-.098.064-.432-.026-.616-.124-.87-.06-.15-.124-.32-.146-.484a.8.8 0 0 1 .07-.488c.131-.274.16-.587.084-.882-.194-.856-.896-2.264-1.344-3.076-.13-.245-.26-.49-.392-.734-.032-.06-.02-.128.006-.184l.054-.136c.108-.274.164-.48.196-.72.104-.766-.098-1.312-.652-1.768-.516-.424-1.432-.612-2.654-.544l-.26.016c-1.148.066-2.452.14-3.434.06-.95-.08-1.504-.23-1.696-.46a.332.332 0 0 1-.076-.262A.844.844 0 0 1 9.74.96c.17-.13.37-.2.514-.18.254.012.536.156.86.322.29.15.62.32 1.004.428a3 3 0 0 0 .952.124c.29-.012.576-.072.846-.18a.892.892 0 0 0 .232-.132c.02-.016.026-.048.004-.08-.014-.016-.03-.016-.09-.016a4.5 4.5 0 0 1-1-.12c-.256-.064-.28-.124-.276-.148.006-.056.14-.108.294-.114.752-.034 1.328.006 1.71.034.161.017.323.022.486.016.022-.002.03-.016.032-.022a.04.04 0 0 0-.012-.04c-.264-.22-1.126-.55-2.11-.724-1.582-.28-2.642-.05-3.252.192a3.103 3.103 0 0 0-.714.4c-.306.238-.476.496-.508.77-.04.364.224.836 1.72 1.01 1.586.184 3.068.158 4.374.136l.402-.008c.828-.012 1.528.188 1.83.522.289.34.393.798.28 1.228-.03.115-.078.224-.14.324-.094.13-.2.168-.39.118-.612-.162-1.704-.52-2.232-.7-.472-.16-.844-.284-1.16-.362-.936-.23-1.228-.078-1.858.32-.152.096-.306.2-.484.322-.26.176-.55.376-.94.62-.285.172-.575.337-.868.494-.332.18-.674.37-1.01.572-1.076.632-1.248 1.48-1.448 2.46-.14.696-.3 1.484-.832 2.284-.058.086-.52.646-.616.804-.366.586-.56 1.092-.484 1.94.06.636-.16 1.188-.37 1.722-.164.42-.32.82-.346 1.244-.02.264-.01.51 0 .748.014.394.02.788-.1 1.128-.092.26-.328.52-.42.772a3.874 3.874 0 0 0-.198 1.212c-.006.36-.272.622-.554.9-.248.246-.508.504-.602.84-.014.044-.02.078-.038.104-.024.04-.06.064-.11.1a.962.962 0 0 0-.336.408c-.096.253-.089.533.02.78.016.028.058.096.122.104.044.004.088-.02.13-.07 0 0 .276-.318.382-.412a.086.086 0 0 1 .108-.008c.032.022.038.06.02.1-.012.024-.178.32-.274.568l-.002.008c-.014.034-.03.08-.006.114.022.036.076.056.17.06.04.004.08.004.12.004.508 0 .776-.136.914-.254a.342.342 0 0 0 .08-.124l.02-.04c.1-.272.168-.588.178-.824 0-.1.028-.128.096-.196.268-.272.268-.628.268-.974 0-.32 0-.648.21-.906.57-.64.866-1.384 1.152-2.104.296-.744.6-1.514 1.208-2.154.154-.158.302-.244.4-.228.05.008.088.04.116.094.13.24.09.562.052.874-.042.354-.082.686.104.904.126.162.16.334.098.494-.08.256-.324 1.032-.902 1.376a2.44 2.44 0 0 0-.216.164.404.404 0 0 0-.064.094.473.473 0 0 1-.312.262.964.964 0 0 0-.536.346c-.22.331-.314.73-.264 1.124.01.06.03.138.088.214.034.048.074.076.116.082a.132.132 0 0 0 .1-.028c.046-.04.088-.084.126-.132.08-.09.178-.204.3-.296.04-.03.08-.022.104-.006.02.016.032.04.024.06a.85.85 0 0 1-.094.174c-.06.094-.134.21-.192.348-.016.03-.018.06-.006.084.016.04.06.056.07.06.37.118.92-.022 1.23-.312a.762.762 0 0 0 .228-.59.36.36 0 0 1 .098-.228c.216-.186.306-.476.4-.784l.072-.222c.098-.317.287-.6.542-.812.406-.38.59-.74.706-.96.118-.238.144-.37.23-.508.17-.268.742-.32.954-.194.088.052.106.124.058.214-.032.058-.334.546-.476.88-.07.164-.228.226-.32.28-.568.332-.672.956-.688 1.212-.006.08.002.186.044.246a.14.14 0 0 0 .09.06.136.136 0 0 0 .106-.028c.032-.026.34-.336.376-.368.052-.044.096-.036.12-.016.022.02.032.062 0 .11-.04.062-.254.382-.228.452.04.118.162.116.282.116.974-.08 1.318-.774 1.318-.774.024-.04.052-.094.036-.238-.028-.26-.088-1.16.432-1.72.154-.172.246-.056.28.02.064.14.156.378.21.498.112.254.188.44.32.692.216.424.546.482.952.432.526-.066.888-.024 1.24.01.3.026.466.046.688-.156.12-.11.35-.31.504-.53.1-.138.128-.226.104-.44-.072-1.082.49-2.022 1.504-2.514.152-.062.32-.044.424.096.228.336.756 1.2.756 1.934a.746.746 0 0 1-.058.234c-.072.2-.16.45.004.79.012.294-.098.524-.194.728-.138.288-.246.516.13.74.141.08.293.14.45.18a.074.074 0 0 0 .04-.012.048.048 0 0 0 .024-.034c.01-.086.02-.38.036-.448.006-.028.02-.06.052-.064.03 0 .06.022.068.046.03.072.106.36.128.404.018.04.04.066.068.076.15.042.356-.216.432-.35.132-.274.078-.68-.138-1.036a.304.304 0 0 1-.036-.158.974.974 0 0 0-.04-.66 1.452 1.452 0 0 1-.088-.344c-.06-.508.254-2.12.282-2.284.054-.3.098-.514.116-.734a.856.856 0 0 0-.216-.62c-.136-.146-.3-.28-.46-.408a4.603 4.603 0 0 1-.378-.33.87.87 0 0 1-.228-.512c0-.02.004-.034.012-.04a.045.045 0 0 1 .026-.006c.24.018.434.176.676.38.22.18.466.384.81.536.684.304 1.332.26 1.984-.136.276-.196.362-.366.376-.388.018-.03-.008-.116-.088-.07ZM7.054 11.124c.04-.316.272-.65.374-1.044.146-.444.186-1.22.266-1.836.04-.308.156-.436.378-.464.146-.014.3.114.378.548.272 1.774.804 2.02 1.114 2.49a.328.328 0 0 1 .016.026c.08.148.104.284-.02.384-.072.06-.316.146-.728-.104-.496-.298-.57-.62-1.392.038 0 0-.11.084-.214.108-.09.02-.188-.014-.172-.146Zm4.3 6.51c-.03.02-.064.006-.112-.024-.326-.21-1.23-.374-1.992-.068-.786.314-1.504.76-1.552-.018-.01-.688.136-.988-.104-1.396l-.02-.032c-.02-.032.004-.04.012-.04 1.102-.086 1.398-.43 1.466-.55.014-.028-.004-.056-.032-.06-.254-.028-1.518-.066-2.024.008-.894.13-1.494 1.474-1.61 1.602-.134.146-.304.034-.304-.1 0-.224.134-1.314.22-1.692.14-.598.332-1.04.916-1.132.408-.062 1.412-.168 1.344-.44a2.388 2.388 0 0 1-.088-.5c0-.132.068-.16.202-.128.1.02.232.08.404.12 1.26.298 1.908.06 2.66-.274l.318-.144a.168.168 0 0 1 .23.222c-.04.086-.094.126-.21.236-.248.24-1.174 1-.616 2.284.434 1 .56 1.26.87 1.942.05.112.058.16.02.184h.002Zm2.346 1.732c-.062.096-.158.164-.34.164-.228 0-.388-.068-.484-.17a.758.758 0 0 1-.174-.688c.03-.12.1-.198.18-.22.032-.012.05-.008.068.014.034.054.156.248.184.288a.342.342 0 0 0 .142.108c.092.038.21.07.272.098.19.082.234.278.152.406Zm3.638-3.54c-.024.04-.046.046-.078.06-1.142.432-2.052 1.6-1.886 3a.338.338 0 0 1-.09.246s-.24.244-.39.348c-.052.036-.11.064-.244.056l-.51-.032c-.08-.014-.046-.084-.04-.1a.34.34 0 0 0 .016-.05c.044-.21.012-.504-.284-.614-.042-.024-.016-.064-.01-.076.126-.314.286-.7.412-1.242.09-.313.023-.65-.18-.906l-.18-.24c-.052-.058-.038-.12.034-.144l.254-.066c.06-.02.056-.114-.004-.13l-.13-.04a.61.61 0 0 1-.256-.228.57.57 0 0 1-.1-.226l-.014-.074c-.002-.038-.06-.04-.088-.012a.62.62 0 0 0-.114.754c.206.344.198.31.38.57.06.084.098.154.118.24.029.21.008.425-.06.626l-.208.632c-.126.28-.266.214-.344.16-.104-.068-.2-.244-.25-.432 0 0-.144-.526-.14-1.228-.008-.084-.066-.222-.25-.1l-.49.404c-.068.038-.188.018-.164-.142 0 0 .352-1.57.73-2.454.284-.72-.032-1.126-.408-1.572-.618-.788-.756-1.846.68-1.266.386.176.524-.052 1-.094.34-.028.452.11.48.168a.422.422 0 0 1 .04.14c0 .012-.004.02-.02.02-.804.048-1.764.716-1.02 1.766.726 1.028 2.73 1.372 3.626.392.012-.012.014-.042-.004-.056a.044.044 0 0 0-.046-.008 2.9 2.9 0 0 1-.556.16c-.428.07-1.334.02-1.76-.47-.246-.28-.24-.602.174-.652.23-.018.344.024.444.026.258-.004.31-.26.258-.38a.976.976 0 0 0-.292-.364c-.134-.094-.06-.194.026-.192.828.048 1.62.192 1.92 1.186.012.038.032.164.064.21.064.096.174.168.298.274.3.262.57.73-.344 2.152Zm1.076-.616c.146-.304.344-.1.44.234.12.426.136 1.108.084 1.46-.064.46-.28.368-.396.204-.184-.258-.38-.6-.52-.836a.294.294 0 0 1-.01-.022c-.064-.134-.074-.24-.006-.336.068-.106.34-.564.408-.704Z" }) + ] + } + ); +}); + +exports.default = SiLamborghini; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.d.ts new file mode 100644 index 000000000..821f2400e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B6A272"; +declare const SiLamborghini: IconType; +export { SiLamborghini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.mjs new file mode 100644 index 000000000..905b1c774 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLamborghini.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B6A272"; +const SiLamborghini = React.forwardRef(function SiLamborghini2({ title = "Lamborghini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.192 13.826c-.032.02-.232.114-.288.136-.406.18-.772.152-1.18-.088-.294-.172-.566-.552-.672-.684-.084-.106-.186-.244-.332-.374-.272-.244-.638-.404-1.272-.392a.3.3 0 0 1-.146-.036c-.64-.338-1.746-.752-2.8-.7-.21.016-.24-.136-.31-.306a3.866 3.866 0 0 0-.46-.936c-.168-.238-.24-.24-.378-.278-.152-.042-.32-.06-.42-.236-.012-.022-.062-.116-.006-.182.14-.164.528-.388-.056-.718-.356-.2-.196-.33-.138-.36a.614.614 0 0 1 .392-.042 1 1 0 0 1 .56.36c.19.222.832 1.264 1.222 2.054.006.01.014.066.086.074.108.01.296.01.334.014.06.004.06-.044.054-.064-.552-1.836-1.19-4.124-2.296-5.714-.02-.046-.002-.094.068-.088.988.1 1.276 1.51 1.856 2.434.744 1.19 1.18.724 1.252-.08.048-.56-.1-1.272-.49-1.672-.092-.114-.258-.256-.326-.34-.024-.032-.028-.082.038-.1a.446.446 0 0 1 .118-.006c.458.034 1.092.404 1.36.816.546.846.506 1.3.43 1.6-.128.512-.368.806-.07 1.618.588 1.604.434 1.268.1 2.278-.03.076.018.134.084.128.77-.072 1.004.104 1.17.192.018.01.032.024.044.02.03-.01.04-.048.044-.098.064-.432-.026-.616-.124-.87-.06-.15-.124-.32-.146-.484a.8.8 0 0 1 .07-.488c.131-.274.16-.587.084-.882-.194-.856-.896-2.264-1.344-3.076-.13-.245-.26-.49-.392-.734-.032-.06-.02-.128.006-.184l.054-.136c.108-.274.164-.48.196-.72.104-.766-.098-1.312-.652-1.768-.516-.424-1.432-.612-2.654-.544l-.26.016c-1.148.066-2.452.14-3.434.06-.95-.08-1.504-.23-1.696-.46a.332.332 0 0 1-.076-.262A.844.844 0 0 1 9.74.96c.17-.13.37-.2.514-.18.254.012.536.156.86.322.29.15.62.32 1.004.428a3 3 0 0 0 .952.124c.29-.012.576-.072.846-.18a.892.892 0 0 0 .232-.132c.02-.016.026-.048.004-.08-.014-.016-.03-.016-.09-.016a4.5 4.5 0 0 1-1-.12c-.256-.064-.28-.124-.276-.148.006-.056.14-.108.294-.114.752-.034 1.328.006 1.71.034.161.017.323.022.486.016.022-.002.03-.016.032-.022a.04.04 0 0 0-.012-.04c-.264-.22-1.126-.55-2.11-.724-1.582-.28-2.642-.05-3.252.192a3.103 3.103 0 0 0-.714.4c-.306.238-.476.496-.508.77-.04.364.224.836 1.72 1.01 1.586.184 3.068.158 4.374.136l.402-.008c.828-.012 1.528.188 1.83.522.289.34.393.798.28 1.228-.03.115-.078.224-.14.324-.094.13-.2.168-.39.118-.612-.162-1.704-.52-2.232-.7-.472-.16-.844-.284-1.16-.362-.936-.23-1.228-.078-1.858.32-.152.096-.306.2-.484.322-.26.176-.55.376-.94.62-.285.172-.575.337-.868.494-.332.18-.674.37-1.01.572-1.076.632-1.248 1.48-1.448 2.46-.14.696-.3 1.484-.832 2.284-.058.086-.52.646-.616.804-.366.586-.56 1.092-.484 1.94.06.636-.16 1.188-.37 1.722-.164.42-.32.82-.346 1.244-.02.264-.01.51 0 .748.014.394.02.788-.1 1.128-.092.26-.328.52-.42.772a3.874 3.874 0 0 0-.198 1.212c-.006.36-.272.622-.554.9-.248.246-.508.504-.602.84-.014.044-.02.078-.038.104-.024.04-.06.064-.11.1a.962.962 0 0 0-.336.408c-.096.253-.089.533.02.78.016.028.058.096.122.104.044.004.088-.02.13-.07 0 0 .276-.318.382-.412a.086.086 0 0 1 .108-.008c.032.022.038.06.02.1-.012.024-.178.32-.274.568l-.002.008c-.014.034-.03.08-.006.114.022.036.076.056.17.06.04.004.08.004.12.004.508 0 .776-.136.914-.254a.342.342 0 0 0 .08-.124l.02-.04c.1-.272.168-.588.178-.824 0-.1.028-.128.096-.196.268-.272.268-.628.268-.974 0-.32 0-.648.21-.906.57-.64.866-1.384 1.152-2.104.296-.744.6-1.514 1.208-2.154.154-.158.302-.244.4-.228.05.008.088.04.116.094.13.24.09.562.052.874-.042.354-.082.686.104.904.126.162.16.334.098.494-.08.256-.324 1.032-.902 1.376a2.44 2.44 0 0 0-.216.164.404.404 0 0 0-.064.094.473.473 0 0 1-.312.262.964.964 0 0 0-.536.346c-.22.331-.314.73-.264 1.124.01.06.03.138.088.214.034.048.074.076.116.082a.132.132 0 0 0 .1-.028c.046-.04.088-.084.126-.132.08-.09.178-.204.3-.296.04-.03.08-.022.104-.006.02.016.032.04.024.06a.85.85 0 0 1-.094.174c-.06.094-.134.21-.192.348-.016.03-.018.06-.006.084.016.04.06.056.07.06.37.118.92-.022 1.23-.312a.762.762 0 0 0 .228-.59.36.36 0 0 1 .098-.228c.216-.186.306-.476.4-.784l.072-.222c.098-.317.287-.6.542-.812.406-.38.59-.74.706-.96.118-.238.144-.37.23-.508.17-.268.742-.32.954-.194.088.052.106.124.058.214-.032.058-.334.546-.476.88-.07.164-.228.226-.32.28-.568.332-.672.956-.688 1.212-.006.08.002.186.044.246a.14.14 0 0 0 .09.06.136.136 0 0 0 .106-.028c.032-.026.34-.336.376-.368.052-.044.096-.036.12-.016.022.02.032.062 0 .11-.04.062-.254.382-.228.452.04.118.162.116.282.116.974-.08 1.318-.774 1.318-.774.024-.04.052-.094.036-.238-.028-.26-.088-1.16.432-1.72.154-.172.246-.056.28.02.064.14.156.378.21.498.112.254.188.44.32.692.216.424.546.482.952.432.526-.066.888-.024 1.24.01.3.026.466.046.688-.156.12-.11.35-.31.504-.53.1-.138.128-.226.104-.44-.072-1.082.49-2.022 1.504-2.514.152-.062.32-.044.424.096.228.336.756 1.2.756 1.934a.746.746 0 0 1-.058.234c-.072.2-.16.45.004.79.012.294-.098.524-.194.728-.138.288-.246.516.13.74.141.08.293.14.45.18a.074.074 0 0 0 .04-.012.048.048 0 0 0 .024-.034c.01-.086.02-.38.036-.448.006-.028.02-.06.052-.064.03 0 .06.022.068.046.03.072.106.36.128.404.018.04.04.066.068.076.15.042.356-.216.432-.35.132-.274.078-.68-.138-1.036a.304.304 0 0 1-.036-.158.974.974 0 0 0-.04-.66 1.452 1.452 0 0 1-.088-.344c-.06-.508.254-2.12.282-2.284.054-.3.098-.514.116-.734a.856.856 0 0 0-.216-.62c-.136-.146-.3-.28-.46-.408a4.603 4.603 0 0 1-.378-.33.87.87 0 0 1-.228-.512c0-.02.004-.034.012-.04a.045.045 0 0 1 .026-.006c.24.018.434.176.676.38.22.18.466.384.81.536.684.304 1.332.26 1.984-.136.276-.196.362-.366.376-.388.018-.03-.008-.116-.088-.07ZM7.054 11.124c.04-.316.272-.65.374-1.044.146-.444.186-1.22.266-1.836.04-.308.156-.436.378-.464.146-.014.3.114.378.548.272 1.774.804 2.02 1.114 2.49a.328.328 0 0 1 .016.026c.08.148.104.284-.02.384-.072.06-.316.146-.728-.104-.496-.298-.57-.62-1.392.038 0 0-.11.084-.214.108-.09.02-.188-.014-.172-.146Zm4.3 6.51c-.03.02-.064.006-.112-.024-.326-.21-1.23-.374-1.992-.068-.786.314-1.504.76-1.552-.018-.01-.688.136-.988-.104-1.396l-.02-.032c-.02-.032.004-.04.012-.04 1.102-.086 1.398-.43 1.466-.55.014-.028-.004-.056-.032-.06-.254-.028-1.518-.066-2.024.008-.894.13-1.494 1.474-1.61 1.602-.134.146-.304.034-.304-.1 0-.224.134-1.314.22-1.692.14-.598.332-1.04.916-1.132.408-.062 1.412-.168 1.344-.44a2.388 2.388 0 0 1-.088-.5c0-.132.068-.16.202-.128.1.02.232.08.404.12 1.26.298 1.908.06 2.66-.274l.318-.144a.168.168 0 0 1 .23.222c-.04.086-.094.126-.21.236-.248.24-1.174 1-.616 2.284.434 1 .56 1.26.87 1.942.05.112.058.16.02.184h.002Zm2.346 1.732c-.062.096-.158.164-.34.164-.228 0-.388-.068-.484-.17a.758.758 0 0 1-.174-.688c.03-.12.1-.198.18-.22.032-.012.05-.008.068.014.034.054.156.248.184.288a.342.342 0 0 0 .142.108c.092.038.21.07.272.098.19.082.234.278.152.406Zm3.638-3.54c-.024.04-.046.046-.078.06-1.142.432-2.052 1.6-1.886 3a.338.338 0 0 1-.09.246s-.24.244-.39.348c-.052.036-.11.064-.244.056l-.51-.032c-.08-.014-.046-.084-.04-.1a.34.34 0 0 0 .016-.05c.044-.21.012-.504-.284-.614-.042-.024-.016-.064-.01-.076.126-.314.286-.7.412-1.242.09-.313.023-.65-.18-.906l-.18-.24c-.052-.058-.038-.12.034-.144l.254-.066c.06-.02.056-.114-.004-.13l-.13-.04a.61.61 0 0 1-.256-.228.57.57 0 0 1-.1-.226l-.014-.074c-.002-.038-.06-.04-.088-.012a.62.62 0 0 0-.114.754c.206.344.198.31.38.57.06.084.098.154.118.24.029.21.008.425-.06.626l-.208.632c-.126.28-.266.214-.344.16-.104-.068-.2-.244-.25-.432 0 0-.144-.526-.14-1.228-.008-.084-.066-.222-.25-.1l-.49.404c-.068.038-.188.018-.164-.142 0 0 .352-1.57.73-2.454.284-.72-.032-1.126-.408-1.572-.618-.788-.756-1.846.68-1.266.386.176.524-.052 1-.094.34-.028.452.11.48.168a.422.422 0 0 1 .04.14c0 .012-.004.02-.02.02-.804.048-1.764.716-1.02 1.766.726 1.028 2.73 1.372 3.626.392.012-.012.014-.042-.004-.056a.044.044 0 0 0-.046-.008 2.9 2.9 0 0 1-.556.16c-.428.07-1.334.02-1.76-.47-.246-.28-.24-.602.174-.652.23-.018.344.024.444.026.258-.004.31-.26.258-.38a.976.976 0 0 0-.292-.364c-.134-.094-.06-.194.026-.192.828.048 1.62.192 1.92 1.186.012.038.032.164.064.21.064.096.174.168.298.274.3.262.57.73-.344 2.152Zm1.076-.616c.146-.304.344-.1.44.234.12.426.136 1.108.084 1.46-.064.46-.28.368-.396.204-.184-.258-.38-.6-.52-.836a.294.294 0 0 1-.01-.022c-.064-.134-.074-.24-.006-.336.068-.106.34-.564.408-.704Z" }) + ] + } + ); +}); + +export { SiLamborghini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.cjs new file mode 100644 index 000000000..f7d3905cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C3C3C"; +const SiLangchain = React__namespace.forwardRef(function SiLangchain2({ title = "LangChain", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.0988 5.9175C2.7359 5.9175 0 8.6462 0 12s2.736 6.0825 6.0988 6.0825h11.8024C21.2641 18.0825 24 15.3538 24 12s-2.736-6.0825-6.0988-6.0825ZM5.9774 7.851c.493.0124 1.02.2496 1.273.6228.3673.4592.4778 1.0668.8944 1.4932.5604.6118 1.199 1.1505 1.7161 1.802.4892.5954.8386 1.2937 1.1436 1.9975.1244.2335.1257.5202.31.7197.0908.1204.5346.4483.4383.5645.0555.1204.4702.286.3263.4027-.1944.04-.4129.0476-.5616-.1074-.0549.126-.183.0596-.2819.0432a4 4 0 0 0-.025.0736c-.3288.0219-.5754-.3126-.732-.565-.3111-.168-.6642-.2702-.982-.446-.0182.2895.0452.6485-.231.8353-.014.5565.8436.0656.9222.4804-.061.0067-.1286-.0095-.1774.0373-.2239.2172-.4805-.1645-.7385-.007-.3464.174-.3808.3161-.8096.352-.0237-.0359-.0143-.0592.0059-.0811.1207-.1399.1295-.3046.3356-.3643-.2122-.0334-.3899.0833-.5686.1757-.2323.095-.2304-.2141-.5878.0164-.0396-.0322-.0208-.0615.0018-.0864.0908-.1107.2102-.127.345-.1208-.663-.3686-.9751.4507-1.2813.0432-.092.0243-.1265.1068-.1845.1652-.05-.0548-.0123-.1212-.0099-.1857-.0598-.028-.1356-.041-.1179-.1366-.1171-.0395-.1988.0295-.286.0952-.0787-.0608.0532-.1492.0776-.2125.0702-.1216.23-.025.3111-.1126.2306-.1308.552.0814.8155.0455.203.0255.4544-.1825.3526-.39-.2171-.2767-.179-.6386-.1839-.9695-.0268-.1929-.491-.4382-.6252-.6462-.1659-.1873-.295-.4047-.4243-.6182-.4666-.9008-.3198-2.0584-.9077-2.8947-.266.1466-.6125.0774-.8418-.119-.1238.1125-.1292.2598-.139.4161-.297-.2962-.2593-.8559-.022-1.1855.0969-.1302.2127-.2373.342-.3316.0292-.0213.0391-.0419.0385-.0747.1174-.5267.5764-.7391 1.0694-.7267m12.4071.46c.5575 0 1.0806.2159 1.474.6082s.61.9145.61 1.4704c0 .556-.2167 1.078-.61 1.4698v.0006l-.902.8995a2.08 2.08 0 0 1-.8597.5166l-.0164.0047-.0058.0164a2.05 2.05 0 0 1-.474.7308l-.9018.8995c-.3934.3924-.917.6083-1.4745.6083s-1.0806-.216-1.474-.6083c-.813-.8107-.813-2.1294 0-2.9402l.9019-.8995a2.056 2.056 0 0 1 .858-.5143l.017-.0053.0058-.0158a2.07 2.07 0 0 1 .4752-.7337l.9018-.8995c.3934-.3924.9171-.6083 1.4745-.6083zm0 .8965a1.18 1.18 0 0 0-.8388.3462l-.9018.8995a1.181 1.181 0 0 0-.3427.9252l.0053.0572c.0323.2652.149.5044.3374.6917.13.1296.2733.2114.4471.2686a.9.9 0 0 1 .014.1582.884.884 0 0 1-.2609.6304l-.0554.0554c-.3013-.1028-.5525-.253-.7794-.4792a2.06 2.06 0 0 1-.5761-1.0968l-.0099-.0578-.0461.0368a1.1 1.1 0 0 0-.0876.0794l-.9024.8995c-.4623.461-.4623 1.212 0 1.673.2311.2305.535.346.8394.3461.3043 0 .6077-.1156.8388-.3462l.9019-.8995c.4623-.461.4623-1.2113 0-1.673a1.17 1.17 0 0 0-.4367-.2749 1 1 0 0 1-.014-.1611c0-.2591.1023-.505.2901-.6923.3019.1028.57.2694.7962.495.3007.2999.4994.679.5756 1.0968l.0105.0578.0455-.0373a1.1 1.1 0 0 0 .0887-.0794l.902-.8996c.4622-.461.4628-1.2124 0-1.6735a1.18 1.18 0 0 0-.8395-.3462Zm-9.973 5.1567-.0006.0006c-.0793.3078-.1048.8318-.506.847-.033.1776.1228.2445.2655.1874.141-.0645.2081.0508.2557.1657.2177.0317.5394-.0725.5516-.3298-.325-.1867-.4253-.5418-.5662-.8709" }) + ] + } + ); +}); + +exports.default = SiLangchain; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.d.ts new file mode 100644 index 000000000..d6220da8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C3C3C"; +declare const SiLangchain: IconType; +export { SiLangchain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.mjs new file mode 100644 index 000000000..593e836ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLangchain.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C3C3C"; +const SiLangchain = React.forwardRef(function SiLangchain2({ title = "LangChain", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.0988 5.9175C2.7359 5.9175 0 8.6462 0 12s2.736 6.0825 6.0988 6.0825h11.8024C21.2641 18.0825 24 15.3538 24 12s-2.736-6.0825-6.0988-6.0825ZM5.9774 7.851c.493.0124 1.02.2496 1.273.6228.3673.4592.4778 1.0668.8944 1.4932.5604.6118 1.199 1.1505 1.7161 1.802.4892.5954.8386 1.2937 1.1436 1.9975.1244.2335.1257.5202.31.7197.0908.1204.5346.4483.4383.5645.0555.1204.4702.286.3263.4027-.1944.04-.4129.0476-.5616-.1074-.0549.126-.183.0596-.2819.0432a4 4 0 0 0-.025.0736c-.3288.0219-.5754-.3126-.732-.565-.3111-.168-.6642-.2702-.982-.446-.0182.2895.0452.6485-.231.8353-.014.5565.8436.0656.9222.4804-.061.0067-.1286-.0095-.1774.0373-.2239.2172-.4805-.1645-.7385-.007-.3464.174-.3808.3161-.8096.352-.0237-.0359-.0143-.0592.0059-.0811.1207-.1399.1295-.3046.3356-.3643-.2122-.0334-.3899.0833-.5686.1757-.2323.095-.2304-.2141-.5878.0164-.0396-.0322-.0208-.0615.0018-.0864.0908-.1107.2102-.127.345-.1208-.663-.3686-.9751.4507-1.2813.0432-.092.0243-.1265.1068-.1845.1652-.05-.0548-.0123-.1212-.0099-.1857-.0598-.028-.1356-.041-.1179-.1366-.1171-.0395-.1988.0295-.286.0952-.0787-.0608.0532-.1492.0776-.2125.0702-.1216.23-.025.3111-.1126.2306-.1308.552.0814.8155.0455.203.0255.4544-.1825.3526-.39-.2171-.2767-.179-.6386-.1839-.9695-.0268-.1929-.491-.4382-.6252-.6462-.1659-.1873-.295-.4047-.4243-.6182-.4666-.9008-.3198-2.0584-.9077-2.8947-.266.1466-.6125.0774-.8418-.119-.1238.1125-.1292.2598-.139.4161-.297-.2962-.2593-.8559-.022-1.1855.0969-.1302.2127-.2373.342-.3316.0292-.0213.0391-.0419.0385-.0747.1174-.5267.5764-.7391 1.0694-.7267m12.4071.46c.5575 0 1.0806.2159 1.474.6082s.61.9145.61 1.4704c0 .556-.2167 1.078-.61 1.4698v.0006l-.902.8995a2.08 2.08 0 0 1-.8597.5166l-.0164.0047-.0058.0164a2.05 2.05 0 0 1-.474.7308l-.9018.8995c-.3934.3924-.917.6083-1.4745.6083s-1.0806-.216-1.474-.6083c-.813-.8107-.813-2.1294 0-2.9402l.9019-.8995a2.056 2.056 0 0 1 .858-.5143l.017-.0053.0058-.0158a2.07 2.07 0 0 1 .4752-.7337l.9018-.8995c.3934-.3924.9171-.6083 1.4745-.6083zm0 .8965a1.18 1.18 0 0 0-.8388.3462l-.9018.8995a1.181 1.181 0 0 0-.3427.9252l.0053.0572c.0323.2652.149.5044.3374.6917.13.1296.2733.2114.4471.2686a.9.9 0 0 1 .014.1582.884.884 0 0 1-.2609.6304l-.0554.0554c-.3013-.1028-.5525-.253-.7794-.4792a2.06 2.06 0 0 1-.5761-1.0968l-.0099-.0578-.0461.0368a1.1 1.1 0 0 0-.0876.0794l-.9024.8995c-.4623.461-.4623 1.212 0 1.673.2311.2305.535.346.8394.3461.3043 0 .6077-.1156.8388-.3462l.9019-.8995c.4623-.461.4623-1.2113 0-1.673a1.17 1.17 0 0 0-.4367-.2749 1 1 0 0 1-.014-.1611c0-.2591.1023-.505.2901-.6923.3019.1028.57.2694.7962.495.3007.2999.4994.679.5756 1.0968l.0105.0578.0455-.0373a1.1 1.1 0 0 0 .0887-.0794l.902-.8996c.4622-.461.4628-1.2124 0-1.6735a1.18 1.18 0 0 0-.8395-.3462Zm-9.973 5.1567-.0006.0006c-.0793.3078-.1048.8318-.506.847-.033.1776.1228.2445.2655.1874.141-.0645.2081.0508.2557.1657.2177.0317.5394-.0725.5516-.3298-.325-.1867-.4253-.5418-.5662-.8709" }) + ] + } + ); +}); + +export { SiLangchain as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.cjs new file mode 100644 index 000000000..7c56bbffe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLangflow = React__namespace.forwardRef(function SiLangflow2({ title = "Langflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.755 1.52h-.001c-.31 0-.608.124-.828.343L4.037 6.752a1.17 1.17 0 0 1-.827.343H1.17A1.17 1.17 0 0 0 0 8.295l.052 1.984a1.17 1.17 0 0 0 1.17 1.14h2.37c.31 0 .607-.124.827-.344l4.93-4.93c.22-.22.517-.343.827-.343h2.874a1.17 1.17 0 0 0 1.17-1.17V2.69a1.17 1.17 0 0 0-1.17-1.17zm9.78 2.503c-.31 0-.608.123-.828.343l-4.889 4.889a1.17 1.17 0 0 1-.827.342h-2.756c-.31 0-.608.124-.827.344L4.15 15.197a1.17 1.17 0 0 1-.827.343H1.32a1.17 1.17 0 0 0-1.17 1.17v1.996c0 .646.524 1.17 1.17 1.17h2.017c.302 0 .592-.116.81-.325l5.535-5.304a1.17 1.17 0 0 1 .81-.326h2.88c.31 0 .607-.123.827-.342l4.93-4.93c.22-.22.517-.344.827-.344h2.873A1.17 1.17 0 0 0 24 7.135V5.193a1.17 1.17 0 0 0-1.17-1.17h-3.294zm0 8.559c-.31 0-.608.123-.828.343l-4.889 4.889a1.17 1.17 0 0 1-.827.343h-2.04a1.17 1.17 0 0 0-1.17 1.2l.052 1.984a1.17 1.17 0 0 0 1.17 1.14h2.37c.31 0 .607-.124.827-.343l4.93-4.93c.22-.22.517-.343.827-.343h2.873a1.17 1.17 0 0 0 1.17-1.17v-1.943a1.17 1.17 0 0 0-1.17-1.17h-3.294Z" }) + ] + } + ); +}); + +exports.default = SiLangflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.d.ts new file mode 100644 index 000000000..5e7a8fae4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLangflow: IconType; +export { SiLangflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.mjs new file mode 100644 index 000000000..64cc6a001 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLangflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLangflow = React.forwardRef(function SiLangflow2({ title = "Langflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.755 1.52h-.001c-.31 0-.608.124-.828.343L4.037 6.752a1.17 1.17 0 0 1-.827.343H1.17A1.17 1.17 0 0 0 0 8.295l.052 1.984a1.17 1.17 0 0 0 1.17 1.14h2.37c.31 0 .607-.124.827-.344l4.93-4.93c.22-.22.517-.343.827-.343h2.874a1.17 1.17 0 0 0 1.17-1.17V2.69a1.17 1.17 0 0 0-1.17-1.17zm9.78 2.503c-.31 0-.608.123-.828.343l-4.889 4.889a1.17 1.17 0 0 1-.827.342h-2.756c-.31 0-.608.124-.827.344L4.15 15.197a1.17 1.17 0 0 1-.827.343H1.32a1.17 1.17 0 0 0-1.17 1.17v1.996c0 .646.524 1.17 1.17 1.17h2.017c.302 0 .592-.116.81-.325l5.535-5.304a1.17 1.17 0 0 1 .81-.326h2.88c.31 0 .607-.123.827-.342l4.93-4.93c.22-.22.517-.344.827-.344h2.873A1.17 1.17 0 0 0 24 7.135V5.193a1.17 1.17 0 0 0-1.17-1.17h-3.294zm0 8.559c-.31 0-.608.123-.828.343l-4.889 4.889a1.17 1.17 0 0 1-.827.343h-2.04a1.17 1.17 0 0 0-1.17 1.2l.052 1.984a1.17 1.17 0 0 0 1.17 1.14h2.37c.31 0 .607-.124.827-.343l4.93-4.93c.22-.22.517-.343.827-.343h2.873a1.17 1.17 0 0 0 1.17-1.17v-1.943a1.17 1.17 0 0 0-1.17-1.17h-3.294Z" }) + ] + } + ); +}); + +export { SiLangflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.cjs new file mode 100644 index 000000000..d02018def --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C3C3C"; +const SiLanggraph = React__namespace.forwardRef(function SiLanggraph2({ title = "LangGraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.099 5.88H17.9C21.264 5.88 24 8.625 24 12s-2.736 6.12-6.099 6.12H6.1C2.736 18.12 0 15.375 0 12s2.736-6.12 6.099-6.12Zm5.419 9.487c.148.156.367.148.561.108h.002c.09-.073-.038-.166-.16-.254-.074-.054-.145-.105-.166-.15.068-.083-.132-.27-.289-.417a1.539 1.539 0 0 1-.15-.151c-.11-.12-.155-.273-.2-.427a1.575 1.575 0 0 0-.11-.297c-.304-.708-.653-1.41-1.143-2.01-.315-.398-.674-.755-1.033-1.112-.232-.23-.463-.46-.683-.701-.226-.234-.362-.521-.499-.81-.114-.24-.228-.482-.396-.693-.507-.75-2.107-.955-2.342.105 0 .033-.01.054-.039.075-.13.095-.245.203-.342.334-.238.332-.274.895.022 1.193l.001-.02c.01-.15.02-.29.139-.399.228.198.576.268.841.12.32.46.422 1.015.525 1.572.085.464.17.93.382 1.341l.014.022c.124.208.25.419.41.6.059.09.178.187.297.284.157.128.314.256.329.366v.146c-.001.29-.002.59.184.83.103.208-.15.418-.352.392a.989.989 0 0 1-.354-.043c-.165-.04-.329-.08-.462-.003-.038.04-.091.042-.145.043-.064.002-.129.004-.167.07a.29.29 0 0 1-.045.066c-.042.051-.087.107-.033.149l.015-.011c.082-.063.16-.123.27-.085-.014.082.039.103.092.125l.027.012a.357.357 0 0 1-.008.057c-.009.046-.017.09.018.13a.605.605 0 0 0 .046-.056c.037-.046.073-.094.139-.11.144.192.289.112.471.012.206-.114.459-.253.81-.056-.135-.007-.255.01-.345.121-.023.025-.042.054-.002.087.207-.135.294-.086.375-.04.06.032.115.063.212.024l.07-.037c.155-.084.314-.17.499-.14-.139.04-.188.127-.242.223-.026.047-.054.097-.094.143-.021.021-.03.046-.007.082.29-.024.4-.098.548-.197.07-.047.15-.1.261-.157.124-.076.248-.028.368.02.13.05.255.1.371-.013.037-.035.083-.035.129-.036.016 0 .033 0 .05-.002-.037-.194-.24-.191-.448-.189-.24.003-.483.005-.475-.295.222-.152.224-.415.226-.665 0-.06 0-.119.005-.176.163.092.336.163.508.234.162.066.323.133.474.215.157.254.404.59.732.568.008-.026.016-.048.026-.074.019.003.039.008.059.014.086.021.178.045.223-.057zm6.429-2.886a1.014 1.014 0 0 0 1.729-.715 1.01 1.01 0 0 0-1.013-1.01c-.126 0-.25.023-.364.068l-.58-.848-.405.278.583.851a1.009 1.009 0 0 0 .05 1.376zm-1.818-2.744a1.014 1.014 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm0 5.867a1.015 1.015 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm.932-3.586v-.503h-1.55a1.003 1.003 0 0 0-.218-.412l.583-.864-.424-.28-.583.863a1.014 1.014 0 0 0-.333-.06c-.268 0-.525.106-.714.294a1.002 1.002 0 0 0 1.047 1.655l.583.864.42-.281-.579-.864c.104-.119.178-.26.217-.412z" }) + ] + } + ); +}); + +exports.default = SiLanggraph; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.d.ts new file mode 100644 index 000000000..1c9804dd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C3C3C"; +declare const SiLanggraph: IconType; +export { SiLanggraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.mjs new file mode 100644 index 000000000..02b1cd568 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLanggraph.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C3C3C"; +const SiLanggraph = React.forwardRef(function SiLanggraph2({ title = "LangGraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.099 5.88H17.9C21.264 5.88 24 8.625 24 12s-2.736 6.12-6.099 6.12H6.1C2.736 18.12 0 15.375 0 12s2.736-6.12 6.099-6.12Zm5.419 9.487c.148.156.367.148.561.108h.002c.09-.073-.038-.166-.16-.254-.074-.054-.145-.105-.166-.15.068-.083-.132-.27-.289-.417a1.539 1.539 0 0 1-.15-.151c-.11-.12-.155-.273-.2-.427a1.575 1.575 0 0 0-.11-.297c-.304-.708-.653-1.41-1.143-2.01-.315-.398-.674-.755-1.033-1.112-.232-.23-.463-.46-.683-.701-.226-.234-.362-.521-.499-.81-.114-.24-.228-.482-.396-.693-.507-.75-2.107-.955-2.342.105 0 .033-.01.054-.039.075-.13.095-.245.203-.342.334-.238.332-.274.895.022 1.193l.001-.02c.01-.15.02-.29.139-.399.228.198.576.268.841.12.32.46.422 1.015.525 1.572.085.464.17.93.382 1.341l.014.022c.124.208.25.419.41.6.059.09.178.187.297.284.157.128.314.256.329.366v.146c-.001.29-.002.59.184.83.103.208-.15.418-.352.392a.989.989 0 0 1-.354-.043c-.165-.04-.329-.08-.462-.003-.038.04-.091.042-.145.043-.064.002-.129.004-.167.07a.29.29 0 0 1-.045.066c-.042.051-.087.107-.033.149l.015-.011c.082-.063.16-.123.27-.085-.014.082.039.103.092.125l.027.012a.357.357 0 0 1-.008.057c-.009.046-.017.09.018.13a.605.605 0 0 0 .046-.056c.037-.046.073-.094.139-.11.144.192.289.112.471.012.206-.114.459-.253.81-.056-.135-.007-.255.01-.345.121-.023.025-.042.054-.002.087.207-.135.294-.086.375-.04.06.032.115.063.212.024l.07-.037c.155-.084.314-.17.499-.14-.139.04-.188.127-.242.223-.026.047-.054.097-.094.143-.021.021-.03.046-.007.082.29-.024.4-.098.548-.197.07-.047.15-.1.261-.157.124-.076.248-.028.368.02.13.05.255.1.371-.013.037-.035.083-.035.129-.036.016 0 .033 0 .05-.002-.037-.194-.24-.191-.448-.189-.24.003-.483.005-.475-.295.222-.152.224-.415.226-.665 0-.06 0-.119.005-.176.163.092.336.163.508.234.162.066.323.133.474.215.157.254.404.59.732.568.008-.026.016-.048.026-.074.019.003.039.008.059.014.086.021.178.045.223-.057zm6.429-2.886a1.014 1.014 0 0 0 1.729-.715 1.01 1.01 0 0 0-1.013-1.01c-.126 0-.25.023-.364.068l-.58-.848-.405.278.583.851a1.009 1.009 0 0 0 .05 1.376zm-1.818-2.744a1.014 1.014 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm0 5.867a1.015 1.015 0 0 0 1.42-.615 1.008 1.008 0 0 0-.845-1.293 1.015 1.015 0 0 0-1.095.712 1.008 1.008 0 0 0 .52 1.196zm.932-3.586v-.503h-1.55a1.003 1.003 0 0 0-.218-.412l.583-.864-.424-.28-.583.863a1.014 1.014 0 0 0-.333-.06c-.268 0-.525.106-.714.294a1.002 1.002 0 0 0 1.047 1.655l.583.864.42-.281-.579-.864c.104-.119.178-.26.217-.412z" }) + ] + } + ); +}); + +export { SiLanggraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.cjs new file mode 100644 index 000000000..e36984c9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#45A1FC"; +const SiLanguagetool = React__namespace.forwardRef(function SiLanguagetool2({ title = "LanguageTool", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.28 20.494 0 18.865c.67-.938 1.36-1.66 2.088-2.171.805-.568 1.667-.869 2.555-.869.824 0 1.539.198 2.178.582.261.16.504.344.734.549.16.14.281.255.53.504.383.384.537.524.728.633.205.127.422.185.735.185s.53-.058.734-.185c.192-.109.351-.25.734-.633.25-.249.37-.364.537-.51a4.69 4.69 0 0 1 .728-.543c.639-.384 1.348-.582 2.171-.582.824 0 1.533.198 2.172.582.255.153.491.332.728.542.166.147.287.262.536.511.383.384.543.524.735.633.204.127.421.185.734.185.281 0 .588-.109.945-.358.44-.306.92-.81 1.418-1.507L24 18.042c-.67.938-1.36 1.666-2.088 2.17-.805.57-1.667.87-2.555.87-.824 0-1.539-.199-2.178-.582a5.072 5.072 0 0 1-.734-.543c-.166-.146-.281-.261-.537-.51v-.007c-.376-.377-.536-.517-.728-.626-.204-.127-.415-.185-.728-.185s-.523.058-.728.185c-.191.109-.35.25-.728.626v.007c-.255.249-.37.364-.536.51-.243.211-.48.39-.735.543-.638.383-1.354.581-2.177.581-.824 0-1.54-.198-2.178-.58a5.593 5.593 0 0 1-.735-.544 11.126 11.126 0 0 1-.53-.51c-.383-.384-.536-.524-.728-.633-.204-.127-.421-.185-.734-.185-.281 0-.588.109-.945.358-.44.313-.92.81-1.418 1.507zM3.417 2.919h2.33c.965 0 1.75.779 1.75 1.75v6.795h4.554v2.452H6.795c-.964 0-1.75-.786-1.75-1.75V5.371H3.417Zm17.818 1.75v1.82h-2.453V5.37h-1.928v8.545H14.4V5.37h-1.928v1.118H10.02v-1.82c0-.971.786-1.75 1.75-1.75h7.708c.971 0 1.757.779 1.757 1.75zm0 0" }) + ] + } + ); +}); + +exports.default = SiLanguagetool; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.d.ts new file mode 100644 index 000000000..6a1244ee3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#45A1FC"; +declare const SiLanguagetool: IconType; +export { SiLanguagetool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.mjs new file mode 100644 index 000000000..bd2af48a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLanguagetool.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#45A1FC"; +const SiLanguagetool = React.forwardRef(function SiLanguagetool2({ title = "LanguageTool", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.28 20.494 0 18.865c.67-.938 1.36-1.66 2.088-2.171.805-.568 1.667-.869 2.555-.869.824 0 1.539.198 2.178.582.261.16.504.344.734.549.16.14.281.255.53.504.383.384.537.524.728.633.205.127.422.185.735.185s.53-.058.734-.185c.192-.109.351-.25.734-.633.25-.249.37-.364.537-.51a4.69 4.69 0 0 1 .728-.543c.639-.384 1.348-.582 2.171-.582.824 0 1.533.198 2.172.582.255.153.491.332.728.542.166.147.287.262.536.511.383.384.543.524.735.633.204.127.421.185.734.185.281 0 .588-.109.945-.358.44-.306.92-.81 1.418-1.507L24 18.042c-.67.938-1.36 1.666-2.088 2.17-.805.57-1.667.87-2.555.87-.824 0-1.539-.199-2.178-.582a5.072 5.072 0 0 1-.734-.543c-.166-.146-.281-.261-.537-.51v-.007c-.376-.377-.536-.517-.728-.626-.204-.127-.415-.185-.728-.185s-.523.058-.728.185c-.191.109-.35.25-.728.626v.007c-.255.249-.37.364-.536.51-.243.211-.48.39-.735.543-.638.383-1.354.581-2.177.581-.824 0-1.54-.198-2.178-.58a5.593 5.593 0 0 1-.735-.544 11.126 11.126 0 0 1-.53-.51c-.383-.384-.536-.524-.728-.633-.204-.127-.421-.185-.734-.185-.281 0-.588.109-.945.358-.44.313-.92.81-1.418 1.507zM3.417 2.919h2.33c.965 0 1.75.779 1.75 1.75v6.795h4.554v2.452H6.795c-.964 0-1.75-.786-1.75-1.75V5.371H3.417Zm17.818 1.75v1.82h-2.453V5.37h-1.928v8.545H14.4V5.37h-1.928v1.118H10.02v-1.82c0-.971.786-1.75 1.75-1.75h7.708c.971 0 1.757.779 1.757 1.75zm0 0" }) + ] + } + ); +}); + +export { SiLanguagetool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.cjs new file mode 100644 index 000000000..a44bef81a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B82F6"; +const SiLapce = React__namespace.forwardRef(function SiLapce2({ title = "Lapce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.802 1.267 1.608 0v24L8 20.31v-2.535L3.802 20.2Zm4.208 13.9V6.231L18.003 12l-7.798 4.503v2.533L22.392 12 5.806 2.424V16.44Zm5.598-3.231L10.205 9.97v3.93Z" }) + ] + } + ); +}); + +exports.default = SiLapce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.d.ts new file mode 100644 index 000000000..bb12eeb47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B82F6"; +declare const SiLapce: IconType; +export { SiLapce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.mjs new file mode 100644 index 000000000..fc77d5321 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLapce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B82F6"; +const SiLapce = React.forwardRef(function SiLapce2({ title = "Lapce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.802 1.267 1.608 0v24L8 20.31v-2.535L3.802 20.2Zm4.208 13.9V6.231L18.003 12l-7.798 4.503v2.533L22.392 12 5.806 2.424V16.44Zm5.598-3.231L10.205 9.97v3.93Z" }) + ] + } + ); +}); + +export { SiLapce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.cjs new file mode 100644 index 000000000..a8e50753c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E83CD"; +const SiLaragon = React__namespace.forwardRef(function SiLaragon2({ title = "Laragon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.843.979c-2.12-.096-3.477 1.439-3.477 1.439C2.52 2.5.791 8.429.75 8.552l-.248.74c-2.268 8.78 3.889 12.22 3.889 12.22.188.091.375-.066.375-.066.5-.31.252-.53.252-.53-1.43-1.742-1.595-5.864-1.596-5.899-.64-.532-1.248-1.318-1.111-2.342 0 0 .084-.51.584-.197 0 0 1.186.644 2.123.83-.001 0 .476.043.5.177 0 0 .374 1.752-.78 2.32.745.437 1.465.85 1.465.85.124 1.263.81 5.32.81 5.32.064.797.906.954.906.954.483.172 4.12.062 4.12.062 1.014-.044 1.062-.953 1.062-.953.015-.545.03-3.62.03-3.62.096-.575.766-.5.766-.5.703-.03.688.454.688.454-.017.515.045 3.496.045 3.496.03.858.781 1.125.781 1.125.488 0 .828-.004 1.365 0 .252.002 1.473 0 1.473 0 .55-.307 1.377-.969 1.377-.969 5.868-4.91 4.135-11.9 4.135-11.9C22.93 5.88 17.792 5.1 17.792 5.1c-.582-1.811-1.643-2.682-1.643-2.682-1.222-1.015-2.343-1.396-3.306-1.44zm5.006 4.273s1.845 3.08-1.727 7.86c.001.001-2.94 4.116-8.232 1.223 1.084.523 5.536 2.312 8.375-1.98 0 0 2.632-3.437 1.584-7.103zM6.703 8.868s1.296.036 1.341 1.82c0 0-1.02-2.668-3.271-.2 0 0 .404-1.729 1.93-1.62z" }) + ] + } + ); +}); + +exports.default = SiLaragon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.d.ts new file mode 100644 index 000000000..c809bafeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E83CD"; +declare const SiLaragon: IconType; +export { SiLaragon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.mjs new file mode 100644 index 000000000..8da0ad525 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaragon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E83CD"; +const SiLaragon = React.forwardRef(function SiLaragon2({ title = "Laragon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.843.979c-2.12-.096-3.477 1.439-3.477 1.439C2.52 2.5.791 8.429.75 8.552l-.248.74c-2.268 8.78 3.889 12.22 3.889 12.22.188.091.375-.066.375-.066.5-.31.252-.53.252-.53-1.43-1.742-1.595-5.864-1.596-5.899-.64-.532-1.248-1.318-1.111-2.342 0 0 .084-.51.584-.197 0 0 1.186.644 2.123.83-.001 0 .476.043.5.177 0 0 .374 1.752-.78 2.32.745.437 1.465.85 1.465.85.124 1.263.81 5.32.81 5.32.064.797.906.954.906.954.483.172 4.12.062 4.12.062 1.014-.044 1.062-.953 1.062-.953.015-.545.03-3.62.03-3.62.096-.575.766-.5.766-.5.703-.03.688.454.688.454-.017.515.045 3.496.045 3.496.03.858.781 1.125.781 1.125.488 0 .828-.004 1.365 0 .252.002 1.473 0 1.473 0 .55-.307 1.377-.969 1.377-.969 5.868-4.91 4.135-11.9 4.135-11.9C22.93 5.88 17.792 5.1 17.792 5.1c-.582-1.811-1.643-2.682-1.643-2.682-1.222-1.015-2.343-1.396-3.306-1.44zm5.006 4.273s1.845 3.08-1.727 7.86c.001.001-2.94 4.116-8.232 1.223 1.084.523 5.536 2.312 8.375-1.98 0 0 2.632-3.437 1.584-7.103zM6.703 8.868s1.296.036 1.341 1.82c0 0-1.02-2.668-3.271-.2 0 0 .404-1.729 1.93-1.62z" }) + ] + } + ); +}); + +export { SiLaragon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.cjs new file mode 100644 index 000000000..a8ef767b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF2D20"; +const SiLaravel = React__namespace.forwardRef(function SiLaravel2({ title = "Laravel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.642 5.43a.364.364 0 01.014.1v5.149c0 .135-.073.26-.189.326l-4.323 2.49v4.934a.378.378 0 01-.188.326L9.93 23.949a.316.316 0 01-.066.027c-.008.002-.016.008-.024.01a.348.348 0 01-.192 0c-.011-.002-.02-.008-.03-.012-.02-.008-.042-.014-.062-.025L.533 18.755a.376.376 0 01-.189-.326V2.974c0-.033.005-.066.014-.098.003-.012.01-.02.014-.032a.369.369 0 01.023-.058c.004-.013.015-.022.023-.033l.033-.045c.012-.01.025-.018.037-.027.014-.012.027-.024.041-.034H.53L5.043.05a.375.375 0 01.375 0L9.93 2.647h.002c.015.01.027.021.04.033l.038.027c.013.014.02.03.033.045.008.011.02.021.025.033.01.02.017.038.024.058.003.011.01.021.013.032.01.031.014.064.014.098v9.652l3.76-2.164V5.527c0-.033.004-.066.013-.098.003-.01.01-.02.013-.032a.487.487 0 01.024-.059c.007-.012.018-.02.025-.033.012-.015.021-.03.033-.043.012-.012.025-.02.037-.028.014-.01.026-.023.041-.032h.001l4.513-2.598a.375.375 0 01.375 0l4.513 2.598c.016.01.027.021.042.031.012.01.025.018.036.028.013.014.022.03.034.044.008.012.019.021.024.033.011.02.018.04.024.06.006.01.012.021.015.032zm-.74 5.032V6.179l-1.578.908-2.182 1.256v4.283zm-4.51 7.75v-4.287l-2.147 1.225-6.126 3.498v4.325zM1.093 3.624v14.588l8.273 4.761v-4.325l-4.322-2.445-.002-.003H5.04c-.014-.01-.025-.021-.04-.031-.011-.01-.024-.018-.035-.027l-.001-.002c-.013-.012-.021-.025-.031-.04-.01-.011-.021-.022-.028-.036h-.002c-.008-.014-.013-.031-.02-.047-.006-.016-.014-.027-.018-.043a.49.49 0 01-.008-.057c-.002-.014-.006-.027-.006-.041V5.789l-2.18-1.257zM5.23.81L1.47 2.974l3.76 2.164 3.758-2.164zm1.956 13.505l2.182-1.256V3.624l-1.58.91-2.182 1.255v9.435zm11.581-10.95l-3.76 2.163 3.76 2.163 3.759-2.164zm-.376 4.978L16.21 7.087 14.63 6.18v4.283l2.182 1.256 1.58.908zm-8.65 9.654l5.514-3.148 2.756-1.572-3.757-2.163-4.323 2.489-3.941 2.27z" }) + ] + } + ); +}); + +exports.default = SiLaravel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.d.ts new file mode 100644 index 000000000..6220770cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF2D20"; +declare const SiLaravel: IconType; +export { SiLaravel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.mjs new file mode 100644 index 000000000..b2e4181e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF2D20"; +const SiLaravel = React.forwardRef(function SiLaravel2({ title = "Laravel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.642 5.43a.364.364 0 01.014.1v5.149c0 .135-.073.26-.189.326l-4.323 2.49v4.934a.378.378 0 01-.188.326L9.93 23.949a.316.316 0 01-.066.027c-.008.002-.016.008-.024.01a.348.348 0 01-.192 0c-.011-.002-.02-.008-.03-.012-.02-.008-.042-.014-.062-.025L.533 18.755a.376.376 0 01-.189-.326V2.974c0-.033.005-.066.014-.098.003-.012.01-.02.014-.032a.369.369 0 01.023-.058c.004-.013.015-.022.023-.033l.033-.045c.012-.01.025-.018.037-.027.014-.012.027-.024.041-.034H.53L5.043.05a.375.375 0 01.375 0L9.93 2.647h.002c.015.01.027.021.04.033l.038.027c.013.014.02.03.033.045.008.011.02.021.025.033.01.02.017.038.024.058.003.011.01.021.013.032.01.031.014.064.014.098v9.652l3.76-2.164V5.527c0-.033.004-.066.013-.098.003-.01.01-.02.013-.032a.487.487 0 01.024-.059c.007-.012.018-.02.025-.033.012-.015.021-.03.033-.043.012-.012.025-.02.037-.028.014-.01.026-.023.041-.032h.001l4.513-2.598a.375.375 0 01.375 0l4.513 2.598c.016.01.027.021.042.031.012.01.025.018.036.028.013.014.022.03.034.044.008.012.019.021.024.033.011.02.018.04.024.06.006.01.012.021.015.032zm-.74 5.032V6.179l-1.578.908-2.182 1.256v4.283zm-4.51 7.75v-4.287l-2.147 1.225-6.126 3.498v4.325zM1.093 3.624v14.588l8.273 4.761v-4.325l-4.322-2.445-.002-.003H5.04c-.014-.01-.025-.021-.04-.031-.011-.01-.024-.018-.035-.027l-.001-.002c-.013-.012-.021-.025-.031-.04-.01-.011-.021-.022-.028-.036h-.002c-.008-.014-.013-.031-.02-.047-.006-.016-.014-.027-.018-.043a.49.49 0 01-.008-.057c-.002-.014-.006-.027-.006-.041V5.789l-2.18-1.257zM5.23.81L1.47 2.974l3.76 2.164 3.758-2.164zm1.956 13.505l2.182-1.256V3.624l-1.58.91-2.182 1.255v9.435zm11.581-10.95l-3.76 2.163 3.76 2.163 3.759-2.164zm-.376 4.978L16.21 7.087 14.63 6.18v4.283l2.182 1.256 1.58.908zm-8.65 9.654l5.514-3.148 2.756-1.572-3.757-2.163-4.323 2.489-3.941 2.27z" }) + ] + } + ); +}); + +export { SiLaravel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.cjs new file mode 100644 index 000000000..84b77b661 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#405263"; +const SiLaravelhorizon = React__namespace.forwardRef(function SiLaravelhorizon2({ title = "Laravel Horizon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.486 3.516C15.8-1.171 8.202-1.172 3.516 3.513A11.963 11.963 0 0 0 0 11.998a11.975 11.975 0 0 0 4.2 9.13h.01a12 12 0 0 0 16.274-.642c4.687-4.685 4.688-12.283.002-16.97zM16 13.998c-4 0-4-4-8-4-2.5 0-3.44 1.565-4.765 2.74H3.23a8.801 8.801 0 0 1 17.54-1.48c-1.33 1.175-2.27 2.74-4.77 2.74z" }) + ] + } + ); +}); + +exports.default = SiLaravelhorizon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.d.ts new file mode 100644 index 000000000..fd01a5cce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#405263"; +declare const SiLaravelhorizon: IconType; +export { SiLaravelhorizon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.mjs new file mode 100644 index 000000000..23363973f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelhorizon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#405263"; +const SiLaravelhorizon = React.forwardRef(function SiLaravelhorizon2({ title = "Laravel Horizon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.486 3.516C15.8-1.171 8.202-1.172 3.516 3.513A11.963 11.963 0 0 0 0 11.998a11.975 11.975 0 0 0 4.2 9.13h.01a12 12 0 0 0 16.274-.642c4.687-4.685 4.688-12.283.002-16.97zM16 13.998c-4 0-4-4-8-4-2.5 0-3.44 1.565-4.765 2.74H3.23a8.801 8.801 0 0 1 17.54-1.48c-1.33 1.175-2.27 2.74-4.77 2.74z" }) + ] + } + ); +}); + +export { SiLaravelhorizon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.cjs new file mode 100644 index 000000000..9ecfe907d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#252D37"; +const SiLaravelnova = React__namespace.forwardRef(function SiLaravelnova2({ title = "Laravel Nova", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.333 4.319C16.56.386 9.453.632 4.973 5.057a7.571 7.571 0 0 0 0 10.8c3.018 2.982 7.912 2.982 10.931 0a3.245 3.245 0 0 0 0-4.628 3.342 3.342 0 0 0-4.685 0 1.114 1.114 0 0 1-1.561 0 1.082 1.082 0 0 1 0-1.543 5.57 5.57 0 0 1 7.808 0 5.408 5.408 0 0 1 0 7.714c-3.881 3.834-10.174 3.834-14.055 0a9.734 9.734 0 0 1-.015-13.87C5.596 1.35 8.638 0 12 0c3.75 0 7.105 1.68 9.333 4.319zm-.714 16.136A12.184 12.184 0 0 1 12 24a12.18 12.18 0 0 1-9.333-4.319c4.772 3.933 11.88 3.687 16.36-.738a7.571 7.571 0 0 0 0-10.8c-3.018-2.982-7.912-2.982-10.931 0a3.245 3.245 0 0 0 0 4.628 3.342 3.342 0 0 0 4.685 0 1.114 1.114 0 0 1 1.561 0 1.082 1.082 0 0 1 0 1.543 5.57 5.57 0 0 1-7.808 0 5.408 5.408 0 0 1 0-7.714c3.881-3.834 10.174-3.834 14.055 0a9.734 9.734 0 0 1 .03 13.855z" }) + ] + } + ); +}); + +exports.default = SiLaravelnova; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.d.ts new file mode 100644 index 000000000..2817a7446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#252D37"; +declare const SiLaravelnova: IconType; +export { SiLaravelnova as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.mjs new file mode 100644 index 000000000..908ba3532 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaravelnova.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#252D37"; +const SiLaravelnova = React.forwardRef(function SiLaravelnova2({ title = "Laravel Nova", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.333 4.319C16.56.386 9.453.632 4.973 5.057a7.571 7.571 0 0 0 0 10.8c3.018 2.982 7.912 2.982 10.931 0a3.245 3.245 0 0 0 0-4.628 3.342 3.342 0 0 0-4.685 0 1.114 1.114 0 0 1-1.561 0 1.082 1.082 0 0 1 0-1.543 5.57 5.57 0 0 1 7.808 0 5.408 5.408 0 0 1 0 7.714c-3.881 3.834-10.174 3.834-14.055 0a9.734 9.734 0 0 1-.015-13.87C5.596 1.35 8.638 0 12 0c3.75 0 7.105 1.68 9.333 4.319zm-.714 16.136A12.184 12.184 0 0 1 12 24a12.18 12.18 0 0 1-9.333-4.319c4.772 3.933 11.88 3.687 16.36-.738a7.571 7.571 0 0 0 0-10.8c-3.018-2.982-7.912-2.982-10.931 0a3.245 3.245 0 0 0 0 4.628 3.342 3.342 0 0 0 4.685 0 1.114 1.114 0 0 1 1.561 0 1.082 1.082 0 0 1 0 1.543 5.57 5.57 0 0 1-7.808 0 5.408 5.408 0 0 1 0-7.714c3.881-3.834 10.174-3.834 14.055 0a9.734 9.734 0 0 1 .03 13.855z" }) + ] + } + ); +}); + +export { SiLaravelnova as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.cjs new file mode 100644 index 000000000..453462942 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D51007"; +const SiLastdotfm = React__namespace.forwardRef(function SiLastdotfm2({ title = "Last.fm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.584 17.21l-.88-2.392s-1.43 1.594-3.573 1.594c-1.897 0-3.244-1.649-3.244-4.288 0-3.382 1.704-4.591 3.381-4.591 2.42 0 3.189 1.567 3.849 3.574l.88 2.749c.88 2.666 2.529 4.81 7.285 4.81 3.409 0 5.718-1.044 5.718-3.793 0-2.227-1.265-3.381-3.63-3.931l-1.758-.385c-1.21-.275-1.567-.77-1.567-1.595 0-.934.742-1.484 1.952-1.484 1.32 0 2.034.495 2.144 1.677l2.749-.33c-.22-2.474-1.924-3.492-4.729-3.492-2.474 0-4.893.935-4.893 3.932 0 1.87.907 3.051 3.189 3.601l1.87.44c1.402.33 1.869.907 1.869 1.704 0 1.017-.99 1.43-2.86 1.43-2.776 0-3.93-1.457-4.59-3.464l-.907-2.75c-1.155-3.573-2.997-4.893-6.653-4.893C2.144 5.333 0 7.89 0 12.233c0 4.18 2.144 6.434 5.993 6.434 3.106 0 4.591-1.457 4.591-1.457z" }) + ] + } + ); +}); + +exports.default = SiLastdotfm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.d.ts new file mode 100644 index 000000000..59abd4c89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D51007"; +declare const SiLastdotfm: IconType; +export { SiLastdotfm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.mjs new file mode 100644 index 000000000..08ad26470 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLastdotfm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D51007"; +const SiLastdotfm = React.forwardRef(function SiLastdotfm2({ title = "Last.fm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.584 17.21l-.88-2.392s-1.43 1.594-3.573 1.594c-1.897 0-3.244-1.649-3.244-4.288 0-3.382 1.704-4.591 3.381-4.591 2.42 0 3.189 1.567 3.849 3.574l.88 2.749c.88 2.666 2.529 4.81 7.285 4.81 3.409 0 5.718-1.044 5.718-3.793 0-2.227-1.265-3.381-3.63-3.931l-1.758-.385c-1.21-.275-1.567-.77-1.567-1.595 0-.934.742-1.484 1.952-1.484 1.32 0 2.034.495 2.144 1.677l2.749-.33c-.22-2.474-1.924-3.492-4.729-3.492-2.474 0-4.893.935-4.893 3.932 0 1.87.907 3.051 3.189 3.601l1.87.44c1.402.33 1.869.907 1.869 1.704 0 1.017-.99 1.43-2.86 1.43-2.776 0-3.93-1.457-4.59-3.464l-.907-2.75c-1.155-3.573-2.997-4.893-6.653-4.893C2.144 5.333 0 7.89 0 12.233c0 4.18 2.144 6.434 5.993 6.434 3.106 0 4.591-1.457 4.591-1.457z" }) + ] + } + ); +}); + +export { SiLastdotfm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.cjs new file mode 100644 index 000000000..c2ad238ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D32D27"; +const SiLastpass = React__namespace.forwardRef(function SiLastpass2({ title = "LastPass", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.629,6.857c0-0.379,0.304-0.686,0.686-0.686C23.693,6.171,24,6.483,24,6.857 v10.286c0,0.379-0.304,0.686-0.686,0.686c-0.379,0-0.686-0.312-0.686-0.686V6.857z M2.057,10.286c1.136,0,2.057,0.921,2.057,2.057 S3.193,14.4,2.057,14.4S0,13.479,0,12.343S0.921,10.286,2.057,10.286z M9.6,10.286c1.136,0,2.057,0.921,2.057,2.057 S10.736,14.4,9.6,14.4s-2.057-0.921-2.057-2.057S8.464,10.286,9.6,10.286z M17.143,10.286c1.136,0,2.057,0.921,2.057,2.057 S18.279,14.4,17.143,14.4s-2.057-0.921-2.057-2.057S16.007,10.286,17.143,10.286z" }) + ] + } + ); +}); + +exports.default = SiLastpass; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.d.ts new file mode 100644 index 000000000..fef55a635 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D32D27"; +declare const SiLastpass: IconType; +export { SiLastpass as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.mjs new file mode 100644 index 000000000..e34cff74f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLastpass.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D32D27"; +const SiLastpass = React.forwardRef(function SiLastpass2({ title = "LastPass", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.629,6.857c0-0.379,0.304-0.686,0.686-0.686C23.693,6.171,24,6.483,24,6.857 v10.286c0,0.379-0.304,0.686-0.686,0.686c-0.379,0-0.686-0.312-0.686-0.686V6.857z M2.057,10.286c1.136,0,2.057,0.921,2.057,2.057 S3.193,14.4,2.057,14.4S0,13.479,0,12.343S0.921,10.286,2.057,10.286z M9.6,10.286c1.136,0,2.057,0.921,2.057,2.057 S10.736,14.4,9.6,14.4s-2.057-0.921-2.057-2.057S8.464,10.286,9.6,10.286z M17.143,10.286c1.136,0,2.057,0.921,2.057,2.057 S18.279,14.4,17.143,14.4s-2.057-0.921-2.057-2.057S16.007,10.286,17.143,10.286z" }) + ] + } + ); +}); + +export { SiLastpass as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.cjs new file mode 100644 index 000000000..f9d371f54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008080"; +const SiLatex = React__namespace.forwardRef(function SiLatex2({ title = "LaTeX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.176 2.814c.233.42.476.78.73 1.09.247-.013 1.132.456 1.312.523.508.282 1.063.63 1.567.966.505.337.96.662 1.272.9.156.12.278.218.352.286a.483.483 0 01.078.082.08.08 0 01.01.021.06.06 0 01-.004.047.057.057 0 01-.04.03.077.077 0 01-.028 0c-.057 0-.203-.163-.497-.415a23.474 23.474 0 00-2.759-1.827c-.504-.28-.956-.542-1.264-.613a2.322 2.322 0 00-.36-.025 2.706 2.706 0 00-.788.133c.494.414.91.716 1.28.949-.57-.182-1.182-.21-1.902.133.526.329.967.567 1.354.745 1.103.156 2.258.696 3.224 1.309.483.307.904.615 1.219.867.157.125.29.237.39.328.098.091.174.154.197.21.03.073-.019.104-.084.058-.032-.022-.088-.102-.184-.191a7.35 7.35 0 00-.384-.327c-.312-.25-.729-.552-1.209-.857-.893-.562-2.232-1.013-3.173-1.397-.602-.11-1.225-.06-1.906.39.449.2.837.349 1.182.463.812 0 1.892.365 2.935.922 1.042.556 2.04 1.214 2.523 1.774.066.077-.016.126-.074.07-.52-.495-1.463-1.204-2.498-1.756-.639-.337-2.153-1.01-2.886-1.01l.004.002c-.567.02-1.13.195-1.679.716.477.118.885.196 1.244.249-.44.088-.87.3-1.289.722.324.07.616.122.882.162-.328.159-.639.404-.923.78.373.03.703.042 1 .044-.36.166-.696.43-.996.85.533.027.98.025 1.364.003-.422.172-.812.464-1.145.968.662.01 1.188-.022 1.628-.076l-.006.002c.99-.073 2.297.127 2.962.847.052.057-.024.118-.072.074-.648-.58-1.493-.827-2.89-.921h-.002c-.543.149-1.046.446-1.46 1.074.536.008.982-.013 1.366-.05-.469.257-.873.644-1.139 1.306.483-.092.888-.19 1.237-.292-.363.265-.668.636-.873 1.194.324-.072.612-.146.871-.221a2.519 2.519 0 00-.513 1.095c.352-.13.655-.254.926-.377-.257.3-.453.681-.55 1.19.495-.199.899-.388 1.238-.568-.31.333-.543.76-.635 1.356a11.816 11.816 0 001.442-.744c-.433.362-.764.843-.879 1.587.788-.348 1.339-.663 1.767-.955-.184.372-.282.806-.235 1.348.762-.584 1.243-1.056 1.602-1.473-.024.269-.003.56.077.884.546-.939 1.089-1.212 1.65-1.526-.895.451-.762.79-.762 1.184.683-.72 1.635-1.482 1.927-1.96-.39.585-.547 1.14-.65 1.63-1.993 1.054-3.207 1.329-4.568 1.75.528.194 1.093.383.859.652l-.624.622c.399-.124.805-.3 1.158-.059-.035.327-.447.492-.8.683.621-.224.756-.172.92-.12.081.393-.203.603-.388.862 1.565-1.19 3.606-2.13 5.044-2.522 2.022-.681 4.63-1.389 5.339-3.115l.712-2.847-.004.004c-.111-.034-.246-.063-.35-.133a.651.651 0 01-.235-.297c-.252.065-.44.03-.56-.088-.117-.117-.167-.296-.203-.491-.203.041-.362.016-.467-.077-.116-.101-.17-.26-.198-.444l-.008-.039.037-.015a.842.842 0 00.302-.194.257.257 0 00.07-.225l-.006-.037.03-.016c.163-.093.345-.169.428-.28a.274.274 0 00.053-.21.88.88 0 00-.155-.357l-.027-.04.04-.027c.118-.09.244-.179.308-.26.032-.04.048-.076.047-.11 0-.033-.015-.07-.064-.117l-.098-.094.135.006c.213.01.395-.007.538-.053a.504.504 0 00.274-.197c-.007-.033-.02-.063-.02-.098a.484.484 0 01.967 0c0 .044-.015.084-.026.125.177.014.347.01.507-.06l.002.001.035-.013c.236-.085.334.045.72-.456-1.69-2.19-4.157-.635-4.977 1.622-.21.576-1.405.578-1.751 0-1.37-2.95-5.53-6.068-9.07-7.218zm.86 2.145c.906.293 1.913.782 2.77 1.328.43.273.813.543 1.114.779.301.236.566.473.62.575.054.102 0 .14-.082.06-.081-.078-.303-.32-.6-.553-.298-.234-.68-.505-1.106-.777-.775-.49-1.982-.958-2.716-1.412zm-1.7 2.7c1.116.014 2.35.447 3.434.997.541.275 1.023.567 1.395.83.372.263.672.524.734.657.061.134-.02.13-.087.055a4.401 4.401 0 00-.704-.626 11.47 11.47 0 00-1.385-.826C3.76 8.264 2.439 7.82 1.336 7.66zm14.916.772a.381.381 0 100 .762.381.381 0 000-.762zM1.7 8.478c.822.072 1.72.368 2.534.75 1.086.509 2.035 1.158 2.434 1.667.035.045-.014.131-.08.062-.428-.44-1.322-1.131-2.397-1.635-.913-.421-2.282-.87-3.262-.78.251-.03.497-.088.771-.064zm16.339.01c-.366.475-.53.423-.703.464.094.43.35.586.585.77l-.06.012c2.315-.447 4.186-.286 6.139-.236l-5.961-1.01zm-.178 1.246h-.002l-.004.016.006-.016zm-.625-.757c-.183.074-.373.076-.563.059a.477.477 0 01-.42.26.483.483 0 01-.435-.278.609.609 0 01-.274.188c-.139.045-.308.057-.493.055.02.035.054.068.055.104a.273.273 0 01-.069.174c-.073.092-.189.17-.295.248.087.141.137.26.149.362a.39.39 0 01-.07.284c-.106.14-.288.21-.439.293a.374.374 0 01-.09.268.89.89 0 01-.297.198c.027.156.074.283.154.354.086.076.211.103.425.047l.055-.014.01.055c.033.207.088.385.187.483.1.099.244.135.503.055l.049-.015.016.048c.05.142.12.223.209.282.087.06.247.112.358.147.798-.869 1.525-1.772 1.884-2.86-.225-.177-.506-.338-.609-.797zm-16.23.386c1.165-.08 2.283.196 3.202.626.92.43 1.658.939 1.974 1.307.075.087-.019.12-.072.072a8.187 8.187 0 00-1.947-1.29c-.904-.414-2.193-.644-3.157-.715zm.864.802c.61.02 1.24.155 1.806.352.756.262 1.421.614 1.747.98.045.05-.007.127-.074.069-.349-.304-.961-.693-1.706-.951-.574-.195-1.613-.369-2.268-.397.197-.022.292-.06.495-.053zm1.05 1.788c.423.034.886.133 1.341.407.043.026.049.136-.049.09-.856-.402-1.326-.49-2.457-.31.386-.128.74-.221 1.164-.187zm-.04.788c.4-.035.784-.002 1.297.204.044.018.08.126-.033.094-.857-.243-1.167-.328-2.287.104.28-.229.622-.366 1.023-.402zm1.285.687c.317-.023.635-.026.934.006.052.006.055.105-.006.102a7.87 7.87 0 00-1.837.115c-.243.046-.423.043-1.405.458.287-.233.794-.452 1.385-.56a8.91 8.91 0 01.93-.12zm1.28.49c.099.003.062.104.006.103-.728-.01-1.304.132-1.875.295a9.78 9.78 0 00-1.318.525c.283-.23.713-.457 1.291-.622.579-.166 1.248-.326 1.896-.302zm.528.398c.036-.005.105.084.018.1-.73.137-1.244.267-1.794.454-.216.074-.58.207-1.243.587.26-.269.656-.492 1.213-.68.558-.19 1.196-.37 1.806-.46zm.311.507c.075-.012.097.087.02.102-1.217.241-1.76.556-2.54 1.144.504-.523 1.297-1.051 2.52-1.246zm.595.448c.087-.013.11.087.021.1-.872.13-1.477.553-2.255 1.33.295-.493 1.004-1.24 2.234-1.43zm.372.39c.046-.006.114.073.023.1a2.634 2.634 0 00-.669.3c-.182.118-.3.2-.597.507.111-.245.296-.434.542-.59.247-.157.509-.293.7-.317z" }) + ] + } + ); +}); + +exports.default = SiLatex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.d.ts new file mode 100644 index 000000000..cd81c6507 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008080"; +declare const SiLatex: IconType; +export { SiLatex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.mjs new file mode 100644 index 000000000..97cb48027 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLatex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008080"; +const SiLatex = React.forwardRef(function SiLatex2({ title = "LaTeX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.176 2.814c.233.42.476.78.73 1.09.247-.013 1.132.456 1.312.523.508.282 1.063.63 1.567.966.505.337.96.662 1.272.9.156.12.278.218.352.286a.483.483 0 01.078.082.08.08 0 01.01.021.06.06 0 01-.004.047.057.057 0 01-.04.03.077.077 0 01-.028 0c-.057 0-.203-.163-.497-.415a23.474 23.474 0 00-2.759-1.827c-.504-.28-.956-.542-1.264-.613a2.322 2.322 0 00-.36-.025 2.706 2.706 0 00-.788.133c.494.414.91.716 1.28.949-.57-.182-1.182-.21-1.902.133.526.329.967.567 1.354.745 1.103.156 2.258.696 3.224 1.309.483.307.904.615 1.219.867.157.125.29.237.39.328.098.091.174.154.197.21.03.073-.019.104-.084.058-.032-.022-.088-.102-.184-.191a7.35 7.35 0 00-.384-.327c-.312-.25-.729-.552-1.209-.857-.893-.562-2.232-1.013-3.173-1.397-.602-.11-1.225-.06-1.906.39.449.2.837.349 1.182.463.812 0 1.892.365 2.935.922 1.042.556 2.04 1.214 2.523 1.774.066.077-.016.126-.074.07-.52-.495-1.463-1.204-2.498-1.756-.639-.337-2.153-1.01-2.886-1.01l.004.002c-.567.02-1.13.195-1.679.716.477.118.885.196 1.244.249-.44.088-.87.3-1.289.722.324.07.616.122.882.162-.328.159-.639.404-.923.78.373.03.703.042 1 .044-.36.166-.696.43-.996.85.533.027.98.025 1.364.003-.422.172-.812.464-1.145.968.662.01 1.188-.022 1.628-.076l-.006.002c.99-.073 2.297.127 2.962.847.052.057-.024.118-.072.074-.648-.58-1.493-.827-2.89-.921h-.002c-.543.149-1.046.446-1.46 1.074.536.008.982-.013 1.366-.05-.469.257-.873.644-1.139 1.306.483-.092.888-.19 1.237-.292-.363.265-.668.636-.873 1.194.324-.072.612-.146.871-.221a2.519 2.519 0 00-.513 1.095c.352-.13.655-.254.926-.377-.257.3-.453.681-.55 1.19.495-.199.899-.388 1.238-.568-.31.333-.543.76-.635 1.356a11.816 11.816 0 001.442-.744c-.433.362-.764.843-.879 1.587.788-.348 1.339-.663 1.767-.955-.184.372-.282.806-.235 1.348.762-.584 1.243-1.056 1.602-1.473-.024.269-.003.56.077.884.546-.939 1.089-1.212 1.65-1.526-.895.451-.762.79-.762 1.184.683-.72 1.635-1.482 1.927-1.96-.39.585-.547 1.14-.65 1.63-1.993 1.054-3.207 1.329-4.568 1.75.528.194 1.093.383.859.652l-.624.622c.399-.124.805-.3 1.158-.059-.035.327-.447.492-.8.683.621-.224.756-.172.92-.12.081.393-.203.603-.388.862 1.565-1.19 3.606-2.13 5.044-2.522 2.022-.681 4.63-1.389 5.339-3.115l.712-2.847-.004.004c-.111-.034-.246-.063-.35-.133a.651.651 0 01-.235-.297c-.252.065-.44.03-.56-.088-.117-.117-.167-.296-.203-.491-.203.041-.362.016-.467-.077-.116-.101-.17-.26-.198-.444l-.008-.039.037-.015a.842.842 0 00.302-.194.257.257 0 00.07-.225l-.006-.037.03-.016c.163-.093.345-.169.428-.28a.274.274 0 00.053-.21.88.88 0 00-.155-.357l-.027-.04.04-.027c.118-.09.244-.179.308-.26.032-.04.048-.076.047-.11 0-.033-.015-.07-.064-.117l-.098-.094.135.006c.213.01.395-.007.538-.053a.504.504 0 00.274-.197c-.007-.033-.02-.063-.02-.098a.484.484 0 01.967 0c0 .044-.015.084-.026.125.177.014.347.01.507-.06l.002.001.035-.013c.236-.085.334.045.72-.456-1.69-2.19-4.157-.635-4.977 1.622-.21.576-1.405.578-1.751 0-1.37-2.95-5.53-6.068-9.07-7.218zm.86 2.145c.906.293 1.913.782 2.77 1.328.43.273.813.543 1.114.779.301.236.566.473.62.575.054.102 0 .14-.082.06-.081-.078-.303-.32-.6-.553-.298-.234-.68-.505-1.106-.777-.775-.49-1.982-.958-2.716-1.412zm-1.7 2.7c1.116.014 2.35.447 3.434.997.541.275 1.023.567 1.395.83.372.263.672.524.734.657.061.134-.02.13-.087.055a4.401 4.401 0 00-.704-.626 11.47 11.47 0 00-1.385-.826C3.76 8.264 2.439 7.82 1.336 7.66zm14.916.772a.381.381 0 100 .762.381.381 0 000-.762zM1.7 8.478c.822.072 1.72.368 2.534.75 1.086.509 2.035 1.158 2.434 1.667.035.045-.014.131-.08.062-.428-.44-1.322-1.131-2.397-1.635-.913-.421-2.282-.87-3.262-.78.251-.03.497-.088.771-.064zm16.339.01c-.366.475-.53.423-.703.464.094.43.35.586.585.77l-.06.012c2.315-.447 4.186-.286 6.139-.236l-5.961-1.01zm-.178 1.246h-.002l-.004.016.006-.016zm-.625-.757c-.183.074-.373.076-.563.059a.477.477 0 01-.42.26.483.483 0 01-.435-.278.609.609 0 01-.274.188c-.139.045-.308.057-.493.055.02.035.054.068.055.104a.273.273 0 01-.069.174c-.073.092-.189.17-.295.248.087.141.137.26.149.362a.39.39 0 01-.07.284c-.106.14-.288.21-.439.293a.374.374 0 01-.09.268.89.89 0 01-.297.198c.027.156.074.283.154.354.086.076.211.103.425.047l.055-.014.01.055c.033.207.088.385.187.483.1.099.244.135.503.055l.049-.015.016.048c.05.142.12.223.209.282.087.06.247.112.358.147.798-.869 1.525-1.772 1.884-2.86-.225-.177-.506-.338-.609-.797zm-16.23.386c1.165-.08 2.283.196 3.202.626.92.43 1.658.939 1.974 1.307.075.087-.019.12-.072.072a8.187 8.187 0 00-1.947-1.29c-.904-.414-2.193-.644-3.157-.715zm.864.802c.61.02 1.24.155 1.806.352.756.262 1.421.614 1.747.98.045.05-.007.127-.074.069-.349-.304-.961-.693-1.706-.951-.574-.195-1.613-.369-2.268-.397.197-.022.292-.06.495-.053zm1.05 1.788c.423.034.886.133 1.341.407.043.026.049.136-.049.09-.856-.402-1.326-.49-2.457-.31.386-.128.74-.221 1.164-.187zm-.04.788c.4-.035.784-.002 1.297.204.044.018.08.126-.033.094-.857-.243-1.167-.328-2.287.104.28-.229.622-.366 1.023-.402zm1.285.687c.317-.023.635-.026.934.006.052.006.055.105-.006.102a7.87 7.87 0 00-1.837.115c-.243.046-.423.043-1.405.458.287-.233.794-.452 1.385-.56a8.91 8.91 0 01.93-.12zm1.28.49c.099.003.062.104.006.103-.728-.01-1.304.132-1.875.295a9.78 9.78 0 00-1.318.525c.283-.23.713-.457 1.291-.622.579-.166 1.248-.326 1.896-.302zm.528.398c.036-.005.105.084.018.1-.73.137-1.244.267-1.794.454-.216.074-.58.207-1.243.587.26-.269.656-.492 1.213-.68.558-.19 1.196-.37 1.806-.46zm.311.507c.075-.012.097.087.02.102-1.217.241-1.76.556-2.54 1.144.504-.523 1.297-1.051 2.52-1.246zm.595.448c.087-.013.11.087.021.1-.872.13-1.477.553-2.255 1.33.295-.493 1.004-1.24 2.234-1.43zm.372.39c.046-.006.114.073.023.1a2.634 2.634 0 00-.669.3c-.182.118-.3.2-.597.507.111-.245.296-.434.542-.59.247-.157.509-.293.7-.317z" }) + ] + } + ); +}); + +export { SiLatex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.cjs new file mode 100644 index 000000000..b27547377 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E95420"; +const SiLaunchpad = React__namespace.forwardRef(function SiLaunchpad2({ title = "Launchpad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.518 7.088 2.68 5.351c.107-.158.175-.162.293-.106 2.556 1.476 4.848 1.685 7.212.662 2.35-1.019 3.763-2.82 4.445-5.659.072-.256.166-.254.231-.245l2.03.44c.343.086.33.18.322.25-.45 3.328-2.755 6.251-6.019 7.632-3.317 1.426-6.92 1.112-9.64-.84-.056-.048-.182-.177-.032-.397h-.003Zm10.115 16.798 2.081.114c.35.006.36-.087.369-.156.45-3.328-.999-6.758-3.779-8.953-2.82-2.256-6.378-2.91-9.519-1.749-.065.033-.222.123-.136.373l.659 1.984c.063.18.125.202.254.179 2.855-.744 5.12-.339 7.128 1.275 1.996 1.606 2.88 3.716 2.784 6.644.003.258.093.281.158.29l.001-.001Zm1.335-13.868a2.04 2.04 0 0 0-.28-.02c-.422 0-.82.132-1.146.38a1.907 1.907 0 0 0-.725 1.28c-.07.508.06 1.01.362 1.411.305.407.759.67 1.277.74a1.915 1.915 0 0 0 2.15-1.64 1.892 1.892 0 0 0-1.64-2.152l.002.001ZM23.36 6.525l-.966-1.85c-.137-.304-.247-.274-.36-.236-3.089 1.332-5.22 4.26-5.703 7.838-.483 3.58.797 6.973 3.426 9.075.059.052.117.07.182.065a.3.3 0 0 0 .2-.109l1.358-1.628c.125-.157.071-.238.006-.306-2.13-2.096-2.926-4.18-2.58-6.748.349-2.583 1.71-4.433 4.286-5.827.204-.123.17-.228.151-.276v.002Z" }) + ] + } + ); +}); + +exports.default = SiLaunchpad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.d.ts new file mode 100644 index 000000000..69d49f31a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E95420"; +declare const SiLaunchpad: IconType; +export { SiLaunchpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.mjs new file mode 100644 index 000000000..76cd73ef9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLaunchpad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E95420"; +const SiLaunchpad = React.forwardRef(function SiLaunchpad2({ title = "Launchpad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.518 7.088 2.68 5.351c.107-.158.175-.162.293-.106 2.556 1.476 4.848 1.685 7.212.662 2.35-1.019 3.763-2.82 4.445-5.659.072-.256.166-.254.231-.245l2.03.44c.343.086.33.18.322.25-.45 3.328-2.755 6.251-6.019 7.632-3.317 1.426-6.92 1.112-9.64-.84-.056-.048-.182-.177-.032-.397h-.003Zm10.115 16.798 2.081.114c.35.006.36-.087.369-.156.45-3.328-.999-6.758-3.779-8.953-2.82-2.256-6.378-2.91-9.519-1.749-.065.033-.222.123-.136.373l.659 1.984c.063.18.125.202.254.179 2.855-.744 5.12-.339 7.128 1.275 1.996 1.606 2.88 3.716 2.784 6.644.003.258.093.281.158.29l.001-.001Zm1.335-13.868a2.04 2.04 0 0 0-.28-.02c-.422 0-.82.132-1.146.38a1.907 1.907 0 0 0-.725 1.28c-.07.508.06 1.01.362 1.411.305.407.759.67 1.277.74a1.915 1.915 0 0 0 2.15-1.64 1.892 1.892 0 0 0-1.64-2.152l.002.001ZM23.36 6.525l-.966-1.85c-.137-.304-.247-.274-.36-.236-3.089 1.332-5.22 4.26-5.703 7.838-.483 3.58.797 6.973 3.426 9.075.059.052.117.07.182.065a.3.3 0 0 0 .2-.109l1.358-1.628c.125-.157.071-.238.006-.306-2.13-2.096-2.926-4.18-2.58-6.748.349-2.583 1.71-4.433 4.286-5.827.204-.123.17-.228.151-.276v.002Z" }) + ] + } + ); +}); + +export { SiLaunchpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.cjs new file mode 100644 index 000000000..7076426dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLazarus = React__namespace.forwardRef(function SiLazarus2({ title = "Lazarus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.457.447c0 .198.035.367.092.367.123 0 .51.715.592 1.092.053.288.053.288-.45.398-1.225.248-1.532 1.092-.694 2.383.276.417.276.436.245 1.588-.017 1.092 0 1.192.195 1.589.213.397.5.655 1 .854.419.159 1.94.081 2.349-.13.51-.247 1.224-1.091 1.53-1.588.235-.606.164-1.49-.193-2.284-.357-.724-1.225-1.688-1.94-2.085-.408-.228-.582-.377-.745-.685a4.493 4.369 0 0 0-.531-.754C12.518.755 11.681 0 11.579 0c-.038 0-.075.169-.075.367zm-6.33 1.688a6.127 5.958 0 0 0-.162 1.986c.054.437.027.556-.154.873-.377.676-.53 1.291-.49 2.383.029.725.083.964.287 1.291.46.894 1.123 1.291 2.144 1.589.664.129 1.225.083 1.735-.189 1.634-.715 1.94-1.986.624-3.276-.512-.596-.756-1.093-.756-1.49 0-.526-.255-1.191-.572-1.49-.255-.228-.337-.237-.837-.198a6.772 6.586 0 0 0-.797.12c-.234.055-.276.026-.429-.368a2.144 2.085 0 0 1-.173-.774c.027-.348-.195-.835-.378-.835-.045 0-.133.17-.193.378zm16.338 3.078c-.036.198-.02.377.054.457.063.072.122.347.133.615l.008.487-.327.01c-.674.018-.756.044-1.123.377a2.552 2.482 0 0 0-.49.804c-.091.248-.43 1.092-.796 1.688-.358.725-.654 1.49-.675 1.688-.122.755.317 1.291 1.328 1.887.46.228.664.248 1.327.248.674 0 .858-.037 1.327-.288.736-.347 1.124-.755 1.532-1.49.215-.436.246-.615.235-1.489-.01-1.092-.204-1.688-.704-2.383a4.084 3.972 0 0 1-.46-.993c-.194-.685-.909-1.986-1.123-1.986-.074 0-.154.13-.195.318zM.022 11.17c-.1.17.154 1.688.368 2.284.123.308.285.854.357 1.192.378 1.886 1.736 3.177 3.267 3.276 1.123.074 2.042-.248 2.553-.923.745-.874.867-1.688.357-2.383-.153-.189-.592-.526-.99-.775-.388-.238-1.123-.675-1.532-.963-1.327-.874-1.531-.933-1.735-1.092-.49-.13-.838-.028-1.226.348l-.357.317-.194-.317c-.1-.17-.194-.378-.194-.497 0-.1-.122-.288-.255-.437-.286-.268-.358-.288-.429-.159Zm13.274 2.284c-.654.169-1.327.417-1.634.566-.674.348-1.225.894-1.532 1.49-.173.436-.204.565-.153 1.489.054.834.037.963-.163 1.29-.215.457-.878 1.192-1.226 1.291-.112.046-.295.239-.418.408-.633.933.235 2.78 1.635 3.574.653.348 1.53.497 2.347.417 2.962-.268 6.126-1.092 8.373-2.085 1.532-.695 2.144-1.688 2.144-3.078-.028-1.49-.787-2.383-2.043-2.383-1 0-2.042-.616-2.45-1.49-.317-.615-.939-1.191-1.532-1.588-.326-.13-.653-.199-1.327-.229-.745-.026-1.02.02-2.042.288z" }) + ] + } + ); +}); + +exports.default = SiLazarus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.d.ts new file mode 100644 index 000000000..007579bdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLazarus: IconType; +export { SiLazarus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.mjs new file mode 100644 index 000000000..5a7b4c305 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLazarus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLazarus = React.forwardRef(function SiLazarus2({ title = "Lazarus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.457.447c0 .198.035.367.092.367.123 0 .51.715.592 1.092.053.288.053.288-.45.398-1.225.248-1.532 1.092-.694 2.383.276.417.276.436.245 1.588-.017 1.092 0 1.192.195 1.589.213.397.5.655 1 .854.419.159 1.94.081 2.349-.13.51-.247 1.224-1.091 1.53-1.588.235-.606.164-1.49-.193-2.284-.357-.724-1.225-1.688-1.94-2.085-.408-.228-.582-.377-.745-.685a4.493 4.369 0 0 0-.531-.754C12.518.755 11.681 0 11.579 0c-.038 0-.075.169-.075.367zm-6.33 1.688a6.127 5.958 0 0 0-.162 1.986c.054.437.027.556-.154.873-.377.676-.53 1.291-.49 2.383.029.725.083.964.287 1.291.46.894 1.123 1.291 2.144 1.589.664.129 1.225.083 1.735-.189 1.634-.715 1.94-1.986.624-3.276-.512-.596-.756-1.093-.756-1.49 0-.526-.255-1.191-.572-1.49-.255-.228-.337-.237-.837-.198a6.772 6.586 0 0 0-.797.12c-.234.055-.276.026-.429-.368a2.144 2.085 0 0 1-.173-.774c.027-.348-.195-.835-.378-.835-.045 0-.133.17-.193.378zm16.338 3.078c-.036.198-.02.377.054.457.063.072.122.347.133.615l.008.487-.327.01c-.674.018-.756.044-1.123.377a2.552 2.482 0 0 0-.49.804c-.091.248-.43 1.092-.796 1.688-.358.725-.654 1.49-.675 1.688-.122.755.317 1.291 1.328 1.887.46.228.664.248 1.327.248.674 0 .858-.037 1.327-.288.736-.347 1.124-.755 1.532-1.49.215-.436.246-.615.235-1.489-.01-1.092-.204-1.688-.704-2.383a4.084 3.972 0 0 1-.46-.993c-.194-.685-.909-1.986-1.123-1.986-.074 0-.154.13-.195.318zM.022 11.17c-.1.17.154 1.688.368 2.284.123.308.285.854.357 1.192.378 1.886 1.736 3.177 3.267 3.276 1.123.074 2.042-.248 2.553-.923.745-.874.867-1.688.357-2.383-.153-.189-.592-.526-.99-.775-.388-.238-1.123-.675-1.532-.963-1.327-.874-1.531-.933-1.735-1.092-.49-.13-.838-.028-1.226.348l-.357.317-.194-.317c-.1-.17-.194-.378-.194-.497 0-.1-.122-.288-.255-.437-.286-.268-.358-.288-.429-.159Zm13.274 2.284c-.654.169-1.327.417-1.634.566-.674.348-1.225.894-1.532 1.49-.173.436-.204.565-.153 1.489.054.834.037.963-.163 1.29-.215.457-.878 1.192-1.226 1.291-.112.046-.295.239-.418.408-.633.933.235 2.78 1.635 3.574.653.348 1.53.497 2.347.417 2.962-.268 6.126-1.092 8.373-2.085 1.532-.695 2.144-1.688 2.144-3.078-.028-1.49-.787-2.383-2.043-2.383-1 0-2.042-.616-2.45-1.49-.317-.615-.939-1.191-1.532-1.588-.326-.13-.653-.199-1.327-.229-.745-.026-1.02.02-2.042.288z" }) + ] + } + ); +}); + +export { SiLazarus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.cjs new file mode 100644 index 000000000..91159cc51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E7DE9"; +const SiLazyvim = React__namespace.forwardRef(function SiLazyvim2({ title = "LazyVim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.87 0a2.5 2.5 0 0 0-.697.1q-.187.058-.351.147-.163.09-.297.213l-.008.006q-.133.124-.235.27a1.7 1.7 0 0 0-.27.643 1.8 1.8 0 0 0 .105 1.023q.072.164.176.308.105.14.24.26l.007.004q.137.12.299.205.159.084.348.14.32.093.682.092h2.8l-4.256 5.09-.618.733.01.008q-.046.06-.088.124l-.07.116L.59 9.6q-.03.06-.05.12l-.006.016a1.8 1.8 0 0 0-.122.66q0 .219.042.423.039.204.12.4.084.2.21.372a2 2 0 0 0 1.067.746h.002q.397.117.87.117H9.65q.169 0 .338-.02.163-.02.312-.06l.044-.013q.185-.056.344-.144a1.6 1.6 0 0 0 .297-.21l.012-.01a1.65 1.65 0 0 0 .414-.592q.063-.157.095-.33a2 2 0 0 0 .004-.672 1.6 1.6 0 0 0-.084-.304l-.02-.055a1.5 1.5 0 0 0-.436-.58l-.006-.005a1.65 1.65 0 0 0-.635-.325 2.7 2.7 0 0 0-.675-.087H5.918l4.157-4.95.243-.304a6 6 0 0 0 .353-.486 2.1 2.1 0 0 0 .262-.64q.075-.315.074-.674 0-.46-.142-.83a1.7 1.7 0 0 0-.437-.648 1.8 1.8 0 0 0-.66-.39A2.6 2.6 0 0 0 8.938 0Zm12.36 6.062q-.179 0-.347.024a2 2 0 0 0-.325.073q-.18.054-.338.142a1.6 1.6 0 0 0-.29.21l-.003.003a1.6 1.6 0 0 0-.394.56q-.065.15-.097.317-.03.165-.032.337a1.7 1.7 0 0 0 .135.655q.07.162.171.3.098.131.225.242l.01.012q.133.114.29.197.155.082.335.134a2.4 2.4 0 0 0 .658.09h2.673L13.82 14.24l-.594.703.01.008-.088.123a1 1 0 0 0-.066.113l-.057.112c-.015.036-.046.097-.055.133a1.8 1.8 0 0 0-.118.64 2.1 2.1 0 0 0 .158.796 1.87 1.87 0 0 0 .83.912q.19.102.406.166h.001q.192.057.404.085.214.03.437.03h6.678q.168 0 .325-.02.154-.02.304-.06l.042-.012a1.7 1.7 0 0 0 .33-.14q.155-.083.288-.203l.01-.01q.134-.124.233-.265.103-.146.168-.308.06-.152.093-.318.03-.166.03-.34a1.8 1.8 0 0 0-.112-.605l-.02-.05a1.5 1.5 0 0 0-.417-.56l-.004-.004a1.6 1.6 0 0 0-.29-.19 2 2 0 0 0-.332-.128 2.4 2.4 0 0 0-.65-.083h-3.575l3.727-4.435q.154-.182.262-.314l.234-.291a6 6 0 0 0 .34-.47q.085-.137.15-.293a2.4 2.4 0 0 0 .102-.324 2.8 2.8 0 0 0 .07-.65q0-.445-.14-.8a1.7 1.7 0 0 0-.423-.628 1.8 1.8 0 0 0-.639-.377 2.5 2.5 0 0 0-.804-.12Zm-11.39 9.23q-.127 0-.256.016a1.5 1.5 0 0 0-.498.162q-.12.068-.22.158l-.001.004a1.2 1.2 0 0 0-.37.665 1.2 1.2 0 0 0 .002.506 1.15 1.15 0 0 0 .374.65l.01.01a1.2 1.2 0 0 0 .47.25q.23.067.49.067h1.776l-2.833 3.39-.468.553.01.007-.078.124-.042.084c-.014.03-.027.068-.042.097a1.3 1.3 0 0 0-.09.48q0 .156.03.305.029.147.088.289.063.146.152.27a1.4 1.4 0 0 0 .47.413q.142.076.304.125.142.042.299.063.159.02.32.02h4.776q.118 0 .24-.014.118-.015.224-.044l.034-.01q.135-.041.249-.104.12-.066.219-.154l.007-.008a1.2 1.2 0 0 0 .303-.432q.048-.113.07-.24a1.4 1.4 0 0 0 .002-.486 1.2 1.2 0 0 0-.06-.222l-.016-.042a1.14 1.14 0 0 0-.322-.426 1.2 1.2 0 0 0-.467-.24 1.8 1.8 0 0 0-.483-.06h-2.42l2.768-3.294.167-.21.139-.183a2 2 0 0 0 .106-.158q.066-.104.112-.22a1.8 1.8 0 0 0 .115-.472q.014-.126.013-.247 0-.33-.103-.596a1.26 1.26 0 0 0-.32-.47 1.3 1.3 0 0 0-.478-.284 1.8 1.8 0 0 0-.596-.092z" }) + ] + } + ); +}); + +exports.default = SiLazyvim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.d.ts new file mode 100644 index 000000000..e5eebb246 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E7DE9"; +declare const SiLazyvim: IconType; +export { SiLazyvim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.mjs new file mode 100644 index 000000000..80beee13d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLazyvim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E7DE9"; +const SiLazyvim = React.forwardRef(function SiLazyvim2({ title = "LazyVim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.87 0a2.5 2.5 0 0 0-.697.1q-.187.058-.351.147-.163.09-.297.213l-.008.006q-.133.124-.235.27a1.7 1.7 0 0 0-.27.643 1.8 1.8 0 0 0 .105 1.023q.072.164.176.308.105.14.24.26l.007.004q.137.12.299.205.159.084.348.14.32.093.682.092h2.8l-4.256 5.09-.618.733.01.008q-.046.06-.088.124l-.07.116L.59 9.6q-.03.06-.05.12l-.006.016a1.8 1.8 0 0 0-.122.66q0 .219.042.423.039.204.12.4.084.2.21.372a2 2 0 0 0 1.067.746h.002q.397.117.87.117H9.65q.169 0 .338-.02.163-.02.312-.06l.044-.013q.185-.056.344-.144a1.6 1.6 0 0 0 .297-.21l.012-.01a1.65 1.65 0 0 0 .414-.592q.063-.157.095-.33a2 2 0 0 0 .004-.672 1.6 1.6 0 0 0-.084-.304l-.02-.055a1.5 1.5 0 0 0-.436-.58l-.006-.005a1.65 1.65 0 0 0-.635-.325 2.7 2.7 0 0 0-.675-.087H5.918l4.157-4.95.243-.304a6 6 0 0 0 .353-.486 2.1 2.1 0 0 0 .262-.64q.075-.315.074-.674 0-.46-.142-.83a1.7 1.7 0 0 0-.437-.648 1.8 1.8 0 0 0-.66-.39A2.6 2.6 0 0 0 8.938 0Zm12.36 6.062q-.179 0-.347.024a2 2 0 0 0-.325.073q-.18.054-.338.142a1.6 1.6 0 0 0-.29.21l-.003.003a1.6 1.6 0 0 0-.394.56q-.065.15-.097.317-.03.165-.032.337a1.7 1.7 0 0 0 .135.655q.07.162.171.3.098.131.225.242l.01.012q.133.114.29.197.155.082.335.134a2.4 2.4 0 0 0 .658.09h2.673L13.82 14.24l-.594.703.01.008-.088.123a1 1 0 0 0-.066.113l-.057.112c-.015.036-.046.097-.055.133a1.8 1.8 0 0 0-.118.64 2.1 2.1 0 0 0 .158.796 1.87 1.87 0 0 0 .83.912q.19.102.406.166h.001q.192.057.404.085.214.03.437.03h6.678q.168 0 .325-.02.154-.02.304-.06l.042-.012a1.7 1.7 0 0 0 .33-.14q.155-.083.288-.203l.01-.01q.134-.124.233-.265.103-.146.168-.308.06-.152.093-.318.03-.166.03-.34a1.8 1.8 0 0 0-.112-.605l-.02-.05a1.5 1.5 0 0 0-.417-.56l-.004-.004a1.6 1.6 0 0 0-.29-.19 2 2 0 0 0-.332-.128 2.4 2.4 0 0 0-.65-.083h-3.575l3.727-4.435q.154-.182.262-.314l.234-.291a6 6 0 0 0 .34-.47q.085-.137.15-.293a2.4 2.4 0 0 0 .102-.324 2.8 2.8 0 0 0 .07-.65q0-.445-.14-.8a1.7 1.7 0 0 0-.423-.628 1.8 1.8 0 0 0-.639-.377 2.5 2.5 0 0 0-.804-.12Zm-11.39 9.23q-.127 0-.256.016a1.5 1.5 0 0 0-.498.162q-.12.068-.22.158l-.001.004a1.2 1.2 0 0 0-.37.665 1.2 1.2 0 0 0 .002.506 1.15 1.15 0 0 0 .374.65l.01.01a1.2 1.2 0 0 0 .47.25q.23.067.49.067h1.776l-2.833 3.39-.468.553.01.007-.078.124-.042.084c-.014.03-.027.068-.042.097a1.3 1.3 0 0 0-.09.48q0 .156.03.305.029.147.088.289.063.146.152.27a1.4 1.4 0 0 0 .47.413q.142.076.304.125.142.042.299.063.159.02.32.02h4.776q.118 0 .24-.014.118-.015.224-.044l.034-.01q.135-.041.249-.104.12-.066.219-.154l.007-.008a1.2 1.2 0 0 0 .303-.432q.048-.113.07-.24a1.4 1.4 0 0 0 .002-.486 1.2 1.2 0 0 0-.06-.222l-.016-.042a1.14 1.14 0 0 0-.322-.426 1.2 1.2 0 0 0-.467-.24 1.8 1.8 0 0 0-.483-.06h-2.42l2.768-3.294.167-.21.139-.183a2 2 0 0 0 .106-.158q.066-.104.112-.22a1.8 1.8 0 0 0 .115-.472q.014-.126.013-.247 0-.33-.103-.596a1.26 1.26 0 0 0-.32-.47 1.3 1.3 0 0 0-.478-.284 1.8 1.8 0 0 0-.596-.092z" }) + ] + } + ); +}); + +export { SiLazyvim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.cjs new file mode 100644 index 000000000..f544e65ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F9176"; +const SiLbry = React__namespace.forwardRef(function SiLbry2({ title = "LBRY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.3493 14.1894l.169-1.0651-1.0315-.1775.0676-.4142 1.4456.245-.2365 1.4795zm.152-5.495v1.1921l-11.7338 7.211-8.8425-4.3367.0169-.6677 8.7918 4.3282 11.1759-6.8644v-.4904L12.3592 3.9773.5917 11.2561v3.2547l11.142 5.5119 11.6322-7.135.33.5074-11.9284 7.3038L0 14.8828v-3.9563L12.3254 3.301z" }) + ] + } + ); +}); + +exports.default = SiLbry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.d.ts new file mode 100644 index 000000000..3d3a2c509 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F9176"; +declare const SiLbry: IconType; +export { SiLbry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.mjs new file mode 100644 index 000000000..35e4a0134 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLbry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F9176"; +const SiLbry = React.forwardRef(function SiLbry2({ title = "LBRY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.3493 14.1894l.169-1.0651-1.0315-.1775.0676-.4142 1.4456.245-.2365 1.4795zm.152-5.495v1.1921l-11.7338 7.211-8.8425-4.3367.0169-.6677 8.7918 4.3282 11.1759-6.8644v-.4904L12.3592 3.9773.5917 11.2561v3.2547l11.142 5.5119 11.6322-7.135.33.5074-11.9284 7.3038L0 14.8828v-3.9563L12.3254 3.301z" }) + ] + } + ); +}); + +export { SiLbry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.cjs new file mode 100644 index 000000000..338794d37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E50005"; +const SiLeaderprice = React__namespace.forwardRef(function SiLeaderprice2({ title = "Leader Price", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.836 7.574h-1.1v3.97h2.822v-.965H1.836zM17.08 9.943h1.794V9.15H17.08v-.636h1.987v-.941H15.99v3.97h3.106v-.936h-2.021v-.665zm-12.075 0H6.8V9.15H5.005v-.636h1.992v-.941H3.92v3.97h3.106v-.936H5.005zm17.314.217c.492-.208.815-.613.815-1.22v-.01c0-.391-.12-.7-.352-.927-.265-.27-.685-.43-1.293-.43h-1.877v3.971h1.1v-1.201h.483l.8 1.201h1.27zm-.29-1.153c0 .29-.217.472-.588.472h-.724v-.95h.719c.367 0 .593.16.593.473zm-8.731-1.433h-1.53v3.97h1.51c1.428 0 2.263-.849 2.263-1.997v-.01c-.005-1.148-.825-1.963-2.243-1.963zm1.11 1.992c0 .642-.44 1.004-1.096 1.004h-.448V8.553h.448c.656 0 1.095.367 1.095 1.004zM11.734 0 5.497 6.238h12.475zm-2.88 7.574-1.68 3.97h1.149l.28-.704h1.52l.289.704h1.172l-1.679-3.97zm.072 2.417.444-1.158.439 1.158zm-.781 5.248h.482l.8 1.202h1.27l-.946-1.385c.492-.207.815-.613.815-1.22v-.01c0-.39-.12-.7-.352-.926-.265-.27-.685-.43-1.293-.43H7.046v3.966h1.1zm0-1.813h.718c.367 0 .594.159.594.472v.01c0 .29-.217.473-.589.473h-.723zm-1.54.453v-.01c0-.878-.646-1.394-1.65-1.394h-1.7v3.966h1.1v-1.134H4.9c.984 0 1.708-.492 1.708-1.428zm-1.1.048c0 .314-.236.516-.626.516h-.526v-1.046h.516c.396 0 .637.183.637.52zm6.788-1.457H11.19v3.966h1.104zm2.634 4.091c.695 0 1.341-.342 1.737-.916l.024-.034-.892-.613-.025.034a1.02 1.02 0 0 1-1.862-.574 1.02 1.02 0 0 1 1.023-1.018c.338 0 .651.164.84.444l.024.034.892-.613-.024-.034a2.103 2.103 0 0 0-1.737-.912 2.108 2.108 0 0 0-2.103 2.104c0 1.153.94 2.098 2.103 2.098zm3.295-1.056v-.666h1.906v-.791h-1.906v-.637h2.103v-.936h-3.193v3.966h3.218v-.936zM11.735 24l6.237-6.238H5.497z" }) + ] + } + ); +}); + +exports.default = SiLeaderprice; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.d.ts new file mode 100644 index 000000000..5797a82e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E50005"; +declare const SiLeaderprice: IconType; +export { SiLeaderprice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.mjs new file mode 100644 index 000000000..7e7be0791 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaderprice.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E50005"; +const SiLeaderprice = React.forwardRef(function SiLeaderprice2({ title = "Leader Price", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.836 7.574h-1.1v3.97h2.822v-.965H1.836zM17.08 9.943h1.794V9.15H17.08v-.636h1.987v-.941H15.99v3.97h3.106v-.936h-2.021v-.665zm-12.075 0H6.8V9.15H5.005v-.636h1.992v-.941H3.92v3.97h3.106v-.936H5.005zm17.314.217c.492-.208.815-.613.815-1.22v-.01c0-.391-.12-.7-.352-.927-.265-.27-.685-.43-1.293-.43h-1.877v3.971h1.1v-1.201h.483l.8 1.201h1.27zm-.29-1.153c0 .29-.217.472-.588.472h-.724v-.95h.719c.367 0 .593.16.593.473zm-8.731-1.433h-1.53v3.97h1.51c1.428 0 2.263-.849 2.263-1.997v-.01c-.005-1.148-.825-1.963-2.243-1.963zm1.11 1.992c0 .642-.44 1.004-1.096 1.004h-.448V8.553h.448c.656 0 1.095.367 1.095 1.004zM11.734 0 5.497 6.238h12.475zm-2.88 7.574-1.68 3.97h1.149l.28-.704h1.52l.289.704h1.172l-1.679-3.97zm.072 2.417.444-1.158.439 1.158zm-.781 5.248h.482l.8 1.202h1.27l-.946-1.385c.492-.207.815-.613.815-1.22v-.01c0-.39-.12-.7-.352-.926-.265-.27-.685-.43-1.293-.43H7.046v3.966h1.1zm0-1.813h.718c.367 0 .594.159.594.472v.01c0 .29-.217.473-.589.473h-.723zm-1.54.453v-.01c0-.878-.646-1.394-1.65-1.394h-1.7v3.966h1.1v-1.134H4.9c.984 0 1.708-.492 1.708-1.428zm-1.1.048c0 .314-.236.516-.626.516h-.526v-1.046h.516c.396 0 .637.183.637.52zm6.788-1.457H11.19v3.966h1.104zm2.634 4.091c.695 0 1.341-.342 1.737-.916l.024-.034-.892-.613-.025.034a1.02 1.02 0 0 1-1.862-.574 1.02 1.02 0 0 1 1.023-1.018c.338 0 .651.164.84.444l.024.034.892-.613-.024-.034a2.103 2.103 0 0 0-1.737-.912 2.108 2.108 0 0 0-2.103 2.104c0 1.153.94 2.098 2.103 2.098zm3.295-1.056v-.666h1.906v-.791h-1.906v-.637h2.103v-.936h-3.193v3.966h3.218v-.936zM11.735 24l6.237-6.238H5.497z" }) + ] + } + ); +}); + +export { SiLeaderprice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.cjs new file mode 100644 index 000000000..4ead6f150 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#199900"; +const SiLeaflet = React__namespace.forwardRef(function SiLeaflet2({ title = "Leaflet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.69 0c-.355.574-8.432 4.74-10.856 8.649-2.424 3.91-3.116 6.988-2.237 9.882.879 2.893 2.559 2.763 3.516 3.717.958.954 2.257 2.113 4.332 1.645 2.717-.613 5.335-2.426 6.638-7.508 1.302-5.082.448-9.533-.103-11.99A35.395 35.395 0 0 0 17.69 0zm-.138.858l-9.22 21.585-.574-.577Z" }) + ] + } + ); +}); + +exports.default = SiLeaflet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.d.ts new file mode 100644 index 000000000..60307fda4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#199900"; +declare const SiLeaflet: IconType; +export { SiLeaflet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.mjs new file mode 100644 index 000000000..01cca16c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeaflet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#199900"; +const SiLeaflet = React.forwardRef(function SiLeaflet2({ title = "Leaflet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.69 0c-.355.574-8.432 4.74-10.856 8.649-2.424 3.91-3.116 6.988-2.237 9.882.879 2.893 2.559 2.763 3.516 3.717.958.954 2.257 2.113 4.332 1.645 2.717-.613 5.335-2.426 6.638-7.508 1.302-5.082.448-9.533-.103-11.99A35.395 35.395 0 0 0 17.69 0zm-.138.858l-9.22 21.585-.574-.577Z" }) + ] + } + ); +}); + +export { SiLeaflet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.cjs new file mode 100644 index 000000000..401abba3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C28F2C"; +const SiLeagueoflegends = React__namespace.forwardRef(function SiLeagueoflegends2({ title = "League of Legends", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m1.912 0 1.212 2.474v19.053L1.912 24h14.73l1.337-4.682H8.33V0ZM12 1.516c-.913 0-1.798.112-2.648.312v1.74a9.738 9.738 0 0 1 2.648-.368c5.267 0 9.536 4.184 9.536 9.348a9.203 9.203 0 0 1-2.3 6.086l-.273.954-.602 2.112c2.952-1.993 4.89-5.335 4.89-9.122C23.25 6.468 18.213 1.516 12 1.516Zm0 2.673c-.924 0-1.814.148-2.648.414v13.713h8.817a8.246 8.246 0 0 0 2.36-5.768c0-4.617-3.818-8.359-8.529-8.359zM2.104 7.312A10.858 10.858 0 0 0 .75 12.576c0 1.906.492 3.7 1.355 5.266z" }) + ] + } + ); +}); + +exports.default = SiLeagueoflegends; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.d.ts new file mode 100644 index 000000000..206fbf39d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C28F2C"; +declare const SiLeagueoflegends: IconType; +export { SiLeagueoflegends as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.mjs new file mode 100644 index 000000000..d99836477 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeagueoflegends.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C28F2C"; +const SiLeagueoflegends = React.forwardRef(function SiLeagueoflegends2({ title = "League of Legends", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m1.912 0 1.212 2.474v19.053L1.912 24h14.73l1.337-4.682H8.33V0ZM12 1.516c-.913 0-1.798.112-2.648.312v1.74a9.738 9.738 0 0 1 2.648-.368c5.267 0 9.536 4.184 9.536 9.348a9.203 9.203 0 0 1-2.3 6.086l-.273.954-.602 2.112c2.952-1.993 4.89-5.335 4.89-9.122C23.25 6.468 18.213 1.516 12 1.516Zm0 2.673c-.924 0-1.814.148-2.648.414v13.713h8.817a8.246 8.246 0 0 0 2.36-5.768c0-4.617-3.818-8.359-8.529-8.359zM2.104 7.312A10.858 10.858 0 0 0 .75 12.576c0 1.906.492 3.7 1.355 5.266z" }) + ] + } + ); +}); + +export { SiLeagueoflegends as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.cjs new file mode 100644 index 000000000..d478a0383 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#262425"; +const SiLeanpub = React__namespace.forwardRef(function SiLeanpub2({ title = "Leanpub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.19 5.284c-.806-.454-2.93-1.478-5.652-1.478-2.445 0-3.837.751-4.538 1.234-.701-.483-2.093-1.235-4.538-1.235-2.723 0-4.846 1.025-5.651 1.479L0 20.194h.054a6.933 6.933 0 002.957-.673c1.032-.487 2.66-1.06 4.602-1.06 2.364 0 3.71 1.056 4.387 1.733.678-.677 2.023-1.732 4.387-1.732 1.943 0 3.57.572 4.602 1.06a6.933 6.933 0 002.957.672H24zM20.934 17.78a12.167 12.167 0 00-2.875-.801c-.558-.081-1.12-.122-1.674-.122-1.571 0-2.991.392-4.22 1.165l-.166.103-.165-.103c-1.23-.773-2.65-1.165-4.222-1.165-.552 0-1.115.04-1.673.122-.949.137-1.916.407-2.875.801l-1.218.501L3.3 6.321l.108-.048c1.225-.542 2.797-.865 4.205-.865 1.745 0 3.22.556 4.387 1.652 1.168-1.096 2.642-1.652 4.386-1.652 1.409 0 2.98.323 4.206.865l.108.048 1.453 11.961zm-4.085-1.328a11.99 11.99 0 00-.464-.009c-1.627 0-3.103.402-4.386 1.194-1.283-.792-2.759-1.194-4.387-1.194-.572 0-1.155.043-1.732.126-.983.143-1.983.421-2.973.829l-.565.232 1.34-11.025c1.159-.492 2.618-.783 3.93-.783 1.705 0 3.131.562 4.24 1.672L12 7.64l.146-.146c1.07-1.07 2.433-1.629 4.055-1.669z" }) + ] + } + ); +}); + +exports.default = SiLeanpub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.d.ts new file mode 100644 index 000000000..0d1c08d5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#262425"; +declare const SiLeanpub: IconType; +export { SiLeanpub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.mjs new file mode 100644 index 000000000..cf5bd322c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeanpub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#262425"; +const SiLeanpub = React.forwardRef(function SiLeanpub2({ title = "Leanpub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.19 5.284c-.806-.454-2.93-1.478-5.652-1.478-2.445 0-3.837.751-4.538 1.234-.701-.483-2.093-1.235-4.538-1.235-2.723 0-4.846 1.025-5.651 1.479L0 20.194h.054a6.933 6.933 0 002.957-.673c1.032-.487 2.66-1.06 4.602-1.06 2.364 0 3.71 1.056 4.387 1.733.678-.677 2.023-1.732 4.387-1.732 1.943 0 3.57.572 4.602 1.06a6.933 6.933 0 002.957.672H24zM20.934 17.78a12.167 12.167 0 00-2.875-.801c-.558-.081-1.12-.122-1.674-.122-1.571 0-2.991.392-4.22 1.165l-.166.103-.165-.103c-1.23-.773-2.65-1.165-4.222-1.165-.552 0-1.115.04-1.673.122-.949.137-1.916.407-2.875.801l-1.218.501L3.3 6.321l.108-.048c1.225-.542 2.797-.865 4.205-.865 1.745 0 3.22.556 4.387 1.652 1.168-1.096 2.642-1.652 4.386-1.652 1.409 0 2.98.323 4.206.865l.108.048 1.453 11.961zm-4.085-1.328a11.99 11.99 0 00-.464-.009c-1.627 0-3.103.402-4.386 1.194-1.283-.792-2.759-1.194-4.387-1.194-.572 0-1.155.043-1.732.126-.983.143-1.983.421-2.973.829l-.565.232 1.34-11.025c1.159-.492 2.618-.783 3.93-.783 1.705 0 3.131.562 4.24 1.672L12 7.64l.146-.146c1.07-1.07 2.433-1.629 4.055-1.669z" }) + ] + } + ); +}); + +export { SiLeanpub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.cjs new file mode 100644 index 000000000..ae676d3fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA116"; +const SiLeetcode = React__namespace.forwardRef(function SiLeetcode2({ title = "LeetCode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.483 0a1.374 1.374 0 0 0-.961.438L7.116 6.226l-3.854 4.126a5.266 5.266 0 0 0-1.209 2.104 5.35 5.35 0 0 0-.125.513 5.527 5.527 0 0 0 .062 2.362 5.83 5.83 0 0 0 .349 1.017 5.938 5.938 0 0 0 1.271 1.818l4.277 4.193.039.038c2.248 2.165 5.852 2.133 8.063-.074l2.396-2.392c.54-.54.54-1.414.003-1.955a1.378 1.378 0 0 0-1.951-.003l-2.396 2.392a3.021 3.021 0 0 1-4.205.038l-.02-.019-4.276-4.193c-.652-.64-.972-1.469-.948-2.263a2.68 2.68 0 0 1 .066-.523 2.545 2.545 0 0 1 .619-1.164L9.13 8.114c1.058-1.134 3.204-1.27 4.43-.278l3.501 2.831c.593.48 1.461.387 1.94-.207a1.384 1.384 0 0 0-.207-1.943l-3.5-2.831c-.8-.647-1.766-1.045-2.774-1.202l2.015-2.158A1.384 1.384 0 0 0 13.483 0zm-2.866 12.815a1.38 1.38 0 0 0-1.38 1.382 1.38 1.38 0 0 0 1.38 1.382H20.79a1.38 1.38 0 0 0 1.38-1.382 1.38 1.38 0 0 0-1.38-1.382z" }) + ] + } + ); +}); + +exports.default = SiLeetcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.d.ts new file mode 100644 index 000000000..af4aef0ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA116"; +declare const SiLeetcode: IconType; +export { SiLeetcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.mjs new file mode 100644 index 000000000..e2da6c810 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeetcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA116"; +const SiLeetcode = React.forwardRef(function SiLeetcode2({ title = "LeetCode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.483 0a1.374 1.374 0 0 0-.961.438L7.116 6.226l-3.854 4.126a5.266 5.266 0 0 0-1.209 2.104 5.35 5.35 0 0 0-.125.513 5.527 5.527 0 0 0 .062 2.362 5.83 5.83 0 0 0 .349 1.017 5.938 5.938 0 0 0 1.271 1.818l4.277 4.193.039.038c2.248 2.165 5.852 2.133 8.063-.074l2.396-2.392c.54-.54.54-1.414.003-1.955a1.378 1.378 0 0 0-1.951-.003l-2.396 2.392a3.021 3.021 0 0 1-4.205.038l-.02-.019-4.276-4.193c-.652-.64-.972-1.469-.948-2.263a2.68 2.68 0 0 1 .066-.523 2.545 2.545 0 0 1 .619-1.164L9.13 8.114c1.058-1.134 3.204-1.27 4.43-.278l3.501 2.831c.593.48 1.461.387 1.94-.207a1.384 1.384 0 0 0-.207-1.943l-3.5-2.831c-.8-.647-1.766-1.045-2.774-1.202l2.015-2.158A1.384 1.384 0 0 0 13.483 0zm-2.866 12.815a1.38 1.38 0 0 0-1.38 1.382 1.38 1.38 0 0 0 1.38 1.382H20.79a1.38 1.38 0 0 0 1.38-1.382 1.38 1.38 0 0 0-1.38-1.382z" }) + ] + } + ); +}); + +export { SiLeetcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.cjs new file mode 100644 index 000000000..82820d306 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1E1E"; +const SiLefthook = React__namespace.forwardRef(function SiLefthook2({ title = "Lefthook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m5.4598 18.5173-.103.0303L0 16.1385l.121-.2724c.8535-1.9733 2.1186-3.7044 3.771-5.1934a22 22 0 0 1 .7143-.6174l-.2784-.5267-.339-.6355-.109-.2119-.0726-.1392.0666-.1392c.7445-1.5132 1.9067-2.3607 3.8013-2.8752 1.156-.3026 2.1245-.2845 2.9054.0848a17.4 17.4 0 0 1 4.6123-1.7978l.0606-.012L24 13.1845l-.0968.1816a193 193 0 0 1-2.2638 4.3945c-1.0472 1.9732-2.7844 2.6875-5.0422 2.3606-1.6948-.242-3.541-1.029-5.7503-2.288l-.6658-.3692c-1.023.1513-2.6028.5024-4.7274 1.0532Zm-1.1683-7.3907A14.36 14.36 0 0 0 .799 15.8298l3.7044 1.6706a31.3 31.3 0 0 1 3.7831-1.1077 1649 1649 0 0 0-3.8497-2.1549l-.2784-.1573 1.4103-2.2094L4.8968 10.6a21 21 0 0 0-.6053.5266m2.2518 2.9417h.006c2.288-.4055 4.0797-2.2214 4.7213-3.3715a13 13 0 0 0 .351-.5568l3.1355-5.5809a16.63 16.63 0 0 0-4.5276 1.9612l-.6537-.3026a23 23 0 0 1 .3269-.2058 4.13 4.13 0 0 0-2.0762.109c-1.6706.4418-2.6754 1.162-3.3412 2.415l.0423.0727.333.6355 1.1863 2.2396a3.05 3.05 0 0 0 1.15.0121c.5812-.0847 1.1138-.3026 1.5436-.6476.8535-.69 1.3074-1.2106 1.3437-1.6706.0424-.5448-.3147-1.2772-1.3135-2.6694 1.4104.9443 2.3728 2.4575 1.598 3.547v.0061a3.5 3.5 0 0 1-.2602.339c-.2543.2905-.563.575-.9867.92a3.84 3.84 0 0 1-1.834.7748 4 4 0 0 1-1.1561.0182l-1.1198 1.7553a1699 1699 0 0 1 2.9962 1.6707v-.0121c3.087-.1635 5.0845-2.0338 7.0154-5.1027-1.477 3.1354-3.305 5.145-6.1256 5.6172a99 99 0 0 1 1.61.908c3.0265-.1998 4.8545-1.8584 6.7673-4.897-1.4588 3.0992-3.1415 4.9272-5.8714 5.3993a33 33 0 0 0 .8898.4842l-.0303-.0302a14 14 0 0 0 .333.1816 25 25 0 0 0 .5023.242c3.0144-.1936 4.6971-1.6403 6.6099-4.6789-1.4043 2.9841-2.9055 4.6306-5.4295 5.145 1.8461.5448 3.3412.212 4.8423-.7263.5145-.3329 1.7493-2.0883 3.6923-5.2782L15.3322 4.765l-3.1839 5.6777a10.47 10.47 0 0 1-1.822 2.3244 5.69 5.69 0 0 1-3.777 1.3013z" }) + ] + } + ); +}); + +exports.default = SiLefthook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.d.ts new file mode 100644 index 000000000..fd87ce9f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1E1E"; +declare const SiLefthook: IconType; +export { SiLefthook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.mjs new file mode 100644 index 000000000..43792fbad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLefthook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1E1E"; +const SiLefthook = React.forwardRef(function SiLefthook2({ title = "Lefthook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m5.4598 18.5173-.103.0303L0 16.1385l.121-.2724c.8535-1.9733 2.1186-3.7044 3.771-5.1934a22 22 0 0 1 .7143-.6174l-.2784-.5267-.339-.6355-.109-.2119-.0726-.1392.0666-.1392c.7445-1.5132 1.9067-2.3607 3.8013-2.8752 1.156-.3026 2.1245-.2845 2.9054.0848a17.4 17.4 0 0 1 4.6123-1.7978l.0606-.012L24 13.1845l-.0968.1816a193 193 0 0 1-2.2638 4.3945c-1.0472 1.9732-2.7844 2.6875-5.0422 2.3606-1.6948-.242-3.541-1.029-5.7503-2.288l-.6658-.3692c-1.023.1513-2.6028.5024-4.7274 1.0532Zm-1.1683-7.3907A14.36 14.36 0 0 0 .799 15.8298l3.7044 1.6706a31.3 31.3 0 0 1 3.7831-1.1077 1649 1649 0 0 0-3.8497-2.1549l-.2784-.1573 1.4103-2.2094L4.8968 10.6a21 21 0 0 0-.6053.5266m2.2518 2.9417h.006c2.288-.4055 4.0797-2.2214 4.7213-3.3715a13 13 0 0 0 .351-.5568l3.1355-5.5809a16.63 16.63 0 0 0-4.5276 1.9612l-.6537-.3026a23 23 0 0 1 .3269-.2058 4.13 4.13 0 0 0-2.0762.109c-1.6706.4418-2.6754 1.162-3.3412 2.415l.0423.0727.333.6355 1.1863 2.2396a3.05 3.05 0 0 0 1.15.0121c.5812-.0847 1.1138-.3026 1.5436-.6476.8535-.69 1.3074-1.2106 1.3437-1.6706.0424-.5448-.3147-1.2772-1.3135-2.6694 1.4104.9443 2.3728 2.4575 1.598 3.547v.0061a3.5 3.5 0 0 1-.2602.339c-.2543.2905-.563.575-.9867.92a3.84 3.84 0 0 1-1.834.7748 4 4 0 0 1-1.1561.0182l-1.1198 1.7553a1699 1699 0 0 1 2.9962 1.6707v-.0121c3.087-.1635 5.0845-2.0338 7.0154-5.1027-1.477 3.1354-3.305 5.145-6.1256 5.6172a99 99 0 0 1 1.61.908c3.0265-.1998 4.8545-1.8584 6.7673-4.897-1.4588 3.0992-3.1415 4.9272-5.8714 5.3993a33 33 0 0 0 .8898.4842l-.0303-.0302a14 14 0 0 0 .333.1816 25 25 0 0 0 .5023.242c3.0144-.1936 4.6971-1.6403 6.6099-4.6789-1.4043 2.9841-2.9055 4.6306-5.4295 5.145 1.8461.5448 3.3412.212 4.8423-.7263.5145-.3329 1.7493-2.0883 3.6923-5.2782L15.3322 4.765l-3.1839 5.6777a10.47 10.47 0 0 1-1.822 2.3244 5.69 5.69 0 0 1-3.777 1.3013z" }) + ] + } + ); +}); + +export { SiLefthook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.cjs new file mode 100644 index 000000000..f85670928 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#144B9E"; +const SiLegacygames = React__namespace.forwardRef(function SiLegacygames2({ title = "Legacy Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.62 5.985v12.033L11.992 24l10.37-5.987L22.38 6 11.988 0Zm19.146.955.002 10.123-8.793 5.045-8.758-5.023L3.216 6.94l8.77-5.06Zm-8.781-3.176a2.03 2.03 0 0 1 .87 3.863v2.936l3.863-2.256c.203-.118.427-.196.66-.227l1.602-.218a.104.104 0 0 1 .098.165l-.963 1.308a1.78 1.78 0 0 1-.54.485L13.6 12.13l2.393 1.403c.564-.41 1.393-.46 2.144-.082l.16.088c1.041.618 1.488 1.86.999 2.771-.49.913-1.731 1.15-2.772.532-.748-.444-1.19-1.21-1.198-1.944l-2.472-1.451v3.042a2.03 2.03 0 0 1 1.154 1.673l.006.16a2.03 2.03 0 1 1-2.899-1.833v-2.915l-4.236 2.46a.595.595 0 0 1-.242.079l-1.746.166a.104.104 0 0 1-.093-.165l1.043-1.399a.594.594 0 0 1 .177-.157l4.374-2.555-2.418-1.418c-.564.409-1.391.458-2.142.08l-.16-.087c-1.04-.619-1.488-1.86-.998-2.772.49-.912 1.73-1.15 2.772-.531.75.445 1.19 1.212 1.197 1.947l2.471 1.449.001-3.043a2.03 2.03 0 0 1-1.153-1.674l-.006-.16c0-1.12.908-2.03 2.029-2.03z" }) + ] + } + ); +}); + +exports.default = SiLegacygames; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.d.ts new file mode 100644 index 000000000..28b60e018 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#144B9E"; +declare const SiLegacygames: IconType; +export { SiLegacygames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.mjs new file mode 100644 index 000000000..231da4b0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLegacygames.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#144B9E"; +const SiLegacygames = React.forwardRef(function SiLegacygames2({ title = "Legacy Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.62 5.985v12.033L11.992 24l10.37-5.987L22.38 6 11.988 0Zm19.146.955.002 10.123-8.793 5.045-8.758-5.023L3.216 6.94l8.77-5.06Zm-8.781-3.176a2.03 2.03 0 0 1 .87 3.863v2.936l3.863-2.256c.203-.118.427-.196.66-.227l1.602-.218a.104.104 0 0 1 .098.165l-.963 1.308a1.78 1.78 0 0 1-.54.485L13.6 12.13l2.393 1.403c.564-.41 1.393-.46 2.144-.082l.16.088c1.041.618 1.488 1.86.999 2.771-.49.913-1.731 1.15-2.772.532-.748-.444-1.19-1.21-1.198-1.944l-2.472-1.451v3.042a2.03 2.03 0 0 1 1.154 1.673l.006.16a2.03 2.03 0 1 1-2.899-1.833v-2.915l-4.236 2.46a.595.595 0 0 1-.242.079l-1.746.166a.104.104 0 0 1-.093-.165l1.043-1.399a.594.594 0 0 1 .177-.157l4.374-2.555-2.418-1.418c-.564.409-1.391.458-2.142.08l-.16-.087c-1.04-.619-1.488-1.86-.998-2.772.49-.912 1.73-1.15 2.772-.531.75.445 1.19 1.212 1.197 1.947l2.471 1.449.001-3.043a2.03 2.03 0 0 1-1.153-1.674l-.006-.16c0-1.12.908-2.03 2.029-2.03z" }) + ] + } + ); +}); + +export { SiLegacygames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.cjs new file mode 100644 index 000000000..96b0f6962 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E20612"; +const SiLeica = React__namespace.forwardRef(function SiLeica2({ title = "Leica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.42 10.954c.198.011.35.146.343.29-.033.94-1.19.795-1.19.795s.17-1.126.846-1.085zm9.313 2.064c.794 0 .952-1.605.952-1.64a.41.41 0 0 0-.423-.398c-.66 0-.9 1.203-.9 1.508 0 .116.007.53.37.53zm-9.949-5.08c.036-.318-.12-.662-.555-.662-1.06 0-1.509 2.963-1.509 2.963s1.853-.438 2.064-2.301zm-6.244 5.82c-.207.021-.423.114-.423.344 0 .139.235.382.608.37.49-.014 1.085-.475 1.085-.475s-.506-.207-1.085-.239a1.026 1.026 0 0 0-.185 0zM24 12.003C24 18.628 18.627 24 12 24 5.37 24 0 18.628 0 12.003 0 5.374 5.371 0 12 0c6.627 0 12 5.374 12 12.003zM11.933 9.446c0 .446.377.555.794.555.418 0 .82-.18.82-.635 0-.456-.48-.555-.82-.555-.471 0-.794.193-.794.635zM9.366 10.53c-1.41 0-2.407.866-2.407 1.904 0 .948.808 1.35 1.852 1.35 1.184 0 2.354-.714 2.354-.714s.071.714 1.006.714c.964 0 1.72-.714 1.72-.714s.417.687 1.376.687c.98 0 1.72-.793 1.72-.793s.272.74 1.243.74c.759 0 1.164-.476 1.164-.476s.212.477.873.477c.808 0 1.402-.556 1.402-.556l-.132-.476s-.307.238-.529.238c-.168 0-.265-.137-.265-.291 0-.347.556-2.064.556-2.064l-1.35.026-.052.212s-.201-.37-.9-.37c-1.352 0-2.085 1.166-2.116 1.852-.007.149-.027.158-.027.158-.032.036-.497.583-1.085.583-.47 0-.555-.384-.555-.635 0-.273.233-1.35.873-1.35.348 0 .555.291.555.291l.186-.608s-.292-.236-.9-.238c-1.308-.001-2.19.967-2.222 1.852-.007.132-.03.176-.027.185-.043.053-.35.423-.767.423-.286 0-.291-.219-.291-.317 0-.135.555-2.064.555-2.064l-1.481.026-.503 1.879s-.826.581-1.958.661c-.584.04-.794-.32-.794-.529v-.08c.001 0 .246.027.424.027.14 0 1.878-.134 1.878-1.19 0-.605-.613-.82-1.376-.82zm12.568 3.889-.132-.476s-3.096 1.078-9.022 1.005c-4.089-.05-7.224-1.243-7.224-1.243s.119-.212.185-.344c.41-.835.9-2.514.9-2.514s2.805-.785 2.805-3.016c0-.706-.674-1.162-1.323-1.19-2.264-.089-2.877 3.128-3.017 3.677-.007.039-.026.053-.026.053-.698-.095-1.085-.238-1.085-.238l-.159.45c.471.223 1.165.29 1.165.29-.136.865-.82 2.488-.82 2.488s-.608-.186-1.376-.186c-1 0-1.35.47-1.376.768-.066.77.911 1.137 1.587 1.137 1.32 0 2.011-.714 2.011-.714s3.695 1.402 7.567 1.402c5.069 0 9.34-1.35 9.34-1.35z" }) + ] + } + ); +}); + +exports.default = SiLeica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.d.ts new file mode 100644 index 000000000..06f857809 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E20612"; +declare const SiLeica: IconType; +export { SiLeica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.mjs new file mode 100644 index 000000000..5b30749e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E20612"; +const SiLeica = React.forwardRef(function SiLeica2({ title = "Leica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.42 10.954c.198.011.35.146.343.29-.033.94-1.19.795-1.19.795s.17-1.126.846-1.085zm9.313 2.064c.794 0 .952-1.605.952-1.64a.41.41 0 0 0-.423-.398c-.66 0-.9 1.203-.9 1.508 0 .116.007.53.37.53zm-9.949-5.08c.036-.318-.12-.662-.555-.662-1.06 0-1.509 2.963-1.509 2.963s1.853-.438 2.064-2.301zm-6.244 5.82c-.207.021-.423.114-.423.344 0 .139.235.382.608.37.49-.014 1.085-.475 1.085-.475s-.506-.207-1.085-.239a1.026 1.026 0 0 0-.185 0zM24 12.003C24 18.628 18.627 24 12 24 5.37 24 0 18.628 0 12.003 0 5.374 5.371 0 12 0c6.627 0 12 5.374 12 12.003zM11.933 9.446c0 .446.377.555.794.555.418 0 .82-.18.82-.635 0-.456-.48-.555-.82-.555-.471 0-.794.193-.794.635zM9.366 10.53c-1.41 0-2.407.866-2.407 1.904 0 .948.808 1.35 1.852 1.35 1.184 0 2.354-.714 2.354-.714s.071.714 1.006.714c.964 0 1.72-.714 1.72-.714s.417.687 1.376.687c.98 0 1.72-.793 1.72-.793s.272.74 1.243.74c.759 0 1.164-.476 1.164-.476s.212.477.873.477c.808 0 1.402-.556 1.402-.556l-.132-.476s-.307.238-.529.238c-.168 0-.265-.137-.265-.291 0-.347.556-2.064.556-2.064l-1.35.026-.052.212s-.201-.37-.9-.37c-1.352 0-2.085 1.166-2.116 1.852-.007.149-.027.158-.027.158-.032.036-.497.583-1.085.583-.47 0-.555-.384-.555-.635 0-.273.233-1.35.873-1.35.348 0 .555.291.555.291l.186-.608s-.292-.236-.9-.238c-1.308-.001-2.19.967-2.222 1.852-.007.132-.03.176-.027.185-.043.053-.35.423-.767.423-.286 0-.291-.219-.291-.317 0-.135.555-2.064.555-2.064l-1.481.026-.503 1.879s-.826.581-1.958.661c-.584.04-.794-.32-.794-.529v-.08c.001 0 .246.027.424.027.14 0 1.878-.134 1.878-1.19 0-.605-.613-.82-1.376-.82zm12.568 3.889-.132-.476s-3.096 1.078-9.022 1.005c-4.089-.05-7.224-1.243-7.224-1.243s.119-.212.185-.344c.41-.835.9-2.514.9-2.514s2.805-.785 2.805-3.016c0-.706-.674-1.162-1.323-1.19-2.264-.089-2.877 3.128-3.017 3.677-.007.039-.026.053-.026.053-.698-.095-1.085-.238-1.085-.238l-.159.45c.471.223 1.165.29 1.165.29-.136.865-.82 2.488-.82 2.488s-.608-.186-1.376-.186c-1 0-1.35.47-1.376.768-.066.77.911 1.137 1.587 1.137 1.32 0 2.011-.714 2.011-.714s3.695 1.402 7.567 1.402c5.069 0 9.34-1.35 9.34-1.35z" }) + ] + } + ); +}); + +export { SiLeica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.cjs new file mode 100644 index 000000000..64190f345 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLemmy = React__namespace.forwardRef(function SiLemmy2({ title = "Lemmy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.9595 4.2228a3.9132 3.9132 0 0 0-.332.019c-.8781.1012-1.67.5699-2.155 1.3862-.475.8-.5922 1.6809-.35 2.4971.2421.8162.8297 1.5575 1.6982 2.1449.0053.0035.0106.0076.0163.0114.746.4498 1.492.7431 2.2877.8994-.02.3318-.0272.6689-.006 1.0181.0634 1.0432.4368 2.0006.996 2.8492l-2.0061.8189a.4163.4163 0 0 0-.2276.2239.416.416 0 0 0 .0879.455.415.415 0 0 0 .2941.1231.4156.4156 0 0 0 .1595-.0312l2.2093-.9035c.408.4859.8695.9315 1.3723 1.318.0196.0151.0407.0264.0603.0423l-1.2918 1.7103a.416.416 0 0 0 .664.501l1.314-1.7385c.7185.4548 1.4782.7927 2.2294 1.0242.3833.7209 1.1379 1.1871 2.0202 1.1871.8907 0 1.6442-.501 2.0242-1.2072.744-.2347 1.4959-.5729 2.2073-1.0262l1.332 1.7606a.4157.4157 0 0 0 .7439-.1936.4165.4165 0 0 0-.0799-.3074l-1.3099-1.7345c.0083-.0075.0178-.0113.0261-.0188.4968-.3803.9549-.8175 1.3622-1.2939l2.155.8794a.4156.4156 0 0 0 .5412-.2276.4151.4151 0 0 0-.2273-.5432l-1.9438-.7928c.577-.8538.9697-1.8183 1.0504-2.8693.0268-.3507.0242-.6914.0079-1.0262.7905-.1572 1.5321-.4502 2.2737-.8974.0053-.0033.011-.0076.0163-.0113.8684-.5874 1.456-1.3287 1.6982-2.145.2421-.8161.125-1.697-.3501-2.497-.4849-.8163-1.2768-1.2852-2.155-1.3863a3.2175 3.2175 0 0 0-.332-.0189c-.7852-.0151-1.6231.229-2.4286.6942-.5926.342-1.1252.867-1.5433 1.4387-1.1699-.6703-2.6923-1.0476-4.5635-1.0785a15.5768 15.5768 0 0 0-.5111 0c-2.085.034-3.7537.43-5.0142 1.1449-.0033-.0038-.0045-.0114-.008-.0152-.4233-.5916-.973-1.1365-1.5835-1.489-.8055-.465-1.6434-.7083-2.4286-.6941Zm.2858.7365c.5568.042 1.1696.2358 1.7787.5875.485.28.9757.7554 1.346 1.2696a5.6875 5.6875 0 0 0-.4969.4085c-.9201.8516-1.4615 1.9597-1.668 3.2335-.6809-.1402-1.3183-.3945-1.984-.7948-.7553-.5128-1.2159-1.1225-1.4004-1.7445-.1851-.624-.1074-1.2712.2776-1.9196.3743-.63.9275-.9534 1.6118-1.0322a2.796 2.796 0 0 1 .5352-.0076Zm17.5094 0a2.797 2.797 0 0 1 .5353.0075c.6842.0786 1.2374.4021 1.6117 1.0322.385.6484.4627 1.2957.2776 1.9196-.1845.622-.645 1.2317-1.4004 1.7445-.6578.3955-1.2881.6472-1.9598.7888-.1942-1.2968-.7375-2.4338-1.666-3.302a5.5639 5.5639 0 0 0-.4709-.3923c.3645-.49.8287-.9428 1.2938-1.2113.6091-.3515 1.2219-.5454 1.7787-.5875ZM12.006 6.0036a14.832 14.832 0 0 1 .487 0c2.3901.0393 4.0848.67 5.1631 1.678 1.1501 1.0754 1.6423 2.6006 1.499 4.467-.1311 1.7079-1.2203 3.2281-2.652 4.324-.694.5313-1.4626.9354-2.2254 1.2294.0031-.0453.014-.0888.014-.1349.0029-1.1964-.9313-2.2133-2.2918-2.2133-1.3606 0-2.3222 1.0154-2.2918 2.2213.0013.0507.014.0972.0181.1471-.781-.2933-1.5696-.7013-2.2777-1.2456-1.4239-1.0945-2.4997-2.6129-2.6037-4.322-.1129-1.8567.3778-3.3382 1.5212-4.3965C7.5094 6.7 9.352 6.047 12.006 6.0036Zm-3.6419 6.8291c-.6053 0-1.0966.4903-1.0966 1.0966 0 .6063.4913 1.0986 1.0966 1.0986s1.0966-.4923 1.0966-1.0986c0-.6063-.4913-1.0966-1.0966-1.0966zm7.2819.0113c-.5998 0-1.0866.4859-1.0866 1.0866s.4868 1.0885 1.0866 1.0885c.5997 0 1.0865-.4878 1.0865-1.0885s-.4868-1.0866-1.0865-1.0866zM12 16.0835c1.0237 0 1.5654.638 1.5634 1.4829-.0018.7849-.6723 1.485-1.5634 1.485-.9167 0-1.54-.5629-1.5634-1.493-.0212-.8347.5397-1.4749 1.5634-1.4749Z" }) + ] + } + ); +}); + +exports.default = SiLemmy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.d.ts new file mode 100644 index 000000000..2d6dd21f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLemmy: IconType; +export { SiLemmy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.mjs new file mode 100644 index 000000000..0dfcc4bf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLemmy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLemmy = React.forwardRef(function SiLemmy2({ title = "Lemmy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.9595 4.2228a3.9132 3.9132 0 0 0-.332.019c-.8781.1012-1.67.5699-2.155 1.3862-.475.8-.5922 1.6809-.35 2.4971.2421.8162.8297 1.5575 1.6982 2.1449.0053.0035.0106.0076.0163.0114.746.4498 1.492.7431 2.2877.8994-.02.3318-.0272.6689-.006 1.0181.0634 1.0432.4368 2.0006.996 2.8492l-2.0061.8189a.4163.4163 0 0 0-.2276.2239.416.416 0 0 0 .0879.455.415.415 0 0 0 .2941.1231.4156.4156 0 0 0 .1595-.0312l2.2093-.9035c.408.4859.8695.9315 1.3723 1.318.0196.0151.0407.0264.0603.0423l-1.2918 1.7103a.416.416 0 0 0 .664.501l1.314-1.7385c.7185.4548 1.4782.7927 2.2294 1.0242.3833.7209 1.1379 1.1871 2.0202 1.1871.8907 0 1.6442-.501 2.0242-1.2072.744-.2347 1.4959-.5729 2.2073-1.0262l1.332 1.7606a.4157.4157 0 0 0 .7439-.1936.4165.4165 0 0 0-.0799-.3074l-1.3099-1.7345c.0083-.0075.0178-.0113.0261-.0188.4968-.3803.9549-.8175 1.3622-1.2939l2.155.8794a.4156.4156 0 0 0 .5412-.2276.4151.4151 0 0 0-.2273-.5432l-1.9438-.7928c.577-.8538.9697-1.8183 1.0504-2.8693.0268-.3507.0242-.6914.0079-1.0262.7905-.1572 1.5321-.4502 2.2737-.8974.0053-.0033.011-.0076.0163-.0113.8684-.5874 1.456-1.3287 1.6982-2.145.2421-.8161.125-1.697-.3501-2.497-.4849-.8163-1.2768-1.2852-2.155-1.3863a3.2175 3.2175 0 0 0-.332-.0189c-.7852-.0151-1.6231.229-2.4286.6942-.5926.342-1.1252.867-1.5433 1.4387-1.1699-.6703-2.6923-1.0476-4.5635-1.0785a15.5768 15.5768 0 0 0-.5111 0c-2.085.034-3.7537.43-5.0142 1.1449-.0033-.0038-.0045-.0114-.008-.0152-.4233-.5916-.973-1.1365-1.5835-1.489-.8055-.465-1.6434-.7083-2.4286-.6941Zm.2858.7365c.5568.042 1.1696.2358 1.7787.5875.485.28.9757.7554 1.346 1.2696a5.6875 5.6875 0 0 0-.4969.4085c-.9201.8516-1.4615 1.9597-1.668 3.2335-.6809-.1402-1.3183-.3945-1.984-.7948-.7553-.5128-1.2159-1.1225-1.4004-1.7445-.1851-.624-.1074-1.2712.2776-1.9196.3743-.63.9275-.9534 1.6118-1.0322a2.796 2.796 0 0 1 .5352-.0076Zm17.5094 0a2.797 2.797 0 0 1 .5353.0075c.6842.0786 1.2374.4021 1.6117 1.0322.385.6484.4627 1.2957.2776 1.9196-.1845.622-.645 1.2317-1.4004 1.7445-.6578.3955-1.2881.6472-1.9598.7888-.1942-1.2968-.7375-2.4338-1.666-3.302a5.5639 5.5639 0 0 0-.4709-.3923c.3645-.49.8287-.9428 1.2938-1.2113.6091-.3515 1.2219-.5454 1.7787-.5875ZM12.006 6.0036a14.832 14.832 0 0 1 .487 0c2.3901.0393 4.0848.67 5.1631 1.678 1.1501 1.0754 1.6423 2.6006 1.499 4.467-.1311 1.7079-1.2203 3.2281-2.652 4.324-.694.5313-1.4626.9354-2.2254 1.2294.0031-.0453.014-.0888.014-.1349.0029-1.1964-.9313-2.2133-2.2918-2.2133-1.3606 0-2.3222 1.0154-2.2918 2.2213.0013.0507.014.0972.0181.1471-.781-.2933-1.5696-.7013-2.2777-1.2456-1.4239-1.0945-2.4997-2.6129-2.6037-4.322-.1129-1.8567.3778-3.3382 1.5212-4.3965C7.5094 6.7 9.352 6.047 12.006 6.0036Zm-3.6419 6.8291c-.6053 0-1.0966.4903-1.0966 1.0966 0 .6063.4913 1.0986 1.0966 1.0986s1.0966-.4923 1.0966-1.0986c0-.6063-.4913-1.0966-1.0966-1.0966zm7.2819.0113c-.5998 0-1.0866.4859-1.0866 1.0866s.4868 1.0885 1.0866 1.0885c.5997 0 1.0865-.4878 1.0865-1.0885s-.4868-1.0866-1.0865-1.0866zM12 16.0835c1.0237 0 1.5654.638 1.5634 1.4829-.0018.7849-.6723 1.485-1.5634 1.485-.9167 0-1.54-.5629-1.5634-1.493-.0212-.8347.5397-1.4749 1.5634-1.4749Z" }) + ] + } + ); +}); + +export { SiLemmy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.cjs new file mode 100644 index 000000000..4b225c604 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC233"; +const SiLemonsqueezy = React__namespace.forwardRef(function SiLemonsqueezy2({ title = "Lemon Squeezy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.4916 10.835 2.3748-6.5114a3.1497 3.1497 0 0 0-.065-2.3418C9.0315.183 6.9427-.398 5.2928.265 3.643.929 2.71 2.4348 3.512 4.3046l2.8197 6.5615c.219.509.97.489 1.16-.03m1.6798 1.0969 6.5334-2.7758c2.1699-.9219 2.7218-3.6907 1.022-5.2905l-.068-.063c-1.6669-1.5469-4.4217-1.002-5.3706 1.0359L8.3566 11.135c-.234.503.295 1.0199.8159.7979m.373.87 6.6454-2.5119c2.2078-.8349 4.6206.745 4.5886 3.0398l-.002.09c-.048 2.2358-2.3938 3.7376-4.5536 2.9467l-6.6724-2.4418a.595.595 0 0 1-.006-1.1229m-.386 1.9269 6.4375 2.9767a3.2997 3.2997 0 0 1 1.6658 1.6989c.769 1.7998-.283 3.6396-1.9328 4.3016-1.6499.662-3.4097.235-4.2097-1.6359l-2.8027-6.5694c-.217-.509.328-1.009.8419-.772" }) + ] + } + ); +}); + +exports.default = SiLemonsqueezy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.d.ts new file mode 100644 index 000000000..ca71e4261 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC233"; +declare const SiLemonsqueezy: IconType; +export { SiLemonsqueezy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.mjs new file mode 100644 index 000000000..4be4a5b27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLemonsqueezy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC233"; +const SiLemonsqueezy = React.forwardRef(function SiLemonsqueezy2({ title = "Lemon Squeezy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.4916 10.835 2.3748-6.5114a3.1497 3.1497 0 0 0-.065-2.3418C9.0315.183 6.9427-.398 5.2928.265 3.643.929 2.71 2.4348 3.512 4.3046l2.8197 6.5615c.219.509.97.489 1.16-.03m1.6798 1.0969 6.5334-2.7758c2.1699-.9219 2.7218-3.6907 1.022-5.2905l-.068-.063c-1.6669-1.5469-4.4217-1.002-5.3706 1.0359L8.3566 11.135c-.234.503.295 1.0199.8159.7979m.373.87 6.6454-2.5119c2.2078-.8349 4.6206.745 4.5886 3.0398l-.002.09c-.048 2.2358-2.3938 3.7376-4.5536 2.9467l-6.6724-2.4418a.595.595 0 0 1-.006-1.1229m-.386 1.9269 6.4375 2.9767a3.2997 3.2997 0 0 1 1.6658 1.6989c.769 1.7998-.283 3.6396-1.9328 4.3016-1.6499.662-3.4097.235-4.2097-1.6359l-2.8027-6.5694c-.217-.509.328-1.009.8419-.772" }) + ] + } + ); +}); + +export { SiLemonsqueezy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.cjs new file mode 100644 index 000000000..fdf1ad9cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E2231A"; +const SiLenovo = React__namespace.forwardRef(function SiLenovo2({ title = "Lenovo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.044 12.288c0 .5-.343.867-.815.867-.464 0-.827-.38-.827-.867 0-.51.343-.868.815-.868.464 0 .827.381.827.868zm-14.305-.92a.787.787 0 0 0-.651.307.991.991 0 0 0-.172.738l1.479-.614a.708.708 0 0 0-.656-.43zm6.963.052c-.472 0-.816.358-.816.868 0 .486.364.867.828.867.472 0 .815-.368.815-.867 0-.487-.363-.868-.827-.868zM24 7.997v8.006H0V7.997h24zM5.01 13.05H3.088V9.825H2.23v4.003h2.78v-.777zm1.137-.094l2.163-.897a1.667 1.667 0 0 0-.37-.86c-.284-.33-.704-.505-1.216-.505-.931 0-1.633.686-1.633 1.593 0 .93.704 1.593 1.726 1.593.572 0 1.158-.272 1.432-.589l-.535-.411c-.357.264-.56.326-.885.326-.292 0-.52-.09-.682-.25zm5.57-1.039c0-.709-.507-1.223-1.252-1.223a1.28 1.28 0 0 0-1.005.494v-.442h-.846v3.081h.846v-1.753c0-.316.245-.651.698-.651.35 0 .712.243.712.651v1.753h.847v-1.91zm3.647.37c0-.904-.725-1.593-1.65-1.593-.933 0-1.663.7-1.663 1.593 0 .903.726 1.592 1.651 1.592.932 0 1.662-.7 1.662-1.592zm2.066 1.54l1.268-3.081h-.967l-.765 2.099-.765-2.1h-.966l1.268 3.081h.927zm4.449-1.54c0-.904-.725-1.593-1.65-1.593-.932 0-1.662.7-1.662 1.593 0 .903.725 1.592 1.65 1.592.932 0 1.662-.7 1.662-1.592z" }) + ] + } + ); +}); + +exports.default = SiLenovo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.d.ts new file mode 100644 index 000000000..e136cda8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E2231A"; +declare const SiLenovo: IconType; +export { SiLenovo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.mjs new file mode 100644 index 000000000..6086e62fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLenovo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E2231A"; +const SiLenovo = React.forwardRef(function SiLenovo2({ title = "Lenovo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.044 12.288c0 .5-.343.867-.815.867-.464 0-.827-.38-.827-.867 0-.51.343-.868.815-.868.464 0 .827.381.827.868zm-14.305-.92a.787.787 0 0 0-.651.307.991.991 0 0 0-.172.738l1.479-.614a.708.708 0 0 0-.656-.43zm6.963.052c-.472 0-.816.358-.816.868 0 .486.364.867.828.867.472 0 .815-.368.815-.867 0-.487-.363-.868-.827-.868zM24 7.997v8.006H0V7.997h24zM5.01 13.05H3.088V9.825H2.23v4.003h2.78v-.777zm1.137-.094l2.163-.897a1.667 1.667 0 0 0-.37-.86c-.284-.33-.704-.505-1.216-.505-.931 0-1.633.686-1.633 1.593 0 .93.704 1.593 1.726 1.593.572 0 1.158-.272 1.432-.589l-.535-.411c-.357.264-.56.326-.885.326-.292 0-.52-.09-.682-.25zm5.57-1.039c0-.709-.507-1.223-1.252-1.223a1.28 1.28 0 0 0-1.005.494v-.442h-.846v3.081h.846v-1.753c0-.316.245-.651.698-.651.35 0 .712.243.712.651v1.753h.847v-1.91zm3.647.37c0-.904-.725-1.593-1.65-1.593-.933 0-1.663.7-1.663 1.593 0 .903.726 1.592 1.651 1.592.932 0 1.662-.7 1.662-1.592zm2.066 1.54l1.268-3.081h-.967l-.765 2.099-.765-2.1h-.966l1.268 3.081h.927zm4.449-1.54c0-.904-.725-1.593-1.65-1.593-.932 0-1.662.7-1.662 1.593 0 .903.725 1.592 1.65 1.592.932 0 1.662-.7 1.662-1.592z" }) + ] + } + ); +}); + +export { SiLenovo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLens.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLens.cjs new file mode 100644 index 000000000..c4b9dbbe5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLens.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3D90CE"; +const SiLens = React__namespace.forwardRef(function SiLens2({ title = "Lens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.255 3.5H3.5v4.255l3.75 4.715ZM3.5 8.955v7.125h5.665ZM19.545 3.5H10.02L8.87 8.635Zm-.9 17H20.5v-8.4l-4.32-2.105Zm-5.79-12.95 7.645 3.72v-7.4ZM3.5 16.825V20.5h6.88l2.875-3.675zm7.83 3.675h6.545l-1.51-6.435zM0 0h24v24H0Z" }) + ] + } + ); +}); + +exports.default = SiLens; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLens.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLens.d.ts new file mode 100644 index 000000000..537cd6367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLens.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3D90CE"; +declare const SiLens: IconType; +export { SiLens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLens.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLens.mjs new file mode 100644 index 000000000..5e03ec9d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLens.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3D90CE"; +const SiLens = React.forwardRef(function SiLens2({ title = "Lens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.255 3.5H3.5v4.255l3.75 4.715ZM3.5 8.955v7.125h5.665ZM19.545 3.5H10.02L8.87 8.635Zm-.9 17H20.5v-8.4l-4.32-2.105Zm-5.79-12.95 7.645 3.72v-7.4ZM3.5 16.825V20.5h6.88l2.875-3.675zm7.83 3.675h6.545l-1.51-6.435zM0 0h24v24H0Z" }) + ] + } + ); +}); + +export { SiLens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.cjs new file mode 100644 index 000000000..0a15c9a73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF3939"; +const SiLeptos = React__namespace.forwardRef(function SiLeptos2({ title = "Leptos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.097 17.876A6.207 6.207 0 0 1 5.834 12c0-3.393 2.773-6.166 6.166-6.166.248 0 .517.021.766.042a9.896 9.896 0 0 1 1.49-2.504 3.575 3.575 0 0 1-.85-2.296c0-.331.042-.662.146-.993A19.487 19.487 0 0 0 12 0C5.38 0 0 5.38 0 12c0 4.366 2.338 8.172 5.814 10.283l.124-.062a8.434 8.434 0 0 0 4.159-4.345Zm6.848-14.979c.662 0 1.262-.352 1.593-.952v-.02a12.32 12.32 0 0 0-3.269-1.49v.02a1.851 1.851 0 0 0-.124.642c0 .993.807 1.8 1.8 1.8ZM19.924 3c-.662 1.014-1.758 1.634-2.98 1.634a3.54 3.54 0 0 1-.806-.103 3.153 3.153 0 0 1-.476-.145 8.75 8.75 0 0 0-1.22 1.945c2.275.993 3.724 3.186 3.724 5.669 0 3.393-2.773 6.166-6.166 6.166h-.145a10.374 10.374 0 0 1-4.117 5.048C9.062 23.71 10.51 24 12 24c6.62 0 12-5.38 12-12 0-3.58-1.572-6.807-4.076-9Zm-8.848 4.67a4.428 4.428 0 1 0 1.849 8.661 4.428 4.428 0 1 0-1.85-8.66z" }) + ] + } + ); +}); + +exports.default = SiLeptos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.d.ts new file mode 100644 index 000000000..d0f6fb128 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF3939"; +declare const SiLeptos: IconType; +export { SiLeptos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.mjs new file mode 100644 index 000000000..2efa6d07e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeptos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF3939"; +const SiLeptos = React.forwardRef(function SiLeptos2({ title = "Leptos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.097 17.876A6.207 6.207 0 0 1 5.834 12c0-3.393 2.773-6.166 6.166-6.166.248 0 .517.021.766.042a9.896 9.896 0 0 1 1.49-2.504 3.575 3.575 0 0 1-.85-2.296c0-.331.042-.662.146-.993A19.487 19.487 0 0 0 12 0C5.38 0 0 5.38 0 12c0 4.366 2.338 8.172 5.814 10.283l.124-.062a8.434 8.434 0 0 0 4.159-4.345Zm6.848-14.979c.662 0 1.262-.352 1.593-.952v-.02a12.32 12.32 0 0 0-3.269-1.49v.02a1.851 1.851 0 0 0-.124.642c0 .993.807 1.8 1.8 1.8ZM19.924 3c-.662 1.014-1.758 1.634-2.98 1.634a3.54 3.54 0 0 1-.806-.103 3.153 3.153 0 0 1-.476-.145 8.75 8.75 0 0 0-1.22 1.945c2.275.993 3.724 3.186 3.724 5.669 0 3.393-2.773 6.166-6.166 6.166h-.145a10.374 10.374 0 0 1-4.117 5.048C9.062 23.71 10.51 24 12 24c6.62 0 12-5.38 12-12 0-3.58-1.572-6.807-4.076-9Zm-8.848 4.67a4.428 4.428 0 1 0 1.849 8.661 4.428 4.428 0 1 0-1.85-8.66z" }) + ] + } + ); +}); + +export { SiLeptos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.cjs new file mode 100644 index 000000000..5b563e05f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E42829"; +const SiLequipe = React__namespace.forwardRef(function SiLequipe2({ title = "LÉquipe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.109 9.885-.132.301H5l-.258.612h.399l-1.32 3.092h2.398l.265-.611H5.312l.454-1.051h1.172l.234-.557H6.008l.375-.866h1.164l.258-.611H6.711l.133-.309h-.735Zm3.575.27c-1.223.008-1.74.891-2.024 1.492-.811 1.722.479 2.232.773 2.285.168.031.505.031.674 0l.107.183h.635l-.215-.328c.475-.03 1.034-.678 1.278-1.195.245-.518.962-2.397-1.228-2.437Zm11.449.012-.269.63h.437l-1.317 3.077h2.422l.242-.551h-1.234l.461-1.078h1.235l.242-.567h-1.235l.383-.885h1.226l.274-.626h-2.867Zm-17.828.004-.27.625h.415c-.087.211-.192.477-.34.805.828-.195 1.249-.844 1.359-1.43H3.305Zm-2.109.001-.266.619h.398L0 13.89h2.445l.258-.603H1.539l1.336-3.115H1.196Zm10.749.009-.266.61h.415l-.766 1.804c-.312.682.141 1.31 1.149 1.318 1.038.009 1.39-.636 1.5-.904l1.203-2.828h-.664l-1.203 2.798c-.211.413-1.149.376-.883-.153l1.133-2.645h-1.618Zm5.688.008-.27.603h.426l-1.313 3.098h1.212l.546-1.29h1.203c.571 0 .974-.562 1.164-1.051.196-.502.063-1.36-.718-1.36h-2.25Zm-2.031.001-.258.605h.351l-1.32 3.103h1.211l1.601-3.708h-1.585Zm-5.918.555c.279-.012.553.172.448.431l-.842 1.972-.191-.312-.467.259.115.175c-.406 0-.336-.335-.237-.525l.734-1.715a.487.487 0 0 1 .44-.285Zm9.308.047h.36c.304 0 .124.61.07.719-.055.108-.211.471-.446.471h-.5l.516-1.19Z" }) + ] + } + ); +}); + +exports.default = SiLequipe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.d.ts new file mode 100644 index 000000000..93182250b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E42829"; +declare const SiLequipe: IconType; +export { SiLequipe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.mjs new file mode 100644 index 000000000..ed2631362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLequipe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E42829"; +const SiLequipe = React.forwardRef(function SiLequipe2({ title = "LÉquipe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.109 9.885-.132.301H5l-.258.612h.399l-1.32 3.092h2.398l.265-.611H5.312l.454-1.051h1.172l.234-.557H6.008l.375-.866h1.164l.258-.611H6.711l.133-.309h-.735Zm3.575.27c-1.223.008-1.74.891-2.024 1.492-.811 1.722.479 2.232.773 2.285.168.031.505.031.674 0l.107.183h.635l-.215-.328c.475-.03 1.034-.678 1.278-1.195.245-.518.962-2.397-1.228-2.437Zm11.449.012-.269.63h.437l-1.317 3.077h2.422l.242-.551h-1.234l.461-1.078h1.235l.242-.567h-1.235l.383-.885h1.226l.274-.626h-2.867Zm-17.828.004-.27.625h.415c-.087.211-.192.477-.34.805.828-.195 1.249-.844 1.359-1.43H3.305Zm-2.109.001-.266.619h.398L0 13.89h2.445l.258-.603H1.539l1.336-3.115H1.196Zm10.749.009-.266.61h.415l-.766 1.804c-.312.682.141 1.31 1.149 1.318 1.038.009 1.39-.636 1.5-.904l1.203-2.828h-.664l-1.203 2.798c-.211.413-1.149.376-.883-.153l1.133-2.645h-1.618Zm5.688.008-.27.603h.426l-1.313 3.098h1.212l.546-1.29h1.203c.571 0 .974-.562 1.164-1.051.196-.502.063-1.36-.718-1.36h-2.25Zm-2.031.001-.258.605h.351l-1.32 3.103h1.211l1.601-3.708h-1.585Zm-5.918.555c.279-.012.553.172.448.431l-.842 1.972-.191-.312-.467.259.115.175c-.406 0-.336-.335-.237-.525l.734-1.715a.487.487 0 0 1 .44-.285Zm9.308.047h.36c.304 0 .124.61.07.719-.055.108-.211.471-.446.471h-.5l.516-1.19Z" }) + ] + } + ); +}); + +export { SiLequipe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.cjs new file mode 100644 index 000000000..47d64fe4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C084FC"; +const SiLerna = React__namespace.forwardRef(function SiLerna2({ title = "Lerna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.452 18.006c-.147 0-.257.073-.367.147-1.764 3.38-5.329 5.034-10.583 5.034q-1.213 0-2.646-.11c-.074-.11-.257-.368-.551-.735-.22-.294-.331-.551-.368-.809.074-2.094.147-5.254.147-9.443 0-4.19.037-7.35.147-9.444.22-.698.698-1.03 1.47-1.03.147 0 .33 0 .551.038.258.036.441.036.551.036.552 0 .993-.147 1.287-.477V.772c0-.11-.037-.258-.147-.331C10.84.257 9.333.184 7.46.184H5.586C4.263.184 2.94.147 1.616 0c-.183.367-.256.661-.256.882q0 .495.771.551c.515.037 1.066.074 1.58.11.588.147.956.478 1.066 1.066a36 36 0 0 0 .037 3.38c.073 1.654.147 2.72.147 3.271 0 .845-.037 1.727-.184 2.572.037.441.074 1.507.184 3.234q.11 2.205.11 3.528c0 .918-.037 1.837-.147 2.719-.184.551-.33.882-.367.955q-.33.551-.882.551-.276.11-1.323.11c-.588 0-.992.111-1.176.368.147.368.367.551.625.625 1.102.037 2.241.037 3.49.037 1.287 0 3.124 0 5.512-.037 2.426-.037 4.226-.037 5.439-.037 1.654 0 3.16.037 4.593.11.294.037.478-.147.551-.514.11-.441.184-.698.258-.772-.037-.588.147-1.396.588-2.351s.624-1.728.588-2.279c-.11 0-.221-.036-.368-.073" }) + ] + } + ); +}); + +exports.default = SiLerna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.d.ts new file mode 100644 index 000000000..c4a342658 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C084FC"; +declare const SiLerna: IconType; +export { SiLerna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.mjs new file mode 100644 index 000000000..623ede298 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLerna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C084FC"; +const SiLerna = React.forwardRef(function SiLerna2({ title = "Lerna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.452 18.006c-.147 0-.257.073-.367.147-1.764 3.38-5.329 5.034-10.583 5.034q-1.213 0-2.646-.11c-.074-.11-.257-.368-.551-.735-.22-.294-.331-.551-.368-.809.074-2.094.147-5.254.147-9.443 0-4.19.037-7.35.147-9.444.22-.698.698-1.03 1.47-1.03.147 0 .33 0 .551.038.258.036.441.036.551.036.552 0 .993-.147 1.287-.477V.772c0-.11-.037-.258-.147-.331C10.84.257 9.333.184 7.46.184H5.586C4.263.184 2.94.147 1.616 0c-.183.367-.256.661-.256.882q0 .495.771.551c.515.037 1.066.074 1.58.11.588.147.956.478 1.066 1.066a36 36 0 0 0 .037 3.38c.073 1.654.147 2.72.147 3.271 0 .845-.037 1.727-.184 2.572.037.441.074 1.507.184 3.234q.11 2.205.11 3.528c0 .918-.037 1.837-.147 2.719-.184.551-.33.882-.367.955q-.33.551-.882.551-.276.11-1.323.11c-.588 0-.992.111-1.176.368.147.368.367.551.625.625 1.102.037 2.241.037 3.49.037 1.287 0 3.124 0 5.512-.037 2.426-.037 4.226-.037 5.439-.037 1.654 0 3.16.037 4.593.11.294.037.478-.147.551-.514.11-.441.184-.698.258-.772-.037-.588.147-1.396.588-2.351s.624-1.728.588-2.279c-.11 0-.221-.036-.368-.073" }) + ] + } + ); +}); + +export { SiLerna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.cjs new file mode 100644 index 000000000..8cae911f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#78BE20"; +const SiLeroymerlin = React__namespace.forwardRef(function SiLeroymerlin2({ title = "Leroy Merlin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.407 7.419c-.17-.164-.329-.323-.478-.468.707-.722 1.414-1.444 2.116-2.166.239.234.468.453.687.683.02.02.01.084-.01.119-.22.433-.438.866-.657 1.3-.02.04-.04.074-.07.139l.134-.055c.449-.204.902-.403 1.35-.612.074-.035.12-.035.184.03.2.199.403.393.583.567-.722.742-1.434 1.464-2.136 2.181-.18-.174-.349-.343-.513-.503.348-.353.707-.717 1.065-1.075l-.015-.03-.11.045-1.284.582c-.07.03-.12.04-.174-.025-.075-.09-.21-.164-.224-.258-.015-.095.074-.215.124-.32.18-.393.364-.786.528-1.194-.368.358-.737.712-1.1 1.06zm11.71 10.357c.01-.045.016-.06.016-.074.194-.683.388-1.365.577-2.047.01-.04.02-.104-.005-.13-.234-.238-.473-.467-.722-.706l-2.116 2.16c.15.145.319.31.493.484.463-.454.941-.917 1.4-1.36 0-.015 0 0-.006.015-.159.667-.313 1.335-.483 1.997-.044.18-.035.304.115.428.17.14.319.309.488.478L24 16.851c-.144-.14-.309-.3-.503-.494-.443.458-.901.926-1.38 1.42zm-7.956-6.582c.124-.13.269-.274.433-.443-.299-.294-.612-.593-.906-.877.164-.164.314-.318.478-.488.234.234.478.478.717.712.14-.144.284-.289.458-.463-.239-.234-.493-.473-.717-.692l.334-.358c.313.308.627.612.936.916.134-.135.274-.28.413-.424-.498-.487-1.006-.98-1.519-1.483l-2.11 2.156c.487.468.99.96 1.483 1.444zM3.187 15.102c-.155-.139-.29-.264-.409-.373.294-.314.588-.622.887-.941-.13-.12-.27-.254-.414-.389-.488.478-.985.966-1.473 1.44l2.15 2.15c.489-.477.987-.96 1.49-1.453-.15-.14-.29-.27-.434-.409-.304.294-.617.603-.916.897l-.463-.434c.249-.264.488-.522.737-.786-.14-.13-.284-.264-.468-.439zm5.258-6.647c-.07-.025-.115-.02-.165.035-.149.154-.308.304-.463.453-.02.02-.034.045-.06.075.38.124.743.239 1.111.358.264.085.553.13.787.27.229.139.408.373.602.572.1.104.194.214.294.328.2-.214.373-.398.553-.587-.24-.244-.498-.503-.747-.767a.39.39 0 0 1-.09-.16c-.09-.363-.174-.731-.264-1.095-.07-.294-.144-.592-.219-.906-.214.21-.413.403-.607.598-.02.02-.02.074-.01.11.04.148.084.293.124.442.06.214.12.428.185.667-.364-.149-.698-.268-1.031-.393zm11.193 3.998-.558-.542c-.697.712-1.399 1.434-2.116 2.166.478.468.976.95 1.47 1.429.154-.16.323-.329.507-.518-.294-.289-.602-.588-.911-.886.548-.568 1.085-1.116 1.608-1.649zm-17.532 6.33c.498-.484.986-.962 1.479-1.445-.174-.16-.344-.319-.518-.478-.289.279-.592.578-.906.881-.548-.562-1.09-1.115-1.633-1.673-.18.19-.354.369-.528.558.692.707 1.394 1.43 2.106 2.156zm18.842-4.995c-.697.712-1.4 1.434-2.102 2.15.16.16.339.34.533.529.697-.712 1.404-1.434 2.106-2.156-.159-.16-.343-.334-.537-.523zm-2.973-1.759c-.294.23-.612.299-.976.16-.154.478-.309.946-.463 1.424-.19-.185-.368-.354-.543-.538-.025-.03-.015-.105-.005-.15.125-.572.25-1.145.379-1.722.005-.02.005-.04-.01-.075-.374.388-.747.777-1.116 1.155l-.552-.538 2.086-2.16c.468.452.921.87 1.344 1.319.284.289.195.856-.144 1.125zm-.543-.97c-.154-.17-.333-.32-.498-.474-.154.16-.318.324-.493.503.1.105.205.22.31.329.02.025.039.05.064.064.045.035.09.07.14.09.159.07.338.02.442-.114.115-.14.14-.29.035-.399zm-8.086.084c0 .812-.762 1.543-1.608 1.543-.807 0-1.549-.746-1.549-1.558 0-.901.657-1.569 1.554-1.569a1.582 1.582 0 0 1 1.603 1.584zm-.747 0a1.603 1.603 0 0 0-.752-.837.581.581 0 0 0-.642.05c-.21.15-.329.354-.304.623.04.428.657.99 1.086.985.398-.005.757-.463.612-.821zm-1.045 2.276c-.17.18-.334.359-.503.533-.025.025-.095.015-.14.005-.538-.14-1.075-.284-1.613-.423a.218.218 0 0 0-.115-.005l1.096 1.125c-.18.194-.359.384-.523.558L3.59 13.091c.03-.035.05-.06.07-.08.338-.338.682-.672 1.02-1.006.225-.219.493-.333.812-.293.408.05.707.378.717.801.005.15-.02.304-.03.463.463.145.926.299 1.375.443zm-2.063-.826c-.134-.135-.304-.164-.443-.055-.154.12-.294.259-.443.393.189.175.363.339.552.513.08-.074.185-.169.284-.264.04-.04.08-.074.11-.12.104-.158.084-.323-.06-.467zm15.86 6.622H2.554c-.015-.015-.025-.03-.04-.045.04-.02.085-.03.115-.06 1.305-1.289 2.604-2.579 3.904-3.863l4.566-4.521c.264-.264.533-.518.796-.787.085-.085.13-.085.215 0 1.483 1.494 2.977 2.982 4.466 4.471 1.568 1.569 3.132 3.137 4.7 4.7a.78.78 0 0 0 .1.08c-.01.01-.015.02-.025.025z" }) + ] + } + ); +}); + +exports.default = SiLeroymerlin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.d.ts new file mode 100644 index 000000000..a4d8ad5d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#78BE20"; +declare const SiLeroymerlin: IconType; +export { SiLeroymerlin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.mjs new file mode 100644 index 000000000..9044bb62e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeroymerlin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#78BE20"; +const SiLeroymerlin = React.forwardRef(function SiLeroymerlin2({ title = "Leroy Merlin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.407 7.419c-.17-.164-.329-.323-.478-.468.707-.722 1.414-1.444 2.116-2.166.239.234.468.453.687.683.02.02.01.084-.01.119-.22.433-.438.866-.657 1.3-.02.04-.04.074-.07.139l.134-.055c.449-.204.902-.403 1.35-.612.074-.035.12-.035.184.03.2.199.403.393.583.567-.722.742-1.434 1.464-2.136 2.181-.18-.174-.349-.343-.513-.503.348-.353.707-.717 1.065-1.075l-.015-.03-.11.045-1.284.582c-.07.03-.12.04-.174-.025-.075-.09-.21-.164-.224-.258-.015-.095.074-.215.124-.32.18-.393.364-.786.528-1.194-.368.358-.737.712-1.1 1.06zm11.71 10.357c.01-.045.016-.06.016-.074.194-.683.388-1.365.577-2.047.01-.04.02-.104-.005-.13-.234-.238-.473-.467-.722-.706l-2.116 2.16c.15.145.319.31.493.484.463-.454.941-.917 1.4-1.36 0-.015 0 0-.006.015-.159.667-.313 1.335-.483 1.997-.044.18-.035.304.115.428.17.14.319.309.488.478L24 16.851c-.144-.14-.309-.3-.503-.494-.443.458-.901.926-1.38 1.42zm-7.956-6.582c.124-.13.269-.274.433-.443-.299-.294-.612-.593-.906-.877.164-.164.314-.318.478-.488.234.234.478.478.717.712.14-.144.284-.289.458-.463-.239-.234-.493-.473-.717-.692l.334-.358c.313.308.627.612.936.916.134-.135.274-.28.413-.424-.498-.487-1.006-.98-1.519-1.483l-2.11 2.156c.487.468.99.96 1.483 1.444zM3.187 15.102c-.155-.139-.29-.264-.409-.373.294-.314.588-.622.887-.941-.13-.12-.27-.254-.414-.389-.488.478-.985.966-1.473 1.44l2.15 2.15c.489-.477.987-.96 1.49-1.453-.15-.14-.29-.27-.434-.409-.304.294-.617.603-.916.897l-.463-.434c.249-.264.488-.522.737-.786-.14-.13-.284-.264-.468-.439zm5.258-6.647c-.07-.025-.115-.02-.165.035-.149.154-.308.304-.463.453-.02.02-.034.045-.06.075.38.124.743.239 1.111.358.264.085.553.13.787.27.229.139.408.373.602.572.1.104.194.214.294.328.2-.214.373-.398.553-.587-.24-.244-.498-.503-.747-.767a.39.39 0 0 1-.09-.16c-.09-.363-.174-.731-.264-1.095-.07-.294-.144-.592-.219-.906-.214.21-.413.403-.607.598-.02.02-.02.074-.01.11.04.148.084.293.124.442.06.214.12.428.185.667-.364-.149-.698-.268-1.031-.393zm11.193 3.998-.558-.542c-.697.712-1.399 1.434-2.116 2.166.478.468.976.95 1.47 1.429.154-.16.323-.329.507-.518-.294-.289-.602-.588-.911-.886.548-.568 1.085-1.116 1.608-1.649zm-17.532 6.33c.498-.484.986-.962 1.479-1.445-.174-.16-.344-.319-.518-.478-.289.279-.592.578-.906.881-.548-.562-1.09-1.115-1.633-1.673-.18.19-.354.369-.528.558.692.707 1.394 1.43 2.106 2.156zm18.842-4.995c-.697.712-1.4 1.434-2.102 2.15.16.16.339.34.533.529.697-.712 1.404-1.434 2.106-2.156-.159-.16-.343-.334-.537-.523zm-2.973-1.759c-.294.23-.612.299-.976.16-.154.478-.309.946-.463 1.424-.19-.185-.368-.354-.543-.538-.025-.03-.015-.105-.005-.15.125-.572.25-1.145.379-1.722.005-.02.005-.04-.01-.075-.374.388-.747.777-1.116 1.155l-.552-.538 2.086-2.16c.468.452.921.87 1.344 1.319.284.289.195.856-.144 1.125zm-.543-.97c-.154-.17-.333-.32-.498-.474-.154.16-.318.324-.493.503.1.105.205.22.31.329.02.025.039.05.064.064.045.035.09.07.14.09.159.07.338.02.442-.114.115-.14.14-.29.035-.399zm-8.086.084c0 .812-.762 1.543-1.608 1.543-.807 0-1.549-.746-1.549-1.558 0-.901.657-1.569 1.554-1.569a1.582 1.582 0 0 1 1.603 1.584zm-.747 0a1.603 1.603 0 0 0-.752-.837.581.581 0 0 0-.642.05c-.21.15-.329.354-.304.623.04.428.657.99 1.086.985.398-.005.757-.463.612-.821zm-1.045 2.276c-.17.18-.334.359-.503.533-.025.025-.095.015-.14.005-.538-.14-1.075-.284-1.613-.423a.218.218 0 0 0-.115-.005l1.096 1.125c-.18.194-.359.384-.523.558L3.59 13.091c.03-.035.05-.06.07-.08.338-.338.682-.672 1.02-1.006.225-.219.493-.333.812-.293.408.05.707.378.717.801.005.15-.02.304-.03.463.463.145.926.299 1.375.443zm-2.063-.826c-.134-.135-.304-.164-.443-.055-.154.12-.294.259-.443.393.189.175.363.339.552.513.08-.074.185-.169.284-.264.04-.04.08-.074.11-.12.104-.158.084-.323-.06-.467zm15.86 6.622H2.554c-.015-.015-.025-.03-.04-.045.04-.02.085-.03.115-.06 1.305-1.289 2.604-2.579 3.904-3.863l4.566-4.521c.264-.264.533-.518.796-.787.085-.085.13-.085.215 0 1.483 1.494 2.977 2.982 4.466 4.471 1.568 1.569 3.132 3.137 4.7 4.7a.78.78 0 0 0 .1.08c-.01.01-.015.02-.025.025z" }) + ] + } + ); +}); + +export { SiLeroymerlin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.cjs new file mode 100644 index 000000000..24306aa1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CF4A0C"; +const SiLeslibraires = React__namespace.forwardRef(function SiLeslibraires2({ title = "Les libraires", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.79.002a10.579 10.579 0 0 0-7.735 3.575C.18 7.958.593 14.647 4.981 18.518a10.557 10.557 0 0 0 5.3 2.51L12.002 24l1.717-2.971a10.56 10.56 0 0 0 6.227-3.437c3.876-4.38 3.461-11.07-.926-14.94a10.567 10.567 0 0 0-7.23-2.65zM11.277 7.5l.613.512-1.862 2.444c-.005.007-.048.06-.048.115 0 .056.045.112.045.113l1.866 2.461-.615.502-2.573-2.403a.883.883 0 0 1-.3-.667c0-.38.22-.596.304-.678zm3.265 0 .613.512-1.863 2.444c-.005.007-.048.06-.048.115 0 .056.045.112.046.113l1.866 2.461-.615.502-2.573-2.403a.883.883 0 0 1-.301-.667c0-.38.222-.596.305-.678z" }) + ] + } + ); +}); + +exports.default = SiLeslibraires; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.d.ts new file mode 100644 index 000000000..ca15afeda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CF4A0C"; +declare const SiLeslibraires: IconType; +export { SiLeslibraires as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.mjs new file mode 100644 index 000000000..a19ef3057 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLeslibraires.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CF4A0C"; +const SiLeslibraires = React.forwardRef(function SiLeslibraires2({ title = "Les libraires", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.79.002a10.579 10.579 0 0 0-7.735 3.575C.18 7.958.593 14.647 4.981 18.518a10.557 10.557 0 0 0 5.3 2.51L12.002 24l1.717-2.971a10.56 10.56 0 0 0 6.227-3.437c3.876-4.38 3.461-11.07-.926-14.94a10.567 10.567 0 0 0-7.23-2.65zM11.277 7.5l.613.512-1.862 2.444c-.005.007-.048.06-.048.115 0 .056.045.112.045.113l1.866 2.461-.615.502-2.573-2.403a.883.883 0 0 1-.3-.667c0-.38.22-.596.304-.678zm3.265 0 .613.512-1.863 2.444c-.005.007-.048.06-.048.115 0 .056.045.112.046.113l1.866 2.461-.615.502-2.573-2.403a.883.883 0 0 1-.301-.667c0-.38.222-.596.305-.678z" }) + ] + } + ); +}); + +export { SiLeslibraires as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLess.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLess.cjs new file mode 100644 index 000000000..a125937d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLess.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D365D"; +const SiLess = React__namespace.forwardRef(function SiLess2({ title = "Less", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.598 7.15a7.961 7.961 0 0 0-1.054.068c-.281.041-.52.124-.717.249a1.19 1.19 0 0 0-.45.497c-.098.208-.14.47-.14.802V10.3c0 .428-.084.732-.253.884-.169.166-.492.25-.984.25v1.16c.478 0 .815.083.984.249.169.166.253.47.253.912v1.548c0 .594.183 1.009.548 1.23.38.207.984.318 1.813.318v-1.078c-.393 0-.646-.07-.773-.194-.126-.124-.183-.373-.183-.746v-1.465c0-.373-.098-.663-.28-.87-.184-.208-.479-.374-.886-.484.393-.125.688-.29.871-.512.183-.22.281-.511.281-.87V9.167c0-.36.057-.608.183-.733.122-.12.412-.195.787-.2v4.547c0 .416.03.764.09 1.044.059.28.164.52.314.724.15.203.356.35.616.443.26.093.589.14.984.14.098 0 .205-.007.32-.02a5.336 5.336 0 0 0 .65-.107l-.036-.98c-.27.038-.492.057-.667.057-.353 0-.59-.092-.713-.276-.122-.183-.183-.534-.183-1.051V7.149H3.598zm16.818-.001v1.092c.393 0 .647.069.773.193.127.125.183.373.183.733v1.465c0 .359.098.65.28.87.184.222.479.387.872.512-.407.11-.702.276-.885.483-.183.208-.281.498-.281.871v1.465c0 .373-.057.622-.183.746-.126.125-.38.194-.773.194v1.078c.83 0 1.434-.11 1.813-.318.365-.221.548-.636.548-1.23v-1.548c0-.442.085-.746.253-.912.169-.166.506-.249.984-.249v-1.16c-.492 0-.815-.084-.984-.25-.168-.151-.253-.456-.253-.884V8.766c0-.332-.042-.594-.14-.801a1.19 1.19 0 0 0-.45-.498 1.828 1.828 0 0 0-.717-.249 7.252 7.252 0 0 0-1.04-.069zm-6.479 1.975c-.675 0-1.209.14-1.588.421-.38.281-.576.689-.576 1.209 0 .422.112.773.351 1.026s.618.478 1.152.688c.043.015.14.057.296.113.45.183.758.31.913.436a.592.592 0 0 1 .239.478c0 .224-.084.393-.253.506-.169.112-.408.168-.717.168-.295 0-.632-.056-.984-.155a3.901 3.901 0 0 1-.885-.337l-.14 1.04c.505.296 1.18.436 2.037.436.717 0 1.265-.155 1.659-.464.393-.309.59-.759.59-1.335 0-.436-.126-.787-.38-1.054-.252-.267-.632-.492-1.166-.689-.382-.15-.84-.277-1.209-.506a.465.465 0 0 1-.224-.421c0-.183.084-.324.239-.422.154-.098.365-.14.646-.14.506 0 1.026.126 1.574.379l.365-.956c-.562-.28-1.208-.421-1.939-.421zm4.512 0c-.675 0-1.21.14-1.589.421-.38.281-.576.689-.576 1.209 0 .422.112.773.351 1.026.24.253.619.478 1.153.688.042.015.14.057.295.113.45.183.759.31.914.436a.592.592 0 0 1 .238.478c0 .224-.084.393-.253.506-.168.112-.407.168-.716.168a3.72 3.72 0 0 1-.984-.155 3.904 3.904 0 0 1-.886-.337l-.14 1.04c.506.296 1.18.436 2.038.436.702 0 1.265-.155 1.686-.464.394-.309.59-.759.59-1.335 0-.436-.126-.787-.379-1.054s-.632-.492-1.166-.689c-.392-.153-.842-.277-1.209-.506a.465.465 0 0 1-.225-.421c0-.183.085-.324.24-.422.154-.098.364-.14.646-.14.506 0 1.026.126 1.574.379l.337-.956c-.562-.28-1.209-.421-1.94-.421zm-9.46.014c-.842 0-1.503.267-1.995.815-.492.548-.73 1.279-.73 2.192 0 .956.252 1.687.772 2.22.52.535 1.237.802 2.165.802.8 0 1.49-.183 2.08-.52l-.197-.984a3.66 3.66 0 0 1-1.813.492c-.492 0-.886-.155-1.167-.45-.28-.295-.435-.716-.45-1.25h3.852v-.591c0-.829-.225-1.49-.661-1.982-.45-.491-1.054-.744-1.855-.744zm-.013.983c.38 0 .674.127.885.38.211.253.323.618.323 1.082H7.67c.042-.492.182-.857.407-1.096.253-.239.548-.366.9-.366Z" }) + ] + } + ); +}); + +exports.default = SiLess; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLess.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLess.d.ts new file mode 100644 index 000000000..226b50314 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLess.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D365D"; +declare const SiLess: IconType; +export { SiLess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLess.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLess.mjs new file mode 100644 index 000000000..4e7b529ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLess.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D365D"; +const SiLess = React.forwardRef(function SiLess2({ title = "Less", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.598 7.15a7.961 7.961 0 0 0-1.054.068c-.281.041-.52.124-.717.249a1.19 1.19 0 0 0-.45.497c-.098.208-.14.47-.14.802V10.3c0 .428-.084.732-.253.884-.169.166-.492.25-.984.25v1.16c.478 0 .815.083.984.249.169.166.253.47.253.912v1.548c0 .594.183 1.009.548 1.23.38.207.984.318 1.813.318v-1.078c-.393 0-.646-.07-.773-.194-.126-.124-.183-.373-.183-.746v-1.465c0-.373-.098-.663-.28-.87-.184-.208-.479-.374-.886-.484.393-.125.688-.29.871-.512.183-.22.281-.511.281-.87V9.167c0-.36.057-.608.183-.733.122-.12.412-.195.787-.2v4.547c0 .416.03.764.09 1.044.059.28.164.52.314.724.15.203.356.35.616.443.26.093.589.14.984.14.098 0 .205-.007.32-.02a5.336 5.336 0 0 0 .65-.107l-.036-.98c-.27.038-.492.057-.667.057-.353 0-.59-.092-.713-.276-.122-.183-.183-.534-.183-1.051V7.149H3.598zm16.818-.001v1.092c.393 0 .647.069.773.193.127.125.183.373.183.733v1.465c0 .359.098.65.28.87.184.222.479.387.872.512-.407.11-.702.276-.885.483-.183.208-.281.498-.281.871v1.465c0 .373-.057.622-.183.746-.126.125-.38.194-.773.194v1.078c.83 0 1.434-.11 1.813-.318.365-.221.548-.636.548-1.23v-1.548c0-.442.085-.746.253-.912.169-.166.506-.249.984-.249v-1.16c-.492 0-.815-.084-.984-.25-.168-.151-.253-.456-.253-.884V8.766c0-.332-.042-.594-.14-.801a1.19 1.19 0 0 0-.45-.498 1.828 1.828 0 0 0-.717-.249 7.252 7.252 0 0 0-1.04-.069zm-6.479 1.975c-.675 0-1.209.14-1.588.421-.38.281-.576.689-.576 1.209 0 .422.112.773.351 1.026s.618.478 1.152.688c.043.015.14.057.296.113.45.183.758.31.913.436a.592.592 0 0 1 .239.478c0 .224-.084.393-.253.506-.169.112-.408.168-.717.168-.295 0-.632-.056-.984-.155a3.901 3.901 0 0 1-.885-.337l-.14 1.04c.505.296 1.18.436 2.037.436.717 0 1.265-.155 1.659-.464.393-.309.59-.759.59-1.335 0-.436-.126-.787-.38-1.054-.252-.267-.632-.492-1.166-.689-.382-.15-.84-.277-1.209-.506a.465.465 0 0 1-.224-.421c0-.183.084-.324.239-.422.154-.098.365-.14.646-.14.506 0 1.026.126 1.574.379l.365-.956c-.562-.28-1.208-.421-1.939-.421zm4.512 0c-.675 0-1.21.14-1.589.421-.38.281-.576.689-.576 1.209 0 .422.112.773.351 1.026.24.253.619.478 1.153.688.042.015.14.057.295.113.45.183.759.31.914.436a.592.592 0 0 1 .238.478c0 .224-.084.393-.253.506-.168.112-.407.168-.716.168a3.72 3.72 0 0 1-.984-.155 3.904 3.904 0 0 1-.886-.337l-.14 1.04c.506.296 1.18.436 2.038.436.702 0 1.265-.155 1.686-.464.394-.309.59-.759.59-1.335 0-.436-.126-.787-.379-1.054s-.632-.492-1.166-.689c-.392-.153-.842-.277-1.209-.506a.465.465 0 0 1-.225-.421c0-.183.085-.324.24-.422.154-.098.364-.14.646-.14.506 0 1.026.126 1.574.379l.337-.956c-.562-.28-1.209-.421-1.94-.421zm-9.46.014c-.842 0-1.503.267-1.995.815-.492.548-.73 1.279-.73 2.192 0 .956.252 1.687.772 2.22.52.535 1.237.802 2.165.802.8 0 1.49-.183 2.08-.52l-.197-.984a3.66 3.66 0 0 1-1.813.492c-.492 0-.886-.155-1.167-.45-.28-.295-.435-.716-.45-1.25h3.852v-.591c0-.829-.225-1.49-.661-1.982-.45-.491-1.054-.744-1.855-.744zm-.013.983c.38 0 .674.127.885.38.211.253.323.618.323 1.082H7.67c.042-.492.182-.857.407-1.096.253-.239.548-.366.9-.366Z" }) + ] + } + ); +}); + +export { SiLess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.cjs new file mode 100644 index 000000000..0ce8715aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003A70"; +const SiLetsencrypt = React__namespace.forwardRef(function SiLetsencrypt2({ title = "Lets Encrypt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9914 0a.8829.8829 0 00-.8718.817v3.0209A.8829.8829 0 0012 4.7207a.8829.8829 0 00.8803-.8803V.817a.8829.8829 0 00-.889-.817zm7.7048 3.1089a.8804.8804 0 00-.5214.1742l-2.374 1.9482a.8804.8804 0 00.5592 1.5622.8794.8794 0 00.5592-.2001l2.3714-1.9506a.8804.8804 0 00-.5944-1.534zm-15.3763.0133a.8829.8829 0 00-.611 1.5206l2.37 1.9506a.876.876 0 00.5606.2001v-.002a.8804.8804 0 00.5597-1.5602L4.8277 3.2831a.8829.8829 0 00-.5078-.161zm7.6598 3.2275a5.0456 5.0456 0 00-5.0262 5.0455v1.4876H5.787a.9672.9672 0 00-.9647.9643v9.1887a.9672.9672 0 00.9647.9643H18.213a.9672.9672 0 00.9643-.9643v-9.1907a.9672.9672 0 00-.9643-.9623h-1.1684v-1.4876a5.0456 5.0456 0 00-5.0649-5.0455zm.0127 2.8933a2.1522 2.1522 0 012.1593 2.1522v1.4876H9.8473v-1.4876a2.1522 2.1522 0 012.145-2.1522zm7.3812.5033a.8829.8829 0 10.0705 1.7632h3.0267a.8829.8829 0 000-1.7609H19.444a.8829.8829 0 00-.0705-.0023zm-17.8444.0023a.8829.8829 0 000 1.7609h2.9983a.8829.8829 0 000-1.7609zm10.4596 6.7746a1.2792 1.2792 0 01.641 2.3926v1.2453a.6298.6298 0 01-1.2595 0v-1.2453a1.2792 1.2792 0 01.6185-2.3926z" }) + ] + } + ); +}); + +exports.default = SiLetsencrypt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.d.ts new file mode 100644 index 000000000..94ff2280e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003A70"; +declare const SiLetsencrypt: IconType; +export { SiLetsencrypt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.mjs new file mode 100644 index 000000000..72a3a4df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLetsencrypt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003A70"; +const SiLetsencrypt = React.forwardRef(function SiLetsencrypt2({ title = "Lets Encrypt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9914 0a.8829.8829 0 00-.8718.817v3.0209A.8829.8829 0 0012 4.7207a.8829.8829 0 00.8803-.8803V.817a.8829.8829 0 00-.889-.817zm7.7048 3.1089a.8804.8804 0 00-.5214.1742l-2.374 1.9482a.8804.8804 0 00.5592 1.5622.8794.8794 0 00.5592-.2001l2.3714-1.9506a.8804.8804 0 00-.5944-1.534zm-15.3763.0133a.8829.8829 0 00-.611 1.5206l2.37 1.9506a.876.876 0 00.5606.2001v-.002a.8804.8804 0 00.5597-1.5602L4.8277 3.2831a.8829.8829 0 00-.5078-.161zm7.6598 3.2275a5.0456 5.0456 0 00-5.0262 5.0455v1.4876H5.787a.9672.9672 0 00-.9647.9643v9.1887a.9672.9672 0 00.9647.9643H18.213a.9672.9672 0 00.9643-.9643v-9.1907a.9672.9672 0 00-.9643-.9623h-1.1684v-1.4876a5.0456 5.0456 0 00-5.0649-5.0455zm.0127 2.8933a2.1522 2.1522 0 012.1593 2.1522v1.4876H9.8473v-1.4876a2.1522 2.1522 0 012.145-2.1522zm7.3812.5033a.8829.8829 0 10.0705 1.7632h3.0267a.8829.8829 0 000-1.7609H19.444a.8829.8829 0 00-.0705-.0023zm-17.8444.0023a.8829.8829 0 000 1.7609h2.9983a.8829.8829 0 000-1.7609zm10.4596 6.7746a1.2792 1.2792 0 01.641 2.3926v1.2453a.6298.6298 0 01-1.2595 0v-1.2453a1.2792 1.2792 0 01.6185-2.3926z" }) + ] + } + ); +}); + +export { SiLetsencrypt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.cjs new file mode 100644 index 000000000..a449a9bc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#202830"; +const SiLetterboxd = React__namespace.forwardRef(function SiLetterboxd2({ title = "Letterboxd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.224 14.352a4.447 4.447 0 0 1-3.775 2.092C1.992 16.444 0 14.454 0 12s1.992-4.444 4.45-4.444c1.592 0 2.988.836 3.774 2.092-.427.682-.673 1.488-.673 2.352s.246 1.67.673 2.352zM15.101 12c0-.864.247-1.67.674-2.352-.786-1.256-2.183-2.092-3.775-2.092s-2.989.836-3.775 2.092c.427.682.674 1.488.674 2.352s-.247 1.67-.674 2.352c.786 1.256 2.183 2.092 3.775 2.092s2.989-.836 3.775-2.092A4.42 4.42 0 0 1 15.1 12zm4.45-4.444a4.447 4.447 0 0 0-3.775 2.092c.427.682.673 1.488.673 2.352s-.246 1.67-.673 2.352a4.447 4.447 0 0 0 3.775 2.092C22.008 16.444 24 14.454 24 12s-1.992-4.444-4.45-4.444z" }) + ] + } + ); +}); + +exports.default = SiLetterboxd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.d.ts new file mode 100644 index 000000000..1692c54aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#202830"; +declare const SiLetterboxd: IconType; +export { SiLetterboxd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.mjs new file mode 100644 index 000000000..12390c6fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLetterboxd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#202830"; +const SiLetterboxd = React.forwardRef(function SiLetterboxd2({ title = "Letterboxd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.224 14.352a4.447 4.447 0 0 1-3.775 2.092C1.992 16.444 0 14.454 0 12s1.992-4.444 4.45-4.444c1.592 0 2.988.836 3.774 2.092-.427.682-.673 1.488-.673 2.352s.246 1.67.673 2.352zM15.101 12c0-.864.247-1.67.674-2.352-.786-1.256-2.183-2.092-3.775-2.092s-2.989.836-3.775 2.092c.427.682.674 1.488.674 2.352s-.247 1.67-.674 2.352c.786 1.256 2.183 2.092 3.775 2.092s2.989-.836 3.775-2.092A4.42 4.42 0 0 1 15.1 12zm4.45-4.444a4.447 4.447 0 0 0-3.775 2.092c.427.682.673 1.488.673 2.352s-.246 1.67-.673 2.352a4.447 4.447 0 0 0 3.775 2.092C22.008 16.444 24 14.454 24 12s-1.992-4.444-4.45-4.444z" }) + ] + } + ); +}); + +export { SiLetterboxd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.cjs new file mode 100644 index 000000000..a82d045e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#788B95"; +const SiLevelsdotfyi = React__namespace.forwardRef(function SiLevelsdotfyi2({ title = "levels.fyi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.494 18.913h3.52v-3.52c0-.43.35-.78.781-.78h3.52v-3.52c0-.432.35-.783.781-.783h3.52V6.791c0-.432.35-.782.782-.782h3.519V2.49c0-.432.35-.782.782-.782h3.52c.43 0 .781.35.781.782v20.724c0 .432-.35.782-.782.782H2.494a.782.782 0 0 1-.782-.782v-3.52c0-.43.35-.78.782-.78ZM.172 15.928a.587.587 0 0 1 0-.83L15.102.168a.587.587 0 0 1 .83.83l-14.93 14.93c-.23.23-.6.23-.83 0Z" }) + ] + } + ); +}); + +exports.default = SiLevelsdotfyi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.d.ts new file mode 100644 index 000000000..46553fdae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#788B95"; +declare const SiLevelsdotfyi: IconType; +export { SiLevelsdotfyi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.mjs new file mode 100644 index 000000000..4b4245242 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLevelsdotfyi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#788B95"; +const SiLevelsdotfyi = React.forwardRef(function SiLevelsdotfyi2({ title = "levels.fyi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.494 18.913h3.52v-3.52c0-.43.35-.78.781-.78h3.52v-3.52c0-.432.35-.783.781-.783h3.52V6.791c0-.432.35-.782.782-.782h3.519V2.49c0-.432.35-.782.782-.782h3.52c.43 0 .781.35.781.782v20.724c0 .432-.35.782-.782.782H2.494a.782.782 0 0 1-.782-.782v-3.52c0-.43.35-.78.782-.78ZM.172 15.928a.587.587 0 0 1 0-.83L15.102.168a.587.587 0 0 1 .83.83l-14.93 14.93c-.23.23-.6.23-.83 0Z" }) + ] + } + ); +}); + +export { SiLevelsdotfyi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLg.cjs new file mode 100644 index 000000000..0da41a997 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A50034"; +const SiLg = React__namespace.forwardRef(function SiLg2({ title = "LG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.522 14.078h3.27v1.33h-4.847v-6.83h1.577v5.5zm6.74-1.274h1.284v1.195c-.236.09-.698.18-1.137.18-1.42 0-1.893-.721-1.893-2.186 0-1.398.45-2.221 1.869-2.221.791 0 1.24.248 1.612.722l.982-.903c-.6-.855-1.646-1.114-2.629-1.114-2.208 0-3.368 1.205-3.368 3.504 0 2.288 1.047 3.528 3.358 3.528 1.06 0 2.096-.27 2.66-.665V11.53h-2.739v1.274zM5.291 6.709a5.29 5.29 0 1 1 0 10.582 5.291 5.291 0 1 1 0-10.582m3.16 8.457a4.445 4.445 0 0 0 1.31-3.161v-.242l-.22.001H6.596v.494h2.662l-.001.015a3.985 3.985 0 0 1-3.965 3.708 3.95 3.95 0 0 1-2.811-1.165 3.952 3.952 0 0 1-1.164-2.811c0-1.061.414-2.059 1.164-2.81a3.951 3.951 0 0 1 2.81-1.164l.252.003v-.495l-.251-.003a4.475 4.475 0 0 0-4.47 4.469c0 1.194.465 2.316 1.309 3.161a4.444 4.444 0 0 0 3.16 1.31 4.444 4.444 0 0 0 3.162-1.31m-2.91-1.297V9.644H5.04v4.72h1.556v-.495H5.543zm-1.265-3.552a.676.676 0 1 0-.675.674.676.676 0 0 0 .675-.674" }) + ] + } + ); +}); + +exports.default = SiLg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLg.d.ts new file mode 100644 index 000000000..649178d0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A50034"; +declare const SiLg: IconType; +export { SiLg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLg.mjs new file mode 100644 index 000000000..f060c3b24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A50034"; +const SiLg = React.forwardRef(function SiLg2({ title = "LG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.522 14.078h3.27v1.33h-4.847v-6.83h1.577v5.5zm6.74-1.274h1.284v1.195c-.236.09-.698.18-1.137.18-1.42 0-1.893-.721-1.893-2.186 0-1.398.45-2.221 1.869-2.221.791 0 1.24.248 1.612.722l.982-.903c-.6-.855-1.646-1.114-2.629-1.114-2.208 0-3.368 1.205-3.368 3.504 0 2.288 1.047 3.528 3.358 3.528 1.06 0 2.096-.27 2.66-.665V11.53h-2.739v1.274zM5.291 6.709a5.29 5.29 0 1 1 0 10.582 5.291 5.291 0 1 1 0-10.582m3.16 8.457a4.445 4.445 0 0 0 1.31-3.161v-.242l-.22.001H6.596v.494h2.662l-.001.015a3.985 3.985 0 0 1-3.965 3.708 3.95 3.95 0 0 1-2.811-1.165 3.952 3.952 0 0 1-1.164-2.811c0-1.061.414-2.059 1.164-2.81a3.951 3.951 0 0 1 2.81-1.164l.252.003v-.495l-.251-.003a4.475 4.475 0 0 0-4.47 4.469c0 1.194.465 2.316 1.309 3.161a4.444 4.444 0 0 0 3.16 1.31 4.444 4.444 0 0 0 3.162-1.31m-2.91-1.297V9.644H5.04v4.72h1.556v-.495H5.543zm-1.265-3.552a.676.676 0 1 0-.675.674.676.676 0 0 0 .675-.674" }) + ] + } + ); +}); + +export { SiLg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.cjs new file mode 100644 index 000000000..1ae339ff1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF55DD"; +const SiLiberadotchat = React__namespace.forwardRef(function SiLiberadotchat2({ title = "Libera.Chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.26446 2.76095-1.22973 9.43224-1.6484 1.88226L9.67694 2.7735h-.003a9.86072 9.86072 0 0 0-.19917.04247l-.067.01256a12.0901 12.0901 0 0 0-.13158.0305l-.0646.01555a12.0503 12.0503 0 0 0-1.7393.55086l-.03709.01855 3.39788 11.26306-.1579.18062-1.59816-.70397-.10465.13457L3.4452 6.09902a10.69674 10.69674 0 0 0-.92767 1.0473 12.5862 12.5862 0 0 0-.55146.7596v.00598l6.48115 7.08106-1.02158 1.31285-7.20486-4.1497a11.70731 11.70731 0 0 0-.2207 2.30931l6.85377 2.57547L5.2778 19.0661l-4.31.02034a12.18198 12.18198 0 0 0 1.21297 2.15261h.003l1.69625-.37322h.45038l4.86266-6.22276 1.5832.70098 3.33807-3.81237c1.84965 3.14502 3.84345 6.17068 5.65635 9.33714h.45337l-.0083-.01376 1.61251.36246.01556-.01794a11.03054 11.03054 0 0 0 .77455-1.25604 11.3919 11.3919 0 0 0 .35228-.72551l-3.78784-.064-1.3332-2.19567 6.1468-2.24172v-.0311a6.93926 6.93926 0 0 0 .0036-.20217v-.31223l-.0036-.06398v-.0676l-.003-.06757-.003-.067-.003-.06757-.003-.067-.0059-.0646-.003-.06757-.0066-.067-.003-.06757-.006-.064-.006-.06757-.006-.06758-.0066-.067-.006-.06458a9.69536 9.69536 0 0 0-.11304-.7961v-.01555l-6.50625 3.71908-1.0467-1.72436 5.7365-6.49311a10.80699 10.80699 0 0 0-.8876-1.16997 11.89718 11.89718 0 0 0-.69202-.7285l-4.72569 7.45488-1.37147-2.25848 2.1526-7.75393-.05502-.02093a11.6277 11.6277 0 0 0-2.00607-.59453 12.20035 12.20035 0 0 0-.13158-.0275zm-.1591 9.33116-3.24596 3.72086-1.5832-.65853-4.48346 5.7078h.49584l4.10365-5.25144 1.57423.65195 3.08387-3.53664 4.8507 8.15167.47729-.009zm-.07357 1.30149-2.91221 3.34405-1.60474-.65254-3.74538 4.77413 12.63513.0066z" }) + ] + } + ); +}); + +exports.default = SiLiberadotchat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.d.ts new file mode 100644 index 000000000..4d0584ad6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF55DD"; +declare const SiLiberadotchat: IconType; +export { SiLiberadotchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.mjs new file mode 100644 index 000000000..6083a5ae5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberadotchat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF55DD"; +const SiLiberadotchat = React.forwardRef(function SiLiberadotchat2({ title = "Libera.Chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.26446 2.76095-1.22973 9.43224-1.6484 1.88226L9.67694 2.7735h-.003a9.86072 9.86072 0 0 0-.19917.04247l-.067.01256a12.0901 12.0901 0 0 0-.13158.0305l-.0646.01555a12.0503 12.0503 0 0 0-1.7393.55086l-.03709.01855 3.39788 11.26306-.1579.18062-1.59816-.70397-.10465.13457L3.4452 6.09902a10.69674 10.69674 0 0 0-.92767 1.0473 12.5862 12.5862 0 0 0-.55146.7596v.00598l6.48115 7.08106-1.02158 1.31285-7.20486-4.1497a11.70731 11.70731 0 0 0-.2207 2.30931l6.85377 2.57547L5.2778 19.0661l-4.31.02034a12.18198 12.18198 0 0 0 1.21297 2.15261h.003l1.69625-.37322h.45038l4.86266-6.22276 1.5832.70098 3.33807-3.81237c1.84965 3.14502 3.84345 6.17068 5.65635 9.33714h.45337l-.0083-.01376 1.61251.36246.01556-.01794a11.03054 11.03054 0 0 0 .77455-1.25604 11.3919 11.3919 0 0 0 .35228-.72551l-3.78784-.064-1.3332-2.19567 6.1468-2.24172v-.0311a6.93926 6.93926 0 0 0 .0036-.20217v-.31223l-.0036-.06398v-.0676l-.003-.06757-.003-.067-.003-.06757-.003-.067-.0059-.0646-.003-.06757-.0066-.067-.003-.06757-.006-.064-.006-.06757-.006-.06758-.0066-.067-.006-.06458a9.69536 9.69536 0 0 0-.11304-.7961v-.01555l-6.50625 3.71908-1.0467-1.72436 5.7365-6.49311a10.80699 10.80699 0 0 0-.8876-1.16997 11.89718 11.89718 0 0 0-.69202-.7285l-4.72569 7.45488-1.37147-2.25848 2.1526-7.75393-.05502-.02093a11.6277 11.6277 0 0 0-2.00607-.59453 12.20035 12.20035 0 0 0-.13158-.0275zm-.1591 9.33116-3.24596 3.72086-1.5832-.65853-4.48346 5.7078h.49584l4.10365-5.25144 1.57423.65195 3.08387-3.53664 4.8507 8.15167.47729-.009zm-.07357 1.30149-2.91221 3.34405-1.60474-.65254-3.74538 4.77413 12.63513.0066z" }) + ] + } + ); +}); + +export { SiLiberadotchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.cjs new file mode 100644 index 000000000..509fb7a2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F6C915"; +const SiLiberapay = React__namespace.forwardRef(function SiLiberapay2({ title = "Liberapay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.32 0A2.321 2.321 0 0 0 0 2.32v19.36A2.321 2.321 0 0 0 2.32 24h19.36A2.32 2.32 0 0 0 24 21.68V2.32A2.32 2.32 0 0 0 21.68 0zm9.208 3.98l-2.27 9.405a2.953 2.953 0 0 0-.073.539.853.853 0 0 0 .09.432.7.7 0 0 0 .334.302c.157.077.378.126.661.147l-.49 2.008c-.772 0-1.38-.1-1.82-.3-.441-.203-.757-.477-.947-.826a2.391 2.391 0 0 1-.278-1.2c.005-.452.068-.933.188-1.445l2.074-8.67zm3.9 3.888c.61 0 1.135.092 1.576.277.44.185.802.438 1.085.76.283.32.493.696.629 1.126.136.43.204.89.204 1.379v.001c0 .794-.13 1.52-.392 2.179a5.16 5.16 0 0 1-1.086 1.706 4.84 4.84 0 0 1-1.665 1.118c-.648.267-1.353.4-2.114.4-.37 0-.74-.033-1.11-.098l-.735 2.956H9.403l2.71-11.298c.435-.13.934-.248 1.494-.351a10.045 10.045 0 0 1 1.821-.155zm-.31 2.041a4.67 4.67 0 0 0-.98.098l-1.143 4.752c.185.044.413.065.685.065.425 0 .812-.079 1.16-.237a2.556 2.556 0 0 0 .89-.661c.244-.283.435-.623.571-1.02a4.03 4.03 0 0 0 .204-1.315c0-.468-.104-.865-.31-1.192-.207-.326-.566-.49-1.077-.49z" }) + ] + } + ); +}); + +exports.default = SiLiberapay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.d.ts new file mode 100644 index 000000000..a9499ff98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F6C915"; +declare const SiLiberapay: IconType; +export { SiLiberapay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.mjs new file mode 100644 index 000000000..562ba6b9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiberapay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F6C915"; +const SiLiberapay = React.forwardRef(function SiLiberapay2({ title = "Liberapay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.32 0A2.321 2.321 0 0 0 0 2.32v19.36A2.321 2.321 0 0 0 2.32 24h19.36A2.32 2.32 0 0 0 24 21.68V2.32A2.32 2.32 0 0 0 21.68 0zm9.208 3.98l-2.27 9.405a2.953 2.953 0 0 0-.073.539.853.853 0 0 0 .09.432.7.7 0 0 0 .334.302c.157.077.378.126.661.147l-.49 2.008c-.772 0-1.38-.1-1.82-.3-.441-.203-.757-.477-.947-.826a2.391 2.391 0 0 1-.278-1.2c.005-.452.068-.933.188-1.445l2.074-8.67zm3.9 3.888c.61 0 1.135.092 1.576.277.44.185.802.438 1.085.76.283.32.493.696.629 1.126.136.43.204.89.204 1.379v.001c0 .794-.13 1.52-.392 2.179a5.16 5.16 0 0 1-1.086 1.706 4.84 4.84 0 0 1-1.665 1.118c-.648.267-1.353.4-2.114.4-.37 0-.74-.033-1.11-.098l-.735 2.956H9.403l2.71-11.298c.435-.13.934-.248 1.494-.351a10.045 10.045 0 0 1 1.821-.155zm-.31 2.041a4.67 4.67 0 0 0-.98.098l-1.143 4.752c.185.044.413.065.685.065.425 0 .812-.079 1.16-.237a2.556 2.556 0 0 0 .89-.661c.244-.283.435-.623.571-1.02a4.03 4.03 0 0 0 .204-1.315c0-.468-.104-.865-.31-1.192-.207-.326-.566-.49-1.077-.49z" }) + ] + } + ); +}); + +export { SiLiberapay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.cjs new file mode 100644 index 000000000..19fd46726 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#337AB7"; +const SiLibrariesdotio = React__namespace.forwardRef(function SiLibrariesdotio2({ title = "Libraries.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.152 23.998c-1.164-.054-1.75.044-2.021-.48-.265-.306-.138-3.465-.185-4.694 1.702-1.365 3.42-2.688 5.145-4.025 0 2.892.147 8.186-.17 8.72-.27.56-1.33.474-2.77.479zm6.468-.62c-.304-.006-.171-6.048-.204-11.204 1.704-1.357 3.42-2.678 5.143-4.01-.028 5.924.123 14.775-.108 15.098-.334.71-1.064.543-2.467.585-1.094-.06-2.058.16-2.364-.469zm8.41.018c-.174-.33-.158-7.898-.104-15.204a500.566 500.566 0 015.12 3.977c-.027 1.216.103 11.184-.165 11.18-.28.47-.641.488-2.44.488-.933-.085-1.852.18-2.411-.441zM.979 15.564C.957 10.754.927 6.047.999 1.1c.028-.633.251-1.003.94-1.041.538-.07 3.012-.04 3.463.05a.867.867 0 01.624.65c.097 2.718.075 6.154.097 10.776-1.717 1.341-3.431 2.678-5.144 4.024zm8.458-6.656c-.048-2.518 0-7.016.03-7.696.077-1.552 1.087-1.115 2.41-1.2 1.977-.018 2.279.097 2.5.455.246.368.204 2.598.204 4.422-1.693 1.323-3.594 2.83-5.144 4.017zm13.583-.013c-1.706-1.338-3.353-2.633-5.064-3.964.015-1.322-.064-2.744.01-3.995.107-.54.257-.836 1.16-.866 1.118-.122 2.726-.09 3.419.142.524.124.52 1.379.485 5.226z" }) + ] + } + ); +}); + +exports.default = SiLibrariesdotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.d.ts new file mode 100644 index 000000000..44a86c6fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#337AB7"; +declare const SiLibrariesdotio: IconType; +export { SiLibrariesdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.mjs new file mode 100644 index 000000000..fb171b5ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrariesdotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#337AB7"; +const SiLibrariesdotio = React.forwardRef(function SiLibrariesdotio2({ title = "Libraries.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.152 23.998c-1.164-.054-1.75.044-2.021-.48-.265-.306-.138-3.465-.185-4.694 1.702-1.365 3.42-2.688 5.145-4.025 0 2.892.147 8.186-.17 8.72-.27.56-1.33.474-2.77.479zm6.468-.62c-.304-.006-.171-6.048-.204-11.204 1.704-1.357 3.42-2.678 5.143-4.01-.028 5.924.123 14.775-.108 15.098-.334.71-1.064.543-2.467.585-1.094-.06-2.058.16-2.364-.469zm8.41.018c-.174-.33-.158-7.898-.104-15.204a500.566 500.566 0 015.12 3.977c-.027 1.216.103 11.184-.165 11.18-.28.47-.641.488-2.44.488-.933-.085-1.852.18-2.411-.441zM.979 15.564C.957 10.754.927 6.047.999 1.1c.028-.633.251-1.003.94-1.041.538-.07 3.012-.04 3.463.05a.867.867 0 01.624.65c.097 2.718.075 6.154.097 10.776-1.717 1.341-3.431 2.678-5.144 4.024zm8.458-6.656c-.048-2.518 0-7.016.03-7.696.077-1.552 1.087-1.115 2.41-1.2 1.977-.018 2.279.097 2.5.455.246.368.204 2.598.204 4.422-1.693 1.323-3.594 2.83-5.144 4.017zm13.583-.013c-1.706-1.338-3.353-2.633-5.064-3.964.015-1.322-.064-2.744.01-3.995.107-.54.257-.836 1.16-.866 1.118-.122 2.726-.09 3.419.142.524.124.52 1.379.485 5.226z" }) + ] + } + ); +}); + +export { SiLibrariesdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.cjs new file mode 100644 index 000000000..16fb9c856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#251A15"; +const SiLibrarything = React__namespace.forwardRef(function SiLibrarything2({ title = "LibraryThing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.16 0h7.68c2.66 0 3.508 0 4.708.4 1.4.5 2.552 1.65 3.052 3.05.4 1.2.4 2.05.4 4.71v7.68c0 2.66 0 3.51-.4 4.71a5.04 5.04 0 0 1-3.05 3.05c-1.2.4-2.05.4-4.71.4H8.16c-2.66 0-3.51 0-4.71-.4A5.043 5.043 0 0 1 .4 20.55C0 19.35 0 18.5 0 15.84V8.16C0 5.5 0 4.65.4 3.45A5.04 5.04 0 0 1 3.45.4C4.65 0 5.5 0 8.16 0zm2.834 6.682v-.297l-.023-.321c0-.092-.03-.23-.091-.412a1.552 1.552 0 0 1-.092-.481c0-.092.038-.168.115-.23a5.55 5.55 0 0 0 .24-.194c.1-.084.24-.126.424-.126.107 0 .282.015.527.046.214 0 .374-.046.481-.138.046-.03.13-.091.252-.183s.183-.199.183-.32c0-.2-.11-.36-.332-.482-.221-.122-.5-.183-.836-.183l-.94.069c-.213 0-.618.05-1.214.149-.595.099-1.061.149-1.397.149a5.04 5.04 0 0 1-.7-.08 5.174 5.174 0 0 0-.79-.08c-.168.06-.34.118-.515.171-.176.053-.263.134-.263.24l.045.207c.092.198.23.35.413.458l.183.091c.092.03.168.046.23.046.075 0 .19-.007.343-.023.122 0 .237.03.343.092l.252.229c.123.137.21.271.264.4.053.13.08.249.08.356 0 .076-.015.206-.046.39a2.86 2.86 0 0 0-.046.434c0 .138.035.336.104.596.068.26.103.473.103.641-.016.26-.023.52-.023.78v.778c0 .198.015.458.046.779.03.32.045.572.045.755l-.045.962-.023 1.535-.07 1.26c0 .168.031.39.093.664.06.275.091.496.091.664 0 .168-.023.382-.069.642-.045.26-.068.465-.068.618 0 .076.007.176.023.298a.808.808 0 0 1 0 .275.56.56 0 0 1-.126.263 37.9 37.9 0 0 1-.218.264c-.137.168-.29.297-.458.389-.168.092-.405.145-.71.16-.306.016-.527.08-.665.195-.137.115-.206.202-.206.263 0 .397.367.596 1.1.596l.16-.023a35.207 35.207 0 0 1 1.317-.137c.222-.016.478-.023.768-.023h.275c.275.015.55.023.825.023h2.2c.213-.016.415-.035.606-.058a4.37 4.37 0 0 1 .516-.034c.198 0 .473.05.825.149.35.1.649.133.893.103.015 0 .103-.023.264-.069a1.69 1.69 0 0 1 .47-.068c.014 0 .118.011.308.034.191.023.348.034.47.034.061 0 .168-.015.32-.046.383-.076.65-.221.803-.435a.767.767 0 0 0 .16-.435 3.704 3.704 0 0 1-.069-.435 2.77 2.77 0 0 1 0-.504c.077-.153.16-.305.252-.458.077-.199.13-.47.16-.813.031-.344.058-.573.081-.687a2.79 2.79 0 0 1 .195-.527c.107-.237.16-.44.16-.607a.974.974 0 0 0-.114-.481c-.077-.138-.176-.206-.298-.206-.077 0-.199.068-.367.206-.076.06-.141.175-.195.343a2.778 2.778 0 0 1-.126.344c-.183.275-.366.542-.55.802a3.768 3.768 0 0 0-.229.435c-.152.32-.274.542-.366.664-.03.046-.153.16-.367.344a1.124 1.124 0 0 0-.217.24c-.07.1-.165.256-.287.47l-.39.206-.274.069a1.894 1.894 0 0 0-.367.114c-.152.061-.267.1-.343.115a1.571 1.571 0 0 1-.298.022c-.138 0-.344-.022-.619-.068a4.242 4.242 0 0 0-.664-.069l-.481.023c-.55 0-.955-.298-1.215-.893-.168-.382-.297-.978-.39-1.787a2.327 2.327 0 0 1-.022-.366c0-.123.008-.329.023-.619 0-.076.019-.237.057-.48a4.07 4.07 0 0 0 .057-.596v-1.604c0-.137.008-.313.023-.527.016-.213.023-.366.023-.458a2.14 2.14 0 0 0-.023-.343c0-.092-.03-.222-.091-.39a1.244 1.244 0 0 1-.092-.389c0-.076.015-.183.046-.32.03-.138.046-.245.046-.321 0-.168-.008-.397-.023-.688a13.83 13.83 0 0 1-.023-.687c0-.198.03-.442.092-.733a3.6 3.6 0 0 0 .091-.71z" }) + ] + } + ); +}); + +exports.default = SiLibrarything; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.d.ts new file mode 100644 index 000000000..55129b0b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#251A15"; +declare const SiLibrarything: IconType; +export { SiLibrarything as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.mjs new file mode 100644 index 000000000..bda0ed73e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrarything.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#251A15"; +const SiLibrarything = React.forwardRef(function SiLibrarything2({ title = "LibraryThing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.16 0h7.68c2.66 0 3.508 0 4.708.4 1.4.5 2.552 1.65 3.052 3.05.4 1.2.4 2.05.4 4.71v7.68c0 2.66 0 3.51-.4 4.71a5.04 5.04 0 0 1-3.05 3.05c-1.2.4-2.05.4-4.71.4H8.16c-2.66 0-3.51 0-4.71-.4A5.043 5.043 0 0 1 .4 20.55C0 19.35 0 18.5 0 15.84V8.16C0 5.5 0 4.65.4 3.45A5.04 5.04 0 0 1 3.45.4C4.65 0 5.5 0 8.16 0zm2.834 6.682v-.297l-.023-.321c0-.092-.03-.23-.091-.412a1.552 1.552 0 0 1-.092-.481c0-.092.038-.168.115-.23a5.55 5.55 0 0 0 .24-.194c.1-.084.24-.126.424-.126.107 0 .282.015.527.046.214 0 .374-.046.481-.138.046-.03.13-.091.252-.183s.183-.199.183-.32c0-.2-.11-.36-.332-.482-.221-.122-.5-.183-.836-.183l-.94.069c-.213 0-.618.05-1.214.149-.595.099-1.061.149-1.397.149a5.04 5.04 0 0 1-.7-.08 5.174 5.174 0 0 0-.79-.08c-.168.06-.34.118-.515.171-.176.053-.263.134-.263.24l.045.207c.092.198.23.35.413.458l.183.091c.092.03.168.046.23.046.075 0 .19-.007.343-.023.122 0 .237.03.343.092l.252.229c.123.137.21.271.264.4.053.13.08.249.08.356 0 .076-.015.206-.046.39a2.86 2.86 0 0 0-.046.434c0 .138.035.336.104.596.068.26.103.473.103.641-.016.26-.023.52-.023.78v.778c0 .198.015.458.046.779.03.32.045.572.045.755l-.045.962-.023 1.535-.07 1.26c0 .168.031.39.093.664.06.275.091.496.091.664 0 .168-.023.382-.069.642-.045.26-.068.465-.068.618 0 .076.007.176.023.298a.808.808 0 0 1 0 .275.56.56 0 0 1-.126.263 37.9 37.9 0 0 1-.218.264c-.137.168-.29.297-.458.389-.168.092-.405.145-.71.16-.306.016-.527.08-.665.195-.137.115-.206.202-.206.263 0 .397.367.596 1.1.596l.16-.023a35.207 35.207 0 0 1 1.317-.137c.222-.016.478-.023.768-.023h.275c.275.015.55.023.825.023h2.2c.213-.016.415-.035.606-.058a4.37 4.37 0 0 1 .516-.034c.198 0 .473.05.825.149.35.1.649.133.893.103.015 0 .103-.023.264-.069a1.69 1.69 0 0 1 .47-.068c.014 0 .118.011.308.034.191.023.348.034.47.034.061 0 .168-.015.32-.046.383-.076.65-.221.803-.435a.767.767 0 0 0 .16-.435 3.704 3.704 0 0 1-.069-.435 2.77 2.77 0 0 1 0-.504c.077-.153.16-.305.252-.458.077-.199.13-.47.16-.813.031-.344.058-.573.081-.687a2.79 2.79 0 0 1 .195-.527c.107-.237.16-.44.16-.607a.974.974 0 0 0-.114-.481c-.077-.138-.176-.206-.298-.206-.077 0-.199.068-.367.206-.076.06-.141.175-.195.343a2.778 2.778 0 0 1-.126.344c-.183.275-.366.542-.55.802a3.768 3.768 0 0 0-.229.435c-.152.32-.274.542-.366.664-.03.046-.153.16-.367.344a1.124 1.124 0 0 0-.217.24c-.07.1-.165.256-.287.47l-.39.206-.274.069a1.894 1.894 0 0 0-.367.114c-.152.061-.267.1-.343.115a1.571 1.571 0 0 1-.298.022c-.138 0-.344-.022-.619-.068a4.242 4.242 0 0 0-.664-.069l-.481.023c-.55 0-.955-.298-1.215-.893-.168-.382-.297-.978-.39-1.787a2.327 2.327 0 0 1-.022-.366c0-.123.008-.329.023-.619 0-.076.019-.237.057-.48a4.07 4.07 0 0 0 .057-.596v-1.604c0-.137.008-.313.023-.527.016-.213.023-.366.023-.458a2.14 2.14 0 0 0-.023-.343c0-.092-.03-.222-.091-.39a1.244 1.244 0 0 1-.092-.389c0-.076.015-.183.046-.32.03-.138.046-.245.046-.321 0-.168-.008-.397-.023-.688a13.83 13.83 0 0 1-.023-.687c0-.198.03-.442.092-.733a3.6 3.6 0 0 0 .091-.71z" }) + ] + } + ); +}); + +export { SiLibrarything as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.cjs new file mode 100644 index 000000000..b306762c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18A303"; +const SiLibreoffice = React__namespace.forwardRef(function SiLibreoffice2({ title = "LibreOffice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.365 0a.597.597 0 00-.555.352.582.582 0 00.128.635l4.985 4.996a.605.605 0 00.635.133.59.59 0 00.363-.53V.577A.605.605 0 0021.335 0zM2.661 0a.59.59 0 00-.582.59v22.82a.59.59 0 00.582.59h18.67a.59.59 0 00.59-.59V8.716a.59.59 0 00-.17-.42L13.674.182a.59.59 0 00-.42-.181zm.59 1.184h9.754l7.733 7.77v13.863H3.251z" }) + ] + } + ); +}); + +exports.default = SiLibreoffice; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.d.ts new file mode 100644 index 000000000..5114743fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18A303"; +declare const SiLibreoffice: IconType; +export { SiLibreoffice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.mjs new file mode 100644 index 000000000..b9dd4fb58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreoffice.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18A303"; +const SiLibreoffice = React.forwardRef(function SiLibreoffice2({ title = "LibreOffice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.365 0a.597.597 0 00-.555.352.582.582 0 00.128.635l4.985 4.996a.605.605 0 00.635.133.59.59 0 00.363-.53V.577A.605.605 0 0021.335 0zM2.661 0a.59.59 0 00-.582.59v22.82a.59.59 0 00.582.59h18.67a.59.59 0 00.59-.59V8.716a.59.59 0 00-.17-.42L13.674.182a.59.59 0 00-.42-.181zm.59 1.184h9.754l7.733 7.77v13.863H3.251z" }) + ] + } + ); +}); + +export { SiLibreoffice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.cjs new file mode 100644 index 000000000..e91962ae8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7324A9"; +const SiLibreofficebase = React__namespace.forwardRef(function SiLibreofficebase2({ title = "LibreOffice Base", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 13h-1v-1h1v1zm0 1h-1v1h1v-1zm0 2h-1v1h1v-1zm-.6-16H15l7 7V0h-5.6zM13 0l9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM6 11c0 .552 1.343 1 3 1s3-.448 3-1v-1c0-.552-1.343-1-3-1s-3 .448-3 1v1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1v1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1v1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1v1zm12-6h-5v7h5v-7zm-3 1h-1v1h1v-1zm0 4h-1v1h1v-1zm0-2h-1v1h1v-1z" }) + ] + } + ); +}); + +exports.default = SiLibreofficebase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.d.ts new file mode 100644 index 000000000..f1a6db3d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7324A9"; +declare const SiLibreofficebase: IconType; +export { SiLibreofficebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.mjs new file mode 100644 index 000000000..88c9a84a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficebase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7324A9"; +const SiLibreofficebase = React.forwardRef(function SiLibreofficebase2({ title = "LibreOffice Base", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17 13h-1v-1h1v1zm0 1h-1v1h1v-1zm0 2h-1v1h1v-1zm-.6-16H15l7 7V0h-5.6zM13 0l9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM6 11c0 .552 1.343 1 3 1s3-.448 3-1v-1c0-.552-1.343-1-3-1s-3 .448-3 1v1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1v1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1v1zm0 2c0 .552 1.343 1 3 1s3-.448 3-1v-1c0 .552-1.343 1-3 1s-3-.448-3-1v1zm12-6h-5v7h5v-7zm-3 1h-1v1h1v-1zm0 4h-1v1h1v-1zm0-2h-1v1h1v-1z" }) + ] + } + ); +}); + +export { SiLibreofficebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.cjs new file mode 100644 index 000000000..adad814e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007C3C"; +const SiLibreofficecalc = React__namespace.forwardRef(function SiLibreofficecalc2({ title = "LibreOffice Calc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 13H7v-1h2v1zm6-3h-2v1h2v-1zm-6 0H7v1h2v-1zm3 0h-2v1h2v-1zm3-10 7 7V0h-7zM9 14H7v1h2v-1zm5 3h1v-3h-1v3zm2 0h1v-1h-1v1zm-4 0h1v-2h-1v2zm1-17 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zm5 13h-7v5h7v-5zm-2-4H6v7h4.5v-1H10v-1h.5v-1H10v-1h2v.5h1V12h2v.5h1V9z" }) + ] + } + ); +}); + +exports.default = SiLibreofficecalc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.d.ts new file mode 100644 index 000000000..0e8a789cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007C3C"; +declare const SiLibreofficecalc: IconType; +export { SiLibreofficecalc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.mjs new file mode 100644 index 000000000..ceae2ed73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficecalc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007C3C"; +const SiLibreofficecalc = React.forwardRef(function SiLibreofficecalc2({ title = "LibreOffice Calc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9 13H7v-1h2v1zm6-3h-2v1h2v-1zm-6 0H7v1h2v-1zm3 0h-2v1h2v-1zm3-10 7 7V0h-7zM9 14H7v1h2v-1zm5 3h1v-3h-1v3zm2 0h1v-1h-1v1zm-4 0h1v-2h-1v2zm1-17 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zm5 13h-7v5h7v-5zm-2-4H6v7h4.5v-1H10v-1h.5v-1H10v-1h2v.5h1V12h2v.5h1V9z" }) + ] + } + ); +}); + +export { SiLibreofficecalc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.cjs new file mode 100644 index 000000000..713f52084 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CB6D30"; +const SiLibreofficedraw = React__namespace.forwardRef(function SiLibreofficedraw2({ title = "LibreOffice Draw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 0C3.338 0 2 1.338 2 3v18c0 1.662 1.338 3 3 3h14c1.662 0 3-1.338 3-3V9l-9-9H5zm1 12a3 3 0 0 1 3-3c1.6 0 2.897 1.257 2.984 2.837L11.5 11l-2.298 3.98c-.068.004-.133.02-.203.02a3 3 0 0 1-3-3zm3.191 5 2.31-4 2.31 4H9.19zM18 16h-3.613L13 13.597V11h5v5zm4-16v7l-7-7h7zm-5 15h-3v-3h3v3z" }) + ] + } + ); +}); + +exports.default = SiLibreofficedraw; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.d.ts new file mode 100644 index 000000000..33bb1e997 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CB6D30"; +declare const SiLibreofficedraw: IconType; +export { SiLibreofficedraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.mjs new file mode 100644 index 000000000..ee83f0ed1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficedraw.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CB6D30"; +const SiLibreofficedraw = React.forwardRef(function SiLibreofficedraw2({ title = "LibreOffice Draw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5 0C3.338 0 2 1.338 2 3v18c0 1.662 1.338 3 3 3h14c1.662 0 3-1.338 3-3V9l-9-9H5zm1 12a3 3 0 0 1 3-3c1.6 0 2.897 1.257 2.984 2.837L11.5 11l-2.298 3.98c-.068.004-.133.02-.203.02a3 3 0 0 1-3-3zm3.191 5 2.31-4 2.31 4H9.19zM18 16h-3.613L13 13.597V11h5v5zm4-16v7l-7-7h7zm-5 15h-3v-3h3v3z" }) + ] + } + ); +}); + +export { SiLibreofficedraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.cjs new file mode 100644 index 000000000..26e6927f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D0120D"; +const SiLibreofficeimpress = React__namespace.forwardRef(function SiLibreofficeimpress2({ title = "LibreOffice Impress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 0v7l-7-7h7zm-9 0 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM7 17H6v1h1v-1zm0-2H6v1h1v-1zm0-2H6v1h1v-1zm3 4H8v1h2v-1zm0-2H8v1h2v-1zm0-2H8v1h2v-1zm6-1v-1H8v1h8zm2 1h-7v5h7v-5zm0-4H6v1h12V9zm-4 6.707 1 1 2.207-2.207-.707-.707-1.5 1.5-1-1-2.207 2.207.707.707 1.5-1.5z" }) + ] + } + ); +}); + +exports.default = SiLibreofficeimpress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.d.ts new file mode 100644 index 000000000..7d25c4afe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D0120D"; +declare const SiLibreofficeimpress: IconType; +export { SiLibreofficeimpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.mjs new file mode 100644 index 000000000..7f3f32ba3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficeimpress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D0120D"; +const SiLibreofficeimpress = React.forwardRef(function SiLibreofficeimpress2({ title = "LibreOffice Impress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22 0v7l-7-7h7zm-9 0 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM7 17H6v1h1v-1zm0-2H6v1h1v-1zm0-2H6v1h1v-1zm3 4H8v1h2v-1zm0-2H8v1h2v-1zm0-2H8v1h2v-1zm6-1v-1H8v1h8zm2 1h-7v5h7v-5zm0-4H6v1h12V9zm-4 6.707 1 1 2.207-2.207-.707-.707-1.5 1.5-1-1-2.207 2.207.707.707 1.5-1.5z" }) + ] + } + ); +}); + +export { SiLibreofficeimpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.cjs new file mode 100644 index 000000000..29c57eaf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C10018"; +const SiLibreofficemath = React__namespace.forwardRef(function SiLibreofficemath2({ title = "LibreOffice Math", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 0v7l-7-7h7zm-9 0 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM8 17H6v1h2v-1zm5 0h-2v1h2v-1zm2.293-1.293a1 1 0 0 0 1.414-1.414l-.793-.793.793-.793a1 1 0 0 0-1.414-1.414l-.793.793-.793-.793a1 1 0 1 0-1.414 1.414l.793.793-.793.793a1 1 0 0 0 1.414 1.414l.793-.793.793.793zM18 17h-2v1h2v-1zm0-8H9.862L8 13.653 7.338 12H6v1h.662L8 16.347 10.539 10H18V9z" }) + ] + } + ); +}); + +exports.default = SiLibreofficemath; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.d.ts new file mode 100644 index 000000000..6dc2ad562 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C10018"; +declare const SiLibreofficemath: IconType; +export { SiLibreofficemath as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.mjs new file mode 100644 index 000000000..a6377b43c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficemath.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C10018"; +const SiLibreofficemath = React.forwardRef(function SiLibreofficemath2({ title = "LibreOffice Math", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22 0v7l-7-7h7zm-9 0 9 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8zM8 17H6v1h2v-1zm5 0h-2v1h2v-1zm2.293-1.293a1 1 0 0 0 1.414-1.414l-.793-.793.793-.793a1 1 0 0 0-1.414-1.414l-.793.793-.793-.793a1 1 0 1 0-1.414 1.414l.793.793-.793.793a1 1 0 0 0 1.414 1.414l.793-.793.793.793zM18 17h-2v1h2v-1zm0-8H9.862L8 13.653 7.338 12H6v1h.662L8 16.347 10.539 10H18V9z" }) + ] + } + ); +}); + +export { SiLibreofficemath as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.cjs new file mode 100644 index 000000000..2265a838c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#083FA6"; +const SiLibreofficewriter = React__namespace.forwardRef(function SiLibreofficewriter2({ title = "LibreOffice Writer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 0v7l-7-7h7zm0 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8l9 9zM6 10h5V9H6v1zm0 2h5v-1H6v1zm0 2h5v-1H6v1zm5 3H6v1h5v-1zm7-2H6v1h12v-1zm0-6h-6v5h6V9zm-1.5 2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zM14 11l-1 2h3l-2-2z" }) + ] + } + ); +}); + +exports.default = SiLibreofficewriter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.d.ts new file mode 100644 index 000000000..fdba372d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#083FA6"; +declare const SiLibreofficewriter: IconType; +export { SiLibreofficewriter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.mjs new file mode 100644 index 000000000..63587a0fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibreofficewriter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#083FA6"; +const SiLibreofficewriter = React.forwardRef(function SiLibreofficewriter2({ title = "LibreOffice Writer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22 0v7l-7-7h7zm0 9v12c0 1.662-1.338 3-3 3H5c-1.662 0-3-1.338-3-3V3c0-1.662 1.338-3 3-3h8l9 9zM6 10h5V9H6v1zm0 2h5v-1H6v1zm0 2h5v-1H6v1zm5 3H6v1h5v-1zm7-2H6v1h12v-1zm0-6h-6v5h6V9zm-1.5 2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zM14 11l-1 2h3l-2-2z" }) + ] + } + ); +}); + +export { SiLibreofficewriter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.cjs new file mode 100644 index 000000000..24dff58f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1565C0"; +const SiLibretranslate = React__namespace.forwardRef(function SiLibretranslate2({ title = "LibreTranslate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.7835 0q-1.7162 4.666-8.892 7.991l1.3623 1.523q5.3951-2.6385 7.8192-5.996 2.4777 3.1857 8.1948 6.1247L23.544 8.066q-6.103-2.9283-8.4198-6.2425.118-.1824.4827-1.255ZM9.5467 7.991q-.3218 3.5075-1.4481 5.8028-1.1155 2.2953-3.6683 4.5692l1.4265 1.2763q2.8426-2.6064 4.1941-5.556 1.1799 1.0297 2.4133 2.6494l1.4588-1.3086q-1.1477-1.4587-3.2286-3.25.547-2.0271.7614-3.9793zm7.1007 0q-.1716 4.151-1.4158 6.3927-1.2444 2.2417-3.7328 3.8934l1.4051 1.298q3.5718-2.6065 4.7088-5.8242 1.7268 3.4644 4.8696 5.867l1.4051-1.3408q-1.7806-1.3192-3.0141-2.7887-1.2227-1.4801-1.8662-3.0461-.6328-1.5767-.6328-2.1452l.075-.751q.0859-.8366.0859-1.3942zM.1126 8.8018V24h9.4443v-1.7095H2.0515V8.8018Z" }) + ] + } + ); +}); + +exports.default = SiLibretranslate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.d.ts new file mode 100644 index 000000000..9f3344e44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1565C0"; +declare const SiLibretranslate: IconType; +export { SiLibretranslate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.mjs new file mode 100644 index 000000000..f5b45c6cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretranslate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1565C0"; +const SiLibretranslate = React.forwardRef(function SiLibretranslate2({ title = "LibreTranslate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.7835 0q-1.7162 4.666-8.892 7.991l1.3623 1.523q5.3951-2.6385 7.8192-5.996 2.4777 3.1857 8.1948 6.1247L23.544 8.066q-6.103-2.9283-8.4198-6.2425.118-.1824.4827-1.255ZM9.5467 7.991q-.3218 3.5075-1.4481 5.8028-1.1155 2.2953-3.6683 4.5692l1.4265 1.2763q2.8426-2.6064 4.1941-5.556 1.1799 1.0297 2.4133 2.6494l1.4588-1.3086q-1.1477-1.4587-3.2286-3.25.547-2.0271.7614-3.9793zm7.1007 0q-.1716 4.151-1.4158 6.3927-1.2444 2.2417-3.7328 3.8934l1.4051 1.298q3.5718-2.6065 4.7088-5.8242 1.7268 3.4644 4.8696 5.867l1.4051-1.3408q-1.7806-1.3192-3.0141-2.7887-1.2227-1.4801-1.8662-3.0461-.6328-1.5767-.6328-2.1452l.075-.751q.0859-.8366.0859-1.3942zM.1126 8.8018V24h9.4443v-1.7095H2.0515V8.8018Z" }) + ] + } + ); +}); + +export { SiLibretranslate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.cjs new file mode 100644 index 000000000..f506c8343 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9699"; +const SiLibretube = React__namespace.forwardRef(function SiLibretube2({ title = "LibreTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.12 0c-.2688.004-.5138.2196-.5138.5206v4.9981c0 .1875.1009.3604.2641.4525l9.8769 5.5768c.3522.199.3522.7062 0 .9051L1.8703 18.03a.52.52 0 0 0-.264.4526v4.997c0 .4016.436.6514.7824.4484L22.207 12.3121a.3777.3777 0 0 0-.0003-.652L2.3883.072A.516.516 0 0 0 2.1199 0zm-.005 7.9458c-.2671.006-.5088.2216-.5088.5203v7.056c0 .3982.4296.6484.776.452l6.222-3.528c.3512-.199.3512-.705 0-.904l-6.222-3.528a.515.515 0 0 0-.2674-.0683z" }) + ] + } + ); +}); + +exports.default = SiLibretube; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.d.ts new file mode 100644 index 000000000..8e34169f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9699"; +declare const SiLibretube: IconType; +export { SiLibretube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.mjs new file mode 100644 index 000000000..ffa2f6ac6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibretube.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9699"; +const SiLibretube = React.forwardRef(function SiLibretube2({ title = "LibreTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.12 0c-.2688.004-.5138.2196-.5138.5206v4.9981c0 .1875.1009.3604.2641.4525l9.8769 5.5768c.3522.199.3522.7062 0 .9051L1.8703 18.03a.52.52 0 0 0-.264.4526v4.997c0 .4016.436.6514.7824.4484L22.207 12.3121a.3777.3777 0 0 0-.0003-.652L2.3883.072A.516.516 0 0 0 2.1199 0zm-.005 7.9458c-.2671.006-.5088.2216-.5088.5203v7.056c0 .3982.4296.6484.776.452l6.222-3.528c.3512-.199.3512-.705 0-.904l-6.222-3.528a.515.515 0 0 0-.2674-.0683z" }) + ] + } + ); +}); + +export { SiLibretube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.cjs new file mode 100644 index 000000000..14291af66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00ACFF"; +const SiLibrewolf = React__namespace.forwardRef(function SiLibrewolf2({ title = "LibreWolf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12A12 12 0 0 0 12 0m.0306 2.4174c2.539 0 4.7927.9097 6.619 2.6718.8799.849 1.47 1.654 1.9752 2.6953.6834 1.4085.96 2.6337.96 4.2503 0 2.1282-.6144 3.9841-1.891 5.7107-.3792.513-1.1202 1.2925-1.612 1.6955-1.3487 1.1057-3.068 1.8537-4.7739 2.0774-.5894.0772-1.982.0868-2.5232.0174v.0001c-1.681-.2156-3.2887-.8859-4.6919-1.9555-.4576-.3489-1.3163-1.213-1.6911-1.702-1.0497-1.3694-1.7025-2.9237-1.9179-4.5663-.0922-.7032-.0916-1.996.0011-2.6387.4635-3.213 2.4855-5.9688 5.389-7.3449 1.3505-.64 2.5868-.9111 4.1567-.9111m-.0315 1.4514c-1.4755-.0014-2.7693.3367-4.0497 1.0586-1.1657.6572-2.3708 1.8637-3.0308 3.0342-.486.862-.8417 1.8852-.9806 2.82-.091.613-.0929 1.8301-.0036 2.417.1786 1.1746.6241 2.3354 1.27 3.3091.3527.5317.3416.5259.6528.3479.5566-.3184.7018-.4726 1.005-1.0666.3546-.6946.7336-1.3016 1.0762-1.7232.3953-.4867.4496-.5732.648-1.0327.0997-.2312.2788-.5708.3978-.7546l.2165-.3341-.28-.2753c-.372-.3655-.6814-.7802-.7395-.991-.0595-.2152.0108-.3353.2902-.4967.2825-.1632.4845-.21 1.2396-.2877.3677-.0377.7668-.1069.8925-.1547.125-.0475.4988-.251.8305-.452.9577-.5807 1.0388-.6107 1.613-.5983.485.0106.4859.0103.7734-.1635.6026-.3642 1.4681-1.0215 2.607-1.9797.2183-.1838.4286-.328.4674-.3206.161.031.457.757.5019 1.2315.0272.2878-.0285.5725-.1992 1.018-.0466.1215-.068.2375-.0477.2577.0489.0486.2165-.1607.2165-.2703 0-.1397.0924-.1557.2182-.0377.0915.0859.1705.1105.3545.1105.201 0 .2507.0186.329.1232.1332.1775.1644.6616.0625.9682-.099.2983-.3986.6423-.6704.77-.2431.1143-.7354.5951-.9658.9432-.0882.1332-.2536.411-.3675.6172-.114.2063-.305.518-.4246.6925-.2354.3436-.437.823-.6316 1.5017-.1143.3987-.1238.5025-.1285 1.3918-.0057 1.0742-.0613 1.3378-.3518 1.6686-.3301.376-.6596 1.2018-.6873 1.7225-.0175.3286-.0682.649-.1401.8862-.0317.1045.0275.1032.38-.0079 1.027-.3237 1.8638-.7588 2.6718-1.3889.4296-.335 1.1722-1.0847 1.4835-1.4978.8445-1.1202 1.419-2.5235 1.5881-3.8785.0814-.6526.0342-2.0332-.0901-2.6325-.3293-1.5875-1.039-2.9284-2.1566-4.0759-.6968-.7154-1.3311-1.187-2.1473-1.5961-1.2384-.621-2.2994-.8718-3.6932-.8733m1.516 5.314-.6964.0976-.433.5544.6966-.0978z" }) + ] + } + ); +}); + +exports.default = SiLibrewolf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.d.ts new file mode 100644 index 000000000..680ff5d66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00ACFF"; +declare const SiLibrewolf: IconType; +export { SiLibrewolf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.mjs new file mode 100644 index 000000000..16f0a6807 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibrewolf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00ACFF"; +const SiLibrewolf = React.forwardRef(function SiLibrewolf2({ title = "LibreWolf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12A12 12 0 0 0 12 0m.0306 2.4174c2.539 0 4.7927.9097 6.619 2.6718.8799.849 1.47 1.654 1.9752 2.6953.6834 1.4085.96 2.6337.96 4.2503 0 2.1282-.6144 3.9841-1.891 5.7107-.3792.513-1.1202 1.2925-1.612 1.6955-1.3487 1.1057-3.068 1.8537-4.7739 2.0774-.5894.0772-1.982.0868-2.5232.0174v.0001c-1.681-.2156-3.2887-.8859-4.6919-1.9555-.4576-.3489-1.3163-1.213-1.6911-1.702-1.0497-1.3694-1.7025-2.9237-1.9179-4.5663-.0922-.7032-.0916-1.996.0011-2.6387.4635-3.213 2.4855-5.9688 5.389-7.3449 1.3505-.64 2.5868-.9111 4.1567-.9111m-.0315 1.4514c-1.4755-.0014-2.7693.3367-4.0497 1.0586-1.1657.6572-2.3708 1.8637-3.0308 3.0342-.486.862-.8417 1.8852-.9806 2.82-.091.613-.0929 1.8301-.0036 2.417.1786 1.1746.6241 2.3354 1.27 3.3091.3527.5317.3416.5259.6528.3479.5566-.3184.7018-.4726 1.005-1.0666.3546-.6946.7336-1.3016 1.0762-1.7232.3953-.4867.4496-.5732.648-1.0327.0997-.2312.2788-.5708.3978-.7546l.2165-.3341-.28-.2753c-.372-.3655-.6814-.7802-.7395-.991-.0595-.2152.0108-.3353.2902-.4967.2825-.1632.4845-.21 1.2396-.2877.3677-.0377.7668-.1069.8925-.1547.125-.0475.4988-.251.8305-.452.9577-.5807 1.0388-.6107 1.613-.5983.485.0106.4859.0103.7734-.1635.6026-.3642 1.4681-1.0215 2.607-1.9797.2183-.1838.4286-.328.4674-.3206.161.031.457.757.5019 1.2315.0272.2878-.0285.5725-.1992 1.018-.0466.1215-.068.2375-.0477.2577.0489.0486.2165-.1607.2165-.2703 0-.1397.0924-.1557.2182-.0377.0915.0859.1705.1105.3545.1105.201 0 .2507.0186.329.1232.1332.1775.1644.6616.0625.9682-.099.2983-.3986.6423-.6704.77-.2431.1143-.7354.5951-.9658.9432-.0882.1332-.2536.411-.3675.6172-.114.2063-.305.518-.4246.6925-.2354.3436-.437.823-.6316 1.5017-.1143.3987-.1238.5025-.1285 1.3918-.0057 1.0742-.0613 1.3378-.3518 1.6686-.3301.376-.6596 1.2018-.6873 1.7225-.0175.3286-.0682.649-.1401.8862-.0317.1045.0275.1032.38-.0079 1.027-.3237 1.8638-.7588 2.6718-1.3889.4296-.335 1.1722-1.0847 1.4835-1.4978.8445-1.1202 1.419-2.5235 1.5881-3.8785.0814-.6526.0342-2.0332-.0901-2.6325-.3293-1.5875-1.039-2.9284-2.1566-4.0759-.6968-.7154-1.3311-1.187-2.1473-1.5961-1.2384-.621-2.2994-.8718-3.6932-.8733m1.516 5.314-.6964.0976-.433.5544.6966-.0978z" }) + ] + } + ); +}); + +export { SiLibrewolf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.cjs new file mode 100644 index 000000000..07f68c2df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#403C3D"; +const SiLibuv = React__namespace.forwardRef(function SiLibuv2({ title = "libuv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.534 19.21c-.573.117-1.183.506-1.656.594-1.044.193-1.66.007-1.108-.22.8-.332 3.44-.415 3.716-2.374.276-1.96.083-2.843-.055-3.34a7.179 7.179 0 0 0-.351-.891 3.633 3.633 0 0 0-.134-.523 1.66 1.66 0 0 1-.074-.228s-.034-.241.076-.476c.098-.208.433-.659.456-1.095v-.08a.762.762 0 0 0-.008-.087l-.002-.026a.802.802 0 0 0-.374-.542c-.123-.082-.29-.107-.382-.224.073-.23.306-.313.404-.501.06-.167.011-.343-.081-.503-.178-.2-.528-.372-.842-.49-.393-.147-.792-.264-1.062-.475-.285-.152-.477-.445-.302-.833a.703.703 0 0 0 .064-.3v-.028c-.001-.02-.004-.037-.006-.055a.538.538 0 0 0-.008-.042l-.006-.024-.008-.027c-.072-.243-.453-.31-.59-.323-.307-.027-.506-.111-.67-.163.132.069.264.16.433.228.106.044.26.07.389.112 0 0 .239.048.304.214a.59.59 0 0 1 0 .403l-.01.027c-.024.073-.05.143-.056.215-.022.286.153.434.246.673.167.159.406.324.736.473.298.134.653.215.874.348.127.077.36.263.354.399-.004.104-.195.245-.272.348-.056.074-.083.171-.132.24-.043.069-.099.112-.162.112-.083 0-.271.032-.147.041.124.01.446.161.446.161.435.18.727.514.567.99-.134.399-.442.732-.463 1.17-.023.467.19.85.218 1.22.046.623-.043 1.051-.164 1.52-.056.218-.086.434-.136.647-.213.906-.76 1.299-1.5 1.718-.322.181-.666.516-1.01.622-.056.017-.141-.009-.192 0-.317.057-.602.215-.927.274-.306.057-.628.03-.991.121-.184.066-.42.165-.559.223-.213.097-.422.199-.631.3l-.693.396s-.386.224.042.059c.344-.134 1.527-.722 1.031-.377-.342.172-.527.416-.83.624 0 0-1.016.504-1.169.645-.167.155-.372.069-.507.22a1.19 1.19 0 0 1-.49.332c-.138.046-.294.35-.506.506-.211.156-.671.11-1.076.285a2.373 2.373 0 0 1-.824.177c-.04.004-.08.006-.116.007H9.56a1.553 1.553 0 0 1-.556-.096c-.169-.062-.231-.03-.193-.01.038.02.148.124.148.124-.472 0-.601-.315-.819-.548.1-.014.381.055.238-.028-.283-.135-.827-.145-.838-.47-.008-.255.11-.2.11-.2.197.346.809.38 1.254.375.83-.01 1.393-.466 1.937-.723a9.87 9.87 0 0 0 .382-.246v.004c.171-.112.345-.22.492-.355.256-.236.429-.543.655-.804a.697.697 0 0 1 .146-.153c.064-.06.132-.115.208-.164l.003.006.03-.02-.006-.01c.548-.311 1.058-.655 1.489-1.072l.003-.005c.062-.056.386-.418.542-.593.185-.246.318-.557.395-.87.028-.114.01-.251.054-.374.069-.19.242-.36.355-.548.117-.195.195-.408.273-.622.341-.938.736-1.685 1.473-2.191.355-.244.787-.402 1.037-.772a1.665 1.665 0 0 1-.703.408c-.811.267-1.338.95-1.603 1.385a5.167 5.167 0 0 0-.477 1.22 4.06 4.06 0 0 0-.355-1.395c-.16-.37-.303-.761-.6-.996 0 0-.011.001-.058-.027-.046-.027.767-.048.767-.048.143.006.287.026.434.045a.373.373 0 0 1 .103.006c.447.079.91-.088 1.2-.298.15-.11.412-.197.628-.256.004-.01.025-.02.08-.03 0 0 .33-.104.682-.2a3.27 3.27 0 0 0 .533-.175.779.779 0 0 0 .187-.162c.104-.127.106-.28.192-.498.085-.217.216-.386.218-.573.006-.611-.573-1.098-1.2-.772.617-.16 1.056.142.982.723-.092.716-1.172 1.248-1.829 1.518-.26.107-.565.243-.873.274-.443.045-.846-.05-1.227-.025-.49.032-.815.291-1.228.324-.355.028-.307-.212-.615-.239-.063-.036-.257 0-.45-.01-.532.14-.874-.103-1.309-.299-.314-.141-.648-.27-.982-.299-.838-.07-1.348.046-2.033-.027-.193-.02-.594-.045-.784-.116-.593-.222-1.047-.141-1.69-.15-.469-.007-.903-.032-1.196.02-.08.014-.16.034-.245.05-.628.109-1.583.166-1.555.721.046-.032.033-.118.109-.124-.003.102-.006.204.027.274-.365-.01-.58-.262-.573-.548.012-.487.796-.69 1.337-.822.542-.13 1.105-.284 1.5-.348-.947.139-1.95.228-2.673.572a.778.778 0 0 1-.021-.108c-.058-.263-.183-.666-.27-1.058-.102-.451.055-1.242.055-1.242l.004.004c.065-.402.148-.58.228-.821.172-.513.726-.674 1.114-.723a1.742 1.742 0 0 0-.668.901c-.017.137-.03.264-.039.377.294-.914 1.113-1.256 1.113-1.256l.262-.283-.003.013c.452-.438 1.05-.777 1.809-.798.383-.01.845.09.844.466 0 .212-.167.392-.393.491a.311.311 0 0 0 .183-.019l.235-.263c.078-.192.07-.435-.06-.581.346-.296.884.036.845.428.101-.085.163-.247.094-.375.465-.273.726.39 1.194.235-.044-.133-.27-.106-.338-.217.612-.087 1.15.128 1.764.08.038.033.08.066.124.1-1.149.126-.215.126-.215.126.147-.014.5-.038.638-.014.225.04.37-.014.569-.092.004.009.024.008.036-.014.103-.041.222-.086.373-.127a.98.98 0 0 0 .174-.042l.024-.005.004-.004c.079-.027.153-.06.216-.09.58-.279 1.06-.934 1.554-1.278.819-.569 1.595.134 2.165.59l-.004.006c.143.098.332.218.537.344.537.233 1.245.437 1.623.811.302.299.405.684.535 1.083.122.373.357.702.49 1.12a.163.163 0 0 0 .05-.092c-.004-.036-.01-.073 0-.097l.008.007a1.047 1.047 0 0 0-.043-.249c-.112-.229-.309-.49-.285-.693 0 0 .697.36 1.488.718.273.123.522.326.74.559l.063-.002a.136.136 0 0 0-.004.065c.384.43.657.944.752 1.24a4.416 4.416 0 0 0 .16.412h.001c.014.025.023.05.032.074.115.247.227.448.258.503.1.124.181.285.268.42a11.375 11.375 0 0 1-2.465 8.17c-.09.011-.214.032-.378.066zm-.718 1.12c-.549.18-1.11.516-1.467.55-1.076.102-1.27-.376-.41-.455.325-.03.805-.067 1.188-.248.564-.269 1.142-.529 1.528-.722-.264.306-.544.598-.839.875zm-11.735.052c-.092.03-.092-.015-.092-.015s-.165-.236-.19-.456c-.026-.218.03-.412.084-.44.055-.03.067.097.112.256.045.16.268.49.268.49.032.067-.09.134-.182.165zm.575.1c-.105.036-.105-.016-.105-.016s-.189-.269-.217-.519c-.03-.247.036-.468.099-.5.063-.035.076.11.127.29.051.183.307.558.307.558.036.077-.105.153-.211.188zm.194-.697c-.036-.313.048-.593.129-.636.08-.043.098.14.162.37.065.231.39.706.39.706.046.098-.134.194-.27.238-.135.044-.134-.02-.134-.02s-.24-.34-.277-.658zm4.669-3.587c.056-.05.116.056.226.176.11.122.5.313.5.313.063.046-.062.162-.164.232-.1.07-.117.03-.117.03s-.287-.136-.396-.321c-.108-.183-.106-.379-.05-.43zm-.924.492c.069-.065.143.073.281.229.14.16.631.414.631.414.08.06-.076.21-.203.3-.127.091-.148.038-.148.038s-.359-.182-.495-.423c-.136-.237-.136-.493-.066-.558zm-.825 1.11c-.122-.256-.111-.52-.04-.584.07-.064.138.083.266.255.131.175.602.467.602.467.075.067-.084.215-.212.301-.128.087-.147.03-.147.03s-.344-.21-.469-.47zm-.754.63c-.102-.269-.075-.54-.003-.6.073-.06.128.097.24.28.115.189.55.522.55.522.069.075-.094.214-.224.292-.129.078-.142.018-.142.018s-.318-.24-.421-.512zm-1.017 1.654c-.136.041-.134-.021-.134-.021s-.23-.331-.257-.637c-.026-.304.066-.574.148-.614.082-.041.094.136.15.358.059.225.37.686.37.686.043.094-.14.186-.277.228zm.275-1.059c-.066-.304-.002-.59.08-.642.082-.054.116.124.205.34.089.218.48.646.48.646.058.09-.125.21-.267.273-.14.062-.145-.004-.145-.004s-.286-.305-.353-.613zm3.688-7.155s.08.013.043.126c-.035.112-.042.46.066.61.11.15-.075.093-.219-.059-.144-.15-.246-.43-.215-.619 0 0-.008-.08.325-.058zm-.51.921c.176.195-.092.143-.316-.049-.223-.191-.406-.565-.39-.834 0 0-.022-.11.447-.13 0 0 .114.007.079.17-.033.163.006.65.18.843zm-1.19 1.016c1.017.067 1.747-.286 2.264-.647.136-.095.316-.326.546-.174-.098.203-.358.337-.573.448-.377.195-.712.365-1.146.473.732-.112 1.253-.417 1.8-.697.068.14.143.423.192.662h.008s.05.133.034.264c.003.063-.01.116-.055.146a.23.23 0 0 1-.055.052c-.2.13-.794.42-1.27.455-.016 0-.03.003-.046.004l-.035.01-.001-.006c-.432.05-.711.228-.16.137.553-.091 1.736-.292 1.305-.13h.002c-.538.21-1.245.415-1.938.348-.448-.043-.91-.263-1.31-.473-.397-.21-.775-.485-1.2-.573-.323-.067-.59.027-.873.075-.188.032-.45.108-.563-.01-.048-.056-.01-.115-.01-.115.108-.266.421-.423.682-.498.819-.235 1.611.198 2.401.25zm.23-.891c.171.248-.126.148-.353-.105-.227-.253-.38-.71-.323-1.017 0 0-.01-.13.529-.08 0 0 .129.025.066.206-.064.182-.09.747.08.996zm-1.084-.119c.169.283-.146.159-.376-.132-.23-.29-.367-.802-.284-1.136 0 0-.002-.144.58-.064 0 0 .137.035.057.232-.08.196-.145.818.023 1.1zm-1.12-.156c.172.286-.147.164-.38-.13-.234-.292-.376-.812-.293-1.155 0 0-.003-.145.585-.072 0 0 .14.034.059.236-.08.2-.143.836.029 1.121zm-1.027.323c.212.37-.159.213-.441-.166-.283-.379-.472-1.053-.397-1.5 0 0-.011-.19.662-.099 0 0 .161.042.081.306-.08.263-.116 1.089.095 1.46zm-1.09-.275c.211.323-.16.2-.441-.128-.282-.328-.467-.927-.389-1.332 0 0-.01-.171.665-.12 0 0 .162.032.08.272-.082.24-.125.985.085 1.308zm-1.154-.376c.149.277-.14.154-.345-.133-.205-.285-.318-.787-.232-1.115 0 0 .002-.14.54-.058 0 0 .127.035.046.226-.08.193-.158.802-.009 1.08zm-.88-.24c.14.221-.114.125-.303-.102-.189-.227-.308-.628-.248-.892 0 0-.005-.113.46-.053 0 0 .11.026.05.182-.06.154-.1.644.04.865zm-.925.16c.17.248-.126.149-.353-.105-.227-.254-.38-.71-.322-1.017 0 0-.01-.13.528-.08 0 0 .129.025.066.206-.064.182-.09.747.081.996zm-.746-.066c.175.195-.093.143-.316-.049-.224-.191-.407-.565-.39-.834 0 0-.023-.111.446-.13 0 0 .115.007.08.17-.034.163.005.65.18.843zm10.24 10.242c-.516.179-1.435.627-2.173 1.003-.177.008-.354.012-.533.012C5.69 23.423.577 18.31.577 12c0-4.888 3.07-9.057 7.387-10.688.022.02.045.04.07.058.048.039.129.059.17.109.057.067.033.203.058.287.075.259.235.497.501.691.04.029.114.043.148.08.074.085.052.227.108.324.06.102.16.226.284.321.067.052.169.08.232.143.052.05.066.14.103.216.1.204.362.44.488.653a.47.47 0 0 1 .041.088c.053.108.18.338.353.444 0 0 .018.319.336.682-.644-.035-1.265-.399-1.743-.037-.138-.15-.58-.269-.77-.058-.139-.242-.88-.398-1.025-.014-1.053-.472-2.325.202-2.734.878a2.86 2.86 0 0 0-.214.114 1.196 1.196 0 0 0-1.102.187c-.417.301-.853 1.65-.778 2.584.008.1.198.336.266.81.068.469.12.623.12.623-.093.162-.204.234-.219.423-.033.41.318.632.646.842.117.054.249.093.392.099.087.137.42.6.973.6l.04-.001c.211.177.431.225.28.006a.442.442 0 0 1-.034-.059.88.88 0 0 0 .334.13c.002 0 .054.013.097.013.015 0 .06 0 .076-.035s-.016-.072-.027-.084c-.044-.051-.094-.184-.131-.307.04.074.084.144.134.205.262.322.63.475.425.154a.957.957 0 0 1-.122-.392.95.95 0 0 0 .562.33c.235.223.528.315.352.077a.574.574 0 0 1-.091-.225c.142.17.382.389.676.389h.027c.202.136.371.158.22-.038a.692.692 0 0 1-.117-.33c.134.272.39.646.834.767.003 0 .08.022.143.022.049 0 .08-.013.094-.04.022-.038-.006-.083-.016-.098a1.094 1.094 0 0 1-.078-.16c.2.117.346.127.191-.063a.746.746 0 0 1-.14-.379c.108.29.329.695.764.96.003.002.081.04.168.04a.25.25 0 0 0 .112-.026.101.101 0 0 0 .053-.067c.022-.09-.063-.22-.071-.23a1.88 1.88 0 0 1-.134-.35l.003.003c.315.254.723.371.471.118-.153-.154-.212-.417-.217-.632.092.257.315.704.778.792.003 0 .075.014.128.014.029 0 .064-.003.077-.031.005-.012.007-.032-.014-.055a.817.817 0 0 1-.11-.251c.022.016.044.034.067.049.224.147.489.224.523.176.072.06.184.136.337.204.014.032.028.065.04.098 0 0 .07.198.098.305-.363-.094-.984-.276-1.446-.174-.365.08-1.317.606-1.086.976a.17.17 0 0 0 .057.056l.014.005a.962.962 0 0 0 .42.075l.061-.001a2.74 2.74 0 0 0 .442-.07c.254-.084.482-.034.482-.034l-.004.003c.181.02.372.084.569.185.212.107.5.285.573.373.132.16-.07.532-.146.761l-.013.042-.005.019a1.63 1.63 0 0 1-.039.1.42.42 0 0 1-.033-.047c-.072-.121-.11-.228-.148-.179-.038.05-.04.244.032.427a.496.496 0 0 0 .026.055c-.082.15-.182.307-.287.458a1.218 1.218 0 0 1-.204-.234c-.093-.16-.142-.3-.19-.235-.048.064-.05.322.042.565a.86.86 0 0 0 .123.213 5.25 5.25 0 0 1-.307.352 1.736 1.736 0 0 1-.276-.345c-.089-.178-.135-.33-.185-.265-.05.065-.06.338.024.603.034.108.094.207.152.287a16.61 16.61 0 0 1-.345.32 1.455 1.455 0 0 1-.178-.284c-.079-.192-.116-.355-.17-.293-.052.063-.075.347-.005.63.018.07.045.137.075.199-.12.107-.235.209-.34.3a1.261 1.261 0 0 1-.072-.183c-.062-.23-.085-.419-.146-.36-.061.056-.114.361-.069.685.004.032.01.062.017.093l-.03.026c-.069.06-.144.132-.222.21a1.239 1.239 0 0 1-.042-.164c-.04-.24-.045-.43-.108-.385-.062.045-.137.34-.122.67.002.051.008.103.017.155-.091.103-.182.209-.267.313A2.156 2.156 0 0 1 8 19.008c-.045-.25-.055-.45-.119-.401-.058.044-.122.312-.115.623-.064.047-.147.264-.15.51a.935.935 0 0 0 .035.246c-.042.058-.114.099-.164.17-.261.365-.155.8.409.896.173.532.61.79 1.282.797.09 0 .185-.03.273-.025.1.007.182.047.273.05.49.015.746-.14 1.118-.25.278-.08.564-.106.737-.173.265-.104.39-.389.6-.523.079-.05.226-.074.355-.15.11-.064.204-.18.3-.224.085-.038.225-.03.328-.074.17-.075.36-.235.573-.35a16.92 16.92 0 0 1 1.282-.622c.227-.1.467-.333.6-.348.158-.018.341.113.464.1.25.297.338.713.327 1.248.015.001.004.132.004.132s.087 1.148-1.705 1.768zM7.583.205c.188.052.397.159.197.477-.122-.131-.164-.304-.197-.477zm.358.42c.06-.105 0-.159.032-.222.539.07.585.448.352.984-.359-.121-.455-.361-.523-.605C7.86.72 7.904.69 7.94.625zm.588.106c.502.221.58.776.234 1.499a.94.94 0 0 1-.278-.274c-.053-.082-.127-.216-.11-.326.01-.075.07-.177.1-.261.089-.244.123-.463.054-.638zm2.403 2.105c-.009-.026.01-.025.031-.045.75.152.81.884.487 1.435-.152.261-.302.399-.536.326-.194-.06-.22-.217-.314-.324.382-.556.375-.966.332-1.392zm-.866-.55c-.004-.068-.016-.144.011-.21a.74.74 0 0 1 .27.07c.422.223.596 1.018.351 1.486-.105.2-.211.298-.408.241-.317-.09-.409-.45-.537-.599.346-.368.326-.692.313-.988zM9.05 1.287l.02-.01c.825.29 1.299.84.549 1.85-.286-.144-.447-.335-.521-.552-.044-.127-.078-.143-.048-.3.064-.341.085-.717 0-.988zm3.201 4.238l-.052.024c-.1.051-.206.082-.306.1-.62-.134-.807-.84-.807-.84.58-.256.907-.99.7-1.393.006-.015.02-.012.033-.01.263.117.54.311.673.522.256.399.331 1 .119 1.482-.095.022-.156.044-.232.07a.543.543 0 0 0-.04.012l-.07.026-.007.003-.011.004zm1-.501l-.122.104c-.036.068-.145.158-.284.217.11-.335.124-.691.132-.955.228.119.38.282.468.467l-.087.075a.62.62 0 0 0-.163-.194c.032.093.05.188.057.286zM12 .577c5.596 0 10.251 4.023 11.232 9.335a1.862 1.862 0 0 0-.358-.198c-.28-1.248-.882-2.037-2.118-2.487-.414-.151-.807-.326-1.216-.504.024-1.328-1.52-1.3-2.482-1.984-.418-.298-.893-.848-1.371-.95-.926-.197-1.495.448-2.042.899-.134-.146-.335-.29-.627-.42 0 0-.522-.744-.765-.884a.123.123 0 0 1-.034-.026c-.134-.063-.303-.098-.422-.177-.117-.077-.14-.26-.257-.348a1.08 1.08 0 0 0-.225-.122c-.095-.038-.256-.03-.351-.083-.117-.064-.127-.272-.211-.376a.842.842 0 0 0-.408-.273c-.08-.026-.198-.028-.27-.066-.079-.043-.098-.177-.16-.26-.143-.192-.384-.341-.66-.439-.06-.02-.139-.02-.182-.05-.051-.034-.057-.119-.088-.184C9.945.718 10.956.577 12 .577zm11.343 10.068c-.116-.199-.223-.39-.263-.559.08.052.148.11.212.172.02.128.036.257.051.387zM12 0a12 12 0 0 0-3.55.535.27.27 0 0 0-.044-.062c-.103-.1-.226-.177-.482-.112A.647.647 0 0 0 7.52.11l-.006.01c.025.233.058.468.235.629l-.003.028C3.22 2.494 0 6.87 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12S18.627 0 12 0zM5.9 6.312s-.471.107-.6.942c0 0-.022.42.11.328-.111-.506.37-.735.48-.787.155-.069.283-.046.293.086.01.142-.152.205-.2.352.172-.098.558-.326.518-.623-.03-.218-.235-.412-.6-.298zm6.206.512c-.81-.475-2.907-.393-3.4-.43-.484-.038-.726.579-.726.579-.007.13.1-.02.1-.02.317-.57.595-.466.595-.466 1.003.293 1.182 1.767 1.224 2.108.041.34.127.119.127.119.097-.848-.52-1.882-.65-2.015-.13-.131-.007-.206.408-.09 1.247.35 1.364 2.349 1.44 2.59.075.242.122.01.122.01-.17-1.837-.868-2.29-1.054-2.543-.077-.105.554-.12.831.06 1.568 1.013 1.392 2.953 1.534 2.676.143-.283-.395-2.038-1.15-2.636-.152-.119.524.09.773.319 1.18 1.09 1.324 2.271 1.415 2.612.09.34.133.225.133.225.016-1.155-.899-2.617-1.722-3.098zm2.274-.804c.174-.094.379-.707.8-.452.314.189.463.236.463.236s-.219.062-.319.226-.218.29-.566.239c-.366-.055-.433.003-.617.033 0 0 .065-.187.239-.282zm-.673.49c.269.059.516.163.764.324.275.179.573.507.983.474.13-.01.368-.137.463-.2.12-.078.404-.263.328-.547-.034-.126-.184-.147-.273-.25-.124-.143-.12-.283-.218-.448.216.044.34.172.572.2a3.983 3.983 0 0 0-1.31-.797c.04-.022.065-.113.192-.15.115-.033.484.024.246-.025-.24-.067-.389.002-.546.1-.362.226-.656.745-1.037.971-.165.099-.327.076-.464.25.089.177.18.072.3.099zm2.838-.323c-.09.052.057.1.082.125.104.102.336.29.409.448.15.323.103.817-.164.996-.18.12-1.06.449-1.446.448-1.083-.001-1.193-1.191-1.855-1.594.012.114.095.353.19.476.372.486.727 1.487 1.773 1.32.37-.059 1.061-.314 1.339-.488.301-.188.525-.909.218-1.308-.138-.178-.467-.405-.546-.423z" }) + ] + } + ); +}); + +exports.default = SiLibuv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.d.ts new file mode 100644 index 000000000..9db413158 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#403C3D"; +declare const SiLibuv: IconType; +export { SiLibuv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.mjs new file mode 100644 index 000000000..5ff6e9d47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLibuv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#403C3D"; +const SiLibuv = React.forwardRef(function SiLibuv2({ title = "libuv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.534 19.21c-.573.117-1.183.506-1.656.594-1.044.193-1.66.007-1.108-.22.8-.332 3.44-.415 3.716-2.374.276-1.96.083-2.843-.055-3.34a7.179 7.179 0 0 0-.351-.891 3.633 3.633 0 0 0-.134-.523 1.66 1.66 0 0 1-.074-.228s-.034-.241.076-.476c.098-.208.433-.659.456-1.095v-.08a.762.762 0 0 0-.008-.087l-.002-.026a.802.802 0 0 0-.374-.542c-.123-.082-.29-.107-.382-.224.073-.23.306-.313.404-.501.06-.167.011-.343-.081-.503-.178-.2-.528-.372-.842-.49-.393-.147-.792-.264-1.062-.475-.285-.152-.477-.445-.302-.833a.703.703 0 0 0 .064-.3v-.028c-.001-.02-.004-.037-.006-.055a.538.538 0 0 0-.008-.042l-.006-.024-.008-.027c-.072-.243-.453-.31-.59-.323-.307-.027-.506-.111-.67-.163.132.069.264.16.433.228.106.044.26.07.389.112 0 0 .239.048.304.214a.59.59 0 0 1 0 .403l-.01.027c-.024.073-.05.143-.056.215-.022.286.153.434.246.673.167.159.406.324.736.473.298.134.653.215.874.348.127.077.36.263.354.399-.004.104-.195.245-.272.348-.056.074-.083.171-.132.24-.043.069-.099.112-.162.112-.083 0-.271.032-.147.041.124.01.446.161.446.161.435.18.727.514.567.99-.134.399-.442.732-.463 1.17-.023.467.19.85.218 1.22.046.623-.043 1.051-.164 1.52-.056.218-.086.434-.136.647-.213.906-.76 1.299-1.5 1.718-.322.181-.666.516-1.01.622-.056.017-.141-.009-.192 0-.317.057-.602.215-.927.274-.306.057-.628.03-.991.121-.184.066-.42.165-.559.223-.213.097-.422.199-.631.3l-.693.396s-.386.224.042.059c.344-.134 1.527-.722 1.031-.377-.342.172-.527.416-.83.624 0 0-1.016.504-1.169.645-.167.155-.372.069-.507.22a1.19 1.19 0 0 1-.49.332c-.138.046-.294.35-.506.506-.211.156-.671.11-1.076.285a2.373 2.373 0 0 1-.824.177c-.04.004-.08.006-.116.007H9.56a1.553 1.553 0 0 1-.556-.096c-.169-.062-.231-.03-.193-.01.038.02.148.124.148.124-.472 0-.601-.315-.819-.548.1-.014.381.055.238-.028-.283-.135-.827-.145-.838-.47-.008-.255.11-.2.11-.2.197.346.809.38 1.254.375.83-.01 1.393-.466 1.937-.723a9.87 9.87 0 0 0 .382-.246v.004c.171-.112.345-.22.492-.355.256-.236.429-.543.655-.804a.697.697 0 0 1 .146-.153c.064-.06.132-.115.208-.164l.003.006.03-.02-.006-.01c.548-.311 1.058-.655 1.489-1.072l.003-.005c.062-.056.386-.418.542-.593.185-.246.318-.557.395-.87.028-.114.01-.251.054-.374.069-.19.242-.36.355-.548.117-.195.195-.408.273-.622.341-.938.736-1.685 1.473-2.191.355-.244.787-.402 1.037-.772a1.665 1.665 0 0 1-.703.408c-.811.267-1.338.95-1.603 1.385a5.167 5.167 0 0 0-.477 1.22 4.06 4.06 0 0 0-.355-1.395c-.16-.37-.303-.761-.6-.996 0 0-.011.001-.058-.027-.046-.027.767-.048.767-.048.143.006.287.026.434.045a.373.373 0 0 1 .103.006c.447.079.91-.088 1.2-.298.15-.11.412-.197.628-.256.004-.01.025-.02.08-.03 0 0 .33-.104.682-.2a3.27 3.27 0 0 0 .533-.175.779.779 0 0 0 .187-.162c.104-.127.106-.28.192-.498.085-.217.216-.386.218-.573.006-.611-.573-1.098-1.2-.772.617-.16 1.056.142.982.723-.092.716-1.172 1.248-1.829 1.518-.26.107-.565.243-.873.274-.443.045-.846-.05-1.227-.025-.49.032-.815.291-1.228.324-.355.028-.307-.212-.615-.239-.063-.036-.257 0-.45-.01-.532.14-.874-.103-1.309-.299-.314-.141-.648-.27-.982-.299-.838-.07-1.348.046-2.033-.027-.193-.02-.594-.045-.784-.116-.593-.222-1.047-.141-1.69-.15-.469-.007-.903-.032-1.196.02-.08.014-.16.034-.245.05-.628.109-1.583.166-1.555.721.046-.032.033-.118.109-.124-.003.102-.006.204.027.274-.365-.01-.58-.262-.573-.548.012-.487.796-.69 1.337-.822.542-.13 1.105-.284 1.5-.348-.947.139-1.95.228-2.673.572a.778.778 0 0 1-.021-.108c-.058-.263-.183-.666-.27-1.058-.102-.451.055-1.242.055-1.242l.004.004c.065-.402.148-.58.228-.821.172-.513.726-.674 1.114-.723a1.742 1.742 0 0 0-.668.901c-.017.137-.03.264-.039.377.294-.914 1.113-1.256 1.113-1.256l.262-.283-.003.013c.452-.438 1.05-.777 1.809-.798.383-.01.845.09.844.466 0 .212-.167.392-.393.491a.311.311 0 0 0 .183-.019l.235-.263c.078-.192.07-.435-.06-.581.346-.296.884.036.845.428.101-.085.163-.247.094-.375.465-.273.726.39 1.194.235-.044-.133-.27-.106-.338-.217.612-.087 1.15.128 1.764.08.038.033.08.066.124.1-1.149.126-.215.126-.215.126.147-.014.5-.038.638-.014.225.04.37-.014.569-.092.004.009.024.008.036-.014.103-.041.222-.086.373-.127a.98.98 0 0 0 .174-.042l.024-.005.004-.004c.079-.027.153-.06.216-.09.58-.279 1.06-.934 1.554-1.278.819-.569 1.595.134 2.165.59l-.004.006c.143.098.332.218.537.344.537.233 1.245.437 1.623.811.302.299.405.684.535 1.083.122.373.357.702.49 1.12a.163.163 0 0 0 .05-.092c-.004-.036-.01-.073 0-.097l.008.007a1.047 1.047 0 0 0-.043-.249c-.112-.229-.309-.49-.285-.693 0 0 .697.36 1.488.718.273.123.522.326.74.559l.063-.002a.136.136 0 0 0-.004.065c.384.43.657.944.752 1.24a4.416 4.416 0 0 0 .16.412h.001c.014.025.023.05.032.074.115.247.227.448.258.503.1.124.181.285.268.42a11.375 11.375 0 0 1-2.465 8.17c-.09.011-.214.032-.378.066zm-.718 1.12c-.549.18-1.11.516-1.467.55-1.076.102-1.27-.376-.41-.455.325-.03.805-.067 1.188-.248.564-.269 1.142-.529 1.528-.722-.264.306-.544.598-.839.875zm-11.735.052c-.092.03-.092-.015-.092-.015s-.165-.236-.19-.456c-.026-.218.03-.412.084-.44.055-.03.067.097.112.256.045.16.268.49.268.49.032.067-.09.134-.182.165zm.575.1c-.105.036-.105-.016-.105-.016s-.189-.269-.217-.519c-.03-.247.036-.468.099-.5.063-.035.076.11.127.29.051.183.307.558.307.558.036.077-.105.153-.211.188zm.194-.697c-.036-.313.048-.593.129-.636.08-.043.098.14.162.37.065.231.39.706.39.706.046.098-.134.194-.27.238-.135.044-.134-.02-.134-.02s-.24-.34-.277-.658zm4.669-3.587c.056-.05.116.056.226.176.11.122.5.313.5.313.063.046-.062.162-.164.232-.1.07-.117.03-.117.03s-.287-.136-.396-.321c-.108-.183-.106-.379-.05-.43zm-.924.492c.069-.065.143.073.281.229.14.16.631.414.631.414.08.06-.076.21-.203.3-.127.091-.148.038-.148.038s-.359-.182-.495-.423c-.136-.237-.136-.493-.066-.558zm-.825 1.11c-.122-.256-.111-.52-.04-.584.07-.064.138.083.266.255.131.175.602.467.602.467.075.067-.084.215-.212.301-.128.087-.147.03-.147.03s-.344-.21-.469-.47zm-.754.63c-.102-.269-.075-.54-.003-.6.073-.06.128.097.24.28.115.189.55.522.55.522.069.075-.094.214-.224.292-.129.078-.142.018-.142.018s-.318-.24-.421-.512zm-1.017 1.654c-.136.041-.134-.021-.134-.021s-.23-.331-.257-.637c-.026-.304.066-.574.148-.614.082-.041.094.136.15.358.059.225.37.686.37.686.043.094-.14.186-.277.228zm.275-1.059c-.066-.304-.002-.59.08-.642.082-.054.116.124.205.34.089.218.48.646.48.646.058.09-.125.21-.267.273-.14.062-.145-.004-.145-.004s-.286-.305-.353-.613zm3.688-7.155s.08.013.043.126c-.035.112-.042.46.066.61.11.15-.075.093-.219-.059-.144-.15-.246-.43-.215-.619 0 0-.008-.08.325-.058zm-.51.921c.176.195-.092.143-.316-.049-.223-.191-.406-.565-.39-.834 0 0-.022-.11.447-.13 0 0 .114.007.079.17-.033.163.006.65.18.843zm-1.19 1.016c1.017.067 1.747-.286 2.264-.647.136-.095.316-.326.546-.174-.098.203-.358.337-.573.448-.377.195-.712.365-1.146.473.732-.112 1.253-.417 1.8-.697.068.14.143.423.192.662h.008s.05.133.034.264c.003.063-.01.116-.055.146a.23.23 0 0 1-.055.052c-.2.13-.794.42-1.27.455-.016 0-.03.003-.046.004l-.035.01-.001-.006c-.432.05-.711.228-.16.137.553-.091 1.736-.292 1.305-.13h.002c-.538.21-1.245.415-1.938.348-.448-.043-.91-.263-1.31-.473-.397-.21-.775-.485-1.2-.573-.323-.067-.59.027-.873.075-.188.032-.45.108-.563-.01-.048-.056-.01-.115-.01-.115.108-.266.421-.423.682-.498.819-.235 1.611.198 2.401.25zm.23-.891c.171.248-.126.148-.353-.105-.227-.253-.38-.71-.323-1.017 0 0-.01-.13.529-.08 0 0 .129.025.066.206-.064.182-.09.747.08.996zm-1.084-.119c.169.283-.146.159-.376-.132-.23-.29-.367-.802-.284-1.136 0 0-.002-.144.58-.064 0 0 .137.035.057.232-.08.196-.145.818.023 1.1zm-1.12-.156c.172.286-.147.164-.38-.13-.234-.292-.376-.812-.293-1.155 0 0-.003-.145.585-.072 0 0 .14.034.059.236-.08.2-.143.836.029 1.121zm-1.027.323c.212.37-.159.213-.441-.166-.283-.379-.472-1.053-.397-1.5 0 0-.011-.19.662-.099 0 0 .161.042.081.306-.08.263-.116 1.089.095 1.46zm-1.09-.275c.211.323-.16.2-.441-.128-.282-.328-.467-.927-.389-1.332 0 0-.01-.171.665-.12 0 0 .162.032.08.272-.082.24-.125.985.085 1.308zm-1.154-.376c.149.277-.14.154-.345-.133-.205-.285-.318-.787-.232-1.115 0 0 .002-.14.54-.058 0 0 .127.035.046.226-.08.193-.158.802-.009 1.08zm-.88-.24c.14.221-.114.125-.303-.102-.189-.227-.308-.628-.248-.892 0 0-.005-.113.46-.053 0 0 .11.026.05.182-.06.154-.1.644.04.865zm-.925.16c.17.248-.126.149-.353-.105-.227-.254-.38-.71-.322-1.017 0 0-.01-.13.528-.08 0 0 .129.025.066.206-.064.182-.09.747.081.996zm-.746-.066c.175.195-.093.143-.316-.049-.224-.191-.407-.565-.39-.834 0 0-.023-.111.446-.13 0 0 .115.007.08.17-.034.163.005.65.18.843zm10.24 10.242c-.516.179-1.435.627-2.173 1.003-.177.008-.354.012-.533.012C5.69 23.423.577 18.31.577 12c0-4.888 3.07-9.057 7.387-10.688.022.02.045.04.07.058.048.039.129.059.17.109.057.067.033.203.058.287.075.259.235.497.501.691.04.029.114.043.148.08.074.085.052.227.108.324.06.102.16.226.284.321.067.052.169.08.232.143.052.05.066.14.103.216.1.204.362.44.488.653a.47.47 0 0 1 .041.088c.053.108.18.338.353.444 0 0 .018.319.336.682-.644-.035-1.265-.399-1.743-.037-.138-.15-.58-.269-.77-.058-.139-.242-.88-.398-1.025-.014-1.053-.472-2.325.202-2.734.878a2.86 2.86 0 0 0-.214.114 1.196 1.196 0 0 0-1.102.187c-.417.301-.853 1.65-.778 2.584.008.1.198.336.266.81.068.469.12.623.12.623-.093.162-.204.234-.219.423-.033.41.318.632.646.842.117.054.249.093.392.099.087.137.42.6.973.6l.04-.001c.211.177.431.225.28.006a.442.442 0 0 1-.034-.059.88.88 0 0 0 .334.13c.002 0 .054.013.097.013.015 0 .06 0 .076-.035s-.016-.072-.027-.084c-.044-.051-.094-.184-.131-.307.04.074.084.144.134.205.262.322.63.475.425.154a.957.957 0 0 1-.122-.392.95.95 0 0 0 .562.33c.235.223.528.315.352.077a.574.574 0 0 1-.091-.225c.142.17.382.389.676.389h.027c.202.136.371.158.22-.038a.692.692 0 0 1-.117-.33c.134.272.39.646.834.767.003 0 .08.022.143.022.049 0 .08-.013.094-.04.022-.038-.006-.083-.016-.098a1.094 1.094 0 0 1-.078-.16c.2.117.346.127.191-.063a.746.746 0 0 1-.14-.379c.108.29.329.695.764.96.003.002.081.04.168.04a.25.25 0 0 0 .112-.026.101.101 0 0 0 .053-.067c.022-.09-.063-.22-.071-.23a1.88 1.88 0 0 1-.134-.35l.003.003c.315.254.723.371.471.118-.153-.154-.212-.417-.217-.632.092.257.315.704.778.792.003 0 .075.014.128.014.029 0 .064-.003.077-.031.005-.012.007-.032-.014-.055a.817.817 0 0 1-.11-.251c.022.016.044.034.067.049.224.147.489.224.523.176.072.06.184.136.337.204.014.032.028.065.04.098 0 0 .07.198.098.305-.363-.094-.984-.276-1.446-.174-.365.08-1.317.606-1.086.976a.17.17 0 0 0 .057.056l.014.005a.962.962 0 0 0 .42.075l.061-.001a2.74 2.74 0 0 0 .442-.07c.254-.084.482-.034.482-.034l-.004.003c.181.02.372.084.569.185.212.107.5.285.573.373.132.16-.07.532-.146.761l-.013.042-.005.019a1.63 1.63 0 0 1-.039.1.42.42 0 0 1-.033-.047c-.072-.121-.11-.228-.148-.179-.038.05-.04.244.032.427a.496.496 0 0 0 .026.055c-.082.15-.182.307-.287.458a1.218 1.218 0 0 1-.204-.234c-.093-.16-.142-.3-.19-.235-.048.064-.05.322.042.565a.86.86 0 0 0 .123.213 5.25 5.25 0 0 1-.307.352 1.736 1.736 0 0 1-.276-.345c-.089-.178-.135-.33-.185-.265-.05.065-.06.338.024.603.034.108.094.207.152.287a16.61 16.61 0 0 1-.345.32 1.455 1.455 0 0 1-.178-.284c-.079-.192-.116-.355-.17-.293-.052.063-.075.347-.005.63.018.07.045.137.075.199-.12.107-.235.209-.34.3a1.261 1.261 0 0 1-.072-.183c-.062-.23-.085-.419-.146-.36-.061.056-.114.361-.069.685.004.032.01.062.017.093l-.03.026c-.069.06-.144.132-.222.21a1.239 1.239 0 0 1-.042-.164c-.04-.24-.045-.43-.108-.385-.062.045-.137.34-.122.67.002.051.008.103.017.155-.091.103-.182.209-.267.313A2.156 2.156 0 0 1 8 19.008c-.045-.25-.055-.45-.119-.401-.058.044-.122.312-.115.623-.064.047-.147.264-.15.51a.935.935 0 0 0 .035.246c-.042.058-.114.099-.164.17-.261.365-.155.8.409.896.173.532.61.79 1.282.797.09 0 .185-.03.273-.025.1.007.182.047.273.05.49.015.746-.14 1.118-.25.278-.08.564-.106.737-.173.265-.104.39-.389.6-.523.079-.05.226-.074.355-.15.11-.064.204-.18.3-.224.085-.038.225-.03.328-.074.17-.075.36-.235.573-.35a16.92 16.92 0 0 1 1.282-.622c.227-.1.467-.333.6-.348.158-.018.341.113.464.1.25.297.338.713.327 1.248.015.001.004.132.004.132s.087 1.148-1.705 1.768zM7.583.205c.188.052.397.159.197.477-.122-.131-.164-.304-.197-.477zm.358.42c.06-.105 0-.159.032-.222.539.07.585.448.352.984-.359-.121-.455-.361-.523-.605C7.86.72 7.904.69 7.94.625zm.588.106c.502.221.58.776.234 1.499a.94.94 0 0 1-.278-.274c-.053-.082-.127-.216-.11-.326.01-.075.07-.177.1-.261.089-.244.123-.463.054-.638zm2.403 2.105c-.009-.026.01-.025.031-.045.75.152.81.884.487 1.435-.152.261-.302.399-.536.326-.194-.06-.22-.217-.314-.324.382-.556.375-.966.332-1.392zm-.866-.55c-.004-.068-.016-.144.011-.21a.74.74 0 0 1 .27.07c.422.223.596 1.018.351 1.486-.105.2-.211.298-.408.241-.317-.09-.409-.45-.537-.599.346-.368.326-.692.313-.988zM9.05 1.287l.02-.01c.825.29 1.299.84.549 1.85-.286-.144-.447-.335-.521-.552-.044-.127-.078-.143-.048-.3.064-.341.085-.717 0-.988zm3.201 4.238l-.052.024c-.1.051-.206.082-.306.1-.62-.134-.807-.84-.807-.84.58-.256.907-.99.7-1.393.006-.015.02-.012.033-.01.263.117.54.311.673.522.256.399.331 1 .119 1.482-.095.022-.156.044-.232.07a.543.543 0 0 0-.04.012l-.07.026-.007.003-.011.004zm1-.501l-.122.104c-.036.068-.145.158-.284.217.11-.335.124-.691.132-.955.228.119.38.282.468.467l-.087.075a.62.62 0 0 0-.163-.194c.032.093.05.188.057.286zM12 .577c5.596 0 10.251 4.023 11.232 9.335a1.862 1.862 0 0 0-.358-.198c-.28-1.248-.882-2.037-2.118-2.487-.414-.151-.807-.326-1.216-.504.024-1.328-1.52-1.3-2.482-1.984-.418-.298-.893-.848-1.371-.95-.926-.197-1.495.448-2.042.899-.134-.146-.335-.29-.627-.42 0 0-.522-.744-.765-.884a.123.123 0 0 1-.034-.026c-.134-.063-.303-.098-.422-.177-.117-.077-.14-.26-.257-.348a1.08 1.08 0 0 0-.225-.122c-.095-.038-.256-.03-.351-.083-.117-.064-.127-.272-.211-.376a.842.842 0 0 0-.408-.273c-.08-.026-.198-.028-.27-.066-.079-.043-.098-.177-.16-.26-.143-.192-.384-.341-.66-.439-.06-.02-.139-.02-.182-.05-.051-.034-.057-.119-.088-.184C9.945.718 10.956.577 12 .577zm11.343 10.068c-.116-.199-.223-.39-.263-.559.08.052.148.11.212.172.02.128.036.257.051.387zM12 0a12 12 0 0 0-3.55.535.27.27 0 0 0-.044-.062c-.103-.1-.226-.177-.482-.112A.647.647 0 0 0 7.52.11l-.006.01c.025.233.058.468.235.629l-.003.028C3.22 2.494 0 6.87 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12S18.627 0 12 0zM5.9 6.312s-.471.107-.6.942c0 0-.022.42.11.328-.111-.506.37-.735.48-.787.155-.069.283-.046.293.086.01.142-.152.205-.2.352.172-.098.558-.326.518-.623-.03-.218-.235-.412-.6-.298zm6.206.512c-.81-.475-2.907-.393-3.4-.43-.484-.038-.726.579-.726.579-.007.13.1-.02.1-.02.317-.57.595-.466.595-.466 1.003.293 1.182 1.767 1.224 2.108.041.34.127.119.127.119.097-.848-.52-1.882-.65-2.015-.13-.131-.007-.206.408-.09 1.247.35 1.364 2.349 1.44 2.59.075.242.122.01.122.01-.17-1.837-.868-2.29-1.054-2.543-.077-.105.554-.12.831.06 1.568 1.013 1.392 2.953 1.534 2.676.143-.283-.395-2.038-1.15-2.636-.152-.119.524.09.773.319 1.18 1.09 1.324 2.271 1.415 2.612.09.34.133.225.133.225.016-1.155-.899-2.617-1.722-3.098zm2.274-.804c.174-.094.379-.707.8-.452.314.189.463.236.463.236s-.219.062-.319.226-.218.29-.566.239c-.366-.055-.433.003-.617.033 0 0 .065-.187.239-.282zm-.673.49c.269.059.516.163.764.324.275.179.573.507.983.474.13-.01.368-.137.463-.2.12-.078.404-.263.328-.547-.034-.126-.184-.147-.273-.25-.124-.143-.12-.283-.218-.448.216.044.34.172.572.2a3.983 3.983 0 0 0-1.31-.797c.04-.022.065-.113.192-.15.115-.033.484.024.246-.025-.24-.067-.389.002-.546.1-.362.226-.656.745-1.037.971-.165.099-.327.076-.464.25.089.177.18.072.3.099zm2.838-.323c-.09.052.057.1.082.125.104.102.336.29.409.448.15.323.103.817-.164.996-.18.12-1.06.449-1.446.448-1.083-.001-1.193-1.191-1.855-1.594.012.114.095.353.19.476.372.486.727 1.487 1.773 1.32.37-.059 1.061-.314 1.339-.488.301-.188.525-.909.218-1.308-.138-.178-.467-.405-.546-.423z" }) + ] + } + ); +}); + +export { SiLibuv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.cjs new file mode 100644 index 000000000..21169ec74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLichess = React__namespace.forwardRef(function SiLichess2({ title = "Lichess", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.457 6.161a.237.237 0 0 0-.296.165c-.8 2.785 2.819 5.579 5.214 7.428.653.504 1.216.939 1.591 1.292 1.745 1.642 2.564 2.851 2.733 3.178a.24.24 0 0 0 .275.122c.047-.013 4.726-1.3 3.934-4.574a.257.257 0 0 0-.023-.06L18.204 3.407 18.93.295a.24.24 0 0 0-.262-.293c-1.7.201-3.115.435-4.5 1.425-4.844-.323-8.718.9-11.213 3.539C.334 7.737-.246 11.515.085 14.128c.763 5.655 5.191 8.631 9.081 9.532.993.229 1.974.34 2.923.34 3.344 0 6.297-1.381 7.946-3.85a.24.24 0 0 0-.372-.3c-3.411 3.527-9.002 4.134-13.296 1.444-4.485-2.81-6.202-8.41-3.91-12.749C4.741 4.221 8.801 2.362 13.888 3.31c.056.01.115 0 .165-.029l.335-.197c.926-.546 1.961-1.157 2.873-1.279l-.694 1.993a.243.243 0 0 0 .02.202l6.082 10.192c-.193 2.028-1.706 2.506-2.226 2.611-.287-.645-.814-1.364-2.306-2.803-.422-.407-1.21-.941-2.124-1.56-2.364-1.601-5.937-4.02-5.391-5.984a.239.239 0 0 0-.165-.295z" }) + ] + } + ); +}); + +exports.default = SiLichess; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.d.ts new file mode 100644 index 000000000..5e508c3d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLichess: IconType; +export { SiLichess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.mjs new file mode 100644 index 000000000..8b7d764c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLichess.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLichess = React.forwardRef(function SiLichess2({ title = "Lichess", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.457 6.161a.237.237 0 0 0-.296.165c-.8 2.785 2.819 5.579 5.214 7.428.653.504 1.216.939 1.591 1.292 1.745 1.642 2.564 2.851 2.733 3.178a.24.24 0 0 0 .275.122c.047-.013 4.726-1.3 3.934-4.574a.257.257 0 0 0-.023-.06L18.204 3.407 18.93.295a.24.24 0 0 0-.262-.293c-1.7.201-3.115.435-4.5 1.425-4.844-.323-8.718.9-11.213 3.539C.334 7.737-.246 11.515.085 14.128c.763 5.655 5.191 8.631 9.081 9.532.993.229 1.974.34 2.923.34 3.344 0 6.297-1.381 7.946-3.85a.24.24 0 0 0-.372-.3c-3.411 3.527-9.002 4.134-13.296 1.444-4.485-2.81-6.202-8.41-3.91-12.749C4.741 4.221 8.801 2.362 13.888 3.31c.056.01.115 0 .165-.029l.335-.197c.926-.546 1.961-1.157 2.873-1.279l-.694 1.993a.243.243 0 0 0 .02.202l6.082 10.192c-.193 2.028-1.706 2.506-2.226 2.611-.287-.645-.814-1.364-2.306-2.803-.422-.407-1.21-.941-2.124-1.56-2.364-1.601-5.937-4.02-5.391-5.984a.239.239 0 0 0-.165-.295z" }) + ] + } + ); +}); + +export { SiLichess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.cjs new file mode 100644 index 000000000..eb1544680 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0050AA"; +const SiLidl = React__namespace.forwardRef(function SiLidl2({ title = "Lidl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm.209.209h23.582v23.582H.209zm11.789.625C5.83.834.83 5.834.83 12.002c0 6.168 5 11.168 11.168 11.168 6.167 0 11.167-5 11.168-11.166C23.165 5.837 18.166.837 12 .834zm.002.709c5.777 0 10.46 4.682 10.46 10.459v.004c-.004 5.773-4.686 10.452-10.46 10.453-5.777 0-10.46-4.68-10.46-10.457C1.54 6.225 6.222 1.543 12 1.543zM9.229 7.85c-.645 0-1.166.521-1.166 1.166v.004c0 1.044 1.261 1.567 1.999.829.738-.738.215-2-.829-1.999zM2.73 10.059v.71h.551v2.465h-.55v.713h4.644v-.65l.537-.54 1.486 1.491-.55.547.357.36 2.973-2.977v-.713l-.826.83-1.848-1.848-2.129 2.133v-.576l-1.904 1.06V10.77h.549v-.711zm8.905 0v.71h.549v2.465h-.555v.713h3.129c2.325 0 2.355-3.888.008-3.888zm4.963 0v.71h.55v2.465h-.55v.713h4.648v-1.943l-1.906 1.06V10.77h.55v-.711zm-2.43 1.21h.133c.687 0 .685 1.461.023 1.461h-.156v-1.46z" }) + ] + } + ); +}); + +exports.default = SiLidl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.d.ts new file mode 100644 index 000000000..240226170 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0050AA"; +declare const SiLidl: IconType; +export { SiLidl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.mjs new file mode 100644 index 000000000..b588e3fa6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLidl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0050AA"; +const SiLidl = React.forwardRef(function SiLidl2({ title = "Lidl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm.209.209h23.582v23.582H.209zm11.789.625C5.83.834.83 5.834.83 12.002c0 6.168 5 11.168 11.168 11.168 6.167 0 11.167-5 11.168-11.166C23.165 5.837 18.166.837 12 .834zm.002.709c5.777 0 10.46 4.682 10.46 10.459v.004c-.004 5.773-4.686 10.452-10.46 10.453-5.777 0-10.46-4.68-10.46-10.457C1.54 6.225 6.222 1.543 12 1.543zM9.229 7.85c-.645 0-1.166.521-1.166 1.166v.004c0 1.044 1.261 1.567 1.999.829.738-.738.215-2-.829-1.999zM2.73 10.059v.71h.551v2.465h-.55v.713h4.644v-.65l.537-.54 1.486 1.491-.55.547.357.36 2.973-2.977v-.713l-.826.83-1.848-1.848-2.129 2.133v-.576l-1.904 1.06V10.77h.549v-.711zm8.905 0v.71h.549v2.465h-.555v.713h3.129c2.325 0 2.355-3.888.008-3.888zm4.963 0v.71h.55v2.465h-.55v.713h4.648v-1.943l-1.906 1.06V10.77h.55v-.711zm-2.43 1.21h.133c.687 0 .685 1.461.023 1.461h-.156v-1.46z" }) + ] + } + ); +}); + +export { SiLidl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.cjs new file mode 100644 index 000000000..5ed7b6992 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLifx = React__namespace.forwardRef(function SiLifx2({ title = "LIFX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.128 8.2a3.11 3.11 0 0 0-2.212.92A3.148 3.148 0 0 0 0 11.347a3.144 3.144 0 0 0 .916 2.226l.27.266.014-.014a2.729 2.729 0 0 1 1.932-.795 2.739 2.739 0 0 1 1.931.795l.015.014.266-.27a3.157 3.157 0 0 0 .916-2.226c0-.806-.305-1.612-.916-2.226A3.139 3.139 0 0 0 3.128 8.2zm0 .725a2.39 2.39 0 0 1 1.701.707 2.431 2.431 0 0 1 .156 3.252 3.42 3.42 0 0 0-3.72 0 2.45 2.45 0 0 1-.544-1.537c0-.618.234-1.24.706-1.715a2.38 2.38 0 0 1 1.701-.707zm5.316.082v6.025h3.167v-1.487H9.928l.004-4.538zm4.247 0v6.022h1.487V9.007zm2.585 0v6.025h1.487V13.15h1.918v-1.41h-1.918v-1.228h3.047l.863 1.545-1.662 2.975h1.662l.813-1.53.696 1.53h1.779l-1.665-2.975L24 9.007h-1.779l-.735 1.686-.735-1.686zM3.128 13.75c-.518 0-1.04.202-1.438.6l.444.443a1.41 1.41 0 0 1 1.996 0l.443-.443c-.4-.398-.92-.6-1.445-.6zm0 1.324a.707.707 0 0 0-.507.213l.507.511.508-.511a.701.701 0 0 0-.508-.213Z" }) + ] + } + ); +}); + +exports.default = SiLifx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.d.ts new file mode 100644 index 000000000..66ca79787 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLifx: IconType; +export { SiLifx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.mjs new file mode 100644 index 000000000..b9a1c41ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLifx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLifx = React.forwardRef(function SiLifx2({ title = "LIFX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.128 8.2a3.11 3.11 0 0 0-2.212.92A3.148 3.148 0 0 0 0 11.347a3.144 3.144 0 0 0 .916 2.226l.27.266.014-.014a2.729 2.729 0 0 1 1.932-.795 2.739 2.739 0 0 1 1.931.795l.015.014.266-.27a3.157 3.157 0 0 0 .916-2.226c0-.806-.305-1.612-.916-2.226A3.139 3.139 0 0 0 3.128 8.2zm0 .725a2.39 2.39 0 0 1 1.701.707 2.431 2.431 0 0 1 .156 3.252 3.42 3.42 0 0 0-3.72 0 2.45 2.45 0 0 1-.544-1.537c0-.618.234-1.24.706-1.715a2.38 2.38 0 0 1 1.701-.707zm5.316.082v6.025h3.167v-1.487H9.928l.004-4.538zm4.247 0v6.022h1.487V9.007zm2.585 0v6.025h1.487V13.15h1.918v-1.41h-1.918v-1.228h3.047l.863 1.545-1.662 2.975h1.662l.813-1.53.696 1.53h1.779l-1.665-2.975L24 9.007h-1.779l-.735 1.686-.735-1.686zM3.128 13.75c-.518 0-1.04.202-1.438.6l.444.443a1.41 1.41 0 0 1 1.996 0l.443-.443c-.4-.398-.92-.6-1.445-.6zm0 1.324a.707.707 0 0 0-.507.213l.507.511.508-.511a.701.701 0 0 0-.508-.213Z" }) + ] + } + ); +}); + +export { SiLifx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.cjs new file mode 100644 index 000000000..a57cab35d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#57182D"; +const SiLightburn = React__namespace.forwardRef(function SiLightburn2({ title = "LightBurn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.419 23.947c-.481-.13-.956-.505-1.18-.933-.248-.475-.228.159-.228-7.504V8.606l.214-.312A9.388 9.388 0 0 1 2.968 5.7c1.18-.723 2.468-1.173 3.925-1.372.546-.075 1.87-.103 2.382-.051 2.234.227 4.417 1.19 5.777 2.549l.338.338-.289.295c-.159.162-.323.334-.364.38l-.076.086.524.022c1.01.042 2.43.423 3.41.916.154.078.287.14.296.14.01 0-.074-.172-.185-.384-.615-1.175-1.069-2.77-1.019-3.583l.018-.295-.347.363-.347.364-.24-.221c-1.801-1.663-3.841-2.598-6.406-2.935-1.354-.178-3.068-.145-4.362.085a11.764 11.764 0 0 0-3.339 1.095c-.892.437-1.708.97-2.405 1.57l-.248.213v-1.86C.014 1.583.015 1.555.09 1.333.311.682.83.207 1.485.052 1.68.006 2.908 0 11.978 0c8.925 0 10.303.007 10.511.05.677.143 1.22.653 1.448 1.361.055.168.058.876.049 10.572-.009 8.875-.018 10.42-.06 10.587-.148.597-.595 1.086-1.208 1.325l-.229.089-2.217.01c-1.22.005-2.217 0-2.217-.01 0-.012.022-.063.048-.113.194-.38.386-1.304.421-2.032.02-.408.025-.435.083-.404.168.09.469.884.48 1.265.01.373.094.473.199.234a6.57 6.57 0 0 0 .256-.92c.143-.837.166-2.06.052-2.827-.175-1.179-.472-2.208-.923-3.199-.352-.771-.841-1.574-1.294-2.122l-.21-.253c-.051-.062-.048-.064.083-.041.431.074.922.339 1.211.652.079.086.152.155.162.155.04 0-.42-.634-.652-.9-.719-.822-1.597-1.403-2.73-1.808-.542-.194-1.292-.373-1.56-.373-.089 0-.114-.016-.131-.086-.082-.324.252-.841.79-1.223.219-.156.23-.169.12-.146a4.962 4.962 0 0 0-.84.291c-.309.147-.795.582-1.13 1.007l-.103.132-.323-.007a2.099 2.099 0 0 1-.34-.022c-.066-.066.422-.755.796-1.122.3-.294.781-.69.941-.774.044-.023.073-.049.064-.058-.02-.02-.749.27-1.154.458-.537.25-1.139.7-1.713 1.281-.431.437-.463.449-.912.337-.429-.106-1.039-.13-1.415-.053-.9.182-1.457.794-1.434 1.577l.006.205-.447.76c-.49.835-.737 1.178-1.092 1.522-.349.338-.51.444-.616.404-.126-.048-.36-.039-.527.02a.766.766 0 0 0-.45.375c-.118.24-.418.34-.526.174-.085-.128-.327-.233-.476-.205-.174.032-.438.282-.563.531-.213.426-.268 1.07-.126 1.472a.94.94 0 0 0 .621.576c.04.012.168.134.286.271.205.238.292.3.211.149-.057-.107-.045-.296.023-.355.105-.092.198-.126.543-.2.327-.072.338-.072.372-.01.121.22.633.628.79.628.046 0 .044-.015-.017-.1-.122-.171-.206-.39-.206-.54-.001-.204.102-.307.544-.542.333-.176.419-.241.713-.544.579-.597.692-.7.979-.89.574-.38 1.267-.673 1.773-.748.241-.035.277-.032.478.041.18.066.477.227.477.26 0 .004-.22.135-.488.29-.269.155-.588.347-.71.427-.67.434-1.402 1.156-1.937 1.909-.42.59-.703.888-.998 1.045-.237.126-.467.168-1.116.2-.319.016-.468.036-.46.062.028.086.47.298.797.382.508.13 1.012.149 1.434.051.6-.138.94-.362 1.346-.887.536-.693.79-.955 1.151-1.194.917-.607 1.463-.734 2.299-.536.72.17.93.15 1.332-.138.166-.118.308-.276.622-.692.468-.62.751-.937.714-.8-.032.115-.296.64-.587 1.166l-.239.431.13.109c.178.15.335.479.36.759.029.302-.049.59-.265.979-.273.494-.582.878-1.209 1.505a12.559 12.559 0 0 1-3.495 2.503L7.766 24l-3.081-.002c-2.576-.002-3.112-.01-3.266-.052zm6.004-9.468c.126-.427.521-.941.846-1.1a1.55 1.55 0 0 1 1.252-.026l.15.066-.08.142c-.283.505-1.09.92-1.906.98l-.287.02z" }) + ] + } + ); +}); + +exports.default = SiLightburn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.d.ts new file mode 100644 index 000000000..e362ce681 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#57182D"; +declare const SiLightburn: IconType; +export { SiLightburn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.mjs new file mode 100644 index 000000000..731cf1d0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLightburn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#57182D"; +const SiLightburn = React.forwardRef(function SiLightburn2({ title = "LightBurn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.419 23.947c-.481-.13-.956-.505-1.18-.933-.248-.475-.228.159-.228-7.504V8.606l.214-.312A9.388 9.388 0 0 1 2.968 5.7c1.18-.723 2.468-1.173 3.925-1.372.546-.075 1.87-.103 2.382-.051 2.234.227 4.417 1.19 5.777 2.549l.338.338-.289.295c-.159.162-.323.334-.364.38l-.076.086.524.022c1.01.042 2.43.423 3.41.916.154.078.287.14.296.14.01 0-.074-.172-.185-.384-.615-1.175-1.069-2.77-1.019-3.583l.018-.295-.347.363-.347.364-.24-.221c-1.801-1.663-3.841-2.598-6.406-2.935-1.354-.178-3.068-.145-4.362.085a11.764 11.764 0 0 0-3.339 1.095c-.892.437-1.708.97-2.405 1.57l-.248.213v-1.86C.014 1.583.015 1.555.09 1.333.311.682.83.207 1.485.052 1.68.006 2.908 0 11.978 0c8.925 0 10.303.007 10.511.05.677.143 1.22.653 1.448 1.361.055.168.058.876.049 10.572-.009 8.875-.018 10.42-.06 10.587-.148.597-.595 1.086-1.208 1.325l-.229.089-2.217.01c-1.22.005-2.217 0-2.217-.01 0-.012.022-.063.048-.113.194-.38.386-1.304.421-2.032.02-.408.025-.435.083-.404.168.09.469.884.48 1.265.01.373.094.473.199.234a6.57 6.57 0 0 0 .256-.92c.143-.837.166-2.06.052-2.827-.175-1.179-.472-2.208-.923-3.199-.352-.771-.841-1.574-1.294-2.122l-.21-.253c-.051-.062-.048-.064.083-.041.431.074.922.339 1.211.652.079.086.152.155.162.155.04 0-.42-.634-.652-.9-.719-.822-1.597-1.403-2.73-1.808-.542-.194-1.292-.373-1.56-.373-.089 0-.114-.016-.131-.086-.082-.324.252-.841.79-1.223.219-.156.23-.169.12-.146a4.962 4.962 0 0 0-.84.291c-.309.147-.795.582-1.13 1.007l-.103.132-.323-.007a2.099 2.099 0 0 1-.34-.022c-.066-.066.422-.755.796-1.122.3-.294.781-.69.941-.774.044-.023.073-.049.064-.058-.02-.02-.749.27-1.154.458-.537.25-1.139.7-1.713 1.281-.431.437-.463.449-.912.337-.429-.106-1.039-.13-1.415-.053-.9.182-1.457.794-1.434 1.577l.006.205-.447.76c-.49.835-.737 1.178-1.092 1.522-.349.338-.51.444-.616.404-.126-.048-.36-.039-.527.02a.766.766 0 0 0-.45.375c-.118.24-.418.34-.526.174-.085-.128-.327-.233-.476-.205-.174.032-.438.282-.563.531-.213.426-.268 1.07-.126 1.472a.94.94 0 0 0 .621.576c.04.012.168.134.286.271.205.238.292.3.211.149-.057-.107-.045-.296.023-.355.105-.092.198-.126.543-.2.327-.072.338-.072.372-.01.121.22.633.628.79.628.046 0 .044-.015-.017-.1-.122-.171-.206-.39-.206-.54-.001-.204.102-.307.544-.542.333-.176.419-.241.713-.544.579-.597.692-.7.979-.89.574-.38 1.267-.673 1.773-.748.241-.035.277-.032.478.041.18.066.477.227.477.26 0 .004-.22.135-.488.29-.269.155-.588.347-.71.427-.67.434-1.402 1.156-1.937 1.909-.42.59-.703.888-.998 1.045-.237.126-.467.168-1.116.2-.319.016-.468.036-.46.062.028.086.47.298.797.382.508.13 1.012.149 1.434.051.6-.138.94-.362 1.346-.887.536-.693.79-.955 1.151-1.194.917-.607 1.463-.734 2.299-.536.72.17.93.15 1.332-.138.166-.118.308-.276.622-.692.468-.62.751-.937.714-.8-.032.115-.296.64-.587 1.166l-.239.431.13.109c.178.15.335.479.36.759.029.302-.049.59-.265.979-.273.494-.582.878-1.209 1.505a12.559 12.559 0 0 1-3.495 2.503L7.766 24l-3.081-.002c-2.576-.002-3.112-.01-3.266-.052zm6.004-9.468c.126-.427.521-.941.846-1.1a1.55 1.55 0 0 1 1.252-.026l.15.066-.08.142c-.283.505-1.09.92-1.906.98l-.287.02z" }) + ] + } + ); +}); + +export { SiLightburn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.cjs new file mode 100644 index 000000000..51af5e600 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F44B21"; +const SiLighthouse = React__namespace.forwardRef(function SiLighthouse2({ title = "Lighthouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0l5.5 3.5v5H20v3h-2.25l2 12.5H4.25l2-12.5H4v-3h2.5V3.53zm2.94 13.25l-6.22 2.26L8 20.04l7.5-2.75zM12 3.56L9.5 5.17V8.5h5V5.15Z" }) + ] + } + ); +}); + +exports.default = SiLighthouse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.d.ts new file mode 100644 index 000000000..295d9088a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F44B21"; +declare const SiLighthouse: IconType; +export { SiLighthouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.mjs new file mode 100644 index 000000000..5a892e6d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLighthouse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F44B21"; +const SiLighthouse = React.forwardRef(function SiLighthouse2({ title = "Lighthouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0l5.5 3.5v5H20v3h-2.25l2 12.5H4.25l2-12.5H4v-3h2.5V3.53zm2.94 13.25l-6.22 2.26L8 20.04l7.5-2.75zM12 3.56L9.5 5.17V8.5h5V5.15Z" }) + ] + } + ); +}); + +export { SiLighthouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.cjs new file mode 100644 index 000000000..0613a8a4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#792EE5"; +const SiLightning = React__namespace.forwardRef(function SiLightning2({ title = "Lightning", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L1.75 6v12L12 24l10.25-6V6zm-1.775 18l1.08-4.657-2.428-2.397L13.79 6l-1.082 4.665 2.414 2.384z" }) + ] + } + ); +}); + +exports.default = SiLightning; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.d.ts new file mode 100644 index 000000000..b3a408437 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#792EE5"; +declare const SiLightning: IconType; +export { SiLightning as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.mjs new file mode 100644 index 000000000..98e15a798 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLightning.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#792EE5"; +const SiLightning = React.forwardRef(function SiLightning2({ title = "Lightning", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L1.75 6v12L12 24l10.25-6V6zm-1.775 18l1.08-4.657-2.428-2.397L13.79 6l-1.082 4.665 2.414 2.384z" }) + ] + } + ); +}); + +export { SiLightning as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.cjs new file mode 100644 index 000000000..2f06a1549 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14AE5C"; +const SiLimesurvey = React__namespace.forwardRef(function SiLimesurvey2({ title = "LimeSurvey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.9339 2.3012c.7181 0 1.4363.1657 2.1544.3867.6629.221 1.3258.5524 1.9887.8839.6077.3314 1.2153.7181 1.823 1.16l.8286.663c.1657.1104.2762.221.3867.3314.0553.0552.1105.1105.221.1657l.1105.1658.1105.1104H9.5685l.1658-.221.1657-.1656.3314-.3315c.221-.2762.442-.4972.663-.7181.221-.221.4971-.442.718-.6077.1106-.1105.2763-.221.3868-.2762l.1657-.1657.1657-.1658c.4972-.3867 1.0496-.7181 1.602-1.0496.5525-.3314 1.1049-.6076 1.7126-.8838 1.16-.5525 2.3754-.9392 3.5907-1.2154.6076-.1104 1.2706-.221 1.8782-.2762.663-.1105 1.3258-.1105 1.9335-.0552l-.8286.4972c-.1105.0552-.2763.1657-.3867.221-.0553.0552-.1105.0552-.221.1104l-.221.1105c-.4972.3315-1.0496.6077-1.5468.9391-.939.663-1.8782 1.2706-2.8725 1.9335-.9944.6629-1.8783 1.3258-2.8174 1.9887l-.6629.4972c-.221.1657-.442.3314-.6629.5524-.221.221-.442.3867-.6629.5524-.1105.1105-.221.1657-.3314.2762l-.2762.2762-1.2154 1.0496-.7734-1.0496-.0552-.0552-.0552-.1105-.221-.1657-.3315-.3867c-.221-.2762-.4419-.4972-.6629-.7182L6.917 5.0633c-.442-.4972-.8838-.9944-1.381-1.4363-.4972-.4972-1.0496-.9391-1.602-1.3258Zm16.4068 11.9925c0-1.2153-.221-2.4307-.6629-3.5355l-3.4802 1.4915c.9943 2.7621-.1657 5.8557-2.7621 7.2367l1.4915 3.4803c3.3145-1.602 5.4137-4.9718 5.4137-8.673zm-3.867-7.7339-3.3144 2.4307c1.1048.5524 2.044 1.4362 2.5963 2.4858l3.4803-1.4915c-.6077-1.3258-1.5468-2.4859-2.7621-3.425ZM4.7626 14.2937c0-2.044 1.1048-3.9774 2.8173-5.027L5.1492 6.3388c-3.646 2.486-5.1375 7.1815-3.5907 11.3246l3.5354-1.4915c-.221-.6077-.3314-1.2706-.3314-1.8782Zm5.8556 5.9109c-2.2096 0-4.2536-1.2706-5.248-3.2593L1.89 18.4368c2.1544 4.5851 7.513 6.7395 12.2637 4.9166l-1.4915-3.4803c-.663.221-1.3258.3315-2.044.3315z" }) + ] + } + ); +}); + +exports.default = SiLimesurvey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.d.ts new file mode 100644 index 000000000..bad98c11a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14AE5C"; +declare const SiLimesurvey: IconType; +export { SiLimesurvey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.mjs new file mode 100644 index 000000000..7b25f7022 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLimesurvey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14AE5C"; +const SiLimesurvey = React.forwardRef(function SiLimesurvey2({ title = "LimeSurvey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.9339 2.3012c.7181 0 1.4363.1657 2.1544.3867.6629.221 1.3258.5524 1.9887.8839.6077.3314 1.2153.7181 1.823 1.16l.8286.663c.1657.1104.2762.221.3867.3314.0553.0552.1105.1105.221.1657l.1105.1658.1105.1104H9.5685l.1658-.221.1657-.1656.3314-.3315c.221-.2762.442-.4972.663-.7181.221-.221.4971-.442.718-.6077.1106-.1105.2763-.221.3868-.2762l.1657-.1657.1657-.1658c.4972-.3867 1.0496-.7181 1.602-1.0496.5525-.3314 1.1049-.6076 1.7126-.8838 1.16-.5525 2.3754-.9392 3.5907-1.2154.6076-.1104 1.2706-.221 1.8782-.2762.663-.1105 1.3258-.1105 1.9335-.0552l-.8286.4972c-.1105.0552-.2763.1657-.3867.221-.0553.0552-.1105.0552-.221.1104l-.221.1105c-.4972.3315-1.0496.6077-1.5468.9391-.939.663-1.8782 1.2706-2.8725 1.9335-.9944.6629-1.8783 1.3258-2.8174 1.9887l-.6629.4972c-.221.1657-.442.3314-.6629.5524-.221.221-.442.3867-.6629.5524-.1105.1105-.221.1657-.3314.2762l-.2762.2762-1.2154 1.0496-.7734-1.0496-.0552-.0552-.0552-.1105-.221-.1657-.3315-.3867c-.221-.2762-.4419-.4972-.6629-.7182L6.917 5.0633c-.442-.4972-.8838-.9944-1.381-1.4363-.4972-.4972-1.0496-.9391-1.602-1.3258Zm16.4068 11.9925c0-1.2153-.221-2.4307-.6629-3.5355l-3.4802 1.4915c.9943 2.7621-.1657 5.8557-2.7621 7.2367l1.4915 3.4803c3.3145-1.602 5.4137-4.9718 5.4137-8.673zm-3.867-7.7339-3.3144 2.4307c1.1048.5524 2.044 1.4362 2.5963 2.4858l3.4803-1.4915c-.6077-1.3258-1.5468-2.4859-2.7621-3.425ZM4.7626 14.2937c0-2.044 1.1048-3.9774 2.8173-5.027L5.1492 6.3388c-3.646 2.486-5.1375 7.1815-3.5907 11.3246l3.5354-1.4915c-.221-.6077-.3314-1.2706-.3314-1.8782Zm5.8556 5.9109c-2.2096 0-4.2536-1.2706-5.248-3.2593L1.89 18.4368c2.1544 4.5851 7.513 6.7395 12.2637 4.9166l-1.4915-3.4803c-.663.221-1.3258.3315-2.044.3315z" }) + ] + } + ); +}); + +export { SiLimesurvey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLine.cjs new file mode 100644 index 000000000..fcb222eb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00C300"; +const SiLine = React__namespace.forwardRef(function SiLine2({ title = "LINE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314" }) + ] + } + ); +}); + +exports.default = SiLine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLine.d.ts new file mode 100644 index 000000000..f4f0b5ffc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00C300"; +declare const SiLine: IconType; +export { SiLine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLine.mjs new file mode 100644 index 000000000..10e7e4555 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00C300"; +const SiLine = React.forwardRef(function SiLine2({ title = "LINE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314" }) + ] + } + ); +}); + +export { SiLine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.cjs new file mode 100644 index 000000000..c807886f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#167C80"; +const SiLineageos = React__namespace.forwardRef(function SiLineageos2({ title = "LineageOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.64526 12.05735a2.40391 2.40391 0 0 0-1.80293.7993l-.13823-.0541a17.80096 17.80096 0 0 0-2.86666-.8594 4.80782 4.80782 0 0 0-9.61565 0h-.13221a17.74687 17.74687 0 0 0-2.7645.83537l-.13822.05409a2.40391 2.40391 0 1 0 .5589 1.06974 16.599 16.599 0 0 1 2.5782-.77526 4.80782 4.80782 0 0 0 9.35722 0 16.55693 16.55693 0 0 1 2.5782.76925 2.40391 2.40391 0 1 0 2.38588-1.839zM2.41397 15.6632a1.20196 1.20196 0 1 1 1.20196-1.20195 1.20196 1.20196 0 0 1-1.20196 1.20195zm9.61565 0a3.60587 3.60587 0 1 1 3.60586-3.60586 3.60587 3.60587 0 0 1-3.60586 3.60586zm9.61564 0a1.20196 1.20196 0 1 1 1.20196-1.20195 1.20196 1.20196 0 0 1-1.20196 1.20195zm-7.81271-3.60586a1.80293 1.80293 0 1 1-1.80293-1.80294 1.80293 1.80293 0 0 1 1.80293 1.80294z" }) + ] + } + ); +}); + +exports.default = SiLineageos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.d.ts new file mode 100644 index 000000000..938b81b26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#167C80"; +declare const SiLineageos: IconType; +export { SiLineageos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.mjs new file mode 100644 index 000000000..fec03bf8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLineageos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#167C80"; +const SiLineageos = React.forwardRef(function SiLineageos2({ title = "LineageOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.64526 12.05735a2.40391 2.40391 0 0 0-1.80293.7993l-.13823-.0541a17.80096 17.80096 0 0 0-2.86666-.8594 4.80782 4.80782 0 0 0-9.61565 0h-.13221a17.74687 17.74687 0 0 0-2.7645.83537l-.13822.05409a2.40391 2.40391 0 1 0 .5589 1.06974 16.599 16.599 0 0 1 2.5782-.77526 4.80782 4.80782 0 0 0 9.35722 0 16.55693 16.55693 0 0 1 2.5782.76925 2.40391 2.40391 0 1 0 2.38588-1.839zM2.41397 15.6632a1.20196 1.20196 0 1 1 1.20196-1.20195 1.20196 1.20196 0 0 1-1.20196 1.20195zm9.61565 0a3.60587 3.60587 0 1 1 3.60586-3.60586 3.60587 3.60587 0 0 1-3.60586 3.60586zm9.61564 0a1.20196 1.20196 0 1 1 1.20196-1.20195 1.20196 1.20196 0 0 1-1.20196 1.20195zm-7.81271-3.60586a1.80293 1.80293 0 1 1-1.80293-1.80294 1.80293 1.80293 0 0 1 1.80293 1.80294z" }) + ] + } + ); +}); + +export { SiLineageos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.cjs new file mode 100644 index 000000000..ed3a92e02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5E6AD2"; +const SiLinear = React__namespace.forwardRef(function SiLinear2({ title = "Linear", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.886 4.18A11.982 11.982 0 0 1 11.99 0C18.624 0 24 5.376 24 12.009c0 3.64-1.62 6.903-4.18 9.105L2.887 4.18ZM1.817 5.626l16.556 16.556c-.524.33-1.075.62-1.65.866L.951 7.277c.247-.575.537-1.126.866-1.65ZM.322 9.163l14.515 14.515c-.71.172-1.443.282-2.195.322L0 11.358a12 12 0 0 1 .322-2.195Zm-.17 4.862 9.823 9.824a12.02 12.02 0 0 1-9.824-9.824Z" }) + ] + } + ); +}); + +exports.default = SiLinear; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.d.ts new file mode 100644 index 000000000..6f5b6c500 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5E6AD2"; +declare const SiLinear: IconType; +export { SiLinear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.mjs new file mode 100644 index 000000000..0e73b2940 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinear.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5E6AD2"; +const SiLinear = React.forwardRef(function SiLinear2({ title = "Linear", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.886 4.18A11.982 11.982 0 0 1 11.99 0C18.624 0 24 5.376 24 12.009c0 3.64-1.62 6.903-4.18 9.105L2.887 4.18ZM1.817 5.626l16.556 16.556c-.524.33-1.075.62-1.65.866L.951 7.277c.247-.575.537-1.126.866-1.65ZM.322 9.163l14.515 14.515c-.71.172-1.443.282-2.195.322L0 11.358a12 12 0 0 1 .322-2.195Zm-.17 4.862 9.823 9.824a12.02 12.02 0 0 1-9.824-9.824Z" }) + ] + } + ); +}); + +export { SiLinear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLining.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLining.cjs new file mode 100644 index 000000000..077458dcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLining.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C5242C"; +const SiLining = React__namespace.forwardRef(function SiLining2({ title = "Li-Ning", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.926 8.815c-.261-.004-.696.011-1.422.084-1.937.194-2.398.828-2.398.828L0 15.177h1.017c4.279-4.664 8.291-6.278 8.291-6.278s.052-.075-.382-.084Zm2.332 1.571c-1.71-.008-3.181.092-3.803.366-1.422.625-3.838 2.271-6.035 4.425 0 0 .864.115 1.902-.48 0 0 3.416-2.586 6.165-2.07 2.75.516 5.169 1.829 5.169 1.829s1.751 1 3.39.438c1.64-.563 5.954-2.898 5.954-2.898s-3.266-.776-6.265-1.182c-1.687-.229-4.279-.418-6.477-.428Z" }) + ] + } + ); +}); + +exports.default = SiLining; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLining.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLining.d.ts new file mode 100644 index 000000000..573acffe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLining.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C5242C"; +declare const SiLining: IconType; +export { SiLining as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLining.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLining.mjs new file mode 100644 index 000000000..9ada1a373 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLining.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C5242C"; +const SiLining = React.forwardRef(function SiLining2({ title = "Li-Ning", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.926 8.815c-.261-.004-.696.011-1.422.084-1.937.194-2.398.828-2.398.828L0 15.177h1.017c4.279-4.664 8.291-6.278 8.291-6.278s.052-.075-.382-.084Zm2.332 1.571c-1.71-.008-3.181.092-3.803.366-1.422.625-3.838 2.271-6.035 4.425 0 0 .864.115 1.902-.48 0 0 3.416-2.586 6.165-2.07 2.75.516 5.169 1.829 5.169 1.829s1.751 1 3.39.438c1.64-.563 5.954-2.898 5.954-2.898s-3.266-.776-6.265-1.182c-1.687-.229-4.279-.418-6.477-.428Z" }) + ] + } + ); +}); + +export { SiLining as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.cjs new file mode 100644 index 000000000..6e484b0eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2BEDA7"; +const SiLinkerd = React__namespace.forwardRef(function SiLinkerd2({ title = "Linkerd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.329 5.04v9.034l1.666.964V6.004l-1.666-.964ZM0 15.038l1.666-.964V5.04L0 6.004v9.034Zm8.165-.089 7.665 4.424V17.45l-7.176-4.142-.489.282v1.359Zm8.105 6.989-8.105-4.681v1.923l2.164 1.25-2.604 1.503a.263.263 0 0 0 0 .454l1.27.737 3-1.73 3 1.73 1.27-.737c.178-.093.178-.35.005-.449Zm6.059-11.511v8.012c0 .202.218.331.396.227l1.142-.657a.267.267 0 0 0 .133-.228V9.468l-1.671.959Zm-3.271 10.354 1.072-.623a.39.39 0 0 0 .198-.341v-8.233l-1.666.963v8.012c0 .198.218.326.396.222Zm-4.063 2.348 1.537-.885a.265.265 0 0 0 .134-.227v-8.318l-1.671.964v8.466Zm-7.532-.89L9 23.124v-8.461l-1.666-.964v8.313c0 .094.05.183.129.227Zm-3.598-2.076 1.072.623a.265.265 0 0 0 .396-.227v-8.017l-1.666-.963v8.238c0 .144.074.277.198.346ZM.198 18.048l1.072.623a.265.265 0 0 0 .396-.228v-8.016L0 9.468v8.239c0 .138.074.267.198.341ZM23.995 6.004l-1.666-.964-3 1.73-1.996-1.152 2.604-1.502a.264.264 0 0 0 0-.455l-1.077-.623a.403.403 0 0 0-.395 0l-2.803 1.616-1.996-1.151L16.27 2a.263.263 0 0 0 0-.454L15.193.923a.405.405 0 0 0-.396 0l-2.802 1.616L9.193.923a.405.405 0 0 0-.396 0l-1.077.623a.263.263 0 0 0 0 .454l14.6 8.432 1.665-.964-3-1.73 3.01-1.734ZM5.135 3.038l-1.072.623a.264.264 0 0 0 0 .455l14.599 8.431 1.666-.963L5.53 3.038a.403.403 0 0 0-.395 0ZM0 6.004l3 1.729-3 1.735 1.671.959 2.995-1.73 2.001 1.157-3 1.73 1.666.963 3-1.734 1.996 1.156-3 1.73L9 14.663l2.995-1.735 3 1.735 1.666-.964L1.666 5.04 0 6.004Z" }) + ] + } + ); +}); + +exports.default = SiLinkerd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.d.ts new file mode 100644 index 000000000..0b1a593b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2BEDA7"; +declare const SiLinkerd: IconType; +export { SiLinkerd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.mjs new file mode 100644 index 000000000..ed38622d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkerd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2BEDA7"; +const SiLinkerd = React.forwardRef(function SiLinkerd2({ title = "Linkerd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.329 5.04v9.034l1.666.964V6.004l-1.666-.964ZM0 15.038l1.666-.964V5.04L0 6.004v9.034Zm8.165-.089 7.665 4.424V17.45l-7.176-4.142-.489.282v1.359Zm8.105 6.989-8.105-4.681v1.923l2.164 1.25-2.604 1.503a.263.263 0 0 0 0 .454l1.27.737 3-1.73 3 1.73 1.27-.737c.178-.093.178-.35.005-.449Zm6.059-11.511v8.012c0 .202.218.331.396.227l1.142-.657a.267.267 0 0 0 .133-.228V9.468l-1.671.959Zm-3.271 10.354 1.072-.623a.39.39 0 0 0 .198-.341v-8.233l-1.666.963v8.012c0 .198.218.326.396.222Zm-4.063 2.348 1.537-.885a.265.265 0 0 0 .134-.227v-8.318l-1.671.964v8.466Zm-7.532-.89L9 23.124v-8.461l-1.666-.964v8.313c0 .094.05.183.129.227Zm-3.598-2.076 1.072.623a.265.265 0 0 0 .396-.227v-8.017l-1.666-.963v8.238c0 .144.074.277.198.346ZM.198 18.048l1.072.623a.265.265 0 0 0 .396-.228v-8.016L0 9.468v8.239c0 .138.074.267.198.341ZM23.995 6.004l-1.666-.964-3 1.73-1.996-1.152 2.604-1.502a.264.264 0 0 0 0-.455l-1.077-.623a.403.403 0 0 0-.395 0l-2.803 1.616-1.996-1.151L16.27 2a.263.263 0 0 0 0-.454L15.193.923a.405.405 0 0 0-.396 0l-2.802 1.616L9.193.923a.405.405 0 0 0-.396 0l-1.077.623a.263.263 0 0 0 0 .454l14.6 8.432 1.665-.964-3-1.73 3.01-1.734ZM5.135 3.038l-1.072.623a.264.264 0 0 0 0 .455l14.599 8.431 1.666-.963L5.53 3.038a.403.403 0 0 0-.395 0ZM0 6.004l3 1.729-3 1.735 1.671.959 2.995-1.73 2.001 1.157-3 1.73 1.666.963 3-1.734 1.996 1.156-3 1.73L9 14.663l2.995-1.735 3 1.735 1.666-.964L1.666 5.04 0 6.004Z" }) + ] + } + ); +}); + +export { SiLinkerd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.cjs new file mode 100644 index 000000000..53bc24434 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3850"; +const SiLinkfire = React__namespace.forwardRef(function SiLinkfire2({ title = "Linkfire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.08 1.997A10.041 10.042 0 0 0 0 12.006a10.041 10.042 0 0 0 10.08 10 10.037 10.038 0 0 0 7.12-2.933c2.883-2.796 4.509-8.065 5.775-12.861l.038-.152.09-.343a.227.227 0 0 0-.038-.197.234.234 0 0 0-.185-.09h-1.711a.23.23 0 0 1-.215-.14.227.227 0 0 1 .053-.25l2.925-2.646v-.011a.23.23 0 0 0 .053-.246.23.23 0 0 0-.216-.143zm.385 4.645h3.847a1.686 1.686 0 0 1 1.682 1.686v3.844a1.686 1.686 0 0 1-1.682 1.686H10.47a1.686 1.686 0 0 1-1.684-1.686v-.722h1.442v.722a.246.246 0 0 0 .242.242h3.848a.242.242 0 0 0 .242-.242V8.324a.242.242 0 0 0-.242-.242H10.47a.242.242 0 0 0-.242.242v.722H8.784v-.718a1.686 1.686 0 0 1 1.684-1.686zM7.582 9.526h3.84a1.686 1.686 0 0 1 1.684 1.686v.718h-1.44v-.718a.242.242 0 0 0-.24-.242H7.577a.242.242 0 0 0-.242.242v3.847a.242.242 0 0 0 .242.242h3.847a.242.242 0 0 0 .241-.242v-.718h1.448v.718a1.686 1.686 0 0 1-1.686 1.682H7.582a1.686 1.686 0 0 1-1.69-1.682v-3.847a1.686 1.686 0 0 1 1.69-1.686z" }) + ] + } + ); +}); + +exports.default = SiLinkfire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.d.ts new file mode 100644 index 000000000..9e00d1ff7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3850"; +declare const SiLinkfire: IconType; +export { SiLinkfire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.mjs new file mode 100644 index 000000000..8e7672c60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinkfire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3850"; +const SiLinkfire = React.forwardRef(function SiLinkfire2({ title = "Linkfire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.08 1.997A10.041 10.042 0 0 0 0 12.006a10.041 10.042 0 0 0 10.08 10 10.037 10.038 0 0 0 7.12-2.933c2.883-2.796 4.509-8.065 5.775-12.861l.038-.152.09-.343a.227.227 0 0 0-.038-.197.234.234 0 0 0-.185-.09h-1.711a.23.23 0 0 1-.215-.14.227.227 0 0 1 .053-.25l2.925-2.646v-.011a.23.23 0 0 0 .053-.246.23.23 0 0 0-.216-.143zm.385 4.645h3.847a1.686 1.686 0 0 1 1.682 1.686v3.844a1.686 1.686 0 0 1-1.682 1.686H10.47a1.686 1.686 0 0 1-1.684-1.686v-.722h1.442v.722a.246.246 0 0 0 .242.242h3.848a.242.242 0 0 0 .242-.242V8.324a.242.242 0 0 0-.242-.242H10.47a.242.242 0 0 0-.242.242v.722H8.784v-.718a1.686 1.686 0 0 1 1.684-1.686zM7.582 9.526h3.84a1.686 1.686 0 0 1 1.684 1.686v.718h-1.44v-.718a.242.242 0 0 0-.24-.242H7.577a.242.242 0 0 0-.242.242v3.847a.242.242 0 0 0 .242.242h3.847a.242.242 0 0 0 .241-.242v-.718h1.448v.718a1.686 1.686 0 0 1-1.686 1.682H7.582a1.686 1.686 0 0 1-1.69-1.682v-3.847a1.686 1.686 0 0 1 1.69-1.686z" }) + ] + } + ); +}); + +export { SiLinkfire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.cjs new file mode 100644 index 000000000..257924db4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLinksys = React__namespace.forwardRef(function SiLinksys2({ title = "Linksys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.871 0c-1.7024 0-3.082 1.38-3.082 3.082 0 1.7025 1.38 3.08 3.082 3.082 1.7026 0 3.082-1.3795 3.082-3.082 0-1.7024-1.3795-3.082-3.082-3.082ZM1.047.488V24h21.3105v-3.469H5.166V.488Zm7.156 0v17.156h14.154v-3.4707h-10.039V.488Z" }) + ] + } + ); +}); + +exports.default = SiLinksys; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.d.ts new file mode 100644 index 000000000..c2d8d1f02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLinksys: IconType; +export { SiLinksys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.mjs new file mode 100644 index 000000000..1400f0abc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinksys.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLinksys = React.forwardRef(function SiLinksys2({ title = "Linksys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.871 0c-1.7024 0-3.082 1.38-3.082 3.082 0 1.7025 1.38 3.08 3.082 3.082 1.7026 0 3.082-1.3795 3.082-3.082 0-1.7024-1.3795-3.082-3.082-3.082ZM1.047.488V24h21.3105v-3.469H5.166V.488Zm7.156 0v17.156h14.154v-3.4707h-10.039V.488Z" }) + ] + } + ); +}); + +export { SiLinksys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.cjs new file mode 100644 index 000000000..112adc50c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#43E55E"; +const SiLinktree = React__namespace.forwardRef(function SiLinktree2({ title = "Linktree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.73635 5.85251 4.00467-4.11665 2.3248 2.3808-4.20064 4.00466h5.9085v3.30473h-5.9365l4.22865 4.10766-2.3248 2.3338L12.0005 12.099l-5.74052 5.76852-2.3248-2.3248 4.22864-4.10766h-5.9375V8.12132h5.9085L3.93417 4.11666l2.3248-2.3808 4.00468 4.11665V0h3.4727zm-3.4727 10.30614h3.4727V24h-3.4727z" }) + ] + } + ); +}); + +exports.default = SiLinktree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.d.ts new file mode 100644 index 000000000..84ebc64b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#43E55E"; +declare const SiLinktree: IconType; +export { SiLinktree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.mjs new file mode 100644 index 000000000..77355e288 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinktree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#43E55E"; +const SiLinktree = React.forwardRef(function SiLinktree2({ title = "Linktree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m13.73635 5.85251 4.00467-4.11665 2.3248 2.3808-4.20064 4.00466h5.9085v3.30473h-5.9365l4.22865 4.10766-2.3248 2.3338L12.0005 12.099l-5.74052 5.76852-2.3248-2.3248 4.22864-4.10766h-5.9375V8.12132h5.9085L3.93417 4.11666l2.3248-2.3808 4.00468 4.11665V0h3.4727zm-3.4727 10.30614h3.4727V24h-3.4727z" }) + ] + } + ); +}); + +export { SiLinktree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.cjs new file mode 100644 index 000000000..e1e639110 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5E00"; +const SiLinphone = React__namespace.forwardRef(function SiLinphone2({ title = "Linphone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.976.001C.87-.005.787.01.737.047c-.533.41 1.518 4.677 1.518 4.677s-2.38 3.282-2.01 4.76C.232 9.425 1.804 7.76 1.804 7.76c.082.451 3.897 1.56 3.897 1.56.507.322.682.554.78 1.066v1.97c1.318.82 2.529 1.091 5.456 1.271 3.111-.133 4.396-.408 5.539-1.272 0 0-.123-1.518 0-2.051.123-.534.396-.838.82-.985 1.583-.362 2.365-.758 3.857-1.518l1.64 1.682c-.249-1.849-.677-2.873-1.968-4.676-1.026-1.172-1.683-1.786-3.036-2.79-1.472-.87-2.288-1.201-3.734-1.6-2.509-.514-3.892-.512-6.318 0-1.486.448-2.227.786-3.323 1.6 0 0-3.403-1.954-4.438-2.016zm22.738 14.44c-1.648 1.293-2.719 2.048-4.759 2.995-2.524.996-3.993 1.315-6.728 1.395-3.186-.055-4.74-.37-7.139-1.395-1.905-.834-2.938-1.464-4.717-2.871.427 1.77.826 2.703 1.805 4.266 1.042 1.411 1.683 2.04 2.912 2.913 1.33.913 2.128 1.312 3.652 1.805 1.369.33 2.132.434 3.487.451 1.381-.069 2.098-.22 3.282-.492 1.306-.52 1.97-.848 3.077-1.477 1.834 1.036 4.102 2.216 4.43 1.723.329-.492-1.476-4.472-1.476-4.472 1.204-1.724 1.696-2.885 2.174-4.84z" }) + ] + } + ); +}); + +exports.default = SiLinphone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.d.ts new file mode 100644 index 000000000..ae828e88a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5E00"; +declare const SiLinphone: IconType; +export { SiLinphone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.mjs new file mode 100644 index 000000000..3718e876d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinphone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5E00"; +const SiLinphone = React.forwardRef(function SiLinphone2({ title = "Linphone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.976.001C.87-.005.787.01.737.047c-.533.41 1.518 4.677 1.518 4.677s-2.38 3.282-2.01 4.76C.232 9.425 1.804 7.76 1.804 7.76c.082.451 3.897 1.56 3.897 1.56.507.322.682.554.78 1.066v1.97c1.318.82 2.529 1.091 5.456 1.271 3.111-.133 4.396-.408 5.539-1.272 0 0-.123-1.518 0-2.051.123-.534.396-.838.82-.985 1.583-.362 2.365-.758 3.857-1.518l1.64 1.682c-.249-1.849-.677-2.873-1.968-4.676-1.026-1.172-1.683-1.786-3.036-2.79-1.472-.87-2.288-1.201-3.734-1.6-2.509-.514-3.892-.512-6.318 0-1.486.448-2.227.786-3.323 1.6 0 0-3.403-1.954-4.438-2.016zm22.738 14.44c-1.648 1.293-2.719 2.048-4.759 2.995-2.524.996-3.993 1.315-6.728 1.395-3.186-.055-4.74-.37-7.139-1.395-1.905-.834-2.938-1.464-4.717-2.871.427 1.77.826 2.703 1.805 4.266 1.042 1.411 1.683 2.04 2.912 2.913 1.33.913 2.128 1.312 3.652 1.805 1.369.33 2.132.434 3.487.451 1.381-.069 2.098-.22 3.282-.492 1.306-.52 1.97-.848 3.077-1.477 1.834 1.036 4.102 2.216 4.43 1.723.329-.492-1.476-4.472-1.476-4.472 1.204-1.724 1.696-2.885 2.174-4.84z" }) + ] + } + ); +}); + +export { SiLinphone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.cjs new file mode 100644 index 000000000..74b18dcb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13B4FF"; +const SiLintcode = React__namespace.forwardRef(function SiLintcode2({ title = "LintCode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.11 0 5.064 10.467l4.797 6.142 1.322-2.289-3.149-4.032 4.722-8.184A902.354 902.354 0 0 0 11.11 0Zm3.029 7.391L12.817 9.68l3.148 4.032-4.721 8.184c.546.703 1.095 1.404 1.646 2.104l6.045-10.469-4.796-6.14Z" }) + ] + } + ); +}); + +exports.default = SiLintcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.d.ts new file mode 100644 index 000000000..55eb41566 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13B4FF"; +declare const SiLintcode: IconType; +export { SiLintcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.mjs new file mode 100644 index 000000000..6994850c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLintcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13B4FF"; +const SiLintcode = React.forwardRef(function SiLintcode2({ title = "LintCode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.11 0 5.064 10.467l4.797 6.142 1.322-2.289-3.149-4.032 4.722-8.184A902.354 902.354 0 0 0 11.11 0Zm3.029 7.391L12.817 9.68l3.148 4.032-4.721 8.184c.546.703 1.095 1.404 1.646 2.104l6.045-10.469-4.796-6.14Z" }) + ] + } + ); +}); + +export { SiLintcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.cjs new file mode 100644 index 000000000..e3369daa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FCC624"; +const SiLinux = React__namespace.forwardRef(function SiLinux2({ title = "Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.424.424 0 00-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.132 1.884 1.071.771-.06 1.592-.536 2.257-1.306.631-.765 1.683-1.084 2.378-1.503.348-.199.629-.469.649-.853.023-.4-.2-.811-.714-1.376v-.097l-.003-.003c-.17-.2-.25-.535-.338-.926-.085-.401-.182-.786-.492-1.046h-.003c-.059-.054-.123-.067-.188-.135a.357.357 0 00-.19-.064c.431-1.278.264-2.55-.173-3.694-.533-1.41-1.465-2.638-2.175-3.483-.796-1.005-1.576-1.957-1.56-3.368.026-2.152.236-6.133-3.544-6.139zm.529 3.405h.013c.213 0 .396.062.584.198.19.135.33.332.438.533.105.259.158.459.166.724 0-.02.006-.04.006-.06v.105a.086.086 0 01-.004-.021l-.004-.024a1.807 1.807 0 01-.15.706.953.953 0 01-.213.335.71.71 0 00-.088-.042c-.104-.045-.198-.064-.284-.133a1.312 1.312 0 00-.22-.066c.05-.06.146-.133.183-.198.053-.128.082-.264.088-.402v-.02a1.21 1.21 0 00-.061-.4c-.045-.134-.101-.2-.183-.333-.084-.066-.167-.132-.267-.132h-.016c-.093 0-.176.03-.262.132a.8.8 0 00-.205.334 1.18 1.18 0 00-.09.4v.019c.002.089.008.179.02.267-.193-.067-.438-.135-.607-.202a1.635 1.635 0 01-.018-.2v-.02a1.772 1.772 0 01.15-.768c.082-.22.232-.406.43-.533a.985.985 0 01.594-.2zm-2.962.059h.036c.142 0 .27.048.399.135.146.129.264.288.344.465.09.199.14.4.153.667v.004c.007.134.006.2-.002.266v.08c-.03.007-.056.018-.083.024-.152.055-.274.135-.393.2.012-.09.013-.18.003-.267v-.015c-.012-.133-.04-.2-.082-.333a.613.613 0 00-.166-.267.248.248 0 00-.183-.064h-.021c-.071.006-.13.04-.186.132a.552.552 0 00-.12.27.944.944 0 00-.023.33v.015c.012.135.037.2.08.334.046.134.098.2.166.268.01.009.02.018.034.024-.07.057-.117.07-.176.136a.304.304 0 01-.131.068 2.62 2.62 0 01-.275-.402 1.772 1.772 0 01-.155-.667 1.759 1.759 0 01.08-.668 1.43 1.43 0 01.283-.535c.128-.133.26-.2.418-.2zm1.37 1.706c.332 0 .733.065 1.216.399.293.2.523.269 1.052.468h.003c.255.136.405.266.478.399v-.131a.571.571 0 01.016.47c-.123.31-.516.643-1.063.842v.002c-.268.135-.501.333-.775.465-.276.135-.588.292-1.012.267a1.139 1.139 0 01-.448-.067 3.566 3.566 0 01-.322-.198c-.195-.135-.363-.332-.612-.465v-.005h-.005c-.4-.246-.616-.512-.686-.71-.07-.268-.005-.47.193-.6.224-.135.38-.271.483-.336.104-.074.143-.102.176-.131h.002v-.003c.169-.202.436-.47.839-.601.139-.036.294-.065.466-.065zm2.8 2.142c.358 1.417 1.196 3.475 1.735 4.473.286.534.855 1.659 1.102 3.024.156-.005.33.018.513.064.646-1.671-.546-3.467-1.089-3.966-.22-.2-.232-.335-.123-.335.59.534 1.365 1.572 1.646 2.757.13.535.16 1.104.021 1.67.067.028.135.06.205.067 1.032.534 1.413.938 1.23 1.537v-.043c-.06-.003-.12 0-.18 0h-.016c.151-.467-.182-.825-1.065-1.224-.915-.4-1.646-.336-1.77.465-.008.043-.013.066-.018.135-.068.023-.139.053-.209.064-.43.268-.662.669-.793 1.187-.13.533-.17 1.156-.205 1.869v.003c-.02.334-.17.838-.319 1.35-1.5 1.072-3.58 1.538-5.348.334a2.645 2.645 0 00-.402-.533 1.45 1.45 0 00-.275-.333c.182 0 .338-.03.465-.067a.615.615 0 00.314-.334c.108-.267 0-.697-.345-1.163-.345-.467-.931-.995-1.788-1.521-.63-.4-.986-.87-1.15-1.396-.165-.534-.143-1.085-.015-1.645.245-1.07.873-2.11 1.274-2.763.107-.065.037.135-.408.974-.396.751-1.14 2.497-.122 3.854a8.123 8.123 0 01.647-2.876c.564-1.278 1.743-3.504 1.836-5.268.048.036.217.135.289.202.218.133.38.333.59.465.21.201.477.335.876.335.039.003.075.006.11.006.412 0 .73-.134.997-.268.29-.134.52-.334.74-.4h.005c.467-.135.835-.402 1.044-.7zm2.185 8.958c.037.6.343 1.245.882 1.377.588.134 1.434-.333 1.791-.765l.211-.01c.315-.007.577.01.847.268l.003.003c.208.199.305.53.391.876.085.4.154.78.409 1.066.486.527.645.906.636 1.14l.003-.007v.018l-.003-.012c-.015.262-.185.396-.498.595-.63.401-1.746.712-2.457 1.57-.618.737-1.37 1.14-2.036 1.191-.664.053-1.237-.2-1.574-.898l-.005-.003c-.21-.4-.12-1.025.056-1.69.176-.668.428-1.344.463-1.897.037-.714.076-1.335.195-1.814.12-.465.308-.797.641-.984l.045-.022zm-10.814.049h.01c.053 0 .105.005.157.014.376.055.706.333 1.023.752l.91 1.664.003.003c.243.533.754 1.064 1.189 1.637.434.598.77 1.131.729 1.57v.006c-.057.744-.48 1.148-1.125 1.294-.645.135-1.52.002-2.395-.464-.968-.536-2.118-.469-2.857-.602-.369-.066-.61-.2-.723-.4-.11-.2-.113-.602.123-1.23v-.004l.002-.003c.117-.334.03-.752-.027-1.118-.055-.401-.083-.71.043-.94.16-.334.396-.4.69-.533.294-.135.64-.202.915-.47h.002v-.002c.256-.268.445-.601.668-.838.19-.201.38-.336.663-.336zm7.159-9.074c-.435.201-.945.535-1.488.535-.542 0-.97-.267-1.28-.466-.154-.134-.28-.268-.373-.335-.164-.134-.144-.333-.074-.333.109.016.129.134.199.2.096.066.215.2.36.333.292.2.68.467 1.167.467.485 0 1.053-.267 1.398-.466.195-.135.445-.334.648-.467.156-.136.149-.267.279-.267.128.016.034.134-.147.332a8.097 8.097 0 01-.69.468zm-1.082-1.583V5.64c-.006-.02.013-.042.029-.05.074-.043.18-.027.26.004.063 0 .16.067.15.135-.006.049-.085.066-.135.066-.055 0-.092-.043-.141-.068-.052-.018-.146-.008-.163-.065zm-.551 0c-.02.058-.113.049-.166.066-.047.025-.086.068-.14.068-.05 0-.13-.02-.136-.068-.01-.066.088-.133.15-.133.08-.031.184-.047.259-.005.019.009.036.03.03.05v.02h.003z" }) + ] + } + ); +}); + +exports.default = SiLinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.d.ts new file mode 100644 index 000000000..3fd162507 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FCC624"; +declare const SiLinux: IconType; +export { SiLinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.mjs new file mode 100644 index 000000000..17e1a3387 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FCC624"; +const SiLinux = React.forwardRef(function SiLinux2({ title = "Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.424.424 0 00-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.132 1.884 1.071.771-.06 1.592-.536 2.257-1.306.631-.765 1.683-1.084 2.378-1.503.348-.199.629-.469.649-.853.023-.4-.2-.811-.714-1.376v-.097l-.003-.003c-.17-.2-.25-.535-.338-.926-.085-.401-.182-.786-.492-1.046h-.003c-.059-.054-.123-.067-.188-.135a.357.357 0 00-.19-.064c.431-1.278.264-2.55-.173-3.694-.533-1.41-1.465-2.638-2.175-3.483-.796-1.005-1.576-1.957-1.56-3.368.026-2.152.236-6.133-3.544-6.139zm.529 3.405h.013c.213 0 .396.062.584.198.19.135.33.332.438.533.105.259.158.459.166.724 0-.02.006-.04.006-.06v.105a.086.086 0 01-.004-.021l-.004-.024a1.807 1.807 0 01-.15.706.953.953 0 01-.213.335.71.71 0 00-.088-.042c-.104-.045-.198-.064-.284-.133a1.312 1.312 0 00-.22-.066c.05-.06.146-.133.183-.198.053-.128.082-.264.088-.402v-.02a1.21 1.21 0 00-.061-.4c-.045-.134-.101-.2-.183-.333-.084-.066-.167-.132-.267-.132h-.016c-.093 0-.176.03-.262.132a.8.8 0 00-.205.334 1.18 1.18 0 00-.09.4v.019c.002.089.008.179.02.267-.193-.067-.438-.135-.607-.202a1.635 1.635 0 01-.018-.2v-.02a1.772 1.772 0 01.15-.768c.082-.22.232-.406.43-.533a.985.985 0 01.594-.2zm-2.962.059h.036c.142 0 .27.048.399.135.146.129.264.288.344.465.09.199.14.4.153.667v.004c.007.134.006.2-.002.266v.08c-.03.007-.056.018-.083.024-.152.055-.274.135-.393.2.012-.09.013-.18.003-.267v-.015c-.012-.133-.04-.2-.082-.333a.613.613 0 00-.166-.267.248.248 0 00-.183-.064h-.021c-.071.006-.13.04-.186.132a.552.552 0 00-.12.27.944.944 0 00-.023.33v.015c.012.135.037.2.08.334.046.134.098.2.166.268.01.009.02.018.034.024-.07.057-.117.07-.176.136a.304.304 0 01-.131.068 2.62 2.62 0 01-.275-.402 1.772 1.772 0 01-.155-.667 1.759 1.759 0 01.08-.668 1.43 1.43 0 01.283-.535c.128-.133.26-.2.418-.2zm1.37 1.706c.332 0 .733.065 1.216.399.293.2.523.269 1.052.468h.003c.255.136.405.266.478.399v-.131a.571.571 0 01.016.47c-.123.31-.516.643-1.063.842v.002c-.268.135-.501.333-.775.465-.276.135-.588.292-1.012.267a1.139 1.139 0 01-.448-.067 3.566 3.566 0 01-.322-.198c-.195-.135-.363-.332-.612-.465v-.005h-.005c-.4-.246-.616-.512-.686-.71-.07-.268-.005-.47.193-.6.224-.135.38-.271.483-.336.104-.074.143-.102.176-.131h.002v-.003c.169-.202.436-.47.839-.601.139-.036.294-.065.466-.065zm2.8 2.142c.358 1.417 1.196 3.475 1.735 4.473.286.534.855 1.659 1.102 3.024.156-.005.33.018.513.064.646-1.671-.546-3.467-1.089-3.966-.22-.2-.232-.335-.123-.335.59.534 1.365 1.572 1.646 2.757.13.535.16 1.104.021 1.67.067.028.135.06.205.067 1.032.534 1.413.938 1.23 1.537v-.043c-.06-.003-.12 0-.18 0h-.016c.151-.467-.182-.825-1.065-1.224-.915-.4-1.646-.336-1.77.465-.008.043-.013.066-.018.135-.068.023-.139.053-.209.064-.43.268-.662.669-.793 1.187-.13.533-.17 1.156-.205 1.869v.003c-.02.334-.17.838-.319 1.35-1.5 1.072-3.58 1.538-5.348.334a2.645 2.645 0 00-.402-.533 1.45 1.45 0 00-.275-.333c.182 0 .338-.03.465-.067a.615.615 0 00.314-.334c.108-.267 0-.697-.345-1.163-.345-.467-.931-.995-1.788-1.521-.63-.4-.986-.87-1.15-1.396-.165-.534-.143-1.085-.015-1.645.245-1.07.873-2.11 1.274-2.763.107-.065.037.135-.408.974-.396.751-1.14 2.497-.122 3.854a8.123 8.123 0 01.647-2.876c.564-1.278 1.743-3.504 1.836-5.268.048.036.217.135.289.202.218.133.38.333.59.465.21.201.477.335.876.335.039.003.075.006.11.006.412 0 .73-.134.997-.268.29-.134.52-.334.74-.4h.005c.467-.135.835-.402 1.044-.7zm2.185 8.958c.037.6.343 1.245.882 1.377.588.134 1.434-.333 1.791-.765l.211-.01c.315-.007.577.01.847.268l.003.003c.208.199.305.53.391.876.085.4.154.78.409 1.066.486.527.645.906.636 1.14l.003-.007v.018l-.003-.012c-.015.262-.185.396-.498.595-.63.401-1.746.712-2.457 1.57-.618.737-1.37 1.14-2.036 1.191-.664.053-1.237-.2-1.574-.898l-.005-.003c-.21-.4-.12-1.025.056-1.69.176-.668.428-1.344.463-1.897.037-.714.076-1.335.195-1.814.12-.465.308-.797.641-.984l.045-.022zm-10.814.049h.01c.053 0 .105.005.157.014.376.055.706.333 1.023.752l.91 1.664.003.003c.243.533.754 1.064 1.189 1.637.434.598.77 1.131.729 1.57v.006c-.057.744-.48 1.148-1.125 1.294-.645.135-1.52.002-2.395-.464-.968-.536-2.118-.469-2.857-.602-.369-.066-.61-.2-.723-.4-.11-.2-.113-.602.123-1.23v-.004l.002-.003c.117-.334.03-.752-.027-1.118-.055-.401-.083-.71.043-.94.16-.334.396-.4.69-.533.294-.135.64-.202.915-.47h.002v-.002c.256-.268.445-.601.668-.838.19-.201.38-.336.663-.336zm7.159-9.074c-.435.201-.945.535-1.488.535-.542 0-.97-.267-1.28-.466-.154-.134-.28-.268-.373-.335-.164-.134-.144-.333-.074-.333.109.016.129.134.199.2.096.066.215.2.36.333.292.2.68.467 1.167.467.485 0 1.053-.267 1.398-.466.195-.135.445-.334.648-.467.156-.136.149-.267.279-.267.128.016.034.134-.147.332a8.097 8.097 0 01-.69.468zm-1.082-1.583V5.64c-.006-.02.013-.042.029-.05.074-.043.18-.027.26.004.063 0 .16.067.15.135-.006.049-.085.066-.135.066-.055 0-.092-.043-.141-.068-.052-.018-.146-.008-.163-.065zm-.551 0c-.02.058-.113.049-.166.066-.047.025-.086.068-.14.068-.05 0-.13-.02-.136-.068-.01-.066.088-.133.15-.133.08-.031.184-.047.259-.005.019.009.036.03.03.05v.02h.003z" }) + ] + } + ); +}); + +export { SiLinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.cjs new file mode 100644 index 000000000..936262c08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiLinuxcontainers = React__namespace.forwardRef(function SiLinuxcontainers2({ title = "Linux Containers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.15 8.98l1.647.951-5.756 3.345.005-1.911L10.15 8.98zm1.723-1.001l-1.553.902 1.548.893.005-1.795zM6.028 5.33L6.025 6.4l.543.316 3.602 2.079 1.632-.948-2.19-1.279-3.231-1.887-.351-.203-.002.852zm.072-.983l.359.209 6.321 3.65 5.258 3.037 5.858-3.405L11.956.943 6.1 4.347zm6.002 12.602l-.005 1.924 5.858-3.404.005-1.924-5.858 3.404zm-.077-9.009l-.005 1.922 5.94 3.428.005-1.92-5.94-3.43zm-10.13.945l4.075 2.352 4.031-2.342-4.075-2.353-4.031 2.343zM24 7.982l-5.858 3.404-.015 3.982 5.858-3.404L24 7.982zm-12.048 10.04l.003-1.073L7.6 14.436l-1.565-.903v.001l-.939-.542L.015 10.06.01 11.979l11.94 6.895.002-.852zm5.935-4.605l-5.922-3.411-5.853 3.401 5.917 3.414 5.858-3.404zm6.072-1.238l-11.862 6.864-.01 4.013 11.863-6.894.009-3.983zM11.944 21.27l.005-2.227L.01 12.148 0 16.162l11.94 6.895.004-1.787zM.021 9.802L1.6 8.885.025 7.976.021 9.802zm5.832-3.39l.024-1.636.001-.296L.099 7.848l1.647.951 4.107-2.387zm.041 4.951L1.749 8.97l-.46.267-1.195.695 5.795 3.345.005-1.914z" }) + ] + } + ); +}); + +exports.default = SiLinuxcontainers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.d.ts new file mode 100644 index 000000000..d78684d27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiLinuxcontainers: IconType; +export { SiLinuxcontainers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.mjs new file mode 100644 index 000000000..0419bd7cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxcontainers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiLinuxcontainers = React.forwardRef(function SiLinuxcontainers2({ title = "Linux Containers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.15 8.98l1.647.951-5.756 3.345.005-1.911L10.15 8.98zm1.723-1.001l-1.553.902 1.548.893.005-1.795zM6.028 5.33L6.025 6.4l.543.316 3.602 2.079 1.632-.948-2.19-1.279-3.231-1.887-.351-.203-.002.852zm.072-.983l.359.209 6.321 3.65 5.258 3.037 5.858-3.405L11.956.943 6.1 4.347zm6.002 12.602l-.005 1.924 5.858-3.404.005-1.924-5.858 3.404zm-.077-9.009l-.005 1.922 5.94 3.428.005-1.92-5.94-3.43zm-10.13.945l4.075 2.352 4.031-2.342-4.075-2.353-4.031 2.343zM24 7.982l-5.858 3.404-.015 3.982 5.858-3.404L24 7.982zm-12.048 10.04l.003-1.073L7.6 14.436l-1.565-.903v.001l-.939-.542L.015 10.06.01 11.979l11.94 6.895.002-.852zm5.935-4.605l-5.922-3.411-5.853 3.401 5.917 3.414 5.858-3.404zm6.072-1.238l-11.862 6.864-.01 4.013 11.863-6.894.009-3.983zM11.944 21.27l.005-2.227L.01 12.148 0 16.162l11.94 6.895.004-1.787zM.021 9.802L1.6 8.885.025 7.976.021 9.802zm5.832-3.39l.024-1.636.001-.296L.099 7.848l1.647.951 4.107-2.387zm.041 4.951L1.749 8.97l-.46.267-1.195.695 5.795 3.345.005-1.914z" }) + ] + } + ); +}); + +export { SiLinuxcontainers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.cjs new file mode 100644 index 000000000..9effa540f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003778"; +const SiLinuxfoundation = React__namespace.forwardRef(function SiLinuxfoundation2({ title = "Linux Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.8 19.2h9.6V24H0V9.6h4.8v9.6zM0 0v7.2h4.8V4.822h14.4V19.2h-2.4V24H24V0H0z" }) + ] + } + ); +}); + +exports.default = SiLinuxfoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.d.ts new file mode 100644 index 000000000..5ba368973 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003778"; +declare const SiLinuxfoundation: IconType; +export { SiLinuxfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.mjs new file mode 100644 index 000000000..0b2c7dd93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxfoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003778"; +const SiLinuxfoundation = React.forwardRef(function SiLinuxfoundation2({ title = "Linux Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.8 19.2h9.6V24H0V9.6h4.8v9.6zM0 0v7.2h4.8V4.822h14.4V19.2h-2.4V24H24V0H0z" }) + ] + } + ); +}); + +export { SiLinuxfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.cjs new file mode 100644 index 000000000..0d2cdf559 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#86BE43"; +const SiLinuxmint = React__namespace.forwardRef(function SiLinuxmint2({ title = "Linux Mint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.438 5.906v8.438c0 2.06 1.69 3.75 3.75 3.75h5.625c2.06 0 3.75-1.69 3.75-3.75V9.656a2.827 2.827 0 0 0-2.813-2.812 2.8 2.8 0 0 0-1.875.737A2.8 2.8 0 0 0 12 6.844a2.827 2.827 0 0 0-2.812 2.812v4.688h1.875V9.656c0-.529.408-.937.937-.937s.938.408.938.937v4.688h1.875V9.656c0-.529.408-.937.937-.937s.938.408.938.937v4.688a1.86 1.86 0 0 1-1.875 1.875H9.188a1.86 1.86 0 0 1-1.875-1.875V5.906ZM12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0m0 1.875A10.11 10.11 0 0 1 22.125 12 10.11 10.11 0 0 1 12 22.125 10.11 10.11 0 0 1 1.875 12 10.11 10.11 0 0 1 12 1.875" }) + ] + } + ); +}); + +exports.default = SiLinuxmint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.d.ts new file mode 100644 index 000000000..b1d30ba21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#86BE43"; +declare const SiLinuxmint: IconType; +export { SiLinuxmint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.mjs new file mode 100644 index 000000000..34eca5619 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxmint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#86BE43"; +const SiLinuxmint = React.forwardRef(function SiLinuxmint2({ title = "Linux Mint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.438 5.906v8.438c0 2.06 1.69 3.75 3.75 3.75h5.625c2.06 0 3.75-1.69 3.75-3.75V9.656a2.827 2.827 0 0 0-2.813-2.812 2.8 2.8 0 0 0-1.875.737A2.8 2.8 0 0 0 12 6.844a2.827 2.827 0 0 0-2.812 2.812v4.688h1.875V9.656c0-.529.408-.937.937-.937s.938.408.938.937v4.688h1.875V9.656c0-.529.408-.937.937-.937s.938.408.938.937v4.688a1.86 1.86 0 0 1-1.875 1.875H9.188a1.86 1.86 0 0 1-1.875-1.875V5.906ZM12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0m0 1.875A10.11 10.11 0 0 1 22.125 12 10.11 10.11 0 0 1 12 22.125 10.11 10.11 0 0 1 1.875 12 10.11 10.11 0 0 1 12 1.875" }) + ] + } + ); +}); + +export { SiLinuxmint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.cjs new file mode 100644 index 000000000..bbc4a0a63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDC300"; +const SiLinuxprofessionalinstitute = React__namespace.forwardRef(function SiLinuxprofessionalinstitute2({ title = "Linux Professional Institute", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12-.0002c-6.6273 0-12 5.3728-12 11.9997 0 6.627 5.3727 12.0007 12 12.0007s12-5.3728 12-12.0007S18.627-.0002 12-.0002Zm0 20.987c-4.9632 0-8.987-4.0231-8.987-8.9866 0-4.9635 4.0238-8.9867 8.987-8.9867 4.9632 0 8.987 4.0235 8.987 8.9867 0 4.9631-4.0238 8.9867-8.987 8.9867zm5.1043-3.0031.7995-2.9975h-7.1631L13.5062 4.495h-2.9978L6.9118 17.9837Zm.2896-10.4938c0 .8225-.6697 1.4938-1.4938 1.4938s-1.4897-.6716-1.4897-1.4938c0-.8223.6675-1.4907 1.4897-1.4907s1.4938.6688 1.4938 1.4907" }) + ] + } + ); +}); + +exports.default = SiLinuxprofessionalinstitute; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.d.ts new file mode 100644 index 000000000..0a4363177 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDC300"; +declare const SiLinuxprofessionalinstitute: IconType; +export { SiLinuxprofessionalinstitute as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.mjs new file mode 100644 index 000000000..b0b4153a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxprofessionalinstitute.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDC300"; +const SiLinuxprofessionalinstitute = React.forwardRef(function SiLinuxprofessionalinstitute2({ title = "Linux Professional Institute", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12-.0002c-6.6273 0-12 5.3728-12 11.9997 0 6.627 5.3727 12.0007 12 12.0007s12-5.3728 12-12.0007S18.627-.0002 12-.0002Zm0 20.987c-4.9632 0-8.987-4.0231-8.987-8.9866 0-4.9635 4.0238-8.9867 8.987-8.9867 4.9632 0 8.987 4.0235 8.987 8.9867 0 4.9631-4.0238 8.9867-8.987 8.9867zm5.1043-3.0031.7995-2.9975h-7.1631L13.5062 4.495h-2.9978L6.9118 17.9837Zm.2896-10.4938c0 .8225-.6697 1.4938-1.4938 1.4938s-1.4897-.6716-1.4897-1.4938c0-.8223.6675-1.4907 1.4897-1.4907s1.4938.6688 1.4938 1.4907" }) + ] + } + ); +}); + +export { SiLinuxprofessionalinstitute as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.cjs new file mode 100644 index 000000000..2fd1ed226 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA3B8A"; +const SiLinuxserver = React__namespace.forwardRef(function SiLinuxserver2({ title = "LinuxServer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.256.719C.3116 3.7066-1.888 12.1209 1.8164 17.6298h.002a12.0306 12.0306 0 0 0 5.1193 4.5022v-.002c8.7205 4.3354 19.3091-4.3021 16.6433-13.7935-.212-.8906-1.0814-3.8234-3.7424-6.094C18.6023 1.1092 15.6758.6356 13.6294 1.09a.4526.4526 0 0 0-.1485.0644c-.667.4347-1.4822.5953-2.2637.7383a.356.356 0 0 0-.291.3399c-.0107.3518.1813.7607.3125 1.0371.3304.6431.9258 1.0205 1.629 1.1095 2.584.7393 4.5834 3.0838 4.8146 5.8283-1.9676 1.2478-4.6033 1.4143-6.885-.4765-.0361-.03-.072-.0585-.1075-.0899-.7389-.5984-1.8837.3137-1.3887 1.209 1.929 2.527 5.0078 3.4105 7.8421 2.9084-3.1817.5923-7.13 1.0496-10.184-.0176-.7053-1.455-1.7714-2.7333-3.0802-3.6486-.1575-1.5748.2295-3.209 1-4.4982.6043-.926-.7959-1.8365-1.4043-.9356C2.706 5.7782 2.226 7.073 2.0058 8.4087c.019-.1339.0385-.2666.0606-.4004C2.5478 5.1615 3.8621 2.4204 6.256.719Zm10.6684.7187c.047.0044.0606.0113.0606.004.3944.0319.783.2053.8164.4453.0251.1875-.1708.3715-.4355.502a1.873 1.873 0 0 1-.547.168c-.473.0661-.0355-.2467-.078-.5528-.0426-.3062-.5505-.4882-.0762-.5547.1321-.0178.2127-.016.2597-.0118zm-2.8927.4727c.4785.032.4773.4963 0 .5293-.4776-.033-.478-.4973 0-.5293zm-3.9572 4.4768a.6359.6359 0 0 0-.6367.6328v2.1388c.3486-.1712.7823-.1672 1.1876-.0176.5723.3414 1.2689.7013 2.0196.9766a.6359.6359 0 0 0 .5352-.629V7.02a.6362.6362 0 0 0-.6368-.6328Zm-1.8711 3.922a.6362.6362 0 0 0-.6348.6368v2.4688a.6355.6355 0 0 0 .6348.6348h2.4688a.635.635 0 0 0 .6368-.6348v-.1504c-.9005-.518-1.7222-1.2152-2.4064-2.1114l-.0215-.0293-.0175-.0332a1.3752 1.3752 0 0 1-.17-.7813Zm5.0314 0c.6898.1998 1.4073.313 2.1076.2598a.6359.6359 0 0 0-.5098-.2598zm-1.4922 3.1896a.6355.6355 0 0 0 .6211.5508h.7989a8.3544 8.3544 0 0 1-1.42-.5508Z" }) + ] + } + ); +}); + +exports.default = SiLinuxserver; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.d.ts new file mode 100644 index 000000000..e3ac437ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA3B8A"; +declare const SiLinuxserver: IconType; +export { SiLinuxserver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.mjs new file mode 100644 index 000000000..b65da6dbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLinuxserver.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA3B8A"; +const SiLinuxserver = React.forwardRef(function SiLinuxserver2({ title = "LinuxServer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.256.719C.3116 3.7066-1.888 12.1209 1.8164 17.6298h.002a12.0306 12.0306 0 0 0 5.1193 4.5022v-.002c8.7205 4.3354 19.3091-4.3021 16.6433-13.7935-.212-.8906-1.0814-3.8234-3.7424-6.094C18.6023 1.1092 15.6758.6356 13.6294 1.09a.4526.4526 0 0 0-.1485.0644c-.667.4347-1.4822.5953-2.2637.7383a.356.356 0 0 0-.291.3399c-.0107.3518.1813.7607.3125 1.0371.3304.6431.9258 1.0205 1.629 1.1095 2.584.7393 4.5834 3.0838 4.8146 5.8283-1.9676 1.2478-4.6033 1.4143-6.885-.4765-.0361-.03-.072-.0585-.1075-.0899-.7389-.5984-1.8837.3137-1.3887 1.209 1.929 2.527 5.0078 3.4105 7.8421 2.9084-3.1817.5923-7.13 1.0496-10.184-.0176-.7053-1.455-1.7714-2.7333-3.0802-3.6486-.1575-1.5748.2295-3.209 1-4.4982.6043-.926-.7959-1.8365-1.4043-.9356C2.706 5.7782 2.226 7.073 2.0058 8.4087c.019-.1339.0385-.2666.0606-.4004C2.5478 5.1615 3.8621 2.4204 6.256.719Zm10.6684.7187c.047.0044.0606.0113.0606.004.3944.0319.783.2053.8164.4453.0251.1875-.1708.3715-.4355.502a1.873 1.873 0 0 1-.547.168c-.473.0661-.0355-.2467-.078-.5528-.0426-.3062-.5505-.4882-.0762-.5547.1321-.0178.2127-.016.2597-.0118zm-2.8927.4727c.4785.032.4773.4963 0 .5293-.4776-.033-.478-.4973 0-.5293zm-3.9572 4.4768a.6359.6359 0 0 0-.6367.6328v2.1388c.3486-.1712.7823-.1672 1.1876-.0176.5723.3414 1.2689.7013 2.0196.9766a.6359.6359 0 0 0 .5352-.629V7.02a.6362.6362 0 0 0-.6368-.6328Zm-1.8711 3.922a.6362.6362 0 0 0-.6348.6368v2.4688a.6355.6355 0 0 0 .6348.6348h2.4688a.635.635 0 0 0 .6368-.6348v-.1504c-.9005-.518-1.7222-1.2152-2.4064-2.1114l-.0215-.0293-.0175-.0332a1.3752 1.3752 0 0 1-.17-.7813Zm5.0314 0c.6898.1998 1.4073.313 2.1076.2598a.6359.6359 0 0 0-.5098-.2598zm-1.4922 3.1896a.6355.6355 0 0 0 .6211.5508h.7989a8.3544 8.3544 0 0 1-1.42-.5508Z" }) + ] + } + ); +}); + +export { SiLinuxserver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.cjs new file mode 100644 index 000000000..c32873b77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED3237"; +const SiLionair = React__namespace.forwardRef(function SiLionair2({ title = "Lion Air", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.4726 7.088h-.0965v.192l.0965.0962c.0712.971-.8655 1.5373-.8655 1.5373-.0153-.603-.4807-.6726-.4807-.6726-1.1311-.291-1.4421 1.0571-1.4421 1.0571-.1277 1.1309.673 1.1531.673 1.1531.4498.125.8651-.3842.8651-.3842v.192l-.0963.8649c-.2261.7658-1.2496.4804-1.2496.4804-.444-.1825-.4804.0963-.4804.0963.049 1.3386.6726 1.8258.6726 1.8258.733.358.673.4804.673.4804.1577.301-.1923.4807-.1923.4807-.3246.168-.3844.3842-.3844.3842-.1285.284.3844.8649.3844.8649.1914.0195.2885.3845.2885.3845-.0473.4682-.481.4804-.481.4804-.134.0857-.3841.8646-.3841.8646-.993 3.2198-4.3638 3.6777-5.0618 3.7387.0713.7728.077 1.7885-.3216 2.1226 0 0-.4228.5305-1.4418.1922 0 0 1.0585-.876.8649-3.2671 0 0-.3072-.0481-.4807-.096 0 0-.2323 3.74-2.2111 3.8433 0 0-.8855.0303-1.1534-.4805 0 0 2.1354-.6843 2.7878-3.5553l-.3842-.192s-1.3874 3.682-3.7495 3.7473c0 0-.8872.1255-1.4419-.9611 0 0 2.7694-.204 4.7104-3.1706l-.3845-.2882s-2.869 3.3155-5.287 2.786c0 0-1.6773-.366-1.6344-1.8254 0 0 3.2968 1.0983 6.537-1.5373l-.2883-.4804S7.53 19.8337 4.8805 19.3875c0 0-3.4866-.6666-2.4033-3.1708 0 0 3.5714 2.3604 8.171 1.153v-.5766s-8.8734.7561-9.1322-4.0358c0 0 .1133-1.2791.6724-1.3453 0 0 2.346 3.597 8.4599 4.7087v-.4805s-8.6145-2.96-8.6518-8.264c0 0 .0737-2.2096 1.8266-1.922 0 0 .1625 5.0857 7.0174 9.5134l.192-.3845S4.5817 10.5165 4.688 2.8598c0 0 .3761-3.8936 3.2685-2.5944 0 0-1.8978 8.1023 3.557 13.549 0 0 .7906-1.4944 3.076-1.4413 0 0 3.5413-.1446 3.9414 3.7479 0 0 .3068 3.757-3.7495 4.1317 0 0 .0364.1889.0751.4743 3.4649-.2468 4.0588-3.6449 4.0588-3.6449.5158-3.73-2.8837-4.9012-2.8837-4.9012-2.6751-1.0162-4.6147.9609-4.6147.9609-2.6016-2.1196-2.8834-6.3423-2.8834-6.3423l.673-.2882c-.846-.556-.4808-1.7295-.4808-1.7295.4404.3639 2.0188-.2882 2.0188-.2882-.2261-.8941.2882-1.0571.2882-1.0571.4605-.0637 2.6916 0 2.6916 0 0-.9295.673-.8647.673-.8647.2227.2488 1.0573.3842 1.0573.3842 1.3668.5815 1.25.6724 1.25.6724.0698.1633.1919.0963.1919.0963-.0147-.8148.8652-.4805.8652-.4805.0882.8697 2.4993 2.0178 2.4993 2.0178.3533.2381 0 .6726 0 .6726l.3844.2883h.3848l.192.096.961.0962c.3887.0926.2894.673.2894.673zm-7.114-2.114s-.534.2557-.1922.8647c0 0 .1494.2145.4807.3844 0 0-.681-1.1984.865-.8649 0 0-.3425-.6604-1.1535-.3842zm4.5182 1.3451h-.6727v.1922l.4804.4805.3848-.7687Z" }) + ] + } + ); +}); + +exports.default = SiLionair; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.d.ts new file mode 100644 index 000000000..bc547a328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED3237"; +declare const SiLionair: IconType; +export { SiLionair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.mjs new file mode 100644 index 000000000..85f66c07e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLionair.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED3237"; +const SiLionair = React.forwardRef(function SiLionair2({ title = "Lion Air", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.4726 7.088h-.0965v.192l.0965.0962c.0712.971-.8655 1.5373-.8655 1.5373-.0153-.603-.4807-.6726-.4807-.6726-1.1311-.291-1.4421 1.0571-1.4421 1.0571-.1277 1.1309.673 1.1531.673 1.1531.4498.125.8651-.3842.8651-.3842v.192l-.0963.8649c-.2261.7658-1.2496.4804-1.2496.4804-.444-.1825-.4804.0963-.4804.0963.049 1.3386.6726 1.8258.6726 1.8258.733.358.673.4804.673.4804.1577.301-.1923.4807-.1923.4807-.3246.168-.3844.3842-.3844.3842-.1285.284.3844.8649.3844.8649.1914.0195.2885.3845.2885.3845-.0473.4682-.481.4804-.481.4804-.134.0857-.3841.8646-.3841.8646-.993 3.2198-4.3638 3.6777-5.0618 3.7387.0713.7728.077 1.7885-.3216 2.1226 0 0-.4228.5305-1.4418.1922 0 0 1.0585-.876.8649-3.2671 0 0-.3072-.0481-.4807-.096 0 0-.2323 3.74-2.2111 3.8433 0 0-.8855.0303-1.1534-.4805 0 0 2.1354-.6843 2.7878-3.5553l-.3842-.192s-1.3874 3.682-3.7495 3.7473c0 0-.8872.1255-1.4419-.9611 0 0 2.7694-.204 4.7104-3.1706l-.3845-.2882s-2.869 3.3155-5.287 2.786c0 0-1.6773-.366-1.6344-1.8254 0 0 3.2968 1.0983 6.537-1.5373l-.2883-.4804S7.53 19.8337 4.8805 19.3875c0 0-3.4866-.6666-2.4033-3.1708 0 0 3.5714 2.3604 8.171 1.153v-.5766s-8.8734.7561-9.1322-4.0358c0 0 .1133-1.2791.6724-1.3453 0 0 2.346 3.597 8.4599 4.7087v-.4805s-8.6145-2.96-8.6518-8.264c0 0 .0737-2.2096 1.8266-1.922 0 0 .1625 5.0857 7.0174 9.5134l.192-.3845S4.5817 10.5165 4.688 2.8598c0 0 .3761-3.8936 3.2685-2.5944 0 0-1.8978 8.1023 3.557 13.549 0 0 .7906-1.4944 3.076-1.4413 0 0 3.5413-.1446 3.9414 3.7479 0 0 .3068 3.757-3.7495 4.1317 0 0 .0364.1889.0751.4743 3.4649-.2468 4.0588-3.6449 4.0588-3.6449.5158-3.73-2.8837-4.9012-2.8837-4.9012-2.6751-1.0162-4.6147.9609-4.6147.9609-2.6016-2.1196-2.8834-6.3423-2.8834-6.3423l.673-.2882c-.846-.556-.4808-1.7295-.4808-1.7295.4404.3639 2.0188-.2882 2.0188-.2882-.2261-.8941.2882-1.0571.2882-1.0571.4605-.0637 2.6916 0 2.6916 0 0-.9295.673-.8647.673-.8647.2227.2488 1.0573.3842 1.0573.3842 1.3668.5815 1.25.6724 1.25.6724.0698.1633.1919.0963.1919.0963-.0147-.8148.8652-.4805.8652-.4805.0882.8697 2.4993 2.0178 2.4993 2.0178.3533.2381 0 .6726 0 .6726l.3844.2883h.3848l.192.096.961.0962c.3887.0926.2894.673.2894.673zm-7.114-2.114s-.534.2557-.1922.8647c0 0 .1494.2145.4807.3844 0 0-.681-1.1984.865-.8649 0 0-.3425-.6604-1.1535-.3842zm4.5182 1.3451h-.6727v.1922l.4804.4805.3848-.7687Z" }) + ] + } + ); +}); + +export { SiLionair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.cjs new file mode 100644 index 000000000..7560b6d7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2962FF"; +const SiLiquibase = React__namespace.forwardRef(function SiLiquibase2({ title = "Liquibase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.01884 0C6.64997 0 2.96561 1.92248 2.96477 3.64555c0 1.72307 3.7271 3.64555 9.05571 3.64555 5.32776 0 9.05407-1.92248 9.05407-3.64555S17.34745 0 12.01885 0Zm9.0557 6.45057c-1.60226 1.28266-3.48576 1.72252-7.33205 2.64446-5.3286 1.24155-10.81704 2.5238-10.81704 7.53195v.56035c2.00297-1.72282 5.60817-2.5234 9.13435-3.32441h.0016c4.40704-1.00153 9.01311-2.04399 9.01311-4.60732zm0 5.84927c-1.92272 1.56284-5.328 2.32433-8.6936 3.0852-4.64743 1.0419-9.45549 2.123-9.45549 5.0071 0 .64174.52143 1.3229 1.4828 1.92353 1.92356-1.28181 4.92803-2.0026 7.81212-2.68377 4.36724-1.04106 8.85418-2.12278 8.85418-4.80721zm0 5.64937c-1.88329 1.60227-5.2489 2.40461-8.49371 3.16548-2.36398.56206-4.76777 1.1223-6.45057 1.96286C7.65283 23.63961 9.69593 24 12.02048 24c5.28834 0 9.05407-1.88469 9.05407-3.64719z" }) + ] + } + ); +}); + +exports.default = SiLiquibase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.d.ts new file mode 100644 index 000000000..63cb79b05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2962FF"; +declare const SiLiquibase: IconType; +export { SiLiquibase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.mjs new file mode 100644 index 000000000..d2f84726d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiquibase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2962FF"; +const SiLiquibase = React.forwardRef(function SiLiquibase2({ title = "Liquibase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.01884 0C6.64997 0 2.96561 1.92248 2.96477 3.64555c0 1.72307 3.7271 3.64555 9.05571 3.64555 5.32776 0 9.05407-1.92248 9.05407-3.64555S17.34745 0 12.01885 0Zm9.0557 6.45057c-1.60226 1.28266-3.48576 1.72252-7.33205 2.64446-5.3286 1.24155-10.81704 2.5238-10.81704 7.53195v.56035c2.00297-1.72282 5.60817-2.5234 9.13435-3.32441h.0016c4.40704-1.00153 9.01311-2.04399 9.01311-4.60732zm0 5.84927c-1.92272 1.56284-5.328 2.32433-8.6936 3.0852-4.64743 1.0419-9.45549 2.123-9.45549 5.0071 0 .64174.52143 1.3229 1.4828 1.92353 1.92356-1.28181 4.92803-2.0026 7.81212-2.68377 4.36724-1.04106 8.85418-2.12278 8.85418-4.80721zm0 5.64937c-1.88329 1.60227-5.2489 2.40461-8.49371 3.16548-2.36398.56206-4.76777 1.1223-6.45057 1.96286C7.65283 23.63961 9.69593 24 12.02048 24c5.28834 0 9.05407-1.88469 9.05407-3.64719z" }) + ] + } + ); +}); + +export { SiLiquibase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.cjs new file mode 100644 index 000000000..2ecb1cfe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiListenhub = React__namespace.forwardRef(function SiListenhub2({ title = "ListenHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.6 17.066c-.228.36-.714 1.006-1.53 1.006-.936 0-1.525-.674-1.844-1.181-.343-.545-.582-1.22-.751-1.82a17 17 0 0 1-.469-2.412v-.019l1.004-.105-1.005.105a1.004 1.004 0 0 1 .898-1.1 1.01 1.01 0 0 1 1.111.889l.001.008.021.164a16 16 0 0 0 .387 1.933c.149.534.328.993.518 1.299l.023.034q.198-.364.436-1.058c.377-1.11.735-2.613 1.102-4.18l.061-.26c.341-1.454.689-2.944 1.055-4.088.192-.6.408-1.168.658-1.602a2.6 2.6 0 0 1 .498-.64 1.48 1.48 0 0 1 .99-.399c.496 0 .849.272 1.044.475.202.21.359.466.481.708.249.488.472 1.136.676 1.842.413 1.423.811 3.302 1.196 5.131l.046.22c.374 1.775.734 3.489 1.09 4.778q.13.467.251.825c.276-.651.564-1.504.866-2.41l.043-.127c.302-.904.618-1.854.931-2.585.162-.379.345-.755.555-1.053.105-.147.244-.317.425-.456.18-.14.466-.3.837-.3.783 0 1.296.54 1.565.893.297.391.535.874.72 1.277l.098.22c.12-.19.256-.395.399-.57.101-.127.239-.278.408-.404.162-.12.447-.288.825-.288.532 0 .904.294 1.093.473.183.173.341.382.448.525a5 5 0 0 0 .337-.473l.011-.017.009-.013.002-.006a1.016 1.016 0 0 1 1.386-.349c.48.283.637.898.352 1.372l-.869-.51.869.51-.002.003-.003.005-.008.016a7 7 0 0 1-.14.215 7 7 0 0 1-.371.504 4 4 0 0 1-.565.579c-.187.151-.567.42-1.064.42-.54 0-.912-.313-1.086-.483a4 4 0 0 1-.346-.4l-.104.167-.04.064a9 9 0 0 1-.47.717 2.4 2.4 0 0 1-.37.397 1.32 1.32 0 0 1-.84.32c-.317 0-.555-.13-.694-.233a1.5 1.5 0 0 1-.302-.301 3 3 0 0 1-.309-.524c-.09-.185-.201-.44-.308-.684a26 26 0 0 0-.19-.428 8 8 0 0 0-.306-.61l-.091.206c-.28.654-.574 1.534-.889 2.477l-.027.083c-.316.946-.654 1.954-.995 2.725-.169.381-.362.76-.587 1.061-.172.232-.594.736-1.274.736-.523 0-.872-.308-1.047-.503a3 3 0 0 1-.446-.703c-.23-.483-.44-1.127-.635-1.83-.375-1.351-.746-3.121-1.113-4.867l-.053-.253c-.39-1.85-.772-3.65-1.16-4.987a15 15 0 0 0-.286-.89q-.093.246-.192.559c-.34 1.065-.673 2.483-1.022 3.973l-.052.224c-.361 1.54-.742 3.145-1.156 4.365-.206.604-.44 1.177-.717 1.617zm11.429-4.419.008.005zm6.027.53-.012-.01zm-9.988 5.324s.007-.01.022-.022zm-9.305-2.334.015-.015zm.382-.086.007.004z" }) + ] + } + ); +}); + +exports.default = SiListenhub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.d.ts new file mode 100644 index 000000000..db8159bed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiListenhub: IconType; +export { SiListenhub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.mjs new file mode 100644 index 000000000..70964952b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiListenhub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiListenhub = React.forwardRef(function SiListenhub2({ title = "ListenHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.6 17.066c-.228.36-.714 1.006-1.53 1.006-.936 0-1.525-.674-1.844-1.181-.343-.545-.582-1.22-.751-1.82a17 17 0 0 1-.469-2.412v-.019l1.004-.105-1.005.105a1.004 1.004 0 0 1 .898-1.1 1.01 1.01 0 0 1 1.111.889l.001.008.021.164a16 16 0 0 0 .387 1.933c.149.534.328.993.518 1.299l.023.034q.198-.364.436-1.058c.377-1.11.735-2.613 1.102-4.18l.061-.26c.341-1.454.689-2.944 1.055-4.088.192-.6.408-1.168.658-1.602a2.6 2.6 0 0 1 .498-.64 1.48 1.48 0 0 1 .99-.399c.496 0 .849.272 1.044.475.202.21.359.466.481.708.249.488.472 1.136.676 1.842.413 1.423.811 3.302 1.196 5.131l.046.22c.374 1.775.734 3.489 1.09 4.778q.13.467.251.825c.276-.651.564-1.504.866-2.41l.043-.127c.302-.904.618-1.854.931-2.585.162-.379.345-.755.555-1.053.105-.147.244-.317.425-.456.18-.14.466-.3.837-.3.783 0 1.296.54 1.565.893.297.391.535.874.72 1.277l.098.22c.12-.19.256-.395.399-.57.101-.127.239-.278.408-.404.162-.12.447-.288.825-.288.532 0 .904.294 1.093.473.183.173.341.382.448.525a5 5 0 0 0 .337-.473l.011-.017.009-.013.002-.006a1.016 1.016 0 0 1 1.386-.349c.48.283.637.898.352 1.372l-.869-.51.869.51-.002.003-.003.005-.008.016a7 7 0 0 1-.14.215 7 7 0 0 1-.371.504 4 4 0 0 1-.565.579c-.187.151-.567.42-1.064.42-.54 0-.912-.313-1.086-.483a4 4 0 0 1-.346-.4l-.104.167-.04.064a9 9 0 0 1-.47.717 2.4 2.4 0 0 1-.37.397 1.32 1.32 0 0 1-.84.32c-.317 0-.555-.13-.694-.233a1.5 1.5 0 0 1-.302-.301 3 3 0 0 1-.309-.524c-.09-.185-.201-.44-.308-.684a26 26 0 0 0-.19-.428 8 8 0 0 0-.306-.61l-.091.206c-.28.654-.574 1.534-.889 2.477l-.027.083c-.316.946-.654 1.954-.995 2.725-.169.381-.362.76-.587 1.061-.172.232-.594.736-1.274.736-.523 0-.872-.308-1.047-.503a3 3 0 0 1-.446-.703c-.23-.483-.44-1.127-.635-1.83-.375-1.351-.746-3.121-1.113-4.867l-.053-.253c-.39-1.85-.772-3.65-1.16-4.987a15 15 0 0 0-.286-.89q-.093.246-.192.559c-.34 1.065-.673 2.483-1.022 3.973l-.052.224c-.361 1.54-.742 3.145-1.156 4.365-.206.604-.44 1.177-.717 1.617zm11.429-4.419.008.005zm6.027.53-.012-.01zm-9.988 5.324s.007-.01.022-.022zm-9.305-2.334.015-.015zm.382-.086.007.004z" }) + ] + } + ); +}); + +export { SiListenhub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.cjs new file mode 100644 index 000000000..fa3f97cee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0055D4"; +const SiListmonk = React__namespace.forwardRef(function SiListmonk2({ title = "listmonk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 5.1953A6.8047 6.8047 0 0 1 18.8047 12 6.8047 6.8047 0 0 1 12 18.8047 6.8047 6.8047 0 0 1 5.1953 12 6.8047 6.8047 0 0 1 12 5.1953" }) + ] + } + ); +}); + +exports.default = SiListmonk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.d.ts new file mode 100644 index 000000000..00fc316eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0055D4"; +declare const SiListmonk: IconType; +export { SiListmonk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.mjs new file mode 100644 index 000000000..21ac9e37e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiListmonk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0055D4"; +const SiListmonk = React.forwardRef(function SiListmonk2({ title = "listmonk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 5.1953A6.8047 6.8047 0 0 1 18.8047 12 6.8047 6.8047 0 0 1 12 18.8047 6.8047 6.8047 0 0 1 5.1953 12 6.8047 6.8047 0 0 1 12 5.1953" }) + ] + } + ); +}); + +export { SiListmonk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLit.cjs new file mode 100644 index 000000000..87cb21046 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#324FFF"; +const SiLit = React__namespace.forwardRef(function SiLit2({ title = "Lit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.4 9.6l4.8 4.8V24l-4.8-4.8V9.6zm4.8-4.8v9.6L12 9.6V0L7.2 4.8zM12 9.6v9.6l4.8-4.8V4.8L12 9.6zm4.8 4.8V24l4.8-4.8V9.6l-4.8 4.8z" }) + ] + } + ); +}); + +exports.default = SiLit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLit.d.ts new file mode 100644 index 000000000..4cbd90531 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#324FFF"; +declare const SiLit: IconType; +export { SiLit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLit.mjs new file mode 100644 index 000000000..978c4fbb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#324FFF"; +const SiLit = React.forwardRef(function SiLit2({ title = "Lit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.4 9.6l4.8 4.8V24l-4.8-4.8V9.6zm4.8-4.8v9.6L12 9.6V0L7.2 4.8zM12 9.6v9.6l4.8-4.8V4.8L12 9.6zm4.8 4.8V24l4.8-4.8V9.6l-4.8 4.8z" }) + ] + } + ); +}); + +export { SiLit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.cjs new file mode 100644 index 000000000..4477429f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A6A9AA"; +const SiLitecoin = React__namespace.forwardRef(function SiLitecoin2({ title = "Litecoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1012 12A12 12 0 0012 0zm-.2617 3.6777h2.584a.3425.3425 0 01.33.4356l-2.0312 6.918 1.9062-.582-.4082 1.3847-1.9238.5605-1.248 4.213h6.6757a.3425.3425 0 01.3282.4374l-.582 2a.4586.4586 0 01-.4395.3301H6.7324l1.7227-5.8223-1.9063.5801.42-1.3613 1.9101-.58 2.4219-8.1798a.4557.4557 0 01.4375-.334Z" }) + ] + } + ); +}); + +exports.default = SiLitecoin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.d.ts new file mode 100644 index 000000000..e968070d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A6A9AA"; +declare const SiLitecoin: IconType; +export { SiLitecoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.mjs new file mode 100644 index 000000000..58308e6bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLitecoin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A6A9AA"; +const SiLitecoin = React.forwardRef(function SiLitecoin2({ title = "Litecoin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1012 12A12 12 0 0012 0zm-.2617 3.6777h2.584a.3425.3425 0 01.33.4356l-2.0312 6.918 1.9062-.582-.4082 1.3847-1.9238.5605-1.248 4.213h6.6757a.3425.3425 0 01.3282.4374l-.582 2a.4586.4586 0 01-.4395.3301H6.7324l1.7227-5.8223-1.9063.5801.42-1.3613 1.9101-.58 2.4219-8.1798a.4557.4557 0 01.4375-.334Z" }) + ] + } + ); +}); + +export { SiLitecoin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.cjs new file mode 100644 index 000000000..a85ded8d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiLiteral = React__namespace.forwardRef(function SiLiteral2({ title = "Literal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.148 5.719.128-1.798 3.234.223-1.52-2.902 1.63-.836L16.176 3.4l1.966-2.75 1.495 1.05-1.916 2.665 3.212.221-.128 1.797-3.167-.217 1.498 2.878-1.628.836-1.578-3.017-1.99 2.771-1.495-1.05L14.36 5.94zm-8.129 9.513L5.197 0l2.569.355-1.817 12.708 5.978.825-.361 2.525zM20.981 21.7 4.328 24l-.36-2.524 16.652-2.3z" }) + ] + } + ); +}); + +exports.default = SiLiteral; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.d.ts new file mode 100644 index 000000000..6b0a801fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiLiteral: IconType; +export { SiLiteral as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.mjs new file mode 100644 index 000000000..ca45755f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLiteral.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiLiteral = React.forwardRef(function SiLiteral2({ title = "Literal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.148 5.719.128-1.798 3.234.223-1.52-2.902 1.63-.836L16.176 3.4l1.966-2.75 1.495 1.05-1.916 2.665 3.212.221-.128 1.797-3.167-.217 1.498 2.878-1.628.836-1.578-3.017-1.99 2.771-1.495-1.05L14.36 5.94zm-8.129 9.513L5.197 0l2.569.355-1.817 12.708 5.978.825-.361 2.525zM20.981 21.7 4.328 24l-.36-2.524 16.652-2.3z" }) + ] + } + ); +}); + +export { SiLiteral as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.cjs new file mode 100644 index 000000000..446de1ce8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A5BC"; +const SiLitiengine = React__namespace.forwardRef(function SiLitiengine2({ title = "LITIENGINE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 12.018 2.09 2.088L11.987 24l2.146-2.146-9.897-9.893 6.586-6.582-2.09-2.089Zm13.211 6.624 2.08 2.078 5.425-5.422-2.08-2.078zM9.85 2.151l6.606 6.602L9.9 15.306l2.134 2.133 6.555-6.553 3.258 3.257L24 11.993 12 0Zm-3.276 9.853 2.035 2.034 5.453-5.45-2.035-2.035z" }) + ] + } + ); +}); + +exports.default = SiLitiengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.d.ts new file mode 100644 index 000000000..3ea7ee255 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A5BC"; +declare const SiLitiengine: IconType; +export { SiLitiengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.mjs new file mode 100644 index 000000000..758d9d1d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLitiengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A5BC"; +const SiLitiengine = React.forwardRef(function SiLitiengine2({ title = "LITIENGINE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 12.018 2.09 2.088L11.987 24l2.146-2.146-9.897-9.893 6.586-6.582-2.09-2.089Zm13.211 6.624 2.08 2.078 5.425-5.422-2.08-2.078zM9.85 2.151l6.606 6.602L9.9 15.306l2.134 2.133 6.555-6.553 3.258 3.257L24 11.993 12 0Zm-3.276 9.853 2.035 2.034 5.453-5.45-2.035-2.035z" }) + ] + } + ); +}); + +export { SiLitiengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.cjs new file mode 100644 index 000000000..d21776122 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5100"; +const SiLivechat = React__namespace.forwardRef(function SiLivechat2({ title = "LiveChat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.849 14.91c-.24 2.94-2.73 5.22-5.7 5.19h-3.15l-6 3.9v-3.9l6-3.9h3.15c.93.03 1.71-.66 1.83-1.59.18-3 .18-6-.06-9-.06-.84-.75-1.47-1.56-1.53-2.04-.09-4.2-.18-6.36-.18s-4.32.06-6.36.21c-.84.06-1.5.69-1.56 1.53-.21 3-.24 6-.06 9 .09.93.9 1.59 1.83 1.56h3.15v3.9h-3.15a5.644 5.644 0 01-5.7-5.19c-.21-3.21-.18-6.39.06-9.6a5.57 5.57 0 015.19-5.1c2.1-.15 4.35-.21 6.6-.21s4.5.06 6.63.24a5.57 5.57 0 015.19 5.1c.21 3.18.24 6.39.03 9.57z" }) + ] + } + ); +}); + +exports.default = SiLivechat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.d.ts new file mode 100644 index 000000000..cf97fef52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5100"; +declare const SiLivechat: IconType; +export { SiLivechat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.mjs new file mode 100644 index 000000000..f4ed6a8c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivechat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5100"; +const SiLivechat = React.forwardRef(function SiLivechat2({ title = "LiveChat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.849 14.91c-.24 2.94-2.73 5.22-5.7 5.19h-3.15l-6 3.9v-3.9l6-3.9h3.15c.93.03 1.71-.66 1.83-1.59.18-3 .18-6-.06-9-.06-.84-.75-1.47-1.56-1.53-2.04-.09-4.2-.18-6.36-.18s-4.32.06-6.36.21c-.84.06-1.5.69-1.56 1.53-.21 3-.24 6-.06 9 .09.93.9 1.59 1.83 1.56h3.15v3.9h-3.15a5.644 5.644 0 01-5.7-5.19c-.21-3.21-.18-6.39.06-9.6a5.57 5.57 0 015.19-5.1c2.1-.15 4.35-.21 6.6-.21s4.5.06 6.63.24a5.57 5.57 0 015.19 5.1c.21 3.18.24 6.39.03 9.57z" }) + ] + } + ); +}); + +export { SiLivechat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.cjs new file mode 100644 index 000000000..d76ad0ad4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B0EA"; +const SiLivejournal = React__namespace.forwardRef(function SiLivejournal2({ title = "LiveJournal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.09 14.696c-1.512.664-2.726 1.885-3.381 3.399l4.27.883-.886-4.282h-.003zM2.475 8.317L0 5.85C1.125 3.237 3.216 1.14 5.823 0h.006l2.469 2.463c1.368-.591 2.876-.921 4.463-.921C18.967 1.542 24 6.569 24 12.771 24 18.973 18.967 24 12.761 24 6.551 24 1.52 18.976 1.52 12.771c0-1.591.355-3.081.952-4.451l9.143 9.114c1.125-2.613 3.218-4.71 5.823-5.85l-9.135-9.12h-.008c-2.606 1.14-4.695 3.24-5.823 5.85l.003.003z" }) + ] + } + ); +}); + +exports.default = SiLivejournal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.d.ts new file mode 100644 index 000000000..982690d94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B0EA"; +declare const SiLivejournal: IconType; +export { SiLivejournal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.mjs new file mode 100644 index 000000000..dea5ff905 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivejournal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B0EA"; +const SiLivejournal = React.forwardRef(function SiLivejournal2({ title = "LiveJournal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.09 14.696c-1.512.664-2.726 1.885-3.381 3.399l4.27.883-.886-4.282h-.003zM2.475 8.317L0 5.85C1.125 3.237 3.216 1.14 5.823 0h.006l2.469 2.463c1.368-.591 2.876-.921 4.463-.921C18.967 1.542 24 6.569 24 12.771 24 18.973 18.967 24 12.761 24 6.551 24 1.52 18.976 1.52 12.771c0-1.591.355-3.081.952-4.451l9.143 9.114c1.125-2.613 3.218-4.71 5.823-5.85l-9.135-9.12h-.008c-2.606 1.14-4.695 3.24-5.823 5.85l.003.003z" }) + ] + } + ); +}); + +export { SiLivejournal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.cjs new file mode 100644 index 000000000..939d38fdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiLivekit = React__namespace.forwardRef(function SiLivekit2({ title = "LiveKit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h14.4v-4.799h4.8V24H24v-4.8h-4.799v-4.8h-4.8v4.8H4.8V0H0zm14.4 14.4V9.602h4.801V4.8H24V0h-4.8v4.8h-4.8v4.8H9.6v4.8h4.8z" }) + ] + } + ); +}); + +exports.default = SiLivekit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.d.ts new file mode 100644 index 000000000..aad3239df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiLivekit: IconType; +export { SiLivekit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.mjs new file mode 100644 index 000000000..70e6798f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivekit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiLivekit = React.forwardRef(function SiLivekit2({ title = "LiveKit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h14.4v-4.799h4.8V24H24v-4.8h-4.799v-4.8h-4.8v4.8H4.8V0H0zm14.4 14.4V9.602h4.801V4.8H24V0h-4.8v4.8h-4.8v4.8H9.6v4.8h4.8z" }) + ] + } + ); +}); + +export { SiLivekit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.cjs new file mode 100644 index 000000000..40d1f38a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E56A6"; +const SiLivewire = React__namespace.forwardRef(function SiLivewire2({ title = "Livewire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001 0C6.1735 0 1.4482 4.9569 1.4482 11.0723c0 2.0888.5518 4.0417 1.5098 5.709.2492.2796.544.4843.9649.4843 1.3388 0 1.2678-2.0644 2.6074-2.0644 1.3395 0 1.4111 2.0644 2.75 2.0644 1.3388 0 1.2659-2.0644 2.6054-2.0644.5845 0 .9278.3967 1.2403.8398-.2213-.2055-.4794-.3476-.8203-.3476-1.1956 0-1.3063 1.6771-2.2012 2.1406v4.5097c0 .9145.7418 1.6563 1.6562 1.6563.9145 0 1.6563-.7418 1.6563-1.6563v-5.8925c.308.4332.647.8144 1.2207.8144 1.3388 0 1.266-2.0644 2.6055-2.0644.465 0 .7734.2552 1.039.58-.1294-.0533-.2695-.0878-.4297-.0878-1.1582 0-1.296 1.574-2.1171 2.0937v2.4356c0 .823.6672 1.4902 1.4902 1.4902s1.4902-.6672 1.4902-1.4902V16.371c.3234.4657.6684.8945 1.2774.8945.7955 0 1.093-.7287 1.4843-1.3203.6878-1.4704 1.0743-3.1245 1.0743-4.873C22.5518 4.9569 17.8284 0 12.001 0zm-.5664 2.877c2.8797 0 5.2148 2.7836 5.2148 5.8066 0 3.023-1.5455 5.1504-5.2148 5.1504-3.6693 0-5.2149-2.1274-5.2149-5.1504S8.5548 2.877 11.4346 2.877zM10.0322 4.537a1.9554 2.1583 0 00-1.955 2.1582 1.9554 2.1583 0 001.955 2.1582 1.9554 2.1583 0 001.9551-2.1582 1.9554 2.1583 0 00-1.955-2.1582zm-.3261.664a.9777.9961 0 01.9785.9962.9777.9961 0 01-.9785.996.9777.9961 0 01-.9766-.996.9777.9961 0 01.9766-.9961zM6.7568 15.6935c-1.0746 0-1.2724 1.3542-1.9511 1.9648v1.7813c0 .823.6672 1.4902 1.4902 1.4902s1.4902-.6672 1.4902-1.4902v-3.1817c-.2643-.3237-.5767-.5644-1.0293-.5644Z" }) + ] + } + ); +}); + +exports.default = SiLivewire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.d.ts new file mode 100644 index 000000000..454e322c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E56A6"; +declare const SiLivewire: IconType; +export { SiLivewire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.mjs new file mode 100644 index 000000000..c4e8b7cd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLivewire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E56A6"; +const SiLivewire = React.forwardRef(function SiLivewire2({ title = "Livewire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001 0C6.1735 0 1.4482 4.9569 1.4482 11.0723c0 2.0888.5518 4.0417 1.5098 5.709.2492.2796.544.4843.9649.4843 1.3388 0 1.2678-2.0644 2.6074-2.0644 1.3395 0 1.4111 2.0644 2.75 2.0644 1.3388 0 1.2659-2.0644 2.6054-2.0644.5845 0 .9278.3967 1.2403.8398-.2213-.2055-.4794-.3476-.8203-.3476-1.1956 0-1.3063 1.6771-2.2012 2.1406v4.5097c0 .9145.7418 1.6563 1.6562 1.6563.9145 0 1.6563-.7418 1.6563-1.6563v-5.8925c.308.4332.647.8144 1.2207.8144 1.3388 0 1.266-2.0644 2.6055-2.0644.465 0 .7734.2552 1.039.58-.1294-.0533-.2695-.0878-.4297-.0878-1.1582 0-1.296 1.574-2.1171 2.0937v2.4356c0 .823.6672 1.4902 1.4902 1.4902s1.4902-.6672 1.4902-1.4902V16.371c.3234.4657.6684.8945 1.2774.8945.7955 0 1.093-.7287 1.4843-1.3203.6878-1.4704 1.0743-3.1245 1.0743-4.873C22.5518 4.9569 17.8284 0 12.001 0zm-.5664 2.877c2.8797 0 5.2148 2.7836 5.2148 5.8066 0 3.023-1.5455 5.1504-5.2148 5.1504-3.6693 0-5.2149-2.1274-5.2149-5.1504S8.5548 2.877 11.4346 2.877zM10.0322 4.537a1.9554 2.1583 0 00-1.955 2.1582 1.9554 2.1583 0 001.955 2.1582 1.9554 2.1583 0 001.9551-2.1582 1.9554 2.1583 0 00-1.955-2.1582zm-.3261.664a.9777.9961 0 01.9785.9962.9777.9961 0 01-.9785.996.9777.9961 0 01-.9766-.996.9777.9961 0 01.9766-.9961zM6.7568 15.6935c-1.0746 0-1.2724 1.3542-1.9511 1.9648v1.7813c0 .823.6672 1.4902 1.4902 1.4902s1.4902-.6672 1.4902-1.4902v-3.1817c-.2643-.3237-.5767-.5644-1.0293-.5644Z" }) + ] + } + ); +}); + +export { SiLivewire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.cjs new file mode 100644 index 000000000..2ab890b89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#262D3A"; +const SiLlvm = React__namespace.forwardRef(function SiLlvm2({ title = "LLVM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.83 2.978l-.086.095a16.245 16.245 0 0 0-1.19 1.487 5.773 5.773 0 0 0-.446.719 2.88 2.88 0 0 0-.249.596.497.497 0 0 0-.033.177v.004a.297.297 0 0 0-.21.29.3.3 0 0 0 .187.284c.038.371.08 1.142.07 2.2l-.004.142a8.001 8.001 0 0 1-.434 2.327c-.016-.01-.03-.014-.04-.013-.03.003-.11.12-.19.251-.058.09-.119.195-.154.291a.37.37 0 0 0-.03.14.249.249 0 0 0 .01.088c.01.037.022.058.022.058a6.836 6.836 0 0 1-.003.007.144.144 0 0 0-.028.067l-.012.029a6.836 6.836 0 0 1-.257.527l-.077.142a6.836 6.836 0 0 1-.07.115.157.157 0 0 0-.022-.014.16.16 0 0 0-.113.024c-.047.035-.151.194-.498.368a1.384 1.384 0 0 1-.32.114 14.1 14.1 0 0 0 .248-2.07 5.072 5.072 0 0 0-.064-1.057c.003-.01.003-.017.003-.017l-.005.01a4.345 4.345 0 0 0-.104-.458 3.554 3.554 0 0 0-.724-1.385c-.631-.754-1.496-1.14-2.256-1.165l-.125-.002c0-.008 0-.015.002-.022.02-.098.024-.127-.087-.032a.872.872 0 0 0-.057.054 2.986 2.986 0 0 0-.146.007.716.716 0 0 1-.003-.108c.004-.076.024-.127-.087-.032a.553.553 0 0 0-.142.167c-.05.008-.08.015-.08.015l.045-.002-.047.008c-.016-.042-.053-.105-.048-.16.01-.118.043-.14-.037-.065-.098.09-.202.226-.22.3l-.096.03c-.018-.019-.074-.07-.086-.179-.013-.11-.012-.166-.08-.05a1.14 1.14 0 0 0-.13.348c-.032.015-.063.03-.093.046a.27.27 0 0 1-.057-.173c-.005-.144.04-.26-.067-.068a1.634 1.634 0 0 0-.146.406 1.6 1.6 0 0 0-.105.08 2.7 2.7 0 0 1-.008-.17c-.002-.143.021-.296-.067-.026a1.832 1.832 0 0 0-.07.321c-.404.385-.65.917-.644 1.572v.007a3.42 3.42 0 0 0 .014.33c.02.238.057.438.107.605-.095.13-.103.689-.01.818.073.104.496.35.586.399a.367.367 0 0 1 .094.093c.115.188.115.567.027.762-.107.238.107.285.285.32.178.036.415-.023.463-.118.047-.095-.154-.31-.237-.748-.084-.439.13-.474.13-.474s.095.024.237.249c.11.175.227.313.336.413a.727.727 0 0 1-.201.172c.12.005.24-.051.304-.087a.77.77 0 0 0 .07.045 1.015 1.015 0 0 1-.05.05.506.506 0 0 0 .109-.022.295.295 0 0 0 .084.022c.155.012.57-.368.57-.439 0-.018-.015-.04-.038-.063-.042-.045-.12-.1-.207-.177a1.03 1.03 0 0 1-.11-.116.723.723 0 0 1-.141-.374v-.01l-.003-.031s.007-.007.016-.02v.004l.004-.01c.052-.08.15-.379-.47-1.078a3.045 3.045 0 0 0-.924-.706c-.042-.472.15-.913.626-1.13l-.005.005.008-.006c.227-.102.517-.155.877-.136.69.036 1.22.36 1.59.845.514.712.738 1.78.575 2.856-.068.065-.055.075-.013.077a4.616 4.616 0 0 1-.055.273l-.027.015c-.123.074-.071.073 0 .092l-.006.02a3.98 3.98 0 0 1-.066.193.956.956 0 0 0-.087.03c-.135.053-.08.06-.012.09l.044.023a5.62 5.62 0 0 1-.101.237.746.746 0 0 0-.08.017c-.142.036-.088.05-.024.09a.52.52 0 0 1 .04.027 6.783 6.783 0 0 1-.107.214.76.76 0 0 0-.153.025c-.14.036-.087.05-.023.09.034.02.06.04.08.059a8.021 8.021 0 0 1-.094.165l-.023.036a.59.59 0 0 0-.206.024c-.142.036-.088.05-.024.09a.67.67 0 0 1 .104.079 8.61 8.61 0 0 1-.126.18.514.514 0 0 0-.23-.005c-.144.02-.092.04-.033.086.068.053.1.099.118.118l-.062.084c-.044-.058-.15-.124-.246-.193a.85.85 0 0 0-.29-.13c-.048 0-.2.268-1.017.197-.819-.071-.87-.15-.942-.15a.978.978 0 0 0-.228.059l-.034-.02a11.03 11.03 0 0 1-.972-.674c-.464-.37-.72-.647-.72-.647s.137-.125-.047-.284a3.32 3.32 0 0 0-.338-.277 2.157 2.157 0 0 0-.242-.166 3.57 3.57 0 0 1-.088-.127 11.485 11.485 0 0 1-.363-.628 10.455 10.455 0 0 1-.25-.527c-.16-.36-.27-.682-.346-.964a5.62 5.62 0 0 1-.148-.923 2.257 2.257 0 0 1 .004-.242.411.411 0 0 0 .158-.323.411.411 0 0 0-.358-.407c-.204-.427-.982-1.477-3.881-3.68l-.127-.097.005.004-.036-.027C7.067 6.599 7.644 7.587 7.795 8a.411.411 0 0 0-.027.033 18.69 18.69 0 0 0-.018-.013c.018 0 .025-.005.025-.005s-.672-.546-1.787-1.23c-1.118-.687-1.748-.849-1.88-.877l-.026-.006s.206.19.174.285c-.01.032-.168.022-.421.028a3.948 3.948 0 0 0-.725.07 4.1 4.1 0 0 0-1.567.63C.238 7.785 0 8.401 0 8.401s.55-.768 1.58-1.305c-.014.337-.047 1.97.445 4.12.53 2.32 1.53 4.487 1.614 4.665.004.178.016.272.016.272s.148-1.79.756-3.647c.175.283.758 1.117 2.075 2.096 1.628 1.21 2.37 1.536 2.4 1.548.001.157.005.24.005.24s.005-.1.018-.263a4.69 4.69 0 0 1 .552-.67 3.58 3.58 0 0 1 .54-.435c.032.11.063.204.093.276-.02-.097-.036-.19-.052-.282.107.01.538.066 1.206.393.343.168.609.395.798.595a.167.167 0 0 0-.014.006s.123.112.269.403a2.416 2.416 0 0 0-.73.084 2.913 2.913 0 0 0-.098-.19.484.484 0 0 0-.039-.134c-.027-.061-.095-.1-.164-.14a.397.397 0 0 0-.104-.073.225.225 0 0 1-.055-.073c-.084-.184-.798.012-.942.18-.175.204-.209.464-.14.608.021.045.07.082.138.11.002.22.137.75.404 1.133a4.964 4.964 0 0 1-.108-.666c-.009-.16 0-.274.015-.35.047.328.174.684.577 1.124-.248-.54-.22-.861-.195-1.143l.01-.044.005-.001c.036.263.142.534.482.963a.412.412 0 0 1-.014-.028l.014.021a1.626 1.626 0 0 1-.167-1.03l.008-.002c.046.03.091.07.134.126.128.172.188.349.212.47a.528.528 0 0 0 .067.383 18.33 18.33 0 0 1-.72.501c-.23.15-.49.313-.757.47-.14.08-.279.158-.414.23l-.135-.077h.002l-.008-.004c-.97-.559-1.69-.932-2.518-1.082-.93-.166-1.786.283-1.982 1.082a1.284 1.284 0 0 0 .552 1.38l.012.008c.013.01.026.017.04.026l.06.036h.002a2.1 2.1 0 0 0 .69.237l.028.005h.006a3.5 3.5 0 0 0 .412.044c.975.047 2.156-.408 3.323-.982.1.054.202.108.306.166 2.547 1.403 4.098 1.585 6.154.728-.502.151-1.208.356-2.094.344a.05.05 0 0 0-.02-.006v.006a5.46 5.46 0 0 1-.647-.05l-.03-.004v-.003a.267.267 0 0 0-.001.002 6.25 6.25 0 0 1-1.556-.436 7.792 7.792 0 0 1-.745-.362 57.065 57.065 0 0 1-1.006-.569c.348-.178.692-.363 1.026-.545.355-.189.672-.362.918-.5l.009-.004h.007s.083-.019.16-.043c.17-.052.41-.149.695-.283.028.117.095.215.195.253.235.091.407.027.522-.102l.018-.01.047-.037c.05-.03.107-.067.156-.09a1.14 1.14 0 0 1 .053-.022c.04-.01.078-.023.116-.037l.033-.01c-.145.297-.091.581-.091.581.043-.37.22-.608.392-.715.064-.027.13-.05.2-.067.064 0 .116.023.144.07.07.12.217.194.364.226.024.15-.045.404-.4.866l.09-.062.004-.003.072-.053c.143-.108.252-.21.334-.305a.97.97 0 0 0 .19-.305c.013.2-.042.507-.31 1.036 0 0 .317-.276.514-.63.006.191-.01.443-.063.785.345-.673.325-1.085.239-1.326l-.01-.036a.433.433 0 0 0-.01-.065l.042-.057c.118-.166-.048-.344-.154-.414-.06-.04-.2-.154-.454-.157-.225-.27-.51-.15-.958.145a1.297 1.297 0 0 1-.166.092.725.725 0 0 0-.055-.116c.16-.096.326-.2.494-.308.317-.207.553-.416.728-.615.51-.517.69-1.02 1.21-1.446h-.013l.06-.031c.854-.458 1.306-.547 1.338-.553l-.003.128.018-.125a1.795 1.795 0 0 1 .481.344 2.12 2.12 0 0 1 .362.487l.044.3s0-.116-.01-.33c.153-.151 1.02-1.043 1.724-2.466.694-1.404.944-2.523 1.017-2.924a18.188 18.188 0 0 1 .665 2.466s-.002-.133-.03-.374c.096-.336.515-1.872.626-3.756.1-1.68-.065-2.78-.14-3.173.648.536.995 1.306.995 1.306s-.04-.163-.188-.437l.02.027s-.236-.455-.644-.904a6.45 6.45 0 0 0-.157-.172c-.432-.46-.854-.617-1.17-.672a1.57 1.57 0 0 0-.308-.03h-.019c-.125-.003-.2.002-.207-.026-.02-.095.11-.285.11-.285s-.177.046-.554.33c-.23.167-.52.41-.853.76a13.689 13.689 0 0 0-.89.994l-.075.095a.203.203 0 0 0-.023-.017c.076-.33.362-1.117 1.788-3.111zM11.92 14.09a.351.351 0 0 1 .012.006zm-.263 2.606c.088.044.19.106.303.194h-.005a.484.484 0 0 0-.155.07.956.956 0 0 1-.126-.224zm-4.855 1.57c.132 0 .276.013.432.047l.02.005.017.004c.11.027.223.062.337.102l.057.021c.191.074.395.156.611.248.32.14.62.277.838.375l.183.088c-.22.106-.424.196-.577.261-1.014.416-1.83.536-2.338.391-.944-.269-.76-1.536.42-1.542z" }) + ] + } + ); +}); + +exports.default = SiLlvm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.d.ts new file mode 100644 index 000000000..cfc459923 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#262D3A"; +declare const SiLlvm: IconType; +export { SiLlvm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.mjs new file mode 100644 index 000000000..9e8f5faea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLlvm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#262D3A"; +const SiLlvm = React.forwardRef(function SiLlvm2({ title = "LLVM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.83 2.978l-.086.095a16.245 16.245 0 0 0-1.19 1.487 5.773 5.773 0 0 0-.446.719 2.88 2.88 0 0 0-.249.596.497.497 0 0 0-.033.177v.004a.297.297 0 0 0-.21.29.3.3 0 0 0 .187.284c.038.371.08 1.142.07 2.2l-.004.142a8.001 8.001 0 0 1-.434 2.327c-.016-.01-.03-.014-.04-.013-.03.003-.11.12-.19.251-.058.09-.119.195-.154.291a.37.37 0 0 0-.03.14.249.249 0 0 0 .01.088c.01.037.022.058.022.058a6.836 6.836 0 0 1-.003.007.144.144 0 0 0-.028.067l-.012.029a6.836 6.836 0 0 1-.257.527l-.077.142a6.836 6.836 0 0 1-.07.115.157.157 0 0 0-.022-.014.16.16 0 0 0-.113.024c-.047.035-.151.194-.498.368a1.384 1.384 0 0 1-.32.114 14.1 14.1 0 0 0 .248-2.07 5.072 5.072 0 0 0-.064-1.057c.003-.01.003-.017.003-.017l-.005.01a4.345 4.345 0 0 0-.104-.458 3.554 3.554 0 0 0-.724-1.385c-.631-.754-1.496-1.14-2.256-1.165l-.125-.002c0-.008 0-.015.002-.022.02-.098.024-.127-.087-.032a.872.872 0 0 0-.057.054 2.986 2.986 0 0 0-.146.007.716.716 0 0 1-.003-.108c.004-.076.024-.127-.087-.032a.553.553 0 0 0-.142.167c-.05.008-.08.015-.08.015l.045-.002-.047.008c-.016-.042-.053-.105-.048-.16.01-.118.043-.14-.037-.065-.098.09-.202.226-.22.3l-.096.03c-.018-.019-.074-.07-.086-.179-.013-.11-.012-.166-.08-.05a1.14 1.14 0 0 0-.13.348c-.032.015-.063.03-.093.046a.27.27 0 0 1-.057-.173c-.005-.144.04-.26-.067-.068a1.634 1.634 0 0 0-.146.406 1.6 1.6 0 0 0-.105.08 2.7 2.7 0 0 1-.008-.17c-.002-.143.021-.296-.067-.026a1.832 1.832 0 0 0-.07.321c-.404.385-.65.917-.644 1.572v.007a3.42 3.42 0 0 0 .014.33c.02.238.057.438.107.605-.095.13-.103.689-.01.818.073.104.496.35.586.399a.367.367 0 0 1 .094.093c.115.188.115.567.027.762-.107.238.107.285.285.32.178.036.415-.023.463-.118.047-.095-.154-.31-.237-.748-.084-.439.13-.474.13-.474s.095.024.237.249c.11.175.227.313.336.413a.727.727 0 0 1-.201.172c.12.005.24-.051.304-.087a.77.77 0 0 0 .07.045 1.015 1.015 0 0 1-.05.05.506.506 0 0 0 .109-.022.295.295 0 0 0 .084.022c.155.012.57-.368.57-.439 0-.018-.015-.04-.038-.063-.042-.045-.12-.1-.207-.177a1.03 1.03 0 0 1-.11-.116.723.723 0 0 1-.141-.374v-.01l-.003-.031s.007-.007.016-.02v.004l.004-.01c.052-.08.15-.379-.47-1.078a3.045 3.045 0 0 0-.924-.706c-.042-.472.15-.913.626-1.13l-.005.005.008-.006c.227-.102.517-.155.877-.136.69.036 1.22.36 1.59.845.514.712.738 1.78.575 2.856-.068.065-.055.075-.013.077a4.616 4.616 0 0 1-.055.273l-.027.015c-.123.074-.071.073 0 .092l-.006.02a3.98 3.98 0 0 1-.066.193.956.956 0 0 0-.087.03c-.135.053-.08.06-.012.09l.044.023a5.62 5.62 0 0 1-.101.237.746.746 0 0 0-.08.017c-.142.036-.088.05-.024.09a.52.52 0 0 1 .04.027 6.783 6.783 0 0 1-.107.214.76.76 0 0 0-.153.025c-.14.036-.087.05-.023.09.034.02.06.04.08.059a8.021 8.021 0 0 1-.094.165l-.023.036a.59.59 0 0 0-.206.024c-.142.036-.088.05-.024.09a.67.67 0 0 1 .104.079 8.61 8.61 0 0 1-.126.18.514.514 0 0 0-.23-.005c-.144.02-.092.04-.033.086.068.053.1.099.118.118l-.062.084c-.044-.058-.15-.124-.246-.193a.85.85 0 0 0-.29-.13c-.048 0-.2.268-1.017.197-.819-.071-.87-.15-.942-.15a.978.978 0 0 0-.228.059l-.034-.02a11.03 11.03 0 0 1-.972-.674c-.464-.37-.72-.647-.72-.647s.137-.125-.047-.284a3.32 3.32 0 0 0-.338-.277 2.157 2.157 0 0 0-.242-.166 3.57 3.57 0 0 1-.088-.127 11.485 11.485 0 0 1-.363-.628 10.455 10.455 0 0 1-.25-.527c-.16-.36-.27-.682-.346-.964a5.62 5.62 0 0 1-.148-.923 2.257 2.257 0 0 1 .004-.242.411.411 0 0 0 .158-.323.411.411 0 0 0-.358-.407c-.204-.427-.982-1.477-3.881-3.68l-.127-.097.005.004-.036-.027C7.067 6.599 7.644 7.587 7.795 8a.411.411 0 0 0-.027.033 18.69 18.69 0 0 0-.018-.013c.018 0 .025-.005.025-.005s-.672-.546-1.787-1.23c-1.118-.687-1.748-.849-1.88-.877l-.026-.006s.206.19.174.285c-.01.032-.168.022-.421.028a3.948 3.948 0 0 0-.725.07 4.1 4.1 0 0 0-1.567.63C.238 7.785 0 8.401 0 8.401s.55-.768 1.58-1.305c-.014.337-.047 1.97.445 4.12.53 2.32 1.53 4.487 1.614 4.665.004.178.016.272.016.272s.148-1.79.756-3.647c.175.283.758 1.117 2.075 2.096 1.628 1.21 2.37 1.536 2.4 1.548.001.157.005.24.005.24s.005-.1.018-.263a4.69 4.69 0 0 1 .552-.67 3.58 3.58 0 0 1 .54-.435c.032.11.063.204.093.276-.02-.097-.036-.19-.052-.282.107.01.538.066 1.206.393.343.168.609.395.798.595a.167.167 0 0 0-.014.006s.123.112.269.403a2.416 2.416 0 0 0-.73.084 2.913 2.913 0 0 0-.098-.19.484.484 0 0 0-.039-.134c-.027-.061-.095-.1-.164-.14a.397.397 0 0 0-.104-.073.225.225 0 0 1-.055-.073c-.084-.184-.798.012-.942.18-.175.204-.209.464-.14.608.021.045.07.082.138.11.002.22.137.75.404 1.133a4.964 4.964 0 0 1-.108-.666c-.009-.16 0-.274.015-.35.047.328.174.684.577 1.124-.248-.54-.22-.861-.195-1.143l.01-.044.005-.001c.036.263.142.534.482.963a.412.412 0 0 1-.014-.028l.014.021a1.626 1.626 0 0 1-.167-1.03l.008-.002c.046.03.091.07.134.126.128.172.188.349.212.47a.528.528 0 0 0 .067.383 18.33 18.33 0 0 1-.72.501c-.23.15-.49.313-.757.47-.14.08-.279.158-.414.23l-.135-.077h.002l-.008-.004c-.97-.559-1.69-.932-2.518-1.082-.93-.166-1.786.283-1.982 1.082a1.284 1.284 0 0 0 .552 1.38l.012.008c.013.01.026.017.04.026l.06.036h.002a2.1 2.1 0 0 0 .69.237l.028.005h.006a3.5 3.5 0 0 0 .412.044c.975.047 2.156-.408 3.323-.982.1.054.202.108.306.166 2.547 1.403 4.098 1.585 6.154.728-.502.151-1.208.356-2.094.344a.05.05 0 0 0-.02-.006v.006a5.46 5.46 0 0 1-.647-.05l-.03-.004v-.003a.267.267 0 0 0-.001.002 6.25 6.25 0 0 1-1.556-.436 7.792 7.792 0 0 1-.745-.362 57.065 57.065 0 0 1-1.006-.569c.348-.178.692-.363 1.026-.545.355-.189.672-.362.918-.5l.009-.004h.007s.083-.019.16-.043c.17-.052.41-.149.695-.283.028.117.095.215.195.253.235.091.407.027.522-.102l.018-.01.047-.037c.05-.03.107-.067.156-.09a1.14 1.14 0 0 1 .053-.022c.04-.01.078-.023.116-.037l.033-.01c-.145.297-.091.581-.091.581.043-.37.22-.608.392-.715.064-.027.13-.05.2-.067.064 0 .116.023.144.07.07.12.217.194.364.226.024.15-.045.404-.4.866l.09-.062.004-.003.072-.053c.143-.108.252-.21.334-.305a.97.97 0 0 0 .19-.305c.013.2-.042.507-.31 1.036 0 0 .317-.276.514-.63.006.191-.01.443-.063.785.345-.673.325-1.085.239-1.326l-.01-.036a.433.433 0 0 0-.01-.065l.042-.057c.118-.166-.048-.344-.154-.414-.06-.04-.2-.154-.454-.157-.225-.27-.51-.15-.958.145a1.297 1.297 0 0 1-.166.092.725.725 0 0 0-.055-.116c.16-.096.326-.2.494-.308.317-.207.553-.416.728-.615.51-.517.69-1.02 1.21-1.446h-.013l.06-.031c.854-.458 1.306-.547 1.338-.553l-.003.128.018-.125a1.795 1.795 0 0 1 .481.344 2.12 2.12 0 0 1 .362.487l.044.3s0-.116-.01-.33c.153-.151 1.02-1.043 1.724-2.466.694-1.404.944-2.523 1.017-2.924a18.188 18.188 0 0 1 .665 2.466s-.002-.133-.03-.374c.096-.336.515-1.872.626-3.756.1-1.68-.065-2.78-.14-3.173.648.536.995 1.306.995 1.306s-.04-.163-.188-.437l.02.027s-.236-.455-.644-.904a6.45 6.45 0 0 0-.157-.172c-.432-.46-.854-.617-1.17-.672a1.57 1.57 0 0 0-.308-.03h-.019c-.125-.003-.2.002-.207-.026-.02-.095.11-.285.11-.285s-.177.046-.554.33c-.23.167-.52.41-.853.76a13.689 13.689 0 0 0-.89.994l-.075.095a.203.203 0 0 0-.023-.017c.076-.33.362-1.117 1.788-3.111zM11.92 14.09a.351.351 0 0 1 .012.006zm-.263 2.606c.088.044.19.106.303.194h-.005a.484.484 0 0 0-.155.07.956.956 0 0 1-.126-.224zm-4.855 1.57c.132 0 .276.013.432.047l.02.005.017.004c.11.027.223.062.337.102l.057.021c.191.074.395.156.611.248.32.14.62.277.838.375l.183.088c-.22.106-.424.196-.577.261-1.014.416-1.83.536-2.338.391-.944-.269-.76-1.536.42-1.542z" }) + ] + } + ); +}); + +export { SiLlvm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.cjs new file mode 100644 index 000000000..2e4386f90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#10B146"; +const SiLmms = React__namespace.forwardRef(function SiLmms2({ title = "LMMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.714 0A1.71 1.71 0 000 1.714v20.572C0 23.236.765 24 1.714 24h20.572A1.71 1.71 0 0024 22.286V1.714A1.71 1.71 0 0022.286 0zM12 3l9 5.143v10.286l-3 1.714-3-1.714V15l3-1.714V9.857L12 6.43 6 9.857v3.429L9 15v3.429l-3 1.714-3-1.714V8.143Z" }) + ] + } + ); +}); + +exports.default = SiLmms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.d.ts new file mode 100644 index 000000000..c4d57725f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#10B146"; +declare const SiLmms: IconType; +export { SiLmms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.mjs new file mode 100644 index 000000000..2d11e2456 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLmms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#10B146"; +const SiLmms = React.forwardRef(function SiLmms2({ title = "LMMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.714 0A1.71 1.71 0 000 1.714v20.572C0 23.236.765 24 1.714 24h20.572A1.71 1.71 0 0024 22.286V1.714A1.71 1.71 0 0022.286 0zM12 3l9 5.143v10.286l-3 1.714-3-1.714V15l3-1.714V9.857L12 6.43 6 9.857v3.429L9 15v3.429l-3 1.714-3-1.714V8.143Z" }) + ] + } + ); +}); + +export { SiLmms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.cjs new file mode 100644 index 000000000..1f8e60414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AC130D"; +const SiLobsters = React__namespace.forwardRef(function SiLobsters2({ title = "Lobsters", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm5.414 4.02h7.86c.105 0 .15.014.15.134-.015.285 0 .556 0 .841v.12c-.21.015-.42 0-.615.03-.3.045-.6.089-.885.164-.525.165-.793.527-.853 1.022a5.09 5.09 0 0 0-.047.674v9.586c0 .405.046.808.091 1.198.045.435.33.72.736.87.345.135.718.167 1.078.182.945.03 1.877.014 2.792-.226 1.32-.33 2.204-1.156 2.64-2.46.134-.42.193-.855.298-1.29.015-.03.046-.09.076-.09h.99c-.03 1.8.03 3.599 0 5.399H5.25v-.944c0-.165 0-.149.15-.164.344-.03.689-.045 1.034-.105.69-.12 1.005-.467 1.11-1.172.03-.21.047-.434.047-.644V7.035c0-.27-.032-.54-.062-.795-.045-.465-.344-.749-.779-.914-.405-.15-.825-.166-1.245-.196h-.226v-.976c0-.105.03-.134.135-.134z" }) + ] + } + ); +}); + +exports.default = SiLobsters; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.d.ts new file mode 100644 index 000000000..f19d4008a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AC130D"; +declare const SiLobsters: IconType; +export { SiLobsters as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.mjs new file mode 100644 index 000000000..72404e693 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLobsters.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AC130D"; +const SiLobsters = React.forwardRef(function SiLobsters2({ title = "Lobsters", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm5.414 4.02h7.86c.105 0 .15.014.15.134-.015.285 0 .556 0 .841v.12c-.21.015-.42 0-.615.03-.3.045-.6.089-.885.164-.525.165-.793.527-.853 1.022a5.09 5.09 0 0 0-.047.674v9.586c0 .405.046.808.091 1.198.045.435.33.72.736.87.345.135.718.167 1.078.182.945.03 1.877.014 2.792-.226 1.32-.33 2.204-1.156 2.64-2.46.134-.42.193-.855.298-1.29.015-.03.046-.09.076-.09h.99c-.03 1.8.03 3.599 0 5.399H5.25v-.944c0-.165 0-.149.15-.164.344-.03.689-.045 1.034-.105.69-.12 1.005-.467 1.11-1.172.03-.21.047-.434.047-.644V7.035c0-.27-.032-.54-.062-.795-.045-.465-.344-.749-.779-.914-.405-.15-.825-.166-1.245-.196h-.226v-.976c0-.105.03-.134.135-.134z" }) + ] + } + ); +}); + +export { SiLobsters as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.cjs new file mode 100644 index 000000000..bbd962dc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#51BB7B"; +const SiLocal = React__namespace.forwardRef(function SiLocal2({ title = "Local", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m4.49 11.97 6.682-6.681a.638.638 0 0 0 .204-.476V.838a.7.7 0 0 0-.42-.624.68.68 0 0 0-.736.148L1.4 9.193c-.94.94-1.388 1.85-1.4 2.805s.434 1.85 1.36 2.774l8.858 8.86a.638.638 0 0 0 .476.203.39.39 0 0 0 .26-.082.68.68 0 0 0 .42-.626v-4a.692.692 0 0 0-.204-.476L4.489 11.97h.002zm-2.64 1.32c-.34-.45-.502-.872-.502-1.28.012-.57.34-1.182 1.007-1.85l7.66-7.662v2.057l-7.06 7.06A4.355 4.355 0 0 0 1.85 13.29zm8.166 8.205-6.451-6.45a.748.748 0 0 0-.094-.12c-.204-.207-.816-.819.094-1.961l6.45 6.449v2.082zM13.782.376a.668.668 0 0 0-.734-.15.68.68 0 0 0-.422.626v4.015c.004.18.076.35.204.476l6.681 6.68-6.681 6.682a.638.638 0 0 0-.204.476v3.96a.682.682 0 0 0 1.156.49l8.817-8.817c.94-.94 1.389-1.85 1.4-2.804.017-.952-.433-1.85-1.36-2.775L13.782.376zm.204 4.205V2.5l6.451 6.448c.026.044.06.084.094.122.204.204.816.817-.094 1.96l-6.449-6.45-.002.002zm7.647 9.267-7.66 7.661v-2.04l7.06-7.077a4.451 4.451 0 0 0 1.104-1.674c.34.45.504.872.504 1.28-.014.57-.34 1.17-1.008 1.85zm-4.626-1.294H6.9a.516.516 0 0 1-.516-.516v-.054c0-.286.23-.518.516-.518h10.11a.52.52 0 0 1 .518.518v.054a.526.526 0 0 1-.518.516h-.004zm-1.44-2.544v.056a.516.516 0 0 1-.52.516H8.842a.516.516 0 0 1-.518-.516v-.056c0-.285.232-.517.518-.517h6.205c.286 0 .516.232.516.517h.002zm-1.92-1.987v.054a.516.516 0 0 1-.517.518h-2.464a.516.516 0 0 1-.516-.518v-.054c0-.286.232-.516.516-.516h2.464a.508.508 0 0 1 .516.516zm-.517 7.443c.284 0 .516.232.516.518v.054a.516.516 0 0 1-.516.516h-2.464a.516.516 0 0 1-.516-.516v-.054c0-.286.232-.518.516-.518h2.464zm1.918-.912H8.843a.516.516 0 0 1-.518-.516v-.054a.52.52 0 0 1 .518-.518h6.205c.286 0 .516.232.516.518v.054a.516.516 0 0 1-.516.516z" }) + ] + } + ); +}); + +exports.default = SiLocal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.d.ts new file mode 100644 index 000000000..3548cc833 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#51BB7B"; +declare const SiLocal: IconType; +export { SiLocal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.mjs new file mode 100644 index 000000000..b71306971 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#51BB7B"; +const SiLocal = React.forwardRef(function SiLocal2({ title = "Local", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m4.49 11.97 6.682-6.681a.638.638 0 0 0 .204-.476V.838a.7.7 0 0 0-.42-.624.68.68 0 0 0-.736.148L1.4 9.193c-.94.94-1.388 1.85-1.4 2.805s.434 1.85 1.36 2.774l8.858 8.86a.638.638 0 0 0 .476.203.39.39 0 0 0 .26-.082.68.68 0 0 0 .42-.626v-4a.692.692 0 0 0-.204-.476L4.489 11.97h.002zm-2.64 1.32c-.34-.45-.502-.872-.502-1.28.012-.57.34-1.182 1.007-1.85l7.66-7.662v2.057l-7.06 7.06A4.355 4.355 0 0 0 1.85 13.29zm8.166 8.205-6.451-6.45a.748.748 0 0 0-.094-.12c-.204-.207-.816-.819.094-1.961l6.45 6.449v2.082zM13.782.376a.668.668 0 0 0-.734-.15.68.68 0 0 0-.422.626v4.015c.004.18.076.35.204.476l6.681 6.68-6.681 6.682a.638.638 0 0 0-.204.476v3.96a.682.682 0 0 0 1.156.49l8.817-8.817c.94-.94 1.389-1.85 1.4-2.804.017-.952-.433-1.85-1.36-2.775L13.782.376zm.204 4.205V2.5l6.451 6.448c.026.044.06.084.094.122.204.204.816.817-.094 1.96l-6.449-6.45-.002.002zm7.647 9.267-7.66 7.661v-2.04l7.06-7.077a4.451 4.451 0 0 0 1.104-1.674c.34.45.504.872.504 1.28-.014.57-.34 1.17-1.008 1.85zm-4.626-1.294H6.9a.516.516 0 0 1-.516-.516v-.054c0-.286.23-.518.516-.518h10.11a.52.52 0 0 1 .518.518v.054a.526.526 0 0 1-.518.516h-.004zm-1.44-2.544v.056a.516.516 0 0 1-.52.516H8.842a.516.516 0 0 1-.518-.516v-.056c0-.285.232-.517.518-.517h6.205c.286 0 .516.232.516.517h.002zm-1.92-1.987v.054a.516.516 0 0 1-.517.518h-2.464a.516.516 0 0 1-.516-.518v-.054c0-.286.232-.516.516-.516h2.464a.508.508 0 0 1 .516.516zm-.517 7.443c.284 0 .516.232.516.518v.054a.516.516 0 0 1-.516.516h-2.464a.516.516 0 0 1-.516-.516v-.054c0-.286.232-.518.516-.518h2.464zm1.918-.912H8.843a.516.516 0 0 1-.518-.516v-.054a.52.52 0 0 1 .518-.518h6.205c.286 0 .516.232.516.518v.054a.516.516 0 0 1-.516.516z" }) + ] + } + ); +}); + +export { SiLocal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.cjs new file mode 100644 index 000000000..01f93e4e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008080"; +const SiLocalsend = React__namespace.forwardRef(function SiLocalsend2({ title = "LocalSend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.538 12.015A6.458 6.458 0 0 1 12 5.561a6.458 6.458 0 0 1 6.462 6.454A6.458 6.458 0 0 1 12 18.389a6.458 6.458 0 0 1-6.461-6.374zM22.53 6.262a1.847 1.847 0 0 1-2.472-.42 10.219 10.219 0 0 0-1.877-1.875 1.843 1.843 0 0 1-.421-2.469 12.048 12.048 0 0 1 4.77 4.764zm-18.587-.42a1.847 1.847 0 0 1-2.472.42 12.048 12.048 0 0 1 4.77-4.764 1.843 1.843 0 0 1-.42 2.469 10.219 10.219 0 0 0-1.878 1.875ZM24 12.015c.001 1.14-.16 2.275-.48 3.37a1.844 1.844 0 0 1-1.452-2.043c.115-.88.115-1.773 0-2.654a1.844 1.844 0 0 1 1.451-2.043c.32 1.095.482 2.23.481 3.37zm-24 0c0-1.14.162-2.275.482-3.37a1.844 1.844 0 0 1 1.45 2.043c-.115.88-.115 1.773 0 2.654a1.844 1.844 0 0 1-1.45 2.043A11.971 11.971 0 0 1 0 12.014Zm17.76 10.518a1.843 1.843 0 0 1 .42-2.47 10.218 10.218 0 0 0 1.878-1.875 1.847 1.847 0 0 1 2.472-.42 12.048 12.048 0 0 1-4.77 4.765zm-11.519 0a12.048 12.048 0 0 1-4.77-4.764 1.847 1.847 0 0 1 2.472.42 10.219 10.219 0 0 0 1.877 1.874c.765.587.948 1.663.421 2.47zM12.001 24a12.008 12.008 0 0 1-3.375-.48 1.846 1.846 0 0 1 2.046-1.45c.882.115 1.775.115 2.657 0a1.846 1.846 0 0 1 2.046 1.449c-1.096.32-2.233.482-3.375.481Zm1.506-22.057c-.945-.136-1.888-.1-2.834-.013A1.848 1.848 0 0 1 8.626.48 12.013 12.013 0 0 1 11.999 0h.002c1.142-.001 2.277.16 3.373.48a1.845 1.845 0 0 1-1.867 1.463z" }) + ] + } + ); +}); + +exports.default = SiLocalsend; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.d.ts new file mode 100644 index 000000000..1fee78dc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008080"; +declare const SiLocalsend: IconType; +export { SiLocalsend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.mjs new file mode 100644 index 000000000..26caa0fa5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalsend.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008080"; +const SiLocalsend = React.forwardRef(function SiLocalsend2({ title = "LocalSend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.538 12.015A6.458 6.458 0 0 1 12 5.561a6.458 6.458 0 0 1 6.462 6.454A6.458 6.458 0 0 1 12 18.389a6.458 6.458 0 0 1-6.461-6.374zM22.53 6.262a1.847 1.847 0 0 1-2.472-.42 10.219 10.219 0 0 0-1.877-1.875 1.843 1.843 0 0 1-.421-2.469 12.048 12.048 0 0 1 4.77 4.764zm-18.587-.42a1.847 1.847 0 0 1-2.472.42 12.048 12.048 0 0 1 4.77-4.764 1.843 1.843 0 0 1-.42 2.469 10.219 10.219 0 0 0-1.878 1.875ZM24 12.015c.001 1.14-.16 2.275-.48 3.37a1.844 1.844 0 0 1-1.452-2.043c.115-.88.115-1.773 0-2.654a1.844 1.844 0 0 1 1.451-2.043c.32 1.095.482 2.23.481 3.37zm-24 0c0-1.14.162-2.275.482-3.37a1.844 1.844 0 0 1 1.45 2.043c-.115.88-.115 1.773 0 2.654a1.844 1.844 0 0 1-1.45 2.043A11.971 11.971 0 0 1 0 12.014Zm17.76 10.518a1.843 1.843 0 0 1 .42-2.47 10.218 10.218 0 0 0 1.878-1.875 1.847 1.847 0 0 1 2.472-.42 12.048 12.048 0 0 1-4.77 4.765zm-11.519 0a12.048 12.048 0 0 1-4.77-4.764 1.847 1.847 0 0 1 2.472.42 10.219 10.219 0 0 0 1.877 1.874c.765.587.948 1.663.421 2.47zM12.001 24a12.008 12.008 0 0 1-3.375-.48 1.846 1.846 0 0 1 2.046-1.45c.882.115 1.775.115 2.657 0a1.846 1.846 0 0 1 2.046 1.449c-1.096.32-2.233.482-3.375.481Zm1.506-22.057c-.945-.136-1.888-.1-2.834-.013A1.848 1.848 0 0 1 8.626.48 12.013 12.013 0 0 1 11.999 0h.002c1.142-.001 2.277.16 3.373.48a1.845 1.845 0 0 1-1.867 1.463z" }) + ] + } + ); +}); + +export { SiLocalsend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.cjs new file mode 100644 index 000000000..2903b741d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6023C0"; +const SiLocalxpose = React__namespace.forwardRef(function SiLocalxpose2({ title = "LocalXpose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.541 17.903a5.24 5.24 0 0 1-.568-2.433V8.354H.952a4.72 4.72 0 0 1 2.657-4.236L9.65.63a4.4 4.4 0 0 1 2.391-.629c.812 0 1.622.223 2.352.648 4.804 2.757 2.595 1.481 3.222 1.844 1.014.587 2.028 1.176 3.06 1.763a4.66 4.66 0 0 1 1.784 1.823c.406.75.568 1.56.568 2.434l.021 7.134c0 .892-.263 1.763-.73 2.493s-1.115 1.337-1.927 1.743L14.35 23.37a4.8 4.8 0 0 1-2.391.629 4.9 4.9 0 0 1-2.352-.648c-4.337-2.513-2.412-1.398-3.102-1.804-2.939-1.683-.223-.123-3.183-1.824a4.53 4.53 0 0 1-1.781-1.821m5.757 2.758 1.885 1.094.021-.022 1.014.587a3.6 3.6 0 0 0 1.762.507c.629 0 1.237-.162 1.784-.486l6.08-3.506h.04a3.77 3.77 0 0 0 1.439-1.316l.122-.202c.244-.446.385-.913.406-1.42v-7.38c0-.646-.122-1.297-.425-1.865a3.2 3.2 0 0 0-1.176-1.258l-.161-.101c-1.014-.586-2.028-1.175-3.042-1.743 0-.022-.021-.022-.04-.04h-.021c-.04-.021-.061-.04-.101-.061-.141-.082-.305-.183-.446-.263-.892-.507-1.762-1.014-2.635-1.521a3.7 3.7 0 0 0-1.784-.485c-.608 0-1.237.161-1.784.467l-6.08 3.506-.022.02a3.44 3.44 0 0 0-1.438 1.299l-.141.202a4 4 0 0 0-.406 1.42v7.378c0 .669.122 1.298.446 1.885.305.568.751 1.014 1.316 1.359 1.054.607 2.129 1.215 3.183 1.823.04.02.082.04.14.082 0 0 .022 0 .061.02v.02Zm3.448-11.21c0 .709-.587 1.277-1.277 1.277A1.27 1.27 0 0 1 8.193 9.45c0-.69-.568-1.258-1.258-1.258a1.27 1.27 0 0 1-1.277-1.277 1.268 1.268 0 0 1 2.535 0c0 .709.568 1.277 1.276 1.277.69 0 1.277-.568 1.277-1.277a1.268 1.268 0 0 1 2.535 0c0 .709-.568 1.277-1.277 1.277-.693 0-1.258.568-1.258 1.258m2.532 5.088a1.268 1.268 0 1 1 2.535 0c0 .709.568 1.277 1.276 1.277a1.268 1.268 0 0 1 0 2.534 1.27 1.27 0 0 1-1.276-1.276 1.268 1.268 0 0 0-2.535 0 1.268 1.268 0 1 1-1.277-1.258c.709 0 1.277-.568 1.277-1.277m-2.917-.892c.223.223.385.547.385.892 0 .709-.587 1.277-1.277 1.277-.708 0-1.276.568-1.276 1.258 0 .708-.568 1.276-1.258 1.276-.364 0-.669-.14-.914-.385a1.27 1.27 0 0 1-.363-.891c0-.69.568-1.258 1.277-1.258.69 0 1.258-.568 1.258-1.277s.568-1.277 1.276-1.277c.343 0 .666.14.892.385m2.532-2.553c.244.244.385.547.385.913 0 .69-.568 1.258-1.277 1.258-.69 0-1.258.568-1.258 1.277s-.586 1.276-1.276 1.276c-.345 0-.669-.14-.892-.385a1.2 1.2 0 0 1-.385-.891c0-.71.568-1.277 1.277-1.277.69 0 1.276-.568 1.276-1.258 0-.71.568-1.277 1.258-1.277.345-.002.669.14.892.364m2.556-2.535c.223.223.364.547.364.892 0 .709-.568 1.277-1.277 1.277-.69 0-1.258.568-1.258 1.276 0 .69-.568 1.258-1.277 1.258-.345 0-.669-.14-.891-.363a1.27 1.27 0 0 1-.364-.892c0-.71.568-1.277 1.258-1.277.709 0 1.277-.568 1.277-1.276 0-.691.568-1.26 1.258-1.26.361-.001.666.142.91.365m2.532-2.535c.223.223.364.547.364.892 0 .709-.568 1.277-1.258 1.277-.709 0-1.277.568-1.277 1.258 0 .709-.568 1.277-1.277 1.277a1.27 1.27 0 0 1-.891-.364 1.32 1.32 0 0 1-.364-.913c0-.69.568-1.258 1.258-1.258.709 0 1.277-.568 1.277-1.277 0-.69.568-1.258 1.276-1.258.345.003.669.143.892.366" }) + ] + } + ); +}); + +exports.default = SiLocalxpose; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.d.ts new file mode 100644 index 000000000..ec6dd35dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6023C0"; +declare const SiLocalxpose: IconType; +export { SiLocalxpose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.mjs new file mode 100644 index 000000000..33efc653b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLocalxpose.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6023C0"; +const SiLocalxpose = React.forwardRef(function SiLocalxpose2({ title = "LocalXpose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.541 17.903a5.24 5.24 0 0 1-.568-2.433V8.354H.952a4.72 4.72 0 0 1 2.657-4.236L9.65.63a4.4 4.4 0 0 1 2.391-.629c.812 0 1.622.223 2.352.648 4.804 2.757 2.595 1.481 3.222 1.844 1.014.587 2.028 1.176 3.06 1.763a4.66 4.66 0 0 1 1.784 1.823c.406.75.568 1.56.568 2.434l.021 7.134c0 .892-.263 1.763-.73 2.493s-1.115 1.337-1.927 1.743L14.35 23.37a4.8 4.8 0 0 1-2.391.629 4.9 4.9 0 0 1-2.352-.648c-4.337-2.513-2.412-1.398-3.102-1.804-2.939-1.683-.223-.123-3.183-1.824a4.53 4.53 0 0 1-1.781-1.821m5.757 2.758 1.885 1.094.021-.022 1.014.587a3.6 3.6 0 0 0 1.762.507c.629 0 1.237-.162 1.784-.486l6.08-3.506h.04a3.77 3.77 0 0 0 1.439-1.316l.122-.202c.244-.446.385-.913.406-1.42v-7.38c0-.646-.122-1.297-.425-1.865a3.2 3.2 0 0 0-1.176-1.258l-.161-.101c-1.014-.586-2.028-1.175-3.042-1.743 0-.022-.021-.022-.04-.04h-.021c-.04-.021-.061-.04-.101-.061-.141-.082-.305-.183-.446-.263-.892-.507-1.762-1.014-2.635-1.521a3.7 3.7 0 0 0-1.784-.485c-.608 0-1.237.161-1.784.467l-6.08 3.506-.022.02a3.44 3.44 0 0 0-1.438 1.299l-.141.202a4 4 0 0 0-.406 1.42v7.378c0 .669.122 1.298.446 1.885.305.568.751 1.014 1.316 1.359 1.054.607 2.129 1.215 3.183 1.823.04.02.082.04.14.082 0 0 .022 0 .061.02v.02Zm3.448-11.21c0 .709-.587 1.277-1.277 1.277A1.27 1.27 0 0 1 8.193 9.45c0-.69-.568-1.258-1.258-1.258a1.27 1.27 0 0 1-1.277-1.277 1.268 1.268 0 0 1 2.535 0c0 .709.568 1.277 1.276 1.277.69 0 1.277-.568 1.277-1.277a1.268 1.268 0 0 1 2.535 0c0 .709-.568 1.277-1.277 1.277-.693 0-1.258.568-1.258 1.258m2.532 5.088a1.268 1.268 0 1 1 2.535 0c0 .709.568 1.277 1.276 1.277a1.268 1.268 0 0 1 0 2.534 1.27 1.27 0 0 1-1.276-1.276 1.268 1.268 0 0 0-2.535 0 1.268 1.268 0 1 1-1.277-1.258c.709 0 1.277-.568 1.277-1.277m-2.917-.892c.223.223.385.547.385.892 0 .709-.587 1.277-1.277 1.277-.708 0-1.276.568-1.276 1.258 0 .708-.568 1.276-1.258 1.276-.364 0-.669-.14-.914-.385a1.27 1.27 0 0 1-.363-.891c0-.69.568-1.258 1.277-1.258.69 0 1.258-.568 1.258-1.277s.568-1.277 1.276-1.277c.343 0 .666.14.892.385m2.532-2.553c.244.244.385.547.385.913 0 .69-.568 1.258-1.277 1.258-.69 0-1.258.568-1.258 1.277s-.586 1.276-1.276 1.276c-.345 0-.669-.14-.892-.385a1.2 1.2 0 0 1-.385-.891c0-.71.568-1.277 1.277-1.277.69 0 1.276-.568 1.276-1.258 0-.71.568-1.277 1.258-1.277.345-.002.669.14.892.364m2.556-2.535c.223.223.364.547.364.892 0 .709-.568 1.277-1.277 1.277-.69 0-1.258.568-1.258 1.276 0 .69-.568 1.258-1.277 1.258-.345 0-.669-.14-.891-.363a1.27 1.27 0 0 1-.364-.892c0-.71.568-1.277 1.258-1.277.709 0 1.277-.568 1.277-1.276 0-.691.568-1.26 1.258-1.26.361-.001.666.142.91.365m2.532-2.535c.223.223.364.547.364.892 0 .709-.568 1.277-1.258 1.277-.709 0-1.277.568-1.277 1.258 0 .709-.568 1.277-1.277 1.277a1.27 1.27 0 0 1-.891-.364 1.32 1.32 0 0 1-.364-.913c0-.69.568-1.258 1.258-1.258.709 0 1.277-.568 1.277-1.277 0-.69.568-1.258 1.276-1.258.345.003.669.143.892.366" }) + ] + } + ); +}); + +export { SiLocalxpose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.cjs new file mode 100644 index 000000000..778eeacb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3492FF"; +const SiLodash = React__namespace.forwardRef(function SiLodash2({ title = "Lodash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 20.253h24v2.542h-24zm18.061-15.041.223.031c1.933-.071 3.885 1.006 4.882 2.674.844 1.566.976 3.458.712 5.187-.204 1.657-1.149 3.234-2.644 4.027-2.177 1.139-5.085 1.017-7.017-.59-1.994-1.942-2.461-5.136-1.444-7.678.711-2.207 3-3.661 5.288-3.63zm.234 1.8h-.183c-1.424-.03-2.777.915-3.285 2.237-.732 1.831-.732 4.17.691 5.695 1.17 1.434 3.458 1.597 4.882.438 1.525-1.312 1.83-3.59 1.322-5.451-.275-1.648-1.78-2.929-3.458-2.929zm-18.295-5.807h2.237v14.847h8.848v1.831h-11.085z" }) + ] + } + ); +}); + +exports.default = SiLodash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.d.ts new file mode 100644 index 000000000..55a2bc348 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3492FF"; +declare const SiLodash: IconType; +export { SiLodash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.mjs new file mode 100644 index 000000000..dbba1ae11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLodash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3492FF"; +const SiLodash = React.forwardRef(function SiLodash2({ title = "Lodash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 20.253h24v2.542h-24zm18.061-15.041.223.031c1.933-.071 3.885 1.006 4.882 2.674.844 1.566.976 3.458.712 5.187-.204 1.657-1.149 3.234-2.644 4.027-2.177 1.139-5.085 1.017-7.017-.59-1.994-1.942-2.461-5.136-1.444-7.678.711-2.207 3-3.661 5.288-3.63zm.234 1.8h-.183c-1.424-.03-2.777.915-3.285 2.237-.732 1.831-.732 4.17.691 5.695 1.17 1.434 3.458 1.597 4.882.438 1.525-1.312 1.83-3.59 1.322-5.451-.275-1.648-1.78-2.929-3.458-2.929zm-18.295-5.807h2.237v14.847h8.848v1.831h-11.085z" }) + ] + } + ); +}); + +export { SiLodash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.cjs new file mode 100644 index 000000000..c4ab8bbd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#45B6F2"; +const SiLogmein = React__namespace.forwardRef(function SiLogmein2({ title = "LogMeIn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12 12-5.373 12-12S18.628 0 12 0zM5.379 4.768h1.74c.147 0 .288.004.424.01a.376.376 0 01.303.152.684.684 0 01.11.364c.007.149.01.31.01.484v12.093c0 .176.004.37.01.587.006.216-.024.377-.091.485-.054.094-.174.17-.363.222a.754.754 0 01-.304.02 2.533 2.533 0 00-.323-.02H5.702c-.149 0-.286-.006-.415-.02a.572.572 0 01-.314-.12.48.48 0 01-.12-.304 4.164 4.164 0 01-.02-.424V6.203c0-.188-.004-.41-.01-.667-.007-.255.024-.437.09-.545a.595.595 0 01.264-.202c.04 0 .078-.004.11-.01a.536.536 0 01.092-.011zm10.527 3.687c.201-.008.386-.001.548.019.565.032 1.053.144 1.464.338.539.257.963.634 1.273 1.133.095.148.168.307.222.475.055.169.11.34.164.515.026.108.042.21.05.304.005.094.023.19.05.284 0 .08.007.134.02.16.027.19.04.385.04.587v5.661c0 .257-.004.503-.01.738-.008.237-.105.39-.294.456a.91.91 0 01-.283.04h-1.415c-.163 0-.307-.01-.435-.03a.418.418 0 01-.293-.173.613.613 0 01-.09-.313 8.825 8.825 0 01-.01-.416v-4.426c0-.5-.02-.961-.06-1.386-.042-.424-.163-.785-.365-1.082a1.427 1.427 0 00-.668-.51c-.186-.095-.488-.156-.827-.156-.397 0-.74.083-.912.207-.139.057-.26.124-.362.197-.433.31-.688.762-.77 1.354-.08.594-.123 1.261-.123 2.002v4.125c0 .121-.02.223-.06.304a.42.42 0 01-.323.262c-.149.027-.33.04-.545.04H10.88c-.15 0-.297-.006-.446-.02-.148-.013-.256-.06-.323-.142-.095-.12-.139-.294-.131-.525.006-.23.009-.446.009-.647V9.6c0-.147.004-.282.01-.403a.507.507 0 01.112-.305.24.24 0 01.132-.09c.06-.02.124-.037.191-.05h.102c.068-.014.138-.022.212-.022h1.06c.109 0 .214.005.316.012.1.006.19.023.271.05.095.04.16.1.193.181.03.072.03.147.054.24.056.23.118.486.291.508.08.01.159-.025.224-.09.031-.022.114-.11.14-.144.095-.114.28-.278.388-.346.078-.058.142-.1.202-.136.192-.134.483-.261.832-.36.014-.006.028-.012.042-.016.112-.036.225-.062.342-.077l.159-.029c.224-.038.442-.06.643-.068Z" }) + ] + } + ); +}); + +exports.default = SiLogmein; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.d.ts new file mode 100644 index 000000000..9884e971d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#45B6F2"; +declare const SiLogmein: IconType; +export { SiLogmein as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.mjs new file mode 100644 index 000000000..8f5d4dc14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogmein.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#45B6F2"; +const SiLogmein = React.forwardRef(function SiLogmein2({ title = "LogMeIn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.373 0 12s5.372 12 12 12 12-5.373 12-12S18.628 0 12 0zM5.379 4.768h1.74c.147 0 .288.004.424.01a.376.376 0 01.303.152.684.684 0 01.11.364c.007.149.01.31.01.484v12.093c0 .176.004.37.01.587.006.216-.024.377-.091.485-.054.094-.174.17-.363.222a.754.754 0 01-.304.02 2.533 2.533 0 00-.323-.02H5.702c-.149 0-.286-.006-.415-.02a.572.572 0 01-.314-.12.48.48 0 01-.12-.304 4.164 4.164 0 01-.02-.424V6.203c0-.188-.004-.41-.01-.667-.007-.255.024-.437.09-.545a.595.595 0 01.264-.202c.04 0 .078-.004.11-.01a.536.536 0 01.092-.011zm10.527 3.687c.201-.008.386-.001.548.019.565.032 1.053.144 1.464.338.539.257.963.634 1.273 1.133.095.148.168.307.222.475.055.169.11.34.164.515.026.108.042.21.05.304.005.094.023.19.05.284 0 .08.007.134.02.16.027.19.04.385.04.587v5.661c0 .257-.004.503-.01.738-.008.237-.105.39-.294.456a.91.91 0 01-.283.04h-1.415c-.163 0-.307-.01-.435-.03a.418.418 0 01-.293-.173.613.613 0 01-.09-.313 8.825 8.825 0 01-.01-.416v-4.426c0-.5-.02-.961-.06-1.386-.042-.424-.163-.785-.365-1.082a1.427 1.427 0 00-.668-.51c-.186-.095-.488-.156-.827-.156-.397 0-.74.083-.912.207-.139.057-.26.124-.362.197-.433.31-.688.762-.77 1.354-.08.594-.123 1.261-.123 2.002v4.125c0 .121-.02.223-.06.304a.42.42 0 01-.323.262c-.149.027-.33.04-.545.04H10.88c-.15 0-.297-.006-.446-.02-.148-.013-.256-.06-.323-.142-.095-.12-.139-.294-.131-.525.006-.23.009-.446.009-.647V9.6c0-.147.004-.282.01-.403a.507.507 0 01.112-.305.24.24 0 01.132-.09c.06-.02.124-.037.191-.05h.102c.068-.014.138-.022.212-.022h1.06c.109 0 .214.005.316.012.1.006.19.023.271.05.095.04.16.1.193.181.03.072.03.147.054.24.056.23.118.486.291.508.08.01.159-.025.224-.09.031-.022.114-.11.14-.144.095-.114.28-.278.388-.346.078-.058.142-.1.202-.136.192-.134.483-.261.832-.36.014-.006.028-.012.042-.016.112-.036.225-.062.342-.077l.159-.029c.224-.038.442-.06.643-.068Z" }) + ] + } + ); +}); + +export { SiLogmein as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.cjs new file mode 100644 index 000000000..44d59cd4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#85C8C8"; +const SiLogseq = React__namespace.forwardRef(function SiLogseq2({ title = "Logseq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.3 9.838c-2.677-1.366-5.467-1.56-8.316-.607-1.738.58-3.197 1.58-4.267 3.088-1.031 1.452-1.45 3.071-1.184 4.837.268 1.781 1.164 3.228 2.505 4.4C9.96 23.231 12.24 23.942 15.092 24c.41-.053 1.157-.103 1.883-.255 2.004-.418 3.754-1.325 5.08-2.915 1.621-1.942 2.108-4.148 1.272-6.562-.704-2.034-2.138-3.467-4.027-4.43ZM7.515 6.295c.507-2.162-.88-4.664-2.988-5.37-1.106-.37-2.156-.267-3.075.492C.61 2.114.294 3.064.271 4.146c.009.135.016.285.029.435.01.102.021.205.042.305.351 1.703 1.262 2.98 2.9 3.636 1.912.766 3.808-.244 4.273-2.227Zm4.064-1.146c1.075.377 2.152.31 3.22-.033.94-.3 1.755-.793 2.341-1.609.803-1.117.5-2.387-.717-3.027-.6-.317-1.246-.438-1.927-.48-.47.076-.95.117-1.41.234-1.068.27-2.002.781-2.653 1.7-.495.697-.64 1.45-.174 2.227.303.504.779.799 1.32.988Z" }) + ] + } + ); +}); + +exports.default = SiLogseq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.d.ts new file mode 100644 index 000000000..3f1b24e5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#85C8C8"; +declare const SiLogseq: IconType; +export { SiLogseq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.mjs new file mode 100644 index 000000000..aba4815b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogseq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#85C8C8"; +const SiLogseq = React.forwardRef(function SiLogseq2({ title = "Logseq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.3 9.838c-2.677-1.366-5.467-1.56-8.316-.607-1.738.58-3.197 1.58-4.267 3.088-1.031 1.452-1.45 3.071-1.184 4.837.268 1.781 1.164 3.228 2.505 4.4C9.96 23.231 12.24 23.942 15.092 24c.41-.053 1.157-.103 1.883-.255 2.004-.418 3.754-1.325 5.08-2.915 1.621-1.942 2.108-4.148 1.272-6.562-.704-2.034-2.138-3.467-4.027-4.43ZM7.515 6.295c.507-2.162-.88-4.664-2.988-5.37-1.106-.37-2.156-.267-3.075.492C.61 2.114.294 3.064.271 4.146c.009.135.016.285.029.435.01.102.021.205.042.305.351 1.703 1.262 2.98 2.9 3.636 1.912.766 3.808-.244 4.273-2.227Zm4.064-1.146c1.075.377 2.152.31 3.22-.033.94-.3 1.755-.793 2.341-1.609.803-1.117.5-2.387-.717-3.027-.6-.317-1.246-.438-1.927-.48-.47.076-.95.117-1.41.234-1.068.27-2.002.781-2.653 1.7-.495.697-.64 1.45-.174 2.227.303.504.779.799 1.32.988Z" }) + ] + } + ); +}); + +export { SiLogseq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.cjs new file mode 100644 index 000000000..38ef4d610 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005571"; +const SiLogstash = React__namespace.forwardRef(function SiLogstash2({ title = "Logstash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.745 24h8.291v-9.164h-8.29zm-2.618 0h.437v-9.164h-9.6A9.163 9.163 0 0011.127 24m.438-9.164h-9.6V0h.873a8.727 8.727 0 018.727 8.727z" }) + ] + } + ); +}); + +exports.default = SiLogstash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.d.ts new file mode 100644 index 000000000..502701703 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005571"; +declare const SiLogstash: IconType; +export { SiLogstash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.mjs new file mode 100644 index 000000000..33bcfe05c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLogstash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005571"; +const SiLogstash = React.forwardRef(function SiLogstash2({ title = "Logstash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.745 24h8.291v-9.164h-8.29zm-2.618 0h.437v-9.164h-9.6A9.163 9.163 0 0011.127 24m.438-9.164h-9.6V0h.873a8.727 8.727 0 018.727 8.727z" }) + ] + } + ); +}); + +export { SiLogstash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.cjs new file mode 100644 index 000000000..34e85c167 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiLooker = React__namespace.forwardRef(function SiLooker2({ title = "Looker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9475 0c-1.1598.0021-2.0982.944-2.096 2.1038a2.1 2.1 0 00.356 1.166l.895-.8959a.884.884 0 11.565.564l-.895.895c.9593.6478 2.2621.3953 2.91-.564.6478-.9593.3953-2.262-.564-2.91A2.096 2.096 0 0011.9475 0zm-.835 6.1128a3.2629 3.2629 0 00-.653-1.965l-1.164 1.162a1.667 1.667 0 01-.318 2.012l.632 1.5449a3.2819 3.2819 0 001.503-2.754zm-3.2499 1.666h-.03c-.9217.0009-1.6697-.7455-1.6707-1.6673-.001-.9217.7454-1.6697 1.6672-1.6707a1.669 1.669 0 01.9195.275l1.152-1.152c-1.4069-1.141-3.4724-.9257-4.6135.4811s-.9257 3.4723.481 4.6135a3.2799 3.2799 0 002.7275.6652l-.633-1.5439v-.001zm4.1279 1.3359c-.728 0-1.452.106-2.15.315l.922 2.2519c2.6872-.6819 5.4184.9438 6.1002 3.631.6818 2.6873-.9439 5.4184-3.6311 6.1002s-5.4184-.9439-6.1002-3.631c-.5682-2.2394.4655-4.5774 2.5041-5.6643l-.91-2.2449c-3.6908 1.808-5.2173 6.2657-3.4093 9.9567l.0005.001c1.808 3.6909 6.2657 5.2173 9.9567 3.4093l.001-.0005c3.6913-1.8071 5.2187-6.2645 3.4116-9.9558a7.4417 7.4417 0 00-6.6865-4.1696h-.008l-.001.001z" }) + ] + } + ); +}); + +exports.default = SiLooker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.d.ts new file mode 100644 index 000000000..1828c5189 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiLooker: IconType; +export { SiLooker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.mjs new file mode 100644 index 000000000..c54b53caa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLooker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiLooker = React.forwardRef(function SiLooker2({ title = "Looker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9475 0c-1.1598.0021-2.0982.944-2.096 2.1038a2.1 2.1 0 00.356 1.166l.895-.8959a.884.884 0 11.565.564l-.895.895c.9593.6478 2.2621.3953 2.91-.564.6478-.9593.3953-2.262-.564-2.91A2.096 2.096 0 0011.9475 0zm-.835 6.1128a3.2629 3.2629 0 00-.653-1.965l-1.164 1.162a1.667 1.667 0 01-.318 2.012l.632 1.5449a3.2819 3.2819 0 001.503-2.754zm-3.2499 1.666h-.03c-.9217.0009-1.6697-.7455-1.6707-1.6673-.001-.9217.7454-1.6697 1.6672-1.6707a1.669 1.669 0 01.9195.275l1.152-1.152c-1.4069-1.141-3.4724-.9257-4.6135.4811s-.9257 3.4723.481 4.6135a3.2799 3.2799 0 002.7275.6652l-.633-1.5439v-.001zm4.1279 1.3359c-.728 0-1.452.106-2.15.315l.922 2.2519c2.6872-.6819 5.4184.9438 6.1002 3.631.6818 2.6873-.9439 5.4184-3.6311 6.1002s-5.4184-.9439-6.1002-3.631c-.5682-2.2394.4655-4.5774 2.5041-5.6643l-.91-2.2449c-3.6908 1.808-5.2173 6.2657-3.4093 9.9567l.0005.001c1.808 3.6909 6.2657 5.2173 9.9567 3.4093l.001-.0005c3.6913-1.8071 5.2187-6.2645 3.4116-9.9558a7.4417 7.4417 0 00-6.6865-4.1696h-.008l-.001.001z" }) + ] + } + ); +}); + +export { SiLooker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.cjs new file mode 100644 index 000000000..4763f797a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#625DF5"; +const SiLoom = React__namespace.forwardRef(function SiLoom2({ title = "Loom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.665h-7.018l6.078-3.509-1.335-2.312-6.078 3.509 3.508-6.077L16.843.94l-3.508 6.077V0h-2.67v7.018L7.156.94 4.844 2.275l3.509 6.077-6.078-3.508L.94 7.156l6.078 3.509H0v2.67h7.017L.94 16.844l1.335 2.313 6.077-3.508-3.509 6.077 2.312 1.335 3.509-6.078V24h2.67v-7.017l3.508 6.077 2.312-1.335-3.509-6.078 6.078 3.509 1.335-2.313-6.077-3.508h7.017v-2.67H24zm-12 4.966a3.645 3.645 0 1 1 0-7.29 3.645 3.645 0 0 1 0 7.29z" }) + ] + } + ); +}); + +exports.default = SiLoom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.d.ts new file mode 100644 index 000000000..b7083cb21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#625DF5"; +declare const SiLoom: IconType; +export { SiLoom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.mjs new file mode 100644 index 000000000..e49f97dec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#625DF5"; +const SiLoom = React.forwardRef(function SiLoom2({ title = "Loom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.665h-7.018l6.078-3.509-1.335-2.312-6.078 3.509 3.508-6.077L16.843.94l-3.508 6.077V0h-2.67v7.018L7.156.94 4.844 2.275l3.509 6.077-6.078-3.508L.94 7.156l6.078 3.509H0v2.67h7.017L.94 16.844l1.335 2.313 6.077-3.508-3.509 6.077 2.312 1.335 3.509-6.078V24h2.67v-7.017l3.508 6.077 2.312-1.335-3.509-6.078 6.078 3.509 1.335-2.313-6.077-3.508h7.017v-2.67H24zm-12 4.966a3.645 3.645 0 1 1 0-7.29 3.645 3.645 0 0 1 0 7.29z" }) + ] + } + ); +}); + +export { SiLoom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.cjs new file mode 100644 index 000000000..a98a94f59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F29400"; +const SiLoop = React__namespace.forwardRef(function SiLoop2({ title = "Loop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,0C5.371,0,0,5.371,0,12s5.371,12,12,12s12-5.371,12-12C24.011,5.371,18.629,0,12,0z M12.7,22.611 C6.837,22.611,2.089,17.863,2.089,12S6.837,1.389,12.7,1.389S23.311,6.137,23.311,12S18.563,22.611,12.7,22.611z M7.045,3.413 c-4.747,2.735-6.366,8.795-3.632,13.542c2.735,4.737,8.806,6.366,13.542,3.632c4.747-2.735,6.366-8.806,3.632-13.542 C17.852,2.297,11.792,0.678,7.045,3.413z M16.868,19.034c-4.08,2.352-9.287,0.952-11.639-3.118 c-2.352-4.08-0.952-9.287,3.118-11.639c4.08-2.352,9.287-0.952,11.639,3.118C22.337,11.464,20.948,16.682,16.868,19.034z M5.229,8.084c-2.166,3.741-0.875,8.532,2.866,10.687c3.741,2.166,8.532,0.875,10.698-2.866s0.875-8.532-2.866-10.687 C12.175,3.063,7.384,4.343,5.229,8.084z M18.071,14.702c-1.827,3.161-5.863,4.244-9.025,2.417 c-3.161-1.827-4.244-5.863-2.418-9.025s5.863-4.244,9.025-2.418C18.815,7.493,19.898,11.541,18.071,14.702z M6.093,12 c0,3.271,2.647,5.918,5.918,5.918s5.918-2.647,5.918-5.918s-2.647-5.918-5.918-5.918C8.74,6.082,6.093,8.729,6.093,12z M16.704,11.3c0,2.593-2.1,4.693-4.693,4.693s-4.693-2.1-4.693-4.693s2.1-4.693,4.693-4.693C14.593,6.607,16.704,8.707,16.704,11.3 z" }) + ] + } + ); +}); + +exports.default = SiLoop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.d.ts new file mode 100644 index 000000000..9a34a7cb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F29400"; +declare const SiLoop: IconType; +export { SiLoop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.mjs new file mode 100644 index 000000000..734a4dc8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F29400"; +const SiLoop = React.forwardRef(function SiLoop2({ title = "Loop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,0C5.371,0,0,5.371,0,12s5.371,12,12,12s12-5.371,12-12C24.011,5.371,18.629,0,12,0z M12.7,22.611 C6.837,22.611,2.089,17.863,2.089,12S6.837,1.389,12.7,1.389S23.311,6.137,23.311,12S18.563,22.611,12.7,22.611z M7.045,3.413 c-4.747,2.735-6.366,8.795-3.632,13.542c2.735,4.737,8.806,6.366,13.542,3.632c4.747-2.735,6.366-8.806,3.632-13.542 C17.852,2.297,11.792,0.678,7.045,3.413z M16.868,19.034c-4.08,2.352-9.287,0.952-11.639-3.118 c-2.352-4.08-0.952-9.287,3.118-11.639c4.08-2.352,9.287-0.952,11.639,3.118C22.337,11.464,20.948,16.682,16.868,19.034z M5.229,8.084c-2.166,3.741-0.875,8.532,2.866,10.687c3.741,2.166,8.532,0.875,10.698-2.866s0.875-8.532-2.866-10.687 C12.175,3.063,7.384,4.343,5.229,8.084z M18.071,14.702c-1.827,3.161-5.863,4.244-9.025,2.417 c-3.161-1.827-4.244-5.863-2.418-9.025s5.863-4.244,9.025-2.418C18.815,7.493,19.898,11.541,18.071,14.702z M6.093,12 c0,3.271,2.647,5.918,5.918,5.918s5.918-2.647,5.918-5.918s-2.647-5.918-5.918-5.918C8.74,6.082,6.093,8.729,6.093,12z M16.704,11.3c0,2.593-2.1,4.693-4.693,4.693s-4.693-2.1-4.693-4.693s2.1-4.693,4.693-4.693C14.593,6.607,16.704,8.707,16.704,11.3 z" }) + ] + } + ); +}); + +export { SiLoop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.cjs new file mode 100644 index 000000000..4db390de1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3F5DFF"; +const SiLoopback = React__namespace.forwardRef(function SiLoopback2({ title = "LoopBack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.333 18.413 2.512-1.615 3.179 1.814 3.209-1.876 2.656 1.515-5.849 3.418-5.707-3.256ZM5.273 6.239l6.687-3.907 6.73 3.839.022 6.755-2.654-1.513-.011-3.701-4.071-2.322-4.05 2.367.011 3.698-.903.526-1.739 1.118-.022-6.86Zm3.608 2.463 1.913 1.089-1.906 1.11-.007-2.199Zm4.337 5.514 2.634-1.544 3.271 1.862 2.221-1.296-.013-2.571-1.677-.957-.01-3.054 4.355 2.485.001 5.611-4.859 2.841-5.923-3.377Zm-13.189.661L0 9.249l4.322-2.525.009 3.061-1.675.979.013 2.57 2.234 1.274L15.098 8.66l.009 3.062-10.189 5.944-4.889-2.789Z" }) + ] + } + ); +}); + +exports.default = SiLoopback; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.d.ts new file mode 100644 index 000000000..91759095b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3F5DFF"; +declare const SiLoopback: IconType; +export { SiLoopback as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.mjs new file mode 100644 index 000000000..4c29852ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLoopback.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3F5DFF"; +const SiLoopback = React.forwardRef(function SiLoopback2({ title = "LoopBack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.333 18.413 2.512-1.615 3.179 1.814 3.209-1.876 2.656 1.515-5.849 3.418-5.707-3.256ZM5.273 6.239l6.687-3.907 6.73 3.839.022 6.755-2.654-1.513-.011-3.701-4.071-2.322-4.05 2.367.011 3.698-.903.526-1.739 1.118-.022-6.86Zm3.608 2.463 1.913 1.089-1.906 1.11-.007-2.199Zm4.337 5.514 2.634-1.544 3.271 1.862 2.221-1.296-.013-2.571-1.677-.957-.01-3.054 4.355 2.485.001 5.611-4.859 2.841-5.923-3.377Zm-13.189.661L0 9.249l4.322-2.525.009 3.061-1.675.979.013 2.57 2.234 1.274L15.098 8.66l.009 3.062-10.189 5.944-4.889-2.789Z" }) + ] + } + ); +}); + +export { SiLoopback as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.cjs new file mode 100644 index 000000000..02adc445a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E1E1E"; +const SiLootcrate = React__namespace.forwardRef(function SiLootcrate2({ title = "Loot Crate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.895 11.048a.116.116 0 0 0 .031.201c1.621.579 2.393.66 2.393 2.081v4.011c0 .716-.051.88-.531 1.254-.877.683-6.185 4.747-6.392 4.913-.774.62-1.169.556-2.054.339a515.44 515.44 0 0 1-9.945-2.577c-1.746-.47-1.701-2.064-1.701-3.203 0-3.945-.015-7.468-.015-11.202 0-1.186.049-1.222.95-1.881.83-.607 4.296-3.135 6.153-4.499.553-.406.828-.607 1.618-.406 1.616.41 6.664 1.649 9.382 2.339 2.083.529 2.535.893 2.535 2.326V8.38c0 .465-.007.638-.408.981-.202.173-1.348 1.14-2.016 1.687Zm1.624-2.556a.113.113 0 0 0 .141-.112c.001-1.414.011-2.495.011-3.666 0-.622-.35-1.137-1.121-1.343C16.501 2.29 10.486.866 10.191.778c-.197-.059-.322.108-.322.199-.001 4.294.029 7.832.029 11.854 0 .741.408 1.525 1.292 1.765 3.582.973 6.578 1.655 10.331 2.667a.115.115 0 0 0 .143-.112c.001-.848.014-1.405.014-1.95 0-2.27.279-2.679-1.57-3.194-2.198-.612-5.306-1.378-5.554-1.441-.485-.124-.548-.266-.548-.591 0-.122-.011-2.346-.003-2.869.002-.157.006-.31.157-.397.134-.077.264-.046.664.053.448.111 4.598 1.186 6.695 1.73Zm-7.65 14.735a.114.114 0 0 0 .142-.111c.001-1.185.017-2.484.017-3.352 0-1.475.182-1.334-1.064-1.639-1.474-.36-4.433-1.146-5.967-1.552-.355-.094-.459-.424-.459-.998 0-1.726-.006-4.575-.006-6.577 0-1.834.193-1.599-.703-1.832-.565-.146-2.468-.637-3.313-.828-.144-.032-.225.085-.225.224-.003 3.939.053 8.211.053 11.994 0 1.228.439 1.815 1.321 2.051 3.589.963 6.446 1.652 10.204 2.62Z" }) + ] + } + ); +}); + +exports.default = SiLootcrate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.d.ts new file mode 100644 index 000000000..a80ba4cb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E1E1E"; +declare const SiLootcrate: IconType; +export { SiLootcrate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.mjs new file mode 100644 index 000000000..cfdc81447 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLootcrate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E1E1E"; +const SiLootcrate = React.forwardRef(function SiLootcrate2({ title = "Loot Crate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.895 11.048a.116.116 0 0 0 .031.201c1.621.579 2.393.66 2.393 2.081v4.011c0 .716-.051.88-.531 1.254-.877.683-6.185 4.747-6.392 4.913-.774.62-1.169.556-2.054.339a515.44 515.44 0 0 1-9.945-2.577c-1.746-.47-1.701-2.064-1.701-3.203 0-3.945-.015-7.468-.015-11.202 0-1.186.049-1.222.95-1.881.83-.607 4.296-3.135 6.153-4.499.553-.406.828-.607 1.618-.406 1.616.41 6.664 1.649 9.382 2.339 2.083.529 2.535.893 2.535 2.326V8.38c0 .465-.007.638-.408.981-.202.173-1.348 1.14-2.016 1.687Zm1.624-2.556a.113.113 0 0 0 .141-.112c.001-1.414.011-2.495.011-3.666 0-.622-.35-1.137-1.121-1.343C16.501 2.29 10.486.866 10.191.778c-.197-.059-.322.108-.322.199-.001 4.294.029 7.832.029 11.854 0 .741.408 1.525 1.292 1.765 3.582.973 6.578 1.655 10.331 2.667a.115.115 0 0 0 .143-.112c.001-.848.014-1.405.014-1.95 0-2.27.279-2.679-1.57-3.194-2.198-.612-5.306-1.378-5.554-1.441-.485-.124-.548-.266-.548-.591 0-.122-.011-2.346-.003-2.869.002-.157.006-.31.157-.397.134-.077.264-.046.664.053.448.111 4.598 1.186 6.695 1.73Zm-7.65 14.735a.114.114 0 0 0 .142-.111c.001-1.185.017-2.484.017-3.352 0-1.475.182-1.334-1.064-1.639-1.474-.36-4.433-1.146-5.967-1.552-.355-.094-.459-.424-.459-.998 0-1.726-.006-4.575-.006-6.577 0-1.834.193-1.599-.703-1.832-.565-.146-2.468-.637-3.313-.828-.144-.032-.225.085-.225.224-.003 3.939.053 8.211.053 11.994 0 1.228.439 1.815 1.321 2.051 3.589.963 6.446 1.652 10.204 2.62Z" }) + ] + } + ); +}); + +export { SiLootcrate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.cjs new file mode 100644 index 000000000..0eb1a3f0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EAEAEA"; +const SiLospec = React__namespace.forwardRef(function SiLospec2({ title = "Lospec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.23 0v24h15.541v-8.4004h-7.1719v3.5996H11.402V0z" }) + ] + } + ); +}); + +exports.default = SiLospec; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.d.ts new file mode 100644 index 000000000..e573909cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EAEAEA"; +declare const SiLospec: IconType; +export { SiLospec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.mjs new file mode 100644 index 000000000..87a1e402c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLospec.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EAEAEA"; +const SiLospec = React.forwardRef(function SiLospec2({ title = "Lospec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.23 0v24h15.541v-8.4004h-7.1719v3.5996H11.402V0z" }) + ] + } + ); +}); + +export { SiLospec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.cjs new file mode 100644 index 000000000..eec40a012 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#11397E"; +const SiLotpolishairlines = React__namespace.forwardRef(function SiLotpolishairlines2({ title = "LOT Polish Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3754 0 0 5.3754 0 12s5.3754 12 12 12 12-5.3754 12-12S18.6246 0 12 0zM.7445 12C.7445 5.7792 5.7792.7445 12 .7445c1.2871 0 2.511.2271 3.6593.6183L9.388 13.9306 1.2745 15.407A11.256 11.256 0 0 1 .7445 12zM12 23.2555c-4.9968 0-9.2366-3.2682-10.7003-7.7728h7.836l7.0788 6.9526c-1.2997.5174-2.7256.8202-4.2145.8202zm4.2271-.8328a2.246 2.246 0 0 0 .6309-1.5647c0-.7066-.328-1.3501-.8454-1.7539l-4.7319-3.6214h11.4195c-1.0346 3.1545-3.4194 5.7034-6.4731 6.94zm5.1609-8.0883h-2.7003l.2019.2902h.9211l.4669.5678h-5.0851c0-1.0094-.8202-1.8422-1.8423-1.8422-.101 0-.2019.0126-.2902.0252l-1.8297.2776 5.4006-8.9842c.2146-.3533.3281-.7571.3281-1.1861 0-.9085-.5047-1.7161-1.2492-2.0946C20.1009 2.9148 23.2555 7.0788 23.2555 12c0 1.1104-.164 2.1829-.4669 3.1924a1.7505 1.7505 0 0 1-1.4006-.858z" }) + ] + } + ); +}); + +exports.default = SiLotpolishairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.d.ts new file mode 100644 index 000000000..79b079087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#11397E"; +declare const SiLotpolishairlines: IconType; +export { SiLotpolishairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.mjs new file mode 100644 index 000000000..50ac04e4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLotpolishairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#11397E"; +const SiLotpolishairlines = React.forwardRef(function SiLotpolishairlines2({ title = "LOT Polish Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3754 0 0 5.3754 0 12s5.3754 12 12 12 12-5.3754 12-12S18.6246 0 12 0zM.7445 12C.7445 5.7792 5.7792.7445 12 .7445c1.2871 0 2.511.2271 3.6593.6183L9.388 13.9306 1.2745 15.407A11.256 11.256 0 0 1 .7445 12zM12 23.2555c-4.9968 0-9.2366-3.2682-10.7003-7.7728h7.836l7.0788 6.9526c-1.2997.5174-2.7256.8202-4.2145.8202zm4.2271-.8328a2.246 2.246 0 0 0 .6309-1.5647c0-.7066-.328-1.3501-.8454-1.7539l-4.7319-3.6214h11.4195c-1.0346 3.1545-3.4194 5.7034-6.4731 6.94zm5.1609-8.0883h-2.7003l.2019.2902h.9211l.4669.5678h-5.0851c0-1.0094-.8202-1.8422-1.8423-1.8422-.101 0-.2019.0126-.2902.0252l-1.8297.2776 5.4006-8.9842c.2146-.3533.3281-.7571.3281-1.1861 0-.9085-.5047-1.7161-1.2492-2.0946C20.1009 2.9148 23.2555 7.0788 23.2555 12c0 1.1104-.164 2.1829-.4669 3.1924a1.7505 1.7505 0 0 1-1.4006-.858z" }) + ] + } + ); +}); + +export { SiLotpolishairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.cjs new file mode 100644 index 000000000..a2c32a930 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00DDB3"; +const SiLottiefiles = React__namespace.forwardRef(function SiLottiefiles2({ title = "LottieFiles", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.928 0H6.072A6.076 6.076 0 0 0 0 6.073v11.854A6.076 6.076 0 0 0 6.073 24h11.854A6.076 6.076 0 0 0 24 17.927V6.073A6.076 6.076 0 0 0 17.927 0m1.42 7.013a1.4 1.4 0 0 1-.26.39c-.11.11-.24.2-.39.26-.14.06-.3.09-.45.09-2.511 0-3.482 1.53-4.792 4.042l-.8 1.51c-1.231 2.382-2.762 5.323-6.894 5.323-.31 0-.62-.12-.84-.35a1.188 1.188 0 0 1 .84-2.031c2.511 0 3.482-1.53 4.792-4.042l.8-1.51c1.231-2.382 2.762-5.323 6.894-5.323q.24 0 .45.09c.14.06.27.15.39.26.11.11.2.24.26.39a1.17 1.17 0 0 1 0 .9" }) + ] + } + ); +}); + +exports.default = SiLottiefiles; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.d.ts new file mode 100644 index 000000000..6c504df4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00DDB3"; +declare const SiLottiefiles: IconType; +export { SiLottiefiles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.mjs new file mode 100644 index 000000000..f83fa2660 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLottiefiles.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00DDB3"; +const SiLottiefiles = React.forwardRef(function SiLottiefiles2({ title = "LottieFiles", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.928 0H6.072A6.076 6.076 0 0 0 0 6.073v11.854A6.076 6.076 0 0 0 6.073 24h11.854A6.076 6.076 0 0 0 24 17.927V6.073A6.076 6.076 0 0 0 17.927 0m1.42 7.013a1.4 1.4 0 0 1-.26.39c-.11.11-.24.2-.39.26-.14.06-.3.09-.45.09-2.511 0-3.482 1.53-4.792 4.042l-.8 1.51c-1.231 2.382-2.762 5.323-6.894 5.323-.31 0-.62-.12-.84-.35a1.188 1.188 0 0 1 .84-2.031c2.511 0 3.482-1.53 4.792-4.042l.8-1.51c1.231-2.382 2.762-5.323 6.894-5.323q.24 0 .45.09c.14.06.27.15.39.26.11.11.2.24.26.39a1.17 1.17 0 0 1 0 .9" }) + ] + } + ); +}); + +export { SiLottiefiles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.cjs new file mode 100644 index 000000000..d59d67708 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#900028"; +const SiLtspice = React__namespace.forwardRef(function SiLtspice2({ title = "LTspice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.3267 3.4848c-.7965.627-.9744 1.6212-1.1644 3.3173-.3653 3.257-.641 5.1982-1.0473 8.658-.199 1.7013.9756 1.9015 2.3646 1.8861h2.8841c.2604.002.3525.1229.3193.3807-.1241.9654-.2579 2.7882-1.19 2.7882L0 20.4933s2.8304-1.032 3.165-3.3723L4.5047 6.234c.2086-1.357 1.2885-2.7492 2.634-2.7492h2.188zm5.5567 17.0306c1.3454 0 2.4254-1.3922 2.634-2.7491L18.857 6.8792c.3346-2.3404 3.165-3.3723 3.165-3.3723L10.529 3.485c-.9321 0-1.0658 1.8228-1.19 2.7882-.0332.2578.0589.3787.3193.3806h2.8841c1.389-.0153 2.5636.185 2.3646 1.8861-.4062 3.46-.682 5.401-1.0473 8.6581-.19 1.696-.3679 2.6903-1.1644 3.3173h2.188zM23.202 6.6528c.259.0006.4964-.2092.5284-.4658l.2662-2.2309c.0313-.2565-.1549-.4715-.4133-.4715h-.8797c-1.0883 0-2.2022 1.7952-2.2559 2.696-.0339.2585.151.4696.4114.4722h2.3429z" }) + ] + } + ); +}); + +exports.default = SiLtspice; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.d.ts new file mode 100644 index 000000000..f0aa569f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#900028"; +declare const SiLtspice: IconType; +export { SiLtspice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.mjs new file mode 100644 index 000000000..4f491d137 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLtspice.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#900028"; +const SiLtspice = React.forwardRef(function SiLtspice2({ title = "LTspice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.3267 3.4848c-.7965.627-.9744 1.6212-1.1644 3.3173-.3653 3.257-.641 5.1982-1.0473 8.658-.199 1.7013.9756 1.9015 2.3646 1.8861h2.8841c.2604.002.3525.1229.3193.3807-.1241.9654-.2579 2.7882-1.19 2.7882L0 20.4933s2.8304-1.032 3.165-3.3723L4.5047 6.234c.2086-1.357 1.2885-2.7492 2.634-2.7492h2.188zm5.5567 17.0306c1.3454 0 2.4254-1.3922 2.634-2.7491L18.857 6.8792c.3346-2.3404 3.165-3.3723 3.165-3.3723L10.529 3.485c-.9321 0-1.0658 1.8228-1.19 2.7882-.0332.2578.0589.3787.3193.3806h2.8841c1.389-.0153 2.5636.185 2.3646 1.8861-.4062 3.46-.682 5.401-1.0473 8.6581-.19 1.696-.3679 2.6903-1.1644 3.3173h2.188zM23.202 6.6528c.259.0006.4964-.2092.5284-.4658l.2662-2.2309c.0313-.2565-.1549-.4715-.4133-.4715h-.8797c-1.0883 0-2.2022 1.7952-2.2559 2.696-.0339.2585.151.4696.4114.4722h2.3429z" }) + ] + } + ); +}); + +export { SiLtspice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLua.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLua.cjs new file mode 100644 index 000000000..83bdd3690 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLua.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000080"; +const SiLua = React__namespace.forwardRef(function SiLua2({ title = "Lua", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.38 10.377l-.272-.037c-.048.344-.082.695-.101 1.041l.275.016c.018-.34.051-.682.098-1.02zM4.136 3.289l-.184-.205c-.258.232-.509.48-.746.734l.202.188c.231-.248.476-.49.728-.717zM5.769 2.059l-.146-.235c-.296.186-.586.385-.863.594l.166.219c.27-.203.554-.399.843-.578zM1.824 18.369c.185.297.384.586.593.863l.22-.164c-.205-.271-.399-.555-.58-.844l-.233.145zM1.127 16.402l-.255.104c.129.318.274.635.431.943l.005.01.245-.125-.005-.01c-.153-.301-.295-.611-.421-.922zM.298 9.309l.269.063c.076-.332.168-.664.272-.986l-.261-.087c-.108.332-.202.672-.28 1.01zM.274 12.42l-.275.01c.012.348.04.699.083 1.043l.273-.033c-.042-.336-.069-.68-.081-1.02zM.256 14.506c.073.34.162.682.264 1.014l.263-.08c-.1-.326-.187-.658-.258-.99l-.269.056zM11.573.275L11.563 0c-.348.012-.699.039-1.044.082l.034.273c.338-.041.68-.068 1.02-.08zM23.221 8.566c.1.326.186.66.256.992l.27-.059c-.072-.34-.16-.682-.262-1.014l-.264.081zM17.621 1.389c-.309-.164-.627-.314-.947-.449l-.107.252c.314.133.625.281.926.439l.128-.242zM15.693.572c-.332-.105-.67-.199-1.01-.277l-.063.268c.332.076.664.168.988.273l.085-.264zM6.674 1.545c.298-.15.606-.291.916-.418L7.486.873c-.317.127-.632.272-.937.428l-.015.008.125.244.015-.008zM23.727 11.588l.275-.01a11.797 11.797 0 0 0-.082-1.045l-.273.033c.041.338.068.682.08 1.022zM13.654.105c-.346-.047-.696-.08-1.043-.098l-.014.273c.339.018.683.051 1.019.098l.038-.273zM9.544.527l-.058-.27c-.34.072-.681.16-1.014.264l.081.262c.325-.099.659-.185.991-.256zM1.921 5.469l.231.15c.185-.285.384-.566.592-.834l-.217-.17c-.213.276-.417.563-.606.854zM.943 7.318l.253.107c.132-.313.28-.625.439-.924l-.243-.128c-.163.307-.314.625-.449.945zM18.223 21.943l.145.234c.295-.186.586-.385.863-.594l-.164-.219c-.272.204-.557.4-.844.579zM21.248 19.219l.217.17c.215-.273.418-.561.607-.854l-.23-.148c-.186.285-.385.564-.594.832zM19.855 20.715l.184.203c.258-.23.51-.479.746-.732l-.201-.188c-.23.248-.477.488-.729.717zM22.359 17.504l.244.129c.162-.307.314-.625.449-.945l-.254-.107a11.27 11.27 0 0 1-.439.923zM23.617 13.629l.273.039c.049-.346.082-.695.102-1.043l-.275-.014c-.018.338-.051.682-.1 1.018zM23.156 15.621l.264.086c.107-.332.201-.67.279-1.01l-.268-.063c-.077.333-.169.665-.275.987zM22.453 6.672c.154.303.297.617.424.932l.256-.104c-.131-.322-.277-.643-.436-.953l-.244.125zM8.296 23.418c.331.107.67.201 1.009.279l.062-.268c-.331-.076-.663-.168-.986-.273l-.085.262zM10.335 23.889c.345.049.696.082 1.043.102l.014-.275c-.339-.018-.682-.051-1.019-.098l-.038.271zM17.326 22.449c-.303.154-.613.297-.926.424l.104.256c.318-.131.639-.275.947-.434l.004-.002-.123-.246-.006.002zM4.613 21.467c.274.213.562.418.854.605l.149-.23c-.285-.184-.565-.385-.833-.592l-.17.217zM12.417 23.725l.009.275c.348-.014.699-.041 1.045-.084l-.035-.271c-.336.041-.68.068-1.019.08zM6.37 22.604c.307.162.625.314.946.449l.107-.254c-.313-.133-.624-.279-.924-.439l-.129.244zM3.083 20.041c.233.258.48.51.734.746l.188-.201c-.249-.23-.49-.477-.717-.729l-.205.184zM14.445 23.475l.059.27c.34-.074.68-.162 1.014-.266l-.082-.262c-.325.099-.659.185-.991.258zM21.18.129A2.689 2.689 0 1 0 21.18 5.507 2.689 2.689 0 1 0 21.18.129zM15.324 15.447c0 .471.314.66.852.66.67 0 1.297-.396 1.297-1.016v-.645c-.23.107-.379.141-1.107.24-.735.109-1.042.306-1.042.761zM12 2.818c-5.07 0-9.18 4.109-9.18 9.18 0 5.068 4.11 9.18 9.18 9.18 5.07 0 9.18-4.111 9.18-9.18 0-5.07-4.11-9.18-9.18-9.18zm-2.487 13.77H5.771v-6.023h.769v5.346h2.974v.677zm4.13 0h-.619v-.67c-.405.57-.811.793-1.446.793-.843 0-1.38-.463-1.38-1.182v-3.271h.686v3c0 .52.347.85.893.85.719 0 1.181-.578 1.181-1.461v-2.389h.686v4.33zm-.53-8.393c0-1.484 1.205-2.689 2.689-2.689s2.688 1.205 2.688 2.689-1.203 2.688-2.688 2.688-2.689-1.203-2.689-2.688zm5.567 7.856v.52c-.223.059-.33.074-.471.074-.34 0-.637-.238-.711-.57-.381.406-.918.637-1.471.637-.877 0-1.422-.463-1.422-1.248 0-.527.256-.916.76-1.123.266-.107.414-.141 1.389-.264.545-.066.719-.191.719-.48v-.182c0-.412-.348-.645-.967-.645-.645 0-.957.24-1.016.77h-.693c.041-1 .686-1.404 1.734-1.404 1.066 0 1.627.412 1.627 1.182v2.412c0 .215.133.338.373.338.041-.002.074-.002.149-.017z" }) + ] + } + ); +}); + +exports.default = SiLua; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLua.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLua.d.ts new file mode 100644 index 000000000..b4da57e0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLua.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000080"; +declare const SiLua: IconType; +export { SiLua as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLua.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLua.mjs new file mode 100644 index 000000000..f2906791f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLua.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000080"; +const SiLua = React.forwardRef(function SiLua2({ title = "Lua", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.38 10.377l-.272-.037c-.048.344-.082.695-.101 1.041l.275.016c.018-.34.051-.682.098-1.02zM4.136 3.289l-.184-.205c-.258.232-.509.48-.746.734l.202.188c.231-.248.476-.49.728-.717zM5.769 2.059l-.146-.235c-.296.186-.586.385-.863.594l.166.219c.27-.203.554-.399.843-.578zM1.824 18.369c.185.297.384.586.593.863l.22-.164c-.205-.271-.399-.555-.58-.844l-.233.145zM1.127 16.402l-.255.104c.129.318.274.635.431.943l.005.01.245-.125-.005-.01c-.153-.301-.295-.611-.421-.922zM.298 9.309l.269.063c.076-.332.168-.664.272-.986l-.261-.087c-.108.332-.202.672-.28 1.01zM.274 12.42l-.275.01c.012.348.04.699.083 1.043l.273-.033c-.042-.336-.069-.68-.081-1.02zM.256 14.506c.073.34.162.682.264 1.014l.263-.08c-.1-.326-.187-.658-.258-.99l-.269.056zM11.573.275L11.563 0c-.348.012-.699.039-1.044.082l.034.273c.338-.041.68-.068 1.02-.08zM23.221 8.566c.1.326.186.66.256.992l.27-.059c-.072-.34-.16-.682-.262-1.014l-.264.081zM17.621 1.389c-.309-.164-.627-.314-.947-.449l-.107.252c.314.133.625.281.926.439l.128-.242zM15.693.572c-.332-.105-.67-.199-1.01-.277l-.063.268c.332.076.664.168.988.273l.085-.264zM6.674 1.545c.298-.15.606-.291.916-.418L7.486.873c-.317.127-.632.272-.937.428l-.015.008.125.244.015-.008zM23.727 11.588l.275-.01a11.797 11.797 0 0 0-.082-1.045l-.273.033c.041.338.068.682.08 1.022zM13.654.105c-.346-.047-.696-.08-1.043-.098l-.014.273c.339.018.683.051 1.019.098l.038-.273zM9.544.527l-.058-.27c-.34.072-.681.16-1.014.264l.081.262c.325-.099.659-.185.991-.256zM1.921 5.469l.231.15c.185-.285.384-.566.592-.834l-.217-.17c-.213.276-.417.563-.606.854zM.943 7.318l.253.107c.132-.313.28-.625.439-.924l-.243-.128c-.163.307-.314.625-.449.945zM18.223 21.943l.145.234c.295-.186.586-.385.863-.594l-.164-.219c-.272.204-.557.4-.844.579zM21.248 19.219l.217.17c.215-.273.418-.561.607-.854l-.23-.148c-.186.285-.385.564-.594.832zM19.855 20.715l.184.203c.258-.23.51-.479.746-.732l-.201-.188c-.23.248-.477.488-.729.717zM22.359 17.504l.244.129c.162-.307.314-.625.449-.945l-.254-.107a11.27 11.27 0 0 1-.439.923zM23.617 13.629l.273.039c.049-.346.082-.695.102-1.043l-.275-.014c-.018.338-.051.682-.1 1.018zM23.156 15.621l.264.086c.107-.332.201-.67.279-1.01l-.268-.063c-.077.333-.169.665-.275.987zM22.453 6.672c.154.303.297.617.424.932l.256-.104c-.131-.322-.277-.643-.436-.953l-.244.125zM8.296 23.418c.331.107.67.201 1.009.279l.062-.268c-.331-.076-.663-.168-.986-.273l-.085.262zM10.335 23.889c.345.049.696.082 1.043.102l.014-.275c-.339-.018-.682-.051-1.019-.098l-.038.271zM17.326 22.449c-.303.154-.613.297-.926.424l.104.256c.318-.131.639-.275.947-.434l.004-.002-.123-.246-.006.002zM4.613 21.467c.274.213.562.418.854.605l.149-.23c-.285-.184-.565-.385-.833-.592l-.17.217zM12.417 23.725l.009.275c.348-.014.699-.041 1.045-.084l-.035-.271c-.336.041-.68.068-1.019.08zM6.37 22.604c.307.162.625.314.946.449l.107-.254c-.313-.133-.624-.279-.924-.439l-.129.244zM3.083 20.041c.233.258.48.51.734.746l.188-.201c-.249-.23-.49-.477-.717-.729l-.205.184zM14.445 23.475l.059.27c.34-.074.68-.162 1.014-.266l-.082-.262c-.325.099-.659.185-.991.258zM21.18.129A2.689 2.689 0 1 0 21.18 5.507 2.689 2.689 0 1 0 21.18.129zM15.324 15.447c0 .471.314.66.852.66.67 0 1.297-.396 1.297-1.016v-.645c-.23.107-.379.141-1.107.24-.735.109-1.042.306-1.042.761zM12 2.818c-5.07 0-9.18 4.109-9.18 9.18 0 5.068 4.11 9.18 9.18 9.18 5.07 0 9.18-4.111 9.18-9.18 0-5.07-4.11-9.18-9.18-9.18zm-2.487 13.77H5.771v-6.023h.769v5.346h2.974v.677zm4.13 0h-.619v-.67c-.405.57-.811.793-1.446.793-.843 0-1.38-.463-1.38-1.182v-3.271h.686v3c0 .52.347.85.893.85.719 0 1.181-.578 1.181-1.461v-2.389h.686v4.33zm-.53-8.393c0-1.484 1.205-2.689 2.689-2.689s2.688 1.205 2.688 2.689-1.203 2.688-2.688 2.688-2.689-1.203-2.689-2.688zm5.567 7.856v.52c-.223.059-.33.074-.471.074-.34 0-.637-.238-.711-.57-.381.406-.918.637-1.471.637-.877 0-1.422-.463-1.422-1.248 0-.527.256-.916.76-1.123.266-.107.414-.141 1.389-.264.545-.066.719-.191.719-.48v-.182c0-.412-.348-.645-.967-.645-.645 0-.957.24-1.016.77h-.693c.041-1 .686-1.404 1.734-1.404 1.066 0 1.627.412 1.627 1.182v2.412c0 .215.133.338.373.338.041-.002.074-.002.149-.017z" }) + ] + } + ); +}); + +export { SiLua as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.cjs new file mode 100644 index 000000000..210fe02a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#53AC56"; +const SiLuanti = React__namespace.forwardRef(function SiLuanti2({ title = "Luanti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.11 0 1.76 2.516v4.478L3.638 8.08.073 10.137v6.97L12.013 24l11.773-6.96.14-.083v-6.672l-3.323-1.92V6.148l-1.061-.613-1.156.774v.775l-1.11-.64v-.948c-.002-.11-.053-.182-.138-.24l-4.166-2.404a.28.28 0 0 0-.28 0c-.873.506-1.747 1.01-2.62 1.515v-2.08Zm0 .64L9.52 2.606v4.297L6.11 8.867 2.312 6.676V2.834Zm6.721 2.77 3.613 2.086-4.382 2.531a.277.277 0 0 0 0 .48l3.27 1.891-7.2 4.07-7.227-4.171L4.19 8.398l.684.397v2.217l1.236.715 1.239-.715V8.795l2.722-1.572V5.008Zm3.89 2.569v.466l-3.56 2.059-.406-.234zm2.84.208.487.282v4.33l-.496.287-.614-.354V6.605ZM17 6.926l1.387.8v3.327l1.166.674 1.05-.61V9.006l2.77 1.6v.49L19.548 13.3l-3.381-1.951v-.944a.28.28 0 0 0-.139-.246l-2.314-1.338ZM5.429 9.113l.681.397.686-.397v1.576l-.686.397-.681-.397Zm-4.8 1.662 7.362 4.252c.086.05.19.051.278.002l7.343-4.154v.473l-7.76 4.386v1.43l.864.498v1.11l3.297 1.902 6.925-4.08v-1.19l1.11-.64v-1.112c1.108-.64 2.215-1.278 3.324-1.916v1.024l-2.217 1.277v.557l-1.11.638v1.11l-1.107.64v2.28l-6.93 4.095-3.599-2.08V20.17l-1.06-.611v-1.11c-.385-.225-.773-.445-1.159-.67v-2.215l-3.324-1.92v1.11l-1.107-.64v3.325l-1.131-.652Zm15.26 1.053c1.21.697 2.402 1.392 3.604 2.082v.533l-1.107.641v1.191l-6.375 3.758-2.742-1.582v-1.11l-.86-.495v-.787zm7.483 1.57v3.24l-3.879 2.24v-1.577l1.11-.64v-1.108l1.107-.64v-.556zM3.421 14.604l2.217 1.28v1.577l-1.446-.834-1.879 1.086v-2.64l1.108.64zm1.32 1.392-.138.24.119.069.138-.24zm.36.207-.14.24.12.07.139-.24zm-.909 1.065 1.446.834 1.11.638v1.11l1.106.642v.469l-5.027-2.904Z" }) + ] + } + ); +}); + +exports.default = SiLuanti; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.d.ts new file mode 100644 index 000000000..c0957eeb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#53AC56"; +declare const SiLuanti: IconType; +export { SiLuanti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.mjs new file mode 100644 index 000000000..f728a4d6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuanti.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#53AC56"; +const SiLuanti = React.forwardRef(function SiLuanti2({ title = "Luanti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.11 0 1.76 2.516v4.478L3.638 8.08.073 10.137v6.97L12.013 24l11.773-6.96.14-.083v-6.672l-3.323-1.92V6.148l-1.061-.613-1.156.774v.775l-1.11-.64v-.948c-.002-.11-.053-.182-.138-.24l-4.166-2.404a.28.28 0 0 0-.28 0c-.873.506-1.747 1.01-2.62 1.515v-2.08Zm0 .64L9.52 2.606v4.297L6.11 8.867 2.312 6.676V2.834Zm6.721 2.77 3.613 2.086-4.382 2.531a.277.277 0 0 0 0 .48l3.27 1.891-7.2 4.07-7.227-4.171L4.19 8.398l.684.397v2.217l1.236.715 1.239-.715V8.795l2.722-1.572V5.008Zm3.89 2.569v.466l-3.56 2.059-.406-.234zm2.84.208.487.282v4.33l-.496.287-.614-.354V6.605ZM17 6.926l1.387.8v3.327l1.166.674 1.05-.61V9.006l2.77 1.6v.49L19.548 13.3l-3.381-1.951v-.944a.28.28 0 0 0-.139-.246l-2.314-1.338ZM5.429 9.113l.681.397.686-.397v1.576l-.686.397-.681-.397Zm-4.8 1.662 7.362 4.252c.086.05.19.051.278.002l7.343-4.154v.473l-7.76 4.386v1.43l.864.498v1.11l3.297 1.902 6.925-4.08v-1.19l1.11-.64v-1.112c1.108-.64 2.215-1.278 3.324-1.916v1.024l-2.217 1.277v.557l-1.11.638v1.11l-1.107.64v2.28l-6.93 4.095-3.599-2.08V20.17l-1.06-.611v-1.11c-.385-.225-.773-.445-1.159-.67v-2.215l-3.324-1.92v1.11l-1.107-.64v3.325l-1.131-.652Zm15.26 1.053c1.21.697 2.402 1.392 3.604 2.082v.533l-1.107.641v1.191l-6.375 3.758-2.742-1.582v-1.11l-.86-.495v-.787zm7.483 1.57v3.24l-3.879 2.24v-1.577l1.11-.64v-1.108l1.107-.64v-.556zM3.421 14.604l2.217 1.28v1.577l-1.446-.834-1.879 1.086v-2.64l1.108.64zm1.32 1.392-.138.24.119.069.138-.24zm.36.207-.14.24.12.07.139-.24zm-.909 1.065 1.446.834 1.11.638v1.11l1.106.642v.469l-5.027-2.904Z" }) + ] + } + ); +}); + +export { SiLuanti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.cjs new file mode 100644 index 000000000..3e20f2e81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A2FF"; +const SiLuau = React__namespace.forwardRef(function SiLuau2({ title = "Luau", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 5.072 18.928 24 0 18.928 5.072 0 24 5.072ZM8.984 18.402l-.085.375.61.163 1.005-3.75-.641-.172-.731 2.728c-.26.322-.635.417-1.125.286-.462-.124-.616-.47-.464-1.039l.649-2.422-.641-.172-.654 2.44c-.12.455-.107.828.039 1.117.148.287.422.485.822.592.483.13.888.081 1.216-.146Zm3.818 1.42.672.18.015-.055c-.034-.227-.004-.512.088-.857l.462-1.725c.093-.382.045-.713-.142-.994-.187-.282-.496-.481-.928-.597a1.897 1.897 0 0 0-.793-.05 1.42 1.42 0 0 0-.652.272.912.912 0 0 0-.343.488l.645.172c.044-.164.159-.283.344-.357a.969.969 0 0 1 .622-.02c.261.07.44.19.54.36.098.168.117.364.057.588l-.079.295-.624-.167c-.538-.145-.985-.148-1.342-.01-.353.135-.582.398-.687.789-.086.32-.04.618.14.891.183.272.458.458.828.557.414.11.811.05 1.192-.179-.028.196-.033.336-.015.42Zm-.934-.774a.8.8 0 0 1-.47-.307.606.606 0 0 1-.075-.526c.123-.46.577-.584 1.363-.374l.502.135-.206.77a.978.978 0 0 1-.5.3 1.166 1.166 0 0 1-.614.002ZM21 6.804l-3.786-1.015L16.2 9.575l3.786 1.014L21 6.804ZM3.818 16.832l1.207-4.502-.67-.18-1.352 5.047 3.06.82.146-.544-2.39-.64Zm12.944 3.654-.086.375.61.163 1.005-3.75-.641-.172-.731 2.728c-.26.322-.634.417-1.124.286-.462-.124-.617-.47-.465-1.039l.65-2.422-.642-.172-.654 2.44c-.12.456-.106.828.04 1.117.147.288.421.485.821.592.483.13.889.081 1.217-.146Z" }) + ] + } + ); +}); + +exports.default = SiLuau; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.d.ts new file mode 100644 index 000000000..34c7de575 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A2FF"; +declare const SiLuau: IconType; +export { SiLuau as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.mjs new file mode 100644 index 000000000..46691d407 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuau.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A2FF"; +const SiLuau = React.forwardRef(function SiLuau2({ title = "Luau", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 5.072 18.928 24 0 18.928 5.072 0 24 5.072ZM8.984 18.402l-.085.375.61.163 1.005-3.75-.641-.172-.731 2.728c-.26.322-.635.417-1.125.286-.462-.124-.616-.47-.464-1.039l.649-2.422-.641-.172-.654 2.44c-.12.455-.107.828.039 1.117.148.287.422.485.822.592.483.13.888.081 1.216-.146Zm3.818 1.42.672.18.015-.055c-.034-.227-.004-.512.088-.857l.462-1.725c.093-.382.045-.713-.142-.994-.187-.282-.496-.481-.928-.597a1.897 1.897 0 0 0-.793-.05 1.42 1.42 0 0 0-.652.272.912.912 0 0 0-.343.488l.645.172c.044-.164.159-.283.344-.357a.969.969 0 0 1 .622-.02c.261.07.44.19.54.36.098.168.117.364.057.588l-.079.295-.624-.167c-.538-.145-.985-.148-1.342-.01-.353.135-.582.398-.687.789-.086.32-.04.618.14.891.183.272.458.458.828.557.414.11.811.05 1.192-.179-.028.196-.033.336-.015.42Zm-.934-.774a.8.8 0 0 1-.47-.307.606.606 0 0 1-.075-.526c.123-.46.577-.584 1.363-.374l.502.135-.206.77a.978.978 0 0 1-.5.3 1.166 1.166 0 0 1-.614.002ZM21 6.804l-3.786-1.015L16.2 9.575l3.786 1.014L21 6.804ZM3.818 16.832l1.207-4.502-.67-.18-1.352 5.047 3.06.82.146-.544-2.39-.64Zm12.944 3.654-.086.375.61.163 1.005-3.75-.641-.172-.731 2.728c-.26.322-.634.417-1.124.286-.462-.124-.617-.47-.465-1.039l.65-2.422-.642-.172-.654 2.44c-.12.456-.106.828.04 1.117.147.288.421.485.821.592.483.13.889.081 1.217-.146Z" }) + ] + } + ); +}); + +export { SiLuau as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.cjs new file mode 100644 index 000000000..711501fd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0068C8"; +const SiLubuntu = React__namespace.forwardRef(function SiLubuntu2({ title = "Lubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.287 4.723q.316-.031.63.004a3.17 3.17 0 0 1 2.41 1.642l5.665.781h-6.458a2.58 2.58 0 0 0-1.66-.955 2.57 2.57 0 0 0-1.371.192c-.43.19-.8.495-1.068.88-.268.387-.424.84-.451 1.31-.026.468.078.935.3 1.349a3.13 3.13 0 0 1-.795-1.68 3.13 3.13 0 0 1 .305-1.832 3.14 3.14 0 0 1 1.299-1.332 3.1 3.1 0 0 1 1.195-.36m-9.88 1.09 8.673 6.232-7.154-4.012a3.6 3.6 0 0 0-.072 2.022 3.57 3.57 0 0 0 1.998 2.34l4.748 1.334-6.002-.983c.061.58.275 1.133.619 1.604a3.33 3.33 0 0 0 2.652 1.33 3.95 3.95 0 0 1-3.062-.451 3.9 3.9 0 0 1-1.432-1.563 3.9 3.9 0 0 1-.398-2.08l1.32.371a4.7 4.7 0 0 1-1.246-.986 4.7 4.7 0 0 1-1.111-2.48 4.67 4.67 0 0 1 .466-2.678m11.667 3.132q-.01.138-.008.278c.007 1.143.535 2.21 1.057 3.226.523 1.017 1.064 2.076 1.094 3.22.024.95-.32 1.895-.899 2.651-.578.756-1.377 1.328-2.255 1.696a6.5 6.5 0 0 1-3.91.338l-1 2.373v-3.327a6.23 6.23 0 0 0 3.665-.31c.7-.285 1.352-.707 1.862-1.264s.875-1.255.986-2.002c.15-1-.151-2.007-.447-2.974s-.595-1.977-.436-2.975a3.3 3.3 0 0 1 .291-.93" }) + ] + } + ); +}); + +exports.default = SiLubuntu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.d.ts new file mode 100644 index 000000000..35cb27185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0068C8"; +declare const SiLubuntu: IconType; +export { SiLubuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.mjs new file mode 100644 index 000000000..105ed502a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLubuntu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0068C8"; +const SiLubuntu = React.forwardRef(function SiLubuntu2({ title = "Lubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.287 4.723q.316-.031.63.004a3.17 3.17 0 0 1 2.41 1.642l5.665.781h-6.458a2.58 2.58 0 0 0-1.66-.955 2.57 2.57 0 0 0-1.371.192c-.43.19-.8.495-1.068.88-.268.387-.424.84-.451 1.31-.026.468.078.935.3 1.349a3.13 3.13 0 0 1-.795-1.68 3.13 3.13 0 0 1 .305-1.832 3.14 3.14 0 0 1 1.299-1.332 3.1 3.1 0 0 1 1.195-.36m-9.88 1.09 8.673 6.232-7.154-4.012a3.6 3.6 0 0 0-.072 2.022 3.57 3.57 0 0 0 1.998 2.34l4.748 1.334-6.002-.983c.061.58.275 1.133.619 1.604a3.33 3.33 0 0 0 2.652 1.33 3.95 3.95 0 0 1-3.062-.451 3.9 3.9 0 0 1-1.432-1.563 3.9 3.9 0 0 1-.398-2.08l1.32.371a4.7 4.7 0 0 1-1.246-.986 4.7 4.7 0 0 1-1.111-2.48 4.67 4.67 0 0 1 .466-2.678m11.667 3.132q-.01.138-.008.278c.007 1.143.535 2.21 1.057 3.226.523 1.017 1.064 2.076 1.094 3.22.024.95-.32 1.895-.899 2.651-.578.756-1.377 1.328-2.255 1.696a6.5 6.5 0 0 1-3.91.338l-1 2.373v-3.327a6.23 6.23 0 0 0 3.665-.31c.7-.285 1.352-.707 1.862-1.264s.875-1.255.986-2.002c.15-1-.151-2.007-.447-2.974s-.595-1.977-.436-2.975a3.3 3.3 0 0 1 .291-.93" }) + ] + } + ); +}); + +export { SiLubuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.cjs new file mode 100644 index 000000000..3590a7f66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5F57FF"; +const SiLucia = React__namespace.forwardRef(function SiLucia2({ title = "Lucia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.382 20.714 12 0 3.618 20.714 2.288 24h19.423zM12 13.61l-5.73 7.058 1.288-3.184L12 6.505l4.442 10.978 1.289 3.184z" }) + ] + } + ); +}); + +exports.default = SiLucia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.d.ts new file mode 100644 index 000000000..6a0ac21ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5F57FF"; +declare const SiLucia: IconType; +export { SiLucia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.mjs new file mode 100644 index 000000000..9fc0900f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5F57FF"; +const SiLucia = React.forwardRef(function SiLucia2({ title = "Lucia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.382 20.714 12 0 3.618 20.714 2.288 24h19.423zM12 13.61l-5.73 7.058 1.288-3.184L12 6.505l4.442 10.978 1.289 3.184z" }) + ] + } + ); +}); + +export { SiLucia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.cjs new file mode 100644 index 000000000..b5f3dee36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#282C33"; +const SiLucid = React__namespace.forwardRef(function SiLucid2({ title = "Lucid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0 3.694 4.8V24L12 19.2Zm0 19.2v4.502h8.305V14.4Z" }) + ] + } + ); +}); + +exports.default = SiLucid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.d.ts new file mode 100644 index 000000000..0d3899ca5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#282C33"; +declare const SiLucid: IconType; +export { SiLucid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.mjs new file mode 100644 index 000000000..679aa6ffc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#282C33"; +const SiLucid = React.forwardRef(function SiLucid2({ title = "Lucid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0 3.694 4.8V24L12 19.2Zm0 19.2v4.502h8.305V14.4Z" }) + ] + } + ); +}); + +export { SiLucid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.cjs new file mode 100644 index 000000000..bd300be90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F56565"; +const SiLucide = React__namespace.forwardRef(function SiLucide2({ title = "Lucide", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.483 1.123a1.09 1.09 0 0 0-.752.362 1.09 1.09 0 0 0 .088 1.54 11.956 11.956 0 0 1 4 8.946 7.62 7.62 0 0 1-7.637 7.636 7.62 7.62 0 0 1-7.637-7.636 3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09 1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818 5.41 0 9.818-4.41 9.818-9.818A14.16 14.16 0 0 0 19.272 1.4a1.09 1.09 0 0 0-.789-.277ZM9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637 1.09 1.09 0 0 0 1.54-.096 1.09 1.09 0 0 0-.095-1.54 11.957 11.957 0 0 1-4.063-9 7.62 7.62 0 0 1 7.636-7.637 7.62 7.62 0 0 1 7.637 7.636 3.256 3.256 0 0 1-3.273 3.273 3.256 3.256 0 0 1-3.273-3.273 1.09 1.09 0 0 0-1.09-1.09 1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z" }) + ] + } + ); +}); + +exports.default = SiLucide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.d.ts new file mode 100644 index 000000000..4d5dffeec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F56565"; +declare const SiLucide: IconType; +export { SiLucide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.mjs new file mode 100644 index 000000000..96d2028de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLucide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F56565"; +const SiLucide = React.forwardRef(function SiLucide2({ title = "Lucide", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.483 1.123a1.09 1.09 0 0 0-.752.362 1.09 1.09 0 0 0 .088 1.54 11.956 11.956 0 0 1 4 8.946 7.62 7.62 0 0 1-7.637 7.636 7.62 7.62 0 0 1-7.637-7.636 3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09 1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818 5.41 0 9.818-4.41 9.818-9.818A14.16 14.16 0 0 0 19.272 1.4a1.09 1.09 0 0 0-.789-.277ZM9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637 1.09 1.09 0 0 0 1.54-.096 1.09 1.09 0 0 0-.095-1.54 11.957 11.957 0 0 1-4.063-9 7.62 7.62 0 0 1 7.636-7.637 7.62 7.62 0 0 1 7.637 7.636 3.256 3.256 0 0 1-3.273 3.273 3.256 3.256 0 0 1-3.273-3.273 1.09 1.09 0 0 0-1.09-1.09 1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z" }) + ] + } + ); +}); + +export { SiLucide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.cjs new file mode 100644 index 000000000..e4b36b693 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiLudwig = React__namespace.forwardRef(function SiLudwig2({ title = "Ludwig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h24v24H0V0Zm13.714 10.286V3.429h-3.428v10.285H20.57V3.43h-3.428v6.857h-3.429Zm-6.857 6.857V3.429H3.43V20.57h17.14v-3.428H6.857Z" }) + ] + } + ); +}); + +exports.default = SiLudwig; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.d.ts new file mode 100644 index 000000000..0319b28f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiLudwig: IconType; +export { SiLudwig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.mjs new file mode 100644 index 000000000..d34ebd827 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLudwig.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiLudwig = React.forwardRef(function SiLudwig2({ title = "Ludwig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0h24v24H0V0Zm13.714 10.286V3.429h-3.428v10.285H20.57V3.43h-3.428v6.857h-3.429Zm-6.857 6.857V3.429H3.43V20.57h17.14v-3.428H6.857Z" }) + ] + } + ); +}); + +export { SiLudwig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.cjs new file mode 100644 index 000000000..75bd71118 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05164D"; +const SiLufthansa = React__namespace.forwardRef(function SiLufthansa2({ title = "Lufthansa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24,12c0-6.648-5.352-12-12-12C5.376,0,0,5.352,0,12c0,6.624,5.376,12,12,12C18.648,24,24,18.624,24,12z M23.136,12c0,6.12-4.992,11.136-11.136,11.136C5.88,23.136,0.864,18.121,0.864,12C0.864,5.856,5.88,0.864,12,0.864 C18.144,0.864,23.136,5.856,23.136,12z M16.248,11.28c-0.264,0-0.6,0-1.032,0.024l0.312-0.528h0.504c1.8,0,3.144,0.096,4.368,0.312 l0.552-0.528c-1.368-0.24-3.024-0.384-4.704-0.384H15.84l0.264-0.504h0.456c1.752,0,3.336,0.144,4.872,0.432l0.576-0.552 c-1.728-0.336-3.576-0.503-5.568-0.503c-0.849,0.003-1.698,0.043-2.544,0.12c-0.96,2.063-2.496,3.264-4.224,3.24 C9,12.384,8.159,12.097,7.08,11.52l-1.008-0.576l0.312-0.288l2.328,1.008l0.504-0.384L4.512,9.144l-0.72,0.552L2.112,9l0.024,0.696 c2.256,1.032,3.192,1.608,5.568,3.312c3.096,2.208,5.856,3.408,9.696,4.176l1.008-0.96h-0.24c-2.544,0-4.824-0.84-6.144-2.256 c1.104-0.672,2.471-0.983,4.368-0.983c0.504,0,1.224,0.047,1.896,0.119l0.576-0.552c-0.9-0.11-1.805-0.166-2.712-0.168 c-0.609-0.001-1.217,0.023-1.824,0.072l0.432-0.528c0.511-0.03,1.024-0.046,1.536-0.048c1.272,0,2.112,0.048,3.072,0.192 l0.552-0.528C18.912,11.377,17.52,11.28,16.248,11.28z" }) + ] + } + ); +}); + +exports.default = SiLufthansa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.d.ts new file mode 100644 index 000000000..4c769d072 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05164D"; +declare const SiLufthansa: IconType; +export { SiLufthansa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.mjs new file mode 100644 index 000000000..bfa9e488d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLufthansa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05164D"; +const SiLufthansa = React.forwardRef(function SiLufthansa2({ title = "Lufthansa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24,12c0-6.648-5.352-12-12-12C5.376,0,0,5.352,0,12c0,6.624,5.376,12,12,12C18.648,24,24,18.624,24,12z M23.136,12c0,6.12-4.992,11.136-11.136,11.136C5.88,23.136,0.864,18.121,0.864,12C0.864,5.856,5.88,0.864,12,0.864 C18.144,0.864,23.136,5.856,23.136,12z M16.248,11.28c-0.264,0-0.6,0-1.032,0.024l0.312-0.528h0.504c1.8,0,3.144,0.096,4.368,0.312 l0.552-0.528c-1.368-0.24-3.024-0.384-4.704-0.384H15.84l0.264-0.504h0.456c1.752,0,3.336,0.144,4.872,0.432l0.576-0.552 c-1.728-0.336-3.576-0.503-5.568-0.503c-0.849,0.003-1.698,0.043-2.544,0.12c-0.96,2.063-2.496,3.264-4.224,3.24 C9,12.384,8.159,12.097,7.08,11.52l-1.008-0.576l0.312-0.288l2.328,1.008l0.504-0.384L4.512,9.144l-0.72,0.552L2.112,9l0.024,0.696 c2.256,1.032,3.192,1.608,5.568,3.312c3.096,2.208,5.856,3.408,9.696,4.176l1.008-0.96h-0.24c-2.544,0-4.824-0.84-6.144-2.256 c1.104-0.672,2.471-0.983,4.368-0.983c0.504,0,1.224,0.047,1.896,0.119l0.576-0.552c-0.9-0.11-1.805-0.166-2.712-0.168 c-0.609-0.001-1.217,0.023-1.824,0.072l0.432-0.528c0.511-0.03,1.024-0.046,1.536-0.048c1.272,0,2.112,0.048,3.072,0.192 l0.552-0.528C18.912,11.377,17.52,11.28,16.248,11.28z" }) + ] + } + ); +}); + +export { SiLufthansa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.cjs new file mode 100644 index 000000000..e1a566282 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E74430"; +const SiLumen = React__namespace.forwardRef(function SiLumen2({ title = "Lumen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.649 0a.75.75 0 00-.342.072l-4.878 2.23a.75.751 0 10.624 1.366l4.878-2.23A.75.75 0 0011.649 0zm5.624.354a.75.75 0 00-.341.074L6.425 5.306a.75.75 0 00.632 1.362L17.563 1.79a.75.75 0 00-.29-1.436zm0 3.002a.75.75 0 00-.341.074L6.425 8.31a.75.75 0 00.632 1.362l10.506-4.88a.75.75 0 00-.29-1.436zm0 3.002a.75.75 0 00-.341.074L6.425 11.311a.75.75 0 00.632 1.361l10.506-4.878a.75.75 0 00-.29-1.436zm.009 3.003a.75.75 0 00-.342.07l-3.753 1.688a.75.75 0 00-.442.685v3.518a.75.75 0 00.001.047h-1.503a.75.75 0 000-.047v-2.58a.75.75 0 00-.761-.761.75.75 0 00-.74.761v2.58a.75.75 0 00.002.047h-.94a.461.461 0 00-.47.555l.19 1.14a.687.687 0 00.656.557h2.28l-2.537.476a.375.375 0 10.139.737l6.003-1.126a.375.375 0 00.307-.41.625.625 0 00.092-.232l.19-1.142a.461.461 0 00-.47-.555h-.94a.75.75 0 00.002-.047V12.29l3.31-1.49a.75.75 0 00-.274-1.438zm-2.292 9.385a.375.375 0 00-.063.007l-6.004 1.126a.375.375 0 10.139.737l6.003-1.125a.375.375 0 00-.075-.745zm0 1.876a.375.375 0 00-.063.008l-6.004 1.125a.375.375 0 10.139.737l6.003-1.125a.375.375 0 00-.075-.745zm-.743 1.876a.375.375 0 00-.064.006l-4.471.751a.375.375 0 10.124.74l4.472-.75a.375.375 0 00-.061-.747z" }) + ] + } + ); +}); + +exports.default = SiLumen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.d.ts new file mode 100644 index 000000000..60294f9e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E74430"; +declare const SiLumen: IconType; +export { SiLumen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.mjs new file mode 100644 index 000000000..31499b889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLumen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E74430"; +const SiLumen = React.forwardRef(function SiLumen2({ title = "Lumen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.649 0a.75.75 0 00-.342.072l-4.878 2.23a.75.751 0 10.624 1.366l4.878-2.23A.75.75 0 0011.649 0zm5.624.354a.75.75 0 00-.341.074L6.425 5.306a.75.75 0 00.632 1.362L17.563 1.79a.75.75 0 00-.29-1.436zm0 3.002a.75.75 0 00-.341.074L6.425 8.31a.75.75 0 00.632 1.362l10.506-4.88a.75.75 0 00-.29-1.436zm0 3.002a.75.75 0 00-.341.074L6.425 11.311a.75.75 0 00.632 1.361l10.506-4.878a.75.75 0 00-.29-1.436zm.009 3.003a.75.75 0 00-.342.07l-3.753 1.688a.75.75 0 00-.442.685v3.518a.75.75 0 00.001.047h-1.503a.75.75 0 000-.047v-2.58a.75.75 0 00-.761-.761.75.75 0 00-.74.761v2.58a.75.75 0 00.002.047h-.94a.461.461 0 00-.47.555l.19 1.14a.687.687 0 00.656.557h2.28l-2.537.476a.375.375 0 10.139.737l6.003-1.126a.375.375 0 00.307-.41.625.625 0 00.092-.232l.19-1.142a.461.461 0 00-.47-.555h-.94a.75.75 0 00.002-.047V12.29l3.31-1.49a.75.75 0 00-.274-1.438zm-2.292 9.385a.375.375 0 00-.063.007l-6.004 1.126a.375.375 0 10.139.737l6.003-1.125a.375.375 0 00-.075-.745zm0 1.876a.375.375 0 00-.063.008l-6.004 1.125a.375.375 0 10.139.737l6.003-1.125a.375.375 0 00-.075-.745zm-.743 1.876a.375.375 0 00-.064.006l-4.471.751a.375.375 0 10.124.74l4.472-.75a.375.375 0 00-.061-.747z" }) + ] + } + ); +}); + +export { SiLumen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.cjs new file mode 100644 index 000000000..ef32030a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#179DE3"; +const SiLunacy = React__namespace.forwardRef(function SiLunacy2({ title = "Lunacy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.031 6h-6v12h11.996v-6l-5.996 5.996Zm6.563 2.309a4.013 4.013 0 0 1-2.371-2.375 4.03 4.03 0 0 1-2.375 2.375 4.04 4.04 0 0 1 2.375 2.375 4.013 4.013 0 0 1 2.37-2.375ZM0 9.602c0-3.364 0-5.043.652-6.325A6.044 6.044 0 0 1 3.277.652C4.56 0 6.238 0 9.602 0h4.796c3.364 0 5.043 0 6.325.652a6.044 6.044 0 0 1 2.625 2.625C24 4.56 24 6.238 24 9.602v4.796c0 3.364 0 5.043-.652 6.325a6.044 6.044 0 0 1-2.625 2.625C19.44 24 17.762 24 14.398 24H9.602c-3.364 0-5.043 0-6.325-.652a6.044 6.044 0 0 1-2.625-2.625C0 19.44 0 17.762 0 14.398Z" }) + ] + } + ); +}); + +exports.default = SiLunacy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.d.ts new file mode 100644 index 000000000..3637d260b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#179DE3"; +declare const SiLunacy: IconType; +export { SiLunacy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.mjs new file mode 100644 index 000000000..8287baa57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLunacy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#179DE3"; +const SiLunacy = React.forwardRef(function SiLunacy2({ title = "Lunacy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.031 6h-6v12h11.996v-6l-5.996 5.996Zm6.563 2.309a4.013 4.013 0 0 1-2.371-2.375 4.03 4.03 0 0 1-2.375 2.375 4.04 4.04 0 0 1 2.375 2.375 4.013 4.013 0 0 1 2.37-2.375ZM0 9.602c0-3.364 0-5.043.652-6.325A6.044 6.044 0 0 1 3.277.652C4.56 0 6.238 0 9.602 0h4.796c3.364 0 5.043 0 6.325.652a6.044 6.044 0 0 1 2.625 2.625C24 4.56 24 6.238 24 9.602v4.796c0 3.364 0 5.043-.652 6.325a6.044 6.044 0 0 1-2.625 2.625C19.44 24 17.762 24 14.398 24H9.602c-3.364 0-5.043 0-6.325-.652a6.044 6.044 0 0 1-2.625-2.625C0 19.44 0 17.762 0 14.398Z" }) + ] + } + ); +}); + +export { SiLunacy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.cjs new file mode 100644 index 000000000..5b478fb4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5B9BD5"; +const SiLuogu = React__namespace.forwardRef(function SiLuogu2({ title = "Luogu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.424 0c-.435-.005-.964.138-1.569.65-.967.817-2.554 3.235-3.56 4.38s-2.002 1.65-2.48 2.493c-.477.844-.824 1.598-.385 2.568s2.308 2.592 3.018 3.247.724.566 1.24.68c.517.113 1.38.188 1.857 0 .478-.19.993-.63 1.006-1.133s-.515-1.409-.928-1.887c-.413-.479-1.213-.769-1.549-.983s-.373-.076-.463-.303-.413-.59-.078-1.056c.336-.466 1.38-1.033 2.09-1.738s1.625-1.61 2.167-2.492 1.06-2.064 1.085-2.794C13.901.902 13.603.285 13.1.12a2.2 2.2 0 0 0-.676-.12m-.397 6.936c-.243.008-.443.037-.566.097-.492.24-.48.997-.151 1.515s1.618 1.223 2.124 1.59c.505.366.883.292.908.607.026.316.102.315-.757 1.287-.86.973-3.222 3.371-4.397 4.546-1.175 1.174-1.77 1.503-2.654 2.5S4.259 21.78 3.88 22.563s-.15.997.38 1.212c.531.214 2.11.34 2.804.075.695-.265.822-1.034 1.365-1.666.543-.63.721-.859 1.896-2.122.472-.507 1.242-1.32 1.998-2.118.048.151.126.324.243.525.423.727 1.922 2.219 2.537 3.009s.77 1.33 1.154 1.73c.384.402.55.564 1.152.677.602.112 1.998.188 2.459 0 .461-.189.552-.576.308-1.127-.243-.552-1.346-1.555-1.768-2.182-.423-.627-1.243-2.095-1.845-2.71s-1.025-.776-1.768-.977c-.43-.115-.982-.11-1.444-.034.769-.811 1.564-1.647 2.129-2.246 1.415-1.503 2.88-2.614 3.335-3.56.455-.948-.214-1.492-.606-2.123-.391-.631-1.124-1.363-1.743-1.666-.62-.303-1.151-.1-1.972-.151-.616-.038-1.737-.197-2.467-.173" }) + ] + } + ); +}); + +exports.default = SiLuogu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.d.ts new file mode 100644 index 000000000..b5c3fd256 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5B9BD5"; +declare const SiLuogu: IconType; +export { SiLuogu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.mjs new file mode 100644 index 000000000..ea6f6da78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLuogu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5B9BD5"; +const SiLuogu = React.forwardRef(function SiLuogu2({ title = "Luogu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.424 0c-.435-.005-.964.138-1.569.65-.967.817-2.554 3.235-3.56 4.38s-2.002 1.65-2.48 2.493c-.477.844-.824 1.598-.385 2.568s2.308 2.592 3.018 3.247.724.566 1.24.68c.517.113 1.38.188 1.857 0 .478-.19.993-.63 1.006-1.133s-.515-1.409-.928-1.887c-.413-.479-1.213-.769-1.549-.983s-.373-.076-.463-.303-.413-.59-.078-1.056c.336-.466 1.38-1.033 2.09-1.738s1.625-1.61 2.167-2.492 1.06-2.064 1.085-2.794C13.901.902 13.603.285 13.1.12a2.2 2.2 0 0 0-.676-.12m-.397 6.936c-.243.008-.443.037-.566.097-.492.24-.48.997-.151 1.515s1.618 1.223 2.124 1.59c.505.366.883.292.908.607.026.316.102.315-.757 1.287-.86.973-3.222 3.371-4.397 4.546-1.175 1.174-1.77 1.503-2.654 2.5S4.259 21.78 3.88 22.563s-.15.997.38 1.212c.531.214 2.11.34 2.804.075.695-.265.822-1.034 1.365-1.666.543-.63.721-.859 1.896-2.122.472-.507 1.242-1.32 1.998-2.118.048.151.126.324.243.525.423.727 1.922 2.219 2.537 3.009s.77 1.33 1.154 1.73c.384.402.55.564 1.152.677.602.112 1.998.188 2.459 0 .461-.189.552-.576.308-1.127-.243-.552-1.346-1.555-1.768-2.182-.423-.627-1.243-2.095-1.845-2.71s-1.025-.776-1.768-.977c-.43-.115-.982-.11-1.444-.034.769-.811 1.564-1.647 2.129-2.246 1.415-1.503 2.88-2.614 3.335-3.56.455-.948-.214-1.492-.606-2.123-.391-.631-1.124-1.363-1.743-1.666-.62-.303-1.151-.1-1.972-.151-.616-.038-1.737-.197-2.467-.173" }) + ] + } + ); +}); + +export { SiLuogu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.cjs new file mode 100644 index 000000000..bdc866b91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9900"; +const SiLutris = React__namespace.forwardRef(function SiLutris2({ title = "Lutris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.231 18.89.001-.002c-1.293 3.243-5.218 5.232-9.447 5.105C5.3 23.993 0 18.48 0 11.906S5.276.001 11.785.001c1.793 0 3.493.406 5.015 1.13.081-.177.271-.544.451-.557.238-.017.374.137.526.309.154.172.46.429.46.429s1.393-.481 2.955.377c1.563.858 1.783 1.116 2.09 1.716.152.301.195.829.2 1.282a.796.796 0 0 0-.07-.003c-.496 0-.96.455-.96 1.08 0 .263.082.496.215.678l-.01.007a1.505 1.505 0 0 0-.132.01 18.704 18.704 0 0 0-.389-.142 2.53 2.53 0 0 1-.82-.472 1.402 1.402 0 0 0-1.196-2.112c-.383 0-.73.156-.982.41-.472-.271-1.174-.482-2.527-.565l-.407-.011c-2.282.012-3.611.279-5.979 1.301-.603.283-1.206.615-1.785 1.001-.423.3-.639.67-.709 1.137a1.326 1.326 0 0 0 1.23 1.373h.042c1.27.06 2.039 1.99 2.063 2.497.004.05.004.023.003.08-.032.727-.37 1.267-1.088 1.246a1.231 1.231 0 0 1-.976-.494c-.063-.077-.103-.172-.159-.254-.666-1.081-1.732-1.36-2.771-1.523-.438-.068-1.073-.122-1.31.25a8.28 8.28 0 0 0-.577 3.063c-.02 5.036 4.041 9.118 9.026 9.118 2.575 0 5.349-.952 6.993-2.7l-.035.03c-1.772 1.473-4.66 1.941-6.027 1.941-4.302 0-7.818-3.232-7.818-7.578 0-1.276.288-2.396.814-3.36.495.183.947.483 1.28 1.022a.24.24 0 0 0 .013.021c.064.092.111.197.182.284.424.524.881.658 1.342.68h.01c.43.013.768-.12 1.024-.342.347-.3.55-.79.577-1.382v-.014c.002-.085 0-.053-.004-.112-.024-.376-.333-1.318-.906-2.027-.266-.331-.587-.607-.95-.774l.12-.074c.756-.457 2.364-.977 4.592-.638 1.13.173 2.055.419 3.483.879 1.657.534 2.579 1.279 3.854 1.427.15.017.301.018.45.003.41 1.129.634 2.35.634 3.621 0 2.068-.59 3.995-1.611 5.62zm1.947-12.274s-.115.201-.364.322c-.103.05-.282-.075-.45.1-.359.726.516 1.332.923 1.315.408-.017.73-.432.712-.793-.017-.558-.82-.944-.82-.944zm.234-1.432c.255 0 .462.26.462.58 0 .32-.207.58-.462.58-.254 0-.46-.26-.46-.58 0-.32.206-.58.46-.58zm-3.292-.951c.492 0 .89.403.89.9a.895.895 0 0 1-.89.898.895.895 0 0 1-.89-.899c0-.496.399-.899.89-.899z" }) + ] + } + ); +}); + +exports.default = SiLutris; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.d.ts new file mode 100644 index 000000000..9cc819de6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9900"; +declare const SiLutris: IconType; +export { SiLutris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.mjs new file mode 100644 index 000000000..336d6dd80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLutris.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9900"; +const SiLutris = React.forwardRef(function SiLutris2({ title = "Lutris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.231 18.89.001-.002c-1.293 3.243-5.218 5.232-9.447 5.105C5.3 23.993 0 18.48 0 11.906S5.276.001 11.785.001c1.793 0 3.493.406 5.015 1.13.081-.177.271-.544.451-.557.238-.017.374.137.526.309.154.172.46.429.46.429s1.393-.481 2.955.377c1.563.858 1.783 1.116 2.09 1.716.152.301.195.829.2 1.282a.796.796 0 0 0-.07-.003c-.496 0-.96.455-.96 1.08 0 .263.082.496.215.678l-.01.007a1.505 1.505 0 0 0-.132.01 18.704 18.704 0 0 0-.389-.142 2.53 2.53 0 0 1-.82-.472 1.402 1.402 0 0 0-1.196-2.112c-.383 0-.73.156-.982.41-.472-.271-1.174-.482-2.527-.565l-.407-.011c-2.282.012-3.611.279-5.979 1.301-.603.283-1.206.615-1.785 1.001-.423.3-.639.67-.709 1.137a1.326 1.326 0 0 0 1.23 1.373h.042c1.27.06 2.039 1.99 2.063 2.497.004.05.004.023.003.08-.032.727-.37 1.267-1.088 1.246a1.231 1.231 0 0 1-.976-.494c-.063-.077-.103-.172-.159-.254-.666-1.081-1.732-1.36-2.771-1.523-.438-.068-1.073-.122-1.31.25a8.28 8.28 0 0 0-.577 3.063c-.02 5.036 4.041 9.118 9.026 9.118 2.575 0 5.349-.952 6.993-2.7l-.035.03c-1.772 1.473-4.66 1.941-6.027 1.941-4.302 0-7.818-3.232-7.818-7.578 0-1.276.288-2.396.814-3.36.495.183.947.483 1.28 1.022a.24.24 0 0 0 .013.021c.064.092.111.197.182.284.424.524.881.658 1.342.68h.01c.43.013.768-.12 1.024-.342.347-.3.55-.79.577-1.382v-.014c.002-.085 0-.053-.004-.112-.024-.376-.333-1.318-.906-2.027-.266-.331-.587-.607-.95-.774l.12-.074c.756-.457 2.364-.977 4.592-.638 1.13.173 2.055.419 3.483.879 1.657.534 2.579 1.279 3.854 1.427.15.017.301.018.45.003.41 1.129.634 2.35.634 3.621 0 2.068-.59 3.995-1.611 5.62zm1.947-12.274s-.115.201-.364.322c-.103.05-.282-.075-.45.1-.359.726.516 1.332.923 1.315.408-.017.73-.432.712-.793-.017-.558-.82-.944-.82-.944zm.234-1.432c.255 0 .462.26.462.58 0 .32-.207.58-.462.58-.254 0-.46-.26-.46-.58 0-.32.206-.58.46-.58zm-3.292-.951c.492 0 .89.403.89.9a.895.895 0 0 1-.89.898.895.895 0 0 1-.89-.899c0-.496.399-.899.89-.899z" }) + ] + } + ); +}); + +export { SiLutris as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.cjs new file mode 100644 index 000000000..8ebc6e446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#343839"; +const SiLvgl = React__namespace.forwardRef(function SiLvgl2({ title = "LVGL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.23 16.615h5.54c.51 0 .922.412.922.923v5.539a.921.921 0 0 1-.923.923H9.231a.921.921 0 0 1-.923-.923v-5.539c0-.511.411-.923.923-.923zM0 17.538c0-.51.413-.923.923-.923h5.539c.51 0 .923.413.923.923v5.539c0 .51-.414.923-.923.923H2.769A2.77 2.77 0 0 1 0 21.23zm.923-9.23h5.539c.511 0 .923.411.923.922v5.539a.921.921 0 0 1-.923.923H.923A.921.921 0 0 1 0 14.769V9.23c0-.511.412-.923.923-.923zM2.77 0A2.77 2.77 0 0 0 0 2.769V6.46c0 .51.413.923.923.923h5.539c1.02 0 1.846.827 1.846 1.846v5.539c0 .51.413.923.923.923h5.538c1.02 0 1.847.826 1.847 1.846v5.539c0 .51.413.923.923.923h3.692A2.77 2.77 0 0 0 24 21.23V2.77a2.77 2.77 0 0 0-2.77-2.77zm18 1.846a1.385 1.385 0 1 1 0 2.769 1.385 1.385 0 0 1 0-2.77z" }) + ] + } + ); +}); + +exports.default = SiLvgl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.d.ts new file mode 100644 index 000000000..8377a62ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#343839"; +declare const SiLvgl: IconType; +export { SiLvgl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.mjs new file mode 100644 index 000000000..143c32139 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLvgl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#343839"; +const SiLvgl = React.forwardRef(function SiLvgl2({ title = "LVGL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.23 16.615h5.54c.51 0 .922.412.922.923v5.539a.921.921 0 0 1-.923.923H9.231a.921.921 0 0 1-.923-.923v-5.539c0-.511.411-.923.923-.923zM0 17.538c0-.51.413-.923.923-.923h5.539c.51 0 .923.413.923.923v5.539c0 .51-.414.923-.923.923H2.769A2.77 2.77 0 0 1 0 21.23zm.923-9.23h5.539c.511 0 .923.411.923.922v5.539a.921.921 0 0 1-.923.923H.923A.921.921 0 0 1 0 14.769V9.23c0-.511.412-.923.923-.923zM2.77 0A2.77 2.77 0 0 0 0 2.769V6.46c0 .51.413.923.923.923h5.539c1.02 0 1.846.827 1.846 1.846v5.539c0 .51.413.923.923.923h5.538c1.02 0 1.847.826 1.847 1.846v5.539c0 .51.413.923.923.923h3.692A2.77 2.77 0 0 0 24 21.23V2.77a2.77 2.77 0 0 0-2.77-2.77zm18 1.846a1.385 1.385 0 1 1 0 2.769 1.385 1.385 0 0 1 0-2.77z" }) + ] + } + ); +}); + +export { SiLvgl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.cjs new file mode 100644 index 000000000..e9e6286e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0180FF"; +const SiLydia = React__namespace.forwardRef(function SiLydia2({ title = "Lydia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.895 17.611a.421.421 0 01-.168.035h-1.155a.608.608 0 01-.56-.377l-4-9.613-3.991 9.607a.61.61 0 01-.56.377H6.273a.42.42 0 01-.385-.59L10.91 5.575a.793.793 0 01.726-.475h.748a.792.792 0 01.726.48l5.003 11.482a.42.42 0 01-.218.549z" }) + ] + } + ); +}); + +exports.default = SiLydia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.d.ts new file mode 100644 index 000000000..9cda248c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0180FF"; +declare const SiLydia: IconType; +export { SiLydia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.mjs new file mode 100644 index 000000000..278cdbea9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLydia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0180FF"; +const SiLydia = React.forwardRef(function SiLydia2({ title = "Lydia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.895 17.611a.421.421 0 01-.168.035h-1.155a.608.608 0 01-.56-.377l-4-9.613-3.991 9.607a.61.61 0 01-.56.377H6.273a.42.42 0 01-.385-.59L10.91 5.575a.793.793 0 01.726-.475h.748a.792.792 0 01.726.48l5.003 11.482a.42.42 0 01-.218.549z" }) + ] + } + ); +}); + +export { SiLydia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.cjs new file mode 100644 index 000000000..bab7c85c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF00BF"; +const SiLyft = React__namespace.forwardRef(function SiLyft2({ title = "Lyft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.38 15.883c.036.042.125.135.125.135s-.094.059-.152.086a3.046 3.046 0 0 1-1.28.286C1.593 16.39 0 15.29 0 12.878v-8.78h3.512v9.365c0 .95.306 1.781.867 2.42zM24 11.122V7.61h-1.253c-.524-2.76-3.425-4.574-6.341-3.484-1.624.607-2.943 2.548-2.943 4.282v7.979a1608.8 1608.8 0 0 0 .153 0 3.495 3.495 0 0 0 2.38-1.077c.632-.658.98-1.522.98-2.432h1.463V9.366h-1.463V8.4c0-.375.198-.726.526-.909.9-.5 1.815.143 1.815.996v3.22c0 1.273.48 2.456 1.354 3.329a4.666 4.666 0 0 0 3.178 1.351H24v-3.51a1.17 1.17 0 0 1-1.17-1.17v-.586H24zm-14.927 1.17a.585.585 0 0 1-1.17 0V7.61H4.39v5.853a2.928 2.928 0 0 0 4.83 2.224c-.055.433-.294.792-.69 1.04-.373.234-.857.357-1.402.357a3.83 3.83 0 0 1-1.65-.382s-.093-.044-.21-.11v3.119a6.65 6.65 0 0 0 2.468.484c1.312 0 2.51-.41 3.371-1.155.967-.836 1.478-2.056 1.478-3.528V7.61H9.073v4.683z" }) + ] + } + ); +}); + +exports.default = SiLyft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.d.ts new file mode 100644 index 000000000..8761b340c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF00BF"; +declare const SiLyft: IconType; +export { SiLyft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.mjs new file mode 100644 index 000000000..1ee680ad9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiLyft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF00BF"; +const SiLyft = React.forwardRef(function SiLyft2({ title = "Lyft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.38 15.883c.036.042.125.135.125.135s-.094.059-.152.086a3.046 3.046 0 0 1-1.28.286C1.593 16.39 0 15.29 0 12.878v-8.78h3.512v9.365c0 .95.306 1.781.867 2.42zM24 11.122V7.61h-1.253c-.524-2.76-3.425-4.574-6.341-3.484-1.624.607-2.943 2.548-2.943 4.282v7.979a1608.8 1608.8 0 0 0 .153 0 3.495 3.495 0 0 0 2.38-1.077c.632-.658.98-1.522.98-2.432h1.463V9.366h-1.463V8.4c0-.375.198-.726.526-.909.9-.5 1.815.143 1.815.996v3.22c0 1.273.48 2.456 1.354 3.329a4.666 4.666 0 0 0 3.178 1.351H24v-3.51a1.17 1.17 0 0 1-1.17-1.17v-.586H24zm-14.927 1.17a.585.585 0 0 1-1.17 0V7.61H4.39v5.853a2.928 2.928 0 0 0 4.83 2.224c-.055.433-.294.792-.69 1.04-.373.234-.857.357-1.402.357a3.83 3.83 0 0 1-1.65-.382s-.093-.044-.21-.11v3.119a6.65 6.65 0 0 0 2.468.484c1.312 0 2.51-.41 3.371-1.155.967-.836 1.478-2.056 1.478-3.528V7.61H9.073v4.683z" }) + ] + } + ); +}); + +export { SiLyft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.cjs new file mode 100644 index 000000000..ab88a9eb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E95420"; +const SiMaas = React__namespace.forwardRef(function SiMaas2({ title = "MAAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.426 0v24h15.148V0Zm3.357 10.385c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.044.212h7.928c.218 0 .39.173.397.384v.512a.395.395 0 0 1-.391.384H8.827c.006-.013.012-.02.019-.032a1.22 1.22 0 0 0-.02-1.248m-1.121 2.83c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.198h8.012c.218 0 .39.173.39.378v.513a.395.395 0 0 1-.39.384h-8q.012-.001.013-.013c.16-.275.206-.608.122-.922a1.1 1.1 0 0 0-.147-.34M7.706 16.47c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012c.218 0 .39.172.39.384v.512a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.248m-1.037 2.83c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012a.38.38 0 0 1 .39.384v.513a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.249" }) + ] + } + ); +}); + +exports.default = SiMaas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.d.ts new file mode 100644 index 000000000..79cfc8405 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E95420"; +declare const SiMaas: IconType; +export { SiMaas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.mjs new file mode 100644 index 000000000..9a3d6bc34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E95420"; +const SiMaas = React.forwardRef(function SiMaas2({ title = "MAAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.426 0v24h15.148V0Zm3.357 10.385c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.044.212h7.928c.218 0 .39.173.397.384v.512a.395.395 0 0 1-.391.384H8.827c.006-.013.012-.02.019-.032a1.22 1.22 0 0 0-.02-1.248m-1.121 2.83c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.198h8.012c.218 0 .39.173.39.378v.513a.395.395 0 0 1-.39.384h-8q.012-.001.013-.013c.16-.275.206-.608.122-.922a1.1 1.1 0 0 0-.147-.34M7.706 16.47c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012c.218 0 .39.172.39.384v.512a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.248m-1.037 2.83c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012a.38.38 0 0 1 .39.384v.513a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.249" }) + ] + } + ); +}); + +export { SiMaas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.cjs new file mode 100644 index 000000000..48a251fe6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMacos = React__namespace.forwardRef(function SiMacos2({ title = "macOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 14.727h.941v-2.453c0-.484.318-.835.771-.835.439 0 .71.276.71.722v2.566h.915V12.25c0-.48.31-.812.764-.812.46 0 .718.28.718.77v2.518h.94v-2.748c0-.801-.517-1.334-1.307-1.334-.578 0-1.054.31-1.247.805h-.023c-.147-.514-.552-.805-1.118-.805-.545 0-.968.306-1.142.771H.903v-.695H0v4.006zm7.82-.646c-.408 0-.68-.208-.68-.537 0-.318.26-.522.714-.552l.926-.057v.307c0 .483-.427.839-.96.839zm-.284.71c.514 0 1.017-.268 1.248-.703h.018v.639h.908v-2.76c0-.804-.647-1.33-1.64-1.33-1.021 0-1.66.537-1.701 1.285h.873c.06-.332.344-.548.79-.548.464 0 .748.242.748.662v.287l-1.058.06c-.976.061-1.524.488-1.524 1.199 0 .721.564 1.209 1.338 1.209zm6.305-2.642c-.065-.843-.719-1.512-1.777-1.512-1.164 0-1.92.805-1.92 2.087 0 1.3.756 2.082 1.928 2.082 1.005 0 1.697-.59 1.772-1.485h-.888c-.087.453-.397.725-.873.725-.597 0-.982-.483-.982-1.322 0-.824.381-1.323.975-1.323.502 0 .8.321.876.748h.889zm2.906-2.967c-1.591 0-2.589 1.085-2.589 2.82 0 1.735.998 2.816 2.59 2.816 1.586 0 2.584-1.081 2.584-2.816 0-1.735-.997-2.82-2.585-2.82zm0 .832c.971 0 1.591.77 1.591 1.988 0 1.213-.62 1.984-1.59 1.984-.976 0-1.592-.77-1.592-1.984 0-1.217.616-1.988 1.591-1.988zm2.982 3.178c.042 1.006.866 1.626 2.12 1.626 1.32 0 2.151-.65 2.151-1.686 0-.813-.469-1.27-1.576-1.523l-.627-.144c-.67-.158-.945-.37-.945-.733 0-.453.415-.756 1.032-.756.623 0 1.05.306 1.096.817h.93c-.023-.96-.817-1.61-2.019-1.61-1.187 0-2.03.653-2.03 1.62 0 .78.477 1.263 1.482 1.494l.707.166c.688.163.967.39.967.782 0 .454-.457.779-1.115.779-.665 0-1.167-.329-1.228-.832h-.945z" }) + ] + } + ); +}); + +exports.default = SiMacos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.d.ts new file mode 100644 index 000000000..b60eb031a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMacos: IconType; +export { SiMacos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.mjs new file mode 100644 index 000000000..1eb201690 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMacos = React.forwardRef(function SiMacos2({ title = "macOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 14.727h.941v-2.453c0-.484.318-.835.771-.835.439 0 .71.276.71.722v2.566h.915V12.25c0-.48.31-.812.764-.812.46 0 .718.28.718.77v2.518h.94v-2.748c0-.801-.517-1.334-1.307-1.334-.578 0-1.054.31-1.247.805h-.023c-.147-.514-.552-.805-1.118-.805-.545 0-.968.306-1.142.771H.903v-.695H0v4.006zm7.82-.646c-.408 0-.68-.208-.68-.537 0-.318.26-.522.714-.552l.926-.057v.307c0 .483-.427.839-.96.839zm-.284.71c.514 0 1.017-.268 1.248-.703h.018v.639h.908v-2.76c0-.804-.647-1.33-1.64-1.33-1.021 0-1.66.537-1.701 1.285h.873c.06-.332.344-.548.79-.548.464 0 .748.242.748.662v.287l-1.058.06c-.976.061-1.524.488-1.524 1.199 0 .721.564 1.209 1.338 1.209zm6.305-2.642c-.065-.843-.719-1.512-1.777-1.512-1.164 0-1.92.805-1.92 2.087 0 1.3.756 2.082 1.928 2.082 1.005 0 1.697-.59 1.772-1.485h-.888c-.087.453-.397.725-.873.725-.597 0-.982-.483-.982-1.322 0-.824.381-1.323.975-1.323.502 0 .8.321.876.748h.889zm2.906-2.967c-1.591 0-2.589 1.085-2.589 2.82 0 1.735.998 2.816 2.59 2.816 1.586 0 2.584-1.081 2.584-2.816 0-1.735-.997-2.82-2.585-2.82zm0 .832c.971 0 1.591.77 1.591 1.988 0 1.213-.62 1.984-1.59 1.984-.976 0-1.592-.77-1.592-1.984 0-1.217.616-1.988 1.591-1.988zm2.982 3.178c.042 1.006.866 1.626 2.12 1.626 1.32 0 2.151-.65 2.151-1.686 0-.813-.469-1.27-1.576-1.523l-.627-.144c-.67-.158-.945-.37-.945-.733 0-.453.415-.756 1.032-.756.623 0 1.05.306 1.096.817h.93c-.023-.96-.817-1.61-2.019-1.61-1.187 0-2.03.653-2.03 1.62 0 .78.477 1.263 1.482 1.494l.707.166c.688.163.967.39.967.782 0 .454-.457.779-1.115.779-.665 0-1.167-.329-1.228-.832h-.945z" }) + ] + } + ); +}); + +export { SiMacos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.cjs new file mode 100644 index 000000000..426e963e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMacpaw = React__namespace.forwardRef(function SiMacpaw2({ title = "MacPaw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.622.21c.235-.126 1.12-.432 1.38.06.26.492-.483 1.061-.736 1.196-.252.136-.664.122-.898-.321A.675.675 0 0 1 9.622.21zm2.634 4.822c.236-.126 1.12-.431 1.38.06.26.492-.482 1.061-.735 1.196-.253.136-.664.123-.899-.32a.675.675 0 0 1 .254-.936ZM12 24a11.403 11.403 0 0 1-8.08-3.345 11.38 11.38 0 0 1-3.35-8.077 11.378 11.378 0 0 1 3.35-8.077 11.392 11.392 0 0 1 3.632-2.446 2.835 2.835 0 0 1 3.719 1.508 2.84 2.84 0 0 1-1.508 3.716c-.684.289-1.3.704-1.83 1.233a5.71 5.71 0 0 0-1.684 4.067 5.705 5.705 0 0 0 1.684 4.065A5.727 5.727 0 0 0 12 18.327a5.727 5.727 0 0 0 4.068-1.683 5.712 5.712 0 0 0 1.685-4.065 2.84 2.84 0 0 1 2.838-2.837 2.84 2.84 0 0 1 2.838 2.836 11.34 11.34 0 0 1-.9 4.447 11.367 11.367 0 0 1-2.447 3.63A11.422 11.422 0 0 1 12 24Zm.426-21.111c.263-.14 1.346-.533 1.635.016.29.549-.633 1.235-.915 1.386-.282.15-.742.136-1.003-.359a.754.754 0 0 1 .283-1.043Zm-1.004-1.806c.263-.14 1.32-.518 1.61.03.29.55-.608 1.221-.89 1.372-.282.151-.741.136-1.003-.358a.754.754 0 0 1 .283-1.044Z" }) + ] + } + ); +}); + +exports.default = SiMacpaw; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.d.ts new file mode 100644 index 000000000..12b07e6ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMacpaw: IconType; +export { SiMacpaw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.mjs new file mode 100644 index 000000000..0df27679e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacpaw.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMacpaw = React.forwardRef(function SiMacpaw2({ title = "MacPaw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.622.21c.235-.126 1.12-.432 1.38.06.26.492-.483 1.061-.736 1.196-.252.136-.664.122-.898-.321A.675.675 0 0 1 9.622.21zm2.634 4.822c.236-.126 1.12-.431 1.38.06.26.492-.482 1.061-.735 1.196-.253.136-.664.123-.899-.32a.675.675 0 0 1 .254-.936ZM12 24a11.403 11.403 0 0 1-8.08-3.345 11.38 11.38 0 0 1-3.35-8.077 11.378 11.378 0 0 1 3.35-8.077 11.392 11.392 0 0 1 3.632-2.446 2.835 2.835 0 0 1 3.719 1.508 2.84 2.84 0 0 1-1.508 3.716c-.684.289-1.3.704-1.83 1.233a5.71 5.71 0 0 0-1.684 4.067 5.705 5.705 0 0 0 1.684 4.065A5.727 5.727 0 0 0 12 18.327a5.727 5.727 0 0 0 4.068-1.683 5.712 5.712 0 0 0 1.685-4.065 2.84 2.84 0 0 1 2.838-2.837 2.84 2.84 0 0 1 2.838 2.836 11.34 11.34 0 0 1-.9 4.447 11.367 11.367 0 0 1-2.447 3.63A11.422 11.422 0 0 1 12 24Zm.426-21.111c.263-.14 1.346-.533 1.635.016.29.549-.633 1.235-.915 1.386-.282.15-.742.136-1.003-.359a.754.754 0 0 1 .283-1.043Zm-1.004-1.806c.263-.14 1.32-.518 1.61.03.29.55-.608 1.221-.89 1.372-.282.151-.741.136-1.003-.358a.754.754 0 0 1 .283-1.044Z" }) + ] + } + ); +}); + +export { SiMacpaw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.cjs new file mode 100644 index 000000000..0048afa23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E79E9"; +const SiMacports = React__namespace.forwardRef(function SiMacports2({ title = "MacPorts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.055 4.154c-1.323 0-2.395 1.16-2.395 2.593v10.506c0 1.432 1.072 2.593 2.395 2.593h7.55c1.323 0 2.395-1.161 2.395-2.593V6.747c0-1.432-1.072-2.593-2.395-2.593zm3.604 3.004c1.34 0 2.296.256 2.938.77.628.485 1.027 1.283 1.027 2.225 0 .941-.3 1.754-.884 2.282-.742.685-1.84 1.013-3.124 1.013-.285 0-.542-.015-.741-.057v3.451H14.72V7.357c.67-.114 1.612-.2 2.938-.2zM.614 7.193 0 16.807h2.011l.186-3.652c.057-1.198.114-2.681.156-3.979h.029c.243 1.255.557 2.624.87 3.765L4.28 16.65h1.697l1.17-3.751A60.6 60.6 0 0 0 8.23 9.176h.029c0 1.398.042 2.796.085 3.95l.157 3.68h2.11L10.1 7.194H7.246l-1.013 3.195a53.196 53.196 0 0 0-.913 3.452h-.057a41.43 41.43 0 0 0-.813-3.438L3.51 7.193zm17.145 1.62c-.428 0-.727.028-.884.07v2.839c.185.043.399.057.727.057 1.155 0 1.868-.585 1.868-1.555 0-.884-.613-1.412-1.711-1.412z" }) + ] + } + ); +}); + +exports.default = SiMacports; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.d.ts new file mode 100644 index 000000000..425cadaf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E79E9"; +declare const SiMacports: IconType; +export { SiMacports as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.mjs new file mode 100644 index 000000000..5285b6a11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacports.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E79E9"; +const SiMacports = React.forwardRef(function SiMacports2({ title = "MacPorts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.055 4.154c-1.323 0-2.395 1.16-2.395 2.593v10.506c0 1.432 1.072 2.593 2.395 2.593h7.55c1.323 0 2.395-1.161 2.395-2.593V6.747c0-1.432-1.072-2.593-2.395-2.593zm3.604 3.004c1.34 0 2.296.256 2.938.77.628.485 1.027 1.283 1.027 2.225 0 .941-.3 1.754-.884 2.282-.742.685-1.84 1.013-3.124 1.013-.285 0-.542-.015-.741-.057v3.451H14.72V7.357c.67-.114 1.612-.2 2.938-.2zM.614 7.193 0 16.807h2.011l.186-3.652c.057-1.198.114-2.681.156-3.979h.029c.243 1.255.557 2.624.87 3.765L4.28 16.65h1.697l1.17-3.751A60.6 60.6 0 0 0 8.23 9.176h.029c0 1.398.042 2.796.085 3.95l.157 3.68h2.11L10.1 7.194H7.246l-1.013 3.195a53.196 53.196 0 0 0-.913 3.452h-.057a41.43 41.43 0 0 0-.813-3.438L3.51 7.193zm17.145 1.62c-.428 0-.727.028-.884.07v2.839c.185.043.399.057.727.057 1.155 0 1.868-.585 1.868-1.555 0-.884-.613-1.412-1.711-1.412z" }) + ] + } + ); +}); + +export { SiMacports as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.cjs new file mode 100644 index 000000000..0b3a3d5d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E21A2C"; +const SiMacys = React__namespace.forwardRef(function SiMacys2({ title = "Macys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.015.624L9.19 9.293H0l7.445 5.384-2.819 8.673L12 17.986l7.422 5.393-2.835-8.713L24 9.292h-9.162L12.015.622v.002z" }) + ] + } + ); +}); + +exports.default = SiMacys; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.d.ts new file mode 100644 index 000000000..43c6f1efa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E21A2C"; +declare const SiMacys: IconType; +export { SiMacys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.mjs new file mode 100644 index 000000000..e8d421f77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMacys.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E21A2C"; +const SiMacys = React.forwardRef(function SiMacys2({ title = "Macys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.015.624L9.19 9.293H0l7.445 5.384-2.819 8.673L12 17.986l7.422 5.393-2.835-8.713L24 9.292h-9.162L12.015.622v.002z" }) + ] + } + ); +}); + +export { SiMacys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.cjs new file mode 100644 index 000000000..0af0c6bba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E71B34"; +const SiMagasinsu = React__namespace.forwardRef(function SiMagasinsu2({ title = "Magasins U", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.49 7.179h-3.51c-.642 0-.73.26-.73.654v5.7c-.044 1.305-.53 1.723-1.46 1.723-.956 0-1.444-.44-1.464-1.828V7.833c0-.393-.092-.654-.734-.654h-3.51v6.78c0 1.5.29 2.134.912 2.778.962 1 2.645 1.423 4.794 1.423 2.15 0 3.834-.422 4.798-1.423.62-.644.911-1.278.911-2.778zM14.26.906C8.425-.23 2.7 3.809 1.47 9.924.246 16.042 3.98 21.92 9.817 23.054c5.84 1.132 11.565-2.905 12.792-9.02C23.834 7.917 20.1 2.038 14.261.904m-2.465 21.384c-5.664 0-10.253-4.582-10.253-10.234 0-5.65 4.59-10.23 10.253-10.23 5.661 0 10.253 4.58 10.253 10.23 0 5.652-4.592 10.234-10.253 10.234M.026 11.136C-.4 17.289 4.367 22.646 10.869 23.2c-.348-.03-.699-.08-1.052-.147C3.981 21.92.244 16.04 1.471 9.924 2.69 3.85 8.346-.172 14.14.884c-.488-.094-.98-.16-1.486-.196C6.041.235.46 4.91.028 11.138M13.388.755a7.678 7.678 0 0 0-.774-.037 9.913 9.913 0 0 1 1.648.186c5.836 1.134 9.573 7.01 8.346 13.128-1.228 6.114-6.953 10.153-12.79 9.02a10.052 10.052 0 0 1-.767-.182c.992.306 2.06.473 3.183.473 1.126 0 1.996-.152 2.827-.34 3.604-.816 6.523-3.342 7.98-6.506.635-1.421.961-2.96.959-4.515-.001-6.26-4.916-10.743-10.613-11.226" }) + ] + } + ); +}); + +exports.default = SiMagasinsu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.d.ts new file mode 100644 index 000000000..1d9b18328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E71B34"; +declare const SiMagasinsu: IconType; +export { SiMagasinsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.mjs new file mode 100644 index 000000000..426b7319a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagasinsu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E71B34"; +const SiMagasinsu = React.forwardRef(function SiMagasinsu2({ title = "Magasins U", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.49 7.179h-3.51c-.642 0-.73.26-.73.654v5.7c-.044 1.305-.53 1.723-1.46 1.723-.956 0-1.444-.44-1.464-1.828V7.833c0-.393-.092-.654-.734-.654h-3.51v6.78c0 1.5.29 2.134.912 2.778.962 1 2.645 1.423 4.794 1.423 2.15 0 3.834-.422 4.798-1.423.62-.644.911-1.278.911-2.778zM14.26.906C8.425-.23 2.7 3.809 1.47 9.924.246 16.042 3.98 21.92 9.817 23.054c5.84 1.132 11.565-2.905 12.792-9.02C23.834 7.917 20.1 2.038 14.261.904m-2.465 21.384c-5.664 0-10.253-4.582-10.253-10.234 0-5.65 4.59-10.23 10.253-10.23 5.661 0 10.253 4.58 10.253 10.23 0 5.652-4.592 10.234-10.253 10.234M.026 11.136C-.4 17.289 4.367 22.646 10.869 23.2c-.348-.03-.699-.08-1.052-.147C3.981 21.92.244 16.04 1.471 9.924 2.69 3.85 8.346-.172 14.14.884c-.488-.094-.98-.16-1.486-.196C6.041.235.46 4.91.028 11.138M13.388.755a7.678 7.678 0 0 0-.774-.037 9.913 9.913 0 0 1 1.648.186c5.836 1.134 9.573 7.01 8.346 13.128-1.228 6.114-6.953 10.153-12.79 9.02a10.052 10.052 0 0 1-.767-.182c.992.306 2.06.473 3.183.473 1.126 0 1.996-.152 2.827-.34 3.604-.816 6.523-3.342 7.98-6.506.635-1.421.961-2.96.959-4.515-.001-6.26-4.916-10.743-10.613-11.226" }) + ] + } + ); +}); + +export { SiMagasinsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.cjs new file mode 100644 index 000000000..05fdbeaea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6851FF"; +const SiMagic = React__namespace.forwardRef(function SiMagic2({ title = "Magic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a29.658 29.658 0 0 1-3.611 3.53A27.326 27.326 0 0 1 9.729 12c0 2.948-.47 5.792-1.34 8.47A29.658 29.658 0 0 1 12 24a29.658 29.658 0 0 1 3.611-3.53 27.326 27.326 0 0 1-1.34-8.47c0-2.948.47-5.792 1.34-8.47A29.658 29.658 0 0 1 12 0Zm6.109 5.381A27.362 27.362 0 0 0 17.3 12c0 2.278.28 4.494.809 6.619a30.696 30.696 0 0 1 4.391-2.424A13.662 13.662 0 0 1 21.843 12c0-1.46.23-2.868.657-4.195a30.698 30.698 0 0 1-4.391-2.424Zm-12.218 0A30.7 30.7 0 0 1 1.5 7.805c.427 1.327.657 2.736.657 4.195 0 1.46-.23 2.868-.657 4.195a30.696 30.696 0 0 1 4.391 2.424C6.42 16.494 6.7 14.278 6.7 12c0-2.278-.28-4.494-.809-6.619z" }) + ] + } + ); +}); + +exports.default = SiMagic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.d.ts new file mode 100644 index 000000000..3992a23e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6851FF"; +declare const SiMagic: IconType; +export { SiMagic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.mjs new file mode 100644 index 000000000..939f3967f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6851FF"; +const SiMagic = React.forwardRef(function SiMagic2({ title = "Magic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a29.658 29.658 0 0 1-3.611 3.53A27.326 27.326 0 0 1 9.729 12c0 2.948-.47 5.792-1.34 8.47A29.658 29.658 0 0 1 12 24a29.658 29.658 0 0 1 3.611-3.53 27.326 27.326 0 0 1-1.34-8.47c0-2.948.47-5.792 1.34-8.47A29.658 29.658 0 0 1 12 0Zm6.109 5.381A27.362 27.362 0 0 0 17.3 12c0 2.278.28 4.494.809 6.619a30.696 30.696 0 0 1 4.391-2.424A13.662 13.662 0 0 1 21.843 12c0-1.46.23-2.868.657-4.195a30.698 30.698 0 0 1-4.391-2.424Zm-12.218 0A30.7 30.7 0 0 1 1.5 7.805c.427 1.327.657 2.736.657 4.195 0 1.46-.23 2.868-.657 4.195a30.696 30.696 0 0 1 4.391 2.424C6.42 16.494 6.7 14.278 6.7 12c0-2.278-.28-4.494-.809-6.619z" }) + ] + } + ); +}); + +export { SiMagic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.cjs new file mode 100644 index 000000000..61e2b7d9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AF9C"; +const SiMagisk = React__namespace.forwardRef(function SiMagisk2({ title = "Magisk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.857 14.458s.155.921-.034 2.952c-.236 2.546.97 6.59.97 6.59s1.645-4.052 1.358-6.67c-.236-2.152.107-2.904.034-2.803-1.264 1.746-2.328-.069-2.328-.069zm3.082 2.185c.206 1.591-.023 2.462-.32 4.164-.15.861 3.068-2.589 4.302-4.645.206-.343-1.18 1.337-2.55.137-.952-.832-1.115-1.085-1.854-1.808-.249-.244.277 1.014.423 2.151zm-3.512-2.025c-.739.723-.903.976-1.853 1.808-1.371 1.2-2.757-.48-2.551-.137 1.234 2.057 4.452 5.506 4.302 4.645-.297-1.703-.526-2.574-.32-4.164.147-1.137.673-2.395.423-2.15zm3.166-2.839c1.504.434 2.088 2.523 3.606 2.781.314.053.667.148 1.08.128.77-.037 1.743-.472 3.044-2.318.385-.546-.955 3.514-4.313 3.563-2.46.036-2.747-2.408-4.387-2.482-.592-.027-.629-1.156-.629-1.156s.706-.774 1.598-.517zm-3.186-.012c-1.504.434-2.088 2.523-3.606 2.781-.314.053-.667.148-1.08.128-.77-.037-1.743-.472-3.044-2.318-.385-.546.955 3.514 4.313 3.563 2.46.036 2.747-2.408 4.387-2.482.592-.027.629-1.156.629-1.156s-.706-.774-1.598-.517zm5.626-.02c1.513 1.146 1.062 2.408 1.911 2.048 2.86-1.212 2.36-7.434 2.128-6.682-1.303 4.242-4.143 4.48-6.876 2.528-.534-.38 1.985 1.46 2.837 2.105zm-5.24-2.106C8.06 11.592 5.22 11.355 3.917 7.113c-.231-.752-.731 5.47 2.128 6.682.849.36.398-.902 1.91-2.048.853-.646 3.372-2.486 2.838-2.105zm5.526.584c3.3-.136 3.91-5.545 3.65-4.885-1.165 2.963-5.574 1.848-5.995 3.718-.083.367.747 1.233 2.345 1.167zm-6.304-1.167c-.421-1.87-4.831-.755-5.995-3.718-.26-.66.35 4.75 3.65 4.885 1.599.066 2.428-.8 2.345-1.167zm3.753-.824s1.794-.964 3.33-1.384c1.435-.393 2.512-1.359 2.631-2.38.09-.76-1.11-2.197-1.11-2.197s-.84 2.334-1.945 3.501c-1.2 1.27-.745 1.1-2.906 2.46zm-6.453-2.46c-1.104-1.167-1.945-3.5-1.945-3.5S4.17 3.708 4.26 4.47c.12 1.021 1.196 1.987 2.63 2.38 1.537.421 3.331 1.384 3.331 1.384-2.162-1.36-1.705-1.19-2.906-2.46zm6.235 2.312c1.943-1.594 2.976-3.673 4.657-5.949.317-.429-1.419-1.465-2.105-1.533-.686-.068-1.262 2.453-1.327 3.936-.059 1.354-1.486 3.761-1.224 3.547zM9.214 4.54C9.149 3.056 8.573.535 7.887.603 7.2.671 5.465 1.707 5.782 2.136c1.68 2.276 2.713 4.356 4.657 5.95.261.213-1.165-2.194-1.224-3.548zm4.531-1.602c.137-1.098.631-1.9 1.613-2.574-.868-.29-1.591-.526-1.968-.217-.377.309-1.403 1.342-1.266 3.023s.007 7.962.305 7.846c.16-4.302 1.522-5.538 1.316-8.077zm-2.186 8.077c.297.116.167-6.165.305-7.846.138-1.681-.888-2.714-1.266-3.023-.377-.309-1.1-.073-1.968.217.983.674 1.476 1.476 1.613 2.574-.206 2.54 1.156 3.775 1.316 8.077z" }) + ] + } + ); +}); + +exports.default = SiMagisk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.d.ts new file mode 100644 index 000000000..249b2ba0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AF9C"; +declare const SiMagisk: IconType; +export { SiMagisk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.mjs new file mode 100644 index 000000000..327f1d584 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMagisk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AF9C"; +const SiMagisk = React.forwardRef(function SiMagisk2({ title = "Magisk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.857 14.458s.155.921-.034 2.952c-.236 2.546.97 6.59.97 6.59s1.645-4.052 1.358-6.67c-.236-2.152.107-2.904.034-2.803-1.264 1.746-2.328-.069-2.328-.069zm3.082 2.185c.206 1.591-.023 2.462-.32 4.164-.15.861 3.068-2.589 4.302-4.645.206-.343-1.18 1.337-2.55.137-.952-.832-1.115-1.085-1.854-1.808-.249-.244.277 1.014.423 2.151zm-3.512-2.025c-.739.723-.903.976-1.853 1.808-1.371 1.2-2.757-.48-2.551-.137 1.234 2.057 4.452 5.506 4.302 4.645-.297-1.703-.526-2.574-.32-4.164.147-1.137.673-2.395.423-2.15zm3.166-2.839c1.504.434 2.088 2.523 3.606 2.781.314.053.667.148 1.08.128.77-.037 1.743-.472 3.044-2.318.385-.546-.955 3.514-4.313 3.563-2.46.036-2.747-2.408-4.387-2.482-.592-.027-.629-1.156-.629-1.156s.706-.774 1.598-.517zm-3.186-.012c-1.504.434-2.088 2.523-3.606 2.781-.314.053-.667.148-1.08.128-.77-.037-1.743-.472-3.044-2.318-.385-.546.955 3.514 4.313 3.563 2.46.036 2.747-2.408 4.387-2.482.592-.027.629-1.156.629-1.156s-.706-.774-1.598-.517zm5.626-.02c1.513 1.146 1.062 2.408 1.911 2.048 2.86-1.212 2.36-7.434 2.128-6.682-1.303 4.242-4.143 4.48-6.876 2.528-.534-.38 1.985 1.46 2.837 2.105zm-5.24-2.106C8.06 11.592 5.22 11.355 3.917 7.113c-.231-.752-.731 5.47 2.128 6.682.849.36.398-.902 1.91-2.048.853-.646 3.372-2.486 2.838-2.105zm5.526.584c3.3-.136 3.91-5.545 3.65-4.885-1.165 2.963-5.574 1.848-5.995 3.718-.083.367.747 1.233 2.345 1.167zm-6.304-1.167c-.421-1.87-4.831-.755-5.995-3.718-.26-.66.35 4.75 3.65 4.885 1.599.066 2.428-.8 2.345-1.167zm3.753-.824s1.794-.964 3.33-1.384c1.435-.393 2.512-1.359 2.631-2.38.09-.76-1.11-2.197-1.11-2.197s-.84 2.334-1.945 3.501c-1.2 1.27-.745 1.1-2.906 2.46zm-6.453-2.46c-1.104-1.167-1.945-3.5-1.945-3.5S4.17 3.708 4.26 4.47c.12 1.021 1.196 1.987 2.63 2.38 1.537.421 3.331 1.384 3.331 1.384-2.162-1.36-1.705-1.19-2.906-2.46zm6.235 2.312c1.943-1.594 2.976-3.673 4.657-5.949.317-.429-1.419-1.465-2.105-1.533-.686-.068-1.262 2.453-1.327 3.936-.059 1.354-1.486 3.761-1.224 3.547zM9.214 4.54C9.149 3.056 8.573.535 7.887.603 7.2.671 5.465 1.707 5.782 2.136c1.68 2.276 2.713 4.356 4.657 5.95.261.213-1.165-2.194-1.224-3.548zm4.531-1.602c.137-1.098.631-1.9 1.613-2.574-.868-.29-1.591-.526-1.968-.217-.377.309-1.403 1.342-1.266 3.023s.007 7.962.305 7.846c.16-4.302 1.522-5.538 1.316-8.077zm-2.186 8.077c.297.116.167-6.165.305-7.846.138-1.681-.888-2.714-1.266-3.023-.377-.309-1.1-.073-1.968.217.983.674 1.476 1.476 1.613 2.574-.206 2.54 1.156 3.775 1.316 8.077z" }) + ] + } + ); +}); + +export { SiMagisk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.cjs new file mode 100644 index 000000000..af48bf1e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD052B"; +const SiMahindra = React__namespace.forwardRef(function SiMahindra2({ title = "Mahindra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.145 11.311H6.78a.67.67 0 0 1 .674.66v1.509H5.009a.408.408 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338H4.945l.2-.419zm13.427-.787v2.959h-2.383a.408.408 0 0 1-.41-.403v-1.11a.67.67 0 0 1 .675-.659h1.357l-.2.422h-.948c-.188 0-.357.147-.357.337v.91c0 .046.049.08.092.08h1.644v-2.536h.53zM10.2 13.483h.527v-1.51a.67.67 0 0 0-.674-.659H8.932l-.2.422h1.111c.188 0 .357.147.357.337v1.41zm-2.195-2.96v2.96h.527v-2.96h-.527zm-4.4 2.96h.527v-1.51a.67.67 0 0 0-.674-.659H0v2.169h.526v-1.669c0-.047.05-.081.093-.081h1.09c.043 0 .092.034.092.081v1.669h.527v-1.669c0-.047.049-.081.092-.081h.828c.188 0 .357.147.357.337v1.413zm17.72-2.172H20a.67.67 0 0 0-.674.66v1.509h.527v-1.41c0-.19.169-.337.357-.337h.914l.2-.422zm-6.753 0a.67.67 0 0 1 .675.66v1.509h-.527v-1.41c0-.19-.17-.337-.357-.337h-1.268v1.75h-.527v-2.169c.665 0 1.333-.003 2.004-.003zm-3.19.137.527-.306v2.338h-.526v-2.032zm.53-.609v-.322h-.526v.625l.526-.303zm9.782.472h1.632a.67.67 0 0 1 .674.66v1.509h-2.445a.408.408 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338h-1.622l.203-.419z" }) + ] + } + ); +}); + +exports.default = SiMahindra; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.d.ts new file mode 100644 index 000000000..d66e35fbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD052B"; +declare const SiMahindra: IconType; +export { SiMahindra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.mjs new file mode 100644 index 000000000..daf19082b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMahindra.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD052B"; +const SiMahindra = React.forwardRef(function SiMahindra2({ title = "Mahindra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.145 11.311H6.78a.67.67 0 0 1 .674.66v1.509H5.009a.408.408 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338H4.945l.2-.419zm13.427-.787v2.959h-2.383a.408.408 0 0 1-.41-.403v-1.11a.67.67 0 0 1 .675-.659h1.357l-.2.422h-.948c-.188 0-.357.147-.357.337v.91c0 .046.049.08.092.08h1.644v-2.536h.53zM10.2 13.483h.527v-1.51a.67.67 0 0 0-.674-.659H8.932l-.2.422h1.111c.188 0 .357.147.357.337v1.41zm-2.195-2.96v2.96h.527v-2.96h-.527zm-4.4 2.96h.527v-1.51a.67.67 0 0 0-.674-.659H0v2.169h.526v-1.669c0-.047.05-.081.093-.081h1.09c.043 0 .092.034.092.081v1.669h.527v-1.669c0-.047.049-.081.092-.081h.828c.188 0 .357.147.357.337v1.413zm17.72-2.172H20a.67.67 0 0 0-.674.66v1.509h.527v-1.41c0-.19.169-.337.357-.337h.914l.2-.422zm-6.753 0a.67.67 0 0 1 .675.66v1.509h-.527v-1.41c0-.19-.17-.337-.357-.337h-1.268v1.75h-.527v-2.169c.665 0 1.333-.003 2.004-.003zm-3.19.137.527-.306v2.338h-.526v-2.032zm.53-.609v-.322h-.526v.625l.526-.303zm9.782.472h1.632a.67.67 0 0 1 .674.66v1.509h-2.445a.408.408 0 0 1-.41-.404v-.524a.38.38 0 0 1 .383-.375h1.354l-.144.306h-.998c-.043 0-.092.034-.092.081v.412c0 .047.049.082.092.082h1.73v-.99c0-.191-.169-.338-.357-.338h-1.622l.203-.419z" }) + ] + } + ); +}); + +export { SiMahindra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.cjs new file mode 100644 index 000000000..309222d60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ABE659"; +const SiMailbox = React__namespace.forwardRef(function SiMailbox2({ title = "mailbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.196 20.014-7.711-5.836c-.48-.31-.733-.268-1.121.155a71.39 71.39 0 0 0-.26.303c-.226.275-.353.451-.262.775.007.043 2.397 7.352 2.397 7.352.225.782.782 1.212 1.642 1.226h3.545c.543 0 .825-.112 1.142-.479l.966-1.283c.67-.951.592-1.459-.338-2.22m-10.22-5.8L9.81 6.494c.31-.48.268-.733-.155-1.12-.105-.092-.204-.177-.303-.261-.275-.226-.45-.353-.775-.261-.042.007-7.352 2.396-7.352 2.396C.444 7.475.014 8.032 0 8.892v3.545c0 .543.113.825.48 1.142l1.282.965c.952.67 1.46.593 2.22-.338m16.043-4.412-5.836 7.71c-.31.48-.268.734.155 1.122l.303.26c.275.226.45.353.775.261.042-.007 7.352-2.396 7.352-2.396.782-.226 1.212-.783 1.226-1.643v-3.545c0-.543-.113-.825-.48-1.142l-1.282-.965c-.952-.67-1.46-.593-2.22.338M9.79 3.986l7.711 5.836c.48.31.733.268 1.121-.155l.26-.303c.226-.275.353-.451.262-.775-.007-.043-2.397-7.352-2.397-7.352-.225-.782-.782-1.212-1.642-1.226h-3.546c-.542 0-.824.112-1.141.479l-.966 1.283c-.67.951-.592 1.459.338 2.22" }) + ] + } + ); +}); + +exports.default = SiMailbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.d.ts new file mode 100644 index 000000000..d3fb5c3d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ABE659"; +declare const SiMailbox: IconType; +export { SiMailbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.mjs new file mode 100644 index 000000000..f62a90a7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ABE659"; +const SiMailbox = React.forwardRef(function SiMailbox2({ title = "mailbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.196 20.014-7.711-5.836c-.48-.31-.733-.268-1.121.155a71.39 71.39 0 0 0-.26.303c-.226.275-.353.451-.262.775.007.043 2.397 7.352 2.397 7.352.225.782.782 1.212 1.642 1.226h3.545c.543 0 .825-.112 1.142-.479l.966-1.283c.67-.951.592-1.459-.338-2.22m-10.22-5.8L9.81 6.494c.31-.48.268-.733-.155-1.12-.105-.092-.204-.177-.303-.261-.275-.226-.45-.353-.775-.261-.042.007-7.352 2.396-7.352 2.396C.444 7.475.014 8.032 0 8.892v3.545c0 .543.113.825.48 1.142l1.282.965c.952.67 1.46.593 2.22-.338m16.043-4.412-5.836 7.71c-.31.48-.268.734.155 1.122l.303.26c.275.226.45.353.775.261.042-.007 7.352-2.396 7.352-2.396.782-.226 1.212-.783 1.226-1.643v-3.545c0-.543-.113-.825-.48-1.142l-1.282-.965c-.952-.67-1.46-.593-2.22.338M9.79 3.986l7.711 5.836c.48.31.733.268 1.121-.155l.26-.303c.226-.275.353-.451.262-.775-.007-.043-2.397-7.352-2.397-7.352-.225-.782-.782-1.212-1.642-1.226h-3.546c-.542 0-.824.112-1.141.479l-.966 1.283c-.67.951-.592 1.459.338 2.22" }) + ] + } + ); +}); + +export { SiMailbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.cjs new file mode 100644 index 000000000..998de54f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE01B"; +const SiMailchimp = React__namespace.forwardRef(function SiMailchimp2({ title = "MailChimp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.267 0C6.791-.015-1.82 10.246 1.397 12.964l.79.669a3.88 3.88 0 0 0-.22 1.792c.084.84.518 1.644 1.22 2.266.666.59 1.542.964 2.392.964 1.406 3.24 4.62 5.228 8.386 5.34 4.04.12 7.433-1.776 8.854-5.182.093-.24.488-1.316.488-2.267 0-.956-.54-1.352-.885-1.352-.01-.037-.078-.286-.172-.586-.093-.3-.19-.51-.19-.51.375-.563.382-1.065.332-1.35-.053-.353-.2-.653-.496-.964-.296-.311-.902-.63-1.753-.868l-.446-.124c-.002-.019-.024-1.053-.043-1.497-.014-.32-.042-.822-.197-1.315-.186-.668-.508-1.253-.911-1.627 1.112-1.152 1.806-2.422 1.804-3.511-.003-2.095-2.576-2.729-5.746-1.416l-.672.285A678.22 678.22 0 0 0 12.7.504C12.304.159 11.817.002 11.267 0zm.073.873c.166 0 .322.019.465.058.297.084 1.28 1.224 1.28 1.224s-1.826 1.013-3.52 2.426c-2.28 1.757-4.005 4.311-5.037 7.082-.811.158-1.526.618-1.963 1.253-.261-.218-.748-.64-.834-.804-.698-1.326.761-3.902 1.781-5.357C5.834 3.44 9.37.867 11.34.873zm3.286 3.273c.04-.002.06.05.028.074-.143.11-.299.26-.413.414a.04.04 0 0 0 .031.064c.659.004 1.587.235 2.192.574.041.023.012.103-.034.092-.915-.21-2.414-.369-3.97.01-1.39.34-2.45.863-3.224 1.426-.04.028-.086-.023-.055-.06.896-1.035 1.999-1.935 2.987-2.44.034-.018.07.019.052.052-.079.143-.23.447-.278.678-.007.035.032.063.062.042.615-.42 1.684-.868 2.622-.926zm3.023 3.205l.056.001a.896.896 0 0 1 .456.146c.534.355.61 1.216.638 1.845.015.36.059 1.229.074 1.478.034.571.184.651.487.751.17.057.33.098.563.164.706.198 1.125.4 1.39.658.157.162.23.333.253.497.083.608-.472 1.36-1.942 2.041-1.607.746-3.557.935-4.904.785l-.471-.053c-1.078-.145-1.693 1.247-1.046 2.201.417.615 1.552 1.015 2.688 1.015 2.604 0 4.605-1.111 5.35-2.072a.987.987 0 0 0 .06-.085c.036-.055.006-.085-.04-.054-.608.416-3.31 2.069-6.2 1.571 0 0-.351-.057-.672-.182-.255-.1-.788-.344-.853-.891 2.333.72 3.801.039 3.801.039a.072.072 0 0 0 .042-.072.067.067 0 0 0-.074-.06s-1.911.283-3.718-.378c.197-.64.72-.408 1.51-.345a11.045 11.045 0 0 0 3.647-.394c.818-.234 1.892-.697 2.727-1.356.281.618.38 1.299.38 1.299s.219-.04.4.073c.173.106.299.326.213.895-.176 1.063-.628 1.926-1.387 2.72a5.714 5.714 0 0 1-1.666 1.244c-.34.18-.704.334-1.087.46-2.863.935-5.794-.093-6.739-2.3a3.545 3.545 0 0 1-.189-.522c-.403-1.455-.06-3.2 1.008-4.299.065-.07.132-.153.132-.256 0-.087-.055-.179-.102-.243-.374-.543-1.669-1.466-1.409-3.254.187-1.284 1.31-2.189 2.357-2.135.089.004.177.01.266.015.453.027.85.085 1.223.1.625.028 1.187-.063 1.853-.618.225-.187.405-.35.71-.401.028-.005.092-.028.215-.028zm.022 2.18a.42.42 0 0 0-.06.005c-.335.054-.347.468-.228 1.04.068.32.187.595.32.765.175-.02.343-.022.498 0 .089-.205.104-.557.024-.942-.112-.535-.261-.872-.554-.868zm-3.66 1.546a1.724 1.724 0 0 0-1.016.326c-.16.117-.311.28-.29.378.008.032.031.056.088.063.131.015.592-.217 1.122-.25.374-.023.684.094.923.2.239.104.386.173.443.113.037-.038.026-.11-.031-.204-.118-.192-.36-.387-.618-.497a1.601 1.601 0 0 0-.621-.129zm4.082.81c-.171-.003-.313.186-.317.42-.004.236.131.43.303.432.172.003.314-.185.318-.42.004-.236-.132-.429-.304-.432zm-3.58.172c-.05 0-.102.002-.155.008-.311.05-.483.152-.593.247-.094.082-.152.173-.152.237a.075.075 0 0 0 .075.076c.07 0 .228-.063.228-.063a1.98 1.98 0 0 1 1.001-.104c.157.018.23.027.265-.026.01-.016.022-.049-.01-.1-.063-.103-.311-.269-.66-.275zm2.26.4c-.127 0-.235.051-.283.148-.075.154.035.363.246.466.21.104.443.063.52-.09.075-.155-.035-.364-.246-.467a.542.542 0 0 0-.237-.058zm-11.635.024c.048 0 .098 0 .149.003.73.04 1.806.6 2.052 2.19.217 1.41-.128 2.843-1.449 3.069-.123.02-.248.029-.374.026-1.22-.033-2.539-1.132-2.67-2.435-.145-1.44.591-2.548 1.894-2.811.117-.024.252-.04.398-.042zm-.07.927a1.144 1.144 0 0 0-.847.364c-.38.418-.439.988-.366 1.19.027.073.07.094.1.098.064.008.16-.039.22-.2a1.2 1.2 0 0 0 .017-.052 1.58 1.58 0 0 1 .157-.37.689.689 0 0 1 .955-.199c.266.174.369.5.255.81-.058.161-.154.469-.133.721.043.511.357.717.64.738.274.01.466-.143.515-.256.029-.067.005-.107-.011-.125-.043-.053-.113-.037-.18-.021a.638.638 0 0 1-.16.022.347.347 0 0 1-.294-.148c-.078-.12-.073-.3.013-.504.011-.028.025-.058.04-.092.138-.308.368-.825.11-1.317-.195-.37-.513-.602-.894-.65a1.135 1.135 0 0 0-.138-.01z" }) + ] + } + ); +}); + +exports.default = SiMailchimp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.d.ts new file mode 100644 index 000000000..17729c195 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE01B"; +declare const SiMailchimp: IconType; +export { SiMailchimp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.mjs new file mode 100644 index 000000000..e2c179830 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailchimp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE01B"; +const SiMailchimp = React.forwardRef(function SiMailchimp2({ title = "MailChimp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.267 0C6.791-.015-1.82 10.246 1.397 12.964l.79.669a3.88 3.88 0 0 0-.22 1.792c.084.84.518 1.644 1.22 2.266.666.59 1.542.964 2.392.964 1.406 3.24 4.62 5.228 8.386 5.34 4.04.12 7.433-1.776 8.854-5.182.093-.24.488-1.316.488-2.267 0-.956-.54-1.352-.885-1.352-.01-.037-.078-.286-.172-.586-.093-.3-.19-.51-.19-.51.375-.563.382-1.065.332-1.35-.053-.353-.2-.653-.496-.964-.296-.311-.902-.63-1.753-.868l-.446-.124c-.002-.019-.024-1.053-.043-1.497-.014-.32-.042-.822-.197-1.315-.186-.668-.508-1.253-.911-1.627 1.112-1.152 1.806-2.422 1.804-3.511-.003-2.095-2.576-2.729-5.746-1.416l-.672.285A678.22 678.22 0 0 0 12.7.504C12.304.159 11.817.002 11.267 0zm.073.873c.166 0 .322.019.465.058.297.084 1.28 1.224 1.28 1.224s-1.826 1.013-3.52 2.426c-2.28 1.757-4.005 4.311-5.037 7.082-.811.158-1.526.618-1.963 1.253-.261-.218-.748-.64-.834-.804-.698-1.326.761-3.902 1.781-5.357C5.834 3.44 9.37.867 11.34.873zm3.286 3.273c.04-.002.06.05.028.074-.143.11-.299.26-.413.414a.04.04 0 0 0 .031.064c.659.004 1.587.235 2.192.574.041.023.012.103-.034.092-.915-.21-2.414-.369-3.97.01-1.39.34-2.45.863-3.224 1.426-.04.028-.086-.023-.055-.06.896-1.035 1.999-1.935 2.987-2.44.034-.018.07.019.052.052-.079.143-.23.447-.278.678-.007.035.032.063.062.042.615-.42 1.684-.868 2.622-.926zm3.023 3.205l.056.001a.896.896 0 0 1 .456.146c.534.355.61 1.216.638 1.845.015.36.059 1.229.074 1.478.034.571.184.651.487.751.17.057.33.098.563.164.706.198 1.125.4 1.39.658.157.162.23.333.253.497.083.608-.472 1.36-1.942 2.041-1.607.746-3.557.935-4.904.785l-.471-.053c-1.078-.145-1.693 1.247-1.046 2.201.417.615 1.552 1.015 2.688 1.015 2.604 0 4.605-1.111 5.35-2.072a.987.987 0 0 0 .06-.085c.036-.055.006-.085-.04-.054-.608.416-3.31 2.069-6.2 1.571 0 0-.351-.057-.672-.182-.255-.1-.788-.344-.853-.891 2.333.72 3.801.039 3.801.039a.072.072 0 0 0 .042-.072.067.067 0 0 0-.074-.06s-1.911.283-3.718-.378c.197-.64.72-.408 1.51-.345a11.045 11.045 0 0 0 3.647-.394c.818-.234 1.892-.697 2.727-1.356.281.618.38 1.299.38 1.299s.219-.04.4.073c.173.106.299.326.213.895-.176 1.063-.628 1.926-1.387 2.72a5.714 5.714 0 0 1-1.666 1.244c-.34.18-.704.334-1.087.46-2.863.935-5.794-.093-6.739-2.3a3.545 3.545 0 0 1-.189-.522c-.403-1.455-.06-3.2 1.008-4.299.065-.07.132-.153.132-.256 0-.087-.055-.179-.102-.243-.374-.543-1.669-1.466-1.409-3.254.187-1.284 1.31-2.189 2.357-2.135.089.004.177.01.266.015.453.027.85.085 1.223.1.625.028 1.187-.063 1.853-.618.225-.187.405-.35.71-.401.028-.005.092-.028.215-.028zm.022 2.18a.42.42 0 0 0-.06.005c-.335.054-.347.468-.228 1.04.068.32.187.595.32.765.175-.02.343-.022.498 0 .089-.205.104-.557.024-.942-.112-.535-.261-.872-.554-.868zm-3.66 1.546a1.724 1.724 0 0 0-1.016.326c-.16.117-.311.28-.29.378.008.032.031.056.088.063.131.015.592-.217 1.122-.25.374-.023.684.094.923.2.239.104.386.173.443.113.037-.038.026-.11-.031-.204-.118-.192-.36-.387-.618-.497a1.601 1.601 0 0 0-.621-.129zm4.082.81c-.171-.003-.313.186-.317.42-.004.236.131.43.303.432.172.003.314-.185.318-.42.004-.236-.132-.429-.304-.432zm-3.58.172c-.05 0-.102.002-.155.008-.311.05-.483.152-.593.247-.094.082-.152.173-.152.237a.075.075 0 0 0 .075.076c.07 0 .228-.063.228-.063a1.98 1.98 0 0 1 1.001-.104c.157.018.23.027.265-.026.01-.016.022-.049-.01-.1-.063-.103-.311-.269-.66-.275zm2.26.4c-.127 0-.235.051-.283.148-.075.154.035.363.246.466.21.104.443.063.52-.09.075-.155-.035-.364-.246-.467a.542.542 0 0 0-.237-.058zm-11.635.024c.048 0 .098 0 .149.003.73.04 1.806.6 2.052 2.19.217 1.41-.128 2.843-1.449 3.069-.123.02-.248.029-.374.026-1.22-.033-2.539-1.132-2.67-2.435-.145-1.44.591-2.548 1.894-2.811.117-.024.252-.04.398-.042zm-.07.927a1.144 1.144 0 0 0-.847.364c-.38.418-.439.988-.366 1.19.027.073.07.094.1.098.064.008.16-.039.22-.2a1.2 1.2 0 0 0 .017-.052 1.58 1.58 0 0 1 .157-.37.689.689 0 0 1 .955-.199c.266.174.369.5.255.81-.058.161-.154.469-.133.721.043.511.357.717.64.738.274.01.466-.143.515-.256.029-.067.005-.107-.011-.125-.043-.053-.113-.037-.18-.021a.638.638 0 0 1-.16.022.347.347 0 0 1-.294-.148c-.078-.12-.073-.3.013-.504.011-.028.025-.058.04-.092.138-.308.368-.825.11-1.317-.195-.37-.513-.602-.894-.65a1.135 1.135 0 0 0-.138-.01z" }) + ] + } + ); +}); + +export { SiMailchimp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.cjs new file mode 100644 index 000000000..228549e54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004788"; +const SiMaildotcom = React__namespace.forwardRef(function SiMaildotcom2({ title = "mail.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.017-.0085H0V15.66c0 1.4057.96 2.5714 2.2457 2.9143L24 24.0085V5.9915c.0172-3.3086-2.6743-6-5.9828-6zm3 15.6685H18V8.7857c0-.6685-.223-2.2285-2.2115-2.2285-1.32 0-2.28.9085-2.28 2.2285V15.66h-3.0171V8.7857c0-.6685-.2057-2.2285-2.1943-2.2285-1.3543 0-2.28.9085-2.28 2.2285V15.66H3V3.6086h5.297c1.5943 0 2.8971.6343 3.7371 1.6629.8915-1.0286 2.2115-1.6629 3.7372-1.6629 3.2914 0 5.2285 2.1771 5.2285 5.2457l.0172 6.8057z" }) + ] + } + ); +}); + +exports.default = SiMaildotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.d.ts new file mode 100644 index 000000000..bf0aacf5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004788"; +declare const SiMaildotcom: IconType; +export { SiMaildotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.mjs new file mode 100644 index 000000000..5e9e76d84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004788"; +const SiMaildotcom = React.forwardRef(function SiMaildotcom2({ title = "mail.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.017-.0085H0V15.66c0 1.4057.96 2.5714 2.2457 2.9143L24 24.0085V5.9915c.0172-3.3086-2.6743-6-5.9828-6zm3 15.6685H18V8.7857c0-.6685-.223-2.2285-2.2115-2.2285-1.32 0-2.28.9085-2.28 2.2285V15.66h-3.0171V8.7857c0-.6685-.2057-2.2285-2.1943-2.2285-1.3543 0-2.28.9085-2.28 2.2285V15.66H3V3.6086h5.297c1.5943 0 2.8971.6343 3.7371 1.6629.8915-1.0286 2.2115-1.6629 3.7372-1.6629 3.2914 0 5.2285 2.1771 5.2285 5.2457l.0172 6.8057z" }) + ] + } + ); +}); + +export { SiMaildotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.cjs new file mode 100644 index 000000000..2e0adeb86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005FF9"; +const SiMaildotru = React__namespace.forwardRef(function SiMaildotru2({ title = "Mail.Ru", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.61 12c0 1.99-1.62 3.61-3.61 3.61-1.99 0-3.61-1.62-3.61-3.61 0-1.99 1.62-3.61 3.61-3.61 1.99 0 3.61 1.62 3.61 3.61M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c2.424 0 4.761-.722 6.76-2.087l.034-.024-1.617-1.879-.027.017A9.494 9.494 0 0 1 12 21.54c-5.26 0-9.54-4.28-9.54-9.54 0-5.26 4.28-9.54 9.54-9.54 5.26 0 9.54 4.28 9.54 9.54a9.63 9.63 0 0 1-.225 2.05c-.301 1.239-1.169 1.618-1.82 1.568-.654-.053-1.42-.52-1.426-1.661V12A6.076 6.076 0 0 0 12 5.93 6.076 6.076 0 0 0 5.93 12 6.076 6.076 0 0 0 12 18.07a6.02 6.02 0 0 0 4.3-1.792 3.9 3.9 0 0 0 3.32 1.805c.874 0 1.74-.292 2.437-.821.719-.547 1.256-1.336 1.553-2.285.047-.154.135-.504.135-.507l.002-.013c.175-.76.253-1.52.253-2.457 0-6.617-5.383-12-12-12" }) + ] + } + ); +}); + +exports.default = SiMaildotru; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.d.ts new file mode 100644 index 000000000..59a7304ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005FF9"; +declare const SiMaildotru: IconType; +export { SiMaildotru as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.mjs new file mode 100644 index 000000000..e292ac185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaildotru.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005FF9"; +const SiMaildotru = React.forwardRef(function SiMaildotru2({ title = "Mail.Ru", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.61 12c0 1.99-1.62 3.61-3.61 3.61-1.99 0-3.61-1.62-3.61-3.61 0-1.99 1.62-3.61 3.61-3.61 1.99 0 3.61 1.62 3.61 3.61M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c2.424 0 4.761-.722 6.76-2.087l.034-.024-1.617-1.879-.027.017A9.494 9.494 0 0 1 12 21.54c-5.26 0-9.54-4.28-9.54-9.54 0-5.26 4.28-9.54 9.54-9.54 5.26 0 9.54 4.28 9.54 9.54a9.63 9.63 0 0 1-.225 2.05c-.301 1.239-1.169 1.618-1.82 1.568-.654-.053-1.42-.52-1.426-1.661V12A6.076 6.076 0 0 0 12 5.93 6.076 6.076 0 0 0 5.93 12 6.076 6.076 0 0 0 12 18.07a6.02 6.02 0 0 0 4.3-1.792 3.9 3.9 0 0 0 3.32 1.805c.874 0 1.74-.292 2.437-.821.719-.547 1.256-1.336 1.553-2.285.047-.154.135-.504.135-.507l.002-.013c.175-.76.253-1.52.253-2.457 0-6.617-5.383-12-12-12" }) + ] + } + ); +}); + +export { SiMaildotru as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.cjs new file mode 100644 index 000000000..fada70143 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F06B66"; +const SiMailgun = React__namespace.forwardRef(function SiMailgun2({ title = "Mailgun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.837 0c6.602 0 11.984 5.381 11.984 11.994-.017 2.99-3.264 4.84-5.844 3.331a3.805 3.805 0 0 1-.06-.035l-.055-.033-.022.055c-2.554 4.63-9.162 4.758-11.894.232-2.732-4.527.46-10.313 5.746-10.416a6.868 6.868 0 0 1 7.002 6.866 1.265 1.265 0 0 0 2.52 0c0-5.18-4.197-9.38-9.377-9.387C4.611 2.594.081 10.41 3.683 16.673c3.238 5.632 11.08 6.351 15.289 1.402l1.997 1.686A11.95 11.95 0 0 1 11.837 24C2.6 23.72-2.87 13.543 1.992 5.684A12.006 12.006 0 0 1 11.837 0Zm0 7.745c-3.276-.163-5.5 3.281-4.003 6.2a4.26 4.26 0 0 0 4.014 2.31c3.276-.171 5.137-3.824 3.35-6.575a4.26 4.26 0 0 0-3.36-1.935Zm0 2.53c1.324 0 2.152 1.433 1.49 2.58a1.72 1.72 0 0 1-1.49.86 1.72 1.72 0 1 1 0-3.44Z" }) + ] + } + ); +}); + +exports.default = SiMailgun; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.d.ts new file mode 100644 index 000000000..e14d56ba7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F06B66"; +declare const SiMailgun: IconType; +export { SiMailgun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.mjs new file mode 100644 index 000000000..7f7270928 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailgun.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F06B66"; +const SiMailgun = React.forwardRef(function SiMailgun2({ title = "Mailgun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.837 0c6.602 0 11.984 5.381 11.984 11.994-.017 2.99-3.264 4.84-5.844 3.331a3.805 3.805 0 0 1-.06-.035l-.055-.033-.022.055c-2.554 4.63-9.162 4.758-11.894.232-2.732-4.527.46-10.313 5.746-10.416a6.868 6.868 0 0 1 7.002 6.866 1.265 1.265 0 0 0 2.52 0c0-5.18-4.197-9.38-9.377-9.387C4.611 2.594.081 10.41 3.683 16.673c3.238 5.632 11.08 6.351 15.289 1.402l1.997 1.686A11.95 11.95 0 0 1 11.837 24C2.6 23.72-2.87 13.543 1.992 5.684A12.006 12.006 0 0 1 11.837 0Zm0 7.745c-3.276-.163-5.5 3.281-4.003 6.2a4.26 4.26 0 0 0 4.014 2.31c3.276-.171 5.137-3.824 3.35-6.575a4.26 4.26 0 0 0-3.36-1.935Zm0 2.53c1.324 0 2.152 1.433 1.49 2.58a1.72 1.72 0 0 1-1.49.86 1.72 1.72 0 1 1 0-3.44Z" }) + ] + } + ); +}); + +export { SiMailgun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.cjs new file mode 100644 index 000000000..6511fd8b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#22D172"; +const SiMailtrap = React__namespace.forwardRef(function SiMailtrap2({ title = "Mailtrap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.37146 17.60681 3.33477 18.8148c-.27629.18168-.15004.49398 0 .55693l7.90979 4.43194c.46722.26178 1.04287.26178 1.51009 0l8.01458-4.49068c.24282-.14382.20298-.43614 0-.53479l-2.15348-1.16353c-.18174-.11994-.58711-.08004-.73069.01758l-5.13041 2.87463c-.46722.26178-1.04287.26178-1.51009 0l-5.17584-2.90007c-.19295-.11868-.4986-.11196-.69726 0ZM11.24492.19634c.46722-.26179 1.04281-.26179 1.51003 0l6.36966 3.56896c.25428.12865.27732.47404 0 .62979-.41988.23442-.98311.54855-1.45045.80916-.54595.30446-1.21057.30357-1.75592-.00201l-3.16329-1.7724c-.46722-.26179-1.04281-.26179-1.51003 0l-3.16701 1.7745c-.54577.30577-1.21096.30634-1.75727.00163-.48583-.27097-1.07519-.59951-1.49988-.83566-.23557-.10117-.28461-.40149 0-.57448L11.24492.19634Zm10.72402 5.37209c.46723.26179.75505.74561.75505 1.26917v10.32526c0 .51102-.32004.60637-.66139.42786l-2.3588-1.27315V9.37593l-6.94878 3.8935c-.46722.26178-1.04281.26178-1.51003 0l-6.94881-3.8935v6.9408L2.1528 17.58922c-.25545.16242-.87679.2136-.87679-.42636V6.8376c0-.52356.28782-1.00739.75504-1.26917.75174-.39366 1.52849 0 1.52849 0l8.44043 4.73955 8.42726-4.73955s.74839-.45137 1.54171 0Z" }) + ] + } + ); +}); + +exports.default = SiMailtrap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.d.ts new file mode 100644 index 000000000..4bc5bbaeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#22D172"; +declare const SiMailtrap: IconType; +export { SiMailtrap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.mjs new file mode 100644 index 000000000..343de5c25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMailtrap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#22D172"; +const SiMailtrap = React.forwardRef(function SiMailtrap2({ title = "Mailtrap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.37146 17.60681 3.33477 18.8148c-.27629.18168-.15004.49398 0 .55693l7.90979 4.43194c.46722.26178 1.04287.26178 1.51009 0l8.01458-4.49068c.24282-.14382.20298-.43614 0-.53479l-2.15348-1.16353c-.18174-.11994-.58711-.08004-.73069.01758l-5.13041 2.87463c-.46722.26178-1.04287.26178-1.51009 0l-5.17584-2.90007c-.19295-.11868-.4986-.11196-.69726 0ZM11.24492.19634c.46722-.26179 1.04281-.26179 1.51003 0l6.36966 3.56896c.25428.12865.27732.47404 0 .62979-.41988.23442-.98311.54855-1.45045.80916-.54595.30446-1.21057.30357-1.75592-.00201l-3.16329-1.7724c-.46722-.26179-1.04281-.26179-1.51003 0l-3.16701 1.7745c-.54577.30577-1.21096.30634-1.75727.00163-.48583-.27097-1.07519-.59951-1.49988-.83566-.23557-.10117-.28461-.40149 0-.57448L11.24492.19634Zm10.72402 5.37209c.46723.26179.75505.74561.75505 1.26917v10.32526c0 .51102-.32004.60637-.66139.42786l-2.3588-1.27315V9.37593l-6.94878 3.8935c-.46722.26178-1.04281.26178-1.51003 0l-6.94881-3.8935v6.9408L2.1528 17.58922c-.25545.16242-.87679.2136-.87679-.42636V6.8376c0-.52356.28782-1.00739.75504-1.26917.75174-.39366 1.52849 0 1.52849 0l8.44043 4.73955 8.42726-4.73955s.74839-.45137 1.54171 0Z" }) + ] + } + ); +}); + +export { SiMailtrap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.cjs new file mode 100644 index 000000000..729a639a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7FB100"; +const SiMainwp = React__namespace.forwardRef(function SiMainwp2({ title = "MainWP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.4004c1.3251 0 2.4004 1.0752 2.4004 2.4004a2.397 2.397 0 0 1-.7031 1.6953 2.4 2.4 0 0 1-.5957.4355L16.08 19.1992 12 21.6016l-4.08-2.4024 2.9784-12.2676a2.4 2.4 0 0 1-.5937-.4355 2.397 2.397 0 0 1-.7031-1.6953c0-1.3252 1.0732-2.4004 2.3984-2.4004" }) + ] + } + ); +}); + +exports.default = SiMainwp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.d.ts new file mode 100644 index 000000000..4f6a1a51e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7FB100"; +declare const SiMainwp: IconType; +export { SiMainwp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.mjs new file mode 100644 index 000000000..e87c6578c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMainwp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7FB100"; +const SiMainwp = React.forwardRef(function SiMainwp2({ title = "MainWP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m0 2.4004c1.3251 0 2.4004 1.0752 2.4004 2.4004a2.397 2.397 0 0 1-.7031 1.6953 2.4 2.4 0 0 1-.5957.4355L16.08 19.1992 12 21.6016l-4.08-2.4024 2.9784-12.2676a2.4 2.4 0 0 1-.5937-.4355 2.397 2.397 0 0 1-.7031-1.6953c0-1.3252 1.0732-2.4004 2.3984-2.4004" }) + ] + } + ); +}); + +export { SiMainwp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.cjs new file mode 100644 index 000000000..bc4e277a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#265A8F"; +const SiMajorleaguehacking = React__namespace.forwardRef(function SiMajorleaguehacking2({ title = "Major League Hacking", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.769 6.947c.063 0 .119.02.16.063a.225.225 0 0 1 .071.161v7.778a.213.213 0 0 1-.07.161.222.222 0 0 1-.161.064H22.07a.228.228 0 0 1-.231-.224v-2.715a.206.206 0 0 0-.063-.154c-.042-.042-.091-.056-.162-.056h-2.377a.25.25 0 0 0-.161.056.212.212 0 0 0-.07.154v2.714c0 .147-.078.225-.232.225h-1.683c-.155 0-.232-.078-.232-.225V7.171c0-.147.077-.224.232-.224h1.683c.154 0 .231.077.231.224v2.63c0 .148.078.225.232.225h2.377c.064 0 .12-.021.162-.063a.222.222 0 0 0 .063-.162v-2.63a.21.21 0 0 1 .07-.161.222.222 0 0 1 .161-.063zm-8.374 6.207c.063 0 .119.02.154.063a.222.222 0 0 1 .063.161v1.55a.234.234 0 0 1-.063.161.206.206 0 0 1-.154.064h-5.45c-.154 0-.231-.078-.231-.225V7.171c0-.147.077-.224.231-.224h1.67c.154 0 .23.077.23.224v5.78a.19.19 0 0 0 .07.154c.043.042.099.056.162.056h3.318zm-7.75-6.102c.161.07.301.168.42.288.12.119.21.26.288.42.07.162.105.337.105.52v6.648a.206.206 0 0 1-.063.154.206.206 0 0 1-.154.064H6.649a.181.181 0 0 1-.148-.064.231.231 0 0 1-.056-.154V8.883H5.162v6.045a.231.231 0 0 1-.056.154.191.191 0 0 1-.147.064H3.514a.206.206 0 0 1-.155-.064.206.206 0 0 1-.063-.154V8.883H2.013v6.045c0 .147-.07.218-.218.218H.217c-.147 0-.217-.07-.217-.218V7.164c0-.147.07-.217.217-.217H7.12c.189 0 .357.035.526.105zm16.341 9.314c.007.007.007.014.007.02v.45c0 .028-.007.056-.014.084-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.639a.352.352 0 0 1-.084-.014c-.028-.014-.049-.028-.07-.042a.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842c0-.028.007-.056.014-.084.007-.028.028-.05.042-.07a.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014h.75c.008 0 .022 0 .022.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.603c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.59c0 .007 0 .014.007.02.007.008.014.008.02.008h.358c.007 0 .014 0 .021-.007.007-.007.007-.014.007-.022v-.315c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.253c.014 0 .021.007.028.014zm-1.466-.568c.028.014.05.028.07.042a.146.146 0 0 1 .042.07c.014.028.014.056.014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.253c-.007 0-.014 0-.021-.007-.007-.007-.007-.014-.007-.02v-.892c0-.007 0-.014-.007-.02-.007-.008-.014-.008-.021-.008h-.358c-.007 0-.021 0-.021.007s-.007.014-.007.021v.891c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.821c.014-.007.042 0 .063.014zM21.3 17.01c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035zm-.975-.701c-.007.007-.007.007 0 .014l.42.694c.008.007.008.014 0 .021-.006.007-.006.007-.02.007h-.302c-.007 0-.02 0-.028-.007l-.02-.02-.274-.492c-.007-.007-.007-.007-.007 0l-.148.161c-.007.007-.014.015-.014.029-.007.014-.007.02-.007.035v.266c0 .021-.014.035-.035.035h-.245c-.021 0-.035-.014-.035-.035v-1.2c0-.02.014-.034.035-.034h.252c.021 0 .035.014.035.035v.54l.47-.547a.097.097 0 0 1 .028-.021c.014-.007.021-.007.028-.007h.302c.007 0 .014 0 .014.007s0 .014-.007.02zm-1.648-.218c-.007.007-.007.014-.007.021v.59c0 .007 0 .014.007.02.007.008.014.008.02.008h.583c.007 0 .021 0 .021.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.722a.352.352 0 0 1-.085-.014.617.617 0 0 1-.07-.042.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.849c0-.028.007-.056.014-.084a.538.538 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.057-.014.085-.014h.722c.007 0 .021 0 .021.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.582c-.007.035-.014.042-.021.042zm-.82-.315c.027 0 .055.007.083.014.028.014.05.028.07.042a.146.146 0 0 1 .043.07.351.351 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.253c-.007 0-.021 0-.021-.007-.007-.007-.007-.014-.007-.02v-.324c0-.007 0-.02-.007-.02-.007-.008-.014-.008-.021-.008h-.358c-.007 0-.02 0-.02.007-.008.007-.008.014-.008.021v.323c0 .021-.014.035-.035.035h-.252c-.021 0-.035-.014-.035-.035v-1.024c0-.028.007-.056.014-.084a.617.617 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.106.603v-.316h-.428v.316zm-1.066-.603c.007 0 .021 0 .021.007.007.007.007.014.007.02v1.2c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.253c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.422c0-.007 0-.014-.007-.02-.007-.008-.014-.008-.02-.008h-.358c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.421c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035v.407c0 .02.014.035.035.035h.357c.007 0 .014 0 .021-.007.007-.007.007-.014.007-.021v-.407c0-.007 0-.021.007-.021.007-.007.014-.007.022-.007h.245zm-1.943.014c.007.007.007.014.007.02v.232c0 .007 0 .014-.007.021-.007.007-.014.007-.02.007h-.604c-.007 0-.007 0-.007.007v.197c0 .007 0 .007.007.007h.52c.006 0 .013 0 .02.007.007.007.007.014.007.02v.183c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.52c-.007 0-.007 0-.007.007v.197c0 .007 0 .007.007.007h.604c.006 0 .02 0 .02.007.007.007.007.014.007.02v.225c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.898a.132.132 0 0 0 .028.042zm-1.255 0c.007.007.007.014.007.02v1.025a.352.352 0 0 1-.014.084c-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.085.014h-.638a.352.352 0 0 1-.084-.014c-.028-.014-.049-.028-.07-.042a.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-1.024c0-.021.014-.035.035-.035h.252c.021 0 .035.014.035.035v.89c0 .008 0 .015.007.022.007.007.014.007.022.007h.357c.007 0 .014 0 .021-.007.007-.007.007-.014.007-.021v-.891c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.253c.02-.007.028 0 .035.007zm-1.333.575c.007.007.007.014.007.02v.45a.352.352 0 0 1-.014.084c-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.638a.352.352 0 0 1-.084-.014.478.478 0 0 1-.07-.042.146.146 0 0 1-.043-.07c-.014-.028-.014-.056-.014-.084v-.842c0-.028.007-.056.014-.084.007-.028.028-.05.042-.07a.146.146 0 0 1 .07-.042c.029-.014.057-.014.085-.014h.75c.007 0 .021 0 .021.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.02.007h-.604c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.59c0 .007 0 .014.007.02.007.008.014.008.021.008h.358c.007 0 .014 0 .02-.007.008-.007.008-.014.008-.022v-.315c0-.007 0-.021.007-.021.007-.007.014-.007.02-.007h.253c.007 0 .021.007.028.014zm-1.55-.59c.028 0 .056.008.084.015.029.014.05.028.07.042a.146.146 0 0 1 .043.07.352.352 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.26c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.324c0-.007 0-.02-.007-.02-.007-.008-.014-.008-.02-.008h-.366c-.007 0-.02 0-.02.007-.008.007-.008.014-.008.021v.323c0 .021-.014.035-.035.035h-.252c-.021 0-.035-.014-.035-.035v-1.024c0-.028.007-.056.014-.084a.617.617 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.112.604v-.316h-.428v.316zm-1.038-.59c.007.008.007.015.007.022v.231c0 .007 0 .014-.007.021-.007.007-.014.007-.02.007H8.83c-.007 0-.007 0-.007.007v.197c0 .007 0 .007.007.007h.519c.007 0 .014 0 .021.007.007.007.007.014.007.02v.183c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.52c-.006 0-.006 0-.006.007v.197c0 .007 0 .007.007.007h.604c.006 0 .02 0 .02.007.007.007.007.014.007.02v.225c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.898a.132.132 0 0 0 .028.042zm-1.171.948c.007 0 .014 0 .02.007.008.007.008.014.008.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.779a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035v.89c0 .007 0 .015.007.022.007.007.014.007.021.007h.463zm-1.704.28c.007.007.007.014 0 .021-.007.007-.007.007-.021.007H6.27c-.007 0-.021 0-.028-.007l-.021-.02-.19-.345c0-.007-.006-.007-.013-.007H5.8c-.007 0-.007 0-.007.007v.337c0 .021-.014.035-.035.035h-.252c-.021 0-.036-.014-.036-.035v-1.2c0-.02.015-.034.036-.034h.82c.028 0 .056.007.084.014.028.014.05.028.07.042a.146.146 0 0 1 .043.07.178.178 0 0 1 .014.084v.477a.21.21 0 0 1-.043.126.23.23 0 0 1-.105.077h-.007c-.007 0-.007.007-.007.014v.007zm-.358-.947h-.435v.309h.435zm-1.241-.294c.028 0 .056.007.084.014.028.014.049.028.07.042a.146.146 0 0 1 .042.07.352.352 0 0 1 .014.084v.842c0 .028-.007.056-.014.084-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.64c-.028 0-.056-.007-.084-.014-.028-.014-.049-.028-.07-.042a.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842c0-.028.007-.056.014-.084.007-.028.028-.05.042-.07a.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.113.308H4.44v.653h.427zm-1.03-.294c.006.007.006.014.006.02v1.025c0 .028-.007.056-.014.084-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.547a.352.352 0 0 1-.084-.014.538.538 0 0 1-.07-.042.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.386c0-.021.014-.035.035-.035h.252c.021 0 .035.014.035.035v.26c0 .007 0 .014.007.02.007.008.014.008.021.008h.26c.007 0 .02 0 .02-.007.008-.007.008-.014.008-.021v-.891c0-.007 0-.021.007-.021.007-.007.014-.007.02-.007h.253c.021-.014.035-.007.042 0zm-1.354-.014c.028 0 .056.007.084.014.028.014.049.028.07.042a.146.146 0 0 1 .042.07.352.352 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.253c-.007 0-.021 0-.021-.007-.007-.007-.007-.014-.007-.02v-.324c0-.007 0-.02-.007-.02-.007-.008-.014-.008-.021-.008h-.358c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.323c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.024c0-.028.007-.056.014-.084a.617.617 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.057-.014.085-.014zm-.112.603v-.316h-.428v.316zm-1.158-.582c.028.014.05.028.07.042a.146.146 0 0 1 .043.07.352.352 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.253c-.007 0-.014 0-.021-.007-.007-.007-.007-.014-.007-.02v-.927H.828v.926c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007H.568c-.007 0-.021 0-.021-.007-.007-.007-.007-.014-.007-.02v-.927H.337v.926c0 .021-.014.035-.035.035H.049a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h1.094c.021-.007.05 0 .07.014Z" }) + ] + } + ); +}); + +exports.default = SiMajorleaguehacking; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.d.ts new file mode 100644 index 000000000..ee5e25293 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#265A8F"; +declare const SiMajorleaguehacking: IconType; +export { SiMajorleaguehacking as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.mjs new file mode 100644 index 000000000..b261d7b3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMajorleaguehacking.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#265A8F"; +const SiMajorleaguehacking = React.forwardRef(function SiMajorleaguehacking2({ title = "Major League Hacking", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.769 6.947c.063 0 .119.02.16.063a.225.225 0 0 1 .071.161v7.778a.213.213 0 0 1-.07.161.222.222 0 0 1-.161.064H22.07a.228.228 0 0 1-.231-.224v-2.715a.206.206 0 0 0-.063-.154c-.042-.042-.091-.056-.162-.056h-2.377a.25.25 0 0 0-.161.056.212.212 0 0 0-.07.154v2.714c0 .147-.078.225-.232.225h-1.683c-.155 0-.232-.078-.232-.225V7.171c0-.147.077-.224.232-.224h1.683c.154 0 .231.077.231.224v2.63c0 .148.078.225.232.225h2.377c.064 0 .12-.021.162-.063a.222.222 0 0 0 .063-.162v-2.63a.21.21 0 0 1 .07-.161.222.222 0 0 1 .161-.063zm-8.374 6.207c.063 0 .119.02.154.063a.222.222 0 0 1 .063.161v1.55a.234.234 0 0 1-.063.161.206.206 0 0 1-.154.064h-5.45c-.154 0-.231-.078-.231-.225V7.171c0-.147.077-.224.231-.224h1.67c.154 0 .23.077.23.224v5.78a.19.19 0 0 0 .07.154c.043.042.099.056.162.056h3.318zm-7.75-6.102c.161.07.301.168.42.288.12.119.21.26.288.42.07.162.105.337.105.52v6.648a.206.206 0 0 1-.063.154.206.206 0 0 1-.154.064H6.649a.181.181 0 0 1-.148-.064.231.231 0 0 1-.056-.154V8.883H5.162v6.045a.231.231 0 0 1-.056.154.191.191 0 0 1-.147.064H3.514a.206.206 0 0 1-.155-.064.206.206 0 0 1-.063-.154V8.883H2.013v6.045c0 .147-.07.218-.218.218H.217c-.147 0-.217-.07-.217-.218V7.164c0-.147.07-.217.217-.217H7.12c.189 0 .357.035.526.105zm16.341 9.314c.007.007.007.014.007.02v.45c0 .028-.007.056-.014.084-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.639a.352.352 0 0 1-.084-.014c-.028-.014-.049-.028-.07-.042a.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842c0-.028.007-.056.014-.084.007-.028.028-.05.042-.07a.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014h.75c.008 0 .022 0 .022.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.603c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.59c0 .007 0 .014.007.02.007.008.014.008.02.008h.358c.007 0 .014 0 .021-.007.007-.007.007-.014.007-.022v-.315c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.253c.014 0 .021.007.028.014zm-1.466-.568c.028.014.05.028.07.042a.146.146 0 0 1 .042.07c.014.028.014.056.014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.253c-.007 0-.014 0-.021-.007-.007-.007-.007-.014-.007-.02v-.892c0-.007 0-.014-.007-.02-.007-.008-.014-.008-.021-.008h-.358c-.007 0-.021 0-.021.007s-.007.014-.007.021v.891c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.821c.014-.007.042 0 .063.014zM21.3 17.01c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035zm-.975-.701c-.007.007-.007.007 0 .014l.42.694c.008.007.008.014 0 .021-.006.007-.006.007-.02.007h-.302c-.007 0-.02 0-.028-.007l-.02-.02-.274-.492c-.007-.007-.007-.007-.007 0l-.148.161c-.007.007-.014.015-.014.029-.007.014-.007.02-.007.035v.266c0 .021-.014.035-.035.035h-.245c-.021 0-.035-.014-.035-.035v-1.2c0-.02.014-.034.035-.034h.252c.021 0 .035.014.035.035v.54l.47-.547a.097.097 0 0 1 .028-.021c.014-.007.021-.007.028-.007h.302c.007 0 .014 0 .014.007s0 .014-.007.02zm-1.648-.218c-.007.007-.007.014-.007.021v.59c0 .007 0 .014.007.02.007.008.014.008.02.008h.583c.007 0 .021 0 .021.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.722a.352.352 0 0 1-.085-.014.617.617 0 0 1-.07-.042.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.849c0-.028.007-.056.014-.084a.538.538 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.057-.014.085-.014h.722c.007 0 .021 0 .021.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.582c-.007.035-.014.042-.021.042zm-.82-.315c.027 0 .055.007.083.014.028.014.05.028.07.042a.146.146 0 0 1 .043.07.351.351 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.253c-.007 0-.021 0-.021-.007-.007-.007-.007-.014-.007-.02v-.324c0-.007 0-.02-.007-.02-.007-.008-.014-.008-.021-.008h-.358c-.007 0-.02 0-.02.007-.008.007-.008.014-.008.021v.323c0 .021-.014.035-.035.035h-.252c-.021 0-.035-.014-.035-.035v-1.024c0-.028.007-.056.014-.084a.617.617 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.106.603v-.316h-.428v.316zm-1.066-.603c.007 0 .021 0 .021.007.007.007.007.014.007.02v1.2c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.253c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.422c0-.007 0-.014-.007-.02-.007-.008-.014-.008-.02-.008h-.358c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.421c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035v.407c0 .02.014.035.035.035h.357c.007 0 .014 0 .021-.007.007-.007.007-.014.007-.021v-.407c0-.007 0-.021.007-.021.007-.007.014-.007.022-.007h.245zm-1.943.014c.007.007.007.014.007.02v.232c0 .007 0 .014-.007.021-.007.007-.014.007-.02.007h-.604c-.007 0-.007 0-.007.007v.197c0 .007 0 .007.007.007h.52c.006 0 .013 0 .02.007.007.007.007.014.007.02v.183c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.52c-.007 0-.007 0-.007.007v.197c0 .007 0 .007.007.007h.604c.006 0 .02 0 .02.007.007.007.007.014.007.02v.225c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.898a.132.132 0 0 0 .028.042zm-1.255 0c.007.007.007.014.007.02v1.025a.352.352 0 0 1-.014.084c-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.085.014h-.638a.352.352 0 0 1-.084-.014c-.028-.014-.049-.028-.07-.042a.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-1.024c0-.021.014-.035.035-.035h.252c.021 0 .035.014.035.035v.89c0 .008 0 .015.007.022.007.007.014.007.022.007h.357c.007 0 .014 0 .021-.007.007-.007.007-.014.007-.021v-.891c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.253c.02-.007.028 0 .035.007zm-1.333.575c.007.007.007.014.007.02v.45a.352.352 0 0 1-.014.084c-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.638a.352.352 0 0 1-.084-.014.478.478 0 0 1-.07-.042.146.146 0 0 1-.043-.07c-.014-.028-.014-.056-.014-.084v-.842c0-.028.007-.056.014-.084.007-.028.028-.05.042-.07a.146.146 0 0 1 .07-.042c.029-.014.057-.014.085-.014h.75c.007 0 .021 0 .021.007.007.007.007.014.007.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.02.007h-.604c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.59c0 .007 0 .014.007.02.007.008.014.008.021.008h.358c.007 0 .014 0 .02-.007.008-.007.008-.014.008-.022v-.315c0-.007 0-.021.007-.021.007-.007.014-.007.02-.007h.253c.007 0 .021.007.028.014zm-1.55-.59c.028 0 .056.008.084.015.029.014.05.028.07.042a.146.146 0 0 1 .043.07.352.352 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.26c-.007 0-.02 0-.02-.007-.008-.007-.008-.014-.008-.02v-.324c0-.007 0-.02-.007-.02-.007-.008-.014-.008-.02-.008h-.366c-.007 0-.02 0-.02.007-.008.007-.008.014-.008.021v.323c0 .021-.014.035-.035.035h-.252c-.021 0-.035-.014-.035-.035v-1.024c0-.028.007-.056.014-.084a.617.617 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.112.604v-.316h-.428v.316zm-1.038-.59c.007.008.007.015.007.022v.231c0 .007 0 .014-.007.021-.007.007-.014.007-.02.007H8.83c-.007 0-.007 0-.007.007v.197c0 .007 0 .007.007.007h.519c.007 0 .014 0 .021.007.007.007.007.014.007.02v.183c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.52c-.006 0-.006 0-.006.007v.197c0 .007 0 .007.007.007h.604c.006 0 .02 0 .02.007.007.007.007.014.007.02v.225c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.899a.034.034 0 0 1-.035-.035v-1.199c0-.007 0-.021.007-.021.007-.007.014-.007.021-.007h.898a.132.132 0 0 0 .028.042zm-1.171.948c.007 0 .014 0 .02.007.008.007.008.014.008.02v.24c0 .006 0 .02-.007.02-.007.007-.014.007-.021.007h-.779a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h.253c.02 0 .035.014.035.035v.89c0 .007 0 .015.007.022.007.007.014.007.021.007h.463zm-1.704.28c.007.007.007.014 0 .021-.007.007-.007.007-.021.007H6.27c-.007 0-.021 0-.028-.007l-.021-.02-.19-.345c0-.007-.006-.007-.013-.007H5.8c-.007 0-.007 0-.007.007v.337c0 .021-.014.035-.035.035h-.252c-.021 0-.036-.014-.036-.035v-1.2c0-.02.015-.034.036-.034h.82c.028 0 .056.007.084.014.028.014.05.028.07.042a.146.146 0 0 1 .043.07.178.178 0 0 1 .014.084v.477a.21.21 0 0 1-.043.126.23.23 0 0 1-.105.077h-.007c-.007 0-.007.007-.007.014v.007zm-.358-.947h-.435v.309h.435zm-1.241-.294c.028 0 .056.007.084.014.028.014.049.028.07.042a.146.146 0 0 1 .042.07.352.352 0 0 1 .014.084v.842c0 .028-.007.056-.014.084-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.64c-.028 0-.056-.007-.084-.014-.028-.014-.049-.028-.07-.042a.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.842c0-.028.007-.056.014-.084.007-.028.028-.05.042-.07a.146.146 0 0 1 .07-.042c.028-.014.056-.014.084-.014zm-.113.308H4.44v.653h.427zm-1.03-.294c.006.007.006.014.006.02v1.025c0 .028-.007.056-.014.084-.014.028-.028.049-.042.07a.146.146 0 0 1-.07.042c-.028.014-.056.014-.084.014h-.547a.352.352 0 0 1-.084-.014.538.538 0 0 1-.07-.042.146.146 0 0 1-.042-.07c-.014-.028-.014-.056-.014-.084v-.386c0-.021.014-.035.035-.035h.252c.021 0 .035.014.035.035v.26c0 .007 0 .014.007.02.007.008.014.008.021.008h.26c.007 0 .02 0 .02-.007.008-.007.008-.014.008-.021v-.891c0-.007 0-.021.007-.021.007-.007.014-.007.02-.007h.253c.021-.014.035-.007.042 0zm-1.354-.014c.028 0 .056.007.084.014.028.014.049.028.07.042a.146.146 0 0 1 .042.07.352.352 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.02.007h-.253c-.007 0-.021 0-.021-.007-.007-.007-.007-.014-.007-.02v-.324c0-.007 0-.02-.007-.02-.007-.008-.014-.008-.021-.008h-.358c-.007 0-.021 0-.021.007-.007.007-.007.014-.007.021v.323c0 .021-.014.035-.035.035h-.253a.034.034 0 0 1-.035-.035v-1.024c0-.028.007-.056.014-.084a.617.617 0 0 1 .042-.07.146.146 0 0 1 .07-.042c.028-.014.057-.014.085-.014zm-.112.603v-.316h-.428v.316zm-1.158-.582c.028.014.05.028.07.042a.146.146 0 0 1 .043.07.352.352 0 0 1 .014.084v1.024c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007h-.253c-.007 0-.014 0-.021-.007-.007-.007-.007-.014-.007-.02v-.927H.828v.926c0 .007 0 .021-.007.021-.007.007-.014.007-.021.007H.568c-.007 0-.021 0-.021-.007-.007-.007-.007-.014-.007-.02v-.927H.337v.926c0 .021-.014.035-.035.035H.049a.034.034 0 0 1-.035-.035v-1.2c0-.02.014-.034.035-.034h1.094c.021-.007.05 0 .07.014Z" }) + ] + } + ); +}); + +export { SiMajorleaguehacking as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMake.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMake.cjs new file mode 100644 index 000000000..3b1f16112 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMake.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D00CC"; +const SiMake = React__namespace.forwardRef(function SiMake2({ title = "Make", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.38 3.498c-.27 0-.511.19-.566.465L9.85 18.986a.578.578 0 0 0 .453.678l4.095.826a.58.58 0 0 0 .682-.455l2.963-15.021a.578.578 0 0 0-.453-.678l-4.096-.826a.589.589 0 0 0-.113-.012zm-5.876.098a.576.576 0 0 0-.516.318L.062 17.697a.575.575 0 0 0 .256.774l3.733 1.877a.578.578 0 0 0 .775-.258l6.926-13.781a.577.577 0 0 0-.256-.776L7.762 3.658a.571.571 0 0 0-.258-.062zm11.74.115a.576.576 0 0 0-.576.576v15.426c0 .318.258.578.576.578h4.178a.58.58 0 0 0 .578-.578V4.287a.578.578 0 0 0-.578-.576Z" }) + ] + } + ); +}); + +exports.default = SiMake; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMake.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMake.d.ts new file mode 100644 index 000000000..7e87932ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMake.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D00CC"; +declare const SiMake: IconType; +export { SiMake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMake.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMake.mjs new file mode 100644 index 000000000..1eb0240a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMake.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D00CC"; +const SiMake = React.forwardRef(function SiMake2({ title = "Make", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.38 3.498c-.27 0-.511.19-.566.465L9.85 18.986a.578.578 0 0 0 .453.678l4.095.826a.58.58 0 0 0 .682-.455l2.963-15.021a.578.578 0 0 0-.453-.678l-4.096-.826a.589.589 0 0 0-.113-.012zm-5.876.098a.576.576 0 0 0-.516.318L.062 17.697a.575.575 0 0 0 .256.774l3.733 1.877a.578.578 0 0 0 .775-.258l6.926-13.781a.577.577 0 0 0-.256-.776L7.762 3.658a.571.571 0 0 0-.258-.062zm11.74.115a.576.576 0 0 0-.576.576v15.426c0 .318.258.578.576.578h4.178a.58.58 0 0 0 .578-.578V4.287a.578.578 0 0 0-.578-.576Z" }) + ] + } + ); +}); + +export { SiMake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.cjs new file mode 100644 index 000000000..bbc25dc55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1E0D"; +const SiMakerbot = React__namespace.forwardRef(function SiMakerbot2({ title = "MakerBot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.055 7.328c-.604-1.428-1.47-2.714-2.569-3.813C19.382 2.414 18.1 1.551 16.672.944 15.189.315 13.619 0 12 0c-1.62 0-3.19.318-4.672.945-1.428.604-2.711 1.47-3.813 2.57C2.414 4.615 1.551 5.9.943 7.328.315 8.81 0 10.38 0 12c0 1.619.318 3.189.945 4.671.604 1.429 1.47 2.714 2.569 3.814 1.103 1.1 2.386 1.964 3.813 2.57C8.81 23.686 10.38 24 12 24c1.619 0 3.189-.314 4.671-.944 1.429-.601 2.711-1.471 3.814-2.564 1.1-1.095 1.964-2.386 2.57-3.811.63-1.47.944-3.045.944-4.665 0-1.619-.314-3.18-.944-4.664v-.024zM12 22.335C6.293 22.335 1.665 17.707 1.665 12S6.293 1.665 12 1.665 22.335 6.293 22.335 12 17.707 22.335 12 22.335zm3.242-18.214H8.757c-.922 0-1.7.324-2.333.975-.635.644-.953 1.425-.953 2.334v10.182c0 .449.135.81.4 1.095.267.269.615.42 1.051.42.445 0 .805-.135 1.079-.405.272-.271.409-.63.409-1.08V7.08h2.141v10.529c0 .445.131.806.391 1.08.259.273.611.411 1.059.411.446 0 .799-.138 1.059-.411.26-.274.39-.635.39-1.08V7.08h2.142v10.529c0 .445.135.806.408 1.08.275.273.635.411 1.08.411.435 0 .783-.141 1.05-.423.268-.28.401-.638.401-1.069V7.426c0-.91-.318-1.688-.953-2.336-.633-.648-1.41-.975-2.334-.975v.006z" }) + ] + } + ); +}); + +exports.default = SiMakerbot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.d.ts new file mode 100644 index 000000000..340a5ba5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1E0D"; +declare const SiMakerbot: IconType; +export { SiMakerbot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.mjs new file mode 100644 index 000000000..c8fa519f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMakerbot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1E0D"; +const SiMakerbot = React.forwardRef(function SiMakerbot2({ title = "MakerBot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.055 7.328c-.604-1.428-1.47-2.714-2.569-3.813C19.382 2.414 18.1 1.551 16.672.944 15.189.315 13.619 0 12 0c-1.62 0-3.19.318-4.672.945-1.428.604-2.711 1.47-3.813 2.57C2.414 4.615 1.551 5.9.943 7.328.315 8.81 0 10.38 0 12c0 1.619.318 3.189.945 4.671.604 1.429 1.47 2.714 2.569 3.814 1.103 1.1 2.386 1.964 3.813 2.57C8.81 23.686 10.38 24 12 24c1.619 0 3.189-.314 4.671-.944 1.429-.601 2.711-1.471 3.814-2.564 1.1-1.095 1.964-2.386 2.57-3.811.63-1.47.944-3.045.944-4.665 0-1.619-.314-3.18-.944-4.664v-.024zM12 22.335C6.293 22.335 1.665 17.707 1.665 12S6.293 1.665 12 1.665 22.335 6.293 22.335 12 17.707 22.335 12 22.335zm3.242-18.214H8.757c-.922 0-1.7.324-2.333.975-.635.644-.953 1.425-.953 2.334v10.182c0 .449.135.81.4 1.095.267.269.615.42 1.051.42.445 0 .805-.135 1.079-.405.272-.271.409-.63.409-1.08V7.08h2.141v10.529c0 .445.131.806.391 1.08.259.273.611.411 1.059.411.446 0 .799-.138 1.059-.411.26-.274.39-.635.39-1.08V7.08h2.142v10.529c0 .445.135.806.408 1.08.275.273.635.411 1.08.411.435 0 .783-.141 1.05-.423.268-.28.401-.638.401-1.069V7.426c0-.91-.318-1.688-.953-2.336-.633-.648-1.41-.975-2.334-.975v.006z" }) + ] + } + ); +}); + +export { SiMakerbot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.cjs new file mode 100644 index 000000000..9675ff493 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC5757"; +const SiMalt = React__namespace.forwardRef(function SiMalt2({ title = "Malt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.195 8.581c-.069 0-.285.026-.484.113-.432.181-.597.311-.597.58v5.023c0 .277.26.355.735.355.467 0 .649-.087.649-.355V8.858c0-.173-.113-.277-.303-.277zm3.502 4.903c-.345.087-.45.113-.57.113-.147 0-.2-.044-.2-.2v-2.161h.788c.207 0 .285-.078.285-.285 0-.173-.078-.26-.285-.26h-.787v-.839c0-.259-.087-.363-.268-.363-.173 0-.415.156-.934.597-.528.45-.83.744-.83.951 0 .121.086.199.224.199h.424v2.335c0 .683.337 1.08.925 1.08.39 0 .675-.146 1.012-.406.311-.242.51-.432.51-.596 0-.139-.103-.217-.294-.165zm-15.21-3.078c-.13 0-.285.026-.484.112-.433.19-.597.312-.597.58v3.2c0 .276.26.354.735.354.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277Zm1.816 0c-.355 0-.675.121-.986.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .251-.078.416-.078.164 0 .25.173.25.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.934-1.115zm2.43 0c-.337 0-.692.121-1.003.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .25-.078.432-.078s.268.173.268.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.951-1.115zm5.335 0a1.29 1.29 0 0 0-.484.112c-.26.113-.398.2-.467.312-.26-.303-.597-.398-.977-.398-1.116 0-1.911.942-1.911 2.283 0 1.124.605 1.954 1.461 1.954.26 0 .493-.104.77-.363.216-.2.32-.329.32-.45a.14.14 0 0 0-.147-.147c-.121 0-.251.104-.416.104-.354 0-.596-.545-.596-1.35 0-.803.32-1.348.804-1.348.32 0 .562.242.562.657v2.525c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277ZM3.499 13.563l-.21.21.619.618c.304.304.79.598 1.244.144.339-.34.26-.695.073-.98-.06.004-1.726.008-1.726.008zm-.963-2.325.21-.21-.608-.607c-.304-.303-.765-.621-1.243-.143-.351.35-.273.692-.087.97Zm2.86.416c-.037.043-1.511 1.524-1.511 1.524h1.154c.43 0 .981-.101.981-.777 0-.496-.296-.683-.624-.747zm-3.244-.031H.981c-.43 0-.981.135-.981.778 0 .479.307.676.641.745.04-.046 1.511-1.523 1.511-1.523zm1.484 3.04-.618-.618-.608.607a2.613 2.613 0 0 1-.137.128c.07.333.266.639.745.639s.676-.307.745-.641c-.043-.037-.085-.073-.127-.115zM2.41 10.15l.608.607.618-.618a2.25 2.25 0 0 1 .128-.118c-.065-.327-.251-.623-.747-.623s-.682.297-.746.625c.046.04.092.08.14.127zm2.742.117c-.455-.454-.94-.16-1.244.144l-2.87 2.87c-.303.303-.621.765-.143 1.243.478.478.94.16 1.243-.143l2.87-2.87c.304-.304.598-.79.144-1.244Z" }) + ] + } + ); +}); + +exports.default = SiMalt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.d.ts new file mode 100644 index 000000000..f034128d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC5757"; +declare const SiMalt: IconType; +export { SiMalt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.mjs new file mode 100644 index 000000000..035017dec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMalt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC5757"; +const SiMalt = React.forwardRef(function SiMalt2({ title = "Malt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.195 8.581c-.069 0-.285.026-.484.113-.432.181-.597.311-.597.58v5.023c0 .277.26.355.735.355.467 0 .649-.087.649-.355V8.858c0-.173-.113-.277-.303-.277zm3.502 4.903c-.345.087-.45.113-.57.113-.147 0-.2-.044-.2-.2v-2.161h.788c.207 0 .285-.078.285-.285 0-.173-.078-.26-.285-.26h-.787v-.839c0-.259-.087-.363-.268-.363-.173 0-.415.156-.934.597-.528.45-.83.744-.83.951 0 .121.086.199.224.199h.424v2.335c0 .683.337 1.08.925 1.08.39 0 .675-.146 1.012-.406.311-.242.51-.432.51-.596 0-.139-.103-.217-.294-.165zm-15.21-3.078c-.13 0-.285.026-.484.112-.433.19-.597.312-.597.58v3.2c0 .276.26.354.735.354.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277Zm1.816 0c-.355 0-.675.121-.986.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .251-.078.416-.078.164 0 .25.173.25.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.934-1.115zm2.43 0c-.337 0-.692.121-1.003.363-.173.138-.32.294-.32.424 0 .112.078.173.19.173.19 0 .25-.078.432-.078s.268.173.268.476v2.533c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-2.776c0-.657-.39-1.115-.951-1.115zm5.335 0a1.29 1.29 0 0 0-.484.112c-.26.113-.398.2-.467.312-.26-.303-.597-.398-.977-.398-1.116 0-1.911.942-1.911 2.283 0 1.124.605 1.954 1.461 1.954.26 0 .493-.104.77-.363.216-.2.32-.329.32-.45a.14.14 0 0 0-.147-.147c-.121 0-.251.104-.416.104-.354 0-.596-.545-.596-1.35 0-.803.32-1.348.804-1.348.32 0 .562.242.562.657v2.525c0 .277.26.355.735.355.467 0 .649-.087.649-.355v-3.614c0-.173-.113-.277-.303-.277ZM3.499 13.563l-.21.21.619.618c.304.304.79.598 1.244.144.339-.34.26-.695.073-.98-.06.004-1.726.008-1.726.008zm-.963-2.325.21-.21-.608-.607c-.304-.303-.765-.621-1.243-.143-.351.35-.273.692-.087.97Zm2.86.416c-.037.043-1.511 1.524-1.511 1.524h1.154c.43 0 .981-.101.981-.777 0-.496-.296-.683-.624-.747zm-3.244-.031H.981c-.43 0-.981.135-.981.778 0 .479.307.676.641.745.04-.046 1.511-1.523 1.511-1.523zm1.484 3.04-.618-.618-.608.607a2.613 2.613 0 0 1-.137.128c.07.333.266.639.745.639s.676-.307.745-.641c-.043-.037-.085-.073-.127-.115zM2.41 10.15l.608.607.618-.618a2.25 2.25 0 0 1 .128-.118c-.065-.327-.251-.623-.747-.623s-.682.297-.746.625c.046.04.092.08.14.127zm2.742.117c-.455-.454-.94-.16-1.244.144l-2.87 2.87c-.303.303-.621.765-.143 1.243.478.478.94.16 1.243-.143l2.87-2.87c.304-.304.598-.79.144-1.244Z" }) + ] + } + ); +}); + +export { SiMalt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.cjs new file mode 100644 index 000000000..e12c725cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D3ECC"; +const SiMalwarebytes = React__namespace.forwardRef(function SiMalwarebytes2({ title = "Malwarebytes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.87 22.9027c.1571 0 .2796-.1236.2796-.2824 0-.124-.0874-.2828-.2445-.2828h-.088l-.1926-.0352c-3.2382-.636-5.6358-3.5505-5.6358-6.96 0-1.4478.4376-2.8256 1.19-3.938.1229-.1593.315-.2828.5254-.0884l5.1113 5.2277c.0342.0352.122.0883.1921.0883.0875 0 .1576-.0353.1927-.0883l5.1458-5.1924c.1927-.1944.368-.1588.473.0352a7.1 7.1 0 0 1 1.19 3.9385c0 1.819-.6826 3.4622-1.8032 4.7164-.0347.0353-.087.0883-.1222.1236 0 .0353-.035.0883-.035.1235 0 .1593.1225.2828.28.2828h.0351c.035 0 .0875-.0352.1225-.0352 6.8262-2.897 6.5116-9.75 6.5116-9.75 0-3.9036-1.8384-7.4184-4.6737-9.6263-.1224-.0883-.3151-.0883-.403.0352l-6.7033 6.8534c-.1228.1235-.3154.1235-.4376 0L5.0234 1.1949c-.1225-.1235-.2797-.1235-.4022-.0352C1.8379 3.3676 0 6.8293 0 10.786c0 6.2875 4.7086 11.4806 10.7825 12.1167Z" }) + ] + } + ); +}); + +exports.default = SiMalwarebytes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.d.ts new file mode 100644 index 000000000..fd799c326 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D3ECC"; +declare const SiMalwarebytes: IconType; +export { SiMalwarebytes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.mjs new file mode 100644 index 000000000..0e0fd2c96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMalwarebytes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D3ECC"; +const SiMalwarebytes = React.forwardRef(function SiMalwarebytes2({ title = "Malwarebytes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.87 22.9027c.1571 0 .2796-.1236.2796-.2824 0-.124-.0874-.2828-.2445-.2828h-.088l-.1926-.0352c-3.2382-.636-5.6358-3.5505-5.6358-6.96 0-1.4478.4376-2.8256 1.19-3.938.1229-.1593.315-.2828.5254-.0884l5.1113 5.2277c.0342.0352.122.0883.1921.0883.0875 0 .1576-.0353.1927-.0883l5.1458-5.1924c.1927-.1944.368-.1588.473.0352a7.1 7.1 0 0 1 1.19 3.9385c0 1.819-.6826 3.4622-1.8032 4.7164-.0347.0353-.087.0883-.1222.1236 0 .0353-.035.0883-.035.1235 0 .1593.1225.2828.28.2828h.0351c.035 0 .0875-.0352.1225-.0352 6.8262-2.897 6.5116-9.75 6.5116-9.75 0-3.9036-1.8384-7.4184-4.6737-9.6263-.1224-.0883-.3151-.0883-.403.0352l-6.7033 6.8534c-.1228.1235-.3154.1235-.4376 0L5.0234 1.1949c-.1225-.1235-.2797-.1235-.4022-.0352C1.8379 3.3676 0 6.8293 0 10.786c0 6.2875 4.7086 11.4806 10.7825 12.1167Z" }) + ] + } + ); +}); + +export { SiMalwarebytes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.cjs new file mode 100644 index 000000000..e28324401 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D28D9"; +const SiMambaui = React__namespace.forwardRef(function SiMambaui2({ title = "Mamba UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.0454 15.831c1.3027.3488 2.4956.7732 3.9102 1.0423a30.7131 30.7131 0 0 0 .4045 6.0695c-1.6978-1.9082-4.1376-5.1865-4.3147-7.1117Zm15.8426 0c-1.2583.3488-2.4104.7732-3.7766 1.0423a31.7724 31.7724 0 0 1-.3904 6.0695c1.6439-1.9082 4.0012-5.1865 4.167-7.1117zM6.7826 1.0573c2.3175 4.1689 9.686 3.6288 11.4596 0a6.223 6.223 0 0 1 2.3374 1.3862c-.0862 3.607-2.3374 4.8974-2.3374 4.8974l.0777.8376c2.5657-.7428 3.5217-.6632 3.336-5.0216 1.2895 1.0583 2.4559 3.067 2.3355 4.3584-.125 1.3416-2.037 5.3768-1.8002 5.3058a87.7487 87.7487 0 0 1-8.4447 3.2043 2.9305 2.9305 0 0 0-1.9433-1.6723 12.7813 12.7813 0 0 0-1.784 1.7794c-2.347-.8527-4.4238-1.8002-6.5944-2.7211l-1.7055-.6282-.776-1.9897c-1.0422-2.579-1.5159-4.0154.1554-6.2789.3639-.4917.9977-1.5604 1.5558-1.7945-.109 3.6952-1.2242 5.4537 2.9438 5.4574l.0776-.8375s-1.8096-.2265-2.2492-4.8975zm2.073 11.2029c-.2074.2785-.3363.3486-.5428.6282.052.1392-.2066.1743-.1554.3136A2.8651 2.8651 0 0 0 9.01 14.353a2.6643 2.6643 0 0 0 1.7054-1.1511c-.2065-.4397-1.443-1.1626-1.8599-.9409Zm5.663 0c-.414.2785-.9048.6632-1.3188.9418.1288.2094.8015.7324.9313.9417.3904.235.2957.4274.776.2094a1.4013 1.4013 0 0 0 .8527-1.2554c-.2065-.2444-.414-.593-.6205-.8375Z" }) + ] + } + ); +}); + +exports.default = SiMambaui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.d.ts new file mode 100644 index 000000000..ea966baf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D28D9"; +declare const SiMambaui: IconType; +export { SiMambaui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.mjs new file mode 100644 index 000000000..21cd0913a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMambaui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D28D9"; +const SiMambaui = React.forwardRef(function SiMambaui2({ title = "Mamba UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.0454 15.831c1.3027.3488 2.4956.7732 3.9102 1.0423a30.7131 30.7131 0 0 0 .4045 6.0695c-1.6978-1.9082-4.1376-5.1865-4.3147-7.1117Zm15.8426 0c-1.2583.3488-2.4104.7732-3.7766 1.0423a31.7724 31.7724 0 0 1-.3904 6.0695c1.6439-1.9082 4.0012-5.1865 4.167-7.1117zM6.7826 1.0573c2.3175 4.1689 9.686 3.6288 11.4596 0a6.223 6.223 0 0 1 2.3374 1.3862c-.0862 3.607-2.3374 4.8974-2.3374 4.8974l.0777.8376c2.5657-.7428 3.5217-.6632 3.336-5.0216 1.2895 1.0583 2.4559 3.067 2.3355 4.3584-.125 1.3416-2.037 5.3768-1.8002 5.3058a87.7487 87.7487 0 0 1-8.4447 3.2043 2.9305 2.9305 0 0 0-1.9433-1.6723 12.7813 12.7813 0 0 0-1.784 1.7794c-2.347-.8527-4.4238-1.8002-6.5944-2.7211l-1.7055-.6282-.776-1.9897c-1.0422-2.579-1.5159-4.0154.1554-6.2789.3639-.4917.9977-1.5604 1.5558-1.7945-.109 3.6952-1.2242 5.4537 2.9438 5.4574l.0776-.8375s-1.8096-.2265-2.2492-4.8975zm2.073 11.2029c-.2074.2785-.3363.3486-.5428.6282.052.1392-.2066.1743-.1554.3136A2.8651 2.8651 0 0 0 9.01 14.353a2.6643 2.6643 0 0 0 1.7054-1.1511c-.2065-.4397-1.443-1.1626-1.8599-.9409Zm5.663 0c-.414.2785-.9048.6632-1.3188.9418.1288.2094.8015.7324.9313.9417.3904.235.2957.4274.776.2094a1.4013 1.4013 0 0 0 .8527-1.2554c-.2065-.2444-.414-.593-.6205-.8375Z" }) + ] + } + ); +}); + +export { SiMambaui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.cjs new file mode 100644 index 000000000..c27ae5d67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02749C"; +const SiMamp = React__namespace.forwardRef(function SiMamp2({ title = "MAMP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.102 9.629c.245-1.695 2.139-6.979 7.454-7.98 3.137-.592 7.005 1.034 9.72 3.788-1.354.929-2.259 1.732-2.944 2.708.511 1.892 2.018 2.663 3.078 2.984-1.175-.711-1.917-1.381-2.376-2.812 2.513-2.988 5.205-3.954 5.432-3.978 2.102 1.677 3.586 4.735 3.532 7.955-.062 3.728-2.09 7.569-4.415 9.121-.318.151-1.053-.25-1.153-.687.476-1.105 1.601-3.795 1.74-5.806.131-1.928-1.146-3.061-2.219-1.667-1.489 2.494-2.139 5.592-2.789 8.934-1.095.313-2.952.392-3.756-.036-.101-2.068.381-5.601-.991-6.84-.588-.533-1.169-.285-1.562.205-.992 1.227-.972 4.414-.78 6.479-1.109.686-2.99.543-4.179.117-.477-3.245-1.597-7.202-2.512-10.23-.255 1.216-.379 2.664-.34 3.908-.611-.498-1.308-3.116-.94-6.163z" }) + ] + } + ); +}); + +exports.default = SiMamp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.d.ts new file mode 100644 index 000000000..21f96e7e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02749C"; +declare const SiMamp: IconType; +export { SiMamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.mjs new file mode 100644 index 000000000..7b4a97351 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMamp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02749C"; +const SiMamp = React.forwardRef(function SiMamp2({ title = "MAMP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.102 9.629c.245-1.695 2.139-6.979 7.454-7.98 3.137-.592 7.005 1.034 9.72 3.788-1.354.929-2.259 1.732-2.944 2.708.511 1.892 2.018 2.663 3.078 2.984-1.175-.711-1.917-1.381-2.376-2.812 2.513-2.988 5.205-3.954 5.432-3.978 2.102 1.677 3.586 4.735 3.532 7.955-.062 3.728-2.09 7.569-4.415 9.121-.318.151-1.053-.25-1.153-.687.476-1.105 1.601-3.795 1.74-5.806.131-1.928-1.146-3.061-2.219-1.667-1.489 2.494-2.139 5.592-2.789 8.934-1.095.313-2.952.392-3.756-.036-.101-2.068.381-5.601-.991-6.84-.588-.533-1.169-.285-1.562.205-.992 1.227-.972 4.414-.78 6.479-1.109.686-2.99.543-4.179.117-.477-3.245-1.597-7.202-2.512-10.23-.255 1.216-.379 2.664-.34 3.908-.611-.498-1.308-3.116-.94-6.163z" }) + ] + } + ); +}); + +export { SiMamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMan.cjs new file mode 100644 index 000000000..c7341a3ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E40045"; +const SiMan = React__namespace.forwardRef(function SiMan2({ title = "MAN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.979 14.943h2.05L15.46 18.7h-2.054l-.263-.409h-2.278l-.264.41H8.548zm1.025 1.568l-.458.711h.916l-.458-.712zM0 17.372C0 10.704 5.372 5.3 12 5.3s12 5.405 12 12.073c0 .449-.024.892-.072 1.328H22.58c.054-.435.082-.878.082-1.328 0-5.924-4.774-10.726-10.662-10.726-5.889 0-10.661 4.802-10.661 10.726 0 .45.027.893.08 1.328H.073A12.254 12.274 0 0 1 0 17.372zm2.237-2.43h1.83l1.22 1.228 1.22-1.227h1.831V18.7H6.363v-1.38l-1.075 1.082-1.076-1.082v1.38H2.237v-3.757zm13.42 0h1.927l2.17 1.62v-1.62h1.975V18.7h-1.942l-2.156-1.605V18.7h-1.975Z" }) + ] + } + ); +}); + +exports.default = SiMan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMan.d.ts new file mode 100644 index 000000000..9ab63c9fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E40045"; +declare const SiMan: IconType; +export { SiMan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMan.mjs new file mode 100644 index 000000000..bf848b172 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E40045"; +const SiMan = React.forwardRef(function SiMan2({ title = "MAN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.979 14.943h2.05L15.46 18.7h-2.054l-.263-.409h-2.278l-.264.41H8.548zm1.025 1.568l-.458.711h.916l-.458-.712zM0 17.372C0 10.704 5.372 5.3 12 5.3s12 5.405 12 12.073c0 .449-.024.892-.072 1.328H22.58c.054-.435.082-.878.082-1.328 0-5.924-4.774-10.726-10.662-10.726-5.889 0-10.661 4.802-10.661 10.726 0 .45.027.893.08 1.328H.073A12.254 12.274 0 0 1 0 17.372zm2.237-2.43h1.83l1.22 1.228 1.22-1.227h1.831V18.7H6.363v-1.38l-1.075 1.082-1.076-1.082v1.38H2.237v-3.757zm13.42 0h1.927l2.17 1.62v-1.62h1.975V18.7h-1.942l-2.156-1.605V18.7h-1.975Z" }) + ] + } + ); +}); + +export { SiMan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.cjs new file mode 100644 index 000000000..c5f79ba2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF2929"; +const SiManageiq = React__namespace.forwardRef(function SiManageiq2({ title = "ManageIQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.095.1C5.718.094.544 5.26.538 11.637v.022c0 2.069.547 4.005 1.496 5.683l2.869-2.868a7.685 7.685 0 0 1-.54-2.815c0-4.262 3.47-7.73 7.732-7.73s7.732 3.468 7.732 7.73-3.47 7.732-7.732 7.732a7.685 7.685 0 0 1-2.6-.46L6.596 21.83a11.515 11.515 0 0 0 5.499 1.388c2.316 0 4.467-.686 6.275-1.856l2.393 2.392L24 20.512l-2.349-2.349c1.262-1.852 2-4.09 2-6.505C23.66 5.269 18.452.078 12.096.101L12.095.1zm0 9.34c-1.225 0-2.214.991-2.214 2.217s.989 2.215 2.214 2.215a2.216 2.216 0 1 0 0-4.432zm-4.24 3.368C7.57 13.09.273 20.39 0 20.662L3.24 23.9l7.855-7.855-3.24-3.238v.001z" }) + ] + } + ); +}); + +exports.default = SiManageiq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.d.ts new file mode 100644 index 000000000..8fbcbbde5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF2929"; +declare const SiManageiq: IconType; +export { SiManageiq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.mjs new file mode 100644 index 000000000..04adf4ba8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiManageiq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF2929"; +const SiManageiq = React.forwardRef(function SiManageiq2({ title = "ManageIQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.095.1C5.718.094.544 5.26.538 11.637v.022c0 2.069.547 4.005 1.496 5.683l2.869-2.868a7.685 7.685 0 0 1-.54-2.815c0-4.262 3.47-7.73 7.732-7.73s7.732 3.468 7.732 7.73-3.47 7.732-7.732 7.732a7.685 7.685 0 0 1-2.6-.46L6.596 21.83a11.515 11.515 0 0 0 5.499 1.388c2.316 0 4.467-.686 6.275-1.856l2.393 2.392L24 20.512l-2.349-2.349c1.262-1.852 2-4.09 2-6.505C23.66 5.269 18.452.078 12.096.101L12.095.1zm0 9.34c-1.225 0-2.214.991-2.214 2.217s.989 2.215 2.214 2.215a2.216 2.216 0 1 0 0-4.432zm-4.24 3.368C7.57 13.09.273 20.39 0 20.662L3.24 23.9l7.855-7.855-3.24-3.238v.001z" }) + ] + } + ); +}); + +export { SiManageiq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.cjs new file mode 100644 index 000000000..a479678b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA1F05"; +const SiMangacollec = React__namespace.forwardRef(function SiMangacollec2({ title = "Mangacollec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001 0 1.609 6v12L12 24l10.39-6V6Zm0 3.114 7.695 4.443v8.886l-7.695 4.443-7.697-4.443V7.557Zm0 .556L4.786 7.836v8.33l7.215 4.164 7.213-4.164v-8.33Zm0 .55 6.736 3.89v7.78l-6.736 3.89-6.738-3.89V8.11Zm0 3.356c-.067 0-.134.004-.174.01a1.126 1.126 0 0 0-.732.463 1.168 1.168 0 0 0-.182.445l-.01.065-.027-.006a1.242 1.242 0 0 0-.426-.008 1.162 1.162 0 0 0-.433.174c-.09.058-.271.244-.342.351-.262.394-.242.892.053 1.262.044.055.09.086.851.604l.803.546.045-.044a.802.802 0 0 1 .468-.233l.032-.004v-1.148l.02-.018c.03-.029.083-.028.109 0l.017.016v1.15l.031.004a.802.802 0 0 1 .47.233l.044.046.8-.545c.441-.299.813-.557.825-.572.183-.214.277-.474.266-.742-.012-.31-.137-.557-.405-.807a1.105 1.105 0 0 0-.98-.265l-.027.006-.01-.067a1.162 1.162 0 0 0-.184-.447 1.354 1.354 0 0 0-.275-.275 1.212 1.212 0 0 0-.455-.184 1.206 1.206 0 0 0-.172-.01zm3.441 2.518a1.687 1.687 0 0 0-.88.254c-.022.016-.44.302-.934.638-.494.337-.904.616-.91.623-.01.01-.008.015.006.043.028.054.053.14.064.207l.01.063h.83c.584 0 .836.005.855.012.015.005.032.014.037.023a.108.108 0 0 1-.007.096l-.018.02-.848.001-.85.004-.009.063a.768.768 0 0 1-.064.205c-.014.028-.015.036-.006.045.006.006.416.286.91.623.493.335.912.623.933.638.14.1.442.21.666.24.047.008.145.012.215.012a1.69 1.69 0 0 0 1.526-.949l.046-.098.03.006c.089.014.257.015.343 0 .418-.068.757-.376.862-.783l.021-.078-.015-.062a1.064 1.064 0 0 0-.268-.485 1.046 1.046 0 0 0-.566-.31 1.408 1.408 0 0 0-.352-.01l-.055.008-.048-.098a1.668 1.668 0 0 0-.778-.775 1.754 1.754 0 0 0-.746-.176Zm-6.88.006a1.577 1.577 0 0 0-.737.162c-.35.167-.625.438-.793.783l-.046.098-.055-.008a1.587 1.587 0 0 0-.172-.006.943.943 0 0 0-.361.068 1.072 1.072 0 0 0-.653.742l-.015.063.02.078c.08.306.293.561.583.697a.968.968 0 0 0 .477.096 3.16 3.16 0 0 0 .146-.01l.03-.006.046.098a1.71 1.71 0 0 0 1.362.945c.07.01.28.003.369-.008.185-.024.38-.082.549-.168a27.29 27.29 0 0 0 1.029-.687l.95-.648a.172.172 0 0 0-.019-.051.727.727 0 0 1-.06-.197l-.01-.065h-.836c-.618 0-.84-.002-.853-.01a.073.073 0 0 1-.02-.119l.024-.021.841-.002.844-.002.01-.06a.74.74 0 0 1 .06-.2.165.165 0 0 0 .018-.053c0-.002-.428-.292-.95-.646-.614-.419-.973-.66-1.028-.688a1.612 1.612 0 0 0-.75-.175zm3.404 1.257a.593.593 0 0 0-.426.196.608.608 0 0 0-.164.28.674.674 0 0 0 0 .333c.065.23.258.415.486.465a.648.648 0 0 0 .777-.555.64.64 0 0 0-.355-.652.595.595 0 0 0-.318-.067zm-.584 1.159-.799.546c-.44.3-.808.555-.82.567a.739.739 0 0 0-.072.086 1.065 1.065 0 0 0 .129 1.39c.189.2.392.31.654.354.08.014.255.013.345-.004a.48.48 0 0 1 .082-.012c.002.002.007.03.012.06.025.159.103.342.2.473.179.243.467.413.761.446.081.009.225.003.307-.01a1.15 1.15 0 0 0 .595-.307c.159-.158.276-.385.31-.601a.429.429 0 0 1 .013-.06 1.35 1.35 0 0 0 .428.016c.257-.045.463-.156.646-.347.148-.155.227-.278.285-.447a1.058 1.058 0 0 0-.225-1.041 35.566 35.566 0 0 0-.82-.568l-.795-.541-.045.046a.795.795 0 0 1-.469.23l-.03.007v1.105l-.022.022a.075.075 0 0 1-.106-.004l-.02-.024V12.8l-.03-.006a.8.8 0 0 1-.47-.23z" }) + ] + } + ); +}); + +exports.default = SiMangacollec; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.d.ts new file mode 100644 index 000000000..029898585 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA1F05"; +declare const SiMangacollec: IconType; +export { SiMangacollec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.mjs new file mode 100644 index 000000000..35dd6cf1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMangacollec.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA1F05"; +const SiMangacollec = React.forwardRef(function SiMangacollec2({ title = "Mangacollec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001 0 1.609 6v12L12 24l10.39-6V6Zm0 3.114 7.695 4.443v8.886l-7.695 4.443-7.697-4.443V7.557Zm0 .556L4.786 7.836v8.33l7.215 4.164 7.213-4.164v-8.33Zm0 .55 6.736 3.89v7.78l-6.736 3.89-6.738-3.89V8.11Zm0 3.356c-.067 0-.134.004-.174.01a1.126 1.126 0 0 0-.732.463 1.168 1.168 0 0 0-.182.445l-.01.065-.027-.006a1.242 1.242 0 0 0-.426-.008 1.162 1.162 0 0 0-.433.174c-.09.058-.271.244-.342.351-.262.394-.242.892.053 1.262.044.055.09.086.851.604l.803.546.045-.044a.802.802 0 0 1 .468-.233l.032-.004v-1.148l.02-.018c.03-.029.083-.028.109 0l.017.016v1.15l.031.004a.802.802 0 0 1 .47.233l.044.046.8-.545c.441-.299.813-.557.825-.572.183-.214.277-.474.266-.742-.012-.31-.137-.557-.405-.807a1.105 1.105 0 0 0-.98-.265l-.027.006-.01-.067a1.162 1.162 0 0 0-.184-.447 1.354 1.354 0 0 0-.275-.275 1.212 1.212 0 0 0-.455-.184 1.206 1.206 0 0 0-.172-.01zm3.441 2.518a1.687 1.687 0 0 0-.88.254c-.022.016-.44.302-.934.638-.494.337-.904.616-.91.623-.01.01-.008.015.006.043.028.054.053.14.064.207l.01.063h.83c.584 0 .836.005.855.012.015.005.032.014.037.023a.108.108 0 0 1-.007.096l-.018.02-.848.001-.85.004-.009.063a.768.768 0 0 1-.064.205c-.014.028-.015.036-.006.045.006.006.416.286.91.623.493.335.912.623.933.638.14.1.442.21.666.24.047.008.145.012.215.012a1.69 1.69 0 0 0 1.526-.949l.046-.098.03.006c.089.014.257.015.343 0 .418-.068.757-.376.862-.783l.021-.078-.015-.062a1.064 1.064 0 0 0-.268-.485 1.046 1.046 0 0 0-.566-.31 1.408 1.408 0 0 0-.352-.01l-.055.008-.048-.098a1.668 1.668 0 0 0-.778-.775 1.754 1.754 0 0 0-.746-.176Zm-6.88.006a1.577 1.577 0 0 0-.737.162c-.35.167-.625.438-.793.783l-.046.098-.055-.008a1.587 1.587 0 0 0-.172-.006.943.943 0 0 0-.361.068 1.072 1.072 0 0 0-.653.742l-.015.063.02.078c.08.306.293.561.583.697a.968.968 0 0 0 .477.096 3.16 3.16 0 0 0 .146-.01l.03-.006.046.098a1.71 1.71 0 0 0 1.362.945c.07.01.28.003.369-.008.185-.024.38-.082.549-.168a27.29 27.29 0 0 0 1.029-.687l.95-.648a.172.172 0 0 0-.019-.051.727.727 0 0 1-.06-.197l-.01-.065h-.836c-.618 0-.84-.002-.853-.01a.073.073 0 0 1-.02-.119l.024-.021.841-.002.844-.002.01-.06a.74.74 0 0 1 .06-.2.165.165 0 0 0 .018-.053c0-.002-.428-.292-.95-.646-.614-.419-.973-.66-1.028-.688a1.612 1.612 0 0 0-.75-.175zm3.404 1.257a.593.593 0 0 0-.426.196.608.608 0 0 0-.164.28.674.674 0 0 0 0 .333c.065.23.258.415.486.465a.648.648 0 0 0 .777-.555.64.64 0 0 0-.355-.652.595.595 0 0 0-.318-.067zm-.584 1.159-.799.546c-.44.3-.808.555-.82.567a.739.739 0 0 0-.072.086 1.065 1.065 0 0 0 .129 1.39c.189.2.392.31.654.354.08.014.255.013.345-.004a.48.48 0 0 1 .082-.012c.002.002.007.03.012.06.025.159.103.342.2.473.179.243.467.413.761.446.081.009.225.003.307-.01a1.15 1.15 0 0 0 .595-.307c.159-.158.276-.385.31-.601a.429.429 0 0 1 .013-.06 1.35 1.35 0 0 0 .428.016c.257-.045.463-.156.646-.347.148-.155.227-.278.285-.447a1.058 1.058 0 0 0-.225-1.041 35.566 35.566 0 0 0-.82-.568l-.795-.541-.045.046a.795.795 0 0 1-.469.23l-.03.007v1.105l-.022.022a.075.075 0 0 1-.106-.004l-.02-.024V12.8l-.03-.006a.8.8 0 0 1-.47-.23z" }) + ] + } + ); +}); + +export { SiMangacollec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.cjs new file mode 100644 index 000000000..b77647474 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8C15"; +const SiMangaupdates = React__namespace.forwardRef(function SiMangaupdates2({ title = "MangaUpdates", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 0C2.02 0 0 2.02 0 4.5v15C0 21.98 2.02 24 4.5 24h15c2.48 0 4.5-2.02 4.5-4.5v-15C24 2.02 21.98 0 19.5 0Zm0 1.5h15c1.675 0 3 1.325 3 3v15c0 1.675-1.325 3-3 3h-15c-1.675 0-3-1.325-3-3v-15c0-1.675 1.325-3 3-3zm12.791.595c-.475 0-.87.132-1.187.401-.3.253-.552.587-.758 1-.222.443-.39.901-.501 1.376-.111.475-.228.944-.355 1.403-.412 1.568-.84 3.127-1.283 4.68a36.509 36.509 0 0 1-1.64 4.56 35.575 35.575 0 0 1-1.093-5.059 37.104 37.104 0 0 1-.355-5.156c0-.206.015-.402.047-.592.032-.206.047-.412.047-.618a1.385 1.385 0 0 0-.689-1.236 2.084 2.084 0 0 0-.688-.308c-.253-.08-.5-.12-.738-.12-.333 0-.641.071-.926.214a2.9 2.9 0 0 0-.759.547 3.62 3.62 0 0 0-.548.783 3.629 3.629 0 0 0-.307.879 35.408 35.408 0 0 0-.405 2.115c-.095.696-.245 1.4-.45 2.112a51.043 51.043 0 0 1-.786 2.353c-.285.84-.563 1.687-.832 2.543-.27.854-.499 1.708-.689 2.563-.19.84-.284 1.632-.284 2.376 0 .349.023.698.07 1.046.064.333.176.633.335.902.158.27.372.484.641.642.27.174.608.26 1.02.26.443 0 .785-.116 1.022-.354.253-.221.437-.54.548-.952.143-.555.214-1.11.214-1.664.016-.57.061-1.13.14-1.685.096-.76.261-1.496.499-2.209.253-.712.538-1.426.855-2.138.238.903.493 1.789.762 2.66.285.871.53 1.76.735 2.663.08.333.15.671.214 1.02.063.332.15.666.26.999.143.443.365.845.666 1.21.3.364.706.547 1.213.547.316 0 .64-.048.972-.143.349-.08.65-.23.903-.451.11-.095.215-.238.31-.428s.182-.397.261-.618a6.432 6.432 0 0 0 .38-1.187c.096-.364.182-.736.262-1.116.079-.38.173-.752.284-1.116.126-.444.27-.88.427-1.307.175-.443.35-.879.525-1.306.222-.587.428-1.18.618-1.782.19-.602.37-1.206.545-1.807.19.76.317 1.519.38 2.279.064.76.102 1.53.118 2.306l.097 2.302c.047.76.149 1.522.307 2.283.095.459.268.846.522 1.163.269.316.659.474 1.166.474.412 0 .743-.094.996-.284.253-.19.452-.427.595-.712.142-.285.236-.604.284-.952.047-.347.073-.688.073-1.02v-.002c0-1.013-.079-2.008-.237-2.989a39.692 39.692 0 0 0-.548-2.994 39.075 39.075 0 0 1-.642-3.516 29.924 29.924 0 0 1-.214-3.565c0-.253.01-.498.027-.735.031-.254.047-.506.047-.76 0-.347-.08-.633-.238-.855a1.46 1.46 0 0 0-.57-.547 2.233 2.233 0 0 0-.81-.285 3.931 3.931 0 0 0-.855-.093z" }) + ] + } + ); +}); + +exports.default = SiMangaupdates; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.d.ts new file mode 100644 index 000000000..4f35b1783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8C15"; +declare const SiMangaupdates: IconType; +export { SiMangaupdates as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.mjs new file mode 100644 index 000000000..8f316621b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMangaupdates.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8C15"; +const SiMangaupdates = React.forwardRef(function SiMangaupdates2({ title = "MangaUpdates", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.5 0C2.02 0 0 2.02 0 4.5v15C0 21.98 2.02 24 4.5 24h15c2.48 0 4.5-2.02 4.5-4.5v-15C24 2.02 21.98 0 19.5 0Zm0 1.5h15c1.675 0 3 1.325 3 3v15c0 1.675-1.325 3-3 3h-15c-1.675 0-3-1.325-3-3v-15c0-1.675 1.325-3 3-3zm12.791.595c-.475 0-.87.132-1.187.401-.3.253-.552.587-.758 1-.222.443-.39.901-.501 1.376-.111.475-.228.944-.355 1.403-.412 1.568-.84 3.127-1.283 4.68a36.509 36.509 0 0 1-1.64 4.56 35.575 35.575 0 0 1-1.093-5.059 37.104 37.104 0 0 1-.355-5.156c0-.206.015-.402.047-.592.032-.206.047-.412.047-.618a1.385 1.385 0 0 0-.689-1.236 2.084 2.084 0 0 0-.688-.308c-.253-.08-.5-.12-.738-.12-.333 0-.641.071-.926.214a2.9 2.9 0 0 0-.759.547 3.62 3.62 0 0 0-.548.783 3.629 3.629 0 0 0-.307.879 35.408 35.408 0 0 0-.405 2.115c-.095.696-.245 1.4-.45 2.112a51.043 51.043 0 0 1-.786 2.353c-.285.84-.563 1.687-.832 2.543-.27.854-.499 1.708-.689 2.563-.19.84-.284 1.632-.284 2.376 0 .349.023.698.07 1.046.064.333.176.633.335.902.158.27.372.484.641.642.27.174.608.26 1.02.26.443 0 .785-.116 1.022-.354.253-.221.437-.54.548-.952.143-.555.214-1.11.214-1.664.016-.57.061-1.13.14-1.685.096-.76.261-1.496.499-2.209.253-.712.538-1.426.855-2.138.238.903.493 1.789.762 2.66.285.871.53 1.76.735 2.663.08.333.15.671.214 1.02.063.332.15.666.26.999.143.443.365.845.666 1.21.3.364.706.547 1.213.547.316 0 .64-.048.972-.143.349-.08.65-.23.903-.451.11-.095.215-.238.31-.428s.182-.397.261-.618a6.432 6.432 0 0 0 .38-1.187c.096-.364.182-.736.262-1.116.079-.38.173-.752.284-1.116.126-.444.27-.88.427-1.307.175-.443.35-.879.525-1.306.222-.587.428-1.18.618-1.782.19-.602.37-1.206.545-1.807.19.76.317 1.519.38 2.279.064.76.102 1.53.118 2.306l.097 2.302c.047.76.149 1.522.307 2.283.095.459.268.846.522 1.163.269.316.659.474 1.166.474.412 0 .743-.094.996-.284.253-.19.452-.427.595-.712.142-.285.236-.604.284-.952.047-.347.073-.688.073-1.02v-.002c0-1.013-.079-2.008-.237-2.989a39.692 39.692 0 0 0-.548-2.994 39.075 39.075 0 0 1-.642-3.516 29.924 29.924 0 0 1-.214-3.565c0-.253.01-.498.027-.735.031-.254.047-.506.047-.76 0-.347-.08-.633-.238-.855a1.46 1.46 0 0 0-.57-.547 2.233 2.233 0 0 0-.81-.285 3.931 3.931 0 0 0-.855-.093z" }) + ] + } + ); +}); + +export { SiMangaupdates as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.cjs new file mode 100644 index 000000000..b06f4409e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#35BFA4"; +const SiManjaro = React__namespace.forwardRef(function SiManjaro2({ title = "Manjaro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.182 0A2.177 2.177 0 0 0 0 2.182v19.636C0 23.027.973 24 2.182 24h4.363V6.545h8.728V0Zm15.273 0v24h4.363A2.177 2.177 0 0 0 24 21.818V2.182A2.177 2.177 0 0 0 21.818 0ZM8.727 8.727V24h6.546V8.727Z" }) + ] + } + ); +}); + +exports.default = SiManjaro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.d.ts new file mode 100644 index 000000000..7974faac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#35BFA4"; +declare const SiManjaro: IconType; +export { SiManjaro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.mjs new file mode 100644 index 000000000..ac94670cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiManjaro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#35BFA4"; +const SiManjaro = React.forwardRef(function SiManjaro2({ title = "Manjaro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.182 0A2.177 2.177 0 0 0 0 2.182v19.636C0 23.027.973 24 2.182 24h4.363V6.545h8.728V0Zm15.273 0v24h4.363A2.177 2.177 0 0 0 24 21.818V2.182A2.177 2.177 0 0 0 21.818 0ZM8.727 8.727V24h6.546V8.727Z" }) + ] + } + ); +}); + +export { SiManjaro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.cjs new file mode 100644 index 000000000..a87253cba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#339AF0"; +const SiMantine = React__namespace.forwardRef(function SiMantine2({ title = "Mantine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12 12-5.377 12-12S18.623 0 12 0zm-1.613 6.15a.91.91 0 0 1 .59.176c.43.317.825.68 1.177 1.082h2.588a.91.91 0 0 1 .912.906.909.909 0 0 1-.912.907h-1.43c.4.908.604 1.889.602 2.88a7.133 7.133 0 0 1-.601 2.883h1.427a.91.91 0 0 1 .914.907.91.91 0 0 1-.914.906h-2.588a7.399 7.399 0 0 1-1.175 1.082.919.919 0 0 1-1.28-.19.904.904 0 0 1 .191-1.268 5.322 5.322 0 0 0 2.2-4.32c0-1.715-.801-3.29-2.2-4.32a.906.906 0 0 1-.191-1.268H9.7a.916.916 0 0 1 .688-.363zm-.778 4.295a1.36 1.36 0 0 1 1.354 1.354v.033a1.36 1.36 0 0 1-1.354 1.32 1.36 1.36 0 0 1-1.353-1.32v-.033a1.36 1.36 0 0 1 1.353-1.354z" }) + ] + } + ); +}); + +exports.default = SiMantine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.d.ts new file mode 100644 index 000000000..c7c9028b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#339AF0"; +declare const SiMantine: IconType; +export { SiMantine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.mjs new file mode 100644 index 000000000..5b7231288 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMantine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#339AF0"; +const SiMantine = React.forwardRef(function SiMantine2({ title = "Mantine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12 12-5.377 12-12S18.623 0 12 0zm-1.613 6.15a.91.91 0 0 1 .59.176c.43.317.825.68 1.177 1.082h2.588a.91.91 0 0 1 .912.906.909.909 0 0 1-.912.907h-1.43c.4.908.604 1.889.602 2.88a7.133 7.133 0 0 1-.601 2.883h1.427a.91.91 0 0 1 .914.907.91.91 0 0 1-.914.906h-2.588a7.399 7.399 0 0 1-1.175 1.082.919.919 0 0 1-1.28-.19.904.904 0 0 1 .191-1.268 5.322 5.322 0 0 0 2.2-4.32c0-1.715-.801-3.29-2.2-4.32a.906.906 0 0 1-.191-1.268H9.7a.916.916 0 0 1 .688-.363zm-.778 4.295a1.36 1.36 0 0 1 1.354 1.354v.033a1.36 1.36 0 0 1-1.354 1.32 1.36 1.36 0 0 1-1.353-1.32v-.033a1.36 1.36 0 0 1 1.353-1.354z" }) + ] + } + ); +}); + +export { SiMantine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.cjs new file mode 100644 index 000000000..968b33710 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMapbox = React__namespace.forwardRef(function SiMapbox2({ title = "Mapbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm5.696 14.943c-4.103 4.103-11.433 2.794-11.433 2.794S4.94 10.421 9.057 6.304c2.281-2.281 6.061-2.187 8.45.189s2.471 6.168.189 8.45zm-4.319-7.91l-1.174 2.416-2.416 1.174 2.416 1.174 1.174 2.416 1.174-2.416 2.416-1.174-2.416-1.174-1.174-2.416z" }) + ] + } + ); +}); + +exports.default = SiMapbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.d.ts new file mode 100644 index 000000000..2be5fa5c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMapbox: IconType; +export { SiMapbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.mjs new file mode 100644 index 000000000..0093c216a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMapbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMapbox = React.forwardRef(function SiMapbox2({ title = "Mapbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm5.696 14.943c-4.103 4.103-11.433 2.794-11.433 2.794S4.94 10.421 9.057 6.304c2.281-2.281 6.061-2.187 8.45.189s2.471 6.168.189 8.45zm-4.319-7.91l-1.174 2.416-2.416 1.174 2.416 1.174 1.174 2.416 1.174-2.416 2.416-1.174-2.416-1.174-1.174-2.416z" }) + ] + } + ); +}); + +export { SiMapbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.cjs new file mode 100644 index 000000000..622a8a035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AF66"; +const SiMapillary = React__namespace.forwardRef(function SiMapillary2({ title = "Mapillary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.362 11.812c-.564-.305-.46-1.099.25-1.302.602-.17 5.495-1.81 6.975-2.308a.897.897 0 0 0 .565-.558L10.528.671C10.75.02 11.555.017 11.884.65c.117.224 4.546 8.25 4.7 8.591.154.341.055.718-.295.935-.35.218-.918.544-1.117.667-.36.223-.704.068-.869-.277-.163-.346-1.427-2.577-1.942-3.525-.258-.472-1.033-.654-1.295.111-.187.553-.627 1.842-.857 2.514a.93.93 0 0 1-.567.564l-2.582.855c-.509.168-.756.948-.069 1.277.144.07 3.24 1.73 3.56 1.882.32.152.497.59.31.9-.255.425-.582.962-.7 1.138a.728.728 0 0 1-.948.224c-.34-.179-8.651-4.584-8.853-4.692zm22.528 11.91c-.334-.18-10.918-5.78-11.355-6.003-.436-.222-.542-.606-.308-1.021.118-.211.376-.633.586-.972.288-.467.709-.468.946-.33.238.138 3.598 1.906 3.816 2.025.512.284 1.27-.363.93-.93-.163-.27-1.579-2.853-2.03-3.705-.203-.387-.147-.736.31-.968a17.5 17.5 0 0 0 .98-.568c.357-.216.834-.052 1.028.27.193.325 5.926 10.887 6.109 11.215.362.651-.343 1.348-1.011.988" }) + ] + } + ); +}); + +exports.default = SiMapillary; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.d.ts new file mode 100644 index 000000000..700e435b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AF66"; +declare const SiMapillary: IconType; +export { SiMapillary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.mjs new file mode 100644 index 000000000..0cdcaaeb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMapillary.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AF66"; +const SiMapillary = React.forwardRef(function SiMapillary2({ title = "Mapillary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.362 11.812c-.564-.305-.46-1.099.25-1.302.602-.17 5.495-1.81 6.975-2.308a.897.897 0 0 0 .565-.558L10.528.671C10.75.02 11.555.017 11.884.65c.117.224 4.546 8.25 4.7 8.591.154.341.055.718-.295.935-.35.218-.918.544-1.117.667-.36.223-.704.068-.869-.277-.163-.346-1.427-2.577-1.942-3.525-.258-.472-1.033-.654-1.295.111-.187.553-.627 1.842-.857 2.514a.93.93 0 0 1-.567.564l-2.582.855c-.509.168-.756.948-.069 1.277.144.07 3.24 1.73 3.56 1.882.32.152.497.59.31.9-.255.425-.582.962-.7 1.138a.728.728 0 0 1-.948.224c-.34-.179-8.651-4.584-8.853-4.692zm22.528 11.91c-.334-.18-10.918-5.78-11.355-6.003-.436-.222-.542-.606-.308-1.021.118-.211.376-.633.586-.972.288-.467.709-.468.946-.33.238.138 3.598 1.906 3.816 2.025.512.284 1.27-.363.93-.93-.163-.27-1.579-2.853-2.03-3.705-.203-.387-.147-.736.31-.968a17.5 17.5 0 0 0 .98-.568c.357-.216.834-.052 1.028.27.193.325 5.926 10.887 6.109 11.215.362.651-.343 1.348-1.011.988" }) + ] + } + ); +}); + +export { SiMapillary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.cjs new file mode 100644 index 000000000..218bc7dde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#396CB2"; +const SiMaplibre = React__namespace.forwardRef(function SiMaplibre2({ title = "MapLibre", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 3.19c2.937 0 5.371 2.265 5.371 5.035 0 4.111-4.364 7.635-5.035 8.138-.084 0-.084.084-.084.084-.084.084-.168.084-.168.084s-.168 0-.168-.084l-.084-.084c-.84-.503-5.203-3.943-5.203-8.138 0-2.77 2.434-5.036 5.371-5.036zm0 2.601c-1.427 0-2.602 1.173-2.602 2.684 0 1.51 1.175 2.685 2.602 2.685 1.427 0 2.602-1.175 2.602-2.685S13.427 5.79 12 5.79zM8.979 17.287h6.042a.66.66 0 0 1 .67.672v2.014a.66.66 0 0 1-.67.67H8.98a.66.66 0 0 1-.67-.67v-2.014a.66.66 0 0 1 .67-.672zm.755 1.258v.924h4.448v-.924H9.734z" }) + ] + } + ); +}); + +exports.default = SiMaplibre; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.d.ts new file mode 100644 index 000000000..d530480f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#396CB2"; +declare const SiMaplibre: IconType; +export { SiMaplibre as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.mjs new file mode 100644 index 000000000..eec11a434 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaplibre.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#396CB2"; +const SiMaplibre = React.forwardRef(function SiMaplibre2({ title = "MapLibre", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 3.19c2.937 0 5.371 2.265 5.371 5.035 0 4.111-4.364 7.635-5.035 8.138-.084 0-.084.084-.084.084-.084.084-.168.084-.168.084s-.168 0-.168-.084l-.084-.084c-.84-.503-5.203-3.943-5.203-8.138 0-2.77 2.434-5.036 5.371-5.036zm0 2.601c-1.427 0-2.602 1.173-2.602 2.684 0 1.51 1.175 2.685 2.602 2.685 1.427 0 2.602-1.175 2.602-2.685S13.427 5.79 12 5.79zM8.979 17.287h6.042a.66.66 0 0 1 .67.672v2.014a.66.66 0 0 1-.67.67H8.98a.66.66 0 0 1-.67-.67v-2.014a.66.66 0 0 1 .67-.672zm.755 1.258v.924h4.448v-.924H9.734z" }) + ] + } + ); +}); + +export { SiMaplibre as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.cjs new file mode 100644 index 000000000..f0b2aaf83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#323357"; +const SiMaptiler = React__namespace.forwardRef(function SiMaptiler2({ title = "MapTiler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.794 1.655 4.188 4.188 4.204-4.204A6.13 6.13 0 0 0 12 0a6.136 6.136 0 0 0-4.204 1.655ZM3.25 6.197 7.455 1.99l4.19 4.19-4.206 4.207Zm-.315 8.697 4.168-4.168-2.889-2.89-1.298-1.299a6.19 6.19 0 0 0 .02 8.357zm14.728-5.64 3.073-3.073-4.208-4.207-4.207 4.207 4.207 4.206Zm-6.015 6.013L7.44 11.061l-4.172 4.172 4.206 4.208zm5.216-4.543 4.185 4.185a6.18 6.18 0 0 0 .02-8.387l-4.205 4.202zm-2.448 6.639 2.093 2.092 4.207-4.206-4.188-4.188-4.207 4.206zM11.968 24a3007.16 3007.16 0 0 0 4.2-4.208l-4.187-4.188-4.17 4.174c1.386 1.407 2.773 2.813 4.157 4.222Z" }) + ] + } + ); +}); + +exports.default = SiMaptiler; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.d.ts new file mode 100644 index 000000000..dc7b6736d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#323357"; +declare const SiMaptiler: IconType; +export { SiMaptiler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.mjs new file mode 100644 index 000000000..7be535fd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaptiler.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#323357"; +const SiMaptiler = React.forwardRef(function SiMaptiler2({ title = "MapTiler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.794 1.655 4.188 4.188 4.204-4.204A6.13 6.13 0 0 0 12 0a6.136 6.136 0 0 0-4.204 1.655ZM3.25 6.197 7.455 1.99l4.19 4.19-4.206 4.207Zm-.315 8.697 4.168-4.168-2.889-2.89-1.298-1.299a6.19 6.19 0 0 0 .02 8.357zm14.728-5.64 3.073-3.073-4.208-4.207-4.207 4.207 4.207 4.206Zm-6.015 6.013L7.44 11.061l-4.172 4.172 4.206 4.208zm5.216-4.543 4.185 4.185a6.18 6.18 0 0 0 .02-8.387l-4.205 4.202zm-2.448 6.639 2.093 2.092 4.207-4.206-4.188-4.188-4.207 4.206zM11.968 24a3007.16 3007.16 0 0 0 4.2-4.208l-4.187-4.188-4.17 4.174c1.386 1.407 2.773 2.813 4.157 4.222Z" }) + ] + } + ); +}); + +export { SiMaptiler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.cjs new file mode 100644 index 000000000..aa35f2ad7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003545"; +const SiMariadb = React__namespace.forwardRef(function SiMariadb2({ title = "MariaDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.157 4.412c-.676.284-.79.31-1.673.372-.65.045-.757.057-1.212.209-.75.246-1.395.75-2.02 1.59-.296.398-1.249 1.913-1.249 1.988 0 .057-.65.998-.915 1.32-.574.713-1.08 1.079-2.14 1.59-.77.36-1.224.524-4.102 1.477-1.073.353-2.133.738-2.367.864-.852.449-1.515 1.036-2.203 1.938-1.003 1.32-.972 1.313-3.042.947a12.264 12.264 0 00-.675-.063c-.644-.05-1.023.044-1.332.334L0 17.193l.177.088c.094.05.353.234.561.398.215.17.461.347.55.391.088.044.17.088.183.101.012.013-.089.17-.228.353-.435.581-.593.871-.574 1.048.019.164.032.17.43.17.517-.006.826-.056 1.261-.208.65-.233 2.058-.94 2.784-1.4.776-.5 1.717-.998 1.956-1.042.082-.02.354-.07.594-.114.58-.107 1.464-.095 2.587.05.108.013.373.045.6.064.227.025.43.057.454.076.026.012.474.037.998.056.934.026 1.104.007 1.3-.189.126-.133.385-.631.498-.985.209-.643.417-.921.366-.492-.113.966-.322 1.692-.713 2.411-.259.499-.663 1.092-.934 1.395-.322.347-.315.36.088.315.619-.063 1.471-.397 2.096-.82.827-.562 1.647-1.691 2.19-3.03.107-.27.22-.22.183.083-.013.094-.038.315-.057.498l-.031.328.353-.202c.833-.48 1.414-1.262 2.127-2.884.227-.518.877-2.922 1.073-3.976a9.64 9.64 0 01.271-1.042c.127-.429.196-.555.48-.858.183-.19.625-.555.978-.808.72-.505.953-.75 1.187-1.205.208-.417.284-1.13.132-1.357-.132-.202-.284-.196-.763.006Z" }) + ] + } + ); +}); + +exports.default = SiMariadb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.d.ts new file mode 100644 index 000000000..5cfa4a78c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003545"; +declare const SiMariadb: IconType; +export { SiMariadb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.mjs new file mode 100644 index 000000000..b7f3b39ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003545"; +const SiMariadb = React.forwardRef(function SiMariadb2({ title = "MariaDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.157 4.412c-.676.284-.79.31-1.673.372-.65.045-.757.057-1.212.209-.75.246-1.395.75-2.02 1.59-.296.398-1.249 1.913-1.249 1.988 0 .057-.65.998-.915 1.32-.574.713-1.08 1.079-2.14 1.59-.77.36-1.224.524-4.102 1.477-1.073.353-2.133.738-2.367.864-.852.449-1.515 1.036-2.203 1.938-1.003 1.32-.972 1.313-3.042.947a12.264 12.264 0 00-.675-.063c-.644-.05-1.023.044-1.332.334L0 17.193l.177.088c.094.05.353.234.561.398.215.17.461.347.55.391.088.044.17.088.183.101.012.013-.089.17-.228.353-.435.581-.593.871-.574 1.048.019.164.032.17.43.17.517-.006.826-.056 1.261-.208.65-.233 2.058-.94 2.784-1.4.776-.5 1.717-.998 1.956-1.042.082-.02.354-.07.594-.114.58-.107 1.464-.095 2.587.05.108.013.373.045.6.064.227.025.43.057.454.076.026.012.474.037.998.056.934.026 1.104.007 1.3-.189.126-.133.385-.631.498-.985.209-.643.417-.921.366-.492-.113.966-.322 1.692-.713 2.411-.259.499-.663 1.092-.934 1.395-.322.347-.315.36.088.315.619-.063 1.471-.397 2.096-.82.827-.562 1.647-1.691 2.19-3.03.107-.27.22-.22.183.083-.013.094-.038.315-.057.498l-.031.328.353-.202c.833-.48 1.414-1.262 2.127-2.884.227-.518.877-2.922 1.073-3.976a9.64 9.64 0 01.271-1.042c.127-.429.196-.555.48-.858.183-.19.625-.555.978-.808.72-.505.953-.75 1.187-1.205.208-.417.284-1.13.132-1.357-.132-.202-.284-.196-.763.006Z" }) + ] + } + ); +}); + +export { SiMariadb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.cjs new file mode 100644 index 000000000..f09aa7c34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F305F"; +const SiMariadbfoundation = React__namespace.forwardRef(function SiMariadbfoundation2({ title = "MariaDB Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.475 4.031c-.369.013-.262.179-1.06.376-.805.198-1.78.077-2.646.441-2.267.95-2.634 4.624-5.335 6.045-1.77 1-3.576 1.229-5.19 1.735-1.295.52-2.101.864-3.051 1.683-.737.635-.917 1.252-1.687 2.05-.782 1.062-3.744.118-4.506 1.45.402.26.634.332 1.34.24-.146.276-1.074.64-.906 1.048 0 0 2.245.409 4.137-.733.882-.359 1.71-1.119 3.08-1.301 1.777-.236 3.778.373 5.925.544-.444.877-.902 1.395-1.391 2.119-.152.163.13.307.65.209.937-.232 1.615-.483 2.289-.949.878-.606 1.256-1.16 1.997-2.039.644 1.032 2.914 1.26 3.38.367-.867-.367-1.052-2.277-.755-3.101.35-.786.603-1.896.886-2.928.256-.93.413-2.349.718-3.075.365-.903 1.073-1.185 1.605-1.664.532-.479 1.06-.878 1.045-1.974-.006-.356-.19-.553-.525-.543zm-.573.445c.09.307.231.448.841.504-.089.774-.606 1.196-1.183 1.602-.509.356-1.066.7-1.424 1.258-.367.57-.951 2.23-1.52 4.159-.492 1.668-1.065 2.807-2.276 3.807-.15-.36.17-.568.03-.897-.175.496-.558 1.218-.789 1.66-.76 1.454-2.019 2.63-3.901 2.962.893-1.21 1.787-2.543 1.896-4.627-.4.087-.432 1.164-1.078 1.56-.415.045-.995-.05-1.573-.12-1.726-.203-3.465-.282-5.087.24-1.105.353-2.356 1.447-3.292 1.853-1.1.478-1.477.515-2.869.473-.174-.234 1.002-.536.936-1.047-.536-.058-.848.071-1.314-.14a.707.707 0 01.223-.24c.854-.59 3.278-.14 3.927-.777.401-.392.663-.804.935-1.204.265-.388.538-.765.953-1.105.154-.125.394-.341.571-.463.709-.484 1.51-.831 2.373-1.133 1.174-.413 2.361-.552 3.613-1.03.774-.296 1.508-.576 2.193-1.088.162-.121.407-.326.55-.465 2.22-2.192 2.361-5.177 5.415-5.49.37-.038.672-.026.948-.034.317-.01.597-.047.902-.218zm-.15.197c-.017 0-.049.015-.093.056-.265.272-.79.884-.98 1.454-.05.155.048.11.082.01.189-.584.788-1.226.971-1.42.045-.052.051-.099.02-.1zm.08.133c-.017.002-.046.022-.084.069-.224.306-.657.77-.766 1.36-.027.16.064.103.082-.001.106-.605.608-1.11.763-1.327.037-.058.036-.105.006-.101zm.098.12c-.017.004-.044.026-.077.076-.199.325-.46.699-.519 1.295-.013.162.073.097.083-.008.052-.612.379-1.032.515-1.262.032-.06.028-.107-.002-.1zm.107.091c-.018.005-.042.03-.071.082-.169.34-.328.6-.334 1.2.002.163.08.09.081-.015 0-.614.22-.925.335-1.166.026-.063.018-.11-.011-.1zm-2.064.294c-.526.013-.837.242-.938.68.432.375 1.338.074 1.177-.672a2.218 2.218 0 00-.24-.008Z" }) + ] + } + ); +}); + +exports.default = SiMariadbfoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.d.ts new file mode 100644 index 000000000..6c9d17cd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F305F"; +declare const SiMariadbfoundation: IconType; +export { SiMariadbfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.mjs new file mode 100644 index 000000000..ce8208e35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMariadbfoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F305F"; +const SiMariadbfoundation = React.forwardRef(function SiMariadbfoundation2({ title = "MariaDB Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.475 4.031c-.369.013-.262.179-1.06.376-.805.198-1.78.077-2.646.441-2.267.95-2.634 4.624-5.335 6.045-1.77 1-3.576 1.229-5.19 1.735-1.295.52-2.101.864-3.051 1.683-.737.635-.917 1.252-1.687 2.05-.782 1.062-3.744.118-4.506 1.45.402.26.634.332 1.34.24-.146.276-1.074.64-.906 1.048 0 0 2.245.409 4.137-.733.882-.359 1.71-1.119 3.08-1.301 1.777-.236 3.778.373 5.925.544-.444.877-.902 1.395-1.391 2.119-.152.163.13.307.65.209.937-.232 1.615-.483 2.289-.949.878-.606 1.256-1.16 1.997-2.039.644 1.032 2.914 1.26 3.38.367-.867-.367-1.052-2.277-.755-3.101.35-.786.603-1.896.886-2.928.256-.93.413-2.349.718-3.075.365-.903 1.073-1.185 1.605-1.664.532-.479 1.06-.878 1.045-1.974-.006-.356-.19-.553-.525-.543zm-.573.445c.09.307.231.448.841.504-.089.774-.606 1.196-1.183 1.602-.509.356-1.066.7-1.424 1.258-.367.57-.951 2.23-1.52 4.159-.492 1.668-1.065 2.807-2.276 3.807-.15-.36.17-.568.03-.897-.175.496-.558 1.218-.789 1.66-.76 1.454-2.019 2.63-3.901 2.962.893-1.21 1.787-2.543 1.896-4.627-.4.087-.432 1.164-1.078 1.56-.415.045-.995-.05-1.573-.12-1.726-.203-3.465-.282-5.087.24-1.105.353-2.356 1.447-3.292 1.853-1.1.478-1.477.515-2.869.473-.174-.234 1.002-.536.936-1.047-.536-.058-.848.071-1.314-.14a.707.707 0 01.223-.24c.854-.59 3.278-.14 3.927-.777.401-.392.663-.804.935-1.204.265-.388.538-.765.953-1.105.154-.125.394-.341.571-.463.709-.484 1.51-.831 2.373-1.133 1.174-.413 2.361-.552 3.613-1.03.774-.296 1.508-.576 2.193-1.088.162-.121.407-.326.55-.465 2.22-2.192 2.361-5.177 5.415-5.49.37-.038.672-.026.948-.034.317-.01.597-.047.902-.218zm-.15.197c-.017 0-.049.015-.093.056-.265.272-.79.884-.98 1.454-.05.155.048.11.082.01.189-.584.788-1.226.971-1.42.045-.052.051-.099.02-.1zm.08.133c-.017.002-.046.022-.084.069-.224.306-.657.77-.766 1.36-.027.16.064.103.082-.001.106-.605.608-1.11.763-1.327.037-.058.036-.105.006-.101zm.098.12c-.017.004-.044.026-.077.076-.199.325-.46.699-.519 1.295-.013.162.073.097.083-.008.052-.612.379-1.032.515-1.262.032-.06.028-.107-.002-.1zm.107.091c-.018.005-.042.03-.071.082-.169.34-.328.6-.334 1.2.002.163.08.09.081-.015 0-.614.22-.925.335-1.166.026-.063.018-.11-.011-.1zm-2.064.294c-.526.013-.837.242-.938.68.432.375 1.338.074 1.177-.672a2.218 2.218 0 00-.24-.008Z" }) + ] + } + ); +}); + +export { SiMariadbfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.cjs new file mode 100644 index 000000000..e23514e46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMarkdown = React__namespace.forwardRef(function SiMarkdown2({ title = "Markdown", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.27 19.385H1.73A1.73 1.73 0 010 17.655V6.345a1.73 1.73 0 011.73-1.73h20.54A1.73 1.73 0 0124 6.345v11.308a1.73 1.73 0 01-1.73 1.731zM5.769 15.923v-4.5l2.308 2.885 2.307-2.885v4.5h2.308V8.078h-2.308l-2.307 2.885-2.308-2.885H3.46v7.847zM21.232 12h-2.309V8.077h-2.307V12h-2.308l3.461 4.039z" }) + ] + } + ); +}); + +exports.default = SiMarkdown; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.d.ts new file mode 100644 index 000000000..c6d9ddd78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMarkdown: IconType; +export { SiMarkdown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.mjs new file mode 100644 index 000000000..53ddd3bf4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarkdown.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMarkdown = React.forwardRef(function SiMarkdown2({ title = "Markdown", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.27 19.385H1.73A1.73 1.73 0 010 17.655V6.345a1.73 1.73 0 011.73-1.73h20.54A1.73 1.73 0 0124 6.345v11.308a1.73 1.73 0 01-1.73 1.731zM5.769 15.923v-4.5l2.308 2.885 2.307-2.885v4.5h2.308V8.078h-2.308l-2.307 2.885-2.308-2.885H3.46v7.847zM21.232 12h-2.309V8.077h-2.307V12h-2.308l3.461 4.039z" }) + ] + } + ); +}); + +export { SiMarkdown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.cjs new file mode 100644 index 000000000..472a051c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2596BE"; +const SiMarko = React__namespace.forwardRef(function SiMarko2({ title = "Marko", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.4 5.46h-3.39l-2.3 3.77L7.4 5.46H4l-4 6.55 4 6.53h3.39l-4-6.54L5.7 8.23 8.01 12h3.39l2.31-3.78L16.03 12l-4.01 6.54h3.39l4-6.54zm4.6 0h-3.39l4 6.54-4.01 6.54h3.39L24 12z" }) + ] + } + ); +}); + +exports.default = SiMarko; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.d.ts new file mode 100644 index 000000000..22601e5d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2596BE"; +declare const SiMarko: IconType; +export { SiMarko as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.mjs new file mode 100644 index 000000000..09db010ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarko.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2596BE"; +const SiMarko = React.forwardRef(function SiMarko2({ title = "Marko", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.4 5.46h-3.39l-2.3 3.77L7.4 5.46H4l-4 6.55 4 6.53h3.39l-4-6.54L5.7 8.23 8.01 12h3.39l2.31-3.78L16.03 12l-4.01 6.54h3.39l4-6.54zm4.6 0h-3.39l4 6.54-4.01 6.54h3.39L24 12z" }) + ] + } + ); +}); + +export { SiMarko as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.cjs new file mode 100644 index 000000000..a7ea6b6fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A70023"; +const SiMarriott = React__namespace.forwardRef(function SiMarriott2({ title = "Marriott", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.802 11.083l-1.178 2.41c-.8 1.425-1.931 3.167-3.646 3.603-.668.232-1.255.023-1.9-.023L0 20.476a1.626 1.626 0 0 0 .59.386c3.647 1.39 5.122-.1 8.722-8.238l3.403 7.249h4.53l-2.14-4.893 1.213-2.53 3.345 7.311 4.337.027-7.59-16.677-3.475 1.738 2.738 6.222-1.201 2.445L9.45 2.678l-3.7 1.877Z" }) + ] + } + ); +}); + +exports.default = SiMarriott; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.d.ts new file mode 100644 index 000000000..d32d7f8d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A70023"; +declare const SiMarriott: IconType; +export { SiMarriott as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.mjs new file mode 100644 index 000000000..c74d0d9c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarriott.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A70023"; +const SiMarriott = React.forwardRef(function SiMarriott2({ title = "Marriott", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.802 11.083l-1.178 2.41c-.8 1.425-1.931 3.167-3.646 3.603-.668.232-1.255.023-1.9-.023L0 20.476a1.626 1.626 0 0 0 .59.386c3.647 1.39 5.122-.1 8.722-8.238l3.403 7.249h4.53l-2.14-4.893 1.213-2.53 3.345 7.311 4.337.027-7.59-16.677-3.475 1.738 2.738 6.222-1.201 2.445L9.45 2.678l-3.7 1.877Z" }) + ] + } + ); +}); + +export { SiMarriott as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.cjs new file mode 100644 index 000000000..40050ea04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1FB6FF"; +const SiMarvelapp = React__namespace.forwardRef(function SiMarvelapp2({ title = "MarvelApp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.339 8.13c1.373 0-1.162 7.076-.845 10.138.317 3.063 3.696 2.218 3.485.423-.423-3.063 1.69-12.672 3.696-12.672 1.478 0-1.69 6.547-1.056 10.665.422 2.64 4.012 1.901 3.59.106-1.162-5.386 2.64-10.56 2.112-14.361C21.11.845 20.159 0 19.209 0c-3.379 0-6.125 6.97-6.125 6.97s.423-3.908-2.428-4.119C6.643 2.64 2.525 12.777 2.63 21.964c.106 2.957 3.696 2.429 3.485.106-.211-4.12 2.112-13.94 4.225-13.94z" }) + ] + } + ); +}); + +exports.default = SiMarvelapp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.d.ts new file mode 100644 index 000000000..d146c5423 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1FB6FF"; +declare const SiMarvelapp: IconType; +export { SiMarvelapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.mjs new file mode 100644 index 000000000..912a85f4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMarvelapp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1FB6FF"; +const SiMarvelapp = React.forwardRef(function SiMarvelapp2({ title = "MarvelApp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.339 8.13c1.373 0-1.162 7.076-.845 10.138.317 3.063 3.696 2.218 3.485.423-.423-3.063 1.69-12.672 3.696-12.672 1.478 0-1.69 6.547-1.056 10.665.422 2.64 4.012 1.901 3.59.106-1.162-5.386 2.64-10.56 2.112-14.361C21.11.845 20.159 0 19.209 0c-3.379 0-6.125 6.97-6.125 6.97s.423-3.908-2.428-4.119C6.643 2.64 2.525 12.777 2.63 21.964c.106 2.957 3.696 2.429 3.485.106-.211-4.12 2.112-13.94 4.225-13.94z" }) + ] + } + ); +}); + +export { SiMarvelapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.cjs new file mode 100644 index 000000000..07752b54e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C2340"; +const SiMaserati = React__namespace.forwardRef(function SiMaserati2({ title = "Maserati", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.678 21.213h4.67v.909h-4.67v-.909zm.87 2.787h2.93v-1.409h-2.93V24zm-.844-5.313c.575.523.881 1.28.83 2.056h2.944a2.575 2.575 0 0 1 .818-2.056H9.704zm-3.052-2.17v.683h10.696v-.683H6.652zm.478 3.087a3.833 3.833 0 0 0 1.74-.917H7.009l.121.917zm9.74 0l.121-.917h-1.86c.49.451 1.089.768 1.739.917zm-8.666-4.556A73.645 73.645 0 0 0 5.913 8.63c.644.102 1.283.237 1.913.405A18.885 18.885 0 0 0 3.51 5.583c1.226 2.378 2.378 5.987 2.965 9.465h1.73zm9.326 0c.587-3.478 1.74-7.087 2.961-9.465a18.877 18.877 0 0 0-4.308 3.452c.63-.169 1.268-.304 1.913-.405a65.966 65.966 0 0 0-2.292 6.418h1.726zM6.087 16.17h11.83v-.679H6.087v.679zm5.135-1.144c.312-.74.569-1.5.77-2.278.203.777.462 1.538.773 2.278h2.052c-1.743-2.87-2.234-6.665-2.343-10-.009-.343.13-.43.46-.283l1.053.474A15.501 15.501 0 0 1 11.991 0 15.494 15.494 0 0 1 10 5.217l1.052-.474c.33-.152.457-.06.457.283-.109 3.313-.6 7.109-2.34 10h2.053zm-5.135 3.191h11.83v-.678H6.087v.678z" }) + ] + } + ); +}); + +exports.default = SiMaserati; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.d.ts new file mode 100644 index 000000000..66d8345e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C2340"; +declare const SiMaserati: IconType; +export { SiMaserati as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.mjs new file mode 100644 index 000000000..9e7deb459 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaserati.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C2340"; +const SiMaserati = React.forwardRef(function SiMaserati2({ title = "Maserati", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.678 21.213h4.67v.909h-4.67v-.909zm.87 2.787h2.93v-1.409h-2.93V24zm-.844-5.313c.575.523.881 1.28.83 2.056h2.944a2.575 2.575 0 0 1 .818-2.056H9.704zm-3.052-2.17v.683h10.696v-.683H6.652zm.478 3.087a3.833 3.833 0 0 0 1.74-.917H7.009l.121.917zm9.74 0l.121-.917h-1.86c.49.451 1.089.768 1.739.917zm-8.666-4.556A73.645 73.645 0 0 0 5.913 8.63c.644.102 1.283.237 1.913.405A18.885 18.885 0 0 0 3.51 5.583c1.226 2.378 2.378 5.987 2.965 9.465h1.73zm9.326 0c.587-3.478 1.74-7.087 2.961-9.465a18.877 18.877 0 0 0-4.308 3.452c.63-.169 1.268-.304 1.913-.405a65.966 65.966 0 0 0-2.292 6.418h1.726zM6.087 16.17h11.83v-.679H6.087v.679zm5.135-1.144c.312-.74.569-1.5.77-2.278.203.777.462 1.538.773 2.278h2.052c-1.743-2.87-2.234-6.665-2.343-10-.009-.343.13-.43.46-.283l1.053.474A15.501 15.501 0 0 1 11.991 0 15.494 15.494 0 0 1 10 5.217l1.052-.474c.33-.152.457-.06.457.283-.109 3.313-.6 7.109-2.34 10h2.053zm-5.135 3.191h11.83v-.678H6.087v.678z" }) + ] + } + ); +}); + +export { SiMaserati as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.cjs new file mode 100644 index 000000000..b1b7f412a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB001B"; +const SiMastercard = React__namespace.forwardRef(function SiMastercard2({ title = "MasterCard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.343 18.031c.058.049.12.098.181.146-1.177.783-2.59 1.238-4.107 1.238C3.32 19.416 0 16.096 0 12c0-4.095 3.32-7.416 7.416-7.416 1.518 0 2.931.456 4.105 1.238-.06.051-.12.098-.165.15C9.6 7.489 8.595 9.688 8.595 12c0 2.311 1.001 4.51 2.748 6.031zm5.241-13.447c-1.52 0-2.931.456-4.105 1.238.06.051.12.098.165.15C14.4 7.489 15.405 9.688 15.405 12c0 2.31-1.001 4.507-2.748 6.031-.058.049-.12.098-.181.146 1.177.783 2.588 1.238 4.107 1.238C20.68 19.416 24 16.096 24 12c0-4.094-3.32-7.416-7.416-7.416zM12 6.174c-.096.075-.189.15-.28.231C10.156 7.764 9.169 9.765 9.169 12c0 2.236.987 4.236 2.551 5.595.09.08.185.158.28.232.096-.074.189-.152.28-.232 1.563-1.359 2.551-3.359 2.551-5.595 0-2.235-.987-4.236-2.551-5.595-.09-.08-.184-.156-.28-.231z" }) + ] + } + ); +}); + +exports.default = SiMastercard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.d.ts new file mode 100644 index 000000000..b50670895 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB001B"; +declare const SiMastercard: IconType; +export { SiMastercard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.mjs new file mode 100644 index 000000000..c9f32a19a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB001B"; +const SiMastercard = React.forwardRef(function SiMastercard2({ title = "MasterCard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.343 18.031c.058.049.12.098.181.146-1.177.783-2.59 1.238-4.107 1.238C3.32 19.416 0 16.096 0 12c0-4.095 3.32-7.416 7.416-7.416 1.518 0 2.931.456 4.105 1.238-.06.051-.12.098-.165.15C9.6 7.489 8.595 9.688 8.595 12c0 2.311 1.001 4.51 2.748 6.031zm5.241-13.447c-1.52 0-2.931.456-4.105 1.238.06.051.12.098.165.15C14.4 7.489 15.405 9.688 15.405 12c0 2.31-1.001 4.507-2.748 6.031-.058.049-.12.098-.181.146 1.177.783 2.588 1.238 4.107 1.238C20.68 19.416 24 16.096 24 12c0-4.094-3.32-7.416-7.416-7.416zM12 6.174c-.096.075-.189.15-.28.231C10.156 7.764 9.169 9.765 9.169 12c0 2.236.987 4.236 2.551 5.595.09.08.185.158.28.232.096-.074.189-.152.28-.232 1.563-1.359 2.551-3.359 2.551-5.595 0-2.235-.987-4.236-2.551-5.595-.09-.08-.184-.156-.28-.231z" }) + ] + } + ); +}); + +export { SiMastercard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.cjs new file mode 100644 index 000000000..4af09811d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009688"; +const SiMastercomfig = React__namespace.forwardRef(function SiMastercomfig2({ title = "mastercomfig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.479 0 .174 5.304.174 11.826V24h1.337v-6.716C3.486 21.064 7.446 23.65 12 23.65c4.554 0 8.514-2.586 10.49-6.367V24h1.336V11.826h-1.337c0 5.798-4.69 10.489-10.489 10.489-5.798 0-10.49-4.691-10.49-10.49C1.51 6.028 6.203 1.338 12 1.338zm0 3.72a8.107 8.107 0 100 16.214 8.107 8.107 0 000-16.215zm0 1.336a6.77 6.77 0 110 13.538 6.77 6.77 0 010-13.538z" }) + ] + } + ); +}); + +exports.default = SiMastercomfig; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.d.ts new file mode 100644 index 000000000..e2071a9d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009688"; +declare const SiMastercomfig: IconType; +export { SiMastercomfig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.mjs new file mode 100644 index 000000000..ea000f734 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastercomfig.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009688"; +const SiMastercomfig = React.forwardRef(function SiMastercomfig2({ title = "mastercomfig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.479 0 .174 5.304.174 11.826V24h1.337v-6.716C3.486 21.064 7.446 23.65 12 23.65c4.554 0 8.514-2.586 10.49-6.367V24h1.336V11.826h-1.337c0 5.798-4.69 10.489-10.489 10.489-5.798 0-10.49-4.691-10.49-10.49C1.51 6.028 6.203 1.338 12 1.338zm0 3.72a8.107 8.107 0 100 16.214 8.107 8.107 0 000-16.215zm0 1.336a6.77 6.77 0 110 13.538 6.77 6.77 0 010-13.538z" }) + ] + } + ); +}); + +export { SiMastercomfig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.cjs new file mode 100644 index 000000000..53bb28ec6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6364FF"; +const SiMastodon = React__namespace.forwardRef(function SiMastodon2({ title = "Mastodon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38.265-.061.527-.132.786-.213.585-.184 1.27-.39 1.774-.753a.057.057 0 0 0 .023-.043v-1.809a.052.052 0 0 0-.02-.041.053.053 0 0 0-.046-.01 20.282 20.282 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.593 5.593 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422.038-.008.077-.015.11-.024 2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545zm-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102c0-1.31.337-2.35 1.011-3.12.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164.675.77 1.012 1.81 1.012 3.12z" }) + ] + } + ); +}); + +exports.default = SiMastodon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.d.ts new file mode 100644 index 000000000..30dad7f0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6364FF"; +declare const SiMastodon: IconType; +export { SiMastodon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.mjs new file mode 100644 index 000000000..aedecc004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMastodon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6364FF"; +const SiMastodon = React.forwardRef(function SiMastodon2({ title = "Mastodon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38.265-.061.527-.132.786-.213.585-.184 1.27-.39 1.774-.753a.057.057 0 0 0 .023-.043v-1.809a.052.052 0 0 0-.02-.041.053.053 0 0 0-.046-.01 20.282 20.282 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.593 5.593 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422.038-.008.077-.015.11-.024 2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545zm-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102c0-1.31.337-2.35 1.011-3.12.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164.675.77 1.012 1.81 1.012 3.12z" }) + ] + } + ); +}); + +export { SiMastodon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.cjs new file mode 100644 index 000000000..fbbad3fb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6750A4"; +const SiMaterialdesign = React__namespace.forwardRef(function SiMaterialdesign2({ title = "Material Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9998 23.9997c-1.6545 0-3.218-.309-4.691-.927-1.4544-.6364-2.7269-1.4909-3.8179-2.5639-1.073-1.0905-1.9274-2.3634-2.5634-3.8179C.3085 15.2179 0 13.6545 0 12c0-1.6725.309-3.2364.927-4.6909.6365-1.4545 1.491-2.718 2.564-3.791C4.5818 2.4278 5.8543 1.5733 7.3087.9548c1.473-.6365 3.0365-.9545 4.691-.9545 1.673 0 3.2364.318 4.6909.955 1.4544.618 2.7179 1.4725 3.7909 2.563 1.091 1.073 1.945 2.3364 2.5634 3.7909C23.6815 8.7641 24 10.3275 24 12c0 1.655-.3185 3.218-.955 4.6909-.618 1.4545-1.4724 2.7274-2.5634 3.818-1.073 1.0729-2.3365 1.9274-3.791 2.5639-1.455.618-3.0179.927-4.6909.927zm-7.6364-5.8633V5.8636A9.4843 9.4843 0 0 0 2.755 8.7001C2.373 9.7365 2.1825 10.8365 2.1825 12s.1905 2.2725.5724 3.3274a9.5713 9.5713 0 0 0 1.609 2.809zm1.5-13.7727H18.163a9.4848 9.4848 0 0 0-2.836-1.609c-1.0549-.382-2.1639-.5725-3.3273-.5725-1.1635 0-2.2725.1905-3.327.5725a9.5713 9.5713 0 0 0-2.8094 1.609Zm6.1364 10.3637 4.1179-8.1818H7.9088Zm1.091 2.727h4.3633V8.7276Zm-6.5454 0h4.3634L6.5454 8.7276Zm8.7813 3.791c1.0545-.382 2-.918 2.836-1.609H5.8628a9.5713 9.5713 0 0 0 2.8094 1.609c1.0545.3819 2.1635.5724 3.327.5724 1.0543 0 2.1823-.1579 3.3274-.5725zm4.3089-3.109a9.5713 9.5713 0 0 0 1.609-2.809c.382-1.055.5724-2.164.5724-3.3274 0-1.1635-.1905-2.2635-.5724-3.3-.382-1.055-.918-1.9999-1.609-2.8364Z" }) + ] + } + ); +}); + +exports.default = SiMaterialdesign; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.d.ts new file mode 100644 index 000000000..670b16a15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6750A4"; +declare const SiMaterialdesign: IconType; +export { SiMaterialdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.mjs new file mode 100644 index 000000000..cc647a2b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesign.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6750A4"; +const SiMaterialdesign = React.forwardRef(function SiMaterialdesign2({ title = "Material Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9998 23.9997c-1.6545 0-3.218-.309-4.691-.927-1.4544-.6364-2.7269-1.4909-3.8179-2.5639-1.073-1.0905-1.9274-2.3634-2.5634-3.8179C.3085 15.2179 0 13.6545 0 12c0-1.6725.309-3.2364.927-4.6909.6365-1.4545 1.491-2.718 2.564-3.791C4.5818 2.4278 5.8543 1.5733 7.3087.9548c1.473-.6365 3.0365-.9545 4.691-.9545 1.673 0 3.2364.318 4.6909.955 1.4544.618 2.7179 1.4725 3.7909 2.563 1.091 1.073 1.945 2.3364 2.5634 3.7909C23.6815 8.7641 24 10.3275 24 12c0 1.655-.3185 3.218-.955 4.6909-.618 1.4545-1.4724 2.7274-2.5634 3.818-1.073 1.0729-2.3365 1.9274-3.791 2.5639-1.455.618-3.0179.927-4.6909.927zm-7.6364-5.8633V5.8636A9.4843 9.4843 0 0 0 2.755 8.7001C2.373 9.7365 2.1825 10.8365 2.1825 12s.1905 2.2725.5724 3.3274a9.5713 9.5713 0 0 0 1.609 2.809zm1.5-13.7727H18.163a9.4848 9.4848 0 0 0-2.836-1.609c-1.0549-.382-2.1639-.5725-3.3273-.5725-1.1635 0-2.2725.1905-3.327.5725a9.5713 9.5713 0 0 0-2.8094 1.609Zm6.1364 10.3637 4.1179-8.1818H7.9088Zm1.091 2.727h4.3633V8.7276Zm-6.5454 0h4.3634L6.5454 8.7276Zm8.7813 3.791c1.0545-.382 2-.918 2.836-1.609H5.8628a9.5713 9.5713 0 0 0 2.8094 1.609c1.0545.3819 2.1635.5724 3.327.5724 1.0543 0 2.1823-.1579 3.3274-.5725zm4.3089-3.109a9.5713 9.5713 0 0 0 1.609-2.809c.382-1.055.5724-2.164.5724-3.3274 0-1.1635-.1905-2.2635-.5724-3.3-.382-1.055-.918-1.9999-1.609-2.8364Z" }) + ] + } + ); +}); + +export { SiMaterialdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.cjs new file mode 100644 index 000000000..6955798a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2196F3"; +const SiMaterialdesignicons = React__namespace.forwardRef(function SiMaterialdesignicons2({ title = "Material Design Icons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h7.2v2.4h9.6V0H24v7.2h-2.4v9.6H24V24h-7.2v-2.4H7.2V24H0v-7.2h2.4V7.2H0V0m16.8 7.2V4.8H7.2v2.4H4.8v9.6h2.4v2.4h9.6v-2.4h2.4V7.2M2.4 2.4v2.4h2.4V2.4m14.4 0v2.4h2.4V2.4M2.4 19.2v2.4h2.4v-2.4m14.4 0v2.4h2.4v-2.4z" }) + ] + } + ); +}); + +exports.default = SiMaterialdesignicons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.d.ts new file mode 100644 index 000000000..8cc1550e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2196F3"; +declare const SiMaterialdesignicons: IconType; +export { SiMaterialdesignicons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.mjs new file mode 100644 index 000000000..a72896a2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialdesignicons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2196F3"; +const SiMaterialdesignicons = React.forwardRef(function SiMaterialdesignicons2({ title = "Material Design Icons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0h7.2v2.4h9.6V0H24v7.2h-2.4v9.6H24V24h-7.2v-2.4H7.2V24H0v-7.2h2.4V7.2H0V0m16.8 7.2V4.8H7.2v2.4H4.8v9.6h2.4v2.4h9.6v-2.4h2.4V7.2M2.4 2.4v2.4h2.4V2.4m14.4 0v2.4h2.4V2.4M2.4 19.2v2.4h2.4v-2.4m14.4 0v2.4h2.4v-2.4z" }) + ] + } + ); +}); + +export { SiMaterialdesignicons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.cjs new file mode 100644 index 000000000..b2dc7ea0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#526CFE"; +const SiMaterialformkdocs = React__namespace.forwardRef(function SiMaterialformkdocs2({ title = "Material for MkDocs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.029 18.772.777 1.166-5.417 2.709L0 16.451V4.063l5.417-2.709 5.298 7.948 7.867-5.24L24 1.354V16.84l-5.417 2.709zm2.023-13.827v13.253l3.949-1.975V2.97zM5.076 2.642 1.458 4.45 12.73 21.358l3.618-1.809z" }) + ] + } + ); +}); + +exports.default = SiMaterialformkdocs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.d.ts new file mode 100644 index 000000000..5fbd8212b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#526CFE"; +declare const SiMaterialformkdocs: IconType; +export { SiMaterialformkdocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.mjs new file mode 100644 index 000000000..df4875e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaterialformkdocs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#526CFE"; +const SiMaterialformkdocs = React.forwardRef(function SiMaterialformkdocs2({ title = "Material for MkDocs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.029 18.772.777 1.166-5.417 2.709L0 16.451V4.063l5.417-2.709 5.298 7.948 7.867-5.24L24 1.354V16.84l-5.417 2.709zm2.023-13.827v13.253l3.949-1.975V2.97zM5.076 2.642 1.458 4.45 12.73 21.358l3.618-1.809z" }) + ] + } + ); +}); + +export { SiMaterialformkdocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.cjs new file mode 100644 index 000000000..2f6c8685f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#19E57F"; +const SiMatillion = React__namespace.forwardRef(function SiMatillion2({ title = "Matillion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.552 0-1.104.142-1.598.428L2.777 4.831A3.195 3.195 0 0 0 1.18 7.597v8.806c0 1.141.609 2.195 1.597 2.766l7.625 4.403a3.194 3.194 0 0 0 3.195 0l7.626-4.403a3.195 3.195 0 0 0 1.597-2.766V7.597a3.194 3.194 0 0 0-1.597-2.766L13.597.428A3.183 3.183 0 0 0 12 0Zm.033 6.215a1.383 1.383 0 0 1 1.012 2.286l-7.277 8.403a1.382 1.382 0 0 1-2.09-1.81l7.278-8.402a1.374 1.374 0 0 1 1.077-.477Zm2.689 3.105.025.001.059.002.082.005.055.007a1.373 1.373 0 0 1 .135.026l.073.019.035.012.091.034.038.017c.03.013.058.027.087.043l.033.018c.026.015.052.031.077.048l.045.031.071.055c.005.005.012.008.018.013l.019.019c.023.02.044.041.065.062l.037.039.031.033 4.533 5.296a1.38 1.38 0 0 1-1.049 2.281h-.001a1.38 1.38 0 0 1-1.05-.484l-3.484-4.07-3.482 4.07a1.38 1.38 0 0 1-1.051.484h-.001A1.38 1.38 0 0 1 9.164 15.1l4.533-5.296.03-.033.037-.039.062-.059.023-.022.022-.017.066-.05c.016-.011.031-.023.047-.033a1.23 1.23 0 0 1 .067-.042l.049-.027.072-.036a1.12 1.12 0 0 1 .177-.066.932.932 0 0 1 .141-.035l.06-.01.058-.007.081-.005.033-.003Z" }) + ] + } + ); +}); + +exports.default = SiMatillion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.d.ts new file mode 100644 index 000000000..94b9c7836 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#19E57F"; +declare const SiMatillion: IconType; +export { SiMatillion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.mjs new file mode 100644 index 000000000..0ad84d7bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatillion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#19E57F"; +const SiMatillion = React.forwardRef(function SiMatillion2({ title = "Matillion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.552 0-1.104.142-1.598.428L2.777 4.831A3.195 3.195 0 0 0 1.18 7.597v8.806c0 1.141.609 2.195 1.597 2.766l7.625 4.403a3.194 3.194 0 0 0 3.195 0l7.626-4.403a3.195 3.195 0 0 0 1.597-2.766V7.597a3.194 3.194 0 0 0-1.597-2.766L13.597.428A3.183 3.183 0 0 0 12 0Zm.033 6.215a1.383 1.383 0 0 1 1.012 2.286l-7.277 8.403a1.382 1.382 0 0 1-2.09-1.81l7.278-8.402a1.374 1.374 0 0 1 1.077-.477Zm2.689 3.105.025.001.059.002.082.005.055.007a1.373 1.373 0 0 1 .135.026l.073.019.035.012.091.034.038.017c.03.013.058.027.087.043l.033.018c.026.015.052.031.077.048l.045.031.071.055c.005.005.012.008.018.013l.019.019c.023.02.044.041.065.062l.037.039.031.033 4.533 5.296a1.38 1.38 0 0 1-1.049 2.281h-.001a1.38 1.38 0 0 1-1.05-.484l-3.484-4.07-3.482 4.07a1.38 1.38 0 0 1-1.051.484h-.001A1.38 1.38 0 0 1 9.164 15.1l4.533-5.296.03-.033.037-.039.062-.059.023-.022.022-.017.066-.05c.016-.011.031-.023.047-.033a1.23 1.23 0 0 1 .067-.042l.049-.027.072-.036a1.12 1.12 0 0 1 .177-.066.932.932 0 0 1 .141-.035l.06-.01.058-.007.081-.005.033-.003Z" }) + ] + } + ); +}); + +export { SiMatillion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.cjs new file mode 100644 index 000000000..6c9123230 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3152A0"; +const SiMatomo = React__namespace.forwardRef(function SiMatomo2({ title = "Matomo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.664 15.37a3.336 3.336 0 0 1-3.332 3.332C1.495 18.702 0 17.208 0 15.37s1.495-3.333 3.332-3.333a3.338 3.338 0 0 1 3.332 3.333zm11.565-3.644a3.658 3.658 0 0 1-1.987.591 3.642 3.642 0 0 1-1.872-.529l.008.012a3.728 3.728 0 0 1-1.235-1.19l-2.612-3.693a.17.17 0 0 1-.027-.033A3.312 3.312 0 0 0 7.67 5.298a3.318 3.318 0 0 0-2.848 1.586.146.146 0 0 1-.021.028l-3.428 5.343a3.663 3.663 0 0 1 5.094 1.18.13.13 0 0 1 .015.018l2.756 3.869a3.305 3.305 0 0 0 2.699 1.38 3.31 3.31 0 0 0 2.711-1.379l.009-.013c.073-.103.137-.202.195-.305l1.442-2.255 1.935-3.024zm5.275 1.902l-.014-.028-.044-.066a1.109 1.109 0 0 0-.029-.044l-3.525-5.37c.024.168.052.335.052.51 0 .741-.219 1.457-.634 2.068l-2.803 4.38 1.416 2.179-.002.002a.131.131 0 0 1 .024.028 3.338 3.338 0 0 0 2.723 1.415A3.335 3.335 0 0 0 24 15.37c0-.613-.171-1.216-.496-1.742zm-7.262-1.666a3.336 3.336 0 0 0 3.332-3.333 3.336 3.336 0 0 0-3.332-3.332 3.336 3.336 0 0 0-3.332 3.332 3.338 3.338 0 0 0 3.332 3.333z" }) + ] + } + ); +}); + +exports.default = SiMatomo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.d.ts new file mode 100644 index 000000000..718a5fd9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3152A0"; +declare const SiMatomo: IconType; +export { SiMatomo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.mjs new file mode 100644 index 000000000..7bb210360 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatomo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3152A0"; +const SiMatomo = React.forwardRef(function SiMatomo2({ title = "Matomo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.664 15.37a3.336 3.336 0 0 1-3.332 3.332C1.495 18.702 0 17.208 0 15.37s1.495-3.333 3.332-3.333a3.338 3.338 0 0 1 3.332 3.333zm11.565-3.644a3.658 3.658 0 0 1-1.987.591 3.642 3.642 0 0 1-1.872-.529l.008.012a3.728 3.728 0 0 1-1.235-1.19l-2.612-3.693a.17.17 0 0 1-.027-.033A3.312 3.312 0 0 0 7.67 5.298a3.318 3.318 0 0 0-2.848 1.586.146.146 0 0 1-.021.028l-3.428 5.343a3.663 3.663 0 0 1 5.094 1.18.13.13 0 0 1 .015.018l2.756 3.869a3.305 3.305 0 0 0 2.699 1.38 3.31 3.31 0 0 0 2.711-1.379l.009-.013c.073-.103.137-.202.195-.305l1.442-2.255 1.935-3.024zm5.275 1.902l-.014-.028-.044-.066a1.109 1.109 0 0 0-.029-.044l-3.525-5.37c.024.168.052.335.052.51 0 .741-.219 1.457-.634 2.068l-2.803 4.38 1.416 2.179-.002.002a.131.131 0 0 1 .024.028 3.338 3.338 0 0 0 2.723 1.415A3.335 3.335 0 0 0 24 15.37c0-.613-.171-1.216-.496-1.742zm-7.262-1.666a3.336 3.336 0 0 0 3.332-3.333 3.336 3.336 0 0 0-3.332-3.332 3.336 3.336 0 0 0-3.332 3.332 3.338 3.338 0 0 0 3.332 3.333z" }) + ] + } + ); +}); + +export { SiMatomo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.cjs new file mode 100644 index 000000000..9b4a0fd2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMatrix = React__namespace.forwardRef(function SiMatrix2({ title = "Matrix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.632.55v22.9H2.28V24H0V0h2.28v.55zm7.043 7.26v1.157h.033c.309-.443.683-.784 1.117-1.024.433-.245.936-.365 1.5-.365.54 0 1.033.107 1.481.314.448.208.785.582 1.02 1.108.254-.374.6-.706 1.034-.992.434-.287.95-.43 1.546-.43.453 0 .872.056 1.26.167.388.11.716.286.993.53.276.245.489.559.646.951.152.392.23.863.23 1.417v5.728h-2.349V11.52c0-.286-.01-.559-.032-.812a1.755 1.755 0 0 0-.18-.66 1.106 1.106 0 0 0-.438-.448c-.194-.11-.457-.166-.785-.166-.332 0-.6.064-.803.189a1.38 1.38 0 0 0-.48.499 1.946 1.946 0 0 0-.231.696 5.56 5.56 0 0 0-.06.785v4.768h-2.35v-4.8c0-.254-.004-.503-.018-.752a2.074 2.074 0 0 0-.143-.688 1.052 1.052 0 0 0-.415-.503c-.194-.125-.476-.19-.854-.19-.111 0-.259.024-.439.074-.18.051-.36.143-.53.282-.171.138-.319.337-.439.595-.12.259-.18.6-.18 1.02v4.966H5.46V7.81zm15.693 15.64V.55H21.72V0H24v24h-2.28v-.55z" }) + ] + } + ); +}); + +exports.default = SiMatrix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.d.ts new file mode 100644 index 000000000..d3ace47eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMatrix: IconType; +export { SiMatrix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.mjs new file mode 100644 index 000000000..3b5d63d43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatrix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMatrix = React.forwardRef(function SiMatrix2({ title = "Matrix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.632.55v22.9H2.28V24H0V0h2.28v.55zm7.043 7.26v1.157h.033c.309-.443.683-.784 1.117-1.024.433-.245.936-.365 1.5-.365.54 0 1.033.107 1.481.314.448.208.785.582 1.02 1.108.254-.374.6-.706 1.034-.992.434-.287.95-.43 1.546-.43.453 0 .872.056 1.26.167.388.11.716.286.993.53.276.245.489.559.646.951.152.392.23.863.23 1.417v5.728h-2.349V11.52c0-.286-.01-.559-.032-.812a1.755 1.755 0 0 0-.18-.66 1.106 1.106 0 0 0-.438-.448c-.194-.11-.457-.166-.785-.166-.332 0-.6.064-.803.189a1.38 1.38 0 0 0-.48.499 1.946 1.946 0 0 0-.231.696 5.56 5.56 0 0 0-.06.785v4.768h-2.35v-4.8c0-.254-.004-.503-.018-.752a2.074 2.074 0 0 0-.143-.688 1.052 1.052 0 0 0-.415-.503c-.194-.125-.476-.19-.854-.19-.111 0-.259.024-.439.074-.18.051-.36.143-.53.282-.171.138-.319.337-.439.595-.12.259-.18.6-.18 1.02v4.966H5.46V7.81zm15.693 15.64V.55H21.72V0H24v24h-2.28v-.55z" }) + ] + } + ); +}); + +export { SiMatrix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.cjs new file mode 100644 index 000000000..4fb3fef86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B5562"; +const SiMatterdotjs = React__namespace.forwardRef(function SiMatterdotjs2({ title = "Matter.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.494 9.614c-.152 0-.265.046-.333.121a.412.412 0 0 0-.114.296c0 .314.14.469.416.469.167 0 .288-.038.364-.114a.416.416 0 0 0 .11-.302c0-.314-.137-.47-.417-.47h-.023zm-17.341.038-1.078 1.866L0 13.383h2.85v-1.9l-.058-.722Zm18.086.015v3.394l.25-.461.022.007a2.232 2.232 0 0 0 .73.224.31.31 0 0 0 .179-.053c.049-.03.068-.065.068-.125 0-.065-.027-.114-.099-.155a1.298 1.298 0 0 0-.17-.091 2.811 2.811 0 0 1-.738-.39c-.151-.129-.227-.322-.227-.567a.757.757 0 0 1 .303-.625 1.196 1.196 0 0 1 .753-.227c.295 0 .53.076.704.212a.844.844 0 0 1 .302.587v.022l-.726.14-.008-.03c-.011-.114-.038-.185-.087-.238a.299.299 0 0 0-.223-.08.227.227 0 0 0-.163.057c-.045.042-.068.087-.068.129 0 .049.008.079.019.102a.254.254 0 0 0 .05.068l.075.064a.802.802 0 0 0 .094.053l.13.05c.04.026.147.075.313.15v-.01a1.392 1.392 0 0 1 .44.275c.116.114.177.28.177.489 0 .211-.098.4-.291.567a1.022 1.022 0 0 1-.492.227H24V9.667Zm-10.08.292-.726.215-.03.504-.333.045-.072.503h.39v1.124c0 .386.049.662.15.832.107.17.322.254.655.254a1.43 1.43 0 0 0 .704-.197l-.136-.446a1.574 1.574 0 0 1-.288.049c-.113 0-.196-.034-.242-.102-.05-.065-.072-.186-.072-.356v-1.162h.59l.091-.556h-.68zm1.903 0-.726.215-.03.504-.333.045-.076.503h.394v1.124c0 .386.049.662.15.832.103.17.323.254.655.254a1.415 1.415 0 0 0 .7-.197l-.136-.446a1.574 1.574 0 0 1-.287.049c-.114 0-.193-.034-.242-.102-.046-.065-.069-.186-.069-.356v-1.162h.59l.091-.556h-.68zm-7.862.67a.848.848 0 0 0-.677.332h-.02l-.071-.31-.598.076.053.757v1.891h.772v-2.001a.39.39 0 0 1 .306-.148c.182 0 .277.114.277.33v1.82h.768v-2.002a.378.378 0 0 1 .31-.148c.178 0 .265.114.265.33v1.82h.78v-1.783c0-.643-.262-.965-.78-.965a.897.897 0 0 0-.727.33c-.12-.22-.333-.33-.628-.33Zm3.61 0a2.244 2.244 0 0 0-.564.086 2.126 2.126 0 0 0-.473.174l.215.477a2.584 2.584 0 0 1 .666-.151c.137 0 .227.03.273.083.049.05.072.133.072.242v.2l-.44.076a1.389 1.389 0 0 0-.665.273c-.151.132-.227.33-.227.594 0 .503.242.757.726.757a.908.908 0 0 0 .742-.379h.019a.957.957 0 0 0 .386.379l.435-.413a.757.757 0 0 1-.167-.25 1.07 1.07 0 0 1-.034-.302v-.95a1.62 1.62 0 0 0-.03-.34.742.742 0 0 0-.113-.277.518.518 0 0 0-.292-.211 1.472 1.472 0 0 0-.492-.069zm6.337 0c-.39.007-.68.136-.881.382a1.612 1.612 0 0 0-.303 1.033c0 .93.393 1.392 1.173 1.392a2.005 2.005 0 0 0 1.003-.273l-.16-.472a2.085 2.085 0 0 1-.688.147c-.19 0-.318-.05-.393-.147a.757.757 0 0 1-.114-.45h1.04l.36-.05c0-.212-.004-.39-.015-.53-.03-.352-.114-.605-.242-.756-.16-.186-.405-.277-.742-.277zm2.683 0a.598.598 0 0 0-.378.155.866.866 0 0 0-.254.423h-.019l-.094-.556-.583.076.057.749v1.9h.768v-1.514c0-.19.053-.33.159-.428a.522.522 0 0 1 .355-.147.984.984 0 0 1 .273.049l.178-.605a.946.946 0 0 0-.432-.099h-.026zm3.05.018-.772.08v2.395a1.513 1.513 0 0 1-.053.507c-.034.087-.133.19-.295.31l.423.447a1.892 1.892 0 0 0 .56-.466 1.06 1.06 0 0 0 .137-.598zm1.43 0a1.162 1.162 0 0 0-.727.224.692.692 0 0 0-.28.575c0 .242.076.408.216.526a2.747 2.747 0 0 0 .719.386 1.699 1.699 0 0 1 .182.102c.079.045.12.113.12.189a.19.19 0 0 1-.09.174.367.367 0 0 1-.208.05 2.126 2.126 0 0 1-.73-.205l-.25.45c.329.19.654.288.983.288a1.135 1.135 0 0 0 .769-.235c.185-.163.272-.337.272-.533a.61.61 0 0 0-.163-.454 1.29 1.29 0 0 0-.416-.258 3.746 3.746 0 0 1-.325-.147l-.114-.05a1.022 1.022 0 0 1-.113-.06l-.08-.068a.31.31 0 0 1-.06-.08.375.375 0 0 1-.015-.125.22.22 0 0 1 .075-.166.284.284 0 0 1 .197-.072c.106 0 .19.038.253.099a.439.439 0 0 1 .103.242l.62-.118a.795.795 0 0 0-.265-.53 1.014 1.014 0 0 0-.673-.204Zm-7.204.58h.022c.118 0 .193.037.227.113.034.075.05.212.05.4h-.613a.829.829 0 0 1 .083-.381c.049-.084.125-.125.23-.133zm-6.103 1.01v.472a.47.47 0 0 1-.341.144c-.178 0-.265-.083-.265-.25 0-.113.05-.189.14-.242a1.4 1.4 0 0 1 .466-.125zm-4.295.128v1.007h.48v-.174zm14.094.064a.488.488 0 0 0-.454.489.488.488 0 0 0 .492.488.488.488 0 0 0 .484-.492.488.488 0 0 0-.488-.485.488.488 0 0 0-.037 0zm2.437.742v.257h.704a2.176 2.176 0 0 1-.704-.257z" }) + ] + } + ); +}); + +exports.default = SiMatterdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.d.ts new file mode 100644 index 000000000..19905c219 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B5562"; +declare const SiMatterdotjs: IconType; +export { SiMatterdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.mjs new file mode 100644 index 000000000..82caf7676 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatterdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B5562"; +const SiMatterdotjs = React.forwardRef(function SiMatterdotjs2({ title = "Matter.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.494 9.614c-.152 0-.265.046-.333.121a.412.412 0 0 0-.114.296c0 .314.14.469.416.469.167 0 .288-.038.364-.114a.416.416 0 0 0 .11-.302c0-.314-.137-.47-.417-.47h-.023zm-17.341.038-1.078 1.866L0 13.383h2.85v-1.9l-.058-.722Zm18.086.015v3.394l.25-.461.022.007a2.232 2.232 0 0 0 .73.224.31.31 0 0 0 .179-.053c.049-.03.068-.065.068-.125 0-.065-.027-.114-.099-.155a1.298 1.298 0 0 0-.17-.091 2.811 2.811 0 0 1-.738-.39c-.151-.129-.227-.322-.227-.567a.757.757 0 0 1 .303-.625 1.196 1.196 0 0 1 .753-.227c.295 0 .53.076.704.212a.844.844 0 0 1 .302.587v.022l-.726.14-.008-.03c-.011-.114-.038-.185-.087-.238a.299.299 0 0 0-.223-.08.227.227 0 0 0-.163.057c-.045.042-.068.087-.068.129 0 .049.008.079.019.102a.254.254 0 0 0 .05.068l.075.064a.802.802 0 0 0 .094.053l.13.05c.04.026.147.075.313.15v-.01a1.392 1.392 0 0 1 .44.275c.116.114.177.28.177.489 0 .211-.098.4-.291.567a1.022 1.022 0 0 1-.492.227H24V9.667Zm-10.08.292-.726.215-.03.504-.333.045-.072.503h.39v1.124c0 .386.049.662.15.832.107.17.322.254.655.254a1.43 1.43 0 0 0 .704-.197l-.136-.446a1.574 1.574 0 0 1-.288.049c-.113 0-.196-.034-.242-.102-.05-.065-.072-.186-.072-.356v-1.162h.59l.091-.556h-.68zm1.903 0-.726.215-.03.504-.333.045-.076.503h.394v1.124c0 .386.049.662.15.832.103.17.323.254.655.254a1.415 1.415 0 0 0 .7-.197l-.136-.446a1.574 1.574 0 0 1-.287.049c-.114 0-.193-.034-.242-.102-.046-.065-.069-.186-.069-.356v-1.162h.59l.091-.556h-.68zm-7.862.67a.848.848 0 0 0-.677.332h-.02l-.071-.31-.598.076.053.757v1.891h.772v-2.001a.39.39 0 0 1 .306-.148c.182 0 .277.114.277.33v1.82h.768v-2.002a.378.378 0 0 1 .31-.148c.178 0 .265.114.265.33v1.82h.78v-1.783c0-.643-.262-.965-.78-.965a.897.897 0 0 0-.727.33c-.12-.22-.333-.33-.628-.33Zm3.61 0a2.244 2.244 0 0 0-.564.086 2.126 2.126 0 0 0-.473.174l.215.477a2.584 2.584 0 0 1 .666-.151c.137 0 .227.03.273.083.049.05.072.133.072.242v.2l-.44.076a1.389 1.389 0 0 0-.665.273c-.151.132-.227.33-.227.594 0 .503.242.757.726.757a.908.908 0 0 0 .742-.379h.019a.957.957 0 0 0 .386.379l.435-.413a.757.757 0 0 1-.167-.25 1.07 1.07 0 0 1-.034-.302v-.95a1.62 1.62 0 0 0-.03-.34.742.742 0 0 0-.113-.277.518.518 0 0 0-.292-.211 1.472 1.472 0 0 0-.492-.069zm6.337 0c-.39.007-.68.136-.881.382a1.612 1.612 0 0 0-.303 1.033c0 .93.393 1.392 1.173 1.392a2.005 2.005 0 0 0 1.003-.273l-.16-.472a2.085 2.085 0 0 1-.688.147c-.19 0-.318-.05-.393-.147a.757.757 0 0 1-.114-.45h1.04l.36-.05c0-.212-.004-.39-.015-.53-.03-.352-.114-.605-.242-.756-.16-.186-.405-.277-.742-.277zm2.683 0a.598.598 0 0 0-.378.155.866.866 0 0 0-.254.423h-.019l-.094-.556-.583.076.057.749v1.9h.768v-1.514c0-.19.053-.33.159-.428a.522.522 0 0 1 .355-.147.984.984 0 0 1 .273.049l.178-.605a.946.946 0 0 0-.432-.099h-.026zm3.05.018-.772.08v2.395a1.513 1.513 0 0 1-.053.507c-.034.087-.133.19-.295.31l.423.447a1.892 1.892 0 0 0 .56-.466 1.06 1.06 0 0 0 .137-.598zm1.43 0a1.162 1.162 0 0 0-.727.224.692.692 0 0 0-.28.575c0 .242.076.408.216.526a2.747 2.747 0 0 0 .719.386 1.699 1.699 0 0 1 .182.102c.079.045.12.113.12.189a.19.19 0 0 1-.09.174.367.367 0 0 1-.208.05 2.126 2.126 0 0 1-.73-.205l-.25.45c.329.19.654.288.983.288a1.135 1.135 0 0 0 .769-.235c.185-.163.272-.337.272-.533a.61.61 0 0 0-.163-.454 1.29 1.29 0 0 0-.416-.258 3.746 3.746 0 0 1-.325-.147l-.114-.05a1.022 1.022 0 0 1-.113-.06l-.08-.068a.31.31 0 0 1-.06-.08.375.375 0 0 1-.015-.125.22.22 0 0 1 .075-.166.284.284 0 0 1 .197-.072c.106 0 .19.038.253.099a.439.439 0 0 1 .103.242l.62-.118a.795.795 0 0 0-.265-.53 1.014 1.014 0 0 0-.673-.204Zm-7.204.58h.022c.118 0 .193.037.227.113.034.075.05.212.05.4h-.613a.829.829 0 0 1 .083-.381c.049-.084.125-.125.23-.133zm-6.103 1.01v.472a.47.47 0 0 1-.341.144c-.178 0-.265-.083-.265-.25 0-.113.05-.189.14-.242a1.4 1.4 0 0 1 .466-.125zm-4.295.128v1.007h.48v-.174zm14.094.064a.488.488 0 0 0-.454.489.488.488 0 0 0 .492.488.488.488 0 0 0 .484-.492.488.488 0 0 0-.488-.485.488.488 0 0 0-.037 0zm2.437.742v.257h.704a2.176 2.176 0 0 1-.704-.257z" }) + ] + } + ); +}); + +export { SiMatterdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.cjs new file mode 100644 index 000000000..bb1fdfa94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0058CC"; +const SiMattermost = React__namespace.forwardRef(function SiMattermost2({ title = "Mattermost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.081 0C7.048-.034 2.339 3.125.637 8.153c-2.125 6.276 1.24 13.086 7.516 15.21 6.276 2.125 13.086-1.24 15.21-7.516 1.727-5.1-.172-10.552-4.311-13.557l.126 2.547c2.065 2.282 2.88 5.512 1.852 8.549-1.534 4.532-6.594 6.915-11.3 5.321-4.708-1.593-7.28-6.559-5.745-11.092 1.031-3.046 3.655-5.121 6.694-5.67l1.642-1.94A4.87 4.87 0 0 0 12.08 0zm3.528 1.094a.284.284 0 0 0-.123.024l-.004.001a.33.33 0 0 0-.109.071c-.145.142-.657.828-.657.828L13.6 3.4l-1.3 1.585-2.232 2.776s-1.024 1.278-.798 2.851c.226 1.574 1.396 2.34 2.304 2.648.907.307 2.302.408 3.438-.704 1.135-1.112 1.098-2.75 1.098-2.75l-.087-3.56-.07-2.05-.047-1.775s.01-.856-.02-1.057a.33.33 0 0 0-.035-.107l-.006-.012-.007-.011a.277.277 0 0 0-.229-.14z" }) + ] + } + ); +}); + +exports.default = SiMattermost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.d.ts new file mode 100644 index 000000000..27cc14d50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0058CC"; +declare const SiMattermost: IconType; +export { SiMattermost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.mjs new file mode 100644 index 000000000..b67f3de5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMattermost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0058CC"; +const SiMattermost = React.forwardRef(function SiMattermost2({ title = "Mattermost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.081 0C7.048-.034 2.339 3.125.637 8.153c-2.125 6.276 1.24 13.086 7.516 15.21 6.276 2.125 13.086-1.24 15.21-7.516 1.727-5.1-.172-10.552-4.311-13.557l.126 2.547c2.065 2.282 2.88 5.512 1.852 8.549-1.534 4.532-6.594 6.915-11.3 5.321-4.708-1.593-7.28-6.559-5.745-11.092 1.031-3.046 3.655-5.121 6.694-5.67l1.642-1.94A4.87 4.87 0 0 0 12.08 0zm3.528 1.094a.284.284 0 0 0-.123.024l-.004.001a.33.33 0 0 0-.109.071c-.145.142-.657.828-.657.828L13.6 3.4l-1.3 1.585-2.232 2.776s-1.024 1.278-.798 2.851c.226 1.574 1.396 2.34 2.304 2.648.907.307 2.302.408 3.438-.704 1.135-1.112 1.098-2.75 1.098-2.75l-.087-3.56-.07-2.05-.047-1.775s.01-.856-.02-1.057a.33.33 0 0 0-.035-.107l-.006-.012-.007-.011a.277.277 0 0 0-.229-.14z" }) + ] + } + ); +}); + +export { SiMattermost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.cjs new file mode 100644 index 000000000..434d24603 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#261C29"; +const SiMatternet = React__namespace.forwardRef(function SiMatternet2({ title = "Matternet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.229 4.18l-4.066 2.327V1.826L11.993 0 8.827 1.83v4.677L4.78 4.17 1.606 6v3.664L5.657 12l-4.054 2.343V18l3.165 1.831 4.044-2.338v4.681L11.983 24l3.174-1.831v-4.676l4.052 2.327 3.173-1.829v-3.646L18.339 12l4.058-2.336V6l-3.164-1.82h-.004zm.373 3.429V5.715l1.639.942v1.905l-1.636-.953h-.003zm1.638 9.286l-6.075-3.504 1.65-.945L21.239 15v1.896l.001-.001zm-6.827-3.95L12.763 12l6.452-3.726 1.641.944-6.446 3.727h.003zM3.134 9.219l1.641-.944L11.228 12l-1.639.945-6.455-3.726zm5.69 4.17l-6.075 3.508V15l4.435-2.555 1.641.945v-.001zM2.749 8.564V6.66l1.64-.945v1.898l-1.64.951zm9.627 0V1.55l1.641.937V7.61l-1.641.953v.001zm-2.402-.96V2.493l1.64-.944v7.004l-1.64-.949zm8.866-1.889v1.898l-6.456 3.734V9.442l6.456-3.727zm-7.228 3.724v1.897L5.153 7.609V5.715l6.46 3.721-.001.003zm-2.403 6.513l-4.435 2.555-1.64-.944 6.074-3.508v1.897zm.765-2.343l1.64-.945v7.453l-1.64.959v-7.467zm3.656 8.115l-1.639.954-1.64-.951 1.64-.946 1.639.946v-.003zm.394-.657l-1.648-.95v-7.441l1.648.944zm6.831-3.504l-1.641.944-4.425-2.555v-1.897l6.075 3.508h-.009z" }) + ] + } + ); +}); + +exports.default = SiMatternet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.d.ts new file mode 100644 index 000000000..cbeea4962 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#261C29"; +declare const SiMatternet: IconType; +export { SiMatternet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.mjs new file mode 100644 index 000000000..948abbe97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMatternet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#261C29"; +const SiMatternet = React.forwardRef(function SiMatternet2({ title = "Matternet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.229 4.18l-4.066 2.327V1.826L11.993 0 8.827 1.83v4.677L4.78 4.17 1.606 6v3.664L5.657 12l-4.054 2.343V18l3.165 1.831 4.044-2.338v4.681L11.983 24l3.174-1.831v-4.676l4.052 2.327 3.173-1.829v-3.646L18.339 12l4.058-2.336V6l-3.164-1.82h-.004zm.373 3.429V5.715l1.639.942v1.905l-1.636-.953h-.003zm1.638 9.286l-6.075-3.504 1.65-.945L21.239 15v1.896l.001-.001zm-6.827-3.95L12.763 12l6.452-3.726 1.641.944-6.446 3.727h.003zM3.134 9.219l1.641-.944L11.228 12l-1.639.945-6.455-3.726zm5.69 4.17l-6.075 3.508V15l4.435-2.555 1.641.945v-.001zM2.749 8.564V6.66l1.64-.945v1.898l-1.64.951zm9.627 0V1.55l1.641.937V7.61l-1.641.953v.001zm-2.402-.96V2.493l1.64-.944v7.004l-1.64-.949zm8.866-1.889v1.898l-6.456 3.734V9.442l6.456-3.727zm-7.228 3.724v1.897L5.153 7.609V5.715l6.46 3.721-.001.003zm-2.403 6.513l-4.435 2.555-1.64-.944 6.074-3.508v1.897zm.765-2.343l1.64-.945v7.453l-1.64.959v-7.467zm3.656 8.115l-1.639.954-1.64-.951 1.64-.946 1.639.946v-.003zm.394-.657l-1.648-.95v-7.441l1.648.944zm6.831-3.504l-1.641.944-4.425-2.555v-1.897l6.075 3.508h-.009z" }) + ] + } + ); +}); + +export { SiMatternet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.cjs new file mode 100644 index 000000000..16d510a13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E5E9E"; +const SiMautic = React__namespace.forwardRef(function SiMautic2({ title = "Mautic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.394 0 0 5.374 0 12s5.394 12 12 12c6.626 0 12-5.394 12-11.98a11.88 11.88 0 0 0-.727-4.12.815.815 0 0 0-1.05-.486.815.815 0 0 0-.486 1.05c.425 1.132.627 2.324.627 3.556 0 5.717-4.647 10.364-10.364 10.364-5.717 0-10.363-4.647-10.363-10.364C1.637 6.303 6.283 1.657 12 1.657c1.374 0 2.707.262 3.98.787A.843.843 0 0 0 17.05 2a.843.843 0 0 0-.444-1.07A11.588 11.588 0 0 0 12 0zm8.08 4.323-3.595.707.646.647L12 11.111 7.616 6.606 5.091 17.051h2.343l1.394-5.799L12 14.707l6.788-7.394.646.667zm-2.828 6.445-1.858 1.94 1.03 4.343h2.344z" }) + ] + } + ); +}); + +exports.default = SiMautic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.d.ts new file mode 100644 index 000000000..5f0856524 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E5E9E"; +declare const SiMautic: IconType; +export { SiMautic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.mjs new file mode 100644 index 000000000..1a7152924 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMautic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E5E9E"; +const SiMautic = React.forwardRef(function SiMautic2({ title = "Mautic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.394 0 0 5.374 0 12s5.394 12 12 12c6.626 0 12-5.394 12-11.98a11.88 11.88 0 0 0-.727-4.12.815.815 0 0 0-1.05-.486.815.815 0 0 0-.486 1.05c.425 1.132.627 2.324.627 3.556 0 5.717-4.647 10.364-10.364 10.364-5.717 0-10.363-4.647-10.363-10.364C1.637 6.303 6.283 1.657 12 1.657c1.374 0 2.707.262 3.98.787A.843.843 0 0 0 17.05 2a.843.843 0 0 0-.444-1.07A11.588 11.588 0 0 0 12 0zm8.08 4.323-3.595.707.646.647L12 11.111 7.616 6.606 5.091 17.051h2.343l1.394-5.799L12 14.707l6.788-7.394.646.667zm-2.828 6.445-1.858 1.94 1.03 4.343h2.344z" }) + ] + } + ); +}); + +export { SiMautic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMax.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMax.cjs new file mode 100644 index 000000000..fd5514037 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMax.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#525252"; +const SiMax = React__namespace.forwardRef(function SiMax2({ title = "Max", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.769 0A1.77 1.77 0 0 0 0 1.769V22.23A1.77 1.77 0 0 0 1.769 24H22.23A1.77 1.77 0 0 0 24 22.231V1.77A1.77 1.77 0 0 0 22.231 0zm12.485 3.28a4.301 4.301 0 0 1 4.3 4.302 4.301 4.301 0 0 1-1.993 3.63 6.085 6.085 0 0 1 1.054 3.422 6.085 6.085 0 0 1-6.085 6.085 6.085 6.085 0 0 1-6.085-6.085 6.085 6.085 0 0 1 4.66-5.916 4.301 4.301 0 0 1-.152-1.136 4.301 4.301 0 0 1 4.301-4.301zm0 1.849a2.453 2.453 0 0 0-2.453 2.453 2.453 2.453 0 0 0 2.453 2.453 2.453 2.453 0 0 0 2.453-2.453 2.453 2.453 0 0 0-2.453-2.453zm-2.724 5.268a4.237 4.237 0 0 0-4.237 4.237 4.237 4.237 0 0 0 4.237 4.237 4.237 4.237 0 0 0 4.237-4.237 4.237 4.237 0 0 0-4.237-4.237zm.032 2.54a1.781 1.781 0 1 1 0 3.562 1.781 1.781 0 0 1 0-3.562Z" }) + ] + } + ); +}); + +exports.default = SiMax; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMax.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMax.d.ts new file mode 100644 index 000000000..14f781c59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMax.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#525252"; +declare const SiMax: IconType; +export { SiMax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMax.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMax.mjs new file mode 100644 index 000000000..1f9e09d2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMax.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#525252"; +const SiMax = React.forwardRef(function SiMax2({ title = "Max", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.769 0A1.77 1.77 0 0 0 0 1.769V22.23A1.77 1.77 0 0 0 1.769 24H22.23A1.77 1.77 0 0 0 24 22.231V1.77A1.77 1.77 0 0 0 22.231 0zm12.485 3.28a4.301 4.301 0 0 1 4.3 4.302 4.301 4.301 0 0 1-1.993 3.63 6.085 6.085 0 0 1 1.054 3.422 6.085 6.085 0 0 1-6.085 6.085 6.085 6.085 0 0 1-6.085-6.085 6.085 6.085 0 0 1 4.66-5.916 4.301 4.301 0 0 1-.152-1.136 4.301 4.301 0 0 1 4.301-4.301zm0 1.849a2.453 2.453 0 0 0-2.453 2.453 2.453 2.453 0 0 0 2.453 2.453 2.453 2.453 0 0 0 2.453-2.453 2.453 2.453 0 0 0-2.453-2.453zm-2.724 5.268a4.237 4.237 0 0 0-4.237 4.237 4.237 4.237 0 0 0 4.237 4.237 4.237 4.237 0 0 0 4.237-4.237 4.237 4.237 0 0 0-4.237-4.237zm.032 2.54a1.781 1.781 0 1 1 0 3.562 1.781 1.781 0 0 1 0-3.562Z" }) + ] + } + ); +}); + +export { SiMax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.cjs new file mode 100644 index 000000000..3cbe78e61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006C66"; +const SiMaxplanckgesellschaft = React__namespace.forwardRef(function SiMaxplanckgesellschaft2({ title = "Max-Planck-Gesellschaft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1 0 12 12A12.011 12.011 0 0 0 12 0zm-.049.331A11.669 11.669 0 0 1 23.67 12 11.68 11.68 0 0 1 12 23.669 11.669 11.669 0 0 1 11.951.33zM12 1.464A10.56 10.56 0 0 0 1.45 12c0 3.371 1.715 6.617 4.503 8.64a1.543 1.543 0 0 0 .32.183.126.126 0 0 0 .126-.023l.034-.057a.114.114 0 0 0 .035-.092c0-.08-.103-.148-.24-.343a3.166 3.166 0 0 1-.537-1.725 2.526 2.526 0 0 1 .514-1.566c.423.446 1.337 1.246 1.314 1.989-.023.743-.789.777-.617 1.394.103.389.389.229.446.526.08.503.765.834 1.062.788.08-.011.138.046.275.194.137.15.708.183.937.138.228-.046.468.16.914.103.446-.057.697-.103.937-.103.24 0 2.572-.035 4.115.205.274.046.354-.08.24-.285-.56-.983-.64-1.806-.32-2.858.57.046 1.394.195 2.468-.457a1.257 1.257 0 0 0 .583-1.085c-.011-.24-.114-.537-.057-.766.057-.229.148-.308.24-.366.411-.297.114-.525.046-.548a.389.389 0 0 0 .125-.526c-.08-.08-.308-.709-.045-.834.262-.126.605-.206.925-.355a.514.514 0 0 0 .275-.685 124.62 124.62 0 0 0-1.029-2.4c-.16-.355-.057-.583-.103-.835-.046-.251-.308-.8-.491-1.234-.08-.194.434-.148.046-.868 0-.023.537-.229 0-.629a3.017 3.017 0 0 1-.686-.766.114.114 0 0 1 0-.148c.308-.274.32-.663-.012-.857-.331-.195-.514 0-.765.16-.08.057-.126.09-.218.057l-.205-.137c.308-.298.377-.595.354-.64-.023-.046-.526-.149-1.166.114l-.045-.034c.263-.446.114-.766.102-.79h-.011a9.257 9.257 0 0 1 1.417-1.519h.012c.022-.034.034-.069-.023-.103l-.115-.068A10.56 10.56 0 0 0 12 1.464zm-.073.316a10.206 10.206 0 0 1 4.805 1.169.046.046 0 0 1 .012.08 11.12 11.12 0 0 0-1.166 1.302 8.354 8.354 0 0 0-3.577-.8A8.491 8.491 0 0 0 3.531 12a8.24 8.24 0 0 0 2.046 5.508 2.64 2.64 0 0 0-.217 1.075 2.926 2.926 0 0 0 .377 1.451C3.268 18.07 1.783 15.097 1.783 12A10.206 10.206 0 0 1 11.926 1.78zm.28.266c-.034 0-.046.023-.057.046l-.103 1.142a.046.046 0 0 0 .046.046h.125c.023.011.046-.011.046-.034l.114-1.143a.057.057 0 0 0-.046-.057zm-1.686.111c-.006 0-.011 0-.017.003h-.137c-.023.011-.046.034-.035.057l.218 1.132c0 .034.023.045.057.045l.125-.023c.023 0 .046-.022.035-.045l-.217-1.132a.038.038 0 0 0-.03-.037zm3.514.106L13.59 3.36a.046.046 0 0 0 .034.069l.126.034a.057.057 0 0 0 .057-.034l.434-1.075a.046.046 0 0 0-.034-.068l-.137-.023zm-5.313.34a.046.046 0 0 0-.013.003l-.114.034a.046.046 0 0 0-.034.068l.514 1.04.057.023.126-.045a.046.046 0 0 0 .035-.069L8.766 2.63a.046.046 0 0 0-.045-.026zm6.913.134a.046.046 0 0 0-.034.017l-.743.949c-.023.023-.011.057.023.068l.126.046c.023.012.034 0 .057-.011l.743-.949a.057.057 0 0 0-.023-.068l-.126-.046a.046.046 0 0 0-.023-.006zm-8.592.639a.028.028 0 0 0-.025.007l-.114.068c-.034.012-.034.046-.011.07l.765.879c.012.023.034.023.057.011l.115-.068a.046.046 0 0 0 .011-.069l-.766-.88a.06.06 0 0 0-.032-.018zm4.93.498a8.137 8.137 0 0 1 .028 0 8.011 8.011 0 0 1 3.383.732 2.583 2.583 0 0 0-.469.297A7.211 7.211 0 0 0 12 4.32 7.691 7.691 0 0 0 4.32 12c0 1.84.571 3.451 1.691 4.8-.057.103-.148.24-.251.4h-.011A7.909 7.909 0 0 1 3.874 12a8.137 8.137 0 0 1 8.098-8.126zm-6.51.618l-.102.09a.057.057 0 0 0 0 .08l.971.675c.023.011.046.012.058-.011l.103-.08a.057.057 0 0 0 0-.08l-.972-.674zm10.177.191c.008 0 .014 0 .018.003.069.034-.091.64-.446.983-.354.342-.925.708-.982.697-.058-.012.194-.674.491-1.017.3-.365.8-.659.919-.666zm-3.616.025a6.491 6.491 0 0 1 2.56.526 3.577 3.577 0 0 0-.423.755c0-.218-.057-.389-.046-.526.012-.137-.582.103-1.108.948a2.274 2.274 0 0 0-.252.606c-.011-.32-.08-.56-.103-.56a1.84 1.84 0 0 0-.971 1.006 2.56 2.56 0 0 0-.126.388c-.023-.217-.08-.365-.103-.365-.023 0-.674.263-.982 1.017a1.76 1.76 0 0 0-.126.526c-.057-.263-.16-.423-.194-.389-.217.274-.652.4-.87 1.097a1.509 1.509 0 0 0-.079.48c-.091-.228-.229-.366-.263-.366s-.697.629-.8 1.246a1.806 1.806 0 0 0 .023.663c-.126-.206-.286-.343-.354-.549-.103.058-.652.572-.663 1.223a2.251 2.251 0 0 0 .08.697c-.183-.331-.434-.48-.469-.468-.034.011-.457.468-.548 1.268a1.349 1.349 0 0 0 .045.526c-.171-.194-.32-.297-.33-.286a2.56 2.56 0 0 0-.413 1.018A7.474 7.474 0 0 1 4.651 12c-.16-4.046 3.235-7.303 7.372-7.292zm4.571.618a2.023 2.023 0 0 1 .035 0c.091.011-.218.548-.755.777-.537.228-.971.285-1.017.263-.046-.023.469-.663.914-.858a2.023 2.023 0 0 1 .823-.182zm-2.643.316c.003 0 .004 0 .003.004-.011.045.24.754-.297 1.188a2.4 2.4 0 0 0-.64.732c-.057.102-.217-.572.194-1.212.236-.375.693-.71.74-.712zM4.15 5.89a.031.031 0 0 0-.024.018l-.08.103a.046.046 0 0 0 .023.08l1.12.435a.046.046 0 0 0 .045-.023l.092-.103c.023-.023.011-.057-.023-.069l-1.12-.434a.057.057 0 0 0-.033-.007zm13.44.1c.048 0 .09.014.124.044.297.298-.331.469-.206.697a3.509 3.509 0 0 0 .858.96c.137.115.16.355-.377.469-.538.114-2.697.674-3.84 1.886-1.429 1.508-2.332 3.463-2.457 3.2-.126-.263-.412-.32-.366-.4 2.045-3.52 5.257-6.298 6.011-6.766a.468.468 0 0 1 .254-.09zm-1.339.113l.183.126c.115.068.16.09.103.137C13.943 8.57 12 11.372 11.154 12.72c-.023.046-.068.034-.148.034-.903-.068-1.417 1.017-1.017 2.035-.046.205-.48.605-.515.628-.034.023-.114.16.034.149.15-.012.48-.366.618-.515.045.069.251.229.148.32a7.269 7.269 0 0 1-1.588 1.2c-.297.138.48.24 1.794-.948.08-.069.171.274.286.423-.229.743.331 2.183.24 2.628a.32.32 0 0 1-.32.309c-1.303.034-1.429-.034-2.092.16-.308.091-.228.297-.011.24.217-.057.526-.172 1.931-.08.355.011.743-.069.743-.652s-.411-2.102-.274-2.32a.789.789 0 0 0 .4.16c-.023.515.8 2.172.434 3.086-.137.343-.731.309-1.76.206-1.748-.172-2.32.206-2.354 0-.034-.229.183-.446.183-.937 0-.492-.755-1.44-1.269-1.977a2.229 2.229 0 0 0 .903-.218c.754-.354.903-1.154.926-1.188a1.257 1.257 0 0 0-.435-.046l.092-.046c.731-.4.925-1.257.891-1.268a1.943 1.943 0 0 0-.457-.034l.229-.08c.777-.309.994-1.177.971-1.212a1.84 1.84 0 0 0-.4-.046l.217-.091c.709-.354.96-1.154.926-1.177a1.2 1.2 0 0 0-.377-.046 2.709 2.709 0 0 0 .514-.171c.766-.332 1.017-1.063.983-1.097a1.246 1.246 0 0 0-.343-.057 3.943 3.943 0 0 0 .503-.15c.754-.25 1.051-.97 1.006-.982l-.423-.091a2.8 2.8 0 0 0 .754-.149c.812-.274 1.097-.766 1.12-.983a.686.686 0 0 0-.263-.091 3.349 3.349 0 0 0 .538-.138c.754-.308 1.074-1.062 1.097-1.12a3.349 3.349 0 0 0 .445-.182zm-1.28.5a2.057 2.057 0 0 1 .229.014c.034.023-.286.56-.811.766-.526.206-1.006.217-1.075.171-.057-.034.492-.651.937-.823a2.057 2.057 0 0 1 .72-.127zm-2.468.105c.057-.01.217.664 0 .984-.389.582-.412.377-.834.948-.023.023-.023-.743.125-1.074.24-.538.652-.846.709-.858zm-9.36.823l-.057.023a.617.617 0 0 1-.057.126.046.046 0 0 0 .034.069l1.2.171c.023 0 .045-.011.045-.034l.07-.115a.046.046 0 0 0-.035-.068zm10.289.233a1.874 1.874 0 0 1 .476.065c.058.022-.32.571-.88.742-.56.172-1.108.149-1.097.115.012-.035.469-.675.926-.835a1.874 1.874 0 0 1 .575-.087zm-2.152.019c.068-.012.194.651-.046 1.063-.194.343-.377.263-.708.765-.035.046-.126-.411.08-1.04a1.44 1.44 0 0 1 .674-.788zm6.96.673c.034.005.06.035.034.104-.114.331-1.04.629-.994.4.046-.229 0-.251.069-.263.068-.011.4-.126.857-.24a.085.085 0 0 1 .035-.001zm-1.368.317c.03 0 .05.004.054.016.034.091-.206.685-.537.8-.332.114-.537.103-.526.045a1.257 1.257 0 0 0 .057-.468c-.02-.12.739-.389.952-.393zm1.286.187a.091.091 0 0 1 .093.069c.423 1.017.595 1.291.56 1.805-.034.515.995 2.457 1.075 2.64.08.183.091.389 0 .48-.377.332-.949.355-1.178.56-.228.206-.17.286-.045.594.126.31.125.195-.126.263-.251.069-.468.663-1.006.56-.205-.034-.057.092.023.103.297.035.423-.057.526-.16.103-.103.252-.274.412-.331.16-.057.33-.057.342.068.012.126-.217.24-.308.286.114.057.445.217.16.411-.286.195-.526-.057-.56-.08-.035-.022-.194-.022-.149.035.046.057.595.148.515.251-.4.537-.07.858-.195 1.406-.126.549-.88.857-1.463.96-1.988.354-3.92-1.326-5.051-2.606.103-.24.091-.548-.012-.434-.102.114-.08.274-.32.331-.445.115-.65-.674-.788-.81-.549-.538-.766-1.304-.446-1.978.32-.674 1.029-.537 1.303-.126.274.412.194.8.388.949.195.148.55.023.618 0 .068-.023.194.491.914.468.72-.023.674-1.222.789-1.325.982-.96.48-1.818.297-2.012-.183-.194.114-.411.171-.423a1.486 1.486 0 0 0 1.074-.88s.96-.023 1.303-.708c.092-.183.378.171 1.018-.332a.091.091 0 0 1 .066-.034zm-8.085.015c.13-.046.188.654-.016 1.094-.206.445-.331.457-.571.731-.035.046-.206-.423-.046-1.006.16-.583.457-.64.606-.8a.07.07 0 0 1 .027-.02zm1.82.027c.247.007.444.077.53.084.137.011-.149.514-.754.731-.606.217-1.029.206-1.109.172-.023-.023.389-.72.846-.903a1.21 1.21 0 0 1 .486-.084zm-8.22.22a.046.046 0 0 0-.004 0l-1.235.115-.045.034-.035.137c0 .035.023.07.057.058l1.223-.115a.034.034 0 0 0 .035-.034.869.869 0 0 0 .045-.125.046.046 0 0 0-.04-.07zm11.806.203c.032.003.044.032.052.083a1.211 1.211 0 0 1-.297.858c-.262.285-.525.263-.663.297-.137.034-.091.263-.274.388-.251.172-.606-.057-.537-.16a4.994 4.994 0 0 1 1.314-1.257c.243-.15.352-.215.405-.21zm-6.622.724c.092 0 .24.365.24.674a1.177 1.177 0 0 1-.046.343c-.148.491-.445.708-.605.926a1.794 1.794 0 0 1-.183-.663 1.737 1.737 0 0 1 .594-1.28zm2.106.104a1.783 1.783 0 0 1 .294.021c.034.035-.217.629-.743.857a2.766 2.766 0 0 1-1.177.206c-.034-.023.503-.731.96-.948a1.783 1.783 0 0 1 .665-.136zm6.614.033c-.56.023-1.211.708-1.417.8-.206.091-.149.171-.023.125.126-.045.674-.537 1.223-.731.549-.194.411.206.571.183.16-.023-.034-.389-.354-.377zm-14.262.544a.07.07 0 0 0-.023.004l-1.19.412c-.022.011-.033.023-.033.045 0 .023-.012.092-.012.138a.046.046 0 0 0 .069.045l1.177-.411a.034.034 0 0 0 .034-.034c0-.046.012-.103.012-.15 0-.033-.013-.048-.034-.049zm14.388.004c-.046.012.045.252-.195.263-.525.034-.948.537-1.268.686a1.474 1.474 0 0 1-.434.16.035.035 0 0 0 .011.068c1.337.183 1.851.126 1.863.08.011-.045-.068-.137-.046-.194a1.291 1.291 0 0 0 .012-.629c-.023-.09.205-.034.205-.148 0-.114-.068-.297-.148-.286zm-.297.537a.091.091 0 0 1 .091.069 1.211 1.211 0 0 1 0 .457c-.023.103-.628.057-.948.023-.08 0-.206-.011.034-.16s.469-.32.823-.389zm-3.848.003c.121.01.24.169.248.34.034.412-.206.64-.446.823-.24.183-.354.503-.297.583a.171.171 0 0 0 .217-.103c.171-.377.686-.56.766-.766.08-.205.034-.503.023-.64-.012-.137.102-.137.182-.125.08.011.16.16.206.308.332.857-.491 1.372-.628 1.577-.138.206.125.789-.229 1.006-.457.286-.709-.251-.777-.354a.423.423 0 0 1-.057-.355c.034-.16.057-.377-.046-1.062-.046-.309.571-1.052.72-1.189a.151.151 0 0 1 .118-.043zm-5.855.169c.057.205.423.365.423.743a1.703 1.703 0 0 1-.583 1.234 2.023 2.023 0 0 1-.251-.869c-.023-.72.274-.971.41-1.108zm2.283.046a2 2 0 0 1 .197.011c.034.011-.206.617-.709.869-.503.251-1.177.285-1.154.228.023-.046.4-.731.846-.937a2 2 0 0 1 .82-.17zm-6.738.875a.057.057 0 0 0-.025.004l-1.074.72c-.023 0-.023.023-.023.046s.011.092.011.137a.057.057 0 0 0 .08.035l1.075-.709c.01-.011.022-.023.01-.034v-.149a.057.057 0 0 0-.054-.05zm9.195.438a.057.057 0 0 1 .06.047c.068.468 0 1.12-.411 1.028-.115-.023-.16-.24-.138-.331.023-.092.355-.595.457-.732a.057.057 0 0 1 .032-.012zm-3.26.012a2.103 2.103 0 0 1 .234.012c.057.022-.194.64-.663.868-.468.229-.743.103-1.223.252.035-.172.343-.743.812-.949a2.103 2.103 0 0 1 .84-.183zm-2.44.092c.206.103.446.388.468.937.023.548-.365.994-.525 1.074-.103-.423-.297-.503-.297-.914a2.057 2.057 0 0 1 .354-1.097zm4.152.227c-.347.016-.568.511-.518 1.041a.914.914 0 0 0 .583.812c.263.091.069.457.423.457.16 0 .194-.24.103-.275-.08-.034-.057.138-.16.115-.103-.023-.023-.149-.206-.343-.183-.194-.32-.137-.491-.411-.172-.275-.035-1.372.354-1.235.388.137.183.572.114.914-.068.343.286.32.32.24.034-.08-.126-.102-.16-.217-.034-.114.4-.868-.206-1.074a.42.42 0 0 0-.156-.024zm7.24.093a.079.079 0 0 0-.066.068 4.217 4.217 0 0 1-.08.606c-.046.206.137.457.411.308.274-.148.549-.33.834-.388.069-.011.08-.114.012-.114-.103 0-.515.183-.675.286-.16.102-.502.308-.48-.092.012-.149.103-.503.103-.606 0-.051-.028-.071-.058-.068zm-14.64.772a.046.046 0 0 0-.032.016l-.88.972c-.012.011-.023.034-.012.045a.625.625 0 0 1 .046.138.046.046 0 0 0 .08.023l.869-.96c.011-.012.011-.023.011-.046l-.034-.149a.046.046 0 0 0-.047-.039zm4.976.149a.72.72 0 0 1 .226.016c.023.023-.171.674-.674.937s-1.086.309-1.143.24c-.057-.069.172-.777.697-1.006.329-.142.675-.183.894-.187zm-2.523.264c.107.011.59.419.6.997a1.646 1.646 0 0 1-.388 1.052c-.149-.137-.469-.491-.503-.949v-.068c0-.492.217-.983.274-1.029.004-.003.01-.004.017-.003zm1.985 1.07c.133.003.217.018.204.03-.034.035-.206.663-.708.915a1.383 1.383 0 0 1-.995.148c.263-.297.206-.731.64-.937.279-.129.638-.159.86-.155zm-3.866.133a.057.057 0 0 0-.044.023l-.617 1.177c-.012.012 0 .035 0 .046l.08.137a.046.046 0 0 0 .08-.011l.617-1.166c0-.011.011-.023 0-.046l-.069-.137a.057.057 0 0 0-.047-.023zm7.66.829c.014.002.03.011.044.028 1.783 1.932 2.915 2.31 3.532 2.492.057.023.046.091.023.16-.286 1.005-.435 1.406 0 2.503.057.148.103.262-.023.24-.88-.16-1.075-.297-3.852-.069-.194.023.069-.388.035-.663.251-.034.663-.148.743-.56.08-.411-.24-.868-.206-.937.4-.766-.023-1.611-.354-3.04-.026-.103.012-.16.057-.154zm-6.873.5c-.017.003-.031.014-.031.031l-.331 1.372c-.012.023 0 .034 0 .046l.114.114a.046.046 0 0 0 .08-.012l.32-1.36c.011-.011 0-.023 0-.034l-.103-.137a.049.049 0 0 0-.049-.02zm2.489 2.851c.056.007.111.04.154.083.114.115-.08.32-.103.492-.08.022-.331.034-.274-.309.036-.214.13-.277.223-.266zm1.583.096c.155-.01.304.046.297.124-.035.492-.24 1.052.137 1.612.149.217-.594.251-.731-.32-.092-.423-.126-1.143.045-1.314a.394.394 0 0 1 .252-.102zm.962.04c.203-.002.475.028.546.05.115.034-.091.777.777 1.12.08.034-.011 1.006-1.28.686-.182-.046-.685-.846-.274-1.806.013-.034.11-.048.23-.05zm1.938.018c.23.031.238.746-.112.866-.674.229-.948-.56-.834-.731.114-.172.503.114.834-.103a.164.164 0 0 1 .112-.032zm-3.78.073c.128-.004.245.022.251.085.012.126-.126.617.034 1.165-.034.08-.525.046-.662-.32-.069-.308-.046-.72.057-.834.051-.057.191-.091.32-.096z" }) + ] + } + ); +}); + +exports.default = SiMaxplanckgesellschaft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.d.ts new file mode 100644 index 000000000..58df7ff49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006C66"; +declare const SiMaxplanckgesellschaft: IconType; +export { SiMaxplanckgesellschaft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.mjs new file mode 100644 index 000000000..0ed873be3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaxplanckgesellschaft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006C66"; +const SiMaxplanckgesellschaft = React.forwardRef(function SiMaxplanckgesellschaft2({ title = "Max-Planck-Gesellschaft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1 0 12 12A12.011 12.011 0 0 0 12 0zm-.049.331A11.669 11.669 0 0 1 23.67 12 11.68 11.68 0 0 1 12 23.669 11.669 11.669 0 0 1 11.951.33zM12 1.464A10.56 10.56 0 0 0 1.45 12c0 3.371 1.715 6.617 4.503 8.64a1.543 1.543 0 0 0 .32.183.126.126 0 0 0 .126-.023l.034-.057a.114.114 0 0 0 .035-.092c0-.08-.103-.148-.24-.343a3.166 3.166 0 0 1-.537-1.725 2.526 2.526 0 0 1 .514-1.566c.423.446 1.337 1.246 1.314 1.989-.023.743-.789.777-.617 1.394.103.389.389.229.446.526.08.503.765.834 1.062.788.08-.011.138.046.275.194.137.15.708.183.937.138.228-.046.468.16.914.103.446-.057.697-.103.937-.103.24 0 2.572-.035 4.115.205.274.046.354-.08.24-.285-.56-.983-.64-1.806-.32-2.858.57.046 1.394.195 2.468-.457a1.257 1.257 0 0 0 .583-1.085c-.011-.24-.114-.537-.057-.766.057-.229.148-.308.24-.366.411-.297.114-.525.046-.548a.389.389 0 0 0 .125-.526c-.08-.08-.308-.709-.045-.834.262-.126.605-.206.925-.355a.514.514 0 0 0 .275-.685 124.62 124.62 0 0 0-1.029-2.4c-.16-.355-.057-.583-.103-.835-.046-.251-.308-.8-.491-1.234-.08-.194.434-.148.046-.868 0-.023.537-.229 0-.629a3.017 3.017 0 0 1-.686-.766.114.114 0 0 1 0-.148c.308-.274.32-.663-.012-.857-.331-.195-.514 0-.765.16-.08.057-.126.09-.218.057l-.205-.137c.308-.298.377-.595.354-.64-.023-.046-.526-.149-1.166.114l-.045-.034c.263-.446.114-.766.102-.79h-.011a9.257 9.257 0 0 1 1.417-1.519h.012c.022-.034.034-.069-.023-.103l-.115-.068A10.56 10.56 0 0 0 12 1.464zm-.073.316a10.206 10.206 0 0 1 4.805 1.169.046.046 0 0 1 .012.08 11.12 11.12 0 0 0-1.166 1.302 8.354 8.354 0 0 0-3.577-.8A8.491 8.491 0 0 0 3.531 12a8.24 8.24 0 0 0 2.046 5.508 2.64 2.64 0 0 0-.217 1.075 2.926 2.926 0 0 0 .377 1.451C3.268 18.07 1.783 15.097 1.783 12A10.206 10.206 0 0 1 11.926 1.78zm.28.266c-.034 0-.046.023-.057.046l-.103 1.142a.046.046 0 0 0 .046.046h.125c.023.011.046-.011.046-.034l.114-1.143a.057.057 0 0 0-.046-.057zm-1.686.111c-.006 0-.011 0-.017.003h-.137c-.023.011-.046.034-.035.057l.218 1.132c0 .034.023.045.057.045l.125-.023c.023 0 .046-.022.035-.045l-.217-1.132a.038.038 0 0 0-.03-.037zm3.514.106L13.59 3.36a.046.046 0 0 0 .034.069l.126.034a.057.057 0 0 0 .057-.034l.434-1.075a.046.046 0 0 0-.034-.068l-.137-.023zm-5.313.34a.046.046 0 0 0-.013.003l-.114.034a.046.046 0 0 0-.034.068l.514 1.04.057.023.126-.045a.046.046 0 0 0 .035-.069L8.766 2.63a.046.046 0 0 0-.045-.026zm6.913.134a.046.046 0 0 0-.034.017l-.743.949c-.023.023-.011.057.023.068l.126.046c.023.012.034 0 .057-.011l.743-.949a.057.057 0 0 0-.023-.068l-.126-.046a.046.046 0 0 0-.023-.006zm-8.592.639a.028.028 0 0 0-.025.007l-.114.068c-.034.012-.034.046-.011.07l.765.879c.012.023.034.023.057.011l.115-.068a.046.046 0 0 0 .011-.069l-.766-.88a.06.06 0 0 0-.032-.018zm4.93.498a8.137 8.137 0 0 1 .028 0 8.011 8.011 0 0 1 3.383.732 2.583 2.583 0 0 0-.469.297A7.211 7.211 0 0 0 12 4.32 7.691 7.691 0 0 0 4.32 12c0 1.84.571 3.451 1.691 4.8-.057.103-.148.24-.251.4h-.011A7.909 7.909 0 0 1 3.874 12a8.137 8.137 0 0 1 8.098-8.126zm-6.51.618l-.102.09a.057.057 0 0 0 0 .08l.971.675c.023.011.046.012.058-.011l.103-.08a.057.057 0 0 0 0-.08l-.972-.674zm10.177.191c.008 0 .014 0 .018.003.069.034-.091.64-.446.983-.354.342-.925.708-.982.697-.058-.012.194-.674.491-1.017.3-.365.8-.659.919-.666zm-3.616.025a6.491 6.491 0 0 1 2.56.526 3.577 3.577 0 0 0-.423.755c0-.218-.057-.389-.046-.526.012-.137-.582.103-1.108.948a2.274 2.274 0 0 0-.252.606c-.011-.32-.08-.56-.103-.56a1.84 1.84 0 0 0-.971 1.006 2.56 2.56 0 0 0-.126.388c-.023-.217-.08-.365-.103-.365-.023 0-.674.263-.982 1.017a1.76 1.76 0 0 0-.126.526c-.057-.263-.16-.423-.194-.389-.217.274-.652.4-.87 1.097a1.509 1.509 0 0 0-.079.48c-.091-.228-.229-.366-.263-.366s-.697.629-.8 1.246a1.806 1.806 0 0 0 .023.663c-.126-.206-.286-.343-.354-.549-.103.058-.652.572-.663 1.223a2.251 2.251 0 0 0 .08.697c-.183-.331-.434-.48-.469-.468-.034.011-.457.468-.548 1.268a1.349 1.349 0 0 0 .045.526c-.171-.194-.32-.297-.33-.286a2.56 2.56 0 0 0-.413 1.018A7.474 7.474 0 0 1 4.651 12c-.16-4.046 3.235-7.303 7.372-7.292zm4.571.618a2.023 2.023 0 0 1 .035 0c.091.011-.218.548-.755.777-.537.228-.971.285-1.017.263-.046-.023.469-.663.914-.858a2.023 2.023 0 0 1 .823-.182zm-2.643.316c.003 0 .004 0 .003.004-.011.045.24.754-.297 1.188a2.4 2.4 0 0 0-.64.732c-.057.102-.217-.572.194-1.212.236-.375.693-.71.74-.712zM4.15 5.89a.031.031 0 0 0-.024.018l-.08.103a.046.046 0 0 0 .023.08l1.12.435a.046.046 0 0 0 .045-.023l.092-.103c.023-.023.011-.057-.023-.069l-1.12-.434a.057.057 0 0 0-.033-.007zm13.44.1c.048 0 .09.014.124.044.297.298-.331.469-.206.697a3.509 3.509 0 0 0 .858.96c.137.115.16.355-.377.469-.538.114-2.697.674-3.84 1.886-1.429 1.508-2.332 3.463-2.457 3.2-.126-.263-.412-.32-.366-.4 2.045-3.52 5.257-6.298 6.011-6.766a.468.468 0 0 1 .254-.09zm-1.339.113l.183.126c.115.068.16.09.103.137C13.943 8.57 12 11.372 11.154 12.72c-.023.046-.068.034-.148.034-.903-.068-1.417 1.017-1.017 2.035-.046.205-.48.605-.515.628-.034.023-.114.16.034.149.15-.012.48-.366.618-.515.045.069.251.229.148.32a7.269 7.269 0 0 1-1.588 1.2c-.297.138.48.24 1.794-.948.08-.069.171.274.286.423-.229.743.331 2.183.24 2.628a.32.32 0 0 1-.32.309c-1.303.034-1.429-.034-2.092.16-.308.091-.228.297-.011.24.217-.057.526-.172 1.931-.08.355.011.743-.069.743-.652s-.411-2.102-.274-2.32a.789.789 0 0 0 .4.16c-.023.515.8 2.172.434 3.086-.137.343-.731.309-1.76.206-1.748-.172-2.32.206-2.354 0-.034-.229.183-.446.183-.937 0-.492-.755-1.44-1.269-1.977a2.229 2.229 0 0 0 .903-.218c.754-.354.903-1.154.926-1.188a1.257 1.257 0 0 0-.435-.046l.092-.046c.731-.4.925-1.257.891-1.268a1.943 1.943 0 0 0-.457-.034l.229-.08c.777-.309.994-1.177.971-1.212a1.84 1.84 0 0 0-.4-.046l.217-.091c.709-.354.96-1.154.926-1.177a1.2 1.2 0 0 0-.377-.046 2.709 2.709 0 0 0 .514-.171c.766-.332 1.017-1.063.983-1.097a1.246 1.246 0 0 0-.343-.057 3.943 3.943 0 0 0 .503-.15c.754-.25 1.051-.97 1.006-.982l-.423-.091a2.8 2.8 0 0 0 .754-.149c.812-.274 1.097-.766 1.12-.983a.686.686 0 0 0-.263-.091 3.349 3.349 0 0 0 .538-.138c.754-.308 1.074-1.062 1.097-1.12a3.349 3.349 0 0 0 .445-.182zm-1.28.5a2.057 2.057 0 0 1 .229.014c.034.023-.286.56-.811.766-.526.206-1.006.217-1.075.171-.057-.034.492-.651.937-.823a2.057 2.057 0 0 1 .72-.127zm-2.468.105c.057-.01.217.664 0 .984-.389.582-.412.377-.834.948-.023.023-.023-.743.125-1.074.24-.538.652-.846.709-.858zm-9.36.823l-.057.023a.617.617 0 0 1-.057.126.046.046 0 0 0 .034.069l1.2.171c.023 0 .045-.011.045-.034l.07-.115a.046.046 0 0 0-.035-.068zm10.289.233a1.874 1.874 0 0 1 .476.065c.058.022-.32.571-.88.742-.56.172-1.108.149-1.097.115.012-.035.469-.675.926-.835a1.874 1.874 0 0 1 .575-.087zm-2.152.019c.068-.012.194.651-.046 1.063-.194.343-.377.263-.708.765-.035.046-.126-.411.08-1.04a1.44 1.44 0 0 1 .674-.788zm6.96.673c.034.005.06.035.034.104-.114.331-1.04.629-.994.4.046-.229 0-.251.069-.263.068-.011.4-.126.857-.24a.085.085 0 0 1 .035-.001zm-1.368.317c.03 0 .05.004.054.016.034.091-.206.685-.537.8-.332.114-.537.103-.526.045a1.257 1.257 0 0 0 .057-.468c-.02-.12.739-.389.952-.393zm1.286.187a.091.091 0 0 1 .093.069c.423 1.017.595 1.291.56 1.805-.034.515.995 2.457 1.075 2.64.08.183.091.389 0 .48-.377.332-.949.355-1.178.56-.228.206-.17.286-.045.594.126.31.125.195-.126.263-.251.069-.468.663-1.006.56-.205-.034-.057.092.023.103.297.035.423-.057.526-.16.103-.103.252-.274.412-.331.16-.057.33-.057.342.068.012.126-.217.24-.308.286.114.057.445.217.16.411-.286.195-.526-.057-.56-.08-.035-.022-.194-.022-.149.035.046.057.595.148.515.251-.4.537-.07.858-.195 1.406-.126.549-.88.857-1.463.96-1.988.354-3.92-1.326-5.051-2.606.103-.24.091-.548-.012-.434-.102.114-.08.274-.32.331-.445.115-.65-.674-.788-.81-.549-.538-.766-1.304-.446-1.978.32-.674 1.029-.537 1.303-.126.274.412.194.8.388.949.195.148.55.023.618 0 .068-.023.194.491.914.468.72-.023.674-1.222.789-1.325.982-.96.48-1.818.297-2.012-.183-.194.114-.411.171-.423a1.486 1.486 0 0 0 1.074-.88s.96-.023 1.303-.708c.092-.183.378.171 1.018-.332a.091.091 0 0 1 .066-.034zm-8.085.015c.13-.046.188.654-.016 1.094-.206.445-.331.457-.571.731-.035.046-.206-.423-.046-1.006.16-.583.457-.64.606-.8a.07.07 0 0 1 .027-.02zm1.82.027c.247.007.444.077.53.084.137.011-.149.514-.754.731-.606.217-1.029.206-1.109.172-.023-.023.389-.72.846-.903a1.21 1.21 0 0 1 .486-.084zm-8.22.22a.046.046 0 0 0-.004 0l-1.235.115-.045.034-.035.137c0 .035.023.07.057.058l1.223-.115a.034.034 0 0 0 .035-.034.869.869 0 0 0 .045-.125.046.046 0 0 0-.04-.07zm11.806.203c.032.003.044.032.052.083a1.211 1.211 0 0 1-.297.858c-.262.285-.525.263-.663.297-.137.034-.091.263-.274.388-.251.172-.606-.057-.537-.16a4.994 4.994 0 0 1 1.314-1.257c.243-.15.352-.215.405-.21zm-6.622.724c.092 0 .24.365.24.674a1.177 1.177 0 0 1-.046.343c-.148.491-.445.708-.605.926a1.794 1.794 0 0 1-.183-.663 1.737 1.737 0 0 1 .594-1.28zm2.106.104a1.783 1.783 0 0 1 .294.021c.034.035-.217.629-.743.857a2.766 2.766 0 0 1-1.177.206c-.034-.023.503-.731.96-.948a1.783 1.783 0 0 1 .665-.136zm6.614.033c-.56.023-1.211.708-1.417.8-.206.091-.149.171-.023.125.126-.045.674-.537 1.223-.731.549-.194.411.206.571.183.16-.023-.034-.389-.354-.377zm-14.262.544a.07.07 0 0 0-.023.004l-1.19.412c-.022.011-.033.023-.033.045 0 .023-.012.092-.012.138a.046.046 0 0 0 .069.045l1.177-.411a.034.034 0 0 0 .034-.034c0-.046.012-.103.012-.15 0-.033-.013-.048-.034-.049zm14.388.004c-.046.012.045.252-.195.263-.525.034-.948.537-1.268.686a1.474 1.474 0 0 1-.434.16.035.035 0 0 0 .011.068c1.337.183 1.851.126 1.863.08.011-.045-.068-.137-.046-.194a1.291 1.291 0 0 0 .012-.629c-.023-.09.205-.034.205-.148 0-.114-.068-.297-.148-.286zm-.297.537a.091.091 0 0 1 .091.069 1.211 1.211 0 0 1 0 .457c-.023.103-.628.057-.948.023-.08 0-.206-.011.034-.16s.469-.32.823-.389zm-3.848.003c.121.01.24.169.248.34.034.412-.206.64-.446.823-.24.183-.354.503-.297.583a.171.171 0 0 0 .217-.103c.171-.377.686-.56.766-.766.08-.205.034-.503.023-.64-.012-.137.102-.137.182-.125.08.011.16.16.206.308.332.857-.491 1.372-.628 1.577-.138.206.125.789-.229 1.006-.457.286-.709-.251-.777-.354a.423.423 0 0 1-.057-.355c.034-.16.057-.377-.046-1.062-.046-.309.571-1.052.72-1.189a.151.151 0 0 1 .118-.043zm-5.855.169c.057.205.423.365.423.743a1.703 1.703 0 0 1-.583 1.234 2.023 2.023 0 0 1-.251-.869c-.023-.72.274-.971.41-1.108zm2.283.046a2 2 0 0 1 .197.011c.034.011-.206.617-.709.869-.503.251-1.177.285-1.154.228.023-.046.4-.731.846-.937a2 2 0 0 1 .82-.17zm-6.738.875a.057.057 0 0 0-.025.004l-1.074.72c-.023 0-.023.023-.023.046s.011.092.011.137a.057.057 0 0 0 .08.035l1.075-.709c.01-.011.022-.023.01-.034v-.149a.057.057 0 0 0-.054-.05zm9.195.438a.057.057 0 0 1 .06.047c.068.468 0 1.12-.411 1.028-.115-.023-.16-.24-.138-.331.023-.092.355-.595.457-.732a.057.057 0 0 1 .032-.012zm-3.26.012a2.103 2.103 0 0 1 .234.012c.057.022-.194.64-.663.868-.468.229-.743.103-1.223.252.035-.172.343-.743.812-.949a2.103 2.103 0 0 1 .84-.183zm-2.44.092c.206.103.446.388.468.937.023.548-.365.994-.525 1.074-.103-.423-.297-.503-.297-.914a2.057 2.057 0 0 1 .354-1.097zm4.152.227c-.347.016-.568.511-.518 1.041a.914.914 0 0 0 .583.812c.263.091.069.457.423.457.16 0 .194-.24.103-.275-.08-.034-.057.138-.16.115-.103-.023-.023-.149-.206-.343-.183-.194-.32-.137-.491-.411-.172-.275-.035-1.372.354-1.235.388.137.183.572.114.914-.068.343.286.32.32.24.034-.08-.126-.102-.16-.217-.034-.114.4-.868-.206-1.074a.42.42 0 0 0-.156-.024zm7.24.093a.079.079 0 0 0-.066.068 4.217 4.217 0 0 1-.08.606c-.046.206.137.457.411.308.274-.148.549-.33.834-.388.069-.011.08-.114.012-.114-.103 0-.515.183-.675.286-.16.102-.502.308-.48-.092.012-.149.103-.503.103-.606 0-.051-.028-.071-.058-.068zm-14.64.772a.046.046 0 0 0-.032.016l-.88.972c-.012.011-.023.034-.012.045a.625.625 0 0 1 .046.138.046.046 0 0 0 .08.023l.869-.96c.011-.012.011-.023.011-.046l-.034-.149a.046.046 0 0 0-.047-.039zm4.976.149a.72.72 0 0 1 .226.016c.023.023-.171.674-.674.937s-1.086.309-1.143.24c-.057-.069.172-.777.697-1.006.329-.142.675-.183.894-.187zm-2.523.264c.107.011.59.419.6.997a1.646 1.646 0 0 1-.388 1.052c-.149-.137-.469-.491-.503-.949v-.068c0-.492.217-.983.274-1.029.004-.003.01-.004.017-.003zm1.985 1.07c.133.003.217.018.204.03-.034.035-.206.663-.708.915a1.383 1.383 0 0 1-.995.148c.263-.297.206-.731.64-.937.279-.129.638-.159.86-.155zm-3.866.133a.057.057 0 0 0-.044.023l-.617 1.177c-.012.012 0 .035 0 .046l.08.137a.046.046 0 0 0 .08-.011l.617-1.166c0-.011.011-.023 0-.046l-.069-.137a.057.057 0 0 0-.047-.023zm7.66.829c.014.002.03.011.044.028 1.783 1.932 2.915 2.31 3.532 2.492.057.023.046.091.023.16-.286 1.005-.435 1.406 0 2.503.057.148.103.262-.023.24-.88-.16-1.075-.297-3.852-.069-.194.023.069-.388.035-.663.251-.034.663-.148.743-.56.08-.411-.24-.868-.206-.937.4-.766-.023-1.611-.354-3.04-.026-.103.012-.16.057-.154zm-6.873.5c-.017.003-.031.014-.031.031l-.331 1.372c-.012.023 0 .034 0 .046l.114.114a.046.046 0 0 0 .08-.012l.32-1.36c.011-.011 0-.023 0-.034l-.103-.137a.049.049 0 0 0-.049-.02zm2.489 2.851c.056.007.111.04.154.083.114.115-.08.32-.103.492-.08.022-.331.034-.274-.309.036-.214.13-.277.223-.266zm1.583.096c.155-.01.304.046.297.124-.035.492-.24 1.052.137 1.612.149.217-.594.251-.731-.32-.092-.423-.126-1.143.045-1.314a.394.394 0 0 1 .252-.102zm.962.04c.203-.002.475.028.546.05.115.034-.091.777.777 1.12.08.034-.011 1.006-1.28.686-.182-.046-.685-.846-.274-1.806.013-.034.11-.048.23-.05zm1.938.018c.23.031.238.746-.112.866-.674.229-.948-.56-.834-.731.114-.172.503.114.834-.103a.164.164 0 0 1 .112-.032zm-3.78.073c.128-.004.245.022.251.085.012.126-.126.617.034 1.165-.034.08-.525.046-.662-.32-.069-.308-.046-.72.057-.834.051-.057.191-.091.32-.096z" }) + ] + } + ); +}); + +export { SiMaxplanckgesellschaft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.cjs new file mode 100644 index 000000000..7fa9d1a98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002E5F"; +const SiMaytag = React__namespace.forwardRef(function SiMaytag2({ title = "Maytag", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.167 9.864c-.714 0-1.193.194-1.513.465-.65.55-.648 1.373-.648 1.627 0 .297.025 1.285.61 1.784.338.286.72.396 1.312.396.62 0 .962-.407.962-.407h.026s.065.102.179.196c.105.085.256.16.256.16h.358s-.026-.249-.026-.716v-.662c0-.093.027-.159.081-.198a.483.483 0 0 1 .236-.073v-.31h-1.803v.31c.066 0 .272.008.348.056.077.048.15.09.15.262v.418c0 .134.036.266.036.266-.226.213-.731.242-.954.16-.343-.126-.532-.321-.532-1.635 0-.36-.025-1.078.281-1.409.178-.192.47-.23.678-.23.38 0 .622.11.794.47.075.159.246.561.246.561h.325l-.056-1.282c-.206-.082-.57-.209-1.346-.209zM.015 9.902v.345c.423 0 .582.077.582.287v2.843c0 .139-.05.238-.15.295-.099.056-.248.084-.447.084v.349h1.56v-.349c-.202 0-.344-.029-.428-.087-.083-.058-.125-.158-.125-.3v-2.7h.037l1.195 3.436h.579l1.047-3.435h.045v2.776c0 .108-.012.212-.118.268-.078.043-.274.042-.354.042v.349h3.526v-.349c-.09.002-.326-.016-.416-.054-.096-.04-.212-.159-.081-.58l.142-.462h1.303l.121.38c.15.465.195.595.078.66-.103.056-.303.056-.387.056v.349h2.064v-.35c-.045-.002-.158.002-.259-.07-.12-.096-.18-.268-.212-.367a68.88 68.88 0 0 1-.874-2.836 16.625 16.625 0 0 1-.155-.58H7.163l-1.03 3.099c-.08.24-.173.47-.28.6-.116.142-.297.155-.42.155-.279 0-.376-.05-.376-.31v-2.912c0-.21.16-.287.583-.287v-.345H3.659l-.749 2.623h-.037l-.878-2.623zm9.229 0v.345c.149 0 .262.017.33.049a.393.393 0 0 1 .171.192 74.949 74.949 0 0 1 1.026 2.23v.752a.281.281 0 0 1-.035.149.227.227 0 0 1-.113.087.709.709 0 0 1-.203.04 3.98 3.98 0 0 1-.283.01v.349h2.288v-.351a3.448 3.448 0 0 1-.14-.007.701.701 0 0 1-.212-.043.243.243 0 0 1-.118-.09.263.263 0 0 1-.037-.148v-.848l.816-1.78c.063-.147.167-.367.263-.434.096-.068.213-.064.41-.066.3-.002.357.04.405.104.042.057.052.184.051.363v2.669c0 .098-.053.17-.158.215a1.213 1.213 0 0 1-.403.064v.352h2.273v-.352a1.216 1.216 0 0 1-.403-.064c-.105-.045-.158-.117-.158-.215v-2.67c0-.178.009-.303.048-.358.047-.068.104-.108.404-.108.243 0 .338.006.413.066.12.096.21.31.275.457l.176.386h.294l-.067-1.345h-4.583v.349c.138 0 .272.02.315.113.058.125-.012.398-.167.786-.225.564-.389.956-.389.956H11.7l-.562-1.223c-.132-.287-.198-.464-.198-.53 0-.055.01-.105.33-.105v-.346zm8.309 0l-1.029 3.099c-.08.24-.167.44-.273.57a.468.468 0 0 1-.321.175v.359h1.424v-.349c-.09.002-.325-.016-.416-.054-.096-.04-.212-.159-.081-.58L17 12.66h1.3l.123.38c.15.465.194.595.077.66-.103.056-.303.056-.387.056v.349h2.065v-.35c-.046-.002-.159.002-.26-.07-.12-.096-.18-.268-.212-.367a70.46 70.46 0 0 1-.874-2.836c-.066-.24-.118-.424-.155-.58zm-10.247.66h.027l.475 1.761h-1.08zm10.39 0h.027l.475 1.761h-1.08Z" }) + ] + } + ); +}); + +exports.default = SiMaytag; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.d.ts new file mode 100644 index 000000000..f18d7e2af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002E5F"; +declare const SiMaytag: IconType; +export { SiMaytag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.mjs new file mode 100644 index 000000000..c61eb3a7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaytag.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002E5F"; +const SiMaytag = React.forwardRef(function SiMaytag2({ title = "Maytag", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.167 9.864c-.714 0-1.193.194-1.513.465-.65.55-.648 1.373-.648 1.627 0 .297.025 1.285.61 1.784.338.286.72.396 1.312.396.62 0 .962-.407.962-.407h.026s.065.102.179.196c.105.085.256.16.256.16h.358s-.026-.249-.026-.716v-.662c0-.093.027-.159.081-.198a.483.483 0 0 1 .236-.073v-.31h-1.803v.31c.066 0 .272.008.348.056.077.048.15.09.15.262v.418c0 .134.036.266.036.266-.226.213-.731.242-.954.16-.343-.126-.532-.321-.532-1.635 0-.36-.025-1.078.281-1.409.178-.192.47-.23.678-.23.38 0 .622.11.794.47.075.159.246.561.246.561h.325l-.056-1.282c-.206-.082-.57-.209-1.346-.209zM.015 9.902v.345c.423 0 .582.077.582.287v2.843c0 .139-.05.238-.15.295-.099.056-.248.084-.447.084v.349h1.56v-.349c-.202 0-.344-.029-.428-.087-.083-.058-.125-.158-.125-.3v-2.7h.037l1.195 3.436h.579l1.047-3.435h.045v2.776c0 .108-.012.212-.118.268-.078.043-.274.042-.354.042v.349h3.526v-.349c-.09.002-.326-.016-.416-.054-.096-.04-.212-.159-.081-.58l.142-.462h1.303l.121.38c.15.465.195.595.078.66-.103.056-.303.056-.387.056v.349h2.064v-.35c-.045-.002-.158.002-.259-.07-.12-.096-.18-.268-.212-.367a68.88 68.88 0 0 1-.874-2.836 16.625 16.625 0 0 1-.155-.58H7.163l-1.03 3.099c-.08.24-.173.47-.28.6-.116.142-.297.155-.42.155-.279 0-.376-.05-.376-.31v-2.912c0-.21.16-.287.583-.287v-.345H3.659l-.749 2.623h-.037l-.878-2.623zm9.229 0v.345c.149 0 .262.017.33.049a.393.393 0 0 1 .171.192 74.949 74.949 0 0 1 1.026 2.23v.752a.281.281 0 0 1-.035.149.227.227 0 0 1-.113.087.709.709 0 0 1-.203.04 3.98 3.98 0 0 1-.283.01v.349h2.288v-.351a3.448 3.448 0 0 1-.14-.007.701.701 0 0 1-.212-.043.243.243 0 0 1-.118-.09.263.263 0 0 1-.037-.148v-.848l.816-1.78c.063-.147.167-.367.263-.434.096-.068.213-.064.41-.066.3-.002.357.04.405.104.042.057.052.184.051.363v2.669c0 .098-.053.17-.158.215a1.213 1.213 0 0 1-.403.064v.352h2.273v-.352a1.216 1.216 0 0 1-.403-.064c-.105-.045-.158-.117-.158-.215v-2.67c0-.178.009-.303.048-.358.047-.068.104-.108.404-.108.243 0 .338.006.413.066.12.096.21.31.275.457l.176.386h.294l-.067-1.345h-4.583v.349c.138 0 .272.02.315.113.058.125-.012.398-.167.786-.225.564-.389.956-.389.956H11.7l-.562-1.223c-.132-.287-.198-.464-.198-.53 0-.055.01-.105.33-.105v-.346zm8.309 0l-1.029 3.099c-.08.24-.167.44-.273.57a.468.468 0 0 1-.321.175v.359h1.424v-.349c-.09.002-.325-.016-.416-.054-.096-.04-.212-.159-.081-.58L17 12.66h1.3l.123.38c.15.465.194.595.077.66-.103.056-.303.056-.387.056v.349h2.065v-.35c-.046-.002-.159.002-.26-.07-.12-.096-.18-.268-.212-.367a70.46 70.46 0 0 1-.874-2.836c-.066-.24-.118-.424-.155-.58zm-10.247.66h.027l.475 1.761h-1.08zm10.39 0h.027l.475 1.761h-1.08Z" }) + ] + } + ); +}); + +export { SiMaytag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.cjs new file mode 100644 index 000000000..adb661c82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#101010"; +const SiMazda = React__namespace.forwardRef(function SiMazda2({ title = "Mazda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 12.876c-.036 0-.105-.046-.222-.26a7.531 7.531 0 00-1.975-2.353A8.255 8.255 0 007.7 9.065a17.945 17.945 0 00-.345-.136c-1.012-.4-2.061-.813-3.035-1.377A8.982 8.982 0 014 7.362c.194-.34.42-.665.67-.962a6.055 6.055 0 011.253-1.131 7.126 7.126 0 011.618-.806c1.218-.434 2.677-.647 4.458-.649 1.783.002 3.241.215 4.459.65a7.097 7.097 0 011.619.805c.471.319.892.699 1.253 1.13.25.298.475.623.67.963-.103.064-.212.129-.32.192-.976.564-2.023.977-3.037 1.376l-.345.136a8.26 8.26 0 00-2.1 1.198 7.519 7.519 0 00-1.975 2.354c-.117.213-.187.259-.224.259m0 7.072c-1.544-.002-2.798-.129-3.83-.387-1.013-.252-1.855-.64-2.576-1.188a5.792 5.792 0 01-1.392-1.537 7.607 7.607 0 01-.81-1.768 10.298 10.298 0 01-.467-2.983c0-.674.047-1.313.135-1.901 1.106.596 2.153.895 3.08 1.16l.215.06c1.29.371 2.314.857 3.135 1.488.475.368.89.793 1.23 1.264.369.508.663 1.088.877 1.725.096.289.2.468.403.468.207 0 .308-.18.405-.468a6.124 6.124 0 012.107-2.988c.82-.632 1.845-1.118 3.135-1.489l.216-.06c.926-.265 1.973-.564 3.078-1.16.09.589.136 1.227.136 1.9 0 .458-.046 1.664-.465 2.984a7.626 7.626 0 01-.809 1.768 5.789 5.789 0 01-1.396 1.537c-.723.548-1.565.936-2.574 1.188-1.035.258-2.288.385-3.833.387m9.692-14.556c-1.909-2.05-4.99-2.99-9.692-2.995-4.7.005-7.781.944-9.69 2.994C.89 6.913 0 9.018 0 11.874c0 1.579.39 5.6 3.564 7.676 1.9 1.242 4.354 2.046 8.435 2.052 4.083-.006 6.536-.81 8.437-2.052C23.609 17.474 24 13.452 24 11.874c0-2.848-.897-4.968-2.31-6.483Z" }) + ] + } + ); +}); + +exports.default = SiMazda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.d.ts new file mode 100644 index 000000000..47fc2dd8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#101010"; +declare const SiMazda: IconType; +export { SiMazda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.mjs new file mode 100644 index 000000000..5bb2b2bee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMazda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#101010"; +const SiMazda = React.forwardRef(function SiMazda2({ title = "Mazda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 12.876c-.036 0-.105-.046-.222-.26a7.531 7.531 0 00-1.975-2.353A8.255 8.255 0 007.7 9.065a17.945 17.945 0 00-.345-.136c-1.012-.4-2.061-.813-3.035-1.377A8.982 8.982 0 014 7.362c.194-.34.42-.665.67-.962a6.055 6.055 0 011.253-1.131 7.126 7.126 0 011.618-.806c1.218-.434 2.677-.647 4.458-.649 1.783.002 3.241.215 4.459.65a7.097 7.097 0 011.619.805c.471.319.892.699 1.253 1.13.25.298.475.623.67.963-.103.064-.212.129-.32.192-.976.564-2.023.977-3.037 1.376l-.345.136a8.26 8.26 0 00-2.1 1.198 7.519 7.519 0 00-1.975 2.354c-.117.213-.187.259-.224.259m0 7.072c-1.544-.002-2.798-.129-3.83-.387-1.013-.252-1.855-.64-2.576-1.188a5.792 5.792 0 01-1.392-1.537 7.607 7.607 0 01-.81-1.768 10.298 10.298 0 01-.467-2.983c0-.674.047-1.313.135-1.901 1.106.596 2.153.895 3.08 1.16l.215.06c1.29.371 2.314.857 3.135 1.488.475.368.89.793 1.23 1.264.369.508.663 1.088.877 1.725.096.289.2.468.403.468.207 0 .308-.18.405-.468a6.124 6.124 0 012.107-2.988c.82-.632 1.845-1.118 3.135-1.489l.216-.06c.926-.265 1.973-.564 3.078-1.16.09.589.136 1.227.136 1.9 0 .458-.046 1.664-.465 2.984a7.626 7.626 0 01-.809 1.768 5.789 5.789 0 01-1.396 1.537c-.723.548-1.565.936-2.574 1.188-1.035.258-2.288.385-3.833.387m9.692-14.556c-1.909-2.05-4.99-2.99-9.692-2.995-4.7.005-7.781.944-9.69 2.994C.89 6.913 0 9.018 0 11.874c0 1.579.39 5.6 3.564 7.676 1.9 1.242 4.354 2.046 8.435 2.052 4.083-.006 6.536-.81 8.437-2.052C23.609 17.474 24 13.452 24 11.874c0-2.848-.897-4.968-2.31-6.483Z" }) + ] + } + ); +}); + +export { SiMazda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.cjs new file mode 100644 index 000000000..83874a8b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMaze = React__namespace.forwardRef(function SiMaze2({ title = "Maze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.126 16.547c-1.5013-1.4881-1.5013-3.9009 0-5.389l4.0778-4.042c1.2692-1.258 3.205-1.4525 4.6803-.5836.4564.2687.4524.8852.077 1.2573-.3753.372-.988.34-1.4975.1923-.6524-.1891-1.386-.0287-1.9006.4813l-4.0777 4.0419a1.8935 1.8935 0 0 0 0 2.6945c.7506.744 1.9678.744 2.7184 0l8.1555-8.0836c1.5014-1.4882 3.9355-1.4882 5.437 0l4.0778 4.0418c1.5013 1.4881 1.5013 3.901 0 5.389-1.5014 1.4882-3.9356 1.4882-5.437 0l-1.3593-1.3472-1.699 1.684c-1.2692 1.258-3.205 1.4526-4.6804.5837-.4563-.2687-.4523-.8852-.077-1.2573.3754-.372.988-.34 1.4975-.1923.6524.1892 1.386.0287 1.9006-.4813l1.7476-1.7322c.724-.7175 1.8975-.7175 2.6214 0l1.4078 1.3954c.7507.744 1.9678.744 2.7186 0a1.8936 1.8936 0 0 0 0-2.6945l-4.0779-4.0419c-.7507-.744-1.9678-.744-2.7185 0L6.563 16.5471c-1.5014 1.4882-3.9356 1.4881-5.437 0" }) + ] + } + ); +}); + +exports.default = SiMaze; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.d.ts new file mode 100644 index 000000000..547503276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMaze: IconType; +export { SiMaze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.mjs new file mode 100644 index 000000000..2daa4be12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMaze.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMaze = React.forwardRef(function SiMaze2({ title = "Maze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.126 16.547c-1.5013-1.4881-1.5013-3.9009 0-5.389l4.0778-4.042c1.2692-1.258 3.205-1.4525 4.6803-.5836.4564.2687.4524.8852.077 1.2573-.3753.372-.988.34-1.4975.1923-.6524-.1891-1.386-.0287-1.9006.4813l-4.0777 4.0419a1.8935 1.8935 0 0 0 0 2.6945c.7506.744 1.9678.744 2.7184 0l8.1555-8.0836c1.5014-1.4882 3.9355-1.4882 5.437 0l4.0778 4.0418c1.5013 1.4881 1.5013 3.901 0 5.389-1.5014 1.4882-3.9356 1.4882-5.437 0l-1.3593-1.3472-1.699 1.684c-1.2692 1.258-3.205 1.4526-4.6804.5837-.4563-.2687-.4523-.8852-.077-1.2573.3754-.372.988-.34 1.4975-.1923.6524.1892 1.386.0287 1.9006-.4813l1.7476-1.7322c.724-.7175 1.8975-.7175 2.6214 0l1.4078 1.3954c.7507.744 1.9678.744 2.7186 0a1.8936 1.8936 0 0 0 0-2.6945l-4.0779-4.0419c-.7507-.744-1.9678-.744-2.7185 0L6.563 16.5471c-1.5014 1.4882-3.9356 1.4881-5.437 0" }) + ] + } + ); +}); + +export { SiMaze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.cjs new file mode 100644 index 000000000..dadc9816c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C01818"; +const SiMcafee = React__namespace.forwardRef(function SiMcafee2({ title = "McAfee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4.8233L1.5793 0v19.1767L12 24l10.4207-4.8233V0zm6.172 11.626l-6.143 2.8428-6.1438-2.8429V6.6894l6.1439 2.8418 6.1429-2.8418z" }) + ] + } + ); +}); + +exports.default = SiMcafee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.d.ts new file mode 100644 index 000000000..0ad9aa6dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C01818"; +declare const SiMcafee: IconType; +export { SiMcafee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.mjs new file mode 100644 index 000000000..5f747084f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMcafee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C01818"; +const SiMcafee = React.forwardRef(function SiMcafee2({ title = "McAfee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 4.8233L1.5793 0v19.1767L12 24l10.4207-4.8233V0zm6.172 11.626l-6.143 2.8428-6.1438-2.8429V6.6894l6.1439 2.8418 6.1429-2.8418z" }) + ] + } + ); +}); + +export { SiMcafee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.cjs new file mode 100644 index 000000000..4e4bb599a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBC817"; +const SiMcdonalds = React__namespace.forwardRef(function SiMcdonalds2({ title = "McDonalds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.243 3.006c2.066 0 3.742 8.714 3.742 19.478H24c0-11.588-3.042-20.968-6.766-20.968-2.127 0-4.007 2.81-5.248 7.227-1.241-4.416-3.121-7.227-5.231-7.227C3.031 1.516 0 10.888 0 22.476h3.014c0-10.763 1.658-19.47 3.724-19.47 2.066 0 3.741 8.05 3.741 17.98h2.997c0-9.93 1.684-17.98 3.75-17.98Z" }) + ] + } + ); +}); + +exports.default = SiMcdonalds; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.d.ts new file mode 100644 index 000000000..661a77cb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBC817"; +declare const SiMcdonalds: IconType; +export { SiMcdonalds as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.mjs new file mode 100644 index 000000000..97c0d5c3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMcdonalds.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBC817"; +const SiMcdonalds = React.forwardRef(function SiMcdonalds2({ title = "McDonalds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.243 3.006c2.066 0 3.742 8.714 3.742 19.478H24c0-11.588-3.042-20.968-6.766-20.968-2.127 0-4.007 2.81-5.248 7.227-1.241-4.416-3.121-7.227-5.231-7.227C3.031 1.516 0 10.888 0 22.476h3.014c0-10.763 1.658-19.47 3.724-19.47 2.066 0 3.741 8.05 3.741 17.98h2.997c0-9.93 1.684-17.98 3.75-17.98Z" }) + ] + } + ); +}); + +export { SiMcdonalds as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.cjs new file mode 100644 index 000000000..7f247422c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiMclaren = React__namespace.forwardRef(function SiMclaren2({ title = "McLaren", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.062 11.713c3.305-2.139 7.748-2.208 2.564 1.248l.082-.11c1.467-2.016-1.522-1.563-2.578-1.166l-.068.028zM6.967 13.236h1.399v.549H6.747c-.686 0-.987-.206-.987-.754v-.123c0-.466.274-.768.96-.768h1.646v.549H6.967a.248.248 0 0 0-.247.247v.069a.246.246 0 0 0 .247.231zM9.6 11.864v1.371h.823v.549h-1.92v-1.92H9.6zm-5.198.247c.191-.154.427-.241.672-.247h.549v1.92H4.525v-.96l-1.056.96H2.468v-.96l-1.221.96H0l2.18-1.646c.206-.151.343-.274.699-.274h.686v.96l.837-.713zm9.312.206a.316.316 0 0 1 .343-.316h1.303v.549h-.686v1.234h-.96v-1.467zm6.431-.316c.823 0 1.111.178 1.111.782v1.001h-.96v-.686a.411.411 0 0 0-.411-.411h-.411v1.097h-.96v-1.783h1.631zm-7.487 0c.631 0 .919.261.919.699v.411c0 .507-.288.672-.987.672h-1.083c-.398 0-.686-.041-.837-.178a.495.495 0 0 1-.11-.315v-.069c0-.274.165-.535.686-.535h1.234c0-.123.014-.137-.137-.137h-1.646V12h1.961zm-.179 1.166v-.069h-.754a.07.07 0 0 0 0 .138h.686a.068.068 0 0 0 .068-.069zm5.02-1.166c.727 0 .878.219.878.521v.069c0 .329-.261.507-.686.507h-1.234c0 .123.123.137.274.137h1.508v.549H16.36c-.59 0-.864-.247-.864-.699v-.315c0-.521.288-.768.946-.768h1.057zm-.151.686a.07.07 0 0 0 0-.138h-.823a.07.07 0 0 0-.069.069v.069h.892z" }) + ] + } + ); +}); + +exports.default = SiMclaren; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.d.ts new file mode 100644 index 000000000..1027fd85c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiMclaren: IconType; +export { SiMclaren as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.mjs new file mode 100644 index 000000000..a31cb978d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMclaren.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiMclaren = React.forwardRef(function SiMclaren2({ title = "McLaren", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.062 11.713c3.305-2.139 7.748-2.208 2.564 1.248l.082-.11c1.467-2.016-1.522-1.563-2.578-1.166l-.068.028zM6.967 13.236h1.399v.549H6.747c-.686 0-.987-.206-.987-.754v-.123c0-.466.274-.768.96-.768h1.646v.549H6.967a.248.248 0 0 0-.247.247v.069a.246.246 0 0 0 .247.231zM9.6 11.864v1.371h.823v.549h-1.92v-1.92H9.6zm-5.198.247c.191-.154.427-.241.672-.247h.549v1.92H4.525v-.96l-1.056.96H2.468v-.96l-1.221.96H0l2.18-1.646c.206-.151.343-.274.699-.274h.686v.96l.837-.713zm9.312.206a.316.316 0 0 1 .343-.316h1.303v.549h-.686v1.234h-.96v-1.467zm6.431-.316c.823 0 1.111.178 1.111.782v1.001h-.96v-.686a.411.411 0 0 0-.411-.411h-.411v1.097h-.96v-1.783h1.631zm-7.487 0c.631 0 .919.261.919.699v.411c0 .507-.288.672-.987.672h-1.083c-.398 0-.686-.041-.837-.178a.495.495 0 0 1-.11-.315v-.069c0-.274.165-.535.686-.535h1.234c0-.123.014-.137-.137-.137h-1.646V12h1.961zm-.179 1.166v-.069h-.754a.07.07 0 0 0 0 .138h.686a.068.068 0 0 0 .068-.069zm5.02-1.166c.727 0 .878.219.878.521v.069c0 .329-.261.507-.686.507h-1.234c0 .123.123.137.274.137h1.508v.549H16.36c-.59 0-.864-.247-.864-.699v-.315c0-.521.288-.768.946-.768h1.057zm-.151.686a.07.07 0 0 0 0-.138h-.823a.07.07 0 0 0-.069.069v.069h.892z" }) + ] + } + ); +}); + +export { SiMclaren as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.cjs new file mode 100644 index 000000000..d771ea2ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4284CA"; +const SiMdblist = React__namespace.forwardRef(function SiMdblist2({ title = "MDBList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.928.029A2.47 2.47 0 0 0 .093 1.673c-.085.248-.09.629-.09 10.33s.005 10.08.09 10.33a2.51 2.51 0 0 0 1.512 1.558l.276.108h20.237l.277-.108a2.51 2.51 0 0 0 1.512-1.559c.085-.25.09-.63.09-10.33s-.005-10.08-.09-10.33A2.51 2.51 0 0 0 22.395.115l-.277-.109L12.117 0C6.615-.004 2.032.011 1.929.029m7.48 8.067 2.123 2.004v1.54c0 .897-.02 1.536-.043 1.527s-.92-.845-1.995-1.86c-1.071-1.01-1.962-1.84-1.977-1.84s-.024 1.91-.024 4.248v4.25H4.911V6.085h1.188l1.183.006zm9.729 3.93v5.94h-2.63l-.01-4.25-.013-4.25-1.907 1.795a367 367 0 0 1-1.98 1.864c-.076.056-.08-.047-.08-1.489v-1.555l2.127-1.995 2.122-1.995 1.187-.005h1.184z" }) + ] + } + ); +}); + +exports.default = SiMdblist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.d.ts new file mode 100644 index 000000000..2f8de3bb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4284CA"; +declare const SiMdblist: IconType; +export { SiMdblist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.mjs new file mode 100644 index 000000000..a14638129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdblist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4284CA"; +const SiMdblist = React.forwardRef(function SiMdblist2({ title = "MDBList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.928.029A2.47 2.47 0 0 0 .093 1.673c-.085.248-.09.629-.09 10.33s.005 10.08.09 10.33a2.51 2.51 0 0 0 1.512 1.558l.276.108h20.237l.277-.108a2.51 2.51 0 0 0 1.512-1.559c.085-.25.09-.63.09-10.33s-.005-10.08-.09-10.33A2.51 2.51 0 0 0 22.395.115l-.277-.109L12.117 0C6.615-.004 2.032.011 1.929.029m7.48 8.067 2.123 2.004v1.54c0 .897-.02 1.536-.043 1.527s-.92-.845-1.995-1.86c-1.071-1.01-1.962-1.84-1.977-1.84s-.024 1.91-.024 4.248v4.25H4.911V6.085h1.188l1.183.006zm9.729 3.93v5.94h-2.63l-.01-4.25-.013-4.25-1.907 1.795a367 367 0 0 1-1.98 1.864c-.076.056-.08-.047-.08-1.489v-1.555l2.127-1.995 2.122-1.995 1.187-.005h1.184z" }) + ] + } + ); +}); + +export { SiMdblist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.cjs new file mode 100644 index 000000000..9839d9396 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMdbook = React__namespace.forwardRef(function SiMdbook2({ title = "mdBook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.77 5.343c.023.337 0 .613-.073.817l-4.314 14.227c-.072.252-.24.445-.504.6a1.67 1.67 0 0 1-.805.23H3.772c-1.154 0-1.839-.337-2.079-1.01-.096-.264-.096-.469.012-.625.108-.144.288-.216.553-.216h12.52c.89 0 1.514-.168 1.85-.493.337-.324.686-1.07 1.034-2.21l3.954-13.05c.216-.71.12-1.334-.265-1.875-.384-.54-.937-.817-1.646-.817H8.735c-.12 0-.373.048-.734.132l.012-.048A2.458 2.458 0 0 0 7.33.933a.979.979 0 0 0-.517.168 1.794 1.794 0 0 0-.385.337c-.096.12-.18.264-.276.456a5.76 5.76 0 0 0-.228.517 7.95 7.95 0 0 1-.217.505c-.084.18-.156.324-.24.444-.06.073-.144.18-.24.3-.096.121-.193.241-.265.337a.776.776 0 0 0-.132.265c-.024.084-.012.216.024.384.036.168.048.289.048.373-.036.36-.168.829-.396 1.394-.229.564-.433.973-.613 1.213a5.201 5.201 0 0 1-.312.325c-.169.168-.277.312-.313.444-.036.048-.036.18-.012.409.036.216.048.372.036.456-.036.325-.156.757-.36 1.298a9.47 9.47 0 0 1-.601 1.322c-.024.06-.108.168-.24.336-.133.168-.217.3-.24.409-.025.072-.013.216.011.408.024.193.024.337-.012.433-.072.36-.216.805-.432 1.322-.217.516-.433.949-.65 1.321-.06.097-.131.205-.24.337-.096.132-.18.24-.24.336a.927.927 0 0 0-.12.3.53.53 0 0 0 .048.277c.036.132.048.228.048.313-.012.132-.024.312-.06.528-.024.216-.048.349-.048.385-.216.576-.204 1.19.024 1.826.264.745.745 1.382 1.43 1.899.685.516 1.406.769 2.139.769H17.05c.625 0 1.214-.205 1.767-.625.553-.42.925-.937 1.105-1.55l3.966-13.05c.216-.696.12-1.31-.265-1.862-.204-.3-.48-.505-.853-.649ZM7.16 15.677l1.707-5.143h1.297c.457 0 3.46-.204 3.052 2.103-.408 2.307-2.259 3.028-4.422 3.052-2.162.024-1.634-.012-1.634-.012zm2.283-.721c.565-.012 2.271-.349 2.656-2.055.384-1.706-1.382-1.61-1.382-1.61h-1.07l-1.225 3.665c.012.012.469.012 1.021 0zm-.396-5.78 1.646-5.107h1.178l.096 4.086 2.835-4.086h1.19l-1.634 5.107h-.853l1.502-4.253-2.944 4.253h-.817l-.096-4.205-1.298 4.205z" }) + ] + } + ); +}); + +exports.default = SiMdbook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.d.ts new file mode 100644 index 000000000..8b428753d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMdbook: IconType; +export { SiMdbook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.mjs new file mode 100644 index 000000000..fc6c59eed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdbook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMdbook = React.forwardRef(function SiMdbook2({ title = "mdBook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.77 5.343c.023.337 0 .613-.073.817l-4.314 14.227c-.072.252-.24.445-.504.6a1.67 1.67 0 0 1-.805.23H3.772c-1.154 0-1.839-.337-2.079-1.01-.096-.264-.096-.469.012-.625.108-.144.288-.216.553-.216h12.52c.89 0 1.514-.168 1.85-.493.337-.324.686-1.07 1.034-2.21l3.954-13.05c.216-.71.12-1.334-.265-1.875-.384-.54-.937-.817-1.646-.817H8.735c-.12 0-.373.048-.734.132l.012-.048A2.458 2.458 0 0 0 7.33.933a.979.979 0 0 0-.517.168 1.794 1.794 0 0 0-.385.337c-.096.12-.18.264-.276.456a5.76 5.76 0 0 0-.228.517 7.95 7.95 0 0 1-.217.505c-.084.18-.156.324-.24.444-.06.073-.144.18-.24.3-.096.121-.193.241-.265.337a.776.776 0 0 0-.132.265c-.024.084-.012.216.024.384.036.168.048.289.048.373-.036.36-.168.829-.396 1.394-.229.564-.433.973-.613 1.213a5.201 5.201 0 0 1-.312.325c-.169.168-.277.312-.313.444-.036.048-.036.18-.012.409.036.216.048.372.036.456-.036.325-.156.757-.36 1.298a9.47 9.47 0 0 1-.601 1.322c-.024.06-.108.168-.24.336-.133.168-.217.3-.24.409-.025.072-.013.216.011.408.024.193.024.337-.012.433-.072.36-.216.805-.432 1.322-.217.516-.433.949-.65 1.321-.06.097-.131.205-.24.337-.096.132-.18.24-.24.336a.927.927 0 0 0-.12.3.53.53 0 0 0 .048.277c.036.132.048.228.048.313-.012.132-.024.312-.06.528-.024.216-.048.349-.048.385-.216.576-.204 1.19.024 1.826.264.745.745 1.382 1.43 1.899.685.516 1.406.769 2.139.769H17.05c.625 0 1.214-.205 1.767-.625.553-.42.925-.937 1.105-1.55l3.966-13.05c.216-.696.12-1.31-.265-1.862-.204-.3-.48-.505-.853-.649ZM7.16 15.677l1.707-5.143h1.297c.457 0 3.46-.204 3.052 2.103-.408 2.307-2.259 3.028-4.422 3.052-2.162.024-1.634-.012-1.634-.012zm2.283-.721c.565-.012 2.271-.349 2.656-2.055.384-1.706-1.382-1.61-1.382-1.61h-1.07l-1.225 3.665c.012.012.469.012 1.021 0zm-.396-5.78 1.646-5.107h1.178l.096 4.086 2.835-4.086h1.19l-1.634 5.107h-.853l1.502-4.253-2.944 4.253h-.817l-.096-4.205-1.298 4.205z" }) + ] + } + ); +}); + +export { SiMdbook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.cjs new file mode 100644 index 000000000..eb53f74d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMdnwebdocs = React__namespace.forwardRef(function SiMdnwebdocs2({ title = "MDN Web Docs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.538 1.1-6.745 21.8h-2.77L18.77 1.1ZM24 1.1v21.8h-2.462V1.1Zm-12 0v21.8H9.538V1.1Zm-2.462 0L2.77 22.9H0L6.746 1.1Z" }) + ] + } + ); +}); + +exports.default = SiMdnwebdocs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.d.ts new file mode 100644 index 000000000..747750ea7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMdnwebdocs: IconType; +export { SiMdnwebdocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.mjs new file mode 100644 index 000000000..db97d6bd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdnwebdocs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMdnwebdocs = React.forwardRef(function SiMdnwebdocs2({ title = "MDN Web Docs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.538 1.1-6.745 21.8h-2.77L18.77 1.1ZM24 1.1v21.8h-2.462V1.1Zm-12 0v21.8H9.538V1.1Zm-2.462 0L2.77 22.9H0L6.746 1.1Z" }) + ] + } + ); +}); + +export { SiMdnwebdocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.cjs new file mode 100644 index 000000000..e7c6c0f1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1B1F24"; +const SiMdx = React__namespace.forwardRef(function SiMdx2({ title = "MDX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.79 7.12h22.42c.436 0 .79.355.79.792v8.176c0 .436-.354.79-.79.79H.79a.79.79 0 0 1-.79-.79V7.912a.79.79 0 0 1 .79-.791V7.12Zm2.507 7.605v-3.122l1.89 1.89L7.12 11.56v3.122h1.055v-5.67l-2.99 2.99L2.24 9.056v5.67h1.055v-.001Zm8.44-1.845-1.474-1.473-.746.746 2.747 2.747 2.745-2.747-.746-.746-1.473 1.473v-4h-1.054v4Zm10.041.987-2.175-2.175 2.22-2.22-.746-.746-2.22 2.22-2.22-2.22-.747.746 2.22 2.22-2.176 2.177.746.746 2.177-2.177 2.176 2.175.745-.746Z" }) + ] + } + ); +}); + +exports.default = SiMdx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.d.ts new file mode 100644 index 000000000..8ffd5ad2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1B1F24"; +declare const SiMdx: IconType; +export { SiMdx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.mjs new file mode 100644 index 000000000..0192e0186 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMdx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1B1F24"; +const SiMdx = React.forwardRef(function SiMdx2({ title = "MDX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.79 7.12h22.42c.436 0 .79.355.79.792v8.176c0 .436-.354.79-.79.79H.79a.79.79 0 0 1-.79-.79V7.912a.79.79 0 0 1 .79-.791V7.12Zm2.507 7.605v-3.122l1.89 1.89L7.12 11.56v3.122h1.055v-5.67l-2.99 2.99L2.24 9.056v5.67h1.055v-.001Zm8.44-1.845-1.474-1.473-.746.746 2.747 2.747 2.745-2.747-.746-.746-1.473 1.473v-4h-1.054v4Zm10.041.987-2.175-2.175 2.22-2.22-.746-.746-2.22 2.22-2.22-2.22-.747.746 2.22 2.22-2.176 2.177.746.746 2.177-2.177 2.176 2.175.745-.746Z" }) + ] + } + ); +}); + +export { SiMdx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.cjs new file mode 100644 index 000000000..b77dcb422 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E58325"; +const SiMealie = React__namespace.forwardRef(function SiMealie2({ title = "Mealie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.619 13.59 1.444 8.427c-1.925-1.939-1.925-5.063 0-6.989l8.666 8.642-3.491 3.51m6.551-.42 8.51 8.49-1.76 1.74-8.48-8.48-8.502 8.48-1.741-1.74L13.12 9.739l-.25-.272a2.448 2.448 0 0 1 0-3.472L18.23.6l1.14 1.135-3.99 4.024 1.18 1.161 3.99-4.012 1.15 1.136-4.01 4 1.15 1.189 4.03-4.017L24 6.377l-5.4 5.353c-.95.96-2.51.96-3.46 0l-.27-.25z" }) + ] + } + ); +}); + +exports.default = SiMealie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.d.ts new file mode 100644 index 000000000..0455ce31b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E58325"; +declare const SiMealie: IconType; +export { SiMealie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.mjs new file mode 100644 index 000000000..faf9de854 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMealie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E58325"; +const SiMealie = React.forwardRef(function SiMealie2({ title = "Mealie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.619 13.59 1.444 8.427c-1.925-1.939-1.925-5.063 0-6.989l8.666 8.642-3.491 3.51m6.551-.42 8.51 8.49-1.76 1.74-8.48-8.48-8.502 8.48-1.741-1.74L13.12 9.739l-.25-.272a2.448 2.448 0 0 1 0-3.472L18.23.6l1.14 1.135-3.99 4.024 1.18 1.161 3.99-4.012 1.15 1.136-4.01 4 1.15 1.189 4.03-4.017L24 6.377l-5.4 5.353c-.95.96-2.51.96-3.46 0l-.27-.25z" }) + ] + } + ); +}); + +export { SiMealie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.cjs new file mode 100644 index 000000000..4d1ef201b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1299F3"; +const SiMediafire = React__namespace.forwardRef(function SiMediafire2({ title = "MediaFire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.13 7.171c-.496.42 2.943-.458 2.6 1.239-.332 1.633-3.62-.343-7.223-.176-1.594.073-3.054.53-3.985 1.668.973-1.108 2.901-.844 2.398-.081-1.172 1.776-3.376.497-4.92 3.975.185-.4.685-1.196 2.843-1.526 1.586-.242 4.214-.016 5.054 1.297.924 1.444-3.759 1.28-1.167 1.573 3.593.406 6.299 3.31 9.813 3.311 4.55 0 7.422-2.324 7.457-6.146.063-6.923-9.101-8.318-12.87-5.134zm6.768 7.554c-1.195-.033-2.404-.512-3.364-.98-2.365-1.155-3.338-1.553-3.338-1.608 0-.067 1.42.484 3.813-.789 1.383-.735 1.432-1.377 2.89-1.505 1.73-.152 2.962 1.13 2.962 2.478 0 1.349-1.222 2.453-2.963 2.404z" }) + ] + } + ); +}); + +exports.default = SiMediafire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.d.ts new file mode 100644 index 000000000..acb19d51d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1299F3"; +declare const SiMediafire: IconType; +export { SiMediafire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.mjs new file mode 100644 index 000000000..ab1793260 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediafire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1299F3"; +const SiMediafire = React.forwardRef(function SiMediafire2({ title = "MediaFire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.13 7.171c-.496.42 2.943-.458 2.6 1.239-.332 1.633-3.62-.343-7.223-.176-1.594.073-3.054.53-3.985 1.668.973-1.108 2.901-.844 2.398-.081-1.172 1.776-3.376.497-4.92 3.975.185-.4.685-1.196 2.843-1.526 1.586-.242 4.214-.016 5.054 1.297.924 1.444-3.759 1.28-1.167 1.573 3.593.406 6.299 3.31 9.813 3.311 4.55 0 7.422-2.324 7.457-6.146.063-6.923-9.101-8.318-12.87-5.134zm6.768 7.554c-1.195-.033-2.404-.512-3.364-.98-2.365-1.155-3.338-1.553-3.338-1.608 0-.067 1.42.484 3.813-.789 1.383-.735 1.432-1.377 2.89-1.505 1.73-.152 2.962 1.13 2.962 2.478 0 1.349-1.222 2.453-2.963 2.404z" }) + ] + } + ); +}); + +export { SiMediafire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.cjs new file mode 100644 index 000000000..47012b184 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DF0000"; +const SiMediamarkt = React__namespace.forwardRef(function SiMediamarkt2({ title = "MediaMarkt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.829 22.075c-.064.192 2.63-2.76 2.63-2.76-.256-2.759-1.54-5.775-1.54-5.775-2.117-4.428-6.801-5.904-9.56-3.53-.129.065-.322.129-.45.193 2.118-2.952 6.93-2.695 10.075.963 0 0 1.412 1.732 2.438 4.363.257-.898.45-1.86.514-2.823-1.669-2.31-3.594-3.658-3.594-3.658-3.978-2.695-8.663-1.732-9.946 1.604-.129.193-.257.385-.321.578.385-3.594 4.684-5.84 9.176-4.3 0 0 2.182.835 4.428 2.631 0-.128-.064-.256-.128-.449-.257-.962-.578-1.86-1.027-2.695-2.567-1.155-4.877-1.347-4.877-1.347-4.877-.321-8.535 3.08-7.765 6.802v.513c-1.668-3.337.963-7.636 5.776-8.535 0 0 2.246-.385 5.005 0a11.844 11.844 0 0 0-2.374-1.989c-2.76.32-4.813 1.283-4.813 1.283-4.428 2.182-5.84 7.06-3.401 9.819.064.192.192.32.32.449-3.08-2.054-2.887-7.123.77-10.396 0 0 1.733-1.476 4.3-2.503C14.375.193 13.283 0 12.193 0 10.01 1.668 8.79 3.465 8.79 3.465c-2.759 4.171-1.604 9.113 1.99 10.268h.064c.128.064.192.128.32.192-3.657-.192-6.031-4.684-4.427-9.369 0 0 .77-2.053 2.374-4.171-.962.257-1.796.578-2.63 1.09-1.027 2.568-1.284 4.75-1.284 4.75-.321 4.94 3.016 8.599 6.61 7.893H12c.128 0 .257 0 .385-.065-3.273 1.669-7.444-1.026-8.406-5.903 0 0-.385-2.182 0-4.941-.77.77-1.476 1.604-2.054 2.63.321 2.696 1.284 4.685 1.284 4.685 2.181 4.492 6.994 5.968 9.754 3.401l.064-.064c.128-.064.256-.128.32-.257-1.989 3.145-6.994 3.016-10.203-.77 0 0-1.604-2.117-2.438-4.556 0-.064-.642 3.209-.642 3.209 1.604 1.925 3.658 3.529 3.658 3.529 3.979 2.695 8.663 1.668 9.946-1.668a1.39 1.39 0 0 0 .321-.514c-.385 3.594-4.684 5.84-9.176 4.236 0 0-1.99-.77-4.107-2.439 0 .064.064.193.064.257a15.14 15.14 0 0 0 1.091 2.823c2.438 1.027 4.62 1.22 4.62 1.22 4.877.32 8.47-3.08 7.765-6.674v-.514c1.54 3.337-1.09 7.508-5.84 8.47 0 0-2.117.386-4.748 0a11.229 11.229 0 0 0 2.117 1.798c2.76-.321 4.813-1.284 4.813-1.284 4.3-2.117 5.776-6.802 3.53-9.625-.065-.193-.193-.385-.321-.578 2.952 2.118 2.76 7.059-.899 10.267 0 0-1.796 1.476-4.427 2.567 1.026.321 2.117.578 3.208.642 2.246-1.733 3.594-3.658 3.594-3.658 2.76-4.17 1.604-9.112-1.925-10.267a1.04 1.04 0 0 0-.45-.257c3.722.193 6.032 4.685 4.428 9.37 0 0-.77 2.245-2.567 4.491.129 0 .257-.064.45-.128a17.58 17.58 0 0 0 2.566-.963c1.091-2.63 1.284-4.94 1.284-4.94.32-4.878-2.888-8.472-6.417-7.958-.129 0-.321-.064-.45-.064h-.128c3.273-1.412 7.316 1.219 8.214 5.968 0 0 .578 2.246.128 4.94-.064.386-.256.963-.577 1.54z" }) + ] + } + ); +}); + +exports.default = SiMediamarkt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.d.ts new file mode 100644 index 000000000..51bc0bb48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DF0000"; +declare const SiMediamarkt: IconType; +export { SiMediamarkt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.mjs new file mode 100644 index 000000000..9cbe618e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediamarkt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DF0000"; +const SiMediamarkt = React.forwardRef(function SiMediamarkt2({ title = "MediaMarkt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.829 22.075c-.064.192 2.63-2.76 2.63-2.76-.256-2.759-1.54-5.775-1.54-5.775-2.117-4.428-6.801-5.904-9.56-3.53-.129.065-.322.129-.45.193 2.118-2.952 6.93-2.695 10.075.963 0 0 1.412 1.732 2.438 4.363.257-.898.45-1.86.514-2.823-1.669-2.31-3.594-3.658-3.594-3.658-3.978-2.695-8.663-1.732-9.946 1.604-.129.193-.257.385-.321.578.385-3.594 4.684-5.84 9.176-4.3 0 0 2.182.835 4.428 2.631 0-.128-.064-.256-.128-.449-.257-.962-.578-1.86-1.027-2.695-2.567-1.155-4.877-1.347-4.877-1.347-4.877-.321-8.535 3.08-7.765 6.802v.513c-1.668-3.337.963-7.636 5.776-8.535 0 0 2.246-.385 5.005 0a11.844 11.844 0 0 0-2.374-1.989c-2.76.32-4.813 1.283-4.813 1.283-4.428 2.182-5.84 7.06-3.401 9.819.064.192.192.32.32.449-3.08-2.054-2.887-7.123.77-10.396 0 0 1.733-1.476 4.3-2.503C14.375.193 13.283 0 12.193 0 10.01 1.668 8.79 3.465 8.79 3.465c-2.759 4.171-1.604 9.113 1.99 10.268h.064c.128.064.192.128.32.192-3.657-.192-6.031-4.684-4.427-9.369 0 0 .77-2.053 2.374-4.171-.962.257-1.796.578-2.63 1.09-1.027 2.568-1.284 4.75-1.284 4.75-.321 4.94 3.016 8.599 6.61 7.893H12c.128 0 .257 0 .385-.065-3.273 1.669-7.444-1.026-8.406-5.903 0 0-.385-2.182 0-4.941-.77.77-1.476 1.604-2.054 2.63.321 2.696 1.284 4.685 1.284 4.685 2.181 4.492 6.994 5.968 9.754 3.401l.064-.064c.128-.064.256-.128.32-.257-1.989 3.145-6.994 3.016-10.203-.77 0 0-1.604-2.117-2.438-4.556 0-.064-.642 3.209-.642 3.209 1.604 1.925 3.658 3.529 3.658 3.529 3.979 2.695 8.663 1.668 9.946-1.668a1.39 1.39 0 0 0 .321-.514c-.385 3.594-4.684 5.84-9.176 4.236 0 0-1.99-.77-4.107-2.439 0 .064.064.193.064.257a15.14 15.14 0 0 0 1.091 2.823c2.438 1.027 4.62 1.22 4.62 1.22 4.877.32 8.47-3.08 7.765-6.674v-.514c1.54 3.337-1.09 7.508-5.84 8.47 0 0-2.117.386-4.748 0a11.229 11.229 0 0 0 2.117 1.798c2.76-.321 4.813-1.284 4.813-1.284 4.3-2.117 5.776-6.802 3.53-9.625-.065-.193-.193-.385-.321-.578 2.952 2.118 2.76 7.059-.899 10.267 0 0-1.796 1.476-4.427 2.567 1.026.321 2.117.578 3.208.642 2.246-1.733 3.594-3.658 3.594-3.658 2.76-4.17 1.604-9.112-1.925-10.267a1.04 1.04 0 0 0-.45-.257c3.722.193 6.032 4.685 4.428 9.37 0 0-.77 2.245-2.567 4.491.129 0 .257-.064.45-.128a17.58 17.58 0 0 0 2.566-.963c1.091-2.63 1.284-4.94 1.284-4.94.32-4.878-2.888-8.472-6.417-7.958-.129 0-.321-.064-.45-.064h-.128c3.273-1.412 7.316 1.219 8.214 5.968 0 0 .578 2.246.128 4.94-.064.386-.256.963-.577 1.54z" }) + ] + } + ); +}); + +export { SiMediamarkt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.cjs new file mode 100644 index 000000000..fdfa8fd0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0097A7"; +const SiMediapipe = React__namespace.forwardRef(function SiMediapipe2({ title = "MediaPipe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.182 0C1 0 .037.94.002 2.114L0 2.182v6.545a2.182 2.182 0 0 0 4.364 0V2.182A2.182 2.182 0 0 0 2.182 0Zm6.545 0c-1.182 0-2.145.94-2.18 2.114l-.002.068v13.09a2.182 2.182 0 0 0 4.364 0V2.183A2.182 2.182 0 0 0 8.727 0Zm6.546 0a2.182 2.182 0 0 0-2.182 2.182 2.182 2.182 0 0 0 2.182 2.182 2.182 2.182 0 0 0 2.182-2.182A2.182 2.182 0 0 0 15.273 0Zm6.545 0c-1.182 0-2.145.94-2.18 2.114l-.002.068v19.636a2.182 2.182 0 0 0 4.364 0V2.182A2.182 2.182 0 0 0 21.818 0Zm-6.545 6.545c-1.183 0-2.145.94-2.181 2.114l-.001.068v13.091a2.182 2.182 0 0 0 4.364 0V8.728a2.182 2.182 0 0 0-2.182-2.183zM2.182 13.091c-1.182 0-2.145.94-2.18 2.114L0 15.273v6.545a2.182 2.182 0 0 0 4.364 0v-6.545a2.182 2.182 0 0 0-2.182-2.182zm6.545 6.545a2.182 2.182 0 0 0-2.182 2.182A2.182 2.182 0 0 0 8.727 24a2.182 2.182 0 0 0 2.182-2.182 2.182 2.182 0 0 0-2.182-2.182Z" }) + ] + } + ); +}); + +exports.default = SiMediapipe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.d.ts new file mode 100644 index 000000000..b866b18c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0097A7"; +declare const SiMediapipe: IconType; +export { SiMediapipe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.mjs new file mode 100644 index 000000000..f3fc4e19b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediapipe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0097A7"; +const SiMediapipe = React.forwardRef(function SiMediapipe2({ title = "MediaPipe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.182 0C1 0 .037.94.002 2.114L0 2.182v6.545a2.182 2.182 0 0 0 4.364 0V2.182A2.182 2.182 0 0 0 2.182 0Zm6.545 0c-1.182 0-2.145.94-2.18 2.114l-.002.068v13.09a2.182 2.182 0 0 0 4.364 0V2.183A2.182 2.182 0 0 0 8.727 0Zm6.546 0a2.182 2.182 0 0 0-2.182 2.182 2.182 2.182 0 0 0 2.182 2.182 2.182 2.182 0 0 0 2.182-2.182A2.182 2.182 0 0 0 15.273 0Zm6.545 0c-1.182 0-2.145.94-2.18 2.114l-.002.068v19.636a2.182 2.182 0 0 0 4.364 0V2.182A2.182 2.182 0 0 0 21.818 0Zm-6.545 6.545c-1.183 0-2.145.94-2.181 2.114l-.001.068v13.091a2.182 2.182 0 0 0 4.364 0V8.728a2.182 2.182 0 0 0-2.182-2.183zM2.182 13.091c-1.182 0-2.145.94-2.18 2.114L0 15.273v6.545a2.182 2.182 0 0 0 4.364 0v-6.545a2.182 2.182 0 0 0-2.182-2.182zm6.545 6.545a2.182 2.182 0 0 0-2.182 2.182A2.182 2.182 0 0 0 8.727 24a2.182 2.182 0 0 0 2.182-2.182 2.182 2.182 0 0 0-2.182-2.182Z" }) + ] + } + ); +}); + +export { SiMediapipe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.cjs new file mode 100644 index 000000000..b84ebde4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC9430"; +const SiMediatek = React__namespace.forwardRef(function SiMediatek2({ title = "MediaTek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.863 8.996c-.296 0-.664.21-.815.467L.064 14.537c-.15.257-.029.467.267.467h19.805c.297 0 .665-.21.816-.467l2.983-5.074c.15-.257.03-.467-.268-.467zm3.41 1.975h1.09l-.232.402h-.776c-.238 0-.312.093-.312.338v.807h1.37l-.233.402H6.502v-1.197c0-.589.307-.752.771-.752zm1.444 0h.937c.703 0 1.002.27 1.002.959 0 .73-.301.99-.976.99h-.963zm7.832 0h1.09l-.233.402h-.775c-.239 0-.313.093-.313.338-.004.264-.002.539-.002.807h1.372l-.233.402h-1.678v-1.197c0-.589.308-.752.772-.752zm-11.567.004v.986l.569-.984.65-.002v1.941h-.547v-1.191l-.672 1.191h-.546v-1.191l-.688 1.19h-.535l1.121-1.938zm5.98 0h.546v1.941h-.545zm1.798 0h.781v1.941h-.553v-1.383l-.797 1.383h-.552zm1.256 0h1.714l-.232.404h-.504v1.537h-.533v-1.537h-.68zm3.873 0h.547v1.941h-.547zm1.345 0h.545l-.558.968-.002.004h.002l.558.969h-.545l-.56-.97zm-9.994.398v1.145h.297c.432 0 .567-.104.567-.586 0-.483-.135-.559-.567-.559zm-1.847.416h.87l-.185.318h-.86zm9.255 0h.872l-.186.318h-.86Z" }) + ] + } + ); +}); + +exports.default = SiMediatek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.d.ts new file mode 100644 index 000000000..daad3b699 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC9430"; +declare const SiMediatek: IconType; +export { SiMediatek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.mjs new file mode 100644 index 000000000..c33e2c09c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMediatek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC9430"; +const SiMediatek = React.forwardRef(function SiMediatek2({ title = "MediaTek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.863 8.996c-.296 0-.664.21-.815.467L.064 14.537c-.15.257-.029.467.267.467h19.805c.297 0 .665-.21.816-.467l2.983-5.074c.15-.257.03-.467-.268-.467zm3.41 1.975h1.09l-.232.402h-.776c-.238 0-.312.093-.312.338v.807h1.37l-.233.402H6.502v-1.197c0-.589.307-.752.771-.752zm1.444 0h.937c.703 0 1.002.27 1.002.959 0 .73-.301.99-.976.99h-.963zm7.832 0h1.09l-.233.402h-.775c-.239 0-.313.093-.313.338-.004.264-.002.539-.002.807h1.372l-.233.402h-1.678v-1.197c0-.589.308-.752.772-.752zm-11.567.004v.986l.569-.984.65-.002v1.941h-.547v-1.191l-.672 1.191h-.546v-1.191l-.688 1.19h-.535l1.121-1.938zm5.98 0h.546v1.941h-.545zm1.798 0h.781v1.941h-.553v-1.383l-.797 1.383h-.552zm1.256 0h1.714l-.232.404h-.504v1.537h-.533v-1.537h-.68zm3.873 0h.547v1.941h-.547zm1.345 0h.545l-.558.968-.002.004h.002l.558.969h-.545l-.56-.97zm-9.994.398v1.145h.297c.432 0 .567-.104.567-.586 0-.483-.135-.559-.567-.559zm-1.847.416h.87l-.185.318h-.86zm9.255 0h.872l-.186.318h-.86Z" }) + ] + } + ); +}); + +export { SiMediatek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.cjs new file mode 100644 index 000000000..145e5efff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00DBDE"; +const SiMedibangpaint = React__namespace.forwardRef(function SiMedibangpaint2({ title = "MediBang Paint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.516 0H6.478L4.417.164a5.158 5.158 0 0 0-3.184 1.827 5.479 5.479 0 0 0-.981 2.06C-.068 5.336.015 6.992.015 8.548v7.284c0 2.377.038 4.504 1.007 5.878a5.153 5.153 0 0 0 2.435 1.873c1.232.332 2.509.467 3.783.401h6.967c.622 0 1.25.007 1.87.007 2.149 0 4.19-.092 5.504-.921a5.073 5.073 0 0 0 2.013-2.53c.459-1.308.398-3.127.398-4.871V9.415c0-3.264.115-5.748-1.335-7.565C21.208.033 18.727 0 15.516 0Zm0 .327a23.237 23.237 0 0 1 4.167.237 4.316 4.316 0 0 1 2.718 1.49 5.645 5.645 0 0 1 1.108 2.823c.143 1.284.195 2.576.156 3.867v7.475c.005 1.52.011 3.092-.382 4.212a4.724 4.724 0 0 1-1.878 2.36 5.749 5.749 0 0 1-2.307.724 23.456 23.456 0 0 1-3.021.147l-1.87-.008H7.241a11.983 11.983 0 0 1-3.675-.381 4.828 4.828 0 0 1-2.276-1.754 5.279 5.279 0 0 1-.81-2.414 26.103 26.103 0 0 1-.137-3.272V8.548c0-.268 0-.545-.005-.812A15.618 15.618 0 0 1 .567 4.13a5.19 5.19 0 0 1 .927-1.94A4.833 4.833 0 0 1 4.464.491L5.852.382l.639-.055h9.025Zm2.147 8.845-.174-.286-.26-.357a7.147 7.147 0 0 0-.267-.331c-.029-.034-.055-.061-.085-.094.362 7.124-6.189 10.879-10.683 7.917a6.694 6.694 0 0 0 5.716 3.224c3.665 0 6.68-3.015 6.68-6.679 0-1.194-.32-2.366-.927-3.394ZM5.674 14.978c.081.207.636.521.795.626 4.195 2.764 10.247-.825 9.908-7.474-.007-.148-.006-.538-.089-.61a7.696 7.696 0 0 0-1.44-.995c-1.103 3.961-6.324 6.303-9.404 4.362a6.615 6.615 0 0 0 .23 4.091Zm-.075-4.598c.033.033.07.061.111.084 1.117.704 2.547.769 3.922.385 2.116-.591 4.119-2.248 4.735-4.458.014-.05.039-.156.028-.165a3.428 3.428 0 0 1-.341-.296c-.679-.715-.826-.975-.382-2.603-3.168.512-6.771 4.01-7.534 5.87-.003.007-.003.015-.005.022a6.7 6.7 0 0 0-.534 1.161Z" }) + ] + } + ); +}); + +exports.default = SiMedibangpaint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.d.ts new file mode 100644 index 000000000..560cafcbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00DBDE"; +declare const SiMedibangpaint: IconType; +export { SiMedibangpaint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.mjs new file mode 100644 index 000000000..a4093f1b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedibangpaint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00DBDE"; +const SiMedibangpaint = React.forwardRef(function SiMedibangpaint2({ title = "MediBang Paint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.516 0H6.478L4.417.164a5.158 5.158 0 0 0-3.184 1.827 5.479 5.479 0 0 0-.981 2.06C-.068 5.336.015 6.992.015 8.548v7.284c0 2.377.038 4.504 1.007 5.878a5.153 5.153 0 0 0 2.435 1.873c1.232.332 2.509.467 3.783.401h6.967c.622 0 1.25.007 1.87.007 2.149 0 4.19-.092 5.504-.921a5.073 5.073 0 0 0 2.013-2.53c.459-1.308.398-3.127.398-4.871V9.415c0-3.264.115-5.748-1.335-7.565C21.208.033 18.727 0 15.516 0Zm0 .327a23.237 23.237 0 0 1 4.167.237 4.316 4.316 0 0 1 2.718 1.49 5.645 5.645 0 0 1 1.108 2.823c.143 1.284.195 2.576.156 3.867v7.475c.005 1.52.011 3.092-.382 4.212a4.724 4.724 0 0 1-1.878 2.36 5.749 5.749 0 0 1-2.307.724 23.456 23.456 0 0 1-3.021.147l-1.87-.008H7.241a11.983 11.983 0 0 1-3.675-.381 4.828 4.828 0 0 1-2.276-1.754 5.279 5.279 0 0 1-.81-2.414 26.103 26.103 0 0 1-.137-3.272V8.548c0-.268 0-.545-.005-.812A15.618 15.618 0 0 1 .567 4.13a5.19 5.19 0 0 1 .927-1.94A4.833 4.833 0 0 1 4.464.491L5.852.382l.639-.055h9.025Zm2.147 8.845-.174-.286-.26-.357a7.147 7.147 0 0 0-.267-.331c-.029-.034-.055-.061-.085-.094.362 7.124-6.189 10.879-10.683 7.917a6.694 6.694 0 0 0 5.716 3.224c3.665 0 6.68-3.015 6.68-6.679 0-1.194-.32-2.366-.927-3.394ZM5.674 14.978c.081.207.636.521.795.626 4.195 2.764 10.247-.825 9.908-7.474-.007-.148-.006-.538-.089-.61a7.696 7.696 0 0 0-1.44-.995c-1.103 3.961-6.324 6.303-9.404 4.362a6.615 6.615 0 0 0 .23 4.091Zm-.075-4.598c.033.033.07.061.111.084 1.117.704 2.547.769 3.922.385 2.116-.591 4.119-2.248 4.735-4.458.014-.05.039-.156.028-.165a3.428 3.428 0 0 1-.341-.296c-.679-.715-.826-.975-.382-2.603-3.168.512-6.771 4.01-7.534 5.87-.003.007-.003.015-.005.022a6.7 6.7 0 0 0-.534 1.161Z" }) + ] + } + ); +}); + +export { SiMedibangpaint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.cjs new file mode 100644 index 000000000..b3ad23a7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMedium = React__namespace.forwardRef(function SiMedium2({ title = "Medium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.21 0A4.201 4.201 0 0 0 0 4.21v15.58A4.201 4.201 0 0 0 4.21 24h15.58A4.201 4.201 0 0 0 24 19.79v-1.093c-.137.013-.278.02-.422.02-2.577 0-4.027-2.146-4.09-4.832a7.592 7.592 0 0 1 .022-.708c.093-1.186.475-2.241 1.105-3.022a3.885 3.885 0 0 1 1.395-1.1c.468-.237 1.127-.367 1.664-.367h.023c.101 0 .202.004.303.01V4.211A4.201 4.201 0 0 0 19.79 0Zm.198 5.583h4.165l3.588 8.435 3.59-8.435h3.864v.146l-.019.004c-.705.16-1.063.397-1.063 1.254h-.003l.003 10.274c.06.676.424.885 1.063 1.03l.02.004v.145h-4.923v-.145l.019-.005c.639-.144.994-.353 1.054-1.03V7.267l-4.745 11.15h-.261L6.15 7.569v9.445c0 .857.358 1.094 1.063 1.253l.02.004v.147H4.405v-.147l.019-.004c.705-.16 1.065-.397 1.065-1.253V6.987c0-.857-.358-1.094-1.064-1.254l-.018-.004zm19.25 3.668c-1.086.023-1.733 1.323-1.813 3.124H24V9.298a1.378 1.378 0 0 0-.342-.047Zm-1.862 3.632c-.1 1.756.86 3.239 2.204 3.634v-3.634z" }) + ] + } + ); +}); + +exports.default = SiMedium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.d.ts new file mode 100644 index 000000000..ca3504001 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMedium: IconType; +export { SiMedium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.mjs new file mode 100644 index 000000000..58b173003 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMedium = React.forwardRef(function SiMedium2({ title = "Medium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.21 0A4.201 4.201 0 0 0 0 4.21v15.58A4.201 4.201 0 0 0 4.21 24h15.58A4.201 4.201 0 0 0 24 19.79v-1.093c-.137.013-.278.02-.422.02-2.577 0-4.027-2.146-4.09-4.832a7.592 7.592 0 0 1 .022-.708c.093-1.186.475-2.241 1.105-3.022a3.885 3.885 0 0 1 1.395-1.1c.468-.237 1.127-.367 1.664-.367h.023c.101 0 .202.004.303.01V4.211A4.201 4.201 0 0 0 19.79 0Zm.198 5.583h4.165l3.588 8.435 3.59-8.435h3.864v.146l-.019.004c-.705.16-1.063.397-1.063 1.254h-.003l.003 10.274c.06.676.424.885 1.063 1.03l.02.004v.145h-4.923v-.145l.019-.005c.639-.144.994-.353 1.054-1.03V7.267l-4.745 11.15h-.261L6.15 7.569v9.445c0 .857.358 1.094 1.063 1.253l.02.004v.147H4.405v-.147l.019-.004c.705-.16 1.065-.397 1.065-1.253V6.987c0-.857-.358-1.094-1.064-1.254l-.018-.004zm19.25 3.668c-1.086.023-1.733 1.323-1.813 3.124H24V9.298a1.378 1.378 0 0 0-.342-.047Zm-1.862 3.632c-.1 1.756.86 3.239 2.204 3.634v-3.634z" }) + ] + } + ); +}); + +export { SiMedium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.cjs new file mode 100644 index 000000000..bfa6d1e6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMedusa = React__namespace.forwardRef(function SiMedusa2({ title = "Medusa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.325 3.8958 14.8913.7692a5.7283 5.7283 0 0 0-5.7342 0L3.6983 3.8958C1.9455 4.9213.8437 6.8223.8437 8.8484v6.2783c0 2.051 1.1018 3.927 2.8546 4.9526l5.4337 3.1515a5.7283 5.7283 0 0 0 5.7343 0l5.4338-3.1515c1.7778-1.0256 2.8545-2.9015 2.8545-4.9526V8.8484c.0501-2.026-1.0517-3.927-2.8296-4.9526Zm-8.3133 13.6821c-3.08 0-5.584-2.5013-5.584-5.5778 0-3.0767 2.504-5.578 5.584-5.578 3.08 0 5.609 2.5013 5.609 5.578 0 3.0765-2.504 5.5778-5.609 5.5778z" }) + ] + } + ); +}); + +exports.default = SiMedusa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.d.ts new file mode 100644 index 000000000..1c931d2e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMedusa: IconType; +export { SiMedusa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.mjs new file mode 100644 index 000000000..545e5bba4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMedusa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMedusa = React.forwardRef(function SiMedusa2({ title = "Medusa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.325 3.8958 14.8913.7692a5.7283 5.7283 0 0 0-5.7342 0L3.6983 3.8958C1.9455 4.9213.8437 6.8223.8437 8.8484v6.2783c0 2.051 1.1018 3.927 2.8546 4.9526l5.4337 3.1515a5.7283 5.7283 0 0 0 5.7343 0l5.4338-3.1515c1.7778-1.0256 2.8545-2.9015 2.8545-4.9526V8.8484c.0501-2.026-1.0517-3.927-2.8296-4.9526Zm-8.3133 13.6821c-3.08 0-5.584-2.5013-5.584-5.5778 0-3.0767 2.504-5.578 5.584-5.578 3.08 0 5.609 2.5013 5.609 5.578 0 3.0765-2.504 5.5778-5.609 5.5778z" }) + ] + } + ); +}); + +export { SiMedusa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.cjs new file mode 100644 index 000000000..ef1f99014 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C40"; +const SiMeetup = React__namespace.forwardRef(function SiMeetup2({ title = "Meetup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.98.555a.518.518 0 0 0-.105.011.53.53 0 1 0 .222 1.04.533.533 0 0 0 .409-.633.531.531 0 0 0-.526-.418zm6.455.638a.984.984 0 0 0-.514.143.99.99 0 1 0 1.02 1.699.99.99 0 0 0 .34-1.36.992.992 0 0 0-.846-.482zm-3.03 2.236a5.029 5.029 0 0 0-4.668 3.248 3.33 3.33 0 0 0-1.46.551 3.374 3.374 0 0 0-.94 4.562 3.634 3.634 0 0 0-.605 4.649 3.603 3.603 0 0 0 2.465 1.597c.018.732.238 1.466.686 2.114a3.9 3.9 0 0 0 5.423.992c.068-.047.12-.106.184-.157.987.881 2.47 1.026 3.607.24a2.91 2.91 0 0 0 1.162-1.69 4.238 4.238 0 0 0 2.584-.739 4.274 4.274 0 0 0 1.19-5.789 2.466 2.466 0 0 0 .433-3.308 2.448 2.448 0 0 0-1.316-.934 4.436 4.436 0 0 0-.776-2.873 4.467 4.467 0 0 0-5.195-1.656 5.106 5.106 0 0 0-2.773-.807zm-5.603.817a.759.759 0 0 0-.423.135.758.758 0 1 0 .863 1.248.757.757 0 0 0 .193-1.055.758.758 0 0 0-.633-.328zm15.994 2.37a.842.842 0 0 0-.47.151.845.845 0 1 0 1.175.215.845.845 0 0 0-.705-.365zm-8.15 1.028c.063 0 .124.005.182.014a.901.901 0 0 1 .45.187c.169.134.273.241.432.393.24.227.414.089.534.02.208-.122.369-.219.984-.208.633.011 1.363.237 1.514 1.317.168 1.199-1.966 4.289-1.817 5.722.106 1.01 1.815.299 1.96 1.22.186 1.198-2.136.753-2.667.493-.832-.408-1.337-1.34-1.12-2.26.16-.688 1.7-3.498 1.757-3.93.059-.44-.177-.476-.324-.484-.19-.01-.34.081-.526.362-.169.255-2.082 4.085-2.248 4.398-.296.56-.67.694-1.044.674-.548-.029-.798-.32-.72-.848.047-.31 1.26-3.049 1.323-3.476.039-.265-.013-.546-.275-.68-.263-.135-.572.07-.664.227-.128.215-1.848 4.706-2.032 5.038-.316.576-.65.76-1.152.784-1.186.056-2.065-.92-1.678-2.116.173-.532 1.316-4.571 1.895-5.599.389-.69 1.468-1.216 2.217-.892.387.167.925.437 1.084.507.366.163.759-.277.913-.412.155-.134.302-.276.49-.357.142-.06.343-.095.532-.094zm10.88 2.057a.468.468 0 0 0-.093.011.467.467 0 0 0-.36.555.47.47 0 0 0 .557.36.47.47 0 0 0 .36-.557.47.47 0 0 0-.464-.37zm-22.518.81a.997.997 0 0 0-.832.434 1 1 0 1 0 1.39-.258 1 1 0 0 0-.558-.176zm21.294 2.094a.635.635 0 0 0-.127.013.627.627 0 0 0-.48.746.628.628 0 0 0 .746.483.628.628 0 0 0 .482-.746.63.63 0 0 0-.621-.496zm-18.24 6.097a.453.453 0 0 0-.092.012.464.464 0 1 0 .195.908.464.464 0 0 0 .356-.553.465.465 0 0 0-.459-.367zm13.675 1.55a1.044 1.044 0 0 0-.583.187 1.047 1.047 0 1 0 1.456.265 1.044 1.044 0 0 0-.873-.451zM11.4 22.154a.643.643 0 0 0-.36.115.646.646 0 0 0-.164.899.646.646 0 0 0 .899.164.646.646 0 0 0 .164-.898.646.646 0 0 0-.54-.28z" }) + ] + } + ); +}); + +exports.default = SiMeetup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.d.ts new file mode 100644 index 000000000..e366e3ab3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C40"; +declare const SiMeetup: IconType; +export { SiMeetup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.mjs new file mode 100644 index 000000000..0e807cea6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeetup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C40"; +const SiMeetup = React.forwardRef(function SiMeetup2({ title = "Meetup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.98.555a.518.518 0 0 0-.105.011.53.53 0 1 0 .222 1.04.533.533 0 0 0 .409-.633.531.531 0 0 0-.526-.418zm6.455.638a.984.984 0 0 0-.514.143.99.99 0 1 0 1.02 1.699.99.99 0 0 0 .34-1.36.992.992 0 0 0-.846-.482zm-3.03 2.236a5.029 5.029 0 0 0-4.668 3.248 3.33 3.33 0 0 0-1.46.551 3.374 3.374 0 0 0-.94 4.562 3.634 3.634 0 0 0-.605 4.649 3.603 3.603 0 0 0 2.465 1.597c.018.732.238 1.466.686 2.114a3.9 3.9 0 0 0 5.423.992c.068-.047.12-.106.184-.157.987.881 2.47 1.026 3.607.24a2.91 2.91 0 0 0 1.162-1.69 4.238 4.238 0 0 0 2.584-.739 4.274 4.274 0 0 0 1.19-5.789 2.466 2.466 0 0 0 .433-3.308 2.448 2.448 0 0 0-1.316-.934 4.436 4.436 0 0 0-.776-2.873 4.467 4.467 0 0 0-5.195-1.656 5.106 5.106 0 0 0-2.773-.807zm-5.603.817a.759.759 0 0 0-.423.135.758.758 0 1 0 .863 1.248.757.757 0 0 0 .193-1.055.758.758 0 0 0-.633-.328zm15.994 2.37a.842.842 0 0 0-.47.151.845.845 0 1 0 1.175.215.845.845 0 0 0-.705-.365zm-8.15 1.028c.063 0 .124.005.182.014a.901.901 0 0 1 .45.187c.169.134.273.241.432.393.24.227.414.089.534.02.208-.122.369-.219.984-.208.633.011 1.363.237 1.514 1.317.168 1.199-1.966 4.289-1.817 5.722.106 1.01 1.815.299 1.96 1.22.186 1.198-2.136.753-2.667.493-.832-.408-1.337-1.34-1.12-2.26.16-.688 1.7-3.498 1.757-3.93.059-.44-.177-.476-.324-.484-.19-.01-.34.081-.526.362-.169.255-2.082 4.085-2.248 4.398-.296.56-.67.694-1.044.674-.548-.029-.798-.32-.72-.848.047-.31 1.26-3.049 1.323-3.476.039-.265-.013-.546-.275-.68-.263-.135-.572.07-.664.227-.128.215-1.848 4.706-2.032 5.038-.316.576-.65.76-1.152.784-1.186.056-2.065-.92-1.678-2.116.173-.532 1.316-4.571 1.895-5.599.389-.69 1.468-1.216 2.217-.892.387.167.925.437 1.084.507.366.163.759-.277.913-.412.155-.134.302-.276.49-.357.142-.06.343-.095.532-.094zm10.88 2.057a.468.468 0 0 0-.093.011.467.467 0 0 0-.36.555.47.47 0 0 0 .557.36.47.47 0 0 0 .36-.557.47.47 0 0 0-.464-.37zm-22.518.81a.997.997 0 0 0-.832.434 1 1 0 1 0 1.39-.258 1 1 0 0 0-.558-.176zm21.294 2.094a.635.635 0 0 0-.127.013.627.627 0 0 0-.48.746.628.628 0 0 0 .746.483.628.628 0 0 0 .482-.746.63.63 0 0 0-.621-.496zm-18.24 6.097a.453.453 0 0 0-.092.012.464.464 0 1 0 .195.908.464.464 0 0 0 .356-.553.465.465 0 0 0-.459-.367zm13.675 1.55a1.044 1.044 0 0 0-.583.187 1.047 1.047 0 1 0 1.456.265 1.044 1.044 0 0 0-.873-.451zM11.4 22.154a.643.643 0 0 0-.36.115.646.646 0 0 0-.164.899.646.646 0 0 0 .899.164.646.646 0 0 0 .164-.898.646.646 0 0 0-.54-.28z" }) + ] + } + ); +}); + +export { SiMeetup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMega.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMega.cjs new file mode 100644 index 000000000..7bf218e2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMega.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D9272E"; +const SiMega = React__namespace.forwardRef(function SiMega2({ title = "MEGA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm6.23 16.244a.371.371 0 0 1-.373.372H16.29a.371.371 0 0 1-.372-.372v-4.828c0-.04-.046-.06-.08-.033l-3.32 3.32a.742.742 0 0 1-1.043 0l-3.32-3.32c-.027-.027-.08-.007-.08.033v4.828a.371.371 0 0 1-.372.372H6.136a.371.371 0 0 1-.372-.372V7.757c0-.206.166-.372.372-.372h1.076a.75.75 0 0 1 .525.22l4.13 4.13a.18.18 0 0 0 .26 0l4.13-4.13c.14-.14.325-.22.525-.22h1.075c.206 0 .372.166.372.372z" }) + ] + } + ); +}); + +exports.default = SiMega; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMega.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMega.d.ts new file mode 100644 index 000000000..4ed8c592b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMega.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D9272E"; +declare const SiMega: IconType; +export { SiMega as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMega.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMega.mjs new file mode 100644 index 000000000..03c1c9fc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMega.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D9272E"; +const SiMega = React.forwardRef(function SiMega2({ title = "MEGA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm6.23 16.244a.371.371 0 0 1-.373.372H16.29a.371.371 0 0 1-.372-.372v-4.828c0-.04-.046-.06-.08-.033l-3.32 3.32a.742.742 0 0 1-1.043 0l-3.32-3.32c-.027-.027-.08-.007-.08.033v4.828a.371.371 0 0 1-.372.372H6.136a.371.371 0 0 1-.372-.372V7.757c0-.206.166-.372.372-.372h1.076a.75.75 0 0 1 .525.22l4.13 4.13a.18.18 0 0 0 .26 0l4.13-4.13c.14-.14.325-.22.525-.22h1.075c.206 0 .372.166.372.372z" }) + ] + } + ); +}); + +export { SiMega as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.cjs new file mode 100644 index 000000000..d5c3bf09a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5CAA"; +const SiMeilisearch = React__namespace.forwardRef(function SiMeilisearch2({ title = "Meilisearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.505 18.998 4.434-11.345a4.168 4.168 0 0 1 3.882-2.651h2.674l-4.434 11.345a4.169 4.169 0 0 1-3.883 2.651H6.505Zm6.505 0 4.434-11.345a4.169 4.169 0 0 1 3.883-2.651H24l-4.434 11.345a4.168 4.168 0 0 1-3.882 2.651H13.01Zm-13.01 0L4.434 7.653a4.168 4.168 0 0 1 3.882-2.651h2.674L6.556 16.347a4.169 4.169 0 0 1-3.883 2.651H0Z" }) + ] + } + ); +}); + +exports.default = SiMeilisearch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.d.ts new file mode 100644 index 000000000..1b373a33f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5CAA"; +declare const SiMeilisearch: IconType; +export { SiMeilisearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.mjs new file mode 100644 index 000000000..338c4c7c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeilisearch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5CAA"; +const SiMeilisearch = React.forwardRef(function SiMeilisearch2({ title = "Meilisearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.505 18.998 4.434-11.345a4.168 4.168 0 0 1 3.882-2.651h2.674l-4.434 11.345a4.169 4.169 0 0 1-3.883 2.651H6.505Zm6.505 0 4.434-11.345a4.169 4.169 0 0 1 3.883-2.651H24l-4.434 11.345a4.168 4.168 0 0 1-3.882 2.651H13.01Zm-13.01 0L4.434 7.653a4.168 4.168 0 0 1 3.882-2.651h2.674L6.556 16.347a4.169 4.169 0 0 1-3.883 2.651H0Z" }) + ] + } + ); +}); + +export { SiMeilisearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.cjs new file mode 100644 index 000000000..19392746b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD100"; +const SiMeituan = React__namespace.forwardRef(function SiMeituan2({ title = "Meituan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.923 0c-2.408 0-3.28.25-4.16.721A4.906 4.907 0 0 0 .722 2.763C.25 3.643 0 4.516 0 6.923v10.154c0 2.407.25 3.28.72 4.16a4.905 4.906 0 0 0 2.042 2.042c.88.47 1.752.721 4.16.721h10.156c2.407 0 3.28-.25 4.16-.721a4.906 4.907 0 0 0 2.04-2.042c.471-.88.722-1.753.722-4.16V6.923c0-2.407-.25-3.28-.722-4.16A4.906 4.907 0 0 0 21.238.72C20.357.251 19.484 0 17.077 0ZM4.17 7.51h1.084c.04.24.07.488.11.737h3.47c.05-.25.08-.497.1-.736h1.105a9.849 9.85 0 0 1-.09.736h1.562v.866H7.62v.696h3.642v.855h-3.64v.667h3.64v.854h-3.64v.816h3.89v.865H7.88c.775.935 2.218 1.532 3.78 1.651l-.538.936c-1.442-.17-3.103-.846-4.028-2.04-.856 1.194-2.487 1.92-4.525 2.07l.318-1.005c1.382-.02 2.814-.736 3.431-1.612h-3.62v-.865h3.86v-.816h-3.64v-.854h3.64v-.667h-3.64v-.855h3.64v-.697H2.7v-.866h1.56zm8.603.182h7.976c.358 0 .567.198.567.547v8.146H13.33c-.358 0-.557-.199-.557-.547zm1.044.885V15.5h6.455V8.577Zm3.999.476h1.024v.756h.975v.835h-.975V13c0 .806-.1 1.402-.318 2.02h-1.113c.338-.717.408-1.224.408-1.99v-2.387h-.935c-.14 1.541-.736 3.451-1.363 4.376h-1.134c.607-.855 1.303-2.526 1.472-4.376h-1.512v-.835h3.472z" }) + ] + } + ); +}); + +exports.default = SiMeituan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.d.ts new file mode 100644 index 000000000..a45999b55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD100"; +declare const SiMeituan: IconType; +export { SiMeituan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.mjs new file mode 100644 index 000000000..39852e2f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeituan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD100"; +const SiMeituan = React.forwardRef(function SiMeituan2({ title = "Meituan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.923 0c-2.408 0-3.28.25-4.16.721A4.906 4.907 0 0 0 .722 2.763C.25 3.643 0 4.516 0 6.923v10.154c0 2.407.25 3.28.72 4.16a4.905 4.906 0 0 0 2.042 2.042c.88.47 1.752.721 4.16.721h10.156c2.407 0 3.28-.25 4.16-.721a4.906 4.907 0 0 0 2.04-2.042c.471-.88.722-1.753.722-4.16V6.923c0-2.407-.25-3.28-.722-4.16A4.906 4.907 0 0 0 21.238.72C20.357.251 19.484 0 17.077 0ZM4.17 7.51h1.084c.04.24.07.488.11.737h3.47c.05-.25.08-.497.1-.736h1.105a9.849 9.85 0 0 1-.09.736h1.562v.866H7.62v.696h3.642v.855h-3.64v.667h3.64v.854h-3.64v.816h3.89v.865H7.88c.775.935 2.218 1.532 3.78 1.651l-.538.936c-1.442-.17-3.103-.846-4.028-2.04-.856 1.194-2.487 1.92-4.525 2.07l.318-1.005c1.382-.02 2.814-.736 3.431-1.612h-3.62v-.865h3.86v-.816h-3.64v-.854h3.64v-.667h-3.64v-.855h3.64v-.697H2.7v-.866h1.56zm8.603.182h7.976c.358 0 .567.198.567.547v8.146H13.33c-.358 0-.557-.199-.557-.547zm1.044.885V15.5h6.455V8.577Zm3.999.476h1.024v.756h.975v.835h-.975V13c0 .806-.1 1.402-.318 2.02h-1.113c.338-.717.408-1.224.408-1.99v-2.387h-.935c-.14 1.541-.736 3.451-1.363 4.376h-1.134c.607-.855 1.303-2.526 1.472-4.376h-1.512v-.835h3.472z" }) + ] + } + ); +}); + +export { SiMeituan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.cjs new file mode 100644 index 000000000..19da5973a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4132"; +const SiMeizu = React__namespace.forwardRef(function SiMeizu2({ title = "Meizu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.045 18.818h3.546A.41.41 0 0 0 24 18.41v-3.545a.41.41 0 0 0-.41-.41h-3.545a.41.41 0 0 0-.409.41v3.545c0 .226.184.41.41.41zM13.8 12.11a.095.095 0 0 1-.163-.068V5.591a.41.41 0 0 0-.409-.41H10.59a.545.545 0 0 0-.385.16L.16 15.387a.545.545 0 0 0-.16.385v2.638c0 .226.183.41.41.41h2.637a.547.547 0 0 0 .385-.16l6.769-6.769a.096.096 0 0 1 .163.068v6.451c0 .226.183.41.409.41h2.638a.547.547 0 0 0 .385-.16L23.84 8.613A.545.545 0 0 0 24 8.23V5.59a.41.41 0 0 0-.41-.41h-2.637a.546.546 0 0 0-.386.16z" }) + ] + } + ); +}); + +exports.default = SiMeizu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.d.ts new file mode 100644 index 000000000..50e3d07f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4132"; +declare const SiMeizu: IconType; +export { SiMeizu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.mjs new file mode 100644 index 000000000..5e7ec6eff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeizu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4132"; +const SiMeizu = React.forwardRef(function SiMeizu2({ title = "Meizu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.045 18.818h3.546A.41.41 0 0 0 24 18.41v-3.545a.41.41 0 0 0-.41-.41h-3.545a.41.41 0 0 0-.409.41v3.545c0 .226.184.41.41.41zM13.8 12.11a.095.095 0 0 1-.163-.068V5.591a.41.41 0 0 0-.409-.41H10.59a.545.545 0 0 0-.385.16L.16 15.387a.545.545 0 0 0-.16.385v2.638c0 .226.183.41.41.41h2.637a.547.547 0 0 0 .385-.16l6.769-6.769a.096.096 0 0 1 .163.068v6.451c0 .226.183.41.409.41h2.638a.547.547 0 0 0 .385-.16L23.84 8.613A.545.545 0 0 0 24 8.23V5.59a.41.41 0 0 0-.41-.41h-2.637a.546.546 0 0 0-.386.16z" }) + ] + } + ); +}); + +export { SiMeizu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.cjs new file mode 100644 index 000000000..28a6c38cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9D1620"; +const SiMendeley = React__namespace.forwardRef(function SiMendeley2({ title = "Mendeley", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0037 9.1684h.019a2.355 2.355 0 011.5038 4.1655 1.8076 1.8076 0 01-.8561.452 2.348 2.348 0 01-.6487.0923h-.019c-.2246 0-.4421-.033-.6487-.0922a1.8126 1.8126 0 01-.8561-.4521 2.346 2.346 0 01-.8511-1.8106 2.358 2.358 0 012.3569-2.355m-9.9731 9.474c1.2652.1583 2.388-.762 2.5073-2.0573a2.4442 2.4442 0 00-.2136-1.236c-1.7724-3.8889 6.9726-3.978 5.4949-.3078l-.01.016c-.6988 1.1178-.3198 2.5695.841 3.2402.4272.2486.9003.3508 1.3625.3308.4622.02.9354-.0822 1.3624-.3308 1.161-.6717 1.54-2.1224.8412-3.2402l-.01-.016c-1.4778-3.6703 7.2682-3.581 5.4938.3077a2.4462 2.4462 0 00-.2126 1.2361c.1203 1.2953 1.2422 2.2156 2.5083 2.0572a2.345 2.345 0 001.4246-.7368s.5885-.4883.5795-1.7334c-.008-1.0156-.5795-1.578-.5795-1.578a2.2116 2.2116 0 00-1.8145-.6456c-1.6231-.036-1.8637-1.3073-1.4056-3.7033.1685-.4251.2416-.8802.2266-1.3354a3.4166 3.4166 0 00-2.1304-3.2953c-.039-.017-.0782-.03-.1183-.0461a1.5138 1.5138 0 00-.1343-.0461 3.4156 3.4156 0 00-4.004 1.4526c-.8171.8973-1.187 1.4417-2.0272 1.4417-.799 0-1.211-.5444-2.0271-1.4417a3.4126 3.4126 0 00-4.1374-1.4075c-.0401.016-.0792.029-.1193.0461a3.4156 3.4156 0 00-2.1294 3.2953c-.016.4552.0582.9103.2256 1.3354.4581 2.397.2175 3.6672-1.4045 3.7033-.795-.0852-1.3885.2426-1.988.8431-.6016.5995-.5514 2.2056 0 2.9063.4.5103.9423.8632 1.598.9454" }) + ] + } + ); +}); + +exports.default = SiMendeley; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.d.ts new file mode 100644 index 000000000..b2ad46496 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9D1620"; +declare const SiMendeley: IconType; +export { SiMendeley as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.mjs new file mode 100644 index 000000000..831fb7e44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMendeley.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9D1620"; +const SiMendeley = React.forwardRef(function SiMendeley2({ title = "Mendeley", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0037 9.1684h.019a2.355 2.355 0 011.5038 4.1655 1.8076 1.8076 0 01-.8561.452 2.348 2.348 0 01-.6487.0923h-.019c-.2246 0-.4421-.033-.6487-.0922a1.8126 1.8126 0 01-.8561-.4521 2.346 2.346 0 01-.8511-1.8106 2.358 2.358 0 012.3569-2.355m-9.9731 9.474c1.2652.1583 2.388-.762 2.5073-2.0573a2.4442 2.4442 0 00-.2136-1.236c-1.7724-3.8889 6.9726-3.978 5.4949-.3078l-.01.016c-.6988 1.1178-.3198 2.5695.841 3.2402.4272.2486.9003.3508 1.3625.3308.4622.02.9354-.0822 1.3624-.3308 1.161-.6717 1.54-2.1224.8412-3.2402l-.01-.016c-1.4778-3.6703 7.2682-3.581 5.4938.3077a2.4462 2.4462 0 00-.2126 1.2361c.1203 1.2953 1.2422 2.2156 2.5083 2.0572a2.345 2.345 0 001.4246-.7368s.5885-.4883.5795-1.7334c-.008-1.0156-.5795-1.578-.5795-1.578a2.2116 2.2116 0 00-1.8145-.6456c-1.6231-.036-1.8637-1.3073-1.4056-3.7033.1685-.4251.2416-.8802.2266-1.3354a3.4166 3.4166 0 00-2.1304-3.2953c-.039-.017-.0782-.03-.1183-.0461a1.5138 1.5138 0 00-.1343-.0461 3.4156 3.4156 0 00-4.004 1.4526c-.8171.8973-1.187 1.4417-2.0272 1.4417-.799 0-1.211-.5444-2.0271-1.4417a3.4126 3.4126 0 00-4.1374-1.4075c-.0401.016-.0792.029-.1193.0461a3.4156 3.4156 0 00-2.1294 3.2953c-.016.4552.0582.9103.2256 1.3354.4581 2.397.2175 3.6672-1.4045 3.7033-.795-.0852-1.3885.2426-1.988.8431-.6016.5995-.5514 2.2056 0 2.9063.4.5103.9423.8632 1.598.9454" }) + ] + } + ); +}); + +export { SiMendeley as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.cjs new file mode 100644 index 000000000..f898ba6e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#172E59"; +const SiMentorcruise = React__namespace.forwardRef(function SiMentorcruise2({ title = "MentorCruise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Zm-.387 3.791v8.08H6.947c1.557-2.693 3.111-5.386 4.666-8.08Zm.774 0c1.554 2.694 3.11 5.387 4.666 8.08h-4.666Zm-9.244 8.854h17.714l-1.68 2.91H4.823Zm2.125 3.683h13.464l-1.68 2.908H6.948Z" }) + ] + } + ); +}); + +exports.default = SiMentorcruise; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.d.ts new file mode 100644 index 000000000..29623327e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#172E59"; +declare const SiMentorcruise: IconType; +export { SiMentorcruise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.mjs new file mode 100644 index 000000000..3522de554 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMentorcruise.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#172E59"; +const SiMentorcruise = React.forwardRef(function SiMentorcruise2({ title = "MentorCruise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Zm-.387 3.791v8.08H6.947c1.557-2.693 3.111-5.386 4.666-8.08Zm.774 0c1.554 2.694 3.11 5.387 4.666 8.08h-4.666Zm-9.244 8.854h17.714l-1.68 2.91H4.823Zm2.125 3.683h13.464l-1.68 2.908H6.948Z" }) + ] + } + ); +}); + +export { SiMentorcruise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.cjs new file mode 100644 index 000000000..6cf288cf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B1EA"; +const SiMercadopago = React__namespace.forwardRef(function SiMercadopago2({ title = "Mercado Pago", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.115 16.479a.93.927 0 0 1-.939-.886c-.002-.042-.006-.155-.103-.155-.04 0-.074.023-.113.059-.112.103-.254.206-.46.206a.816.814 0 0 1-.305-.066c-.535-.214-.542-.578-.521-.725.006-.038.007-.08-.02-.11l-.032-.03h-.034c-.027 0-.055.012-.093.039a.788.786 0 0 1-.454.16.7.699 0 0 1-.253-.05c-.708-.27-.65-.928-.617-1.126.005-.041-.005-.072-.03-.092l-.05-.04-.047.043a.728.726 0 0 1-.505.203.73.728 0 0 1-.732-.725c0-.4.328-.722.732-.722.364 0 .675.27.721.63l.026.195.11-.165c.01-.018.307-.46.852-.46.102 0 .21.016.316.05.434.13.508.52.519.68.008.094.075.1.09.1.037 0 .064-.024.083-.045a.746.744 0 0 1 .54-.225c.128 0 .263.03.402.09.69.293.379 1.158.374 1.167-.058.144-.061.207-.005.244l.027.013h.02c.03 0 .07-.014.134-.035.093-.032.235-.08.367-.08a.944.942 0 0 1 .94.93.936.934 0 0 1-.94.928zm7.302-4.171c-1.138-.98-3.768-3.24-4.481-3.77-.406-.302-.685-.462-.928-.533a1.559 1.554 0 0 0-.456-.07c-.182 0-.376.032-.58.095-.46.145-.918.505-1.362.854l-.023.018c-.414.324-.84.66-1.164.73a1.986 1.98 0 0 1-.43.049c-.362 0-.687-.104-.81-.258-.02-.025-.007-.066.04-.125l.008-.008 1-1.067c.783-.774 1.525-1.506 3.23-1.545h.085c1.062 0 2.12.469 2.24.524a7.03 7.03 0 0 0 3.056.724c1.076 0 2.188-.263 3.354-.795a9.135 9.11 0 0 0-.405-.317c-1.025.44-2.003.66-2.946.66-.962 0-1.925-.229-2.858-.68-.05-.022-1.22-.567-2.44-.57-.032 0-.065 0-.096.002-1.434.033-2.24.536-2.782.976-.528.013-.982.138-1.388.25-.361.1-.673.186-.979.185-.125 0-.35-.01-.37-.012-.35-.01-2.115-.437-3.518-.962-.143.1-.28.203-.415.31 1.466.593 3.25 1.053 3.812 1.089.157.01.323.027.491.027.372 0 .744-.103 1.104-.203.213-.059.446-.123.692-.17l-.196.194-1.017 1.087c-.08.08-.254.294-.14.557a.705.703 0 0 0 .268.292c.243.162.677.27 1.08.271.152 0 .297-.015.43-.044.427-.095.874-.448 1.349-.82.377-.296.913-.672 1.323-.782a1.494 1.49 0 0 1 .37-.05.611.61 0 0 1 .095.005c.27.034.533.125 1.003.472.835.62 4.531 3.815 4.566 3.846.002.002.238.203.22.537-.007.186-.11.352-.294.466a.902.9 0 0 1-.484.15.804.802 0 0 1-.428-.124c-.014-.01-1.28-1.157-1.746-1.543-.074-.06-.146-.115-.22-.115a.122.122 0 0 0-.096.045c-.073.09.01.212.105.294l1.48 1.47c.002 0 .184.17.204.395.012.244-.106.447-.35.606a.957.955 0 0 1-.526.171.766.764 0 0 1-.42-.127l-.214-.206a21.035 20.978 0 0 0-1.08-1.009c-.072-.058-.148-.112-.221-.112a.127.127 0 0 0-.094.038c-.033.037-.056.103.028.212a.698.696 0 0 0 .075.083l1.078 1.198c.01.01.222.26.024.511l-.038.048a1.18 1.178 0 0 1-.1.096c-.184.15-.43.164-.527.164a.8.798 0 0 1-.147-.012c-.106-.018-.178-.048-.212-.089l-.013-.013c-.06-.06-.602-.609-1.054-.98-.059-.05-.133-.11-.21-.11a.128.128 0 0 0-.096.042c-.09.096.044.24.1.293l.92 1.003a.204.204 0 0 1-.033.062c-.033.044-.144.155-.479.196a.91.907 0 0 1-.122.007c-.345 0-.712-.164-.902-.264a1.343 1.34 0 0 0 .13-.576 1.368 1.365 0 0 0-1.42-1.357c.024-.342-.025-.99-.697-1.274a1.455 1.452 0 0 0-.575-.125c-.146 0-.287.025-.42.075a1.153 1.15 0 0 0-.671-.564 1.52 1.515 0 0 0-.494-.085c-.28 0-.537.08-.767.242a1.168 1.165 0 0 0-.903-.43 1.173 1.17 0 0 0-.82.335c-.287-.217-1.425-.93-4.467-1.613a17.39 17.344 0 0 1-.692-.189 4.822 4.82 0 0 0-.077.494l.67.157c3.108.682 4.136 1.391 4.309 1.525a1.145 1.142 0 0 0-.09.442 1.16 1.158 0 0 0 1.378 1.132c.096.467.406.821.879 1.003a1.165 1.162 0 0 0 .415.08c.09 0 .179-.012.266-.034.086.22.282.493.722.668a1.233 1.23 0 0 0 .457.094c.122 0 .241-.022.355-.063a1.373 1.37 0 0 0 1.269.841c.37.002.726-.147.985-.41.221.121.688.341 1.163.341.06 0 .118-.002.175-.01.47-.059.689-.24.789-.382a.571.57 0 0 0 .048-.078c.11.032.234.058.373.058.255 0 .501-.086.75-.265.244-.174.418-.424.444-.637v-.01c.083.017.167.026.251.026.265 0 .527-.082.773-.242.48-.31.562-.715.554-.98a1.28 1.279 0 0 0 .978-.194 1.04 1.04 0 0 0 .502-.808 1.088 1.085 0 0 0-.16-.653c.804-.342 2.636-1.003 4.795-1.483a4.734 4.721 0 0 0-.067-.492 27.742 27.667 0 0 0-5.049 1.62zm5.123-.763c0 4.027-5.166 7.293-11.537 7.293-6.372 0-11.538-3.266-11.538-7.293 0-4.028 5.165-7.293 11.539-7.293 6.371 0 11.537 3.265 11.537 7.293zm.46.004c0-4.272-5.374-7.755-12-7.755S.002 7.277.002 11.55L0 12.004c0 4.533 4.695 8.203 11.999 8.203 7.347 0 12-3.67 12-8.204z" }) + ] + } + ); +}); + +exports.default = SiMercadopago; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.d.ts new file mode 100644 index 000000000..f309b9546 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B1EA"; +declare const SiMercadopago: IconType; +export { SiMercadopago as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.mjs new file mode 100644 index 000000000..d42ba0b79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMercadopago.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B1EA"; +const SiMercadopago = React.forwardRef(function SiMercadopago2({ title = "Mercado Pago", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.115 16.479a.93.927 0 0 1-.939-.886c-.002-.042-.006-.155-.103-.155-.04 0-.074.023-.113.059-.112.103-.254.206-.46.206a.816.814 0 0 1-.305-.066c-.535-.214-.542-.578-.521-.725.006-.038.007-.08-.02-.11l-.032-.03h-.034c-.027 0-.055.012-.093.039a.788.786 0 0 1-.454.16.7.699 0 0 1-.253-.05c-.708-.27-.65-.928-.617-1.126.005-.041-.005-.072-.03-.092l-.05-.04-.047.043a.728.726 0 0 1-.505.203.73.728 0 0 1-.732-.725c0-.4.328-.722.732-.722.364 0 .675.27.721.63l.026.195.11-.165c.01-.018.307-.46.852-.46.102 0 .21.016.316.05.434.13.508.52.519.68.008.094.075.1.09.1.037 0 .064-.024.083-.045a.746.744 0 0 1 .54-.225c.128 0 .263.03.402.09.69.293.379 1.158.374 1.167-.058.144-.061.207-.005.244l.027.013h.02c.03 0 .07-.014.134-.035.093-.032.235-.08.367-.08a.944.942 0 0 1 .94.93.936.934 0 0 1-.94.928zm7.302-4.171c-1.138-.98-3.768-3.24-4.481-3.77-.406-.302-.685-.462-.928-.533a1.559 1.554 0 0 0-.456-.07c-.182 0-.376.032-.58.095-.46.145-.918.505-1.362.854l-.023.018c-.414.324-.84.66-1.164.73a1.986 1.98 0 0 1-.43.049c-.362 0-.687-.104-.81-.258-.02-.025-.007-.066.04-.125l.008-.008 1-1.067c.783-.774 1.525-1.506 3.23-1.545h.085c1.062 0 2.12.469 2.24.524a7.03 7.03 0 0 0 3.056.724c1.076 0 2.188-.263 3.354-.795a9.135 9.11 0 0 0-.405-.317c-1.025.44-2.003.66-2.946.66-.962 0-1.925-.229-2.858-.68-.05-.022-1.22-.567-2.44-.57-.032 0-.065 0-.096.002-1.434.033-2.24.536-2.782.976-.528.013-.982.138-1.388.25-.361.1-.673.186-.979.185-.125 0-.35-.01-.37-.012-.35-.01-2.115-.437-3.518-.962-.143.1-.28.203-.415.31 1.466.593 3.25 1.053 3.812 1.089.157.01.323.027.491.027.372 0 .744-.103 1.104-.203.213-.059.446-.123.692-.17l-.196.194-1.017 1.087c-.08.08-.254.294-.14.557a.705.703 0 0 0 .268.292c.243.162.677.27 1.08.271.152 0 .297-.015.43-.044.427-.095.874-.448 1.349-.82.377-.296.913-.672 1.323-.782a1.494 1.49 0 0 1 .37-.05.611.61 0 0 1 .095.005c.27.034.533.125 1.003.472.835.62 4.531 3.815 4.566 3.846.002.002.238.203.22.537-.007.186-.11.352-.294.466a.902.9 0 0 1-.484.15.804.802 0 0 1-.428-.124c-.014-.01-1.28-1.157-1.746-1.543-.074-.06-.146-.115-.22-.115a.122.122 0 0 0-.096.045c-.073.09.01.212.105.294l1.48 1.47c.002 0 .184.17.204.395.012.244-.106.447-.35.606a.957.955 0 0 1-.526.171.766.764 0 0 1-.42-.127l-.214-.206a21.035 20.978 0 0 0-1.08-1.009c-.072-.058-.148-.112-.221-.112a.127.127 0 0 0-.094.038c-.033.037-.056.103.028.212a.698.696 0 0 0 .075.083l1.078 1.198c.01.01.222.26.024.511l-.038.048a1.18 1.178 0 0 1-.1.096c-.184.15-.43.164-.527.164a.8.798 0 0 1-.147-.012c-.106-.018-.178-.048-.212-.089l-.013-.013c-.06-.06-.602-.609-1.054-.98-.059-.05-.133-.11-.21-.11a.128.128 0 0 0-.096.042c-.09.096.044.24.1.293l.92 1.003a.204.204 0 0 1-.033.062c-.033.044-.144.155-.479.196a.91.907 0 0 1-.122.007c-.345 0-.712-.164-.902-.264a1.343 1.34 0 0 0 .13-.576 1.368 1.365 0 0 0-1.42-1.357c.024-.342-.025-.99-.697-1.274a1.455 1.452 0 0 0-.575-.125c-.146 0-.287.025-.42.075a1.153 1.15 0 0 0-.671-.564 1.52 1.515 0 0 0-.494-.085c-.28 0-.537.08-.767.242a1.168 1.165 0 0 0-.903-.43 1.173 1.17 0 0 0-.82.335c-.287-.217-1.425-.93-4.467-1.613a17.39 17.344 0 0 1-.692-.189 4.822 4.82 0 0 0-.077.494l.67.157c3.108.682 4.136 1.391 4.309 1.525a1.145 1.142 0 0 0-.09.442 1.16 1.158 0 0 0 1.378 1.132c.096.467.406.821.879 1.003a1.165 1.162 0 0 0 .415.08c.09 0 .179-.012.266-.034.086.22.282.493.722.668a1.233 1.23 0 0 0 .457.094c.122 0 .241-.022.355-.063a1.373 1.37 0 0 0 1.269.841c.37.002.726-.147.985-.41.221.121.688.341 1.163.341.06 0 .118-.002.175-.01.47-.059.689-.24.789-.382a.571.57 0 0 0 .048-.078c.11.032.234.058.373.058.255 0 .501-.086.75-.265.244-.174.418-.424.444-.637v-.01c.083.017.167.026.251.026.265 0 .527-.082.773-.242.48-.31.562-.715.554-.98a1.28 1.279 0 0 0 .978-.194 1.04 1.04 0 0 0 .502-.808 1.088 1.085 0 0 0-.16-.653c.804-.342 2.636-1.003 4.795-1.483a4.734 4.721 0 0 0-.067-.492 27.742 27.667 0 0 0-5.049 1.62zm5.123-.763c0 4.027-5.166 7.293-11.537 7.293-6.372 0-11.538-3.266-11.538-7.293 0-4.028 5.165-7.293 11.539-7.293 6.371 0 11.537 3.265 11.537 7.293zm.46.004c0-4.272-5.374-7.755-12-7.755S.002 7.277.002 11.55L0 12.004c0 4.533 4.695 8.203 11.999 8.203 7.347 0 12-3.67 12-8.204z" }) + ] + } + ); +}); + +export { SiMercadopago as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.cjs new file mode 100644 index 000000000..c5fe3c9e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007A73"; +const SiMerck = React__namespace.forwardRef(function SiMerck2({ title = "Merck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 6a6 6 0 0112 0zm0 12a6 6 0 016-6 6 6 0 01-6-6 6 6 0 000 12 a6 6 0 1012 0zm6-6a6 6 0 016 6 6 6 0 100-12c0 3.314-2.686 6-6 6" }) + ] + } + ); +}); + +exports.default = SiMerck; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.d.ts new file mode 100644 index 000000000..f7c8ab62a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007A73"; +declare const SiMerck: IconType; +export { SiMerck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.mjs new file mode 100644 index 000000000..9692cf74e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMerck.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007A73"; +const SiMerck = React.forwardRef(function SiMerck2({ title = "Merck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 6a6 6 0 0112 0zm0 12a6 6 0 016-6 6 6 0 01-6-6 6 6 0 000 12 a6 6 0 1012 0zm6-6a6 6 0 016 6 6 6 0 100-12c0 3.314-2.686 6-6 6" }) + ] + } + ); +}); + +export { SiMerck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.cjs new file mode 100644 index 000000000..bda974d8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#999999"; +const SiMercurial = React__namespace.forwardRef(function SiMercurial2({ title = "Mercurial", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.8216.4314a10.2734 10.2734 0 0 0-1.422.0774c-7.083.8757-7.1976 8.3303-.9554 10.1015 7.0706 1.0703 2.8125 6.4047 2.2086 9.0945-.5415 2.4111 5.714 2.8074 8.6079-6.7688C23.9967 7.9324 20.6996.5375 13.8216.4314zm6.165 2.0953c-.0213.015.0002.066.1032.1748 1.01 1.0662 1.488 1.6912 2.4688 3.871 2.1907 4.8693-2.1648 12.5904-4.9951 14.1949-1.133.6421-2.568.7072-3.2275.6494-.4143-.036-.8177.4385-.5541.866.993 1.6114 3.5415.7206 5.72-.8322 2.1737-1.5493 3.6586-5.1331 4.0895-6.7171.6186-2.277.704-5.9062-.9593-8.9594-.9845-1.8072-1.9445-2.917-2.4906-3.2037-.0698-.0368-.1337-.0587-.155-.0437zm-13.7838.9554c-1.9467 3.1875-.2826 7.6562 4.7727 9.0905 6.6367 1.8846 1.3715 6.0926 1.5253 8.8959.1545 2.8028 5.7706 3.82 10.1988-3.5413.0536-.0891.1003-.1817.151-.2721-4.4262 7.3375-10.0304 6.3212-10.185 3.5214-.1539-2.8035 5.1114-7.0132-1.5253-8.8979-4.9023-1.3909-6.6137-5.634-4.9375-8.7965zm-.2304 2.9057c-.0678.0542-.0356.251.002.4866.1057.66.5196 1.8234 1.3347 2.8898 1.1057 1.4462 3.0177 2.0604 4.5005 2.5005 1.899.5634 2.3417 1.6578 2.5602 1.5234.2166-.1337.1632-1.3185-.4807-1.867-.6262-.5335-2.4769-.987-3.3704-1.1936C9.514 10.495 8.307 9.855 7.444 8.7612c-.863-1.0936-1.4403-2.3986-1.4717-2.3734zM2.8363 8.5904c-.5909-.0306-1.2788.1537-1.7617.5938-.549.5002-.7018 1.3363-.4866 2.014.0884.2783.3155.685.7925.7527.6369.0904.7673.3777 1.5194.2284.752-.1493 1.321-.7641 1.5491-1.4459.2612-.9433-.1284-1.4321-.717-1.867-.2206-.163-.5412-.2577-.8957-.276zm1.7895.7388c-.0482-.0289-.06.0299.0179.2443.3929 1.083-.3704 2.097-1.0288 2.5661-.6583.469-1.4924.247-1.8332.143-.341-.104-.5218.0143-.5065.1946.0087.101.092.221.2423.3178-.718-.3548-1.2561-1.088-1.3406-1.9603-.0444-.458.032-.885.2145-1.273-.2936.452-.4354.9885-.3794 1.567.1317 1.359 1.337 2.354 2.6952 2.2224.7147-.07 1.3579-.4514 1.7538-1.003.7892-.8576.7857-2.326.3733-2.7388-.0751-.1344-.1603-.2512-.2085-.28zm-1.1202.6276c.2173.0172.4146.1174.5462.3258.3794.6012-.3834 1.388-.9613 1.5392-.6124.1604-.8983.0048-.854-.8202.0276-.5155.5464-.9574 1.0467-1.0348a.9639.9639 0 0 1 .2224-.01zm18.6915.0298c.183.084.193 1.6217-.1092 2.737-.522 1.924-2.3254 4.9016-3.5334 6.28-.9264 1.0576-1.9623 1.499-3.2115 1.6843-2.5991.5065.158-3.82 2.0735-3.583 1.9155.237 3.9722-3.7315 4.437-6.155.1416-.738.2604-1.0015.3436-.9633zm-17.3667.6217c.014.0026.0246.0907.0357.2105-.0694 1.2463-1.2154 1.933-1.871 2.0239-.1768.0245-.4884.0113-.3395-.1231.0979-.0882.593-.0533 1.0407-.294.4474-.2407.9796-.7677 1.0745-1.5174.028-.2201.0456-.3025.0596-.2999zm3.9345.1112c.4061.1481.7337.3238 1.0566.423.5893.1805 1.2778.3457 1.7002.429.6572.1298 1.3422.4507 1.7497.586.6025.1997.8736.5768.852 1.0149-.0206.4376-.2303-.0553-.56-.276-.3111-.208-1.054-.6418-2.58-1.1421-1.2634-.4143-1.9051-.769-2.2185-1.0348zm14.908 2.1172c.1264.5153-.6948 4.0971-3.015 7.1243-.7777 1.0147-1.8407 1.7682-2.8899 2.294-.7741.388-1.3433.4632-2.0159.564-.5247.0787-.9144.0117-.8858-.3277.0375-.4468.567-.1635 1.3327-.3495 2.7515-.668 3.9457-2.0453 5.591-4.6317 1.281-2.0136 1.8405-4.2479 1.8828-4.6734zm-16.471 2.5304c-1.0004-.034-2.0805.3943-2.7469 1.2334-1.4419 1.8739-.3481 3.9568.0953 3.9643.4435.0074.7109.0702 1.16.3853.8876.3689 2.5196.136 3.273-.856.7536-.992.7777-2.36.4907-3.1858-.3512-1.0106-1.2719-1.5073-2.2722-1.5412zm2.4945 1.1638c-.0169.0077-.0174.0443.006.1152.622 1.8982.0475 3.3992-1.0249 4.1729-1.0515.7588-2.4974.8859-3.6545.286-.3397-.1761-.4804.0796-.3217.2264 2.9364 2.721 7.3564-1.0167 5.4102-4.3178-.164-.278-.3644-.5057-.4151-.4827zm-6.1153.3456a3.7751 3.7751 0 0 0-.4489 2.9534c.5275 2.0173 2.5906 3.225 4.6079 2.6972a3.7751 3.7751 0 0 0 2.419-1.9603A3.7751 3.7751 0 0 1 7.905 22.233c-2.0166.528-4.0794-.6786-4.6078-2.6952a3.7751 3.7751 0 0 1 .284-2.6614zm5.438.6098c.0599-.0072.1022.0754.1291.284.2837 2.1959-1.227 2.8104-1.72 2.9395-1.6646.4357-1.855-.621-.1529-1.1858.9128-.3029 1.4845-2.0066 1.7438-2.0377zm1.1937 1.581c.0214-.004.0165.0991-.006.2502-.2294 1.5421-1.6872 2.6788-2.9275 2.721-.2517.0259-.5818-.0826-.2741-.147.3738-.0786 2.5478-.6426 3.0586-2.431.0796-.2788.1276-.3893.149-.3933Z" }) + ] + } + ); +}); + +exports.default = SiMercurial; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.d.ts new file mode 100644 index 000000000..5c060171b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#999999"; +declare const SiMercurial: IconType; +export { SiMercurial as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.mjs new file mode 100644 index 000000000..57f2b5401 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMercurial.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#999999"; +const SiMercurial = React.forwardRef(function SiMercurial2({ title = "Mercurial", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.8216.4314a10.2734 10.2734 0 0 0-1.422.0774c-7.083.8757-7.1976 8.3303-.9554 10.1015 7.0706 1.0703 2.8125 6.4047 2.2086 9.0945-.5415 2.4111 5.714 2.8074 8.6079-6.7688C23.9967 7.9324 20.6996.5375 13.8216.4314zm6.165 2.0953c-.0213.015.0002.066.1032.1748 1.01 1.0662 1.488 1.6912 2.4688 3.871 2.1907 4.8693-2.1648 12.5904-4.9951 14.1949-1.133.6421-2.568.7072-3.2275.6494-.4143-.036-.8177.4385-.5541.866.993 1.6114 3.5415.7206 5.72-.8322 2.1737-1.5493 3.6586-5.1331 4.0895-6.7171.6186-2.277.704-5.9062-.9593-8.9594-.9845-1.8072-1.9445-2.917-2.4906-3.2037-.0698-.0368-.1337-.0587-.155-.0437zm-13.7838.9554c-1.9467 3.1875-.2826 7.6562 4.7727 9.0905 6.6367 1.8846 1.3715 6.0926 1.5253 8.8959.1545 2.8028 5.7706 3.82 10.1988-3.5413.0536-.0891.1003-.1817.151-.2721-4.4262 7.3375-10.0304 6.3212-10.185 3.5214-.1539-2.8035 5.1114-7.0132-1.5253-8.8979-4.9023-1.3909-6.6137-5.634-4.9375-8.7965zm-.2304 2.9057c-.0678.0542-.0356.251.002.4866.1057.66.5196 1.8234 1.3347 2.8898 1.1057 1.4462 3.0177 2.0604 4.5005 2.5005 1.899.5634 2.3417 1.6578 2.5602 1.5234.2166-.1337.1632-1.3185-.4807-1.867-.6262-.5335-2.4769-.987-3.3704-1.1936C9.514 10.495 8.307 9.855 7.444 8.7612c-.863-1.0936-1.4403-2.3986-1.4717-2.3734zM2.8363 8.5904c-.5909-.0306-1.2788.1537-1.7617.5938-.549.5002-.7018 1.3363-.4866 2.014.0884.2783.3155.685.7925.7527.6369.0904.7673.3777 1.5194.2284.752-.1493 1.321-.7641 1.5491-1.4459.2612-.9433-.1284-1.4321-.717-1.867-.2206-.163-.5412-.2577-.8957-.276zm1.7895.7388c-.0482-.0289-.06.0299.0179.2443.3929 1.083-.3704 2.097-1.0288 2.5661-.6583.469-1.4924.247-1.8332.143-.341-.104-.5218.0143-.5065.1946.0087.101.092.221.2423.3178-.718-.3548-1.2561-1.088-1.3406-1.9603-.0444-.458.032-.885.2145-1.273-.2936.452-.4354.9885-.3794 1.567.1317 1.359 1.337 2.354 2.6952 2.2224.7147-.07 1.3579-.4514 1.7538-1.003.7892-.8576.7857-2.326.3733-2.7388-.0751-.1344-.1603-.2512-.2085-.28zm-1.1202.6276c.2173.0172.4146.1174.5462.3258.3794.6012-.3834 1.388-.9613 1.5392-.6124.1604-.8983.0048-.854-.8202.0276-.5155.5464-.9574 1.0467-1.0348a.9639.9639 0 0 1 .2224-.01zm18.6915.0298c.183.084.193 1.6217-.1092 2.737-.522 1.924-2.3254 4.9016-3.5334 6.28-.9264 1.0576-1.9623 1.499-3.2115 1.6843-2.5991.5065.158-3.82 2.0735-3.583 1.9155.237 3.9722-3.7315 4.437-6.155.1416-.738.2604-1.0015.3436-.9633zm-17.3667.6217c.014.0026.0246.0907.0357.2105-.0694 1.2463-1.2154 1.933-1.871 2.0239-.1768.0245-.4884.0113-.3395-.1231.0979-.0882.593-.0533 1.0407-.294.4474-.2407.9796-.7677 1.0745-1.5174.028-.2201.0456-.3025.0596-.2999zm3.9345.1112c.4061.1481.7337.3238 1.0566.423.5893.1805 1.2778.3457 1.7002.429.6572.1298 1.3422.4507 1.7497.586.6025.1997.8736.5768.852 1.0149-.0206.4376-.2303-.0553-.56-.276-.3111-.208-1.054-.6418-2.58-1.1421-1.2634-.4143-1.9051-.769-2.2185-1.0348zm14.908 2.1172c.1264.5153-.6948 4.0971-3.015 7.1243-.7777 1.0147-1.8407 1.7682-2.8899 2.294-.7741.388-1.3433.4632-2.0159.564-.5247.0787-.9144.0117-.8858-.3277.0375-.4468.567-.1635 1.3327-.3495 2.7515-.668 3.9457-2.0453 5.591-4.6317 1.281-2.0136 1.8405-4.2479 1.8828-4.6734zm-16.471 2.5304c-1.0004-.034-2.0805.3943-2.7469 1.2334-1.4419 1.8739-.3481 3.9568.0953 3.9643.4435.0074.7109.0702 1.16.3853.8876.3689 2.5196.136 3.273-.856.7536-.992.7777-2.36.4907-3.1858-.3512-1.0106-1.2719-1.5073-2.2722-1.5412zm2.4945 1.1638c-.0169.0077-.0174.0443.006.1152.622 1.8982.0475 3.3992-1.0249 4.1729-1.0515.7588-2.4974.8859-3.6545.286-.3397-.1761-.4804.0796-.3217.2264 2.9364 2.721 7.3564-1.0167 5.4102-4.3178-.164-.278-.3644-.5057-.4151-.4827zm-6.1153.3456a3.7751 3.7751 0 0 0-.4489 2.9534c.5275 2.0173 2.5906 3.225 4.6079 2.6972a3.7751 3.7751 0 0 0 2.419-1.9603A3.7751 3.7751 0 0 1 7.905 22.233c-2.0166.528-4.0794-.6786-4.6078-2.6952a3.7751 3.7751 0 0 1 .284-2.6614zm5.438.6098c.0599-.0072.1022.0754.1291.284.2837 2.1959-1.227 2.8104-1.72 2.9395-1.6646.4357-1.855-.621-.1529-1.1858.9128-.3029 1.4845-2.0066 1.7438-2.0377zm1.1937 1.581c.0214-.004.0165.0991-.006.2502-.2294 1.5421-1.6872 2.6788-2.9275 2.721-.2517.0259-.5818-.0826-.2741-.147.3738-.0786 2.5478-.6426 3.0586-2.431.0796-.2788.1276-.3893.149-.3933Z" }) + ] + } + ); +}); + +export { SiMercurial as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.cjs new file mode 100644 index 000000000..014ad641e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3670"; +const SiMermaid = React__namespace.forwardRef(function SiMermaid2({ title = "Mermaid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.99 2.115A12.223 12.223 0 0 0 12 10.149 12.223 12.223 0 0 0 .01 2.115a12.23 12.23 0 0 0 5.32 10.604 6.562 6.562 0 0 1 2.845 5.423v3.754h7.65v-3.754a6.561 6.561 0 0 1 2.844-5.423 12.223 12.223 0 0 0 5.32-10.604Z" }) + ] + } + ); +}); + +exports.default = SiMermaid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.d.ts new file mode 100644 index 000000000..3c5c31e04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3670"; +declare const SiMermaid: IconType; +export { SiMermaid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.mjs new file mode 100644 index 000000000..1f4c4ef2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMermaid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3670"; +const SiMermaid = React.forwardRef(function SiMermaid2({ title = "Mermaid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.99 2.115A12.223 12.223 0 0 0 12 10.149 12.223 12.223 0 0 0 .01 2.115a12.23 12.23 0 0 0 5.32 10.604 6.562 6.562 0 0 1 2.845 5.423v3.754h7.65v-3.754a6.561 6.561 0 0 1 2.844-5.423 12.223 12.223 0 0 0 5.32-10.604Z" }) + ] + } + ); +}); + +export { SiMermaid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.cjs new file mode 100644 index 000000000..2533428b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0866FF"; +const SiMessenger = React__namespace.forwardRef(function SiMessenger2({ title = "Messenger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.24 0 0 4.952 0 11.64c0 3.499 1.434 6.521 3.769 8.61a.96.96 0 0 1 .323.683l.065 2.135a.96.96 0 0 0 1.347.85l2.381-1.053a.96.96 0 0 1 .641-.046A13 13 0 0 0 12 23.28c6.76 0 12-4.952 12-11.64S18.76 0 12 0m6.806 7.44c.522-.03.971.567.63 1.094l-4.178 6.457a.707.707 0 0 1-.977.208l-3.87-2.504a.44.44 0 0 0-.49.007l-4.363 3.01c-.637.438-1.415-.317-.995-.966l4.179-6.457a.706.706 0 0 1 .977-.21l3.87 2.505c.15.097.344.094.491-.007l4.362-3.008a.7.7 0 0 1 .364-.13" }) + ] + } + ); +}); + +exports.default = SiMessenger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.d.ts new file mode 100644 index 000000000..624b016c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0866FF"; +declare const SiMessenger: IconType; +export { SiMessenger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.mjs new file mode 100644 index 000000000..88c3ded6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMessenger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0866FF"; +const SiMessenger = React.forwardRef(function SiMessenger2({ title = "Messenger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.24 0 0 4.952 0 11.64c0 3.499 1.434 6.521 3.769 8.61a.96.96 0 0 1 .323.683l.065 2.135a.96.96 0 0 0 1.347.85l2.381-1.053a.96.96 0 0 1 .641-.046A13 13 0 0 0 12 23.28c6.76 0 12-4.952 12-11.64S18.76 0 12 0m6.806 7.44c.522-.03.971.567.63 1.094l-4.178 6.457a.707.707 0 0 1-.977.208l-3.87-2.504a.44.44 0 0 0-.49.007l-4.363 3.01c-.637.438-1.415-.317-.995-.966l4.179-6.457a.706.706 0 0 1 .977-.21l3.87 2.505c.15.097.344.094.491-.007l4.362-3.008a.7.7 0 0 1 .364-.13" }) + ] + } + ); +}); + +export { SiMessenger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.cjs new file mode 100644 index 000000000..b750070de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0467DF"; +const SiMeta = React__namespace.forwardRef(function SiMeta2({ title = "Meta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a6.624 6.624 0 0 0 .265.86 5.297 5.297 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.743 3.743 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a44.908 44.908 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.264 2.264 0 0 1 1.088-.285z" }) + ] + } + ); +}); + +exports.default = SiMeta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.d.ts new file mode 100644 index 000000000..fe132e598 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0467DF"; +declare const SiMeta: IconType; +export { SiMeta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.mjs new file mode 100644 index 000000000..1c9045672 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0467DF"; +const SiMeta = React.forwardRef(function SiMeta2({ title = "Meta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a6.624 6.624 0 0 0 .265.86 5.297 5.297 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.743 3.743 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a44.908 44.908 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.264 2.264 0 0 1 1.088-.285z" }) + ] + } + ); +}); + +export { SiMeta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.cjs new file mode 100644 index 000000000..60be25e17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#509EE3"; +const SiMetabase = React__namespace.forwardRef(function SiMetabase2({ title = "Metabase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.385 6.136c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-1.438 2.63c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zm5.465-2.63c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.499-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm-1.088 5.592c.794 0 1.438-.654 1.438-1.461s-.644-1.461-1.438-1.461-1.438.654-1.438 1.461.643 1.461 1.438 1.461zm5.464-5.592c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111S11.4 7.247 12 7.247s1.088-.498 1.088-1.111zm.35-4.675c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461S11.206 0 12 0s1.438.654 1.438 1.461zm-.35 0C13.088.848 12.6.35 12 .35s-1.088.498-1.088 1.111S11.4 2.572 12 2.572s1.088-.498 1.088-1.111zm.35 8.806c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.499 1.088-1.111zm4.376-4.131c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm2.939 1.461c.794 0 1.438-.654 1.438-1.461s-.644-1.461-1.438-1.461-1.438.654-1.438 1.461.644 1.461 1.438 1.461zm-4.027 1.209c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.643-1.461-1.438-1.461zm4.027 0c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zM3.947 12.857a1.45 1.45 0 0 0-1.438 1.461c0 .807.644 1.461 1.438 1.461s1.438-.654 1.438-1.461a1.45 1.45 0 0 0-1.438-1.461zm5.465 1.5c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.655 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zM12 12.896c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zm5.464 1.461c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.655 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm2.939-1.461c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zM3.947 16.948c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zm5.465 1.5c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm4.376 0c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm.35 4.091c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111S11.4 23.65 12 23.65s1.088-.498 1.088-1.111zm4.376-4.091c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm2.939-1.461c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461z" }) + ] + } + ); +}); + +exports.default = SiMetabase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.d.ts new file mode 100644 index 000000000..beffc4ab7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#509EE3"; +declare const SiMetabase: IconType; +export { SiMetabase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.mjs new file mode 100644 index 000000000..b891962a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetabase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#509EE3"; +const SiMetabase = React.forwardRef(function SiMetabase2({ title = "Metabase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.385 6.136c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-1.438 2.63c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zm5.465-2.63c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.499-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm-1.088 5.592c.794 0 1.438-.654 1.438-1.461s-.644-1.461-1.438-1.461-1.438.654-1.438 1.461.643 1.461 1.438 1.461zm5.464-5.592c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111S11.4 7.247 12 7.247s1.088-.498 1.088-1.111zm.35-4.675c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461S11.206 0 12 0s1.438.654 1.438 1.461zm-.35 0C13.088.848 12.6.35 12 .35s-1.088.498-1.088 1.111S11.4 2.572 12 2.572s1.088-.498 1.088-1.111zm.35 8.806c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.499 1.088-1.111zm4.376-4.131c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm2.939 1.461c.794 0 1.438-.654 1.438-1.461s-.644-1.461-1.438-1.461-1.438.654-1.438 1.461.644 1.461 1.438 1.461zm-4.027 1.209c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.643-1.461-1.438-1.461zm4.027 0c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zM3.947 12.857a1.45 1.45 0 0 0-1.438 1.461c0 .807.644 1.461 1.438 1.461s1.438-.654 1.438-1.461a1.45 1.45 0 0 0-1.438-1.461zm5.465 1.5c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.655 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zM12 12.896c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zm5.464 1.461c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.655 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm2.939-1.461c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zM3.947 16.948c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461zm5.465 1.5c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm4.376 0c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm.35 4.091c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111S11.4 23.65 12 23.65s1.088-.498 1.088-1.111zm4.376-4.091c0 .807-.644 1.461-1.438 1.461s-1.438-.654-1.438-1.461.644-1.461 1.438-1.461 1.438.654 1.438 1.461zm-.35 0c0-.613-.488-1.111-1.088-1.111s-1.088.498-1.088 1.111.488 1.111 1.088 1.111 1.088-.498 1.088-1.111zm2.939-1.461c-.794 0-1.438.654-1.438 1.461s.644 1.461 1.438 1.461 1.438-.654 1.438-1.461-.644-1.461-1.438-1.461z" }) + ] + } + ); +}); + +export { SiMetabase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.cjs new file mode 100644 index 000000000..5dadfee68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMetacritic = React__namespace.forwardRef(function SiMetacritic2({ title = "Metacritic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.99 0A12 12 0 1 0 24 12v-.014A12 12 0 0 0 11.99 0Zm-.055 2.564a9.399 9.399 0 0 1 9.407 9.389v.01a9.399 9.399 0 1 1-9.408-9.399Zm-1.61 17.198 2.046-2.046-3.94-3.94c-.165-.166-.345-.373-.442-.608-.221-.47-.318-1.203.221-1.742.664-.664 1.548-.387 2.406.47l3.788 3.788 2.046-2.046-3.954-3.954a2.48 2.48 0 0 1-.456-.622c-.263-.539-.25-1.216.235-1.7.677-.678 1.562-.429 2.544.553l3.677 3.677 2.046-2.046-3.982-3.982c-2.018-2.018-3.912-1.949-5.212-.65-.498.499-.802 1.024-.954 1.618a4.026 4.026 0 0 0-.055 1.686l-.027.028c-.996-.414-2.13-.166-3 .705-1.162 1.161-1.12 2.392-.982 3.11l-.042.043-1.009-.816-1.77 1.77a64.1 64.1 0 0 1 2.213 2.1z" }) + ] + } + ); +}); + +exports.default = SiMetacritic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.d.ts new file mode 100644 index 000000000..0d7c75738 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMetacritic: IconType; +export { SiMetacritic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.mjs new file mode 100644 index 000000000..58d6e357b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetacritic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMetacritic = React.forwardRef(function SiMetacritic2({ title = "Metacritic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.99 0A12 12 0 1 0 24 12v-.014A12 12 0 0 0 11.99 0Zm-.055 2.564a9.399 9.399 0 0 1 9.407 9.389v.01a9.399 9.399 0 1 1-9.408-9.399Zm-1.61 17.198 2.046-2.046-3.94-3.94c-.165-.166-.345-.373-.442-.608-.221-.47-.318-1.203.221-1.742.664-.664 1.548-.387 2.406.47l3.788 3.788 2.046-2.046-3.954-3.954a2.48 2.48 0 0 1-.456-.622c-.263-.539-.25-1.216.235-1.7.677-.678 1.562-.429 2.544.553l3.677 3.677 2.046-2.046-3.982-3.982c-2.018-2.018-3.912-1.949-5.212-.65-.498.499-.802 1.024-.954 1.618a4.026 4.026 0 0 0-.055 1.686l-.027.028c-.996-.414-2.13-.166-3 .705-1.162 1.161-1.12 2.392-.982 3.11l-.042.043-1.009-.816-1.77 1.77a64.1 64.1 0 0 1 2.213 2.1z" }) + ] + } + ); +}); + +export { SiMetacritic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.cjs new file mode 100644 index 000000000..0d47b0198 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#065A8F"; +const SiMetafilter = React__namespace.forwardRef(function SiMetafilter2({ title = "MetaFilter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.548 5.26l-.87 4.894h3.558l-.519 2.83h-3.592l-1.602 8.639h-2.857l3.586-19.248H24l-.537 2.885h-4.915zm-7.331-2.884L7.19 13.472V2.376H3.581L0 21.624h2.452L5.198 6.728l-.251 14.896h1.421l5.225-14.896-2.786 14.896h2.48l3.581-19.248h-3.651z" }) + ] + } + ); +}); + +exports.default = SiMetafilter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.d.ts new file mode 100644 index 000000000..c71058e64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#065A8F"; +declare const SiMetafilter: IconType; +export { SiMetafilter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.mjs new file mode 100644 index 000000000..90c073354 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetafilter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#065A8F"; +const SiMetafilter = React.forwardRef(function SiMetafilter2({ title = "MetaFilter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.548 5.26l-.87 4.894h3.558l-.519 2.83h-3.592l-1.602 8.639h-2.857l3.586-19.248H24l-.537 2.885h-4.915zm-7.331-2.884L7.19 13.472V2.376H3.581L0 21.624h2.452L5.198 6.728l-.251 14.896h1.421l5.225-14.896-2.786 14.896h2.48l3.581-19.248h-3.651z" }) + ] + } + ); +}); + +export { SiMetafilter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.cjs new file mode 100644 index 000000000..ee3c436d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F47216"; +const SiMetager = React__namespace.forwardRef(function SiMetager2({ title = "MetaGer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.563 0v6.92h2.083c.818 0 1.227-.434 1.227-1.289V3.264h10.391c3.035 0 4.552 1.613 4.552 4.736v2.575H4.873v1.562c0 .851-.412 1.288-1.227 1.288H.827v4.23C.827 21.885 2.942 24 7.218 24h8.46c4.965 0 7.494-2.575 7.494-7.678V7.678C23.172 2.575 20.643 0 15.678 0zm8.706 13.425h2.246c1.513 0 2.089.777 2.089 2.226v3.389c0 1.15-.577 1.747-1.705 1.747h-1.16c-.976 0-1.47-.578-1.47-1.726v-5.636" }) + ] + } + ); +}); + +exports.default = SiMetager; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.d.ts new file mode 100644 index 000000000..f2e8c271c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F47216"; +declare const SiMetager: IconType; +export { SiMetager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.mjs new file mode 100644 index 000000000..b0de0095b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetager.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F47216"; +const SiMetager = React.forwardRef(function SiMetager2({ title = "MetaGer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.563 0v6.92h2.083c.818 0 1.227-.434 1.227-1.289V3.264h10.391c3.035 0 4.552 1.613 4.552 4.736v2.575H4.873v1.562c0 .851-.412 1.288-1.227 1.288H.827v4.23C.827 21.885 2.942 24 7.218 24h8.46c4.965 0 7.494-2.575 7.494-7.678V7.678C23.172 2.575 20.643 0 15.678 0zm8.706 13.425h2.246c1.513 0 2.089.777 2.089 2.226v3.389c0 1.15-.577 1.747-1.705 1.747h-1.16c-.976 0-1.47-.578-1.47-1.726v-5.636" }) + ] + } + ); +}); + +export { SiMetager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.cjs new file mode 100644 index 000000000..c03521426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2596CD"; +const SiMetasploit = React__namespace.forwardRef(function SiMetasploit2({ title = "Metasploit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.353 0h1.368q4.19.218 8.144 1.616.217.077.216.309-.015 4.033-.002 12.102 0 .81-.093 1.173c-.217.845-.76 1.635-1.326 2.325q-.318.388-1.024 1.046-2.955 2.75-6.01 5.094-.183.14-.516.335h-.17q-.627-.42-.945-.673-3.992-3.184-5.442-4.459-1.348-1.185-2.169-2.611c-.369-.64-.466-1.287-.465-2.099q.01-6.048.002-12.218c0-.183.09-.264.261-.325Q7.145.227 11.352 0ZM7.474 7.864q0-.094.069-.031l2.797 2.516a.374.372 21.2 0 1 .122.276l-.006 4.333a.182.182 0 0 0 .183.184l2.524-.018a.11.11 89.8 0 0 .108-.11q-.007-2.201.01-4.461.002-.173.146-.29 1.397-1.145 2.946-2.393.068-.055.068.032v10.881q0 .092.063.024.794-.865 1.628-1.838.71-.83.984-1.87.26-.989.262-1.997.007-4.754.009-9.768a.136.136 0 0 0-.137-.136q-1.15.004-2.424 0c-.287-.002-.441-.022-.619.149Q14.16 5.317 11.982 7.4a.046.046 0 0 1-.062 0Q9.782 5.437 7.769 3.525c-.234-.222-.515-.381-.843-.373q-1.09.026-2.33.005-.184-.004-.184.18-.003 4.54.005 9.032.002.536.036 1.027c.076 1.093.2 2.126.803 3.021.574.852 1.329 1.656 2.126 2.405q.023.022.054.026.04.006.04-.034z" }) + ] + } + ); +}); + +exports.default = SiMetasploit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.d.ts new file mode 100644 index 000000000..a9bbb3f93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2596CD"; +declare const SiMetasploit: IconType; +export { SiMetasploit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.mjs new file mode 100644 index 000000000..725ab5d5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetasploit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2596CD"; +const SiMetasploit = React.forwardRef(function SiMetasploit2({ title = "Metasploit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.353 0h1.368q4.19.218 8.144 1.616.217.077.216.309-.015 4.033-.002 12.102 0 .81-.093 1.173c-.217.845-.76 1.635-1.326 2.325q-.318.388-1.024 1.046-2.955 2.75-6.01 5.094-.183.14-.516.335h-.17q-.627-.42-.945-.673-3.992-3.184-5.442-4.459-1.348-1.185-2.169-2.611c-.369-.64-.466-1.287-.465-2.099q.01-6.048.002-12.218c0-.183.09-.264.261-.325Q7.145.227 11.352 0ZM7.474 7.864q0-.094.069-.031l2.797 2.516a.374.372 21.2 0 1 .122.276l-.006 4.333a.182.182 0 0 0 .183.184l2.524-.018a.11.11 89.8 0 0 .108-.11q-.007-2.201.01-4.461.002-.173.146-.29 1.397-1.145 2.946-2.393.068-.055.068.032v10.881q0 .092.063.024.794-.865 1.628-1.838.71-.83.984-1.87.26-.989.262-1.997.007-4.754.009-9.768a.136.136 0 0 0-.137-.136q-1.15.004-2.424 0c-.287-.002-.441-.022-.619.149Q14.16 5.317 11.982 7.4a.046.046 0 0 1-.062 0Q9.782 5.437 7.769 3.525c-.234-.222-.515-.381-.843-.373q-1.09.026-2.33.005-.184-.004-.184.18-.003 4.54.005 9.032.002.536.036 1.027c.076 1.093.2 2.126.803 3.021.574.852 1.329 1.656 2.126 2.405q.023.022.054.026.04.006.04-.034z" }) + ] + } + ); +}); + +export { SiMetasploit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.cjs new file mode 100644 index 000000000..6a4326062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DE4F4F"; +const SiMeteor = React__namespace.forwardRef(function SiMeteor2({ title = "Meteor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .234l21.912 20.537s.412.575-.124 1.151c-.535.576-1.236.083-1.236.083L0 .234zm6.508 2.058l17.01 15.638s.413.576-.123 1.152c-.534.576-1.235.083-1.235.083L6.508 2.292zM1.936 6.696l17.01 15.638s.412.576-.123 1.152-1.235.082-1.235.082L1.936 6.696zm10.073-2.635l11.886 10.927s.287.401-.087.805-.863.058-.863.058L12.009 4.061zm-8.567 7.737l11.886 10.926s.285.4-.088.803c-.375.403-.863.059-.863.059L3.442 11.798zm14.187-5.185l5.426 4.955s.142.188-.044.377c-.185.188-.428.027-.428.027l-4.954-5.358v-.001zM6.178 17.231l5.425 4.956s.144.188-.042.377-.427.026-.427.026l-4.956-5.359z" }) + ] + } + ); +}); + +exports.default = SiMeteor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.d.ts new file mode 100644 index 000000000..928d757e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DE4F4F"; +declare const SiMeteor: IconType; +export { SiMeteor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.mjs new file mode 100644 index 000000000..62f4f00bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMeteor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DE4F4F"; +const SiMeteor = React.forwardRef(function SiMeteor2({ title = "Meteor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .234l21.912 20.537s.412.575-.124 1.151c-.535.576-1.236.083-1.236.083L0 .234zm6.508 2.058l17.01 15.638s.413.576-.123 1.152c-.534.576-1.235.083-1.235.083L6.508 2.292zM1.936 6.696l17.01 15.638s.412.576-.123 1.152-1.235.082-1.235.082L1.936 6.696zm10.073-2.635l11.886 10.927s.287.401-.087.805-.863.058-.863.058L12.009 4.061zm-8.567 7.737l11.886 10.926s.285.4-.088.803c-.375.403-.863.059-.863.059L3.442 11.798zm14.187-5.185l5.426 4.955s.142.188-.044.377c-.185.188-.428.027-.428.027l-4.954-5.358v-.001zM6.178 17.231l5.425 4.956s.144.188-.042.377-.427.026-.427.026l-4.956-5.359z" }) + ] + } + ); +}); + +export { SiMeteor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.cjs new file mode 100644 index 000000000..767b54642 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF4242"; +const SiMetro = React__namespace.forwardRef(function SiMetro2({ title = "Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.655 0-1.31.143-1.807.43l-7.31 4.22c-.99.574-1.806 1.98-1.806 3.129v8.442c0 1.14.813 2.555 1.805 3.128l7.311 4.221c.994.573 2.619.573 3.612 0l7.311-4.22c.994-.574 1.807-1.982 1.807-3.129V7.779c0-1.14-.813-2.555-1.807-3.128L13.806.43C13.308.143 12.653 0 11.998 0zm.005 2.606c.29 0 .577.073.834.209l4.718 2.724-1.76 1.067L12 4.414 8.21 6.602 6.448 5.534l4.71-2.72c.26-.137.551-.21.847-.208zm7.577 4.237a.905.905 0 0 1 .909.9c-.001 2.472 0 5.432-.008 8.313a1.761 1.761 0 0 1-.84 1.46l-6.8 3.927a1.694 1.694 0 0 1-.843.215 1.7 1.7 0 0 1-.844-.215l-6.802-3.927a1.763 1.763 0 0 1-.842-1.46V7.75a.905.905 0 0 1 1.376-.765C7.188 8.381 9.626 9.835 12 11.3c2.375-1.443 4.757-2.897 7.115-4.322a.895.895 0 0 1 .467-.135zM5.32 9.355v6.632L12 19.844l6.682-3.857V9.355l-6.213 3.773a.899.899 0 0 1-.937 0Z" }) + ] + } + ); +}); + +exports.default = SiMetro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.d.ts new file mode 100644 index 000000000..a131c66e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF4242"; +declare const SiMetro: IconType; +export { SiMetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.mjs new file mode 100644 index 000000000..74432e634 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF4242"; +const SiMetro = React.forwardRef(function SiMetro2({ title = "Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.655 0-1.31.143-1.807.43l-7.31 4.22c-.99.574-1.806 1.98-1.806 3.129v8.442c0 1.14.813 2.555 1.805 3.128l7.311 4.221c.994.573 2.619.573 3.612 0l7.311-4.22c.994-.574 1.807-1.982 1.807-3.129V7.779c0-1.14-.813-2.555-1.807-3.128L13.806.43C13.308.143 12.653 0 11.998 0zm.005 2.606c.29 0 .577.073.834.209l4.718 2.724-1.76 1.067L12 4.414 8.21 6.602 6.448 5.534l4.71-2.72c.26-.137.551-.21.847-.208zm7.577 4.237a.905.905 0 0 1 .909.9c-.001 2.472 0 5.432-.008 8.313a1.761 1.761 0 0 1-.84 1.46l-6.8 3.927a1.694 1.694 0 0 1-.843.215 1.7 1.7 0 0 1-.844-.215l-6.802-3.927a1.763 1.763 0 0 1-.842-1.46V7.75a.905.905 0 0 1 1.376-.765C7.188 8.381 9.626 9.835 12 11.3c2.375-1.443 4.757-2.897 7.115-4.322a.895.895 0 0 1 .467-.135zM5.32 9.355v6.632L12 19.844l6.682-3.857V9.355l-6.213 3.773a.899.899 0 0 1-.937 0Z" }) + ] + } + ); +}); + +export { SiMetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.cjs new file mode 100644 index 000000000..7180c8fa2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F77E1C"; +const SiMetrodelaciudaddemexico = React__namespace.forwardRef(function SiMetrodelaciudaddemexico2({ title = "Metro de la Ciudad de México", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.965 8.704V24H.008V6.864h2.097c1.066 0 1.86.774 1.86 1.84m2.366-1.84c.268.521.521 1.315.521 1.84V24h3.685V8.704a1.784 1.784 0 0 0-1.84-1.84M17.4 24V8.704a1.795 1.795 0 0 0-1.844-1.84h-2.382c.269.521.269 1.315.269 1.84V24M.008 3.953V0h15.549c4.75 0 8.435 3.953 8.435 8.704V24h-3.685V8.704a4.735 4.735 0 0 0-4.75-4.75z" }) + ] + } + ); +}); + +exports.default = SiMetrodelaciudaddemexico; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.d.ts new file mode 100644 index 000000000..c4aa96510 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F77E1C"; +declare const SiMetrodelaciudaddemexico: IconType; +export { SiMetrodelaciudaddemexico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.mjs new file mode 100644 index 000000000..75f826ae7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodelaciudaddemexico.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F77E1C"; +const SiMetrodelaciudaddemexico = React.forwardRef(function SiMetrodelaciudaddemexico2({ title = "Metro de la Ciudad de México", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.965 8.704V24H.008V6.864h2.097c1.066 0 1.86.774 1.86 1.84m2.366-1.84c.268.521.521 1.315.521 1.84V24h3.685V8.704a1.784 1.784 0 0 0-1.84-1.84M17.4 24V8.704a1.795 1.795 0 0 0-1.844-1.84h-2.382c.269.521.269 1.315.269 1.84V24M.008 3.953V0h15.549c4.75 0 8.435 3.953 8.435 8.704V24h-3.685V8.704a4.735 4.735 0 0 0-4.75-4.75z" }) + ] + } + ); +}); + +export { SiMetrodelaciudaddemexico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.cjs new file mode 100644 index 000000000..58eaed5bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#255E9C"; +const SiMetrodemadrid = React__namespace.forwardRef(function SiMetrodemadrid2({ title = "Metro de Madrid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4.74L0 12l12 7.26L24 12 12 4.74zm0 2.905l3.45 2.087h-6.9L12 7.645zM7.2 10.64h.786l.606 1.77.564-1.77h.79v2.568h-.524l-.006-1.82-.627 1.82h-.432l-.632-1.805v1.805h-.526V10.64zm5.275.148h.51l.001.559h.371v.343h-.37v.92c0 .174.041.215.212.215a.69.69 0 0 0 .158-.014v.4a1.907 1.907 0 0 1-.298.018c-.313 0-.584-.073-.584-.443V11.69h-.307v-.341h.307v-.559zm5.222.303l1.5.908-1.5.908v-1.816zM6.3 11.094v1.812L4.8 12l1.498-.906zm8.455.203a.345.345 0 0 1 .11.017v.475a.81.81 0 0 0-.18-.018c-.37 0-.5.27-.5.598v.842h-.508v-1.863h.48l.006.345a.653.653 0 0 1 .592-.396zm1.127 0c.58 0 .957.39.957.982s-.377.98-.957.98c-.578 0-.953-.39-.953-.98 0-.593.375-.98.953-.982zm-4.738.002c.628 0 .932.532.896 1.103v.004h-1.334c.015.325.172.473.455.473.204 0 .368-.126.4-.24h.446c-.141.439-.445.625-.863.625-.581 0-.942-.407-.942-.98 0-.56.382-.985.942-.985zm-.012.383c-.322 0-.416.252-.422.396h.824c-.045-.262-.156-.396-.402-.396zm4.75 0c-.343 0-.445.3-.445.597 0 .295.102.596.445.596.349 0 .45-.3.45-.596 0-.3-.104-.597-.45-.597zM8.55 14.268h6.9L12 16.355l-3.451-2.087z" }) + ] + } + ); +}); + +exports.default = SiMetrodemadrid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.d.ts new file mode 100644 index 000000000..d2a152362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#255E9C"; +declare const SiMetrodemadrid: IconType; +export { SiMetrodemadrid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.mjs new file mode 100644 index 000000000..c9bff6a91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodemadrid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#255E9C"; +const SiMetrodemadrid = React.forwardRef(function SiMetrodemadrid2({ title = "Metro de Madrid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 4.74L0 12l12 7.26L24 12 12 4.74zm0 2.905l3.45 2.087h-6.9L12 7.645zM7.2 10.64h.786l.606 1.77.564-1.77h.79v2.568h-.524l-.006-1.82-.627 1.82h-.432l-.632-1.805v1.805h-.526V10.64zm5.275.148h.51l.001.559h.371v.343h-.37v.92c0 .174.041.215.212.215a.69.69 0 0 0 .158-.014v.4a1.907 1.907 0 0 1-.298.018c-.313 0-.584-.073-.584-.443V11.69h-.307v-.341h.307v-.559zm5.222.303l1.5.908-1.5.908v-1.816zM6.3 11.094v1.812L4.8 12l1.498-.906zm8.455.203a.345.345 0 0 1 .11.017v.475a.81.81 0 0 0-.18-.018c-.37 0-.5.27-.5.598v.842h-.508v-1.863h.48l.006.345a.653.653 0 0 1 .592-.396zm1.127 0c.58 0 .957.39.957.982s-.377.98-.957.98c-.578 0-.953-.39-.953-.98 0-.593.375-.98.953-.982zm-4.738.002c.628 0 .932.532.896 1.103v.004h-1.334c.015.325.172.473.455.473.204 0 .368-.126.4-.24h.446c-.141.439-.445.625-.863.625-.581 0-.942-.407-.942-.98 0-.56.382-.985.942-.985zm-.012.383c-.322 0-.416.252-.422.396h.824c-.045-.262-.156-.396-.402-.396zm4.75 0c-.343 0-.445.3-.445.597 0 .295.102.596.445.596.349 0 .45-.3.45-.596 0-.3-.104-.597-.45-.597zM8.55 14.268h6.9L12 16.355l-3.451-2.087z" }) + ] + } + ); +}); + +export { SiMetrodemadrid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.cjs new file mode 100644 index 000000000..e5822e217 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003E95"; +const SiMetrodeparis = React__namespace.forwardRef(function SiMetrodeparis2({ title = "Métro de Paris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.708 18.099c-.202.152-.44.228-.714.228-.242 0-.471-.076-.688-.228-.218-.152-.327-.373-.327-.66V9.626h-.023l-2.984 6.057a1.453 1.453 0 0 1-.385.505c-.145.112-.337.168-.578.168-.24 0-.433-.056-.577-.168a1.442 1.442 0 0 1-.385-.505L8.063 9.627H8.04v7.811a.748.748 0 0 1-.339.66 1.23 1.23 0 0 1-.7.229c-.275 0-.508-.076-.702-.228-.193-.152-.29-.373-.29-.66V6.958c0-.304.096-.589.29-.853.192-.264.537-.396 1.036-.396.37 0 .655.084.856.252.2.169.38.421.542.757l3.277 6.754h.024l3.253-6.754c.16-.336.342-.588.543-.757.2-.168.485-.252.855-.252.498 0 .844.132 1.036.396.193.265.29.55.29.854v10.478c0 .288-.101.509-.302.66zm-5.732 4.156c5.658 0 10.279-4.64 10.279-10.327 0-5.62-4.603-10.183-10.279-10.183-5.674 0-10.23 4.536-10.23 10.183 0 5.59 4.715 10.327 10.23 10.327zm0 1.745C5.495 24 0 18.48 0 11.928 0 5.315 5.34 0 11.976 0 18.613 0 24 5.34 24 11.928 24 18.577 18.6 24 11.976 24Z" }) + ] + } + ); +}); + +exports.default = SiMetrodeparis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.d.ts new file mode 100644 index 000000000..b988228e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003E95"; +declare const SiMetrodeparis: IconType; +export { SiMetrodeparis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.mjs new file mode 100644 index 000000000..07a04f409 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMetrodeparis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003E95"; +const SiMetrodeparis = React.forwardRef(function SiMetrodeparis2({ title = "Métro de Paris", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.708 18.099c-.202.152-.44.228-.714.228-.242 0-.471-.076-.688-.228-.218-.152-.327-.373-.327-.66V9.626h-.023l-2.984 6.057a1.453 1.453 0 0 1-.385.505c-.145.112-.337.168-.578.168-.24 0-.433-.056-.577-.168a1.442 1.442 0 0 1-.385-.505L8.063 9.627H8.04v7.811a.748.748 0 0 1-.339.66 1.23 1.23 0 0 1-.7.229c-.275 0-.508-.076-.702-.228-.193-.152-.29-.373-.29-.66V6.958c0-.304.096-.589.29-.853.192-.264.537-.396 1.036-.396.37 0 .655.084.856.252.2.169.38.421.542.757l3.277 6.754h.024l3.253-6.754c.16-.336.342-.588.543-.757.2-.168.485-.252.855-.252.498 0 .844.132 1.036.396.193.265.29.55.29.854v10.478c0 .288-.101.509-.302.66zm-5.732 4.156c5.658 0 10.279-4.64 10.279-10.327 0-5.62-4.603-10.183-10.279-10.183-5.674 0-10.23 4.536-10.23 10.183 0 5.59 4.715 10.327 10.23 10.327zm0 1.745C5.495 24 0 18.48 0 11.928 0 5.315 5.34 0 11.976 0 18.613 0 24 5.34 24 11.928 24 18.577 18.6 24 11.976 24Z" }) + ] + } + ); +}); + +export { SiMetrodeparis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.cjs new file mode 100644 index 000000000..c66a9f6dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17377F"; +const SiMewe = React__namespace.forwardRef(function SiMewe2({ title = "MeWe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.029 7.712a.768.768 0 100 1.536.768.768 0 000-1.536zm7.883 0a.768.768 0 100 1.536.768.768 0 000-1.536zm4.414 0a.768.768 0 100 1.536.768.768 0 000-1.536zm4.418 0a.768.768 0 100 1.537.768.768 0 000-1.537zm-4.447 2.307c-.27 0-.453.175-.54.428l-1.378 4.175-1.403-4.193a.546.546 0 00-.532-.392c-.296 0-.55.227-.55.523 0 .07.018.148.044.21l1.805 5.056c.105.279.296.444.558.444h.105c.261 0 .461-.165.557-.444l1.36-3.985 1.36 3.985c.096.279.288.444.55.444h.105c.261 0 .462-.174.558-.444l1.804-5.057a.617.617 0 00.052-.218.525.525 0 00-.531-.514c-.262 0-.445.166-.523.383l-1.404 4.202-1.377-4.175c-.079-.253-.27-.428-.541-.428zM.54 10.045a.538.538 0 00-.54.541v5.117c0 .297.227.523.523.523a.52.52 0 00.532-.523V12.05l1.482 2.224c.113.174.253.279.444.279.201 0 .34-.105.454-.28l1.49-2.24v3.661a.54.54 0 00.533.532.53.53 0 00.54-.532v-5.108a.538.538 0 00-.54-.54h-.114a.54.54 0 00-.488.278L3 13.227 1.15 10.333a.565.565 0 00-.497-.288zm8.368 1.439c-1.316 0-2.25 1.081-2.25 2.397v.018c0 1.42 1.03 2.389 2.363 2.389.715 0 1.239-.236 1.657-.61a.46.46 0 00.14-.323.415.415 0 00-.419-.427.391.391 0 00-.27.096 1.655 1.655 0 01-1.09.4c-.68 0-1.212-.418-1.325-1.168h2.885c.27 0 .497-.209.497-.505 0-1.064-.723-2.267-2.188-2.267zm12.904 0c-1.317 0-2.25 1.081-2.25 2.397v.018c0 1.42 1.029 2.389 2.363 2.389.715 0 1.238-.236 1.657-.61a.46.46 0 00.139-.323.415.415 0 00-.418-.427.392.392 0 00-.271.096 1.652 1.652 0 01-1.09.4c-.68 0-1.211-.418-1.325-1.168h2.886c.27 0 .497-.209.497-.505 0-1.064-.724-2.267-2.188-2.267zm-12.913.863c.698 0 1.099.532 1.169 1.212H7.705c.096-.715.549-1.212 1.194-1.212zm12.904 0c.697 0 1.098.532 1.168 1.212h-2.363c.096-.715.55-1.212 1.195-1.212z" }) + ] + } + ); +}); + +exports.default = SiMewe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.d.ts new file mode 100644 index 000000000..b27675024 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17377F"; +declare const SiMewe: IconType; +export { SiMewe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.mjs new file mode 100644 index 000000000..ae7f4d7e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMewe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17377F"; +const SiMewe = React.forwardRef(function SiMewe2({ title = "MeWe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.029 7.712a.768.768 0 100 1.536.768.768 0 000-1.536zm7.883 0a.768.768 0 100 1.536.768.768 0 000-1.536zm4.414 0a.768.768 0 100 1.536.768.768 0 000-1.536zm4.418 0a.768.768 0 100 1.537.768.768 0 000-1.537zm-4.447 2.307c-.27 0-.453.175-.54.428l-1.378 4.175-1.403-4.193a.546.546 0 00-.532-.392c-.296 0-.55.227-.55.523 0 .07.018.148.044.21l1.805 5.056c.105.279.296.444.558.444h.105c.261 0 .461-.165.557-.444l1.36-3.985 1.36 3.985c.096.279.288.444.55.444h.105c.261 0 .462-.174.558-.444l1.804-5.057a.617.617 0 00.052-.218.525.525 0 00-.531-.514c-.262 0-.445.166-.523.383l-1.404 4.202-1.377-4.175c-.079-.253-.27-.428-.541-.428zM.54 10.045a.538.538 0 00-.54.541v5.117c0 .297.227.523.523.523a.52.52 0 00.532-.523V12.05l1.482 2.224c.113.174.253.279.444.279.201 0 .34-.105.454-.28l1.49-2.24v3.661a.54.54 0 00.533.532.53.53 0 00.54-.532v-5.108a.538.538 0 00-.54-.54h-.114a.54.54 0 00-.488.278L3 13.227 1.15 10.333a.565.565 0 00-.497-.288zm8.368 1.439c-1.316 0-2.25 1.081-2.25 2.397v.018c0 1.42 1.03 2.389 2.363 2.389.715 0 1.239-.236 1.657-.61a.46.46 0 00.14-.323.415.415 0 00-.419-.427.391.391 0 00-.27.096 1.655 1.655 0 01-1.09.4c-.68 0-1.212-.418-1.325-1.168h2.885c.27 0 .497-.209.497-.505 0-1.064-.723-2.267-2.188-2.267zm12.904 0c-1.317 0-2.25 1.081-2.25 2.397v.018c0 1.42 1.029 2.389 2.363 2.389.715 0 1.238-.236 1.657-.61a.46.46 0 00.139-.323.415.415 0 00-.418-.427.392.392 0 00-.271.096 1.652 1.652 0 01-1.09.4c-.68 0-1.211-.418-1.325-1.168h2.886c.27 0 .497-.209.497-.505 0-1.064-.724-2.267-2.188-2.267zm-12.913.863c.698 0 1.099.532 1.169 1.212H7.705c.096-.715.549-1.212 1.194-1.212zm12.904 0c.697 0 1.098.532 1.168 1.212h-2.363c.096-.715.55-1.212 1.195-1.212z" }) + ] + } + ); +}); + +export { SiMewe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.cjs new file mode 100644 index 000000000..01e0e90a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E9FF92"; +const SiMezmo = React__namespace.forwardRef(function SiMezmo2({ title = "Mezmo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.537 18.084c0 1.28.578 2.176 1.926 2.176 1.025 0 1.731-.767 2.117-1.856l3.594-10.369c.288-.862.738-1.342 1.636-1.342.675 0 1.253.48 1.253 1.342v11.778a.17.17 0 0 0 .195.195h2.544a.17.17 0 0 0 .196-.195V7.965c0-2.369-1.83-4.225-4.11-4.225-2.214 0-3.69 1.366-4.396 3.456l-1.7 4.991c-.065.195-.097.258-.196.258a.117.117 0 0 1-.13-.129V7.965c0-2.369-1.829-4.225-4.109-4.225-2.215 0-3.69 1.366-4.396 3.456l-1.7 4.991c-.065.195-.097.258-.196.258a.118.118 0 0 1-.128-.129V4.187a.17.17 0 0 0-.195-.195H.198a.17.17 0 0 0-.196.195v13.89c0 1.28.587 2.175 1.926 2.175 1.027 0 1.733-.767 2.119-1.856L7.64 8.027c.288-.8.803-1.342 1.636-1.342.681 0 1.26.48 1.26 1.342z" }) + ] + } + ); +}); + +exports.default = SiMezmo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.d.ts new file mode 100644 index 000000000..4e89709be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E9FF92"; +declare const SiMezmo: IconType; +export { SiMezmo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.mjs new file mode 100644 index 000000000..fb3a39b8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMezmo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E9FF92"; +const SiMezmo = React.forwardRef(function SiMezmo2({ title = "Mezmo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.537 18.084c0 1.28.578 2.176 1.926 2.176 1.025 0 1.731-.767 2.117-1.856l3.594-10.369c.288-.862.738-1.342 1.636-1.342.675 0 1.253.48 1.253 1.342v11.778a.17.17 0 0 0 .195.195h2.544a.17.17 0 0 0 .196-.195V7.965c0-2.369-1.83-4.225-4.11-4.225-2.214 0-3.69 1.366-4.396 3.456l-1.7 4.991c-.065.195-.097.258-.196.258a.117.117 0 0 1-.13-.129V7.965c0-2.369-1.829-4.225-4.109-4.225-2.215 0-3.69 1.366-4.396 3.456l-1.7 4.991c-.065.195-.097.258-.196.258a.118.118 0 0 1-.128-.129V4.187a.17.17 0 0 0-.195-.195H.198a.17.17 0 0 0-.196.195v13.89c0 1.28.587 2.175 1.926 2.175 1.027 0 1.733-.767 2.119-1.856L7.64 8.027c.288-.8.803-1.342 1.636-1.342.681 0 1.26.48 1.26 1.342z" }) + ] + } + ); +}); + +export { SiMezmo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMg.cjs new file mode 100644 index 000000000..ae9be1faf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiMg = React__namespace.forwardRef(function SiMg2({ title = "MG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.835 8.428c-.015-.184-.034-.368-.053-.552-.016-.138-.034-.274-.052-.411a.592.592 0 0 0-.104-.243c-.087-.11-.175-.217-.266-.323l-.365-.429a42.198 42.198 0 0 0-2.509-2.638A42.774 42.774 0 0 0 17.3 1.064c-.11-.088-.222-.174-.336-.257a.664.664 0 0 0-.252-.1 21.852 21.852 0 0 0-1-.102 45.346 45.346 0 0 0-3.71-.158 45.291 45.291 0 0 0-4.286.211c-.142.015-.284.03-.426.048a.664.664 0 0 0-.253.1c-.113.085-.225.17-.337.258a42.775 42.775 0 0 0-3.185 2.768A42.467 42.467 0 0 0 .641 6.898c-.09.107-.18.215-.267.324a.609.609 0 0 0-.105.243c-.019.137-.035.273-.05.41-.02.185-.038.37-.056.553A41.387 41.387 0 0 0 0 12.001a41.35 41.35 0 0 0 .163 3.574l.057.552c.014.138.03.274.05.41.015.087.052.17.104.244a24.04 24.04 0 0 0 .633.753 42.577 42.577 0 0 0 2.507 2.636A42.394 42.394 0 0 0 6.7 22.938c.112.087.224.172.337.255a.663.663 0 0 0 .253.102l.426.048c.19.018.383.037.574.053 1.234.103 2.473.157 3.712.157 1.237 0 2.476-.054 3.71-.157.193-.016.384-.035.573-.053.144-.015.287-.031.427-.048a.66.66 0 0 0 .252-.102c.115-.083.227-.168.336-.255a42.392 42.392 0 0 0 3.187-2.767 42.424 42.424 0 0 0 2.509-2.637l.365-.43c.09-.106.18-.215.266-.323a.596.596 0 0 0 .104-.243c.018-.137.036-.273.052-.411A39.963 39.963 0 0 0 24 12c0-1.191-.058-2.384-.165-3.573m-1.805 6.601c-.013.156-.029.313-.044.469l-.044.348a.499.499 0 0 1-.089.205c-.073.092-.148.185-.225.276l-.31.363a35.829 35.829 0 0 1-2.126 2.234c-.86.827-1.762 1.61-2.7 2.346a7.787 7.787 0 0 1-.285.216.551.551 0 0 1-.214.087l-.362.04a38.171 38.171 0 0 1-3.63.178c-1.05 0-2.1-.045-3.146-.132l-.486-.045-.362-.041a.547.547 0 0 1-.214-.087 9.555 9.555 0 0 1-.285-.216c-.127-.099-.251-.2-.376-.3a35.855 35.855 0 0 1-2.324-2.046 36.03 36.03 0 0 1-2.125-2.234c-.182-.21-.361-.423-.536-.639a.515.515 0 0 1-.089-.205 33.972 33.972 0 0 1-.09-.817 34.723 34.723 0 0 1-.138-3.028c.003-1.01.047-2.02.138-3.029.015-.155.03-.311.048-.467.012-.118.026-.232.042-.348a.506.506 0 0 1 .089-.206 21.379 21.379 0 0 1 .536-.638 36.255 36.255 0 0 1 2.125-2.236 36.3 36.3 0 0 1 2.7-2.346c.094-.073.189-.146.285-.218a.553.553 0 0 1 .214-.084c.282-.035.565-.063.848-.086a38.642 38.642 0 0 1 3.146-.135 38.792 38.792 0 0 1 3.63.18c.122.012.243.026.362.04a.56.56 0 0 1 .214.085 26.752 26.752 0 0 1 .662.517 36.24 36.24 0 0 1 2.323 2.047c.74.715 1.45 1.46 2.126 2.236l.31.364c.077.09.152.181.225.274a.5.5 0 0 1 .089.205l.044.349c.015.155.031.312.044.467.091 1.009.14 2.019.14 3.029 0 1.01-.048 2.021-.14 3.028m-1.225-3c-.098-.01-.981-.012-1.456-.017-.622-.005-1.042 0-1.246-.001-.06 0-.068-.003-.135 0-.003.047-.003.071-.005.13-.002.043-.01.19-.018.384-.012.326-.026.787-.018 1.116l.001.114c.036.002.616.002 1.007.005.053 0 .057.001.11.003-.001.027 0 .052.001.097 0 .048-.055.74-.088.94-.1.149-.163.23-.367.456-.217.24-.256.3-.934.984-.704.712-2.035 1.867-2.513 2.263a9.84 9.84 0 0 0-.303.257s.007-.243-.002-.361c.018-4.565.013-7.807-.004-12.84.008-.114-.005-.209 0-.347.15.117.156.123.259.208.7.594 1.438 1.203 2.024 1.79.81.815 1.156 1.174 1.74 1.863.058.073.069.088.108.15.01.064.01.076.021.157.023.193.062.588.068.696.002.062.009.091.007.151.06.006.1 0 .16.004.352.006.77.008 1.167.006.133-.001.265-.003.39-.006.068 0 .072.002.128 0a1.427 1.427 0 0 0 0-.17 12.32 12.32 0 0 0-.097-1.292 2.536 2.536 0 0 0-.032-.267c-.05-.068-.081-.1-.128-.155A28.182 28.182 0 0 0 18.5 6.02c-1.795-1.721-2.75-2.375-2.75-2.375s-.077-.057-.134-.095c-.075-.014-.058-.01-.13-.02a31.483 31.483 0 0 0-2.608-.168c-.124-.004-.16-.007-.293-.001.006.15.002.153-.002.267.014 6.216-.02 10.641-.009 16.813v.188s.088.008.203.004c.734 0 2.167-.08 2.534-.14.142-.022.219-.027.319-.056.075-.043.115-.074.176-.126a36.5 36.5 0 0 0 2.616-2.267c.983-.941 1.876-1.96 2.09-2.2.09-.099.15-.176.256-.315.045-.166.034-.215.054-.347.093-1.076.167-1.752.167-2.977-.004-.064-.002-.095-.007-.169-.089-.005-.128-.004-.177-.008m-9.539-8.672c-.152.006-.43-.003-.942.026-.537.031-.85.064-.977.075-.073.007-.117.007-.17.013-.022.048-.019.042-.042.103-.779 1.95-1.788 4.655-2.627 6.666-.042.085-.128.3-.128.3s-.039-.064-.139-.267A85.298 85.298 0 0 0 4.67 7.276c-.046-.077-.128-.246-.128-.246s-.123.132-.204.204c-.173.155-.805.878-.93 1.046-.064.083-.085.107-.157.21-.03.117-.036.187-.058.316-.045.257-.153 1.364-.18 2.852.004 1.21.076 2.292.186 3.498l.031.322s.137.186.166.219c.605.71 1.046 1.217 1.463 1.643l.358.365s-.018-.257-.025-.39l-.024-.413c-.082-1.297-.244-3.484-.29-4.621-.008-.144.018-.824.018-.824l1.742 3.508s.13-.315.188-.447c.7-1.754 1.366-3.327 2.05-5.081.047-.11.294-.77.294-.77s.007.712 0 .866c-.034 4.924-.019 7.741-.012 10.444l.001.249c0 .138-.003.156-.003.247.181.03.163.03.261.042.317.04.313.051.686.075.385.024.806.035 1.142.043.086-.004.133-.004.175-.006.003-.08.003-.118.003-.193-.029-6.302.044-16.917.044-16.917s.003-.057 0-.162a2.544 2.544 0 0 0-.2.001" }) + ] + } + ); +}); + +exports.default = SiMg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMg.d.ts new file mode 100644 index 000000000..f9b1faf62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiMg: IconType; +export { SiMg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMg.mjs new file mode 100644 index 000000000..d3ffa492a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiMg = React.forwardRef(function SiMg2({ title = "MG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.835 8.428c-.015-.184-.034-.368-.053-.552-.016-.138-.034-.274-.052-.411a.592.592 0 0 0-.104-.243c-.087-.11-.175-.217-.266-.323l-.365-.429a42.198 42.198 0 0 0-2.509-2.638A42.774 42.774 0 0 0 17.3 1.064c-.11-.088-.222-.174-.336-.257a.664.664 0 0 0-.252-.1 21.852 21.852 0 0 0-1-.102 45.346 45.346 0 0 0-3.71-.158 45.291 45.291 0 0 0-4.286.211c-.142.015-.284.03-.426.048a.664.664 0 0 0-.253.1c-.113.085-.225.17-.337.258a42.775 42.775 0 0 0-3.185 2.768A42.467 42.467 0 0 0 .641 6.898c-.09.107-.18.215-.267.324a.609.609 0 0 0-.105.243c-.019.137-.035.273-.05.41-.02.185-.038.37-.056.553A41.387 41.387 0 0 0 0 12.001a41.35 41.35 0 0 0 .163 3.574l.057.552c.014.138.03.274.05.41.015.087.052.17.104.244a24.04 24.04 0 0 0 .633.753 42.577 42.577 0 0 0 2.507 2.636A42.394 42.394 0 0 0 6.7 22.938c.112.087.224.172.337.255a.663.663 0 0 0 .253.102l.426.048c.19.018.383.037.574.053 1.234.103 2.473.157 3.712.157 1.237 0 2.476-.054 3.71-.157.193-.016.384-.035.573-.053.144-.015.287-.031.427-.048a.66.66 0 0 0 .252-.102c.115-.083.227-.168.336-.255a42.392 42.392 0 0 0 3.187-2.767 42.424 42.424 0 0 0 2.509-2.637l.365-.43c.09-.106.18-.215.266-.323a.596.596 0 0 0 .104-.243c.018-.137.036-.273.052-.411A39.963 39.963 0 0 0 24 12c0-1.191-.058-2.384-.165-3.573m-1.805 6.601c-.013.156-.029.313-.044.469l-.044.348a.499.499 0 0 1-.089.205c-.073.092-.148.185-.225.276l-.31.363a35.829 35.829 0 0 1-2.126 2.234c-.86.827-1.762 1.61-2.7 2.346a7.787 7.787 0 0 1-.285.216.551.551 0 0 1-.214.087l-.362.04a38.171 38.171 0 0 1-3.63.178c-1.05 0-2.1-.045-3.146-.132l-.486-.045-.362-.041a.547.547 0 0 1-.214-.087 9.555 9.555 0 0 1-.285-.216c-.127-.099-.251-.2-.376-.3a35.855 35.855 0 0 1-2.324-2.046 36.03 36.03 0 0 1-2.125-2.234c-.182-.21-.361-.423-.536-.639a.515.515 0 0 1-.089-.205 33.972 33.972 0 0 1-.09-.817 34.723 34.723 0 0 1-.138-3.028c.003-1.01.047-2.02.138-3.029.015-.155.03-.311.048-.467.012-.118.026-.232.042-.348a.506.506 0 0 1 .089-.206 21.379 21.379 0 0 1 .536-.638 36.255 36.255 0 0 1 2.125-2.236 36.3 36.3 0 0 1 2.7-2.346c.094-.073.189-.146.285-.218a.553.553 0 0 1 .214-.084c.282-.035.565-.063.848-.086a38.642 38.642 0 0 1 3.146-.135 38.792 38.792 0 0 1 3.63.18c.122.012.243.026.362.04a.56.56 0 0 1 .214.085 26.752 26.752 0 0 1 .662.517 36.24 36.24 0 0 1 2.323 2.047c.74.715 1.45 1.46 2.126 2.236l.31.364c.077.09.152.181.225.274a.5.5 0 0 1 .089.205l.044.349c.015.155.031.312.044.467.091 1.009.14 2.019.14 3.029 0 1.01-.048 2.021-.14 3.028m-1.225-3c-.098-.01-.981-.012-1.456-.017-.622-.005-1.042 0-1.246-.001-.06 0-.068-.003-.135 0-.003.047-.003.071-.005.13-.002.043-.01.19-.018.384-.012.326-.026.787-.018 1.116l.001.114c.036.002.616.002 1.007.005.053 0 .057.001.11.003-.001.027 0 .052.001.097 0 .048-.055.74-.088.94-.1.149-.163.23-.367.456-.217.24-.256.3-.934.984-.704.712-2.035 1.867-2.513 2.263a9.84 9.84 0 0 0-.303.257s.007-.243-.002-.361c.018-4.565.013-7.807-.004-12.84.008-.114-.005-.209 0-.347.15.117.156.123.259.208.7.594 1.438 1.203 2.024 1.79.81.815 1.156 1.174 1.74 1.863.058.073.069.088.108.15.01.064.01.076.021.157.023.193.062.588.068.696.002.062.009.091.007.151.06.006.1 0 .16.004.352.006.77.008 1.167.006.133-.001.265-.003.39-.006.068 0 .072.002.128 0a1.427 1.427 0 0 0 0-.17 12.32 12.32 0 0 0-.097-1.292 2.536 2.536 0 0 0-.032-.267c-.05-.068-.081-.1-.128-.155A28.182 28.182 0 0 0 18.5 6.02c-1.795-1.721-2.75-2.375-2.75-2.375s-.077-.057-.134-.095c-.075-.014-.058-.01-.13-.02a31.483 31.483 0 0 0-2.608-.168c-.124-.004-.16-.007-.293-.001.006.15.002.153-.002.267.014 6.216-.02 10.641-.009 16.813v.188s.088.008.203.004c.734 0 2.167-.08 2.534-.14.142-.022.219-.027.319-.056.075-.043.115-.074.176-.126a36.5 36.5 0 0 0 2.616-2.267c.983-.941 1.876-1.96 2.09-2.2.09-.099.15-.176.256-.315.045-.166.034-.215.054-.347.093-1.076.167-1.752.167-2.977-.004-.064-.002-.095-.007-.169-.089-.005-.128-.004-.177-.008m-9.539-8.672c-.152.006-.43-.003-.942.026-.537.031-.85.064-.977.075-.073.007-.117.007-.17.013-.022.048-.019.042-.042.103-.779 1.95-1.788 4.655-2.627 6.666-.042.085-.128.3-.128.3s-.039-.064-.139-.267A85.298 85.298 0 0 0 4.67 7.276c-.046-.077-.128-.246-.128-.246s-.123.132-.204.204c-.173.155-.805.878-.93 1.046-.064.083-.085.107-.157.21-.03.117-.036.187-.058.316-.045.257-.153 1.364-.18 2.852.004 1.21.076 2.292.186 3.498l.031.322s.137.186.166.219c.605.71 1.046 1.217 1.463 1.643l.358.365s-.018-.257-.025-.39l-.024-.413c-.082-1.297-.244-3.484-.29-4.621-.008-.144.018-.824.018-.824l1.742 3.508s.13-.315.188-.447c.7-1.754 1.366-3.327 2.05-5.081.047-.11.294-.77.294-.77s.007.712 0 .866c-.034 4.924-.019 7.741-.012 10.444l.001.249c0 .138-.003.156-.003.247.181.03.163.03.261.042.317.04.313.051.686.075.385.024.806.035 1.142.043.086-.004.133-.004.175-.006.003-.08.003-.118.003-.193-.029-6.302.044-16.917.044-16.917s.003-.057 0-.162a2.544 2.544 0 0 0-.2.001" }) + ] + } + ); +}); + +export { SiMg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.cjs new file mode 100644 index 000000000..c54a3bafd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00ED00"; +const SiMicrobit = React__namespace.forwardRef(function SiMicrobit2({ title = "micro:bit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.857 5.143A6.865 6.865 0 000 12a6.864 6.864 0 006.857 6.857h10.287A6.863 6.863 0 0024 12c0-3.781-3.075-6.857-6.856-6.857zm0 2.744h10.287A4.117 4.117 0 0121.257 12a4.119 4.119 0 01-4.113 4.116H6.857A4.12 4.12 0 012.743 12a4.118 4.118 0 014.114-4.113zm10.168 2.729a1.385 1.385 0 10.003 2.77 1.385 1.385 0 00-.003-2.77zm-10.166 0a1.385 1.385 0 10-.003 2.771 1.385 1.385 0 00.003-2.77Z" }) + ] + } + ); +}); + +exports.default = SiMicrobit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.d.ts new file mode 100644 index 000000000..da6cef745 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00ED00"; +declare const SiMicrobit: IconType; +export { SiMicrobit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.mjs new file mode 100644 index 000000000..82474a730 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrobit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00ED00"; +const SiMicrobit = React.forwardRef(function SiMicrobit2({ title = "micro:bit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.857 5.143A6.865 6.865 0 000 12a6.864 6.864 0 006.857 6.857h10.287A6.863 6.863 0 0024 12c0-3.781-3.075-6.857-6.856-6.857zm0 2.744h10.287A4.117 4.117 0 0121.257 12a4.119 4.119 0 01-4.113 4.116H6.857A4.12 4.12 0 012.743 12a4.118 4.118 0 014.114-4.113zm10.168 2.729a1.385 1.385 0 10.003 2.77 1.385 1.385 0 00-.003-2.77zm-10.166 0a1.385 1.385 0 10-.003 2.771 1.385 1.385 0 00.003-2.77Z" }) + ] + } + ); +}); + +export { SiMicrobit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.cjs new file mode 100644 index 000000000..e9bc6fc93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8800"; +const SiMicrodotblog = React__namespace.forwardRef(function SiMicrodotblog2({ title = "Micro.blog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.4 0 0 4.9 0 10.95 0 17 5.4 21.9 12 21.9c1.4 0 2.85-.25 4.2-.7.15-.05.35 0 .45.1 1 1.35 2.55 2.3 4.25 2.7l.25-.1v-.3a4.65 4.65 0 01.2-5.9C22.9 15.85 24 13.5 24 10.95 24 4.9 18.55 0 12 0zm-.05 5.2c.15 0 .3.1.35.25L13.55 9l3.85.1c.15 0 .3.1.35.2.05.15 0 .3-.15.4L14.55 12l1.1 3.6c.05.15 0 .3-.15.4h-.4l-3.15-2.15L8.8 16h-.4c-.15-.1-.2-.25-.15-.4l1.1-3.6L6.3 9.7c-.15-.1-.2-.25-.15-.4.05-.1.2-.2.35-.2l3.85-.1 1.25-3.55c.05-.15.2-.25.35-.25z" }) + ] + } + ); +}); + +exports.default = SiMicrodotblog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.d.ts new file mode 100644 index 000000000..2ca94f5cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8800"; +declare const SiMicrodotblog: IconType; +export { SiMicrodotblog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.mjs new file mode 100644 index 000000000..3cd8822f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrodotblog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8800"; +const SiMicrodotblog = React.forwardRef(function SiMicrodotblog2({ title = "Micro.blog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.4 0 0 4.9 0 10.95 0 17 5.4 21.9 12 21.9c1.4 0 2.85-.25 4.2-.7.15-.05.35 0 .45.1 1 1.35 2.55 2.3 4.25 2.7l.25-.1v-.3a4.65 4.65 0 01.2-5.9C22.9 15.85 24 13.5 24 10.95 24 4.9 18.55 0 12 0zm-.05 5.2c.15 0 .3.1.35.25L13.55 9l3.85.1c.15 0 .3.1.35.2.05.15 0 .3-.15.4L14.55 12l1.1 3.6c.05.15 0 .3-.15.4h-.4l-3.15-2.15L8.8 16h-.4c-.15-.1-.2-.25-.15-.4l1.1-3.6L6.3 9.7c-.15-.1-.2-.25-.15-.4.05-.1.2-.2.35-.2l3.85-.1 1.25-3.55c.05-.15.2-.25.35-.25z" }) + ] + } + ); +}); + +export { SiMicrodotblog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.cjs new file mode 100644 index 000000000..371ca6a82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E3192"; +const SiMicroeditor = React__namespace.forwardRef(function SiMicroeditor2({ title = "Micro Editor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0Zm5.698 13.628c-.117.465-.303.837-.558 1.14-.233.302-.466.488-.721.58-.256.094-.512.14-.791.14-.28 0-.512-.046-.698-.162-.186-.093-.325-.256-.442-.442a1.922 1.922 0 0 1-.232-.675 4.688 4.688 0 0 1-.07-.837c0-.116 0-.232.023-.395.022-.163.047-.372.07-.372h-.047c-.373.93-.883 1.604-1.534 2.14-.652.534-1.372.79-2.164.79-.535 0-.977-.21-1.28-.605-.325-.395-.487-1-.487-1.79 0-.117 0-.233.022-.373.023-.116.023-.162.046-.395h-.163c-.209.465-.395 1.116-.534 1.698-.14.58-.255 1.116-.326 1.604-.093.489-.14.93-.186 1.303-.047.372-.07.628-.093.767.023.116.046.233.07.372.046.14.07.28.116.396.046.116.07.255.093.372.023.116.046.209.046.279 0 .325-.07.58-.209.744-.14.162-.302.255-.465.255a.83.83 0 0 1-.535-.186c-.163-.14-.232-.35-.232-.628 0-.396.07-.907.21-1.512.14-.604.348-1.372.604-2.279.14-.418.255-.837.395-1.256.14-.418.256-.814.372-1.162.116-.35.21-.675.302-.954a3.71 3.71 0 0 0 .163-.65c.023-.07.047-.234.07-.466.023-.233.046-.489.093-.79.046-.303.07-.629.116-.954.047-.35.093-.652.116-.93.047-.21.07-.443.117-.698.046-.255.116-.512.209-.72.093-.233.233-.42.395-.583.163-.162.372-.232.628-.232.28 0 .465.093.558.256.093.162.14.372.117.604-.023.233-.047.49-.117.744-.07.256-.14.49-.21.675-.185.581-.371 1.116-.58 1.558-.21.442-.396.93-.558 1.442-.14.35-.186.674-.186.953 0 .512.162.884.465 1.163.325.28.697.395 1.14.395a1.63 1.63 0 0 0 1.022-.372c.326-.255.628-.558.907-.907.28-.348.512-.72.698-1.14a8.3 8.3 0 0 0 .419-1.069c.023-.046.046-.14.07-.325.046-.187.07-.396.116-.628.046-.233.093-.465.14-.72.046-.257.091-.466.116-.629.046-.186.07-.372.116-.605.046-.232.116-.442.21-.65.092-.21.232-.373.371-.513a.87.87 0 0 1 .605-.209c.302 0 .488.093.605.256.093.163.14.372.14.605a3.58 3.58 0 0 1-.117.697c-.07.233-.116.42-.163.558a23.236 23.236 0 0 1-.558 1.558c-.186.466-.349.884-.512 1.21-.14.349-.256.604-.349.814-.093.21-.14.349-.14.418 0 .605.14 1.047.396 1.303.256.255.535.395.837.395.512 0 .907-.163 1.21-.465.302-.326.535-.907.674-1.605h.186a5.386 5.386 0 0 1-.14 1.698z" }) + ] + } + ); +}); + +exports.default = SiMicroeditor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.d.ts new file mode 100644 index 000000000..c823d7585 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E3192"; +declare const SiMicroeditor: IconType; +export { SiMicroeditor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.mjs new file mode 100644 index 000000000..41b97e16d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicroeditor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E3192"; +const SiMicroeditor = React.forwardRef(function SiMicroeditor2({ title = "Micro Editor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0Zm5.698 13.628c-.117.465-.303.837-.558 1.14-.233.302-.466.488-.721.58-.256.094-.512.14-.791.14-.28 0-.512-.046-.698-.162-.186-.093-.325-.256-.442-.442a1.922 1.922 0 0 1-.232-.675 4.688 4.688 0 0 1-.07-.837c0-.116 0-.232.023-.395.022-.163.047-.372.07-.372h-.047c-.373.93-.883 1.604-1.534 2.14-.652.534-1.372.79-2.164.79-.535 0-.977-.21-1.28-.605-.325-.395-.487-1-.487-1.79 0-.117 0-.233.022-.373.023-.116.023-.162.046-.395h-.163c-.209.465-.395 1.116-.534 1.698-.14.58-.255 1.116-.326 1.604-.093.489-.14.93-.186 1.303-.047.372-.07.628-.093.767.023.116.046.233.07.372.046.14.07.28.116.396.046.116.07.255.093.372.023.116.046.209.046.279 0 .325-.07.58-.209.744-.14.162-.302.255-.465.255a.83.83 0 0 1-.535-.186c-.163-.14-.232-.35-.232-.628 0-.396.07-.907.21-1.512.14-.604.348-1.372.604-2.279.14-.418.255-.837.395-1.256.14-.418.256-.814.372-1.162.116-.35.21-.675.302-.954a3.71 3.71 0 0 0 .163-.65c.023-.07.047-.234.07-.466.023-.233.046-.489.093-.79.046-.303.07-.629.116-.954.047-.35.093-.652.116-.93.047-.21.07-.443.117-.698.046-.255.116-.512.209-.72.093-.233.233-.42.395-.583.163-.162.372-.232.628-.232.28 0 .465.093.558.256.093.162.14.372.117.604-.023.233-.047.49-.117.744-.07.256-.14.49-.21.675-.185.581-.371 1.116-.58 1.558-.21.442-.396.93-.558 1.442-.14.35-.186.674-.186.953 0 .512.162.884.465 1.163.325.28.697.395 1.14.395a1.63 1.63 0 0 0 1.022-.372c.326-.255.628-.558.907-.907.28-.348.512-.72.698-1.14a8.3 8.3 0 0 0 .419-1.069c.023-.046.046-.14.07-.325.046-.187.07-.396.116-.628.046-.233.093-.465.14-.72.046-.257.091-.466.116-.629.046-.186.07-.372.116-.605.046-.232.116-.442.21-.65.092-.21.232-.373.371-.513a.87.87 0 0 1 .605-.209c.302 0 .488.093.605.256.093.163.14.372.14.605a3.58 3.58 0 0 1-.117.697c-.07.233-.116.42-.163.558a23.236 23.236 0 0 1-.558 1.558c-.186.466-.349.884-.512 1.21-.14.349-.256.604-.349.814-.093.21-.14.349-.14.418 0 .605.14 1.047.396 1.303.256.255.535.395.837.395.512 0 .907-.163 1.21-.465.302-.326.535-.907.674-1.605h.186a5.386 5.386 0 0 1-.14 1.698z" }) + ] + } + ); +}); + +export { SiMicroeditor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.cjs new file mode 100644 index 000000000..fecde2652 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2B2728"; +const SiMicropython = React__namespace.forwardRef(function SiMicropython2({ title = "MicroPython", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h11.509v18.737h.982V0H24v24h-5.263V5.263h-.983V24H6.246V5.263l-.983.035V24H0zm22.246 19.509h-1.404v2.386h1.404z" }) + ] + } + ); +}); + +exports.default = SiMicropython; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.d.ts new file mode 100644 index 000000000..2a8d35a28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2B2728"; +declare const SiMicropython: IconType; +export { SiMicropython as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.mjs new file mode 100644 index 000000000..0de7caf06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicropython.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2B2728"; +const SiMicropython = React.forwardRef(function SiMicropython2({ title = "MicroPython", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0h11.509v18.737h.982V0H24v24h-5.263V5.263h-.983V24H6.246V5.263l-.983.035V24H0zm22.246 19.509h-1.404v2.386h1.404z" }) + ] + } + ); +}); + +export { SiMicropython as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.cjs new file mode 100644 index 000000000..1727481fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#62BB47"; +const SiMicrostation = React__namespace.forwardRef(function SiMicrostation2({ title = "Microstation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 .357c-.938.217-3.086.22-3.631 1.15l-.55.922c-1.376 2.348-4.833 11.069-8.183 11.181-3.35.113 1.762-10.712 2.27-11.797-2.08.489-4.078.193-4.826 2.326-.775 2.212-1.54 4.425-2.363 6.62-1.71 4.532-3.795 8.89-6.634 12.767.064-.086.127-.171-.083.117 2.111-.422 4.03-.352 5.295-2.253 1.17-1.759 1.92-3.73 2.712-5.68l.377-.927.303.286c3.017 2.844 5.334 0 7.697-2.219l.349-.327 1.322 4.977 2.932-3.144a33.47 33.47 0 0 1-.713-1.342l-.037-.08C18.302 8.742 21.6 3.935 23.861.566Z" }) + ] + } + ); +}); + +exports.default = SiMicrostation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.d.ts new file mode 100644 index 000000000..5c257340b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#62BB47"; +declare const SiMicrostation: IconType; +export { SiMicrostation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.mjs new file mode 100644 index 000000000..6ecb01a79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#62BB47"; +const SiMicrostation = React.forwardRef(function SiMicrostation2({ title = "Microstation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 .357c-.938.217-3.086.22-3.631 1.15l-.55.922c-1.376 2.348-4.833 11.069-8.183 11.181-3.35.113 1.762-10.712 2.27-11.797-2.08.489-4.078.193-4.826 2.326-.775 2.212-1.54 4.425-2.363 6.62-1.71 4.532-3.795 8.89-6.634 12.767.064-.086.127-.171-.083.117 2.111-.422 4.03-.352 5.295-2.253 1.17-1.759 1.92-3.73 2.712-5.68l.377-.927.303.286c3.017 2.844 5.334 0 7.697-2.219l.349-.327 1.322 4.977 2.932-3.144a33.47 33.47 0 0 1-.713-1.342l-.037-.08C18.302 8.742 21.6 3.935 23.861.566Z" }) + ] + } + ); +}); + +export { SiMicrostation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.cjs new file mode 100644 index 000000000..8854528a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D9232E"; +const SiMicrostrategy = React__namespace.forwardRef(function SiMicrostrategy2({ title = "MicroStrategy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.095 2.572h5.827v18.856H9.096zM0 2.572h5.825v18.856H.001zm18.174 0v18.854H24V8.33z" }) + ] + } + ); +}); + +exports.default = SiMicrostrategy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.d.ts new file mode 100644 index 000000000..5881b0e08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D9232E"; +declare const SiMicrostrategy: IconType; +export { SiMicrostrategy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.mjs new file mode 100644 index 000000000..3c99ffcf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMicrostrategy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D9232E"; +const SiMicrostrategy = React.forwardRef(function SiMicrostrategy2({ title = "MicroStrategy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.095 2.572h5.827v18.856H9.096zM0 2.572h5.825v18.856H.001zm18.174 0v18.854H24V8.33z" }) + ] + } + ); +}); + +export { SiMicrostrategy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.cjs new file mode 100644 index 000000000..1e10cd828 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMidi = React__namespace.forwardRef(function SiMidi2({ title = "MIDI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.775 7.517H24v8.966h-2.225zm-8.562 0h6.506c.66 0 1.045.57 1.045 1.247v6.607c0 .84-.35 1.112-1.112 1.112h-6.439v-5.696h2.225v3.505h3.135V9.54h-5.36zm-3.235 0h2.19v8.966h-2.19zM0 7.517h7.854c.66 0 1.045.57 1.045 1.247v7.72H6.708V9.774H5.427v6.708H3.438V9.775H2.191v6.708H0Z" }) + ] + } + ); +}); + +exports.default = SiMidi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.d.ts new file mode 100644 index 000000000..fd22091f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMidi: IconType; +export { SiMidi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.mjs new file mode 100644 index 000000000..ff34b1ff6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMidi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMidi = React.forwardRef(function SiMidi2({ title = "MIDI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.775 7.517H24v8.966h-2.225zm-8.562 0h6.506c.66 0 1.045.57 1.045 1.247v6.607c0 .84-.35 1.112-1.112 1.112h-6.439v-5.696h2.225v3.505h3.135V9.54h-5.36zm-3.235 0h2.19v8.966h-2.19zM0 7.517h7.854c.66 0 1.045.57 1.045 1.247v7.72H6.708V9.774H5.427v6.708H3.438V9.775H2.191v6.708H0Z" }) + ] + } + ); +}); + +export { SiMidi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.cjs new file mode 100644 index 000000000..18c0af8fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0043CE"; +const SiMigadu = React__namespace.forwardRef(function SiMigadu2({ title = "Migadu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.082 1.8984c-3.8526 0-6.9911 3.0832-7.08 6.9141.0017 7.003-.0042 3.8683 0 5.9219-.0635 3.5183 2.4066 7.254 7.082 7.3672h.0058l.0176-4.3106c-.0094-.0072-.0333.0062-.0234-.0176a3.2156 3.2156 0 0 1-.1777-.0078c-.4723-.0681-.883-.1891-1.2286-.3633-.7129-.4136-1.2188-1.2338-1.3496-2.0156-.075-2.2967 1.6707-3.1776 2.754-3.1347 1.789.0708 2.8546 1.4727 2.7538 3.2539v6.5957h4.3282v-7.082a2.816 2.816 0 0 1 .1093-.7716c.2989-1.0394 1.2046-1.8632 2.4453-1.9824h.3829c1.4318.118 2.5303 1.269 2.5703 2.7188v7.1172H24c-.0058-2.3606.0002-4.7215 0-7.082 0-3.8933-3.1478-7.0575-7.0352-7.0821-.8926-.0027-1.8444.1522-2.8007.5566l-.0176-.0097c-.2552-3.6775-3.3229-6.586-7.0645-6.586zm-2.7617 8.3203a1.0235 1.0235 0 0 1 1.0235 1.0235 1.0235 1.0235 0 0 1-1.0235 1.0234 1.0235 1.0235 0 0 1-1.0234-1.0234 1.0235 1.0235 0 0 1 1.0234-1.0235z" }) + ] + } + ); +}); + +exports.default = SiMigadu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.d.ts new file mode 100644 index 000000000..6d361b62b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0043CE"; +declare const SiMigadu: IconType; +export { SiMigadu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.mjs new file mode 100644 index 000000000..4057005d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMigadu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0043CE"; +const SiMigadu = React.forwardRef(function SiMigadu2({ title = "Migadu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.082 1.8984c-3.8526 0-6.9911 3.0832-7.08 6.9141.0017 7.003-.0042 3.8683 0 5.9219-.0635 3.5183 2.4066 7.254 7.082 7.3672h.0058l.0176-4.3106c-.0094-.0072-.0333.0062-.0234-.0176a3.2156 3.2156 0 0 1-.1777-.0078c-.4723-.0681-.883-.1891-1.2286-.3633-.7129-.4136-1.2188-1.2338-1.3496-2.0156-.075-2.2967 1.6707-3.1776 2.754-3.1347 1.789.0708 2.8546 1.4727 2.7538 3.2539v6.5957h4.3282v-7.082a2.816 2.816 0 0 1 .1093-.7716c.2989-1.0394 1.2046-1.8632 2.4453-1.9824h.3829c1.4318.118 2.5303 1.269 2.5703 2.7188v7.1172H24c-.0058-2.3606.0002-4.7215 0-7.082 0-3.8933-3.1478-7.0575-7.0352-7.0821-.8926-.0027-1.8444.1522-2.8007.5566l-.0176-.0097c-.2552-3.6775-3.3229-6.586-7.0645-6.586zm-2.7617 8.3203a1.0235 1.0235 0 0 1 1.0235 1.0235 1.0235 1.0235 0 0 1-1.0235 1.0234 1.0235 1.0235 0 0 1-1.0234-1.0234 1.0235 1.0235 0 0 1 1.0234-1.0235z" }) + ] + } + ); +}); + +export { SiMigadu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.cjs new file mode 100644 index 000000000..90c879608 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0058A0"; +const SiMihon = React__namespace.forwardRef(function SiMihon2({ title = "Mihon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.2919 5.1024 3.1168 1.055c.527.1005 1.1562.1265 2.588.1265 1.7336 0 4.02-.1006 5.2022-.2514.5027-.0503.7038-.1265 1.0298-.3016l2.7146 2.3124c-.2514.3519-.326.5027-.6033 1.2065-.2254.553-1.2567 3.7443-1.659 5.1016 1.86.3762 2.8898.6535 4.2974 1.2308.1767-1.2308.201-1.8843.201-4.1221 0-.5773-.0243-.9049-.1005-1.432l4.3735.1509c-.1264.6032-.1508.8546-.1767 1.834-.1006 2.3627-.2011 3.493-.4524 5.2022 1.735.8805 1.735.8805 2.614 1.3573.4524.2514.553.3016.8546.4022l-1.4578 4.6994c-.7038-.6275-1.6833-1.307-3.1168-2.1113-1.2551 2.9902-3.3422 5.1778-6.5076 6.9113-1.0556-1.4075-1.86-2.2621-3.1427-3.266 1.86-.8805 2.7146-1.4334 3.6957-2.3626.9551-.9308 1.5827-1.8357 2.186-3.1914-1.6087-.7297-2.6384-1.0557-4.4238-1.4335-1.0298 3.0665-1.8584 5.027-2.5881 6.2076-.9795 1.5827-2.3125 2.413-3.8449 2.413-1.1805 0-2.387-.5287-3.2676-1.432C.527 19.2755 0 17.8436 0 16.1847c0-2.4632 1.1805-4.599 3.2416-5.9319 1.333-.853 2.739-1.2308 4.9768-1.3557.4524-1.4838.8286-2.7648 1.1805-4.1967-1.106.1005-2.4875.1751-4.1724.2513-.9033.0243-1.2049.0503-1.9346.1508Zm3.8205 7.6395c-1.1821.201-1.886.5773-2.5135 1.3816-.4767.553-.7038 1.2065-.7038 1.9103 0 .7784.3779 1.3573.8546 1.3573.5773 0 1.2308-1.307 2.3627-4.6492z" }) + ] + } + ); +}); + +exports.default = SiMihon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.d.ts new file mode 100644 index 000000000..c7d74ef97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0058A0"; +declare const SiMihon: IconType; +export { SiMihon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.mjs new file mode 100644 index 000000000..3ea561948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMihon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0058A0"; +const SiMihon = React.forwardRef(function SiMihon2({ title = "Mihon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.2919 5.1024 3.1168 1.055c.527.1005 1.1562.1265 2.588.1265 1.7336 0 4.02-.1006 5.2022-.2514.5027-.0503.7038-.1265 1.0298-.3016l2.7146 2.3124c-.2514.3519-.326.5027-.6033 1.2065-.2254.553-1.2567 3.7443-1.659 5.1016 1.86.3762 2.8898.6535 4.2974 1.2308.1767-1.2308.201-1.8843.201-4.1221 0-.5773-.0243-.9049-.1005-1.432l4.3735.1509c-.1264.6032-.1508.8546-.1767 1.834-.1006 2.3627-.2011 3.493-.4524 5.2022 1.735.8805 1.735.8805 2.614 1.3573.4524.2514.553.3016.8546.4022l-1.4578 4.6994c-.7038-.6275-1.6833-1.307-3.1168-2.1113-1.2551 2.9902-3.3422 5.1778-6.5076 6.9113-1.0556-1.4075-1.86-2.2621-3.1427-3.266 1.86-.8805 2.7146-1.4334 3.6957-2.3626.9551-.9308 1.5827-1.8357 2.186-3.1914-1.6087-.7297-2.6384-1.0557-4.4238-1.4335-1.0298 3.0665-1.8584 5.027-2.5881 6.2076-.9795 1.5827-2.3125 2.413-3.8449 2.413-1.1805 0-2.387-.5287-3.2676-1.432C.527 19.2755 0 17.8436 0 16.1847c0-2.4632 1.1805-4.599 3.2416-5.9319 1.333-.853 2.739-1.2308 4.9768-1.3557.4524-1.4838.8286-2.7648 1.1805-4.1967-1.106.1005-2.4875.1751-4.1724.2513-.9033.0243-1.2049.0503-1.9346.1508Zm3.8205 7.6395c-1.1821.201-1.886.5773-2.5135 1.3816-.4767.553-.7038 1.2065-.7038 1.9103 0 .7784.3779 1.3573.8546 1.3573.5773 0 1.2308-1.307 2.3627-4.6492z" }) + ] + } + ); +}); + +export { SiMihon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.cjs new file mode 100644 index 000000000..daa078397 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4EA4DD"; +const SiMihoyo = React__namespace.forwardRef(function SiMihoyo2({ title = "miHoYo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.939 8.8a.65.65 0 0 0-.653.653.65.65 0 0 0 .653.653.65.65 0 0 0 .653-.653.65.65 0 0 0-.653-.653m-5.506 1.886A1.43 1.43 0 0 0 0 12.118v2.474a.59.59 0 0 0 .592.592.59.59 0 0 0 .592-.592v-2.25a.464.464 0 0 1 .465-.464.464.464 0 0 1 .465.465v2.249a.59.59 0 1 0 1.184 0v-2.25a.464.464 0 0 1 .465-.464.464.464 0 0 1 .465.465v1.208c.001.914.736 1.649 1.65 1.649s1.649-.735 1.649-1.649V11.49a.59.59 0 0 0-.592-.592.59.59 0 0 0-.592.592v2.037a.464.464 0 0 1-.465.465.464.464 0 0 1-.466-.465v-1.409a1.43 1.43 0 0 0-1.433-1.432c-.448 0-.853.202-1.115.525-.033.04-.08.079-.158.079s-.125-.038-.158-.079a1.43 1.43 0 0 0-1.115-.525M9.057 9.16a.59.59 0 0 0-.592.591v4.84a.59.59 0 0 0 .592.593.59.59 0 0 0 .592-.592v-1.588a.27.27 0 0 1 .27-.27h.636a.27.27 0 0 1 .27.27v1.588a.59.59 0 0 0 .591.592.59.59 0 0 0 .592-.592V9.75a.59.59 0 0 0-.592-.592.59.59 0 0 0-.592.592v1.465a.27.27 0 0 1-.269.27h-.637a.27.27 0 0 1-.269-.27V9.751a.59.59 0 0 0-.592-.592m7.784 0a.286.286 0 0 0-.203.47l1.166 2.11v2.853a.59.59 0 0 0 .592.592.59.59 0 0 0 .592-.592v-2.853l1.166-2.11c.168-.233-.015-.47-.203-.47h-.606a.27.27 0 0 0-.218.126l-.65 1.188c-.017.03-.046.041-.077.041s-.063-.01-.08-.04l-.655-1.19a.27.27 0 0 0-.218-.125zm-3.776 1.2c-.032 0-.053.155-.053.368s.041.416.082.416c.04 0 .04-.025.237-.196s.228-.171.228-.22-.073-.09-.245-.213c-.171-.122-.216-.155-.249-.155m3.437 0c-.032 0-.077.033-.249.155s-.245.164-.245.213.033.048.229.22.196.196.237.196.081-.204.081-.416-.02-.368-.053-.368m-1.718.343c-1.082 0-1.96 1.006-1.96 2.245s.878 2.245 1.96 2.245 1.959-1.005 1.959-2.245-.877-2.245-1.96-2.245m0 1.118c.541 0 .98.506.98 1.127 0 .622-.438 1.126-.98 1.126s-.979-.504-.979-1.126c0-.62.44-1.127.98-1.127m8.685-1.33c-.334 0-.498.147-.596.22s-.18.147-.269.147c-.229 0-.392-.155-.849-.155-1.082 0-1.96 1.005-1.96 2.245s.878 2.245 1.96 2.245 1.96-1.005 1.96-2.245c0-.452-.12-.894-.343-1.267-.037-.096-.05-.194-.05-.386 0-.265.128-.46.27-.56a.8.8 0 0 1 .408-.138 1.2 1.2 0 0 0-.53-.106m-1.715 1.33c.54 0 .98.505.98 1.127s-.439 1.126-.98 1.126-.98-.504-.98-1.126c0-.62.44-1.126.98-1.127" }) + ] + } + ); +}); + +exports.default = SiMihoyo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.d.ts new file mode 100644 index 000000000..095feeb2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4EA4DD"; +declare const SiMihoyo: IconType; +export { SiMihoyo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.mjs new file mode 100644 index 000000000..300be03c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMihoyo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4EA4DD"; +const SiMihoyo = React.forwardRef(function SiMihoyo2({ title = "miHoYo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.939 8.8a.65.65 0 0 0-.653.653.65.65 0 0 0 .653.653.65.65 0 0 0 .653-.653.65.65 0 0 0-.653-.653m-5.506 1.886A1.43 1.43 0 0 0 0 12.118v2.474a.59.59 0 0 0 .592.592.59.59 0 0 0 .592-.592v-2.25a.464.464 0 0 1 .465-.464.464.464 0 0 1 .465.465v2.249a.59.59 0 1 0 1.184 0v-2.25a.464.464 0 0 1 .465-.464.464.464 0 0 1 .465.465v1.208c.001.914.736 1.649 1.65 1.649s1.649-.735 1.649-1.649V11.49a.59.59 0 0 0-.592-.592.59.59 0 0 0-.592.592v2.037a.464.464 0 0 1-.465.465.464.464 0 0 1-.466-.465v-1.409a1.43 1.43 0 0 0-1.433-1.432c-.448 0-.853.202-1.115.525-.033.04-.08.079-.158.079s-.125-.038-.158-.079a1.43 1.43 0 0 0-1.115-.525M9.057 9.16a.59.59 0 0 0-.592.591v4.84a.59.59 0 0 0 .592.593.59.59 0 0 0 .592-.592v-1.588a.27.27 0 0 1 .27-.27h.636a.27.27 0 0 1 .27.27v1.588a.59.59 0 0 0 .591.592.59.59 0 0 0 .592-.592V9.75a.59.59 0 0 0-.592-.592.59.59 0 0 0-.592.592v1.465a.27.27 0 0 1-.269.27h-.637a.27.27 0 0 1-.269-.27V9.751a.59.59 0 0 0-.592-.592m7.784 0a.286.286 0 0 0-.203.47l1.166 2.11v2.853a.59.59 0 0 0 .592.592.59.59 0 0 0 .592-.592v-2.853l1.166-2.11c.168-.233-.015-.47-.203-.47h-.606a.27.27 0 0 0-.218.126l-.65 1.188c-.017.03-.046.041-.077.041s-.063-.01-.08-.04l-.655-1.19a.27.27 0 0 0-.218-.125zm-3.776 1.2c-.032 0-.053.155-.053.368s.041.416.082.416c.04 0 .04-.025.237-.196s.228-.171.228-.22-.073-.09-.245-.213c-.171-.122-.216-.155-.249-.155m3.437 0c-.032 0-.077.033-.249.155s-.245.164-.245.213.033.048.229.22.196.196.237.196.081-.204.081-.416-.02-.368-.053-.368m-1.718.343c-1.082 0-1.96 1.006-1.96 2.245s.878 2.245 1.96 2.245 1.959-1.005 1.959-2.245-.877-2.245-1.96-2.245m0 1.118c.541 0 .98.506.98 1.127 0 .622-.438 1.126-.98 1.126s-.979-.504-.979-1.126c0-.62.44-1.127.98-1.127m8.685-1.33c-.334 0-.498.147-.596.22s-.18.147-.269.147c-.229 0-.392-.155-.849-.155-1.082 0-1.96 1.005-1.96 2.245s.878 2.245 1.96 2.245 1.96-1.005 1.96-2.245c0-.452-.12-.894-.343-1.267-.037-.096-.05-.194-.05-.386 0-.265.128-.46.27-.56a.8.8 0 0 1 .408-.138 1.2 1.2 0 0 0-.53-.106m-1.715 1.33c.54 0 .98.505.98 1.127s-.439 1.126-.98 1.126-.98-.504-.98-1.126c0-.62.44-1.126.98-1.127" }) + ] + } + ); +}); + +export { SiMihoyo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.cjs new file mode 100644 index 000000000..ffa9125a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#293239"; +const SiMikrotik = React__namespace.forwardRef(function SiMikrotik2({ title = "MikroTik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.041 6.188a1.404 1.404 0 0 0-.218-.36c-.24-.296-.634-.586-1.14-.864l-4.052-2.22L13.576.519C13.074.243 12.61.065 12.22.013A1.772 1.772 0 0 0 12 0c-.432 0-.974.192-1.576.52L6.37 2.74 2.317 4.96c-.504.279-.9.569-1.14.867a1.59 1.59 0 0 0-.122.17 1.654 1.654 0 0 0-.096.19c-.15.348-.22.816-.22 1.368v8.887c0 .66.1 1.2.316 1.558.216.356.66.706 1.262 1.036l4.054 2.22 4.053 2.223c.504.276.966.456 1.36.506.145.02.291.02.436 0 .39-.05.852-.228 1.356-.506l8.107-4.443c.6-.33 1.046-.68 1.262-1.036.036-.06.068-.123.096-.188.15-.348.22-.818.22-1.37V7.556c0-.552-.07-1.02-.22-1.368zM7.233 16.618c0 .2-.218.33-.396.233l-1.45-.796a1.066 1.066 0 0 1-.552-.934v-4.296c0-.2.216-.33.394-.235l1.728.947a.53.53 0 0 1 .276.468v4.612zm11.934-1.497c0 .39-.213.748-.554.936l-1.45.794a.266.266 0 0 1-.394-.234v-5.692c0-.2-.217-.33-.395-.232l-2.62 1.434c-.34.187-.552.545-.552.934v5.646a.532.532 0 0 1-.278.468l-.41.224c-.32.176-.707.176-1.026 0l-.408-.224a.532.532 0 0 1-.278-.468v-5.646c0-.389-.212-.747-.552-.934L4.835 9.16v-.28c0-.388.212-.746.552-.934l.6-.328a1.064 1.064 0 0 1 1.022 0l4.48 2.452c.318.176.704.176 1.021 0l2.07-1.134a.266.266 0 0 0 0-.468L9.932 5.922a.266.266 0 0 1 0-.468l1.556-.852c.32-.176.707-.176 1.026 0l6.1 3.34c.342.188.554.547.553.936v6.243z" }) + ] + } + ); +}); + +exports.default = SiMikrotik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.d.ts new file mode 100644 index 000000000..834867fbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#293239"; +declare const SiMikrotik: IconType; +export { SiMikrotik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.mjs new file mode 100644 index 000000000..16b7d9611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMikrotik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#293239"; +const SiMikrotik = React.forwardRef(function SiMikrotik2({ title = "MikroTik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.041 6.188a1.404 1.404 0 0 0-.218-.36c-.24-.296-.634-.586-1.14-.864l-4.052-2.22L13.576.519C13.074.243 12.61.065 12.22.013A1.772 1.772 0 0 0 12 0c-.432 0-.974.192-1.576.52L6.37 2.74 2.317 4.96c-.504.279-.9.569-1.14.867a1.59 1.59 0 0 0-.122.17 1.654 1.654 0 0 0-.096.19c-.15.348-.22.816-.22 1.368v8.887c0 .66.1 1.2.316 1.558.216.356.66.706 1.262 1.036l4.054 2.22 4.053 2.223c.504.276.966.456 1.36.506.145.02.291.02.436 0 .39-.05.852-.228 1.356-.506l8.107-4.443c.6-.33 1.046-.68 1.262-1.036.036-.06.068-.123.096-.188.15-.348.22-.818.22-1.37V7.556c0-.552-.07-1.02-.22-1.368zM7.233 16.618c0 .2-.218.33-.396.233l-1.45-.796a1.066 1.066 0 0 1-.552-.934v-4.296c0-.2.216-.33.394-.235l1.728.947a.53.53 0 0 1 .276.468v4.612zm11.934-1.497c0 .39-.213.748-.554.936l-1.45.794a.266.266 0 0 1-.394-.234v-5.692c0-.2-.217-.33-.395-.232l-2.62 1.434c-.34.187-.552.545-.552.934v5.646a.532.532 0 0 1-.278.468l-.41.224c-.32.176-.707.176-1.026 0l-.408-.224a.532.532 0 0 1-.278-.468v-5.646c0-.389-.212-.747-.552-.934L4.835 9.16v-.28c0-.388.212-.746.552-.934l.6-.328a1.064 1.064 0 0 1 1.022 0l4.48 2.452c.318.176.704.176 1.021 0l2.07-1.134a.266.266 0 0 0 0-.468L9.932 5.922a.266.266 0 0 1 0-.468l1.556-.852c.32-.176.707-.176 1.026 0l6.1 3.34c.342.188.554.547.553.936v6.243z" }) + ] + } + ); +}); + +export { SiMikrotik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.cjs new file mode 100644 index 000000000..6c264968b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#31303A"; +const SiMilanote = React__namespace.forwardRef(function SiMilanote2({ title = "Milanote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0Zm0 12.943L15.057 16H8.943Zm4-4v6.114L12.943 12Zm-8 6.114V8.943L11.057 12Zm8.917 2.227a.665.665 0 0 0 .367-.367l-.003.009a.665.665 0 0 0 .052-.26V7.334a.667.667 0 0 0-1.138-.471L12 11.057 7.805 6.862a.667.667 0 0 0-1.138.471v9.334a.667.667 0 0 0 .666.666h9.334c.092 0 .18-.018.26-.052l-.01.004z" }) + ] + } + ); +}); + +exports.default = SiMilanote; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.d.ts new file mode 100644 index 000000000..49383f3bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#31303A"; +declare const SiMilanote: IconType; +export { SiMilanote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.mjs new file mode 100644 index 000000000..c512ddf68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMilanote.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#31303A"; +const SiMilanote = React.forwardRef(function SiMilanote2({ title = "Milanote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0Zm0 12.943L15.057 16H8.943Zm4-4v6.114L12.943 12Zm-8 6.114V8.943L11.057 12Zm8.917 2.227a.665.665 0 0 0 .367-.367l-.003.009a.665.665 0 0 0 .052-.26V7.334a.667.667 0 0 0-1.138-.471L12 11.057 7.805 6.862a.667.667 0 0 0-1.138.471v9.334a.667.667 0 0 0 .666.666h9.334c.092 0 .18-.018.26-.052l-.01.004z" }) + ] + } + ); +}); + +export { SiMilanote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.cjs new file mode 100644 index 000000000..34d00b99f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A1EA"; +const SiMilvus = React__namespace.forwardRef(function SiMilvus2({ title = "Milvus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.536 11.997a4.005 4.005 0 0 1-4.015 4.018c-2.36-.005-4.05-1.954-4.01-4.08a4.013 4.013 0 0 1 8.025.061zm8.463-.04a.823.823 0 0 1-.25.616q-1.122 1.128-2.248 2.25c-.082.083-.165.1-.25.054-.091-.048-.124-.121-.098-.242a12.764 12.764 0 0 0 .25-1.626 12.153 12.153 0 0 0 .028-1.49 11.56 11.56 0 0 0-.27-2.114.255.255 0 0 1 .017-.213.194.194 0 0 1 .273-.052.628.628 0 0 1 .086.075l2.174 2.174c.171.17.29.366.289.567zM11.226 20c-1.89-.002-3.488-.565-4.926-1.611a8.317 8.317 0 0 1-.952-.816q-1.125-1.112-2.253-2.221l-1.931-1.899c-.291-.285-.583-.57-.873-.857-.393-.39-.387-.83.012-1.217.296-.288.59-.579.885-.868q1.433-1.41 2.867-2.818c.532-.522 1.057-1.051 1.604-1.555a7.996 7.996 0 0 1 3.786-1.95A7.668 7.668 0 0 1 11.135 4c1.89.015 3.612.546 5.113 1.723a7.987 7.987 0 0 1 2.282 2.77 7.567 7.567 0 0 1 .76 2.556c.255 2.404-.414 4.518-2.046 6.312a7.772 7.772 0 0 1-3.927 2.366 8.995 8.995 0 0 1-2.091.274zm.364-2.137a5.819 5.819 0 0 0 .605-.036 5.35 5.35 0 0 0 .38-.05c1.525-.28 2.76-1.051 3.704-2.263.92-1.178 1.28-2.542 1.168-4.028a5.626 5.626 0 0 0-.631-2.168c-.627-1.213-1.596-2.067-2.817-2.646-1.096-.519-2.248-.649-3.443-.464A5.814 5.814 0 0 0 7.33 7.8c-.858.83-1.707 1.669-2.56 2.504-.426.419-.85.841-1.28 1.257-.274.266-.286.588-.013.857q.804.793 1.61 1.583c.722.709 1.44 1.42 2.165 2.126 1.184 1.153 2.604 1.737 4.339 1.738z" }) + ] + } + ); +}); + +exports.default = SiMilvus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.d.ts new file mode 100644 index 000000000..58ef5897c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A1EA"; +declare const SiMilvus: IconType; +export { SiMilvus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.mjs new file mode 100644 index 000000000..42b7733d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMilvus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A1EA"; +const SiMilvus = React.forwardRef(function SiMilvus2({ title = "Milvus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.536 11.997a4.005 4.005 0 0 1-4.015 4.018c-2.36-.005-4.05-1.954-4.01-4.08a4.013 4.013 0 0 1 8.025.061zm8.463-.04a.823.823 0 0 1-.25.616q-1.122 1.128-2.248 2.25c-.082.083-.165.1-.25.054-.091-.048-.124-.121-.098-.242a12.764 12.764 0 0 0 .25-1.626 12.153 12.153 0 0 0 .028-1.49 11.56 11.56 0 0 0-.27-2.114.255.255 0 0 1 .017-.213.194.194 0 0 1 .273-.052.628.628 0 0 1 .086.075l2.174 2.174c.171.17.29.366.289.567zM11.226 20c-1.89-.002-3.488-.565-4.926-1.611a8.317 8.317 0 0 1-.952-.816q-1.125-1.112-2.253-2.221l-1.931-1.899c-.291-.285-.583-.57-.873-.857-.393-.39-.387-.83.012-1.217.296-.288.59-.579.885-.868q1.433-1.41 2.867-2.818c.532-.522 1.057-1.051 1.604-1.555a7.996 7.996 0 0 1 3.786-1.95A7.668 7.668 0 0 1 11.135 4c1.89.015 3.612.546 5.113 1.723a7.987 7.987 0 0 1 2.282 2.77 7.567 7.567 0 0 1 .76 2.556c.255 2.404-.414 4.518-2.046 6.312a7.772 7.772 0 0 1-3.927 2.366 8.995 8.995 0 0 1-2.091.274zm.364-2.137a5.819 5.819 0 0 0 .605-.036 5.35 5.35 0 0 0 .38-.05c1.525-.28 2.76-1.051 3.704-2.263.92-1.178 1.28-2.542 1.168-4.028a5.626 5.626 0 0 0-.631-2.168c-.627-1.213-1.596-2.067-2.817-2.646-1.096-.519-2.248-.649-3.443-.464A5.814 5.814 0 0 0 7.33 7.8c-.858.83-1.707 1.669-2.56 2.504-.426.419-.85.841-1.28 1.257-.274.266-.286.588-.013.857q.804.793 1.61 1.583c.722.709 1.44 1.42 2.165 2.126 1.184 1.153 2.604 1.737 4.339 1.738z" }) + ] + } + ); +}); + +export { SiMilvus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.cjs new file mode 100644 index 000000000..1fa71d307 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FED12F"; +const SiMinds = React__namespace.forwardRef(function SiMinds2({ title = "Minds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.496 18.381a.052.052 0 0 0 .03-.033l.693-2.217 3.192-4.791a.052.052 0 0 0 .003-.004.052.052 0 0 0 .001-.002.052.052 0 0 0 .001-.002.052.052 0 0 0 .002-.005.052.052 0 0 0 0-.003.052.052 0 0 0 .002-.003.052.052 0 0 0 0-.004.052.052 0 0 0 0-.005.052.052 0 0 0 0-.003.052.052 0 0 0 0-.003l-.416-6.947a.052.052 0 0 0 0-.001.052.052 0 0 0 0-.005.052.052 0 0 0 0-.002.052.052 0 0 0-.004-.008.052.052 0 0 0-.002-.005.052.052 0 0 0-.002-.004.052.052 0 0 0-.003-.005.052.052 0 0 0-.003-.003.052.052 0 0 0 0-.001L14.818.016V.014a.052.052 0 0 0-.005-.003.052.052 0 0 0-.003-.002.052.052 0 0 0-.003-.002.052.052 0 0 0-.002-.001.052.052 0 0 0-.002-.001.052.052 0 0 0-.002-.001.052.052 0 0 0 0-.001.052.052 0 0 0-.003 0 .052.052 0 0 0-.002-.001A.052.052 0 0 0 14.79 0a.052.052 0 0 0-.004 0 .052.052 0 0 0-.002 0 .052.052 0 0 0-.002 0 .052.052 0 0 0-.003 0 .052.052 0 0 0-.002 0H9.22a.052.052 0 0 0-.003 0 .052.052 0 0 0-.004 0 .052.052 0 0 0-.004 0 .052.052 0 0 0-.003.001.052.052 0 0 0-.003.001.052.052 0 0 0-.005.002.052.052 0 0 0-.004.003.052.052 0 0 0-.004.002.052.052 0 0 0-.001 0 .052.052 0 0 0-.003.004.052.052 0 0 0-.001 0 .052.052 0 0 0-.003.003L5.01 4.326a.052.052 0 0 0-.003.005.052.052 0 0 0-.006.009.052.052 0 0 0-.002.005.052.052 0 0 0-.002.008.052.052 0 0 0 0 .002.052.052 0 0 0-.001.003.052.052 0 0 0 0 .003l-.417 6.95a.052.052 0 0 0 0 .002.052.052 0 0 0 0 .005.052.052 0 0 0 0 .004.052.052 0 0 0 0 .002.052.052 0 0 0 0 .005.052.052 0 0 0 0 .003.052.052 0 0 0 .002.002.052.052 0 0 0 0 .002.052.052 0 0 0 .002.002.052.052 0 0 0 .003.004.052.052 0 0 0 0 .003l3.195 4.79.692 2.215v.002a.052.052 0 0 0 0 .001.052.052 0 0 0 .001.002.052.052 0 0 0 .002.003.052.052 0 0 0 0 .001.052.052 0 0 0 .001.002.052.052 0 0 0 0 .001.052.052 0 0 0 .002.001.052.052 0 0 0 .001.003.052.052 0 0 0 .001.001.052.052 0 0 0 .001.001.052.052 0 0 0 .002.002.052.052 0 0 0 .003.004.052.052 0 0 0 .002.001.052.052 0 0 0 .002.002.052.052 0 0 0 .001 0 .052.052 0 0 0 .003.003.052.052 0 0 0 .001 0 .052.052 0 0 0 .002.001.052.052 0 0 0 .002.002.052.052 0 0 0 .001 0 .052.052 0 0 0 .001 0 .052.052 0 0 0 .001.001.052.052 0 0 0 .002 0 .052.052 0 0 0 .001.001.052.052 0 0 0 .001 0 .052.052 0 0 0 .003.001.052.052 0 0 0 .002 0 .052.052 0 0 0 0 .001.052.052 0 0 0 .003 0 .052.052 0 0 0 .002 0 .052.052 0 0 0 .003.001.052.052 0 0 0 .001 0 .052.052 0 0 0 .002 0h6.954a.052.052 0 0 0 .02-.004zm-.058-.1H8.889l7.203-2.095zm.618-2.193L8.619 18.25l2.704-5.678zm.068-.08L11.39 12.49l5.14-4.125zm.11-.087l.4-7.542 2.668 2.937zm-7.7 2.27l-.647-2.07 3.232-3.36zm-.698-2.166l-3.094-4.641 6.457 1.143zm11.472-4.858l-2.655-2.92 2.256-3.718zm-7.975 1.236L9.3 5.283l7.188 2.983zm-.102.024l-6.508-1.152 4.475-5.966zm5.285-4.26L9.315 5.175 14.748.15zm.095-.053L14.87.217l4.015 4.15zM4.693 11.14l.403-6.72 4.03.807zm4.474-6.011l-4.015-.803L9.167.178zm.104-.056V.1h5.376zm-.748 13.36v4.143l1.672-1.403zm.057 4.232l1.53.612 1.81.723-1.67-2.737zM12.081 24l3.339-1.335-1.67-1.402zm3.395-1.424v-4.144l-1.67 2.74zm-6.86-4.192L12 23.932l3.383-5.548z" }) + ] + } + ); +}); + +exports.default = SiMinds; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.d.ts new file mode 100644 index 000000000..83364fbf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FED12F"; +declare const SiMinds: IconType; +export { SiMinds as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.mjs new file mode 100644 index 000000000..c9d5e7b12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinds.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FED12F"; +const SiMinds = React.forwardRef(function SiMinds2({ title = "Minds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.496 18.381a.052.052 0 0 0 .03-.033l.693-2.217 3.192-4.791a.052.052 0 0 0 .003-.004.052.052 0 0 0 .001-.002.052.052 0 0 0 .001-.002.052.052 0 0 0 .002-.005.052.052 0 0 0 0-.003.052.052 0 0 0 .002-.003.052.052 0 0 0 0-.004.052.052 0 0 0 0-.005.052.052 0 0 0 0-.003.052.052 0 0 0 0-.003l-.416-6.947a.052.052 0 0 0 0-.001.052.052 0 0 0 0-.005.052.052 0 0 0 0-.002.052.052 0 0 0-.004-.008.052.052 0 0 0-.002-.005.052.052 0 0 0-.002-.004.052.052 0 0 0-.003-.005.052.052 0 0 0-.003-.003.052.052 0 0 0 0-.001L14.818.016V.014a.052.052 0 0 0-.005-.003.052.052 0 0 0-.003-.002.052.052 0 0 0-.003-.002.052.052 0 0 0-.002-.001.052.052 0 0 0-.002-.001.052.052 0 0 0-.002-.001.052.052 0 0 0 0-.001.052.052 0 0 0-.003 0 .052.052 0 0 0-.002-.001A.052.052 0 0 0 14.79 0a.052.052 0 0 0-.004 0 .052.052 0 0 0-.002 0 .052.052 0 0 0-.002 0 .052.052 0 0 0-.003 0 .052.052 0 0 0-.002 0H9.22a.052.052 0 0 0-.003 0 .052.052 0 0 0-.004 0 .052.052 0 0 0-.004 0 .052.052 0 0 0-.003.001.052.052 0 0 0-.003.001.052.052 0 0 0-.005.002.052.052 0 0 0-.004.003.052.052 0 0 0-.004.002.052.052 0 0 0-.001 0 .052.052 0 0 0-.003.004.052.052 0 0 0-.001 0 .052.052 0 0 0-.003.003L5.01 4.326a.052.052 0 0 0-.003.005.052.052 0 0 0-.006.009.052.052 0 0 0-.002.005.052.052 0 0 0-.002.008.052.052 0 0 0 0 .002.052.052 0 0 0-.001.003.052.052 0 0 0 0 .003l-.417 6.95a.052.052 0 0 0 0 .002.052.052 0 0 0 0 .005.052.052 0 0 0 0 .004.052.052 0 0 0 0 .002.052.052 0 0 0 0 .005.052.052 0 0 0 0 .003.052.052 0 0 0 .002.002.052.052 0 0 0 0 .002.052.052 0 0 0 .002.002.052.052 0 0 0 .003.004.052.052 0 0 0 0 .003l3.195 4.79.692 2.215v.002a.052.052 0 0 0 0 .001.052.052 0 0 0 .001.002.052.052 0 0 0 .002.003.052.052 0 0 0 0 .001.052.052 0 0 0 .001.002.052.052 0 0 0 0 .001.052.052 0 0 0 .002.001.052.052 0 0 0 .001.003.052.052 0 0 0 .001.001.052.052 0 0 0 .001.001.052.052 0 0 0 .002.002.052.052 0 0 0 .003.004.052.052 0 0 0 .002.001.052.052 0 0 0 .002.002.052.052 0 0 0 .001 0 .052.052 0 0 0 .003.003.052.052 0 0 0 .001 0 .052.052 0 0 0 .002.001.052.052 0 0 0 .002.002.052.052 0 0 0 .001 0 .052.052 0 0 0 .001 0 .052.052 0 0 0 .001.001.052.052 0 0 0 .002 0 .052.052 0 0 0 .001.001.052.052 0 0 0 .001 0 .052.052 0 0 0 .003.001.052.052 0 0 0 .002 0 .052.052 0 0 0 0 .001.052.052 0 0 0 .003 0 .052.052 0 0 0 .002 0 .052.052 0 0 0 .003.001.052.052 0 0 0 .001 0 .052.052 0 0 0 .002 0h6.954a.052.052 0 0 0 .02-.004zm-.058-.1H8.889l7.203-2.095zm.618-2.193L8.619 18.25l2.704-5.678zm.068-.08L11.39 12.49l5.14-4.125zm.11-.087l.4-7.542 2.668 2.937zm-7.7 2.27l-.647-2.07 3.232-3.36zm-.698-2.166l-3.094-4.641 6.457 1.143zm11.472-4.858l-2.655-2.92 2.256-3.718zm-7.975 1.236L9.3 5.283l7.188 2.983zm-.102.024l-6.508-1.152 4.475-5.966zm5.285-4.26L9.315 5.175 14.748.15zm.095-.053L14.87.217l4.015 4.15zM4.693 11.14l.403-6.72 4.03.807zm4.474-6.011l-4.015-.803L9.167.178zm.104-.056V.1h5.376zm-.748 13.36v4.143l1.672-1.403zm.057 4.232l1.53.612 1.81.723-1.67-2.737zM12.081 24l3.339-1.335-1.67-1.402zm3.395-1.424v-4.144l-1.67 2.74zm-6.86-4.192L12 23.932l3.383-5.548z" }) + ] + } + ); +}); + +export { SiMinds as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.cjs new file mode 100644 index 000000000..6b5e8fa1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMingww64 = React__namespace.forwardRef(function SiMingww642({ title = "MinGW-w64", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m -3e-4,9.3955 4.187,-4.187 4.1869,4.187 -4.187,4.187 z m 0,10.417 4.187,-4.1869 4.1869,4.187 -4.187,4.1869 z m 5.2086,-5.2085 4.1869,-4.187 4.187,4.187 -4.187,4.187 z m 0,-10.417 L 9.3953,0 13.5822,4.187 9.3952,8.3738 Z m 5.2085,5.2084 4.187,-4.1869 4.1869,4.187 -4.187,4.1869 z M 15.6253,4.187 19.8123,0 l 4.1869,4.187 -4.187,4.1869 z m -5.208,15.626 4.187,-4.1869 4.1869,4.187 L 14.6042,24 Z m 5.2086,-5.2085 4.187,-4.187 4.1868,4.187 -4.1869,4.187 z" }) + ] + } + ); +}); + +exports.default = SiMingww64; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.d.ts new file mode 100644 index 000000000..06d51e41c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMingww64: IconType; +export { SiMingww64 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.mjs new file mode 100644 index 000000000..6e74ba28a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMingww64.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMingww64 = React.forwardRef(function SiMingww642({ title = "MinGW-w64", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m -3e-4,9.3955 4.187,-4.187 4.1869,4.187 -4.187,4.187 z m 0,10.417 4.187,-4.1869 4.1869,4.187 -4.187,4.1869 z m 5.2086,-5.2085 4.1869,-4.187 4.187,4.187 -4.187,4.187 z m 0,-10.417 L 9.3953,0 13.5822,4.187 9.3952,8.3738 Z m 5.2085,5.2084 4.187,-4.1869 4.1869,4.187 -4.187,4.1869 z M 15.6253,4.187 19.8123,0 l 4.1869,4.187 -4.187,4.1869 z m -5.208,15.626 4.187,-4.1869 4.1869,4.187 L 14.6042,24 Z m 5.2086,-5.2085 4.187,-4.187 4.1868,4.187 -4.1869,4.187 z" }) + ] + } + ); +}); + +export { SiMingww64 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMini.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMini.cjs new file mode 100644 index 000000000..cd4dc03fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMini.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMini = React__namespace.forwardRef(function SiMini2({ title = "Mini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 9.1723h7.5563c.48-.749 1.1108-1.3428 1.8935-1.7828.7822-.4393 1.6314-.659 2.5484-.659.9163 0 1.7673.2203 2.5526.6615.7852.4412 1.4154 1.035 1.8892 1.7803H24l-.7483.7483h-6.3994a4.278 4.278 0 0 1 .299.8886h5.2333l-.7483.749h-4.3692c.0129.1932.019.3396.019.4393 0 .0997-.0061.2468-.019.44h3.4904l-.7489.7483h-2.8572a4.0661 4.0661 0 0 1-.299.8844h2.264l-.7582.7483H16.44c-.4738.7464-1.104 1.3421-1.8892 1.7858-.7853.4437-1.6363.6652-2.5526.6652-.917 0-1.7662-.2209-2.5484-.6627-.7827-.4425-1.4135-1.0388-1.8935-1.7883H5.6418l-.744-.7483h2.2597a4.093 4.093 0 0 1-.296-.8844H4.0062l-.7582-.7483h3.4898c-.0129-.1932-.019-.3403-.019-.44 0-.0997.0061-.2461.019-.4393h-4.36l-.7581-.749h5.2418a4.306 4.306 0 0 1 .296-.8886H.7483zm7.8437 1.0714c-.2382.5581-.3575 1.1428-.3575 1.7538 0 .6111.1193 1.1963.3575 1.7545.2381.5575.5594 1.0394.963 1.4443.4038.405.8838.7268 1.44.9662.5564.2393 1.1404.3587 1.7515.3587.6104 0 1.195-.1194 1.7532-.3587.5575-.2394 1.0388-.5613 1.4424-.9662.4037-.405.725-.8868.9656-1.4443.24-.5582.36-1.1434.36-1.7545 0-.611-.12-1.1957-.36-1.7538-.2406-.5582-.5619-1.0388-.9656-1.4425-.4036-.403-.8849-.7243-1.4424-.9637-.5582-.2393-1.1428-.3587-1.7532-.3587-.6111 0-1.1951.1194-1.7514.3587-.5563.2394-1.0363.5607-1.44.9637-.4037.4037-.725.8843-.9631 1.4425zm.5538 2.9421h.4677l-.0135-1.7729.5661 1.773.52-.0032.5557-1.7606v1.7637h.4991v-2.3766l-.7028-.0006-.603 1.8954-.6148-1.893-.6745-.0018zm3.133 0h.4953v-2.3766h-.4953zm1.0332 0h.477v-1.712l.9488 1.712h.5754v-2.3766h-.4677v1.7219l-.9489-1.7219h-.5846zm2.5483 0h.4862v-2.3766h-.4862z" }) + ] + } + ); +}); + +exports.default = SiMini; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMini.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMini.d.ts new file mode 100644 index 000000000..4d248db6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMini.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMini: IconType; +export { SiMini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMini.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMini.mjs new file mode 100644 index 000000000..506a47298 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMini.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMini = React.forwardRef(function SiMini2({ title = "Mini", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 9.1723h7.5563c.48-.749 1.1108-1.3428 1.8935-1.7828.7822-.4393 1.6314-.659 2.5484-.659.9163 0 1.7673.2203 2.5526.6615.7852.4412 1.4154 1.035 1.8892 1.7803H24l-.7483.7483h-6.3994a4.278 4.278 0 0 1 .299.8886h5.2333l-.7483.749h-4.3692c.0129.1932.019.3396.019.4393 0 .0997-.0061.2468-.019.44h3.4904l-.7489.7483h-2.8572a4.0661 4.0661 0 0 1-.299.8844h2.264l-.7582.7483H16.44c-.4738.7464-1.104 1.3421-1.8892 1.7858-.7853.4437-1.6363.6652-2.5526.6652-.917 0-1.7662-.2209-2.5484-.6627-.7827-.4425-1.4135-1.0388-1.8935-1.7883H5.6418l-.744-.7483h2.2597a4.093 4.093 0 0 1-.296-.8844H4.0062l-.7582-.7483h3.4898c-.0129-.1932-.019-.3403-.019-.44 0-.0997.0061-.2461.019-.4393h-4.36l-.7581-.749h5.2418a4.306 4.306 0 0 1 .296-.8886H.7483zm7.8437 1.0714c-.2382.5581-.3575 1.1428-.3575 1.7538 0 .6111.1193 1.1963.3575 1.7545.2381.5575.5594 1.0394.963 1.4443.4038.405.8838.7268 1.44.9662.5564.2393 1.1404.3587 1.7515.3587.6104 0 1.195-.1194 1.7532-.3587.5575-.2394 1.0388-.5613 1.4424-.9662.4037-.405.725-.8868.9656-1.4443.24-.5582.36-1.1434.36-1.7545 0-.611-.12-1.1957-.36-1.7538-.2406-.5582-.5619-1.0388-.9656-1.4425-.4036-.403-.8849-.7243-1.4424-.9637-.5582-.2393-1.1428-.3587-1.7532-.3587-.6111 0-1.1951.1194-1.7514.3587-.5563.2394-1.0363.5607-1.44.9637-.4037.4037-.725.8843-.9631 1.4425zm.5538 2.9421h.4677l-.0135-1.7729.5661 1.773.52-.0032.5557-1.7606v1.7637h.4991v-2.3766l-.7028-.0006-.603 1.8954-.6148-1.893-.6745-.0018zm3.133 0h.4953v-2.3766h-.4953zm1.0332 0h.477v-1.712l.9488 1.712h.5754v-2.3766h-.4677v1.7219l-.9489-1.7219h-.5846zm2.5483 0h.4862v-2.3766h-.4862z" }) + ] + } + ); +}); + +export { SiMini as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.cjs new file mode 100644 index 000000000..1c5fa69a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E73562"; +const SiMinimax = React__namespace.forwardRef(function SiMinimax2({ title = "MiniMax", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.43 3.92a.86.86 0 1 0-1.718 0v14.236a1.999 1.999 0 0 1-3.997 0V9.022a.86.86 0 1 0-1.718 0v3.87a1.999 1.999 0 0 1-3.997 0V11.49a.57.57 0 0 1 1.139 0v1.404a.86.86 0 0 0 1.719 0V9.022a1.999 1.999 0 0 1 3.997 0v9.134a.86.86 0 0 0 1.719 0V3.92a1.998 1.998 0 1 1 3.996 0v11.788a.57.57 0 1 1-1.139 0zm10.572 3.105a2 2 0 0 0-1.999 1.997v7.63a.86.86 0 0 1-1.718 0V3.923a1.999 1.999 0 0 0-3.997 0v16.16a.86.86 0 0 1-1.719 0V18.08a.57.57 0 1 0-1.138 0v2a1.998 1.998 0 0 0 3.996 0V3.92a.86.86 0 0 1 1.719 0v12.73a1.999 1.999 0 0 0 3.996 0V9.023a.86.86 0 1 1 1.72 0v6.686a.57.57 0 0 0 1.138 0V9.022a2 2 0 0 0-1.998-1.997" }) + ] + } + ); +}); + +exports.default = SiMinimax; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.d.ts new file mode 100644 index 000000000..0e267dd5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E73562"; +declare const SiMinimax: IconType; +export { SiMinimax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.mjs new file mode 100644 index 000000000..09eb1cf6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinimax.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E73562"; +const SiMinimax = React.forwardRef(function SiMinimax2({ title = "MiniMax", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.43 3.92a.86.86 0 1 0-1.718 0v14.236a1.999 1.999 0 0 1-3.997 0V9.022a.86.86 0 1 0-1.718 0v3.87a1.999 1.999 0 0 1-3.997 0V11.49a.57.57 0 0 1 1.139 0v1.404a.86.86 0 0 0 1.719 0V9.022a1.999 1.999 0 0 1 3.997 0v9.134a.86.86 0 0 0 1.719 0V3.92a1.998 1.998 0 1 1 3.996 0v11.788a.57.57 0 1 1-1.139 0zm10.572 3.105a2 2 0 0 0-1.999 1.997v7.63a.86.86 0 0 1-1.718 0V3.923a1.999 1.999 0 0 0-3.997 0v16.16a.86.86 0 0 1-1.719 0V18.08a.57.57 0 1 0-1.138 0v2a1.998 1.998 0 0 0 3.996 0V3.92a.86.86 0 0 1 1.719 0v12.73a1.999 1.999 0 0 0 3.996 0V9.023a.86.86 0 1 1 1.72 0v6.686a.57.57 0 0 0 1.138 0V9.022a2 2 0 0 0-1.998-1.997" }) + ] + } + ); +}); + +export { SiMinimax as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.cjs new file mode 100644 index 000000000..a3b09efa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C72E49"; +const SiMinio = React__namespace.forwardRef(function SiMinio2({ title = "MinIO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.2072.006c-.6216-.0478-1.2.1943-1.6211.582a2.15 2.15 0 0 0-.0938 3.0352l3.4082 3.5507a3.042 3.042 0 0 1-.664 4.6875l-.463.2383V7.2853a15.4198 15.4198 0 0 0-8.0174 10.4862v.0176l6.5487-3.3281v7.621L13.7794 24V13.6817l.8965-.4629a4.4432 4.4432 0 0 0 1.2207-7.0292l-3.371-3.5254a.7489.7489 0 0 1 .037-1.0547.7522.7522 0 0 1 1.0567.0371l.4668.4863-.006.0059 4.0704 4.2441a.0566.0566 0 0 0 .082 0 .06.06 0 0 0 0-.0703l-3.1406-5.1425-.1484.1425.1484-.1445C14.4945.3926 13.8287.0538 13.2072.006Zm-.9024 9.8652v2.9941l-4.1523 2.1484a13.9787 13.9787 0 0 1 2.7676-3.9277 14.1784 14.1784 0 0 1 1.3847-1.2148z" }) + ] + } + ); +}); + +exports.default = SiMinio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.d.ts new file mode 100644 index 000000000..7480b3303 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C72E49"; +declare const SiMinio: IconType; +export { SiMinio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.mjs new file mode 100644 index 000000000..e65e7465f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C72E49"; +const SiMinio = React.forwardRef(function SiMinio2({ title = "MinIO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.2072.006c-.6216-.0478-1.2.1943-1.6211.582a2.15 2.15 0 0 0-.0938 3.0352l3.4082 3.5507a3.042 3.042 0 0 1-.664 4.6875l-.463.2383V7.2853a15.4198 15.4198 0 0 0-8.0174 10.4862v.0176l6.5487-3.3281v7.621L13.7794 24V13.6817l.8965-.4629a4.4432 4.4432 0 0 0 1.2207-7.0292l-3.371-3.5254a.7489.7489 0 0 1 .037-1.0547.7522.7522 0 0 1 1.0567.0371l.4668.4863-.006.0059 4.0704 4.2441a.0566.0566 0 0 0 .082 0 .06.06 0 0 0 0-.0703l-3.1406-5.1425-.1484.1425.1484-.1445C14.4945.3926 13.8287.0538 13.2072.006Zm-.9024 9.8652v2.9941l-4.1523 2.1484a13.9787 13.9787 0 0 1 2.7676-3.9277 14.1784 14.1784 0 0 1 1.3847-1.2148z" }) + ] + } + ); +}); + +export { SiMinio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.cjs new file mode 100644 index 000000000..7f261b0b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18E299"; +const SiMintlify = React__namespace.forwardRef(function SiMintlify2({ title = "Mintlify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.158.002a8.807 8.807 0 0 0-6.249 2.59l-.062.063h-.003L2.655 8.844a.605.605 0 0 0-.062.058 8.838 8.838 0 0 0-.83 11.55l6.251-6.249.065-.063a8.778 8.778 0 0 1-1.758-5.385 8.784 8.784 0 0 1 .283-2.151 8.993 8.993 0 0 1 2.151-.286 8.802 8.802 0 0 1 5.386 1.76 8.81 8.81 0 0 1 3.032 4.11 8.879 8.879 0 0 1 .225 5.21 8.784 8.784 0 0 0-.341.082 8.846 8.846 0 0 1-4.868-.303 8.679 8.679 0 0 1-2.323-1.25l-.064.065L3.55 22.24a8.85 8.85 0 0 0 11.548-.83l.06-.062 6.19-6.187a8.801 8.801 0 0 1-.367.337c.125-.11.247-.224.366-.341l.063-.058A8.817 8.817 0 0 0 24 8.844V.002ZM8.38 3.17a8.73 8.73 0 0 1 0 0Zm-.325.413Zm-.328.475Zm-.31.518Zm-.235.455Zm-.283.66zm-.156.447Zm14.147 9.44zm-.43.343zm-1.005.65zm-.533.274zm-.475.207z" }) + ] + } + ); +}); + +exports.default = SiMintlify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.d.ts new file mode 100644 index 000000000..edb8ac0df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18E299"; +declare const SiMintlify: IconType; +export { SiMintlify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.mjs new file mode 100644 index 000000000..e4366188e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMintlify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18E299"; +const SiMintlify = React.forwardRef(function SiMintlify2({ title = "Mintlify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.158.002a8.807 8.807 0 0 0-6.249 2.59l-.062.063h-.003L2.655 8.844a.605.605 0 0 0-.062.058 8.838 8.838 0 0 0-.83 11.55l6.251-6.249.065-.063a8.778 8.778 0 0 1-1.758-5.385 8.784 8.784 0 0 1 .283-2.151 8.993 8.993 0 0 1 2.151-.286 8.802 8.802 0 0 1 5.386 1.76 8.81 8.81 0 0 1 3.032 4.11 8.879 8.879 0 0 1 .225 5.21 8.784 8.784 0 0 0-.341.082 8.846 8.846 0 0 1-4.868-.303 8.679 8.679 0 0 1-2.323-1.25l-.064.065L3.55 22.24a8.85 8.85 0 0 0 11.548-.83l.06-.062 6.19-6.187a8.801 8.801 0 0 1-.367.337c.125-.11.247-.224.366-.341l.063-.058A8.817 8.817 0 0 0 24 8.844V.002ZM8.38 3.17a8.73 8.73 0 0 1 0 0Zm-.325.413Zm-.328.475Zm-.31.518Zm-.235.455Zm-.283.66zm-.156.447Zm14.147 9.44zm-.43.343zm-1.005.65zm-.533.274zm-.475.207z" }) + ] + } + ); +}); + +export { SiMintlify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.cjs new file mode 100644 index 000000000..1b88ce4ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#30B980"; +const SiMinutemailer = React__namespace.forwardRef(function SiMinutemailer2({ title = "Minutemailer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.187 19.181L24 4.755 0 12.386l9.196 1.963.043 4.896 2.759-2.617-2.147-2.076 7.336 4.63z" }) + ] + } + ); +}); + +exports.default = SiMinutemailer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.d.ts new file mode 100644 index 000000000..aedd17e1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#30B980"; +declare const SiMinutemailer: IconType; +export { SiMinutemailer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.mjs new file mode 100644 index 000000000..41f5c076a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMinutemailer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#30B980"; +const SiMinutemailer = React.forwardRef(function SiMinutemailer2({ title = "Minutemailer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.187 19.181L24 4.755 0 12.386l9.196 1.963.043 4.896 2.759-2.617-2.147-2.076 7.336 4.63z" }) + ] + } + ); +}); + +export { SiMinutemailer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.cjs new file mode 100644 index 000000000..57a45c8e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFC00"; +const SiMiraheze = React__namespace.forwardRef(function SiMiraheze2({ title = "Miraheze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m2.677 12.923 3.768.011 1.949 3.369-1.926 3.323H2.666L.727 16.292l1.95-3.369Zm-.004-8.6 3.761.011 1.944 3.367-1.922 3.326H2.662L.727 7.69l1.946-3.367Zm14.882 0 3.768.011 1.95 3.367-1.928 3.326h-3.801L15.606 7.69l1.949-3.367Zm0 8.6 3.768.011 1.95 3.369-1.928 3.323h-3.802l-1.937-3.334 1.949-3.369Zm-7.456 4.373 3.767.011 1.951 3.368L13.889 24h-3.801l-1.939-3.336 1.95-3.368Zm0-17.296 3.767.011 1.951 3.369-1.928 3.324h-3.801L8.149 3.368 10.099 0Zm0 8.628 3.767.011 1.951 3.368-1.928 3.325h-3.801l-1.939-3.336 1.95-3.368Z" }) + ] + } + ); +}); + +exports.default = SiMiraheze; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.d.ts new file mode 100644 index 000000000..f4ff5a5d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFC00"; +declare const SiMiraheze: IconType; +export { SiMiraheze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.mjs new file mode 100644 index 000000000..5862aaa54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMiraheze.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFC00"; +const SiMiraheze = React.forwardRef(function SiMiraheze2({ title = "Miraheze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m2.677 12.923 3.768.011 1.949 3.369-1.926 3.323H2.666L.727 16.292l1.95-3.369Zm-.004-8.6 3.761.011 1.944 3.367-1.922 3.326H2.662L.727 7.69l1.946-3.367Zm14.882 0 3.768.011 1.95 3.367-1.928 3.326h-3.801L15.606 7.69l1.949-3.367Zm0 8.6 3.768.011 1.95 3.369-1.928 3.323h-3.802l-1.937-3.334 1.949-3.369Zm-7.456 4.373 3.767.011 1.951 3.368L13.889 24h-3.801l-1.939-3.336 1.95-3.368Zm0-17.296 3.767.011 1.951 3.369-1.928 3.324h-3.801L8.149 3.368 10.099 0Zm0 8.628 3.767.011 1.951 3.368-1.928 3.325h-3.801l-1.939-3.336 1.95-3.368Z" }) + ] + } + ); +}); + +export { SiMiraheze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.cjs new file mode 100644 index 000000000..b4ffbdf3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#050038"; +const SiMiro = React__namespace.forwardRef(function SiMiro2({ title = "Miro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.392 0H13.9L17 4.808 10.444 0H6.949l3.102 6.3L3.494 0H0l3.05 8.131L0 24h3.494L10.05 6.985 6.949 24h3.494L17 5.494 13.899 24h3.493L24 3.672 17.392 0z" }) + ] + } + ); +}); + +exports.default = SiMiro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.d.ts new file mode 100644 index 000000000..529cc9428 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#050038"; +declare const SiMiro: IconType; +export { SiMiro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.mjs new file mode 100644 index 000000000..aa5b3f139 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMiro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#050038"; +const SiMiro = React.forwardRef(function SiMiro2({ title = "Miro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.392 0H13.9L17 4.808 10.444 0H6.949l3.102 6.3L3.494 0H0l3.05 8.131L0 24h3.494L10.05 6.985 6.949 24h3.494L17 5.494 13.899 24h3.493L24 3.672 17.392 0z" }) + ] + } + ); +}); + +export { SiMiro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.cjs new file mode 100644 index 000000000..fe536c45f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A1CA03"; +const SiMisskey = React__namespace.forwardRef(function SiMisskey2({ title = "Misskey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.91076 16.8915c-1.03957.0038-1.93213-.6294-2.35267-1.366-.22516-.3217-.66989-.4364-.6761 0v2.0148c0 .8094-.29152 1.5097-.87581 2.1002-.56755.573-1.25977.8595-2.0779.8595-.80014 0-1.49298-.2865-2.07727-.8601C.28408 19.05 0 18.3497 0 17.5403V6.45968c0-.62378.17553-1.18863.52599-1.69455.36657-.52284.83426-.88582 1.4018-1.08769a2.84574 2.84574 0 0 1 1.00049-.17742c.90125 0 1.65239.35421 2.25281 1.06262l2.99713 3.51572c.06699.05016.263.43696.73192.43696.47016 0 .6916-.3868.75796-.43758l2.9717-3.5151c.6178-.70841 1.377-1.06262 2.2782-1.06262.3337 0 .6675.05893 1.0012.17742.5669.20187 1.0259.56422 1.377 1.08769.3665.50592.5501 1.07077.5501 1.69455V17.5403c0 .8094-.2915 1.5097-.8758 2.1002-.5675.573-1.2604.8595-2.0779.8595-.8008 0-1.493-.2865-2.0779-.8601-.5669-.5899-.8504-1.2902-.8504-2.0996v-2.0148c-.0496-.5499-.5303-.2032-.7009 0-.4503.8431-1.31369 1.3616-2.35264 1.366ZM21.447 8.60998c-.7009 0-1.3015-.24449-1.8019-.73348-.4838-.50571-.7257-1.11277-.7257-1.82118s.2419-1.30711.7257-1.79611c.5004-.50571 1.101-.75856 1.8019-.75856.7009 0 1.3017.25285 1.8025.75856.5003.489.7505 1.0877.7505 1.79611 0 .70841-.2502 1.31547-.7505 1.82118-.5008.48899-1.1016.73348-1.8025.73348Zm.0248.50655c.7009 0 1.2935.25285 1.7777.75856.5003.50571.7505 1.11301.7505 1.82181v6.2484c0 .7084-.2502 1.3155-.7505 1.8212-.4838.489-1.0764.7335-1.7777.7335-.7005 0-1.3011-.2445-1.8019-.7335-.5003-.5057-.7505-1.1128-.7505-1.8212v-6.2484c0-.7084.2502-1.3157.7505-1.82181.5004-.50571 1.101-.75856 1.8019-.75856Z" }) + ] + } + ); +}); + +exports.default = SiMisskey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.d.ts new file mode 100644 index 000000000..24bb677dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A1CA03"; +declare const SiMisskey: IconType; +export { SiMisskey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.mjs new file mode 100644 index 000000000..7bf2b5357 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMisskey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A1CA03"; +const SiMisskey = React.forwardRef(function SiMisskey2({ title = "Misskey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.91076 16.8915c-1.03957.0038-1.93213-.6294-2.35267-1.366-.22516-.3217-.66989-.4364-.6761 0v2.0148c0 .8094-.29152 1.5097-.87581 2.1002-.56755.573-1.25977.8595-2.0779.8595-.80014 0-1.49298-.2865-2.07727-.8601C.28408 19.05 0 18.3497 0 17.5403V6.45968c0-.62378.17553-1.18863.52599-1.69455.36657-.52284.83426-.88582 1.4018-1.08769a2.84574 2.84574 0 0 1 1.00049-.17742c.90125 0 1.65239.35421 2.25281 1.06262l2.99713 3.51572c.06699.05016.263.43696.73192.43696.47016 0 .6916-.3868.75796-.43758l2.9717-3.5151c.6178-.70841 1.377-1.06262 2.2782-1.06262.3337 0 .6675.05893 1.0012.17742.5669.20187 1.0259.56422 1.377 1.08769.3665.50592.5501 1.07077.5501 1.69455V17.5403c0 .8094-.2915 1.5097-.8758 2.1002-.5675.573-1.2604.8595-2.0779.8595-.8008 0-1.493-.2865-2.0779-.8601-.5669-.5899-.8504-1.2902-.8504-2.0996v-2.0148c-.0496-.5499-.5303-.2032-.7009 0-.4503.8431-1.31369 1.3616-2.35264 1.366ZM21.447 8.60998c-.7009 0-1.3015-.24449-1.8019-.73348-.4838-.50571-.7257-1.11277-.7257-1.82118s.2419-1.30711.7257-1.79611c.5004-.50571 1.101-.75856 1.8019-.75856.7009 0 1.3017.25285 1.8025.75856.5003.489.7505 1.0877.7505 1.79611 0 .70841-.2502 1.31547-.7505 1.82118-.5008.48899-1.1016.73348-1.8025.73348Zm.0248.50655c.7009 0 1.2935.25285 1.7777.75856.5003.50571.7505 1.11301.7505 1.82181v6.2484c0 .7084-.2502 1.3155-.7505 1.8212-.4838.489-1.0764.7335-1.7777.7335-.7005 0-1.3011-.2445-1.8019-.7335-.5003-.5057-.7505-1.1128-.7505-1.8212v-6.2484c0-.7084.2502-1.3157.7505-1.82181.5004-.50571 1.101-.75856 1.8019-.75856Z" }) + ] + } + ); +}); + +export { SiMisskey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.cjs new file mode 100644 index 000000000..869058a09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA520F"; +const SiMistralai = React__namespace.forwardRef(function SiMistralai2({ title = "Mistral AI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.143 3.429v3.428h-3.429v3.429h-3.428V6.857H6.857V3.43H3.43v13.714H0v3.428h10.286v-3.428H6.857v-3.429h3.429v3.429h3.429v-3.429h3.428v3.429h-3.428v3.428H24v-3.428h-3.43V3.429z" }) + ] + } + ); +}); + +exports.default = SiMistralai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.d.ts new file mode 100644 index 000000000..73c1f986b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA520F"; +declare const SiMistralai: IconType; +export { SiMistralai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.mjs new file mode 100644 index 000000000..61f1bcd06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMistralai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA520F"; +const SiMistralai = React.forwardRef(function SiMistralai2({ title = "Mistral AI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.143 3.429v3.428h-3.429v3.429h-3.428V6.857H6.857V3.43H3.43v13.714H0v3.428h10.286v-3.428H6.857v-3.429h3.429v3.429h3.429v-3.429h3.428v3.429h-3.428v3.428H24v-3.428h-3.43V3.429z" }) + ] + } + ); +}); + +export { SiMistralai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.cjs new file mode 100644 index 000000000..5b977940a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60012"; +const SiMitsubishi = React__namespace.forwardRef(function SiMitsubishi2({ title = "Mitsubishi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 22.38H0l4-6.92h8zm8 0h8l-4-6.92h-8zm0-13.84l-4-6.92-4 6.92 4 6.92Z" }) + ] + } + ); +}); + +exports.default = SiMitsubishi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.d.ts new file mode 100644 index 000000000..22e23dad9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60012"; +declare const SiMitsubishi: IconType; +export { SiMitsubishi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.mjs new file mode 100644 index 000000000..bb57c1b23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMitsubishi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60012"; +const SiMitsubishi = React.forwardRef(function SiMitsubishi2({ title = "Mitsubishi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8 22.38H0l4-6.92h8zm8 0h8l-4-6.92h-8zm0-13.84l-4-6.92-4 6.92 4 6.92Z" }) + ] + } + ); +}); + +export { SiMitsubishi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMix.cjs new file mode 100644 index 000000000..5d0cefa06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8126"; +const SiMix = React__namespace.forwardRef(function SiMix2({ title = "Mix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.001 0v21.61c0 1.32 1.074 2.39 2.4 2.39a2.396 2.396 0 0 0 2.402-2.39V8.54c0 .014-.005.026-.006.04V6.364a2.395 2.395 0 0 1 2.399-2.393 2.396 2.396 0 0 1 2.398 2.393v9.356a2.394 2.394 0 0 0 2.398 2.393 2.394 2.394 0 0 0 2.398-2.39v-3.692a2.398 2.398 0 0 1 2.385-2.078 2.4 2.4 0 0 1 2.41 2.389v1.214a2.397 2.397 0 0 0 2.408 2.389 2.399 2.399 0 0 0 2.406-2.39V.006a4.61 4.61 0 0 0-.145-.004c-1.31 0-2.558.264-3.693.74A9.449 9.449 0 0 1 23.841 0z" }) + ] + } + ); +}); + +exports.default = SiMix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMix.d.ts new file mode 100644 index 000000000..055e4d1d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8126"; +declare const SiMix: IconType; +export { SiMix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMix.mjs new file mode 100644 index 000000000..50368393d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8126"; +const SiMix = React.forwardRef(function SiMix2({ title = "Mix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.001 0v21.61c0 1.32 1.074 2.39 2.4 2.39a2.396 2.396 0 0 0 2.402-2.39V8.54c0 .014-.005.026-.006.04V6.364a2.395 2.395 0 0 1 2.399-2.393 2.396 2.396 0 0 1 2.398 2.393v9.356a2.394 2.394 0 0 0 2.398 2.393 2.394 2.394 0 0 0 2.398-2.39v-3.692a2.398 2.398 0 0 1 2.385-2.078 2.4 2.4 0 0 1 2.41 2.389v1.214a2.397 2.397 0 0 0 2.408 2.389 2.399 2.399 0 0 0 2.406-2.39V.006a4.61 4.61 0 0 0-.145-.004c-1.31 0-2.558.264-3.693.74A9.449 9.449 0 0 1 23.841 0z" }) + ] + } + ); +}); + +export { SiMix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.cjs new file mode 100644 index 000000000..c3c0e307c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5000FF"; +const SiMixcloud = React__namespace.forwardRef(function SiMixcloud2({ title = "Mixcloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.462 8.596l1.372 6.49h.319l1.372-6.49h2.462v6.808H6.742v-5.68l.232-.81h-.402l-1.43 6.49H2.854l-1.44-6.49h-.391l.222.81v5.68H0V8.596zM24 8.63v1.429L21.257 12 24 13.941v1.43l-3.235-2.329h-.348l-3.226 2.329v-1.43l2.734-1.94-2.733-1.942V8.63l3.225 2.338h.348zm-7.869 2.75v1.24H9.304v-1.24z" }) + ] + } + ); +}); + +exports.default = SiMixcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.d.ts new file mode 100644 index 000000000..177100bfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5000FF"; +declare const SiMixcloud: IconType; +export { SiMixcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.mjs new file mode 100644 index 000000000..a747d5499 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMixcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5000FF"; +const SiMixcloud = React.forwardRef(function SiMixcloud2({ title = "Mixcloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.462 8.596l1.372 6.49h.319l1.372-6.49h2.462v6.808H6.742v-5.68l.232-.81h-.402l-1.43 6.49H2.854l-1.44-6.49h-.391l.222.81v5.68H0V8.596zM24 8.63v1.429L21.257 12 24 13.941v1.43l-3.235-2.329h-.348l-3.226 2.329v-1.43l2.734-1.94-2.733-1.942V8.63l3.225 2.338h.348zm-7.869 2.75v1.24H9.304v-1.24z" }) + ] + } + ); +}); + +export { SiMixcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.cjs new file mode 100644 index 000000000..519d01f33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7856FF"; +const SiMixpanel = React__namespace.forwardRef(function SiMixpanel2({ title = "Mixpanel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.967 9.996h3.053c-.763-.477-1.048-1.145-1.431-2.384L7.443 3.366C6.919 1.458 6.49.551 4.39.551H.004v1.145h.621c1.286 0 1.431.477 1.814 1.908L3.44 7.326c.524 1.814 1.337 2.67 3.53 2.67h-.003Zm7.06 0h3.053c2.194 0 2.956-.86 3.484-2.67l1.001-3.722c.382-1.431.57-1.908 1.814-1.908H24V.551h-4.34c-2.146 0-2.576.86-3.053 2.815l-1.145 4.246c-.384 1.286-.673 1.907-1.435 2.384Zm-4.007 4.008h4.007V9.996H10.02v4.008ZM0 23.449h4.39c2.1 0 2.529-.907 3.053-2.815l1.146-4.246c.383-1.239.668-1.907 1.431-2.384H6.967c-2.194 0-3.007.86-3.531 2.67l-1.001 3.722c-.383 1.431-.524 1.907-1.814 1.907H0v1.146Zm19.65 0h4.343v-1.146h-.622c-1.239 0-1.431-.476-1.814-1.907l-1.001-3.722c-.524-1.814-1.286-2.67-3.483-2.67h-3.046c.762.477 1.041 1.098 1.424 2.384l1.145 4.246c.477 1.955.907 2.815 3.054 2.815Z" }) + ] + } + ); +}); + +exports.default = SiMixpanel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.d.ts new file mode 100644 index 000000000..11d5cea02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7856FF"; +declare const SiMixpanel: IconType; +export { SiMixpanel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.mjs new file mode 100644 index 000000000..ec414f7b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMixpanel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7856FF"; +const SiMixpanel = React.forwardRef(function SiMixpanel2({ title = "Mixpanel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.967 9.996h3.053c-.763-.477-1.048-1.145-1.431-2.384L7.443 3.366C6.919 1.458 6.49.551 4.39.551H.004v1.145h.621c1.286 0 1.431.477 1.814 1.908L3.44 7.326c.524 1.814 1.337 2.67 3.53 2.67h-.003Zm7.06 0h3.053c2.194 0 2.956-.86 3.484-2.67l1.001-3.722c.382-1.431.57-1.908 1.814-1.908H24V.551h-4.34c-2.146 0-2.576.86-3.053 2.815l-1.145 4.246c-.384 1.286-.673 1.907-1.435 2.384Zm-4.007 4.008h4.007V9.996H10.02v4.008ZM0 23.449h4.39c2.1 0 2.529-.907 3.053-2.815l1.146-4.246c.383-1.239.668-1.907 1.431-2.384H6.967c-2.194 0-3.007.86-3.531 2.67l-1.001 3.722c-.383 1.431-.524 1.907-1.814 1.907H0v1.146Zm19.65 0h4.343v-1.146h-.622c-1.239 0-1.431-.476-1.814-1.907l-1.001-3.722c-.524-1.814-1.286-2.67-3.483-2.67h-3.046c.762.477 1.041 1.098 1.424 2.384l1.145 4.246c.477 1.955.907 2.815 3.054 2.815Z" }) + ] + } + ); +}); + +export { SiMixpanel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.cjs new file mode 100644 index 000000000..a13b5c1d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#041E42"; +const SiMlb = React__namespace.forwardRef(function SiMlb2({ title = "MLB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.003 5.53a1.988 1.988 0 011.99 1.827l.007.177v8.927a2.007 2.007 0 01-1.848 2.002l-.15.006H2.002a2.003 2.003 0 01-1.42-.586 1.979 1.979 0 01-.575-1.245L0 16.46V7.535a1.994 1.994 0 01.583-1.427 2.016 2.016 0 011.242-.57l.176-.007h20.002zm-7.5.703H2.001a1.312 1.312 0 00-.926.375 1.299 1.299 0 00-.374.926v8.927a1.282 1.282 0 00.374.922c.246.245.579.383.926.384h8.116a92.275 92.275 0 00-.495-.843H8.66c0-2.402.812-3.73 1.784-3.995.133-.024.07-.68-.1-.88h-.561c-.09 0-.038-.169-.038-.169l.456-.972-.062-.266H8.455l1.383-.967c.064-2.55 2.68-2.748 4.255-1.686.937.62 1.008 1.849.937 2.698-.012.054-.244.018-.244.018s-.16.937.257.937h1.838c.749-.03 1.472.478 1.472.478l.176-.643-4.026-5.244zm7.5 0h-5.59l3.207 5.36.296.038.187.245v.229l.202.041.188.255v.221l.21.037.211.23v.51c.252.228.536.418.843.563.283.108.315.562.486.803.213.352.505.493.444.69-.143.526-.682 1.414-1.184 1.456h-1.986v.85h2.488a1.3 1.3 0 001.294-1.311V7.534h-.002a1.285 1.285 0 00-1.294-1.3zM4.022 14.404a.888.888 0 01-.638 1.513.879.879 0 01-.88-.888.888.888 0 011.518-.625z" }) + ] + } + ); +}); + +exports.default = SiMlb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.d.ts new file mode 100644 index 000000000..38f3d829c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#041E42"; +declare const SiMlb: IconType; +export { SiMlb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.mjs new file mode 100644 index 000000000..73f5196c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMlb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#041E42"; +const SiMlb = React.forwardRef(function SiMlb2({ title = "MLB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.003 5.53a1.988 1.988 0 011.99 1.827l.007.177v8.927a2.007 2.007 0 01-1.848 2.002l-.15.006H2.002a2.003 2.003 0 01-1.42-.586 1.979 1.979 0 01-.575-1.245L0 16.46V7.535a1.994 1.994 0 01.583-1.427 2.016 2.016 0 011.242-.57l.176-.007h20.002zm-7.5.703H2.001a1.312 1.312 0 00-.926.375 1.299 1.299 0 00-.374.926v8.927a1.282 1.282 0 00.374.922c.246.245.579.383.926.384h8.116a92.275 92.275 0 00-.495-.843H8.66c0-2.402.812-3.73 1.784-3.995.133-.024.07-.68-.1-.88h-.561c-.09 0-.038-.169-.038-.169l.456-.972-.062-.266H8.455l1.383-.967c.064-2.55 2.68-2.748 4.255-1.686.937.62 1.008 1.849.937 2.698-.012.054-.244.018-.244.018s-.16.937.257.937h1.838c.749-.03 1.472.478 1.472.478l.176-.643-4.026-5.244zm7.5 0h-5.59l3.207 5.36.296.038.187.245v.229l.202.041.188.255v.221l.21.037.211.23v.51c.252.228.536.418.843.563.283.108.315.562.486.803.213.352.505.493.444.69-.143.526-.682 1.414-1.184 1.456h-1.986v.85h2.488a1.3 1.3 0 001.294-1.311V7.534h-.002a1.285 1.285 0 00-1.294-1.3zM4.022 14.404a.888.888 0 01-.638 1.513.879.879 0 01-.88-.888.888.888 0 011.518-.625z" }) + ] + } + ); +}); + +export { SiMlb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.cjs new file mode 100644 index 000000000..92a75b580 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0194E2"; +const SiMlflow = React__namespace.forwardRef(function SiMlflow2({ title = "MLflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.883.002a12.044 12.044 0 0 0-9.326 19.463l3.668-2.694A7.573 7.573 0 0 1 12.043 4.45v2.867l6.908-5.14A12.012 12.012 0 0 0 11.883.002zm9.562 4.533L17.777 7.23a7.573 7.573 0 0 1-5.818 12.322v-2.867l-6.908 5.14a12.046 12.046 0 0 0 16.394-17.29z" }) + ] + } + ); +}); + +exports.default = SiMlflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.d.ts new file mode 100644 index 000000000..ab7c6e1ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0194E2"; +declare const SiMlflow: IconType; +export { SiMlflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.mjs new file mode 100644 index 000000000..d3ae0e9b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMlflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0194E2"; +const SiMlflow = React.forwardRef(function SiMlflow2({ title = "MLflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.883.002a12.044 12.044 0 0 0-9.326 19.463l3.668-2.694A7.573 7.573 0 0 1 12.043 4.45v2.867l6.908-5.14A12.012 12.012 0 0 0 11.883.002zm9.562 4.533L17.777 7.23a7.573 7.573 0 0 1-5.818 12.322v-2.867l-6.908 5.14a12.046 12.046 0 0 0 16.394-17.29z" }) + ] + } + ); +}); + +export { SiMlflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.cjs new file mode 100644 index 000000000..9d9316e2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9955"; +const SiMobx = React__namespace.forwardRef(function SiMobx2({ title = "MobX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.402 0C.625 0 0 .625 0 1.402v21.196C0 23.375.625 24 1.402 24h21.196c.777 0 1.402-.625 1.402-1.402V1.402C24 .625 23.375 0 22.598 0zm2.882 5.465h3.038v13.068H4.284v-.986h1.863V6.45H4.284zm12.394 0h3.038v.985h-1.863v11.098h1.863v.986h-3.038zm-7.856 3.55h1.35c.108.441.234.914.378 1.418.153.495.31.99.472 1.485.171.486.342.958.513 1.417.171.46.333.869.486 1.229.153-.36.315-.77.486-1.229.171-.459.338-.931.5-1.417.17-.495.328-.99.472-1.485.153-.504.284-.977.392-1.418h1.296a34.295 34.295 0 0 1-1.242 3.78 56.44 56.44 0 0 1-1.364 3.24h-1.134a63.191 63.191 0 0 1-1.377-3.24 36.226 36.226 0 0 1-1.228-3.78Z" }) + ] + } + ); +}); + +exports.default = SiMobx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.d.ts new file mode 100644 index 000000000..0a3b28a77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9955"; +declare const SiMobx: IconType; +export { SiMobx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.mjs new file mode 100644 index 000000000..218bf4050 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMobx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9955"; +const SiMobx = React.forwardRef(function SiMobx2({ title = "MobX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.402 0C.625 0 0 .625 0 1.402v21.196C0 23.375.625 24 1.402 24h21.196c.777 0 1.402-.625 1.402-1.402V1.402C24 .625 23.375 0 22.598 0zm2.882 5.465h3.038v13.068H4.284v-.986h1.863V6.45H4.284zm12.394 0h3.038v.985h-1.863v11.098h1.863v.986h-3.038zm-7.856 3.55h1.35c.108.441.234.914.378 1.418.153.495.31.99.472 1.485.171.486.342.958.513 1.417.171.46.333.869.486 1.229.153-.36.315-.77.486-1.229.171-.459.338-.931.5-1.417.17-.495.328-.99.472-1.485.153-.504.284-.977.392-1.418h1.296a34.295 34.295 0 0 1-1.242 3.78 56.44 56.44 0 0 1-1.364 3.24h-1.134a63.191 63.191 0 0 1-1.377-3.24 36.226 36.226 0 0 1-1.228-3.78Z" }) + ] + } + ); +}); + +export { SiMobx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.cjs new file mode 100644 index 000000000..bd2580e4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7102"; +const SiMobxstatetree = React__namespace.forwardRef(function SiMobxstatetree2({ title = "MobX-State-Tree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.4359.5918c-.5327.0013-1.073.2715-1.432.8068L.3056 17.5528c-.9402 1.9806.4223 3.8737 2.2691 4.4105 3.469.7726 6.646-1.2927 6.646-1.2927 4.68-2.9945 7.7024-4.6851 7.7024-4.6851 3.7297-1.8907 6.9926.4293 6.9995.4342L13.8248 1.3986c-.3309-.54-.8563-.808-1.389-.8068zm.0043 1.6599c.4191-.0013.8326.2102 1.093.635 2.4662 3.6608 5.2689 7.4349 7.6288 11.1616 0 0-2.252-1.1721-5.19.3173 0 0-2.3795 1.3306-6.0622 3.687 0 0-2.4992 1.6244-5.229 1.0164-1.4534-.4224-2.5263-1.9125-1.7865-3.4711l8.4195-12.7111c.2825-.4212.7072-.6342 1.1264-.6351zM20.86 16.4169c-4.0347.0998-7.5355 3.8695-10.387 4.9836 4.3352 5.2103 17.3143-.9708 12.454-4.4241-.6166-.4203-1.315-.578-2.067-.5595zm-.0247 1.0159c.5446.003 1.04.1454 1.4567.4783 2.288 2.2856-6.3047 6.2616-9.9585 3.647 1.1813-.0912 5.5606-4.1413 8.5018-4.1253Z" }) + ] + } + ); +}); + +exports.default = SiMobxstatetree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.d.ts new file mode 100644 index 000000000..1f5021465 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7102"; +declare const SiMobxstatetree: IconType; +export { SiMobxstatetree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.mjs new file mode 100644 index 000000000..396d6d306 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMobxstatetree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7102"; +const SiMobxstatetree = React.forwardRef(function SiMobxstatetree2({ title = "MobX-State-Tree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.4359.5918c-.5327.0013-1.073.2715-1.432.8068L.3056 17.5528c-.9402 1.9806.4223 3.8737 2.2691 4.4105 3.469.7726 6.646-1.2927 6.646-1.2927 4.68-2.9945 7.7024-4.6851 7.7024-4.6851 3.7297-1.8907 6.9926.4293 6.9995.4342L13.8248 1.3986c-.3309-.54-.8563-.808-1.389-.8068zm.0043 1.6599c.4191-.0013.8326.2102 1.093.635 2.4662 3.6608 5.2689 7.4349 7.6288 11.1616 0 0-2.252-1.1721-5.19.3173 0 0-2.3795 1.3306-6.0622 3.687 0 0-2.4992 1.6244-5.229 1.0164-1.4534-.4224-2.5263-1.9125-1.7865-3.4711l8.4195-12.7111c.2825-.4212.7072-.6342 1.1264-.6351zM20.86 16.4169c-4.0347.0998-7.5355 3.8695-10.387 4.9836 4.3352 5.2103 17.3143-.9708 12.454-4.4241-.6166-.4203-1.315-.578-2.067-.5595zm-.0247 1.0159c.5446.003 1.04.1454 1.4567.4783 2.288 2.2856-6.3047 6.2616-9.9585 3.647 1.1813-.0912 5.5606-4.1413 8.5018-4.1253Z" }) + ] + } + ); +}); + +export { SiMobxstatetree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.cjs new file mode 100644 index 000000000..6e6c87634 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8D6748"; +const SiMocha = React__namespace.forwardRef(function SiMocha2({ title = "Mocha", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.325 0c-.907 1.116-2.442 2.302-.768 4.814.558.628.838 1.953.768 2.372 0 0 2.512-1.464.977-4.116-.907-1.395-1.326-2.582-.977-3.07zm-2.79 2.582c-.628.767-1.605 1.535-.489 3.279.35.349.489 1.256.489 1.535 0 0 1.673-.978.627-2.792-.628-.907-.906-1.743-.627-2.022zm-5.094 6a.699.699 0 0 0-.697.698c0 2.372.349 10.535 3.837 14.512.14.139.28.208.489.208h5.86c.21 0 .35-.069.489-.208 3.488-3.908 3.837-12.07 3.837-14.512a.7.7 0 0 0-.698-.699H12zm2.023 2.163h9.21c.349 0 .697.278.697.697 0 1.953-.348 7.465-2.72 10.326-.21.14-.35.208-.559.208H9.976a.633.633 0 0 1-.488-.208c-2.372-2.79-2.652-8.373-2.722-10.326 0-.35.28-.697.698-.697zm8.792 4.744s-.071.627-1.745 1.255c-2.303.837-6.348.28-6.348.28.349 1.465.906 2.86 1.743 3.907.07.14.28.209.419.209h3.489c.14 0 .279-.07.418-.209 1.186-1.395 1.745-3.558 2.024-5.442z" }) + ] + } + ); +}); + +exports.default = SiMocha; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.d.ts new file mode 100644 index 000000000..26f0c9155 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8D6748"; +declare const SiMocha: IconType; +export { SiMocha as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.mjs new file mode 100644 index 000000000..b3449e1b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMocha.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8D6748"; +const SiMocha = React.forwardRef(function SiMocha2({ title = "Mocha", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.325 0c-.907 1.116-2.442 2.302-.768 4.814.558.628.838 1.953.768 2.372 0 0 2.512-1.464.977-4.116-.907-1.395-1.326-2.582-.977-3.07zm-2.79 2.582c-.628.767-1.605 1.535-.489 3.279.35.349.489 1.256.489 1.535 0 0 1.673-.978.627-2.792-.628-.907-.906-1.743-.627-2.022zm-5.094 6a.699.699 0 0 0-.697.698c0 2.372.349 10.535 3.837 14.512.14.139.28.208.489.208h5.86c.21 0 .35-.069.489-.208 3.488-3.908 3.837-12.07 3.837-14.512a.7.7 0 0 0-.698-.699H12zm2.023 2.163h9.21c.349 0 .697.278.697.697 0 1.953-.348 7.465-2.72 10.326-.21.14-.35.208-.559.208H9.976a.633.633 0 0 1-.488-.208c-2.372-2.79-2.652-8.373-2.722-10.326 0-.35.28-.697.698-.697zm8.792 4.744s-.071.627-1.745 1.255c-2.303.837-6.348.28-6.348.28.349 1.465.906 2.86 1.743 3.907.07.14.28.209.419.209h3.489c.14 0 .279-.07.418-.209 1.186-1.395 1.745-3.558 2.024-5.442z" }) + ] + } + ); +}); + +export { SiMocha as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.cjs new file mode 100644 index 000000000..58c16e890 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6A33"; +const SiMockserviceworker = React__namespace.forwardRef(function SiMockserviceworker2({ title = "Mock Service Worker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 0A4.49 4.49 0 0 0 0 4.5v15A4.49 4.49 0 0 0 4.5 24h15a4.49 4.49 0 0 0 4.5-4.5v-15A4.49 4.49 0 0 0 19.5 0Zm1.633 4.43 11.715.013c.623.001 1.208.26 1.62.674.414.414.671 1 .67 1.623v.086l-1.224 11.799a2.31 2.31 0 0 1-.836 1.545 2.293 2.293 0 0 1-3.15-.246L4.426 8.262a2.31 2.31 0 0 1-.586-1.657A2.295 2.295 0 0 1 6.133 4.43Zm2.363 3.35 7.334 8.146.844-8.137zm1.123.501 3.244.004 2.92 3.244-.336 3.227zM4.678 9.287l3.017 3.354-.369 3.57 3.588.004 3.018 3.351-7.78-.01c-.623 0-1.208-.26-1.62-.673-.414-.414-.671-1-.67-1.623v-.086z" }) + ] + } + ); +}); + +exports.default = SiMockserviceworker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.d.ts new file mode 100644 index 000000000..bfcb213ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6A33"; +declare const SiMockserviceworker: IconType; +export { SiMockserviceworker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.mjs new file mode 100644 index 000000000..cc9e53bbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMockserviceworker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6A33"; +const SiMockserviceworker = React.forwardRef(function SiMockserviceworker2({ title = "Mock Service Worker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.5 0A4.49 4.49 0 0 0 0 4.5v15A4.49 4.49 0 0 0 4.5 24h15a4.49 4.49 0 0 0 4.5-4.5v-15A4.49 4.49 0 0 0 19.5 0Zm1.633 4.43 11.715.013c.623.001 1.208.26 1.62.674.414.414.671 1 .67 1.623v.086l-1.224 11.799a2.31 2.31 0 0 1-.836 1.545 2.293 2.293 0 0 1-3.15-.246L4.426 8.262a2.31 2.31 0 0 1-.586-1.657A2.295 2.295 0 0 1 6.133 4.43Zm2.363 3.35 7.334 8.146.844-8.137zm1.123.501 3.244.004 2.92 3.244-.336 3.227zM4.678 9.287l3.017 3.354-.369 3.57 3.588.004 3.018 3.351-7.78-.01c-.623 0-1.208-.26-1.62-.673-.414-.414-.671-1-.67-1.623v-.086z" }) + ] + } + ); +}); + +export { SiMockserviceworker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModal.cjs new file mode 100644 index 000000000..4b895034f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7FEE64"; +const SiModal = React__namespace.forwardRef(function SiModal2({ title = "Modal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.89 5.57 0 14.002l2.521 4.4h5.05l4.396-7.718 4.512 7.709 4.996.037L24 14.057l-4.857-8.452-5.073-.015-2.076 3.598L9.94 5.57Zm.837.729h3.787l1.845 3.252H7.572Zm9.189.021 3.803.012 4.228 7.355-3.736-.027zm-9.82.346L6.94 9.914l-4.209 7.389-1.892-3.3Zm9.187.014 4.297 7.343-1.892 3.282-4.3-7.344zm-6.713 3.6h3.79l-4.212 7.394H3.361Zm11.64 4.109 3.74.027-1.893 3.281-3.74-.027z" }) + ] + } + ); +}); + +exports.default = SiModal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiModal.d.ts new file mode 100644 index 000000000..9dc27b423 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7FEE64"; +declare const SiModal: IconType; +export { SiModal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModal.mjs new file mode 100644 index 000000000..543f67073 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7FEE64"; +const SiModal = React.forwardRef(function SiModal2({ title = "Modal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.89 5.57 0 14.002l2.521 4.4h5.05l4.396-7.718 4.512 7.709 4.996.037L24 14.057l-4.857-8.452-5.073-.015-2.076 3.598L9.94 5.57Zm.837.729h3.787l1.845 3.252H7.572Zm9.189.021 3.803.012 4.228 7.355-3.736-.027zm-9.82.346L6.94 9.914l-4.209 7.389-1.892-3.3Zm9.187.014 4.297 7.343-1.892 3.282-4.3-7.344zm-6.713 3.6h3.79l-4.212 7.394H3.361Zm11.64 4.109 3.74.027-1.893 3.281-3.74-.027z" }) + ] + } + ); +}); + +export { SiModal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.cjs new file mode 100644 index 000000000..a5965747e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiModelcontextprotocol = React__namespace.forwardRef(function SiModelcontextprotocol2({ title = "Model Context Protocol", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.85 0a4.16 4.16 0 0 0-2.95 1.217L1.456 10.66a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l9.442-9.442a2.49 2.49 0 0 1 3.541 0 2.49 2.49 0 0 1 0 3.541L8.59 12.97l-.1.1a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l.1-.098 7.03-7.034a2.49 2.49 0 0 1 3.542 0l.049.05a2.49 2.49 0 0 1 0 3.54l-8.54 8.54a1.96 1.96 0 0 0 0 2.755l1.753 1.753a.835.835 0 0 0 1.18 0 .835.835 0 0 0 0-1.18l-1.753-1.753a.266.266 0 0 1 0-.394l8.54-8.54a4.185 4.185 0 0 0 0-5.9l-.05-.05a4.16 4.16 0 0 0-2.95-1.218c-.2 0-.401.02-.6.048a4.17 4.17 0 0 0-1.17-3.552A4.16 4.16 0 0 0 13.85 0m0 3.333a.84.84 0 0 0-.59.245L6.275 10.56a4.186 4.186 0 0 0 0 5.902 4.186 4.186 0 0 0 5.902 0L19.16 9.48a.835.835 0 0 0 0-1.18.835.835 0 0 0-1.18 0l-6.985 6.984a2.49 2.49 0 0 1-3.54 0 2.49 2.49 0 0 1 0-3.54l6.983-6.985a.835.835 0 0 0 0-1.18.84.84 0 0 0-.59-.245" }) + ] + } + ); +}); + +exports.default = SiModelcontextprotocol; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.d.ts new file mode 100644 index 000000000..a2159a884 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiModelcontextprotocol: IconType; +export { SiModelcontextprotocol as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.mjs new file mode 100644 index 000000000..f07468785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModelcontextprotocol.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiModelcontextprotocol = React.forwardRef(function SiModelcontextprotocol2({ title = "Model Context Protocol", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.85 0a4.16 4.16 0 0 0-2.95 1.217L1.456 10.66a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l9.442-9.442a2.49 2.49 0 0 1 3.541 0 2.49 2.49 0 0 1 0 3.541L8.59 12.97l-.1.1a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l.1-.098 7.03-7.034a2.49 2.49 0 0 1 3.542 0l.049.05a2.49 2.49 0 0 1 0 3.54l-8.54 8.54a1.96 1.96 0 0 0 0 2.755l1.753 1.753a.835.835 0 0 0 1.18 0 .835.835 0 0 0 0-1.18l-1.753-1.753a.266.266 0 0 1 0-.394l8.54-8.54a4.185 4.185 0 0 0 0-5.9l-.05-.05a4.16 4.16 0 0 0-2.95-1.218c-.2 0-.401.02-.6.048a4.17 4.17 0 0 0-1.17-3.552A4.16 4.16 0 0 0 13.85 0m0 3.333a.84.84 0 0 0-.59.245L6.275 10.56a4.186 4.186 0 0 0 0 5.902 4.186 4.186 0 0 0 5.902 0L19.16 9.48a.835.835 0 0 0 0-1.18.835.835 0 0 0-1.18 0l-6.985 6.984a2.49 2.49 0 0 1-3.54 0 2.49 2.49 0 0 1 0-3.54l6.983-6.985a.835.835 0 0 0 0-1.18.84.84 0 0 0-.59-.245" }) + ] + } + ); +}); + +export { SiModelcontextprotocol as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.cjs new file mode 100644 index 000000000..68a160989 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#624AFF"; +const SiModelscope = React__namespace.forwardRef(function SiModelscope2({ title = "ModelScope", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.667 5.333V8H0v5.333h2.667v-2.666H.5V8.5h2.166v2.166h2.666V8H8V5.333Zm0 8v5.334H8V16H5.333v-2.667Zm13.333-8V8h2.667v2.667h2.666V8.5H23.5v2.166h-2.166v2.666H24V8h-2.667V5.333Zm5.333 8h-2.666V16H16v2.667h5.333zM8 10.667v2.666h2.667v-2.666zm2.667 2.666V16h2.666v-2.667zm2.666 0H16v-2.666h-2.667z" }) + ] + } + ); +}); + +exports.default = SiModelscope; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.d.ts new file mode 100644 index 000000000..cf1ce12e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#624AFF"; +declare const SiModelscope: IconType; +export { SiModelscope as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.mjs new file mode 100644 index 000000000..f2a4326c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModelscope.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#624AFF"; +const SiModelscope = React.forwardRef(function SiModelscope2({ title = "ModelScope", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.667 5.333V8H0v5.333h2.667v-2.666H.5V8.5h2.166v2.166h2.666V8H8V5.333Zm0 8v5.334H8V16H5.333v-2.667Zm13.333-8V8h2.667v2.667h2.666V8.5H23.5v2.166h-2.166v2.666H24V8h-2.667V5.333Zm5.333 8h-2.666V16H16v2.667h5.333zM8 10.667v2.666h2.667v-2.666zm2.667 2.666V16h2.666v-2.667zm2.666 0H16v-2.666h-2.667z" }) + ] + } + ); +}); + +export { SiModelscope as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModin.cjs new file mode 100644 index 000000000..524cc18a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#001729"; +const SiModin = React__namespace.forwardRef(function SiModin2({ title = "Modin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.4403 7.3914H8.506a.3583.3583 0 0 0 .3536-.3536.3583.3583 0 0 0-.3536-.3583H6.4403a.3583.3583 0 1 0 0 .7119zm14.0794 7.0816a1.7402 1.7402 0 0 0-1.7727 1.7774 1.7727 1.7727 0 0 0 1.7727 1.796h1.703A1.7727 1.7727 0 0 0 24 16.2735a1.7448 1.7448 0 0 0-1.7773-1.7774zm1.703-4.9506A1.7448 1.7448 0 0 0 24 7.745a1.7727 1.7727 0 0 0-1.7773-1.7727h-1.703A1.7727 1.7727 0 0 0 18.747 7.745a1.7402 1.7402 0 0 0 1.7727 1.7774zm-1.703.6979a1.7774 1.7774 0 0 0-1.7727 1.7774 1.7402 1.7402 0 0 0 1.7727 1.7774h1.703A1.7448 1.7448 0 0 0 24 11.9977a1.7774 1.7774 0 0 0-1.7773-1.7728zm-4.8854 4.2527a1.7402 1.7402 0 0 0-1.7728 1.7774 1.768 1.768 0 0 0 1.7728 1.796h.6327a1.7727 1.7727 0 0 0 1.7774-1.7728 1.7448 1.7448 0 0 0-1.7774-1.8006zm.6327-4.9506a1.7448 1.7448 0 0 0 1.7774-1.7774 1.7727 1.7727 0 0 0-1.7774-1.7727h-.6514A1.768 1.768 0 0 0 13.843 7.745a1.7402 1.7402 0 0 0 1.7727 1.7774zm-.6514.6979a1.7774 1.7774 0 0 0-1.754 1.7774 1.7402 1.7402 0 0 0 1.7727 1.7774h.6327a1.7448 1.7448 0 0 0 1.796-1.7774 1.7774 1.7774 0 0 0-1.796-1.7774zM3.9138 8.8244h1.033a.3536.3536 0 0 0 .3582-.3536.363.363 0 0 0-.3583-.3582H3.9324a.3536.3536 0 0 0 0 .7072zm-3.15-2.131h.2699a.3536.3536 0 0 0 .3583-.3536.363.363 0 0 0-.3583-.3582H.7638a.3536.3536 0 0 0 0 .7072zm5.6765 9.9106H8.506a.3536.3536 0 0 1 .3536.3536.3583.3583 0 0 1-.3536.3583H6.4403a.3583.3583 0 1 1 0-.712zm-2.5079-1.4191h1.033a.3536.3536 0 1 1 0 .7072h-1.033a.3536.3536 0 0 1 0-.7072zm-3.15 2.131h.2699a.3536.3536 0 0 1 .3583.3536.363.363 0 0 1-.3583.3582H.7824a.3536.3536 0 0 1 0-.7072zm1.5867.7304h9.0264a1.7727 1.7727 0 0 0 1.7728-1.7727 1.7402 1.7402 0 0 0-1.7728-1.7774H1.6944a.3583.3583 0 0 0 0 .712h.9306a.3536.3536 0 0 1 0 .7072H.3172a.3583.3583 0 0 0 0 .7118H5.17a.3583.3583 0 0 1 0 .712H2.3784a.3536.3536 0 0 0-.3397.3535.3583.3583 0 0 0 .3536.3583Zm4.0712-6.3883H8.506a.3536.3536 0 0 0 .3536-.3536.3583.3583 0 0 0-.3536-.3583H6.4403a.363.363 0 0 0-.3583.3583.3583.3583 0 0 0 .3583.3536zm-2.5079 1.4238h1.033a.3583.3583 0 1 0 0-.7119h-1.033a.3536.3536 0 0 0-.3536.3536.3583.3583 0 0 0 .3536.3583zm-3.15-2.131h.2699a.3536.3536 0 1 0 0-.7072H.7824a.3583.3583 0 0 0-.3536.3536.3583.3583 0 0 0 .3536.3582zm1.5867-.7119h9.0264a1.7774 1.7774 0 0 1 1.7728 1.7588 1.7402 1.7402 0 0 1-1.7728 1.7774H1.6944a.3536.3536 0 0 1 0-.7073h.9306a.3583.3583 0 0 0 .3536-.3582.3583.3583 0 0 0-.3536-.3537H.3172a.3583.3583 0 0 1 0-.7118H5.17a.3583.3583 0 0 0 0-.712H2.3784a.3583.3583 0 0 1 0-.7118zm0-4.2527h9.0264a1.7727 1.7727 0 0 1 1.7728 1.7727 1.7402 1.7402 0 0 1-1.7728 1.7774H1.6944a.3583.3583 0 0 1-.3536-.3536.3536.3536 0 0 1 .3396-.3583h.9306a.3536.3536 0 0 0 0-.7072H.3172a.3583.3583 0 0 1 0-.7119H5.17a.3583.3583 0 0 0 0-.7118H2.3784a.3536.3536 0 0 1-.3397-.3537.3583.3583 0 0 1 .3304-.3908Z" }) + ] + } + ); +}); + +exports.default = SiModin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiModin.d.ts new file mode 100644 index 000000000..cfaf4eea3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#001729"; +declare const SiModin: IconType; +export { SiModin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModin.mjs new file mode 100644 index 000000000..31b696831 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#001729"; +const SiModin = React.forwardRef(function SiModin2({ title = "Modin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.4403 7.3914H8.506a.3583.3583 0 0 0 .3536-.3536.3583.3583 0 0 0-.3536-.3583H6.4403a.3583.3583 0 1 0 0 .7119zm14.0794 7.0816a1.7402 1.7402 0 0 0-1.7727 1.7774 1.7727 1.7727 0 0 0 1.7727 1.796h1.703A1.7727 1.7727 0 0 0 24 16.2735a1.7448 1.7448 0 0 0-1.7773-1.7774zm1.703-4.9506A1.7448 1.7448 0 0 0 24 7.745a1.7727 1.7727 0 0 0-1.7773-1.7727h-1.703A1.7727 1.7727 0 0 0 18.747 7.745a1.7402 1.7402 0 0 0 1.7727 1.7774zm-1.703.6979a1.7774 1.7774 0 0 0-1.7727 1.7774 1.7402 1.7402 0 0 0 1.7727 1.7774h1.703A1.7448 1.7448 0 0 0 24 11.9977a1.7774 1.7774 0 0 0-1.7773-1.7728zm-4.8854 4.2527a1.7402 1.7402 0 0 0-1.7728 1.7774 1.768 1.768 0 0 0 1.7728 1.796h.6327a1.7727 1.7727 0 0 0 1.7774-1.7728 1.7448 1.7448 0 0 0-1.7774-1.8006zm.6327-4.9506a1.7448 1.7448 0 0 0 1.7774-1.7774 1.7727 1.7727 0 0 0-1.7774-1.7727h-.6514A1.768 1.768 0 0 0 13.843 7.745a1.7402 1.7402 0 0 0 1.7727 1.7774zm-.6514.6979a1.7774 1.7774 0 0 0-1.754 1.7774 1.7402 1.7402 0 0 0 1.7727 1.7774h.6327a1.7448 1.7448 0 0 0 1.796-1.7774 1.7774 1.7774 0 0 0-1.796-1.7774zM3.9138 8.8244h1.033a.3536.3536 0 0 0 .3582-.3536.363.363 0 0 0-.3583-.3582H3.9324a.3536.3536 0 0 0 0 .7072zm-3.15-2.131h.2699a.3536.3536 0 0 0 .3583-.3536.363.363 0 0 0-.3583-.3582H.7638a.3536.3536 0 0 0 0 .7072zm5.6765 9.9106H8.506a.3536.3536 0 0 1 .3536.3536.3583.3583 0 0 1-.3536.3583H6.4403a.3583.3583 0 1 1 0-.712zm-2.5079-1.4191h1.033a.3536.3536 0 1 1 0 .7072h-1.033a.3536.3536 0 0 1 0-.7072zm-3.15 2.131h.2699a.3536.3536 0 0 1 .3583.3536.363.363 0 0 1-.3583.3582H.7824a.3536.3536 0 0 1 0-.7072zm1.5867.7304h9.0264a1.7727 1.7727 0 0 0 1.7728-1.7727 1.7402 1.7402 0 0 0-1.7728-1.7774H1.6944a.3583.3583 0 0 0 0 .712h.9306a.3536.3536 0 0 1 0 .7072H.3172a.3583.3583 0 0 0 0 .7118H5.17a.3583.3583 0 0 1 0 .712H2.3784a.3536.3536 0 0 0-.3397.3535.3583.3583 0 0 0 .3536.3583Zm4.0712-6.3883H8.506a.3536.3536 0 0 0 .3536-.3536.3583.3583 0 0 0-.3536-.3583H6.4403a.363.363 0 0 0-.3583.3583.3583.3583 0 0 0 .3583.3536zm-2.5079 1.4238h1.033a.3583.3583 0 1 0 0-.7119h-1.033a.3536.3536 0 0 0-.3536.3536.3583.3583 0 0 0 .3536.3583zm-3.15-2.131h.2699a.3536.3536 0 1 0 0-.7072H.7824a.3583.3583 0 0 0-.3536.3536.3583.3583 0 0 0 .3536.3582zm1.5867-.7119h9.0264a1.7774 1.7774 0 0 1 1.7728 1.7588 1.7402 1.7402 0 0 1-1.7728 1.7774H1.6944a.3536.3536 0 0 1 0-.7073h.9306a.3583.3583 0 0 0 .3536-.3582.3583.3583 0 0 0-.3536-.3537H.3172a.3583.3583 0 0 1 0-.7118H5.17a.3583.3583 0 0 0 0-.712H2.3784a.3583.3583 0 0 1 0-.7118zm0-4.2527h9.0264a1.7727 1.7727 0 0 1 1.7728 1.7727 1.7402 1.7402 0 0 1-1.7728 1.7774H1.6944a.3583.3583 0 0 1-.3536-.3536.3536.3536 0 0 1 .3396-.3583h.9306a.3536.3536 0 0 0 0-.7072H.3172a.3583.3583 0 0 1 0-.7119H5.17a.3583.3583 0 0 0 0-.7118H2.3784a.3536.3536 0 0 1-.3397-.3537.3583.3583 0 0 1 .3304-.3908Z" }) + ] + } + ); +}); + +export { SiModin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.cjs new file mode 100644 index 000000000..31b5591e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AF5C"; +const SiModrinth = React__namespace.forwardRef(function SiModrinth2({ title = "Modrinth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.252.004a11.78 11.768 0 0 0-8.92 3.73 11 10.999 0 0 0-2.17 3.11 11.37 11.359 0 0 0-1.16 5.169c0 1.42.17 2.5.6 3.77.24.759.77 1.899 1.17 2.529a12.3 12.298 0 0 0 8.85 5.639c.44.05 2.54.07 2.76.02.2-.04.22.1-.26-1.7l-.36-1.37-1.01-.06a8.5 8.489 0 0 1-5.18-1.8 5.34 5.34 0 0 1-1.3-1.26c0-.05.34-.28.74-.5a37.572 37.545 0 0 1 2.88-1.629c.03 0 .5.45 1.06.98l1 .97 2.07-.43 2.06-.43 1.47-1.47c.8-.8 1.48-1.5 1.48-1.52 0-.09-.42-1.63-.46-1.7-.04-.06-.2-.03-1.02.18-.53.13-1.2.3-1.45.4l-.48.15-.53.53-.53.53-.93.1-.93.07-.52-.5a2.7 2.7 0 0 1-.96-1.7l-.13-.6.43-.57c.68-.9.68-.9 1.46-1.1.4-.1.65-.2.83-.33.13-.099.65-.579 1.14-1.069l.9-.9-.7-.7-.7-.7-1.95.54c-1.07.3-1.96.53-1.97.53-.03 0-2.23 2.48-2.63 2.97l-.29.35.28 1.03c.16.56.3 1.16.31 1.34l.03.3-.34.23c-.37.23-2.22 1.3-2.84 1.63-.36.2-.37.2-.44.1-.08-.1-.23-.6-.32-1.03-.18-.86-.17-2.75.02-3.73a8.84 8.839 0 0 1 7.9-6.93c.43-.03.77-.08.78-.1.06-.17.5-2.999.47-3.039-.01-.02-.1-.02-.2-.03Zm3.68.67c-.2 0-.3.1-.37.38-.06.23-.46 2.42-.46 2.52 0 .04.1.11.22.16a8.51 8.499 0 0 1 2.99 2 8.38 8.379 0 0 1 2.16 3.449 6.9 6.9 0 0 1 .4 2.8c0 1.07 0 1.27-.1 1.73a9.37 9.369 0 0 1-1.76 3.769c-.32.4-.98 1.06-1.37 1.38-.38.32-1.54 1.1-1.7 1.14-.1.03-.1.06-.07.26.03.18.64 2.56.7 2.78l.06.06a12.07 12.058 0 0 0 7.27-9.4c.13-.77.13-2.58 0-3.4a11.96 11.948 0 0 0-5.73-8.578c-.7-.42-2.05-1.06-2.25-1.06Z" }) + ] + } + ); +}); + +exports.default = SiModrinth; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.d.ts new file mode 100644 index 000000000..8f6b9dc2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AF5C"; +declare const SiModrinth: IconType; +export { SiModrinth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.mjs new file mode 100644 index 000000000..6f8165c6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModrinth.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AF5C"; +const SiModrinth = React.forwardRef(function SiModrinth2({ title = "Modrinth", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.252.004a11.78 11.768 0 0 0-8.92 3.73 11 10.999 0 0 0-2.17 3.11 11.37 11.359 0 0 0-1.16 5.169c0 1.42.17 2.5.6 3.77.24.759.77 1.899 1.17 2.529a12.3 12.298 0 0 0 8.85 5.639c.44.05 2.54.07 2.76.02.2-.04.22.1-.26-1.7l-.36-1.37-1.01-.06a8.5 8.489 0 0 1-5.18-1.8 5.34 5.34 0 0 1-1.3-1.26c0-.05.34-.28.74-.5a37.572 37.545 0 0 1 2.88-1.629c.03 0 .5.45 1.06.98l1 .97 2.07-.43 2.06-.43 1.47-1.47c.8-.8 1.48-1.5 1.48-1.52 0-.09-.42-1.63-.46-1.7-.04-.06-.2-.03-1.02.18-.53.13-1.2.3-1.45.4l-.48.15-.53.53-.53.53-.93.1-.93.07-.52-.5a2.7 2.7 0 0 1-.96-1.7l-.13-.6.43-.57c.68-.9.68-.9 1.46-1.1.4-.1.65-.2.83-.33.13-.099.65-.579 1.14-1.069l.9-.9-.7-.7-.7-.7-1.95.54c-1.07.3-1.96.53-1.97.53-.03 0-2.23 2.48-2.63 2.97l-.29.35.28 1.03c.16.56.3 1.16.31 1.34l.03.3-.34.23c-.37.23-2.22 1.3-2.84 1.63-.36.2-.37.2-.44.1-.08-.1-.23-.6-.32-1.03-.18-.86-.17-2.75.02-3.73a8.84 8.839 0 0 1 7.9-6.93c.43-.03.77-.08.78-.1.06-.17.5-2.999.47-3.039-.01-.02-.1-.02-.2-.03Zm3.68.67c-.2 0-.3.1-.37.38-.06.23-.46 2.42-.46 2.52 0 .04.1.11.22.16a8.51 8.499 0 0 1 2.99 2 8.38 8.379 0 0 1 2.16 3.449 6.9 6.9 0 0 1 .4 2.8c0 1.07 0 1.27-.1 1.73a9.37 9.369 0 0 1-1.76 3.769c-.32.4-.98 1.06-1.37 1.38-.38.32-1.54 1.1-1.7 1.14-.1.03-.1.06-.07.26.03.18.64 2.56.7 2.78l.06.06a12.07 12.058 0 0 0 7.27-9.4c.13-.77.13-2.58 0-3.4a11.96 11.948 0 0 0-5.73-8.578c-.7-.42-2.05-1.06-2.25-1.06Z" }) + ] + } + ); +}); + +export { SiModrinth as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModx.cjs new file mode 100644 index 000000000..42d6c6fd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#102C53"; +const SiModx = React__namespace.forwardRef(function SiModx2({ title = "MODX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.145 9.49l4.47-7.19H12.118l-1.24 2.023zM2.92 0v11.497l2.48 1.55 13.435-3.1zm18.16 24V12.503l-1.984-1.263-5.168 8.267zM5.165 14.053l-4.78 7.648h11.497L18.6 10.953Z" }) + ] + } + ); +}); + +exports.default = SiModx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiModx.d.ts new file mode 100644 index 000000000..261d7ffef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#102C53"; +declare const SiModx: IconType; +export { SiModx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiModx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiModx.mjs new file mode 100644 index 000000000..905ed9515 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiModx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#102C53"; +const SiModx = React.forwardRef(function SiModx2({ title = "MODX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.145 9.49l4.47-7.19H12.118l-1.24 2.023zM2.92 0v11.497l2.48 1.55 13.435-3.1zm18.16 24V12.503l-1.984-1.263-5.168 8.267zM5.165 14.053l-4.78 7.648h11.497L18.6 10.953Z" }) + ] + } + ); +}); + +export { SiModx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.cjs new file mode 100644 index 000000000..3df21765f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7AB93C"; +const SiMojeek = React__namespace.forwardRef(function SiMojeek2({ title = "Mojeek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.141 16.488c-.53 0-.824-.353-.824-1.147 0-.795.49-4.182.68-5.736.35-2.885-1.313-4.976-3.725-4.976-1.912 0-3.37.756-4.514 1.973-.776-1.173-1.648-1.973-3.343-1.973-1.652 0-2.676.605-3.684 1.574C6.189 5.138 5.222 4.63 3.777 4.63 2.578 4.629.967 5.23 0 5.825l1.077 2.44c.734-.409 1.336-.718 1.853-.718.566 0 .902.408.808 1.262-.09.824-1.09 10.268-1.09 10.268H5.9s.638-6.061.863-7.885c.264-2.137 1.299-3.49 2.774-3.49 1.294 0 1.735 1.018 1.642 2.21-.08 1.037-1.025 9.165-1.025 9.165h3.27s.72-6.738.946-8.408c.293-2.17 1.692-2.967 2.57-2.967 1.443 0 1.882 1.18 1.747 2.299-.11.91-.5 4.118-.62 5.782-.147 2.058.824 3.589 2.663 3.589 1.206 0 2.412-.344 3.27-.835l-.703-2.413c-.41.177-.797.364-1.155.364" }) + ] + } + ); +}); + +exports.default = SiMojeek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.d.ts new file mode 100644 index 000000000..ddc4d12ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7AB93C"; +declare const SiMojeek: IconType; +export { SiMojeek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.mjs new file mode 100644 index 000000000..57d3ae638 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMojeek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7AB93C"; +const SiMojeek = React.forwardRef(function SiMojeek2({ title = "Mojeek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.141 16.488c-.53 0-.824-.353-.824-1.147 0-.795.49-4.182.68-5.736.35-2.885-1.313-4.976-3.725-4.976-1.912 0-3.37.756-4.514 1.973-.776-1.173-1.648-1.973-3.343-1.973-1.652 0-2.676.605-3.684 1.574C6.189 5.138 5.222 4.63 3.777 4.63 2.578 4.629.967 5.23 0 5.825l1.077 2.44c.734-.409 1.336-.718 1.853-.718.566 0 .902.408.808 1.262-.09.824-1.09 10.268-1.09 10.268H5.9s.638-6.061.863-7.885c.264-2.137 1.299-3.49 2.774-3.49 1.294 0 1.735 1.018 1.642 2.21-.08 1.037-1.025 9.165-1.025 9.165h3.27s.72-6.738.946-8.408c.293-2.17 1.692-2.967 2.57-2.967 1.443 0 1.882 1.18 1.747 2.299-.11.91-.5 4.118-.62 5.782-.147 2.058.824 3.589 2.663 3.589 1.206 0 2.412-.344 3.27-.835l-.703-2.413c-.41.177-.797.364-1.155.364" }) + ] + } + ); +}); + +export { SiMojeek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.cjs new file mode 100644 index 000000000..41a5984fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3CAFCE"; +const SiMoleculer = React__namespace.forwardRef(function SiMoleculer2({ title = "Moleculer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.442.718a2.58 2.58 0 0 0-2.579 2.579 2.58 2.58 0 0 0 1.368 2.275L12.809 8.27a3.505 3.505 0 0 0-1.077-.172 3.505 3.505 0 0 0-3.505 3.505 3.505 3.505 0 0 0 .085.745l-2.83 1.036a2.97 2.97 0 0 0-2.513-1.39A2.97 2.97 0 0 0 0 14.962a2.97 2.97 0 0 0 2.97 2.97 2.97 2.97 0 0 0 2.969-2.97 2.97 2.97 0 0 0-.072-.634l2.716-1.193a3.505 3.505 0 0 0 3.15 1.972 3.505 3.505 0 0 0 2.129-.724l2.276 2.167a4.305 4.305 0 0 0-.749 2.426 4.305 4.305 0 0 0 4.306 4.305A4.305 4.305 0 0 0 24 18.977a4.305 4.305 0 0 0-4.305-4.305 4.305 4.305 0 0 0-2.718.969l-2.424-1.964a3.505 3.505 0 0 0 .684-2.074 3.505 3.505 0 0 0-1.521-2.89l1.204-2.891a2.58 2.58 0 0 0 .522.054 2.58 2.58 0 0 0 2.58-2.58 2.58 2.58 0 0 0-2.58-2.578Z" }) + ] + } + ); +}); + +exports.default = SiMoleculer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.d.ts new file mode 100644 index 000000000..59e24a2ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3CAFCE"; +declare const SiMoleculer: IconType; +export { SiMoleculer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.mjs new file mode 100644 index 000000000..831002dfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoleculer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3CAFCE"; +const SiMoleculer = React.forwardRef(function SiMoleculer2({ title = "Moleculer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.442.718a2.58 2.58 0 0 0-2.579 2.579 2.58 2.58 0 0 0 1.368 2.275L12.809 8.27a3.505 3.505 0 0 0-1.077-.172 3.505 3.505 0 0 0-3.505 3.505 3.505 3.505 0 0 0 .085.745l-2.83 1.036a2.97 2.97 0 0 0-2.513-1.39A2.97 2.97 0 0 0 0 14.962a2.97 2.97 0 0 0 2.97 2.97 2.97 2.97 0 0 0 2.969-2.97 2.97 2.97 0 0 0-.072-.634l2.716-1.193a3.505 3.505 0 0 0 3.15 1.972 3.505 3.505 0 0 0 2.129-.724l2.276 2.167a4.305 4.305 0 0 0-.749 2.426 4.305 4.305 0 0 0 4.306 4.305A4.305 4.305 0 0 0 24 18.977a4.305 4.305 0 0 0-4.305-4.305 4.305 4.305 0 0 0-2.718.969l-2.424-1.964a3.505 3.505 0 0 0 .684-2.074 3.505 3.505 0 0 0-1.521-2.89l1.204-2.891a2.58 2.58 0 0 0 .522.054 2.58 2.58 0 0 0 2.58-2.58 2.58 2.58 0 0 0-2.58-2.578Z" }) + ] + } + ); +}); + +export { SiMoleculer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.cjs new file mode 100644 index 000000000..cfe5e03dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A6AB1"; +const SiMomenteo = React__namespace.forwardRef(function SiMomenteo2({ title = "Momenteo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.925 6.615c-.6.01-1.154.323-1.472.831-.348.41-3.163 3.98-4.142 5.22l.765.968c1.036-1.306 4.096-5.169 4.243-5.348a.765.765 0 011.265 0c.344.42 1.624 2.047 2.703 3.408.482.591.926 1.213 1.328 1.862.626 1.043-.395 2.02-.792 2.457l-3.254-4.098a.811.811 0 00-1.25-.016L14.2 15.836 7.548 7.447a1.774 1.774 0 00-3.02.024c-.059.067-1.706 2.156-2.989 3.776-.528.701-.956 1.33-1.178 1.7-1.048 1.75.441 3.462 1.239 4.165.174.16.399.257.636.272a.727.727 0 00.677-.368l3.145-3.97s2.882 3.644 3.227 4.07a.64.64 0 001.033-.005c.198-.253.76-.962 1.373-1.733l-.765-.964c-.548.69-1.021 1.286-1.127 1.426l-3.118-3.938a.811.811 0 00-1.25.016l-3.254 4.099c-.397-.438-1.416-1.415-.792-2.458a17.57 17.57 0 011.329-1.861c1.078-1.362 2.358-2.989 2.703-3.408a.765.765 0 011.264 0l7 8.823a.64.64 0 001.034.005c.345-.426 3.227-4.07 3.227-4.07l3.146 3.968a.727.727 0 00.675.367c.238-.015.463-.11.638-.272.797-.702 2.286-2.414 1.238-4.165-.222-.37-.65-1-1.179-1.7-1.282-1.621-2.929-3.71-2.989-3.777a1.774 1.774 0 00-1.546-.854z" }) + ] + } + ); +}); + +exports.default = SiMomenteo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.d.ts new file mode 100644 index 000000000..020e6f34e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A6AB1"; +declare const SiMomenteo: IconType; +export { SiMomenteo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.mjs new file mode 100644 index 000000000..6d56954a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMomenteo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A6AB1"; +const SiMomenteo = React.forwardRef(function SiMomenteo2({ title = "Momenteo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.925 6.615c-.6.01-1.154.323-1.472.831-.348.41-3.163 3.98-4.142 5.22l.765.968c1.036-1.306 4.096-5.169 4.243-5.348a.765.765 0 011.265 0c.344.42 1.624 2.047 2.703 3.408.482.591.926 1.213 1.328 1.862.626 1.043-.395 2.02-.792 2.457l-3.254-4.098a.811.811 0 00-1.25-.016L14.2 15.836 7.548 7.447a1.774 1.774 0 00-3.02.024c-.059.067-1.706 2.156-2.989 3.776-.528.701-.956 1.33-1.178 1.7-1.048 1.75.441 3.462 1.239 4.165.174.16.399.257.636.272a.727.727 0 00.677-.368l3.145-3.97s2.882 3.644 3.227 4.07a.64.64 0 001.033-.005c.198-.253.76-.962 1.373-1.733l-.765-.964c-.548.69-1.021 1.286-1.127 1.426l-3.118-3.938a.811.811 0 00-1.25.016l-3.254 4.099c-.397-.438-1.416-1.415-.792-2.458a17.57 17.57 0 011.329-1.861c1.078-1.362 2.358-2.989 2.703-3.408a.765.765 0 011.264 0l7 8.823a.64.64 0 001.034.005c.345-.426 3.227-4.07 3.227-4.07l3.146 3.968a.727.727 0 00.675.367c.238-.015.463-.11.638-.272.797-.702 2.286-2.414 1.238-4.165-.222-.37-.65-1-1.179-1.7-1.282-1.621-2.929-3.71-2.989-3.777a1.774 1.774 0 00-1.546-.854z" }) + ] + } + ); +}); + +export { SiMomenteo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.cjs new file mode 100644 index 000000000..52e8da501 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiMonero = React__namespace.forwardRef(function SiMonero2({ title = "Monero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.365 0 0 5.373 0 12.015c0 1.335.228 2.607.618 3.81h3.577V5.729L12 13.545l7.805-7.815v10.095h3.577c.389-1.203.618-2.475.618-3.81C24 5.375 18.635 0 12 0zm-1.788 15.307l-3.417-3.421v6.351H1.758C3.87 21.689 7.678 24 12 24s8.162-2.311 10.245-5.764h-5.04v-6.351l-3.386 3.421-1.788 1.79-1.814-1.79h-.005z" }) + ] + } + ); +}); + +exports.default = SiMonero; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.d.ts new file mode 100644 index 000000000..c8b339998 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiMonero: IconType; +export { SiMonero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.mjs new file mode 100644 index 000000000..583c3ddc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonero.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiMonero = React.forwardRef(function SiMonero2({ title = "Monero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.365 0 0 5.373 0 12.015c0 1.335.228 2.607.618 3.81h3.577V5.729L12 13.545l7.805-7.815v10.095h3.577c.389-1.203.618-2.475.618-3.81C24 5.375 18.635 0 12 0zm-1.788 15.307l-3.417-3.421v6.351H1.758C3.87 21.689 7.678 24 12 24s8.162-2.311 10.245-5.764h-5.04v-6.351l-3.386 3.421-1.788 1.79-1.814-1.79h-.005z" }) + ] + } + ); +}); + +export { SiMonero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.cjs new file mode 100644 index 000000000..f2e04f0fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA291C"; +const SiMoneygram = React__namespace.forwardRef(function SiMoneygram2({ title = "MoneyGram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.6274-5.3726 12-12 12S0 18.6274 0 12c0-1.8257.4071-3.5554 1.1374-5.1051C.6514 8.1257.433 9.3446.433 10.4863c0 5.4334 4.3868 6.2203 6.2537 6.2023 2.8371-.0257 6.1543-1.416 8.9485-3.9909l-.4714 2.6494c-.1054.606.2906 1.1392.8957 1.1426h.2503c.6274 0 1.0732-.5108 1.1863-1.1426l1.0063-5.6622c.12-.6283-.2932-1.14-.9214-1.14h-5.6726c-.6309 0-1.2077.3342-1.32.9677l-.0446.2554c-.09.6026.33 1.0569.9317 1.0569h2.9589a9.48 9.48 0 0 0-.1414.1388c-2.04 1.9312-4.5558 2.988-6.6403 2.988-2.0803 0-4.41-1.3123-4.41-4.2686C3.2426 3.5546 8.9906 0 12 0c6.6137 0 12 5.3726 12 12" }) + ] + } + ); +}); + +exports.default = SiMoneygram; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.d.ts new file mode 100644 index 000000000..950d5e382 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA291C"; +declare const SiMoneygram: IconType; +export { SiMoneygram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.mjs new file mode 100644 index 000000000..421a335e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoneygram.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA291C"; +const SiMoneygram = React.forwardRef(function SiMoneygram2({ title = "MoneyGram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.6274-5.3726 12-12 12S0 18.6274 0 12c0-1.8257.4071-3.5554 1.1374-5.1051C.6514 8.1257.433 9.3446.433 10.4863c0 5.4334 4.3868 6.2203 6.2537 6.2023 2.8371-.0257 6.1543-1.416 8.9485-3.9909l-.4714 2.6494c-.1054.606.2906 1.1392.8957 1.1426h.2503c.6274 0 1.0732-.5108 1.1863-1.1426l1.0063-5.6622c.12-.6283-.2932-1.14-.9214-1.14h-5.6726c-.6309 0-1.2077.3342-1.32.9677l-.0446.2554c-.09.6026.33 1.0569.9317 1.0569h2.9589a9.48 9.48 0 0 0-.1414.1388c-2.04 1.9312-4.5558 2.988-6.6403 2.988-2.0803 0-4.41-1.3123-4.41-4.2686C3.2426 3.5546 8.9906 0 12 0c6.6137 0 12 5.3726 12 12" }) + ] + } + ); +}); + +export { SiMoneygram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.cjs new file mode 100644 index 000000000..c45235481 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#47A248"; +const SiMongodb = React__namespace.forwardRef(function SiMongodb2({ title = "MongoDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.193 9.555c-1.264-5.58-4.252-7.414-4.573-8.115-.28-.394-.53-.954-.735-1.44-.036.495-.055.685-.523 1.184-.723.566-4.438 3.682-4.74 10.02-.282 5.912 4.27 9.435 4.888 9.884l.07.05A73.49 73.49 0 0111.91 24h.481c.114-1.032.284-2.056.51-3.07.417-.296.604-.463.85-.693a11.342 11.342 0 003.639-8.464c.01-.814-.103-1.662-.197-2.218zm-5.336 8.195s0-8.291.275-8.29c.213 0 .49 10.695.49 10.695-.381-.045-.765-1.76-.765-2.405z" }) + ] + } + ); +}); + +exports.default = SiMongodb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.d.ts new file mode 100644 index 000000000..a940ef2a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#47A248"; +declare const SiMongodb: IconType; +export { SiMongodb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.mjs new file mode 100644 index 000000000..473c7880f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongodb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#47A248"; +const SiMongodb = React.forwardRef(function SiMongodb2({ title = "MongoDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.193 9.555c-1.264-5.58-4.252-7.414-4.573-8.115-.28-.394-.53-.954-.735-1.44-.036.495-.055.685-.523 1.184-.723.566-4.438 3.682-4.74 10.02-.282 5.912 4.27 9.435 4.888 9.884l.07.05A73.49 73.49 0 0111.91 24h.481c.114-1.032.284-2.056.51-3.07.417-.296.604-.463.85-.693a11.342 11.342 0 003.639-8.464c.01-.814-.103-1.662-.197-2.218zm-5.336 8.195s0-8.291.275-8.29c.213 0 .49 10.695.49 10.695-.381-.045-.765-1.76-.765-2.405z" }) + ] + } + ); +}); + +export { SiMongodb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.cjs new file mode 100644 index 000000000..7d9c516be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#880000"; +const SiMongoose = React__namespace.forwardRef(function SiMongoose2({ title = "Mongoose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.014 7.37a9.162 9.162 0 0 0-.808.025c-.218.017-.434.072-.65.11.229.118.456.213.68.315.225.103.436.232.629.387-.253-.097-.499-.208-.752-.298a8.046 8.046 0 0 0-1.624-.421c-.273-.037-.546-.073-.819.005-.276.078-.354.18-.38.458-.04.46.098.887.281 1.298a4.432 4.432 0 0 0 1.185 1.573c.391.335.825.598 1.305.787.136.053.274.103.411.155l-.009.032c-.263-.072-.532-.126-.787-.22a4.14 4.14 0 0 1-1.222-.73 4.16 4.16 0 0 1-1.007-1.22 3.43 3.43 0 0 1-.43-1.609l-.012.005C4.891 7.488.402 11.595.035 11.94l-.034.014c-.002.005 0 .01.003.016L0 11.974l.005-.002c.004.008.01.016.013.024.087-.019.173-.042.26-.054l.069-.01c.324-.115.655-.205.997-.253.484-.069.985-.159 1.48-.156.468.002.943.074 1.402.153.129.022.255.052.38.087.335.075.65.21.933.391l.06.03c.403.19.758.47 1.038.811.052.057.141.116.187.178.096.114.142.236.303.363v-1.737h2.01l.939 1.733.942-1.733h2.07v3.357l.343-.226s.375-1 2.116-1.14l1.996-.064c-.308-.637-.307-.637-.159-.83.147-.19 1.28-.314 1.48-.433l2.912-.588c.007-.022.015.012.03.007.072-.022.147-.037.25-.061l.66-.16c.042-.025.093-.034.14-.05.308-.107.577-.245.726-.573.145-.319.339-.616.41-.967.022-.111.003-.208-.078-.288-.097-.096-.222-.138-.35-.171-.421-.173-.84-.35-1.264-.513-.261-.101-.529-.185-.795-.27a30.574 30.574 0 0 0-.794-.243c-.244-.072-.49-.138-.736-.205-.24-.066-.48-.133-.72-.192-.282-.07-.565-.13-.847-.195-.215-.05-.428-.102-.644-.146-.234-.047-.47-.089-.706-.13-.302-.053-.602-.112-.905-.153-.366-.05-.734-.082-1.101-.125-.345-.04-.691-.065-1.038-.07zm-3.303.767a.154.154 0 0 1 .056.007c.42.13.83.277 1.216.491.365.203.695.45.979.756.012.013.02.028.036.05l-.645-.293-.021.026.37.551-.022.022a1.986 1.986 0 0 0-.665-.322l-.02.02.633.74-.416-.136-.017.02c.163.27.376.505.58.775-.354-.2-.665-.42-.956-.669a4.488 4.488 0 0 1-1.01-1.185c-.107-.19-.201-.385-.222-.606a.468.468 0 0 1 .011-.15.123.123 0 0 1 .113-.097zm5.424.668c.154.002.311-.006.464.015.278.037.555.092.832.14.158.027.317.052.474.086.297.064.594.133.89.2.196.046.392.092.587.14l-.329.161c-.365.027-.731.055-1.097.057a3.268 3.268 0 0 1-.675-.074c-.28-.058-.514-.196-.652-.466-.02-.04-.09-.063-.14-.078-.18-.054-.362-.1-.544-.168.063-.005.126-.014.19-.013zm3.223 2.635.005.02c-.08.022-.16.042-.239.067-.455.14-.916.266-1.363.428-.28.101-.544.25-.81.388-.233.119-.315.322-.287.575.019.162.04.324.055.488a1.786 1.786 0 0 1-.288-.701c-.035-.169.058-.273.18-.365.238-.178.496-.318.777-.41.35-.117.702-.233 1.059-.325.251-.065.513-.09.77-.133.048-.008.094-.021.141-.032zM9.141 13.955v2.676h1.869l.064-.066v-2.61l-.97 1.495z" }) + ] + } + ); +}); + +exports.default = SiMongoose; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.d.ts new file mode 100644 index 000000000..6cbb11b64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#880000"; +declare const SiMongoose: IconType; +export { SiMongoose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.mjs new file mode 100644 index 000000000..4f2b21527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoose.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#880000"; +const SiMongoose = React.forwardRef(function SiMongoose2({ title = "Mongoose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.014 7.37a9.162 9.162 0 0 0-.808.025c-.218.017-.434.072-.65.11.229.118.456.213.68.315.225.103.436.232.629.387-.253-.097-.499-.208-.752-.298a8.046 8.046 0 0 0-1.624-.421c-.273-.037-.546-.073-.819.005-.276.078-.354.18-.38.458-.04.46.098.887.281 1.298a4.432 4.432 0 0 0 1.185 1.573c.391.335.825.598 1.305.787.136.053.274.103.411.155l-.009.032c-.263-.072-.532-.126-.787-.22a4.14 4.14 0 0 1-1.222-.73 4.16 4.16 0 0 1-1.007-1.22 3.43 3.43 0 0 1-.43-1.609l-.012.005C4.891 7.488.402 11.595.035 11.94l-.034.014c-.002.005 0 .01.003.016L0 11.974l.005-.002c.004.008.01.016.013.024.087-.019.173-.042.26-.054l.069-.01c.324-.115.655-.205.997-.253.484-.069.985-.159 1.48-.156.468.002.943.074 1.402.153.129.022.255.052.38.087.335.075.65.21.933.391l.06.03c.403.19.758.47 1.038.811.052.057.141.116.187.178.096.114.142.236.303.363v-1.737h2.01l.939 1.733.942-1.733h2.07v3.357l.343-.226s.375-1 2.116-1.14l1.996-.064c-.308-.637-.307-.637-.159-.83.147-.19 1.28-.314 1.48-.433l2.912-.588c.007-.022.015.012.03.007.072-.022.147-.037.25-.061l.66-.16c.042-.025.093-.034.14-.05.308-.107.577-.245.726-.573.145-.319.339-.616.41-.967.022-.111.003-.208-.078-.288-.097-.096-.222-.138-.35-.171-.421-.173-.84-.35-1.264-.513-.261-.101-.529-.185-.795-.27a30.574 30.574 0 0 0-.794-.243c-.244-.072-.49-.138-.736-.205-.24-.066-.48-.133-.72-.192-.282-.07-.565-.13-.847-.195-.215-.05-.428-.102-.644-.146-.234-.047-.47-.089-.706-.13-.302-.053-.602-.112-.905-.153-.366-.05-.734-.082-1.101-.125-.345-.04-.691-.065-1.038-.07zm-3.303.767a.154.154 0 0 1 .056.007c.42.13.83.277 1.216.491.365.203.695.45.979.756.012.013.02.028.036.05l-.645-.293-.021.026.37.551-.022.022a1.986 1.986 0 0 0-.665-.322l-.02.02.633.74-.416-.136-.017.02c.163.27.376.505.58.775-.354-.2-.665-.42-.956-.669a4.488 4.488 0 0 1-1.01-1.185c-.107-.19-.201-.385-.222-.606a.468.468 0 0 1 .011-.15.123.123 0 0 1 .113-.097zm5.424.668c.154.002.311-.006.464.015.278.037.555.092.832.14.158.027.317.052.474.086.297.064.594.133.89.2.196.046.392.092.587.14l-.329.161c-.365.027-.731.055-1.097.057a3.268 3.268 0 0 1-.675-.074c-.28-.058-.514-.196-.652-.466-.02-.04-.09-.063-.14-.078-.18-.054-.362-.1-.544-.168.063-.005.126-.014.19-.013zm3.223 2.635.005.02c-.08.022-.16.042-.239.067-.455.14-.916.266-1.363.428-.28.101-.544.25-.81.388-.233.119-.315.322-.287.575.019.162.04.324.055.488a1.786 1.786 0 0 1-.288-.701c-.035-.169.058-.273.18-.365.238-.178.496-.318.777-.41.35-.117.702-.233 1.059-.325.251-.065.513-.09.77-.133.048-.008.094-.021.141-.032zM9.141 13.955v2.676h1.869l.064-.066v-2.61l-.97 1.495z" }) + ] + } + ); +}); + +export { SiMongoose as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.cjs new file mode 100644 index 000000000..b981574f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F04D35"; +const SiMongoosedotws = React__namespace.forwardRef(function SiMongoosedotws2({ title = "Mongoose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a4.863 4.863 0 0 0-3.456 1.43L1.43 8.545a4.879 4.879 0 0 0-.09 6.804L7.41 9.28a1.454 1.454 0 0 1 .37-1.434 1.471 1.471 0 0 1 2.079 0c.58.58.58 1.512.006 2.085-.37.37-.89.496-1.368.388l-6.099 6.1 6.147 6.146a4.887 4.887 0 0 0 6.911.007l6.243-6.243-2.951-2.951a1.453 1.453 0 0 1-1.434-.37 1.471 1.471 0 0 1 0-2.08 1.474 1.474 0 0 1 2.085-.006c.37.37.496.89.388 1.368l2.963 2.963a4.872 4.872 0 0 0-.185-6.708l-7.108-7.108A4.881 4.881 0 0 0 12 0Zm3.16 7.4c.122-.002.243.012.361.04.257.054.508.185.711.388.185.185.317.412.37.657a1.43 1.43 0 0 1-.364 1.428 1.47 1.47 0 0 1-1.368.388l-1.416 1.416a1.457 1.457 0 0 1-1.756 1.756 1.42 1.42 0 0 1-.71-.388 1.347 1.347 0 0 1-.371-.657A1.43 1.43 0 0 1 10.98 11a1.47 1.47 0 0 1 1.368-.388l1.416-1.416a1.46 1.46 0 0 1 1.396-1.795zm.033.733a.736.736 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.046.732.732 0 0 0-.52-.214zm-6.374.018a.735.735 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.045.733.733 0 0 0-.52-.215zm9.54 3.077a.745.745 0 0 0-.526.22.736.736 0 0 0 1.04 1.04.737.737 0 0 0 .006-1.046.73.73 0 0 0-.52-.214zm-6.329.078a.724.724 0 0 0-.41.119 1.01 1.01 0 0 0-.12.096c-.035.035-.065.077-.095.119a.737.737 0 0 0 .102.926.735.735 0 0 0 1.039-1.04.743.743 0 0 0-.516-.22z" }) + ] + } + ); +}); + +exports.default = SiMongoosedotws; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.d.ts new file mode 100644 index 000000000..cbc08cf1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F04D35"; +declare const SiMongoosedotws: IconType; +export { SiMongoosedotws as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.mjs new file mode 100644 index 000000000..2b6df1cfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMongoosedotws.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F04D35"; +const SiMongoosedotws = React.forwardRef(function SiMongoosedotws2({ title = "Mongoose", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a4.863 4.863 0 0 0-3.456 1.43L1.43 8.545a4.879 4.879 0 0 0-.09 6.804L7.41 9.28a1.454 1.454 0 0 1 .37-1.434 1.471 1.471 0 0 1 2.079 0c.58.58.58 1.512.006 2.085-.37.37-.89.496-1.368.388l-6.099 6.1 6.147 6.146a4.887 4.887 0 0 0 6.911.007l6.243-6.243-2.951-2.951a1.453 1.453 0 0 1-1.434-.37 1.471 1.471 0 0 1 0-2.08 1.474 1.474 0 0 1 2.085-.006c.37.37.496.89.388 1.368l2.963 2.963a4.872 4.872 0 0 0-.185-6.708l-7.108-7.108A4.881 4.881 0 0 0 12 0Zm3.16 7.4c.122-.002.243.012.361.04.257.054.508.185.711.388.185.185.317.412.37.657a1.43 1.43 0 0 1-.364 1.428 1.47 1.47 0 0 1-1.368.388l-1.416 1.416a1.457 1.457 0 0 1-1.756 1.756 1.42 1.42 0 0 1-.71-.388 1.347 1.347 0 0 1-.371-.657A1.43 1.43 0 0 1 10.98 11a1.47 1.47 0 0 1 1.368-.388l1.416-1.416a1.46 1.46 0 0 1 1.396-1.795zm.033.733a.736.736 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.046.732.732 0 0 0-.52-.214zm-6.374.018a.735.735 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.045.733.733 0 0 0-.52-.215zm9.54 3.077a.745.745 0 0 0-.526.22.736.736 0 0 0 1.04 1.04.737.737 0 0 0 .006-1.046.73.73 0 0 0-.52-.214zm-6.329.078a.724.724 0 0 0-.41.119 1.01 1.01 0 0 0-.12.096c-.035.035-.065.077-.095.119a.737.737 0 0 0 .102.926.735.735 0 0 0 1.039-1.04.743.743 0 0 0-.516-.22z" }) + ] + } + ); +}); + +export { SiMongoosedotws as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.cjs new file mode 100644 index 000000000..53d3b93c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C2B29"; +const SiMonica = React__namespace.forwardRef(function SiMonica2({ title = "Monica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.99 1.13C1.88 1.13 0 3.369 0 5.575c0 1.4.827 2.505 1.73 3.127a17.048 17.048 0 0 0-.978 3.608c-1.205 7.394 5.824 10.56 11.441 10.56 5.617 0 11.85-3.612 11.063-10.56a14.743 14.743 0 0 0-.883-3.682C23.235 7.993 24 6.92 24 5.574c0-2.206-1.879-4.443-3.99-4.443-1.534 0-3.215.245-4.02 1.224a11.772 11.772 0 0 0-3.797-.609c-1.462 0-2.856.218-4.14.666-.787-1.026-2.5-1.281-4.063-1.281zm8.13 2.772c4.505 0 8.24 2.896 8.872 8.467.632 5.57-4.367 8.467-8.873 8.467-4.506 0-10.146-2.539-9.18-8.467.967-5.928 4.674-8.467 9.18-8.467zM7.604 9.08c-1.752 0-2.771 2.205-2.771 4.377 0 2.172.666 2.845 2.264 3.227 1.598.38 3.423-1.692 3.423-3.864 0-2.171-1.163-3.74-2.916-3.74zm8.852 0c-1.753 0-2.916 1.569-2.916 3.74 0 2.172 1.824 4.245 3.422 3.864 1.598-.382 2.266-1.055 2.266-3.227 0-2.172-1.02-4.377-2.772-4.377zm-8.38 1.58c.922 0 1.1.71 1.1 1.635 0 .924-.57 1.633-1.493 1.633-.435 0-.566-.11-.762-.36-.22-.28-.384-.603-.33-1.273.09-1.119.562-1.635 1.484-1.635zm7.91 0c.922 0 1.392.516 1.482 1.635.054.67-.11.994-.33 1.273-.197.25-.327.36-.762.36-.923 0-1.494-.709-1.494-1.633s.18-1.635 1.103-1.635zm-3.925 5.004c-.868 0-1.724.089-1.724.637s.868 1.826 1.736 1.826c.869 0 1.711-1.278 1.711-1.826s-.854-.637-1.723-.637z" }) + ] + } + ); +}); + +exports.default = SiMonica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.d.ts new file mode 100644 index 000000000..34ee8f07f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C2B29"; +declare const SiMonica: IconType; +export { SiMonica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.mjs new file mode 100644 index 000000000..43801ec4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C2B29"; +const SiMonica = React.forwardRef(function SiMonica2({ title = "Monica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.99 1.13C1.88 1.13 0 3.369 0 5.575c0 1.4.827 2.505 1.73 3.127a17.048 17.048 0 0 0-.978 3.608c-1.205 7.394 5.824 10.56 11.441 10.56 5.617 0 11.85-3.612 11.063-10.56a14.743 14.743 0 0 0-.883-3.682C23.235 7.993 24 6.92 24 5.574c0-2.206-1.879-4.443-3.99-4.443-1.534 0-3.215.245-4.02 1.224a11.772 11.772 0 0 0-3.797-.609c-1.462 0-2.856.218-4.14.666-.787-1.026-2.5-1.281-4.063-1.281zm8.13 2.772c4.505 0 8.24 2.896 8.872 8.467.632 5.57-4.367 8.467-8.873 8.467-4.506 0-10.146-2.539-9.18-8.467.967-5.928 4.674-8.467 9.18-8.467zM7.604 9.08c-1.752 0-2.771 2.205-2.771 4.377 0 2.172.666 2.845 2.264 3.227 1.598.38 3.423-1.692 3.423-3.864 0-2.171-1.163-3.74-2.916-3.74zm8.852 0c-1.753 0-2.916 1.569-2.916 3.74 0 2.172 1.824 4.245 3.422 3.864 1.598-.382 2.266-1.055 2.266-3.227 0-2.172-1.02-4.377-2.772-4.377zm-8.38 1.58c.922 0 1.1.71 1.1 1.635 0 .924-.57 1.633-1.493 1.633-.435 0-.566-.11-.762-.36-.22-.28-.384-.603-.33-1.273.09-1.119.562-1.635 1.484-1.635zm7.91 0c.922 0 1.392.516 1.482 1.635.054.67-.11.994-.33 1.273-.197.25-.327.36-.762.36-.923 0-1.494-.709-1.494-1.633s.18-1.635 1.103-1.635zm-3.925 5.004c-.868 0-1.724.089-1.724.637s.868 1.826 1.736 1.826c.869 0 1.711-1.278 1.711-1.826s-.854-.637-1.723-.637z" }) + ] + } + ); +}); + +export { SiMonica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.cjs new file mode 100644 index 000000000..5f6ce2f95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A52C2"; +const SiMonkeytie = React__namespace.forwardRef(function SiMonkeytie2({ title = "monkey tie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002 0C9.79 0 7.575.71 5.722 2.127a.472.472 0 00-.093.658.46.46 0 00.654.093 9.404 9.404 0 0111.44 0c.202.16.5.116.653-.093a.474.474 0 00-.093-.658A10.323 10.323 0 0012.003 0zm.03 3.11a11.947 11.947 0 00-5.966 1.608 13.784 13.784 0 00-4.83 4.747c-.303.536.444 1.021.8.497a12.816 12.816 0 014.494-4.43 11.015 11.015 0 015.5-1.481c1.905.003 3.78.507 5.432 1.462 1.71.977 3.26 2.457 4.503 4.45a.46.46 0 00.414.23.46.46 0 00.4-.252.461.461 0 00-.022-.474v-.002c-1.31-2.12-2.982-3.71-4.834-4.77A11.795 11.795 0 0012.03 3.11zM12 6.164a9.27 9.27 0 00-3.71.73c-1.643.706-2.97 1.88-4.064 3.343-1.096 1.46-1.97 3.213-2.73 5.102a.474.474 0 00.262.612c.375.134.552-.144.6-.267.985-2.46 2.16-4.624 3.697-6.14a8.28 8.28 0 012.6-1.784 8.415 8.415 0 013.34-.648 9.51 9.51 0 012.98.447 7.345 7.345 0 013.39 2.25c.898 1.057 1.557 2.423 1.917 4.09.172.83.255 1.675.255 2.524a9.204 9.204 0 01-.17 1.837.47.47 0 00.355.556.472.472 0 00.558-.36c.134-.67.2-1.351.19-2.033 0-.916-.09-1.827-.272-2.722a11.155 11.155 0 00-1.207-3.2 8.394 8.394 0 00-3.288-3.232c-1.358-.731-2.95-1.104-4.7-1.104zm.102 3.076a7.51 7.51 0 00-2.214.3 5.317 5.317 0 00-1.45.7 6.552 6.552 0 00-1.787 1.906c-.702 1.093-1.19 2.33-1.698 3.479a17.31 17.31 0 01-.793 1.626c-.27.478-.594.92-.964 1.314-.418.459.216 1.094.665.662v.002c.763-.78 1.28-1.754 1.75-2.776.348-.76.664-1.541 1.007-2.277.247-.543.53-1.065.846-1.567A5.4 5.4 0 019.2 10.865c.718-.425 1.603-.685 2.802-.685a5.82 5.82 0 012.565.538c.518.25.986.59 1.385 1.003.6.633 1.05 1.395 1.322 2.226a8.63 8.63 0 01.438 2.776c-.002.98-.145 1.955-.425 2.895a8.869 8.869 0 01-1.21 2.563.472.472 0 00.122.65.465.465 0 00.646-.11 9.887 9.887 0 001.34-2.836c.3-1.024.458-2.09.46-3.157a9.76 9.76 0 00-.385-2.753c-.39-1.317-1.084-2.5-2.128-3.363a5.768 5.768 0 00-1.824-1.008 7.525 7.525 0 00-2.204-.364zm-.094 3.083c-.726.01-1.425.27-1.986.73a3.712 3.712 0 00-1.23 1.779c-.116.358-.185.749-.283 1.189a8.902 8.902 0 01-.782 2.249c-.438.838-1.11 1.757-2.22 2.72a.474.474 0 00-.052.66c.168.198.465.22.66.05.7-.6 1.32-1.285 1.846-2.038a8.727 8.727 0 001.266-2.705c.11-.393.187-.754.254-1.065a8.48 8.48 0 01.19-.777c.168-.525.49-.988.922-1.33a2.264 2.264 0 011.405-.522c.31.005.617.077.898.213.458.23.84.57 1.12.996.282.414.44.9.45 1.402.02 1.09-.11 2.18-.397 3.234a9.355 9.355 0 01-2.403 4.09c-.18.186-.18.48.002.665.272.242.566.113.662-.005a10.309 10.309 0 002.642-4.495 12.48 12.48 0 00.438-3.49 3.37 3.37 0 00-.284-1.327 3.843 3.843 0 00-1.245-1.567 3.125 3.125 0 00-1.873-.656zm-.015 3.08a.468.468 0 00-.466.47h.002a7.5 7.5 0 01-.244 1.972 7.319 7.319 0 01-1.163 2.395c-.61.819-1.27 1.59-1.994 2.308a.474.474 0 00.015.667.468.468 0 00.662-.016c1.05-1.096 1.958-2.1 2.622-3.252a7.46 7.46 0 00.76-1.868c.186-.72.282-1.461.274-2.205a.47.47 0 00-.468-.47z" }) + ] + } + ); +}); + +exports.default = SiMonkeytie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.d.ts new file mode 100644 index 000000000..92948e18a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A52C2"; +declare const SiMonkeytie: IconType; +export { SiMonkeytie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.mjs new file mode 100644 index 000000000..cb479ffd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A52C2"; +const SiMonkeytie = React.forwardRef(function SiMonkeytie2({ title = "monkey tie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002 0C9.79 0 7.575.71 5.722 2.127a.472.472 0 00-.093.658.46.46 0 00.654.093 9.404 9.404 0 0111.44 0c.202.16.5.116.653-.093a.474.474 0 00-.093-.658A10.323 10.323 0 0012.003 0zm.03 3.11a11.947 11.947 0 00-5.966 1.608 13.784 13.784 0 00-4.83 4.747c-.303.536.444 1.021.8.497a12.816 12.816 0 014.494-4.43 11.015 11.015 0 015.5-1.481c1.905.003 3.78.507 5.432 1.462 1.71.977 3.26 2.457 4.503 4.45a.46.46 0 00.414.23.46.46 0 00.4-.252.461.461 0 00-.022-.474v-.002c-1.31-2.12-2.982-3.71-4.834-4.77A11.795 11.795 0 0012.03 3.11zM12 6.164a9.27 9.27 0 00-3.71.73c-1.643.706-2.97 1.88-4.064 3.343-1.096 1.46-1.97 3.213-2.73 5.102a.474.474 0 00.262.612c.375.134.552-.144.6-.267.985-2.46 2.16-4.624 3.697-6.14a8.28 8.28 0 012.6-1.784 8.415 8.415 0 013.34-.648 9.51 9.51 0 012.98.447 7.345 7.345 0 013.39 2.25c.898 1.057 1.557 2.423 1.917 4.09.172.83.255 1.675.255 2.524a9.204 9.204 0 01-.17 1.837.47.47 0 00.355.556.472.472 0 00.558-.36c.134-.67.2-1.351.19-2.033 0-.916-.09-1.827-.272-2.722a11.155 11.155 0 00-1.207-3.2 8.394 8.394 0 00-3.288-3.232c-1.358-.731-2.95-1.104-4.7-1.104zm.102 3.076a7.51 7.51 0 00-2.214.3 5.317 5.317 0 00-1.45.7 6.552 6.552 0 00-1.787 1.906c-.702 1.093-1.19 2.33-1.698 3.479a17.31 17.31 0 01-.793 1.626c-.27.478-.594.92-.964 1.314-.418.459.216 1.094.665.662v.002c.763-.78 1.28-1.754 1.75-2.776.348-.76.664-1.541 1.007-2.277.247-.543.53-1.065.846-1.567A5.4 5.4 0 019.2 10.865c.718-.425 1.603-.685 2.802-.685a5.82 5.82 0 012.565.538c.518.25.986.59 1.385 1.003.6.633 1.05 1.395 1.322 2.226a8.63 8.63 0 01.438 2.776c-.002.98-.145 1.955-.425 2.895a8.869 8.869 0 01-1.21 2.563.472.472 0 00.122.65.465.465 0 00.646-.11 9.887 9.887 0 001.34-2.836c.3-1.024.458-2.09.46-3.157a9.76 9.76 0 00-.385-2.753c-.39-1.317-1.084-2.5-2.128-3.363a5.768 5.768 0 00-1.824-1.008 7.525 7.525 0 00-2.204-.364zm-.094 3.083c-.726.01-1.425.27-1.986.73a3.712 3.712 0 00-1.23 1.779c-.116.358-.185.749-.283 1.189a8.902 8.902 0 01-.782 2.249c-.438.838-1.11 1.757-2.22 2.72a.474.474 0 00-.052.66c.168.198.465.22.66.05.7-.6 1.32-1.285 1.846-2.038a8.727 8.727 0 001.266-2.705c.11-.393.187-.754.254-1.065a8.48 8.48 0 01.19-.777c.168-.525.49-.988.922-1.33a2.264 2.264 0 011.405-.522c.31.005.617.077.898.213.458.23.84.57 1.12.996.282.414.44.9.45 1.402.02 1.09-.11 2.18-.397 3.234a9.355 9.355 0 01-2.403 4.09c-.18.186-.18.48.002.665.272.242.566.113.662-.005a10.309 10.309 0 002.642-4.495 12.48 12.48 0 00.438-3.49 3.37 3.37 0 00-.284-1.327 3.843 3.843 0 00-1.245-1.567 3.125 3.125 0 00-1.873-.656zm-.015 3.08a.468.468 0 00-.466.47h.002a7.5 7.5 0 01-.244 1.972 7.319 7.319 0 01-1.163 2.395c-.61.819-1.27 1.59-1.994 2.308a.474.474 0 00.015.667.468.468 0 00.662-.016c1.05-1.096 1.958-2.1 2.622-3.252a7.46 7.46 0 00.76-1.868c.186-.72.282-1.461.274-2.205a.47.47 0 00-.468-.47z" }) + ] + } + ); +}); + +export { SiMonkeytie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.cjs new file mode 100644 index 000000000..f5cedece4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E2B714"; +const SiMonkeytype = React__namespace.forwardRef(function SiMonkeytype2({ title = "Monkeytype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 14.4a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6ZM8.8 14.4h4.8a.8.8 0 1 1 0 1.6H8.8a.8.8 0 1 1 0-1.6ZM7.2 9.6a.8.8 0 0 1 .8.8V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 0 1 .8-.8Z M3.201 10.359A2.4 2.4 0 0 1 7.2 8.612a2.4 2.4 0 0 1 4 1.788V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 1 0-1.6 0V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 1 0-1.6 0V12a.8.8 0 1 1-1.6 0v-1.6l.001-.041ZM17.6 12.8v2.4a.8.8 0 1 1-1.6 0v-2.4h-2.306c-.493 0-.894-.358-.894-.8 0-.442.401-.8.894-.8h6.212c.493 0 .894.358.894.8 0 .442-.401.8-.894.8H17.6ZM16.8 8H20a.8.8 0 1 1 0 1.6h-3.2a.8.8 0 1 1 0-1.6ZM4 14.4h1.6a.8.8 0 1 1 0 1.6H4a.8.8 0 1 1 0-1.6ZM13.2 8h.4a.8.8 0 1 1 0 1.6h-.4a.8.8 0 1 1 0-1.6Z M1.6 14.4H0V8.8c0-2.208 1.792-4 4-4h16c2.208 0 4 1.792 4 4v6.4c0 2.208-1.792 4-4 4H4c-2.208 0-4-1.792-4-4v-1.6h1.6v1.6A2.4 2.4 0 0 0 4 17.6h16a2.4 2.4 0 0 0 2.4-2.4V8.8A2.4 2.4 0 0 0 20 6.4H4a2.4 2.4 0 0 0-2.4 2.4v5.6Z" }) + ] + } + ); +}); + +exports.default = SiMonkeytype; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.d.ts new file mode 100644 index 000000000..2ace7ada8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E2B714"; +declare const SiMonkeytype: IconType; +export { SiMonkeytype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.mjs new file mode 100644 index 000000000..13df89413 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonkeytype.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E2B714"; +const SiMonkeytype = React.forwardRef(function SiMonkeytype2({ title = "Monkeytype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20 14.4a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6ZM8.8 14.4h4.8a.8.8 0 1 1 0 1.6H8.8a.8.8 0 1 1 0-1.6ZM7.2 9.6a.8.8 0 0 1 .8.8V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 0 1 .8-.8Z M3.201 10.359A2.4 2.4 0 0 1 7.2 8.612a2.4 2.4 0 0 1 4 1.788V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 1 0-1.6 0V12a.8.8 0 1 1-1.6 0v-1.6a.8.8 0 1 0-1.6 0V12a.8.8 0 1 1-1.6 0v-1.6l.001-.041ZM17.6 12.8v2.4a.8.8 0 1 1-1.6 0v-2.4h-2.306c-.493 0-.894-.358-.894-.8 0-.442.401-.8.894-.8h6.212c.493 0 .894.358.894.8 0 .442-.401.8-.894.8H17.6ZM16.8 8H20a.8.8 0 1 1 0 1.6h-3.2a.8.8 0 1 1 0-1.6ZM4 14.4h1.6a.8.8 0 1 1 0 1.6H4a.8.8 0 1 1 0-1.6ZM13.2 8h.4a.8.8 0 1 1 0 1.6h-.4a.8.8 0 1 1 0-1.6Z M1.6 14.4H0V8.8c0-2.208 1.792-4 4-4h16c2.208 0 4 1.792 4 4v6.4c0 2.208-1.792 4-4 4H4c-2.208 0-4-1.792-4-4v-1.6h1.6v1.6A2.4 2.4 0 0 0 4 17.6h16a2.4 2.4 0 0 0 2.4-2.4V8.8A2.4 2.4 0 0 0 20 6.4H4a2.4 2.4 0 0 0-2.4 2.4v5.6Z" }) + ] + } + ); +}); + +export { SiMonkeytype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.cjs new file mode 100644 index 000000000..af5ef55dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E73C00"; +const SiMonogame = React__namespace.forwardRef(function SiMonogame2({ title = "MonoGame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.356V7.083a7.083 7.083 0 0 0-12-5.098A7.083 7.083 0 0 0 0 7.083v9.834A7.083 7.083 0 0 0 7.083 24h9.834a7.083 7.083 0 0 0 7.07-7.51H24v-4.332H9.834v4.332h9.834v.427a2.751 2.751 0 0 1-2.751 2.751H7.083a2.751 2.751 0 0 1-2.751-2.751V7.083a2.751 2.751 0 1 1 5.502 0v3.273h4.332V7.083a2.751 2.751 0 1 1 5.502 0v3.273z" }) + ] + } + ); +}); + +exports.default = SiMonogame; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.d.ts new file mode 100644 index 000000000..88362f6d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E73C00"; +declare const SiMonogame: IconType; +export { SiMonogame as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.mjs new file mode 100644 index 000000000..b929be01b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonogame.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E73C00"; +const SiMonogame = React.forwardRef(function SiMonogame2({ title = "MonoGame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.356V7.083a7.083 7.083 0 0 0-12-5.098A7.083 7.083 0 0 0 0 7.083v9.834A7.083 7.083 0 0 0 7.083 24h9.834a7.083 7.083 0 0 0 7.07-7.51H24v-4.332H9.834v4.332h9.834v.427a2.751 2.751 0 0 1-2.751 2.751H7.083a2.751 2.751 0 0 1-2.751-2.751V7.083a2.751 2.751 0 1 1 5.502 0v3.273h4.332V7.083a2.751 2.751 0 1 1 5.502 0v3.273z" }) + ] + } + ); +}); + +export { SiMonogame as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.cjs new file mode 100644 index 000000000..9bfacb6d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB1911"; +const SiMonoprix = React__namespace.forwardRef(function SiMonoprix2({ title = "Monoprix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.072 8.042C21.072 3.612 16.981 0 12 0 6.991 0 2.928 3.612 2.928 8.042S6.99 16.085 12 16.085c.282 0 .564-.029.847-.043.62.339.747.706.761.988.142 1.608-2.44 5.08-4.303 6.49l.254.48c.113-.028 10.723-3.47 11.429-15.026.056-.283.07-.565.084-.875v-.043z" }) + ] + } + ); +}); + +exports.default = SiMonoprix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.d.ts new file mode 100644 index 000000000..0bd7f325d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB1911"; +declare const SiMonoprix: IconType; +export { SiMonoprix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.mjs new file mode 100644 index 000000000..a7519c48a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonoprix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB1911"; +const SiMonoprix = React.forwardRef(function SiMonoprix2({ title = "Monoprix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.072 8.042C21.072 3.612 16.981 0 12 0 6.991 0 2.928 3.612 2.928 8.042S6.99 16.085 12 16.085c.282 0 .564-.029.847-.043.62.339.747.706.761.988.142 1.608-2.44 5.08-4.303 6.49l.254.48c.113-.028 10.723-3.47 11.429-15.026.056-.283.07-.565.084-.875v-.043z" }) + ] + } + ); +}); + +export { SiMonoprix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.cjs new file mode 100644 index 000000000..7fde70696 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D4C9F"; +const SiMonster = React__namespace.forwardRef(function SiMonster2({ title = "Monster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0V24H5.42V12.39L12 18.19L18.58 12.39V24H24V0L12 11.23L0 0Z" }) + ] + } + ); +}); + +exports.default = SiMonster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.d.ts new file mode 100644 index 000000000..db52ebed2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D4C9F"; +declare const SiMonster: IconType; +export { SiMonster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.mjs new file mode 100644 index 000000000..a72120520 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D4C9F"; +const SiMonster = React.forwardRef(function SiMonster2({ title = "Monster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0V24H5.42V12.39L12 18.19L18.58 12.39V24H24V0L12 11.23L0 0Z" }) + ] + } + ); +}); + +export { SiMonster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.cjs new file mode 100644 index 000000000..14fa089d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14233C"; +const SiMonzo = React__namespace.forwardRef(function SiMonzo2({ title = "Monzo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.244 1.174a.443.443 0 00-.271.13l-3.97 3.97-.001.001c3.884 3.882 8.093 8.092 11.748 11.748v-8.57L4.602 1.305a.443.443 0 00-.358-.131zm15.483 0a.443.443 0 00-.329.13L12.25 8.456v8.568L24 5.275c-1.316-1.322-2.647-2.648-3.97-3.97a.443.443 0 00-.301-.131zM0 5.979l.002 10.955c0 .294.118.577.326.785l4.973 4.976c.28.282.76.083.758-.314V12.037zm23.998.003l-6.06 6.061v10.338c-.004.399.48.6.76.314l4.974-4.976c.208-.208.326-.49.326-.785z" }) + ] + } + ); +}); + +exports.default = SiMonzo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.d.ts new file mode 100644 index 000000000..e7d1bc6e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14233C"; +declare const SiMonzo: IconType; +export { SiMonzo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.mjs new file mode 100644 index 000000000..aa8aca52f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMonzo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14233C"; +const SiMonzo = React.forwardRef(function SiMonzo2({ title = "Monzo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.244 1.174a.443.443 0 00-.271.13l-3.97 3.97-.001.001c3.884 3.882 8.093 8.092 11.748 11.748v-8.57L4.602 1.305a.443.443 0 00-.358-.131zm15.483 0a.443.443 0 00-.329.13L12.25 8.456v8.568L24 5.275c-1.316-1.322-2.647-2.648-3.97-3.97a.443.443 0 00-.301-.131zM0 5.979l.002 10.955c0 .294.118.577.326.785l4.973 4.976c.28.282.76.083.758-.314V12.037zm23.998.003l-6.06 6.061v10.338c-.004.399.48.6.76.314l4.974-4.976c.208-.208.326-.49.326-.785z" }) + ] + } + ); +}); + +export { SiMonzo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.cjs new file mode 100644 index 000000000..beb881329 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00945E"; +const SiMoo = React__namespace.forwardRef(function SiMoo2({ title = "Moo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.964 24c-2.525 0-4.801-1.107-6.34-3.138-1.109-1.417-1.661-3.078-1.661-4.86 0-.555.06-1.109.185-1.602.299-1.785 1.59-4.678 3.93-8.678C9.805 2.767 11.215.554 11.289.554c.123-.246.308-.554.675-.554.372 0 .555.308.741.555 0 0 1.477 2.215 3.199 5.168 2.342 4 3.631 6.893 3.939 8.678.131.492.193 1.045.193 1.6 0 1.785-.555 3.445-1.65 4.861C16.766 22.834 14.424 24 11.964 24zm0-2.092c1.905 0 3.629-.861 4.801-2.341.799-1.044 1.229-2.337 1.229-3.69 0-.432-.059-.801-.123-1.229-.246-1.354-1.293-3.692-3.074-6.833-1.357-2.399-2.525-4.121-2.525-4.121l-.31-.433-.254.37s-1.171 1.785-2.521 4.125c-1.843 3.149-2.893 5.474-3.072 6.839-.061.431-.123.8-.123 1.229 0 1.355.429 2.587 1.229 3.693 1.11 1.538 2.831 2.399 4.74 2.399l.003-.008z" }) + ] + } + ); +}); + +exports.default = SiMoo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.d.ts new file mode 100644 index 000000000..3b88fe79d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00945E"; +declare const SiMoo: IconType; +export { SiMoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.mjs new file mode 100644 index 000000000..7a1ba209d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00945E"; +const SiMoo = React.forwardRef(function SiMoo2({ title = "Moo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.964 24c-2.525 0-4.801-1.107-6.34-3.138-1.109-1.417-1.661-3.078-1.661-4.86 0-.555.06-1.109.185-1.602.299-1.785 1.59-4.678 3.93-8.678C9.805 2.767 11.215.554 11.289.554c.123-.246.308-.554.675-.554.372 0 .555.308.741.555 0 0 1.477 2.215 3.199 5.168 2.342 4 3.631 6.893 3.939 8.678.131.492.193 1.045.193 1.6 0 1.785-.555 3.445-1.65 4.861C16.766 22.834 14.424 24 11.964 24zm0-2.092c1.905 0 3.629-.861 4.801-2.341.799-1.044 1.229-2.337 1.229-3.69 0-.432-.059-.801-.123-1.229-.246-1.354-1.293-3.692-3.074-6.833-1.357-2.399-2.525-4.121-2.525-4.121l-.31-.433-.254.37s-1.171 1.785-2.521 4.125c-1.843 3.149-2.893 5.474-3.072 6.839-.061.431-.123.8-.123 1.229 0 1.355.429 2.587 1.229 3.693 1.11 1.538 2.831 2.399 4.74 2.399l.003-.008z" }) + ] + } + ); +}); + +export { SiMoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.cjs new file mode 100644 index 000000000..651faaee2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F98012"; +const SiMoodle = React__namespace.forwardRef(function SiMoodle2({ title = "Moodle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0Zm1.1348 5.7402.0351.123-2.7363 1.9903c.3694.2606.7968.609 1.0078.8438l.0762.1035c-1.2878 2.2571-3.737 3.0557-6.3164 2.1816l.0195-.1601h-.002c-.0784-.5679-.0962-1.0524-.0585-1.463-.7507-.003-1.5298-.0402-2.2832-.0663l-.5157.0175c-.0994.8449-.0351 2.135-.0254 2.3223.3492 1.2819.2977 2.2907.295 3.5293-.4134-1.0028-.8995-2.097-.416-3.4668l-.0098-.3183c-.0007-.0143-.0683-1.1532.037-2.0625l-.4081.0136-.0371-.1191C5.7922 6.8402 8.5032 6.218 13.1348 5.7402Zm1.623 2.5137c1.2202 0 2.1885.2691 2.9043.8066.8138.601 1.2207 1.4866 1.2207 2.6582v5.6856h-2.7344v-5.3691c0-1.1225-.4634-1.6836-1.3906-1.6836-.9278 0-1.3906.561-1.3906 1.6836v5.3691h-2.7344v-5.3691c0-.5183-.0986-.9144-.293-1.1934.6172-.435 1.1534-1.0124 1.5723-1.7246.0297.029.0597.0574.0879.0879.5044-.6349 1.4233-.9512 2.7578-.9512zm-9.6094 3.2344c.932.3 1.8614.393 2.7364.287a3.5455 3.5455 0 0 0-.0098.2599v5.3691H5.1426v-5.6855c0-.0787.0022-.1544.0058-.2305z" }) + ] + } + ); +}); + +exports.default = SiMoodle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.d.ts new file mode 100644 index 000000000..02b864d56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F98012"; +declare const SiMoodle: IconType; +export { SiMoodle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.mjs new file mode 100644 index 000000000..46733d517 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoodle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F98012"; +const SiMoodle = React.forwardRef(function SiMoodle2({ title = "Moodle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0Zm1.1348 5.7402.0351.123-2.7363 1.9903c.3694.2606.7968.609 1.0078.8438l.0762.1035c-1.2878 2.2571-3.737 3.0557-6.3164 2.1816l.0195-.1601h-.002c-.0784-.5679-.0962-1.0524-.0585-1.463-.7507-.003-1.5298-.0402-2.2832-.0663l-.5157.0175c-.0994.8449-.0351 2.135-.0254 2.3223.3492 1.2819.2977 2.2907.295 3.5293-.4134-1.0028-.8995-2.097-.416-3.4668l-.0098-.3183c-.0007-.0143-.0683-1.1532.037-2.0625l-.4081.0136-.0371-.1191C5.7922 6.8402 8.5032 6.218 13.1348 5.7402Zm1.623 2.5137c1.2202 0 2.1885.2691 2.9043.8066.8138.601 1.2207 1.4866 1.2207 2.6582v5.6856h-2.7344v-5.3691c0-1.1225-.4634-1.6836-1.3906-1.6836-.9278 0-1.3906.561-1.3906 1.6836v5.3691h-2.7344v-5.3691c0-.5183-.0986-.9144-.293-1.1934.6172-.435 1.1534-1.0124 1.5723-1.7246.0297.029.0597.0574.0879.0879.5044-.6349 1.4233-.9512 2.7578-.9512zm-9.6094 3.2344c.932.3 1.8614.393 2.7364.287a3.5455 3.5455 0 0 0-.0098.2599v5.3691H5.1426v-5.6855c0-.0787.0022-.1544.0058-.2305z" }) + ] + } + ); +}); + +export { SiMoodle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.cjs new file mode 100644 index 000000000..ccf41f71d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6F53F3"; +const SiMoonrepo = React__namespace.forwardRef(function SiMoonrepo2({ title = "Moonrepo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 19.514 7.342 C 19.711 7.862 19.814 8.413 19.816 8.969 C 19.816 12.494 15.998 14.697 12.946 12.934 C 11.529 12.116 10.657 10.605 10.657 8.969 C 10.657 5.646 14.085 3.431 17.115 4.793 C 15.26 3.373 12.99 2.607 10.655 2.612 C 4.772 2.614 0.005 7.381 0 13.265 C 0.002 19.148 4.772 23.918 10.655 23.92 C 16.538 23.916 21.306 19.147 21.31 13.265 C 21.312 11.155 20.687 9.095 19.514 7.342 Z M 14.841 4.666 C 14.841 8.191 18.657 10.395 21.709 8.632 C 23.127 7.814 24 6.302 24 4.666 C 24 1.14 20.184 -1.061 17.13 0.699 C 15.714 1.519 14.841 3.03 14.841 4.666" }) + ] + } + ); +}); + +exports.default = SiMoonrepo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.d.ts new file mode 100644 index 000000000..39697b20a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6F53F3"; +declare const SiMoonrepo: IconType; +export { SiMoonrepo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.mjs new file mode 100644 index 000000000..b7468e3f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoonrepo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6F53F3"; +const SiMoonrepo = React.forwardRef(function SiMoonrepo2({ title = "Moonrepo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 19.514 7.342 C 19.711 7.862 19.814 8.413 19.816 8.969 C 19.816 12.494 15.998 14.697 12.946 12.934 C 11.529 12.116 10.657 10.605 10.657 8.969 C 10.657 5.646 14.085 3.431 17.115 4.793 C 15.26 3.373 12.99 2.607 10.655 2.612 C 4.772 2.614 0.005 7.381 0 13.265 C 0.002 19.148 4.772 23.918 10.655 23.92 C 16.538 23.916 21.306 19.147 21.31 13.265 C 21.312 11.155 20.687 9.095 19.514 7.342 Z M 14.841 4.666 C 14.841 8.191 18.657 10.395 21.709 8.632 C 23.127 7.814 24 6.302 24 4.666 C 24 1.14 20.184 -1.061 17.13 0.699 C 15.714 1.519 14.841 3.03 14.841 4.666" }) + ] + } + ); +}); + +export { SiMoonrepo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.cjs new file mode 100644 index 000000000..4d0113651 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4BE00"; +const SiMoq = React__namespace.forwardRef(function SiMoq2({ title = "Moq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1341.0013A13 13 0 0 0 10.853.05c-.7988.066-1.771.2708-2.6115.547-.6786.2161-2.672 1.152-2.672 1.248 0 .024-.0722.0733-.1562.1153-.3063.1381-1.3338.9726-1.9102 1.543-.5705.5764-1.405 1.602-1.543 1.9083-.042.084-.0893.1562-.1133.1562-.0961 0-1.0322 1.9829-1.2364 2.6134-.8106 2.5039-.8108 5.1452.0059 7.6252.1981.6004.8211 1.958 1.1094 2.4024.066.096.1742.282.2402.4082.066.12.1516.2226.1817.2226.036 0 .0585.0285.0585.0645 0 .114.7266.9728 1.375 1.6153 1.3812 1.375 2.9498 2.3192 4.8713 2.9317.7386.2342 1.4276.3646 2.4844.4727 1.0088.102 1.1066.102 2.1153 0 .5825-.0601 1.29-.1606 1.5782-.2266.6965-.1621 1.8325-.5533 2.463-.8536.4863-.2281 1.5728-.853 1.795-1.0332.054-.042.3178-.251.582-.455.6125-.4804 1.4044-1.2744 1.8848-1.8868.2041-.2642.415-.528.457-.582.1802-.2223.811-1.3088 1.0391-1.7892.2942-.6245.6835-1.7718.8516-2.4864.066-.2942.1686-1.0019.2227-1.5723.096-.9728.096-1.0987 0-2.1075-.2822-2.9182-1.4049-5.3442-3.4044-7.3498-.6425-.6485-1.5012-1.375-1.6153-1.375-.036 0-.0664-.0245-.0664-.0606 0-.03-.1026-.1136-.2227-.1797-.126-.066-.3061-.1741-.4082-.2402-.4263-.2762-1.7943-.9073-2.3887-1.1055C14.6354.2241 13.403.0167 12.134.0013M4.7433 8.312a1.5 1.5 0 0 1 .211 0c.1893.013.3817.0618.5664.1504l.252.1211.3242-.1328c.8046-.3363 1.7117-.0053 1.9219.6973.102.3482.102 5.0133 0 5.1153-.084.0841-.9363.0958-1.0684.0118-.078-.048-.0894-.3969-.1074-2.4024-.018-2.552-.0134-2.5037-.3496-2.3536l-.1426.0723v2.336c0 2.672.0414 2.4688-.541 2.4688s-.541.1963-.541-2.4337c0-2.0115-.0117-2.3165-.0958-2.3946-.048-.054-.1318-.0957-.1738-.0957s-.1258.0417-.1738.0957c-.0841.078-.0957.378-.0957 2.3595 0 1.6813-.0183 2.282-.0723 2.336-.1141.114-.9796.0966-1.0997-.0235-.084-.09-.0961-.3481-.078-2.5098.018-2.1677.0308-2.4324.1269-2.6485.2088-.4571.6494-.7339 1.1367-.7696m6.8244 0c.2812-.015.5753.0133.877.0899.5764.144 1.1221.607 1.4043 1.1894.1562.3303.1563.337.1563 1.8321 0 1.4592-.0045 1.5073-.1426 1.7716-.3002.5764-.6669.9003-1.2793 1.1465-.4324.1681-1.2727.1625-1.7891-.0176-.4804-.1741-.9316-.5893-1.1778-1.0996l-.1738-.3594v-3.004l.1562-.2989c.4053-.761 1.1253-1.205 1.9688-1.25m6.1389.086a2.8 2.8 0 0 1 .3613 0c.1395.0088.282.0285.4238.0586.1742.036.4265.1195.5586.1855.2522.1261.75.5718.75.6738 0 .03.036.1024.084.1504.042.054.1314.2457.1915.4258.168.4804.1699 2.6243.0078 3.1407-.1682.5285-.5473.9894-1.0997 1.3497-.4563.2942-.4618.3016-.4258.5898.036.3663.2458.666.582.834.3303.1682.3595.2213.3595.6837 0 .3963-.114.6074-.3301.6074-.2462 0-.8277-.2466-1.0919-.4688-.5104-.4143-.8594-1.0857-.8594-1.6621 0-.2462-.0893-.4512-.1914-.4512-.2281 0-.92-.6362-1.1602-1.0625-.2401-.4384-.2818-.786-.2578-2.209l.0176-1.3224.1816-.3535c.3448-.685 1.0686-1.1145 1.8985-1.17ZM11.724 9.5367c-.1321 0-.3293.0494-.4434.1035-.114.054-.266.1794-.332.2695-.1141.1561-.1246.2633-.1426 1.4102-.012 1.0929-.0002 1.267.0898 1.4532.3363.6485 1.32.6485 1.6563 0 .09-.1862.1019-.3603.0899-1.4532-.018-1.1469-.0285-1.254-.1426-1.4102-.1621-.2222-.4752-.373-.7754-.373m6.0177.0761c-.0783.0013-.1468.008-.1934.0215-.168.042-.4269.2992-.541.5274-.072.156-.0898.4333-.0898 1.334.006 1.261.0376 1.3858.4219 1.668.2762.2042.7918.2099 1.08.0117.3964-.2642.4263-.4068.4083-1.7578-.018-1.165-.024-1.2139-.1621-1.418-.084-.1201-.1977-.2451-.2637-.2872-.099-.0585-.4252-.1035-.6602-.0996" }) + ] + } + ); +}); + +exports.default = SiMoq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.d.ts new file mode 100644 index 000000000..c035f6ab1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4BE00"; +declare const SiMoq: IconType; +export { SiMoq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.mjs new file mode 100644 index 000000000..dbdb8159c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4BE00"; +const SiMoq = React.forwardRef(function SiMoq2({ title = "Moq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.1341.0013A13 13 0 0 0 10.853.05c-.7988.066-1.771.2708-2.6115.547-.6786.2161-2.672 1.152-2.672 1.248 0 .024-.0722.0733-.1562.1153-.3063.1381-1.3338.9726-1.9102 1.543-.5705.5764-1.405 1.602-1.543 1.9083-.042.084-.0893.1562-.1133.1562-.0961 0-1.0322 1.9829-1.2364 2.6134-.8106 2.5039-.8108 5.1452.0059 7.6252.1981.6004.8211 1.958 1.1094 2.4024.066.096.1742.282.2402.4082.066.12.1516.2226.1817.2226.036 0 .0585.0285.0585.0645 0 .114.7266.9728 1.375 1.6153 1.3812 1.375 2.9498 2.3192 4.8713 2.9317.7386.2342 1.4276.3646 2.4844.4727 1.0088.102 1.1066.102 2.1153 0 .5825-.0601 1.29-.1606 1.5782-.2266.6965-.1621 1.8325-.5533 2.463-.8536.4863-.2281 1.5728-.853 1.795-1.0332.054-.042.3178-.251.582-.455.6125-.4804 1.4044-1.2744 1.8848-1.8868.2041-.2642.415-.528.457-.582.1802-.2223.811-1.3088 1.0391-1.7892.2942-.6245.6835-1.7718.8516-2.4864.066-.2942.1686-1.0019.2227-1.5723.096-.9728.096-1.0987 0-2.1075-.2822-2.9182-1.4049-5.3442-3.4044-7.3498-.6425-.6485-1.5012-1.375-1.6153-1.375-.036 0-.0664-.0245-.0664-.0606 0-.03-.1026-.1136-.2227-.1797-.126-.066-.3061-.1741-.4082-.2402-.4263-.2762-1.7943-.9073-2.3887-1.1055C14.6354.2241 13.403.0167 12.134.0013M4.7433 8.312a1.5 1.5 0 0 1 .211 0c.1893.013.3817.0618.5664.1504l.252.1211.3242-.1328c.8046-.3363 1.7117-.0053 1.9219.6973.102.3482.102 5.0133 0 5.1153-.084.0841-.9363.0958-1.0684.0118-.078-.048-.0894-.3969-.1074-2.4024-.018-2.552-.0134-2.5037-.3496-2.3536l-.1426.0723v2.336c0 2.672.0414 2.4688-.541 2.4688s-.541.1963-.541-2.4337c0-2.0115-.0117-2.3165-.0958-2.3946-.048-.054-.1318-.0957-.1738-.0957s-.1258.0417-.1738.0957c-.0841.078-.0957.378-.0957 2.3595 0 1.6813-.0183 2.282-.0723 2.336-.1141.114-.9796.0966-1.0997-.0235-.084-.09-.0961-.3481-.078-2.5098.018-2.1677.0308-2.4324.1269-2.6485.2088-.4571.6494-.7339 1.1367-.7696m6.8244 0c.2812-.015.5753.0133.877.0899.5764.144 1.1221.607 1.4043 1.1894.1562.3303.1563.337.1563 1.8321 0 1.4592-.0045 1.5073-.1426 1.7716-.3002.5764-.6669.9003-1.2793 1.1465-.4324.1681-1.2727.1625-1.7891-.0176-.4804-.1741-.9316-.5893-1.1778-1.0996l-.1738-.3594v-3.004l.1562-.2989c.4053-.761 1.1253-1.205 1.9688-1.25m6.1389.086a2.8 2.8 0 0 1 .3613 0c.1395.0088.282.0285.4238.0586.1742.036.4265.1195.5586.1855.2522.1261.75.5718.75.6738 0 .03.036.1024.084.1504.042.054.1314.2457.1915.4258.168.4804.1699 2.6243.0078 3.1407-.1682.5285-.5473.9894-1.0997 1.3497-.4563.2942-.4618.3016-.4258.5898.036.3663.2458.666.582.834.3303.1682.3595.2213.3595.6837 0 .3963-.114.6074-.3301.6074-.2462 0-.8277-.2466-1.0919-.4688-.5104-.4143-.8594-1.0857-.8594-1.6621 0-.2462-.0893-.4512-.1914-.4512-.2281 0-.92-.6362-1.1602-1.0625-.2401-.4384-.2818-.786-.2578-2.209l.0176-1.3224.1816-.3535c.3448-.685 1.0686-1.1145 1.8985-1.17ZM11.724 9.5367c-.1321 0-.3293.0494-.4434.1035-.114.054-.266.1794-.332.2695-.1141.1561-.1246.2633-.1426 1.4102-.012 1.0929-.0002 1.267.0898 1.4532.3363.6485 1.32.6485 1.6563 0 .09-.1862.1019-.3603.0899-1.4532-.018-1.1469-.0285-1.254-.1426-1.4102-.1621-.2222-.4752-.373-.7754-.373m6.0177.0761c-.0783.0013-.1468.008-.1934.0215-.168.042-.4269.2992-.541.5274-.072.156-.0898.4333-.0898 1.334.006 1.261.0376 1.3858.4219 1.668.2762.2042.7918.2099 1.08.0117.3964-.2642.4263-.4068.4083-1.7578-.018-1.165-.024-1.2139-.1621-1.418-.084-.1201-.1977-.2451-.2637-.2872-.099-.0585-.4252-.1035-.6602-.0996" }) + ] + } + ); +}); + +export { SiMoq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.cjs new file mode 100644 index 000000000..bb1f28945 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006BE5"; +const SiMoqups = React__namespace.forwardRef(function SiMoqups2({ title = "Moqups", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.219 0c-2.367 0-3.55 0-4.824.41A5.053 5.053 0 0 0 .402 3.457c-.4 1.297-.4 2.501-.4 4.91v7.266c0 2.409 0 3.613.4 4.91a5.053 5.053 0 0 0 2.993 3.047c1.273.41 2.457.41 4.824.41h7.562c2.367 0 3.55 0 4.824-.41a5.053 5.053 0 0 0 2.993-3.047c.4-1.297.4-2.501.4-4.91V8.367c.003-2.409.002-3.613-.398-4.91A5.053 5.053 0 0 0 20.607.41C19.334 0 18.151 0 15.785 0ZM6.502 6.918a2.618 2.618 0 0 1 1.76.533c.266.226.456.528.545.865a4.309 4.309 0 0 1 3.056-1.398c.433-.017.86.102 1.221.342.342.266.547.67.559 1.103a5.014 5.014 0 0 1 1.564-1.123 3.984 3.984 0 0 1 1.563-.322c.502-.014.994.152 1.386.467.418.402.63.973.573 1.55-.001.201-.014.401-.04.6-.037.302-.044.359-.216 1.154l-.614 2.903a4.317 4.317 0 0 0-.115.842c-.02.16.032.321.143.439.145.09.316.13.486.113a1.76 1.76 0 0 0 1.037-.4c.229-.171.437-.368.62-.588a.08.08 0 0 1 .134.066h.004l-.395 1.895a.552.552 0 0 1-.228.348c-.676.453-1.477.772-2.395.775a2.12 2.12 0 0 1-1.386-.467 1.893 1.893 0 0 1-.573-1.55 6.34 6.34 0 0 1 .155-1.276c.244-1.126.48-2.253.716-3.38.066-.277.103-.559.114-.843a.542.542 0 0 0-.143-.439.785.785 0 0 0-.484-.115c-.38.018-.744.159-1.037.4a2.946 2.946 0 0 0-1.125 1.756l-1.157 5.463a.302.302 0 0 1-.294.24H9.98a.146.146 0 0 1-.142-.178l1.314-6.191a4.16 4.16 0 0 0 .133-.957.517.517 0 0 0-.142-.42.75.75 0 0 0-.465-.113c-.372.015-.73.149-1.02.383l-.01.005a3.063 3.063 0 0 0-1.187 1.838l-1.15 5.44a.244.244 0 0 1-.239.193h-2.08a.159.159 0 0 1-.156-.191l1.37-6.414c.056-.315.065-.586.067-.702a.764.764 0 0 0-.191-.533.56.56 0 0 0-.418-.21 1.42 1.42 0 0 0-.61.142 3.529 3.529 0 0 0-.59.353 3.1 3.1 0 0 0-.624.602l.451-2.094a.45.45 0 0 1 .201-.289c.146-.092.296-.177.45-.256a3.37 3.37 0 0 1 1.56-.361Z" }) + ] + } + ); +}); + +exports.default = SiMoqups; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.d.ts new file mode 100644 index 000000000..672520147 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006BE5"; +declare const SiMoqups: IconType; +export { SiMoqups as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.mjs new file mode 100644 index 000000000..3fba73192 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoqups.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006BE5"; +const SiMoqups = React.forwardRef(function SiMoqups2({ title = "Moqups", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.219 0c-2.367 0-3.55 0-4.824.41A5.053 5.053 0 0 0 .402 3.457c-.4 1.297-.4 2.501-.4 4.91v7.266c0 2.409 0 3.613.4 4.91a5.053 5.053 0 0 0 2.993 3.047c1.273.41 2.457.41 4.824.41h7.562c2.367 0 3.55 0 4.824-.41a5.053 5.053 0 0 0 2.993-3.047c.4-1.297.4-2.501.4-4.91V8.367c.003-2.409.002-3.613-.398-4.91A5.053 5.053 0 0 0 20.607.41C19.334 0 18.151 0 15.785 0ZM6.502 6.918a2.618 2.618 0 0 1 1.76.533c.266.226.456.528.545.865a4.309 4.309 0 0 1 3.056-1.398c.433-.017.86.102 1.221.342.342.266.547.67.559 1.103a5.014 5.014 0 0 1 1.564-1.123 3.984 3.984 0 0 1 1.563-.322c.502-.014.994.152 1.386.467.418.402.63.973.573 1.55-.001.201-.014.401-.04.6-.037.302-.044.359-.216 1.154l-.614 2.903a4.317 4.317 0 0 0-.115.842c-.02.16.032.321.143.439.145.09.316.13.486.113a1.76 1.76 0 0 0 1.037-.4c.229-.171.437-.368.62-.588a.08.08 0 0 1 .134.066h.004l-.395 1.895a.552.552 0 0 1-.228.348c-.676.453-1.477.772-2.395.775a2.12 2.12 0 0 1-1.386-.467 1.893 1.893 0 0 1-.573-1.55 6.34 6.34 0 0 1 .155-1.276c.244-1.126.48-2.253.716-3.38.066-.277.103-.559.114-.843a.542.542 0 0 0-.143-.439.785.785 0 0 0-.484-.115c-.38.018-.744.159-1.037.4a2.946 2.946 0 0 0-1.125 1.756l-1.157 5.463a.302.302 0 0 1-.294.24H9.98a.146.146 0 0 1-.142-.178l1.314-6.191a4.16 4.16 0 0 0 .133-.957.517.517 0 0 0-.142-.42.75.75 0 0 0-.465-.113c-.372.015-.73.149-1.02.383l-.01.005a3.063 3.063 0 0 0-1.187 1.838l-1.15 5.44a.244.244 0 0 1-.239.193h-2.08a.159.159 0 0 1-.156-.191l1.37-6.414c.056-.315.065-.586.067-.702a.764.764 0 0 0-.191-.533.56.56 0 0 0-.418-.21 1.42 1.42 0 0 0-.61.142 3.529 3.529 0 0 0-.59.353 3.1 3.1 0 0 0-.624.602l.451-2.094a.45.45 0 0 1 .201-.289c.146-.092.296-.177.45-.256a3.37 3.37 0 0 1 1.56-.361Z" }) + ] + } + ); +}); + +export { SiMoqups as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.cjs new file mode 100644 index 000000000..3e069f2de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007531"; +const SiMorrisons = React__namespace.forwardRef(function SiMorrisons2({ title = "Morrisons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.514 11.486c0 .28-.224.523-.523.523a.511.511 0 0 1-.524-.523c0-.28.225-.523.524-.523.28 0 .504.243.523.523m2.318-2.112a.52.52 0 0 1-.505.523.519.519 0 0 1-.523-.504.52.52 0 0 1 .504-.524.507.507 0 0 1 .524.505m-1.234-1.57c0 .71-.617 1.103-.617 1.103s-.617-.393-.617-1.103.617-1.103.617-1.103.617.392.617 1.103M10 8.869s-.15.71.355 1.215c.505.505 1.215.337 1.215.337s.15-.71-.355-1.215C10.71 8.72 10 8.869 10 8.869m-.822 1.178c.616.355.654 1.065.654 1.065s-.654.337-1.271-.019c-.617-.355-.654-1.084-.654-1.084s.654-.317 1.27.038m-.317 2.336s.168.71.822.953c.673.243 1.253-.205 1.253-.205s-.15-.71-.823-.953c-.673-.243-1.252.205-1.252.205m4.448-.747c-.299.635-1.028.728-1.028.728s-.392-.616-.093-1.252c.299-.635 1.028-.729 1.028-.729s.392.598.093 1.253m2.785-1.608s-.654-.336-1.27.019c-.617.355-.655 1.084-.655 1.084s.654.336 1.271-.019c.617-.374.654-1.084.654-1.084m-1.757 3.308c-.672.243-1.252-.205-1.252-.205s.15-.71.823-.953c.672-.243 1.252.186 1.252.186s-.15.73-.823.972M5.607 17.28c-.86 0-1.514-.616-1.514-1.439 0-.822.655-1.44 1.514-1.44.86 0 1.514.618 1.514 1.44 0 .823-.654 1.44-1.514 1.44m0-2.15c-.392 0-.691.318-.691.729s.299.729.691.729c.393 0 .692-.318.692-.73 0-.41-.299-.728-.692-.728m6.804 2.056v-2.673a.04.04 0 0 0-.037-.037h-.73a.04.04 0 0 0-.037.037v2.673a.04.04 0 0 0 .038.037h.729a.04.04 0 0 0 .037-.037m4.449.093c-.86 0-1.514-.616-1.514-1.439 0-.822.654-1.44 1.514-1.44s1.514.618 1.514 1.44c0 .823-.654 1.44-1.514 1.44m0-2.15c-.393 0-.692.318-.692.729s.3.729.692.729c.392 0 .691-.318.691-.73 0-.41-.299-.728-.691-.728m4.486 2.056v-1.701c0-.71-.337-1.065-.99-1.065-.319 0-.636.13-.842.373v-.261a.04.04 0 0 0-.037-.038h-.71a.04.04 0 0 0-.038.038v2.654a.04.04 0 0 0 .037.037h.73a.04.04 0 0 0 .037-.037v-1.234c0-.112.018-.224.037-.317a.64.64 0 0 1 .617-.468c.243 0 .336.112.336.449v1.57a.04.04 0 0 0 .038.037h.729c.037 0 .056-.018.056-.037M3.7 17.224h-.748a.04.04 0 0 1-.037-.037c0-.841-.056-1.794-.094-2.094-.28.393-.523.823-.71 1.271 0 .02-.019.02-.037.02h-.411c-.02 0-.038 0-.038-.02a6.507 6.507 0 0 0-.71-1.27c-.019.299-.094 1.252-.094 2.093a.04.04 0 0 1-.037.037H.037A.04.04 0 0 1 0 17.187c0-1.14.075-2.636.28-3.402 0-.019.02-.019.038-.037h.58c.018 0 .018 0 .018.018.374.412.691.879.934 1.365a6.79 6.79 0 0 1 .935-1.365l.019-.018h.58a.04.04 0 0 1 .037.037c.186.766.28 2.262.28 3.402.037.019.019.037 0 .037m4.617-.037V16.12c0-.13.018-.261.056-.392a.662.662 0 0 1 .635-.486h.169l.018-.019v-.729a.04.04 0 0 0-.037-.037h-.094a.885.885 0 0 0-.747.411v-.336a.04.04 0 0 0-.038-.038h-.71a.04.04 0 0 0-.037.038v2.673a.04.04 0 0 0 .037.037h.73c0-.019.018-.037.018-.056m2 .037h-.73a.04.04 0 0 1-.037-.037v-2.673a.04.04 0 0 1 .038-.037h.71a.04.04 0 0 1 .037.037v.336a.984.984 0 0 1 .748-.41h.094a.04.04 0 0 1 .037.037v.71c0 .019 0 .019-.019.019 0 0-.018.018-.037 0h-.131a.66.66 0 0 0-.635.486c-.038.13-.057.261-.057.392v1.066c.02.056.02.074-.018.074.018 0 0 0 0 0m4.747-.86c0 .58-.43.898-1.158.898-.43 0-.767-.15-1.14-.412-.02 0-.02-.018-.02-.037v-.019l.318-.486c0-.018.02-.018.038-.018h.018c.318.205.543.299.823.299.187 0 .299-.056.299-.168v-.02c0-.13-.112-.186-.411-.28l-.112-.037c-.468-.13-.898-.336-.898-.86v-.018c0-.524.43-.86 1.103-.86.337 0 .654.093.954.261.018 0 .018.02.018.038v.019l-.28.542c0 .018-.019.018-.038.018h-.018c-.28-.13-.449-.187-.636-.187-.168 0-.28.075-.28.169v.018c0 .131.168.187.448.262l.094.037c.449.113.878.337.878.841m8.038-.86-.094-.037c-.28-.074-.448-.13-.448-.261v-.02c0-.111.112-.167.28-.167.187 0 .374.056.636.187h.018c.019 0 .019 0 .038-.02l.299-.485v-.019c0-.018 0-.018-.019-.037a1.925 1.925 0 0 0-.953-.262c-.673 0-1.103.318-1.103.86v.019c0 .523.43.729.897.86l.112.037c.28.093.412.15.412.28v.019c-.02.112-.113.168-.3.168-.28 0-.504-.093-.822-.299h-.019c-.018 0-.018 0-.037.019l-.318.486v.018c0 .02 0 .02.019.038.374.262.71.411 1.14.411.73 0 1.159-.318 1.159-.878v-.02c-.019-.522-.449-.747-.897-.896m-10.617-2c0 .28-.224.504-.505.504a.503.503 0 0 1-.504-.504c0-.28.224-.505.504-.505.28.019.505.224.505.505" }) + ] + } + ); +}); + +exports.default = SiMorrisons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.d.ts new file mode 100644 index 000000000..377bc1f97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007531"; +declare const SiMorrisons: IconType; +export { SiMorrisons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.mjs new file mode 100644 index 000000000..0f4f8bcb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMorrisons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007531"; +const SiMorrisons = React.forwardRef(function SiMorrisons2({ title = "Morrisons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.514 11.486c0 .28-.224.523-.523.523a.511.511 0 0 1-.524-.523c0-.28.225-.523.524-.523.28 0 .504.243.523.523m2.318-2.112a.52.52 0 0 1-.505.523.519.519 0 0 1-.523-.504.52.52 0 0 1 .504-.524.507.507 0 0 1 .524.505m-1.234-1.57c0 .71-.617 1.103-.617 1.103s-.617-.393-.617-1.103.617-1.103.617-1.103.617.392.617 1.103M10 8.869s-.15.71.355 1.215c.505.505 1.215.337 1.215.337s.15-.71-.355-1.215C10.71 8.72 10 8.869 10 8.869m-.822 1.178c.616.355.654 1.065.654 1.065s-.654.337-1.271-.019c-.617-.355-.654-1.084-.654-1.084s.654-.317 1.27.038m-.317 2.336s.168.71.822.953c.673.243 1.253-.205 1.253-.205s-.15-.71-.823-.953c-.673-.243-1.252.205-1.252.205m4.448-.747c-.299.635-1.028.728-1.028.728s-.392-.616-.093-1.252c.299-.635 1.028-.729 1.028-.729s.392.598.093 1.253m2.785-1.608s-.654-.336-1.27.019c-.617.355-.655 1.084-.655 1.084s.654.336 1.271-.019c.617-.374.654-1.084.654-1.084m-1.757 3.308c-.672.243-1.252-.205-1.252-.205s.15-.71.823-.953c.672-.243 1.252.186 1.252.186s-.15.73-.823.972M5.607 17.28c-.86 0-1.514-.616-1.514-1.439 0-.822.655-1.44 1.514-1.44.86 0 1.514.618 1.514 1.44 0 .823-.654 1.44-1.514 1.44m0-2.15c-.392 0-.691.318-.691.729s.299.729.691.729c.393 0 .692-.318.692-.73 0-.41-.299-.728-.692-.728m6.804 2.056v-2.673a.04.04 0 0 0-.037-.037h-.73a.04.04 0 0 0-.037.037v2.673a.04.04 0 0 0 .038.037h.729a.04.04 0 0 0 .037-.037m4.449.093c-.86 0-1.514-.616-1.514-1.439 0-.822.654-1.44 1.514-1.44s1.514.618 1.514 1.44c0 .823-.654 1.44-1.514 1.44m0-2.15c-.393 0-.692.318-.692.729s.3.729.692.729c.392 0 .691-.318.691-.73 0-.41-.299-.728-.691-.728m4.486 2.056v-1.701c0-.71-.337-1.065-.99-1.065-.319 0-.636.13-.842.373v-.261a.04.04 0 0 0-.037-.038h-.71a.04.04 0 0 0-.038.038v2.654a.04.04 0 0 0 .037.037h.73a.04.04 0 0 0 .037-.037v-1.234c0-.112.018-.224.037-.317a.64.64 0 0 1 .617-.468c.243 0 .336.112.336.449v1.57a.04.04 0 0 0 .038.037h.729c.037 0 .056-.018.056-.037M3.7 17.224h-.748a.04.04 0 0 1-.037-.037c0-.841-.056-1.794-.094-2.094-.28.393-.523.823-.71 1.271 0 .02-.019.02-.037.02h-.411c-.02 0-.038 0-.038-.02a6.507 6.507 0 0 0-.71-1.27c-.019.299-.094 1.252-.094 2.093a.04.04 0 0 1-.037.037H.037A.04.04 0 0 1 0 17.187c0-1.14.075-2.636.28-3.402 0-.019.02-.019.038-.037h.58c.018 0 .018 0 .018.018.374.412.691.879.934 1.365a6.79 6.79 0 0 1 .935-1.365l.019-.018h.58a.04.04 0 0 1 .037.037c.186.766.28 2.262.28 3.402.037.019.019.037 0 .037m4.617-.037V16.12c0-.13.018-.261.056-.392a.662.662 0 0 1 .635-.486h.169l.018-.019v-.729a.04.04 0 0 0-.037-.037h-.094a.885.885 0 0 0-.747.411v-.336a.04.04 0 0 0-.038-.038h-.71a.04.04 0 0 0-.037.038v2.673a.04.04 0 0 0 .037.037h.73c0-.019.018-.037.018-.056m2 .037h-.73a.04.04 0 0 1-.037-.037v-2.673a.04.04 0 0 1 .038-.037h.71a.04.04 0 0 1 .037.037v.336a.984.984 0 0 1 .748-.41h.094a.04.04 0 0 1 .037.037v.71c0 .019 0 .019-.019.019 0 0-.018.018-.037 0h-.131a.66.66 0 0 0-.635.486c-.038.13-.057.261-.057.392v1.066c.02.056.02.074-.018.074.018 0 0 0 0 0m4.747-.86c0 .58-.43.898-1.158.898-.43 0-.767-.15-1.14-.412-.02 0-.02-.018-.02-.037v-.019l.318-.486c0-.018.02-.018.038-.018h.018c.318.205.543.299.823.299.187 0 .299-.056.299-.168v-.02c0-.13-.112-.186-.411-.28l-.112-.037c-.468-.13-.898-.336-.898-.86v-.018c0-.524.43-.86 1.103-.86.337 0 .654.093.954.261.018 0 .018.02.018.038v.019l-.28.542c0 .018-.019.018-.038.018h-.018c-.28-.13-.449-.187-.636-.187-.168 0-.28.075-.28.169v.018c0 .131.168.187.448.262l.094.037c.449.113.878.337.878.841m8.038-.86-.094-.037c-.28-.074-.448-.13-.448-.261v-.02c0-.111.112-.167.28-.167.187 0 .374.056.636.187h.018c.019 0 .019 0 .038-.02l.299-.485v-.019c0-.018 0-.018-.019-.037a1.925 1.925 0 0 0-.953-.262c-.673 0-1.103.318-1.103.86v.019c0 .523.43.729.897.86l.112.037c.28.093.412.15.412.28v.019c-.02.112-.113.168-.3.168-.28 0-.504-.093-.822-.299h-.019c-.018 0-.018 0-.037.019l-.318.486v.018c0 .02 0 .02.019.038.374.262.71.411 1.14.411.73 0 1.159-.318 1.159-.878v-.02c-.019-.522-.449-.747-.897-.896m-10.617-2c0 .28-.224.504-.505.504a.503.503 0 0 1-.504-.504c0-.28.224-.505.504-.505.28.019.505.224.505.505" }) + ] + } + ); +}); + +export { SiMorrisons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.cjs new file mode 100644 index 000000000..43274fdbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D9232E"; +const SiMoscowmetro = React__namespace.forwardRef(function SiMoscowmetro2({ title = "Moscow Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.603 11.85l-2.481-6.26-2.092 3.66-2.092-3.66-2.481 6.262H6.74v.941h3.736v-.941h-.553l.538-1.555 1.569 2.57 1.569-2.57.538 1.555h-.553v.941h3.751v-.941zm5.335-1.912A9.933 9.933 0 0 0 12 0C6.516 0 2.062 4.453 2.062 9.938c0 2.75 1.121 5.23 2.914 7.023a.804.804 0 0 0 1.375-.568.825.825 0 0 0-.239-.582 8.303 8.303 0 0 1-2.42-5.873c0-4.588 3.72-8.324 8.308-8.324 4.588 0 8.324 3.736 8.324 8.324a8.289 8.289 0 0 1-2.436 5.888l-7.024 7.023L12 24l7.039-7.039a9.891 9.891 0 0 0 2.899-7.023Z" }) + ] + } + ); +}); + +exports.default = SiMoscowmetro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.d.ts new file mode 100644 index 000000000..249be1ded --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D9232E"; +declare const SiMoscowmetro: IconType; +export { SiMoscowmetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.mjs new file mode 100644 index 000000000..b50bd0867 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMoscowmetro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D9232E"; +const SiMoscowmetro = React.forwardRef(function SiMoscowmetro2({ title = "Moscow Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.603 11.85l-2.481-6.26-2.092 3.66-2.092-3.66-2.481 6.262H6.74v.941h3.736v-.941h-.553l.538-1.555 1.569 2.57 1.569-2.57.538 1.555h-.553v.941h3.751v-.941zm5.335-1.912A9.933 9.933 0 0 0 12 0C6.516 0 2.062 4.453 2.062 9.938c0 2.75 1.121 5.23 2.914 7.023a.804.804 0 0 0 1.375-.568.825.825 0 0 0-.239-.582 8.303 8.303 0 0 1-2.42-5.873c0-4.588 3.72-8.324 8.308-8.324 4.588 0 8.324 3.736 8.324 8.324a8.289 8.289 0 0 1-2.436 5.888l-7.024 7.023L12 24l7.039-7.039a9.891 9.891 0 0 0 2.899-7.023Z" }) + ] + } + ); +}); + +export { SiMoscowmetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.cjs new file mode 100644 index 000000000..590bbe1b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E1140A"; +const SiMotorola = React__namespace.forwardRef(function SiMotorola2({ title = "Motorola", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12C24.002 5.375 18.632.002 12.007 0H12zm7.327 18.065s-.581-2.627-1.528-4.197c-.514-.857-1.308-1.553-2.368-1.532-.745 0-1.399.423-2.2 1.553-.469.77-.882 1.573-1.235 2.403 0 0-.29-.675-.63-1.343a8.038 8.038 0 0 0-.605-1.049c-.804-1.13-1.455-1.539-2.2-1.553-1.049-.021-1.854.675-2.364 1.528-.948 1.574-1.528 4.197-1.528 4.197h-.864l4.606-15.12 3.56 11.804.024.021.024-.021 3.56-11.804 4.61 15.113h-.862z" }) + ] + } + ); +}); + +exports.default = SiMotorola; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.d.ts new file mode 100644 index 000000000..53fb08c53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E1140A"; +declare const SiMotorola: IconType; +export { SiMotorola as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.mjs new file mode 100644 index 000000000..fe161aa3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMotorola.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E1140A"; +const SiMotorola = React.forwardRef(function SiMotorola2({ title = "Motorola", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12C24.002 5.375 18.632.002 12.007 0H12zm7.327 18.065s-.581-2.627-1.528-4.197c-.514-.857-1.308-1.553-2.368-1.532-.745 0-1.399.423-2.2 1.553-.469.77-.882 1.573-1.235 2.403 0 0-.29-.675-.63-1.343a8.038 8.038 0 0 0-.605-1.049c-.804-1.13-1.455-1.539-2.2-1.553-1.049-.021-1.854.675-2.364 1.528-.948 1.574-1.528 4.197-1.528 4.197h-.864l4.606-15.12 3.56 11.804.024.021.024-.021 3.56-11.804 4.61 15.113h-.862z" }) + ] + } + ); +}); + +export { SiMotorola as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.cjs new file mode 100644 index 000000000..8ac18c190 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#019DF4"; +const SiMovistar = React__namespace.forwardRef(function SiMovistar2({ title = "Movistar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.512 5.187c-1.113.018-3.165.567-4.102 4.401-.409 1.67-.567 3.413-.217 5.485.322 1.912.893 3.562 1.278 4.471.132.314.339.64.498.842.456.579 1.217.542 1.536.384.348-.172.748-.586.605-1.534-.07-.458-.272-1.127-.386-1.499-.349-1.141-.814-2.518-.854-3.5-.054-1.311.463-1.483.806-1.56.576-.126 1.06.508 1.52 1.303.548.949 1.488 2.63 2.255 3.915.692 1.16 1.97 2.401 4.02 2.316 2.091-.087 3.633-.886 4.427-3.402.594-1.882.999-3.289 1.651-4.729.75-1.657 1.75-2.543 2.592-2.272.782.25.977 1.016.986 2.14.009.996-.107 2.093-.196 2.898-.032.293-.09.881-.066 1.207.047.643.325 1.284 1.046 1.386.77.109 1.387-.506 1.633-1.25.098-.293.18-.742.225-1.06.226-1.608.284-2.689.183-4.333-.12-1.924-.495-3.678-1.152-5.196-.627-1.452-1.635-2.382-2.927-2.464-1.43-.091-3.072.86-3.934 2.704-.793 1.7-1.428 3.444-1.814 4.336-.39.903-.965 1.459-1.847 1.552-1.08.114-2.01-.67-2.692-1.79-.593-.975-1.77-2.832-2.4-3.456-.592-.584-1.267-1.317-2.674-1.295z" }) + ] + } + ); +}); + +exports.default = SiMovistar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.d.ts new file mode 100644 index 000000000..8b283b717 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#019DF4"; +declare const SiMovistar: IconType; +export { SiMovistar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.mjs new file mode 100644 index 000000000..17b4dc2a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMovistar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#019DF4"; +const SiMovistar = React.forwardRef(function SiMovistar2({ title = "Movistar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.512 5.187c-1.113.018-3.165.567-4.102 4.401-.409 1.67-.567 3.413-.217 5.485.322 1.912.893 3.562 1.278 4.471.132.314.339.64.498.842.456.579 1.217.542 1.536.384.348-.172.748-.586.605-1.534-.07-.458-.272-1.127-.386-1.499-.349-1.141-.814-2.518-.854-3.5-.054-1.311.463-1.483.806-1.56.576-.126 1.06.508 1.52 1.303.548.949 1.488 2.63 2.255 3.915.692 1.16 1.97 2.401 4.02 2.316 2.091-.087 3.633-.886 4.427-3.402.594-1.882.999-3.289 1.651-4.729.75-1.657 1.75-2.543 2.592-2.272.782.25.977 1.016.986 2.14.009.996-.107 2.093-.196 2.898-.032.293-.09.881-.066 1.207.047.643.325 1.284 1.046 1.386.77.109 1.387-.506 1.633-1.25.098-.293.18-.742.225-1.06.226-1.608.284-2.689.183-4.333-.12-1.924-.495-3.678-1.152-5.196-.627-1.452-1.635-2.382-2.927-2.464-1.43-.091-3.072.86-3.934 2.704-.793 1.7-1.428 3.444-1.814 4.336-.39.903-.965 1.459-1.847 1.552-1.08.114-2.01-.67-2.692-1.79-.593-.975-1.77-2.832-2.4-3.456-.592-.584-1.267-1.317-2.674-1.295z" }) + ] + } + ); +}); + +export { SiMovistar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.cjs new file mode 100644 index 000000000..48b15b9f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#161616"; +const SiMozilla = React__namespace.forwardRef(function SiMozilla2({ title = "Mozilla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.819 24H1.75V0H4.82zM7.33 12.242H19.48v-.69L11.562 8.67V6.25l7.918-2.872v-.7H10.1V0h12.149v4.89l-6.445 2.224v.69l6.445 2.224v4.89H7.33zm0-9.565h2.77v2.77H7.33z" }) + ] + } + ); +}); + +exports.default = SiMozilla; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.d.ts new file mode 100644 index 000000000..6ee019144 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#161616"; +declare const SiMozilla: IconType; +export { SiMozilla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.mjs new file mode 100644 index 000000000..f2050d359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMozilla.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#161616"; +const SiMozilla = React.forwardRef(function SiMozilla2({ title = "Mozilla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.819 24H1.75V0H4.82zM7.33 12.242H19.48v-.69L11.562 8.67V6.25l7.918-2.872v-.7H10.1V0h12.149v4.89l-6.445 2.224v.69l6.445 2.224v4.89H7.33zm0-9.565h2.77v2.77H7.33z" }) + ] + } + ); +}); + +export { SiMozilla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.cjs new file mode 100644 index 000000000..99f83fc3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#691F69"; +const SiMpv = React__namespace.forwardRef(function SiMpv2({ title = "mpv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.312 22.775c-6.153 0-11.142-4.988-11.142-11.142S6.16.491 12.312.491c6.154 0 11.142 4.989 11.142 11.142s-4.988 11.142-11.142 11.142zm.643-20.464a8.587 8.587 0 1 0 0 17.174 8.587 8.587 0 0 0 0-17.174zm-1.113 15.257a5.517 5.517 0 1 1 0-11.034 5.517 5.517 0 0 1 0 11.034zm-1.399-7.995L14.4 11.97l-3.957 2.518V9.573z" }) + ] + } + ); +}); + +exports.default = SiMpv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.d.ts new file mode 100644 index 000000000..b07d80b3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#691F69"; +declare const SiMpv: IconType; +export { SiMpv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.mjs new file mode 100644 index 000000000..5ddb1e6ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMpv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#691F69"; +const SiMpv = React.forwardRef(function SiMpv2({ title = "mpv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm.312 22.775c-6.153 0-11.142-4.988-11.142-11.142S6.16.491 12.312.491c6.154 0 11.142 4.989 11.142 11.142s-4.988 11.142-11.142 11.142zm.643-20.464a8.587 8.587 0 1 0 0 17.174 8.587 8.587 0 0 0 0-17.174zm-1.113 15.257a5.517 5.517 0 1 1 0-11.034 5.517 5.517 0 0 1 0 11.034zm-1.399-7.995L14.4 11.97l-3.957 2.518V9.573z" }) + ] + } + ); +}); + +export { SiMpv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.cjs new file mode 100644 index 000000000..f64ebce0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#660066"; +const SiMqtt = React__namespace.forwardRef(function SiMqtt2({ title = "MQTT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.657 23.994h-9.45A1.212 1.212 0 0 1 0 22.788v-9.18h.071c5.784 0 10.504 4.65 10.586 10.386Zm7.606 0h-4.045C14.135 16.246 7.795 9.977 0 9.942V6.038h.071c9.983 0 18.121 8.044 18.192 17.956Zm4.53 0h-.97C21.754 12.071 11.995 2.407 0 2.372v-1.16C0 .55.544.006 1.207.006h7.64C15.733 2.49 21.257 7.789 24 14.508v8.291c0 .663-.544 1.195-1.207 1.195ZM16.713.006h6.092A1.19 1.19 0 0 1 24 1.2v5.914c-.91-1.242-2.046-2.65-3.158-3.762C19.588 2.11 18.122.987 16.714.005Z" }) + ] + } + ); +}); + +exports.default = SiMqtt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.d.ts new file mode 100644 index 000000000..bada53595 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#660066"; +declare const SiMqtt: IconType; +export { SiMqtt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.mjs new file mode 100644 index 000000000..34f02efbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMqtt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#660066"; +const SiMqtt = React.forwardRef(function SiMqtt2({ title = "MQTT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.657 23.994h-9.45A1.212 1.212 0 0 1 0 22.788v-9.18h.071c5.784 0 10.504 4.65 10.586 10.386Zm7.606 0h-4.045C14.135 16.246 7.795 9.977 0 9.942V6.038h.071c9.983 0 18.121 8.044 18.192 17.956Zm4.53 0h-.97C21.754 12.071 11.995 2.407 0 2.372v-1.16C0 .55.544.006 1.207.006h7.64C15.733 2.49 21.257 7.789 24 14.508v8.291c0 .663-.544 1.195-1.207 1.195ZM16.713.006h6.092A1.19 1.19 0 0 1 24 1.2v5.914c-.91-1.242-2.046-2.65-3.158-3.762C19.588 2.11 18.122.987 16.714.005Z" }) + ] + } + ); +}); + +export { SiMqtt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.cjs new file mode 100644 index 000000000..cf6c14249 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiMsi = React__namespace.forwardRef(function SiMsi2({ title = "MSI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.362 10.042c-1.044.56-2.193 1.05-3.7 1.142a4.26 4.26 0 0 1-2.321-.556c-.155-.09-.51-.26-.503-.457.011-.242.582-.303.816-.306 5.262-.178 6.29-2.472 6.286-2.563 0-.083-.09.011-.09.011-1.38 1.777-4.937 1.973-4.937 1.973-.877.121-1.761-.08-2.215-.529a.794.794 0 0 1-.215-.39c-.102.122-.17.25-.291.379-.114.128-.458.499-.484.06-.019-.325.076-.393.2-.586a5.178 5.178 0 0 1 .193-.276c.374-.49.684-.997 1.123-1.402.037-.038.11-.075.09-.11a6.221 6.221 0 0 0-3.624 4.166 6.508 6.508 0 0 0-.23 1.72c0 .62.082 1.209.21 1.75.258 1.073.56 1.817 1.033 2.66.155-.211.219-.491.306-.752.098-.276.166-.642.302-.87.321-.528 2.079-.396 1.599-.763a3.613 3.613 0 0 1-.397-.359 7.083 7.083 0 0 1-.673-.831c-.412-.582-.756-1.285-.79-2.2.469 1.21 1.18 2.222 2.313 2.774.378.182.813.378 1.323.367-1.341-.253-2.162-1.285-2.717-2.374-.087-.17-.208-.332-.25-.476a.4.4 0 0 1-.011-.189c.076-.336.484-.17.726-.083a8.489 8.489 0 0 0 3.602.438 6.678 6.678 0 0 0 1.874-.476c.545-.227 1.04-.518 1.452-.896m-2.34 2.657a8.001 8.001 0 0 1-2.4-.189 3.969 3.969 0 0 1-1.754-.865c-.181-.166-.295-.469-.597-.397-.026.22.151.378.272.514a3.507 3.507 0 0 0 1.573.896c.835.257 2.003.283 2.906.038M11.35 10.22c-.178 0-.771-.098-.786.098-.012.121.245.212.381.25.53.136 1.255.086 1.784.037a8.515 8.515 0 0 0 2.098-.465c.99-.362 1.795-.88 2.457-1.55.181-.18.162-.234-.034-.067a6.365 6.365 0 0 1-1.769 1.032c-1.172.472-2.517.665-4.131.665m6.576-6.717c.136.034.299.027.37.068.133.08.133.273.224.431-.54.091-.718-.302-.972-.585.091.007.227.052.378.086M7.325 16.57c-.393-.613-2.39-3.19-.832-6.989 2.128-5.178 7.88-3.772 8.421-3.557.064-.434.257-.884.764-.994a1.712 1.712 0 0 1 .612 0c-.522.193-1.077.427-1.05.976.022.49.52.835.936.91 0 0 .33.072.567-.075a.019.019 0 0 0 .016-.012c.064-.037.12-.075.204-.105a.979.979 0 0 1 .529-.023c.049.011.143.09.227.087.052 0 .136-.076.211-.087.2-.038.397.072.582.147.125.053.465.099.488.273.011.12-.178.264-.28.34a1.765 1.765 0 0 1-.423.23c.56-.045 1.682-.48 1.512.246-.015.076-.057.14-.042.178.578-.197.76-.685.673-1.372-.076.022-.14.17-.2.215v-.004c0-.196.01-.491-.125-.612.068.359-.121.53-.382.654a6.176 6.176 0 0 0-.695-.975c-.027.113-.012.26-.046.37a.518.518 0 0 0-.438-.351c-.129-.02-.272.022-.427 0-.2-.034-.431-.174-.446-.325-.027-.25.423-.367.65-.428.049.163.117.295.17.45a1.693 1.693 0 0 1 .964-.43c.102 0 .329.037.363.113.079.162-.129.355-.19.427-.037.038-.098.08-.079.102.39-.102.567-.355.84-.544.143.189.196.59.173.858.31-.303.318-.824.291-1.376a1.761 1.761 0 0 1 .749.597 1.943 1.943 0 0 0-.68-.756c-.1-.064-.228-.094-.303-.166-.068-.068-.151-.303-.242-.322-.113-.022-.265.11-.397.118-.238.019-.367-.144-.416-.378-.578.158-.8-.197-.937-.632-.023-.075-.023-.18-.06-.264-.042-.106-.273-.212-.394-.257a1.092 1.092 0 0 0-.548-.068c-.17.026-.294.113-.491.12-.476.027-.971-.18-1.357-.37A8.289 8.289 0 0 1 12.896.113c-.03-.038-.053-.094-.11-.113.125.385.348.707.556 1.005.639.915 1.47 1.58 2.283 2.215a1.308 1.308 0 0 1-.805-.208 4.165 4.165 0 0 1-.65-.416c-.85.726-2.548.81-3.916 1.134.567-.019 1.417.163 1.916.246h-.015c-2.389.094-4.449.794-5.877 2.147.37-.136.706-.306 1.118-.405-.59.537-1.171 1.096-1.644 1.75-.468.647-.967 1.33-.986 2.404.287-.28.578-.642.979-.847a13.108 13.108 0 0 0-.85 2.268c-.197.718-.492 1.913-.02 2.582.03-.238.03-.51.19-.624.28.661.76 1.996 2.26 3.319m5.68-14.095c.114.102.333.273.465.265.208 0 .314-.189.458-.272-.719-.321-1.388-.786-2.034-1.168.098.151.227.28.355.435.239.272.477.506.756.74m-8.05 5.16c.075.155 0 .366.011.517.234-.635.688-1.134 1.119-1.572.023-.026.087-.08.049-.072-.227.11-.355.314-.665.34-.174-.196-.174-.793.06-.922.288.087.477-.162.446-.427-.056-.423-.578-.707-.816-.877.125.159.367.303.423.537.02.083.015.242-.075.268-.133.038-.208-.11-.34-.09-.114.018-.167.219-.19.359a2.76 2.76 0 0 0-.03.529c0 .087.034.219-.03.283-.08-.038-.098-.136-.132-.215-.125-.276-.34-.647-.254-1.013.057-.023.163.007.2-.03.02-.227-.143-.443-.29-.586a.983.983 0 0 0-.926-.227c.211.038.68.068.684.302 0 .087-.102.212-.129.28-.166.408.023.93.22 1.194.113.152.28.295.181.575-.128-.008-.246-.09-.363-.155-.166-.095-.34-.185-.423-.329-.083-.162-.09-.325-.204-.446-.284-.321-.896-.544-1.342-.272.378-.011.73.011.877.26a1.119 1.119 0 0 1 .12.454c.008.068-.01.16.023.208.057.098.235.083.34.144.14.08.227.298.382.435a1.02 1.02 0 0 0 .133.102c.242.143.816.196.937.446m3.046 10.057c-.578.306-.914.907-.986 1.67.113-.302.43-.46.767-.615.216-.099.601-.197.662-.397.053-.155.037-.405-.038-.507-.083-.113-.227-.147-.405-.15m1.406 2.683a1.708 1.708 0 0 0-.907 1.38c.117-.28.424-.398.734-.53.189-.076.517-.162.578-.317.045-.125.045-.326-.023-.416-.064-.095-.283-.167-.382-.121m1.701 1.625c-.321.287-.506.88-.476 1.444.08-.321.325-.446.605-.631.162-.102.491-.261.552-.42a.469.469 0 0 0-.118-.461c-.181-.151-.453-.026-.567.072m2.627.567c-.313.276-.415.831-.34 1.432.076-.302.238-.45.454-.635.128-.113.332-.264.374-.42.068-.256-.208-.51-.491-.377m.544-6.085c.174.022.34.113.476.158.011-.049-.05-.071-.08-.098-.385-.329-1.277-.196-1.473.208.034.072.155.076.173.162.016.091-.117.223-.185.295-.177.193-.344.303-.544.439-.098.068-.185.181-.302.17.06-.238.189-.333.29-.537.076-.136.25-.499.152-.646-.057-.095-.355-.046-.4-.151-.039-.087.03-.197.079-.25.14-.151.43-.234.687-.287-.393 0-1.103.132-1.27.457-.113.22-.015.53.231.556.095.306-.151.684-.333.824a.344.344 0 0 1-.15.083c-.303.038-.22-.31-.296-.53-.026-.075-.075-.139-.12-.2-.084.783.086 1.554.264 2.17-.019-.215.015-.43.151-.495.31-.151.726.075 1.089.098.378.019.597-.212.858-.22.136 0 .234.092.359.061.087-.022.159-.181.234-.28a1.017 1.017 0 0 1 .265-.256c.359-.208.73.075.967.208-.211-.39-.914-.688-1.451-.428-.113.053-.204.193-.336.265-.205.121-.48.087-.745.076-.09-.008-.189.019-.26-.042.067-.34.392-.351.634-.499.348-.208.68-.525.718-1.02 0-.068-.026-.163.027-.227.049-.068.174-.076.29-.06m3.138 5.204c-.136-.17-.446-.125-.488.087-.038.215.151.438.284.574a1.126 1.126 0 0 0 .514.36c.011 0 .019.018.022 0a1.01 1.01 0 0 1-.215-.477c-.038-.211-.026-.43-.12-.548m.585-9.343c.359.026.847.14.979.348-.087-.284-.631-1.867-3.156-1.758.503.151 1.077.321 1.512.597.132.08.325.204.302.405-.026.223-.446.434-.748.457-.325.023-.575-.128-.764-.227.321.409.847.715 1.591.635-.018-.094-.143-.204-.09-.347.038-.099.2-.125.374-.114m2.086 6.04c-.098.023-.219.163-.208.302.02.19.254.28.465.265a1.175 1.175 0 0 0 .718-.291c-.396.102-.672-.34-.975-.276m.34-.922c.235-.34.31-.896.393-1.414.042-.276.08-.529.16-.733.09-.22.241-.393.294-.616.05-.216-.038-.37-.113-.548-.174-.4-.348-.798-.673-1.002-.386-.245-.987-.177-1.535-.132a18.282 18.282 0 0 0-.767.076 5.216 5.216 0 0 1-.794.064c-1.096-.02-1.727-.548-1.848-1.542 0 0 0-.012-.011-.008-.151.99.408 1.576 1.21 1.75.064.136.21.257.162.446-.053.227-.424.234-.684.2a1.425 1.425 0 0 1-.658-.28 3.383 3.383 0 0 1-.854-1 2.699 2.699 0 0 0 2.721 1.836c.48-.034.919-.14 1.3-.287-.555 0-1.292.019-1.451-.367a.503.503 0 0 1 .06-.438c.47.056.889-.046 1.282-.068a2.744 2.744 0 0 1 .96.117 1.22 1.22 0 0 1 .642.438c.272.4.303.987.204 1.561a7.181 7.181 0 0 1-.453 1.41c-.37.922-1.111 2.317-1.697 2.835-.703.593-1.584.937-2.608 1.202a6.66 6.66 0 0 1-1.323.208c-1.054.045-1.901-.102-2.46-.598a2.445 2.445 0 0 1-.605-.914 6.474 6.474 0 0 1-.363-3.04c-.038-.007-.064.035-.083.046-.03.03-.057.065-.09.091-.371.333-1.146.813-1.834.488a.635.635 0 0 1-.314-.288c-.189-.363.095-.676.314-.846.162-.125.382-.284.654-.216.162.038.416.246.416.416 0 .098-.223.28-.394.28-.177 0-.29-.144-.377-.227-.016-.027-.046-.087-.087-.06-.19.83.986.8 1.39.404.348-.34.48-1.062.163-1.52-.189-.264-.54-.366-.93-.31-.347.053-.812.152-1.028.314-.302.235-.34.726-.46 1.111a3.651 3.651 0 0 1-.454.972c-.027.038-.072.064-.065.11.465.03.862.15 1.002.487a.907.907 0 0 1 .038.465c-.065.302-.238.555-.102.915.226.597 1.092.71 1.36 1.254.114.223.091.537.235.756.177.269.597.238.986.303.22.045.439.09.605.192.321.19.332.632.718.768.23.075.43-.038.624-.091.15-.042.31-.064.453-.09.337-.054.582.026.9.12a1.406 1.406 0 0 0 .895 0c.257-.098.443-.276.643-.438.408-.325.809-.631 1.353-.805.552-.174 1.21-.261 1.512-.643a2.124 2.124 0 0 0 .302-.839c.14-.631.344-1.202.639-1.652.151-.226.37-.4.525-.623m1.24-4.12c-.087.117-.28.132-.408.212-.027.46.476-.02.408-.216m.19 2.192c-.186.121-.553-.064-.711.095-.084.605.653.159.729-.068 0-.015 0-.03-.023-.027" }) + ] + } + ); +}); + +exports.default = SiMsi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.d.ts new file mode 100644 index 000000000..da699c310 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiMsi: IconType; +export { SiMsi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.mjs new file mode 100644 index 000000000..10e3d77a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMsi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiMsi = React.forwardRef(function SiMsi2({ title = "MSI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.362 10.042c-1.044.56-2.193 1.05-3.7 1.142a4.26 4.26 0 0 1-2.321-.556c-.155-.09-.51-.26-.503-.457.011-.242.582-.303.816-.306 5.262-.178 6.29-2.472 6.286-2.563 0-.083-.09.011-.09.011-1.38 1.777-4.937 1.973-4.937 1.973-.877.121-1.761-.08-2.215-.529a.794.794 0 0 1-.215-.39c-.102.122-.17.25-.291.379-.114.128-.458.499-.484.06-.019-.325.076-.393.2-.586a5.178 5.178 0 0 1 .193-.276c.374-.49.684-.997 1.123-1.402.037-.038.11-.075.09-.11a6.221 6.221 0 0 0-3.624 4.166 6.508 6.508 0 0 0-.23 1.72c0 .62.082 1.209.21 1.75.258 1.073.56 1.817 1.033 2.66.155-.211.219-.491.306-.752.098-.276.166-.642.302-.87.321-.528 2.079-.396 1.599-.763a3.613 3.613 0 0 1-.397-.359 7.083 7.083 0 0 1-.673-.831c-.412-.582-.756-1.285-.79-2.2.469 1.21 1.18 2.222 2.313 2.774.378.182.813.378 1.323.367-1.341-.253-2.162-1.285-2.717-2.374-.087-.17-.208-.332-.25-.476a.4.4 0 0 1-.011-.189c.076-.336.484-.17.726-.083a8.489 8.489 0 0 0 3.602.438 6.678 6.678 0 0 0 1.874-.476c.545-.227 1.04-.518 1.452-.896m-2.34 2.657a8.001 8.001 0 0 1-2.4-.189 3.969 3.969 0 0 1-1.754-.865c-.181-.166-.295-.469-.597-.397-.026.22.151.378.272.514a3.507 3.507 0 0 0 1.573.896c.835.257 2.003.283 2.906.038M11.35 10.22c-.178 0-.771-.098-.786.098-.012.121.245.212.381.25.53.136 1.255.086 1.784.037a8.515 8.515 0 0 0 2.098-.465c.99-.362 1.795-.88 2.457-1.55.181-.18.162-.234-.034-.067a6.365 6.365 0 0 1-1.769 1.032c-1.172.472-2.517.665-4.131.665m6.576-6.717c.136.034.299.027.37.068.133.08.133.273.224.431-.54.091-.718-.302-.972-.585.091.007.227.052.378.086M7.325 16.57c-.393-.613-2.39-3.19-.832-6.989 2.128-5.178 7.88-3.772 8.421-3.557.064-.434.257-.884.764-.994a1.712 1.712 0 0 1 .612 0c-.522.193-1.077.427-1.05.976.022.49.52.835.936.91 0 0 .33.072.567-.075a.019.019 0 0 0 .016-.012c.064-.037.12-.075.204-.105a.979.979 0 0 1 .529-.023c.049.011.143.09.227.087.052 0 .136-.076.211-.087.2-.038.397.072.582.147.125.053.465.099.488.273.011.12-.178.264-.28.34a1.765 1.765 0 0 1-.423.23c.56-.045 1.682-.48 1.512.246-.015.076-.057.14-.042.178.578-.197.76-.685.673-1.372-.076.022-.14.17-.2.215v-.004c0-.196.01-.491-.125-.612.068.359-.121.53-.382.654a6.176 6.176 0 0 0-.695-.975c-.027.113-.012.26-.046.37a.518.518 0 0 0-.438-.351c-.129-.02-.272.022-.427 0-.2-.034-.431-.174-.446-.325-.027-.25.423-.367.65-.428.049.163.117.295.17.45a1.693 1.693 0 0 1 .964-.43c.102 0 .329.037.363.113.079.162-.129.355-.19.427-.037.038-.098.08-.079.102.39-.102.567-.355.84-.544.143.189.196.59.173.858.31-.303.318-.824.291-1.376a1.761 1.761 0 0 1 .749.597 1.943 1.943 0 0 0-.68-.756c-.1-.064-.228-.094-.303-.166-.068-.068-.151-.303-.242-.322-.113-.022-.265.11-.397.118-.238.019-.367-.144-.416-.378-.578.158-.8-.197-.937-.632-.023-.075-.023-.18-.06-.264-.042-.106-.273-.212-.394-.257a1.092 1.092 0 0 0-.548-.068c-.17.026-.294.113-.491.12-.476.027-.971-.18-1.357-.37A8.289 8.289 0 0 1 12.896.113c-.03-.038-.053-.094-.11-.113.125.385.348.707.556 1.005.639.915 1.47 1.58 2.283 2.215a1.308 1.308 0 0 1-.805-.208 4.165 4.165 0 0 1-.65-.416c-.85.726-2.548.81-3.916 1.134.567-.019 1.417.163 1.916.246h-.015c-2.389.094-4.449.794-5.877 2.147.37-.136.706-.306 1.118-.405-.59.537-1.171 1.096-1.644 1.75-.468.647-.967 1.33-.986 2.404.287-.28.578-.642.979-.847a13.108 13.108 0 0 0-.85 2.268c-.197.718-.492 1.913-.02 2.582.03-.238.03-.51.19-.624.28.661.76 1.996 2.26 3.319m5.68-14.095c.114.102.333.273.465.265.208 0 .314-.189.458-.272-.719-.321-1.388-.786-2.034-1.168.098.151.227.28.355.435.239.272.477.506.756.74m-8.05 5.16c.075.155 0 .366.011.517.234-.635.688-1.134 1.119-1.572.023-.026.087-.08.049-.072-.227.11-.355.314-.665.34-.174-.196-.174-.793.06-.922.288.087.477-.162.446-.427-.056-.423-.578-.707-.816-.877.125.159.367.303.423.537.02.083.015.242-.075.268-.133.038-.208-.11-.34-.09-.114.018-.167.219-.19.359a2.76 2.76 0 0 0-.03.529c0 .087.034.219-.03.283-.08-.038-.098-.136-.132-.215-.125-.276-.34-.647-.254-1.013.057-.023.163.007.2-.03.02-.227-.143-.443-.29-.586a.983.983 0 0 0-.926-.227c.211.038.68.068.684.302 0 .087-.102.212-.129.28-.166.408.023.93.22 1.194.113.152.28.295.181.575-.128-.008-.246-.09-.363-.155-.166-.095-.34-.185-.423-.329-.083-.162-.09-.325-.204-.446-.284-.321-.896-.544-1.342-.272.378-.011.73.011.877.26a1.119 1.119 0 0 1 .12.454c.008.068-.01.16.023.208.057.098.235.083.34.144.14.08.227.298.382.435a1.02 1.02 0 0 0 .133.102c.242.143.816.196.937.446m3.046 10.057c-.578.306-.914.907-.986 1.67.113-.302.43-.46.767-.615.216-.099.601-.197.662-.397.053-.155.037-.405-.038-.507-.083-.113-.227-.147-.405-.15m1.406 2.683a1.708 1.708 0 0 0-.907 1.38c.117-.28.424-.398.734-.53.189-.076.517-.162.578-.317.045-.125.045-.326-.023-.416-.064-.095-.283-.167-.382-.121m1.701 1.625c-.321.287-.506.88-.476 1.444.08-.321.325-.446.605-.631.162-.102.491-.261.552-.42a.469.469 0 0 0-.118-.461c-.181-.151-.453-.026-.567.072m2.627.567c-.313.276-.415.831-.34 1.432.076-.302.238-.45.454-.635.128-.113.332-.264.374-.42.068-.256-.208-.51-.491-.377m.544-6.085c.174.022.34.113.476.158.011-.049-.05-.071-.08-.098-.385-.329-1.277-.196-1.473.208.034.072.155.076.173.162.016.091-.117.223-.185.295-.177.193-.344.303-.544.439-.098.068-.185.181-.302.17.06-.238.189-.333.29-.537.076-.136.25-.499.152-.646-.057-.095-.355-.046-.4-.151-.039-.087.03-.197.079-.25.14-.151.43-.234.687-.287-.393 0-1.103.132-1.27.457-.113.22-.015.53.231.556.095.306-.151.684-.333.824a.344.344 0 0 1-.15.083c-.303.038-.22-.31-.296-.53-.026-.075-.075-.139-.12-.2-.084.783.086 1.554.264 2.17-.019-.215.015-.43.151-.495.31-.151.726.075 1.089.098.378.019.597-.212.858-.22.136 0 .234.092.359.061.087-.022.159-.181.234-.28a1.017 1.017 0 0 1 .265-.256c.359-.208.73.075.967.208-.211-.39-.914-.688-1.451-.428-.113.053-.204.193-.336.265-.205.121-.48.087-.745.076-.09-.008-.189.019-.26-.042.067-.34.392-.351.634-.499.348-.208.68-.525.718-1.02 0-.068-.026-.163.027-.227.049-.068.174-.076.29-.06m3.138 5.204c-.136-.17-.446-.125-.488.087-.038.215.151.438.284.574a1.126 1.126 0 0 0 .514.36c.011 0 .019.018.022 0a1.01 1.01 0 0 1-.215-.477c-.038-.211-.026-.43-.12-.548m.585-9.343c.359.026.847.14.979.348-.087-.284-.631-1.867-3.156-1.758.503.151 1.077.321 1.512.597.132.08.325.204.302.405-.026.223-.446.434-.748.457-.325.023-.575-.128-.764-.227.321.409.847.715 1.591.635-.018-.094-.143-.204-.09-.347.038-.099.2-.125.374-.114m2.086 6.04c-.098.023-.219.163-.208.302.02.19.254.28.465.265a1.175 1.175 0 0 0 .718-.291c-.396.102-.672-.34-.975-.276m.34-.922c.235-.34.31-.896.393-1.414.042-.276.08-.529.16-.733.09-.22.241-.393.294-.616.05-.216-.038-.37-.113-.548-.174-.4-.348-.798-.673-1.002-.386-.245-.987-.177-1.535-.132a18.282 18.282 0 0 0-.767.076 5.216 5.216 0 0 1-.794.064c-1.096-.02-1.727-.548-1.848-1.542 0 0 0-.012-.011-.008-.151.99.408 1.576 1.21 1.75.064.136.21.257.162.446-.053.227-.424.234-.684.2a1.425 1.425 0 0 1-.658-.28 3.383 3.383 0 0 1-.854-1 2.699 2.699 0 0 0 2.721 1.836c.48-.034.919-.14 1.3-.287-.555 0-1.292.019-1.451-.367a.503.503 0 0 1 .06-.438c.47.056.889-.046 1.282-.068a2.744 2.744 0 0 1 .96.117 1.22 1.22 0 0 1 .642.438c.272.4.303.987.204 1.561a7.181 7.181 0 0 1-.453 1.41c-.37.922-1.111 2.317-1.697 2.835-.703.593-1.584.937-2.608 1.202a6.66 6.66 0 0 1-1.323.208c-1.054.045-1.901-.102-2.46-.598a2.445 2.445 0 0 1-.605-.914 6.474 6.474 0 0 1-.363-3.04c-.038-.007-.064.035-.083.046-.03.03-.057.065-.09.091-.371.333-1.146.813-1.834.488a.635.635 0 0 1-.314-.288c-.189-.363.095-.676.314-.846.162-.125.382-.284.654-.216.162.038.416.246.416.416 0 .098-.223.28-.394.28-.177 0-.29-.144-.377-.227-.016-.027-.046-.087-.087-.06-.19.83.986.8 1.39.404.348-.34.48-1.062.163-1.52-.189-.264-.54-.366-.93-.31-.347.053-.812.152-1.028.314-.302.235-.34.726-.46 1.111a3.651 3.651 0 0 1-.454.972c-.027.038-.072.064-.065.11.465.03.862.15 1.002.487a.907.907 0 0 1 .038.465c-.065.302-.238.555-.102.915.226.597 1.092.71 1.36 1.254.114.223.091.537.235.756.177.269.597.238.986.303.22.045.439.09.605.192.321.19.332.632.718.768.23.075.43-.038.624-.091.15-.042.31-.064.453-.09.337-.054.582.026.9.12a1.406 1.406 0 0 0 .895 0c.257-.098.443-.276.643-.438.408-.325.809-.631 1.353-.805.552-.174 1.21-.261 1.512-.643a2.124 2.124 0 0 0 .302-.839c.14-.631.344-1.202.639-1.652.151-.226.37-.4.525-.623m1.24-4.12c-.087.117-.28.132-.408.212-.027.46.476-.02.408-.216m.19 2.192c-.186.121-.553-.064-.711.095-.084.605.653.159.729-.068 0-.015 0-.03-.023-.027" }) + ] + } + ); +}); + +export { SiMsi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.cjs new file mode 100644 index 000000000..8fc2d60fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9A8555"; +const SiMsibusiness = React__namespace.forwardRef(function SiMsibusiness2({ title = "MSI Business", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.215 10.794 3.78 2.416h-2.663l-3.78-2.416h2.663zM5.656 8.518l-.438 1.626-.175.65-.652 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626H5.656zm6.06 5.342-.437 1.622h4.947l2.543-1.622h-7.053zm3.556-5.342-2.548 1.626h7.086l.438-1.626h-4.976zm6.86 0-.438 1.626-.175.65-.651 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65L24 8.518h-1.868zm-20.255 0-.438 1.626-.175.65-.651 2.416-.175.65L0 15.482h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626H1.877zm7.536 0-.438 1.626-.175.65-.651 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626H9.413z" }) + ] + } + ); +}); + +exports.default = SiMsibusiness; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.d.ts new file mode 100644 index 000000000..b9a8d51b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9A8555"; +declare const SiMsibusiness: IconType; +export { SiMsibusiness as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.mjs new file mode 100644 index 000000000..e0bb54b35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMsibusiness.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9A8555"; +const SiMsibusiness = React.forwardRef(function SiMsibusiness2({ title = "MSI Business", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.215 10.794 3.78 2.416h-2.663l-3.78-2.416h2.663zM5.656 8.518l-.438 1.626-.175.65-.652 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626H5.656zm6.06 5.342-.437 1.622h4.947l2.543-1.622h-7.053zm3.556-5.342-2.548 1.626h7.086l.438-1.626h-4.976zm6.86 0-.438 1.626-.175.65-.651 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65L24 8.518h-1.868zm-20.255 0-.438 1.626-.175.65-.651 2.416-.175.65L0 15.482h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626H1.877zm7.536 0-.438 1.626-.175.65-.651 2.416-.175.65-.437 1.622h1.869l.437-1.622.175-.65.651-2.416.175-.65.438-1.626H9.413z" }) + ] + } + ); +}); + +export { SiMsibusiness as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMta.cjs new file mode 100644 index 000000000..f47507841 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0039A6"; +const SiMta = React__namespace.forwardRef(function SiMta2({ title = "MTA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.171 10.07l-1.293-.109v6.861l-1.926.34-.004-7.371-1.637-.145V6.944l4.86.85zm3.668 5.884l-1.142.198-.134-1-1.113.145-.14 1.1-1.473.26 1.458-8.651 1.385.24zm-1.48-2.492l-.305-2.642h-.068l-.31 2.682zM10.991 24c6.59 0 11.932-5.373 11.932-12 0-6.628-5.342-12-11.932-12C6.86 0 3.22 2.112 1.077 5.323l3.307.583.91 6.965c.003-.012.066-.004.066-.004l.998-6.615 3.309.58v10.735l-2.089.367V13.32s.078-1.987.032-2.327c0 0-.09.002-.092-.005l-1.246 7.18-2.075.366L2.672 10.8l-.092-.007c-.032.28.112 2.707.112 2.707v5.298l-1.364.24C3.498 22.044 7.016 24 10.991 24z" }) + ] + } + ); +}); + +exports.default = SiMta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMta.d.ts new file mode 100644 index 000000000..c37cb9ca2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0039A6"; +declare const SiMta: IconType; +export { SiMta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMta.mjs new file mode 100644 index 000000000..903f14908 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0039A6"; +const SiMta = React.forwardRef(function SiMta2({ title = "MTA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.171 10.07l-1.293-.109v6.861l-1.926.34-.004-7.371-1.637-.145V6.944l4.86.85zm3.668 5.884l-1.142.198-.134-1-1.113.145-.14 1.1-1.473.26 1.458-8.651 1.385.24zm-1.48-2.492l-.305-2.642h-.068l-.31 2.682zM10.991 24c6.59 0 11.932-5.373 11.932-12 0-6.628-5.342-12-11.932-12C6.86 0 3.22 2.112 1.077 5.323l3.307.583.91 6.965c.003-.012.066-.004.066-.004l.998-6.615 3.309.58v10.735l-2.089.367V13.32s.078-1.987.032-2.327c0 0-.09.002-.092-.005l-1.246 7.18-2.075.366L2.672 10.8l-.092-.007c-.032.28.112 2.707.112 2.707v5.298l-1.364.24C3.498 22.044 7.016 24 10.991 24z" }) + ] + } + ); +}); + +export { SiMta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.cjs new file mode 100644 index 000000000..c360172f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AC2E45"; +const SiMtr = React__namespace.forwardRef(function SiMtr2({ title = "MTR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.987 1.913c-1.9 0-3.693.321-5.298.883C2.756 4.268 0 7.826 0 12c0 4.147 2.756 7.706 6.689 9.204 1.632.562 3.425.883 5.325.883a16.74 16.74 0 0 0 5.27-.856C21.217 19.759 24 16.174 24 12.027V12c0-4.174-2.783-7.732-6.716-9.204a16.295 16.295 0 0 0-5.297-.883zM10.89 5.257h2.167v3.827c1.525-.402 2.702-1.766 2.782-3.399l2.168.027c-.16 2.73-2.22 4.95-4.897 5.378v1.793c2.676.428 4.736 2.675 4.924 5.404l-2.167.028c-.08-1.633-1.258-2.997-2.783-3.425v3.853h-2.167V14.89a3.775 3.775 0 0 0-2.81 3.425l-2.167-.028a5.868 5.868 0 0 1 4.923-5.404v-1.766C8.187 10.716 6.1 8.468 5.94 5.74l2.167-.027A3.711 3.711 0 0 0 10.89 9.11Z" }) + ] + } + ); +}); + +exports.default = SiMtr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.d.ts new file mode 100644 index 000000000..d8e551e02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AC2E45"; +declare const SiMtr: IconType; +export { SiMtr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.mjs new file mode 100644 index 000000000..6b8463ce5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMtr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AC2E45"; +const SiMtr = React.forwardRef(function SiMtr2({ title = "MTR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.987 1.913c-1.9 0-3.693.321-5.298.883C2.756 4.268 0 7.826 0 12c0 4.147 2.756 7.706 6.689 9.204 1.632.562 3.425.883 5.325.883a16.74 16.74 0 0 0 5.27-.856C21.217 19.759 24 16.174 24 12.027V12c0-4.174-2.783-7.732-6.716-9.204a16.295 16.295 0 0 0-5.297-.883zM10.89 5.257h2.167v3.827c1.525-.402 2.702-1.766 2.782-3.399l2.168.027c-.16 2.73-2.22 4.95-4.897 5.378v1.793c2.676.428 4.736 2.675 4.924 5.404l-2.167.028c-.08-1.633-1.258-2.997-2.783-3.425v3.853h-2.167V14.89a3.775 3.775 0 0 0-2.81 3.425l-2.167-.028a5.868 5.868 0 0 1 4.923-5.404v-1.766C8.187 10.716 6.1 8.468 5.94 5.74l2.167-.027A3.711 3.711 0 0 0 10.89 9.11Z" }) + ] + } + ); +}); + +export { SiMtr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.cjs new file mode 100644 index 000000000..c38e21498 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMubi = React__namespace.forwardRef(function SiMubi2({ title = "MUBI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.357.033A3.357 3.357 0 0 0 0 3.39a3.357 3.357 0 0 0 3.357 3.357A3.357 3.357 0 0 0 6.713 3.39 3.357 3.357 0 0 0 3.357.033Zm8.643 0A3.357 3.357 0 0 0 8.645 3.39 3.357 3.357 0 0 0 12 6.746a3.357 3.357 0 0 0 3.357-3.357A3.357 3.357 0 0 0 12 .033Zm-8.643 8.61A3.357 3.357 0 0 0 0 12a3.357 3.357 0 0 0 3.357 3.355A3.357 3.357 0 0 0 6.713 12a3.357 3.357 0 0 0-3.356-3.357Zm8.643 0A3.357 3.357 0 0 0 8.645 12 3.357 3.357 0 0 0 12 15.355 3.357 3.357 0 0 0 15.357 12 3.357 3.357 0 0 0 12 8.643zm8.643 0A3.357 3.357 0 0 0 17.287 12a3.357 3.357 0 0 0 3.356 3.355A3.357 3.357 0 0 0 24 12a3.357 3.357 0 0 0-3.357-3.357Zm-17.286 8.61A3.357 3.357 0 0 0 0 20.612a3.357 3.357 0 0 0 3.357 3.356 3.357 3.357 0 0 0 3.356-3.356 3.357 3.357 0 0 0-3.356-3.357Zm8.643 0a3.357 3.357 0 0 0-3.355 3.358A3.357 3.357 0 0 0 12 23.967a3.357 3.357 0 0 0 3.357-3.356A3.357 3.357 0 0 0 12 17.254z" }) + ] + } + ); +}); + +exports.default = SiMubi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.d.ts new file mode 100644 index 000000000..72f2d87a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMubi: IconType; +export { SiMubi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.mjs new file mode 100644 index 000000000..a2b4ce813 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMubi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMubi = React.forwardRef(function SiMubi2({ title = "MUBI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.357.033A3.357 3.357 0 0 0 0 3.39a3.357 3.357 0 0 0 3.357 3.357A3.357 3.357 0 0 0 6.713 3.39 3.357 3.357 0 0 0 3.357.033Zm8.643 0A3.357 3.357 0 0 0 8.645 3.39 3.357 3.357 0 0 0 12 6.746a3.357 3.357 0 0 0 3.357-3.357A3.357 3.357 0 0 0 12 .033Zm-8.643 8.61A3.357 3.357 0 0 0 0 12a3.357 3.357 0 0 0 3.357 3.355A3.357 3.357 0 0 0 6.713 12a3.357 3.357 0 0 0-3.356-3.357Zm8.643 0A3.357 3.357 0 0 0 8.645 12 3.357 3.357 0 0 0 12 15.355 3.357 3.357 0 0 0 15.357 12 3.357 3.357 0 0 0 12 8.643zm8.643 0A3.357 3.357 0 0 0 17.287 12a3.357 3.357 0 0 0 3.356 3.355A3.357 3.357 0 0 0 24 12a3.357 3.357 0 0 0-3.357-3.357Zm-17.286 8.61A3.357 3.357 0 0 0 0 20.612a3.357 3.357 0 0 0 3.357 3.356 3.357 3.357 0 0 0 3.356-3.356 3.357 3.357 0 0 0-3.356-3.357Zm8.643 0a3.357 3.357 0 0 0-3.355 3.358A3.357 3.357 0 0 0 12 23.967a3.357 3.357 0 0 0 3.357-3.356A3.357 3.357 0 0 0 12 17.254z" }) + ] + } + ); +}); + +export { SiMubi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMui.cjs new file mode 100644 index 000000000..f06101454 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007FFF"; +const SiMui = React__namespace.forwardRef(function SiMui2({ title = "MUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.229 15.793a.666.666 0 0 0 .244-.243.666.666 0 0 0 .09-.333l.012-3.858a.666.666 0 0 1 .09-.333.666.666 0 0 1 .245-.243L23 9.58a.667.667 0 0 1 .333-.088.667.667 0 0 1 .333.09.667.667 0 0 1 .244.243.666.666 0 0 1 .089.333v7.014a.667.667 0 0 1-.335.578l-7.893 4.534a.666.666 0 0 1-.662 0l-6.194-3.542a.667.667 0 0 1-.246-.244.667.667 0 0 1-.09-.335v-3.537c0-.004.004-.006.008-.004s.008 0 .008-.005v-.004c0-.003.002-.005.004-.007l5.102-2.93c.004-.003.002-.01-.003-.01a.005.005 0 0 1-.004-.002.005.005 0 0 1-.001-.004l.01-3.467a.667.667 0 0 0-.333-.58.667.667 0 0 0-.667 0L8.912 9.799a.667.667 0 0 1-.665 0l-3.804-2.19a.667.667 0 0 0-.999.577v6.267a.667.667 0 0 1-.332.577.666.666 0 0 1-.332.09.667.667 0 0 1-.333-.088L.336 13.825a.667.667 0 0 1-.246-.244.667.667 0 0 1-.09-.336L.019 2.292a.667.667 0 0 1 .998-.577l7.23 4.153a.667.667 0 0 0 .665 0l7.228-4.153a.666.666 0 0 1 .333-.088.666.666 0 0 1 .333.09.667.667 0 0 1 .244.244.667.667 0 0 1 .088.333V13.25c0 .117-.03.232-.089.334a.667.667 0 0 1-.245.244l-3.785 2.18a.667.667 0 0 0-.245.245.666.666 0 0 0-.089.334.667.667 0 0 0 .09.334.666.666 0 0 0 .247.244l2.088 1.189a.67.67 0 0 0 .33.087.667.667 0 0 0 .332-.089l4.457-2.56Zm.438-9.828a.666.666 0 0 0 .09.335.666.666 0 0 0 .248.244.667.667 0 0 0 .67-.008l2.001-1.2a.666.666 0 0 0 .237-.243.667.667 0 0 0 .087-.329V2.32a.667.667 0 0 0-.091-.335.667.667 0 0 0-.584-.33.667.667 0 0 0-.334.094l-2 1.2a.666.666 0 0 0-.238.243.668.668 0 0 0-.086.329v2.445Z" }) + ] + } + ); +}); + +exports.default = SiMui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMui.d.ts new file mode 100644 index 000000000..220c3c975 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007FFF"; +declare const SiMui: IconType; +export { SiMui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMui.mjs new file mode 100644 index 000000000..f446077b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007FFF"; +const SiMui = React.forwardRef(function SiMui2({ title = "MUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.229 15.793a.666.666 0 0 0 .244-.243.666.666 0 0 0 .09-.333l.012-3.858a.666.666 0 0 1 .09-.333.666.666 0 0 1 .245-.243L23 9.58a.667.667 0 0 1 .333-.088.667.667 0 0 1 .333.09.667.667 0 0 1 .244.243.666.666 0 0 1 .089.333v7.014a.667.667 0 0 1-.335.578l-7.893 4.534a.666.666 0 0 1-.662 0l-6.194-3.542a.667.667 0 0 1-.246-.244.667.667 0 0 1-.09-.335v-3.537c0-.004.004-.006.008-.004s.008 0 .008-.005v-.004c0-.003.002-.005.004-.007l5.102-2.93c.004-.003.002-.01-.003-.01a.005.005 0 0 1-.004-.002.005.005 0 0 1-.001-.004l.01-3.467a.667.667 0 0 0-.333-.58.667.667 0 0 0-.667 0L8.912 9.799a.667.667 0 0 1-.665 0l-3.804-2.19a.667.667 0 0 0-.999.577v6.267a.667.667 0 0 1-.332.577.666.666 0 0 1-.332.09.667.667 0 0 1-.333-.088L.336 13.825a.667.667 0 0 1-.246-.244.667.667 0 0 1-.09-.336L.019 2.292a.667.667 0 0 1 .998-.577l7.23 4.153a.667.667 0 0 0 .665 0l7.228-4.153a.666.666 0 0 1 .333-.088.666.666 0 0 1 .333.09.667.667 0 0 1 .244.244.667.667 0 0 1 .088.333V13.25c0 .117-.03.232-.089.334a.667.667 0 0 1-.245.244l-3.785 2.18a.667.667 0 0 0-.245.245.666.666 0 0 0-.089.334.667.667 0 0 0 .09.334.666.666 0 0 0 .247.244l2.088 1.189a.67.67 0 0 0 .33.087.667.667 0 0 0 .332-.089l4.457-2.56Zm.438-9.828a.666.666 0 0 0 .09.335.666.666 0 0 0 .248.244.667.667 0 0 0 .67-.008l2.001-1.2a.666.666 0 0 0 .237-.243.667.667 0 0 0 .087-.329V2.32a.667.667 0 0 0-.091-.335.667.667 0 0 0-.584-.33.667.667 0 0 0-.334.094l-2 1.2a.666.666 0 0 0-.238.243.668.668 0 0 0-.086.329v2.445Z" }) + ] + } + ); +}); + +export { SiMui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.cjs new file mode 100644 index 000000000..96dd54611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F46519"; +const SiMuller = React__namespace.forwardRef(function SiMuller2({ title = "Müller", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.433 14.671c-.056-1.287-.138-2.808-.138-3.013 0-.623.097-2.252.21-2.64.138-.47.76-.582.76-1.133 0-.868-1.388-.91-1.996-.91-1.833 0-1.843.414-2.553 1.711-.5.914-1.067 2.584-1.496 2.487-.613-.138-1.471-2.405-1.956-3.217-.419-.704-.388-.98-2.012-.98-1.113 0-2.4.189-2.4.98 0 .567.792.664.93.95.153.322.209.75.209 1.578 0 2.002-.128 3.288-.24 4.447-.107 1.134-.94.486-.94 1.272 0 .72 1.261.76 1.747.76.54 0 2.027-.03 2.027-.816 0-.746-.889-.056-.889-1.532 0-.455-.138-2.283.291-2.283.25 0 .399.419.485.598l.802 1.797c.832 1.864.945 1.833 1.17 1.864.439.056.939-1.522 1.245-2.155.332-.705.777-1.92 1.205-1.92.486 0 .21 2.375.154 2.61-.097.444-.72.525-.72 1.01 0 .884 1.9.828 2.471.828.608 0 2.507.04 2.507-.884 0-.623-.832-.403-.873-1.409zm5.004-4.157c-.75.787-1.317 1.15-2.343 1.492 1.031.362 1.598.735 2.343 1.531 1.297 1.39 1.609 2.635 1.548 4.632v5.81h-5.827c-1.833.016-3.104-.31-4.498-1.536-.843-.74-1.241-1.307-1.66-2.35-.347 1.032-.715 1.604-1.511 2.35-1.39 1.312-2.748 1.65-4.647 1.537H.005v-5.811c-.05-1.772.312-3.12 1.553-4.504.766-.858 1.358-1.261 2.435-1.66-1.077-.382-1.67-.776-2.435-1.618C.29 9.003.015 7.68.005 5.842V.001h5.837c1.9-.016 3.15.29 4.534 1.542.848.77 1.241 1.368 1.624 2.446.429-1.083.848-1.675 1.726-2.446C15.105.343 16.386.052 18.158 0h5.827v5.841c.092 1.87-.225 3.284-1.548 4.672zm-.893-8.042h-3.79c-1.68-.04-2.88.22-4.197 1.317-.76.634-1.123 1.119-1.531 2.017-.383-.893-.736-1.378-1.471-2.017-1.312-1.138-2.41-1.297-4.259-1.317H2.512l-.005 3.784c-.02 1.532.169 2.599 1.088 3.87.669.925 1.22 1.384 2.252 1.87-1.037.505-1.588.98-2.252 1.924-.888 1.262-1.088 2.155-1.072 3.794v3.769h3.773c1.793-.01 2.957-.158 4.274-1.302.73-.639 1.083-1.124 1.456-2.017.413.898.78 1.378 1.542 2.017 1.312 1.093 2.446 1.378 4.187 1.312h3.789v-3.779c-.01-1.521-.082-2.568-.97-3.824-.685-.965-1.282-1.44-2.375-1.895 1.098-.47 1.69-.955 2.375-1.93.878-1.25.934-2.323.97-3.794z" }) + ] + } + ); +}); + +exports.default = SiMuller; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.d.ts new file mode 100644 index 000000000..e6f546390 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F46519"; +declare const SiMuller: IconType; +export { SiMuller as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.mjs new file mode 100644 index 000000000..337bf1c10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMuller.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F46519"; +const SiMuller = React.forwardRef(function SiMuller2({ title = "Müller", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.433 14.671c-.056-1.287-.138-2.808-.138-3.013 0-.623.097-2.252.21-2.64.138-.47.76-.582.76-1.133 0-.868-1.388-.91-1.996-.91-1.833 0-1.843.414-2.553 1.711-.5.914-1.067 2.584-1.496 2.487-.613-.138-1.471-2.405-1.956-3.217-.419-.704-.388-.98-2.012-.98-1.113 0-2.4.189-2.4.98 0 .567.792.664.93.95.153.322.209.75.209 1.578 0 2.002-.128 3.288-.24 4.447-.107 1.134-.94.486-.94 1.272 0 .72 1.261.76 1.747.76.54 0 2.027-.03 2.027-.816 0-.746-.889-.056-.889-1.532 0-.455-.138-2.283.291-2.283.25 0 .399.419.485.598l.802 1.797c.832 1.864.945 1.833 1.17 1.864.439.056.939-1.522 1.245-2.155.332-.705.777-1.92 1.205-1.92.486 0 .21 2.375.154 2.61-.097.444-.72.525-.72 1.01 0 .884 1.9.828 2.471.828.608 0 2.507.04 2.507-.884 0-.623-.832-.403-.873-1.409zm5.004-4.157c-.75.787-1.317 1.15-2.343 1.492 1.031.362 1.598.735 2.343 1.531 1.297 1.39 1.609 2.635 1.548 4.632v5.81h-5.827c-1.833.016-3.104-.31-4.498-1.536-.843-.74-1.241-1.307-1.66-2.35-.347 1.032-.715 1.604-1.511 2.35-1.39 1.312-2.748 1.65-4.647 1.537H.005v-5.811c-.05-1.772.312-3.12 1.553-4.504.766-.858 1.358-1.261 2.435-1.66-1.077-.382-1.67-.776-2.435-1.618C.29 9.003.015 7.68.005 5.842V.001h5.837c1.9-.016 3.15.29 4.534 1.542.848.77 1.241 1.368 1.624 2.446.429-1.083.848-1.675 1.726-2.446C15.105.343 16.386.052 18.158 0h5.827v5.841c.092 1.87-.225 3.284-1.548 4.672zm-.893-8.042h-3.79c-1.68-.04-2.88.22-4.197 1.317-.76.634-1.123 1.119-1.531 2.017-.383-.893-.736-1.378-1.471-2.017-1.312-1.138-2.41-1.297-4.259-1.317H2.512l-.005 3.784c-.02 1.532.169 2.599 1.088 3.87.669.925 1.22 1.384 2.252 1.87-1.037.505-1.588.98-2.252 1.924-.888 1.262-1.088 2.155-1.072 3.794v3.769h3.773c1.793-.01 2.957-.158 4.274-1.302.73-.639 1.083-1.124 1.456-2.017.413.898.78 1.378 1.542 2.017 1.312 1.093 2.446 1.378 4.187 1.312h3.789v-3.779c-.01-1.521-.082-2.568-.97-3.824-.685-.965-1.282-1.44-2.375-1.895 1.098-.47 1.69-.955 2.375-1.93.878-1.25.934-2.323.97-3.794z" }) + ] + } + ); +}); + +export { SiMuller as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.cjs new file mode 100644 index 000000000..38033754c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#294D73"; +const SiMullvad = React__namespace.forwardRef(function SiMullvad2({ title = "Mullvad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.371 0 0 5.362 0 12c0 6.629 5.381 12 12 12s12-5.371 12-12S18.629 0 12 0zm1.651 3.363c1.908-.02 4.059 1.28 4.701 2.951.381 1 .267 2.086-.057 3.086-.266.819-1.238 2-.876 2.886-.143-.038-3.124-1.048-3.98-1.505-1.344-.838-2.544-1.867-3.448-2.657l-.03-.029-3.047-1.447a1.037 1.037 0 0 1-.104-.058c.419.029 2.085.23 2.828.058-.143-.39-.105-.896.095-1.372.286-.657.83-1.095 1.343-1.095.105 0 .2.019.296.057A3.411 3.411 0 0 1 12.39 3.6a3.49 3.49 0 0 1 1.26-.237zm-2.499.97c-.457 0-.962.42-1.228 1.02-.2.447-.229.933-.086 1.304a.813.813 0 0 0 .41.457.696.696 0 0 0 .285.058c.457 0 .962-.42 1.22-1.02.161-.362.209-.742.152-1.076a.91.91 0 0 0-.467-.676.6.6 0 0 0-.286-.067zm0 .286c.057 0 .115.01.172.038.152.067.266.238.304.467.048.276.01.6-.133.905-.21.485-.619.838-.962.838a.444.444 0 0 1-.162-.029c-.142-.057-.219-.19-.257-.295-.114-.286-.085-.705.076-1.086.21-.495.62-.838.962-.838zM3.01 6.362 2.943 7.79l.133.037.943-1.123-.648 1.104c1.01-.2 2.658-.247 4.42-.114l1.837.895c.915.8 2.124 1.839 3.486 2.686l3.553 1.4.438.638h-.372l.781.943-.714-.114c.01.066.714.876.714.876l-.562.076c.02.067.572.753.572.753l-.42-.03c.03.106.677 1.153.677 1.163 0 .01-.229-.057-.381-.105.543 1.21 1.324 1.448 1.362 1.943-2.667 3.419-9.667 3.952-12.771.124-.067-.314.619-.838 1.057-1.429.21-.286.4-.59.533-.905.19-.58-.21-.533-.476-1.028-.047-.086-.086-.2-.047-.305.057-.19.38-.324.438-.286 1.314.877 3.762.59 5.266-1.142 0 0 .458.114.696.18l-.686-.457-.048-.028c-.028.019-.067.038-.095.057-3.124 2.38-5.152 1.352-5.152 1.352a3.243 3.243 0 0 0-.438-.39c-2.124-1.495-3.639-3.505-4.324-4.81l-.257 1.381.057-1.838-.914 1.276.676-1.371c-.505-.067-.79-.572-.676-.981.094-.426.63-.738 1.096-.527z" }) + ] + } + ); +}); + +exports.default = SiMullvad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.d.ts new file mode 100644 index 000000000..11d64714c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#294D73"; +declare const SiMullvad: IconType; +export { SiMullvad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.mjs new file mode 100644 index 000000000..1d4226c67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMullvad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#294D73"; +const SiMullvad = React.forwardRef(function SiMullvad2({ title = "Mullvad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.371 0 0 5.362 0 12c0 6.629 5.381 12 12 12s12-5.371 12-12S18.629 0 12 0zm1.651 3.363c1.908-.02 4.059 1.28 4.701 2.951.381 1 .267 2.086-.057 3.086-.266.819-1.238 2-.876 2.886-.143-.038-3.124-1.048-3.98-1.505-1.344-.838-2.544-1.867-3.448-2.657l-.03-.029-3.047-1.447a1.037 1.037 0 0 1-.104-.058c.419.029 2.085.23 2.828.058-.143-.39-.105-.896.095-1.372.286-.657.83-1.095 1.343-1.095.105 0 .2.019.296.057A3.411 3.411 0 0 1 12.39 3.6a3.49 3.49 0 0 1 1.26-.237zm-2.499.97c-.457 0-.962.42-1.228 1.02-.2.447-.229.933-.086 1.304a.813.813 0 0 0 .41.457.696.696 0 0 0 .285.058c.457 0 .962-.42 1.22-1.02.161-.362.209-.742.152-1.076a.91.91 0 0 0-.467-.676.6.6 0 0 0-.286-.067zm0 .286c.057 0 .115.01.172.038.152.067.266.238.304.467.048.276.01.6-.133.905-.21.485-.619.838-.962.838a.444.444 0 0 1-.162-.029c-.142-.057-.219-.19-.257-.295-.114-.286-.085-.705.076-1.086.21-.495.62-.838.962-.838zM3.01 6.362 2.943 7.79l.133.037.943-1.123-.648 1.104c1.01-.2 2.658-.247 4.42-.114l1.837.895c.915.8 2.124 1.839 3.486 2.686l3.553 1.4.438.638h-.372l.781.943-.714-.114c.01.066.714.876.714.876l-.562.076c.02.067.572.753.572.753l-.42-.03c.03.106.677 1.153.677 1.163 0 .01-.229-.057-.381-.105.543 1.21 1.324 1.448 1.362 1.943-2.667 3.419-9.667 3.952-12.771.124-.067-.314.619-.838 1.057-1.429.21-.286.4-.59.533-.905.19-.58-.21-.533-.476-1.028-.047-.086-.086-.2-.047-.305.057-.19.38-.324.438-.286 1.314.877 3.762.59 5.266-1.142 0 0 .458.114.696.18l-.686-.457-.048-.028c-.028.019-.067.038-.095.057-3.124 2.38-5.152 1.352-5.152 1.352a3.243 3.243 0 0 0-.438-.39c-2.124-1.495-3.639-3.505-4.324-4.81l-.257 1.381.057-1.838-.914 1.276.676-1.371c-.505-.067-.79-.572-.676-.981.094-.426.63-.738 1.096-.527z" }) + ] + } + ); +}); + +export { SiMullvad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.cjs new file mode 100644 index 000000000..648cb8a46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#57B685"; +const SiMultisim = React__namespace.forwardRef(function SiMultisim2({ title = "Multisim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.3636 5.7778c-.1616.3232-.5656.5656-.9697.5656-.6464 0-1.1313-.4848-1.1313-1.1313s.4849-1.1313 1.1313-1.1313c.404 0 .7273.2424.9697.5657h3.5556V.1212H0v2.7475h15.0303c.1616-.3232.5657-.5657.9697-.5657.6465 0 1.1313.4849 1.1313 1.1313S16.6465 4.5657 16 4.5657c-.404 0-.7273-.2425-.9697-.5657H0v6.5455h2.101V6.505h10.586c.1616-.3232.5656-.5656.9697-.5656.6464 0 1.1313.4848 1.1313 1.1313s-.485 1.1313-1.1314 1.1313c-.404 0-.7273-.2424-.9697-.5656H3.313v3.0707h11.798c.1616-.3233.5657-.5657.9697-.5657.6465 0 1.1313.4849 1.1313 1.1313s-.4848 1.1313-1.1313 1.1313c-.404 0-.7273-.2424-.9697-.5656H0v3.0707h6.5455c.1616-.3232.5656-.5657.9697-.5657.6464 0 1.1313.4849 1.1313 1.1313 0 .6465-.4849 1.1314-1.1313 1.1314-.404 0-.7273-.2425-.9697-.5657H0v3.0707h7.6768c.1616-.3232.5656-.5657.9697-.5657.6464 0 1.1313.4849 1.1313 1.1314 0 .6464-.4849 1.1313-1.1313 1.1313-.404 0-.7273-.2424-.9697-.5657H0v3.6364h12.606v-7.4344c-.3232-.1616-.5656-.5656-.5656-.9697 0-.6464.4849-1.1313 1.1313-1.1313s1.1313.4849 1.1313 1.1313c0 .404-.2424.7273-.5656.9697v7.4344h2.6666v-5.6566c-.3232-.1616-.5656-.5656-.5656-.9697 0-.6464.4848-1.1313 1.1313-1.1313s1.1313.4849 1.1313 1.1313c0 .404-.2424.7273-.5656.9697v5.6566h2.6666v-8.3232c-.3232-.1617-.5656-.5657-.5656-.9697 0-.6465.4848-1.1314 1.1313-1.1314.6464 0 1.1313.4849 1.1313 1.1314 0 .404-.2424.7272-.5657.9697v8.3232H24V9.9798h-2.9899c-.1616.3232-.5657.5657-.9697.5657-.6465 0-1.1313-.4849-1.1313-1.1314s.4848-1.1313 1.1313-1.1313c.404 0 .7273.2425.9697.5657H24V5.697l-3.6364.0808z" }) + ] + } + ); +}); + +exports.default = SiMultisim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.d.ts new file mode 100644 index 000000000..efacd9a5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#57B685"; +declare const SiMultisim: IconType; +export { SiMultisim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.mjs new file mode 100644 index 000000000..6d5b365da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMultisim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#57B685"; +const SiMultisim = React.forwardRef(function SiMultisim2({ title = "Multisim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.3636 5.7778c-.1616.3232-.5656.5656-.9697.5656-.6464 0-1.1313-.4848-1.1313-1.1313s.4849-1.1313 1.1313-1.1313c.404 0 .7273.2424.9697.5657h3.5556V.1212H0v2.7475h15.0303c.1616-.3232.5657-.5657.9697-.5657.6465 0 1.1313.4849 1.1313 1.1313S16.6465 4.5657 16 4.5657c-.404 0-.7273-.2425-.9697-.5657H0v6.5455h2.101V6.505h10.586c.1616-.3232.5656-.5656.9697-.5656.6464 0 1.1313.4848 1.1313 1.1313s-.485 1.1313-1.1314 1.1313c-.404 0-.7273-.2424-.9697-.5656H3.313v3.0707h11.798c.1616-.3233.5657-.5657.9697-.5657.6465 0 1.1313.4849 1.1313 1.1313s-.4848 1.1313-1.1313 1.1313c-.404 0-.7273-.2424-.9697-.5656H0v3.0707h6.5455c.1616-.3232.5656-.5657.9697-.5657.6464 0 1.1313.4849 1.1313 1.1313 0 .6465-.4849 1.1314-1.1313 1.1314-.404 0-.7273-.2425-.9697-.5657H0v3.0707h7.6768c.1616-.3232.5656-.5657.9697-.5657.6464 0 1.1313.4849 1.1313 1.1314 0 .6464-.4849 1.1313-1.1313 1.1313-.404 0-.7273-.2424-.9697-.5657H0v3.6364h12.606v-7.4344c-.3232-.1616-.5656-.5656-.5656-.9697 0-.6464.4849-1.1313 1.1313-1.1313s1.1313.4849 1.1313 1.1313c0 .404-.2424.7273-.5656.9697v7.4344h2.6666v-5.6566c-.3232-.1616-.5656-.5656-.5656-.9697 0-.6464.4848-1.1313 1.1313-1.1313s1.1313.4849 1.1313 1.1313c0 .404-.2424.7273-.5656.9697v5.6566h2.6666v-8.3232c-.3232-.1617-.5656-.5657-.5656-.9697 0-.6465.4848-1.1314 1.1313-1.1314.6464 0 1.1313.4849 1.1313 1.1314 0 .404-.2424.7272-.5657.9697v8.3232H24V9.9798h-2.9899c-.1616.3232-.5657.5657-.9697.5657-.6465 0-1.1313-.4849-1.1313-1.1314s.4848-1.1313 1.1313-1.1313c.404 0 .7273.2425.9697.5657H24V5.697l-3.6364.0808z" }) + ] + } + ); +}); + +export { SiMultisim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.cjs new file mode 100644 index 000000000..b1dd72864 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMumble = React__namespace.forwardRef(function SiMumble2({ title = "Mumble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .08A12 11.92 0 000 12a12 11.92 0 0012 11.92A12 11.92 0 0024 12 12 11.92 0 0012 .08zM9.463 1.56c.393 0 .763.21.944.57-.013 1.409-.007 2.819-.008 4.23v.001c.013.303-.019.633.004.951.023.318.102.627.341.88.357.447.942.468 1.45.446h-.003.003c.736.093 1.468-.476 1.519-1.225v-.001c.013-1.74.008-3.479 0-5.218.115-.387.562-.669.973-.617h.006c1.457-.108 3.002.616 3.661 1.953l.001.002c.252.448.328 1.023.381 1.496v4.258a3.401 3.401 0 00-.757-.174l-.037-.004V9.389h-.022v-.193c0-.148-.13-.265-.285-.265h-.36a.305.305 0 00-.102.018c-.002-1.298.007-2.592-.01-3.895v-.001a2.212 2.212 0 00-.571-1.358c-.337-.368-.801-.606-1.33-.567l-.03.002v3.995c.104 1.115-.673 2.259-1.791 2.469-.742.09-1.498.028-2.252.047h-.002c-1.184.1-2.306-.88-2.39-2.06-.027-1.475-.004-2.952-.012-4.428v-.032h-.032c-.508-.006-.945.241-1.26.606a2.247 2.247 0 00-.534 1.319C6.94 6.383 6.95 7.71 6.948 9.04a.291.291 0 00-.156-.045H6.44c-.154 0-.28.118-.28.265v.122h-.007v-.217l-.036.004a3.394 3.394 0 00-.733.166V5.273c.007-.371.045-.734.139-1.117.401-1.573 2.014-2.627 3.604-2.588l.082.003.08.001h.003c.057-.01.114-.013.17-.013zM17.275 9h.36c.122 0 .217.088.217.196v10.736c0 .107-.095.196-.218.196h-.36c-.122 0-.217-.089-.217-.196V9.196c0-.108.095-.196.218-.196zM6.44 9.064h.353c.04 0 .079.011.11.03l.013.007a.186.186 0 01.035.028c.034.035.054.08.054.131v10.737c0 .108-.093.196-.212.196H6.44c-.12 0-.212-.088-.212-.196V9.26c0-.108.093-.196.212-.196zm11.567.118c.055.007.11.016.164.025 2.061.356 3.662 2.656 3.662 5.452 0 2.869-1.686 5.217-3.826 5.476zM6.09 9.241v10.952c-2.14-.259-3.826-2.607-3.826-5.476 0-2.775 1.578-5.063 3.618-5.444l.011-.002.034-.006c.054-.009.108-.017.163-.024zM17.92 19.883h.022v.326l.036-.004a3.35 3.35 0 00.371-.062.195.195 0 01-.09.173l-.002.001v.001s-.618.496-.947.707c-.314.187-.49.338-.758.455a1.718 1.718 0 01-.19.067.858.858 0 01-.14.032h-2.206a.134.134 0 01-.02-.002.68.68 0 00.052-.456h2.068s.127-.011.28-.085c.19-.091.39-.225.577-.347.209-.137.403-.283.607-.435.026-.02.05-.04.072-.06.148-.008.268-.12.268-.263zm-5.684.39c.487 0 .928.115 1.244.299.317.184.506.433.506.705 0 .271-.19.52-.506.705-.316.183-.757.299-1.244.299-.488 0-.93-.116-1.245-.3-.317-.183-.506-.433-.506-.704 0-.272.19-.521.506-.705.316-.184.757-.3 1.245-.3z" }) + ] + } + ); +}); + +exports.default = SiMumble; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.d.ts new file mode 100644 index 000000000..502e298df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMumble: IconType; +export { SiMumble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.mjs new file mode 100644 index 000000000..76e889ff0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMumble.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMumble = React.forwardRef(function SiMumble2({ title = "Mumble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .08A12 11.92 0 000 12a12 11.92 0 0012 11.92A12 11.92 0 0024 12 12 11.92 0 0012 .08zM9.463 1.56c.393 0 .763.21.944.57-.013 1.409-.007 2.819-.008 4.23v.001c.013.303-.019.633.004.951.023.318.102.627.341.88.357.447.942.468 1.45.446h-.003.003c.736.093 1.468-.476 1.519-1.225v-.001c.013-1.74.008-3.479 0-5.218.115-.387.562-.669.973-.617h.006c1.457-.108 3.002.616 3.661 1.953l.001.002c.252.448.328 1.023.381 1.496v4.258a3.401 3.401 0 00-.757-.174l-.037-.004V9.389h-.022v-.193c0-.148-.13-.265-.285-.265h-.36a.305.305 0 00-.102.018c-.002-1.298.007-2.592-.01-3.895v-.001a2.212 2.212 0 00-.571-1.358c-.337-.368-.801-.606-1.33-.567l-.03.002v3.995c.104 1.115-.673 2.259-1.791 2.469-.742.09-1.498.028-2.252.047h-.002c-1.184.1-2.306-.88-2.39-2.06-.027-1.475-.004-2.952-.012-4.428v-.032h-.032c-.508-.006-.945.241-1.26.606a2.247 2.247 0 00-.534 1.319C6.94 6.383 6.95 7.71 6.948 9.04a.291.291 0 00-.156-.045H6.44c-.154 0-.28.118-.28.265v.122h-.007v-.217l-.036.004a3.394 3.394 0 00-.733.166V5.273c.007-.371.045-.734.139-1.117.401-1.573 2.014-2.627 3.604-2.588l.082.003.08.001h.003c.057-.01.114-.013.17-.013zM17.275 9h.36c.122 0 .217.088.217.196v10.736c0 .107-.095.196-.218.196h-.36c-.122 0-.217-.089-.217-.196V9.196c0-.108.095-.196.218-.196zM6.44 9.064h.353c.04 0 .079.011.11.03l.013.007a.186.186 0 01.035.028c.034.035.054.08.054.131v10.737c0 .108-.093.196-.212.196H6.44c-.12 0-.212-.088-.212-.196V9.26c0-.108.093-.196.212-.196zm11.567.118c.055.007.11.016.164.025 2.061.356 3.662 2.656 3.662 5.452 0 2.869-1.686 5.217-3.826 5.476zM6.09 9.241v10.952c-2.14-.259-3.826-2.607-3.826-5.476 0-2.775 1.578-5.063 3.618-5.444l.011-.002.034-.006c.054-.009.108-.017.163-.024zM17.92 19.883h.022v.326l.036-.004a3.35 3.35 0 00.371-.062.195.195 0 01-.09.173l-.002.001v.001s-.618.496-.947.707c-.314.187-.49.338-.758.455a1.718 1.718 0 01-.19.067.858.858 0 01-.14.032h-2.206a.134.134 0 01-.02-.002.68.68 0 00.052-.456h2.068s.127-.011.28-.085c.19-.091.39-.225.577-.347.209-.137.403-.283.607-.435.026-.02.05-.04.072-.06.148-.008.268-.12.268-.263zm-5.684.39c.487 0 .928.115 1.244.299.317.184.506.433.506.705 0 .271-.19.52-.506.705-.316.183-.757.299-1.244.299-.488 0-.93-.116-1.245-.3-.317-.183-.506-.433-.506-.704 0-.272.19-.521.506-.705.316-.184.757-.3 1.245-.3z" }) + ] + } + ); +}); + +export { SiMumble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.cjs new file mode 100644 index 000000000..857f6ea50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C60D0D"; +const SiMuo = React__namespace.forwardRef(function SiMuo2({ title = "MUO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.887 6.016 0 10.903v7.048h19.108l4.873-4.874v-7.06Zm5.46 3.57a.295.295 0 0 1 .314.314v3.652h3V9.9a.303.303 0 0 1 .331-.314.295.295 0 0 1 .315.314v3.72a.506.506 0 0 1-.56.552h-3.18a.502.502 0 0 1-.551-.552V9.9a.303.303 0 0 1 .33-.314zm-5.113.041a.597.597 0 0 1 .465.22l1.638 1.99L8.96 9.81a.47.47 0 0 1 .378-.183h.164a.18.18 0 0 1 .183.183.193.193 0 0 1-.046.128L7.668 12.4a.433.433 0 0 1-.33.19.443.443 0 0 1-.323-.185l-1.45-1.753v3.246a.303.303 0 0 1-.331.315.295.295 0 0 1-.315-.315V9.942a.295.295 0 0 1 .315-.315zm9.942 0h3.334a.502.502 0 0 1 .552.552v3.44a.502.502 0 0 1-.552.553h-3.334a.502.502 0 0 1-.552-.552v-3.44a.502.502 0 0 1 .552-.553zm.093.62v3.304h3.148v-3.303zm-5.775.584c.032 0 .191.012.191.25v2.817a.303.303 0 0 1-.33.315.295.295 0 0 1-.315-.315V11.49a.591.591 0 0 1 .133-.378l.131-.164.012-.013c.058-.058.104-.104.178-.104zM24 14.498l-3.486 3.486H24Z" }) + ] + } + ); +}); + +exports.default = SiMuo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.d.ts new file mode 100644 index 000000000..95083117f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C60D0D"; +declare const SiMuo: IconType; +export { SiMuo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.mjs new file mode 100644 index 000000000..01ff1384b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMuo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C60D0D"; +const SiMuo = React.forwardRef(function SiMuo2({ title = "MUO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.887 6.016 0 10.903v7.048h19.108l4.873-4.874v-7.06Zm5.46 3.57a.295.295 0 0 1 .314.314v3.652h3V9.9a.303.303 0 0 1 .331-.314.295.295 0 0 1 .315.314v3.72a.506.506 0 0 1-.56.552h-3.18a.502.502 0 0 1-.551-.552V9.9a.303.303 0 0 1 .33-.314zm-5.113.041a.597.597 0 0 1 .465.22l1.638 1.99L8.96 9.81a.47.47 0 0 1 .378-.183h.164a.18.18 0 0 1 .183.183.193.193 0 0 1-.046.128L7.668 12.4a.433.433 0 0 1-.33.19.443.443 0 0 1-.323-.185l-1.45-1.753v3.246a.303.303 0 0 1-.331.315.295.295 0 0 1-.315-.315V9.942a.295.295 0 0 1 .315-.315zm9.942 0h3.334a.502.502 0 0 1 .552.552v3.44a.502.502 0 0 1-.552.553h-3.334a.502.502 0 0 1-.552-.552v-3.44a.502.502 0 0 1 .552-.553zm.093.62v3.304h3.148v-3.303zm-5.775.584c.032 0 .191.012.191.25v2.817a.303.303 0 0 1-.33.315.295.295 0 0 1-.315-.315V11.49a.591.591 0 0 1 .133-.378l.131-.164.012-.013c.058-.058.104-.104.178-.104zM24 14.498l-3.486 3.486H24Z" }) + ] + } + ); +}); + +export { SiMuo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMural.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMural.cjs new file mode 100644 index 000000000..2fec6964e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMural.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4B4B"; +const SiMural = React__namespace.forwardRef(function SiMural2({ title = "Mural", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.53 8.118H24v13.258h-3.47V8.118zM5.497 6.094A2.03 2.03 0 0 1 7.524 8.12h3.47a5.503 5.503 0 0 0-5.497-5.497A5.503 5.503 0 0 0 0 8.121h3.47a2.03 2.03 0 0 1 2.027-2.027zm2.027 15.285 3.47-.002V8.12h-3.47v13.258zm8.952-.005v-3.468h-3.47l-2.013.001v3.47l5.483-.003zm0-13.256a2.03 2.03 0 0 1 2.027-2.027V2.62a5.503 5.503 0 0 0-5.497 5.497v9.788h3.47V8.118zm4.055 0H24a5.503 5.503 0 0 0-5.497-5.497v3.47a2.03 2.03 0 0 1 2.027 2.027zM0 21.378h3.47V8.122H0V21.38z" }) + ] + } + ); +}); + +exports.default = SiMural; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMural.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMural.d.ts new file mode 100644 index 000000000..d1fab213e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMural.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4B4B"; +declare const SiMural: IconType; +export { SiMural as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMural.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMural.mjs new file mode 100644 index 000000000..f4c011de7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMural.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4B4B"; +const SiMural = React.forwardRef(function SiMural2({ title = "Mural", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.53 8.118H24v13.258h-3.47V8.118zM5.497 6.094A2.03 2.03 0 0 1 7.524 8.12h3.47a5.503 5.503 0 0 0-5.497-5.497A5.503 5.503 0 0 0 0 8.121h3.47a2.03 2.03 0 0 1 2.027-2.027zm2.027 15.285 3.47-.002V8.12h-3.47v13.258zm8.952-.005v-3.468h-3.47l-2.013.001v3.47l5.483-.003zm0-13.256a2.03 2.03 0 0 1 2.027-2.027V2.62a5.503 5.503 0 0 0-5.497 5.497v9.788h3.47V8.118zm4.055 0H24a5.503 5.503 0 0 0-5.497-5.497v3.47a2.03 2.03 0 0 1 2.027 2.027zM0 21.378h3.47V8.122H0V21.38z" }) + ] + } + ); +}); + +export { SiMural as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.cjs new file mode 100644 index 000000000..bf3f019c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BA478F"; +const SiMusicbrainz = React__namespace.forwardRef(function SiMusicbrainz2({ title = "MusicBrainz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.582 0L1.418 5.832v12.336L11.582 24V10.01L7.1 12.668v3.664c.01.111.01.225 0 .336-.103.435-.54.804-1 1.111-.802.537-1.752.509-2.166-.111-.413-.62-.141-1.631.666-2.168.384-.28.863-.399 1.334-.332V6.619c0-.154.134-.252.226-.308L11.582 3zm.836 0v6.162c.574.03 1.14.16 1.668.387a2.225 2.225 0 0 0 1.656-.717 1.02 1.02 0 1 1 1.832-.803l.004.006a1.022 1.022 0 0 1-1.295 1.197c-.34.403-.792.698-1.297.85.34.263.641.576.891.928a1.04 1.04 0 0 1 .777.125c.768.486.568 1.657-.318 1.857-.886.2-1.574-.77-1.09-1.539.02-.03.042-.06.065-.09a3.598 3.598 0 0 0-1.436-1.166 4.142 4.142 0 0 0-1.457-.369v4.01c.855.06 1.256.493 1.555.834.227.256.356.39.578.402.323.018.568.008.806 0a5.44 5.44 0 0 1 .895.022c.94-.017 1.272-.226 1.605-.446a2.533 2.533 0 0 1 1.131-.463 1.027 1.027 0 0 1 .12-.263 1.04 1.04 0 0 1 .105-.137c.023-.025.047-.044.07-.066a4.775 4.775 0 0 1 0-2.405l-.012-.01a1.02 1.02 0 1 1 .692.272h-.057a4.288 4.288 0 0 0 0 1.877h.063a1.02 1.02 0 1 1-.545 1.883l-.047-.033a1 1 0 0 1-.352-.442 1.885 1.885 0 0 0-.814.354 3.03 3.03 0 0 1-.703.365c.757.555 1.772 1.6 2.199 2.299a1.03 1.03 0 0 1 .256-.033 1.02 1.02 0 1 1-.545 1.88l-.047-.03a1.017 1.017 0 0 1-.27-1.376.72.72 0 0 1 .051-.072c-.445-.775-2.026-2.28-2.46-2.387a4.037 4.037 0 0 0-1.31-.117c-.24.008-.513.018-.866 0-.515-.027-.783-.333-1.043-.629-.26-.296-.51-.56-1.055-.611V18.5a1.877 1.877 0 0 0 .426-.135.333.333 0 0 1 .058-.027c.56-.267 1.421-.91 2.096-2.447a1.02 1.02 0 0 1-.27-1.344 1.02 1.02 0 1 1 .915 1.54 6.273 6.273 0 0 1-1.432 2.136 1.785 1.785 0 0 1 .691.306.667.667 0 0 0 .37.168 3.31 3.31 0 0 0 .888-.222 1.02 1.02 0 0 1 1.787-.79v-.005a1.02 1.02 0 0 1-.773 1.683 1.022 1.022 0 0 1-.719-.287 3.935 3.935 0 0 1-1.168.287h-.05a1.313 1.313 0 0 1-.71-.275c-.262-.177-.51-.345-1.402-.12a2.098 2.098 0 0 1-.707.2V24l10.164-5.832V5.832zm4.154 4.904a.352.352 0 0 0-.197.639l.018.01c.163.1.378.053.484-.108v-.002a.352.352 0 0 0-.303-.539zm-4.99 1.928L7.082 9.5v2l4.5-2.668zm8.385.38a.352.352 0 0 0-.295.165v.002a.35.35 0 0 0 .096.473l.013.01a.357.357 0 0 0 .487-.108.352.352 0 0 0-.301-.541zM16.09 8.647a.352.352 0 0 0-.277.163.355.355 0 0 0 .296.54c.482 0 .463-.73-.02-.703zm3.877 2.477a.352.352 0 0 0-.295.164.35.35 0 0 0 .094.475l.015.01a.357.357 0 0 0 .485-.11.352.352 0 0 0-.3-.539zm-4.375 3.594a.352.352 0 0 0-.291.172.35.35 0 0 0-.04.265.352.352 0 1 0 .33-.437zm4.375.789a.352.352 0 0 0-.295.164v.002a.352.352 0 0 0 .094.473l.015.01a.357.357 0 0 0 .485-.108.352.352 0 0 0-.3-.54zm-2.803 2.488v.002a.347.347 0 0 0-.223.084.352.352 0 0 0 .23.62.347.347 0 0 0 .23-.085.348.348 0 0 0 .12-.24.353.353 0 0 0-.35-.38.347.347 0 0 0-.007 0Z" }) + ] + } + ); +}); + +exports.default = SiMusicbrainz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.d.ts new file mode 100644 index 000000000..44bf0e7b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BA478F"; +declare const SiMusicbrainz: IconType; +export { SiMusicbrainz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.mjs new file mode 100644 index 000000000..024b24fc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMusicbrainz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BA478F"; +const SiMusicbrainz = React.forwardRef(function SiMusicbrainz2({ title = "MusicBrainz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.582 0L1.418 5.832v12.336L11.582 24V10.01L7.1 12.668v3.664c.01.111.01.225 0 .336-.103.435-.54.804-1 1.111-.802.537-1.752.509-2.166-.111-.413-.62-.141-1.631.666-2.168.384-.28.863-.399 1.334-.332V6.619c0-.154.134-.252.226-.308L11.582 3zm.836 0v6.162c.574.03 1.14.16 1.668.387a2.225 2.225 0 0 0 1.656-.717 1.02 1.02 0 1 1 1.832-.803l.004.006a1.022 1.022 0 0 1-1.295 1.197c-.34.403-.792.698-1.297.85.34.263.641.576.891.928a1.04 1.04 0 0 1 .777.125c.768.486.568 1.657-.318 1.857-.886.2-1.574-.77-1.09-1.539.02-.03.042-.06.065-.09a3.598 3.598 0 0 0-1.436-1.166 4.142 4.142 0 0 0-1.457-.369v4.01c.855.06 1.256.493 1.555.834.227.256.356.39.578.402.323.018.568.008.806 0a5.44 5.44 0 0 1 .895.022c.94-.017 1.272-.226 1.605-.446a2.533 2.533 0 0 1 1.131-.463 1.027 1.027 0 0 1 .12-.263 1.04 1.04 0 0 1 .105-.137c.023-.025.047-.044.07-.066a4.775 4.775 0 0 1 0-2.405l-.012-.01a1.02 1.02 0 1 1 .692.272h-.057a4.288 4.288 0 0 0 0 1.877h.063a1.02 1.02 0 1 1-.545 1.883l-.047-.033a1 1 0 0 1-.352-.442 1.885 1.885 0 0 0-.814.354 3.03 3.03 0 0 1-.703.365c.757.555 1.772 1.6 2.199 2.299a1.03 1.03 0 0 1 .256-.033 1.02 1.02 0 1 1-.545 1.88l-.047-.03a1.017 1.017 0 0 1-.27-1.376.72.72 0 0 1 .051-.072c-.445-.775-2.026-2.28-2.46-2.387a4.037 4.037 0 0 0-1.31-.117c-.24.008-.513.018-.866 0-.515-.027-.783-.333-1.043-.629-.26-.296-.51-.56-1.055-.611V18.5a1.877 1.877 0 0 0 .426-.135.333.333 0 0 1 .058-.027c.56-.267 1.421-.91 2.096-2.447a1.02 1.02 0 0 1-.27-1.344 1.02 1.02 0 1 1 .915 1.54 6.273 6.273 0 0 1-1.432 2.136 1.785 1.785 0 0 1 .691.306.667.667 0 0 0 .37.168 3.31 3.31 0 0 0 .888-.222 1.02 1.02 0 0 1 1.787-.79v-.005a1.02 1.02 0 0 1-.773 1.683 1.022 1.022 0 0 1-.719-.287 3.935 3.935 0 0 1-1.168.287h-.05a1.313 1.313 0 0 1-.71-.275c-.262-.177-.51-.345-1.402-.12a2.098 2.098 0 0 1-.707.2V24l10.164-5.832V5.832zm4.154 4.904a.352.352 0 0 0-.197.639l.018.01c.163.1.378.053.484-.108v-.002a.352.352 0 0 0-.303-.539zm-4.99 1.928L7.082 9.5v2l4.5-2.668zm8.385.38a.352.352 0 0 0-.295.165v.002a.35.35 0 0 0 .096.473l.013.01a.357.357 0 0 0 .487-.108.352.352 0 0 0-.301-.541zM16.09 8.647a.352.352 0 0 0-.277.163.355.355 0 0 0 .296.54c.482 0 .463-.73-.02-.703zm3.877 2.477a.352.352 0 0 0-.295.164.35.35 0 0 0 .094.475l.015.01a.357.357 0 0 0 .485-.11.352.352 0 0 0-.3-.539zm-4.375 3.594a.352.352 0 0 0-.291.172.35.35 0 0 0-.04.265.352.352 0 1 0 .33-.437zm4.375.789a.352.352 0 0 0-.295.164v.002a.352.352 0 0 0 .094.473l.015.01a.357.357 0 0 0 .485-.108.352.352 0 0 0-.3-.54zm-2.803 2.488v.002a.347.347 0 0 0-.223.084.352.352 0 0 0 .23.62.347.347 0 0 0 .23-.085.348.348 0 0 0 .12-.24.353.353 0 0 0-.35-.38.347.347 0 0 0-.007 0Z" }) + ] + } + ); +}); + +export { SiMusicbrainz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.cjs new file mode 100644 index 000000000..9f1ee79af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiMxlinux = React__namespace.forwardRef(function SiMxlinux2({ title = "MX Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001 13.301l3.277 3.819-.75.9-2.133-2.521-1.131-1.338.737-.86zM24 2.41v19.182c0 .655-.531 1.186-1.186 1.186H1.186A1.186 1.186 0 0 1 0 21.591V2.409c0-.655.531-1.186 1.186-1.186h21.628c.655 0 1.186.53 1.186 1.186zm-2.241 17.09l-2.116-2.542-2.115-2.541-.586.704-3.25-3.788 4.913-5.73-1.175-1.008-4.76 5.549-4.743-5.527-1.947 1.67 5 5.827-.73.851-1.24-1.465-3.384 4-3.385 4h19.518z" }) + ] + } + ); +}); + +exports.default = SiMxlinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.d.ts new file mode 100644 index 000000000..5951e077a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiMxlinux: IconType; +export { SiMxlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.mjs new file mode 100644 index 000000000..dbeaa9370 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMxlinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiMxlinux = React.forwardRef(function SiMxlinux2({ title = "MX Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001 13.301l3.277 3.819-.75.9-2.133-2.521-1.131-1.338.737-.86zM24 2.41v19.182c0 .655-.531 1.186-1.186 1.186H1.186A1.186 1.186 0 0 1 0 21.591V2.409c0-.655.531-1.186 1.186-1.186h21.628c.655 0 1.186.53 1.186 1.186zm-2.241 17.09l-2.116-2.542-2.115-2.541-.586.704-3.25-3.788 4.913-5.73-1.175-1.008-4.76 5.549-4.743-5.527-1.947 1.67 5 5.827-.73.851-1.24-1.465-3.384 4-3.385 4h19.518z" }) + ] + } + ); +}); + +export { SiMxlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.cjs new file mode 100644 index 000000000..ad95f6b0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E51A2"; +const SiMyanimelist = React__namespace.forwardRef(function SiMyanimelist2({ title = "MyAnimeList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.921 6.479c-.82 0-3.683 0-4.947 3.156-.662 1.652-.986 4.812.876 7.886l1.934-1.41s-.767-1.095-1.083-3.191h2.897l.022 3.19h2.604V8.835h-2.581v2.043l-2.46-.023s.413-2.408 2.877-2.336h2.454l-.572-2.04ZM0 6.528v9.624h2.348v-5.84l2.031 2.664 2.047-2.652v5.828h2.336V6.528H6.437L4.368 9.474 2.31 6.528Zm18.447.022v9.583h5.022L24 14.09h-3.232V6.55Z" }) + ] + } + ); +}); + +exports.default = SiMyanimelist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.d.ts new file mode 100644 index 000000000..ebbfa610d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E51A2"; +declare const SiMyanimelist: IconType; +export { SiMyanimelist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.mjs new file mode 100644 index 000000000..34f79a14d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyanimelist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E51A2"; +const SiMyanimelist = React.forwardRef(function SiMyanimelist2({ title = "MyAnimeList", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.921 6.479c-.82 0-3.683 0-4.947 3.156-.662 1.652-.986 4.812.876 7.886l1.934-1.41s-.767-1.095-1.083-3.191h2.897l.022 3.19h2.604V8.835h-2.581v2.043l-2.46-.023s.413-2.408 2.877-2.336h2.454l-.572-2.04ZM0 6.528v9.624h2.348v-5.84l2.031 2.664 2.047-2.652v5.828h2.336V6.528H6.437L4.368 9.474 2.31 6.528Zm18.447.022v9.583h5.022L24 14.09h-3.232V6.55Z" }) + ] + } + ); +}); + +export { SiMyanimelist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.cjs new file mode 100644 index 000000000..a7b07bda1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C79CE"; +const SiMyget = React__namespace.forwardRef(function SiMyget2({ title = "MyGet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.96 0 1.1 4.34v14.28L11.9 24l11-5.38V13.8h-3.2v2.87l-7.8 3.83-7.64-3.83V8.02l7.64 3.72 10.8-5.6Zm-.24 3.53L16.02 6l-4.15 2.17-5.22-2.56Z" }) + ] + } + ); +}); + +exports.default = SiMyget; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.d.ts new file mode 100644 index 000000000..ac0e873a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C79CE"; +declare const SiMyget: IconType; +export { SiMyget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.mjs new file mode 100644 index 000000000..a86311f54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyget.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C79CE"; +const SiMyget = React.forwardRef(function SiMyget2({ title = "MyGet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.96 0 1.1 4.34v14.28L11.9 24l11-5.38V13.8h-3.2v2.87l-7.8 3.83-7.64-3.83V8.02l7.64 3.72 10.8-5.6Zm-.24 3.53L16.02 6l-4.15 2.17-5.22-2.56Z" }) + ] + } + ); +}); + +export { SiMyget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.cjs new file mode 100644 index 000000000..593d1988f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7B14EF"; +const SiMyob = React__namespace.forwardRef(function SiMyob2({ title = "MYOB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.276 9.347-1.254 3.346a366.37 366.37 0 0 1-1.325-3.346H7.275l2.038 5.132-.86 2.063h1.38l2.845-7.195ZM5.083 10.46c.551 0 .818.33.818 1.01v3.112h1.314v-3.259c0-1.241-.853-2.108-2.075-2.108-.588 0-1.127.206-1.516.58l-.016.015-.016-.015c-.39-.374-.926-.58-1.512-.58-1.225 0-2.08.867-2.08 2.108v3.26h1.314V11.47c0-.68.267-1.01.818-1.01.552 0 .819.33.819 1.01v3.112h1.314V11.47c0-.68.267-1.01.819-1.01zm18.2-.398c-.494-.547-1.191-.849-1.962-.849a2.56 2.56 0 0 0-1.521.497V7.458h-1.315v4.51c0 .721.258 1.396.725 1.9.512.553 1.215.846 2.035.846.819 0 1.52-.293 2.03-.845.467-.505.725-1.18.725-1.9a2.83 2.83 0 0 0-.717-1.908Zm-2.039 3.405c-.937 0-1.446-.772-1.446-1.499 0-.726.51-1.509 1.446-1.509.937 0 1.442.778 1.442 1.51 0 .73-.505 1.498-1.442 1.498m-5.965 1.248c1.788 0 2.753-1.418 2.753-2.753 0-1.334-.965-2.752-2.753-2.752-1.789 0-2.753 1.418-2.753 2.753 0 1.335.964 2.753 2.753 2.753zm.001-1.248c-.936 0-1.445-.773-1.445-1.5 0-.728.509-1.511 1.445-1.511s1.441.778 1.441 1.51c0 .733-.505 1.501-1.441 1.501" }) + ] + } + ); +}); + +exports.default = SiMyob; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.d.ts new file mode 100644 index 000000000..30efc3f5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7B14EF"; +declare const SiMyob: IconType; +export { SiMyob as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.mjs new file mode 100644 index 000000000..e59e7f845 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyob.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7B14EF"; +const SiMyob = React.forwardRef(function SiMyob2({ title = "MYOB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.276 9.347-1.254 3.346a366.37 366.37 0 0 1-1.325-3.346H7.275l2.038 5.132-.86 2.063h1.38l2.845-7.195ZM5.083 10.46c.551 0 .818.33.818 1.01v3.112h1.314v-3.259c0-1.241-.853-2.108-2.075-2.108-.588 0-1.127.206-1.516.58l-.016.015-.016-.015c-.39-.374-.926-.58-1.512-.58-1.225 0-2.08.867-2.08 2.108v3.26h1.314V11.47c0-.68.267-1.01.818-1.01.552 0 .819.33.819 1.01v3.112h1.314V11.47c0-.68.267-1.01.819-1.01zm18.2-.398c-.494-.547-1.191-.849-1.962-.849a2.56 2.56 0 0 0-1.521.497V7.458h-1.315v4.51c0 .721.258 1.396.725 1.9.512.553 1.215.846 2.035.846.819 0 1.52-.293 2.03-.845.467-.505.725-1.18.725-1.9a2.83 2.83 0 0 0-.717-1.908Zm-2.039 3.405c-.937 0-1.446-.772-1.446-1.499 0-.726.51-1.509 1.446-1.509.937 0 1.442.778 1.442 1.51 0 .73-.505 1.498-1.442 1.498m-5.965 1.248c1.788 0 2.753-1.418 2.753-2.753 0-1.334-.965-2.752-2.753-2.752-1.789 0-2.753 1.418-2.753 2.753 0 1.335.964 2.753 2.753 2.753zm.001-1.248c-.936 0-1.445-.773-1.445-1.5 0-.728.509-1.511 1.445-1.511s1.441.778 1.441 1.51c0 .733-.505 1.501-1.441 1.501" }) + ] + } + ); +}); + +export { SiMyob as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.cjs new file mode 100644 index 000000000..40b7f6b9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiMyshows = React__namespace.forwardRef(function SiMyshows2({ title = "MyShows", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.94 1.897c-.375.189-.81.117-1.14-.213-.421-.42-.421-1.01 0-1.431a1.14 1.14 0 0 1 1.432 0c.33.33.401.764.213 1.139l3.323 3.324.032.033a3.247 3.247 0 0 1 2.242-.875c.857 0 1.615.316 2.189.843v-.001l3.297-3.225c-.256-.395-.203-.879.156-1.238.421-.337 1.095-.337 1.432 0 .42.42.42 1.01 0 1.431-.297.297-.676.384-1.022.264L14.821 5.22a.524.524 0 0 1-.093.076c.327.482.539 1.06.598 1.692H8.842c0-.635.185-1.217.505-1.701a.48.48 0 0 1-.084-.067zM4.883 24C2.442 24 .421 21.979.421 19.537v-7.242c0-2.442 2.021-4.463 4.463-4.463h14.232c2.442 0 4.463 2.02 4.463 4.463v7.242c0 2.442-2.021 4.463-4.463 4.463ZM3.032 13.137v5.642c0 1.347 1.094 2.526 2.526 2.526h12.968c1.348 0 2.527-1.094 2.527-2.526v-5.642c0-1.348-1.095-2.526-2.527-2.526H5.558c-1.432 0-2.526 1.094-2.526 2.526z" }) + ] + } + ); +}); + +exports.default = SiMyshows; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.d.ts new file mode 100644 index 000000000..1b84f6db0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiMyshows: IconType; +export { SiMyshows as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.mjs new file mode 100644 index 000000000..a17d95f4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyshows.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiMyshows = React.forwardRef(function SiMyshows2({ title = "MyShows", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.94 1.897c-.375.189-.81.117-1.14-.213-.421-.42-.421-1.01 0-1.431a1.14 1.14 0 0 1 1.432 0c.33.33.401.764.213 1.139l3.323 3.324.032.033a3.247 3.247 0 0 1 2.242-.875c.857 0 1.615.316 2.189.843v-.001l3.297-3.225c-.256-.395-.203-.879.156-1.238.421-.337 1.095-.337 1.432 0 .42.42.42 1.01 0 1.431-.297.297-.676.384-1.022.264L14.821 5.22a.524.524 0 0 1-.093.076c.327.482.539 1.06.598 1.692H8.842c0-.635.185-1.217.505-1.701a.48.48 0 0 1-.084-.067zM4.883 24C2.442 24 .421 21.979.421 19.537v-7.242c0-2.442 2.021-4.463 4.463-4.463h14.232c2.442 0 4.463 2.02 4.463 4.463v7.242c0 2.442-2.021 4.463-4.463 4.463ZM3.032 13.137v5.642c0 1.347 1.094 2.526 2.526 2.526h12.968c1.348 0 2.527-1.094 2.527-2.526v-5.642c0-1.348-1.095-2.526-2.527-2.526H5.558c-1.432 0-2.526 1.094-2.526 2.526z" }) + ] + } + ); +}); + +export { SiMyshows as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.cjs new file mode 100644 index 000000000..3fde02aad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#030303"; +const SiMyspace = React__namespace.forwardRef(function SiMyspace2({ title = "Myspace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.802 12.274A3.811 3.811 0 0023.62 8.47c0-2.101-1.71-3.795-3.818-3.795a3.816 3.816 0 00-3.818 3.81 3.817 3.817 0 003.818 3.811zm-8.602.705a3.43 3.43 0 003.435-3.424A3.43 3.43 0 0011.2 6.13a3.44 3.44 0 00-3.436 3.436A3.436 3.436 0 0011.2 13zm-7.8.635c1.71 0 3.093-1.38 3.093-3.081 0-1.704-1.395-3.084-3.105-3.084A3.086 3.086 0 00.3 10.539c0 1.7 1.387 3.078 3.095 3.078zm0 .705c-1.96 0-3.4 1.717-3.4 3.495v1.196c0 .17.138.31.31.31h6.18a.31.31 0 00.309-.31v-1.196c0-1.779-1.437-3.5-3.398-3.5zm7.8-.56c-2.18 0-3.78 1.915-3.78 3.891v1.331c0 .188.156.344.345.344h6.87a.344.344 0 00.342-.344V17.65c0-1.976-1.598-3.891-3.777-3.891zm8.602-.617c-2.422 0-4.197 2.126-4.197 4.323v1.477c0 .21.172.381.382.381h7.63c.21 0 .383-.171.383-.381v-1.477c-.001-2.197-1.776-4.323-4.198-4.323z" }) + ] + } + ); +}); + +exports.default = SiMyspace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.d.ts new file mode 100644 index 000000000..322938189 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#030303"; +declare const SiMyspace: IconType; +export { SiMyspace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.mjs new file mode 100644 index 000000000..22dd65da2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMyspace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#030303"; +const SiMyspace = React.forwardRef(function SiMyspace2({ title = "Myspace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.802 12.274A3.811 3.811 0 0023.62 8.47c0-2.101-1.71-3.795-3.818-3.795a3.816 3.816 0 00-3.818 3.81 3.817 3.817 0 003.818 3.811zm-8.602.705a3.43 3.43 0 003.435-3.424A3.43 3.43 0 0011.2 6.13a3.44 3.44 0 00-3.436 3.436A3.436 3.436 0 0011.2 13zm-7.8.635c1.71 0 3.093-1.38 3.093-3.081 0-1.704-1.395-3.084-3.105-3.084A3.086 3.086 0 00.3 10.539c0 1.7 1.387 3.078 3.095 3.078zm0 .705c-1.96 0-3.4 1.717-3.4 3.495v1.196c0 .17.138.31.31.31h6.18a.31.31 0 00.309-.31v-1.196c0-1.779-1.437-3.5-3.398-3.5zm7.8-.56c-2.18 0-3.78 1.915-3.78 3.891v1.331c0 .188.156.344.345.344h6.87a.344.344 0 00.342-.344V17.65c0-1.976-1.598-3.891-3.777-3.891zm8.602-.617c-2.422 0-4.197 2.126-4.197 4.323v1.477c0 .21.172.381.382.381h7.63c.21 0 .383-.171.383-.381v-1.477c-.001-2.197-1.776-4.323-4.198-4.323z" }) + ] + } + ); +}); + +export { SiMyspace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.cjs new file mode 100644 index 000000000..0519a2a33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4479A1"; +const SiMysql = React__namespace.forwardRef(function SiMysql2({ title = "MySQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.405 5.501c-.115 0-.193.014-.274.033v.013h.014c.054.104.146.18.214.273.054.107.1.214.154.32l.014-.015c.094-.066.14-.172.14-.333-.04-.047-.046-.094-.08-.14-.04-.067-.126-.1-.18-.153zM5.77 18.695h-.927a50.854 50.854 0 00-.27-4.41h-.008l-1.41 4.41H2.45l-1.4-4.41h-.01a72.892 72.892 0 00-.195 4.41H0c.055-1.966.192-3.81.41-5.53h1.15l1.335 4.064h.008l1.347-4.064h1.095c.242 2.015.384 3.86.428 5.53zm4.017-4.08c-.378 2.045-.876 3.533-1.492 4.46-.482.716-1.01 1.073-1.583 1.073-.153 0-.34-.046-.566-.138v-.494c.11.017.24.026.386.026.268 0 .483-.075.647-.222.197-.18.295-.382.295-.605 0-.155-.077-.47-.23-.944L6.23 14.615h.91l.727 2.36c.164.536.233.91.205 1.123.4-1.064.678-2.227.835-3.483zm12.325 4.08h-2.63v-5.53h.885v4.85h1.745zm-3.32.135l-1.016-.5c.09-.076.177-.158.255-.25.433-.506.648-1.258.648-2.253 0-1.83-.718-2.746-2.155-2.746-.704 0-1.254.232-1.65.697-.43.508-.646 1.256-.646 2.245 0 .972.19 1.686.574 2.14.35.41.877.615 1.583.615.264 0 .506-.033.725-.098l1.325.772.36-.622zM15.5 17.588c-.225-.36-.337-.94-.337-1.736 0-1.393.424-2.09 1.27-2.09.443 0 .77.167.977.5.224.362.336.936.336 1.723 0 1.404-.424 2.108-1.27 2.108-.445 0-.77-.167-.978-.5zm-1.658-.425c0 .47-.172.856-.516 1.156-.344.3-.803.45-1.384.45-.543 0-1.064-.172-1.573-.515l.237-.476c.438.22.833.328 1.19.328.332 0 .593-.073.783-.22a.754.754 0 00.3-.615c0-.33-.23-.61-.648-.845-.388-.213-1.163-.657-1.163-.657-.422-.307-.632-.636-.632-1.177 0-.45.157-.81.47-1.085.315-.278.72-.415 1.22-.415.512 0 .98.136 1.4.41l-.213.476a2.726 2.726 0 00-1.064-.23c-.283 0-.502.068-.654.206a.685.685 0 00-.248.524c0 .328.234.61.666.85.393.215 1.187.67 1.187.67.433.305.648.63.648 1.168zm9.382-5.852c-.535-.014-.95.04-1.297.188-.1.04-.26.04-.274.167.055.053.063.14.11.214.08.134.218.313.346.407.14.11.28.216.427.31.26.16.555.255.81.416.145.094.293.213.44.313.073.05.12.14.214.172v-.02c-.046-.06-.06-.147-.105-.214-.067-.067-.134-.127-.2-.193a3.223 3.223 0 00-.695-.675c-.214-.146-.682-.35-.77-.595l-.013-.014c.146-.013.32-.066.46-.106.227-.06.435-.047.67-.106.106-.027.213-.06.32-.094v-.06c-.12-.12-.21-.283-.334-.395a8.867 8.867 0 00-1.104-.823c-.21-.134-.476-.22-.697-.334-.08-.04-.214-.06-.26-.127-.12-.146-.19-.34-.275-.514a17.69 17.69 0 01-.547-1.163c-.12-.262-.193-.523-.34-.763-.69-1.137-1.437-1.826-2.586-2.5-.247-.14-.543-.2-.856-.274-.167-.008-.334-.02-.5-.027-.11-.047-.216-.174-.31-.235-.38-.24-1.364-.76-1.644-.072-.18.434.267.862.422 1.082.115.153.26.328.34.5.047.116.06.235.107.356.106.294.207.622.347.897.073.14.153.287.247.413.054.073.146.107.167.227-.094.136-.1.334-.154.5-.24.757-.146 1.693.194 2.25.107.166.362.534.703.393.3-.12.234-.5.32-.835.02-.08.007-.133.048-.187v.015c.094.188.188.367.274.555.206.328.566.668.867.895.16.12.287.328.487.402v-.02h-.015c-.043-.058-.1-.086-.154-.133a3.445 3.445 0 01-.35-.4 8.76 8.76 0 01-.747-1.218c-.11-.21-.202-.436-.29-.643-.04-.08-.04-.2-.107-.24-.1.146-.247.273-.32.453-.127.288-.14.642-.188 1.01-.027.007-.014 0-.027.014-.214-.052-.287-.274-.367-.46-.2-.475-.233-1.238-.06-1.785.047-.14.247-.582.167-.716-.042-.127-.174-.2-.247-.303a2.478 2.478 0 01-.24-.427c-.16-.374-.24-.788-.414-1.162-.08-.173-.22-.354-.334-.513-.127-.18-.267-.307-.368-.52-.033-.073-.08-.194-.027-.274.014-.054.042-.075.094-.09.088-.072.335.022.422.062.247.1.455.194.662.334.094.066.195.193.315.226h.14c.214.047.455.014.655.073.355.114.675.28.962.46a5.953 5.953 0 012.085 2.286c.08.154.115.295.188.455.14.33.313.663.455.982.14.315.275.636.476.897.1.14.502.213.682.286.133.06.34.115.46.188.23.14.454.3.67.454.11.076.443.243.463.378z" }) + ] + } + ); +}); + +exports.default = SiMysql; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.d.ts new file mode 100644 index 000000000..8cbee0546 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4479A1"; +declare const SiMysql: IconType; +export { SiMysql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.mjs new file mode 100644 index 000000000..41350359e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiMysql.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4479A1"; +const SiMysql = React.forwardRef(function SiMysql2({ title = "MySQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.405 5.501c-.115 0-.193.014-.274.033v.013h.014c.054.104.146.18.214.273.054.107.1.214.154.32l.014-.015c.094-.066.14-.172.14-.333-.04-.047-.046-.094-.08-.14-.04-.067-.126-.1-.18-.153zM5.77 18.695h-.927a50.854 50.854 0 00-.27-4.41h-.008l-1.41 4.41H2.45l-1.4-4.41h-.01a72.892 72.892 0 00-.195 4.41H0c.055-1.966.192-3.81.41-5.53h1.15l1.335 4.064h.008l1.347-4.064h1.095c.242 2.015.384 3.86.428 5.53zm4.017-4.08c-.378 2.045-.876 3.533-1.492 4.46-.482.716-1.01 1.073-1.583 1.073-.153 0-.34-.046-.566-.138v-.494c.11.017.24.026.386.026.268 0 .483-.075.647-.222.197-.18.295-.382.295-.605 0-.155-.077-.47-.23-.944L6.23 14.615h.91l.727 2.36c.164.536.233.91.205 1.123.4-1.064.678-2.227.835-3.483zm12.325 4.08h-2.63v-5.53h.885v4.85h1.745zm-3.32.135l-1.016-.5c.09-.076.177-.158.255-.25.433-.506.648-1.258.648-2.253 0-1.83-.718-2.746-2.155-2.746-.704 0-1.254.232-1.65.697-.43.508-.646 1.256-.646 2.245 0 .972.19 1.686.574 2.14.35.41.877.615 1.583.615.264 0 .506-.033.725-.098l1.325.772.36-.622zM15.5 17.588c-.225-.36-.337-.94-.337-1.736 0-1.393.424-2.09 1.27-2.09.443 0 .77.167.977.5.224.362.336.936.336 1.723 0 1.404-.424 2.108-1.27 2.108-.445 0-.77-.167-.978-.5zm-1.658-.425c0 .47-.172.856-.516 1.156-.344.3-.803.45-1.384.45-.543 0-1.064-.172-1.573-.515l.237-.476c.438.22.833.328 1.19.328.332 0 .593-.073.783-.22a.754.754 0 00.3-.615c0-.33-.23-.61-.648-.845-.388-.213-1.163-.657-1.163-.657-.422-.307-.632-.636-.632-1.177 0-.45.157-.81.47-1.085.315-.278.72-.415 1.22-.415.512 0 .98.136 1.4.41l-.213.476a2.726 2.726 0 00-1.064-.23c-.283 0-.502.068-.654.206a.685.685 0 00-.248.524c0 .328.234.61.666.85.393.215 1.187.67 1.187.67.433.305.648.63.648 1.168zm9.382-5.852c-.535-.014-.95.04-1.297.188-.1.04-.26.04-.274.167.055.053.063.14.11.214.08.134.218.313.346.407.14.11.28.216.427.31.26.16.555.255.81.416.145.094.293.213.44.313.073.05.12.14.214.172v-.02c-.046-.06-.06-.147-.105-.214-.067-.067-.134-.127-.2-.193a3.223 3.223 0 00-.695-.675c-.214-.146-.682-.35-.77-.595l-.013-.014c.146-.013.32-.066.46-.106.227-.06.435-.047.67-.106.106-.027.213-.06.32-.094v-.06c-.12-.12-.21-.283-.334-.395a8.867 8.867 0 00-1.104-.823c-.21-.134-.476-.22-.697-.334-.08-.04-.214-.06-.26-.127-.12-.146-.19-.34-.275-.514a17.69 17.69 0 01-.547-1.163c-.12-.262-.193-.523-.34-.763-.69-1.137-1.437-1.826-2.586-2.5-.247-.14-.543-.2-.856-.274-.167-.008-.334-.02-.5-.027-.11-.047-.216-.174-.31-.235-.38-.24-1.364-.76-1.644-.072-.18.434.267.862.422 1.082.115.153.26.328.34.5.047.116.06.235.107.356.106.294.207.622.347.897.073.14.153.287.247.413.054.073.146.107.167.227-.094.136-.1.334-.154.5-.24.757-.146 1.693.194 2.25.107.166.362.534.703.393.3-.12.234-.5.32-.835.02-.08.007-.133.048-.187v.015c.094.188.188.367.274.555.206.328.566.668.867.895.16.12.287.328.487.402v-.02h-.015c-.043-.058-.1-.086-.154-.133a3.445 3.445 0 01-.35-.4 8.76 8.76 0 01-.747-1.218c-.11-.21-.202-.436-.29-.643-.04-.08-.04-.2-.107-.24-.1.146-.247.273-.32.453-.127.288-.14.642-.188 1.01-.027.007-.014 0-.027.014-.214-.052-.287-.274-.367-.46-.2-.475-.233-1.238-.06-1.785.047-.14.247-.582.167-.716-.042-.127-.174-.2-.247-.303a2.478 2.478 0 01-.24-.427c-.16-.374-.24-.788-.414-1.162-.08-.173-.22-.354-.334-.513-.127-.18-.267-.307-.368-.52-.033-.073-.08-.194-.027-.274.014-.054.042-.075.094-.09.088-.072.335.022.422.062.247.1.455.194.662.334.094.066.195.193.315.226h.14c.214.047.455.014.655.073.355.114.675.28.962.46a5.953 5.953 0 012.085 2.286c.08.154.115.295.188.455.14.33.313.663.455.982.14.315.275.636.476.897.1.14.502.213.682.286.133.06.34.115.46.188.23.14.454.3.67.454.11.076.443.243.463.378z" }) + ] + } + ); +}); + +export { SiMysql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiN26.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiN26.cjs new file mode 100644 index 000000000..bc17c24bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiN26.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#48AC98"; +const SiN26 = React__namespace.forwardRef(function SiN262({ title = "N26", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.803v1.195h7.436V3.803H0zM12.69 7.29c-2.034 0-3.038 1.252-3.038 2.684 0 .234.027.468.092.728l1.393.135a3.697 3.697 0 0 1-.09-.793c0-1.072.71-1.586 1.598-1.586.866 0 1.507.485 1.507 1.652 0 1.186-.58 1.995-1.464 2.88-.925.923-2.4 2.027-3.112 2.534v1.092h6.135v-1.195h-4.168c.695-.48 1.69-1.279 2.133-1.72.502-.503 1.931-1.794 1.931-3.636 0-1.903-1.24-2.775-2.918-2.775zm8.34 0c-1.976 0-3.454 1.517-3.454 4.916 0 3.017 1.233 4.508 3.356 4.508 1.754 0 3.068-1.198 3.068-3.172 0-1.542-.823-3.066-2.793-3.066-1.1 0-1.884.51-2.281 1.263 0-1.78.62-3.33 2.094-3.33.937 0 1.309.538 1.507 1.422l1.366-.271c-.321-1.527-1.292-2.27-2.864-2.27zM.075 7.389v9.228h1.33v-6.312c0-.56-.013-.898-.039-1.223h.026c.136.372.298.699.539 1.123l3.732 6.412h1.69V7.39H6.04v6.31c0 .56.013.898.04 1.223h-.028a7.252 7.252 0 0 0-.537-1.123L1.783 7.389H.076zm20.817 4.185c1.114 0 1.744.822 1.744 1.992 0 1.256-.717 2.034-1.701 2.034-1.09 0-1.843-1.001-1.973-2.329.33-1.133 1.063-1.697 1.93-1.697zM0 19.008v1.19h7.436v-1.19H0z" }) + ] + } + ); +}); + +exports.default = SiN26; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiN26.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiN26.d.ts new file mode 100644 index 000000000..88432ad12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiN26.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#48AC98"; +declare const SiN26: IconType; +export { SiN26 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiN26.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiN26.mjs new file mode 100644 index 000000000..f90e8e690 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiN26.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#48AC98"; +const SiN26 = React.forwardRef(function SiN262({ title = "N26", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.803v1.195h7.436V3.803H0zM12.69 7.29c-2.034 0-3.038 1.252-3.038 2.684 0 .234.027.468.092.728l1.393.135a3.697 3.697 0 0 1-.09-.793c0-1.072.71-1.586 1.598-1.586.866 0 1.507.485 1.507 1.652 0 1.186-.58 1.995-1.464 2.88-.925.923-2.4 2.027-3.112 2.534v1.092h6.135v-1.195h-4.168c.695-.48 1.69-1.279 2.133-1.72.502-.503 1.931-1.794 1.931-3.636 0-1.903-1.24-2.775-2.918-2.775zm8.34 0c-1.976 0-3.454 1.517-3.454 4.916 0 3.017 1.233 4.508 3.356 4.508 1.754 0 3.068-1.198 3.068-3.172 0-1.542-.823-3.066-2.793-3.066-1.1 0-1.884.51-2.281 1.263 0-1.78.62-3.33 2.094-3.33.937 0 1.309.538 1.507 1.422l1.366-.271c-.321-1.527-1.292-2.27-2.864-2.27zM.075 7.389v9.228h1.33v-6.312c0-.56-.013-.898-.039-1.223h.026c.136.372.298.699.539 1.123l3.732 6.412h1.69V7.39H6.04v6.31c0 .56.013.898.04 1.223h-.028a7.252 7.252 0 0 0-.537-1.123L1.783 7.389H.076zm20.817 4.185c1.114 0 1.744.822 1.744 1.992 0 1.256-.717 2.034-1.701 2.034-1.09 0-1.843-1.001-1.973-2.329.33-1.133 1.063-1.697 1.93-1.697zM0 19.008v1.19h7.436v-1.19H0z" }) + ] + } + ); +}); + +export { SiN26 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.cjs new file mode 100644 index 000000000..4e41e6170 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA4B71"; +const SiN8n = React__namespace.forwardRef(function SiN8n2({ title = "n8n", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.4737 5.6842c-1.1772 0-2.1663.8051-2.4468 1.8947h-2.8955c-1.235 0-2.289.893-2.492 2.111l-.1038.623a1.263 1.263 0 0 1-1.246 1.0555H11.289c-.2805-1.0896-1.2696-1.8947-2.4468-1.8947s-2.1663.8051-2.4467 1.8947H4.973c-.2805-1.0896-1.2696-1.8947-2.4468-1.8947C1.1311 9.4737 0 10.6047 0 12s1.131 2.5263 2.5263 2.5263c1.1772 0 2.1663-.8051 2.4468-1.8947h1.4223c.2804 1.0896 1.2696 1.8947 2.4467 1.8947 1.1772 0 2.1663-.8051 2.4468-1.8947h1.0008a1.263 1.263 0 0 1 1.2459 1.0555l.1038.623c.203 1.218 1.257 2.111 2.492 2.111h.3692c.2804 1.0895 1.2696 1.8947 2.4468 1.8947 1.3952 0 2.5263-1.131 2.5263-2.5263s-1.131-2.5263-2.5263-2.5263c-1.1772 0-2.1664.805-2.4468 1.8947h-.3692a1.263 1.263 0 0 1-1.246-1.0555l-.1037-.623A2.52 2.52 0 0 0 13.9607 12a2.52 2.52 0 0 0 .821-1.4794l.1038-.623a1.263 1.263 0 0 1 1.2459-1.0555h2.8955c.2805 1.0896 1.2696 1.8947 2.4468 1.8947 1.3952 0 2.5263-1.131 2.5263-2.5263s-1.131-2.5263-2.5263-2.5263m0 1.2632a1.263 1.263 0 0 1 1.2631 1.2631 1.263 1.263 0 0 1-1.2631 1.2632 1.263 1.263 0 0 1-1.2632-1.2632 1.263 1.263 0 0 1 1.2632-1.2631M2.5263 10.7368A1.263 1.263 0 0 1 3.7895 12a1.263 1.263 0 0 1-1.2632 1.2632A1.263 1.263 0 0 1 1.2632 12a1.263 1.263 0 0 1 1.2631-1.2632m6.3158 0A1.263 1.263 0 0 1 10.1053 12a1.263 1.263 0 0 1-1.2632 1.2632A1.263 1.263 0 0 1 7.579 12a1.263 1.263 0 0 1 1.2632-1.2632m10.1053 3.7895a1.263 1.263 0 0 1 1.2631 1.2632 1.263 1.263 0 0 1-1.2631 1.2631 1.263 1.263 0 0 1-1.2632-1.2631 1.263 1.263 0 0 1 1.2632-1.2632" }) + ] + } + ); +}); + +exports.default = SiN8n; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.d.ts new file mode 100644 index 000000000..29d49ea8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA4B71"; +declare const SiN8n: IconType; +export { SiN8n as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.mjs new file mode 100644 index 000000000..44d11daa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiN8n.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA4B71"; +const SiN8n = React.forwardRef(function SiN8n2({ title = "n8n", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.4737 5.6842c-1.1772 0-2.1663.8051-2.4468 1.8947h-2.8955c-1.235 0-2.289.893-2.492 2.111l-.1038.623a1.263 1.263 0 0 1-1.246 1.0555H11.289c-.2805-1.0896-1.2696-1.8947-2.4468-1.8947s-2.1663.8051-2.4467 1.8947H4.973c-.2805-1.0896-1.2696-1.8947-2.4468-1.8947C1.1311 9.4737 0 10.6047 0 12s1.131 2.5263 2.5263 2.5263c1.1772 0 2.1663-.8051 2.4468-1.8947h1.4223c.2804 1.0896 1.2696 1.8947 2.4467 1.8947 1.1772 0 2.1663-.8051 2.4468-1.8947h1.0008a1.263 1.263 0 0 1 1.2459 1.0555l.1038.623c.203 1.218 1.257 2.111 2.492 2.111h.3692c.2804 1.0895 1.2696 1.8947 2.4468 1.8947 1.3952 0 2.5263-1.131 2.5263-2.5263s-1.131-2.5263-2.5263-2.5263c-1.1772 0-2.1664.805-2.4468 1.8947h-.3692a1.263 1.263 0 0 1-1.246-1.0555l-.1037-.623A2.52 2.52 0 0 0 13.9607 12a2.52 2.52 0 0 0 .821-1.4794l.1038-.623a1.263 1.263 0 0 1 1.2459-1.0555h2.8955c.2805 1.0896 1.2696 1.8947 2.4468 1.8947 1.3952 0 2.5263-1.131 2.5263-2.5263s-1.131-2.5263-2.5263-2.5263m0 1.2632a1.263 1.263 0 0 1 1.2631 1.2631 1.263 1.263 0 0 1-1.2631 1.2632 1.263 1.263 0 0 1-1.2632-1.2632 1.263 1.263 0 0 1 1.2632-1.2631M2.5263 10.7368A1.263 1.263 0 0 1 3.7895 12a1.263 1.263 0 0 1-1.2632 1.2632A1.263 1.263 0 0 1 1.2632 12a1.263 1.263 0 0 1 1.2631-1.2632m6.3158 0A1.263 1.263 0 0 1 10.1053 12a1.263 1.263 0 0 1-1.2632 1.2632A1.263 1.263 0 0 1 7.579 12a1.263 1.263 0 0 1 1.2632-1.2632m10.1053 3.7895a1.263 1.263 0 0 1 1.2631 1.2632 1.263 1.263 0 0 1-1.2631 1.2631 1.263 1.263 0 0 1-1.2632-1.2631 1.263 1.263 0 0 1 1.2632-1.2632" }) + ] + } + ); +}); + +export { SiN8n as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.cjs new file mode 100644 index 000000000..43ee05006 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0068FF"; +const SiNamebase = React__namespace.forwardRef(function SiNamebase2({ title = "Namebase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.0978 2.406c0 1.3288-1.0516 2.406-2.3488 2.406s-2.3487-1.0772-2.3487-2.406S19.4519 0 20.7491 0s2.3487 1.0772 2.3487 2.406zm-11.5089.5415C5.6868 2.9475.9022 7.8488.9022 13.8948V24h6.5764V13.8948c0-2.3254 1.8403-4.2105 4.1103-4.2105s4.1103 1.8851 4.1103 4.2105V24h6.5764V13.8948c0-6.046-4.7846-10.9473-10.6867-10.9473z" }) + ] + } + ); +}); + +exports.default = SiNamebase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.d.ts new file mode 100644 index 000000000..e98724b7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0068FF"; +declare const SiNamebase: IconType; +export { SiNamebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.mjs new file mode 100644 index 000000000..e7af7731b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamebase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0068FF"; +const SiNamebase = React.forwardRef(function SiNamebase2({ title = "Namebase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.0978 2.406c0 1.3288-1.0516 2.406-2.3488 2.406s-2.3487-1.0772-2.3487-2.406S19.4519 0 20.7491 0s2.3487 1.0772 2.3487 2.406zm-11.5089.5415C5.6868 2.9475.9022 7.8488.9022 13.8948V24h6.5764V13.8948c0-2.3254 1.8403-4.2105 4.1103-4.2105s4.1103 1.8851 4.1103 4.2105V24h6.5764V13.8948c0-6.046-4.7846-10.9473-10.6867-10.9473z" }) + ] + } + ); +}); + +export { SiNamebase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.cjs new file mode 100644 index 000000000..f18a8aef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DE3723"; +const SiNamecheap = React__namespace.forwardRef(function SiNamecheap2({ title = "Namecheap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.295 17.484c.227.403.57.728.985.931-.309.15-.647.229-.99.232h-3.068a2.26 2.26 0 0 1-1.957-1.143L6.705 6.511a2.27 2.27 0 0 0-.974-.922c.309-.153.652-.233.997-.232h3.05c.81.003 1.558.438 1.959 1.143l5.558 10.984zm-9.329-7.392L6.269 6.755c-.209-.392-.582-.657-.984-.829-.204.165-.391.35-.522.581-.184.349-4.391 8.648-4.569 8.987a2.245 2.245 0 0 0 4.016 1.999l3.756-7.401zm15.846-1.593a2.245 2.245 0 0 0-1.162-2.955v-.001a2.243 2.243 0 0 0-.892-.187l-.003-.011c-.816 0-1.569.443-1.965 1.157l-3.749 7.414 1.689 3.323c.213.399.59.664.998.839.252-.2.473-.444.605-.742l4.479-8.837z" }) + ] + } + ); +}); + +exports.default = SiNamecheap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.d.ts new file mode 100644 index 000000000..1b0d4bdbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DE3723"; +declare const SiNamecheap: IconType; +export { SiNamecheap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.mjs new file mode 100644 index 000000000..395c655c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamecheap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DE3723"; +const SiNamecheap = React.forwardRef(function SiNamecheap2({ title = "Namecheap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.295 17.484c.227.403.57.728.985.931-.309.15-.647.229-.99.232h-3.068a2.26 2.26 0 0 1-1.957-1.143L6.705 6.511a2.27 2.27 0 0 0-.974-.922c.309-.153.652-.233.997-.232h3.05c.81.003 1.558.438 1.959 1.143l5.558 10.984zm-9.329-7.392L6.269 6.755c-.209-.392-.582-.657-.984-.829-.204.165-.391.35-.522.581-.184.349-4.391 8.648-4.569 8.987a2.245 2.245 0 0 0 4.016 1.999l3.756-7.401zm15.846-1.593a2.245 2.245 0 0 0-1.162-2.955v-.001a2.243 2.243 0 0 0-.892-.187l-.003-.011c-.816 0-1.569.443-1.965 1.157l-3.749 7.414 1.689 3.323c.213.399.59.664.998.839.252-.2.473-.444.605-.742l4.479-8.837z" }) + ] + } + ); +}); + +export { SiNamecheap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.cjs new file mode 100644 index 000000000..0d3b7d198 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#12161A"; +const SiNamemc = React__namespace.forwardRef(function SiNamemc2({ title = "NameMC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm4.8 4.8H16V8h3.2v11.2H16V8H8v11.2H4.8V8Z" }) + ] + } + ); +}); + +exports.default = SiNamemc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.d.ts new file mode 100644 index 000000000..80fc069b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#12161A"; +declare const SiNamemc: IconType; +export { SiNamemc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.mjs new file mode 100644 index 000000000..ccdd0f3f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamemc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#12161A"; +const SiNamemc = React.forwardRef(function SiNamemc2({ title = "NameMC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm4.8 4.8H16V8h3.2v11.2H16V8H8v11.2H4.8V8Z" }) + ] + } + ); +}); + +export { SiNamemc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.cjs new file mode 100644 index 000000000..153216a9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#031B4E"; +const SiNamesilo = React__namespace.forwardRef(function SiNamesilo2({ title = "NameSilo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.65 0A4.65 4.65 0 0 0 0 4.65v14.7A4.65 4.65 0 0 0 4.65 24h14.7A4.65 4.65 0 0 0 24 19.35V4.65A4.65 4.65 0 0 0 19.35 0Zm7.21 4.2 4.64 3.048V8.86h-.006c-.124.4-2.156.718-4.644.718S7.33 9.26 7.206 8.86H7.2V7.248ZM7.2 9.384c0 .5 2.082.906 4.65.906 2.568 0 4.65-.406 4.65-.906v2.587c0 .5-2.082.905-4.65.905-2.568 0-4.65-.405-4.65-.905zm0 3.3c0 .5 2.082.906 4.65.906 2.568 0 4.65-.405 4.65-.905v2.586c0 .5-2.082.906-4.65.906-2.568 0-4.65-.406-4.65-.906zm0 3.301c0 .5 2.082.906 4.65.906 2.568 0 4.65-.406 4.65-.906v2.587c0 .5-2.082.906-4.65.906-2.568 0-4.65-.406-4.65-.906z" }) + ] + } + ); +}); + +exports.default = SiNamesilo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.d.ts new file mode 100644 index 000000000..4f319e66c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#031B4E"; +declare const SiNamesilo: IconType; +export { SiNamesilo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.mjs new file mode 100644 index 000000000..74793b5d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamesilo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#031B4E"; +const SiNamesilo = React.forwardRef(function SiNamesilo2({ title = "NameSilo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.65 0A4.65 4.65 0 0 0 0 4.65v14.7A4.65 4.65 0 0 0 4.65 24h14.7A4.65 4.65 0 0 0 24 19.35V4.65A4.65 4.65 0 0 0 19.35 0Zm7.21 4.2 4.64 3.048V8.86h-.006c-.124.4-2.156.718-4.644.718S7.33 9.26 7.206 8.86H7.2V7.248ZM7.2 9.384c0 .5 2.082.906 4.65.906 2.568 0 4.65-.406 4.65-.906v2.587c0 .5-2.082.905-4.65.905-2.568 0-4.65-.405-4.65-.905zm0 3.3c0 .5 2.082.906 4.65.906 2.568 0 4.65-.405 4.65-.905v2.586c0 .5-2.082.906-4.65.906-2.568 0-4.65-.406-4.65-.906zm0 3.301c0 .5 2.082.906 4.65.906 2.568 0 4.65-.406 4.65-.906v2.587c0 .5-2.082.906-4.65.906-2.568 0-4.65-.406-4.65-.906z" }) + ] + } + ); +}); + +export { SiNamesilo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.cjs new file mode 100644 index 000000000..85c3522c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008275"; +const SiNamuwiki = React__namespace.forwardRef(function SiNamuwiki2({ title = "Namu Wiki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3724 0 0 5.372 0 12c0 6.6278 5.3723 12 12 12 6.6278 0 12-5.3722 12-12 0-6.628-5.3722-12-12-12zM6.4902 5.9219c1.1467-.0082 2.0869.918 2.0957 2.0644.005.6836-.324 1.2912-.832 1.6739l1.7871 4.2207 2.959-1.252-.3848-.9082c-.0923.013-.1852.0228-.2812.0234-1.1466.0088-2.0868-.9182-2.0957-2.0644-.0087-1.1472.9177-2.085 2.0644-2.0938 1.1466-.0081 2.087.9168 2.0957 2.0625.0048.655-.2955 1.2423-.7675 1.627l1.125 2.6562 3.5293-1.496a2.0834 2.0834 0 0 1-.045-.4122c-.0085-1.147.9178-2.0868 2.0645-2.0957 1.1465-.0088 2.0851.9163 2.0937 2.0625.0085 1.1473-.9162 2.0879-2.0625 2.0957-.6053.0044-1.1519-.2535-1.5351-.664l-3.6133 1.5293.496 1.1738a.5542.5542 0 0 1-.2929.7266.5546.5546 0 0 1-.7265-.295l-1.2305-2.9082-4.8828 2.0664c.0112.0845.0189.1702.0195.2559.0085 1.147-.9178 2.0863-2.0644 2.0957-1.146.0081-2.0875-.9174-2.0957-2.0644-.0088-1.1465.9176-2.0861 2.0644-2.0957.6647-.005 1.258.3045 1.6426.789l.9043-.3828-1.7969-4.2441a1.9538 1.9538 0 0 1-.2012.0117c-1.1467.0092-2.087-.916-2.0957-2.0625-.0087-1.1462.9159-2.087 2.0625-2.0957zM6.5 7.1406c-.4749.0036-.8573.3933-.8535.8672.0035.475.3925.8572.8672.8535.474-.0031.8573-.3927.8535-.8672-.0037-.4745-.393-.8574-.8672-.8535zm5.3125 1.6621c-.4749.0043-.859.3928-.8555.8672.0033.4745.3932.8571.8672.8535.4749-.0034.859-.3908.8555-.8652-.0035-.4739-.393-.8585-.8672-.8555zm7.957 2.3438c-.4537.0267-.8137.4075-.8105.8672.0034.4743.3924.8565.8672.8535.474-.0036.8565-.3922.8535-.8672-.0044-.474-.393-.8567-.8672-.8535-.0148.0001-.0283-.0009-.043 0zM5.9844 15.125c-.4749.0049-.8576.393-.8535.8672a.8613.8613 0 0 0 .8652.8555c.4739-.0036.8568-.3935.8535-.8672-.0036-.474-.3911-.8586-.8652-.8555z" }) + ] + } + ); +}); + +exports.default = SiNamuwiki; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.d.ts new file mode 100644 index 000000000..2b660be14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008275"; +declare const SiNamuwiki: IconType; +export { SiNamuwiki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.mjs new file mode 100644 index 000000000..e6167f41c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNamuwiki.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008275"; +const SiNamuwiki = React.forwardRef(function SiNamuwiki2({ title = "Namu Wiki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3724 0 0 5.372 0 12c0 6.6278 5.3723 12 12 12 6.6278 0 12-5.3722 12-12 0-6.628-5.3722-12-12-12zM6.4902 5.9219c1.1467-.0082 2.0869.918 2.0957 2.0644.005.6836-.324 1.2912-.832 1.6739l1.7871 4.2207 2.959-1.252-.3848-.9082c-.0923.013-.1852.0228-.2812.0234-1.1466.0088-2.0868-.9182-2.0957-2.0644-.0087-1.1472.9177-2.085 2.0644-2.0938 1.1466-.0081 2.087.9168 2.0957 2.0625.0048.655-.2955 1.2423-.7675 1.627l1.125 2.6562 3.5293-1.496a2.0834 2.0834 0 0 1-.045-.4122c-.0085-1.147.9178-2.0868 2.0645-2.0957 1.1465-.0088 2.0851.9163 2.0937 2.0625.0085 1.1473-.9162 2.0879-2.0625 2.0957-.6053.0044-1.1519-.2535-1.5351-.664l-3.6133 1.5293.496 1.1738a.5542.5542 0 0 1-.2929.7266.5546.5546 0 0 1-.7265-.295l-1.2305-2.9082-4.8828 2.0664c.0112.0845.0189.1702.0195.2559.0085 1.147-.9178 2.0863-2.0644 2.0957-1.146.0081-2.0875-.9174-2.0957-2.0644-.0088-1.1465.9176-2.0861 2.0644-2.0957.6647-.005 1.258.3045 1.6426.789l.9043-.3828-1.7969-4.2441a1.9538 1.9538 0 0 1-.2012.0117c-1.1467.0092-2.087-.916-2.0957-2.0625-.0087-1.1462.9159-2.087 2.0625-2.0957zM6.5 7.1406c-.4749.0036-.8573.3933-.8535.8672.0035.475.3925.8572.8672.8535.474-.0031.8573-.3927.8535-.8672-.0037-.4745-.393-.8574-.8672-.8535zm5.3125 1.6621c-.4749.0043-.859.3928-.8555.8672.0033.4745.3932.8571.8672.8535.4749-.0034.859-.3908.8555-.8652-.0035-.4739-.393-.8585-.8672-.8555zm7.957 2.3438c-.4537.0267-.8137.4075-.8105.8672.0034.4743.3924.8565.8672.8535.474-.0036.8565-.3922.8535-.8672-.0044-.474-.393-.8567-.8672-.8535-.0148.0001-.0283-.0009-.043 0zM5.9844 15.125c-.4749.0049-.8576.393-.8535.8672a.8613.8613 0 0 0 .8652.8555c.4739-.0036.8568-.3935.8535-.8672-.0036-.474-.3911-.8586-.8652-.8555z" }) + ] + } + ); +}); + +export { SiNamuwiki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNano.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNano.cjs new file mode 100644 index 000000000..c6af2da9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNano.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#209CE9"; +const SiNano = React__namespace.forwardRef(function SiNano2({ title = "Nano", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.723 0 6.875 10.76H4.775v1.365h5.881l-1.76 2.73h-4.12v1.364h3.242L3.006 24h1.85l5.068-7.781h4.215L19.129 24h1.865l-4.941-7.781h3.232v-1.364h-4.1l-1.732-2.73h5.832V10.76h-5.803L20.45 0h-1.785l-6.588 10.107L5.627 0H3.723zm8.324 12.959 1.217 1.896h-2.451l1.234-1.896z" }) + ] + } + ); +}); + +exports.default = SiNano; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNano.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNano.d.ts new file mode 100644 index 000000000..54922fe0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNano.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#209CE9"; +declare const SiNano: IconType; +export { SiNano as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNano.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNano.mjs new file mode 100644 index 000000000..84c8ee460 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNano.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#209CE9"; +const SiNano = React.forwardRef(function SiNano2({ title = "Nano", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.723 0 6.875 10.76H4.775v1.365h5.881l-1.76 2.73h-4.12v1.364h3.242L3.006 24h1.85l5.068-7.781h4.215L19.129 24h1.865l-4.941-7.781h3.232v-1.364h-4.1l-1.732-2.73h5.832V10.76h-5.803L20.45 0h-1.785l-6.588 10.107L5.627 0H3.723zm8.324 12.959 1.217 1.896h-2.451l1.234-1.896z" }) + ] + } + ); +}); + +export { SiNano as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.cjs new file mode 100644 index 000000000..659f518ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNanostores = React__namespace.forwardRef(function SiNanostores2({ title = "Nano Stores", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.708 24 .6 14.822l7.679-2.995 11.235 7.867L13.708 24ZM10.292 0 23.4 9.178l-7.679 2.995L4.486 4.306 10.292 0Z" }) + ] + } + ); +}); + +exports.default = SiNanostores; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.d.ts new file mode 100644 index 000000000..fb89293e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNanostores: IconType; +export { SiNanostores as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.mjs new file mode 100644 index 000000000..da7da4f33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNanostores.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNanostores = React.forwardRef(function SiNanostores2({ title = "Nano Stores", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.708 24 .6 14.822l7.679-2.995 11.235 7.867L13.708 24ZM10.292 0 23.4 9.178l-7.679 2.995L4.486 4.306 10.292 0Z" }) + ] + } + ); +}); + +export { SiNanostores as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.cjs new file mode 100644 index 000000000..30ed617a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2259FF"; +const SiNapster = React__namespace.forwardRef(function SiNapster2({ title = "Napster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.495 4.543c-.22 0-.438 0-.657.03h-.031l-.032-.03C17.93 2.21 15.02.798 12.015.798c-3.004 0-5.945 1.412-7.76 3.775l-.031.03h-.031c-.22-.03-.439-.03-.658-.03H2.16v2.394l-.032.03A3.628 3.628 0 0 0 0 10.282c0 1.412.844 2.701 2.127 3.284h.063v.062c.031 5.278 4.443 9.575 9.825 9.575s9.794-4.297 9.825-9.575v-.062l.032-.03C23.155 12.92 24 11.632 24 10.25c0-1.412-.845-2.7-2.128-3.284l-.032-.03V4.542zM6.821 5.34a7.443 7.443 0 0 1 5.194-2.117c1.94 0 3.818.767 5.195 2.117l.062.062-.094.061c-.375.215-.72.43-1.064.675l-.03.031-.032-.03c-.908-.461-2.347-.983-4.005-.983s-3.098.522-4.006.982l-.03.031-.032-.03a10.22 10.22 0 0 0-1.064-.676l-.188-.061zm12.329 8.195c0 3.866-3.223 7.027-7.166 7.027-3.942 0-7.134-3.16-7.134-7.027V7.458l.094.03c1.252.308 2.44 1.658 2.722 1.996.313-.338 1.784-1.658 4.35-1.658 2.565 0 4.036 1.35 4.35 1.658.28-.338 1.438-1.688 2.721-1.995l.094-.031v6.077z" }) + ] + } + ); +}); + +exports.default = SiNapster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.d.ts new file mode 100644 index 000000000..eee75bc69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2259FF"; +declare const SiNapster: IconType; +export { SiNapster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.mjs new file mode 100644 index 000000000..26e22e8a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNapster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2259FF"; +const SiNapster = React.forwardRef(function SiNapster2({ title = "Napster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.495 4.543c-.22 0-.438 0-.657.03h-.031l-.032-.03C17.93 2.21 15.02.798 12.015.798c-3.004 0-5.945 1.412-7.76 3.775l-.031.03h-.031c-.22-.03-.439-.03-.658-.03H2.16v2.394l-.032.03A3.628 3.628 0 0 0 0 10.282c0 1.412.844 2.701 2.127 3.284h.063v.062c.031 5.278 4.443 9.575 9.825 9.575s9.794-4.297 9.825-9.575v-.062l.032-.03C23.155 12.92 24 11.632 24 10.25c0-1.412-.845-2.7-2.128-3.284l-.032-.03V4.542zM6.821 5.34a7.443 7.443 0 0 1 5.194-2.117c1.94 0 3.818.767 5.195 2.117l.062.062-.094.061c-.375.215-.72.43-1.064.675l-.03.031-.032-.03c-.908-.461-2.347-.983-4.005-.983s-3.098.522-4.006.982l-.03.031-.032-.03a10.22 10.22 0 0 0-1.064-.676l-.188-.061zm12.329 8.195c0 3.866-3.223 7.027-7.166 7.027-3.942 0-7.134-3.16-7.134-7.027V7.458l.094.03c1.252.308 2.44 1.658 2.722 1.996.313-.338 1.784-1.658 4.35-1.658 2.565 0 4.036 1.35 4.35 1.658.28-.338 1.438-1.688 2.721-1.995l.094-.031v6.077z" }) + ] + } + ); +}); + +export { SiNapster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.cjs new file mode 100644 index 000000000..ea7273947 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E03C31"; +const SiNasa = React__namespace.forwardRef(function SiNasa2({ title = "NASA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.344 13.598c.075.281.195.39.407.39.22 0 .335-.132.335-.39V8.804h1.379v4.794c0 .675-.088.968-.43 1.31-.247.248-.703.439-1.278.439-.464 0-.909-.154-1.192-.438-.249-.25-.386-.505-.599-1.311l-.846-3.196c-.074-.281-.194-.39-.406-.39-.22 0-.336.132-.336.39v4.794H0v-4.794c0-.675.088-.968.43-1.31.247-.248.703-.439 1.278-.439.464 0 .909.154 1.192.438.249.25.385.505.599 1.311zM22.575 15.196l-1.591-4.98a.415.415 0 00-.06-.132.226.226 0 00-.186-.082.226.226 0 00-.185.082.414.414 0 00-.06.132l-1.591 4.98h-1.425l1.739-5.44c.09-.283.22-.524.384-.684.282-.275.614-.419 1.138-.419.525 0 .857.144 1.139.42.164.16.294.4.384.683L24 15.196h-1.425zM15.531 15.196c.903 0 1.344-.192 1.692-.538.385-.383.569-.802.569-1.427 0-.553-.202-1.064-.51-1.37-.403-.4-.903-.527-1.719-.527h-1.142c-.436 0-.61-.053-.748-.188-.094-.093-.139-.23-.139-.393 0-.168.04-.334.156-.448.103-.1.243-.147.511-.147h3.301V8.804h-3.049c-.903 0-1.343.192-1.691.538-.385.383-.57.802-.57 1.427 0 .553.203 1.064.51 1.37.404.4.904.527 1.72.527h1.141c.437 0 .61.053.748.188.095.093.14.23.14.393 0 .169-.041.335-.157.448-.102.1-.242.147-.51.147h-3.405l-1.306-4.086c-.09-.283-.22-.524-.384-.684-.282-.275-.615-.419-1.139-.419s-.857.144-1.138.42c-.165.16-.294.4-.385.683l-1.738 5.44h1.424l1.592-4.98a.415.415 0 01.06-.132.226.226 0 01.185-.082c.082 0 .142.028.186.082a.413.413 0 01.06.132l1.591 4.98h4.144z" }) + ] + } + ); +}); + +exports.default = SiNasa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.d.ts new file mode 100644 index 000000000..41f189f65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E03C31"; +declare const SiNasa: IconType; +export { SiNasa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.mjs new file mode 100644 index 000000000..4a7226aea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNasa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E03C31"; +const SiNasa = React.forwardRef(function SiNasa2({ title = "NASA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.344 13.598c.075.281.195.39.407.39.22 0 .335-.132.335-.39V8.804h1.379v4.794c0 .675-.088.968-.43 1.31-.247.248-.703.439-1.278.439-.464 0-.909-.154-1.192-.438-.249-.25-.386-.505-.599-1.311l-.846-3.196c-.074-.281-.194-.39-.406-.39-.22 0-.336.132-.336.39v4.794H0v-4.794c0-.675.088-.968.43-1.31.247-.248.703-.439 1.278-.439.464 0 .909.154 1.192.438.249.25.385.505.599 1.311zM22.575 15.196l-1.591-4.98a.415.415 0 00-.06-.132.226.226 0 00-.186-.082.226.226 0 00-.185.082.414.414 0 00-.06.132l-1.591 4.98h-1.425l1.739-5.44c.09-.283.22-.524.384-.684.282-.275.614-.419 1.138-.419.525 0 .857.144 1.139.42.164.16.294.4.384.683L24 15.196h-1.425zM15.531 15.196c.903 0 1.344-.192 1.692-.538.385-.383.569-.802.569-1.427 0-.553-.202-1.064-.51-1.37-.403-.4-.903-.527-1.719-.527h-1.142c-.436 0-.61-.053-.748-.188-.094-.093-.139-.23-.139-.393 0-.168.04-.334.156-.448.103-.1.243-.147.511-.147h3.301V8.804h-3.049c-.903 0-1.343.192-1.691.538-.385.383-.57.802-.57 1.427 0 .553.203 1.064.51 1.37.404.4.904.527 1.72.527h1.141c.437 0 .61.053.748.188.095.093.14.23.14.393 0 .169-.041.335-.157.448-.102.1-.242.147-.51.147h-3.405l-1.306-4.086c-.09-.283-.22-.524-.384-.684-.282-.275-.615-.419-1.139-.419s-.857.144-1.138.42c-.165.16-.294.4-.385.683l-1.738 5.44h1.424l1.592-4.98a.415.415 0 01.06-.132.226.226 0 01.185-.082c.082 0 .142.028.186.082a.413.413 0 01.06.132l1.591 4.98h4.144z" }) + ] + } + ); +}); + +export { SiNasa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.cjs new file mode 100644 index 000000000..1205bec23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00148C"; +const SiNationalgrid = React__namespace.forwardRef(function SiNationalgrid2({ title = "National Grid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 11.06h.292v.415h.01c.106-.289.426-.485.764-.485.673 0 .877.355.877.928v1.547H1.65v-1.5c0-.415-.135-.728-.608-.728-.464 0-.742.355-.75.825v1.403H0zm2.467.736c.027-.563.422-.806.969-.806.422 0 .88.13.88.774v1.277c0 .112.056.177.172.177.033 0 .07-.01.093-.019v.247a.8.8 0 01-.19.019c-.297 0-.343-.168-.343-.42h-.01c-.204.313-.412.49-.871.49-.44 0-.803-.22-.803-.704 0-.676.655-.699 1.285-.773.241-.028.375-.061.375-.327 0-.396-.282-.494-.625-.494-.362 0-.63.168-.64.56zm1.557.355h-.008c-.038.07-.168.093-.246.107-.497.088-1.113.084-1.113.554 0 .294.26.476.533.476.445 0 .84-.285.834-.755zm1.443-1.091h.487v.247h-.487v1.622c0 .19.028.302.236.317.084 0 .167-.005.25-.015v.252c-.088 0-.171.01-.26.01-.388 0-.523-.13-.518-.541v-1.645h-.418v-.247h.418v-.722h.292zm1.308 2.405V11.06h-.293v2.405zm0-2.857v-.47h-.293v.47zm2.702 1.655c0 .69-.398 1.272-1.13 1.272-.734 0-1.132-.583-1.132-1.272 0-.69.398-1.273 1.131-1.273s1.131.583 1.131 1.273m-1.97 0c0 .512.278 1.025.84 1.025.56 0 .838-.513.838-1.025 0-.513-.278-1.026-.839-1.026-.56 0-.839.513-.839 1.026m2.401-1.203h.293v.415h.01c.106-.289.425-.485.764-.485.673 0 .877.355.877.928v1.547h-.292v-1.5c0-.415-.135-.728-.608-.728-.464 0-.742.355-.751.825v1.403h-.293zm2.467.736c.029-.563.422-.806.97-.806.421 0 .88.13.88.774v1.277c0 .112.056.177.172.177a.27.27 0 00.093-.019v.247a.804.804 0 01-.19.019c-.298 0-.344-.168-.344-.42h-.009c-.204.313-.412.49-.872.49-.44 0-.802-.22-.802-.704 0-.676.654-.699 1.285-.773.24-.028.375-.061.375-.327 0-.396-.283-.494-.626-.494-.361 0-.63.168-.64.56zm1.558.355h-.01c-.036.07-.166.093-.245.107-.496.088-1.113.084-1.113.554 0 .294.26.476.534.476.445 0 .839-.285.834-.755zm1.33 1.314v-3.328h-.291v3.328zm2.839-2.48v2.35c0 .428-.033 1.141-1.248 1.141-.51 0-1.047-.219-1.075-.746h.704c.028.126.08.252.455.252.347 0 .514-.168.514-.569v-.298l-.009-.009c-.106.191-.269.373-.658.373-.593 0-1.062-.415-1.062-1.282 0-.857.482-1.277 1.024-1.277.46 0 .645.27.724.434h.01v-.368zm-1.197 1.944c.441 0 .552-.378.552-.718 0-.4-.195-.727-.557-.727-.24 0-.51.178-.51.755 0 .317.13.69.515.69zm1.753-1.943h.62v.429h.01c.135-.252.283-.495.678-.495.041 0 .083.005.125.01v.661c-.056-.009-.125-.009-.186-.009-.505 0-.598.317-.598.592v1.29h-.649zm2.526 2.478v-2.495h-.648v2.495zm-.802-3.461l.477.479.477-.48-.477-.478zM24 13.465h-.635v-.312h-.01c-.157.28-.444.377-.713.377-.732 0-1.039-.652-1.039-1.333 0-.857.482-1.277 1.025-1.277a.79.79 0 01.714.387h.009V10.12H24zm-1.196-.47c.413 0 .575-.346.575-.714 0-.396-.111-.797-.556-.797-.413 0-.552.369-.552.76 0 .294.115.75.533.75z" }) + ] + } + ); +}); + +exports.default = SiNationalgrid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.d.ts new file mode 100644 index 000000000..70197a8a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00148C"; +declare const SiNationalgrid: IconType; +export { SiNationalgrid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.mjs new file mode 100644 index 000000000..8459d893c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalgrid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00148C"; +const SiNationalgrid = React.forwardRef(function SiNationalgrid2({ title = "National Grid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 11.06h.292v.415h.01c.106-.289.426-.485.764-.485.673 0 .877.355.877.928v1.547H1.65v-1.5c0-.415-.135-.728-.608-.728-.464 0-.742.355-.75.825v1.403H0zm2.467.736c.027-.563.422-.806.969-.806.422 0 .88.13.88.774v1.277c0 .112.056.177.172.177.033 0 .07-.01.093-.019v.247a.8.8 0 01-.19.019c-.297 0-.343-.168-.343-.42h-.01c-.204.313-.412.49-.871.49-.44 0-.803-.22-.803-.704 0-.676.655-.699 1.285-.773.241-.028.375-.061.375-.327 0-.396-.282-.494-.625-.494-.362 0-.63.168-.64.56zm1.557.355h-.008c-.038.07-.168.093-.246.107-.497.088-1.113.084-1.113.554 0 .294.26.476.533.476.445 0 .84-.285.834-.755zm1.443-1.091h.487v.247h-.487v1.622c0 .19.028.302.236.317.084 0 .167-.005.25-.015v.252c-.088 0-.171.01-.26.01-.388 0-.523-.13-.518-.541v-1.645h-.418v-.247h.418v-.722h.292zm1.308 2.405V11.06h-.293v2.405zm0-2.857v-.47h-.293v.47zm2.702 1.655c0 .69-.398 1.272-1.13 1.272-.734 0-1.132-.583-1.132-1.272 0-.69.398-1.273 1.131-1.273s1.131.583 1.131 1.273m-1.97 0c0 .512.278 1.025.84 1.025.56 0 .838-.513.838-1.025 0-.513-.278-1.026-.839-1.026-.56 0-.839.513-.839 1.026m2.401-1.203h.293v.415h.01c.106-.289.425-.485.764-.485.673 0 .877.355.877.928v1.547h-.292v-1.5c0-.415-.135-.728-.608-.728-.464 0-.742.355-.751.825v1.403h-.293zm2.467.736c.029-.563.422-.806.97-.806.421 0 .88.13.88.774v1.277c0 .112.056.177.172.177a.27.27 0 00.093-.019v.247a.804.804 0 01-.19.019c-.298 0-.344-.168-.344-.42h-.009c-.204.313-.412.49-.872.49-.44 0-.802-.22-.802-.704 0-.676.654-.699 1.285-.773.24-.028.375-.061.375-.327 0-.396-.283-.494-.626-.494-.361 0-.63.168-.64.56zm1.558.355h-.01c-.036.07-.166.093-.245.107-.496.088-1.113.084-1.113.554 0 .294.26.476.534.476.445 0 .839-.285.834-.755zm1.33 1.314v-3.328h-.291v3.328zm2.839-2.48v2.35c0 .428-.033 1.141-1.248 1.141-.51 0-1.047-.219-1.075-.746h.704c.028.126.08.252.455.252.347 0 .514-.168.514-.569v-.298l-.009-.009c-.106.191-.269.373-.658.373-.593 0-1.062-.415-1.062-1.282 0-.857.482-1.277 1.024-1.277.46 0 .645.27.724.434h.01v-.368zm-1.197 1.944c.441 0 .552-.378.552-.718 0-.4-.195-.727-.557-.727-.24 0-.51.178-.51.755 0 .317.13.69.515.69zm1.753-1.943h.62v.429h.01c.135-.252.283-.495.678-.495.041 0 .083.005.125.01v.661c-.056-.009-.125-.009-.186-.009-.505 0-.598.317-.598.592v1.29h-.649zm2.526 2.478v-2.495h-.648v2.495zm-.802-3.461l.477.479.477-.48-.477-.478zM24 13.465h-.635v-.312h-.01c-.157.28-.444.377-.713.377-.732 0-1.039-.652-1.039-1.333 0-.857.482-1.277 1.025-1.277a.79.79 0 01.714.387h.009V10.12H24zm-1.196-.47c.413 0 .575-.346.575-.714 0-.396-.111-.797-.556-.797-.413 0-.552.369-.552.76 0 .294.115.75.533.75z" }) + ] + } + ); +}); + +export { SiNationalgrid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.cjs new file mode 100644 index 000000000..22a9411b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003366"; +const SiNationalrail = React__namespace.forwardRef(function SiNationalrail2({ title = "National Rail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12C0 5.373 5.372 0 12 0c6.627 0 11.999 5.373 11.999 12 0 6.628-5.372 12-11.999 12-6.628 0-12-5.372-12-12Zm6.195-5.842 6.076 2.794H2.835v1.884h9.499l-4.616 2.246H2.835v1.868h4.883l5.778 2.795h4.333l-6.092-2.795h9.469v-1.868h-9.453l4.616-2.246h4.837V8.952h-4.868l-5.777-2.794H6.195" }) + ] + } + ); +}); + +exports.default = SiNationalrail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.d.ts new file mode 100644 index 000000000..544d52625 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003366"; +declare const SiNationalrail: IconType; +export { SiNationalrail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.mjs new file mode 100644 index 000000000..a976ff3ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNationalrail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003366"; +const SiNationalrail = React.forwardRef(function SiNationalrail2({ title = "National Rail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12C0 5.373 5.372 0 12 0c6.627 0 11.999 5.373 11.999 12 0 6.628-5.372 12-11.999 12-6.628 0-12-5.372-12-12Zm6.195-5.842 6.076 2.794H2.835v1.884h9.499l-4.616 2.246H2.835v1.868h4.883l5.778 2.795h4.333l-6.092-2.795h9.469v-1.868h-9.453l4.616-2.246h4.837V8.952h-4.868l-5.777-2.794H6.195" }) + ] + } + ); +}); + +export { SiNationalrail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.cjs new file mode 100644 index 000000000..9f7d45366 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#65ADF1"; +const SiNativescript = React__namespace.forwardRef(function SiNativescript2({ title = "NativeScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.77 1.76A5.68 5.68 0 0 1 5.8 0h12.6c1.37 0 2.65.6 3.83 1.76A5.43 5.43 0 0 1 24 5.7v12.77c0 1.34-.56 2.58-1.68 3.73A5.77 5.77 0 0 1 18.25 24H5.87a6.3 6.3 0 0 1-4.1-1.57C.69 21.45.1 20.03 0 18.13V5.73a5.21 5.21 0 0 1 1.77-3.97zm6.25 8.3l7.93 10.06h2.12c.49-.06.88-.2 1.17-.43.3-.23.5-.56.64-1v-4.94c.08-.95.67-1.54 1.77-1.75-1.1-.4-1.69-1.02-1.77-1.86V5.42c-.12-.44-.33-.8-.64-1.07a1.83 1.83 0 0 0-1.09-.47H16v10.2L8.02 3.87H5.79c-.56.1-.97.3-1.25.6S4.08 5.25 4 5.9v4.85c-.35.69-.9 1.1-1.65 1.25.85.16 1.4.61 1.65 1.36v4.77c.02.55.2 1 .54 1.37.33.36.7.53 1.1.5H8l.02-9.94z" }) + ] + } + ); +}); + +exports.default = SiNativescript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.d.ts new file mode 100644 index 000000000..1fe71fda2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#65ADF1"; +declare const SiNativescript: IconType; +export { SiNativescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.mjs new file mode 100644 index 000000000..ba6c9e7ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNativescript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#65ADF1"; +const SiNativescript = React.forwardRef(function SiNativescript2({ title = "NativeScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.77 1.76A5.68 5.68 0 0 1 5.8 0h12.6c1.37 0 2.65.6 3.83 1.76A5.43 5.43 0 0 1 24 5.7v12.77c0 1.34-.56 2.58-1.68 3.73A5.77 5.77 0 0 1 18.25 24H5.87a6.3 6.3 0 0 1-4.1-1.57C.69 21.45.1 20.03 0 18.13V5.73a5.21 5.21 0 0 1 1.77-3.97zm6.25 8.3l7.93 10.06h2.12c.49-.06.88-.2 1.17-.43.3-.23.5-.56.64-1v-4.94c.08-.95.67-1.54 1.77-1.75-1.1-.4-1.69-1.02-1.77-1.86V5.42c-.12-.44-.33-.8-.64-1.07a1.83 1.83 0 0 0-1.09-.47H16v10.2L8.02 3.87H5.79c-.56.1-.97.3-1.25.6S4.08 5.25 4 5.9v4.85c-.35.69-.9 1.1-1.65 1.25.85.16 1.4.61 1.65 1.36v4.77c.02.55.2 1 .54 1.37.33.36.7.53 1.1.5H8l.02-9.94z" }) + ] + } + ); +}); + +export { SiNativescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.cjs new file mode 100644 index 000000000..c2197f4e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#27AAE1"; +const SiNatsdotio = React__namespace.forwardRef(function SiNatsdotio2({ title = "NATS.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.004 0H.404v18.807h9.938l1.714 1.602v-.026L15.966 24v-5.193h7.63V0H12.003zm7.578 14.45H15.38L6.898 6.519v7.93H4.116V4.376h4.349l8.344 7.784V4.375h2.773V14.45z" }) + ] + } + ); +}); + +exports.default = SiNatsdotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.d.ts new file mode 100644 index 000000000..213b2038f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#27AAE1"; +declare const SiNatsdotio: IconType; +export { SiNatsdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.mjs new file mode 100644 index 000000000..4c08c49b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNatsdotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#27AAE1"; +const SiNatsdotio = React.forwardRef(function SiNatsdotio2({ title = "NATS.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.004 0H.404v18.807h9.938l1.714 1.602v-.026L15.966 24v-5.193h7.63V0H12.003zm7.578 14.45H15.38L6.898 6.519v7.93H4.116V4.376h4.349l8.344 7.784V4.375h2.773V14.45z" }) + ] + } + ); +}); + +export { SiNatsdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.cjs new file mode 100644 index 000000000..874763814 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03C75A"; +const SiNaver = React__namespace.forwardRef(function SiNaver2({ title = "Naver", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.273 12.845 7.376 0H0v24h7.726V11.156L16.624 24H24V0h-7.727v12.845Z" }) + ] + } + ); +}); + +exports.default = SiNaver; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.d.ts new file mode 100644 index 000000000..4a1c60d3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03C75A"; +declare const SiNaver: IconType; +export { SiNaver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.mjs new file mode 100644 index 000000000..09abb48da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNaver.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03C75A"; +const SiNaver = React.forwardRef(function SiNaver2({ title = "Naver", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.273 12.845 7.376 0H0v24h7.726V11.156L16.624 24H24V0h-7.727v12.845Z" }) + ] + } + ); +}); + +export { SiNaver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNba.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNba.cjs new file mode 100644 index 000000000..186b0c770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNba.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#253B73"; +const SiNba = React__namespace.forwardRef(function SiNba2({ title = "NBA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.19 0a2.486 2.486 0 0 0-2.485 2.484v19.029A2.488 2.488 0 0 0 9.19 24h5.615a2.493 2.493 0 0 0 2.49-2.487V2.484A2.488 2.488 0 0 0 14.81 0zm0 .584h3.21c-.62.237-.707.508-.73 1.366-.105.01-.325-.087-.25.434 0 0 .043.346.18.286-.133.918.023.99-.93 1.031l-.047.067c-.95.093-1.25-.027-2.05 1.603 0 0-.207.505-.268.714-.197.415-.674 1.328-.819 1.919-.046.2-.14.264-.01.553.185.417-.124.527.95.496V9.3s-.286.247-.346.398c-.061.147-.226.89-.22 1.237.019.917.767 1.683.992 2.597l.492.07c.282.634 1.495 2.355 1.743 2.582.057.159.365.355.545.551.149.141 1.025 1.1 2.054 1.692-.007-.001.164.344.249.618-.342.275.32.777.52 1.609.012.107-.19.222.114.495-.022 1.256-.402 1.918.241 2.266H9.191a1.9 1.9 0 0 1-1.9-1.901V2.486a1.9 1.9 0 0 1 1.9-1.902zm3.804.002h1.815a1.9 1.9 0 0 1 1.897 1.898v9.193a1.653 1.653 0 0 0-.22-.397c0-.255-.272-.249-.346-.344-.07-.081.067-.128-.407-.235-.09-.05-.158-.747-.158-.747-.07-.447-.229-.754-.467-1.227-.12-.243-.177-1.001-.305-1.386.071-1.767-.493-2.28-.95-2.569-.174-.11-.262-.191-.433-.29l-.005-.082c-.133-.126-.402-.264-.623-.362-.068-.07-.037-.22.01-.276.15-.02.348-.356.513-.703.129.009.174-.118.214-.19.138-.222.288-.413.096-.542.435-.777.154-1.301-.08-1.321-.095-.195-.26-.316-.551-.42zm.551 6.338c.06.319.34 1.929.456 2.187.123.259.535 1.05.73 1.54a1.69 1.69 0 0 0-1.294 1.646 1.692 1.692 0 0 0 1.693 1.691 1.692 1.692 0 0 0 1.576-1.066v8.59a1.887 1.887 0 0 1-1.598 1.877h-.017c.833-.502.319-1.46.16-2.022-.012-.033.014-.074.026-.1.045-.08-.045-.257-.045-.257-.098-.09-.127-.561-.182-.772-.089-.358.157-.971.157-1.18 0-.206-.156-.491-.445-.858-.069-.078-.276-1.86-.462-2.313-.258-.623-.339-.526-.64-1.266-.24-.525-.055-1.295-.59-3.085.005.006.12-.113.12-.113s-.422-1.55-.561-1.975c-.14-.426-.385-.456-.385-.456s.002-.172.012-.216c.02-.07.516-1.367.558-1.407.001-.03.717-.514.731-.445Z" }) + ] + } + ); +}); + +exports.default = SiNba; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNba.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNba.d.ts new file mode 100644 index 000000000..18d3fa32f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNba.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#253B73"; +declare const SiNba: IconType; +export { SiNba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNba.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNba.mjs new file mode 100644 index 000000000..3423d4bf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNba.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#253B73"; +const SiNba = React.forwardRef(function SiNba2({ title = "NBA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.19 0a2.486 2.486 0 0 0-2.485 2.484v19.029A2.488 2.488 0 0 0 9.19 24h5.615a2.493 2.493 0 0 0 2.49-2.487V2.484A2.488 2.488 0 0 0 14.81 0zm0 .584h3.21c-.62.237-.707.508-.73 1.366-.105.01-.325-.087-.25.434 0 0 .043.346.18.286-.133.918.023.99-.93 1.031l-.047.067c-.95.093-1.25-.027-2.05 1.603 0 0-.207.505-.268.714-.197.415-.674 1.328-.819 1.919-.046.2-.14.264-.01.553.185.417-.124.527.95.496V9.3s-.286.247-.346.398c-.061.147-.226.89-.22 1.237.019.917.767 1.683.992 2.597l.492.07c.282.634 1.495 2.355 1.743 2.582.057.159.365.355.545.551.149.141 1.025 1.1 2.054 1.692-.007-.001.164.344.249.618-.342.275.32.777.52 1.609.012.107-.19.222.114.495-.022 1.256-.402 1.918.241 2.266H9.191a1.9 1.9 0 0 1-1.9-1.901V2.486a1.9 1.9 0 0 1 1.9-1.902zm3.804.002h1.815a1.9 1.9 0 0 1 1.897 1.898v9.193a1.653 1.653 0 0 0-.22-.397c0-.255-.272-.249-.346-.344-.07-.081.067-.128-.407-.235-.09-.05-.158-.747-.158-.747-.07-.447-.229-.754-.467-1.227-.12-.243-.177-1.001-.305-1.386.071-1.767-.493-2.28-.95-2.569-.174-.11-.262-.191-.433-.29l-.005-.082c-.133-.126-.402-.264-.623-.362-.068-.07-.037-.22.01-.276.15-.02.348-.356.513-.703.129.009.174-.118.214-.19.138-.222.288-.413.096-.542.435-.777.154-1.301-.08-1.321-.095-.195-.26-.316-.551-.42zm.551 6.338c.06.319.34 1.929.456 2.187.123.259.535 1.05.73 1.54a1.69 1.69 0 0 0-1.294 1.646 1.692 1.692 0 0 0 1.693 1.691 1.692 1.692 0 0 0 1.576-1.066v8.59a1.887 1.887 0 0 1-1.598 1.877h-.017c.833-.502.319-1.46.16-2.022-.012-.033.014-.074.026-.1.045-.08-.045-.257-.045-.257-.098-.09-.127-.561-.182-.772-.089-.358.157-.971.157-1.18 0-.206-.156-.491-.445-.858-.069-.078-.276-1.86-.462-2.313-.258-.623-.339-.526-.64-1.266-.24-.525-.055-1.295-.59-3.085.005.006.12-.113.12-.113s-.422-1.55-.561-1.975c-.14-.426-.385-.456-.385-.456s.002-.172.012-.216c.02-.07.516-1.367.558-1.407.001-.03.717-.514.731-.445Z" }) + ] + } + ); +}); + +export { SiNba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.cjs new file mode 100644 index 000000000..3d66cf563 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7100"; +const SiNbb = React__namespace.forwardRef(function SiNbb2({ title = "NBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.714 11.176h.02l.167 4.327h2.105L6.5 8.482H4.652l-.915 4.288h-.02L3.63 8.482H1.495L0 15.503h1.79zm7.254.649l.01-.02c.462-.098 1.219-.481 1.453-1.583.248-1.16-.362-1.74-1.59-1.74H7.007l-1.494 7.02h2.94c1.209 0 2.153-.619 2.458-2.025.295-1.416-.549-1.613-.944-1.652zm-1.052 1.504c-.099.462-.354.757-.787.757h-.345l.334-1.602h.354c.454 0 .542.373.444.845zm.472-2.753c-.108.511-.452.669-.708.669h-.295l.285-1.347h.266c.403 0 .55.225.452.678zm6.83 2.901c.295-1.416-.55-1.613-.944-1.652l.01-.02c.462-.098 1.219-.481 1.453-1.583.248-1.16-.362-1.74-1.591-1.74h-2.831l-1.495 7.02h2.94c1.21 0 2.153-.619 2.458-2.025zm-1.996-.148c-.098.462-.354.757-.787.757h-.344l.335-1.602h.354c.452 0 .54.373.442.845zm.472-2.753c-.108.511-.453.669-.708.669h-.294l.285-1.347h.266c.402 0 .55.225.45.678zm4.97-2.094h-2.951c.75.615.51 1.669.51 1.669H19.2l2.338 1.857-2.167 1.834h-2.72c-.117.568-.712 1.424-1.125 1.676h4.148L24 12.01z" }) + ] + } + ); +}); + +exports.default = SiNbb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.d.ts new file mode 100644 index 000000000..420573f48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7100"; +declare const SiNbb: IconType; +export { SiNbb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.mjs new file mode 100644 index 000000000..ee188c7a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNbb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7100"; +const SiNbb = React.forwardRef(function SiNbb2({ title = "NBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.714 11.176h.02l.167 4.327h2.105L6.5 8.482H4.652l-.915 4.288h-.02L3.63 8.482H1.495L0 15.503h1.79zm7.254.649l.01-.02c.462-.098 1.219-.481 1.453-1.583.248-1.16-.362-1.74-1.59-1.74H7.007l-1.494 7.02h2.94c1.209 0 2.153-.619 2.458-2.025.295-1.416-.549-1.613-.944-1.652zm-1.052 1.504c-.099.462-.354.757-.787.757h-.345l.334-1.602h.354c.454 0 .542.373.444.845zm.472-2.753c-.108.511-.452.669-.708.669h-.295l.285-1.347h.266c.403 0 .55.225.452.678zm6.83 2.901c.295-1.416-.55-1.613-.944-1.652l.01-.02c.462-.098 1.219-.481 1.453-1.583.248-1.16-.362-1.74-1.591-1.74h-2.831l-1.495 7.02h2.94c1.21 0 2.153-.619 2.458-2.025zm-1.996-.148c-.098.462-.354.757-.787.757h-.344l.335-1.602h.354c.452 0 .54.373.442.845zm.472-2.753c-.108.511-.453.669-.708.669h-.294l.285-1.347h.266c.402 0 .55.225.45.678zm4.97-2.094h-2.951c.75.615.51 1.669.51 1.669H19.2l2.338 1.857-2.167 1.834h-2.72c-.117.568-.712 1.424-1.125 1.676h4.148L24 12.01z" }) + ] + } + ); +}); + +export { SiNbb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.cjs new file mode 100644 index 000000000..5475fc7a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222222"; +const SiNbc = React__namespace.forwardRef(function SiNbc2({ title = "NBC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.8281 4.6055c-1.4058.0067-2.5666 1.2083-2.416 2.7851h1.08s.5026-.0062.6485.338c0 0-1.594.6128-1.4668 1.6093l.9922 7.3281 3.4727-8.4316c.5296-1.279-.0616-3.1668-1.6973-3.5567a2.5497 2.5497 0 0 0-.6133-.0722zm-5.6426.002a2.5551 2.5551 0 0 0-.627.0722c-1.6356.3878-2.2268 2.2757-1.6972 3.5566l3.4727 8.4317 1.2422-9.1582c.2194-1.629-.9564-2.8876-2.3907-2.9024zM4.293 8.3104c-.5719.0213-1.1298.2465-1.5586.6583-.803.7737-1.4275 2.8792.371 4.1562l6.9532 4.9258-3.334-8.0762c-.4878-1.1698-1.4785-1.6994-2.4316-1.664zm15.2715 0c-.9075.0203-1.8246.5528-2.2891 1.6641l-3.332 8.0762 6.953-4.9258c1.7987-1.275 1.172-3.3825.3692-4.1563-.4638-.446-1.0802-.672-1.7011-.6582zm1.9394 5.7872c-.4523.0075-.9351.1573-1.42.502l-6.7694 4.7948h8.0253c1.8734 0 3.0648-1.5828 2.5332-3.4843-.2595-.9264-1.2131-1.8318-2.369-1.8125zm-19.0078.002C1.3405 14.081.3879 14.9851.127 15.9101c-.5316 1.9015.6597 3.4843 2.5332 3.4843h8.0253L3.916 14.5996c-.4848-.344-.9677-.4927-1.42-.5z" }) + ] + } + ); +}); + +exports.default = SiNbc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.d.ts new file mode 100644 index 000000000..8d44fceeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222222"; +declare const SiNbc: IconType; +export { SiNbc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.mjs new file mode 100644 index 000000000..7512a0f09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNbc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222222"; +const SiNbc = React.forwardRef(function SiNbc2({ title = "NBC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.8281 4.6055c-1.4058.0067-2.5666 1.2083-2.416 2.7851h1.08s.5026-.0062.6485.338c0 0-1.594.6128-1.4668 1.6093l.9922 7.3281 3.4727-8.4316c.5296-1.279-.0616-3.1668-1.6973-3.5567a2.5497 2.5497 0 0 0-.6133-.0722zm-5.6426.002a2.5551 2.5551 0 0 0-.627.0722c-1.6356.3878-2.2268 2.2757-1.6972 3.5566l3.4727 8.4317 1.2422-9.1582c.2194-1.629-.9564-2.8876-2.3907-2.9024zM4.293 8.3104c-.5719.0213-1.1298.2465-1.5586.6583-.803.7737-1.4275 2.8792.371 4.1562l6.9532 4.9258-3.334-8.0762c-.4878-1.1698-1.4785-1.6994-2.4316-1.664zm15.2715 0c-.9075.0203-1.8246.5528-2.2891 1.6641l-3.332 8.0762 6.953-4.9258c1.7987-1.275 1.172-3.3825.3692-4.1563-.4638-.446-1.0802-.672-1.7011-.6582zm1.9394 5.7872c-.4523.0075-.9351.1573-1.42.502l-6.7694 4.7948h8.0253c1.8734 0 3.0648-1.5828 2.5332-3.4843-.2595-.9264-1.2131-1.8318-2.369-1.8125zm-19.0078.002C1.3405 14.081.3879 14.9851.127 15.9101c-.5316 1.9015.6597 3.4843 2.5332 3.4843h8.0253L3.916 14.5996c-.4848-.344-.9677-.4927-1.42-.5z" }) + ] + } + ); +}); + +export { SiNbc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.cjs new file mode 100644 index 000000000..45b816e8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNdi = React__namespace.forwardRef(function SiNdi2({ title = "NDI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6.78v10.438h2.565V12.81c0-.275.165-.47.43-.47.221 0 .371.124.624.511l2.756 4.368h2.798V6.781H6.61v4.465c0 .275-.166.47-.43.47-.222 0-.373-.123-.625-.511L2.798 6.78Zm9.798 0v10.438h4.127c2.982 0 5.393-2.35 5.393-5.226s-2.425-5.211-5.39-5.211zm10.077 0v10.438h2.564V6.781Zm-7.177 2.35h1.066c1.69 0 2.922 1.216 2.922 2.846 0 1.673-1.231 2.89-2.922 2.89h-1.066a.336.336 0 0 1-.335-.336V9.466c0-.185.15-.336.335-.336m10.792 7.068a.513.513 0 0 0-.528.509c0 .286.23.511.528.511a.51.51 0 1 0 0-1.02m0 .082c.24 0 .43.185.43.426 0 .24-.19.425-.43.425a.423.423 0 0 1-.43-.425.42.42 0 0 1 .43-.426m-.17.155v.545h.1v-.222l.177.222h.112l-.14-.173a.06.06 0 0 1-.01-.034q-.002-.028.03-.033h.004a.15.15 0 0 0 .113-.143c0-.095-.08-.162-.188-.162zm.1.086h.094c.053 0 .09.03.09.08 0 .048-.034.075-.09.075h-.094z" }) + ] + } + ); +}); + +exports.default = SiNdi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.d.ts new file mode 100644 index 000000000..02215d6db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNdi: IconType; +export { SiNdi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.mjs new file mode 100644 index 000000000..ecad8373c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNdi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNdi = React.forwardRef(function SiNdi2({ title = "NDI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6.78v10.438h2.565V12.81c0-.275.165-.47.43-.47.221 0 .371.124.624.511l2.756 4.368h2.798V6.781H6.61v4.465c0 .275-.166.47-.43.47-.222 0-.373-.123-.625-.511L2.798 6.78Zm9.798 0v10.438h4.127c2.982 0 5.393-2.35 5.393-5.226s-2.425-5.211-5.39-5.211zm10.077 0v10.438h2.564V6.781Zm-7.177 2.35h1.066c1.69 0 2.922 1.216 2.922 2.846 0 1.673-1.231 2.89-2.922 2.89h-1.066a.336.336 0 0 1-.335-.336V9.466c0-.185.15-.336.335-.336m10.792 7.068a.513.513 0 0 0-.528.509c0 .286.23.511.528.511a.51.51 0 1 0 0-1.02m0 .082c.24 0 .43.185.43.426 0 .24-.19.425-.43.425a.423.423 0 0 1-.43-.425.42.42 0 0 1 .43-.426m-.17.155v.545h.1v-.222l.177.222h.112l-.14-.173a.06.06 0 0 1-.01-.034q-.002-.028.03-.033h.004a.15.15 0 0 0 .113-.143c0-.095-.08-.162-.188-.162zm.1.086h.094c.053 0 .09.03.09.08 0 .048-.034.075-.09.075h-.094z" }) + ] + } + ); +}); + +export { SiNdi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.cjs new file mode 100644 index 000000000..996e01fba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C1754"; +const SiNdr = React__namespace.forwardRef(function SiNdr2({ title = "NDR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.184 19.325l-3.137-5.648v5.649H0V9.64h2.149l3.267 6.025V9.641h2.047v9.684zm2.279-9.684V.537H8.61v9.104zm0 13.822v-4.138H8.61v4.138zM12.037 9.64c2.395 0 3.63 1.147 3.63 3.368v2.918c0 2.28-1.19 3.398-3.63 3.398H8.61V9.641zm-.19 7.855c1.163 0 1.728-.581 1.728-1.771v-2.498c0-1.176-.58-1.757-1.727-1.757h-1.03v6.026zm9.845 1.83l-1.728-3.718h-1.161v3.717h-2.15V9.641h3.384c2.381 0 3.513.944 3.513 2.962 0 1.335-.493 2.134-1.597 2.613L24 19.326zm-1.568-5.475c.857 0 1.365-.494 1.365-1.32 0-.858-.377-1.177-1.365-1.177H18.76v2.498h1.365z" }) + ] + } + ); +}); + +exports.default = SiNdr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.d.ts new file mode 100644 index 000000000..78136037b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C1754"; +declare const SiNdr: IconType; +export { SiNdr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.mjs new file mode 100644 index 000000000..50c6e48a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNdr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C1754"; +const SiNdr = React.forwardRef(function SiNdr2({ title = "NDR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.184 19.325l-3.137-5.648v5.649H0V9.64h2.149l3.267 6.025V9.641h2.047v9.684zm2.279-9.684V.537H8.61v9.104zm0 13.822v-4.138H8.61v4.138zM12.037 9.64c2.395 0 3.63 1.147 3.63 3.368v2.918c0 2.28-1.19 3.398-3.63 3.398H8.61V9.641zm-.19 7.855c1.163 0 1.728-.581 1.728-1.771v-2.498c0-1.176-.58-1.757-1.727-1.757h-1.03v6.026zm9.845 1.83l-1.728-3.718h-1.161v3.717h-2.15V9.641h3.384c2.381 0 3.513.944 3.513 2.962 0 1.335-.493 2.134-1.597 2.613L24 19.326zm-1.568-5.475c.857 0 1.365-.494 1.365-1.32 0-.858-.377-1.177-1.365-1.177H18.76v2.498h1.365z" }) + ] + } + ); +}); + +export { SiNdr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNear.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNear.cjs new file mode 100644 index 000000000..7b8be9f39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNear.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNear = React__namespace.forwardRef(function SiNear2({ title = "NEAR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.443 0c-.89 0-1.714.46-2.18 1.218l-5.017 7.448a.533.533 0 0 0 .792.7l4.938-4.282a.2.2 0 0 1 .334.151v13.41a.2.2 0 0 1-.354.128L5.03.905A2.555 2.555 0 0 0 3.078 0h-.521A2.557 2.557 0 0 0 0 2.557v18.886a2.557 2.557 0 0 0 4.736 1.338l5.017-7.448a.533.533 0 0 0-.792-.7l-4.938 4.283a.2.2 0 0 1-.333-.152V5.352a.2.2 0 0 1 .354-.128l14.924 17.87c.486.574 1.2.905 1.952.906h.521A2.558 2.558 0 0 0 24 21.445V2.557A2.558 2.558 0 0 0 21.443 0Z" }) + ] + } + ); +}); + +exports.default = SiNear; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNear.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNear.d.ts new file mode 100644 index 000000000..23d3c4e8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNear.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNear: IconType; +export { SiNear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNear.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNear.mjs new file mode 100644 index 000000000..88621f5c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNear.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNear = React.forwardRef(function SiNear2({ title = "NEAR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.443 0c-.89 0-1.714.46-2.18 1.218l-5.017 7.448a.533.533 0 0 0 .792.7l4.938-4.282a.2.2 0 0 1 .334.151v13.41a.2.2 0 0 1-.354.128L5.03.905A2.555 2.555 0 0 0 3.078 0h-.521A2.557 2.557 0 0 0 0 2.557v18.886a2.557 2.557 0 0 0 4.736 1.338l5.017-7.448a.533.533 0 0 0-.792-.7l-4.938 4.283a.2.2 0 0 1-.333-.152V5.352a.2.2 0 0 1 .354-.128l14.924 17.87c.486.574 1.2.905 1.952.906h.521A2.558 2.558 0 0 0 24 21.445V2.557A2.558 2.558 0 0 0 21.443 0Z" }) + ] + } + ); +}); + +export { SiNear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.cjs new file mode 100644 index 000000000..f80e46183 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2CADFE"; +const SiNebula = React__namespace.forwardRef(function SiNebula2({ title = "Nebula", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.417 9.307 0 14.693h9.167L12 23.413l2.833-8.72H24s-3.915-2.84-7.417-5.386l2.834-8.72L12 5.976C8.499 3.438 4.583.588 4.583.588z" }) + ] + } + ); +}); + +exports.default = SiNebula; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.d.ts new file mode 100644 index 000000000..c803ff8f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2CADFE"; +declare const SiNebula: IconType; +export { SiNebula as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.mjs new file mode 100644 index 000000000..78a6cf1b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNebula.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2CADFE"; +const SiNebula = React.forwardRef(function SiNebula2({ title = "Nebula", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.417 9.307 0 14.693h9.167L12 23.413l2.833-8.72H24s-3.915-2.84-7.417-5.386l2.834-8.72L12 5.976C8.499 3.438 4.583.588 4.583.588z" }) + ] + } + ); +}); + +export { SiNebula as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNec.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNec.cjs new file mode 100644 index 000000000..d0b2771f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNec.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1414A0"; +const SiNec = React__namespace.forwardRef(function SiNec2({ title = "NEC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.496 8.8a13.892 13.892 0 0 0-2.453.198c-.6.11-1.165.223-1.693.57-.807.526-1.076 1.49-1.086 2.394-.012.98.283 2.06 1.21 2.54.735.384 1.537.552 2.355.624 1.397.118 2.792.1 4.171-.09v-.98c-1.04.19-2.107.31-3.184.152-1.652-.24-1.93-1.473-1.93-2.286 0-.451.06-.987.482-1.526.676-.865 2.667-.956 4.55-.59V8.95a22.777 22.777 0 0 0-2.422-.15zm-12.812.197v4.446c.03.744.295 1.518 1.834 1.581 1.814.075 3.54.045 5.334-.024v-.896c-.89.014-3.487.001-3.65 0-.704-.042-.973-.256-.998-.837a32.12 32.12 0 0 1-.02-1.055h4.177v-.834h-4.176V9.851h4.582v-.854zM0 8.997v5.999h1.146v-4.254l3.383 3.764c.41.404.763.478 1.122.49h2.015V8.997h-1.15v4.397l-3.39-3.757c-.232-.227-.753-.64-1.194-.64z" }) + ] + } + ); +}); + +exports.default = SiNec; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNec.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNec.d.ts new file mode 100644 index 000000000..a6719e506 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNec.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1414A0"; +declare const SiNec: IconType; +export { SiNec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNec.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNec.mjs new file mode 100644 index 000000000..7aec042b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNec.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1414A0"; +const SiNec = React.forwardRef(function SiNec2({ title = "NEC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.496 8.8a13.892 13.892 0 0 0-2.453.198c-.6.11-1.165.223-1.693.57-.807.526-1.076 1.49-1.086 2.394-.012.98.283 2.06 1.21 2.54.735.384 1.537.552 2.355.624 1.397.118 2.792.1 4.171-.09v-.98c-1.04.19-2.107.31-3.184.152-1.652-.24-1.93-1.473-1.93-2.286 0-.451.06-.987.482-1.526.676-.865 2.667-.956 4.55-.59V8.95a22.777 22.777 0 0 0-2.422-.15zm-12.812.197v4.446c.03.744.295 1.518 1.834 1.581 1.814.075 3.54.045 5.334-.024v-.896c-.89.014-3.487.001-3.65 0-.704-.042-.973-.256-.998-.837a32.12 32.12 0 0 1-.02-1.055h4.177v-.834h-4.176V9.851h4.582v-.854zM0 8.997v5.999h1.146v-4.254l3.383 3.764c.41.404.763.478 1.122.49h2.015V8.997h-1.15v4.397l-3.39-3.757c-.232-.227-.753-.64-1.194-.64z" }) + ] + } + ); +}); + +export { SiNec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.cjs new file mode 100644 index 000000000..a39bbede5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003082"; +const SiNederlandsespoorwegen = React__namespace.forwardRef(function SiNederlandsespoorwegen2({ title = "Nederlandse Spoorwegen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.494 11.812a2.602 2.602 0 0 0-1.835-.751H3.576L5.46 9.184h4.753a.757.757 0 0 1 .516.234l2.777 2.77a2.602 2.602 0 0 0 1.835.75h5.084l-1.884 1.878h-4.752a.757.757 0 0 1-.516-.235zm1.459 4.083a2.863 2.863 0 0 0 1.835.798h5.506L24 12l-4.706-4.694H16.66l3.764 3.755h-5.082a.99.99 0 0 1-.516-.188l-2.778-2.769a2.863 2.863 0 0 0-1.835-.798H4.706L0 12l4.706 4.693H7.34L3.577 12.94h5.082a.99.99 0 0 1 .516.187z" }) + ] + } + ); +}); + +exports.default = SiNederlandsespoorwegen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.d.ts new file mode 100644 index 000000000..a04ee2556 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003082"; +declare const SiNederlandsespoorwegen: IconType; +export { SiNederlandsespoorwegen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.mjs new file mode 100644 index 000000000..a79284553 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNederlandsespoorwegen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003082"; +const SiNederlandsespoorwegen = React.forwardRef(function SiNederlandsespoorwegen2({ title = "Nederlandse Spoorwegen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.494 11.812a2.602 2.602 0 0 0-1.835-.751H3.576L5.46 9.184h4.753a.757.757 0 0 1 .516.234l2.777 2.77a2.602 2.602 0 0 0 1.835.75h5.084l-1.884 1.878h-4.752a.757.757 0 0 1-.516-.235zm1.459 4.083a2.863 2.863 0 0 0 1.835.798h5.506L24 12l-4.706-4.694H16.66l3.764 3.755h-5.082a.99.99 0 0 1-.516-.188l-2.778-2.769a2.863 2.863 0 0 0-1.835-.798H4.706L0 12l4.706 4.693H7.34L3.577 12.94h5.082a.99.99 0 0 1 .516.187z" }) + ] + } + ); +}); + +export { SiNederlandsespoorwegen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.cjs new file mode 100644 index 000000000..a37b32945 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4581C3"; +const SiNeo4j = React__namespace.forwardRef(function SiNeo4j2({ title = "Neo4j", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.629 13.227c-.593 0-1.139.2-1.58.533l-2.892-1.976a2.61 2.61 0 0 0 .101-.711 2.633 2.633 0 0 0-2.629-2.629A2.632 2.632 0 0 0 0 11.073a2.632 2.632 0 0 0 2.629 2.629c.593 0 1.139-.2 1.579-.533L7.1 15.145c-.063.226-.1.465-.1.711 0 .247.037.484.1.711l-2.892 1.976a2.608 2.608 0 0 0-1.579-.533A2.632 2.632 0 0 0 0 20.639a2.632 2.632 0 0 0 2.629 2.629 2.632 2.632 0 0 0 2.629-2.629c0-.247-.037-.485-.101-.711l2.892-1.976c.441.333.987.533 1.58.533a2.633 2.633 0 0 0 2.629-2.629c0-1.45-1.18-2.629-2.629-2.629ZM16.112.732c-4.72 0-7.888 2.748-7.888 8.082v3.802a3.525 3.525 0 0 1 3.071.008v-3.81c0-3.459 1.907-5.237 4.817-5.237s4.817 1.778 4.817 5.237v8.309H24V8.814C24 3.448 20.832.732 16.112.732Z" }) + ] + } + ); +}); + +exports.default = SiNeo4j; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.d.ts new file mode 100644 index 000000000..1cd552f57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4581C3"; +declare const SiNeo4j: IconType; +export { SiNeo4j as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.mjs new file mode 100644 index 000000000..ed8f5a0b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeo4j.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4581C3"; +const SiNeo4j = React.forwardRef(function SiNeo4j2({ title = "Neo4j", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.629 13.227c-.593 0-1.139.2-1.58.533l-2.892-1.976a2.61 2.61 0 0 0 .101-.711 2.633 2.633 0 0 0-2.629-2.629A2.632 2.632 0 0 0 0 11.073a2.632 2.632 0 0 0 2.629 2.629c.593 0 1.139-.2 1.579-.533L7.1 15.145c-.063.226-.1.465-.1.711 0 .247.037.484.1.711l-2.892 1.976a2.608 2.608 0 0 0-1.579-.533A2.632 2.632 0 0 0 0 20.639a2.632 2.632 0 0 0 2.629 2.629 2.632 2.632 0 0 0 2.629-2.629c0-.247-.037-.485-.101-.711l2.892-1.976c.441.333.987.533 1.58.533a2.633 2.633 0 0 0 2.629-2.629c0-1.45-1.18-2.629-2.629-2.629ZM16.112.732c-4.72 0-7.888 2.748-7.888 8.082v3.802a3.525 3.525 0 0 1 3.071.008v-3.81c0-3.459 1.907-5.237 4.817-5.237s4.817 1.778 4.817 5.237v8.309H24V8.814C24 3.448 20.832.732 16.112.732Z" }) + ] + } + ); +}); + +export { SiNeo4j as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.cjs new file mode 100644 index 000000000..d9e198322 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#57A143"; +const SiNeovim = React__namespace.forwardRef(function SiNeovim2({ title = "Neovim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.214 4.954v13.615L7.655 24V10.314L3.312 3.845 2.214 4.954zm4.999 17.98l-4.557-4.548V5.136l.59-.596 3.967 5.908v12.485zm14.573-4.457l-.862.937-4.24-6.376V0l5.068 5.092.034 13.385zM7.431.001l12.998 19.835-3.637 3.637L3.787 3.683 7.43 0z" }) + ] + } + ); +}); + +exports.default = SiNeovim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.d.ts new file mode 100644 index 000000000..d84a542d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#57A143"; +declare const SiNeovim: IconType; +export { SiNeovim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.mjs new file mode 100644 index 000000000..4a21faadc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeovim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#57A143"; +const SiNeovim = React.forwardRef(function SiNeovim2({ title = "Neovim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.214 4.954v13.615L7.655 24V10.314L3.312 3.845 2.214 4.954zm4.999 17.98l-4.557-4.548V5.136l.59-.596 3.967 5.908v12.485zm14.573-4.457l-.862.937-4.24-6.376V0l5.068 5.092.034 13.385zM7.431.001l12.998 19.835-3.637 3.637L3.787 3.683 7.43 0z" }) + ] + } + ); +}); + +export { SiNeovim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.cjs new file mode 100644 index 000000000..813425d5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5B69C2"; +const SiNeptune = React__namespace.forwardRef(function SiNeptune2({ title = "Neptune", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.6196-5.3725 11.9857-12 11.9857-6.6274 0-12-5.3661-12-11.9857C0 5.3805 5.3726.0143 12 .0143 18.6275.0143 24 5.3805 24 12Zm-9.67-5.291c-.7538 0-1.1437.476-1.4374 1.0547-.3967.7807-.6057 1.656-.8184 2.6367-.27 1.2441-.4959 2.4964-.748 3.7441-.0597.2938-.0935.6393-.209.916-.0618.1491-.2103.3668-.3809.1973-.191-.1898-.257-.5676-.3125-.8281-.2944-1.4535-.5724-2.9115-.9023-4.3574-.1813-.779-.4272-1.5663-.7305-2.3399-.1225-.313-.297-.5328-.4922-.6816-.2388-.182-.51-.2596-.7675-.2695-.0608-.0003-.4824.0081-.8887.2753-.217.1427-.431.3582-.582.6875-.3584.7439-.6352 1.5872-.8711 2.6563-.1459.6557-.2279 1.1556-.2657 1.6191-.014.1694.0333.3434.125.4883.0922.1455.2293.2608.3867.3164.2413.0867.4809.0644.6778-.0566.1799-.111.3097-.301.3613-.541.107-.4968.202-1.0088.293-1.502.0456-.2486.313-1.5385.375-1.7012.028-.0905.0739-.2491.162-.3574.0838-.1028.1917-.1022.2696.0059.0877.1216.1256.2749.1621.418.0765.304.3007 1.5146.5703 2.7324.256 1.1827.4994 2.3682.8067 3.539.1411.5323.393 1.0008.58 1.3008.2437.3907.6322.6187 1.0626.627.3432.0105.6669-.1055.9433-.3243.269-.213.4945-.5249.6485-.918.3926-1.0015.6125-2.0977.8261-3.16.3598-1.8212.5395-2.7281.6211-3.125.0262-.1251.1762-.7535.2168-.8634.0334-.1236.0762-.2058.125-.2558.0638-.0653.1686-.0797.2363-.0137.1777.1728.3258.8109.4454 1.4102.112.5842.2403 1.1651.3593 1.748.199.9668.3964 1.9341.6075 2.8984.1847.8522.4237 1.4485.7675 1.9356.258.3644.5641.5767.8965.6445.3325.068.6962-.0074 1.0742-.2422.3192-.1983.6053-.5466.7793-.9629.2732-.6526.4326-1.4227.5782-2.1816.0583-.3051.1145-.6094.1738-.9004.0816-.394.116-.6466.0957-.9336-.0244-.3313-.3144-.6959-.6992-.7031-.4993-.0129-.7589.2422-.8457.705-.149.802-.2976 1.6034-.4512 2.4044-.0512.2594-.0205.5776-.211.787-.0292.0284-.1184.1086-.2363.088-.0745-.0131-.1732-.0775-.252-.248-.154-.4303-.5241-2.6424-1.0527-4.9552-.1812-.7787-.4274-1.5764-.7324-2.371-.2674-.6904-.6852-1.043-1.3398-1.043Zm-9.5488 8.4277c-.6472 0-1.1718.534-1.1718 1.1934 0 .6555.548 1.1956 1.1719 1.1953.5964-.0003 1.1718-.5359 1.1718-1.1953s-.5246-1.1934-1.1719-1.1934z" }) + ] + } + ); +}); + +exports.default = SiNeptune; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.d.ts new file mode 100644 index 000000000..2a8adb3bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5B69C2"; +declare const SiNeptune: IconType; +export { SiNeptune as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.mjs new file mode 100644 index 000000000..b4908f636 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeptune.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5B69C2"; +const SiNeptune = React.forwardRef(function SiNeptune2({ title = "Neptune", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.6196-5.3725 11.9857-12 11.9857-6.6274 0-12-5.3661-12-11.9857C0 5.3805 5.3726.0143 12 .0143 18.6275.0143 24 5.3805 24 12Zm-9.67-5.291c-.7538 0-1.1437.476-1.4374 1.0547-.3967.7807-.6057 1.656-.8184 2.6367-.27 1.2441-.4959 2.4964-.748 3.7441-.0597.2938-.0935.6393-.209.916-.0618.1491-.2103.3668-.3809.1973-.191-.1898-.257-.5676-.3125-.8281-.2944-1.4535-.5724-2.9115-.9023-4.3574-.1813-.779-.4272-1.5663-.7305-2.3399-.1225-.313-.297-.5328-.4922-.6816-.2388-.182-.51-.2596-.7675-.2695-.0608-.0003-.4824.0081-.8887.2753-.217.1427-.431.3582-.582.6875-.3584.7439-.6352 1.5872-.8711 2.6563-.1459.6557-.2279 1.1556-.2657 1.6191-.014.1694.0333.3434.125.4883.0922.1455.2293.2608.3867.3164.2413.0867.4809.0644.6778-.0566.1799-.111.3097-.301.3613-.541.107-.4968.202-1.0088.293-1.502.0456-.2486.313-1.5385.375-1.7012.028-.0905.0739-.2491.162-.3574.0838-.1028.1917-.1022.2696.0059.0877.1216.1256.2749.1621.418.0765.304.3007 1.5146.5703 2.7324.256 1.1827.4994 2.3682.8067 3.539.1411.5323.393 1.0008.58 1.3008.2437.3907.6322.6187 1.0626.627.3432.0105.6669-.1055.9433-.3243.269-.213.4945-.5249.6485-.918.3926-1.0015.6125-2.0977.8261-3.16.3598-1.8212.5395-2.7281.6211-3.125.0262-.1251.1762-.7535.2168-.8634.0334-.1236.0762-.2058.125-.2558.0638-.0653.1686-.0797.2363-.0137.1777.1728.3258.8109.4454 1.4102.112.5842.2403 1.1651.3593 1.748.199.9668.3964 1.9341.6075 2.8984.1847.8522.4237 1.4485.7675 1.9356.258.3644.5641.5767.8965.6445.3325.068.6962-.0074 1.0742-.2422.3192-.1983.6053-.5466.7793-.9629.2732-.6526.4326-1.4227.5782-2.1816.0583-.3051.1145-.6094.1738-.9004.0816-.394.116-.6466.0957-.9336-.0244-.3313-.3144-.6959-.6992-.7031-.4993-.0129-.7589.2422-.8457.705-.149.802-.2976 1.6034-.4512 2.4044-.0512.2594-.0205.5776-.211.787-.0292.0284-.1184.1086-.2363.088-.0745-.0131-.1732-.0775-.252-.248-.154-.4303-.5241-2.6424-1.0527-4.9552-.1812-.7787-.4274-1.5764-.7324-2.371-.2674-.6904-.6852-1.043-1.3398-1.043Zm-9.5488 8.4277c-.6472 0-1.1718.534-1.1718 1.1934 0 .6555.548 1.1956 1.1719 1.1953.5964-.0003 1.1718-.5359 1.1718-1.1953s-.5246-1.1934-1.1719-1.1934z" }) + ] + } + ); +}); + +export { SiNeptune as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.cjs new file mode 100644 index 000000000..6366357c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E0234E"; +const SiNestjs = React__namespace.forwardRef(function SiNestjs2({ title = "NestJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.131.047c-.173 0-.334.037-.483.087.316.21.49.49.576.806.007.043.019.074.025.117a.681.681 0 0 1 .013.112c.024.545-.143.614-.26.936-.18.415-.13.861.086 1.22a.74.74 0 0 0 .074.137c-.235-1.568 1.073-1.803 1.314-2.293.019-.428-.334-.713-.613-.911a1.37 1.37 0 0 0-.732-.21zM16.102.4c-.024.143-.006.106-.012.18-.006.05-.006.112-.012.161-.013.05-.025.1-.044.149-.012.05-.03.1-.05.149l-.067.142c-.02.025-.031.05-.05.075l-.037.055a2.152 2.152 0 0 1-.093.124c-.037.038-.068.081-.112.112v.006c-.037.031-.074.068-.118.1-.13.099-.278.173-.415.266-.043.03-.087.056-.124.093a.906.906 0 0 0-.118.099c-.043.037-.074.074-.111.118-.031.037-.068.08-.093.124a1.582 1.582 0 0 0-.087.13c-.025.05-.043.093-.068.142-.019.05-.037.093-.05.143a2.007 2.007 0 0 0-.043.155c-.006.025-.006.056-.012.08-.007.025-.007.05-.013.075 0 .05-.006.105-.006.155 0 .037 0 .074.006.111 0 .05.006.1.019.155.006.05.018.1.03.15.02.049.032.098.05.148.013.03.031.062.044.087l-1.426-.552c-.241-.068-.477-.13-.719-.186l-.39-.093c-.372-.074-.75-.13-1.128-.167-.013 0-.019-.006-.031-.006A11.082 11.082 0 0 0 8.9 2.855c-.378.025-.756.074-1.134.136a12.45 12.45 0 0 0-.837.174l-.279.074c-.092.037-.18.08-.266.118l-.205.093c-.012.006-.024.006-.03.012-.063.031-.118.056-.174.087a2.738 2.738 0 0 0-.236.118c-.043.018-.086.043-.124.062a.559.559 0 0 1-.055.03c-.056.032-.112.063-.162.094a1.56 1.56 0 0 0-.148.093c-.044.03-.087.055-.124.086-.006.007-.013.007-.019.013-.037.025-.08.056-.118.087l-.012.012-.093.074c-.012.007-.025.019-.037.025-.031.025-.062.056-.093.08-.006.013-.019.02-.025.025-.037.038-.074.069-.111.106-.007 0-.007.006-.013.012a1.742 1.742 0 0 0-.111.106c-.007.006-.007.012-.013.012a1.454 1.454 0 0 0-.093.1c-.012.012-.03.024-.043.036a1.374 1.374 0 0 1-.106.112c-.006.012-.018.019-.024.03-.05.05-.093.1-.143.15l-.018.018c-.1.106-.205.211-.317.304-.111.1-.229.192-.347.273a3.777 3.777 0 0 1-.762.421c-.13.056-.267.106-.403.149-.26.056-.527.161-.756.18-.05 0-.105.012-.155.018l-.155.037-.149.056c-.05.019-.099.044-.148.068-.044.031-.093.056-.137.087a1.011 1.011 0 0 0-.124.106c-.043.03-.087.074-.124.111-.037.043-.074.08-.105.124-.031.05-.068.093-.093.143a1.092 1.092 0 0 0-.087.142c-.025.056-.05.106-.068.161-.019.05-.037.106-.056.161-.012.05-.025.1-.03.15 0 .005-.007.012-.007.018-.012.056-.012.13-.019.167C.006 7.95 0 7.986 0 8.03a.657.657 0 0 0 .074.31v.006c.019.037.044.075.069.112.024.037.05.074.08.111.031.031.068.069.106.1a.906.906 0 0 0 .117.099c.149.13.186.173.378.272.031.019.062.031.1.05.006 0 .012.006.018.006 0 .013 0 .019.006.031a1.272 1.272 0 0 0 .08.298c.02.037.032.074.05.111.007.013.013.025.02.031.024.05.049.093.073.137l.093.13c.031.037.069.08.106.118.037.037.074.068.118.105 0 0 .006.006.012.006.037.031.074.062.112.087a.986.986 0 0 0 .136.08c.043.025.093.05.142.069a.73.73 0 0 0 .124.043c.007.006.013.006.025.012.025.007.056.013.08.019-.018.335-.024.65.026.762.055.124.328-.254.6-.688-.036.428-.061.93 0 1.079.069.155.44-.329.763-.862 4.395-1.016 8.405 2.02 8.826 6.31-.08-.67-.905-1.041-1.283-.948-.186.458-.502 1.047-1.01 1.413.043-.41.025-.83-.062-1.24a4.009 4.009 0 0 1-.769 1.562c-.588.043-1.177-.242-1.487-.67-.025-.018-.031-.055-.05-.08-.018-.043-.037-.087-.05-.13a.515.515 0 0 1-.037-.13c-.006-.044-.006-.087-.006-.137v-.093a.992.992 0 0 1 .031-.13c.013-.043.025-.086.044-.13.024-.043.043-.087.074-.13.105-.298.105-.54-.087-.682a.706.706 0 0 0-.118-.062c-.024-.006-.055-.018-.08-.025l-.05-.018a.847.847 0 0 0-.13-.031.472.472 0 0 0-.13-.019 1.01 1.01 0 0 0-.136-.012c-.031 0-.062.006-.093.006a.484.484 0 0 0-.137.019c-.043.006-.086.012-.13.024a1.068 1.068 0 0 0-.13.044c-.043.018-.08.037-.124.056-.037.018-.074.043-.118.062-1.444.942-.582 3.148.403 3.787-.372.068-.75.148-.855.229l-.013.012c.267.161.546.298.837.416.397.13.818.247 1.004.297v.006a5.996 5.996 0 0 0 1.562.112c2.746-.192 4.996-2.281 5.405-5.033l.037.161c.019.112.043.23.056.347v.006c.012.056.018.112.025.162v.024c.006.056.012.112.012.162.006.068.012.136.012.204v.1c0 .03.007.067.007.098 0 .038-.007.075-.007.112v.087c0 .043-.006.08-.006.124 0 .025 0 .05-.006.08 0 .044-.006.087-.006.137-.006.018-.006.037-.006.055l-.02.143c0 .019 0 .037-.005.056-.007.062-.019.118-.025.18v.012l-.037.174v.018l-.037.167c0 .007-.007.02-.007.025a1.663 1.663 0 0 1-.043.168v.018c-.019.062-.037.118-.05.174-.006.006-.006.012-.006.012l-.056.186c-.024.062-.043.118-.068.18-.025.062-.043.124-.068.18-.025.062-.05.117-.074.18h-.007c-.024.055-.05.117-.08.173a.302.302 0 0 1-.019.043c-.006.006-.006.013-.012.019a5.867 5.867 0 0 1-1.742 2.082c-.05.031-.099.069-.149.106-.012.012-.03.018-.043.03a2.603 2.603 0 0 1-.136.094l.018.037h.007l.26-.037h.006c.161-.025.322-.056.483-.087.044-.006.093-.019.137-.031l.087-.019c.043-.006.086-.018.13-.024.037-.013.074-.02.111-.031.62-.15 1.221-.354 1.798-.595a9.926 9.926 0 0 1-3.85 3.142c.714-.05 1.426-.167 2.114-.366a9.903 9.903 0 0 0 5.857-4.68 9.893 9.893 0 0 1-1.667 3.986 9.758 9.758 0 0 0 1.655-1.376 9.824 9.824 0 0 0 2.61-5.268c.21.98.272 1.99.18 2.987 4.474-6.241.371-12.712-1.346-14.416-.006-.013-.012-.019-.012-.031-.006.006-.006.006-.006.012 0-.006 0-.006-.007-.012 0 .074-.006.148-.012.223a8.34 8.34 0 0 1-.062.415c-.03.136-.068.273-.105.41-.044.13-.093.266-.15.396a5.322 5.322 0 0 1-.185.378 4.735 4.735 0 0 1-.477.688c-.093.111-.192.21-.292.31a3.994 3.994 0 0 1-.18.155l-.142.124a3.459 3.459 0 0 1-.347.241 4.295 4.295 0 0 1-.366.211c-.13.062-.26.118-.39.174a4.364 4.364 0 0 1-.818.223c-.143.025-.285.037-.422.05a4.914 4.914 0 0 1-.297.012 4.66 4.66 0 0 1-.422-.025 3.137 3.137 0 0 1-.421-.062 3.136 3.136 0 0 1-.415-.105h-.007c.137-.013.273-.025.41-.05a4.493 4.493 0 0 0 .818-.223c.136-.05.266-.112.39-.174.13-.062.248-.13.372-.204.118-.08.235-.161.347-.248.112-.087.217-.18.316-.279.105-.093.198-.198.291-.304.093-.111.18-.223.26-.334.013-.019.026-.044.038-.062.062-.1.124-.199.18-.298a4.272 4.272 0 0 0 .334-.775c.044-.13.075-.266.106-.403.025-.142.05-.278.062-.415.012-.142.025-.285.025-.421 0-.1-.007-.199-.013-.298a6.726 6.726 0 0 0-.05-.415 4.493 4.493 0 0 0-.092-.415c-.044-.13-.087-.267-.137-.397-.05-.13-.111-.26-.173-.384-.069-.124-.137-.248-.211-.366a6.843 6.843 0 0 0-.248-.34c-.093-.106-.186-.212-.285-.317a3.878 3.878 0 0 0-.161-.155c-.28-.217-.57-.421-.862-.607a1.154 1.154 0 0 0-.124-.062 2.415 2.415 0 0 0-.589-.26Z" }) + ] + } + ); +}); + +exports.default = SiNestjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.d.ts new file mode 100644 index 000000000..721b00a49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E0234E"; +declare const SiNestjs: IconType; +export { SiNestjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.mjs new file mode 100644 index 000000000..3bcda5d0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNestjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E0234E"; +const SiNestjs = React.forwardRef(function SiNestjs2({ title = "NestJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.131.047c-.173 0-.334.037-.483.087.316.21.49.49.576.806.007.043.019.074.025.117a.681.681 0 0 1 .013.112c.024.545-.143.614-.26.936-.18.415-.13.861.086 1.22a.74.74 0 0 0 .074.137c-.235-1.568 1.073-1.803 1.314-2.293.019-.428-.334-.713-.613-.911a1.37 1.37 0 0 0-.732-.21zM16.102.4c-.024.143-.006.106-.012.18-.006.05-.006.112-.012.161-.013.05-.025.1-.044.149-.012.05-.03.1-.05.149l-.067.142c-.02.025-.031.05-.05.075l-.037.055a2.152 2.152 0 0 1-.093.124c-.037.038-.068.081-.112.112v.006c-.037.031-.074.068-.118.1-.13.099-.278.173-.415.266-.043.03-.087.056-.124.093a.906.906 0 0 0-.118.099c-.043.037-.074.074-.111.118-.031.037-.068.08-.093.124a1.582 1.582 0 0 0-.087.13c-.025.05-.043.093-.068.142-.019.05-.037.093-.05.143a2.007 2.007 0 0 0-.043.155c-.006.025-.006.056-.012.08-.007.025-.007.05-.013.075 0 .05-.006.105-.006.155 0 .037 0 .074.006.111 0 .05.006.1.019.155.006.05.018.1.03.15.02.049.032.098.05.148.013.03.031.062.044.087l-1.426-.552c-.241-.068-.477-.13-.719-.186l-.39-.093c-.372-.074-.75-.13-1.128-.167-.013 0-.019-.006-.031-.006A11.082 11.082 0 0 0 8.9 2.855c-.378.025-.756.074-1.134.136a12.45 12.45 0 0 0-.837.174l-.279.074c-.092.037-.18.08-.266.118l-.205.093c-.012.006-.024.006-.03.012-.063.031-.118.056-.174.087a2.738 2.738 0 0 0-.236.118c-.043.018-.086.043-.124.062a.559.559 0 0 1-.055.03c-.056.032-.112.063-.162.094a1.56 1.56 0 0 0-.148.093c-.044.03-.087.055-.124.086-.006.007-.013.007-.019.013-.037.025-.08.056-.118.087l-.012.012-.093.074c-.012.007-.025.019-.037.025-.031.025-.062.056-.093.08-.006.013-.019.02-.025.025-.037.038-.074.069-.111.106-.007 0-.007.006-.013.012a1.742 1.742 0 0 0-.111.106c-.007.006-.007.012-.013.012a1.454 1.454 0 0 0-.093.1c-.012.012-.03.024-.043.036a1.374 1.374 0 0 1-.106.112c-.006.012-.018.019-.024.03-.05.05-.093.1-.143.15l-.018.018c-.1.106-.205.211-.317.304-.111.1-.229.192-.347.273a3.777 3.777 0 0 1-.762.421c-.13.056-.267.106-.403.149-.26.056-.527.161-.756.18-.05 0-.105.012-.155.018l-.155.037-.149.056c-.05.019-.099.044-.148.068-.044.031-.093.056-.137.087a1.011 1.011 0 0 0-.124.106c-.043.03-.087.074-.124.111-.037.043-.074.08-.105.124-.031.05-.068.093-.093.143a1.092 1.092 0 0 0-.087.142c-.025.056-.05.106-.068.161-.019.05-.037.106-.056.161-.012.05-.025.1-.03.15 0 .005-.007.012-.007.018-.012.056-.012.13-.019.167C.006 7.95 0 7.986 0 8.03a.657.657 0 0 0 .074.31v.006c.019.037.044.075.069.112.024.037.05.074.08.111.031.031.068.069.106.1a.906.906 0 0 0 .117.099c.149.13.186.173.378.272.031.019.062.031.1.05.006 0 .012.006.018.006 0 .013 0 .019.006.031a1.272 1.272 0 0 0 .08.298c.02.037.032.074.05.111.007.013.013.025.02.031.024.05.049.093.073.137l.093.13c.031.037.069.08.106.118.037.037.074.068.118.105 0 0 .006.006.012.006.037.031.074.062.112.087a.986.986 0 0 0 .136.08c.043.025.093.05.142.069a.73.73 0 0 0 .124.043c.007.006.013.006.025.012.025.007.056.013.08.019-.018.335-.024.65.026.762.055.124.328-.254.6-.688-.036.428-.061.93 0 1.079.069.155.44-.329.763-.862 4.395-1.016 8.405 2.02 8.826 6.31-.08-.67-.905-1.041-1.283-.948-.186.458-.502 1.047-1.01 1.413.043-.41.025-.83-.062-1.24a4.009 4.009 0 0 1-.769 1.562c-.588.043-1.177-.242-1.487-.67-.025-.018-.031-.055-.05-.08-.018-.043-.037-.087-.05-.13a.515.515 0 0 1-.037-.13c-.006-.044-.006-.087-.006-.137v-.093a.992.992 0 0 1 .031-.13c.013-.043.025-.086.044-.13.024-.043.043-.087.074-.13.105-.298.105-.54-.087-.682a.706.706 0 0 0-.118-.062c-.024-.006-.055-.018-.08-.025l-.05-.018a.847.847 0 0 0-.13-.031.472.472 0 0 0-.13-.019 1.01 1.01 0 0 0-.136-.012c-.031 0-.062.006-.093.006a.484.484 0 0 0-.137.019c-.043.006-.086.012-.13.024a1.068 1.068 0 0 0-.13.044c-.043.018-.08.037-.124.056-.037.018-.074.043-.118.062-1.444.942-.582 3.148.403 3.787-.372.068-.75.148-.855.229l-.013.012c.267.161.546.298.837.416.397.13.818.247 1.004.297v.006a5.996 5.996 0 0 0 1.562.112c2.746-.192 4.996-2.281 5.405-5.033l.037.161c.019.112.043.23.056.347v.006c.012.056.018.112.025.162v.024c.006.056.012.112.012.162.006.068.012.136.012.204v.1c0 .03.007.067.007.098 0 .038-.007.075-.007.112v.087c0 .043-.006.08-.006.124 0 .025 0 .05-.006.08 0 .044-.006.087-.006.137-.006.018-.006.037-.006.055l-.02.143c0 .019 0 .037-.005.056-.007.062-.019.118-.025.18v.012l-.037.174v.018l-.037.167c0 .007-.007.02-.007.025a1.663 1.663 0 0 1-.043.168v.018c-.019.062-.037.118-.05.174-.006.006-.006.012-.006.012l-.056.186c-.024.062-.043.118-.068.18-.025.062-.043.124-.068.18-.025.062-.05.117-.074.18h-.007c-.024.055-.05.117-.08.173a.302.302 0 0 1-.019.043c-.006.006-.006.013-.012.019a5.867 5.867 0 0 1-1.742 2.082c-.05.031-.099.069-.149.106-.012.012-.03.018-.043.03a2.603 2.603 0 0 1-.136.094l.018.037h.007l.26-.037h.006c.161-.025.322-.056.483-.087.044-.006.093-.019.137-.031l.087-.019c.043-.006.086-.018.13-.024.037-.013.074-.02.111-.031.62-.15 1.221-.354 1.798-.595a9.926 9.926 0 0 1-3.85 3.142c.714-.05 1.426-.167 2.114-.366a9.903 9.903 0 0 0 5.857-4.68 9.893 9.893 0 0 1-1.667 3.986 9.758 9.758 0 0 0 1.655-1.376 9.824 9.824 0 0 0 2.61-5.268c.21.98.272 1.99.18 2.987 4.474-6.241.371-12.712-1.346-14.416-.006-.013-.012-.019-.012-.031-.006.006-.006.006-.006.012 0-.006 0-.006-.007-.012 0 .074-.006.148-.012.223a8.34 8.34 0 0 1-.062.415c-.03.136-.068.273-.105.41-.044.13-.093.266-.15.396a5.322 5.322 0 0 1-.185.378 4.735 4.735 0 0 1-.477.688c-.093.111-.192.21-.292.31a3.994 3.994 0 0 1-.18.155l-.142.124a3.459 3.459 0 0 1-.347.241 4.295 4.295 0 0 1-.366.211c-.13.062-.26.118-.39.174a4.364 4.364 0 0 1-.818.223c-.143.025-.285.037-.422.05a4.914 4.914 0 0 1-.297.012 4.66 4.66 0 0 1-.422-.025 3.137 3.137 0 0 1-.421-.062 3.136 3.136 0 0 1-.415-.105h-.007c.137-.013.273-.025.41-.05a4.493 4.493 0 0 0 .818-.223c.136-.05.266-.112.39-.174.13-.062.248-.13.372-.204.118-.08.235-.161.347-.248.112-.087.217-.18.316-.279.105-.093.198-.198.291-.304.093-.111.18-.223.26-.334.013-.019.026-.044.038-.062.062-.1.124-.199.18-.298a4.272 4.272 0 0 0 .334-.775c.044-.13.075-.266.106-.403.025-.142.05-.278.062-.415.012-.142.025-.285.025-.421 0-.1-.007-.199-.013-.298a6.726 6.726 0 0 0-.05-.415 4.493 4.493 0 0 0-.092-.415c-.044-.13-.087-.267-.137-.397-.05-.13-.111-.26-.173-.384-.069-.124-.137-.248-.211-.366a6.843 6.843 0 0 0-.248-.34c-.093-.106-.186-.212-.285-.317a3.878 3.878 0 0 0-.161-.155c-.28-.217-.57-.421-.862-.607a1.154 1.154 0 0 0-.124-.062 2.415 2.415 0 0 0-.589-.26Z" }) + ] + } + ); +}); + +export { SiNestjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.cjs new file mode 100644 index 000000000..f76758e88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0067C5"; +const SiNetapp = React__namespace.forwardRef(function SiNetapp2({ title = "NetApp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2v20h9.33V10h5.34v12H24V2Z" }) + ] + } + ); +}); + +exports.default = SiNetapp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.d.ts new file mode 100644 index 000000000..7c30bbac0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0067C5"; +declare const SiNetapp: IconType; +export { SiNetapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.mjs new file mode 100644 index 000000000..5ed147e7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetapp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0067C5"; +const SiNetapp = React.forwardRef(function SiNetapp2({ title = "NetApp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2v20h9.33V10h5.34v12H24V2Z" }) + ] + } + ); +}); + +export { SiNetapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.cjs new file mode 100644 index 000000000..ea955e469 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiNetbsd = React__namespace.forwardRef(function SiNetbsd2({ title = "NetBSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.686 10.681c0-.181.064-.336.193-.464a.634.634 0 0 1 .464-.193c.182 0 .336.065.465.193a.633.633 0 0 1 .192.464.635.635 0 0 1-.192.465.632.632 0 0 1-.465.193.634.634 0 0 1-.464-.193.634.634 0 0 1-.193-.465zm1.206 0a.53.53 0 0 0-.16-.388.53.53 0 0 0-.389-.16.53.53 0 0 0-.388.16.528.528 0 0 0-.161.388.53.53 0 0 0 .16.389.53.53 0 0 0 .39.161.529.529 0 0 0 .388-.161.53.53 0 0 0 .16-.389zm-.344.396-.207-.349h-.117v.349h-.114v-.808h.207c.194 0 .292.074.292.223 0 .104-.053.177-.157.22l.221.365zm-.324-.71v.27l.076.001c.075 0 .126-.01.151-.028.026-.02.04-.056.04-.11 0-.09-.059-.134-.175-.134h-.092m-3.892 3.28c0 .403.014.667.146.82.132.147.344.213.607.213 1.266 0 1.698-1.127 1.698-2.122 0-1.318-.695-2.1-2.02-2.1-.197 0-.336.036-.38.095-.044.058-.051.197-.051.424v2.67zm-1.046-2.319c0-.695-.015-.834-.352-.87l-.139-.015c-.073-.037-.073-.25.015-.257a30.521 30.521 0 0 1 1.96-.065c.6 0 1.2.059 1.706.241.958.344 1.485 1.208 1.485 2.122 0 .981-.468 1.771-1.31 2.188-.497.25-1.097.344-1.85.344-.345 0-.71-.044-.974-.044-.351 0-.724.008-1.141.022-.059-.044-.059-.22 0-.256l.226-.036c.33-.059.374-.11.374-.783v-2.59m-2.405 3.76c-.673 0-1.09-.19-1.244-.277-.139-.161-.234-.688-.234-1.186.051-.095.22-.102.278-.022.146.476.636 1.149 1.258 1.149.542 0 .79-.373.79-.74 0-.592-.555-.943-.994-1.163-.527-.263-1.098-.702-1.105-1.427 0-.827.636-1.398 1.697-1.398.242 0 .542.03.834.118.095.029.161.043.25.058.057.161.13.556.13 1.047-.036.087-.219.095-.285.022-.124-.374-.439-.908-.965-.908-.483 0-.747.315-.747.68 0 .337.3.645.666.835l.483.256c.454.242 1.032.666 1.032 1.471 0 .9-.74 1.486-1.844 1.486m-4.2-1.354c0 .57.072.93.643.93.542 0 .827-.418.827-1.01 0-.637-.366-1.084-1.068-1.084-.403 0-.403.007-.403.3v.864zm0-1.69c0 .19.007.204.387.204.63 0 .863-.402.863-.841 0-.637-.395-.952-.9-.952-.343 0-.35.06-.35.381zm-1.01-.71c0-.74-.015-.82-.322-.857l-.198-.03c-.066-.036-.08-.255.03-.263.555-.036 1.09-.065 1.821-.065.703 0 1.171.08 1.493.27.314.19.505.498.505.93 0 .615-.52.856-.747.915-.073.014-.146.044-.146.08 0 .022.037.044.103.059.578.124 1.068.504 1.075 1.214.007.673-.395 1.069-.856 1.23-.461.16-1.01.183-1.456.183-.263 0-.541-.03-.754-.03-.358 0-.717.008-1.134.022-.058-.044-.058-.234 0-.256l.213-.044c.329-.065.373-.117.373-.775v-2.584M9.038 12.44c-.095 0-.102.007-.102.168v1.097c0 .41 0 .864.512.864.102 0 .22-.051.307-.11.073.022.117.103.102.19-.204.22-.6.425-1.053.425-.607 0-.82-.351-.82-.834v-1.632c0-.154-.007-.168-.139-.168H7.62c-.08-.03-.103-.176-.044-.227.226-.08.431-.213.607-.33.132-.095.315-.248.541-.57.051-.03.183-.022.22.036v.549c0 .139.007.146.139.146h.651c.037.03.059.074.059.14 0 .08-.022.211-.095.256h-.66m-2.627.475c.103 0 .22-.015.3-.066.037-.022.051-.095.051-.168 0-.241-.139-.402-.388-.402-.307 0-.57.292-.57.526 0 .103.102.11.336.11zm-.483.322c-.168 0-.183.015-.183.132 0 .549.351 1.083 1.032 1.083.205 0 .483-.044.68-.38.08-.015.19.043.19.168-.3.622-.84.834-1.28.834-.988 0-1.522-.695-1.522-1.493 0-.922.666-1.64 1.58-1.64.762 0 1.171.491 1.171 1.055 0 .139-.036.241-.263.241H5.927m-1.255.49c0 .476 0 .937.014 1.179-.05.087-.256.168-.431.168-.008 0-.25-.373-.593-.798l-1.69-2.093c-.417-.527-.666-.826-.798-.936-.036.073-.036.197-.036.468v1.42c0 .593.029 1.141.11 1.339.065.154.234.198.424.234l.205.03c.058.058.044.212 0 .255a26.585 26.585 0 0 0-.98-.022c-.271 0-.542.008-.82.022-.044-.043-.059-.197 0-.256l.124-.022c.198-.044.337-.087.403-.241.073-.198.102-.746.102-1.34v-1.858c0-.402 0-.52-.051-.622-.051-.124-.161-.198-.417-.249l-.205-.029c-.051-.059-.044-.234.03-.256.343.014.709.022 1.009.022.249 0 .46-.008.615-.022.073.33.548.885 1.207 1.668l.614.725c.33.38.535.636.703.805.03-.073.03-.198.03-.33v-1.01c0-.592-.03-1.141-.11-1.339-.067-.153-.227-.197-.425-.234l-.198-.029c-.058-.059-.043-.212 0-.256.396.014.68.022.98.022.272 0 .535-.008.82-.022.044.044.059.197 0 .256l-.131.022c-.19.044-.33.088-.396.242-.08.197-.11.746-.11 1.339v1.749M21.537 3.59c-2.848-1.367-5.425-.715-8.306.148-2.902.868-5.482 1.337-8.381.154l.79 1.41.87 1.557.79 1.41c2.309.652 4.22-.194 6.271-1.22 2.463-1.23 4.688-2.337 7.502-1.696-2.378-1.19-4.534-.895-7.02-.22 2.434-1.24 4.726-2.204 7.484-1.543M13.16 20.478l-2.272-4.385H9.91l2.283 4.826s.23.455.724.203c.493-.25.245-.644.245-.644M4.634 4.025s-.068-.159-.26-.053c-.16.089-.077.253-.077.253l3.004 6.351h.728L4.634 4.025" }) + ] + } + ); +}); + +exports.default = SiNetbsd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.d.ts new file mode 100644 index 000000000..66f773786 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiNetbsd: IconType; +export { SiNetbsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.mjs new file mode 100644 index 000000000..6989e0357 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetbsd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiNetbsd = React.forwardRef(function SiNetbsd2({ title = "NetBSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.686 10.681c0-.181.064-.336.193-.464a.634.634 0 0 1 .464-.193c.182 0 .336.065.465.193a.633.633 0 0 1 .192.464.635.635 0 0 1-.192.465.632.632 0 0 1-.465.193.634.634 0 0 1-.464-.193.634.634 0 0 1-.193-.465zm1.206 0a.53.53 0 0 0-.16-.388.53.53 0 0 0-.389-.16.53.53 0 0 0-.388.16.528.528 0 0 0-.161.388.53.53 0 0 0 .16.389.53.53 0 0 0 .39.161.529.529 0 0 0 .388-.161.53.53 0 0 0 .16-.389zm-.344.396-.207-.349h-.117v.349h-.114v-.808h.207c.194 0 .292.074.292.223 0 .104-.053.177-.157.22l.221.365zm-.324-.71v.27l.076.001c.075 0 .126-.01.151-.028.026-.02.04-.056.04-.11 0-.09-.059-.134-.175-.134h-.092m-3.892 3.28c0 .403.014.667.146.82.132.147.344.213.607.213 1.266 0 1.698-1.127 1.698-2.122 0-1.318-.695-2.1-2.02-2.1-.197 0-.336.036-.38.095-.044.058-.051.197-.051.424v2.67zm-1.046-2.319c0-.695-.015-.834-.352-.87l-.139-.015c-.073-.037-.073-.25.015-.257a30.521 30.521 0 0 1 1.96-.065c.6 0 1.2.059 1.706.241.958.344 1.485 1.208 1.485 2.122 0 .981-.468 1.771-1.31 2.188-.497.25-1.097.344-1.85.344-.345 0-.71-.044-.974-.044-.351 0-.724.008-1.141.022-.059-.044-.059-.22 0-.256l.226-.036c.33-.059.374-.11.374-.783v-2.59m-2.405 3.76c-.673 0-1.09-.19-1.244-.277-.139-.161-.234-.688-.234-1.186.051-.095.22-.102.278-.022.146.476.636 1.149 1.258 1.149.542 0 .79-.373.79-.74 0-.592-.555-.943-.994-1.163-.527-.263-1.098-.702-1.105-1.427 0-.827.636-1.398 1.697-1.398.242 0 .542.03.834.118.095.029.161.043.25.058.057.161.13.556.13 1.047-.036.087-.219.095-.285.022-.124-.374-.439-.908-.965-.908-.483 0-.747.315-.747.68 0 .337.3.645.666.835l.483.256c.454.242 1.032.666 1.032 1.471 0 .9-.74 1.486-1.844 1.486m-4.2-1.354c0 .57.072.93.643.93.542 0 .827-.418.827-1.01 0-.637-.366-1.084-1.068-1.084-.403 0-.403.007-.403.3v.864zm0-1.69c0 .19.007.204.387.204.63 0 .863-.402.863-.841 0-.637-.395-.952-.9-.952-.343 0-.35.06-.35.381zm-1.01-.71c0-.74-.015-.82-.322-.857l-.198-.03c-.066-.036-.08-.255.03-.263.555-.036 1.09-.065 1.821-.065.703 0 1.171.08 1.493.27.314.19.505.498.505.93 0 .615-.52.856-.747.915-.073.014-.146.044-.146.08 0 .022.037.044.103.059.578.124 1.068.504 1.075 1.214.007.673-.395 1.069-.856 1.23-.461.16-1.01.183-1.456.183-.263 0-.541-.03-.754-.03-.358 0-.717.008-1.134.022-.058-.044-.058-.234 0-.256l.213-.044c.329-.065.373-.117.373-.775v-2.584M9.038 12.44c-.095 0-.102.007-.102.168v1.097c0 .41 0 .864.512.864.102 0 .22-.051.307-.11.073.022.117.103.102.19-.204.22-.6.425-1.053.425-.607 0-.82-.351-.82-.834v-1.632c0-.154-.007-.168-.139-.168H7.62c-.08-.03-.103-.176-.044-.227.226-.08.431-.213.607-.33.132-.095.315-.248.541-.57.051-.03.183-.022.22.036v.549c0 .139.007.146.139.146h.651c.037.03.059.074.059.14 0 .08-.022.211-.095.256h-.66m-2.627.475c.103 0 .22-.015.3-.066.037-.022.051-.095.051-.168 0-.241-.139-.402-.388-.402-.307 0-.57.292-.57.526 0 .103.102.11.336.11zm-.483.322c-.168 0-.183.015-.183.132 0 .549.351 1.083 1.032 1.083.205 0 .483-.044.68-.38.08-.015.19.043.19.168-.3.622-.84.834-1.28.834-.988 0-1.522-.695-1.522-1.493 0-.922.666-1.64 1.58-1.64.762 0 1.171.491 1.171 1.055 0 .139-.036.241-.263.241H5.927m-1.255.49c0 .476 0 .937.014 1.179-.05.087-.256.168-.431.168-.008 0-.25-.373-.593-.798l-1.69-2.093c-.417-.527-.666-.826-.798-.936-.036.073-.036.197-.036.468v1.42c0 .593.029 1.141.11 1.339.065.154.234.198.424.234l.205.03c.058.058.044.212 0 .255a26.585 26.585 0 0 0-.98-.022c-.271 0-.542.008-.82.022-.044-.043-.059-.197 0-.256l.124-.022c.198-.044.337-.087.403-.241.073-.198.102-.746.102-1.34v-1.858c0-.402 0-.52-.051-.622-.051-.124-.161-.198-.417-.249l-.205-.029c-.051-.059-.044-.234.03-.256.343.014.709.022 1.009.022.249 0 .46-.008.615-.022.073.33.548.885 1.207 1.668l.614.725c.33.38.535.636.703.805.03-.073.03-.198.03-.33v-1.01c0-.592-.03-1.141-.11-1.339-.067-.153-.227-.197-.425-.234l-.198-.029c-.058-.059-.043-.212 0-.256.396.014.68.022.98.022.272 0 .535-.008.82-.022.044.044.059.197 0 .256l-.131.022c-.19.044-.33.088-.396.242-.08.197-.11.746-.11 1.339v1.749M21.537 3.59c-2.848-1.367-5.425-.715-8.306.148-2.902.868-5.482 1.337-8.381.154l.79 1.41.87 1.557.79 1.41c2.309.652 4.22-.194 6.271-1.22 2.463-1.23 4.688-2.337 7.502-1.696-2.378-1.19-4.534-.895-7.02-.22 2.434-1.24 4.726-2.204 7.484-1.543M13.16 20.478l-2.272-4.385H9.91l2.283 4.826s.23.455.724.203c.493-.25.245-.644.245-.644M4.634 4.025s-.068-.159-.26-.053c-.16.089-.077.253-.077.253l3.004 6.351h.728L4.634 4.025" }) + ] + } + ); +}); + +export { SiNetbsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.cjs new file mode 100644 index 000000000..3d9f9f04f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#056473"; +const SiNetcup = React__namespace.forwardRef(function SiNetcup2({ title = "netcup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.25 0A5.239 5.239 0 0 0 0 5.25v13.5A5.239 5.239 0 0 0 5.25 24h13.5A5.239 5.239 0 0 0 24 18.75V5.25A5.239 5.239 0 0 0 18.75 0H5.25zm-.045 5.102h9.482c1.745 0 2.631.907 2.631 2.753v8.352h1.477v2.691h-4.666V8.58c0-.514-.298-.785-.889-.785H9.873v11.103H6.682V7.795H5.205V5.102z" }) + ] + } + ); +}); + +exports.default = SiNetcup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.d.ts new file mode 100644 index 000000000..7dba95b83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#056473"; +declare const SiNetcup: IconType; +export { SiNetcup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.mjs new file mode 100644 index 000000000..5cf14d6b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetcup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#056473"; +const SiNetcup = React.forwardRef(function SiNetcup2({ title = "netcup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.25 0A5.239 5.239 0 0 0 0 5.25v13.5A5.239 5.239 0 0 0 5.25 24h13.5A5.239 5.239 0 0 0 24 18.75V5.25A5.239 5.239 0 0 0 18.75 0H5.25zm-.045 5.102h9.482c1.745 0 2.631.907 2.631 2.753v8.352h1.477v2.691h-4.666V8.58c0-.514-.298-.785-.889-.785H9.873v11.103H6.682V7.795H5.205V5.102z" }) + ] + } + ); +}); + +export { SiNetcup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.cjs new file mode 100644 index 000000000..846111572 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AB44"; +const SiNetdata = React__namespace.forwardRef(function SiNetdata2({ title = "Netdata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.764 21.827H9.922L0 2.173h14.084c5.476.01 9.913 4.565 9.916 10.183-.009 5.235-4.14 9.47-9.238 9.47z" }) + ] + } + ); +}); + +exports.default = SiNetdata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.d.ts new file mode 100644 index 000000000..d5f1268c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AB44"; +declare const SiNetdata: IconType; +export { SiNetdata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.mjs new file mode 100644 index 000000000..ddc657caf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetdata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AB44"; +const SiNetdata = React.forwardRef(function SiNetdata2({ title = "Netdata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.764 21.827H9.922L0 2.173h14.084c5.476.01 9.913 4.565 9.916 10.183-.009 5.235-4.14 9.47-9.238 9.47z" }) + ] + } + ); +}); + +export { SiNetdata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.cjs new file mode 100644 index 000000000..e9a0a51e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D43C33"; +const SiNeteasecloudmusic = React__namespace.forwardRef(function SiNeteasecloudmusic2({ title = "NetEase Cloud Music", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.046 9.388a3.919 3.919 0 0 0-.66.19c-.809.312-1.447.991-1.666 1.775a2.269 2.269 0 0 0-.074.81c.048.546.333 1.05.764 1.35a1.483 1.483 0 0 0 2.01-.286c.406-.531.355-1.183.24-1.636-.098-.387-.22-.816-.345-1.249a64.76 64.76 0 0 1-.269-.954zm-.82 10.07c-3.984 0-7.224-3.24-7.224-7.223 0-.98.226-3.02 1.884-4.822A7.188 7.188 0 0 1 9.502 5.6a.792.792 0 1 1 .587 1.472 5.619 5.619 0 0 0-2.795 2.462 5.538 5.538 0 0 0-.707 2.7 5.645 5.645 0 0 0 5.638 5.638c1.844 0 3.627-.953 4.542-2.428 1.042-1.68.772-3.931-.627-5.238a3.299 3.299 0 0 0-1.437-.777c.172.589.334 1.18.494 1.772.284 1.12.1 2.181-.519 2.989-.39.51-.956.888-1.592 1.064a3.038 3.038 0 0 1-2.58-.44 3.45 3.45 0 0 1-1.44-2.514c-.04-.467.002-.93.128-1.376.35-1.256 1.356-2.339 2.622-2.826a5.5 5.5 0 0 1 .823-.246l-.134-.505c-.37-1.371.25-2.579 1.547-3.007.329-.109.68-.145 1.025-.105.792.09 1.476.592 1.709 1.023.258.507-.096 1.153-.706 1.153a.788.788 0 0 1-.54-.213c-.088-.08-.163-.174-.259-.247a.825.825 0 0 0-.632-.166.807.807 0 0 0-.634.551c-.056.191-.031.406.02.595.07.256.159.597.217.82 1.11.098 2.162.54 2.97 1.296 1.974 1.844 2.35 4.886.892 7.233-1.197 1.93-3.509 3.177-5.889 3.177zM0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0 0 5.373 0 12Z" }) + ] + } + ); +}); + +exports.default = SiNeteasecloudmusic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.d.ts new file mode 100644 index 000000000..08c1d11a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D43C33"; +declare const SiNeteasecloudmusic: IconType; +export { SiNeteasecloudmusic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.mjs new file mode 100644 index 000000000..a940eb3f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeteasecloudmusic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D43C33"; +const SiNeteasecloudmusic = React.forwardRef(function SiNeteasecloudmusic2({ title = "NetEase Cloud Music", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.046 9.388a3.919 3.919 0 0 0-.66.19c-.809.312-1.447.991-1.666 1.775a2.269 2.269 0 0 0-.074.81c.048.546.333 1.05.764 1.35a1.483 1.483 0 0 0 2.01-.286c.406-.531.355-1.183.24-1.636-.098-.387-.22-.816-.345-1.249a64.76 64.76 0 0 1-.269-.954zm-.82 10.07c-3.984 0-7.224-3.24-7.224-7.223 0-.98.226-3.02 1.884-4.822A7.188 7.188 0 0 1 9.502 5.6a.792.792 0 1 1 .587 1.472 5.619 5.619 0 0 0-2.795 2.462 5.538 5.538 0 0 0-.707 2.7 5.645 5.645 0 0 0 5.638 5.638c1.844 0 3.627-.953 4.542-2.428 1.042-1.68.772-3.931-.627-5.238a3.299 3.299 0 0 0-1.437-.777c.172.589.334 1.18.494 1.772.284 1.12.1 2.181-.519 2.989-.39.51-.956.888-1.592 1.064a3.038 3.038 0 0 1-2.58-.44 3.45 3.45 0 0 1-1.44-2.514c-.04-.467.002-.93.128-1.376.35-1.256 1.356-2.339 2.622-2.826a5.5 5.5 0 0 1 .823-.246l-.134-.505c-.37-1.371.25-2.579 1.547-3.007.329-.109.68-.145 1.025-.105.792.09 1.476.592 1.709 1.023.258.507-.096 1.153-.706 1.153a.788.788 0 0 1-.54-.213c-.088-.08-.163-.174-.259-.247a.825.825 0 0 0-.632-.166.807.807 0 0 0-.634.551c-.056.191-.031.406.02.595.07.256.159.597.217.82 1.11.098 2.162.54 2.97 1.296 1.974 1.844 2.35 4.886.892 7.233-1.197 1.93-3.509 3.177-5.889 3.177zM0 12c0 6.627 5.373 12 12 12s12-5.373 12-12S18.627 0 12 0 0 5.373 0 12Z" }) + ] + } + ); +}); + +export { SiNeteasecloudmusic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.cjs new file mode 100644 index 000000000..909546de4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E50914"; +const SiNetflix = React__namespace.forwardRef(function SiNetflix2({ title = "Netflix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m5.398 0 8.348 23.602c2.346.059 4.856.398 4.856.398L10.113 0H5.398zm8.489 0v9.172l4.715 13.33V0h-4.715zM5.398 1.5V24c1.873-.225 2.81-.312 4.715-.398V14.83L5.398 1.5z" }) + ] + } + ); +}); + +exports.default = SiNetflix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.d.ts new file mode 100644 index 000000000..f2da398bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E50914"; +declare const SiNetflix: IconType; +export { SiNetflix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.mjs new file mode 100644 index 000000000..a07bf40ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetflix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E50914"; +const SiNetflix = React.forwardRef(function SiNetflix2({ title = "Netflix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m5.398 0 8.348 23.602c2.346.059 4.856.398 4.856.398L10.113 0H5.398zm8.489 0v9.172l4.715 13.33V0h-4.715zM5.398 1.5V24c1.873-.225 2.81-.312 4.715-.398V14.83L5.398 1.5z" }) + ] + } + ); +}); + +export { SiNetflix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.cjs new file mode 100644 index 000000000..9810a8282 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C262D"; +const SiNetgear = React__namespace.forwardRef(function SiNetgear2({ title = "NETGEAR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.496 12.459h.678c-.035.362-.296.545-.67.545-.566 0-.849-.496-.849-.982 0-.479.244-.991.811-.991.347 0 .598.2.716.499l.817-.324c-.285-.588-.813-.88-1.493-.88-1.068 0-1.746.672-1.746 1.691 0 .987.699 1.657 1.74 1.657.555 0 1.017-.186 1.341-.616.295-.391.329-.782.338-1.24h-1.683v.641ZM6.86 11.122h.833v2.449h.874v-2.449h.834v-.692H6.86v.692Zm-4.565 1.229h-.009L.861 10.43H0v3.141h.861v-1.924H.87l1.425 1.924h.861V10.43h-.861v1.921Zm15.414-1.921-1.157 3.141h.889l.19-.578h1.149l.189.578h.889l-1.156-3.141h-.993ZM4.174 13.571h2.098v-.691H5.036v-.543h1.185v-.69H5.036v-.525h1.236v-.692H4.174v3.141Zm9.761 0h2.099v-.691h-1.237v-.543h1.185v-.69h-1.185v-.525h1.237v-.692h-2.099v3.141Zm8.954-2.174c0-.67-.497-.967-1.15-.967h-1.34v3.141h.86v-1.208h.062l.785 1.208h1.046l-.987-1.287c.47-.079.724-.453.724-.887Zm-5.054.971.358-1.096h.024l.359 1.096h-.741Zm3.646-.53h-.222v-.782h.247c.282 0 .522.049.522.391s-.265.391-.547.391Zm2.133-1.408c-.202 0-.386.157-.386.378 0 .218.186.38.386.38.202 0 .386-.16.386-.38 0-.225-.18-.378-.386-.378Zm0 .688c-.164 0-.315-.13-.315-.31 0-.183.149-.311.316-.311.164 0 .316.132.316.311 0 .183-.15.31-.317.31Zm.184-.404c0-.104-.101-.122-.174-.122h-.161v.416h.11v-.164h.033l.075.164h.121l-.089-.182c.049-.016.085-.054.085-.112Zm-.185.061h-.04v-.111h.033c.037 0 .079.006.079.057 0 .045-.039.054-.072.054Z" }) + ] + } + ); +}); + +exports.default = SiNetgear; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.d.ts new file mode 100644 index 000000000..8942dae16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C262D"; +declare const SiNetgear: IconType; +export { SiNetgear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.mjs new file mode 100644 index 000000000..8562df226 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetgear.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C262D"; +const SiNetgear = React.forwardRef(function SiNetgear2({ title = "NETGEAR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.496 12.459h.678c-.035.362-.296.545-.67.545-.566 0-.849-.496-.849-.982 0-.479.244-.991.811-.991.347 0 .598.2.716.499l.817-.324c-.285-.588-.813-.88-1.493-.88-1.068 0-1.746.672-1.746 1.691 0 .987.699 1.657 1.74 1.657.555 0 1.017-.186 1.341-.616.295-.391.329-.782.338-1.24h-1.683v.641ZM6.86 11.122h.833v2.449h.874v-2.449h.834v-.692H6.86v.692Zm-4.565 1.229h-.009L.861 10.43H0v3.141h.861v-1.924H.87l1.425 1.924h.861V10.43h-.861v1.921Zm15.414-1.921-1.157 3.141h.889l.19-.578h1.149l.189.578h.889l-1.156-3.141h-.993ZM4.174 13.571h2.098v-.691H5.036v-.543h1.185v-.69H5.036v-.525h1.236v-.692H4.174v3.141Zm9.761 0h2.099v-.691h-1.237v-.543h1.185v-.69h-1.185v-.525h1.237v-.692h-2.099v3.141Zm8.954-2.174c0-.67-.497-.967-1.15-.967h-1.34v3.141h.86v-1.208h.062l.785 1.208h1.046l-.987-1.287c.47-.079.724-.453.724-.887Zm-5.054.971.358-1.096h.024l.359 1.096h-.741Zm3.646-.53h-.222v-.782h.247c.282 0 .522.049.522.391s-.265.391-.547.391Zm2.133-1.408c-.202 0-.386.157-.386.378 0 .218.186.38.386.38.202 0 .386-.16.386-.38 0-.225-.18-.378-.386-.378Zm0 .688c-.164 0-.315-.13-.315-.31 0-.183.149-.311.316-.311.164 0 .316.132.316.311 0 .183-.15.31-.317.31Zm.184-.404c0-.104-.101-.122-.174-.122h-.161v.416h.11v-.164h.033l.075.164h.121l-.089-.182c.049-.016.085-.054.085-.112Zm-.185.061h-.04v-.111h.033c.037 0 .079.006.079.057 0 .045-.039.054-.072.054Z" }) + ] + } + ); +}); + +export { SiNetgear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.cjs new file mode 100644 index 000000000..7edfcaed1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE8427"; +const SiNetim = React__namespace.forwardRef(function SiNetim2({ title = "Netim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.305 11.95c-1.014-1.134-2.772-1.242-3.927-.248l-.67.577a2.48 2.48 0 0 1 1.274 2.309 2.493 2.493 0 0 1-2.403 2.35 2.488 2.488 0 0 1-2.564-2.484c.067-1.745 1.41-2.484 2.517-2.484l-2.745-6.504c-.59-1.396-2.215-2.054-3.631-1.477-.296.128-1.101.463-1.55 1.484l-2.149 4.994L5.35 5.486C4.765 4.09 3.134 3.432 1.718 4.009.295 4.586-.376 6.184.214 7.574l4.632 10.96c.59 1.397 2.215 2.055 3.631 1.477.437-.194 1.108-.53 1.55-1.483l2.149-4.994 2.108 4.987a2.756 2.756 0 0 0 1.644 1.53 2.83 2.83 0 0 0 2.806-.51l4.33-3.738a2.7 2.7 0 0 0 .241-3.853z" }) + ] + } + ); +}); + +exports.default = SiNetim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.d.ts new file mode 100644 index 000000000..c15c1b865 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE8427"; +declare const SiNetim: IconType; +export { SiNetim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.mjs new file mode 100644 index 000000000..369df588b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE8427"; +const SiNetim = React.forwardRef(function SiNetim2({ title = "Netim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.305 11.95c-1.014-1.134-2.772-1.242-3.927-.248l-.67.577a2.48 2.48 0 0 1 1.274 2.309 2.493 2.493 0 0 1-2.403 2.35 2.488 2.488 0 0 1-2.564-2.484c.067-1.745 1.41-2.484 2.517-2.484l-2.745-6.504c-.59-1.396-2.215-2.054-3.631-1.477-.296.128-1.101.463-1.55 1.484l-2.149 4.994L5.35 5.486C4.765 4.09 3.134 3.432 1.718 4.009.295 4.586-.376 6.184.214 7.574l4.632 10.96c.59 1.397 2.215 2.055 3.631 1.477.437-.194 1.108-.53 1.55-1.483l2.149-4.994 2.108 4.987a2.756 2.756 0 0 0 1.644 1.53 2.83 2.83 0 0 0 2.806-.51l4.33-3.738a2.7 2.7 0 0 0 .241-3.853z" }) + ] + } + ); +}); + +export { SiNetim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.cjs new file mode 100644 index 000000000..d999b80a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00C7B7"; +const SiNetlify = React__namespace.forwardRef(function SiNetlify2({ title = "Netlify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.49 19.04h-.23L5.13 17.9v-.23l1.73-1.71h1.2l.15.15v1.2L6.5 19.04ZM5.13 6.31V6.1l1.13-1.13h.23L8.2 6.68v1.2l-.15.15h-1.2L5.13 6.31Zm9.96 9.09h-1.65l-.14-.13v-3.83c0-.68-.27-1.2-1.1-1.23-.42 0-.9 0-1.43.02l-.07.08v4.96l-.14.14H8.9l-.13-.14V8.73l.13-.14h3.7a2.6 2.6 0 0 1 2.61 2.6v4.08l-.13.14Zm-8.37-2.44H.14L0 12.82v-1.64l.14-.14h6.58l.14.14v1.64l-.14.14Zm17.14 0h-6.58l-.14-.14v-1.64l.14-.14h6.58l.14.14v1.64l-.14.14ZM11.05 6.55V1.64l.14-.14h1.65l.14.14v4.9l-.14.14h-1.65l-.14-.13Zm0 15.81v-4.9l.14-.14h1.65l.14.13v4.91l-.14.14h-1.65l-.14-.14Z" }) + ] + } + ); +}); + +exports.default = SiNetlify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.d.ts new file mode 100644 index 000000000..5e9492642 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00C7B7"; +declare const SiNetlify: IconType; +export { SiNetlify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.mjs new file mode 100644 index 000000000..5ea20567b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetlify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00C7B7"; +const SiNetlify = React.forwardRef(function SiNetlify2({ title = "Netlify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.49 19.04h-.23L5.13 17.9v-.23l1.73-1.71h1.2l.15.15v1.2L6.5 19.04ZM5.13 6.31V6.1l1.13-1.13h.23L8.2 6.68v1.2l-.15.15h-1.2L5.13 6.31Zm9.96 9.09h-1.65l-.14-.13v-3.83c0-.68-.27-1.2-1.1-1.23-.42 0-.9 0-1.43.02l-.07.08v4.96l-.14.14H8.9l-.13-.14V8.73l.13-.14h3.7a2.6 2.6 0 0 1 2.61 2.6v4.08l-.13.14Zm-8.37-2.44H.14L0 12.82v-1.64l.14-.14h6.58l.14.14v1.64l-.14.14Zm17.14 0h-6.58l-.14-.14v-1.64l.14-.14h6.58l.14.14v1.64l-.14.14ZM11.05 6.55V1.64l.14-.14h1.65l.14.14v4.9l-.14.14h-1.65l-.14-.13Zm0 15.81v-4.9l.14-.14h1.65l.14.13v4.91l-.14.14h-1.65l-.14-.14Z" }) + ] + } + ); +}); + +export { SiNetlify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNette.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNette.cjs new file mode 100644 index 000000000..9a467a97c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNette.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3484D2"; +const SiNette = React__namespace.forwardRef(function SiNette2({ title = "Nette", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.244 14.334c-.341.243-.558.39-.65.443-.488.29-.934.437-1.338.437-.226 0-.446-.053-.663-.155a1.17 1.17 0 0 1-.486-.403.988.988 0 0 1-.162-.556c0-.292.099-.663.296-1.113.282-.658.433-1.01.452-1.057a.497.497 0 0 1-.015-.127 2.511 2.511 0 0 0-.268.127 7.1 7.1 0 0 0-.774.578 13.77 13.77 0 0 0-.691.676 6.005 6.005 0 0 0-.085 1.001c0 .253.015.507.043.761l-1.705.268A6.198 6.198 0 0 1 0 13.706c0-.292.028-.588.085-.889.056-.3.16-.638.309-1.014.104-.263.249-.592.437-.987l1.959-.324c-.122.301-.211.526-.267.677a9.26 9.26 0 0 0-.254.691c.47-.433.94-.767 1.409-1.001.376-.188.714-.282 1.015-.282.17 0 .343.032.522.098.178.066.307.17.387.311.08.141.12.309.12.507 0 .282-.08.629-.24 1.043-.188.47-.371.939-.549 1.409 0 .066.024.106.07.12a.49.49 0 0 0 .141.02c.189 0 .469-.098.841-.294a1.74 1.74 0 0 1-.052-.424c0-.226.032-.441.098-.648.066-.207.166-.423.297-.648.234-.386.564-.714.986-.987a3.45 3.45 0 0 1 1.339-.521c.17-.019.3-.029.395-.029.31 0 .587.052.831.156.244.103.446.272.606.507.094.15.141.301.141.45 0 .236-.117.466-.352.691-.169.16-.397.311-.684.451a6.777 6.777 0 0 1-.853.352c-.206.066-.498.147-.873.24.122.254.296.459.522.614.225.154.464.232.718.232.386 0 .771-.099 1.156-.296.018-.01.312-.195.883-.557a4.035 4.035 0 0 1 .096-.641l.047-.214 2.035-.121-.151.525a1.982 1.982 0 0 0-.092.529c0 .226.045.383.135.471.089.09.217.135.387.135.244 0 .563-.103.958-.31l.454-.274c.003-.075.009-.156.018-.241.014-.135.043-.303.084-.5l.048-.213 2.034-.122c-.048.17-.098.345-.151.525-.06.211-.092.388-.092.529 0 .226.045.383.135.471.089.09.218.135.387.135.245 0 .565-.103.959-.31l.294-.178a1.505 1.505 0 0 1-.013-.203c0-.226.034-.441.099-.648.066-.207.165-.423.296-.648.234-.386.564-.714.986-.987.424-.272.87-.447 1.339-.521.17-.019.302-.029.396-.029.309 0 .586.052.831.156.243.103.446.272.605.507.094.15.141.301.141.45 0 .236-.117.466-.352.691-.168.16-.396.311-.683.451a6.902 6.902 0 0 1-.853.352c-.207.066-.498.147-.874.24.122.254.296.459.522.614.226.154.465.232.718.232.386 0 .771-.099 1.156-.296.019-.01.338-.211.958-.606v.634c-.056.038-.281.198-.675.479a4.575 4.575 0 0 1-.72.437c-.47.207-.987.31-1.55.31-.375 0-.709-.045-1.001-.133a2.078 2.078 0 0 1-.803-.473 1.58 1.58 0 0 1-.357-.456c-.414.3-.732.513-.954.64-.497.281-.949.422-1.352.422-.227 0-.41-.014-.62-.113-.358-.15-.607-.345-.748-.584a1.504 1.504 0 0 1-.158-.397c-.435.316-.768.54-.997.672-.498.281-.949.422-1.353.422-.227 0-.41-.014-.62-.113-.358-.15-.606-.345-.748-.584a1.505 1.505 0 0 1-.177-.493c-.099.067-.307.216-.625.443a4.667 4.667 0 0 1-.719.437c-.47.207-.987.31-1.55.31-.377 0-.71-.045-1.001-.133a2.089 2.089 0 0 1-.804-.473 1.66 1.66 0 0 1-.224-.245zm2.832-2.574a.786.786 0 0 0 .013-.169c0-.244-.102-.366-.309-.366a.757.757 0 0 0-.155.028c-.282.066-.503.245-.663.536a1.885 1.885 0 0 0-.239.915c.395-.102.681-.206.859-.309.292-.16.456-.371.494-.635zm12.782 0a.715.715 0 0 0 .014-.169c0-.244-.103-.366-.31-.366a.768.768 0 0 0-.155.028c-.281.066-.503.245-.662.536-.16.291-.24.597-.24.915.395-.102.682-.206.86-.309.291-.16.455-.371.493-.635zm-10.838.043l.283-1.113.578-.028.549-1.509 2.085-.366-.591 1.776.944-.043-.253 1.057c-1.198.082-2.395.155-3.595.226zm3.877 0l.281-1.113.578-.028.549-1.509 2.086-.366-.592 1.776.944-.043-.253 1.057c-1.201.082-2.408.156-3.593.226z" }) + ] + } + ); +}); + +exports.default = SiNette; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNette.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNette.d.ts new file mode 100644 index 000000000..4a7c35bb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNette.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3484D2"; +declare const SiNette: IconType; +export { SiNette as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNette.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNette.mjs new file mode 100644 index 000000000..f568e61b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNette.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3484D2"; +const SiNette = React.forwardRef(function SiNette2({ title = "Nette", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.244 14.334c-.341.243-.558.39-.65.443-.488.29-.934.437-1.338.437-.226 0-.446-.053-.663-.155a1.17 1.17 0 0 1-.486-.403.988.988 0 0 1-.162-.556c0-.292.099-.663.296-1.113.282-.658.433-1.01.452-1.057a.497.497 0 0 1-.015-.127 2.511 2.511 0 0 0-.268.127 7.1 7.1 0 0 0-.774.578 13.77 13.77 0 0 0-.691.676 6.005 6.005 0 0 0-.085 1.001c0 .253.015.507.043.761l-1.705.268A6.198 6.198 0 0 1 0 13.706c0-.292.028-.588.085-.889.056-.3.16-.638.309-1.014.104-.263.249-.592.437-.987l1.959-.324c-.122.301-.211.526-.267.677a9.26 9.26 0 0 0-.254.691c.47-.433.94-.767 1.409-1.001.376-.188.714-.282 1.015-.282.17 0 .343.032.522.098.178.066.307.17.387.311.08.141.12.309.12.507 0 .282-.08.629-.24 1.043-.188.47-.371.939-.549 1.409 0 .066.024.106.07.12a.49.49 0 0 0 .141.02c.189 0 .469-.098.841-.294a1.74 1.74 0 0 1-.052-.424c0-.226.032-.441.098-.648.066-.207.166-.423.297-.648.234-.386.564-.714.986-.987a3.45 3.45 0 0 1 1.339-.521c.17-.019.3-.029.395-.029.31 0 .587.052.831.156.244.103.446.272.606.507.094.15.141.301.141.45 0 .236-.117.466-.352.691-.169.16-.397.311-.684.451a6.777 6.777 0 0 1-.853.352c-.206.066-.498.147-.873.24.122.254.296.459.522.614.225.154.464.232.718.232.386 0 .771-.099 1.156-.296.018-.01.312-.195.883-.557a4.035 4.035 0 0 1 .096-.641l.047-.214 2.035-.121-.151.525a1.982 1.982 0 0 0-.092.529c0 .226.045.383.135.471.089.09.217.135.387.135.244 0 .563-.103.958-.31l.454-.274c.003-.075.009-.156.018-.241.014-.135.043-.303.084-.5l.048-.213 2.034-.122c-.048.17-.098.345-.151.525-.06.211-.092.388-.092.529 0 .226.045.383.135.471.089.09.218.135.387.135.245 0 .565-.103.959-.31l.294-.178a1.505 1.505 0 0 1-.013-.203c0-.226.034-.441.099-.648.066-.207.165-.423.296-.648.234-.386.564-.714.986-.987.424-.272.87-.447 1.339-.521.17-.019.302-.029.396-.029.309 0 .586.052.831.156.243.103.446.272.605.507.094.15.141.301.141.45 0 .236-.117.466-.352.691-.168.16-.396.311-.683.451a6.902 6.902 0 0 1-.853.352c-.207.066-.498.147-.874.24.122.254.296.459.522.614.226.154.465.232.718.232.386 0 .771-.099 1.156-.296.019-.01.338-.211.958-.606v.634c-.056.038-.281.198-.675.479a4.575 4.575 0 0 1-.72.437c-.47.207-.987.31-1.55.31-.375 0-.709-.045-1.001-.133a2.078 2.078 0 0 1-.803-.473 1.58 1.58 0 0 1-.357-.456c-.414.3-.732.513-.954.64-.497.281-.949.422-1.352.422-.227 0-.41-.014-.62-.113-.358-.15-.607-.345-.748-.584a1.504 1.504 0 0 1-.158-.397c-.435.316-.768.54-.997.672-.498.281-.949.422-1.353.422-.227 0-.41-.014-.62-.113-.358-.15-.606-.345-.748-.584a1.505 1.505 0 0 1-.177-.493c-.099.067-.307.216-.625.443a4.667 4.667 0 0 1-.719.437c-.47.207-.987.31-1.55.31-.377 0-.71-.045-1.001-.133a2.089 2.089 0 0 1-.804-.473 1.66 1.66 0 0 1-.224-.245zm2.832-2.574a.786.786 0 0 0 .013-.169c0-.244-.102-.366-.309-.366a.757.757 0 0 0-.155.028c-.282.066-.503.245-.663.536a1.885 1.885 0 0 0-.239.915c.395-.102.681-.206.859-.309.292-.16.456-.371.494-.635zm12.782 0a.715.715 0 0 0 .014-.169c0-.244-.103-.366-.31-.366a.768.768 0 0 0-.155.028c-.281.066-.503.245-.662.536-.16.291-.24.597-.24.915.395-.102.682-.206.86-.309.291-.16.455-.371.493-.635zm-10.838.043l.283-1.113.578-.028.549-1.509 2.085-.366-.591 1.776.944-.043-.253 1.057c-1.198.082-2.395.155-3.595.226zm3.877 0l.281-1.113.578-.028.549-1.509 2.086-.366-.592 1.776.944-.043-.253 1.057c-1.201.082-2.408.156-3.593.226z" }) + ] + } + ); +}); + +export { SiNette as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.cjs new file mode 100644 index 000000000..511a34ab3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE500"; +const SiNetto = React__namespace.forwardRef(function SiNetto2({ title = "Netto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.878 6.859a.708.708 0 0 0-.434.157.638.638 0 0 0-.228.397L.01 13.625a.633.633 0 0 0 .12.506.62.62 0 0 0 .47.217h20.24v.012c.18 0 .373-.012.553-.036a2.735 2.735 0 0 0 1.084-.35 2.66 2.66 0 0 0 .843-.794c.144-.217.265-.446.361-.686.096-.23.168-.47.217-.723.048-.24.084-.481.096-.734.012-.241 0-.494-.012-.747a2.32 2.32 0 0 0-.145-.602 1.554 1.554 0 0 0-.313-.505 2.07 2.07 0 0 0-.47-.374 2.123 2.123 0 0 0-.565-.216 5.148 5.148 0 0 0-.458-.085 6.125 6.125 0 0 0-.47-.024h-.192a4.234 4.234 0 0 0-.41.049c-.131.024-.264.048-.384.084a1.997 1.997 0 0 0-.374.143c-.12.06-.228.12-.337.194a3.082 3.082 0 0 0-.313.24c-.06.06-.132.12-.18.192l.024-.107a.633.633 0 0 0-.12-.507.62.62 0 0 0-.47-.216h-.602l.096-.53a.633.633 0 0 0-.12-.505.62.62 0 0 0-.47-.217h-.963a.708.708 0 0 0-.433.157.638.638 0 0 0-.23.397l-.133.699h-1.08l.095-.53a.633.633 0 0 0-.12-.506.62.62 0 0 0-.47-.217h-.963a.707.707 0 0 0-.433.157.639.639 0 0 0-.23.397l-.132.699h-.313a.707.707 0 0 0-.433.156.638.638 0 0 0-.229.397l-.036.205a1.803 1.803 0 0 0-.518-.481 2.168 2.168 0 0 0-.674-.253 3.455 3.455 0 0 0-.807-.085c-.096 0-.18 0-.277.011a3.202 3.202 0 0 0-.819.146 2.114 2.114 0 0 0-.385.143c-.12.06-.24.12-.348.194a2.98 2.98 0 0 0-.326.252 8.369 8.368 0 0 0-.29.3 3.58 3.58 0 0 0-.24.35c-.024.037-.036.073-.06.109 0 0 0 .012-.012 0-.012 0 0-.012 0-.012l.47-2.409a.633.633 0 0 0-.12-.505.62.62 0 0 0-.47-.216H5.658a.707.707 0 0 0-.433.157.638.638 0 0 0-.23.396l-.408 2.13-.494-2.141a.502.502 0 0 0-.096-.217.633.633 0 0 0-.145-.168.707.707 0 0 0-.433-.157zm-.012.458h1.469c.108 0 .217.084.24.192l.952 4.118c0 .011.024.011.024 0l.806-4.119a.243.243 0 0 1 .23-.192h1.07c.12 0 .18.084.17.192l-1.193 6.128a.243.243 0 0 1-.228.194H3.9a.257.257 0 0 1-.241-.194l-.94-4.056c0-.013-.022-.013-.022 0l-.795 4.056a.243.243 0 0 1-.23.194H.603c-.11 0-.18-.085-.158-.194L1.637 7.51a.243.243 0 0 1 .229-.192zm14.846.42h.963c.108 0 .18.085.157.194l-.205 1.035c0 .012 0 .012.012.012h1.132c.108 0 .18.084.156.193l-.132.674a.243.243 0 0 1-.23.192h-1.131c-.012 0-.012 0-.012.012l-.41 2.144c-.06.324.085.552.314.59.325.06.674.01.95 0 .013 0 .013.011.013.011l-.144.746c-.012.06-.036.109-.097.133-.132.072-.445.192-1.06.192-1.3 0-1.469-.95-1.3-1.842l.385-1.986c0-.013 0-.012-.012-.012h-1.963v.047c-.012 0-.012 0-.012.013l-.409 2.143c-.06.325.084.554.313.59.325.06.674.012.951 0 .012 0 .012.012.012.012l-.144.746c-.012.06-.036.11-.097.133-.132.072-.445.192-1.06.192-1.3 0-1.456-.95-1.3-1.842l.386-1.987c0-.012 0-.01-.012-.01h-.674c-.109 0-.18-.086-.157-.194l.132-.674a.243.243 0 0 1 .23-.193h.673c.012 0 .012 0 .012-.011l.205-1.048a.243.243 0 0 1 .23-.193h.962c.11 0 .18.085.157.194l-.205 1.035c0 .011 0 .011.012.011h1.964c.012 0 .012 0 .012-.012l.204-1.047a.243.243 0 0 1 .229-.193zm4.919 1.21c.25.003.508.037.752.09.674.157 1.095.614 1.155 1.3.073.917-.072 1.819-.577 2.602-.374.566-.94.879-1.602.95-.373.037-.758.049-1.132-.023-.915-.17-1.348-.734-1.348-1.818.024-.494.12-1.095.36-1.65.41-.938 1.157-1.396 2.144-1.444a2.91 2.91 0 0 1 .248-.007zm-12.086.008c.241-.004.49.016.725.07.818.145 1.252.77 1.155 1.674-.12.95-.77 1.276-1.54 1.312-.494.024-1.626.012-1.783.012 0 0-.011 0-.011.012-.025.47.096.855 1.035.867.855.013 1.24-.083 1.722-.216.012-.013.024 0 .024.011l-.169.844c-.012.071-.06.12-.132.143a5.77 5.77 0 0 1-2.12.23c-1.312-.084-1.745-.831-1.733-1.673a4.65 4.65 0 0 1 .36-1.758c.423-.987 1.205-1.457 2.228-1.517a3.14 3.14 0 0 1 .24-.01zM9.36 9.998a1.036 1.036 0 0 0-.884.472c-.157.24-.205.433-.23.554 0 0 .001.012.013.012h1.348c.314.012.47-.097.506-.373.048-.325-.12-.553-.397-.625a1.513 1.513 0 0 0-.356-.04zm12.043.05c-.372.007-.706.185-.85.628-.145.42-.23.879-.265 1.336-.05.506.24.759.794.747.35.012.638-.157.807-.53.217-.482.289-1 .289-1.517 0-.337-.145-.542-.397-.614a1.416 1.416 0 0 0-.378-.05zm-13.361 5.47c-.096 0-.144.072-.18.156l-.241.747-.253-.76c-.024-.071-.084-.131-.168-.131-.097 0-.157.06-.17.156l-.276 1.168a.334.334 0 0 0-.012.108c0 .097.084.169.18.169.12 0 .17-.096.193-.193l.145-.662.204.71c.024.073.073.157.157.157a.166.166 0 0 0 .157-.12c0-.012.012-.025.012-.037l.216-.71.157.662c.024.109.06.193.192.193a.208.208 0 0 0 .157-.193c0-.036-.012-.072-.024-.108l-.277-1.156c-.024-.084-.084-.156-.169-.156zm8.85.012a.19.19 0 0 0-.192.192c0 .109.084.18.193.18.096 0 .18-.083.18-.18 0-.108-.084-.192-.18-.192zm-1.517.012c-.133 0-.205.072-.205.204V16.9c0 .133.072.205.205.205h.35c.24 0 .433-.048.614-.23a.757.757 0 0 0 .24-.553.79.79 0 0 0-.47-.722c-.132-.06-.229-.06-.385-.06zm-4.443.012c-.096 0-.157.084-.157.168v1.24c0 .097.06.169.157.169.096 0 .156-.084.156-.17v-.3l.374.398c.048.048.084.084.144.084.096-.024.17-.096.17-.18 0-.06-.049-.11-.086-.145l-.325-.313.301-.217c.06-.036.11-.084.11-.156a.16.16 0 0 0-.158-.157c-.06 0-.096.036-.144.072l-.386.3v-.625c0-.096-.048-.168-.156-.168zm12.245.06c-.096 0-.156.072-.156.168v.204c-.096 0-.18.036-.18.145 0 .108.084.144.18.144v.674c0 .097.06.169.156.169.097 0 .157-.084.157-.17v-.673h.06c.084 0 .157-.06.157-.144 0-.097-.073-.145-.157-.145h-.06v-.205c0-.096-.06-.168-.157-.168zm-7.426.265c.256.008.467.163.467.445 0 .193-.12.373-.3.434a.667.667 0 0 1-.218.024h-.157v-.903zm1.888.072c-.205 0-.41.108-.41.337 0 .12.073.229.17.277.083.048.18.06.276.096.048.012.097.024.097.085 0 .048-.06.096-.11.096-.18 0-.192-.133-.336-.157-.084-.012-.17.049-.17.133 0 .204.302.3.47.3.24 0 .447-.132.447-.384.036-.23-.145-.301-.301-.338l-.157-.036c-.036-.012-.096-.024-.096-.072 0-.048.036-.084.084-.084.156-.012.18.084.313.084a.128.128 0 0 0 .108-.108c.012-.157-.253-.23-.385-.23zm1.144 0a.586.586 0 0 0-.578.578c0 .325.265.59.59.59.132.012.457-.096.457-.277a.16.16 0 0 0-.156-.157c-.108 0-.145.12-.301.12a.267.267 0 0 1-.265-.264c0-.156.12-.265.277-.265.144 0 .18.108.277.108a.16.16 0 0 0 .156-.156c0-.18-.313-.277-.457-.277zm-8.694.012a.143.143 0 0 0-.144.12.206.206 0 0 0-.013.085v.77c0 .097.06.169.157.169.096 0 .157-.085.157-.17v-.516c0-.05 0-.145.072-.145.06 0 .096.06.168.06.097.012.193-.072.193-.18 0-.11-.096-.193-.205-.193a.358.358 0 0 0-.24.096.156.156 0 0 0-.145-.096zm2.312 0a.586.586 0 0 0-.578.578c0 .313.265.59.59.59.06 0 .108-.012.168-.024.11-.024.277-.12.277-.253-.012-.084-.048-.12-.144-.12h-.024c-.012 0-.012 0-.024.012-.024.012-.036.024-.06.036a.195.195 0 0 1-.085.048c-.024.012-.06.012-.108.012H12.4a.34.34 0 0 1-.193-.084l-.012-.012.566-.253c.072-.036.12-.072.12-.145 0-.24-.277-.385-.48-.385zm1.107 0c-.313 0-.505.253-.505.542v.433c0 .097.06.169.156.169.097 0 .157-.085.157-.17v-.468c0-.11.072-.205.192-.205.073 0 .145.048.17.108a.404.404 0 0 1 .023.169v.396c0 .097.06.169.157.169.12.012.168-.072.168-.157v-.421a.534.534 0 0 0-.518-.566zm6.406 0a.591.591 0 0 0-.59.59c0 .325.277.566.59.566a.56.56 0 0 0 .578-.566.589.589 0 0 0-.578-.59zm2.336 0c-.313 0-.505.253-.505.542v.433c0 .097.06.169.156.169s.157-.085.157-.17v-.468c0-.11.072-.205.192-.205a.19.19 0 0 1 .169.108c.024.049.024.109.024.169v.396c0 .097.06.169.156.169.109.012.169-.072.169-.157v-.421a.534.534 0 0 0-.157-.41.522.522 0 0 0-.36-.156zm-13.136.012c-.325 0-.542.265-.542.578 0 .313.229.59.542.59.12 0 .23-.048.325-.132.024.072.072.12.156.12.11-.012.17-.084.17-.18v-.807c0-.097-.06-.17-.17-.17-.084 0-.132.037-.156.12a.454.454 0 0 0-.325-.12zm11.655 0c-.096 0-.156.084-.156.169v.42c0 .158.036.29.144.41a.522.522 0 0 0 .36.157c.314 0 .507-.253.507-.554v-.433c0-.097-.06-.17-.156-.17-.097 0-.157.085-.157.17v.456c0 .109-.072.205-.193.205a.189.189 0 0 1-.168-.11c-.024-.048-.024-.108-.024-.156v-.397c0-.096-.06-.168-.157-.168zm-3.876.012c-.097 0-.157.084-.157.169v.794c0 .097.06.169.157.169.096 0 .156-.084.156-.17v-.793c0-.097-.06-.17-.156-.17zm-4.468.24c.084 0 .144.037.18.097l.012.012-.517.217v-.024c0-.156.144-.301.325-.301zm-3.25.037a.287.287 0 0 1 .264.277c0 .145-.12.265-.265.265-.156 0-.265-.12-.265-.277 0-.144.12-.265.265-.265zm10.756.024c.143.005.248.13.248.265 0 .145-.12.265-.265.265-.144 0-.276-.108-.276-.253a.27.27 0 0 1 .264-.277h.03zm-5.496.036c-.096 0-.168.06-.168.157 0 .096.072.156.168.156h.313c.085 0 .17-.06.17-.156s-.073-.157-.17-.157z" }) + ] + } + ); +}); + +exports.default = SiNetto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.d.ts new file mode 100644 index 000000000..4977a82ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE500"; +declare const SiNetto: IconType; +export { SiNetto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.mjs new file mode 100644 index 000000000..77df8327d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNetto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE500"; +const SiNetto = React.forwardRef(function SiNetto2({ title = "Netto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.878 6.859a.708.708 0 0 0-.434.157.638.638 0 0 0-.228.397L.01 13.625a.633.633 0 0 0 .12.506.62.62 0 0 0 .47.217h20.24v.012c.18 0 .373-.012.553-.036a2.735 2.735 0 0 0 1.084-.35 2.66 2.66 0 0 0 .843-.794c.144-.217.265-.446.361-.686.096-.23.168-.47.217-.723.048-.24.084-.481.096-.734.012-.241 0-.494-.012-.747a2.32 2.32 0 0 0-.145-.602 1.554 1.554 0 0 0-.313-.505 2.07 2.07 0 0 0-.47-.374 2.123 2.123 0 0 0-.565-.216 5.148 5.148 0 0 0-.458-.085 6.125 6.125 0 0 0-.47-.024h-.192a4.234 4.234 0 0 0-.41.049c-.131.024-.264.048-.384.084a1.997 1.997 0 0 0-.374.143c-.12.06-.228.12-.337.194a3.082 3.082 0 0 0-.313.24c-.06.06-.132.12-.18.192l.024-.107a.633.633 0 0 0-.12-.507.62.62 0 0 0-.47-.216h-.602l.096-.53a.633.633 0 0 0-.12-.505.62.62 0 0 0-.47-.217h-.963a.708.708 0 0 0-.433.157.638.638 0 0 0-.23.397l-.133.699h-1.08l.095-.53a.633.633 0 0 0-.12-.506.62.62 0 0 0-.47-.217h-.963a.707.707 0 0 0-.433.157.639.639 0 0 0-.23.397l-.132.699h-.313a.707.707 0 0 0-.433.156.638.638 0 0 0-.229.397l-.036.205a1.803 1.803 0 0 0-.518-.481 2.168 2.168 0 0 0-.674-.253 3.455 3.455 0 0 0-.807-.085c-.096 0-.18 0-.277.011a3.202 3.202 0 0 0-.819.146 2.114 2.114 0 0 0-.385.143c-.12.06-.24.12-.348.194a2.98 2.98 0 0 0-.326.252 8.369 8.368 0 0 0-.29.3 3.58 3.58 0 0 0-.24.35c-.024.037-.036.073-.06.109 0 0 0 .012-.012 0-.012 0 0-.012 0-.012l.47-2.409a.633.633 0 0 0-.12-.505.62.62 0 0 0-.47-.216H5.658a.707.707 0 0 0-.433.157.638.638 0 0 0-.23.396l-.408 2.13-.494-2.141a.502.502 0 0 0-.096-.217.633.633 0 0 0-.145-.168.707.707 0 0 0-.433-.157zm-.012.458h1.469c.108 0 .217.084.24.192l.952 4.118c0 .011.024.011.024 0l.806-4.119a.243.243 0 0 1 .23-.192h1.07c.12 0 .18.084.17.192l-1.193 6.128a.243.243 0 0 1-.228.194H3.9a.257.257 0 0 1-.241-.194l-.94-4.056c0-.013-.022-.013-.022 0l-.795 4.056a.243.243 0 0 1-.23.194H.603c-.11 0-.18-.085-.158-.194L1.637 7.51a.243.243 0 0 1 .229-.192zm14.846.42h.963c.108 0 .18.085.157.194l-.205 1.035c0 .012 0 .012.012.012h1.132c.108 0 .18.084.156.193l-.132.674a.243.243 0 0 1-.23.192h-1.131c-.012 0-.012 0-.012.012l-.41 2.144c-.06.324.085.552.314.59.325.06.674.01.95 0 .013 0 .013.011.013.011l-.144.746c-.012.06-.036.109-.097.133-.132.072-.445.192-1.06.192-1.3 0-1.469-.95-1.3-1.842l.385-1.986c0-.013 0-.012-.012-.012h-1.963v.047c-.012 0-.012 0-.012.013l-.409 2.143c-.06.325.084.554.313.59.325.06.674.012.951 0 .012 0 .012.012.012.012l-.144.746c-.012.06-.036.11-.097.133-.132.072-.445.192-1.06.192-1.3 0-1.456-.95-1.3-1.842l.386-1.987c0-.012 0-.01-.012-.01h-.674c-.109 0-.18-.086-.157-.194l.132-.674a.243.243 0 0 1 .23-.193h.673c.012 0 .012 0 .012-.011l.205-1.048a.243.243 0 0 1 .23-.193h.962c.11 0 .18.085.157.194l-.205 1.035c0 .011 0 .011.012.011h1.964c.012 0 .012 0 .012-.012l.204-1.047a.243.243 0 0 1 .229-.193zm4.919 1.21c.25.003.508.037.752.09.674.157 1.095.614 1.155 1.3.073.917-.072 1.819-.577 2.602-.374.566-.94.879-1.602.95-.373.037-.758.049-1.132-.023-.915-.17-1.348-.734-1.348-1.818.024-.494.12-1.095.36-1.65.41-.938 1.157-1.396 2.144-1.444a2.91 2.91 0 0 1 .248-.007zm-12.086.008c.241-.004.49.016.725.07.818.145 1.252.77 1.155 1.674-.12.95-.77 1.276-1.54 1.312-.494.024-1.626.012-1.783.012 0 0-.011 0-.011.012-.025.47.096.855 1.035.867.855.013 1.24-.083 1.722-.216.012-.013.024 0 .024.011l-.169.844c-.012.071-.06.12-.132.143a5.77 5.77 0 0 1-2.12.23c-1.312-.084-1.745-.831-1.733-1.673a4.65 4.65 0 0 1 .36-1.758c.423-.987 1.205-1.457 2.228-1.517a3.14 3.14 0 0 1 .24-.01zM9.36 9.998a1.036 1.036 0 0 0-.884.472c-.157.24-.205.433-.23.554 0 0 .001.012.013.012h1.348c.314.012.47-.097.506-.373.048-.325-.12-.553-.397-.625a1.513 1.513 0 0 0-.356-.04zm12.043.05c-.372.007-.706.185-.85.628-.145.42-.23.879-.265 1.336-.05.506.24.759.794.747.35.012.638-.157.807-.53.217-.482.289-1 .289-1.517 0-.337-.145-.542-.397-.614a1.416 1.416 0 0 0-.378-.05zm-13.361 5.47c-.096 0-.144.072-.18.156l-.241.747-.253-.76c-.024-.071-.084-.131-.168-.131-.097 0-.157.06-.17.156l-.276 1.168a.334.334 0 0 0-.012.108c0 .097.084.169.18.169.12 0 .17-.096.193-.193l.145-.662.204.71c.024.073.073.157.157.157a.166.166 0 0 0 .157-.12c0-.012.012-.025.012-.037l.216-.71.157.662c.024.109.06.193.192.193a.208.208 0 0 0 .157-.193c0-.036-.012-.072-.024-.108l-.277-1.156c-.024-.084-.084-.156-.169-.156zm8.85.012a.19.19 0 0 0-.192.192c0 .109.084.18.193.18.096 0 .18-.083.18-.18 0-.108-.084-.192-.18-.192zm-1.517.012c-.133 0-.205.072-.205.204V16.9c0 .133.072.205.205.205h.35c.24 0 .433-.048.614-.23a.757.757 0 0 0 .24-.553.79.79 0 0 0-.47-.722c-.132-.06-.229-.06-.385-.06zm-4.443.012c-.096 0-.157.084-.157.168v1.24c0 .097.06.169.157.169.096 0 .156-.084.156-.17v-.3l.374.398c.048.048.084.084.144.084.096-.024.17-.096.17-.18 0-.06-.049-.11-.086-.145l-.325-.313.301-.217c.06-.036.11-.084.11-.156a.16.16 0 0 0-.158-.157c-.06 0-.096.036-.144.072l-.386.3v-.625c0-.096-.048-.168-.156-.168zm12.245.06c-.096 0-.156.072-.156.168v.204c-.096 0-.18.036-.18.145 0 .108.084.144.18.144v.674c0 .097.06.169.156.169.097 0 .157-.084.157-.17v-.673h.06c.084 0 .157-.06.157-.144 0-.097-.073-.145-.157-.145h-.06v-.205c0-.096-.06-.168-.157-.168zm-7.426.265c.256.008.467.163.467.445 0 .193-.12.373-.3.434a.667.667 0 0 1-.218.024h-.157v-.903zm1.888.072c-.205 0-.41.108-.41.337 0 .12.073.229.17.277.083.048.18.06.276.096.048.012.097.024.097.085 0 .048-.06.096-.11.096-.18 0-.192-.133-.336-.157-.084-.012-.17.049-.17.133 0 .204.302.3.47.3.24 0 .447-.132.447-.384.036-.23-.145-.301-.301-.338l-.157-.036c-.036-.012-.096-.024-.096-.072 0-.048.036-.084.084-.084.156-.012.18.084.313.084a.128.128 0 0 0 .108-.108c.012-.157-.253-.23-.385-.23zm1.144 0a.586.586 0 0 0-.578.578c0 .325.265.59.59.59.132.012.457-.096.457-.277a.16.16 0 0 0-.156-.157c-.108 0-.145.12-.301.12a.267.267 0 0 1-.265-.264c0-.156.12-.265.277-.265.144 0 .18.108.277.108a.16.16 0 0 0 .156-.156c0-.18-.313-.277-.457-.277zm-8.694.012a.143.143 0 0 0-.144.12.206.206 0 0 0-.013.085v.77c0 .097.06.169.157.169.096 0 .157-.085.157-.17v-.516c0-.05 0-.145.072-.145.06 0 .096.06.168.06.097.012.193-.072.193-.18 0-.11-.096-.193-.205-.193a.358.358 0 0 0-.24.096.156.156 0 0 0-.145-.096zm2.312 0a.586.586 0 0 0-.578.578c0 .313.265.59.59.59.06 0 .108-.012.168-.024.11-.024.277-.12.277-.253-.012-.084-.048-.12-.144-.12h-.024c-.012 0-.012 0-.024.012-.024.012-.036.024-.06.036a.195.195 0 0 1-.085.048c-.024.012-.06.012-.108.012H12.4a.34.34 0 0 1-.193-.084l-.012-.012.566-.253c.072-.036.12-.072.12-.145 0-.24-.277-.385-.48-.385zm1.107 0c-.313 0-.505.253-.505.542v.433c0 .097.06.169.156.169.097 0 .157-.085.157-.17v-.468c0-.11.072-.205.192-.205.073 0 .145.048.17.108a.404.404 0 0 1 .023.169v.396c0 .097.06.169.157.169.12.012.168-.072.168-.157v-.421a.534.534 0 0 0-.518-.566zm6.406 0a.591.591 0 0 0-.59.59c0 .325.277.566.59.566a.56.56 0 0 0 .578-.566.589.589 0 0 0-.578-.59zm2.336 0c-.313 0-.505.253-.505.542v.433c0 .097.06.169.156.169s.157-.085.157-.17v-.468c0-.11.072-.205.192-.205a.19.19 0 0 1 .169.108c.024.049.024.109.024.169v.396c0 .097.06.169.156.169.109.012.169-.072.169-.157v-.421a.534.534 0 0 0-.157-.41.522.522 0 0 0-.36-.156zm-13.136.012c-.325 0-.542.265-.542.578 0 .313.229.59.542.59.12 0 .23-.048.325-.132.024.072.072.12.156.12.11-.012.17-.084.17-.18v-.807c0-.097-.06-.17-.17-.17-.084 0-.132.037-.156.12a.454.454 0 0 0-.325-.12zm11.655 0c-.096 0-.156.084-.156.169v.42c0 .158.036.29.144.41a.522.522 0 0 0 .36.157c.314 0 .507-.253.507-.554v-.433c0-.097-.06-.17-.156-.17-.097 0-.157.085-.157.17v.456c0 .109-.072.205-.193.205a.189.189 0 0 1-.168-.11c-.024-.048-.024-.108-.024-.156v-.397c0-.096-.06-.168-.157-.168zm-3.876.012c-.097 0-.157.084-.157.169v.794c0 .097.06.169.157.169.096 0 .156-.084.156-.17v-.793c0-.097-.06-.17-.156-.17zm-4.468.24c.084 0 .144.037.18.097l.012.012-.517.217v-.024c0-.156.144-.301.325-.301zm-3.25.037a.287.287 0 0 1 .264.277c0 .145-.12.265-.265.265-.156 0-.265-.12-.265-.277 0-.144.12-.265.265-.265zm10.756.024c.143.005.248.13.248.265 0 .145-.12.265-.265.265-.144 0-.276-.108-.276-.253a.27.27 0 0 1 .264-.277h.03zm-5.496.036c-.096 0-.168.06-.168.157 0 .096.072.156.168.156h.313c.085 0 .17-.06.17-.156s-.073-.157-.17-.157z" }) + ] + } + ); +}); + +export { SiNetto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.cjs new file mode 100644 index 000000000..a3f6d8a5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F89901"; +const SiNeutralinojs = React__namespace.forwardRef(function SiNeutralinojs2({ title = "Neutralinojs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.563 1.396a.951.951 0 0 0-.534.184c-.404.307-.501.9-.425 1.654.075.755.335 1.704.751 2.8.357.937.835 1.984 1.407 3.095-1.17.146-2.24.338-3.158.57-1.08.274-1.958.6-2.583.973C.397 11.045 0 11.484 0 12s.397.955 1.021 1.328c.55.33 1.308.618 2.217.87a.95.95 0 0 0-.006.097c0 .485.365.887.82.887.368 0 .678-.26.784-.616.593.114 1.227.213 1.898.297a30.81 30.81 0 0 0-1.408 3.067c-.421 1.093-.686 2.04-.765 2.795-.08.754.016 1.347.42 1.656.201.154.46.208.734.181.274-.026.572-.125.896-.287.649-.323 1.407-.894 2.244-1.67.962-.89 2.026-2.058 3.118-3.421 1.086 1.37 2.146 2.543 3.103 3.439.834.78 1.588 1.355 2.235 1.682.323.163.62.265.894.293.274.027.534-.025.736-.178.405-.307.502-.9.426-1.654-.054-.54-.206-1.18-.437-1.9a.91.91 0 0 0 .343-.72.924.924 0 0 0-.238-.625.795.795 0 0 0-.701-.251c-.312-.75-.69-1.557-1.125-2.4a26.536 26.536 0 0 0 3.187-.575c1.08-.273 1.958-.597 2.583-.97.624-.374 1.021-.813 1.021-1.329s-.397-.957-1.021-1.33c-.625-.373-1.503-.696-2.583-.969a26.47 26.47 0 0 0-3.156-.568 30.787 30.787 0 0 0 1.406-3.063c.422-1.093.687-2.04.766-2.795.08-.754-.017-1.347-.42-1.656a.948.948 0 0 0-.531-.185 1.34 1.34 0 0 0-.203.004c-.274.026-.57.127-.895.289-.51.254-1.092.665-1.722 1.205a.776.776 0 0 0-.418-.123c-.456 0-.82.4-.82.886 0 .118.02.231.06.334a35.03 35.03 0 0 0-2.465 2.791c-1.086-1.37-2.146-2.543-3.103-3.439-.834-.78-1.588-1.355-2.235-1.682-.323-.163-.62-.265-.894-.293a1.342 1.342 0 0 0-.204-.006zm.021.385a.988.988 0 0 1 .143.004c.205.02.462.105.757.254.592.298 1.33.855 2.147 1.62.955.893 2.022 2.077 3.119 3.466-.428.544-.859 1.12-1.29 1.72a41.53 41.53 0 0 0-3.29.235 30.845 30.845 0 0 1-1.453-3.184c-.409-1.075-.658-2.002-.729-2.7-.07-.7.05-1.136.276-1.307a.55.55 0 0 1 .32-.108zm12.854.033a.55.55 0 0 1 .32.108c.225.172.343.61.27 1.308-.074.699-.33 1.624-.743 2.698a30.8 30.8 0 0 1-1.455 3.15 41.54 41.54 0 0 0-3.312-.234 49.26 49.26 0 0 0-1.274-1.717 35.134 35.134 0 0 1 2.436-2.772.783.783 0 0 0 .543.223c.456 0 .82-.401.82-.887a.938.938 0 0 0-.133-.484c.61-.519 1.163-.909 1.625-1.139.297-.147.555-.23.76-.25a.993.993 0 0 1 .142-.004zm-6.442 5.622c.344.443.69.913 1.035 1.394-.34-.007-.683-.014-1.031-.014-.355 0-.704.006-1.05.014.35-.481.699-.95 1.046-1.394zM12 9.203c.445 0 .883.008 1.314.02.265.375.53.76.793 1.154.366.55.71 1.093 1.041 1.633a53.654 53.654 0 0 1-1.046 1.623c-.263.39-.527.768-.791 1.138-.431.013-.868.022-1.311.022-.456 0-.905-.009-1.348-.022a52.874 52.874 0 0 1-.789-1.148 51.736 51.736 0 0 1-1.04-1.633 52.64 52.64 0 0 1 1.84-2.765c.439-.013.884-.022 1.337-.022zm-1.824.04c-.21.296-.418.597-.625.905-.334.496-.647.988-.953 1.477a46.8 46.8 0 0 1-1.239-2.178 41.23 41.23 0 0 1 2.817-.205zm3.625 0a41.29 41.29 0 0 1 2.838.202 46.719 46.719 0 0 1-1.264 2.198 53.296 53.296 0 0 0-1.574-2.4zm3.248.251c1.213.146 2.317.34 3.252.576 1.057.268 1.907.587 2.478.928.571.341.834.689.834.998 0 .31-.263.655-.834.996-.57.342-1.421.662-2.478.93-.943.239-2.056.433-3.281.58a47.032 47.032 0 0 0-1.416-2.492 46.92 46.92 0 0 0 1.445-2.516zM6.95 9.496c.424.805.899 1.64 1.418 2.494a46.96 46.96 0 0 0-1.443 2.508 29.645 29.645 0 0 1-2.059-.318.912.912 0 0 0-.23-.508.795.795 0 0 0-.584-.262.806.806 0 0 0-.696.418c-.894-.247-1.63-.53-2.136-.832C.65 12.655.387 12.31.387 12c0-.31.263-.654.834-.996.57-.342 1.421-.662 2.478-.93.935-.237 2.039-.431 3.252-.578zm4.34.8c-.576 0-1.041.5-1.041 1.112 0 .484.29.897.695 1.049v.063c0 .612.466 1.109 1.041 1.109.576 0 1.041-.497 1.041-1.11 0-.016 0-.034-.002-.05.424-.141.73-.565.73-1.063 0-.294-.107-.575-.302-.783a1.013 1.013 0 0 0-.738-.326 1 1 0 0 0-.711.3 1.006 1.006 0 0 0-.713-.3zm-2.695 2.061a50.566 50.566 0 0 0 1.572 2.397c-.99-.04-1.941-.108-2.832-.205.381-.71.803-1.443 1.26-2.192zm6.779.02c.448.743.862 1.472 1.236 2.176a41.63 41.63 0 0 1-2.814.199c.208-.296.418-.595.625-.902.333-.495.647-.986.953-1.473zm-8.23 2.537c1.033.117 2.141.198 3.304.236.427.6.854 1.179 1.278 1.723-1.103 1.382-2.176 2.561-3.135 3.45-.821.76-1.562 1.31-2.155 1.605-.296.147-.554.23-.76.25-.205.02-.35-.018-.462-.104-.225-.172-.343-.61-.27-1.308.074-.698.329-1.624.742-2.698.366-.948.861-2.018 1.458-3.154zm9.656.004c.459.884.854 1.727 1.178 2.504a.91.91 0 0 0-.348.724c0 .486.364.887.82.887a.783.783 0 0 0 .123-.01c.218.686.36 1.293.408 1.782.07.698-.05 1.135-.275 1.306-.113.086-.258.124-.463.104-.205-.02-.462-.105-.758-.254-.59-.298-1.329-.855-2.146-1.62-.955-.893-2.023-2.077-3.12-3.466.43-.545.862-1.123 1.294-1.725a41.607 41.607 0 0 0 3.287-.232zm-3.776.246a48.82 48.82 0 0 1-1.05 1.4 48.875 48.875 0 0 1-1.04-1.398 47.325 47.325 0 0 0 2.09-.002z" }) + ] + } + ); +}); + +exports.default = SiNeutralinojs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.d.ts new file mode 100644 index 000000000..1665b3946 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F89901"; +declare const SiNeutralinojs: IconType; +export { SiNeutralinojs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.mjs new file mode 100644 index 000000000..342caf76d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNeutralinojs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F89901"; +const SiNeutralinojs = React.forwardRef(function SiNeutralinojs2({ title = "Neutralinojs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.563 1.396a.951.951 0 0 0-.534.184c-.404.307-.501.9-.425 1.654.075.755.335 1.704.751 2.8.357.937.835 1.984 1.407 3.095-1.17.146-2.24.338-3.158.57-1.08.274-1.958.6-2.583.973C.397 11.045 0 11.484 0 12s.397.955 1.021 1.328c.55.33 1.308.618 2.217.87a.95.95 0 0 0-.006.097c0 .485.365.887.82.887.368 0 .678-.26.784-.616.593.114 1.227.213 1.898.297a30.81 30.81 0 0 0-1.408 3.067c-.421 1.093-.686 2.04-.765 2.795-.08.754.016 1.347.42 1.656.201.154.46.208.734.181.274-.026.572-.125.896-.287.649-.323 1.407-.894 2.244-1.67.962-.89 2.026-2.058 3.118-3.421 1.086 1.37 2.146 2.543 3.103 3.439.834.78 1.588 1.355 2.235 1.682.323.163.62.265.894.293.274.027.534-.025.736-.178.405-.307.502-.9.426-1.654-.054-.54-.206-1.18-.437-1.9a.91.91 0 0 0 .343-.72.924.924 0 0 0-.238-.625.795.795 0 0 0-.701-.251c-.312-.75-.69-1.557-1.125-2.4a26.536 26.536 0 0 0 3.187-.575c1.08-.273 1.958-.597 2.583-.97.624-.374 1.021-.813 1.021-1.329s-.397-.957-1.021-1.33c-.625-.373-1.503-.696-2.583-.969a26.47 26.47 0 0 0-3.156-.568 30.787 30.787 0 0 0 1.406-3.063c.422-1.093.687-2.04.766-2.795.08-.754-.017-1.347-.42-1.656a.948.948 0 0 0-.531-.185 1.34 1.34 0 0 0-.203.004c-.274.026-.57.127-.895.289-.51.254-1.092.665-1.722 1.205a.776.776 0 0 0-.418-.123c-.456 0-.82.4-.82.886 0 .118.02.231.06.334a35.03 35.03 0 0 0-2.465 2.791c-1.086-1.37-2.146-2.543-3.103-3.439-.834-.78-1.588-1.355-2.235-1.682-.323-.163-.62-.265-.894-.293a1.342 1.342 0 0 0-.204-.006zm.021.385a.988.988 0 0 1 .143.004c.205.02.462.105.757.254.592.298 1.33.855 2.147 1.62.955.893 2.022 2.077 3.119 3.466-.428.544-.859 1.12-1.29 1.72a41.53 41.53 0 0 0-3.29.235 30.845 30.845 0 0 1-1.453-3.184c-.409-1.075-.658-2.002-.729-2.7-.07-.7.05-1.136.276-1.307a.55.55 0 0 1 .32-.108zm12.854.033a.55.55 0 0 1 .32.108c.225.172.343.61.27 1.308-.074.699-.33 1.624-.743 2.698a30.8 30.8 0 0 1-1.455 3.15 41.54 41.54 0 0 0-3.312-.234 49.26 49.26 0 0 0-1.274-1.717 35.134 35.134 0 0 1 2.436-2.772.783.783 0 0 0 .543.223c.456 0 .82-.401.82-.887a.938.938 0 0 0-.133-.484c.61-.519 1.163-.909 1.625-1.139.297-.147.555-.23.76-.25a.993.993 0 0 1 .142-.004zm-6.442 5.622c.344.443.69.913 1.035 1.394-.34-.007-.683-.014-1.031-.014-.355 0-.704.006-1.05.014.35-.481.699-.95 1.046-1.394zM12 9.203c.445 0 .883.008 1.314.02.265.375.53.76.793 1.154.366.55.71 1.093 1.041 1.633a53.654 53.654 0 0 1-1.046 1.623c-.263.39-.527.768-.791 1.138-.431.013-.868.022-1.311.022-.456 0-.905-.009-1.348-.022a52.874 52.874 0 0 1-.789-1.148 51.736 51.736 0 0 1-1.04-1.633 52.64 52.64 0 0 1 1.84-2.765c.439-.013.884-.022 1.337-.022zm-1.824.04c-.21.296-.418.597-.625.905-.334.496-.647.988-.953 1.477a46.8 46.8 0 0 1-1.239-2.178 41.23 41.23 0 0 1 2.817-.205zm3.625 0a41.29 41.29 0 0 1 2.838.202 46.719 46.719 0 0 1-1.264 2.198 53.296 53.296 0 0 0-1.574-2.4zm3.248.251c1.213.146 2.317.34 3.252.576 1.057.268 1.907.587 2.478.928.571.341.834.689.834.998 0 .31-.263.655-.834.996-.57.342-1.421.662-2.478.93-.943.239-2.056.433-3.281.58a47.032 47.032 0 0 0-1.416-2.492 46.92 46.92 0 0 0 1.445-2.516zM6.95 9.496c.424.805.899 1.64 1.418 2.494a46.96 46.96 0 0 0-1.443 2.508 29.645 29.645 0 0 1-2.059-.318.912.912 0 0 0-.23-.508.795.795 0 0 0-.584-.262.806.806 0 0 0-.696.418c-.894-.247-1.63-.53-2.136-.832C.65 12.655.387 12.31.387 12c0-.31.263-.654.834-.996.57-.342 1.421-.662 2.478-.93.935-.237 2.039-.431 3.252-.578zm4.34.8c-.576 0-1.041.5-1.041 1.112 0 .484.29.897.695 1.049v.063c0 .612.466 1.109 1.041 1.109.576 0 1.041-.497 1.041-1.11 0-.016 0-.034-.002-.05.424-.141.73-.565.73-1.063 0-.294-.107-.575-.302-.783a1.013 1.013 0 0 0-.738-.326 1 1 0 0 0-.711.3 1.006 1.006 0 0 0-.713-.3zm-2.695 2.061a50.566 50.566 0 0 0 1.572 2.397c-.99-.04-1.941-.108-2.832-.205.381-.71.803-1.443 1.26-2.192zm6.779.02c.448.743.862 1.472 1.236 2.176a41.63 41.63 0 0 1-2.814.199c.208-.296.418-.595.625-.902.333-.495.647-.986.953-1.473zm-8.23 2.537c1.033.117 2.141.198 3.304.236.427.6.854 1.179 1.278 1.723-1.103 1.382-2.176 2.561-3.135 3.45-.821.76-1.562 1.31-2.155 1.605-.296.147-.554.23-.76.25-.205.02-.35-.018-.462-.104-.225-.172-.343-.61-.27-1.308.074-.698.329-1.624.742-2.698.366-.948.861-2.018 1.458-3.154zm9.656.004c.459.884.854 1.727 1.178 2.504a.91.91 0 0 0-.348.724c0 .486.364.887.82.887a.783.783 0 0 0 .123-.01c.218.686.36 1.293.408 1.782.07.698-.05 1.135-.275 1.306-.113.086-.258.124-.463.104-.205-.02-.462-.105-.758-.254-.59-.298-1.329-.855-2.146-1.62-.955-.893-2.023-2.077-3.12-3.466.43-.545.862-1.123 1.294-1.725a41.607 41.607 0 0 0 3.287-.232zm-3.776.246a48.82 48.82 0 0 1-1.05 1.4 48.875 48.875 0 0 1-1.04-1.398 47.325 47.325 0 0 0 2.09-.002z" }) + ] + } + ); +}); + +export { SiNeutralinojs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.cjs new file mode 100644 index 000000000..c6052ce7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CF0A2C"; +const SiNewbalance = React__namespace.forwardRef(function SiNewbalance2({ title = "New Balance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.169 10.306l1.111-1.937 3.774-.242.132-.236-3.488-.242.82-1.414h6.47c1.99 0 3.46.715 2.887 2.8-.17.638-.979 2.233-3.356 2.899.507.06 1.76.616 1.54 2.057-.384 2.558-3.69 3.774-5.533 3.774l-7.641.006-.38-1.48 4.005-.28.137-.237-4.346-.264-.467-1.755 6.178-.363.137-.231-11.096-.693.534-.925 11.948-.775.138-.231-3.504-.231m5 .385l1.1-.006c.738-.005 1.502-.34 1.783-1.018.259-.632-.088-1.171-.55-1.166h-1.067l-1.266 2.19zm-1.27 2.195l-1.326 2.305h1.265c.589 0 1.64-.292 1.964-1.128.302-.781-.253-1.177-.638-1.177h-1.266zM6.26 16.445l-.77 1.315L0 17.77l.534-.923 5.726-.402zm.385-10.216l4.417.006.336 1.248-5.276-.33.523-.924zm5 2.245l.484 1.832-7.542-.495.528-.92 6.53-.417zm-3.84 5.281l-.957 1.661-5.32-.302.534-.924 5.743-.435z" }) + ] + } + ); +}); + +exports.default = SiNewbalance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.d.ts new file mode 100644 index 000000000..63aced991 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CF0A2C"; +declare const SiNewbalance: IconType; +export { SiNewbalance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.mjs new file mode 100644 index 000000000..b1d3276ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewbalance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CF0A2C"; +const SiNewbalance = React.forwardRef(function SiNewbalance2({ title = "New Balance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.169 10.306l1.111-1.937 3.774-.242.132-.236-3.488-.242.82-1.414h6.47c1.99 0 3.46.715 2.887 2.8-.17.638-.979 2.233-3.356 2.899.507.06 1.76.616 1.54 2.057-.384 2.558-3.69 3.774-5.533 3.774l-7.641.006-.38-1.48 4.005-.28.137-.237-4.346-.264-.467-1.755 6.178-.363.137-.231-11.096-.693.534-.925 11.948-.775.138-.231-3.504-.231m5 .385l1.1-.006c.738-.005 1.502-.34 1.783-1.018.259-.632-.088-1.171-.55-1.166h-1.067l-1.266 2.19zm-1.27 2.195l-1.326 2.305h1.265c.589 0 1.64-.292 1.964-1.128.302-.781-.253-1.177-.638-1.177h-1.266zM6.26 16.445l-.77 1.315L0 17.77l.534-.923 5.726-.402zm.385-10.216l4.417.006.336 1.248-5.276-.33.523-.924zm5 2.245l.484 1.832-7.542-.495.528-.92 6.53-.417zm-3.84 5.281l-.957 1.661-5.32-.302.534-.924 5.743-.435z" }) + ] + } + ); +}); + +export { SiNewbalance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.cjs new file mode 100644 index 000000000..6de38adc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E05E00"; +const SiNewegg = React__namespace.forwardRef(function SiNewegg2({ title = "Newegg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.082 5.873c-.091 0-.183.004-.276.01-.73.05-1.504.281-2.256.64a9.635 9.635 0 0 0-3.024 2.3 7.076 7.076 0 0 0-.944 1.343c.393-.019.9-.043 1.023-.043.318-.003.547.097.71.246 0 0 .3-.033.416-.087l.002-.002a1.96 1.96 0 0 1 .799-.175c.354-.004.632.071.838.197a.515.515 0 0 1 .361-.15l.783-.01a.53.53 0 0 1 .209.042.508.508 0 0 1 .205-.046l.748-.005c.069 0 .135.013.197.039a.495.495 0 0 1 .199-.043l.783-.006a.52.52 0 0 1 .371.15l.102-.05c.246-.11.51-.17.793-.175h.008c.381 0 .673.09.887.233l.17.142.057-.058a1.17 1.17 0 0 1 .278-.197c-.044-1.63-.56-3.1-1.686-3.82-.514-.334-1.114-.48-1.753-.475Zm-4.481.039a4.28 4.28 0 0 0-.276.008c-.703.048-1.447.263-2.173.598-1.394.646-2.722 1.736-3.588 2.946a7.104 7.104 0 0 0-.238.357C3.661 12.5 4.193 15.878 6.52 17.37a4.482 4.482 0 0 0 2.222.695 10.312 10.312 0 0 1-.187.007 5.146 5.146 0 0 0 2.457-.435 4.318 4.318 0 0 1-.522-.284 4.515 4.515 0 0 1-1.466-1.541 5.106 5.106 0 0 1-.579-1.524h-.12a.518.518 0 0 1-.506-.647l.779-3.061a.52.52 0 0 1 .476-.39c.07-.13.142-.256.221-.383a8.027 8.027 0 0 1 1.118-1.396c.84-.848 1.88-1.572 2.946-2.024l-.002-.003c-.517-.331-1.117-.474-1.755-.472Zm-4.384.036C4.976 5.977 2.259 7.807.969 9.88c-1.666 2.675-1.13 6.055 1.197 7.546 1.34.86 2.988.903 4.459.27a4.4 4.4 0 0 1-.603-.324c-2.324-1.489-2.86-4.866-1.193-7.545.896-1.442 2.482-2.762 4.116-3.445-.51-.308-1.1-.442-1.728-.434Zm15.314 4.579a.744.744 0 0 0-.521.197c-.134.128-.24.34-.315.629l-.282 1.11a1.47 1.47 0 0 0-.06.468.374.374 0 0 0 .152.264c.09.068.217.1.383.097a.81.81 0 0 0 .288-.057 1.126 1.126 0 0 0 .29-.168l-.06.237a.849.849 0 0 1-.102.264c-.034.041-.088.062-.156.063-.098.002-.127-.068-.093-.207l-.889.01c-.07.297-.031.495.122.594.148.101.371.15.663.146a1.988 1.988 0 0 0 .61-.087 1.132 1.132 0 0 0 .429-.241.893.893 0 0 0 .227-.294 6.298 6.298 0 0 0 .18-.619l.603-2.36-.852.005-.124.233a.513.513 0 0 0-.493-.284zm-2.414.02a.74.74 0 0 0-.517.195c-.136.13-.239.34-.315.629l-.284 1.11a1.396 1.396 0 0 0-.06.468.364.364 0 0 0 .152.266c.089.068.215.1.381.1a.798.798 0 0 0 .286-.06 1.135 1.135 0 0 0 .294-.166l-.063.235a.804.804 0 0 1-.101.266c-.033.04-.084.062-.152.063-.098.002-.13-.067-.096-.205l-.904.004v.317c.007.141.039.216.138.282.151.1.373.145.665.142a1.9 1.9 0 0 0 .609-.083 1.166 1.166 0 0 0 .426-.242.888.888 0 0 0 .229-.298 5.244 5.244 0 0 0 .182-.617l.6-2.359-.847.004-.126.233a.52.52 0 0 0-.2-.213.592.592 0 0 0-.297-.07zm-1.988.02c-.21.004-.406.046-.588.128a1.08 1.08 0 0 0-.438.361c-.11.154-.202.365-.268.631l-.23.893c-.055.23-.085.4-.085.52a.665.665 0 0 0 .09.324.545.545 0 0 0 .284.235 1.243 1.243 0 0 0 .49.08 1.396 1.396 0 0 0 .52-.09 1.143 1.143 0 0 0 .393-.264 1.267 1.267 0 0 0 .248-.326 2.499 2.499 0 0 0 .146-.436l.059-.224-.87.009-.104.403a.995.995 0 0 1-.113.307.171.171 0 0 1-.159.08c-.054 0-.085-.018-.095-.058-.008-.04.005-.13.04-.268l.169-.661 1.18-.01.102-.408c.075-.297.1-.526.075-.69a.565.565 0 0 0-.25-.391c-.143-.096-.34-.144-.596-.144zm-5.59.057c-.21.002-.406.044-.59.128-.182.084-.33.203-.441.36-.11.155-.2.366-.266.632l-.23.895c-.058.225-.085.4-.085.517a.681.681 0 0 0 .09.327.556.556 0 0 0 .284.233c.135.056.298.081.49.081a1.446 1.446 0 0 0 .52-.091c.147-.06.277-.146.391-.264.114-.114.2-.223.248-.326a2.454 2.454 0 0 0 .146-.437l.057-.225-.87.006-.104.406a1.032 1.032 0 0 1-.114.308.177.177 0 0 1-.156.08c-.054.002-.088-.017-.097-.057-.008-.04.005-.13.04-.268l.169-.663 1.183-.01.105-.406c.075-.297.102-.528.075-.692a.56.56 0 0 0-.25-.388c-.142-.101-.34-.149-.596-.146zm-1.93.019a.752.752 0 0 0-.351.085c-.11.058-.215.141-.31.253l.089-.282-.935.01-.781 3.06.919-.008.527-2.07a2.446 2.446 0 0 1 .132-.424.155.155 0 0 1 .142-.08c.061-.003.091.023.093.066.002.047-.025.176-.079.386l-.54 2.12.917-.004.548-2.147c.067-.269.104-.46.104-.572a.374.374 0 0 0-.12-.284c-.08-.074-.197-.111-.355-.11zm6.252 0-.785.006a20.25 20.25 0 0 0-.655 1.763l.26-1.76-.749.005c-.394 1.058-.616 1.645-.66 1.763a558.387 558.387 0 0 1 .248-1.76l-.783.011-.391 3.057.983-.01.587-1.485c-.08.593-.144 1.073-.185 1.44 0 .016.011.022.01.035h.97zm5.968.428c.054 0 .084.016.092.054a.955.955 0 0 1-.045.27l-.241.948a1.373 1.373 0 0 1-.116.334c-.03.051-.077.073-.136.077-.054 0-.082-.019-.09-.06a.909.909 0 0 1 .044-.268l.263-1.029a.88.88 0 0 1 .098-.26.156.156 0 0 1 .131-.066zm-2.41.018c.054 0 .085.02.09.059a.89.89 0 0 1-.043.268l-.243.949a1.405 1.405 0 0 1-.112.337.162.162 0 0 1-.138.075c-.052 0-.084-.022-.09-.061a.966.966 0 0 1 .043-.268l.264-1.03a.725.725 0 0 1 .1-.26.156.156 0 0 1 .13-.07zm-2.393.02h.012c.05 0 .079.023.083.071a1.18 1.18 0 0 1-.055.307l-.055.227h-.267l.059-.225a1.511 1.511 0 0 1 .1-.319c.024-.038.066-.058.123-.06zm-5.583.057c.049 0 .074.023.079.069.005.047-.011.15-.05.308l-.06.226-.263.004.056-.226a1.458 1.458 0 0 1 .104-.32c.022-.039.068-.059.134-.06zm.442 2.806a1.674 1.674 0 0 1-.38.215l-.005.002c-.2.079-.433.124-.704.127h-.004c-.272 0-.501-.042-.69-.121a1.233 1.233 0 0 1-.25-.136.522.522 0 0 1-.418.215l-.917.004a.509.509 0 0 1-.137-.016.54.54 0 0 1-.136.018l-.305.004c.082.392.206.769.372 1.124a4.566 4.566 0 0 0 1.675 1.943 4.427 4.427 0 0 0 2.22.694c1.87.082 3.828-.952 5.008-2.846.138-.222.27-.46.388-.708l-.014-.008c-.175-.115-.28-.237-.331-.426l-.16.075a1.944 1.944 0 0 1-.706.126 1.738 1.738 0 0 1-.698-.122c-.204-.085-.765.091-.982.091h-.97a.534.534 0 0 1-.194-.038.52.52 0 0 1-.211.048l-.986.01a.521.521 0 0 1-.465-.275z" }) + ] + } + ); +}); + +exports.default = SiNewegg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.d.ts new file mode 100644 index 000000000..40aa5fe19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E05E00"; +declare const SiNewegg: IconType; +export { SiNewegg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.mjs new file mode 100644 index 000000000..8562c79c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewegg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E05E00"; +const SiNewegg = React.forwardRef(function SiNewegg2({ title = "Newegg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.082 5.873c-.091 0-.183.004-.276.01-.73.05-1.504.281-2.256.64a9.635 9.635 0 0 0-3.024 2.3 7.076 7.076 0 0 0-.944 1.343c.393-.019.9-.043 1.023-.043.318-.003.547.097.71.246 0 0 .3-.033.416-.087l.002-.002a1.96 1.96 0 0 1 .799-.175c.354-.004.632.071.838.197a.515.515 0 0 1 .361-.15l.783-.01a.53.53 0 0 1 .209.042.508.508 0 0 1 .205-.046l.748-.005c.069 0 .135.013.197.039a.495.495 0 0 1 .199-.043l.783-.006a.52.52 0 0 1 .371.15l.102-.05c.246-.11.51-.17.793-.175h.008c.381 0 .673.09.887.233l.17.142.057-.058a1.17 1.17 0 0 1 .278-.197c-.044-1.63-.56-3.1-1.686-3.82-.514-.334-1.114-.48-1.753-.475Zm-4.481.039a4.28 4.28 0 0 0-.276.008c-.703.048-1.447.263-2.173.598-1.394.646-2.722 1.736-3.588 2.946a7.104 7.104 0 0 0-.238.357C3.661 12.5 4.193 15.878 6.52 17.37a4.482 4.482 0 0 0 2.222.695 10.312 10.312 0 0 1-.187.007 5.146 5.146 0 0 0 2.457-.435 4.318 4.318 0 0 1-.522-.284 4.515 4.515 0 0 1-1.466-1.541 5.106 5.106 0 0 1-.579-1.524h-.12a.518.518 0 0 1-.506-.647l.779-3.061a.52.52 0 0 1 .476-.39c.07-.13.142-.256.221-.383a8.027 8.027 0 0 1 1.118-1.396c.84-.848 1.88-1.572 2.946-2.024l-.002-.003c-.517-.331-1.117-.474-1.755-.472Zm-4.384.036C4.976 5.977 2.259 7.807.969 9.88c-1.666 2.675-1.13 6.055 1.197 7.546 1.34.86 2.988.903 4.459.27a4.4 4.4 0 0 1-.603-.324c-2.324-1.489-2.86-4.866-1.193-7.545.896-1.442 2.482-2.762 4.116-3.445-.51-.308-1.1-.442-1.728-.434Zm15.314 4.579a.744.744 0 0 0-.521.197c-.134.128-.24.34-.315.629l-.282 1.11a1.47 1.47 0 0 0-.06.468.374.374 0 0 0 .152.264c.09.068.217.1.383.097a.81.81 0 0 0 .288-.057 1.126 1.126 0 0 0 .29-.168l-.06.237a.849.849 0 0 1-.102.264c-.034.041-.088.062-.156.063-.098.002-.127-.068-.093-.207l-.889.01c-.07.297-.031.495.122.594.148.101.371.15.663.146a1.988 1.988 0 0 0 .61-.087 1.132 1.132 0 0 0 .429-.241.893.893 0 0 0 .227-.294 6.298 6.298 0 0 0 .18-.619l.603-2.36-.852.005-.124.233a.513.513 0 0 0-.493-.284zm-2.414.02a.74.74 0 0 0-.517.195c-.136.13-.239.34-.315.629l-.284 1.11a1.396 1.396 0 0 0-.06.468.364.364 0 0 0 .152.266c.089.068.215.1.381.1a.798.798 0 0 0 .286-.06 1.135 1.135 0 0 0 .294-.166l-.063.235a.804.804 0 0 1-.101.266c-.033.04-.084.062-.152.063-.098.002-.13-.067-.096-.205l-.904.004v.317c.007.141.039.216.138.282.151.1.373.145.665.142a1.9 1.9 0 0 0 .609-.083 1.166 1.166 0 0 0 .426-.242.888.888 0 0 0 .229-.298 5.244 5.244 0 0 0 .182-.617l.6-2.359-.847.004-.126.233a.52.52 0 0 0-.2-.213.592.592 0 0 0-.297-.07zm-1.988.02c-.21.004-.406.046-.588.128a1.08 1.08 0 0 0-.438.361c-.11.154-.202.365-.268.631l-.23.893c-.055.23-.085.4-.085.52a.665.665 0 0 0 .09.324.545.545 0 0 0 .284.235 1.243 1.243 0 0 0 .49.08 1.396 1.396 0 0 0 .52-.09 1.143 1.143 0 0 0 .393-.264 1.267 1.267 0 0 0 .248-.326 2.499 2.499 0 0 0 .146-.436l.059-.224-.87.009-.104.403a.995.995 0 0 1-.113.307.171.171 0 0 1-.159.08c-.054 0-.085-.018-.095-.058-.008-.04.005-.13.04-.268l.169-.661 1.18-.01.102-.408c.075-.297.1-.526.075-.69a.565.565 0 0 0-.25-.391c-.143-.096-.34-.144-.596-.144zm-5.59.057c-.21.002-.406.044-.59.128-.182.084-.33.203-.441.36-.11.155-.2.366-.266.632l-.23.895c-.058.225-.085.4-.085.517a.681.681 0 0 0 .09.327.556.556 0 0 0 .284.233c.135.056.298.081.49.081a1.446 1.446 0 0 0 .52-.091c.147-.06.277-.146.391-.264.114-.114.2-.223.248-.326a2.454 2.454 0 0 0 .146-.437l.057-.225-.87.006-.104.406a1.032 1.032 0 0 1-.114.308.177.177 0 0 1-.156.08c-.054.002-.088-.017-.097-.057-.008-.04.005-.13.04-.268l.169-.663 1.183-.01.105-.406c.075-.297.102-.528.075-.692a.56.56 0 0 0-.25-.388c-.142-.101-.34-.149-.596-.146zm-1.93.019a.752.752 0 0 0-.351.085c-.11.058-.215.141-.31.253l.089-.282-.935.01-.781 3.06.919-.008.527-2.07a2.446 2.446 0 0 1 .132-.424.155.155 0 0 1 .142-.08c.061-.003.091.023.093.066.002.047-.025.176-.079.386l-.54 2.12.917-.004.548-2.147c.067-.269.104-.46.104-.572a.374.374 0 0 0-.12-.284c-.08-.074-.197-.111-.355-.11zm6.252 0-.785.006a20.25 20.25 0 0 0-.655 1.763l.26-1.76-.749.005c-.394 1.058-.616 1.645-.66 1.763a558.387 558.387 0 0 1 .248-1.76l-.783.011-.391 3.057.983-.01.587-1.485c-.08.593-.144 1.073-.185 1.44 0 .016.011.022.01.035h.97zm5.968.428c.054 0 .084.016.092.054a.955.955 0 0 1-.045.27l-.241.948a1.373 1.373 0 0 1-.116.334c-.03.051-.077.073-.136.077-.054 0-.082-.019-.09-.06a.909.909 0 0 1 .044-.268l.263-1.029a.88.88 0 0 1 .098-.26.156.156 0 0 1 .131-.066zm-2.41.018c.054 0 .085.02.09.059a.89.89 0 0 1-.043.268l-.243.949a1.405 1.405 0 0 1-.112.337.162.162 0 0 1-.138.075c-.052 0-.084-.022-.09-.061a.966.966 0 0 1 .043-.268l.264-1.03a.725.725 0 0 1 .1-.26.156.156 0 0 1 .13-.07zm-2.393.02h.012c.05 0 .079.023.083.071a1.18 1.18 0 0 1-.055.307l-.055.227h-.267l.059-.225a1.511 1.511 0 0 1 .1-.319c.024-.038.066-.058.123-.06zm-5.583.057c.049 0 .074.023.079.069.005.047-.011.15-.05.308l-.06.226-.263.004.056-.226a1.458 1.458 0 0 1 .104-.32c.022-.039.068-.059.134-.06zm.442 2.806a1.674 1.674 0 0 1-.38.215l-.005.002c-.2.079-.433.124-.704.127h-.004c-.272 0-.501-.042-.69-.121a1.233 1.233 0 0 1-.25-.136.522.522 0 0 1-.418.215l-.917.004a.509.509 0 0 1-.137-.016.54.54 0 0 1-.136.018l-.305.004c.082.392.206.769.372 1.124a4.566 4.566 0 0 0 1.675 1.943 4.427 4.427 0 0 0 2.22.694c1.87.082 3.828-.952 5.008-2.846.138-.222.27-.46.388-.708l-.014-.008c-.175-.115-.28-.237-.331-.426l-.16.075a1.944 1.944 0 0 1-.706.126 1.738 1.738 0 0 1-.698-.122c-.204-.085-.765.091-.982.091h-.97a.534.534 0 0 1-.194-.038.52.52 0 0 1-.211.048l-.986.01a.521.521 0 0 1-.465-.275z" }) + ] + } + ); +}); + +export { SiNewegg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.cjs new file mode 100644 index 000000000..354323c85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDA238"; +const SiNewgrounds = React__namespace.forwardRef(function SiNewgrounds2({ title = "Newgrounds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.187 3.236C.397 3.966.002 4.876.002 5.97v15.584c-.02.243.101.364.365.364H3.07c.243 0 .365-.121.365-.364V6.03c0-.405.212-.608.638-.608H6.29c.405 0 .608.203.608.608v15.523c0 .243.142.364.425.364h2.643c.243 0 .374-.121.395-.364V5.97c-.02-1.093-.415-2.005-1.185-2.734A4.047 4.047 0 0 0 6.29 2.082H4.073c-1.134 0-2.096.385-2.886 1.154m20.9 18.105c.263-.162.506-.344.728-.547.79-.77 1.185-1.68 1.185-2.734v-5.62c-.02-.263-.152-.394-.395-.394h-4.374c-.263 0-.395.131-.395.394v2.522c0 .263.132.395.395.395h.941c.244 0 .365.141.365.425v2.278c0 .385-.192.577-.577.577h-2.248c-.425 0-.638-.192-.638-.577V6.03c0-.404.213-.607.638-.607h2.248c.385 0 .577.203.577.608V8.34c-.02.243.111.374.395.394h2.673c.243-.02.375-.151.395-.394V5.97c0-1.073-.395-1.984-1.185-2.734-.81-.77-1.762-1.154-2.855-1.154h-2.248c-1.114 0-2.066.385-2.855 1.154-.83.75-1.236 1.66-1.216 2.734v12.09c-.02 1.053.385 1.965 1.216 2.734.222.203.465.385.729.547.627.385 1.336.577 2.126.577h2.248c.79 0 1.498-.192 2.126-.577Z" }) + ] + } + ); +}); + +exports.default = SiNewgrounds; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.d.ts new file mode 100644 index 000000000..8ce4277f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDA238"; +declare const SiNewgrounds: IconType; +export { SiNewgrounds as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.mjs new file mode 100644 index 000000000..817d7a900 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewgrounds.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDA238"; +const SiNewgrounds = React.forwardRef(function SiNewgrounds2({ title = "Newgrounds", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.187 3.236C.397 3.966.002 4.876.002 5.97v15.584c-.02.243.101.364.365.364H3.07c.243 0 .365-.121.365-.364V6.03c0-.405.212-.608.638-.608H6.29c.405 0 .608.203.608.608v15.523c0 .243.142.364.425.364h2.643c.243 0 .374-.121.395-.364V5.97c-.02-1.093-.415-2.005-1.185-2.734A4.047 4.047 0 0 0 6.29 2.082H4.073c-1.134 0-2.096.385-2.886 1.154m20.9 18.105c.263-.162.506-.344.728-.547.79-.77 1.185-1.68 1.185-2.734v-5.62c-.02-.263-.152-.394-.395-.394h-4.374c-.263 0-.395.131-.395.394v2.522c0 .263.132.395.395.395h.941c.244 0 .365.141.365.425v2.278c0 .385-.192.577-.577.577h-2.248c-.425 0-.638-.192-.638-.577V6.03c0-.404.213-.607.638-.607h2.248c.385 0 .577.203.577.608V8.34c-.02.243.111.374.395.394h2.673c.243-.02.375-.151.395-.394V5.97c0-1.073-.395-1.984-1.185-2.734-.81-.77-1.762-1.154-2.855-1.154h-2.248c-1.114 0-2.066.385-2.855 1.154-.83.75-1.236 1.66-1.216 2.734v12.09c-.02 1.053.385 1.965 1.216 2.734.222.203.465.385.729.547.627.385 1.336.577 2.126.577h2.248c.79 0 1.498-.192 2.126-.577Z" }) + ] + } + ); +}); + +export { SiNewgrounds as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.cjs new file mode 100644 index 000000000..22499f263 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF160B"; +const SiNewjapanprowrestling = React__namespace.forwardRef(function SiNewjapanprowrestling2({ title = "New Japan Pro-Wrestling", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.95.086C10.875.082 9.814.24 8.69.563c-3.17.913-6.005 3.227-7.422 6.064a13 13 0 0 0-1.184 3.728c-.122.8-.11 2.422.025 3.3.204 1.327.562 2.498 1.08 3.536a11.8 11.8 0 0 0 2.295 3.187c2.015 2.007 4.58 3.207 7.502 3.51.516.053 1.876.018 2.479-.065 4.408-.602 8.04-3.365 9.696-7.376 1.065-2.578 1.12-5.86.14-8.506a15 15 0 0 0-1.058-2.156 12.04 12.04 0 0 0-4.65-4.299c-1.137-.59-2.306-.98-3.67-1.218A11.7 11.7 0 0 0 11.95.086m.05.207c6.465 0 11.705 5.24 11.705 11.707 0 6.466-5.24 11.706-11.705 11.706C5.534 23.706.293 18.466.293 12S5.533.293 12 .293m-.098.211c-.436 0-.86.018-1.162.053A12 12 0 0 0 2.594 5.24c-.779 1.04-1.52 2.592-1.86 3.9-.253.976-.316 1.513-.318 2.73-.003 1.18.028 1.516.232 2.523.68 3.336 2.987 6.31 6.096 7.856 1.43.71 2.564 1.036 4.334 1.244.41.048 2.023-.016 2.592-.103 3.306-.508 6.203-2.323 7.997-5.01.416-.622 1.028-1.803 1.268-2.45.215-.58.448-1.497.556-2.203.12-.774.12-2.62.004-3.372-.386-2.488-1.483-4.662-3.242-6.425-1.821-1.826-4.14-2.96-6.835-3.346a11 11 0 0 0-1.328-.08zm-.02.113c1.977-.005 3.637.39 5.407 1.287a11.25 11.25 0 0 1 4.638 4.34c1.073 1.834 1.55 3.598 1.553 5.74.002 1.91-.318 3.314-1.12 4.928-.956 1.925-2.185 3.34-3.901 4.491-2.154 1.446-5.024 2.185-7.494 1.93-2.242-.232-4.313-1.066-6.125-2.467-.533-.412-1.422-1.303-1.887-1.893-.68-.864-1.347-2.05-1.709-3.028-.856-2.316-.942-5.08-.226-7.263.166-.508.567-1.497.771-1.903C3.229 3.92 6.165 1.67 9.473.887 10.336.683 10.9.62 11.88.617m.074.211a10.5 10.5 0 0 0-1.518.106c-1.68.24-3.25.85-4.76 1.845-1.313.87-2.577 2.173-3.36 3.467-.498.827-1.036 2.129-1.284 3.11-.436 1.726-.404 3.704.088 5.568.776 2.94 2.922 5.576 5.692 6.99 1.437.733 2.666 1.076 4.496 1.255.35.034.967.027 1.49-.018a11.3 11.3 0 0 0 4.22-1.166 11.04 11.04 0 0 0 5.017-4.885c.848-1.622 1.212-3.13 1.215-5.047.004-1.895-.314-3.284-1.127-4.92-.934-1.882-2.11-3.227-3.811-4.364A11.66 11.66 0 0 0 11.955.83m.668.463q.116 0 .242.022c.37.06.467.15.496.46l.024.233h-.233c-.205 0-.233-.01-.246-.102-.012-.088-.048-.105-.234-.117-.17-.01-.224.002-.246.06-.038.1.035.143.32.18.469.063.627.21.627.594 0 .3-.078.468-.252.55-.18.087-.66.095-.894.015-.175-.06-.322-.285-.32-.49 0-.198.058-.245.265-.21.144.025.188.055.2.13.025.179.542.205.542.028 0-.11-.105-.16-.412-.195-.295-.033-.467-.143-.524-.34-.055-.192.007-.549.112-.654.108-.108.3-.166.533-.164m1.492.193c.038 0 .2.027.393.07.826.18.93.25.93.62 0 .305-.153.718-.3.814-.137.09-.293.09-.618.004l-.262-.068a2 2 0 0 0-.067.275c-.06.295-.075.304-.35.225-.081-.024-.148-.06-.148-.078 0-.02.094-.442.207-.938.114-.495.205-.91.205-.922zm-3.13.26.03.16c.036.19-.002.22-.312.264-.153.02-.22.053-.22.102 0 .056.04.064.218.04.12-.018.253-.043.297-.056.067-.02.08.006.08.16V2.6l-.268.052-.267.055.033.19c.04.216.006.257-.213.257l-.142.002-.1-.603c-.055-.332-.093-.61-.084-.62.01-.009.227-.056.482-.103zm3.56.367q-.055 0-.074.018a.4.4 0 0 0-.051.174c-.012.11.006.14.1.166.244.07.366.047.423-.078.047-.102.042-.128-.027-.178a.8.8 0 0 0-.371-.102m-5.11.033c.19 0 .23.017.33.15.243.33.286.75.094.927-.198.183-.6.29-.85.222-.105-.028-.312-.426-.345-.668a.57.57 0 0 1 .027-.306c.08-.147.485-.324.745-.324m6.803.075c.182-.008.608.135.785.27.215.162.273.342.207.636-.063.285-.407.896-.582 1.033-.153.12-.377.12-.691 0a1.15 1.15 0 0 1-.408-.28c-.16-.174-.168-.2-.14-.398.064-.474.527-1.205.796-1.257zm-9.113.258h.03c.154.004.28.088.398.254l.12.17-.194.12c-.192.12-.198.12-.272.034-.073-.085-.08-.086-.215-.006-.21.124-.286.224-.256.346.037.147.39.63.46.63.108 0 .443-.25.443-.332 0-.106-.072-.103-.233.012l-.13.094-.118-.174a1 1 0 0 1-.117-.205c0-.036.626-.45.68-.45.034 0 .282.36.37.536a.8.8 0 0 1 .052.285c0 .238-.173.44-.543.64-.283.15-.374.167-.545.1-.266-.108-.885-1.005-.885-1.283 0-.184.133-.36.414-.547.217-.145.393-.22.54-.224m2.276.09h-.01a1 1 0 0 0-.138.04c-.157.054-.174.11-.092.29.053.115.145.145.287.09.103-.04.08-.266-.04-.42Zm6.96.19a.22.22 0 0 0-.141.05c-.137.123-.342.626-.291.71.047.078.322.233.412.233.03 0 .126-.117.215-.26.224-.36.254-.51.115-.617a.5.5 0 0 0-.31-.117m1.695.398c.065 0 .87.65.92.742.038.07.036.143-.004.276-.065.215-.344.54-.465.54-.06 0-.088.033-.088.108 0 .06-.068.2-.152.31a3 3 0 0 0-.21.306c-.071.135-.108.13-.302-.04l-.162-.142.17-.23c.185-.252.178-.3-.051-.47l-.125-.093-.125.14a3 3 0 0 0-.2.247l-.075.107-.184-.146-.184-.145.602-.756c.33-.415.617-.754.635-.754m-12.567.32c.018 0 .315.322.66.715l.63.715-.198.203c-.11.112-.23.202-.265.202-.037 0-.286-.117-.553-.26-.522-.28-.523-.278-.065.242l.287.324-.15.145c-.082.08-.17.145-.193.144-.024 0-.327-.324-.674-.72l-.63-.72.14-.144c.28-.288.3-.29.84-.005.269.14.486.242.486.228s-.15-.2-.33-.416l-.328-.393.156-.13a.8.8 0 0 1 .187-.13m6.375.187c.67-.004 1.406.044 1.848.133 2.845.57 5.293 2.692 6.236 5.402.862 2.479.43 5.567-1.058 7.563-.353.472-1.135 1.292-1.57 1.646a8.4 8.4 0 0 1-3.641 1.704c-.447.09-.734.117-1.45.13-.493.01-1.052 0-1.24-.022-.64-.08-1.327-.23-1.797-.392-2.01-.7-3.853-2.35-4.81-4.308-.386-.79-.628-1.688-.733-2.723-.31-3.1 1.067-6.02 3.665-7.766 1.073-.72 2.087-1.1 3.49-1.302a8 8 0 0 1 1.06-.065m.162.14c-.645.003-1.346.05-1.744.13-1.626.328-3.092 1.156-4.302 2.43a7.6 7.6 0 0 0-1.37 1.95 7.8 7.8 0 0 0-.83 2.844c-.07.65-.024 1.777.096 2.383.48 2.416 2.187 4.635 4.426 5.75.718.358 1.74.66 2.668.787.45.062 1.982.025 2.424-.06 1.86-.35 3.39-1.16 4.623-2.456.642-.675.985-1.16 1.367-1.93.956-1.928 1.131-4.37.453-6.314-.211-.605-.69-1.542-1.041-2.035-.347-.487-1.103-1.292-1.565-1.668a7.97 7.97 0 0 0-4.183-1.773 9 9 0 0 0-1.024-.043m6.07.053c-.025.003-.05.03-.091.084-.084.11-.083.112.062.236q.257.22.35.043c.046-.086.009-.137-.242-.328q-.04-.032-.067-.035zm1.468.486.394.414c.216.228.437.47.49.535l.093.12-.176.18-.175.18-.165-.16c-.091-.088-.18-.16-.198-.16s-.267.215-.553.479l-.52.48-.15-.154c-.082-.085-.141-.176-.132-.2.009-.026.233-.25.498-.497.265-.248.487-.47.494-.498.007-.027-.05-.11-.125-.182-.076-.073-.137-.155-.135-.182s.084-.117.182-.2zm-8.737.2c.183.004.384.053.576.157.27.148.423.326.524.612.084.237.094.83.015.91-.08.08-.316.067-.453-.026a6 6 0 0 1-.32-.246 2 2 0 0 0-.41-.256c-.245-.107-.53-.406-.572-.6-.076-.344.238-.557.64-.55m2.432.098h.049a.65.65 0 0 1 .295.068c.306.168.346.57.088.898-.054.068-.296.224-.54.346-.243.123-.493.276-.554.342-.14.15-.168.15-.248-.006-.18-.352-.12-1.052.113-1.318.172-.196.508-.323.797-.33M9.34 4.84q.07 0 .15.004c.333.016.823.89.616 1.097-.073.073-.29.066-.518-.017a3.4 3.4 0 0 0-.604-.112c-.496-.05-.65-.11-.69-.267-.023-.097.01-.148.194-.317.31-.28.52-.38.852-.386Zm5.26.056c.16 0 .307.04.504.14.317.158.668.506.625.618-.041.107-.35.25-.698.323-.346.073-.43.076-.64.015-.203-.058-.33-.274-.33-.56 0-.192.02-.245.156-.38.135-.135.186-.155.383-.155M3.822 5.05h.022c.11.01.293.168.76.56.407.342.74.638.74.657s-.067.1-.15.18l-.147.144-.748-.62-.746-.618.09-.13c.072-.1.114-.167.18-.173m-.588.72c.014 0 .132.216.264.48l.24.483h.575c.315 0 .574.01.574.022s-.058.114-.127.228l-.125.21H3.67l.318.206c.175.114.326.215.336.225.022.022-.185.393-.218.39a23 23 0 0 1-.82-.48 38 38 0 0 1-.82-.498c-.03-.032.19-.395.24-.394.026 0 .158.072.296.16.138.087.27.16.29.16.023 0-.044-.16-.151-.354l-.196-.353.13-.244c.073-.133.145-.24.159-.24m13.02.047h.04l.147.008c.808.058.953.576.446 1.584q-.344.686-.56.356c-.111-.172-.05-.32.277-.66.33-.345.392-.45.392-.64q0-.325-.392-.36c-.347-.03-.6.118-.782.458-.176.332-.264.414-.513.485-.24.068-.283.156-.153.318.21.262.217.31.055.494-.11.125-.141.194-.117.266.017.053.042.173.054.266.03.22-.078.29-.578.379a3.5 3.5 0 0 0-.867.294c-.27.126-.53.236-.578.244-.17.03-.276.245-.27.555l.01.975.004.687-.138.125c-.162.147-.592.283-.797.252a1.5 1.5 0 0 1-.29-.082c-.12-.05-.158-.05-.218 0-.124.103-.09.32.072.455.373.315.453.412.453.545 0 .142.134.242.324.242.083 0 .088-.02.06-.226-.03-.226-.028-.227.202-.44.127-.116.245-.268.262-.336.05-.2.154-.277.537-.398.627-.198 1.162-.124 1.525.21.242.224.323.47.29.903-.023.339-.151.64-.344.82-.166.154-.196.137-.196-.1 0-.172-.017-.213-.103-.245-.181-.067-.714-.09-.79-.033-.038.028-.09.166-.116.304a1.4 1.4 0 0 1-.211.49c-.173.252-.46.505-.514.452-.017-.018-.03-.24-.03-.492 0-.425-.01-.465-.11-.545-.15-.122-.38-.154-.71-.1-.22.036-.317.032-.433-.016-.18-.073-.278-.045-.313.092-.022.09.072.749.147 1.026q.053.193-.237.015c-.077-.047-.28-.24-.45-.427l-.307-.344-.37-.053c-.667-.094-1.104-.41-1.41-1.02-.092-.183-.21-.36-.26-.392-.14-.09-.307.013-.38.236-.048.146-.108.21-.297.32-.13.076-.3.225-.375.33a1 1 0 0 1-.203.22q-.138.057-.295-.297c-.117-.264-.17-1.29-.076-1.514.037-.09.197-.243.443-.422.262-.19.416-.338.48-.46.05-.1.083-.19.073-.2s-.1.046-.2.125c-.098.08-.328.215-.51.303-.382.182-.504.177-.702-.036l-.125-.134-.05.125a2 2 0 0 0-.077.287c-.052.264-.144.395-.428.613a7 7 0 0 0-.637.6c-.2.215-.397.392-.435.392-.08 0-.108-.19-.155-1.035-.045-.81.067-1.314.38-1.705.23-.287.625-.455.939-.402.234.04.314.128.314.343 0 .437.094.419.324-.064.19-.398.268-.48.553-.572.18-.06.352-.215.297-.27-.02-.02-.18-.033-.36-.033-.294 0-.33-.01-.343-.092-.05-.323-.043-.32-.26-.097a.9.9 0 0 1-.4.26 3.1 3.1 0 0 0-.782.37.5.5 0 0 1-.2.086c-.132 0-.056-.33.134-.593a5 5 0 0 0 .322-.545c.272-.54.5-.743.832-.743.152 0 .173.017.24.184.04.1.1.184.13.184.12 0 .156-.164.11-.512-.112-.87-.021-1.33.296-1.48.285-.136.45-.086 1.03.312.35.24.394.258.646.258.147 0 .45-.045.673-.1.31-.076.554-.1 1.047-.103.612-.004.656.002.918.125.514.24.644.446.57.9-.025.156-.032.302-.017.326.08.127-.054.36-.422.737q-.385.395-.36.464c.022.057.14.073.587.09.6.023.723-.003.816-.178.052-.097.047-.137-.04-.304-.12-.234-.18-1.068-.101-1.363.1-.367.485-.647 1.11-.807a1.6 1.6 0 0 1 .633-.04c.817.083.885.072 1.504-.224.413-.198.529-.25.689-.256m4.401.135c.3 0 .648.46.65.856.002.16-.02.213-.16.336-.092.08-.19.136-.22.127s-.094-.094-.145-.188c-.077-.143-.08-.175-.027-.21.054-.032.055-.064.008-.18-.078-.186-.196-.287-.278-.237-.053.033-.038.096.082.358.237.513.186.683-.277.93-.276.147-.39.12-.651-.15-.226-.235-.346-.485-.346-.724 0-.113.34-.474.422-.447.026.01.09.09.144.182.09.156.092.172.02.252s-.07.096.025.267c.057.1.137.19.18.197.144.028.144-.133-.005-.435-.08-.162-.145-.328-.145-.37 0-.248.405-.564.723-.564M7.142 6.32c-.112-.003-.205.028-.256.102-.105.15-.095.618.02.928.082.216.265.44.36.44.016 0 .158-.116.315-.257.413-.368.458-.625.164-.92-.182-.182-.417-.287-.603-.293m10.422.567c.063.004.142.075.263.213.288.326.276.348-.222.435a.35.35 0 0 1-.205-.025c-.101-.06-.103-.234-.004-.442.059-.124.105-.186.168-.18m.355 1h.014a.7.7 0 0 1 .18.055c.266.102.648.442.777.69.105.203.139.63.056.713-.107.108-.32.096-.605-.033-.497-.226-.61-.398-.61-.922 0-.242.022-.342.087-.422.042-.053.064-.08.1-.082m-.95.037q.11.003.25.133c.142.132.289.526.3.806.007.15-.078.19-.27.125a3 3 0 0 1-.282-.133c-.215-.114-.276-.275-.23-.613.028-.213.114-.322.234-.318m-14.482.703a.74.74 0 0 1 .504.186c.292.255.362.586.197.923-.17.35-.62.52-.964.368-.523-.235-.66-.808-.29-1.217a.76.76 0 0 1 .553-.26m18.947.002c.212.003.427.09.582.27a.9.9 0 0 1 .185.359.784.784 0 0 1-.99.873.776.776 0 0 1-.457-1.1.74.74 0 0 1 .68-.402m-12.79.17c-.15 0-.272.009-.272.02 0 .01.043.265.094.568.19 1.128.38 1.367 1.27 1.586.773.19.864.262.827.666-.017.195-.007.298.04.367.058.082.156.132.156.08a2 2 0 0 0-.05-.162c-.04-.11-.038-.162.005-.213.04-.048.046-.167.023-.41-.028-.307-.02-.353.07-.475.09-.125.094-.153.044-.398a2.3 2.3 0 0 1-.024-.623c.03-.345.028-.365-.084-.477-.097-.097-.16-.117-.373-.117-.193 0-.322-.034-.53-.14A2.95 2.95 0 0 0 8.646 8.8m-6.197.062c-.346.027-.59.45-.437.758.158.333.68.41.906.11.19-.233.138-.634-.14-.778a.54.54 0 0 0-.286-.09Zm18.937.002c-.374.013-.623.5-.41.809.168.265.58.348.81.125.232-.196.254-.596.012-.79a.6.6 0 0 0-.412-.144m-6.011.188q.009 0 .012.002c.044.042-.293 1.034-.418 1.23q-.363.57-1.227.389a1.5 1.5 0 0 0-.4-.02l-.194.026.028-.31c.028-.318.095-.502.219-.604.063-.053.072-.037.072.127 0 .273.064.404.27.54.31.206.697.12.947-.208.116-.154.122-.56.01-.78-.045-.086-.066-.173-.046-.193.04-.04.632-.2.727-.2m-6.605.023c.016 0 .108.023.203.05l.172.054-.094.156c-.075.126-.087.204-.065.395.065.547.56.819 1.07.588.18-.083.43-.346.43-.456 0-.03.018-.052.04-.052.094 0 .178.142.208.35.018.122.043.265.055.318.02.09-.002.099-.36.127l-.61.05a1.4 1.4 0 0 1-.383-.017c-.323-.082-.52-.307-.625-.713-.07-.27-.098-.85-.04-.85m8.174.05c.122-.002.278.099.407.284.126.183.129.19.129.918 0 .503-.018.74-.053.752-.03.01-.164-.086-.303-.213-.368-.336-.468-.595-.432-1.111.016-.22.053-.45.082-.516a.18.18 0 0 1 .17-.115m-7.414.183q.046 0 .114.008c.513.057.74.533.365.765-.228.14-.413.123-.602-.055a.6.6 0 0 1-.187-.318c-.025-.144-.013-.188.09-.293.08-.08.127-.107.22-.107m4.72.095h.02c.05.002.089.025.15.07.092.07.128.14.139.274.025.342-.13.543-.457.596-.125.02-.175.002-.262-.092a.6.6 0 0 1-.133-.322c-.02-.176-.006-.223.092-.32a.86.86 0 0 1 .45-.206m-4.571.137c-.122.005-.203.08-.203.197 0 .23.328.302.423.092.07-.152.004-.267-.166-.287zm8.35.004q.078 0 .222.053c.45.16.93.587 1.125 1.004.245.52.246 1.447.004 1.69-.15.15-.277.104-.691-.247a21 21 0 0 0-.565-.463c-.192-.147-.342-.437-.344-.658 0-.08.03-.284.07-.453a2.6 2.6 0 0 0 .06-.574c-.013-.251.006-.35.12-.352m-3.922.127q-.23-.002-.228.24c0 .092.03.14.103.17.116.046.27.018.32-.06.052-.08.042-.234-.02-.295-.03-.03-.11-.055-.175-.055m2.659 1.285c.125 0 .406.335.447.535.053.26.038.738-.03 1.024-.07.3-.227.687-.28.687-.02 0-.117-.094-.217-.21-.277-.324-.316-.494-.198-.837.053-.153.107-.4.12-.545.06-.614.07-.654.158-.654M1.08 11.04l.287.025c.353.03 1.66.116 1.783.116.082 0 .09.027.08.283l-.015.283-.572.225a9 9 0 0 0-.596.246c-.013.012.253.008.588-.01l.607-.031-.013.199-.014.2-.873.079c-.48.043-.96.089-1.067.1l-.195.02.002-.35v-.35l.693-.228c.8-.265.793-.288-.109-.295l-.586-.004v-.254Zm21.001.307.076.002c.202.004.39.028.47.072.222.12.264.235.265.723 0 .537-.085.724-.37.81-.234.07-.648.068-1.052-.006-.522-.095-.65-.168-.713-.4-.06-.217-.033-.713.047-.861.06-.115.28-.231.435-.231.108 0 .117.016.117.2 0 .163-.018.207-.09.226-.135.035-.2.24-.138.428.04.124.08.158.22.187.243.052.733.032.811-.033.09-.076.093-.52.002-.594-.13-.108-.23-.037-.246.174l-.016.197-.214-.015-.215-.014v-.772l.138-.04a2 2 0 0 1 .473-.051zm-15.895.43c.036 0 .09.057.117.126.1.253.237.915.265 1.297.034.46 0 .552-.357.946-.127.14-.292.393-.367.56-.206.458-.317.55-.463.385-.19-.214-.492-1.225-.492-1.64 0-.242.18-.704.36-.923.16-.196.853-.752.937-.752m11.68.095q.053 0 .126.043c.177.1.735.852.85 1.147.143.367.142.903-.004 1.228-.108.242-.281.422-.402.422-.036 0-.261-.19-.502-.424-.605-.585-.7-.786-.54-1.164a6 6 0 0 0 .2-.68c.103-.42.163-.57.27-.572m-14.67.883q.025 0 .028.002c.026.026.248 1.097.23 1.11a3 3 0 0 1-.205.054c-.22.054-.185.103-.3-.42-.062-.28-.102-.33-.21-.262-.05.033-.05.099.012.395.04.195.074.362.074.369 0 .025-.464.124-.484.103a3 3 0 0 1-.1-.394c-.075-.36-.083-.375-.203-.375-.069 0-.137.019-.15.04-.014.023.015.223.064.446.05.224.075.42.057.436-.044.039-.47.18-.545.18-.033 0-.06-.013-.06-.028s-.076-.348-.165-.74a9 9 0 0 1-.148-.725c.032-.026 1.86-.19 2.105-.191m4.896.168c.096 0 .102.01.265.482.08.226.17.382.31.528.247.258.35.41.35.52 0 .116-.59.993-.67.993-.034 0-.13-.091-.212-.205a11 11 0 0 1-.38-.584c-.217-.358-.23-.392-.23-.7 0-.52.28-1.034.567-1.034m12.653.185c.414.006 2.005.093 2.03.118.018.018-.078.712-.102.734a18 18 0 0 1-.76.094c-.412.046-.723.09-.69.103.035.012.352.086.706.164.62.138.64.147.63.256-.03.31-.064.41-.14.406-.043-.002-.51-.143-1.037-.31-.528-.168-.96-.314-.96-.326l.032-.26.03-.236.56-.104c.31-.057.54-.112.514-.121a8 8 0 0 0-.504-.074l-.455-.057.015-.182a.7.7 0 0 1 .033-.2.5.5 0 0 1 .098-.005m-4.49.047c.083-.006.192.057.272.176.088.13.104.216.104.533 0 .454-.058.633-.397 1.227-.198.348-.276.447-.353.447-.054 0-.12-.027-.145-.06a22 22 0 0 1-.29-.424c-.214-.32-.24-.38-.214-.522.048-.253.145-.402.528-.808.197-.21.373-.425.39-.48s.057-.086.106-.09m-12.81.779c.04 0 .115.335.08.367a3 3 0 0 1-.405.2c-.202.09-.353.165-.336.165s.204-.04.414-.09.396-.092.414-.092c.037 0 .145.198.192.35.026.084-.025.124-.405.32-.238.124-.427.23-.42.237s.216-.05.46-.13c.247-.078.455-.134.464-.124s.05.093.088.185l.07.166-.746.235c-.41.129-.867.275-1.017.324a3 3 0 0 1-.305.09c-.017 0-.075-.107-.129-.237a1.5 1.5 0 0 1-.097-.29c0-.031.228-.164.505-.296.278-.131.504-.245.504-.253s-.22.044-.492.117a6 6 0 0 1-.568.133c-.048 0-.108-.094-.172-.26-.055-.143-.092-.265-.084-.274a90 90 0 0 1 1.984-.843m3.42.23c.176 0 .35.188.53.576.086.19.26.502.385.694.144.22.227.398.227.484 0 .075-.102.459-.227.854-.124.394-.24.796-.256.89-.015.099-.053.172-.088.172-.033 0-.214-.182-.402-.402-.434-.51-.748-.934-.902-1.227-.106-.2-.12-.284-.12-.643 0-.35.02-.451.126-.68.204-.44.484-.717.726-.718m10.427.086h.002c.098.005.208.082.35.229.428.445.647 1.477.337 1.595-.117.045-.285-.06-.41-.258-.083-.131-.147-.185-.224-.185-.163 0-.176.107-.053.434.174.462.19.672.072.916-.12.248-.377.486-.527.486-.095 0-.123-.044-.211-.31a5 5 0 0 0-.28-.635c-.248-.457-.24-.53.14-1.14a14 14 0 0 0 .456-.788c.12-.238.222-.35.348-.344m3.093.28c.043.002 2.034.59 2.047.607.02.024-.218.632-.246.63-.016 0-.463-.178-.993-.396s-.968-.4-.974-.404c-.023-.016.137-.436.166-.436m-11.095.229c.043 0 .138.088.213.195.295.422.43.892.43 1.514 0 .432-.003.447-.102.447-.067 0-.21-.111-.408-.318-.393-.41-.566-.758-.53-1.07.033-.273.288-.77.397-.77m1.873.048c.037 0 .375.688.375.763s-.222.244-.32.244a.2.2 0 0 1-.14-.07c-.098-.12-.11-.504-.022-.732.043-.113.09-.205.107-.205m2.023.023.065.16c.102.25.13.557.064.688-.07.137-.196.16-.367.066s-.158-.207.06-.594zm1.784.21q.1 0 .164.099c.089.143.18.785.146 1.017-.04.259-.23.477-.617.707-.36.214-.328.203-.414.149-.05-.032-.056-.105-.03-.332.02-.16.04-.426.048-.59.016-.368.15-.671.396-.893q.178-.16.307-.158zm-2.922.638c.072 0 .31.073.53.164.408.169.562.182 1.015.086.323-.07.338.209.027.482-.2.176-.323.177-.828.002-.553-.192-.79-.185-1.477.045-.3.1-.562.184-.58.184s-.1-.07-.185-.155c-.242-.242-.273-.535-.057-.533.058 0 .195.042.305.092.32.145.456.12.81-.14.2-.148.355-.227.44-.227m9.54.01.291.115.29.115-.276.59c-.153.325-.29.59-.305.59a24 24 0 0 1-.9-.48 44 44 0 0 0-.91-.495c-.044-.016.11-.353.163-.353.02 0 .325.143.674.318l.635.318.17-.36zm-1.94.542c.056 0 .377.14.377.17a1.5 1.5 0 0 1-.1.2c-.056.097-.092.186-.08.195.01.009.33.198.708.422l.7.414c.02.012-.238.43-.265.428a18 18 0 0 1-.71-.457l-.69-.455-.13.162-.13.16-.17-.123-.18-.133c-.01-.008.604-.92.66-.98q.004-.004.009-.003m-16.417.135.118.172a.8.8 0 0 1 .115.217c0 .026-.072.096-.16.156s-.16.135-.16.168c0 .075.222.342.285.342.04 0 .67-.42 1.058-.705l.127-.094.112.135a.7.7 0 0 1 .113.172c.004.089-.96.868-1.254 1.01-.262.13-.357.144-.512.08-.145-.057-.352-.294-.498-.563-.107-.198-.126-.277-.1-.41.036-.2.242-.416.542-.568zm12.547.047c.112 0 .292.263.344.504a1.65 1.65 0 0 1-.021.865c-.113.38-.3.544-1.1.963-.393.206-.72.373-.73.373-.007 0-.025-.19-.042-.424a3 3 0 0 0-.107-.638c-.11-.31-.04-.446.322-.637.342-.18.55-.338.96-.72.17-.158.34-.286.374-.286m-7.302.018q.035 0 .086.01c.24.047.385.135.718.445.17.158.395.354.5.435.31.24.343.456.2 1.338-.074.47-.107.572-.186.586-.037.007-.273-.104-.525-.246-.698-.393-.947-.573-1.1-.791-.124-.177-.142-.241-.156-.594-.022-.525.05-.837.244-1.04.1-.106.144-.143.22-.143m-3.208.986.152.148c.084.082.154.167.154.188s-.12.22-.267.44c-.416.62-.843 1.3-.827 1.316.01.008.325-.282.703-.645.38-.362.7-.661.713-.662.052-.004.558.45.666.598.2.27.137.473-.263.85-.136.13-.293.25-.348.269-.13.042-.368-.075-.562-.275-.085-.088-.177-.158-.204-.16-.026 0-.15.115-.28.257l-.231.26-.328-.38-.328-.376.136-.197a1 1 0 0 0 .133-.236c0-.021-.07-.118-.154-.217l-.155-.18-.222.098-.223.097-.172-.193a1.3 1.3 0 0 1-.172-.22c0-.016.468-.196 1.04-.403zm13.699.004c.112 0 .258.068.38.176.078.067.076.077-.04.199-.093.097-.152.12-.235.1-.082-.021-.144.005-.244.1-.15.145-.17.227-.062.269.04.015.08.027.088.027s.113-.082.236-.184c.288-.238.479-.292.7-.2.447.186.73.527.672.816-.036.18-.24.453-.47.627-.19.144-.424.174-.592.076a3 3 0 0 1-.273-.205l-.18-.15.17-.17.219.207.168-.186c.196-.218.208-.306.053-.377-.104-.047-.135-.032-.34.16-.334.312-.542.337-.828.096-.175-.147-.278-.337-.278-.512 0-.256.434-.7.686-.7m-8.297.469a.25.25 0 0 1 .13.033c.212.114.968 1.278.968 1.492 0 .162-.455.218-.79.098-.434-.155-.584-.396-.585-.936-.002-.424.105-.677.277-.687m-5.72.09c-.027.004-.12.038-.225.083-.214.092-.217.096-.137.184.08.09.083.09.23-.08a1 1 0 0 0 .14-.186zm8.519.13q.02 0 .039.002c.166.012.254.172.252.473-.005.5-.267.846-.73.967-.344.09-.38.088-.575-.01-.11-.055-.165-.116-.174-.195-.024-.21.466-.843.848-1.096q.2-.133.34-.14m4.562.158c.04.002.093.046.176.142l.152.178-.28.223c-.374.298-.362.279-.263.369.084.076.1.07.387-.174l.299-.254.164.203.166.2-.3.238c-.163.13-.298.263-.298.294 0 .032.036.092.08.13.075.068.108.053.42-.198.186-.15.353-.271.373-.271.042 0 .415.41.41.453-.002.024-.712.606-1.03.842l-.11.082-.201-.29c-.63-.89-.996-1.43-.996-1.46 0-.026.498-.453.816-.7a.05.05 0 0 1 .035-.01zm-12.176.529c-.02 0-.09.058-.16.13l-.127.132.196.164.197.162.127-.09c.07-.05.13-.12.13-.152 0-.063-.298-.346-.363-.346m1.23.394c.09-.005.415.18.415.244 0 .018-.12.453-.27.97-.15.514-.267.942-.26.95.007.006.216-.337.462-.766.594-1.036.505-.945.796-.823.232.096.242.106.22.241-.04.223-.09.99-.065.99.012 0 .11-.212.22-.47.108-.26.203-.476.208-.483a.7.7 0 0 1 .2.062c.145.058.185.095.163.15-.017.042-.185.5-.375 1.016-.19.518-.36.953-.375.97-.016.015-.163-.032-.326-.106a6 6 0 0 1-.303-.143c-.004-.005.037-.33.094-.72a10 10 0 0 0 .09-.73c-.008-.008-.153.262-.32.6-.17.336-.313.62-.32.628-.017.016-.78-.385-.878-.46-.04-.033-.033-.104.03-.29l.085-.248-.224-.145-.225-.145-.192.164c-.208.18-.227.177-.49-.048l-.15-.13.857-.617c.472-.341.885-.637.918-.657l.016-.002zm9.802.018c.226 0 .568.38.568.628q0 .15.066.15c.082 0 .287.205.553.55l.207.27-.226.137-.225.14-.232-.319c-.128-.175-.262-.32-.297-.32a.9.9 0 0 0-.252.107l-.186.107.203.358c.113.196.194.375.18.398-.026.042-.36.225-.41.225-.015 0-.234-.43-.486-.952l-.457-.95.103-.076c.184-.14.8-.453.89-.453m-.014.508a.4.4 0 0 0-.19.064c-.253.137-.253.14-.167.271a.4.4 0 0 0 .097.12c.01 0 .1-.053.2-.116.189-.12.204-.144.156-.27q-.027-.07-.096-.07m-1.03.005.342 1.024.342 1.024-.252.095a2 2 0 0 1-.304.098c-.03 0-.168-.227-.305-.504s-.252-.498-.26-.49c-.007.007.059.245.147.53.087.287.16.534.16.55 0 .027-.497.234-.563.234-.017 0-.061-.057-.097-.127-.1-.192-.856-1.8-.856-1.82 0-.023.276-.117.342-.117.029 0 .145.185.256.412.11.226.206.405.213.398a3 3 0 0 0-.1-.422 5 5 0 0 1-.113-.457c0-.043.452-.231.478-.2.007.01.11.2.23.42.12.223.226.397.235.388.01-.01-.053-.214-.138-.453l-.157-.435.2-.074zm-8.95.118c-.028 0-.094.05-.213.15-.107.092-.108.097-.024.16.124.094.163.068.227-.15.03-.106.04-.158.01-.16m2.802.475c.123-.005.908.187 1 .247a.37.37 0 0 1 .137.188c.052.207-.01.736-.105.898-.124.212-.27.252-.64.178-.35-.07-.36-.063-.407.27-.066.457-.046.438-.38.357-.19-.046-.197-.052-.167-.19.04-.187.53-1.925.547-1.945q.003-.002.015-.004m3.487.226c.207 0 .263.02.373.13.17.17.32.66.353 1.157.032.47-.04.674-.277.787-.216.103-.617.137-.805.07a.6.6 0 0 1-.24-.173c-.122-.165-.222-.69-.223-1.178 0-.385.01-.433.117-.56.136-.162.354-.233.702-.233m-1.674.045c.515 0 .574.01.652.096.124.136.153.683.045.847-.073.112-.074.125 0 .207.045.05.087.18.096.305.008.12.02.33.03.463l.019.242-.235-.014-.234-.013-.033-.344a3 3 0 0 0-.057-.402c-.013-.036-.11-.057-.252-.057h-.23v.826h-.252c-.21 0-.253-.013-.252-.08 0-.044.03-.504.068-1.02.037-.519.068-.968.068-.999 0-.043.145-.057.567-.057m-1.526.264q-.02 0-.025.006a1 1 0 0 0-.05.197l-.03.168.2.045.232.05c.018.001.054-.037.08-.085a.5.5 0 0 0 .047-.2c0-.097-.03-.118-.23-.158a1.4 1.4 0 0 0-.185-.023zm3.125.148a.54.54 0 0 0-.263.065c-.08.06-.083.093-.037.51.062.576.142.655.505.503l.164-.068-.025-.336a2 2 0 0 0-.096-.504c-.064-.153-.087-.17-.248-.17m-1.595.047c-.152 0-.16.005-.16.184 0 .178.007.183.16.183a.8.8 0 0 0 .228-.03c.042-.015.072-.08.072-.154 0-.142-.065-.183-.3-.183m2.888.057h.008c.026.028.157.37.147.38a3 3 0 0 1-.278.08l-.263.07-.026-.122-.04-.2c-.013-.062.038-.097.216-.15a2 2 0 0 1 .236-.058" }) + ] + } + ); +}); + +exports.default = SiNewjapanprowrestling; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.d.ts new file mode 100644 index 000000000..e16046ba2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF160B"; +declare const SiNewjapanprowrestling: IconType; +export { SiNewjapanprowrestling as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.mjs new file mode 100644 index 000000000..2d82e2763 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewjapanprowrestling.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF160B"; +const SiNewjapanprowrestling = React.forwardRef(function SiNewjapanprowrestling2({ title = "New Japan Pro-Wrestling", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.95.086C10.875.082 9.814.24 8.69.563c-3.17.913-6.005 3.227-7.422 6.064a13 13 0 0 0-1.184 3.728c-.122.8-.11 2.422.025 3.3.204 1.327.562 2.498 1.08 3.536a11.8 11.8 0 0 0 2.295 3.187c2.015 2.007 4.58 3.207 7.502 3.51.516.053 1.876.018 2.479-.065 4.408-.602 8.04-3.365 9.696-7.376 1.065-2.578 1.12-5.86.14-8.506a15 15 0 0 0-1.058-2.156 12.04 12.04 0 0 0-4.65-4.299c-1.137-.59-2.306-.98-3.67-1.218A11.7 11.7 0 0 0 11.95.086m.05.207c6.465 0 11.705 5.24 11.705 11.707 0 6.466-5.24 11.706-11.705 11.706C5.534 23.706.293 18.466.293 12S5.533.293 12 .293m-.098.211c-.436 0-.86.018-1.162.053A12 12 0 0 0 2.594 5.24c-.779 1.04-1.52 2.592-1.86 3.9-.253.976-.316 1.513-.318 2.73-.003 1.18.028 1.516.232 2.523.68 3.336 2.987 6.31 6.096 7.856 1.43.71 2.564 1.036 4.334 1.244.41.048 2.023-.016 2.592-.103 3.306-.508 6.203-2.323 7.997-5.01.416-.622 1.028-1.803 1.268-2.45.215-.58.448-1.497.556-2.203.12-.774.12-2.62.004-3.372-.386-2.488-1.483-4.662-3.242-6.425-1.821-1.826-4.14-2.96-6.835-3.346a11 11 0 0 0-1.328-.08zm-.02.113c1.977-.005 3.637.39 5.407 1.287a11.25 11.25 0 0 1 4.638 4.34c1.073 1.834 1.55 3.598 1.553 5.74.002 1.91-.318 3.314-1.12 4.928-.956 1.925-2.185 3.34-3.901 4.491-2.154 1.446-5.024 2.185-7.494 1.93-2.242-.232-4.313-1.066-6.125-2.467-.533-.412-1.422-1.303-1.887-1.893-.68-.864-1.347-2.05-1.709-3.028-.856-2.316-.942-5.08-.226-7.263.166-.508.567-1.497.771-1.903C3.229 3.92 6.165 1.67 9.473.887 10.336.683 10.9.62 11.88.617m.074.211a10.5 10.5 0 0 0-1.518.106c-1.68.24-3.25.85-4.76 1.845-1.313.87-2.577 2.173-3.36 3.467-.498.827-1.036 2.129-1.284 3.11-.436 1.726-.404 3.704.088 5.568.776 2.94 2.922 5.576 5.692 6.99 1.437.733 2.666 1.076 4.496 1.255.35.034.967.027 1.49-.018a11.3 11.3 0 0 0 4.22-1.166 11.04 11.04 0 0 0 5.017-4.885c.848-1.622 1.212-3.13 1.215-5.047.004-1.895-.314-3.284-1.127-4.92-.934-1.882-2.11-3.227-3.811-4.364A11.66 11.66 0 0 0 11.955.83m.668.463q.116 0 .242.022c.37.06.467.15.496.46l.024.233h-.233c-.205 0-.233-.01-.246-.102-.012-.088-.048-.105-.234-.117-.17-.01-.224.002-.246.06-.038.1.035.143.32.18.469.063.627.21.627.594 0 .3-.078.468-.252.55-.18.087-.66.095-.894.015-.175-.06-.322-.285-.32-.49 0-.198.058-.245.265-.21.144.025.188.055.2.13.025.179.542.205.542.028 0-.11-.105-.16-.412-.195-.295-.033-.467-.143-.524-.34-.055-.192.007-.549.112-.654.108-.108.3-.166.533-.164m1.492.193c.038 0 .2.027.393.07.826.18.93.25.93.62 0 .305-.153.718-.3.814-.137.09-.293.09-.618.004l-.262-.068a2 2 0 0 0-.067.275c-.06.295-.075.304-.35.225-.081-.024-.148-.06-.148-.078 0-.02.094-.442.207-.938.114-.495.205-.91.205-.922zm-3.13.26.03.16c.036.19-.002.22-.312.264-.153.02-.22.053-.22.102 0 .056.04.064.218.04.12-.018.253-.043.297-.056.067-.02.08.006.08.16V2.6l-.268.052-.267.055.033.19c.04.216.006.257-.213.257l-.142.002-.1-.603c-.055-.332-.093-.61-.084-.62.01-.009.227-.056.482-.103zm3.56.367q-.055 0-.074.018a.4.4 0 0 0-.051.174c-.012.11.006.14.1.166.244.07.366.047.423-.078.047-.102.042-.128-.027-.178a.8.8 0 0 0-.371-.102m-5.11.033c.19 0 .23.017.33.15.243.33.286.75.094.927-.198.183-.6.29-.85.222-.105-.028-.312-.426-.345-.668a.57.57 0 0 1 .027-.306c.08-.147.485-.324.745-.324m6.803.075c.182-.008.608.135.785.27.215.162.273.342.207.636-.063.285-.407.896-.582 1.033-.153.12-.377.12-.691 0a1.15 1.15 0 0 1-.408-.28c-.16-.174-.168-.2-.14-.398.064-.474.527-1.205.796-1.257zm-9.113.258h.03c.154.004.28.088.398.254l.12.17-.194.12c-.192.12-.198.12-.272.034-.073-.085-.08-.086-.215-.006-.21.124-.286.224-.256.346.037.147.39.63.46.63.108 0 .443-.25.443-.332 0-.106-.072-.103-.233.012l-.13.094-.118-.174a1 1 0 0 1-.117-.205c0-.036.626-.45.68-.45.034 0 .282.36.37.536a.8.8 0 0 1 .052.285c0 .238-.173.44-.543.64-.283.15-.374.167-.545.1-.266-.108-.885-1.005-.885-1.283 0-.184.133-.36.414-.547.217-.145.393-.22.54-.224m2.276.09h-.01a1 1 0 0 0-.138.04c-.157.054-.174.11-.092.29.053.115.145.145.287.09.103-.04.08-.266-.04-.42Zm6.96.19a.22.22 0 0 0-.141.05c-.137.123-.342.626-.291.71.047.078.322.233.412.233.03 0 .126-.117.215-.26.224-.36.254-.51.115-.617a.5.5 0 0 0-.31-.117m1.695.398c.065 0 .87.65.92.742.038.07.036.143-.004.276-.065.215-.344.54-.465.54-.06 0-.088.033-.088.108 0 .06-.068.2-.152.31a3 3 0 0 0-.21.306c-.071.135-.108.13-.302-.04l-.162-.142.17-.23c.185-.252.178-.3-.051-.47l-.125-.093-.125.14a3 3 0 0 0-.2.247l-.075.107-.184-.146-.184-.145.602-.756c.33-.415.617-.754.635-.754m-12.567.32c.018 0 .315.322.66.715l.63.715-.198.203c-.11.112-.23.202-.265.202-.037 0-.286-.117-.553-.26-.522-.28-.523-.278-.065.242l.287.324-.15.145c-.082.08-.17.145-.193.144-.024 0-.327-.324-.674-.72l-.63-.72.14-.144c.28-.288.3-.29.84-.005.269.14.486.242.486.228s-.15-.2-.33-.416l-.328-.393.156-.13a.8.8 0 0 1 .187-.13m6.375.187c.67-.004 1.406.044 1.848.133 2.845.57 5.293 2.692 6.236 5.402.862 2.479.43 5.567-1.058 7.563-.353.472-1.135 1.292-1.57 1.646a8.4 8.4 0 0 1-3.641 1.704c-.447.09-.734.117-1.45.13-.493.01-1.052 0-1.24-.022-.64-.08-1.327-.23-1.797-.392-2.01-.7-3.853-2.35-4.81-4.308-.386-.79-.628-1.688-.733-2.723-.31-3.1 1.067-6.02 3.665-7.766 1.073-.72 2.087-1.1 3.49-1.302a8 8 0 0 1 1.06-.065m.162.14c-.645.003-1.346.05-1.744.13-1.626.328-3.092 1.156-4.302 2.43a7.6 7.6 0 0 0-1.37 1.95 7.8 7.8 0 0 0-.83 2.844c-.07.65-.024 1.777.096 2.383.48 2.416 2.187 4.635 4.426 5.75.718.358 1.74.66 2.668.787.45.062 1.982.025 2.424-.06 1.86-.35 3.39-1.16 4.623-2.456.642-.675.985-1.16 1.367-1.93.956-1.928 1.131-4.37.453-6.314-.211-.605-.69-1.542-1.041-2.035-.347-.487-1.103-1.292-1.565-1.668a7.97 7.97 0 0 0-4.183-1.773 9 9 0 0 0-1.024-.043m6.07.053c-.025.003-.05.03-.091.084-.084.11-.083.112.062.236q.257.22.35.043c.046-.086.009-.137-.242-.328q-.04-.032-.067-.035zm1.468.486.394.414c.216.228.437.47.49.535l.093.12-.176.18-.175.18-.165-.16c-.091-.088-.18-.16-.198-.16s-.267.215-.553.479l-.52.48-.15-.154c-.082-.085-.141-.176-.132-.2.009-.026.233-.25.498-.497.265-.248.487-.47.494-.498.007-.027-.05-.11-.125-.182-.076-.073-.137-.155-.135-.182s.084-.117.182-.2zm-8.737.2c.183.004.384.053.576.157.27.148.423.326.524.612.084.237.094.83.015.91-.08.08-.316.067-.453-.026a6 6 0 0 1-.32-.246 2 2 0 0 0-.41-.256c-.245-.107-.53-.406-.572-.6-.076-.344.238-.557.64-.55m2.432.098h.049a.65.65 0 0 1 .295.068c.306.168.346.57.088.898-.054.068-.296.224-.54.346-.243.123-.493.276-.554.342-.14.15-.168.15-.248-.006-.18-.352-.12-1.052.113-1.318.172-.196.508-.323.797-.33M9.34 4.84q.07 0 .15.004c.333.016.823.89.616 1.097-.073.073-.29.066-.518-.017a3.4 3.4 0 0 0-.604-.112c-.496-.05-.65-.11-.69-.267-.023-.097.01-.148.194-.317.31-.28.52-.38.852-.386Zm5.26.056c.16 0 .307.04.504.14.317.158.668.506.625.618-.041.107-.35.25-.698.323-.346.073-.43.076-.64.015-.203-.058-.33-.274-.33-.56 0-.192.02-.245.156-.38.135-.135.186-.155.383-.155M3.822 5.05h.022c.11.01.293.168.76.56.407.342.74.638.74.657s-.067.1-.15.18l-.147.144-.748-.62-.746-.618.09-.13c.072-.1.114-.167.18-.173m-.588.72c.014 0 .132.216.264.48l.24.483h.575c.315 0 .574.01.574.022s-.058.114-.127.228l-.125.21H3.67l.318.206c.175.114.326.215.336.225.022.022-.185.393-.218.39a23 23 0 0 1-.82-.48 38 38 0 0 1-.82-.498c-.03-.032.19-.395.24-.394.026 0 .158.072.296.16.138.087.27.16.29.16.023 0-.044-.16-.151-.354l-.196-.353.13-.244c.073-.133.145-.24.159-.24m13.02.047h.04l.147.008c.808.058.953.576.446 1.584q-.344.686-.56.356c-.111-.172-.05-.32.277-.66.33-.345.392-.45.392-.64q0-.325-.392-.36c-.347-.03-.6.118-.782.458-.176.332-.264.414-.513.485-.24.068-.283.156-.153.318.21.262.217.31.055.494-.11.125-.141.194-.117.266.017.053.042.173.054.266.03.22-.078.29-.578.379a3.5 3.5 0 0 0-.867.294c-.27.126-.53.236-.578.244-.17.03-.276.245-.27.555l.01.975.004.687-.138.125c-.162.147-.592.283-.797.252a1.5 1.5 0 0 1-.29-.082c-.12-.05-.158-.05-.218 0-.124.103-.09.32.072.455.373.315.453.412.453.545 0 .142.134.242.324.242.083 0 .088-.02.06-.226-.03-.226-.028-.227.202-.44.127-.116.245-.268.262-.336.05-.2.154-.277.537-.398.627-.198 1.162-.124 1.525.21.242.224.323.47.29.903-.023.339-.151.64-.344.82-.166.154-.196.137-.196-.1 0-.172-.017-.213-.103-.245-.181-.067-.714-.09-.79-.033-.038.028-.09.166-.116.304a1.4 1.4 0 0 1-.211.49c-.173.252-.46.505-.514.452-.017-.018-.03-.24-.03-.492 0-.425-.01-.465-.11-.545-.15-.122-.38-.154-.71-.1-.22.036-.317.032-.433-.016-.18-.073-.278-.045-.313.092-.022.09.072.749.147 1.026q.053.193-.237.015c-.077-.047-.28-.24-.45-.427l-.307-.344-.37-.053c-.667-.094-1.104-.41-1.41-1.02-.092-.183-.21-.36-.26-.392-.14-.09-.307.013-.38.236-.048.146-.108.21-.297.32-.13.076-.3.225-.375.33a1 1 0 0 1-.203.22q-.138.057-.295-.297c-.117-.264-.17-1.29-.076-1.514.037-.09.197-.243.443-.422.262-.19.416-.338.48-.46.05-.1.083-.19.073-.2s-.1.046-.2.125c-.098.08-.328.215-.51.303-.382.182-.504.177-.702-.036l-.125-.134-.05.125a2 2 0 0 0-.077.287c-.052.264-.144.395-.428.613a7 7 0 0 0-.637.6c-.2.215-.397.392-.435.392-.08 0-.108-.19-.155-1.035-.045-.81.067-1.314.38-1.705.23-.287.625-.455.939-.402.234.04.314.128.314.343 0 .437.094.419.324-.064.19-.398.268-.48.553-.572.18-.06.352-.215.297-.27-.02-.02-.18-.033-.36-.033-.294 0-.33-.01-.343-.092-.05-.323-.043-.32-.26-.097a.9.9 0 0 1-.4.26 3.1 3.1 0 0 0-.782.37.5.5 0 0 1-.2.086c-.132 0-.056-.33.134-.593a5 5 0 0 0 .322-.545c.272-.54.5-.743.832-.743.152 0 .173.017.24.184.04.1.1.184.13.184.12 0 .156-.164.11-.512-.112-.87-.021-1.33.296-1.48.285-.136.45-.086 1.03.312.35.24.394.258.646.258.147 0 .45-.045.673-.1.31-.076.554-.1 1.047-.103.612-.004.656.002.918.125.514.24.644.446.57.9-.025.156-.032.302-.017.326.08.127-.054.36-.422.737q-.385.395-.36.464c.022.057.14.073.587.09.6.023.723-.003.816-.178.052-.097.047-.137-.04-.304-.12-.234-.18-1.068-.101-1.363.1-.367.485-.647 1.11-.807a1.6 1.6 0 0 1 .633-.04c.817.083.885.072 1.504-.224.413-.198.529-.25.689-.256m4.401.135c.3 0 .648.46.65.856.002.16-.02.213-.16.336-.092.08-.19.136-.22.127s-.094-.094-.145-.188c-.077-.143-.08-.175-.027-.21.054-.032.055-.064.008-.18-.078-.186-.196-.287-.278-.237-.053.033-.038.096.082.358.237.513.186.683-.277.93-.276.147-.39.12-.651-.15-.226-.235-.346-.485-.346-.724 0-.113.34-.474.422-.447.026.01.09.09.144.182.09.156.092.172.02.252s-.07.096.025.267c.057.1.137.19.18.197.144.028.144-.133-.005-.435-.08-.162-.145-.328-.145-.37 0-.248.405-.564.723-.564M7.142 6.32c-.112-.003-.205.028-.256.102-.105.15-.095.618.02.928.082.216.265.44.36.44.016 0 .158-.116.315-.257.413-.368.458-.625.164-.92-.182-.182-.417-.287-.603-.293m10.422.567c.063.004.142.075.263.213.288.326.276.348-.222.435a.35.35 0 0 1-.205-.025c-.101-.06-.103-.234-.004-.442.059-.124.105-.186.168-.18m.355 1h.014a.7.7 0 0 1 .18.055c.266.102.648.442.777.69.105.203.139.63.056.713-.107.108-.32.096-.605-.033-.497-.226-.61-.398-.61-.922 0-.242.022-.342.087-.422.042-.053.064-.08.1-.082m-.95.037q.11.003.25.133c.142.132.289.526.3.806.007.15-.078.19-.27.125a3 3 0 0 1-.282-.133c-.215-.114-.276-.275-.23-.613.028-.213.114-.322.234-.318m-14.482.703a.74.74 0 0 1 .504.186c.292.255.362.586.197.923-.17.35-.62.52-.964.368-.523-.235-.66-.808-.29-1.217a.76.76 0 0 1 .553-.26m18.947.002c.212.003.427.09.582.27a.9.9 0 0 1 .185.359.784.784 0 0 1-.99.873.776.776 0 0 1-.457-1.1.74.74 0 0 1 .68-.402m-12.79.17c-.15 0-.272.009-.272.02 0 .01.043.265.094.568.19 1.128.38 1.367 1.27 1.586.773.19.864.262.827.666-.017.195-.007.298.04.367.058.082.156.132.156.08a2 2 0 0 0-.05-.162c-.04-.11-.038-.162.005-.213.04-.048.046-.167.023-.41-.028-.307-.02-.353.07-.475.09-.125.094-.153.044-.398a2.3 2.3 0 0 1-.024-.623c.03-.345.028-.365-.084-.477-.097-.097-.16-.117-.373-.117-.193 0-.322-.034-.53-.14A2.95 2.95 0 0 0 8.646 8.8m-6.197.062c-.346.027-.59.45-.437.758.158.333.68.41.906.11.19-.233.138-.634-.14-.778a.54.54 0 0 0-.286-.09Zm18.937.002c-.374.013-.623.5-.41.809.168.265.58.348.81.125.232-.196.254-.596.012-.79a.6.6 0 0 0-.412-.144m-6.011.188q.009 0 .012.002c.044.042-.293 1.034-.418 1.23q-.363.57-1.227.389a1.5 1.5 0 0 0-.4-.02l-.194.026.028-.31c.028-.318.095-.502.219-.604.063-.053.072-.037.072.127 0 .273.064.404.27.54.31.206.697.12.947-.208.116-.154.122-.56.01-.78-.045-.086-.066-.173-.046-.193.04-.04.632-.2.727-.2m-6.605.023c.016 0 .108.023.203.05l.172.054-.094.156c-.075.126-.087.204-.065.395.065.547.56.819 1.07.588.18-.083.43-.346.43-.456 0-.03.018-.052.04-.052.094 0 .178.142.208.35.018.122.043.265.055.318.02.09-.002.099-.36.127l-.61.05a1.4 1.4 0 0 1-.383-.017c-.323-.082-.52-.307-.625-.713-.07-.27-.098-.85-.04-.85m8.174.05c.122-.002.278.099.407.284.126.183.129.19.129.918 0 .503-.018.74-.053.752-.03.01-.164-.086-.303-.213-.368-.336-.468-.595-.432-1.111.016-.22.053-.45.082-.516a.18.18 0 0 1 .17-.115m-7.414.183q.046 0 .114.008c.513.057.74.533.365.765-.228.14-.413.123-.602-.055a.6.6 0 0 1-.187-.318c-.025-.144-.013-.188.09-.293.08-.08.127-.107.22-.107m4.72.095h.02c.05.002.089.025.15.07.092.07.128.14.139.274.025.342-.13.543-.457.596-.125.02-.175.002-.262-.092a.6.6 0 0 1-.133-.322c-.02-.176-.006-.223.092-.32a.86.86 0 0 1 .45-.206m-4.571.137c-.122.005-.203.08-.203.197 0 .23.328.302.423.092.07-.152.004-.267-.166-.287zm8.35.004q.078 0 .222.053c.45.16.93.587 1.125 1.004.245.52.246 1.447.004 1.69-.15.15-.277.104-.691-.247a21 21 0 0 0-.565-.463c-.192-.147-.342-.437-.344-.658 0-.08.03-.284.07-.453a2.6 2.6 0 0 0 .06-.574c-.013-.251.006-.35.12-.352m-3.922.127q-.23-.002-.228.24c0 .092.03.14.103.17.116.046.27.018.32-.06.052-.08.042-.234-.02-.295-.03-.03-.11-.055-.175-.055m2.659 1.285c.125 0 .406.335.447.535.053.26.038.738-.03 1.024-.07.3-.227.687-.28.687-.02 0-.117-.094-.217-.21-.277-.324-.316-.494-.198-.837.053-.153.107-.4.12-.545.06-.614.07-.654.158-.654M1.08 11.04l.287.025c.353.03 1.66.116 1.783.116.082 0 .09.027.08.283l-.015.283-.572.225a9 9 0 0 0-.596.246c-.013.012.253.008.588-.01l.607-.031-.013.199-.014.2-.873.079c-.48.043-.96.089-1.067.1l-.195.02.002-.35v-.35l.693-.228c.8-.265.793-.288-.109-.295l-.586-.004v-.254Zm21.001.307.076.002c.202.004.39.028.47.072.222.12.264.235.265.723 0 .537-.085.724-.37.81-.234.07-.648.068-1.052-.006-.522-.095-.65-.168-.713-.4-.06-.217-.033-.713.047-.861.06-.115.28-.231.435-.231.108 0 .117.016.117.2 0 .163-.018.207-.09.226-.135.035-.2.24-.138.428.04.124.08.158.22.187.243.052.733.032.811-.033.09-.076.093-.52.002-.594-.13-.108-.23-.037-.246.174l-.016.197-.214-.015-.215-.014v-.772l.138-.04a2 2 0 0 1 .473-.051zm-15.895.43c.036 0 .09.057.117.126.1.253.237.915.265 1.297.034.46 0 .552-.357.946-.127.14-.292.393-.367.56-.206.458-.317.55-.463.385-.19-.214-.492-1.225-.492-1.64 0-.242.18-.704.36-.923.16-.196.853-.752.937-.752m11.68.095q.053 0 .126.043c.177.1.735.852.85 1.147.143.367.142.903-.004 1.228-.108.242-.281.422-.402.422-.036 0-.261-.19-.502-.424-.605-.585-.7-.786-.54-1.164a6 6 0 0 0 .2-.68c.103-.42.163-.57.27-.572m-14.67.883q.025 0 .028.002c.026.026.248 1.097.23 1.11a3 3 0 0 1-.205.054c-.22.054-.185.103-.3-.42-.062-.28-.102-.33-.21-.262-.05.033-.05.099.012.395.04.195.074.362.074.369 0 .025-.464.124-.484.103a3 3 0 0 1-.1-.394c-.075-.36-.083-.375-.203-.375-.069 0-.137.019-.15.04-.014.023.015.223.064.446.05.224.075.42.057.436-.044.039-.47.18-.545.18-.033 0-.06-.013-.06-.028s-.076-.348-.165-.74a9 9 0 0 1-.148-.725c.032-.026 1.86-.19 2.105-.191m4.896.168c.096 0 .102.01.265.482.08.226.17.382.31.528.247.258.35.41.35.52 0 .116-.59.993-.67.993-.034 0-.13-.091-.212-.205a11 11 0 0 1-.38-.584c-.217-.358-.23-.392-.23-.7 0-.52.28-1.034.567-1.034m12.653.185c.414.006 2.005.093 2.03.118.018.018-.078.712-.102.734a18 18 0 0 1-.76.094c-.412.046-.723.09-.69.103.035.012.352.086.706.164.62.138.64.147.63.256-.03.31-.064.41-.14.406-.043-.002-.51-.143-1.037-.31-.528-.168-.96-.314-.96-.326l.032-.26.03-.236.56-.104c.31-.057.54-.112.514-.121a8 8 0 0 0-.504-.074l-.455-.057.015-.182a.7.7 0 0 1 .033-.2.5.5 0 0 1 .098-.005m-4.49.047c.083-.006.192.057.272.176.088.13.104.216.104.533 0 .454-.058.633-.397 1.227-.198.348-.276.447-.353.447-.054 0-.12-.027-.145-.06a22 22 0 0 1-.29-.424c-.214-.32-.24-.38-.214-.522.048-.253.145-.402.528-.808.197-.21.373-.425.39-.48s.057-.086.106-.09m-12.81.779c.04 0 .115.335.08.367a3 3 0 0 1-.405.2c-.202.09-.353.165-.336.165s.204-.04.414-.09.396-.092.414-.092c.037 0 .145.198.192.35.026.084-.025.124-.405.32-.238.124-.427.23-.42.237s.216-.05.46-.13c.247-.078.455-.134.464-.124s.05.093.088.185l.07.166-.746.235c-.41.129-.867.275-1.017.324a3 3 0 0 1-.305.09c-.017 0-.075-.107-.129-.237a1.5 1.5 0 0 1-.097-.29c0-.031.228-.164.505-.296.278-.131.504-.245.504-.253s-.22.044-.492.117a6 6 0 0 1-.568.133c-.048 0-.108-.094-.172-.26-.055-.143-.092-.265-.084-.274a90 90 0 0 1 1.984-.843m3.42.23c.176 0 .35.188.53.576.086.19.26.502.385.694.144.22.227.398.227.484 0 .075-.102.459-.227.854-.124.394-.24.796-.256.89-.015.099-.053.172-.088.172-.033 0-.214-.182-.402-.402-.434-.51-.748-.934-.902-1.227-.106-.2-.12-.284-.12-.643 0-.35.02-.451.126-.68.204-.44.484-.717.726-.718m10.427.086h.002c.098.005.208.082.35.229.428.445.647 1.477.337 1.595-.117.045-.285-.06-.41-.258-.083-.131-.147-.185-.224-.185-.163 0-.176.107-.053.434.174.462.19.672.072.916-.12.248-.377.486-.527.486-.095 0-.123-.044-.211-.31a5 5 0 0 0-.28-.635c-.248-.457-.24-.53.14-1.14a14 14 0 0 0 .456-.788c.12-.238.222-.35.348-.344m3.093.28c.043.002 2.034.59 2.047.607.02.024-.218.632-.246.63-.016 0-.463-.178-.993-.396s-.968-.4-.974-.404c-.023-.016.137-.436.166-.436m-11.095.229c.043 0 .138.088.213.195.295.422.43.892.43 1.514 0 .432-.003.447-.102.447-.067 0-.21-.111-.408-.318-.393-.41-.566-.758-.53-1.07.033-.273.288-.77.397-.77m1.873.048c.037 0 .375.688.375.763s-.222.244-.32.244a.2.2 0 0 1-.14-.07c-.098-.12-.11-.504-.022-.732.043-.113.09-.205.107-.205m2.023.023.065.16c.102.25.13.557.064.688-.07.137-.196.16-.367.066s-.158-.207.06-.594zm1.784.21q.1 0 .164.099c.089.143.18.785.146 1.017-.04.259-.23.477-.617.707-.36.214-.328.203-.414.149-.05-.032-.056-.105-.03-.332.02-.16.04-.426.048-.59.016-.368.15-.671.396-.893q.178-.16.307-.158zm-2.922.638c.072 0 .31.073.53.164.408.169.562.182 1.015.086.323-.07.338.209.027.482-.2.176-.323.177-.828.002-.553-.192-.79-.185-1.477.045-.3.1-.562.184-.58.184s-.1-.07-.185-.155c-.242-.242-.273-.535-.057-.533.058 0 .195.042.305.092.32.145.456.12.81-.14.2-.148.355-.227.44-.227m9.54.01.291.115.29.115-.276.59c-.153.325-.29.59-.305.59a24 24 0 0 1-.9-.48 44 44 0 0 0-.91-.495c-.044-.016.11-.353.163-.353.02 0 .325.143.674.318l.635.318.17-.36zm-1.94.542c.056 0 .377.14.377.17a1.5 1.5 0 0 1-.1.2c-.056.097-.092.186-.08.195.01.009.33.198.708.422l.7.414c.02.012-.238.43-.265.428a18 18 0 0 1-.71-.457l-.69-.455-.13.162-.13.16-.17-.123-.18-.133c-.01-.008.604-.92.66-.98q.004-.004.009-.003m-16.417.135.118.172a.8.8 0 0 1 .115.217c0 .026-.072.096-.16.156s-.16.135-.16.168c0 .075.222.342.285.342.04 0 .67-.42 1.058-.705l.127-.094.112.135a.7.7 0 0 1 .113.172c.004.089-.96.868-1.254 1.01-.262.13-.357.144-.512.08-.145-.057-.352-.294-.498-.563-.107-.198-.126-.277-.1-.41.036-.2.242-.416.542-.568zm12.547.047c.112 0 .292.263.344.504a1.65 1.65 0 0 1-.021.865c-.113.38-.3.544-1.1.963-.393.206-.72.373-.73.373-.007 0-.025-.19-.042-.424a3 3 0 0 0-.107-.638c-.11-.31-.04-.446.322-.637.342-.18.55-.338.96-.72.17-.158.34-.286.374-.286m-7.302.018q.035 0 .086.01c.24.047.385.135.718.445.17.158.395.354.5.435.31.24.343.456.2 1.338-.074.47-.107.572-.186.586-.037.007-.273-.104-.525-.246-.698-.393-.947-.573-1.1-.791-.124-.177-.142-.241-.156-.594-.022-.525.05-.837.244-1.04.1-.106.144-.143.22-.143m-3.208.986.152.148c.084.082.154.167.154.188s-.12.22-.267.44c-.416.62-.843 1.3-.827 1.316.01.008.325-.282.703-.645.38-.362.7-.661.713-.662.052-.004.558.45.666.598.2.27.137.473-.263.85-.136.13-.293.25-.348.269-.13.042-.368-.075-.562-.275-.085-.088-.177-.158-.204-.16-.026 0-.15.115-.28.257l-.231.26-.328-.38-.328-.376.136-.197a1 1 0 0 0 .133-.236c0-.021-.07-.118-.154-.217l-.155-.18-.222.098-.223.097-.172-.193a1.3 1.3 0 0 1-.172-.22c0-.016.468-.196 1.04-.403zm13.699.004c.112 0 .258.068.38.176.078.067.076.077-.04.199-.093.097-.152.12-.235.1-.082-.021-.144.005-.244.1-.15.145-.17.227-.062.269.04.015.08.027.088.027s.113-.082.236-.184c.288-.238.479-.292.7-.2.447.186.73.527.672.816-.036.18-.24.453-.47.627-.19.144-.424.174-.592.076a3 3 0 0 1-.273-.205l-.18-.15.17-.17.219.207.168-.186c.196-.218.208-.306.053-.377-.104-.047-.135-.032-.34.16-.334.312-.542.337-.828.096-.175-.147-.278-.337-.278-.512 0-.256.434-.7.686-.7m-8.297.469a.25.25 0 0 1 .13.033c.212.114.968 1.278.968 1.492 0 .162-.455.218-.79.098-.434-.155-.584-.396-.585-.936-.002-.424.105-.677.277-.687m-5.72.09c-.027.004-.12.038-.225.083-.214.092-.217.096-.137.184.08.09.083.09.23-.08a1 1 0 0 0 .14-.186zm8.519.13q.02 0 .039.002c.166.012.254.172.252.473-.005.5-.267.846-.73.967-.344.09-.38.088-.575-.01-.11-.055-.165-.116-.174-.195-.024-.21.466-.843.848-1.096q.2-.133.34-.14m4.562.158c.04.002.093.046.176.142l.152.178-.28.223c-.374.298-.362.279-.263.369.084.076.1.07.387-.174l.299-.254.164.203.166.2-.3.238c-.163.13-.298.263-.298.294 0 .032.036.092.08.13.075.068.108.053.42-.198.186-.15.353-.271.373-.271.042 0 .415.41.41.453-.002.024-.712.606-1.03.842l-.11.082-.201-.29c-.63-.89-.996-1.43-.996-1.46 0-.026.498-.453.816-.7a.05.05 0 0 1 .035-.01zm-12.176.529c-.02 0-.09.058-.16.13l-.127.132.196.164.197.162.127-.09c.07-.05.13-.12.13-.152 0-.063-.298-.346-.363-.346m1.23.394c.09-.005.415.18.415.244 0 .018-.12.453-.27.97-.15.514-.267.942-.26.95.007.006.216-.337.462-.766.594-1.036.505-.945.796-.823.232.096.242.106.22.241-.04.223-.09.99-.065.99.012 0 .11-.212.22-.47.108-.26.203-.476.208-.483a.7.7 0 0 1 .2.062c.145.058.185.095.163.15-.017.042-.185.5-.375 1.016-.19.518-.36.953-.375.97-.016.015-.163-.032-.326-.106a6 6 0 0 1-.303-.143c-.004-.005.037-.33.094-.72a10 10 0 0 0 .09-.73c-.008-.008-.153.262-.32.6-.17.336-.313.62-.32.628-.017.016-.78-.385-.878-.46-.04-.033-.033-.104.03-.29l.085-.248-.224-.145-.225-.145-.192.164c-.208.18-.227.177-.49-.048l-.15-.13.857-.617c.472-.341.885-.637.918-.657l.016-.002zm9.802.018c.226 0 .568.38.568.628q0 .15.066.15c.082 0 .287.205.553.55l.207.27-.226.137-.225.14-.232-.319c-.128-.175-.262-.32-.297-.32a.9.9 0 0 0-.252.107l-.186.107.203.358c.113.196.194.375.18.398-.026.042-.36.225-.41.225-.015 0-.234-.43-.486-.952l-.457-.95.103-.076c.184-.14.8-.453.89-.453m-.014.508a.4.4 0 0 0-.19.064c-.253.137-.253.14-.167.271a.4.4 0 0 0 .097.12c.01 0 .1-.053.2-.116.189-.12.204-.144.156-.27q-.027-.07-.096-.07m-1.03.005.342 1.024.342 1.024-.252.095a2 2 0 0 1-.304.098c-.03 0-.168-.227-.305-.504s-.252-.498-.26-.49c-.007.007.059.245.147.53.087.287.16.534.16.55 0 .027-.497.234-.563.234-.017 0-.061-.057-.097-.127-.1-.192-.856-1.8-.856-1.82 0-.023.276-.117.342-.117.029 0 .145.185.256.412.11.226.206.405.213.398a3 3 0 0 0-.1-.422 5 5 0 0 1-.113-.457c0-.043.452-.231.478-.2.007.01.11.2.23.42.12.223.226.397.235.388.01-.01-.053-.214-.138-.453l-.157-.435.2-.074zm-8.95.118c-.028 0-.094.05-.213.15-.107.092-.108.097-.024.16.124.094.163.068.227-.15.03-.106.04-.158.01-.16m2.802.475c.123-.005.908.187 1 .247a.37.37 0 0 1 .137.188c.052.207-.01.736-.105.898-.124.212-.27.252-.64.178-.35-.07-.36-.063-.407.27-.066.457-.046.438-.38.357-.19-.046-.197-.052-.167-.19.04-.187.53-1.925.547-1.945q.003-.002.015-.004m3.487.226c.207 0 .263.02.373.13.17.17.32.66.353 1.157.032.47-.04.674-.277.787-.216.103-.617.137-.805.07a.6.6 0 0 1-.24-.173c-.122-.165-.222-.69-.223-1.178 0-.385.01-.433.117-.56.136-.162.354-.233.702-.233m-1.674.045c.515 0 .574.01.652.096.124.136.153.683.045.847-.073.112-.074.125 0 .207.045.05.087.18.096.305.008.12.02.33.03.463l.019.242-.235-.014-.234-.013-.033-.344a3 3 0 0 0-.057-.402c-.013-.036-.11-.057-.252-.057h-.23v.826h-.252c-.21 0-.253-.013-.252-.08 0-.044.03-.504.068-1.02.037-.519.068-.968.068-.999 0-.043.145-.057.567-.057m-1.526.264q-.02 0-.025.006a1 1 0 0 0-.05.197l-.03.168.2.045.232.05c.018.001.054-.037.08-.085a.5.5 0 0 0 .047-.2c0-.097-.03-.118-.23-.158a1.4 1.4 0 0 0-.185-.023zm3.125.148a.54.54 0 0 0-.263.065c-.08.06-.083.093-.037.51.062.576.142.655.505.503l.164-.068-.025-.336a2 2 0 0 0-.096-.504c-.064-.153-.087-.17-.248-.17m-1.595.047c-.152 0-.16.005-.16.184 0 .178.007.183.16.183a.8.8 0 0 0 .228-.03c.042-.015.072-.08.072-.154 0-.142-.065-.183-.3-.183m2.888.057h.008c.026.028.157.37.147.38a3 3 0 0 1-.278.08l-.263.07-.026-.122-.04-.2c-.013-.062.038-.097.216-.15a2 2 0 0 1 .236-.058" }) + ] + } + ); +}); + +export { SiNewjapanprowrestling as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.cjs new file mode 100644 index 000000000..86df7a678 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD201F"; +const SiNewpipe = React__namespace.forwardRef(function SiNewpipe2({ title = "NewPipe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.988 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.012 0zm-4.38 4.608s1.512.888 3.672 2.16C13.848 8.28 17.304 10.32 20.16 12a5976.548 5976.548 0 0 0-8.736 5.16v-2.675c1.07-.63 2.467-1.455 4.224-2.485-1.296-.768-2.856-1.703-4.032-2.375l-1.68-.985v9.399l-2.328 1.377z" }) + ] + } + ); +}); + +exports.default = SiNewpipe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.d.ts new file mode 100644 index 000000000..13c9630a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD201F"; +declare const SiNewpipe: IconType; +export { SiNewpipe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.mjs new file mode 100644 index 000000000..c5d2a7ecc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewpipe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD201F"; +const SiNewpipe = React.forwardRef(function SiNewpipe2({ title = "NewPipe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.988 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.012 0zm-4.38 4.608s1.512.888 3.672 2.16C13.848 8.28 17.304 10.32 20.16 12a5976.548 5976.548 0 0 0-8.736 5.16v-2.675c1.07-.63 2.467-1.455 4.224-2.485-1.296-.768-2.856-1.703-4.032-2.375l-1.68-.985v9.399l-2.328 1.377z" }) + ] + } + ); +}); + +export { SiNewpipe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.cjs new file mode 100644 index 000000000..03a16b655 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1CE783"; +const SiNewrelic = React__namespace.forwardRef(function SiNewrelic2({ title = "New Relic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.0015 14.3091v7.384L12.0008 24V12.0008L1.6078 5.9996v4.6167ZM12.0008 0 2.8232 5.2976 6.8209 7.606l5.1799-2.9893 6.3936 3.6913v7.384l-5.1783 2.9908v4.6167l9.176-5.2991V5.9996Z" }) + ] + } + ); +}); + +exports.default = SiNewrelic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.d.ts new file mode 100644 index 000000000..2e015d5ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1CE783"; +declare const SiNewrelic: IconType; +export { SiNewrelic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.mjs new file mode 100644 index 000000000..6180fca39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewrelic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1CE783"; +const SiNewrelic = React.forwardRef(function SiNewrelic2({ title = "New Relic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.0015 14.3091v7.384L12.0008 24V12.0008L1.6078 5.9996v4.6167ZM12.0008 0 2.8232 5.2976 6.8209 7.606l5.1799-2.9893 6.3936 3.6913v7.384l-5.1783 2.9908v4.6167l9.176-5.2991V5.9996Z" }) + ] + } + ); +}); + +export { SiNewrelic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.cjs new file mode 100644 index 000000000..7161e6bf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNewyorktimes = React__namespace.forwardRef(function SiNewyorktimes2({ title = "New York Times", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.272,14.815h-0.098c-0.747,2.049-2.335,3.681-4.363,4.483v-4.483l2.444-2.182l-2.444-2.182V7.397 c2.138,0.006,3.885-1.703,3.927-3.84c0-2.629-2.509-3.556-3.927-3.556c-0.367-0.007-0.734,0.033-1.091,0.12v0.131h0.556 c0.801-0.141,1.565,0.394,1.706,1.195C17.99,1.491,17.996,1.537,18,1.583c-0.033,0.789-0.7,1.401-1.488,1.367 c-0.02-0.001-0.041-0.002-0.061-0.004c-2.444,0-5.323-1.985-8.454-1.985C5.547,0.83,3.448,2.692,3.284,5.139 C3.208,6.671,4.258,8.031,5.76,8.346v-0.12C5.301,7.931,5.041,7.407,5.084,6.862c0.074-1.015,0.957-1.779,1.973-1.705 C7.068,5.159,7.08,5.16,7.091,5.161c2.629,0,6.872,2.182,9.501,2.182h0.098v3.142l-2.444,2.182l2.444,2.182v4.549 c-0.978,0.322-2.003,0.481-3.033,0.469c-1.673,0.084-3.318-0.456-4.614-1.516l4.429-1.985V7.451l-6.196,2.727 c0.592-1.75,1.895-3.168,3.589-3.905V6.175c-4.516,1.004-8.138,4.243-8.138,8.705c0,5.193,4.025,9.12,9.818,9.12 c6.011,0,8.727-4.363,8.727-8.814V14.815z M8.858,18.186c-1.363-1.362-2.091-3.235-2.007-5.16c-0.016-0.88,0.109-1.756,0.371-2.596 l2.051-0.938v8.476L8.858,18.186z" }) + ] + } + ); +}); + +exports.default = SiNewyorktimes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.d.ts new file mode 100644 index 000000000..d11d62de8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNewyorktimes: IconType; +export { SiNewyorktimes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.mjs new file mode 100644 index 000000000..d1b770fd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNewyorktimes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNewyorktimes = React.forwardRef(function SiNewyorktimes2({ title = "New York Times", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.272,14.815h-0.098c-0.747,2.049-2.335,3.681-4.363,4.483v-4.483l2.444-2.182l-2.444-2.182V7.397 c2.138,0.006,3.885-1.703,3.927-3.84c0-2.629-2.509-3.556-3.927-3.556c-0.367-0.007-0.734,0.033-1.091,0.12v0.131h0.556 c0.801-0.141,1.565,0.394,1.706,1.195C17.99,1.491,17.996,1.537,18,1.583c-0.033,0.789-0.7,1.401-1.488,1.367 c-0.02-0.001-0.041-0.002-0.061-0.004c-2.444,0-5.323-1.985-8.454-1.985C5.547,0.83,3.448,2.692,3.284,5.139 C3.208,6.671,4.258,8.031,5.76,8.346v-0.12C5.301,7.931,5.041,7.407,5.084,6.862c0.074-1.015,0.957-1.779,1.973-1.705 C7.068,5.159,7.08,5.16,7.091,5.161c2.629,0,6.872,2.182,9.501,2.182h0.098v3.142l-2.444,2.182l2.444,2.182v4.549 c-0.978,0.322-2.003,0.481-3.033,0.469c-1.673,0.084-3.318-0.456-4.614-1.516l4.429-1.985V7.451l-6.196,2.727 c0.592-1.75,1.895-3.168,3.589-3.905V6.175c-4.516,1.004-8.138,4.243-8.138,8.705c0,5.193,4.025,9.12,9.818,9.12 c6.011,0,8.727-4.363,8.727-8.814V14.815z M8.858,18.186c-1.363-1.362-2.091-3.235-2.007-5.16c-0.016-0.88,0.109-1.756,0.371-2.596 l2.051-0.938v8.476L8.858,18.186z" }) + ] + } + ); +}); + +export { SiNewyorktimes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.cjs new file mode 100644 index 000000000..3fd345e0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNexon = React__namespace.forwardRef(function SiNexon2({ title = "NEXON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.714 15.358V0L0 5.697v15.358L13.29 24 24 18.303zm-9.495-1.219 7.291 1.568-7.291 3.832zm11.895 8.578L2.35 20.327l7.454-3.926 10.846 2.406z" }) + ] + } + ); +}); + +exports.default = SiNexon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.d.ts new file mode 100644 index 000000000..2462e251e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNexon: IconType; +export { SiNexon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.mjs new file mode 100644 index 000000000..624e91495 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNexon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNexon = React.forwardRef(function SiNexon2({ title = "NEXON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.714 15.358V0L0 5.697v15.358L13.29 24 24 18.303zm-9.495-1.219 7.291 1.568-7.291 3.832zm11.895 8.578L2.35 20.327l7.454-3.926 10.846 2.406z" }) + ] + } + ); +}); + +export { SiNexon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.cjs new file mode 100644 index 000000000..5829d545e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0046D7"; +const SiNextbike = React__namespace.forwardRef(function SiNextbike2({ title = "nextbike", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.329 11.097C10.465 7.857 7.725 5.5 4.489 5.5H.754C.197 5.5 0 5.662 0 6.326c0 1.546.43 2.981 1.15 4.182A5.648 5.648 0 0 0 0 13.92c0 3.16 2.603 5.728 5.818 5.728 2.86 0 5.236-2.031 5.725-4.706.24-1.325.13-2.564-.214-3.845zm-9.015 2.826c0-.575.144-1.112.395-1.58 1.167.988 2.637 1.58 4.238 1.58h2.351c0 1.904-1.56 3.446-3.49 3.446s-3.494-1.546-3.494-3.446zM14.09 7.871a7.56 7.56 0 0 1 3.859-1.222.239.239 0 0 0 .234-.234v-1.83c0-.128-.107-.252-.252-.235a9.858 9.858 0 0 0-5.136 1.597c-.196.128-.378.269-.574.396-.107.09-.128.234-.038.34l1.167 1.402c.09.107.234.107.34.034-.058.094.182-.138.4-.248zm4.093.324c-3.215 0-5.818 2.568-5.818 5.728s2.603 5.728 5.818 5.728S24 17.083 24 13.923s-2.602-5.728-5.817-5.728zm0 9.174c-1.921 0-3.484-1.546-3.484-3.446s1.56-3.446 3.484-3.446 3.483 1.546 3.483 3.446-1.56 3.446-3.483 3.446z" }) + ] + } + ); +}); + +exports.default = SiNextbike; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.d.ts new file mode 100644 index 000000000..a4e17b4f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0046D7"; +declare const SiNextbike: IconType; +export { SiNextbike as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.mjs new file mode 100644 index 000000000..fe3c32927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbike.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0046D7"; +const SiNextbike = React.forwardRef(function SiNextbike2({ title = "nextbike", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.329 11.097C10.465 7.857 7.725 5.5 4.489 5.5H.754C.197 5.5 0 5.662 0 6.326c0 1.546.43 2.981 1.15 4.182A5.648 5.648 0 0 0 0 13.92c0 3.16 2.603 5.728 5.818 5.728 2.86 0 5.236-2.031 5.725-4.706.24-1.325.13-2.564-.214-3.845zm-9.015 2.826c0-.575.144-1.112.395-1.58 1.167.988 2.637 1.58 4.238 1.58h2.351c0 1.904-1.56 3.446-3.49 3.446s-3.494-1.546-3.494-3.446zM14.09 7.871a7.56 7.56 0 0 1 3.859-1.222.239.239 0 0 0 .234-.234v-1.83c0-.128-.107-.252-.252-.235a9.858 9.858 0 0 0-5.136 1.597c-.196.128-.378.269-.574.396-.107.09-.128.234-.038.34l1.167 1.402c.09.107.234.107.34.034-.058.094.182-.138.4-.248zm4.093.324c-3.215 0-5.818 2.568-5.818 5.728s2.603 5.728 5.818 5.728S24 17.083 24 13.923s-2.602-5.728-5.817-5.728zm0 9.174c-1.921 0-3.484-1.546-3.484-3.446s1.56-3.446 3.484-3.446 3.483 1.546 3.483 3.446-1.56 3.446-3.483 3.446z" }) + ] + } + ); +}); + +export { SiNextbike as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.cjs new file mode 100644 index 000000000..f36e1fb97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8D5A9E"; +const SiNextbilliondotai = React__namespace.forwardRef(function SiNextbilliondotai2({ title = "NextBillion.ai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.399 13.3694a6.3067 6.3067 0 0 0-.5655-.567 6.3754 6.3754 0 0 0-4.2337-1.5994h-4.7989V6.4007a6.3783 6.3783 0 0 0-1.5993-4.2338 6.1066 6.1066 0 0 0-.567-.5641A6.3973 6.3973 0 0 0 .002 6.4016v4.7989a1.5994 1.5994 0 0 0 1.5993 1.5993h9.5959v4.7989a6.3696 6.3696 0 0 0 .855 3.1985l.0842.1453a6.3445 6.3445 0 0 0 .6615.8942 6.6637 6.6637 0 0 0 .5641.5641 6.4689 6.4689 0 0 0 .8913.6586l.1453.0858a6.4074 6.4074 0 0 0 7.4324-.7444 6.6963 6.6963 0 0 0 .5655-.5655 6.3973 6.3973 0 0 0 0-8.4677zm-11.198-2.1708H1.6052v-4.799a4.7989 4.7989 0 0 1 9.5958 0zm6.3965 11.1951a4.7703 4.7703 0 0 1-3.1986-1.2243 4.1977 4.1977 0 0 1-.378-.3766 4.782 4.782 0 0 1-1.2211-3.1985v-4.7964h4.7988a4.7989 4.7989 0 0 1 0 9.5958z" }) + ] + } + ); +}); + +exports.default = SiNextbilliondotai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.d.ts new file mode 100644 index 000000000..43d2d90c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8D5A9E"; +declare const SiNextbilliondotai: IconType; +export { SiNextbilliondotai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.mjs new file mode 100644 index 000000000..ba7b5d4cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextbilliondotai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8D5A9E"; +const SiNextbilliondotai = React.forwardRef(function SiNextbilliondotai2({ title = "NextBillion.ai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.399 13.3694a6.3067 6.3067 0 0 0-.5655-.567 6.3754 6.3754 0 0 0-4.2337-1.5994h-4.7989V6.4007a6.3783 6.3783 0 0 0-1.5993-4.2338 6.1066 6.1066 0 0 0-.567-.5641A6.3973 6.3973 0 0 0 .002 6.4016v4.7989a1.5994 1.5994 0 0 0 1.5993 1.5993h9.5959v4.7989a6.3696 6.3696 0 0 0 .855 3.1985l.0842.1453a6.3445 6.3445 0 0 0 .6615.8942 6.6637 6.6637 0 0 0 .5641.5641 6.4689 6.4689 0 0 0 .8913.6586l.1453.0858a6.4074 6.4074 0 0 0 7.4324-.7444 6.6963 6.6963 0 0 0 .5655-.5655 6.3973 6.3973 0 0 0 0-8.4677zm-11.198-2.1708H1.6052v-4.799a4.7989 4.7989 0 0 1 9.5958 0zm6.3965 11.1951a4.7703 4.7703 0 0 1-3.1986-1.2243 4.1977 4.1977 0 0 1-.378-.3766 4.782 4.782 0 0 1-1.2211-3.1985v-4.7964h4.7988a4.7989 4.7989 0 0 1 0 9.5958z" }) + ] + } + ); +}); + +export { SiNextbilliondotai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.cjs new file mode 100644 index 000000000..ef1a35fe3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0082C9"; +const SiNextcloud = React__namespace.forwardRef(function SiNextcloud2({ title = "Nextcloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.018 6.537c-2.5 0-4.6 1.712-5.241 4.015-.56-1.232-1.793-2.105-3.225-2.105A3.569 3.569 0 0 0 0 12a3.569 3.569 0 0 0 3.552 3.553c1.432 0 2.664-.874 3.224-2.106.641 2.304 2.742 4.016 5.242 4.016 2.487 0 4.576-1.693 5.231-3.977.569 1.21 1.783 2.067 3.198 2.067A3.568 3.568 0 0 0 24 12a3.569 3.569 0 0 0-3.553-3.553c-1.416 0-2.63.858-3.199 2.067-.654-2.284-2.743-3.978-5.23-3.977zm0 2.085c1.878 0 3.378 1.5 3.378 3.378 0 1.878-1.5 3.378-3.378 3.378A3.362 3.362 0 0 1 8.641 12c0-1.878 1.5-3.378 3.377-3.378zm-8.466 1.91c.822 0 1.467.645 1.467 1.468s-.644 1.467-1.467 1.468A1.452 1.452 0 0 1 2.085 12c0-.823.644-1.467 1.467-1.467zm16.895 0c.823 0 1.468.645 1.468 1.468s-.645 1.468-1.468 1.468A1.452 1.452 0 0 1 18.98 12c0-.823.644-1.467 1.467-1.467z" }) + ] + } + ); +}); + +exports.default = SiNextcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.d.ts new file mode 100644 index 000000000..ad2d7ce27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0082C9"; +declare const SiNextcloud: IconType; +export { SiNextcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.mjs new file mode 100644 index 000000000..ccfa822ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0082C9"; +const SiNextcloud = React.forwardRef(function SiNextcloud2({ title = "Nextcloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.018 6.537c-2.5 0-4.6 1.712-5.241 4.015-.56-1.232-1.793-2.105-3.225-2.105A3.569 3.569 0 0 0 0 12a3.569 3.569 0 0 0 3.552 3.553c1.432 0 2.664-.874 3.224-2.106.641 2.304 2.742 4.016 5.242 4.016 2.487 0 4.576-1.693 5.231-3.977.569 1.21 1.783 2.067 3.198 2.067A3.568 3.568 0 0 0 24 12a3.569 3.569 0 0 0-3.553-3.553c-1.416 0-2.63.858-3.199 2.067-.654-2.284-2.743-3.978-5.23-3.977zm0 2.085c1.878 0 3.378 1.5 3.378 3.378 0 1.878-1.5 3.378-3.378 3.378A3.362 3.362 0 0 1 8.641 12c0-1.878 1.5-3.378 3.377-3.378zm-8.466 1.91c.822 0 1.467.645 1.467 1.468s-.644 1.467-1.467 1.468A1.452 1.452 0 0 1 2.085 12c0-.823.644-1.467 1.467-1.467zm16.895 0c.823 0 1.468.645 1.468 1.468s-.645 1.468-1.468 1.468A1.452 1.452 0 0 1 18.98 12c0-.823.644-1.467 1.467-1.467z" }) + ] + } + ); +}); + +export { SiNextcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.cjs new file mode 100644 index 000000000..fb409af95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007BFF"; +const SiNextdns = React__namespace.forwardRef(function SiNextdns2({ title = "NextDNS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.195 6.512-.001-.019c-.01-.23-.017-.474-.022-.746a2.543 2.543 0 0 0-2.395-2.492c-2.759-.154-4.894-1.053-6.717-2.831l-.016-.015a1.536 1.536 0 0 0-2.087 0l-.016.015C9.117 2.202 6.982 3.101 4.223 3.256a2.543 2.543 0 0 0-2.395 2.492c-.004.269-.011.513-.022.745l-.001.044c-.053 2.813-.12 6.315 1.052 9.494.644 1.748 1.619 3.267 2.899 4.516 1.458 1.422 3.367 2.552 5.674 3.356.075.026.153.048.233.063a1.668 1.668 0 0 0 .675 0c.079-.015.158-.037.233-.063 2.305-.806 4.212-1.936 5.668-3.358 1.28-1.25 2.255-2.769 2.9-4.518 1.176-3.188 1.109-6.696 1.056-9.515Z" }) + ] + } + ); +}); + +exports.default = SiNextdns; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.d.ts new file mode 100644 index 000000000..7dec471d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007BFF"; +declare const SiNextdns: IconType; +export { SiNextdns as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.mjs new file mode 100644 index 000000000..dea13b50a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdns.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007BFF"; +const SiNextdns = React.forwardRef(function SiNextdns2({ title = "NextDNS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m22.195 6.512-.001-.019c-.01-.23-.017-.474-.022-.746a2.543 2.543 0 0 0-2.395-2.492c-2.759-.154-4.894-1.053-6.717-2.831l-.016-.015a1.536 1.536 0 0 0-2.087 0l-.016.015C9.117 2.202 6.982 3.101 4.223 3.256a2.543 2.543 0 0 0-2.395 2.492c-.004.269-.011.513-.022.745l-.001.044c-.053 2.813-.12 6.315 1.052 9.494.644 1.748 1.619 3.267 2.899 4.516 1.458 1.422 3.367 2.552 5.674 3.356.075.026.153.048.233.063a1.668 1.668 0 0 0 .675 0c.079-.015.158-.037.233-.063 2.305-.806 4.212-1.936 5.668-3.358 1.28-1.25 2.255-2.769 2.9-4.518 1.176-3.188 1.109-6.696 1.056-9.515Z" }) + ] + } + ); +}); + +export { SiNextdns as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.cjs new file mode 100644 index 000000000..df658c3a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8ED500"; +const SiNextdoor = React__namespace.forwardRef(function SiNextdoor2({ title = "Nextdoor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.65 9.997a.069.069 0 0 0-.07.069v1.415c-.123-.177-.42-.37-.805-.37-.745 0-1.316.659-1.316 1.445 0 .787.571 1.447 1.316 1.447.386 0 .682-.194.806-.372v.221c0 .05.04.09.09.09h.607a.07.07 0 0 0 .07-.07v-3.806a.069.069 0 0 0-.07-.069zm-3.913.404a.07.07 0 0 0-.069.07c0 .779.064.7-.504.7a.09.09 0 0 0-.09.09v.486c0 .05.04.089.09.089h.504v1.136c0 .676.476 1.003 1.07 1.003.183 0 .32-.017.434-.046a.07.07 0 0 0 .052-.067v-.526a.07.07 0 0 0-.086-.066.984.984 0 0 1-.227.023c-.33 0-.476-.133-.476-.47v-.987h.608a.07.07 0 0 0 .07-.069v-.527a.069.069 0 0 0-.07-.069h-.608v-.701a.069.069 0 0 0-.069-.07zm-8.396.676c-.516 0-.955.236-1.201.598-.02.03-.055.095-.102.095-.226.002-.24-.276-.247-.524a.07.07 0 0 0-.069-.066l-.653-.004a.07.07 0 0 0-.069.07c.014.606.126 1.018.86 1.181.04.01.068.045.068.087v1.36c0 .037.03.068.069.068h.634a.07.07 0 0 0 .069-.07V12.47c0-.312.221-.667.64-.667.4 0 .642.355.642.667v1.404c0 .038.03.069.069.069h.634a.07.07 0 0 0 .069-.07v-1.508c0-.72-.616-1.287-1.413-1.287zm3.207.033c-.851 0-1.472.626-1.472 1.446 0 .876.65 1.431 1.483 1.447.655.012 1.09-.363 1.194-.494a.068.068 0 0 0-.015-.097l-.435-.34c-.047-.047-.084-.021-.112.001-.07.057-.203.22-.626.237-.37.015-.7-.205-.745-.576h2.03a.07.07 0 0 0 .069-.065c.006-.082.006-.142.006-.196 0-.897-.644-1.363-1.377-1.363zm11.652 0c-.812 0-1.472.637-1.472 1.446 0 .81.66 1.447 1.472 1.447.812 0 1.472-.638 1.472-1.447s-.66-1.446-1.472-1.446zm3.229 0c-.812 0-1.472.637-1.472 1.446 0 .81.66 1.447 1.472 1.447.812 0 1.472-.638 1.472-1.447s-.66-1.446-1.472-1.446zm3.314.028a.745.745 0 0 0-.695.476v-.374a.069.069 0 0 0-.069-.069h-.628a.069.069 0 0 0-.07.07v2.632a.07.07 0 0 0 .07.069h.628a.07.07 0 0 0 .07-.07v-1.255c0-.454.24-.737.604-.737.092 0 .175.013.26.035A.069.069 0 0 0 24 11.85v-.624a.07.07 0 0 0-.056-.068.938.938 0 0 0-.201-.02zm-16.666.033a.069.069 0 0 0-.058.108l.88 1.305L7 13.832a.07.07 0 0 0 .056.11h.745a.068.068 0 0 0 .056-.03l.564-.79.563.79a.069.069 0 0 0 .056.03h.74a.069.069 0 0 0 .057-.11l-.899-1.248.88-1.305a.069.069 0 0 0-.058-.108h-.738a.07.07 0 0 0-.058.03l-.548.818-.549-.817a.07.07 0 0 0-.057-.03zm-1.552.565c.286 0 .566.155.633.482h-1.31c.073-.338.392-.482.677-.482zm8.412.067c.42 0 .705.321.705.753 0 .433-.285.754-.705.754s-.705-.321-.705-.754c0-.432.285-.753.705-.753zm3.263.016c.403 0 .694.31.694.737s-.291.737-.694.737c-.403 0-.7-.31-.7-.737 0-.426.297-.737.7-.737zm3.229 0c.403 0 .694.31.694.737s-.291.737-.694.737c-.403 0-.7-.31-.7-.737 0-.426.297-.737.7-.737z" }) + ] + } + ); +}); + +exports.default = SiNextdoor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.d.ts new file mode 100644 index 000000000..1f0657f92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8ED500"; +declare const SiNextdoor: IconType; +export { SiNextdoor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.mjs new file mode 100644 index 000000000..c85db7c92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdoor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8ED500"; +const SiNextdoor = React.forwardRef(function SiNextdoor2({ title = "Nextdoor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.65 9.997a.069.069 0 0 0-.07.069v1.415c-.123-.177-.42-.37-.805-.37-.745 0-1.316.659-1.316 1.445 0 .787.571 1.447 1.316 1.447.386 0 .682-.194.806-.372v.221c0 .05.04.09.09.09h.607a.07.07 0 0 0 .07-.07v-3.806a.069.069 0 0 0-.07-.069zm-3.913.404a.07.07 0 0 0-.069.07c0 .779.064.7-.504.7a.09.09 0 0 0-.09.09v.486c0 .05.04.089.09.089h.504v1.136c0 .676.476 1.003 1.07 1.003.183 0 .32-.017.434-.046a.07.07 0 0 0 .052-.067v-.526a.07.07 0 0 0-.086-.066.984.984 0 0 1-.227.023c-.33 0-.476-.133-.476-.47v-.987h.608a.07.07 0 0 0 .07-.069v-.527a.069.069 0 0 0-.07-.069h-.608v-.701a.069.069 0 0 0-.069-.07zm-8.396.676c-.516 0-.955.236-1.201.598-.02.03-.055.095-.102.095-.226.002-.24-.276-.247-.524a.07.07 0 0 0-.069-.066l-.653-.004a.07.07 0 0 0-.069.07c.014.606.126 1.018.86 1.181.04.01.068.045.068.087v1.36c0 .037.03.068.069.068h.634a.07.07 0 0 0 .069-.07V12.47c0-.312.221-.667.64-.667.4 0 .642.355.642.667v1.404c0 .038.03.069.069.069h.634a.07.07 0 0 0 .069-.07v-1.508c0-.72-.616-1.287-1.413-1.287zm3.207.033c-.851 0-1.472.626-1.472 1.446 0 .876.65 1.431 1.483 1.447.655.012 1.09-.363 1.194-.494a.068.068 0 0 0-.015-.097l-.435-.34c-.047-.047-.084-.021-.112.001-.07.057-.203.22-.626.237-.37.015-.7-.205-.745-.576h2.03a.07.07 0 0 0 .069-.065c.006-.082.006-.142.006-.196 0-.897-.644-1.363-1.377-1.363zm11.652 0c-.812 0-1.472.637-1.472 1.446 0 .81.66 1.447 1.472 1.447.812 0 1.472-.638 1.472-1.447s-.66-1.446-1.472-1.446zm3.229 0c-.812 0-1.472.637-1.472 1.446 0 .81.66 1.447 1.472 1.447.812 0 1.472-.638 1.472-1.447s-.66-1.446-1.472-1.446zm3.314.028a.745.745 0 0 0-.695.476v-.374a.069.069 0 0 0-.069-.069h-.628a.069.069 0 0 0-.07.07v2.632a.07.07 0 0 0 .07.069h.628a.07.07 0 0 0 .07-.07v-1.255c0-.454.24-.737.604-.737.092 0 .175.013.26.035A.069.069 0 0 0 24 11.85v-.624a.07.07 0 0 0-.056-.068.938.938 0 0 0-.201-.02zm-16.666.033a.069.069 0 0 0-.058.108l.88 1.305L7 13.832a.07.07 0 0 0 .056.11h.745a.068.068 0 0 0 .056-.03l.564-.79.563.79a.069.069 0 0 0 .056.03h.74a.069.069 0 0 0 .057-.11l-.899-1.248.88-1.305a.069.069 0 0 0-.058-.108h-.738a.07.07 0 0 0-.058.03l-.548.818-.549-.817a.07.07 0 0 0-.057-.03zm-1.552.565c.286 0 .566.155.633.482h-1.31c.073-.338.392-.482.677-.482zm8.412.067c.42 0 .705.321.705.753 0 .433-.285.754-.705.754s-.705-.321-.705-.754c0-.432.285-.753.705-.753zm3.263.016c.403 0 .694.31.694.737s-.291.737-.694.737c-.403 0-.7-.31-.7-.737 0-.426.297-.737.7-.737zm3.229 0c.403 0 .694.31.694.737s-.291.737-.694.737c-.403 0-.7-.31-.7-.737 0-.426.297-.737.7-.737z" }) + ] + } + ); +}); + +export { SiNextdoor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.cjs new file mode 100644 index 000000000..120c594ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNextdotjs = React__namespace.forwardRef(function SiNextdotjs2({ title = "Next.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.665 21.978C16.758 23.255 14.465 24 12 24 5.377 24 0 18.623 0 12S5.377 0 12 0s12 5.377 12 12c0 3.583-1.574 6.801-4.067 9.001L9.219 7.2H7.2v9.596h1.615V9.251l9.85 12.727Zm-3.332-8.533 1.6 2.061V7.2h-1.6v6.245Z" }) + ] + } + ); +}); + +exports.default = SiNextdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.d.ts new file mode 100644 index 000000000..5187f0649 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNextdotjs: IconType; +export { SiNextdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.mjs new file mode 100644 index 000000000..1cdd49ee2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNextdotjs = React.forwardRef(function SiNextdotjs2({ title = "Next.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.665 21.978C16.758 23.255 14.465 24 12 24 5.377 24 0 18.623 0 12S5.377 0 12 0s12 5.377 12 12c0 3.583-1.574 6.801-4.067 9.001L9.219 7.2H7.2v9.596h1.615V9.251l9.85 12.727Zm-3.332-8.533 1.6 2.061V7.2h-1.6v6.245Z" }) + ] + } + ); +}); + +export { SiNextdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.cjs new file mode 100644 index 000000000..90a6667f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0DC09D"; +const SiNextflow = React__namespace.forwardRef(function SiNextflow2({ title = "Nextflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.005 4.424V0c6.228.259 11.227 5.268 11.477 11.506H7.058C6.828 7.715 3.786 4.673.005 4.424m7.082 8.089h4.424C11.251 18.741 6.242 23.741.005 23.99v-4.423c3.79-.231 6.832-3.273 7.082-7.054m9.826-1.036h-4.424C12.749 5.249 17.758.25 23.995 0v4.424c-3.79.23-6.832 3.263-7.082 7.053m7.082 8.099V24c-6.228-.259-11.227-5.268-11.477-11.506h4.424c.23 3.791 3.272 6.833 7.053 7.082" }) + ] + } + ); +}); + +exports.default = SiNextflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.d.ts new file mode 100644 index 000000000..917a30b20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0DC09D"; +declare const SiNextflow: IconType; +export { SiNextflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.mjs new file mode 100644 index 000000000..5b0f95d65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0DC09D"; +const SiNextflow = React.forwardRef(function SiNextflow2({ title = "Nextflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.005 4.424V0c6.228.259 11.227 5.268 11.477 11.506H7.058C6.828 7.715 3.786 4.673.005 4.424m7.082 8.089h4.424C11.251 18.741 6.242 23.741.005 23.99v-4.423c3.79-.231 6.832-3.273 7.082-7.054m9.826-1.036h-4.424C12.749 5.249 17.758.25 23.995 0v4.424c-3.79.23-6.832 3.263-7.082 7.053m7.082 8.099V24c-6.228-.259-11.227-5.268-11.477-11.506h4.424c.23 3.791 3.272 6.833 7.053 7.082" }) + ] + } + ); +}); + +export { SiNextflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.cjs new file mode 100644 index 000000000..16bbfb2d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNextra = React__namespace.forwardRef(function SiNextra2({ title = "Nextra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.68 21.031c-4.98-4.98-4.98-13.083 0-18.063l.978-.978c.22-.22.342-.513.342-.825 0-.311-.122-.604-.342-.824-.44-.441-1.207-.44-1.648 0l-.979.978c-4.98 4.98-13.084 4.98-18.063 0L1.99.34a1.17 1.17 0 0 0-1.649 0 1.168 1.168 0 0 0 0 1.649l.978.978c4.98 4.98 4.98 13.083 0 18.063l-.977.978c-.221.22-.342.513-.342.825 0 .31.121.604.341.824.442.443 1.21.441 1.65 0l.977-.977c4.98-4.983 13.083-4.98 18.064 0l.978.977c.22.22.513.342.824.342.312 0 .605-.122.824-.342.22-.22.342-.512.342-.824 0-.313-.122-.605-.342-.825l-.977-.978z" }) + ] + } + ); +}); + +exports.default = SiNextra; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.d.ts new file mode 100644 index 000000000..8f424c9b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNextra: IconType; +export { SiNextra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.mjs new file mode 100644 index 000000000..7bcd6e1ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNextra.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNextra = React.forwardRef(function SiNextra2({ title = "Nextra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.68 21.031c-4.98-4.98-4.98-13.083 0-18.063l.978-.978c.22-.22.342-.513.342-.825 0-.311-.122-.604-.342-.824-.44-.441-1.207-.44-1.648 0l-.979.978c-4.98 4.98-13.084 4.98-18.063 0L1.99.34a1.17 1.17 0 0 0-1.649 0 1.168 1.168 0 0 0 0 1.649l.978.978c4.98 4.98 4.98 13.083 0 18.063l-.977.978c-.221.22-.342.513-.342.825 0 .31.121.604.341.824.442.443 1.21.441 1.65 0l.977-.977c4.98-4.983 13.083-4.98 18.064 0l.978.977c.22.22.513.342.824.342.312 0 .605-.122.824-.342.22-.22.342-.512.342-.824 0-.313-.122-.605-.342-.825l-.977-.978z" }) + ] + } + ); +}); + +export { SiNextra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.cjs new file mode 100644 index 000000000..62a6587d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002E5F"; +const SiNfc = React__namespace.forwardRef(function SiNfc2({ title = "NFC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.958 1.98C23.895 1 23.143.256 22.145.197c-1.102-.066-4.668-.12-5.693-.12 1.832 1.264 2.082 3.644 2.255 8.066.101 2.62.01 11.799.002 12.188l-.049 2.504-9.628-9.63v-3.014l7.656 7.658c.02-1.516.04-3.492.04-5.299 0-1.76-.026-3.354-.076-4.193-.288-4.819-.737-7.077-3.253-7.962-.77-.27-1.487-.335-2.683-.351C9.728.032 2.848.037 1.854.091.8.147.09.914.042 1.9c-.048.977-.064 19.174 0 20.165.062.98.815 1.724 1.812 1.782 1.102.067 4.668.075 5.694.075-1.832-1.264-2.083-3.643-2.255-8.066-.1-2.62-.009-11.8 0-12.188l.047-2.504 9.629 9.63v3.013L7.312 6.152c-.02 1.514-.04 3.49-.04 5.298 0 1.76.026 3.354.077 4.192.288 4.82.736 7.077 3.252 7.962.77.271 1.487.337 2.683.352.987.012 7.868.006 8.861-.047 1.056-.056 1.765-.822 1.813-1.811.048-.976.064-19.127 0-20.118" }) + ] + } + ); +}); + +exports.default = SiNfc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.d.ts new file mode 100644 index 000000000..8f5be964d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002E5F"; +declare const SiNfc: IconType; +export { SiNfc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.mjs new file mode 100644 index 000000000..4702b4d76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNfc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002E5F"; +const SiNfc = React.forwardRef(function SiNfc2({ title = "NFC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.958 1.98C23.895 1 23.143.256 22.145.197c-1.102-.066-4.668-.12-5.693-.12 1.832 1.264 2.082 3.644 2.255 8.066.101 2.62.01 11.799.002 12.188l-.049 2.504-9.628-9.63v-3.014l7.656 7.658c.02-1.516.04-3.492.04-5.299 0-1.76-.026-3.354-.076-4.193-.288-4.819-.737-7.077-3.253-7.962-.77-.27-1.487-.335-2.683-.351C9.728.032 2.848.037 1.854.091.8.147.09.914.042 1.9c-.048.977-.064 19.174 0 20.165.062.98.815 1.724 1.812 1.782 1.102.067 4.668.075 5.694.075-1.832-1.264-2.083-3.643-2.255-8.066-.1-2.62-.009-11.8 0-12.188l.047-2.504 9.629 9.63v3.013L7.312 6.152c-.02 1.514-.04 3.49-.04 5.298 0 1.76.026 3.354.077 4.192.288 4.82.736 7.077 3.252 7.962.77.271 1.487.337 2.683.352.987.012 7.868.006 8.861-.047 1.056-.056 1.765-.822 1.813-1.811.048-.976.064-19.127 0-20.118" }) + ] + } + ); +}); + +export { SiNfc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.cjs new file mode 100644 index 000000000..d019a08c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24B064"; +const SiNfcore = React__namespace.forwardRef(function SiNfcore2({ title = "nf-core", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.848 10.88s.013-.31.036-.573c.024-.263.065-.69.119-1.004s.112-.593.198-.88a7 7 0 0 1 .317-.834c.098-.212.144-.288.246-.445.102-.156.267-.363.37-.486.102-.122.085-.125.237-.256.153-.132.472-.355.709-.487.237-.131.439-.215.705-.306s.541-.163.89-.228c.35-.065.842-.114 1.206-.143.365-.03.75-.033.981-.041s.404-.011.404-.011-.008-.218.01-.5c.016-.282.06-.84.12-1.19a7 7 0 0 1 .226-.916c.081-.255.146-.422.24-.615a4 4 0 0 1 .325-.543c.124-.171.243-.323.413-.485s.4-.341.613-.467a3.3 3.3 0 0 1 .654-.29c.222-.073.508-.123.671-.149s.172-.02.3-.026c.13-.006.309-.008.472 0s.366.03.505.052c.138.021.205.035.326.068.12.033.314.086.396.133s.086.049.115.098a.35.35 0 0 1 .043.188c-.005.057-.026.08-.06.137a1 1 0 0 1-.157.2 2.2 2.2 0 0 1-.353.277c-.154.1-.441.244-.579.307s-.145.083-.236.092a.8.8 0 0 1-.292-.047c-.06-.02-.045-.02-.075-.041a.6.6 0 0 1-.105-.087 1.3 1.3 0 0 1-.122-.174c-.027-.046-.03-.056-.048-.098s-.019-.12-.06-.156c-.043-.035-.082-.022-.159-.032a1.8 1.8 0 0 0-.688.043 2 2 0 0 0-.415.178 1.6 1.6 0 0 0-.333.26c-.12.118-.28.33-.364.456-.083.127-.09.147-.155.288-.063.14-.147.344-.21.56a7 7 0 0 0-.152.728c-.03.193-.031.252-.039.423a8 8 0 0 0 0 .606c.008.163.023.274.034.373.011.1.03.225.03.225l.113-.01s.421-.062.647-.089c.225-.027.471-.059.703-.07a8 8 0 0 1 .688 0c.281.01.665.016 1.002.064.336.049.686.11 1.01.229.325.118.654.298.92.475.266.178.481.364.676.57.194.208.348.426.488.661a5 5 0 0 1 .527 1.335c.057.237.117.603.152.834s.035.293.05.56c.017.268.023.803.016 1.042-.007.24-.024.384-.024.384s-.52-.43-.757-.596a7 7 0 0 0-.662-.412c-.181-.098-.414-.19-.414-.19s-.3-.016-.604.096c-.305.112-.287.09-.492.21s-.528.347-.71.542c-.183.195-.259.343-.395.592s-.3.644-.398.908a5 5 0 0 0-.2.664 6.7 6.7 0 0 0-.188 1.452c-.006.233-.01.344.015.7s.104.94.167 1.433.204 1.242.237 1.463c.033.22.087.578.12.783.033.204.078.29.141.417.064.128.173.268.233.342s.048.057.113.116.285.227.285.227.372-.166.533-.252a7 7 0 0 0 .724-.449c.145-.101.425-.31.575-.425.15-.116.185-.15.328-.265l.525-.431s.027.068.078.325c.05.257.17.856.189 1.222a5 5 0 0 1-.051.96 3.4 3.4 0 0 1-.163.627c-.055.158-.083.209-.146.328a4 4 0 0 1-.236.383 3 3 0 0 1-.275.33c-.09.094-.148.148-.26.24a4 4 0 0 1-.417.306 4 4 0 0 1-.578.318 10 10 0 0 1-.999.372c-.3.092-.592.152-.798.196a4 4 0 0 1-.438.08c-.138.017-.253.032-.388.023a2.3 2.3 0 0 1-.418-.077c-.116-.032-.2-.068-.276-.1s-.188-.087-.188-.087-.35-.19-.473-.254-.169-.092-.267-.134a2 2 0 0 0-.32-.116 1.4 1.4 0 0 0-.32-.043.8.8 0 0 0-.24.036.8.8 0 0 0-.221.103c-.077.05-.127.102-.231.198s-.25.272-.387.383a3 3 0 0 1-.435.283c-.099.05-.05.026-.134.05s-.238.06-.371.072c-.133.013-.3-.007-.451-.023a3 3 0 0 1-.451-.082c-.175-.044-.384-.096-.571-.163a5 5 0 0 1-.551-.238 3 3 0 0 1-.382-.232 4 4 0 0 1-.37-.298 2.6 2.6 0 0 1-.29-.312c-.104-.13-.225-.3-.322-.472a3.6 3.6 0 0 1-.252-.56 5.2 5.2 0 0 1-.247-1.179 6 6 0 0 1-.029-.578c0-.192.008-.372.024-.574.015-.203.071-.64.071-.64s.352.315.55.455c.2.14.434.28.641.38s.427.177.596.229c.17.052.252.068.413.095.163.027.35.051.559.059a6 6 0 0 0 .691-.023c.188-.019.437-.075.437-.075s.218-.24.318-.374c.099-.133.206-.297.276-.425s.097-.185.155-.336.113-.356.177-.574.153-.54.205-.735c.053-.194.056-.197.113-.43s.153-.629.217-.971c.063-.342.124-.733.16-1.082.035-.35.055-.7.055-1.009s-.018-.563-.049-.843a9 9 0 0 0-.135-.833 5 5 0 0 0-.172-.646 8 8 0 0 0-.34-.865c-.1-.19-.11-.195-.195-.295s-.191-.208-.317-.296a1.8 1.8 0 0 0-.434-.217 1.4 1.4 0 0 0-.433-.072c-.146.001-.431.076-.431.076s-.224.19-.368.32c-.145.129-.365.34-.497.456a12 12 0 0 1-.287.244s-.185-.167-.282-.244-.197-.158-.296-.216a1.2 1.2 0 0 0-.29-.134 1.4 1.4 0 0 0-.405-.056 1.1 1.1 0 0 0-.388.071c-.172.057-.439.202-.624.303-.186.101-.49.299-.49.299" }) + ] + } + ); +}); + +exports.default = SiNfcore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.d.ts new file mode 100644 index 000000000..90c15d276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24B064"; +declare const SiNfcore: IconType; +export { SiNfcore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.mjs new file mode 100644 index 000000000..8760ee225 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNfcore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24B064"; +const SiNfcore = React.forwardRef(function SiNfcore2({ title = "nf-core", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.848 10.88s.013-.31.036-.573c.024-.263.065-.69.119-1.004s.112-.593.198-.88a7 7 0 0 1 .317-.834c.098-.212.144-.288.246-.445.102-.156.267-.363.37-.486.102-.122.085-.125.237-.256.153-.132.472-.355.709-.487.237-.131.439-.215.705-.306s.541-.163.89-.228c.35-.065.842-.114 1.206-.143.365-.03.75-.033.981-.041s.404-.011.404-.011-.008-.218.01-.5c.016-.282.06-.84.12-1.19a7 7 0 0 1 .226-.916c.081-.255.146-.422.24-.615a4 4 0 0 1 .325-.543c.124-.171.243-.323.413-.485s.4-.341.613-.467a3.3 3.3 0 0 1 .654-.29c.222-.073.508-.123.671-.149s.172-.02.3-.026c.13-.006.309-.008.472 0s.366.03.505.052c.138.021.205.035.326.068.12.033.314.086.396.133s.086.049.115.098a.35.35 0 0 1 .043.188c-.005.057-.026.08-.06.137a1 1 0 0 1-.157.2 2.2 2.2 0 0 1-.353.277c-.154.1-.441.244-.579.307s-.145.083-.236.092a.8.8 0 0 1-.292-.047c-.06-.02-.045-.02-.075-.041a.6.6 0 0 1-.105-.087 1.3 1.3 0 0 1-.122-.174c-.027-.046-.03-.056-.048-.098s-.019-.12-.06-.156c-.043-.035-.082-.022-.159-.032a1.8 1.8 0 0 0-.688.043 2 2 0 0 0-.415.178 1.6 1.6 0 0 0-.333.26c-.12.118-.28.33-.364.456-.083.127-.09.147-.155.288-.063.14-.147.344-.21.56a7 7 0 0 0-.152.728c-.03.193-.031.252-.039.423a8 8 0 0 0 0 .606c.008.163.023.274.034.373.011.1.03.225.03.225l.113-.01s.421-.062.647-.089c.225-.027.471-.059.703-.07a8 8 0 0 1 .688 0c.281.01.665.016 1.002.064.336.049.686.11 1.01.229.325.118.654.298.92.475.266.178.481.364.676.57.194.208.348.426.488.661a5 5 0 0 1 .527 1.335c.057.237.117.603.152.834s.035.293.05.56c.017.268.023.803.016 1.042-.007.24-.024.384-.024.384s-.52-.43-.757-.596a7 7 0 0 0-.662-.412c-.181-.098-.414-.19-.414-.19s-.3-.016-.604.096c-.305.112-.287.09-.492.21s-.528.347-.71.542c-.183.195-.259.343-.395.592s-.3.644-.398.908a5 5 0 0 0-.2.664 6.7 6.7 0 0 0-.188 1.452c-.006.233-.01.344.015.7s.104.94.167 1.433.204 1.242.237 1.463c.033.22.087.578.12.783.033.204.078.29.141.417.064.128.173.268.233.342s.048.057.113.116.285.227.285.227.372-.166.533-.252a7 7 0 0 0 .724-.449c.145-.101.425-.31.575-.425.15-.116.185-.15.328-.265l.525-.431s.027.068.078.325c.05.257.17.856.189 1.222a5 5 0 0 1-.051.96 3.4 3.4 0 0 1-.163.627c-.055.158-.083.209-.146.328a4 4 0 0 1-.236.383 3 3 0 0 1-.275.33c-.09.094-.148.148-.26.24a4 4 0 0 1-.417.306 4 4 0 0 1-.578.318 10 10 0 0 1-.999.372c-.3.092-.592.152-.798.196a4 4 0 0 1-.438.08c-.138.017-.253.032-.388.023a2.3 2.3 0 0 1-.418-.077c-.116-.032-.2-.068-.276-.1s-.188-.087-.188-.087-.35-.19-.473-.254-.169-.092-.267-.134a2 2 0 0 0-.32-.116 1.4 1.4 0 0 0-.32-.043.8.8 0 0 0-.24.036.8.8 0 0 0-.221.103c-.077.05-.127.102-.231.198s-.25.272-.387.383a3 3 0 0 1-.435.283c-.099.05-.05.026-.134.05s-.238.06-.371.072c-.133.013-.3-.007-.451-.023a3 3 0 0 1-.451-.082c-.175-.044-.384-.096-.571-.163a5 5 0 0 1-.551-.238 3 3 0 0 1-.382-.232 4 4 0 0 1-.37-.298 2.6 2.6 0 0 1-.29-.312c-.104-.13-.225-.3-.322-.472a3.6 3.6 0 0 1-.252-.56 5.2 5.2 0 0 1-.247-1.179 6 6 0 0 1-.029-.578c0-.192.008-.372.024-.574.015-.203.071-.64.071-.64s.352.315.55.455c.2.14.434.28.641.38s.427.177.596.229c.17.052.252.068.413.095.163.027.35.051.559.059a6 6 0 0 0 .691-.023c.188-.019.437-.075.437-.075s.218-.24.318-.374c.099-.133.206-.297.276-.425s.097-.185.155-.336.113-.356.177-.574.153-.54.205-.735c.053-.194.056-.197.113-.43s.153-.629.217-.971c.063-.342.124-.733.16-1.082.035-.35.055-.7.055-1.009s-.018-.563-.049-.843a9 9 0 0 0-.135-.833 5 5 0 0 0-.172-.646 8 8 0 0 0-.34-.865c-.1-.19-.11-.195-.195-.295s-.191-.208-.317-.296a1.8 1.8 0 0 0-.434-.217 1.4 1.4 0 0 0-.433-.072c-.146.001-.431.076-.431.076s-.224.19-.368.32c-.145.129-.365.34-.497.456a12 12 0 0 1-.287.244s-.185-.167-.282-.244-.197-.158-.296-.216a1.2 1.2 0 0 0-.29-.134 1.4 1.4 0 0 0-.405-.056 1.1 1.1 0 0 0-.388.071c-.172.057-.439.202-.624.303-.186.101-.49.299-.49.299" }) + ] + } + ); +}); + +export { SiNfcore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.cjs new file mode 100644 index 000000000..f6f0aa45a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009639"; +const SiNginx = React__namespace.forwardRef(function SiNginx2({ title = "NGINX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L1.605 6v12L12 24l10.395-6V6L12 0zm6 16.59c0 .705-.646 1.29-1.529 1.29-.631 0-1.351-.255-1.801-.81l-6-7.141v6.66c0 .721-.57 1.29-1.274 1.29H7.32c-.721 0-1.29-.6-1.29-1.29V7.41c0-.705.63-1.29 1.5-1.29.646 0 1.38.255 1.83.81l5.97 7.141V7.41c0-.721.6-1.29 1.29-1.29h.075c.72 0 1.29.6 1.29 1.29v9.18H18z" }) + ] + } + ); +}); + +exports.default = SiNginx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.d.ts new file mode 100644 index 000000000..466d0a1d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009639"; +declare const SiNginx: IconType; +export { SiNginx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.mjs new file mode 100644 index 000000000..a2351ec39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNginx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009639"; +const SiNginx = React.forwardRef(function SiNginx2({ title = "NGINX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L1.605 6v12L12 24l10.395-6V6L12 0zm6 16.59c0 .705-.646 1.29-1.529 1.29-.631 0-1.351-.255-1.801-.81l-6-7.141v6.66c0 .721-.57 1.29-1.274 1.29H7.32c-.721 0-1.29-.6-1.29-1.29V7.41c0-.705.63-1.29 1.5-1.29.646 0 1.38.255 1.83.81l5.97 7.141V7.41c0-.721.6-1.29 1.29-1.29h.075c.72 0 1.29.6 1.29 1.29v9.18H18z" }) + ] + } + ); +}); + +export { SiNginx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.cjs new file mode 100644 index 000000000..11af028ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15833"; +const SiNginxproxymanager = React__namespace.forwardRef(function SiNginxproxymanager2({ title = "Nginx Proxy Manager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.008 0A822.933 822.933 0 0 0 1.59 6.043V18c3.578 2.087 7.238 4.274 10.418 6 3.928-2.267 6.71-3.868 10.402-6v-3.043l-1.045.6v1.8l-1.545.9-1.56-.9v-1.8l1.56-.885v-.002l.268.156a8.15 8.15 0 0 0 .404-1.754v-.002a8.72 8.72 0 0 0 .072-1.072 9.885 9.885 0 0 0-.072-1.127 8.873 8.873 0 0 0-.515-1.97v-.003a8.137 8.137 0 0 0-1.301-2.242 7.113 7.113 0 0 0-.615-.699 10.271 10.271 0 0 0-.846-.728 7.91 7.91 0 0 0-1.902-1.116 4.776 4.776 0 0 0-.586-.213v-.957c.41.118.812.265 1.2.442a9.2 9.2 0 0 1 1.618.943 9.4 9.4 0 0 1 1.158.986c.273.277.53.568.774.872.532.686.97 1.44 1.302 2.244h-.002a9.45 9.45 0 0 1 .645 2.613c.04.317.06.637.056.957 0 .314-.014.614-.043.914-.082.838-.37 1.786-.542 2.373l.472.27 1.045-.602V8.986l-1.303-.742v-.002l1.303.744V6c-3.56-2.057-7.212-4.154-10.402-6Zm8.08 14.826c-.02.052.003.002.004.002zM12.035 1.213l1.56.9v1.801l-1.56.885-1.545-.885h-.002v-.328a8.458 8.458 0 0 0-1.744.516 8.178 8.178 0 0 0-1.889 1.07l-.001.002a6.77 6.77 0 0 0-.9.783 9.171 9.171 0 0 0-.616.672 8.84 8.84 0 0 0-1.3 2.228l.228.127 1.287-.742 1.203.686c1.929-1.112 3.397-1.961 5.252-3.014l.027.014c1.926 1.114 3.398 1.955 5.238 3.029.028 1.997.014 4.064.014 6.086-1.874 1.084-3.753 2.16-5.28 3.043a859.719 859.719 0 0 1-5.294-3.043V8.957l.043-.027-1.203-.688-1.287.744-.229-.129h-.002a8.376 8.376 0 0 0-.53 2.057c-.044.36-.068.723-.07 1.086.002.344.026.687.07 1.027v.002c.015.215.06.429.102.643l-.83.484a7.017 7.017 0 0 1-.2-1.199A7.065 7.065 0 0 1 2.52 12c0-.329.028-.672.056-1a9.77 9.77 0 0 1 .658-2.6 9.438 9.438 0 0 1 1.303-2.244c.243-.3.5-.57.758-.842.37-.372.773-.71 1.203-1.013-1.215-.084-1.215-.084 0-.002a9.394 9.394 0 0 1 1.645-.942 9.866 9.866 0 0 1 2.347-.7l-.002-.542-1.043-.601 1.045.6zm0 .773-.887.514v1.027l.887.516.887-.516V2.5Zm-.03 6.928c-.935.532-1.888 1.084-2.689 1.543v3.086c.933.535 1.892 1.095 2.692 1.557.926-.565 1.865-1.093 2.676-1.557v-3.086c-.945-.542-1.857-1.074-2.678-1.543Zm-7.74 5.758 1.546.885v1.8l-.329.186c.146.177.303.344.471.5.277.288.58.55.902.785a8.07 8.07 0 0 0 1.83 1.059h.002a8.14 8.14 0 0 0 2.061.57c.417.058.837.087 1.258.086a8.37 8.37 0 0 0 1.332-.1 8.64 8.64 0 0 0 2.017-.572 8.076 8.076 0 0 0 1.86-1.1c.172-.114.315-.242.472-.37l.83.47a9.79 9.79 0 0 1-.945.787l.946.541 1.302-.756-1.302.758-.946-.543c-.516.37-1.067.69-1.644.955l-.002.002a9.502 9.502 0 0 1-2.588.756c-.441.057-.885.086-1.33.086a12.048 12.048 0 0 1-1.26-.072v.002a9.38 9.38 0 0 1-2.605-.744 9.044 9.044 0 0 1-1.688-.971 9.625 9.625 0 0 1-1.775-1.658h-.002l-.412.244-1.56-.9v-1.801zm0 .756-.886.515v1.028l.887.515.886-.515v-1.028zm15.555 0-.902.515v1.028l.902.515.887-.515v-1.028z" }) + ] + } + ); +}); + +exports.default = SiNginxproxymanager; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.d.ts new file mode 100644 index 000000000..56dabaed6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15833"; +declare const SiNginxproxymanager: IconType; +export { SiNginxproxymanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.mjs new file mode 100644 index 000000000..47e1c61ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNginxproxymanager.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15833"; +const SiNginxproxymanager = React.forwardRef(function SiNginxproxymanager2({ title = "Nginx Proxy Manager", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.008 0A822.933 822.933 0 0 0 1.59 6.043V18c3.578 2.087 7.238 4.274 10.418 6 3.928-2.267 6.71-3.868 10.402-6v-3.043l-1.045.6v1.8l-1.545.9-1.56-.9v-1.8l1.56-.885v-.002l.268.156a8.15 8.15 0 0 0 .404-1.754v-.002a8.72 8.72 0 0 0 .072-1.072 9.885 9.885 0 0 0-.072-1.127 8.873 8.873 0 0 0-.515-1.97v-.003a8.137 8.137 0 0 0-1.301-2.242 7.113 7.113 0 0 0-.615-.699 10.271 10.271 0 0 0-.846-.728 7.91 7.91 0 0 0-1.902-1.116 4.776 4.776 0 0 0-.586-.213v-.957c.41.118.812.265 1.2.442a9.2 9.2 0 0 1 1.618.943 9.4 9.4 0 0 1 1.158.986c.273.277.53.568.774.872.532.686.97 1.44 1.302 2.244h-.002a9.45 9.45 0 0 1 .645 2.613c.04.317.06.637.056.957 0 .314-.014.614-.043.914-.082.838-.37 1.786-.542 2.373l.472.27 1.045-.602V8.986l-1.303-.742v-.002l1.303.744V6c-3.56-2.057-7.212-4.154-10.402-6Zm8.08 14.826c-.02.052.003.002.004.002zM12.035 1.213l1.56.9v1.801l-1.56.885-1.545-.885h-.002v-.328a8.458 8.458 0 0 0-1.744.516 8.178 8.178 0 0 0-1.889 1.07l-.001.002a6.77 6.77 0 0 0-.9.783 9.171 9.171 0 0 0-.616.672 8.84 8.84 0 0 0-1.3 2.228l.228.127 1.287-.742 1.203.686c1.929-1.112 3.397-1.961 5.252-3.014l.027.014c1.926 1.114 3.398 1.955 5.238 3.029.028 1.997.014 4.064.014 6.086-1.874 1.084-3.753 2.16-5.28 3.043a859.719 859.719 0 0 1-5.294-3.043V8.957l.043-.027-1.203-.688-1.287.744-.229-.129h-.002a8.376 8.376 0 0 0-.53 2.057c-.044.36-.068.723-.07 1.086.002.344.026.687.07 1.027v.002c.015.215.06.429.102.643l-.83.484a7.017 7.017 0 0 1-.2-1.199A7.065 7.065 0 0 1 2.52 12c0-.329.028-.672.056-1a9.77 9.77 0 0 1 .658-2.6 9.438 9.438 0 0 1 1.303-2.244c.243-.3.5-.57.758-.842.37-.372.773-.71 1.203-1.013-1.215-.084-1.215-.084 0-.002a9.394 9.394 0 0 1 1.645-.942 9.866 9.866 0 0 1 2.347-.7l-.002-.542-1.043-.601 1.045.6zm0 .773-.887.514v1.027l.887.516.887-.516V2.5Zm-.03 6.928c-.935.532-1.888 1.084-2.689 1.543v3.086c.933.535 1.892 1.095 2.692 1.557.926-.565 1.865-1.093 2.676-1.557v-3.086c-.945-.542-1.857-1.074-2.678-1.543Zm-7.74 5.758 1.546.885v1.8l-.329.186c.146.177.303.344.471.5.277.288.58.55.902.785a8.07 8.07 0 0 0 1.83 1.059h.002a8.14 8.14 0 0 0 2.061.57c.417.058.837.087 1.258.086a8.37 8.37 0 0 0 1.332-.1 8.64 8.64 0 0 0 2.017-.572 8.076 8.076 0 0 0 1.86-1.1c.172-.114.315-.242.472-.37l.83.47a9.79 9.79 0 0 1-.945.787l.946.541 1.302-.756-1.302.758-.946-.543c-.516.37-1.067.69-1.644.955l-.002.002a9.502 9.502 0 0 1-2.588.756c-.441.057-.885.086-1.33.086a12.048 12.048 0 0 1-1.26-.072v.002a9.38 9.38 0 0 1-2.605-.744 9.044 9.044 0 0 1-1.688-.971 9.625 9.625 0 0 1-1.775-1.658h-.002l-.412.244-1.56-.9v-1.801zm0 .756-.886.515v1.028l.887.515.886-.515v-1.028zm15.555 0-.902.515v1.028l.902.515.887-.515v-1.028z" }) + ] + } + ); +}); + +export { SiNginxproxymanager as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.cjs new file mode 100644 index 000000000..62fd70668 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F1E37"; +const SiNgrok = React__namespace.forwardRef(function SiNgrok2({ title = "ngrok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.951 7.598v6.713h1.463v-1.69l1.61 1.69H24v-.08l-2.123-2.153 2.002-1.846v-.07H21.95l-1.537 1.496v-4.06zm-2.93 2.41a2.626 2.626 0 00-1.787.635 2.049 2.049 0 00-.703 1.556c-.002.75.311 1.287.7 1.643.526.478 1.221.626 1.767.623.666 0 1.34-.195 1.805-.62.521-.483.713-1.029.713-1.607 0-.73-.31-1.247-.71-1.603-.553-.475-1.202-.628-1.785-.627zm-9.062.039c-1.188-.005-2.1.977-2.104 2.25-.004 1.296.908 2.108 2.032 2.096.664.002.983-.244 1.308-.541v1.193h-1.37l-1.03 1.158v.2H9.66v-6.24H8.195v.435c-.381-.408-.772-.542-1.236-.551zm-4.805.11l-.691.786v-.771H0v4.15h1.463v-2.799c.547.002 1.023-.002 1.49-.003v2.802h1.465v-2.595c-.004-.547-.1-.819-.307-1.061a1.431 1.431 0 00-.914-.51zm8.114.005v4.15h1.468l.002-2.779h1.065l1.164-1.314v-.057h-1.598l-.635.715v-.715zm-2.946 1.115c.504 0 .96.444.948.948a.956.956 0 01-.948.945c-.523 0-.931-.403-.947-.945-.002-.52.443-.94.947-.948zm8.703.001c.525 0 .94.434.944.95-.027.544-.42.95-.944.95s-.934-.417-.95-.95a.955.955 0 01.95-.95z" }) + ] + } + ); +}); + +exports.default = SiNgrok; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.d.ts new file mode 100644 index 000000000..ec048025a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F1E37"; +declare const SiNgrok: IconType; +export { SiNgrok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.mjs new file mode 100644 index 000000000..f6a8a01d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrok.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F1E37"; +const SiNgrok = React.forwardRef(function SiNgrok2({ title = "ngrok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.951 7.598v6.713h1.463v-1.69l1.61 1.69H24v-.08l-2.123-2.153 2.002-1.846v-.07H21.95l-1.537 1.496v-4.06zm-2.93 2.41a2.626 2.626 0 00-1.787.635 2.049 2.049 0 00-.703 1.556c-.002.75.311 1.287.7 1.643.526.478 1.221.626 1.767.623.666 0 1.34-.195 1.805-.62.521-.483.713-1.029.713-1.607 0-.73-.31-1.247-.71-1.603-.553-.475-1.202-.628-1.785-.627zm-9.062.039c-1.188-.005-2.1.977-2.104 2.25-.004 1.296.908 2.108 2.032 2.096.664.002.983-.244 1.308-.541v1.193h-1.37l-1.03 1.158v.2H9.66v-6.24H8.195v.435c-.381-.408-.772-.542-1.236-.551zm-4.805.11l-.691.786v-.771H0v4.15h1.463v-2.799c.547.002 1.023-.002 1.49-.003v2.802h1.465v-2.595c-.004-.547-.1-.819-.307-1.061a1.431 1.431 0 00-.914-.51zm8.114.005v4.15h1.468l.002-2.779h1.065l1.164-1.314v-.057h-1.598l-.635.715v-.715zm-2.946 1.115c.504 0 .96.444.948.948a.956.956 0 01-.948.945c-.523 0-.931-.403-.947-.945-.002-.52.443-.94.947-.948zm8.703.001c.525 0 .94.434.944.95-.027.544-.42.95-.944.95s-.934-.417-.95-.95a.955.955 0 01.95-.95z" }) + ] + } + ); +}); + +export { SiNgrok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.cjs new file mode 100644 index 000000000..75aefac1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BA2BD2"; +const SiNgrx = React__namespace.forwardRef(function SiNgrx2({ title = "NgRx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.024.017V0L12 .008 11.976 0v.017L.812 3.892l1.605 14.875 9.559 5.207V24l.024-.013.024.013v-.026l9.559-5.207 1.605-14.875L12.024.017zm6.868 14.244c-1.094 2.632-3.104 4.02-6.031 4.166-2.829 0-4.661-1.7-4.66-1.7-1.163-.905-1.963-2.046-2.398-3.417-.695-.76-.702-.841-.774-1.145-.072-.303.045-.388.249-.685.136-.198.168-.483.098-.85-.173-.24-.273-.616-.3-1.128 0-.247.166-.508.496-.783.33-.275.533-.486.607-.632.056-.079.077-.423.065-1.031-.004-.598.328-.923.995-.975 1-.08 1.565-.832 1.879-1.174.21-.228.52-.339.91-.341.551-.026 1.052.185 1.484.62 1.075-.055 2.176.235 3.292.863 1.586.942 2.451 1.962 2.596 3.055-.17 1.439-2.102 1.4-5.788-.113-1.93.546-2.878 1.73-2.846 3.552-.001 1.672.808 2.886 2.422 3.643-.787-.772-1.122-1.422-1.01-1.959 1.637 1.937 3.5 2.662 5.588 2.173-.92.032-1.65-.264-2.198-.893 1.411-.035 2.743-.69 3.998-1.972-.724.576-1.482.794-2.284.657 2.173-1.709 2.942-3.702 2.307-5.98l-.002-.006a3.02 3.02 0 0 1 .788 2.03c.014.783-.249 1.61-.795 2.477.408-.318.88-1.002 1.413-2.047.23 2.117-.625 3.724-2.574 4.825.622-.057 1.448-.467 2.473-1.23zm-5.567-6.63a.319.319 0 1 1 .638 0 .319.319 0 0 1-.638 0z" }) + ] + } + ); +}); + +exports.default = SiNgrx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.d.ts new file mode 100644 index 000000000..cd2987611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BA2BD2"; +declare const SiNgrx: IconType; +export { SiNgrx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.mjs new file mode 100644 index 000000000..06ca6efe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNgrx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BA2BD2"; +const SiNgrx = React.forwardRef(function SiNgrx2({ title = "NgRx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.024.017V0L12 .008 11.976 0v.017L.812 3.892l1.605 14.875 9.559 5.207V24l.024-.013.024.013v-.026l9.559-5.207 1.605-14.875L12.024.017zm6.868 14.244c-1.094 2.632-3.104 4.02-6.031 4.166-2.829 0-4.661-1.7-4.66-1.7-1.163-.905-1.963-2.046-2.398-3.417-.695-.76-.702-.841-.774-1.145-.072-.303.045-.388.249-.685.136-.198.168-.483.098-.85-.173-.24-.273-.616-.3-1.128 0-.247.166-.508.496-.783.33-.275.533-.486.607-.632.056-.079.077-.423.065-1.031-.004-.598.328-.923.995-.975 1-.08 1.565-.832 1.879-1.174.21-.228.52-.339.91-.341.551-.026 1.052.185 1.484.62 1.075-.055 2.176.235 3.292.863 1.586.942 2.451 1.962 2.596 3.055-.17 1.439-2.102 1.4-5.788-.113-1.93.546-2.878 1.73-2.846 3.552-.001 1.672.808 2.886 2.422 3.643-.787-.772-1.122-1.422-1.01-1.959 1.637 1.937 3.5 2.662 5.588 2.173-.92.032-1.65-.264-2.198-.893 1.411-.035 2.743-.69 3.998-1.972-.724.576-1.482.794-2.284.657 2.173-1.709 2.942-3.702 2.307-5.98l-.002-.006a3.02 3.02 0 0 1 .788 2.03c.014.783-.249 1.61-.795 2.477.408-.318.88-1.002 1.413-2.047.23 2.117-.625 3.724-2.574 4.825.622-.057 1.448-.467 2.473-1.23zm-5.567-6.63a.319.319 0 1 1 .638 0 .319.319 0 0 1-.638 0z" }) + ] + } + ); +}); + +export { SiNgrx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.cjs new file mode 100644 index 000000000..ae5c8d9a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNhl = React__namespace.forwardRef(function SiNhl2({ title = "NHL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.455 0 4.61 2.314c-.262.72-.693 1.172-1.277 1.344l-1.914.565.812 1.843c.376.851.567 1.738.567 2.64 0 2.49-1.272 3.06-1.272 5.827 0 3.988 3.083 6.597 5.948 7.334 1.448.353 1.886.375 3.193.697L12 24l1.334-1.436c1.308-.322 1.744-.344 3.191-.697 2.865-.737 5.95-3.346 5.95-7.334 0-2.767-1.272-3.336-1.272-5.828 0-.9.191-1.788.567-2.639l.812-1.843-1.914-.565c-.585-.172-1.014-.624-1.277-1.344L18.545 0l-1.887 1.563c-.5.414-1.006.623-1.506.623-.668 0-1.429-.326-1.937-.829L12 .157l-1.215 1.2c-.508.503-1.269.829-1.937.829-.5 0-1.006-.21-1.506-.623L5.455 0zm.14.523 1.546 1.28c.508.42 1.09.697 1.707.697.827 0 1.646-.414 2.158-.92L12 .596l.996.984c.512.506 1.33.92 2.156.92.617 0 1.199-.276 1.707-.697l1.545-1.28.694 1.899c.298.817.796 1.335 1.48 1.537l1.572.463-.668 1.517a6.856 6.856 0 0 0-.591 2.766c0 2.591 1.271 3.108 1.271 5.828 0 3.643-2.711 6.257-5.713 7.03-1.484.375-2.177.413-3.283.722C13.022 22.436 12 23.54 12 23.54s-1.022-1.103-1.166-1.254c-1.106-.31-1.797-.347-3.281-.723-3.003-.772-5.715-3.386-5.715-7.029 0-2.72 1.271-3.237 1.271-5.828a6.87 6.87 0 0 0-.591-2.766L1.85 4.422l1.572-.463c.685-.202 1.183-.72 1.482-1.537L5.596.523zM12 1.607s-1.25 1.616-3.152 1.616c-1.475 0-2.93-1.498-2.93-1.498-.658 2.949-3.084 3.16-3.084 3.16s.988 1.746.988 3.814c0 2.654-1.27 3.406-1.27 5.834 0 2.675 1.833 5.482 5.178 6.328 1.59.402 2.687.504 3.495.795.103.097.775.826.775.826s.672-.729.775-.826c.808-.291 1.905-.393 3.495-.795 3.344-.846 5.177-3.653 5.177-6.328 0-2.428-1.267-3.18-1.267-5.834 0-2.068.986-3.814.986-3.814s-2.426-.211-3.084-3.16c0 0-1.455 1.498-2.93 1.498C13.251 3.223 12 1.607 12 1.607zm0 1.01s1.258 1.33 3.152 1.33c1.512 0 2.608-1.021 2.608-1.021.769 2.09 2.42 2.422 2.42 2.422s-.715 1.459-.715 3.351c0 2.809 1.27 3.623 1.27 5.834 0 3.091-2.41 5.058-4.643 5.625-1.769.45-2.925.5-3.701.875 0 0-.284.258-.391.377-.107-.119-.389-.377-.389-.377-.776-.375-1.934-.426-3.703-.875-2.233-.567-4.642-2.534-4.642-5.625 0-2.211 1.27-3.025 1.27-5.834 0-1.892-.716-3.351-.716-3.351s1.651-.333 2.42-2.422c0 0 1.096 1.021 2.608 1.021 1.894 0 3.152-1.33 3.152-1.33zm0 1.06c-.632.465-1.737 1.08-3.152 1.08-.934 0-1.729-.315-2.29-.628A4.515 4.515 0 0 1 4.862 5.79c.224.67.485 1.708.485 2.908 0 2.313-.79 3.396-1.123 4.705l11.582-8.697c-.209.033-.427.05-.653.05-1.414 0-2.52-.615-3.152-1.08zm5.674.805L4.08 14.69c.065 2.008 1.362 3.472 2.844 4.233l11.828-8.883c-.061-.4-.098-.84-.098-1.34 0-1.2.26-2.237.485-2.908a4.438 4.438 0 0 1-1.465-1.309zm-1.666 2.153v3.398l1.8-1.351s-.06.433 0 1.164l-2.822 2.12V8.304c0-.518-.494-.532-.494-.532l1.516-1.136zm-1.871 1.404v4.565l-.975.73v-1.668l-1.121.842v1.67l-1.023.767v-3.662c0-.518-.495-.531-.495-.531l1.518-1.139V11.3l1.121-.842V8.77l.975-.73zm4.838 3.012L7.949 19.33c.053.014.105.029.158.042 1.401.357 3.116.54 3.633.836.117.085.26.236.26.236s.143-.15.26-.236c.517-.296 2.232-.48 3.633-.836 1.941-.493 4.03-2.216 4.03-4.84 0-1.307-.573-2.168-.948-3.482zm-8.852.002v4.564l-1.053.791-1.133-1.738v2.59l-.996.746v-3.662c0-.518-.494-.531-.494-.531l1.41-1.06L9.13 14.7v-2.898l.994-.748zm10.346 9.799a.818.818 0 1 0 0 1.637.818.818 0 0 0 0-1.637zm0 .175a.643.643 0 1 1 0 1.285.643.643 0 0 1 0-1.285zm-.336.176v.934h.176v-.38h.125l.177.38h.194l-.184-.395a.276.276 0 0 0 .184-.262.277.277 0 0 0-.278-.277h-.394zm.176.176h.218a.101.101 0 1 1 0 .203h-.218v-.203z" }) + ] + } + ); +}); + +exports.default = SiNhl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.d.ts new file mode 100644 index 000000000..6d947273b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNhl: IconType; +export { SiNhl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.mjs new file mode 100644 index 000000000..8e2aab284 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNhl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNhl = React.forwardRef(function SiNhl2({ title = "NHL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.455 0 4.61 2.314c-.262.72-.693 1.172-1.277 1.344l-1.914.565.812 1.843c.376.851.567 1.738.567 2.64 0 2.49-1.272 3.06-1.272 5.827 0 3.988 3.083 6.597 5.948 7.334 1.448.353 1.886.375 3.193.697L12 24l1.334-1.436c1.308-.322 1.744-.344 3.191-.697 2.865-.737 5.95-3.346 5.95-7.334 0-2.767-1.272-3.336-1.272-5.828 0-.9.191-1.788.567-2.639l.812-1.843-1.914-.565c-.585-.172-1.014-.624-1.277-1.344L18.545 0l-1.887 1.563c-.5.414-1.006.623-1.506.623-.668 0-1.429-.326-1.937-.829L12 .157l-1.215 1.2c-.508.503-1.269.829-1.937.829-.5 0-1.006-.21-1.506-.623L5.455 0zm.14.523 1.546 1.28c.508.42 1.09.697 1.707.697.827 0 1.646-.414 2.158-.92L12 .596l.996.984c.512.506 1.33.92 2.156.92.617 0 1.199-.276 1.707-.697l1.545-1.28.694 1.899c.298.817.796 1.335 1.48 1.537l1.572.463-.668 1.517a6.856 6.856 0 0 0-.591 2.766c0 2.591 1.271 3.108 1.271 5.828 0 3.643-2.711 6.257-5.713 7.03-1.484.375-2.177.413-3.283.722C13.022 22.436 12 23.54 12 23.54s-1.022-1.103-1.166-1.254c-1.106-.31-1.797-.347-3.281-.723-3.003-.772-5.715-3.386-5.715-7.029 0-2.72 1.271-3.237 1.271-5.828a6.87 6.87 0 0 0-.591-2.766L1.85 4.422l1.572-.463c.685-.202 1.183-.72 1.482-1.537L5.596.523zM12 1.607s-1.25 1.616-3.152 1.616c-1.475 0-2.93-1.498-2.93-1.498-.658 2.949-3.084 3.16-3.084 3.16s.988 1.746.988 3.814c0 2.654-1.27 3.406-1.27 5.834 0 2.675 1.833 5.482 5.178 6.328 1.59.402 2.687.504 3.495.795.103.097.775.826.775.826s.672-.729.775-.826c.808-.291 1.905-.393 3.495-.795 3.344-.846 5.177-3.653 5.177-6.328 0-2.428-1.267-3.18-1.267-5.834 0-2.068.986-3.814.986-3.814s-2.426-.211-3.084-3.16c0 0-1.455 1.498-2.93 1.498C13.251 3.223 12 1.607 12 1.607zm0 1.01s1.258 1.33 3.152 1.33c1.512 0 2.608-1.021 2.608-1.021.769 2.09 2.42 2.422 2.42 2.422s-.715 1.459-.715 3.351c0 2.809 1.27 3.623 1.27 5.834 0 3.091-2.41 5.058-4.643 5.625-1.769.45-2.925.5-3.701.875 0 0-.284.258-.391.377-.107-.119-.389-.377-.389-.377-.776-.375-1.934-.426-3.703-.875-2.233-.567-4.642-2.534-4.642-5.625 0-2.211 1.27-3.025 1.27-5.834 0-1.892-.716-3.351-.716-3.351s1.651-.333 2.42-2.422c0 0 1.096 1.021 2.608 1.021 1.894 0 3.152-1.33 3.152-1.33zm0 1.06c-.632.465-1.737 1.08-3.152 1.08-.934 0-1.729-.315-2.29-.628A4.515 4.515 0 0 1 4.862 5.79c.224.67.485 1.708.485 2.908 0 2.313-.79 3.396-1.123 4.705l11.582-8.697c-.209.033-.427.05-.653.05-1.414 0-2.52-.615-3.152-1.08zm5.674.805L4.08 14.69c.065 2.008 1.362 3.472 2.844 4.233l11.828-8.883c-.061-.4-.098-.84-.098-1.34 0-1.2.26-2.237.485-2.908a4.438 4.438 0 0 1-1.465-1.309zm-1.666 2.153v3.398l1.8-1.351s-.06.433 0 1.164l-2.822 2.12V8.304c0-.518-.494-.532-.494-.532l1.516-1.136zm-1.871 1.404v4.565l-.975.73v-1.668l-1.121.842v1.67l-1.023.767v-3.662c0-.518-.495-.531-.495-.531l1.518-1.139V11.3l1.121-.842V8.77l.975-.73zm4.838 3.012L7.949 19.33c.053.014.105.029.158.042 1.401.357 3.116.54 3.633.836.117.085.26.236.26.236s.143-.15.26-.236c.517-.296 2.232-.48 3.633-.836 1.941-.493 4.03-2.216 4.03-4.84 0-1.307-.573-2.168-.948-3.482zm-8.852.002v4.564l-1.053.791-1.133-1.738v2.59l-.996.746v-3.662c0-.518-.494-.531-.494-.531l1.41-1.06L9.13 14.7v-2.898l.994-.748zm10.346 9.799a.818.818 0 1 0 0 1.637.818.818 0 0 0 0-1.637zm0 .175a.643.643 0 1 1 0 1.285.643.643 0 0 1 0-1.285zm-.336.176v.934h.176v-.38h.125l.177.38h.194l-.184-.395a.276.276 0 0 0 .184-.262.277.277 0 0 0-.278-.277h-.394zm.176.176h.218a.101.101 0 1 1 0 .203h-.218v-.203z" }) + ] + } + ); +}); + +export { SiNhl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.cjs new file mode 100644 index 000000000..bfd045fe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CD"; +const SiNhost = React__namespace.forwardRef(function SiNhost2({ title = "Nhost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.1766 5.1563 12.79.3243a2.4582 2.4582 0 0 0-2.4408 0 2.4392 2.4392 0 0 0-1.219 2.107v.6308l-.5467-.3157a2.4582 2.4582 0 0 0-2.4408 0 2.44 2.44 0 0 0-1.219 2.1107v.63l-.5466-.315a2.4581 2.4581 0 0 0-2.4402 0A2.44 2.44 0 0 0 .7172 7.2799v15.1363a1.147 1.147 0 0 0 .6477 1.0296 1.1478 1.1478 0 0 0 1.2096-.1313l4.1584-3.273 6.4142 3.694c.356.2015.7916.2015 1.1475 0 .3535-.2045.5738-.5834.5738-.9916v-9.1068a4.2055 4.2055 0 0 0-2.1033-3.6345L10.662 8.7908V2.4337a.9096.9096 0 0 1 .4559-.7861.9102.9102 0 0 1 .9089.0005l8.3867 4.8297a2.6774 2.6774 0 0 1 1.3385 2.3123v11.3424a.9092.9092 0 0 1-.455.7855l-2.222 1.2802V11.212a4.2055 4.2055 0 0 0-2.1033-3.6337l-5.163-2.973v1.7613l4.3983 2.5332a2.6751 2.6751 0 0 1 1.3385 2.3122v11.6454c0 .406.2195.787.5737.9916.356.2013.7916.2013 1.1475 0l2.7966-1.611c.752-.4337 1.2196-1.2403 1.2196-2.1085V8.787a4.216 4.216 0 0 0-2.1062-3.6307Zm-9.18 6.167a2.6752 2.6752 0 0 1 1.3385 2.313v8.4491l-5.3104-3.0586 1.7047-1.3396a2.4156 2.4156 0 0 0 .9295-1.9108V10.555l1.3385.769zM9.1294 9.6718v6.1016a.9.9 0 0 1-.3467.7126L2.246 21.6277v-14.35a.9088.9088 0 0 1 .4553-.7863.9094.9094 0 0 1 .9088.0007l1.3136.7555v10.817l1.5288-1.2027V4.8556a.9087.9087 0 0 1 .4555-.7867.9094.9094 0 0 1 .9093.0012l1.3122.7547v3.0835l-1.528-.881v1.7628l1.5295.8817z" }) + ] + } + ); +}); + +exports.default = SiNhost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.d.ts new file mode 100644 index 000000000..a64a2e8d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CD"; +declare const SiNhost: IconType; +export { SiNhost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.mjs new file mode 100644 index 000000000..cf3b855c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNhost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CD"; +const SiNhost = React.forwardRef(function SiNhost2({ title = "Nhost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.1766 5.1563 12.79.3243a2.4582 2.4582 0 0 0-2.4408 0 2.4392 2.4392 0 0 0-1.219 2.107v.6308l-.5467-.3157a2.4582 2.4582 0 0 0-2.4408 0 2.44 2.44 0 0 0-1.219 2.1107v.63l-.5466-.315a2.4581 2.4581 0 0 0-2.4402 0A2.44 2.44 0 0 0 .7172 7.2799v15.1363a1.147 1.147 0 0 0 .6477 1.0296 1.1478 1.1478 0 0 0 1.2096-.1313l4.1584-3.273 6.4142 3.694c.356.2015.7916.2015 1.1475 0 .3535-.2045.5738-.5834.5738-.9916v-9.1068a4.2055 4.2055 0 0 0-2.1033-3.6345L10.662 8.7908V2.4337a.9096.9096 0 0 1 .4559-.7861.9102.9102 0 0 1 .9089.0005l8.3867 4.8297a2.6774 2.6774 0 0 1 1.3385 2.3123v11.3424a.9092.9092 0 0 1-.455.7855l-2.222 1.2802V11.212a4.2055 4.2055 0 0 0-2.1033-3.6337l-5.163-2.973v1.7613l4.3983 2.5332a2.6751 2.6751 0 0 1 1.3385 2.3122v11.6454c0 .406.2195.787.5737.9916.356.2013.7916.2013 1.1475 0l2.7966-1.611c.752-.4337 1.2196-1.2403 1.2196-2.1085V8.787a4.216 4.216 0 0 0-2.1062-3.6307Zm-9.18 6.167a2.6752 2.6752 0 0 1 1.3385 2.313v8.4491l-5.3104-3.0586 1.7047-1.3396a2.4156 2.4156 0 0 0 .9295-1.9108V10.555l1.3385.769zM9.1294 9.6718v6.1016a.9.9 0 0 1-.3467.7126L2.246 21.6277v-14.35a.9088.9088 0 0 1 .4553-.7863.9094.9094 0 0 1 .9088.0007l1.3136.7555v10.817l1.5288-1.2027V4.8556a.9087.9087 0 0 1 .4555-.7867.9094.9094 0 0 1 .9093.0012l1.3122.7547v3.0835l-1.528-.881v1.7628l1.5295.8817z" }) + ] + } + ); +}); + +export { SiNhost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.cjs new file mode 100644 index 000000000..9d522bf6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBC342"; +const SiNicehash = React__namespace.forwardRef(function SiNicehash2({ title = "NiceHash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24c6.627 0 12-5.373 12-12h-8a4 4 0 0 1-8 0H0c0 6.627 5.373 12 12 12zM8 4a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4Zm4-4h12v8H12Z" }) + ] + } + ); +}); + +exports.default = SiNicehash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.d.ts new file mode 100644 index 000000000..04b7d7fe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBC342"; +declare const SiNicehash: IconType; +export { SiNicehash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.mjs new file mode 100644 index 000000000..ab98c79c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNicehash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBC342"; +const SiNicehash = React.forwardRef(function SiNicehash2({ title = "NiceHash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24c6.627 0 12-5.373 12-12h-8a4 4 0 0 1-8 0H0c0 6.627 5.373 12 12 12zM8 4a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4Zm4-4h12v8H12Z" }) + ] + } + ); +}); + +export { SiNicehash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.cjs new file mode 100644 index 000000000..14108763a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231815"; +const SiNiconico = React__namespace.forwardRef(function SiNiconico2({ title = "niconico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.4787 7.534v12.1279A2.0213 2.0213 0 0 0 2.5 21.6832h2.3888l1.323 2.0948a.4778.4778 0 0 0 .4043.2205.4778.4778 0 0 0 .441-.2205l1.323-2.0948h6.9828l1.323 2.0948a.4778.4778 0 0 0 .441.2205c.1838 0 .3308-.0735.4043-.2205l1.323-2.0948h2.6462a2.0213 2.0213 0 0 0 2.0213-2.0213V7.5339a2.0213 2.0213 0 0 0-2.0213-1.9845h-7.681l4.4468-4.4469L17.1637 0l-5.1452 5.1452L6.8 0 5.6973 1.1025l4.4102 4.4102H2.5367a2.0213 2.0213 0 0 0-2.058 2.058z" }) + ] + } + ); +}); + +exports.default = SiNiconico; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.d.ts new file mode 100644 index 000000000..d8e5fb8fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231815"; +declare const SiNiconico: IconType; +export { SiNiconico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.mjs new file mode 100644 index 000000000..f54c880ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNiconico.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231815"; +const SiNiconico = React.forwardRef(function SiNiconico2({ title = "niconico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.4787 7.534v12.1279A2.0213 2.0213 0 0 0 2.5 21.6832h2.3888l1.323 2.0948a.4778.4778 0 0 0 .4043.2205.4778.4778 0 0 0 .441-.2205l1.323-2.0948h6.9828l1.323 2.0948a.4778.4778 0 0 0 .441.2205c.1838 0 .3308-.0735.4043-.2205l1.323-2.0948h2.6462a2.0213 2.0213 0 0 0 2.0213-2.0213V7.5339a2.0213 2.0213 0 0 0-2.0213-1.9845h-7.681l4.4468-4.4469L17.1637 0l-5.1452 5.1452L6.8 0 5.6973 1.1025l4.4102 4.4102H2.5367a2.0213 2.0213 0 0 0-2.058 2.058z" }) + ] + } + ); +}); + +export { SiNiconico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNike.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNike.cjs new file mode 100644 index 000000000..502a62849 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNike.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111111"; +const SiNike = React__namespace.forwardRef(function SiNike2({ title = "Nike", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 7.8L6.442 15.276c-1.456.616-2.679.925-3.668.925-1.12 0-1.933-.392-2.437-1.177-.317-.504-.41-1.143-.28-1.918.13-.775.476-1.6 1.036-2.478.467-.71 1.232-1.643 2.297-2.8a6.122 6.122 0 00-.784 1.848c-.28 1.195-.028 2.072.756 2.632.373.261.886.392 1.54.392.522 0 1.11-.084 1.764-.252L24 7.8z" }) + ] + } + ); +}); + +exports.default = SiNike; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNike.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNike.d.ts new file mode 100644 index 000000000..023fa9f4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNike.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111111"; +declare const SiNike: IconType; +export { SiNike as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNike.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNike.mjs new file mode 100644 index 000000000..f480bf075 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNike.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111111"; +const SiNike = React.forwardRef(function SiNike2({ title = "Nike", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 7.8L6.442 15.276c-1.456.616-2.679.925-3.668.925-1.12 0-1.933-.392-2.437-1.177-.317-.504-.41-1.143-.28-1.918.13-.775.476-1.6 1.036-2.478.467-.71 1.232-1.643 2.297-2.8a6.122 6.122 0 00-.784 1.848c-.28 1.195-.028 2.072.756 2.632.373.261.886.392 1.54.392.522 0 1.11-.084 1.764-.252L24 7.8z" }) + ] + } + ); +}); + +export { SiNike as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.cjs new file mode 100644 index 000000000..35189f795 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE100"; +const SiNikon = React__namespace.forwardRef(function SiNikon2({ title = "Nikon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.267 8.681c-.69 0-1.054.463-1.054.873 0 .144.032.653.949.653.762 0 1.057-.488 1.057-.854 0-.244-.2-.672-.952-.672zm-6.87.215L0 15.146h1.72c.194-1 .455-2.056.711-3.138l1.206 3.136H5.27L6.681 8.9H5l-.715 3.176-1.18-3.18Zm8.587.004L8.6 15.144h1.663l.558-2.375.703 2.375h1.705l-.707-2.508 1.715-2.08h-1.91l-1.38 1.664.743-3.32zm6.608 1.465c-2.582 0-2.962 2.01-3.034 2.379-.19.93.02 2.137 1.235 2.457.8.21 2.051.187 2.855-.47.736-.6 1.1-1.619 1.088-2.575-.012-.92-.79-1.791-2.144-1.791zm6.193.072c-.573.038-1.156.35-1.486.807.044-.188.088-.404.14-.658h-1.7l-.999 4.558h1.695l.563-2.586c.104-.476.488-.68.826-.591.146.04.35.15.281.548l-.574 2.63h1.674l.767-3.51a.96.96 0 0 0-.627-1.14 1.594 1.594 0 0 0-.56-.058zm-15.66.121-1.02 4.586h1.676l1.022-4.586zm9.23 1.104c.372-.002.472.218.44.426-.09.545-.245 1.081-.362 1.539-.082.254-.321.4-.601.4-.286 0-.458-.178-.432-.406.04-.384.286-1.357.356-1.549.12-.334.451-.408.6-.41z" }) + ] + } + ); +}); + +exports.default = SiNikon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.d.ts new file mode 100644 index 000000000..e05d98ec6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE100"; +declare const SiNikon: IconType; +export { SiNikon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.mjs new file mode 100644 index 000000000..c7d11a95c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNikon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE100"; +const SiNikon = React.forwardRef(function SiNikon2({ title = "Nikon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.267 8.681c-.69 0-1.054.463-1.054.873 0 .144.032.653.949.653.762 0 1.057-.488 1.057-.854 0-.244-.2-.672-.952-.672zm-6.87.215L0 15.146h1.72c.194-1 .455-2.056.711-3.138l1.206 3.136H5.27L6.681 8.9H5l-.715 3.176-1.18-3.18Zm8.587.004L8.6 15.144h1.663l.558-2.375.703 2.375h1.705l-.707-2.508 1.715-2.08h-1.91l-1.38 1.664.743-3.32zm6.608 1.465c-2.582 0-2.962 2.01-3.034 2.379-.19.93.02 2.137 1.235 2.457.8.21 2.051.187 2.855-.47.736-.6 1.1-1.619 1.088-2.575-.012-.92-.79-1.791-2.144-1.791zm6.193.072c-.573.038-1.156.35-1.486.807.044-.188.088-.404.14-.658h-1.7l-.999 4.558h1.695l.563-2.586c.104-.476.488-.68.826-.591.146.04.35.15.281.548l-.574 2.63h1.674l.767-3.51a.96.96 0 0 0-.627-1.14 1.594 1.594 0 0 0-.56-.058zm-15.66.121-1.02 4.586h1.676l1.022-4.586zm9.23 1.104c.372-.002.472.218.44.426-.09.545-.245 1.081-.362 1.539-.082.254-.321.4-.601.4-.286 0-.458-.178-.432-.406.04-.384.286-1.357.356-1.549.12-.334.451-.408.6-.41z" }) + ] + } + ); +}); + +export { SiNikon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNim.cjs new file mode 100644 index 000000000..f6e8a44b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE953"; +const SiNim = React__namespace.forwardRef(function SiNim2({ title = "Nim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.095 3.2s-.92.778-1.857 1.55c-.964-.032-2.856.199-3.88.598C5.412 4.708 4.582 4 4.582 4s-.709 1.305-1.154 2.07c-.662.377-1.325.8-1.917 1.36C.824 7.14.026 6.782 0 6.77c.911 1.967 1.524 3.936 3.19 5.12 2.654-4.483 14.983-4.07 17.691-.025 1.75-.977 2.43-3.078 3.119-5.018-.075.026-1.012.362-1.619.61-.363-.423-1.217-1.072-1.702-1.385a96.008 96.008 0 00-1.131-2.122s-.794.632-1.715 1.322c-1.243-.246-2.747-.544-4.012-.47A52.988 52.988 0 0112.095 3.2zM.942 10.95l2.189 5.67c3.801 5.367 13.508 5.74 17.74.105 1.001-2.415 2.352-5.808 2.352-5.808-1.086 1.72-2.852 2.909-3.94 3.549-.774.453-2.558.727-2.558.727l-4.684-2.597-4.71 2.545s-1.761-.303-2.558-.701c-1.608-.92-2.69-2.004-3.83-3.49z" }) + ] + } + ); +}); + +exports.default = SiNim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNim.d.ts new file mode 100644 index 000000000..814c027f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE953"; +declare const SiNim: IconType; +export { SiNim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNim.mjs new file mode 100644 index 000000000..48d7382ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE953"; +const SiNim = React.forwardRef(function SiNim2({ title = "Nim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.095 3.2s-.92.778-1.857 1.55c-.964-.032-2.856.199-3.88.598C5.412 4.708 4.582 4 4.582 4s-.709 1.305-1.154 2.07c-.662.377-1.325.8-1.917 1.36C.824 7.14.026 6.782 0 6.77c.911 1.967 1.524 3.936 3.19 5.12 2.654-4.483 14.983-4.07 17.691-.025 1.75-.977 2.43-3.078 3.119-5.018-.075.026-1.012.362-1.619.61-.363-.423-1.217-1.072-1.702-1.385a96.008 96.008 0 00-1.131-2.122s-.794.632-1.715 1.322c-1.243-.246-2.747-.544-4.012-.47A52.988 52.988 0 0112.095 3.2zM.942 10.95l2.189 5.67c3.801 5.367 13.508 5.74 17.74.105 1.001-2.415 2.352-5.808 2.352-5.808-1.086 1.72-2.852 2.909-3.94 3.549-.774.453-2.558.727-2.558.727l-4.684-2.597-4.71 2.545s-1.761-.303-2.558-.701c-1.608-.92-2.69-2.004-3.83-3.49z" }) + ] + } + ); +}); + +export { SiNim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.cjs new file mode 100644 index 000000000..7a468f6fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D55C44"; +const SiNiri = React__namespace.forwardRef(function SiNiri2({ title = "niri", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.23881 21.91267c0 1.04353-.5217 2.08705-4.17383 2.08705-3.65226 0-4.17395-1.04365-4.17395-2.08705 0-1.56521 1.04352-2.6086 4.17395-2.6086s4.17383 1.04339 4.17383 2.6086zM7.89103-.00038c2.08691 0 10.43483 6.26087 10.43483 11.47835 0 3.52136-1.65048 5.06209-3.09492 5.73623-1.09417.5108-1.39726-.17027-.78877-1.21866.409-.7044.75325-1.55688.75325-2.43065 0-1.56522-.52182-2.60874-1.56522-3.65214-1.04352-1.04352-2.38385-1.56521-3.13043-1.56521-1.04353 0-1.56522 3.06697-1.56522 4.69565 0 1.29764.3872 2.4663.77658 3.31301.3672.79877.05988 1.34726-.76363 1.04442-.89954-.33079-1.97832-.98377-2.6217-2.27064-1.04351-2.08679-.52182-5.09017-.52182-7.82597 0-4.17395 0-7.30426 2.08705-7.30426z" }) + ] + } + ); +}); + +exports.default = SiNiri; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.d.ts new file mode 100644 index 000000000..a2a3fe075 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D55C44"; +declare const SiNiri: IconType; +export { SiNiri as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.mjs new file mode 100644 index 000000000..af019b6be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNiri.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D55C44"; +const SiNiri = React.forwardRef(function SiNiri2({ title = "niri", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.23881 21.91267c0 1.04353-.5217 2.08705-4.17383 2.08705-3.65226 0-4.17395-1.04365-4.17395-2.08705 0-1.56521 1.04352-2.6086 4.17395-2.6086s4.17383 1.04339 4.17383 2.6086zM7.89103-.00038c2.08691 0 10.43483 6.26087 10.43483 11.47835 0 3.52136-1.65048 5.06209-3.09492 5.73623-1.09417.5108-1.39726-.17027-.78877-1.21866.409-.7044.75325-1.55688.75325-2.43065 0-1.56522-.52182-2.60874-1.56522-3.65214-1.04352-1.04352-2.38385-1.56521-3.13043-1.56521-1.04353 0-1.56522 3.06697-1.56522 4.69565 0 1.29764.3872 2.4663.77658 3.31301.3672.79877.05988 1.34726-.76363 1.04442-.89954-.33079-1.97832-.98377-2.6217-2.27064-1.04351-2.08679-.52182-5.09017-.52182-7.82597 0-4.17395 0-7.30426 2.08705-7.30426z" }) + ] + } + ); +}); + +export { SiNiri as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.cjs new file mode 100644 index 000000000..5597225d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C3002F"; +const SiNissan = React__namespace.forwardRef(function SiNissan2({ title = "Nissan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.576 14.955l-.01.028c-1.247 3.643-4.685 6.086-8.561 6.086-3.876 0-7.32-2.448-8.562-6.09l-.01-.029H.71v.329l1.133.133c.7.08.847.39 1.038.78l.048.096c1.638 3.495 5.204 5.752 9.08 5.752 3.877 0 7.443-2.257 9.081-5.747l.048-.095c.19-.39.338-.7 1.038-.781l1.134-.134v-.328zM3.443 9.012c1.247-3.643 4.686-6.09 8.562-6.09 3.876 0 7.319 2.447 8.562 6.09l.01.028h2.728v-.328l-1.134-.133c-.7-.081-.847-.39-1.038-.781l-.047-.096C19.448 4.217 15.88 1.96 12.005 1.96c-3.881 0-7.443 2.257-9.081 5.752l-.048.095c-.19.39-.338.7-1.038.781l-1.133.133v.329h2.724zm13.862 1.586l-1.743 2.795h.752l.31-.5h2.033l.31.5h.747l-1.743-2.795zm1.033 1.766h-1.395l.7-1.124zm2.81-1.066l2.071 2.095H24v-2.795h-.614v2.085l-2.062-2.085h-.795v2.795h.619zM0 13.393h.619v-2.095l2.076 2.095h.781v-2.795h-.619v2.085L.795 10.598H0zm4.843-2.795h.619v2.795h-.62zm4.486 2.204c-.02.005-.096.005-.124.005H6.743v.572h2.5c.019 0 .167 0 .195-.005.51-.048.743-.472.743-.843 0-.381-.243-.79-.705-.833-.09-.01-.166-.01-.2-.01H7.643a.83.83 0 0 1-.181-.014c-.129-.034-.176-.148-.176-.243 0-.086.047-.2.18-.238a.68.68 0 0 1 .172-.014h2.357v-.562H7.6c-.1 0-.176.004-.238.014a.792.792 0 0 0-.695.805c0 .343.214.743.685.81.086.009.205.009.258.009H9.2c.029 0 .1 0 .114.005.181.023.243.157.243.276a.262.262 0 0 1-.228.266zm4.657 0c-.02.005-.096.005-.129.005H11.4v.572h2.5c.019 0 .167 0 .195-.005.51-.048.743-.472.743-.843 0-.381-.243-.79-.705-.833-.09-.01-.166-.01-.2-.01H12.3a.83.83 0 0 1-.181-.014c-.129-.034-.176-.148-.176-.243 0-.086.047-.2.18-.238a.68.68 0 0 1 .172-.014h2.357v-.562h-2.395c-.1 0-.176.004-.238.014a.792.792 0 0 0-.695.805c0 .343.214.743.686.81.085.009.204.009.257.009h1.59c.029 0 .1 0 .114.005.181.023.243.157.243.276a.267.267 0 0 1-.228.266Z" }) + ] + } + ); +}); + +exports.default = SiNissan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.d.ts new file mode 100644 index 000000000..9e79596c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C3002F"; +declare const SiNissan: IconType; +export { SiNissan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.mjs new file mode 100644 index 000000000..d1e823e9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNissan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C3002F"; +const SiNissan = React.forwardRef(function SiNissan2({ title = "Nissan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.576 14.955l-.01.028c-1.247 3.643-4.685 6.086-8.561 6.086-3.876 0-7.32-2.448-8.562-6.09l-.01-.029H.71v.329l1.133.133c.7.08.847.39 1.038.78l.048.096c1.638 3.495 5.204 5.752 9.08 5.752 3.877 0 7.443-2.257 9.081-5.747l.048-.095c.19-.39.338-.7 1.038-.781l1.134-.134v-.328zM3.443 9.012c1.247-3.643 4.686-6.09 8.562-6.09 3.876 0 7.319 2.447 8.562 6.09l.01.028h2.728v-.328l-1.134-.133c-.7-.081-.847-.39-1.038-.781l-.047-.096C19.448 4.217 15.88 1.96 12.005 1.96c-3.881 0-7.443 2.257-9.081 5.752l-.048.095c-.19.39-.338.7-1.038.781l-1.133.133v.329h2.724zm13.862 1.586l-1.743 2.795h.752l.31-.5h2.033l.31.5h.747l-1.743-2.795zm1.033 1.766h-1.395l.7-1.124zm2.81-1.066l2.071 2.095H24v-2.795h-.614v2.085l-2.062-2.085h-.795v2.795h.619zM0 13.393h.619v-2.095l2.076 2.095h.781v-2.795h-.619v2.085L.795 10.598H0zm4.843-2.795h.619v2.795h-.62zm4.486 2.204c-.02.005-.096.005-.124.005H6.743v.572h2.5c.019 0 .167 0 .195-.005.51-.048.743-.472.743-.843 0-.381-.243-.79-.705-.833-.09-.01-.166-.01-.2-.01H7.643a.83.83 0 0 1-.181-.014c-.129-.034-.176-.148-.176-.243 0-.086.047-.2.18-.238a.68.68 0 0 1 .172-.014h2.357v-.562H7.6c-.1 0-.176.004-.238.014a.792.792 0 0 0-.695.805c0 .343.214.743.685.81.086.009.205.009.258.009H9.2c.029 0 .1 0 .114.005.181.023.243.157.243.276a.262.262 0 0 1-.228.266zm4.657 0c-.02.005-.096.005-.129.005H11.4v.572h2.5c.019 0 .167 0 .195-.005.51-.048.743-.472.743-.843 0-.381-.243-.79-.705-.833-.09-.01-.166-.01-.2-.01H12.3a.83.83 0 0 1-.181-.014c-.129-.034-.176-.148-.176-.243 0-.086.047-.2.18-.238a.68.68 0 0 1 .172-.014h2.357v-.562h-2.395c-.1 0-.176.004-.238.014a.792.792 0 0 0-.695.805c0 .343.214.743.686.81.085.009.204.009.257.009h1.59c.029 0 .1 0 .114.005.181.023.243.157.243.276a.267.267 0 0 1-.228.266Z" }) + ] + } + ); +}); + +export { SiNissan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.cjs new file mode 100644 index 000000000..f45452e5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5277C3"; +const SiNixos = React__namespace.forwardRef(function SiNixos2({ title = "NixOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.352 1.592l-1.364.002L5.32 2.75l1.557 2.713-3.137-.008-1.32 2.34H14.11l-1.353-2.332-3.192-.006-2.214-3.865zm6.175 0l-2.687.025 5.846 10.127 1.341-2.34-1.59-2.765 2.24-3.85-.683-1.182h-1.336l-1.57 2.705-1.56-2.72zm6.887 4.195l-5.846 10.125 2.696-.008 1.601-2.76 4.453.016.682-1.183-.666-1.157-3.13-.008L21.778 8.1l-1.365-2.313zM9.432 8.086l-2.696.008-1.601 2.76-4.453-.016L0 12.02l.666 1.157 3.13.008-1.575 2.71 1.365 2.315L9.432 8.086zM7.33 12.25l-.006.01-.002-.004-1.342 2.34 1.59 2.765-2.24 3.85.684 1.182H7.35l.004-.006h.001l1.567-2.698 1.558 2.72 2.688-.026-.004-.006h.01L7.33 12.25zm2.55 3.93l1.354 2.332 3.192.006 2.215 3.865 1.363-.002.668-1.156-1.557-2.713 3.137.008 1.32-2.34H9.881Z" }) + ] + } + ); +}); + +exports.default = SiNixos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.d.ts new file mode 100644 index 000000000..0ab06cdcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5277C3"; +declare const SiNixos: IconType; +export { SiNixos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.mjs new file mode 100644 index 000000000..5d5ce2869 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNixos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5277C3"; +const SiNixos = React.forwardRef(function SiNixos2({ title = "NixOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.352 1.592l-1.364.002L5.32 2.75l1.557 2.713-3.137-.008-1.32 2.34H14.11l-1.353-2.332-3.192-.006-2.214-3.865zm6.175 0l-2.687.025 5.846 10.127 1.341-2.34-1.59-2.765 2.24-3.85-.683-1.182h-1.336l-1.57 2.705-1.56-2.72zm6.887 4.195l-5.846 10.125 2.696-.008 1.601-2.76 4.453.016.682-1.183-.666-1.157-3.13-.008L21.778 8.1l-1.365-2.313zM9.432 8.086l-2.696.008-1.601 2.76-4.453-.016L0 12.02l.666 1.157 3.13.008-1.575 2.71 1.365 2.315L9.432 8.086zM7.33 12.25l-.006.01-.002-.004-1.342 2.34 1.59 2.765-2.24 3.85.684 1.182H7.35l.004-.006h.001l1.567-2.698 1.558 2.72 2.688-.026-.004-.006h.01L7.33 12.25zm2.55 3.93l1.354 2.332 3.192.006 2.215 3.865 1.363-.002.668-1.156-1.557-2.713 3.137.008 1.32-2.34H9.881Z" }) + ] + } + ); +}); + +export { SiNixos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.cjs new file mode 100644 index 000000000..ff27853cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNobaralinux = React__namespace.forwardRef(function SiNobaralinux2({ title = "Nobara Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.808 11.808v8.281a3.542 3.542 0 0 1-3.542 3.527h-.46a3.543 3.543 0 0 1-3.083-3.513v-7.282l3.543-1.013-3.66-1.045a4.724 4.724 0 0 0-9.33 1.045v2.362a2.362 2.362 0 0 0 2.362 2.362 3.543 3.543 0 0 1 3.543 3.542V24a3.539 3.539 0 0 0-3.542-3.542 3.537 3.537 0 0 0-3.063 1.76 3.54 3.54 0 0 1-2.382 1.398h-.46A3.542 3.542 0 0 1 .192 20.09V3.543a3.542 3.542 0 0 1 6.323-2.194A11.756 11.756 0 0 1 12 0c6.521 0 11.808 5.287 11.808 11.808zm-9.446 0A2.359 2.359 0 0 1 12 14.17a2.362 2.362 0 1 1 2.362-2.362z" }) + ] + } + ); +}); + +exports.default = SiNobaralinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.d.ts new file mode 100644 index 000000000..982af037f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNobaralinux: IconType; +export { SiNobaralinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.mjs new file mode 100644 index 000000000..65bf1419e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNobaralinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNobaralinux = React.forwardRef(function SiNobaralinux2({ title = "Nobara Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.808 11.808v8.281a3.542 3.542 0 0 1-3.542 3.527h-.46a3.543 3.543 0 0 1-3.083-3.513v-7.282l3.543-1.013-3.66-1.045a4.724 4.724 0 0 0-9.33 1.045v2.362a2.362 2.362 0 0 0 2.362 2.362 3.543 3.543 0 0 1 3.543 3.542V24a3.539 3.539 0 0 0-3.542-3.542 3.537 3.537 0 0 0-3.063 1.76 3.54 3.54 0 0 1-2.382 1.398h-.46A3.542 3.542 0 0 1 .192 20.09V3.543a3.542 3.542 0 0 1 6.323-2.194A11.756 11.756 0 0 1 12 0c6.521 0 11.808 5.287 11.808 11.808zm-9.446 0A2.359 2.359 0 0 1 12 14.17a2.362 2.362 0 1 1 2.362-2.362z" }) + ] + } + ); +}); + +export { SiNobaralinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.cjs new file mode 100644 index 000000000..b88db1f6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E5EBC"; +const SiNodebb = React__namespace.forwardRef(function SiNodebb2({ title = "NodeBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.908 4.263c-3.439 0-5.4 1.68-5.4 4.156 0 1.525.793 2.763 2.093 3.316C1.014 12.265 0 13.569 0 15.36c0 2.675 1.984 4.377 5.6 4.377h6.053c0-1.269.03-2.557.031-4.44V4.263zm6.408 0v11.034c.001 1.883.031 3.171.031 4.44H18.4c3.616 0 5.6-1.702 5.6-4.377 0-1.79-1.014-3.095-2.601-3.625 1.3-.553 2.094-1.79 2.094-3.316 0-2.476-1.962-4.156-5.401-4.156zM6.085 6.74h2.513v3.935H6.085c-1.61 0-2.447-.73-2.447-1.968S4.475 6.74 6.085 6.74zm9.317 0h2.513c1.61 0 2.447.73 2.447 1.967 0 1.238-.837 1.968-2.447 1.968h-2.513zm-9.56 6.366h2.734v1.923c0 1.68-.375 2.233-1.521 2.233H5.622c-1.654 0-2.492-.707-2.492-2.122 0-1.348.904-2.034 2.712-2.034zm9.582 0h2.734c1.808 0 2.712.686 2.712 2.034 0 1.415-.838 2.122-2.492 2.122h-1.433c-1.146 0-1.52-.553-1.52-2.233z" }) + ] + } + ); +}); + +exports.default = SiNodebb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.d.ts new file mode 100644 index 000000000..a02faa0c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E5EBC"; +declare const SiNodebb: IconType; +export { SiNodebb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.mjs new file mode 100644 index 000000000..8f00cc300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodebb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E5EBC"; +const SiNodebb = React.forwardRef(function SiNodebb2({ title = "NodeBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.908 4.263c-3.439 0-5.4 1.68-5.4 4.156 0 1.525.793 2.763 2.093 3.316C1.014 12.265 0 13.569 0 15.36c0 2.675 1.984 4.377 5.6 4.377h6.053c0-1.269.03-2.557.031-4.44V4.263zm6.408 0v11.034c.001 1.883.031 3.171.031 4.44H18.4c3.616 0 5.6-1.702 5.6-4.377 0-1.79-1.014-3.095-2.601-3.625 1.3-.553 2.094-1.79 2.094-3.316 0-2.476-1.962-4.156-5.401-4.156zM6.085 6.74h2.513v3.935H6.085c-1.61 0-2.447-.73-2.447-1.968S4.475 6.74 6.085 6.74zm9.317 0h2.513c1.61 0 2.447.73 2.447 1.967 0 1.238-.837 1.968-2.447 1.968h-2.513zm-9.56 6.366h2.734v1.923c0 1.68-.375 2.233-1.521 2.233H5.622c-1.654 0-2.492-.707-2.492-2.122 0-1.348.904-2.034 2.712-2.034zm9.582 0h2.734c1.808 0 2.712.686 2.712 2.034 0 1.415-.838 2.122-2.492 2.122h-1.433c-1.146 0-1.52-.553-1.52-2.233z" }) + ] + } + ); +}); + +export { SiNodebb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.cjs new file mode 100644 index 000000000..a51683e61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5FA04E"; +const SiNodedotjs = React__namespace.forwardRef(function SiNodedotjs2({ title = "Node.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.998,24c-0.321,0-0.641-0.084-0.922-0.247l-2.936-1.737c-0.438-0.245-0.224-0.332-0.08-0.383 c0.585-0.203,0.703-0.25,1.328-0.604c0.065-0.037,0.151-0.023,0.218,0.017l2.256,1.339c0.082,0.045,0.197,0.045,0.272,0l8.795-5.076 c0.082-0.047,0.134-0.141,0.134-0.238V6.921c0-0.099-0.053-0.192-0.137-0.242l-8.791-5.072c-0.081-0.047-0.189-0.047-0.271,0 L3.075,6.68C2.99,6.729,2.936,6.825,2.936,6.921v10.15c0,0.097,0.054,0.189,0.139,0.235l2.409,1.392 c1.307,0.654,2.108-0.116,2.108-0.89V7.787c0-0.142,0.114-0.253,0.256-0.253h1.115c0.139,0,0.255,0.112,0.255,0.253v10.021 c0,1.745-0.95,2.745-2.604,2.745c-0.508,0-0.909,0-2.026-0.551L2.28,18.675c-0.57-0.329-0.922-0.945-0.922-1.604V6.921 c0-0.659,0.353-1.275,0.922-1.603l8.795-5.082c0.557-0.315,1.296-0.315,1.848,0l8.794,5.082c0.57,0.329,0.924,0.944,0.924,1.603 v10.15c0,0.659-0.354,1.273-0.924,1.604l-8.794,5.078C12.643,23.916,12.324,24,11.998,24z M19.099,13.993 c0-1.9-1.284-2.406-3.987-2.763c-2.731-0.361-3.009-0.548-3.009-1.187c0-0.528,0.235-1.233,2.258-1.233 c1.807,0,2.473,0.389,2.747,1.607c0.024,0.115,0.129,0.199,0.247,0.199h1.141c0.071,0,0.138-0.031,0.186-0.081 c0.048-0.054,0.074-0.123,0.067-0.196c-0.177-2.098-1.571-3.076-4.388-3.076c-2.508,0-4.004,1.058-4.004,2.833 c0,1.925,1.488,2.457,3.895,2.695c2.88,0.282,3.103,0.703,3.103,1.269c0,0.983-0.789,1.402-2.642,1.402 c-2.327,0-2.839-0.584-3.011-1.742c-0.02-0.124-0.126-0.215-0.253-0.215h-1.137c-0.141,0-0.254,0.112-0.254,0.253 c0,1.482,0.806,3.248,4.655,3.248C17.501,17.007,19.099,15.91,19.099,13.993z" }) + ] + } + ); +}); + +exports.default = SiNodedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.d.ts new file mode 100644 index 000000000..4b6589897 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5FA04E"; +declare const SiNodedotjs: IconType; +export { SiNodedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.mjs new file mode 100644 index 000000000..ec45e3964 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5FA04E"; +const SiNodedotjs = React.forwardRef(function SiNodedotjs2({ title = "Node.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.998,24c-0.321,0-0.641-0.084-0.922-0.247l-2.936-1.737c-0.438-0.245-0.224-0.332-0.08-0.383 c0.585-0.203,0.703-0.25,1.328-0.604c0.065-0.037,0.151-0.023,0.218,0.017l2.256,1.339c0.082,0.045,0.197,0.045,0.272,0l8.795-5.076 c0.082-0.047,0.134-0.141,0.134-0.238V6.921c0-0.099-0.053-0.192-0.137-0.242l-8.791-5.072c-0.081-0.047-0.189-0.047-0.271,0 L3.075,6.68C2.99,6.729,2.936,6.825,2.936,6.921v10.15c0,0.097,0.054,0.189,0.139,0.235l2.409,1.392 c1.307,0.654,2.108-0.116,2.108-0.89V7.787c0-0.142,0.114-0.253,0.256-0.253h1.115c0.139,0,0.255,0.112,0.255,0.253v10.021 c0,1.745-0.95,2.745-2.604,2.745c-0.508,0-0.909,0-2.026-0.551L2.28,18.675c-0.57-0.329-0.922-0.945-0.922-1.604V6.921 c0-0.659,0.353-1.275,0.922-1.603l8.795-5.082c0.557-0.315,1.296-0.315,1.848,0l8.794,5.082c0.57,0.329,0.924,0.944,0.924,1.603 v10.15c0,0.659-0.354,1.273-0.924,1.604l-8.794,5.078C12.643,23.916,12.324,24,11.998,24z M19.099,13.993 c0-1.9-1.284-2.406-3.987-2.763c-2.731-0.361-3.009-0.548-3.009-1.187c0-0.528,0.235-1.233,2.258-1.233 c1.807,0,2.473,0.389,2.747,1.607c0.024,0.115,0.129,0.199,0.247,0.199h1.141c0.071,0,0.138-0.031,0.186-0.081 c0.048-0.054,0.074-0.123,0.067-0.196c-0.177-2.098-1.571-3.076-4.388-3.076c-2.508,0-4.004,1.058-4.004,2.833 c0,1.925,1.488,2.457,3.895,2.695c2.88,0.282,3.103,0.703,3.103,1.269c0,0.983-0.789,1.402-2.642,1.402 c-2.327,0-2.839-0.584-3.011-1.742c-0.02-0.124-0.126-0.215-0.253-0.215h-1.137c-0.141,0-0.254,0.112-0.254,0.253 c0,1.482,0.806,3.248,4.655,3.248C17.501,17.007,19.099,15.91,19.099,13.993z" }) + ] + } + ); +}); + +export { SiNodedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.cjs new file mode 100644 index 000000000..4806bc8ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNodegui = React__namespace.forwardRef(function SiNodegui2({ title = "NodeGui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.493 0c-.222.074-.438.142-.652.218-1.282.457-2.502 1.038-3.626 1.81-.777.535-1.48 1.151-2.043 1.915q-.389.524-.646 1.123c-.013.031-.041.066-.071.077-6.645 4.987.731.036-3.017 3.114-.729.616-1.376 1.304-1.863 2.13-.325.55-.565 1.131-.64 1.772-.012.089-.012.179-.016.268.529-.498 1.14-.971 1.722-1.19l-.033.072c-.072.151-.15.3-.215.453-.285.679-.412 1.381-.309 2.116.855 2.987 3.537 5.188 5.25 7.404.01.014.022.025.046.05.081-.78-.091-1.496-.38-2.194 1.484 1.278 2.243 2.9 2.305 4.862.018-.01.032-.015.041-.024.58-.55 1.141-1.117 1.607-1.77.376-.528.686-1.088.85-1.72q.122-.462.104-.94a.12.12 0 0 1 .025-.074c.561-.577 1.205-1.02 1.995-1.222.571-.146 1.143-.131 1.716-.007.844.183 1.689.356 2.53.55.224.05.42.03.632-.047 1.052-.383 2.026-.9 2.867-1.65.622-.552 1.105-1.202 1.396-1.988.028-.076.014-.107-.05-.15-1.578-1.04-3.154-2.085-4.732-3.126-.077-.05-.1-.108-.095-.194a.68.68 0 0 1 .353-.563c.131-.078.275-.135.424-.207-1.17-1.338-2.396-2.626-3.761-3.78q.14-.31.274-.62c.397-.924.746-1.865.976-2.846.098-.42.168-.844.189-1.276v-.094c-1.008.28-1.976.621-2.875 1.176.007-.12.012-.23.02-.338.04-.565.038-1.129-.015-1.693A6.5 6.5 0 0 0 13.53.102zm-.588 1.122c.004.023.007.032.007.041.008.39.03.78.022 1.17a9.5 9.5 0 0 1-.369 2.449c-.144.503-.33.989-.59 1.445-.03.052-.063.086-.123.1-.196.05-.39.108-.588.155-.154.035-.311.058-.489.09-.034-.208-.072-.402-.097-.596a1.4 1.4 0 0 1 .07-.577c-.342.299-.646.62-.701 1.1-.173-1.068.039-2.056.607-2.974-.896.744-1.603 1.618-1.906 2.774a3 3 0 0 1-.054-.325 3.04 3.04 0 0 1 .282-1.604c.289-.62.724-1.127 1.23-1.577.691-.615 1.47-1.094 2.302-1.491.13-.062.26-.118.396-.18Zm-.03 8.198a5 5 0 0 1 .665.03 4.6 4.6 0 0 1 2.195.823c.661.468 1.166 1.076 1.572 1.772.02.033.048.066.08.085l2.257 1.365q.67.406 1.34.807c.043.026.057.05.046.103a3 3 0 0 0-.042.293c-.042.433-.02.86.115 1.277.086.263.227.496.402.71q-.01.017-.02.027c-.123.109-.244.222-.372.325-.77.615-1.634 1.058-2.56 1.387a.34.34 0 0 1-.242-.002 14 14 0 0 0-1.854-.524 14 14 0 0 0-2.87-.318c-.393 0-.786.02-1.178.038-.15.006-.299.029-.448.044.463.102.931.173 1.392.362a4.8 4.8 0 0 0-1.533.973l-.023-.082c-.07-.234-.13-.473-.214-.703-.303-.832-.752-1.587-1.26-2.307-.332-.473-.667-.943-.93-1.46l-.133-.264c-.11.12-.201.466-.237.87-.075-.184-.15-.367-.214-.555-.199-.576-.33-1.164-.302-1.778.024-.55.187-1.05.535-1.482a2.9 2.9 0 0 1 1.062-.806c.752-.351 1.553-.5 2.375-.554q.223-.013.447-.02v-.011l-1.003-.297c.015-.012.018-.017.023-.018l.081-.018q.423-.085.849-.093z" }) + ] + } + ); +}); + +exports.default = SiNodegui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.d.ts new file mode 100644 index 000000000..fbebb112f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNodegui: IconType; +export { SiNodegui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.mjs new file mode 100644 index 000000000..7af5ed7a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodegui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNodegui = React.forwardRef(function SiNodegui2({ title = "NodeGui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.493 0c-.222.074-.438.142-.652.218-1.282.457-2.502 1.038-3.626 1.81-.777.535-1.48 1.151-2.043 1.915q-.389.524-.646 1.123c-.013.031-.041.066-.071.077-6.645 4.987.731.036-3.017 3.114-.729.616-1.376 1.304-1.863 2.13-.325.55-.565 1.131-.64 1.772-.012.089-.012.179-.016.268.529-.498 1.14-.971 1.722-1.19l-.033.072c-.072.151-.15.3-.215.453-.285.679-.412 1.381-.309 2.116.855 2.987 3.537 5.188 5.25 7.404.01.014.022.025.046.05.081-.78-.091-1.496-.38-2.194 1.484 1.278 2.243 2.9 2.305 4.862.018-.01.032-.015.041-.024.58-.55 1.141-1.117 1.607-1.77.376-.528.686-1.088.85-1.72q.122-.462.104-.94a.12.12 0 0 1 .025-.074c.561-.577 1.205-1.02 1.995-1.222.571-.146 1.143-.131 1.716-.007.844.183 1.689.356 2.53.55.224.05.42.03.632-.047 1.052-.383 2.026-.9 2.867-1.65.622-.552 1.105-1.202 1.396-1.988.028-.076.014-.107-.05-.15-1.578-1.04-3.154-2.085-4.732-3.126-.077-.05-.1-.108-.095-.194a.68.68 0 0 1 .353-.563c.131-.078.275-.135.424-.207-1.17-1.338-2.396-2.626-3.761-3.78q.14-.31.274-.62c.397-.924.746-1.865.976-2.846.098-.42.168-.844.189-1.276v-.094c-1.008.28-1.976.621-2.875 1.176.007-.12.012-.23.02-.338.04-.565.038-1.129-.015-1.693A6.5 6.5 0 0 0 13.53.102zm-.588 1.122c.004.023.007.032.007.041.008.39.03.78.022 1.17a9.5 9.5 0 0 1-.369 2.449c-.144.503-.33.989-.59 1.445-.03.052-.063.086-.123.1-.196.05-.39.108-.588.155-.154.035-.311.058-.489.09-.034-.208-.072-.402-.097-.596a1.4 1.4 0 0 1 .07-.577c-.342.299-.646.62-.701 1.1-.173-1.068.039-2.056.607-2.974-.896.744-1.603 1.618-1.906 2.774a3 3 0 0 1-.054-.325 3.04 3.04 0 0 1 .282-1.604c.289-.62.724-1.127 1.23-1.577.691-.615 1.47-1.094 2.302-1.491.13-.062.26-.118.396-.18Zm-.03 8.198a5 5 0 0 1 .665.03 4.6 4.6 0 0 1 2.195.823c.661.468 1.166 1.076 1.572 1.772.02.033.048.066.08.085l2.257 1.365q.67.406 1.34.807c.043.026.057.05.046.103a3 3 0 0 0-.042.293c-.042.433-.02.86.115 1.277.086.263.227.496.402.71q-.01.017-.02.027c-.123.109-.244.222-.372.325-.77.615-1.634 1.058-2.56 1.387a.34.34 0 0 1-.242-.002 14 14 0 0 0-1.854-.524 14 14 0 0 0-2.87-.318c-.393 0-.786.02-1.178.038-.15.006-.299.029-.448.044.463.102.931.173 1.392.362a4.8 4.8 0 0 0-1.533.973l-.023-.082c-.07-.234-.13-.473-.214-.703-.303-.832-.752-1.587-1.26-2.307-.332-.473-.667-.943-.93-1.46l-.133-.264c-.11.12-.201.466-.237.87-.075-.184-.15-.367-.214-.555-.199-.576-.33-1.164-.302-1.778.024-.55.187-1.05.535-1.482a2.9 2.9 0 0 1 1.062-.806c.752-.351 1.553-.5 2.375-.554q.223-.013.447-.02v-.011l-1.003-.297c.015-.012.018-.017.023-.018l.081-.018q.423-.085.849-.093z" }) + ] + } + ); +}); + +export { SiNodegui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.cjs new file mode 100644 index 000000000..8cdd326e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#76D04B"; +const SiNodemon = React__namespace.forwardRef(function SiNodemon2({ title = "Nodemon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.33 7.851l-.716-.398c1.101-1.569 1.758-3.927.934-7.453 0 0-1.857 5.029-5.59 4.863l-4.37-2.431a1.171 1.171 0 0 0-.536-.15h-.101a1.183 1.183 0 0 0-.538.15L7.042 4.863C3.309 5.03 1.452 0 1.452 0c-.825 3.526-.166 5.884.934 7.453l-.716.398a1.133 1.133 0 0 0-.589.988l.022 14.591c0 .203.109.392.294.491a.58.58 0 0 0 .584 0l5.79-3.204c.366-.211.589-.582.589-.987v-6.817c0-.406.223-.783.588-.984l2.465-1.372a1.19 1.19 0 0 1 .59-.154c.2 0 .407.05.585.154l2.465 1.372c.365.201.588.578.588.984v6.817c0 .405.226.779.59.987l5.788 3.204a.59.59 0 0 0 .589 0 .564.564 0 0 0 .292-.491l.019-14.591a1.129 1.129 0 0 0-.589-.988z" }) + ] + } + ); +}); + +exports.default = SiNodemon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.d.ts new file mode 100644 index 000000000..33c49b16f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#76D04B"; +declare const SiNodemon: IconType; +export { SiNodemon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.mjs new file mode 100644 index 000000000..a6ddb6cc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodemon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#76D04B"; +const SiNodemon = React.forwardRef(function SiNodemon2({ title = "Nodemon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.33 7.851l-.716-.398c1.101-1.569 1.758-3.927.934-7.453 0 0-1.857 5.029-5.59 4.863l-4.37-2.431a1.171 1.171 0 0 0-.536-.15h-.101a1.183 1.183 0 0 0-.538.15L7.042 4.863C3.309 5.03 1.452 0 1.452 0c-.825 3.526-.166 5.884.934 7.453l-.716.398a1.133 1.133 0 0 0-.589.988l.022 14.591c0 .203.109.392.294.491a.58.58 0 0 0 .584 0l5.79-3.204c.366-.211.589-.582.589-.987v-6.817c0-.406.223-.783.588-.984l2.465-1.372a1.19 1.19 0 0 1 .59-.154c.2 0 .407.05.585.154l2.465 1.372c.365.201.588.578.588.984v6.817c0 .405.226.779.59.987l5.788 3.204a.59.59 0 0 0 .589 0 .564.564 0 0 0 .292-.491l.019-14.591a1.129 1.129 0 0 0-.589-.988z" }) + ] + } + ); +}); + +export { SiNodemon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.cjs new file mode 100644 index 000000000..7a85b8acb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8F0000"; +const SiNodered = React__namespace.forwardRef(function SiNodered2({ title = "Node-RED", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 0C1.338 0 0 1.338 0 3v6.107h2.858c1.092 0 1.97.868 1.964 1.96v.021c.812-.095 1.312-.352 1.674-.683.416-.382.69-.91 1.016-1.499.325-.59.71-1.244 1.408-1.723.575-.395 1.355-.644 2.384-.686v-.45c0-1.092.88-1.976 1.972-1.976h7.893c1.091 0 1.974.884 1.974 1.976v1.942c0 1.091-.883 2.029-1.974 2.029h-7.893c-1.092 0-1.972-.938-1.972-2.03v-.453c-.853.037-1.408.236-1.798.504-.48.33-.774.802-1.086 1.368-.312.565-.63 1.22-1.222 1.763l-.077.069c3.071.415 4.465 1.555 5.651 2.593 1.39 1.215 2.476 2.275 6.3 2.288v-.46c0-1.092.894-1.946 1.986-1.946H24V3c0-1.662-1.338-3-3-3zm10.276 5.41c-.369 0-.687.268-.687.637v1.942c0 .368.318.636.687.636h7.892a.614.614 0 0 0 .635-.636V6.047a.614.614 0 0 0-.635-.636zM0 10.448v3.267h2.858a.696.696 0 0 0 .678-.69v-1.942c0-.368-.31-.635-.678-.635zm4.821 1.67v.907A1.965 1.965 0 0 1 2.858 15H0v6c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3v-1.393h-2.942c-1.092 0-1.986-.913-1.986-2.005v-.445c-4.046-.032-5.598-1.333-6.983-2.544-1.437-1.257-2.751-2.431-7.268-2.496zM21.058 15a.644.644 0 0 0-.647.66v1.942c0 .368.278.612.647.612H24V15z" }) + ] + } + ); +}); + +exports.default = SiNodered; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.d.ts new file mode 100644 index 000000000..914f0dd25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8F0000"; +declare const SiNodered: IconType; +export { SiNodered as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.mjs new file mode 100644 index 000000000..5d5b8859c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNodered.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8F0000"; +const SiNodered = React.forwardRef(function SiNodered2({ title = "Node-RED", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3 0C1.338 0 0 1.338 0 3v6.107h2.858c1.092 0 1.97.868 1.964 1.96v.021c.812-.095 1.312-.352 1.674-.683.416-.382.69-.91 1.016-1.499.325-.59.71-1.244 1.408-1.723.575-.395 1.355-.644 2.384-.686v-.45c0-1.092.88-1.976 1.972-1.976h7.893c1.091 0 1.974.884 1.974 1.976v1.942c0 1.091-.883 2.029-1.974 2.029h-7.893c-1.092 0-1.972-.938-1.972-2.03v-.453c-.853.037-1.408.236-1.798.504-.48.33-.774.802-1.086 1.368-.312.565-.63 1.22-1.222 1.763l-.077.069c3.071.415 4.465 1.555 5.651 2.593 1.39 1.215 2.476 2.275 6.3 2.288v-.46c0-1.092.894-1.946 1.986-1.946H24V3c0-1.662-1.338-3-3-3zm10.276 5.41c-.369 0-.687.268-.687.637v1.942c0 .368.318.636.687.636h7.892a.614.614 0 0 0 .635-.636V6.047a.614.614 0 0 0-.635-.636zM0 10.448v3.267h2.858a.696.696 0 0 0 .678-.69v-1.942c0-.368-.31-.635-.678-.635zm4.821 1.67v.907A1.965 1.965 0 0 1 2.858 15H0v6c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3v-1.393h-2.942c-1.092 0-1.986-.913-1.986-2.005v-.445c-4.046-.032-5.598-1.333-6.983-2.544-1.437-1.257-2.751-2.431-7.268-2.496zM21.058 15a.644.644 0 0 0-.647.66v1.942c0 .368.278.612.647.612H24V15z" }) + ] + } + ); +}); + +export { SiNodered as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.cjs new file mode 100644 index 000000000..4a73110a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005AFF"; +const SiNokia = React__namespace.forwardRef(function SiNokia2({ title = "Nokia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.59 9.348v5.304h.796V9.348Zm-8.497-.09c-1.55 0-2.752 1.127-2.752 2.742 0 1.687 1.202 2.742 2.752 2.742 1.55 0 2.754-1.055 2.751-2.742a2.72 2.72 0 0 0-2.751-2.742ZM10.05 12c0 1.195-.876 1.987-1.957 1.987-1.082 0-1.958-.792-1.958-1.987 0-1.174.876-1.987 1.958-1.987 1.08 0 1.957.813 1.957 1.987zM0 9.176v5.476h.812v-3.619l4.218 3.79v-1.135zM11.442 12l2.952 2.652h1.184L12.622 12l2.956-2.652h-1.184ZM24 14.652h-.875l-.64-1.175h-2.898l-.64 1.175h-.875l1.06-1.958h2.937l-1.465-2.72.432-.798Z" }) + ] + } + ); +}); + +exports.default = SiNokia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.d.ts new file mode 100644 index 000000000..0891e415e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005AFF"; +declare const SiNokia: IconType; +export { SiNokia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.mjs new file mode 100644 index 000000000..606653878 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNokia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005AFF"; +const SiNokia = React.forwardRef(function SiNokia2({ title = "Nokia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.59 9.348v5.304h.796V9.348Zm-8.497-.09c-1.55 0-2.752 1.127-2.752 2.742 0 1.687 1.202 2.742 2.752 2.742 1.55 0 2.754-1.055 2.751-2.742a2.72 2.72 0 0 0-2.751-2.742ZM10.05 12c0 1.195-.876 1.987-1.957 1.987-1.082 0-1.958-.792-1.958-1.987 0-1.174.876-1.987 1.958-1.987 1.08 0 1.957.813 1.957 1.987zM0 9.176v5.476h.812v-3.619l4.218 3.79v-1.135zM11.442 12l2.952 2.652h1.184L12.622 12l2.956-2.652h-1.184ZM24 14.652h-.875l-.64-1.175h-2.898l-.64 1.175h-.875l1.06-1.958h2.937l-1.465-2.72.432-.798Z" }) + ] + } + ); +}); + +export { SiNokia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.cjs new file mode 100644 index 000000000..6151b6177 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CA8E"; +const SiNomad = React__namespace.forwardRef(function SiNomad2({ title = "Nomad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.004 0-10.4 6v12l10.392 6 10.4-6V6L12.004 0zm4.639 13.204-2.77 1.6-3.347-1.832v3.826l-3.144 1.995V10.8L9.88 9.272l3.462 1.823V7.191l3.301-1.984v7.997z" }) + ] + } + ); +}); + +exports.default = SiNomad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.d.ts new file mode 100644 index 000000000..125cc1010 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CA8E"; +declare const SiNomad: IconType; +export { SiNomad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.mjs new file mode 100644 index 000000000..af26293a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNomad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CA8E"; +const SiNomad = React.forwardRef(function SiNomad2({ title = "Nomad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.004 0-10.4 6v12l10.392 6 10.4-6V6L12.004 0zm4.639 13.204-2.77 1.6-3.347-1.832v3.826l-3.144 1.995V10.8L9.88 9.272l3.462 1.823V7.191l3.301-1.984v7.997z" }) + ] + } + ); +}); + +export { SiNomad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.cjs new file mode 100644 index 000000000..338f40508 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FF00"; +const SiNorco = React__namespace.forwardRef(function SiNorco2({ title = "Norco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.055 2.707a.971.971 0 00-.688.387L0 16.78h4.049l7.27-9.597 1.927 5.74 1.42-1.875-2.578-7.676a.983.983 0 00-1.033-.666zM19.95 7.22l-7.27 9.597-1.927-5.74-1.42 1.875 2.578 7.676a.987.987 0 001.72.28L24 7.218z" }) + ] + } + ); +}); + +exports.default = SiNorco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.d.ts new file mode 100644 index 000000000..8b45ebe56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FF00"; +declare const SiNorco: IconType; +export { SiNorco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.mjs new file mode 100644 index 000000000..cbae8ecfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FF00"; +const SiNorco = React.forwardRef(function SiNorco2({ title = "Norco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.055 2.707a.971.971 0 00-.688.387L0 16.78h4.049l7.27-9.597 1.927 5.74 1.42-1.875-2.578-7.676a.983.983 0 00-1.033-.666zM19.95 7.22l-7.27 9.597-1.927-5.74-1.42 1.875 2.578 7.676a.987.987 0 001.72.28L24 7.218z" }) + ] + } + ); +}); + +export { SiNorco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.cjs new file mode 100644 index 000000000..a3995b30a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A9CE"; +const SiNordicsemiconductor = React__namespace.forwardRef(function SiNordicsemiconductor2({ title = "Nordic Semiconductor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.3384 12.4477 12.0796 6.9917-2.8939 1.73-1.92 1.0924c-.2979.1987-.5627.298-.8938.1656h-.033c-.0331 0-.0663 0-.0994-.0331L6.1572 15.8067v6.72c-.2453 0-.3825-.0384-.5627-.1324L.5627 19.448C.2317 19.2495 0 18.8853 0 18.488V5.8713l10.7656 6.2395.5728.3369zm5.7544-10.7733-4.4662 2.5522 4.4662 2.5965V1.6744zm6.0465 2.546-4.4359-2.5489c-.2648-.1324-.5627-.1986-.8606-.1986v6.6538l-9.9642-5.793-1.1255-.629c-.4966-.2649-.9269-.298-1.4234-.0663L3.3765 2.7971.8607 4.2536c-.331.1986-.5628.4634-.7283.8276l.2437.1412 3.2623 1.8908 7.4234 4.3024-.6586-.3817.7385.428.577.3392 5.0774 2.939 6.9976 4.0502.107.062c.0662-.2318.0993-.6536.0993-.6536V5.7101c0-.629-.331-1.1917-.8607-1.4896zM6.9073 22.2528l4.4525-2.5792-4.4526-2.5683v5.1475z" }) + ] + } + ); +}); + +exports.default = SiNordicsemiconductor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.d.ts new file mode 100644 index 000000000..fa44a16ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A9CE"; +declare const SiNordicsemiconductor: IconType; +export { SiNordicsemiconductor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.mjs new file mode 100644 index 000000000..5cbeb974a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNordicsemiconductor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A9CE"; +const SiNordicsemiconductor = React.forwardRef(function SiNordicsemiconductor2({ title = "Nordic Semiconductor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m11.3384 12.4477 12.0796 6.9917-2.8939 1.73-1.92 1.0924c-.2979.1987-.5627.298-.8938.1656h-.033c-.0331 0-.0663 0-.0994-.0331L6.1572 15.8067v6.72c-.2453 0-.3825-.0384-.5627-.1324L.5627 19.448C.2317 19.2495 0 18.8853 0 18.488V5.8713l10.7656 6.2395.5728.3369zm5.7544-10.7733-4.4662 2.5522 4.4662 2.5965V1.6744zm6.0465 2.546-4.4359-2.5489c-.2648-.1324-.5627-.1986-.8606-.1986v6.6538l-9.9642-5.793-1.1255-.629c-.4966-.2649-.9269-.298-1.4234-.0663L3.3765 2.7971.8607 4.2536c-.331.1986-.5628.4634-.7283.8276l.2437.1412 3.2623 1.8908 7.4234 4.3024-.6586-.3817.7385.428.577.3392 5.0774 2.939 6.9976 4.0502.107.062c.0662-.2318.0993-.6536.0993-.6536V5.7101c0-.629-.331-1.1917-.8607-1.4896zM6.9073 22.2528l4.4525-2.5792-4.4526-2.5683v5.1475z" }) + ] + } + ); +}); + +export { SiNordicsemiconductor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.cjs new file mode 100644 index 000000000..ca98a1c79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4687FF"; +const SiNordvpn = React__namespace.forwardRef(function SiNordvpn2({ title = "NordVPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.2838 21.5414A11.9866 11.9866 0 010 14.4832C0 7.8418 5.3727 2.4586 12 2.4586c6.6279 0 12 5.3832 12 12.0246a11.9853 11.9853 0 01-2.2838 7.0582l-5.7636-9.3783-.5565.9419.5645 2.6186L12 8.9338l-2.45 4.1447.5707 2.6451-2.0764-3.5555-5.7605 9.3733z" }) + ] + } + ); +}); + +exports.default = SiNordvpn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.d.ts new file mode 100644 index 000000000..f469fd39a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4687FF"; +declare const SiNordvpn: IconType; +export { SiNordvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.mjs new file mode 100644 index 000000000..13ea1603a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNordvpn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4687FF"; +const SiNordvpn = React.forwardRef(function SiNordvpn2({ title = "NordVPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.2838 21.5414A11.9866 11.9866 0 010 14.4832C0 7.8418 5.3727 2.4586 12 2.4586c6.6279 0 12 5.3832 12 12.0246a11.9853 11.9853 0 01-2.2838 7.0582l-5.7636-9.3783-.5565.9419.5645 2.6186L12 8.9338l-2.45 4.1447.5707 2.6451-2.0764-3.5555-5.7605 9.3733z" }) + ] + } + ); +}); + +export { SiNordvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.cjs new file mode 100644 index 000000000..f774f68e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E3695F"; +const SiNormalizedotcss = React__namespace.forwardRef(function SiNormalizedotcss2({ title = "Normalize.css", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.427 6.361v5.064l-5.381.705 7.058.924v-1.915l5.469 6.5v-5.064l5.382-.705-7.059-.924v1.914zM12 0l12 12-12 12L0 12Z" }) + ] + } + ); +}); + +exports.default = SiNormalizedotcss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.d.ts new file mode 100644 index 000000000..a60680ea6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E3695F"; +declare const SiNormalizedotcss: IconType; +export { SiNormalizedotcss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.mjs new file mode 100644 index 000000000..e0f92ed10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNormalizedotcss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E3695F"; +const SiNormalizedotcss = React.forwardRef(function SiNormalizedotcss2({ title = "Normalize.css", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.427 6.361v5.064l-5.381.705 7.058.924v-1.915l5.469 6.5v-5.064l5.382-.705-7.059-.924v1.914zM12 0l12 12-12 12L0 12Z" }) + ] + } + ); +}); + +export { SiNormalizedotcss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.cjs new file mode 100644 index 000000000..c89ae0b67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE01A"; +const SiNorton = React__namespace.forwardRef(function SiNorton2({ title = "Norton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.978 12c0 6.617-5.373 12-11.978 12C5.395 24 .022 18.617.022 12S5.395 0 12 0c1.826 0 3.557.41 5.107 1.146l-1.99 2.567A8.787 8.787 0 0 0 12 3.145c-4.657 0-8.484 3.627-8.815 8.21a9.595 9.595 0 0 0-.023.645c0 4.883 3.964 8.855 8.838 8.855 4.874 0 8.838-3.972 8.838-8.855 0-.652-.07-1.29-.205-1.902l2.309-2.979A11.948 11.948 0 0 1 23.978 12m-2.442-7.253L19.518 7.35l-7.082 9.14-5.778-5.175L8.75 8.97l3.27 2.928L17.38 4.98l1.924-2.484a12.08 12.08 0 0 1 2.231 2.25" }) + ] + } + ); +}); + +exports.default = SiNorton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.d.ts new file mode 100644 index 000000000..396db1d4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE01A"; +declare const SiNorton: IconType; +export { SiNorton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.mjs new file mode 100644 index 000000000..2ffba5f9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE01A"; +const SiNorton = React.forwardRef(function SiNorton2({ title = "Norton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.978 12c0 6.617-5.373 12-11.978 12C5.395 24 .022 18.617.022 12S5.395 0 12 0c1.826 0 3.557.41 5.107 1.146l-1.99 2.567A8.787 8.787 0 0 0 12 3.145c-4.657 0-8.484 3.627-8.815 8.21a9.595 9.595 0 0 0-.023.645c0 4.883 3.964 8.855 8.838 8.855 4.874 0 8.838-3.972 8.838-8.855 0-.652-.07-1.29-.205-1.902l2.309-2.979A11.948 11.948 0 0 1 23.978 12m-2.442-7.253L19.518 7.35l-7.082 9.14-5.778-5.175L8.75 8.97l3.27 2.928L17.38 4.98l1.924-2.484a12.08 12.08 0 0 1 2.231 2.25" }) + ] + } + ); +}); + +export { SiNorton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.cjs new file mode 100644 index 000000000..a9e885183 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D81939"; +const SiNorwegian = React__namespace.forwardRef(function SiNorwegian2({ title = "Norwegian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.6958 11.0552c-.4325-.2169-.859-.4105-1.3045-.6303.0553-.1311.0729-.2447.0321-.3742l-.1936-.2126-.2752.0452-.2839.15c-.0366-.0248-.1802-.0952-.2285-.1151l.2096-.1309c.3495-.2431.7134-.4703 1.054-.7381.3306-.2533.6697-.5067.8895-.8575.0524-.1034.1325-.2169.1005-.348l-.0641-.1121-.1062-.0596-.2287-.0903c-.1961-.0356-.4086-.0768-.6128-.07-.262.0132-.5183.0656-.773.1325-.3639.0975-.7774.2839-1.2243.5212-.4746.2518-.9158.5532-1.3598.8749-.067-.0962-.2038-.198-.3407-.182-.2315.051-.447.2315-.626.3814-.0905-.0112-.2123-.0457-.3029-.0568-.4032-.0655-.8298-.1106-1.2258-.1529-.3014-.0495-.6115-.0873-.9157-.1178-.2591-.0263-.4513-.07-.6974-.0568l-.3086.1688-.2184.2025.0058.083c.1544.0771.3276.0858.479.1498.4331.1063.6198.1637 1.1268.2825.2605.0611.3276.0873.594.1615.2649.1092.5226.2446.773.3581-.2581.1862-.6244.4367-.9201.6158l-.2199.1034-.2198-.0655c-.3392-.1485-.5983-.265-.8996-.3975l-.2883.0758-.0917.0495-.0699.1064.0626.1295c.1703.1761.3291.3508.5008.5212l-.0073.0059c-.1194-.0175-.2824-.0335-.4192-.0467-.1369-.0422-.2985-.0014-.4164.0801l.0146.1426c.2925.1329.6685.1987.9724.3268-5.325 2.3881-10.4741 3.4815-12.5049 3.2365-1.8242-.2198-1.6145-3.2508 1.2753-5.6704l-.757.0015c-3.641 2.8811-4.8872 6.3881-2.341 6.9064 2.8282.5741 8.586-1.2302 14.5229-4.2179.1495.0589.2871-.0412.4133-.0688.3201.0788.6532.1774.9768.2489l.1864-.0596.0364-.0524c-.0495-.1587-.2038-.2214-.3072-.348.3058-.0903.6057-.1965.9056-.2985.4658-.1601.8633-.3537 1.2869-.5459.2722.0306.5401.0394.8095.0452.2242.0102.4381 0 .6566.0335.179.0058.3217.0334.5037.064.5126.0973 1.0251.186 1.5329.2985.1952.0495.364.0844.5562.1295.1864-.0087.3319-.1267.4906-.2052L24 11.2153l-.3042-.1601zm-5.9365-.2548c-.3493.1849-.7351.3989-1.2476.626-.1325.0597-.2737.0947-.4279.0655l-.2127-.0291c-.2119-.2186-.449-.4343-.658-.6595l.1209-.067h.0465c.3563.1553.6744.3307 1.0337.4834l.3072-.0859c.4521-.279.801-.4989 1.2228-.7657.1427.0582.2053.0873.3422.1426-.1791.1063-.3567.198-.5271.2897zm.7741-1.0166l-.0773-.1325.019-.2664.0539-.0466c.0755-.0582.2389-.1644.3245-.2053l.0146.2563.0698.1296c-.1367.0873-.2662.1892-.4045.2649zm2.0358-.8299c-.1499.0961-.4643.3567-.4731.3684-.2388-.0292-.463-.0349-.6901-.0597l.0465-.0248c.3029-.2475.5708-.4076.9071-.6129.2983-.1806.7395-.4164 1.1035-.5707.3276-.1267.6609-.2315 1.0176-.2838.198-.0291.3945-.0452.5926.0188-.2169.048-.348.0859-.5824.1835-.2038.0844-.5284.2154-.7905.3436-.3872.1936-.7118.3697-1.1312.6376z" }) + ] + } + ); +}); + +exports.default = SiNorwegian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.d.ts new file mode 100644 index 000000000..69313a8ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D81939"; +declare const SiNorwegian: IconType; +export { SiNorwegian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.mjs new file mode 100644 index 000000000..aa0488cbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNorwegian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D81939"; +const SiNorwegian = React.forwardRef(function SiNorwegian2({ title = "Norwegian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.6958 11.0552c-.4325-.2169-.859-.4105-1.3045-.6303.0553-.1311.0729-.2447.0321-.3742l-.1936-.2126-.2752.0452-.2839.15c-.0366-.0248-.1802-.0952-.2285-.1151l.2096-.1309c.3495-.2431.7134-.4703 1.054-.7381.3306-.2533.6697-.5067.8895-.8575.0524-.1034.1325-.2169.1005-.348l-.0641-.1121-.1062-.0596-.2287-.0903c-.1961-.0356-.4086-.0768-.6128-.07-.262.0132-.5183.0656-.773.1325-.3639.0975-.7774.2839-1.2243.5212-.4746.2518-.9158.5532-1.3598.8749-.067-.0962-.2038-.198-.3407-.182-.2315.051-.447.2315-.626.3814-.0905-.0112-.2123-.0457-.3029-.0568-.4032-.0655-.8298-.1106-1.2258-.1529-.3014-.0495-.6115-.0873-.9157-.1178-.2591-.0263-.4513-.07-.6974-.0568l-.3086.1688-.2184.2025.0058.083c.1544.0771.3276.0858.479.1498.4331.1063.6198.1637 1.1268.2825.2605.0611.3276.0873.594.1615.2649.1092.5226.2446.773.3581-.2581.1862-.6244.4367-.9201.6158l-.2199.1034-.2198-.0655c-.3392-.1485-.5983-.265-.8996-.3975l-.2883.0758-.0917.0495-.0699.1064.0626.1295c.1703.1761.3291.3508.5008.5212l-.0073.0059c-.1194-.0175-.2824-.0335-.4192-.0467-.1369-.0422-.2985-.0014-.4164.0801l.0146.1426c.2925.1329.6685.1987.9724.3268-5.325 2.3881-10.4741 3.4815-12.5049 3.2365-1.8242-.2198-1.6145-3.2508 1.2753-5.6704l-.757.0015c-3.641 2.8811-4.8872 6.3881-2.341 6.9064 2.8282.5741 8.586-1.2302 14.5229-4.2179.1495.0589.2871-.0412.4133-.0688.3201.0788.6532.1774.9768.2489l.1864-.0596.0364-.0524c-.0495-.1587-.2038-.2214-.3072-.348.3058-.0903.6057-.1965.9056-.2985.4658-.1601.8633-.3537 1.2869-.5459.2722.0306.5401.0394.8095.0452.2242.0102.4381 0 .6566.0335.179.0058.3217.0334.5037.064.5126.0973 1.0251.186 1.5329.2985.1952.0495.364.0844.5562.1295.1864-.0087.3319-.1267.4906-.2052L24 11.2153l-.3042-.1601zm-5.9365-.2548c-.3493.1849-.7351.3989-1.2476.626-.1325.0597-.2737.0947-.4279.0655l-.2127-.0291c-.2119-.2186-.449-.4343-.658-.6595l.1209-.067h.0465c.3563.1553.6744.3307 1.0337.4834l.3072-.0859c.4521-.279.801-.4989 1.2228-.7657.1427.0582.2053.0873.3422.1426-.1791.1063-.3567.198-.5271.2897zm.7741-1.0166l-.0773-.1325.019-.2664.0539-.0466c.0755-.0582.2389-.1644.3245-.2053l.0146.2563.0698.1296c-.1367.0873-.2662.1892-.4045.2649zm2.0358-.8299c-.1499.0961-.4643.3567-.4731.3684-.2388-.0292-.463-.0349-.6901-.0597l.0465-.0248c.3029-.2475.5708-.4076.9071-.6129.2983-.1806.7395-.4164 1.1035-.5707.3276-.1267.6609-.2315 1.0176-.2838.198-.0291.3945-.0452.5926.0188-.2169.048-.348.0859-.5824.1835-.2038.0844-.5284.2154-.7905.3436-.3872.1936-.7118.3697-1.1312.6376z" }) + ] + } + ); +}); + +export { SiNorwegian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNote.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNote.cjs new file mode 100644 index 000000000..d76a0ada8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNote.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNote = React__namespace.forwardRef(function SiNote2({ title = "Note", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .279c4.623 0 10.953-.235 15.498-.117 6.099.156 8.39 2.813 8.468 9.374.077 3.71 0 14.335 0 14.335h-6.598c0-9.296.04-10.83 0-13.759-.078-2.578-.814-3.807-2.795-4.041-2.097-.235-7.975-.04-7.975-.04v17.84H0Z" }) + ] + } + ); +}); + +exports.default = SiNote; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNote.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNote.d.ts new file mode 100644 index 000000000..ffe1d7926 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNote.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNote: IconType; +export { SiNote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNote.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNote.mjs new file mode 100644 index 000000000..2d7851319 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNote.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNote = React.forwardRef(function SiNote2({ title = "Note", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .279c4.623 0 10.953-.235 15.498-.117 6.099.156 8.39 2.813 8.468 9.374.077 3.71 0 14.335 0 14.335h-6.598c0-9.296.04-10.83 0-13.759-.078-2.578-.814-3.807-2.795-4.041-2.097-.235-7.975-.04-7.975-.04v17.84H0Z" }) + ] + } + ); +}); + +export { SiNote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.cjs new file mode 100644 index 000000000..37ea3fec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNotebooklm = React__namespace.forwardRef(function SiNotebooklm2({ title = "NotebookLM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 3.201C5.372 3.201 0 8.528 0 15.101V20.8h2.212v-.568c0-2.666 2.178-4.827 4.866-4.827 2.688 0 4.866 2.16 4.866 4.827v.568h2.212v-.568c0-3.877-3.17-7.019-7.078-7.019A7.075 7.075 0 0 0 2.992 14.5a7.355 7.355 0 0 1 6.568-4.016c4.057 0 7.347 3.264 7.347 7.287V20.8h2.212V17.77c0-5.235-4.28-9.481-9.56-9.481a9.563 9.563 0 0 0-6.217 2.28A9.795 9.795 0 0 1 12 5.393c5.406 0 9.788 4.346 9.788 9.707V20.8H24V15.1c-.001-6.573-5.373-11.9-12.001-11.9Z" }) + ] + } + ); +}); + +exports.default = SiNotebooklm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.d.ts new file mode 100644 index 000000000..0659fa229 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNotebooklm: IconType; +export { SiNotebooklm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.mjs new file mode 100644 index 000000000..3019530df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotebooklm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNotebooklm = React.forwardRef(function SiNotebooklm2({ title = "NotebookLM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 3.201C5.372 3.201 0 8.528 0 15.101V20.8h2.212v-.568c0-2.666 2.178-4.827 4.866-4.827 2.688 0 4.866 2.16 4.866 4.827v.568h2.212v-.568c0-3.877-3.17-7.019-7.078-7.019A7.075 7.075 0 0 0 2.992 14.5a7.355 7.355 0 0 1 6.568-4.016c4.057 0 7.347 3.264 7.347 7.287V20.8h2.212V17.77c0-5.235-4.28-9.481-9.56-9.481a9.563 9.563 0 0 0-6.217 2.28A9.795 9.795 0 0 1 12 5.393c5.406 0 9.788 4.346 9.788 9.707V20.8H24V15.1c-.001-6.573-5.373-11.9-12.001-11.9Z" }) + ] + } + ); +}); + +export { SiNotebooklm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.cjs new file mode 100644 index 000000000..07252d35c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#90E59A"; +const SiNotepadplusplus = React__namespace.forwardRef(function SiNotepadplusplus2({ title = "Notepad++", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.443 2.285c-.305.005-.6.06-.853.248-.256.168-.546.32-.723.578a6.273 6.273 0 00-.71 2.463c-1.009-.413-2.08-.716-3.177-.676a8.602 8.602 0 00-1.93.604c-1.26.657-2.058 1.943-2.53 3.246a6.84 6.84 0 00-.604 1.805c-.107.568-.322 1.115-.357 1.695-.002.394.029.788.023 1.182-.422.263-.926.245-1.398.328-.34-.008-.67-.18-1.014-.07-.36.172-.75.269-1.111.437-.087.51-.166 1.225.457 1.424 1.064-.002 2.132.002 3.195.021.192.98.38 1.99.898 2.86.613.987 1.213 2.025 2.147 2.75.888.593 2.02.617 3.039.441.387-.043.656-.35 1.004-.492.212-.126.527-.156.607-.428.698-1.13.163-2.531-.47-3.56-.403-.707-1.275-.853-2.018-.82-.436.065-.712.44-1.063.667-.388.235-.761.735-.468 1.186.251.473.561 1.107 1.193 1.074.399-.046.932-.136 1.106-.553.077-.505-.519-.748-.92-.838.019.247.045.494.07.743-.207-.143-.415-.28-.625-.418.128-.667.87-.65 1.38-.854.52.81 1.068 1.852.645 2.815-.489.612-1.37.535-2.054.375-.894-.137-1.487-.933-1.881-1.682-.594-1.035-1.323-2.145-1.196-3.387.417-.021.834-.02 1.25.004.398.094.752.438 1.182.27.922-.252 1.881-.1 2.822-.11.74-.052 1.484-.062 2.225-.031.268.073.411.4.72.38.358.12.558-.246.827-.4a17.954 17.954 0 011.79.002c.283.494.706 1.022 1.31 1.092.734.027 1.356-.493 1.753-1.064.52.117 1.082.282 1.586.021 1.095-.464 2.3-.464 3.43-.785v-.322c-.907-.61-2.027-.441-3.043-.695-.775-.133-1.562-.012-2.34-.022-.345-.236-.683-.509-1.119-.537-.134.059-.27.113-.404.168.356.04.728.12.994.38-.336-.02-.684-.004-1.002-.126-.428.157-.835.4-.902.894-.182-.255.083-.493.189-.72-.24-.507-.826-.768-.994-1.315a.289.289 0 01.48-.008c.234.345.426.715.573 1.104.217.013.435.027.654.045v-.25c-.109.045-.216.09-.322.142-.189-.412-.351-.837-.485-1.271.258.062.506.155.766.207 1.176-.184 2.439-.412 3.36-1.232.194-.2.542-.37.484-.698-.057-.474-.402-.841-.573-1.277.267-.101.535-.2.793-.32.918-.899 1.377-2.185 1.477-3.448-.092-.673-.282-1.413-.803-1.886-.95-.48-2.07-.324-3.035.025-.437.174-.76.527-1.123.813-.296-.066-.477-.41-.672-.633-.375-.64-.89-1.235-1.596-1.51-.293-.011-.608-.055-.914-.05zm.395.516c.59.02 1.109.506 1.443.972.222.37.524.682.885.916a5.218 5.218 0 01-.277 3.791c-.167.375-.519.605-.864.795-.91.267-1.874-.133-2.521-.783l.012-.094c-.458-.214-.537-.767-.616-1.21-.39-.893-.293-1.916-.006-2.823.212-.71.756-1.39 1.526-1.498a1.12 1.12 0 01.418-.066zm5.592 1.025c.616.002 1.29.28 1.44.926.48 1.112-.052 2.344-.688 3.273-.368.345-.792.627-1.137 1-.425-.844-1.359-1.219-2.223-1.437.16-.808.04-1.628.022-2.44.468-.835 1.44-1.154 2.326-1.304.084-.011.172-.018.26-.018zm.775 1.62a7.73 7.73 0 01-.523.138c-.125.181-.252.363-.381.545.141.372.636.718.984.38a1.297 1.297 0 00-.08-1.064c-.178-.318 0 0 0 0zm-11.988.046c.9-.011 1.793.272 2.601.653.38.153.353.6.438.933.065.26.14.516.217.774.126.383.292.78.62 1.037.546.418 1.108.867 1.794 1.025a2.425 2.425 0 001.787-.303c.45-.404.668-1.007 1.137-1.396.44.215.927.318 1.351.568.44.278.653.777.912 1.207.09.194.164.392.242.588-.786.782-1.936.988-2.974 1.23-.43.128-.829-.096-1.186-.304-.184.101-.367.209-.552.309a3.718 3.718 0 01-2.145.45 32.773 32.773 0 01-.55-.072c.084-.376.182-.749.259-1.127-.092.008-.277.02-.37.026-.31.476-.325 1.052-.263 1.597.015.207.028.413.037.62a1.573 1.573 0 01-.408-.932c.016-.391.065-.778.1-1.168-.41-.177-.571.292-.647.596 0 .168.012.335.024.502-.714.163-1.48.246-2.188.011-.514-.168-1.075-.182-1.557-.445-.016-.2-.033-.398-.054-.596-.141-.026-.282-.051-.422-.08-.189.507-.452 1.021-.424 1.575.095.365.401.634.629.925-.335.098-.791.022-1.016.334-.135.601.413.948.772 1.319-.516-.19-1.089-.463-1.266-1.03.26-.302.554-.57.881-.797-.471-.698-.676-1.743-.066-2.421-.118-.143-.257-.39-.477-.268-.172.162-.318.35-.484.52-.7.533-.976 1.386-1.399 2.12-.205-.007-.41-.013-.615-.013l-.01-.254a4.621 4.621 0 01-.023-1.014c.153-.596.418-1.158.568-1.755l.051-.194.086-.293c.452-1.231 1.008-2.494 2.012-3.379.642-.636 1.563-.81 2.396-1.07.06-.003.122-.007.182-.008zm5.12.496c-.38-.012-.738.145-.675.596-.055.394.323.572.592.76.602-.003.872-.686.707-1.178a1.264 1.264 0 00-.623-.178zm-8.064 5.79a1.865 1.865 0 00.225 1.622c-.391.203-.826.213-1.256.211-.09-.648.318-1.202.621-1.736.137-.03.275-.062.41-.098zm1.213.544c.353.101.773.09 1.051.358-.042.174-.083.348-.113.525a5.16 5.16 0 00-.654.465 1.747 1.747 0 01-.284-1.348zm7.168.324c.211.023.262.279.4.407.236.306.573.512.852.775-.67.018-1.475.102-1.88-.562-.271.074-.543.183-.684.445l-.4-.217c-.005-.25.004-.502.025-.752h.457c.412.003.824-.028 1.23-.096zm-5.306.147c.02.336.18.73-.07 1.02-.246-.021-.492-.041-.733-.084.326-.195.567-.505.674-.87zm2.51.117c.315.24.445.634.591.986-.938.036-1.878.023-2.814-.039.064-.31.17-.61.252-.916.655-.02 1.313 0 1.97-.03zm.826.535c.152.184.318.355.498.512.24-.277.775-.727.998-.193-.363.174-.813.305-.934.742l-.012.053c.076.381.178.756.307 1.123-.773-.505-.391-1.548-.857-2.237zm-10.815.293c-.02.295-.422.42-.373.727.091.29.21.57.354.838-.491-.023-.989.003-1.475-.088-.046-.256-.161-.635.11-.805.259-.16.47-.389.615-.658.255.04.516.036.77-.014zm.66.153c-.208.362-.461.81-.138 1.191l-.176.078a2.664 2.664 0 01-.361-.676c.102-.184.195-.374.28-.566.132-.006.263-.015.395-.027zm.518.086l.033.08.11-.047c-.04.227-.205.391-.346.562.233.014.296.764-.041.557a10.992 10.992 0 01-.127-.225c.024-.227-.012-.48.181-.648l.055-.067.086-.095.049-.117zm3.943.074c.347.082.895-.121 1.11.166.31.05.603.197.92.205 1.122-.329 2.316-.154 3.47-.154.006.1.02.298.028.398-.869.033-1.737.036-2.604.014-.452-.003-.881-.307-1.338-.17-.2.018-.424.229-.6.043-.28-.003-.562-.012-.843-.018-.045-.17-.1-.34-.143-.484zm-2.428.017c.375.05.849-.096 1.131.225l-.12.27c-.74-.036-1.48-.043-2.221-.065.151-.495.8-.404 1.21-.43zm15.87.016c.502-.022.98.166 1.478.215.003.207.065.428-.035.623-.608.116-1.185.383-1.81.398.011-.168.02-.336.023-.506l.287-.187.057-.543zm-1.61.014c.102 0 .205.004.307.01.229.044.396.227.588.347-.552.275-1.181.207-1.772.127-.456-.062-.93.022-1.377-.115l.125-.225c.708-.06 1.416-.151 2.13-.144zm-3.761.097c.217.002.434.006.652.006.022.22-.071.326-.28.319-.517.014-1.034.012-1.55-.018-.05-.306.34-.249.525-.295.217-.013.435-.014.653-.012zm-.516.647c.542 0 1.083.051 1.615.152.744-.097 1.494-.005 2.235-.135.306.024.95-.115.876.371-.349.042-.674-.177-1.027-.14-.694.043-1.393.107-2.08-.045-.787.165-1.591.088-2.387.137a17.27 17.27 0 00-.021-.305c.268-.03.546-.024.789-.035zm-10.418.012c.6 0 1.203.111 1.803.132l.125.143c-.808-.002-1.622.062-2.426-.022a13.543 13.543 0 01-.104-.209c.2-.032.402-.044.602-.044zm3.426.119c.34.003.683.008 1.025.002 1.337.016 2.672.035 4.006.125a6.16 6.16 0 00-.098.168c-1.304.043-2.606.02-3.91.015l-.822-.029c-.067-.094-.134-.19-.201-.281zm8.642.39c.43.192.857.393 1.305.543.259-.104.615-.671.826-.26-.328.305-.791.614-1.26.51-.36-.17-.59-.52-.87-.793zm-11.984.07l.33.05c.363.841.38 1.81.873 2.599.284.467.518.96.793 1.432.287.492.762.824 1.207 1.162.955.702 2.52.596 3.197-.438.427-.922-.104-1.898-.474-2.74-.634-.996-2.29-.238-2.242.848.364.218.767.663 1.222.384a10.497 10.497 0 01-.013-.533c.108.12.19.261.296.383-.255.329-.67.314-1.045.262-.151-.168-.307-.331-.46-.496-.188-1.083 1.193-1.994 2.11-1.446.655.42.838 1.228 1.099 1.91.301.821-.144 1.793-.924 2.159-.601.388-1.346.234-2.018.234-.917-.044-1.515-.793-2.117-1.387-.58-.712-.958-1.557-1.41-2.351a7.712 7.712 0 01-.424-2.031z" }) + ] + } + ); +}); + +exports.default = SiNotepadplusplus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.d.ts new file mode 100644 index 000000000..f26a1309c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#90E59A"; +declare const SiNotepadplusplus: IconType; +export { SiNotepadplusplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.mjs new file mode 100644 index 000000000..5e9c1cef3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotepadplusplus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#90E59A"; +const SiNotepadplusplus = React.forwardRef(function SiNotepadplusplus2({ title = "Notepad++", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.443 2.285c-.305.005-.6.06-.853.248-.256.168-.546.32-.723.578a6.273 6.273 0 00-.71 2.463c-1.009-.413-2.08-.716-3.177-.676a8.602 8.602 0 00-1.93.604c-1.26.657-2.058 1.943-2.53 3.246a6.84 6.84 0 00-.604 1.805c-.107.568-.322 1.115-.357 1.695-.002.394.029.788.023 1.182-.422.263-.926.245-1.398.328-.34-.008-.67-.18-1.014-.07-.36.172-.75.269-1.111.437-.087.51-.166 1.225.457 1.424 1.064-.002 2.132.002 3.195.021.192.98.38 1.99.898 2.86.613.987 1.213 2.025 2.147 2.75.888.593 2.02.617 3.039.441.387-.043.656-.35 1.004-.492.212-.126.527-.156.607-.428.698-1.13.163-2.531-.47-3.56-.403-.707-1.275-.853-2.018-.82-.436.065-.712.44-1.063.667-.388.235-.761.735-.468 1.186.251.473.561 1.107 1.193 1.074.399-.046.932-.136 1.106-.553.077-.505-.519-.748-.92-.838.019.247.045.494.07.743-.207-.143-.415-.28-.625-.418.128-.667.87-.65 1.38-.854.52.81 1.068 1.852.645 2.815-.489.612-1.37.535-2.054.375-.894-.137-1.487-.933-1.881-1.682-.594-1.035-1.323-2.145-1.196-3.387.417-.021.834-.02 1.25.004.398.094.752.438 1.182.27.922-.252 1.881-.1 2.822-.11.74-.052 1.484-.062 2.225-.031.268.073.411.4.72.38.358.12.558-.246.827-.4a17.954 17.954 0 011.79.002c.283.494.706 1.022 1.31 1.092.734.027 1.356-.493 1.753-1.064.52.117 1.082.282 1.586.021 1.095-.464 2.3-.464 3.43-.785v-.322c-.907-.61-2.027-.441-3.043-.695-.775-.133-1.562-.012-2.34-.022-.345-.236-.683-.509-1.119-.537-.134.059-.27.113-.404.168.356.04.728.12.994.38-.336-.02-.684-.004-1.002-.126-.428.157-.835.4-.902.894-.182-.255.083-.493.189-.72-.24-.507-.826-.768-.994-1.315a.289.289 0 01.48-.008c.234.345.426.715.573 1.104.217.013.435.027.654.045v-.25c-.109.045-.216.09-.322.142-.189-.412-.351-.837-.485-1.271.258.062.506.155.766.207 1.176-.184 2.439-.412 3.36-1.232.194-.2.542-.37.484-.698-.057-.474-.402-.841-.573-1.277.267-.101.535-.2.793-.32.918-.899 1.377-2.185 1.477-3.448-.092-.673-.282-1.413-.803-1.886-.95-.48-2.07-.324-3.035.025-.437.174-.76.527-1.123.813-.296-.066-.477-.41-.672-.633-.375-.64-.89-1.235-1.596-1.51-.293-.011-.608-.055-.914-.05zm.395.516c.59.02 1.109.506 1.443.972.222.37.524.682.885.916a5.218 5.218 0 01-.277 3.791c-.167.375-.519.605-.864.795-.91.267-1.874-.133-2.521-.783l.012-.094c-.458-.214-.537-.767-.616-1.21-.39-.893-.293-1.916-.006-2.823.212-.71.756-1.39 1.526-1.498a1.12 1.12 0 01.418-.066zm5.592 1.025c.616.002 1.29.28 1.44.926.48 1.112-.052 2.344-.688 3.273-.368.345-.792.627-1.137 1-.425-.844-1.359-1.219-2.223-1.437.16-.808.04-1.628.022-2.44.468-.835 1.44-1.154 2.326-1.304.084-.011.172-.018.26-.018zm.775 1.62a7.73 7.73 0 01-.523.138c-.125.181-.252.363-.381.545.141.372.636.718.984.38a1.297 1.297 0 00-.08-1.064c-.178-.318 0 0 0 0zm-11.988.046c.9-.011 1.793.272 2.601.653.38.153.353.6.438.933.065.26.14.516.217.774.126.383.292.78.62 1.037.546.418 1.108.867 1.794 1.025a2.425 2.425 0 001.787-.303c.45-.404.668-1.007 1.137-1.396.44.215.927.318 1.351.568.44.278.653.777.912 1.207.09.194.164.392.242.588-.786.782-1.936.988-2.974 1.23-.43.128-.829-.096-1.186-.304-.184.101-.367.209-.552.309a3.718 3.718 0 01-2.145.45 32.773 32.773 0 01-.55-.072c.084-.376.182-.749.259-1.127-.092.008-.277.02-.37.026-.31.476-.325 1.052-.263 1.597.015.207.028.413.037.62a1.573 1.573 0 01-.408-.932c.016-.391.065-.778.1-1.168-.41-.177-.571.292-.647.596 0 .168.012.335.024.502-.714.163-1.48.246-2.188.011-.514-.168-1.075-.182-1.557-.445-.016-.2-.033-.398-.054-.596-.141-.026-.282-.051-.422-.08-.189.507-.452 1.021-.424 1.575.095.365.401.634.629.925-.335.098-.791.022-1.016.334-.135.601.413.948.772 1.319-.516-.19-1.089-.463-1.266-1.03.26-.302.554-.57.881-.797-.471-.698-.676-1.743-.066-2.421-.118-.143-.257-.39-.477-.268-.172.162-.318.35-.484.52-.7.533-.976 1.386-1.399 2.12-.205-.007-.41-.013-.615-.013l-.01-.254a4.621 4.621 0 01-.023-1.014c.153-.596.418-1.158.568-1.755l.051-.194.086-.293c.452-1.231 1.008-2.494 2.012-3.379.642-.636 1.563-.81 2.396-1.07.06-.003.122-.007.182-.008zm5.12.496c-.38-.012-.738.145-.675.596-.055.394.323.572.592.76.602-.003.872-.686.707-1.178a1.264 1.264 0 00-.623-.178zm-8.064 5.79a1.865 1.865 0 00.225 1.622c-.391.203-.826.213-1.256.211-.09-.648.318-1.202.621-1.736.137-.03.275-.062.41-.098zm1.213.544c.353.101.773.09 1.051.358-.042.174-.083.348-.113.525a5.16 5.16 0 00-.654.465 1.747 1.747 0 01-.284-1.348zm7.168.324c.211.023.262.279.4.407.236.306.573.512.852.775-.67.018-1.475.102-1.88-.562-.271.074-.543.183-.684.445l-.4-.217c-.005-.25.004-.502.025-.752h.457c.412.003.824-.028 1.23-.096zm-5.306.147c.02.336.18.73-.07 1.02-.246-.021-.492-.041-.733-.084.326-.195.567-.505.674-.87zm2.51.117c.315.24.445.634.591.986-.938.036-1.878.023-2.814-.039.064-.31.17-.61.252-.916.655-.02 1.313 0 1.97-.03zm.826.535c.152.184.318.355.498.512.24-.277.775-.727.998-.193-.363.174-.813.305-.934.742l-.012.053c.076.381.178.756.307 1.123-.773-.505-.391-1.548-.857-2.237zm-10.815.293c-.02.295-.422.42-.373.727.091.29.21.57.354.838-.491-.023-.989.003-1.475-.088-.046-.256-.161-.635.11-.805.259-.16.47-.389.615-.658.255.04.516.036.77-.014zm.66.153c-.208.362-.461.81-.138 1.191l-.176.078a2.664 2.664 0 01-.361-.676c.102-.184.195-.374.28-.566.132-.006.263-.015.395-.027zm.518.086l.033.08.11-.047c-.04.227-.205.391-.346.562.233.014.296.764-.041.557a10.992 10.992 0 01-.127-.225c.024-.227-.012-.48.181-.648l.055-.067.086-.095.049-.117zm3.943.074c.347.082.895-.121 1.11.166.31.05.603.197.92.205 1.122-.329 2.316-.154 3.47-.154.006.1.02.298.028.398-.869.033-1.737.036-2.604.014-.452-.003-.881-.307-1.338-.17-.2.018-.424.229-.6.043-.28-.003-.562-.012-.843-.018-.045-.17-.1-.34-.143-.484zm-2.428.017c.375.05.849-.096 1.131.225l-.12.27c-.74-.036-1.48-.043-2.221-.065.151-.495.8-.404 1.21-.43zm15.87.016c.502-.022.98.166 1.478.215.003.207.065.428-.035.623-.608.116-1.185.383-1.81.398.011-.168.02-.336.023-.506l.287-.187.057-.543zm-1.61.014c.102 0 .205.004.307.01.229.044.396.227.588.347-.552.275-1.181.207-1.772.127-.456-.062-.93.022-1.377-.115l.125-.225c.708-.06 1.416-.151 2.13-.144zm-3.761.097c.217.002.434.006.652.006.022.22-.071.326-.28.319-.517.014-1.034.012-1.55-.018-.05-.306.34-.249.525-.295.217-.013.435-.014.653-.012zm-.516.647c.542 0 1.083.051 1.615.152.744-.097 1.494-.005 2.235-.135.306.024.95-.115.876.371-.349.042-.674-.177-1.027-.14-.694.043-1.393.107-2.08-.045-.787.165-1.591.088-2.387.137a17.27 17.27 0 00-.021-.305c.268-.03.546-.024.789-.035zm-10.418.012c.6 0 1.203.111 1.803.132l.125.143c-.808-.002-1.622.062-2.426-.022a13.543 13.543 0 01-.104-.209c.2-.032.402-.044.602-.044zm3.426.119c.34.003.683.008 1.025.002 1.337.016 2.672.035 4.006.125a6.16 6.16 0 00-.098.168c-1.304.043-2.606.02-3.91.015l-.822-.029c-.067-.094-.134-.19-.201-.281zm8.642.39c.43.192.857.393 1.305.543.259-.104.615-.671.826-.26-.328.305-.791.614-1.26.51-.36-.17-.59-.52-.87-.793zm-11.984.07l.33.05c.363.841.38 1.81.873 2.599.284.467.518.96.793 1.432.287.492.762.824 1.207 1.162.955.702 2.52.596 3.197-.438.427-.922-.104-1.898-.474-2.74-.634-.996-2.29-.238-2.242.848.364.218.767.663 1.222.384a10.497 10.497 0 01-.013-.533c.108.12.19.261.296.383-.255.329-.67.314-1.045.262-.151-.168-.307-.331-.46-.496-.188-1.083 1.193-1.994 2.11-1.446.655.42.838 1.228 1.099 1.91.301.821-.144 1.793-.924 2.159-.601.388-1.346.234-2.018.234-.917-.044-1.515-.793-2.117-1.387-.58-.712-.958-1.557-1.41-2.351a7.712 7.712 0 01-.424-2.031z" }) + ] + } + ); +}); + +export { SiNotepadplusplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.cjs new file mode 100644 index 000000000..224b12cd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNotion = React__namespace.forwardRef(function SiNotion2({ title = "Notion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.459 4.208c.746.606 1.026.56 2.428.466l13.215-.793c.28 0 .047-.28-.046-.326L17.86 1.968c-.42-.326-.981-.7-2.055-.607L3.01 2.295c-.466.046-.56.28-.374.466zm.793 3.08v13.904c0 .747.373 1.027 1.214.98l14.523-.84c.841-.046.935-.56.935-1.167V6.354c0-.606-.233-.933-.748-.887l-15.177.887c-.56.047-.747.327-.747.933zm14.337.745c.093.42 0 .84-.42.888l-.7.14v10.264c-.608.327-1.168.514-1.635.514-.748 0-.935-.234-1.495-.933l-4.577-7.186v6.952L12.21 19s0 .84-1.168.84l-3.222.186c-.093-.186 0-.653.327-.746l.84-.233V9.854L7.822 9.76c-.094-.42.14-1.026.793-1.073l3.456-.233 4.764 7.279v-6.44l-1.215-.139c-.093-.514.28-.887.747-.933zM1.936 1.035l13.31-.98c1.634-.14 2.055-.047 3.082.7l4.249 2.986c.7.513.934.653.934 1.213v16.378c0 1.026-.373 1.634-1.68 1.726l-15.458.934c-.98.047-1.448-.093-1.962-.747l-3.129-4.06c-.56-.747-.793-1.306-.793-1.96V2.667c0-.839.374-1.54 1.447-1.632z" }) + ] + } + ); +}); + +exports.default = SiNotion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.d.ts new file mode 100644 index 000000000..2742819df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNotion: IconType; +export { SiNotion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.mjs new file mode 100644 index 000000000..eceae6b3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNotion = React.forwardRef(function SiNotion2({ title = "Notion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.459 4.208c.746.606 1.026.56 2.428.466l13.215-.793c.28 0 .047-.28-.046-.326L17.86 1.968c-.42-.326-.981-.7-2.055-.607L3.01 2.295c-.466.046-.56.28-.374.466zm.793 3.08v13.904c0 .747.373 1.027 1.214.98l14.523-.84c.841-.046.935-.56.935-1.167V6.354c0-.606-.233-.933-.748-.887l-15.177.887c-.56.047-.747.327-.747.933zm14.337.745c.093.42 0 .84-.42.888l-.7.14v10.264c-.608.327-1.168.514-1.635.514-.748 0-.935-.234-1.495-.933l-4.577-7.186v6.952L12.21 19s0 .84-1.168.84l-3.222.186c-.093-.186 0-.653.327-.746l.84-.233V9.854L7.822 9.76c-.094-.42.14-1.026.793-1.073l3.456-.233 4.764 7.279v-6.44l-1.215-.139c-.093-.514.28-.887.747-.933zM1.936 1.035l13.31-.98c1.634-.14 2.055-.047 3.082.7l4.249 2.986c.7.513.934.653.934 1.213v16.378c0 1.026-.373 1.634-1.68 1.726l-15.458.934c-.98.047-1.448-.093-1.962-.747l-3.129-4.06c-.56-.747-.793-1.306-.793-1.96V2.667c0-.839.374-1.54 1.447-1.632z" }) + ] + } + ); +}); + +export { SiNotion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.cjs new file mode 100644 index 000000000..391fcb375 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiNotist = React__namespace.forwardRef(function SiNotist2({ title = "Notist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.9327 3.8008c-1.099.11-2.288.4-3.038.74-1.069.499-1.259.869-.909 1.868.36 1.0401.19 2.3081-1.0001 7.5053-.878 3.876-1.027 4.686-.977 5.406.04.47.09.63.29.7901.22.179.33.189 1.688.129 3.408-.17 4.0571-.22 4.2671-.34.24-.13.25-.2.44-1.758.32-2.8681 1.788-7.1552 3.027-8.8942 1.0601-1.479 2.3591-2.128 3.0982-1.549.78.62.76 1.559-.13 4.147-.68 1.999-.79 2.428-.909 3.617-.15 1.4601.13 2.4891.96 3.4082.849.94 2.118 1.409 3.846 1.409 1.64 0 2.9681-.41 4.3771-1.339 1.29-.86 2.8281-2.608 3.0081-3.4281.1-.41-.07-.859-.35-.969-.41-.15-.65-.04-1.389.63-.859.78-1.249.949-2.008.889-1.0101-.08-1.4501-.66-1.4501-1.919 0-.899.09-1.349.65-3.3171.79-2.728.93-3.9671.58-5.0271-.57-1.768-2.978-2.538-5.6461-1.798-1.449.41-3.238 1.449-4.5971 2.688-.38.34-.68.59-.68.56 0-.02.07-.35.16-.72.34-1.499.2-2.248-.479-2.598-.39-.2-1.599-.26-2.8281-.13z" }) + ] + } + ); +}); + +exports.default = SiNotist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.d.ts new file mode 100644 index 000000000..cfd00be4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiNotist: IconType; +export { SiNotist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.mjs new file mode 100644 index 000000000..f99f477da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNotist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiNotist = React.forwardRef(function SiNotist2({ title = "Notist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.9327 3.8008c-1.099.11-2.288.4-3.038.74-1.069.499-1.259.869-.909 1.868.36 1.0401.19 2.3081-1.0001 7.5053-.878 3.876-1.027 4.686-.977 5.406.04.47.09.63.29.7901.22.179.33.189 1.688.129 3.408-.17 4.0571-.22 4.2671-.34.24-.13.25-.2.44-1.758.32-2.8681 1.788-7.1552 3.027-8.8942 1.0601-1.479 2.3591-2.128 3.0982-1.549.78.62.76 1.559-.13 4.147-.68 1.999-.79 2.428-.909 3.617-.15 1.4601.13 2.4891.96 3.4082.849.94 2.118 1.409 3.846 1.409 1.64 0 2.9681-.41 4.3771-1.339 1.29-.86 2.8281-2.608 3.0081-3.4281.1-.41-.07-.859-.35-.969-.41-.15-.65-.04-1.389.63-.859.78-1.249.949-2.008.889-1.0101-.08-1.4501-.66-1.4501-1.919 0-.899.09-1.349.65-3.3171.79-2.728.93-3.9671.58-5.0271-.57-1.768-2.978-2.538-5.6461-1.798-1.449.41-3.238 1.449-4.5971 2.688-.38.34-.68.59-.68.56 0-.02.07-.35.16-.72.34-1.499.2-2.248-.479-2.598-.39-.2-1.599-.26-2.8281-.13z" }) + ] + } + ); +}); + +export { SiNotist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.cjs new file mode 100644 index 000000000..6bae29f97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNounproject = React__namespace.forwardRef(function SiNounproject2({ title = "Noun Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.672 8.846H24v6.327h-6.328zM6.328 11.99a3.164 3.164 0 0 1-3.164 3.163A3.164 3.164 0 0 1 0 11.991a3.164 3.164 0 0 1 3.164-3.164 3.164 3.164 0 0 1 3.164 3.164m5.504 1.142l2.04 2.021 1.142-1.16-2.022-2.003 2.022-2.003-1.142-1.142-2.04 2.003L9.81 8.846 8.649 9.988l2.022 2.003-2.022 2.003 1.16 1.16Z" }) + ] + } + ); +}); + +exports.default = SiNounproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.d.ts new file mode 100644 index 000000000..874819dbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNounproject: IconType; +export { SiNounproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.mjs new file mode 100644 index 000000000..457839709 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNounproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNounproject = React.forwardRef(function SiNounproject2({ title = "Noun Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.672 8.846H24v6.327h-6.328zM6.328 11.99a3.164 3.164 0 0 1-3.164 3.163A3.164 3.164 0 0 1 0 11.991a3.164 3.164 0 0 1 3.164-3.164 3.164 3.164 0 0 1 3.164 3.164m5.504 1.142l2.04 2.021 1.142-1.16-2.022-2.003 2.022-2.003-1.142-1.142-2.04 2.003L9.81 8.846 8.649 9.988l2.022 2.003-2.022 2.003 1.16 1.16Z" }) + ] + } + ); +}); + +export { SiNounproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.cjs new file mode 100644 index 000000000..e410c123f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNovu = React__namespace.forwardRef(function SiNovu2({ title = "Novu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.48 9.6193c0 .6452-.7834.9647-1.2347.5035L8.0067.6804C9.256.2398 10.6 0 12 0c2.387 0 4.611.6969 6.48 1.8983zm3.36-4.4895v4.4895c0 3.6564-4.4392 5.4669-6.9962 2.8534L4.9087 2.3185C1.9323 4.5022 0 8.0255 0 12c0 2.5553.7987 4.924 2.16 6.8701v-4.4654c0-3.6564 4.4392-5.4669 6.9963-2.8534l9.9214 10.1403C22.0617 19.5086 24 15.9806 24 12c0-2.5553-.7987-4.924-2.16-6.8702ZM6.7546 13.9012l9.2212 9.4245C14.7316 23.7625 13.3934 24 12 24c-2.3869 0-4.611-.6968-6.48-1.8983v-7.697c0-.6453.7834-.9647 1.2346-.5035z" }) + ] + } + ); +}); + +exports.default = SiNovu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.d.ts new file mode 100644 index 000000000..9e031edd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNovu: IconType; +export { SiNovu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.mjs new file mode 100644 index 000000000..69f7e1758 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNovu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNovu = React.forwardRef(function SiNovu2({ title = "Novu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.48 9.6193c0 .6452-.7834.9647-1.2347.5035L8.0067.6804C9.256.2398 10.6 0 12 0c2.387 0 4.611.6969 6.48 1.8983zm3.36-4.4895v4.4895c0 3.6564-4.4392 5.4669-6.9962 2.8534L4.9087 2.3185C1.9323 4.5022 0 8.0255 0 12c0 2.5553.7987 4.924 2.16 6.8701v-4.4654c0-3.6564 4.4392-5.4669 6.9963-2.8534l9.9214 10.1403C22.0617 19.5086 24 15.9806 24 12c0-2.5553-.7987-4.924-2.16-6.8702ZM6.7546 13.9012l9.2212 9.4245C14.7316 23.7625 13.3934 24 12 24c-2.3869 0-4.611-.6968-6.48-1.8983v-7.697c0-.6453.7834-.9647 1.2346-.5035z" }) + ] + } + ); +}); + +export { SiNovu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNow.cjs new file mode 100644 index 000000000..522c74f06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#001211"; +const SiNow = React__namespace.forwardRef(function SiNow2({ title = "NOW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.8009 11.9974c0-.974.7878-1.7634 1.7596-1.7634.9718 0 1.7596.7895 1.7596 1.7634 0 .9738-.7878 1.7634-1.7596 1.7634-.9718 0-1.7596-.7896-1.7596-1.7634zm13.0277-2.896l-1.2166 2.4524-.7878-2.3188-.0015-.0003c-.1566-.4505-.5822-.7737-1.0829-.7737-.399 0-.7505.2054-.956.517-.5255.8015-1.0497 1.6094-1.5735 2.414l-.2785-1.956c-.0963-.6296-.6807-1.0587-1.3048-.9624-.6249.096-1.0538.6778-.958 1.304l.0488.328c-.6427-1.0749-1.8162-1.7945-3.1575-1.7945-1.353 0-2.5352.7324-3.174 1.823l.07-.3434c.1223-.6008-.2645-1.1873-.864-1.31-.5993-.1223-1.1848.265-1.307.8659l-.4763 2.3382-1.752-2.7177c-.198-.3042-.5399-.5053-.9284-.5053-.5317 0-.976.3765-1.084.879l-1.0217 5.012c-.1223.6007.257 1.1846.8575 1.3121.0747.0159.1556.0235.2291.024.5139.0036.9763-.3579 1.0844-.892l.4763-2.3383c.5924.9217 1.1845 1.844 1.779 2.7641.196.2777.5281.4662.9018.4662.5462 0 1.0002-.398 1.0915-.9219l.469-2.302c.2292 1.815 1.7755 3.2187 3.6488 3.2187 1.7257 0 3.1736-1.191 3.5705-2.7972l.2613 1.759c.0736.579.5474 1.0371 1.1411 1.0371.4272 0 .7756-.2445.9972-.5841l1.8844-2.8942.905 2.6645c.1622.4752.5808.8138 1.0961.8138.4788 0 .855-.288 1.0609-.7155l2.402-4.845c.2834-.568.0528-1.2551-.5123-1.5403-.5647-.285-1.2558-.0524-1.5379.5196Z" }) + ] + } + ); +}); + +exports.default = SiNow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNow.d.ts new file mode 100644 index 000000000..80cac5941 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#001211"; +declare const SiNow: IconType; +export { SiNow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNow.mjs new file mode 100644 index 000000000..61832e856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#001211"; +const SiNow = React.forwardRef(function SiNow2({ title = "NOW", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.8009 11.9974c0-.974.7878-1.7634 1.7596-1.7634.9718 0 1.7596.7895 1.7596 1.7634 0 .9738-.7878 1.7634-1.7596 1.7634-.9718 0-1.7596-.7896-1.7596-1.7634zm13.0277-2.896l-1.2166 2.4524-.7878-2.3188-.0015-.0003c-.1566-.4505-.5822-.7737-1.0829-.7737-.399 0-.7505.2054-.956.517-.5255.8015-1.0497 1.6094-1.5735 2.414l-.2785-1.956c-.0963-.6296-.6807-1.0587-1.3048-.9624-.6249.096-1.0538.6778-.958 1.304l.0488.328c-.6427-1.0749-1.8162-1.7945-3.1575-1.7945-1.353 0-2.5352.7324-3.174 1.823l.07-.3434c.1223-.6008-.2645-1.1873-.864-1.31-.5993-.1223-1.1848.265-1.307.8659l-.4763 2.3382-1.752-2.7177c-.198-.3042-.5399-.5053-.9284-.5053-.5317 0-.976.3765-1.084.879l-1.0217 5.012c-.1223.6007.257 1.1846.8575 1.3121.0747.0159.1556.0235.2291.024.5139.0036.9763-.3579 1.0844-.892l.4763-2.3383c.5924.9217 1.1845 1.844 1.779 2.7641.196.2777.5281.4662.9018.4662.5462 0 1.0002-.398 1.0915-.9219l.469-2.302c.2292 1.815 1.7755 3.2187 3.6488 3.2187 1.7257 0 3.1736-1.191 3.5705-2.7972l.2613 1.759c.0736.579.5474 1.0371 1.1411 1.0371.4272 0 .7756-.2445.9972-.5841l1.8844-2.8942.905 2.6645c.1622.4752.5808.8138 1.0961.8138.4788 0 .855-.288 1.0609-.7155l2.402-4.845c.2834-.568.0528-1.2551-.5123-1.5403-.5647-.285-1.2558-.0524-1.5379.5196Z" }) + ] + } + ); +}); + +export { SiNow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.cjs new file mode 100644 index 000000000..4440f38b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CB3837"; +const SiNpm = React__namespace.forwardRef(function SiNpm2({ title = "npm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z" }) + ] + } + ); +}); + +exports.default = SiNpm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.d.ts new file mode 100644 index 000000000..1ad77dd56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CB3837"; +declare const SiNpm: IconType; +export { SiNpm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.mjs new file mode 100644 index 000000000..f032671ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNpm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CB3837"; +const SiNpm = React.forwardRef(function SiNpm2({ title = "npm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z" }) + ] + } + ); +}); + +export { SiNpm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.cjs new file mode 100644 index 000000000..81d3ac9ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#96D7E8"; +const SiNrwl = React__namespace.forwardRef(function SiNrwl2({ title = "Nrwl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.357 8.258a3.424 3.424 0 00-.845.123l.054-.02a3.437 3.437 0 00-.841.346 3.437 3.437 0 00-.262.168 3.437 3.437 0 00-.11.078 3.424 3.424 0 00-.025.022 3.437 3.437 0 00-.01.005 3.424 3.424 0 00-.103.084 3.437 3.437 0 00-.115.104 3.437 3.437 0 00-.05.045 3.424 3.424 0 00-.08.08 3.424 3.424 0 00-.099.107 3.437 3.437 0 00-.03.034 3.424 3.424 0 00-.071.086 3.437 3.437 0 00-.034.04 3.424 3.424 0 00-.066.088 3.437 3.437 0 00-.006.008 3.424 3.424 0 00-.072.1 3.437 3.437 0 00-.014.02 3.424 3.424 0 00-.082.132 3.424 3.424 0 00-.074.127 3.437 3.437 0 00-.012.026 3.424 3.424 0 00-.062.12 3.424 3.424 0 00-.067.143 3.424 3.424 0 00-.054.135 3.437 3.437 0 00-.008.02 3.424 3.424 0 00-.131.437 3.424 3.424 0 00-.031.152 3.424 3.424 0 00-.026.149 3.437 3.437 0 000 .013 3.424 3.424 0 00-.027.303A3.424 3.424 0 000 11.68a3.437 3.437 0 000 .04 3.424 3.424 0 00.004.124A3.424 3.424 0 00.016 12a3.424 3.424 0 00.015.14 3.437 3.437 0 00.01.057 3.424 3.424 0 00.018.108 3.437 3.437 0 000 .004 3.424 3.424 0 00.025.123 3.437 3.437 0 00.037.15 3.437 3.437 0 00.096.297 3.437 3.437 0 00.056.144 3.437 3.437 0 00.432.745c.014.02.025.024.04.043a3.424 3.424 0 00.007.01 3.424 3.424 0 00.305.33l.011.013c.1.09.16.132.137.129.008.006.02.01.03.018a3.424 3.424 0 00.017.017.711.711 0 01-.205-.08.683.683 0 00-.39-.088.696.696 0 00-.608.947 1.993 1.993 0 01.564-.12 2.088 2.088 0 01.34.007 1.707 1.707 0 00.283.006c.05-.004.098-.01.147-.018a1.714 1.714 0 00.584-.203 3.424 3.424 0 00.437.17 4.43 4.43 0 002.989-.193.528.528 0 00.115-.076.179.179 0 00.076.03l1.789.169v.863H8.75v-.734l1.12.105-4.204-.754a.111.111 0 00-.014-.004c-.01-.1-.095-.172-.13-.218a.134.134 0 01-.03-.07 1.64 1.64 0 00-1.496-1.52.504.504 0 00-.18-.193.503.503 0 01-.187-.4.56.56 0 00-.498.44 1.393 1.393 0 01-.377-2.222 1.798 1.798 0 011.312-.563A1.824 1.824 0 015.83 10.96a.914.914 0 01-.543.32.904.904 0 00-.736.748c.35 0 .585.477 1.236.477a.59.59 0 00.547-.367.592.592 0 00.549.367 1.17 1.17 0 00.49-.106v2.002l1.377.327v-1.592l2.193 2.605H12.1v-4.89h-1.38v2.605L8.53 10.852H7.373v.427c-.283-.05-.556-.255-.65-.52a3.424 3.424 0 00-3.366-2.501zM22.109 9.96v4.414c0 1.186.766 1.336 1.485 1.336.219 0 .406-.02.406-.02v-1.03s-.078.007-.164.007c-.305 0-.375-.12-.375-.453V9.96zm-6.816 1.932a2.057 2.057 0 00-.709.128 1.253 1.253 0 00-.535.385v-.453h-1.285v3.79h1.347v-1.74c0-.316.081-.551.244-.704.164-.154.39-.23.678-.23a2.937 2.937 0 01.307.017v-1.193a2.057 2.057 0 00-.047 0zm.584.06l1.094 3.787h1.306l.477-1.736.45 1.736h1.306l1.094-3.787h-1.186l-.54 1.932-.52-1.932h-1.15l-.542 1.912-.512-1.912zm-12.281 2.14c.03 0 .07.016.117.027.092.023.17.02.15.108a.171.171 0 01-.332-.08c.01-.044.033-.056.065-.055z" }) + ] + } + ); +}); + +exports.default = SiNrwl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.d.ts new file mode 100644 index 000000000..0ef589463 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#96D7E8"; +declare const SiNrwl: IconType; +export { SiNrwl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.mjs new file mode 100644 index 000000000..0526a6f98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNrwl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#96D7E8"; +const SiNrwl = React.forwardRef(function SiNrwl2({ title = "Nrwl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.357 8.258a3.424 3.424 0 00-.845.123l.054-.02a3.437 3.437 0 00-.841.346 3.437 3.437 0 00-.262.168 3.437 3.437 0 00-.11.078 3.424 3.424 0 00-.025.022 3.437 3.437 0 00-.01.005 3.424 3.424 0 00-.103.084 3.437 3.437 0 00-.115.104 3.437 3.437 0 00-.05.045 3.424 3.424 0 00-.08.08 3.424 3.424 0 00-.099.107 3.437 3.437 0 00-.03.034 3.424 3.424 0 00-.071.086 3.437 3.437 0 00-.034.04 3.424 3.424 0 00-.066.088 3.437 3.437 0 00-.006.008 3.424 3.424 0 00-.072.1 3.437 3.437 0 00-.014.02 3.424 3.424 0 00-.082.132 3.424 3.424 0 00-.074.127 3.437 3.437 0 00-.012.026 3.424 3.424 0 00-.062.12 3.424 3.424 0 00-.067.143 3.424 3.424 0 00-.054.135 3.437 3.437 0 00-.008.02 3.424 3.424 0 00-.131.437 3.424 3.424 0 00-.031.152 3.424 3.424 0 00-.026.149 3.437 3.437 0 000 .013 3.424 3.424 0 00-.027.303A3.424 3.424 0 000 11.68a3.437 3.437 0 000 .04 3.424 3.424 0 00.004.124A3.424 3.424 0 00.016 12a3.424 3.424 0 00.015.14 3.437 3.437 0 00.01.057 3.424 3.424 0 00.018.108 3.437 3.437 0 000 .004 3.424 3.424 0 00.025.123 3.437 3.437 0 00.037.15 3.437 3.437 0 00.096.297 3.437 3.437 0 00.056.144 3.437 3.437 0 00.432.745c.014.02.025.024.04.043a3.424 3.424 0 00.007.01 3.424 3.424 0 00.305.33l.011.013c.1.09.16.132.137.129.008.006.02.01.03.018a3.424 3.424 0 00.017.017.711.711 0 01-.205-.08.683.683 0 00-.39-.088.696.696 0 00-.608.947 1.993 1.993 0 01.564-.12 2.088 2.088 0 01.34.007 1.707 1.707 0 00.283.006c.05-.004.098-.01.147-.018a1.714 1.714 0 00.584-.203 3.424 3.424 0 00.437.17 4.43 4.43 0 002.989-.193.528.528 0 00.115-.076.179.179 0 00.076.03l1.789.169v.863H8.75v-.734l1.12.105-4.204-.754a.111.111 0 00-.014-.004c-.01-.1-.095-.172-.13-.218a.134.134 0 01-.03-.07 1.64 1.64 0 00-1.496-1.52.504.504 0 00-.18-.193.503.503 0 01-.187-.4.56.56 0 00-.498.44 1.393 1.393 0 01-.377-2.222 1.798 1.798 0 011.312-.563A1.824 1.824 0 015.83 10.96a.914.914 0 01-.543.32.904.904 0 00-.736.748c.35 0 .585.477 1.236.477a.59.59 0 00.547-.367.592.592 0 00.549.367 1.17 1.17 0 00.49-.106v2.002l1.377.327v-1.592l2.193 2.605H12.1v-4.89h-1.38v2.605L8.53 10.852H7.373v.427c-.283-.05-.556-.255-.65-.52a3.424 3.424 0 00-3.366-2.501zM22.109 9.96v4.414c0 1.186.766 1.336 1.485 1.336.219 0 .406-.02.406-.02v-1.03s-.078.007-.164.007c-.305 0-.375-.12-.375-.453V9.96zm-6.816 1.932a2.057 2.057 0 00-.709.128 1.253 1.253 0 00-.535.385v-.453h-1.285v3.79h1.347v-1.74c0-.316.081-.551.244-.704.164-.154.39-.23.678-.23a2.937 2.937 0 01.307.017v-1.193a2.057 2.057 0 00-.047 0zm.584.06l1.094 3.787h1.306l.477-1.736.45 1.736h1.306l1.094-3.787h-1.186l-.54 1.932-.52-1.932h-1.15l-.542 1.912-.512-1.912zm-12.281 2.14c.03 0 .07.016.117.027.092.023.17.02.15.108a.171.171 0 01-.332-.08c.01-.044.033-.056.065-.055z" }) + ] + } + ); +}); + +export { SiNrwl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.cjs new file mode 100644 index 000000000..a6ff1d13b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#01B0F0"; +const SiNsis = React__namespace.forwardRef(function SiNsis2({ title = "NSIS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.736 24H24l-5.132-4.919L13.736 24Zm-6.021-5.064 5.133 4.918 5.132-4.919-10.265.001Zm-6.539-5.272v9.838l5.132-4.919-1.503-1.441-3.629-3.478Zm21.648-1.626-5.132 4.919 5.132 4.919v-9.838Zm-4.844 6.193-5.132-4.92-5.132 4.92H17.98ZM1.696 13.165l5.132 4.92 5.132-4.92H1.696Zm20.608-1.625H12.039l5.133 4.919 5.132-4.919ZM6.828 7.541l-5.132 4.92H11.96l-5.132-4.92Zm-5.652 4.421 5.132-4.919-5.132-4.919v9.838Zm21.128-1.127-5.132-4.92-5.133 4.92h10.265Zm-6.02-5.065H6.02l5.132 4.919 5.132-4.919Zm6.54-5.272-5.132 4.919 5.132 4.92V.498Zm-6.539 4.567L11.152.146 6.02 5.065h10.265ZM10.264 0H0l5.132 4.919L10.264 0Z" }) + ] + } + ); +}); + +exports.default = SiNsis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.d.ts new file mode 100644 index 000000000..d74988efa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#01B0F0"; +declare const SiNsis: IconType; +export { SiNsis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.mjs new file mode 100644 index 000000000..e292a3328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNsis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#01B0F0"; +const SiNsis = React.forwardRef(function SiNsis2({ title = "NSIS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.736 24H24l-5.132-4.919L13.736 24Zm-6.021-5.064 5.133 4.918 5.132-4.919-10.265.001Zm-6.539-5.272v9.838l5.132-4.919-1.503-1.441-3.629-3.478Zm21.648-1.626-5.132 4.919 5.132 4.919v-9.838Zm-4.844 6.193-5.132-4.92-5.132 4.92H17.98ZM1.696 13.165l5.132 4.92 5.132-4.92H1.696Zm20.608-1.625H12.039l5.133 4.919 5.132-4.919ZM6.828 7.541l-5.132 4.92H11.96l-5.132-4.92Zm-5.652 4.421 5.132-4.919-5.132-4.919v9.838Zm21.128-1.127-5.132-4.92-5.133 4.92h10.265Zm-6.02-5.065H6.02l5.132 4.919 5.132-4.919Zm6.54-5.272-5.132 4.919 5.132 4.92V.498Zm-6.539 4.567L11.152.146 6.02 5.065h10.265ZM10.264 0H0l5.132 4.919L10.264 0Z" }) + ] + } + ); +}); + +export { SiNsis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.cjs new file mode 100644 index 000000000..3da39a434 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#317F6F"; +const SiNtfy = React__namespace.forwardRef(function SiNtfy2({ title = "ntfy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.597 13.693v2.156h6.205v-2.156ZM5.183 6.549v2.363l3.591 1.901.023.01-.023.009-3.591 1.901v2.35l.386-.211 5.456-2.969V9.729ZM3.659 2.037C1.915 2.037.42 3.41.42 5.154v.002L.438 18.73 0 21.963l5.956-1.583h14.806c1.744 0 3.238-1.374 3.238-3.118V5.154c0-1.744-1.493-3.116-3.237-3.117h-.001zm0 2.2h17.104c.613.001 1.037.447 1.037.917v12.108c0 .47-.424.916-1.038.916H5.633l-3.026.915.031-.179-.017-13.76c0-.47.424-.917 1.038-.917z" }) + ] + } + ); +}); + +exports.default = SiNtfy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.d.ts new file mode 100644 index 000000000..22d7167b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#317F6F"; +declare const SiNtfy: IconType; +export { SiNtfy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.mjs new file mode 100644 index 000000000..b3bd150ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNtfy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#317F6F"; +const SiNtfy = React.forwardRef(function SiNtfy2({ title = "ntfy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.597 13.693v2.156h6.205v-2.156ZM5.183 6.549v2.363l3.591 1.901.023.01-.023.009-3.591 1.901v2.35l.386-.211 5.456-2.969V9.729ZM3.659 2.037C1.915 2.037.42 3.41.42 5.154v.002L.438 18.73 0 21.963l5.956-1.583h14.806c1.744 0 3.238-1.374 3.238-3.118V5.154c0-1.744-1.493-3.116-3.237-3.117h-.001zm0 2.2h17.104c.613.001 1.037.447 1.037.917v12.108c0 .47-.424.916-1.038.916H5.633l-3.026.915.031-.179-.017-13.76c0-.47.424-.917 1.038-.917z" }) + ] + } + ); +}); + +export { SiNtfy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.cjs new file mode 100644 index 000000000..326c02524 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#820AD1"; +const SiNubank = React__namespace.forwardRef(function SiNubank2({ title = "Nubank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.2795 5.4336c-1.1815 0-2.1846.4628-2.9432 1.252h-.002c-.0541-.0022-.1074-.002-.162-.002-1.5436 0-2.9925.8835-3.699 2.2559-.3088.5996-.4234 1.2442-.459 1.9003-.0321.589 0 1.1863 0 1.7696v5.6523H3.184s.0022-2.784 0-5.1777c-.0014-1.6112-.0118-3.0471 0-3.3418.056-1.3937.4372-2.3053 1.1484-3.0508 2.3585.0018 3.8852 1.6091 3.9705 4.168.0196.5874.0254 3.7304.0254 3.7304v3.672h3.1678v-4.965c0-1.5007.0127-2.8006-.0918-3.6952-.292-2.5-1.821-4.168-4.1248-4.168zm8.3903.3008l-3.166.0039v4.9648c0 1.5009-.0127 2.8007.0919 3.6953.2921 2.5001 1.821 4.168 4.1248 4.168 1.1815 0 2.1846-.4628 2.9432-1.252.0003-.0003.0016.0004.002 0 .0542.0023.1093.002.164.002 1.5435 0 2.9905-.8835 3.6971-2.2558.3088-.5997.4233-1.2442.459-1.9004.032-.5889 0-1.1862 0-1.7695V5.7383H20.816s-.0022 2.784 0 5.1777c.0015 1.6113.0119 3.047 0 3.3418-.056 1.3935-.4372 2.3053-1.1483 3.0508-2.3586-.0018-3.8853-1.6091-3.9706-4.168-.0196-.5874-.0273-2.0437-.0273-3.7324Z" }) + ] + } + ); +}); + +exports.default = SiNubank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.d.ts new file mode 100644 index 000000000..4b5ad7c9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#820AD1"; +declare const SiNubank: IconType; +export { SiNubank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.mjs new file mode 100644 index 000000000..15c9e1ffb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNubank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#820AD1"; +const SiNubank = React.forwardRef(function SiNubank2({ title = "Nubank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.2795 5.4336c-1.1815 0-2.1846.4628-2.9432 1.252h-.002c-.0541-.0022-.1074-.002-.162-.002-1.5436 0-2.9925.8835-3.699 2.2559-.3088.5996-.4234 1.2442-.459 1.9003-.0321.589 0 1.1863 0 1.7696v5.6523H3.184s.0022-2.784 0-5.1777c-.0014-1.6112-.0118-3.0471 0-3.3418.056-1.3937.4372-2.3053 1.1484-3.0508 2.3585.0018 3.8852 1.6091 3.9705 4.168.0196.5874.0254 3.7304.0254 3.7304v3.672h3.1678v-4.965c0-1.5007.0127-2.8006-.0918-3.6952-.292-2.5-1.821-4.168-4.1248-4.168zm8.3903.3008l-3.166.0039v4.9648c0 1.5009-.0127 2.8007.0919 3.6953.2921 2.5001 1.821 4.168 4.1248 4.168 1.1815 0 2.1846-.4628 2.9432-1.252.0003-.0003.0016.0004.002 0 .0542.0023.1093.002.164.002 1.5435 0 2.9905-.8835 3.6971-2.2558.3088-.5997.4233-1.2442.459-1.9004.032-.5889 0-1.1862 0-1.7695V5.7383H20.816s-.0022 2.784 0 5.1777c.0015 1.6113.0119 3.047 0 3.3418-.056 1.3935-.4372 2.3053-1.1483 3.0508-2.3586-.0018-3.8853-1.6091-3.9706-4.168-.0196-.5874-.0273-2.0437-.0273-3.7324Z" }) + ] + } + ); +}); + +export { SiNubank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.cjs new file mode 100644 index 000000000..5a9f5728a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#252B2D"; +const SiNucleo = React__namespace.forwardRef(function SiNucleo2({ title = "Nucleo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.025 0a3.868 3.868 0 00-1.964.525L1.354 5.55V6.5h15.853a3.9 3.9 0 003.463-2.115L13.922.508A3.868 3.868 0 0012.025 0zm9.81 5.072L13.91 18.801a3.9 3.9 0 00.1 4.056l6.734-3.908a3.865 3.865 0 001.914-3.35V5.55l-.822-.477zM1.46 7.848a3.9 3.9 0 00-.117.004l.017 7.787a3.868 3.868 0 001.946 3.334L12.008 24l.824-.475-7.926-13.73A3.9 3.9 0 001.46 7.848zM11.992 9.1a2.6 2.6 0 00-2.584 2.6 2.6 2.6 0 002.6 2.599 2.6 2.6 0 002.6-2.6 2.6 2.6 0 00-2.6-2.6 2.6 2.6 0 00-.016 0Z" }) + ] + } + ); +}); + +exports.default = SiNucleo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.d.ts new file mode 100644 index 000000000..3bada7bb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#252B2D"; +declare const SiNucleo: IconType; +export { SiNucleo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.mjs new file mode 100644 index 000000000..7ee199686 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNucleo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#252B2D"; +const SiNucleo = React.forwardRef(function SiNucleo2({ title = "Nucleo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.025 0a3.868 3.868 0 00-1.964.525L1.354 5.55V6.5h15.853a3.9 3.9 0 003.463-2.115L13.922.508A3.868 3.868 0 0012.025 0zm9.81 5.072L13.91 18.801a3.9 3.9 0 00.1 4.056l6.734-3.908a3.865 3.865 0 001.914-3.35V5.55l-.822-.477zM1.46 7.848a3.9 3.9 0 00-.117.004l.017 7.787a3.868 3.868 0 001.946 3.334L12.008 24l.824-.475-7.926-13.73A3.9 3.9 0 001.46 7.848zM11.992 9.1a2.6 2.6 0 00-2.584 2.6 2.6 2.6 0 002.6 2.599 2.6 2.6 0 002.6-2.6 2.6 2.6 0 00-2.6-2.6 2.6 2.6 0 00-.016 0Z" }) + ] + } + ); +}); + +export { SiNucleo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.cjs new file mode 100644 index 000000000..4dd13083d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004880"; +const SiNuget = React__namespace.forwardRef(function SiNuget2({ title = "NuGet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.998.342a1.997 1.997 0 1 0 0 3.995 1.997 1.997 0 0 0 0-3.995zm9.18 4.34a6.156 6.156 0 0 0-6.153 6.155v6.667c0 3.4 2.756 6.154 6.154 6.154h6.667c3.4 0 6.154-2.755 6.154-6.154v-6.667a6.154 6.154 0 0 0-6.154-6.155zm-1.477 2.8a2.496 2.496 0 1 1 0 4.993 2.496 2.496 0 0 1 0-4.993zm7.968 6.16a3.996 3.996 0 1 1-.002 7.992 3.996 3.996 0 0 1 .002-7.992z" }) + ] + } + ); +}); + +exports.default = SiNuget; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.d.ts new file mode 100644 index 000000000..64cccbfb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004880"; +declare const SiNuget: IconType; +export { SiNuget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.mjs new file mode 100644 index 000000000..55a186ee9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuget.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004880"; +const SiNuget = React.forwardRef(function SiNuget2({ title = "NuGet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.998.342a1.997 1.997 0 1 0 0 3.995 1.997 1.997 0 0 0 0-3.995zm9.18 4.34a6.156 6.156 0 0 0-6.153 6.155v6.667c0 3.4 2.756 6.154 6.154 6.154h6.667c3.4 0 6.154-2.755 6.154-6.154v-6.667a6.154 6.154 0 0 0-6.154-6.155zm-1.477 2.8a2.496 2.496 0 1 1 0 4.993 2.496 2.496 0 0 1 0-4.993zm7.968 6.16a3.996 3.996 0 1 1-.002 7.992 3.996 3.996 0 0 1 .002-7.992z" }) + ] + } + ); +}); + +export { SiNuget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.cjs new file mode 100644 index 000000000..c046ac47a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNuke = React__namespace.forwardRef(function SiNuke2({ title = "Nuke", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.293.004c6.625.162 11.865 5.664 11.703 12.29-.162 6.625-5.664 11.865-12.29 11.703C5.081 23.835-.159 18.333.003 11.707l.001-.025C.18 5.066 5.678-.158 12.293.004zm0 1.238c-5.941-.164-10.89 4.52-11.054 10.461s4.52 10.89 10.461 11.054c5.941.164 10.89-4.52 11.054-10.461l.001-.025c.15-5.932-4.53-10.866-10.462-11.029zm5.842 8.302h2.4c.976 0 .682-.873.682-.873a9.587 9.587 0 0 0-2.111-3.431l-.005.011a10.052 10.052 0 0 0-3.355-2.329.612.612 0 0 0-.894.622c-.044.802-.142 2.395-.142 2.395s.016.769-.627.769c-.813.011-1.489-.044-1.489-.044a2.314 2.314 0 0 1-1.255-.545L8.868 3.511a1.09 1.09 0 0 0-1.407-.196 9.758 9.758 0 0 0-4.713 5.384c-.256.714.333.806.731.806h6a2.086 2.086 0 0 1 1.68.627c.785.824 1.331 1.369 1.331 1.369s.48.54 1.26 1.358c.431.459.632 1.089.545 1.713 0 0-.295 5.744-.295 6-.027.398.038.993.769.775a9.756 9.756 0 0 0 5.618-4.424 1.091 1.091 0 0 0-.12-1.418l-2.471-2.607a2.303 2.303 0 0 1-.496-1.282s-.022-.682.033-1.489c.044-.643.802-.583.802-.583zm-2.362 1.374c-.475.469-1.484.229-2.22-.545-.736-.775-.924-1.801-.45-2.254.475-.453 1.502-.239 2.239.536.737.774.906 1.794.431 2.263z" }) + ] + } + ); +}); + +exports.default = SiNuke; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.d.ts new file mode 100644 index 000000000..be04d0a25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNuke: IconType; +export { SiNuke as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.mjs new file mode 100644 index 000000000..09bd5de1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuke.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNuke = React.forwardRef(function SiNuke2({ title = "Nuke", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.293.004c6.625.162 11.865 5.664 11.703 12.29-.162 6.625-5.664 11.865-12.29 11.703C5.081 23.835-.159 18.333.003 11.707l.001-.025C.18 5.066 5.678-.158 12.293.004zm0 1.238c-5.941-.164-10.89 4.52-11.054 10.461s4.52 10.89 10.461 11.054c5.941.164 10.89-4.52 11.054-10.461l.001-.025c.15-5.932-4.53-10.866-10.462-11.029zm5.842 8.302h2.4c.976 0 .682-.873.682-.873a9.587 9.587 0 0 0-2.111-3.431l-.005.011a10.052 10.052 0 0 0-3.355-2.329.612.612 0 0 0-.894.622c-.044.802-.142 2.395-.142 2.395s.016.769-.627.769c-.813.011-1.489-.044-1.489-.044a2.314 2.314 0 0 1-1.255-.545L8.868 3.511a1.09 1.09 0 0 0-1.407-.196 9.758 9.758 0 0 0-4.713 5.384c-.256.714.333.806.731.806h6a2.086 2.086 0 0 1 1.68.627c.785.824 1.331 1.369 1.331 1.369s.48.54 1.26 1.358c.431.459.632 1.089.545 1.713 0 0-.295 5.744-.295 6-.027.398.038.993.769.775a9.756 9.756 0 0 0 5.618-4.424 1.091 1.091 0 0 0-.12-1.418l-2.471-2.607a2.303 2.303 0 0 1-.496-1.282s-.022-.682.033-1.489c.044-.643.802-.583.802-.583zm-2.362 1.374c-.475.469-1.484.229-2.22-.545-.736-.775-.924-1.801-.45-2.254.475-.453 1.502-.239 2.239.536.737.774.906 1.794.431 2.263z" }) + ] + } + ); +}); + +export { SiNuke as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.cjs new file mode 100644 index 000000000..f020e2dc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A3E0"; +const SiNumba = React__namespace.forwardRef(function SiNumba2({ title = "Numba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.419 15.204s7.235-5.335 4.305-8.786c-3.398-4.003-12.921 4.486-13.962 2.76-1.04-1.725 8.452-5.86 9.481-6.55.112-.075.144-.218.112-.383l1.099-.127-.685-.345.175-.685-.796.621C15.85 1.173 15.34.595 15.049.393c-1.035-.685-2.93-.52-5.685.86-2.756 1.38-9.147 5.685-5.877 10.51 2.93 4.306 11.35-3.094 12.756-1.9 1.205 1.035-8.095 7.411-8.095 7.411h3.965C11.43 18.999 8.148 24 8.148 24l11.934-8.621c-1.253-.186-3.663-.175-3.663-.175zM13.175.908a.776.776 0 01.823.716.776.776 0 01-.717.823.776.776 0 01-.823-.716.768.768 0 01.717-.823z" }) + ] + } + ); +}); + +exports.default = SiNumba; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.d.ts new file mode 100644 index 000000000..325ef12b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A3E0"; +declare const SiNumba: IconType; +export { SiNumba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.mjs new file mode 100644 index 000000000..c40f53a40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNumba.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A3E0"; +const SiNumba = React.forwardRef(function SiNumba2({ title = "Numba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.419 15.204s7.235-5.335 4.305-8.786c-3.398-4.003-12.921 4.486-13.962 2.76-1.04-1.725 8.452-5.86 9.481-6.55.112-.075.144-.218.112-.383l1.099-.127-.685-.345.175-.685-.796.621C15.85 1.173 15.34.595 15.049.393c-1.035-.685-2.93-.52-5.685.86-2.756 1.38-9.147 5.685-5.877 10.51 2.93 4.306 11.35-3.094 12.756-1.9 1.205 1.035-8.095 7.411-8.095 7.411h3.965C11.43 18.999 8.148 24 8.148 24l11.934-8.621c-1.253-.186-3.663-.175-3.663-.175zM13.175.908a.776.776 0 01.823.716.776.776 0 01-.717.823.776.776 0 01-.823-.716.768.768 0 01.717-.823z" }) + ] + } + ); +}); + +export { SiNumba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.cjs new file mode 100644 index 000000000..ec67f33fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#013243"; +const SiNumpy = React__namespace.forwardRef(function SiNumpy2({ title = "NumPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.315 4.876L6.3048 2.8517l-4.401 2.1965 4.1186 2.0683zm1.8381.9277l4.2045 2.1223-4.3622 2.1906-4.125-2.0718zm5.6153-2.9213l4.3193 2.1658-3.863 1.9402-4.2131-2.1252zm-1.859-.9329L12.021 0 8.1742 1.9193l4.0068 2.0208zm-3.0401 16.7443V24l4.7107-2.3507-.0053-5.3085zm4.7037-4.2057l-.0052-5.2528-4.6985 2.3356v5.2546zm5.6553-.9845v5.327l-4.0178 2.0052-.0029-5.3028zm0-1.8626V6.4214l-4.0253 2.001.0034 5.2633zM11.2062 11.571L8.0333 9.9756v6.895s-3.8804-8.2564-4.2399-8.998c-.0463-.0957-.2371-.2007-.2858-.2262C2.8118 7.2812.773 6.2485.773 6.2485V18.43l2.8204 1.5076v-6.3674s3.8392 7.3775 3.878 7.458c.0389.0807.4245.8582.8362 1.1314.5485.363 2.8992 1.7766 2.8992 1.7766z" }) + ] + } + ); +}); + +exports.default = SiNumpy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.d.ts new file mode 100644 index 000000000..6200d62c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#013243"; +declare const SiNumpy: IconType; +export { SiNumpy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.mjs new file mode 100644 index 000000000..39e8ce72a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNumpy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#013243"; +const SiNumpy = React.forwardRef(function SiNumpy2({ title = "NumPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.315 4.876L6.3048 2.8517l-4.401 2.1965 4.1186 2.0683zm1.8381.9277l4.2045 2.1223-4.3622 2.1906-4.125-2.0718zm5.6153-2.9213l4.3193 2.1658-3.863 1.9402-4.2131-2.1252zm-1.859-.9329L12.021 0 8.1742 1.9193l4.0068 2.0208zm-3.0401 16.7443V24l4.7107-2.3507-.0053-5.3085zm4.7037-4.2057l-.0052-5.2528-4.6985 2.3356v5.2546zm5.6553-.9845v5.327l-4.0178 2.0052-.0029-5.3028zm0-1.8626V6.4214l-4.0253 2.001.0034 5.2633zM11.2062 11.571L8.0333 9.9756v6.895s-3.8804-8.2564-4.2399-8.998c-.0463-.0957-.2371-.2007-.2858-.2262C2.8118 7.2812.773 6.2485.773 6.2485V18.43l2.8204 1.5076v-6.3674s3.8392 7.3775 3.878 7.458c.0389.0807.4245.8582.8362 1.1314.5485.363 2.8992 1.7766 2.8992 1.7766z" }) + ] + } + ); +}); + +export { SiNumpy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.cjs new file mode 100644 index 000000000..859053255 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C4913"; +const SiNunjucks = React__namespace.forwardRef(function SiNunjucks2({ title = "Nunjucks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12v12h24V0H0v12zm8.2-1.9V3h3v17.3h-3c-.7-2.5-1.4-5-2.2-7.5v7.5H3V3h3c.8 2.3 1.5 4.7 2.2 7.1zM20.9 7v11.6c0 .2-.1.7-.5 1.1-.4.4-.8.5-.9.6h-5.1c-.2 0-.7-.1-1-.5-.4-.4-.5-.9-.6-1.2v-3.8c1-.2 2-.5 3-.7v3.1h2.1V7h3zM0 24" }) + ] + } + ); +}); + +exports.default = SiNunjucks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.d.ts new file mode 100644 index 000000000..333f88196 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C4913"; +declare const SiNunjucks: IconType; +export { SiNunjucks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.mjs new file mode 100644 index 000000000..3e88f8cbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNunjucks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C4913"; +const SiNunjucks = React.forwardRef(function SiNunjucks2({ title = "Nunjucks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12v12h24V0H0v12zm8.2-1.9V3h3v17.3h-3c-.7-2.5-1.4-5-2.2-7.5v7.5H3V3h3c.8 2.3 1.5 4.7 2.2 7.1zM20.9 7v11.6c0 .2-.1.7-.5 1.1-.4.4-.8.5-.9.6h-5.1c-.2 0-.7-.1-1-.5-.4-.4-.5-.9-.6-1.2v-3.8c1-.2 2-.5 3-.7v3.1h2.1V7h3zM0 24" }) + ] + } + ); +}); + +export { SiNunjucks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.cjs new file mode 100644 index 000000000..d4a5600a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E9A06"; +const SiNushell = React__namespace.forwardRef(function SiNushell2({ title = "Nushell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 16.338h1.25v-5.7c.417-.624 1.205-1.309 2.127-1.309 1.176 0 1.34.64 1.34 2.247v4.762h1.25v-5.685c0-1.458-.67-2.32-2.202-2.32-.923 0-1.964.46-2.59 1.264l-.103-1.1H0Zm10.177-7.842h-1.25v5.698c0 1.46.745 2.307 2.263 2.307.921 0 1.889-.431 2.514-1.22l.104 1.057h1.072V8.496h-1.25v5.773c-.432.67-1.265 1.25-2.129 1.25-.907 0-1.324-.446-1.324-1.458zm8.11-.997-.61.952 5.251 3.229-5.251 3.244.669.922L24 12.32v-1.28z" }) + ] + } + ); +}); + +exports.default = SiNushell; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.d.ts new file mode 100644 index 000000000..1b21f3e1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E9A06"; +declare const SiNushell: IconType; +export { SiNushell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.mjs new file mode 100644 index 000000000..909018385 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNushell.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E9A06"; +const SiNushell = React.forwardRef(function SiNushell2({ title = "Nushell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 16.338h1.25v-5.7c.417-.624 1.205-1.309 2.127-1.309 1.176 0 1.34.64 1.34 2.247v4.762h1.25v-5.685c0-1.458-.67-2.32-2.202-2.32-.923 0-1.964.46-2.59 1.264l-.103-1.1H0Zm10.177-7.842h-1.25v5.698c0 1.46.745 2.307 2.263 2.307.921 0 1.889-.431 2.514-1.22l.104 1.057h1.072V8.496h-1.25v5.773c-.432.67-1.265 1.25-2.129 1.25-.907 0-1.324-.446-1.324-1.458zm8.11-.997-.61.952 5.251 3.229-5.251 3.244.669.922L24 12.32v-1.28z" }) + ] + } + ); +}); + +export { SiNushell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.cjs new file mode 100644 index 000000000..591e711a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#024DA1"; +const SiNutanix = React__namespace.forwardRef(function SiNutanix2({ title = "Nutanix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.394 3.617a.395.395 0 0 0-.393.395c0 .12.054.225.14.297l8.506 7.404a.39.39 0 0 1-.013.588l-8.52 7.412a.393.393 0 0 0 .28.67h4.86a.39.39 0 0 0 .265-.104l9.17-7.98a.396.396 0 0 0 0-.596L5.52 3.721a.386.386 0 0 0-.264-.104zm18.358 0a.389.389 0 0 0-.273.113l-4.716 4.106a.392.392 0 0 0-.04.564l2.427 2.114a.393.393 0 0 0 .291.13.394.394 0 0 0 .278-.119l7.127-6.203a.389.389 0 0 0 .154-.31.395.395 0 0 0-.393-.395zm-2.31 9.742c-.116 0-.22.05-.292.13l-2.426 2.113a.392.392 0 0 0 .039.564l4.716 4.104c.07.07.166.113.273.113h4.855a.393.393 0 0 0 .239-.705l-7.127-6.203a.393.393 0 0 0-.278-.116z" }) + ] + } + ); +}); + +exports.default = SiNutanix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.d.ts new file mode 100644 index 000000000..8152509a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#024DA1"; +declare const SiNutanix: IconType; +export { SiNutanix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.mjs new file mode 100644 index 000000000..cbbdfaf99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNutanix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#024DA1"; +const SiNutanix = React.forwardRef(function SiNutanix2({ title = "Nutanix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.394 3.617a.395.395 0 0 0-.393.395c0 .12.054.225.14.297l8.506 7.404a.39.39 0 0 1-.013.588l-8.52 7.412a.393.393 0 0 0 .28.67h4.86a.39.39 0 0 0 .265-.104l9.17-7.98a.396.396 0 0 0 0-.596L5.52 3.721a.386.386 0 0 0-.264-.104zm18.358 0a.389.389 0 0 0-.273.113l-4.716 4.106a.392.392 0 0 0-.04.564l2.427 2.114a.393.393 0 0 0 .291.13.394.394 0 0 0 .278-.119l7.127-6.203a.389.389 0 0 0 .154-.31.395.395 0 0 0-.393-.395zm-2.31 9.742c-.116 0-.22.05-.292.13l-2.426 2.113a.392.392 0 0 0 .039.564l4.716 4.104c.07.07.166.113.273.113h4.855a.393.393 0 0 0 .239-.705l-7.127-6.203a.393.393 0 0 0-.278-.116z" }) + ] + } + ); +}); + +export { SiNutanix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.cjs new file mode 100644 index 000000000..32ed6b6cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00DC82"; +const SiNuxt = React__namespace.forwardRef(function SiNuxt2({ title = "Nuxt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.4642 19.8295h8.9218c.2834 0 .5618-.0723.8072-.2098a1.5899 1.5899 0 0 0 .5908-.5732 1.5293 1.5293 0 0 0 .216-.783 1.529 1.529 0 0 0-.2167-.7828L17.7916 7.4142a1.5904 1.5904 0 0 0-.5907-.573 1.6524 1.6524 0 0 0-.807-.2099c-.2833 0-.5616.0724-.807.2098a1.5904 1.5904 0 0 0-.5907.5731L13.4642 9.99l-2.9954-5.0366a1.5913 1.5913 0 0 0-.591-.573 1.6533 1.6533 0 0 0-.8071-.2098c-.2834 0-.5617.0723-.8072.2097a1.5913 1.5913 0 0 0-.591.573L.2168 17.4808A1.5292 1.5292 0 0 0 0 18.2635c-.0001.2749.0744.545.216.783a1.59 1.59 0 0 0 .5908.5732c.2454.1375.5238.2098.8072.2098h5.6003c2.219 0 3.8554-.9454 4.9813-2.7899l2.7337-4.5922L16.3935 9.99l4.3944 7.382h-5.8586ZM7.123 17.3694l-3.9083-.0009 5.8586-9.8421 2.9232 4.921-1.9572 3.2892c-.7478 1.1967-1.5972 1.6328-2.9163 1.6328z" }) + ] + } + ); +}); + +exports.default = SiNuxt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.d.ts new file mode 100644 index 000000000..84b479024 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00DC82"; +declare const SiNuxt: IconType; +export { SiNuxt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.mjs new file mode 100644 index 000000000..49eb26646 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNuxt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00DC82"; +const SiNuxt = React.forwardRef(function SiNuxt2({ title = "Nuxt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.4642 19.8295h8.9218c.2834 0 .5618-.0723.8072-.2098a1.5899 1.5899 0 0 0 .5908-.5732 1.5293 1.5293 0 0 0 .216-.783 1.529 1.529 0 0 0-.2167-.7828L17.7916 7.4142a1.5904 1.5904 0 0 0-.5907-.573 1.6524 1.6524 0 0 0-.807-.2099c-.2833 0-.5616.0724-.807.2098a1.5904 1.5904 0 0 0-.5907.5731L13.4642 9.99l-2.9954-5.0366a1.5913 1.5913 0 0 0-.591-.573 1.6533 1.6533 0 0 0-.8071-.2098c-.2834 0-.5617.0723-.8072.2097a1.5913 1.5913 0 0 0-.591.573L.2168 17.4808A1.5292 1.5292 0 0 0 0 18.2635c-.0001.2749.0744.545.216.783a1.59 1.59 0 0 0 .5908.5732c.2454.1375.5238.2098.8072.2098h5.6003c2.219 0 3.8554-.9454 4.9813-2.7899l2.7337-4.5922L16.3935 9.99l4.3944 7.382h-5.8586ZM7.123 17.3694l-3.9083-.0009 5.8586-9.8421 2.9232 4.921-1.9572 3.2892c-.7478 1.1967-1.5972 1.6328-2.9163 1.6328z" }) + ] + } + ); +}); + +export { SiNuxt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.cjs new file mode 100644 index 000000000..1c84eb521 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#76B900"; +const SiNvidia = React__namespace.forwardRef(function SiNvidia2({ title = "NVIDIA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.948 8.798v-1.43a6.7 6.7 0 0 1 .424-.018c3.922-.124 6.493 3.374 6.493 3.374s-2.774 3.851-5.75 3.851c-.398 0-.787-.062-1.158-.185v-4.346c1.528.185 1.837.857 2.747 2.385l2.04-1.714s-1.492-1.952-4-1.952a6.016 6.016 0 0 0-.796.035m0-4.735v2.138l.424-.027c5.45-.185 9.01 4.47 9.01 4.47s-4.08 4.964-8.33 4.964c-.37 0-.733-.035-1.095-.097v1.325c.3.035.61.062.91.062 3.957 0 6.82-2.023 9.593-4.408.459.371 2.34 1.263 2.73 1.652-2.633 2.208-8.772 3.984-12.253 3.984-.335 0-.653-.018-.971-.053v1.864H24V4.063zm0 10.326v1.131c-3.657-.654-4.673-4.46-4.673-4.46s1.758-1.944 4.673-2.262v1.237H8.94c-1.528-.186-2.73 1.245-2.73 1.245s.68 2.412 2.739 3.11M2.456 10.9s2.164-3.197 6.5-3.533V6.201C4.153 6.59 0 10.653 0 10.653s2.35 6.802 8.948 7.42v-1.237c-4.84-.6-6.492-5.936-6.492-5.936z" }) + ] + } + ); +}); + +exports.default = SiNvidia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.d.ts new file mode 100644 index 000000000..a5a1b6741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#76B900"; +declare const SiNvidia: IconType; +export { SiNvidia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.mjs new file mode 100644 index 000000000..56038a8a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNvidia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#76B900"; +const SiNvidia = React.forwardRef(function SiNvidia2({ title = "NVIDIA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.948 8.798v-1.43a6.7 6.7 0 0 1 .424-.018c3.922-.124 6.493 3.374 6.493 3.374s-2.774 3.851-5.75 3.851c-.398 0-.787-.062-1.158-.185v-4.346c1.528.185 1.837.857 2.747 2.385l2.04-1.714s-1.492-1.952-4-1.952a6.016 6.016 0 0 0-.796.035m0-4.735v2.138l.424-.027c5.45-.185 9.01 4.47 9.01 4.47s-4.08 4.964-8.33 4.964c-.37 0-.733-.035-1.095-.097v1.325c.3.035.61.062.91.062 3.957 0 6.82-2.023 9.593-4.408.459.371 2.34 1.263 2.73 1.652-2.633 2.208-8.772 3.984-12.253 3.984-.335 0-.653-.018-.971-.053v1.864H24V4.063zm0 10.326v1.131c-3.657-.654-4.673-4.46-4.673-4.46s1.758-1.944 4.673-2.262v1.237H8.94c-1.528-.186-2.73 1.245-2.73 1.245s.68 2.412 2.739 3.11M2.456 10.9s2.164-3.197 6.5-3.533V6.201C4.153 6.59 0 10.653 0 10.653s2.35 6.802 8.948 7.42v-1.237c-4.84-.6-6.492-5.936-6.492-5.936z" }) + ] + } + ); +}); + +export { SiNvidia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.cjs new file mode 100644 index 000000000..ccfd8f93a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4DD4B"; +const SiNvm = React__namespace.forwardRef(function SiNvm2({ title = "nvm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.178 7.98-.1986.004a.045.045 0 0 0-.0376.0684l.104.1715a.045.045 0 0 0 .0394.0216l.1986-.004a.045.045 0 0 0 .0376-.0684l-.104-.1715a.045.045 0 0 0-.0394-.0217m-1.2178.0846-.1625.0036a.045.045 0 0 0-.0375.0683l.085.1405a.045.045 0 0 0 .0396.0218l.1625-.0036a.045.045 0 0 0 .0376-.0684l-.0852-.1405a.045.045 0 0 0-.0395-.0217m.7111.3967-.281.0058a.045.045 0 0 0-.0375.0683l.1711.2824a.045.045 0 0 0 .0395.0218l.281-.006a.045.045 0 0 0 .0376-.0683l-.1712-.2823a.045.045 0 0 0-.0395-.0217m.843.2485-.3526.0077a.045.045 0 0 0-.0375.0684l.1846.3053a.045.045 0 0 0 .0395.0217l.353-.0077a.045.045 0 0 0 .0376-.0684l-.185-.3052a.045.045 0 0 0-.0396-.0218m8.7293.1253c-.076-.0006-.152.0215-.231.067q-1.3417.7729-2.6863 1.541l.1055-.1788c.0693-.1576.027-.2242-.1445-.2242-.6025-.0005-1.205.0008-1.8076-.0014-.0887-.0005-.145.0315-.189.109-.2027.357-.409.712-.6152 1.0672h-.0004c-.2714.468-.8423 1.4118-.9034 1.5135v.0003l-1.034 1.8842.0009-.0025-.0012.0025c.08.1268.1693.2628.2575.3978l.0413.065.0015.0011c.1298.1982.26.3967.3783.5821-.1306-.2098.114.1486.1918.231.1621.172.2995.1743.4607.0023.0635-.068.1193-.144.1738-.2197.2508-.3499.4688-.7205.6872-1.0907.4539-.769.8956-1.5454 1.3432-2.3182.2004-.3458.4035-.6898.6057-1.0348.0102-.0194.0211-.0383.0314-.0576.0031 1.4098.0034 2.82.006 4.2297.0005.25.1185.318.3337.1954.543-.3089 1.0839-.6227 1.6288-.9289.171-.0964.2467-.227.2445-.4256-.0072-.6543.0018-1.3081-.0055-1.9624-.0027-.2247.0824-.376.2814-.4795.2022-.105.399-.2212.593-.34.1671-.1023.3248-.1063.4932-.0027.194.1193.3904.236.593.3395.2072.1063.2895.2653.2873.495-.0068.6425.004 1.285-.0058 1.9272-.0036.2202.0806.3593.2702.4647.521.2896 1.0361.589 1.5535.8844.2833.1617.3823.1054.3832-.2179.0027-1.0573.0072-2.1143.004-3.1716-.0004-.1612.0613-.266.1941-.3422.2283-.1306.4562-.2612.6836-.3936.1513-.0882.2972-.0832.4471.0063.2004.1194.4008.241.6084.3477s.2891.2657.2869.4953c-.0068.6426.004 1.2852-.006 1.9273-.0035.2206.0815.3598.2707.4647.526.2923 1.0465.5944 1.5693.8921.2616.149.3661.0905.3665-.209.001-.73 0-1.4603 0-2.1903h.0072c0-.73-.003-1.4603.0018-2.1902.0014-.2085-.0766-.3509-.2607-.4553a313 313 0 0 1-2.7964-1.6053c-.1946-.113-.3638-.1113-.5566.0022-.5989.3526-1.2055.6921-1.8058 1.043-.0932.054-.1589.0544-.2526 0-.616-.359-1.2365-.7093-1.8534-1.0664-.0788-.0457-.1548-.0691-.2309-.0697zm-12.9129.0017c-.0803.0008-.1604.0264-.2455.0757A334 334 0 0 1 .2735 10.526c-.1968.1116-.276.259-.2734.4827.0081.7183.0032 1.4365.0032 2.1547h.0045c0 .7358-.001 1.4716 0 2.2074.0004.2918.113.354.3701.2071.5224-.2985 1.0415-.6016 1.568-.8934.1909-.1058.2733-.2444.2701-.4642-.009-.6538-.0013-1.3081-.0045-1.962-.0009-.1927.0649-.3364.2396-.4318.2256-.1234.4471-.2536.6687-.3837.145-.0852.286-.0837.4305.0014.2067.121.4111.2467.624.3557.209.1072.286.2684.2838.4967-.0068.648.0023 1.2964-.0049 1.9444-.0023.2062.0792.3368.2571.4359.5305.2958 1.056.6012 1.5833.9024.2553.146.3647.0824.3651-.2143.003-1.338.0037-2.6762.008-4.0142l2.0724 3.2579.7471-2.3635.121.2048-.301-.5165-.0796-.1373-.1828-.314a.045.045 0 0 0-.045-.0219l-.7254.0981-.0622-.113-.0005-.001-.2337-.4008a.045.045 0 0 0-.0395-.0223l-.258.0032a.045.045 0 0 0-.0384.0676l.0316.0543-.5535.0031-.131-.2256a.045.045 0 0 0-.0393-.0224l-.2862.0021c-.019-.1645-.1007-.2811-.2593-.3713a358 358 0 0 1-2.8265-1.623c-.0856-.0495-.166-.0734-.2462-.0725m2.8363.0235-.237.0049a.045.045 0 0 0-.0375.0683l.1442.2378a.045.045 0 0 0 .0395.0217l.2368-.0049a.045.045 0 0 0 .0376-.0683l-.1441-.2378a.045.045 0 0 0-.0395-.0217m.5498.4138-.2494.0055a.045.045 0 0 0-.0376.0683l.1305.2157a.045.045 0 0 0 .0395.0217l.2495-.0054a.045.045 0 0 0 .0376-.0684l-.1306-.2157a.045.045 0 0 0-.0395-.0217m.7551.0396-.3656.0077a.045.045 0 0 0-.0375.0684l.191.3156a.045.045 0 0 0 .0393.0217l.2244-.0044.1761.2907a.045.045 0 0 0 .0395.0217l.5196-.0108a.045.045 0 0 0 .0376-.0683l-.3165-.5224a.045.045 0 0 0-.0395-.0217l-.3775.008-.0515-.0845a.045.045 0 0 0-.0394-.0216zm-1.3612.0797-.199.004a.045.045 0 0 0-.0376.0684l.104.1715a.045.045 0 0 0 .0395.0218l.1986-.004a.045.045 0 0 0 .0375-.0684l-.1035-.1715a.045.045 0 0 0-.0395-.0218m.6017.459-.2882.0057a.045.045 0 0 0-.0377.0684l.1757.29a.045.045 0 0 0 .0395.0217l.077-.0017.15.2479a.045.045 0 0 0 .0395.0217l.4724-.0099a.045.045 0 0 0 .0376-.0683l-.2878-.4746a.045.045 0 0 0-.0394-.0217l-.261.0053-.0383-.0629a.045.045 0 0 0-.0393-.0216m1.925.643-.6449.014a.045.045 0 0 0-.0376.0683l.128.2108a.045.045 0 0 0 .0394.0216l.1713-.0035.1054.1733a.045.045 0 0 0 .0394.0216l.4472-.0095a.045.045 0 0 0 .0376-.0683l-.2464-.4066a.045.045 0 0 0-.0395-.0217z" }) + ] + } + ); +}); + +exports.default = SiNvm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.d.ts new file mode 100644 index 000000000..b1b00e818 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4DD4B"; +declare const SiNvm: IconType; +export { SiNvm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.mjs new file mode 100644 index 000000000..255b5ce5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNvm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4DD4B"; +const SiNvm = React.forwardRef(function SiNvm2({ title = "nvm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.178 7.98-.1986.004a.045.045 0 0 0-.0376.0684l.104.1715a.045.045 0 0 0 .0394.0216l.1986-.004a.045.045 0 0 0 .0376-.0684l-.104-.1715a.045.045 0 0 0-.0394-.0217m-1.2178.0846-.1625.0036a.045.045 0 0 0-.0375.0683l.085.1405a.045.045 0 0 0 .0396.0218l.1625-.0036a.045.045 0 0 0 .0376-.0684l-.0852-.1405a.045.045 0 0 0-.0395-.0217m.7111.3967-.281.0058a.045.045 0 0 0-.0375.0683l.1711.2824a.045.045 0 0 0 .0395.0218l.281-.006a.045.045 0 0 0 .0376-.0683l-.1712-.2823a.045.045 0 0 0-.0395-.0217m.843.2485-.3526.0077a.045.045 0 0 0-.0375.0684l.1846.3053a.045.045 0 0 0 .0395.0217l.353-.0077a.045.045 0 0 0 .0376-.0684l-.185-.3052a.045.045 0 0 0-.0396-.0218m8.7293.1253c-.076-.0006-.152.0215-.231.067q-1.3417.7729-2.6863 1.541l.1055-.1788c.0693-.1576.027-.2242-.1445-.2242-.6025-.0005-1.205.0008-1.8076-.0014-.0887-.0005-.145.0315-.189.109-.2027.357-.409.712-.6152 1.0672h-.0004c-.2714.468-.8423 1.4118-.9034 1.5135v.0003l-1.034 1.8842.0009-.0025-.0012.0025c.08.1268.1693.2628.2575.3978l.0413.065.0015.0011c.1298.1982.26.3967.3783.5821-.1306-.2098.114.1486.1918.231.1621.172.2995.1743.4607.0023.0635-.068.1193-.144.1738-.2197.2508-.3499.4688-.7205.6872-1.0907.4539-.769.8956-1.5454 1.3432-2.3182.2004-.3458.4035-.6898.6057-1.0348.0102-.0194.0211-.0383.0314-.0576.0031 1.4098.0034 2.82.006 4.2297.0005.25.1185.318.3337.1954.543-.3089 1.0839-.6227 1.6288-.9289.171-.0964.2467-.227.2445-.4256-.0072-.6543.0018-1.3081-.0055-1.9624-.0027-.2247.0824-.376.2814-.4795.2022-.105.399-.2212.593-.34.1671-.1023.3248-.1063.4932-.0027.194.1193.3904.236.593.3395.2072.1063.2895.2653.2873.495-.0068.6425.004 1.285-.0058 1.9272-.0036.2202.0806.3593.2702.4647.521.2896 1.0361.589 1.5535.8844.2833.1617.3823.1054.3832-.2179.0027-1.0573.0072-2.1143.004-3.1716-.0004-.1612.0613-.266.1941-.3422.2283-.1306.4562-.2612.6836-.3936.1513-.0882.2972-.0832.4471.0063.2004.1194.4008.241.6084.3477s.2891.2657.2869.4953c-.0068.6426.004 1.2852-.006 1.9273-.0035.2206.0815.3598.2707.4647.526.2923 1.0465.5944 1.5693.8921.2616.149.3661.0905.3665-.209.001-.73 0-1.4603 0-2.1903h.0072c0-.73-.003-1.4603.0018-2.1902.0014-.2085-.0766-.3509-.2607-.4553a313 313 0 0 1-2.7964-1.6053c-.1946-.113-.3638-.1113-.5566.0022-.5989.3526-1.2055.6921-1.8058 1.043-.0932.054-.1589.0544-.2526 0-.616-.359-1.2365-.7093-1.8534-1.0664-.0788-.0457-.1548-.0691-.2309-.0697zm-12.9129.0017c-.0803.0008-.1604.0264-.2455.0757A334 334 0 0 1 .2735 10.526c-.1968.1116-.276.259-.2734.4827.0081.7183.0032 1.4365.0032 2.1547h.0045c0 .7358-.001 1.4716 0 2.2074.0004.2918.113.354.3701.2071.5224-.2985 1.0415-.6016 1.568-.8934.1909-.1058.2733-.2444.2701-.4642-.009-.6538-.0013-1.3081-.0045-1.962-.0009-.1927.0649-.3364.2396-.4318.2256-.1234.4471-.2536.6687-.3837.145-.0852.286-.0837.4305.0014.2067.121.4111.2467.624.3557.209.1072.286.2684.2838.4967-.0068.648.0023 1.2964-.0049 1.9444-.0023.2062.0792.3368.2571.4359.5305.2958 1.056.6012 1.5833.9024.2553.146.3647.0824.3651-.2143.003-1.338.0037-2.6762.008-4.0142l2.0724 3.2579.7471-2.3635.121.2048-.301-.5165-.0796-.1373-.1828-.314a.045.045 0 0 0-.045-.0219l-.7254.0981-.0622-.113-.0005-.001-.2337-.4008a.045.045 0 0 0-.0395-.0223l-.258.0032a.045.045 0 0 0-.0384.0676l.0316.0543-.5535.0031-.131-.2256a.045.045 0 0 0-.0393-.0224l-.2862.0021c-.019-.1645-.1007-.2811-.2593-.3713a358 358 0 0 1-2.8265-1.623c-.0856-.0495-.166-.0734-.2462-.0725m2.8363.0235-.237.0049a.045.045 0 0 0-.0375.0683l.1442.2378a.045.045 0 0 0 .0395.0217l.2368-.0049a.045.045 0 0 0 .0376-.0683l-.1441-.2378a.045.045 0 0 0-.0395-.0217m.5498.4138-.2494.0055a.045.045 0 0 0-.0376.0683l.1305.2157a.045.045 0 0 0 .0395.0217l.2495-.0054a.045.045 0 0 0 .0376-.0684l-.1306-.2157a.045.045 0 0 0-.0395-.0217m.7551.0396-.3656.0077a.045.045 0 0 0-.0375.0684l.191.3156a.045.045 0 0 0 .0393.0217l.2244-.0044.1761.2907a.045.045 0 0 0 .0395.0217l.5196-.0108a.045.045 0 0 0 .0376-.0683l-.3165-.5224a.045.045 0 0 0-.0395-.0217l-.3775.008-.0515-.0845a.045.045 0 0 0-.0394-.0216zm-1.3612.0797-.199.004a.045.045 0 0 0-.0376.0684l.104.1715a.045.045 0 0 0 .0395.0218l.1986-.004a.045.045 0 0 0 .0375-.0684l-.1035-.1715a.045.045 0 0 0-.0395-.0218m.6017.459-.2882.0057a.045.045 0 0 0-.0377.0684l.1757.29a.045.045 0 0 0 .0395.0217l.077-.0017.15.2479a.045.045 0 0 0 .0395.0217l.4724-.0099a.045.045 0 0 0 .0376-.0683l-.2878-.4746a.045.045 0 0 0-.0394-.0217l-.261.0053-.0383-.0629a.045.045 0 0 0-.0393-.0216m1.925.643-.6449.014a.045.045 0 0 0-.0376.0683l.128.2108a.045.045 0 0 0 .0394.0216l.1713-.0035.1054.1733a.045.045 0 0 0 .0394.0216l.4472-.0095a.045.045 0 0 0 .0376-.0683l-.2464-.4066a.045.045 0 0 0-.0395-.0217z" }) + ] + } + ); +}); + +export { SiNvm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNx.cjs new file mode 100644 index 000000000..c39f97901 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#143055"; +const SiNx = React__namespace.forwardRef(function SiNx2({ title = "Nx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z" }) + ] + } + ); +}); + +exports.default = SiNx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNx.d.ts new file mode 100644 index 000000000..7ecbf71de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#143055"; +declare const SiNx: IconType; +export { SiNx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNx.mjs new file mode 100644 index 000000000..8b7385ab8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#143055"; +const SiNx = React.forwardRef(function SiNx2({ title = "Nx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z" }) + ] + } + ); +}); + +export { SiNx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.cjs new file mode 100644 index 000000000..bb7d7faac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNxp = React__namespace.forwardRef(function SiNxp2({ title = "NXP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.79652 7.91376 2.52079 4.08625-2.52079 4.08623-4.27103-4.93862.00088 4.93805-2.52138.00057L0 16.0792V7.91376h2.52402l4.27103 4.93864.0003-4.93864m14.85075 2.89478c0-.55173-.27337-.86734-1.0366-.86734h-3.18808v2.31194h3.40456c.59222 0 .82012-.5576.82012-1.04216v-.40244zm-.62975-2.89478C23.41922 7.91376 24 9.10757 24 10.70705v.96034c0 1.2164-.53502 2.61319-2.3231 2.61319h-4.259l.00117 1.80509h-.00117L14.8974 12l2.52079-4.08625h3.59816m-6.74569.0001h-.4614l-1.70183 2.71646-1.70184-2.71645H7.4184l2.52109 4.08596-2.52109 4.08623h2.9872l1.70184-2.71615 1.70183 2.71615h.4664l2.52019-.00029-2.5205-4.08594 2.5208-4.08596h-2.52549z" }) + ] + } + ); +}); + +exports.default = SiNxp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.d.ts new file mode 100644 index 000000000..5ab43784e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNxp: IconType; +export { SiNxp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.mjs new file mode 100644 index 000000000..a1a48aa7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNxp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNxp = React.forwardRef(function SiNxp2({ title = "NXP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.79652 7.91376 2.52079 4.08625-2.52079 4.08623-4.27103-4.93862.00088 4.93805-2.52138.00057L0 16.0792V7.91376h2.52402l4.27103 4.93864.0003-4.93864m14.85075 2.89478c0-.55173-.27337-.86734-1.0366-.86734h-3.18808v2.31194h3.40456c.59222 0 .82012-.5576.82012-1.04216v-.40244zm-.62975-2.89478C23.41922 7.91376 24 9.10757 24 10.70705v.96034c0 1.2164-.53502 2.61319-2.3231 2.61319h-4.259l.00117 1.80509h-.00117L14.8974 12l2.52079-4.08625h3.59816m-6.74569.0001h-.4614l-1.70183 2.71646-1.70184-2.71645H7.4184l2.52109 4.08596-2.52109 4.08623h2.9872l1.70184-2.71615 1.70183 2.71615h.4664l2.52019-.00029-2.5205-4.08594 2.5208-4.08596h-2.52549z" }) + ] + } + ); +}); + +export { SiNxp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.cjs new file mode 100644 index 000000000..8ec5979a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiNzxt = React__namespace.forwardRef(function SiNzxt2({ title = "NZXT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.763 8.936l2.101 3.04-.002-3.04h1.773v6.128H3.99l-2.218-3.227v3.227H0V8.936zm22.237 0v1.614h-1.612v4.514h-1.883V10.55h-1.611V8.936H24zm-9.598 0l.996 1.573 1.061-1.573h1.947l-1.98 3.034 2.013 3.094h-2.063l-1.005-1.558-.99 1.558h-2.015l1.975-3.038-2.004-3.09h2.065zm-2.652 0L9.327 13.51h2.372v1.554H6.573l2.379-4.584H6.704V8.936h5.046z" }) + ] + } + ); +}); + +exports.default = SiNzxt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.d.ts new file mode 100644 index 000000000..f56fd7635 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiNzxt: IconType; +export { SiNzxt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.mjs new file mode 100644 index 000000000..d98e77efc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiNzxt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiNzxt = React.forwardRef(function SiNzxt2({ title = "NZXT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.763 8.936l2.101 3.04-.002-3.04h1.773v6.128H3.99l-2.218-3.227v3.227H0V8.936zm22.237 0v1.614h-1.612v4.514h-1.883V10.55h-1.611V8.936H24zm-9.598 0l.996 1.573 1.061-1.573h1.947l-1.98 3.034 2.013 3.094h-2.063l-1.005-1.558-.99 1.558h-2.015l1.975-3.038-2.004-3.09h2.065zm-2.652 0L9.327 13.51h2.372v1.554H6.573l2.379-4.584H6.704V8.936h5.046z" }) + ] + } + ); +}); + +export { SiNzxt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiO2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiO2.cjs new file mode 100644 index 000000000..590942aa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiO2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0050FF"; +const SiO2 = React__namespace.forwardRef(function SiO22({ title = "O2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.473.191C3.827.191 0 4.271 0 9.917c0 5.317 3.86 9.726 9.472 9.726 5.61 0 9.433-4.409 9.433-9.726C18.905 4.27 15.116.19 9.473.19zm-.002 2.77c3.677 0 5.79 3.422 5.79 6.956 0 3.314-1.785 6.956-5.79 6.956-4.007 0-5.827-3.642-5.827-6.956 0-3.534 2.148-6.956 5.827-6.956zm11.69 12.48a5.47 5.47 0 0 0-2.44.588l.13 1.367c.543-.353 1.204-.66 1.9-.66.695 0 1.34.355 1.34 1.11 0 1.509-2.791 3.84-3.558 4.584v1.38H24v-1.298h-3.36c1.344-1.32 3.1-2.924 3.1-4.668 0-1.614-1.013-2.403-2.58-2.403z" }) + ] + } + ); +}); + +exports.default = SiO2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiO2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiO2.d.ts new file mode 100644 index 000000000..bbeabd7f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiO2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0050FF"; +declare const SiO2: IconType; +export { SiO2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiO2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiO2.mjs new file mode 100644 index 000000000..61ac2273a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiO2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0050FF"; +const SiO2 = React.forwardRef(function SiO22({ title = "O2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.473.191C3.827.191 0 4.271 0 9.917c0 5.317 3.86 9.726 9.472 9.726 5.61 0 9.433-4.409 9.433-9.726C18.905 4.27 15.116.19 9.473.19zm-.002 2.77c3.677 0 5.79 3.422 5.79 6.956 0 3.314-1.785 6.956-5.79 6.956-4.007 0-5.827-3.642-5.827-6.956 0-3.534 2.148-6.956 5.827-6.956zm11.69 12.48a5.47 5.47 0 0 0-2.44.588l.13 1.367c.543-.353 1.204-.66 1.9-.66.695 0 1.34.355 1.34 1.11 0 1.509-2.791 3.84-3.558 4.584v1.38H24v-1.298h-3.36c1.344-1.32 3.1-2.924 3.1-4.668 0-1.614-1.013-2.403-2.58-2.403z" }) + ] + } + ); +}); + +export { SiO2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObb.cjs new file mode 100644 index 000000000..2923e199e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E40327"; +const SiObb = React__namespace.forwardRef(function SiObb2({ title = "ÖBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.375 9.305-1.123 1.226c.304.426.471.934.471 1.469 0 .679-.264 1.317-.744 1.797s-1.118.744-1.797.744a2.525 2.525 0 0 1-1.797-.744A2.524 2.524 0 0 1 1.641 12a2.543 2.543 0 0 1 2.496-2.54l1.32-1.44a4.176 4.176 0 0 0-1.275-.202A4.187 4.187 0 0 0 0 12c0 1.117.435 2.167 1.225 2.957s1.84 1.225 2.957 1.225a4.153 4.153 0 0 0 2.957-1.225A4.154 4.154 0 0 0 8.364 12c0-.998-.35-1.941-.989-2.695M5.983 8.082v-.005L3.076 11.24h1.949l2.897-3.16H5.983m5.39 4.516h2.29c.314 0 .954.043.954.934 0 1.087-.764 1.108-1.269 1.108h-1.975zm0-3.162h1.998c.583 0 1.044.217 1.044.902 0 .63-.416.902-1.134.902h-1.908zm-1.684 6.563h3.693c.516 0 1.425-.076 1.987-.544.73-.608.853-1.26.853-1.673 0-.945-.494-1.64-.977-2a2.1 2.1 0 0 0 .775-1.63c0-.325-.157-2.075-2.952-2.075h-3.38v7.922m9.463-3.401h2.29c.314 0 .954.043.954.934 0 1.087-.764 1.108-1.269 1.108h-1.975zm0-3.162h1.998c.583 0 1.044.217 1.044.901 0 .63-.415.902-1.134.902h-1.908zm-1.684 6.563h3.693c.516 0 1.426-.076 1.987-.544.73-.608.853-1.26.853-1.673 0-.945-.494-1.64-.977-2a2.1 2.1 0 0 0 .775-1.63c0-.325-.157-2.075-2.952-2.075h-3.38l.001 7.922" }) + ] + } + ); +}); + +exports.default = SiObb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiObb.d.ts new file mode 100644 index 000000000..c370f388d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E40327"; +declare const SiObb: IconType; +export { SiObb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObb.mjs new file mode 100644 index 000000000..77031a7f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E40327"; +const SiObb = React.forwardRef(function SiObb2({ title = "ÖBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.375 9.305-1.123 1.226c.304.426.471.934.471 1.469 0 .679-.264 1.317-.744 1.797s-1.118.744-1.797.744a2.525 2.525 0 0 1-1.797-.744A2.524 2.524 0 0 1 1.641 12a2.543 2.543 0 0 1 2.496-2.54l1.32-1.44a4.176 4.176 0 0 0-1.275-.202A4.187 4.187 0 0 0 0 12c0 1.117.435 2.167 1.225 2.957s1.84 1.225 2.957 1.225a4.153 4.153 0 0 0 2.957-1.225A4.154 4.154 0 0 0 8.364 12c0-.998-.35-1.941-.989-2.695M5.983 8.082v-.005L3.076 11.24h1.949l2.897-3.16H5.983m5.39 4.516h2.29c.314 0 .954.043.954.934 0 1.087-.764 1.108-1.269 1.108h-1.975zm0-3.162h1.998c.583 0 1.044.217 1.044.902 0 .63-.416.902-1.134.902h-1.908zm-1.684 6.563h3.693c.516 0 1.425-.076 1.987-.544.73-.608.853-1.26.853-1.673 0-.945-.494-1.64-.977-2a2.1 2.1 0 0 0 .775-1.63c0-.325-.157-2.075-2.952-2.075h-3.38v7.922m9.463-3.401h2.29c.314 0 .954.043.954.934 0 1.087-.764 1.108-1.269 1.108h-1.975zm0-3.162h1.998c.583 0 1.044.217 1.044.901 0 .63-.415.902-1.134.902h-1.908zm-1.684 6.563h3.693c.516 0 1.426-.076 1.987-.544.73-.608.853-1.26.853-1.673 0-.945-.494-1.64-.977-2a2.1 2.1 0 0 0 .775-1.63c0-.325-.157-2.075-2.952-2.075h-3.38l.001 7.922" }) + ] + } + ); +}); + +export { SiObb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.cjs new file mode 100644 index 000000000..2103d2502 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#353E58"; +const SiObservable = React__namespace.forwardRef(function SiObservable2({ title = "Observable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 20c-1.065 0-1.988-.232-2.77-.696a4.7 4.7 0 0 1-1.794-1.89 9.97 9.97 0 0 1-.916-2.53A13.613 13.613 0 0 1 6.23 12c0-.766.05-1.499.152-2.2.1-.699.285-1.41.556-2.132A6.803 6.803 0 0 1 7.98 5.79a4.725 4.725 0 0 1 1.668-1.293C10.337 4.165 11.12 4 12 4c1.065 0 1.988.232 2.77.696a4.7 4.7 0 0 1 1.794 1.89c.418.795.723 1.639.916 2.53.192.891.29 1.853.29 2.884 0 .766-.05 1.499-.152 2.2a9.812 9.812 0 0 1-.567 2.132 7.226 7.226 0 0 1-1.042 1.878c-.418.53-.97.962-1.657 1.293-.688.332-1.471.497-2.352.497zm2.037-5.882c.551-.554.858-1.32.848-2.118 0-.824-.276-1.53-.827-2.118C13.506 9.294 12.82 9 12 9c-.82 0-1.506.294-2.058.882A2.987 2.987 0 0 0 9.115 12c0 .824.276 1.53.827 2.118.552.588 1.238.882 2.058.882.82 0 1.5-.294 2.037-.882zM12 24c6.372 0 11.538-5.373 11.538-12S18.372 0 12 0 .462 5.373.462 12 5.628 24 12 24Z" }) + ] + } + ); +}); + +exports.default = SiObservable; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.d.ts new file mode 100644 index 000000000..e58a99033 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#353E58"; +declare const SiObservable: IconType; +export { SiObservable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.mjs new file mode 100644 index 000000000..92a6304ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObservable.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#353E58"; +const SiObservable = React.forwardRef(function SiObservable2({ title = "Observable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 20c-1.065 0-1.988-.232-2.77-.696a4.7 4.7 0 0 1-1.794-1.89 9.97 9.97 0 0 1-.916-2.53A13.613 13.613 0 0 1 6.23 12c0-.766.05-1.499.152-2.2.1-.699.285-1.41.556-2.132A6.803 6.803 0 0 1 7.98 5.79a4.725 4.725 0 0 1 1.668-1.293C10.337 4.165 11.12 4 12 4c1.065 0 1.988.232 2.77.696a4.7 4.7 0 0 1 1.794 1.89c.418.795.723 1.639.916 2.53.192.891.29 1.853.29 2.884 0 .766-.05 1.499-.152 2.2a9.812 9.812 0 0 1-.567 2.132 7.226 7.226 0 0 1-1.042 1.878c-.418.53-.97.962-1.657 1.293-.688.332-1.471.497-2.352.497zm2.037-5.882c.551-.554.858-1.32.848-2.118 0-.824-.276-1.53-.827-2.118C13.506 9.294 12.82 9 12 9c-.82 0-1.506.294-2.058.882A2.987 2.987 0 0 0 9.115 12c0 .824.276 1.53.827 2.118.552.588 1.238.882 2.058.882.82 0 1.5-.294 2.037-.882zM12 24c6.372 0 11.538-5.373 11.538-12S18.372 0 12 0 .462 5.373.462 12 5.628 24 12 24Z" }) + ] + } + ); +}); + +export { SiObservable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.cjs new file mode 100644 index 000000000..fd8f07021 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7C3AED"; +const SiObsidian = React__namespace.forwardRef(function SiObsidian2({ title = "Obsidian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.355 18.538a68.967 68.959 0 0 0 1.858-2.954.81.81 0 0 0-.062-.9c-.516-.685-1.504-2.075-2.042-3.362-.553-1.321-.636-3.375-.64-4.377a1.707 1.707 0 0 0-.358-1.05l-3.198-4.064a3.744 3.744 0 0 1-.076.543c-.106.503-.307 1.004-.536 1.5-.134.29-.29.6-.446.914l-.31.626c-.516 1.068-.997 2.227-1.132 3.59-.124 1.26.046 2.73.815 4.481.128.011.257.025.386.044a6.363 6.363 0 0 1 3.326 1.505c.916.79 1.744 1.922 2.415 3.5zM8.199 22.569c.073.012.146.02.22.02.78.024 2.095.092 3.16.29.87.16 2.593.64 4.01 1.055 1.083.316 2.198-.548 2.355-1.664.114-.814.33-1.735.725-2.58l-.01.005c-.67-1.87-1.522-3.078-2.416-3.849a5.295 5.295 0 0 0-2.778-1.257c-1.54-.216-2.952.19-3.84.45.532 2.218.368 4.829-1.425 7.531zM5.533 9.938c-.023.1-.056.197-.098.29L2.82 16.059a1.602 1.602 0 0 0 .313 1.772l4.116 4.24c2.103-3.101 1.796-6.02.836-8.3-.728-1.73-1.832-3.081-2.55-3.831zM9.32 14.01c.615-.183 1.606-.465 2.745-.534-.683-1.725-.848-3.233-.716-4.577.154-1.552.7-2.847 1.235-3.95.113-.235.223-.454.328-.664.149-.297.288-.577.419-.86.217-.47.379-.885.46-1.27.08-.38.08-.72-.014-1.043-.095-.325-.297-.675-.68-1.06a1.6 1.6 0 0 0-1.475.36l-4.95 4.452a1.602 1.602 0 0 0-.513.952l-.427 2.83c.672.59 2.328 2.316 3.335 4.711.09.21.175.43.253.653z" }) + ] + } + ); +}); + +exports.default = SiObsidian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.d.ts new file mode 100644 index 000000000..ac480c923 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7C3AED"; +declare const SiObsidian: IconType; +export { SiObsidian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.mjs new file mode 100644 index 000000000..283bdb871 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObsidian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7C3AED"; +const SiObsidian = React.forwardRef(function SiObsidian2({ title = "Obsidian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.355 18.538a68.967 68.959 0 0 0 1.858-2.954.81.81 0 0 0-.062-.9c-.516-.685-1.504-2.075-2.042-3.362-.553-1.321-.636-3.375-.64-4.377a1.707 1.707 0 0 0-.358-1.05l-3.198-4.064a3.744 3.744 0 0 1-.076.543c-.106.503-.307 1.004-.536 1.5-.134.29-.29.6-.446.914l-.31.626c-.516 1.068-.997 2.227-1.132 3.59-.124 1.26.046 2.73.815 4.481.128.011.257.025.386.044a6.363 6.363 0 0 1 3.326 1.505c.916.79 1.744 1.922 2.415 3.5zM8.199 22.569c.073.012.146.02.22.02.78.024 2.095.092 3.16.29.87.16 2.593.64 4.01 1.055 1.083.316 2.198-.548 2.355-1.664.114-.814.33-1.735.725-2.58l-.01.005c-.67-1.87-1.522-3.078-2.416-3.849a5.295 5.295 0 0 0-2.778-1.257c-1.54-.216-2.952.19-3.84.45.532 2.218.368 4.829-1.425 7.531zM5.533 9.938c-.023.1-.056.197-.098.29L2.82 16.059a1.602 1.602 0 0 0 .313 1.772l4.116 4.24c2.103-3.101 1.796-6.02.836-8.3-.728-1.73-1.832-3.081-2.55-3.831zM9.32 14.01c.615-.183 1.606-.465 2.745-.534-.683-1.725-.848-3.233-.716-4.577.154-1.552.7-2.847 1.235-3.95.113-.235.223-.454.328-.664.149-.297.288-.577.419-.86.217-.47.379-.885.46-1.27.08-.38.08-.72-.014-1.043-.095-.325-.297-.675-.68-1.06a1.6 1.6 0 0 0-1.475.36l-4.95 4.452a1.602 1.602 0 0 0-.513.952l-.427 2.83c.672.59 2.328 2.316 3.335 4.711.09.21.175.43.253.653z" }) + ] + } + ); +}); + +export { SiObsidian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.cjs new file mode 100644 index 000000000..5144fba61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#302E31"; +const SiObsstudio = React__namespace.forwardRef(function SiObsstudio2({ title = "OBS Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,24C5.383,24,0,18.617,0,12S5.383,0,12,0s12,5.383,12,12S18.617,24,12,24z M12,1.109 C5.995,1.109,1.11,5.995,1.11,12C1.11,18.005,5.995,22.89,12,22.89S22.89,18.005,22.89,12C22.89,5.995,18.005,1.109,12,1.109z M6.182,5.99c0.352-1.698,1.503-3.229,3.05-3.996c-0.269,0.273-0.595,0.483-0.844,0.78c-1.02,1.1-1.48,2.692-1.199,4.156 c0.355,2.235,2.455,4.06,4.732,4.028c1.765,0.079,3.485-0.937,4.348-2.468c1.848,0.063,3.645,1.017,4.7,2.548 c0.54,0.799,0.962,1.736,0.991,2.711c-0.342-1.295-1.202-2.446-2.375-3.095c-1.135-0.639-2.529-0.802-3.772-0.425 c-1.56,0.448-2.849,1.723-3.293,3.293c-0.377,1.25-0.216,2.628,0.377,3.772c-0.825,1.429-2.315,2.449-3.932,2.756 c-1.244,0.261-2.551,0.059-3.709-0.464c1.036,0.302,2.161,0.355,3.191-0.011c1.381-0.457,2.522-1.567,3.024-2.935 c0.556-1.49,0.345-3.261-0.591-4.54c-0.7-1.007-1.803-1.717-3.002-1.969c-0.38-0.068-0.764-0.098-1.148-0.134 c-0.611-1.231-0.834-2.66-0.528-3.996L6.182,5.99z" }) + ] + } + ); +}); + +exports.default = SiObsstudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.d.ts new file mode 100644 index 000000000..bf1e71816 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#302E31"; +declare const SiObsstudio: IconType; +export { SiObsstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.mjs new file mode 100644 index 000000000..464728578 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObsstudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#302E31"; +const SiObsstudio = React.forwardRef(function SiObsstudio2({ title = "OBS Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,24C5.383,24,0,18.617,0,12S5.383,0,12,0s12,5.383,12,12S18.617,24,12,24z M12,1.109 C5.995,1.109,1.11,5.995,1.11,12C1.11,18.005,5.995,22.89,12,22.89S22.89,18.005,22.89,12C22.89,5.995,18.005,1.109,12,1.109z M6.182,5.99c0.352-1.698,1.503-3.229,3.05-3.996c-0.269,0.273-0.595,0.483-0.844,0.78c-1.02,1.1-1.48,2.692-1.199,4.156 c0.355,2.235,2.455,4.06,4.732,4.028c1.765,0.079,3.485-0.937,4.348-2.468c1.848,0.063,3.645,1.017,4.7,2.548 c0.54,0.799,0.962,1.736,0.991,2.711c-0.342-1.295-1.202-2.446-2.375-3.095c-1.135-0.639-2.529-0.802-3.772-0.425 c-1.56,0.448-2.849,1.723-3.293,3.293c-0.377,1.25-0.216,2.628,0.377,3.772c-0.825,1.429-2.315,2.449-3.932,2.756 c-1.244,0.261-2.551,0.059-3.709-0.464c1.036,0.302,2.161,0.355,3.191-0.011c1.381-0.457,2.522-1.567,3.024-2.935 c0.556-1.49,0.345-3.261-0.591-4.54c-0.7-1.007-1.803-1.717-3.002-1.969c-0.38-0.068-0.764-0.098-1.148-0.134 c-0.611-1.231-0.834-2.66-0.528-3.996L6.182,5.99z" }) + ] + } + ); +}); + +export { SiObsstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.cjs new file mode 100644 index 000000000..e8c012e2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D2BCFD"; +const SiObtainium = React__namespace.forwardRef(function SiObtainium2({ title = "Obtainium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.85.97c-.269.004-.77.17-2.751.899-.668.245-1.291.48-1.758.658a40 40 0 0 0-.737.292 1 1 0 0 0-.083.04.526.526 0 0 0-.218.6c.026.092.143.429.308.89a262 262 0 0 0 1.383 3.781q.081.211.104.259a.6.6 0 0 0 .168.226c.07.05.162.07.288.06.252-.02.656-.154 1.395-.415.745-.263 1.112-.394 1.31-.44a.4.4 0 0 1 .188-.018c.037.01.062.03.103.063.058.048.082.073.09.11a.6.6 0 0 1-.031.206c-.03.121-.198.582-.43 1.197a192 192 0 0 1-1.663 4.227 41 41 0 0 1-.38.897l-.028.058-.014.023-.08.09a.14.14 0 0 1-.077.041c-.063.013-.175-.012-.4-.113-.45-.202-1.349-.702-3.246-1.75-.68-.373-1.31-.727-1.782-.996a41 41 0 0 1-.74-.433l-.073-.05c-.086-.079-.117-.163-.104-.243s.074-.16.185-.224c.044-.026.217-.1.451-.193.234-.092.53-.205.835-.315s.599-.222.829-.312l.289-.117q.113-.048.153-.07a.5.5 0 0 0 .191-.172.45.45 0 0 0 .044-.278c-.023-.238-.147-.604-.385-1.247-.207-.56-.583-1.588-.836-2.283-.126-.347-.253-.69-.357-.962a11 11 0 0 0-.216-.542.65.65 0 0 0-.266-.303.5.5 0 0 0-.369-.042q-.053.013-.278.092A280 280 0 0 0 3.371 5.8q-.108.041-.176.069-.065.025-.086.036c-.206.107-.41.354-.537.644-.03.067-.191.482-.433 1.104s-.562 1.45-.902 2.333a131 131 0 0 0-.943 2.501q-.15.418-.222.648a1.3 1.3 0 0 0-.072.297c0 .157.04.279.196.416s.423.296.886.55c.407.225 2.627 1.455 4.932 2.735 8.284 4.598 10.051 5.577 10.356 5.738l.043.023v-.008c.16.082.29.138.397.143.118.005.215-.04.315-.128a.2.2 0 0 0 .036-.048q.02-.035.048-.093.057-.116.154-.345c.13-.307.32-.777.589-1.456a903 903 0 0 0 2.687-6.944c.924-2.405 1.763-4.61 2.372-6.224a272 272 0 0 0 .919-2.474q.034-.097.05-.15.01-.027.014-.044c.003-.011.006-.015.006-.028 0-.123-.061-.248-.174-.37a2 2 0 0 0-.488-.362C20.29 2.678 18.755 1.83 17.94 1.401a8 8 0 0 0-.784-.376.7.7 0 0 0-.306-.055" }) + ] + } + ); +}); + +exports.default = SiObtainium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.d.ts new file mode 100644 index 000000000..f82d171eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D2BCFD"; +declare const SiObtainium: IconType; +export { SiObtainium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.mjs new file mode 100644 index 000000000..19b7b5ca1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiObtainium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D2BCFD"; +const SiObtainium = React.forwardRef(function SiObtainium2({ title = "Obtainium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.85.97c-.269.004-.77.17-2.751.899-.668.245-1.291.48-1.758.658a40 40 0 0 0-.737.292 1 1 0 0 0-.083.04.526.526 0 0 0-.218.6c.026.092.143.429.308.89a262 262 0 0 0 1.383 3.781q.081.211.104.259a.6.6 0 0 0 .168.226c.07.05.162.07.288.06.252-.02.656-.154 1.395-.415.745-.263 1.112-.394 1.31-.44a.4.4 0 0 1 .188-.018c.037.01.062.03.103.063.058.048.082.073.09.11a.6.6 0 0 1-.031.206c-.03.121-.198.582-.43 1.197a192 192 0 0 1-1.663 4.227 41 41 0 0 1-.38.897l-.028.058-.014.023-.08.09a.14.14 0 0 1-.077.041c-.063.013-.175-.012-.4-.113-.45-.202-1.349-.702-3.246-1.75-.68-.373-1.31-.727-1.782-.996a41 41 0 0 1-.74-.433l-.073-.05c-.086-.079-.117-.163-.104-.243s.074-.16.185-.224c.044-.026.217-.1.451-.193.234-.092.53-.205.835-.315s.599-.222.829-.312l.289-.117q.113-.048.153-.07a.5.5 0 0 0 .191-.172.45.45 0 0 0 .044-.278c-.023-.238-.147-.604-.385-1.247-.207-.56-.583-1.588-.836-2.283-.126-.347-.253-.69-.357-.962a11 11 0 0 0-.216-.542.65.65 0 0 0-.266-.303.5.5 0 0 0-.369-.042q-.053.013-.278.092A280 280 0 0 0 3.371 5.8q-.108.041-.176.069-.065.025-.086.036c-.206.107-.41.354-.537.644-.03.067-.191.482-.433 1.104s-.562 1.45-.902 2.333a131 131 0 0 0-.943 2.501q-.15.418-.222.648a1.3 1.3 0 0 0-.072.297c0 .157.04.279.196.416s.423.296.886.55c.407.225 2.627 1.455 4.932 2.735 8.284 4.598 10.051 5.577 10.356 5.738l.043.023v-.008c.16.082.29.138.397.143.118.005.215-.04.315-.128a.2.2 0 0 0 .036-.048q.02-.035.048-.093.057-.116.154-.345c.13-.307.32-.777.589-1.456a903 903 0 0 0 2.687-6.944c.924-2.405 1.763-4.61 2.372-6.224a272 272 0 0 0 .919-2.474q.034-.097.05-.15.01-.027.014-.044c.003-.011.006-.015.006-.028 0-.123-.061-.248-.174-.37a2 2 0 0 0-.488-.362C20.29 2.678 18.755 1.83 17.94 1.401a8 8 0 0 0-.784-.376.7.7 0 0 0-.306-.055" }) + ] + } + ); +}); + +export { SiObtainium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.cjs new file mode 100644 index 000000000..9ec59a101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC6813"; +const SiOcaml = React__namespace.forwardRef(function SiOcaml2({ title = "OCaml", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.178 21.637c-.085-.17-.187-.524-.255-.676-.067-.135-.27-.506-.37-.625-.22-.253-.27-.27-.338-.608-.12-.574-.405-1.588-.76-2.296-.187-.372-.49-.677-.761-.947-.236-.236-.777-.624-.878-.607-.895.169-1.166 1.046-1.587 1.739-.237.388-.473.71-.66 1.115-.167.371-.151.793-.439 1.115a2.952 2.952 0 00-.624 1.097c-.034.084-.101.929-.186 1.131l1.318-.084c1.233.085.877.557 2.787.456l3.022-.1a5.376 5.376 0 00-.27-.71zM20.96 1.539H3.023A3.02 3.02 0 000 4.56v6.587c.44-.152 1.047-1.08 1.25-1.3.337-.389.405-.895.574-1.2.389-.709.456-1.215 1.334-1.215.406 0 .575.1.845.473.186.253.523.743.675 1.064.186.371.474.86.609.962.1.068.185.136.27.17.135.05.253-.051.354-.12.118-.1.17-.286.287-.556.17-.39.339-.827.44-.997.169-.27.236-.608.422-.76.27-.236.641-.253.743-.27.557-.118.81.27 1.08.507.186.168.423.49.609.91.135.339.304.661.388.846.068.185.237.49.338.86.101.322.337.575.44.744 0 0 .152.406 1.03.778a7.505 7.505 0 00.81.286c.39.135.76.12 1.233.068.338 0 .524-.49.676-.878.084-.237.185-.895.236-1.081.05-.185-.085-.32.034-.49.135-.186.22-.203.287-.439.17-.523 1.114-.54 1.655-.54.456 0 .389.44 1.149.287.439-.085.86.05 1.318.185.388.102.76.22.98.473.134.17.489.997.134 1.031.033.033.067.118.118.151-.085.322-.422.085-.625.051-.253-.05-.44 0-.693.118-.439.187-1.063.17-1.452.49-.32.271-.32.861-.473 1.2 0 0-.422 1.063-1.317 1.722-.237.17-.692.574-1.672.726-.44.068-.86.068-1.318.05-.22-.016-.438-.016-.658-.016-.136 0-.575-.017-.558.034l-.05.119a.6.6 0 00.033.169c.017.1.017.185.034.27 0 .185-.017.388 0 .574.017.388.17.743.186 1.148.017.44.236.913.456 1.267.085.135.203.152.254.32.067.186 0 .406.033.609.118.794.355 1.638.71 2.364v.017c.439-.067.895-.236 1.47-.32 1.063-.153 2.532-.085 3.478-.17 2.399-.22 3.7.98 5.844.49V4.562a3.045 3.045 0 00-3.04-3.023zm-8.951 14.187c0-.034 0-.034 0 0zm-6.47 2.769c.17-.372.271-.778.406-1.15.135-.354.337-.86.693-1.046-.05-.05-.744-.068-.929-.085a7.406 7.406 0 01-.608-.084 22.976 22.976 0 01-1.15-.236c-.22-.051-.979-.322-1.13-.39-.39-.168-.642-.658-.93-.607-.185.034-.37.101-.49.287-.1.152-.134.423-.202.608-.084.203-.22.405-.32.608-.238.354-.626.676-.795 1.03-.033.085-.05.169-.084.254v4.07c.202.034.405.068.624.135 1.69.456 2.095.49 3.75.304l.152-.017c.118-.27.22-1.165.304-1.435.067-.22.153-.39.187-.591.033-.203 0-.406-.017-.59-.034-.491.354-.661.54-1.065z" }) + ] + } + ); +}); + +exports.default = SiOcaml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.d.ts new file mode 100644 index 000000000..66ffe407e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC6813"; +declare const SiOcaml: IconType; +export { SiOcaml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.mjs new file mode 100644 index 000000000..db87e9071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOcaml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC6813"; +const SiOcaml = React.forwardRef(function SiOcaml2({ title = "OCaml", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.178 21.637c-.085-.17-.187-.524-.255-.676-.067-.135-.27-.506-.37-.625-.22-.253-.27-.27-.338-.608-.12-.574-.405-1.588-.76-2.296-.187-.372-.49-.677-.761-.947-.236-.236-.777-.624-.878-.607-.895.169-1.166 1.046-1.587 1.739-.237.388-.473.71-.66 1.115-.167.371-.151.793-.439 1.115a2.952 2.952 0 00-.624 1.097c-.034.084-.101.929-.186 1.131l1.318-.084c1.233.085.877.557 2.787.456l3.022-.1a5.376 5.376 0 00-.27-.71zM20.96 1.539H3.023A3.02 3.02 0 000 4.56v6.587c.44-.152 1.047-1.08 1.25-1.3.337-.389.405-.895.574-1.2.389-.709.456-1.215 1.334-1.215.406 0 .575.1.845.473.186.253.523.743.675 1.064.186.371.474.86.609.962.1.068.185.136.27.17.135.05.253-.051.354-.12.118-.1.17-.286.287-.556.17-.39.339-.827.44-.997.169-.27.236-.608.422-.76.27-.236.641-.253.743-.27.557-.118.81.27 1.08.507.186.168.423.49.609.91.135.339.304.661.388.846.068.185.237.49.338.86.101.322.337.575.44.744 0 0 .152.406 1.03.778a7.505 7.505 0 00.81.286c.39.135.76.12 1.233.068.338 0 .524-.49.676-.878.084-.237.185-.895.236-1.081.05-.185-.085-.32.034-.49.135-.186.22-.203.287-.439.17-.523 1.114-.54 1.655-.54.456 0 .389.44 1.149.287.439-.085.86.05 1.318.185.388.102.76.22.98.473.134.17.489.997.134 1.031.033.033.067.118.118.151-.085.322-.422.085-.625.051-.253-.05-.44 0-.693.118-.439.187-1.063.17-1.452.49-.32.271-.32.861-.473 1.2 0 0-.422 1.063-1.317 1.722-.237.17-.692.574-1.672.726-.44.068-.86.068-1.318.05-.22-.016-.438-.016-.658-.016-.136 0-.575-.017-.558.034l-.05.119a.6.6 0 00.033.169c.017.1.017.185.034.27 0 .185-.017.388 0 .574.017.388.17.743.186 1.148.017.44.236.913.456 1.267.085.135.203.152.254.32.067.186 0 .406.033.609.118.794.355 1.638.71 2.364v.017c.439-.067.895-.236 1.47-.32 1.063-.153 2.532-.085 3.478-.17 2.399-.22 3.7.98 5.844.49V4.562a3.045 3.045 0 00-3.04-3.023zm-8.951 14.187c0-.034 0-.034 0 0zm-6.47 2.769c.17-.372.271-.778.406-1.15.135-.354.337-.86.693-1.046-.05-.05-.744-.068-.929-.085a7.406 7.406 0 01-.608-.084 22.976 22.976 0 01-1.15-.236c-.22-.051-.979-.322-1.13-.39-.39-.168-.642-.658-.93-.607-.185.034-.37.101-.49.287-.1.152-.134.423-.202.608-.084.203-.22.405-.32.608-.238.354-.626.676-.795 1.03-.033.085-.05.169-.084.254v4.07c.202.034.405.068.624.135 1.69.456 2.095.49 3.75.304l.152-.017c.118-.27.22-1.165.304-1.435.067-.22.153-.39.187-.591.033-.203 0-.406-.017-.59-.034-.491.354-.661.54-1.065z" }) + ] + } + ); +}); + +export { SiOcaml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.cjs new file mode 100644 index 000000000..2078e3c09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007DBA"; +const SiOclc = React__namespace.forwardRef(function SiOclc2({ title = "OCLC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.628 7.117C18.366 2.388 13.69-.691 8.746.133 3.478 1.01-.076 5.97.8 11.214c.605 3.685 3.22 6.52 6.529 7.602a5.34 5.34 0 0 0 2.42 4.304c2.474 1.623 5.809.94 7.419-1.547.142-.219.27-.45.386-.682a7.53 7.53 0 0 0 5.512-5.322c.915-3.35-.592-6.79-3.451-8.465zM7.393 17.863c-2.253-1.057-3.966-3.234-4.417-5.914-.708-4.317 2.086-8.362 6.259-9.045 2.975-.49 5.847.863 7.495 3.247a7.52 7.52 0 0 0-8.14 5.463 7.46 7.46 0 0 0-.076 3.685 5.45 5.45 0 0 0-1.133 2.577zm2.1-3.518c0-.541.077-1.108.23-1.662.916-3.324 4.264-5.321 7.484-4.42 3.22.89 5.1 4.291 4.172 7.641a6.3 6.3 0 0 1-3.503 4.11 5.37 5.37 0 0 0-2.253-5.85 5.34 5.34 0 0 0-6.143.181zm6.477 6.958c-1.287 1.958-3.85 2.538-5.743 1.301s-2.383-3.84-1.095-5.785c1.275-1.958 3.85-2.538 5.744-1.301 1.893 1.25 2.382 3.852 1.094 5.785" }) + ] + } + ); +}); + +exports.default = SiOclc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.d.ts new file mode 100644 index 000000000..fb8bb4c88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007DBA"; +declare const SiOclc: IconType; +export { SiOclc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.mjs new file mode 100644 index 000000000..f47577bfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOclc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007DBA"; +const SiOclc = React.forwardRef(function SiOclc2({ title = "OCLC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.628 7.117C18.366 2.388 13.69-.691 8.746.133 3.478 1.01-.076 5.97.8 11.214c.605 3.685 3.22 6.52 6.529 7.602a5.34 5.34 0 0 0 2.42 4.304c2.474 1.623 5.809.94 7.419-1.547.142-.219.27-.45.386-.682a7.53 7.53 0 0 0 5.512-5.322c.915-3.35-.592-6.79-3.451-8.465zM7.393 17.863c-2.253-1.057-3.966-3.234-4.417-5.914-.708-4.317 2.086-8.362 6.259-9.045 2.975-.49 5.847.863 7.495 3.247a7.52 7.52 0 0 0-8.14 5.463 7.46 7.46 0 0 0-.076 3.685 5.45 5.45 0 0 0-1.133 2.577zm2.1-3.518c0-.541.077-1.108.23-1.662.916-3.324 4.264-5.321 7.484-4.42 3.22.89 5.1 4.291 4.172 7.641a6.3 6.3 0 0 1-3.503 4.11 5.37 5.37 0 0 0-2.253-5.85 5.34 5.34 0 0 0-6.143.181zm6.477 6.958c-1.287 1.958-3.85 2.538-5.743 1.301s-2.383-3.84-1.095-5.785c1.275-1.958 3.85-2.538 5.744-1.301 1.893 1.25 2.382 3.852 1.094 5.785" }) + ] + } + ); +}); + +export { SiOclc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.cjs new file mode 100644 index 000000000..67cd722c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOclif = React__namespace.forwardRef(function SiOclif2({ title = "oclif", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.887 8.804a.583.583 0 0 0-.417-.172H.585A.586.586 0 0 0 0 9.219v5.562c0 .325.262.587.585.587H14.47a.583.583 0 0 0 .417-.172l2.633-2.774a.607.607 0 0 0 0-.837l-2.633-2.781zm-4.38 1.684c.07-.066.162-.1.257-.097.06.001.119.017.171.047.055.03.1.073.134.125a.31.31 0 0 1 .05.172.306.306 0 0 1-.05.173.367.367 0 0 1-.134.124.364.364 0 0 1-.486-.124.316.316 0 0 1-.048-.173.326.326 0 0 1 .106-.247zm-6.804 2.86a1.102 1.102 0 0 1-1.971 0 1.424 1.424 0 0 1-.15-.66c-.002-.221.05-.44.153-.635.095-.185.238-.342.413-.453.348-.22.792-.22 1.14 0 .175.111.318.268.413.453.103.195.155.414.153.635.003.23-.048.456-.151.66zm2.465-1.083c-.142-.21-.381-.357-.645-.34a.544.544 0 0 0-.318.1.688.688 0 0 0-.234.27 1.002 1.002 0 0 0-.084.422c0 .135.029.268.084.39a.581.581 0 0 0 .545.356c.089-.003.152-.01.191-.02a.567.567 0 0 0 .128-.054.858.858 0 0 0 .292-.243l.332.385a1.223 1.223 0 0 1-.948.426 1.196 1.196 0 0 1-.617-.16 1.136 1.136 0 0 1-.428-.45 1.348 1.348 0 0 1-.155-.645c-.002-.226.05-.448.155-.648.098-.189.246-.347.428-.458.19-.115.407-.174.628-.172.19-.001.379.04.552.12a.968.968 0 0 1 .404.345l-.31.376zm2.858 1.618H7.14v-.446h.655V10.87h-.619v-.453h1.2v3.02h.65v.446zm2.581 0H9.943v-.462h.574v-1.474h-.55v-.46h1.118v1.934h.514l.008.462zm2.812-2.8a1.2 1.2 0 0 0-.264-.194.56.56 0 0 0-.245-.052.44.44 0 0 0-.355.141.627.627 0 0 0-.12.417v.098h.732v.456h-.729v1.934h-.557v-1.94h-.514v-.457h.514v-.1c-.005-.192.04-.382.132-.55a.885.885 0 0 1 .357-.345c.153-.08.324-.121.497-.119.298-.003.585.118.792.334l-.24.377zm-11.213 1.18c.047.136.07.279.067.423.002.144-.02.286-.067.422a.637.637 0 0 1-.194.286.458.458 0 0 1-.297.101.446.446 0 0 1-.291-.1.635.635 0 0 1-.195-.279 1.272 1.272 0 0 1-.067-.43c-.003-.144.02-.287.068-.422a.613.613 0 0 1 .192-.273.455.455 0 0 1 .295-.088.477.477 0 0 1 .297.094c.087.07.154.16.192.266zM24 15.088a.28.28 0 0 1-.28.28h-4.67a.28.28 0 0 1-.279-.28v-.274a.28.28 0 0 1 .28-.28h4.671a.28.28 0 0 1 .278.28v.274z" }) + ] + } + ); +}); + +exports.default = SiOclif; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.d.ts new file mode 100644 index 000000000..ba1585f68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOclif: IconType; +export { SiOclif as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.mjs new file mode 100644 index 000000000..667144089 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOclif.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOclif = React.forwardRef(function SiOclif2({ title = "oclif", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.887 8.804a.583.583 0 0 0-.417-.172H.585A.586.586 0 0 0 0 9.219v5.562c0 .325.262.587.585.587H14.47a.583.583 0 0 0 .417-.172l2.633-2.774a.607.607 0 0 0 0-.837l-2.633-2.781zm-4.38 1.684c.07-.066.162-.1.257-.097.06.001.119.017.171.047.055.03.1.073.134.125a.31.31 0 0 1 .05.172.306.306 0 0 1-.05.173.367.367 0 0 1-.134.124.364.364 0 0 1-.486-.124.316.316 0 0 1-.048-.173.326.326 0 0 1 .106-.247zm-6.804 2.86a1.102 1.102 0 0 1-1.971 0 1.424 1.424 0 0 1-.15-.66c-.002-.221.05-.44.153-.635.095-.185.238-.342.413-.453.348-.22.792-.22 1.14 0 .175.111.318.268.413.453.103.195.155.414.153.635.003.23-.048.456-.151.66zm2.465-1.083c-.142-.21-.381-.357-.645-.34a.544.544 0 0 0-.318.1.688.688 0 0 0-.234.27 1.002 1.002 0 0 0-.084.422c0 .135.029.268.084.39a.581.581 0 0 0 .545.356c.089-.003.152-.01.191-.02a.567.567 0 0 0 .128-.054.858.858 0 0 0 .292-.243l.332.385a1.223 1.223 0 0 1-.948.426 1.196 1.196 0 0 1-.617-.16 1.136 1.136 0 0 1-.428-.45 1.348 1.348 0 0 1-.155-.645c-.002-.226.05-.448.155-.648.098-.189.246-.347.428-.458.19-.115.407-.174.628-.172.19-.001.379.04.552.12a.968.968 0 0 1 .404.345l-.31.376zm2.858 1.618H7.14v-.446h.655V10.87h-.619v-.453h1.2v3.02h.65v.446zm2.581 0H9.943v-.462h.574v-1.474h-.55v-.46h1.118v1.934h.514l.008.462zm2.812-2.8a1.2 1.2 0 0 0-.264-.194.56.56 0 0 0-.245-.052.44.44 0 0 0-.355.141.627.627 0 0 0-.12.417v.098h.732v.456h-.729v1.934h-.557v-1.94h-.514v-.457h.514v-.1c-.005-.192.04-.382.132-.55a.885.885 0 0 1 .357-.345c.153-.08.324-.121.497-.119.298-.003.585.118.792.334l-.24.377zm-11.213 1.18c.047.136.07.279.067.423.002.144-.02.286-.067.422a.637.637 0 0 1-.194.286.458.458 0 0 1-.297.101.446.446 0 0 1-.291-.1.635.635 0 0 1-.195-.279 1.272 1.272 0 0 1-.067-.43c-.003-.144.02-.287.068-.422a.613.613 0 0 1 .192-.273.455.455 0 0 1 .295-.088.477.477 0 0 1 .297.094c.087.07.154.16.192.266zM24 15.088a.28.28 0 0 1-.28.28h-4.67a.28.28 0 0 1-.279-.28v-.274a.28.28 0 0 1 .28-.28h4.671a.28.28 0 0 1 .278.28v.274z" }) + ] + } + ); +}); + +export { SiOclif as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.cjs new file mode 100644 index 000000000..e2439a2eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOctanerender = React__namespace.forwardRef(function SiOctanerender2({ title = "Octane Render", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.71 0C8.24 3.9 6.92 6 6.64 9.14c-.01-.01-.03-.01-.04-.02-1.28-.73-2.3-2.22-2.91-3.73l-2.23.87c1.64 4.95 2.81 7.13 5.39 8.94-.02.01-.03.02-.05.03-1.27.74-3.07.89-4.68.66l-.36 2.37c5.11 1.06 7.59 1.15 10.46-.19v.06c0 1.47-.77 3.09-1.78 4.38L12.3 24c3.46-3.89 4.78-5.99 5.06-9.13.02.01.03.01.05.02 1.27.73 2.29 2.21 2.9 3.73l2.23-.87c-1.64-4.95-2.8-7.14-5.39-8.95.02-.01.03-.02.05-.03 1.27-.74 3.07-.88 4.68-.65l.36-2.38c-5.1-1.06-7.58-1.14-10.44.19v-.06c0-1.47.77-3.09 1.78-4.38L11.71 0zm.19 8.82a3.181 3.181 0 0 1 3.28 3.07 3.181 3.181 0 0 1-3.07 3.28 3.181 3.181 0 0 1-3.28-3.07 3.181 3.181 0 0 1 3.07-3.28z" }) + ] + } + ); +}); + +exports.default = SiOctanerender; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.d.ts new file mode 100644 index 000000000..b270dbde6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOctanerender: IconType; +export { SiOctanerender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.mjs new file mode 100644 index 000000000..f64db7565 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctanerender.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOctanerender = React.forwardRef(function SiOctanerender2({ title = "Octane Render", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.71 0C8.24 3.9 6.92 6 6.64 9.14c-.01-.01-.03-.01-.04-.02-1.28-.73-2.3-2.22-2.91-3.73l-2.23.87c1.64 4.95 2.81 7.13 5.39 8.94-.02.01-.03.02-.05.03-1.27.74-3.07.89-4.68.66l-.36 2.37c5.11 1.06 7.59 1.15 10.46-.19v.06c0 1.47-.77 3.09-1.78 4.38L12.3 24c3.46-3.89 4.78-5.99 5.06-9.13.02.01.03.01.05.02 1.27.73 2.29 2.21 2.9 3.73l2.23-.87c-1.64-4.95-2.8-7.14-5.39-8.95.02-.01.03-.02.05-.03 1.27-.74 3.07-.88 4.68-.65l.36-2.38c-5.1-1.06-7.58-1.14-10.44.19v-.06c0-1.47.77-3.09 1.78-4.38L11.71 0zm.19 8.82a3.181 3.181 0 0 1 3.28 3.07 3.181 3.181 0 0 1-3.07 3.28 3.181 3.181 0 0 1-3.28-3.07 3.181 3.181 0 0 1 3.07-3.28z" }) + ] + } + ); +}); + +export { SiOctanerender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.cjs new file mode 100644 index 000000000..32944f4f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0790C0"; +const SiOctave = React__namespace.forwardRef(function SiOctave2({ title = "Octave", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5.007c-2.414-.09-4.658.715-6.286 2.485C2.913 3.906 2.188 5.75 1.987 7.77h-.42C.703 7.77 0 8.473 0 9.335v4.743c0 .863.702 1.567 1.565 1.567h2.091a16.899 16.899 0 002.57 3.687c4.46 4.848 10.696 6.036 14.561 3.016h2.102c.577 0 1.05-.473 1.05-1.05V18.43a1.03 1.03 0 00-.257-.668c.858-3.433-.045-7.642-2.52-11.219.002-.017.01-.032.01-.049V4.482a.822.822 0 00-.816-.819h-1.703C16.142 1.372 13.218.11 10.5.007zm1.75 2.18c1.78-.01 3.69.62 5.425 1.85a.797.797 0 00-.15.445v2.013c0 .449.368.82.816.82h2.016a.788.788 0 00.392-.116c2.248 3.302 2.735 7.322 1.24 10.18h-1.964c-.579 0-1.052.475-1.052 1.051v1.794c-2.991 1.3-7.005.222-9.964-2.992a12.743 12.743 0 01-1.55-2.098c.256-.279.416-.647.416-1.056V9.335c0-.862-.702-1.565-1.565-1.565H5.9c.238-1.364.781-2.612 1.688-3.596 1.225-1.331 2.88-1.98 4.661-1.988zm6.091 2.01h2.016c.162 0 .283.123.283.285v2.013c0 .163-.12.285-.283.285H18.34a.28.28 0 01-.285-.285V4.482a.28.28 0 01.285-.285zM1.566 8.303h4.743c.578 0 1.033.456 1.033 1.032v4.743c0 .577-.455 1.033-1.032 1.033H1.567a1.024 1.024 0 01-1.034-1.032V9.335c0-.576.455-1.032 1.032-1.032zm18.459 9.61h2.865c.29 0 .52.226.52.518v2.865a.512.512 0 01-.52.519h-2.865a.51.51 0 01-.519-.519v-2.864a.51.51 0 01.519-.518z" }) + ] + } + ); +}); + +exports.default = SiOctave; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.d.ts new file mode 100644 index 000000000..fd721cf9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0790C0"; +declare const SiOctave: IconType; +export { SiOctave as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.mjs new file mode 100644 index 000000000..abf2be23f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctave.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0790C0"; +const SiOctave = React.forwardRef(function SiOctave2({ title = "Octave", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.5.007c-2.414-.09-4.658.715-6.286 2.485C2.913 3.906 2.188 5.75 1.987 7.77h-.42C.703 7.77 0 8.473 0 9.335v4.743c0 .863.702 1.567 1.565 1.567h2.091a16.899 16.899 0 002.57 3.687c4.46 4.848 10.696 6.036 14.561 3.016h2.102c.577 0 1.05-.473 1.05-1.05V18.43a1.03 1.03 0 00-.257-.668c.858-3.433-.045-7.642-2.52-11.219.002-.017.01-.032.01-.049V4.482a.822.822 0 00-.816-.819h-1.703C16.142 1.372 13.218.11 10.5.007zm1.75 2.18c1.78-.01 3.69.62 5.425 1.85a.797.797 0 00-.15.445v2.013c0 .449.368.82.816.82h2.016a.788.788 0 00.392-.116c2.248 3.302 2.735 7.322 1.24 10.18h-1.964c-.579 0-1.052.475-1.052 1.051v1.794c-2.991 1.3-7.005.222-9.964-2.992a12.743 12.743 0 01-1.55-2.098c.256-.279.416-.647.416-1.056V9.335c0-.862-.702-1.565-1.565-1.565H5.9c.238-1.364.781-2.612 1.688-3.596 1.225-1.331 2.88-1.98 4.661-1.988zm6.091 2.01h2.016c.162 0 .283.123.283.285v2.013c0 .163-.12.285-.283.285H18.34a.28.28 0 01-.285-.285V4.482a.28.28 0 01.285-.285zM1.566 8.303h4.743c.578 0 1.033.456 1.033 1.032v4.743c0 .577-.455 1.033-1.032 1.033H1.567a1.024 1.024 0 01-1.034-1.032V9.335c0-.576.455-1.032 1.032-1.032zm18.459 9.61h2.865c.29 0 .52.226.52.518v2.865a.512.512 0 01-.52.519h-2.865a.51.51 0 01-.519-.519v-2.864a.51.51 0 01.519-.518z" }) + ] + } + ); +}); + +export { SiOctave as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.cjs new file mode 100644 index 000000000..dd93705ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB6A26"; +const SiOctobercms = React__namespace.forwardRef(function SiOctobercms2({ title = "October CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.949 11.496C20.573 5.365 13.894.06 11.143 0 8.391-.059 3.247 6.435 3.04 13.033 2.844 19.219 8.124 23.462 10.397 24c.063-2.91.296-13.627.335-14.877.082-2.553.207-6.527.634-6.659.244-.076.578 2.158.537 3.478-.008.252-.011 1.068-.011 2.226.46-.469.94-.955 1.233-1.242.8-.787 1.155-.693.77.009-.236.432-1.253 1.868-2.001 2.909.004 2.099.013 4.74.023 7.202 1.057-1.237 2.35-2.72 3.03-3.378 1.425-1.382 1.576-1.207.903.243-.413.888-2.434 3.258-3.925 5.127.009 2.185.016 4.021.018 4.898 4-.88 9.373-6.42 9.006-12.44" }) + ] + } + ); +}); + +exports.default = SiOctobercms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.d.ts new file mode 100644 index 000000000..9e223eb4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB6A26"; +declare const SiOctobercms: IconType; +export { SiOctobercms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.mjs new file mode 100644 index 000000000..7b78a9279 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctobercms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB6A26"; +const SiOctobercms = React.forwardRef(function SiOctobercms2({ title = "October CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.949 11.496C20.573 5.365 13.894.06 11.143 0 8.391-.059 3.247 6.435 3.04 13.033 2.844 19.219 8.124 23.462 10.397 24c.063-2.91.296-13.627.335-14.877.082-2.553.207-6.527.634-6.659.244-.076.578 2.158.537 3.478-.008.252-.011 1.068-.011 2.226.46-.469.94-.955 1.233-1.242.8-.787 1.155-.693.77.009-.236.432-1.253 1.868-2.001 2.909.004 2.099.013 4.74.023 7.202 1.057-1.237 2.35-2.72 3.03-3.378 1.425-1.382 1.576-1.207.903.243-.413.888-2.434 3.258-3.925 5.127.009 2.185.016 4.021.018 4.898 4-.88 9.373-6.42 9.006-12.44" }) + ] + } + ); +}); + +export { SiOctobercms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.cjs new file mode 100644 index 000000000..66c1e343e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13C100"; +const SiOctoprint = React__namespace.forwardRef(function SiOctoprint2({ title = "OctoPrint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.942 4.613C2.424 5.987 1.107 7.473.476 9.71c-.634 2.248-.585 5.094-.145 7.398.44 2.303 1.12 4.107 1.873 5.83h13.179c-.31-.988-.761-1.967-1.446-3.237-.685-1.268-1.658-2.692-2.648-4.178-.99-1.486-1.985-3.077-1.851-4.472.094-.987.49-1.976 1.492-2.76 1.16-.909 2.289-1.437 3.353-1.595 3.325-.496 6.422.601 8.925 3.366.288.316.36.726.545 1.127l.166-.653c.15-.589.088-1.359-.152-2.371-.243-1.029-.563-1.792-1.46-2.973-.893-1.176-2.467-2.322-4.48-3.226-1.5-.673-3.305-1-5.798-.879-2.522.124-5.494 1.177-8.087 3.526Z" }) + ] + } + ); +}); + +exports.default = SiOctoprint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.d.ts new file mode 100644 index 000000000..18ba28f60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13C100"; +declare const SiOctoprint: IconType; +export { SiOctoprint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.mjs new file mode 100644 index 000000000..dc05da9dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctoprint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13C100"; +const SiOctoprint = React.forwardRef(function SiOctoprint2({ title = "OctoPrint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.942 4.613C2.424 5.987 1.107 7.473.476 9.71c-.634 2.248-.585 5.094-.145 7.398.44 2.303 1.12 4.107 1.873 5.83h13.179c-.31-.988-.761-1.967-1.446-3.237-.685-1.268-1.658-2.692-2.648-4.178-.99-1.486-1.985-3.077-1.851-4.472.094-.987.49-1.976 1.492-2.76 1.16-.909 2.289-1.437 3.353-1.595 3.325-.496 6.422.601 8.925 3.366.288.316.36.726.545 1.127l.166-.653c.15-.589.088-1.359-.152-2.371-.243-1.029-.563-1.792-1.46-2.973-.893-1.176-2.467-2.322-4.48-3.226-1.5-.673-3.305-1-5.798-.879-2.522.124-5.494 1.177-8.087 3.526Z" }) + ] + } + ); +}); + +export { SiOctoprint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.cjs new file mode 100644 index 000000000..6b8e2a6b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F93E0"; +const SiOctopusdeploy = React__namespace.forwardRef(function SiOctopusdeploy2({ title = "Octopus Deploy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.18 18.212c1.805-1.162 3.928-3.162 3.122-5.51-.437-1.282-1.046-2.379-1.127-3.762a8.478 8.478 0 0 1 .515-3.46C6.31 1.14 11.126-.917 15.481.389c4.03 1.216 6.808 5.893 5.119 9.973-.965 2.356-1.395 4.173.755 6.006.582.496 2 1.24 1.992 2.123 0 1.163-2.27-.244-2.522-.445.286.503 3.138 3.487 1.325 3.688-1.67.194-3.147-2.139-4.15-3.142-1.686-1.682-1.395 2.042-1.403 2.81 0 1.212-.868 3.676-2.41 2.072-1.27-1.321-.775-3.433-1.674-4.905-.968-1.612-2.58 1.612-2.983 2.2-.45.66-2.713 3.844-3.596 2.147-.725-1.38.434-3.538 1.007-4.785-.209.453-1.685 1.123-2.115 1.34a5.738 5.738 0 0 1-3.057.706c-2.267-.163-.527-1.368.387-1.96l.023-.005z" }) + ] + } + ); +}); + +exports.default = SiOctopusdeploy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.d.ts new file mode 100644 index 000000000..0480bc30d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F93E0"; +declare const SiOctopusdeploy: IconType; +export { SiOctopusdeploy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.mjs new file mode 100644 index 000000000..a1b905d44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOctopusdeploy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F93E0"; +const SiOctopusdeploy = React.forwardRef(function SiOctopusdeploy2({ title = "Octopus Deploy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.18 18.212c1.805-1.162 3.928-3.162 3.122-5.51-.437-1.282-1.046-2.379-1.127-3.762a8.478 8.478 0 0 1 .515-3.46C6.31 1.14 11.126-.917 15.481.389c4.03 1.216 6.808 5.893 5.119 9.973-.965 2.356-1.395 4.173.755 6.006.582.496 2 1.24 1.992 2.123 0 1.163-2.27-.244-2.522-.445.286.503 3.138 3.487 1.325 3.688-1.67.194-3.147-2.139-4.15-3.142-1.686-1.682-1.395 2.042-1.403 2.81 0 1.212-.868 3.676-2.41 2.072-1.27-1.321-.775-3.433-1.674-4.905-.968-1.612-2.58 1.612-2.983 2.2-.45.66-2.713 3.844-3.596 2.147-.725-1.38.434-3.538 1.007-4.785-.209.453-1.685 1.123-2.115 1.34a5.738 5.738 0 0 1-3.057.706c-2.267-.163-.527-1.368.387-1.96l.023-.005z" }) + ] + } + ); +}); + +export { SiOctopusdeploy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.cjs new file mode 100644 index 000000000..552e6976a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C1E20"; +const SiOculus = React__namespace.forwardRef(function SiOculus2({ title = "Oculus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.135 13.949c-.319.221-.675.355-1.057.416s-.761.049-1.142.049H8.063c-.382 0-.762.014-1.145-.049-.381-.063-.734-.195-1.057-.416-.643-.451-1.027-1.17-1.027-1.951 0-.796.387-1.515 1.029-1.95.314-.225.674-.359 1.049-.42s.75-.061 1.141-.061h7.875c.375 0 .765-.014 1.14.046s.735.194 1.051.405c.645.434 1.02 1.17 1.02 1.949 0 .78-.391 1.5-1.035 1.95l.031.032zm3.174-7.555c-.845-.678-1.812-1.146-2.865-1.398-.6-.146-1.203-.211-1.822-.23-.449-.015-.899-.01-1.364-.01H8.76c-.457 0-.915-.005-1.372.01-.618.021-1.222.083-1.825.23-1.051.254-2.025.723-2.865 1.4C.99 7.761 0 9.82 0 12c0 2.182.99 4.241 2.689 5.606.846.678 1.815 1.146 2.865 1.4.603.146 1.206.211 1.823.229.45.016.9.012 1.365.012h6.496c.449 0 .914.004 1.364-.012.615-.018 1.215-.082 1.814-.229 1.05-.256 2.011-.723 2.866-1.402C23.01 16.24 24 14.18 24 12c0-2.181-.99-4.241-2.691-5.606z" }) + ] + } + ); +}); + +exports.default = SiOculus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.d.ts new file mode 100644 index 000000000..be26f4909 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C1E20"; +declare const SiOculus: IconType; +export { SiOculus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.mjs new file mode 100644 index 000000000..55b134a8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOculus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C1E20"; +const SiOculus = React.forwardRef(function SiOculus2({ title = "Oculus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.135 13.949c-.319.221-.675.355-1.057.416s-.761.049-1.142.049H8.063c-.382 0-.762.014-1.145-.049-.381-.063-.734-.195-1.057-.416-.643-.451-1.027-1.17-1.027-1.951 0-.796.387-1.515 1.029-1.95.314-.225.674-.359 1.049-.42s.75-.061 1.141-.061h7.875c.375 0 .765-.014 1.14.046s.735.194 1.051.405c.645.434 1.02 1.17 1.02 1.949 0 .78-.391 1.5-1.035 1.95l.031.032zm3.174-7.555c-.845-.678-1.812-1.146-2.865-1.398-.6-.146-1.203-.211-1.822-.23-.449-.015-.899-.01-1.364-.01H8.76c-.457 0-.915-.005-1.372.01-.618.021-1.222.083-1.825.23-1.051.254-2.025.723-2.865 1.4C.99 7.761 0 9.82 0 12c0 2.182.99 4.241 2.689 5.606.846.678 1.815 1.146 2.865 1.4.603.146 1.206.211 1.823.229.45.016.9.012 1.365.012h6.496c.449 0 .914.004 1.364-.012.615-.018 1.215-.082 1.814-.229 1.05-.256 2.011-.723 2.866-1.402C23.01 16.24 24 14.18 24 12c0-2.181-.99-4.241-2.691-5.606z" }) + ] + } + ); +}); + +export { SiOculus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.cjs new file mode 100644 index 000000000..f219a2d00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C72FF"; +const SiOdido = React__namespace.forwardRef(function SiOdido2({ title = "Odido", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.923 15.077a3.077 3.077 0 1 0 0-6.154 3.077 3.077 0 0 0 0 6.154m-17.846 0a3.077 3.077 0 1 0 0-6.154 3.077 3.077 0 0 0 0 6.154m3.692 0a3.077 3.077 0 0 0 0-6.154zm10.462 0a3.077 3.077 0 0 1 0-6.154zm-3.693-6.154h-3.077v6.154h3.077z" }) + ] + } + ); +}); + +exports.default = SiOdido; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.d.ts new file mode 100644 index 000000000..2fcf6fb00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C72FF"; +declare const SiOdido: IconType; +export { SiOdido as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.mjs new file mode 100644 index 000000000..630ce0c99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdido.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C72FF"; +const SiOdido = React.forwardRef(function SiOdido2({ title = "Odido", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.923 15.077a3.077 3.077 0 1 0 0-6.154 3.077 3.077 0 0 0 0 6.154m-17.846 0a3.077 3.077 0 1 0 0-6.154 3.077 3.077 0 0 0 0 6.154m3.692 0a3.077 3.077 0 0 0 0-6.154zm10.462 0a3.077 3.077 0 0 1 0-6.154zm-3.693-6.154h-3.077v6.154h3.077z" }) + ] + } + ); +}); + +export { SiOdido as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.cjs new file mode 100644 index 000000000..bde47b901 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3882D2"; +const SiOdin = React__namespace.forwardRef(function SiOdin2({ title = "Odin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A11.999 11.999 0 0 0 1.607 18c.001 0 .143.279.545.861.456.661.725.939.725.939L14.194.2s-.468-.09-1.17-.158C12.56-.002 12 0 12 0m4.184.755L4.35 21.248a12 12 0 0 0 1.652 1.144c5.734 3.312 13.078 1.342 16.39-4.394 3.31-5.735 1.342-13.08-4.394-16.39 0 0-.42-.236-.926-.479-.403-.193-.891-.373-.891-.373m-5.38 1.317L2.806 15.926A9.98 9.98 0 0 1 3.34 7a9.99 9.99 0 0 1 7.463-4.928M17 3.34c4.78 2.759 6.42 8.88 3.66 13.66-2.758 4.779-8.881 6.42-13.66 3.66z" }) + ] + } + ); +}); + +exports.default = SiOdin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.d.ts new file mode 100644 index 000000000..fd61579c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3882D2"; +declare const SiOdin: IconType; +export { SiOdin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.mjs new file mode 100644 index 000000000..67befb288 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3882D2"; +const SiOdin = React.forwardRef(function SiOdin2({ title = "Odin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A11.999 11.999 0 0 0 1.607 18c.001 0 .143.279.545.861.456.661.725.939.725.939L14.194.2s-.468-.09-1.17-.158C12.56-.002 12 0 12 0m4.184.755L4.35 21.248a12 12 0 0 0 1.652 1.144c5.734 3.312 13.078 1.342 16.39-4.394 3.31-5.735 1.342-13.08-4.394-16.39 0 0-.42-.236-.926-.479-.403-.193-.891-.373-.891-.373m-5.38 1.317L2.806 15.926A9.98 9.98 0 0 1 3.34 7a9.99 9.99 0 0 1 7.463-4.928M17 3.34c4.78 2.759 6.42 8.88 3.66 13.66-2.758 4.779-8.881 6.42-13.66 3.66z" }) + ] + } + ); +}); + +export { SiOdin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.cjs new file mode 100644 index 000000000..cc1b2ba91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE8208"; +const SiOdnoklassniki = React__namespace.forwardRef(function SiOdnoklassniki2({ title = "Odnoklassniki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a6.2 6.2 0 0 0-6.194 6.195 6.2 6.2 0 0 0 6.195 6.192 6.2 6.2 0 0 0 6.193-6.192A6.2 6.2 0 0 0 12.001 0zm0 3.63a2.567 2.567 0 0 1 2.565 2.565 2.568 2.568 0 0 1-2.564 2.564 2.568 2.568 0 0 1-2.565-2.564 2.567 2.567 0 0 1 2.565-2.564zM6.807 12.6a1.814 1.814 0 0 0-.91 3.35 11.611 11.611 0 0 0 3.597 1.49l-3.462 3.463a1.815 1.815 0 0 0 2.567 2.566L12 20.066l3.405 3.403a1.813 1.813 0 0 0 2.564 0c.71-.709.71-1.858 0-2.566l-3.462-3.462a11.593 11.593 0 0 0 3.596-1.49 1.814 1.814 0 1 0-1.932-3.073 7.867 7.867 0 0 1-8.34 0c-.318-.2-.674-.29-1.024-.278z" }) + ] + } + ); +}); + +exports.default = SiOdnoklassniki; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.d.ts new file mode 100644 index 000000000..82cd52f0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE8208"; +declare const SiOdnoklassniki: IconType; +export { SiOdnoklassniki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.mjs new file mode 100644 index 000000000..1589d75bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdnoklassniki.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE8208"; +const SiOdnoklassniki = React.forwardRef(function SiOdnoklassniki2({ title = "Odnoklassniki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a6.2 6.2 0 0 0-6.194 6.195 6.2 6.2 0 0 0 6.195 6.192 6.2 6.2 0 0 0 6.193-6.192A6.2 6.2 0 0 0 12.001 0zm0 3.63a2.567 2.567 0 0 1 2.565 2.565 2.568 2.568 0 0 1-2.564 2.564 2.568 2.568 0 0 1-2.565-2.564 2.567 2.567 0 0 1 2.565-2.564zM6.807 12.6a1.814 1.814 0 0 0-.91 3.35 11.611 11.611 0 0 0 3.597 1.49l-3.462 3.463a1.815 1.815 0 0 0 2.567 2.566L12 20.066l3.405 3.403a1.813 1.813 0 0 0 2.564 0c.71-.709.71-1.858 0-2.566l-3.462-3.462a11.593 11.593 0 0 0 3.596-1.49 1.814 1.814 0 1 0-1.932-3.073 7.867 7.867 0 0 1-8.34 0c-.318-.2-.674-.29-1.024-.278z" }) + ] + } + ); +}); + +export { SiOdnoklassniki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.cjs new file mode 100644 index 000000000..aa8242478 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#714B67"; +const SiOdoo = React__namespace.forwardRef(function SiOdoo2({ title = "Odoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.1002 15.7957c-1.6015 0-2.8997-1.2983-2.8997-2.8998s1.2983-2.8997 2.8997-2.8997c1.6015 0 2.8998 1.2982 2.8998 2.8997 0 1.5999-1.2979 2.8998-2.8998 2.8998zm0-1.2c.9388.0006 1.7003-.7601 1.7008-1.6989.0004-.9388-.7602-1.7003-1.699-1.7007h-.0018c-.9388.0004-1.6994.7619-1.699 1.7007.0005.9381.761 1.6985 1.699 1.699zm-6.0655 1.2c-1.6014 0-2.8997-1.2983-2.8997-2.8998s1.2983-2.8997 2.8997-2.8997c1.6015 0 2.8998 1.2982 2.8998 2.8997 0 1.5999-1.2999 2.8998-2.8998 2.8998zm0-1.2c.9389.0006 1.7003-.7601 1.7008-1.6989.0005-.9388-.7602-1.7003-1.699-1.7007h-.0018c-.9388.0004-1.6994.7619-1.699 1.7007.0005.9381.761 1.6985 1.699 1.699zM11.865 12.858c0 1.6199-1.2979 2.9378-2.8977 2.9378s-2.8998-1.314-2.8998-2.9358 1.1799-2.8597 2.8998-2.8597c.6359 0 1.2239.134 1.6998.484v-1.68a.6.6 0 0 1 1.2 0v4.0537h-.002zm-2.8977 1.7399c.9388.0005 1.7002-.7602 1.7007-1.699.0005-.9388-.7602-1.7003-1.699-1.7007h-.0017c-.9389.0004-1.6995.7619-1.699 1.7007.0004.9381.7608 1.6985 1.699 1.699zm-6.0675 1.1979C1.2983 15.7957 0 14.4974 0 12.8959s1.2983-2.8997 2.8998-2.8997 2.8997 1.2982 2.8997 2.8997c0 1.5999-1.2999 2.8998-2.8997 2.8998zm0-1.2c.9388.0006 1.7002-.7601 1.7007-1.699.0005-.9387-.7602-1.7002-1.699-1.7006h-.0017c-.9388.0004-1.6995.7619-1.699 1.7007.0004.9381.7608 1.6985 1.699 1.699z" }) + ] + } + ); +}); + +exports.default = SiOdoo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.d.ts new file mode 100644 index 000000000..b33745df5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#714B67"; +declare const SiOdoo: IconType; +export { SiOdoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.mjs new file mode 100644 index 000000000..7dd399a7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdoo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#714B67"; +const SiOdoo = React.forwardRef(function SiOdoo2({ title = "Odoo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.1002 15.7957c-1.6015 0-2.8997-1.2983-2.8997-2.8998s1.2983-2.8997 2.8997-2.8997c1.6015 0 2.8998 1.2982 2.8998 2.8997 0 1.5999-1.2979 2.8998-2.8998 2.8998zm0-1.2c.9388.0006 1.7003-.7601 1.7008-1.6989.0004-.9388-.7602-1.7003-1.699-1.7007h-.0018c-.9388.0004-1.6994.7619-1.699 1.7007.0005.9381.761 1.6985 1.699 1.699zm-6.0655 1.2c-1.6014 0-2.8997-1.2983-2.8997-2.8998s1.2983-2.8997 2.8997-2.8997c1.6015 0 2.8998 1.2982 2.8998 2.8997 0 1.5999-1.2999 2.8998-2.8998 2.8998zm0-1.2c.9389.0006 1.7003-.7601 1.7008-1.6989.0005-.9388-.7602-1.7003-1.699-1.7007h-.0018c-.9388.0004-1.6994.7619-1.699 1.7007.0005.9381.761 1.6985 1.699 1.699zM11.865 12.858c0 1.6199-1.2979 2.9378-2.8977 2.9378s-2.8998-1.314-2.8998-2.9358 1.1799-2.8597 2.8998-2.8597c.6359 0 1.2239.134 1.6998.484v-1.68a.6.6 0 0 1 1.2 0v4.0537h-.002zm-2.8977 1.7399c.9388.0005 1.7002-.7602 1.7007-1.699.0005-.9388-.7602-1.7003-1.699-1.7007h-.0017c-.9389.0004-1.6995.7619-1.699 1.7007.0004.9381.7608 1.6985 1.699 1.699zm-6.0675 1.1979C1.2983 15.7957 0 14.4974 0 12.8959s1.2983-2.8997 2.8998-2.8997 2.8997 1.2982 2.8997 2.8997c0 1.5999-1.2999 2.8998-2.8997 2.8998zm0-1.2c.9388.0006 1.7002-.7601 1.7007-1.699.0005-.9387-.7602-1.7002-1.699-1.7006h-.0017c-.9388.0004-1.6995.7619-1.699 1.7007.0004.9381.7608 1.6985 1.699 1.699z" }) + ] + } + ); +}); + +export { SiOdoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.cjs new file mode 100644 index 000000000..293e88d9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF1970"; +const SiOdysee = React__namespace.forwardRef(function SiOdysee2({ title = "Odysee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.965 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12 12 12 0 0 0-3.209-8.167 7.272 7.272 0 0 1-.799 3.218c-.548.957-2.281 2.77-3.264 3.699a.723.723 0 0 0 .056 1.104c.996.74 2.658 2.151 2.788 3.422.176 1.835 1.6 4.02 1.675 4.159a.67.67 0 0 1-.105.327 12.067 12.067 0 0 1-2.03 1.898 2.435 2.435 0 0 1-.807.126c-1.944-.04-1.526-1.866-1.712-2.905s-.78-3.085-2.716-2.788c0 0 .484 4.243-1.489 5.546s-5.843 2.27-6.55-.408 2.46-2.384 2.684-2.384c.223 0 2.233-.632 1.267-2.53-.967-1.898-2.01-3.5-2.01-3.5a11.37 11.37 0 0 0-2.735 1.285 5.42 5.42 0 0 0-1.061.82c-1.065 1.104-2.19 1.713-2.954 1.358a1.368 1.368 0 0 1-.32-.221A11.926 11.926 0 0 1 .1 13.503c.43-.641 2.082-2.038 3.696-2.906 1.304-.702 2.737-.988 3.118-1.355-.671-2.235-1.882-5.703.832-7.33C9.881.634 12.69-.142 13.77 2.958c1.08 3.1.802 3.796 1.267 3.796.465 0 1.608.223 2.09-1.75.356-1.445.574-2.685 1.379-3.087A12 12 0 0 0 12 0a12 12 0 0 0-.035 0zm-.498 2.125c-.353-.019-.78.05-1.303.224 0 0-1.895.52-1.749 2.53.13 1.777 1.08 2.753 3.053 2.01 1.972-.737 2.31-1.264 1.824-2.753-.364-1.117-.765-1.956-1.825-2.011zm.48.726a.249.249 0 0 1 .183.07 1.58 1.58 0 0 1 .232.346.253.253 0 0 1-.197.37.253.253 0 0 1-.233-.131 1.559 1.559 0 0 0-.148-.232.256.256 0 0 1 0-.353.249.249 0 0 1 .163-.07zm3.529.152a.22.22 0 0 1 .192.103.22.22 0 0 1-.07.305.22.22 0 1 1-.122-.408zM12.609 4.27a.253.253 0 0 1 .227.133 1.5 1.5 0 0 1 .102.982.253.253 0 0 1-.246.205h-.049a.253.253 0 0 1-.2-.295 1.013 1.013 0 0 0-.071-.697.253.253 0 0 1 .237-.328zm-8.035.552a.12.12 0 0 1 .029.003.12.12 0 1 1-.147.091.12.12 0 0 1 .118-.094zm15.77 3.419.273.539.593.12-.539.275-.123.592-.272-.539-.592-.123.538-.272zm-17.767.535a.22.22 0 0 1 .193.104.22.22 0 0 1-.07.304.22.22 0 1 1-.123-.408zm16.004 2.79a.258.258 0 0 1 .062.007.258.258 0 1 1-.31.195.258.258 0 0 1 .248-.202zM4.914 16.115a.17.17 0 0 1 .165.14.17.17 0 0 1-.137.197.17.17 0 1 1-.028-.337zm9.769 4.094a.2.2 0 0 1 .036.004.2.2 0 1 1-.233.15.2.2 0 0 1 .197-.154z" }) + ] + } + ); +}); + +exports.default = SiOdysee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.d.ts new file mode 100644 index 000000000..e0a1cbfbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF1970"; +declare const SiOdysee: IconType; +export { SiOdysee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.mjs new file mode 100644 index 000000000..e5640faef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOdysee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF1970"; +const SiOdysee = React.forwardRef(function SiOdysee2({ title = "Odysee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.965 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12 12 12 0 0 0-3.209-8.167 7.272 7.272 0 0 1-.799 3.218c-.548.957-2.281 2.77-3.264 3.699a.723.723 0 0 0 .056 1.104c.996.74 2.658 2.151 2.788 3.422.176 1.835 1.6 4.02 1.675 4.159a.67.67 0 0 1-.105.327 12.067 12.067 0 0 1-2.03 1.898 2.435 2.435 0 0 1-.807.126c-1.944-.04-1.526-1.866-1.712-2.905s-.78-3.085-2.716-2.788c0 0 .484 4.243-1.489 5.546s-5.843 2.27-6.55-.408 2.46-2.384 2.684-2.384c.223 0 2.233-.632 1.267-2.53-.967-1.898-2.01-3.5-2.01-3.5a11.37 11.37 0 0 0-2.735 1.285 5.42 5.42 0 0 0-1.061.82c-1.065 1.104-2.19 1.713-2.954 1.358a1.368 1.368 0 0 1-.32-.221A11.926 11.926 0 0 1 .1 13.503c.43-.641 2.082-2.038 3.696-2.906 1.304-.702 2.737-.988 3.118-1.355-.671-2.235-1.882-5.703.832-7.33C9.881.634 12.69-.142 13.77 2.958c1.08 3.1.802 3.796 1.267 3.796.465 0 1.608.223 2.09-1.75.356-1.445.574-2.685 1.379-3.087A12 12 0 0 0 12 0a12 12 0 0 0-.035 0zm-.498 2.125c-.353-.019-.78.05-1.303.224 0 0-1.895.52-1.749 2.53.13 1.777 1.08 2.753 3.053 2.01 1.972-.737 2.31-1.264 1.824-2.753-.364-1.117-.765-1.956-1.825-2.011zm.48.726a.249.249 0 0 1 .183.07 1.58 1.58 0 0 1 .232.346.253.253 0 0 1-.197.37.253.253 0 0 1-.233-.131 1.559 1.559 0 0 0-.148-.232.256.256 0 0 1 0-.353.249.249 0 0 1 .163-.07zm3.529.152a.22.22 0 0 1 .192.103.22.22 0 0 1-.07.305.22.22 0 1 1-.122-.408zM12.609 4.27a.253.253 0 0 1 .227.133 1.5 1.5 0 0 1 .102.982.253.253 0 0 1-.246.205h-.049a.253.253 0 0 1-.2-.295 1.013 1.013 0 0 0-.071-.697.253.253 0 0 1 .237-.328zm-8.035.552a.12.12 0 0 1 .029.003.12.12 0 1 1-.147.091.12.12 0 0 1 .118-.094zm15.77 3.419.273.539.593.12-.539.275-.123.592-.272-.539-.592-.123.538-.272zm-17.767.535a.22.22 0 0 1 .193.104.22.22 0 0 1-.07.304.22.22 0 1 1-.123-.408zm16.004 2.79a.258.258 0 0 1 .062.007.258.258 0 1 1-.31.195.258.258 0 0 1 .248-.202zM4.914 16.115a.17.17 0 0 1 .165.14.17.17 0 0 1-.137.197.17.17 0 1 1-.028-.337zm9.769 4.094a.2.2 0 0 1 .036.004.2.2 0 1 1-.233.15.2.2 0 0 1 .197-.154z" }) + ] + } + ); +}); + +export { SiOdysee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.cjs new file mode 100644 index 000000000..8480bb468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3900"; +const SiOhdear = React__namespace.forwardRef(function SiOhdear2({ title = "Oh Dear", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.811 9.3333c2.5345 0 4.5966 1.9939 4.5966 4.4444 0 2.4506-2.0621 4.4444-4.5966 4.4444-2.2139 0-4.0673-1.5215-4.5007-3.5397h-6.3101v-1.7972h6.3072c0.42873-2.0242 2.285-3.5519 4.5036-3.5519zm7.3308-3.5556v3.8766c0.60102-0.38439 1.3334-0.586 2.1395-0.586 1.7157 0 3.7189 1.1521 3.7189 4.3993v4.4583h-1.8453v-4.4583c0-1.0234-0.25022-1.7562-0.74385-2.1787-0.38875-0.33283-0.84479-0.40252-1.1591-0.40252-0.96256 0-2.1102 0.44768-2.1102 2.5812v4.4583h-1.8453v-12.148zm-7.3308 5.3741c-1.4978 0-2.7159 1.178-2.7159 2.6259s1.218 2.6259 2.7159 2.6259c1.4975 0 2.7155-1.178 2.7155-2.6259s-1.218-2.6259-2.7155-2.6259z" }) + ] + } + ); +}); + +exports.default = SiOhdear; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.d.ts new file mode 100644 index 000000000..dbdb96760 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3900"; +declare const SiOhdear: IconType; +export { SiOhdear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.mjs new file mode 100644 index 000000000..7f799e4aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOhdear.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3900"; +const SiOhdear = React.forwardRef(function SiOhdear2({ title = "Oh Dear", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.811 9.3333c2.5345 0 4.5966 1.9939 4.5966 4.4444 0 2.4506-2.0621 4.4444-4.5966 4.4444-2.2139 0-4.0673-1.5215-4.5007-3.5397h-6.3101v-1.7972h6.3072c0.42873-2.0242 2.285-3.5519 4.5036-3.5519zm7.3308-3.5556v3.8766c0.60102-0.38439 1.3334-0.586 2.1395-0.586 1.7157 0 3.7189 1.1521 3.7189 4.3993v4.4583h-1.8453v-4.4583c0-1.0234-0.25022-1.7562-0.74385-2.1787-0.38875-0.33283-0.84479-0.40252-1.1591-0.40252-0.96256 0-2.1102 0.44768-2.1102 2.5812v4.4583h-1.8453v-12.148zm-7.3308 5.3741c-1.4978 0-2.7159 1.178-2.7159 2.6259s1.218 2.6259 2.7159 2.6259c1.4975 0 2.7155-1.178 2.7155-2.6259s-1.218-2.6259-2.7155-2.6259z" }) + ] + } + ); +}); + +export { SiOhdear as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.cjs new file mode 100644 index 000000000..166b2ab80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0500BE"; +const SiOkcupid = React__namespace.forwardRef(function SiOkcupid2({ title = "okcupid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.287 5.336c-1.656 0-2.609.886-2.831 2.632l-.106.804a.275.275 0 01-.382.218c-.67-.294-1.472-.45-2.397-.45C2.24 8.54 0 10.794 0 14.146 0 16.933 1.738 18.6 4.65 18.6c1.213 0 2.275-.27 3.142-.766a.268.268 0 01.323.045c.452.44 1.108.688 1.906.688.74 0 1.281-.072 1.702-.228l.489-.18a.28.28 0 01.248.03c.371.234.84.378 1.456.378 1.138 0 1.927-.218 2.474-.535a.275.275 0 01.272-.005c.19.101.394.188.61.264.623.244 1.355.374 2.198.374 3.635 0 4.38-1.791 4.38-2.838 0-.515-.127-1.04-.473-1.435-.01-.013-.027-.023-.038-.04-.387-.539-1.147-.349-1.324-.701-.09-.181-.016-.494.59-.466 1.09.05 1.395-1.399 1.395-2.172 0-.954-.449-2.556-3.455-2.556-1.144 0-2.151.247-2.993.697-.08.039-.162.076-.241.116a.268.268 0 01-.298-.034c-.435-.379-1.115-.661-2.177-.661-.225 0-.432.012-.625.039a.275.275 0 01-.312-.31l.118-.888.097-.727a.277.277 0 00-.106-.257l-.582-.447c-.735-.563-1.656-.648-2.14-.648zm.013 1.545c.46 0 .92.115 1.2.33l-.773 5.784c1.956-2.712 2.136-2.876 3.122-2.876 1.036 0 1.397.296 1.397.887 0 .345-.098.575-.263.756-.246-.016-.493-.016-.69-.016-.345 0-.542.082-1.512 1.413L14.9 15.18c.082.132.164.247.345.247.148 0 .395-.017.592-.066.164.115.23.346.23.559 0 .772-.773 1.101-2.137 1.101-.64 0-.87-.23-1.216-.97L11.612 13.8l-.411 3.09c-.312.115-.821.131-1.167.131-.723 0-1.051-.295-1.051-.92 0-.181.032-.493.098-.937l.92-7c.132-1.036.477-1.283 1.299-1.283zm-5.716 3.204c2.383 0 3.221 1.184 3.221 2.943 0 2.482-1.512 4.026-4.141 4.026-1.874 0-3.107-.822-3.107-2.909 0-2.432 1.48-4.06 4.027-4.06zm14.718.017c1.561 0 1.939.477 1.939 1.101 0 .345-.115.543-.329.707-.377-.115-.772-.18-1.38-.18-1.184 0-1.857.69-1.857 2.169 0 1.084.328 1.479 1.199 1.479.493 0 1.068-.116 1.693-.345.23.115.345.443.345.69 0 .838-.756 1.331-2.613 1.331-1.988 0-3.057-.805-3.057-2.893 0-2.596 1.578-4.059 4.06-4.059zM5.452 11.68c-1.002 0-1.56 1.019-1.56 2.383 0 .986.279 1.43 1.084 1.43.903 0 1.594-.872 1.594-2.367 0-.969-.263-1.446-1.117-1.446z" }) + ] + } + ); +}); + +exports.default = SiOkcupid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.d.ts new file mode 100644 index 000000000..94001f4f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0500BE"; +declare const SiOkcupid: IconType; +export { SiOkcupid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.mjs new file mode 100644 index 000000000..3097b47b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkcupid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0500BE"; +const SiOkcupid = React.forwardRef(function SiOkcupid2({ title = "okcupid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.287 5.336c-1.656 0-2.609.886-2.831 2.632l-.106.804a.275.275 0 01-.382.218c-.67-.294-1.472-.45-2.397-.45C2.24 8.54 0 10.794 0 14.146 0 16.933 1.738 18.6 4.65 18.6c1.213 0 2.275-.27 3.142-.766a.268.268 0 01.323.045c.452.44 1.108.688 1.906.688.74 0 1.281-.072 1.702-.228l.489-.18a.28.28 0 01.248.03c.371.234.84.378 1.456.378 1.138 0 1.927-.218 2.474-.535a.275.275 0 01.272-.005c.19.101.394.188.61.264.623.244 1.355.374 2.198.374 3.635 0 4.38-1.791 4.38-2.838 0-.515-.127-1.04-.473-1.435-.01-.013-.027-.023-.038-.04-.387-.539-1.147-.349-1.324-.701-.09-.181-.016-.494.59-.466 1.09.05 1.395-1.399 1.395-2.172 0-.954-.449-2.556-3.455-2.556-1.144 0-2.151.247-2.993.697-.08.039-.162.076-.241.116a.268.268 0 01-.298-.034c-.435-.379-1.115-.661-2.177-.661-.225 0-.432.012-.625.039a.275.275 0 01-.312-.31l.118-.888.097-.727a.277.277 0 00-.106-.257l-.582-.447c-.735-.563-1.656-.648-2.14-.648zm.013 1.545c.46 0 .92.115 1.2.33l-.773 5.784c1.956-2.712 2.136-2.876 3.122-2.876 1.036 0 1.397.296 1.397.887 0 .345-.098.575-.263.756-.246-.016-.493-.016-.69-.016-.345 0-.542.082-1.512 1.413L14.9 15.18c.082.132.164.247.345.247.148 0 .395-.017.592-.066.164.115.23.346.23.559 0 .772-.773 1.101-2.137 1.101-.64 0-.87-.23-1.216-.97L11.612 13.8l-.411 3.09c-.312.115-.821.131-1.167.131-.723 0-1.051-.295-1.051-.92 0-.181.032-.493.098-.937l.92-7c.132-1.036.477-1.283 1.299-1.283zm-5.716 3.204c2.383 0 3.221 1.184 3.221 2.943 0 2.482-1.512 4.026-4.141 4.026-1.874 0-3.107-.822-3.107-2.909 0-2.432 1.48-4.06 4.027-4.06zm14.718.017c1.561 0 1.939.477 1.939 1.101 0 .345-.115.543-.329.707-.377-.115-.772-.18-1.38-.18-1.184 0-1.857.69-1.857 2.169 0 1.084.328 1.479 1.199 1.479.493 0 1.068-.116 1.693-.345.23.115.345.443.345.69 0 .838-.756 1.331-2.613 1.331-1.988 0-3.057-.805-3.057-2.893 0-2.596 1.578-4.059 4.06-4.059zM5.452 11.68c-1.002 0-1.56 1.019-1.56 2.383 0 .986.279 1.43 1.084 1.43.903 0 1.594-.872 1.594-2.367 0-.969-.263-1.446-1.117-1.446z" }) + ] + } + ); +}); + +export { SiOkcupid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.cjs new file mode 100644 index 000000000..d51389cc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007DC1"; +const SiOkta = React__namespace.forwardRef(function SiOkta2({ title = "Okta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.389 0 0 5.35 0 12s5.35 12 12 12 12-5.35 12-12S18.611 0 12 0zm0 18c-3.325 0-6-2.675-6-6s2.675-6 6-6 6 2.675 6 6-2.675 6-6 6z" }) + ] + } + ); +}); + +exports.default = SiOkta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.d.ts new file mode 100644 index 000000000..71c6fc449 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007DC1"; +declare const SiOkta: IconType; +export { SiOkta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.mjs new file mode 100644 index 000000000..570101578 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007DC1"; +const SiOkta = React.forwardRef(function SiOkta2({ title = "Okta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.389 0 0 5.35 0 12s5.35 12 12 12 12-5.35 12-12S18.611 0 12 0zm0 18c-3.325 0-6-2.675-6-6s2.675-6 6-6 6 2.675 6 6-2.675 6-6 6z" }) + ] + } + ); +}); + +export { SiOkta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.cjs new file mode 100644 index 000000000..a5ba09a89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOkx = React__namespace.forwardRef(function SiOkx2({ title = "OKX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 7.15 8.685 C 7.18 8.705 7.2 8.745 7.2 8.785 L 7.2 15.225 C 7.2 15.265 7.18 15.305 7.15 15.325 C 7.121 15.355 7.082 15.372 7.04 15.375 L 0.16 15.375 C 0.118 15.372 0.079 15.355 0.05 15.325 C 0.02 15.3 0.002 15.264 0 15.225 L 0 8.785 C 0 8.745 0.02 8.705 0.05 8.685 C 0.079 8.655 0.118 8.638 0.16 8.635 L 7.04 8.635 C 7.08 8.635 7.12 8.655 7.15 8.685 Z M 4.8 11.035 C 4.798 10.996 4.78 10.96 4.75 10.935 C 4.721 10.905 4.682 10.887 4.64 10.885 L 2.56 10.885 C 2.52 10.885 2.481 10.899 2.45 10.925 C 2.42 10.95 2.402 10.986 2.4 11.025 L 2.4 12.975 C 2.4 13.015 2.42 13.055 2.45 13.075 C 2.48 13.115 2.52 13.125 2.56 13.125 L 4.64 13.125 C 4.68 13.125 4.72 13.115 4.75 13.085 C 4.78 13.06 4.798 13.024 4.8 12.985 L 4.8 11.035 Z M 21.6 11.035 L 21.6 12.975 C 21.6 13.065 21.53 13.125 21.44 13.125 L 19.36 13.125 C 19.27 13.125 19.2 13.065 19.2 12.975 L 19.2 11.035 C 19.2 10.955 19.27 10.885 19.36 10.885 L 21.44 10.885 C 21.53 10.885 21.6 10.945 21.6 11.035 Z M 19.2 8.785 L 19.2 10.735 C 19.2 10.815 19.13 10.885 19.04 10.885 L 16.96 10.885 C 16.87 10.885 16.8 10.815 16.8 10.735 L 16.8 8.785 C 16.8 8.705 16.87 8.635 16.96 8.635 L 19.04 8.635 C 19.13 8.635 19.2 8.705 19.2 8.785 Z M 24 8.785 L 24 10.735 C 24 10.815 23.93 10.885 23.84 10.885 L 21.76 10.885 C 21.67 10.885 21.6 10.815 21.6 10.735 L 21.6 8.785 C 21.6 8.705 21.67 8.635 21.76 8.635 L 23.84 8.635 C 23.93 8.635 24 8.705 24 8.785 Z M 19.2 13.285 L 19.2 15.225 C 19.2 15.305 19.13 15.375 19.04 15.375 L 16.96 15.375 C 16.87 15.375 16.8 15.305 16.8 15.225 L 16.8 13.275 C 16.8 13.195 16.87 13.125 16.96 13.125 L 19.04 13.125 C 19.13 13.125 19.2 13.195 19.2 13.275 L 19.2 13.285 Z M 24 13.285 L 24 15.225 C 24 15.305 23.93 15.375 23.84 15.375 L 21.76 15.375 C 21.67 15.375 21.6 15.305 21.6 15.225 L 21.6 13.275 C 21.6 13.195 21.67 13.125 21.76 13.125 L 23.84 13.125 C 23.93 13.125 24 13.195 24 13.275 L 24 13.285 Z M 15.6 8.785 L 15.6 10.735 C 15.6 10.815 15.53 10.885 15.44 10.885 L 13.36 10.885 C 13.27 10.885 13.2 10.815 13.2 10.735 L 13.2 8.785 C 13.2 8.705 13.27 8.635 13.36 8.635 L 15.44 8.635 C 15.53 8.635 15.6 8.705 15.6 8.785 Z M 15.6 13.285 L 15.6 15.225 C 15.6 15.305 15.53 15.375 15.44 15.375 L 13.36 15.375 C 13.27 15.375 13.2 15.305 13.2 15.225 L 13.2 13.275 C 13.2 13.195 13.27 13.125 13.36 13.125 L 15.44 13.125 C 15.53 13.125 15.6 13.195 15.6 13.275 L 15.6 13.285 Z M 13.2 12.985 C 13.195 13.069 13.125 13.135 13.04 13.135 L 10.8 13.135 L 10.8 15.215 C 10.8 15.255 10.78 15.295 10.75 15.325 C 10.719 15.351 10.68 15.365 10.64 15.365 L 8.56 15.365 C 8.516 15.368 8.473 15.353 8.44 15.325 C 8.414 15.298 8.399 15.262 8.4 15.225 L 8.4 8.775 C 8.4 8.735 8.41 8.695 8.44 8.675 C 8.472 8.643 8.515 8.625 8.56 8.625 L 10.64 8.625 C 10.68 8.625 10.72 8.645 10.75 8.675 C 10.78 8.695 10.8 8.735 10.8 8.775 L 10.8 10.875 L 13.04 10.875 C 13.08 10.875 13.12 10.885 13.15 10.915 C 13.18 10.945 13.2 10.985 13.2 11.015 L 13.2 12.965 L 13.2 12.985 Z" }) + ] + } + ); +}); + +exports.default = SiOkx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.d.ts new file mode 100644 index 000000000..66f24d921 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOkx: IconType; +export { SiOkx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.mjs new file mode 100644 index 000000000..cff05654f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOkx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOkx = React.forwardRef(function SiOkx2({ title = "OKX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 7.15 8.685 C 7.18 8.705 7.2 8.745 7.2 8.785 L 7.2 15.225 C 7.2 15.265 7.18 15.305 7.15 15.325 C 7.121 15.355 7.082 15.372 7.04 15.375 L 0.16 15.375 C 0.118 15.372 0.079 15.355 0.05 15.325 C 0.02 15.3 0.002 15.264 0 15.225 L 0 8.785 C 0 8.745 0.02 8.705 0.05 8.685 C 0.079 8.655 0.118 8.638 0.16 8.635 L 7.04 8.635 C 7.08 8.635 7.12 8.655 7.15 8.685 Z M 4.8 11.035 C 4.798 10.996 4.78 10.96 4.75 10.935 C 4.721 10.905 4.682 10.887 4.64 10.885 L 2.56 10.885 C 2.52 10.885 2.481 10.899 2.45 10.925 C 2.42 10.95 2.402 10.986 2.4 11.025 L 2.4 12.975 C 2.4 13.015 2.42 13.055 2.45 13.075 C 2.48 13.115 2.52 13.125 2.56 13.125 L 4.64 13.125 C 4.68 13.125 4.72 13.115 4.75 13.085 C 4.78 13.06 4.798 13.024 4.8 12.985 L 4.8 11.035 Z M 21.6 11.035 L 21.6 12.975 C 21.6 13.065 21.53 13.125 21.44 13.125 L 19.36 13.125 C 19.27 13.125 19.2 13.065 19.2 12.975 L 19.2 11.035 C 19.2 10.955 19.27 10.885 19.36 10.885 L 21.44 10.885 C 21.53 10.885 21.6 10.945 21.6 11.035 Z M 19.2 8.785 L 19.2 10.735 C 19.2 10.815 19.13 10.885 19.04 10.885 L 16.96 10.885 C 16.87 10.885 16.8 10.815 16.8 10.735 L 16.8 8.785 C 16.8 8.705 16.87 8.635 16.96 8.635 L 19.04 8.635 C 19.13 8.635 19.2 8.705 19.2 8.785 Z M 24 8.785 L 24 10.735 C 24 10.815 23.93 10.885 23.84 10.885 L 21.76 10.885 C 21.67 10.885 21.6 10.815 21.6 10.735 L 21.6 8.785 C 21.6 8.705 21.67 8.635 21.76 8.635 L 23.84 8.635 C 23.93 8.635 24 8.705 24 8.785 Z M 19.2 13.285 L 19.2 15.225 C 19.2 15.305 19.13 15.375 19.04 15.375 L 16.96 15.375 C 16.87 15.375 16.8 15.305 16.8 15.225 L 16.8 13.275 C 16.8 13.195 16.87 13.125 16.96 13.125 L 19.04 13.125 C 19.13 13.125 19.2 13.195 19.2 13.275 L 19.2 13.285 Z M 24 13.285 L 24 15.225 C 24 15.305 23.93 15.375 23.84 15.375 L 21.76 15.375 C 21.67 15.375 21.6 15.305 21.6 15.225 L 21.6 13.275 C 21.6 13.195 21.67 13.125 21.76 13.125 L 23.84 13.125 C 23.93 13.125 24 13.195 24 13.275 L 24 13.285 Z M 15.6 8.785 L 15.6 10.735 C 15.6 10.815 15.53 10.885 15.44 10.885 L 13.36 10.885 C 13.27 10.885 13.2 10.815 13.2 10.735 L 13.2 8.785 C 13.2 8.705 13.27 8.635 13.36 8.635 L 15.44 8.635 C 15.53 8.635 15.6 8.705 15.6 8.785 Z M 15.6 13.285 L 15.6 15.225 C 15.6 15.305 15.53 15.375 15.44 15.375 L 13.36 15.375 C 13.27 15.375 13.2 15.305 13.2 15.225 L 13.2 13.275 C 13.2 13.195 13.27 13.125 13.36 13.125 L 15.44 13.125 C 15.53 13.125 15.6 13.195 15.6 13.275 L 15.6 13.285 Z M 13.2 12.985 C 13.195 13.069 13.125 13.135 13.04 13.135 L 10.8 13.135 L 10.8 15.215 C 10.8 15.255 10.78 15.295 10.75 15.325 C 10.719 15.351 10.68 15.365 10.64 15.365 L 8.56 15.365 C 8.516 15.368 8.473 15.353 8.44 15.325 C 8.414 15.298 8.399 15.262 8.4 15.225 L 8.4 8.775 C 8.4 8.735 8.41 8.695 8.44 8.675 C 8.472 8.643 8.515 8.625 8.56 8.625 L 10.64 8.625 C 10.68 8.625 10.72 8.645 10.75 8.675 C 10.78 8.695 10.8 8.735 10.8 8.775 L 10.8 10.875 L 13.04 10.875 C 13.08 10.875 13.12 10.885 13.15 10.915 C 13.18 10.945 13.2 10.985 13.2 11.015 L 13.2 12.965 L 13.2 12.985 Z" }) + ] + } + ); +}); + +export { SiOkx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.cjs new file mode 100644 index 000000000..27795260d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOllama = React__namespace.forwardRef(function SiOllama2({ title = "Ollama", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.361 10.26a.894.894 0 0 0-.558.47l-.072.148.001.207c0 .193.004.217.059.353.076.193.152.312.291.448.24.238.51.3.872.205a.86.86 0 0 0 .517-.436.752.752 0 0 0 .08-.498c-.064-.453-.33-.782-.724-.897a1.06 1.06 0 0 0-.466 0zm-9.203.005c-.305.096-.533.32-.65.639a1.187 1.187 0 0 0-.06.52c.057.309.31.59.598.667.362.095.632.033.872-.205.14-.136.215-.255.291-.448.055-.136.059-.16.059-.353l.001-.207-.072-.148a.894.894 0 0 0-.565-.472 1.02 1.02 0 0 0-.474.007Zm4.184 2c-.131.071-.223.25-.195.383.031.143.157.288.353.407.105.063.112.072.117.136.004.038-.01.146-.029.243-.02.094-.036.194-.036.222.002.074.07.195.143.253.064.052.076.054.255.059.164.005.198.001.264-.03.169-.082.212-.234.15-.525-.052-.243-.042-.28.087-.355.137-.08.281-.219.324-.314a.365.365 0 0 0-.175-.48.394.394 0 0 0-.181-.033c-.126 0-.207.03-.355.124l-.085.053-.053-.032c-.219-.13-.259-.145-.391-.143a.396.396 0 0 0-.193.032zm.39-2.195c-.373.036-.475.05-.654.086-.291.06-.68.195-.951.328-.94.46-1.589 1.226-1.787 2.114-.04.176-.045.234-.045.53 0 .294.005.357.043.524.264 1.16 1.332 2.017 2.714 2.173.3.033 1.596.033 1.896 0 1.11-.125 2.064-.727 2.493-1.571.114-.226.169-.372.22-.602.039-.167.044-.23.044-.523 0-.297-.005-.355-.045-.531-.288-1.29-1.539-2.304-3.072-2.497a6.873 6.873 0 0 0-.855-.031zm.645.937a3.283 3.283 0 0 1 1.44.514c.223.148.537.458.671.662.166.251.26.508.303.82.02.143.01.251-.043.482-.08.345-.332.705-.672.957a3.115 3.115 0 0 1-.689.348c-.382.122-.632.144-1.525.138-.582-.006-.686-.01-.853-.042-.57-.107-1.022-.334-1.35-.68-.264-.28-.385-.535-.45-.946-.03-.192.025-.509.137-.776.136-.326.488-.73.836-.963.403-.269.934-.46 1.422-.512.187-.02.586-.02.773-.002zm-5.503-11a1.653 1.653 0 0 0-.683.298C5.617.74 5.173 1.666 4.985 2.819c-.07.436-.119 1.04-.119 1.503 0 .544.064 1.24.155 1.721.02.107.031.202.023.208a8.12 8.12 0 0 1-.187.152 5.324 5.324 0 0 0-.949 1.02 5.49 5.49 0 0 0-.94 2.339 6.625 6.625 0 0 0-.023 1.357c.091.78.325 1.438.727 2.04l.13.195-.037.064c-.269.452-.498 1.105-.605 1.732-.084.496-.095.629-.095 1.294 0 .67.009.803.088 1.266.095.555.288 1.143.503 1.534.071.128.243.393.264.407.007.003-.014.067-.046.141a7.405 7.405 0 0 0-.548 1.873c-.062.417-.071.552-.071.991 0 .56.031.832.148 1.279L3.42 24h1.478l-.05-.091c-.297-.552-.325-1.575-.068-2.597.117-.472.25-.819.498-1.296l.148-.29v-.177c0-.165-.003-.184-.057-.293a.915.915 0 0 0-.194-.25 1.74 1.74 0 0 1-.385-.543c-.424-.92-.506-2.286-.208-3.451.124-.486.329-.918.544-1.154a.787.787 0 0 0 .223-.531c0-.195-.07-.355-.224-.522a3.136 3.136 0 0 1-.817-1.729c-.14-.96.114-2.005.69-2.834.563-.814 1.353-1.336 2.237-1.475.199-.033.57-.028.776.01.226.04.367.028.512-.041.179-.085.268-.19.374-.431.093-.215.165-.333.36-.576.234-.29.46-.489.822-.729.413-.27.884-.467 1.352-.561.17-.035.25-.04.569-.04.319 0 .398.005.569.04a4.07 4.07 0 0 1 1.914.997c.117.109.398.457.488.602.034.057.095.177.132.267.105.241.195.346.374.43.14.068.286.082.503.045.343-.058.607-.053.943.016 1.144.23 2.14 1.173 2.581 2.437.385 1.108.276 2.267-.296 3.153-.097.15-.193.27-.333.419-.301.322-.301.722-.001 1.053.493.539.801 1.866.708 3.036-.062.772-.26 1.463-.533 1.854a2.096 2.096 0 0 1-.224.258.916.916 0 0 0-.194.25c-.054.109-.057.128-.057.293v.178l.148.29c.248.476.38.823.498 1.295.253 1.008.231 2.01-.059 2.581a.845.845 0 0 0-.044.098c0 .006.329.009.732.009h.73l.02-.074.036-.134c.019-.076.057-.3.088-.516.029-.217.029-1.016 0-1.258-.11-.875-.295-1.57-.597-2.226-.032-.074-.053-.138-.046-.141.008-.005.057-.074.108-.152.376-.569.607-1.284.724-2.228.031-.26.031-1.378 0-1.628-.083-.645-.182-1.082-.348-1.525a6.083 6.083 0 0 0-.329-.7l-.038-.064.131-.194c.402-.604.636-1.262.727-2.04a6.625 6.625 0 0 0-.024-1.358 5.512 5.512 0 0 0-.939-2.339 5.325 5.325 0 0 0-.95-1.02 8.097 8.097 0 0 1-.186-.152.692.692 0 0 1 .023-.208c.208-1.087.201-2.443-.017-3.503-.19-.924-.535-1.658-.98-2.082-.354-.338-.716-.482-1.15-.455-.996.059-1.8 1.205-2.116 3.01a6.805 6.805 0 0 0-.097.726c0 .036-.007.066-.015.066a.96.96 0 0 1-.149-.078A4.857 4.857 0 0 0 12 3.03c-.832 0-1.687.243-2.456.698a.958.958 0 0 1-.148.078c-.008 0-.015-.03-.015-.066a6.71 6.71 0 0 0-.097-.725C8.997 1.392 8.337.319 7.46.048a2.096 2.096 0 0 0-.585-.041Zm.293 1.402c.248.197.523.759.682 1.388.03.113.06.244.069.292.007.047.026.152.041.233.067.365.098.76.102 1.24l.002.475-.12.175-.118.178h-.278c-.324 0-.646.041-.954.124l-.238.06c-.033.007-.038-.003-.057-.144a8.438 8.438 0 0 1 .016-2.323c.124-.788.413-1.501.696-1.711.067-.05.079-.049.157.013zm9.825-.012c.17.126.358.46.498.888.28.854.36 2.028.212 3.145-.019.14-.024.151-.057.144l-.238-.06a3.693 3.693 0 0 0-.954-.124h-.278l-.119-.178-.119-.175.002-.474c.004-.669.066-1.19.214-1.772.157-.623.434-1.185.68-1.382.078-.062.09-.063.159-.012z" }) + ] + } + ); +}); + +exports.default = SiOllama; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.d.ts new file mode 100644 index 000000000..892a97a5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOllama: IconType; +export { SiOllama as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.mjs new file mode 100644 index 000000000..9145b32ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOllama.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOllama = React.forwardRef(function SiOllama2({ title = "Ollama", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.361 10.26a.894.894 0 0 0-.558.47l-.072.148.001.207c0 .193.004.217.059.353.076.193.152.312.291.448.24.238.51.3.872.205a.86.86 0 0 0 .517-.436.752.752 0 0 0 .08-.498c-.064-.453-.33-.782-.724-.897a1.06 1.06 0 0 0-.466 0zm-9.203.005c-.305.096-.533.32-.65.639a1.187 1.187 0 0 0-.06.52c.057.309.31.59.598.667.362.095.632.033.872-.205.14-.136.215-.255.291-.448.055-.136.059-.16.059-.353l.001-.207-.072-.148a.894.894 0 0 0-.565-.472 1.02 1.02 0 0 0-.474.007Zm4.184 2c-.131.071-.223.25-.195.383.031.143.157.288.353.407.105.063.112.072.117.136.004.038-.01.146-.029.243-.02.094-.036.194-.036.222.002.074.07.195.143.253.064.052.076.054.255.059.164.005.198.001.264-.03.169-.082.212-.234.15-.525-.052-.243-.042-.28.087-.355.137-.08.281-.219.324-.314a.365.365 0 0 0-.175-.48.394.394 0 0 0-.181-.033c-.126 0-.207.03-.355.124l-.085.053-.053-.032c-.219-.13-.259-.145-.391-.143a.396.396 0 0 0-.193.032zm.39-2.195c-.373.036-.475.05-.654.086-.291.06-.68.195-.951.328-.94.46-1.589 1.226-1.787 2.114-.04.176-.045.234-.045.53 0 .294.005.357.043.524.264 1.16 1.332 2.017 2.714 2.173.3.033 1.596.033 1.896 0 1.11-.125 2.064-.727 2.493-1.571.114-.226.169-.372.22-.602.039-.167.044-.23.044-.523 0-.297-.005-.355-.045-.531-.288-1.29-1.539-2.304-3.072-2.497a6.873 6.873 0 0 0-.855-.031zm.645.937a3.283 3.283 0 0 1 1.44.514c.223.148.537.458.671.662.166.251.26.508.303.82.02.143.01.251-.043.482-.08.345-.332.705-.672.957a3.115 3.115 0 0 1-.689.348c-.382.122-.632.144-1.525.138-.582-.006-.686-.01-.853-.042-.57-.107-1.022-.334-1.35-.68-.264-.28-.385-.535-.45-.946-.03-.192.025-.509.137-.776.136-.326.488-.73.836-.963.403-.269.934-.46 1.422-.512.187-.02.586-.02.773-.002zm-5.503-11a1.653 1.653 0 0 0-.683.298C5.617.74 5.173 1.666 4.985 2.819c-.07.436-.119 1.04-.119 1.503 0 .544.064 1.24.155 1.721.02.107.031.202.023.208a8.12 8.12 0 0 1-.187.152 5.324 5.324 0 0 0-.949 1.02 5.49 5.49 0 0 0-.94 2.339 6.625 6.625 0 0 0-.023 1.357c.091.78.325 1.438.727 2.04l.13.195-.037.064c-.269.452-.498 1.105-.605 1.732-.084.496-.095.629-.095 1.294 0 .67.009.803.088 1.266.095.555.288 1.143.503 1.534.071.128.243.393.264.407.007.003-.014.067-.046.141a7.405 7.405 0 0 0-.548 1.873c-.062.417-.071.552-.071.991 0 .56.031.832.148 1.279L3.42 24h1.478l-.05-.091c-.297-.552-.325-1.575-.068-2.597.117-.472.25-.819.498-1.296l.148-.29v-.177c0-.165-.003-.184-.057-.293a.915.915 0 0 0-.194-.25 1.74 1.74 0 0 1-.385-.543c-.424-.92-.506-2.286-.208-3.451.124-.486.329-.918.544-1.154a.787.787 0 0 0 .223-.531c0-.195-.07-.355-.224-.522a3.136 3.136 0 0 1-.817-1.729c-.14-.96.114-2.005.69-2.834.563-.814 1.353-1.336 2.237-1.475.199-.033.57-.028.776.01.226.04.367.028.512-.041.179-.085.268-.19.374-.431.093-.215.165-.333.36-.576.234-.29.46-.489.822-.729.413-.27.884-.467 1.352-.561.17-.035.25-.04.569-.04.319 0 .398.005.569.04a4.07 4.07 0 0 1 1.914.997c.117.109.398.457.488.602.034.057.095.177.132.267.105.241.195.346.374.43.14.068.286.082.503.045.343-.058.607-.053.943.016 1.144.23 2.14 1.173 2.581 2.437.385 1.108.276 2.267-.296 3.153-.097.15-.193.27-.333.419-.301.322-.301.722-.001 1.053.493.539.801 1.866.708 3.036-.062.772-.26 1.463-.533 1.854a2.096 2.096 0 0 1-.224.258.916.916 0 0 0-.194.25c-.054.109-.057.128-.057.293v.178l.148.29c.248.476.38.823.498 1.295.253 1.008.231 2.01-.059 2.581a.845.845 0 0 0-.044.098c0 .006.329.009.732.009h.73l.02-.074.036-.134c.019-.076.057-.3.088-.516.029-.217.029-1.016 0-1.258-.11-.875-.295-1.57-.597-2.226-.032-.074-.053-.138-.046-.141.008-.005.057-.074.108-.152.376-.569.607-1.284.724-2.228.031-.26.031-1.378 0-1.628-.083-.645-.182-1.082-.348-1.525a6.083 6.083 0 0 0-.329-.7l-.038-.064.131-.194c.402-.604.636-1.262.727-2.04a6.625 6.625 0 0 0-.024-1.358 5.512 5.512 0 0 0-.939-2.339 5.325 5.325 0 0 0-.95-1.02 8.097 8.097 0 0 1-.186-.152.692.692 0 0 1 .023-.208c.208-1.087.201-2.443-.017-3.503-.19-.924-.535-1.658-.98-2.082-.354-.338-.716-.482-1.15-.455-.996.059-1.8 1.205-2.116 3.01a6.805 6.805 0 0 0-.097.726c0 .036-.007.066-.015.066a.96.96 0 0 1-.149-.078A4.857 4.857 0 0 0 12 3.03c-.832 0-1.687.243-2.456.698a.958.958 0 0 1-.148.078c-.008 0-.015-.03-.015-.066a6.71 6.71 0 0 0-.097-.725C8.997 1.392 8.337.319 7.46.048a2.096 2.096 0 0 0-.585-.041Zm.293 1.402c.248.197.523.759.682 1.388.03.113.06.244.069.292.007.047.026.152.041.233.067.365.098.76.102 1.24l.002.475-.12.175-.118.178h-.278c-.324 0-.646.041-.954.124l-.238.06c-.033.007-.038-.003-.057-.144a8.438 8.438 0 0 1 .016-2.323c.124-.788.413-1.501.696-1.711.067-.05.079-.049.157.013zm9.825-.012c.17.126.358.46.498.888.28.854.36 2.028.212 3.145-.019.14-.024.151-.057.144l-.238-.06a3.693 3.693 0 0 0-.954-.124h-.278l-.119-.178-.119-.175.002-.474c.004-.669.066-1.19.214-1.772.157-.623.434-1.185.68-1.382.078-.062.09-.063.159-.012z" }) + ] + } + ); +}); + +export { SiOllama as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.cjs new file mode 100644 index 000000000..b2dcd298e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#10C1D0"; +const SiOmadacloud = React__namespace.forwardRef(function SiOmadacloud2({ title = "Omada Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.7661 7.7505c-1.5153 0-2.9.6719-3.785 1.9064l.6576.675c.71-.9905 1.9078-1.6246 3.1274-1.6246 1.2207 0 2.4211.634 3.131 1.6246l.6558-.6737c-.885-1.235-2.271-1.9077-3.7868-1.9077Zm-.006 2.1913c-.9665 0-1.8425.4007-2.481 1.1946l.6656.6835c.4615-.5727 1.1276-.921 1.8154-.921.6884 0 1.3536.3633 1.815.9372l.6737-.692c-.639-.795-1.521-1.2023-2.4887-1.2023zm5.9575.9935v1.7361a1.9864 1.9864 0 0 0-1.2757-.4662c-1.0993 0-1.9933.897-1.9933 1.9995 0 1.103.894 1.9996 1.9933 1.9996.4848 0 .93-.1747 1.2757-.4645v.3045h.718v-5.109Zm-12.524 1.2699c-.8826 0-1.6005.7202-1.6005 1.6053v2.2343h.718v-2.2343c0-.4879.396-.885.8824-.885.487 0 .8833.3971.8833.885v2.2343h.7176v-2.2343c0-.4879.3959-.885.8829-.885.487 0 .8833.3971.8833.885v2.2343h.7176v-2.2343c0-.885-.7184-1.6053-1.601-1.6053-.4837 0-.9355.2168-1.2416.5952-.3066-.3784-.7583-.5952-1.242-.5952Zm6.6682 0c-1.0992 0-1.9933.897-1.9933 1.9995 0 1.103.894 1.9996 1.9933 1.9996.465 0 .9166-.1652 1.2757-.4663v.3063h.718v-1.8396c0-1.1025-.8945-1.9995-1.9937-1.9995zm9.145 0c-1.0993 0-1.9938.897-1.9938 1.9995 0 1.103.8945 1.9996 1.9937 1.9996.465 0 .9162-.1652 1.2753-.4663v.3063H24v-1.8396c0-1.1025-.894-1.9995-1.9933-1.9995zm-20.0122.0443c-.062 0-.1234.0029-.184.0085C.7966 12.3515 0 13.209 0 14.2495c0 1.1028.8948 2 1.9946 2 1.0999 0 1.9947-.8972 1.9947-2s-.8948-2-1.9947-2zm10.8674.676c.7032 0 1.2757.574 1.2757 1.2792 0 .7058-.5725 1.2793-1.2757 1.2793s-1.2752-.5735-1.2752-1.2793c0-.7053.572-1.2793 1.2752-1.2793zm4.58 0c.7033 0 1.2758.574 1.2758 1.2792 0 .7058-.5725 1.2793-1.2757 1.2793s-1.2753-.5735-1.2753-1.2793c0-.7053.572-1.2793 1.2753-1.2793zm4.565 0c.7031 0 1.2752.574 1.2752 1.2792 0 .7058-.572 1.2793-1.2753 1.2793-.7032 0-1.2761-.5735-1.2761-1.2793 0-.7053.5729-1.2793 1.2761-1.2793zm-19.9988.0582c.7033 0 1.2758.5735 1.2758 1.2788 0 .7058-.5725 1.2797-1.2757 1.2797-.7033 0-1.2753-.5739-1.2753-1.2797 0-.7053.572-1.2788 1.2753-1.2788z" }) + ] + } + ); +}); + +exports.default = SiOmadacloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.d.ts new file mode 100644 index 000000000..6c32701c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#10C1D0"; +declare const SiOmadacloud: IconType; +export { SiOmadacloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.mjs new file mode 100644 index 000000000..013bc5419 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOmadacloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#10C1D0"; +const SiOmadacloud = React.forwardRef(function SiOmadacloud2({ title = "Omada Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.7661 7.7505c-1.5153 0-2.9.6719-3.785 1.9064l.6576.675c.71-.9905 1.9078-1.6246 3.1274-1.6246 1.2207 0 2.4211.634 3.131 1.6246l.6558-.6737c-.885-1.235-2.271-1.9077-3.7868-1.9077Zm-.006 2.1913c-.9665 0-1.8425.4007-2.481 1.1946l.6656.6835c.4615-.5727 1.1276-.921 1.8154-.921.6884 0 1.3536.3633 1.815.9372l.6737-.692c-.639-.795-1.521-1.2023-2.4887-1.2023zm5.9575.9935v1.7361a1.9864 1.9864 0 0 0-1.2757-.4662c-1.0993 0-1.9933.897-1.9933 1.9995 0 1.103.894 1.9996 1.9933 1.9996.4848 0 .93-.1747 1.2757-.4645v.3045h.718v-5.109Zm-12.524 1.2699c-.8826 0-1.6005.7202-1.6005 1.6053v2.2343h.718v-2.2343c0-.4879.396-.885.8824-.885.487 0 .8833.3971.8833.885v2.2343h.7176v-2.2343c0-.4879.3959-.885.8829-.885.487 0 .8833.3971.8833.885v2.2343h.7176v-2.2343c0-.885-.7184-1.6053-1.601-1.6053-.4837 0-.9355.2168-1.2416.5952-.3066-.3784-.7583-.5952-1.242-.5952Zm6.6682 0c-1.0992 0-1.9933.897-1.9933 1.9995 0 1.103.894 1.9996 1.9933 1.9996.465 0 .9166-.1652 1.2757-.4663v.3063h.718v-1.8396c0-1.1025-.8945-1.9995-1.9937-1.9995zm9.145 0c-1.0993 0-1.9938.897-1.9938 1.9995 0 1.103.8945 1.9996 1.9937 1.9996.465 0 .9162-.1652 1.2753-.4663v.3063H24v-1.8396c0-1.1025-.894-1.9995-1.9933-1.9995zm-20.0122.0443c-.062 0-.1234.0029-.184.0085C.7966 12.3515 0 13.209 0 14.2495c0 1.1028.8948 2 1.9946 2 1.0999 0 1.9947-.8972 1.9947-2s-.8948-2-1.9947-2zm10.8674.676c.7032 0 1.2757.574 1.2757 1.2792 0 .7058-.5725 1.2793-1.2757 1.2793s-1.2752-.5735-1.2752-1.2793c0-.7053.572-1.2793 1.2752-1.2793zm4.58 0c.7033 0 1.2758.574 1.2758 1.2792 0 .7058-.5725 1.2793-1.2757 1.2793s-1.2753-.5735-1.2753-1.2793c0-.7053.572-1.2793 1.2753-1.2793zm4.565 0c.7031 0 1.2752.574 1.2752 1.2792 0 .7058-.572 1.2793-1.2753 1.2793-.7032 0-1.2761-.5735-1.2761-1.2793 0-.7053.5729-1.2793 1.2761-1.2793zm-19.9988.0582c.7033 0 1.2758.5735 1.2758 1.2788 0 .7058-.5725 1.2797-1.2757 1.2797-.7033 0-1.2753-.5739-1.2753-1.2797 0-.7053.572-1.2788 1.2753-1.2788z" }) + ] + } + ); +}); + +export { SiOmadacloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.cjs new file mode 100644 index 000000000..85587a364 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9ECE6A"; +const SiOmarchy = React__namespace.forwardRef(function SiOmarchy2({ title = "Omarchy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h12.8v-3.2h8V3.2h-3.2v1.6h1.6v14.4H4.8V4.8h8V1.6h9.6v20.8h-8V24H24V0Zm1.6 1.6h9.6v1.6h-8v8H1.6Zm0 11.2h1.6v8h8v1.6H1.6Z" }) + ] + } + ); +}); + +exports.default = SiOmarchy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.d.ts new file mode 100644 index 000000000..6b1cc6744 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9ECE6A"; +declare const SiOmarchy: IconType; +export { SiOmarchy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.mjs new file mode 100644 index 000000000..ecc5886b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOmarchy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9ECE6A"; +const SiOmarchy = React.forwardRef(function SiOmarchy2({ title = "Omarchy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h12.8v-3.2h8V3.2h-3.2v1.6h1.6v14.4H4.8V4.8h8V1.6h9.6v20.8h-8V24H24V0Zm1.6 1.6h9.6v1.6h-8v8H1.6Zm0 11.2h1.6v8h8v1.6H1.6Z" }) + ] + } + ); +}); + +export { SiOmarchy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.cjs new file mode 100644 index 000000000..2d27edf53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5010C"; +const SiOneplus = React__namespace.forwardRef(function SiOneplus2({ title = "OnePlus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.74V24h20.26V12.428h-2.256v9.317H2.254V5.995h9.318V3.742zM18.004 0v3.74h-3.758v2.256h3.758v3.758h2.255V5.996H24V3.74h-3.758V0zm-6.45 18.756V8.862H9.562c0 .682-.228 1.189-.577 1.504-.367.297-.91.437-1.556.437h-.245v1.625h2.133v6.31h2.237z" }) + ] + } + ); +}); + +exports.default = SiOneplus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.d.ts new file mode 100644 index 000000000..ae9a0b8c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5010C"; +declare const SiOneplus: IconType; +export { SiOneplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.mjs new file mode 100644 index 000000000..2ea066919 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOneplus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5010C"; +const SiOneplus = React.forwardRef(function SiOneplus2({ title = "OnePlus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.74V24h20.26V12.428h-2.256v9.317H2.254V5.995h9.318V3.742zM18.004 0v3.74h-3.758v2.256h3.758v3.758h2.255V5.996H24V3.74h-3.758V0zm-6.45 18.756V8.862H9.562c0 .682-.228 1.189-.577 1.504-.367.297-.91.437-1.556.437h-.245v1.625h2.133v6.31h2.237z" }) + ] + } + ); +}); + +export { SiOneplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.cjs new file mode 100644 index 000000000..a889c125c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOnestream = React__namespace.forwardRef(function SiOnestream2({ title = "OneStream", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.457 8.42h-2.311a9.79 9.79 0 0 1 .676 3.58c0 5.425-4.397 9.822-9.822 9.822a9.767 9.767 0 0 1-4.98-1.357 9.12 9.12 0 0 0 5.625-6.457l.817-3.529a6.918 6.918 0 0 1 2.488-3.903 6.221 6.221 0 0 1 1.52-.87 7.616 7.616 0 0 1 2.765-.51l1.642-.003C19.711 2.063 16.094 0 12 0 5.372 0 0 5.373 0 12c0 1.247.19 2.448.543 3.579h2.31A9.79 9.79 0 0 1 2.179 12c0-5.424 4.398-9.822 9.822-9.822 1.819 0 3.52.495 4.98 1.357a9.118 9.118 0 0 0-5.625 6.457l-.816 3.53a6.917 6.917 0 0 1-2.488 3.903 6.22 6.22 0 0 1-1.52.869c-.737.295-1.655.51-2.887.51l-1.522.002C4.288 21.936 7.906 24 12 24c6.628 0 12-5.373 12-12a12 12 0 0 0-.543-3.58Z" }) + ] + } + ); +}); + +exports.default = SiOnestream; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.d.ts new file mode 100644 index 000000000..f372d3a7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOnestream: IconType; +export { SiOnestream as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.mjs new file mode 100644 index 000000000..89290efa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnestream.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOnestream = React.forwardRef(function SiOnestream2({ title = "OneStream", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.457 8.42h-2.311a9.79 9.79 0 0 1 .676 3.58c0 5.425-4.397 9.822-9.822 9.822a9.767 9.767 0 0 1-4.98-1.357 9.12 9.12 0 0 0 5.625-6.457l.817-3.529a6.918 6.918 0 0 1 2.488-3.903 6.221 6.221 0 0 1 1.52-.87 7.616 7.616 0 0 1 2.765-.51l1.642-.003C19.711 2.063 16.094 0 12 0 5.372 0 0 5.373 0 12c0 1.247.19 2.448.543 3.579h2.31A9.79 9.79 0 0 1 2.179 12c0-5.424 4.398-9.822 9.822-9.822 1.819 0 3.52.495 4.98 1.357a9.118 9.118 0 0 0-5.625 6.457l-.816 3.53a6.917 6.917 0 0 1-2.488 3.903 6.22 6.22 0 0 1-1.52.869c-.737.295-1.655.51-2.887.51l-1.522.002C4.288 21.936 7.906 24 12 24c6.628 0 12-5.373 12-12a12 12 0 0 0-.543-3.58Z" }) + ] + } + ); +}); + +export { SiOnestream as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.cjs new file mode 100644 index 000000000..13931f887 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AFF0"; +const SiOnlyfans = React__namespace.forwardRef(function SiOnlyfans2({ title = "OnlyFans", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 4.003h-4.015c-3.45 0-5.3.197-6.748 1.957a7.996 7.996 0 1 0 2.103 9.211c3.182-.231 5.39-2.134 6.085-5.173 0 0-2.399.585-4.43 0 4.018-.777 6.333-3.037 7.005-5.995zM5.61 11.999A2.391 2.391 0 0 1 9.28 9.97a2.966 2.966 0 0 1 2.998-2.528h.008c-.92 1.778-1.407 3.352-1.998 5.263A2.392 2.392 0 0 1 5.61 12Zm2.386-7.996a7.996 7.996 0 1 0 7.996 7.996 7.996 7.996 0 0 0-7.996-7.996Zm0 10.394A2.399 2.399 0 1 1 10.395 12a2.396 2.396 0 0 1-2.399 2.398Z" }) + ] + } + ); +}); + +exports.default = SiOnlyfans; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.d.ts new file mode 100644 index 000000000..362fbed0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AFF0"; +declare const SiOnlyfans: IconType; +export { SiOnlyfans as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.mjs new file mode 100644 index 000000000..0eb18093e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyfans.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AFF0"; +const SiOnlyfans = React.forwardRef(function SiOnlyfans2({ title = "OnlyFans", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 4.003h-4.015c-3.45 0-5.3.197-6.748 1.957a7.996 7.996 0 1 0 2.103 9.211c3.182-.231 5.39-2.134 6.085-5.173 0 0-2.399.585-4.43 0 4.018-.777 6.333-3.037 7.005-5.995zM5.61 11.999A2.391 2.391 0 0 1 9.28 9.97a2.966 2.966 0 0 1 2.998-2.528h.008c-.92 1.778-1.407 3.352-1.998 5.263A2.392 2.392 0 0 1 5.61 12Zm2.386-7.996a7.996 7.996 0 1 0 7.996 7.996 7.996 7.996 0 0 0-7.996-7.996Zm0 10.394A2.399 2.399 0 1 1 10.395 12a2.396 2.396 0 0 1-2.399 2.398Z" }) + ] + } + ); +}); + +export { SiOnlyfans as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.cjs new file mode 100644 index 000000000..731528b51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#444444"; +const SiOnlyoffice = React__namespace.forwardRef(function SiOnlyoffice2({ title = "ONLYOFFICE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.501 11.724.631 7.16c-.841-.399-.841-1.014 0-1.376l9.87-4.563c.841-.399 2.194-.399 2.998 0l9.87 4.563c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.362-2.194.362-2.998 0zm0 5.468-9.87-4.563c-.841-.399-.841-1.014 0-1.376l3.363-1.558 6.507 3.006c.841.398 2.194.398 2.998 0l6.507-3.006 3.363 1.558c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.398-2.194.398-2.998 0zm0 0.0001-9.87-4.563c-.841-.399-.841-1.014 0-1.376l3.363-1.558 6.507 3.006c.841.398 2.194.398 2.998 0l6.507-3.006 3.363 1.558c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.398-2.194.398-2.998 0zm0 5.613-9.87-4.563c-.841-.398-.841-1.014 0-1.376l3.436-1.593 6.398 2.97c.84.398 2.193.398 2.997 0l6.398-2.97 3.436 1.593c.841.399.841 1.014 0 1.376l-9.87 4.563c-.768.362-2.12.362-2.925 0z" }) + ] + } + ); +}); + +exports.default = SiOnlyoffice; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.d.ts new file mode 100644 index 000000000..886408b6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#444444"; +declare const SiOnlyoffice: IconType; +export { SiOnlyoffice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.mjs new file mode 100644 index 000000000..e82388429 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnlyoffice.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#444444"; +const SiOnlyoffice = React.forwardRef(function SiOnlyoffice2({ title = "ONLYOFFICE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.501 11.724.631 7.16c-.841-.399-.841-1.014 0-1.376l9.87-4.563c.841-.399 2.194-.399 2.998 0l9.87 4.563c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.362-2.194.362-2.998 0zm0 5.468-9.87-4.563c-.841-.399-.841-1.014 0-1.376l3.363-1.558 6.507 3.006c.841.398 2.194.398 2.998 0l6.507-3.006 3.363 1.558c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.398-2.194.398-2.998 0zm0 0.0001-9.87-4.563c-.841-.399-.841-1.014 0-1.376l3.363-1.558 6.507 3.006c.841.398 2.194.398 2.998 0l6.507-3.006 3.363 1.558c.841.398.841 1.014 0 1.376l-9.87 4.563c-.841.398-2.194.398-2.998 0zm0 5.613-9.87-4.563c-.841-.398-.841-1.014 0-1.376l3.436-1.593 6.398 2.97c.84.398 2.193.398 2.997 0l6.398-2.97 3.436 1.593c.841.399.841 1.014 0 1.376l-9.87 4.563c-.768.362-2.12.362-2.925 0z" }) + ] + } + ); +}); + +export { SiOnlyoffice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.cjs new file mode 100644 index 000000000..ea49e4812 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005CED"; +const SiOnnx = React__namespace.forwardRef(function SiOnnx2({ title = "ONNX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.0325 11.2963c-.0503 0-.1006 0-.1508.0126l-4.021-7.4387c.0754-.1383.1131-.289.1131-.4524 0-.5403-.4398-.9675-.9675-.9675-.2765 0-.5278.113-.7037.3015L9.286 1.156C9.2357.6785 8.821.3016 8.3184.3016c-.5277 0-.9675.4398-.9675.9675 0 .1634.0377.3141.113.4524l-6.245 8.9591c-.0753-.0251-.1633-.0377-.2513-.0377-.5403 0-.9675.4398-.9675.9676 0 .5403.4398.9675.9675.9675h.0377l3.3676 8.3309c-.0503.1257-.088.2639-.088.402 0 .5404.4398.9676.9676.9676.2764 0 .5277-.113.7036-.3015l10.1152.9926c.1005.4273.49.7288.9424.7288.5403 0 .9676-.4398.9676-.9675 0-.2388-.088-.465-.2262-.6283l5.1141-8.8712c.0503.0126.1005.0126.1634.0126.5403 0 .9675-.4398.9675-.9676 0-.5403-.4272-.98-.9675-.98zM17.2272 4.021c.1131.1508.2765.264.4524.3267l-1.533 11.5728c-.1005.0252-.1885.0503-.2764.1005L7.4513 8.708c.0251-.0754.0377-.1634.0377-.2514 0-.0628-.0126-.1256-.0126-.1884zm4.8754 8.5068l-5.177 3.556a1.105 1.105 0 0 0-.1256-.0753L18.3455 4.335h.0126l3.9456 7.288c-.1508.1759-.2388.3895-.2388.6408 0 .1005.0126.1885.0377.2638zM6.3832 7.5016c-.4649.0754-.8293.4775-.8293.955v.0628l-3.4555 2.0481 5.378-7.7026zm.3519 1.91c.1256-.0252.2513-.088.3518-.1634l8.356 7.2628c-.0377.113-.0628.2262-.0628.3518v.0503l-9.311 3.845c-.1382-.201-.3518-.3518-.6031-.402zm8.8963 8.1172c.1257.1382.3016.2513.5026.289l.465 4.046c-.201.1006-.3519.264-.4524.4524l-9.8136-.955zm1.1435.2136c.3267-.1633.5403-.49.5403-.867 0-.088-.0126-.1634-.0377-.2513l4.7372-3.2545-4.8 8.331zm.2513-14.3497l-9.889 4.31-.1131-.0755 1.2565-5.3906h.0377c.3393 0 .6409-.1759.8168-.4397l7.891 1.5706zM1.935 11.6105c0-.0629-.0126-.1257-.0126-.1885l3.9079-2.2995c.0754.0754.1633.1508.2638.201L4.8252 20.243l-3.2043-7.9036c.1885-.176.3142-.4398.3142-.7288Z" }) + ] + } + ); +}); + +exports.default = SiOnnx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.d.ts new file mode 100644 index 000000000..a4d101151 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005CED"; +declare const SiOnnx: IconType; +export { SiOnnx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.mjs new file mode 100644 index 000000000..718a55864 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnnx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005CED"; +const SiOnnx = React.forwardRef(function SiOnnx2({ title = "ONNX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.0325 11.2963c-.0503 0-.1006 0-.1508.0126l-4.021-7.4387c.0754-.1383.1131-.289.1131-.4524 0-.5403-.4398-.9675-.9675-.9675-.2765 0-.5278.113-.7037.3015L9.286 1.156C9.2357.6785 8.821.3016 8.3184.3016c-.5277 0-.9675.4398-.9675.9675 0 .1634.0377.3141.113.4524l-6.245 8.9591c-.0753-.0251-.1633-.0377-.2513-.0377-.5403 0-.9675.4398-.9675.9676 0 .5403.4398.9675.9675.9675h.0377l3.3676 8.3309c-.0503.1257-.088.2639-.088.402 0 .5404.4398.9676.9676.9676.2764 0 .5277-.113.7036-.3015l10.1152.9926c.1005.4273.49.7288.9424.7288.5403 0 .9676-.4398.9676-.9675 0-.2388-.088-.465-.2262-.6283l5.1141-8.8712c.0503.0126.1005.0126.1634.0126.5403 0 .9675-.4398.9675-.9676 0-.5403-.4272-.98-.9675-.98zM17.2272 4.021c.1131.1508.2765.264.4524.3267l-1.533 11.5728c-.1005.0252-.1885.0503-.2764.1005L7.4513 8.708c.0251-.0754.0377-.1634.0377-.2514 0-.0628-.0126-.1256-.0126-.1884zm4.8754 8.5068l-5.177 3.556a1.105 1.105 0 0 0-.1256-.0753L18.3455 4.335h.0126l3.9456 7.288c-.1508.1759-.2388.3895-.2388.6408 0 .1005.0126.1885.0377.2638zM6.3832 7.5016c-.4649.0754-.8293.4775-.8293.955v.0628l-3.4555 2.0481 5.378-7.7026zm.3519 1.91c.1256-.0252.2513-.088.3518-.1634l8.356 7.2628c-.0377.113-.0628.2262-.0628.3518v.0503l-9.311 3.845c-.1382-.201-.3518-.3518-.6031-.402zm8.8963 8.1172c.1257.1382.3016.2513.5026.289l.465 4.046c-.201.1006-.3519.264-.4524.4524l-9.8136-.955zm1.1435.2136c.3267-.1633.5403-.49.5403-.867 0-.088-.0126-.1634-.0377-.2513l4.7372-3.2545-4.8 8.331zm.2513-14.3497l-9.889 4.31-.1131-.0755 1.2565-5.3906h.0377c.3393 0 .6409-.1759.8168-.4397l7.891 1.5706zM1.935 11.6105c0-.0629-.0126-.1257-.0126-.1885l3.9079-2.2995c.0754.0754.1633.1508.2638.201L4.8252 20.243l-3.2043-7.9036c.1885-.176.3142-.4398.3142-.7288Z" }) + ] + } + ); +}); + +export { SiOnnx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.cjs new file mode 100644 index 000000000..2cc4c30f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003D7D"; +const SiOnstar = React__namespace.forwardRef(function SiOnstar2({ title = "OnStar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm-.049.763c6.233 0 11.304 5.066 11.304 11.294 0 6.229-5.07 11.295-11.304 11.295-6.233 0-11.304-5.066-11.304-11.295C.647 5.83 5.718.763 11.951.763zm0 .287C5.877 1.05.936 5.988.936 12.057c0 6.07 4.941 11.008 11.015 11.008 6.074 0 11.016-4.938 11.016-11.008 0-6.069-4.942-11.007-11.016-11.007zm4.73 3.25l.582 1.7 1.8.064-1.44 1.078.495 1.729-1.472-1.034-1.494 1.004.53-1.717-1.418-1.108 1.8-.028zM7.99 7.11c2.892 0 4.967 2.155 4.967 4.82v.027c0 2.664-2.102 4.847-4.994 4.847s-4.967-2.156-4.967-4.82v-.027c0-2.665 2.102-4.848 4.994-4.848zm-.027 1.9c-1.66 0-2.812 1.313-2.812 2.92v.027c0 1.606 1.179 2.945 2.839 2.945s2.812-1.312 2.812-2.918v-.027c0-1.607-1.178-2.946-2.839-2.946zm9.976.322c1.54 0 2.437 1.018 2.437 2.665v4.646h-2.035V12.64c0-.964-.455-1.46-1.232-1.46-.776 0-1.272.496-1.272 1.46v4.003h-2.035V9.466h2.035v1.018c.469-.603 1.071-1.152 2.102-1.152Z" }) + ] + } + ); +}); + +exports.default = SiOnstar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.d.ts new file mode 100644 index 000000000..39f1b0945 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003D7D"; +declare const SiOnstar: IconType; +export { SiOnstar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.mjs new file mode 100644 index 000000000..d4fbeddd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOnstar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003D7D"; +const SiOnstar = React.forwardRef(function SiOnstar2({ title = "OnStar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm-.049.763c6.233 0 11.304 5.066 11.304 11.294 0 6.229-5.07 11.295-11.304 11.295-6.233 0-11.304-5.066-11.304-11.295C.647 5.83 5.718.763 11.951.763zm0 .287C5.877 1.05.936 5.988.936 12.057c0 6.07 4.941 11.008 11.015 11.008 6.074 0 11.016-4.938 11.016-11.008 0-6.069-4.942-11.007-11.016-11.007zm4.73 3.25l.582 1.7 1.8.064-1.44 1.078.495 1.729-1.472-1.034-1.494 1.004.53-1.717-1.418-1.108 1.8-.028zM7.99 7.11c2.892 0 4.967 2.155 4.967 4.82v.027c0 2.664-2.102 4.847-4.994 4.847s-4.967-2.156-4.967-4.82v-.027c0-2.665 2.102-4.848 4.994-4.848zm-.027 1.9c-1.66 0-2.812 1.313-2.812 2.92v.027c0 1.606 1.179 2.945 2.839 2.945s2.812-1.312 2.812-2.918v-.027c0-1.607-1.178-2.946-2.839-2.946zm9.976.322c1.54 0 2.437 1.018 2.437 2.665v4.646h-2.035V12.64c0-.964-.455-1.46-1.232-1.46-.776 0-1.272.496-1.272 1.46v4.003h-2.035V9.466h2.035v1.018c.469-.603 1.071-1.152 2.102-1.152Z" }) + ] + } + ); +}); + +export { SiOnstar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.cjs new file mode 100644 index 000000000..ae58744c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7FF14"; +const SiOpel = React__namespace.forwardRef(function SiOpel2({ title = "Opel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.291 4.57a7.46 7.46 0 0 0-7.338 5.006h.568a6.926 6.926 0 0 1 6.483-4.494 6.922 6.922 0 0 1 6.922 6.924c0 .116 0 .234-.01.351l.533.059c0-.134.01-.273.01-.4a7.46 7.46 0 0 0-7.168-7.446zM.869 10.113 0 10.566l13.25 1.44 3.63-1.893H.87zm3.682 1.483v.41a7.46 7.46 0 0 0 14.498 2.441h-.57a6.924 6.924 0 0 1-6.475 4.487 6.928 6.928 0 0 1-6.92-6.928v-.352l-.533-.058zm6.193.414-3.63 1.898h16.011l.873-.453v-.006l-13.254-1.44zm13.254 1.44H24l-.002-.007v.006z" }) + ] + } + ); +}); + +exports.default = SiOpel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.d.ts new file mode 100644 index 000000000..5ce9b2f95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7FF14"; +declare const SiOpel: IconType; +export { SiOpel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.mjs new file mode 100644 index 000000000..b19a1d28d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7FF14"; +const SiOpel = React.forwardRef(function SiOpel2({ title = "Opel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.291 4.57a7.46 7.46 0 0 0-7.338 5.006h.568a6.926 6.926 0 0 1 6.483-4.494 6.922 6.922 0 0 1 6.922 6.924c0 .116 0 .234-.01.351l.533.059c0-.134.01-.273.01-.4a7.46 7.46 0 0 0-7.168-7.446zM.869 10.113 0 10.566l13.25 1.44 3.63-1.893H.87zm3.682 1.483v.41a7.46 7.46 0 0 0 14.498 2.441h-.57a6.924 6.924 0 0 1-6.475 4.487 6.928 6.928 0 0 1-6.92-6.928v-.352l-.533-.058zm6.193.414-3.63 1.898h16.011l.873-.453v-.006l-13.254-1.44zm13.254 1.44H24l-.002-.007v.006z" }) + ] + } + ); +}); + +export { SiOpel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.cjs new file mode 100644 index 000000000..d1533b795 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOpen3d = React__namespace.forwardRef(function SiOpen3d2({ title = "Open3D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.998 1.606 0 12l5.998 10.394h2.094l1.954-3.383H7.952L4.06 12.268h8.149l3.56 6.157L19.483 12l-3.715-6.444-3.56 6.18H4.055l3.893-6.747h2.098L8.088 1.606Zm2.71 0 1.954 3.383h5.386L20.096 12l-4.044 7.011h-5.394l-1.954 3.383h9.294l.488-.847L24 12 18.002 1.606Z" }) + ] + } + ); +}); + +exports.default = SiOpen3d; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.d.ts new file mode 100644 index 000000000..12320df22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOpen3d: IconType; +export { SiOpen3d as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.mjs new file mode 100644 index 000000000..a5007f45e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpen3d.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOpen3d = React.forwardRef(function SiOpen3d2({ title = "Open3D", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.998 1.606 0 12l5.998 10.394h2.094l1.954-3.383H7.952L4.06 12.268h8.149l3.56 6.157L19.483 12l-3.715-6.444-3.56 6.18H4.055l3.893-6.747h2.098L8.088 1.606Zm2.71 0 1.954 3.383h5.386L20.096 12l-4.044 7.011h-5.394l-1.954 3.383h9.294l.488-.847L24 12 18.002 1.606Z" }) + ] + } + ); +}); + +export { SiOpen3d as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.cjs new file mode 100644 index 000000000..0c0db637f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F68212"; +const SiOpenaccess = React__namespace.forwardRef(function SiOpenaccess2({ title = "Open Access", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.971 13.486a7.56 7.56 0 00-.54-1.043V6.415a6.375 6.375 0 00-1.88-4.535A6.374 6.374 0 0012.017 0h-.002a6.374 6.374 0 00-4.536 1.878 6.375 6.375 0 00-1.88 4.537v.877h2.57v-.877c0-1.026.4-1.992 1.127-2.72a3.822 3.822 0 012.72-1.125 3.852 3.852 0 013.847 3.845v3.508A7.52 7.52 0 0012 8.865a7.54 7.54 0 00-5.35 2.216 7.54 7.54 0 00-2.216 5.35 7.54 7.54 0 002.215 5.35A7.54 7.54 0 0012 24a7.54 7.54 0 005.35-2.216 7.54 7.54 0 002.216-5.35c0-1.021-.2-2.012-.595-2.946zM12 21.428a5.003 5.003 0 01-4.997-4.996A5.003 5.003 0 0112 11.435a5.002 5.002 0 014.997 4.997A5.002 5.002 0 0112 21.428zm2.145-4.973a2.12 2.12 0 11-4.24 0 2.12 2.12 0 014.24 0z" }) + ] + } + ); +}); + +exports.default = SiOpenaccess; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.d.ts new file mode 100644 index 000000000..52df0d7f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F68212"; +declare const SiOpenaccess: IconType; +export { SiOpenaccess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.mjs new file mode 100644 index 000000000..6a5f48542 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaccess.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F68212"; +const SiOpenaccess = React.forwardRef(function SiOpenaccess2({ title = "Open Access", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.971 13.486a7.56 7.56 0 00-.54-1.043V6.415a6.375 6.375 0 00-1.88-4.535A6.374 6.374 0 0012.017 0h-.002a6.374 6.374 0 00-4.536 1.878 6.375 6.375 0 00-1.88 4.537v.877h2.57v-.877c0-1.026.4-1.992 1.127-2.72a3.822 3.822 0 012.72-1.125 3.852 3.852 0 013.847 3.845v3.508A7.52 7.52 0 0012 8.865a7.54 7.54 0 00-5.35 2.216 7.54 7.54 0 00-2.216 5.35 7.54 7.54 0 002.215 5.35A7.54 7.54 0 0012 24a7.54 7.54 0 005.35-2.216 7.54 7.54 0 002.216-5.35c0-1.021-.2-2.012-.595-2.946zM12 21.428a5.003 5.003 0 01-4.997-4.996A5.003 5.003 0 0112 11.435a5.002 5.002 0 014.997 4.997A5.002 5.002 0 0112 21.428zm2.145-4.973a2.12 2.12 0 11-4.24 0 2.12 2.12 0 014.24 0z" }) + ] + } + ); +}); + +export { SiOpenaccess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.cjs new file mode 100644 index 000000000..21c798f78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0081A5"; +const SiOpenaigym = React__namespace.forwardRef(function SiOpenaigym2({ title = "OpenAI Gym", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 9.736V9.72c0-.018-.009-.035-.009-.053-.008-.017-.008-.034-.017-.052 0-.009-.009-.009-.009-.017a.19.19 0 0 0-.026-.044v-.009c-.009-.017-.026-.026-.044-.043l-.008-.009c-.018-.009-.035-.026-.053-.035l-3.72-2.143V3.02c0-.018 0-.044-.008-.061V2.94a.124.124 0 0 0-.017-.052V2.88c-.01-.017-.018-.035-.027-.043 0-.01-.008-.01-.008-.01a.19.19 0 0 0-.035-.043c-.018-.008-.026-.026-.044-.034-.008 0-.008-.01-.017-.01l-.009-.008L16.055.476a.338.338 0 0 0-.34 0l-3.72 2.143L8.286.476a.338.338 0 0 0-.34 0L4.06 2.723c-.01 0-.01.01-.01.01-.008 0-.008.008-.017.008-.017.009-.026.026-.043.035a.153.153 0 0 0-.035.043l-.009.009c-.008.017-.017.026-.026.044v.008c-.009.018-.009.035-.017.052v.018c0 .017-.009.043-.009.06v4.296L.166 9.457c-.018.01-.035.026-.053.035l-.008.009-.044.043v.01c-.009.017-.017.025-.026.043 0 .008-.009.008-.009.017a.124.124 0 0 0-.017.052C0 9.684 0 9.701 0 9.72v4.521a.34.34 0 0 0 .166.296l3.72 2.143v4.295a.34.34 0 0 0 .165.296l3.885 2.248c.009.008.018.008.026.017 0 0 .009 0 .009.009.009 0 .017.008.026.008.009 0 .009 0 .018.01.008 0 .017 0 .026.008h.061a.35.35 0 0 0 .13-.026c.018-.009.026-.009.044-.018l3.72-2.143 3.72 2.143c.017.009.026.018.043.018a.35.35 0 0 0 .13.026h.062c.008 0 .017 0 .026-.009.008 0 .008 0 .017-.009.009 0 .018-.008.026-.008.009 0 .009 0 .009-.009.009 0 .017-.009.026-.017l3.885-2.248a.34.34 0 0 0 .166-.296V16.68l3.72-2.143a.34.34 0 0 0 .165-.296V9.754c.009-.01.009-.018.009-.018zM12.17 20.67s-.009 0-.009-.009c-.009-.008-.017-.008-.035-.017-.008 0-.017-.009-.026-.009-.009 0-.017-.009-.035-.009-.008 0-.026-.008-.035-.008h-.069c-.009 0-.026 0-.035.008-.009 0-.017 0-.035.01-.009 0-.017.008-.026.008-.009.009-.017.009-.035.017 0 0-.009 0-.009.009l-3.37 1.951v-3.702l3.545-2.047 3.545 2.047v3.702zM4.4 7.793c.017-.017.025-.026.034-.026.009-.008.018-.008.026-.017l.026-.026c.01-.009.018-.018.018-.026.009-.01.009-.018.017-.026.009-.01.009-.018.018-.027.008-.008.008-.017.008-.034 0-.01.01-.018.01-.035 0-.009 0-.018.008-.035V3.603L7.77 5.46v4.094L4.225 11.6 1.02 9.745zm7.596-4.381l3.545 2.047V9.16l-3.38-1.951s-.009 0-.009-.009c-.008-.009-.017-.009-.034-.017-.01 0-.018-.009-.027-.009-.008 0-.017-.009-.034-.009-.01 0-.018-.008-.035-.008h-.07c-.009 0-.026 0-.035.008-.008 0-.017 0-.035.009-.008 0-.017.009-.026.009-.008.008-.026.008-.035.017 0 0-.008 0-.008.009L8.45 9.16v-3.7zm0 12.675L8.45 14.04V9.945l3.546-2.047 3.545 2.047v4.095zm-7.431-3.903l3.206-1.856v3.947c0 .008 0 .017.008.035 0 .008.009.017.009.034 0 .01.009.018.009.035.008.009.008.018.017.026.009.01.009.018.018.027.008.008.017.017.017.026l.026.026c.009.009.018.017.026.017.009.009.018.018.026.018l.01.008 3.38 1.952-3.207 1.855-3.545-2.047zm11.325 6.15l-3.206-1.855 3.38-1.952.009-.008c.008-.009.017-.018.026-.018.008-.008.017-.008.026-.017l.026-.026c.009-.009.017-.018.017-.026.01-.01.01-.018.018-.027.009-.008.009-.017.017-.026.009-.008.009-.017.009-.035 0-.008.009-.017.009-.034 0-.01 0-.018.008-.035v-3.947l3.206 1.856v4.094zm3.885-6.734l-3.546-2.047V5.46l3.206-1.856V7.55c0 .008 0 .017.009.034 0 .01.009.018.009.035 0 .009.008.018.008.035.01.009.01.018.018.026.008.009.008.018.017.026.009.01.018.018.018.026.008.01.017.018.026.027.008.008.017.017.026.017.009.009.017.017.026.017l.009.01 3.38 1.95zM15.89 1.164l3.205 1.856-3.205 1.855-3.206-1.855zm-7.78 0l3.206 1.856L8.11 4.866 4.905 3.02zM.68 10.337l3.205 1.856v3.702L.68 14.04zM7.77 22.62l-3.205-1.855v-3.703l3.206 1.856zm11.665-1.846l-3.206 1.855v-3.702l3.206-1.856zm3.886-6.734l-3.206 1.855v-3.702l3.206-1.856Z" }) + ] + } + ); +}); + +exports.default = SiOpenaigym; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.d.ts new file mode 100644 index 000000000..8dfb27b99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0081A5"; +declare const SiOpenaigym: IconType; +export { SiOpenaigym as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.mjs new file mode 100644 index 000000000..dba6324c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenaigym.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0081A5"; +const SiOpenaigym = React.forwardRef(function SiOpenaigym2({ title = "OpenAI Gym", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 9.736V9.72c0-.018-.009-.035-.009-.053-.008-.017-.008-.034-.017-.052 0-.009-.009-.009-.009-.017a.19.19 0 0 0-.026-.044v-.009c-.009-.017-.026-.026-.044-.043l-.008-.009c-.018-.009-.035-.026-.053-.035l-3.72-2.143V3.02c0-.018 0-.044-.008-.061V2.94a.124.124 0 0 0-.017-.052V2.88c-.01-.017-.018-.035-.027-.043 0-.01-.008-.01-.008-.01a.19.19 0 0 0-.035-.043c-.018-.008-.026-.026-.044-.034-.008 0-.008-.01-.017-.01l-.009-.008L16.055.476a.338.338 0 0 0-.34 0l-3.72 2.143L8.286.476a.338.338 0 0 0-.34 0L4.06 2.723c-.01 0-.01.01-.01.01-.008 0-.008.008-.017.008-.017.009-.026.026-.043.035a.153.153 0 0 0-.035.043l-.009.009c-.008.017-.017.026-.026.044v.008c-.009.018-.009.035-.017.052v.018c0 .017-.009.043-.009.06v4.296L.166 9.457c-.018.01-.035.026-.053.035l-.008.009-.044.043v.01c-.009.017-.017.025-.026.043 0 .008-.009.008-.009.017a.124.124 0 0 0-.017.052C0 9.684 0 9.701 0 9.72v4.521a.34.34 0 0 0 .166.296l3.72 2.143v4.295a.34.34 0 0 0 .165.296l3.885 2.248c.009.008.018.008.026.017 0 0 .009 0 .009.009.009 0 .017.008.026.008.009 0 .009 0 .018.01.008 0 .017 0 .026.008h.061a.35.35 0 0 0 .13-.026c.018-.009.026-.009.044-.018l3.72-2.143 3.72 2.143c.017.009.026.018.043.018a.35.35 0 0 0 .13.026h.062c.008 0 .017 0 .026-.009.008 0 .008 0 .017-.009.009 0 .018-.008.026-.008.009 0 .009 0 .009-.009.009 0 .017-.009.026-.017l3.885-2.248a.34.34 0 0 0 .166-.296V16.68l3.72-2.143a.34.34 0 0 0 .165-.296V9.754c.009-.01.009-.018.009-.018zM12.17 20.67s-.009 0-.009-.009c-.009-.008-.017-.008-.035-.017-.008 0-.017-.009-.026-.009-.009 0-.017-.009-.035-.009-.008 0-.026-.008-.035-.008h-.069c-.009 0-.026 0-.035.008-.009 0-.017 0-.035.01-.009 0-.017.008-.026.008-.009.009-.017.009-.035.017 0 0-.009 0-.009.009l-3.37 1.951v-3.702l3.545-2.047 3.545 2.047v3.702zM4.4 7.793c.017-.017.025-.026.034-.026.009-.008.018-.008.026-.017l.026-.026c.01-.009.018-.018.018-.026.009-.01.009-.018.017-.026.009-.01.009-.018.018-.027.008-.008.008-.017.008-.034 0-.01.01-.018.01-.035 0-.009 0-.018.008-.035V3.603L7.77 5.46v4.094L4.225 11.6 1.02 9.745zm7.596-4.381l3.545 2.047V9.16l-3.38-1.951s-.009 0-.009-.009c-.008-.009-.017-.009-.034-.017-.01 0-.018-.009-.027-.009-.008 0-.017-.009-.034-.009-.01 0-.018-.008-.035-.008h-.07c-.009 0-.026 0-.035.008-.008 0-.017 0-.035.009-.008 0-.017.009-.026.009-.008.008-.026.008-.035.017 0 0-.008 0-.008.009L8.45 9.16v-3.7zm0 12.675L8.45 14.04V9.945l3.546-2.047 3.545 2.047v4.095zm-7.431-3.903l3.206-1.856v3.947c0 .008 0 .017.008.035 0 .008.009.017.009.034 0 .01.009.018.009.035.008.009.008.018.017.026.009.01.009.018.018.027.008.008.017.017.017.026l.026.026c.009.009.018.017.026.017.009.009.018.018.026.018l.01.008 3.38 1.952-3.207 1.855-3.545-2.047zm11.325 6.15l-3.206-1.855 3.38-1.952.009-.008c.008-.009.017-.018.026-.018.008-.008.017-.008.026-.017l.026-.026c.009-.009.017-.018.017-.026.01-.01.01-.018.018-.027.009-.008.009-.017.017-.026.009-.008.009-.017.009-.035 0-.008.009-.017.009-.034 0-.01 0-.018.008-.035v-3.947l3.206 1.856v4.094zm3.885-6.734l-3.546-2.047V5.46l3.206-1.856V7.55c0 .008 0 .017.009.034 0 .01.009.018.009.035 0 .009.008.018.008.035.01.009.01.018.018.026.008.009.008.018.017.026.009.01.018.018.018.026.008.01.017.018.026.027.008.008.017.017.026.017.009.009.017.017.026.017l.009.01 3.38 1.95zM15.89 1.164l3.205 1.856-3.205 1.855-3.206-1.855zm-7.78 0l3.206 1.856L8.11 4.866 4.905 3.02zM.68 10.337l3.205 1.856v3.702L.68 14.04zM7.77 22.62l-3.205-1.855v-3.703l3.206 1.856zm11.665-1.846l-3.206 1.855v-3.702l3.206-1.856zm3.886-6.734l-3.206 1.855v-3.702l3.206-1.856Z" }) + ] + } + ); +}); + +export { SiOpenaigym as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.cjs new file mode 100644 index 000000000..cd1d4a8f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6BA539"; +const SiOpenapiinitiative = React__namespace.forwardRef(function SiOpenapiinitiative2({ title = "OpenAPI Initiative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.039 0a2.959 2.959 0 00-2.65 4.274l-6.447 6.447a2.96 2.96 0 101.335 1.336l6.447-6.447A2.959 2.959 0 1021.04 0zM10.628 2.745c-.072 0-.143.003-.214.004-.072.002-.143.002-.215.005-.447.018-.893.064-1.335.138l-.03.005-.185.033-.105.02a7.718 7.718 0 00-.289.062l-.032.008a10.69 10.69 0 00-2.55.95l-.155.089c-.063.034-.125.07-.187.105-.046.027-.093.051-.14.079H5.19l-.01.005-.036.02v.002l.111.184 3.15 5.23a4.168 4.168 0 01.38-.202 4.294 4.294 0 011.628-.413c.071-.004.143-.008.214-.008zm.428.01v6.333c.325.034.647.103.96.209l4.66-4.66c-.173-.12-.348-.237-.528-.347l-.026-.015c-.056-.035-.112-.067-.168-.1l-.098-.056-.099-.055a12.735 12.735 0 00-.171-.092l-.027-.014a10.628 10.628 0 00-1.425-.617c-.69-.241-1.403-.41-2.128-.505l-.089-.012-.09-.01a6.56 6.56 0 00-.17-.019l-.049-.004-.204-.017a6.44 6.44 0 00-.255-.015c-.031-.003-.062-.003-.093-.004zM4.782 4.498a9.92 9.92 0 00-1.36 1.062l4.461 4.461.018.018c.049-.04.098-.078.149-.116l-.011-.018zm-1.67 1.36c-.05.05-.098.103-.147.154l-.149.155c-.33.357-.63.73-.902 1.118l-.039.056a10.588 10.588 0 00-.216.326 10.6 10.6 0 00-1.65 5.276l-.006.215-.003.214h6.317c0-.072.007-.143.01-.214.005-.072.006-.144.013-.215.081-.822.399-1.625.952-2.3.045-.055.096-.106.144-.16.048-.052.093-.107.144-.158zm16.255 1.464l-4.663 4.663c.106.312.175.634.21.959h6.332l-.004-.094a11.579 11.579 0 00-.032-.456l-.005-.052a13.044 13.044 0 00-.026-.241v-.009l-.033-.24v-.009a10.618 10.618 0 00-.327-1.493l-.003-.01a15.839 15.839 0 00-.07-.228l-.01-.03a14.111 14.111 0 00-.069-.204l-.02-.055a5.65 5.65 0 00-.153-.405 7.84 7.84 0 00-.093-.227 16.67 16.67 0 00-.063-.144l-.037-.081a13.776 13.776 0 00-.08-.171l-.024-.052-.096-.194-.014-.027a11.2 11.2 0 00-.112-.212l-.004-.008a10.615 10.615 0 00-.604-.98zm-4.43 6.05c0 .071-.006.142-.01.214-.003.072-.005.143-.012.214a4.29 4.29 0 01-.952 2.301c-.045.055-.096.107-.144.16-.048.053-.093.108-.144.159l4.467 4.467c.051-.051.099-.104.148-.155.05-.052.1-.103.148-.155.331-.358.633-.733.905-1.122l.032-.046.098-.144.085-.13.04-.063a10.597 10.597 0 001.647-5.272c.003-.071.004-.143.006-.214.001-.071.004-.143.004-.214zM.01 13.8l.004.093.01.179.005.076.017.206.005.046c.007.076.015.153.024.228l.003.022a9.605 9.605 0 00.033.248c.072.505.182 1.005.327 1.497l.002.006c.022.077.047.154.071.23l.004.014.005.014a15.737 15.737 0 00.153.439l.03.08.059.148a7.702 7.702 0 00.093.228l.062.14.038.084.078.169.027.054a10.677 10.677 0 00.225.441l.025.043 5.408-3.258.02-.012a4.314 4.314 0 01-.395-1.414h-.025zm.505 2.846l-.206.058.002.005zm6.425-1.052l-5.415 3.262c.083.139.17.273.259.406l.008.014.004.005.008.014h.001c.007.012.014.022.022.032l.001.002v.001a10.634 10.634 0 00.298.417l.006.008a9.963 9.963 0 00.29.368l.033.04c.043.052.086.103.13.153l.057.065.112.127.064.069.029.031.083.09.035.035c.049.051.098.103.149.153L7.58 16.42a3.86 3.86 0 01-.285-.321 4.422 4.422 0 01-.356-.505zm6.416 1.111c-.05.04-.1.079-.15.116l.011.018 3.257 5.407c.151-.099.3-.2.446-.307.315-.232.62-.484.914-.756l-4.46-4.46zm-5.457.003l-.015.015-4.46 4.46a8.966 8.966 0 00.195.176c.022.02.043.04.065.058l.152.13a10.622 10.622 0 00.215.174l.023.017.191.148.008.005c.268.2.547.389.834.564l.03.018.164.097.101.057a5.458 5.458 0 00.27.148c.008.004.016.01.025.013.162.085.327.164.493.24l.158-.385 2.243-5.448.009-.02a4.328 4.328 0 01-.701-.467zm4.951.353c-.061.037-.124.07-.187.104a4.318 4.318 0 01-3.271.336c-.069-.02-.135-.047-.203-.071-.067-.024-.136-.044-.202-.072l-2.242 5.444-.088.213-.075.183v.001l.017.007a.137.137 0 00.019.007l.005.003c.052.021.106.04.159.06.067.027.133.053.2.077l.102.04c.702.247 1.43.42 2.168.518l.087.012.09.01.172.019a7.173 7.173 0 00.252.022c.023.001.048.001.071.003l.184.011.112.005a7.06 7.06 0 00.358.007h.05a10.667 10.667 0 001.793-.15l.185-.034.105-.02.109-.023.18-.04.032-.008a10.684 10.684 0 002.55-.95c.052-.028.104-.06.156-.089.063-.034.125-.07.187-.105.043-.024.087-.047.13-.073h.001l.002-.002.002-.001.002-.001.007-.004.042-.025-.11-.183-.11-.184zm3.262 5.414l-.042.025.042-.024zm-.05.029zm-.005.004h-.002z" }) + ] + } + ); +}); + +exports.default = SiOpenapiinitiative; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.d.ts new file mode 100644 index 000000000..f4828662c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6BA539"; +declare const SiOpenapiinitiative: IconType; +export { SiOpenapiinitiative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.mjs new file mode 100644 index 000000000..e54b0cd9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenapiinitiative.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6BA539"; +const SiOpenapiinitiative = React.forwardRef(function SiOpenapiinitiative2({ title = "OpenAPI Initiative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.039 0a2.959 2.959 0 00-2.65 4.274l-6.447 6.447a2.96 2.96 0 101.335 1.336l6.447-6.447A2.959 2.959 0 1021.04 0zM10.628 2.745c-.072 0-.143.003-.214.004-.072.002-.143.002-.215.005-.447.018-.893.064-1.335.138l-.03.005-.185.033-.105.02a7.718 7.718 0 00-.289.062l-.032.008a10.69 10.69 0 00-2.55.95l-.155.089c-.063.034-.125.07-.187.105-.046.027-.093.051-.14.079H5.19l-.01.005-.036.02v.002l.111.184 3.15 5.23a4.168 4.168 0 01.38-.202 4.294 4.294 0 011.628-.413c.071-.004.143-.008.214-.008zm.428.01v6.333c.325.034.647.103.96.209l4.66-4.66c-.173-.12-.348-.237-.528-.347l-.026-.015c-.056-.035-.112-.067-.168-.1l-.098-.056-.099-.055a12.735 12.735 0 00-.171-.092l-.027-.014a10.628 10.628 0 00-1.425-.617c-.69-.241-1.403-.41-2.128-.505l-.089-.012-.09-.01a6.56 6.56 0 00-.17-.019l-.049-.004-.204-.017a6.44 6.44 0 00-.255-.015c-.031-.003-.062-.003-.093-.004zM4.782 4.498a9.92 9.92 0 00-1.36 1.062l4.461 4.461.018.018c.049-.04.098-.078.149-.116l-.011-.018zm-1.67 1.36c-.05.05-.098.103-.147.154l-.149.155c-.33.357-.63.73-.902 1.118l-.039.056a10.588 10.588 0 00-.216.326 10.6 10.6 0 00-1.65 5.276l-.006.215-.003.214h6.317c0-.072.007-.143.01-.214.005-.072.006-.144.013-.215.081-.822.399-1.625.952-2.3.045-.055.096-.106.144-.16.048-.052.093-.107.144-.158zm16.255 1.464l-4.663 4.663c.106.312.175.634.21.959h6.332l-.004-.094a11.579 11.579 0 00-.032-.456l-.005-.052a13.044 13.044 0 00-.026-.241v-.009l-.033-.24v-.009a10.618 10.618 0 00-.327-1.493l-.003-.01a15.839 15.839 0 00-.07-.228l-.01-.03a14.111 14.111 0 00-.069-.204l-.02-.055a5.65 5.65 0 00-.153-.405 7.84 7.84 0 00-.093-.227 16.67 16.67 0 00-.063-.144l-.037-.081a13.776 13.776 0 00-.08-.171l-.024-.052-.096-.194-.014-.027a11.2 11.2 0 00-.112-.212l-.004-.008a10.615 10.615 0 00-.604-.98zm-4.43 6.05c0 .071-.006.142-.01.214-.003.072-.005.143-.012.214a4.29 4.29 0 01-.952 2.301c-.045.055-.096.107-.144.16-.048.053-.093.108-.144.159l4.467 4.467c.051-.051.099-.104.148-.155.05-.052.1-.103.148-.155.331-.358.633-.733.905-1.122l.032-.046.098-.144.085-.13.04-.063a10.597 10.597 0 001.647-5.272c.003-.071.004-.143.006-.214.001-.071.004-.143.004-.214zM.01 13.8l.004.093.01.179.005.076.017.206.005.046c.007.076.015.153.024.228l.003.022a9.605 9.605 0 00.033.248c.072.505.182 1.005.327 1.497l.002.006c.022.077.047.154.071.23l.004.014.005.014a15.737 15.737 0 00.153.439l.03.08.059.148a7.702 7.702 0 00.093.228l.062.14.038.084.078.169.027.054a10.677 10.677 0 00.225.441l.025.043 5.408-3.258.02-.012a4.314 4.314 0 01-.395-1.414h-.025zm.505 2.846l-.206.058.002.005zm6.425-1.052l-5.415 3.262c.083.139.17.273.259.406l.008.014.004.005.008.014h.001c.007.012.014.022.022.032l.001.002v.001a10.634 10.634 0 00.298.417l.006.008a9.963 9.963 0 00.29.368l.033.04c.043.052.086.103.13.153l.057.065.112.127.064.069.029.031.083.09.035.035c.049.051.098.103.149.153L7.58 16.42a3.86 3.86 0 01-.285-.321 4.422 4.422 0 01-.356-.505zm6.416 1.111c-.05.04-.1.079-.15.116l.011.018 3.257 5.407c.151-.099.3-.2.446-.307.315-.232.62-.484.914-.756l-4.46-4.46zm-5.457.003l-.015.015-4.46 4.46a8.966 8.966 0 00.195.176c.022.02.043.04.065.058l.152.13a10.622 10.622 0 00.215.174l.023.017.191.148.008.005c.268.2.547.389.834.564l.03.018.164.097.101.057a5.458 5.458 0 00.27.148c.008.004.016.01.025.013.162.085.327.164.493.24l.158-.385 2.243-5.448.009-.02a4.328 4.328 0 01-.701-.467zm4.951.353c-.061.037-.124.07-.187.104a4.318 4.318 0 01-3.271.336c-.069-.02-.135-.047-.203-.071-.067-.024-.136-.044-.202-.072l-2.242 5.444-.088.213-.075.183v.001l.017.007a.137.137 0 00.019.007l.005.003c.052.021.106.04.159.06.067.027.133.053.2.077l.102.04c.702.247 1.43.42 2.168.518l.087.012.09.01.172.019a7.173 7.173 0 00.252.022c.023.001.048.001.071.003l.184.011.112.005a7.06 7.06 0 00.358.007h.05a10.667 10.667 0 001.793-.15l.185-.034.105-.02.109-.023.18-.04.032-.008a10.684 10.684 0 002.55-.95c.052-.028.104-.06.156-.089.063-.034.125-.07.187-.105.043-.024.087-.047.13-.073h.001l.002-.002.002-.001.002-.001.007-.004.042-.025-.11-.183-.11-.184zm3.262 5.414l-.042.025.042-.024zm-.05.029zm-.005.004h-.002z" }) + ] + } + ); +}); + +export { SiOpenapiinitiative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.cjs new file mode 100644 index 000000000..bf3e7ab2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#073B5A"; +const SiOpenbadges = React__namespace.forwardRef(function SiOpenbadges2({ title = "Open Badges", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.43 18.584l-8.265-4.749 1.078-.641.719-.411.719.41 1.796 1.027 1.437.821 1.797 1.027 1.438.822 1.078.616zm-3.234 1.873l-8.24-4.774 1.797-1.027 8.24 4.75-1.797 1.051zm-3.209 1.848l-8.24-4.748 1.797-1.027 8.24 4.749zM3.03 14.246l8.24-4.748v2.079l-.719.41-1.797 1.027-1.438.821-1.796 1.027-1.437.822-1.053.615v-2.054zm0-3.722l8.24-4.749v2.08l-8.24 4.723v-2.054zm0-3.722l8.24-4.749v2.054L3.03 8.856V6.802zm9.677-4.749l1.797 1.027v9.523l-1.078-.616-.719-.41V2.052zm3.209 1.848l1.796 1.027v9.523l-1.797-1.027V3.901zm3.234 1.875l1.796 1.026v9.523l-1.796-1.027V5.775zm3.26.205l-1.49-.822-1.796-1.026-1.412-.847-1.797-1.027-1.437-.822L12.68.411 11.962 0l-.719.411-9.651 5.57v12.012l.718.41L11.987 24l1.438-.822 1.797-1.026 1.437-.821 1.797-1.027 1.437-.821 1.797-1.027.718-.411Z" }) + ] + } + ); +}); + +exports.default = SiOpenbadges; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.d.ts new file mode 100644 index 000000000..d1fc7f035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#073B5A"; +declare const SiOpenbadges: IconType; +export { SiOpenbadges as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.mjs new file mode 100644 index 000000000..cda01f41a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbadges.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#073B5A"; +const SiOpenbadges = React.forwardRef(function SiOpenbadges2({ title = "Open Badges", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.43 18.584l-8.265-4.749 1.078-.641.719-.411.719.41 1.796 1.027 1.437.821 1.797 1.027 1.438.822 1.078.616zm-3.234 1.873l-8.24-4.774 1.797-1.027 8.24 4.75-1.797 1.051zm-3.209 1.848l-8.24-4.748 1.797-1.027 8.24 4.749zM3.03 14.246l8.24-4.748v2.079l-.719.41-1.797 1.027-1.438.821-1.796 1.027-1.437.822-1.053.615v-2.054zm0-3.722l8.24-4.749v2.08l-8.24 4.723v-2.054zm0-3.722l8.24-4.749v2.054L3.03 8.856V6.802zm9.677-4.749l1.797 1.027v9.523l-1.078-.616-.719-.41V2.052zm3.209 1.848l1.796 1.027v9.523l-1.797-1.027V3.901zm3.234 1.875l1.796 1.026v9.523l-1.796-1.027V5.775zm3.26.205l-1.49-.822-1.796-1.026-1.412-.847-1.797-1.027-1.437-.822L12.68.411 11.962 0l-.719.411-9.651 5.57v12.012l.718.41L11.987 24l1.438-.822 1.797-1.026 1.437-.821 1.797-1.027 1.437-.821 1.797-1.027.718-.411Z" }) + ] + } + ); +}); + +export { SiOpenbadges as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.cjs new file mode 100644 index 000000000..95a3cc881 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2CA30"; +const SiOpenbsd = React__namespace.forwardRef(function SiOpenbsd2({ title = "OpenBSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.695 1.653c-.202.47-.146 1.02-.293 1.509-.034.112-.146.452-.308.429-.333-.048-.16-.688-.545-.7l.12.934c-.577.073-.498-.829-.733-1.195-.27-.423-.335.192-.317.38.011.122.036.242.05.363.026.21.032.393.005.603-.552-.007-.35-.733-.754-.844l.03.874c-.612-.005-.89-.557-1.159-1.025-.112-.196-.261-.574-.53-.453.126.544.423 1.064.454 1.63.007.145-.13.516-.333.448-.469-.158-.406-1.008-.796-1.231-.08-.045-.204-.006-.29-.002 0 .45.198.996.356 1.418.034.09.129.41-.069.403-.353-.01-.441-.695-.8-.615.044.185.153.335.215.513.037.109.106.219.126.332.044.247-.269.267-.432.22-.384-.114-.66-.428-.935-.703-.076-.076-.277-.344-.404-.222-.141.135.136.373.215.464.234.271.488.589.6.935.049.148.058.36-.09.462-.146.1-.384-.083-.502-.16-.362-.239-.721-.654-1.176-.664l-.107.271.29.392.752.845-.875-.362c.035.229.583.506.475.742-.064.14-.38.142-.505.124-.446-.064-.762-.396-1.177-.515-.366-.105-.298.18-.09.343.072.057.141.117.211.177.125.108.245.219.362.336.183.183.343.378.513.573l-.875-.03v.06l.845.392-.151.603c-.244 0-.442-.067-.664-.163-.151-.066-.31-.175-.482-.163-.206.014-.328.202-.19.377.206.263.62.412.883.617.1.078.247.212.133.345-.225.264-.832-.074-1.128.013v.06c.275.161.839.253 1 .549.128.231-.232.756-.487.736-.227-.019-.436-.275-.603-.41-.401-.322-.83-.7-1.298-.923-.801-.38-1.597.226-2.232.622.081.256.402-.017.603.029.271.061.477.313.651.513.84.968 1.543 2.064 1.857 3.319.083.33.224.725-.023 1.021-.066.08-.165.09-.238.155-.055.05-.052.118.023.141.138.043.34-.021.475-.054.443-.107.949-.346 1.15-.78.125-.271.169-.797.48-.905.068.29.394.673.363.965-.029.259-.302.56-.461.751-.057.068-.193.217-.112.315.082.097.25-.112.3-.16.229-.216.73-.558.865-.062.118.432-.261 1.13-.45 1.509-.054.105-.297.435-.202.553.11.135.338-.218.387-.282.19-.249.856-.987 1.21-.722.431.324.282.555.119.994-.046.123-.216.433-.1.55.111.114.258.01.315-.098.104-.197.383-.78.661-.631.175.093.441.251.543.425.158.272.02.815-.022 1.111-.024.17-.207.702-.055.825.14.113.254-.228.296-.312.149-.295.32-.597.54-.845.08-.089.192-.237.327-.212.7.131-.015.829.273 1.185.058.072.215.067.3.083l.362-.935c.184.07.455.095.591.248.114.128.137.344.17.506.092.454.142.896.084 1.357.057.042.148.138.225.088.097-.062.11-.315.143-.42.106-.332.269-.65.42-.965.099-.207.37-.427.565-.142.2.292.12.804.246 1.138.32-.158.355-.825.362-1.147l.415.061.25.513.45 1.297c.234-.09.16-.538.187-.754.035-.293.103-.882.318-1.1.086-.087.258-.095.37-.137.129.312.199.666.354.965.06.116.198.242.337.17.133-.068.128-.224.111-.35-.042-.313-.113-.62-.138-.936.598-.042.95.441 1.325.845.145.155.271.362.485.422l-.31-.905-.172-.845c.217-.09.676-.534.905-.47.34.097.6 1.046 1.023.823.18-.095.088-.257.003-.383-.126-.188-.506-.639-.465-.874.03-.175.324-.379.494-.377.391.006 1.071.304 1.297.618l.272-.03c-.04-.54-.85-.787-.966-1.328a.404.404 0 01.004-.172c.086-.347.294-.195.51-.102.067.029.213.103.269.02.06-.091-.048-.212-.087-.289-.082-.156-.156-.337-.122-.513.282.074.455.242.694.4.056.038.18.131.251.08.075-.056-.036-.167-.071-.208-.106-.123-.432-.42-.4-.6.022-.122.227-.252.31-.335.276-.276.59-.556.815-.875h.03c.532.621 2.203.186 1.99-.754-.132.019-.256.123-.392.077-.594-.205-.45-1.157-1.116-1.163-.049-.62-.298-1.24-.599-1.78-.138-.247-.424-.473-.525-.725-.055-.14-.046-.36-.052-.512.349-.054.177-.407.05-.603-.142-.218-.292-.477-.475-.66-.226-.227-.562-.374-.533-.758.027-.357.642-.311.747-.633-.183.008-.363.053-.543.083-.449.075-.527-.076-.317-.475.183-.349.474-.613.73-.905.083-.093.336-.306.205-.441-.107-.112-.286.058-.377.119-.333.22-.705.384-1.086.502-.113.035-.448.166-.486-.035-.051-.272.463-.322.395-.628-.205.049-.61.374-.807.223-.238-.18.111-.643.149-.856.038-.216-.136-.224-.258-.09-.043.048-.081.1-.12.15-.07.087-.126.17-.17.271-.494-.288.44-.623.265-.89-.063-.095-.179 0-.235.05-.117.102-.558.61-.654.237-.106-.412.108-.908.22-1.297.028-.102.159-.376.032-.449-.185-.106-.266.253-.31.359a2.333 2.333 0 01-.615.839c-.086.077-.232.225-.36.19-.187-.051-.188-.57-.182-.728.003-.075.045-.205-.028-.26-.096-.071-.147.072-.16.14-.048.222-.186.856-.515.44-.298-.376.163-1.157-.444-1.315l-.332 1.056c-.398-.087-.31-.656-.211-.966l-.181-.06a3.303 3.303 0 01-.112.362c-.16.451-.375.539-.541.03-.127-.388-.082-.807-.145-1.207-.025-.159-.04-.32-.198-.392zm.03.905c.153.364-.008.82.237 1.176.25.364.716.168 1.02.397.108.081.022.256-.007.358-.1.347-.278.604-.465.905.655-.335.875-1.29.965-1.96h.03c-.026.596-.007 1.182 0 1.779.003.27-.037.582.272.633V4.46c.323.093.808.502 1.159.381.179-.061.342-.277.467-.411.094-.102.175-.212.244-.332h.03l-.12.965-.302-.06.663.473.261.226-.2.294-.875.636c.637-.094.958-.564 1.418-.935-.15.63-.491 1.262-.332 1.93h.03l.362-1.448c.274.13.37.476.633.633.383.228.919-.204 1.267-.331-.227.322-.57.548-.633.965l-.272-.12c.236.606.519 1.19.62 1.84.093.594-.024 1.183.016 1.78.02.275.133.517.179.784-.563.191-.666.98-1.207 1.236.043-.188.11-.377.11-.573 0-.14-.066-.282-.03-.422.073-.277.314-.508.412-.784.152-.43.05-.835-.009-1.267l.301.03-.758-1.177-.376-.573.139-.392c-.762.586-1.867 1.188-1.87 2.293l.271-.091.09.664-.422.06v.06c.353.1.722.149 1.056.306.244.114.514.265.682.479.56.71.112 1.818-.31 2.473-.213.33-.594.634-.734.996.382-.092.577-.457.792-.754.091-.127.17-.303.325-.362.24-.09.32.354.371.512.065.2.218.546.18.755-.071.401-.415.662-.34 1.116.166-.202.217-.604.482-.702.17-.062.347.095.513.12.36.053.73-.082.996-.326.285-.263.48-.686.408-1.083-.043-.24-.177-.476-.16-.724.012-.2.148-.362.22-.543.173-.427.152-.912-.257-1.189a.86.86 0 00-.362-.138c.033-.222.264-.706.53-.418.188.202.29.558.396.81.389.918.392 2.006-.163 2.865-.394.61-1.02 1.11-1.548 1.6l-.21-.604h-.061c-.07.36.185.772.332 1.086-.33-.075-.645-.415-.996-.362.099.17.748.572.242.754.003.148-.11.25-.2.362-.201.248-.454.618-.766.724l-.573-1.508h-.03c.084.661.314 1.305.61 1.9.154.307.403.611.506.935-.187-.159-.306-.413-.466-.603a6.313 6.313 0 00-.952-.892c-.227-.177-.45-.376-.754-.345.345.31.868.475.835 1.056-.01.165-.193.237-.322.296-.339.155-.67.322-1.026.438-.098.032-.279.12-.382.087-.11-.037-.097-.277-.109-.369-.037-.285.121-1.028-.172-1.146-.128 1.01.132 1.929.21 2.926h-.03c-.17-.737-.439-1.558-.838-2.202-.11-.177-.343-.597-.579-.543l.62 1.086.013.46-.452.08-1.297.033c.047-.373.13-.746.2-1.116.014-.081.074-.326-.078-.326-.14 0-.169.408-.189.507-.108.542-.204 1.106-.205 1.66h-.03c0-.913-.41-1.73-.784-2.535-.104.155.041.377.086.543.099.371.113.737.065 1.116-.612-.118-1.275-.278-1.84-.543.149-.357.576-.889.573-1.267-.554.556-.804 1.335-1.086 2.052h-.03l.12-1.448-.21-1.237c-.132.133-.06.399-.04.573.033.275.015.688-.188.9-.112.117-.226.014-.346-.034-.335-.136-.582-.36-.875-.564-.104-.072-.293-.15-.28-.302.032-.433.656-.638.672-1.026-.72.31-1.062 1.088-1.629 1.57.186-.785.782-1.703.634-2.535-.152.084-.145.295-.185.453a4.324 4.324 0 01-.388.965c-.4-.231-.72-.623-.983-.996-.073-.102-.233-.26-.235-.392-.002-.128.145-.274.225-.362.244-.265.54-.465.872-.603-.237-.147-.706.2-.965.272.175-.37.65-.732.513-1.177-.393.307-.66.97-.935 1.388h-.03l-.574-1.267.754.271c.023-.27-.36-.373-.573-.422.126-.328.476-.578.392-.965h-.06c-.087.28-.269.759-.573.844l-.09-.482h-.03c-.119.253.029.447-.04.687-.037.125-.217.106-.28.222-.085.158-.092.37-.164.539-.172.407-.5.706-.904.874l-.037-.54.459-.515-.483.361c-.062-.161-.203-.465-.12-.633.073-.145.254-.24.362-.362l-.483.241c-.163-.422.135-.3.302-.603-.122.07-.325.2-.471.133-.187-.085-.384-.64-.464-.827l.512-.09v-.03c-.242.03-.626.12-.663-.211h.633v-.03l-.712-.08-.194-.252-.421-.543c.251-.075.683-.075.935 0-.368-.387-1.024.182-1.327-.453l.754-.15v-.03c-.234 0-.67.135-.874.028-.054-.028-.094-.075-.134-.12-.388-.438.48-.478.766-.44.55.076.975.452 1.358.833.194.193.473.538.754.595.278.055.51-.122.724-.263 0 .212-.022.422.15.573 0-.416.005-.857.07-1.267.023-.152.083-.352.263-.38.225-.034.531.309.693.44.002-.234-.175-.432-.319-.603-.396-.47-1.025-.914-1.58-1.177v-.03c.823.142 1.442.625 2.322.392v-.06l-1.026-.15c.043-.321.276-.734.203-1.057-.1-.44-.568-.644-.746-1.025.306.118.63.29.966.297.188.005.336-.098.512-.14.485-.113.766.123 1.086.446.088-.305-.15-.559-.334-.784-.186-.229-.35-.46-.57-.659-.267-.24-.662-.52-.815-.85.25.049.49.256.694.402.359.255.715.503 1.116.691.211.1.578.265.754.054l-.965-.362c.07-.101.17-.188.221-.302.138-.307-.104-.568-.191-.844.185.068.345.227.543.26.464.078.734-.47 1.086-.653L9.11 6.45c.201-.168.112-.494.078-.724-.099-.664-.493-1.251-.59-1.9h.03c.381.816.835 1.696 1.598 2.201l-.277-.363-.477-.723c.095-.037.188-.077.269-.142.528-.423.078-1.012.002-1.517h.03c.065.155.14.314.235.453.441.638 1.023.536 1.696.482l-.18 1.328h.03c.089-.283.258-.516.318-.815.11-.544-.006-1.084-.017-1.629h.03c.048.322.179.63.282.936.162.482.293 1.01.653 1.387l-.331-1.357c.958-.001 1.219-.647 1.236-1.509zm-.271 2.082l-.483 2.172c.372-.227.45-1.053.483-1.448h.03c.065.348.096.696.238 1.025.056.13.117.305.275.302l-.386-1.357zm-2.956.392c.006.771.387 1.473.24 2.262.146-.088.15-.295.152-.452.004-.365-.06-.723-.06-1.086h.03c.105.364.39 1.09.814 1.146-.05-.196-.211-.344-.319-.513-.238-.374-.472-1.13-.857-1.357zm6.184.332c-.336.526-.736 1.245-1.237 1.629v.03c.38-.068.791-.549.905-.905h.03c-.005.536-.251 1.105-.03 1.629h.03c.16-.543.077-1.184.215-1.75.043-.177.203-.473.087-.633zM14.69 6.57c-.178.402-.265.775-.634 1.056v.06c.265.07.45-.262.513-.482h.03c.026.203.05.624.272.694l-.149-.694zm-6.456.03c.065.743 1.063 1.244.935 2.052.16-.094.119-.269.065-.423-.112-.317-.298-.596-.427-.905.289.264.716.562 1.117.393l-.633-.263zm4.163.242c-.091.3-.347.886-.241 1.176h.06l.211-.724h.03c.075.273.153.687.483.724l-.483-1.176zm-2.021.754l.15 1.267h.061l-.03-.905c.197.137.463.474.724.362-.1-.11-.247-.129-.362-.222-.187-.151-.286-.482-.543-.502zm6.636.18c-.318.32-.584.539-1.025.664v.061c.261.075.514-.07.724-.211-.035.177-.26.64-.09.754l.289-.875zm1.539.624c.138.01.242.186.323.282.239.279.508.575.612.935-.697-.144-1.452-.045-2.142.12.154-.405.446-.834.785-1.1.115-.092.258-.25.422-.237zm-6.697.07l-.181.936c.151-.115.187-.481.211-.664l.272.302a1.058 1.058 0 00-.302-.573zm2.956.091l-.573.573.543-.392.09.543c.106-.154.05-.578-.06-.724zm-6.334.078a.252.252 0 00-.06.013v.03c.253.256.463.61.621.935.088.179.063.376.253.483-.015-.353-.166-.62-.302-.935.214.124.5.31.754.24v-.06c-.342-.152-.607-.281-.905-.518-.11-.088-.224-.2-.361-.188zm-2.082.284c.029.255.237.35.422.49a3.5 3.5 0 01.687.657c.127.166.205.452.37.573-.036-.444-.298-.966-.725-1.147v-.03c.434.084.867.246 1.297.06v-.06l-.513-.02zm14.027.09c.296.115.613.522.724.815l-.664-.09zm-7.3.03l-.271.514.301-.332.181.302zm5.95.712a.536.536 0 01.172.031c.365.143.267.9.19 1.188-.061.234-.17.495-.4.604-.167-.3-.415-.496-.724-.64-.154-.073-.41-.101-.517-.243-.103-.137-.208-.646-.068-.78.152-.147.57-.117.766-.117.163 0 .392-.051.581-.043zm-3.054.013l-.513.392.453-.241-.06.362c.128-.09.175-.371.12-.513zm4.404.18c.136.011.37-.002.47.1.331.34.145 1.25-.259 1.44l-.12-.695c.032.002.062 0 .09-.003v.003h.09l-.04-.013c.356-.085.295-.577-.051-.59l-.09-.03.049.032-.018.001v-.003h-.06l.01.011c-.023.005-.046.01-.071.02zm-1.538.122c-.062.063-.152.11-.198.187-.318.545.886.559.546-.03-.039-.068-.108-.111-.167-.157l-.121.06h-.06zm-6.335.12c0 .154-.03.31.12.392v-.301l.363.12zm-1.676.086c-.046.002-.092.005-.134.005.053.194.137.36.302.482l-.181-.392.362.03c-.07-.127-.211-.131-.349-.125zm3.685.011c-.09.01-.168.168-.169.325l.15-.271.182.12c-.05-.132-.109-.18-.163-.174zm-4.845.084l-.513.09.423.513-.241-.422.361-.06zm-2.655.42c-.307.013-.66.365-.904.515v.06l.875.302c-.018-.229-.315-.297-.513-.331l.603-.544a.386.386 0 00-.06-.002zm1.6.063l-1.237.332v.06l.663.238.393.275c-.043-.32-.383-.375-.604-.543.28-.053.66-.058.785-.362zm3.107.332c-.129.02-.23.12-.091.21zm.995.18l-.03.212c.094-.056.11-.105.09-.211zm1.357 0c-.117.035-.214.118-.09.212zm1.117.302l-.302.09v.121zm1.146.03v.362c.113-.11.113-.25 0-.362zm4.272.179c.425.004.846.395.75.847-.062.29-.242.605-.528.718-.149.06-.486.04-.498-.175-.01-.2.388-.478.468-.694-.558.427-.9.79-1.659.694v-.03c.447-.331.634-.895 1.059-1.224a.645.645 0 01.408-.136zm-9.943.032c-.146.076-.235.236-.272.393l.362.09-.2-.193zm-4.585.061l-1.147.603c.04.225.262.104.423.093.23-.015.657.06.784.27l.211-.03c-.054-.342-.546-.342-.814-.363.197-.2.48-.259.543-.573zm5.822.241l-.332.423.422.15-.302-.18c.063-.132.31-.247.212-.393zm-2.625.09l-.362.333c.142.047.468.233.573.09l-.392-.15zm7.813 0l.422.333v.06l-.392.211a.938.938 0 00.543-.211.883.883 0 00-.573-.392zm-9.683.121c-.183.41-.464.743-.784 1.056-.184.179-.471.346-.543.603L7.45 13.8l.694-.14c-.414-.296-1.14.033-1.539.21.275-.55.813-.769.935-1.418l-.03-.03zm5.701.03c-.13.043-.146.149-.18.272l.18.03zm1.237.212l.03.332a.503.503 0 00.272-.332l-.212.15zm-4.193.422c-.13.038-.2.131-.06.211zm5.34.181l-.031.422-.271-.18c.028.182.156.27.332.3l.03-.542zm-6.758.03c-.22.069-.596.692-.694.905.2-.008.895.018.996-.12l-.664-.091zm3.7.059c-.166.01-.327.105-.502.105-.507 0-1.34-.252-1.775.092-.396.314-.42.734-.669 1.132-.121.194-.336.325-.512.465-.065.052-.184.127-.159.227.03.122.238.187.34.233.228.105.477.187.724.238.131.027.328.022.44.103.204.148.135.653.163.876.227-.13.524-.52.633-.755-.241.073-.347.31-.513.483l-.09-.633c.705-.062 1.015-.833 1.43-1.296.253-.282.57-.405.893-.575-.19-.227-.455.013-.634.15-.479.37-.755.816-1.176 1.238l.241-.633h-.03c-.131.314-.288.65-.603.814l.12-.422h-.03c-.127.303-.27.452-.603.452l.301-.694h-.03l-.392.664-.12-.03.301-.573h-.03c-.152.244-.313.59-.633.512l.27-.512c-.15.118-.216.4-.394.471-.081.032-.235-.027-.202-.135.042-.14.272-.278.363-.397.31-.405.56-1.067 1.018-1.316.376-.205.947.054 1.358.05.235-.004.503-.084.573-.333a.427.427 0 00-.072-.001zm-7.591.092l-.03.181.12-.181zm14.875.029c.228.004.48.037.61.214.133.18.101.427.17.632.052-.216.046-1.024.477-.57.349.367.256 1.162-.087 1.502-.216.213-.735.343-.992.144-.393-.303-.494-.926-.608-1.378-.027-.109-.154-.36-.084-.461.058-.086.209-.08.3-.082.065 0 .138-.002.214-.001zm2.65.182c.569.103.615.907 1.117 1.147v.06c-.285.143-.38-.002-.573-.211l.211.392c-.233-.036-.283-.262-.422-.423l.21.453c-.346 0-.493-.057-.633-.392h-.03l.06.271-.214-.152.114-.39zm-4.735.03c-.123.036-.188.105-.09.212zm-4.163.242l.332.362.15-.362-.15.241zm3.047 0l-.03.452-.302-.18c-.017.198.288.424.453.512l-.06-.784zm-8.175.512c-.094.452-.417.859-.707 1.207-.138.166-.35.333-.41.543.5-.144 1.063-.652 1.6-.603-.138-.268-.783.103-1.026.15.196-.29.463-.542.59-.874.052-.14.086-.327-.047-.423zm6.998.272c-.23.036-.218.264-.271.452-.128-.127-.258-.303-.452-.271l.573.694zm-2.805.03l-.302.272-.03-.151h-.09l.03.392c.176-.03.358-.347.392-.513zm.815.483l-.151.392h-.03l-.242-.332.211.694h.03c.08-.202.365-.572.182-.754zm3.348.18l-.09.031.18.995c-.192-.168-.785-.942-1.025-.663.555.177.786.825 1.267 1.116l-.15-.573zm1.508.242c-.153.374.22.775.362 1.116-.392-.202-.74-.539-1.207-.543v.12c.672.06 1.03.747 1.569 1.057-.005-.563-.488-1.21-.664-1.75zm-6.123.453l-.212.03c.072.169.197.306.256.482.065.196.023.466.227.573.095-.212.327-.557.271-.784-.17.085-.252.268-.27.453h-.031zm-2.806.03c0 .592-.08 1.148-.241 1.72.21.007.32-.211.433-.363.225-.299.45-.628.804-.784v-.03c-.359-.047-.807.49-.935.784h-.03c.106-.41.2-.924.03-1.327zm5.31.03c-.244.093-.182.42-.182.633l-.693-.482c.038.123.136.16.228.245.18.167.337.557.586.6zm1.538.573c-.213.377.097 1.154.15 1.569h-.03c-.168-.355-.492-.649-.754-.935-.037-.04-.228-.301-.296-.192-.071.114.278.385.343.463.241.286.459.609.642.935.105.189.197.44.397.543-.15-.778-.39-1.586-.392-2.383zm-10.045.302c.223.066.35.219.362.452l-.694.483zm5.007.24l-.03.031c.147.405.293.742.364 1.177.034.202.013.465.179.603.17-.322.23-.695.385-1.026.09-.19.234-.356.188-.573-.29.143-.461.787-.543 1.086-.15-.399-.104-1.092-.543-1.297zm2.051.303c.341.677.594 1.314.785 2.05.212-.118.183-.329.18-.542-.005-.497.186-.99.152-1.478-.143.048-.168.194-.193.332-.06.329-.06.669-.14.995-.163-.38-.293-1.279-.784-1.357zm6.365.24l.453.665-.664-.302zM8.657 19.18c.647.057.205.652-.06.935zm8.296.724l.272.845c-.224-.157-.488-.414-.604-.664zm-5.502.455l.344.058-.272.965h-.03l-.06-.754zm2.85.174c.062 0 .121.013.169.053.163.138-.067.805-.141.977l-.332-.965c.086-.022.2-.063.304-.065Z" }) + ] + } + ); +}); + +exports.default = SiOpenbsd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.d.ts new file mode 100644 index 000000000..69e5120f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2CA30"; +declare const SiOpenbsd: IconType; +export { SiOpenbsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.mjs new file mode 100644 index 000000000..2f154940a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbsd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2CA30"; +const SiOpenbsd = React.forwardRef(function SiOpenbsd2({ title = "OpenBSD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.695 1.653c-.202.47-.146 1.02-.293 1.509-.034.112-.146.452-.308.429-.333-.048-.16-.688-.545-.7l.12.934c-.577.073-.498-.829-.733-1.195-.27-.423-.335.192-.317.38.011.122.036.242.05.363.026.21.032.393.005.603-.552-.007-.35-.733-.754-.844l.03.874c-.612-.005-.89-.557-1.159-1.025-.112-.196-.261-.574-.53-.453.126.544.423 1.064.454 1.63.007.145-.13.516-.333.448-.469-.158-.406-1.008-.796-1.231-.08-.045-.204-.006-.29-.002 0 .45.198.996.356 1.418.034.09.129.41-.069.403-.353-.01-.441-.695-.8-.615.044.185.153.335.215.513.037.109.106.219.126.332.044.247-.269.267-.432.22-.384-.114-.66-.428-.935-.703-.076-.076-.277-.344-.404-.222-.141.135.136.373.215.464.234.271.488.589.6.935.049.148.058.36-.09.462-.146.1-.384-.083-.502-.16-.362-.239-.721-.654-1.176-.664l-.107.271.29.392.752.845-.875-.362c.035.229.583.506.475.742-.064.14-.38.142-.505.124-.446-.064-.762-.396-1.177-.515-.366-.105-.298.18-.09.343.072.057.141.117.211.177.125.108.245.219.362.336.183.183.343.378.513.573l-.875-.03v.06l.845.392-.151.603c-.244 0-.442-.067-.664-.163-.151-.066-.31-.175-.482-.163-.206.014-.328.202-.19.377.206.263.62.412.883.617.1.078.247.212.133.345-.225.264-.832-.074-1.128.013v.06c.275.161.839.253 1 .549.128.231-.232.756-.487.736-.227-.019-.436-.275-.603-.41-.401-.322-.83-.7-1.298-.923-.801-.38-1.597.226-2.232.622.081.256.402-.017.603.029.271.061.477.313.651.513.84.968 1.543 2.064 1.857 3.319.083.33.224.725-.023 1.021-.066.08-.165.09-.238.155-.055.05-.052.118.023.141.138.043.34-.021.475-.054.443-.107.949-.346 1.15-.78.125-.271.169-.797.48-.905.068.29.394.673.363.965-.029.259-.302.56-.461.751-.057.068-.193.217-.112.315.082.097.25-.112.3-.16.229-.216.73-.558.865-.062.118.432-.261 1.13-.45 1.509-.054.105-.297.435-.202.553.11.135.338-.218.387-.282.19-.249.856-.987 1.21-.722.431.324.282.555.119.994-.046.123-.216.433-.1.55.111.114.258.01.315-.098.104-.197.383-.78.661-.631.175.093.441.251.543.425.158.272.02.815-.022 1.111-.024.17-.207.702-.055.825.14.113.254-.228.296-.312.149-.295.32-.597.54-.845.08-.089.192-.237.327-.212.7.131-.015.829.273 1.185.058.072.215.067.3.083l.362-.935c.184.07.455.095.591.248.114.128.137.344.17.506.092.454.142.896.084 1.357.057.042.148.138.225.088.097-.062.11-.315.143-.42.106-.332.269-.65.42-.965.099-.207.37-.427.565-.142.2.292.12.804.246 1.138.32-.158.355-.825.362-1.147l.415.061.25.513.45 1.297c.234-.09.16-.538.187-.754.035-.293.103-.882.318-1.1.086-.087.258-.095.37-.137.129.312.199.666.354.965.06.116.198.242.337.17.133-.068.128-.224.111-.35-.042-.313-.113-.62-.138-.936.598-.042.95.441 1.325.845.145.155.271.362.485.422l-.31-.905-.172-.845c.217-.09.676-.534.905-.47.34.097.6 1.046 1.023.823.18-.095.088-.257.003-.383-.126-.188-.506-.639-.465-.874.03-.175.324-.379.494-.377.391.006 1.071.304 1.297.618l.272-.03c-.04-.54-.85-.787-.966-1.328a.404.404 0 01.004-.172c.086-.347.294-.195.51-.102.067.029.213.103.269.02.06-.091-.048-.212-.087-.289-.082-.156-.156-.337-.122-.513.282.074.455.242.694.4.056.038.18.131.251.08.075-.056-.036-.167-.071-.208-.106-.123-.432-.42-.4-.6.022-.122.227-.252.31-.335.276-.276.59-.556.815-.875h.03c.532.621 2.203.186 1.99-.754-.132.019-.256.123-.392.077-.594-.205-.45-1.157-1.116-1.163-.049-.62-.298-1.24-.599-1.78-.138-.247-.424-.473-.525-.725-.055-.14-.046-.36-.052-.512.349-.054.177-.407.05-.603-.142-.218-.292-.477-.475-.66-.226-.227-.562-.374-.533-.758.027-.357.642-.311.747-.633-.183.008-.363.053-.543.083-.449.075-.527-.076-.317-.475.183-.349.474-.613.73-.905.083-.093.336-.306.205-.441-.107-.112-.286.058-.377.119-.333.22-.705.384-1.086.502-.113.035-.448.166-.486-.035-.051-.272.463-.322.395-.628-.205.049-.61.374-.807.223-.238-.18.111-.643.149-.856.038-.216-.136-.224-.258-.09-.043.048-.081.1-.12.15-.07.087-.126.17-.17.271-.494-.288.44-.623.265-.89-.063-.095-.179 0-.235.05-.117.102-.558.61-.654.237-.106-.412.108-.908.22-1.297.028-.102.159-.376.032-.449-.185-.106-.266.253-.31.359a2.333 2.333 0 01-.615.839c-.086.077-.232.225-.36.19-.187-.051-.188-.57-.182-.728.003-.075.045-.205-.028-.26-.096-.071-.147.072-.16.14-.048.222-.186.856-.515.44-.298-.376.163-1.157-.444-1.315l-.332 1.056c-.398-.087-.31-.656-.211-.966l-.181-.06a3.303 3.303 0 01-.112.362c-.16.451-.375.539-.541.03-.127-.388-.082-.807-.145-1.207-.025-.159-.04-.32-.198-.392zm.03.905c.153.364-.008.82.237 1.176.25.364.716.168 1.02.397.108.081.022.256-.007.358-.1.347-.278.604-.465.905.655-.335.875-1.29.965-1.96h.03c-.026.596-.007 1.182 0 1.779.003.27-.037.582.272.633V4.46c.323.093.808.502 1.159.381.179-.061.342-.277.467-.411.094-.102.175-.212.244-.332h.03l-.12.965-.302-.06.663.473.261.226-.2.294-.875.636c.637-.094.958-.564 1.418-.935-.15.63-.491 1.262-.332 1.93h.03l.362-1.448c.274.13.37.476.633.633.383.228.919-.204 1.267-.331-.227.322-.57.548-.633.965l-.272-.12c.236.606.519 1.19.62 1.84.093.594-.024 1.183.016 1.78.02.275.133.517.179.784-.563.191-.666.98-1.207 1.236.043-.188.11-.377.11-.573 0-.14-.066-.282-.03-.422.073-.277.314-.508.412-.784.152-.43.05-.835-.009-1.267l.301.03-.758-1.177-.376-.573.139-.392c-.762.586-1.867 1.188-1.87 2.293l.271-.091.09.664-.422.06v.06c.353.1.722.149 1.056.306.244.114.514.265.682.479.56.71.112 1.818-.31 2.473-.213.33-.594.634-.734.996.382-.092.577-.457.792-.754.091-.127.17-.303.325-.362.24-.09.32.354.371.512.065.2.218.546.18.755-.071.401-.415.662-.34 1.116.166-.202.217-.604.482-.702.17-.062.347.095.513.12.36.053.73-.082.996-.326.285-.263.48-.686.408-1.083-.043-.24-.177-.476-.16-.724.012-.2.148-.362.22-.543.173-.427.152-.912-.257-1.189a.86.86 0 00-.362-.138c.033-.222.264-.706.53-.418.188.202.29.558.396.81.389.918.392 2.006-.163 2.865-.394.61-1.02 1.11-1.548 1.6l-.21-.604h-.061c-.07.36.185.772.332 1.086-.33-.075-.645-.415-.996-.362.099.17.748.572.242.754.003.148-.11.25-.2.362-.201.248-.454.618-.766.724l-.573-1.508h-.03c.084.661.314 1.305.61 1.9.154.307.403.611.506.935-.187-.159-.306-.413-.466-.603a6.313 6.313 0 00-.952-.892c-.227-.177-.45-.376-.754-.345.345.31.868.475.835 1.056-.01.165-.193.237-.322.296-.339.155-.67.322-1.026.438-.098.032-.279.12-.382.087-.11-.037-.097-.277-.109-.369-.037-.285.121-1.028-.172-1.146-.128 1.01.132 1.929.21 2.926h-.03c-.17-.737-.439-1.558-.838-2.202-.11-.177-.343-.597-.579-.543l.62 1.086.013.46-.452.08-1.297.033c.047-.373.13-.746.2-1.116.014-.081.074-.326-.078-.326-.14 0-.169.408-.189.507-.108.542-.204 1.106-.205 1.66h-.03c0-.913-.41-1.73-.784-2.535-.104.155.041.377.086.543.099.371.113.737.065 1.116-.612-.118-1.275-.278-1.84-.543.149-.357.576-.889.573-1.267-.554.556-.804 1.335-1.086 2.052h-.03l.12-1.448-.21-1.237c-.132.133-.06.399-.04.573.033.275.015.688-.188.9-.112.117-.226.014-.346-.034-.335-.136-.582-.36-.875-.564-.104-.072-.293-.15-.28-.302.032-.433.656-.638.672-1.026-.72.31-1.062 1.088-1.629 1.57.186-.785.782-1.703.634-2.535-.152.084-.145.295-.185.453a4.324 4.324 0 01-.388.965c-.4-.231-.72-.623-.983-.996-.073-.102-.233-.26-.235-.392-.002-.128.145-.274.225-.362.244-.265.54-.465.872-.603-.237-.147-.706.2-.965.272.175-.37.65-.732.513-1.177-.393.307-.66.97-.935 1.388h-.03l-.574-1.267.754.271c.023-.27-.36-.373-.573-.422.126-.328.476-.578.392-.965h-.06c-.087.28-.269.759-.573.844l-.09-.482h-.03c-.119.253.029.447-.04.687-.037.125-.217.106-.28.222-.085.158-.092.37-.164.539-.172.407-.5.706-.904.874l-.037-.54.459-.515-.483.361c-.062-.161-.203-.465-.12-.633.073-.145.254-.24.362-.362l-.483.241c-.163-.422.135-.3.302-.603-.122.07-.325.2-.471.133-.187-.085-.384-.64-.464-.827l.512-.09v-.03c-.242.03-.626.12-.663-.211h.633v-.03l-.712-.08-.194-.252-.421-.543c.251-.075.683-.075.935 0-.368-.387-1.024.182-1.327-.453l.754-.15v-.03c-.234 0-.67.135-.874.028-.054-.028-.094-.075-.134-.12-.388-.438.48-.478.766-.44.55.076.975.452 1.358.833.194.193.473.538.754.595.278.055.51-.122.724-.263 0 .212-.022.422.15.573 0-.416.005-.857.07-1.267.023-.152.083-.352.263-.38.225-.034.531.309.693.44.002-.234-.175-.432-.319-.603-.396-.47-1.025-.914-1.58-1.177v-.03c.823.142 1.442.625 2.322.392v-.06l-1.026-.15c.043-.321.276-.734.203-1.057-.1-.44-.568-.644-.746-1.025.306.118.63.29.966.297.188.005.336-.098.512-.14.485-.113.766.123 1.086.446.088-.305-.15-.559-.334-.784-.186-.229-.35-.46-.57-.659-.267-.24-.662-.52-.815-.85.25.049.49.256.694.402.359.255.715.503 1.116.691.211.1.578.265.754.054l-.965-.362c.07-.101.17-.188.221-.302.138-.307-.104-.568-.191-.844.185.068.345.227.543.26.464.078.734-.47 1.086-.653L9.11 6.45c.201-.168.112-.494.078-.724-.099-.664-.493-1.251-.59-1.9h.03c.381.816.835 1.696 1.598 2.201l-.277-.363-.477-.723c.095-.037.188-.077.269-.142.528-.423.078-1.012.002-1.517h.03c.065.155.14.314.235.453.441.638 1.023.536 1.696.482l-.18 1.328h.03c.089-.283.258-.516.318-.815.11-.544-.006-1.084-.017-1.629h.03c.048.322.179.63.282.936.162.482.293 1.01.653 1.387l-.331-1.357c.958-.001 1.219-.647 1.236-1.509zm-.271 2.082l-.483 2.172c.372-.227.45-1.053.483-1.448h.03c.065.348.096.696.238 1.025.056.13.117.305.275.302l-.386-1.357zm-2.956.392c.006.771.387 1.473.24 2.262.146-.088.15-.295.152-.452.004-.365-.06-.723-.06-1.086h.03c.105.364.39 1.09.814 1.146-.05-.196-.211-.344-.319-.513-.238-.374-.472-1.13-.857-1.357zm6.184.332c-.336.526-.736 1.245-1.237 1.629v.03c.38-.068.791-.549.905-.905h.03c-.005.536-.251 1.105-.03 1.629h.03c.16-.543.077-1.184.215-1.75.043-.177.203-.473.087-.633zM14.69 6.57c-.178.402-.265.775-.634 1.056v.06c.265.07.45-.262.513-.482h.03c.026.203.05.624.272.694l-.149-.694zm-6.456.03c.065.743 1.063 1.244.935 2.052.16-.094.119-.269.065-.423-.112-.317-.298-.596-.427-.905.289.264.716.562 1.117.393l-.633-.263zm4.163.242c-.091.3-.347.886-.241 1.176h.06l.211-.724h.03c.075.273.153.687.483.724l-.483-1.176zm-2.021.754l.15 1.267h.061l-.03-.905c.197.137.463.474.724.362-.1-.11-.247-.129-.362-.222-.187-.151-.286-.482-.543-.502zm6.636.18c-.318.32-.584.539-1.025.664v.061c.261.075.514-.07.724-.211-.035.177-.26.64-.09.754l.289-.875zm1.539.624c.138.01.242.186.323.282.239.279.508.575.612.935-.697-.144-1.452-.045-2.142.12.154-.405.446-.834.785-1.1.115-.092.258-.25.422-.237zm-6.697.07l-.181.936c.151-.115.187-.481.211-.664l.272.302a1.058 1.058 0 00-.302-.573zm2.956.091l-.573.573.543-.392.09.543c.106-.154.05-.578-.06-.724zm-6.334.078a.252.252 0 00-.06.013v.03c.253.256.463.61.621.935.088.179.063.376.253.483-.015-.353-.166-.62-.302-.935.214.124.5.31.754.24v-.06c-.342-.152-.607-.281-.905-.518-.11-.088-.224-.2-.361-.188zm-2.082.284c.029.255.237.35.422.49a3.5 3.5 0 01.687.657c.127.166.205.452.37.573-.036-.444-.298-.966-.725-1.147v-.03c.434.084.867.246 1.297.06v-.06l-.513-.02zm14.027.09c.296.115.613.522.724.815l-.664-.09zm-7.3.03l-.271.514.301-.332.181.302zm5.95.712a.536.536 0 01.172.031c.365.143.267.9.19 1.188-.061.234-.17.495-.4.604-.167-.3-.415-.496-.724-.64-.154-.073-.41-.101-.517-.243-.103-.137-.208-.646-.068-.78.152-.147.57-.117.766-.117.163 0 .392-.051.581-.043zm-3.054.013l-.513.392.453-.241-.06.362c.128-.09.175-.371.12-.513zm4.404.18c.136.011.37-.002.47.1.331.34.145 1.25-.259 1.44l-.12-.695c.032.002.062 0 .09-.003v.003h.09l-.04-.013c.356-.085.295-.577-.051-.59l-.09-.03.049.032-.018.001v-.003h-.06l.01.011c-.023.005-.046.01-.071.02zm-1.538.122c-.062.063-.152.11-.198.187-.318.545.886.559.546-.03-.039-.068-.108-.111-.167-.157l-.121.06h-.06zm-6.335.12c0 .154-.03.31.12.392v-.301l.363.12zm-1.676.086c-.046.002-.092.005-.134.005.053.194.137.36.302.482l-.181-.392.362.03c-.07-.127-.211-.131-.349-.125zm3.685.011c-.09.01-.168.168-.169.325l.15-.271.182.12c-.05-.132-.109-.18-.163-.174zm-4.845.084l-.513.09.423.513-.241-.422.361-.06zm-2.655.42c-.307.013-.66.365-.904.515v.06l.875.302c-.018-.229-.315-.297-.513-.331l.603-.544a.386.386 0 00-.06-.002zm1.6.063l-1.237.332v.06l.663.238.393.275c-.043-.32-.383-.375-.604-.543.28-.053.66-.058.785-.362zm3.107.332c-.129.02-.23.12-.091.21zm.995.18l-.03.212c.094-.056.11-.105.09-.211zm1.357 0c-.117.035-.214.118-.09.212zm1.117.302l-.302.09v.121zm1.146.03v.362c.113-.11.113-.25 0-.362zm4.272.179c.425.004.846.395.75.847-.062.29-.242.605-.528.718-.149.06-.486.04-.498-.175-.01-.2.388-.478.468-.694-.558.427-.9.79-1.659.694v-.03c.447-.331.634-.895 1.059-1.224a.645.645 0 01.408-.136zm-9.943.032c-.146.076-.235.236-.272.393l.362.09-.2-.193zm-4.585.061l-1.147.603c.04.225.262.104.423.093.23-.015.657.06.784.27l.211-.03c-.054-.342-.546-.342-.814-.363.197-.2.48-.259.543-.573zm5.822.241l-.332.423.422.15-.302-.18c.063-.132.31-.247.212-.393zm-2.625.09l-.362.333c.142.047.468.233.573.09l-.392-.15zm7.813 0l.422.333v.06l-.392.211a.938.938 0 00.543-.211.883.883 0 00-.573-.392zm-9.683.121c-.183.41-.464.743-.784 1.056-.184.179-.471.346-.543.603L7.45 13.8l.694-.14c-.414-.296-1.14.033-1.539.21.275-.55.813-.769.935-1.418l-.03-.03zm5.701.03c-.13.043-.146.149-.18.272l.18.03zm1.237.212l.03.332a.503.503 0 00.272-.332l-.212.15zm-4.193.422c-.13.038-.2.131-.06.211zm5.34.181l-.031.422-.271-.18c.028.182.156.27.332.3l.03-.542zm-6.758.03c-.22.069-.596.692-.694.905.2-.008.895.018.996-.12l-.664-.091zm3.7.059c-.166.01-.327.105-.502.105-.507 0-1.34-.252-1.775.092-.396.314-.42.734-.669 1.132-.121.194-.336.325-.512.465-.065.052-.184.127-.159.227.03.122.238.187.34.233.228.105.477.187.724.238.131.027.328.022.44.103.204.148.135.653.163.876.227-.13.524-.52.633-.755-.241.073-.347.31-.513.483l-.09-.633c.705-.062 1.015-.833 1.43-1.296.253-.282.57-.405.893-.575-.19-.227-.455.013-.634.15-.479.37-.755.816-1.176 1.238l.241-.633h-.03c-.131.314-.288.65-.603.814l.12-.422h-.03c-.127.303-.27.452-.603.452l.301-.694h-.03l-.392.664-.12-.03.301-.573h-.03c-.152.244-.313.59-.633.512l.27-.512c-.15.118-.216.4-.394.471-.081.032-.235-.027-.202-.135.042-.14.272-.278.363-.397.31-.405.56-1.067 1.018-1.316.376-.205.947.054 1.358.05.235-.004.503-.084.573-.333a.427.427 0 00-.072-.001zm-7.591.092l-.03.181.12-.181zm14.875.029c.228.004.48.037.61.214.133.18.101.427.17.632.052-.216.046-1.024.477-.57.349.367.256 1.162-.087 1.502-.216.213-.735.343-.992.144-.393-.303-.494-.926-.608-1.378-.027-.109-.154-.36-.084-.461.058-.086.209-.08.3-.082.065 0 .138-.002.214-.001zm2.65.182c.569.103.615.907 1.117 1.147v.06c-.285.143-.38-.002-.573-.211l.211.392c-.233-.036-.283-.262-.422-.423l.21.453c-.346 0-.493-.057-.633-.392h-.03l.06.271-.214-.152.114-.39zm-4.735.03c-.123.036-.188.105-.09.212zm-4.163.242l.332.362.15-.362-.15.241zm3.047 0l-.03.452-.302-.18c-.017.198.288.424.453.512l-.06-.784zm-8.175.512c-.094.452-.417.859-.707 1.207-.138.166-.35.333-.41.543.5-.144 1.063-.652 1.6-.603-.138-.268-.783.103-1.026.15.196-.29.463-.542.59-.874.052-.14.086-.327-.047-.423zm6.998.272c-.23.036-.218.264-.271.452-.128-.127-.258-.303-.452-.271l.573.694zm-2.805.03l-.302.272-.03-.151h-.09l.03.392c.176-.03.358-.347.392-.513zm.815.483l-.151.392h-.03l-.242-.332.211.694h.03c.08-.202.365-.572.182-.754zm3.348.18l-.09.031.18.995c-.192-.168-.785-.942-1.025-.663.555.177.786.825 1.267 1.116l-.15-.573zm1.508.242c-.153.374.22.775.362 1.116-.392-.202-.74-.539-1.207-.543v.12c.672.06 1.03.747 1.569 1.057-.005-.563-.488-1.21-.664-1.75zm-6.123.453l-.212.03c.072.169.197.306.256.482.065.196.023.466.227.573.095-.212.327-.557.271-.784-.17.085-.252.268-.27.453h-.031zm-2.806.03c0 .592-.08 1.148-.241 1.72.21.007.32-.211.433-.363.225-.299.45-.628.804-.784v-.03c-.359-.047-.807.49-.935.784h-.03c.106-.41.2-.924.03-1.327zm5.31.03c-.244.093-.182.42-.182.633l-.693-.482c.038.123.136.16.228.245.18.167.337.557.586.6zm1.538.573c-.213.377.097 1.154.15 1.569h-.03c-.168-.355-.492-.649-.754-.935-.037-.04-.228-.301-.296-.192-.071.114.278.385.343.463.241.286.459.609.642.935.105.189.197.44.397.543-.15-.778-.39-1.586-.392-2.383zm-10.045.302c.223.066.35.219.362.452l-.694.483zm5.007.24l-.03.031c.147.405.293.742.364 1.177.034.202.013.465.179.603.17-.322.23-.695.385-1.026.09-.19.234-.356.188-.573-.29.143-.461.787-.543 1.086-.15-.399-.104-1.092-.543-1.297zm2.051.303c.341.677.594 1.314.785 2.05.212-.118.183-.329.18-.542-.005-.497.186-.99.152-1.478-.143.048-.168.194-.193.332-.06.329-.06.669-.14.995-.163-.38-.293-1.279-.784-1.357zm6.365.24l.453.665-.664-.302zM8.657 19.18c.647.057.205.652-.06.935zm8.296.724l.272.845c-.224-.157-.488-.414-.604-.664zm-5.502.455l.344.058-.272.965h-.03l-.06-.754zm2.85.174c.062 0 .121.013.169.053.163.138-.067.805-.141.977l-.332-.965c.086-.022.2-.063.304-.065Z" }) + ] + } + ); +}); + +export { SiOpenbsd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.cjs new file mode 100644 index 000000000..b77882036 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F67909"; +const SiOpenbugbounty = React__namespace.forwardRef(function SiOpenbugbounty2({ title = "Open Bug Bounty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.092 2.443a1.388 1.388 0 0 0-1.428 1.611c.42 2.567 2.11 4.115 3.58 4.998a14.12 14.12 0 0 0 .4 2.926H6.52a1.388 1.388 0 0 0 0 2.777h5.155c.39.767.85 1.475 1.37 2.108-1.816 1.36-3.516 3.734-4.34 4.983a1.388 1.388 0 1 0 2.316 1.531c1.376-2.08 3.15-4.046 4.09-4.604a8.208 8.208 0 0 0 3.757 1.416V6.492h-7.484c-.867-.588-1.753-1.506-1.979-2.886a1.388 1.388 0 0 0-1.313-1.163zM18.859 0c-2.971 0-5.501 1.967-6.577 4.765h6.577Z" }) + ] + } + ); +}); + +exports.default = SiOpenbugbounty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.d.ts new file mode 100644 index 000000000..8086b4067 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F67909"; +declare const SiOpenbugbounty: IconType; +export { SiOpenbugbounty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.mjs new file mode 100644 index 000000000..0af04099d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenbugbounty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F67909"; +const SiOpenbugbounty = React.forwardRef(function SiOpenbugbounty2({ title = "Open Bug Bounty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.092 2.443a1.388 1.388 0 0 0-1.428 1.611c.42 2.567 2.11 4.115 3.58 4.998a14.12 14.12 0 0 0 .4 2.926H6.52a1.388 1.388 0 0 0 0 2.777h5.155c.39.767.85 1.475 1.37 2.108-1.816 1.36-3.516 3.734-4.34 4.983a1.388 1.388 0 1 0 2.316 1.531c1.376-2.08 3.15-4.046 4.09-4.604a8.208 8.208 0 0 0 3.757 1.416V6.492h-7.484c-.867-.588-1.753-1.506-1.979-2.886a1.388 1.388 0 0 0-1.313-1.163zM18.859 0c-2.971 0-5.501 1.967-6.577 4.765h6.577Z" }) + ] + } + ); +}); + +export { SiOpenbugbounty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.cjs new file mode 100644 index 000000000..960670a6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A8865"; +const SiOpencage = React__namespace.forwardRef(function SiOpencage2({ title = "OpenCage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.178.001 1.444 3.559 1.444 7.93V24h1.06L2.51 7.93c0-2.847 2.408-5.295 5.831-6.333a5.948 5.948 0 0 0-.254.258 6.719 6.719 0 0 0-.363.415c-.17.21-.201.251-.439.591-.185.27-.375.596-.49.813-.131.244-.25.493-.36.746-.237.541-.39 1.044-.418 1.134a12.425 12.425 0 0 0-.534 3.634L5.485 24h1.066V9.188c0-.322.016-1.068.14-1.828.07-.457.186-.996.342-1.505.144-.487.42-1.209.762-1.82.158-.285.329-.553.51-.803a6.53 6.53 0 0 1 .874-.981 5 5 0 0 1 .83-.617 4.2 4.2 0 0 1 .565-.28c-.846 1.92-1.108 5.46-1.108 7.834V24h1.065V9.188c0-4.959.94-7.865 1.463-8.112.39.205 1.283 2.392 1.429 6.954l1.048.014c-.03-.941-.166-4.671-1.05-6.687 2.05.844 3.653 3.45 3.965 6.687h1.116l-.012-.117h.002c-.255-2.648-1.271-4.88-2.721-6.295 3.36 1.059 5.719 3.486 5.719 6.299l-.007.113 1.073-.009C22.556 3.68 17.839.017 12.042 0zm1.5 20.024V24h1.061l.005-3.976zm3.987 0L17.492 24h1.06v-3.976zm4.003 0V24h1.066v-3.976z" }) + ] + } + ); +}); + +exports.default = SiOpencage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.d.ts new file mode 100644 index 000000000..fdde06722 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A8865"; +declare const SiOpencage: IconType; +export { SiOpencage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.mjs new file mode 100644 index 000000000..ea4028fd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A8865"; +const SiOpencage = React.forwardRef(function SiOpencage2({ title = "OpenCage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.178.001 1.444 3.559 1.444 7.93V24h1.06L2.51 7.93c0-2.847 2.408-5.295 5.831-6.333a5.948 5.948 0 0 0-.254.258 6.719 6.719 0 0 0-.363.415c-.17.21-.201.251-.439.591-.185.27-.375.596-.49.813-.131.244-.25.493-.36.746-.237.541-.39 1.044-.418 1.134a12.425 12.425 0 0 0-.534 3.634L5.485 24h1.066V9.188c0-.322.016-1.068.14-1.828.07-.457.186-.996.342-1.505.144-.487.42-1.209.762-1.82.158-.285.329-.553.51-.803a6.53 6.53 0 0 1 .874-.981 5 5 0 0 1 .83-.617 4.2 4.2 0 0 1 .565-.28c-.846 1.92-1.108 5.46-1.108 7.834V24h1.065V9.188c0-4.959.94-7.865 1.463-8.112.39.205 1.283 2.392 1.429 6.954l1.048.014c-.03-.941-.166-4.671-1.05-6.687 2.05.844 3.653 3.45 3.965 6.687h1.116l-.012-.117h.002c-.255-2.648-1.271-4.88-2.721-6.295 3.36 1.059 5.719 3.486 5.719 6.299l-.007.113 1.073-.009C22.556 3.68 17.839.017 12.042 0zm1.5 20.024V24h1.061l.005-3.976zm3.987 0L17.492 24h1.06v-3.976zm4.003 0V24h1.066v-3.976z" }) + ] + } + ); +}); + +export { SiOpencage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.cjs new file mode 100644 index 000000000..878ad5c93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7FADF2"; +const SiOpencollective = React__namespace.forwardRef(function SiOpencollective2({ title = "Open Collective", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c2.54 0 4.894-.79 6.834-2.135l-3.107-3.109a7.715 7.715 0 1 1 0-13.512l3.107-3.109A11.943 11.943 0 0 0 12 0zm9.865 5.166l-3.109 3.107A7.67 7.67 0 0 1 19.715 12a7.682 7.682 0 0 1-.959 3.727l3.109 3.107A11.943 11.943 0 0 0 24 12c0-2.54-.79-4.894-2.135-6.834z" }) + ] + } + ); +}); + +exports.default = SiOpencollective; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.d.ts new file mode 100644 index 000000000..f269f9ffc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7FADF2"; +declare const SiOpencollective: IconType; +export { SiOpencollective as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.mjs new file mode 100644 index 000000000..32cddd63f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencollective.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7FADF2"; +const SiOpencollective = React.forwardRef(function SiOpencollective2({ title = "Open Collective", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c2.54 0 4.894-.79 6.834-2.135l-3.107-3.109a7.715 7.715 0 1 1 0-13.512l3.107-3.109A11.943 11.943 0 0 0 12 0zm9.865 5.166l-3.109 3.107A7.67 7.67 0 0 1 19.715 12a7.682 7.682 0 0 1-.959 3.727l3.109 3.107A11.943 11.943 0 0 0 24 12c0-2.54-.79-4.894-2.135-6.834z" }) + ] + } + ); +}); + +export { SiOpencollective as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.cjs new file mode 100644 index 000000000..eb02d7c4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#262261"; +const SiOpencontainersinitiative = React__namespace.forwardRef(function SiOpencontainersinitiative2({ title = "Open Containers Initiative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm20.547 20.431H3.448V3.573h17.104V20.43zm-5.155-9.979h3.436v8.255h-3.436zm0-5.16h3.436v3.436h-3.436zm-6.789 9.976V8.732h5.074v-3.44H5.164v13.415h8.513v-3.44Z" }) + ] + } + ); +}); + +exports.default = SiOpencontainersinitiative; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.d.ts new file mode 100644 index 000000000..8bb5b8e99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#262261"; +declare const SiOpencontainersinitiative: IconType; +export { SiOpencontainersinitiative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.mjs new file mode 100644 index 000000000..89f7aeaf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencontainersinitiative.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#262261"; +const SiOpencontainersinitiative = React.forwardRef(function SiOpencontainersinitiative2({ title = "Open Containers Initiative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm20.547 20.431H3.448V3.573h17.104V20.43zm-5.155-9.979h3.436v8.255h-3.436zm0-5.16h3.436v3.436h-3.436zm-6.789 9.976V8.732h5.074v-3.44H5.164v13.415h8.513v-3.44Z" }) + ] + } + ); +}); + +export { SiOpencontainersinitiative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.cjs new file mode 100644 index 000000000..8f103f902 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC3E04"; +const SiOpencritic = React__namespace.forwardRef(function SiOpencritic2({ title = "OpenCritic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.965 0a12.044 12.044 0 0 0-4.28.8 11.988 11.988 0 0 0-3.663 2.237A11.995 11.995 0 0 0 .22 14.29a11.925 11.925 0 0 0 1.93 4.565 12.039 12.039 0 0 0 5.896 4.478 12.043 12.043 0 0 0 8.793-.347 12.055 12.055 0 0 0 3.082-1.97c-.778-.785-1.56-1.564-2.34-2.345a8.688 8.688 0 0 1-2.69 1.533 8.73 8.73 0 0 1-4.757.29 8.658 8.658 0 0 1-3.485-1.637 8.73 8.73 0 0 1-2.394-2.9 8.722 8.722 0 0 1-.629-6.31 8.725 8.725 0 0 1 4.447-5.405 8.657 8.657 0 0 1 4.082-.934 8.667 8.667 0 0 1 5.43 2.027c.779-.78 1.562-1.56 2.34-2.344a12.007 12.007 0 0 0-3.77-2.25 12.044 12.044 0 0 0-4.19-.74zm9.047 4.076L18.67 6.418l.002.002a8.72 8.72 0 0 1 1.72 3.29 8.75 8.75 0 0 1-.046 4.742 8.725 8.725 0 0 1-1.678 3.13l2.342 2.341a12.013 12.013 0 0 0 2.347-4.04 12.049 12.049 0 0 0-.35-8.668 12.02 12.02 0 0 0-1.995-3.138zm-8.91.21a7.72 7.72 0 0 0-2.965.55v.002c0 1.07-.002 2.14 0 3.21L12 10.913c.96-.954 1.912-1.91 2.87-2.867V4.838a7.72 7.72 0 0 0-2.768-.553zM8.045 9.13c-1.07.003-2.14-.003-3.209.004a7.77 7.77 0 0 0 .004 5.733l3.203.002c.96-.955 1.916-1.914 2.873-2.872zm7.916 0c-.962.953-1.917 1.91-2.875 2.867V12c.958.956 1.915 1.914 2.875 2.87h3.203a7.747 7.747 0 0 0 0-5.74c-1.068 0-2.135.004-3.203 0zM12 13.084 9.137 15.95v3.211a7.718 7.718 0 0 0 5.734-.002v-3.203c-.957-.957-1.91-1.917-2.87-2.87z" }) + ] + } + ); +}); + +exports.default = SiOpencritic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.d.ts new file mode 100644 index 000000000..bd1fc4890 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC3E04"; +declare const SiOpencritic: IconType; +export { SiOpencritic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.mjs new file mode 100644 index 000000000..4f9fec783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencritic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC3E04"; +const SiOpencritic = React.forwardRef(function SiOpencritic2({ title = "OpenCritic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.965 0a12.044 12.044 0 0 0-4.28.8 11.988 11.988 0 0 0-3.663 2.237A11.995 11.995 0 0 0 .22 14.29a11.925 11.925 0 0 0 1.93 4.565 12.039 12.039 0 0 0 5.896 4.478 12.043 12.043 0 0 0 8.793-.347 12.055 12.055 0 0 0 3.082-1.97c-.778-.785-1.56-1.564-2.34-2.345a8.688 8.688 0 0 1-2.69 1.533 8.73 8.73 0 0 1-4.757.29 8.658 8.658 0 0 1-3.485-1.637 8.73 8.73 0 0 1-2.394-2.9 8.722 8.722 0 0 1-.629-6.31 8.725 8.725 0 0 1 4.447-5.405 8.657 8.657 0 0 1 4.082-.934 8.667 8.667 0 0 1 5.43 2.027c.779-.78 1.562-1.56 2.34-2.344a12.007 12.007 0 0 0-3.77-2.25 12.044 12.044 0 0 0-4.19-.74zm9.047 4.076L18.67 6.418l.002.002a8.72 8.72 0 0 1 1.72 3.29 8.75 8.75 0 0 1-.046 4.742 8.725 8.725 0 0 1-1.678 3.13l2.342 2.341a12.013 12.013 0 0 0 2.347-4.04 12.049 12.049 0 0 0-.35-8.668 12.02 12.02 0 0 0-1.995-3.138zm-8.91.21a7.72 7.72 0 0 0-2.965.55v.002c0 1.07-.002 2.14 0 3.21L12 10.913c.96-.954 1.912-1.91 2.87-2.867V4.838a7.72 7.72 0 0 0-2.768-.553zM8.045 9.13c-1.07.003-2.14-.003-3.209.004a7.77 7.77 0 0 0 .004 5.733l3.203.002c.96-.955 1.916-1.914 2.873-2.872zm7.916 0c-.962.953-1.917 1.91-2.875 2.867V12c.958.956 1.915 1.914 2.875 2.87h3.203a7.747 7.747 0 0 0 0-5.74c-1.068 0-2.135.004-3.203 0zM12 13.084 9.137 15.95v3.211a7.718 7.718 0 0 0 5.734-.002v-3.203c-.957-.957-1.91-1.917-2.87-2.87z" }) + ] + } + ); +}); + +export { SiOpencritic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.cjs new file mode 100644 index 000000000..f12480e2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C3EE8"; +const SiOpencv = React__namespace.forwardRef(function SiOpencv2({ title = "OpenCV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.8992.8525C8.735.8525 6.17 3.4175 6.17 6.5817c0 2.102 1.1321 3.9398 2.8198 4.9366l1.6412-2.7849c.0411-.0699.0176-.1593-.0495-.2048-.6233-.4227-1.0328-1.137-1.0328-1.947 0-1.298 1.0524-2.3504 2.3505-2.3504 1.2981 0 2.3505 1.0524 2.3505 2.3505 0 .8098-.4095 1.5242-1.0328 1.947-.0671.0454-.0907.1348-.0495.2047l1.6414 2.785c1.6878-.9969 2.8199-2.8346 2.8199-4.9367 0-3.1642-2.5653-5.7292-5.7295-5.7292zm-6.17 10.8366C2.565 11.6891 0 14.2541 0 17.4183c0 3.1642 2.565 5.7292 5.7292 5.7292 3.1798 0 5.8074-2.6995 5.7275-5.8762H8.2313c-.0847 0-.1513.0717-.1519.1564-.0082 1.266-1.0644 2.3411-2.3502 2.3411-1.2981 0-2.3505-1.0524-2.3505-2.3505 0-1.2982 1.0524-2.3505 2.3505-2.3505.34 0 .663.0724.9547.2022.0713.0318.1566.0077.1962-.0595l1.6464-2.7935c-.8273-.4636-1.7815-.7279-2.7973-.7279zm15.4424.7614l-1.6366 2.7878c-.041.07-.0172.1594.05.2048.624.4217 1.0348 1.1354 1.0363 1.9452.0022 1.298-1.0483 2.352-2.3465 2.3542-1.298.0023-2.3523-1.0482-2.3545-2.3462-.0015-.8098.4068-1.5248 1.0294-1.9486.067-.0457.0905-.1353.0492-.2051l-1.6464-2.7818c-1.6859.9998-2.8146 2.8394-2.811 4.9415.0056 3.1641 2.575 5.7248 5.7393 5.7192 3.1641-.0054 5.7246-2.575 5.7192-5.7392-.0037-2.1022-1.139-3.938-2.8284-4.9318z" }) + ] + } + ); +}); + +exports.default = SiOpencv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.d.ts new file mode 100644 index 000000000..8c9ebc741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C3EE8"; +declare const SiOpencv: IconType; +export { SiOpencv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.mjs new file mode 100644 index 000000000..03a80f324 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpencv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C3EE8"; +const SiOpencv = React.forwardRef(function SiOpencv2({ title = "OpenCV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.8992.8525C8.735.8525 6.17 3.4175 6.17 6.5817c0 2.102 1.1321 3.9398 2.8198 4.9366l1.6412-2.7849c.0411-.0699.0176-.1593-.0495-.2048-.6233-.4227-1.0328-1.137-1.0328-1.947 0-1.298 1.0524-2.3504 2.3505-2.3504 1.2981 0 2.3505 1.0524 2.3505 2.3505 0 .8098-.4095 1.5242-1.0328 1.947-.0671.0454-.0907.1348-.0495.2047l1.6414 2.785c1.6878-.9969 2.8199-2.8346 2.8199-4.9367 0-3.1642-2.5653-5.7292-5.7295-5.7292zm-6.17 10.8366C2.565 11.6891 0 14.2541 0 17.4183c0 3.1642 2.565 5.7292 5.7292 5.7292 3.1798 0 5.8074-2.6995 5.7275-5.8762H8.2313c-.0847 0-.1513.0717-.1519.1564-.0082 1.266-1.0644 2.3411-2.3502 2.3411-1.2981 0-2.3505-1.0524-2.3505-2.3505 0-1.2982 1.0524-2.3505 2.3505-2.3505.34 0 .663.0724.9547.2022.0713.0318.1566.0077.1962-.0595l1.6464-2.7935c-.8273-.4636-1.7815-.7279-2.7973-.7279zm15.4424.7614l-1.6366 2.7878c-.041.07-.0172.1594.05.2048.624.4217 1.0348 1.1354 1.0363 1.9452.0022 1.298-1.0483 2.352-2.3465 2.3542-1.298.0023-2.3523-1.0482-2.3545-2.3462-.0015-.8098.4068-1.5248 1.0294-1.9486.067-.0457.0905-.1353.0492-.2051l-1.6464-2.7818c-1.6859.9998-2.8146 2.8394-2.811 4.9415.0056 3.1641 2.575 5.7248 5.7393 5.7192 3.1641-.0054 5.7246-2.575 5.7192-5.7392-.0037-2.1022-1.139-3.938-2.8284-4.9318z" }) + ] + } + ); +}); + +export { SiOpencv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.cjs new file mode 100644 index 000000000..6fe96ec7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B5EE9"; +const SiOpenfaas = React__namespace.forwardRef(function SiOpenfaas2({ title = "OpenFaaS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.304 0A4.31 4.31 0 0 0 0 4.304v15.391A4.31 4.31 0 0 0 4.304 24h15.392A4.31 4.31 0 0 0 24 19.695V4.305A4.31 4.31 0 0 0 19.695 0zm-.006.776h15.398a3.532 3.532 0 0 1 3.528 3.528v15.391c0 .205-.019.409-.054.61-1.234-.015-1.858-.412-2.514-.834-.708-.454-1.51-.97-3.04-.97s-2.33.516-3.038.97c-.17.11-.338.217-.514.317a43.042 43.042 0 0 1-.775-1.907.806.806 0 0 1 .01-.739c.3-.489 1.23-.691 1.572-.729.361-.027 5.97-.555 6.306-7.153a.42.42 0 0 0-.72-.317c-.457.464-1.886 1.634-3 1.47a11.06 11.06 0 0 1-.693-.127c-1.425-.293-3.339-.685-4.972 1.72-1.633-2.406-3.548-2.012-4.972-1.72-.248.05-.48.098-.697.128-1.108.162-2.538-1.007-2.997-1.471a.42.42 0 0 0-.72.316c.336 6.58 5.914 7.124 6.304 7.153.086.012 1.1.16 1.48.717.15.237.184.529.092.793a19.35 19.35 0 0 1-.552 1.747c-.107-.065-.214-.13-.32-.198-.708-.454-1.51-.97-3.039-.97-1.53 0-2.332.516-3.04.97-.654.42-1.277.816-2.5.834a3.532 3.532 0 0 1-.055-.61V4.305A3.532 3.532 0 0 1 4.298.775zm4.474 2.108l-4.74 1.429 1.293 4.288 3.165-.955-.19 1.229 4.894.757.684-4.426-4.62-.715zm10.494.813l-4.938.348.315 4.466 4.938-.347Z" }) + ] + } + ); +}); + +exports.default = SiOpenfaas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.d.ts new file mode 100644 index 000000000..6995127f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B5EE9"; +declare const SiOpenfaas: IconType; +export { SiOpenfaas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.mjs new file mode 100644 index 000000000..be8ede9de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenfaas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B5EE9"; +const SiOpenfaas = React.forwardRef(function SiOpenfaas2({ title = "OpenFaaS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.304 0A4.31 4.31 0 0 0 0 4.304v15.391A4.31 4.31 0 0 0 4.304 24h15.392A4.31 4.31 0 0 0 24 19.695V4.305A4.31 4.31 0 0 0 19.695 0zm-.006.776h15.398a3.532 3.532 0 0 1 3.528 3.528v15.391c0 .205-.019.409-.054.61-1.234-.015-1.858-.412-2.514-.834-.708-.454-1.51-.97-3.04-.97s-2.33.516-3.038.97c-.17.11-.338.217-.514.317a43.042 43.042 0 0 1-.775-1.907.806.806 0 0 1 .01-.739c.3-.489 1.23-.691 1.572-.729.361-.027 5.97-.555 6.306-7.153a.42.42 0 0 0-.72-.317c-.457.464-1.886 1.634-3 1.47a11.06 11.06 0 0 1-.693-.127c-1.425-.293-3.339-.685-4.972 1.72-1.633-2.406-3.548-2.012-4.972-1.72-.248.05-.48.098-.697.128-1.108.162-2.538-1.007-2.997-1.471a.42.42 0 0 0-.72.316c.336 6.58 5.914 7.124 6.304 7.153.086.012 1.1.16 1.48.717.15.237.184.529.092.793a19.35 19.35 0 0 1-.552 1.747c-.107-.065-.214-.13-.32-.198-.708-.454-1.51-.97-3.039-.97-1.53 0-2.332.516-3.04.97-.654.42-1.277.816-2.5.834a3.532 3.532 0 0 1-.055-.61V4.305A3.532 3.532 0 0 1 4.298.775zm4.474 2.108l-4.74 1.429 1.293 4.288 3.165-.955-.19 1.229 4.894.757.684-4.426-4.62-.715zm10.494.813l-4.938.348.315 4.466 4.938-.347Z" }) + ] + } + ); +}); + +export { SiOpenfaas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.cjs new file mode 100644 index 000000000..61e906fea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5586A4"; +const SiOpengl = React__namespace.forwardRef(function SiOpengl2({ title = "OpenGL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.607 13.88c1.32 1.197 3.862 2.008 6.781 2.008 2.375 0 4.503-.481 5.923-1.325-1.555 1.413-4.328 2.41-7.495 2.41C3.947 16.972 0 14.745 0 11.999c0-2.747 3.948-4.973 8.818-4.972 3.179.001 5.96 1.001 7.511 2.425-1.421-.85-3.558-1.34-5.941-1.34-2.828 0-5.303.761-6.655 1.897.01-.004.019-.008.028-.013.253-.119.548-.179.885-.179.336 0 .631.06.885.179.253.12.465.28.635.48.171.201.298.431.383.691.086.26.128.531.128.812 0 .282-.042.553-.128.813-.085.26-.212.49-.383.691-.17.2-.382.359-.635.477-.254.117-.549.176-.885.176-.337 0-.632-.059-.885-.176a2.2 2.2 0 0 1-.154-.08m-.347-1.283c.056.203.143.385.262.547s.271.292.458.391q.279.147.666.147t.666-.147c.186-.099.339-.229.458-.391s.206-.344.261-.547a2.3 2.3 0 0 0 0-1.232c-.055-.203-.142-.385-.261-.547s-.272-.293-.458-.391-.408-.148-.666-.148-.48.05-.666.148c-.187.099-.339.229-.458.391s-.206.344-.262.547c-.055.202-.083.407-.083.616 0 .208.028.414.083.616m4.254-1.183v.356h.009c.073-.146.187-.252.344-.318.156-.066.328-.099.515-.099.208 0 .39.037.544.112.155.074.283.175.385.302.103.128.18.274.232.441.052.166.078.342.078.529s-.025.363-.075.529c-.051.167-.127.312-.229.435-.103.124-.231.222-.386.293-.154.071-.334.107-.539.107-.066 0-.139-.007-.221-.02a1.25 1.25 0 0 1-.242-.067.94.94 0 0 1-.227-.125.67.67 0 0 1-.179-.196h-.009v1.359h-.446v-3.638zm1.585.936c-.033-.117-.083-.222-.151-.313-.067-.092-.154-.165-.26-.219-.105-.054-.229-.081-.371-.081-.149 0-.275.028-.379.086a.76.76 0 0 0-.255.226c-.066.094-.113.2-.143.318-.029.119-.044.24-.044.362 0 .129.016.253.047.373.031.121.08.227.148.319.067.091.155.165.262.221q.162.084.39.084c.152 0 .28-.029.382-.087a.694.694 0 0 0 .246-.229c.063-.095.108-.203.135-.325.028-.122.042-.248.042-.377 0-.122-.016-.241-.049-.358m2.799 1.527c-.201.149-.455.224-.761.224q-.324 0-.561-.102c-.159-.068-.292-.163-.4-.285-.107-.122-.188-.268-.242-.438-.054-.169-.084-.354-.091-.554 0-.2.031-.384.094-.55.062-.166.15-.311.263-.433s.248-.217.402-.285c.155-.067.325-.101.51-.101.24 0 .439.048.598.145.158.097.285.22.381.37q.144.2235.198.489c.037.177.052.345.045.505h-2.018c-.004.115.01.224.041.328.032.103.082.195.151.274.07.08.158.143.266.191.108.047.234.071.38.071.187 0 .341-.043.461-.128q.1785-.1275.237-.387h.438c-.059.295-.19.517-.392.666m-.108-1.688c-.04-.092-.093-.171-.161-.237a.77.77 0 0 0-.239-.157c-.092-.039-.194-.059-.304-.059-.115 0-.218.02-.31.059a.71.71 0 0 0-.237.16.8.8 0 0 0-.156.236c-.038.09-.06.186-.067.287h1.545a.86.86 0 0 0-.071-.289m1.259-.775v.418h.009c.185-.32.478-.479.88-.479.178 0 .326.023.445.071s.215.114.288.199c.074.085.125.186.155.303.029.117.044.247.044.39v1.733h-.446v-1.783q0-.2445-.147-.387c-.097-.095-.231-.143-.402-.143-.136 0-.253.021-.353.062-.099.04-.182.098-.248.173a.75.75 0 0 0-.149.262c-.033.1-.049.21-.049.328v1.487h-.447v-2.634zm4.908 2.606c-.202.083-.406.125-.611.125-.324 0-.616-.056-.875-.166s-.477-.262-.655-.456c-.178-.193-.314-.42-.409-.682-.095-.261-.142-.542-.142-.844 0-.31.047-.597.142-.862.094-.265.23-.496.408-.694.177-.197.395-.352.654-.464.259-.113.55-.169.875-.169.217 0 .427.032.631.096.203.064.387.158.551.282.164.125.3.277.406.459.107.182.172.391.196.626h-.889c-.055-.231-.162-.405-.32-.521-.159-.116-.35-.174-.575-.174-.21 0-.388.04-.534.119s-.265.186-.356.319q-.1365.201-.198.456-.063.255-.063.528c0 .174.021.344.063.508.041.165.108.313.199.444.091.132.209.237.356.316.146.08.324.119.534.119.309 0 .547-.076.715-.228.169-.152.267-.372.294-.661h-.936v-.681h1.776v2.237h-.591l-.095-.47c-.166.209-.35.355-.551.438m2.746-4.107v3.368h2.063v.768h-2.992V9.913zM24 13.667c0 .07-.017.134-.052.194a.389.389 0 0 1-.336.194.389.389 0 0 1-.336-.194.39.39 0 0 1-.052-.194.389.389 0 0 1 .194-.336.39.39 0 0 1 .194-.052.389.389 0 0 1 .336.194c.035.06.052.125.052.194m-.075 0c0-.086-.031-.16-.092-.221a.302.302 0 0 0-.221-.092c-.086 0-.16.031-.221.092a.302.302 0 0 0-.092.221c0 .086.031.16.092.221s.135.092.221.092.16-.031.221-.092a.302.302 0 0 0 .092-.221m-.489-.207h.186c.052 0 .09.01.114.032.023.021.035.049.035.085q0 .0405-.027.072c-.018.02-.046.035-.085.044.016.006.028.013.035.019q.0165.015.033.042c.001.002.023.042.067.12h-.122c-.039-.079-.066-.126-.079-.141-.014-.016-.028-.023-.041-.023-.003 0-.007 0-.013.001v.163h-.103zm.103.176h.045q.045 0 .063-.015a.046.046 0 0 0 .018-.037.05.05 0 0 0-.017-.038c-.012-.009-.032-.014-.06-.014h-.049z" }) + ] + } + ); +}); + +exports.default = SiOpengl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.d.ts new file mode 100644 index 000000000..abf042e16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5586A4"; +declare const SiOpengl: IconType; +export { SiOpengl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.mjs new file mode 100644 index 000000000..c99a2aaf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpengl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5586A4"; +const SiOpengl = React.forwardRef(function SiOpengl2({ title = "OpenGL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.607 13.88c1.32 1.197 3.862 2.008 6.781 2.008 2.375 0 4.503-.481 5.923-1.325-1.555 1.413-4.328 2.41-7.495 2.41C3.947 16.972 0 14.745 0 11.999c0-2.747 3.948-4.973 8.818-4.972 3.179.001 5.96 1.001 7.511 2.425-1.421-.85-3.558-1.34-5.941-1.34-2.828 0-5.303.761-6.655 1.897.01-.004.019-.008.028-.013.253-.119.548-.179.885-.179.336 0 .631.06.885.179.253.12.465.28.635.48.171.201.298.431.383.691.086.26.128.531.128.812 0 .282-.042.553-.128.813-.085.26-.212.49-.383.691-.17.2-.382.359-.635.477-.254.117-.549.176-.885.176-.337 0-.632-.059-.885-.176a2.2 2.2 0 0 1-.154-.08m-.347-1.283c.056.203.143.385.262.547s.271.292.458.391q.279.147.666.147t.666-.147c.186-.099.339-.229.458-.391s.206-.344.261-.547a2.3 2.3 0 0 0 0-1.232c-.055-.203-.142-.385-.261-.547s-.272-.293-.458-.391-.408-.148-.666-.148-.48.05-.666.148c-.187.099-.339.229-.458.391s-.206.344-.262.547c-.055.202-.083.407-.083.616 0 .208.028.414.083.616m4.254-1.183v.356h.009c.073-.146.187-.252.344-.318.156-.066.328-.099.515-.099.208 0 .39.037.544.112.155.074.283.175.385.302.103.128.18.274.232.441.052.166.078.342.078.529s-.025.363-.075.529c-.051.167-.127.312-.229.435-.103.124-.231.222-.386.293-.154.071-.334.107-.539.107-.066 0-.139-.007-.221-.02a1.25 1.25 0 0 1-.242-.067.94.94 0 0 1-.227-.125.67.67 0 0 1-.179-.196h-.009v1.359h-.446v-3.638zm1.585.936c-.033-.117-.083-.222-.151-.313-.067-.092-.154-.165-.26-.219-.105-.054-.229-.081-.371-.081-.149 0-.275.028-.379.086a.76.76 0 0 0-.255.226c-.066.094-.113.2-.143.318-.029.119-.044.24-.044.362 0 .129.016.253.047.373.031.121.08.227.148.319.067.091.155.165.262.221q.162.084.39.084c.152 0 .28-.029.382-.087a.694.694 0 0 0 .246-.229c.063-.095.108-.203.135-.325.028-.122.042-.248.042-.377 0-.122-.016-.241-.049-.358m2.799 1.527c-.201.149-.455.224-.761.224q-.324 0-.561-.102c-.159-.068-.292-.163-.4-.285-.107-.122-.188-.268-.242-.438-.054-.169-.084-.354-.091-.554 0-.2.031-.384.094-.55.062-.166.15-.311.263-.433s.248-.217.402-.285c.155-.067.325-.101.51-.101.24 0 .439.048.598.145.158.097.285.22.381.37q.144.2235.198.489c.037.177.052.345.045.505h-2.018c-.004.115.01.224.041.328.032.103.082.195.151.274.07.08.158.143.266.191.108.047.234.071.38.071.187 0 .341-.043.461-.128q.1785-.1275.237-.387h.438c-.059.295-.19.517-.392.666m-.108-1.688c-.04-.092-.093-.171-.161-.237a.77.77 0 0 0-.239-.157c-.092-.039-.194-.059-.304-.059-.115 0-.218.02-.31.059a.71.71 0 0 0-.237.16.8.8 0 0 0-.156.236c-.038.09-.06.186-.067.287h1.545a.86.86 0 0 0-.071-.289m1.259-.775v.418h.009c.185-.32.478-.479.88-.479.178 0 .326.023.445.071s.215.114.288.199c.074.085.125.186.155.303.029.117.044.247.044.39v1.733h-.446v-1.783q0-.2445-.147-.387c-.097-.095-.231-.143-.402-.143-.136 0-.253.021-.353.062-.099.04-.182.098-.248.173a.75.75 0 0 0-.149.262c-.033.1-.049.21-.049.328v1.487h-.447v-2.634zm4.908 2.606c-.202.083-.406.125-.611.125-.324 0-.616-.056-.875-.166s-.477-.262-.655-.456c-.178-.193-.314-.42-.409-.682-.095-.261-.142-.542-.142-.844 0-.31.047-.597.142-.862.094-.265.23-.496.408-.694.177-.197.395-.352.654-.464.259-.113.55-.169.875-.169.217 0 .427.032.631.096.203.064.387.158.551.282.164.125.3.277.406.459.107.182.172.391.196.626h-.889c-.055-.231-.162-.405-.32-.521-.159-.116-.35-.174-.575-.174-.21 0-.388.04-.534.119s-.265.186-.356.319q-.1365.201-.198.456-.063.255-.063.528c0 .174.021.344.063.508.041.165.108.313.199.444.091.132.209.237.356.316.146.08.324.119.534.119.309 0 .547-.076.715-.228.169-.152.267-.372.294-.661h-.936v-.681h1.776v2.237h-.591l-.095-.47c-.166.209-.35.355-.551.438m2.746-4.107v3.368h2.063v.768h-2.992V9.913zM24 13.667c0 .07-.017.134-.052.194a.389.389 0 0 1-.336.194.389.389 0 0 1-.336-.194.39.39 0 0 1-.052-.194.389.389 0 0 1 .194-.336.39.39 0 0 1 .194-.052.389.389 0 0 1 .336.194c.035.06.052.125.052.194m-.075 0c0-.086-.031-.16-.092-.221a.302.302 0 0 0-.221-.092c-.086 0-.16.031-.221.092a.302.302 0 0 0-.092.221c0 .086.031.16.092.221s.135.092.221.092.16-.031.221-.092a.302.302 0 0 0 .092-.221m-.489-.207h.186c.052 0 .09.01.114.032.023.021.035.049.035.085q0 .0405-.027.072c-.018.02-.046.035-.085.044.016.006.028.013.035.019q.0165.015.033.042c.001.002.023.042.067.12h-.122c-.039-.079-.066-.126-.079-.141-.014-.016-.028-.023-.041-.023-.003 0-.007 0-.013.001v.163h-.103zm.103.176h.045q.045 0 .063-.015a.046.046 0 0 0 .018-.037.05.05 0 0 0-.017-.038c-.012-.009-.032-.014-.06-.014h-.049z" }) + ] + } + ); +}); + +export { SiOpengl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.cjs new file mode 100644 index 000000000..18ebc012d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E64A19"; +const SiOpenhab = React__namespace.forwardRef(function SiOpenhab2({ title = "openHAB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 9.103-9.76 9.768c-.376-.553-.725-1.123-.998-1.738l9.39-9.397L12 6.368l1.368 1.368 6.931 6.931-.01.035-.136.403-.156.393-.174.384-.192.374-.175.304L12 9.103zM12 0C5.39 0 0 5.39 0 12c0 1.306.211 2.563.6 3.741l.893-.893.668-.67A10.039 10.039 0 0 1 1.922 12C1.922 6.45 6.45 1.922 12 1.922S22.078 6.449 22.078 12c0 5.55-4.527 10.078-10.078 10.078a10.06 10.06 0 0 1-7.698-3.588l-.012.012-.309.309-.308.309-.308.308-.424.425C5.144 22.39 8.39 24 12.001 24 18.61 24 24 18.61 24 12S18.61 0 12 0z" }) + ] + } + ); +}); + +exports.default = SiOpenhab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.d.ts new file mode 100644 index 000000000..bad933c15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E64A19"; +declare const SiOpenhab: IconType; +export { SiOpenhab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.mjs new file mode 100644 index 000000000..cccf66b1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenhab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E64A19"; +const SiOpenhab = React.forwardRef(function SiOpenhab2({ title = "openHAB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 9.103-9.76 9.768c-.376-.553-.725-1.123-.998-1.738l9.39-9.397L12 6.368l1.368 1.368 6.931 6.931-.01.035-.136.403-.156.393-.174.384-.192.374-.175.304L12 9.103zM12 0C5.39 0 0 5.39 0 12c0 1.306.211 2.563.6 3.741l.893-.893.668-.67A10.039 10.039 0 0 1 1.922 12C1.922 6.45 6.45 1.922 12 1.922S22.078 6.449 22.078 12c0 5.55-4.527 10.078-10.078 10.078a10.06 10.06 0 0 1-7.698-3.588l-.012.012-.309.309-.308.309-.308.308-.424.425C5.144 22.39 8.39 24 12.001 24 18.61 24 24 18.61 24 12S18.61 0 12 0z" }) + ] + } + ); +}); + +export { SiOpenhab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.cjs new file mode 100644 index 000000000..79be19879 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F78C40"; +const SiOpenid = React__namespace.forwardRef(function SiOpenid2({ title = "OpenID", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.54.889l-3.63 1.773v18.17c-4.15-.52-7.27-2.78-7.27-5.5 0-2.58 2.8-4.75 6.63-5.41v-2.31C4.42 8.322 0 11.502 0 15.332c0 3.96 4.74 7.24 10.91 7.78l3.63-1.71V.888m.64 6.724v2.31c1.43.25 2.71.7 3.76 1.31l-1.97 1.11 7.03 1.53-.5-5.21-1.87 1.06c-1.74-1.06-3.96-1.81-6.45-2.11z" }) + ] + } + ); +}); + +exports.default = SiOpenid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.d.ts new file mode 100644 index 000000000..ad9b3439e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F78C40"; +declare const SiOpenid: IconType; +export { SiOpenid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.mjs new file mode 100644 index 000000000..01d6ff12e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F78C40"; +const SiOpenid = React.forwardRef(function SiOpenid2({ title = "OpenID", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.54.889l-3.63 1.773v18.17c-4.15-.52-7.27-2.78-7.27-5.5 0-2.58 2.8-4.75 6.63-5.41v-2.31C4.42 8.322 0 11.502 0 15.332c0 3.96 4.74 7.24 10.91 7.78l3.63-1.71V.888m.64 6.724v2.31c1.43.25 2.71.7 3.76 1.31l-1.97 1.11 7.03 1.53-.5-5.21-1.87 1.06c-1.74-1.06-3.96-1.81-6.45-2.11z" }) + ] + } + ); +}); + +export { SiOpenid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.cjs new file mode 100644 index 000000000..fb4fbd7d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOpenjdk = React__namespace.forwardRef(function SiOpenjdk2({ title = "OpenJDK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.915 0 11.7.215C9.515 2.4 7.47 6.39 6.046 10.483c-1.064 1.024-3.633 2.81-3.711 3.551-.093.87 1.746 2.611 1.55 3.235-.198.625-1.304 1.408-1.014 1.939.1.188.823.011 1.277-.491a13.389 13.389 0 0 0-.017 2.14c.076.906.27 1.668.643 2.232.372.563.956.911 1.667.911.397 0 .727-.114 1.024-.264.298-.149.571-.33.91-.5.68-.34 1.634-.666 3.53-.604 1.903.062 2.872.39 3.559.704.687.314 1.15.664 1.925.664.767 0 1.395-.336 1.807-.9.412-.563.631-1.33.72-2.24.06-.623.055-1.32 0-2.066.454.45 1.117.604 1.213.424.29-.53-.816-1.314-1.013-1.937-.198-.624 1.642-2.366 1.549-3.236-.08-.748-2.707-2.568-3.748-3.586C16.428 6.374 14.308 2.394 12.13.215zm.175 6.038a2.95 2.95 0 0 1 2.943 2.942 2.95 2.95 0 0 1-2.943 2.943A2.95 2.95 0 0 1 9.148 8.98a2.95 2.95 0 0 1 2.942-2.942zM8.685 7.983a3.515 3.515 0 0 0-.145.997c0 1.951 1.6 3.55 3.55 3.55 1.95 0 3.55-1.598 3.55-3.55 0-.329-.046-.648-.132-.951.334.095.64.208.915.336a42.699 42.699 0 0 1 2.042 5.829c.678 2.545 1.01 4.92.846 6.607-.082.844-.29 1.51-.606 1.94-.315.431-.713.651-1.315.651-.593 0-.932-.27-1.673-.61-.741-.338-1.825-.694-3.792-.758-1.974-.064-3.073.293-3.821.669-.375.188-.659.373-.911.5s-.466.2-.752.2c-.53 0-.876-.209-1.16-.64-.285-.43-.474-1.101-.545-1.948-.141-1.693.176-4.069.823-6.614a43.155 43.155 0 0 1 1.934-5.783c.348-.167.749-.31 1.192-.425zm-3.382 4.362a.216.216 0 0 1 .13.031c-.166.56-.323 1.116-.463 1.665a33.849 33.849 0 0 0-.547 2.555 3.9 3.9 0 0 0-.2-.39c-.58-1.012-.914-1.642-1.16-2.08.315-.24 1.679-1.755 2.24-1.781zm13.394.01c.562.027 1.926 1.543 2.24 1.783-.246.438-.58 1.068-1.16 2.08a4.428 4.428 0 0 0-.163.309 32.354 32.354 0 0 0-.562-2.49 40.579 40.579 0 0 0-.482-1.652.216.216 0 0 1 .127-.03z" }) + ] + } + ); +}); + +exports.default = SiOpenjdk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.d.ts new file mode 100644 index 000000000..b3eda2734 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOpenjdk: IconType; +export { SiOpenjdk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.mjs new file mode 100644 index 000000000..3fe5b80e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjdk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOpenjdk = React.forwardRef(function SiOpenjdk2({ title = "OpenJDK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.915 0 11.7.215C9.515 2.4 7.47 6.39 6.046 10.483c-1.064 1.024-3.633 2.81-3.711 3.551-.093.87 1.746 2.611 1.55 3.235-.198.625-1.304 1.408-1.014 1.939.1.188.823.011 1.277-.491a13.389 13.389 0 0 0-.017 2.14c.076.906.27 1.668.643 2.232.372.563.956.911 1.667.911.397 0 .727-.114 1.024-.264.298-.149.571-.33.91-.5.68-.34 1.634-.666 3.53-.604 1.903.062 2.872.39 3.559.704.687.314 1.15.664 1.925.664.767 0 1.395-.336 1.807-.9.412-.563.631-1.33.72-2.24.06-.623.055-1.32 0-2.066.454.45 1.117.604 1.213.424.29-.53-.816-1.314-1.013-1.937-.198-.624 1.642-2.366 1.549-3.236-.08-.748-2.707-2.568-3.748-3.586C16.428 6.374 14.308 2.394 12.13.215zm.175 6.038a2.95 2.95 0 0 1 2.943 2.942 2.95 2.95 0 0 1-2.943 2.943A2.95 2.95 0 0 1 9.148 8.98a2.95 2.95 0 0 1 2.942-2.942zM8.685 7.983a3.515 3.515 0 0 0-.145.997c0 1.951 1.6 3.55 3.55 3.55 1.95 0 3.55-1.598 3.55-3.55 0-.329-.046-.648-.132-.951.334.095.64.208.915.336a42.699 42.699 0 0 1 2.042 5.829c.678 2.545 1.01 4.92.846 6.607-.082.844-.29 1.51-.606 1.94-.315.431-.713.651-1.315.651-.593 0-.932-.27-1.673-.61-.741-.338-1.825-.694-3.792-.758-1.974-.064-3.073.293-3.821.669-.375.188-.659.373-.911.5s-.466.2-.752.2c-.53 0-.876-.209-1.16-.64-.285-.43-.474-1.101-.545-1.948-.141-1.693.176-4.069.823-6.614a43.155 43.155 0 0 1 1.934-5.783c.348-.167.749-.31 1.192-.425zm-3.382 4.362a.216.216 0 0 1 .13.031c-.166.56-.323 1.116-.463 1.665a33.849 33.849 0 0 0-.547 2.555 3.9 3.9 0 0 0-.2-.39c-.58-1.012-.914-1.642-1.16-2.08.315-.24 1.679-1.755 2.24-1.781zm13.394.01c.562.027 1.926 1.543 2.24 1.783-.246.438-.58 1.068-1.16 2.08a4.428 4.428 0 0 0-.163.309 32.354 32.354 0 0 0-.562-2.49 40.579 40.579 0 0 0-.482-1.652.216.216 0 0 1 .127-.03z" }) + ] + } + ); +}); + +export { SiOpenjdk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.cjs new file mode 100644 index 000000000..fafabd6d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0075C9"; +const SiOpenjsfoundation = React__namespace.forwardRef(function SiOpenjsfoundation2({ title = "OpenJS Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.992 0 1.603 6v12L12 24l10.397-5.992V6L11.992 0M10.97 1.534 8.458 5.878H3.443l7.526-4.344M8.046 6.595 6.87 8.634 3.343 6.595h4.703M7.13 9.603 11.275 12 7.13 14.397 5.748 12 7.13 9.603m-.611-.351L5.343 11.29 2.985 7.214l3.534 2.038m-4.1-1.595L4.932 12 2.42 16.343V7.657m2.916 5.06 1.175 2.039-3.526 2.038 2.35-4.076m1.535 2.648 1.176 2.039H3.343l3.527-2.039m-3.427 2.756h5.015l2.511 4.344-7.526-4.344M11.64 22.2l-2.35-4.078h2.351V22.2m0-4.794h-2.77l-1.383-2.397 4.145-2.397v4.794h.008m0-6.023L7.496 8.985l1.382-2.397h2.763v4.794m0-5.504H9.29l2.351-4.076v4.076m5.832 3.374L21 7.214l-2.351 4.076-1.176-2.038M18.237 12l-1.382 2.397L12.71 12l4.145-2.397L18.236 12m-1.122-3.366L15.94 6.595h4.702l-3.527 2.039m3.428-2.756h-5.015l-2.504-4.344 7.519 4.344m-8.19-4.076 2.35 4.076h-2.351V1.802m0 4.793h2.763l1.382 2.397-4.145 2.397V6.595m0 6.023 4.145 2.397-1.382 2.39h-2.763v-4.787m0 5.504h2.351l-2.351 4.076v-4.076m.672 4.344 2.504-4.344h5.015l-7.52 4.344m2.917-5.061 1.175-2.039 3.527 2.039H15.94m1.534-2.657 1.176-2.038L21 16.786l-3.526-2.038m4.1 1.595L19.06 12l2.511-4.343v8.687" }) + ] + } + ); +}); + +exports.default = SiOpenjsfoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.d.ts new file mode 100644 index 000000000..d6d99240b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0075C9"; +declare const SiOpenjsfoundation: IconType; +export { SiOpenjsfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.mjs new file mode 100644 index 000000000..2f0a62642 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenjsfoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0075C9"; +const SiOpenjsfoundation = React.forwardRef(function SiOpenjsfoundation2({ title = "OpenJS Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.992 0 1.603 6v12L12 24l10.397-5.992V6L11.992 0M10.97 1.534 8.458 5.878H3.443l7.526-4.344M8.046 6.595 6.87 8.634 3.343 6.595h4.703M7.13 9.603 11.275 12 7.13 14.397 5.748 12 7.13 9.603m-.611-.351L5.343 11.29 2.985 7.214l3.534 2.038m-4.1-1.595L4.932 12 2.42 16.343V7.657m2.916 5.06 1.175 2.039-3.526 2.038 2.35-4.076m1.535 2.648 1.176 2.039H3.343l3.527-2.039m-3.427 2.756h5.015l2.511 4.344-7.526-4.344M11.64 22.2l-2.35-4.078h2.351V22.2m0-4.794h-2.77l-1.383-2.397 4.145-2.397v4.794h.008m0-6.023L7.496 8.985l1.382-2.397h2.763v4.794m0-5.504H9.29l2.351-4.076v4.076m5.832 3.374L21 7.214l-2.351 4.076-1.176-2.038M18.237 12l-1.382 2.397L12.71 12l4.145-2.397L18.236 12m-1.122-3.366L15.94 6.595h4.702l-3.527 2.039m3.428-2.756h-5.015l-2.504-4.344 7.519 4.344m-8.19-4.076 2.35 4.076h-2.351V1.802m0 4.793h2.763l1.382 2.397-4.145 2.397V6.595m0 6.023 4.145 2.397-1.382 2.39h-2.763v-4.787m0 5.504h2.351l-2.351 4.076v-4.076m.672 4.344 2.504-4.344h5.015l-7.52 4.344m2.917-5.061 1.175-2.039 3.527 2.039H15.94m1.534-2.657 1.176-2.038L21 16.786l-3.526-2.038m4.1 1.595L19.06 12l2.511-4.343v8.687" }) + ] + } + ); +}); + +export { SiOpenjsfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.cjs new file mode 100644 index 000000000..2e23f146b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F6B75"; +const SiOpenlayers = React__namespace.forwardRef(function SiOpenlayers2({ title = "Openlayers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.7 13.08a3.498 3.498 0 0 1-1.119 1.619l-7.426 6.196a5.137 5.137 0 0 1-6.317 0L1.412 14.7a3.578 3.578 0 0 1-1.12-1.62 3.298 3.298 0 0 0 1.12 3.639l7.426 6.196a5.137 5.137 0 0 0 6.317 0l7.426-6.196a3.298 3.298 0 0 0 1.12-3.639M8.838 1.086a5.137 5.137 0 0 1 6.317 0l7.426 6.196a3.298 3.298 0 0 1 0 5.258l-7.426 6.187a5.137 5.137 0 0 1-6.317 0L1.412 12.53a3.298 3.298 0 0 1 0-5.248z" }) + ] + } + ); +}); + +exports.default = SiOpenlayers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.d.ts new file mode 100644 index 000000000..2443babd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F6B75"; +declare const SiOpenlayers: IconType; +export { SiOpenlayers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.mjs new file mode 100644 index 000000000..a399936f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenlayers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F6B75"; +const SiOpenlayers = React.forwardRef(function SiOpenlayers2({ title = "Openlayers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.7 13.08a3.498 3.498 0 0 1-1.119 1.619l-7.426 6.196a5.137 5.137 0 0 1-6.317 0L1.412 14.7a3.578 3.578 0 0 1-1.12-1.62 3.298 3.298 0 0 0 1.12 3.639l7.426 6.196a5.137 5.137 0 0 0 6.317 0l7.426-6.196a3.298 3.298 0 0 0 1.12-3.639M8.838 1.086a5.137 5.137 0 0 1 6.317 0l7.426 6.196a3.298 3.298 0 0 1 0 5.258l-7.426 6.187a5.137 5.137 0 0 1-6.317 0L1.412 12.53a3.298 3.298 0 0 1 0-5.248z" }) + ] + } + ); +}); + +export { SiOpenlayers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.cjs new file mode 100644 index 000000000..dc2ff0e8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5DACDF"; +const SiOpenmediavault = React__namespace.forwardRef(function SiOpenmediavault2({ title = "openmediavault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.945 1.045A.947.947 0 0 0 0 1.988v20.024c0 .534.436.943.945.943h22.11a.944.944 0 0 0 .945-.943V1.988a.941.941 0 0 0-.945-.943Zm.118 1.064h21.875v19.784H1.063ZM3.53 4.385c-.198 0-.361.149-.361.334v3.699c0 .185.162.334.361.334h16.94c.198 0 .36-.15.36-.334v-3.7c0-.184-.161-.333-.36-.333zm2.057.886a1.3 1.3 0 0 1 1.297 1.297 1.3 1.3 0 0 1-1.297 1.3 1.3 1.3 0 0 1-1.299-1.3 1.3 1.3 0 0 1 1.299-1.297m-.002.62a.68.68 0 0 0-.676.677.68.68 0 0 0 .678.678.68.68 0 0 0 .678-.678.68.68 0 0 0-.678-.677ZM3.53 9.816c-.198 0-.361.15-.361.334v3.702c0 .184.162.332.361.332h16.94c.198 0 .36-.15.36-.334v-3.7c0-.184-.161-.334-.36-.334zm2.057.887A1.3 1.3 0 0 1 6.885 12a1.3 1.3 0 0 1-1.297 1.299A1.3 1.3 0 0 1 4.289 12a1.3 1.3 0 0 1 1.299-1.297m-.002.62A.68.68 0 0 0 4.91 12a.68.68 0 0 0 .678.68.68.68 0 0 0 0-1.358ZM3.53 15.247c-.198 0-.361.15-.361.334v3.701c0 .185.162.332.361.332h16.94c.198 0 .36-.15.36-.334v-3.699c0-.184-.161-.334-.36-.334zm2.057.887a1.3 1.3 0 0 1 1.297 1.297 1.3 1.3 0 0 1-1.297 1.298 1.3 1.3 0 0 1-1.299-1.298 1.3 1.3 0 0 1 1.299-1.297m-.002.619a.68.68 0 0 0 .002 1.358.68.68 0 0 0 0-1.358Z" }) + ] + } + ); +}); + +exports.default = SiOpenmediavault; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.d.ts new file mode 100644 index 000000000..8855d6bad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5DACDF"; +declare const SiOpenmediavault: IconType; +export { SiOpenmediavault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.mjs new file mode 100644 index 000000000..3c8771455 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmediavault.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5DACDF"; +const SiOpenmediavault = React.forwardRef(function SiOpenmediavault2({ title = "openmediavault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.945 1.045A.947.947 0 0 0 0 1.988v20.024c0 .534.436.943.945.943h22.11a.944.944 0 0 0 .945-.943V1.988a.941.941 0 0 0-.945-.943Zm.118 1.064h21.875v19.784H1.063ZM3.53 4.385c-.198 0-.361.149-.361.334v3.699c0 .185.162.334.361.334h16.94c.198 0 .36-.15.36-.334v-3.7c0-.184-.161-.333-.36-.333zm2.057.886a1.3 1.3 0 0 1 1.297 1.297 1.3 1.3 0 0 1-1.297 1.3 1.3 1.3 0 0 1-1.299-1.3 1.3 1.3 0 0 1 1.299-1.297m-.002.62a.68.68 0 0 0-.676.677.68.68 0 0 0 .678.678.68.68 0 0 0 .678-.678.68.68 0 0 0-.678-.677ZM3.53 9.816c-.198 0-.361.15-.361.334v3.702c0 .184.162.332.361.332h16.94c.198 0 .36-.15.36-.334v-3.7c0-.184-.161-.334-.36-.334zm2.057.887A1.3 1.3 0 0 1 6.885 12a1.3 1.3 0 0 1-1.297 1.299A1.3 1.3 0 0 1 4.289 12a1.3 1.3 0 0 1 1.299-1.297m-.002.62A.68.68 0 0 0 4.91 12a.68.68 0 0 0 .678.68.68.68 0 0 0 0-1.358ZM3.53 15.247c-.198 0-.361.15-.361.334v3.701c0 .185.162.332.361.332h16.94c.198 0 .36-.15.36-.334v-3.699c0-.184-.161-.334-.36-.334zm2.057.887a1.3 1.3 0 0 1 1.297 1.297 1.3 1.3 0 0 1-1.297 1.298 1.3 1.3 0 0 1-1.299-1.298 1.3 1.3 0 0 1 1.299-1.297m-.002.619a.68.68 0 0 0 .002 1.358.68.68 0 0 0 0-1.358Z" }) + ] + } + ); +}); + +export { SiOpenmediavault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.cjs new file mode 100644 index 000000000..8f3b99da2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED986C"; +const SiOpenmined = React__namespace.forwardRef(function SiOpenmined2({ title = "OpenMined", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.486 0-.972.242-1.25.725L7.082 7.082.725 10.75a1.44 1.44 0 000 2.5l6.357 3.668 3.668 6.357a1.44 1.44 0 002.5 0l3.668-6.357 6.357-3.668c.967-.544.967-1.945 0-2.5l-6.357-3.668L13.25.725A1.429 1.429 0 0012 0zm.006 4.237l7.757 7.769-7.769 7.757-7.757-7.757zm-.012 3.112l-4.656 4.657 4.656 4.656 4.657-4.656z" }) + ] + } + ); +}); + +exports.default = SiOpenmined; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.d.ts new file mode 100644 index 000000000..92b9424d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED986C"; +declare const SiOpenmined: IconType; +export { SiOpenmined as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.mjs new file mode 100644 index 000000000..3857361ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenmined.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED986C"; +const SiOpenmined = React.forwardRef(function SiOpenmined2({ title = "OpenMined", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.486 0-.972.242-1.25.725L7.082 7.082.725 10.75a1.44 1.44 0 000 2.5l6.357 3.668 3.668 6.357a1.44 1.44 0 002.5 0l3.668-6.357 6.357-3.668c.967-.544.967-1.945 0-2.5l-6.357-3.668L13.25.725A1.429 1.429 0 0012 0zm.006 4.237l7.757 7.769-7.769 7.757-7.757-7.757zm-.012 3.112l-4.656 4.657 4.656 4.656 4.657-4.656z" }) + ] + } + ); +}); + +export { SiOpenmined as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.cjs new file mode 100644 index 000000000..bfb87c98d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0097C2"; +const SiOpennebula = React__namespace.forwardRef(function SiOpennebula2({ title = "OpenNebula", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.458 20.15v3.453s-.007.206-.087.283a.382.382 0 0 1-.294.113c-3.859-.005-7.718-.01-11.577-.003-1.576-.005-3.25-.173-4.532-1.117-.074-.08-.485-.289-.188-.259a91.722 91.722 0 0 0 14.367-1.92 92.308 92.308 0 0 0 2.31-.55zm-18.186.814c.206.302.36.766.71.898 5.88-.29 11.76-1.083 17.476-2.536v-3.391c-2.437 1.16-4.983 2.097-7.558 2.87a64.756 64.756 0 0 1-10.628 2.16zm-.66-1.886c.06.387.158.751.299 1.127 6.167-.726 12.276-2.236 17.925-4.864.207-.098.414-.198.62-.298v-3.278c-4.392 2.987-9.392 4.986-14.503 6.329-1.438.363-2.876.74-4.341.984zm10.85-6.692c-3.178 1.803-6.578 3.195-10.067 4.238-.257.14-.734.086-.732.469a5.21 5.21 0 0 0-.12 1.18c5.668-1.085 11.252-2.89 16.283-5.793a34.33 34.33 0 0 0 2.632-1.685V5.899c-2.213 2.657-5.019 4.774-7.997 6.487zM20.905.126c-.963.413-4.859 2.33-5.443 4.875-.236.323-.596-.08-.854-.163-2.209-1.091-5.008-.736-6.9.872C5.82 7.238 4.782 9.976 5.65 12.348c.136.279.277.653-.018.883-.35.243-.743.419-1.05.728-.625.527-1.17 1.204-1.5 1.926 5.184-1.574 10.26-3.834 14.504-7.283 1.423-1.183 2.757-2.503 3.87-3.982V.083c-.073-.154-.296-.067-.551.043z" }) + ] + } + ); +}); + +exports.default = SiOpennebula; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.d.ts new file mode 100644 index 000000000..17d54115b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0097C2"; +declare const SiOpennebula: IconType; +export { SiOpennebula as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.mjs new file mode 100644 index 000000000..e78569503 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpennebula.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0097C2"; +const SiOpennebula = React.forwardRef(function SiOpennebula2({ title = "OpenNebula", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.458 20.15v3.453s-.007.206-.087.283a.382.382 0 0 1-.294.113c-3.859-.005-7.718-.01-11.577-.003-1.576-.005-3.25-.173-4.532-1.117-.074-.08-.485-.289-.188-.259a91.722 91.722 0 0 0 14.367-1.92 92.308 92.308 0 0 0 2.31-.55zm-18.186.814c.206.302.36.766.71.898 5.88-.29 11.76-1.083 17.476-2.536v-3.391c-2.437 1.16-4.983 2.097-7.558 2.87a64.756 64.756 0 0 1-10.628 2.16zm-.66-1.886c.06.387.158.751.299 1.127 6.167-.726 12.276-2.236 17.925-4.864.207-.098.414-.198.62-.298v-3.278c-4.392 2.987-9.392 4.986-14.503 6.329-1.438.363-2.876.74-4.341.984zm10.85-6.692c-3.178 1.803-6.578 3.195-10.067 4.238-.257.14-.734.086-.732.469a5.21 5.21 0 0 0-.12 1.18c5.668-1.085 11.252-2.89 16.283-5.793a34.33 34.33 0 0 0 2.632-1.685V5.899c-2.213 2.657-5.019 4.774-7.997 6.487zM20.905.126c-.963.413-4.859 2.33-5.443 4.875-.236.323-.596-.08-.854-.163-2.209-1.091-5.008-.736-6.9.872C5.82 7.238 4.782 9.976 5.65 12.348c.136.279.277.653-.018.883-.35.243-.743.419-1.05.728-.625.527-1.17 1.204-1.5 1.926 5.184-1.574 10.26-3.834 14.504-7.283 1.423-1.183 2.757-2.503 3.87-3.982V.083c-.073-.154-.296-.067-.551.043z" }) + ] + } + ); +}); + +export { SiOpennebula as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.cjs new file mode 100644 index 000000000..df4be71b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0770B8"; +const SiOpenproject = React__namespace.forwardRef(function SiOpenproject2({ title = "OpenProject", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.35.37h-1.86a4.628 4.628 0 0 0-4.652 4.624v5.609H4.652A4.628 4.628 0 0 0 0 15.23v3.721c0 2.569 2.083 4.679 4.652 4.679h1.86c2.57 0 4.652-2.11 4.652-4.679v-3.72c0-.063 0-.158-.005-.158H8.373v3.88c0 1.026-.835 1.886-1.861 1.886h-1.86c-1.027 0-1.861-.864-1.861-1.886V15.23a1.839 1.839 0 0 1 1.86-1.833h14.697c2.57 0 4.652-2.11 4.652-4.679V4.997A4.628 4.628 0 0 0 19.35.37Zm1.861 8.345c0 1.026-.835 1.886-1.861 1.886h-3.721V4.997a1.839 1.839 0 0 1 1.86-1.833h1.86a1.839 1.839 0 0 1 1.862 1.833zm-8.373 9.706a.236.236 0 0 0 0 .03c0 .746.629 1.344 1.396 1.344.767 0 1.395-.594 1.395-1.34a.188.188 0 0 0 0-.034v-3.35h-2.791z" }) + ] + } + ); +}); + +exports.default = SiOpenproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.d.ts new file mode 100644 index 000000000..86902714c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0770B8"; +declare const SiOpenproject: IconType; +export { SiOpenproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.mjs new file mode 100644 index 000000000..2ab913ce6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0770B8"; +const SiOpenproject = React.forwardRef(function SiOpenproject2({ title = "OpenProject", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.35.37h-1.86a4.628 4.628 0 0 0-4.652 4.624v5.609H4.652A4.628 4.628 0 0 0 0 15.23v3.721c0 2.569 2.083 4.679 4.652 4.679h1.86c2.57 0 4.652-2.11 4.652-4.679v-3.72c0-.063 0-.158-.005-.158H8.373v3.88c0 1.026-.835 1.886-1.861 1.886h-1.86c-1.027 0-1.861-.864-1.861-1.886V15.23a1.839 1.839 0 0 1 1.86-1.833h14.697c2.57 0 4.652-2.11 4.652-4.679V4.997A4.628 4.628 0 0 0 19.35.37Zm1.861 8.345c0 1.026-.835 1.886-1.861 1.886h-3.721V4.997a1.839 1.839 0 0 1 1.86-1.833h1.86a1.839 1.839 0 0 1 1.862 1.833zm-8.373 9.706a.236.236 0 0 0 0 .03c0 .746.629 1.344 1.396 1.344.767 0 1.395-.594 1.395-1.34a.188.188 0 0 0 0-.034v-3.35h-2.791z" }) + ] + } + ); +}); + +export { SiOpenproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.cjs new file mode 100644 index 000000000..f542fc241 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#94A3B8"; +const SiOpenrouter = React__namespace.forwardRef(function SiOpenrouter2({ title = "OpenRouter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.778 1.844v1.919q-.569-.026-1.138-.032-.708-.008-1.415.037c-1.93.126-4.023.728-6.149 2.237-2.911 2.066-2.731 1.95-4.14 2.75-.396.223-1.342.574-2.185.798-.841.225-1.753.333-1.751.333v4.229s.768.108 1.61.333c.842.224 1.789.575 2.185.799 1.41.798 1.228.683 4.14 2.75 2.126 1.509 4.22 2.11 6.148 2.236.88.058 1.716.041 2.555.005v1.918l7.222-4.168-7.222-4.17v2.176c-.86.038-1.611.065-2.278.021-1.364-.09-2.417-.357-3.979-1.465-2.244-1.593-2.866-2.027-3.68-2.508.889-.518 1.449-.906 3.822-2.59 1.56-1.109 2.614-1.377 3.978-1.466.667-.044 1.418-.017 2.278.02v2.176L24 6.014Z" }) + ] + } + ); +}); + +exports.default = SiOpenrouter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.d.ts new file mode 100644 index 000000000..89da53f6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#94A3B8"; +declare const SiOpenrouter: IconType; +export { SiOpenrouter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.mjs new file mode 100644 index 000000000..8f23f3a0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenrouter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#94A3B8"; +const SiOpenrouter = React.forwardRef(function SiOpenrouter2({ title = "OpenRouter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.778 1.844v1.919q-.569-.026-1.138-.032-.708-.008-1.415.037c-1.93.126-4.023.728-6.149 2.237-2.911 2.066-2.731 1.95-4.14 2.75-.396.223-1.342.574-2.185.798-.841.225-1.753.333-1.751.333v4.229s.768.108 1.61.333c.842.224 1.789.575 2.185.799 1.41.798 1.228.683 4.14 2.75 2.126 1.509 4.22 2.11 6.148 2.236.88.058 1.716.041 2.555.005v1.918l7.222-4.168-7.222-4.17v2.176c-.86.038-1.611.065-2.278.021-1.364-.09-2.417-.357-3.979-1.465-2.244-1.593-2.866-2.027-3.68-2.508.889-.518 1.449-.906 3.822-2.59 1.56-1.109 2.614-1.377 3.978-1.466.667-.044 1.418-.017 2.278.02v2.176L24 6.014Z" }) + ] + } + ); +}); + +export { SiOpenrouter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.cjs new file mode 100644 index 000000000..e33f3edf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F9D72C"; +const SiOpenscad = React__namespace.forwardRef(function SiOpenscad2({ title = "OpenSCAD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.065 2.418c-1.287.016-2.478.283-3.346.701-.895.432-1.426 1.014-1.426 1.627 0 .494.375.98.975 1.397.242-.178.493-.307.729-.422.235-.116.556-.147.976-.15.42-.004.856.09.856.09.008.001 1.498.644 1.498.644l.894-.418h.002s.592-.266 1.268-.258c.045 0 .09.003.136.006.187.013.355.038.655.107.3.07.591.239.777.39.562-.405.897-.879.897-1.364 0-.617-.501-1.203-1.364-1.639-.862-.436-2.068-.71-3.402-.71h-.125zm7.3.143c-.325-.02-.443.02-.695.13-.506.275-1.024.55-1.545.825a9.872 9.872 0 0 1 4.725 8.06c.418-.213.832-.427 1.229-.636 1.157-.844 1.234-3.073.177-5.194-.94-1.885-2.53-3.188-3.89-3.185ZM8.55 2.928a9.648 9.648 0 0 0-6.177 8.16c.425-.214.857-.424 1.294-.617l.002-.002h.002c.204-.086.418-.128.637-.133.22-.005.445.029.672.094.454.13.916.386 1.355.726.88.68 1.693 1.714 2.213 2.883.576 1.293.84 2.532.795 3.56-.045 1.029-.412 1.875-1.138 2.268l-.977.467a9.594 9.594 0 0 0 4.744 1.248 9.594 9.594 0 0 0 5.334-1.611c-.745.289-1.48.318-2.086-.006-.54-.29-.915-.833-1.082-1.541-.121-.413-.09-.715-.103-1.147.015-.475.141-.929.207-1.248.104-.434.377-1.154.775-1.865.398-.71.977-1.41 1.611-2.008.635-.598 1.253-.966 1.704-1.082.45-.116.742-.17 1.043-.174.3-.003.608.046.921.21.772.41 1.163 1.295 1.188 2.357.074-.226.108-1.16.129-1.525a9.636 9.636 0 0 0-5.123-8.516c.447.385.717.84.717 1.342 0 .618-.409 1.185-.92 1.523a6.2 6.2 0 0 1-1.498.744 7.273 7.273 0 0 1-2.211.377c-.738.002-1.25.012-1.664-.06a12.338 12.338 0 0 1-.844-.166c-.35-.067-.334-.053-.608-.15-.59-.21-.775-.29-1.377-.686-.601-.396-1.04-.972-1.04-1.604 0-.736.602-1.367 1.505-1.818zm1.498 2.9c.054.332.147.729.162 1.131.175.04.354.077.538.107.46-.227.863-.423 1.27-.62l-1.247-.538c-.003 0-.09-.015-.215-.033a9.161 9.161 0 0 0-.508-.047zm3.291.291-.869.405.022.638c.844-.032 1.631-.174 2.299-.406.02-.298.108-.59.152-.824-.145-.037-.305-.033-.693-.036-.388-.003-.91.223-.91.223zm1.85-.115c-.04.123-.082.25-.107.39-.014.074-.02.168-.028.256.267-.107.507-.227.725-.359a1.745 1.745 0 0 0-.59-.287zm-2.967.625c-.291.14-.64.306-.984.477.338.03.675.058 1.002.066l-.018-.543zm-7.904 3.959a1.459 1.459 0 0 0-.549.111c-.755.333-1.507.71-2.213 1.088.106.01.208.025.3.037.388.052.811.218 1.509.762.28.219.592.543.898.92.327.388.61.844.865 1.238.173.288.326.575.45.848.151.316.26.641.377.945.112.306.18.617.261.91.078.285.104.573.15.844.032.268.045.52.04.754-.011.449-.044.854-.168 1.215-.04.115-.092.224-.154.328a76.45 76.45 0 0 0 2.001-.941c1.25-.676 1.36-2.978.235-5.506-.88-1.978-2.652-3.574-4.002-3.553Zm14.44.666c.185.347.338.904.13 1.633-.066.172-.12.377-.215.556-.528 1.1-1.506 1.61-1.789 1.739 0 .047-.002.112-.039.463-.037.35-.063.497-.174.86-.11.365-.227.628-.384.88-.077.1-.15.257-.506.65-.436.271-1.008.453-1.313.453.17.567.445 1.027.871 1.256.671.358 1.554.239 2.452-.277.507-.292 1.013-.711 1.48-1.23.35-.405.666-.836 1.172-1.72.505-.882.814-2.064.79-3.044-.022-1.004-.384-1.783-1.054-2.14a1.478 1.478 0 0 0-.721-.163c-.248 0-.493.06-.7.084zm-.284.047c-.5.165-1.01.47-1.498.875.172.192.37.356.611.537a3.73 3.73 0 0 0 .909.502l.048-.113a3.14 3.14 0 0 0 .096-.284c.137-.48.102-.865.012-1.154a1.64 1.64 0 0 0-.178-.363zm-17.178.732a.8.8 0 0 0-.468.155c-.473.369-.779.918-.823 1.894-.043.977.211 2.185.774 3.45.503 1.13 1.298 2.135 2.138 2.784.841.65 1.727.944 2.481.6.62-.343.737-.999.758-1.877.021-.878-.241-2.098-.807-3.344-.474-1.044-1.459-2.381-2.139-2.912-.68-.53-1.04-.664-1.386-.71a2.995 2.995 0 0 0-.528-.04Zm15.475.323c-.582.582-1.084 1.197-1.45 1.796l1.444.793a3.24 3.24 0 0 0 .531-.312 3.503 3.503 0 0 0 1.065-1.192 4.335 4.335 0 0 1-.944-.539c-.356-.266-.509-.39-.646-.546zm-1.574 2.033a7.495 7.495 0 0 0-.658 1.715l1.955-1.004c-.41-.22-.87-.468-1.297-.711Zm1.42.935-2.225 1.159-.03.146c.226.053.475.128.782.291.427.227.627.39.781.53.052-.068.103-.139.153-.217.342-.548.472-1.156.523-1.586.012-.108.01-.218.016-.323z" }) + ] + } + ); +}); + +exports.default = SiOpenscad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.d.ts new file mode 100644 index 000000000..5912b1e4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F9D72C"; +declare const SiOpenscad: IconType; +export { SiOpenscad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.mjs new file mode 100644 index 000000000..605a30dd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenscad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F9D72C"; +const SiOpenscad = React.forwardRef(function SiOpenscad2({ title = "OpenSCAD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.065 2.418c-1.287.016-2.478.283-3.346.701-.895.432-1.426 1.014-1.426 1.627 0 .494.375.98.975 1.397.242-.178.493-.307.729-.422.235-.116.556-.147.976-.15.42-.004.856.09.856.09.008.001 1.498.644 1.498.644l.894-.418h.002s.592-.266 1.268-.258c.045 0 .09.003.136.006.187.013.355.038.655.107.3.07.591.239.777.39.562-.405.897-.879.897-1.364 0-.617-.501-1.203-1.364-1.639-.862-.436-2.068-.71-3.402-.71h-.125zm7.3.143c-.325-.02-.443.02-.695.13-.506.275-1.024.55-1.545.825a9.872 9.872 0 0 1 4.725 8.06c.418-.213.832-.427 1.229-.636 1.157-.844 1.234-3.073.177-5.194-.94-1.885-2.53-3.188-3.89-3.185ZM8.55 2.928a9.648 9.648 0 0 0-6.177 8.16c.425-.214.857-.424 1.294-.617l.002-.002h.002c.204-.086.418-.128.637-.133.22-.005.445.029.672.094.454.13.916.386 1.355.726.88.68 1.693 1.714 2.213 2.883.576 1.293.84 2.532.795 3.56-.045 1.029-.412 1.875-1.138 2.268l-.977.467a9.594 9.594 0 0 0 4.744 1.248 9.594 9.594 0 0 0 5.334-1.611c-.745.289-1.48.318-2.086-.006-.54-.29-.915-.833-1.082-1.541-.121-.413-.09-.715-.103-1.147.015-.475.141-.929.207-1.248.104-.434.377-1.154.775-1.865.398-.71.977-1.41 1.611-2.008.635-.598 1.253-.966 1.704-1.082.45-.116.742-.17 1.043-.174.3-.003.608.046.921.21.772.41 1.163 1.295 1.188 2.357.074-.226.108-1.16.129-1.525a9.636 9.636 0 0 0-5.123-8.516c.447.385.717.84.717 1.342 0 .618-.409 1.185-.92 1.523a6.2 6.2 0 0 1-1.498.744 7.273 7.273 0 0 1-2.211.377c-.738.002-1.25.012-1.664-.06a12.338 12.338 0 0 1-.844-.166c-.35-.067-.334-.053-.608-.15-.59-.21-.775-.29-1.377-.686-.601-.396-1.04-.972-1.04-1.604 0-.736.602-1.367 1.505-1.818zm1.498 2.9c.054.332.147.729.162 1.131.175.04.354.077.538.107.46-.227.863-.423 1.27-.62l-1.247-.538c-.003 0-.09-.015-.215-.033a9.161 9.161 0 0 0-.508-.047zm3.291.291-.869.405.022.638c.844-.032 1.631-.174 2.299-.406.02-.298.108-.59.152-.824-.145-.037-.305-.033-.693-.036-.388-.003-.91.223-.91.223zm1.85-.115c-.04.123-.082.25-.107.39-.014.074-.02.168-.028.256.267-.107.507-.227.725-.359a1.745 1.745 0 0 0-.59-.287zm-2.967.625c-.291.14-.64.306-.984.477.338.03.675.058 1.002.066l-.018-.543zm-7.904 3.959a1.459 1.459 0 0 0-.549.111c-.755.333-1.507.71-2.213 1.088.106.01.208.025.3.037.388.052.811.218 1.509.762.28.219.592.543.898.92.327.388.61.844.865 1.238.173.288.326.575.45.848.151.316.26.641.377.945.112.306.18.617.261.91.078.285.104.573.15.844.032.268.045.52.04.754-.011.449-.044.854-.168 1.215-.04.115-.092.224-.154.328a76.45 76.45 0 0 0 2.001-.941c1.25-.676 1.36-2.978.235-5.506-.88-1.978-2.652-3.574-4.002-3.553Zm14.44.666c.185.347.338.904.13 1.633-.066.172-.12.377-.215.556-.528 1.1-1.506 1.61-1.789 1.739 0 .047-.002.112-.039.463-.037.35-.063.497-.174.86-.11.365-.227.628-.384.88-.077.1-.15.257-.506.65-.436.271-1.008.453-1.313.453.17.567.445 1.027.871 1.256.671.358 1.554.239 2.452-.277.507-.292 1.013-.711 1.48-1.23.35-.405.666-.836 1.172-1.72.505-.882.814-2.064.79-3.044-.022-1.004-.384-1.783-1.054-2.14a1.478 1.478 0 0 0-.721-.163c-.248 0-.493.06-.7.084zm-.284.047c-.5.165-1.01.47-1.498.875.172.192.37.356.611.537a3.73 3.73 0 0 0 .909.502l.048-.113a3.14 3.14 0 0 0 .096-.284c.137-.48.102-.865.012-1.154a1.64 1.64 0 0 0-.178-.363zm-17.178.732a.8.8 0 0 0-.468.155c-.473.369-.779.918-.823 1.894-.043.977.211 2.185.774 3.45.503 1.13 1.298 2.135 2.138 2.784.841.65 1.727.944 2.481.6.62-.343.737-.999.758-1.877.021-.878-.241-2.098-.807-3.344-.474-1.044-1.459-2.381-2.139-2.912-.68-.53-1.04-.664-1.386-.71a2.995 2.995 0 0 0-.528-.04Zm15.475.323c-.582.582-1.084 1.197-1.45 1.796l1.444.793a3.24 3.24 0 0 0 .531-.312 3.503 3.503 0 0 0 1.065-1.192 4.335 4.335 0 0 1-.944-.539c-.356-.266-.509-.39-.646-.546zm-1.574 2.033a7.495 7.495 0 0 0-.658 1.715l1.955-1.004c-.41-.22-.87-.468-1.297-.711Zm1.42.935-2.225 1.159-.03.146c.226.053.475.128.782.291.427.227.627.39.781.53.052-.068.103-.139.153-.217.342-.548.472-1.156.523-1.586.012-.108.01-.218.016-.323z" }) + ] + } + ); +}); + +export { SiOpenscad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.cjs new file mode 100644 index 000000000..3ab5a0400 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2081E2"; +const SiOpensea = React__namespace.forwardRef(function SiOpensea2({ title = "OpenSea", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.374 0 0 5.374 0 12s5.374 12 12 12 12-5.374 12-12S18.629 0 12 0ZM5.92 12.403l.051-.081 3.123-4.884a.107.107 0 0 1 .187.014c.52 1.169.972 2.623.76 3.528-.088.372-.335.876-.614 1.342a2.405 2.405 0 0 1-.117.199.106.106 0 0 1-.09.045H6.013a.106.106 0 0 1-.091-.163zm13.914 1.68a.109.109 0 0 1-.065.101c-.243.103-1.07.485-1.414.962-.878 1.222-1.548 2.97-3.048 2.97H9.053a4.019 4.019 0 0 1-4.013-4.028v-.072c0-.058.048-.106.108-.106h3.485c.07 0 .12.063.115.132-.026.226.017.459.125.67.206.42.636.682 1.099.682h1.726v-1.347H9.99a.11.11 0 0 1-.089-.173l.063-.09c.16-.231.391-.586.621-.992.156-.274.308-.566.43-.86.024-.052.043-.107.065-.16.033-.094.067-.182.091-.269a4.57 4.57 0 0 0 .065-.223c.057-.25.081-.514.081-.787 0-.108-.004-.221-.014-.327-.005-.117-.02-.235-.034-.352a3.415 3.415 0 0 0-.048-.312 6.494 6.494 0 0 0-.098-.468l-.014-.06c-.03-.108-.056-.21-.09-.317a11.824 11.824 0 0 0-.328-.972 5.212 5.212 0 0 0-.142-.355c-.072-.178-.146-.339-.213-.49a3.564 3.564 0 0 1-.094-.197 4.658 4.658 0 0 0-.103-.213c-.024-.053-.053-.104-.072-.152l-.211-.388c-.029-.053.019-.118.077-.101l1.32.357h.01l.173.05.192.054.07.019v-.783c0-.379.302-.686.679-.686a.66.66 0 0 1 .477.202.69.69 0 0 1 .2.484V6.65l.141.039c.01.005.022.01.031.017.034.024.084.062.147.11.05.038.103.086.165.137a10.351 10.351 0 0 1 .574.504c.214.199.454.432.684.691.065.074.127.146.192.226.062.079.132.156.19.232.079.104.16.212.235.324.033.053.074.108.105.161.096.142.178.288.257.435.034.067.067.141.096.213.089.197.159.396.202.598a.65.65 0 0 1 .029.132v.01c.014.057.019.12.024.184a2.057 2.057 0 0 1-.106.874c-.031.084-.06.17-.098.254-.075.17-.161.343-.264.502-.034.06-.075.122-.113.182-.043.063-.089.123-.127.18a3.89 3.89 0 0 1-.173.221c-.053.072-.106.144-.166.209-.081.098-.16.19-.245.278-.048.058-.1.118-.156.17-.052.06-.108.113-.156.161-.084.084-.15.147-.208.202l-.137.122a.102.102 0 0 1-.072.03h-1.051v1.346h1.322c.295 0 .576-.104.804-.298.077-.067.415-.36.816-.802a.094.094 0 0 1 .05-.03l3.65-1.057a.108.108 0 0 1 .138.103z" }) + ] + } + ); +}); + +exports.default = SiOpensea; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.d.ts new file mode 100644 index 000000000..f76ac5022 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2081E2"; +declare const SiOpensea: IconType; +export { SiOpensea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.mjs new file mode 100644 index 000000000..17736aebd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensea.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2081E2"; +const SiOpensea = React.forwardRef(function SiOpensea2({ title = "OpenSea", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.374 0 0 5.374 0 12s5.374 12 12 12 12-5.374 12-12S18.629 0 12 0ZM5.92 12.403l.051-.081 3.123-4.884a.107.107 0 0 1 .187.014c.52 1.169.972 2.623.76 3.528-.088.372-.335.876-.614 1.342a2.405 2.405 0 0 1-.117.199.106.106 0 0 1-.09.045H6.013a.106.106 0 0 1-.091-.163zm13.914 1.68a.109.109 0 0 1-.065.101c-.243.103-1.07.485-1.414.962-.878 1.222-1.548 2.97-3.048 2.97H9.053a4.019 4.019 0 0 1-4.013-4.028v-.072c0-.058.048-.106.108-.106h3.485c.07 0 .12.063.115.132-.026.226.017.459.125.67.206.42.636.682 1.099.682h1.726v-1.347H9.99a.11.11 0 0 1-.089-.173l.063-.09c.16-.231.391-.586.621-.992.156-.274.308-.566.43-.86.024-.052.043-.107.065-.16.033-.094.067-.182.091-.269a4.57 4.57 0 0 0 .065-.223c.057-.25.081-.514.081-.787 0-.108-.004-.221-.014-.327-.005-.117-.02-.235-.034-.352a3.415 3.415 0 0 0-.048-.312 6.494 6.494 0 0 0-.098-.468l-.014-.06c-.03-.108-.056-.21-.09-.317a11.824 11.824 0 0 0-.328-.972 5.212 5.212 0 0 0-.142-.355c-.072-.178-.146-.339-.213-.49a3.564 3.564 0 0 1-.094-.197 4.658 4.658 0 0 0-.103-.213c-.024-.053-.053-.104-.072-.152l-.211-.388c-.029-.053.019-.118.077-.101l1.32.357h.01l.173.05.192.054.07.019v-.783c0-.379.302-.686.679-.686a.66.66 0 0 1 .477.202.69.69 0 0 1 .2.484V6.65l.141.039c.01.005.022.01.031.017.034.024.084.062.147.11.05.038.103.086.165.137a10.351 10.351 0 0 1 .574.504c.214.199.454.432.684.691.065.074.127.146.192.226.062.079.132.156.19.232.079.104.16.212.235.324.033.053.074.108.105.161.096.142.178.288.257.435.034.067.067.141.096.213.089.197.159.396.202.598a.65.65 0 0 1 .029.132v.01c.014.057.019.12.024.184a2.057 2.057 0 0 1-.106.874c-.031.084-.06.17-.098.254-.075.17-.161.343-.264.502-.034.06-.075.122-.113.182-.043.063-.089.123-.127.18a3.89 3.89 0 0 1-.173.221c-.053.072-.106.144-.166.209-.081.098-.16.19-.245.278-.048.058-.1.118-.156.17-.052.06-.108.113-.156.161-.084.084-.15.147-.208.202l-.137.122a.102.102 0 0 1-.072.03h-1.051v1.346h1.322c.295 0 .576-.104.804-.298.077-.067.415-.36.816-.802a.094.094 0 0 1 .05-.03l3.65-1.057a.108.108 0 0 1 .138.103z" }) + ] + } + ); +}); + +export { SiOpensea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.cjs new file mode 100644 index 000000000..8dfb74963 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005EB8"; +const SiOpensearch = React__namespace.forwardRef(function SiOpensearch2({ title = "OpenSearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.1515 8.8125a.8484.8484 0 0 0-.8484.8485c0 6.982-5.6601 12.6421-12.6421 12.6421a.8485.8485 0 0 0 0 1.6969C17.5802 24 24 17.5802 24 9.661a.8485.8485 0 0 0-.8485-.8485Zm-5.121 5.4375c.816-1.3311 1.6051-3.1058 1.4498-5.5905-.3216-5.1468-4.9832-9.0512-9.3851-8.6281C8.372.1971 6.6025 1.6017 6.7598 4.1177c.0683 1.0934.6034 1.7386 1.473 2.2348.8279.4722 1.8914.7713 3.097 1.1104 1.4563.4096 3.1455.8697 4.4438 1.8265 1.5561 1.1467 2.6198 2.4759 2.2569 4.9606Zm-16.561-9C.6535 6.581-.1355 8.3558.0197 10.8405c.3216 5.1468 4.9832 9.0512 9.385 8.6281 1.7233-.1657 3.4927-1.5703 3.3355-4.0863-.0683-1.0934-.6034-1.7386-1.4731-2.2348-.8278-.4722-1.8913-.7713-3.0969-1.1104-1.4563-.4096-3.1455-.8697-4.4438-1.8265-1.5561-1.1467-2.6198-2.476-2.257-4.9606Z" }) + ] + } + ); +}); + +exports.default = SiOpensearch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.d.ts new file mode 100644 index 000000000..30be17f3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005EB8"; +declare const SiOpensearch: IconType; +export { SiOpensearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.mjs new file mode 100644 index 000000000..a9cff26b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensearch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005EB8"; +const SiOpensearch = React.forwardRef(function SiOpensearch2({ title = "OpenSearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.1515 8.8125a.8484.8484 0 0 0-.8484.8485c0 6.982-5.6601 12.6421-12.6421 12.6421a.8485.8485 0 0 0 0 1.6969C17.5802 24 24 17.5802 24 9.661a.8485.8485 0 0 0-.8485-.8485Zm-5.121 5.4375c.816-1.3311 1.6051-3.1058 1.4498-5.5905-.3216-5.1468-4.9832-9.0512-9.3851-8.6281C8.372.1971 6.6025 1.6017 6.7598 4.1177c.0683 1.0934.6034 1.7386 1.473 2.2348.8279.4722 1.8914.7713 3.097 1.1104 1.4563.4096 3.1455.8697 4.4438 1.8265 1.5561 1.1467 2.6198 2.4759 2.2569 4.9606Zm-16.561-9C.6535 6.581-.1355 8.3558.0197 10.8405c.3216 5.1468 4.9832 9.0512 9.385 8.6281 1.7233-.1657 3.4927-1.5703 3.3355-4.0863-.0683-1.0934-.6034-1.7386-1.4731-2.2348-.8278-.4722-1.8913-.7713-3.0969-1.1104-1.4563-.4096-3.1455-.8697-4.4438-1.8265-1.5561-1.1467-2.6198-2.476-2.257-4.9606Z" }) + ] + } + ); +}); + +export { SiOpensearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.cjs new file mode 100644 index 000000000..b7ebb1353 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0099B0"; +const SiOpensourcehardware = React__namespace.forwardRef(function SiOpensourcehardware2({ title = "Open Source Hardware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.87 11.525c.071.013.13.084.13.157v3.033a.166.166 0 0 1-.13.157l-2.875.535a.243.243 0 0 0-.17.151l-.898 2.242a.252.252 0 0 0 .017.229l1.633 2.379a.167.167 0 0 1-.02.204l-2.144 2.144a.167.167 0 0 1-.203.019l-2.338-1.604a.23.23 0 0 0-.224-.008l-1.03.55a.121.121 0 0 1-.17-.062l-2.125-5.135a.161.161 0 0 1 .062-.192l.258-.158c.048-.03.113-.08.163-.125a3.354 3.354 0 1 0-3.612 0c.05.046.115.096.163.125l.258.158a.16.16 0 0 1 .062.192L8.552 21.65a.121.121 0 0 1-.17.063l-1.03-.55a.23.23 0 0 0-.224.007L4.79 22.775a.168.168 0 0 1-.204-.019l-2.145-2.144a.167.167 0 0 1-.019-.204l1.633-2.38a.251.251 0 0 0 .017-.228l-.897-2.242a.244.244 0 0 0-.17-.15L.13 14.871a.166.166 0 0 1-.13-.157v-3.032c0-.073.059-.144.13-.157l2.947-.548a.253.253 0 0 0 .175-.15l.903-2.108a.246.246 0 0 0-.014-.227L2.424 5.989a.167.167 0 0 1 .019-.203L4.587 3.64a.166.166 0 0 1 .204-.019L7.337 5.37c.06.041.163.048.229.016l2.043-.836c.07-.023.137-.1.15-.173l.567-3.047a.167.167 0 0 1 .157-.131h3.034c.073 0 .143.059.157.13l.567 3.048a.25.25 0 0 0 .15.173l2.043.836a.252.252 0 0 0 .23-.016l2.546-1.748a.166.166 0 0 1 .203.02l2.144 2.144c.052.051.06.143.02.203l-1.718 2.503a.245.245 0 0 0-.014.227l.903 2.108a.256.256 0 0 0 .175.15l2.946.548" }) + ] + } + ); +}); + +exports.default = SiOpensourcehardware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.d.ts new file mode 100644 index 000000000..a1ca27f67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0099B0"; +declare const SiOpensourcehardware: IconType; +export { SiOpensourcehardware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.mjs new file mode 100644 index 000000000..6f35fa0a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourcehardware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0099B0"; +const SiOpensourcehardware = React.forwardRef(function SiOpensourcehardware2({ title = "Open Source Hardware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.87 11.525c.071.013.13.084.13.157v3.033a.166.166 0 0 1-.13.157l-2.875.535a.243.243 0 0 0-.17.151l-.898 2.242a.252.252 0 0 0 .017.229l1.633 2.379a.167.167 0 0 1-.02.204l-2.144 2.144a.167.167 0 0 1-.203.019l-2.338-1.604a.23.23 0 0 0-.224-.008l-1.03.55a.121.121 0 0 1-.17-.062l-2.125-5.135a.161.161 0 0 1 .062-.192l.258-.158c.048-.03.113-.08.163-.125a3.354 3.354 0 1 0-3.612 0c.05.046.115.096.163.125l.258.158a.16.16 0 0 1 .062.192L8.552 21.65a.121.121 0 0 1-.17.063l-1.03-.55a.23.23 0 0 0-.224.007L4.79 22.775a.168.168 0 0 1-.204-.019l-2.145-2.144a.167.167 0 0 1-.019-.204l1.633-2.38a.251.251 0 0 0 .017-.228l-.897-2.242a.244.244 0 0 0-.17-.15L.13 14.871a.166.166 0 0 1-.13-.157v-3.032c0-.073.059-.144.13-.157l2.947-.548a.253.253 0 0 0 .175-.15l.903-2.108a.246.246 0 0 0-.014-.227L2.424 5.989a.167.167 0 0 1 .019-.203L4.587 3.64a.166.166 0 0 1 .204-.019L7.337 5.37c.06.041.163.048.229.016l2.043-.836c.07-.023.137-.1.15-.173l.567-3.047a.167.167 0 0 1 .157-.131h3.034c.073 0 .143.059.157.13l.567 3.048a.25.25 0 0 0 .15.173l2.043.836a.252.252 0 0 0 .23-.016l2.546-1.748a.166.166 0 0 1 .203.02l2.144 2.144c.052.051.06.143.02.203l-1.718 2.503a.245.245 0 0 0-.014.227l.903 2.108a.256.256 0 0 0 .175.15l2.946.548" }) + ] + } + ); +}); + +export { SiOpensourcehardware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.cjs new file mode 100644 index 000000000..77eb03c07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DA639"; +const SiOpensourceinitiative = React__namespace.forwardRef(function SiOpensourceinitiative2({ title = "Open Source Initiative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.959.447A11.938 11.938 0 000 12.407c0 5.576 3.874 10.097 7.783 11.114.193.05.392-.05.467-.234l2.771-6.822a.396.396 0 00-.246-.528C9.365 15.47 8.53 14.32 8.48 12.4c-.024-1.828 1.5-3.45 3.561-3.447 1.931.003 3.479 1.632 3.479 3.453 0 .966-.203 1.687-.575 2.238-.371.552-.922.951-1.695 1.239a.396.396 0 00-.23.515l2.685 6.903a.396.396 0 00.465.24C20.163 22.534 24 18.062 24 12.406 24 5.804 18.603.447 11.959.447zm0 .791c6.22 0 11.25 4.997 11.25 11.168 0 5.138-3.423 9.208-6.895 10.272L13.9 16.47c.703-.308 1.302-.79 1.702-1.384.477-.708.709-1.602.709-2.68 0-2.266-1.898-4.24-4.27-4.244-2.48-.004-4.382 1.976-4.352 4.25.023 1.995.934 3.492 2.451 4.13L7.648 22.66C4.251 21.592.791 17.458.791 12.406A11.13 11.13 0 0111.959 1.238zm10.617 20.149a1.03 1.03 0 000 2.058 1.03 1.03 0 000-2.058zm0 .162c.48 0 .865.388.865.867a.856.856 0 01-.271.623l-.172-.342a.847.847 0 00-.111-.178.263.263 0 00-.114-.084.301.301 0 00.17-.117.356.356 0 00.061-.21c0-.13-.038-.227-.113-.292-.076-.064-.192-.095-.346-.095h-.41v1.343h.181v-.568h.2c.072 0 .128.015.17.045a.48.48 0 01.129.18l.171.343.157.001a.878.878 0 01-.567.216.865.865 0 010-1.732zm-.26.322h.229c.088 0 .155.018.2.059.044.04.066.099.066.177 0 .079-.022.14-.067.18-.044.04-.111.06-.2.06h-.228z" }) + ] + } + ); +}); + +exports.default = SiOpensourceinitiative; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.d.ts new file mode 100644 index 000000000..5ce008096 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DA639"; +declare const SiOpensourceinitiative: IconType; +export { SiOpensourceinitiative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.mjs new file mode 100644 index 000000000..b6f990b7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensourceinitiative.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DA639"; +const SiOpensourceinitiative = React.forwardRef(function SiOpensourceinitiative2({ title = "Open Source Initiative", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.959.447A11.938 11.938 0 000 12.407c0 5.576 3.874 10.097 7.783 11.114.193.05.392-.05.467-.234l2.771-6.822a.396.396 0 00-.246-.528C9.365 15.47 8.53 14.32 8.48 12.4c-.024-1.828 1.5-3.45 3.561-3.447 1.931.003 3.479 1.632 3.479 3.453 0 .966-.203 1.687-.575 2.238-.371.552-.922.951-1.695 1.239a.396.396 0 00-.23.515l2.685 6.903a.396.396 0 00.465.24C20.163 22.534 24 18.062 24 12.406 24 5.804 18.603.447 11.959.447zm0 .791c6.22 0 11.25 4.997 11.25 11.168 0 5.138-3.423 9.208-6.895 10.272L13.9 16.47c.703-.308 1.302-.79 1.702-1.384.477-.708.709-1.602.709-2.68 0-2.266-1.898-4.24-4.27-4.244-2.48-.004-4.382 1.976-4.352 4.25.023 1.995.934 3.492 2.451 4.13L7.648 22.66C4.251 21.592.791 17.458.791 12.406A11.13 11.13 0 0111.959 1.238zm10.617 20.149a1.03 1.03 0 000 2.058 1.03 1.03 0 000-2.058zm0 .162c.48 0 .865.388.865.867a.856.856 0 01-.271.623l-.172-.342a.847.847 0 00-.111-.178.263.263 0 00-.114-.084.301.301 0 00.17-.117.356.356 0 00.061-.21c0-.13-.038-.227-.113-.292-.076-.064-.192-.095-.346-.095h-.41v1.343h.181v-.568h.2c.072 0 .128.015.17.045a.48.48 0 01.129.18l.171.343.157.001a.878.878 0 01-.567.216.865.865 0 010-1.732zm-.26.322h.229c.088 0 .155.018.2.059.044.04.066.099.066.177 0 .079-.022.14-.067.18-.044.04-.111.06-.2.06h-.228z" }) + ] + } + ); +}); + +export { SiOpensourceinitiative as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.cjs new file mode 100644 index 000000000..b466f20d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#721412"; +const SiOpenssl = React__namespace.forwardRef(function SiOpenssl2({ title = "OpenSSL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.961,13.532c-0.303,0-0.575-0.052-0.818-0.157c-0.243-0.105-0.448-0.25-0.616-0.437 c-0.168-0.187-0.298-0.408-0.389-0.664C0.046,12.018,0,11.741,0,11.442c0-0.299,0.046-0.576,0.137-0.832 c0.091-0.256,0.221-0.477,0.389-0.664C0.695,9.759,0.9,9.613,1.143,9.508c0.243-0.105,0.516-0.157,0.818-0.157 c0.303,0,0.575,0.052,0.818,0.157c0.243,0.105,0.448,0.25,0.616,0.437c0.168,0.187,0.298,0.408,0.389,0.664 c0.091,0.256,0.137,0.533,0.137,0.832c0,0.299-0.046,0.576-0.137,0.832c-0.092,0.256-0.221,0.477-0.389,0.664 c-0.168,0.187-0.374,0.333-0.616,0.437C2.536,13.479,2.264,13.532,1.961,13.532z M1.961,13.089c0.235,0,0.443-0.042,0.622-0.126 s0.331-0.199,0.454-0.345c0.123-0.146,0.216-0.319,0.277-0.521c0.062-0.202,0.092-0.42,0.092-0.656 c0-0.235-0.031-0.454-0.092-0.656c-0.062-0.202-0.154-0.376-0.277-0.524c-0.123-0.148-0.275-0.263-0.454-0.347 S2.197,9.789,1.961,9.789c-0.235,0-0.443,0.042-0.622,0.126c-0.179,0.084-0.331,0.2-0.454,0.347 c-0.123,0.148-0.216,0.322-0.277,0.524c-0.062,0.202-0.092,0.42-0.092,0.656c0,0.235,0.031,0.454,0.092,0.656 c0.062,0.202,0.154,0.375,0.277,0.521c0.123,0.146,0.275,0.261,0.454,0.345C1.519,13.047,1.726,13.089,1.961,13.089z M4.455,10.551 h0.454v0.409H4.92c0.108-0.149,0.237-0.266,0.387-0.35c0.149-0.084,0.331-0.126,0.544-0.126c0.183,0,0.351,0.035,0.504,0.104 c0.153,0.069,0.284,0.168,0.392,0.297c0.108,0.129,0.193,0.289,0.255,0.479c0.062,0.191,0.092,0.405,0.092,0.644 c0,0.232-0.029,0.442-0.087,0.63c-0.058,0.189-0.141,0.349-0.249,0.482c-0.108,0.133-0.241,0.234-0.398,0.305 c-0.157,0.071-0.333,0.106-0.527,0.106c-0.198,0-0.37-0.032-0.516-0.095c-0.146-0.063-0.278-0.174-0.398-0.331H4.909v1.557H4.455 V10.551z M5.8,13.151c0.138,0,0.26-0.029,0.364-0.087c0.105-0.058,0.191-0.137,0.261-0.238c0.069-0.101,0.12-0.22,0.154-0.359 c0.034-0.138,0.05-0.289,0.05-0.454c0-0.161-0.017-0.311-0.05-0.451c-0.034-0.14-0.085-0.261-0.154-0.364 c-0.069-0.103-0.155-0.183-0.258-0.241c-0.103-0.058-0.223-0.087-0.361-0.087c-0.157,0-0.294,0.03-0.412,0.09 c-0.118,0.06-0.214,0.142-0.289,0.247c-0.075,0.105-0.131,0.226-0.168,0.364c-0.037,0.138-0.056,0.286-0.056,0.443 c0,0.157,0.017,0.305,0.05,0.443c0.034,0.138,0.087,0.259,0.16,0.361c0.073,0.103,0.167,0.184,0.283,0.244 C5.49,13.121,5.632,13.151,5.8,13.151z M8.837,13.526c-0.22,0-0.417-0.04-0.591-0.12c-0.174-0.08-0.32-0.19-0.44-0.328 c-0.12-0.138-0.211-0.3-0.275-0.485c-0.064-0.185-0.095-0.382-0.095-0.591c0-0.209,0.033-0.406,0.098-0.591 c0.065-0.185,0.159-0.346,0.28-0.485c0.121-0.138,0.266-0.247,0.434-0.328c0.168-0.08,0.355-0.12,0.56-0.12 c0.217,0,0.408,0.04,0.574,0.12c0.166,0.08,0.305,0.192,0.417,0.336c0.112,0.144,0.197,0.316,0.255,0.516 c0.058,0.2,0.087,0.419,0.087,0.658H7.901c0.007,0.146,0.034,0.282,0.078,0.409c0.045,0.127,0.106,0.237,0.185,0.331 c0.078,0.093,0.174,0.166,0.286,0.219c0.112,0.052,0.241,0.078,0.387,0.078c0.213,0,0.387-0.049,0.521-0.148 c0.134-0.099,0.228-0.247,0.28-0.445h0.443c-0.067,0.314-0.209,0.555-0.426,0.723C9.438,13.442,9.165,13.526,8.837,13.526z M8.809,10.837c-0.134,0-0.254,0.023-0.359,0.07c-0.105,0.047-0.193,0.112-0.266,0.196c-0.073,0.084-0.133,0.183-0.179,0.297 c-0.047,0.114-0.078,0.236-0.092,0.367h1.743c-0.015-0.291-0.094-0.519-0.238-0.684C9.273,10.919,9.07,10.837,8.809,10.837z M11.12,10.932h0.011c0.105-0.138,0.231-0.247,0.378-0.328c0.148-0.08,0.328-0.12,0.541-0.12c0.303,0,0.541,0.079,0.714,0.238 c0.174,0.159,0.261,0.389,0.261,0.692v2.034h-0.454v-1.995c0-0.191-0.058-0.336-0.174-0.437c-0.116-0.101-0.276-0.151-0.482-0.151 c-0.116,0-0.222,0.02-0.319,0.059c-0.097,0.039-0.181,0.093-0.252,0.163c-0.071,0.069-0.126,0.153-0.165,0.252 c-0.039,0.099-0.059,0.208-0.059,0.328v1.782h-0.454v-2.897h0.454V10.932z M15.409,13.53c-0.549,0-0.972-0.116-1.271-0.347 c-0.299-0.231-0.456-0.561-0.47-0.989h0.8c0.03,0.244,0.116,0.418,0.259,0.521c0.143,0.103,0.359,0.155,0.648,0.155 c0.105,0,0.205-0.009,0.299-0.028c0.094-0.019,0.177-0.049,0.248-0.09c0.071-0.041,0.129-0.095,0.172-0.161 c0.043-0.066,0.065-0.146,0.065-0.24c0-0.098-0.024-0.178-0.07-0.242c-0.047-0.064-0.114-0.117-0.2-0.161 c-0.086-0.043-0.191-0.081-0.313-0.113c-0.122-0.032-0.26-0.065-0.414-0.099c-0.18-0.041-0.354-0.087-0.521-0.138 c-0.167-0.051-0.314-0.119-0.44-0.206c-0.126-0.086-0.227-0.197-0.304-0.332c-0.077-0.135-0.116-0.308-0.116-0.518 c0-0.199,0.038-0.374,0.116-0.524c0.077-0.15,0.184-0.276,0.321-0.378c0.137-0.101,0.3-0.178,0.487-0.228 c0.188-0.051,0.394-0.076,0.62-0.076c0.454,0,0.82,0.107,1.096,0.321c0.276,0.214,0.429,0.526,0.459,0.935h-0.783 c-0.023-0.203-0.105-0.355-0.248-0.456c-0.143-0.101-0.319-0.152-0.53-0.152c-0.222,0-0.398,0.043-0.53,0.13 c-0.132,0.086-0.197,0.201-0.197,0.344c0,0.083,0.018,0.151,0.054,0.206c0.036,0.055,0.09,0.102,0.163,0.144 c0.073,0.041,0.164,0.077,0.273,0.107c0.109,0.03,0.238,0.062,0.389,0.096c0.207,0.045,0.401,0.095,0.583,0.149 c0.182,0.055,0.342,0.127,0.479,0.217c0.137,0.09,0.245,0.205,0.324,0.344c0.079,0.139,0.118,0.318,0.118,0.535 c0,0.203-0.039,0.384-0.118,0.544c-0.079,0.16-0.188,0.293-0.327,0.4c-0.139,0.107-0.304,0.189-0.496,0.245 C15.843,13.501,15.635,13.53,15.409,13.53z M19.168,13.53c-0.549,0-0.972-0.116-1.271-0.347s-0.456-0.561-0.47-0.989h0.8 c0.03,0.244,0.116,0.418,0.259,0.521c0.143,0.103,0.359,0.155,0.648,0.155c0.105,0,0.205-0.009,0.299-0.028 c0.094-0.019,0.177-0.049,0.248-0.09c0.071-0.041,0.129-0.095,0.172-0.161c0.043-0.066,0.065-0.146,0.065-0.24 c0-0.098-0.024-0.178-0.07-0.242c-0.047-0.064-0.114-0.117-0.2-0.161c-0.086-0.043-0.191-0.081-0.313-0.113 c-0.122-0.032-0.26-0.065-0.414-0.099c-0.18-0.041-0.354-0.087-0.521-0.138c-0.167-0.051-0.314-0.119-0.44-0.206 c-0.126-0.086-0.227-0.197-0.304-0.332c-0.077-0.135-0.116-0.308-0.116-0.518c0-0.199,0.038-0.374,0.116-0.524 c0.077-0.15,0.184-0.276,0.321-0.378c0.137-0.101,0.3-0.178,0.487-0.228c0.188-0.051,0.394-0.076,0.62-0.076 c0.454,0,0.82,0.107,1.096,0.321c0.276,0.214,0.429,0.526,0.459,0.935h-0.783c-0.023-0.203-0.105-0.355-0.248-0.456 c-0.143-0.101-0.319-0.152-0.53-0.152c-0.222,0-0.398,0.043-0.53,0.13c-0.132,0.086-0.197,0.201-0.197,0.344 c0,0.083,0.018,0.151,0.054,0.206c0.036,0.055,0.09,0.102,0.163,0.144c0.073,0.041,0.164,0.077,0.273,0.107 c0.109,0.03,0.238,0.062,0.389,0.096c0.207,0.045,0.401,0.095,0.583,0.149c0.182,0.055,0.342,0.127,0.479,0.217 c0.137,0.09,0.245,0.205,0.324,0.344c0.079,0.139,0.118,0.318,0.118,0.535c0,0.203-0.039,0.384-0.118,0.544 c-0.079,0.16-0.188,0.293-0.327,0.4c-0.139,0.107-0.304,0.189-0.496,0.245C19.602,13.501,19.393,13.53,19.168,13.53z M21.29,9.41 h0.817v3.347H24v0.682h-2.71V9.41z" }) + ] + } + ); +}); + +exports.default = SiOpenssl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.d.ts new file mode 100644 index 000000000..d942ae1f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#721412"; +declare const SiOpenssl: IconType; +export { SiOpenssl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.mjs new file mode 100644 index 000000000..23da53134 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenssl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#721412"; +const SiOpenssl = React.forwardRef(function SiOpenssl2({ title = "OpenSSL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.961,13.532c-0.303,0-0.575-0.052-0.818-0.157c-0.243-0.105-0.448-0.25-0.616-0.437 c-0.168-0.187-0.298-0.408-0.389-0.664C0.046,12.018,0,11.741,0,11.442c0-0.299,0.046-0.576,0.137-0.832 c0.091-0.256,0.221-0.477,0.389-0.664C0.695,9.759,0.9,9.613,1.143,9.508c0.243-0.105,0.516-0.157,0.818-0.157 c0.303,0,0.575,0.052,0.818,0.157c0.243,0.105,0.448,0.25,0.616,0.437c0.168,0.187,0.298,0.408,0.389,0.664 c0.091,0.256,0.137,0.533,0.137,0.832c0,0.299-0.046,0.576-0.137,0.832c-0.092,0.256-0.221,0.477-0.389,0.664 c-0.168,0.187-0.374,0.333-0.616,0.437C2.536,13.479,2.264,13.532,1.961,13.532z M1.961,13.089c0.235,0,0.443-0.042,0.622-0.126 s0.331-0.199,0.454-0.345c0.123-0.146,0.216-0.319,0.277-0.521c0.062-0.202,0.092-0.42,0.092-0.656 c0-0.235-0.031-0.454-0.092-0.656c-0.062-0.202-0.154-0.376-0.277-0.524c-0.123-0.148-0.275-0.263-0.454-0.347 S2.197,9.789,1.961,9.789c-0.235,0-0.443,0.042-0.622,0.126c-0.179,0.084-0.331,0.2-0.454,0.347 c-0.123,0.148-0.216,0.322-0.277,0.524c-0.062,0.202-0.092,0.42-0.092,0.656c0,0.235,0.031,0.454,0.092,0.656 c0.062,0.202,0.154,0.375,0.277,0.521c0.123,0.146,0.275,0.261,0.454,0.345C1.519,13.047,1.726,13.089,1.961,13.089z M4.455,10.551 h0.454v0.409H4.92c0.108-0.149,0.237-0.266,0.387-0.35c0.149-0.084,0.331-0.126,0.544-0.126c0.183,0,0.351,0.035,0.504,0.104 c0.153,0.069,0.284,0.168,0.392,0.297c0.108,0.129,0.193,0.289,0.255,0.479c0.062,0.191,0.092,0.405,0.092,0.644 c0,0.232-0.029,0.442-0.087,0.63c-0.058,0.189-0.141,0.349-0.249,0.482c-0.108,0.133-0.241,0.234-0.398,0.305 c-0.157,0.071-0.333,0.106-0.527,0.106c-0.198,0-0.37-0.032-0.516-0.095c-0.146-0.063-0.278-0.174-0.398-0.331H4.909v1.557H4.455 V10.551z M5.8,13.151c0.138,0,0.26-0.029,0.364-0.087c0.105-0.058,0.191-0.137,0.261-0.238c0.069-0.101,0.12-0.22,0.154-0.359 c0.034-0.138,0.05-0.289,0.05-0.454c0-0.161-0.017-0.311-0.05-0.451c-0.034-0.14-0.085-0.261-0.154-0.364 c-0.069-0.103-0.155-0.183-0.258-0.241c-0.103-0.058-0.223-0.087-0.361-0.087c-0.157,0-0.294,0.03-0.412,0.09 c-0.118,0.06-0.214,0.142-0.289,0.247c-0.075,0.105-0.131,0.226-0.168,0.364c-0.037,0.138-0.056,0.286-0.056,0.443 c0,0.157,0.017,0.305,0.05,0.443c0.034,0.138,0.087,0.259,0.16,0.361c0.073,0.103,0.167,0.184,0.283,0.244 C5.49,13.121,5.632,13.151,5.8,13.151z M8.837,13.526c-0.22,0-0.417-0.04-0.591-0.12c-0.174-0.08-0.32-0.19-0.44-0.328 c-0.12-0.138-0.211-0.3-0.275-0.485c-0.064-0.185-0.095-0.382-0.095-0.591c0-0.209,0.033-0.406,0.098-0.591 c0.065-0.185,0.159-0.346,0.28-0.485c0.121-0.138,0.266-0.247,0.434-0.328c0.168-0.08,0.355-0.12,0.56-0.12 c0.217,0,0.408,0.04,0.574,0.12c0.166,0.08,0.305,0.192,0.417,0.336c0.112,0.144,0.197,0.316,0.255,0.516 c0.058,0.2,0.087,0.419,0.087,0.658H7.901c0.007,0.146,0.034,0.282,0.078,0.409c0.045,0.127,0.106,0.237,0.185,0.331 c0.078,0.093,0.174,0.166,0.286,0.219c0.112,0.052,0.241,0.078,0.387,0.078c0.213,0,0.387-0.049,0.521-0.148 c0.134-0.099,0.228-0.247,0.28-0.445h0.443c-0.067,0.314-0.209,0.555-0.426,0.723C9.438,13.442,9.165,13.526,8.837,13.526z M8.809,10.837c-0.134,0-0.254,0.023-0.359,0.07c-0.105,0.047-0.193,0.112-0.266,0.196c-0.073,0.084-0.133,0.183-0.179,0.297 c-0.047,0.114-0.078,0.236-0.092,0.367h1.743c-0.015-0.291-0.094-0.519-0.238-0.684C9.273,10.919,9.07,10.837,8.809,10.837z M11.12,10.932h0.011c0.105-0.138,0.231-0.247,0.378-0.328c0.148-0.08,0.328-0.12,0.541-0.12c0.303,0,0.541,0.079,0.714,0.238 c0.174,0.159,0.261,0.389,0.261,0.692v2.034h-0.454v-1.995c0-0.191-0.058-0.336-0.174-0.437c-0.116-0.101-0.276-0.151-0.482-0.151 c-0.116,0-0.222,0.02-0.319,0.059c-0.097,0.039-0.181,0.093-0.252,0.163c-0.071,0.069-0.126,0.153-0.165,0.252 c-0.039,0.099-0.059,0.208-0.059,0.328v1.782h-0.454v-2.897h0.454V10.932z M15.409,13.53c-0.549,0-0.972-0.116-1.271-0.347 c-0.299-0.231-0.456-0.561-0.47-0.989h0.8c0.03,0.244,0.116,0.418,0.259,0.521c0.143,0.103,0.359,0.155,0.648,0.155 c0.105,0,0.205-0.009,0.299-0.028c0.094-0.019,0.177-0.049,0.248-0.09c0.071-0.041,0.129-0.095,0.172-0.161 c0.043-0.066,0.065-0.146,0.065-0.24c0-0.098-0.024-0.178-0.07-0.242c-0.047-0.064-0.114-0.117-0.2-0.161 c-0.086-0.043-0.191-0.081-0.313-0.113c-0.122-0.032-0.26-0.065-0.414-0.099c-0.18-0.041-0.354-0.087-0.521-0.138 c-0.167-0.051-0.314-0.119-0.44-0.206c-0.126-0.086-0.227-0.197-0.304-0.332c-0.077-0.135-0.116-0.308-0.116-0.518 c0-0.199,0.038-0.374,0.116-0.524c0.077-0.15,0.184-0.276,0.321-0.378c0.137-0.101,0.3-0.178,0.487-0.228 c0.188-0.051,0.394-0.076,0.62-0.076c0.454,0,0.82,0.107,1.096,0.321c0.276,0.214,0.429,0.526,0.459,0.935h-0.783 c-0.023-0.203-0.105-0.355-0.248-0.456c-0.143-0.101-0.319-0.152-0.53-0.152c-0.222,0-0.398,0.043-0.53,0.13 c-0.132,0.086-0.197,0.201-0.197,0.344c0,0.083,0.018,0.151,0.054,0.206c0.036,0.055,0.09,0.102,0.163,0.144 c0.073,0.041,0.164,0.077,0.273,0.107c0.109,0.03,0.238,0.062,0.389,0.096c0.207,0.045,0.401,0.095,0.583,0.149 c0.182,0.055,0.342,0.127,0.479,0.217c0.137,0.09,0.245,0.205,0.324,0.344c0.079,0.139,0.118,0.318,0.118,0.535 c0,0.203-0.039,0.384-0.118,0.544c-0.079,0.16-0.188,0.293-0.327,0.4c-0.139,0.107-0.304,0.189-0.496,0.245 C15.843,13.501,15.635,13.53,15.409,13.53z M19.168,13.53c-0.549,0-0.972-0.116-1.271-0.347s-0.456-0.561-0.47-0.989h0.8 c0.03,0.244,0.116,0.418,0.259,0.521c0.143,0.103,0.359,0.155,0.648,0.155c0.105,0,0.205-0.009,0.299-0.028 c0.094-0.019,0.177-0.049,0.248-0.09c0.071-0.041,0.129-0.095,0.172-0.161c0.043-0.066,0.065-0.146,0.065-0.24 c0-0.098-0.024-0.178-0.07-0.242c-0.047-0.064-0.114-0.117-0.2-0.161c-0.086-0.043-0.191-0.081-0.313-0.113 c-0.122-0.032-0.26-0.065-0.414-0.099c-0.18-0.041-0.354-0.087-0.521-0.138c-0.167-0.051-0.314-0.119-0.44-0.206 c-0.126-0.086-0.227-0.197-0.304-0.332c-0.077-0.135-0.116-0.308-0.116-0.518c0-0.199,0.038-0.374,0.116-0.524 c0.077-0.15,0.184-0.276,0.321-0.378c0.137-0.101,0.3-0.178,0.487-0.228c0.188-0.051,0.394-0.076,0.62-0.076 c0.454,0,0.82,0.107,1.096,0.321c0.276,0.214,0.429,0.526,0.459,0.935h-0.783c-0.023-0.203-0.105-0.355-0.248-0.456 c-0.143-0.101-0.319-0.152-0.53-0.152c-0.222,0-0.398,0.043-0.53,0.13c-0.132,0.086-0.197,0.201-0.197,0.344 c0,0.083,0.018,0.151,0.054,0.206c0.036,0.055,0.09,0.102,0.163,0.144c0.073,0.041,0.164,0.077,0.273,0.107 c0.109,0.03,0.238,0.062,0.389,0.096c0.207,0.045,0.401,0.095,0.583,0.149c0.182,0.055,0.342,0.127,0.479,0.217 c0.137,0.09,0.245,0.205,0.324,0.344c0.079,0.139,0.118,0.318,0.118,0.535c0,0.203-0.039,0.384-0.118,0.544 c-0.079,0.16-0.188,0.293-0.327,0.4c-0.139,0.107-0.304,0.189-0.496,0.245C19.602,13.501,19.393,13.53,19.168,13.53z M21.29,9.41 h0.817v3.347H24v0.682h-2.71V9.41z" }) + ] + } + ); +}); + +export { SiOpenssl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.cjs new file mode 100644 index 000000000..8ad55b697 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1944"; +const SiOpenstack = React__namespace.forwardRef(function SiOpenstack2({ title = "OpenStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.575 9.29h5.418v5.42h-5.418zM0 9.29h5.419v5.42H0zm18.575 7.827a1.207 1.207 0 0 1-1.206 1.206H6.623a1.207 1.207 0 0 1-1.205-1.206v-.858H0v5.252a2.236 2.236 0 0 0 2.229 2.23h19.53A2.237 2.237 0 0 0 24 21.512V16.26h-5.425zM21.763.258H2.233a2.236 2.236 0 0 0-2.23 2.23V7.74h5.419v-.858a1.206 1.206 0 0 1 1.205-1.206h10.746a1.206 1.206 0 0 1 1.205 1.206v.858H24V2.487A2.237 2.237 0 0 0 21.763.258Z" }) + ] + } + ); +}); + +exports.default = SiOpenstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.d.ts new file mode 100644 index 000000000..6c565425a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1944"; +declare const SiOpenstack: IconType; +export { SiOpenstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.mjs new file mode 100644 index 000000000..5b486d582 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1944"; +const SiOpenstack = React.forwardRef(function SiOpenstack2({ title = "OpenStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.575 9.29h5.418v5.42h-5.418zM0 9.29h5.419v5.42H0zm18.575 7.827a1.207 1.207 0 0 1-1.206 1.206H6.623a1.207 1.207 0 0 1-1.205-1.206v-.858H0v5.252a2.236 2.236 0 0 0 2.229 2.23h19.53A2.237 2.237 0 0 0 24 21.512V16.26h-5.425zM21.763.258H2.233a2.236 2.236 0 0 0-2.23 2.23V7.74h5.419v-.858a1.206 1.206 0 0 1 1.205-1.206h10.746a1.206 1.206 0 0 1 1.205 1.206v.858H24V2.487A2.237 2.237 0 0 0 21.763.258Z" }) + ] + } + ); +}); + +export { SiOpenstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.cjs new file mode 100644 index 000000000..8373d1ff1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7EBC6F"; +const SiOpenstreetmap = React__namespace.forwardRef(function SiOpenstreetmap2({ title = "OpenStreetMap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.672 23.969c-.352-.089-.534-.234-1.471-1.168C.085 21.688.014 21.579.018 20.999c0-.645-.196-.414 3.368-3.986 3.6-3.608 3.415-3.451 4.064-3.449.302 0 .378.016.62.14l.277.14 1.744-1.744-.218-.343c-.425-.662-.825-1.629-1.006-2.429a7.657 7.657 0 0 1 1.479-6.44c2.49-3.12 6.959-3.812 10.26-1.588 1.812 1.218 2.99 3.099 3.328 5.314.07.467.07 1.579 0 2.074a7.554 7.554 0 0 1-2.205 4.402 6.712 6.712 0 0 1-1.943 1.401c-.959.483-1.775.71-2.881.803-1.573.131-3.32-.305-4.656-1.163l-.343-.218-1.744 1.744.14.28c.125.241.14.316.14.617.003.651.156.467-3.426 4.049-2.761 2.756-3.186 3.164-3.398 3.261-.271.125-.69.171-.945.106zM17.485 13.95a6.425 6.425 0 0 0 4.603-3.51c1.391-2.899.455-6.306-2.227-8.108-.638-.43-1.529-.794-2.367-.962-.581-.117-1.809-.104-2.414.025a6.593 6.593 0 0 0-2.452 1.064c-.444.315-1.177 1.048-1.487 1.487a6.384 6.384 0 0 0 .38 7.907 6.406 6.406 0 0 0 3.901 2.136c.509.078 1.542.058 2.065-.037zm-3.738 7.376a80.97 80.97 0 0 1-2.196-.651c-.025-.028 1.207-4.396 1.257-4.449.023-.026 4.242 1.152 4.414 1.236.062.026-.003.288-.525 2.102a398.513 398.513 0 0 0-.635 2.236c-.025.087-.069.156-.097.156-.028-.003-1.028-.287-2.219-.631zm2.912.524c0-.053 1.227-4.333 1.246-4.347.047-.034 4.324-1.23 4.341-1.211.019.019-1.199 4.337-1.23 4.36-.02.019-4.126 1.191-4.259 1.218-.054.011-.098 0-.098-.019zm-7.105-1.911c.846-.852 1.599-1.627 1.674-1.728.171-.218.405-.732.472-1.015.026-.118.053-.352.058-.522l.011-.307.182-.051c.103-.028.193-.044.202-.034.023.025-1.207 4.321-1.246 4.36-.02.016-.677.213-1.464.436l-1.425.405 1.537-1.542zm8.289-3.06a1.371 1.371 0 0 1-.059-.187l-.044-.156.156-.028c1.339-.227 2.776-.856 3.908-1.713.16-.125.252-.171.265-.134.054.165.272.95.265.959-.034.034-4.48 1.282-4.492 1.261zm-15.083-1.3c-.05-.039-1.179-3.866-1.264-4.29-.016-.084.146-.044 2.174.536 2.121.604 2.192.629 2.222.74.028.098.011.129-.125.223-.084.059-.769.724-1.523 1.479a63.877 63.877 0 0 1-1.39 1.367c-.016 0-.056-.025-.093-.054zm.821-4.378c-1.188-.343-2.164-.623-2.167-.626-.016-.012 1.261-4.433 1.285-4.46.022-.022 4.422 1.211 4.469 1.252.009.009-.269 1.017-.618 2.239-.576 2.02-.643 2.224-.723 2.22-.05-.003-1.059-.285-2.247-.626zm2.959.538c.012-.031.212-.723.444-1.534l.42-1.476.056.321c.093.556.265 1.188.464 1.741.106.296.187.539.181.545-.008.006-.332.101-.719.212-.389.109-.741.21-.786.224-.058.016-.075.006-.059-.034zM4.905 6.112c-1.187-.339-2.167-.635-2.18-.654-.04-.062-1.246-4.321-1.23-4.338.026-.025 4.31 1.204 4.351 1.246.047.051 1.28 4.379 1.246 4.376L4.91 6.113zm2.148-1.713l-.519-1.806-.078-.28 1.693-.483c.934-.265 1.724-.495 1.76-.508.034-.016-.083.14-.26.336A8.729 8.729 0 0 0 7.69 5.23a4.348 4.348 0 0 0-.132.561c0 .293-.115-.025-.505-1.39z" }) + ] + } + ); +}); + +exports.default = SiOpenstreetmap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.d.ts new file mode 100644 index 000000000..74b60ebb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7EBC6F"; +declare const SiOpenstreetmap: IconType; +export { SiOpenstreetmap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.mjs new file mode 100644 index 000000000..cca86048e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenstreetmap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7EBC6F"; +const SiOpenstreetmap = React.forwardRef(function SiOpenstreetmap2({ title = "OpenStreetMap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.672 23.969c-.352-.089-.534-.234-1.471-1.168C.085 21.688.014 21.579.018 20.999c0-.645-.196-.414 3.368-3.986 3.6-3.608 3.415-3.451 4.064-3.449.302 0 .378.016.62.14l.277.14 1.744-1.744-.218-.343c-.425-.662-.825-1.629-1.006-2.429a7.657 7.657 0 0 1 1.479-6.44c2.49-3.12 6.959-3.812 10.26-1.588 1.812 1.218 2.99 3.099 3.328 5.314.07.467.07 1.579 0 2.074a7.554 7.554 0 0 1-2.205 4.402 6.712 6.712 0 0 1-1.943 1.401c-.959.483-1.775.71-2.881.803-1.573.131-3.32-.305-4.656-1.163l-.343-.218-1.744 1.744.14.28c.125.241.14.316.14.617.003.651.156.467-3.426 4.049-2.761 2.756-3.186 3.164-3.398 3.261-.271.125-.69.171-.945.106zM17.485 13.95a6.425 6.425 0 0 0 4.603-3.51c1.391-2.899.455-6.306-2.227-8.108-.638-.43-1.529-.794-2.367-.962-.581-.117-1.809-.104-2.414.025a6.593 6.593 0 0 0-2.452 1.064c-.444.315-1.177 1.048-1.487 1.487a6.384 6.384 0 0 0 .38 7.907 6.406 6.406 0 0 0 3.901 2.136c.509.078 1.542.058 2.065-.037zm-3.738 7.376a80.97 80.97 0 0 1-2.196-.651c-.025-.028 1.207-4.396 1.257-4.449.023-.026 4.242 1.152 4.414 1.236.062.026-.003.288-.525 2.102a398.513 398.513 0 0 0-.635 2.236c-.025.087-.069.156-.097.156-.028-.003-1.028-.287-2.219-.631zm2.912.524c0-.053 1.227-4.333 1.246-4.347.047-.034 4.324-1.23 4.341-1.211.019.019-1.199 4.337-1.23 4.36-.02.019-4.126 1.191-4.259 1.218-.054.011-.098 0-.098-.019zm-7.105-1.911c.846-.852 1.599-1.627 1.674-1.728.171-.218.405-.732.472-1.015.026-.118.053-.352.058-.522l.011-.307.182-.051c.103-.028.193-.044.202-.034.023.025-1.207 4.321-1.246 4.36-.02.016-.677.213-1.464.436l-1.425.405 1.537-1.542zm8.289-3.06a1.371 1.371 0 0 1-.059-.187l-.044-.156.156-.028c1.339-.227 2.776-.856 3.908-1.713.16-.125.252-.171.265-.134.054.165.272.95.265.959-.034.034-4.48 1.282-4.492 1.261zm-15.083-1.3c-.05-.039-1.179-3.866-1.264-4.29-.016-.084.146-.044 2.174.536 2.121.604 2.192.629 2.222.74.028.098.011.129-.125.223-.084.059-.769.724-1.523 1.479a63.877 63.877 0 0 1-1.39 1.367c-.016 0-.056-.025-.093-.054zm.821-4.378c-1.188-.343-2.164-.623-2.167-.626-.016-.012 1.261-4.433 1.285-4.46.022-.022 4.422 1.211 4.469 1.252.009.009-.269 1.017-.618 2.239-.576 2.02-.643 2.224-.723 2.22-.05-.003-1.059-.285-2.247-.626zm2.959.538c.012-.031.212-.723.444-1.534l.42-1.476.056.321c.093.556.265 1.188.464 1.741.106.296.187.539.181.545-.008.006-.332.101-.719.212-.389.109-.741.21-.786.224-.058.016-.075.006-.059-.034zM4.905 6.112c-1.187-.339-2.167-.635-2.18-.654-.04-.062-1.246-4.321-1.23-4.338.026-.025 4.31 1.204 4.351 1.246.047.051 1.28 4.379 1.246 4.376L4.91 6.113zm2.148-1.713l-.519-1.806-.078-.28 1.693-.483c.934-.265 1.724-.495 1.76-.508.034-.016-.083.14-.26.336A8.729 8.729 0 0 0 7.69 5.23a4.348 4.348 0 0 0-.132.561c0 .293-.115-.025-.505-1.39z" }) + ] + } + ); +}); + +export { SiOpenstreetmap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.cjs new file mode 100644 index 000000000..a8bb346c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#73BA25"; +const SiOpensuse = React__namespace.forwardRef(function SiOpensuse2({ title = "openSUSE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.724 0a12 12 0 0 0-9.448 4.623c1.464.391 2.5.727 2.81.832.005-.19.037-1.893.037-1.893s.004-.04.025-.06c.026-.026.065-.018.065-.018.385.056 8.602 1.274 12.066 3.292.427.25.638.517.902.786.958.99 2.223 5.108 2.359 5.957.005.033-.036.07-.054.083a5.177 5.177 0 0 1-.313.228c-.82.55-2.708 1.872-5.13 1.656-2.176-.193-5.018-1.44-8.445-3.699.336.79.668 1.58 1 2.371.497.258 5.287 2.7 7.651 2.651 1.904-.04 3.941-.968 4.756-1.458 0 0 .179-.108.257-.048.085.066.061.167.041.27-.05.234-.164.66-.242.863l-.065.165c-.093.25-.183.482-.356.625-.48.436-1.246.784-2.446 1.305-1.855.812-4.865 1.328-7.66 1.31-1.001-.022-1.968-.133-2.817-.232-1.743-.197-3.161-.357-4.026.269A12 12 0 0 0 10.724 24a12 12 0 0 0 12-12 12 12 0 0 0-12-12zM13.4 6.963a3.503 3.503 0 0 0-2.521.942 3.498 3.498 0 0 0-1.114 2.449 3.528 3.528 0 0 0 3.39 3.64 3.48 3.48 0 0 0 2.524-.946 3.504 3.504 0 0 0 1.114-2.446 3.527 3.527 0 0 0-3.393-3.64zm-.03 1.035a2.458 2.458 0 0 1 2.368 2.539 2.43 2.43 0 0 1-.774 1.706 2.456 2.456 0 0 1-1.762.659 2.461 2.461 0 0 1-2.364-2.542c.02-.655.3-1.26.777-1.707a2.419 2.419 0 0 1 1.756-.655zm.402 1.23c-.602 0-1.087.325-1.087.727 0 .4.485.725 1.087.725.6 0 1.088-.326 1.088-.725 0-.402-.487-.726-1.088-.726Z" }) + ] + } + ); +}); + +exports.default = SiOpensuse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.d.ts new file mode 100644 index 000000000..e0a143ded --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#73BA25"; +declare const SiOpensuse: IconType; +export { SiOpensuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.mjs new file mode 100644 index 000000000..8b5ca6f27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpensuse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#73BA25"; +const SiOpensuse = React.forwardRef(function SiOpensuse2({ title = "openSUSE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.724 0a12 12 0 0 0-9.448 4.623c1.464.391 2.5.727 2.81.832.005-.19.037-1.893.037-1.893s.004-.04.025-.06c.026-.026.065-.018.065-.018.385.056 8.602 1.274 12.066 3.292.427.25.638.517.902.786.958.99 2.223 5.108 2.359 5.957.005.033-.036.07-.054.083a5.177 5.177 0 0 1-.313.228c-.82.55-2.708 1.872-5.13 1.656-2.176-.193-5.018-1.44-8.445-3.699.336.79.668 1.58 1 2.371.497.258 5.287 2.7 7.651 2.651 1.904-.04 3.941-.968 4.756-1.458 0 0 .179-.108.257-.048.085.066.061.167.041.27-.05.234-.164.66-.242.863l-.065.165c-.093.25-.183.482-.356.625-.48.436-1.246.784-2.446 1.305-1.855.812-4.865 1.328-7.66 1.31-1.001-.022-1.968-.133-2.817-.232-1.743-.197-3.161-.357-4.026.269A12 12 0 0 0 10.724 24a12 12 0 0 0 12-12 12 12 0 0 0-12-12zM13.4 6.963a3.503 3.503 0 0 0-2.521.942 3.498 3.498 0 0 0-1.114 2.449 3.528 3.528 0 0 0 3.39 3.64 3.48 3.48 0 0 0 2.524-.946 3.504 3.504 0 0 0 1.114-2.446 3.527 3.527 0 0 0-3.393-3.64zm-.03 1.035a2.458 2.458 0 0 1 2.368 2.539 2.43 2.43 0 0 1-.774 1.706 2.456 2.456 0 0 1-1.762.659 2.461 2.461 0 0 1-2.364-2.542c.02-.655.3-1.26.777-1.707a2.419 2.419 0 0 1 1.756-.655zm.402 1.23c-.602 0-1.087.325-1.087.727 0 .4.485.725 1.087.725.6 0 1.088-.326 1.088-.725 0-.402-.487-.726-1.088-.726Z" }) + ] + } + ); +}); + +export { SiOpensuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.cjs new file mode 100644 index 000000000..d18a43002 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOpentelemetry = React__namespace.forwardRef(function SiOpentelemetry2({ title = "OpenTelemetry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.6974 13.1173c-1.0224 1.0224-1.0224 2.68 0 3.7024 1.0224 1.0224 2.68 1.0224 3.7024 0 1.0224-1.0223 1.0224-2.68 0-3.7024-1.0223-1.0223-2.68-1.0223-3.7024 0zm2.7677 2.7701c-.5063.5063-1.3267.5063-1.833 0s-.5063-1.3266 0-1.833c.5063-.5062 1.3267-.5062 1.833 0 .5063.504.5063 1.3267 0 1.833zM16.356.2355l-1.6041 1.6042c-.314.314-.314.83 0 1.144L21.015 9.247c.314.314.83.314 1.144 0l1.6042-1.6041c.314-.314.314-.83 0-1.144L17.4976.2354c-.314-.314-.8276-.314-1.1416 0zM5.1173 20.734c.2848-.2848.2848-.7497 0-1.0345l-.8155-.8155c-.2848-.2848-.7497-.2848-1.0345 0l-1.6845 1.6845-.0024.0024-.4625-.4625c-.2556-.2556-.6718-.2556-.925 0-.2556.2556-.2556.6718 0 .925l2.775 2.775c.2556.2556.6718.2556.925 0 .2532-.2556.2556-.6718 0-.925l-.4625-.4625.0024-.0024zm8.4856-15.893-3.5637 3.5637c-.3164.3164-.3164.8374 0 1.1538l2.2006 2.2005c1.5554-1.1197 3.7365-.981 5.1361.4187l1.7819-1.7818c.3164-.3165.3164-.8374 0-1.1538l-4.401-4.401c-.3165-.319-.8374-.319-1.1539 0zm-2.2881 7.8455-1.2999-1.2999c-.3043-.3043-.8033-.3043-1.1076 0l-4.5836 4.586c-.3042.3043-.3042.8033 0 1.1076l2.5973 2.5973c.3043.3043.8033.3043 1.1076 0l2.9478-2.9527c-.6231-1.2877-.5112-2.8431.3384-4.0383z" }) + ] + } + ); +}); + +exports.default = SiOpentelemetry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.d.ts new file mode 100644 index 000000000..c96c35217 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOpentelemetry: IconType; +export { SiOpentelemetry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.mjs new file mode 100644 index 000000000..961b7e52a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentelemetry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOpentelemetry = React.forwardRef(function SiOpentelemetry2({ title = "OpenTelemetry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.6974 13.1173c-1.0224 1.0224-1.0224 2.68 0 3.7024 1.0224 1.0224 2.68 1.0224 3.7024 0 1.0224-1.0223 1.0224-2.68 0-3.7024-1.0223-1.0223-2.68-1.0223-3.7024 0zm2.7677 2.7701c-.5063.5063-1.3267.5063-1.833 0s-.5063-1.3266 0-1.833c.5063-.5062 1.3267-.5062 1.833 0 .5063.504.5063 1.3267 0 1.833zM16.356.2355l-1.6041 1.6042c-.314.314-.314.83 0 1.144L21.015 9.247c.314.314.83.314 1.144 0l1.6042-1.6041c.314-.314.314-.83 0-1.144L17.4976.2354c-.314-.314-.8276-.314-1.1416 0zM5.1173 20.734c.2848-.2848.2848-.7497 0-1.0345l-.8155-.8155c-.2848-.2848-.7497-.2848-1.0345 0l-1.6845 1.6845-.0024.0024-.4625-.4625c-.2556-.2556-.6718-.2556-.925 0-.2556.2556-.2556.6718 0 .925l2.775 2.775c.2556.2556.6718.2556.925 0 .2532-.2556.2556-.6718 0-.925l-.4625-.4625.0024-.0024zm8.4856-15.893-3.5637 3.5637c-.3164.3164-.3164.8374 0 1.1538l2.2006 2.2005c1.5554-1.1197 3.7365-.981 5.1361.4187l1.7819-1.7818c.3164-.3165.3164-.8374 0-1.1538l-4.401-4.401c-.3165-.319-.8374-.319-1.1539 0zm-2.2881 7.8455-1.2999-1.2999c-.3043-.3043-.8033-.3043-1.1076 0l-4.5836 4.586c-.3042.3043-.3042.8033 0 1.1076l2.5973 2.5973c.3043.3043.8033.3043 1.1076 0l2.9478-2.9527c-.6231-1.2877-.5112-2.8431.3384-4.0383z" }) + ] + } + ); +}); + +export { SiOpentelemetry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.cjs new file mode 100644 index 000000000..c8b620252 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOpentext = React__namespace.forwardRef(function SiOpentext2({ title = "OpenText", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.412 11.809c0 .786-.468 1.637-1.7 1.637-.894 0-1.712-.49-1.712-1.637 0-.946.616-1.68 1.828-1.616 1.297.074 1.584 1.052 1.584 1.616zm-2.307-.596c-.117.17-.159.383-.159.596 0 .478.244.914.765.914.51 0 .755-.404.755-.872 0-.34-.085-.595-.266-.754a.727.727 0 0 0-.553-.17c-.255.01-.414.095-.542.286zm10.63-.67c.095-.095.148-.17.318-.244.149-.063.35-.106.585-.106.191 0 .404.032.563.117.33.17.425.446.425.935v2.126h-.946v-1.754c0-.276-.01-.382-.042-.467-.075-.17-.234-.234-.425-.234-.49 0-.49.382-.49.776v1.68h-.935v-3.105h.946v.277zm-1.393 2.02c-.085.181-.361.883-1.584.883-.946 0-1.605-.564-1.605-1.584 0-.744.383-1.669 1.637-1.669.191 0 .733-.021 1.148.404.415.436.436 1.042.446 1.392H8.1c0 .383.223.776.734.776s.69-.33.807-.542l.702.34zm-.935-1.148c-.022-.127-.043-.308-.181-.435a.66.66 0 0 0-.457-.17.67.67 0 0 0-.478.202c-.128.138-.16.276-.192.414l1.308-.01zm13.977-.5H24v-.637h-.616V9.62h-.936v.648H22.3l-.425.638h.574v1.478c0 .297.01.52.138.701.202.287.553.308.883.308.17 0 .297-.02.488-.053v-.712l-.329.01c-.255 0-.255-.159-.244-.35v-1.371zM14.073 9.62h.935v.648h.967l-.425.638h-.553v1.382c-.01.191-.01.35.245.35l.33-.01v.712c-.203.032-.32.053-.49.053-.318 0-.68-.02-.882-.308-.127-.18-.138-.404-.138-.701V9.619h.01zm4.836 2.944-.18.266c-.171.234-.48.606-1.383.606-.946 0-1.573-.563-1.573-1.584 0-.744.383-1.669 1.637-1.669.191 0 .733-.02 1.148.404.415.436.436 1.042.446 1.393H16.73c-.01.382.191.776.69.776.51 0 .66-.33.777-.542l.712.35zm-.872-1.148c-.021-.127-.042-.308-.18-.435a.66.66 0 0 0-.458-.17.67.67 0 0 0-.478.202c-.127.138-.16.276-.191.414l1.307-.01zm4.071 1.956-1.17-1.626.968-1.467h-1.063l-.457.691-.5-.69h-1.062l1.052 1.466-1.084 1.626h1.063l.563-.86.617.86h1.073zm-17.41-2.827c.085-.138.372-.35.829-.35.776 0 1.329.573 1.329 1.604 0 .638-.234 1.637-1.372 1.637-.403 0-.722-.223-.797-.35v1.296h-.935v-4.114h.946v.277zm.638.361c-.17 0-.351.064-.479.234-.138.16-.19.404-.19.68 0 .362.105.585.222.712a.588.588 0 0 0 .425.192c.457 0 .66-.468.66-.925 0-.383-.117-.786-.5-.872-.053-.01-.096-.02-.138-.02z" }) + ] + } + ); +}); + +exports.default = SiOpentext; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.d.ts new file mode 100644 index 000000000..a016a12b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOpentext: IconType; +export { SiOpentext as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.mjs new file mode 100644 index 000000000..ee6a55183 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentext.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOpentext = React.forwardRef(function SiOpentext2({ title = "OpenText", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.412 11.809c0 .786-.468 1.637-1.7 1.637-.894 0-1.712-.49-1.712-1.637 0-.946.616-1.68 1.828-1.616 1.297.074 1.584 1.052 1.584 1.616zm-2.307-.596c-.117.17-.159.383-.159.596 0 .478.244.914.765.914.51 0 .755-.404.755-.872 0-.34-.085-.595-.266-.754a.727.727 0 0 0-.553-.17c-.255.01-.414.095-.542.286zm10.63-.67c.095-.095.148-.17.318-.244.149-.063.35-.106.585-.106.191 0 .404.032.563.117.33.17.425.446.425.935v2.126h-.946v-1.754c0-.276-.01-.382-.042-.467-.075-.17-.234-.234-.425-.234-.49 0-.49.382-.49.776v1.68h-.935v-3.105h.946v.277zm-1.393 2.02c-.085.181-.361.883-1.584.883-.946 0-1.605-.564-1.605-1.584 0-.744.383-1.669 1.637-1.669.191 0 .733-.021 1.148.404.415.436.436 1.042.446 1.392H8.1c0 .383.223.776.734.776s.69-.33.807-.542l.702.34zm-.935-1.148c-.022-.127-.043-.308-.181-.435a.66.66 0 0 0-.457-.17.67.67 0 0 0-.478.202c-.128.138-.16.276-.192.414l1.308-.01zm13.977-.5H24v-.637h-.616V9.62h-.936v.648H22.3l-.425.638h.574v1.478c0 .297.01.52.138.701.202.287.553.308.883.308.17 0 .297-.02.488-.053v-.712l-.329.01c-.255 0-.255-.159-.244-.35v-1.371zM14.073 9.62h.935v.648h.967l-.425.638h-.553v1.382c-.01.191-.01.35.245.35l.33-.01v.712c-.203.032-.32.053-.49.053-.318 0-.68-.02-.882-.308-.127-.18-.138-.404-.138-.701V9.619h.01zm4.836 2.944-.18.266c-.171.234-.48.606-1.383.606-.946 0-1.573-.563-1.573-1.584 0-.744.383-1.669 1.637-1.669.191 0 .733-.02 1.148.404.415.436.436 1.042.446 1.393H16.73c-.01.382.191.776.69.776.51 0 .66-.33.777-.542l.712.35zm-.872-1.148c-.021-.127-.042-.308-.18-.435a.66.66 0 0 0-.458-.17.67.67 0 0 0-.478.202c-.127.138-.16.276-.191.414l1.307-.01zm4.071 1.956-1.17-1.626.968-1.467h-1.063l-.457.691-.5-.69h-1.062l1.052 1.466-1.084 1.626h1.063l.563-.86.617.86h1.073zm-17.41-2.827c.085-.138.372-.35.829-.35.776 0 1.329.573 1.329 1.604 0 .638-.234 1.637-1.372 1.637-.403 0-.722-.223-.797-.35v1.296h-.935v-4.114h.946v.277zm.638.361c-.17 0-.351.064-.479.234-.138.16-.19.404-.19.68 0 .362.105.585.222.712a.588.588 0 0 0 .425.192c.457 0 .66-.468.66-.925 0-.383-.117-.786-.5-.872-.053-.01-.096-.02-.138-.02z" }) + ] + } + ); +}); + +export { SiOpentext as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.cjs new file mode 100644 index 000000000..ed7e0dfd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDA18"; +const SiOpentofu = React__namespace.forwardRef(function SiOpentofu2({ title = "OpenTofu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.184 23.25.002-.01-.033-.017-8.388-4.611a1.6841 1.6841 0 0 1-.873-1.475V6.864c0-.614.335-1.18.873-1.476l9.424-5.18a1.6868 1.6868 0 0 1 1.622 0l8.31 4.568.022.012.006.002-.004-.001 1.09.599c.538.296.873.862.873 1.476v10.273c0 .614-.335 1.179-.873 1.475l-8.388 4.611-.03.016-1.006.553c-.505.277-1.117.277-1.622 0l-1.003-.552-.002.01Zm.603-1.158-.005-.001.012.006c.252.123.55-.055.558-.338l.001-9.147c0-.141-.078-.272-.202-.34L2.763 7.661c-.259-.142-.576.045-.576.341v9.135c0 .141.077.272.201.34l8.394 4.613.005.002Zm.556-.327Zm0 0Zm-2.539-4.802-.005.003-1.959-1.031-.003-.004c.001-.003.001-.007.001-.01.023-.305.153-.525.346-.632.194-.107.45-.101.72.041.272.143.508.397.671.691.163.293.252.628.229.935v.007ZM5.71 15.177l-.005.002-1.96-1.031-.002-.004.001-.01c.022-.304.152-.524.346-.632.194-.107.449-.101.72.042.271.143.508.396.671.69.162.294.252.628.229.935v.008Zm14.981-8.999-.003-.018a.382.382 0 0 0-.191-.25l-8.31-4.567a.3883.3883 0 0 0-.374 0L3.503 5.91c-.162.089-.226.265-.193.423l.009.007-.009-.007c.022.1.083.194.183.253l8.32 4.572c.116.064.258.064.374 0l8.321-4.573c.151-.089.212-.256.183-.407Zm-17.37.16Zm-.002.002c0-.001-.003-.003-.005-.006-.002-.002-.004-.004-.004-.003l.009.009Zm-.467-1.56-.003.002c.002.004.005.006.005.006l-.002-.008Zm.007.007c-.001.001-.002.001-.003.001h-.002l.005-.001Z" }) + ] + } + ); +}); + +exports.default = SiOpentofu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.d.ts new file mode 100644 index 000000000..53d54840b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDA18"; +declare const SiOpentofu: IconType; +export { SiOpentofu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.mjs new file mode 100644 index 000000000..19ae98afd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpentofu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDA18"; +const SiOpentofu = React.forwardRef(function SiOpentofu2({ title = "OpenTofu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.184 23.25.002-.01-.033-.017-8.388-4.611a1.6841 1.6841 0 0 1-.873-1.475V6.864c0-.614.335-1.18.873-1.476l9.424-5.18a1.6868 1.6868 0 0 1 1.622 0l8.31 4.568.022.012.006.002-.004-.001 1.09.599c.538.296.873.862.873 1.476v10.273c0 .614-.335 1.179-.873 1.475l-8.388 4.611-.03.016-1.006.553c-.505.277-1.117.277-1.622 0l-1.003-.552-.002.01Zm.603-1.158-.005-.001.012.006c.252.123.55-.055.558-.338l.001-9.147c0-.141-.078-.272-.202-.34L2.763 7.661c-.259-.142-.576.045-.576.341v9.135c0 .141.077.272.201.34l8.394 4.613.005.002Zm.556-.327Zm0 0Zm-2.539-4.802-.005.003-1.959-1.031-.003-.004c.001-.003.001-.007.001-.01.023-.305.153-.525.346-.632.194-.107.45-.101.72.041.272.143.508.397.671.691.163.293.252.628.229.935v.007ZM5.71 15.177l-.005.002-1.96-1.031-.002-.004.001-.01c.022-.304.152-.524.346-.632.194-.107.449-.101.72.042.271.143.508.396.671.69.162.294.252.628.229.935v.008Zm14.981-8.999-.003-.018a.382.382 0 0 0-.191-.25l-8.31-4.567a.3883.3883 0 0 0-.374 0L3.503 5.91c-.162.089-.226.265-.193.423l.009.007-.009-.007c.022.1.083.194.183.253l8.32 4.572c.116.064.258.064.374 0l8.321-4.573c.151-.089.212-.256.183-.407Zm-17.37.16Zm-.002.002c0-.001-.003-.003-.005-.006-.002-.002-.004-.004-.004-.003l.009.009Zm-.467-1.56-.003.002c.002.004.005.006.005.006l-.002-.008Zm.007.007c-.001.001-.002.001-.003.001h-.002l.005-.001Z" }) + ] + } + ); +}); + +export { SiOpentofu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.cjs new file mode 100644 index 000000000..5074bd02e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE033"; +const SiOpenverse = React__namespace.forwardRef(function SiOpenverse2({ title = "Openverse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.882 1.018C2.182 1.018 0 3.214 0 5.932c0 2.704 2.182 4.915 4.882 4.915Zm7.118 0c-2.686 0-4.882 2.196-4.882 4.914 0 2.704 2.182 4.915 4.882 4.915zm7.118 0c-2.696 0-4.881 2.2-4.881 4.914 0 2.714 2.185 4.915 4.88 4.915 2.697 0 4.883-2.2 4.883-4.915 0-2.714-2.186-4.914-4.882-4.914zm0 12.093c-2.696 0-4.881 2.2-4.881 4.915 0 2.714 2.185 4.914 4.88 4.914 2.697 0 4.883-2.2 4.883-4.914 0-2.714-2.186-4.915-4.882-4.915ZM12 13.126c-2.686 0-4.882 2.196-4.882 4.9S9.3 22.94 12 22.94zm-7.118.04c-2.7 0-4.882 2.197-4.882 4.9 0 2.719 2.182 4.916 4.882 4.916Z" }) + ] + } + ); +}); + +exports.default = SiOpenverse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.d.ts new file mode 100644 index 000000000..3fb9f130a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE033"; +declare const SiOpenverse: IconType; +export { SiOpenverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.mjs new file mode 100644 index 000000000..1d8cf0bae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenverse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE033"; +const SiOpenverse = React.forwardRef(function SiOpenverse2({ title = "Openverse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.882 1.018C2.182 1.018 0 3.214 0 5.932c0 2.704 2.182 4.915 4.882 4.915Zm7.118 0c-2.686 0-4.882 2.196-4.882 4.914 0 2.704 2.182 4.915 4.882 4.915zm7.118 0c-2.696 0-4.881 2.2-4.881 4.914 0 2.714 2.185 4.915 4.88 4.915 2.697 0 4.883-2.2 4.883-4.915 0-2.714-2.186-4.914-4.882-4.914zm0 12.093c-2.696 0-4.881 2.2-4.881 4.915 0 2.714 2.185 4.914 4.88 4.914 2.697 0 4.883-2.2 4.883-4.914 0-2.714-2.186-4.915-4.882-4.915ZM12 13.126c-2.686 0-4.882 2.196-4.882 4.9S9.3 22.94 12 22.94zm-7.118.04c-2.7 0-4.882 2.197-4.882 4.9 0 2.719 2.182 4.916 4.882 4.916Z" }) + ] + } + ); +}); + +export { SiOpenverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.cjs new file mode 100644 index 000000000..c7351dc13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA7E20"; +const SiOpenvpn = React__namespace.forwardRef(function SiOpenvpn2({ title = "OpenVPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .357C5.385.357 0 5.69 0 12.254c0 4.36 2.358 8.153 5.896 10.204l.77-5.076a7.046 7.046 0 01-1.846-4.719c0-3.897 3.18-7.076 7.13-7.076 3.948 0 7.126 3.18 7.126 7.076 0 1.847-.717 3.488-1.846 4.77L18 22.51c3.59-2.05 6-5.899 6-10.258C24 5.69 18.615.357 12 .357zm-.05 8.157a3.786 3.786 0 00-3.796 3.795 3.738 3.738 0 002.461 3.54L9.13 23.643h5.64l-1.435-7.795c1.385-.564 2.41-1.898 2.41-3.54a3.786 3.786 0 00-3.795-3.794z" }) + ] + } + ); +}); + +exports.default = SiOpenvpn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.d.ts new file mode 100644 index 000000000..fc3ead42a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA7E20"; +declare const SiOpenvpn: IconType; +export { SiOpenvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.mjs new file mode 100644 index 000000000..6d6374ccf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenvpn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA7E20"; +const SiOpenvpn = React.forwardRef(function SiOpenvpn2({ title = "OpenVPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .357C5.385.357 0 5.69 0 12.254c0 4.36 2.358 8.153 5.896 10.204l.77-5.076a7.046 7.046 0 01-1.846-4.719c0-3.897 3.18-7.076 7.13-7.076 3.948 0 7.126 3.18 7.126 7.076 0 1.847-.717 3.488-1.846 4.77L18 22.51c3.59-2.05 6-5.899 6-10.258C24 5.69 18.615.357 12 .357zm-.05 8.157a3.786 3.786 0 00-3.796 3.795 3.738 3.738 0 002.461 3.54L9.13 23.643h5.64l-1.435-7.795c1.385-.564 2.41-1.898 2.41-3.54a3.786 3.786 0 00-3.795-3.794z" }) + ] + } + ); +}); + +export { SiOpenvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.cjs new file mode 100644 index 000000000..346428cd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B5E2"; +const SiOpenwrt = React__namespace.forwardRef(function SiOpenwrt2({ title = "OpenWrt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 0c-3.906 0-7.4465 1.5949-10.006 4.1543l1.6953 1.6953c2.1278-2.1278 5.069-3.4395 8.3105-3.4395 3.2416 0 6.1833 1.3122 8.3105 3.4395l1.6953-1.6953c-2.56-2.5594-6.0999-4.1543-10.006-4.1543zm0 4.3203c-2.7091 0-5.1685 1.1138-6.9473 2.8926l1.6953 1.6953c1.346-1.346 3.2079-2.1777 5.252-2.1777 2.0435 0 3.9053 0.83172 5.252 2.1777l1.6953-1.6953c-1.7782-1.7782-4.2381-2.8926-6.9473-2.8926zm-7.7285 3.7559c-1.3295 1.6792-2.1113 3.7906-2.1113 6.084 0 5.4189 4.4216 9.8398 9.8398 9.8398 5.4183 0 9.8398-4.4209 9.8398-9.8398 0-2.2934-0.79833-4.4048-2.1113-6.084l-1.7129 1.7129c0.8974 1.2298 1.4297 2.7427 1.4297 4.3711 0 4.1053-3.34 7.4473-7.4453 7.4473-4.1052 0-7.4473-3.342-7.4473-7.4473 0-1.6284 0.53174-3.1413 1.4297-4.3711l-1.7109-1.7129zm7.7285 0.56641c-1.5128 0-2.8928 0.61633-3.9062 1.6133l1.6953 1.6953c1.2219-1.2195 3.2006-1.2195 4.4219 0l1.6953-1.6953c-1.0354-1.0361-2.4416-1.6176-3.9062-1.6133zm0 3.8887c-0.8997 0-1.6289 0.72911-1.6289 1.6289 0 0.8992 0.72921 1.6289 1.6289 1.6289 0.8998 0 1.6289-0.72971 1.6289-1.6289-0.0019-0.8992-0.72971-1.6277-1.6289-1.6289z" }) + ] + } + ); +}); + +exports.default = SiOpenwrt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.d.ts new file mode 100644 index 000000000..430d37c69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B5E2"; +declare const SiOpenwrt: IconType; +export { SiOpenwrt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.mjs new file mode 100644 index 000000000..3d0a8d8f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenwrt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B5E2"; +const SiOpenwrt = React.forwardRef(function SiOpenwrt2({ title = "OpenWrt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 0c-3.906 0-7.4465 1.5949-10.006 4.1543l1.6953 1.6953c2.1278-2.1278 5.069-3.4395 8.3105-3.4395 3.2416 0 6.1833 1.3122 8.3105 3.4395l1.6953-1.6953c-2.56-2.5594-6.0999-4.1543-10.006-4.1543zm0 4.3203c-2.7091 0-5.1685 1.1138-6.9473 2.8926l1.6953 1.6953c1.346-1.346 3.2079-2.1777 5.252-2.1777 2.0435 0 3.9053 0.83172 5.252 2.1777l1.6953-1.6953c-1.7782-1.7782-4.2381-2.8926-6.9473-2.8926zm-7.7285 3.7559c-1.3295 1.6792-2.1113 3.7906-2.1113 6.084 0 5.4189 4.4216 9.8398 9.8398 9.8398 5.4183 0 9.8398-4.4209 9.8398-9.8398 0-2.2934-0.79833-4.4048-2.1113-6.084l-1.7129 1.7129c0.8974 1.2298 1.4297 2.7427 1.4297 4.3711 0 4.1053-3.34 7.4473-7.4453 7.4473-4.1052 0-7.4473-3.342-7.4473-7.4473 0-1.6284 0.53174-3.1413 1.4297-4.3711l-1.7109-1.7129zm7.7285 0.56641c-1.5128 0-2.8928 0.61633-3.9062 1.6133l1.6953 1.6953c1.2219-1.2195 3.2006-1.2195 4.4219 0l1.6953-1.6953c-1.0354-1.0361-2.4416-1.6176-3.9062-1.6133zm0 3.8887c-0.8997 0-1.6289 0.72911-1.6289 1.6289 0 0.8992 0.72921 1.6289 1.6289 1.6289 0.8998 0 1.6289-0.72971 1.6289-1.6289-0.0019-0.8992-0.72971-1.6277-1.6289-1.6289z" }) + ] + } + ); +}); + +export { SiOpenwrt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.cjs new file mode 100644 index 000000000..6208816e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E5EE4"; +const SiOpenzeppelin = React__namespace.forwardRef(function SiOpenzeppelin2({ title = "OpenZeppelin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.783 24H9.317l2.196-3.69a5.23 5.23 0 0 1 4.494-2.558h6.775ZM1.217 0h21.566l-3.718 6.247H1.217ZM9.76 9.763a5.73 5.73 0 0 1 4.92-2.795h4.01L8.498 24h-7.26Z" }) + ] + } + ); +}); + +exports.default = SiOpenzeppelin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.d.ts new file mode 100644 index 000000000..6f24ba81c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E5EE4"; +declare const SiOpenzeppelin: IconType; +export { SiOpenzeppelin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.mjs new file mode 100644 index 000000000..383b82758 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzeppelin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E5EE4"; +const SiOpenzeppelin = React.forwardRef(function SiOpenzeppelin2({ title = "OpenZeppelin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.783 24H9.317l2.196-3.69a5.23 5.23 0 0 1 4.494-2.558h6.775ZM1.217 0h21.566l-3.718 6.247H1.217ZM9.76 9.763a5.73 5.73 0 0 1 4.92-2.795h4.01L8.498 24h-7.26Z" }) + ] + } + ); +}); + +export { SiOpenzeppelin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.cjs new file mode 100644 index 000000000..206198141 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A667F"; +const SiOpenzfs = React__namespace.forwardRef(function SiOpenzfs2({ title = "OpenZFS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.3573 3.4035a.6337.6337 0 0 1-.9017 0 .64.64 0 0 1 0-.9043.6337.6337 0 0 1 .9017 0 .6287.6287 0 0 1 0 .9043m-.1407 17.8587c-.4348.4332-1.1383.4332-1.5731 0-.4349-.4396-.4349-1.1429 0-1.5762.4348-.4333 1.1447-.4333 1.5731 0a1.1038 1.1038 0 0 1 0 1.5762m-3.7218-2.1539c-.4348-.4333-.4348-1.1428 0-1.5698.4349-.4396 1.1447-.4396 1.5731 0 .4349.4332.4349 1.1428 0 1.5698-.4348.4396-1.1446.4396-1.5731 0m-.5755 2.1539c-.4349.4332-1.1447.4332-1.5732 0-.4348-.4396-.4348-1.1429 0-1.5762.4349-.4333 1.1447-.4333 1.5732 0 .4348.4333.4348 1.1429 0 1.5762m-3.7219-2.1539c-.4412-.4333-.4412-1.1428 0-1.5698a1.1032 1.1032 0 0 1 1.5732 0c.4348.4332.4348 1.1428 0 1.5698-.4349.4396-1.1447.4396-1.5732 0m-.5755 2.1539c-.4349.4332-1.1447.4332-1.5731 0-.4349-.4396-.4349-1.1429 0-1.5762.4348-.4333 1.1446-.4333 1.5731 0 .4349.4333.4349 1.1429 0 1.5762m-3.7282-2.1539c-.4349-.4333-.4349-1.1428 0-1.5698.4412-.4396 1.1447-.4396 1.5795 0 .4349.4332.4349 1.1428 0 1.5698-.4348.4333-1.1447.4396-1.5795 0m-.5692 2.1476c-.4348.4395-1.1446.4395-1.5731 0-.4412-.4333-.4412-1.1429 0-1.5699a1.1032 1.1032 0 0 1 1.5731 0c.4349.4333.4349 1.1429 0 1.5699M4.6043 2.5809c.2558-.2512.6587-.2512.908 0a.64.64 0 0 1 0 .9042c-.2493.2512-.6586.2512-.908 0-.243-.2512-.2494-.653 0-.9043M5.992 3.9686c.2494-.2512.6587-.2512.908 0a.64.64 0 0 1 0 .9042c-.2493.245-.6586.245-.908 0a.64.64 0 0 1 0-.9042m1.3877 1.3815c.2494-.245.6587-.245.908 0 .2495.2512.2495.6593 0 .9042-.2493.2512-.6586.2512-.908 0-.2494-.2449-.2494-.653 0-.9042m0-2.7693c.2494-.2511.6587-.2511.908 0a.64.64 0 0 1 0 .9043c-.2493.2512-.6586.2449-.908 0a.64.64 0 0 1 0-.9043m1.3877 4.157c.2494-.2449.6587-.2511.908 0a.64.64 0 0 1 0 .9043c-.2493.2511-.6586.2511-.908 0a.64.64 0 0 1 0-.9043m0-2.7692c.2494-.2512.6587-.2512.908 0a.64.64 0 0 1 0 .9042c-.2493.2512-.6586.2512-.908 0-.2494-.2511-.2494-.6593 0-.9042m1.3877-1.3878c.2494-.2511.6523-.2511.908 0a.64.64 0 0 1 0 .9043c-.2557.2512-.6586.2512-.908 0a.64.64 0 0 1 0-.9043m1.3877 4.157c.2494-.2511.6522-.2449.9016 0 .2494.2512.2494.6594 0 .9043-.243.2511-.6522.2511-.9016 0a.64.64 0 0 1 0-.9043m0-2.7692a.6337.6337 0 0 1 .9016 0c.2558.2449.2494.653 0 .9042-.2494.245-.6522.245-.9016 0-.2494-.2511-.2494-.6593 0-.9042m1.3877-1.3878a.6337.6337 0 0 1 .9016 0 .64.64 0 0 1 0 .9043.6337.6337 0 0 1-.9016 0 .64.64 0 0 1 0-.9043m.4284 12.8038c.4349-.4333 1.1447-.4333 1.5732 0 .4348.4396.4348 1.1429 0 1.5762-.4349.4332-1.1447.4332-1.5732 0-.4348-.4396-.4348-1.1429 0-1.5762m.4732-6.3924a.6337.6337 0 0 1-.9016 0c-.2494-.245-.2494-.6531 0-.9043a.6393.6393 0 0 1 .9016.0063c.2494.2449.2494.653 0 .898m0-2.7693a.6337.6337 0 0 1-.9016 0 .64.64 0 0 1 0-.9042.6337.6337 0 0 1 .9016 0 .64.64 0 0 1 0 .9042m-2.2893 3.2528c.2494-.245.6522-.245.9016 0 .2494.2511.2494.6593 0 .9042a.6337.6337 0 0 1-.9016 0 .64.64 0 0 1 0-.9042m-.339 3.7614c.4349-.4396 1.1447-.4396 1.5732 0a1.1038 1.1038 0 0 1 0 1.576c-.4349.4334-1.1383.4334-1.5732 0-.4348-.4395-.4348-1.1428 0-1.576m-.5691 2.1475c.4348.4396.4348 1.1429 0 1.5762-.4413.4332-1.1447.4332-1.5795 0-.4349-.4333-.4349-1.1429 0-1.5762.4348-.4333 1.1446-.4333 1.5795 0m-.4796-10.066c.2494-.2511.6523-.2511.908 0 .243.2513.243.6531 0 .9043-.2557.2512-.6586.2512-.908 0a.64.64 0 0 1 0-.9042m0 2.7755a.6394.6394 0 0 1 .9017-.0063c.2494.2512.2494.6593 0 .9105-.2494.245-.6523.245-.9017 0-.2494-.2512-.2494-.6593 0-.9042m4.163-1.3878a.6337.6337 0 0 1 .9017 0 .64.64 0 0 1 0 .9043.6337.6337 0 0 1-.9017 0 .64.64 0 0 1 0-.9043m0-2.7755c.2494-.2449.6523-.2449.9017 0 .2494.2512.2494.6594 0 .9043a.6337.6337 0 0 1-.9017 0c-.2494-.245-.2494-.6531 0-.9043m1.3877 1.3878a.6337.6337 0 0 1 .9017 0 .64.64 0 0 1 0 .9042.6337.6337 0 0 1-.9017 0 .64.64 0 0 1 0-.9042m0-2.7693a.6337.6337 0 0 1 .9017 0c.2494.245.2494.6531 0 .898a.6337.6337 0 0 1-.9017 0c-.2494-.2449-.2494-.653 0-.898m1.3877 1.3815c.2494-.2449.6523-.2449.9017 0a.64.64 0 0 1 0 .9043.6337.6337 0 0 1-.9017 0c-.2494-.245-.2494-.6531 0-.9043M24 1.8273C24 .8226 23.1878 0 22.171 0H1.8354C.825 0 0 .8163 0 1.8273V8.81h2.7242L0 15.19v6.9764C0 23.1711.8185 24 1.8353 24h20.3358C23.1815 24 24 23.1774 24 22.1664V15.19h-2.7242L24 8.81Z" }) + ] + } + ); +}); + +exports.default = SiOpenzfs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.d.ts new file mode 100644 index 000000000..895f80609 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A667F"; +declare const SiOpenzfs: IconType; +export { SiOpenzfs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.mjs new file mode 100644 index 000000000..f96359acd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpenzfs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A667F"; +const SiOpenzfs = React.forwardRef(function SiOpenzfs2({ title = "OpenZFS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.3573 3.4035a.6337.6337 0 0 1-.9017 0 .64.64 0 0 1 0-.9043.6337.6337 0 0 1 .9017 0 .6287.6287 0 0 1 0 .9043m-.1407 17.8587c-.4348.4332-1.1383.4332-1.5731 0-.4349-.4396-.4349-1.1429 0-1.5762.4348-.4333 1.1447-.4333 1.5731 0a1.1038 1.1038 0 0 1 0 1.5762m-3.7218-2.1539c-.4348-.4333-.4348-1.1428 0-1.5698.4349-.4396 1.1447-.4396 1.5731 0 .4349.4332.4349 1.1428 0 1.5698-.4348.4396-1.1446.4396-1.5731 0m-.5755 2.1539c-.4349.4332-1.1447.4332-1.5732 0-.4348-.4396-.4348-1.1429 0-1.5762.4349-.4333 1.1447-.4333 1.5732 0 .4348.4333.4348 1.1429 0 1.5762m-3.7219-2.1539c-.4412-.4333-.4412-1.1428 0-1.5698a1.1032 1.1032 0 0 1 1.5732 0c.4348.4332.4348 1.1428 0 1.5698-.4349.4396-1.1447.4396-1.5732 0m-.5755 2.1539c-.4349.4332-1.1447.4332-1.5731 0-.4349-.4396-.4349-1.1429 0-1.5762.4348-.4333 1.1446-.4333 1.5731 0 .4349.4333.4349 1.1429 0 1.5762m-3.7282-2.1539c-.4349-.4333-.4349-1.1428 0-1.5698.4412-.4396 1.1447-.4396 1.5795 0 .4349.4332.4349 1.1428 0 1.5698-.4348.4333-1.1447.4396-1.5795 0m-.5692 2.1476c-.4348.4395-1.1446.4395-1.5731 0-.4412-.4333-.4412-1.1429 0-1.5699a1.1032 1.1032 0 0 1 1.5731 0c.4349.4333.4349 1.1429 0 1.5699M4.6043 2.5809c.2558-.2512.6587-.2512.908 0a.64.64 0 0 1 0 .9042c-.2493.2512-.6586.2512-.908 0-.243-.2512-.2494-.653 0-.9043M5.992 3.9686c.2494-.2512.6587-.2512.908 0a.64.64 0 0 1 0 .9042c-.2493.245-.6586.245-.908 0a.64.64 0 0 1 0-.9042m1.3877 1.3815c.2494-.245.6587-.245.908 0 .2495.2512.2495.6593 0 .9042-.2493.2512-.6586.2512-.908 0-.2494-.2449-.2494-.653 0-.9042m0-2.7693c.2494-.2511.6587-.2511.908 0a.64.64 0 0 1 0 .9043c-.2493.2512-.6586.2449-.908 0a.64.64 0 0 1 0-.9043m1.3877 4.157c.2494-.2449.6587-.2511.908 0a.64.64 0 0 1 0 .9043c-.2493.2511-.6586.2511-.908 0a.64.64 0 0 1 0-.9043m0-2.7692c.2494-.2512.6587-.2512.908 0a.64.64 0 0 1 0 .9042c-.2493.2512-.6586.2512-.908 0-.2494-.2511-.2494-.6593 0-.9042m1.3877-1.3878c.2494-.2511.6523-.2511.908 0a.64.64 0 0 1 0 .9043c-.2557.2512-.6586.2512-.908 0a.64.64 0 0 1 0-.9043m1.3877 4.157c.2494-.2511.6522-.2449.9016 0 .2494.2512.2494.6594 0 .9043-.243.2511-.6522.2511-.9016 0a.64.64 0 0 1 0-.9043m0-2.7692a.6337.6337 0 0 1 .9016 0c.2558.2449.2494.653 0 .9042-.2494.245-.6522.245-.9016 0-.2494-.2511-.2494-.6593 0-.9042m1.3877-1.3878a.6337.6337 0 0 1 .9016 0 .64.64 0 0 1 0 .9043.6337.6337 0 0 1-.9016 0 .64.64 0 0 1 0-.9043m.4284 12.8038c.4349-.4333 1.1447-.4333 1.5732 0 .4348.4396.4348 1.1429 0 1.5762-.4349.4332-1.1447.4332-1.5732 0-.4348-.4396-.4348-1.1429 0-1.5762m.4732-6.3924a.6337.6337 0 0 1-.9016 0c-.2494-.245-.2494-.6531 0-.9043a.6393.6393 0 0 1 .9016.0063c.2494.2449.2494.653 0 .898m0-2.7693a.6337.6337 0 0 1-.9016 0 .64.64 0 0 1 0-.9042.6337.6337 0 0 1 .9016 0 .64.64 0 0 1 0 .9042m-2.2893 3.2528c.2494-.245.6522-.245.9016 0 .2494.2511.2494.6593 0 .9042a.6337.6337 0 0 1-.9016 0 .64.64 0 0 1 0-.9042m-.339 3.7614c.4349-.4396 1.1447-.4396 1.5732 0a1.1038 1.1038 0 0 1 0 1.576c-.4349.4334-1.1383.4334-1.5732 0-.4348-.4395-.4348-1.1428 0-1.576m-.5691 2.1475c.4348.4396.4348 1.1429 0 1.5762-.4413.4332-1.1447.4332-1.5795 0-.4349-.4333-.4349-1.1429 0-1.5762.4348-.4333 1.1446-.4333 1.5795 0m-.4796-10.066c.2494-.2511.6523-.2511.908 0 .243.2513.243.6531 0 .9043-.2557.2512-.6586.2512-.908 0a.64.64 0 0 1 0-.9042m0 2.7755a.6394.6394 0 0 1 .9017-.0063c.2494.2512.2494.6593 0 .9105-.2494.245-.6523.245-.9017 0-.2494-.2512-.2494-.6593 0-.9042m4.163-1.3878a.6337.6337 0 0 1 .9017 0 .64.64 0 0 1 0 .9043.6337.6337 0 0 1-.9017 0 .64.64 0 0 1 0-.9043m0-2.7755c.2494-.2449.6523-.2449.9017 0 .2494.2512.2494.6594 0 .9043a.6337.6337 0 0 1-.9017 0c-.2494-.245-.2494-.6531 0-.9043m1.3877 1.3878a.6337.6337 0 0 1 .9017 0 .64.64 0 0 1 0 .9042.6337.6337 0 0 1-.9017 0 .64.64 0 0 1 0-.9042m0-2.7693a.6337.6337 0 0 1 .9017 0c.2494.245.2494.6531 0 .898a.6337.6337 0 0 1-.9017 0c-.2494-.2449-.2494-.653 0-.898m1.3877 1.3815c.2494-.2449.6523-.2449.9017 0a.64.64 0 0 1 0 .9043.6337.6337 0 0 1-.9017 0c-.2494-.245-.2494-.6531 0-.9043M24 1.8273C24 .8226 23.1878 0 22.171 0H1.8354C.825 0 0 .8163 0 1.8273V8.81h2.7242L0 15.19v6.9764C0 23.1711.8185 24 1.8353 24h20.3358C23.1815 24 24 23.1774 24 22.1664V15.19h-2.7242L24 8.81Z" }) + ] + } + ); +}); + +export { SiOpenzfs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.cjs new file mode 100644 index 000000000..1e28856c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1B2D"; +const SiOpera = React__namespace.forwardRef(function SiOpera2({ title = "Opera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.051 5.238c-1.328 1.566-2.186 3.883-2.246 6.48v.564c.061 2.598.918 4.912 2.246 6.479 1.721 2.236 4.279 3.654 7.139 3.654 1.756 0 3.4-.537 4.807-1.471C17.879 22.846 15.074 24 12 24c-.192 0-.383-.004-.57-.014C5.064 23.689 0 18.436 0 12 0 5.371 5.373 0 12 0h.045c3.055.012 5.84 1.166 7.953 3.055-1.408-.93-3.051-1.471-4.81-1.471-2.858 0-5.417 1.42-7.14 3.654h.003zM24 12c0 3.556-1.545 6.748-4.002 8.945-3.078 1.5-5.946.451-6.896-.205 3.023-.664 5.307-4.32 5.307-8.74 0-4.422-2.283-8.075-5.307-8.74.949-.654 3.818-1.703 6.896-.205C22.455 5.25 24 8.445 24 12z" }) + ] + } + ); +}); + +exports.default = SiOpera; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.d.ts new file mode 100644 index 000000000..5a3ada555 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1B2D"; +declare const SiOpera: IconType; +export { SiOpera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.mjs new file mode 100644 index 000000000..3df75a559 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpera.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1B2D"; +const SiOpera = React.forwardRef(function SiOpera2({ title = "Opera", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.051 5.238c-1.328 1.566-2.186 3.883-2.246 6.48v.564c.061 2.598.918 4.912 2.246 6.479 1.721 2.236 4.279 3.654 7.139 3.654 1.756 0 3.4-.537 4.807-1.471C17.879 22.846 15.074 24 12 24c-.192 0-.383-.004-.57-.014C5.064 23.689 0 18.436 0 12 0 5.371 5.373 0 12 0h.045c3.055.012 5.84 1.166 7.953 3.055-1.408-.93-3.051-1.471-4.81-1.471-2.858 0-5.417 1.42-7.14 3.654h.003zM24 12c0 3.556-1.545 6.748-4.002 8.945-3.078 1.5-5.946.451-6.896-.205 3.023-.664 5.307-4.32 5.307-8.74 0-4.422-2.283-8.075-5.307-8.74.949-.654 3.818-1.703 6.896-.205C22.455 5.25 24 8.445 24 12z" }) + ] + } + ); +}); + +export { SiOpera as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.cjs new file mode 100644 index 000000000..7a9fe6dc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE2950"; +const SiOperagx = React__namespace.forwardRef(function SiOperagx2({ title = "Opera GX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12.01c0 3.412-1.462 6.674-4.013 8.943A12 12 0 0 1 11.992 24c-.178 0-.385-.019-.563-.019C5.016 23.681 0 18.403 0 11.991 0 5.37 5.372 0 11.99 0h.038c2.944 0 5.775 1.087 7.96 3.047A12.04 12.04 0 0 1 24 12.009zm-9.14 10.443c-2.729-.056-5.279-1.397-7.041-3.684-1.388-1.64-2.203-4.013-2.269-6.516v-.544c.047-2.521.881-4.893 2.269-6.534 1.744-2.269 4.294-3.61 7.012-3.666a10.67 10.67 0 0 0-2.784-.384h-.038c-5.99 0-10.865 4.894-10.865 10.866 0 5.812 4.528 10.584 10.34 10.847a10.087 10.087 0 0 0 3.375-.385zm7.996-10.444c0-3.065-1.303-5.99-3.59-8.053a7.69 7.69 0 0 0-4.228-1.284c-2.447 0-4.754 1.181-6.357 3.244-1.247 1.462-1.969 3.59-2.025 5.83v.526c.056 2.25.778 4.369 2.006 5.812l.02.02c1.602 2.071 3.909 3.252 6.355 3.252a7.69 7.69 0 0 0 4.229-1.284 10.894 10.894 0 0 0 3.59-8.063zm-3.75 0c0 4.05-2.184 7.341-4.912 7.585 2.128-1.388 3.61-4.257 3.61-7.585 0-3.328-1.463-6.197-3.61-7.575 2.728.244 4.912 3.525 4.912 7.575z" }) + ] + } + ); +}); + +exports.default = SiOperagx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.d.ts new file mode 100644 index 000000000..1fe63946d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE2950"; +declare const SiOperagx: IconType; +export { SiOperagx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.mjs new file mode 100644 index 000000000..d6ae7e16b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOperagx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE2950"; +const SiOperagx = React.forwardRef(function SiOperagx2({ title = "Opera GX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12.01c0 3.412-1.462 6.674-4.013 8.943A12 12 0 0 1 11.992 24c-.178 0-.385-.019-.563-.019C5.016 23.681 0 18.403 0 11.991 0 5.37 5.372 0 11.99 0h.038c2.944 0 5.775 1.087 7.96 3.047A12.04 12.04 0 0 1 24 12.009zm-9.14 10.443c-2.729-.056-5.279-1.397-7.041-3.684-1.388-1.64-2.203-4.013-2.269-6.516v-.544c.047-2.521.881-4.893 2.269-6.534 1.744-2.269 4.294-3.61 7.012-3.666a10.67 10.67 0 0 0-2.784-.384h-.038c-5.99 0-10.865 4.894-10.865 10.866 0 5.812 4.528 10.584 10.34 10.847a10.087 10.087 0 0 0 3.375-.385zm7.996-10.444c0-3.065-1.303-5.99-3.59-8.053a7.69 7.69 0 0 0-4.228-1.284c-2.447 0-4.754 1.181-6.357 3.244-1.247 1.462-1.969 3.59-2.025 5.83v.526c.056 2.25.778 4.369 2.006 5.812l.02.02c1.602 2.071 3.909 3.252 6.355 3.252a7.69 7.69 0 0 0 4.229-1.284 10.894 10.894 0 0 0 3.59-8.063zm-3.75 0c0 4.05-2.184 7.341-4.912 7.585 2.128-1.388 3.61-4.257 3.61-7.585 0-3.328-1.463-6.197-3.61-7.575 2.728.244 4.912 3.525 4.912 7.575z" }) + ] + } + ); +}); + +export { SiOperagx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.cjs new file mode 100644 index 000000000..e3c4bae51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E44A20"; +const SiOpnsense = React__namespace.forwardRef(function SiOpnsense2({ title = "OPNsense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.25 0v5.25h13.5v13.5H24V7.5L16.5 0Zm13.5 18.75H5.25V5.25H0V16.5L7.5 24h11.25Z" }) + ] + } + ); +}); + +exports.default = SiOpnsense; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.d.ts new file mode 100644 index 000000000..02cfeeb87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E44A20"; +declare const SiOpnsense: IconType; +export { SiOpnsense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.mjs new file mode 100644 index 000000000..fe84327ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpnsense.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E44A20"; +const SiOpnsense = React.forwardRef(function SiOpnsense2({ title = "OPNsense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.25 0v5.25h13.5v13.5H24V7.5L16.5 0Zm13.5 18.75H5.25V5.25H0V16.5L7.5 24h11.25Z" }) + ] + } + ); +}); + +export { SiOpnsense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.cjs new file mode 100644 index 000000000..7fa4236fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D683D"; +const SiOppo = React__namespace.forwardRef(function SiOppo2({ title = "OPPO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.85 12.786h-.001C1.639 12.774.858 12.2.858 11.321s.781-1.452 1.99-1.465c1.21.013 1.992.588 1.992 1.465s-.782 1.453-1.99 1.465zm.034-3.638h-.073C1.156 9.175 0 10.068 0 11.32s1.156 2.147 2.811 2.174h.073c1.655-.027 2.811-.921 2.811-2.174S4.54 9.175 2.885 9.148zm18.27 3.638c-1.21-.012-1.992-.587-1.992-1.465s.782-1.452 1.991-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.035-3.638h-.073c-1.655.027-2.811.92-2.811 2.173s1.156 2.147 2.81 2.174h.074C22.844 13.468 24 12.574 24 11.32s-1.156-2.146-2.811-2.173zm-6.126 3.638c-1.21-.012-1.99-.587-1.99-1.465s.78-1.452 1.99-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.036-3.638h-.073c-.789.013-1.464.222-1.955.574v-.37h-.857v5.5h.857v-1.931c.49.351 1.166.56 1.954.574h.074c1.655-.027 2.81-.921 2.81-2.174s-1.155-2.146-2.81-2.173zm-6.144 3.638c-1.21-.012-1.99-.587-1.99-1.465s.78-1.452 1.99-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.037-3.638H8.92c-.789.013-1.464.222-1.955.574v-.37h-.856v5.5h.856v-1.931c.491.351 1.166.56 1.955.574a3.728 3.728 0 0 0 .073 0c1.655-.027 2.811-.921 2.811-2.174s-1.156-2.146-2.81-2.173z" }) + ] + } + ); +}); + +exports.default = SiOppo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.d.ts new file mode 100644 index 000000000..1cf2690a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D683D"; +declare const SiOppo: IconType; +export { SiOppo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.mjs new file mode 100644 index 000000000..ff5a81c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOppo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D683D"; +const SiOppo = React.forwardRef(function SiOppo2({ title = "OPPO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.85 12.786h-.001C1.639 12.774.858 12.2.858 11.321s.781-1.452 1.99-1.465c1.21.013 1.992.588 1.992 1.465s-.782 1.453-1.99 1.465zm.034-3.638h-.073C1.156 9.175 0 10.068 0 11.32s1.156 2.147 2.811 2.174h.073c1.655-.027 2.811-.921 2.811-2.174S4.54 9.175 2.885 9.148zm18.27 3.638c-1.21-.012-1.992-.587-1.992-1.465s.782-1.452 1.991-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.035-3.638h-.073c-1.655.027-2.811.92-2.811 2.173s1.156 2.147 2.81 2.174h.074C22.844 13.468 24 12.574 24 11.32s-1.156-2.146-2.811-2.173zm-6.126 3.638c-1.21-.012-1.99-.587-1.99-1.465s.78-1.452 1.99-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.036-3.638h-.073c-.789.013-1.464.222-1.955.574v-.37h-.857v5.5h.857v-1.931c.49.351 1.166.56 1.954.574h.074c1.655-.027 2.81-.921 2.81-2.174s-1.155-2.146-2.81-2.173zm-6.144 3.638c-1.21-.012-1.99-.587-1.99-1.465s.78-1.452 1.99-1.465c1.21.013 1.991.588 1.991 1.465s-.781 1.453-1.99 1.465zm.037-3.638H8.92c-.789.013-1.464.222-1.955.574v-.37h-.856v5.5h.856v-1.931c.491.351 1.166.56 1.955.574a3.728 3.728 0 0 0 .073 0c1.655-.027 2.811-.921 2.811-2.174s-1.156-2.146-2.81-2.173z" }) + ] + } + ); +}); + +export { SiOppo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.cjs new file mode 100644 index 000000000..2b81bf402 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#172B4D"; +const SiOpsgenie = React__namespace.forwardRef(function SiOpsgenie2({ title = "Opsgenie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002 0a5.988 5.988 0 1 1 0 11.975 5.988 5.988 0 0 1 0-11.975zm9.723 13.026h-.03l-4.527-2.242a.671.671 0 0 0-.876.268 22.408 22.408 0 0 1-4.306 5.217 22.407 22.407 0 0 1-4.286-5.2.671.671 0 0 0-.876-.269l-4.535 2.226h-.03a.671.671 0 0 0-.248.902 28.85 28.85 0 0 0 4.55 5.933l-.002.001c.024.025.05.048.075.072.335.335.676.664 1.027.981.081.074.165.144.247.217.315.278.632.555.96.82.144.117.295.227.441.341.277.216.552.434.837.639.44.318.888.625 1.346.917a.963.963 0 0 0 1.007.017c.487-.312.962-.64 1.428-.98.068-.05.132-.103.2-.153.358-.266.713-.537 1.06-.82.234-.19.46-.39.688-.588.17-.147.34-.291.506-.442.295-.268.58-.545.864-.825.061-.06.127-.118.188-.179l-.004-.002a28.852 28.852 0 0 0 4.565-5.949.671.671 0 0 0-.269-.902z" }) + ] + } + ); +}); + +exports.default = SiOpsgenie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.d.ts new file mode 100644 index 000000000..d5800737a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#172B4D"; +declare const SiOpsgenie: IconType; +export { SiOpsgenie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.mjs new file mode 100644 index 000000000..5a4344fd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpsgenie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#172B4D"; +const SiOpsgenie = React.forwardRef(function SiOpsgenie2({ title = "Opsgenie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002 0a5.988 5.988 0 1 1 0 11.975 5.988 5.988 0 0 1 0-11.975zm9.723 13.026h-.03l-4.527-2.242a.671.671 0 0 0-.876.268 22.408 22.408 0 0 1-4.306 5.217 22.407 22.407 0 0 1-4.286-5.2.671.671 0 0 0-.876-.269l-4.535 2.226h-.03a.671.671 0 0 0-.248.902 28.85 28.85 0 0 0 4.55 5.933l-.002.001c.024.025.05.048.075.072.335.335.676.664 1.027.981.081.074.165.144.247.217.315.278.632.555.96.82.144.117.295.227.441.341.277.216.552.434.837.639.44.318.888.625 1.346.917a.963.963 0 0 0 1.007.017c.487-.312.962-.64 1.428-.98.068-.05.132-.103.2-.153.358-.266.713-.537 1.06-.82.234-.19.46-.39.688-.588.17-.147.34-.291.506-.442.295-.268.58-.545.864-.825.061-.06.127-.118.188-.179l-.004-.002a28.852 28.852 0 0 0 4.565-5.949.671.671 0 0 0-.269-.902z" }) + ] + } + ); +}); + +export { SiOpsgenie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.cjs new file mode 100644 index 000000000..068864a40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A53E0"; +const SiOpslevel = React__namespace.forwardRef(function SiOpslevel2({ title = "OpsLevel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.246 4.86 13.527.411a3.074 3.074 0 0 0-3.071 0l-2.34 1.344v6.209l3.104-1.793a1.515 1.515 0 0 1 1.544 0l3.884 2.241c.482.282.764.78.764 1.328v4.482a1.54 1.54 0 0 1-.764 1.328l-3.884 2.241V24l8.482-4.897a3.082 3.082 0 0 0 1.544-2.656V7.532a3.054 3.054 0 0 0-1.544-2.672ZM6.588 14.222V2.652L2.754 4.876A3.082 3.082 0 0 0 1.21 7.532v8.915c0 1.095.581 2.108 1.544 2.656L11.236 24v-6.209L7.352 15.55a1.525 1.525 0 0 1-.764-1.328Z" }) + ] + } + ); +}); + +exports.default = SiOpslevel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.d.ts new file mode 100644 index 000000000..d7f219e1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A53E0"; +declare const SiOpslevel: IconType; +export { SiOpslevel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.mjs new file mode 100644 index 000000000..325102571 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOpslevel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A53E0"; +const SiOpslevel = React.forwardRef(function SiOpslevel2({ title = "OpsLevel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.246 4.86 13.527.411a3.074 3.074 0 0 0-3.071 0l-2.34 1.344v6.209l3.104-1.793a1.515 1.515 0 0 1 1.544 0l3.884 2.241c.482.282.764.78.764 1.328v4.482a1.54 1.54 0 0 1-.764 1.328l-3.884 2.241V24l8.482-4.897a3.082 3.082 0 0 0 1.544-2.656V7.532a3.054 3.054 0 0 0-1.544-2.672ZM6.588 14.222V2.652L2.754 4.876A3.082 3.082 0 0 0 1.21 7.532v8.915c0 1.095.581 2.108 1.544 2.656L11.236 24v-6.209L7.352 15.55a1.525 1.525 0 0 1-.764-1.328Z" }) + ] + } + ); +}); + +export { SiOpslevel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.cjs new file mode 100644 index 000000000..c96bbd555 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0420"; +const SiOptimism = React__namespace.forwardRef(function SiOptimism2({ title = "Optimism", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M9.6094 8.705c.4623 0 .8778.0784 1.2441.2345.3663.15.6532.3773.8633.6835.2101.3002.3164.6598.3164 1.0801 0 .1261-.0149.2864-.045.4785a20.4 20.4 0 0 1-.3241 1.5586c-.2102.8227-.5735 1.4375-1.0899 1.8457-.5164.4023-1.2076.6036-2.0722.6036-.7146 0-1.2996-.1677-1.756-.504q-.6755-.5133-.6757-1.459 0-.198.045-.4863c.078-.4323.1898-.9521.334-1.5586.4082-1.6512 1.4608-2.4765 3.16-2.4765m4.1699.09h2.3965q.9999-.0001 1.6035.414c.4083.2762.6113.6749.6113 1.1973 0 .15-.0186.3066-.0547.4687-.15.6905-.4518 1.201-.9082 1.5313-.4503.3302-1.0689.496-1.8554.496h-1.2168l-.414 1.9727a.26.26 0 0 1-.0997.1621c-.054.042-.11.0625-.17.0625h-1.2245c-.066 0-.1183-.0204-.1543-.0625-.03-.048-.0394-.102-.0274-.1621l1.2442-5.8555a.256.256 0 0 1 .0976-.162c.054-.042.1118-.0626.1719-.0626m-4.2871 1.207c-.3363 0-.6231.0987-.8633.2968-.2341.1982-.4019.5019-.5039.9102-.1081.4023-.2162.8941-.3242 1.4765a1.93 1.93 0 0 0-.0371.379c0 .5524.2888.828.8652.828q.5043.0002.8555-.2968c.2402-.1981.4116-.5019.5136-.9102.1381-.5644.2425-1.0562.3145-1.4765a2.1 2.1 0 0 0 .0371-.3887c0-.5464-.287-.8183-.8574-.8183m5.4492.0449-.3418 1.6113h1.0352c.2521 0 .472-.069.6582-.207.1921-.1381.3169-.3356.377-.5938.018-.102.0273-.1915.0273-.2695 0-.1742-.0503-.3064-.1524-.3965-.102-.096-.2772-.1445-.5234-.1445z" }) + ] + } + ); +}); + +exports.default = SiOptimism; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.d.ts new file mode 100644 index 000000000..c02d8d184 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0420"; +declare const SiOptimism: IconType; +export { SiOptimism as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.mjs new file mode 100644 index 000000000..39d9b8982 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOptimism.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0420"; +const SiOptimism = React.forwardRef(function SiOptimism2({ title = "Optimism", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0M9.6094 8.705c.4623 0 .8778.0784 1.2441.2345.3663.15.6532.3773.8633.6835.2101.3002.3164.6598.3164 1.0801 0 .1261-.0149.2864-.045.4785a20.4 20.4 0 0 1-.3241 1.5586c-.2102.8227-.5735 1.4375-1.0899 1.8457-.5164.4023-1.2076.6036-2.0722.6036-.7146 0-1.2996-.1677-1.756-.504q-.6755-.5133-.6757-1.459 0-.198.045-.4863c.078-.4323.1898-.9521.334-1.5586.4082-1.6512 1.4608-2.4765 3.16-2.4765m4.1699.09h2.3965q.9999-.0001 1.6035.414c.4083.2762.6113.6749.6113 1.1973 0 .15-.0186.3066-.0547.4687-.15.6905-.4518 1.201-.9082 1.5313-.4503.3302-1.0689.496-1.8554.496h-1.2168l-.414 1.9727a.26.26 0 0 1-.0997.1621c-.054.042-.11.0625-.17.0625h-1.2245c-.066 0-.1183-.0204-.1543-.0625-.03-.048-.0394-.102-.0274-.1621l1.2442-5.8555a.256.256 0 0 1 .0976-.162c.054-.042.1118-.0626.1719-.0626m-4.2871 1.207c-.3363 0-.6231.0987-.8633.2968-.2341.1982-.4019.5019-.5039.9102-.1081.4023-.2162.8941-.3242 1.4765a1.93 1.93 0 0 0-.0371.379c0 .5524.2888.828.8652.828q.5043.0002.8555-.2968c.2402-.1981.4116-.5019.5136-.9102.1381-.5644.2425-1.0562.3145-1.4765a2.1 2.1 0 0 0 .0371-.3887c0-.5464-.287-.8183-.8574-.8183m5.4492.0449-.3418 1.6113h1.0352c.2521 0 .472-.069.6582-.207.1921-.1381.3169-.3356.377-.5938.018-.102.0273-.1915.0273-.2695 0-.1742-.0503-.3064-.1524-.3965-.102-.096-.2772-.1445-.5234-.1445z" }) + ] + } + ); +}); + +export { SiOptimism as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.cjs new file mode 100644 index 000000000..e55fad1cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002C76"; +const SiOptuna = React__namespace.forwardRef(function SiOptuna2({ title = "Optuna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.926 10.016c-1.324.328-2.286 1.499-2.09 2.56.285 1.542 2.736 1.892 4.092.59.493-.47.7-.886.7-1.433.022-1.247-1.269-2.056-2.702-1.717zm.843 1.29c.492.438.054 1.456-.624 1.456-.47 0-.711-.241-.711-.722 0-.722.831-1.193 1.335-.733zm-2.32-4.496a6.411 6.411 0 0 0-4.376 3.83 4.704 4.704 0 0 0 .175 3.325 6.87 6.87 0 0 0 2.21 2.473 7.735 7.735 0 0 0 3.15 1.094c3.786.35 7.08-3.075 6.346-6.608a5.47 5.47 0 0 0-4.08-4.125c-.788-.208-2.626-.197-3.425.011zm3.49 1.762a3.5 3.5 0 0 1 2.2 2.155c.076.262.12.744.087 1.258a3.063 3.063 0 0 1-.416 1.52 4.748 4.748 0 0 1-2.057 1.959c-.569.274-.733.306-1.827.306-1.072 0-1.269-.032-1.827-.295-1.882-.875-2.702-2.79-1.925-4.486a4.803 4.803 0 0 1 5.765-2.417Zm-3.643-4.836a9.66 9.66 0 0 0-2.91 1.05c-1.86.963-3.337 2.407-4.168 4.092a6.17 6.17 0 0 0-.733 3.5c.098 2.069.787 3.513 2.483 5.197 1.422 1.4 2.823 2.189 4.912 2.757 1.204.329 3.447.318 4.672-.01a9.354 9.354 0 0 0 6.685-6.576c.251-.962.262-2.877.01-3.829a8.6 8.6 0 0 0-6.039-5.973 8.194 8.194 0 0 0-2.57-.328c-1.084-.022-1.828.01-2.342.12zm4.07 1.214a6.674 6.674 0 0 1 3.25 1.959 6.017 6.017 0 0 1 2.034 4.77c.033 4.277-3.326 7.538-7.778 7.56-1.85 0-3.283-.45-4.65-1.467A6.531 6.531 0 0 1 5.099 9.59c1.707-3.61 5.635-5.58 9.267-4.639ZM11.379.574c-3.413.503-6.017 1.805-8.15 4.048A11.74 11.74 0 0 0 .297 9.797a8.577 8.577 0 0 0-.285 2.691c0 1.368.033 1.794.24 2.571a12.494 12.494 0 0 0 2.134 4.158 12.472 12.472 0 0 0 11.302 4.102 12.21 12.21 0 0 0 9.091-6.903 10.973 10.973 0 0 0 1.204-4.912c.043-1.259.01-1.718-.165-2.571a9.332 9.332 0 0 0-2.746-5.153A10.722 10.722 0 0 0 15.668.826c-.875-.22-3.49-.372-4.289-.252Zm3.862 1.838a9.846 9.846 0 0 1 7.32 6.849 12.253 12.253 0 0 1 0 4.463 11.301 11.301 0 0 1-8.064 7.878 8.38 8.38 0 0 1-2.735.273 8.424 8.424 0 0 1-2.538-.23 10.897 10.897 0 0 1-7.483-7.297 7.002 7.002 0 0 1-.307-2.462c-.01-1.236.033-1.619.241-2.34 1.061-3.655 4.136-6.302 8.391-7.189a17.067 17.067 0 0 1 5.175.055z" }) + ] + } + ); +}); + +exports.default = SiOptuna; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.d.ts new file mode 100644 index 000000000..064494b78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002C76"; +declare const SiOptuna: IconType; +export { SiOptuna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.mjs new file mode 100644 index 000000000..1e6ed40cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOptuna.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002C76"; +const SiOptuna = React.forwardRef(function SiOptuna2({ title = "Optuna", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.926 10.016c-1.324.328-2.286 1.499-2.09 2.56.285 1.542 2.736 1.892 4.092.59.493-.47.7-.886.7-1.433.022-1.247-1.269-2.056-2.702-1.717zm.843 1.29c.492.438.054 1.456-.624 1.456-.47 0-.711-.241-.711-.722 0-.722.831-1.193 1.335-.733zm-2.32-4.496a6.411 6.411 0 0 0-4.376 3.83 4.704 4.704 0 0 0 .175 3.325 6.87 6.87 0 0 0 2.21 2.473 7.735 7.735 0 0 0 3.15 1.094c3.786.35 7.08-3.075 6.346-6.608a5.47 5.47 0 0 0-4.08-4.125c-.788-.208-2.626-.197-3.425.011zm3.49 1.762a3.5 3.5 0 0 1 2.2 2.155c.076.262.12.744.087 1.258a3.063 3.063 0 0 1-.416 1.52 4.748 4.748 0 0 1-2.057 1.959c-.569.274-.733.306-1.827.306-1.072 0-1.269-.032-1.827-.295-1.882-.875-2.702-2.79-1.925-4.486a4.803 4.803 0 0 1 5.765-2.417Zm-3.643-4.836a9.66 9.66 0 0 0-2.91 1.05c-1.86.963-3.337 2.407-4.168 4.092a6.17 6.17 0 0 0-.733 3.5c.098 2.069.787 3.513 2.483 5.197 1.422 1.4 2.823 2.189 4.912 2.757 1.204.329 3.447.318 4.672-.01a9.354 9.354 0 0 0 6.685-6.576c.251-.962.262-2.877.01-3.829a8.6 8.6 0 0 0-6.039-5.973 8.194 8.194 0 0 0-2.57-.328c-1.084-.022-1.828.01-2.342.12zm4.07 1.214a6.674 6.674 0 0 1 3.25 1.959 6.017 6.017 0 0 1 2.034 4.77c.033 4.277-3.326 7.538-7.778 7.56-1.85 0-3.283-.45-4.65-1.467A6.531 6.531 0 0 1 5.099 9.59c1.707-3.61 5.635-5.58 9.267-4.639ZM11.379.574c-3.413.503-6.017 1.805-8.15 4.048A11.74 11.74 0 0 0 .297 9.797a8.577 8.577 0 0 0-.285 2.691c0 1.368.033 1.794.24 2.571a12.494 12.494 0 0 0 2.134 4.158 12.472 12.472 0 0 0 11.302 4.102 12.21 12.21 0 0 0 9.091-6.903 10.973 10.973 0 0 0 1.204-4.912c.043-1.259.01-1.718-.165-2.571a9.332 9.332 0 0 0-2.746-5.153A10.722 10.722 0 0 0 15.668.826c-.875-.22-3.49-.372-4.289-.252Zm3.862 1.838a9.846 9.846 0 0 1 7.32 6.849 12.253 12.253 0 0 1 0 4.463 11.301 11.301 0 0 1-8.064 7.878 8.38 8.38 0 0 1-2.735.273 8.424 8.424 0 0 1-2.538-.23 10.897 10.897 0 0 1-7.483-7.297 7.002 7.002 0 0 1-.307-2.462c-.01-1.236.033-1.619.241-2.34 1.061-3.655 4.136-6.302 8.391-7.189a17.067 17.067 0 0 1 5.175.055z" }) + ] + } + ); +}); + +export { SiOptuna as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.cjs new file mode 100644 index 000000000..6c23b2b10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7900"; +const SiOrange = React__namespace.forwardRef(function SiOrange2({ title = "Orange", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h24v24H0V0Zm3.43 20.572h17.143v-3.429H3.43v3.429Z" }) + ] + } + ); +}); + +exports.default = SiOrange; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.d.ts new file mode 100644 index 000000000..e3ac3c218 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7900"; +declare const SiOrange: IconType; +export { SiOrange as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.mjs new file mode 100644 index 000000000..0ba83ecb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrange.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7900"; +const SiOrange = React.forwardRef(function SiOrange2({ title = "Orange", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0h24v24H0V0Zm3.43 20.572h17.143v-3.429H3.43v3.429Z" }) + ] + } + ); +}); + +export { SiOrange as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.cjs new file mode 100644 index 000000000..8bec4c67e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A6CE39"; +const SiOrcid = React__namespace.forwardRef(function SiOrcid2({ title = "ORCID", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zM7.369 4.378c.525 0 .947.431.947.947s-.422.947-.947.947a.95.95 0 0 1-.947-.947c0-.525.422-.947.947-.947zm-.722 3.038h1.444v10.041H6.647V7.416zm3.562 0h3.9c3.712 0 5.344 2.653 5.344 5.025 0 2.578-2.016 5.025-5.325 5.025h-3.919V7.416zm1.444 1.303v7.444h2.297c3.272 0 4.022-2.484 4.022-3.722 0-2.016-1.284-3.722-4.097-3.722h-2.222z" }) + ] + } + ); +}); + +exports.default = SiOrcid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.d.ts new file mode 100644 index 000000000..b8c57aa94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A6CE39"; +declare const SiOrcid: IconType; +export { SiOrcid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.mjs new file mode 100644 index 000000000..e3fb39cae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrcid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A6CE39"; +const SiOrcid = React.forwardRef(function SiOrcid2({ title = "ORCID", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zM7.369 4.378c.525 0 .947.431.947.947s-.422.947-.947.947a.95.95 0 0 1-.947-.947c0-.525.422-.947.947-.947zm-.722 3.038h1.444v10.041H6.647V7.416zm3.562 0h3.9c3.712 0 5.344 2.653 5.344 5.025 0 2.578-2.016 5.025-5.325 5.025h-3.919V7.416zm1.444 1.303v7.444h2.297c3.272 0 4.022-2.484 4.022-3.722 0-2.016-1.284-3.722-4.097-3.722h-2.222z" }) + ] + } + ); +}); + +export { SiOrcid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.cjs new file mode 100644 index 000000000..46c669533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D3002D"; +const SiOreilly = React__namespace.forwardRef(function SiOreilly2({ title = "OReilly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.07 10.679v-.672H9.32v3.97h2.751v-.656H9.975v-1h2.002v-.657H9.975v-.985zm2.049 3.299v-3.971h.656v3.314h1.908v.657zm3.111 0v-3.971h.657v3.314h1.907v.657zm-4.456-3.971h.657v3.97h-.657zM1.079 11.023c-.25.25-.407.594-.407.985 0 .39.157.735.407 1a1.418 1.418 0 0 0 1.986 0c.25-.265.406-.61.406-1 0-.391-.156-.735-.407-.985a1.418 1.418 0 0 0-1.985 0M0 12.008c0-1.142.922-2.064 2.064-2.064 1.141 0 2.064.922 2.064 2.064a2.062 2.062 0 0 1-2.064 2.064A2.062 2.062 0 0 1 0 12.008Zm6.176-.344v-.985h1.329a.5.5 0 0 1 .5.485c0 .281-.234.5-.5.5zm1.657.61c.485-.141.829-.579.829-1.11 0-.642-.516-1.157-1.157-1.157H5.519v3.97h.657v-1.656h.922l.985 1.657h.782zM5.05 10.429a.477.477 0 0 1-.485.484.468.468 0 0 1-.484-.484c0-.266.203-.485.484-.485.266 0 .485.219.485.485zm17.684-.422h-.798l-1.016 1.47-1.016-1.47h-.813l1.485 2.157v1.814h.672v-1.814zm.781.813a.404.404 0 0 1-.406-.407c0-.219.172-.406.406-.406.22 0 .407.187.407.406a.414.414 0 0 1-.407.407m0-.892a.487.487 0 0 0-.484.485c0 .266.219.485.484.485a.487.487 0 0 0 .485-.485.487.487 0 0 0-.485-.485zm-.125.313h.203c.032 0 .063.031.063.063a.067.067 0 0 1-.063.062h-.203zm.344.063a.14.14 0 0 0-.14-.141h-.282v.5h.078v-.219h.14l.11.22h.094l-.11-.22a.15.15 0 0 0 .11-.14" }) + ] + } + ); +}); + +exports.default = SiOreilly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.d.ts new file mode 100644 index 000000000..bc83014cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D3002D"; +declare const SiOreilly: IconType; +export { SiOreilly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.mjs new file mode 100644 index 000000000..195f7f8a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOreilly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D3002D"; +const SiOreilly = React.forwardRef(function SiOreilly2({ title = "OReilly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.07 10.679v-.672H9.32v3.97h2.751v-.656H9.975v-1h2.002v-.657H9.975v-.985zm2.049 3.299v-3.971h.656v3.314h1.908v.657zm3.111 0v-3.971h.657v3.314h1.907v.657zm-4.456-3.971h.657v3.97h-.657zM1.079 11.023c-.25.25-.407.594-.407.985 0 .39.157.735.407 1a1.418 1.418 0 0 0 1.986 0c.25-.265.406-.61.406-1 0-.391-.156-.735-.407-.985a1.418 1.418 0 0 0-1.985 0M0 12.008c0-1.142.922-2.064 2.064-2.064 1.141 0 2.064.922 2.064 2.064a2.062 2.062 0 0 1-2.064 2.064A2.062 2.062 0 0 1 0 12.008Zm6.176-.344v-.985h1.329a.5.5 0 0 1 .5.485c0 .281-.234.5-.5.5zm1.657.61c.485-.141.829-.579.829-1.11 0-.642-.516-1.157-1.157-1.157H5.519v3.97h.657v-1.656h.922l.985 1.657h.782zM5.05 10.429a.477.477 0 0 1-.485.484.468.468 0 0 1-.484-.484c0-.266.203-.485.484-.485.266 0 .485.219.485.485zm17.684-.422h-.798l-1.016 1.47-1.016-1.47h-.813l1.485 2.157v1.814h.672v-1.814zm.781.813a.404.404 0 0 1-.406-.407c0-.219.172-.406.406-.406.22 0 .407.187.407.406a.414.414 0 0 1-.407.407m0-.892a.487.487 0 0 0-.484.485c0 .266.219.485.484.485a.487.487 0 0 0 .485-.485.487.487 0 0 0-.485-.485zm-.125.313h.203c.032 0 .063.031.063.063a.067.067 0 0 1-.063.062h-.203zm.344.063a.14.14 0 0 0-.14-.141h-.282v.5h.078v-.219h.14l.11.22h.094l-.11-.22a.15.15 0 0 0 .11-.14" }) + ] + } + ); +}); + +export { SiOreilly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.cjs new file mode 100644 index 000000000..9f0c01973 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#77AA99"; +const SiOrg = React__namespace.forwardRef(function SiOrg2({ title = "Org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.169 0c-.566.004-2.16 3.312-3.376 5.94a2.19 2.19 0 01-.408-1.267c-.03-.582-1.089.237-.936 1.275-.068-.035-1.26.227-1.26.23-.23-.93-.802-1.618-1.15-.563-.701 1.663-.88 2.984.115 4.585-.908 4.058-6.948 6.053-6.32 9.33.175.004 1.634 3.48 6.337 2.057 5.557-1.577 8.624 2.116 8.978 2.375.52.526-1.348-4.573-5.302-6.865-2.339-1.276-.87-3.474-.703-4.25 0 0 1.874 1.312 3.232-.692 1.227.316 2.05-.224 3.105.158.64.28 3.336.11 2.334-1.396-.148.129.07.27-.075.46-.043.056-.128.232-.408.315-.314.149-.83.27-1.43-.37-.434-.32-.748-.04-.992-.063.152-.098.577-.315 1.264-.315.388 0 .594.336.854.338.174 0 .685-.262.787-.365.63-.41.697-.278 1.012-.905.17-.759-.215-.92-.332-1.129-.032-.483-.436-.67-.919-.326-1.106-.198-2.192-.105-2.728-.15-1.175-.164-2.153-.786-2.153-.786.143-.19.075-.6-.842-.628-.315-.104-.45-.2-.745-.307.61-1.37.674-2.007 1.418-4.004.261-1.053 1.039-2.685.643-2.682zm-4.297 8.093c.03-.086.443.138.952.176.395.03.805.048 1.296-.025.03-.005.172.095-.15.194-.02.01-.062-.01-.065.196 0 .022-.01.04-.02.046-.15.152-.708.223-1.065.1-.436-.17-.482-.316-.517-.443-.305-.147-.47-.123-.43-.244zM9.685 10.2C8.86 9 8.929 8.36 8.96 7.256 7.961 8.288 6.855 8.3 5.18 8.58c-1.299.234-3.657 2.447-4.025 4.742-.043.608-.08 2.183.424 3.498.492 1.13.828 1.727 1.844 2.335-.882-3.169 5.296-5.33 6.263-8.955z" }) + ] + } + ); +}); + +exports.default = SiOrg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.d.ts new file mode 100644 index 000000000..cf2937dd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#77AA99"; +declare const SiOrg: IconType; +export { SiOrg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.mjs new file mode 100644 index 000000000..a01746edf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#77AA99"; +const SiOrg = React.forwardRef(function SiOrg2({ title = "Org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.169 0c-.566.004-2.16 3.312-3.376 5.94a2.19 2.19 0 01-.408-1.267c-.03-.582-1.089.237-.936 1.275-.068-.035-1.26.227-1.26.23-.23-.93-.802-1.618-1.15-.563-.701 1.663-.88 2.984.115 4.585-.908 4.058-6.948 6.053-6.32 9.33.175.004 1.634 3.48 6.337 2.057 5.557-1.577 8.624 2.116 8.978 2.375.52.526-1.348-4.573-5.302-6.865-2.339-1.276-.87-3.474-.703-4.25 0 0 1.874 1.312 3.232-.692 1.227.316 2.05-.224 3.105.158.64.28 3.336.11 2.334-1.396-.148.129.07.27-.075.46-.043.056-.128.232-.408.315-.314.149-.83.27-1.43-.37-.434-.32-.748-.04-.992-.063.152-.098.577-.315 1.264-.315.388 0 .594.336.854.338.174 0 .685-.262.787-.365.63-.41.697-.278 1.012-.905.17-.759-.215-.92-.332-1.129-.032-.483-.436-.67-.919-.326-1.106-.198-2.192-.105-2.728-.15-1.175-.164-2.153-.786-2.153-.786.143-.19.075-.6-.842-.628-.315-.104-.45-.2-.745-.307.61-1.37.674-2.007 1.418-4.004.261-1.053 1.039-2.685.643-2.682zm-4.297 8.093c.03-.086.443.138.952.176.395.03.805.048 1.296-.025.03-.005.172.095-.15.194-.02.01-.062-.01-.065.196 0 .022-.01.04-.02.046-.15.152-.708.223-1.065.1-.436-.17-.482-.316-.517-.443-.305-.147-.47-.123-.43-.244zM9.685 10.2C8.86 9 8.929 8.36 8.96 7.256 7.961 8.288 6.855 8.3 5.18 8.58c-1.299.234-3.657 2.447-4.025 4.742-.043.608-.08 2.183.424 3.498.492 1.13.828 1.727 1.844 2.335-.882-3.169 5.296-5.33 6.263-8.955z" }) + ] + } + ); +}); + +export { SiOrg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.cjs new file mode 100644 index 000000000..1400cca38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006C35"; +const SiOrganicmaps = React__namespace.forwardRef(function SiOrganicmaps2({ title = "Organic Maps", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.99476 3.97191c.57344 1.52442-2.49444 5.23073-5.41889 6.18183-5.28984-1.83216-5.46185 1.24474-9.79128 4.16784 5.11784 3.5385 10.4794.7832 10.37901-2.69928-4.02829 2.30771-6.55139 2.55943-7.99932 2.48955 4.87411-.96505 10.1353-3.95804 11.23764-5.21687.001.0559.002.1118.002.16789C21.40392 15.0769 12.11446 24 12.11446 24s-4.86272-4.65635-7.55173-9.51937c-.37589-.005-2.63809.81712-3.47235-.28487-.93184-1.23071 2.5231-5.35664 5.51926-6.58743 5.36147 2.43362 8.3003-3.87413 9.97757-4.22377C11.58413.41946 6.63831 1.6363 6.07916 6.04191c2.78111-1.58044 6.193-2.47552 7.7699-2.40556-4.43003.90522-9.5045 4.18187-11.02408 5.4266C2.82498 4.05756 6.98404 0 12.11445 0c3.03397 0 5.72822 1.41895 7.42346 3.61379.0001 0 3.02726-.98455 3.45728.35812zm-1.0608.4475c-.39846-.54223-1.78554.0911-1.78554.0911.19411.32556.36823.66393.5204 1.01367a8.86 8.86 0 0 1 .39354 1.09643s1.41637-1.45988.8716-2.20117zm-19.814 9.26475c.43072.58597 1.93005-.0985 1.93005-.0985a9.66 9.66 0 0 1-.56258-1.09567 9.575 9.575 0 0 1-.4254-1.18507s-1.5309 1.57801-.94207 2.37928z" }) + ] + } + ); +}); + +exports.default = SiOrganicmaps; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.d.ts new file mode 100644 index 000000000..d37914087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006C35"; +declare const SiOrganicmaps: IconType; +export { SiOrganicmaps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.mjs new file mode 100644 index 000000000..72eec8208 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrganicmaps.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006C35"; +const SiOrganicmaps = React.forwardRef(function SiOrganicmaps2({ title = "Organic Maps", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.99476 3.97191c.57344 1.52442-2.49444 5.23073-5.41889 6.18183-5.28984-1.83216-5.46185 1.24474-9.79128 4.16784 5.11784 3.5385 10.4794.7832 10.37901-2.69928-4.02829 2.30771-6.55139 2.55943-7.99932 2.48955 4.87411-.96505 10.1353-3.95804 11.23764-5.21687.001.0559.002.1118.002.16789C21.40392 15.0769 12.11446 24 12.11446 24s-4.86272-4.65635-7.55173-9.51937c-.37589-.005-2.63809.81712-3.47235-.28487-.93184-1.23071 2.5231-5.35664 5.51926-6.58743 5.36147 2.43362 8.3003-3.87413 9.97757-4.22377C11.58413.41946 6.63831 1.6363 6.07916 6.04191c2.78111-1.58044 6.193-2.47552 7.7699-2.40556-4.43003.90522-9.5045 4.18187-11.02408 5.4266C2.82498 4.05756 6.98404 0 12.11445 0c3.03397 0 5.72822 1.41895 7.42346 3.61379.0001 0 3.02726-.98455 3.45728.35812zm-1.0608.4475c-.39846-.54223-1.78554.0911-1.78554.0911.19411.32556.36823.66393.5204 1.01367a8.86 8.86 0 0 1 .39354 1.09643s1.41637-1.45988.8716-2.20117zm-19.814 9.26475c.43072.58597 1.93005-.0985 1.93005-.0985a9.66 9.66 0 0 1-.56258-1.09567 9.575 9.575 0 0 1-.4254-1.18507s-1.5309 1.57801-.94207 2.37928z" }) + ] + } + ); +}); + +export { SiOrganicmaps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.cjs new file mode 100644 index 000000000..3c59b05b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F56C2D"; +const SiOrigin = React__namespace.forwardRef(function SiOrigin2({ title = "Origin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.588 3.11a8.78 8.78 0 013.417.919 8.775 8.775 0 012.706 2.094 9.113 9.113 0 011.715 2.963 8.65 8.65 0 01.465 3.502 8.224 8.224 0 01-.307 1.848 9.174 9.174 0 01-.674 1.703 19.96 19.96 0 01-1.47 2.412 17.61 17.61 0 01-1.762 2.118 18.61 18.61 0 01-4.286 3.281l-.037.026a.196.196 0 01-.109.023.293.293 0 01-.159-.097.266.266 0 01-.062-.173c0-.029.004-.059.012-.085a.186.186 0 01.037-.062c.277-.393.506-.806.686-1.235a5.42 5.42 0 00.368-1.359.118.118 0 00-.038-.085.11.11 0 00-.085-.038 9.155 9.155 0 01-.795.062 4.926 4.926 0 01-.796-.037 8.818 8.818 0 01-6.123-3.013 9.089 9.089 0 01-1.715-2.963 8.662 8.662 0 01-.465-3.502 8.224 8.224 0 01.306-1.848 8.598 8.598 0 01.675-1.68c.439-.864.93-1.676 1.469-2.436a18.035 18.035 0 011.76-2.119A18.801 18.801 0 0111.609.05l.038-.025a.187.187 0 01.11-.025.295.295 0 01.157.098.255.255 0 01.062.174.244.244 0 01-.012.084.164.164 0 01-.036.061 6.447 6.447 0 00-.687 1.237c-.18.433-.3.885-.366 1.358 0 .033.012.063.036.086a.117.117 0 00.085.037c.262-.033.527-.053.795-.06.272-.01.536.002.798.034zm-.807 12.367a3.32 3.32 0 002.521-.855c.72-.64 1.11-1.438 1.176-2.4a3.357 3.357 0 00-.856-2.535 3.294 3.294 0 00-2.4-1.162 3.36 3.36 0 00-2.534.855 3.3 3.3 0 00-1.164 2.4 3.381 3.381 0 00.846 2.535c.628.725 1.432 1.115 2.411 1.162z" }) + ] + } + ); +}); + +exports.default = SiOrigin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.d.ts new file mode 100644 index 000000000..b8554ca53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F56C2D"; +declare const SiOrigin: IconType; +export { SiOrigin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.mjs new file mode 100644 index 000000000..be1cd35e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOrigin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F56C2D"; +const SiOrigin = React.forwardRef(function SiOrigin2({ title = "Origin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.588 3.11a8.78 8.78 0 013.417.919 8.775 8.775 0 012.706 2.094 9.113 9.113 0 011.715 2.963 8.65 8.65 0 01.465 3.502 8.224 8.224 0 01-.307 1.848 9.174 9.174 0 01-.674 1.703 19.96 19.96 0 01-1.47 2.412 17.61 17.61 0 01-1.762 2.118 18.61 18.61 0 01-4.286 3.281l-.037.026a.196.196 0 01-.109.023.293.293 0 01-.159-.097.266.266 0 01-.062-.173c0-.029.004-.059.012-.085a.186.186 0 01.037-.062c.277-.393.506-.806.686-1.235a5.42 5.42 0 00.368-1.359.118.118 0 00-.038-.085.11.11 0 00-.085-.038 9.155 9.155 0 01-.795.062 4.926 4.926 0 01-.796-.037 8.818 8.818 0 01-6.123-3.013 9.089 9.089 0 01-1.715-2.963 8.662 8.662 0 01-.465-3.502 8.224 8.224 0 01.306-1.848 8.598 8.598 0 01.675-1.68c.439-.864.93-1.676 1.469-2.436a18.035 18.035 0 011.76-2.119A18.801 18.801 0 0111.609.05l.038-.025a.187.187 0 01.11-.025.295.295 0 01.157.098.255.255 0 01.062.174.244.244 0 01-.012.084.164.164 0 01-.036.061 6.447 6.447 0 00-.687 1.237c-.18.433-.3.885-.366 1.358 0 .033.012.063.036.086a.117.117 0 00.085.037c.262-.033.527-.053.795-.06.272-.01.536.002.798.034zm-.807 12.367a3.32 3.32 0 002.521-.855c.72-.64 1.11-1.438 1.176-2.4a3.357 3.357 0 00-.856-2.535 3.294 3.294 0 00-2.4-1.162 3.36 3.36 0 00-2.534.855 3.3 3.3 0 00-1.164 2.4 3.381 3.381 0 00.846 2.535c.628.725 1.432 1.115 2.411 1.162z" }) + ] + } + ); +}); + +export { SiOrigin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOry.cjs new file mode 100644 index 000000000..0de62c8da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4F46E5"; +const SiOry = React__namespace.forwardRef(function SiOry2({ title = "Ory", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12m-6-.75V3l6-3 6 3v2.25l-6-3zm12 13.5V21l-6 3-6-3v-2.25l6 3z" }) + ] + } + ); +}); + +exports.default = SiOry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOry.d.ts new file mode 100644 index 000000000..ec482d2be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4F46E5"; +declare const SiOry: IconType; +export { SiOry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOry.mjs new file mode 100644 index 000000000..1cdde389e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4F46E5"; +const SiOry = React.forwardRef(function SiOry2({ title = "Ory", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12m-6-.75V3l6-3 6 3v2.25l-6-3zm12 13.5V21l-6 3-6-3v-2.25l6 3z" }) + ] + } + ); +}); + +export { SiOry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.cjs new file mode 100644 index 000000000..bbdb8be32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7764FA"; +const SiOsano = React__namespace.forwardRef(function SiOsano2({ title = "Osano", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6.091A5.909 5.909 0 1017.909 12 5.91 5.91 0 0012 6.091M12 0A12 12 0 110 12 12 12 0 0112 0z" }) + ] + } + ); +}); + +exports.default = SiOsano; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.d.ts new file mode 100644 index 000000000..dfa639d14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7764FA"; +declare const SiOsano: IconType; +export { SiOsano as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.mjs new file mode 100644 index 000000000..1612a32ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsano.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7764FA"; +const SiOsano = React.forwardRef(function SiOsano2({ title = "Osano", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6.091A5.909 5.909 0 1017.909 12 5.91 5.91 0 0012 6.091M12 0A12 12 0 110 12 12 12 0 0112 0z" }) + ] + } + ); +}); + +export { SiOsano as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.cjs new file mode 100644 index 000000000..9b6ba0afc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2CB9F1"; +const SiOsf = React__namespace.forwardRef(function SiOsf2({ title = "OSF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.088 0a2.984 2.984 0 0 0-2.986 2.984 2.984 2.984 0 0 0 .525 1.68 2.654 2.654 0 0 1 2.482-1.734c1.121 0 2.083.706 2.467 1.695a2.984 2.984 0 0 0 .496-1.64A2.984 2.984 0 0 0 12.088 0zM5.65 2.666A2.984 2.984 0 0 0 2.666 5.65 2.984 2.984 0 0 0 5.65 8.635 2.984 2.984 0 0 0 8.635 5.65 2.984 2.984 0 0 0 5.65 2.666zm12.7 0a2.984 2.984 0 0 0-2.985 2.984 2.984 2.984 0 0 0 2.985 2.985 2.984 2.984 0 0 0 2.986-2.985 2.984 2.984 0 0 0-2.986-2.984zm-6.24.764a2.147 2.147 0 0 0-2.147 2.146 2.147 2.147 0 0 0 2.146 2.147 2.147 2.147 0 0 0 2.147-2.147 2.147 2.147 0 0 0-2.147-2.146zM9.112 6.04a3.497 3.497 0 0 1-2.984 3.06 2.147 2.147 0 0 0 1.363.493A2.147 2.147 0 0 0 9.64 7.447a2.147 2.147 0 0 0-.526-1.406zm5.782.047a2.147 2.147 0 0 0-.489 1.36 2.147 2.147 0 0 0 2.147 2.146 2.147 2.147 0 0 0 1.355-.489 3.494 3.494 0 0 1-3.013-3.017zM2.985 9.016A2.984 2.984 0 0 0 0 12a2.984 2.984 0 0 0 2.984 2.984 2.984 2.984 0 0 0 1.659-.505A2.655 2.655 0 0 1 2.922 12c0-1.131.719-2.102 1.723-2.479a2.984 2.984 0 0 0-1.66-.505zm18.03 0a2.984 2.984 0 0 0-1.673.52 2.655 2.655 0 0 1 1.71 2.474c0 1.12-.705 2.082-1.695 2.467a2.984 2.984 0 0 0 1.659.507A2.984 2.984 0 0 0 24 12a2.984 2.984 0 0 0-2.984-2.984zm-15.447.838A2.147 2.147 0 0 0 3.422 12a2.147 2.147 0 0 0 2.146 2.146A2.147 2.147 0 0 0 7.715 12a2.147 2.147 0 0 0-2.147-2.146zm12.838.01a2.147 2.147 0 0 0-2.146 2.146 2.147 2.147 0 0 0 2.146 2.146 2.147 2.147 0 0 0 2.147-2.146 2.147 2.147 0 0 0-2.147-2.147zM7.492 14.376a2.147 2.147 0 0 0-1.398.518 3.496 3.496 0 0 1 3.015 3.037 2.147 2.147 0 0 0 .53-1.409 2.147 2.147 0 0 0-2.147-2.146zm9.06 0a2.147 2.147 0 0 0-2.146 2.146 2.147 2.147 0 0 0 .492 1.362 3.495 3.495 0 0 1 3.047-2.996 2.147 2.147 0 0 0-1.392-.512zm-10.902.988a2.984 2.984 0 0 0-2.984 2.985 2.984 2.984 0 0 0 2.984 2.986 2.984 2.984 0 0 0 2.985-2.986 2.984 2.984 0 0 0-2.985-2.985zm12.7 0a2.984 2.984 0 0 0-2.985 2.985 2.984 2.984 0 0 0 2.985 2.986 2.984 2.984 0 0 0 2.986-2.986 2.984 2.984 0 0 0-2.986-2.985zm-6.35.908a2.147 2.147 0 0 0-2.146 2.147A2.147 2.147 0 0 0 12 20.566a2.147 2.147 0 0 0 2.146-2.146A2.147 2.147 0 0 0 12 16.273zm2.268 3.504A2.65 2.65 0 0 1 12 21.067a2.65 2.65 0 0 1-2.188-1.16 2.734 2.635 0 0 0-.46 1.458A2.734 2.635 0 0 0 12.086 24a2.734 2.635 0 0 0 2.734-2.635 2.734 2.635 0 0 0-.552-1.588z" }) + ] + } + ); +}); + +exports.default = SiOsf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.d.ts new file mode 100644 index 000000000..798c2081d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2CB9F1"; +declare const SiOsf: IconType; +export { SiOsf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.mjs new file mode 100644 index 000000000..ce2380d0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2CB9F1"; +const SiOsf = React.forwardRef(function SiOsf2({ title = "OSF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.088 0a2.984 2.984 0 0 0-2.986 2.984 2.984 2.984 0 0 0 .525 1.68 2.654 2.654 0 0 1 2.482-1.734c1.121 0 2.083.706 2.467 1.695a2.984 2.984 0 0 0 .496-1.64A2.984 2.984 0 0 0 12.088 0zM5.65 2.666A2.984 2.984 0 0 0 2.666 5.65 2.984 2.984 0 0 0 5.65 8.635 2.984 2.984 0 0 0 8.635 5.65 2.984 2.984 0 0 0 5.65 2.666zm12.7 0a2.984 2.984 0 0 0-2.985 2.984 2.984 2.984 0 0 0 2.985 2.985 2.984 2.984 0 0 0 2.986-2.985 2.984 2.984 0 0 0-2.986-2.984zm-6.24.764a2.147 2.147 0 0 0-2.147 2.146 2.147 2.147 0 0 0 2.146 2.147 2.147 2.147 0 0 0 2.147-2.147 2.147 2.147 0 0 0-2.147-2.146zM9.112 6.04a3.497 3.497 0 0 1-2.984 3.06 2.147 2.147 0 0 0 1.363.493A2.147 2.147 0 0 0 9.64 7.447a2.147 2.147 0 0 0-.526-1.406zm5.782.047a2.147 2.147 0 0 0-.489 1.36 2.147 2.147 0 0 0 2.147 2.146 2.147 2.147 0 0 0 1.355-.489 3.494 3.494 0 0 1-3.013-3.017zM2.985 9.016A2.984 2.984 0 0 0 0 12a2.984 2.984 0 0 0 2.984 2.984 2.984 2.984 0 0 0 1.659-.505A2.655 2.655 0 0 1 2.922 12c0-1.131.719-2.102 1.723-2.479a2.984 2.984 0 0 0-1.66-.505zm18.03 0a2.984 2.984 0 0 0-1.673.52 2.655 2.655 0 0 1 1.71 2.474c0 1.12-.705 2.082-1.695 2.467a2.984 2.984 0 0 0 1.659.507A2.984 2.984 0 0 0 24 12a2.984 2.984 0 0 0-2.984-2.984zm-15.447.838A2.147 2.147 0 0 0 3.422 12a2.147 2.147 0 0 0 2.146 2.146A2.147 2.147 0 0 0 7.715 12a2.147 2.147 0 0 0-2.147-2.146zm12.838.01a2.147 2.147 0 0 0-2.146 2.146 2.147 2.147 0 0 0 2.146 2.146 2.147 2.147 0 0 0 2.147-2.146 2.147 2.147 0 0 0-2.147-2.147zM7.492 14.376a2.147 2.147 0 0 0-1.398.518 3.496 3.496 0 0 1 3.015 3.037 2.147 2.147 0 0 0 .53-1.409 2.147 2.147 0 0 0-2.147-2.146zm9.06 0a2.147 2.147 0 0 0-2.146 2.146 2.147 2.147 0 0 0 .492 1.362 3.495 3.495 0 0 1 3.047-2.996 2.147 2.147 0 0 0-1.392-.512zm-10.902.988a2.984 2.984 0 0 0-2.984 2.985 2.984 2.984 0 0 0 2.984 2.986 2.984 2.984 0 0 0 2.985-2.986 2.984 2.984 0 0 0-2.985-2.985zm12.7 0a2.984 2.984 0 0 0-2.985 2.985 2.984 2.984 0 0 0 2.985 2.986 2.984 2.984 0 0 0 2.986-2.986 2.984 2.984 0 0 0-2.986-2.985zm-6.35.908a2.147 2.147 0 0 0-2.146 2.147A2.147 2.147 0 0 0 12 20.566a2.147 2.147 0 0 0 2.146-2.146A2.147 2.147 0 0 0 12 16.273zm2.268 3.504A2.65 2.65 0 0 1 12 21.067a2.65 2.65 0 0 1-2.188-1.16 2.734 2.635 0 0 0-.46 1.458A2.734 2.635 0 0 0 12.086 24a2.734 2.635 0 0 0 2.734-2.635 2.734 2.635 0 0 0-.552-1.588z" }) + ] + } + ); +}); + +export { SiOsf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.cjs new file mode 100644 index 000000000..3a10a32cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4CB05B"; +const SiOsgeo = React__namespace.forwardRef(function SiOsgeo2({ title = "OSGeo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.38742 0 9.88227 2.63735c-4.10198.91912-7.20472 4.44855-7.4712 8.7637h2.41025c.29326-3.50262 3.07658-6.28647 6.5661-6.57945V2.42416Zm1.21236 2.41136V4.8216c3.48923.29298 6.27256 3.0763 6.56554 6.56554H23.99972l-2.6368-1.50459c-.91883-4.10198-4.44798-7.205-8.76314-7.4712Zm-.61286 3.28917-.7459 4.55497 1.4918.9986.9986 1.4918 4.55497-.75926-4.55497-.7459 1.97106-2.95685-2.9563 1.9716zm.7459 5.55358L8.28415 8.28443l2.97022 4.4481 4.4481 2.97021zm-1.47844 1.47843-.99916-1.49124L5.7008 12l4.5544.7459-1.97105 2.95685 2.9435-1.97105.75926 4.55441.7587-4.55441zm.73254-1.26524c.27958 0 .51934.23976.51934.51934 0 .27987-.22636.5199-.51934.5199s-.51935-.24003-.51935-.5199c0-.29298.23976-.51934.51935-.51934zM.00028 12.5995l2.63735 1.5046c.91912 4.10226 4.44799 7.20555 8.76315 7.47174v-2.4108c-3.50263-.29298-6.28593-3.0763-6.5789-6.56554H2.42444Zm19.16504 0c-.29298 3.48923-3.0763 6.27256-6.56554 6.56554V24l1.5046-2.63735c4.10197-.91883 7.20527-4.448 7.47174-8.76315z" }) + ] + } + ); +}); + +exports.default = SiOsgeo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.d.ts new file mode 100644 index 000000000..fd8497885 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4CB05B"; +declare const SiOsgeo: IconType; +export { SiOsgeo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.mjs new file mode 100644 index 000000000..745c927e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsgeo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4CB05B"; +const SiOsgeo = React.forwardRef(function SiOsgeo2({ title = "OSGeo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.38742 0 9.88227 2.63735c-4.10198.91912-7.20472 4.44855-7.4712 8.7637h2.41025c.29326-3.50262 3.07658-6.28647 6.5661-6.57945V2.42416Zm1.21236 2.41136V4.8216c3.48923.29298 6.27256 3.0763 6.56554 6.56554H23.99972l-2.6368-1.50459c-.91883-4.10198-4.44798-7.205-8.76314-7.4712Zm-.61286 3.28917-.7459 4.55497 1.4918.9986.9986 1.4918 4.55497-.75926-4.55497-.7459 1.97106-2.95685-2.9563 1.9716zm.7459 5.55358L8.28415 8.28443l2.97022 4.4481 4.4481 2.97021zm-1.47844 1.47843-.99916-1.49124L5.7008 12l4.5544.7459-1.97105 2.95685 2.9435-1.97105.75926 4.55441.7587-4.55441zm.73254-1.26524c.27958 0 .51934.23976.51934.51934 0 .27987-.22636.5199-.51934.5199s-.51935-.24003-.51935-.5199c0-.29298.23976-.51934.51935-.51934zM.00028 12.5995l2.63735 1.5046c.91912 4.10226 4.44799 7.20555 8.76315 7.47174v-2.4108c-3.50263-.29298-6.28593-3.0763-6.5789-6.56554H2.42444Zm19.16504 0c-.29298 3.48923-3.0763 6.27256-6.56554 6.56554V24l1.5046-2.63735c4.10197-.91883 7.20527-4.448 7.47174-8.76315z" }) + ] + } + ); +}); + +export { SiOsgeo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.cjs new file mode 100644 index 000000000..a7e32cff3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6830F"; +const SiOshkosh = React__namespace.forwardRef(function SiOshkosh2({ title = "Oshkosh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.925 9.864V7.232c0-.414.183-.517.449-.517h5.335c.265 0 .428.145.428.537v2.612h-1.57V8.657c0-.227 0-.29-.225-.29H10.72c-.246 0-.246.063-.246.27v1.227h-1.55zm4.641 4.979v.48c0 .226-.041.288-.224.288h-2.54c-.306 0-.327 0-.327-.289v-.479h-1.55v1.925c0 .413.163.517.428.517h5.335c.245 0 .449-.145.449-.538v-1.904h-1.57zm-2.036-1.905h.876v1.384h1.047V12.31c0-.087-.043-.433-.342-.433h-.534l.897-1.492h-1.111l-.833 1.297v-1.297h-.983v3.937h.983v-1.384zm11.466-1.072h-.898v-1.47h-1.004v3.915h1.004v-1.298h.898v1.298H24v-3.915h-1.004v1.47zm-18.34-.043v-.39h1.773v-1.037H3.886a.381.381 0 0 0-.385.367v1.73c0 .217.086.37.278.37h1.496v.432H3.5v1.016h2.564c.214 0 .364-.194.364-.41v-1.71a.362.362 0 0 0-.364-.368h-1.41zm14.07 0v-.39h1.772v-1.037h-2.542a.381.381 0 0 0-.385.367v1.73c0 .217.086.37.278.37h1.496v.432H17.57v1.016h2.564c.214 0 .363-.194.363-.41v-1.71a.362.362 0 0 0-.363-.368h-1.41zm-9.8.021H8.05v-1.448H7.024v3.915H8.05v-1.298h.876v1.298H9.95v-3.915H8.926v1.448zm-6.02-1.066v3.15c0 .21-.173.383-.383.383H.383A.384.384 0 0 1 0 13.928v-3.15c0-.21.172-.382.383-.382h2.14c.21 0 .383.172.383.382zm-1 .804a.17.17 0 0 0-.17-.17H1.17a.17.17 0 0 0-.17.17v1.542c0 .094.077.17.17.17h.567a.17.17 0 0 0 .17-.17v-1.542zm15.07-.804v3.15c0 .21-.173.383-.383.383h-2.14a.384.384 0 0 1-.383-.383v-3.15c0-.21.172-.382.383-.382h2.14c.21 0 .382.172.382.382zm-1 .804a.17.17 0 0 0-.17-.17h-.567a.17.17 0 0 0-.17.17v1.542c0 .094.076.17.17.17h.567a.17.17 0 0 0 .17-.17v-1.542z" }) + ] + } + ); +}); + +exports.default = SiOshkosh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.d.ts new file mode 100644 index 000000000..6b9015598 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6830F"; +declare const SiOshkosh: IconType; +export { SiOshkosh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.mjs new file mode 100644 index 000000000..08a2b3065 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOshkosh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6830F"; +const SiOshkosh = React.forwardRef(function SiOshkosh2({ title = "Oshkosh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.925 9.864V7.232c0-.414.183-.517.449-.517h5.335c.265 0 .428.145.428.537v2.612h-1.57V8.657c0-.227 0-.29-.225-.29H10.72c-.246 0-.246.063-.246.27v1.227h-1.55zm4.641 4.979v.48c0 .226-.041.288-.224.288h-2.54c-.306 0-.327 0-.327-.289v-.479h-1.55v1.925c0 .413.163.517.428.517h5.335c.245 0 .449-.145.449-.538v-1.904h-1.57zm-2.036-1.905h.876v1.384h1.047V12.31c0-.087-.043-.433-.342-.433h-.534l.897-1.492h-1.111l-.833 1.297v-1.297h-.983v3.937h.983v-1.384zm11.466-1.072h-.898v-1.47h-1.004v3.915h1.004v-1.298h.898v1.298H24v-3.915h-1.004v1.47zm-18.34-.043v-.39h1.773v-1.037H3.886a.381.381 0 0 0-.385.367v1.73c0 .217.086.37.278.37h1.496v.432H3.5v1.016h2.564c.214 0 .364-.194.364-.41v-1.71a.362.362 0 0 0-.364-.368h-1.41zm14.07 0v-.39h1.772v-1.037h-2.542a.381.381 0 0 0-.385.367v1.73c0 .217.086.37.278.37h1.496v.432H17.57v1.016h2.564c.214 0 .363-.194.363-.41v-1.71a.362.362 0 0 0-.363-.368h-1.41zm-9.8.021H8.05v-1.448H7.024v3.915H8.05v-1.298h.876v1.298H9.95v-3.915H8.926v1.448zm-6.02-1.066v3.15c0 .21-.173.383-.383.383H.383A.384.384 0 0 1 0 13.928v-3.15c0-.21.172-.382.383-.382h2.14c.21 0 .383.172.383.382zm-1 .804a.17.17 0 0 0-.17-.17H1.17a.17.17 0 0 0-.17.17v1.542c0 .094.077.17.17.17h.567a.17.17 0 0 0 .17-.17v-1.542zm15.07-.804v3.15c0 .21-.173.383-.383.383h-2.14a.384.384 0 0 1-.383-.383v-3.15c0-.21.172-.382.383-.382h2.14c.21 0 .382.172.382.382zm-1 .804a.17.17 0 0 0-.17-.17h-.567a.17.17 0 0 0-.17.17v1.542c0 .094.076.17.17.17h.567a.17.17 0 0 0 .17-.17v-1.542z" }) + ] + } + ); +}); + +export { SiOshkosh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.cjs new file mode 100644 index 000000000..98f69b526 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8800"; +const SiOsmand = React__namespace.forwardRef(function SiOsmand2({ title = "OsmAnd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.11 0 1.332 4.777 1.332 10.668a10.67 10.67 0 0 0 6.52 9.828c1.927.836 2.667 1.282 3.26 2.467q.085.172.152.326c.189.422.318.711.736.711s.546-.289.736-.71q.069-.155.153-.327c.593-1.186 1.28-1.63 3.26-2.467a10.67 10.67 0 0 0 6.519-9.828C22.668 4.777 17.89 0 12 0m-.443 4.758a5.926 5.926 0 0 1 6.369 5.91 5.926 5.926 0 0 1-11.852 0 5.926 5.926 0 0 1 5.483-5.91" }) + ] + } + ); +}); + +exports.default = SiOsmand; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.d.ts new file mode 100644 index 000000000..c36698535 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8800"; +declare const SiOsmand: IconType; +export { SiOsmand as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.mjs new file mode 100644 index 000000000..b5763f2b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmand.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8800"; +const SiOsmand = React.forwardRef(function SiOsmand2({ title = "OsmAnd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.11 0 1.332 4.777 1.332 10.668a10.67 10.67 0 0 0 6.52 9.828c1.927.836 2.667 1.282 3.26 2.467q.085.172.152.326c.189.422.318.711.736.711s.546-.289.736-.71q.069-.155.153-.327c.593-1.186 1.28-1.63 3.26-2.467a10.67 10.67 0 0 0 6.519-9.828C22.668 4.777 17.89 0 12 0m-.443 4.758a5.926 5.926 0 0 1 6.369 5.91 5.926 5.926 0 0 1-11.852 0 5.926 5.926 0 0 1 5.483-5.91" }) + ] + } + ); +}); + +export { SiOsmand as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.cjs new file mode 100644 index 000000000..b3568c493 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17394A"; +const SiOsmc = React__namespace.forwardRef(function SiOsmc2({ title = "OSMC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.768 12.002c0 5.935-4.829 10.768-10.768 10.768-5.935-.005-10.763-4.833-10.763-10.768 0-5.94 4.828-10.767 10.768-10.767 5.934 0 10.763 4.828 10.763 10.767m.292-4.673a11.913 11.913 0 0 0-2.57-3.813 11.963 11.963 0 0 0-3.813-2.57A11.857 11.857 0 0 0 12.005 0a11.926 11.926 0 0 0-8.486 3.516A11.963 11.963 0 0 0 .948 7.33C.318 8.811.002 10.38.002 12.002s.316 3.192.942 4.673a11.913 11.913 0 0 0 2.57 3.813A11.963 11.963 0 0 0 12 24c1.619 0 3.191-.32 4.673-.942a11.913 11.913 0 0 0 3.813-2.57 11.963 11.963 0 0 0 3.512-8.486c0-1.623-.311-3.191-.938-4.673M8.566 14.631V9.263l2.574 2.684-2.574 2.684zM7.327 6.296v11.422l8.116-8.455v6.767c0 .343.279.618.617.618a.622.622 0 0 0 .622-.622v-9.74l-4.677 4.77-4.678-4.76z" }) + ] + } + ); +}); + +exports.default = SiOsmc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.d.ts new file mode 100644 index 000000000..ce44833a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17394A"; +declare const SiOsmc: IconType; +export { SiOsmc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.mjs new file mode 100644 index 000000000..e1db38826 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsmc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17394A"; +const SiOsmc = React.forwardRef(function SiOsmc2({ title = "OSMC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.768 12.002c0 5.935-4.829 10.768-10.768 10.768-5.935-.005-10.763-4.833-10.763-10.768 0-5.94 4.828-10.767 10.768-10.767 5.934 0 10.763 4.828 10.763 10.767m.292-4.673a11.913 11.913 0 0 0-2.57-3.813 11.963 11.963 0 0 0-3.813-2.57A11.857 11.857 0 0 0 12.005 0a11.926 11.926 0 0 0-8.486 3.516A11.963 11.963 0 0 0 .948 7.33C.318 8.811.002 10.38.002 12.002s.316 3.192.942 4.673a11.913 11.913 0 0 0 2.57 3.813A11.963 11.963 0 0 0 12 24c1.619 0 3.191-.32 4.673-.942a11.913 11.913 0 0 0 3.813-2.57 11.963 11.963 0 0 0 3.512-8.486c0-1.623-.311-3.191-.938-4.673M8.566 14.631V9.263l2.574 2.684-2.574 2.684zM7.327 6.296v11.422l8.116-8.455v6.767c0 .343.279.618.617.618a.622.622 0 0 0 .622-.622v-9.74l-4.677 4.77-4.678-4.76z" }) + ] + } + ); +}); + +export { SiOsmc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.cjs new file mode 100644 index 000000000..ac75a5e61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF66AA"; +const SiOsu = React__namespace.forwardRef(function SiOsu2({ title = "osu!", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.698 10.362c-.1855-.2184-.4189-.3905-.7002-.5162-.2813-.1257-.6104-.1885-.9874-.1885s-.7046.0628-.9829.1885-.5088.2978-.6912.5162c-.1827.2185-.3203.4773-.413.7765-.0928.2993-.1391.6194-.1391.9605 0 .3412.0463.6584.1391.9516.0927.2933.2303.5491.413.7675.1824.2185.4129.3891.6912.5116.2783.1226.6059.1841.9829.1841s.7061-.0615.9875-.1841c.2813-.1226.5146-.2931.7002-.5116.1855-.2184.3231-.4742.413-.7675.0897-.2931.1346-.6104.1346-.9516 0-.3411-.0449-.6612-.1346-.9605-.0899-.2992-.2276-.558-.4131-.7765zm-.965 2.8096c-.1467.2484-.3875.3725-.7227.3725-.3291 0-.567-.1241-.7136-.3725-.1467-.2483-.2199-.6059-.2199-1.0727s.0732-.8243.2199-1.0727c.1466-.2482.3844-.3725.7136-.3725.3352 0 .5759.1243.7227.3725.1466.2484.2199.6059.2199 1.0727.0001.4668-.0733.8245-.2199 1.0727zm11.8894-.8303-.0898-4.3896a4.5409 4.5409 0 0 1 .6912-.0539c.2334 0 .4668.0179.7002.0539l-.0898 4.3896c-.2096.0359-.41.0538-.6015.0538a3.4957 3.4957 0 0 1-.6103-.0538zm1.3196 1.4003c0 .2215-.0179.443-.0538.6643a4.2055 4.2055 0 0 1-.6553.0538 4.1414 4.1414 0 0 1-.6642-.0538 4.0882 4.0882 0 0 1-.0539-.6553c0-.2154.018-.4367.0539-.6643a4.0876 4.0876 0 0 1 .6552-.0538c.2155 0 .4368.018.6643.0538.0359.2276.0538.446.0538.6553zm-3.2226-4.0305c.2095 0 .422.018.6373.0539v4.4614c-.1916.0659-.4443.1302-.7585.193-.3141.0629-.6418.0943-.9829.0943-.3052 0-.5985-.024-.8798-.0718-.2813-.0479-.5282-.1495-.7405-.3052-.2125-.1555-.3815-.3829-.5072-.6823-.1257-.2991-.1885-.697-.1885-1.1938V9.765a3.8725 3.8725 0 0 1 .6373-.0539c.2094 0 .4219.018.6373.0539v2.4596c0 .2455.0194.4474.0584.6059.0388.1586.0988.2843.1795.377a.6606.6606 0 0 0 .3007.1974c.1197.0391.2603.0584.4219.0584.2214 0 .407-.0209.5566-.0628V9.765a3.8218 3.8218 0 0 1 .6284-.0539zm-4.3625 2.6841c.0538.1497.0808.3321.0808.5476 0 .2215-.0464.428-.1392.6194-.0928.1916-.2274.3577-.4039.4982-.1766.1407-.3905.2514-.6418.3322-.2514.0808-.5356.1212-.8528.1212a5.2984 5.2984 0 0 1-.395-.0135 3.1226 3.1226 0 0 1-.3456-.0448 4.0482 4.0482 0 0 1-.3277-.0763 3.9336 3.9336 0 0 1-.35-.1166 2.5768 2.5768 0 0 1 .0852-.4893 3.0737 3.0737 0 0 1 .1751-.4802c.1975.0779.3844.1362.561.1751.1765.039.3605.0584.5521.0584.0838 0 .175-.0075.2738-.0225a.9945.9945 0 0 0 .2737-.0808.6467.6467 0 0 0 .2109-.1526c.0569-.0628.0853-.145.0853-.2469 0-.1436-.0434-.2469-.1302-.3097-.0868-.0628-.208-.1181-.3636-.1661l-.5565-.1616c-.3352-.0956-.5969-.2379-.7855-.4263-.1885-.1886-.2827-.4713-.2827-.8484 0-.4547.163-.8108.4892-1.0682.3261-.2573.7705-.386 1.333-.386.2334 0 .4638.0211.6913.0629.2273.0419.4578.1048.6912.1885-.012.1557-.0419.3173-.0897.4847-.048.1676-.1048.3142-.1706.4398a3.58 3.58 0 0 0-.4757-.1571 2.18 2.18 0 0 0-.5477-.0673c-.2034 0-.3621.0314-.4758.0943-.1137.0629-.1705.1631-.1705.3007 0 .1317.0403.2244.1211.2783.0809.0538.1959.1048.3456.1526l.5117.1526c.1675.048.3187.1063.4533.1751.1347.0688.2498.1541.3456.2558.0958.1016.1707.2272.2246.3768zM12 0C5.3726 0 0 5.3726 0 12.0001 0 18.6273 5.3726 24 12 24c6.6275 0 12-5.3727 12-11.9999C24 5.3726 18.6275 0 12 0zm0 22.8c-5.9647 0-10.8-4.8354-10.8-10.7999C1.2 6.0353 6.0353 1.2 12 1.2s10.8 4.8353 10.8 10.8001C22.8 17.9646 17.9647 22.8 12 22.8z" }) + ] + } + ); +}); + +exports.default = SiOsu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.d.ts new file mode 100644 index 000000000..c34b87d81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF66AA"; +declare const SiOsu: IconType; +export { SiOsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.mjs new file mode 100644 index 000000000..2d890acda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOsu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF66AA"; +const SiOsu = React.forwardRef(function SiOsu2({ title = "osu!", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.698 10.362c-.1855-.2184-.4189-.3905-.7002-.5162-.2813-.1257-.6104-.1885-.9874-.1885s-.7046.0628-.9829.1885-.5088.2978-.6912.5162c-.1827.2185-.3203.4773-.413.7765-.0928.2993-.1391.6194-.1391.9605 0 .3412.0463.6584.1391.9516.0927.2933.2303.5491.413.7675.1824.2185.4129.3891.6912.5116.2783.1226.6059.1841.9829.1841s.7061-.0615.9875-.1841c.2813-.1226.5146-.2931.7002-.5116.1855-.2184.3231-.4742.413-.7675.0897-.2931.1346-.6104.1346-.9516 0-.3411-.0449-.6612-.1346-.9605-.0899-.2992-.2276-.558-.4131-.7765zm-.965 2.8096c-.1467.2484-.3875.3725-.7227.3725-.3291 0-.567-.1241-.7136-.3725-.1467-.2483-.2199-.6059-.2199-1.0727s.0732-.8243.2199-1.0727c.1466-.2482.3844-.3725.7136-.3725.3352 0 .5759.1243.7227.3725.1466.2484.2199.6059.2199 1.0727.0001.4668-.0733.8245-.2199 1.0727zm11.8894-.8303-.0898-4.3896a4.5409 4.5409 0 0 1 .6912-.0539c.2334 0 .4668.0179.7002.0539l-.0898 4.3896c-.2096.0359-.41.0538-.6015.0538a3.4957 3.4957 0 0 1-.6103-.0538zm1.3196 1.4003c0 .2215-.0179.443-.0538.6643a4.2055 4.2055 0 0 1-.6553.0538 4.1414 4.1414 0 0 1-.6642-.0538 4.0882 4.0882 0 0 1-.0539-.6553c0-.2154.018-.4367.0539-.6643a4.0876 4.0876 0 0 1 .6552-.0538c.2155 0 .4368.018.6643.0538.0359.2276.0538.446.0538.6553zm-3.2226-4.0305c.2095 0 .422.018.6373.0539v4.4614c-.1916.0659-.4443.1302-.7585.193-.3141.0629-.6418.0943-.9829.0943-.3052 0-.5985-.024-.8798-.0718-.2813-.0479-.5282-.1495-.7405-.3052-.2125-.1555-.3815-.3829-.5072-.6823-.1257-.2991-.1885-.697-.1885-1.1938V9.765a3.8725 3.8725 0 0 1 .6373-.0539c.2094 0 .4219.018.6373.0539v2.4596c0 .2455.0194.4474.0584.6059.0388.1586.0988.2843.1795.377a.6606.6606 0 0 0 .3007.1974c.1197.0391.2603.0584.4219.0584.2214 0 .407-.0209.5566-.0628V9.765a3.8218 3.8218 0 0 1 .6284-.0539zm-4.3625 2.6841c.0538.1497.0808.3321.0808.5476 0 .2215-.0464.428-.1392.6194-.0928.1916-.2274.3577-.4039.4982-.1766.1407-.3905.2514-.6418.3322-.2514.0808-.5356.1212-.8528.1212a5.2984 5.2984 0 0 1-.395-.0135 3.1226 3.1226 0 0 1-.3456-.0448 4.0482 4.0482 0 0 1-.3277-.0763 3.9336 3.9336 0 0 1-.35-.1166 2.5768 2.5768 0 0 1 .0852-.4893 3.0737 3.0737 0 0 1 .1751-.4802c.1975.0779.3844.1362.561.1751.1765.039.3605.0584.5521.0584.0838 0 .175-.0075.2738-.0225a.9945.9945 0 0 0 .2737-.0808.6467.6467 0 0 0 .2109-.1526c.0569-.0628.0853-.145.0853-.2469 0-.1436-.0434-.2469-.1302-.3097-.0868-.0628-.208-.1181-.3636-.1661l-.5565-.1616c-.3352-.0956-.5969-.2379-.7855-.4263-.1885-.1886-.2827-.4713-.2827-.8484 0-.4547.163-.8108.4892-1.0682.3261-.2573.7705-.386 1.333-.386.2334 0 .4638.0211.6913.0629.2273.0419.4578.1048.6912.1885-.012.1557-.0419.3173-.0897.4847-.048.1676-.1048.3142-.1706.4398a3.58 3.58 0 0 0-.4757-.1571 2.18 2.18 0 0 0-.5477-.0673c-.2034 0-.3621.0314-.4758.0943-.1137.0629-.1705.1631-.1705.3007 0 .1317.0403.2244.1211.2783.0809.0538.1959.1048.3456.1526l.5117.1526c.1675.048.3187.1063.4533.1751.1347.0688.2498.1541.3456.2558.0958.1016.1707.2272.2246.3768zM12 0C5.3726 0 0 5.3726 0 12.0001 0 18.6273 5.3726 24 12 24c6.6275 0 12-5.3727 12-11.9999C24 5.3726 18.6275 0 12 0zm0 22.8c-5.9647 0-10.8-4.8354-10.8-10.7999C1.2 6.0353 6.0353 1.2 12 1.2s10.8 4.8353 10.8 10.8001C22.8 17.9646 17.9647 22.8 12 22.8z" }) + ] + } + ); +}); + +export { SiOsu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.cjs new file mode 100644 index 000000000..0d33e672f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D4021D"; +const SiOtto = React__namespace.forwardRef(function SiOtto2({ title = "Otto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.893 7.95c-1.195 0-2.168.37-2.855 1.132.097-.265.149-.588.156-.968h-4.191c-.914 0-1.437.402-1.796 1.437l.185-1.437H8.157c-.775 0-1.307.37-1.5 1.096-.524-.84-1.457-1.26-2.636-1.26C1.779 7.95.32 9.246.059 12.01l-.033.35c-.228 2.47 1.067 3.69 3.08 3.69 2.243 0 3.702-1.307 3.963-4.072l.033-.348c.059-.634.015-1.185-.114-1.655h1.899l-.545 4.66c-.108.925.392 1.35 1.23 1.35.512 0 .686-.034.882-.066l.675-5.944h2.21l-.544 4.66c-.11.925.392 1.35 1.23 1.35.511 0 .685-.034.881-.066l.675-5.944h1.089c.376 0 .68-.087.915-.26-.342.604-.566 1.366-.654 2.296l-.032.348c-.229 2.471 1.066 3.69 3.08 3.69 2.243 0 3.701-1.306 3.962-4.07l.033-.349c.229-2.46-1.067-3.68-3.08-3.68zM4.86 11.477l-.022.262c-.152 1.872-.762 2.449-1.513 2.449-.675 0-1.153-.457-1.055-1.676l.021-.272c.153-1.862.762-2.45 1.513-2.45.664 0 1.154.468 1.056 1.687zm16.873 0-.022.262c-.153 1.872-.762 2.449-1.513 2.449-.675 0-1.154-.457-1.056-1.676l.022-.272c.152-1.862.762-2.45 1.513-2.45.664 0 1.154.468 1.056 1.687z" }) + ] + } + ); +}); + +exports.default = SiOtto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.d.ts new file mode 100644 index 000000000..a5553d103 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D4021D"; +declare const SiOtto: IconType; +export { SiOtto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.mjs new file mode 100644 index 000000000..17cd0dc2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOtto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D4021D"; +const SiOtto = React.forwardRef(function SiOtto2({ title = "Otto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.893 7.95c-1.195 0-2.168.37-2.855 1.132.097-.265.149-.588.156-.968h-4.191c-.914 0-1.437.402-1.796 1.437l.185-1.437H8.157c-.775 0-1.307.37-1.5 1.096-.524-.84-1.457-1.26-2.636-1.26C1.779 7.95.32 9.246.059 12.01l-.033.35c-.228 2.47 1.067 3.69 3.08 3.69 2.243 0 3.702-1.307 3.963-4.072l.033-.348c.059-.634.015-1.185-.114-1.655h1.899l-.545 4.66c-.108.925.392 1.35 1.23 1.35.512 0 .686-.034.882-.066l.675-5.944h2.21l-.544 4.66c-.11.925.392 1.35 1.23 1.35.511 0 .685-.034.881-.066l.675-5.944h1.089c.376 0 .68-.087.915-.26-.342.604-.566 1.366-.654 2.296l-.032.348c-.229 2.471 1.066 3.69 3.08 3.69 2.243 0 3.701-1.306 3.962-4.07l.033-.349c.229-2.46-1.067-3.68-3.08-3.68zM4.86 11.477l-.022.262c-.152 1.872-.762 2.449-1.513 2.449-.675 0-1.153-.457-1.055-1.676l.021-.272c.153-1.862.762-2.45 1.513-2.45.664 0 1.154.468 1.056 1.687zm16.873 0-.022.262c-.153 1.872-.762 2.449-1.513 2.449-.675 0-1.154-.457-1.056-1.676l.022-.272c.152-1.862.762-2.45 1.513-2.45.664 0 1.154.468 1.056 1.687z" }) + ] + } + ); +}); + +export { SiOtto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.cjs new file mode 100644 index 000000000..8abdc713a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOutline = React__namespace.forwardRef(function SiOutline2({ title = "Outline", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 15.081 21.857 L 15.081 22.459 C 15.081 23.636 13.812 24.378 12.785 23.8 L 3.543 18.602 C 3.058 18.329 2.758 17.816 2.758 17.26 L 2.758 6.742 C 2.758 6.185 3.058 5.672 3.543 5.399 L 12.785 0.201 C 13.812 -0.378 15.082 0.365 15.081 1.544 L 15.081 2.145 L 16.178 1.814 C 17.167 1.517 18.163 2.258 18.162 3.29 L 18.162 3.915 L 19.511 3.746 C 20.431 3.632 21.243 4.348 21.242 5.275 L 21.242 18.726 C 21.243 19.652 20.431 20.37 19.511 20.254 L 18.162 20.085 L 18.162 20.71 C 18.163 21.743 17.167 22.484 16.178 22.186 L 15.081 21.857 Z M 15.081 20.249 L 16.621 20.71 L 16.621 3.29 L 15.081 3.753 L 15.081 20.249 Z M 18.162 5.467 L 18.162 18.534 L 19.702 18.726 L 19.702 5.275 L 18.162 5.467 Z M 2.758 16.801 L 2.758 7.2 L 2.758 16.801 Z M 4.298 6.742 L 4.298 17.26 L 13.54 22.459 L 13.54 1.544 L 4.298 6.742 Z M 5.838 7.765 L 7.379 6.995 L 7.379 17.005 L 5.838 16.235 L 5.838 7.765 Z" }) + ] + } + ); +}); + +exports.default = SiOutline; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.d.ts new file mode 100644 index 000000000..90bc21f4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOutline: IconType; +export { SiOutline as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.mjs new file mode 100644 index 000000000..9973f7885 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOutline.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOutline = React.forwardRef(function SiOutline2({ title = "Outline", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 15.081 21.857 L 15.081 22.459 C 15.081 23.636 13.812 24.378 12.785 23.8 L 3.543 18.602 C 3.058 18.329 2.758 17.816 2.758 17.26 L 2.758 6.742 C 2.758 6.185 3.058 5.672 3.543 5.399 L 12.785 0.201 C 13.812 -0.378 15.082 0.365 15.081 1.544 L 15.081 2.145 L 16.178 1.814 C 17.167 1.517 18.163 2.258 18.162 3.29 L 18.162 3.915 L 19.511 3.746 C 20.431 3.632 21.243 4.348 21.242 5.275 L 21.242 18.726 C 21.243 19.652 20.431 20.37 19.511 20.254 L 18.162 20.085 L 18.162 20.71 C 18.163 21.743 17.167 22.484 16.178 22.186 L 15.081 21.857 Z M 15.081 20.249 L 16.621 20.71 L 16.621 3.29 L 15.081 3.753 L 15.081 20.249 Z M 18.162 5.467 L 18.162 18.534 L 19.702 18.726 L 19.702 5.275 L 18.162 5.467 Z M 2.758 16.801 L 2.758 7.2 L 2.758 16.801 Z M 4.298 6.742 L 4.298 17.26 L 13.54 22.459 L 13.54 1.544 L 4.298 6.742 Z M 5.838 7.765 L 7.379 6.995 L 7.379 17.005 L 5.838 16.235 L 5.838 7.765 Z" }) + ] + } + ); +}); + +export { SiOutline as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.cjs new file mode 100644 index 000000000..5a2bcf243 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC7E0F"; +const SiOvercast = React__namespace.forwardRef(function SiOvercast2({ title = "Overcast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.389 24.018.017 18.671 0 12.061V12C0 5.35 5.351 0 12 0s12 5.35 12 12c0 6.649-5.351 12-12 12zm0-4.751l.9-.899-.9-3.45-.9 3.45.9.899zm-1.15-.05L10.4 20.9l1.05-1.052-.6-.649zm2.3 0l-.6.601 1.05 1.051-.45-1.652zm.85 3.102L12 20.3l-2 2.001c.65.1 1.3.199 2 .199s1.35-.05 2-.199zM12 1.5C6.201 1.5 1.5 6.201 1.5 12c-.008 4.468 2.825 8.446 7.051 9.899l2.25-8.35c-.511-.372-.809-.968-.801-1.6 0-1.101.9-2.001 2-2.001s2 .9 2 2.001c0 .649-.301 1.2-.801 1.6l2.25 8.35c4.227-1.453 7.06-5.432 7.051-9.899 0-5.799-4.701-10.5-10.5-10.5zm6.85 15.7c-.255.319-.714.385-1.049.15-.313-.207-.4-.628-.194-.941.014-.021.028-.04.044-.06 0 0 1.35-1.799 1.35-4.35s-1.35-4.35-1.35-4.35c-.239-.289-.198-.719.091-.957.02-.016.039-.031.06-.044.335-.235.794-.169 1.049.15.1.101 1.65 2.15 1.65 5.2S18.949 17.1 18.85 17.2zm-3.651-1.95c-.3-.3-.249-.85.051-1.15 0 0 .75-.799.75-2.1s-.75-2.051-.75-2.1c-.3-.301-.3-.801-.051-1.15.232-.303.666-.357.969-.125.029.022.056.047.082.074C16.301 8.75 17.5 10 17.5 12s-1.199 3.25-1.25 3.301c-.301.299-.75.25-1.051-.051zm-6.398 0c-.301.301-.75.35-1.051.051C7.699 15.199 6.5 14 6.5 12s1.199-3.199 1.25-3.301c.301-.299.801-.299 1.051.051.3.3.249.85-.051 1.15 0 .049-.75.799-.75 2.1s.75 2.1.75 2.1c.3.3.351.799.051 1.15zm-2.602 2.101c-.335.234-.794.169-1.05-.15C5.051 17.1 3.5 15.05 3.5 12s1.551-5.1 1.649-5.2c.256-.319.715-.386 1.05-.15.313.206.4.628.194.941-.013.02-.028.04-.043.059C6.35 7.65 5 9.449 5 12s1.35 4.35 1.35 4.35c.25.3.15.75-.151 1.001z" }) + ] + } + ); +}); + +exports.default = SiOvercast; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.d.ts new file mode 100644 index 000000000..6aa5dae10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC7E0F"; +declare const SiOvercast: IconType; +export { SiOvercast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.mjs new file mode 100644 index 000000000..779d1d200 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOvercast.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC7E0F"; +const SiOvercast = React.forwardRef(function SiOvercast2({ title = "Overcast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C5.389 24.018.017 18.671 0 12.061V12C0 5.35 5.351 0 12 0s12 5.35 12 12c0 6.649-5.351 12-12 12zm0-4.751l.9-.899-.9-3.45-.9 3.45.9.899zm-1.15-.05L10.4 20.9l1.05-1.052-.6-.649zm2.3 0l-.6.601 1.05 1.051-.45-1.652zm.85 3.102L12 20.3l-2 2.001c.65.1 1.3.199 2 .199s1.35-.05 2-.199zM12 1.5C6.201 1.5 1.5 6.201 1.5 12c-.008 4.468 2.825 8.446 7.051 9.899l2.25-8.35c-.511-.372-.809-.968-.801-1.6 0-1.101.9-2.001 2-2.001s2 .9 2 2.001c0 .649-.301 1.2-.801 1.6l2.25 8.35c4.227-1.453 7.06-5.432 7.051-9.899 0-5.799-4.701-10.5-10.5-10.5zm6.85 15.7c-.255.319-.714.385-1.049.15-.313-.207-.4-.628-.194-.941.014-.021.028-.04.044-.06 0 0 1.35-1.799 1.35-4.35s-1.35-4.35-1.35-4.35c-.239-.289-.198-.719.091-.957.02-.016.039-.031.06-.044.335-.235.794-.169 1.049.15.1.101 1.65 2.15 1.65 5.2S18.949 17.1 18.85 17.2zm-3.651-1.95c-.3-.3-.249-.85.051-1.15 0 0 .75-.799.75-2.1s-.75-2.051-.75-2.1c-.3-.301-.3-.801-.051-1.15.232-.303.666-.357.969-.125.029.022.056.047.082.074C16.301 8.75 17.5 10 17.5 12s-1.199 3.25-1.25 3.301c-.301.299-.75.25-1.051-.051zm-6.398 0c-.301.301-.75.35-1.051.051C7.699 15.199 6.5 14 6.5 12s1.199-3.199 1.25-3.301c.301-.299.801-.299 1.051.051.3.3.249.85-.051 1.15 0 .049-.75.799-.75 2.1s.75 2.1.75 2.1c.3.3.351.799.051 1.15zm-2.602 2.101c-.335.234-.794.169-1.05-.15C5.051 17.1 3.5 15.05 3.5 12s1.551-5.1 1.649-5.2c.256-.319.715-.386 1.05-.15.313.206.4.628.194.941-.013.02-.028.04-.043.059C6.35 7.65 5 9.449 5 12s1.35 4.35 1.35 4.35c.25.3.15.75-.151 1.001z" }) + ] + } + ); +}); + +export { SiOvercast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.cjs new file mode 100644 index 000000000..877ea820c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#47A141"; +const SiOverleaf = React__namespace.forwardRef(function SiOverleaf2({ title = "Overleaf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.3515.7484C19.1109-.5101 7.365-.982 7.3452 6.0266c-3.4272 2.194-5.6967 5.768-5.6967 9.598a8.373 8.373 0 0 0 13.1225 6.898 8.373 8.373 0 0 0-1.7668-14.7194c-.6062-.2339-1.9234-.6481-2.9753-.559-1.5007.9544-3.3308 2.9155-4.1949 4.8693 2.5894-3.082 7.5046-2.425 9.1937 1.2287 1.6892 3.6538-.9944 7.8237-5.0198 7.7998a5.4995 5.4995 0 0 1-4.1949-1.9328c-1.485-1.7483-1.8678-3.6444-1.5615-5.4975 1.057-6.4947 8.759-10.1894 14.486-11.6094-1.8677.989-5.2373 2.6134-7.5948 4.3837C18.015 9.1382 19.1308 3.345 22.3515.7484z" }) + ] + } + ); +}); + +exports.default = SiOverleaf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.d.ts new file mode 100644 index 000000000..27e3b95a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#47A141"; +declare const SiOverleaf: IconType; +export { SiOverleaf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.mjs new file mode 100644 index 000000000..ff4b7dde3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOverleaf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#47A141"; +const SiOverleaf = React.forwardRef(function SiOverleaf2({ title = "Overleaf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.3515.7484C19.1109-.5101 7.365-.982 7.3452 6.0266c-3.4272 2.194-5.6967 5.768-5.6967 9.598a8.373 8.373 0 0 0 13.1225 6.898 8.373 8.373 0 0 0-1.7668-14.7194c-.6062-.2339-1.9234-.6481-2.9753-.559-1.5007.9544-3.3308 2.9155-4.1949 4.8693 2.5894-3.082 7.5046-2.425 9.1937 1.2287 1.6892 3.6538-.9944 7.8237-5.0198 7.7998a5.4995 5.4995 0 0 1-4.1949-1.9328c-1.485-1.7483-1.8678-3.6444-1.5615-5.4975 1.057-6.4947 8.759-10.1894 14.486-11.6094-1.8677.989-5.2373 2.6134-7.5948 4.3837C18.015 9.1382 19.1308 3.345 22.3515.7484z" }) + ] + } + ); +}); + +export { SiOverleaf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.cjs new file mode 100644 index 000000000..3a74c3fce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#123F6D"; +const SiOvh = React__namespace.forwardRef(function SiOvh2({ title = "OVH", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.881 10.095l2.563-4.45C23.434 7.389 24 9.404 24 11.555c0 2.88-1.017 5.523-2.71 7.594h-6.62l2.04-3.541h-2.696l3.176-5.513h2.691zm-2.32-5.243L9.333 19.14l.003.009H2.709C1.014 17.077 0 14.435 0 11.555c0-2.152.57-4.17 1.561-5.918L5.855 13.1 10.6 4.852h6.961z" }) + ] + } + ); +}); + +exports.default = SiOvh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.d.ts new file mode 100644 index 000000000..6c03dee2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#123F6D"; +declare const SiOvh: IconType; +export { SiOvh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.mjs new file mode 100644 index 000000000..4ef3a6b7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOvh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#123F6D"; +const SiOvh = React.forwardRef(function SiOvh2({ title = "OVH", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.881 10.095l2.563-4.45C23.434 7.389 24 9.404 24 11.555c0 2.88-1.017 5.523-2.71 7.594h-6.62l2.04-3.541h-2.696l3.176-5.513h2.691zm-2.32-5.243L9.333 19.14l.003.009H2.709C1.014 17.077 0 14.435 0 11.555c0-2.152.57-4.17 1.561-5.918L5.855 13.1 10.6 4.852h6.961z" }) + ] + } + ); +}); + +export { SiOvh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.cjs new file mode 100644 index 000000000..122b81170 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiOwasp = React__namespace.forwardRef(function SiOwasp2({ title = "OWASP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.897 20.503c-.384 0-1.782-2.489-1.97-3.198-.393-1.486-.308-2.114-.285-2.314.072-.613.667-.92.703-1.748.01-.256.14-1.535.243-2.534a1.723 1.723 0 0 1-.733-.343c.676.908-.32 1.995-1.767 3.443-1.536 1.536-4.945 2.961-4.945 2.961s1.425-3.41 2.961-4.945c1.13-1.129 2.04-1.983 2.816-1.983.22 0 .427.067.627.216a1.722 1.722 0 0 1-.343-.733c-.999.103-2.278.232-2.534.244-.829.036-1.135.63-1.747.702-.07.008-.194.024-.388.024-.36 0-.963-.054-1.926-.31-.772-.203-3.648-1.84-3.14-2.045.26-.105 1.087-.176 2.175-.176 1.047 0 2.337.066 3.596.23 1.57.205 3.01.463 3.992.656.016-.053.035-.104.058-.154l-1.004-.48s-.8-.92-.715-.984a.02.02 0 0 1 .012-.003c.126 0 .767.733.829.816l.605.202-.284-.249s-.388-1.438-.287-1.472h.004c.106 0 .459 1.25.489 1.34.07.06.303.152.596.32l-.308-.79s.14-1.305.243-1.305h.003c.105.021-.02 1.089-.047 1.221l.51.783a1.31 1.31 0 0 1 .463-.082c.184 0 .374.036.558.107-.236-.502-.218-1.025.095-1.338a.84.84 0 0 1 .353-.209.462.462 0 0 1 .457-.383c.127 0 .254.05.352.148a.497.497 0 0 1 .147.335c.151-.311.329-.73.317-.867-.03-.307-.386-.852-.39-.857a.076.076 0 0 1 .064-.119c.025 0 .05.012.064.035.016.023.381.582.414.927.018.198-.21.696-.333.95a2.227 2.227 0 0 1 .873.874c.245-.12.715-.334.927-.334l.024.001c.345.033.904.399.927.414a.076.076 0 0 1-.084.128c-.005-.004-.55-.36-.857-.39h-.015c-.15 0-.552.171-.852.317.12.004.242.053.335.147a.482.482 0 0 1 .012.681.459.459 0 0 1-.247.128.845.845 0 0 1-.21.354.924.924 0 0 1-.67.255c-.212 0-.441-.055-.667-.16.132.343.142.708.025 1.02l.783.51c.095-.019.666-.088.993-.088.13 0 .222.011.228.04.02.106-1.305.247-1.305.247l-.79-.308c.168.293.26.527.32.596.091.03 1.374.392 1.34.493-.004.012-.026.017-.063.017-.283 0-1.41-.304-1.41-.304l-.248-.284.202.605c.087.065.876.755.813.841-.004.005-.009.007-.016.007-.139 0-.967-.722-.967-.722l-.481-1.004a1.18 1.18 0 0 1-.154.058c.193.982.451 2.422.656 3.992.335 2.569.26 5.261.054 5.77-.016.041-.042.06-.076.06M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12m0-22.153C6.393 1.847 1.847 6.393 1.847 12S6.393 22.153 12 22.153 22.153 17.607 22.153 12 17.607 1.847 12 1.847Z" }) + ] + } + ); +}); + +exports.default = SiOwasp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.d.ts new file mode 100644 index 000000000..7ea91aa8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiOwasp: IconType; +export { SiOwasp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.mjs new file mode 100644 index 000000000..d600330ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOwasp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiOwasp = React.forwardRef(function SiOwasp2({ title = "OWASP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.897 20.503c-.384 0-1.782-2.489-1.97-3.198-.393-1.486-.308-2.114-.285-2.314.072-.613.667-.92.703-1.748.01-.256.14-1.535.243-2.534a1.723 1.723 0 0 1-.733-.343c.676.908-.32 1.995-1.767 3.443-1.536 1.536-4.945 2.961-4.945 2.961s1.425-3.41 2.961-4.945c1.13-1.129 2.04-1.983 2.816-1.983.22 0 .427.067.627.216a1.722 1.722 0 0 1-.343-.733c-.999.103-2.278.232-2.534.244-.829.036-1.135.63-1.747.702-.07.008-.194.024-.388.024-.36 0-.963-.054-1.926-.31-.772-.203-3.648-1.84-3.14-2.045.26-.105 1.087-.176 2.175-.176 1.047 0 2.337.066 3.596.23 1.57.205 3.01.463 3.992.656.016-.053.035-.104.058-.154l-1.004-.48s-.8-.92-.715-.984a.02.02 0 0 1 .012-.003c.126 0 .767.733.829.816l.605.202-.284-.249s-.388-1.438-.287-1.472h.004c.106 0 .459 1.25.489 1.34.07.06.303.152.596.32l-.308-.79s.14-1.305.243-1.305h.003c.105.021-.02 1.089-.047 1.221l.51.783a1.31 1.31 0 0 1 .463-.082c.184 0 .374.036.558.107-.236-.502-.218-1.025.095-1.338a.84.84 0 0 1 .353-.209.462.462 0 0 1 .457-.383c.127 0 .254.05.352.148a.497.497 0 0 1 .147.335c.151-.311.329-.73.317-.867-.03-.307-.386-.852-.39-.857a.076.076 0 0 1 .064-.119c.025 0 .05.012.064.035.016.023.381.582.414.927.018.198-.21.696-.333.95a2.227 2.227 0 0 1 .873.874c.245-.12.715-.334.927-.334l.024.001c.345.033.904.399.927.414a.076.076 0 0 1-.084.128c-.005-.004-.55-.36-.857-.39h-.015c-.15 0-.552.171-.852.317.12.004.242.053.335.147a.482.482 0 0 1 .012.681.459.459 0 0 1-.247.128.845.845 0 0 1-.21.354.924.924 0 0 1-.67.255c-.212 0-.441-.055-.667-.16.132.343.142.708.025 1.02l.783.51c.095-.019.666-.088.993-.088.13 0 .222.011.228.04.02.106-1.305.247-1.305.247l-.79-.308c.168.293.26.527.32.596.091.03 1.374.392 1.34.493-.004.012-.026.017-.063.017-.283 0-1.41-.304-1.41-.304l-.248-.284.202.605c.087.065.876.755.813.841-.004.005-.009.007-.016.007-.139 0-.967-.722-.967-.722l-.481-1.004a1.18 1.18 0 0 1-.154.058c.193.982.451 2.422.656 3.992.335 2.569.26 5.261.054 5.77-.016.041-.042.06-.076.06M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12m0-22.153C6.393 1.847 1.847 6.393 1.847 12S6.393 22.153 12 22.153 22.153 17.607 22.153 12 17.607 1.847 12 1.847Z" }) + ] + } + ); +}); + +export { SiOwasp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.cjs new file mode 100644 index 000000000..629784868 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#041E42"; +const SiOwncloud = React__namespace.forwardRef(function SiOwncloud2({ title = "ownCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.1888 9.5202c-.1375-.2475-.22-.5317-.22-.825 0-.926.7517-1.6776 1.6776-1.6776.3392 0 .66.1008.9259.2842a3.5233 3.5233 0 0 0-.3117 1.4576c0 .0916.009.1925.009.2841-.0642 0-.1284-.0091-.2017-.0091a3.6837 3.6837 0 0 0-1.8793.4858zm-.3667 6.518c-.9717-.7059-1.6135-1.8518-1.6135-3.1444 0-.33.0458-.6509.1192-.9534H3.227C1.4485 11.9404 0 13.3888 0 15.1673c0 1.7785 1.4485 3.2269 3.227 3.2269.6784 0 1.3109-.2109 1.8334-.5684-.2108-.33-.3392-.7334-.3392-1.155 0-.22.0367-.431.1009-.6326zm.1375-.3484c.2933-.5592.8159-.9717 1.4484-1.1.055-.0092.1192-.0184.1834-.0275.0642-.0092.1191-.0092.1833-.0184h.0825c.1009 0 .1925.0092.2934.0184-.0275-.22-.0458-.44-.0458-.6693 0-1.0817.3575-2.0901.9534-2.906-.1375-.165-.2567-.3483-.3575-.5409l-.0825-.165c-.0275-.055-.055-.11-.0733-.165-.0917-.2292-.165-.4675-.2109-.715-.0825-.0092-.165-.0092-.2475-.0092-.605 0-1.1826.1558-1.6776.4309-.055.0275-.11.0641-.165.0916-.055.0367-.1009.0642-.1559.1009-.5684.3942-1.0176.9534-1.2742 1.6043-.0183.055-.0458.1191-.0642.1741-.0183.055-.0367.1192-.055.1742a3.4222 3.4222 0 0 0-.1284.926c.009 1.1367.5592 2.1542 1.3935 2.796zm11.3216-4.1344c.4675-.2475.99-.3942 1.5493-.4309-.1467-1.65-1.531-2.9519-3.2177-2.9519-.0642 0-.1284 0-.1925.0092.0275.1834.0458.3759.0458.5684 0 .3025-.0367.5959-.11.8709.8067.4492 1.485 1.1184 1.925 1.9343zm-8.608-2.301c.009.0642.0274.1283.0366.1925.0367.1467.0733.2934.1284.4309.0275.0641.0458.1191.0733.1833.0275.055.055.1192.0825.1742.0825.165.1833.3208.2933.4675.2292-.2567.4767-.495.7517-.7059.055-.0366.1009-.0733.1559-.11l.165-.11c.7425-.4767 1.6226-.7517 2.5577-.7609h.0642c.0642 0 .1191 0 .1833.0092.0825 0 .165.0092.2475.0183.5684.0459 1.1.1926 1.5951.4217.0458-.2291.0733-.4583.0733-.7058 0-.1834-.0183-.3576-.0458-.5226-.009-.0641-.0183-.1192-.0367-.1833-.009-.0642-.0275-.1192-.0458-.1742-.3667-1.3751-1.6134-2.3652-3.0894-2.3652-1.2192 0-2.2826.6784-2.8327 1.6685-.0275.055-.0642.11-.0917.165-.0275.0642-.055.1192-.0825.1833-.1466.3759-.2383.7793-.2383 1.2101 0 .11.009.2109.0183.3209.0183.0641.0275.1283.0367.1925zm14.5576 5.4637a1.426 1.426 0 0 0-.2842.0275c.009.0825.009.165.009.2384 0 1.0267-.4034 1.9618-1.0634 2.6585.3209.3758.8067.6142 1.3384.6142.9718 0 1.7693-.7976 1.7693-1.7693 0-.9717-.7975-1.7693-1.7693-1.7693zm-.6509.1192c0-.0642-.009-.1284-.009-.1925-.009-.0642-.009-.1284-.0183-.1834-.2475-1.65-1.641-2.9243-3.3369-2.9794h-.1833c-.0642 0-.1192 0-.1834.0092a3.5512 3.5512 0 0 0-1.3934.3942c.2567.5592.4034 1.1735.4309 1.8152 0 .0641.009.1283.009.1925v.055c0 .0825 0 .165-.009.2475-.0733 1.2192-.596 2.3102-1.4026 3.126a3.5036 3.5036 0 0 0 2.6127 1.1643c.8892 0 1.705-.3392 2.3284-.8892.0458-.0459.0917-.0825.1376-.1284.0458-.0458.0917-.0916.1283-.1375.5684-.6234.9076-1.4484.9076-2.356a.563.563 0 0 1-.0183-.1375zM7.8656 16.5057c-.0367-.055-.0642-.11-.1008-.165a4.9471 4.9471 0 0 1-.5409-1.3934c-.1192-.0275-.2383-.0367-.3575-.0367h-.0367c-.0642 0-.1192.0092-.1834.0092-.0642.0092-.1191.0184-.1833.0367-.5225.1192-.9534.4767-1.1826.9442-.0275.055-.055.11-.0733.1742-.0183.055-.0367.1192-.055.1742a1.681 1.681 0 0 0-.055.4308c0 .3392.1009.66.2659.926.0367.055.0642.1008.11.1558.0367.0458.0733.0917.1192.1375a1.764 1.764 0 0 0 1.2834.55c.7517 0 1.3934-.4675 1.6501-1.1275-.1925-.2017-.3759-.4126-.5317-.651a.5052.5052 0 0 1-.1284-.165zm8.6356-2.2643c.009-.0733.009-.1558.009-.2383v-.1192c0-.6509-.1375-1.2651-.385-1.8243l-.0825-.165-.0825-.165c-.4034-.7334-.9992-1.3476-1.7235-1.7602-.055-.0275-.11-.0641-.165-.0916l-.165-.0825c-.5592-.2659-1.1734-.4126-1.8243-.4309h-.2292c-.0825 0-.1558.0092-.2291.0092a4.3878 4.3878 0 0 0-1.9618.6325c-.055.0367-.11.0642-.1559.1009-.055.0366-.1008.0733-.1558.11-.3025.22-.5776.4675-.816.7517-.0366.0458-.0824.0916-.119.1467-.0368.0458-.0734.1008-.11.1466-.5318.7426-.8435 1.641-.8435 2.6219 0 .2567.0183.5134.0642.7517.009.0733.0275.1375.0367.2108.0183.0734.0367.1467.055.2292.11.4126.2842.7976.5042 1.1551.0367.055.0642.11.1008.1559.0367.055.0733.1008.11.1558.0826.1192.1742.2292.2659.33.055.055.1008.1192.1558.1742.0458.055.1009.1008.1559.1467.8067.7425 1.8885 1.2009 3.071 1.2009 1.1368 0 2.1819-.4217 2.9794-1.1184.0458-.0367.0917-.0825.1375-.1192.0458-.0458.0917-.0825.1375-.1283.66-.6876 1.1093-1.5768 1.2376-2.5669a7.8659 7.8659 0 0 0 .0275-.22z" }) + ] + } + ); +}); + +exports.default = SiOwncloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.d.ts new file mode 100644 index 000000000..c743846ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#041E42"; +declare const SiOwncloud: IconType; +export { SiOwncloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.mjs new file mode 100644 index 000000000..c518ba3bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOwncloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#041E42"; +const SiOwncloud = React.forwardRef(function SiOwncloud2({ title = "ownCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.1888 9.5202c-.1375-.2475-.22-.5317-.22-.825 0-.926.7517-1.6776 1.6776-1.6776.3392 0 .66.1008.9259.2842a3.5233 3.5233 0 0 0-.3117 1.4576c0 .0916.009.1925.009.2841-.0642 0-.1284-.0091-.2017-.0091a3.6837 3.6837 0 0 0-1.8793.4858zm-.3667 6.518c-.9717-.7059-1.6135-1.8518-1.6135-3.1444 0-.33.0458-.6509.1192-.9534H3.227C1.4485 11.9404 0 13.3888 0 15.1673c0 1.7785 1.4485 3.2269 3.227 3.2269.6784 0 1.3109-.2109 1.8334-.5684-.2108-.33-.3392-.7334-.3392-1.155 0-.22.0367-.431.1009-.6326zm.1375-.3484c.2933-.5592.8159-.9717 1.4484-1.1.055-.0092.1192-.0184.1834-.0275.0642-.0092.1191-.0092.1833-.0184h.0825c.1009 0 .1925.0092.2934.0184-.0275-.22-.0458-.44-.0458-.6693 0-1.0817.3575-2.0901.9534-2.906-.1375-.165-.2567-.3483-.3575-.5409l-.0825-.165c-.0275-.055-.055-.11-.0733-.165-.0917-.2292-.165-.4675-.2109-.715-.0825-.0092-.165-.0092-.2475-.0092-.605 0-1.1826.1558-1.6776.4309-.055.0275-.11.0641-.165.0916-.055.0367-.1009.0642-.1559.1009-.5684.3942-1.0176.9534-1.2742 1.6043-.0183.055-.0458.1191-.0642.1741-.0183.055-.0367.1192-.055.1742a3.4222 3.4222 0 0 0-.1284.926c.009 1.1367.5592 2.1542 1.3935 2.796zm11.3216-4.1344c.4675-.2475.99-.3942 1.5493-.4309-.1467-1.65-1.531-2.9519-3.2177-2.9519-.0642 0-.1284 0-.1925.0092.0275.1834.0458.3759.0458.5684 0 .3025-.0367.5959-.11.8709.8067.4492 1.485 1.1184 1.925 1.9343zm-8.608-2.301c.009.0642.0274.1283.0366.1925.0367.1467.0733.2934.1284.4309.0275.0641.0458.1191.0733.1833.0275.055.055.1192.0825.1742.0825.165.1833.3208.2933.4675.2292-.2567.4767-.495.7517-.7059.055-.0366.1009-.0733.1559-.11l.165-.11c.7425-.4767 1.6226-.7517 2.5577-.7609h.0642c.0642 0 .1191 0 .1833.0092.0825 0 .165.0092.2475.0183.5684.0459 1.1.1926 1.5951.4217.0458-.2291.0733-.4583.0733-.7058 0-.1834-.0183-.3576-.0458-.5226-.009-.0641-.0183-.1192-.0367-.1833-.009-.0642-.0275-.1192-.0458-.1742-.3667-1.3751-1.6134-2.3652-3.0894-2.3652-1.2192 0-2.2826.6784-2.8327 1.6685-.0275.055-.0642.11-.0917.165-.0275.0642-.055.1192-.0825.1833-.1466.3759-.2383.7793-.2383 1.2101 0 .11.009.2109.0183.3209.0183.0641.0275.1283.0367.1925zm14.5576 5.4637a1.426 1.426 0 0 0-.2842.0275c.009.0825.009.165.009.2384 0 1.0267-.4034 1.9618-1.0634 2.6585.3209.3758.8067.6142 1.3384.6142.9718 0 1.7693-.7976 1.7693-1.7693 0-.9717-.7975-1.7693-1.7693-1.7693zm-.6509.1192c0-.0642-.009-.1284-.009-.1925-.009-.0642-.009-.1284-.0183-.1834-.2475-1.65-1.641-2.9243-3.3369-2.9794h-.1833c-.0642 0-.1192 0-.1834.0092a3.5512 3.5512 0 0 0-1.3934.3942c.2567.5592.4034 1.1735.4309 1.8152 0 .0641.009.1283.009.1925v.055c0 .0825 0 .165-.009.2475-.0733 1.2192-.596 2.3102-1.4026 3.126a3.5036 3.5036 0 0 0 2.6127 1.1643c.8892 0 1.705-.3392 2.3284-.8892.0458-.0459.0917-.0825.1376-.1284.0458-.0458.0917-.0916.1283-.1375.5684-.6234.9076-1.4484.9076-2.356a.563.563 0 0 1-.0183-.1375zM7.8656 16.5057c-.0367-.055-.0642-.11-.1008-.165a4.9471 4.9471 0 0 1-.5409-1.3934c-.1192-.0275-.2383-.0367-.3575-.0367h-.0367c-.0642 0-.1192.0092-.1834.0092-.0642.0092-.1191.0184-.1833.0367-.5225.1192-.9534.4767-1.1826.9442-.0275.055-.055.11-.0733.1742-.0183.055-.0367.1192-.055.1742a1.681 1.681 0 0 0-.055.4308c0 .3392.1009.66.2659.926.0367.055.0642.1008.11.1558.0367.0458.0733.0917.1192.1375a1.764 1.764 0 0 0 1.2834.55c.7517 0 1.3934-.4675 1.6501-1.1275-.1925-.2017-.3759-.4126-.5317-.651a.5052.5052 0 0 1-.1284-.165zm8.6356-2.2643c.009-.0733.009-.1558.009-.2383v-.1192c0-.6509-.1375-1.2651-.385-1.8243l-.0825-.165-.0825-.165c-.4034-.7334-.9992-1.3476-1.7235-1.7602-.055-.0275-.11-.0641-.165-.0916l-.165-.0825c-.5592-.2659-1.1734-.4126-1.8243-.4309h-.2292c-.0825 0-.1558.0092-.2291.0092a4.3878 4.3878 0 0 0-1.9618.6325c-.055.0367-.11.0642-.1559.1009-.055.0366-.1008.0733-.1558.11-.3025.22-.5776.4675-.816.7517-.0366.0458-.0824.0916-.119.1467-.0368.0458-.0734.1008-.11.1466-.5318.7426-.8435 1.641-.8435 2.6219 0 .2567.0183.5134.0642.7517.009.0733.0275.1375.0367.2108.0183.0734.0367.1467.055.2292.11.4126.2842.7976.5042 1.1551.0367.055.0642.11.1008.1559.0367.055.0733.1008.11.1558.0826.1192.1742.2292.2659.33.055.055.1008.1192.1558.1742.0458.055.1009.1008.1559.1467.8067.7425 1.8885 1.2009 3.071 1.2009 1.1368 0 2.1819-.4217 2.9794-1.1184.0458-.0367.0917-.0825.1375-.1192.0458-.0458.0917-.0825.1375-.1283.66-.6876 1.1093-1.5768 1.2376-2.5669a7.8659 7.8659 0 0 0 .0275-.22z" }) + ] + } + ); +}); + +export { SiOwncloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.cjs new file mode 100644 index 000000000..a40373948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00F7F1"; +const SiOxc = React__namespace.forwardRef(function SiOxc2({ title = "Oxc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.463 3.923c0 .637.517 1.154 1.154 1.154h4.376c.515 0 .772.62.408.984l-5.6 5.601c-.217.216-.34.51-.34.816v1.915c0 .797.79 1.35 1.49.97.71-.386 1.371-.853 1.972-1.392a.603.603 0 0 1 .828.012l4.08 4.08a.56.56 0 0 1-.007.808A17.25 17.25 0 0 1 12 23.54 17.25 17.25 0 0 1 .176 18.872a.56.56 0 0 1-.006-.81l4.08-4.078a.604.604 0 0 1 .827-.012 10.4 10.4 0 0 0 1.973 1.39c.7.38 1.488-.171 1.488-.968v-1.915c0-.307-.122-.6-.339-.816L2.6 6.061a.576.576 0 0 1 .408-.984h4.376c.637 0 1.154-.517 1.154-1.154V1.038c0-.32.258-.577.577-.577h5.77c.318 0 .576.258.576.577v2.885z" }) + ] + } + ); +}); + +exports.default = SiOxc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.d.ts new file mode 100644 index 000000000..c868924dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00F7F1"; +declare const SiOxc: IconType; +export { SiOxc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.mjs new file mode 100644 index 000000000..3307debe2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOxc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00F7F1"; +const SiOxc = React.forwardRef(function SiOxc2({ title = "Oxc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.463 3.923c0 .637.517 1.154 1.154 1.154h4.376c.515 0 .772.62.408.984l-5.6 5.601c-.217.216-.34.51-.34.816v1.915c0 .797.79 1.35 1.49.97.71-.386 1.371-.853 1.972-1.392a.603.603 0 0 1 .828.012l4.08 4.08a.56.56 0 0 1-.007.808A17.25 17.25 0 0 1 12 23.54 17.25 17.25 0 0 1 .176 18.872a.56.56 0 0 1-.006-.81l4.08-4.078a.604.604 0 0 1 .827-.012 10.4 10.4 0 0 0 1.973 1.39c.7.38 1.488-.171 1.488-.968v-1.915c0-.307-.122-.6-.339-.816L2.6 6.061a.576.576 0 0 1 .408-.984h4.376c.637 0 1.154-.517 1.154-1.154V1.038c0-.32.258-.577.577-.577h5.77c.318 0 .576.258.576.577v2.885z" }) + ] + } + ); +}); + +export { SiOxc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.cjs new file mode 100644 index 000000000..8317fa94f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3A209E"; +const SiOxygen = React__namespace.forwardRef(function SiOxygen2({ title = "Oxygen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.89 12c0-6.627-5.324-12-11.89-12S.109 5.373.109 12 5.433 24 12 24c2.014 0 3.91-.508 5.573-1.4.62.354 1.338.558 2.105.558 2.326 0 4.212-1.865 4.212-4.165 0-.946-.319-1.818-.857-2.517.552-1.383.857-2.894.857-4.476zm-21.402.005c0-5.448 4.269-9.864 9.535-9.864s9.535 4.416 9.535 9.864c0 1.07-.166 2.099-.471 3.063a4.23 4.23 0 0 0-1.408-.239c-2.326 0-4.212 1.865-4.212 4.165 0 .72.185 1.397.51 1.988a9.21 9.21 0 0 1-3.953.888c-5.267-.001-9.536-4.418-9.536-9.865zm17.191 9.864c-1.514.021-2.84-1.267-2.819-2.788 0-1.54 1.262-2.788 2.819-2.788 1.507-.025 2.843 1.27 2.819 2.788 0 1.54-1.263 2.788-2.819 2.788z" }) + ] + } + ); +}); + +exports.default = SiOxygen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.d.ts new file mode 100644 index 000000000..7f4558948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3A209E"; +declare const SiOxygen: IconType; +export { SiOxygen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.mjs new file mode 100644 index 000000000..fe3d64fcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOxygen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3A209E"; +const SiOxygen = React.forwardRef(function SiOxygen2({ title = "Oxygen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.89 12c0-6.627-5.324-12-11.89-12S.109 5.373.109 12 5.433 24 12 24c2.014 0 3.91-.508 5.573-1.4.62.354 1.338.558 2.105.558 2.326 0 4.212-1.865 4.212-4.165 0-.946-.319-1.818-.857-2.517.552-1.383.857-2.894.857-4.476zm-21.402.005c0-5.448 4.269-9.864 9.535-9.864s9.535 4.416 9.535 9.864c0 1.07-.166 2.099-.471 3.063a4.23 4.23 0 0 0-1.408-.239c-2.326 0-4.212 1.865-4.212 4.165 0 .72.185 1.397.51 1.988a9.21 9.21 0 0 1-3.953.888c-5.267-.001-9.536-4.418-9.536-9.865zm17.191 9.864c-1.514.021-2.84-1.267-2.819-2.788 0-1.54 1.262-2.788 2.819-2.788 1.507-.025 2.843 1.27 2.819 2.788 0 1.54-1.263 2.788-2.819 2.788z" }) + ] + } + ); +}); + +export { SiOxygen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.cjs new file mode 100644 index 000000000..11e61f656 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE2E24"; +const SiOyo = React__namespace.forwardRef(function SiOyo2({ title = "OYO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.843 16.185C22.135 16.185 24 14.307 24 12c0-2.309-1.865-4.185-4.157-4.185-2.293 0-4.158 1.876-4.158 4.185 0 2.307 1.865 4.185 4.158 4.185zm0-5.677c.817 0 1.482.67 1.482 1.492s-.666 1.49-1.483 1.49A1.488 1.488 0 0 1 18.36 12c0-.824.665-1.493 1.482-1.493zM4.157 16.185c2.293 0 4.158-1.878 4.158-4.185 0-2.309-1.865-4.185-4.158-4.185C1.866 7.815 0 9.691 0 12c0 2.307 1.866 4.185 4.157 4.185zm0-5.677c.818 0 1.483.67 1.483 1.492s-.665 1.49-1.483 1.49A1.488 1.488 0 0 1 2.677 12c0-.824.664-1.493 1.48-1.493zm7.84-.094L10.722 7.87H7.733l2.791 5.564v2.62h2.948v-2.62l2.791-5.564h-2.99l-1.275 2.544Z" }) + ] + } + ); +}); + +exports.default = SiOyo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.d.ts new file mode 100644 index 000000000..f7379d639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE2E24"; +declare const SiOyo: IconType; +export { SiOyo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.mjs new file mode 100644 index 000000000..56b8b3cee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiOyo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE2E24"; +const SiOyo = React.forwardRef(function SiOyo2({ title = "OYO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.843 16.185C22.135 16.185 24 14.307 24 12c0-2.309-1.865-4.185-4.157-4.185-2.293 0-4.158 1.876-4.158 4.185 0 2.307 1.865 4.185 4.158 4.185zm0-5.677c.817 0 1.482.67 1.482 1.492s-.666 1.49-1.483 1.49A1.488 1.488 0 0 1 18.36 12c0-.824.665-1.493 1.482-1.493zM4.157 16.185c2.293 0 4.158-1.878 4.158-4.185 0-2.309-1.865-4.185-4.158-4.185C1.866 7.815 0 9.691 0 12c0 2.307 1.866 4.185 4.157 4.185zm0-5.677c.818 0 1.483.67 1.483 1.492s-.665 1.49-1.483 1.49A1.488 1.488 0 0 1 2.677 12c0-.824.664-1.493 1.48-1.493zm7.84-.094L10.722 7.87H7.733l2.791 5.564v2.62h2.948v-2.62l2.791-5.564h-2.99l-1.275 2.544Z" }) + ] + } + ); +}); + +export { SiOyo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.cjs new file mode 100644 index 000000000..8836cfb45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED225D"; +const SiP5dotjs = React__namespace.forwardRef(function SiP5dotjs2({ title = "p5.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.345 9.122v.784h.035c.07-.11.161-.22.274-.333a1.85 1.85 0 0 1 .416-.305 2.557 2.557 0 0 1 1.253-.31 2.632 2.632 0 0 1 1.964.854c.242.266.429.578.561.936.133.36.2.745.2 1.159 0 .413-.065.801-.194 1.163a2.856 2.856 0 0 1-.549.948 2.642 2.642 0 0 1-.866.644c-.34.16-.723.24-1.152.24-.398 0-.763-.083-1.094-.246a1.86 1.86 0 0 1-.766-.668h-.024v3.558H0V9.12zm3.276 2.785c0-.219-.034-.435-.1-.65a1.82 1.82 0 0 0-.298-.579 1.503 1.503 0 0 0-.503-.416 1.53 1.53 0 0 0-.714-.157 1.44 1.44 0 0 0-.691.163 1.77 1.77 0 0 0-.52.421 1.795 1.795 0 0 0-.328.585 1.97 1.97 0 0 0 0 1.305 1.807 1.807 0 0 0 .328.58 1.687 1.687 0 0 0 .52.414c.203.105.434.159.691.159a1.483 1.483 0 0 0 1.217-.586c.132-.171.231-.366.297-.585a2.248 2.248 0 0 0 .1-.654zm13.682-3.054v6.223c0 .335-.028.653-.082.952a2.018 2.018 0 0 1-.31.785 1.623 1.623 0 0 1-.62.532c-.262.132-.602.199-1.024.199a2.676 2.676 0 0 1-.35-.024 3.507 3.507 0 0 1-.281-.047l.117-1.192a1.762 1.762 0 0 0 .386.047.752.752 0 0 0 .397-.094.627.627 0 0 0 .234-.258c.055-.109.09-.235.105-.38.016-.144.024-.298.024-.461V8.853zm4.784 1.765a1.621 1.621 0 0 0-.514-.427 1.449 1.449 0 0 0-.714-.18c-.226 0-.432.046-.62.14a.483.483 0 0 0-.28.467.47.47 0 0 0 .31.462c.206.09.508.182.906.276.21.047.423.109.638.187.214.077.41.18.585.31a1.53 1.53 0 0 1 .427.48c.109.19.163.423.163.695 0 .344-.064.634-.192.872-.13.238-.301.43-.515.58a2.169 2.169 0 0 1-.75.32 3.884 3.884 0 0 1-.883.101 3.507 3.507 0 0 1-1.275-.24 2.694 2.694 0 0 1-1.03-.685l.925-.866a1.828 1.828 0 0 0 1.44.703c.1 0 .204-.012.31-.035a1.052 1.052 0 0 0 .29-.112.607.607 0 0 0 .218-.205.58.58 0 0 0 .081-.316.52.52 0 0 0-.32-.503c-.216-.1-.538-.202-.967-.303a4.635 4.635 0 0 1-.614-.182 2.004 2.004 0 0 1-.531-.292 1.35 1.35 0 0 1-.375-.451 1.42 1.42 0 0 1-.14-.667c0-.311.064-.58.192-.806a1.66 1.66 0 0 1 .51-.556c.21-.145.447-.252.713-.322a3.184 3.184 0 0 1 .819-.105c.405 0 .801.07 1.187.21.386.14.692.355.919.643zm-8.29 2.931l.837-.252.164.505-.833.283.517.734-.436.316-.544-.721-.53.701-.423-.322.517-.708-.84-.302.165-.506.843.271v-.872h.564v.872zm-2.887-2.644a2.309 2.309 0 0 0-.602-.819 2.679 2.679 0 0 0-.907-.509 3.517 3.517 0 0 0-1.13-.175c-.148 0-.313.008-.497.024a2.435 2.435 0 0 0-.474.082l.082-1.79h3.382V6.453H7.05l-.14 4.527a3.487 3.487 0 0 1 .426-.175 6.564 6.564 0 0 1 .491-.147 4.487 4.487 0 0 1 .515-.099 3.78 3.78 0 0 1 .497-.035c.227 0 .45.025.668.076.218.05.415.14.591.269.174.129.317.298.426.509.11.21.164.476.164.795 0 .25-.04.474-.123.673a1.413 1.413 0 0 1-.333.497 1.443 1.443 0 0 1-.49.304c-.19.07-.388.106-.598.106-.375 0-.698-.1-.972-.299a1.631 1.631 0 0 1-.584-.79l-.015.006-1.016.952c.205.335.47.616.797.838.475.324 1.06.486 1.754.486a3.417 3.417 0 0 0 1.17-.2 2.705 2.705 0 0 0 1.609-1.491c.16-.362.24-.773.24-1.233 0-.422-.072-.794-.216-1.118z" }) + ] + } + ); +}); + +exports.default = SiP5dotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.d.ts new file mode 100644 index 000000000..918165261 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED225D"; +declare const SiP5dotjs: IconType; +export { SiP5dotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.mjs new file mode 100644 index 000000000..f2155a985 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiP5dotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED225D"; +const SiP5dotjs = React.forwardRef(function SiP5dotjs2({ title = "p5.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.345 9.122v.784h.035c.07-.11.161-.22.274-.333a1.85 1.85 0 0 1 .416-.305 2.557 2.557 0 0 1 1.253-.31 2.632 2.632 0 0 1 1.964.854c.242.266.429.578.561.936.133.36.2.745.2 1.159 0 .413-.065.801-.194 1.163a2.856 2.856 0 0 1-.549.948 2.642 2.642 0 0 1-.866.644c-.34.16-.723.24-1.152.24-.398 0-.763-.083-1.094-.246a1.86 1.86 0 0 1-.766-.668h-.024v3.558H0V9.12zm3.276 2.785c0-.219-.034-.435-.1-.65a1.82 1.82 0 0 0-.298-.579 1.503 1.503 0 0 0-.503-.416 1.53 1.53 0 0 0-.714-.157 1.44 1.44 0 0 0-.691.163 1.77 1.77 0 0 0-.52.421 1.795 1.795 0 0 0-.328.585 1.97 1.97 0 0 0 0 1.305 1.807 1.807 0 0 0 .328.58 1.687 1.687 0 0 0 .52.414c.203.105.434.159.691.159a1.483 1.483 0 0 0 1.217-.586c.132-.171.231-.366.297-.585a2.248 2.248 0 0 0 .1-.654zm13.682-3.054v6.223c0 .335-.028.653-.082.952a2.018 2.018 0 0 1-.31.785 1.623 1.623 0 0 1-.62.532c-.262.132-.602.199-1.024.199a2.676 2.676 0 0 1-.35-.024 3.507 3.507 0 0 1-.281-.047l.117-1.192a1.762 1.762 0 0 0 .386.047.752.752 0 0 0 .397-.094.627.627 0 0 0 .234-.258c.055-.109.09-.235.105-.38.016-.144.024-.298.024-.461V8.853zm4.784 1.765a1.621 1.621 0 0 0-.514-.427 1.449 1.449 0 0 0-.714-.18c-.226 0-.432.046-.62.14a.483.483 0 0 0-.28.467.47.47 0 0 0 .31.462c.206.09.508.182.906.276.21.047.423.109.638.187.214.077.41.18.585.31a1.53 1.53 0 0 1 .427.48c.109.19.163.423.163.695 0 .344-.064.634-.192.872-.13.238-.301.43-.515.58a2.169 2.169 0 0 1-.75.32 3.884 3.884 0 0 1-.883.101 3.507 3.507 0 0 1-1.275-.24 2.694 2.694 0 0 1-1.03-.685l.925-.866a1.828 1.828 0 0 0 1.44.703c.1 0 .204-.012.31-.035a1.052 1.052 0 0 0 .29-.112.607.607 0 0 0 .218-.205.58.58 0 0 0 .081-.316.52.52 0 0 0-.32-.503c-.216-.1-.538-.202-.967-.303a4.635 4.635 0 0 1-.614-.182 2.004 2.004 0 0 1-.531-.292 1.35 1.35 0 0 1-.375-.451 1.42 1.42 0 0 1-.14-.667c0-.311.064-.58.192-.806a1.66 1.66 0 0 1 .51-.556c.21-.145.447-.252.713-.322a3.184 3.184 0 0 1 .819-.105c.405 0 .801.07 1.187.21.386.14.692.355.919.643zm-8.29 2.931l.837-.252.164.505-.833.283.517.734-.436.316-.544-.721-.53.701-.423-.322.517-.708-.84-.302.165-.506.843.271v-.872h.564v.872zm-2.887-2.644a2.309 2.309 0 0 0-.602-.819 2.679 2.679 0 0 0-.907-.509 3.517 3.517 0 0 0-1.13-.175c-.148 0-.313.008-.497.024a2.435 2.435 0 0 0-.474.082l.082-1.79h3.382V6.453H7.05l-.14 4.527a3.487 3.487 0 0 1 .426-.175 6.564 6.564 0 0 1 .491-.147 4.487 4.487 0 0 1 .515-.099 3.78 3.78 0 0 1 .497-.035c.227 0 .45.025.668.076.218.05.415.14.591.269.174.129.317.298.426.509.11.21.164.476.164.795 0 .25-.04.474-.123.673a1.413 1.413 0 0 1-.333.497 1.443 1.443 0 0 1-.49.304c-.19.07-.388.106-.598.106-.375 0-.698-.1-.972-.299a1.631 1.631 0 0 1-.584-.79l-.015.006-1.016.952c.205.335.47.616.797.838.475.324 1.06.486 1.754.486a3.417 3.417 0 0 0 1.17-.2 2.705 2.705 0 0 0 1.609-1.491c.16-.362.24-.773.24-1.233 0-.422-.072-.794-.216-1.118z" }) + ] + } + ); +}); + +export { SiP5dotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.cjs new file mode 100644 index 000000000..12c175920 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F28D1A"; +const SiPackagist = React__namespace.forwardRef(function SiPackagist2({ title = "Packagist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.214 23.975c-.098-.053-.329-.062-1.615-.062h-1.26l-.017-.088-.096-.431a3.622 3.622 0 0 1-.07-.354c.005-.007-.012-.056-.038-.107l-.048-.094-.547.085c-.301.046-.598.1-.659.116-.1.03-.11.03-.103.004.038-.14.044-.201.028-.266-.018-.07-.017-.072.238-.645.276-.622.266-.594.237-.634-.018-.025-.042-.02-.307.07-.159.05-.294.093-.301.09a16.82 16.82 0 0 1 .414-.732c.451-.773.566-.976.566-1.003 0-.01-.12-.146-.271-.304-.15-.157-.311-.329-.357-.384a.584.584 0 0 0-.112-.11c-.05-.017-.264-.231-.738-.734a16.196 16.196 0 0 0-.525-.542c-.062-.05-.077-.074-.107-.175a6.511 6.511 0 0 0-.291-.714l-.096-.201v-.178c0-.271-.056-.542-.277-1.331l-.054-.191-.087-.01c-.193-.017-.283-.123-.431-.504a6.231 6.231 0 0 0-.231-.472c-.1-.191-.221-.428-.271-.532l-.086-.185-.08-.01a.72.72 0 0 0-.361.05c-.12.05-.345.063-.618.037l-.399-.038-.199-.02-.107-.191c-.161-.284-.161-.285-.238-.324-.09-.046-.161-.046-.572 0l-.325.035-.245-.035c-.645-.094-.797-.166-.797-.375 0-.042-.045-.261-.102-.489-.13-.528-.218-1.126-.195-1.332.034-.294.273-.996.636-1.87l.142-.341.023-.547c.142-3.274.178-3.76.284-3.951.035-.062.468-.431.644-.552.335-.224 1.503-.8 2.802-1.379l.384-.171.195-.012.193-.01.522.329.521.329.423-.2.658-.308c.235-.108.236-.11.367-.253.184-.201.492-.566.592-.703.118-.161.395-.388.816-.672.147-.098.185-.116.569-.264l.231-.09h.49c.451 0 .502.003.655.037.358.078.652.193.686.267.022.05.07.08.187.12.14.048.311.168 1.224.863.489.373.472.366 1.539.719l.298.1.176.211c.201.241.358.404.404.419.07.022.485-.08 1.009-.249.266-.085.303-.093.351-.077.03.01.175.02.321.02.271.005.514.034 1.117.137.153.027.281.048.283.048.002 0 .244.419.537.933.293.512.61 1.048.705 1.192.167.249.174.264.189.375.026.191.08 1.008.09 1.309l.023.896c.02.843.036 1.04.09 1.154.093.199.276.747.572 1.719l.12.401.008.930-.14.728-.158.813-.016.083-.439.264-.441.265-.321-.016c-.179-.01-.335-.016-.349-.016-.03 0-.066.113-.135.411-.04.176-.042.178-.092.187l-.666.106c-.92.145-1.037.181-1.341.424-.264.211-.264.208-.556 1.681a16.97 16.97 0 0 1-.185.856c-.105.317-.941 1.708-1.246 2.074l-.165.199.064.228c.035.126.073.265.083.309.016.07.314 1.206.421 1.609l.038.14-.201-.084-.328-.136a.549.549 0 0 0-.13-.046c-.003.004.033.15.08.327.08.288.187.763.177.773-.003 0-.15-.008-.331-.022a6.185 6.185 0 0 0-.381-.02l-.055.005-.181.662c-.1.363-.184.664-.187.667-.01.007-.536-.02-1.005-.05-.54-.035-.7-.032-.836.017-.125.045-.241.05-.306.014l.002-.001zm1.957-.348c0-.026.023-.181.05-.345.027-.165.05-.337.05-.383 0-.056.013-.116.04-.175.02-.05.036-.09.033-.093-.002-.002-.368-.03-.813-.062-.637-.046-.86-.067-1.053-.103l-.244-.046-.58.072c-.414.05-.588.078-.607.095-.02.02-.201.042-.712.094-.376.038-.717.075-.756.083l-.072.013.004.083c.003.065.02.115.083.231.06.113.088.191.12.331.02.1.042.184.046.188.003.003.973.014 2.157.023 2.034.016 2.154.018 2.191.045.046.035.064.02.064-.05l-.001-.001zm-4.782-1.179c.873-.123 1.226-.168 1.572-.194.387-.028.897-.087 1.259-.143.057-.01.248-.02.424-.026l.321-.01.377.097.379.098.682.04c.377.023.687.04.69.036a2.93 2.93 0 0 0-.07-.229c-.042-.122-.11-.333-.155-.468l-.077-.244-.231-.072-.231-.073-.156.066-.156.065-1.776.057-1.774.058-.118-.06-.118-.057H9.8l-.269.597c-.148.328-.271.602-.276.609-.008.016-.124.03 1.134-.147zm6.127-1.036c0-.017-.431-1.435-.444-1.457-.007-.012-.05.024-.115.096l-.105.115.154.568.153.568.169.06c.181.064.191.067.191.05zm-6.788-.713l.191-.355-.057-.083c-.032-.046-.063-.08-.068-.073-.007.006-.142.238-.303.515s-.297.511-.302.517c-.004.01.072-.026.171-.075l.176-.09.192-.356zm2.957-.072c.106-.306.193-.562.193-.57a.856.856 0 0 0-.198-.075 3.495 3.495 0 0 1-.201-.066.578.578 0 0 1 .063-.11l.068-.104.405-.02c.706-.033 1.114-.155 1.51-.451.15-.11.214-.128.296-.085.07.04.12.128.106.191-.01.042-.028.056-.241.197-.201.13-.876.428-1.114.492-.136.035-.289.12-.323.181-.04.066-.159.92-.132.947.006.006 1.148-.04 1.33-.056.11-.008.117-.01.161-.067.024-.032.13-.153.238-.267.106-.113.301-.333.431-.488.13-.154.328-.381.437-.502.171-.189.263-.318.619-.857.878-1.324.937-1.441 1.003-1.969.045-.375.067-.447.214-.697.146-.249.294-.965.213-1.033-.072-.06-.153-.032-.427.15-.512.341-1.039.841-1.114 1.053-.034.095-.223.373-.285.418l-.519.369c-.582.414-.52.349-.849.879l-.11.174-.327.173-.328.171-.616.015c-1.23.028-1.288.022-1.943-.207l-.431-.153-.344-.303c-.191-.168-.53-.47-.754-.672l-.407-.368-.142-.321a28.99 28.99 0 0 1-.497-1.15c-.084-.226-.09-.231-.275-.428-.341-.361-.529-.757-.757-1.612-.045-.165-.078-.259-.1-.281-.018-.016-.028-.022-.023-.012.006.01 0 .046-.012.082-.157.441-.209.768-.249 1.559-.02.359-.02.351.096.983.225 1.226.296 1.5.409 1.565.04.024.165.146.291.286.341.376.448.485.604.61.285.231.735.71.901.961.04.06.102.14.135.177.15.163.462.6.899 1.259l.314.475.13-.007c.09-.006.329.012.74.054.336.035.635.064.665.065h.056l.191-.555zm-2.276.455a1.103 1.103 0 0 0-.122-.201c-.075-.107-.14-.195-.15-.191-.01.003-.138.268-.181.374-.01.031.341.044.453.018zm2.766-2.758c.046-.033.127-.055.376-.105.311-.06.375-.083.628-.211a.309.309 0 0 0 .092-.11.74.74 0 0 1 .11-.138c.04-.036.055-.062.055-.098 0-.078.227-.275 1.091-.946a.9.9 0 0 0 .245-.268c.074-.11.158-.211.263-.309.085-.08.291-.284.459-.451.168-.171.391-.376.497-.462a3.44 3.44 0 0 0 .241-.204c.03-.032.157-.106.335-.196.159-.08.295-.156.301-.168.018-.03.09-.06.508-.217.889-.331 1.479-.492 1.79-.492.08 0 .096-.052.067-.219-.068-.395-.296-.552-.808-.552h-.181l-.063-.067c-.06-.065-.067-.087-.124-.325-.115-.485-.185-.532-.742-.516-.435.013-.552.06-1.754.718-.602.331-1.035.702-1.543 1.33a.964.964 0 0 1-.11.123c-.311-.002-.303-.472.017-.949l.106-.157-.084-.035c-.236-.107-.532-.123-.74-.04-.291.116-1.023.525-1.117.622-.098.103-.187.106-.187.007 0-.122.114-.285.289-.411.04-.032.11-.088.153-.127a1.63 1.63 0 0 1 .435-.261c.147-.06.142-.052.09-.15-.14-.255-.525-.546-.915-.689-.05-.02-.169-.07-.263-.112-.221-.102-.331-.124-.672-.136-.244-.01-.283-.014-.267-.033.074-.09.311-.133.79-.144l.384-.01.248.11c.697.301.963.462 1.074.645.076.128.084.133.194.112.266-.05.518.032.765.249.135.12.184.13.274.063a.773.773 0 0 0 .273-.502c.035-.271-.06-1.136-.153-1.385-.07-.188-.057-.196.087-.046.171.178.171.178.326-.11.04-.076.103-.176.138-.221.291-.367.281-1.047-.017-1.347-.15-.15-.404-.291-.815-.446-.403-.155-.47-.211-.77-.628-.361-.506-.425-.567-.724-.708-.617-.293-2.101-.562-2.57-.467-.441.09-1.04.447-1.32.789-.175.213-.63.377-1.274.462-.84.108-1.254.828-1.041 1.806.04.191.038.189.165.034.405-.505 1.209-.976 1.93-1.13.575-.12 1.475-.126 2.01-.01l.096.022h-.144c-.75.01-1.904.257-2.722.584l-.176.07-.016.087c-.015.083-.022.093-.281.351-.536.539-.69.796-.775 1.286-.04.239.036.589.15.678.027.022.047.05.042.06a2.825 2.825 0 0 0-.026.225c-.076.845.323 1.866.96 2.453l.144.133.108-.09c.317-.259.859-.614.888-.582.043.05.034.09-.033.155-.085.082-.196.226-.496.642l-.259.361.007.104c.01.13.076.337.147.451.03.046.09.15.136.229.167.284.321.52.424.642.096.117.184.241.284.401.028.046.05.064.07.06.04-.01.09.026.279.204.186.171.083.122.845.408.823.309 1.131.369 1.465.286.09-.022.097-.022.168.015.09.047.09.047.163-.002v.005zm-6.348-3.82c.003-.003.02-.103.037-.225.017-.12.053-.286.08-.367l.193-.644c.177-.602.159-.55.178-.52.025.042.015-.01-.016-.074a1.69 1.69 0 0 1-.066-.171l-.034-.108.034-.588.034-.589-.055-.397a6.234 6.234 0 0 0-.064-.406c-.032-.032-.464.145-.599.245-.175.13-.401.679-.492 1.194-.12.694-.008 1.647.226 1.916.07.08.226.378.357.68l.034.077.075-.01a.347.347 0 0 0 .078-.013zm14.775-1.31c.126-.088.238-.177.246-.196.015-.037.213-1.099.281-1.507l.042-.257-.042-.447-.042-.446-.125-.48c-.124-.475-.128-.484-.264-.755-.216-.431-.194-.236-.379-3.358l-.035-.578-.053-.055c-.07-.075-.337-.458-.963-1.388a14.255 14.255 0 0 0-.546-.781 16.04 16.04 0 0 0-.821-.146c-.395-.055-.736-.025-1.055.094-.128.048-.14.05-.201.03-.138-.047-.293-.003-.569.164l-.145.087-.166-.221c-.191-.251-.194-.255-.57-.502-.64-.416-.716-.449-1.632-.692-.353-.094-.311-.062-.993-.742l-.535-.532-.585.008c-.989.015-1.482.06-1.6.142-.712.508-1.094.888-1.538 1.531l-.103.15-.386.184c-.422.203-1.034.392-1.201.369-.092-.012-.421-.18-.658-.341-.438-.291-.739-.326-1.088-.124-.284.163-.483.269-1.286.675-.861.437-.965.496-1.246.705l-.164.123-.143.288c-.311.626-.305.602-.321 1.415-.03 1.52-.035 2.008-.016 2.122.03.179.036.374.016.505-.028.171-.387 1.387-.585 1.977-.066.199-.135.52-.159.736-.01.07 0 .175.036.391.026.164.07.451.097.64.066.464.12.562.358.64.209.07.309.063.732-.045.793-.203.813-.197 1.134.378.078.137.112.184.143.193.105.03.725.01.866-.027l.194-.05.056-.015-.02-.096a2.414 2.414 0 0 1-.023-.624c.024-.268.064-.506.153-.889.004-.017-.006-.004-.022.03l-.03.06-.035-.157a1.876 1.876 0 0 0-.291-.672 6.435 6.435 0 0 1-.421-.87l-.093-.231.01-.161c.05-.718.224-1.186.597-1.595.227-.248.293-.351.325-.522.025-.13.106-.807.171-1.395l.057-.547.241-.715c.13-.394.231-.722.225-.728a9.003 9.003 0 0 0-.693-.321c-.124-.035-.412-.023-.632.027-.705.161-1.224.532-1.25.893-.007.08-.362.827-.395.828-.02 0-.074-.098-.093-.169-.02-.074-.012-.115.073-.351.032-.088.097-.307.145-.487.12-.443.14-.477.405-.599l.467-.221c.675-.325 1.657-.578 1.899-.49.143.05.359.226.552.446l.092.104-.09.246c-.458 1.266-.575 1.617-.606 1.823-.071.458-.066 1.465.008 1.695.058.188.054.195-.223.377-.477.316-.953.919-.973 1.233-.013.211.09.634.221.888.052.105.589.913.606.913.006 0 .03-.04.057-.09a1.9 1.9 0 0 1 .704-.773c.316-.204.317-.204.341-.313.161-.725.425-1.144.88-1.385l.197-.105-.095-.035c-.145-.053-.271-.143-.428-.308-.697-.733-.966-1.566-.688-2.127.02-.04.052-.122.072-.184.245-.755.931-1.164 1.842-1.101.896.063 1.294.296 1.618.94.311.624.294 1.191-.055 1.751l-.066.106.06-.058c.068-.063.766-.374.946-.421.268-.07.659-.03 1.894.193.499.09.584.125.823.341.05.048.09.076.09.064s-.01-.104-.025-.206c-.083-.617.034-1.401.269-1.786.284-.466 1.375-.883 1.974-.754.301.065.769.355 1.021.635.032.036.06.056.06.045 0-.01-.02-.325-.04-.699a11.12 11.12 0 0 1-.03-.689c.008-.006.144-.084.306-.174l.293-.161.052.04c.044.032.169.063.78.191l.763.164c.027.006.085.09.216.307.097.164.271.448.388.632.425.68.502.856.411.941-.093.087-.108.086-.169-.007-.03-.045-.201-.314-.379-.595a16.068 16.068 0 0 0-.351-.539c-.02-.02-.998-.346-1.487-.497-.239-.073-.492 1.151-.434 2.099.02.319.02.321.291.57.169.156.858 1.126.993 1.397l.067.136-.006.826-.005.825-.105.177c-.441.742-.694 1.021-.985 1.096-.161.04-.339.175-.324.241.005.022.013.154.02.291.006.167.016.253.027.253.01 0 .073-.01.14-.023.455-.087.958-.057 1.261.073.11.047.116.064.128.344.017.375.042.407.353.457.348.055.468.114.695.344l.128.13.462.002.462.002.245-.168zM9.954 3.808a13.19 13.19 0 0 0-.833-.494c-.338-.171-.351-.201-.117-.309.341-.157.474-.11.908.315.168.165.369.349.448.411.156.118.328.275.328.297 0 .027-.115.14-.14.14a8.7 8.7 0 0 1-.594-.36zm3.987.19a.518.518 0 0 1-.235-.191l-.042-.07.03-.068c.04-.095.076-.13.231-.231.074-.05.159-.11.188-.134.159-.14 1.179-.558 1.358-.558.1 0 .13.02.176.125a.63.63 0 0 0 .065.12c.05.056-.06.115-.341.179-.15.034-.502.176-.818.328l-.258.125-.148.201c-.08.11-.15.201-.15.201L13.94 4l.001-.002zm2.25 8.609c.117-.103.612-.334.898-.418.104-.03.171-.307.171-.72v-.234l-.092-.191c-.097-.201-.203-.378-.221-.371-.006.002-.203.251-.437.556l-.427.552.01.249.01.444c0 .225-.006.218.09.134l-.002-.001zm1.639-1.799l.344-.132.112-.169c.391-.592.512-.901.529-1.379l.01-.308-.228-.361c-.386-.607-.636-1.018-.722-1.187a.36.36 0 0 0-.062-.1c-.062-.04-.245.12-.458.401-.15.201-.226.254-.674.478-.592.295-.876.341-1.292.213a7.003 7.003 0 0 0-.552-.156c-.042 0 .133.206.294.347.126.11.221.161.346.181.191.03.547.231 1.094.612.303.214.261.133.291.55l.027.351.08.078c.1.098.214.251.381.51.07.112.13.205.132.205l.348-.134zm-1.719-3.119c.446-.164.704-.665.527-1.023-.194-.391-.634-.702-.998-.702-.425 0-.979.482-.979.853 0 .008.058-.038.127-.104.329-.311.692-.346 1.05-.105.385.258.469.77.173 1.064-.078.08-.067.08.1.02v-.003zm-7.704-.16a.963.963 0 0 1-.026-.396c.145-.778 1.09-1.005 1.51-.364l.064.1-.009-.129c-.069-.971-1.094-1.234-1.726-.443-.356.447-.299 1.13.105 1.274.103.036.107.034.08-.042h.002zm8.86-.527c.261-.439.226-1.053-.088-1.53-.421-.642-1.084-.841-1.806-.542-.559.231-.776.517-.825 1.081-.022.251-.012.281.058.176.238-.354.644-.547 1.094-.522.712.038 1.24.539 1.385 1.316l.034.183.008.04.04-.05a1.56 1.56 0 0 0 .1-.154v.002zm-1.431.09a.125.125 0 0 0 .04-.096.127.127 0 0 0-.04-.095.128.128 0 0 0-.096-.04c-.04 0-.07.013-.097.04a.13.13 0 0 0-.038.096c0 .123.146.185.233.098l-.002-.003zm-8.218-.209c.138-.773.732-1.289 1.48-1.289.485 0 .838.274 1.043.809.054.14.06.143.087.035.07-.274-.01-.848-.163-1.149-.26-.518-1.032-.779-1.751-.591-.415.106-.9.64-.997 1.097-.1.468-.038.849.191 1.167.077.108.077.108.11-.08v.001zm1.928 0a.128.128 0 0 0 .04-.096c0-.04-.013-.07-.04-.097-.027-.028-.056-.041-.096-.041s-.07.013-.096.04a.128.128 0 0 0-.04.097.136.136 0 0 0 .232.097z" }) + ] + } + ); +}); + +exports.default = SiPackagist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.d.ts new file mode 100644 index 000000000..698a82fb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F28D1A"; +declare const SiPackagist: IconType; +export { SiPackagist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.mjs new file mode 100644 index 000000000..2ce03323a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPackagist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F28D1A"; +const SiPackagist = React.forwardRef(function SiPackagist2({ title = "Packagist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.214 23.975c-.098-.053-.329-.062-1.615-.062h-1.26l-.017-.088-.096-.431a3.622 3.622 0 0 1-.07-.354c.005-.007-.012-.056-.038-.107l-.048-.094-.547.085c-.301.046-.598.1-.659.116-.1.03-.11.03-.103.004.038-.14.044-.201.028-.266-.018-.07-.017-.072.238-.645.276-.622.266-.594.237-.634-.018-.025-.042-.02-.307.07-.159.05-.294.093-.301.09a16.82 16.82 0 0 1 .414-.732c.451-.773.566-.976.566-1.003 0-.01-.12-.146-.271-.304-.15-.157-.311-.329-.357-.384a.584.584 0 0 0-.112-.11c-.05-.017-.264-.231-.738-.734a16.196 16.196 0 0 0-.525-.542c-.062-.05-.077-.074-.107-.175a6.511 6.511 0 0 0-.291-.714l-.096-.201v-.178c0-.271-.056-.542-.277-1.331l-.054-.191-.087-.01c-.193-.017-.283-.123-.431-.504a6.231 6.231 0 0 0-.231-.472c-.1-.191-.221-.428-.271-.532l-.086-.185-.08-.01a.72.72 0 0 0-.361.05c-.12.05-.345.063-.618.037l-.399-.038-.199-.02-.107-.191c-.161-.284-.161-.285-.238-.324-.09-.046-.161-.046-.572 0l-.325.035-.245-.035c-.645-.094-.797-.166-.797-.375 0-.042-.045-.261-.102-.489-.13-.528-.218-1.126-.195-1.332.034-.294.273-.996.636-1.87l.142-.341.023-.547c.142-3.274.178-3.76.284-3.951.035-.062.468-.431.644-.552.335-.224 1.503-.8 2.802-1.379l.384-.171.195-.012.193-.01.522.329.521.329.423-.2.658-.308c.235-.108.236-.11.367-.253.184-.201.492-.566.592-.703.118-.161.395-.388.816-.672.147-.098.185-.116.569-.264l.231-.09h.49c.451 0 .502.003.655.037.358.078.652.193.686.267.022.05.07.08.187.12.14.048.311.168 1.224.863.489.373.472.366 1.539.719l.298.1.176.211c.201.241.358.404.404.419.07.022.485-.08 1.009-.249.266-.085.303-.093.351-.077.03.01.175.02.321.02.271.005.514.034 1.117.137.153.027.281.048.283.048.002 0 .244.419.537.933.293.512.61 1.048.705 1.192.167.249.174.264.189.375.026.191.08 1.008.09 1.309l.023.896c.02.843.036 1.04.09 1.154.093.199.276.747.572 1.719l.12.401.008.930-.14.728-.158.813-.016.083-.439.264-.441.265-.321-.016c-.179-.01-.335-.016-.349-.016-.03 0-.066.113-.135.411-.04.176-.042.178-.092.187l-.666.106c-.92.145-1.037.181-1.341.424-.264.211-.264.208-.556 1.681a16.97 16.97 0 0 1-.185.856c-.105.317-.941 1.708-1.246 2.074l-.165.199.064.228c.035.126.073.265.083.309.016.07.314 1.206.421 1.609l.038.14-.201-.084-.328-.136a.549.549 0 0 0-.13-.046c-.003.004.033.15.08.327.08.288.187.763.177.773-.003 0-.15-.008-.331-.022a6.185 6.185 0 0 0-.381-.02l-.055.005-.181.662c-.1.363-.184.664-.187.667-.01.007-.536-.02-1.005-.05-.54-.035-.7-.032-.836.017-.125.045-.241.05-.306.014l.002-.001zm1.957-.348c0-.026.023-.181.05-.345.027-.165.05-.337.05-.383 0-.056.013-.116.04-.175.02-.05.036-.09.033-.093-.002-.002-.368-.03-.813-.062-.637-.046-.86-.067-1.053-.103l-.244-.046-.58.072c-.414.05-.588.078-.607.095-.02.02-.201.042-.712.094-.376.038-.717.075-.756.083l-.072.013.004.083c.003.065.02.115.083.231.06.113.088.191.12.331.02.1.042.184.046.188.003.003.973.014 2.157.023 2.034.016 2.154.018 2.191.045.046.035.064.02.064-.05l-.001-.001zm-4.782-1.179c.873-.123 1.226-.168 1.572-.194.387-.028.897-.087 1.259-.143.057-.01.248-.02.424-.026l.321-.01.377.097.379.098.682.04c.377.023.687.04.69.036a2.93 2.93 0 0 0-.07-.229c-.042-.122-.11-.333-.155-.468l-.077-.244-.231-.072-.231-.073-.156.066-.156.065-1.776.057-1.774.058-.118-.06-.118-.057H9.8l-.269.597c-.148.328-.271.602-.276.609-.008.016-.124.03 1.134-.147zm6.127-1.036c0-.017-.431-1.435-.444-1.457-.007-.012-.05.024-.115.096l-.105.115.154.568.153.568.169.06c.181.064.191.067.191.05zm-6.788-.713l.191-.355-.057-.083c-.032-.046-.063-.08-.068-.073-.007.006-.142.238-.303.515s-.297.511-.302.517c-.004.01.072-.026.171-.075l.176-.09.192-.356zm2.957-.072c.106-.306.193-.562.193-.57a.856.856 0 0 0-.198-.075 3.495 3.495 0 0 1-.201-.066.578.578 0 0 1 .063-.11l.068-.104.405-.02c.706-.033 1.114-.155 1.51-.451.15-.11.214-.128.296-.085.07.04.12.128.106.191-.01.042-.028.056-.241.197-.201.13-.876.428-1.114.492-.136.035-.289.12-.323.181-.04.066-.159.92-.132.947.006.006 1.148-.04 1.33-.056.11-.008.117-.01.161-.067.024-.032.13-.153.238-.267.106-.113.301-.333.431-.488.13-.154.328-.381.437-.502.171-.189.263-.318.619-.857.878-1.324.937-1.441 1.003-1.969.045-.375.067-.447.214-.697.146-.249.294-.965.213-1.033-.072-.06-.153-.032-.427.15-.512.341-1.039.841-1.114 1.053-.034.095-.223.373-.285.418l-.519.369c-.582.414-.52.349-.849.879l-.11.174-.327.173-.328.171-.616.015c-1.23.028-1.288.022-1.943-.207l-.431-.153-.344-.303c-.191-.168-.53-.47-.754-.672l-.407-.368-.142-.321a28.99 28.99 0 0 1-.497-1.15c-.084-.226-.09-.231-.275-.428-.341-.361-.529-.757-.757-1.612-.045-.165-.078-.259-.1-.281-.018-.016-.028-.022-.023-.012.006.01 0 .046-.012.082-.157.441-.209.768-.249 1.559-.02.359-.02.351.096.983.225 1.226.296 1.5.409 1.565.04.024.165.146.291.286.341.376.448.485.604.61.285.231.735.71.901.961.04.06.102.14.135.177.15.163.462.6.899 1.259l.314.475.13-.007c.09-.006.329.012.74.054.336.035.635.064.665.065h.056l.191-.555zm-2.276.455a1.103 1.103 0 0 0-.122-.201c-.075-.107-.14-.195-.15-.191-.01.003-.138.268-.181.374-.01.031.341.044.453.018zm2.766-2.758c.046-.033.127-.055.376-.105.311-.06.375-.083.628-.211a.309.309 0 0 0 .092-.11.74.74 0 0 1 .11-.138c.04-.036.055-.062.055-.098 0-.078.227-.275 1.091-.946a.9.9 0 0 0 .245-.268c.074-.11.158-.211.263-.309.085-.08.291-.284.459-.451.168-.171.391-.376.497-.462a3.44 3.44 0 0 0 .241-.204c.03-.032.157-.106.335-.196.159-.08.295-.156.301-.168.018-.03.09-.06.508-.217.889-.331 1.479-.492 1.79-.492.08 0 .096-.052.067-.219-.068-.395-.296-.552-.808-.552h-.181l-.063-.067c-.06-.065-.067-.087-.124-.325-.115-.485-.185-.532-.742-.516-.435.013-.552.06-1.754.718-.602.331-1.035.702-1.543 1.33a.964.964 0 0 1-.11.123c-.311-.002-.303-.472.017-.949l.106-.157-.084-.035c-.236-.107-.532-.123-.74-.04-.291.116-1.023.525-1.117.622-.098.103-.187.106-.187.007 0-.122.114-.285.289-.411.04-.032.11-.088.153-.127a1.63 1.63 0 0 1 .435-.261c.147-.06.142-.052.09-.15-.14-.255-.525-.546-.915-.689-.05-.02-.169-.07-.263-.112-.221-.102-.331-.124-.672-.136-.244-.01-.283-.014-.267-.033.074-.09.311-.133.79-.144l.384-.01.248.11c.697.301.963.462 1.074.645.076.128.084.133.194.112.266-.05.518.032.765.249.135.12.184.13.274.063a.773.773 0 0 0 .273-.502c.035-.271-.06-1.136-.153-1.385-.07-.188-.057-.196.087-.046.171.178.171.178.326-.11.04-.076.103-.176.138-.221.291-.367.281-1.047-.017-1.347-.15-.15-.404-.291-.815-.446-.403-.155-.47-.211-.77-.628-.361-.506-.425-.567-.724-.708-.617-.293-2.101-.562-2.57-.467-.441.09-1.04.447-1.32.789-.175.213-.63.377-1.274.462-.84.108-1.254.828-1.041 1.806.04.191.038.189.165.034.405-.505 1.209-.976 1.93-1.13.575-.12 1.475-.126 2.01-.01l.096.022h-.144c-.75.01-1.904.257-2.722.584l-.176.07-.016.087c-.015.083-.022.093-.281.351-.536.539-.69.796-.775 1.286-.04.239.036.589.15.678.027.022.047.05.042.06a2.825 2.825 0 0 0-.026.225c-.076.845.323 1.866.96 2.453l.144.133.108-.09c.317-.259.859-.614.888-.582.043.05.034.09-.033.155-.085.082-.196.226-.496.642l-.259.361.007.104c.01.13.076.337.147.451.03.046.09.15.136.229.167.284.321.52.424.642.096.117.184.241.284.401.028.046.05.064.07.06.04-.01.09.026.279.204.186.171.083.122.845.408.823.309 1.131.369 1.465.286.09-.022.097-.022.168.015.09.047.09.047.163-.002v.005zm-6.348-3.82c.003-.003.02-.103.037-.225.017-.12.053-.286.08-.367l.193-.644c.177-.602.159-.55.178-.52.025.042.015-.01-.016-.074a1.69 1.69 0 0 1-.066-.171l-.034-.108.034-.588.034-.589-.055-.397a6.234 6.234 0 0 0-.064-.406c-.032-.032-.464.145-.599.245-.175.13-.401.679-.492 1.194-.12.694-.008 1.647.226 1.916.07.08.226.378.357.68l.034.077.075-.01a.347.347 0 0 0 .078-.013zm14.775-1.31c.126-.088.238-.177.246-.196.015-.037.213-1.099.281-1.507l.042-.257-.042-.447-.042-.446-.125-.48c-.124-.475-.128-.484-.264-.755-.216-.431-.194-.236-.379-3.358l-.035-.578-.053-.055c-.07-.075-.337-.458-.963-1.388a14.255 14.255 0 0 0-.546-.781 16.04 16.04 0 0 0-.821-.146c-.395-.055-.736-.025-1.055.094-.128.048-.14.05-.201.03-.138-.047-.293-.003-.569.164l-.145.087-.166-.221c-.191-.251-.194-.255-.57-.502-.64-.416-.716-.449-1.632-.692-.353-.094-.311-.062-.993-.742l-.535-.532-.585.008c-.989.015-1.482.06-1.6.142-.712.508-1.094.888-1.538 1.531l-.103.15-.386.184c-.422.203-1.034.392-1.201.369-.092-.012-.421-.18-.658-.341-.438-.291-.739-.326-1.088-.124-.284.163-.483.269-1.286.675-.861.437-.965.496-1.246.705l-.164.123-.143.288c-.311.626-.305.602-.321 1.415-.03 1.52-.035 2.008-.016 2.122.03.179.036.374.016.505-.028.171-.387 1.387-.585 1.977-.066.199-.135.52-.159.736-.01.07 0 .175.036.391.026.164.07.451.097.64.066.464.12.562.358.64.209.07.309.063.732-.045.793-.203.813-.197 1.134.378.078.137.112.184.143.193.105.03.725.01.866-.027l.194-.05.056-.015-.02-.096a2.414 2.414 0 0 1-.023-.624c.024-.268.064-.506.153-.889.004-.017-.006-.004-.022.03l-.03.06-.035-.157a1.876 1.876 0 0 0-.291-.672 6.435 6.435 0 0 1-.421-.87l-.093-.231.01-.161c.05-.718.224-1.186.597-1.595.227-.248.293-.351.325-.522.025-.13.106-.807.171-1.395l.057-.547.241-.715c.13-.394.231-.722.225-.728a9.003 9.003 0 0 0-.693-.321c-.124-.035-.412-.023-.632.027-.705.161-1.224.532-1.25.893-.007.08-.362.827-.395.828-.02 0-.074-.098-.093-.169-.02-.074-.012-.115.073-.351.032-.088.097-.307.145-.487.12-.443.14-.477.405-.599l.467-.221c.675-.325 1.657-.578 1.899-.49.143.05.359.226.552.446l.092.104-.09.246c-.458 1.266-.575 1.617-.606 1.823-.071.458-.066 1.465.008 1.695.058.188.054.195-.223.377-.477.316-.953.919-.973 1.233-.013.211.09.634.221.888.052.105.589.913.606.913.006 0 .03-.04.057-.09a1.9 1.9 0 0 1 .704-.773c.316-.204.317-.204.341-.313.161-.725.425-1.144.88-1.385l.197-.105-.095-.035c-.145-.053-.271-.143-.428-.308-.697-.733-.966-1.566-.688-2.127.02-.04.052-.122.072-.184.245-.755.931-1.164 1.842-1.101.896.063 1.294.296 1.618.94.311.624.294 1.191-.055 1.751l-.066.106.06-.058c.068-.063.766-.374.946-.421.268-.07.659-.03 1.894.193.499.09.584.125.823.341.05.048.09.076.09.064s-.01-.104-.025-.206c-.083-.617.034-1.401.269-1.786.284-.466 1.375-.883 1.974-.754.301.065.769.355 1.021.635.032.036.06.056.06.045 0-.01-.02-.325-.04-.699a11.12 11.12 0 0 1-.03-.689c.008-.006.144-.084.306-.174l.293-.161.052.04c.044.032.169.063.78.191l.763.164c.027.006.085.09.216.307.097.164.271.448.388.632.425.68.502.856.411.941-.093.087-.108.086-.169-.007-.03-.045-.201-.314-.379-.595a16.068 16.068 0 0 0-.351-.539c-.02-.02-.998-.346-1.487-.497-.239-.073-.492 1.151-.434 2.099.02.319.02.321.291.57.169.156.858 1.126.993 1.397l.067.136-.006.826-.005.825-.105.177c-.441.742-.694 1.021-.985 1.096-.161.04-.339.175-.324.241.005.022.013.154.02.291.006.167.016.253.027.253.01 0 .073-.01.14-.023.455-.087.958-.057 1.261.073.11.047.116.064.128.344.017.375.042.407.353.457.348.055.468.114.695.344l.128.13.462.002.462.002.245-.168zM9.954 3.808a13.19 13.19 0 0 0-.833-.494c-.338-.171-.351-.201-.117-.309.341-.157.474-.11.908.315.168.165.369.349.448.411.156.118.328.275.328.297 0 .027-.115.14-.14.14a8.7 8.7 0 0 1-.594-.36zm3.987.19a.518.518 0 0 1-.235-.191l-.042-.07.03-.068c.04-.095.076-.13.231-.231.074-.05.159-.11.188-.134.159-.14 1.179-.558 1.358-.558.1 0 .13.02.176.125a.63.63 0 0 0 .065.12c.05.056-.06.115-.341.179-.15.034-.502.176-.818.328l-.258.125-.148.201c-.08.11-.15.201-.15.201L13.94 4l.001-.002zm2.25 8.609c.117-.103.612-.334.898-.418.104-.03.171-.307.171-.72v-.234l-.092-.191c-.097-.201-.203-.378-.221-.371-.006.002-.203.251-.437.556l-.427.552.01.249.01.444c0 .225-.006.218.09.134l-.002-.001zm1.639-1.799l.344-.132.112-.169c.391-.592.512-.901.529-1.379l.01-.308-.228-.361c-.386-.607-.636-1.018-.722-1.187a.36.36 0 0 0-.062-.1c-.062-.04-.245.12-.458.401-.15.201-.226.254-.674.478-.592.295-.876.341-1.292.213a7.003 7.003 0 0 0-.552-.156c-.042 0 .133.206.294.347.126.11.221.161.346.181.191.03.547.231 1.094.612.303.214.261.133.291.55l.027.351.08.078c.1.098.214.251.381.51.07.112.13.205.132.205l.348-.134zm-1.719-3.119c.446-.164.704-.665.527-1.023-.194-.391-.634-.702-.998-.702-.425 0-.979.482-.979.853 0 .008.058-.038.127-.104.329-.311.692-.346 1.05-.105.385.258.469.77.173 1.064-.078.08-.067.08.1.02v-.003zm-7.704-.16a.963.963 0 0 1-.026-.396c.145-.778 1.09-1.005 1.51-.364l.064.1-.009-.129c-.069-.971-1.094-1.234-1.726-.443-.356.447-.299 1.13.105 1.274.103.036.107.034.08-.042h.002zm8.86-.527c.261-.439.226-1.053-.088-1.53-.421-.642-1.084-.841-1.806-.542-.559.231-.776.517-.825 1.081-.022.251-.012.281.058.176.238-.354.644-.547 1.094-.522.712.038 1.24.539 1.385 1.316l.034.183.008.04.04-.05a1.56 1.56 0 0 0 .1-.154v.002zm-1.431.09a.125.125 0 0 0 .04-.096.127.127 0 0 0-.04-.095.128.128 0 0 0-.096-.04c-.04 0-.07.013-.097.04a.13.13 0 0 0-.038.096c0 .123.146.185.233.098l-.002-.003zm-8.218-.209c.138-.773.732-1.289 1.48-1.289.485 0 .838.274 1.043.809.054.14.06.143.087.035.07-.274-.01-.848-.163-1.149-.26-.518-1.032-.779-1.751-.591-.415.106-.9.64-.997 1.097-.1.468-.038.849.191 1.167.077.108.077.108.11-.08v.001zm1.928 0a.128.128 0 0 0 .04-.096c0-.04-.013-.07-.04-.097-.027-.028-.056-.041-.096-.041s-.07.013-.096.04a.128.128 0 0 0-.04.097.136.136 0 0 0 .232.097z" }) + ] + } + ); +}); + +export { SiPackagist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.cjs new file mode 100644 index 000000000..354b26c5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02A8EF"; +const SiPacker = React__namespace.forwardRef(function SiPacker2({ title = "Packer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.844 0v3.38l5.75 3.32v10.148l2.705 1.552c1.676.967 3.045.388 3.045-1.285V9.668c-.014-1.687-1.382-3.832-3.059-4.799L7.844 0zM4.656 2.932v16.574L12.436 24V7.426l-7.78-4.494Z" }) + ] + } + ); +}); + +exports.default = SiPacker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.d.ts new file mode 100644 index 000000000..6faddc73b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02A8EF"; +declare const SiPacker: IconType; +export { SiPacker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.mjs new file mode 100644 index 000000000..c45962697 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPacker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02A8EF"; +const SiPacker = React.forwardRef(function SiPacker2({ title = "Packer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.844 0v3.38l5.75 3.32v10.148l2.705 1.552c1.676.967 3.045.388 3.045-1.285V9.668c-.014-1.687-1.382-3.832-3.059-4.799L7.844 0zM4.656 2.932v16.574L12.436 24V7.426l-7.78-4.494Z" }) + ] + } + ); +}); + +export { SiPacker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.cjs new file mode 100644 index 000000000..5706a81ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F37143"; +const SiPackt = React__namespace.forwardRef(function SiPackt2({ title = "Packt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.965 4.898c-.707 0-1.344.152-1.908.452a3.901 3.901 0 0 0-.891.642v-.937H7.488v14.047h2.657V14.1c.26.249.559.463.898.638.572.294 1.213.44 1.92.44.914 0 1.73-.224 2.453-.674 1.237-.77 2.328-2.27 2.328-4.453 0-2.206-1.09-3.704-2.328-4.477-.721-.45-1.537-.676-2.451-.676zM3.8 5.055 0 9.79l3.822 5.133H7.09L3.012 9.79l3.875-4.736Zm13.312 0 3.875 4.736-4.078 5.133h3.268L24 9.79l-3.8-4.736Zm-4.619 2.318c1.007 0 1.788.493 2.2 1.275.452.86.395 2.034 0 2.78-.221.419-.84 1.277-2.2 1.277-.49 0-.925-.11-1.299-.336a2.338 2.338 0 0 1-.879-.941c-.211-.403-.316-.869-.316-1.399s.105-.978.316-1.38c.393-.748 1.156-1.276 2.178-1.276z" }) + ] + } + ); +}); + +exports.default = SiPackt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.d.ts new file mode 100644 index 000000000..d0a994d3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F37143"; +declare const SiPackt: IconType; +export { SiPackt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.mjs new file mode 100644 index 000000000..6e60ae4f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPackt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F37143"; +const SiPackt = React.forwardRef(function SiPackt2({ title = "Packt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.965 4.898c-.707 0-1.344.152-1.908.452a3.901 3.901 0 0 0-.891.642v-.937H7.488v14.047h2.657V14.1c.26.249.559.463.898.638.572.294 1.213.44 1.92.44.914 0 1.73-.224 2.453-.674 1.237-.77 2.328-2.27 2.328-4.453 0-2.206-1.09-3.704-2.328-4.477-.721-.45-1.537-.676-2.451-.676zM3.8 5.055 0 9.79l3.822 5.133H7.09L3.012 9.79l3.875-4.736Zm13.312 0 3.875 4.736-4.078 5.133h3.268L24 9.79l-3.8-4.736Zm-4.619 2.318c1.007 0 1.788.493 2.2 1.275.452.86.395 2.034 0 2.78-.221.419-.84 1.277-2.2 1.277-.49 0-.925-.11-1.299-.336a2.338 2.338 0 0 1-.879-.941c-.211-.403-.316-.869-.316-1.399s.105-.978.316-1.38c.393-.748 1.156-1.276 2.178-1.276z" }) + ] + } + ); +}); + +export { SiPackt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.cjs new file mode 100644 index 000000000..0645f3ac8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDDD35"; +const SiPaddle = React__namespace.forwardRef(function SiPaddle2({ title = "Paddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.363 7.904v.849a3.95 3.95 0 0 1 3.65 2.425c.198.476.3.987.299 1.502h.791c0-1.04.416-2.037 1.157-2.772a3.962 3.962 0 0 1 2.792-1.149V7.91a3.959 3.959 0 0 1-3.65-2.425 3.893 3.893 0 0 1-.299-1.502h-.791c0 1.04-.416 2.037-1.157 2.772a3.96 3.96 0 0 1-2.792 1.149M13.105 2.51H6.312V0h6.793c4.772 0 8.532 3.735 8.532 8.314 0 4.58-3.76 8.314-8.532 8.314H9.156V24H6.312v-9.882h6.793c3.319 0 5.688-2.352 5.688-5.804 0-3.451-2.37-5.804-5.688-5.804" }) + ] + } + ); +}); + +exports.default = SiPaddle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.d.ts new file mode 100644 index 000000000..1cae1bb43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDDD35"; +declare const SiPaddle: IconType; +export { SiPaddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.mjs new file mode 100644 index 000000000..0333a210b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDDD35"; +const SiPaddle = React.forwardRef(function SiPaddle2({ title = "Paddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.363 7.904v.849a3.95 3.95 0 0 1 3.65 2.425c.198.476.3.987.299 1.502h.791c0-1.04.416-2.037 1.157-2.772a3.962 3.962 0 0 1 2.792-1.149V7.91a3.959 3.959 0 0 1-3.65-2.425 3.893 3.893 0 0 1-.299-1.502h-.791c0 1.04-.416 2.037-1.157 2.772a3.96 3.96 0 0 1-2.792 1.149M13.105 2.51H6.312V0h6.793c4.772 0 8.532 3.735 8.532 8.314 0 4.58-3.76 8.314-8.532 8.314H9.156V24H6.312v-9.882h6.793c3.319 0 5.688-2.352 5.688-5.804 0-3.451-2.37-5.804-5.688-5.804" }) + ] + } + ); +}); + +export { SiPaddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.cjs new file mode 100644 index 000000000..7070cdf2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0062B0"; +const SiPaddlepaddle = React__namespace.forwardRef(function SiPaddlepaddle2({ title = "PaddlePaddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.17185 4.8315c-.6339 0-1.15033.51448-1.15033 1.14833s.51643 1.15033 1.15033 1.15033 1.14833-.51643 1.14833-1.15033-.51448-1.14833-1.14833-1.14833zm9.9916 0c-.6339 0-1.15033.51448-1.15033 1.14833s.51643 1.15033 1.15033 1.15033c.6339 0 1.14833-.51643 1.14833-1.15033S22.7973 4.8315 22.16345 4.8315zM6.67238 8.00711c-.0331 0-.06258.01885-.07617.04883l-1.95298 4.29274H.75286c-.05136 0-.09805.02932-.11913.07616l-.62691 1.39832c-.02155.04809.01363.10351.0664.10351h3.85327l-2.32796 5.1208c-.02545.0559.01465.12108.07617.12108h1.6561c.0331 0 .06438-.02064.07812-.05078l4.9977-10.99134c.02529-.0559-.01481-.11913-.07617-.11913zm3.4783 0c-.02484 0-.0483.01431-.0586.0371l-.58004 1.28513c-.01905.04216.01237.08984.05859.08984h1.02334c.21703-.00312.37745.01142.55466.03906.82499.12818 1.33602.73302 1.32412 1.5351-.01124.75786-.64035 1.36123-1.39832 1.36123H7.40865c-.06245 0-.11876.03691-.14452.09374l-.60935 1.33972c-.0295.0648.0188.13671.08984.13671h4.28495c1.77679 0 3.1942-1.5331 2.99592-3.2986-.1616-1.43981-1.34012-2.56875-2.81033-2.61894-.01327-.00047-.02641.0011-.03906.0039a.06152.06152 0 0 0-.02148-.0039zm6.4762 0c-.0331 0-.06438.0187-.07812.04883l-4.9977 10.99134c-.0253.0559.01676.12108.07812.12108h1.6561c.03294 0 .06259-.0208.07617-.05078l4.9997-10.99134c.02545-.0559-.01661-.11913-.07813-.11913zm3.4783 0c-.02498 0-.04633.01431-.05664.0371l-.58005 1.28513c-.01889.04216.01058.08984.05664.08984h1.02334c.21717-.00312.37744.01142.55465.03906.825.12818 1.33782.73302 1.32612 1.5351-.0114.75786-.64034 1.36123-1.39831 1.36123h-3.66778c-.06246 0-.11876.03691-.14452.09374l-.60935 1.33972c-.02934.0648.01864.13671.08984.13671h4.28494c1.7766 0 3.1961-1.5331 2.99782-3.2986-.16159-1.43981-1.34222-2.56875-2.81233-2.61894-.01343-.00047-.02642.0011-.03906.0039a.0611.0611 0 0 0-.02148-.0039z" }) + ] + } + ); +}); + +exports.default = SiPaddlepaddle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.d.ts new file mode 100644 index 000000000..d8e2e3806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0062B0"; +declare const SiPaddlepaddle: IconType; +export { SiPaddlepaddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.mjs new file mode 100644 index 000000000..51dd934f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddlepaddle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0062B0"; +const SiPaddlepaddle = React.forwardRef(function SiPaddlepaddle2({ title = "PaddlePaddle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.17185 4.8315c-.6339 0-1.15033.51448-1.15033 1.14833s.51643 1.15033 1.15033 1.15033 1.14833-.51643 1.14833-1.15033-.51448-1.14833-1.14833-1.14833zm9.9916 0c-.6339 0-1.15033.51448-1.15033 1.14833s.51643 1.15033 1.15033 1.15033c.6339 0 1.14833-.51643 1.14833-1.15033S22.7973 4.8315 22.16345 4.8315zM6.67238 8.00711c-.0331 0-.06258.01885-.07617.04883l-1.95298 4.29274H.75286c-.05136 0-.09805.02932-.11913.07616l-.62691 1.39832c-.02155.04809.01363.10351.0664.10351h3.85327l-2.32796 5.1208c-.02545.0559.01465.12108.07617.12108h1.6561c.0331 0 .06438-.02064.07812-.05078l4.9977-10.99134c.02529-.0559-.01481-.11913-.07617-.11913zm3.4783 0c-.02484 0-.0483.01431-.0586.0371l-.58004 1.28513c-.01905.04216.01237.08984.05859.08984h1.02334c.21703-.00312.37745.01142.55466.03906.82499.12818 1.33602.73302 1.32412 1.5351-.01124.75786-.64035 1.36123-1.39832 1.36123H7.40865c-.06245 0-.11876.03691-.14452.09374l-.60935 1.33972c-.0295.0648.0188.13671.08984.13671h4.28495c1.77679 0 3.1942-1.5331 2.99592-3.2986-.1616-1.43981-1.34012-2.56875-2.81033-2.61894-.01327-.00047-.02641.0011-.03906.0039a.06152.06152 0 0 0-.02148-.0039zm6.4762 0c-.0331 0-.06438.0187-.07812.04883l-4.9977 10.99134c-.0253.0559.01676.12108.07812.12108h1.6561c.03294 0 .06259-.0208.07617-.05078l4.9997-10.99134c.02545-.0559-.01661-.11913-.07813-.11913zm3.4783 0c-.02498 0-.04633.01431-.05664.0371l-.58005 1.28513c-.01889.04216.01058.08984.05664.08984h1.02334c.21717-.00312.37744.01142.55465.03906.825.12818 1.33782.73302 1.32612 1.5351-.0114.75786-.64034 1.36123-1.39831 1.36123h-3.66778c-.06246 0-.11876.03691-.14452.09374l-.60935 1.33972c-.02934.0648.01864.13671.08984.13671h4.28494c1.7766 0 3.1961-1.5331 2.99782-3.2986-.16159-1.43981-1.34222-2.56875-2.81233-2.61894-.01343-.00047-.02642.0011-.03906.0039a.0611.0611 0 0 0-.02148-.0039z" }) + ] + } + ); +}); + +export { SiPaddlepaddle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.cjs new file mode 100644 index 000000000..dcbb1435f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004833"; +const SiPaddypower = React__namespace.forwardRef(function SiPaddypower2({ title = "Paddy Power", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.014 3.713a18.383 18.383 0 0 0-1.626.084c-.816.082-1.714.245-2.53.408l.57 6.368.246 1.96.654 6.857 1.55-.083 1.796-.162v-.082l-.408-4.081v-.573a19.201 19.201 0 0 0 2.04-.408 10.164 10.164 0 0 0 1.633-.816 5.257 5.257 0 0 0 1.714-2.041 6.53 6.53 0 0 0 .409-2.774 4.751 4.751 0 0 0-2.858-4.082 7.347 7.347 0 0 0-2.694-.572 18.383 18.383 0 0 0-.496-.003zm-10.775.98a18.383 18.383 0 0 0-1.626.085A14.026 14.026 0 0 0 0 5.105l.572 6.366.163 1.96.654 6.857 1.551-.082 1.795-.164-.327-4.081v-.571a19.197 19.197 0 0 0 2.041-.408 10.164 10.164 0 0 0 1.633-.817 5.257 5.257 0 0 0 1.714-2.04 5.967 5.967 0 0 0 .408-2.695A4.653 4.653 0 0 0 7.43 5.267a7.347 7.347 0 0 0-2.695-.57 18.383 18.383 0 0 0-.496-.004zM15.1 6.731a1.233 1.233 0 0 1 .085.006 3.265 3.265 0 0 1 1.468.325 2.065 2.065 0 0 1 1.062 1.633 2.596 2.596 0 0 1-.164 1.143 1.861 1.861 0 0 1-.571.817 2.449 2.449 0 0 1-1.306.572 1.78 1.78 0 0 1-.653.081l-.409-4.49a1.233 1.233 0 0 1 .488-.087zm-10.942.98a1.233 1.233 0 0 1 .17.005 3.265 3.265 0 0 1 1.47.327 2.065 2.065 0 0 1 1.06 1.633 4.947 4.947 0 0 1-.163 1.143 1.861 1.861 0 0 1-.573.816 2.449 2.449 0 0 1-1.305.57 1.78 1.78 0 0 1-.653.082l-.408-4.49a1.233 1.233 0 0 1 .402-.086zm17.801 7.27A2.04 2.04 0 1 0 24 17.023a2.04 2.04 0 0 0-2.04-2.04z" }) + ] + } + ); +}); + +exports.default = SiPaddypower; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.d.ts new file mode 100644 index 000000000..5f618dd83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004833"; +declare const SiPaddypower: IconType; +export { SiPaddypower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.mjs new file mode 100644 index 000000000..9405deeeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaddypower.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004833"; +const SiPaddypower = React.forwardRef(function SiPaddypower2({ title = "Paddy Power", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.014 3.713a18.383 18.383 0 0 0-1.626.084c-.816.082-1.714.245-2.53.408l.57 6.368.246 1.96.654 6.857 1.55-.083 1.796-.162v-.082l-.408-4.081v-.573a19.201 19.201 0 0 0 2.04-.408 10.164 10.164 0 0 0 1.633-.816 5.257 5.257 0 0 0 1.714-2.041 6.53 6.53 0 0 0 .409-2.774 4.751 4.751 0 0 0-2.858-4.082 7.347 7.347 0 0 0-2.694-.572 18.383 18.383 0 0 0-.496-.003zm-10.775.98a18.383 18.383 0 0 0-1.626.085A14.026 14.026 0 0 0 0 5.105l.572 6.366.163 1.96.654 6.857 1.551-.082 1.795-.164-.327-4.081v-.571a19.197 19.197 0 0 0 2.041-.408 10.164 10.164 0 0 0 1.633-.817 5.257 5.257 0 0 0 1.714-2.04 5.967 5.967 0 0 0 .408-2.695A4.653 4.653 0 0 0 7.43 5.267a7.347 7.347 0 0 0-2.695-.57 18.383 18.383 0 0 0-.496-.004zM15.1 6.731a1.233 1.233 0 0 1 .085.006 3.265 3.265 0 0 1 1.468.325 2.065 2.065 0 0 1 1.062 1.633 2.596 2.596 0 0 1-.164 1.143 1.861 1.861 0 0 1-.571.817 2.449 2.449 0 0 1-1.306.572 1.78 1.78 0 0 1-.653.081l-.409-4.49a1.233 1.233 0 0 1 .488-.087zm-10.942.98a1.233 1.233 0 0 1 .17.005 3.265 3.265 0 0 1 1.47.327 2.065 2.065 0 0 1 1.06 1.633 4.947 4.947 0 0 1-.163 1.143 1.861 1.861 0 0 1-.573.816 2.449 2.449 0 0 1-1.305.57 1.78 1.78 0 0 1-.653.082l-.408-4.49a1.233 1.233 0 0 1 .402-.086zm17.801 7.27A2.04 2.04 0 1 0 24 17.023a2.04 2.04 0 0 0-2.04-2.04z" }) + ] + } + ); +}); + +export { SiPaddypower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.cjs new file mode 100644 index 000000000..7ff0ec05e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4081"; +const SiPadlet = React__namespace.forwardRef(function SiPadlet2({ title = "Padlet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.2582 2.3987c-.2791.0038-.573.1774-.6906.4496l-4.9783 11.566h.001l1.7144 6.3107c.1384.6059.7421.9857 1.3488.8481l2.6047-.5912-.4004-5.013.0005-.0009-5.2671-1.5532 5.2666.753zm.001 0 .3965 12.769 5.2714-.7533-4.9784-11.5661h.0005c-.1176-.2722-.411-.4457-.69-.4496ZM.4407 7.5341c-.3107.0029-.5609.35-.3797.6662l5.7242 9.9861-.9681-3.562a.7983.7983 0 0 1 .037-.526l1.4594-3.391L.6612 7.5918a.4446.4446 0 0 0-.2204-.0576Zm19.173 1.6802-3.419 1.4758 1.4669 3.4083h.001a.7968.7968 0 0 1 .037.5255l-.924 3.4008 5.621-8.8104zm2.7829 0-.669 2.4636 1.795.8528c.2914.1384.5896-.177.4351-.46h-.0005zm-5.4696 5.2005-5.2676 1.5541-.4004 5.013 2.6047.5912c.6067.1376 1.2102-.2422 1.3479-.848z" }) + ] + } + ); +}); + +exports.default = SiPadlet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.d.ts new file mode 100644 index 000000000..b78100221 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4081"; +declare const SiPadlet: IconType; +export { SiPadlet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.mjs new file mode 100644 index 000000000..04fbf3e7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPadlet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4081"; +const SiPadlet = React.forwardRef(function SiPadlet2({ title = "Padlet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.2582 2.3987c-.2791.0038-.573.1774-.6906.4496l-4.9783 11.566h.001l1.7144 6.3107c.1384.6059.7421.9857 1.3488.8481l2.6047-.5912-.4004-5.013.0005-.0009-5.2671-1.5532 5.2666.753zm.001 0 .3965 12.769 5.2714-.7533-4.9784-11.5661h.0005c-.1176-.2722-.411-.4457-.69-.4496ZM.4407 7.5341c-.3107.0029-.5609.35-.3797.6662l5.7242 9.9861-.9681-3.562a.7983.7983 0 0 1 .037-.526l1.4594-3.391L.6612 7.5918a.4446.4446 0 0 0-.2204-.0576Zm19.173 1.6802-3.419 1.4758 1.4669 3.4083h.001a.7968.7968 0 0 1 .037.5255l-.924 3.4008 5.621-8.8104zm2.7829 0-.669 2.4636 1.795.8528c.2914.1384.5896-.177.4351-.46h-.0005zm-5.4696 5.2005-5.2676 1.5541-.4004 5.013 2.6047.5912c.6067.1376 1.2102-.2422 1.3479-.848z" }) + ] + } + ); +}); + +export { SiPadlet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.cjs new file mode 100644 index 000000000..4621400d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiPagekit = React__namespace.forwardRef(function SiPagekit2({ title = "Pagekit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.401 0v24h9.6v-3.527H5.929V3.526h12.146v13.421h-6.073v3.525H21.6V0H2.401z" }) + ] + } + ); +}); + +exports.default = SiPagekit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.d.ts new file mode 100644 index 000000000..4e4cd6109 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiPagekit: IconType; +export { SiPagekit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.mjs new file mode 100644 index 000000000..dbc6bad89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagekit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiPagekit = React.forwardRef(function SiPagekit2({ title = "Pagekit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.401 0v24h9.6v-3.527H5.929V3.526h12.146v13.421h-6.073v3.525H21.6V0H2.401z" }) + ] + } + ); +}); + +export { SiPagekit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.cjs new file mode 100644 index 000000000..3113f210a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#06AC38"; +const SiPagerduty = React__namespace.forwardRef(function SiPagerduty2({ title = "PagerDuty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.965 1.18C15.085.164 13.769 0 10.683 0H3.73v14.55h6.926c2.743 0 4.8-.164 6.61-1.37 1.975-1.303 3.004-3.484 3.004-6.007 0-2.716-1.262-4.896-3.305-5.994zm-5.5 10.326h-4.21V3.113l3.977-.027c3.62-.028 5.43 1.234 5.43 4.128 0 3.113-2.248 4.292-5.197 4.292zM3.73 17.61h3.525V24H3.73Z" }) + ] + } + ); +}); + +exports.default = SiPagerduty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.d.ts new file mode 100644 index 000000000..2298c5d16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#06AC38"; +declare const SiPagerduty: IconType; +export { SiPagerduty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.mjs new file mode 100644 index 000000000..1f8e7adfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagerduty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#06AC38"; +const SiPagerduty = React.forwardRef(function SiPagerduty2({ title = "PagerDuty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.965 1.18C15.085.164 13.769 0 10.683 0H3.73v14.55h6.926c2.743 0 4.8-.164 6.61-1.37 1.975-1.303 3.004-3.484 3.004-6.007 0-2.716-1.262-4.896-3.305-5.994zm-5.5 10.326h-4.21V3.113l3.977-.027c3.62-.028 5.43 1.234 5.43 4.128 0 3.113-2.248 4.292-5.197 4.292zM3.73 17.61h3.525V24H3.73Z" }) + ] + } + ); +}); + +export { SiPagerduty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.cjs new file mode 100644 index 000000000..472e49226 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiPagespeedinsights = React__namespace.forwardRef(function SiPagespeedinsights2({ title = "PageSpeed Insights", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.363 1.636H1.635C.732 1.636 0 2.37.001 3.273L0 20.727v.003c0 .903.733 1.634 1.635 1.634h20.73c.904 0 1.635-.734 1.635-1.637V3.273c.016-.89-.76-1.64-1.637-1.637zM3.979 2.886c.492-.507 1.279.28.77.772-.491.508-1.278-.279-.77-.771zM1.8 2.89c.507-.509 1.28.265.772.771-.493.502-1.274-.28-.772-.771zm21.7 17.838c.012.611-.524 1.148-1.137 1.136H1.635A1.137 1.137 0 0 1 .5 20.727L.501 4.91H23.5v15.819zM11 16.159l5.946-4.577c.235-.2.576.129.389.372l-.002-.002-3.936 6.35a1.638 1.638 0 0 1-2.448.405c-.785-.668-.811-1.835.05-2.548zm4.763-.75c.09-.168 2.002-3.181 2.06-3.35 2.056 1.813 3.029 4.382 2.898 7.026h-3.819c.073-1.39-.29-2.678-1.139-3.676zm-8.679 3.682H3.278c-.357-7.022 7.148-11.735 13.39-7.92l-3.461 2.618c-3.3-.762-6.364 1.71-6.123 5.302z" }) + ] + } + ); +}); + +exports.default = SiPagespeedinsights; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.d.ts new file mode 100644 index 000000000..46ac14706 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiPagespeedinsights: IconType; +export { SiPagespeedinsights as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.mjs new file mode 100644 index 000000000..8b64d2f27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagespeedinsights.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiPagespeedinsights = React.forwardRef(function SiPagespeedinsights2({ title = "PageSpeed Insights", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.363 1.636H1.635C.732 1.636 0 2.37.001 3.273L0 20.727v.003c0 .903.733 1.634 1.635 1.634h20.73c.904 0 1.635-.734 1.635-1.637V3.273c.016-.89-.76-1.64-1.637-1.637zM3.979 2.886c.492-.507 1.279.28.77.772-.491.508-1.278-.279-.77-.771zM1.8 2.89c.507-.509 1.28.265.772.771-.493.502-1.274-.28-.772-.771zm21.7 17.838c.012.611-.524 1.148-1.137 1.136H1.635A1.137 1.137 0 0 1 .5 20.727L.501 4.91H23.5v15.819zM11 16.159l5.946-4.577c.235-.2.576.129.389.372l-.002-.002-3.936 6.35a1.638 1.638 0 0 1-2.448.405c-.785-.668-.811-1.835.05-2.548zm4.763-.75c.09-.168 2.002-3.181 2.06-3.35 2.056 1.813 3.029 4.382 2.898 7.026h-3.819c.073-1.39-.29-2.678-1.139-3.676zm-8.679 3.682H3.278c-.357-7.022 7.148-11.735 13.39-7.92l-3.461 2.618c-3.3-.762-6.364 1.71-6.123 5.302z" }) + ] + } + ); +}); + +export { SiPagespeedinsights as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.cjs new file mode 100644 index 000000000..110cf6c63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC801"; +const SiPagseguro = React__namespace.forwardRef(function SiPagseguro2({ title = "PagSeguro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.482 9.712c1.64 0 3.108.69 4.1 1.813.044-.388.087-.777.087-1.208C21.67 5.007 17.353.69 12 .69c-5.353 0-9.67 4.316-9.67 9.626 0 .345 0 .69.044 1.036a8.688 8.688 0 017.943-5.137c2.848 0 5.352 1.381 6.95 3.496h.215zm-7.122-2.72c-4.36 0-7.9 3.54-7.9 7.9s3.54 7.9 7.9 7.9c2.158 0 4.1-.864 5.525-2.245a5.53 5.53 0 01-3.928-5.31c0-2.676 1.9-4.92 4.446-5.438-1.468-1.684-3.626-2.806-6.043-2.806zM4.79 21.583A11.958 11.958 0 010 12C0 5.353 5.396 0 12 0s12 5.396 12 12-5.396 12-12 12c-1.554 0-3.022-.302-4.36-.82-1.079-.389-2.028-.907-2.849-1.597zm12.777-1.51a4.827 4.827 0 004.835-4.835 4.827 4.827 0 00-4.835-4.834 4.827 4.827 0 00-4.834 4.834 4.827 4.827 0 004.834 4.835Z" }) + ] + } + ); +}); + +exports.default = SiPagseguro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.d.ts new file mode 100644 index 000000000..37276860f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC801"; +declare const SiPagseguro: IconType; +export { SiPagseguro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.mjs new file mode 100644 index 000000000..27907a8ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPagseguro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC801"; +const SiPagseguro = React.forwardRef(function SiPagseguro2({ title = "PagSeguro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.482 9.712c1.64 0 3.108.69 4.1 1.813.044-.388.087-.777.087-1.208C21.67 5.007 17.353.69 12 .69c-5.353 0-9.67 4.316-9.67 9.626 0 .345 0 .69.044 1.036a8.688 8.688 0 017.943-5.137c2.848 0 5.352 1.381 6.95 3.496h.215zm-7.122-2.72c-4.36 0-7.9 3.54-7.9 7.9s3.54 7.9 7.9 7.9c2.158 0 4.1-.864 5.525-2.245a5.53 5.53 0 01-3.928-5.31c0-2.676 1.9-4.92 4.446-5.438-1.468-1.684-3.626-2.806-6.043-2.806zM4.79 21.583A11.958 11.958 0 010 12C0 5.353 5.396 0 12 0s12 5.396 12 12-5.396 12-12 12c-1.554 0-3.022-.302-4.36-.82-1.079-.389-2.028-.907-2.849-1.597zm12.777-1.51a4.827 4.827 0 004.835-4.835 4.827 4.827 0 00-4.835-4.834 4.827 4.827 0 00-4.834 4.834 4.827 4.827 0 004.834 4.835Z" }) + ] + } + ); +}); + +export { SiPagseguro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.cjs new file mode 100644 index 000000000..e96f21c3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#101113"; +const SiPalantir = React__namespace.forwardRef(function SiPalantir2({ title = "Palantir", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.147 18L12 21.178 3.853 18 2.5 20.343 12 24l9.5-3.657L20.147 18zM12 0a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19zm0 16.078a6.568 6.568 0 1 1 0-13.136 6.568 6.568 0 0 1 0 13.136z" }) + ] + } + ); +}); + +exports.default = SiPalantir; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.d.ts new file mode 100644 index 000000000..09603ca6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#101113"; +declare const SiPalantir: IconType; +export { SiPalantir as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.mjs new file mode 100644 index 000000000..86f575da1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPalantir.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#101113"; +const SiPalantir = React.forwardRef(function SiPalantir2({ title = "Palantir", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.147 18L12 21.178 3.853 18 2.5 20.343 12 24l9.5-3.657L20.147 18zM12 0a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19zm0 16.078a6.568 6.568 0 1 1 0-13.136 6.568 6.568 0 0 1 0 13.136z" }) + ] + } + ); +}); + +export { SiPalantir as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.cjs new file mode 100644 index 000000000..4ab29b217 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F04E23"; +const SiPaloaltonetworks = React__namespace.forwardRef(function SiPaloaltonetworks2({ title = "Palo Alto Networks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.278 15.443 1.705 1.705-3.426 3.426-3.427-3.426 8.592-8.591-1.705-1.705 3.426-3.426 3.427 3.426-8.592 8.591zM0 12.017l3.426 3.426 8.591-8.59-3.426-3.427L0 12.017zm11.983 5.13 3.426 3.427L24 11.983l-3.426-3.426-8.591 8.59z" }) + ] + } + ); +}); + +exports.default = SiPaloaltonetworks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.d.ts new file mode 100644 index 000000000..ff5dabf1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F04E23"; +declare const SiPaloaltonetworks: IconType; +export { SiPaloaltonetworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.mjs new file mode 100644 index 000000000..e779140f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltonetworks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F04E23"; +const SiPaloaltonetworks = React.forwardRef(function SiPaloaltonetworks2({ title = "Palo Alto Networks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.278 15.443 1.705 1.705-3.426 3.426-3.427-3.426 8.592-8.591-1.705-1.705 3.426-3.426 3.427 3.426-8.592 8.591zM0 12.017l3.426 3.426 8.591-8.59-3.426-3.427L0 12.017zm11.983 5.13 3.426 3.427L24 11.983l-3.426-3.426-8.591 8.59z" }) + ] + } + ); +}); + +export { SiPaloaltonetworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.cjs new file mode 100644 index 000000000..2f6f7d8a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#83DA77"; +const SiPaloaltosoftware = React__namespace.forwardRef(function SiPaloaltosoftware2({ title = "Palo Alto Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.995.005c-.58 0-1.158.228-1.615.685L.685 10.385c-.913.913-.913 2.318 0 3.231l.842.843 8.01-8.15a3.435 3.435 0 0 1 4.847 0l8.079 8.08.842-.843c.914-.843.915-2.248.072-3.161L13.612.69a2.279 2.279 0 0 0-1.617-.685zm0 6.463c-.58 0-1.158.228-1.615.684L.685 16.848c-.913.913-.913 2.318 0 3.23l3.231 3.232c.914.913 2.318.913 3.232 0l4.847-4.846 4.848 4.846c.913.913 2.318.913 3.231 0l3.231-3.231c.914-.843.915-2.318.072-3.231l-9.765-9.696a2.279 2.279 0 0 0-1.617-.684z" }) + ] + } + ); +}); + +exports.default = SiPaloaltosoftware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.d.ts new file mode 100644 index 000000000..9105c8cfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#83DA77"; +declare const SiPaloaltosoftware: IconType; +export { SiPaloaltosoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.mjs new file mode 100644 index 000000000..7874b2395 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaloaltosoftware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#83DA77"; +const SiPaloaltosoftware = React.forwardRef(function SiPaloaltosoftware2({ title = "Palo Alto Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.995.005c-.58 0-1.158.228-1.615.685L.685 10.385c-.913.913-.913 2.318 0 3.231l.842.843 8.01-8.15a3.435 3.435 0 0 1 4.847 0l8.079 8.08.842-.843c.914-.843.915-2.248.072-3.161L13.612.69a2.279 2.279 0 0 0-1.617-.685zm0 6.463c-.58 0-1.158.228-1.615.684L.685 16.848c-.913.913-.913 2.318 0 3.23l3.231 3.232c.914.913 2.318.913 3.232 0l4.847-4.846 4.848 4.846c.913.913 2.318.913 3.231 0l3.231-3.231c.914-.843.915-2.318.072-3.231l-9.765-9.696a2.279 2.279 0 0 0-1.617-.684z" }) + ] + } + ); +}); + +export { SiPaloaltosoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.cjs new file mode 100644 index 000000000..48353fec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0049AB"; +const SiPanasonic = React__namespace.forwardRef(function SiPanasonic2({ title = "Panasonic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.157 11.4852c.0399-.6914-.4884-1.2842-1.1798-1.324H0v3.58h1.084v-1.1h.66c.166 0 .333-.02.496-.059.497-.103.87-.52.917-1.025v-.072zm-1.081.005a.35.35 0 0 1-.337.301c-.081.007-.15.007-.23.007h-.425v-.777h.632a.36.36 0 0 1 .36.326.658.658 0 0 1 0 .143zm3.6781 1.45c0-.278-.01-.511-.01-.786a1.654 1.654 0 0 0-.057-.42.666.666 0 0 0-.332-.43 1.046 1.046 0 0 0-.316-.118 2.63 2.63 0 0 0-1.065-.02c-.1.015-.197.043-.29.082a.77.77 0 0 0-.455.5.597.597 0 0 0-.024.261.124.124 0 0 0 .014.048l.86.02a.386.386 0 0 1 .025-.153.262.262 0 0 1 .162-.162.49.49 0 0 1 .342 0 .23.23 0 0 1 .156.157.15.15 0 0 1-.02.13.22.22 0 0 1-.1.078l-.074.024c-.113.03-.228.055-.343.075a6.7928 6.7928 0 0 0-.276.05 3.2483 3.2483 0 0 0-.365.095.787.787 0 0 0-.295.173.621.621 0 0 0-.205.393.792.792 0 0 0 .012.299.71.71 0 0 0 .509.54c.277.084.574.068.841-.043a.83.83 0 0 0 .344-.248c.018.059.038.117.057.176.012.032.03.061.051.087h.948a.414.414 0 0 1-.068-.207c-.0138-.2-.0225-.4004-.026-.601zm-.956-.088a.431.431 0 0 1-.067.193.406.406 0 0 1-.182.145.627.627 0 0 1-.21.054.453.453 0 0 1-.163-.013.244.244 0 0 1-.12-.074.204.204 0 0 1-.057-.106.17.17 0 0 1 .064-.174.314.314 0 0 1 .105-.063c.095-.035.19-.066.288-.093.118-.034.232-.078.342-.131a.907.907 0 0 1 0 .262zm3.262-1.712a1.038 1.038 0 0 0-.755.054 1.662 1.662 0 0 0-.393.262l-.023-.27h-.919v2.559h.982v-1.42a.413.413 0 0 1 .06-.221.383.383 0 0 1 .482-.16c.081.032.142.1.167.183.013.043.02.087.02.131v1.484h1.01v-1.652a1.205 1.205 0 0 0-.06-.394.822.822 0 0 0-.572-.558l.001.002zm5.9501 1.25a1.076 1.076 0 0 0-.42-.231l-.106-.03a4.543 4.543 0 0 0-.58-.122 1.8502 1.8502 0 0 1-.156-.03.3.3 0 0 1-.068-.024.117.117 0 0 1-.059-.152v-.008a.222.222 0 0 1 .131-.105.491.491 0 0 1 .316 0c.107.03.178.133.17.244h.902a.9.9 0 0 0-.055-.31.551.551 0 0 0-.184-.255.848.848 0 0 0-.242-.138 1.196 1.196 0 0 0-.262-.073 2.627 2.627 0 0 0-.642-.037 2.033 2.033 0 0 0-.366.054 1.082 1.082 0 0 0-.444.211.693.693 0 0 0-.28.526.72.72 0 0 0 .052.316.675.675 0 0 0 .393.393c.09.036.183.064.278.082l.554.104c.07.01.138.028.205.051.06.018.103.07.113.131a.19.19 0 0 1-.052.176.304.304 0 0 1-.17.086.492.492 0 0 1-.262-.025.368.368 0 0 1-.105-.061.263.263 0 0 1-.089-.131.41.41 0 0 1-.02-.138h-.932v.055a.773.773 0 0 0 .256.555.99.99 0 0 0 .426.24c.329.098.676.12 1.014.065.16-.023.313-.073.455-.148a.935.935 0 0 0 .176-.118.778.778 0 0 0 .246-.852.632.632 0 0 0-.193-.302v.001zm6.1982-2.226h.957v.676h-.957v-.676zm0 1.024h.957v2.558h-.957v-2.558zm2.872 1.505a1.1666 1.1666 0 0 1-.018.154.393.393 0 0 1-.096.199.299.299 0 0 1-.185.098.364.364 0 0 1-.316-.1.53.53 0 0 1-.152-.26 1.168 1.168 0 0 1 .012-.703.41.41 0 0 1 .178-.232.36.36 0 0 1 .407.017c.092.068.153.17.17.284h.874a.78.78 0 0 0-.09-.417 1.12 1.12 0 0 0-.724-.564 1.711 1.711 0 0 0-.806-.02c-.48.094-.863.456-.984.93a1.383 1.383 0 0 0-.031.621c.023.149.075.291.152.42.095.171.227.32.385.435.189.148.416.239.655.262.18.02.36.012.538-.025a1.24 1.24 0 0 0 .685-.38.928.928 0 0 0 .263-.719h-.917zm-3.704-1.553a1.038 1.038 0 0 0-.755.054 1.656 1.656 0 0 0-.393.262l-.031-.27h-.9181v2.559h.984v-1.428a.425.425 0 0 1 .06-.221.393.393 0 0 1 .484-.16c.08.033.14.1.164.183a.453.453 0 0 1 .021.14v1.483h1.016v-1.652a1.2 1.2 0 0 0-.06-.394.822.822 0 0 0-.572-.558v.002zm-7.8792 1.8c0-.278-.01-.511-.012-.786 0-.142-.018-.283-.054-.42a.675.675 0 0 0-.333-.43 1.056 1.056 0 0 0-.315-.118 2.637 2.637 0 0 0-1.067-.02c-.1.015-.196.043-.289.082a.766.766 0 0 0-.456.5.617.617 0 0 0-.025.261.149.149 0 0 0 .015.048l.86.02a.384.384 0 0 1 .024-.153.262.262 0 0 1 .163-.162.49.49 0 0 1 .342 0 .23.23 0 0 1 .156.157.15.15 0 0 1-.021.13.213.213 0 0 1-.098.078l-.075.024c-.113.03-.228.055-.343.075a6.3141 6.3141 0 0 0-.274.05 3.2042 3.2042 0 0 0-.366.095.762.762 0 0 0-.296.173.617.617 0 0 0-.21.393.753.753 0 0 0 .012.299c.056.26.252.469.508.54.277.084.575.068.842-.043a.808.808 0 0 0 .335-.245c.017.058.036.116.057.173.01.032.029.062.052.087h.948a.418.418 0 0 1-.054-.207 13.4697 13.4697 0 0 1-.026-.601zm-.97-.084a.435.435 0 0 1-.07.189.371.371 0 0 1-.167.145.656.656 0 0 1-.205.054.466.466 0 0 1-.175-.015.248.248 0 0 1-.122-.073.214.214 0 0 1-.055-.105.172.172 0 0 1 .057-.17.344.344 0 0 1 .105-.063 4.83 4.83 0 0 1 .288-.093c.118-.035.233-.079.344-.131.01.087.01.175 0 .262zm5.483-1.72a1.858 1.858 0 0 0-.577 0 1.33 1.33 0 0 0-.747.371 1.21 1.21 0 0 0-.383.798c-.02.185-.003.372.048.551.073.278.239.522.47.693.147.117.32.197.504.235.26.055.527.055.787 0 .184-.038.359-.118.507-.235.23-.17.3961-.415.4681-.693a1.42 1.42 0 0 0 .05-.55 1.208 1.208 0 0 0-.383-.799 1.33 1.33 0 0 0-.743-.37l-.001-.001zm.06 1.814a.388.388 0 0 1-.513.193.371.371 0 0 1-.194-.193.903.903 0 0 1-.072-.246 1.42 1.42 0 0 1 .012-.515.657.657 0 0 1 .1-.247.374.374 0 0 1 .622 0 .627.627 0 0 1 .105.247c.034.17.038.344.01.515a.885.885 0 0 1-.07.246z" }) + ] + } + ); +}); + +exports.default = SiPanasonic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.d.ts new file mode 100644 index 000000000..97bf4562a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0049AB"; +declare const SiPanasonic: IconType; +export { SiPanasonic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.mjs new file mode 100644 index 000000000..92d66e794 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPanasonic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0049AB"; +const SiPanasonic = React.forwardRef(function SiPanasonic2({ title = "Panasonic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.157 11.4852c.0399-.6914-.4884-1.2842-1.1798-1.324H0v3.58h1.084v-1.1h.66c.166 0 .333-.02.496-.059.497-.103.87-.52.917-1.025v-.072zm-1.081.005a.35.35 0 0 1-.337.301c-.081.007-.15.007-.23.007h-.425v-.777h.632a.36.36 0 0 1 .36.326.658.658 0 0 1 0 .143zm3.6781 1.45c0-.278-.01-.511-.01-.786a1.654 1.654 0 0 0-.057-.42.666.666 0 0 0-.332-.43 1.046 1.046 0 0 0-.316-.118 2.63 2.63 0 0 0-1.065-.02c-.1.015-.197.043-.29.082a.77.77 0 0 0-.455.5.597.597 0 0 0-.024.261.124.124 0 0 0 .014.048l.86.02a.386.386 0 0 1 .025-.153.262.262 0 0 1 .162-.162.49.49 0 0 1 .342 0 .23.23 0 0 1 .156.157.15.15 0 0 1-.02.13.22.22 0 0 1-.1.078l-.074.024c-.113.03-.228.055-.343.075a6.7928 6.7928 0 0 0-.276.05 3.2483 3.2483 0 0 0-.365.095.787.787 0 0 0-.295.173.621.621 0 0 0-.205.393.792.792 0 0 0 .012.299.71.71 0 0 0 .509.54c.277.084.574.068.841-.043a.83.83 0 0 0 .344-.248c.018.059.038.117.057.176.012.032.03.061.051.087h.948a.414.414 0 0 1-.068-.207c-.0138-.2-.0225-.4004-.026-.601zm-.956-.088a.431.431 0 0 1-.067.193.406.406 0 0 1-.182.145.627.627 0 0 1-.21.054.453.453 0 0 1-.163-.013.244.244 0 0 1-.12-.074.204.204 0 0 1-.057-.106.17.17 0 0 1 .064-.174.314.314 0 0 1 .105-.063c.095-.035.19-.066.288-.093.118-.034.232-.078.342-.131a.907.907 0 0 1 0 .262zm3.262-1.712a1.038 1.038 0 0 0-.755.054 1.662 1.662 0 0 0-.393.262l-.023-.27h-.919v2.559h.982v-1.42a.413.413 0 0 1 .06-.221.383.383 0 0 1 .482-.16c.081.032.142.1.167.183.013.043.02.087.02.131v1.484h1.01v-1.652a1.205 1.205 0 0 0-.06-.394.822.822 0 0 0-.572-.558l.001.002zm5.9501 1.25a1.076 1.076 0 0 0-.42-.231l-.106-.03a4.543 4.543 0 0 0-.58-.122 1.8502 1.8502 0 0 1-.156-.03.3.3 0 0 1-.068-.024.117.117 0 0 1-.059-.152v-.008a.222.222 0 0 1 .131-.105.491.491 0 0 1 .316 0c.107.03.178.133.17.244h.902a.9.9 0 0 0-.055-.31.551.551 0 0 0-.184-.255.848.848 0 0 0-.242-.138 1.196 1.196 0 0 0-.262-.073 2.627 2.627 0 0 0-.642-.037 2.033 2.033 0 0 0-.366.054 1.082 1.082 0 0 0-.444.211.693.693 0 0 0-.28.526.72.72 0 0 0 .052.316.675.675 0 0 0 .393.393c.09.036.183.064.278.082l.554.104c.07.01.138.028.205.051.06.018.103.07.113.131a.19.19 0 0 1-.052.176.304.304 0 0 1-.17.086.492.492 0 0 1-.262-.025.368.368 0 0 1-.105-.061.263.263 0 0 1-.089-.131.41.41 0 0 1-.02-.138h-.932v.055a.773.773 0 0 0 .256.555.99.99 0 0 0 .426.24c.329.098.676.12 1.014.065.16-.023.313-.073.455-.148a.935.935 0 0 0 .176-.118.778.778 0 0 0 .246-.852.632.632 0 0 0-.193-.302v.001zm6.1982-2.226h.957v.676h-.957v-.676zm0 1.024h.957v2.558h-.957v-2.558zm2.872 1.505a1.1666 1.1666 0 0 1-.018.154.393.393 0 0 1-.096.199.299.299 0 0 1-.185.098.364.364 0 0 1-.316-.1.53.53 0 0 1-.152-.26 1.168 1.168 0 0 1 .012-.703.41.41 0 0 1 .178-.232.36.36 0 0 1 .407.017c.092.068.153.17.17.284h.874a.78.78 0 0 0-.09-.417 1.12 1.12 0 0 0-.724-.564 1.711 1.711 0 0 0-.806-.02c-.48.094-.863.456-.984.93a1.383 1.383 0 0 0-.031.621c.023.149.075.291.152.42.095.171.227.32.385.435.189.148.416.239.655.262.18.02.36.012.538-.025a1.24 1.24 0 0 0 .685-.38.928.928 0 0 0 .263-.719h-.917zm-3.704-1.553a1.038 1.038 0 0 0-.755.054 1.656 1.656 0 0 0-.393.262l-.031-.27h-.9181v2.559h.984v-1.428a.425.425 0 0 1 .06-.221.393.393 0 0 1 .484-.16c.08.033.14.1.164.183a.453.453 0 0 1 .021.14v1.483h1.016v-1.652a1.2 1.2 0 0 0-.06-.394.822.822 0 0 0-.572-.558v.002zm-7.8792 1.8c0-.278-.01-.511-.012-.786 0-.142-.018-.283-.054-.42a.675.675 0 0 0-.333-.43 1.056 1.056 0 0 0-.315-.118 2.637 2.637 0 0 0-1.067-.02c-.1.015-.196.043-.289.082a.766.766 0 0 0-.456.5.617.617 0 0 0-.025.261.149.149 0 0 0 .015.048l.86.02a.384.384 0 0 1 .024-.153.262.262 0 0 1 .163-.162.49.49 0 0 1 .342 0 .23.23 0 0 1 .156.157.15.15 0 0 1-.021.13.213.213 0 0 1-.098.078l-.075.024c-.113.03-.228.055-.343.075a6.3141 6.3141 0 0 0-.274.05 3.2042 3.2042 0 0 0-.366.095.762.762 0 0 0-.296.173.617.617 0 0 0-.21.393.753.753 0 0 0 .012.299c.056.26.252.469.508.54.277.084.575.068.842-.043a.808.808 0 0 0 .335-.245c.017.058.036.116.057.173.01.032.029.062.052.087h.948a.418.418 0 0 1-.054-.207 13.4697 13.4697 0 0 1-.026-.601zm-.97-.084a.435.435 0 0 1-.07.189.371.371 0 0 1-.167.145.656.656 0 0 1-.205.054.466.466 0 0 1-.175-.015.248.248 0 0 1-.122-.073.214.214 0 0 1-.055-.105.172.172 0 0 1 .057-.17.344.344 0 0 1 .105-.063 4.83 4.83 0 0 1 .288-.093c.118-.035.233-.079.344-.131.01.087.01.175 0 .262zm5.483-1.72a1.858 1.858 0 0 0-.577 0 1.33 1.33 0 0 0-.747.371 1.21 1.21 0 0 0-.383.798c-.02.185-.003.372.048.551.073.278.239.522.47.693.147.117.32.197.504.235.26.055.527.055.787 0 .184-.038.359-.118.507-.235.23-.17.3961-.415.4681-.693a1.42 1.42 0 0 0 .05-.55 1.208 1.208 0 0 0-.383-.799 1.33 1.33 0 0 0-.743-.37l-.001-.001zm.06 1.814a.388.388 0 0 1-.513.193.371.371 0 0 1-.194-.193.903.903 0 0 1-.072-.246 1.42 1.42 0 0 1 .012-.515.657.657 0 0 1 .1-.247.374.374 0 0 1 .622 0 .627.627 0 0 1 .105.247c.034.17.038.344.01.515a.885.885 0 0 1-.07.246z" }) + ] + } + ); +}); + +export { SiPanasonic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.cjs new file mode 100644 index 000000000..76b229df0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#150458"; +const SiPandas = React__namespace.forwardRef(function SiPandas2({ title = "pandas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.922 0h2.623v18.104h-2.623zm-4.126 12.94h2.623v2.57h-2.623zm0-7.037h2.623v5.446h-2.623zm0 11.197h2.623v5.446h-2.623zM4.456 5.896h2.622V24H4.455zm4.213 2.559h2.623v2.57H8.67zm0 4.151h2.623v5.447H8.67zm0-11.187h2.623v5.446H8.67Z" }) + ] + } + ); +}); + +exports.default = SiPandas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.d.ts new file mode 100644 index 000000000..543fd0732 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#150458"; +declare const SiPandas: IconType; +export { SiPandas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.mjs new file mode 100644 index 000000000..d561e3a46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#150458"; +const SiPandas = React.forwardRef(function SiPandas2({ title = "pandas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.922 0h2.623v18.104h-2.623zm-4.126 12.94h2.623v2.57h-2.623zm0-7.037h2.623v5.446h-2.623zm0 11.197h2.623v5.446h-2.623zM4.456 5.896h2.622V24H4.455zm4.213 2.559h2.623v2.57H8.67zm0 4.151h2.623v5.447H8.67zm0-11.187h2.623v5.446H8.67Z" }) + ] + } + ); +}); + +export { SiPandas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.cjs new file mode 100644 index 000000000..3ae6dedbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4093DA"; +const SiPandoc = React__namespace.forwardRef(function SiPandoc2({ title = "Pandoc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.259 0a.95.95 0 0 0-.925.837.74.74 0 0 0 .75.837h1.953L3.778 23.163a.74.74 0 0 0 .75.837.95.95 0 0 0 .924-.837l2.26-21.489h2.51Q9.095 12.419 7.964 23.163a.74.74 0 0 0 .75.837.95.95 0 0 0 .925-.837l.997-9.489h8.372a.95.95 0 0 0 .925-.837l.733-6.977a.76.76 0 0 0-.182-.591L15.988.245A.75.75 0 0 0 15.422 0Zm7.638 1.674H14.9l.06.068-.403 3.84a.494.494 0 0 0 .5.558h3.84l.06.067-.61 5.793h-7.534z" }) + ] + } + ); +}); + +exports.default = SiPandoc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.d.ts new file mode 100644 index 000000000..c3bd832c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4093DA"; +declare const SiPandoc: IconType; +export { SiPandoc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.mjs new file mode 100644 index 000000000..d857294f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandoc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4093DA"; +const SiPandoc = React.forwardRef(function SiPandoc2({ title = "Pandoc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.259 0a.95.95 0 0 0-.925.837.74.74 0 0 0 .75.837h1.953L3.778 23.163a.74.74 0 0 0 .75.837.95.95 0 0 0 .924-.837l2.26-21.489h2.51Q9.095 12.419 7.964 23.163a.74.74 0 0 0 .75.837.95.95 0 0 0 .925-.837l.997-9.489h8.372a.95.95 0 0 0 .925-.837l.733-6.977a.76.76 0 0 0-.182-.591L15.988.245A.75.75 0 0 0 15.422 0Zm7.638 1.674H14.9l.06.068-.403 3.84a.494.494 0 0 0 .5.558h3.84l.06.067-.61 5.793h-7.534z" }) + ] + } + ); +}); + +export { SiPandoc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.cjs new file mode 100644 index 000000000..46196420e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#224099"; +const SiPandora = React__namespace.forwardRef(function SiPandora2({ title = "Pandora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.882 0v24H8.32a1.085 1.085 0 001.085-1.085v-4.61h1.612c7.88 0 11.103-4.442 11.103-9.636C22.119 2.257 17.247 0 12.662 0H1.882Z" }) + ] + } + ); +}); + +exports.default = SiPandora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.d.ts new file mode 100644 index 000000000..46fec4275 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#224099"; +declare const SiPandora: IconType; +export { SiPandora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.mjs new file mode 100644 index 000000000..fb24dc596 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPandora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#224099"; +const SiPandora = React.forwardRef(function SiPandora2({ title = "Pandora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.882 0v24H8.32a1.085 1.085 0 001.085-1.085v-4.61h1.612c7.88 0 11.103-4.442 11.103-9.636C22.119 2.257 17.247 0 12.662 0H1.882Z" }) + ] + } + ); +}); + +export { SiPandora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.cjs new file mode 100644 index 000000000..b740fde65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDC28"; +const SiPantheon = React__namespace.forwardRef(function SiPantheon2({ title = "Pantheon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.604 0L9.75 5.171H7.018l.904 2.276h5.535zm4.202 7.973l.724 1.752h3.09c.066 0 .223-.086.223-.877 0-.79-.157-.875-.224-.875zm-4.367 0c-.306 0-.474 0-.612.456-.166.544-.185 1.571-.185 3.57 0 2 .02 3.028.185 3.572.138.456.306.456.612.456h3.486l-1.727-4.202v.014l-.816-2.116h1.912l.884 2.119 1.826-.016-1.591-3.853zm5.235 2.1l.724 1.753h2.562c.068 0 .223-.086.223-.876s-.156-.876-.223-.876zm-3.742.076l2.633 6.403H8.346L14.297 24l-2.146-5.172h2.731l-.913-2.276H12.7l-2.634-6.403zm2.374 2.026l.724 1.752h3.93c.067 0 .223-.086.223-.876s-.155-.876-.223-.876zm.868 2.1l.723 1.752h2.722c.067 0 .223-.085.223-.875s-.156-.876-.223-.876zm4.624 1.2v.511h.103v-.391l.129.391h.096l.125-.391v.391h.107v-.511h-.15l-.127.394-.127-.394zm-.466 0v.092h.144v.42h.117v-.42h.144v-.092z" }) + ] + } + ); +}); + +exports.default = SiPantheon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.d.ts new file mode 100644 index 000000000..30ecf1775 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDC28"; +declare const SiPantheon: IconType; +export { SiPantheon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.mjs new file mode 100644 index 000000000..408d4f65f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPantheon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDC28"; +const SiPantheon = React.forwardRef(function SiPantheon2({ title = "Pantheon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.604 0L9.75 5.171H7.018l.904 2.276h5.535zm4.202 7.973l.724 1.752h3.09c.066 0 .223-.086.223-.877 0-.79-.157-.875-.224-.875zm-4.367 0c-.306 0-.474 0-.612.456-.166.544-.185 1.571-.185 3.57 0 2 .02 3.028.185 3.572.138.456.306.456.612.456h3.486l-1.727-4.202v.014l-.816-2.116h1.912l.884 2.119 1.826-.016-1.591-3.853zm5.235 2.1l.724 1.753h2.562c.068 0 .223-.086.223-.876s-.156-.876-.223-.876zm-3.742.076l2.633 6.403H8.346L14.297 24l-2.146-5.172h2.731l-.913-2.276H12.7l-2.634-6.403zm2.374 2.026l.724 1.752h3.93c.067 0 .223-.086.223-.876s-.155-.876-.223-.876zm.868 2.1l.723 1.752h2.722c.067 0 .223-.085.223-.875s-.156-.876-.223-.876zm4.624 1.2v.511h.103v-.391l.129.391h.096l.125-.391v.391h.107v-.511h-.15l-.127.394-.127-.394zm-.466 0v.092h.144v.42h.117v-.42h.144v-.092z" }) + ] + } + ); +}); + +export { SiPantheon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.cjs new file mode 100644 index 000000000..7809c8893 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17541F"; +const SiPaperlessngx = React__namespace.forwardRef(function SiPaperlessngx2({ title = "Paperless-ngx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.338 23.028c-.117-.56-.353-1.678-.382-1.678-4.977-2.975-4.388-8.128-2.739-11.073.353 3.71 6.92 6.273 3.092 10.808-.03.059.177.765.353 1.413.766-1.296 1.915-2.856 1.856-3.004C3.806 8.01 18.53 7.126 21.592 0c1.385 6.89-.706 17.55-12.544 20.26-.06.03-2.15 3.71-2.238 3.74 0-.059-.884-.03-.766-.324.059-.177.177-.412.294-.648zm-.147-2.768c1.502-1.737-.265-4.712-1.325-5.683 1.796 3.092 1.679 4.888 1.325 5.683z" }) + ] + } + ); +}); + +exports.default = SiPaperlessngx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.d.ts new file mode 100644 index 000000000..7decb26ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17541F"; +declare const SiPaperlessngx: IconType; +export { SiPaperlessngx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.mjs new file mode 100644 index 000000000..b841751b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperlessngx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17541F"; +const SiPaperlessngx = React.forwardRef(function SiPaperlessngx2({ title = "Paperless-ngx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.338 23.028c-.117-.56-.353-1.678-.382-1.678-4.977-2.975-4.388-8.128-2.739-11.073.353 3.71 6.92 6.273 3.092 10.808-.03.059.177.765.353 1.413.766-1.296 1.915-2.856 1.856-3.004C3.806 8.01 18.53 7.126 21.592 0c1.385 6.89-.706 17.55-12.544 20.26-.06.03-2.15 3.71-2.238 3.74 0-.059-.884-.03-.766-.324.059-.177.177-.412.294-.648zm-.147-2.768c1.502-1.737-.265-4.712-1.325-5.683 1.796 3.092 1.679 4.888 1.325 5.683z" }) + ] + } + ); +}); + +export { SiPaperlessngx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.cjs new file mode 100644 index 000000000..771c02349 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPaperspace = React__namespace.forwardRef(function SiPaperspace2({ title = "Paperspace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.832 10.848c0 3.04-1.883 6.402-4.471 8.879C16.774 22.202 13.275 24 10.093 24c-3.213 0-5.806-1.766-7.44-4.178C1.026 17.42.168 14.2.168 11.226c0-3.04 1.617-5.934 3.945-7.936C6.437 1.292 9.651 0 12.81 0c3.162 0 5.991 1.211 7.916 3.13 1.927 1.919 3.107 4.706 3.107 7.718Zm-11.023-9.69c-.446 0-.89.027-1.328.078.273-.02.547-.032.822-.034 2.931.017 5.67 1.04 7.58 2.725-1.77-1.753-4.154-2.768-7.074-2.768Zm-2.716 21.683a8.9 8.9 0 0 0 1.972-.23 9.39 9.39 0 0 1-1.844.192 8.132 8.132 0 0 1-4.128-1.11c1.125.732 2.445 1.148 4 1.148Zm9.052-18.02c-1.76-1.566-4.101-2.482-6.842-2.46-.91-.007-1.794.1-2.64.306.614-.096 1.25-.145 1.902-.145 2.748 0 5.439.772 7.36 2.208.388.29.75.615 1.083.97a8.986 8.986 0 0 0-.863-.88ZM10.22 21.643c.966 0 1.95-.178 2.922-.502-.928.24-1.869.369-2.785.369-1.347 0-2.56-.265-3.611-.736.99.557 2.138.869 3.474.869Zm8.01-15.986c-1.757-1.313-4.077-1.977-6.666-1.977-2.572 0-4.638.738-6.166 2.132-1.524 1.392-2.364 3.285-2.364 5.792 0 2.547.586 4.687 1.825 6.275 1.234 1.58 2.96 2.472 5.498 2.472 2.564 0 5.178-1.038 7.248-2.752 2.067-1.71 3.401-3.9 3.401-6.374 0-2.481-1.03-4.262-2.777-5.568Zm-9 .732h4.719c1.765 0 3.217 1.131 3.217 3.08 0 2.475-1.95 3.961-4.377 3.961H10.35l-.696 3.99H7.287L9.232 6.39Zm3.45 5.149c1.207 0 2.149-.62 2.149-1.874 0-.975-.757-1.377-1.595-1.377h-1.978l-.572 3.246h1.996v.005Z" }) + ] + } + ); +}); + +exports.default = SiPaperspace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.d.ts new file mode 100644 index 000000000..fe9bff279 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPaperspace: IconType; +export { SiPaperspace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.mjs new file mode 100644 index 000000000..fae150786 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperspace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPaperspace = React.forwardRef(function SiPaperspace2({ title = "Paperspace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.832 10.848c0 3.04-1.883 6.402-4.471 8.879C16.774 22.202 13.275 24 10.093 24c-3.213 0-5.806-1.766-7.44-4.178C1.026 17.42.168 14.2.168 11.226c0-3.04 1.617-5.934 3.945-7.936C6.437 1.292 9.651 0 12.81 0c3.162 0 5.991 1.211 7.916 3.13 1.927 1.919 3.107 4.706 3.107 7.718Zm-11.023-9.69c-.446 0-.89.027-1.328.078.273-.02.547-.032.822-.034 2.931.017 5.67 1.04 7.58 2.725-1.77-1.753-4.154-2.768-7.074-2.768Zm-2.716 21.683a8.9 8.9 0 0 0 1.972-.23 9.39 9.39 0 0 1-1.844.192 8.132 8.132 0 0 1-4.128-1.11c1.125.732 2.445 1.148 4 1.148Zm9.052-18.02c-1.76-1.566-4.101-2.482-6.842-2.46-.91-.007-1.794.1-2.64.306.614-.096 1.25-.145 1.902-.145 2.748 0 5.439.772 7.36 2.208.388.29.75.615 1.083.97a8.986 8.986 0 0 0-.863-.88ZM10.22 21.643c.966 0 1.95-.178 2.922-.502-.928.24-1.869.369-2.785.369-1.347 0-2.56-.265-3.611-.736.99.557 2.138.869 3.474.869Zm8.01-15.986c-1.757-1.313-4.077-1.977-6.666-1.977-2.572 0-4.638.738-6.166 2.132-1.524 1.392-2.364 3.285-2.364 5.792 0 2.547.586 4.687 1.825 6.275 1.234 1.58 2.96 2.472 5.498 2.472 2.564 0 5.178-1.038 7.248-2.752 2.067-1.71 3.401-3.9 3.401-6.374 0-2.481-1.03-4.262-2.777-5.568Zm-9 .732h4.719c1.765 0 3.217 1.131 3.217 3.08 0 2.475-1.95 3.961-4.377 3.961H10.35l-.696 3.99H7.287L9.232 6.39Zm3.45 5.149c1.207 0 2.149-.62 2.149-1.874 0-.975-.757-1.377-1.595-1.377h-1.978l-.572 3.246h1.996v.005Z" }) + ] + } + ); +}); + +export { SiPaperspace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.cjs new file mode 100644 index 000000000..ffb84f8b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21CBCE"; +const SiPaperswithcode = React__namespace.forwardRef(function SiPaperswithcode2({ title = "Papers With Code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2v20h4.4v-2.4h-2V4.4h2V2H0Zm19.6 0v2.4h2v15.2h-2V22H24V2h-4.4Zm-16 3.6v12.8H6V5.6H3.6Zm7.2 0v12.8h2.4V5.6h-2.4Zm7.2 0v12.8h2.4V5.6H18Zm-10.8.8v11.2h2.4V6.4H7.2Zm7.2 0v11.2h2.4V6.4h-2.4Z" }) + ] + } + ); +}); + +exports.default = SiPaperswithcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.d.ts new file mode 100644 index 000000000..d9962d9f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21CBCE"; +declare const SiPaperswithcode: IconType; +export { SiPaperswithcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.mjs new file mode 100644 index 000000000..cba13bbb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaperswithcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21CBCE"; +const SiPaperswithcode = React.forwardRef(function SiPaperswithcode2({ title = "Papers With Code", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2v20h4.4v-2.4h-2V4.4h2V2H0Zm19.6 0v2.4h2v15.2h-2V22H24V2h-4.4Zm-16 3.6v12.8H6V5.6H3.6Zm7.2 0v12.8h2.4V5.6h-2.4Zm7.2 0v12.8h2.4V5.6H18Zm-10.8.8v11.2h2.4V6.4H7.2Zm7.2 0v11.2h2.4V6.4h-2.4Z" }) + ] + } + ); +}); + +export { SiPaperswithcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.cjs new file mode 100644 index 000000000..3fd497968 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#101010"; +const SiParadoxinteractive = React__namespace.forwardRef(function SiParadoxinteractive2({ title = "Paradox Interactive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.384 12.65c-.141-.703.587-1.31.241-2.029-.345-.718-2.012-.67-2.038-1.488-.037-.949 1.347-.466 1.928-.446 0-1.52-.597-2.824-2.238-1.797a.89.89 0 0 1-.77-.299c-.524-.896 1.001-1.09 1.048-1.803 0-.42-.492-.686-.65-1.048a1.8 1.8 0 0 1 0-.76c0-.1-.12-.105-.199-.126-.309-.078-.597.1-.917.032a4.4 4.4 0 0 1-.86-.524 1.15 1.15 0 0 1-.298.403c-.23.32-1.048 1.457-1.573.964a.92.92 0 0 1-.125-.791C17.21.952 16.493.737 14.742.459c-.42-.068-1.489-.32-1.976-.173 0 .335.425 2.689-.33 2.563-.896 0-.409-2.332-1.709-2.62a1.2 1.2 0 0 0-.64.314c-.183.267.184 1.09.263 1.41a2.14 2.14 0 0 1-.058 1.263V3.3C8.814 3.3 8.977.034 6.671 1.643c0 .876 2.096 1.982 1.368 2.94a.85.85 0 0 1-.525.326c-1.116.136-1.572-2.275-2.803-2.06a.7.7 0 0 0-.451.367c-.32.555 1.048 1.389 1.263 1.955a1.7 1.7 0 0 1-.037.89c-1.048 0-2.285-1.503-3.265-.55a.64.64 0 0 0-.262.587c.1.399.812.33 1.048.708v.047c.372.844-.482 1.462-.492 2.228 0 .382.288.597.167 1.011-.42 1.426-1.771-.162-2.416.446s.079 1.682.126 2.327a8.5 8.5 0 0 1-.23 1.147 2.9 2.9 0 0 0 .335.986c.125.456 0 .959.246 1.352.729 1.121 1.944-1.94 2.521-.65.445 1.048-1.808.985-1.866 1.777-.057.791 1.29 1.493 1.814 1.986a2.74 2.74 0 0 1 .901 1.677 5.2 5.2 0 0 1-.377 1.85 2 2 0 0 0 .644.032c1.143-.34 1.814-2.165 1.625-3.297-.173-.954-.697-1.771-.765-2.767s.89-2.62 0-3.323l-.12-.073a.34.34 0 0 1-.336.136.74.74 0 0 1-.524-.173.445.445 0 0 1-.157-.624c.22-.325.843-.262.917-.697.157-.964-1.86-1.153-.64-2.343a1.17 1.17 0 0 1 .928-.356c.566.042 1.934.45 1.855 1.174-.036.33-.314.64-.194 1.006.12.367.682.341.834.697.199.488-.21.85-.168 1.305a.28.28 0 0 0 .147.226 1.6 1.6 0 0 1 .602.403c.257.566-.43 1.258.483 1.573 0-.404-.09-.944.262-1.153a1.2 1.2 0 0 0 .257.325c.288.45.408.875.995 1.048a3.3 3.3 0 0 0-.46-1.604c.418 0 .68.556 1.157.43s.048-.603-.052-.807c-.288-.582.126-1.049-.047-1.573s-1.735-1.037-2.207-1.478a.67.67 0 0 1-.246-.639c.288-.891 1.336-.362 2.096-.571a1.9 1.9 0 0 0 .85-.608 1.5 1.5 0 0 0 .361-1.494 1.6 1.6 0 0 1-.293-.912c.22-1.604 2.814-1.515 3.946-.933.577.294 1.127.975.823 1.667-.273.608-1.006.257-1.52.482a3.4 3.4 0 0 0-1.205 1.572c-.231.65.414 1.143.456 1.777.089 1.384-.566 2.657-.839 3.91-.052.23.152.524.026.75-.199.335-.613.214-.948.335a3.3 3.3 0 0 0-.603.44c-.482.299-1.048.446-1.106 1.106.304 0 .524-.163.854-.194a.058.058 0 0 1 .068.063v.063c-.073.576-.524 1.048-.256 1.666.408 0 .524-.953 1.184-.702.079 0 .068 0 .09.073a4.8 4.8 0 0 0 .434 1.211.27.27 0 0 0 .226-.267 4 4 0 0 1 .057-1.373c.2-.524.556-.451.467-1.153a2 2 0 0 0 .346-.22c.833-.289.97-.77 2.023-.74a1.75 1.75 0 0 1 .723.126c.183 0 .115-.288.047-.524-.372-1.226-.839-2.437-.839-3.852h.2a8 8 0 0 0 .744 1.206c.157.251.665 1.415 1.116 1.163.21-.126.336-1.572.456-1.913.446-1.2 1.704-1.462 2.448-.304s.267 3.417-.63 4.266c-.35.33-.853.33-1.189.64-.335.309-.037.927-.094 1.352a1.93 1.93 0 0 1-.603 1.048c-.629.634-1.483.917-2.128 1.499-.278.246-.34.655-.681.807-.34.152-.75-.042-1.1.063l-.771.482c-.472.247-1.237.66-1.489.74 0 1.005 2.406.47 2.899.204.35-.19.456-.65.802-.802.345-.152.697.215 1.095.078a5.3 5.3 0 0 0 1.048-.65 21 21 0 0 0 1.866-1.294 2.1 2.1 0 0 0 .597-.65c.152-.425-.524-1.473.671-1.3.923.12 1.845-1.735 2.018-2.39.105-.524.204-1.016.304-1.53l.383-.923c.22-.754-.462-.754-.572-1.278M2.462 14.594a.886.886 0 0 1-.928-1.294 1.37 1.37 0 0 1 .598-.525 1.28 1.28 0 0 1 .755.231.891.891 0 0 1-.425 1.588m4.942-5.393a.43.43 0 0 1-.267-.058c-.938-.398-.55-1.006-.194-1.671.713.288.875 1.509.461 1.73m1.316 2.757a1.81 1.81 0 0 1 1.137 1.536.5.5 0 0 1-.084.22.72.72 0 0 1-.466 0c-.702-.3-.598-1.064-.598-1.756Zm6.918 3.071a1.05 1.05 0 0 1-.372.65.75.75 0 0 1-.75-.461 2.3 2.3 0 0 1 0-.886 11.6 11.6 0 0 1 .472-2.945c.325.712.21 1.572.367 2.363a4 4 0 0 1 .278 1.28zm4.717-4.224a6.6 6.6 0 0 1-1.31-.037c-1.646-.325-.226-2.175.126-2.914.67.603 1.415 1.986 1.184 2.95" }) + ] + } + ); +}); + +exports.default = SiParadoxinteractive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.d.ts new file mode 100644 index 000000000..0e5b0de9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#101010"; +declare const SiParadoxinteractive: IconType; +export { SiParadoxinteractive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.mjs new file mode 100644 index 000000000..4065d2e63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParadoxinteractive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#101010"; +const SiParadoxinteractive = React.forwardRef(function SiParadoxinteractive2({ title = "Paradox Interactive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.384 12.65c-.141-.703.587-1.31.241-2.029-.345-.718-2.012-.67-2.038-1.488-.037-.949 1.347-.466 1.928-.446 0-1.52-.597-2.824-2.238-1.797a.89.89 0 0 1-.77-.299c-.524-.896 1.001-1.09 1.048-1.803 0-.42-.492-.686-.65-1.048a1.8 1.8 0 0 1 0-.76c0-.1-.12-.105-.199-.126-.309-.078-.597.1-.917.032a4.4 4.4 0 0 1-.86-.524 1.15 1.15 0 0 1-.298.403c-.23.32-1.048 1.457-1.573.964a.92.92 0 0 1-.125-.791C17.21.952 16.493.737 14.742.459c-.42-.068-1.489-.32-1.976-.173 0 .335.425 2.689-.33 2.563-.896 0-.409-2.332-1.709-2.62a1.2 1.2 0 0 0-.64.314c-.183.267.184 1.09.263 1.41a2.14 2.14 0 0 1-.058 1.263V3.3C8.814 3.3 8.977.034 6.671 1.643c0 .876 2.096 1.982 1.368 2.94a.85.85 0 0 1-.525.326c-1.116.136-1.572-2.275-2.803-2.06a.7.7 0 0 0-.451.367c-.32.555 1.048 1.389 1.263 1.955a1.7 1.7 0 0 1-.037.89c-1.048 0-2.285-1.503-3.265-.55a.64.64 0 0 0-.262.587c.1.399.812.33 1.048.708v.047c.372.844-.482 1.462-.492 2.228 0 .382.288.597.167 1.011-.42 1.426-1.771-.162-2.416.446s.079 1.682.126 2.327a8.5 8.5 0 0 1-.23 1.147 2.9 2.9 0 0 0 .335.986c.125.456 0 .959.246 1.352.729 1.121 1.944-1.94 2.521-.65.445 1.048-1.808.985-1.866 1.777-.057.791 1.29 1.493 1.814 1.986a2.74 2.74 0 0 1 .901 1.677 5.2 5.2 0 0 1-.377 1.85 2 2 0 0 0 .644.032c1.143-.34 1.814-2.165 1.625-3.297-.173-.954-.697-1.771-.765-2.767s.89-2.62 0-3.323l-.12-.073a.34.34 0 0 1-.336.136.74.74 0 0 1-.524-.173.445.445 0 0 1-.157-.624c.22-.325.843-.262.917-.697.157-.964-1.86-1.153-.64-2.343a1.17 1.17 0 0 1 .928-.356c.566.042 1.934.45 1.855 1.174-.036.33-.314.64-.194 1.006.12.367.682.341.834.697.199.488-.21.85-.168 1.305a.28.28 0 0 0 .147.226 1.6 1.6 0 0 1 .602.403c.257.566-.43 1.258.483 1.573 0-.404-.09-.944.262-1.153a1.2 1.2 0 0 0 .257.325c.288.45.408.875.995 1.048a3.3 3.3 0 0 0-.46-1.604c.418 0 .68.556 1.157.43s.048-.603-.052-.807c-.288-.582.126-1.049-.047-1.573s-1.735-1.037-2.207-1.478a.67.67 0 0 1-.246-.639c.288-.891 1.336-.362 2.096-.571a1.9 1.9 0 0 0 .85-.608 1.5 1.5 0 0 0 .361-1.494 1.6 1.6 0 0 1-.293-.912c.22-1.604 2.814-1.515 3.946-.933.577.294 1.127.975.823 1.667-.273.608-1.006.257-1.52.482a3.4 3.4 0 0 0-1.205 1.572c-.231.65.414 1.143.456 1.777.089 1.384-.566 2.657-.839 3.91-.052.23.152.524.026.75-.199.335-.613.214-.948.335a3.3 3.3 0 0 0-.603.44c-.482.299-1.048.446-1.106 1.106.304 0 .524-.163.854-.194a.058.058 0 0 1 .068.063v.063c-.073.576-.524 1.048-.256 1.666.408 0 .524-.953 1.184-.702.079 0 .068 0 .09.073a4.8 4.8 0 0 0 .434 1.211.27.27 0 0 0 .226-.267 4 4 0 0 1 .057-1.373c.2-.524.556-.451.467-1.153a2 2 0 0 0 .346-.22c.833-.289.97-.77 2.023-.74a1.75 1.75 0 0 1 .723.126c.183 0 .115-.288.047-.524-.372-1.226-.839-2.437-.839-3.852h.2a8 8 0 0 0 .744 1.206c.157.251.665 1.415 1.116 1.163.21-.126.336-1.572.456-1.913.446-1.2 1.704-1.462 2.448-.304s.267 3.417-.63 4.266c-.35.33-.853.33-1.189.64-.335.309-.037.927-.094 1.352a1.93 1.93 0 0 1-.603 1.048c-.629.634-1.483.917-2.128 1.499-.278.246-.34.655-.681.807-.34.152-.75-.042-1.1.063l-.771.482c-.472.247-1.237.66-1.489.74 0 1.005 2.406.47 2.899.204.35-.19.456-.65.802-.802.345-.152.697.215 1.095.078a5.3 5.3 0 0 0 1.048-.65 21 21 0 0 0 1.866-1.294 2.1 2.1 0 0 0 .597-.65c.152-.425-.524-1.473.671-1.3.923.12 1.845-1.735 2.018-2.39.105-.524.204-1.016.304-1.53l.383-.923c.22-.754-.462-.754-.572-1.278M2.462 14.594a.886.886 0 0 1-.928-1.294 1.37 1.37 0 0 1 .598-.525 1.28 1.28 0 0 1 .755.231.891.891 0 0 1-.425 1.588m4.942-5.393a.43.43 0 0 1-.267-.058c-.938-.398-.55-1.006-.194-1.671.713.288.875 1.509.461 1.73m1.316 2.757a1.81 1.81 0 0 1 1.137 1.536.5.5 0 0 1-.084.22.72.72 0 0 1-.466 0c-.702-.3-.598-1.064-.598-1.756Zm6.918 3.071a1.05 1.05 0 0 1-.372.65.75.75 0 0 1-.75-.461 2.3 2.3 0 0 1 0-.886 11.6 11.6 0 0 1 .472-2.945c.325.712.21 1.572.367 2.363a4 4 0 0 1 .278 1.28zm4.717-4.224a6.6 6.6 0 0 1-1.31-.037c-1.646-.325-.226-2.175.126-2.914.67.603 1.415 1.986 1.184 2.95" }) + ] + } + ); +}); + +export { SiParadoxinteractive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.cjs new file mode 100644 index 000000000..cdd8a0102 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0064FF"; +const SiParamountplus = React__namespace.forwardRef(function SiParamountplus2({ title = "Paramount+", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.347 21.373c.057-.084.151-.314-.025-.74l-.53-1.428c-.073-.182.084-.293.19-.173 0 0 1.004 1.157 1.264 1.64l.495.822c.425.028 1.6.06 2.732.06a3.26 3.26 0 0 1-.316-.364c-1.93-2.392-3.154-3.724-3.166-3.737-.391-.426-.572-.508-.87-.643a4.82 4.82 0 0 1-.138-.065v.364c0 .047-.057.073-.086.022l-2.846-5.001a1.598 1.598 0 0 0-.508-.587l-.277-.194-1.354 3.123c.212 0 .354.216.27.409l-1.25 2.893h1.147c.443 0 .883.087 1.294.255l.302.125s-.913 1.878-.913 2.867c0 .181.028.362.075.534h2.104l-.096-.595s1.266.294 2.502.413M12 2.437c-6.627 0-12 5.373-12 12 0 2.669.873 5.133 2.346 7.126.503-.218.783-.542.983-.791l2.234-2.858a.467.467 0 0 1 .179-.138l.336-.146 3.674-4.659.534-.417 1.094-1.524a.482.482 0 0 1 .101-.102l.478-.347a.34.34 0 0 1 .398-.004l.578.407c.308.216.557.504.726.84l2.322 4.077c.051.09.09.129.182.174.454.227.732.268 1.33.913.277.304 1.495 1.666 3.203 3.784.236.318.538.588.963.783A11.948 11.948 0 0 0 24 14.437c0-6.627-5.373-12-12-12M3.236 15.1l-.778-.253-.48.662v-.818l-.778-.253.778-.253v-.818l.48.662.778-.253-.48.662Zm-.185 2.676-.252.778-.253-.778h-.818l.661-.481-.253-.777.663.48.66-.48-.252.777.662.481Zm.156-6.195.253.778-.661-.48-.663.48.253-.778-.66-.48h.817l.253-.778.252.777h.818Zm1.314-1.76L4.04 9.16l-.778.253.48-.661-.48-.663.778.254.48-.662v.818l.778.253-.777.252Zm2.045-2.862-.253.777-.252-.777h-.818l.662-.48-.253-.778.661.48.661-.48-.252.777.662.48Zm2.577-1.313-.48.661V5.49l-.779-.254.778-.253v-.817l.48.66.78-.253-.481.663.48.66zm3.265-.75.253.778-.661-.48-.662.48.252-.777-.66-.481h.818L12 3.637l.252.778h.818zm2.93.595v.816l-.481-.661-.777.252.48-.662-.48-.662.777.253.48-.66v.817l.779.252zm5.426 8.285.778.253.48-.662v.818l.778.253-.778.253v.818l-.48-.662-.778.253.48-.662zm-3.077-6.04-.253-.777h-.818l.662-.48-.253-.778.662.48.662-.48-.254.778.662.48h-.818zm1.792 2.086v-.818l-.777-.252.777-.253V7.68l.481.662.777-.254-.48.663.48.66-.777-.252zm1.469 1.278.253-.777.254.777h.816l-.66.481.252.778-.662-.48-.661.48.253-.778-.662-.48zm.506 6.676-.253.778-.253-.778h-.817l.662-.481-.253-.777.66.48.663-.48-.253.777.661.481zm-12.08-.615.76-1.588c.024-.048-.032-.108-.067-.067l-.664.668c-.313.329-.847 1.25-.95 1.421l-.808 1.335a.109.109 0 0 1 .1.162l-.739 1.238c-.18.309.145.523.189.452 1.157-1.868 1.832-1.719 1.832-1.719l.387-.897c.022-.047-.001-.1-.05-.12-.12-.05-.316-.27.01-.885z" }) + ] + } + ); +}); + +exports.default = SiParamountplus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.d.ts new file mode 100644 index 000000000..23cec00c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0064FF"; +declare const SiParamountplus: IconType; +export { SiParamountplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.mjs new file mode 100644 index 000000000..9e40aa338 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParamountplus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0064FF"; +const SiParamountplus = React.forwardRef(function SiParamountplus2({ title = "Paramount+", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.347 21.373c.057-.084.151-.314-.025-.74l-.53-1.428c-.073-.182.084-.293.19-.173 0 0 1.004 1.157 1.264 1.64l.495.822c.425.028 1.6.06 2.732.06a3.26 3.26 0 0 1-.316-.364c-1.93-2.392-3.154-3.724-3.166-3.737-.391-.426-.572-.508-.87-.643a4.82 4.82 0 0 1-.138-.065v.364c0 .047-.057.073-.086.022l-2.846-5.001a1.598 1.598 0 0 0-.508-.587l-.277-.194-1.354 3.123c.212 0 .354.216.27.409l-1.25 2.893h1.147c.443 0 .883.087 1.294.255l.302.125s-.913 1.878-.913 2.867c0 .181.028.362.075.534h2.104l-.096-.595s1.266.294 2.502.413M12 2.437c-6.627 0-12 5.373-12 12 0 2.669.873 5.133 2.346 7.126.503-.218.783-.542.983-.791l2.234-2.858a.467.467 0 0 1 .179-.138l.336-.146 3.674-4.659.534-.417 1.094-1.524a.482.482 0 0 1 .101-.102l.478-.347a.34.34 0 0 1 .398-.004l.578.407c.308.216.557.504.726.84l2.322 4.077c.051.09.09.129.182.174.454.227.732.268 1.33.913.277.304 1.495 1.666 3.203 3.784.236.318.538.588.963.783A11.948 11.948 0 0 0 24 14.437c0-6.627-5.373-12-12-12M3.236 15.1l-.778-.253-.48.662v-.818l-.778-.253.778-.253v-.818l.48.662.778-.253-.48.662Zm-.185 2.676-.252.778-.253-.778h-.818l.661-.481-.253-.777.663.48.66-.48-.252.777.662.481Zm.156-6.195.253.778-.661-.48-.663.48.253-.778-.66-.48h.817l.253-.778.252.777h.818Zm1.314-1.76L4.04 9.16l-.778.253.48-.661-.48-.663.778.254.48-.662v.818l.778.253-.777.252Zm2.045-2.862-.253.777-.252-.777h-.818l.662-.48-.253-.778.661.48.661-.48-.252.777.662.48Zm2.577-1.313-.48.661V5.49l-.779-.254.778-.253v-.817l.48.66.78-.253-.481.663.48.66zm3.265-.75.253.778-.661-.48-.662.48.252-.777-.66-.481h.818L12 3.637l.252.778h.818zm2.93.595v.816l-.481-.661-.777.252.48-.662-.48-.662.777.253.48-.66v.817l.779.252zm5.426 8.285.778.253.48-.662v.818l.778.253-.778.253v.818l-.48-.662-.778.253.48-.662zm-3.077-6.04-.253-.777h-.818l.662-.48-.253-.778.662.48.662-.48-.254.778.662.48h-.818zm1.792 2.086v-.818l-.777-.252.777-.253V7.68l.481.662.777-.254-.48.663.48.66-.777-.252zm1.469 1.278.253-.777.254.777h.816l-.66.481.252.778-.662-.48-.661.48.253-.778-.662-.48zm.506 6.676-.253.778-.253-.778h-.817l.662-.481-.253-.777.66.48.663-.48-.253.777.661.481zm-12.08-.615.76-1.588c.024-.048-.032-.108-.067-.067l-.664.668c-.313.329-.847 1.25-.95 1.421l-.808 1.335a.109.109 0 0 1 .1.162l-.739 1.238c-.18.309.145.523.189.452 1.157-1.868 1.832-1.719 1.832-1.719l.387-.897c.022-.047-.001-.1-.05-.12-.12-.05-.316-.27.01-.885z" }) + ] + } + ); +}); + +export { SiParamountplus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.cjs new file mode 100644 index 000000000..791552693 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#282828"; +const SiParitysubstrate = React__namespace.forwardRef(function SiParitysubstrate2({ title = "Parity Substrate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.254 0L1.795 6.038l-.254-.152-.008.008v.652l.576-.33-.254-.144L12.313.034zm1.677.965L3.472 7.004l-.212-.128-1.727 1v.601l2.252-1.296-.211-.118 10.458-6.038zm1.677.966L5.148 7.969l-.169-.102-3.446 1.99v.56l3.93-2.27-.17-.093 10.45-6.039zm1.668.957l-6.512 3.777-.33-.186L8.57 7.554v.381L6.826 8.943l-.127-.076-5.166 2.972v.517l5.606-3.244-.127-.076 1.558-.898v.398l1.152.66L8.51 9.9l-.085-.051-6.885 3.98v.458l7.283-4.2-.084-.052 1.21-.703 1.178.686-2.55 1.465v.271L1.542 15.82v.407L8.58 12.16v.313l1.092.627-8.13 4.7v.178l.161.093 8.282-4.776 1.127.652-2.532 1.448v.33l-5.471 3.16.27.151 5.2-3.006v.381l3.414-1.973 1.024.593-1.008.584v.102l-7.19 4.15.23.126L12 15.98v.102l1.414-.813 1.118.643-1.82 1.059.16.093-.864.5v.144l-5.47 3.159.186.11 5.284-3.049v.144l1.305-.754.254.153 1.82-1.05v-.305l7.08-4.082v-.517l-7.071 4.09v-.186l-1.118-.643 8.19-4.726v-.457l-8.58 4.954-1.024-.593 2.532-1.473v-.34l7.071-4.072v-.407l-7.071 4.082v-.254l-1.143-.66 8.214-4.743-.008-.203-.153-.085-8.375 4.827-1.084-.618 2.54-1.474v-.372l5.505-3.176-.271-.152-5.242 3.023v-.313L11.975 9.51l-1.178-.686 8.376-4.835-.229-.127-8.358 4.835-1.144-.66 1.855-1.076-.347-.203 6.512-3.76zM11.983 10.5l1.084.627-1.211.703-1.33.762-1.084-.618zm1.389.813l1.152.66-2.558 1.466-1.135-.652L12 12.11zm9.087 2.134L12 19.486v.195l-3.743 2.16.135.084L12 19.842v.195l10.459-6.03zm0 1.931L12 21.417v.246L9.968 22.84l.101.05L12 21.782v.237l10.459-6.03zm0 1.94L12 23.347v.296l-.313.187.059.025.254-.144V24l10.459-6.03Z" }) + ] + } + ); +}); + +exports.default = SiParitysubstrate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.d.ts new file mode 100644 index 000000000..88a340723 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#282828"; +declare const SiParitysubstrate: IconType; +export { SiParitysubstrate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.mjs new file mode 100644 index 000000000..c75963ad3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParitysubstrate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#282828"; +const SiParitysubstrate = React.forwardRef(function SiParitysubstrate2({ title = "Parity Substrate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.254 0L1.795 6.038l-.254-.152-.008.008v.652l.576-.33-.254-.144L12.313.034zm1.677.965L3.472 7.004l-.212-.128-1.727 1v.601l2.252-1.296-.211-.118 10.458-6.038zm1.677.966L5.148 7.969l-.169-.102-3.446 1.99v.56l3.93-2.27-.17-.093 10.45-6.039zm1.668.957l-6.512 3.777-.33-.186L8.57 7.554v.381L6.826 8.943l-.127-.076-5.166 2.972v.517l5.606-3.244-.127-.076 1.558-.898v.398l1.152.66L8.51 9.9l-.085-.051-6.885 3.98v.458l7.283-4.2-.084-.052 1.21-.703 1.178.686-2.55 1.465v.271L1.542 15.82v.407L8.58 12.16v.313l1.092.627-8.13 4.7v.178l.161.093 8.282-4.776 1.127.652-2.532 1.448v.33l-5.471 3.16.27.151 5.2-3.006v.381l3.414-1.973 1.024.593-1.008.584v.102l-7.19 4.15.23.126L12 15.98v.102l1.414-.813 1.118.643-1.82 1.059.16.093-.864.5v.144l-5.47 3.159.186.11 5.284-3.049v.144l1.305-.754.254.153 1.82-1.05v-.305l7.08-4.082v-.517l-7.071 4.09v-.186l-1.118-.643 8.19-4.726v-.457l-8.58 4.954-1.024-.593 2.532-1.473v-.34l7.071-4.072v-.407l-7.071 4.082v-.254l-1.143-.66 8.214-4.743-.008-.203-.153-.085-8.375 4.827-1.084-.618 2.54-1.474v-.372l5.505-3.176-.271-.152-5.242 3.023v-.313L11.975 9.51l-1.178-.686 8.376-4.835-.229-.127-8.358 4.835-1.144-.66 1.855-1.076-.347-.203 6.512-3.76zM11.983 10.5l1.084.627-1.211.703-1.33.762-1.084-.618zm1.389.813l1.152.66-2.558 1.466-1.135-.652L12 12.11zm9.087 2.134L12 19.486v.195l-3.743 2.16.135.084L12 19.842v.195l10.459-6.03zm0 1.931L12 21.417v.246L9.968 22.84l.101.05L12 21.782v.237l10.459-6.03zm0 1.94L12 23.347v.296l-.313.187.059.025.254-.144V24l10.459-6.03Z" }) + ] + } + ); +}); + +export { SiParitysubstrate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.cjs new file mode 100644 index 000000000..5f60028e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#15E0ED"; +const SiParrotsecurity = React__namespace.forwardRef(function SiParrotsecurity2({ title = "Parrot Security", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm6.267 2.784L13.03 5.54l8.05-.179-8.05 3.333-2.154 2.688 5.007 9.038-1.536-1.605 1.645 3.456-4.937-5.527-6.268-6.28L2.77 12.11l.7-3.442 4.018-.261.823-4.06Z" }) + ] + } + ); +}); + +exports.default = SiParrotsecurity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.d.ts new file mode 100644 index 000000000..b2de632de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#15E0ED"; +declare const SiParrotsecurity: IconType; +export { SiParrotsecurity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.mjs new file mode 100644 index 000000000..b0a0d25c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParrotsecurity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#15E0ED"; +const SiParrotsecurity = React.forwardRef(function SiParrotsecurity2({ title = "Parrot Security", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm6.267 2.784L13.03 5.54l8.05-.179-8.05 3.333-2.154 2.688 5.007 9.038-1.536-1.605 1.645 3.456-4.937-5.527-6.268-6.28L2.77 12.11l.7-3.442 4.018-.261.823-4.06Z" }) + ] + } + ); +}); + +export { SiParrotsecurity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.cjs new file mode 100644 index 000000000..fe7603b5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5BA745"; +const SiParsedotly = React__namespace.forwardRef(function SiParsedotly2({ title = "Parse.ly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.01 0a.459.459 0 0 0-.29.1s-.724.561-1.193.967c-.47.406-.922.886-.922.886a.926.926 0 0 0-.271.615l.108 3.344c0 .2-.157.205-.226 0l-.868-2.106c-.06-.187-.21-.214-.334-.054a12.945 12.945 0 0 0-1.121 1.573 12.61 12.61 0 0 0-.777 1.717.76.76 0 0 0 .1.624l1.762 2.341c.124.16.093.363-.082.253l-1.844-.994c-.17-.11-.312-.033-.307.163a6.85 6.85 0 0 0 .307 1.898 7.581 7.581 0 0 0 2.034 2.91 14.342 14.342 0 0 1 2.83 4.159 3.544 3.544 0 0 1 2.16 0 14.478 14.478 0 0 1 2.811-4.15 7.69 7.69 0 0 0 1.926-2.63c.252-.7.39-1.435.415-2.178v-.01c0-.195-.132-.271-.307-.162l-1.835.994c-.17.11-.215-.093-.09-.253l1.762-2.332a.714.714 0 0 0 .127-.298.762.762 0 0 0-.018-.335c-.23-.626-.504-1.23-.823-1.817a13.322 13.322 0 0 0-1.075-1.482c-.125-.155-.27-.124-.335.063l-.859 2.124c-.064.187-.23.183-.226 0l.1-3.335a.944.944 0 0 0-.253-.642s-.513-.512-.922-.886A25.168 25.168 0 0 0 12.299.1a.459.459 0 0 0-.29-.1zM4.108 14.77c-.129 0-.173.081-.1.182l.778 1.41c.073.105.002.2-.109.117L2.98 15.114a1.399 1.399 0 0 0-.524-.208 1.385 1.385 0 0 0-.56.028c-.378.059-.923.171-.923.171a.235.235 0 0 0-.144.09.258.258 0 0 0-.055.172s.045.549.09.913a1.338 1.338 0 0 0 .462.977l1.771 1.256c.11.073.03.181-.09.136l-1.582-.353c-.12-.045-.181-.001-.144.136 0 0 .258.714.488 1.184.195.368.413.721.66 1.058a.523.523 0 0 0 .162.126.535.535 0 0 0 .2.063l1.906.046c.125 0 .152.144.037.18l-1.22.452c-.12.037-.13.13-.028.208.357.253.75.465 1.157.624.72.231 1.484.289 2.233.18a8.986 8.986 0 0 0 1.636-.379 3.669 3.669 0 0 1-.036-.46 3.51 3.51 0 0 1 .307-1.42c.2-.446.494-.838.859-1.166h-.018a.558.558 0 0 0-.027-.19 4.887 4.887 0 0 0-.796-2.07 5.275 5.275 0 0 0-.913-.913c-.1-.077-.194-.042-.199.081l-.09 1.284c0 .123-.144.128-.18 0l-.57-1.799a.5.5 0 0 0-.29-.29 9.056 9.056 0 0 0-1.166-.315c-.524-.092-1.283-.145-1.283-.145zm15.783.028s-.76.044-1.284.136a9.184 9.184 0 0 0-1.175.316.523.523 0 0 0-.172.117.521.521 0 0 0-.117.172l-.57 1.8c-.037.118-.176.113-.18 0l-.091-1.285c0-.123-.089-.158-.19-.08a5.34 5.34 0 0 0-.922.912 4.829 4.829 0 0 0-.795 2.052v.19a3.469 3.469 0 0 1 1.157 2.594 3.585 3.585 0 0 1-.027.452 9.08 9.08 0 0 0 1.636.389 4.983 4.983 0 0 0 2.233-.19c.407-.16.791-.362 1.148-.615.1-.077.092-.171-.028-.208l-1.22-.452c-.115-.036-.079-.176.045-.18l1.899-.046a.549.549 0 0 0 .37-.198c.227-.328.425-.667.606-1.022.235-.456.497-1.184.497-1.184.037-.119-.034-.181-.154-.136l-1.573.353c-.124.046-.196-.063-.09-.136l1.78-1.256a1.338 1.338 0 0 0 .461-.976c.047-.379.091-.913.091-.913l-.009-.018a.258.258 0 0 0-.054-.163.248.248 0 0 0-.145-.1s-.544-.108-.922-.162a1.4 1.4 0 0 0-.56-.027c-.186.03-.366.097-.524.198l-1.7 1.374c-.101.082-.182-.003-.108-.126l.777-1.41c.078-.1.039-.177-.09-.172zm-7.883 4.646c-.455 0-.905.13-1.283.38a2.28 2.28 0 0 0-.85 1.021 2.268 2.268 0 0 0 .506 2.486 2.319 2.319 0 0 0 2.504.497 2.294 2.294 0 0 0 1.42-2.106c0-.604-.238-1.19-.67-1.618a2.305 2.305 0 0 0-1.627-.66z" }) + ] + } + ); +}); + +exports.default = SiParsedotly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.d.ts new file mode 100644 index 000000000..ff184b867 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5BA745"; +declare const SiParsedotly: IconType; +export { SiParsedotly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.mjs new file mode 100644 index 000000000..c0f369f2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiParsedotly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5BA745"; +const SiParsedotly = React.forwardRef(function SiParsedotly2({ title = "Parse.ly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.01 0a.459.459 0 0 0-.29.1s-.724.561-1.193.967c-.47.406-.922.886-.922.886a.926.926 0 0 0-.271.615l.108 3.344c0 .2-.157.205-.226 0l-.868-2.106c-.06-.187-.21-.214-.334-.054a12.945 12.945 0 0 0-1.121 1.573 12.61 12.61 0 0 0-.777 1.717.76.76 0 0 0 .1.624l1.762 2.341c.124.16.093.363-.082.253l-1.844-.994c-.17-.11-.312-.033-.307.163a6.85 6.85 0 0 0 .307 1.898 7.581 7.581 0 0 0 2.034 2.91 14.342 14.342 0 0 1 2.83 4.159 3.544 3.544 0 0 1 2.16 0 14.478 14.478 0 0 1 2.811-4.15 7.69 7.69 0 0 0 1.926-2.63c.252-.7.39-1.435.415-2.178v-.01c0-.195-.132-.271-.307-.162l-1.835.994c-.17.11-.215-.093-.09-.253l1.762-2.332a.714.714 0 0 0 .127-.298.762.762 0 0 0-.018-.335c-.23-.626-.504-1.23-.823-1.817a13.322 13.322 0 0 0-1.075-1.482c-.125-.155-.27-.124-.335.063l-.859 2.124c-.064.187-.23.183-.226 0l.1-3.335a.944.944 0 0 0-.253-.642s-.513-.512-.922-.886A25.168 25.168 0 0 0 12.299.1a.459.459 0 0 0-.29-.1zM4.108 14.77c-.129 0-.173.081-.1.182l.778 1.41c.073.105.002.2-.109.117L2.98 15.114a1.399 1.399 0 0 0-.524-.208 1.385 1.385 0 0 0-.56.028c-.378.059-.923.171-.923.171a.235.235 0 0 0-.144.09.258.258 0 0 0-.055.172s.045.549.09.913a1.338 1.338 0 0 0 .462.977l1.771 1.256c.11.073.03.181-.09.136l-1.582-.353c-.12-.045-.181-.001-.144.136 0 0 .258.714.488 1.184.195.368.413.721.66 1.058a.523.523 0 0 0 .162.126.535.535 0 0 0 .2.063l1.906.046c.125 0 .152.144.037.18l-1.22.452c-.12.037-.13.13-.028.208.357.253.75.465 1.157.624.72.231 1.484.289 2.233.18a8.986 8.986 0 0 0 1.636-.379 3.669 3.669 0 0 1-.036-.46 3.51 3.51 0 0 1 .307-1.42c.2-.446.494-.838.859-1.166h-.018a.558.558 0 0 0-.027-.19 4.887 4.887 0 0 0-.796-2.07 5.275 5.275 0 0 0-.913-.913c-.1-.077-.194-.042-.199.081l-.09 1.284c0 .123-.144.128-.18 0l-.57-1.799a.5.5 0 0 0-.29-.29 9.056 9.056 0 0 0-1.166-.315c-.524-.092-1.283-.145-1.283-.145zm15.783.028s-.76.044-1.284.136a9.184 9.184 0 0 0-1.175.316.523.523 0 0 0-.172.117.521.521 0 0 0-.117.172l-.57 1.8c-.037.118-.176.113-.18 0l-.091-1.285c0-.123-.089-.158-.19-.08a5.34 5.34 0 0 0-.922.912 4.829 4.829 0 0 0-.795 2.052v.19a3.469 3.469 0 0 1 1.157 2.594 3.585 3.585 0 0 1-.027.452 9.08 9.08 0 0 0 1.636.389 4.983 4.983 0 0 0 2.233-.19c.407-.16.791-.362 1.148-.615.1-.077.092-.171-.028-.208l-1.22-.452c-.115-.036-.079-.176.045-.18l1.899-.046a.549.549 0 0 0 .37-.198c.227-.328.425-.667.606-1.022.235-.456.497-1.184.497-1.184.037-.119-.034-.181-.154-.136l-1.573.353c-.124.046-.196-.063-.09-.136l1.78-1.256a1.338 1.338 0 0 0 .461-.976c.047-.379.091-.913.091-.913l-.009-.018a.258.258 0 0 0-.054-.163.248.248 0 0 0-.145-.1s-.544-.108-.922-.162a1.4 1.4 0 0 0-.56-.027c-.186.03-.366.097-.524.198l-1.7 1.374c-.101.082-.182-.003-.108-.126l.777-1.41c.078-.1.039-.177-.09-.172zm-7.883 4.646c-.455 0-.905.13-1.283.38a2.28 2.28 0 0 0-.85 1.021 2.268 2.268 0 0 0 .506 2.486 2.319 2.319 0 0 0 2.504.497 2.294 2.294 0 0 0 1.42-2.106c0-.604-.238-1.19-.67-1.618a2.305 2.305 0 0 0-1.627-.66z" }) + ] + } + ); +}); + +export { SiParsedotly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.cjs new file mode 100644 index 000000000..eabba5ae2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D40101"; +const SiPassbolt = React__namespace.forwardRef(function SiPassbolt2({ title = "Passbolt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.393 9.736a2.691 2.691 0 0 1 1.145-.274h.001c1.391 0 2.538 1.153 2.483 2.525a2.51 2.51 0 0 1-2.51 2.524c-.438 0-.847-.11-1.202-.302A2.519 2.519 0 0 1 0 11.987c0-.988.572-1.84 1.393-2.25zm12.14-8.562 9.77 9.193h.001c.928.907.928 2.387 0 3.266l-9.74 9.193c-.875.795-2.211.795-3.058 0l-6.167-5.79c1.638-.577 2.894-1.949 3.358-3.65h3.682v1.782c0 .411.326.768.764.768h2.1c.41 0 .764-.329.764-.768v-1.783h.955c.41 0 .764-.328.764-.768v-1.263a.764.764 0 0 0-.764-.767H7.667a5.444 5.444 0 0 0-3.33-3.623l6.14-5.79c.874-.795 2.21-.795 3.057 0z" }) + ] + } + ); +}); + +exports.default = SiPassbolt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.d.ts new file mode 100644 index 000000000..26e0d541c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D40101"; +declare const SiPassbolt: IconType; +export { SiPassbolt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.mjs new file mode 100644 index 000000000..2c881f8a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPassbolt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D40101"; +const SiPassbolt = React.forwardRef(function SiPassbolt2({ title = "Passbolt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.393 9.736a2.691 2.691 0 0 1 1.145-.274h.001c1.391 0 2.538 1.153 2.483 2.525a2.51 2.51 0 0 1-2.51 2.524c-.438 0-.847-.11-1.202-.302A2.519 2.519 0 0 1 0 11.987c0-.988.572-1.84 1.393-2.25zm12.14-8.562 9.77 9.193h.001c.928.907.928 2.387 0 3.266l-9.74 9.193c-.875.795-2.211.795-3.058 0l-6.167-5.79c1.638-.577 2.894-1.949 3.358-3.65h3.682v1.782c0 .411.326.768.764.768h2.1c.41 0 .764-.329.764-.768v-1.783h.955c.41 0 .764-.328.764-.768v-1.263a.764.764 0 0 0-.764-.767H7.667a5.444 5.444 0 0 0-3.33-3.623l6.14-5.79c.874-.795 2.21-.795 3.057 0z" }) + ] + } + ); +}); + +export { SiPassbolt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.cjs new file mode 100644 index 000000000..e58f7cf37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34E27A"; +const SiPassport = React__namespace.forwardRef(function SiPassport2({ title = "Passport", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.875 0A9.6 9.6 0 0 0 2.4 9.475h4.8A4.81 4.81 0 0 1 11.875 4.8zm.25 0v4.8A4.81 4.81 0 0 1 16.8 9.475h4.8A9.6 9.6 0 0 0 12.125 0zM2.4 9.725V24H12v-4.8H7.2V9.724zm9.6 9.474a9.599 9.599 0 0 0 9.6-9.474h-4.8A4.807 4.807 0 0 1 12 14.4z" }) + ] + } + ); +}); + +exports.default = SiPassport; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.d.ts new file mode 100644 index 000000000..712199213 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34E27A"; +declare const SiPassport: IconType; +export { SiPassport as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.mjs new file mode 100644 index 000000000..66b6deffb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPassport.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34E27A"; +const SiPassport = React.forwardRef(function SiPassport2({ title = "Passport", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.875 0A9.6 9.6 0 0 0 2.4 9.475h4.8A4.81 4.81 0 0 1 11.875 4.8zm.25 0v4.8A4.81 4.81 0 0 1 16.8 9.475h4.8A9.6 9.6 0 0 0 12.125 0zM2.4 9.725V24H12v-4.8H7.2V9.724zm9.6 9.474a9.599 9.599 0 0 0 9.6-9.474h-4.8A4.807 4.807 0 0 1 12 14.4z" }) + ] + } + ); +}); + +export { SiPassport as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.cjs new file mode 100644 index 000000000..0c5d4b408 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02456C"; +const SiPastebin = React__namespace.forwardRef(function SiPastebin2({ title = "Pastebin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.02 0a2.096 2.096 0 00-.722.123L2.624 5.003A2.1 2.1 0 001.35 7.69l5.324 14.915a2.101 2.101 0 002.685 1.272l7.746-2.765c.792-.307 1.345-.534 1.464-.608.543-.314.962-.817 1.964-2.334.904-1.362 1.859-3.323 2.097-4.28.24-.97.239-1.48-.502-3.674l-3.146-8.82A2.102 2.102 0 0017.02 0zm-.083.414c.72-.031 1.4.403 1.657 1.12l3.68 10.357c.103.433-.281 1.147-.736 1.35-.2.1-.71.293-1.142.429-1.397.463-2.05.878-2.458 1.547-.363.591-.315 1.18.16 2.377.462 1.142.533 1.864.225 2.4-.113.188-.301.322-1.354.733l-.002-.005-7.746 2.765a1.68 1.68 0 01-2.157-1.022L1.74 7.55a1.68 1.68 0 011.022-2.157L16.437.513c.165-.06.334-.092.5-.099zM15.9 2.25l-1.203.885.187.519.523-.316.803 2.235-.696.249c.045.145.216.642.238.664l2.166-.78-.238-.662-.687.248zm-3.29 1.182l-1.203.885.186.519.524-.316.803 2.235-.697.25c.046.144.216.64.238.663l2.167-.778-.238-.663-.687.247zM9.085 4.786c-.283 0-.56.076-.8.223-.732.448-.85 1.383-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.4 1.085-2.95-.307-.66-.837-1.036-1.415-1.046zm-.191.672c.168-.01.357.085.539.279.145.155.347.51.437.787.35.998.164 1.688-.414 1.546C8.855 7.93 8.21 6 8.62 5.585a.407.407 0 01.273-.127zm-3.765.75c-.283 0-.56.076-.8.223-.732.448-.85 1.382-.332 2.557.337.777.873 1.218 1.462 1.215 1.344-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.415-1.045zm-.192.672c.168-.01.358.085.54.278.145.155.347.51.437.787.35.999.164 1.689-.415 1.547-.6-.141-1.243-2.072-.834-2.485a.407.407 0 01.272-.127zm13.362.655c-.283 0-.56.076-.8.223-.732.448-.85 1.382-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.4 1.085-2.95-.307-.66-.837-1.036-1.415-1.046zm-.191.672c.168-.01.357.085.539.278.145.155.347.51.437.787.35.999.164 1.689-.414 1.547-.601-.141-1.244-2.072-.835-2.485a.407.407 0 01.273-.127zm-3.766.75a1.532 1.532 0 00-.8.222c-.73.448-.848 1.383-.331 2.558.337.776.873 1.218 1.462 1.215 1.344-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.416-1.045zm-.19.67c.167-.008.357.086.539.28.145.155.347.51.437.787.35.998.164 1.688-.415 1.547-.6-.142-1.244-2.072-.835-2.485a.408.408 0 01.273-.128zm-3.746.744c-.283-.001-.56.076-.8.223-.732.448-.85 1.382-.332 2.557.337.777.873 1.218 1.462 1.215 1.345-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.415-1.045zm-.192.672c.169-.01.358.085.54.278.145.155.347.51.437.787.35.999.164 1.689-.414 1.547-.601-.141-1.244-2.072-.835-2.485a.407.407 0 01.272-.127zm-3.515.616l-1.203.884.187.52.524-.316.802 2.233-.696.25c.045.145.216.641.238.663l2.166-.778-.238-.663-.687.247zm15.664 1.33c.034 0 .049.047.064.135.023.11-.064.545-.195.957-.47 1.435-2.052 4.223-3.08 5.396l-.407.47.05-.667c.03-.567-.015-.812-.376-1.71-.496-1.263-.533-1.73-.158-2.31.34-.514 1.028-.907 2.448-1.37.72-.238 1.175-.463 1.385-.664.132-.145.207-.22.253-.235a.048.048 0 01.015-.003zm-6.43 1.476l-1.202.885.187.52.523-.317.803 2.235-.696.25c.045.144.216.641.238.663l2.166-.779-.238-.662-.687.247-1.093-3.042zm-3.578 1.33c-.283 0-.56.077-.8.223-.731.448-.85 1.382-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.399 1.086-2.95-.307-.66-.838-1.036-1.416-1.046zm-.191.672c.168-.009.358.085.54.28.144.153.346.51.437.786.35.998.164 1.688-.415 1.546-.6-.14-1.244-2.072-.835-2.485a.407.407 0 01.273-.127zm-3.515.616l-1.204.885.187.52.524-.317.803 2.234-.697.25c.045.145.216.642.238.664l2.166-.779-.238-.663-.687.248-1.092-3.042z" }) + ] + } + ); +}); + +exports.default = SiPastebin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.d.ts new file mode 100644 index 000000000..5993ea46f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02456C"; +declare const SiPastebin: IconType; +export { SiPastebin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.mjs new file mode 100644 index 000000000..d75f85f91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPastebin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02456C"; +const SiPastebin = React.forwardRef(function SiPastebin2({ title = "Pastebin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.02 0a2.096 2.096 0 00-.722.123L2.624 5.003A2.1 2.1 0 001.35 7.69l5.324 14.915a2.101 2.101 0 002.685 1.272l7.746-2.765c.792-.307 1.345-.534 1.464-.608.543-.314.962-.817 1.964-2.334.904-1.362 1.859-3.323 2.097-4.28.24-.97.239-1.48-.502-3.674l-3.146-8.82A2.102 2.102 0 0017.02 0zm-.083.414c.72-.031 1.4.403 1.657 1.12l3.68 10.357c.103.433-.281 1.147-.736 1.35-.2.1-.71.293-1.142.429-1.397.463-2.05.878-2.458 1.547-.363.591-.315 1.18.16 2.377.462 1.142.533 1.864.225 2.4-.113.188-.301.322-1.354.733l-.002-.005-7.746 2.765a1.68 1.68 0 01-2.157-1.022L1.74 7.55a1.68 1.68 0 011.022-2.157L16.437.513c.165-.06.334-.092.5-.099zM15.9 2.25l-1.203.885.187.519.523-.316.803 2.235-.696.249c.045.145.216.642.238.664l2.166-.78-.238-.662-.687.248zm-3.29 1.182l-1.203.885.186.519.524-.316.803 2.235-.697.25c.046.144.216.64.238.663l2.167-.778-.238-.663-.687.247zM9.085 4.786c-.283 0-.56.076-.8.223-.732.448-.85 1.383-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.4 1.085-2.95-.307-.66-.837-1.036-1.415-1.046zm-.191.672c.168-.01.357.085.539.279.145.155.347.51.437.787.35.998.164 1.688-.414 1.546C8.855 7.93 8.21 6 8.62 5.585a.407.407 0 01.273-.127zm-3.765.75c-.283 0-.56.076-.8.223-.732.448-.85 1.382-.332 2.557.337.777.873 1.218 1.462 1.215 1.344-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.415-1.045zm-.192.672c.168-.01.358.085.54.278.145.155.347.51.437.787.35.999.164 1.689-.415 1.547-.6-.141-1.243-2.072-.834-2.485a.407.407 0 01.272-.127zm13.362.655c-.283 0-.56.076-.8.223-.732.448-.85 1.382-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.4 1.085-2.95-.307-.66-.837-1.036-1.415-1.046zm-.191.672c.168-.01.357.085.539.278.145.155.347.51.437.787.35.999.164 1.689-.414 1.547-.601-.141-1.244-2.072-.835-2.485a.407.407 0 01.273-.127zm-3.766.75a1.532 1.532 0 00-.8.222c-.73.448-.848 1.383-.331 2.558.337.776.873 1.218 1.462 1.215 1.344-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.416-1.045zm-.19.67c.167-.008.357.086.539.28.145.155.347.51.437.787.35.998.164 1.688-.415 1.547-.6-.142-1.244-2.072-.835-2.485a.408.408 0 01.273-.128zm-3.746.744c-.283-.001-.56.076-.8.223-.732.448-.85 1.382-.332 2.557.337.777.873 1.218 1.462 1.215 1.345-.007 1.86-1.398 1.085-2.95-.307-.66-.838-1.036-1.415-1.045zm-.192.672c.169-.01.358.085.54.278.145.155.347.51.437.787.35.999.164 1.689-.414 1.547-.601-.141-1.244-2.072-.835-2.485a.407.407 0 01.272-.127zm-3.515.616l-1.203.884.187.52.524-.316.802 2.233-.696.25c.045.145.216.641.238.663l2.166-.778-.238-.663-.687.247zm15.664 1.33c.034 0 .049.047.064.135.023.11-.064.545-.195.957-.47 1.435-2.052 4.223-3.08 5.396l-.407.47.05-.667c.03-.567-.015-.812-.376-1.71-.496-1.263-.533-1.73-.158-2.31.34-.514 1.028-.907 2.448-1.37.72-.238 1.175-.463 1.385-.664.132-.145.207-.22.253-.235a.048.048 0 01.015-.003zm-6.43 1.476l-1.202.885.187.52.523-.317.803 2.235-.696.25c.045.144.216.641.238.663l2.166-.779-.238-.662-.687.247-1.093-3.042zm-3.578 1.33c-.283 0-.56.077-.8.223-.731.448-.85 1.382-.332 2.558.337.776.873 1.218 1.462 1.215 1.345-.007 1.86-1.399 1.086-2.95-.307-.66-.838-1.036-1.416-1.046zm-.191.672c.168-.009.358.085.54.28.144.153.346.51.437.786.35.998.164 1.688-.415 1.546-.6-.14-1.244-2.072-.835-2.485a.407.407 0 01.273-.127zm-3.515.616l-1.204.885.187.52.524-.317.803 2.234-.697.25c.045.145.216.642.238.664l2.166-.779-.238-.663-.687.248-1.092-3.042z" }) + ] + } + ); +}); + +export { SiPastebin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.cjs new file mode 100644 index 000000000..5ecd55625 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPatreon = React__namespace.forwardRef(function SiPatreon2({ title = "Patreon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.957 7.21c-.004-3.064-2.391-5.576-5.191-6.482-3.478-1.125-8.064-.962-11.384.604C2.357 3.231 1.093 7.391 1.046 11.54c-.039 3.411.302 12.396 5.369 12.46 3.765.047 4.326-4.804 6.068-7.141 1.24-1.662 2.836-2.132 4.801-2.618 3.376-.836 5.678-3.501 5.673-7.031Z" }) + ] + } + ); +}); + +exports.default = SiPatreon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.d.ts new file mode 100644 index 000000000..8422aa7f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPatreon: IconType; +export { SiPatreon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.mjs new file mode 100644 index 000000000..202f1cca1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPatreon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPatreon = React.forwardRef(function SiPatreon2({ title = "Patreon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.957 7.21c-.004-3.064-2.391-5.576-5.191-6.482-3.478-1.125-8.064-.962-11.384.604C2.357 3.231 1.093 7.391 1.046 11.54c-.039 3.411.302 12.396 5.369 12.46 3.765.047 4.326-4.804 6.068-7.141 1.24-1.662 2.836-2.132 4.801-2.618 3.376-.836 5.678-3.501 5.673-7.031Z" }) + ] + } + ); +}); + +export { SiPatreon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.cjs new file mode 100644 index 000000000..72d163107 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003EB0"; +const SiPayback = React__namespace.forwardRef(function SiPayback2({ title = "PAYBACK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.1796 11.4765c-2.0161 0-3.6576-1.6401-3.6576-3.6548 0-2.0148 1.6401-3.6562 3.6576-3.6562s3.6548 1.64 3.6548 3.6562c0 2.016-1.64 3.6548-3.6548 3.6548zm-.0014 8.3595c-2.0161 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6562 1.6401 3.6562 3.6562 0 2.0161-1.6401 3.6562-3.6562 3.6562zm0-6.5877c-1.6168 0-2.9315 1.3148-2.9315 2.9315 0 1.6168 1.3147 2.9315 2.9315 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM7.8187 19.836c-2.0162 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.6401 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6168 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zm0-1.7718c-2.0162 0-3.6562-1.6401-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.64 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6167 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3148 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM3.0014 0C1.3462 0 0 1.3465 0 3.0003V21c0 1.6537 1.3462 3 3.0014 3h17.994c1.6551 0 3.003-1.3463 3.003-3V3.0002C23.9984 1.3465 22.6519 0 20.9954 0Z" }) + ] + } + ); +}); + +exports.default = SiPayback; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.d.ts new file mode 100644 index 000000000..b2f836e02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003EB0"; +declare const SiPayback: IconType; +export { SiPayback as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.mjs new file mode 100644 index 000000000..6fdb76eed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayback.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003EB0"; +const SiPayback = React.forwardRef(function SiPayback2({ title = "PAYBACK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.1796 11.4765c-2.0161 0-3.6576-1.6401-3.6576-3.6548 0-2.0148 1.6401-3.6562 3.6576-3.6562s3.6548 1.64 3.6548 3.6562c0 2.016-1.64 3.6548-3.6548 3.6548zm-.0014 8.3595c-2.0161 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6562 1.6401 3.6562 3.6562 0 2.0161-1.6401 3.6562-3.6562 3.6562zm0-6.5877c-1.6168 0-2.9315 1.3148-2.9315 2.9315 0 1.6168 1.3147 2.9315 2.9315 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM7.8187 19.836c-2.0162 0-3.6562-1.64-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.6401 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6168 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3147 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zm0-1.7718c-2.0162 0-3.6562-1.6401-3.6562-3.6562 0-2.0161 1.64-3.6562 3.6562-3.6562 2.016 0 3.6561 1.64 3.6561 3.6562 0 2.0161-1.64 3.6562-3.6561 3.6562zm0-6.5877c-1.6168 0-2.9316 1.3148-2.9316 2.9315 0 1.6167 1.3148 2.9315 2.9316 2.9315 1.6167 0 2.9315-1.3148 2.9315-2.9315 0-1.6167-1.3148-2.9315-2.9315-2.9315zM3.0014 0C1.3462 0 0 1.3465 0 3.0003V21c0 1.6537 1.3462 3 3.0014 3h17.994c1.6551 0 3.003-1.3463 3.003-3V3.0002C23.9984 1.3465 22.6519 0 20.9954 0Z" }) + ] + } + ); +}); + +export { SiPayback as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.cjs new file mode 100644 index 000000000..b357b797d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004B8D"; +const SiPaychex = React__namespace.forwardRef(function SiPaychex2({ title = "Paychex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.118 11.891-.868-1.766h1.263l.365.977.75-.977H24l-1.57 1.766.919 1.994h-1.303l-.414-1.046-.879 1.046h-1.42Zm-3.907-1.766h3.108l-.197.967h-1.954l-.099.464h1.816l-.188.898h-1.815l-.1.464h1.994l-.197.967h-3.158Zm-3.691 0h1.164l-.276 1.303h1.056l.276-1.303h1.165l-.79 3.76h-1.154l.305-1.49h-1.055l-.316 1.49H12.74zm-.671 2.329c-.07.385-.365 1.52-1.935 1.52-1.095 0-1.618-.71-1.618-1.717 0-1.214.76-2.23 2.043-2.23.839 0 1.589.364 1.608 1.49h-1.095c.01-.356-.158-.553-.513-.553-.642 0-.878.74-.878 1.273 0 .316.078.79.611.79.365 0 .573-.247.642-.583zm-5.754.05-.809-2.379h1.165l.355 1.401.918-1.401h1.362L8.25 12.493l-.286 1.392H6.809Zm-1.894-1.086.138 1.125h-.72Zm-2.477 2.467h1.184l.286-.533h1.224l.059.533h1.135l-.573-3.76H4.895Zm-.987-2.793h.395c.246 0 .503.05.503.336 0 .246-.158.424-.622.424H1.58ZM0 13.885h1.145l.237-1.135h.78c.986 0 1.627-.651 1.627-1.411 0-.83-.444-1.214-1.134-1.214H.789Z" }) + ] + } + ); +}); + +exports.default = SiPaychex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.d.ts new file mode 100644 index 000000000..ec70d9ca3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004B8D"; +declare const SiPaychex: IconType; +export { SiPaychex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.mjs new file mode 100644 index 000000000..ab69eed51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaychex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004B8D"; +const SiPaychex = React.forwardRef(function SiPaychex2({ title = "Paychex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.118 11.891-.868-1.766h1.263l.365.977.75-.977H24l-1.57 1.766.919 1.994h-1.303l-.414-1.046-.879 1.046h-1.42Zm-3.907-1.766h3.108l-.197.967h-1.954l-.099.464h1.816l-.188.898h-1.815l-.1.464h1.994l-.197.967h-3.158Zm-3.691 0h1.164l-.276 1.303h1.056l.276-1.303h1.165l-.79 3.76h-1.154l.305-1.49h-1.055l-.316 1.49H12.74zm-.671 2.329c-.07.385-.365 1.52-1.935 1.52-1.095 0-1.618-.71-1.618-1.717 0-1.214.76-2.23 2.043-2.23.839 0 1.589.364 1.608 1.49h-1.095c.01-.356-.158-.553-.513-.553-.642 0-.878.74-.878 1.273 0 .316.078.79.611.79.365 0 .573-.247.642-.583zm-5.754.05-.809-2.379h1.165l.355 1.401.918-1.401h1.362L8.25 12.493l-.286 1.392H6.809Zm-1.894-1.086.138 1.125h-.72Zm-2.477 2.467h1.184l.286-.533h1.224l.059.533h1.135l-.573-3.76H4.895Zm-.987-2.793h.395c.246 0 .503.05.503.336 0 .246-.158.424-.622.424H1.58ZM0 13.885h1.145l.237-1.135h.78c.986 0 1.627-.651 1.627-1.411 0-.83-.444-1.214-1.134-1.214H.789Z" }) + ] + } + ); +}); + +export { SiPaychex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.cjs new file mode 100644 index 000000000..9d1d49547 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C6AC4"; +const SiPayhip = React__namespace.forwardRef(function SiPayhip2({ title = "Payhip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.695 0A3.696 3.696 0 0 0 0 3.695v12.92A7.384 7.384 0 0 0 7.385 24h12.92A3.696 3.696 0 0 0 24 20.305V0H3.695zm11.653 5.604a3.88 3.88 0 0 1 .166 0 3.88 3.88 0 0 1 2.677 1.132 3.88 3.88 0 0 1 0 5.48l-.36.356c-1.826-1.825-3.648-3.656-5.476-5.482l.358-.354a3.88 3.88 0 0 1 2.635-1.132zm-6.627.125a3.88 3.88 0 0 1 2.566 1c2.068 2.062 4.127 4.133 6.192 6.199l-5.481 5.482-6.19-6.203C3.549 9.7 5.346 5.702 8.722 5.729zm-1.744 1.71a.464.464 0 0 0-.465.465v1.817c0 .256.208.463.465.463h1.816a.464.464 0 0 0 .463-.463l.008-1.817A.464.464 0 0 0 8.8 7.44H6.977z" }) + ] + } + ); +}); + +exports.default = SiPayhip; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.d.ts new file mode 100644 index 000000000..663fd84bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C6AC4"; +declare const SiPayhip: IconType; +export { SiPayhip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.mjs new file mode 100644 index 000000000..d24f1b579 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayhip.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C6AC4"; +const SiPayhip = React.forwardRef(function SiPayhip2({ title = "Payhip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.695 0A3.696 3.696 0 0 0 0 3.695v12.92A7.384 7.384 0 0 0 7.385 24h12.92A3.696 3.696 0 0 0 24 20.305V0H3.695zm11.653 5.604a3.88 3.88 0 0 1 .166 0 3.88 3.88 0 0 1 2.677 1.132 3.88 3.88 0 0 1 0 5.48l-.36.356c-1.826-1.825-3.648-3.656-5.476-5.482l.358-.354a3.88 3.88 0 0 1 2.635-1.132zm-6.627.125a3.88 3.88 0 0 1 2.566 1c2.068 2.062 4.127 4.133 6.192 6.199l-5.481 5.482-6.19-6.203C3.549 9.7 5.346 5.702 8.722 5.729zm-1.744 1.71a.464.464 0 0 0-.465.465v1.817c0 .256.208.463.465.463h1.816a.464.464 0 0 0 .463-.463l.008-1.817A.464.464 0 0 0 8.8 7.44H6.977z" }) + ] + } + ); +}); + +export { SiPayhip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.cjs new file mode 100644 index 000000000..a8a73cd71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPayloadcms = React__namespace.forwardRef(function SiPayloadcms2({ title = "Payload CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.068 0 22.08 6.625v12.573L13.787 24V11.427L2.769 4.808 11.068 0ZM1.92 18.302l8.31-4.812v9.812l-8.31-5Z" }) + ] + } + ); +}); + +exports.default = SiPayloadcms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.d.ts new file mode 100644 index 000000000..3a12397e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPayloadcms: IconType; +export { SiPayloadcms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.mjs new file mode 100644 index 000000000..c34bcf671 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayloadcms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPayloadcms = React.forwardRef(function SiPayloadcms2({ title = "Payload CMS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.068 0 22.08 6.625v12.573L13.787 24V11.427L2.769 4.808 11.068 0ZM1.92 18.302l8.31-4.812v9.812l-8.31-5Z" }) + ] + } + ); +}); + +export { SiPayloadcms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.cjs new file mode 100644 index 000000000..45e2d9fb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4800"; +const SiPayoneer = React__namespace.forwardRef(function SiPayoneer2({ title = "Payoneer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.474 3.31c.234 1.802 1.035 5.642 1.398 7.263.095.459.201.853.298 1.013.501.865.907-.287.907-.287C5.644 6.616 3.17 3.597 2.38 2.787c-.139-.15-.384-.332-.608-.396-.32-.095-.374.086-.374.236.01.148.065.565.075.682zm21.835-1.463c.31.224 1.386 1.355 0 1.526-1.984.234-5.76.373-12.022 5.61C8.92 10.968 3.607 16.311.76 22.957a.181.181 0 01-.216.106c-.255-.074-.714-.352-.48-1.418.32-1.44 3.201-8.938 10.817-15.552 2.485-2.155 8.416-7.232 12.426-4.245z" }) + ] + } + ); +}); + +exports.default = SiPayoneer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.d.ts new file mode 100644 index 000000000..9dafddfc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4800"; +declare const SiPayoneer: IconType; +export { SiPayoneer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.mjs new file mode 100644 index 000000000..194ae3135 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPayoneer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4800"; +const SiPayoneer = React.forwardRef(function SiPayoneer2({ title = "Payoneer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.474 3.31c.234 1.802 1.035 5.642 1.398 7.263.095.459.201.853.298 1.013.501.865.907-.287.907-.287C5.644 6.616 3.17 3.597 2.38 2.787c-.139-.15-.384-.332-.608-.396-.32-.095-.374.086-.374.236.01.148.065.565.075.682zm21.835-1.463c.31.224 1.386 1.355 0 1.526-1.984.234-5.76.373-12.022 5.61C8.92 10.968 3.607 16.311.76 22.957a.181.181 0 01-.216.106c-.255-.074-.714-.352-.48-1.418.32-1.44 3.201-8.938 10.817-15.552 2.485-2.155 8.416-7.232 12.426-4.245z" }) + ] + } + ); +}); + +export { SiPayoneer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.cjs new file mode 100644 index 000000000..7e90441d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002991"; +const SiPaypal = React__namespace.forwardRef(function SiPaypal2({ title = "PayPal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.607 4.653H8.941L6.645 19.251H1.82L4.862 0h7.995c3.754 0 6.375 2.294 6.473 5.513-.648-.478-2.105-.86-3.722-.86m6.57 5.546c0 3.41-3.01 6.853-6.958 6.853h-2.493L11.595 24H6.74l1.845-11.538h3.592c4.208 0 7.346-3.634 7.153-6.949a5.24 5.24 0 0 1 2.848 4.686M9.653 5.546h6.408c.907 0 1.942.222 2.363.541-.195 2.741-2.655 5.483-6.441 5.483H8.714Z" }) + ] + } + ); +}); + +exports.default = SiPaypal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.d.ts new file mode 100644 index 000000000..32c31c19b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002991"; +declare const SiPaypal: IconType; +export { SiPaypal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.mjs new file mode 100644 index 000000000..01c254d89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaypal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002991"; +const SiPaypal = React.forwardRef(function SiPaypal2({ title = "PayPal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.607 4.653H8.941L6.645 19.251H1.82L4.862 0h7.995c3.754 0 6.375 2.294 6.473 5.513-.648-.478-2.105-.86-3.722-.86m6.57 5.546c0 3.41-3.01 6.853-6.958 6.853h-2.493L11.595 24H6.74l1.845-11.538h3.592c4.208 0 7.346-3.634 7.153-6.949a5.24 5.24 0 0 1 2.848 4.686M9.653 5.546h6.408c.907 0 1.942.222 2.363.541-.195 2.741-2.655 5.483-6.441 5.483H8.714Z" }) + ] + } + ); +}); + +export { SiPaypal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.cjs new file mode 100644 index 000000000..c17f06f7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A28FF"; +const SiPaysafe = React__namespace.forwardRef(function SiPaysafe2({ title = "Paysafe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.905 12.233-7.672 7.673a.16.16 0 0 1-.115.047h-.048a.162.162 0 0 1-.162-.161v-7.787a.324.324 0 0 1-.094.228L8.188 19.86a.332.332 0 0 1-.466 0L.095 12.235a.332.332 0 0 1 0-.466L7.72 4.142a.334.334 0 0 1 .467 0l7.625 7.625c.06.06.094.143.094.23V4.208c0-.089.073-.162.162-.162h.048c.043 0 .084.018.115.048l7.672 7.672a.333.333 0 0 1 .002.467z" }) + ] + } + ); +}); + +exports.default = SiPaysafe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.d.ts new file mode 100644 index 000000000..646e4015d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A28FF"; +declare const SiPaysafe: IconType; +export { SiPaysafe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.mjs new file mode 100644 index 000000000..354570844 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaysafe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A28FF"; +const SiPaysafe = React.forwardRef(function SiPaysafe2({ title = "Paysafe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.905 12.233-7.672 7.673a.16.16 0 0 1-.115.047h-.048a.162.162 0 0 1-.162-.161v-7.787a.324.324 0 0 1-.094.228L8.188 19.86a.332.332 0 0 1-.466 0L.095 12.235a.332.332 0 0 1 0-.466L7.72 4.142a.334.334 0 0 1 .467 0l7.625 7.625c.06.06.094.143.094.23V4.208c0-.089.073-.162.162-.162h.048c.043 0 .084.018.115.048l7.672 7.672a.333.333 0 0 1 .002.467z" }) + ] + } + ); +}); + +export { SiPaysafe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.cjs new file mode 100644 index 000000000..0764ee2a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#20336B"; +const SiPaytm = React__namespace.forwardRef(function SiPaytm2({ title = "Paytm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.85 8.167a.204.204 0 0 0-.04.004c-.68.19-.543 1.148-1.781 1.23h-.12a.23.23 0 0 0-.052.005h-.001a.24.24 0 0 0-.184.235v1.09c0 .134.106.241.237.241h.645v4.623c0 .132.104.238.233.238h1.058a.236.236 0 0 0 .233-.238v-4.623h.6c.13 0 .236-.107.236-.241v-1.09a.239.239 0 0 0-.236-.24h-.612V8.386a.218.218 0 0 0-.216-.22zm4.225 1.17c-.398 0-.762.15-1.042.395v-.124a.238.238 0 0 0-.234-.224h-1.07a.24.24 0 0 0-.236.242v5.92a.24.24 0 0 0 .236.242h1.07c.12 0 .217-.091.233-.209v-4.25a.393.393 0 0 1 .371-.408h.196a.41.41 0 0 1 .226.09.405.405 0 0 1 .145.319v4.074l.004.155a.24.24 0 0 0 .237.241h1.07a.239.239 0 0 0 .235-.23l-.001-4.246c0-.14.062-.266.174-.34a.419.419 0 0 1 .196-.068h.198c.23.02.37.2.37.408.005 1.396.004 2.8.004 4.224a.24.24 0 0 0 .237.241h1.07c.13 0 .236-.108.236-.241v-4.543c0-.31-.034-.442-.08-.577a1.601 1.601 0 0 0-1.51-1.09h-.015a1.58 1.58 0 0 0-1.152.5c-.291-.308-.7-.5-1.153-.5zM.232 9.4A.234.234 0 0 0 0 9.636v5.924c0 .132.096.238.216.241h1.09c.13 0 .237-.107.237-.24l.004-1.658H2.57c.857 0 1.453-.605 1.453-1.481v-1.538c0-.877-.596-1.484-1.453-1.484H.232zm9.032 0a.239.239 0 0 0-.237.241v2.47c0 .94.657 1.608 1.579 1.608h.675s.016 0 .037.004a.253.253 0 0 1 .222.253c0 .13-.096.235-.219.251l-.018.004-.303.006H9.739a.239.239 0 0 0-.236.24v1.09a.24.24 0 0 0 .236.242h1.75c.92 0 1.577-.669 1.577-1.608v-4.56a.239.239 0 0 0-.236-.24h-1.07a.239.239 0 0 0-.236.24c-.005.787 0 1.525 0 2.255a.253.253 0 0 1-.25.25h-.449a.253.253 0 0 1-.25-.255c.005-.754-.005-1.5-.005-2.25a.239.239 0 0 0-.236-.24zm-4.004.006a.232.232 0 0 0-.238.226v1.023c0 .132.113.24.252.24h1.413c.112.017.2.1.213.23v.14c-.013.124-.1.214-.207.224h-.7c-.93 0-1.594.63-1.594 1.515v1.269c0 .88.57 1.506 1.495 1.506h1.94c.348 0 .63-.27.63-.6v-4.136c0-1.004-.508-1.637-1.72-1.637zm-3.713 1.572h.678c.139 0 .25.115.25.256v.836a.253.253 0 0 1-.25.256h-.1c-.192.002-.386 0-.578 0zm4.67 1.977h.445c.139 0 .252.108.252.24v.932a.23.23 0 0 1-.014.076.25.25 0 0 1-.238.164h-.445a.247.247 0 0 1-.252-.24v-.933c0-.132.113-.239.252-.239Z" }) + ] + } + ); +}); + +exports.default = SiPaytm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.d.ts new file mode 100644 index 000000000..7045fe8c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#20336B"; +declare const SiPaytm: IconType; +export { SiPaytm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.mjs new file mode 100644 index 000000000..a9cea49ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPaytm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#20336B"; +const SiPaytm = React.forwardRef(function SiPaytm2({ title = "Paytm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.85 8.167a.204.204 0 0 0-.04.004c-.68.19-.543 1.148-1.781 1.23h-.12a.23.23 0 0 0-.052.005h-.001a.24.24 0 0 0-.184.235v1.09c0 .134.106.241.237.241h.645v4.623c0 .132.104.238.233.238h1.058a.236.236 0 0 0 .233-.238v-4.623h.6c.13 0 .236-.107.236-.241v-1.09a.239.239 0 0 0-.236-.24h-.612V8.386a.218.218 0 0 0-.216-.22zm4.225 1.17c-.398 0-.762.15-1.042.395v-.124a.238.238 0 0 0-.234-.224h-1.07a.24.24 0 0 0-.236.242v5.92a.24.24 0 0 0 .236.242h1.07c.12 0 .217-.091.233-.209v-4.25a.393.393 0 0 1 .371-.408h.196a.41.41 0 0 1 .226.09.405.405 0 0 1 .145.319v4.074l.004.155a.24.24 0 0 0 .237.241h1.07a.239.239 0 0 0 .235-.23l-.001-4.246c0-.14.062-.266.174-.34a.419.419 0 0 1 .196-.068h.198c.23.02.37.2.37.408.005 1.396.004 2.8.004 4.224a.24.24 0 0 0 .237.241h1.07c.13 0 .236-.108.236-.241v-4.543c0-.31-.034-.442-.08-.577a1.601 1.601 0 0 0-1.51-1.09h-.015a1.58 1.58 0 0 0-1.152.5c-.291-.308-.7-.5-1.153-.5zM.232 9.4A.234.234 0 0 0 0 9.636v5.924c0 .132.096.238.216.241h1.09c.13 0 .237-.107.237-.24l.004-1.658H2.57c.857 0 1.453-.605 1.453-1.481v-1.538c0-.877-.596-1.484-1.453-1.484H.232zm9.032 0a.239.239 0 0 0-.237.241v2.47c0 .94.657 1.608 1.579 1.608h.675s.016 0 .037.004a.253.253 0 0 1 .222.253c0 .13-.096.235-.219.251l-.018.004-.303.006H9.739a.239.239 0 0 0-.236.24v1.09a.24.24 0 0 0 .236.242h1.75c.92 0 1.577-.669 1.577-1.608v-4.56a.239.239 0 0 0-.236-.24h-1.07a.239.239 0 0 0-.236.24c-.005.787 0 1.525 0 2.255a.253.253 0 0 1-.25.25h-.449a.253.253 0 0 1-.25-.255c.005-.754-.005-1.5-.005-2.25a.239.239 0 0 0-.236-.24zm-4.004.006a.232.232 0 0 0-.238.226v1.023c0 .132.113.24.252.24h1.413c.112.017.2.1.213.23v.14c-.013.124-.1.214-.207.224h-.7c-.93 0-1.594.63-1.594 1.515v1.269c0 .88.57 1.506 1.495 1.506h1.94c.348 0 .63-.27.63-.6v-4.136c0-1.004-.508-1.637-1.72-1.637zm-3.713 1.572h.678c.139 0 .25.115.25.256v.836a.253.253 0 0 1-.25.256h-.1c-.192.002-.386 0-.578 0zm4.67 1.977h.445c.139 0 .252.108.252.24v.932a.23.23 0 0 1-.014.076.25.25 0 0 1-.238.164h-.445a.247.247 0 0 1-.252-.24v-.933c0-.132.113-.239.252-.239Z" }) + ] + } + ); +}); + +export { SiPaytm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.cjs new file mode 100644 index 000000000..74890a012 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#556DB3"; +const SiPcgamingwiki = React__namespace.forwardRef(function SiPcgamingwiki2({ title = "PCGamingWiki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.726 0L3.453 3.461v17.425L12.792 24l7.754-1.034-.002-.598V1.183zm-.742.991l-.02 21.948-7.988-2.527L3.95 3.964zm1.349.114l6.4.869v20.189l-6.404.796zm.33.366l.007 21.139 5.748-.727V2.228zm-2.152.263L8.251 2.91v4.924l3.279-.422zm-3.61 1.353L4.264 4.274v4.023l3.66-.408zm2.11.015a.738.738 0 01.51.22c.531.502.583 1.41.44 2.076-.128.596-.537 1.477-1.278 1.411-.132-.012-.395-.079-.469-.207L9.212 6.6l.078-.205c.285.122.546.211.839.04.283-.166.471-.503.578-.803.211-.588.211-1.382-.171-1.9-.465-.63-1.126-.3-1.442.288a3.036 3.036 0 00-.25.937 2.14 2.14 0 00.017.441c.02.168.107.341.086.511-.006.052-.037.085-.095.095-.345-.58-.157-1.508.102-2.081.185-.41.615-.824 1.057-.82zM6.427 4.105l-.394 1.098.397-.213-1.151 2.655-.002-.002.502-1.908-.324.155.446-1.634zm3.416.201a.28.28 0 01.106.018c.424.162.294.884.11 1.167-.097.151-.262.157-.424.157v.003c-.066-.24.238-.404.306-.588.04-.108-.002-.199-.045-.29-.102-.053-.186-.022-.223.083a1.341 1.341 0 01-.26.457 1.078 1.078 0 01.136-.846.376.376 0 01.294-.16zm-.138.148c-.04 0-.073.052-.073.114 0 .063.033.114.073.114.04 0 .072-.052.072-.114 0-.064-.033-.114-.072-.114zm.282 0c-.04 0-.072.052-.072.114 0 .063.033.114.072.114.04 0 .073-.052.073-.114 0-.064-.033-.114-.073-.114zm-.46.264c-.04 0-.072.053-.072.115 0 .063.033.114.073.114.04 0 .072-.053.072-.114 0-.064-.033-.115-.072-.115zm.573.06c-.04 0-.072.053-.072.115 0 .063.033.114.072.114.04 0 .073-.053.073-.114 0-.064-.033-.115-.073-.115zm-.396.339h.002c.01.014.01.028.004.041-.195.44-.387.881-.583 1.324-.018-.008-.029-.008-.035-.014a1.234 1.234 0 01-.161-.271c-.019-.038.002-.075.025-.106l.677-.904a.227.227 0 01.07-.07zm.305.015c-.04 0-.072.053-.072.114 0 .064.033.115.072.115.041 0 .073-.053.073-.115 0-.063-.033-.114-.073-.114zm-.18.223c-.04 0-.073.052-.073.114 0 .064.033.114.073.114.04 0 .072-.052.072-.114 0-.064-.033-.114-.072-.114zm4.285.295l4.992.156.002.401-4.994-.06zm-2.64 2.3l-3.225.4-.006 6.944 3.206.1zm-3.561.434l-3.628.339.025 6.341 3.594.207zm8.936.54c.33.004.648.287.832.782l1.367.008.033 1.279-1.406.06c-.227 1.04-1.36.943-1.618.058l-1.908.064-.004-1.405 1.846-.068c.229-.542.548-.783.858-.778zm.018.41a.64 1.072 0 00-.64 1.07.64 1.072 0 00.64 1.073.64 1.072 0 00.64-1.072.64 1.072 0 00-.64-1.072zm-11.359.332l.368.319 1.617-.058.01.128-1.67.062-.41-.353zm-.246.215a.173.173 0 01.015.346.173.173 0 01-.163-.101l-.467.02-.006-.128.467-.02a.175.175 0 01.154-.117zm4.985.265c.054.108-.002.307.111.333.153.036.174.075.211.218.017.064-.008.095.058.132.072.041.157.029.159.126.002.133-.056.114-.157.114-.037 0-.05.07-.052.097-.008.098.009.118.104.145.122.035.1.068.1.18 0 .056.011.025-.063.04-.118.022-.145.006-.139.14.009.161.277.03.2.26-.032.1-.195.023-.195.11 0 .11-.023.16.111.17.132.01.124.188.008.228-.07.025-.095-.002-.12.082-.024.085-.022.174-.053.26-.126.092-.24-.036-.24.173 0 .056-.012.097-.022.15-.019.104-.046.015-.12.038-.02-.025 0-.163 0-.196 0-.098-.033-.12-.145-.112-.006.12-.004.248-.1.335-.06-.04-.083-.1-.088-.168-.006-.134.004-.138-.134-.171a.865.865 0 00-.03.3c-.108.054-.125-.112-.125-.178 0-.056.023-.118-.047-.139-.07-.018-.095.017-.097.08-.004.127-.01.183-.11.253-.04-.111-.006-.304-.136-.34-.145-.036-.163-.142-.165-.28-.003-.151-.184-.007-.184-.17 0-.016-.013-.101 0-.114.06-.043.12.025.175.002.027-.074.037-.186-.043-.205-.083-.018-.161-.028-.143-.124.023-.118.002-.111.13-.12.098-.006.062-.107.065-.173-.129-.06-.182.016-.182-.154 0-.115-.009-.105.107-.105.1 0 .07-.035.07-.13 0-.106-.19-.013-.198-.158-.004-.062.02-.116.08-.138.106-.042.118-.048.123-.162.006-.165.115-.184.247-.25l-.002-.002c-.002-.106 0-.207.066-.294.124.004.102.2.104.296.212.105.1-.224.21-.317.157-.016-.012.331.143.327.101-.002.08-.05.078-.138-.002-.081.009-.162.079-.213.17.064.016.376.231.326 0-.132-.02-.293.12-.364zm-2.987.13a.172.172 0 01.178.168.172.172 0 01-.168.178.172.172 0 01-.16-.097l-.523.015a.171.171 0 01-.329-.067.172.172 0 01.167-.178v-.002a.175.175 0 01.168.116l.508-.014a.174.174 0 01.159-.118zm-1.206.253l1.475 2.15-.11.068-1.448-2.092-1.322.081-.004-.124zm1.501.157l-.008.186-.136.197a.173.173 0 01-.023.192v-.002a.173.173 0 01-.244.017.171.171 0 01-.016-.242.172.172 0 01.186-.05zM6.858 11a.168.168 0 01.144.073c.041.06.041.135.004.193l.527.786.002.203-.634-.917a.169.169 0 01-.18-.068l-.002.002a.173.173 0 01.043-.24.171.171 0 01.096-.032zm-.856.071a.173.173 0 01.014.346.173.173 0 01-.163-.102l-1.181.06-.006-.128 1.181-.06a.175.175 0 01.155-.116zm.361.683l.393.49a.166.166 0 01.085-.022c.095 0 .173.078.173.173a.175.175 0 01-.173.174.175.175 0 01-.174-.174c0-.016.004-.033.008-.05l-.361-.46-1.626.04-.004-.13zm-1.117.436h.002c.059.001.11.032.138.077l.992.027.39.474a.166.166 0 01.085-.023c.095 0 .174.079.174.174a.175.175 0 01-.174.174.175.175 0 01-.174-.174.21.21 0 01.009-.05l-.36-.445-.919-.027a.164.164 0 01-.159.124.166.166 0 01-.002-.33h-.002zm-.447.205c.06 0 .104.014.15.085.136.213.264.432.394.65.064.107.13.215.196.32.095.153.12.166.302.178.13.009.262.009.394.009.137 0 .133-.114.263-.102.111.106.111.242 0 .348-.124.008-.11-.12-.203-.12H5.9c-.197 0-.256.043-.358-.116l-.694-1.109h-.171V12.4c.048 0 .088-.004.123-.004zm1.5.34a.172.172 0 01.178.167.172.172 0 01-.167.178.172.172 0 01-.161-.097l-.459.01a.172.172 0 01-.328-.066.172.172 0 01.167-.178v-.002a.175.175 0 01.167.116l.444-.01a.174.174 0 01.16-.118zm.965.181a.171.171 0 11-.023.34l-.516.76-.136.001.543-.827a.172.172 0 01.132-.274zm-2.437.013a.166.166 0 010 .331.166.166 0 010-.331zm.364.563c.045 0 .089.017.123.051a.171.171 0 010 .245.17.17 0 01-.244 0 .198.198 0 01-.03-.042l-.147-.006-.163.228-.095-.09.2-.266.192.006a.181.181 0 01.043-.075.168.168 0 01.121-.05zm2.157.136c.06.001.129.013.17.013.006.058.01.11-.03.161-.071.002-.14-.029-.21-.035l-.123.17c.024.053.103.003.117.074-.02.085-.184.01-.24.019-.028-.09.174-.317.226-.39a.204.204 0 01.09-.012zm8.472.317v7.742l-1.452.174-.004-7.838zM4.337 15.563l-.004 2.125 1.692.231.01-2.234zm1.948.128v4.864l2.927.882v-5.554zm3.313.224l.013 5.745.2.062c.15-.515.42-.316.438.14l.386.115c.004-.543.473-.348.395.117l.357.133-.012-6.188-.263-.017c.058.571-.512.565-.421-.027l-.42-.027c.067.549-.508.534-.419-.035zm-4.614.235l.276.607.17-.31.396.897-1.292-.2zm.71.013c.091 0 .163.072.163.163a.162.162 0 01-.163.164.162.162 0 01-.163-.164c0-.09.072-.163.163-.163zm4.103.498l1.402.147v1.382l-1.402-.205zm-2.24.019c.178.012.347.048.484.178.308.294-.238.863.008 1.208.221-.213.217-.478.384-.703.166.213.31.641.283.912-.142.172-.256.27-.597.294.01.076-.037.149-.016.238.182.194.382.163.622.149.033.17-.139.695-.267.821-.26-.118-.394-.37-.539-.602a.64.64 0 00-.132.126c.035.267.372.606.328.842a.636.636 0 01-.365.07c-.128-.018-.18-.088-.21-.225-.069-.303.065-.677-.19-.894-.125.246-.09.518-.123.785-.2-.05-.345-.45-.384-.621.035-.205.142-.356.266-.515.058-.075.077-.15.04-.236-.015-.033-.013-.075-.042-.102-.18.031-.287.17-.41.29-.14-.145-.108-.69.003-.85a.601.601 0 01.467.12c.11-.108.116-.213.019-.325-.075-.085-.304-.184-.345-.271-.033-.13.21-.57.357-.563.161.238.256.507.31.788.056.023.105.044.17.031.032-.32-.04-.626-.141-.926.01-.01.016-.019.02-.019zm-3.23 1.305v2.12l1.708.417.019-2.284zm5.472.245l1.4.225v1.395l-1.4-.3zm-4.6.3l.014 1.398-.337-.432-.301-.066v-.598l.283.041zm.398.095a.08.08 0 01.013.002c.037.085.08.172.105.265.103.393.103.773-.118 1.144l-.002-.002c-.04-.077-.029-.135-.002-.203.064-.168.122-.34.11-.521a1.544 1.544 0 00-.096-.464 4.151 4.151 0 01-.068-.186c.015-.022.03-.037.058-.035zm-.143.145c.02.001.028.014.034.027.043.088.074.177.093.275.02.113.01.225.018.337.006.072-.016.143-.027.211a.267.267 0 01-.134.197v.002h-.002l.002-.002c-.006-.067.019-.127.033-.187.02-.09.052-.182.064-.273.017-.116-.02-.227-.05-.34l-.045-.154c-.008-.033-.014-.064.004-.093h.01zm-.123.162c.011 0 .021.002.033.005a.96.96 0 01.074.424c-.002.056-.023.106-.035.158-.01.039-.037.062-.07.08-.027-.027-.019-.051-.013-.078.017-.077.033-.151.035-.23.005-.12-.033-.232-.06-.35h-.002a.1.1 0 01.038-.009zm4.468.835l1.396.318v1.383l-1.396-.385z" }) + ] + } + ); +}); + +exports.default = SiPcgamingwiki; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.d.ts new file mode 100644 index 000000000..ecaff38ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#556DB3"; +declare const SiPcgamingwiki: IconType; +export { SiPcgamingwiki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.mjs new file mode 100644 index 000000000..778e82c81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPcgamingwiki.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#556DB3"; +const SiPcgamingwiki = React.forwardRef(function SiPcgamingwiki2({ title = "PCGamingWiki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.726 0L3.453 3.461v17.425L12.792 24l7.754-1.034-.002-.598V1.183zm-.742.991l-.02 21.948-7.988-2.527L3.95 3.964zm1.349.114l6.4.869v20.189l-6.404.796zm.33.366l.007 21.139 5.748-.727V2.228zm-2.152.263L8.251 2.91v4.924l3.279-.422zm-3.61 1.353L4.264 4.274v4.023l3.66-.408zm2.11.015a.738.738 0 01.51.22c.531.502.583 1.41.44 2.076-.128.596-.537 1.477-1.278 1.411-.132-.012-.395-.079-.469-.207L9.212 6.6l.078-.205c.285.122.546.211.839.04.283-.166.471-.503.578-.803.211-.588.211-1.382-.171-1.9-.465-.63-1.126-.3-1.442.288a3.036 3.036 0 00-.25.937 2.14 2.14 0 00.017.441c.02.168.107.341.086.511-.006.052-.037.085-.095.095-.345-.58-.157-1.508.102-2.081.185-.41.615-.824 1.057-.82zM6.427 4.105l-.394 1.098.397-.213-1.151 2.655-.002-.002.502-1.908-.324.155.446-1.634zm3.416.201a.28.28 0 01.106.018c.424.162.294.884.11 1.167-.097.151-.262.157-.424.157v.003c-.066-.24.238-.404.306-.588.04-.108-.002-.199-.045-.29-.102-.053-.186-.022-.223.083a1.341 1.341 0 01-.26.457 1.078 1.078 0 01.136-.846.376.376 0 01.294-.16zm-.138.148c-.04 0-.073.052-.073.114 0 .063.033.114.073.114.04 0 .072-.052.072-.114 0-.064-.033-.114-.072-.114zm.282 0c-.04 0-.072.052-.072.114 0 .063.033.114.072.114.04 0 .073-.052.073-.114 0-.064-.033-.114-.073-.114zm-.46.264c-.04 0-.072.053-.072.115 0 .063.033.114.073.114.04 0 .072-.053.072-.114 0-.064-.033-.115-.072-.115zm.573.06c-.04 0-.072.053-.072.115 0 .063.033.114.072.114.04 0 .073-.053.073-.114 0-.064-.033-.115-.073-.115zm-.396.339h.002c.01.014.01.028.004.041-.195.44-.387.881-.583 1.324-.018-.008-.029-.008-.035-.014a1.234 1.234 0 01-.161-.271c-.019-.038.002-.075.025-.106l.677-.904a.227.227 0 01.07-.07zm.305.015c-.04 0-.072.053-.072.114 0 .064.033.115.072.115.041 0 .073-.053.073-.115 0-.063-.033-.114-.073-.114zm-.18.223c-.04 0-.073.052-.073.114 0 .064.033.114.073.114.04 0 .072-.052.072-.114 0-.064-.033-.114-.072-.114zm4.285.295l4.992.156.002.401-4.994-.06zm-2.64 2.3l-3.225.4-.006 6.944 3.206.1zm-3.561.434l-3.628.339.025 6.341 3.594.207zm8.936.54c.33.004.648.287.832.782l1.367.008.033 1.279-1.406.06c-.227 1.04-1.36.943-1.618.058l-1.908.064-.004-1.405 1.846-.068c.229-.542.548-.783.858-.778zm.018.41a.64 1.072 0 00-.64 1.07.64 1.072 0 00.64 1.073.64 1.072 0 00.64-1.072.64 1.072 0 00-.64-1.072zm-11.359.332l.368.319 1.617-.058.01.128-1.67.062-.41-.353zm-.246.215a.173.173 0 01.015.346.173.173 0 01-.163-.101l-.467.02-.006-.128.467-.02a.175.175 0 01.154-.117zm4.985.265c.054.108-.002.307.111.333.153.036.174.075.211.218.017.064-.008.095.058.132.072.041.157.029.159.126.002.133-.056.114-.157.114-.037 0-.05.07-.052.097-.008.098.009.118.104.145.122.035.1.068.1.18 0 .056.011.025-.063.04-.118.022-.145.006-.139.14.009.161.277.03.2.26-.032.1-.195.023-.195.11 0 .11-.023.16.111.17.132.01.124.188.008.228-.07.025-.095-.002-.12.082-.024.085-.022.174-.053.26-.126.092-.24-.036-.24.173 0 .056-.012.097-.022.15-.019.104-.046.015-.12.038-.02-.025 0-.163 0-.196 0-.098-.033-.12-.145-.112-.006.12-.004.248-.1.335-.06-.04-.083-.1-.088-.168-.006-.134.004-.138-.134-.171a.865.865 0 00-.03.3c-.108.054-.125-.112-.125-.178 0-.056.023-.118-.047-.139-.07-.018-.095.017-.097.08-.004.127-.01.183-.11.253-.04-.111-.006-.304-.136-.34-.145-.036-.163-.142-.165-.28-.003-.151-.184-.007-.184-.17 0-.016-.013-.101 0-.114.06-.043.12.025.175.002.027-.074.037-.186-.043-.205-.083-.018-.161-.028-.143-.124.023-.118.002-.111.13-.12.098-.006.062-.107.065-.173-.129-.06-.182.016-.182-.154 0-.115-.009-.105.107-.105.1 0 .07-.035.07-.13 0-.106-.19-.013-.198-.158-.004-.062.02-.116.08-.138.106-.042.118-.048.123-.162.006-.165.115-.184.247-.25l-.002-.002c-.002-.106 0-.207.066-.294.124.004.102.2.104.296.212.105.1-.224.21-.317.157-.016-.012.331.143.327.101-.002.08-.05.078-.138-.002-.081.009-.162.079-.213.17.064.016.376.231.326 0-.132-.02-.293.12-.364zm-2.987.13a.172.172 0 01.178.168.172.172 0 01-.168.178.172.172 0 01-.16-.097l-.523.015a.171.171 0 01-.329-.067.172.172 0 01.167-.178v-.002a.175.175 0 01.168.116l.508-.014a.174.174 0 01.159-.118zm-1.206.253l1.475 2.15-.11.068-1.448-2.092-1.322.081-.004-.124zm1.501.157l-.008.186-.136.197a.173.173 0 01-.023.192v-.002a.173.173 0 01-.244.017.171.171 0 01-.016-.242.172.172 0 01.186-.05zM6.858 11a.168.168 0 01.144.073c.041.06.041.135.004.193l.527.786.002.203-.634-.917a.169.169 0 01-.18-.068l-.002.002a.173.173 0 01.043-.24.171.171 0 01.096-.032zm-.856.071a.173.173 0 01.014.346.173.173 0 01-.163-.102l-1.181.06-.006-.128 1.181-.06a.175.175 0 01.155-.116zm.361.683l.393.49a.166.166 0 01.085-.022c.095 0 .173.078.173.173a.175.175 0 01-.173.174.175.175 0 01-.174-.174c0-.016.004-.033.008-.05l-.361-.46-1.626.04-.004-.13zm-1.117.436h.002c.059.001.11.032.138.077l.992.027.39.474a.166.166 0 01.085-.023c.095 0 .174.079.174.174a.175.175 0 01-.174.174.175.175 0 01-.174-.174.21.21 0 01.009-.05l-.36-.445-.919-.027a.164.164 0 01-.159.124.166.166 0 01-.002-.33h-.002zm-.447.205c.06 0 .104.014.15.085.136.213.264.432.394.65.064.107.13.215.196.32.095.153.12.166.302.178.13.009.262.009.394.009.137 0 .133-.114.263-.102.111.106.111.242 0 .348-.124.008-.11-.12-.203-.12H5.9c-.197 0-.256.043-.358-.116l-.694-1.109h-.171V12.4c.048 0 .088-.004.123-.004zm1.5.34a.172.172 0 01.178.167.172.172 0 01-.167.178.172.172 0 01-.161-.097l-.459.01a.172.172 0 01-.328-.066.172.172 0 01.167-.178v-.002a.175.175 0 01.167.116l.444-.01a.174.174 0 01.16-.118zm.965.181a.171.171 0 11-.023.34l-.516.76-.136.001.543-.827a.172.172 0 01.132-.274zm-2.437.013a.166.166 0 010 .331.166.166 0 010-.331zm.364.563c.045 0 .089.017.123.051a.171.171 0 010 .245.17.17 0 01-.244 0 .198.198 0 01-.03-.042l-.147-.006-.163.228-.095-.09.2-.266.192.006a.181.181 0 01.043-.075.168.168 0 01.121-.05zm2.157.136c.06.001.129.013.17.013.006.058.01.11-.03.161-.071.002-.14-.029-.21-.035l-.123.17c.024.053.103.003.117.074-.02.085-.184.01-.24.019-.028-.09.174-.317.226-.39a.204.204 0 01.09-.012zm8.472.317v7.742l-1.452.174-.004-7.838zM4.337 15.563l-.004 2.125 1.692.231.01-2.234zm1.948.128v4.864l2.927.882v-5.554zm3.313.224l.013 5.745.2.062c.15-.515.42-.316.438.14l.386.115c.004-.543.473-.348.395.117l.357.133-.012-6.188-.263-.017c.058.571-.512.565-.421-.027l-.42-.027c.067.549-.508.534-.419-.035zm-4.614.235l.276.607.17-.31.396.897-1.292-.2zm.71.013c.091 0 .163.072.163.163a.162.162 0 01-.163.164.162.162 0 01-.163-.164c0-.09.072-.163.163-.163zm4.103.498l1.402.147v1.382l-1.402-.205zm-2.24.019c.178.012.347.048.484.178.308.294-.238.863.008 1.208.221-.213.217-.478.384-.703.166.213.31.641.283.912-.142.172-.256.27-.597.294.01.076-.037.149-.016.238.182.194.382.163.622.149.033.17-.139.695-.267.821-.26-.118-.394-.37-.539-.602a.64.64 0 00-.132.126c.035.267.372.606.328.842a.636.636 0 01-.365.07c-.128-.018-.18-.088-.21-.225-.069-.303.065-.677-.19-.894-.125.246-.09.518-.123.785-.2-.05-.345-.45-.384-.621.035-.205.142-.356.266-.515.058-.075.077-.15.04-.236-.015-.033-.013-.075-.042-.102-.18.031-.287.17-.41.29-.14-.145-.108-.69.003-.85a.601.601 0 01.467.12c.11-.108.116-.213.019-.325-.075-.085-.304-.184-.345-.271-.033-.13.21-.57.357-.563.161.238.256.507.31.788.056.023.105.044.17.031.032-.32-.04-.626-.141-.926.01-.01.016-.019.02-.019zm-3.23 1.305v2.12l1.708.417.019-2.284zm5.472.245l1.4.225v1.395l-1.4-.3zm-4.6.3l.014 1.398-.337-.432-.301-.066v-.598l.283.041zm.398.095a.08.08 0 01.013.002c.037.085.08.172.105.265.103.393.103.773-.118 1.144l-.002-.002c-.04-.077-.029-.135-.002-.203.064-.168.122-.34.11-.521a1.544 1.544 0 00-.096-.464 4.151 4.151 0 01-.068-.186c.015-.022.03-.037.058-.035zm-.143.145c.02.001.028.014.034.027.043.088.074.177.093.275.02.113.01.225.018.337.006.072-.016.143-.027.211a.267.267 0 01-.134.197v.002h-.002l.002-.002c-.006-.067.019-.127.033-.187.02-.09.052-.182.064-.273.017-.116-.02-.227-.05-.34l-.045-.154c-.008-.033-.014-.064.004-.093h.01zm-.123.162c.011 0 .021.002.033.005a.96.96 0 01.074.424c-.002.056-.023.106-.035.158-.01.039-.037.062-.07.08-.027-.027-.019-.051-.013-.078.017-.077.033-.151.035-.23.005-.12-.033-.232-.06-.35h-.002a.1.1 0 01.038-.009zm4.468.835l1.396.318v1.383l-1.396-.385z" }) + ] + } + ); +}); + +export { SiPcgamingwiki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.cjs new file mode 100644 index 000000000..fd6fb8c53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AC75D7"; +const SiPdm = React__namespace.forwardRef(function SiPdm2({ title = "PDM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.44.418a3.12 3.12 0 0 1 3.12 0l7.69 4.44a3.12 3.12 0 0 1 1.56 2.702v8.88a3.12 3.12 0 0 1-1.56 2.702l-7.69 4.44a3.12 3.12 0 0 1-3.12 0l-7.69-4.44a3.12 3.12 0 0 1-1.56-2.702V7.56a3.12 3.12 0 0 1 1.56-2.702Zm3.87 3.315L12.311 2.58a.624.624 0 0 0-.624 0l-7.69 4.44a.624.624 0 0 0-.312.54v3.774l10.623-6.133Zm2.496 13.643 1.255.725 1.941-1.12a.624.624 0 0 0 .312-.541V7.56a.624.624 0 0 0-.312-.54l-3.196-1.845Zm-2.497-1.441V8.083l-6.8 3.926ZM3.686 14.217v2.223c0 .223.119.429.312.54l7.69 4.44a.624.624 0 0 0 .624 0l3.252-1.878-10.55-6.091Z" }) + ] + } + ); +}); + +exports.default = SiPdm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.d.ts new file mode 100644 index 000000000..86483132a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AC75D7"; +declare const SiPdm: IconType; +export { SiPdm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.mjs new file mode 100644 index 000000000..52e7cd196 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPdm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AC75D7"; +const SiPdm = React.forwardRef(function SiPdm2({ title = "PDM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.44.418a3.12 3.12 0 0 1 3.12 0l7.69 4.44a3.12 3.12 0 0 1 1.56 2.702v8.88a3.12 3.12 0 0 1-1.56 2.702l-7.69 4.44a3.12 3.12 0 0 1-3.12 0l-7.69-4.44a3.12 3.12 0 0 1-1.56-2.702V7.56a3.12 3.12 0 0 1 1.56-2.702Zm3.87 3.315L12.311 2.58a.624.624 0 0 0-.624 0l-7.69 4.44a.624.624 0 0 0-.312.54v3.774l10.623-6.133Zm2.496 13.643 1.255.725 1.941-1.12a.624.624 0 0 0 .312-.541V7.56a.624.624 0 0 0-.312-.54l-3.196-1.845Zm-2.497-1.441V8.083l-6.8 3.926ZM3.686 14.217v2.223c0 .223.119.429.312.54l7.69 4.44a.624.624 0 0 0 .624 0l3.252-1.878-10.55-6.091Z" }) + ] + } + ); +}); + +export { SiPdm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.cjs new file mode 100644 index 000000000..938cf64c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiPdq = React__namespace.forwardRef(function SiPdq2({ title = "PDQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.813 7.373a4.655 4.655 0 0 0-3.323 1.354 4.621 4.621 0 0 0-1.2 2.078 4.213 4.213 0 0 0-.696-1.59 3.725 3.725 0 0 0-1.084-1.027c-.323-.2-.731-.4-1.184-.5-.479-.104-.994-.14-1.625-.14H6.707v8.891h3.502a4.493 4.493 0 0 0 1.727-.322c.502-.202.953-.51 1.324-.904.376-.409.664-.89.847-1.414.07-.191.127-.39.172-.596a4.463 4.463 0 0 0 1.237 2.09c.442.415.96.742 1.525.965a5 5 0 0 0 1.89.353c.848.001 1.654-.23 2.42-.693.206.221.492.394.858.52.397.13.813.192 1.23.187.188.004.374-.017.561-.025v-1.801c-.082-.001-.11.014-.188.013-.419 0-.744-.104-.976-.316.25-.365.447-.766.582-1.187.123-.412.185-.839.182-1.268a4.595 4.595 0 0 0-.368-1.838 4.532 4.532 0 0 0-1.017-1.482 4.888 4.888 0 0 0-3.402-1.348ZM0 7.549v8.89l2.18-.002v-2.785h.976c.633 0 1.15-.058 1.551-.173 1.117-.318 1.588-1.234 1.738-1.612.17-.41.256-.85.254-1.293a3.299 3.299 0 0 0-.267-1.332 2.7 2.7 0 0 0-1.256-1.34c-.319-.156-.746-.279-1.31-.32a11.989 11.989 0 0 0-.95-.033Zm18.81 1.824c.346-.003.689.06 1.01.188.653.259 1.098.772 1.319 1.334.127.322.19.665.187 1.011.003.227 0 .573-.308 1.32a19.46 19.46 0 0 1-.32-.372c-.24-.288-.534-.513-.91-.788-1.65-1.15-2.842-.697-3.37-.453.116-.693.389-1.24.816-1.64.428-.4.953-.6 1.577-.6Zm-16.63.174h.828c.535 0 .922.082 1.158.248.236.165.354.437.354.812 0 .698-.473 1.047-1.418 1.047H2.18zm6.8 0h.989c.695 0 1.23.214 1.605.64.375.427.56 1.04.56 1.84.001.782-.184 1.38-.554 1.793-.37.413-.912.62-1.625.62H8.98Zm8.467 3.43c.348-.003.692.075 1.004.226.242.105.467.243.668.412.227.202.432.427.615.668-.453.328-.762.337-.949.332-.455 0-.899-.142-1.27-.406a2.404 2.404 0 0 1-.869-1.086c.575-.197.792-.131.801-.146z" }) + ] + } + ); +}); + +exports.default = SiPdq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.d.ts new file mode 100644 index 000000000..d1b97a978 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiPdq: IconType; +export { SiPdq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.mjs new file mode 100644 index 000000000..611a15109 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPdq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiPdq = React.forwardRef(function SiPdq2({ title = "PDQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.813 7.373a4.655 4.655 0 0 0-3.323 1.354 4.621 4.621 0 0 0-1.2 2.078 4.213 4.213 0 0 0-.696-1.59 3.725 3.725 0 0 0-1.084-1.027c-.323-.2-.731-.4-1.184-.5-.479-.104-.994-.14-1.625-.14H6.707v8.891h3.502a4.493 4.493 0 0 0 1.727-.322c.502-.202.953-.51 1.324-.904.376-.409.664-.89.847-1.414.07-.191.127-.39.172-.596a4.463 4.463 0 0 0 1.237 2.09c.442.415.96.742 1.525.965a5 5 0 0 0 1.89.353c.848.001 1.654-.23 2.42-.693.206.221.492.394.858.52.397.13.813.192 1.23.187.188.004.374-.017.561-.025v-1.801c-.082-.001-.11.014-.188.013-.419 0-.744-.104-.976-.316.25-.365.447-.766.582-1.187.123-.412.185-.839.182-1.268a4.595 4.595 0 0 0-.368-1.838 4.532 4.532 0 0 0-1.017-1.482 4.888 4.888 0 0 0-3.402-1.348ZM0 7.549v8.89l2.18-.002v-2.785h.976c.633 0 1.15-.058 1.551-.173 1.117-.318 1.588-1.234 1.738-1.612.17-.41.256-.85.254-1.293a3.299 3.299 0 0 0-.267-1.332 2.7 2.7 0 0 0-1.256-1.34c-.319-.156-.746-.279-1.31-.32a11.989 11.989 0 0 0-.95-.033Zm18.81 1.824c.346-.003.689.06 1.01.188.653.259 1.098.772 1.319 1.334.127.322.19.665.187 1.011.003.227 0 .573-.308 1.32a19.46 19.46 0 0 1-.32-.372c-.24-.288-.534-.513-.91-.788-1.65-1.15-2.842-.697-3.37-.453.116-.693.389-1.24.816-1.64.428-.4.953-.6 1.577-.6Zm-16.63.174h.828c.535 0 .922.082 1.158.248.236.165.354.437.354.812 0 .698-.473 1.047-1.418 1.047H2.18zm6.8 0h.989c.695 0 1.23.214 1.605.64.375.427.56 1.04.56 1.84.001.782-.184 1.38-.554 1.793-.37.413-.912.62-1.625.62H8.98Zm8.467 3.43c.348-.003.692.075 1.004.226.242.105.467.243.668.412.227.202.432.427.615.668-.453.328-.762.337-.949.332-.455 0-.899-.142-1.27-.406a2.404 2.404 0 0 1-.869-1.086c.575-.197.792-.131.801-.146z" }) + ] + } + ); +}); + +export { SiPdq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.cjs new file mode 100644 index 000000000..9d18d60d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C1B1C"; +const SiPeakdesign = React__namespace.forwardRef(function SiPeakdesign2({ title = "Peak Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m24 10.523-9.446 6.493-4.74-3.271 4.723-3.255 3.738 2.57 3.705-2.537zm-6.743 3.255-2.72-1.886-2.704 1.853 2.737 1.869zm-7.794-.284-3.738-2.57-3.706 2.554h-2.019l9.43-6.493 4.756 3.255zm-2.737-3.254 2.737 1.869 2.704-1.869-2.737-1.87z" }) + ] + } + ); +}); + +exports.default = SiPeakdesign; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.d.ts new file mode 100644 index 000000000..ee355990b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C1B1C"; +declare const SiPeakdesign: IconType; +export { SiPeakdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.mjs new file mode 100644 index 000000000..bb22283f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeakdesign.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C1B1C"; +const SiPeakdesign = React.forwardRef(function SiPeakdesign2({ title = "Peak Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m24 10.523-9.446 6.493-4.74-3.271 4.723-3.255 3.738 2.57 3.705-2.537zm-6.743 3.255-2.72-1.886-2.704 1.853 2.737 1.869zm-7.794-.284-3.738-2.57-3.706 2.554h-2.019l9.43-6.493 4.756 3.255zm-2.737-3.254 2.737 1.869 2.704-1.869-2.737-1.87z" }) + ] + } + ); +}); + +export { SiPeakdesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.cjs new file mode 100644 index 000000000..76970abf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPearson = React__namespace.forwardRef(function SiPearson2({ title = "Pearson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.22 1.546C12.596-1.648 5.258.088 2.096 6.928c-2.176 4.71-1.188 12.896 3.88 15.83 5.066 2.934 11.866.472 14.98-5.29 3.542-6.554 2.356-13.034-2.736-15.922zm-6.244 18.526a1.212 1.212 0 0 1-.76.248 1.59 1.59 0 0 1-.4-.054 1.078 1.078 0 0 1-.528-.306.942.942 0 0 1-.21-.474 1.15 1.15 0 0 1 .208-.854c.2-.298.532-.48.89-.49a1 1 0 0 1 .186.018c.188.04.366.12.518.24.286.217.456.553.462.912a.944.944 0 0 1-.366.76zm7.656-9.834c-.202 1.514-1.14 2.914-2.7 3.84-1.236.738-2.86 1.032-4.46 1.046-.012.248-.062 1.1-.088 1.236a.87.87 0 0 1-.196.42c-.172.218-.47.36-.766.44a2.493 2.493 0 0 1-.632.096.8.8 0 0 1-.568-.234.8.8 0 0 1-.204-.482l-.012-.17c-.034-.144-.22-7.496-.184-7.366.028-.88 1.48-1.034 2.27-.88.79.158.59 1.098.57 2.252 0 0-.04 1.52-.112 3.124a6.178 6.178 0 0 0 2.556-.684c1.512-.732 2.312-1.856 2.312-3.512s-1.648-3.51-4.688-3.51-4.346.75-5.818 1.94c-.332.27-.588.54-.83.72-.24.178-.882.204-1.054-.212-.208-.504.18-1.064.406-1.334.36-.426 1.24-1.284 2.218-1.78C8.772 4.616 10.14 4 12.048 3.954c1.724-.044 4.448.094 6.41 2.26l.014.014c1.02 1.066 1.34 2.684 1.16 4.01z" }) + ] + } + ); +}); + +exports.default = SiPearson; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.d.ts new file mode 100644 index 000000000..9da04b69e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPearson: IconType; +export { SiPearson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.mjs new file mode 100644 index 000000000..d1a580348 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPearson.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPearson = React.forwardRef(function SiPearson2({ title = "Pearson", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.22 1.546C12.596-1.648 5.258.088 2.096 6.928c-2.176 4.71-1.188 12.896 3.88 15.83 5.066 2.934 11.866.472 14.98-5.29 3.542-6.554 2.356-13.034-2.736-15.922zm-6.244 18.526a1.212 1.212 0 0 1-.76.248 1.59 1.59 0 0 1-.4-.054 1.078 1.078 0 0 1-.528-.306.942.942 0 0 1-.21-.474 1.15 1.15 0 0 1 .208-.854c.2-.298.532-.48.89-.49a1 1 0 0 1 .186.018c.188.04.366.12.518.24.286.217.456.553.462.912a.944.944 0 0 1-.366.76zm7.656-9.834c-.202 1.514-1.14 2.914-2.7 3.84-1.236.738-2.86 1.032-4.46 1.046-.012.248-.062 1.1-.088 1.236a.87.87 0 0 1-.196.42c-.172.218-.47.36-.766.44a2.493 2.493 0 0 1-.632.096.8.8 0 0 1-.568-.234.8.8 0 0 1-.204-.482l-.012-.17c-.034-.144-.22-7.496-.184-7.366.028-.88 1.48-1.034 2.27-.88.79.158.59 1.098.57 2.252 0 0-.04 1.52-.112 3.124a6.178 6.178 0 0 0 2.556-.684c1.512-.732 2.312-1.856 2.312-3.512s-1.648-3.51-4.688-3.51-4.346.75-5.818 1.94c-.332.27-.588.54-.83.72-.24.178-.882.204-1.054-.212-.208-.504.18-1.064.406-1.334.36-.426 1.24-1.284 2.218-1.78C8.772 4.616 10.14 4 12.048 3.954c1.724-.044 4.448.094 6.41 2.26l.014.014c1.02 1.066 1.34 2.684 1.16 4.01z" }) + ] + } + ); +}); + +export { SiPearson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.cjs new file mode 100644 index 000000000..820348457 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AA45"; +const SiPeerlist = React__namespace.forwardRef(function SiPeerlist2({ title = "Peerlist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C2.667 0 0 2.667 0 12s2.673 12 12 12 12-2.667 12-12S21.327 0 12 0zm8.892 20.894c-1.57 1.569-4.247 2.249-8.892 2.249s-7.322-.68-8.892-2.25C1.735 19.522 1.041 17.3.89 13.654A39.74 39.74 0 0 1 .857 12c0-1.162.043-2.201.13-3.13.177-1.859.537-3.278 1.106-4.366.284-.544.62-1.006 1.013-1.398s.854-.729 1.398-1.013C5.592 1.524 7.01 1.164 8.87.988 9.799.9 10.838.858 12 .858c4.645 0 7.322.68 8.892 2.248 1.569 1.569 2.25 4.246 2.25 8.894s-.681 7.325-2.25 8.894zM20.538 3.46C19.064 1.986 16.51 1.357 12 1.357c-4.513 0-7.067.629-8.54 2.103C1.986 4.933 1.357 7.487 1.357 12c0 4.511.63 7.065 2.105 8.54C4.936 22.014 7.49 22.643 12 22.643s7.064-.629 8.538-2.103c1.475-1.475 2.105-4.029 2.105-8.54s-.63-7.065-2.105-8.54zM14.25 16.49a6.097 6.097 0 0 1-2.442.59v2.706H10.45v.357H6.429V5.57h.357V4.214h5.676c3.565 0 6.467 2.81 6.467 6.262 0 2.852-1.981 5.26-4.68 6.013zm-1.788-8.728H10.45v5.428h2.011c1.532 0 2.802-1.2 2.802-2.714s-1.27-2.714-2.802-2.714zm.901 4.351c.117-.239.186-.502.186-.78 0-1.01-.855-1.857-1.945-1.857h-.296V8.62h1.154c1.09 0 1.945.847 1.945 1.857 0 .705-.422 1.323-1.044 1.637zm4.104 1.493c.043-.063.083-.129.123-.194a5.653 5.653 0 0 0 .526-1.103 5.56 5.56 0 0 0 .11-.362c.02-.076.042-.15.06-.227a5.58 5.58 0 0 0 .073-.41c.01-.068.025-.134.032-.203.024-.207.038-.417.038-.63 0-3.198-2.687-5.763-5.967-5.763H7.286v14.572h4.022v-3.048h1.154c1.43 0 2.747-.488 3.778-1.303a5.92 5.92 0 0 0 .46-.406c.035-.034.066-.07.1-.105.107-.11.21-.22.308-.337.044-.053.084-.108.126-.162.081-.104.16-.21.233-.319zm-5.005 1.775H10.45v3.048H8.143V5.57h4.319c2.837 0 5.11 2.211 5.11 4.905s-2.273 4.905-5.11 4.905z" }) + ] + } + ); +}); + +exports.default = SiPeerlist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.d.ts new file mode 100644 index 000000000..6498ff5fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AA45"; +declare const SiPeerlist: IconType; +export { SiPeerlist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.mjs new file mode 100644 index 000000000..e0c2009e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeerlist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AA45"; +const SiPeerlist = React.forwardRef(function SiPeerlist2({ title = "Peerlist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C2.667 0 0 2.667 0 12s2.673 12 12 12 12-2.667 12-12S21.327 0 12 0zm8.892 20.894c-1.57 1.569-4.247 2.249-8.892 2.249s-7.322-.68-8.892-2.25C1.735 19.522 1.041 17.3.89 13.654A39.74 39.74 0 0 1 .857 12c0-1.162.043-2.201.13-3.13.177-1.859.537-3.278 1.106-4.366.284-.544.62-1.006 1.013-1.398s.854-.729 1.398-1.013C5.592 1.524 7.01 1.164 8.87.988 9.799.9 10.838.858 12 .858c4.645 0 7.322.68 8.892 2.248 1.569 1.569 2.25 4.246 2.25 8.894s-.681 7.325-2.25 8.894zM20.538 3.46C19.064 1.986 16.51 1.357 12 1.357c-4.513 0-7.067.629-8.54 2.103C1.986 4.933 1.357 7.487 1.357 12c0 4.511.63 7.065 2.105 8.54C4.936 22.014 7.49 22.643 12 22.643s7.064-.629 8.538-2.103c1.475-1.475 2.105-4.029 2.105-8.54s-.63-7.065-2.105-8.54zM14.25 16.49a6.097 6.097 0 0 1-2.442.59v2.706H10.45v.357H6.429V5.57h.357V4.214h5.676c3.565 0 6.467 2.81 6.467 6.262 0 2.852-1.981 5.26-4.68 6.013zm-1.788-8.728H10.45v5.428h2.011c1.532 0 2.802-1.2 2.802-2.714s-1.27-2.714-2.802-2.714zm.901 4.351c.117-.239.186-.502.186-.78 0-1.01-.855-1.857-1.945-1.857h-.296V8.62h1.154c1.09 0 1.945.847 1.945 1.857 0 .705-.422 1.323-1.044 1.637zm4.104 1.493c.043-.063.083-.129.123-.194a5.653 5.653 0 0 0 .526-1.103 5.56 5.56 0 0 0 .11-.362c.02-.076.042-.15.06-.227a5.58 5.58 0 0 0 .073-.41c.01-.068.025-.134.032-.203.024-.207.038-.417.038-.63 0-3.198-2.687-5.763-5.967-5.763H7.286v14.572h4.022v-3.048h1.154c1.43 0 2.747-.488 3.778-1.303a5.92 5.92 0 0 0 .46-.406c.035-.034.066-.07.1-.105.107-.11.21-.22.308-.337.044-.053.084-.108.126-.162.081-.104.16-.21.233-.319zm-5.005 1.775H10.45v3.048H8.143V5.57h4.319c2.837 0 5.11 2.211 5.11 4.905s-2.273 4.905-5.11 4.905z" }) + ] + } + ); +}); + +export { SiPeerlist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.cjs new file mode 100644 index 000000000..bdea7bf88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F1680D"; +const SiPeertube = React__namespace.forwardRef(function SiPeertube2({ title = "PeerTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6.545v10.91L20.727 12M3.273 12v12L12 17.455M3.273 0v12L12 6.545" }) + ] + } + ); +}); + +exports.default = SiPeertube; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.d.ts new file mode 100644 index 000000000..686b347f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F1680D"; +declare const SiPeertube: IconType; +export { SiPeertube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.mjs new file mode 100644 index 000000000..0ec2ff39d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeertube.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F1680D"; +const SiPeertube = React.forwardRef(function SiPeertube2({ title = "PeerTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6.545v10.91L20.727 12M3.273 12v12L12 17.455M3.273 0v12L12 6.545" }) + ] + } + ); +}); + +export { SiPeertube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.cjs new file mode 100644 index 000000000..d71ba6062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDC43E"; +const SiPegasusairlines = React__namespace.forwardRef(function SiPegasusairlines2({ title = "Pegasus Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5113 12.1013l-.5743 1.331H8.77l-.0493-.0901c-.3208.1335-.5936.1852-.9663.1852-.5925 0-1.0767-.4802-1.0767-1.0725 0-.0367.0004-.0731.0042-.1085.1518-1.3041 1.2565-2.3233 2.6013-2.3233.648 0 1.0171.1195 1.559.3832l-.1432.3418c-.0273.0667-.1053.1137-.1661.0842-.0643-.0292-.0496-.0689-.08-.1344-.0498-.1077-.1157-.1419-.1577-.1709-.2104-.1327-.3523-.1377-.4959-.1377-.3395 0-.6469.1272-.8821.337-.5085.4506-.8634 1.058-.9629 1.7978-.0438.2834.1802.5511.4678.5486.3227 0 .4995-.1865.6234-.4626l.2272-.5333c.0277-.0679-.0437-.1262-.0727-.13-.0487-.0189-.0808-.058-.0808-.1058 0-.0659.051-.1193.143-.1193l1.4158.0002c.0845-.0048.147.0872.113.1654-.0158.0401-.0473.0619-.1027.0687-.0997.0158-.1398.0582-.177.1453zm-3.9695-.6931a.1543.1543 0 0 0-.1314.0752c-.0485.0777-.0951.0859-.1759.0915l-.7152.0008.4796-1.1131h.8508c.0485-.0028.0746.0544.071.0821-.0017.0525.0231.0968.067.1159.0605.026.1348-.0118.1659-.0842l.2035-.4714h-2.701c-.092 0-.1468.0506-.1468.1163 0 .0481.0309.0884.0798.1073.042.0092.0983.0712.0752.1314l-1.2877 2.9854h2.9656l.1661-.3817c.0374-.076-.0232-.171-.1083-.1688a.1547.1547 0 0 0-.1314.0752c-.0535.0857-.118.1182-.2127.1182l-1.1895-.0008.5083-1.1807.7849.0006c.0468.0021.0659.0563.0638.0817-.0019.0523.0111.0968.0552.1157.0605.0258.135-.0118.1661-.0846l.1938-.4433c.0339-.0722-.0126-.1714-.0967-.1687zm-3.7169.7215h-.9761l-.4319 1.0146c-.0157.0281.0052.0631.0321.0743.0491.0187.08.0592.08.1069 0 .0661-.064.1195-.1432.1195H0l1.2982-3.0181c.0188-.0439-.0231-.0869-.0489-.0948-.0487-.0189-.08-.0592-.08-.1073 0-.0657.0643-.1191.1434-.1191.5136-.0003 1.7208-.0002 2.2211.0025.2461 0 .4636.1449.5543.3576.0519.1293.079.2692.079.4174 0 .2331-.0718.4495-.1934.6289-.2606.3862-.6877.6176-1.1488.6176zm.0168-1.613c-.0621-.0457-.205-.0606-.27-.0535l-.5476 1.2722.2138-.0013c.2719-.0019.4907-.1547.6412-.3998.1986-.3227.1818-.6887-.0374-.8176zm18.6699-.1285c.0552-.0067.0867-.0286.1027-.0687.0334-.0778-.0281-.1701-.1132-.1652l-1.3392-.0002-1.1658 2.7034a.4988.4988 0 0 1-.4577.3003c-.0403 0-.0876-.0128-.1249-.0216-.1258-.0334-.2219-.1436-.2219-.2986.0067-.1974.1262-.4812.1894-.6282l.7254-1.6735c.0372-.0874.0762-.1319.1762-.1476.0552-.0067.0867-.0286.1027-.0687.0334-.0777-.028-.17-.113-.1652h-1.4631c-.0789 0-.143.0533-.143.1193 0 .0479.0309.0882.0796.1071.0258.0077.0678.0512.0491.0945l-.5258 1.2178c-.1327.2845-.2091.6064-.2161.9381 0 .3233.1865.6037.4556.7422.2849.1367.6005.2137.9354.2137a2.3863 2.3863 0 0 0 2.2267-1.5181l.6624-1.5317c.0374-.0876.0786-.1334.1785-.1491zm1.1967-.3589c-.8626.0603-1.3988.6858-1.3482 1.4087.0181.2572.1119.4917.2553.6853 0 0 .6433.7727.6814.822.0223.0307.0827.1218.089.2116.0166.2392-.1042.4378-.4107.4594-.3559.025-.6517-.1283-.7807-.3578-.0202-.057-.0163-.1273-.0829-.1461-.0592-.0206-.1272.0202-.152.0909l-.1447.4132c.3229.2488.7532.3931 1.2955.354.8626-.0605 1.3988-.6858 1.348-1.4083-.0176-.2576-.1915-.4869-.3349-.6801-.1046-.1284-.4105-.4944-.5209-.6266-.0797-.1144-.1584-.2415-.1718-.3853-.0174-.2499.1537-.4655.4603-.4869.354-.025.6005.1228.7313.35.0198.0571.016.1273.0829.1461.0592.0206.127-.0202.1518-.0909l.143-.4064c-.3231-.2486-.7496-.3918-1.2917-.3528zm-5.6636.8504c-.067-.0189-.0631-.0891-.0831-.1461-.1308-.2272-.3773-.375-.7311-.35-.3068.0214-.4779.2371-.4607.4869.014.1437.092.2709.1722.3853.1119.1339.4147.4965.5205.6266.1438.1932.3173.4225.3353.6801.0504.7225-.4859 1.3478-1.3482 1.4083-.5424.0391-.9728-.1052-1.2957-.354l.0604-.1726h-1.3956c-.0792 0-.1419-.0527-.1419-.1186 0-.0479.0309-.0882.0796-.1069.0252-.0084.0656-.0475.0508-.0915l-.2308-.9879H11.528l-.6066.9827c-.0221.0454.0234.0855.0479.0941.0489.0189.0802.0588.0804.1069.0004.0657-.0634.1195-.1424.1199l-.6226.0015c-.0846.0042-.1492-.0882-.1138-.1659.0193-.046.0609-.063.1163-.0697.0781-.0126.1178-.0422.1543-.0968l1.8998-3.0053 1.1637-.0002c.079 0 .1428.0548.1428.1207 0 .0479-.0311.0882-.0798.1071-.021.0094-.0527.0311-.0517.0743l.7032 3.0205.0789-.2254c.0252-.0708.093-.1115.152-.0909.043.0151.0695.0554.0712.1054a.0869.0869 0 0 0 .012.0407c.1289.2295.4248.3828.7807.3578.3066-.0216.4273-.2203.4105-.4594-.0063-.0899-.0668-.181-.089-.2116-.038-.0493-.6811-.822-.6811-.822-.1434-.1936-.2373-.4281-.2553-.6853-.0506-.7229.4857-1.3484 1.3482-1.4087.5424-.039.9688.1042 1.2915.3528l-.1428.4067c-.0247.0704-.0928.1111-.1516.0905zm-4.562.8538l-.1919-.8304-.5125.8304h.7044z" }) + ] + } + ); +}); + +exports.default = SiPegasusairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.d.ts new file mode 100644 index 000000000..547f2def4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDC43E"; +declare const SiPegasusairlines: IconType; +export { SiPegasusairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.mjs new file mode 100644 index 000000000..996b63903 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPegasusairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDC43E"; +const SiPegasusairlines = React.forwardRef(function SiPegasusairlines2({ title = "Pegasus Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.5113 12.1013l-.5743 1.331H8.77l-.0493-.0901c-.3208.1335-.5936.1852-.9663.1852-.5925 0-1.0767-.4802-1.0767-1.0725 0-.0367.0004-.0731.0042-.1085.1518-1.3041 1.2565-2.3233 2.6013-2.3233.648 0 1.0171.1195 1.559.3832l-.1432.3418c-.0273.0667-.1053.1137-.1661.0842-.0643-.0292-.0496-.0689-.08-.1344-.0498-.1077-.1157-.1419-.1577-.1709-.2104-.1327-.3523-.1377-.4959-.1377-.3395 0-.6469.1272-.8821.337-.5085.4506-.8634 1.058-.9629 1.7978-.0438.2834.1802.5511.4678.5486.3227 0 .4995-.1865.6234-.4626l.2272-.5333c.0277-.0679-.0437-.1262-.0727-.13-.0487-.0189-.0808-.058-.0808-.1058 0-.0659.051-.1193.143-.1193l1.4158.0002c.0845-.0048.147.0872.113.1654-.0158.0401-.0473.0619-.1027.0687-.0997.0158-.1398.0582-.177.1453zm-3.9695-.6931a.1543.1543 0 0 0-.1314.0752c-.0485.0777-.0951.0859-.1759.0915l-.7152.0008.4796-1.1131h.8508c.0485-.0028.0746.0544.071.0821-.0017.0525.0231.0968.067.1159.0605.026.1348-.0118.1659-.0842l.2035-.4714h-2.701c-.092 0-.1468.0506-.1468.1163 0 .0481.0309.0884.0798.1073.042.0092.0983.0712.0752.1314l-1.2877 2.9854h2.9656l.1661-.3817c.0374-.076-.0232-.171-.1083-.1688a.1547.1547 0 0 0-.1314.0752c-.0535.0857-.118.1182-.2127.1182l-1.1895-.0008.5083-1.1807.7849.0006c.0468.0021.0659.0563.0638.0817-.0019.0523.0111.0968.0552.1157.0605.0258.135-.0118.1661-.0846l.1938-.4433c.0339-.0722-.0126-.1714-.0967-.1687zm-3.7169.7215h-.9761l-.4319 1.0146c-.0157.0281.0052.0631.0321.0743.0491.0187.08.0592.08.1069 0 .0661-.064.1195-.1432.1195H0l1.2982-3.0181c.0188-.0439-.0231-.0869-.0489-.0948-.0487-.0189-.08-.0592-.08-.1073 0-.0657.0643-.1191.1434-.1191.5136-.0003 1.7208-.0002 2.2211.0025.2461 0 .4636.1449.5543.3576.0519.1293.079.2692.079.4174 0 .2331-.0718.4495-.1934.6289-.2606.3862-.6877.6176-1.1488.6176zm.0168-1.613c-.0621-.0457-.205-.0606-.27-.0535l-.5476 1.2722.2138-.0013c.2719-.0019.4907-.1547.6412-.3998.1986-.3227.1818-.6887-.0374-.8176zm18.6699-.1285c.0552-.0067.0867-.0286.1027-.0687.0334-.0778-.0281-.1701-.1132-.1652l-1.3392-.0002-1.1658 2.7034a.4988.4988 0 0 1-.4577.3003c-.0403 0-.0876-.0128-.1249-.0216-.1258-.0334-.2219-.1436-.2219-.2986.0067-.1974.1262-.4812.1894-.6282l.7254-1.6735c.0372-.0874.0762-.1319.1762-.1476.0552-.0067.0867-.0286.1027-.0687.0334-.0777-.028-.17-.113-.1652h-1.4631c-.0789 0-.143.0533-.143.1193 0 .0479.0309.0882.0796.1071.0258.0077.0678.0512.0491.0945l-.5258 1.2178c-.1327.2845-.2091.6064-.2161.9381 0 .3233.1865.6037.4556.7422.2849.1367.6005.2137.9354.2137a2.3863 2.3863 0 0 0 2.2267-1.5181l.6624-1.5317c.0374-.0876.0786-.1334.1785-.1491zm1.1967-.3589c-.8626.0603-1.3988.6858-1.3482 1.4087.0181.2572.1119.4917.2553.6853 0 0 .6433.7727.6814.822.0223.0307.0827.1218.089.2116.0166.2392-.1042.4378-.4107.4594-.3559.025-.6517-.1283-.7807-.3578-.0202-.057-.0163-.1273-.0829-.1461-.0592-.0206-.1272.0202-.152.0909l-.1447.4132c.3229.2488.7532.3931 1.2955.354.8626-.0605 1.3988-.6858 1.348-1.4083-.0176-.2576-.1915-.4869-.3349-.6801-.1046-.1284-.4105-.4944-.5209-.6266-.0797-.1144-.1584-.2415-.1718-.3853-.0174-.2499.1537-.4655.4603-.4869.354-.025.6005.1228.7313.35.0198.0571.016.1273.0829.1461.0592.0206.127-.0202.1518-.0909l.143-.4064c-.3231-.2486-.7496-.3918-1.2917-.3528zm-5.6636.8504c-.067-.0189-.0631-.0891-.0831-.1461-.1308-.2272-.3773-.375-.7311-.35-.3068.0214-.4779.2371-.4607.4869.014.1437.092.2709.1722.3853.1119.1339.4147.4965.5205.6266.1438.1932.3173.4225.3353.6801.0504.7225-.4859 1.3478-1.3482 1.4083-.5424.0391-.9728-.1052-1.2957-.354l.0604-.1726h-1.3956c-.0792 0-.1419-.0527-.1419-.1186 0-.0479.0309-.0882.0796-.1069.0252-.0084.0656-.0475.0508-.0915l-.2308-.9879H11.528l-.6066.9827c-.0221.0454.0234.0855.0479.0941.0489.0189.0802.0588.0804.1069.0004.0657-.0634.1195-.1424.1199l-.6226.0015c-.0846.0042-.1492-.0882-.1138-.1659.0193-.046.0609-.063.1163-.0697.0781-.0126.1178-.0422.1543-.0968l1.8998-3.0053 1.1637-.0002c.079 0 .1428.0548.1428.1207 0 .0479-.0311.0882-.0798.1071-.021.0094-.0527.0311-.0517.0743l.7032 3.0205.0789-.2254c.0252-.0708.093-.1115.152-.0909.043.0151.0695.0554.0712.1054a.0869.0869 0 0 0 .012.0407c.1289.2295.4248.3828.7807.3578.3066-.0216.4273-.2203.4105-.4594-.0063-.0899-.0668-.181-.089-.2116-.038-.0493-.6811-.822-.6811-.822-.1434-.1936-.2373-.4281-.2553-.6853-.0506-.7229.4857-1.3484 1.3482-1.4087.5424-.039.9688.1042 1.2915.3528l-.1428.4067c-.0247.0704-.0928.1111-.1516.0905zm-4.562.8538l-.1919-.8304-.5125.8304h.7044z" }) + ] + } + ); +}); + +export { SiPegasusairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.cjs new file mode 100644 index 000000000..9cad49aee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14A0C4"; +const SiPelican = React__namespace.forwardRef(function SiPelican2({ title = "Pelican", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.9418 0c.342 1.0548 1.8764 2.1857 2.9063 2.6238 1.3134.5583 2.5984.6849 3.7501.8122.895.0963 1.7019.2014 2.3439.4998.1622.0726.3288.148.4688.2499.4586.3364.9464.9876 1.2813 1.4368.7186.9583.5858 1.7451 1.4375 2.2178.089.0492.1683.083.2813.125.271.1018.667.2273.8437-.1563a.788.788 0 00.0625-.1874c-.0712-.229-.321-.4327-.4687-.531-.2618-.171-.3735-.274-.5625-.4685-.3494-.3583-.348-.9508-.5938-1.3744.3092-.131 1.9392-.3597 2.2813-.3124.7313.0326 1.31.0782 1.75.531.1727.1365.2497.2567.4064.3749.011.009.0202.024.0312.0312.6933.5037 1.3388.6705 1.9063.8434.1496.0454.2988.1054.4375.1562.213.0763.4065.1594.5938.281.2222.1474.6089.542.625.8747-.5587-.1783-.207.0323-1.0313-.0312-.4019-.0456-.8058-.0647-1.2187-.0937-.6422-.0454-1.273-.1043-1.8751-.2187-.1002-.0184-.2146-.0388-.3125-.0625-.0766-.0163-.146-.011-.2188-.0312-.0018.0308 0 .0353 0 .0625-.0166.6292.4214.9586-.5938 2.1553-.009.0127-.0204.0167-.0312.0312-.2695.3147-1.657.9163-2.0938 1.0308-1.8593.3728-3.292-.828-5.5315-.2187-.7877.2928-1.3567 1.5756-1.7188 2.5302-.482 1.2677-.8758 2.7956-1.3126 4.3106-.2.6982-.4178 1.4015-.6562 2.0616-.575 1.584-1.3113 2.9428-2.4064 3.717-.1638.1256-.787.41-.8125.6248.404.2037 4.185.056 4.8127 0 2.5033-.2184 3.6468-1.7733 4.4689-3.9045.5659-1.462 1.065-3.9864 2.0313-5.3102.0128-.0182.0183-.015.0313-.0312.1456-.1967.327-.3691.5-.4998.0454-.0347.0775-.0648.125-.0937.0344-.0219.1566-.0592.3438-.0937 1.7357-.3074 9.3491-1.3474 9.844-6.872.051-.5581.0158-1.1588-.0937-1.8117-.0543-.3364-.115-.6653-.2187-1.0308-.2457-.8691-.7981-1.614-1.5313-2.2177-.1926-.16-.405-.3285-.625-.4686-.846-.54-1.8774-.921-2.969-1.1557-.7332-.1582-1.4874-.239-2.25-.25C9.8402.0326 6.3978.2075.9418 0zm1.625 4.2169c.0235.0382.0389.0574.0625.0937C4.2284 6.8382 6.239 6.8135 8.067 7.0281c.666.0782 1.317.1849 1.9063.4686.262.1235.5116.2649.75.4685-.0292-.131-.076-.2564-.125-.3748-.444-1.0763-1.6487-1.6661-2.6875-1.9679-1.3938-.4984-2.4038-.0181-5.344-1.4056zm1.4063 3.186c.0107.0528.0094.0946.0313.1563.2199.6346 1.0403 1.6503 2.0938 1.8741.4567.1636.315.1174 1.0938.0937 1.1406-.0581 1.692-.0793 2.5.25-.02-.0493-.0423-.1091-.0624-.1563C9.0074 8.175 8.2593 8.421 5.8794 8.2464c-1.0188-.3074-1.2587-.3415-1.9063-.8434z" }) + ] + } + ); +}); + +exports.default = SiPelican; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.d.ts new file mode 100644 index 000000000..661b8367e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14A0C4"; +declare const SiPelican: IconType; +export { SiPelican as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.mjs new file mode 100644 index 000000000..692b86a8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPelican.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14A0C4"; +const SiPelican = React.forwardRef(function SiPelican2({ title = "Pelican", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.9418 0c.342 1.0548 1.8764 2.1857 2.9063 2.6238 1.3134.5583 2.5984.6849 3.7501.8122.895.0963 1.7019.2014 2.3439.4998.1622.0726.3288.148.4688.2499.4586.3364.9464.9876 1.2813 1.4368.7186.9583.5858 1.7451 1.4375 2.2178.089.0492.1683.083.2813.125.271.1018.667.2273.8437-.1563a.788.788 0 00.0625-.1874c-.0712-.229-.321-.4327-.4687-.531-.2618-.171-.3735-.274-.5625-.4685-.3494-.3583-.348-.9508-.5938-1.3744.3092-.131 1.9392-.3597 2.2813-.3124.7313.0326 1.31.0782 1.75.531.1727.1365.2497.2567.4064.3749.011.009.0202.024.0312.0312.6933.5037 1.3388.6705 1.9063.8434.1496.0454.2988.1054.4375.1562.213.0763.4065.1594.5938.281.2222.1474.6089.542.625.8747-.5587-.1783-.207.0323-1.0313-.0312-.4019-.0456-.8058-.0647-1.2187-.0937-.6422-.0454-1.273-.1043-1.8751-.2187-.1002-.0184-.2146-.0388-.3125-.0625-.0766-.0163-.146-.011-.2188-.0312-.0018.0308 0 .0353 0 .0625-.0166.6292.4214.9586-.5938 2.1553-.009.0127-.0204.0167-.0312.0312-.2695.3147-1.657.9163-2.0938 1.0308-1.8593.3728-3.292-.828-5.5315-.2187-.7877.2928-1.3567 1.5756-1.7188 2.5302-.482 1.2677-.8758 2.7956-1.3126 4.3106-.2.6982-.4178 1.4015-.6562 2.0616-.575 1.584-1.3113 2.9428-2.4064 3.717-.1638.1256-.787.41-.8125.6248.404.2037 4.185.056 4.8127 0 2.5033-.2184 3.6468-1.7733 4.4689-3.9045.5659-1.462 1.065-3.9864 2.0313-5.3102.0128-.0182.0183-.015.0313-.0312.1456-.1967.327-.3691.5-.4998.0454-.0347.0775-.0648.125-.0937.0344-.0219.1566-.0592.3438-.0937 1.7357-.3074 9.3491-1.3474 9.844-6.872.051-.5581.0158-1.1588-.0937-1.8117-.0543-.3364-.115-.6653-.2187-1.0308-.2457-.8691-.7981-1.614-1.5313-2.2177-.1926-.16-.405-.3285-.625-.4686-.846-.54-1.8774-.921-2.969-1.1557-.7332-.1582-1.4874-.239-2.25-.25C9.8402.0326 6.3978.2075.9418 0zm1.625 4.2169c.0235.0382.0389.0574.0625.0937C4.2284 6.8382 6.239 6.8135 8.067 7.0281c.666.0782 1.317.1849 1.9063.4686.262.1235.5116.2649.75.4685-.0292-.131-.076-.2564-.125-.3748-.444-1.0763-1.6487-1.6661-2.6875-1.9679-1.3938-.4984-2.4038-.0181-5.344-1.4056zm1.4063 3.186c.0107.0528.0094.0946.0313.1563.2199.6346 1.0403 1.6503 2.0938 1.8741.4567.1636.315.1174 1.0938.0937 1.1406-.0581 1.692-.0793 2.5.25-.02-.0493-.0423-.1091-.0624-.1563C9.0074 8.175 8.2593 8.421 5.8794 8.2464c-1.0188-.3074-1.2587-.3415-1.9063-.8434z" }) + ] + } + ); +}); + +export { SiPelican as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.cjs new file mode 100644 index 000000000..bca99dc04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#181A1D"; +const SiPeloton = React__namespace.forwardRef(function SiPeloton2({ title = "Peloton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.7283 5.7642l1.7307-3.0066c.5045-.8803.2077-2.0077-.6725-2.5121-.8802-.5044-2.0077-.2077-2.5121.6725l-1.7407 3.0066c-3.699-1.167-7.843.3462-9.8606 3.8473-1.2857 2.2253-1.444 4.7869-.6626 7.032l3.2044-5.5583c.732-1.2759 1.9286-2.1858 3.3528-2.5715 1.4242-.3857 2.9078-.188 4.1836.5539 2.6308 1.523 3.5407 4.9055 2.0176 7.5363-1.523 2.6308-4.8957 3.5407-7.5364 2.0176l1.8396-3.1846c.8803.5044 2.0077.2077 2.5122-.6726.5044-.8802.2076-2.0077-.6726-2.512-.8802-.5045-2.0077-.2078-2.5121.6725l-5.855 10.1572c-.5044.8803-.2077 2.0077.6725 2.5121.8802.5044 2.0077.2077 2.5121-.6725L9.47 20.0754c3.699 1.167 7.843-.3462 9.8606-3.8473 2.0176-3.4913 1.256-7.833-1.6022-10.4639z" }) + ] + } + ); +}); + +exports.default = SiPeloton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.d.ts new file mode 100644 index 000000000..d24747703 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#181A1D"; +declare const SiPeloton: IconType; +export { SiPeloton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.mjs new file mode 100644 index 000000000..5f7a6b0bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeloton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#181A1D"; +const SiPeloton = React.forwardRef(function SiPeloton2({ title = "Peloton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.7283 5.7642l1.7307-3.0066c.5045-.8803.2077-2.0077-.6725-2.5121-.8802-.5044-2.0077-.2077-2.5121.6725l-1.7407 3.0066c-3.699-1.167-7.843.3462-9.8606 3.8473-1.2857 2.2253-1.444 4.7869-.6626 7.032l3.2044-5.5583c.732-1.2759 1.9286-2.1858 3.3528-2.5715 1.4242-.3857 2.9078-.188 4.1836.5539 2.6308 1.523 3.5407 4.9055 2.0176 7.5363-1.523 2.6308-4.8957 3.5407-7.5364 2.0176l1.8396-3.1846c.8803.5044 2.0077.2077 2.5122-.6726.5044-.8802.2076-2.0077-.6726-2.512-.8802-.5045-2.0077-.2078-2.5121.6725l-5.855 10.1572c-.5044.8803-.2077 2.0077.6725 2.5121.8802.5044 2.0077.2077 2.5121-.6725L9.47 20.0754c3.699 1.167 7.843-.3462 9.8606-3.8473 2.0176-3.4913 1.256-7.833-1.6022-10.4639z" }) + ] + } + ); +}); + +export { SiPeloton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.cjs new file mode 100644 index 000000000..a8fd7f712 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD1414"; +const SiPenny = React__namespace.forwardRef(function SiPenny2({ title = "Penny", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.053 11.914h.368c.419 0 .675-.245.718-.556.043-.27-.154-.556-.547-.556H2.24zm18.611-.638.839-1.504h1.924l-2.908 4.399H18.56l.933-1.26-1.07-3.049-.727 4.309h-1.54l-.949-2.036-.342 2.036h-1.54l.745-4.4h1.582l.915 1.971.334-1.97h3.37l.393 1.504zm-7.21-1.504-.744 4.399h-1.54l-.949-2.036-.342 2.036h-1.54l.745-4.4h1.582l.915 1.971.334-1.97h1.539zM3.036 9.707c1.07 0 1.788.547 1.797 1.438l.23-1.373h3.49l-.188 1.112H6.517l-.094.523h1.668l-.188 1.104H6.235l-.094.548h1.873l-.188 1.112H4.32l.402-2.38c-.273.77-1.009 1.227-1.967 1.227h-.88l-.198 1.153H0l.753-4.464zM24 13.345c0 .523-.445.948-.992.948-.547 0-.992-.425-.992-.948 0-.523.445-.948.992-.948.556.008.992.425.992.948z" }) + ] + } + ); +}); + +exports.default = SiPenny; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.d.ts new file mode 100644 index 000000000..6ecde4ab0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD1414"; +declare const SiPenny: IconType; +export { SiPenny as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.mjs new file mode 100644 index 000000000..e2f107bee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPenny.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD1414"; +const SiPenny = React.forwardRef(function SiPenny2({ title = "Penny", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.053 11.914h.368c.419 0 .675-.245.718-.556.043-.27-.154-.556-.547-.556H2.24zm18.611-.638.839-1.504h1.924l-2.908 4.399H18.56l.933-1.26-1.07-3.049-.727 4.309h-1.54l-.949-2.036-.342 2.036h-1.54l.745-4.4h1.582l.915 1.971.334-1.97h3.37l.393 1.504zm-7.21-1.504-.744 4.399h-1.54l-.949-2.036-.342 2.036h-1.54l.745-4.4h1.582l.915 1.971.334-1.97h1.539zM3.036 9.707c1.07 0 1.788.547 1.797 1.438l.23-1.373h3.49l-.188 1.112H6.517l-.094.523h1.668l-.188 1.104H6.235l-.094.548h1.873l-.188 1.112H4.32l.402-2.38c-.273.77-1.009 1.227-1.967 1.227h-.88l-.198 1.153H0l.753-4.464zM24 13.345c0 .523-.445.948-.992.948-.547 0-.992-.425-.992-.948 0-.523.445-.948.992-.948.556.008.992.425.992.948z" }) + ] + } + ); +}); + +export { SiPenny as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.cjs new file mode 100644 index 000000000..0b7013a77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPenpot = React__namespace.forwardRef(function SiPenpot2({ title = "Penpot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.654 0 5.13 3.554v2.01L2.934 6.608l-.02-.009v13.109l8.563 4.045L12 24l.523-.247 8.563-4.045V6.6l-.017.008-2.196-1.045V3.555l-.077-.108L16.349.001l-2.524 3.554v.004L11.989.973l-1.823 2.566-.065-.091zm.447 2.065.976 1.374H6.232l.964-1.358zm8.694 0 .976 1.374h-2.845l.965-1.358zm-4.36.971.976 1.375h-2.845l.965-1.359zM5.962 4.132h1.35v4.544l-1.35-.638Zm2.042 0h1.343v5.506l-1.343-.635zm6.652 0h1.35V9l-1.35.637V4.132zm2.042 0h1.343v3.905l-1.343.634zm-6.402.972h1.35v5.62l-1.35-.638zm2.042 0h1.343v4.993l-1.343.634zm6.534 1.493 1.188.486-1.188.561zM5.13 6.6v1.047l-1.187-.561ZM3.96 8.251l7.517 3.55v10.795l-7.516-3.55zm16.08 0v10.794l-7.517 3.55V11.802z" }) + ] + } + ); +}); + +exports.default = SiPenpot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.d.ts new file mode 100644 index 000000000..05077a89c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPenpot: IconType; +export { SiPenpot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.mjs new file mode 100644 index 000000000..6bba57415 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPenpot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPenpot = React.forwardRef(function SiPenpot2({ title = "Penpot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.654 0 5.13 3.554v2.01L2.934 6.608l-.02-.009v13.109l8.563 4.045L12 24l.523-.247 8.563-4.045V6.6l-.017.008-2.196-1.045V3.555l-.077-.108L16.349.001l-2.524 3.554v.004L11.989.973l-1.823 2.566-.065-.091zm.447 2.065.976 1.374H6.232l.964-1.358zm8.694 0 .976 1.374h-2.845l.965-1.358zm-4.36.971.976 1.375h-2.845l.965-1.359zM5.962 4.132h1.35v4.544l-1.35-.638Zm2.042 0h1.343v5.506l-1.343-.635zm6.652 0h1.35V9l-1.35.637V4.132zm2.042 0h1.343v3.905l-1.343.634zm-6.402.972h1.35v5.62l-1.35-.638zm2.042 0h1.343v4.993l-1.343.634zm6.534 1.493 1.188.486-1.188.561zM5.13 6.6v1.047l-1.187-.561ZM3.96 8.251l7.517 3.55v10.795l-7.516-3.55zm16.08 0v10.794l-7.517 3.55V11.802z" }) + ] + } + ); +}); + +export { SiPenpot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.cjs new file mode 100644 index 000000000..6cac47e02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9E66BF"; +const SiPercy = React__namespace.forwardRef(function SiPercy2({ title = "Percy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.235 2.4s.569 1.169.616 1.547c0 0-1.856-.646-4.458-.891 0 0 1.25.872 1.734 1.538 0 0-1.84-.093-4.586 0 0 0 1.561.634 2.252 1.215 0 0-3.26.331-5.103.862 0 0 2.076.73 2.652 1.276 0 0-2.648.754-5.316 2.294 0 0 1.482.26 2.642.766 0 0-1.478 1.033-3.668 3.852 0 0 1.62-.309 2.73-.222 0 0-1.407 1.644-2.141 4.158 0 0 .813-.518 1.602-.706 0 0 .084 2.998 1.724 3.478v-.002a.774.774 0 0 0 .225.034c.08 0 .163-.012.248-.036.52-.15.915-.663 1.37-1.256.15-.195.303-.395.466-.59.2-.284.438-.54.706-.762.58-.478 1.38-.84 2.358-.695 1.1.093 1.78 1.189 2.327 2.07.283.458.659 1.27 1.289 1.27.696 0 .94-.834 1.25-1.862.292-.97.726-1.891 1.29-2.732 1.085-1.617 2.474-2.495 4.14-3.36 1.595-.83 3.102-1.614 3.858-2.803.379-.594.567-1.325.558-2.169a6.966 6.966 0 0 0-.31-1.909c-.139-.455-.505-.902-.939-.72a3.417 3.417 0 0 1-1.151.256c-.858-.805-3.379-2.4-5.038-3.303 0 0 .202.592.482 1.699 0 0-1.787-1.396-3.81-2.296zm0 2.7 3.81.945-1.233.255zM9.957 6.67l4.571.354-1.388.46Zm6.955 1.082-.678.514-2.383.134zm-5.784.514-1.088.73-3.018-.287Zm4.505 1.206-1.105.617-3.002-.176zm-8.282.77-.679 1.312-2.982 1.313zm4.135.533-.77 1.265-3.853.942zm-5.845 2.354-.118 1.313L3.6 16.2zm11.31 3.151c-1.093 1.127-2.002 2.806-2.232 4.121.39.58.746.867 1.08.873h.012c.346 0 .575-.233.68-.693.077-.343.094-.813.114-1.36.029-.844.067-1.894.346-2.94zm-7.904 2.512c-1.018.011-2.008.83-2.506 1.532v.001c.283.64.587.953.925.953a.53.53 0 0 0 .082-.007c.46-.072.886-.963 1.242-1.825a19.8 19.8 0 0 0 .257-.654z" }) + ] + } + ); +}); + +exports.default = SiPercy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.d.ts new file mode 100644 index 000000000..0883bc39d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9E66BF"; +declare const SiPercy: IconType; +export { SiPercy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.mjs new file mode 100644 index 000000000..df2c7f479 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPercy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9E66BF"; +const SiPercy = React.forwardRef(function SiPercy2({ title = "Percy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.235 2.4s.569 1.169.616 1.547c0 0-1.856-.646-4.458-.891 0 0 1.25.872 1.734 1.538 0 0-1.84-.093-4.586 0 0 0 1.561.634 2.252 1.215 0 0-3.26.331-5.103.862 0 0 2.076.73 2.652 1.276 0 0-2.648.754-5.316 2.294 0 0 1.482.26 2.642.766 0 0-1.478 1.033-3.668 3.852 0 0 1.62-.309 2.73-.222 0 0-1.407 1.644-2.141 4.158 0 0 .813-.518 1.602-.706 0 0 .084 2.998 1.724 3.478v-.002a.774.774 0 0 0 .225.034c.08 0 .163-.012.248-.036.52-.15.915-.663 1.37-1.256.15-.195.303-.395.466-.59.2-.284.438-.54.706-.762.58-.478 1.38-.84 2.358-.695 1.1.093 1.78 1.189 2.327 2.07.283.458.659 1.27 1.289 1.27.696 0 .94-.834 1.25-1.862.292-.97.726-1.891 1.29-2.732 1.085-1.617 2.474-2.495 4.14-3.36 1.595-.83 3.102-1.614 3.858-2.803.379-.594.567-1.325.558-2.169a6.966 6.966 0 0 0-.31-1.909c-.139-.455-.505-.902-.939-.72a3.417 3.417 0 0 1-1.151.256c-.858-.805-3.379-2.4-5.038-3.303 0 0 .202.592.482 1.699 0 0-1.787-1.396-3.81-2.296zm0 2.7 3.81.945-1.233.255zM9.957 6.67l4.571.354-1.388.46Zm6.955 1.082-.678.514-2.383.134zm-5.784.514-1.088.73-3.018-.287Zm4.505 1.206-1.105.617-3.002-.176zm-8.282.77-.679 1.312-2.982 1.313zm4.135.533-.77 1.265-3.853.942zm-5.845 2.354-.118 1.313L3.6 16.2zm11.31 3.151c-1.093 1.127-2.002 2.806-2.232 4.121.39.58.746.867 1.08.873h.012c.346 0 .575-.233.68-.693.077-.343.094-.813.114-1.36.029-.844.067-1.894.346-2.94zm-7.904 2.512c-1.018.011-2.008.83-2.506 1.532v.001c.283.64.587.953.925.953a.53.53 0 0 0 .082-.007c.46-.072.886-.963 1.242-1.825a19.8 19.8 0 0 0 .257-.654z" }) + ] + } + ); +}); + +export { SiPercy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.cjs new file mode 100644 index 000000000..2cec9c32c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4C00FF"; +const SiPerforce = React__namespace.forwardRef(function SiPerforce2({ title = "Perforce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.386 14.957 2.279-1.316-.576-.333A1.48 1.48 0 0 1 8.334 12c0-.262.073-.915.755-1.308l10.31-5.953a1.49 1.49 0 0 1 1.51 0c.228.13.755.52.755 1.308v11.906c0 .788-.527 1.178-.754 1.308s-.828.393-1.51 0l-2.732-1.577-2.334 1.348 3.899 2.251a3.81 3.81 0 0 0 3.845 0A3.81 3.81 0 0 0 24 17.953V6.047a3.81 3.81 0 0 0-1.922-3.33 3.83 3.83 0 0 0-1.923-.52c-.66 0-1.32.173-1.922.52L7.923 8.67A3.81 3.81 0 0 0 6 12c0 1.17.51 2.234 1.386 2.956zm9.228-5.913-2.279 1.316.576.333c.682.393.755 1.046.755 1.308 0 .263-.073.915-.755 1.308l-10.31 5.954a1.49 1.49 0 0 1-1.51 0 1.48 1.48 0 0 1-.755-1.308V6.047c0-.788.527-1.178.754-1.308s.828-.393 1.51 0l2.732 1.577 2.334-1.348-3.899-2.251a3.81 3.81 0 0 0-3.845 0A3.81 3.81 0 0 0 0 6.047v11.906c0 1.39.72 2.635 1.922 3.33a3.83 3.83 0 0 0 1.923.52c.66 0 1.32-.173 1.922-.52l10.31-5.953A3.81 3.81 0 0 0 18 12c0-1.17-.51-2.234-1.386-2.956" }) + ] + } + ); +}); + +exports.default = SiPerforce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.d.ts new file mode 100644 index 000000000..a863b7fba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4C00FF"; +declare const SiPerforce: IconType; +export { SiPerforce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.mjs new file mode 100644 index 000000000..97beac13a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerforce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4C00FF"; +const SiPerforce = React.forwardRef(function SiPerforce2({ title = "Perforce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.386 14.957 2.279-1.316-.576-.333A1.48 1.48 0 0 1 8.334 12c0-.262.073-.915.755-1.308l10.31-5.953a1.49 1.49 0 0 1 1.51 0c.228.13.755.52.755 1.308v11.906c0 .788-.527 1.178-.754 1.308s-.828.393-1.51 0l-2.732-1.577-2.334 1.348 3.899 2.251a3.81 3.81 0 0 0 3.845 0A3.81 3.81 0 0 0 24 17.953V6.047a3.81 3.81 0 0 0-1.922-3.33 3.83 3.83 0 0 0-1.923-.52c-.66 0-1.32.173-1.922.52L7.923 8.67A3.81 3.81 0 0 0 6 12c0 1.17.51 2.234 1.386 2.956zm9.228-5.913-2.279 1.316.576.333c.682.393.755 1.046.755 1.308 0 .263-.073.915-.755 1.308l-10.31 5.954a1.49 1.49 0 0 1-1.51 0 1.48 1.48 0 0 1-.755-1.308V6.047c0-.788.527-1.178.754-1.308s.828-.393 1.51 0l2.732 1.577 2.334-1.348-3.899-2.251a3.81 3.81 0 0 0-3.845 0A3.81 3.81 0 0 0 0 6.047v11.906c0 1.39.72 2.635 1.922 3.33a3.83 3.83 0 0 0 1.923.52c.66 0 1.32-.173 1.922-.52l10.31-5.953A3.81 3.81 0 0 0 18 12c0-1.17-.51-2.234-1.386-2.956" }) + ] + } + ); +}); + +export { SiPerforce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.cjs new file mode 100644 index 000000000..126acb4ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0073A1"; +const SiPerl = React__namespace.forwardRef(function SiPerl2({ title = "Perl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.157 1.103a10.91 10.91 0 0 1 9.214 5.404c-1.962.152-3.156 1.698-5.132 3.553-2.81 2.637-4.562.582-5.288-.898-.447-1.004-.847-2.117-1.544-2.769A.4.4 0 0 1 9.3 6.02l.08-.37a.083.083 0 0 0-.074-.1c-.33-.022-.601.093-.84.368a2.5 2.5 0 0 0-.375-.064c-.863-.093-1.036.345-1.873.345H5.81c-.758 0-1.391.361-1.7.892-.248.424-.257.884.15.93-.126.445.292.62 1.224.192 0 0 .733.421 1.749.421.549 0 .712.087.914.967.486 2.138 2.404 5.655 6.282 5.655l.118.166c.659.934.86 2.113.48 3.184-.307.867-.697 1.531-.697 1.531q.01.178.01.349c0 .81-.175 1.553-.387 2.23a10.91 10.91 0 0 1-11.989-6.342A10.91 10.91 0 0 1 7.608 2.01a10.9 10.9 0 0 1 4.55-.907M7.524 6.47c.288 0 .575.231.477.272a.4.4 0 0 1-.1.02.38.38 0 0 1-.375.327.384.384 0 0 1-.378-.326.4.4 0 0 1-.101-.02c-.098-.042.19-.273.477-.273m10.193 10.49q.05 0 .101.007.326.054.694.096.135.01.269.026a13.4 13.4 0 0 0 2.846-.007 10.9 10.9 0 0 1-2.007 2.705c-.11-.23-.547-1.19-.573-2.196q-.156-.01-.313-.026-.13-.014-.256-.022a18 18 0 0 1-.735-.102h-.003c-.032 0-.06.01-.074.035l-.003.012q-.081.265-.182.544c.428 1.084.652 2.078.652 2.078.14.22.258.432.363.64a11 11 0 0 1-2.168 1.264 11 11 0 0 1-1.205.426 13.3 13.3 0 0 1 1.055-2.531s.678-1.445 1.027-2.564v-.004a.55.55 0 0 1 .512-.38" }) + ] + } + ); +}); + +exports.default = SiPerl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.d.ts new file mode 100644 index 000000000..7f72cff3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0073A1"; +declare const SiPerl: IconType; +export { SiPerl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.mjs new file mode 100644 index 000000000..9055d1ebb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0073A1"; +const SiPerl = React.forwardRef(function SiPerl2({ title = "Perl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.157 1.103a10.91 10.91 0 0 1 9.214 5.404c-1.962.152-3.156 1.698-5.132 3.553-2.81 2.637-4.562.582-5.288-.898-.447-1.004-.847-2.117-1.544-2.769A.4.4 0 0 1 9.3 6.02l.08-.37a.083.083 0 0 0-.074-.1c-.33-.022-.601.093-.84.368a2.5 2.5 0 0 0-.375-.064c-.863-.093-1.036.345-1.873.345H5.81c-.758 0-1.391.361-1.7.892-.248.424-.257.884.15.93-.126.445.292.62 1.224.192 0 0 .733.421 1.749.421.549 0 .712.087.914.967.486 2.138 2.404 5.655 6.282 5.655l.118.166c.659.934.86 2.113.48 3.184-.307.867-.697 1.531-.697 1.531q.01.178.01.349c0 .81-.175 1.553-.387 2.23a10.91 10.91 0 0 1-11.989-6.342A10.91 10.91 0 0 1 7.608 2.01a10.9 10.9 0 0 1 4.55-.907M7.524 6.47c.288 0 .575.231.477.272a.4.4 0 0 1-.1.02.38.38 0 0 1-.375.327.384.384 0 0 1-.378-.326.4.4 0 0 1-.101-.02c-.098-.042.19-.273.477-.273m10.193 10.49q.05 0 .101.007.326.054.694.096.135.01.269.026a13.4 13.4 0 0 0 2.846-.007 10.9 10.9 0 0 1-2.007 2.705c-.11-.23-.547-1.19-.573-2.196q-.156-.01-.313-.026-.13-.014-.256-.022a18 18 0 0 1-.735-.102h-.003c-.032 0-.06.01-.074.035l-.003.012q-.081.265-.182.544c.428 1.084.652 2.078.652 2.078.14.22.258.432.363.64a11 11 0 0 1-2.168 1.264 11 11 0 0 1-1.205.426 13.3 13.3 0 0 1 1.055-2.531s.678-1.445 1.027-2.564v-.004a.55.55 0 0 1 .512-.38" }) + ] + } + ); +}); + +export { SiPerl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.cjs new file mode 100644 index 000000000..aa40255bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1FB8CD"; +const SiPerplexity = React__namespace.forwardRef(function SiPerplexity2({ title = "Perplexity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.3977 7.0896h-2.3106V.0676l-7.5094 6.3542V.1577h-1.1554v6.1966L4.4904 0v7.0896H1.6023v10.3976h2.8882V24l6.932-6.3591v6.2005h1.1554v-6.0469l6.9318 6.1807v-6.4879h2.8882V7.0896zm-3.4657-4.531v4.531h-5.355l5.355-4.531zm-13.2862.0676 4.8691 4.4634H5.6458V2.6262zM2.7576 16.332V8.245h7.8476l-6.1149 6.1147v1.9723H2.7576zm2.8882 5.0404v-3.8852h.0001v-2.6488l5.7763-5.7764v7.0111l-5.7764 5.2993zm12.7086.0248-5.7766-5.1509V9.0618l5.7766 5.7766v6.5588zm2.8882-5.0652h-1.733v-1.9723L13.3948 8.245h7.8478v8.087z" }) + ] + } + ); +}); + +exports.default = SiPerplexity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.d.ts new file mode 100644 index 000000000..dd4ac0cb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1FB8CD"; +declare const SiPerplexity: IconType; +export { SiPerplexity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.mjs new file mode 100644 index 000000000..be12d790c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPerplexity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1FB8CD"; +const SiPerplexity = React.forwardRef(function SiPerplexity2({ title = "Perplexity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.3977 7.0896h-2.3106V.0676l-7.5094 6.3542V.1577h-1.1554v6.1966L4.4904 0v7.0896H1.6023v10.3976h2.8882V24l6.932-6.3591v6.2005h1.1554v-6.0469l6.9318 6.1807v-6.4879h2.8882V7.0896zm-3.4657-4.531v4.531h-5.355l5.355-4.531zm-13.2862.0676 4.8691 4.4634H5.6458V2.6262zM2.7576 16.332V8.245h7.8476l-6.1149 6.1147v1.9723H2.7576zm2.8882 5.0404v-3.8852h.0001v-2.6488l5.7763-5.7764v7.0111l-5.7764 5.2993zm12.7086.0248-5.7766-5.1509V9.0618l5.7766 5.7766v6.5588zm2.8882-5.0652h-1.733v-1.9723L13.3948 8.245h7.8478v8.087z" }) + ] + } + ); +}); + +export { SiPerplexity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.cjs new file mode 100644 index 000000000..fac269ae0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD5F07"; +const SiPersistent = React__namespace.forwardRef(function SiPersistent2({ title = "Persistent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.92 3.984a5.866 5.866 0 0 0-1.2-2.09A5.757 5.757 0 0 0 19.814.49a5.505 5.505 0 0 0-4.542 0c-1.425.642-2.55 1.912-3.062 3.413a5.942 5.942 0 0 0-.268 1.158 7.588 7.588 0 0 0-.047 1.167l.02 2.247.034 4.496.011 2.248c.002.375-.002.75.004 1.124.002.186.008.378.007.56.002.18-.01.36-.014.541a7.641 7.641 0 0 1-.138 1.082c-.075.36-.189.71-.34 1.044a5.604 5.604 0 0 1-1.263 1.792c-1.076.998-2.549 1.543-3.992 1.416a5.072 5.072 0 0 1-2.073-.605 5.253 5.253 0 0 1-1.654-1.427 6.092 6.092 0 0 1-.594-.936 5.44 5.44 0 0 1-.412-1.034 5.224 5.224 0 0 1-.167-2.195c.053-.362.137-.72.248-1.063.115-.34.258-.668.428-.982.163-.305.356-.593.574-.86a4.31 4.31 0 0 1 .7-.71c1.007-.846 2.343-1.21 3.707-1.214 1.412.002 2.825.024 4.238.015l-.01-1.535c-1.408.03-2.815.128-4.22.235a7.174 7.174 0 0 0-2.287.569 6.44 6.44 0 0 0-1.04.57 5.997 5.997 0 0 0-1.66 1.646 6.194 6.194 0 0 0-.57 1.025 7.3 7.3 0 0 0-.62 2.267 7.553 7.553 0 0 0 .152 2.412c.187.805.518 1.57.976 2.258a6.4 6.4 0 0 0 1.79 1.788c.73.476 1.552.79 2.412.92.108.02.215.03.322.041.106.012.213.024.326.027.112.007.223.011.335.01a5.842 5.842 0 0 0 1.658-.24 6.783 6.783 0 0 0 1.253-.504c.402-.21.78-.47 1.135-.76a7.046 7.046 0 0 0 1.864-2.492c.05-.108.094-.216.136-.327a5.46 5.46 0 0 0 .219-.67 9.39 9.39 0 0 0 .25-1.384c.017-.233.04-.465.047-.697l.01-.302.015-.28.053-1.125.049-2.248.095-4.495.046-2.248.004-.282.002-.067.002-.047.005-.094a4.026 4.026 0 0 1 .223-1.087 3.91 3.91 0 0 1 .754-1.252 3.525 3.525 0 0 1 1.164-.856 3.421 3.421 0 0 1 1.402-.298c.487-.009.97.087 1.416.282.457.2.867.491 1.205.858.34.372.614.812.79 1.296.178.492.257 1.016.23 1.539a3.964 3.964 0 0 1-.378 1.529 3.765 3.765 0 0 1-2.35 2.016 3.836 3.836 0 0 1-.783.149l-.1.006c-.036.003-.06.006-.11.007l-.271.007-.543.015-2.02.056-.037 1.766 2.057.028.543.007.27.004.29-.003a5.584 5.584 0 0 0 3.29-1.204 5.812 5.812 0 0 0 1.523-1.861 6.19 6.19 0 0 0 .384-4.757" }) + ] + } + ); +}); + +exports.default = SiPersistent; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.d.ts new file mode 100644 index 000000000..6b04a70da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD5F07"; +declare const SiPersistent: IconType; +export { SiPersistent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.mjs new file mode 100644 index 000000000..f633200aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPersistent.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD5F07"; +const SiPersistent = React.forwardRef(function SiPersistent2({ title = "Persistent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.92 3.984a5.866 5.866 0 0 0-1.2-2.09A5.757 5.757 0 0 0 19.814.49a5.505 5.505 0 0 0-4.542 0c-1.425.642-2.55 1.912-3.062 3.413a5.942 5.942 0 0 0-.268 1.158 7.588 7.588 0 0 0-.047 1.167l.02 2.247.034 4.496.011 2.248c.002.375-.002.75.004 1.124.002.186.008.378.007.56.002.18-.01.36-.014.541a7.641 7.641 0 0 1-.138 1.082c-.075.36-.189.71-.34 1.044a5.604 5.604 0 0 1-1.263 1.792c-1.076.998-2.549 1.543-3.992 1.416a5.072 5.072 0 0 1-2.073-.605 5.253 5.253 0 0 1-1.654-1.427 6.092 6.092 0 0 1-.594-.936 5.44 5.44 0 0 1-.412-1.034 5.224 5.224 0 0 1-.167-2.195c.053-.362.137-.72.248-1.063.115-.34.258-.668.428-.982.163-.305.356-.593.574-.86a4.31 4.31 0 0 1 .7-.71c1.007-.846 2.343-1.21 3.707-1.214 1.412.002 2.825.024 4.238.015l-.01-1.535c-1.408.03-2.815.128-4.22.235a7.174 7.174 0 0 0-2.287.569 6.44 6.44 0 0 0-1.04.57 5.997 5.997 0 0 0-1.66 1.646 6.194 6.194 0 0 0-.57 1.025 7.3 7.3 0 0 0-.62 2.267 7.553 7.553 0 0 0 .152 2.412c.187.805.518 1.57.976 2.258a6.4 6.4 0 0 0 1.79 1.788c.73.476 1.552.79 2.412.92.108.02.215.03.322.041.106.012.213.024.326.027.112.007.223.011.335.01a5.842 5.842 0 0 0 1.658-.24 6.783 6.783 0 0 0 1.253-.504c.402-.21.78-.47 1.135-.76a7.046 7.046 0 0 0 1.864-2.492c.05-.108.094-.216.136-.327a5.46 5.46 0 0 0 .219-.67 9.39 9.39 0 0 0 .25-1.384c.017-.233.04-.465.047-.697l.01-.302.015-.28.053-1.125.049-2.248.095-4.495.046-2.248.004-.282.002-.067.002-.047.005-.094a4.026 4.026 0 0 1 .223-1.087 3.91 3.91 0 0 1 .754-1.252 3.525 3.525 0 0 1 1.164-.856 3.421 3.421 0 0 1 1.402-.298c.487-.009.97.087 1.416.282.457.2.867.491 1.205.858.34.372.614.812.79 1.296.178.492.257 1.016.23 1.539a3.964 3.964 0 0 1-.378 1.529 3.765 3.765 0 0 1-2.35 2.016 3.836 3.836 0 0 1-.783.149l-.1.006c-.036.003-.06.006-.11.007l-.271.007-.543.015-2.02.056-.037 1.766 2.057.028.543.007.27.004.29-.003a5.584 5.584 0 0 0 3.29-1.204 5.812 5.812 0 0 0 1.523-1.861 6.19 6.19 0 0 0 .384-4.757" }) + ] + } + ); +}); + +export { SiPersistent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.cjs new file mode 100644 index 000000000..70915e1b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPersonio = React__namespace.forwardRef(function SiPersonio2({ title = "Personio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.603 24H2.47v-1.563h19.133Zm-6.167-4.044c.557.145 1.137-.244 1.303-.867.166-.624-.157-1.25-.713-1.39-.556-.142-1.137.24-1.304.865-.167.624.156 1.25.714 1.39zM22.37.676c-1.737-1.347-5.387-.43-8.145.576A41.707 41.705 0 0 0 5.64 5.625C3.624 6.985 1.135 8.987.748 10.814a1.43 1.43 0 0 0 .28 1.263c.505.59 1.354.576 1.516.568a.781.781 0 0 0 .51-1.368.783.783 0 0 0-.58-.193.877.877 0 0 1-.181-.016c.58-2.136 6.69-6.232 12.47-8.342 3.858-1.408 5.964-1.342 6.649-.81.284.22.433.487.23 1.062-.545 1.535-3.2 3.96-7.108 6.48-.725.467-1.434.898-2.11 1.29.544-1.92 1.1-3.88 1.582-5.561a.782.782 0 0 0-1.504-.43 2070.72 2070.634 0 0 0-2.002 7.05c-1.564.811-2.754 1.3-3.22 1.366a.783.783 0 0 0-1.025 1.095c.134.226.4.476.929.476.088 0 .177-.007.264-.02.54-.073 1.417-.395 2.485-.884-.758 2.702-1.373 4.975-1.407 5.282a.781.781 0 0 0 .69.858.668.668 0 0 0 .087 0 .783.783 0 0 0 .775-.685c.062-.38.822-3.133 1.746-6.42a58.241 58.239 0 0 0 4.01-2.401c5.435-3.587 7.007-5.917 7.362-7.241.277-1.02-.017-1.93-.825-2.557z" }) + ] + } + ); +}); + +exports.default = SiPersonio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.d.ts new file mode 100644 index 000000000..fe7c4e7c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPersonio: IconType; +export { SiPersonio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.mjs new file mode 100644 index 000000000..7f842625b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPersonio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPersonio = React.forwardRef(function SiPersonio2({ title = "Personio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.603 24H2.47v-1.563h19.133Zm-6.167-4.044c.557.145 1.137-.244 1.303-.867.166-.624-.157-1.25-.713-1.39-.556-.142-1.137.24-1.304.865-.167.624.156 1.25.714 1.39zM22.37.676c-1.737-1.347-5.387-.43-8.145.576A41.707 41.705 0 0 0 5.64 5.625C3.624 6.985 1.135 8.987.748 10.814a1.43 1.43 0 0 0 .28 1.263c.505.59 1.354.576 1.516.568a.781.781 0 0 0 .51-1.368.783.783 0 0 0-.58-.193.877.877 0 0 1-.181-.016c.58-2.136 6.69-6.232 12.47-8.342 3.858-1.408 5.964-1.342 6.649-.81.284.22.433.487.23 1.062-.545 1.535-3.2 3.96-7.108 6.48-.725.467-1.434.898-2.11 1.29.544-1.92 1.1-3.88 1.582-5.561a.782.782 0 0 0-1.504-.43 2070.72 2070.634 0 0 0-2.002 7.05c-1.564.811-2.754 1.3-3.22 1.366a.783.783 0 0 0-1.025 1.095c.134.226.4.476.929.476.088 0 .177-.007.264-.02.54-.073 1.417-.395 2.485-.884-.758 2.702-1.373 4.975-1.407 5.282a.781.781 0 0 0 .69.858.668.668 0 0 0 .087 0 .783.783 0 0 0 .775-.685c.062-.38.822-3.133 1.746-6.42a58.241 58.239 0 0 0 4.01-2.401c5.435-3.587 7.007-5.917 7.362-7.241.277-1.02-.017-1.93-.825-2.557z" }) + ] + } + ); +}); + +export { SiPersonio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.cjs new file mode 100644 index 000000000..ffc3721d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00AA28"; +const SiPetsathome = React__namespace.forwardRef(function SiPetsathome2({ title = "Pets at Home", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.627 17.554c0-.7.399-1.209 1.19-1.209.791 0 1.138.574 1.138 1.203v.065c0 .068-.038.107-.107.107h-1.507c0 .282.227.57.72.57.204 0 .356-.052.551-.12.11-.039.198-.016.198.104 0 .23-.341.535-.928.535-.797 0-1.255-.493-1.255-1.255ZM7.778 16.066v.321h.383c.068 0 .107.039.107.107v.337c0 .068-.039.107-.107.107h-.383v1.025c0 .249.094.36.237.36a.49.49 0 0 0 .175-.043c.101-.042.159.01.159.104 0 .237-.269.425-.597.425-.505 0-.687-.318-.687-.756v-1.776c0-.042.023-.072.062-.091l.502-.211c.088-.039.149-.003.149.091Zm4.43 1.511c0-.756.46-1.232 1.189-1.232.73 0 1.19.476 1.19 1.232 0 .755-.46 1.232-1.19 1.232-.729 0-1.189-.477-1.189-1.232Zm-7.925 0c0-.756.409-1.232 1.031-1.232a.65.65 0 0 1 .613.389v-.24c0-.068.039-.107.107-.107h.499c.068 0 .107.039.107.107v2.163c0 .068-.039.107-.107.107h-.499c-.068 0-.107-.039-.107-.107v-.237a.649.649 0 0 1-.613.389c-.622 0-1.031-.477-1.031-1.232Zm12.574 1.19h-.499c-.068 0-.107-.039-.107-.107v-1.453c0-.243-.072-.288-.201-.288a.515.515 0 0 0-.383.172v1.566c0 .068-.039.107-.107.107h-.499c-.068 0-.107-.039-.107-.107v-1.998c0-.042.022-.071.061-.091l.503-.21c.091-.039.149-.004.149.091v.343c.13-.318.36-.45.678-.45.282 0 .489.132.587.428a.645.645 0 0 1 .638-.428c.38 0 .688.207.688.732v1.579c0 .068-.039.107-.107.107h-.5c-.068 0-.107-.039-.107-.107v-1.452c0-.243-.071-.289-.201-.289a.518.518 0 0 0-.382.172v1.566c.003.078-.036.117-.104.117Zm-6.922 0h-.532c-.068 0-.107-.039-.107-.107v-2.792c0-.068.039-.107.107-.107h.532c.068 0 .107.039.107.107v1.038h1.047v-1.038c0-.068.039-.107.107-.107h.532c.068 0 .107.039.107.107v2.792c0 .068-.039.107-.107.107h-.532c-.068 0-.107-.039-.107-.107v-1.184h-1.047v1.184c0 .068-.039.107-.107.107Zm3.459-.49c.302 0 .461-.236.461-.7 0-.464-.159-.7-.461-.7-.301 0-.46.236-.46.7 0 .464.162.7.46.7Zm-7.921 0c.302 0 .461-.236.461-.7 0-.464-.159-.7-.461-.7-.301 0-.46.236-.46.7 0 .464.159.7.46.7Zm14.805-.995c-.029-.289-.195-.448-.461-.448s-.428.159-.46.448h.921Zm1.734-6.598-.661-.159c-.726-.172-.992-.363-.992-.714 0-.353.353-.586.895-.586.619 0 1.076.214 1.835.726.084.052.159.097.214.097.107 0 .181-.042.201-.201a3.9 3.9 0 0 0 .032-.545c0-.321-.009-.535-.032-.651-.033-.182-.097-.276-.214-.354-.629-.395-1.333-.564-2.111-.564-1.751 0-2.892.853-2.892 2.166 0 .982.713 1.718 1.952 2.026l.694.172c.885.214.992.415.992.727 0 .363-.308.609-.82.609-.811 0-1.408-.298-2.069-.96-.097-.097-.159-.158-.276-.158a.278.278 0 0 0-.256.149c-.405.671-.713.917-1.141.917-.457 0-.778-.321-.778-.908V9.39h1.005c.133 0 .243-.11.243-.243V8.08a.245.245 0 0 0-.243-.243h-1.005V6.579c0-.276-.182-.383-.457-.266l-1.537.642a.288.288 0 0 0-.182.275v2.983c0 1.868-1.248 3.136-2.837 3.136-.833 0-1.589-.321-1.868-1.132.192.075.513.107.97.107 1.835 0 3.113-1.002 3.113-2.454 0-1.291-1.067-2.143-2.656-2.143-.59 0-1.157.113-1.647.321C9.092 6.323 7.415 5.191 5.1 5.191c-1.057 0-2.017.13-2.902.396-.246.074-.395.233-.395.479v4.212a2.958 2.958 0 0 1-1.281-.969C.447 9.212.392 9.15.276 9.15c-.172 0-.276.13-.276.298 0 .727.853 1.686 1.803 2.156v2.902c0 .133.11.244.243.244h1.903a.245.245 0 0 0 .243-.244v-2.198c.14.01.276.023.428.023 1.258 0 2.205-.198 2.896-.646.139 1.904 1.563 3.233 3.735 3.233 1.119 0 2.442-.395 3.178-1.397.353.852 1.183 1.397 2.198 1.397s1.621-.256 2.133-.843c.662.555 1.398.843 2.38.843 1.751 0 2.86-.875 2.86-2.25-.003-.983-.538-1.631-1.988-1.984ZM10.93 9.105c.512 0 .788.308.788.736 0 .713-.639 1.193-1.589 1.193-.331 0-.522-.023-.652-.075.004-1.105.568-1.854 1.453-1.854Zm-6.734 1.514V7.325c0-.202.084-.321.275-.351.289-.052.48-.052.639-.052 1.29 0 2.059.681 2.059 1.813.003 1.193-.914 1.855-2.973 1.884Z" }) + ] + } + ); +}); + +exports.default = SiPetsathome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.d.ts new file mode 100644 index 000000000..ff7e37ccc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00AA28"; +declare const SiPetsathome: IconType; +export { SiPetsathome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.mjs new file mode 100644 index 000000000..4859b4410 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPetsathome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00AA28"; +const SiPetsathome = React.forwardRef(function SiPetsathome2({ title = "Pets at Home", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.627 17.554c0-.7.399-1.209 1.19-1.209.791 0 1.138.574 1.138 1.203v.065c0 .068-.038.107-.107.107h-1.507c0 .282.227.57.72.57.204 0 .356-.052.551-.12.11-.039.198-.016.198.104 0 .23-.341.535-.928.535-.797 0-1.255-.493-1.255-1.255ZM7.778 16.066v.321h.383c.068 0 .107.039.107.107v.337c0 .068-.039.107-.107.107h-.383v1.025c0 .249.094.36.237.36a.49.49 0 0 0 .175-.043c.101-.042.159.01.159.104 0 .237-.269.425-.597.425-.505 0-.687-.318-.687-.756v-1.776c0-.042.023-.072.062-.091l.502-.211c.088-.039.149-.003.149.091Zm4.43 1.511c0-.756.46-1.232 1.189-1.232.73 0 1.19.476 1.19 1.232 0 .755-.46 1.232-1.19 1.232-.729 0-1.189-.477-1.189-1.232Zm-7.925 0c0-.756.409-1.232 1.031-1.232a.65.65 0 0 1 .613.389v-.24c0-.068.039-.107.107-.107h.499c.068 0 .107.039.107.107v2.163c0 .068-.039.107-.107.107h-.499c-.068 0-.107-.039-.107-.107v-.237a.649.649 0 0 1-.613.389c-.622 0-1.031-.477-1.031-1.232Zm12.574 1.19h-.499c-.068 0-.107-.039-.107-.107v-1.453c0-.243-.072-.288-.201-.288a.515.515 0 0 0-.383.172v1.566c0 .068-.039.107-.107.107h-.499c-.068 0-.107-.039-.107-.107v-1.998c0-.042.022-.071.061-.091l.503-.21c.091-.039.149-.004.149.091v.343c.13-.318.36-.45.678-.45.282 0 .489.132.587.428a.645.645 0 0 1 .638-.428c.38 0 .688.207.688.732v1.579c0 .068-.039.107-.107.107h-.5c-.068 0-.107-.039-.107-.107v-1.452c0-.243-.071-.289-.201-.289a.518.518 0 0 0-.382.172v1.566c.003.078-.036.117-.104.117Zm-6.922 0h-.532c-.068 0-.107-.039-.107-.107v-2.792c0-.068.039-.107.107-.107h.532c.068 0 .107.039.107.107v1.038h1.047v-1.038c0-.068.039-.107.107-.107h.532c.068 0 .107.039.107.107v2.792c0 .068-.039.107-.107.107h-.532c-.068 0-.107-.039-.107-.107v-1.184h-1.047v1.184c0 .068-.039.107-.107.107Zm3.459-.49c.302 0 .461-.236.461-.7 0-.464-.159-.7-.461-.7-.301 0-.46.236-.46.7 0 .464.162.7.46.7Zm-7.921 0c.302 0 .461-.236.461-.7 0-.464-.159-.7-.461-.7-.301 0-.46.236-.46.7 0 .464.159.7.46.7Zm14.805-.995c-.029-.289-.195-.448-.461-.448s-.428.159-.46.448h.921Zm1.734-6.598-.661-.159c-.726-.172-.992-.363-.992-.714 0-.353.353-.586.895-.586.619 0 1.076.214 1.835.726.084.052.159.097.214.097.107 0 .181-.042.201-.201a3.9 3.9 0 0 0 .032-.545c0-.321-.009-.535-.032-.651-.033-.182-.097-.276-.214-.354-.629-.395-1.333-.564-2.111-.564-1.751 0-2.892.853-2.892 2.166 0 .982.713 1.718 1.952 2.026l.694.172c.885.214.992.415.992.727 0 .363-.308.609-.82.609-.811 0-1.408-.298-2.069-.96-.097-.097-.159-.158-.276-.158a.278.278 0 0 0-.256.149c-.405.671-.713.917-1.141.917-.457 0-.778-.321-.778-.908V9.39h1.005c.133 0 .243-.11.243-.243V8.08a.245.245 0 0 0-.243-.243h-1.005V6.579c0-.276-.182-.383-.457-.266l-1.537.642a.288.288 0 0 0-.182.275v2.983c0 1.868-1.248 3.136-2.837 3.136-.833 0-1.589-.321-1.868-1.132.192.075.513.107.97.107 1.835 0 3.113-1.002 3.113-2.454 0-1.291-1.067-2.143-2.656-2.143-.59 0-1.157.113-1.647.321C9.092 6.323 7.415 5.191 5.1 5.191c-1.057 0-2.017.13-2.902.396-.246.074-.395.233-.395.479v4.212a2.958 2.958 0 0 1-1.281-.969C.447 9.212.392 9.15.276 9.15c-.172 0-.276.13-.276.298 0 .727.853 1.686 1.803 2.156v2.902c0 .133.11.244.243.244h1.903a.245.245 0 0 0 .243-.244v-2.198c.14.01.276.023.428.023 1.258 0 2.205-.198 2.896-.646.139 1.904 1.563 3.233 3.735 3.233 1.119 0 2.442-.395 3.178-1.397.353.852 1.183 1.397 2.198 1.397s1.621-.256 2.133-.843c.662.555 1.398.843 2.38.843 1.751 0 2.86-.875 2.86-2.25-.003-.983-.538-1.631-1.988-1.984ZM10.93 9.105c.512 0 .788.308.788.736 0 .713-.639 1.193-1.589 1.193-.331 0-.522-.023-.652-.075.004-1.105.568-1.854 1.453-1.854Zm-6.734 1.514V7.325c0-.202.084-.321.275-.351.289-.052.48-.052.639-.052 1.29 0 2.059.681 2.059 1.813.003 1.193-.914 1.855-2.973 1.884Z" }) + ] + } + ); +}); + +export { SiPetsathome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.cjs new file mode 100644 index 000000000..3fdf3e0ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPeugeot = React__namespace.forwardRef(function SiPeugeot2({ title = "Peugeot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0001 0c3.499 0 7.1308.2987 10.8171.9349.055 1.4778.1175 3.762.0126 5.7004-.2349 4.3217-1.1861 7.676-2.9943 10.5564-1.8026 2.872-4.5938 5.3416-7.8354 6.8083-3.2416-1.4667-6.0331-3.9362-7.8356-6.8083-1.808-2.8804-2.7594-6.2348-2.9941-10.5564-.1053-1.9383-.0427-4.2226.0124-5.7004C4.8691.2987 8.5011 0 12.0001 0zm0 .4163c-3.4494 0-6.9514.2933-10.4139.8722-.076 2.1923-.076 3.9367-.0005 5.3243.2305 4.248 1.1619 7.5394 2.9309 10.3575 1.7688 2.8179 4.421 5.1457 7.4835 6.5718 3.0622-1.4261 5.7147-3.7539 7.4835-6.5718 1.769-2.8182 2.7001-6.1095 2.9309-10.3575.0755-1.3876.0755-3.132-.0005-5.3243C18.9515.7096 15.4493.4163 12.0001.4163zM11.97 13.0361s.0681.4045.0888.5218c.0116.0665.0141.0843-.0027.1495-.0477.1695-.3633 1.59-.5385 2.6258-.0822.4767-.1533.9498-.1947 1.3546-.0234.23-.0158.2851.0449.4892.172.5767.8082 2.0834.9304 2.3581a.3288.3288 0 0 1 .0257.0951l.0459.3553c-.2038-.3081-1.3115-2.3458-1.7465-3.4742-.0513-.1329-.0612-.1984-.0044-.4428.3025-1.2962 1.1211-3.4992 1.3511-4.0324zm-1.6153-3.1317c.0312.0913.2909.9805.3107 1.1919.016.1174.0133.149-.0284.2614-.2276.606-.9159 2.1129-1.1814 2.6161-.059.1107-.1145.1828-.2256.2958-.2535.2582-.7386.7462-1.039 1.0192-.1091.0993-.1385.1841-.1607.3126-.0358.2063-.0713.5584-.0812.7402-.0086.1599.0173.2347.1064.3931.5294.9451 2.2966 3.1194 2.8001 3.576.0365.0331.0632.0553.1402.1065.074.0494.3154.2061.3154.2061a.085.085 0 0 1 .0239.0257l.0874.1539c-.2256-.1123-.5874-.2928-.7742-.3929a.7527.7527 0 0 1-.1249-.0845c-.5896-.4902-2.3963-2.6064-2.9277-3.49-.1325-.2206-.1461-.292-.1283-.5008.0333-.3887.0849-.8774.1301-1.0916.0274-.1292.0558-.2051.1547-.3192.7533-.8648 2.2059-2.7743 2.6293-3.5908.0471-.0924.0511-.1245.0521-.2117.0027-.253-.078-.7457-.0992-.8702a.2385.2385 0 0 1-.0025-.0591l.0228-.2877zm4.931-.4748c.0812.0377.2137.0801.2732.1502.9366.9784 1.6856 1.9929 1.8356 2.2603.0289.0514.0486.1028.0558.1616.1683 1.4269.0237 2.9385-.3201 4.2535-.0311.1186-.0659.1794-.1799.2651-.7607.5713-2.5689 2.0716-3.176 2.6297a.996.996 0 0 0-.1718.2088c-.153.2511-.3419.6012-.462.825-.1234-.2696-.3924-.9273-.4847-1.1931-.0301-.0867-.0355-.1322-.0037-.2483.1505-.5512.862-2.1538 1.0005-2.4436-.0018.0372.0063.1347-.0079.1693-.0624.1895-.445 1.4526-.5227 2.0003-.0173.1218-.0158.1547 0 .2743.0341.2557.1868.7247.1868.7247.0174-.0414.1887-.3836.309-.4774.7089-.6984 2.1971-1.9725 3.0499-2.6638.0958-.0776.1315-.1295.1528-.2767.1056-.7254.1362-2.0275.0726-2.9751a1.012 1.012 0 0 0-.1708-.5003c-.231-.3417-.5072-.6651-.926-1.0805a.4152.4152 0 0 1-.1157-.2187c-.1222-.6524-.3949-1.8453-.3949-1.8453zm-7.9201 1.5091a.3306.3306 0 0 1 .1794-.0067c.267.0642.8322.2029 1.2594.3123.06.0153.1347.0714.1666.1245l.093.1549a.1822.1822 0 0 1 .0059.1774 21.7947 21.7947 0 0 1-.3055.5651l-.0886.1583c-.1631.2896-.3254.5691-.4176.7161-.0607.0971-.0945.1401-.2026.1784-.4203.148-.9423.3249-1.2525.4255-.0634.0205-.0849.0591-.0726.1295.0222.1282.0938.5636.1212.6906.0101.0469.0476.0843.1172.0709.1834-.0348.6715-.1544.6715-.1544s-.1439.1332-.23.2117a.1456.1456 0 0 1-.0545.0324c-.133.0445-.4578.1356-.559.1579-.079.017-.1293-.0141-.1496-.1035 0 0-.1385-.59-.1885-.7907a1.552 1.552 0 0 0-.0254-.0872c-.0375-.1161-.1276-.3444-.1784-.464a.108.108 0 0 1-.0087-.044c.0015-.1366.0267-.4415.0267-.4415s.2989.2804.4435.3817c.0326.023.0521.0277.0921.0175.1987-.0511.6555-.2024.9062-.2962a.3475.3475 0 0 0 .1463-.1048c.2594-.3135.5846-.8013.7725-1.1692a.2194.2194 0 0 0 .0146-.1631l-.0405-.1334c-.0118-.039-.0531-.083-.0911-.0976a34.0249 34.0249 0 0 0-1.1999-.4329l.0489-.0155zm8.7416-3.7975a.407.407 0 0 1 .2994.0069c.7409.3113 1.9867 1.0437 2.6792 1.5596.0669.0499.0935.0843.1111.1648.1626.7402.2243 1.8845.1219 2.8478-.0074.0692-.0212.1107-.0573.1846-.4388.8981-.9326 1.7434-1.4524 2.3954.0078-.0807.0446-.4617.0471-.6834a.0765.0765 0 0 1 .0304-.0605 9.0576 9.0576 0 0 0 .304-.2468c.0365-.0316.0568-.0553.0758-.086.2117-.3425.5903-1.0595.7428-1.4909a.787.787 0 0 0 .0429-.3281c-.0489-.6011-.1431-1.434-.2836-1.9776a.3337.3337 0 0 0-.1703-.2147c-.1212-.0623-.3588-.1707-.9-.3879a.7631.7631 0 0 1-.2068-.1238c-.3549-.2985-.9097-.7459-1.2549-1.0034a.4301.4301 0 0 0-.3527-.0749 21.4993 21.4993 0 0 0-.7517.1856c-.0612.0166-.0854.018-.1486.0106-.1009-.0117-.3007-.0275-.382-.0336.5871-.2761 1.152-.5142 1.5057-.6437zM8.274 12.0001c-.1836.3024-.403.6236-.5689.8243a.1988.1988 0 0 1-.0834.0588 14.1489 14.1489 0 0 1-.7063.2382l1.3586-1.1213zm-2.4267-.397l-.1083.7484-.3685-.4329c.0671-.1455.2633-.2829.4768-.3155zm-.6866-1.6986l-.133.0838c-.0333.0212-.0424.0304-.0563.0595a2.6968 2.6968 0 0 1-.0856.1616c-.0091.0158-.0336.0403-.0466.0504a16.6112 16.6112 0 0 1-.4773.3533c-.0089.0062-.0202.0035-.0279-.004-.0165-.0166-.0859-.0954-.0982-.1139a.0823.0823 0 0 1-.0151-.0489 2.0329 2.0329 0 0 1 .0062-.1337c.0039-.0509.0185-.0751.0805-.1394.0693-.0719.1449-.1475.2243-.2251.1947-.1641.6863-.5633 1.5642-1.1904a.1927.1927 0 0 0 .0437-.0423c.0921-.1244.354-.4644.4186-.5452a.1928.1928 0 0 1 .0308-.0311 2.4849 2.4849 0 0 1 .2595-.1833c.2445-.1542.7181-.4354.9834-.5898l-.1007.124c-.0056.0055-.0111.0106-.0167.0163a42.2875 42.2875 0 0 0-.5625.4314c-.0286.0227-.04.0425-.0466.0783-.0227.1266-.0605.367-.0716.5001-.0032.039-.02.0583-.0597.0744-.173.0704-.3781.1445-.5439.211-.0356.0141-.0454.0195-.0664.0356-.0166.0128-.2369.2098-.2369.2098s.479-.1181.6547-.1579c.042-.0094.06-.0069.0987.0114.0363.0168.0967.0408.1286.0524.0489.018.0748.0172.1288.0054.1979-.0442.5308-.1233.708-.1695.0921-.024.1424-.0489.2204-.1035.0849-.0591.2999-.2205.2999-.2205s-.004.0285-.0069.0443a.0591.0591 0 0 1-.0161.0318 3.986 3.986 0 0 1-.1581.1777c-.0871.0902-.1392.1223-.2485.168-.5035.21-1.3638.5362-2.0091.7598-.0423.0148-.0606.0269-.0919.059-.0341.0346-.0795.085-.0795.085s.5262.0383.6868.0568c.0521.0059.0893.023.1291.0573.132.1137.5691.5641.6999.7205 0 0-1.2426.2068-1.8184.3499-.0711.0175-.1066.0628-.1227.1198-.0476.1675-.1599.7062-.1599.7062s-.04-.0128-.0958-.045c-.0383-.022-.0577-.0403-.0997-.0847-.1362-.144-.3601-.4198-.4677-.5796-.0316-.0472-.0449-.1072-.0054-.1554.1167-.1438.3512-.4062.4805-.5411.0138-.0146.0313-.04.0499-.0766.0498-.1032.1038-.3175.1282-.4139zm8.0217-2.8166a.1805.1805 0 0 1 .1083.0148l.2564.1228a.0935.0935 0 0 1 .0503.0628c.0348.1468.0775.3412.1061.5065a.2993.2993 0 0 1-.036.1994c-.1061.1846-.324.5166-.446.695-.0271.04-.0304.0885-.022.1361.0553.3059.2858 1.374.2858 1.374l-.1451-.1322a.2102.2102 0 0 1-.0602-.0917c-.1032-.3022-.2962-.9335-.385-1.2406a.1588.1588 0 0 1 .0299-.145c.1513-.1838.3717-.4778.5005-.6641.036-.0524.0479-.1102.0267-.1534a4.6142 4.6142 0 0 0-.1273-.2369.1058.1058 0 0 0-.0597-.0489l-.174-.0558a.1452.1452 0 0 0-.093.0017c-.3791.1376-.8889.336-1.2009.4655-.0457.019-.0644.0205-.1197.0121-.0903-.0133-.3534-.0605-.4825-.0847a.0344.0344 0 0 1-.023-.0511l.153-.2654a.1474.1474 0 0 1 .0955-.0704c.4922-.1123 1.143-.2413 1.7619-.3505zM7.7369 8.3065a.0544.0544 0 0 1 .0548.0326c.0309.072.0225.1523-.0074.2209-.0116.028-.0474.0551-.0767.0616l-.2456.0546a.0227.0227 0 0 1-.0274-.0237l.023-.2886a.04.04 0 0 1 .0365-.0366l.2428-.0208zm2.7941-1.8543a.0366.0366 0 0 1 .0321.0549l-.5987 1.032a.2643.2643 0 0 1-.1552.126l-1.1227.3516a1.6503 1.6503 0 0 1-.3761.0712c-.249.0188-.9886.042-.9886.042l.0162-.0351a.0741.0741 0 0 1 .038-.0368l.35-.1487a.169.169 0 0 0 .0666-.0502l.5405-.6661c.0289-.0356.0666-.0697.1069-.0909.357-.1881.992-.4705 1.4368-.6192a.5085.5085 0 0 1 .1426-.0235l.5116-.0072zm-.6002-1.1984c1.2389-.109 2.9153-.1386 4.5168-.0173a.837.837 0 0 1 .2638.064c.5247.2209 1.4556.7042 2.4906 1.2969a.7764.7764 0 0 1 .1281.0917c.2742.2419.9689.9535.9689.9535l-.2167-.043a.2282.2282 0 0 1-.0844-.0351c-.4383-.2948-1.0782-.6785-1.6145-.949a.5915.5915 0 0 0-.2034-.0598 14.6895 14.6895 0 0 0-.8443-.0618c-.1138-.0047-.1913-.0237-.3026-.0803-.2127-.108-.728-.342-.9847-.44-.1098-.042-.1658-.0519-.2734-.0502-.441.0064-1.4457.0385-1.9588.0704a.2445.2445 0 0 1-.0521-.0025l-.2445-.0383c.6935-.1196 2.4077-.2725 3.1172-.3098l-.2887-.0966a.596.596 0 0 0-.1728-.0299c-.9698-.0218-2.3036-.0178-3.4321.067a.6098.6098 0 0 0-.2021.0504c-.3228.1419-1.11.5692-1.8994 1.0081-.2546.1416-.529.2952-.7731.4326 0 0 .0985-.1268.1175-.1515.0168-.0215.0219-.0255.0447-.0403.1018-.0684.4109-.2678.5343-.3585.2377-.1794.6128-.4956.8364-.6916a.6677.6677 0 0 0 .1288-.1529c.0723-.1171.1513-.2441.1999-.3145.0414-.0611.1123-.1038.2006-.1117zM4.655 2.404c.306-.0316.477.0875.477.3975v.1715c0 .3172-.171.4455-.477.4774a71.2552 71.2552 0 0 0-1.269.144v.4687c-.0886.0109-.1774.0218-.266.0331V2.5814a70.6625 70.6625 0 0 1 1.535-.1774zm14.2032-.0491a71.245 71.245 0 0 1 2.022.2263v.2444a68.7666 68.7666 0 0 0-.8741-.105v1.2707a94.0383 94.0383 0 0 0-.2663-.0299V2.6906a68.3322 68.3322 0 0 0-.8815-.0914v-.2443zM7.6494 2.1558v.2441a71.8527 71.8527 0 0 0-1.6641.1223v.3731a68.5725 68.5725 0 0 1 1.48-.1107v.2444a70.5409 70.5409 0 0 0-1.48.1104v.4094a69.7002 69.7002 0 0 1 1.6641-.1223v.2441a70.9377 70.9377 0 0 0-1.9245.145v-1.515a70.5346 70.5346 0 0 1 1.9245-.1448zm8.6326.4149c0-.3397.1683-.4097.5476-.384.3332.023.6658.0479.9988.0756.3295.0272.5469.1198.5469.4665v.6765c0 .3402-.1878.4015-.5469.3719a72.5525 72.5525 0 0 0-.9988-.0754c-.3628-.0245-.5476-.0946-.5476-.4546v-.6765zm-2.5812-.5284c.6426.0153 1.285.0395 1.9274.0726v.2441a70.7366 70.7366 0 0 0-1.6666-.0657v.3728c.4943.0139.9884.0327 1.4823.0567v.2444a70.4407 70.4407 0 0 0-1.4822-.0566v.4092a69.1564 69.1564 0 0 1 1.6666.066v.2441a71.29 71.29 0 0 0-1.9274-.0726v-1.515zm-3.344-.0013v1.0958c0 .3467-.1819.4228-.5484.4341a68.0289 68.0289 0 0 0-.9573.0361c-.3401.0153-.5479-.0494-.5479-.3926V2.1186l.2606-.0133v1.142c0 .0694.0595.126.1385.1223a70.1195 70.1195 0 0 1 1.2547-.0475c.0795-.0022.1323-.063.1323-.1324v-1.142c.089-.0025.1781-.0047.2675-.0067zm6.3245.3802c-.0792-.0054-.1387.0502-.1387.1295v.7491c0 .0694.0595.1423.1387.1478.4321.0287.8638.0613 1.2954.0978.0691.0059.1382-.0576.1382-.1268v-.7493c0-.0791-.0691-.1445-.1382-.1505a70.1864 70.1864 0 0 0-1.2954-.0976zm-5.1721-.3976c.479-.0035.958-.0017 1.4368.0047v.2441a72.1473 72.1473 0 0 0-1.536-.004c-.0693.0007-.1387.0608-.1387.1302v.759c0 .0694.0693.1381.1387.1374.4593-.004.9183-.0032 1.3776.002v-.4094a66.592 66.592 0 0 0-.7994-.0042v-.2443c.3534 0 .7068.0027 1.0602.0079v.8976a71.1228 71.1228 0 0 0-1.4896-.0064c-.3635.0025-.5484-.0603-.5484-.4136v-.6602c0-.3299.1651-.4383.4988-.4408zm-6.7546.6162l-.0206.0004a70.2289 70.2289 0 0 0-1.348.1522V3.35a71.0344 71.0344 0 0 1 1.348-.152c.0689-.0074.138-.0704.138-.1364v-.3068c0-.0694-.0691-.1218-.138-.1146l.0206-.0004z" }) + ] + } + ); +}); + +exports.default = SiPeugeot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.d.ts new file mode 100644 index 000000000..27c2c46c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPeugeot: IconType; +export { SiPeugeot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.mjs new file mode 100644 index 000000000..7f04ff889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPeugeot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPeugeot = React.forwardRef(function SiPeugeot2({ title = "Peugeot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0001 0c3.499 0 7.1308.2987 10.8171.9349.055 1.4778.1175 3.762.0126 5.7004-.2349 4.3217-1.1861 7.676-2.9943 10.5564-1.8026 2.872-4.5938 5.3416-7.8354 6.8083-3.2416-1.4667-6.0331-3.9362-7.8356-6.8083-1.808-2.8804-2.7594-6.2348-2.9941-10.5564-.1053-1.9383-.0427-4.2226.0124-5.7004C4.8691.2987 8.5011 0 12.0001 0zm0 .4163c-3.4494 0-6.9514.2933-10.4139.8722-.076 2.1923-.076 3.9367-.0005 5.3243.2305 4.248 1.1619 7.5394 2.9309 10.3575 1.7688 2.8179 4.421 5.1457 7.4835 6.5718 3.0622-1.4261 5.7147-3.7539 7.4835-6.5718 1.769-2.8182 2.7001-6.1095 2.9309-10.3575.0755-1.3876.0755-3.132-.0005-5.3243C18.9515.7096 15.4493.4163 12.0001.4163zM11.97 13.0361s.0681.4045.0888.5218c.0116.0665.0141.0843-.0027.1495-.0477.1695-.3633 1.59-.5385 2.6258-.0822.4767-.1533.9498-.1947 1.3546-.0234.23-.0158.2851.0449.4892.172.5767.8082 2.0834.9304 2.3581a.3288.3288 0 0 1 .0257.0951l.0459.3553c-.2038-.3081-1.3115-2.3458-1.7465-3.4742-.0513-.1329-.0612-.1984-.0044-.4428.3025-1.2962 1.1211-3.4992 1.3511-4.0324zm-1.6153-3.1317c.0312.0913.2909.9805.3107 1.1919.016.1174.0133.149-.0284.2614-.2276.606-.9159 2.1129-1.1814 2.6161-.059.1107-.1145.1828-.2256.2958-.2535.2582-.7386.7462-1.039 1.0192-.1091.0993-.1385.1841-.1607.3126-.0358.2063-.0713.5584-.0812.7402-.0086.1599.0173.2347.1064.3931.5294.9451 2.2966 3.1194 2.8001 3.576.0365.0331.0632.0553.1402.1065.074.0494.3154.2061.3154.2061a.085.085 0 0 1 .0239.0257l.0874.1539c-.2256-.1123-.5874-.2928-.7742-.3929a.7527.7527 0 0 1-.1249-.0845c-.5896-.4902-2.3963-2.6064-2.9277-3.49-.1325-.2206-.1461-.292-.1283-.5008.0333-.3887.0849-.8774.1301-1.0916.0274-.1292.0558-.2051.1547-.3192.7533-.8648 2.2059-2.7743 2.6293-3.5908.0471-.0924.0511-.1245.0521-.2117.0027-.253-.078-.7457-.0992-.8702a.2385.2385 0 0 1-.0025-.0591l.0228-.2877zm4.931-.4748c.0812.0377.2137.0801.2732.1502.9366.9784 1.6856 1.9929 1.8356 2.2603.0289.0514.0486.1028.0558.1616.1683 1.4269.0237 2.9385-.3201 4.2535-.0311.1186-.0659.1794-.1799.2651-.7607.5713-2.5689 2.0716-3.176 2.6297a.996.996 0 0 0-.1718.2088c-.153.2511-.3419.6012-.462.825-.1234-.2696-.3924-.9273-.4847-1.1931-.0301-.0867-.0355-.1322-.0037-.2483.1505-.5512.862-2.1538 1.0005-2.4436-.0018.0372.0063.1347-.0079.1693-.0624.1895-.445 1.4526-.5227 2.0003-.0173.1218-.0158.1547 0 .2743.0341.2557.1868.7247.1868.7247.0174-.0414.1887-.3836.309-.4774.7089-.6984 2.1971-1.9725 3.0499-2.6638.0958-.0776.1315-.1295.1528-.2767.1056-.7254.1362-2.0275.0726-2.9751a1.012 1.012 0 0 0-.1708-.5003c-.231-.3417-.5072-.6651-.926-1.0805a.4152.4152 0 0 1-.1157-.2187c-.1222-.6524-.3949-1.8453-.3949-1.8453zm-7.9201 1.5091a.3306.3306 0 0 1 .1794-.0067c.267.0642.8322.2029 1.2594.3123.06.0153.1347.0714.1666.1245l.093.1549a.1822.1822 0 0 1 .0059.1774 21.7947 21.7947 0 0 1-.3055.5651l-.0886.1583c-.1631.2896-.3254.5691-.4176.7161-.0607.0971-.0945.1401-.2026.1784-.4203.148-.9423.3249-1.2525.4255-.0634.0205-.0849.0591-.0726.1295.0222.1282.0938.5636.1212.6906.0101.0469.0476.0843.1172.0709.1834-.0348.6715-.1544.6715-.1544s-.1439.1332-.23.2117a.1456.1456 0 0 1-.0545.0324c-.133.0445-.4578.1356-.559.1579-.079.017-.1293-.0141-.1496-.1035 0 0-.1385-.59-.1885-.7907a1.552 1.552 0 0 0-.0254-.0872c-.0375-.1161-.1276-.3444-.1784-.464a.108.108 0 0 1-.0087-.044c.0015-.1366.0267-.4415.0267-.4415s.2989.2804.4435.3817c.0326.023.0521.0277.0921.0175.1987-.0511.6555-.2024.9062-.2962a.3475.3475 0 0 0 .1463-.1048c.2594-.3135.5846-.8013.7725-1.1692a.2194.2194 0 0 0 .0146-.1631l-.0405-.1334c-.0118-.039-.0531-.083-.0911-.0976a34.0249 34.0249 0 0 0-1.1999-.4329l.0489-.0155zm8.7416-3.7975a.407.407 0 0 1 .2994.0069c.7409.3113 1.9867 1.0437 2.6792 1.5596.0669.0499.0935.0843.1111.1648.1626.7402.2243 1.8845.1219 2.8478-.0074.0692-.0212.1107-.0573.1846-.4388.8981-.9326 1.7434-1.4524 2.3954.0078-.0807.0446-.4617.0471-.6834a.0765.0765 0 0 1 .0304-.0605 9.0576 9.0576 0 0 0 .304-.2468c.0365-.0316.0568-.0553.0758-.086.2117-.3425.5903-1.0595.7428-1.4909a.787.787 0 0 0 .0429-.3281c-.0489-.6011-.1431-1.434-.2836-1.9776a.3337.3337 0 0 0-.1703-.2147c-.1212-.0623-.3588-.1707-.9-.3879a.7631.7631 0 0 1-.2068-.1238c-.3549-.2985-.9097-.7459-1.2549-1.0034a.4301.4301 0 0 0-.3527-.0749 21.4993 21.4993 0 0 0-.7517.1856c-.0612.0166-.0854.018-.1486.0106-.1009-.0117-.3007-.0275-.382-.0336.5871-.2761 1.152-.5142 1.5057-.6437zM8.274 12.0001c-.1836.3024-.403.6236-.5689.8243a.1988.1988 0 0 1-.0834.0588 14.1489 14.1489 0 0 1-.7063.2382l1.3586-1.1213zm-2.4267-.397l-.1083.7484-.3685-.4329c.0671-.1455.2633-.2829.4768-.3155zm-.6866-1.6986l-.133.0838c-.0333.0212-.0424.0304-.0563.0595a2.6968 2.6968 0 0 1-.0856.1616c-.0091.0158-.0336.0403-.0466.0504a16.6112 16.6112 0 0 1-.4773.3533c-.0089.0062-.0202.0035-.0279-.004-.0165-.0166-.0859-.0954-.0982-.1139a.0823.0823 0 0 1-.0151-.0489 2.0329 2.0329 0 0 1 .0062-.1337c.0039-.0509.0185-.0751.0805-.1394.0693-.0719.1449-.1475.2243-.2251.1947-.1641.6863-.5633 1.5642-1.1904a.1927.1927 0 0 0 .0437-.0423c.0921-.1244.354-.4644.4186-.5452a.1928.1928 0 0 1 .0308-.0311 2.4849 2.4849 0 0 1 .2595-.1833c.2445-.1542.7181-.4354.9834-.5898l-.1007.124c-.0056.0055-.0111.0106-.0167.0163a42.2875 42.2875 0 0 0-.5625.4314c-.0286.0227-.04.0425-.0466.0783-.0227.1266-.0605.367-.0716.5001-.0032.039-.02.0583-.0597.0744-.173.0704-.3781.1445-.5439.211-.0356.0141-.0454.0195-.0664.0356-.0166.0128-.2369.2098-.2369.2098s.479-.1181.6547-.1579c.042-.0094.06-.0069.0987.0114.0363.0168.0967.0408.1286.0524.0489.018.0748.0172.1288.0054.1979-.0442.5308-.1233.708-.1695.0921-.024.1424-.0489.2204-.1035.0849-.0591.2999-.2205.2999-.2205s-.004.0285-.0069.0443a.0591.0591 0 0 1-.0161.0318 3.986 3.986 0 0 1-.1581.1777c-.0871.0902-.1392.1223-.2485.168-.5035.21-1.3638.5362-2.0091.7598-.0423.0148-.0606.0269-.0919.059-.0341.0346-.0795.085-.0795.085s.5262.0383.6868.0568c.0521.0059.0893.023.1291.0573.132.1137.5691.5641.6999.7205 0 0-1.2426.2068-1.8184.3499-.0711.0175-.1066.0628-.1227.1198-.0476.1675-.1599.7062-.1599.7062s-.04-.0128-.0958-.045c-.0383-.022-.0577-.0403-.0997-.0847-.1362-.144-.3601-.4198-.4677-.5796-.0316-.0472-.0449-.1072-.0054-.1554.1167-.1438.3512-.4062.4805-.5411.0138-.0146.0313-.04.0499-.0766.0498-.1032.1038-.3175.1282-.4139zm8.0217-2.8166a.1805.1805 0 0 1 .1083.0148l.2564.1228a.0935.0935 0 0 1 .0503.0628c.0348.1468.0775.3412.1061.5065a.2993.2993 0 0 1-.036.1994c-.1061.1846-.324.5166-.446.695-.0271.04-.0304.0885-.022.1361.0553.3059.2858 1.374.2858 1.374l-.1451-.1322a.2102.2102 0 0 1-.0602-.0917c-.1032-.3022-.2962-.9335-.385-1.2406a.1588.1588 0 0 1 .0299-.145c.1513-.1838.3717-.4778.5005-.6641.036-.0524.0479-.1102.0267-.1534a4.6142 4.6142 0 0 0-.1273-.2369.1058.1058 0 0 0-.0597-.0489l-.174-.0558a.1452.1452 0 0 0-.093.0017c-.3791.1376-.8889.336-1.2009.4655-.0457.019-.0644.0205-.1197.0121-.0903-.0133-.3534-.0605-.4825-.0847a.0344.0344 0 0 1-.023-.0511l.153-.2654a.1474.1474 0 0 1 .0955-.0704c.4922-.1123 1.143-.2413 1.7619-.3505zM7.7369 8.3065a.0544.0544 0 0 1 .0548.0326c.0309.072.0225.1523-.0074.2209-.0116.028-.0474.0551-.0767.0616l-.2456.0546a.0227.0227 0 0 1-.0274-.0237l.023-.2886a.04.04 0 0 1 .0365-.0366l.2428-.0208zm2.7941-1.8543a.0366.0366 0 0 1 .0321.0549l-.5987 1.032a.2643.2643 0 0 1-.1552.126l-1.1227.3516a1.6503 1.6503 0 0 1-.3761.0712c-.249.0188-.9886.042-.9886.042l.0162-.0351a.0741.0741 0 0 1 .038-.0368l.35-.1487a.169.169 0 0 0 .0666-.0502l.5405-.6661c.0289-.0356.0666-.0697.1069-.0909.357-.1881.992-.4705 1.4368-.6192a.5085.5085 0 0 1 .1426-.0235l.5116-.0072zm-.6002-1.1984c1.2389-.109 2.9153-.1386 4.5168-.0173a.837.837 0 0 1 .2638.064c.5247.2209 1.4556.7042 2.4906 1.2969a.7764.7764 0 0 1 .1281.0917c.2742.2419.9689.9535.9689.9535l-.2167-.043a.2282.2282 0 0 1-.0844-.0351c-.4383-.2948-1.0782-.6785-1.6145-.949a.5915.5915 0 0 0-.2034-.0598 14.6895 14.6895 0 0 0-.8443-.0618c-.1138-.0047-.1913-.0237-.3026-.0803-.2127-.108-.728-.342-.9847-.44-.1098-.042-.1658-.0519-.2734-.0502-.441.0064-1.4457.0385-1.9588.0704a.2445.2445 0 0 1-.0521-.0025l-.2445-.0383c.6935-.1196 2.4077-.2725 3.1172-.3098l-.2887-.0966a.596.596 0 0 0-.1728-.0299c-.9698-.0218-2.3036-.0178-3.4321.067a.6098.6098 0 0 0-.2021.0504c-.3228.1419-1.11.5692-1.8994 1.0081-.2546.1416-.529.2952-.7731.4326 0 0 .0985-.1268.1175-.1515.0168-.0215.0219-.0255.0447-.0403.1018-.0684.4109-.2678.5343-.3585.2377-.1794.6128-.4956.8364-.6916a.6677.6677 0 0 0 .1288-.1529c.0723-.1171.1513-.2441.1999-.3145.0414-.0611.1123-.1038.2006-.1117zM4.655 2.404c.306-.0316.477.0875.477.3975v.1715c0 .3172-.171.4455-.477.4774a71.2552 71.2552 0 0 0-1.269.144v.4687c-.0886.0109-.1774.0218-.266.0331V2.5814a70.6625 70.6625 0 0 1 1.535-.1774zm14.2032-.0491a71.245 71.245 0 0 1 2.022.2263v.2444a68.7666 68.7666 0 0 0-.8741-.105v1.2707a94.0383 94.0383 0 0 0-.2663-.0299V2.6906a68.3322 68.3322 0 0 0-.8815-.0914v-.2443zM7.6494 2.1558v.2441a71.8527 71.8527 0 0 0-1.6641.1223v.3731a68.5725 68.5725 0 0 1 1.48-.1107v.2444a70.5409 70.5409 0 0 0-1.48.1104v.4094a69.7002 69.7002 0 0 1 1.6641-.1223v.2441a70.9377 70.9377 0 0 0-1.9245.145v-1.515a70.5346 70.5346 0 0 1 1.9245-.1448zm8.6326.4149c0-.3397.1683-.4097.5476-.384.3332.023.6658.0479.9988.0756.3295.0272.5469.1198.5469.4665v.6765c0 .3402-.1878.4015-.5469.3719a72.5525 72.5525 0 0 0-.9988-.0754c-.3628-.0245-.5476-.0946-.5476-.4546v-.6765zm-2.5812-.5284c.6426.0153 1.285.0395 1.9274.0726v.2441a70.7366 70.7366 0 0 0-1.6666-.0657v.3728c.4943.0139.9884.0327 1.4823.0567v.2444a70.4407 70.4407 0 0 0-1.4822-.0566v.4092a69.1564 69.1564 0 0 1 1.6666.066v.2441a71.29 71.29 0 0 0-1.9274-.0726v-1.515zm-3.344-.0013v1.0958c0 .3467-.1819.4228-.5484.4341a68.0289 68.0289 0 0 0-.9573.0361c-.3401.0153-.5479-.0494-.5479-.3926V2.1186l.2606-.0133v1.142c0 .0694.0595.126.1385.1223a70.1195 70.1195 0 0 1 1.2547-.0475c.0795-.0022.1323-.063.1323-.1324v-1.142c.089-.0025.1781-.0047.2675-.0067zm6.3245.3802c-.0792-.0054-.1387.0502-.1387.1295v.7491c0 .0694.0595.1423.1387.1478.4321.0287.8638.0613 1.2954.0978.0691.0059.1382-.0576.1382-.1268v-.7493c0-.0791-.0691-.1445-.1382-.1505a70.1864 70.1864 0 0 0-1.2954-.0976zm-5.1721-.3976c.479-.0035.958-.0017 1.4368.0047v.2441a72.1473 72.1473 0 0 0-1.536-.004c-.0693.0007-.1387.0608-.1387.1302v.759c0 .0694.0693.1381.1387.1374.4593-.004.9183-.0032 1.3776.002v-.4094a66.592 66.592 0 0 0-.7994-.0042v-.2443c.3534 0 .7068.0027 1.0602.0079v.8976a71.1228 71.1228 0 0 0-1.4896-.0064c-.3635.0025-.5484-.0603-.5484-.4136v-.6602c0-.3299.1651-.4383.4988-.4408zm-6.7546.6162l-.0206.0004a70.2289 70.2289 0 0 0-1.348.1522V3.35a71.0344 71.0344 0 0 1 1.348-.152c.0689-.0074.138-.0704.138-.1364v-.3068c0-.0694-.0691-.1218-.138-.1146l.0206-.0004z" }) + ] + } + ); +}); + +export { SiPeugeot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.cjs new file mode 100644 index 000000000..34f05fe99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#05A081"; +const SiPexels = React__namespace.forwardRef(function SiPexels2({ title = "Pexels", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.5 0A1.5 1.5 0 000 1.5v21A1.5 1.5 0 001.5 24h21a1.5 1.5 0 001.5-1.5v-21A1.5 1.5 0 0022.5 0h-21zm6.75 6.75h5.2715a3.843 3.843 0 01.627 7.6348V17.25H8.25V6.75zm1.5 1.5v7.5h2.8984v-2.8145h.873a2.343 2.343 0 100-4.6855H9.75Z" }) + ] + } + ); +}); + +exports.default = SiPexels; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.d.ts new file mode 100644 index 000000000..93df884d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#05A081"; +declare const SiPexels: IconType; +export { SiPexels as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.mjs new file mode 100644 index 000000000..e4c816e8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPexels.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#05A081"; +const SiPexels = React.forwardRef(function SiPexels2({ title = "Pexels", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.5 0A1.5 1.5 0 000 1.5v21A1.5 1.5 0 001.5 24h21a1.5 1.5 0 001.5-1.5v-21A1.5 1.5 0 0022.5 0h-21zm6.75 6.75h5.2715a3.843 3.843 0 01.627 7.6348V17.25H8.25V6.75zm1.5 1.5v7.5h2.8984v-2.8145h.873a2.343 2.343 0 100-4.6855H9.75Z" }) + ] + } + ); +}); + +export { SiPexels as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.cjs new file mode 100644 index 000000000..1dbce0ae5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiPfsense = React__namespace.forwardRef(function SiPfsense2({ title = "pfSense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.013 0C.898 0 0 .929 0 2.044v17.775L3.252 8.27h3.282L6.1 9.785h.063c.186-.217.433-.403.742-.62.31-.216.62-.402.96-.588.342-.186.713-.31 1.116-.433.402-.124.805-.155 1.208-.155.867 0 1.579.154 2.198.433.62.279 1.084.712 1.455 1.239.31.464.5 1.019.593 1.669.006.06.027.135.027.189.062.712-.031 1.518-.28 2.385a8.571 8.571 0 0 1-1.02 2.322 9.885 9.885 0 0 1-1.58 1.95 8.125 8.125 0 0 1-2.044 1.364 5.536 5.536 0 0 1-2.354.495 5.655 5.655 0 0 1-1.982-.34c-.588-.217-.99-.62-1.238-1.177h-.062L2.353 24h19.603A2.042 2.042 0 0 0 24 21.956V4.706c-.093-.03-.186-.06-.248-.092a2.771 2.771 0 0 0-.557-.062c-.557 0-1.022.124-1.394.372-.34.248-.65.743-.867 1.518l-.526 1.826h2.013l.495 1.58-1.3 1.27h-2.014l-2.446 8.67h-3.53l2.446-8.67h-1.455l.805-2.85h1.425l.557-2.044c.185-.619.403-1.238.681-1.795a4.996 4.996 0 0 1 1.053-1.487c.433-.434.99-.775 1.641-1.022.65-.248 1.487-.372 2.447-.372.248 0 .464 0 .712.031A2.082 2.082 0 0 0 21.988 0zm6.565 11.118c-.898 0-1.672.278-2.323.805-.65.526-1.083 1.239-1.331 2.106-.248.867-.217 1.579.155 2.105.31.557.929.805 1.858.805.898 0 1.672-.278 2.322-.805.65-.526 1.115-1.238 1.363-2.105.247-.867.185-1.58-.155-2.106-.34-.527-.991-.805-1.89-.805Z" }) + ] + } + ); +}); + +exports.default = SiPfsense; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.d.ts new file mode 100644 index 000000000..2c2678d32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiPfsense: IconType; +export { SiPfsense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.mjs new file mode 100644 index 000000000..511cff5a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPfsense.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiPfsense = React.forwardRef(function SiPfsense2({ title = "pfSense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.013 0C.898 0 0 .929 0 2.044v17.775L3.252 8.27h3.282L6.1 9.785h.063c.186-.217.433-.403.742-.62.31-.216.62-.402.96-.588.342-.186.713-.31 1.116-.433.402-.124.805-.155 1.208-.155.867 0 1.579.154 2.198.433.62.279 1.084.712 1.455 1.239.31.464.5 1.019.593 1.669.006.06.027.135.027.189.062.712-.031 1.518-.28 2.385a8.571 8.571 0 0 1-1.02 2.322 9.885 9.885 0 0 1-1.58 1.95 8.125 8.125 0 0 1-2.044 1.364 5.536 5.536 0 0 1-2.354.495 5.655 5.655 0 0 1-1.982-.34c-.588-.217-.99-.62-1.238-1.177h-.062L2.353 24h19.603A2.042 2.042 0 0 0 24 21.956V4.706c-.093-.03-.186-.06-.248-.092a2.771 2.771 0 0 0-.557-.062c-.557 0-1.022.124-1.394.372-.34.248-.65.743-.867 1.518l-.526 1.826h2.013l.495 1.58-1.3 1.27h-2.014l-2.446 8.67h-3.53l2.446-8.67h-1.455l.805-2.85h1.425l.557-2.044c.185-.619.403-1.238.681-1.795a4.996 4.996 0 0 1 1.053-1.487c.433-.434.99-.775 1.641-1.022.65-.248 1.487-.372 2.447-.372.248 0 .464 0 .712.031A2.082 2.082 0 0 0 21.988 0zm6.565 11.118c-.898 0-1.672.278-2.323.805-.65.526-1.083 1.239-1.331 2.106-.248.867-.217 1.579.155 2.105.31.557.929.805 1.858.805.898 0 1.672-.278 2.322-.805.65-.526 1.115-1.238 1.363-2.105.247-.867.185-1.58-.155-2.106-.34-.527-.991-.805-1.89-.805Z" }) + ] + } + ); +}); + +export { SiPfsense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.cjs new file mode 100644 index 000000000..d849a2e01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4A5F88"; +const SiPhabricator = React__namespace.forwardRef(function SiPhabricator2({ title = "Phabricator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.18 10.018l-4.426-4.449C17.053 3.782 14.66 2.665 12 2.665S6.947 3.783 5.246 5.568L.821 10.02a2.802 2.802 0 0 0 0 3.962l4.542 4.578c1.692 1.711 4.04 2.773 6.637 2.773s4.945-1.062 6.637-2.774l4.543-4.579a2.802 2.802 0 0 0 0-3.962zM12 19.384a7.384 7.384 0 1 1 0-14.768 7.384 7.384 0 0 1 0 14.768zm3.651-7.572l.999-1.014-.447-1.028H14.78l-.456-.45-.038-1.437-1.008-.431-1.01.998h-.624l-1.047-1.006-1.022.415.035 1.406-.444.443-1.444-.014-.409 1.023 1.034 1.01.006.633-.996 1.007.44 1.031 1.428-.002.456.453.016 1.422 1.068.447.965-1.009.636.01 1.028 1.011 1.044-.423-.043-1.409.442-.44 1.43.013.423-1.03-1.03-1-.009-.629zm-3.715 1.806a1.533 1.533 0 1 1 0-3.065 1.533 1.533 0 0 1 0 3.065z" }) + ] + } + ); +}); + +exports.default = SiPhabricator; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.d.ts new file mode 100644 index 000000000..2bfcd8f6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4A5F88"; +declare const SiPhabricator: IconType; +export { SiPhabricator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.mjs new file mode 100644 index 000000000..673d1f4d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhabricator.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4A5F88"; +const SiPhabricator = React.forwardRef(function SiPhabricator2({ title = "Phabricator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.18 10.018l-4.426-4.449C17.053 3.782 14.66 2.665 12 2.665S6.947 3.783 5.246 5.568L.821 10.02a2.802 2.802 0 0 0 0 3.962l4.542 4.578c1.692 1.711 4.04 2.773 6.637 2.773s4.945-1.062 6.637-2.774l4.543-4.579a2.802 2.802 0 0 0 0-3.962zM12 19.384a7.384 7.384 0 1 1 0-14.768 7.384 7.384 0 0 1 0 14.768zm3.651-7.572l.999-1.014-.447-1.028H14.78l-.456-.45-.038-1.437-1.008-.431-1.01.998h-.624l-1.047-1.006-1.022.415.035 1.406-.444.443-1.444-.014-.409 1.023 1.034 1.01.006.633-.996 1.007.44 1.031 1.428-.002.456.453.016 1.422 1.068.447.965-1.009.636.01 1.028 1.011 1.044-.423-.043-1.409.442-.44 1.43.013.423-1.03-1.03-1-.009-.629zm-3.715 1.806a1.533 1.533 0 1 1 0-3.065 1.533 1.533 0 0 1 0 3.065z" }) + ] + } + ); +}); + +export { SiPhabricator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.cjs new file mode 100644 index 000000000..7f9998679 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0065D3"; +const SiPhilipshue = React__namespace.forwardRef(function SiPhilipshue2({ title = "Philips Hue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.672 9.6c-2.043 0-3.505 1.386-3.682 3.416h-.664c-.247 0-.395.144-.395.384 0 .24.148.384.395.384h.661c.152 2.09 1.652 3.423 3.915 3.423.944 0 1.685-.144 2.332-.453.158-.075.337-.217.292-.471a.334.334 0 0 0-.15-.242c-.104-.065-.25-.072-.422-.02a7.93 7.93 0 0 0-.352.12c-.414.146-.771.273-1.599.273-1.75 0-2.908-1.023-2.952-2.605v-.025h5.444c.313 0 .492-.164.505-.463v-.058C23.994 9.865 21.452 9.6 20.672 9.6zm2.376 3.416h-5l.004-.035c.121-1.58 1.161-2.601 2.649-2.601 1.134 0 2.347.685 2.347 2.606zM9.542 10.221c0-.335-.195-.534-.52-.534s-.52.2-.52.534v2.795h1.04zm4.29 3.817c0 1.324-.948 2.361-2.16 2.361-1.433 0-2.13-.763-2.13-2.333v-.282h-1.04v.34c0 2.046.965 3.083 2.868 3.083 1.12 0 1.943-.486 2.443-1.445l.02-.036v.861c0 .334.193.534.519.534.325 0 .52-.2.52-.534v-2.803h-1.04zm.52-4.351c-.326 0-.52.2-.52.534v2.795h1.04v-2.795c0-.335-.195-.534-.52-.534zM3.645 9.6c-1.66 0-2.31 1.072-2.471 1.4l-.135.278V7.355c0-.347-.199-.562-.52-.562-.32 0-.519.215-.519.562v5.661h1.039v-.015c0-1.249.72-2.592 2.304-2.592 1.29 0 2.001.828 2.001 2.332v.275h1.04v-.246c0-2.044-.973-3.17-2.739-3.17zM0 16.558c0 .347.199.563.52.563.32 0 .519-.216.519-.563v-2.774H0zm5.344 0c0 .347.2.563.52.563s.52-.216.52-.563v-2.774h-1.04z" }) + ] + } + ); +}); + +exports.default = SiPhilipshue; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.d.ts new file mode 100644 index 000000000..fc8b0cb23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0065D3"; +declare const SiPhilipshue: IconType; +export { SiPhilipshue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.mjs new file mode 100644 index 000000000..a3978e3b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhilipshue.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0065D3"; +const SiPhilipshue = React.forwardRef(function SiPhilipshue2({ title = "Philips Hue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.672 9.6c-2.043 0-3.505 1.386-3.682 3.416h-.664c-.247 0-.395.144-.395.384 0 .24.148.384.395.384h.661c.152 2.09 1.652 3.423 3.915 3.423.944 0 1.685-.144 2.332-.453.158-.075.337-.217.292-.471a.334.334 0 0 0-.15-.242c-.104-.065-.25-.072-.422-.02a7.93 7.93 0 0 0-.352.12c-.414.146-.771.273-1.599.273-1.75 0-2.908-1.023-2.952-2.605v-.025h5.444c.313 0 .492-.164.505-.463v-.058C23.994 9.865 21.452 9.6 20.672 9.6zm2.376 3.416h-5l.004-.035c.121-1.58 1.161-2.601 2.649-2.601 1.134 0 2.347.685 2.347 2.606zM9.542 10.221c0-.335-.195-.534-.52-.534s-.52.2-.52.534v2.795h1.04zm4.29 3.817c0 1.324-.948 2.361-2.16 2.361-1.433 0-2.13-.763-2.13-2.333v-.282h-1.04v.34c0 2.046.965 3.083 2.868 3.083 1.12 0 1.943-.486 2.443-1.445l.02-.036v.861c0 .334.193.534.519.534.325 0 .52-.2.52-.534v-2.803h-1.04zm.52-4.351c-.326 0-.52.2-.52.534v2.795h1.04v-2.795c0-.335-.195-.534-.52-.534zM3.645 9.6c-1.66 0-2.31 1.072-2.471 1.4l-.135.278V7.355c0-.347-.199-.562-.52-.562-.32 0-.519.215-.519.562v5.661h1.039v-.015c0-1.249.72-2.592 2.304-2.592 1.29 0 2.001.828 2.001 2.332v.275h1.04v-.246c0-2.044-.973-3.17-2.739-3.17zM0 16.558c0 .347.199.563.52.563.32 0 .519-.216.519-.563v-2.774H0zm5.344 0c0 .347.2.563.52.563s.52-.216.52-.563v-2.774h-1.04z" }) + ] + } + ); +}); + +export { SiPhilipshue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.cjs new file mode 100644 index 000000000..70c0421e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD4F00"; +const SiPhoenixframework = React__namespace.forwardRef(function SiPhoenixframework2({ title = "Phoenix Framework", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.012 15.241-.188-.036c-1.34-.248-2.186-1.06-2.588-2.334-.25-.794.204-1.38 1.038-1.416.682-.032 1.15.36 1.562.816.532.588 1.02 1.216 1.542 1.814.754.86 1.64 1.412 2.854 1.24a5.404 5.404 0 0 0 2.86-1.308c.124-.108.26-.2.392-.302l-.084-.098a6.034 6.034 0 0 1-2.12.252c-1.092-.054-2.132-.282-3.064-.882-.848-.548-1.476-1.28-1.774-2.26-.24-.79.252-1.344 1.072-1.23.313.049.606.187.842.398.2.168.39.346.594.51.958.77 2.294.812 3.508-.022-1.996-.01-3.354-1.108-4.548-2.5-.466-.544-.922-1.1-1.4-1.636-.92-1.038-1.944-1.952-3.346-2.264-1.79-.398-3.518-.136-5.176.622A4.214 4.214 0 0 0 0 5.217h.352c.836-.022 1.464.35 1.916 1.034.328.498.482 1.06.6 1.64.176.86.086 1.734.188 2.598.26 2.22 1.394 3.768 3.506 4.56.774.292 1.568.39 2.45.19v.002zM3.674 5.113c-.334.084-.6-.05-.874-.328.47-.118.886-.164 1.332-.18a.562.562 0 0 1-.458.508zm10.938 12.96c-.03-.212-.212-.306-.356-.42-.634-.492-1.378-.668-2.164-.682a4.08 4.08 0 0 1-1.378-.208c-.204-.076-.43-.174-.426-.436.006-.266.238-.34.448-.404.174-.052.352-.084.548-.13-.5-.32-.988-.364-1.636-.102-1.024.41-2.032.36-3.052-.006-.574-.208-1.086-.534-1.618-.824l-.026.02c.44.722 1.038 1.304 1.71 1.8 1.296.96 2.712 1.53 4.37 1.276a22.8 22.8 0 0 1 1.614-.19c.676-.054 1.32.136 1.966.308v-.002zm-3.124-10.37c-.036-.026-.07-.09-.144-.024a5.258 5.258 0 0 0 2.284 1.776c1.488.604 3 .708 4.544.174 1.2-.414 2.06-.01 2.508 1.156.066-1.352-.73-2.338-1.996-2.53-.712-.11-1.37.128-2.038.32-1.856.54-3.584.274-5.16-.872h.002zm9.256 5.272.726.064c-.546-.48-1.212-.52-1.888-.48-1.026.058-1.766.65-2.44 1.356-.594.624-1.13 1.324-2.016 1.574l.02.04c.12.002.24.008.36.002 1.288-.058 2.5-.33 3.464-1.264.306-.294.576-.62.87-.926.226-.258.562-.394.904-.366zm-2.992-1.596c-.96.084-1.794.48-2.58 1.006-.602.404-1.248.594-1.972.468-.128-.022-.258-.04-.384-.058l-.006.054c.046.024.092.05.14.07.12.048.24.106.364.136 1.396.33 2.732.16 3.936-.618.76-.49 1.546-.582 2.398-.456.086.014.172.028.258.036.08.008.164.088.272 0a3.454 3.454 0 0 0-2.426-.638zm-3.434-3.26a2.68 2.68 0 0 0 1.534-.364c-.154.014-.22.014-.282.026a2.296 2.296 0 0 1-1.96-.472l-.646-.5c-.856-.652-1.836-.872-2.91-.852.018.052.02.088.038.106 1.168 1.18 2.52 1.996 4.226 2.054v.002zm8.452 6.06c-.724-.72-1.694-.81-2.59-.186.594.028 1.04.216 1.4.592.128.134.262.26.404.378.548.44 1.474.46 2.016.052-.636-.248-.636-.248-1.23-.838v.002zm-7.198 5.486c-.634-1.18-1.7-1.448-2.936-1.368.364.1.708.26 1.02.474.286.2.526.448.764.702.472.504 1.208.812 1.696.708-.224-.14-.546-.514-.546-.514h-.012l.008.006.004.018c.004-.02.006-.016.008-.01h.02l-.028-.012v.01l.01.004s.114.208-.008-.018z" }) + ] + } + ); +}); + +exports.default = SiPhoenixframework; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.d.ts new file mode 100644 index 000000000..ef232a077 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD4F00"; +declare const SiPhoenixframework: IconType; +export { SiPhoenixframework as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.mjs new file mode 100644 index 000000000..331fe2327 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoenixframework.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD4F00"; +const SiPhoenixframework = React.forwardRef(function SiPhoenixframework2({ title = "Phoenix Framework", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.012 15.241-.188-.036c-1.34-.248-2.186-1.06-2.588-2.334-.25-.794.204-1.38 1.038-1.416.682-.032 1.15.36 1.562.816.532.588 1.02 1.216 1.542 1.814.754.86 1.64 1.412 2.854 1.24a5.404 5.404 0 0 0 2.86-1.308c.124-.108.26-.2.392-.302l-.084-.098a6.034 6.034 0 0 1-2.12.252c-1.092-.054-2.132-.282-3.064-.882-.848-.548-1.476-1.28-1.774-2.26-.24-.79.252-1.344 1.072-1.23.313.049.606.187.842.398.2.168.39.346.594.51.958.77 2.294.812 3.508-.022-1.996-.01-3.354-1.108-4.548-2.5-.466-.544-.922-1.1-1.4-1.636-.92-1.038-1.944-1.952-3.346-2.264-1.79-.398-3.518-.136-5.176.622A4.214 4.214 0 0 0 0 5.217h.352c.836-.022 1.464.35 1.916 1.034.328.498.482 1.06.6 1.64.176.86.086 1.734.188 2.598.26 2.22 1.394 3.768 3.506 4.56.774.292 1.568.39 2.45.19v.002zM3.674 5.113c-.334.084-.6-.05-.874-.328.47-.118.886-.164 1.332-.18a.562.562 0 0 1-.458.508zm10.938 12.96c-.03-.212-.212-.306-.356-.42-.634-.492-1.378-.668-2.164-.682a4.08 4.08 0 0 1-1.378-.208c-.204-.076-.43-.174-.426-.436.006-.266.238-.34.448-.404.174-.052.352-.084.548-.13-.5-.32-.988-.364-1.636-.102-1.024.41-2.032.36-3.052-.006-.574-.208-1.086-.534-1.618-.824l-.026.02c.44.722 1.038 1.304 1.71 1.8 1.296.96 2.712 1.53 4.37 1.276a22.8 22.8 0 0 1 1.614-.19c.676-.054 1.32.136 1.966.308v-.002zm-3.124-10.37c-.036-.026-.07-.09-.144-.024a5.258 5.258 0 0 0 2.284 1.776c1.488.604 3 .708 4.544.174 1.2-.414 2.06-.01 2.508 1.156.066-1.352-.73-2.338-1.996-2.53-.712-.11-1.37.128-2.038.32-1.856.54-3.584.274-5.16-.872h.002zm9.256 5.272.726.064c-.546-.48-1.212-.52-1.888-.48-1.026.058-1.766.65-2.44 1.356-.594.624-1.13 1.324-2.016 1.574l.02.04c.12.002.24.008.36.002 1.288-.058 2.5-.33 3.464-1.264.306-.294.576-.62.87-.926.226-.258.562-.394.904-.366zm-2.992-1.596c-.96.084-1.794.48-2.58 1.006-.602.404-1.248.594-1.972.468-.128-.022-.258-.04-.384-.058l-.006.054c.046.024.092.05.14.07.12.048.24.106.364.136 1.396.33 2.732.16 3.936-.618.76-.49 1.546-.582 2.398-.456.086.014.172.028.258.036.08.008.164.088.272 0a3.454 3.454 0 0 0-2.426-.638zm-3.434-3.26a2.68 2.68 0 0 0 1.534-.364c-.154.014-.22.014-.282.026a2.296 2.296 0 0 1-1.96-.472l-.646-.5c-.856-.652-1.836-.872-2.91-.852.018.052.02.088.038.106 1.168 1.18 2.52 1.996 4.226 2.054v.002zm8.452 6.06c-.724-.72-1.694-.81-2.59-.186.594.028 1.04.216 1.4.592.128.134.262.26.404.378.548.44 1.474.46 2.016.052-.636-.248-.636-.248-1.23-.838v.002zm-7.198 5.486c-.634-1.18-1.7-1.448-2.936-1.368.364.1.708.26 1.02.474.286.2.526.448.764.702.472.504 1.208.812 1.696.708-.224-.14-.546-.514-.546-.514h-.012l.008.006.004.018c.004-.02.006-.016.008-.01h.02l-.028-.012v.01l.01.004s.114.208-.008-.018z" }) + ] + } + ); +}); + +export { SiPhoenixframework as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.cjs new file mode 100644 index 000000000..c0586e617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5F259F"; +const SiPhonepe = React__namespace.forwardRef(function SiPhonepe2({ title = "PhonePe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.206 9.941h2.949v4.692c-.402.201-.938.268-1.34.268-1.072 0-1.609-.536-1.609-1.743V9.941zm13.47 4.816c-1.523 6.449-7.985 10.442-14.433 8.919C2.794 22.154-1.199 15.691.324 9.243 1.847 2.794 8.309-1.199 14.757.324c6.449 1.523 10.442 7.985 8.919 14.433zm-6.231-5.888a.887.887 0 0 0-.871-.871h-1.609l-3.686-4.222c-.335-.402-.871-.536-1.407-.402l-1.274.401c-.201.067-.268.335-.134.469l4.021 3.82H6.386c-.201 0-.335.134-.335.335v.67c0 .469.402.871.871.871h.938v3.217c0 2.413 1.273 3.82 3.418 3.82.67 0 1.206-.067 1.877-.335v2.145c0 .603.469 1.072 1.072 1.072h.938a.432.432 0 0 0 .402-.402V9.874h1.542c.201 0 .335-.134.335-.335v-.67z" }) + ] + } + ); +}); + +exports.default = SiPhonepe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.d.ts new file mode 100644 index 000000000..a773972a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5F259F"; +declare const SiPhonepe: IconType; +export { SiPhonepe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.mjs new file mode 100644 index 000000000..f148ffcd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhonepe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5F259F"; +const SiPhonepe = React.forwardRef(function SiPhonepe2({ title = "PhonePe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.206 9.941h2.949v4.692c-.402.201-.938.268-1.34.268-1.072 0-1.609-.536-1.609-1.743V9.941zm13.47 4.816c-1.523 6.449-7.985 10.442-14.433 8.919C2.794 22.154-1.199 15.691.324 9.243 1.847 2.794 8.309-1.199 14.757.324c6.449 1.523 10.442 7.985 8.919 14.433zm-6.231-5.888a.887.887 0 0 0-.871-.871h-1.609l-3.686-4.222c-.335-.402-.871-.536-1.407-.402l-1.274.401c-.201.067-.268.335-.134.469l4.021 3.82H6.386c-.201 0-.335.134-.335.335v.67c0 .469.402.871.871.871h.938v3.217c0 2.413 1.273 3.82 3.418 3.82.67 0 1.206-.067 1.877-.335v2.145c0 .603.469 1.072 1.072 1.072h.938a.432.432 0 0 0 .402-.402V9.874h1.542c.201 0 .335-.134.335-.335v-.67z" }) + ] + } + ); +}); + +export { SiPhonepe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.cjs new file mode 100644 index 000000000..c93d3e181 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C402B"; +const SiPhosphoricons = React__namespace.forwardRef(function SiPhosphoricons2({ title = "Phosphor Icons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.404.001H3.866a.618.618 0 0 0-.619.619v15.173A8.217 8.217 0 0 0 11.449 24a.617.617 0 0 0 .618-.619v-6.969h.332a8.204 8.204 0 0 0 7.715-5.031 8.216 8.216 0 0 0 0-6.349A8.214 8.214 0 0 0 12.399.001h.005Zm-1.579 22.736a6.98 6.98 0 0 1-6.317-6.317h6.317v6.317Zm0-9.562L4.869 1.238h5.967l-.011 11.937Zm1.579 2h-.331V1.238h.331a6.975 6.975 0 0 1 5.016 1.993 6.986 6.986 0 0 1 1.546 2.277 6.987 6.987 0 0 1 0 5.397 6.975 6.975 0 0 1-6.562 4.27Z" }) + ] + } + ); +}); + +exports.default = SiPhosphoricons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.d.ts new file mode 100644 index 000000000..751b596ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C402B"; +declare const SiPhosphoricons: IconType; +export { SiPhosphoricons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.mjs new file mode 100644 index 000000000..b36d59c9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhosphoricons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C402B"; +const SiPhosphoricons = React.forwardRef(function SiPhosphoricons2({ title = "Phosphor Icons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.404.001H3.866a.618.618 0 0 0-.619.619v15.173A8.217 8.217 0 0 0 11.449 24a.617.617 0 0 0 .618-.619v-6.969h.332a8.204 8.204 0 0 0 7.715-5.031 8.216 8.216 0 0 0 0-6.349A8.214 8.214 0 0 0 12.399.001h.005Zm-1.579 22.736a6.98 6.98 0 0 1-6.317-6.317h6.317v6.317Zm0-9.562L4.869 1.238h5.967l-.011 11.937Zm1.579 2h-.331V1.238h.331a6.975 6.975 0 0 1 5.016 1.993 6.986 6.986 0 0 1 1.546 2.277 6.987 6.987 0 0 1 0 5.397 6.975 6.975 0 0 1-6.562 4.27Z" }) + ] + } + ); +}); + +export { SiPhosphoricons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.cjs new file mode 100644 index 000000000..d74a2d0bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C47CB"; +const SiPhotobucket = React__namespace.forwardRef(function SiPhotobucket2({ title = "Photobucket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9916 11.4983C23.7324 5.0509 18.4725 0 12.0083 0c-6.6146.0084-12 5.3854-12 12s5.3854 12 12 12c6.414 0 11.6488-4.984 11.975-11.3728 0-.0335 0-.0586.0084-.092zm-6.0125-7.1248c.0752.0251.1505.0586.2341.1004a7.8226 7.8226 0 0 0-1.9902-.2593c-3.9972 0-7.4007 3.1108-7.752 7.0913-.0078.131-.0167.262-.025.393 0 .1004-.0085.2008-.0085.3095 0 .1003 0 .2007.0084.2927 0 .0935.0252.12.0252.418.3512 3.9722 3.7547 7.0746 7.7519 7.0746.6857 0 1.3547-.092 1.9902-.2592-.0213 0-.1057.0492-.2341.092-.0787.0197-.0313.0141-.1088.0334-.195.078-.3957.1394-.5937.209-.3658.1046-.53.1442-.6188.159-.2014.0533-.962.2007-1.731.2007-4.524 0-8.2118-3.6795-8.2118-8.2119s3.6794-8.2119 8.2118-8.2119c.2592 0 .5185.0168.7944.0419.2059.0137.4498.0572.7694.117.1421.0303.2843.0614.4264.092.229.056.4517.1338.6774.2007.2886.105.2882.1128.3512.1338zm-8.6802 7.476v-.1004c.1255-2.1156 1.89-3.7798 4.014-3.7798 2.216 0 4.0223 1.8063 4.0223 4.0223s-1.8063 4.0223-4.0223 4.0223c-2.124 0-3.8885-1.6557-4.014-3.7547v-.0418c-.0183-.164 0-.2535 0-.368zm4.0224 5.0341c2.6926 0 4.8836-2.191 4.8836-4.8836 0-2.6927-2.191-4.8836-4.8836-4.8836-.1171 0-.2258.0083-.343.0167a5.06 5.06 0 0 1 1.3882-.1923c2.793 0 5.0593 2.2745 5.0593 5.0592 0 2.7847-2.2746 5.0592-5.0593 5.0592a5.105 5.105 0 0 1-1.3881-.1923c.1139.0129.2286.0112.3429.0167zM20.287 12c0-3.2279-2.6007-5.862-5.8119-5.9205a6.269 6.269 0 0 1 .8028-.0502c3.2948 0 5.9791 2.6843 5.9791 5.979 0 3.2949-2.6843 5.9792-5.979 5.9792-.276 0-.5436-.0168-.8029-.0502 3.2112-.0753 5.8119-2.7094 5.8119-5.9373zm-5.009 6.832c3.7714 0 6.8403-3.069 6.8403-6.8404s-3.069-6.8404-6.8404-6.8404h-.0752c.3345-.0502.669-.0836 1.0118-.0836 3.6711 0 6.6983 2.86 6.9073 6.5226v.8028c-.2007 3.6627-3.2362 6.5227-6.9073 6.5227 0-.0043-.3691.0152-1.0118-.0836h.0752zm-3.2698 4.2983C5.8703 23.1303.878 18.138.878 12S5.8704.8697 12.0083.8697c1.9401 0 3.7548.485 5.3436 1.3547-.1547-.0773-1.0103-.3596-1.1206-.3596-.1254-.0334-.2508-.0669-.368-.092-.2798-.0646-1.2458-.2676-2.3748-.2676C7.6934 1.4885 2.9854 6.205 2.9854 12s4.7163 10.5115 10.5115 10.5115c1.2478 0 2.2205-.2353 2.2829-.2509.2278-.0439.4826-.1254.5352-.1254.2102-.0418.8923-.2789 1.0536-.3595-1.5888.8613-3.4202 1.3547-5.3603 1.3547zm4.9339-2.124c-.2474.0927-.6369.2302-.9283.2927-.117.0334-.2341.0585-.3763.092-.027.0099-.056.0111-.0836.0167a3.5193 3.5193 0 0 1-.4098.0752 10.0077 10.0077 0 0 1-1.664.1422c-5.3186 0-9.6502-4.3317-9.6502-9.6502s4.34-9.6251 9.6585-9.6251c1.8086 0 3.0386.4746 3.671.7275l.3513.1505c.1505.067.2927.1422.4348.2175-.1375-.0525-.2787-.0948-.418-.1422-.3346-.1045-.7668-.1896-.8781-.2174-.4264-.0753-.6721-.107-.8446-.117-.2927-.0252-.5854-.0419-.8697-.0419-5.009 0-9.0816 4.0725-9.0816 9.0732s4.0725 9.0732 9.0732 9.0732c.2843 0 .577-.0168.8613-.0419.1548-.0085.792-.09 1.062-.1672.092-.0167.1757-.0418.2677-.0585.7113-.1779.7506-.2426.8195-.2426-.1422.0753-.2844.1505-.4349.2174-.2868.1119-.2934.1259-.5602.2259z" }) + ] + } + ); +}); + +exports.default = SiPhotobucket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.d.ts new file mode 100644 index 000000000..55efd385d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C47CB"; +declare const SiPhotobucket: IconType; +export { SiPhotobucket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.mjs new file mode 100644 index 000000000..39888c727 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotobucket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C47CB"; +const SiPhotobucket = React.forwardRef(function SiPhotobucket2({ title = "Photobucket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9916 11.4983C23.7324 5.0509 18.4725 0 12.0083 0c-6.6146.0084-12 5.3854-12 12s5.3854 12 12 12c6.414 0 11.6488-4.984 11.975-11.3728 0-.0335 0-.0586.0084-.092zm-6.0125-7.1248c.0752.0251.1505.0586.2341.1004a7.8226 7.8226 0 0 0-1.9902-.2593c-3.9972 0-7.4007 3.1108-7.752 7.0913-.0078.131-.0167.262-.025.393 0 .1004-.0085.2008-.0085.3095 0 .1003 0 .2007.0084.2927 0 .0935.0252.12.0252.418.3512 3.9722 3.7547 7.0746 7.7519 7.0746.6857 0 1.3547-.092 1.9902-.2592-.0213 0-.1057.0492-.2341.092-.0787.0197-.0313.0141-.1088.0334-.195.078-.3957.1394-.5937.209-.3658.1046-.53.1442-.6188.159-.2014.0533-.962.2007-1.731.2007-4.524 0-8.2118-3.6795-8.2118-8.2119s3.6794-8.2119 8.2118-8.2119c.2592 0 .5185.0168.7944.0419.2059.0137.4498.0572.7694.117.1421.0303.2843.0614.4264.092.229.056.4517.1338.6774.2007.2886.105.2882.1128.3512.1338zm-8.6802 7.476v-.1004c.1255-2.1156 1.89-3.7798 4.014-3.7798 2.216 0 4.0223 1.8063 4.0223 4.0223s-1.8063 4.0223-4.0223 4.0223c-2.124 0-3.8885-1.6557-4.014-3.7547v-.0418c-.0183-.164 0-.2535 0-.368zm4.0224 5.0341c2.6926 0 4.8836-2.191 4.8836-4.8836 0-2.6927-2.191-4.8836-4.8836-4.8836-.1171 0-.2258.0083-.343.0167a5.06 5.06 0 0 1 1.3882-.1923c2.793 0 5.0593 2.2745 5.0593 5.0592 0 2.7847-2.2746 5.0592-5.0593 5.0592a5.105 5.105 0 0 1-1.3881-.1923c.1139.0129.2286.0112.3429.0167zM20.287 12c0-3.2279-2.6007-5.862-5.8119-5.9205a6.269 6.269 0 0 1 .8028-.0502c3.2948 0 5.9791 2.6843 5.9791 5.979 0 3.2949-2.6843 5.9792-5.979 5.9792-.276 0-.5436-.0168-.8029-.0502 3.2112-.0753 5.8119-2.7094 5.8119-5.9373zm-5.009 6.832c3.7714 0 6.8403-3.069 6.8403-6.8404s-3.069-6.8404-6.8404-6.8404h-.0752c.3345-.0502.669-.0836 1.0118-.0836 3.6711 0 6.6983 2.86 6.9073 6.5226v.8028c-.2007 3.6627-3.2362 6.5227-6.9073 6.5227 0-.0043-.3691.0152-1.0118-.0836h.0752zm-3.2698 4.2983C5.8703 23.1303.878 18.138.878 12S5.8704.8697 12.0083.8697c1.9401 0 3.7548.485 5.3436 1.3547-.1547-.0773-1.0103-.3596-1.1206-.3596-.1254-.0334-.2508-.0669-.368-.092-.2798-.0646-1.2458-.2676-2.3748-.2676C7.6934 1.4885 2.9854 6.205 2.9854 12s4.7163 10.5115 10.5115 10.5115c1.2478 0 2.2205-.2353 2.2829-.2509.2278-.0439.4826-.1254.5352-.1254.2102-.0418.8923-.2789 1.0536-.3595-1.5888.8613-3.4202 1.3547-5.3603 1.3547zm4.9339-2.124c-.2474.0927-.6369.2302-.9283.2927-.117.0334-.2341.0585-.3763.092-.027.0099-.056.0111-.0836.0167a3.5193 3.5193 0 0 1-.4098.0752 10.0077 10.0077 0 0 1-1.664.1422c-5.3186 0-9.6502-4.3317-9.6502-9.6502s4.34-9.6251 9.6585-9.6251c1.8086 0 3.0386.4746 3.671.7275l.3513.1505c.1505.067.2927.1422.4348.2175-.1375-.0525-.2787-.0948-.418-.1422-.3346-.1045-.7668-.1896-.8781-.2174-.4264-.0753-.6721-.107-.8446-.117-.2927-.0252-.5854-.0419-.8697-.0419-5.009 0-9.0816 4.0725-9.0816 9.0732s4.0725 9.0732 9.0732 9.0732c.2843 0 .577-.0168.8613-.0419.1548-.0085.792-.09 1.062-.1672.092-.0167.1757-.0418.2677-.0585.7113-.1779.7506-.2426.8195-.2426-.1422.0753-.2844.1505-.4349.2174-.2868.1119-.2934.1259-.5602.2259z" }) + ] + } + ); +}); + +export { SiPhotobucket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.cjs new file mode 100644 index 000000000..dfc6fbab7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DAD4B"; +const SiPhotocrowd = React__namespace.forwardRef(function SiPhotocrowd2({ title = "Photocrowd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.182 0C.977 0 0 1.058 0 2.364v19.462C0 23.026.977 24 2.182 24h19.636A2.179 2.179 0 0 0 24 21.826V2.364C24 1.058 23.023 0 21.818 0zM12 3.49a1.022 1.022 0 1 1 0 2.045 1.022 1.022 0 0 1 0-2.044zM8.326 4.498a1.022 1.022 0 1 1-.142 2.039 1.022 1.022 0 0 1 .142-2.04zm7.347 0a1.02 1.02 0 0 1 .955 1.529 1.021 1.021 0 1 1-.955-1.53zm-10.23 2.74a1.02 1.02 0 1 1 .145 2.037 1.02 1.02 0 0 1-.145-2.036zm13.113 0a1.02 1.02 0 1 1-.142 2.036 1.02 1.02 0 0 1 .142-2.035zm-7.497.116a1.021 1.021 0 1 1 .119 2.039 1.021 1.021 0 0 1-.12-2.04zm3.687.88a1.021 1.021 0 1 1 .001 2.042 1.021 1.021 0 0 1 0-2.043zm-6.308 1.864a1.02 1.02 0 1 1-.119 2.04 1.02 1.02 0 0 1 .12-2.04zm3.561.88a1.023 1.023 0 1 1-.001 2.047 1.023 1.023 0 0 1 .001-2.047zm-7.488.002a1.022 1.022 0 1 1-.001 2.044 1.022 1.022 0 0 1 0-2.044zm14.977 0a1.02 1.02 0 1 1-.001 2.042 1.02 1.02 0 0 1 0-2.042zm-3.793.881a1.02 1.02 0 1 1-.119 2.038 1.02 1.02 0 0 1 .12-2.038zm-6.442 1.866a1.021 1.021 0 1 1-.001 2.042 1.021 1.021 0 0 1 0-2.042zm3.568.883a1.02 1.02 0 1 1 .12 2.038 1.02 1.02 0 0 1-.12-2.038zm-7.235.116a1.02 1.02 0 0 1 .44 1.904 1.022 1.022 0 1 1-.44-1.904zm12.827 0a1.022 1.022 0 1 1 .142 2.038 1.022 1.022 0 0 1-.142-2.038zm-10.229 2.74a1.021 1.021 0 1 1 .142 2.038 1.021 1.021 0 0 1-.142-2.038zm7.63 0a1.02 1.02 0 0 1 .44 1.904 1.022 1.022 0 1 1-.44-1.904zM12 18.463a1.022 1.022 0 1 1 0 2.045 1.022 1.022 0 0 1 0-2.045z" }) + ] + } + ); +}); + +exports.default = SiPhotocrowd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.d.ts new file mode 100644 index 000000000..3342076c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DAD4B"; +declare const SiPhotocrowd: IconType; +export { SiPhotocrowd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.mjs new file mode 100644 index 000000000..7214105a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotocrowd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DAD4B"; +const SiPhotocrowd = React.forwardRef(function SiPhotocrowd2({ title = "Photocrowd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.182 0C.977 0 0 1.058 0 2.364v19.462C0 23.026.977 24 2.182 24h19.636A2.179 2.179 0 0 0 24 21.826V2.364C24 1.058 23.023 0 21.818 0zM12 3.49a1.022 1.022 0 1 1 0 2.045 1.022 1.022 0 0 1 0-2.044zM8.326 4.498a1.022 1.022 0 1 1-.142 2.039 1.022 1.022 0 0 1 .142-2.04zm7.347 0a1.02 1.02 0 0 1 .955 1.529 1.021 1.021 0 1 1-.955-1.53zm-10.23 2.74a1.02 1.02 0 1 1 .145 2.037 1.02 1.02 0 0 1-.145-2.036zm13.113 0a1.02 1.02 0 1 1-.142 2.036 1.02 1.02 0 0 1 .142-2.035zm-7.497.116a1.021 1.021 0 1 1 .119 2.039 1.021 1.021 0 0 1-.12-2.04zm3.687.88a1.021 1.021 0 1 1 .001 2.042 1.021 1.021 0 0 1 0-2.043zm-6.308 1.864a1.02 1.02 0 1 1-.119 2.04 1.02 1.02 0 0 1 .12-2.04zm3.561.88a1.023 1.023 0 1 1-.001 2.047 1.023 1.023 0 0 1 .001-2.047zm-7.488.002a1.022 1.022 0 1 1-.001 2.044 1.022 1.022 0 0 1 0-2.044zm14.977 0a1.02 1.02 0 1 1-.001 2.042 1.02 1.02 0 0 1 0-2.042zm-3.793.881a1.02 1.02 0 1 1-.119 2.038 1.02 1.02 0 0 1 .12-2.038zm-6.442 1.866a1.021 1.021 0 1 1-.001 2.042 1.021 1.021 0 0 1 0-2.042zm3.568.883a1.02 1.02 0 1 1 .12 2.038 1.02 1.02 0 0 1-.12-2.038zm-7.235.116a1.02 1.02 0 0 1 .44 1.904 1.022 1.022 0 1 1-.44-1.904zm12.827 0a1.022 1.022 0 1 1 .142 2.038 1.022 1.022 0 0 1-.142-2.038zm-10.229 2.74a1.021 1.021 0 1 1 .142 2.038 1.021 1.021 0 0 1-.142-2.038zm7.63 0a1.02 1.02 0 0 1 .44 1.904 1.022 1.022 0 1 1-.44-1.904zM12 18.463a1.022 1.022 0 1 1 0 2.045 1.022 1.022 0 0 1 0-2.045z" }) + ] + } + ); +}); + +export { SiPhotocrowd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.cjs new file mode 100644 index 000000000..5b04243f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004480"; +const SiPhoton = React__namespace.forwardRef(function SiPhoton2({ title = "Photon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.454 16.915-3.379 4.091a13.47 13.47 0 0 1-1.089-1.079l4.091-3.38c.123.116.252.246.377.368Zm1.045.809-2.517 4.679a11.334 11.334 0 0 1-1.281-.856l3.364-4.138c.357.262.434.262.434.315Zm-1.913-1.772-4.119 3.345a11.75 11.75 0 0 1-.856-1.277l4.682-2.518c.008.053.235.371.293.45ZM9.682 18.3l-1.558 5.063a12.111 12.111 0 0 1-1.419-.588l2.492-4.693c.416.192.478.177.485.217v.001ZM5.72 14.319c.059.163.125.324.198.481l-4.691 2.496a11.458 11.458 0 0 1-.589-1.423l5.082-1.554Zm5.23 4.292-.532 5.287a12.157 12.157 0 0 1-1.51-.315l1.532-5.073c.167.041.337.073.51.101Zm-5.56-5.56c.026.17.06.339.1.509L.402 15.09a11.897 11.897 0 0 1-.299-1.508l5.287-.531Zm-.079-1.306v.522l-5.286.513a11.623 11.623 0 0 1 0-1.539l5.286.504Zm6.948 6.942.51 5.29c-.513.03-1.026.03-1.539 0l.51-5.29c.173.007.346.007.519 0Zm2.832 4.912c-.496.137-1.001.242-1.51.315l-.532-5.287c.17-.026.343-.06.51-.1l1.532 5.072Zm-9.6-13.16c-.041.17-.076.339-.101.513l-5.286-.535c.067-.508.167-1.01.299-1.505l5.088 1.53v-.003Zm9.311 7.644 2.492 4.692c-.462.225-.937.422-1.423.588l-1.551-5.082c.16-.059.32-.125.482-.198ZM5.928 9.177a5.404 5.404 0 0 0-.201.481L.651 8.085c.168-.487.366-.962.595-1.423L5.928 9.18v-.003Zm10.003 8.232 3.364 4.126c-.409.311-.837.597-1.281.856L15.5 17.724c.148-.091.29-.186.431-.29v-.025ZM6.586 8.063a5.238 5.238 0 0 0-.29.431L1.617 5.976c.259-.443.545-.87.856-1.277l4.113 3.364Zm14.427 11.864a12.27 12.27 0 0 1-1.089 1.089l-3.379-4.101c.129-.116.245-.245.368-.368l4.1 3.38ZM4.075 2.987l3.379 4.091c-.129.115-.245.245-.368.368l-4.091-3.38c.688-.778 1.163-1.135 1.08-1.079Zm18.313 15.029a11.61 11.61 0 0 1-.856 1.281l-4.116-3.364a6.02 6.02 0 0 0 .29-.431l4.682 2.518v-.004ZM5.985 1.612l2.517 4.679a7.444 7.444 0 0 0-.434.29L4.704 2.468c.408-.314.835-.6 1.281-.856ZM23.36 15.873c-.163.487-.36.963-.588 1.423L18.08 14.8c.072-.157.138-.318.199-.481l5.081 1.554ZM8.137.633l1.548 5.085a5.78 5.78 0 0 0-.481.198L6.715 1.221A12.33 12.33 0 0 1 8.137.633Zm15.758 12.949a11.738 11.738 0 0 1-.315 1.508l-5.072-1.53c.041-.17.076-.339.101-.509l5.286.531ZM10.418.101l.532 5.287a7.537 7.537 0 0 0-.51.1L8.908.416a12.157 12.157 0 0 1 1.51-.315Zm13.556 11.131c.034.511.034 1.024 0 1.535l-5.286-.506v-.523l5.286-.506ZM12.769.022l-.51 5.29h-.519l-.51-5.29a13.17 13.17 0 0 1 1.539 0Zm10.827 8.89c.138.496.243.999.315 1.508l-5.286.535a6.368 6.368 0 0 0-.101-.513l5.072-1.53ZM15.1.416l-1.541 5.073a8.672 8.672 0 0 0-.51-.101l.532-5.287c.709.094 1.498.273 1.519.315Zm2.203.824-2.502 4.68a5.199 5.199 0 0 0-.481-.202L15.871.636c.745.255 1.413.572 1.432.604Zm5.466 5.47c.227.46.423.936.588 1.422l-5.078 1.573c-.06-.16-.129-.314-.202-.481l4.692-2.514Zm-6.854-.133a7.972 7.972 0 0 0-.434-.289l2.517-4.683c.446.257.874.543 1.281.856l-3.364 4.116Zm6.46-.613L17.7 8.481a6.825 6.825 0 0 0-.29-.434l4.11-3.367c0 .03.378.464.855 1.284Zm-1.362-1.892-4.091 3.383c-.113-.133-.245-.247-.368-.371l3.38-4.091c-.065-.044.476.387 1.079 1.079Z" }) + ] + } + ); +}); + +exports.default = SiPhoton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.d.ts new file mode 100644 index 000000000..a68321bdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004480"; +declare const SiPhoton: IconType; +export { SiPhoton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.mjs new file mode 100644 index 000000000..f7abcbe23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhoton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004480"; +const SiPhoton = React.forwardRef(function SiPhoton2({ title = "Photon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.454 16.915-3.379 4.091a13.47 13.47 0 0 1-1.089-1.079l4.091-3.38c.123.116.252.246.377.368Zm1.045.809-2.517 4.679a11.334 11.334 0 0 1-1.281-.856l3.364-4.138c.357.262.434.262.434.315Zm-1.913-1.772-4.119 3.345a11.75 11.75 0 0 1-.856-1.277l4.682-2.518c.008.053.235.371.293.45ZM9.682 18.3l-1.558 5.063a12.111 12.111 0 0 1-1.419-.588l2.492-4.693c.416.192.478.177.485.217v.001ZM5.72 14.319c.059.163.125.324.198.481l-4.691 2.496a11.458 11.458 0 0 1-.589-1.423l5.082-1.554Zm5.23 4.292-.532 5.287a12.157 12.157 0 0 1-1.51-.315l1.532-5.073c.167.041.337.073.51.101Zm-5.56-5.56c.026.17.06.339.1.509L.402 15.09a11.897 11.897 0 0 1-.299-1.508l5.287-.531Zm-.079-1.306v.522l-5.286.513a11.623 11.623 0 0 1 0-1.539l5.286.504Zm6.948 6.942.51 5.29c-.513.03-1.026.03-1.539 0l.51-5.29c.173.007.346.007.519 0Zm2.832 4.912c-.496.137-1.001.242-1.51.315l-.532-5.287c.17-.026.343-.06.51-.1l1.532 5.072Zm-9.6-13.16c-.041.17-.076.339-.101.513l-5.286-.535c.067-.508.167-1.01.299-1.505l5.088 1.53v-.003Zm9.311 7.644 2.492 4.692c-.462.225-.937.422-1.423.588l-1.551-5.082c.16-.059.32-.125.482-.198ZM5.928 9.177a5.404 5.404 0 0 0-.201.481L.651 8.085c.168-.487.366-.962.595-1.423L5.928 9.18v-.003Zm10.003 8.232 3.364 4.126c-.409.311-.837.597-1.281.856L15.5 17.724c.148-.091.29-.186.431-.29v-.025ZM6.586 8.063a5.238 5.238 0 0 0-.29.431L1.617 5.976c.259-.443.545-.87.856-1.277l4.113 3.364Zm14.427 11.864a12.27 12.27 0 0 1-1.089 1.089l-3.379-4.101c.129-.116.245-.245.368-.368l4.1 3.38ZM4.075 2.987l3.379 4.091c-.129.115-.245.245-.368.368l-4.091-3.38c.688-.778 1.163-1.135 1.08-1.079Zm18.313 15.029a11.61 11.61 0 0 1-.856 1.281l-4.116-3.364a6.02 6.02 0 0 0 .29-.431l4.682 2.518v-.004ZM5.985 1.612l2.517 4.679a7.444 7.444 0 0 0-.434.29L4.704 2.468c.408-.314.835-.6 1.281-.856ZM23.36 15.873c-.163.487-.36.963-.588 1.423L18.08 14.8c.072-.157.138-.318.199-.481l5.081 1.554ZM8.137.633l1.548 5.085a5.78 5.78 0 0 0-.481.198L6.715 1.221A12.33 12.33 0 0 1 8.137.633Zm15.758 12.949a11.738 11.738 0 0 1-.315 1.508l-5.072-1.53c.041-.17.076-.339.101-.509l5.286.531ZM10.418.101l.532 5.287a7.537 7.537 0 0 0-.51.1L8.908.416a12.157 12.157 0 0 1 1.51-.315Zm13.556 11.131c.034.511.034 1.024 0 1.535l-5.286-.506v-.523l5.286-.506ZM12.769.022l-.51 5.29h-.519l-.51-5.29a13.17 13.17 0 0 1 1.539 0Zm10.827 8.89c.138.496.243.999.315 1.508l-5.286.535a6.368 6.368 0 0 0-.101-.513l5.072-1.53ZM15.1.416l-1.541 5.073a8.672 8.672 0 0 0-.51-.101l.532-5.287c.709.094 1.498.273 1.519.315Zm2.203.824-2.502 4.68a5.199 5.199 0 0 0-.481-.202L15.871.636c.745.255 1.413.572 1.432.604Zm5.466 5.47c.227.46.423.936.588 1.422l-5.078 1.573c-.06-.16-.129-.314-.202-.481l4.692-2.514Zm-6.854-.133a7.972 7.972 0 0 0-.434-.289l2.517-4.683c.446.257.874.543 1.281.856l-3.364 4.116Zm6.46-.613L17.7 8.481a6.825 6.825 0 0 0-.29-.434l4.11-3.367c0 .03.378.464.855 1.284Zm-1.362-1.892-4.091 3.383c-.113-.133-.245-.247-.368-.371l3.38-4.091c-.065-.044.476.387 1.079 1.079Z" }) + ] + } + ); +}); + +export { SiPhoton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.cjs new file mode 100644 index 000000000..290970d6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18A497"; +const SiPhotopea = React__namespace.forwardRef(function SiPhotopea2({ title = "Photopea", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.098 0A3.899 3.899 0 0 1 24 3.903v16.194A3.899 3.899 0 0 1 20.098 24H6.393l-.051-10.34v-.074c0-3.92 3.112-7.09 6.963-7.09 2.31 0 4.177 1.902 4.177 4.254 0 2.352-1.867 4.254-4.177 4.254-.77 0-1.393-.634-1.393-1.418 0-.783.623-1.418 1.393-1.418.769 0 1.392-.634 1.392-1.418 0-.784-.623-1.418-1.392-1.418-2.31 0-4.178 1.9-4.178 4.253 0 2.352 1.868 4.254 4.178 4.254 3.85 0 6.962-3.169 6.962-7.09 0-3.92-3.112-7.089-6.962-7.089-5.39 0-9.75 4.436-9.75 9.925v.086l.023 10.315A3.899 3.899 0 0 1 0 20.097V3.903A3.899 3.899 0 0 1 3.902 0z" }) + ] + } + ); +}); + +exports.default = SiPhotopea; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.d.ts new file mode 100644 index 000000000..ba1918c26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18A497"; +declare const SiPhotopea: IconType; +export { SiPhotopea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.mjs new file mode 100644 index 000000000..3fcd4b962 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhotopea.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18A497"; +const SiPhotopea = React.forwardRef(function SiPhotopea2({ title = "Photopea", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.098 0A3.899 3.899 0 0 1 24 3.903v16.194A3.899 3.899 0 0 1 20.098 24H6.393l-.051-10.34v-.074c0-3.92 3.112-7.09 6.963-7.09 2.31 0 4.177 1.902 4.177 4.254 0 2.352-1.867 4.254-4.177 4.254-.77 0-1.393-.634-1.393-1.418 0-.783.623-1.418 1.393-1.418.769 0 1.392-.634 1.392-1.418 0-.784-.623-1.418-1.392-1.418-2.31 0-4.178 1.9-4.178 4.253 0 2.352 1.868 4.254 4.178 4.254 3.85 0 6.962-3.169 6.962-7.09 0-3.92-3.112-7.089-6.962-7.089-5.39 0-9.75 4.436-9.75 9.925v.086l.023 10.315A3.899 3.899 0 0 1 0 20.097V3.903A3.899 3.899 0 0 1 3.902 0z" }) + ] + } + ); +}); + +export { SiPhotopea as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.cjs new file mode 100644 index 000000000..86ad0604b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#777BB4"; +const SiPhp = React__namespace.forwardRef(function SiPhp2({ title = "PHP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.01 10.207h-.944l-.515 2.648h.838c.556 0 .97-.105 1.242-.314.272-.21.455-.559.55-1.049.092-.47.05-.802-.124-.995-.175-.193-.523-.29-1.047-.29zM12 5.688C5.373 5.688 0 8.514 0 12s5.373 6.313 12 6.313S24 15.486 24 12c0-3.486-5.373-6.312-12-6.312zm-3.26 7.451c-.261.25-.575.438-.917.551-.336.108-.765.164-1.285.164H5.357l-.327 1.681H3.652l1.23-6.326h2.65c.797 0 1.378.209 1.744.628.366.418.476 1.002.33 1.752a2.836 2.836 0 0 1-.305.847c-.143.255-.33.49-.561.703zm4.024.715l.543-2.799c.063-.318.039-.536-.068-.651-.107-.116-.336-.174-.687-.174H11.46l-.704 3.625H9.388l1.23-6.327h1.367l-.327 1.682h1.218c.767 0 1.295.134 1.586.401s.378.7.263 1.299l-.572 2.944h-1.389zm7.597-2.265a2.782 2.782 0 0 1-.305.847c-.143.255-.33.49-.561.703a2.44 2.44 0 0 1-.917.551c-.336.108-.765.164-1.286.164h-1.18l-.327 1.682h-1.378l1.23-6.326h2.649c.797 0 1.378.209 1.744.628.366.417.477 1.001.331 1.751zM17.766 10.207h-.943l-.516 2.648h.838c.557 0 .971-.105 1.242-.314.272-.21.455-.559.551-1.049.092-.47.049-.802-.125-.995s-.524-.29-1.047-.29z" }) + ] + } + ); +}); + +exports.default = SiPhp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.d.ts new file mode 100644 index 000000000..5d13a2efa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#777BB4"; +declare const SiPhp: IconType; +export { SiPhp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.mjs new file mode 100644 index 000000000..3e9c3513b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#777BB4"; +const SiPhp = React.forwardRef(function SiPhp2({ title = "PHP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.01 10.207h-.944l-.515 2.648h.838c.556 0 .97-.105 1.242-.314.272-.21.455-.559.55-1.049.092-.47.05-.802-.124-.995-.175-.193-.523-.29-1.047-.29zM12 5.688C5.373 5.688 0 8.514 0 12s5.373 6.313 12 6.313S24 15.486 24 12c0-3.486-5.373-6.312-12-6.312zm-3.26 7.451c-.261.25-.575.438-.917.551-.336.108-.765.164-1.285.164H5.357l-.327 1.681H3.652l1.23-6.326h2.65c.797 0 1.378.209 1.744.628.366.418.476 1.002.33 1.752a2.836 2.836 0 0 1-.305.847c-.143.255-.33.49-.561.703zm4.024.715l.543-2.799c.063-.318.039-.536-.068-.651-.107-.116-.336-.174-.687-.174H11.46l-.704 3.625H9.388l1.23-6.327h1.367l-.327 1.682h1.218c.767 0 1.295.134 1.586.401s.378.7.263 1.299l-.572 2.944h-1.389zm7.597-2.265a2.782 2.782 0 0 1-.305.847c-.143.255-.33.49-.561.703a2.44 2.44 0 0 1-.917.551c-.336.108-.765.164-1.286.164h-1.18l-.327 1.682h-1.378l1.23-6.326h2.649c.797 0 1.378.209 1.744.628.366.417.477 1.001.331 1.751zM17.766 10.207h-.943l-.516 2.648h.838c.557 0 .971-.105 1.242-.314.272-.21.455-.559.551-1.049.092-.47.049-.802-.125-.995s-.524-.29-1.047-.29z" }) + ] + } + ); +}); + +export { SiPhp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.cjs new file mode 100644 index 000000000..d461d4a51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009BDF"; +const SiPhpbb = React__namespace.forwardRef(function SiPhpbb2({ title = "phpBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5826 11.9021q0 .5784-.1424 1.0634t-.4137.8409a1.85 1.85 0 0 1-.6763.5516q-.405.1959-.9299.1958-.4005 0-.7163-.2002t-.4938-.5117v2.1178H.8364a.87.87 0 0 1-.3114-.0578.82.82 0 0 1-.267-.1646.83.83 0 0 1-.1868-.258Q0 15.3278 0 15.1321v-2.9008q0-.5962.138-1.0945.1378-.4983.4315-.8543t.7474-.5517q.4539-.1957 1.0856-.1957.4805 0 .881.2002.4005.2003.6896.5294.2892.3292.4493.7564.1602.427.1602.881m-1.228.3115q0-.8542-.2802-1.2369-.2804-.3826-.8587-.3826-.4983 0-.7608.387t-.2625 1.01q0 .7208.3248 1.1123t.8586.3915q.436 0 .7075-.3515.2714-.3514.2714-.9298m5.4706 2.2334q-.3737 0-.5917-.2046t-.218-.5962v-1.9576q0-.2937-.0757-.5028-.0756-.2091-.2046-.3381a.81.81 0 0 0-.3026-.1913 1.09 1.09 0 0 0-.3693-.0623q-.1424 0-.2936.0578t-.2803.1913-.2091.347-.08.534v2.7228h-.3916q-.4272 0-.6229-.2135-.1958-.2136-.1958-.5873v-5.606h.3738q.427 0 .6362.2136t.2091.5517v1.3704q.0623-.1068.1735-.218a1.8 1.8 0 0 1 .2447-.2047 1.4 1.4 0 0 1 .2937-.1557.9.9 0 0 1 .3292-.0623q.9344 0 1.4504.5383.5161.5385.5161 1.5617v2.8118zm5.5595-2.5449q0 .5784-.1423 1.0634-.1425.485-.4138.8409a1.85 1.85 0 0 1-.6763.5516q-.4048.1959-.9298.1958-.4005 0-.7164-.2002t-.4938-.5117v2.1178h-.3737a.87.87 0 0 1-.3115-.0578.82.82 0 0 1-.267-.1646.83.83 0 0 1-.1868-.258q-.0711-.1514-.0712-.3471v-2.9008q0-.5962.138-1.0945.1379-.4983.4315-.8543.2937-.356.7475-.5517t1.0856-.1957q.4805 0 .8809.2002.4004.2003.6896.5294.2892.3292.4494.7564.1602.427.1601.881m-1.228.3115q0-.8542-.2802-1.2369-.2803-.3826-.8587-.3826-.4983 0-.7608.387t-.2625 1.01q0 .7208.3248 1.1123t.8587.3915q.4359 0 .7074-.3515t.2714-.9298m6.0312.347q0 .4627-.169.8186t-.4583.6007-.6674.3692-.7964.1246h-.6584q-1.6996 0-1.6996-1.4504V8.6009q.1068-.0357.3025-.0846a8.5 8.5 0 0 1 .4227-.0934 5.8 5.8 0 0 1 .4627-.0712q.2357-.0267.4227-.0267h.7385q.436 0 .8009.1112.3648.1113.6317.3204.267.209.4138.5072.1468.298.1468.6718 0 .5072-.258.832t-.7119.4582q.2314.0624.4271.2047.1958.1425.3426.3248.1469.1824.227.396.08.2135.08.4093m-1.3258-2.5182q0-.1958-.0846-.3337a.64.64 0 0 0-.218-.218q-.1335-.0801-.3025-.1157a1.64 1.64 0 0 0-.3381-.0356h-.4538a1.7 1.7 0 0 0-.2581.0223q-.1424.0222-.267.04v1.3792h.9344q.4093 0 .6985-.1735t.2892-.565m.0979 2.5538q0-.4983-.2536-.6852-.2536-.1868-.7875-.1868h-.97v1.2546q0 .1602.1513.2714.1513.1113.3826.1112h.4983q.4984 0 .7386-.209.2403-.2093.2403-.5562m6.04-.0356q0 .4627-.169.8186t-.4583.6007-.6674.3692-.7964.1246h-.6585q-1.6995 0-1.6995-1.4504V8.6009q.1068-.0357.3025-.0846a8.5 8.5 0 0 1 .4227-.0934 5.8 5.8 0 0 1 .4627-.0712q.2357-.0267.4226-.0267H21.9q.436 0 .8009.1112.3648.1113.6317.3204.267.209.4138.5072.1468.298.1468.6718 0 .5072-.258.832t-.7119.4582q.2313.0624.4271.2047a1.78 1.78 0 0 1 .3426.3248q.1468.1824.227.396.08.2135.08.4093m-1.3258-2.5182q0-.1958-.0846-.3337a.64.64 0 0 0-.218-.218q-.1335-.0801-.3025-.1157a1.64 1.64 0 0 0-.3382-.0356h-.4538a1.7 1.7 0 0 0-.258.0223q-.1425.0222-.267.04v1.3792h.9344q.4093 0 .6985-.1735t.2892-.565m.0978 2.5538q0-.4983-.2536-.6852-.2535-.1868-.7875-.1868h-.9699v1.2546q0 .1602.1513.2714.1512.1113.3826.1112h.4983q.4983 0 .7386-.209.2402-.2093.2402-.5562m.1952 3.0812h-.1223v-.7305h.2823q.135 0 .2032.0494.0684.0494.0684.1605 0 .099-.0558.1447-.0558.046-.1385.0547l.2086.3212h-.1384l-.1924-.3123h-.1151zm.1366-.4147a.8.8 0 0 0 .0657-.0026.14.14 0 0 0 .0548-.015.1.1 0 0 0 .0378-.0344q.0144-.022.0144-.0626 0-.0335-.0153-.053a.1.1 0 0 0-.0387-.03.16.16 0 0 0-.0521-.0132.6.6 0 0 0-.0558-.0026h-.1474v.2135zm.6546.037q0 .1484-.053.27a.63.63 0 0 1-.1439.2083.65.65 0 0 1-.2104.134.67.67 0 0 1-.2509.0477q-.1455 0-.267-.0503a.63.63 0 0 1-.2086-.1385.64.64 0 0 1-.1367-.209.69.69 0 0 1-.0494-.2621q0-.1482.053-.27a.63.63 0 0 1 .1439-.2082.65.65 0 0 1 .2113-.1341.68.68 0 0 1 .2535-.0477.67.67 0 0 1 .2509.0477.65.65 0 0 1 .2104.134.63.63 0 0 1 .1439.2083q.053.1218.053.27m-.1439 0a.6.6 0 0 0-.0395-.2205.52.52 0 0 0-.1097-.173.495.495 0 0 0-.1636-.112.51.51 0 0 0-.2015-.0397.52.52 0 0 0-.204.0397.49.49 0 0 0-.1646.112.52.52 0 0 0-.1097.173.6.6 0 0 0-.0395.2206q0 .113.036.2117a.52.52 0 0 0 .1033.173.49.49 0 0 0 .1628.1173q.0952.0432.2158.0432a.51.51 0 0 0 .2014-.0397.495.495 0 0 0 .1636-.112.52.52 0 0 0 .1097-.172q.0396-.0997.0396-.2215" }) + ] + } + ); +}); + +exports.default = SiPhpbb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.d.ts new file mode 100644 index 000000000..c57dbc8cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009BDF"; +declare const SiPhpbb: IconType; +export { SiPhpbb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.mjs new file mode 100644 index 000000000..a0555d6ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpbb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009BDF"; +const SiPhpbb = React.forwardRef(function SiPhpbb2({ title = "phpBB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.5826 11.9021q0 .5784-.1424 1.0634t-.4137.8409a1.85 1.85 0 0 1-.6763.5516q-.405.1959-.9299.1958-.4005 0-.7163-.2002t-.4938-.5117v2.1178H.8364a.87.87 0 0 1-.3114-.0578.82.82 0 0 1-.267-.1646.83.83 0 0 1-.1868-.258Q0 15.3278 0 15.1321v-2.9008q0-.5962.138-1.0945.1378-.4983.4315-.8543t.7474-.5517q.4539-.1957 1.0856-.1957.4805 0 .881.2002.4005.2003.6896.5294.2892.3292.4493.7564.1602.427.1602.881m-1.228.3115q0-.8542-.2802-1.2369-.2804-.3826-.8587-.3826-.4983 0-.7608.387t-.2625 1.01q0 .7208.3248 1.1123t.8586.3915q.436 0 .7075-.3515.2714-.3514.2714-.9298m5.4706 2.2334q-.3737 0-.5917-.2046t-.218-.5962v-1.9576q0-.2937-.0757-.5028-.0756-.2091-.2046-.3381a.81.81 0 0 0-.3026-.1913 1.09 1.09 0 0 0-.3693-.0623q-.1424 0-.2936.0578t-.2803.1913-.2091.347-.08.534v2.7228h-.3916q-.4272 0-.6229-.2135-.1958-.2136-.1958-.5873v-5.606h.3738q.427 0 .6362.2136t.2091.5517v1.3704q.0623-.1068.1735-.218a1.8 1.8 0 0 1 .2447-.2047 1.4 1.4 0 0 1 .2937-.1557.9.9 0 0 1 .3292-.0623q.9344 0 1.4504.5383.5161.5385.5161 1.5617v2.8118zm5.5595-2.5449q0 .5784-.1423 1.0634-.1425.485-.4138.8409a1.85 1.85 0 0 1-.6763.5516q-.4048.1959-.9298.1958-.4005 0-.7164-.2002t-.4938-.5117v2.1178h-.3737a.87.87 0 0 1-.3115-.0578.82.82 0 0 1-.267-.1646.83.83 0 0 1-.1868-.258q-.0711-.1514-.0712-.3471v-2.9008q0-.5962.138-1.0945.1379-.4983.4315-.8543.2937-.356.7475-.5517t1.0856-.1957q.4805 0 .8809.2002.4004.2003.6896.5294.2892.3292.4494.7564.1602.427.1601.881m-1.228.3115q0-.8542-.2802-1.2369-.2803-.3826-.8587-.3826-.4983 0-.7608.387t-.2625 1.01q0 .7208.3248 1.1123t.8587.3915q.4359 0 .7074-.3515t.2714-.9298m6.0312.347q0 .4627-.169.8186t-.4583.6007-.6674.3692-.7964.1246h-.6584q-1.6996 0-1.6996-1.4504V8.6009q.1068-.0357.3025-.0846a8.5 8.5 0 0 1 .4227-.0934 5.8 5.8 0 0 1 .4627-.0712q.2357-.0267.4227-.0267h.7385q.436 0 .8009.1112.3648.1113.6317.3204.267.209.4138.5072.1468.298.1468.6718 0 .5072-.258.832t-.7119.4582q.2314.0624.4271.2047.1958.1425.3426.3248.1469.1824.227.396.08.2135.08.4093m-1.3258-2.5182q0-.1958-.0846-.3337a.64.64 0 0 0-.218-.218q-.1335-.0801-.3025-.1157a1.64 1.64 0 0 0-.3381-.0356h-.4538a1.7 1.7 0 0 0-.2581.0223q-.1424.0222-.267.04v1.3792h.9344q.4093 0 .6985-.1735t.2892-.565m.0979 2.5538q0-.4983-.2536-.6852-.2536-.1868-.7875-.1868h-.97v1.2546q0 .1602.1513.2714.1513.1113.3826.1112h.4983q.4984 0 .7386-.209.2403-.2093.2403-.5562m6.04-.0356q0 .4627-.169.8186t-.4583.6007-.6674.3692-.7964.1246h-.6585q-1.6995 0-1.6995-1.4504V8.6009q.1068-.0357.3025-.0846a8.5 8.5 0 0 1 .4227-.0934 5.8 5.8 0 0 1 .4627-.0712q.2357-.0267.4226-.0267H21.9q.436 0 .8009.1112.3648.1113.6317.3204.267.209.4138.5072.1468.298.1468.6718 0 .5072-.258.832t-.7119.4582q.2313.0624.4271.2047a1.78 1.78 0 0 1 .3426.3248q.1468.1824.227.396.08.2135.08.4093m-1.3258-2.5182q0-.1958-.0846-.3337a.64.64 0 0 0-.218-.218q-.1335-.0801-.3025-.1157a1.64 1.64 0 0 0-.3382-.0356h-.4538a1.7 1.7 0 0 0-.258.0223q-.1425.0222-.267.04v1.3792h.9344q.4093 0 .6985-.1735t.2892-.565m.0978 2.5538q0-.4983-.2536-.6852-.2535-.1868-.7875-.1868h-.9699v1.2546q0 .1602.1513.2714.1512.1113.3826.1112h.4983q.4983 0 .7386-.209.2402-.2093.2402-.5562m.1952 3.0812h-.1223v-.7305h.2823q.135 0 .2032.0494.0684.0494.0684.1605 0 .099-.0558.1447-.0558.046-.1385.0547l.2086.3212h-.1384l-.1924-.3123h-.1151zm.1366-.4147a.8.8 0 0 0 .0657-.0026.14.14 0 0 0 .0548-.015.1.1 0 0 0 .0378-.0344q.0144-.022.0144-.0626 0-.0335-.0153-.053a.1.1 0 0 0-.0387-.03.16.16 0 0 0-.0521-.0132.6.6 0 0 0-.0558-.0026h-.1474v.2135zm.6546.037q0 .1484-.053.27a.63.63 0 0 1-.1439.2083.65.65 0 0 1-.2104.134.67.67 0 0 1-.2509.0477q-.1455 0-.267-.0503a.63.63 0 0 1-.2086-.1385.64.64 0 0 1-.1367-.209.69.69 0 0 1-.0494-.2621q0-.1482.053-.27a.63.63 0 0 1 .1439-.2082.65.65 0 0 1 .2113-.1341.68.68 0 0 1 .2535-.0477.67.67 0 0 1 .2509.0477.65.65 0 0 1 .2104.134.63.63 0 0 1 .1439.2083q.053.1218.053.27m-.1439 0a.6.6 0 0 0-.0395-.2205.52.52 0 0 0-.1097-.173.495.495 0 0 0-.1636-.112.51.51 0 0 0-.2015-.0397.52.52 0 0 0-.204.0397.49.49 0 0 0-.1646.112.52.52 0 0 0-.1097.173.6.6 0 0 0-.0395.2206q0 .113.036.2117a.52.52 0 0 0 .1033.173.49.49 0 0 0 .1628.1173q.0952.0432.2158.0432a.51.51 0 0 0 .2014-.0397.495.495 0 0 0 .1636-.112.52.52 0 0 0 .1097-.172q.0396-.0997.0396-.2215" }) + ] + } + ); +}); + +export { SiPhpbb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.cjs new file mode 100644 index 000000000..48693b4cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6C78AF"; +const SiPhpmyadmin = React__namespace.forwardRef(function SiPhpmyadmin2({ title = "phpMyAdmin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.463 3.476C6.69 5.225 7.497 7.399 7.68 9.798a12.9 12.9 0 0 1-.672 5.254 4.29 4.29 0 0 1 2.969-1.523c.05-.004.099-.006.148-.008.08-.491.47-3.45-.977-6.68-1.068-2.386-3-3.16-3.685-3.365Zm1.777.037s2.406 1.066 3.326 5.547c.607 2.955.049 4.836-.402 5.773a7.347 7.347 0 0 1 4.506-1.994c.86-.065 1.695.02 2.482.233-.1-.741-.593-3.414-2.732-5.92-3.263-3.823-7.18-3.64-7.18-3.64Zm14.817 9.701-17.92 3.049a2.284 2.284 0 0 1 1.535 2.254 2.31 2.31 0 0 1-.106.61c.055-.027 2.689-1.275 6.342-2.034 3.238-.673 5.723-.36 6.285-.273a6.46 6.46 0 0 1 3.864-3.606zm-6.213 4.078c-2.318 0-4.641.495-6.614 1.166-2.868.976-2.951 1.348-5.55 1.043C1.844 19.286 0 18.386 0 18.386s2.406 1.97 4.914 2.127c1.986.125 3.505-.822 5.315-1.414 2.661-.871 4.511-.97 6.253-.975C19.361 18.116 24 19.353 24 19.353s-2.11-1.044-5.033-1.72a13.885 13.885 0 0 0-3.123-.34Z" }) + ] + } + ); +}); + +exports.default = SiPhpmyadmin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.d.ts new file mode 100644 index 000000000..3301006d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6C78AF"; +declare const SiPhpmyadmin: IconType; +export { SiPhpmyadmin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.mjs new file mode 100644 index 000000000..3f9bfbfe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpmyadmin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6C78AF"; +const SiPhpmyadmin = React.forwardRef(function SiPhpmyadmin2({ title = "phpMyAdmin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.463 3.476C6.69 5.225 7.497 7.399 7.68 9.798a12.9 12.9 0 0 1-.672 5.254 4.29 4.29 0 0 1 2.969-1.523c.05-.004.099-.006.148-.008.08-.491.47-3.45-.977-6.68-1.068-2.386-3-3.16-3.685-3.365Zm1.777.037s2.406 1.066 3.326 5.547c.607 2.955.049 4.836-.402 5.773a7.347 7.347 0 0 1 4.506-1.994c.86-.065 1.695.02 2.482.233-.1-.741-.593-3.414-2.732-5.92-3.263-3.823-7.18-3.64-7.18-3.64Zm14.817 9.701-17.92 3.049a2.284 2.284 0 0 1 1.535 2.254 2.31 2.31 0 0 1-.106.61c.055-.027 2.689-1.275 6.342-2.034 3.238-.673 5.723-.36 6.285-.273a6.46 6.46 0 0 1 3.864-3.606zm-6.213 4.078c-2.318 0-4.641.495-6.614 1.166-2.868.976-2.951 1.348-5.55 1.043C1.844 19.286 0 18.386 0 18.386s2.406 1.97 4.914 2.127c1.986.125 3.505-.822 5.315-1.414 2.661-.871 4.511-.97 6.253-.975C19.361 18.116 24 19.353 24 19.353s-2.11-1.044-5.033-1.72a13.885 13.885 0 0 0-3.123-.34Z" }) + ] + } + ); +}); + +export { SiPhpmyadmin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.cjs new file mode 100644 index 000000000..ed586d9f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPhpstorm = React__namespace.forwardRef(function SiPhpstorm2({ title = "PhpStorm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.833 6.611v-.055c0-1-.667-1.5-1.778-1.5H4.389v3.056h1.722c1.111-.001 1.722-.668 1.722-1.501zM0 0v24h24V0H0zm2.167 3.111h4.056c2.389 0 3.833 1.389 3.833 3.445v.055c0 2.333-1.778 3.5-4.056 3.5H4.333v3H2.167v-10zM11.278 21h-9v-1.5h9V21zM18.5 10.222c0 2-1.5 3.111-3.667 3.111-1.5-.056-3-.611-4.222-1.667l1.278-1.556c.89.722 1.833 1.222 3 1.222.889 0 1.444-.333 1.444-.944v-.056c0-.555-.333-.833-2-1.277C12.333 8.555 11 8 11 6v-.056c0-1.833 1.444-3 3.5-3 1.444 0 2.723.444 3.723 1.278l-1.167 1.667c-.889-.611-1.777-1-2.611-1-.833 0-1.278.389-1.278.889v.056c0 .667.445.889 2.167 1.333 2 .556 3.167 1.278 3.167 3v.055z" }) + ] + } + ); +}); + +exports.default = SiPhpstorm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.d.ts new file mode 100644 index 000000000..f83e12f80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPhpstorm: IconType; +export { SiPhpstorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.mjs new file mode 100644 index 000000000..a9cfd9259 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPhpstorm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPhpstorm = React.forwardRef(function SiPhpstorm2({ title = "PhpStorm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.833 6.611v-.055c0-1-.667-1.5-1.778-1.5H4.389v3.056h1.722c1.111-.001 1.722-.668 1.722-1.501zM0 0v24h24V0H0zm2.167 3.111h4.056c2.389 0 3.833 1.389 3.833 3.445v.055c0 2.333-1.778 3.5-4.056 3.5H4.333v3H2.167v-10zM11.278 21h-9v-1.5h9V21zM18.5 10.222c0 2-1.5 3.111-3.667 3.111-1.5-.056-3-.611-4.222-1.667l1.278-1.556c.89.722 1.833 1.222 3 1.222.889 0 1.444-.333 1.444-.944v-.056c0-.555-.333-.833-2-1.277C12.333 8.555 11 8 11 6v-.056c0-1.833 1.444-3 3.5-3 1.444 0 2.723.444 3.723 1.278l-1.167 1.667c-.889-.611-1.777-1-2.611-1-.833 0-1.278.389-1.278.889v.056c0 .667.445.889 2.167 1.333 2 .556 3.167 1.278 3.167 3v.055z" }) + ] + } + ); +}); + +export { SiPhpstorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.cjs new file mode 100644 index 000000000..9f7efe5f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPiaggiogroup = React__namespace.forwardRef(function SiPiaggiogroup2({ title = "Piaggio Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.657 21.15h-.42v-2.495h.42v2.494zm-9.79.001h-.42v-2.495l.582.03c.293-.015.58.082.794.27a.964.964 0 0 1 .337.72.63.63 0 0 1-.033.242c-.127.478-.6.806-1.13.781l-.13.002v.45zm0-.82h.264a.696.696 0 0 0 .543-.422.528.528 0 0 0 .064-.24c0-.449-.419-.661-.872-.63v1.291zm10.144-.413c0-.698.608-1.264 1.359-1.264s1.358.566 1.358 1.264c-.003.7-.604 1.271-1.357 1.29h-.003c-.754-.018-1.355-.59-1.357-1.29zm.45.003c-.002.471.4.858.907.871a.94.94 0 0 0 .651-.257.81.81 0 0 0 .255-.614c.017-.482-.388-.886-.906-.903-.513.028-.912.425-.906.903zm-1.74 1.228v-1.317h-.42v.93c-1.034.209-1.066-.752-1.066-.843 0-.57.612-1.085 1.486-.842v-.421c-1.65-.33-1.972.925-1.972 1.262 0 0-.163 1.622 1.972 1.231zm-6.786-1.231v-1.262h-.453v2.493h.453v-1.231zm4.46 1.231.008.004V19.83h-.388v.09l-.032.842c-1.035.209-1.067-.752-1.067-.843 0-.57.581-1.085 1.487-.842v-.421c-1.649-.33-2.004.925-1.971 1.262 0 0-.17 1.622 1.962 1.231zm-3.813 0h-.388l.486-1.231.484-1.262h.362l.478 1.262.484 1.231h-.453l-.194-.45h-1.065l-.194.45zm.355-.812h.808l-.163-.421-.224-.63-.258.63-.163.421zm.589-14.813v-.06C11.454 2.4 8.06 2.34 8.06 2.34H5.474v6.217h2.53s3.522.093 3.522-3.033zM22.801 0v21.227c.005.281-.043.561-.141.827-.274.7-.939 1.075-1.937 1.075h-7.42L12.035 24l-1.306-.871h-7.39a2.306 2.306 0 0 1-1.537-.54l-.06-.056a1.76 1.76 0 0 1-.402-.614 1.952 1.952 0 0 1-.142-.73V0h21.603zM2.923 16.312h3.004v-.09c-.454 0-.453-.572-.453-1.022V9.162s2.908.06 4.04.06c.64-.002 1.277-.063 1.905-.18 1.422-.337 3.071-1.203 3.102-3.516l.002-.06c0-3.485-4.202-3.756-4.202-3.756H2.923v.103c.225 0 .453.25.453 1.04v12.349c0 .45-.083.992-.453.992v.118zM22.312.46 2.104 22.22l.02.018c.33.286.766.44 1.216.43h7.55l1.142.763 1.116-.764h7.58c1.088 0 1.584-.458 1.584-1.444V.46z" }) + ] + } + ); +}); + +exports.default = SiPiaggiogroup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.d.ts new file mode 100644 index 000000000..bd3330610 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPiaggiogroup: IconType; +export { SiPiaggiogroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.mjs new file mode 100644 index 000000000..33d28517a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiaggiogroup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPiaggiogroup = React.forwardRef(function SiPiaggiogroup2({ title = "Piaggio Group", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.657 21.15h-.42v-2.495h.42v2.494zm-9.79.001h-.42v-2.495l.582.03c.293-.015.58.082.794.27a.964.964 0 0 1 .337.72.63.63 0 0 1-.033.242c-.127.478-.6.806-1.13.781l-.13.002v.45zm0-.82h.264a.696.696 0 0 0 .543-.422.528.528 0 0 0 .064-.24c0-.449-.419-.661-.872-.63v1.291zm10.144-.413c0-.698.608-1.264 1.359-1.264s1.358.566 1.358 1.264c-.003.7-.604 1.271-1.357 1.29h-.003c-.754-.018-1.355-.59-1.357-1.29zm.45.003c-.002.471.4.858.907.871a.94.94 0 0 0 .651-.257.81.81 0 0 0 .255-.614c.017-.482-.388-.886-.906-.903-.513.028-.912.425-.906.903zm-1.74 1.228v-1.317h-.42v.93c-1.034.209-1.066-.752-1.066-.843 0-.57.612-1.085 1.486-.842v-.421c-1.65-.33-1.972.925-1.972 1.262 0 0-.163 1.622 1.972 1.231zm-6.786-1.231v-1.262h-.453v2.493h.453v-1.231zm4.46 1.231.008.004V19.83h-.388v.09l-.032.842c-1.035.209-1.067-.752-1.067-.843 0-.57.581-1.085 1.487-.842v-.421c-1.649-.33-2.004.925-1.971 1.262 0 0-.17 1.622 1.962 1.231zm-3.813 0h-.388l.486-1.231.484-1.262h.362l.478 1.262.484 1.231h-.453l-.194-.45h-1.065l-.194.45zm.355-.812h.808l-.163-.421-.224-.63-.258.63-.163.421zm.589-14.813v-.06C11.454 2.4 8.06 2.34 8.06 2.34H5.474v6.217h2.53s3.522.093 3.522-3.033zM22.801 0v21.227c.005.281-.043.561-.141.827-.274.7-.939 1.075-1.937 1.075h-7.42L12.035 24l-1.306-.871h-7.39a2.306 2.306 0 0 1-1.537-.54l-.06-.056a1.76 1.76 0 0 1-.402-.614 1.952 1.952 0 0 1-.142-.73V0h21.603zM2.923 16.312h3.004v-.09c-.454 0-.453-.572-.453-1.022V9.162s2.908.06 4.04.06c.64-.002 1.277-.063 1.905-.18 1.422-.337 3.071-1.203 3.102-3.516l.002-.06c0-3.485-4.202-3.756-4.202-3.756H2.923v.103c.225 0 .453.25.453 1.04v12.349c0 .45-.083.992-.453.992v.118zM22.312.46 2.104 22.22l.02.018c.33.286.766.44 1.216.43h7.55l1.142.763 1.116-.764h7.58c1.088 0 1.584-.458 1.584-1.444V.46z" }) + ] + } + ); +}); + +export { SiPiaggiogroup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.cjs new file mode 100644 index 000000000..861aa0dc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E4007B"; +const SiPiapro = React__namespace.forwardRef(function SiPiapro2({ title = "Piapro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.988 0c-4.705 0-8.7 3.492-9.351 8.168-.06.207-.09.444-.09.68V24l5.21-3.403V9.44c0-2.338 1.893-4.261 4.231-4.261s4.261 1.894 4.261 4.232c0 2.337-1.894 4.261-4.231 4.261-.77 0-1.54-.207-2.22-.621v5.563A9.45 9.45 0 0 0 21.191 11.6C22.405 6.51 19.268 1.45 14.207.266A9.48 9.48 0 0 0 11.988 0Z" }) + ] + } + ); +}); + +exports.default = SiPiapro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.d.ts new file mode 100644 index 000000000..7f4e10222 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E4007B"; +declare const SiPiapro: IconType; +export { SiPiapro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.mjs new file mode 100644 index 000000000..12fc8707b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiapro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E4007B"; +const SiPiapro = React.forwardRef(function SiPiapro2({ title = "Piapro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.988 0c-4.705 0-8.7 3.492-9.351 8.168-.06.207-.09.444-.09.68V24l5.21-3.403V9.44c0-2.338 1.893-4.261 4.231-4.261s4.261 1.894 4.261 4.232c0 2.337-1.894 4.261-4.231 4.261-.77 0-1.54-.207-2.22-.621v5.563A9.45 9.45 0 0 0 21.191 11.6C22.405 6.51 19.268 1.45 14.207.266A9.48 9.48 0 0 0 11.988 0Z" }) + ] + } + ); +}); + +export { SiPiapro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.cjs new file mode 100644 index 000000000..f268733b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D4999"; +const SiPicardsurgeles = React__namespace.forwardRef(function SiPicardsurgeles2({ title = "Picard Surgelés", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.129 0 8.72.822c.08.149.501.88 1.337 1.368.007.003.575.35 1.172.472l.01.002V4.53l-.02-.001a5.286 5.286 0 0 1-2.248-.861c-.028-.016-1.112-.62-1.846-1.926l-1.413.829c.12.21.851 1.569.731 3.198 0 .008-.043.924-.385 1.745l-.017.037-.033-.02-1.552-.902-.027-.015.012-.029c.003-.006.257-.654.137-1.772-.002-.005-.158-.8-.463-1.321l-1.42.822c.08.15.416.836.23 1.607-.002.01-.223 1.186-1.449 1.636-.01.004-.3.125-.714.138v1.636c.168-.003.96-.034 1.692-.412a4.275 4.275 0 0 0 1.143-.85l.02-.019.022.014 1.559.895.035.02-.025.031c-.008.01-.73.922-1.655 1.414-.008.005-1.064.659-2.363.736l-.428.014v1.635a6.2 6.2 0 0 1 1.262.172c.045.007 1.606.282 2.89 1.675l.286.34.026.033-.036.022-1.572.901-.028.015-.017-.025c-.004-.005-.378-.503-1.294-.952-.007-.003-.792-.32-1.517-.32v1.64c.213.002 1.39.067 2 1.3.005.01.511 1.01-.07 2.083l1.417.814c.089-.15.52-.933.506-1.925 0-.008-.045-.85-.181-1.166l-.011-.029.026-.016 1.56-.91.032-.019.017.036c.003.007.31.71.393 1.737.002.011.119 1.172-.4 2.499-.012.026-.249.558-.346.723l1.42.827c.09-.18.584-1.083 1.72-1.855a5.628 5.628 0 0 1 2.373-.938l.02-.003v1.868l-.011.001c-.006.001-.574.078-1.437.65-.005.005-.732.548-1.07 1.19l1.415.823c.103-.173.686-1.058 1.865-1.103 1.18.045 1.763.93 1.865 1.103l1.415-.822c-.338-.643-1.064-1.186-1.07-1.19-.863-.573-1.432-.65-1.438-.65l-.01-.002V19.47l.02.002c1.39.2 2.365.932 2.373.938 1.136.772 1.63 1.674 1.721 1.855l1.42-.827a12.2 12.2 0 0 1-.346-.723c-.52-1.327-.402-2.488-.401-2.499.083-1.027.39-1.73.394-1.737l.016-.036.033.02 1.56.91.026.015-.013.029c-.136.315-.181 1.158-.181 1.165a3.913 3.913 0 0 0 .507 1.926l1.416-.814c-.581-1.072-.075-2.074-.07-2.083a2.278 2.278 0 0 1 2.001-1.3v-1.64c-.725 0-1.51.317-1.517.32-.916.449-1.29.947-1.294.952l-.018.025-.026-.015-1.573-.901-.036-.022.026-.032.286-.341c1.284-1.393 2.844-1.668 2.89-1.676a6.21 6.21 0 0 1 1.262-.17v-1.636l-.428-.013c-1.299-.077-2.355-.731-2.363-.736-.924-.493-1.647-1.405-1.655-1.414l-.025-.03.036-.022 1.558-.894.023-.014.018.02a4.27 4.27 0 0 0 1.144.85c.732.377 1.524.408 1.692.41V7.696a2.173 2.173 0 0 1-.714-.139c-1.226-.449-1.448-1.625-1.45-1.635-.186-.771.15-1.458.232-1.607l-1.42-.822c-.305.521-.462 1.316-.463 1.321-.12 1.118.134 1.766.136 1.772l.012.029-.027.015-1.552.902-.034.02-.015-.037c-.343-.821-.386-1.737-.386-1.745-.12-1.63.611-2.988.731-3.198l-1.413-.829c-.734 1.306-1.818 1.91-1.845 1.926a5.286 5.286 0 0 1-2.25.86l-.018.003V2.664l.01-.002c.596-.123 1.164-.469 1.17-.472A3.726 3.726 0 0 0 15.28.822L13.871 0c-.458.75-1.023.91-1.06.92a2.168 2.168 0 0 1-.811.181 2.164 2.164 0 0 1-.81-.181c-.038-.01-.603-.17-1.06-.92zM8.082 5.058l.056.037c.008.005.828.54 1.696.793.009.003.73.25 1.388.304l.016.001v.466h-.002L7.872 8.612l-.02-.012-.352-.2-.028-.016.013-.028c.004-.009.372-.878.454-1.442v-.006c.003-.006.172-.539.144-1.784zm7.835 0v.066c-.029 1.246.14 1.78.143 1.785v.006c.081.564.45 1.433.454 1.442l.013.028-.028.015-.352.2-.017.01-3.368-1.95v-.467h.016c.657-.056 1.38-.302 1.388-.305.869-.252 1.688-.788 1.696-.793zm-3.916 3.04 2.47 1.434.052.03-.052.031L12 11.033l-2.47-1.44-.053-.03.053-.03zM6.657 9.814l.37.211.018.01v.021l.012 3.9v.02l-.019.01-.355.196-.026.015-.018-.026c-.97-1.335-2.471-2.143-2.486-2.151l-.061-.034.062-.03c1.52-.723 2.475-2.102 2.485-2.116zm10.686 0 .019.026c.01.014.964 1.393 2.484 2.116l.062.03-.06.034c-.015.008-1.518.816-2.487 2.151l-.019.026-.026-.015-.354-.195-.018-.01v-.021l.011-3.9v-.02l.017-.01zm-8.626 1.232 2.503 1.446v2.886l-2.503-1.434zm6.566 0v2.898l-2.503 1.434v-2.886zM7.869 15.4l.018.01 3.35 1.943.001.001v.454h-.018c-.097 0-.582.09-.824.139a8.105 8.105 0 0 0-2.256.95l-.042.028-.01-.05a4.2 4.2 0 0 1 0-.423c.021-1.322-.588-2.8-.594-2.814l-.013-.03.03-.014.341-.185zm8.26 0 .018.009.343.185.029.015-.013.029c-.006.015-.615 1.492-.593 2.814.001.036.012.361 0 .422l-.012.05-.042-.028c-.01-.006-.95-.622-2.254-.95-.243-.048-.727-.138-.825-.138h-.018v-.454l.001-.001 3.35-1.943z" }) + ] + } + ); +}); + +exports.default = SiPicardsurgeles; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.d.ts new file mode 100644 index 000000000..7483cb11e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D4999"; +declare const SiPicardsurgeles: IconType; +export { SiPicardsurgeles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.mjs new file mode 100644 index 000000000..02cb7579d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicardsurgeles.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D4999"; +const SiPicardsurgeles = React.forwardRef(function SiPicardsurgeles2({ title = "Picard Surgelés", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.129 0 8.72.822c.08.149.501.88 1.337 1.368.007.003.575.35 1.172.472l.01.002V4.53l-.02-.001a5.286 5.286 0 0 1-2.248-.861c-.028-.016-1.112-.62-1.846-1.926l-1.413.829c.12.21.851 1.569.731 3.198 0 .008-.043.924-.385 1.745l-.017.037-.033-.02-1.552-.902-.027-.015.012-.029c.003-.006.257-.654.137-1.772-.002-.005-.158-.8-.463-1.321l-1.42.822c.08.15.416.836.23 1.607-.002.01-.223 1.186-1.449 1.636-.01.004-.3.125-.714.138v1.636c.168-.003.96-.034 1.692-.412a4.275 4.275 0 0 0 1.143-.85l.02-.019.022.014 1.559.895.035.02-.025.031c-.008.01-.73.922-1.655 1.414-.008.005-1.064.659-2.363.736l-.428.014v1.635a6.2 6.2 0 0 1 1.262.172c.045.007 1.606.282 2.89 1.675l.286.34.026.033-.036.022-1.572.901-.028.015-.017-.025c-.004-.005-.378-.503-1.294-.952-.007-.003-.792-.32-1.517-.32v1.64c.213.002 1.39.067 2 1.3.005.01.511 1.01-.07 2.083l1.417.814c.089-.15.52-.933.506-1.925 0-.008-.045-.85-.181-1.166l-.011-.029.026-.016 1.56-.91.032-.019.017.036c.003.007.31.71.393 1.737.002.011.119 1.172-.4 2.499-.012.026-.249.558-.346.723l1.42.827c.09-.18.584-1.083 1.72-1.855a5.628 5.628 0 0 1 2.373-.938l.02-.003v1.868l-.011.001c-.006.001-.574.078-1.437.65-.005.005-.732.548-1.07 1.19l1.415.823c.103-.173.686-1.058 1.865-1.103 1.18.045 1.763.93 1.865 1.103l1.415-.822c-.338-.643-1.064-1.186-1.07-1.19-.863-.573-1.432-.65-1.438-.65l-.01-.002V19.47l.02.002c1.39.2 2.365.932 2.373.938 1.136.772 1.63 1.674 1.721 1.855l1.42-.827a12.2 12.2 0 0 1-.346-.723c-.52-1.327-.402-2.488-.401-2.499.083-1.027.39-1.73.394-1.737l.016-.036.033.02 1.56.91.026.015-.013.029c-.136.315-.181 1.158-.181 1.165a3.913 3.913 0 0 0 .507 1.926l1.416-.814c-.581-1.072-.075-2.074-.07-2.083a2.278 2.278 0 0 1 2.001-1.3v-1.64c-.725 0-1.51.317-1.517.32-.916.449-1.29.947-1.294.952l-.018.025-.026-.015-1.573-.901-.036-.022.026-.032.286-.341c1.284-1.393 2.844-1.668 2.89-1.676a6.21 6.21 0 0 1 1.262-.17v-1.636l-.428-.013c-1.299-.077-2.355-.731-2.363-.736-.924-.493-1.647-1.405-1.655-1.414l-.025-.03.036-.022 1.558-.894.023-.014.018.02a4.27 4.27 0 0 0 1.144.85c.732.377 1.524.408 1.692.41V7.696a2.173 2.173 0 0 1-.714-.139c-1.226-.449-1.448-1.625-1.45-1.635-.186-.771.15-1.458.232-1.607l-1.42-.822c-.305.521-.462 1.316-.463 1.321-.12 1.118.134 1.766.136 1.772l.012.029-.027.015-1.552.902-.034.02-.015-.037c-.343-.821-.386-1.737-.386-1.745-.12-1.63.611-2.988.731-3.198l-1.413-.829c-.734 1.306-1.818 1.91-1.845 1.926a5.286 5.286 0 0 1-2.25.86l-.018.003V2.664l.01-.002c.596-.123 1.164-.469 1.17-.472A3.726 3.726 0 0 0 15.28.822L13.871 0c-.458.75-1.023.91-1.06.92a2.168 2.168 0 0 1-.811.181 2.164 2.164 0 0 1-.81-.181c-.038-.01-.603-.17-1.06-.92zM8.082 5.058l.056.037c.008.005.828.54 1.696.793.009.003.73.25 1.388.304l.016.001v.466h-.002L7.872 8.612l-.02-.012-.352-.2-.028-.016.013-.028c.004-.009.372-.878.454-1.442v-.006c.003-.006.172-.539.144-1.784zm7.835 0v.066c-.029 1.246.14 1.78.143 1.785v.006c.081.564.45 1.433.454 1.442l.013.028-.028.015-.352.2-.017.01-3.368-1.95v-.467h.016c.657-.056 1.38-.302 1.388-.305.869-.252 1.688-.788 1.696-.793zm-3.916 3.04 2.47 1.434.052.03-.052.031L12 11.033l-2.47-1.44-.053-.03.053-.03zM6.657 9.814l.37.211.018.01v.021l.012 3.9v.02l-.019.01-.355.196-.026.015-.018-.026c-.97-1.335-2.471-2.143-2.486-2.151l-.061-.034.062-.03c1.52-.723 2.475-2.102 2.485-2.116zm10.686 0 .019.026c.01.014.964 1.393 2.484 2.116l.062.03-.06.034c-.015.008-1.518.816-2.487 2.151l-.019.026-.026-.015-.354-.195-.018-.01v-.021l.011-3.9v-.02l.017-.01zm-8.626 1.232 2.503 1.446v2.886l-2.503-1.434zm6.566 0v2.898l-2.503 1.434v-2.886zM7.869 15.4l.018.01 3.35 1.943.001.001v.454h-.018c-.097 0-.582.09-.824.139a8.105 8.105 0 0 0-2.256.95l-.042.028-.01-.05a4.2 4.2 0 0 1 0-.423c.021-1.322-.588-2.8-.594-2.814l-.013-.03.03-.014.341-.185zm8.26 0 .018.009.343.185.029.015-.013.029c-.006.015-.615 1.492-.593 2.814.001.036.012.361 0 .422l-.012.05-.042-.028c-.01-.006-.95-.622-2.254-.95-.243-.048-.727-.138-.825-.138h-.018v-.454l.001-.001 3.35-1.943z" }) + ] + } + ); +}); + +export { SiPicardsurgeles as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.cjs new file mode 100644 index 000000000..5877f0663 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1DA456"; +const SiPicartodottv = React__namespace.forwardRef(function SiPicartodottv2({ title = "Picarto.TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0zM7.08 4.182h2.781c.233 0 .42.21.42.47v14.696c0 .26-.187.47-.42.47h-2.78c-.233 0-.42-.21-.42-.47V4.652c0-.26.187-.47.42-.47zm4.664 0a.624.624 0 0 1 .326.091c.355.209 7.451 4.42 8.057 4.78a.604.604 0 0 1 0 1.039c-.436.264-7.558 4.495-8.074 4.789a.577.577 0 0 1-.873-.512v-1.812c0-1.712 2.962-2.201 3.398-2.465a.604.604 0 0 0 0-1.04c-.605-.36-3.398-.746-3.398-2.452V4.79c0-.334.251-.605.564-.61z" }) + ] + } + ); +}); + +exports.default = SiPicartodottv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.d.ts new file mode 100644 index 000000000..dbcc9bccd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1DA456"; +declare const SiPicartodottv: IconType; +export { SiPicartodottv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.mjs new file mode 100644 index 000000000..36c69e71b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicartodottv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1DA456"; +const SiPicartodottv = React.forwardRef(function SiPicartodottv2({ title = "Picarto.TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.628 0 12 0zM7.08 4.182h2.781c.233 0 .42.21.42.47v14.696c0 .26-.187.47-.42.47h-2.78c-.233 0-.42-.21-.42-.47V4.652c0-.26.187-.47.42-.47zm4.664 0a.624.624 0 0 1 .326.091c.355.209 7.451 4.42 8.057 4.78a.604.604 0 0 1 0 1.039c-.436.264-7.558 4.495-8.074 4.789a.577.577 0 0 1-.873-.512v-1.812c0-1.712 2.962-2.201 3.398-2.465a.604.604 0 0 0 0-1.04c-.605-.36-3.398-.746-3.398-2.452V4.79c0-.334.251-.605.564-.61z" }) + ] + } + ); +}); + +export { SiPicartodottv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.cjs new file mode 100644 index 000000000..5b9f36e8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E1171E"; +const SiPicnic = React__namespace.forwardRef(function SiPicnic2({ title = "Picnic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm17.492 4.481c.851 0 1.635.279 2.261.749.037.029.068.073.027.158-.054.12-.183.413-.416.757a3.834 3.834 0 0 1-.424.555c-.12.117-.12.103-.27.012a2.294 2.294 0 0 0-1.155-.324c-.934 0-1.712.624-1.712 1.655l.005.1c.066 1.034.888 1.603 1.817 1.547a2.27 2.27 0 0 0 .73-.175c.143-.062.314-.153.455-.242.122-.076.148-.116.27-.007.12.114.252.287.395.502.238.345.398.661.458.776.06.1.022.13-.013.16-.412.355-.89.617-1.44.764-.309.09-.64.138-.988.138a4.73 4.73 0 0 1-.288-.009l-.091-.007c-.864-.058-1.64-.371-2.226-.916-.032-.027-.064-.06-.09-.084-.616-.605-.995-1.468-.995-2.547 0-2.26 1.653-3.562 3.69-3.562zm-5.567.108h.15c.752 0 .785.043.837.082a.116.116 0 0 1 .038.073c.037.207.052 1.437.048 2.658.004 1.221-.011 2.438-.048 2.645 0 0-.002.045-.038.075-.052.041-.085.08-.838.083h-.149c-.754-.003-.788-.042-.833-.083-.043-.03-.044-.075-.044-.075-.035-.207-.051-1.424-.047-2.645-.004-1.221.012-2.451.047-2.658 0 0 .001-.04.044-.073.045-.04.079-.082.833-.082zm-5.388.001c2.328.047 3.63.92 3.657 2.908v.091c0 1.895-1.357 2.909-3.657 2.909a8.94 8.94 0 0 1-.44-.012c-.008.419-.017.738-.03.817 0 0-.007.044-.043.076-.05.039-.083.079-.836.082h-.149c-.754-.003-.786-.043-.835-.082-.04-.032-.042-.076-.042-.076-.048-1.232-.045-2.183-.045-3.346-.002-1.223.009-2.991.045-3.181.017-.094.082-.113.155-.125.307-.038 1.661-.072 2.22-.06zm-.175 1.85a4.57 4.57 0 0 0-.249.014v2.162c.154.012.295.025.587.019.951-.016 1.502-.343 1.513-1.083v-.03C8.203 6.781 7.65 6.455 6.7 6.44a5.676 5.676 0 0 0-.338 0zM11.999 11c.891 0 1.337 1.077.707 1.707-.63.63-1.707.184-1.707-.707 0-.55.451-1 1-1zm5.493 1.392a3.76 3.76 0 0 1 2.261.748c.037.028.068.076.027.161-.054.117-.183.409-.416.757-.135.21-.248.36-.424.554-.12.118-.12.104-.27.012a2.263 2.263 0 0 0-1.155-.323c-.934 0-1.712.622-1.712 1.654l.005.1c.066 1.032.888 1.607 1.817 1.544a2.23 2.23 0 0 0 .73-.173c.143-.06.314-.153.455-.24.122-.077.148-.118.27-.007.12.112.252.287.395.5.238.344.398.66.458.776.06.097.022.129-.013.161-.412.353-.89.613-1.44.764a3.57 3.57 0 0 1-1.276.13l-.091-.007c-.864-.06-1.64-.373-2.226-.916l-.09-.088c-.616-.603-.995-1.465-.995-2.544 0-2.26 1.653-3.563 3.69-3.563zm-12.453.148h.149c.753 0 .786.045.836.085.009.009.02.023.03.031.456.833.806 1.402 1.057 1.826.478.806.674 1.164.9 1.556a89.525 89.525 0 0 1 .048-3.337s.004-.046.042-.076c.051-.04.084-.084.836-.085h.15c.751 0 .781.045.831.085.042.03.043.076.043.076.035.202.05 2.093.048 3.312.002 1.222-.013 3.022-.048 3.228 0 0 0 .043-.043.074-.05.04-.08.084-.831.086h-.15c-.752-.002-.785-.047-.836-.086a.076.076 0 0 1-.026-.029c-.024-.03-1.9-3.123-1.962-3.225.003 1.22-.013 2.976-.047 3.18 0 0-.007.043-.042.074-.05.04-.083.084-.836.086h-.149c-.754-.002-.786-.047-.835-.086-.04-.031-.042-.074-.042-.074-.034-.206-.046-2.01-.045-3.232-.001-1.221.011-3.106.045-3.308 0 0 .001-.046.042-.076.05-.04.081-.084.835-.085zm6.886 1.256h.149c.753 0 .786.041.838.082.021.02.035.045.038.074.037.205.052 1.424.048 2.644.004 1.222-.011 2.439-.048 2.645 0 0-.002.043-.038.074-.052.04-.085.084-.838.086h-.149c-.754-.002-.788-.047-.833-.086a.102.102 0 0 1-.044-.074c-.035-.206-.051-1.423-.047-2.645-.004-1.22.012-2.44.047-2.644 0 0 .001-.042.044-.074.045-.04.079-.082.833-.082Z" }) + ] + } + ); +}); + +exports.default = SiPicnic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.d.ts new file mode 100644 index 000000000..41d026e23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E1171E"; +declare const SiPicnic: IconType; +export { SiPicnic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.mjs new file mode 100644 index 000000000..04b2b4e8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicnic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E1171E"; +const SiPicnic = React.forwardRef(function SiPicnic2({ title = "Picnic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm17.492 4.481c.851 0 1.635.279 2.261.749.037.029.068.073.027.158-.054.12-.183.413-.416.757a3.834 3.834 0 0 1-.424.555c-.12.117-.12.103-.27.012a2.294 2.294 0 0 0-1.155-.324c-.934 0-1.712.624-1.712 1.655l.005.1c.066 1.034.888 1.603 1.817 1.547a2.27 2.27 0 0 0 .73-.175c.143-.062.314-.153.455-.242.122-.076.148-.116.27-.007.12.114.252.287.395.502.238.345.398.661.458.776.06.1.022.13-.013.16-.412.355-.89.617-1.44.764-.309.09-.64.138-.988.138a4.73 4.73 0 0 1-.288-.009l-.091-.007c-.864-.058-1.64-.371-2.226-.916-.032-.027-.064-.06-.09-.084-.616-.605-.995-1.468-.995-2.547 0-2.26 1.653-3.562 3.69-3.562zm-5.567.108h.15c.752 0 .785.043.837.082a.116.116 0 0 1 .038.073c.037.207.052 1.437.048 2.658.004 1.221-.011 2.438-.048 2.645 0 0-.002.045-.038.075-.052.041-.085.08-.838.083h-.149c-.754-.003-.788-.042-.833-.083-.043-.03-.044-.075-.044-.075-.035-.207-.051-1.424-.047-2.645-.004-1.221.012-2.451.047-2.658 0 0 .001-.04.044-.073.045-.04.079-.082.833-.082zm-5.388.001c2.328.047 3.63.92 3.657 2.908v.091c0 1.895-1.357 2.909-3.657 2.909a8.94 8.94 0 0 1-.44-.012c-.008.419-.017.738-.03.817 0 0-.007.044-.043.076-.05.039-.083.079-.836.082h-.149c-.754-.003-.786-.043-.835-.082-.04-.032-.042-.076-.042-.076-.048-1.232-.045-2.183-.045-3.346-.002-1.223.009-2.991.045-3.181.017-.094.082-.113.155-.125.307-.038 1.661-.072 2.22-.06zm-.175 1.85a4.57 4.57 0 0 0-.249.014v2.162c.154.012.295.025.587.019.951-.016 1.502-.343 1.513-1.083v-.03C8.203 6.781 7.65 6.455 6.7 6.44a5.676 5.676 0 0 0-.338 0zM11.999 11c.891 0 1.337 1.077.707 1.707-.63.63-1.707.184-1.707-.707 0-.55.451-1 1-1zm5.493 1.392a3.76 3.76 0 0 1 2.261.748c.037.028.068.076.027.161-.054.117-.183.409-.416.757-.135.21-.248.36-.424.554-.12.118-.12.104-.27.012a2.263 2.263 0 0 0-1.155-.323c-.934 0-1.712.622-1.712 1.654l.005.1c.066 1.032.888 1.607 1.817 1.544a2.23 2.23 0 0 0 .73-.173c.143-.06.314-.153.455-.24.122-.077.148-.118.27-.007.12.112.252.287.395.5.238.344.398.66.458.776.06.097.022.129-.013.161-.412.353-.89.613-1.44.764a3.57 3.57 0 0 1-1.276.13l-.091-.007c-.864-.06-1.64-.373-2.226-.916l-.09-.088c-.616-.603-.995-1.465-.995-2.544 0-2.26 1.653-3.563 3.69-3.563zm-12.453.148h.149c.753 0 .786.045.836.085.009.009.02.023.03.031.456.833.806 1.402 1.057 1.826.478.806.674 1.164.9 1.556a89.525 89.525 0 0 1 .048-3.337s.004-.046.042-.076c.051-.04.084-.084.836-.085h.15c.751 0 .781.045.831.085.042.03.043.076.043.076.035.202.05 2.093.048 3.312.002 1.222-.013 3.022-.048 3.228 0 0 0 .043-.043.074-.05.04-.08.084-.831.086h-.15c-.752-.002-.785-.047-.836-.086a.076.076 0 0 1-.026-.029c-.024-.03-1.9-3.123-1.962-3.225.003 1.22-.013 2.976-.047 3.18 0 0-.007.043-.042.074-.05.04-.083.084-.836.086h-.149c-.754-.002-.786-.047-.835-.086-.04-.031-.042-.074-.042-.074-.034-.206-.046-2.01-.045-3.232-.001-1.221.011-3.106.045-3.308 0 0 .001-.046.042-.076.05-.04.081-.084.835-.085zm6.886 1.256h.149c.753 0 .786.041.838.082.021.02.035.045.038.074.037.205.052 1.424.048 2.644.004 1.222-.011 2.439-.048 2.645 0 0-.002.043-.038.074-.052.04-.085.084-.838.086h-.149c-.754-.002-.788-.047-.833-.086a.102.102 0 0 1-.044-.074c-.035-.206-.051-1.423-.047-2.645-.004-1.22.012-2.44.047-2.644 0 0 .001-.042.044-.074.045-.04.079-.082.833-.082Z" }) + ] + } + ); +}); + +export { SiPicnic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.cjs new file mode 100644 index 000000000..e25b90ca8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21C25E"; +const SiPicpay = React__namespace.forwardRef(function SiPicpay2({ title = "PicPay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.463 1.587v7.537H24V1.587zm1.256 1.256h5.025v5.025h-5.025zm1.256 1.256v2.513h2.513V4.099zM3.77 5.355V8.53h3.376c2.142 0 3.358 1.04 3.358 2.939 0 1.947-1.216 3.011-3.358 3.011H3.769V8.53H0v13.884h3.769v-4.76h3.57c4.333 0 6.815-2.352 6.815-6.32 0-3.771-2.482-5.978-6.814-5.978Z" }) + ] + } + ); +}); + +exports.default = SiPicpay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.d.ts new file mode 100644 index 000000000..a5cef3d30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21C25E"; +declare const SiPicpay: IconType; +export { SiPicpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.mjs new file mode 100644 index 000000000..cc87329ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicpay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21C25E"; +const SiPicpay = React.forwardRef(function SiPicpay2({ title = "PicPay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.463 1.587v7.537H24V1.587zm1.256 1.256h5.025v5.025h-5.025zm1.256 1.256v2.513h2.513V4.099zM3.77 5.355V8.53h3.376c2.142 0 3.358 1.04 3.358 2.939 0 1.947-1.216 3.011-3.358 3.011H3.769V8.53H0v13.884h3.769v-4.76h3.57c4.333 0 6.815-2.352 6.815-6.32 0-3.771-2.482-5.978-6.814-5.978Z" }) + ] + } + ); +}); + +export { SiPicpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.cjs new file mode 100644 index 000000000..48a95e3bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFBD16"; +const SiPicrew = React__namespace.forwardRef(function SiPicrew2({ title = "Picrew", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.22164 10.83105a.03738.03738 0 0 1 .03859-.03979.6029.6029 0 0 1 .44012.21584 1.03699 1.03699 0 0 1 .2098.61978.03497.03497 0 0 1-.041.03738c-.47266-.0627-.59204-.22066-.6475-.8332Zm-.1471 0a.03738.03738 0 0 0-.03859-.03979.6029.6029 0 0 0-.44011.21584 1.03699 1.03699 0 0 0-.2074.61978.03497.03497 0 0 0 .041.03738c.47026-.0627.58963-.22066.6451-.8332zm-.64752 1.00202a.03617.03617 0 0 0-.03858.03497 1.0394 1.0394 0 0 0 .2098.6246.6029.6029 0 0 0 .43771.21946.03738.03738 0 0 0 .03859-.0398c-.05547-.61254-.17484-.7717-.64752-.83923Zm.79462.84406a.03738.03738 0 0 0 .03859.03979.6029.6029 0 0 0 .44012-.21584 1.0394 1.0394 0 0 0 .2098-.63304.03617.03617 0 0 0-.041-.0386c-.47267.07115-.59204.23032-.6475.84286zm2.61658-1.84608a.03738.03738 0 0 0-.03858-.03979.6029.6029 0 0 0-.44012.21584 1.03699 1.03699 0 0 0-.2098.61978.03497.03497 0 0 0 .041.03738c.47266-.0627.59204-.22066.6475-.8332zm.79462.84406a.03497.03497 0 0 0 .041-.03738 1.03699 1.03699 0 0 0-.2098-.6246.6029.6029 0 0 0-.44012-.21584.03738.03738 0 0 0-.03859.03979c.05547.60652.17484.76448.64751.832zm-.6475 1.00322a.03738.03738 0 0 0 .03858.0398.6029.6029 0 0 0 .44011-.21584 1.0394 1.0394 0 0 0 .20981-.63425.03617.03617 0 0 0-.041-.0386c-.47267.07115-.59204.23032-.6475.84286zm-.79463-.84405a.03617.03617 0 0 0-.041.03858 1.0394 1.0394 0 0 0 .20981.6246.6029.6029 0 0 0 .44012.21463.03738.03738 0 0 0 .03858-.03979c-.05546-.61254-.17484-.7717-.6475-.83923Zm17.2212-.96464a.2894.2894 0 0 0-.2894.28939v.88023a.2894.2894 0 1 0 .57758 0v-.88023a.28819.28819 0 0 0-.28819-.29421zm-2.15115-.3943a.28819.28819 0 0 0-.28818.28819v1.2709a.2894.2894 0 1 0 .57757 0v-1.27572a.28819.28819 0 0 0-.28939-.28819Zm4.30108 0a.28819.28819 0 0 0-.28819.28819v1.2709a.2894.2894 0 1 0 .57758 0v-1.27572a.28819.28819 0 0 0-.2894-.28819Zm-5.15117 1.56754a.2906.2906 0 0 1-.28939.2894h-2.7456v.1061a.2894.2894 0 0 1-.57757 0 2.4116 2.4116 0 0 1 .04944-.45459c.26286-1.44695 2.01247-1.97388 3.06151-1.02975a1.4964 1.4964 0 0 1 .50162 1.0804zm-2.88426-.29542h2.25001a.99117.99117 0 0 0-.26045-.3762 1.3107 1.3107 0 0 0-.89108-.32196 1.21906 1.21906 0 0 0-1.09848.69816zm-5.2621-1.27694a2.04985 2.04985 0 0 0-1.80146 1.03578 1.34688 1.34688 0 0 0-.78256-.24116 1.36134 1.36134 0 0 0-.6644.17002 4.29625 4.29625 0 0 0-.79341-1.91119.6849.6849 0 0 1-.09767-.15072c.01326-.95861-1.15274-1.40476-1.8316-.72348a.93837.93837 0 0 0-.05186.05667.7488.7488 0 0 1-.13263-.00724 5.1174 5.1174 0 0 0-.57879-.02893 6.85616 6.85616 0 0 0-.709.03979C2.17462 7.94679.9218 8.37123.93506 9.36722a.6849.6849 0 0 1-.09767.15072 4.38428 4.38428 0 0 0-.83682 2.2476.2894.2894 0 0 0 .57637.05065 3.7838 3.7838 0 0 1 .72348-1.94736.8103.8103 0 0 0 .2086-.50161.43288.43288 0 0 1 .2689-.43168.50885.50885 0 0 1 .59927.13626c.15193.18569.3099.24116.63063.19292a4.73999 4.73999 0 0 1 .52211-.02532 4.73999 4.73999 0 0 1 .52211.02532c.33763.04944.49197-.01808.6427-.2074a.50885.50885 0 0 1 .5836-.12057.43288.43288 0 0 1 .2689.43167.8103.8103 0 0 0 .21583.50161 3.7838 3.7838 0 0 1 .72348 1.94737c.0205.19775 0 .37018.17484.47026a.2894.2894 0 0 0 .39912-.12058.75362.75362 0 0 1 1.25161.01085.2894.2894 0 0 0 .52814-.06873 1.44696 1.44696 0 0 1 1.42405-1.0611 1.4783 1.4783 0 0 1 1.25282.65715.2894.2894 0 1 0 .48232-.31953 2.04985 2.04985 0 0 0-1.73514-.9152zm13.72076 2.92767a1.40475 1.40475 0 0 1-1.27332.98876 1.63627 1.63627 0 0 1-1.29985-.54623c-.63184.72348-1.85934.7488-2.38989-.06752-.5221.37139-1.32637.61375-2.11255.61375-1.0599-.03497-1.5796-.38826-2.29825-.9562-.76448-.71141-1.8521-.14469-2.35492.73795v1.2058a.2894.2894 0 0 1-.57758 0v-1.53136a2.08603 2.08603 0 0 1-1.4144.54381 2.04985 2.04985 0 0 1-1.80146-1.03457 1.36737 1.36737 0 0 1-1.55066.0096c-.58601 1.09607-1.81593 1.72429-3.37623 1.72429-1.2287 0-2.25001-.38586-2.91561-1.08522v1.3722a.2894.2894 0 0 1-.57879 0v-2.29946a.29421.29421 0 0 1 .12058-.24116.2894.2894 0 0 1 .416.09646c.4582 1.02493 1.52775 1.57718 2.953 1.58321 1.42525.006 2.7034-.62942 2.9964-1.78096a.28577.28577 0 0 1 .14832-.1652.2906.2906 0 0 1 .3762.12059c.2484.44976 1.00926.44855 1.25765 0a.2906.2906 0 0 1 .49197-.0205.27613.27613 0 0 1 .03979.09043 1.48675 1.48675 0 0 0 2.84689 0 .2894.2894 0 0 1 .5619.006c.01326.03497.006.43047.0072.47508.4389-.42082 1.00201-.69936 1.5-.69936.92003-.03135 1.23474.56431 1.87743.92243a2.55388 2.55388 0 0 0 1.27574.3533c.85732 0 1.65194-.3111 2.0583-.7488a.2918.2918 0 0 1 .42082.16158c.24115.78497 1.38184.7898 1.75443-.01688a.28819.28819 0 0 1 .52332-.03135 1.0394 1.0394 0 0 0 1.01045.63545.832.832 0 0 0 .75845-.58722.28867.28867 0 0 1 .54984.17605zm-16.30599.41118a.28819.28819 0 0 0-.28818.2894v1.27452a.2894.2894 0 1 0 .57757 0v-1.27453a.28819.28819 0 0 0-.28939-.28939Z" }) + ] + } + ); +}); + +exports.default = SiPicrew; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.d.ts new file mode 100644 index 000000000..5641ee6a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFBD16"; +declare const SiPicrew: IconType; +export { SiPicrew as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.mjs new file mode 100644 index 000000000..6cfa939dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicrew.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFBD16"; +const SiPicrew = React.forwardRef(function SiPicrew2({ title = "Picrew", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.22164 10.83105a.03738.03738 0 0 1 .03859-.03979.6029.6029 0 0 1 .44012.21584 1.03699 1.03699 0 0 1 .2098.61978.03497.03497 0 0 1-.041.03738c-.47266-.0627-.59204-.22066-.6475-.8332Zm-.1471 0a.03738.03738 0 0 0-.03859-.03979.6029.6029 0 0 0-.44011.21584 1.03699 1.03699 0 0 0-.2074.61978.03497.03497 0 0 0 .041.03738c.47026-.0627.58963-.22066.6451-.8332zm-.64752 1.00202a.03617.03617 0 0 0-.03858.03497 1.0394 1.0394 0 0 0 .2098.6246.6029.6029 0 0 0 .43771.21946.03738.03738 0 0 0 .03859-.0398c-.05547-.61254-.17484-.7717-.64752-.83923Zm.79462.84406a.03738.03738 0 0 0 .03859.03979.6029.6029 0 0 0 .44012-.21584 1.0394 1.0394 0 0 0 .2098-.63304.03617.03617 0 0 0-.041-.0386c-.47267.07115-.59204.23032-.6475.84286zm2.61658-1.84608a.03738.03738 0 0 0-.03858-.03979.6029.6029 0 0 0-.44012.21584 1.03699 1.03699 0 0 0-.2098.61978.03497.03497 0 0 0 .041.03738c.47266-.0627.59204-.22066.6475-.8332zm.79462.84406a.03497.03497 0 0 0 .041-.03738 1.03699 1.03699 0 0 0-.2098-.6246.6029.6029 0 0 0-.44012-.21584.03738.03738 0 0 0-.03859.03979c.05547.60652.17484.76448.64751.832zm-.6475 1.00322a.03738.03738 0 0 0 .03858.0398.6029.6029 0 0 0 .44011-.21584 1.0394 1.0394 0 0 0 .20981-.63425.03617.03617 0 0 0-.041-.0386c-.47267.07115-.59204.23032-.6475.84286zm-.79463-.84405a.03617.03617 0 0 0-.041.03858 1.0394 1.0394 0 0 0 .20981.6246.6029.6029 0 0 0 .44012.21463.03738.03738 0 0 0 .03858-.03979c-.05546-.61254-.17484-.7717-.6475-.83923Zm17.2212-.96464a.2894.2894 0 0 0-.2894.28939v.88023a.2894.2894 0 1 0 .57758 0v-.88023a.28819.28819 0 0 0-.28819-.29421zm-2.15115-.3943a.28819.28819 0 0 0-.28818.28819v1.2709a.2894.2894 0 1 0 .57757 0v-1.27572a.28819.28819 0 0 0-.28939-.28819Zm4.30108 0a.28819.28819 0 0 0-.28819.28819v1.2709a.2894.2894 0 1 0 .57758 0v-1.27572a.28819.28819 0 0 0-.2894-.28819Zm-5.15117 1.56754a.2906.2906 0 0 1-.28939.2894h-2.7456v.1061a.2894.2894 0 0 1-.57757 0 2.4116 2.4116 0 0 1 .04944-.45459c.26286-1.44695 2.01247-1.97388 3.06151-1.02975a1.4964 1.4964 0 0 1 .50162 1.0804zm-2.88426-.29542h2.25001a.99117.99117 0 0 0-.26045-.3762 1.3107 1.3107 0 0 0-.89108-.32196 1.21906 1.21906 0 0 0-1.09848.69816zm-5.2621-1.27694a2.04985 2.04985 0 0 0-1.80146 1.03578 1.34688 1.34688 0 0 0-.78256-.24116 1.36134 1.36134 0 0 0-.6644.17002 4.29625 4.29625 0 0 0-.79341-1.91119.6849.6849 0 0 1-.09767-.15072c.01326-.95861-1.15274-1.40476-1.8316-.72348a.93837.93837 0 0 0-.05186.05667.7488.7488 0 0 1-.13263-.00724 5.1174 5.1174 0 0 0-.57879-.02893 6.85616 6.85616 0 0 0-.709.03979C2.17462 7.94679.9218 8.37123.93506 9.36722a.6849.6849 0 0 1-.09767.15072 4.38428 4.38428 0 0 0-.83682 2.2476.2894.2894 0 0 0 .57637.05065 3.7838 3.7838 0 0 1 .72348-1.94736.8103.8103 0 0 0 .2086-.50161.43288.43288 0 0 1 .2689-.43168.50885.50885 0 0 1 .59927.13626c.15193.18569.3099.24116.63063.19292a4.73999 4.73999 0 0 1 .52211-.02532 4.73999 4.73999 0 0 1 .52211.02532c.33763.04944.49197-.01808.6427-.2074a.50885.50885 0 0 1 .5836-.12057.43288.43288 0 0 1 .2689.43167.8103.8103 0 0 0 .21583.50161 3.7838 3.7838 0 0 1 .72348 1.94737c.0205.19775 0 .37018.17484.47026a.2894.2894 0 0 0 .39912-.12058.75362.75362 0 0 1 1.25161.01085.2894.2894 0 0 0 .52814-.06873 1.44696 1.44696 0 0 1 1.42405-1.0611 1.4783 1.4783 0 0 1 1.25282.65715.2894.2894 0 1 0 .48232-.31953 2.04985 2.04985 0 0 0-1.73514-.9152zm13.72076 2.92767a1.40475 1.40475 0 0 1-1.27332.98876 1.63627 1.63627 0 0 1-1.29985-.54623c-.63184.72348-1.85934.7488-2.38989-.06752-.5221.37139-1.32637.61375-2.11255.61375-1.0599-.03497-1.5796-.38826-2.29825-.9562-.76448-.71141-1.8521-.14469-2.35492.73795v1.2058a.2894.2894 0 0 1-.57758 0v-1.53136a2.08603 2.08603 0 0 1-1.4144.54381 2.04985 2.04985 0 0 1-1.80146-1.03457 1.36737 1.36737 0 0 1-1.55066.0096c-.58601 1.09607-1.81593 1.72429-3.37623 1.72429-1.2287 0-2.25001-.38586-2.91561-1.08522v1.3722a.2894.2894 0 0 1-.57879 0v-2.29946a.29421.29421 0 0 1 .12058-.24116.2894.2894 0 0 1 .416.09646c.4582 1.02493 1.52775 1.57718 2.953 1.58321 1.42525.006 2.7034-.62942 2.9964-1.78096a.28577.28577 0 0 1 .14832-.1652.2906.2906 0 0 1 .3762.12059c.2484.44976 1.00926.44855 1.25765 0a.2906.2906 0 0 1 .49197-.0205.27613.27613 0 0 1 .03979.09043 1.48675 1.48675 0 0 0 2.84689 0 .2894.2894 0 0 1 .5619.006c.01326.03497.006.43047.0072.47508.4389-.42082 1.00201-.69936 1.5-.69936.92003-.03135 1.23474.56431 1.87743.92243a2.55388 2.55388 0 0 0 1.27574.3533c.85732 0 1.65194-.3111 2.0583-.7488a.2918.2918 0 0 1 .42082.16158c.24115.78497 1.38184.7898 1.75443-.01688a.28819.28819 0 0 1 .52332-.03135 1.0394 1.0394 0 0 0 1.01045.63545.832.832 0 0 0 .75845-.58722.28867.28867 0 0 1 .54984.17605zm-16.30599.41118a.28819.28819 0 0 0-.28818.2894v1.27452a.2894.2894 0 1 0 .57757 0v-1.27453a.28819.28819 0 0 0-.28939-.28939Z" }) + ] + } + ); +}); + +export { SiPicrew as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.cjs new file mode 100644 index 000000000..4506d3273 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C209C1"; +const SiPicsart = React__namespace.forwardRef(function SiPicsart2({ title = "Picsart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0h-.012c-2.21 0-4.3.863-5.888 2.432-.15.148-.428.458-.428.458-.096.11-.188.22-.276.334l-.036.047a8.683 8.683 0 0 0-1.836 5.016v15.41a.32.32 0 0 0 .05.17.304.304 0 0 0 .254.133h2.881a.303.303 0 0 0 .305-.304v-7.843c0-.054.037-.08.053-.087a.1.1 0 0 1 .104.008 8.293 8.293 0 0 0 4.815 1.525c1.32 0 2.547-.305 3.68-.86 2.847-1.392 4.812-4.356 4.812-7.793 0-4.78-3.796-8.645-8.478-8.645zm-.013 13.994c-2.841 0-5.152-2.396-5.152-5.34 0-2.946 2.31-5.342 5.152-5.342 2.841 0 5.152 2.396 5.152 5.341 0 2.945-2.31 5.341-5.152 5.341z" }) + ] + } + ); +}); + +exports.default = SiPicsart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.d.ts new file mode 100644 index 000000000..97c12eb14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C209C1"; +declare const SiPicsart: IconType; +export { SiPicsart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.mjs new file mode 100644 index 000000000..4e028a963 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicsart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C209C1"; +const SiPicsart = React.forwardRef(function SiPicsart2({ title = "Picsart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0h-.012c-2.21 0-4.3.863-5.888 2.432-.15.148-.428.458-.428.458-.096.11-.188.22-.276.334l-.036.047a8.683 8.683 0 0 0-1.836 5.016v15.41a.32.32 0 0 0 .05.17.304.304 0 0 0 .254.133h2.881a.303.303 0 0 0 .305-.304v-7.843c0-.054.037-.08.053-.087a.1.1 0 0 1 .104.008 8.293 8.293 0 0 0 4.815 1.525c1.32 0 2.547-.305 3.68-.86 2.847-1.392 4.812-4.356 4.812-7.793 0-4.78-3.796-8.645-8.478-8.645zm-.013 13.994c-2.841 0-5.152-2.396-5.152-5.34 0-2.946 2.31-5.342 5.152-5.342 2.841 0 5.152 2.396 5.152 5.341 0 2.945-2.31 5.341-5.152 5.341z" }) + ] + } + ); +}); + +export { SiPicsart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.cjs new file mode 100644 index 000000000..5fb6cdc54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E3192"; +const SiPicxy = React__namespace.forwardRef(function SiPicxy2({ title = "Picxy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.214 9.193a.742.742 0 0 0-.488.276c-.072.093-.124.205-.215.46a246.024 246.024 0 0 1-.792 2.17 40.979 40.979 0 0 0-.408 1.147 2.913 2.913 0 0 1-.053.167 7.924 7.924 0 0 1-.228-.553 178.6 178.6 0 0 0-1.23-3.074c-.08-.202-.094-.228-.157-.32a.59.59 0 0 0-.328-.247c-.07-.022-.08-.022-.485-.022h-.413v.893l.157.002c.185 0 .218.012.284.087.037.04.091.166.476 1.076a367.899 367.899 0 0 0 .653 1.54l.332.776c.18.435.406.982.408.994l.01.04c.01.042-.018.123-.12.369-.197.47-.3.644-.495.813-.258.23-.529.3-.807.21a2.95 2.95 0 0 1-.427-.206 1.035 1.035 0 0 0-.177-.086 5.68 5.68 0 0 0-.094.162c-.05.086-.095.16-.1.168-.02.024-.21.376-.21.387 0 .03.215.177.387.264a1.897 1.897 0 0 0 .903.215c.32 0 .56-.055.827-.19.42-.212.704-.57.982-1.242.12-.287.56-1.374 1.22-3.01.81-2.003.784-1.94.862-2.098.074-.148.106-.185.198-.234.047-.024.063-.027.183-.032L24 10.09v-.903h-.364c-.2-.002-.39 0-.422.006zM10.32 9.17c-.492.05-.865.169-1.238.389a2.75 2.75 0 0 0-.856.834 2.6 2.6 0 0 0-.39 1.098 4.8 4.8 0 0 0 .004.844c.044.348.112.579.252.862.1.2.157.292.285.45a2.863 2.863 0 0 0 1.71.984c.124.02.166.022.48.022.38 0 .5-.011.753-.072.422-.101.742-.256 1.137-.55.064-.048.157-.115.206-.15.065-.045.09-.07.09-.084 0-.021-.029-.082-.04-.088a1.463 1.463 0 0 0-.124-.204c-.013-.017-.02-.031-.017-.031.003 0-.002-.01-.013-.022-.01-.01-.017-.024-.015-.03.003-.003.001-.007-.002-.007-.006 0-.013-.008-.018-.02a7.3 7.3 0 0 0-.157-.26l-.032-.051-.314.21a3.806 3.806 0 0 1-.448.278c-.17.08-.36.145-.535.18a1.387 1.387 0 0 1-.359.027 1.599 1.599 0 0 1-.62-.093 2.378 2.378 0 0 1-.506-.258 2.19 2.19 0 0 1-.362-.36 1.741 1.741 0 0 1-.307-.64 1.983 1.983 0 0 1-.066-.532c0-.2.02-.343.07-.544.053-.208.101-.324.21-.504.28-.462.714-.746 1.245-.816a3.167 3.167 0 0 1 .533-.005c.131.015.281.052.367.092a.74.74 0 0 1 .317.267c.042.072.086.274.086.397v.06h.854v-.29c0-.321-.01-.392-.067-.541-.087-.225-.316-.462-.563-.586a2.73 2.73 0 0 0-.545-.194c-.213-.05-.328-.062-.656-.064a7.058 7.058 0 0 0-.349.002zm-4.765.028c-.004.004-.007.19-.007.413v.407h.256c.283 0 .3.003.363.068.067.072.063-.088.062 1.92 0 1.882.002 2.11.037 2.246.051.2.168.32.356.364.107.024.608.045.62.025.001-.004 0-1.12-.005-2.478l-.006-2.47-.02-.076c-.048-.175-.134-.29-.259-.352-.13-.065-.139-.066-.797-.07a12.303 12.303 0 0 0-.6.003zm7.484.006a9.846 9.846 0 0 0-.003.44l.003.427h.17c.13 0 .184.006.232.018.17.046.263.123.401.326a110.633 110.633 0 0 1 .952 1.405.126.126 0 0 1 .017.04c0 .006-.41.634-.908 1.395a371.04 371.04 0 0 0-.908 1.39c0 .002.26.004.576.004h.575l.643-1.003a321.842 321.842 0 0 1 .655-1.02c.011-.015.026.003.144.175.072.106.373.565.67 1.02l.536.828h.572c.541 0 .57-.002.562-.018l-.912-1.395c-.78-1.196-.9-1.382-.89-1.398.005-.01.216-.333.47-.717.48-.723.531-.795.662-.896a.993.993 0 0 1 .142-.084l.085-.041.418-.01v-.893h-.384c-.412 0-.483.006-.626.05a.813.813 0 0 0-.36.222c-.072.073-.108.124-.226.323-.165.28-.832 1.34-.838 1.335-.02-.012-.25-.372-.765-1.197-.225-.36-.266-.42-.352-.501-.197-.19-.406-.237-1.05-.237-.198 0-.26.003-.263.012zM.461 7.104a.4.4 0 0 0-.168.042.508.508 0 0 0-.276.338c-.02.072-.018-.307-.014 4.27v2.875l.529-.002.526-.003V11.89h.45c.8-.002 1.372-.015 1.557-.037.295-.037.503-.094.72-.2a2.03 2.03 0 0 0 .803-.71 2.21 2.21 0 0 0 .392-1.058 4.769 4.769 0 0 0 0-.79 2.185 2.185 0 0 0-.783-1.465 2.383 2.383 0 0 0-.95-.452 4.01 4.01 0 0 0-.461-.066A72.454 72.454 0 0 0 .46 7.105Zm2.15.953a1.498 1.498 0 0 1 .688.24c.09.058.265.227.338.326.164.219.252.453.28.743.014.125.014.11 0 .235-.028.29-.116.524-.28.743a1.855 1.855 0 0 1-.338.327 1.517 1.517 0 0 1-.693.24c-.124.013-.108.013-.233 0a1.52 1.52 0 0 1-.692-.24 1.9 1.9 0 0 1-.34-.327 1.423 1.423 0 0 1-.28-.743c-.012-.125-.012-.11 0-.235.03-.29.118-.524.28-.743a1.9 1.9 0 0 1 .34-.327c.2-.133.507-.237.706-.24a.39.39 0 0 0 .074-.01.072.072 0 0 1 .038-.002c.008.002.059.008.112.013zm-.13.58a.64.64 0 0 0-.422.428.872.872 0 0 0 0 .332c.047.16.163.304.302.376.11.057.163.07.294.07.13 0 .182-.013.294-.07a.633.633 0 0 0 .302-.376.872.872 0 0 0 0-.332.642.642 0 0 0-.43-.43.855.855 0 0 0-.34.003zM6.46 7.15a.634.634 0 0 0-.443.445.8.8 0 0 0-.015.155c0 .183.053.312.18.438a.565.565 0 0 0 .437.179.806.806 0 0 0 .156-.015.632.632 0 0 0 .446-.446.877.877 0 0 0 0-.311.633.633 0 0 0-.446-.447.876.876 0 0 0-.316.002z" }) + ] + } + ); +}); + +exports.default = SiPicxy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.d.ts new file mode 100644 index 000000000..73622297c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E3192"; +declare const SiPicxy: IconType; +export { SiPicxy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.mjs new file mode 100644 index 000000000..db5599a44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPicxy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E3192"; +const SiPicxy = React.forwardRef(function SiPicxy2({ title = "Picxy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.214 9.193a.742.742 0 0 0-.488.276c-.072.093-.124.205-.215.46a246.024 246.024 0 0 1-.792 2.17 40.979 40.979 0 0 0-.408 1.147 2.913 2.913 0 0 1-.053.167 7.924 7.924 0 0 1-.228-.553 178.6 178.6 0 0 0-1.23-3.074c-.08-.202-.094-.228-.157-.32a.59.59 0 0 0-.328-.247c-.07-.022-.08-.022-.485-.022h-.413v.893l.157.002c.185 0 .218.012.284.087.037.04.091.166.476 1.076a367.899 367.899 0 0 0 .653 1.54l.332.776c.18.435.406.982.408.994l.01.04c.01.042-.018.123-.12.369-.197.47-.3.644-.495.813-.258.23-.529.3-.807.21a2.95 2.95 0 0 1-.427-.206 1.035 1.035 0 0 0-.177-.086 5.68 5.68 0 0 0-.094.162c-.05.086-.095.16-.1.168-.02.024-.21.376-.21.387 0 .03.215.177.387.264a1.897 1.897 0 0 0 .903.215c.32 0 .56-.055.827-.19.42-.212.704-.57.982-1.242.12-.287.56-1.374 1.22-3.01.81-2.003.784-1.94.862-2.098.074-.148.106-.185.198-.234.047-.024.063-.027.183-.032L24 10.09v-.903h-.364c-.2-.002-.39 0-.422.006zM10.32 9.17c-.492.05-.865.169-1.238.389a2.75 2.75 0 0 0-.856.834 2.6 2.6 0 0 0-.39 1.098 4.8 4.8 0 0 0 .004.844c.044.348.112.579.252.862.1.2.157.292.285.45a2.863 2.863 0 0 0 1.71.984c.124.02.166.022.48.022.38 0 .5-.011.753-.072.422-.101.742-.256 1.137-.55.064-.048.157-.115.206-.15.065-.045.09-.07.09-.084 0-.021-.029-.082-.04-.088a1.463 1.463 0 0 0-.124-.204c-.013-.017-.02-.031-.017-.031.003 0-.002-.01-.013-.022-.01-.01-.017-.024-.015-.03.003-.003.001-.007-.002-.007-.006 0-.013-.008-.018-.02a7.3 7.3 0 0 0-.157-.26l-.032-.051-.314.21a3.806 3.806 0 0 1-.448.278c-.17.08-.36.145-.535.18a1.387 1.387 0 0 1-.359.027 1.599 1.599 0 0 1-.62-.093 2.378 2.378 0 0 1-.506-.258 2.19 2.19 0 0 1-.362-.36 1.741 1.741 0 0 1-.307-.64 1.983 1.983 0 0 1-.066-.532c0-.2.02-.343.07-.544.053-.208.101-.324.21-.504.28-.462.714-.746 1.245-.816a3.167 3.167 0 0 1 .533-.005c.131.015.281.052.367.092a.74.74 0 0 1 .317.267c.042.072.086.274.086.397v.06h.854v-.29c0-.321-.01-.392-.067-.541-.087-.225-.316-.462-.563-.586a2.73 2.73 0 0 0-.545-.194c-.213-.05-.328-.062-.656-.064a7.058 7.058 0 0 0-.349.002zm-4.765.028c-.004.004-.007.19-.007.413v.407h.256c.283 0 .3.003.363.068.067.072.063-.088.062 1.92 0 1.882.002 2.11.037 2.246.051.2.168.32.356.364.107.024.608.045.62.025.001-.004 0-1.12-.005-2.478l-.006-2.47-.02-.076c-.048-.175-.134-.29-.259-.352-.13-.065-.139-.066-.797-.07a12.303 12.303 0 0 0-.6.003zm7.484.006a9.846 9.846 0 0 0-.003.44l.003.427h.17c.13 0 .184.006.232.018.17.046.263.123.401.326a110.633 110.633 0 0 1 .952 1.405.126.126 0 0 1 .017.04c0 .006-.41.634-.908 1.395a371.04 371.04 0 0 0-.908 1.39c0 .002.26.004.576.004h.575l.643-1.003a321.842 321.842 0 0 1 .655-1.02c.011-.015.026.003.144.175.072.106.373.565.67 1.02l.536.828h.572c.541 0 .57-.002.562-.018l-.912-1.395c-.78-1.196-.9-1.382-.89-1.398.005-.01.216-.333.47-.717.48-.723.531-.795.662-.896a.993.993 0 0 1 .142-.084l.085-.041.418-.01v-.893h-.384c-.412 0-.483.006-.626.05a.813.813 0 0 0-.36.222c-.072.073-.108.124-.226.323-.165.28-.832 1.34-.838 1.335-.02-.012-.25-.372-.765-1.197-.225-.36-.266-.42-.352-.501-.197-.19-.406-.237-1.05-.237-.198 0-.26.003-.263.012zM.461 7.104a.4.4 0 0 0-.168.042.508.508 0 0 0-.276.338c-.02.072-.018-.307-.014 4.27v2.875l.529-.002.526-.003V11.89h.45c.8-.002 1.372-.015 1.557-.037.295-.037.503-.094.72-.2a2.03 2.03 0 0 0 .803-.71 2.21 2.21 0 0 0 .392-1.058 4.769 4.769 0 0 0 0-.79 2.185 2.185 0 0 0-.783-1.465 2.383 2.383 0 0 0-.95-.452 4.01 4.01 0 0 0-.461-.066A72.454 72.454 0 0 0 .46 7.105Zm2.15.953a1.498 1.498 0 0 1 .688.24c.09.058.265.227.338.326.164.219.252.453.28.743.014.125.014.11 0 .235-.028.29-.116.524-.28.743a1.855 1.855 0 0 1-.338.327 1.517 1.517 0 0 1-.693.24c-.124.013-.108.013-.233 0a1.52 1.52 0 0 1-.692-.24 1.9 1.9 0 0 1-.34-.327 1.423 1.423 0 0 1-.28-.743c-.012-.125-.012-.11 0-.235.03-.29.118-.524.28-.743a1.9 1.9 0 0 1 .34-.327c.2-.133.507-.237.706-.24a.39.39 0 0 0 .074-.01.072.072 0 0 1 .038-.002c.008.002.059.008.112.013zm-.13.58a.64.64 0 0 0-.422.428.872.872 0 0 0 0 .332c.047.16.163.304.302.376.11.057.163.07.294.07.13 0 .182-.013.294-.07a.633.633 0 0 0 .302-.376.872.872 0 0 0 0-.332.642.642 0 0 0-.43-.43.855.855 0 0 0-.34.003zM6.46 7.15a.634.634 0 0 0-.443.445.8.8 0 0 0-.015.155c0 .183.053.312.18.438a.565.565 0 0 0 .437.179.806.806 0 0 0 .156-.015.632.632 0 0 0 .446-.446.877.877 0 0 0 0-.311.633.633 0 0 0-.446-.447.876.876 0 0 0-.316.002z" }) + ] + } + ); +}); + +export { SiPicxy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.cjs new file mode 100644 index 000000000..47ecc235d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#96060C"; +const SiPihole = React__namespace.forwardRef(function SiPihole2({ title = "Pi-hole", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.344 0c.238 4.792 3.256 7.056 6.252 7.376.165-1.692-4.319-5.6-4.319-5.6-.008-.011.009-.025.019-.014 0 0 4.648 4.01 5.423 5.645 2.762-.15 5.196-1.947 5-4.912 0 0-4.12-.613-5 4.618C11.48 2.753 8.993 0 4.344 0zM12 7.682v.002a3.68 3.68 0 0 0-2.591 1.077L4.94 13.227a3.683 3.683 0 0 0-.86 1.356 3.31 3.31 0 0 0-.237 1.255A3.681 3.681 0 0 0 4.92 18.45l4.464 4.466a3.69 3.69 0 0 0 2.251 1.06l.002.001c.093.01.187.015.28.017l-.1-.008c.06.003.117.009.177.009l-.077-.001L12 24l-.004-.005a3.68 3.68 0 0 0 2.61-1.077l4.469-4.465a3.683 3.683 0 0 0 1.006-1.888l.012-.063a3.682 3.682 0 0 0 .057-.541l.003-.061c0-.017.003-.05.004-.06h-.002a3.683 3.683 0 0 0-1.077-2.607l-4.466-4.468a3.694 3.694 0 0 0-1.564-.927l-.07-.02a3.43 3.43 0 0 0-.946-.133L12 7.682zm3.165 3.357c.023 1.748-1.33 3.078-1.33 4.806.164 2.227 1.733 3.207 3.266 3.146-.035.003-.068.007-.104.009-1.847.135-3.209-1.326-5.002-1.326-2.23.164-3.21 1.736-3.147 3.27l-.008-.104c-.133-1.847 1.328-3.21 1.328-5.002-.173-2.32-1.867-3.284-3.46-3.132.1-.011.203-.021.31-.027 1.847-.133 3.209 1.328 5.002 1.328 2.082-.155 3.074-1.536 3.145-2.968zM4.344 0c.238 4.792 3.256 7.056 6.252 7.376.165-1.692-4.319-5.6-4.319-5.6-.008-.011.009-.025.019-.014 0 0 4.648 4.01 5.423 5.645 2.762-.15 5.196-1.947 5-4.912 0 0-4.12-.613-5 4.618C11.48 2.753 8.993 0 4.344 0zM12 7.682v.002a3.68 3.68 0 0 0-2.591 1.077L4.94 13.227a3.683 3.683 0 0 0-.86 1.356 3.31 3.31 0 0 0-.237 1.255A3.681 3.681 0 0 0 4.92 18.45l4.464 4.466a3.69 3.69 0 0 0 2.251 1.06l.002.001c.093.01.187.015.28.017l-.1-.008c.06.003.117.009.177.009l-.077-.001L12 24l-.004-.005a3.68 3.68 0 0 0 2.61-1.077l4.469-4.465a3.683 3.683 0 0 0 1.006-1.888l.012-.063a3.682 3.682 0 0 0 .057-.541l.003-.061c0-.017.003-.05.004-.06h-.002a3.683 3.683 0 0 0-1.077-2.607l-4.466-4.468a3.694 3.694 0 0 0-1.564-.927l-.07-.02a3.43 3.43 0 0 0-.946-.133L12 7.682zm3.165 3.357c.023 1.748-1.33 3.078-1.33 4.806.164 2.227 1.733 3.207 3.266 3.146-.035.003-.068.007-.104.009-1.847.135-3.209-1.326-5.002-1.326-2.23.164-3.21 1.736-3.147 3.27l-.008-.104c-.133-1.847 1.328-3.21 1.328-5.002-.173-2.32-1.867-3.284-3.46-3.132.1-.011.203-.021.31-.027 1.847-.133 3.209 1.328 5.002 1.328 2.082-.155 3.074-1.536 3.145-2.968z" }) + ] + } + ); +}); + +exports.default = SiPihole; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.d.ts new file mode 100644 index 000000000..2dd79c4b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#96060C"; +declare const SiPihole: IconType; +export { SiPihole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.mjs new file mode 100644 index 000000000..fa887aaff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPihole.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#96060C"; +const SiPihole = React.forwardRef(function SiPihole2({ title = "Pi-hole", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.344 0c.238 4.792 3.256 7.056 6.252 7.376.165-1.692-4.319-5.6-4.319-5.6-.008-.011.009-.025.019-.014 0 0 4.648 4.01 5.423 5.645 2.762-.15 5.196-1.947 5-4.912 0 0-4.12-.613-5 4.618C11.48 2.753 8.993 0 4.344 0zM12 7.682v.002a3.68 3.68 0 0 0-2.591 1.077L4.94 13.227a3.683 3.683 0 0 0-.86 1.356 3.31 3.31 0 0 0-.237 1.255A3.681 3.681 0 0 0 4.92 18.45l4.464 4.466a3.69 3.69 0 0 0 2.251 1.06l.002.001c.093.01.187.015.28.017l-.1-.008c.06.003.117.009.177.009l-.077-.001L12 24l-.004-.005a3.68 3.68 0 0 0 2.61-1.077l4.469-4.465a3.683 3.683 0 0 0 1.006-1.888l.012-.063a3.682 3.682 0 0 0 .057-.541l.003-.061c0-.017.003-.05.004-.06h-.002a3.683 3.683 0 0 0-1.077-2.607l-4.466-4.468a3.694 3.694 0 0 0-1.564-.927l-.07-.02a3.43 3.43 0 0 0-.946-.133L12 7.682zm3.165 3.357c.023 1.748-1.33 3.078-1.33 4.806.164 2.227 1.733 3.207 3.266 3.146-.035.003-.068.007-.104.009-1.847.135-3.209-1.326-5.002-1.326-2.23.164-3.21 1.736-3.147 3.27l-.008-.104c-.133-1.847 1.328-3.21 1.328-5.002-.173-2.32-1.867-3.284-3.46-3.132.1-.011.203-.021.31-.027 1.847-.133 3.209 1.328 5.002 1.328 2.082-.155 3.074-1.536 3.145-2.968zM4.344 0c.238 4.792 3.256 7.056 6.252 7.376.165-1.692-4.319-5.6-4.319-5.6-.008-.011.009-.025.019-.014 0 0 4.648 4.01 5.423 5.645 2.762-.15 5.196-1.947 5-4.912 0 0-4.12-.613-5 4.618C11.48 2.753 8.993 0 4.344 0zM12 7.682v.002a3.68 3.68 0 0 0-2.591 1.077L4.94 13.227a3.683 3.683 0 0 0-.86 1.356 3.31 3.31 0 0 0-.237 1.255A3.681 3.681 0 0 0 4.92 18.45l4.464 4.466a3.69 3.69 0 0 0 2.251 1.06l.002.001c.093.01.187.015.28.017l-.1-.008c.06.003.117.009.177.009l-.077-.001L12 24l-.004-.005a3.68 3.68 0 0 0 2.61-1.077l4.469-4.465a3.683 3.683 0 0 0 1.006-1.888l.012-.063a3.682 3.682 0 0 0 .057-.541l.003-.061c0-.017.003-.05.004-.06h-.002a3.683 3.683 0 0 0-1.077-2.607l-4.466-4.468a3.694 3.694 0 0 0-1.564-.927l-.07-.02a3.43 3.43 0 0 0-.946-.133L12 7.682zm3.165 3.357c.023 1.748-1.33 3.078-1.33 4.806.164 2.227 1.733 3.207 3.266 3.146-.035.003-.068.007-.104.009-1.847.135-3.209-1.326-5.002-1.326-2.23.164-3.21 1.736-3.147 3.27l-.008-.104c-.133-1.847 1.328-3.21 1.328-5.002-.173-2.32-1.867-3.284-3.46-3.132.1-.011.203-.021.31-.027 1.847-.133 3.209 1.328 5.002 1.328 2.082-.155 3.074-1.536 3.145-2.968z" }) + ] + } + ); +}); + +export { SiPihole as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.cjs new file mode 100644 index 000000000..f62ac5501 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6428B4"; +const SiPimcore = React__namespace.forwardRef(function SiPimcore2({ title = "Pimcore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.579c0 .262-.212.474-.474.474H22.19c-.047 0-.084.038-.084.084v.547H24v.158c0 .262-.212.474-.474.474h-1.421v.547c0 .046.038.084.084.084H24v.158c0 .261-.212.474-.474.474h-1.579a.4737.4737 0 01-.474-.474v-2.211c0-.261.212-.474.474-.474H24v.159m-5.589.474a.095.095 0 00-.095.095V12h1.421c.27 0 .487-.227.473-.5-.014-.253-.228-.448-.481-.448h-1.318m2.431.46c.005.44-.246.821-.614 1.004l.614 1.063h-.547c-.113 0-.217-.06-.273-.158l-.456-.789h-1.25v.474c0 .262-.212.474-.474.474h-.158v-2.684c0-.262.212-.474.474-.474h1.549c.61-.001 1.128.48 1.135 1.09m-5.368 1.435c.522 0 .947-.425.947-.947s-.425-.947-.947-.947c-.329 0-.619.169-.789.424l-.348.523.345.52c.17.257.461.427.792.427m0-2.526c.872 0 1.579.707 1.579 1.579s-.707 1.579-1.579 1.579c-.55 0-1.034-.281-1.316-.707l-.2-.3-.43.648c-.396.597-1.074.991-1.844.991-1.221 0-2.211-.99-2.211-2.211 0-1.221.99-2.211 2.211-2.211.767 0 1.442.39 1.839.983l.056.084-.379.573-.207-.313c-.284-.419-.764-.695-1.308-.695-.871 0-1.579.708-1.579 1.579s.708 1.579 1.579 1.579c.549 0 1.033-.281 1.316-.707l1.156-1.742c.282-.427.766-.709 1.317-.709m-7.393.13l-1.067 1.067a.0948.0948 0 01-.134 0l-1.065-1.065a.4468.4468 0 00-.763.316v2.711h.158c.261 0 .474-.212.474-.474v-1.69c0-.037.045-.056.072-.03l.856.856c.185.185.485.185.67 0l.856-.856a.0422.0422 0 01.072.03v2.163h.158c.261 0 .474-.212.474-.474v-2.242c0-.244-.198-.442-.442-.442h-.007c-.117 0-.229.047-.312.13m-4.134 3.028c.262 0 .474-.212.474-.474v-2.684h-.158c-.262 0-.474.212-.474.474v2.684h.158M2.039 12c.255 0 .475-.195.487-.45.013-.272-.204-.498-.473-.498H.726c-.052 0-.095.043-.095.095V12h1.408m-.015-1.579c.619 0 1.146.507 1.134 1.126-.011.601-.502 1.084-1.105 1.084H.632v.474c0 .261-.212.474-.474.474H0v-2.684c0-.262.212-.474.474-.474h1.55" }) + ] + } + ); +}); + +exports.default = SiPimcore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.d.ts new file mode 100644 index 000000000..f34985608 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6428B4"; +declare const SiPimcore: IconType; +export { SiPimcore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.mjs new file mode 100644 index 000000000..b67a8f3e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPimcore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6428B4"; +const SiPimcore = React.forwardRef(function SiPimcore2({ title = "Pimcore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.579c0 .262-.212.474-.474.474H22.19c-.047 0-.084.038-.084.084v.547H24v.158c0 .262-.212.474-.474.474h-1.421v.547c0 .046.038.084.084.084H24v.158c0 .261-.212.474-.474.474h-1.579a.4737.4737 0 01-.474-.474v-2.211c0-.261.212-.474.474-.474H24v.159m-5.589.474a.095.095 0 00-.095.095V12h1.421c.27 0 .487-.227.473-.5-.014-.253-.228-.448-.481-.448h-1.318m2.431.46c.005.44-.246.821-.614 1.004l.614 1.063h-.547c-.113 0-.217-.06-.273-.158l-.456-.789h-1.25v.474c0 .262-.212.474-.474.474h-.158v-2.684c0-.262.212-.474.474-.474h1.549c.61-.001 1.128.48 1.135 1.09m-5.368 1.435c.522 0 .947-.425.947-.947s-.425-.947-.947-.947c-.329 0-.619.169-.789.424l-.348.523.345.52c.17.257.461.427.792.427m0-2.526c.872 0 1.579.707 1.579 1.579s-.707 1.579-1.579 1.579c-.55 0-1.034-.281-1.316-.707l-.2-.3-.43.648c-.396.597-1.074.991-1.844.991-1.221 0-2.211-.99-2.211-2.211 0-1.221.99-2.211 2.211-2.211.767 0 1.442.39 1.839.983l.056.084-.379.573-.207-.313c-.284-.419-.764-.695-1.308-.695-.871 0-1.579.708-1.579 1.579s.708 1.579 1.579 1.579c.549 0 1.033-.281 1.316-.707l1.156-1.742c.282-.427.766-.709 1.317-.709m-7.393.13l-1.067 1.067a.0948.0948 0 01-.134 0l-1.065-1.065a.4468.4468 0 00-.763.316v2.711h.158c.261 0 .474-.212.474-.474v-1.69c0-.037.045-.056.072-.03l.856.856c.185.185.485.185.67 0l.856-.856a.0422.0422 0 01.072.03v2.163h.158c.261 0 .474-.212.474-.474v-2.242c0-.244-.198-.442-.442-.442h-.007c-.117 0-.229.047-.312.13m-4.134 3.028c.262 0 .474-.212.474-.474v-2.684h-.158c-.262 0-.474.212-.474.474v2.684h.158M2.039 12c.255 0 .475-.195.487-.45.013-.272-.204-.498-.473-.498H.726c-.052 0-.095.043-.095.095V12h1.408m-.015-1.579c.619 0 1.146.507 1.134 1.126-.011.601-.502 1.084-1.105 1.084H.632v.474c0 .261-.212.474-.474.474H0v-2.684c0-.262.212-.474.474-.474h1.55" }) + ] + } + ); +}); + +export { SiPimcore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.cjs new file mode 100644 index 000000000..78cf00006 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0000FF"; +const SiPinboard = React__namespace.forwardRef(function SiPinboard2({ title = "Pinboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.352 14.585l-4.509 4.614.72-4.062L3.428 7.57 0 7.753 7.58 0v2.953l7.214 6.646 4.513-1.105-4.689 4.982L24 24l-10.648-9.415z" }) + ] + } + ); +}); + +exports.default = SiPinboard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.d.ts new file mode 100644 index 000000000..fe460444e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0000FF"; +declare const SiPinboard: IconType; +export { SiPinboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.mjs new file mode 100644 index 000000000..eb5585a36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinboard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0000FF"; +const SiPinboard = React.forwardRef(function SiPinboard2({ title = "Pinboard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.352 14.585l-4.509 4.614.72-4.062L3.428 7.57 0 7.753 7.58 0v2.953l7.214 6.646 4.513-1.105-4.689 4.982L24 24l-10.648-9.415z" }) + ] + } + ); +}); + +export { SiPinboard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.cjs new file mode 100644 index 000000000..674546906 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B453"; +const SiPinescript = React__namespace.forwardRef(function SiPinescript2({ title = "Pine Script", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.785 16.14.124 21.287c-.311.437 0 1.044.536 1.044h22.681c.535 0 .846-.608.536-1.045l-4.2-5.927-1.979 1.161c-.037 1.063-.907 1.913-1.976 1.913-1.092 0-1.977-.887-1.977-1.982 0-.055.003-.11.007-.165l-3.173-2.328c-.341.278-.775.445-1.249.445-.56 0-1.065-.234-1.425-.609l-4.12 2.346Zm7.693-14.194L3.813 12.732c-.222.314-.132.751.197.95l.691.417 2.66-1.515a1.747 1.747 0 0 1-.007-.163c0-1.095.885-1.982 1.977-1.982 1.091 0 1.976.887 1.976 1.982 0 .138-.014.273-.041.403l3.047 2.237c.359-.366.858-.592 1.409-.592.634 0 1.198.299 1.56.764l2.831-1.66c.219-.222.258-.581.068-.849L12.553 1.948c-.262-.371-.812-.373-1.075-.002Z" }) + ] + } + ); +}); + +exports.default = SiPinescript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.d.ts new file mode 100644 index 000000000..17237b6ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B453"; +declare const SiPinescript: IconType; +export { SiPinescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.mjs new file mode 100644 index 000000000..770f82e12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinescript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B453"; +const SiPinescript = React.forwardRef(function SiPinescript2({ title = "Pine Script", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.785 16.14.124 21.287c-.311.437 0 1.044.536 1.044h22.681c.535 0 .846-.608.536-1.045l-4.2-5.927-1.979 1.161c-.037 1.063-.907 1.913-1.976 1.913-1.092 0-1.977-.887-1.977-1.982 0-.055.003-.11.007-.165l-3.173-2.328c-.341.278-.775.445-1.249.445-.56 0-1.065-.234-1.425-.609l-4.12 2.346Zm7.693-14.194L3.813 12.732c-.222.314-.132.751.197.95l.691.417 2.66-1.515a1.747 1.747 0 0 1-.007-.163c0-1.095.885-1.982 1.977-1.982 1.091 0 1.976.887 1.976 1.982 0 .138-.014.273-.041.403l3.047 2.237c.359-.366.858-.592 1.409-.592.634 0 1.198.299 1.56.764l2.831-1.66c.219-.222.258-.581.068-.849L12.553 1.948c-.262-.371-.812-.373-1.075-.002Z" }) + ] + } + ); +}); + +export { SiPinescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.cjs new file mode 100644 index 000000000..6dd424196 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4AF47"; +const SiPinetwork = React__namespace.forwardRef(function SiPinetwork2({ title = "Pi Network", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .002c-6.628 0-12 5.371-12 12 0 6.628 5.372 11.996 12 11.996s12-5.371 12-12C24 5.37 18.624.002 12 .002zm0 1.719c5.679 0 10.281 4.602 10.281 10.281S17.68 22.283 12 22.283 1.719 17.681 1.719 12.002 6.32 1.721 12 1.721zM9.102 5.943c-.123 0-.227.1-.227.227v1.139c0 .122.1.226.227.226h1.56a.225.225 0 0 0 .227-.226v-1.14c0-.121-.1-.226-.227-.226h-1.56zm3.685 0c-.122 0-.226.1-.226.227v1.139c0 .122.1.226.226.226h1.559a.228.228 0 0 0 .226-.226v-1.14c0-.121-.1-.226-.226-.226h-1.559zm3.219 1.407v1.19H7.352c-1.895.026-1.975 2.042-1.975 2.042v1.461H7.43l.008-1.447h1.398v7.574c-.005.457.451.285.451.285l1.461-.516c.23-.099.186-.308.186-.308v-7.022h1.591v7.641c.014.357.366.213.366.213l1.591-.565c.14-.076.118-.195.118-.195l-.022-7.062 1.527-.04c1.909-.027 1.963-2.103 1.963-2.103V7.35h-2.062" }) + ] + } + ); +}); + +exports.default = SiPinetwork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.d.ts new file mode 100644 index 000000000..7b81c36ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4AF47"; +declare const SiPinetwork: IconType; +export { SiPinetwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.mjs new file mode 100644 index 000000000..0892eae6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinetwork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4AF47"; +const SiPinetwork = React.forwardRef(function SiPinetwork2({ title = "Pi Network", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .002c-6.628 0-12 5.371-12 12 0 6.628 5.372 11.996 12 11.996s12-5.371 12-12C24 5.37 18.624.002 12 .002zm0 1.719c5.679 0 10.281 4.602 10.281 10.281S17.68 22.283 12 22.283 1.719 17.681 1.719 12.002 6.32 1.721 12 1.721zM9.102 5.943c-.123 0-.227.1-.227.227v1.139c0 .122.1.226.227.226h1.56a.225.225 0 0 0 .227-.226v-1.14c0-.121-.1-.226-.227-.226h-1.56zm3.685 0c-.122 0-.226.1-.226.227v1.139c0 .122.1.226.226.226h1.559a.228.228 0 0 0 .226-.226v-1.14c0-.121-.1-.226-.226-.226h-1.559zm3.219 1.407v1.19H7.352c-1.895.026-1.975 2.042-1.975 2.042v1.461H7.43l.008-1.447h1.398v7.574c-.005.457.451.285.451.285l1.461-.516c.23-.099.186-.308.186-.308v-7.022h1.591v7.641c.014.357.366.213.366.213l1.591-.565c.14-.076.118-.195.118-.195l-.022-7.062 1.527-.04c1.909-.027 1.963-2.103 1.963-2.103V7.35h-2.062" }) + ] + } + ); +}); + +export { SiPinetwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.cjs new file mode 100644 index 000000000..7308fd26a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFF000"; +const SiPingdom = React__namespace.forwardRef(function SiPingdom2({ title = "Pingdom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.96 17.804l7.959-3.396-7.049 7.241c-.124-1.315-.432-2.61-.91-3.844v-.001zM24 11.118c-5.101-.236-10.208.414-15.087 1.92 1.024 1.073 1.881 2.292 2.535 3.621 4.042-2.25 9.646-5.123 12.552-5.531v-.015.005zm-12.574.275l.207-.06c1.538-.459 3.049-1.015 4.523-1.656 1.492-.585 2.896-1.38 4.159-2.367 1.345-1.069 2.355-2.499 2.915-4.122.12-.267.211-.549.267-.837-2.024 2.76-10.041 3.048-10.041 3.048l1.89-1.734C9.84 3.684 4.47 5.424 0 8.645c3.03.322 5.877 1.596 8.139 3.634 1.086-.336 2.196-.576 3.286-.879v-.006l.001-.001z" }) + ] + } + ); +}); + +exports.default = SiPingdom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.d.ts new file mode 100644 index 000000000..0db25e66b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFF000"; +declare const SiPingdom: IconType; +export { SiPingdom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.mjs new file mode 100644 index 000000000..af8476776 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPingdom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFF000"; +const SiPingdom = React.forwardRef(function SiPingdom2({ title = "Pingdom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.96 17.804l7.959-3.396-7.049 7.241c-.124-1.315-.432-2.61-.91-3.844v-.001zM24 11.118c-5.101-.236-10.208.414-15.087 1.92 1.024 1.073 1.881 2.292 2.535 3.621 4.042-2.25 9.646-5.123 12.552-5.531v-.015.005zm-12.574.275l.207-.06c1.538-.459 3.049-1.015 4.523-1.656 1.492-.585 2.896-1.38 4.159-2.367 1.345-1.069 2.355-2.499 2.915-4.122.12-.267.211-.549.267-.837-2.024 2.76-10.041 3.048-10.041 3.048l1.89-1.734C9.84 3.684 4.47 5.424 0 8.645c3.03.322 5.877 1.596 8.139 3.634 1.086-.336 2.196-.576 3.286-.879v-.006l.001-.001z" }) + ] + } + ); +}); + +export { SiPingdom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.cjs new file mode 100644 index 000000000..7b7b4fd12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD859"; +const SiPinia = React__namespace.forwardRef(function SiPinia2({ title = "Pinia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.277.002c-.079-.01-.193.024-.31.09a2.346 2.346 0 0 0-.415.311c-.301.274-.65.68-.985 1.176-.672.99-1.31 2.356-1.485 3.785-.12.977-.154 1.849-.074 2.578a5.878 5.878 0 0 1 1.956-.338c.922 0 1.804.218 2.618.613.197-.637.34-1.395.445-2.246.175-1.429-.1-2.907-.499-4.028a6.695 6.695 0 0 0-.653-1.378 2.296 2.296 0 0 0-.321-.401c-.097-.092-.199-.153-.277-.162zm-6.81 2.965a.603.603 0 0 0-.288.117l-.013.011a.863.863 0 0 0-.177.327c-.051.15-.094.344-.126.565a8.205 8.205 0 0 0-.044 1.637c.08 1.222.397 2.665 1.079 3.769.093.15.193.296.294.442.726-.776 1.567-1.385 2.488-1.768-.1-.79-.06-1.714.066-2.744.038-.31.1-.616.176-.916a6.45 6.45 0 0 0-1.692-1.08 4.575 4.575 0 0 0-1.29-.366 1.805 1.805 0 0 0-.474.006zm11.751 1.789c-.21.003-.442.022-.687.06a5.974 5.974 0 0 0-2.132.76c-.009.146-.019.291-.036.437-.11.888-.258 1.684-.475 2.364.848.468 1.614 1.13 2.267 1.94.823-.85 1.43-2.05 1.787-3.13.187-.57.304-1.1.35-1.514.022-.207.027-.38.017-.51-.01-.133-.042-.206-.04-.202a.35.35 0 0 0-.114-.072 1.516 1.516 0 0 0-.375-.1 3.42 3.42 0 0 0-.562-.033zm-6.254 3.139c-2.014 0-3.83 1.087-5.147 2.834-1.316 1.748-2.131 4.16-2.131 6.807 0 2.65.806 4.258 2.131 5.218C8.132 23.707 9.96 24 11.964 24c2.004 0 3.831-.293 5.147-1.246 1.326-.96 2.133-2.568 2.133-5.218 0-2.647-.816-5.059-2.133-6.806-1.317-1.748-3.134-2.835-5.147-2.835Zm-3.297 5.209a1.282 1.282 0 0 1 .292 2.518c.115.094.177.201.164.307-.032.265-.521.424-1.09.354-.571-.07-1.007-.342-.974-.607.024-.198.302-.336.678-.364a1.282 1.282 0 0 1 .93-2.208zm6.284.22a1.282 1.282 0 0 1 .726 2.303c.437.058.757.244.757.466 0 .267-.466.483-1.04.483-.574 0-1.04-.216-1.04-.483 0-.098.063-.189.17-.265a1.282 1.282 0 0 1 .427-2.505zm-6.318.215a.822.822 0 1 0 .028 1.645.822.822 0 0 0-.028-1.645zm6.284.22a.822.822 0 1 0 .027 1.644.822.822 0 0 0-.027-1.644zm-6.543.109a.338.338 0 1 1-.023.677.338.338 0 0 1 .023-.677zm6.284.22a.339.339 0 1 1-.018 0h.018zm-3.91 1.179c.17.252.432.404.808.447.372.043.694-.05.976-.28a.145.145 0 1 1 .183.226c-.344.28-.745.394-1.192.343-.445-.051-.79-.24-1.016-.574a.145.145 0 1 1 .24-.162z" }) + ] + } + ); +}); + +exports.default = SiPinia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.d.ts new file mode 100644 index 000000000..edd617d60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD859"; +declare const SiPinia: IconType; +export { SiPinia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.mjs new file mode 100644 index 000000000..c76b2fd62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD859"; +const SiPinia = React.forwardRef(function SiPinia2({ title = "Pinia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.277.002c-.079-.01-.193.024-.31.09a2.346 2.346 0 0 0-.415.311c-.301.274-.65.68-.985 1.176-.672.99-1.31 2.356-1.485 3.785-.12.977-.154 1.849-.074 2.578a5.878 5.878 0 0 1 1.956-.338c.922 0 1.804.218 2.618.613.197-.637.34-1.395.445-2.246.175-1.429-.1-2.907-.499-4.028a6.695 6.695 0 0 0-.653-1.378 2.296 2.296 0 0 0-.321-.401c-.097-.092-.199-.153-.277-.162zm-6.81 2.965a.603.603 0 0 0-.288.117l-.013.011a.863.863 0 0 0-.177.327c-.051.15-.094.344-.126.565a8.205 8.205 0 0 0-.044 1.637c.08 1.222.397 2.665 1.079 3.769.093.15.193.296.294.442.726-.776 1.567-1.385 2.488-1.768-.1-.79-.06-1.714.066-2.744.038-.31.1-.616.176-.916a6.45 6.45 0 0 0-1.692-1.08 4.575 4.575 0 0 0-1.29-.366 1.805 1.805 0 0 0-.474.006zm11.751 1.789c-.21.003-.442.022-.687.06a5.974 5.974 0 0 0-2.132.76c-.009.146-.019.291-.036.437-.11.888-.258 1.684-.475 2.364.848.468 1.614 1.13 2.267 1.94.823-.85 1.43-2.05 1.787-3.13.187-.57.304-1.1.35-1.514.022-.207.027-.38.017-.51-.01-.133-.042-.206-.04-.202a.35.35 0 0 0-.114-.072 1.516 1.516 0 0 0-.375-.1 3.42 3.42 0 0 0-.562-.033zm-6.254 3.139c-2.014 0-3.83 1.087-5.147 2.834-1.316 1.748-2.131 4.16-2.131 6.807 0 2.65.806 4.258 2.131 5.218C8.132 23.707 9.96 24 11.964 24c2.004 0 3.831-.293 5.147-1.246 1.326-.96 2.133-2.568 2.133-5.218 0-2.647-.816-5.059-2.133-6.806-1.317-1.748-3.134-2.835-5.147-2.835Zm-3.297 5.209a1.282 1.282 0 0 1 .292 2.518c.115.094.177.201.164.307-.032.265-.521.424-1.09.354-.571-.07-1.007-.342-.974-.607.024-.198.302-.336.678-.364a1.282 1.282 0 0 1 .93-2.208zm6.284.22a1.282 1.282 0 0 1 .726 2.303c.437.058.757.244.757.466 0 .267-.466.483-1.04.483-.574 0-1.04-.216-1.04-.483 0-.098.063-.189.17-.265a1.282 1.282 0 0 1 .427-2.505zm-6.318.215a.822.822 0 1 0 .028 1.645.822.822 0 0 0-.028-1.645zm6.284.22a.822.822 0 1 0 .027 1.644.822.822 0 0 0-.027-1.644zm-6.543.109a.338.338 0 1 1-.023.677.338.338 0 0 1 .023-.677zm6.284.22a.339.339 0 1 1-.018 0h.018zm-3.91 1.179c.17.252.432.404.808.447.372.043.694-.05.976-.28a.145.145 0 1 1 .183.226c-.344.28-.745.394-1.192.343-.445-.051-.79-.24-1.016-.574a.145.145 0 1 1 .24-.162z" }) + ] + } + ); +}); + +export { SiPinia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPino.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPino.cjs new file mode 100644 index 000000000..c160fa4e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPino.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#687634"; +const SiPino = React__namespace.forwardRef(function SiPino2({ title = "pino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.225 5.555 2.789 5.472 2.756-5.505L11.999 0M1.979 20.123h13.769v-.037L8.862 6.29m3.524 5.522 4.131 8.311h5.505L15.137 6.291M4.5 24h14.87l-1.554-3.188H6.056" }) + ] + } + ); +}); + +exports.default = SiPino; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPino.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPino.d.ts new file mode 100644 index 000000000..c8bb4aa8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPino.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#687634"; +declare const SiPino: IconType; +export { SiPino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPino.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPino.mjs new file mode 100644 index 000000000..e1f3d0b43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPino.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#687634"; +const SiPino = React.forwardRef(function SiPino2({ title = "pino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.225 5.555 2.789 5.472 2.756-5.505L11.999 0M1.979 20.123h13.769v-.037L8.862 6.29m3.524 5.522 4.131 8.311h5.505L15.137 6.291M4.5 24h14.87l-1.554-3.188H6.056" }) + ] + } + ); +}); + +export { SiPino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.cjs new file mode 100644 index 000000000..9a8c2eeae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BD081C"; +const SiPinterest = React__namespace.forwardRef(function SiPinterest2({ title = "Pinterest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z" }) + ] + } + ); +}); + +exports.default = SiPinterest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.d.ts new file mode 100644 index 000000000..d7050a903 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BD081C"; +declare const SiPinterest: IconType; +export { SiPinterest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.mjs new file mode 100644 index 000000000..8ca0b8948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPinterest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BD081C"; +const SiPinterest = React.forwardRef(function SiPinterest2({ title = "Pinterest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z" }) + ] + } + ); +}); + +export { SiPinterest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.cjs new file mode 100644 index 000000000..1a656a450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1928"; +const SiPioneerdj = React__namespace.forwardRef(function SiPioneerdj2({ title = "Pioneer DJ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.46 5.569c1.474 1.144 1.715 2.695 1.107 4.319-.565 1.503-1.833 2.96-3.827 4.087-2.21 1.227-4.498 1.554-6.993 1.554H0L4.212 4.308h5.051c2.548 0 4.7.1 6.197 1.26zm-3.112 4.235c.33-.884.246-2.202-.34-2.906-.658-.782-1.673-.873-3.138-.873l-.716.016s-.616-.07-.866.49c-.153.35.064-.263-2.412 6.341-.326.876.452.919.452.919s2.794.17 5.132-1.448c.991-.685 1.577-1.705 1.888-2.539zm5.938-1.467L24 8.366l-2.892 7.731c-.944 2.518-2.896 3.595-6.812 3.595l-3.058-.04.731-1.746c4.427.21 5.225-1.76 5.365-2.139l1.846-4.966s.317-.884-.402-.884h-1.132Z" }) + ] + } + ); +}); + +exports.default = SiPioneerdj; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.d.ts new file mode 100644 index 000000000..e2edeadf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1928"; +declare const SiPioneerdj: IconType; +export { SiPioneerdj as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.mjs new file mode 100644 index 000000000..e97250e6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPioneerdj.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1928"; +const SiPioneerdj = React.forwardRef(function SiPioneerdj2({ title = "Pioneer DJ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.46 5.569c1.474 1.144 1.715 2.695 1.107 4.319-.565 1.503-1.833 2.96-3.827 4.087-2.21 1.227-4.498 1.554-6.993 1.554H0L4.212 4.308h5.051c2.548 0 4.7.1 6.197 1.26zm-3.112 4.235c.33-.884.246-2.202-.34-2.906-.658-.782-1.673-.873-3.138-.873l-.716.016s-.616-.07-.866.49c-.153.35.064-.263-2.412 6.341-.326.876.452.919.452.919s2.794.17 5.132-1.448c.991-.685 1.577-1.705 1.888-2.539zm5.938-1.467L24 8.366l-2.892 7.731c-.944 2.518-2.896 3.595-6.812 3.595l-3.058-.04.731-1.746c4.427.21 5.225-1.76 5.365-2.139l1.846-4.966s.317-.884-.402-.884h-1.132Z" }) + ] + } + ); +}); + +export { SiPioneerdj as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.cjs new file mode 100644 index 000000000..8a3aa2270 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPipecat = React__namespace.forwardRef(function SiPipecat2({ title = "Pipecat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.309 5.116a.87.87 0 0 1 .958.24L7.369 8.89h9.262l3.102-3.536a.867.867 0 0 1 1.52.573v7.807H24v1.735h-4.482V8.232l-1.842 2.099a.87.87 0 0 1-.652.295H6.976a.87.87 0 0 1-.652-.295l-1.842-2.1v7.239H0v-1.735h2.747V5.928c0-.362.224-.685.562-.812m16.209 12.089H24v1.735h-4.482zM0 17.205h4.482v1.735H0zm9.253-2.892a1.157 1.157 0 1 1-2.314 0 1.157 1.157 0 0 1 2.314 0m7.807 0a1.157 1.157 0 1 1-2.313 0 1.157 1.157 0 0 1 2.313 0" }) + ] + } + ); +}); + +exports.default = SiPipecat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.d.ts new file mode 100644 index 000000000..9f501a41c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPipecat: IconType; +export { SiPipecat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.mjs new file mode 100644 index 000000000..a5672ace3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPipecat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPipecat = React.forwardRef(function SiPipecat2({ title = "Pipecat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.309 5.116a.87.87 0 0 1 .958.24L7.369 8.89h9.262l3.102-3.536a.867.867 0 0 1 1.52.573v7.807H24v1.735h-4.482V8.232l-1.842 2.099a.87.87 0 0 1-.652.295H6.976a.87.87 0 0 1-.652-.295l-1.842-2.1v7.239H0v-1.735h2.747V5.928c0-.362.224-.685.562-.812m16.209 12.089H24v1.735h-4.482zM0 17.205h4.482v1.735H0zm9.253-2.892a1.157 1.157 0 1 1-2.314 0 1.157 1.157 0 0 1 2.314 0m7.807 0a1.157 1.157 0 1 1-2.313 0 1.157 1.157 0 0 1 2.313 0" }) + ] + } + ); +}); + +export { SiPipecat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.cjs new file mode 100644 index 000000000..cbea4769f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F84330"; +const SiPiped = React__namespace.forwardRef(function SiPiped2({ title = "Piped", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.947 22.915c0 .6-1.207 1.085-2.7 1.085-1.492 0-2.698-.485-2.698-1.085s1.206-1.086 2.699-1.086c1.492 0 2.699.485 2.699 1.086zm-.018-.906V.789S9.593.58 9.06.33A7.333 7.333 0 0 0 8.1.07 8.257 8.257 0 0 0 6.986 0a8.07 8.07 0 0 0-1.043.144 6.31 6.31 0 0 0-.786.272A5.819 5.819 0 0 0 4.56.79v21.223c.609-.462 1.668-.684 2.687-.684 1.015 0 2.072.22 2.68.68zm1.906-17.195c.66 0 1.192-1 1.192-2.237S12.494.34 11.835.34c-.66 0-1.192 1-1.192 2.237s.533 2.237 1.192 2.237zm.045 4.488c-.66 0-1.192 1.102-1.192 2.464 0 1.363.533 2.465 1.192 2.465.66 0 1.192-1.102 1.192-2.465 0-1.362-.532-2.464-1.192-2.464zm7.556-2.16a12.19 12.19 0 0 0-.142-1.026 12.28 12.28 0 0 0-.27-.994 12.027 12.027 0 0 0-.388-.939c-.151-.293-.315-.58-.492-.859a10.837 10.837 0 0 0-.578-.76 10.181 10.181 0 0 0-.647-.65 9.626 9.626 0 0 0-1.412-.941 9.61 9.61 0 0 0-1.412-.492 10.987 10.987 0 0 0-.65-.102 6.299 6.299 0 0 0-.626-.053c.433.486.708 1.294.708 2.25 0 1-.3 1.836-.767 2.313.224.041.575.163.708.212.215.096.432.211.641.344.356.258.543.471.73.77.263.474.31.856.247 1.287-.135.651-.495 1.035-.937 1.33a4.3 4.3 0 0 1-.623.297c-.087.026-.438.13-.694.158.453.521.74 1.418.74 2.48 0 1.042-.278 1.923-.716 2.448.114-.002.22-.003.35-.007.414-.037.9-.107 1.395-.207.314-.085.862-.25 1.531-.55a8.856 8.856 0 0 0 1.422-.996c.213-.214.415-.438.605-.673a8.95 8.95 0 0 0 .504-.782c.145-.285.275-.577.39-.876.102-.308.19-.626.262-.951.058-.33.1-.664.129-1.003.02-.343-.001-.686-.008-1.028z" }) + ] + } + ); +}); + +exports.default = SiPiped; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.d.ts new file mode 100644 index 000000000..b948900cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F84330"; +declare const SiPiped: IconType; +export { SiPiped as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.mjs new file mode 100644 index 000000000..b1426728c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiped.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F84330"; +const SiPiped = React.forwardRef(function SiPiped2({ title = "Piped", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.947 22.915c0 .6-1.207 1.085-2.7 1.085-1.492 0-2.698-.485-2.698-1.085s1.206-1.086 2.699-1.086c1.492 0 2.699.485 2.699 1.086zm-.018-.906V.789S9.593.58 9.06.33A7.333 7.333 0 0 0 8.1.07 8.257 8.257 0 0 0 6.986 0a8.07 8.07 0 0 0-1.043.144 6.31 6.31 0 0 0-.786.272A5.819 5.819 0 0 0 4.56.79v21.223c.609-.462 1.668-.684 2.687-.684 1.015 0 2.072.22 2.68.68zm1.906-17.195c.66 0 1.192-1 1.192-2.237S12.494.34 11.835.34c-.66 0-1.192 1-1.192 2.237s.533 2.237 1.192 2.237zm.045 4.488c-.66 0-1.192 1.102-1.192 2.464 0 1.363.533 2.465 1.192 2.465.66 0 1.192-1.102 1.192-2.465 0-1.362-.532-2.464-1.192-2.464zm7.556-2.16a12.19 12.19 0 0 0-.142-1.026 12.28 12.28 0 0 0-.27-.994 12.027 12.027 0 0 0-.388-.939c-.151-.293-.315-.58-.492-.859a10.837 10.837 0 0 0-.578-.76 10.181 10.181 0 0 0-.647-.65 9.626 9.626 0 0 0-1.412-.941 9.61 9.61 0 0 0-1.412-.492 10.987 10.987 0 0 0-.65-.102 6.299 6.299 0 0 0-.626-.053c.433.486.708 1.294.708 2.25 0 1-.3 1.836-.767 2.313.224.041.575.163.708.212.215.096.432.211.641.344.356.258.543.471.73.77.263.474.31.856.247 1.287-.135.651-.495 1.035-.937 1.33a4.3 4.3 0 0 1-.623.297c-.087.026-.438.13-.694.158.453.521.74 1.418.74 2.48 0 1.042-.278 1.923-.716 2.448.114-.002.22-.003.35-.007.414-.037.9-.107 1.395-.207.314-.085.862-.25 1.531-.55a8.856 8.856 0 0 0 1.422-.996c.213-.214.415-.438.605-.673a8.95 8.95 0 0 0 .504-.782c.145-.285.275-.577.39-.876.102-.308.19-.626.262-.951.058-.33.1-.664.129-1.003.02-.343-.001-.686-.008-1.028z" }) + ] + } + ); +}); + +export { SiPiped as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.cjs new file mode 100644 index 000000000..575fd6f99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2CFFAA"; +const SiPipx = React__namespace.forwardRef(function SiPipx2({ title = "pipx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.801 0c-.005-.001-.011.004-.02.017a34.051 34.051 0 0 0-1.451 2.245l.231-.662a.034.034 0 0 0-.058-.033l-.52.648a.104.104 0 0 0-.042.004l.353-.727a.037.037 0 0 0-.061-.04l-1.073 1.23c-.053.016-.076.014-.07-.007.313-.871.874-1.732 1.345-2.53a.05.05 0 0 0 .008-.028c0-.01-.002-.02-.005-.027-.013-.027-.029-.029-.047-.005-.143.192-.422.71-.602.817a.031.031 0 0 1-.047-.025c0-.005 0-.01.003-.013l.123-.281a.024.024 0 0 0-.025-.034.025.025 0 0 0-.017.009c-.417.53-.75 1.137-1.099 1.714-.225.373-.637.983-.902 1.515L11.13 8.52l-.934 1.756C9.44 9.075 8.838 7.75 8.15 6.503c-.15-.273-.353-.59-.518-.89a.025.025 0 0 0-.024-.014H7.59a.016.016 0 0 0-.015.021l.154.409a.057.057 0 0 1-.008.053l-.082.107a.077.077 0 0 0-.013.07l.15.505c.022.073.014.077-.024.01-.295-.515-.566-1.099-.845-1.646-.008-.017-.018-.018-.03-.004-.009.011-.01.023-.003.037.211.43.38.816.504 1.16.003.006 0 .01-.007.01h-.019a.012.012 0 0 1-.01-.007l-.387-.746a.037.037 0 0 0-.07.015.207.207 0 0 0 .07.174c.01.008.007.024-.005.027l-.024.008a.035.035 0 0 1-.041-.015l-.261-.432a.044.044 0 0 0-.076.002.043.043 0 0 0-.003.032l.46 1.592c.005.017-.001.025-.019.025-.019 0-.035-.015-.048-.042l-.47-1.017a.027.027 0 0 0-.051.017c.06.335.166.55.177.975.004.132.087.377.248.735.047.106.061.23.106.337a.009.009 0 0 1-.016.008c-.302-.554-.496-1.088-.902-1.61a.034.034 0 0 0-.06.031c.065.203.096.38.192.592.125.277.103.564.206.814.05.122.106.242.168.36a125.973 125.973 0 0 0 2.19 4.587c.02.039.015.095.016.137l-.34.53-1.024 1.834-.86 1.58-.339.614a.024.024 0 0 0 .035.032l.176-.118c.037-.026.05-.017.035.027a3.048 3.048 0 0 1-.295.659c-.018.029-.01.04.024.033l.173-.035c.003.155-.192.464-.257.64-.01.024.01.05.037.046a.036.036 0 0 0 .024-.015l.482-.714c.121.169-.044.328-.094.486a.044.044 0 0 0 .072.044l.322-.31c.026-.024.046-.02.058.014l.018.05a.045.045 0 0 0 .082.01l.194-.31a.034.034 0 0 1 .06.028l-.306.876a.031.031 0 0 0 .054.031l.906-1.054a4.227 4.227 0 0 1-.462.956.037.037 0 0 0-.007.022.05.05 0 0 0 .007.024c.013.022.027.023.043.001.246-.345.481-.698.707-1.057a.296.296 0 0 1 .117-.087l.016.15c.005.053.021.057.048.012.176-.295.396-.556.57-.838.317-.517.675-1.007 1.074-1.47.02-.024.037-.022.05.004l.11.202c.264.588.538 1.185.864 1.768.405.722.911 1.815 1.38 2.683.188.347.377.693.568 1.04.33.6.617 1.26.936 1.888.16.336.348.716.67.792.031.007.041-.004.03-.034l-.687-1.839c.275.221.502.47.682.747.02.032.042.05.065.051a.042.042 0 0 0 .045-.048l-.173-1.104c-.01.027-.01.027 0 0l.11-.156c.093.13.228.224.314.365.227.378.495.72.805 1.024a.05.05 0 0 0 .082-.023.048.048 0 0 0 0-.023c-.174-.731-.567-1.452-.783-2.215-.05-.177-.014-.198.11-.06.227.25.44.512.64.786.309.422.35.397.123-.073a13.823 13.823 0 0 0-.508-.924c-.643-1.281-1.338-2.527-1.997-3.8-.573-1.108-1.197-2.192-1.73-3.305a.184.184 0 0 1-.019-.065l-.006-.059c.116-.12.236-.283.358-.488.119-.199.381-.586.786-1.162.107-.152.313-.39.457-.63.098-.165.295-.439.589-.821 1.077-1.402 2.239-2.795 3.184-4.227a.022.022 0 1 0-.036-.026l-.427.52a.043.043 0 0 1-.077-.024l-.008-.13c-.003-.052-.021-.058-.055-.019l-.497.582h-.033c.008-.035.002-.072.02-.105.328-.605.672-1.206 1.032-1.8a.044.044 0 0 0-.07-.054c-.093.099-.182.21-.269.335-.058.083-.106.1-.144.05l.573-1.097a.024.024 0 0 0-.04-.025l-1.1 1.567-.672.938c-.013.018-.029.02-.047.01-.019-.011-.022-.027-.01-.049.317-.538.52-.892.609-1.062.238-.349.454-.723.647-1.124.117-.244.33-.514.429-.813a.03.03 0 0 0-.05-.027l-.604.773.392-.78c.245-.457.513-.924.804-1.4.204-.333.358-.658.518-1 .002-.004.001-.007-.001-.01a.226.226 0 0 1-.015-.014c-.012-.013-.022-.012-.03.003a24.15 24.15 0 0 1-1.123 1.598.862.862 0 0 0-.14.27c-.006.022-.017.024-.031.006a.078.078 0 0 0-.014-.014c-.02-.016-.023-.036-.012-.059.16-.319.298-.647.415-.984a.306.306 0 0 0 .021-.072c-.01-.079-.043-.089-.097-.029l-.448.491c-.026.036-.029.021-.009-.044a.124.124 0 0 1 .02-.04c.229-.335.416-.755.588-1.05.221-.376.436-.755.646-1.138a.078.078 0 0 0 .01-.045C17.81.009 17.806 0 17.801 0Z" }) + ] + } + ); +}); + +exports.default = SiPipx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.d.ts new file mode 100644 index 000000000..fa4c8c1b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2CFFAA"; +declare const SiPipx: IconType; +export { SiPipx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.mjs new file mode 100644 index 000000000..56b03be48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPipx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2CFFAA"; +const SiPipx = React.forwardRef(function SiPipx2({ title = "pipx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.801 0c-.005-.001-.011.004-.02.017a34.051 34.051 0 0 0-1.451 2.245l.231-.662a.034.034 0 0 0-.058-.033l-.52.648a.104.104 0 0 0-.042.004l.353-.727a.037.037 0 0 0-.061-.04l-1.073 1.23c-.053.016-.076.014-.07-.007.313-.871.874-1.732 1.345-2.53a.05.05 0 0 0 .008-.028c0-.01-.002-.02-.005-.027-.013-.027-.029-.029-.047-.005-.143.192-.422.71-.602.817a.031.031 0 0 1-.047-.025c0-.005 0-.01.003-.013l.123-.281a.024.024 0 0 0-.025-.034.025.025 0 0 0-.017.009c-.417.53-.75 1.137-1.099 1.714-.225.373-.637.983-.902 1.515L11.13 8.52l-.934 1.756C9.44 9.075 8.838 7.75 8.15 6.503c-.15-.273-.353-.59-.518-.89a.025.025 0 0 0-.024-.014H7.59a.016.016 0 0 0-.015.021l.154.409a.057.057 0 0 1-.008.053l-.082.107a.077.077 0 0 0-.013.07l.15.505c.022.073.014.077-.024.01-.295-.515-.566-1.099-.845-1.646-.008-.017-.018-.018-.03-.004-.009.011-.01.023-.003.037.211.43.38.816.504 1.16.003.006 0 .01-.007.01h-.019a.012.012 0 0 1-.01-.007l-.387-.746a.037.037 0 0 0-.07.015.207.207 0 0 0 .07.174c.01.008.007.024-.005.027l-.024.008a.035.035 0 0 1-.041-.015l-.261-.432a.044.044 0 0 0-.076.002.043.043 0 0 0-.003.032l.46 1.592c.005.017-.001.025-.019.025-.019 0-.035-.015-.048-.042l-.47-1.017a.027.027 0 0 0-.051.017c.06.335.166.55.177.975.004.132.087.377.248.735.047.106.061.23.106.337a.009.009 0 0 1-.016.008c-.302-.554-.496-1.088-.902-1.61a.034.034 0 0 0-.06.031c.065.203.096.38.192.592.125.277.103.564.206.814.05.122.106.242.168.36a125.973 125.973 0 0 0 2.19 4.587c.02.039.015.095.016.137l-.34.53-1.024 1.834-.86 1.58-.339.614a.024.024 0 0 0 .035.032l.176-.118c.037-.026.05-.017.035.027a3.048 3.048 0 0 1-.295.659c-.018.029-.01.04.024.033l.173-.035c.003.155-.192.464-.257.64-.01.024.01.05.037.046a.036.036 0 0 0 .024-.015l.482-.714c.121.169-.044.328-.094.486a.044.044 0 0 0 .072.044l.322-.31c.026-.024.046-.02.058.014l.018.05a.045.045 0 0 0 .082.01l.194-.31a.034.034 0 0 1 .06.028l-.306.876a.031.031 0 0 0 .054.031l.906-1.054a4.227 4.227 0 0 1-.462.956.037.037 0 0 0-.007.022.05.05 0 0 0 .007.024c.013.022.027.023.043.001.246-.345.481-.698.707-1.057a.296.296 0 0 1 .117-.087l.016.15c.005.053.021.057.048.012.176-.295.396-.556.57-.838.317-.517.675-1.007 1.074-1.47.02-.024.037-.022.05.004l.11.202c.264.588.538 1.185.864 1.768.405.722.911 1.815 1.38 2.683.188.347.377.693.568 1.04.33.6.617 1.26.936 1.888.16.336.348.716.67.792.031.007.041-.004.03-.034l-.687-1.839c.275.221.502.47.682.747.02.032.042.05.065.051a.042.042 0 0 0 .045-.048l-.173-1.104c-.01.027-.01.027 0 0l.11-.156c.093.13.228.224.314.365.227.378.495.72.805 1.024a.05.05 0 0 0 .082-.023.048.048 0 0 0 0-.023c-.174-.731-.567-1.452-.783-2.215-.05-.177-.014-.198.11-.06.227.25.44.512.64.786.309.422.35.397.123-.073a13.823 13.823 0 0 0-.508-.924c-.643-1.281-1.338-2.527-1.997-3.8-.573-1.108-1.197-2.192-1.73-3.305a.184.184 0 0 1-.019-.065l-.006-.059c.116-.12.236-.283.358-.488.119-.199.381-.586.786-1.162.107-.152.313-.39.457-.63.098-.165.295-.439.589-.821 1.077-1.402 2.239-2.795 3.184-4.227a.022.022 0 1 0-.036-.026l-.427.52a.043.043 0 0 1-.077-.024l-.008-.13c-.003-.052-.021-.058-.055-.019l-.497.582h-.033c.008-.035.002-.072.02-.105.328-.605.672-1.206 1.032-1.8a.044.044 0 0 0-.07-.054c-.093.099-.182.21-.269.335-.058.083-.106.1-.144.05l.573-1.097a.024.024 0 0 0-.04-.025l-1.1 1.567-.672.938c-.013.018-.029.02-.047.01-.019-.011-.022-.027-.01-.049.317-.538.52-.892.609-1.062.238-.349.454-.723.647-1.124.117-.244.33-.514.429-.813a.03.03 0 0 0-.05-.027l-.604.773.392-.78c.245-.457.513-.924.804-1.4.204-.333.358-.658.518-1 .002-.004.001-.007-.001-.01a.226.226 0 0 1-.015-.014c-.012-.013-.022-.012-.03.003a24.15 24.15 0 0 1-1.123 1.598.862.862 0 0 0-.14.27c-.006.022-.017.024-.031.006a.078.078 0 0 0-.014-.014c-.02-.016-.023-.036-.012-.059.16-.319.298-.647.415-.984a.306.306 0 0 0 .021-.072c-.01-.079-.043-.089-.097-.029l-.448.491c-.026.036-.029.021-.009-.044a.124.124 0 0 1 .02-.04c.229-.335.416-.755.588-1.05.221-.376.436-.755.646-1.138a.078.078 0 0 0 .01-.045C17.81.009 17.806 0 17.801 0Z" }) + ] + } + ); +}); + +export { SiPipx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.cjs new file mode 100644 index 000000000..57f5df297 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#517A9E"; +const SiPivotaltracker = React__namespace.forwardRef(function SiPivotaltracker2({ title = "Pivotal Tracker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002 0c-6.617 0-12 5.382-12 11.998 0 6.618 5.384 12.002 12 12.002S24 18.616 24 11.998C24 5.382 18.619 0 12.002 0zm0 2.43a9.568 9.568 0 0 1 9.568 9.568c0 5.286-4.283 9.572-9.568 9.572-5.285 0-9.57-4.286-9.57-9.572 0-5.285 4.285-9.568 9.57-9.568zm-.135 1.31L8.822 5.498V5.5l2.68 4.64c.425-.113.888-.08 1.31.118l1.41-2.442-2.355-4.076zm4.17 2.256l-2.68 4.643c.325.324.52.749.557 1.195h2.816l2.356-4.076-3.049-1.762zM4.781 7.984v3.55h.002v-.03h5.36a1.904 1.904 0 0 1 .756-1.08L9.49 7.984H4.781zm2.487 4.182L4.912 16.24l3.049 1.762 2.682-4.645a1.929 1.929 0 0 1-.557-1.191H7.268zm6.59.33a1.904 1.904 0 0 1-.756 1.078l1.41 2.442h4.707v-3.52h-5.362zm-2.67 1.244l-1.41 2.442 2.353 4.076 3.049-1.76-2.68-4.64c-.425.114-.89.08-1.313-.118z" }) + ] + } + ); +}); + +exports.default = SiPivotaltracker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.d.ts new file mode 100644 index 000000000..3148bf79f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#517A9E"; +declare const SiPivotaltracker: IconType; +export { SiPivotaltracker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.mjs new file mode 100644 index 000000000..36245df4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPivotaltracker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#517A9E"; +const SiPivotaltracker = React.forwardRef(function SiPivotaltracker2({ title = "Pivotal Tracker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002 0c-6.617 0-12 5.382-12 11.998 0 6.618 5.384 12.002 12 12.002S24 18.616 24 11.998C24 5.382 18.619 0 12.002 0zm0 2.43a9.568 9.568 0 0 1 9.568 9.568c0 5.286-4.283 9.572-9.568 9.572-5.285 0-9.57-4.286-9.57-9.572 0-5.285 4.285-9.568 9.57-9.568zm-.135 1.31L8.822 5.498V5.5l2.68 4.64c.425-.113.888-.08 1.31.118l1.41-2.442-2.355-4.076zm4.17 2.256l-2.68 4.643c.325.324.52.749.557 1.195h2.816l2.356-4.076-3.049-1.762zM4.781 7.984v3.55h.002v-.03h5.36a1.904 1.904 0 0 1 .756-1.08L9.49 7.984H4.781zm2.487 4.182L4.912 16.24l3.049 1.762 2.682-4.645a1.929 1.929 0 0 1-.557-1.191H7.268zm6.59.33a1.904 1.904 0 0 1-.756 1.078l1.41 2.442h4.707v-3.52h-5.362zm-2.67 1.244l-1.41 2.442 2.353 4.076 3.049-1.76-2.68-4.64c-.425.114-.89.08-1.313-.118z" }) + ] + } + ); +}); + +export { SiPivotaltracker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.cjs new file mode 100644 index 000000000..3a8c6bcb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7700"; +const SiPiwigo = React__namespace.forwardRef(function SiPiwigo2({ title = "Piwigo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.712 12.777A4.713 4.713 0 0 1 12 17.49a4.713 4.713 0 0 1-4.713-4.713A4.713 4.713 0 0 1 12 8.066a4.713 4.713 0 0 1 4.712 4.711zm2.4-12.776c-2.572.058-2.358 1.544-8.237 1.555h-4.15A5.947 5.947 0 0 0 .777 7.503v10.55A5.947 5.947 0 0 0 6.725 24h10.55a5.947 5.947 0 0 0 5.948-5.947V4.081l-.008-.018c0-.014.004-.028.004-.043 0-2.227-1.88-4.02-4.108-4.02zm.09 2.545a1.409 1.409 0 0 1 1.407 1.41A1.409 1.409 0 0 1 19.2 5.364a1.409 1.409 0 0 1-1.41-1.408 1.409 1.409 0 0 1 1.41-1.41zM12 6.12a6.656 6.656 0 0 1 6.656 6.655A6.656 6.656 0 0 1 12 19.434a6.656 6.656 0 0 1-6.656-6.657A6.656 6.656 0 0 1 12 6.122z" }) + ] + } + ); +}); + +exports.default = SiPiwigo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.d.ts new file mode 100644 index 000000000..d1da38a53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7700"; +declare const SiPiwigo: IconType; +export { SiPiwigo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.mjs new file mode 100644 index 000000000..bd8ef562e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPiwigo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7700"; +const SiPiwigo = React.forwardRef(function SiPiwigo2({ title = "Piwigo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.712 12.777A4.713 4.713 0 0 1 12 17.49a4.713 4.713 0 0 1-4.713-4.713A4.713 4.713 0 0 1 12 8.066a4.713 4.713 0 0 1 4.712 4.711zm2.4-12.776c-2.572.058-2.358 1.544-8.237 1.555h-4.15A5.947 5.947 0 0 0 .777 7.503v10.55A5.947 5.947 0 0 0 6.725 24h10.55a5.947 5.947 0 0 0 5.948-5.947V4.081l-.008-.018c0-.014.004-.028.004-.043 0-2.227-1.88-4.02-4.108-4.02zm.09 2.545a1.409 1.409 0 0 1 1.407 1.41A1.409 1.409 0 0 1 19.2 5.364a1.409 1.409 0 0 1-1.41-1.408 1.409 1.409 0 0 1 1.41-1.41zM12 6.12a6.656 6.656 0 0 1 6.656 6.655A6.656 6.656 0 0 1 12 19.434a6.656 6.656 0 0 1-6.656-6.657A6.656 6.656 0 0 1 12 6.122z" }) + ] + } + ); +}); + +export { SiPiwigo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPix.cjs new file mode 100644 index 000000000..15219e3b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#77B6A8"; +const SiPix = React__namespace.forwardRef(function SiPix2({ title = "Pix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.283 18.36a3.505 3.505 0 0 0 2.493-1.032l3.6-3.6a.684.684 0 0 1 .946 0l3.613 3.613a3.504 3.504 0 0 0 2.493 1.032h.71l-4.56 4.56a3.647 3.647 0 0 1-5.156 0L4.85 18.36ZM18.428 5.627a3.505 3.505 0 0 0-2.493 1.032l-3.613 3.614a.67.67 0 0 1-.946 0l-3.6-3.6A3.505 3.505 0 0 0 5.283 5.64h-.434l4.573-4.572a3.646 3.646 0 0 1 5.156 0l4.559 4.559ZM1.068 9.422 3.79 6.699h1.492a2.483 2.483 0 0 1 1.744.722l3.6 3.6a1.73 1.73 0 0 0 2.443 0l3.614-3.613a2.482 2.482 0 0 1 1.744-.723h1.767l2.737 2.737a3.646 3.646 0 0 1 0 5.156l-2.736 2.736h-1.768a2.482 2.482 0 0 1-1.744-.722l-3.613-3.613a1.77 1.77 0 0 0-2.444 0l-3.6 3.6a2.483 2.483 0 0 1-1.744.722H3.791l-2.723-2.723a3.646 3.646 0 0 1 0-5.156" }) + ] + } + ); +}); + +exports.default = SiPix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPix.d.ts new file mode 100644 index 000000000..d55496837 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#77B6A8"; +declare const SiPix: IconType; +export { SiPix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPix.mjs new file mode 100644 index 000000000..3e55f10ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#77B6A8"; +const SiPix = React.forwardRef(function SiPix2({ title = "Pix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.283 18.36a3.505 3.505 0 0 0 2.493-1.032l3.6-3.6a.684.684 0 0 1 .946 0l3.613 3.613a3.504 3.504 0 0 0 2.493 1.032h.71l-4.56 4.56a3.647 3.647 0 0 1-5.156 0L4.85 18.36ZM18.428 5.627a3.505 3.505 0 0 0-2.493 1.032l-3.613 3.614a.67.67 0 0 1-.946 0l-3.6-3.6A3.505 3.505 0 0 0 5.283 5.64h-.434l4.573-4.572a3.646 3.646 0 0 1 5.156 0l4.559 4.559ZM1.068 9.422 3.79 6.699h1.492a2.483 2.483 0 0 1 1.744.722l3.6 3.6a1.73 1.73 0 0 0 2.443 0l3.614-3.613a2.482 2.482 0 0 1 1.744-.723h1.767l2.737 2.737a3.646 3.646 0 0 1 0 5.156l-2.736 2.736h-1.768a2.482 2.482 0 0 1-1.744-.722l-3.613-3.613a1.77 1.77 0 0 0-2.444 0l-3.6 3.6a2.483 2.483 0 0 1-1.744.722H3.791l-2.723-2.723a3.646 3.646 0 0 1 0-5.156" }) + ] + } + ); +}); + +export { SiPix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.cjs new file mode 100644 index 000000000..706b9f9af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#191B26"; +const SiPixabay = React__namespace.forwardRef(function SiPixabay2({ title = "Pixabay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 0a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Zm10.193 5.5h2.499l1.967 2.872L18.854 5.5h2.482l-3.579 4.592 3.91 4.813h-2.638l-2.395-3.064-2.15 3.064h-2.579l3.579-4.813zm-5.045.004c1.32.033 2.42.49 3.3 1.371.879.881 1.335 1.986 1.37 3.317-.035 1.331-.491 2.441-1.37 3.328-.88.887-1.98 1.346-3.3 1.38H4.346v3.768H2.5v-8.476c.032-1.33.486-2.436 1.359-3.317.873-.88 1.97-1.338 3.29-1.37Zm0 1.864c-.797.02-1.46.294-1.985.823-.525.53-.797 1.196-.817 2v2.847h2.802c.808-.019 1.476-.294 2.003-.826.528-.532.8-1.206.82-2.02-.02-.805-.292-1.47-.82-2-.527-.53-1.195-.805-2.003-.824Z" }) + ] + } + ); +}); + +exports.default = SiPixabay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.d.ts new file mode 100644 index 000000000..9cf96c3ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#191B26"; +declare const SiPixabay: IconType; +export { SiPixabay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.mjs new file mode 100644 index 000000000..2d2b3da31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixabay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#191B26"; +const SiPixabay = React.forwardRef(function SiPixabay2({ title = "Pixabay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2 0a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Zm10.193 5.5h2.499l1.967 2.872L18.854 5.5h2.482l-3.579 4.592 3.91 4.813h-2.638l-2.395-3.064-2.15 3.064h-2.579l3.579-4.813zm-5.045.004c1.32.033 2.42.49 3.3 1.371.879.881 1.335 1.986 1.37 3.317-.035 1.331-.491 2.441-1.37 3.328-.88.887-1.98 1.346-3.3 1.38H4.346v3.768H2.5v-8.476c.032-1.33.486-2.436 1.359-3.317.873-.88 1.97-1.338 3.29-1.37Zm0 1.864c-.797.02-1.46.294-1.985.823-.525.53-.797 1.196-.817 2v2.847h2.802c.808-.019 1.476-.294 2.003-.826.528-.532.8-1.206.82-2.02-.02-.805-.292-1.47-.82-2-.527-.53-1.195-.805-2.003-.824Z" }) + ] + } + ); +}); + +export { SiPixabay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.cjs new file mode 100644 index 000000000..bf26f2240 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6366F1"; +const SiPixelfed = React__namespace.forwardRef(function SiPixelfed2({ title = "Pixelfed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.3726 24 0 18.6274 0 12S5.3726 0 12 0s12 5.3726 12 12-5.3726 12-12 12m-.9526-9.3802h2.2014c2.0738 0 3.7549-1.6366 3.7549-3.6554S15.3226 7.309 13.2488 7.309h-3.1772c-1.1964 0-2.1663.9442-2.1663 2.1089v8.208z" }) + ] + } + ); +}); + +exports.default = SiPixelfed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.d.ts new file mode 100644 index 000000000..1c1dd1854 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6366F1"; +declare const SiPixelfed: IconType; +export { SiPixelfed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.mjs new file mode 100644 index 000000000..9ed4c0069 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixelfed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6366F1"; +const SiPixelfed = React.forwardRef(function SiPixelfed2({ title = "Pixelfed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C5.3726 24 0 18.6274 0 12S5.3726 0 12 0s12 5.3726 12 12-5.3726 12-12 12m-.9526-9.3802h2.2014c2.0738 0 3.7549-1.6366 3.7549-3.6554S15.3226 7.309 13.2488 7.309h-3.1772c-1.1964 0-2.1663.9442-2.1663 2.1089v8.208z" }) + ] + } + ); +}); + +export { SiPixelfed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.cjs new file mode 100644 index 000000000..d57bbef5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0096FA"; +const SiPixiv = React__namespace.forwardRef(function SiPixiv2({ title = "pixiv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.94 0A4.953 4.953 0 0 0 0 4.94v14.12A4.953 4.953 0 0 0 4.94 24h14.12A4.953 4.953 0 0 0 24 19.06c-.014 1.355 0-14.12 0-14.12A4.953 4.953 0 0 0 19.06 0Zm1.783 5.465h.904a.37.37 0 0 1 .31.17l.752 1.17a6.172 6.172 0 0 1 10.01 4.834 6.172 6.172 0 0 1-9.394 5.265v2.016a.37.37 0 0 1-.37.367H6.724a.37.37 0 0 1-.37-.367V5.834a.37.37 0 0 1 .37-.37m5.804 2.951a3.222 3.222 0 1 0-.002 6.443 3.222 3.222 0 0 0 .002-6.443" }) + ] + } + ); +}); + +exports.default = SiPixiv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.d.ts new file mode 100644 index 000000000..9d541f804 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0096FA"; +declare const SiPixiv: IconType; +export { SiPixiv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.mjs new file mode 100644 index 000000000..f0d46045b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixiv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0096FA"; +const SiPixiv = React.forwardRef(function SiPixiv2({ title = "pixiv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.94 0A4.953 4.953 0 0 0 0 4.94v14.12A4.953 4.953 0 0 0 4.94 24h14.12A4.953 4.953 0 0 0 24 19.06c-.014 1.355 0-14.12 0-14.12A4.953 4.953 0 0 0 19.06 0Zm1.783 5.465h.904a.37.37 0 0 1 .31.17l.752 1.17a6.172 6.172 0 0 1 10.01 4.834 6.172 6.172 0 0 1-9.394 5.265v2.016a.37.37 0 0 1-.37.367H6.724a.37.37 0 0 1-.37-.367V5.834a.37.37 0 0 1 .37-.37m5.804 2.951a3.222 3.222 0 1 0-.002 6.443 3.222 3.222 0 0 0 .002-6.443" }) + ] + } + ); +}); + +export { SiPixiv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.cjs new file mode 100644 index 000000000..671ee27e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3EBBDF"; +const SiPixlr = React__namespace.forwardRef(function SiPixlr2({ title = "Pixlr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.264 14.391a17.698 17.698 0 0 1-2.645-.299A16.016 16.016 0 0 1 0 11.821v.284c0 6.052 4.483 11.043 10.311 11.85a48.568 48.568 0 0 1-1.808-7.816c-.075-.552-.164-1.135-.239-1.748Zm6.276-4.633c.374-.418.613-.941.688-1.494.015-.12.03-.24.03-.344a2 2 0 0 0-.24-1.016 1.34 1.34 0 0 0-.657-.628c-1.195-.582-2.615.658-3.123 1.69 0 0 0 .014-.015.014-.717 1.36-.523 3.542-.523 3.542a8.27 8.27 0 0 0 2.929-1.031c.329-.195.642-.434.911-.733zM12 .045C6.486.045 1.853 3.765.463 8.847c.105.134.643.433.733.493.254.164.523.329.792.493 1.11.647 2.897 1.47 5.155 1.749.314.06.643.074.957.074 0-.12-.015-.239-.015-.358-.015-.583.015-1.18.074-1.764.03-.239.045-.463.09-.702.015-.045.015-.105.03-.15v-.044c.374-2.003 1.42-3.781 3.362-4.648 2.003-.882 4.29-.523 5.545 1.36a5.218 5.218 0 0 1-.12 5.484c-1.315 2.048-3.631 3.034-6.067 3.363a44.26 44.26 0 0 0 .642 4.035 48.25 48.25 0 0 0 .882 3.511c.015.06.03.12.06.18.194.672.418 1.345.642 2.002C19.278 23.328 24 18.217 24 12.015 23.97 5.41 18.605.045 12 .045" }) + ] + } + ); +}); + +exports.default = SiPixlr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.d.ts new file mode 100644 index 000000000..146f2b949 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3EBBDF"; +declare const SiPixlr: IconType; +export { SiPixlr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.mjs new file mode 100644 index 000000000..8100063d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPixlr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3EBBDF"; +const SiPixlr = React.forwardRef(function SiPixlr2({ title = "Pixlr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.264 14.391a17.698 17.698 0 0 1-2.645-.299A16.016 16.016 0 0 1 0 11.821v.284c0 6.052 4.483 11.043 10.311 11.85a48.568 48.568 0 0 1-1.808-7.816c-.075-.552-.164-1.135-.239-1.748Zm6.276-4.633c.374-.418.613-.941.688-1.494.015-.12.03-.24.03-.344a2 2 0 0 0-.24-1.016 1.34 1.34 0 0 0-.657-.628c-1.195-.582-2.615.658-3.123 1.69 0 0 0 .014-.015.014-.717 1.36-.523 3.542-.523 3.542a8.27 8.27 0 0 0 2.929-1.031c.329-.195.642-.434.911-.733zM12 .045C6.486.045 1.853 3.765.463 8.847c.105.134.643.433.733.493.254.164.523.329.792.493 1.11.647 2.897 1.47 5.155 1.749.314.06.643.074.957.074 0-.12-.015-.239-.015-.358-.015-.583.015-1.18.074-1.764.03-.239.045-.463.09-.702.015-.045.015-.105.03-.15v-.044c.374-2.003 1.42-3.781 3.362-4.648 2.003-.882 4.29-.523 5.545 1.36a5.218 5.218 0 0 1-.12 5.484c-1.315 2.048-3.631 3.034-6.067 3.363a44.26 44.26 0 0 0 .642 4.035 48.25 48.25 0 0 0 .882 3.511c.015.06.03.12.06.18.194.672.418 1.345.642 2.002C19.278 23.328 24 18.217 24 12.015 23.97 5.41 18.605.045 12 .045" }) + ] + } + ); +}); + +export { SiPixlr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.cjs new file mode 100644 index 000000000..0683526a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiPkgsrc = React__namespace.forwardRef(function SiPkgsrc2({ title = "pkgsrc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.908 8.763 9.157-5.132L11.25 0 1.62 4.42Zm1.5 2.29 9-5.368-.948 11.84-8.191 6.382zM.593 6.712 1.619 18.79 11.922 24l-.12-12.788Z" }) + ] + } + ); +}); + +exports.default = SiPkgsrc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.d.ts new file mode 100644 index 000000000..f9a43fd64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiPkgsrc: IconType; +export { SiPkgsrc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.mjs new file mode 100644 index 000000000..b49c40dfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPkgsrc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiPkgsrc = React.forwardRef(function SiPkgsrc2({ title = "pkgsrc", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.908 8.763 9.157-5.132L11.25 0 1.62 4.42Zm1.5 2.29 9-5.368-.948 11.84-8.191 6.382zM.593 6.712 1.619 18.79 11.922 24l-.12-12.788Z" }) + ] + } + ); +}); + +export { SiPkgsrc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.cjs new file mode 100644 index 000000000..b6613d77e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#121212"; +const SiPlane = React__namespace.forwardRef(function SiPlane2({ title = "Plane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 5.358a.854.854 0 0 1 1.235-.767L6.134 7.05v5.768c0 .81.456 1.553 1.179 1.915l4.42 2.218v1.692a.853.853 0 0 1-1.235.766L1.18 14.732A2.14 2.14 0 0 1 0 12.817zm6.134 0a.853.853 0 0 1 1.235-.766l4.898 2.458v5.768c0 .81.457 1.552 1.18 1.915l4.42 2.218v1.692a.853.853 0 0 1-1.235.765l-4.899-2.457v-5.769a2.14 2.14 0 0 0-1.179-1.914L6.134 7.05zm6.133 0a.853.853 0 0 1 1.235-.766l9.319 4.676A2.14 2.14 0 0 1 24 11.182v7.46a.853.853 0 0 1-1.235.766l-4.899-2.457v-5.769a2.14 2.14 0 0 0-1.179-1.914l-4.42-2.218z" }) + ] + } + ); +}); + +exports.default = SiPlane; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.d.ts new file mode 100644 index 000000000..e9d037c15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#121212"; +declare const SiPlane: IconType; +export { SiPlane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.mjs new file mode 100644 index 000000000..cacf0d701 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlane.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#121212"; +const SiPlane = React.forwardRef(function SiPlane2({ title = "Plane", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 5.358a.854.854 0 0 1 1.235-.767L6.134 7.05v5.768c0 .81.456 1.553 1.179 1.915l4.42 2.218v1.692a.853.853 0 0 1-1.235.766L1.18 14.732A2.14 2.14 0 0 1 0 12.817zm6.134 0a.853.853 0 0 1 1.235-.766l4.898 2.458v5.768c0 .81.457 1.552 1.18 1.915l4.42 2.218v1.692a.853.853 0 0 1-1.235.765l-4.899-2.457v-5.769a2.14 2.14 0 0 0-1.179-1.914L6.134 7.05zm6.133 0a.853.853 0 0 1 1.235-.766l9.319 4.676A2.14 2.14 0 0 1 24 11.182v7.46a.853.853 0 0 1-1.235.766l-4.899-2.457v-5.769a2.14 2.14 0 0 0-1.179-1.914l-4.42-2.218z" }) + ] + } + ); +}); + +export { SiPlane as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.cjs new file mode 100644 index 000000000..cf498ffc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009DB1"; +const SiPlanet = React__namespace.forwardRef(function SiPlanet2({ title = "Planet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.891 6.582c-1.159 0-2.4.457-3.217 1.633h-.033a1.59 1.59 0 0 0-1.59-1.59h-.048v10.86a1.792 1.792 0 0 0 1.784 1.784v-4.703h.034c.343.571 1.29 1.536 3.185 1.536 2.857 0 4.572-2.352 4.572-4.638.002-2.416-1.616-4.882-4.687-4.882zm-.066 7.975c-1.714 0-3.07-1.388-3.07-3.217 0-1.666 1.242-3.2 3.023-3.2 1.845 0 3.103 1.616 3.103 3.233-.001 1.905-1.455 3.184-3.056 3.184zM12.001 24A12 12 0 1 1 24 12.001 12.013 12.013 0 0 1 12.001 24zm0-22.856a10.861 10.861 0 1 0 10.861 10.862 10.87 10.87 0 0 0-10.86-10.862z" }) + ] + } + ); +}); + +exports.default = SiPlanet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.d.ts new file mode 100644 index 000000000..d3a1f9cac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009DB1"; +declare const SiPlanet: IconType; +export { SiPlanet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.mjs new file mode 100644 index 000000000..6a3c9b691 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009DB1"; +const SiPlanet = React.forwardRef(function SiPlanet2({ title = "Planet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.891 6.582c-1.159 0-2.4.457-3.217 1.633h-.033a1.59 1.59 0 0 0-1.59-1.59h-.048v10.86a1.792 1.792 0 0 0 1.784 1.784v-4.703h.034c.343.571 1.29 1.536 3.185 1.536 2.857 0 4.572-2.352 4.572-4.638.002-2.416-1.616-4.882-4.687-4.882zm-.066 7.975c-1.714 0-3.07-1.388-3.07-3.217 0-1.666 1.242-3.2 3.023-3.2 1.845 0 3.103 1.616 3.103 3.233-.001 1.905-1.455 3.184-3.056 3.184zM12.001 24A12 12 0 1 1 24 12.001 12.013 12.013 0 0 1 12.001 24zm0-22.856a10.861 10.861 0 1 0 10.861 10.862 10.87 10.87 0 0 0-10.86-10.862z" }) + ] + } + ); +}); + +export { SiPlanet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.cjs new file mode 100644 index 000000000..424bf710a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPlanetscale = React__namespace.forwardRef(function SiPlanetscale2({ title = "PlanetScale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12C0 5.373 5.373 0 12 0c4.873 0 9.067 2.904 10.947 7.077l-15.87 15.87a11.981 11.981 0 0 1-1.935-1.099L14.99 12H12l-8.485 8.485A11.962 11.962 0 0 1 0 12Zm12.004 12L24 12.004C23.998 18.628 18.628 23.998 12.004 24Z" }) + ] + } + ); +}); + +exports.default = SiPlanetscale; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.d.ts new file mode 100644 index 000000000..0068e7cce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPlanetscale: IconType; +export { SiPlanetscale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.mjs new file mode 100644 index 000000000..0e566b91b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlanetscale.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPlanetscale = React.forwardRef(function SiPlanetscale2({ title = "PlanetScale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12C0 5.373 5.373 0 12 0c4.873 0 9.067 2.904 10.947 7.077l-15.87 15.87a11.981 11.981 0 0 1-1.935-1.099L14.99 12H12l-8.485 8.485A11.962 11.962 0 0 1 0 12Zm12.004 12L24 12.004C23.998 18.628 18.628 23.998 12.004 24Z" }) + ] + } + ); +}); + +export { SiPlanetscale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.cjs new file mode 100644 index 000000000..ad0061660 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0085DE"; +const SiPlangrid = React__namespace.forwardRef(function SiPlangrid2({ title = "PlanGrid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.6 0c2.6 0 4.262.009 5.828 1.574C23.99 3.141 24 4.794 24 7.401v9.2c0 2.6-.01 4.261-1.574 5.828C20.859 23.991 19.207 24 16.598 24h-9.2c-2.599 0-4.26-.009-5.827-1.574C.01 20.861 0 19.207 0 16.599v-9.2C0 4.8.01 3.138 1.574 1.572 3.141.01 4.793 0 7.4 0h9.201-.001zm4.398 11.151C20.57 6.578 16.684 3.002 12 3.002c-4.971 0-9 4.027-9 8.998 0 4.801 3.752 8.734 8.485 9h7.136c1.313-.003 2.375-1.066 2.379-2.381v-7.47l-.002.002zm-2.285 8.589c-.564 0-1.023-.46-1.023-1.024 0-.566.459-1.024 1.023-1.024.566 0 1.025.458 1.025 1.024 0 .564-.459 1.024-1.025 1.024zM12 18.949C8.163 18.945 5.055 15.836 5.051 12 5.055 8.164 8.163 5.055 12 5.051c3.836.004 6.945 3.113 6.949 6.949-.004 3.836-3.113 6.945-6.949 6.949z" }) + ] + } + ); +}); + +exports.default = SiPlangrid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.d.ts new file mode 100644 index 000000000..fc0f2b194 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0085DE"; +declare const SiPlangrid: IconType; +export { SiPlangrid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.mjs new file mode 100644 index 000000000..3ed04b1d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlangrid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0085DE"; +const SiPlangrid = React.forwardRef(function SiPlangrid2({ title = "PlanGrid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.6 0c2.6 0 4.262.009 5.828 1.574C23.99 3.141 24 4.794 24 7.401v9.2c0 2.6-.01 4.261-1.574 5.828C20.859 23.991 19.207 24 16.598 24h-9.2c-2.599 0-4.26-.009-5.827-1.574C.01 20.861 0 19.207 0 16.599v-9.2C0 4.8.01 3.138 1.574 1.572 3.141.01 4.793 0 7.4 0h9.201-.001zm4.398 11.151C20.57 6.578 16.684 3.002 12 3.002c-4.971 0-9 4.027-9 8.998 0 4.801 3.752 8.734 8.485 9h7.136c1.313-.003 2.375-1.066 2.379-2.381v-7.47l-.002.002zm-2.285 8.589c-.564 0-1.023-.46-1.023-1.024 0-.566.459-1.024 1.023-1.024.566 0 1.025.458 1.025 1.024 0 .564-.459 1.024-1.025 1.024zM12 18.949C8.163 18.945 5.055 15.836 5.051 12 5.055 8.164 8.163 5.055 12 5.051c3.836.004 6.945 3.113 6.949 6.949-.004 3.836-3.113 6.945-6.949 6.949z" }) + ] + } + ); +}); + +export { SiPlangrid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.cjs new file mode 100644 index 000000000..3e791e9b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A182A"; +const SiPlatformdotsh = React__namespace.forwardRef(function SiPlatformdotsh2({ title = "Platform.sh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 0H0v9.541h24V0zM24 20.755H0V24h24v-3.245zM0 12.618h24v4.892H0v-4.892z" }) + ] + } + ); +}); + +exports.default = SiPlatformdotsh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.d.ts new file mode 100644 index 000000000..91eb48994 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A182A"; +declare const SiPlatformdotsh: IconType; +export { SiPlatformdotsh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.mjs new file mode 100644 index 000000000..370124b2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformdotsh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A182A"; +const SiPlatformdotsh = React.forwardRef(function SiPlatformdotsh2({ title = "Platform.sh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 0H0v9.541h24V0zM24 20.755H0V24h24v-3.245zM0 12.618h24v4.892H0v-4.892z" }) + ] + } + ); +}); + +export { SiPlatformdotsh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.cjs new file mode 100644 index 000000000..7a1117d1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5822A"; +const SiPlatformio = React__namespace.forwardRef(function SiPlatformio2({ title = "PlatformIO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 23.992c1.25.211 7.051-3.743 9.113-8.217.253-.686.61-1.198.746-2.5.21-2.016-.41-3.912-1.59-5.419-.987-1.163-2.305-2.004-3.88-2.532l.683-2.583a1.371 1.371 0 1 0-.76-.189L15.64 5.1c-1.109-.288-2.328-.437-3.64-.444m5.978 11.667c-1.548 1.346-2.525 1.488-3.045 1.467-.274-.034-.75-.558-.919-1.104-.188-.612-.28-1.282-.273-2.2-.199-2.476 1.465-5.624 3.937-6.041 1.003-.186 2.39.493 2.889 2.088.506 1.422-.645 4.147-2.589 5.79zM12 4.656c-1.315.007-2.538.156-3.65.447l-.675-2.56A1.37 1.37 0 0 0 6.962 0a1.372 1.372 0 0 0-.044 2.742L7.6 5.328c-1.57.528-2.885 1.367-3.871 2.528-1.179 1.507-1.8 3.403-1.588 5.419.136 1.302.492 1.814.745 2.5 2.062 4.474 7.862 8.428 9.113 8.217m-1.507-9.507c.007.92-.086 1.589-.274 2.201-.167.546-.644 1.07-.918 1.104-.52.021-1.498-.121-3.045-1.467-1.944-1.643-3.095-4.368-2.589-5.79.5-1.595 1.886-2.274 2.889-2.088 2.471.417 4.136 3.565 3.937 6.04zm6.45-2.19a1.24 1.24 0 1 0 0 2.48 1.24 1.24 0 0 0 0-2.48zm.416 1.149a.325.325 0 1 1 0-.65.325.325 0 0 1 0 .65zM7.25 12.294a1.24 1.24 0 1 0 0 2.48 1.24 1.24 0 0 0 0-2.48zm-.418 1.15a.325.325 0 1 1 0-.65.325.325 0 0 1 0 .65z" }) + ] + } + ); +}); + +exports.default = SiPlatformio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.d.ts new file mode 100644 index 000000000..172595422 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5822A"; +declare const SiPlatformio: IconType; +export { SiPlatformio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.mjs new file mode 100644 index 000000000..402f9a2ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatformio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5822A"; +const SiPlatformio = React.forwardRef(function SiPlatformio2({ title = "PlatformIO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 23.992c1.25.211 7.051-3.743 9.113-8.217.253-.686.61-1.198.746-2.5.21-2.016-.41-3.912-1.59-5.419-.987-1.163-2.305-2.004-3.88-2.532l.683-2.583a1.371 1.371 0 1 0-.76-.189L15.64 5.1c-1.109-.288-2.328-.437-3.64-.444m5.978 11.667c-1.548 1.346-2.525 1.488-3.045 1.467-.274-.034-.75-.558-.919-1.104-.188-.612-.28-1.282-.273-2.2-.199-2.476 1.465-5.624 3.937-6.041 1.003-.186 2.39.493 2.889 2.088.506 1.422-.645 4.147-2.589 5.79zM12 4.656c-1.315.007-2.538.156-3.65.447l-.675-2.56A1.37 1.37 0 0 0 6.962 0a1.372 1.372 0 0 0-.044 2.742L7.6 5.328c-1.57.528-2.885 1.367-3.871 2.528-1.179 1.507-1.8 3.403-1.588 5.419.136 1.302.492 1.814.745 2.5 2.062 4.474 7.862 8.428 9.113 8.217m-1.507-9.507c.007.92-.086 1.589-.274 2.201-.167.546-.644 1.07-.918 1.104-.52.021-1.498-.121-3.045-1.467-1.944-1.643-3.095-4.368-2.589-5.79.5-1.595 1.886-2.274 2.889-2.088 2.471.417 4.136 3.565 3.937 6.04zm6.45-2.19a1.24 1.24 0 1 0 0 2.48 1.24 1.24 0 0 0 0-2.48zm.416 1.149a.325.325 0 1 1 0-.65.325.325 0 0 1 0 .65zM7.25 12.294a1.24 1.24 0 1 0 0 2.48 1.24 1.24 0 0 0 0-2.48zm-.418 1.15a.325.325 0 1 1 0-.65.325.325 0 0 1 0 .65z" }) + ] + } + ); +}); + +export { SiPlatformio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.cjs new file mode 100644 index 000000000..5b653f8ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#98CA3F"; +const SiPlatzi = React__namespace.forwardRef(function SiPlatzi2({ title = "Platzi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.6392 1.127L2.486 9.282a3.842 3.842 0 000 5.4361l8.1552 8.1552a3.842 3.842 0 005.4361 0l2.719-2.718-2.719-2.7181-2.718 2.718-8.1562-8.1551 8.1552-8.1552 5.437 5.4371-5.437 5.4361 2.718 2.719 5.4371-5.437a3.842 3.842 0 000-5.4372l-5.448-5.436a3.828 3.828 0 00-5.4252 0z" }) + ] + } + ); +}); + +exports.default = SiPlatzi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.d.ts new file mode 100644 index 000000000..df1d89131 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#98CA3F"; +declare const SiPlatzi: IconType; +export { SiPlatzi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.mjs new file mode 100644 index 000000000..9d57df7c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlatzi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#98CA3F"; +const SiPlatzi = React.forwardRef(function SiPlatzi2({ title = "Platzi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.6392 1.127L2.486 9.282a3.842 3.842 0 000 5.4361l8.1552 8.1552a3.842 3.842 0 005.4361 0l2.719-2.718-2.719-2.7181-2.718 2.718-8.1562-8.1551 8.1552-8.1552 5.437 5.4371-5.437 5.4361 2.718 2.719 5.4371-5.437a3.842 3.842 0 000-5.4372l-5.448-5.436a3.828 3.828 0 00-5.4252 0z" }) + ] + } + ); +}); + +export { SiPlatzi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.cjs new file mode 100644 index 000000000..dad3a33b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5850EC"; +const SiPlausibleanalytics = React__namespace.forwardRef(function SiPlausibleanalytics2({ title = "Plausible Analytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.1835.0017c-.6378-.0097-1.2884.022-1.7246.0996C8.601.424 7.035 1.2116 5.7384 2.4782 4.406 3.7806 3.582 5.299 3.1818 7.1929l-.1387.6445c-.0118 5.3872-.0233 10.7744-.035 16.1617.2914.0081.591-.0392.8416-.0606 2.348-.2868 4.3442-1.7083 5.4315-3.8651.2749-.5497.472-1.182.6094-1.9707.1135-.6691.1195-.8915.1016-4.3807l-.0176-3.6737.1425-.3574c.1972-.49.7425-1.0352 1.2324-1.2324l.3574-.1426 3.3457-.0058c1.8401 0 3.4545-.025 3.58-.0489.5854-.1135 1.2118-.6027 1.4628-1.1464.0717-.1494.1671-.4415.209-.6387.0657-.3286.0604-.4186-.0352-.789-.2987-1.0993-1.3503-2.6234-2.4257-3.5136C16.6247 1.1638 15.2798.4887 13.828.1482c-.3824-.0866-1.0067-.1368-1.6445-.1465zm8.5369 6.8006c-.0506.1798-.098.3662-.172.5215-.3358.7278-1.0382 1.2776-1.8221 1.4296-3.6737.0566-2.5392.0561-3.6737.0566l-3.248.0059-.2695.1074c-.3135.1262-.827.6397-.9531.9531l-.1074.2676.0175 3.576c.0149 2.8888.007 3.5821-.0605 4.125a8.9918 8.9918 0 0 0 1.5683.1386c4.9662.0001 8.992-4.0258 8.992-8.992a8.9918 8.9918 0 0 0-.2715-2.1893Z" }) + ] + } + ); +}); + +exports.default = SiPlausibleanalytics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.d.ts new file mode 100644 index 000000000..67fd5c19d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5850EC"; +declare const SiPlausibleanalytics: IconType; +export { SiPlausibleanalytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.mjs new file mode 100644 index 000000000..8deec6cf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlausibleanalytics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5850EC"; +const SiPlausibleanalytics = React.forwardRef(function SiPlausibleanalytics2({ title = "Plausible Analytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.1835.0017c-.6378-.0097-1.2884.022-1.7246.0996C8.601.424 7.035 1.2116 5.7384 2.4782 4.406 3.7806 3.582 5.299 3.1818 7.1929l-.1387.6445c-.0118 5.3872-.0233 10.7744-.035 16.1617.2914.0081.591-.0392.8416-.0606 2.348-.2868 4.3442-1.7083 5.4315-3.8651.2749-.5497.472-1.182.6094-1.9707.1135-.6691.1195-.8915.1016-4.3807l-.0176-3.6737.1425-.3574c.1972-.49.7425-1.0352 1.2324-1.2324l.3574-.1426 3.3457-.0058c1.8401 0 3.4545-.025 3.58-.0489.5854-.1135 1.2118-.6027 1.4628-1.1464.0717-.1494.1671-.4415.209-.6387.0657-.3286.0604-.4186-.0352-.789-.2987-1.0993-1.3503-2.6234-2.4257-3.5136C16.6247 1.1638 15.2798.4887 13.828.1482c-.3824-.0866-1.0067-.1368-1.6445-.1465zm8.5369 6.8006c-.0506.1798-.098.3662-.172.5215-.3358.7278-1.0382 1.2776-1.8221 1.4296-3.6737.0566-2.5392.0561-3.6737.0566l-3.248.0059-.2695.1074c-.3135.1262-.827.6397-.9531.9531l-.1074.2676.0175 3.576c.0149 2.8888.007 3.5821-.0605 4.125a8.9918 8.9918 0 0 0 1.5683.1386c4.9662.0001 8.992-4.0258 8.992-8.992a8.9918 8.9918 0 0 0-.2715-2.1893Z" }) + ] + } + ); +}); + +export { SiPlausibleanalytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.cjs new file mode 100644 index 000000000..0010a9f5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E05F2C"; +const SiPlaycanvas = React__namespace.forwardRef(function SiPlaycanvas2({ title = "PlayCanvas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.115 0l-.002 3.414 5.823 3.41-5.82 3.414-.003 3.412 11.774-6.826zm11.77 10.35L6.113 17.174 17.887 24l-.002-3.414-5.82-3.412 5.822-3.412z" }) + ] + } + ); +}); + +exports.default = SiPlaycanvas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.d.ts new file mode 100644 index 000000000..b027dc8c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E05F2C"; +declare const SiPlaycanvas: IconType; +export { SiPlaycanvas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.mjs new file mode 100644 index 000000000..a9b5f8468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaycanvas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E05F2C"; +const SiPlaycanvas = React.forwardRef(function SiPlaycanvas2({ title = "PlayCanvas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.115 0l-.002 3.414 5.823 3.41-5.82 3.414-.003 3.412 11.774-6.826zm11.77 10.35L6.113 17.174 17.887 24l-.002-3.414-5.82-3.412 5.822-3.412z" }) + ] + } + ); +}); + +export { SiPlaycanvas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.cjs new file mode 100644 index 000000000..6807db1dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C0379A"; +const SiPlayerdotme = React__namespace.forwardRef(function SiPlayerdotme2({ title = "Player.me", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.981 0a8.957 8.957 0 0 0-8.956 8.957v.363C3.283 15.828 10.082 24 10.082 24V13.205c-1.638-.747-2.756-2.369-2.756-4.253a4.66 4.66 0 1 1 6.152 4.416l-.033.01v4.427c4.296-.713 7.531-4.401 7.531-8.845A8.959 8.959 0 0 0 12.017.001h-.038.002z" }) + ] + } + ); +}); + +exports.default = SiPlayerdotme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.d.ts new file mode 100644 index 000000000..c505104b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C0379A"; +declare const SiPlayerdotme: IconType; +export { SiPlayerdotme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.mjs new file mode 100644 index 000000000..820f7944e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerdotme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C0379A"; +const SiPlayerdotme = React.forwardRef(function SiPlayerdotme2({ title = "Player.me", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.981 0a8.957 8.957 0 0 0-8.956 8.957v.363C3.283 15.828 10.082 24 10.082 24V13.205c-1.638-.747-2.756-2.369-2.756-4.253a4.66 4.66 0 1 1 6.152 4.416l-.033.01v4.427c4.296-.713 7.531-4.401 7.531-8.845A8.959 8.959 0 0 0 12.017.001h-.038.002z" }) + ] + } + ); +}); + +export { SiPlayerdotme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.cjs new file mode 100644 index 000000000..83b15aabe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C8122A"; +const SiPlayerfm = React__namespace.forwardRef(function SiPlayerfm2({ title = "Player FM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.976 0a12 12 0 00-.347.012c-.323.021-.771.063-1.129.11-3.29.448-6.096 2.1-7.993 4.56a12.027 12.027 0 00-1.22 1.94 12 12 0 00-.173.358c-.092.198-.179.4-.261.603a12 12 0 00-.288.788l-.045.143A12 12 0 000 11.986v.037A12 12 0 0012 24a12 12 0 0011.939-10.79l.003-.024A12 12 0 0024 12.018v-.048a12 12 0 00-.769-4.182c-.04-.105-.081-.21-.125-.313a12 12 0 00-.226-.507c-1.487-3.15-4.299-5.59-7.698-6.506-.76-.208-1.978-.39-2.813-.444A12 12 0 0012.024 0h-.048zm2.321 2.88c.166.001.377.056.675.159 1.782.611 3.773 2.157 4.856 3.764.752 1.118 1.337 2.428 1.337 2.987 0 .358-.35.681-.725.681-.35 0-.708-.305-.804-.68-.13-.525-.83-1.852-1.345-2.534-.917-1.205-2.332-2.262-3.72-2.777-.979-.367-1.232-.795-.778-1.336.152-.182.29-.267.504-.265zm-3.885 1.4c.26.001.495.056.7.165 1.31.664 1.24 2.568-.122 3.092-1.686.637-2.533 1.319-3.084 2.437-1.153 2.34-.21 5.1 2.123 6.218 1.712.821 3.668.533 5.03-.725.62-.576.961-1.074 1.267-1.878.428-1.126.917-1.545 1.79-1.545 1.119 0 1.887.943 1.66 2.026-.463 2.13-2.253 4.27-4.42 5.275-1.196.55-1.851.69-3.362.69-1.485 0-2.131-.131-3.284-.655-3.144-1.424-5.075-4.83-4.673-8.21a8.123 8.123 0 015.511-6.734c.315-.105.603-.157.864-.156zm3.463.96c.217.004.499.105.914.306 1.686.803 3.083 2.279 3.834 4.035.28.672.14 1.109-.41 1.283-.42.123-.7-.104-1.066-.864-.681-1.441-1.65-2.437-3.013-3.11-.795-.384-.891-.471-.97-.847-.035-.2 0-.314.184-.532.157-.184.31-.276.527-.271zm-.398 2.443c.23-.001.496.108.84.334.961.629 2.044 1.983 2.044 2.55 0 .289-.28.656-.559.725-.376.097-.646-.087-1.04-.707-.427-.655-.925-1.153-1.44-1.415-.446-.227-.577-.402-.577-.769a.58.58 0 01.245-.515.727.727 0 01.487-.203z" }) + ] + } + ); +}); + +exports.default = SiPlayerfm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.d.ts new file mode 100644 index 000000000..b1d0fede7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C8122A"; +declare const SiPlayerfm: IconType; +export { SiPlayerfm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.mjs new file mode 100644 index 000000000..998b048d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlayerfm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C8122A"; +const SiPlayerfm = React.forwardRef(function SiPlayerfm2({ title = "Player FM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.976 0a12 12 0 00-.347.012c-.323.021-.771.063-1.129.11-3.29.448-6.096 2.1-7.993 4.56a12.027 12.027 0 00-1.22 1.94 12 12 0 00-.173.358c-.092.198-.179.4-.261.603a12 12 0 00-.288.788l-.045.143A12 12 0 000 11.986v.037A12 12 0 0012 24a12 12 0 0011.939-10.79l.003-.024A12 12 0 0024 12.018v-.048a12 12 0 00-.769-4.182c-.04-.105-.081-.21-.125-.313a12 12 0 00-.226-.507c-1.487-3.15-4.299-5.59-7.698-6.506-.76-.208-1.978-.39-2.813-.444A12 12 0 0012.024 0h-.048zm2.321 2.88c.166.001.377.056.675.159 1.782.611 3.773 2.157 4.856 3.764.752 1.118 1.337 2.428 1.337 2.987 0 .358-.35.681-.725.681-.35 0-.708-.305-.804-.68-.13-.525-.83-1.852-1.345-2.534-.917-1.205-2.332-2.262-3.72-2.777-.979-.367-1.232-.795-.778-1.336.152-.182.29-.267.504-.265zm-3.885 1.4c.26.001.495.056.7.165 1.31.664 1.24 2.568-.122 3.092-1.686.637-2.533 1.319-3.084 2.437-1.153 2.34-.21 5.1 2.123 6.218 1.712.821 3.668.533 5.03-.725.62-.576.961-1.074 1.267-1.878.428-1.126.917-1.545 1.79-1.545 1.119 0 1.887.943 1.66 2.026-.463 2.13-2.253 4.27-4.42 5.275-1.196.55-1.851.69-3.362.69-1.485 0-2.131-.131-3.284-.655-3.144-1.424-5.075-4.83-4.673-8.21a8.123 8.123 0 015.511-6.734c.315-.105.603-.157.864-.156zm3.463.96c.217.004.499.105.914.306 1.686.803 3.083 2.279 3.834 4.035.28.672.14 1.109-.41 1.283-.42.123-.7-.104-1.066-.864-.681-1.441-1.65-2.437-3.013-3.11-.795-.384-.891-.471-.97-.847-.035-.2 0-.314.184-.532.157-.184.31-.276.527-.271zm-.398 2.443c.23-.001.496.108.84.334.961.629 2.044 1.983 2.044 2.55 0 .289-.28.656-.559.725-.376.097-.646-.087-1.04-.707-.427-.655-.925-1.153-1.44-1.415-.446-.227-.577-.402-.577-.769a.58.58 0 01.245-.515.727.727 0 01.487-.203z" }) + ] + } + ); +}); + +export { SiPlayerfm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.cjs new file mode 100644 index 000000000..40b9f37f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0070D1"; +const SiPlaystation = React__namespace.forwardRef(function SiPlaystation2({ title = "PlayStation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.984 2.596v17.547l3.915 1.261V6.688c0-.69.304-1.151.794-.991.636.18.76.814.76 1.505v5.875c2.441 1.193 4.362-.002 4.362-3.152 0-3.237-1.126-4.675-4.438-5.827-1.307-.448-3.728-1.186-5.39-1.502zm4.656 16.241l6.296-2.275c.715-.258.826-.625.246-.818-.586-.192-1.637-.139-2.357.123l-4.205 1.5V14.98l.24-.085s1.201-.42 2.913-.615c1.696-.18 3.785.03 5.437.661 1.848.601 2.04 1.472 1.576 2.072-.465.6-1.622 1.036-1.622 1.036l-8.544 3.107V18.86zM1.807 18.6c-1.9-.545-2.214-1.668-1.352-2.32.801-.586 2.16-1.052 2.16-1.052l5.615-2.013v2.313L4.205 17c-.705.271-.825.632-.239.826.586.195 1.637.15 2.343-.12L8.247 17v2.074c-.12.03-.256.044-.39.073-1.939.331-3.996.196-6.038-.479z" }) + ] + } + ); +}); + +exports.default = SiPlaystation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.d.ts new file mode 100644 index 000000000..ff2091c9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0070D1"; +declare const SiPlaystation: IconType; +export { SiPlaystation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.mjs new file mode 100644 index 000000000..4fd6a236a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0070D1"; +const SiPlaystation = React.forwardRef(function SiPlaystation2({ title = "PlayStation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.984 2.596v17.547l3.915 1.261V6.688c0-.69.304-1.151.794-.991.636.18.76.814.76 1.505v5.875c2.441 1.193 4.362-.002 4.362-3.152 0-3.237-1.126-4.675-4.438-5.827-1.307-.448-3.728-1.186-5.39-1.502zm4.656 16.241l6.296-2.275c.715-.258.826-.625.246-.818-.586-.192-1.637-.139-2.357.123l-4.205 1.5V14.98l.24-.085s1.201-.42 2.913-.615c1.696-.18 3.785.03 5.437.661 1.848.601 2.04 1.472 1.576 2.072-.465.6-1.622 1.036-1.622 1.036l-8.544 3.107V18.86zM1.807 18.6c-1.9-.545-2.214-1.668-1.352-2.32.801-.586 2.16-1.052 2.16-1.052l5.615-2.013v2.313L4.205 17c-.705.271-.825.632-.239.826.586.195 1.637.15 2.343-.12L8.247 17v2.074c-.12.03-.256.044-.39.073-1.939.331-3.996.196-6.038-.479z" }) + ] + } + ); +}); + +export { SiPlaystation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.cjs new file mode 100644 index 000000000..549264fb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003791"; +const SiPlaystation2 = React__namespace.forwardRef(function SiPlaystation22({ title = "PlayStation 2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.46 13.779v.292h4.142v-3.85h3.796V9.93h-4.115v3.85zm16.248-3.558v1.62h-7.195v2.23H24v-.292h-7.168v-1.646H24V9.929h-7.487v.292zm-16.513 0v1.62H0v2.23h.292v-1.938H7.46V9.929H0v.292Z" }) + ] + } + ); +}); + +exports.default = SiPlaystation2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.d.ts new file mode 100644 index 000000000..89c2a26c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003791"; +declare const SiPlaystation2: IconType; +export { SiPlaystation2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.mjs new file mode 100644 index 000000000..05395ffa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003791"; +const SiPlaystation2 = React.forwardRef(function SiPlaystation22({ title = "PlayStation 2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.46 13.779v.292h4.142v-3.85h3.796V9.93h-4.115v3.85zm16.248-3.558v1.62h-7.195v2.23H24v-.292h-7.168v-1.646H24V9.929h-7.487v.292zm-16.513 0v1.62H0v2.23h.292v-1.938H7.46V9.929H0v.292Z" }) + ] + } + ); +}); + +export { SiPlaystation2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.cjs new file mode 100644 index 000000000..6c8a20414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003791"; +const SiPlaystation3 = React__namespace.forwardRef(function SiPlaystation32({ title = "PlayStation 3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.362 9.433h-3.148c-.97 0-1.446.6-1.446 1.38v2.365c0 .483-.228.83-.71.83H7.304a.035.035 0 00-.035.035v.47c0 .02.01.032.03.032h3.11c.97 0 1.45-.597 1.45-1.377v-2.363c0-.484.224-.832.71-.832h2.781c.02 0 .04-.014.04-.033v-.475c0-.02-.02-.035-.04-.035zm-9.266 0H.038c-.022 0-.038.017-.038.035v.477c0 .02.016.036.038.036h5.694c.48 0 .71.347.71.83s-.228.83-.71.83H1.228c-.7 0-1.227.586-1.227 1.365v1.513c0 .02.02.037.04.037h1.03c.02 0 .04-.016.04-.037v-1.513c0-.48.28-.82.68-.82H6.1c.97 0 1.444-.594 1.444-1.374 0-.778-.473-1.38-1.442-1.38zm17.453 2.498a.04.04 0 010-.056c.3-.25.45-.627.45-1.062 0-.778-.474-1.38-1.446-1.38h-6.057c-.02 0-.036.018-.036.038v.475c0 .02.02.04.04.04h5.7c.48 0 .715.35.715.83s-.23.83-.712.83h-5.7c-.02 0-.036.02-.036.04v.48c0 .02.016.033.037.033h5.7c.63.007.71.62.71.93v.06c0 .485-.23.833-.71.833h-5.7c-.02 0-.036.015-.036.034v.477c0 .02.015.037.036.037h6.05c.973 0 1.446-.645 1.446-1.38v-.057c0-.47-.15-.916-.45-1.19z" }) + ] + } + ); +}); + +exports.default = SiPlaystation3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.d.ts new file mode 100644 index 000000000..04ca05505 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003791"; +declare const SiPlaystation3: IconType; +export { SiPlaystation3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.mjs new file mode 100644 index 000000000..33d621578 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003791"; +const SiPlaystation3 = React.forwardRef(function SiPlaystation32({ title = "PlayStation 3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.362 9.433h-3.148c-.97 0-1.446.6-1.446 1.38v2.365c0 .483-.228.83-.71.83H7.304a.035.035 0 00-.035.035v.47c0 .02.01.032.03.032h3.11c.97 0 1.45-.597 1.45-1.377v-2.363c0-.484.224-.832.71-.832h2.781c.02 0 .04-.014.04-.033v-.475c0-.02-.02-.035-.04-.035zm-9.266 0H.038c-.022 0-.038.017-.038.035v.477c0 .02.016.036.038.036h5.694c.48 0 .71.347.71.83s-.228.83-.71.83H1.228c-.7 0-1.227.586-1.227 1.365v1.513c0 .02.02.037.04.037h1.03c.02 0 .04-.016.04-.037v-1.513c0-.48.28-.82.68-.82H6.1c.97 0 1.444-.594 1.444-1.374 0-.778-.473-1.38-1.442-1.38zm17.453 2.498a.04.04 0 010-.056c.3-.25.45-.627.45-1.062 0-.778-.474-1.38-1.446-1.38h-6.057c-.02 0-.036.018-.036.038v.475c0 .02.02.04.04.04h5.7c.48 0 .715.35.715.83s-.23.83-.712.83h-5.7c-.02 0-.036.02-.036.04v.48c0 .02.016.033.037.033h5.7c.63.007.71.62.71.93v.06c0 .485-.23.833-.71.833h-5.7c-.02 0-.036.015-.036.034v.477c0 .02.015.037.036.037h6.05c.973 0 1.446-.645 1.446-1.38v-.057c0-.47-.15-.916-.45-1.19z" }) + ] + } + ); +}); + +export { SiPlaystation3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.cjs new file mode 100644 index 000000000..e41041ee5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003791"; +const SiPlaystation4 = React__namespace.forwardRef(function SiPlaystation42({ title = "PlayStation 4", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.302 13.18v-2.387c0-.486.227-.834.712-.834h2.99c.017 0 .035-.018.035-.036v-.475c0-.004 0-.008-.003-.012h-3.66c-.792.1-1.18.653-1.18 1.357v2.386c0 .482-.233.831-.71.831H7.332c-.018 0-.036.012-.036.036v.475c0 .02.01.035.023.04h3.584c.933-.025 1.393-.62 1.393-1.385zM.024 14.564h1.05a.042.042 0 00.025-.04v-1.52c0-.487.275-.823.676-.823h4.323c.974 0 1.445-.6 1.445-1.384 0-.705-.386-1.257-1.18-1.357H.006c0 .003-.006.005-.006.01v.475c0 .024.013.036.037.036h5.697c.484 0 .712.35.712.833 0 .484-.227.836-.712.836H1.226c-.7 0-1.226.592-1.226 1.373v1.519c0 .02.01.036.028.04zm15.998-.55h5.738c.017 0 .03.012.03.024v.483c0 .024.017.036.035.036h1.035c.018 0 .036-.01.036-.036v-.475c0-.018.02-.036.04-.036h1.028c.024 0 .036-.018.036-.036v-.484c0-.018-.01-.036-.035-.036h-1.03c-.02 0-.037-.017-.037-.035V9.96c0-.283-.104-.463-.28-.523h-.3a1.153 1.153 0 00-.303.132l-6.18 3.815c-.24.15-.323.318-.263.445.048.104.185.182.454.182zm.895-.637l4.79-2.961c.03-.024.09-.018.09.048v2.961c0 .018-.016.036-.034.036h-4.817c-.04 0-.06-.012-.065-.024-.006-.024.005-.042.036-.06z" }) + ] + } + ); +}); + +exports.default = SiPlaystation4; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.d.ts new file mode 100644 index 000000000..25c22a616 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003791"; +declare const SiPlaystation4: IconType; +export { SiPlaystation4 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.mjs new file mode 100644 index 000000000..4d3d529e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation4.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003791"; +const SiPlaystation4 = React.forwardRef(function SiPlaystation42({ title = "PlayStation 4", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.302 13.18v-2.387c0-.486.227-.834.712-.834h2.99c.017 0 .035-.018.035-.036v-.475c0-.004 0-.008-.003-.012h-3.66c-.792.1-1.18.653-1.18 1.357v2.386c0 .482-.233.831-.71.831H7.332c-.018 0-.036.012-.036.036v.475c0 .02.01.035.023.04h3.584c.933-.025 1.393-.62 1.393-1.385zM.024 14.564h1.05a.042.042 0 00.025-.04v-1.52c0-.487.275-.823.676-.823h4.323c.974 0 1.445-.6 1.445-1.384 0-.705-.386-1.257-1.18-1.357H.006c0 .003-.006.005-.006.01v.475c0 .024.013.036.037.036h5.697c.484 0 .712.35.712.833 0 .484-.227.836-.712.836H1.226c-.7 0-1.226.592-1.226 1.373v1.519c0 .02.01.036.028.04zm15.998-.55h5.738c.017 0 .03.012.03.024v.483c0 .024.017.036.035.036h1.035c.018 0 .036-.01.036-.036v-.475c0-.018.02-.036.04-.036h1.028c.024 0 .036-.018.036-.036v-.484c0-.018-.01-.036-.035-.036h-1.03c-.02 0-.037-.017-.037-.035V9.96c0-.283-.104-.463-.28-.523h-.3a1.153 1.153 0 00-.303.132l-6.18 3.815c-.24.15-.323.318-.263.445.048.104.185.182.454.182zm.895-.637l4.79-2.961c.03-.024.09-.018.09.048v2.961c0 .018-.016.036-.034.036h-4.817c-.04 0-.06-.012-.065-.024-.006-.024.005-.042.036-.06z" }) + ] + } + ); +}); + +export { SiPlaystation4 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.cjs new file mode 100644 index 000000000..50d069ed0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003791"; +const SiPlaystation5 = React__namespace.forwardRef(function SiPlaystation52({ title = "PlayStation 5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.4499 14.56905a1.38287 1.38287 0 001.38287-1.38287v-2.37841a.83315.83315 0 01.83416-.83315h2.68403a.03732.03732 0 00.03631-.03732V9.4612a.03631.03631 0 00-.0363-.0363H12.1172a1.38287 1.38287 0 00-1.38388 1.38286v2.38043a.83416.83416 0 01-.83315.83415H7.25347a.03631.03631 0 00-.03631.03632v.47608a.03631.03631 0 00.03631.03631zm6.04488-3.21156V9.4612a.03631.03631 0 01.0363-.0363h7.30772a.03732.03732 0 01.03732.0363v.47609a.03833.03833 0 01-.03732.03732h-6.20929a.03631.03631 0 00-.0363.03631v1.2356a.3954.3954 0 00.3964.39741h4.62267a1.46457 1.46457 0 010 2.9251h-6.0812a.03631.03631 0 01-.0363-.0363v-.47407a.03631.03631 0 01.0363-.03632h5.53047a.91586.91586 0 10-.00706-1.8307h-4.72656a.83315.83315 0 01-.83315-.83416m-10.84608.28645a.83466.83466 0 000-1.66932H.03654a.03732.03732 0 01-.03632-.03732V9.4612a.03631.03631 0 01.03632-.0363h6.1528a1.38388 1.38388 0 010 2.76673H1.9328a.83315.83315 0 00-.83315.83416v1.51299a.03631.03631 0 01-.03631.0363H.03654a.03631.03631 0 01-.03632-.04034v-1.51298a1.38287 1.38287 0 011.38388-1.37783Z" }) + ] + } + ); +}); + +exports.default = SiPlaystation5; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.d.ts new file mode 100644 index 000000000..2e5600dff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003791"; +declare const SiPlaystation5: IconType; +export { SiPlaystation5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.mjs new file mode 100644 index 000000000..fa4f2c0da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystation5.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003791"; +const SiPlaystation5 = React.forwardRef(function SiPlaystation52({ title = "PlayStation 5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.4499 14.56905a1.38287 1.38287 0 001.38287-1.38287v-2.37841a.83315.83315 0 01.83416-.83315h2.68403a.03732.03732 0 00.03631-.03732V9.4612a.03631.03631 0 00-.0363-.0363H12.1172a1.38287 1.38287 0 00-1.38388 1.38286v2.38043a.83416.83416 0 01-.83315.83415H7.25347a.03631.03631 0 00-.03631.03632v.47608a.03631.03631 0 00.03631.03631zm6.04488-3.21156V9.4612a.03631.03631 0 01.0363-.0363h7.30772a.03732.03732 0 01.03732.0363v.47609a.03833.03833 0 01-.03732.03732h-6.20929a.03631.03631 0 00-.0363.03631v1.2356a.3954.3954 0 00.3964.39741h4.62267a1.46457 1.46457 0 010 2.9251h-6.0812a.03631.03631 0 01-.0363-.0363v-.47407a.03631.03631 0 01.0363-.03632h5.53047a.91586.91586 0 10-.00706-1.8307h-4.72656a.83315.83315 0 01-.83315-.83416m-10.84608.28645a.83466.83466 0 000-1.66932H.03654a.03732.03732 0 01-.03632-.03732V9.4612a.03631.03631 0 01.03632-.0363h6.1528a1.38388 1.38388 0 010 2.76673H1.9328a.83315.83315 0 00-.83315.83416v1.51299a.03631.03631 0 01-.03631.0363H.03654a.03631.03631 0 01-.03632-.04034v-1.51298a1.38287 1.38287 0 011.38388-1.37783Z" }) + ] + } + ); +}); + +export { SiPlaystation5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.cjs new file mode 100644 index 000000000..c510ee85e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003791"; +const SiPlaystationportable = React__namespace.forwardRef(function SiPlaystationportable2({ title = "PlayStation Portable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 9.93v.296h7.182v1.626H.001v2.217h.295v-1.921h7.182V9.93zm11.29 0v3.844H7.478v.296h4.124v-3.844h3.813V9.93zm5.233 0v.296h7.182v1.626h-7.182v2.217h.296v-1.921H24V9.93z" }) + ] + } + ); +}); + +exports.default = SiPlaystationportable; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.d.ts new file mode 100644 index 000000000..bc2438fd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003791"; +declare const SiPlaystationportable: IconType; +export { SiPlaystationportable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.mjs new file mode 100644 index 000000000..c2bd7ac66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationportable.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003791"; +const SiPlaystationportable = React.forwardRef(function SiPlaystationportable2({ title = "PlayStation Portable", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 9.93v.296h7.182v1.626H.001v2.217h.295v-1.921h7.182V9.93zm11.29 0v3.844H7.478v.296h4.124v-3.844h3.813V9.93zm5.233 0v.296h7.182v1.626h-7.182v2.217h.296v-1.921H24V9.93z" }) + ] + } + ); +}); + +export { SiPlaystationportable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.cjs new file mode 100644 index 000000000..15c3dfd9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003791"; +const SiPlaystationvita = React__namespace.forwardRef(function SiPlaystationvita2({ title = "PlayStation Vita", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.176 12.216H1.274c-.26 0-.453.198-.453.538v1.235H0v-1.19c0-.668.42-1.119 1.014-1.119h1.924c.471-.018.584-.252.584-.592 0-.26-.13-.616-.584-.58H0v-.49h3.176c.832 0 1.16.481 1.16 1.07 0 .669-.328 1.128-1.16 1.128zm3.488-1.122v1.813c0 .663-.299 1.076-1.126 1.076H3.761v-.49h1.55c.318 0 .507-.258.507-.586v-1.813c0-.578.28-1.077 1.102-1.077h1.765v.49H7.158c-.412-.017-.494.32-.494.587zm4.84 2.904c-.331-.018-.47-.27-.532-.377-.063-.107-1.92-3.609-1.92-3.609h.924l1.538 2.855c.08.16.262.2.36.012l1.53-2.867h.577s-1.798 3.404-1.87 3.52c-.071.117-.276.484-.607.466zm3.005-3.972h.84v3.96h-.84zm3.77.46l.003 3.477h-.826V10.49l-1.57-.002v-.483L19.859 10l-.002.489zm3.235-.481c-.314.005-.51.354-.579.467-.071.116-1.873 3.527-1.873 3.527h.578l.44-.84h2.541l.454.84H24s-1.86-3.508-1.923-3.616c-.062-.107-.201-.36-.533-.378h-.03zm-.18.996c.078-.005.155.047.2.138l.825 1.525h-2.004l.818-1.538c.043-.082.102-.12.162-.125Z" }) + ] + } + ); +}); + +exports.default = SiPlaystationvita; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.d.ts new file mode 100644 index 000000000..d7d3b070a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003791"; +declare const SiPlaystationvita: IconType; +export { SiPlaystationvita as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.mjs new file mode 100644 index 000000000..53fcddfef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlaystationvita.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003791"; +const SiPlaystationvita = React.forwardRef(function SiPlaystationvita2({ title = "PlayStation Vita", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.176 12.216H1.274c-.26 0-.453.198-.453.538v1.235H0v-1.19c0-.668.42-1.119 1.014-1.119h1.924c.471-.018.584-.252.584-.592 0-.26-.13-.616-.584-.58H0v-.49h3.176c.832 0 1.16.481 1.16 1.07 0 .669-.328 1.128-1.16 1.128zm3.488-1.122v1.813c0 .663-.299 1.076-1.126 1.076H3.761v-.49h1.55c.318 0 .507-.258.507-.586v-1.813c0-.578.28-1.077 1.102-1.077h1.765v.49H7.158c-.412-.017-.494.32-.494.587zm4.84 2.904c-.331-.018-.47-.27-.532-.377-.063-.107-1.92-3.609-1.92-3.609h.924l1.538 2.855c.08.16.262.2.36.012l1.53-2.867h.577s-1.798 3.404-1.87 3.52c-.071.117-.276.484-.607.466zm3.005-3.972h.84v3.96h-.84zm3.77.46l.003 3.477h-.826V10.49l-1.57-.002v-.483L19.859 10l-.002.489zm3.235-.481c-.314.005-.51.354-.579.467-.071.116-1.873 3.527-1.873 3.527h.578l.44-.84h2.541l.454.84H24s-1.86-3.508-1.923-3.616c-.062-.107-.201-.36-.533-.378h-.03zm-.18.996c.078-.005.155.047.2.138l.825 1.525h-2.004l.818-1.538c.043-.082.102-.12.162-.125Z" }) + ] + } + ); +}); + +export { SiPlaystationvita as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.cjs new file mode 100644 index 000000000..440d6b0a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FBA457"; +const SiPleroma = React__namespace.forwardRef(function SiPleroma2({ title = "Pleroma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.36 0A1.868 1.868 0 004.49 1.868V24h5.964V0zm7.113 0v12h4.168a1.868 1.868 0 001.868-1.868V0zm0 18.036V24h4.168a1.868 1.868 0 001.868-1.868v-4.096Z" }) + ] + } + ); +}); + +exports.default = SiPleroma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.d.ts new file mode 100644 index 000000000..b6ab295c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FBA457"; +declare const SiPleroma: IconType; +export { SiPleroma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.mjs new file mode 100644 index 000000000..8186ea222 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPleroma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FBA457"; +const SiPleroma = React.forwardRef(function SiPleroma2({ title = "Pleroma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.36 0A1.868 1.868 0 004.49 1.868V24h5.964V0zm7.113 0v12h4.168a1.868 1.868 0 001.868-1.868V0zm0 18.036V24h4.168a1.868 1.868 0 001.868-1.868v-4.096Z" }) + ] + } + ); +}); + +export { SiPleroma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.cjs new file mode 100644 index 000000000..184c1e92d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#52BBE6"; +const SiPlesk = React__namespace.forwardRef(function SiPlesk2({ title = "Plesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.102 7.021v7.353h.736V7.02zm13.655.01v7.343h.735V7.032zm.735 4.633l2.479 2.71h1.019l-2.574-2.731L24 9.122h-.987zm-4.008-2.636c-.536 0-.972.125-1.31.378-.337.252-.505.609-.505 1.07 0 .26.049.474.148.642.1.168.226.306.38.415.154.108.328.198.522.267.194.07.39.134.59.19.175.049.342.1.5.152.158.052.297.117.418.194.12.077.216.17.286.278.07.109.104.244.104.405 0 .21-.095.388-.286.535-.19.147-.484.221-.88.221-.609 0-1.104-.245-1.485-.735l-.572.504c.286.315.59.54.913.678.322.136.693.204 1.11.204.272 0 .527-.033.766-.1a1.89 1.89 0 00.621-.294c.176-.13.316-.288.419-.478.102-.189.153-.402.153-.64 0-.26-.051-.474-.153-.646a1.46 1.46 0 00-.402-.436 2.284 2.284 0 00-.545-.289 13.019 13.019 0 00-.594-.205c-.161-.049-.317-.1-.467-.152a2.013 2.013 0 01-.397-.184.923.923 0 01-.275-.252.598.598 0 01-.104-.357c0-.203.075-.371.225-.504.15-.133.413-.2.787-.2.293 0 .546.055.759.163.213.109.41.278.594.51l.011.01.54-.494c-.272-.315-.556-.535-.853-.661a2.586 2.586 0 00-1.018-.19zm-14.688.041c-.588 0-1.187.095-1.796.284v7.626h.725v-2.72c.182.048.364.087.546.115a3.539 3.539 0 001.586-.11c.336-.102.635-.261.898-.478.263-.217.474-.494.636-.83.16-.336.241-.739.241-1.208 0-.385-.067-.742-.2-1.071a2.42 2.42 0 00-.572-.851 2.636 2.636 0 00-.898-.557c-.35-.133-.739-.2-1.166-.2zm8.886 0c-.322 0-.627.055-.914.163-.287.11-.54.275-.756.5a2.391 2.391 0 00-.515.845c-.126.34-.189.74-.189 1.202 0 .35.052.683.157.998.106.315.263.596.473.84.21.246.473.44.788.583.315.144.683.216 1.103.216.455 0 .844-.068 1.166-.205.322-.137.605-.338.85-.604l-.44-.462c-.204.224-.431.387-.683.488a2.226 2.226 0 01-.84.153c-.554 0-.992-.175-1.314-.526-.322-.35-.493-.822-.514-1.417h3.939c.013-.904-.176-1.592-.568-2.064-.392-.473-.973-.71-1.743-.71zm.031.62c.26 0 .487.04.683.121.196.08.355.187.478.32.122.133.217.295.284.484.066.189.1.392.1.609H9.074a2.126 2.126 0 01.494-1.103c.111-.126.264-.23.456-.31.193-.08.422-.12.688-.12zM1.86 9.7c.616 0 1.094.188 1.434.563.34.374.51.866.51 1.475 0 .659-.185 1.165-.552 1.518-.368.354-.863.53-1.486.53-.168 0-.342-.018-.52-.057a4.836 4.836 0 01-.52-.142V9.868c.182-.063.367-.107.557-.132.189-.024.38-.036.577-.036zm2.377 6.588v.692H8.66v-.692z" }) + ] + } + ); +}); + +exports.default = SiPlesk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.d.ts new file mode 100644 index 000000000..b427a64dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#52BBE6"; +declare const SiPlesk: IconType; +export { SiPlesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.mjs new file mode 100644 index 000000000..2eeb80007 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlesk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#52BBE6"; +const SiPlesk = React.forwardRef(function SiPlesk2({ title = "Plesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.102 7.021v7.353h.736V7.02zm13.655.01v7.343h.735V7.032zm.735 4.633l2.479 2.71h1.019l-2.574-2.731L24 9.122h-.987zm-4.008-2.636c-.536 0-.972.125-1.31.378-.337.252-.505.609-.505 1.07 0 .26.049.474.148.642.1.168.226.306.38.415.154.108.328.198.522.267.194.07.39.134.59.19.175.049.342.1.5.152.158.052.297.117.418.194.12.077.216.17.286.278.07.109.104.244.104.405 0 .21-.095.388-.286.535-.19.147-.484.221-.88.221-.609 0-1.104-.245-1.485-.735l-.572.504c.286.315.59.54.913.678.322.136.693.204 1.11.204.272 0 .527-.033.766-.1a1.89 1.89 0 00.621-.294c.176-.13.316-.288.419-.478.102-.189.153-.402.153-.64 0-.26-.051-.474-.153-.646a1.46 1.46 0 00-.402-.436 2.284 2.284 0 00-.545-.289 13.019 13.019 0 00-.594-.205c-.161-.049-.317-.1-.467-.152a2.013 2.013 0 01-.397-.184.923.923 0 01-.275-.252.598.598 0 01-.104-.357c0-.203.075-.371.225-.504.15-.133.413-.2.787-.2.293 0 .546.055.759.163.213.109.41.278.594.51l.011.01.54-.494c-.272-.315-.556-.535-.853-.661a2.586 2.586 0 00-1.018-.19zm-14.688.041c-.588 0-1.187.095-1.796.284v7.626h.725v-2.72c.182.048.364.087.546.115a3.539 3.539 0 001.586-.11c.336-.102.635-.261.898-.478.263-.217.474-.494.636-.83.16-.336.241-.739.241-1.208 0-.385-.067-.742-.2-1.071a2.42 2.42 0 00-.572-.851 2.636 2.636 0 00-.898-.557c-.35-.133-.739-.2-1.166-.2zm8.886 0c-.322 0-.627.055-.914.163-.287.11-.54.275-.756.5a2.391 2.391 0 00-.515.845c-.126.34-.189.74-.189 1.202 0 .35.052.683.157.998.106.315.263.596.473.84.21.246.473.44.788.583.315.144.683.216 1.103.216.455 0 .844-.068 1.166-.205.322-.137.605-.338.85-.604l-.44-.462c-.204.224-.431.387-.683.488a2.226 2.226 0 01-.84.153c-.554 0-.992-.175-1.314-.526-.322-.35-.493-.822-.514-1.417h3.939c.013-.904-.176-1.592-.568-2.064-.392-.473-.973-.71-1.743-.71zm.031.62c.26 0 .487.04.683.121.196.08.355.187.478.32.122.133.217.295.284.484.066.189.1.392.1.609H9.074a2.126 2.126 0 01.494-1.103c.111-.126.264-.23.456-.31.193-.08.422-.12.688-.12zM1.86 9.7c.616 0 1.094.188 1.434.563.34.374.51.866.51 1.475 0 .659-.185 1.165-.552 1.518-.368.354-.863.53-1.486.53-.168 0-.342-.018-.52-.057a4.836 4.836 0 01-.52-.142V9.868c.182-.063.367-.107.557-.132.189-.024.38-.036.577-.036zm2.377 6.588v.692H8.66v-.692z" }) + ] + } + ); +}); + +export { SiPlesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.cjs new file mode 100644 index 000000000..d244b4cd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EBAF00"; +const SiPlex = React__namespace.forwardRef(function SiPlex2({ title = "Plex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.987 8.409c-.96 0-1.587.28-2.12.933v-.72H0v8.88s.038.018.127.037c.138.03.821.187 1.331-.249.441-.377.542-.814.542-1.318v-1.283c.533.573 1.147.813 2 .813 1.84 0 3.253-1.493 3.253-3.48 0-2.12-1.36-3.613-3.266-3.613Zm16.748 5.595.406.591c.391.614.894.906 1.492.908.621-.012 1.064-.562 1.226-.755 0 0-.307-.27-.686-.72-.517-.614-1.214-1.755-1.24-1.803l-1.198 1.779Zm-3.205-1.955c0-2.08-1.52-3.64-3.52-3.64s-3.467 1.587-3.467 3.573a3.48 3.48 0 0 0 3.507 3.52c1.413 0 2.626-.84 3.253-2.293h-2.04l-.093.093c-.427.4-.72.533-1.227.533-.787 0-1.373-.506-1.453-1.266h4.986c.04-.214.054-.307.054-.52Zm-7.671-.219c0 .769.11 1.701.868 2.722l.056.069c-.306.526-.742.88-1.248.88-.399 0-.814-.211-1.138-.579a2.177 2.177 0 0 1-.538-1.441V6.409H9.86l-.001 5.421Zm9.283 3.46h-2.39l2.247-3.332-2.247-3.335h2.39l2.248 3.335-2.248 3.332Zm1.593-1.286Zm-17.162-.342c-.933 0-1.68-.773-1.68-1.72s.76-1.666 1.68-1.666c.92 0 1.68.733 1.68 1.68 0 .946-.733 1.706-1.68 1.706Zm18.361-1.974L24 8.622h-2.391l-.87 1.293 1.195 1.773Zm-9.404-.466c.16-.706.72-1.133 1.493-1.133.773 0 1.373.467 1.507 1.133h-3Z" }) + ] + } + ); +}); + +exports.default = SiPlex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.d.ts new file mode 100644 index 000000000..6b55141d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EBAF00"; +declare const SiPlex: IconType; +export { SiPlex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.mjs new file mode 100644 index 000000000..8fc854059 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EBAF00"; +const SiPlex = React.forwardRef(function SiPlex2({ title = "Plex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.987 8.409c-.96 0-1.587.28-2.12.933v-.72H0v8.88s.038.018.127.037c.138.03.821.187 1.331-.249.441-.377.542-.814.542-1.318v-1.283c.533.573 1.147.813 2 .813 1.84 0 3.253-1.493 3.253-3.48 0-2.12-1.36-3.613-3.266-3.613Zm16.748 5.595.406.591c.391.614.894.906 1.492.908.621-.012 1.064-.562 1.226-.755 0 0-.307-.27-.686-.72-.517-.614-1.214-1.755-1.24-1.803l-1.198 1.779Zm-3.205-1.955c0-2.08-1.52-3.64-3.52-3.64s-3.467 1.587-3.467 3.573a3.48 3.48 0 0 0 3.507 3.52c1.413 0 2.626-.84 3.253-2.293h-2.04l-.093.093c-.427.4-.72.533-1.227.533-.787 0-1.373-.506-1.453-1.266h4.986c.04-.214.054-.307.054-.52Zm-7.671-.219c0 .769.11 1.701.868 2.722l.056.069c-.306.526-.742.88-1.248.88-.399 0-.814-.211-1.138-.579a2.177 2.177 0 0 1-.538-1.441V6.409H9.86l-.001 5.421Zm9.283 3.46h-2.39l2.247-3.332-2.247-3.335h2.39l2.248 3.335-2.248 3.332Zm1.593-1.286Zm-17.162-.342c-.933 0-1.68-.773-1.68-1.72s.76-1.666 1.68-1.666c.92 0 1.68.733 1.68 1.68 0 .946-.733 1.706-1.68 1.706Zm18.361-1.974L24 8.622h-2.391l-.87 1.293 1.195 1.773Zm-9.404-.466c.16-.706.72-1.133 1.493-1.133.773 0 1.373.467 1.507 1.133h-3Z" }) + ] + } + ); +}); + +export { SiPlex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.cjs new file mode 100644 index 000000000..35c4d82a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7A76FF"; +const SiPlotly = React__namespace.forwardRef(function SiPlotly2({ title = "Plotly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.713.002A1.713 1.713 0 0 0 0 1.715a1.713 1.713 0 0 0 1.713 1.713 1.713 1.713 0 0 0 1.714-1.713A1.713 1.713 0 0 0 1.713.002Zm6.861 0a1.713 1.713 0 0 0-1.713 1.713 1.713 1.713 0 0 0 1.713 1.713 1.713 1.713 0 0 0 1.713-1.713A1.713 1.713 0 0 0 8.574.002Zm6.857 0a1.713 1.713 0 0 0-1.714 1.713 1.713 1.713 0 0 0 1.714 1.713 1.713 1.713 0 0 0 1.713-1.713A1.713 1.713 0 0 0 15.431.002zm6.856 0a1.713 1.713 0 0 0-1.713 1.713 1.713 1.713 0 0 0 1.713 1.713A1.713 1.713 0 0 0 24 1.715 1.713 1.713 0 0 0 22.287.002ZM1.713 6.859A1.713 1.713 0 0 0 0 8.572a1.713 1.713 0 0 0 1.713 1.713 1.713 1.713 0 0 0 1.714-1.713A1.713 1.713 0 0 0 1.713 6.86Zm6.861 0c-.948 0-1.713.765-1.713 1.713v13.713c0 .947.765 1.713 1.713 1.713.948 0 1.713-.766 1.713-1.713V8.572c0-.948-.765-1.713-1.713-1.713zm6.857 0a1.713 1.713 0 0 0-1.714 1.713 1.713 1.713 0 0 0 1.714 1.713 1.713 1.713 0 0 0 1.713-1.713 1.713 1.713 0 0 0-1.713-1.713zm6.856 0c-.947 0-1.713.765-1.713 1.713v13.713c0 .947.766 1.713 1.713 1.713.948 0 1.713-.766 1.713-1.713V8.572c0-.948-.765-1.713-1.713-1.713zM1.713 13.715C.766 13.715 0 14.48 0 15.428v6.857c0 .947.766 1.713 1.713 1.713.948 0 1.714-.766 1.714-1.713v-6.857c0-.948-.766-1.713-1.714-1.713zm13.718 0c-.948 0-1.714.765-1.714 1.713v6.857c0 .947.766 1.713 1.714 1.713.947 0 1.713-.766 1.713-1.713v-6.857c0-.948-.766-1.713-1.713-1.713z" }) + ] + } + ); +}); + +exports.default = SiPlotly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.d.ts new file mode 100644 index 000000000..d60c8073d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7A76FF"; +declare const SiPlotly: IconType; +export { SiPlotly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.mjs new file mode 100644 index 000000000..5b05160b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlotly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7A76FF"; +const SiPlotly = React.forwardRef(function SiPlotly2({ title = "Plotly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.713.002A1.713 1.713 0 0 0 0 1.715a1.713 1.713 0 0 0 1.713 1.713 1.713 1.713 0 0 0 1.714-1.713A1.713 1.713 0 0 0 1.713.002Zm6.861 0a1.713 1.713 0 0 0-1.713 1.713 1.713 1.713 0 0 0 1.713 1.713 1.713 1.713 0 0 0 1.713-1.713A1.713 1.713 0 0 0 8.574.002Zm6.857 0a1.713 1.713 0 0 0-1.714 1.713 1.713 1.713 0 0 0 1.714 1.713 1.713 1.713 0 0 0 1.713-1.713A1.713 1.713 0 0 0 15.431.002zm6.856 0a1.713 1.713 0 0 0-1.713 1.713 1.713 1.713 0 0 0 1.713 1.713A1.713 1.713 0 0 0 24 1.715 1.713 1.713 0 0 0 22.287.002ZM1.713 6.859A1.713 1.713 0 0 0 0 8.572a1.713 1.713 0 0 0 1.713 1.713 1.713 1.713 0 0 0 1.714-1.713A1.713 1.713 0 0 0 1.713 6.86Zm6.861 0c-.948 0-1.713.765-1.713 1.713v13.713c0 .947.765 1.713 1.713 1.713.948 0 1.713-.766 1.713-1.713V8.572c0-.948-.765-1.713-1.713-1.713zm6.857 0a1.713 1.713 0 0 0-1.714 1.713 1.713 1.713 0 0 0 1.714 1.713 1.713 1.713 0 0 0 1.713-1.713 1.713 1.713 0 0 0-1.713-1.713zm6.856 0c-.947 0-1.713.765-1.713 1.713v13.713c0 .947.766 1.713 1.713 1.713.948 0 1.713-.766 1.713-1.713V8.572c0-.948-.765-1.713-1.713-1.713zM1.713 13.715C.766 13.715 0 14.48 0 15.428v6.857c0 .947.766 1.713 1.713 1.713.948 0 1.714-.766 1.714-1.713v-6.857c0-.948-.766-1.713-1.714-1.713zm13.718 0c-.948 0-1.714.765-1.714 1.713v6.857c0 .947.766 1.713 1.714 1.713.947 0 1.713-.766 1.713-1.713v-6.857c0-.948-.766-1.713-1.713-1.713z" }) + ] + } + ); +}); + +export { SiPlotly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.cjs new file mode 100644 index 000000000..151f90274 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7C5CDF"; +const SiPlume = React__namespace.forwardRef(function SiPlume2({ title = "Plume", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.528 9.532c0-.368.095-.735.284-1.063v-.001l2.94-5.093a3.776 3.776 0 0 1 3.27-1.887l6.644.002c.294 0 .526.262.476.565-.038.238-.261.402-.502.402l-6.618-.002c-1.004 0-1.93.535-2.433 1.404L5.65 8.95h.001a1.17 1.17 0 0 0-.002 1.16l-.001-.002 2.75 4.764a.087.087 0 0 1-.074.13h-.767a.348.348 0 0 1-.301-.173L4.81 10.592v-.001a2.127 2.127 0 0 1-.282-1.059Zm.819 6.926v.001a2.133 2.133 0 0 0 1.837 1.064h4.894c.124 0 .24-.065.301-.173l.384-.664a.087.087 0 0 0-.076-.13H7.186h.001a1.163 1.163 0 0 1-1.003-.583v.002l-2.94-5.092a2.809 2.809 0 0 1 0-2.81l3.312-5.73c.12-.208.089-.483-.098-.636a.483.483 0 0 0-.727.13L2.407 7.59a3.776 3.776 0 0 0 0 3.776Zm14.126-1.99c0 .368-.096.735-.284 1.063v.001l-2.941 5.093a3.776 3.776 0 0 1-3.27 1.887l-6.643-.002a.484.484 0 0 1-.477-.565c.038-.238.262-.402.502-.402l6.618.002a2.81 2.81 0 0 0 2.433-1.404l2.94-5.092a1.171 1.171 0 0 0 .001-1.16l-2.75-4.763a.087.087 0 0 1 .076-.13h.766c.124 0 .24.066.302.174l2.444 4.237.001.002c.188.328.282.694.282 1.059zm-6.937 5.525H6.655a3.776 3.776 0 0 1-3.27-1.888L.065 12.35a.483.483 0 0 1 .222-.683c.23-.104.503.005.63.224l3.306 5.73a2.809 2.809 0 0 0 2.432 1.405h5.88-.002a1.171 1.171 0 0 0 1.006-.578v.001l2.75-4.764a.087.087 0 0 1 .151 0l.383.663a.349.349 0 0 1 0 .349l-2.447 4.236v.001a2.128 2.128 0 0 1-1.84 1.06zm11.399-8.341-3.32-5.755a3.776 3.776 0 0 0-3.27-1.888h-5.88a2.134 2.134 0 0 0-1.84 1.059l-.001.002-2.447 4.236a.348.348 0 0 0 0 .348l.383.663a.087.087 0 0 0 .15 0l2.751-4.764v.001a1.163 1.163 0 0 1 1.005-.578h5.88c1.003 0 1.93.535 2.431 1.405l3.306 5.73c.127.22.4.328.63.224a.483.483 0 0 0 .222-.683zM18.653 7.54l2.94 5.093a3.775 3.775 0 0 1 0 3.775l-3.324 5.753a.484.484 0 0 1-.727.13c-.187-.152-.218-.427-.097-.636l3.31-5.73a2.81 2.81 0 0 0 .001-2.809l-2.94-5.09a1.173 1.173 0 0 0-1.003-.583h-5.5a.087.087 0 0 1-.076-.13l.384-.664a.348.348 0 0 1 .301-.174l4.892.001h.002a2.128 2.128 0 0 1 1.837 1.064z" }) + ] + } + ); +}); + +exports.default = SiPlume; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.d.ts new file mode 100644 index 000000000..29d002c03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7C5CDF"; +declare const SiPlume: IconType; +export { SiPlume as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.mjs new file mode 100644 index 000000000..afa4cabb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlume.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7C5CDF"; +const SiPlume = React.forwardRef(function SiPlume2({ title = "Plume", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.528 9.532c0-.368.095-.735.284-1.063v-.001l2.94-5.093a3.776 3.776 0 0 1 3.27-1.887l6.644.002c.294 0 .526.262.476.565-.038.238-.261.402-.502.402l-6.618-.002c-1.004 0-1.93.535-2.433 1.404L5.65 8.95h.001a1.17 1.17 0 0 0-.002 1.16l-.001-.002 2.75 4.764a.087.087 0 0 1-.074.13h-.767a.348.348 0 0 1-.301-.173L4.81 10.592v-.001a2.127 2.127 0 0 1-.282-1.059Zm.819 6.926v.001a2.133 2.133 0 0 0 1.837 1.064h4.894c.124 0 .24-.065.301-.173l.384-.664a.087.087 0 0 0-.076-.13H7.186h.001a1.163 1.163 0 0 1-1.003-.583v.002l-2.94-5.092a2.809 2.809 0 0 1 0-2.81l3.312-5.73c.12-.208.089-.483-.098-.636a.483.483 0 0 0-.727.13L2.407 7.59a3.776 3.776 0 0 0 0 3.776Zm14.126-1.99c0 .368-.096.735-.284 1.063v.001l-2.941 5.093a3.776 3.776 0 0 1-3.27 1.887l-6.643-.002a.484.484 0 0 1-.477-.565c.038-.238.262-.402.502-.402l6.618.002a2.81 2.81 0 0 0 2.433-1.404l2.94-5.092a1.171 1.171 0 0 0 .001-1.16l-2.75-4.763a.087.087 0 0 1 .076-.13h.766c.124 0 .24.066.302.174l2.444 4.237.001.002c.188.328.282.694.282 1.059zm-6.937 5.525H6.655a3.776 3.776 0 0 1-3.27-1.888L.065 12.35a.483.483 0 0 1 .222-.683c.23-.104.503.005.63.224l3.306 5.73a2.809 2.809 0 0 0 2.432 1.405h5.88-.002a1.171 1.171 0 0 0 1.006-.578v.001l2.75-4.764a.087.087 0 0 1 .151 0l.383.663a.349.349 0 0 1 0 .349l-2.447 4.236v.001a2.128 2.128 0 0 1-1.84 1.06zm11.399-8.341-3.32-5.755a3.776 3.776 0 0 0-3.27-1.888h-5.88a2.134 2.134 0 0 0-1.84 1.059l-.001.002-2.447 4.236a.348.348 0 0 0 0 .348l.383.663a.087.087 0 0 0 .15 0l2.751-4.764v.001a1.163 1.163 0 0 1 1.005-.578h5.88c1.003 0 1.93.535 2.431 1.405l3.306 5.73c.127.22.4.328.63.224a.483.483 0 0 0 .222-.683zM18.653 7.54l2.94 5.093a3.775 3.775 0 0 1 0 3.775l-3.324 5.753a.484.484 0 0 1-.727.13c-.187-.152-.218-.427-.097-.636l3.31-5.73a2.81 2.81 0 0 0 .001-2.809l-2.94-5.09a1.173 1.173 0 0 0-1.003-.583h-5.5a.087.087 0 0 1-.076-.13l.384-.664a.348.348 0 0 1 .301-.174l4.892.001h.002a2.128 2.128 0 0 1 1.837 1.064z" }) + ] + } + ); +}); + +export { SiPlume as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.cjs new file mode 100644 index 000000000..2c3136f85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15B2A"; +const SiPluralsight = React__namespace.forwardRef(function SiPluralsight2({ title = "Pluralsight", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.72 1.755C10.08-.301 3.811 2.625 1.771 8.25c-2.071 5.699.854 11.956 6.494 14.01 5.655 2.055 11.956-.87 14.01-6.51 2.057-5.67-.87-11.939-6.524-13.995h-.031zM12 24C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12M8.926 5.805v12.391L19.68 12 8.926 5.805zm1.049 1.769L17.625 12l-7.65 4.426V7.574M6.449 7.155v9.689L14.85 12 6.449 7.155zm1.051 1.8L12.811 12 7.5 15.061V8.939" }) + ] + } + ); +}); + +exports.default = SiPluralsight; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.d.ts new file mode 100644 index 000000000..dc4753864 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15B2A"; +declare const SiPluralsight: IconType; +export { SiPluralsight as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.mjs new file mode 100644 index 000000000..077fbc7b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPluralsight.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15B2A"; +const SiPluralsight = React.forwardRef(function SiPluralsight2({ title = "Pluralsight", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.72 1.755C10.08-.301 3.811 2.625 1.771 8.25c-2.071 5.699.854 11.956 6.494 14.01 5.655 2.055 11.956-.87 14.01-6.51 2.057-5.67-.87-11.939-6.524-13.995h-.031zM12 24C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12M8.926 5.805v12.391L19.68 12 8.926 5.805zm1.049 1.769L17.625 12l-7.65 4.426V7.574M6.449 7.155v9.689L14.85 12 6.449 7.155zm1.051 1.8L12.811 12 7.5 15.061V8.939" }) + ] + } + ); +}); + +export { SiPluralsight as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.cjs new file mode 100644 index 000000000..7e0b45dbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF574D"; +const SiPlurk = React__namespace.forwardRef(function SiPlurk2({ title = "Plurk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.9017 1.9056a10.0652 10.0652 0 00-7.8802 3.707 10.1803 10.1803 0 00-.283.357l.004-.003c.232-.196.473-.345.717-.445l.058-.023c.299-.112.602-.147.9-.088 1.4401.289 2.1901 2.6091 1.6751 5.1832-.515 2.574-2.1 4.4271-3.54 4.139-1.0101-.202-1.6781-1.405-1.8121-2.992v-.005.052c-.003.132-.003.266 0 .4v.073l.002.059c.005.149.013.296.024.443.005.067.012.134.019.2a10.0322 10.0322 0 00.961 3.4431c.06.126.03.276-.078.363l-.277.226a.906.906 0 00-.29.97c0 .006.003.01.006.017a.955.955 0 00.059.142l.05-.039.23-.174a.2612.2612 0 11.316.416l-.245.186-.037.028 1.177 1.4481a.91.91 0 001.275.131l.258-.21a.298.298 0 01.374 0 10.0502 10.0502 0 006.5272 2.181 10.0422 10.0422 0 005.5722-1.855.298.298 0 01.38.025l.163.156a.909.909 0 001.179.059l-.004-.004-.21-.197a.262.262 0 01.358-.382l.225.21 1.26-1.326a.91.91 0 00-.033-1.282l-.263-.25a.297.297 0 01-.054-.36 10.0602 10.0602 0 001.103-6.6712c.301-.278.853-.824 1.0691-1.292.231-.502.29-1.02-.323-.792-.476.177-.842.291-1.286.19-1.417-3.5932-4.8472-6.1932-8.8513-6.4002a9.7102 9.7102 0 00-.473-.014zM2.2645 6.2466a1.228 1.228 0 00-1.082 1.7641 1.23 1.23 0 10.754 2.236c.177-.124.306-.289.395-.47.186.342.46.627.778.823a5.5901 5.5901 0 00.017.6001c.102 1.228.62 2.16 1.401 2.316 1.114.223 2.34-1.21 2.738-3.2.3991-1.99-.181-3.7841-1.295-4.0071-.434-.087-.885.08-1.298.432-.45.383-.854.988-1.14 1.73-.01-.002-.02-.003-.03-.007-.14-.04-.215-.131-.312-.152a1.23 1.23 0 00-.926-2.065zm2.862 1.2441c.054 0 .107.004.16.015.726.143 1.104 1.312.844 2.608-.259 1.2981-1.058 2.2301-1.783 2.0851-.493-.098-.824-.67-.905-1.433.181.07.37.113.56.122.527.024.871-.154 1.14-.513.346-.465.084-1.753-.374-1.92-.356-.13-.567.027-.884.05.16-.298.351-.544.557-.72.219-.185.453-.292.686-.295z" }) + ] + } + ); +}); + +exports.default = SiPlurk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.d.ts new file mode 100644 index 000000000..1665e1b0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF574D"; +declare const SiPlurk: IconType; +export { SiPlurk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.mjs new file mode 100644 index 000000000..23e14c3eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPlurk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF574D"; +const SiPlurk = React.forwardRef(function SiPlurk2({ title = "Plurk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.9017 1.9056a10.0652 10.0652 0 00-7.8802 3.707 10.1803 10.1803 0 00-.283.357l.004-.003c.232-.196.473-.345.717-.445l.058-.023c.299-.112.602-.147.9-.088 1.4401.289 2.1901 2.6091 1.6751 5.1832-.515 2.574-2.1 4.4271-3.54 4.139-1.0101-.202-1.6781-1.405-1.8121-2.992v-.005.052c-.003.132-.003.266 0 .4v.073l.002.059c.005.149.013.296.024.443.005.067.012.134.019.2a10.0322 10.0322 0 00.961 3.4431c.06.126.03.276-.078.363l-.277.226a.906.906 0 00-.29.97c0 .006.003.01.006.017a.955.955 0 00.059.142l.05-.039.23-.174a.2612.2612 0 11.316.416l-.245.186-.037.028 1.177 1.4481a.91.91 0 001.275.131l.258-.21a.298.298 0 01.374 0 10.0502 10.0502 0 006.5272 2.181 10.0422 10.0422 0 005.5722-1.855.298.298 0 01.38.025l.163.156a.909.909 0 001.179.059l-.004-.004-.21-.197a.262.262 0 01.358-.382l.225.21 1.26-1.326a.91.91 0 00-.033-1.282l-.263-.25a.297.297 0 01-.054-.36 10.0602 10.0602 0 001.103-6.6712c.301-.278.853-.824 1.0691-1.292.231-.502.29-1.02-.323-.792-.476.177-.842.291-1.286.19-1.417-3.5932-4.8472-6.1932-8.8513-6.4002a9.7102 9.7102 0 00-.473-.014zM2.2645 6.2466a1.228 1.228 0 00-1.082 1.7641 1.23 1.23 0 10.754 2.236c.177-.124.306-.289.395-.47.186.342.46.627.778.823a5.5901 5.5901 0 00.017.6001c.102 1.228.62 2.16 1.401 2.316 1.114.223 2.34-1.21 2.738-3.2.3991-1.99-.181-3.7841-1.295-4.0071-.434-.087-.885.08-1.298.432-.45.383-.854.988-1.14 1.73-.01-.002-.02-.003-.03-.007-.14-.04-.215-.131-.312-.152a1.23 1.23 0 00-.926-2.065zm2.862 1.2441c.054 0 .107.004.16.015.726.143 1.104 1.312.844 2.608-.259 1.2981-1.058 2.2301-1.783 2.0851-.493-.098-.824-.67-.905-1.433.181.07.37.113.56.122.527.024.871-.154 1.14-.513.346-.465.084-1.753-.374-1.92-.356-.13-.567.027-.884.05.16-.298.351-.544.557-.72.219-.185.453-.292.686-.295z" }) + ] + } + ); +}); + +export { SiPlurk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.cjs new file mode 100644 index 000000000..2b808639a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2B037A"; +const SiPm2 = React__namespace.forwardRef(function SiPm22({ title = "PM2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.43 3.223c-.83 1.386-.906 1.499-1.21 1.81-.633.654-1.417 1.003-2.415 1.074-.187.013-1.265.033-2.702.05-.638.008-.75.011-.766.028-.01.011-.185.274-.39.586l-.37.565.104.005c.056.003.443-.003.858-.011a93.159 93.163 0 011.335-.019c.572 0 .58 0 .667.03.246.084.393.306.355.533a.504.504 0 01-.394.42c-.104.027-.375.034-2.821.075-.426.007-.78.015-.784.02a30.5 30.5 0 00-.747 1.145c.004.004.405 0 .893-.007 3.13-.051 5.844-.092 6.6-.1.727-.008.995-.02 1.19-.054.54-.092.954-.297 1.31-.65.253-.252.475-.572.852-1.23.125-.217.262-.45.307-.52l.138-.223c.033-.054.07-.11.082-.125.033-.038.1-.146.14-.23.034-.07.534-.906.75-1.257.15-.242.232-.312.42-.355.26-.06.58.102.653.332.06.188.033.305-.136.59-1.21 2.035-1.65 2.764-1.887 3.123-.672 1.018-1.684 1.564-2.991 1.613-.105.003-.773.015-1.486.026l-2.052.031-1.591.027a1166.545 1166.596 0 01-3.102.048c-.502.005-.761.013-.78.022a.723.723 0 00-.12.186 2.87 2.87 0 00-.285.793.427.427 0 01-.039.132c-.024.007-.02.787.003.81a.41.41 0 01.04.135c.057.285.197.616.395.932l.092.147 1.316.008c.724.004 2.597.015 4.164.021 1.692.008 2.914.019 3.01.027.318.026.488.052.75.118a3.374 3.374 0 011.652.95c.255.264.38.44.941 1.339.366.584 1.455 2.363 1.494 2.44.142.28.05.571-.223.7a.588.588 0 01-.518.01c-.145-.072-.152-.08-.9-1.29a85.42 85.42 0 00-.512-.822 26.09 26.091 0 01-.344-.565c-.37-.62-.588-.93-.82-1.162a2.367 2.367 0 00-1.164-.627c-.286-.064-.338-.066-2.328-.077a590.763 590.789 0 00-3.215-.014c-.738 0-1.634-.005-1.99-.008-.517-.008-.647-.007-.647.007 0 .008.156.27.348.578l.348.56.332.003c2.407.019 2.53.02 2.619.037.194.04.309.123.386.28a.35.35 0 01.05.212.43.43 0 01-.143.342.568.568 0 01-.251.142c-.075.022-.142.024-1.214.02-.92-.003-1.134 0-1.126.013.04.072.695 1.125.704 1.135.008.007.592.016 1.508.021 1.23.008 1.527.013 1.673.03 1.105.13 1.942.603 2.573 1.457.117.158.248.366.912 1.44l.466.754h.714c.392 0 .714-.003.714-.007s-.257-.42-.57-.924a493.191 493.213 0 01-1.49-2.407 12.643 12.644 0 00-.274-.43 2.395 2.395 0 00-1.434-.97c-.252-.061-.428-.077-.874-.083-.446-.006-.522-.016-.646-.08a.552.552 0 01-.231-.227c-.033-.065-.037-.088-.037-.211 0-.127.003-.145.037-.208a.557.557 0 01.357-.275c.07-.021.13-.024.52-.024.345 0 .48.005.625.024.937.12 1.64.445 2.224 1.027.276.276.397.443.758 1.042.127.209.412.672.636 1.028l1.05 1.686.644 1.04h.905c.722 0 .905-.005.9-.018a23.922 23.923 0 00-.24-.39c-.46-.737-.493-.796-.513-.943-.027-.206.118-.419.345-.5a.548.548 0 01.6.134c.064.063.414.61.936 1.465l.156.255.178-.009a3.32 3.32 0 001.31-.325c.065-.03.125-.056.134-.059a3.149 3.149 0 001.078-.886 541.326 541.35 0 002.393-3.65c2.484-3.806 2.433-3.724 2.554-4.086a2.682 2.682 0 00-.115-2.016c-.048-.103-.838-1.387-2.263-3.683a536.842 536.866 0 00-2.253-3.617 2.936 2.936 0 00-1.1-.915 3.19 3.191 0 00-.902-.316c-.18-.033-.193-.036-.183-.052.004-.008-.106-.01-.292-.01l-.298.005-.265.44c-.588.98-.643 1.068-.726 1.151a.568.568 0 01-.309.169c-.222.04-.496-.093-.59-.287-.03-.057-.033-.084-.033-.204 0-.187-.009-.167.504-1.01a3.41 3.41 0 00.147-.254c0-.007-.29-.012-.71-.012h-.71l-.019.03a441.636 441.636 0 01-1.829 3.028c-.21.347-.468.776-.57.953-.231.396-.326.54-.49.744a4.123 4.123 0 01-.563.56c-.53.411-1.17.66-1.92.747-.361.042-.884.048-1.072.013a.576.576 0 01-.384-.276c-.033-.065-.037-.083-.037-.21 0-.12.004-.147.034-.21a.542.542 0 01.352-.279c.073-.02.16-.027.515-.037.264-.007.485-.02.578-.033a3.15 3.15 0 00.599-.15c.164-.065.396-.19.532-.288a2.87 2.87 0 00.53-.526c.056-.074.325-.509.599-.966.273-.458.8-1.334 1.171-1.947.37-.614.677-1.124.68-1.135.006-.016-.098-.018-.703-.018h-.708l-.622 1.035zm7.036.536c0 .01.005.02.012.022.005.001.101.149.212.327.506.81.692 1.117.72 1.194.036.1.04.231.008.323a.646.646 0 01-.24.262.543.543 0 01-.657-.088c-.08-.075-.165-.201-.46-.685-.11-.182-.214-.346-.229-.366-.016-.024-.022-.046-.016-.066.01-.031.56-.88.601-.925.027-.03.05-.03.05.003zM16.08 5.896c-.004.007 0 .013.005.016.012.004 1.003 1.593 1.574 2.523.48.778.696 1.127.88 1.413.301.469.413.687.526 1.026.115.342.16.653.147 1.005-.007.24-.03.39-.088.624-.102.4-.325.866-.61 1.278-.09.128-.273.322-.304.322-.01 0-.02.005-.02.012 0 .006-.039.025-.086.04a.633.633 0 01-.39-.012.661.661 0 01-.294-.283c-.032-.067-.034-.087-.029-.19.007-.14.036-.202.231-.503.25-.385.352-.596.424-.885.124-.49.063-.976-.184-1.46-.049-.095-.36-.606-.692-1.138a342.675 342.69 0 01-1.16-1.867c-.308-.496-.569-.918-.584-.938-.014-.021-.024-.045-.02-.054.01-.027.59-.907.62-.938.02-.022.03-.026.043-.016.01.008.015.02.01.026zm3.142.909a.59.59 0 01.26.188c.095.117 1.425 2.23 1.911 3.04.28.462.41.75.5 1.103.062.243.086.431.086.689 0 .343-.037.57-.145.897-.126.382-.217.553-.658 1.236-.16.25-.998 1.548-1.858 2.887l-1.862 2.89c-.163.253-.303.47-.31.485-.008.013-.019.023-.027.02a20.635 20.636 0 01-.625-1.006c0-.009.012-.033.025-.052a8337.117 8337.482 0 013.846-5.967c.205-.318.266-.429.343-.62a1.95 1.95 0 00.15-.84c-.014-.316-.077-.54-.254-.894-.13-.266-.255-.476-.562-.95-.125-.193-.269-.42-.319-.504a76.564 76.567 0 00-.486-.789c-.764-1.226-.755-1.21-.757-1.35 0-.118.04-.212.128-.307a.67.67 0 01.32-.184.633.633 0 01.294.027zm-4.54 1.215l.2.325c1.091 1.747 1.137 1.824 1.247 2.043.461.919.465 1.832.014 2.735-.096.19-.135.255-.767 1.236-.848 1.32-.947 1.47-.974 1.5-.022.022-.025.024-.025.003 0-.012-.533-.881-1.184-1.93a193.219 193.227 0 01-1.184-1.918c0-.007.554-.858 1.233-1.892a612.753 612.78 0 001.314-2.007.706.706 0 01.096-.127c.007 0 .02.014.03.033zm2.437 6.843a.675.675 0 01.277.26.469.469 0 01.041.153c.01.133-.024.21-.264.588a820.264 820.3 0 01-1.25 1.954l-.125.194c-.022.04-.026.042-.048.026a29.746 29.747 0 01-.605-.97c-.012-.03 1.237-1.975 1.327-2.068a.55.55 0 01.446-.182.436.436 0 01.201.045z" }) + ] + } + ); +}); + +exports.default = SiPm2; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.d.ts new file mode 100644 index 000000000..6742e21d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2B037A"; +declare const SiPm2: IconType; +export { SiPm2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.mjs new file mode 100644 index 000000000..387c27165 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPm2.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2B037A"; +const SiPm2 = React.forwardRef(function SiPm22({ title = "PM2", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.43 3.223c-.83 1.386-.906 1.499-1.21 1.81-.633.654-1.417 1.003-2.415 1.074-.187.013-1.265.033-2.702.05-.638.008-.75.011-.766.028-.01.011-.185.274-.39.586l-.37.565.104.005c.056.003.443-.003.858-.011a93.159 93.163 0 011.335-.019c.572 0 .58 0 .667.03.246.084.393.306.355.533a.504.504 0 01-.394.42c-.104.027-.375.034-2.821.075-.426.007-.78.015-.784.02a30.5 30.5 0 00-.747 1.145c.004.004.405 0 .893-.007 3.13-.051 5.844-.092 6.6-.1.727-.008.995-.02 1.19-.054.54-.092.954-.297 1.31-.65.253-.252.475-.572.852-1.23.125-.217.262-.45.307-.52l.138-.223c.033-.054.07-.11.082-.125.033-.038.1-.146.14-.23.034-.07.534-.906.75-1.257.15-.242.232-.312.42-.355.26-.06.58.102.653.332.06.188.033.305-.136.59-1.21 2.035-1.65 2.764-1.887 3.123-.672 1.018-1.684 1.564-2.991 1.613-.105.003-.773.015-1.486.026l-2.052.031-1.591.027a1166.545 1166.596 0 01-3.102.048c-.502.005-.761.013-.78.022a.723.723 0 00-.12.186 2.87 2.87 0 00-.285.793.427.427 0 01-.039.132c-.024.007-.02.787.003.81a.41.41 0 01.04.135c.057.285.197.616.395.932l.092.147 1.316.008c.724.004 2.597.015 4.164.021 1.692.008 2.914.019 3.01.027.318.026.488.052.75.118a3.374 3.374 0 011.652.95c.255.264.38.44.941 1.339.366.584 1.455 2.363 1.494 2.44.142.28.05.571-.223.7a.588.588 0 01-.518.01c-.145-.072-.152-.08-.9-1.29a85.42 85.42 0 00-.512-.822 26.09 26.091 0 01-.344-.565c-.37-.62-.588-.93-.82-1.162a2.367 2.367 0 00-1.164-.627c-.286-.064-.338-.066-2.328-.077a590.763 590.789 0 00-3.215-.014c-.738 0-1.634-.005-1.99-.008-.517-.008-.647-.007-.647.007 0 .008.156.27.348.578l.348.56.332.003c2.407.019 2.53.02 2.619.037.194.04.309.123.386.28a.35.35 0 01.05.212.43.43 0 01-.143.342.568.568 0 01-.251.142c-.075.022-.142.024-1.214.02-.92-.003-1.134 0-1.126.013.04.072.695 1.125.704 1.135.008.007.592.016 1.508.021 1.23.008 1.527.013 1.673.03 1.105.13 1.942.603 2.573 1.457.117.158.248.366.912 1.44l.466.754h.714c.392 0 .714-.003.714-.007s-.257-.42-.57-.924a493.191 493.213 0 01-1.49-2.407 12.643 12.644 0 00-.274-.43 2.395 2.395 0 00-1.434-.97c-.252-.061-.428-.077-.874-.083-.446-.006-.522-.016-.646-.08a.552.552 0 01-.231-.227c-.033-.065-.037-.088-.037-.211 0-.127.003-.145.037-.208a.557.557 0 01.357-.275c.07-.021.13-.024.52-.024.345 0 .48.005.625.024.937.12 1.64.445 2.224 1.027.276.276.397.443.758 1.042.127.209.412.672.636 1.028l1.05 1.686.644 1.04h.905c.722 0 .905-.005.9-.018a23.922 23.923 0 00-.24-.39c-.46-.737-.493-.796-.513-.943-.027-.206.118-.419.345-.5a.548.548 0 01.6.134c.064.063.414.61.936 1.465l.156.255.178-.009a3.32 3.32 0 001.31-.325c.065-.03.125-.056.134-.059a3.149 3.149 0 001.078-.886 541.326 541.35 0 002.393-3.65c2.484-3.806 2.433-3.724 2.554-4.086a2.682 2.682 0 00-.115-2.016c-.048-.103-.838-1.387-2.263-3.683a536.842 536.866 0 00-2.253-3.617 2.936 2.936 0 00-1.1-.915 3.19 3.191 0 00-.902-.316c-.18-.033-.193-.036-.183-.052.004-.008-.106-.01-.292-.01l-.298.005-.265.44c-.588.98-.643 1.068-.726 1.151a.568.568 0 01-.309.169c-.222.04-.496-.093-.59-.287-.03-.057-.033-.084-.033-.204 0-.187-.009-.167.504-1.01a3.41 3.41 0 00.147-.254c0-.007-.29-.012-.71-.012h-.71l-.019.03a441.636 441.636 0 01-1.829 3.028c-.21.347-.468.776-.57.953-.231.396-.326.54-.49.744a4.123 4.123 0 01-.563.56c-.53.411-1.17.66-1.92.747-.361.042-.884.048-1.072.013a.576.576 0 01-.384-.276c-.033-.065-.037-.083-.037-.21 0-.12.004-.147.034-.21a.542.542 0 01.352-.279c.073-.02.16-.027.515-.037.264-.007.485-.02.578-.033a3.15 3.15 0 00.599-.15c.164-.065.396-.19.532-.288a2.87 2.87 0 00.53-.526c.056-.074.325-.509.599-.966.273-.458.8-1.334 1.171-1.947.37-.614.677-1.124.68-1.135.006-.016-.098-.018-.703-.018h-.708l-.622 1.035zm7.036.536c0 .01.005.02.012.022.005.001.101.149.212.327.506.81.692 1.117.72 1.194.036.1.04.231.008.323a.646.646 0 01-.24.262.543.543 0 01-.657-.088c-.08-.075-.165-.201-.46-.685-.11-.182-.214-.346-.229-.366-.016-.024-.022-.046-.016-.066.01-.031.56-.88.601-.925.027-.03.05-.03.05.003zM16.08 5.896c-.004.007 0 .013.005.016.012.004 1.003 1.593 1.574 2.523.48.778.696 1.127.88 1.413.301.469.413.687.526 1.026.115.342.16.653.147 1.005-.007.24-.03.39-.088.624-.102.4-.325.866-.61 1.278-.09.128-.273.322-.304.322-.01 0-.02.005-.02.012 0 .006-.039.025-.086.04a.633.633 0 01-.39-.012.661.661 0 01-.294-.283c-.032-.067-.034-.087-.029-.19.007-.14.036-.202.231-.503.25-.385.352-.596.424-.885.124-.49.063-.976-.184-1.46-.049-.095-.36-.606-.692-1.138a342.675 342.69 0 01-1.16-1.867c-.308-.496-.569-.918-.584-.938-.014-.021-.024-.045-.02-.054.01-.027.59-.907.62-.938.02-.022.03-.026.043-.016.01.008.015.02.01.026zm3.142.909a.59.59 0 01.26.188c.095.117 1.425 2.23 1.911 3.04.28.462.41.75.5 1.103.062.243.086.431.086.689 0 .343-.037.57-.145.897-.126.382-.217.553-.658 1.236-.16.25-.998 1.548-1.858 2.887l-1.862 2.89c-.163.253-.303.47-.31.485-.008.013-.019.023-.027.02a20.635 20.636 0 01-.625-1.006c0-.009.012-.033.025-.052a8337.117 8337.482 0 013.846-5.967c.205-.318.266-.429.343-.62a1.95 1.95 0 00.15-.84c-.014-.316-.077-.54-.254-.894-.13-.266-.255-.476-.562-.95-.125-.193-.269-.42-.319-.504a76.564 76.567 0 00-.486-.789c-.764-1.226-.755-1.21-.757-1.35 0-.118.04-.212.128-.307a.67.67 0 01.32-.184.633.633 0 01.294.027zm-4.54 1.215l.2.325c1.091 1.747 1.137 1.824 1.247 2.043.461.919.465 1.832.014 2.735-.096.19-.135.255-.767 1.236-.848 1.32-.947 1.47-.974 1.5-.022.022-.025.024-.025.003 0-.012-.533-.881-1.184-1.93a193.219 193.227 0 01-1.184-1.918c0-.007.554-.858 1.233-1.892a612.753 612.78 0 001.314-2.007.706.706 0 01.096-.127c.007 0 .02.014.03.033zm2.437 6.843a.675.675 0 01.277.26.469.469 0 01.041.153c.01.133-.024.21-.264.588a820.264 820.3 0 01-1.25 1.954l-.125.194c-.022.04-.026.042-.048.026a29.746 29.747 0 01-.605-.97c-.012-.03 1.237-1.975 1.327-2.068a.55.55 0 01.446-.182.436.436 0 01.201.045z" }) + ] + } + ); +}); + +export { SiPm2 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.cjs new file mode 100644 index 000000000..1939e2f55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F69220"; +const SiPnpm = React__namespace.forwardRef(function SiPnpm2({ title = "pnpm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM2 2h3.5v3.5H2zm8.25 0h3.498v3.5H10.25zm8.25 0H22v3.5h-3.5zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zm2 2H22v3.5h-3.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z" }) + ] + } + ); +}); + +exports.default = SiPnpm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.d.ts new file mode 100644 index 000000000..8749c169b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F69220"; +declare const SiPnpm: IconType; +export { SiPnpm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.mjs new file mode 100644 index 000000000..b0fee24e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPnpm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F69220"; +const SiPnpm = React.forwardRef(function SiPnpm2({ title = "pnpm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM2 2h3.5v3.5H2zm8.25 0h3.498v3.5H10.25zm8.25 0H22v3.5h-3.5zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zm2 2H22v3.5h-3.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z" }) + ] + } + ); +}); + +export { SiPnpm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.cjs new file mode 100644 index 000000000..a95274fee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B8DBE4"; +const SiPocketbase = React__namespace.forwardRef(function SiPocketbase2({ title = "PocketBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.684 12a.632.632 0 0 1-.631-.632V4.421c0-.349.282-.632.631-.632h2.37c.46 0 .889.047 1.287.139.407.084.758.23 1.053.44.303.202.541.475.715.82.173.335.26.75.26 1.246 0 .479-.092.894-.273 1.247a2.373 2.373 0 0 1-.715.869 3.11 3.11 0 0 1-1.053.503c-.398.11-.823.164-1.273.164h-.46a.632.632 0 0 0-.632.632v1.52a.632.632 0 0 1-.632.631Zm1.279-4.888c0 .349.283.632.632.632h.343c1.04 0 1.56-.437 1.56-1.31 0-.428-.135-.73-.404-.907-.26-.176-.645-.264-1.156-.264h-.343a.632.632 0 0 0-.632.631Zm6.3 13.098a.632.632 0 0 1-.631-.631v-6.947a.63.63 0 0 1 .631-.632h2.203c.44 0 .845.034 1.216.1.38.06.708.169.984.328.276.16.492.37.647.63.164.26.246.587.246.982 0 .185-.03.37-.09.554a1.537 1.537 0 0 1-.26.516 1.857 1.857 0 0 1-1.076.7.031.031 0 0 0-.023.03c0 .015.01.028.025.03.591.111 1.04.32 1.346.626.311.31.466.743.466 1.297 0 .42-.082.78-.246 1.083a2.153 2.153 0 0 1-.685.755 3.4 3.4 0 0 1-1.036.441 5.477 5.477 0 0 1-1.268.139zm1.271-5.542c0 .349.283.631.632.631h.21c.465 0 .802-.088 1.009-.264.207-.176.31-.424.31-.743 0-.302-.107-.516-.323-.642-.207-.135-.535-.202-.984-.202h-.222a.632.632 0 0 0-.632.632Zm0 3.463c0 .349.283.631.632.631h.39c1.019 0 1.528-.369 1.528-1.108 0-.36-.125-.621-.376-.78-.241-.16-.625-.24-1.152-.24h-.39a.632.632 0 0 0-.632.632zM1.389 0C.629 0 0 .629 0 1.389V15.03a1.4 1.4 0 0 0 1.389 1.39H8.21a.632.632 0 0 0 .63-.632.632.632 0 0 0-.63-.63H1.389c-.078 0-.125-.05-.125-.128V1.39c0-.078.047-.125.125-.125H15.03c.078 0 .127.047.127.125v6.82a.632.632 0 0 0 .631.63.632.632 0 0 0 .633-.63V1.389A1.4 1.4 0 0 0 15.032 0ZM15.79 7.578a.632.632 0 0 0-.632.633.632.632 0 0 0 .631.63h6.822c.078 0 .125.05.125.128V22.61c0 .078-.047.125-.125.125H8.97c-.077 0-.127-.047-.127-.125v-6.82a.632.632 0 0 0-.631-.63.632.632 0 0 0-.633.63v6.822A1.4 1.4 0 0 0 8.968 24h13.643c.76 0 1.389-.629 1.389-1.389V8.97a1.4 1.4 0 0 0-1.389-1.39Z" }) + ] + } + ); +}); + +exports.default = SiPocketbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.d.ts new file mode 100644 index 000000000..a3d791106 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B8DBE4"; +declare const SiPocketbase: IconType; +export { SiPocketbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.mjs new file mode 100644 index 000000000..e169cc692 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B8DBE4"; +const SiPocketbase = React.forwardRef(function SiPocketbase2({ title = "PocketBase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.684 12a.632.632 0 0 1-.631-.632V4.421c0-.349.282-.632.631-.632h2.37c.46 0 .889.047 1.287.139.407.084.758.23 1.053.44.303.202.541.475.715.82.173.335.26.75.26 1.246 0 .479-.092.894-.273 1.247a2.373 2.373 0 0 1-.715.869 3.11 3.11 0 0 1-1.053.503c-.398.11-.823.164-1.273.164h-.46a.632.632 0 0 0-.632.632v1.52a.632.632 0 0 1-.632.631Zm1.279-4.888c0 .349.283.632.632.632h.343c1.04 0 1.56-.437 1.56-1.31 0-.428-.135-.73-.404-.907-.26-.176-.645-.264-1.156-.264h-.343a.632.632 0 0 0-.632.631Zm6.3 13.098a.632.632 0 0 1-.631-.631v-6.947a.63.63 0 0 1 .631-.632h2.203c.44 0 .845.034 1.216.1.38.06.708.169.984.328.276.16.492.37.647.63.164.26.246.587.246.982 0 .185-.03.37-.09.554a1.537 1.537 0 0 1-.26.516 1.857 1.857 0 0 1-1.076.7.031.031 0 0 0-.023.03c0 .015.01.028.025.03.591.111 1.04.32 1.346.626.311.31.466.743.466 1.297 0 .42-.082.78-.246 1.083a2.153 2.153 0 0 1-.685.755 3.4 3.4 0 0 1-1.036.441 5.477 5.477 0 0 1-1.268.139zm1.271-5.542c0 .349.283.631.632.631h.21c.465 0 .802-.088 1.009-.264.207-.176.31-.424.31-.743 0-.302-.107-.516-.323-.642-.207-.135-.535-.202-.984-.202h-.222a.632.632 0 0 0-.632.632Zm0 3.463c0 .349.283.631.632.631h.39c1.019 0 1.528-.369 1.528-1.108 0-.36-.125-.621-.376-.78-.241-.16-.625-.24-1.152-.24h-.39a.632.632 0 0 0-.632.632zM1.389 0C.629 0 0 .629 0 1.389V15.03a1.4 1.4 0 0 0 1.389 1.39H8.21a.632.632 0 0 0 .63-.632.632.632 0 0 0-.63-.63H1.389c-.078 0-.125-.05-.125-.128V1.39c0-.078.047-.125.125-.125H15.03c.078 0 .127.047.127.125v6.82a.632.632 0 0 0 .631.63.632.632 0 0 0 .633-.63V1.389A1.4 1.4 0 0 0 15.032 0ZM15.79 7.578a.632.632 0 0 0-.632.633.632.632 0 0 0 .631.63h6.822c.078 0 .125.05.125.128V22.61c0 .078-.047.125-.125.125H8.97c-.077 0-.127-.047-.127-.125v-6.82a.632.632 0 0 0-.631-.63.632.632 0 0 0-.633.63v6.822A1.4 1.4 0 0 0 8.968 24h13.643c.76 0 1.389-.629 1.389-1.389V8.97a1.4 1.4 0 0 0-1.389-1.39Z" }) + ] + } + ); +}); + +export { SiPocketbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.cjs new file mode 100644 index 000000000..b55a788f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F43E37"; +const SiPocketcasts = React__namespace.forwardRef(function SiPocketcasts2({ title = "Pocket Casts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,0C5.372,0,0,5.372,0,12c0,6.628,5.372,12,12,12c6.628,0,12-5.372,12-12 C24,5.372,18.628,0,12,0z M15.564,12c0-1.968-1.596-3.564-3.564-3.564c-1.968,0-3.564,1.595-3.564,3.564 c0,1.968,1.595,3.564,3.564,3.564V17.6c-3.093,0-5.6-2.507-5.6-5.6c0-3.093,2.507-5.6,5.6-5.6c3.093,0,5.6,2.507,5.6,5.6H15.564z M19,12c0-3.866-3.134-7-7-7c-3.866,0-7,3.134-7,7c0,3.866,3.134,7,7,7v2.333c-5.155,0-9.333-4.179-9.333-9.333 c0-5.155,4.179-9.333,9.333-9.333c5.155,0,9.333,4.179,9.333,9.333H19z" }) + ] + } + ); +}); + +exports.default = SiPocketcasts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.d.ts new file mode 100644 index 000000000..9b671c99b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F43E37"; +declare const SiPocketcasts: IconType; +export { SiPocketcasts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.mjs new file mode 100644 index 000000000..1dee34144 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPocketcasts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F43E37"; +const SiPocketcasts = React.forwardRef(function SiPocketcasts2({ title = "Pocket Casts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,0C5.372,0,0,5.372,0,12c0,6.628,5.372,12,12,12c6.628,0,12-5.372,12-12 C24,5.372,18.628,0,12,0z M15.564,12c0-1.968-1.596-3.564-3.564-3.564c-1.968,0-3.564,1.595-3.564,3.564 c0,1.968,1.595,3.564,3.564,3.564V17.6c-3.093,0-5.6-2.507-5.6-5.6c0-3.093,2.507-5.6,5.6-5.6c3.093,0,5.6,2.507,5.6,5.6H15.564z M19,12c0-3.866-3.134-7-7-7c-3.866,0-7,3.134-7,7c0,3.866,3.134,7,7,7v2.333c-5.155,0-9.333-4.179-9.333-9.333 c0-5.155,4.179-9.333,9.333-9.333c5.155,0,9.333,4.179,9.333,9.333H19z" }) + ] + } + ); +}); + +export { SiPocketcasts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.cjs new file mode 100644 index 000000000..c9712b129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4842D"; +const SiPodcastaddict = React__namespace.forwardRef(function SiPodcastaddict2({ title = "Podcast Addict", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.36.037C2.41.037 0 2.447 0 5.397v13.207c0 2.95 2.41 5.36 5.36 5.36h13.28c2.945 0 5.36-2.41 5.36-5.36V5.396c0-2.95-2.415-5.36-5.36-5.36zm6.585 4.285a7.72 7.72 0 017.717 7.544l.005 7.896h-3.39v-1.326a7.68 7.68 0 01-4.327 1.326 7.777 7.777 0 01-2.384-.378v-4.63a3.647 3.647 0 002.416.91 3.666 3.666 0 003.599-2.97h-1.284a2.416 2.416 0 01-4.73-.66v-.031c0-1.095.728-2.023 1.728-2.316V8.403a3.67 3.67 0 00-2.975 3.6v6.852a7.72 7.72 0 013.625-14.533zm.031 1.87V7.43h.006a4.575 4.575 0 014.573 4.574v.01h1.237v-.01a5.81 5.81 0 00-5.81-5.81zm0 2.149v1.246h.006a2.413 2.413 0 012.415 2.416v.01h1.247v-.01a3.662 3.662 0 00-3.662-3.662zm0 2.252c-.78 0-1.409.629-1.409 1.41 0 .78.629 1.409 1.41 1.409.78 0 1.409-.629 1.409-1.41 0-.78-.629-1.409-1.41-1.409z" }) + ] + } + ); +}); + +exports.default = SiPodcastaddict; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.d.ts new file mode 100644 index 000000000..26df86569 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4842D"; +declare const SiPodcastaddict: IconType; +export { SiPodcastaddict as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.mjs new file mode 100644 index 000000000..060ae49fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastaddict.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4842D"; +const SiPodcastaddict = React.forwardRef(function SiPodcastaddict2({ title = "Podcast Addict", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.36.037C2.41.037 0 2.447 0 5.397v13.207c0 2.95 2.41 5.36 5.36 5.36h13.28c2.945 0 5.36-2.41 5.36-5.36V5.396c0-2.95-2.415-5.36-5.36-5.36zm6.585 4.285a7.72 7.72 0 017.717 7.544l.005 7.896h-3.39v-1.326a7.68 7.68 0 01-4.327 1.326 7.777 7.777 0 01-2.384-.378v-4.63a3.647 3.647 0 002.416.91 3.666 3.666 0 003.599-2.97h-1.284a2.416 2.416 0 01-4.73-.66v-.031c0-1.095.728-2.023 1.728-2.316V8.403a3.67 3.67 0 00-2.975 3.6v6.852a7.72 7.72 0 013.625-14.533zm.031 1.87V7.43h.006a4.575 4.575 0 014.573 4.574v.01h1.237v-.01a5.81 5.81 0 00-5.81-5.81zm0 2.149v1.246h.006a2.413 2.413 0 012.415 2.416v.01h1.247v-.01a3.662 3.662 0 00-3.662-3.662zm0 2.252c-.78 0-1.409.629-1.409 1.41 0 .78.629 1.409 1.41 1.409.78 0 1.409-.629 1.409-1.41 0-.78-.629-1.409-1.41-1.409z" }) + ] + } + ); +}); + +export { SiPodcastaddict as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.cjs new file mode 100644 index 000000000..9d3659e23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F90000"; +const SiPodcastindex = React__namespace.forwardRef(function SiPodcastindex2({ title = "Podcast Index", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.0056.0056c-.2362.0208-.4667.1034-.6462.2366C1.7274 2.2537.1728 4.9759.2924 8.289c.1197 3.1949 1.6743 6.2709 4.067 8.0458.2393.1183.4795.2366.7188.2366.3589 0 .7172-.1182.9564-.4732.4786-.5917.3594-1.3013-.2388-1.6563-1.9142-1.3016-3.1105-3.7863-3.1105-6.1529 0-2.4848 1.0767-4.6157 3.1105-6.154.5982-.355.5977-1.183.2388-1.6562-.2243-.3698-.6353-.508-1.029-.4732Zm13.7533 0c-.314.0295-.613.1774-.7924.4732-.3589.4733-.3593 1.3012.2389 1.6562 2.0338 1.5383 3.1105 3.6692 3.1105 6.154 0 2.3666-1.1964 4.8513-3.1105 6.153-.5982.355-.7174 1.0645-.2389 1.6562.2393.355.5987.4732.9576.4732.2393 0 .4784-.1183.7176-.2366 2.5124-1.775 4.067-4.851 4.067-8.0458.1077-3.3131-1.435-6.0353-4.067-8.0468-.2392-.1775-.5687-.2662-.8828-.2366ZM16.4944 3.558c-.3065.0118-.609.1395-.8303.3761-.4546.4733-.4183 1.2307.0602 1.6686 1.5314 1.408 1.6627 3.7978-.0122 5.3716-.4666.4615-.4904 1.2075-.0357 1.6808.4546.4733 1.2078.4965 1.6863.0469 2.7158-2.5559 2.4881-6.5196-.0122-8.827-.2393-.2248-.5495-.3288-.856-.317zm-8.9933.0067c-.305-.0118-.6167.0914-.856.3103-2.5004 2.3074-2.7269 6.2711-.0111 8.827.4785.4496 1.2317.4264 1.6863-.0469.4547-.4733.4306-1.2189-.048-1.6685-1.6749-1.5738-1.5316-3.9647-.0122-5.3728.4785-.4496.5148-1.194.0602-1.6674-.2153-.2426-.514-.3699-.8192-.3817Zm4.499 2.1496a2.5714 2.5714 0 0 0-2.5715 2.5714 2.5714 2.5714 0 0 0 1.193 2.1696L7.7144 24h2.5246l2.8772-13.4018a2.5714 2.5714 0 0 0 1.4553-2.3125A2.5714 2.5714 0 0 0 12 5.7143Z" }) + ] + } + ); +}); + +exports.default = SiPodcastindex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.d.ts new file mode 100644 index 000000000..cac3a0fe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F90000"; +declare const SiPodcastindex: IconType; +export { SiPodcastindex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.mjs new file mode 100644 index 000000000..2073d87b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodcastindex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F90000"; +const SiPodcastindex = React.forwardRef(function SiPodcastindex2({ title = "Podcast Index", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.0056.0056c-.2362.0208-.4667.1034-.6462.2366C1.7274 2.2537.1728 4.9759.2924 8.289c.1197 3.1949 1.6743 6.2709 4.067 8.0458.2393.1183.4795.2366.7188.2366.3589 0 .7172-.1182.9564-.4732.4786-.5917.3594-1.3013-.2388-1.6563-1.9142-1.3016-3.1105-3.7863-3.1105-6.1529 0-2.4848 1.0767-4.6157 3.1105-6.154.5982-.355.5977-1.183.2388-1.6562-.2243-.3698-.6353-.508-1.029-.4732Zm13.7533 0c-.314.0295-.613.1774-.7924.4732-.3589.4733-.3593 1.3012.2389 1.6562 2.0338 1.5383 3.1105 3.6692 3.1105 6.154 0 2.3666-1.1964 4.8513-3.1105 6.153-.5982.355-.7174 1.0645-.2389 1.6562.2393.355.5987.4732.9576.4732.2393 0 .4784-.1183.7176-.2366 2.5124-1.775 4.067-4.851 4.067-8.0458.1077-3.3131-1.435-6.0353-4.067-8.0468-.2392-.1775-.5687-.2662-.8828-.2366ZM16.4944 3.558c-.3065.0118-.609.1395-.8303.3761-.4546.4733-.4183 1.2307.0602 1.6686 1.5314 1.408 1.6627 3.7978-.0122 5.3716-.4666.4615-.4904 1.2075-.0357 1.6808.4546.4733 1.2078.4965 1.6863.0469 2.7158-2.5559 2.4881-6.5196-.0122-8.827-.2393-.2248-.5495-.3288-.856-.317zm-8.9933.0067c-.305-.0118-.6167.0914-.856.3103-2.5004 2.3074-2.7269 6.2711-.0111 8.827.4785.4496 1.2317.4264 1.6863-.0469.4547-.4733.4306-1.2189-.048-1.6685-1.6749-1.5738-1.5316-3.9647-.0122-5.3728.4785-.4496.5148-1.194.0602-1.6674-.2153-.2426-.514-.3699-.8192-.3817Zm4.499 2.1496a2.5714 2.5714 0 0 0-2.5715 2.5714 2.5714 2.5714 0 0 0 1.193 2.1696L7.7144 24h2.5246l2.8772-13.4018a2.5714 2.5714 0 0 0 1.4553-2.3125A2.5714 2.5714 0 0 0 12 5.7143Z" }) + ] + } + ); +}); + +export { SiPodcastindex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.cjs new file mode 100644 index 000000000..41abc04a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#892CA0"; +const SiPodman = React__namespace.forwardRef(function SiPodman2({ title = "Podman", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.2.275L6.75.308a.259.259 0 0 0-.203.098L.056 8.602a.259.259 0 0 0-.05.219l2.356 10.194a.26.26 0 0 0 .14.174l9.43 4.511a.258.258 0 0 0 .224-.002l9.401-4.566a.259.259 0 0 0 .141-.175L23.993 8.75a.258.258 0 0 0-.051-.22L17.403.374A.259.259 0 0 0 17.2.275zm-.123.517l6.385 7.966-2.242 9.964-9.177 4.457-9.205-4.402L.54 8.827 6.875.824zM11.46 2.857c-.933 0-1.84.1-2.426.332h-.002c-1.554.569-2.725 2.105-3.074 3.952v.004c-.309 1.463-.392 2.703-.556 3.824-.07.481-.159.94-.283 1.387-.628.497-1.079 1.263-1.244 2.138v.004c-.116.547-.181 1.04-.237 1.5h-.644v.518h8.891c-.061.464-.122.996-.181 1.42H7.596v.517h7.939c-.242-.078-.486-.218-.756-.502h-.697l-.85.488-.232-.396.162-.092h-1.069c.113-.776.17-1.601.373-2.564v-.004c.22-1.164.96-2.112 1.895-2.453l.004-.002h.002c.318-.127.928-.205 1.543-.205.613 0 1.244.075 1.622.207.935.341 1.676 1.29 1.895 2.453v.004c.204.963.26 1.788.373 2.564h-.742l.162.092-.233.396-.85-.488h-.75c-.219.25-.474.412-.747.502h4.392v-.518h-.842c-.103-.743-.181-1.67-.382-2.623v-.002a4.14 4.14 0 0 0-.264-.863h1.863v-.517h-2.13a3.488 3.488 0 0 0-.8-.906h1.8v-.518H17.95a8.862 8.862 0 0 1-.193-.775h1.484v-.518h-1.576c-.013-.081-.027-.161-.039-.244-.164-1.12-.246-2.36-.555-3.824v-.004c-.348-1.848-1.52-3.383-3.075-3.952l-.002-.002h-.002c-.65-.227-1.596-.33-2.531-.33zm0 .386c.904 0 1.833.11 2.404.309h.002c1.4.514 2.5 1.934 2.826 3.666v.003c.303 1.436.385 2.66.552 3.805.076.515.173 1.013.315 1.505-.449-.135-1.05-.197-1.648-.197-.12 0-.236.003-.352.008l-1.863-1.865a2.17 2.17 0 0 0 .11-.246l2.13 1.23.13-.224-2.185-1.262c.016-.069.027-.14.036-.21l2.302.616.068-.248-2.354-.63c-.02-1.153-1.008-2.078-2.208-2.078-1.205 0-2.196.931-2.206 2.091l-2.303.617.066.25 2.252-.605c.01.076.024.151.041.224L7.436 11.24l.129.222 2.087-1.207c.034.089.074.176.12.258l-1.266 1.266a6.959 6.959 0 0 0-1.045-.075c-.603 0-1.186.064-1.578.22a2.668 2.668 0 0 0-.285.124c.076-.335.137-.675.187-1.021.168-1.144.248-2.37.551-3.805l.002-.001v-.002c.326-1.733 1.426-3.153 2.828-3.666h.002l.004-.002c.488-.194 1.381-.307 2.287-.307zM8.473 5.194a1.295 1.295 0 0 0-.965.502l-.117.153.306.236.12-.152a.923.923 0 0 1 .673-.352.92.92 0 0 1 .67.262l.139.134.271-.275-.136-.137a1.293 1.293 0 0 0-.961-.37zm6.39 0a1.289 1.289 0 0 0-.96.371l-.138.137.274.275.136-.134a.923.923 0 0 1 .672-.262.923.923 0 0 1 .674.352l.119.152.307-.236-.12-.153c-.23-.3-.587-.486-.964-.502zM8.53 6.708c-.642 0-1.164.538-1.164 1.19 0 .65.522 1.187 1.164 1.187.643 0 1.164-.536 1.164-1.188 0-.651-.521-1.19-1.164-1.19zm6.273 0c-.643 0-1.162.538-1.162 1.19 0 .65.52 1.187 1.162 1.187.643 0 1.164-.536 1.164-1.188 0-.651-.521-1.19-1.164-1.19zm-6.273.387c.428 0 .776.355.776.802 0 .447-.348.8-.776.8a.785.785 0 0 1-.775-.8c0-.035.002-.07.006-.103.07.191.248.318.445.318a.487.487 0 0 0 .477-.496.49.49 0 0 0-.383-.486.759.759 0 0 1 .23-.035zm6.273 0c.428 0 .777.355.777.802 0 .447-.349.8-.777.8a.785.785 0 0 1-.77-.9c.072.19.248.315.444.315a.486.486 0 0 0 .479-.496.491.491 0 0 0-.383-.484.755.755 0 0 1 .23-.037zm-3.08.716c1.012 0 1.819.775 1.819 1.723 0 .947-.807 1.722-1.819 1.722s-1.82-.775-1.82-1.722c0-.948.808-1.723 1.82-1.723zm-.002.528c-.142 0-.258.043-.355.076a.804.804 0 0 1-.232.054c-.107 0-.2.047-.268.127a.568.568 0 0 0-.104.207c-.04.134-.062.268-.08.315a.276.276 0 0 0 .032.25c.033.056.071.1.117.146.09.092.206.183.322.268.12.088.237.166.326.224l-.008.09c-.043.036-.14.102-.324.178a.533.533 0 0 1-.299.025.43.43 0 0 1-.236-.172c.015-.138.044-.293.068-.449l-.376-.095c-.05.238-.067.43-.094.64l.037.059c.143.224.318.344.506.392a.908.908 0 0 0 .52-.033 1.57 1.57 0 0 0 .444-.242c.088.067.244.174.446.242a.908.908 0 0 0 .52.033.868.868 0 0 0 .507-.392l.037-.059a6.292 6.292 0 0 0-.096-.637l-.377.092c.032.148.051.32.07.451a.434.434 0 0 1-.237.17.533.533 0 0 1-.3-.025c-.178-.068-.272-.14-.325-.178l-.006-.084c.09-.058.209-.137.336-.23.115-.085.231-.176.322-.268a.72.72 0 0 0 .117-.146.273.273 0 0 0 .031-.25c-.018-.047-.039-.181-.08-.315a.564.564 0 0 0-.103-.207.343.343 0 0 0-.268-.127.815.815 0 0 1-.234-.054c-.097-.033-.212-.076-.354-.076zm.002.386c.057 0 .134.024.23.057.09.03.208.07.337.076.04.102.06.237.09.338a.361.361 0 0 1-.041.045 2.66 2.66 0 0 1-.276.228c-.165.122-.271.188-.342.233a5.287 5.287 0 0 1-.34-.233 2.557 2.557 0 0 1-.275-.228.34.34 0 0 1-.04-.047c.035-.119.046-.234.089-.34.08.012.246-.042.336-.072a.837.837 0 0 1 .232-.057zm-3.234.61a.635.635 0 0 0-.611.517l1.084-.289a.614.614 0 0 0-.473-.228zm6.336 0a.61.61 0 0 0-.436.187c.352.096.69.184 1.033.275a.632.632 0 0 0-.597-.462zm-.623.607c-.007.035-.002.07-.002.103l.921.532a.648.648 0 0 0 .276-.313l-1.195-.322zm-5.086.05l-1.18.315c.078.15.207.264.362.316l.797-.46c.018-.059.015-.12.021-.17zm4.441.714l1.656 1.658a4.19 4.19 0 0 0-.826.146l-.95-1.647a2.51 2.51 0 0 0 .12-.157zm-3.646.03c.04.055.083.118.129.169l-.658 1.134a2.656 2.656 0 0 0-.276-.119l-.002-.002a3.3 3.3 0 0 0-.292-.082zm3.338.317l.892 1.547c-.623.251-1.149.725-1.523 1.33h-1.652c-.262-.75-.741-1.38-1.358-1.764l.623-1.082c.394.347.919.559 1.492.559a2.25 2.25 0 0 0 1.526-.59zM7.46 12.09c.574 0 1.167.073 1.518.195.867.319 1.555 1.203 1.76 2.285l.001.002v.002c.109.513.173.98.227 1.424H9.86a.386.386 0 0 0-.494 0H9.11a1.351 1.351 0 0 0-.078-.418.799.799 0 0 0 .569.238c.45 0 .814-.375.814-.828a.824.824 0 0 0-.814-.828.822.822 0 0 0-.791 1.016 1.495 1.495 0 0 0-1.18-.559c-.798 0-1.46.611-1.48 1.38h-.342a.386.386 0 0 0-.494 0H4.028c.054-.445.116-.912.224-1.425l.002-.002v-.002c.205-1.084.894-1.97 1.764-2.287h.002l.004-.002c.295-.117.863-.191 1.437-.19zm-1.91 1.105a.898.898 0 0 0-.67.348l-.119.154.307.237.119-.155a.525.525 0 0 1 .379-.197.52.52 0 0 1 .377.147l.138.136.272-.275-.137-.137a.895.895 0 0 0-.666-.258zm4.094 0a.9.9 0 0 0-.668.258l-.137.137.273.275.137-.136a.522.522 0 0 1 .377-.147.525.525 0 0 1 .379.197l.119.155.307-.237-.12-.154a.894.894 0 0 0-.667-.348zm4.222.735a.947.947 0 0 0-.707.365l-.117.154.306.237.12-.155a.568.568 0 0 1 .413-.213.571.571 0 0 1 .414.159l.14.136.27-.275-.138-.137a.942.942 0 0 0-.701-.271zm4.374 0a.942.942 0 0 0-.7.271l-.14.137.272.275.139-.136a.571.571 0 0 1 .414-.159.568.568 0 0 1 .414.213l.119.155.306-.237-.117-.154a.947.947 0 0 0-.707-.365zm-12.65.232a.824.824 0 0 0-.815.828c0 .453.365.828.814.828.45 0 .815-.375.815-.828a.824.824 0 0 0-.815-.828zm5.518.285h1.242a4.137 4.137 0 0 0-.263.864v.002c-.05.237-.092.464-.127.685h-.602a16.77 16.77 0 0 0-.236-1.5l-.002-.002c-.003-.016-.009-.032-.012-.049zm-5.519.102a.43.43 0 0 1 .426.441.43.43 0 0 1-.426.442c-.22 0-.4-.171-.422-.397a.298.298 0 0 0 .215.092.31.31 0 0 0 .305-.316.317.317 0 0 0-.129-.258c.01-.001.02-.004.031-.004zm4.014 0c.235 0 .427.193.427.441a.433.433 0 0 1-.427.442.427.427 0 0 1-.422-.405.3.3 0 0 0 .256.145.31.31 0 0 0 .304-.317.314.314 0 0 0-.207-.298c.023-.004.045-.008.069-.008zm4.304.414a.865.865 0 0 0-.856.87c0 .478.382.874.856.874a.868.868 0 0 0 .857-.873.867.867 0 0 0-.857-.871zm4.292 0a.867.867 0 0 0-.814 1.14 1.597 1.597 0 0 0-1.295-.652c-.846 0-1.546.65-1.568 1.463l-1.525.408.066.248 1.477-.394c.004.028.009.06.015.087l-1.418.817.131.222 1.367-.789c.235.552.801.94 1.455.94.66 0 1.233-.397 1.463-.957l1.398.806.13-.222-1.45-.836c.005-.025.008-.053.012-.078l1.511.404.067-.248-1.563-.418a1.438 1.438 0 0 0-.107-.5c.157.186.39.303.648.303a.867.867 0 0 0 .856-.873.865.865 0 0 0-.856-.871zm-10.567.043c.598 0 1.071.444 1.092.992h-.41c.007-.01.016-.02.023-.033a.24.24 0 0 0 .025-.22c-.005-.016-.021-.102-.05-.196a.416.416 0 0 0-.078-.156.282.282 0 0 0-.225-.108.499.499 0 0 1-.129-.031c-.062-.021-.142-.05-.248-.05-.106 0-.188.029-.25.05a.49.49 0 0 1-.127.031.29.29 0 0 0-.225.108.424.424 0 0 0-.08.156c-.029.094-.043.18-.048.195a.242.242 0 0 0 .023.22c.008.014.017.023.025.034h-.41c.02-.548.494-.992 1.092-.992zm6.275.344c.259 0 .47.211.47.484a.477.477 0 0 1-.47.486.472.472 0 0 1-.467-.453.322.322 0 0 0 .246.115c.18 0 .326-.15.326-.338a.34.34 0 0 0-.156-.289c.017-.002.033-.005.05-.005zm4.292 0c.26 0 .469.211.469.484 0 .272-.21.486-.469.486a.477.477 0 0 1-.47-.486c0-.016.002-.031.004-.047a.33.33 0 0 0 .312.24c.18 0 .326-.15.326-.338a.338.338 0 0 0-.256-.332.475.475 0 0 1 .084-.007zm-10.567.24c.021 0 .063.01.125.031.086.03.117.039.186.049.012.041.022.088.033.129a1.475 1.475 0 0 1-.168.138c-.038.028-.064.045-.088.061h-.176c-.024-.016-.052-.033-.09-.06a1.602 1.602 0 0 1-.168-.14l.034-.128c.107-.014.146-.04.185-.049a.504.504 0 0 1 .127-.031zm8.458.25c.661 0 1.184.502 1.184 1.113 0 .156-.035.304-.096.44l-.002-.024-.022-.156a2.443 2.443 0 0 0-.04-.24l-.377.093.044.274a.24.24 0 0 1-.115.074.299.299 0 0 1-.168-.014c-.087-.03-.132-.063-.18-.094.057-.037.13-.084.198-.134.08-.06.16-.123.226-.19a.542.542 0 0 0 .092-.111.245.245 0 0 0 .026-.225c-.008-.019-.022-.112-.053-.21a.444.444 0 0 0-.084-.163.286.286 0 0 0-.23-.107.566.566 0 0 1-.14-.037c-.065-.022-.152-.055-.263-.055-.11 0-.195.032-.262.055a.575.575 0 0 1-.14.037.294.294 0 0 0-.23.107.436.436 0 0 0-.083.162c-.03.1-.045.192-.052.211a.246.246 0 0 0 .025.225.534.534 0 0 0 .09.111c.066.067.146.13.226.19.068.05.138.095.194.132a.57.57 0 0 1-.18.096.305.305 0 0 1-.17.014.237.237 0 0 1-.111-.076c.008-.09.026-.177.04-.272l-.376-.094c-.032.146-.045.286-.063.409a1.052 1.052 0 0 1-.09-.428c0-.611.521-1.113 1.182-1.113zm0 .623c.026 0 .074.01.14.033.066.025.169.052.206.055l.035.156c-.04.04-.112.1-.184.152-.095.07-.14.095-.197.131-.056-.036-.1-.061-.195-.13a1.236 1.236 0 0 1-.184-.157l.035-.152a1.04 1.04 0 0 0 .206-.055.523.523 0 0 1 .138-.033zm-2.22.353a.43.43 0 0 0-.385.272l.656-.176a.416.416 0 0 0-.271-.096zm4.333 0a.414.414 0 0 0-.22.07l.603.16a.426.426 0 0 0-.383-.23zm-4.054.567l-.607.162a.436.436 0 0 0 .125.113zm3.925.002l.407.234a.443.443 0 0 0 .087-.102zm-1.986.234c.067.047.165.108.285.148a.68.68 0 0 0 .389.024.57.57 0 0 0 .232-.121 1.201 1.201 0 0 1-.904.394c-.356 0-.67-.145-.885-.375a.58.58 0 0 0 .207.102c.144.036.28.014.391-.024.12-.04.218-.1.285-.148zm-9.524 1.61v.517h6.214v-.518zm3.619 1.292v.517H15.3v-.517z" }) + ] + } + ); +}); + +exports.default = SiPodman; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.d.ts new file mode 100644 index 000000000..3b17776dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#892CA0"; +declare const SiPodman: IconType; +export { SiPodman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.mjs new file mode 100644 index 000000000..c8e9397b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPodman.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#892CA0"; +const SiPodman = React.forwardRef(function SiPodman2({ title = "Podman", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.2.275L6.75.308a.259.259 0 0 0-.203.098L.056 8.602a.259.259 0 0 0-.05.219l2.356 10.194a.26.26 0 0 0 .14.174l9.43 4.511a.258.258 0 0 0 .224-.002l9.401-4.566a.259.259 0 0 0 .141-.175L23.993 8.75a.258.258 0 0 0-.051-.22L17.403.374A.259.259 0 0 0 17.2.275zm-.123.517l6.385 7.966-2.242 9.964-9.177 4.457-9.205-4.402L.54 8.827 6.875.824zM11.46 2.857c-.933 0-1.84.1-2.426.332h-.002c-1.554.569-2.725 2.105-3.074 3.952v.004c-.309 1.463-.392 2.703-.556 3.824-.07.481-.159.94-.283 1.387-.628.497-1.079 1.263-1.244 2.138v.004c-.116.547-.181 1.04-.237 1.5h-.644v.518h8.891c-.061.464-.122.996-.181 1.42H7.596v.517h7.939c-.242-.078-.486-.218-.756-.502h-.697l-.85.488-.232-.396.162-.092h-1.069c.113-.776.17-1.601.373-2.564v-.004c.22-1.164.96-2.112 1.895-2.453l.004-.002h.002c.318-.127.928-.205 1.543-.205.613 0 1.244.075 1.622.207.935.341 1.676 1.29 1.895 2.453v.004c.204.963.26 1.788.373 2.564h-.742l.162.092-.233.396-.85-.488h-.75c-.219.25-.474.412-.747.502h4.392v-.518h-.842c-.103-.743-.181-1.67-.382-2.623v-.002a4.14 4.14 0 0 0-.264-.863h1.863v-.517h-2.13a3.488 3.488 0 0 0-.8-.906h1.8v-.518H17.95a8.862 8.862 0 0 1-.193-.775h1.484v-.518h-1.576c-.013-.081-.027-.161-.039-.244-.164-1.12-.246-2.36-.555-3.824v-.004c-.348-1.848-1.52-3.383-3.075-3.952l-.002-.002h-.002c-.65-.227-1.596-.33-2.531-.33zm0 .386c.904 0 1.833.11 2.404.309h.002c1.4.514 2.5 1.934 2.826 3.666v.003c.303 1.436.385 2.66.552 3.805.076.515.173 1.013.315 1.505-.449-.135-1.05-.197-1.648-.197-.12 0-.236.003-.352.008l-1.863-1.865a2.17 2.17 0 0 0 .11-.246l2.13 1.23.13-.224-2.185-1.262c.016-.069.027-.14.036-.21l2.302.616.068-.248-2.354-.63c-.02-1.153-1.008-2.078-2.208-2.078-1.205 0-2.196.931-2.206 2.091l-2.303.617.066.25 2.252-.605c.01.076.024.151.041.224L7.436 11.24l.129.222 2.087-1.207c.034.089.074.176.12.258l-1.266 1.266a6.959 6.959 0 0 0-1.045-.075c-.603 0-1.186.064-1.578.22a2.668 2.668 0 0 0-.285.124c.076-.335.137-.675.187-1.021.168-1.144.248-2.37.551-3.805l.002-.001v-.002c.326-1.733 1.426-3.153 2.828-3.666h.002l.004-.002c.488-.194 1.381-.307 2.287-.307zM8.473 5.194a1.295 1.295 0 0 0-.965.502l-.117.153.306.236.12-.152a.923.923 0 0 1 .673-.352.92.92 0 0 1 .67.262l.139.134.271-.275-.136-.137a1.293 1.293 0 0 0-.961-.37zm6.39 0a1.289 1.289 0 0 0-.96.371l-.138.137.274.275.136-.134a.923.923 0 0 1 .672-.262.923.923 0 0 1 .674.352l.119.152.307-.236-.12-.153c-.23-.3-.587-.486-.964-.502zM8.53 6.708c-.642 0-1.164.538-1.164 1.19 0 .65.522 1.187 1.164 1.187.643 0 1.164-.536 1.164-1.188 0-.651-.521-1.19-1.164-1.19zm6.273 0c-.643 0-1.162.538-1.162 1.19 0 .65.52 1.187 1.162 1.187.643 0 1.164-.536 1.164-1.188 0-.651-.521-1.19-1.164-1.19zm-6.273.387c.428 0 .776.355.776.802 0 .447-.348.8-.776.8a.785.785 0 0 1-.775-.8c0-.035.002-.07.006-.103.07.191.248.318.445.318a.487.487 0 0 0 .477-.496.49.49 0 0 0-.383-.486.759.759 0 0 1 .23-.035zm6.273 0c.428 0 .777.355.777.802 0 .447-.349.8-.777.8a.785.785 0 0 1-.77-.9c.072.19.248.315.444.315a.486.486 0 0 0 .479-.496.491.491 0 0 0-.383-.484.755.755 0 0 1 .23-.037zm-3.08.716c1.012 0 1.819.775 1.819 1.723 0 .947-.807 1.722-1.819 1.722s-1.82-.775-1.82-1.722c0-.948.808-1.723 1.82-1.723zm-.002.528c-.142 0-.258.043-.355.076a.804.804 0 0 1-.232.054c-.107 0-.2.047-.268.127a.568.568 0 0 0-.104.207c-.04.134-.062.268-.08.315a.276.276 0 0 0 .032.25c.033.056.071.1.117.146.09.092.206.183.322.268.12.088.237.166.326.224l-.008.09c-.043.036-.14.102-.324.178a.533.533 0 0 1-.299.025.43.43 0 0 1-.236-.172c.015-.138.044-.293.068-.449l-.376-.095c-.05.238-.067.43-.094.64l.037.059c.143.224.318.344.506.392a.908.908 0 0 0 .52-.033 1.57 1.57 0 0 0 .444-.242c.088.067.244.174.446.242a.908.908 0 0 0 .52.033.868.868 0 0 0 .507-.392l.037-.059a6.292 6.292 0 0 0-.096-.637l-.377.092c.032.148.051.32.07.451a.434.434 0 0 1-.237.17.533.533 0 0 1-.3-.025c-.178-.068-.272-.14-.325-.178l-.006-.084c.09-.058.209-.137.336-.23.115-.085.231-.176.322-.268a.72.72 0 0 0 .117-.146.273.273 0 0 0 .031-.25c-.018-.047-.039-.181-.08-.315a.564.564 0 0 0-.103-.207.343.343 0 0 0-.268-.127.815.815 0 0 1-.234-.054c-.097-.033-.212-.076-.354-.076zm.002.386c.057 0 .134.024.23.057.09.03.208.07.337.076.04.102.06.237.09.338a.361.361 0 0 1-.041.045 2.66 2.66 0 0 1-.276.228c-.165.122-.271.188-.342.233a5.287 5.287 0 0 1-.34-.233 2.557 2.557 0 0 1-.275-.228.34.34 0 0 1-.04-.047c.035-.119.046-.234.089-.34.08.012.246-.042.336-.072a.837.837 0 0 1 .232-.057zm-3.234.61a.635.635 0 0 0-.611.517l1.084-.289a.614.614 0 0 0-.473-.228zm6.336 0a.61.61 0 0 0-.436.187c.352.096.69.184 1.033.275a.632.632 0 0 0-.597-.462zm-.623.607c-.007.035-.002.07-.002.103l.921.532a.648.648 0 0 0 .276-.313l-1.195-.322zm-5.086.05l-1.18.315c.078.15.207.264.362.316l.797-.46c.018-.059.015-.12.021-.17zm4.441.714l1.656 1.658a4.19 4.19 0 0 0-.826.146l-.95-1.647a2.51 2.51 0 0 0 .12-.157zm-3.646.03c.04.055.083.118.129.169l-.658 1.134a2.656 2.656 0 0 0-.276-.119l-.002-.002a3.3 3.3 0 0 0-.292-.082zm3.338.317l.892 1.547c-.623.251-1.149.725-1.523 1.33h-1.652c-.262-.75-.741-1.38-1.358-1.764l.623-1.082c.394.347.919.559 1.492.559a2.25 2.25 0 0 0 1.526-.59zM7.46 12.09c.574 0 1.167.073 1.518.195.867.319 1.555 1.203 1.76 2.285l.001.002v.002c.109.513.173.98.227 1.424H9.86a.386.386 0 0 0-.494 0H9.11a1.351 1.351 0 0 0-.078-.418.799.799 0 0 0 .569.238c.45 0 .814-.375.814-.828a.824.824 0 0 0-.814-.828.822.822 0 0 0-.791 1.016 1.495 1.495 0 0 0-1.18-.559c-.798 0-1.46.611-1.48 1.38h-.342a.386.386 0 0 0-.494 0H4.028c.054-.445.116-.912.224-1.425l.002-.002v-.002c.205-1.084.894-1.97 1.764-2.287h.002l.004-.002c.295-.117.863-.191 1.437-.19zm-1.91 1.105a.898.898 0 0 0-.67.348l-.119.154.307.237.119-.155a.525.525 0 0 1 .379-.197.52.52 0 0 1 .377.147l.138.136.272-.275-.137-.137a.895.895 0 0 0-.666-.258zm4.094 0a.9.9 0 0 0-.668.258l-.137.137.273.275.137-.136a.522.522 0 0 1 .377-.147.525.525 0 0 1 .379.197l.119.155.307-.237-.12-.154a.894.894 0 0 0-.667-.348zm4.222.735a.947.947 0 0 0-.707.365l-.117.154.306.237.12-.155a.568.568 0 0 1 .413-.213.571.571 0 0 1 .414.159l.14.136.27-.275-.138-.137a.942.942 0 0 0-.701-.271zm4.374 0a.942.942 0 0 0-.7.271l-.14.137.272.275.139-.136a.571.571 0 0 1 .414-.159.568.568 0 0 1 .414.213l.119.155.306-.237-.117-.154a.947.947 0 0 0-.707-.365zm-12.65.232a.824.824 0 0 0-.815.828c0 .453.365.828.814.828.45 0 .815-.375.815-.828a.824.824 0 0 0-.815-.828zm5.518.285h1.242a4.137 4.137 0 0 0-.263.864v.002c-.05.237-.092.464-.127.685h-.602a16.77 16.77 0 0 0-.236-1.5l-.002-.002c-.003-.016-.009-.032-.012-.049zm-5.519.102a.43.43 0 0 1 .426.441.43.43 0 0 1-.426.442c-.22 0-.4-.171-.422-.397a.298.298 0 0 0 .215.092.31.31 0 0 0 .305-.316.317.317 0 0 0-.129-.258c.01-.001.02-.004.031-.004zm4.014 0c.235 0 .427.193.427.441a.433.433 0 0 1-.427.442.427.427 0 0 1-.422-.405.3.3 0 0 0 .256.145.31.31 0 0 0 .304-.317.314.314 0 0 0-.207-.298c.023-.004.045-.008.069-.008zm4.304.414a.865.865 0 0 0-.856.87c0 .478.382.874.856.874a.868.868 0 0 0 .857-.873.867.867 0 0 0-.857-.871zm4.292 0a.867.867 0 0 0-.814 1.14 1.597 1.597 0 0 0-1.295-.652c-.846 0-1.546.65-1.568 1.463l-1.525.408.066.248 1.477-.394c.004.028.009.06.015.087l-1.418.817.131.222 1.367-.789c.235.552.801.94 1.455.94.66 0 1.233-.397 1.463-.957l1.398.806.13-.222-1.45-.836c.005-.025.008-.053.012-.078l1.511.404.067-.248-1.563-.418a1.438 1.438 0 0 0-.107-.5c.157.186.39.303.648.303a.867.867 0 0 0 .856-.873.865.865 0 0 0-.856-.871zm-10.567.043c.598 0 1.071.444 1.092.992h-.41c.007-.01.016-.02.023-.033a.24.24 0 0 0 .025-.22c-.005-.016-.021-.102-.05-.196a.416.416 0 0 0-.078-.156.282.282 0 0 0-.225-.108.499.499 0 0 1-.129-.031c-.062-.021-.142-.05-.248-.05-.106 0-.188.029-.25.05a.49.49 0 0 1-.127.031.29.29 0 0 0-.225.108.424.424 0 0 0-.08.156c-.029.094-.043.18-.048.195a.242.242 0 0 0 .023.22c.008.014.017.023.025.034h-.41c.02-.548.494-.992 1.092-.992zm6.275.344c.259 0 .47.211.47.484a.477.477 0 0 1-.47.486.472.472 0 0 1-.467-.453.322.322 0 0 0 .246.115c.18 0 .326-.15.326-.338a.34.34 0 0 0-.156-.289c.017-.002.033-.005.05-.005zm4.292 0c.26 0 .469.211.469.484 0 .272-.21.486-.469.486a.477.477 0 0 1-.47-.486c0-.016.002-.031.004-.047a.33.33 0 0 0 .312.24c.18 0 .326-.15.326-.338a.338.338 0 0 0-.256-.332.475.475 0 0 1 .084-.007zm-10.567.24c.021 0 .063.01.125.031.086.03.117.039.186.049.012.041.022.088.033.129a1.475 1.475 0 0 1-.168.138c-.038.028-.064.045-.088.061h-.176c-.024-.016-.052-.033-.09-.06a1.602 1.602 0 0 1-.168-.14l.034-.128c.107-.014.146-.04.185-.049a.504.504 0 0 1 .127-.031zm8.458.25c.661 0 1.184.502 1.184 1.113 0 .156-.035.304-.096.44l-.002-.024-.022-.156a2.443 2.443 0 0 0-.04-.24l-.377.093.044.274a.24.24 0 0 1-.115.074.299.299 0 0 1-.168-.014c-.087-.03-.132-.063-.18-.094.057-.037.13-.084.198-.134.08-.06.16-.123.226-.19a.542.542 0 0 0 .092-.111.245.245 0 0 0 .026-.225c-.008-.019-.022-.112-.053-.21a.444.444 0 0 0-.084-.163.286.286 0 0 0-.23-.107.566.566 0 0 1-.14-.037c-.065-.022-.152-.055-.263-.055-.11 0-.195.032-.262.055a.575.575 0 0 1-.14.037.294.294 0 0 0-.23.107.436.436 0 0 0-.083.162c-.03.1-.045.192-.052.211a.246.246 0 0 0 .025.225.534.534 0 0 0 .09.111c.066.067.146.13.226.19.068.05.138.095.194.132a.57.57 0 0 1-.18.096.305.305 0 0 1-.17.014.237.237 0 0 1-.111-.076c.008-.09.026-.177.04-.272l-.376-.094c-.032.146-.045.286-.063.409a1.052 1.052 0 0 1-.09-.428c0-.611.521-1.113 1.182-1.113zm0 .623c.026 0 .074.01.14.033.066.025.169.052.206.055l.035.156c-.04.04-.112.1-.184.152-.095.07-.14.095-.197.131-.056-.036-.1-.061-.195-.13a1.236 1.236 0 0 1-.184-.157l.035-.152a1.04 1.04 0 0 0 .206-.055.523.523 0 0 1 .138-.033zm-2.22.353a.43.43 0 0 0-.385.272l.656-.176a.416.416 0 0 0-.271-.096zm4.333 0a.414.414 0 0 0-.22.07l.603.16a.426.426 0 0 0-.383-.23zm-4.054.567l-.607.162a.436.436 0 0 0 .125.113zm3.925.002l.407.234a.443.443 0 0 0 .087-.102zm-1.986.234c.067.047.165.108.285.148a.68.68 0 0 0 .389.024.57.57 0 0 0 .232-.121 1.201 1.201 0 0 1-.904.394c-.356 0-.67-.145-.885-.375a.58.58 0 0 0 .207.102c.144.036.28.014.391-.024.12-.04.218-.1.285-.148zm-9.524 1.61v.517h6.214v-.518zm3.619 1.292v.517H15.3v-.517z" }) + ] + } + ); +}); + +export { SiPodman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.cjs new file mode 100644 index 000000000..016464c6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5D5CDE"; +const SiPoe = React__namespace.forwardRef(function SiPoe2({ title = "Poe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12.513V8.36c0-.888-.717-1.608-1.603-1.615h-.013c-.498-.009-1.194-.123-1.688-.619-.44-.439-.584-1.172-.622-1.783l-.001.003c-.002-.014-.002-.03-.003-.044l-.001-.03a1.616 1.616 0 0 0-1.607-1.45H5.54a1.59 1.59 0 0 0-.164.008l-.055.009c-.034.004-.068.008-.102.015l-.069.017c-.028.008-.056.013-.083.022-.024.007-.045.015-.07.024-.026.01-.053.018-.08.03-.021.008-.042.02-.063.029-.027.013-.054.024-.08.038l-.059.034c-.025.015-.052.03-.077.047a.967.967 0 0 0-.061.045c-.021.015-.044.03-.065.05a1.21 1.21 0 0 0-.099.09c-.006.005-.013.01-.018.016l-.014.016a1.59 1.59 0 0 0-.094.102c-.017.02-.03.042-.046.062-.016.021-.033.042-.047.063l-.045.074-.037.062-.036.076a.682.682 0 0 0-.058.143l-.027.075-.02.074a.773.773 0 0 0-.018.078c-.006.03-.009.058-.013.088-.003.022-.008.045-.01.069-.003.022-.003.045-.004.068l-.002-.002c-.036.61-.182 1.345-.62 1.784-.496.495-1.191.61-1.69.618h-.012c-.05 0-.1.003-.147.007a1.27 1.27 0 0 0-.072.012c-.029.004-.057.007-.084.012l-.082.02-.072.018c-.026.009-.052.019-.079.027-.024.009-.048.016-.07.026-.024.01-.048.022-.072.034a.767.767 0 0 0-.072.033l-.068.04-.068.041a1.228 1.228 0 0 0-.072.054c-.018.014-.037.026-.053.04a1.627 1.627 0 0 0-.226.227c-.015.016-.027.036-.041.053a1.398 1.398 0 0 0-.054.074c-.016.022-.028.045-.041.067L.19 7.6c-.012.023-.022.047-.033.07l-.034.073c-.01.024-.017.046-.026.07-.01.027-.02.053-.027.08-.007.023-.012.047-.018.071l-.02.082-.012.084c-.003.024-.009.048-.01.072-.007.052-.01.106-.01.16v4.152c0 .888.717 1.609 1.603 1.616h.01c.5.008 1.196.123 1.69.618.43.43.577 1.143.618 1.746v4.13c0 .524.66.754.986.346l2.333-2.92h11.22c.861 0 1.563-.675 1.611-1.524l.001.003c.037-.61.183-1.344.622-1.783.495-.496 1.19-.61 1.689-.619h.012c.044 0 .088-.003.132-.007l.022-.001A1.613 1.613 0 0 0 24 12.513zm-3.85 1.69c-.502.503-1.215.613-1.717.619H5.566c-.501-.006-1.215-.114-1.717-.618-.408-.409-.565-1.117-.618-1.744V8.415c.052-.627.209-1.337.618-1.745.503-.503 1.216-.613 1.717-.619h12.867c.502.006 1.216.115 1.718.619.409.41.564 1.117.618 1.744v4.041c-.052.63-.209 1.339-.618 1.749zM8.424 7.99c-.892 0-1.615.723-1.615 1.615v1.616a1.615 1.615 0 1 0 3.23 0V9.604c0-.892-.723-1.615-1.615-1.615Zm7.154 0c-.893 0-1.616.723-1.616 1.615v1.616a1.615 1.615 0 1 0 3.231 0V9.604c0-.892-.723-1.615-1.615-1.615z" }) + ] + } + ); +}); + +exports.default = SiPoe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.d.ts new file mode 100644 index 000000000..d5c9f1d44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5D5CDE"; +declare const SiPoe: IconType; +export { SiPoe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.mjs new file mode 100644 index 000000000..e2eddbaba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5D5CDE"; +const SiPoe = React.forwardRef(function SiPoe2({ title = "Poe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12.513V8.36c0-.888-.717-1.608-1.603-1.615h-.013c-.498-.009-1.194-.123-1.688-.619-.44-.439-.584-1.172-.622-1.783l-.001.003c-.002-.014-.002-.03-.003-.044l-.001-.03a1.616 1.616 0 0 0-1.607-1.45H5.54a1.59 1.59 0 0 0-.164.008l-.055.009c-.034.004-.068.008-.102.015l-.069.017c-.028.008-.056.013-.083.022-.024.007-.045.015-.07.024-.026.01-.053.018-.08.03-.021.008-.042.02-.063.029-.027.013-.054.024-.08.038l-.059.034c-.025.015-.052.03-.077.047a.967.967 0 0 0-.061.045c-.021.015-.044.03-.065.05a1.21 1.21 0 0 0-.099.09c-.006.005-.013.01-.018.016l-.014.016a1.59 1.59 0 0 0-.094.102c-.017.02-.03.042-.046.062-.016.021-.033.042-.047.063l-.045.074-.037.062-.036.076a.682.682 0 0 0-.058.143l-.027.075-.02.074a.773.773 0 0 0-.018.078c-.006.03-.009.058-.013.088-.003.022-.008.045-.01.069-.003.022-.003.045-.004.068l-.002-.002c-.036.61-.182 1.345-.62 1.784-.496.495-1.191.61-1.69.618h-.012c-.05 0-.1.003-.147.007a1.27 1.27 0 0 0-.072.012c-.029.004-.057.007-.084.012l-.082.02-.072.018c-.026.009-.052.019-.079.027-.024.009-.048.016-.07.026-.024.01-.048.022-.072.034a.767.767 0 0 0-.072.033l-.068.04-.068.041a1.228 1.228 0 0 0-.072.054c-.018.014-.037.026-.053.04a1.627 1.627 0 0 0-.226.227c-.015.016-.027.036-.041.053a1.398 1.398 0 0 0-.054.074c-.016.022-.028.045-.041.067L.19 7.6c-.012.023-.022.047-.033.07l-.034.073c-.01.024-.017.046-.026.07-.01.027-.02.053-.027.08-.007.023-.012.047-.018.071l-.02.082-.012.084c-.003.024-.009.048-.01.072-.007.052-.01.106-.01.16v4.152c0 .888.717 1.609 1.603 1.616h.01c.5.008 1.196.123 1.69.618.43.43.577 1.143.618 1.746v4.13c0 .524.66.754.986.346l2.333-2.92h11.22c.861 0 1.563-.675 1.611-1.524l.001.003c.037-.61.183-1.344.622-1.783.495-.496 1.19-.61 1.689-.619h.012c.044 0 .088-.003.132-.007l.022-.001A1.613 1.613 0 0 0 24 12.513zm-3.85 1.69c-.502.503-1.215.613-1.717.619H5.566c-.501-.006-1.215-.114-1.717-.618-.408-.409-.565-1.117-.618-1.744V8.415c.052-.627.209-1.337.618-1.745.503-.503 1.216-.613 1.717-.619h12.867c.502.006 1.216.115 1.718.619.409.41.564 1.117.618 1.744v4.041c-.052.63-.209 1.339-.618 1.749zM8.424 7.99c-.892 0-1.615.723-1.615 1.615v1.616a1.615 1.615 0 1 0 3.23 0V9.604c0-.892-.723-1.615-1.615-1.615Zm7.154 0c-.893 0-1.616.723-1.616 1.615v1.616a1.615 1.615 0 1 0 3.231 0V9.604c0-.892-.723-1.615-1.615-1.615z" }) + ] + } + ); +}); + +export { SiPoe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.cjs new file mode 100644 index 000000000..d6734bc4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#60A5FA"; +const SiPoetry = React__namespace.forwardRef(function SiPoetry2({ title = "Poetry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.604 0a19.144 19.144 0 0 1-5.268 13.213L2.396 0l13.583 13.583a19.149 19.149 0 0 1-13.583 5.624V0h19.208Zm-1.911 17.297A24.455 24.455 0 0 1 7.189 24l-4.053-4.053a19.91 19.91 0 0 0 13.37-5.838l3.187 3.188Z" }) + ] + } + ); +}); + +exports.default = SiPoetry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.d.ts new file mode 100644 index 000000000..8b140a620 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#60A5FA"; +declare const SiPoetry: IconType; +export { SiPoetry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.mjs new file mode 100644 index 000000000..bd750ebf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoetry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#60A5FA"; +const SiPoetry = React.forwardRef(function SiPoetry2({ title = "Poetry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.604 0a19.144 19.144 0 0 1-5.268 13.213L2.396 0l13.583 13.583a19.149 19.149 0 0 1-13.583 5.624V0h19.208Zm-1.911 17.297A24.455 24.455 0 0 1 7.189 24l-4.053-4.053a19.91 19.91 0 0 0 13.37-5.838l3.187 3.188Z" }) + ] + } + ); +}); + +export { SiPoetry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.cjs new file mode 100644 index 000000000..b5f8c6f68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0075FF"; +const SiPolars = React__namespace.forwardRef(function SiPolars2({ title = "Polars", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.954 7.714h.434c.106 0 .193.087.193.197v3.726a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.193V7.911c0-.11.087-.197.197-.197zm1.213 1.085h.435c.105 0 .192.087.192.196v2.521a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193v-2.52c0-.114.087-.197.197-.197zm1.206 1.383h.43c.11 0 .197.087.197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.197-.196v-.718a.189.189 0 0 1 .197-.19zm-3.629-2.827h.431a.197.197 0 0 1 .197.196v.719a.197.197 0 0 1-.197.189h-.435a.197.197 0 0 1-.196-.19v-.718a.197.197 0 0 1 .196-.196Zm0 1.444h.431a.197.197 0 0 1 .197.196v.658a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.193v-.658a.197.197 0 0 1 .196-.196zm0 1.387h.431a.197.197 0 0 1 .197.193v1.08a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.192v-1.081a.197.197 0 0 1 .196-.193zm-1.24-3.133h.435a.197.197 0 0 1 .193.196v1.138a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V7.249a.197.197 0 0 1 .197-.196Zm0 1.927h.435a.197.197 0 0 1 .193.197v2.162a.197.197 0 0 1-.193.192h-.434a.197.197 0 0 1-.197-.192V9.177a.197.197 0 0 1 .197-.197ZM17.3 6.694h.435a.197.197 0 0 1 .196.192v4.574a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.192V6.886a.197.197 0 0 1 .197-.192zm0 10.174h.435a.197.197 0 0 1 .196.197v.718a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.196v-.718a.197.197 0 0 1 .197-.19zm-1.24-.964h.435a.197.197 0 0 1 .196.197v1.678a.197.197 0 0 1-.196.196h-.431a.197.197 0 0 1-.193-.196V16.1a.197.197 0 0 1 .193-.197zm0-5.117h.435a.197.197 0 0 1 .196.196v1.134a.197.197 0 0 1-.196.2h-.431a.197.197 0 0 1-.193-.196v-1.138a.197.197 0 0 1 .193-.196zm0-4.396h.435a.197.197 0 0 1 .196.197v3.605a.197.197 0 0 1-.196.197h-.431a.197.197 0 0 1-.193-.197V6.588a.197.197 0 0 1 .193-.197zm-1.22.06h.434a.197.197 0 0 1 .197.197V8.75a.197.197 0 0 1-.197.192h-.435a.197.197 0 0 1-.192-.192V6.648a.197.197 0 0 1 .192-.196zm0 2.892h.434a.197.197 0 0 1 .197.193v6.138a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.192-.196V9.536a.197.197 0 0 1 .192-.193Zm0 6.924h.434a.197.197 0 0 1 .197.193v1.14a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.192-.193v-1.14a.197.197 0 0 1 .192-.193zm-1.21-9.638h.43a.197.197 0 0 1 .197.2v4.925a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197V6.83a.197.197 0 0 1 .193-.197Zm0 5.722h.43a.197.197 0 0 1 .197.197v3.908a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-3.908a.197.197 0 0 1 .193-.197Zm-1.217-5.9h.435a.197.197 0 0 1 .192.197v3.179a.197.197 0 0 1-.192.196h-.435a.197.197 0 0 1-.197-.196V6.652a.197.197 0 0 1 .197-.197zm0 3.977h.435a.197.197 0 0 1 .192.192v2.646a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193V10.62a.197.197 0 0 1 .197-.192zm0 3.428h.435a.197.197 0 0 1 .192.196v1.198a.197.197 0 0 1-.192.197h-.435a.197.197 0 0 1-.197-.197v-1.198a.197.197 0 0 1 .197-.196zm-1.22-7.522h.434a.197.197 0 0 1 .196.19v1.443a.197.197 0 0 1-.196.193h-.439a.197.197 0 0 1-.196-.193v-1.44a.197.197 0 0 1 .196-.196zm0 2.227h.434a.197.197 0 0 1 .196.192v5.534a.197.197 0 0 1-.196.196h-.439a.197.197 0 0 1-.196-.196V8.753a.197.197 0 0 1 .196-.192Zm-1.225 8.182h.434a.197.197 0 0 1 .197.197v.835a.197.197 0 0 1-.197.197h-.434a.197.197 0 0 1-.193-.197v-.835a.197.197 0 0 1 .193-.197zm0-10.658h.434a.197.197 0 0 1 .197.197v5.113a.197.197 0 0 1-.197.193h-.434a.197.197 0 0 1-.193-.193v-5.11a.197.197 0 0 1 .193-.196Zm0 5.904h.434a.197.197 0 0 1 .197.192v2.102a.197.197 0 0 1-.197.196h-.434a.197.197 0 0 1-.193-.196V12.18a.197.197 0 0 1 .193-.192zm-1.221 3.855h.434a.197.197 0 0 1 .193.189v1.742a.197.197 0 0 1-.193.197h-.434a.197.197 0 0 1-.197-.197v-1.738a.197.197 0 0 1 .197-.197zm0-6.025h.434a.197.197 0 0 1 .193.197v4.27a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.196v-4.267a.197.197 0 0 1 .197-.19Zm0-3.794h.434a.197.197 0 0 1 .193.196v3.005a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V6.22a.197.197 0 0 1 .197-.196Zm-1.221.06h.435a.197.197 0 0 1 .196.197V7a.197.197 0 0 1-.196.192h-.435A.197.197 0 0 1 7.332 7v-.718a.197.197 0 0 1 .193-.197Zm0 1.448h.435a.197.197 0 0 1 .196.192v5.541a.197.197 0 0 1-.196.193h-.435a.197.197 0 0 1-.193-.193V7.73a.197.197 0 0 1 .193-.193Zm0 6.323h.435a.197.197 0 0 1 .196.193v1.5a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-1.5a.197.197 0 0 1 .193-.193zm0 2.286h.435a.197.197 0 0 1 .196.197v.956a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-.956a.197.197 0 0 1 .193-.197ZM6.305 6.57h.434a.197.197 0 0 1 .193.196v3.606a.197.197 0 0 1-.193.193h-.435a.197.197 0 0 1-.196-.193V6.765a.197.197 0 0 1 .196-.196Zm0 4.395h.434a.197.197 0 0 1 .193.193v.84a.197.197 0 0 1-.193.196h-.435a.197.197 0 0 1-.196-.197v-.839a.197.197 0 0 1 .196-.193Zm0 1.505h.43a.197.197 0 0 1 .197.196v3.727a.197.197 0 0 1-.197.196h-.43a.197.197 0 0 1-.197-.196v-3.727a.197.197 0 0 1 .196-.196ZM5.018 9.577h.56a.136.136 0 0 1 .132.136v2.763a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136V9.717a.136.136 0 0 1 .136-.14zm0 3.432h.56a.136.136 0 0 1 .132.136v2.483a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-2.475a.136.136 0 0 1 .136-.136zm0-5.96h.56a.136.136 0 0 1 .132.136v1.92a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-1.92a.136.136 0 0 1 .136-.136Zm-1.217.597h.552a.136.136 0 0 1 .136.132v2.884a.136.136 0 0 1-.136.132h-.552a.136.136 0 0 1-.136-.132V7.778a.136.136 0 0 1 .136-.132Zm0 3.5h.552a.136.136 0 0 1 .136.136v3.904a.136.136 0 0 1-.136.136h-.556a.136.136 0 0 1-.132-.136v-3.9a.136.136 0 0 1 .132-.136Zm-1.168 5.722h.435a.197.197 0 0 1 .197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.194-.196v-.718a.197.197 0 0 1 .193-.19zm-.06-2.562h.563a.136.136 0 0 1 .136.136v1.262a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136v-1.262a.136.136 0 0 1 .133-.136zm0-4.725h.563a.136.136 0 0 1 .136.132v4.075a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136V9.713a.136.136 0 0 1 .133-.132Zm-1.213 5.95h.555a.136.136 0 0 1 .136.135v2.173a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.135-.136v-2.173a.136.136 0 0 1 .136-.136zm.06-3.225h.431a.197.197 0 0 1 .197.193v2.506a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.196-.196v-2.506a.197.197 0 0 1 .196-.193ZM.14 15.001h.552c.075 0 .136.06.136.136v2.052c0 .076-.06.136-.136.136H.136A.136.136 0 0 1 0 17.19v-2.052c0-.076.06-.136.136-.136z" }) + ] + } + ); +}); + +exports.default = SiPolars; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.d.ts new file mode 100644 index 000000000..caa6f5004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0075FF"; +declare const SiPolars: IconType; +export { SiPolars as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.mjs new file mode 100644 index 000000000..87327b564 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolars.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0075FF"; +const SiPolars = React.forwardRef(function SiPolars2({ title = "Polars", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.954 7.714h.434c.106 0 .193.087.193.197v3.726a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.193V7.911c0-.11.087-.197.197-.197zm1.213 1.085h.435c.105 0 .192.087.192.196v2.521a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193v-2.52c0-.114.087-.197.197-.197zm1.206 1.383h.43c.11 0 .197.087.197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.197-.196v-.718a.189.189 0 0 1 .197-.19zm-3.629-2.827h.431a.197.197 0 0 1 .197.196v.719a.197.197 0 0 1-.197.189h-.435a.197.197 0 0 1-.196-.19v-.718a.197.197 0 0 1 .196-.196Zm0 1.444h.431a.197.197 0 0 1 .197.196v.658a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.193v-.658a.197.197 0 0 1 .196-.196zm0 1.387h.431a.197.197 0 0 1 .197.193v1.08a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.196-.192v-1.081a.197.197 0 0 1 .196-.193zm-1.24-3.133h.435a.197.197 0 0 1 .193.196v1.138a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V7.249a.197.197 0 0 1 .197-.196Zm0 1.927h.435a.197.197 0 0 1 .193.197v2.162a.197.197 0 0 1-.193.192h-.434a.197.197 0 0 1-.197-.192V9.177a.197.197 0 0 1 .197-.197ZM17.3 6.694h.435a.197.197 0 0 1 .196.192v4.574a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.192V6.886a.197.197 0 0 1 .197-.192zm0 10.174h.435a.197.197 0 0 1 .196.197v.718a.197.197 0 0 1-.196.192H17.3a.197.197 0 0 1-.197-.196v-.718a.197.197 0 0 1 .197-.19zm-1.24-.964h.435a.197.197 0 0 1 .196.197v1.678a.197.197 0 0 1-.196.196h-.431a.197.197 0 0 1-.193-.196V16.1a.197.197 0 0 1 .193-.197zm0-5.117h.435a.197.197 0 0 1 .196.196v1.134a.197.197 0 0 1-.196.2h-.431a.197.197 0 0 1-.193-.196v-1.138a.197.197 0 0 1 .193-.196zm0-4.396h.435a.197.197 0 0 1 .196.197v3.605a.197.197 0 0 1-.196.197h-.431a.197.197 0 0 1-.193-.197V6.588a.197.197 0 0 1 .193-.197zm-1.22.06h.434a.197.197 0 0 1 .197.197V8.75a.197.197 0 0 1-.197.192h-.435a.197.197 0 0 1-.192-.192V6.648a.197.197 0 0 1 .192-.196zm0 2.892h.434a.197.197 0 0 1 .197.193v6.138a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.192-.196V9.536a.197.197 0 0 1 .192-.193Zm0 6.924h.434a.197.197 0 0 1 .197.193v1.14a.197.197 0 0 1-.197.193h-.435a.197.197 0 0 1-.192-.193v-1.14a.197.197 0 0 1 .192-.193zm-1.21-9.638h.43a.197.197 0 0 1 .197.2v4.925a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197V6.83a.197.197 0 0 1 .193-.197Zm0 5.722h.43a.197.197 0 0 1 .197.197v3.908a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-3.908a.197.197 0 0 1 .193-.197Zm-1.217-5.9h.435a.197.197 0 0 1 .192.197v3.179a.197.197 0 0 1-.192.196h-.435a.197.197 0 0 1-.197-.196V6.652a.197.197 0 0 1 .197-.197zm0 3.977h.435a.197.197 0 0 1 .192.192v2.646a.197.197 0 0 1-.192.193h-.435a.197.197 0 0 1-.197-.193V10.62a.197.197 0 0 1 .197-.192zm0 3.428h.435a.197.197 0 0 1 .192.196v1.198a.197.197 0 0 1-.192.197h-.435a.197.197 0 0 1-.197-.197v-1.198a.197.197 0 0 1 .197-.196zm-1.22-7.522h.434a.197.197 0 0 1 .196.19v1.443a.197.197 0 0 1-.196.193h-.439a.197.197 0 0 1-.196-.193v-1.44a.197.197 0 0 1 .196-.196zm0 2.227h.434a.197.197 0 0 1 .196.192v5.534a.197.197 0 0 1-.196.196h-.439a.197.197 0 0 1-.196-.196V8.753a.197.197 0 0 1 .196-.192Zm-1.225 8.182h.434a.197.197 0 0 1 .197.197v.835a.197.197 0 0 1-.197.197h-.434a.197.197 0 0 1-.193-.197v-.835a.197.197 0 0 1 .193-.197zm0-10.658h.434a.197.197 0 0 1 .197.197v5.113a.197.197 0 0 1-.197.193h-.434a.197.197 0 0 1-.193-.193v-5.11a.197.197 0 0 1 .193-.196Zm0 5.904h.434a.197.197 0 0 1 .197.192v2.102a.197.197 0 0 1-.197.196h-.434a.197.197 0 0 1-.193-.196V12.18a.197.197 0 0 1 .193-.192zm-1.221 3.855h.434a.197.197 0 0 1 .193.189v1.742a.197.197 0 0 1-.193.197h-.434a.197.197 0 0 1-.197-.197v-1.738a.197.197 0 0 1 .197-.197zm0-6.025h.434a.197.197 0 0 1 .193.197v4.27a.197.197 0 0 1-.193.193h-.434a.197.197 0 0 1-.197-.196v-4.267a.197.197 0 0 1 .197-.19Zm0-3.794h.434a.197.197 0 0 1 .193.196v3.005a.197.197 0 0 1-.193.196h-.434a.197.197 0 0 1-.197-.196V6.22a.197.197 0 0 1 .197-.196Zm-1.221.06h.435a.197.197 0 0 1 .196.197V7a.197.197 0 0 1-.196.192h-.435A.197.197 0 0 1 7.332 7v-.718a.197.197 0 0 1 .193-.197Zm0 1.448h.435a.197.197 0 0 1 .196.192v5.541a.197.197 0 0 1-.196.193h-.435a.197.197 0 0 1-.193-.193V7.73a.197.197 0 0 1 .193-.193Zm0 6.323h.435a.197.197 0 0 1 .196.193v1.5a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-1.5a.197.197 0 0 1 .193-.193zm0 2.286h.435a.197.197 0 0 1 .196.197v.956a.197.197 0 0 1-.196.197h-.435a.197.197 0 0 1-.193-.197v-.956a.197.197 0 0 1 .193-.197ZM6.305 6.57h.434a.197.197 0 0 1 .193.196v3.606a.197.197 0 0 1-.193.193h-.435a.197.197 0 0 1-.196-.193V6.765a.197.197 0 0 1 .196-.196Zm0 4.395h.434a.197.197 0 0 1 .193.193v.84a.197.197 0 0 1-.193.196h-.435a.197.197 0 0 1-.196-.197v-.839a.197.197 0 0 1 .196-.193Zm0 1.505h.43a.197.197 0 0 1 .197.196v3.727a.197.197 0 0 1-.197.196h-.43a.197.197 0 0 1-.197-.196v-3.727a.197.197 0 0 1 .196-.196ZM5.018 9.577h.56a.136.136 0 0 1 .132.136v2.763a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136V9.717a.136.136 0 0 1 .136-.14zm0 3.432h.56a.136.136 0 0 1 .132.136v2.483a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-2.475a.136.136 0 0 1 .136-.136zm0-5.96h.56a.136.136 0 0 1 .132.136v1.92a.136.136 0 0 1-.132.136h-.556a.136.136 0 0 1-.136-.136v-1.92a.136.136 0 0 1 .136-.136Zm-1.217.597h.552a.136.136 0 0 1 .136.132v2.884a.136.136 0 0 1-.136.132h-.552a.136.136 0 0 1-.136-.132V7.778a.136.136 0 0 1 .136-.132Zm0 3.5h.552a.136.136 0 0 1 .136.136v3.904a.136.136 0 0 1-.136.136h-.556a.136.136 0 0 1-.132-.136v-3.9a.136.136 0 0 1 .132-.136Zm-1.168 5.722h.435a.197.197 0 0 1 .197.197v.718a.197.197 0 0 1-.197.192h-.43a.197.197 0 0 1-.194-.196v-.718a.197.197 0 0 1 .193-.19zm-.06-2.562h.563a.136.136 0 0 1 .136.136v1.262a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136v-1.262a.136.136 0 0 1 .133-.136zm0-4.725h.563a.136.136 0 0 1 .136.132v4.075a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.132-.136V9.713a.136.136 0 0 1 .133-.132Zm-1.213 5.95h.555a.136.136 0 0 1 .136.135v2.173a.136.136 0 0 1-.136.136h-.56a.136.136 0 0 1-.135-.136v-2.173a.136.136 0 0 1 .136-.136zm.06-3.225h.431a.197.197 0 0 1 .197.193v2.506a.197.197 0 0 1-.197.196h-.435a.197.197 0 0 1-.196-.196v-2.506a.197.197 0 0 1 .196-.193ZM.14 15.001h.552c.075 0 .136.06.136.136v2.052c0 .076-.06.136-.136.136H.136A.136.136 0 0 1 0 17.19v-2.052c0-.076.06-.136.136-.136z" }) + ] + } + ); +}); + +export { SiPolars as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.cjs new file mode 100644 index 000000000..79f315561 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPolestar = React__namespace.forwardRef(function SiPolestar2({ title = "Polestar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.549 0-.457.555v11.191h11.19l.554-.457-9.4-1.89zM.719 12.26l-.555.457L9.563 14.6l1.886 9.4.457-.555V12.26Z" }) + ] + } + ); +}); + +exports.default = SiPolestar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.d.ts new file mode 100644 index 000000000..c328b9453 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPolestar: IconType; +export { SiPolestar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.mjs new file mode 100644 index 000000000..e6ca84055 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolestar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPolestar = React.forwardRef(function SiPolestar2({ title = "Polestar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.549 0-.457.555v11.191h11.19l.554-.457-9.4-1.89zM.719 12.26l-.555.457L9.563 14.6l1.886 9.4.457-.555V12.26Z" }) + ] + } + ); +}); + +export { SiPolestar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.cjs new file mode 100644 index 000000000..56ced8ee6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6007A"; +const SiPolkadot = React__namespace.forwardRef(function SiPolkadot2({ title = "Polkadot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12,0c2.39,0,4.328,1.127,4.328,2.517S14.39,5.034,12,5.034,7.672,3.907,7.672,2.517,9.61,0,12,0Zm0,18.966c2.39,0,4.328,1.127,4.328,2.517S14.39,24,12,24s-4.328-1.127-4.328-2.517S9.61,18.966,12,18.966ZM1.606,6C2.8,3.93,4.747,2.816,5.952,3.511s1.212,2.937.017,5.007S2.828,11.7,1.624,11.007.411,8.07,1.606,6Zm16.427,9.483c1.2-2.07,3.139-3.184,4.343-2.489s1.211,2.936.016,5.006-3.14,3.185-4.344,2.49S16.837,17.553,18.033,15.483ZM1.624,12.993c1.205-.7,3.15.419,4.346,2.489s1.187,4.311-.018,5.007S2.8,20.07,1.607,18,.42,13.689,1.624,12.993ZM18.049,3.512c1.2-.695,3.149.419,4.344,2.489s1.188,4.311-.016,5.007-3.148-.42-4.343-2.49S16.846,4.207,18.049,3.512Z" }) + ] + } + ); +}); + +exports.default = SiPolkadot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.d.ts new file mode 100644 index 000000000..b48156d86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6007A"; +declare const SiPolkadot: IconType; +export { SiPolkadot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.mjs new file mode 100644 index 000000000..e566a14f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolkadot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6007A"; +const SiPolkadot = React.forwardRef(function SiPolkadot2({ title = "Polkadot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12,0c2.39,0,4.328,1.127,4.328,2.517S14.39,5.034,12,5.034,7.672,3.907,7.672,2.517,9.61,0,12,0Zm0,18.966c2.39,0,4.328,1.127,4.328,2.517S14.39,24,12,24s-4.328-1.127-4.328-2.517S9.61,18.966,12,18.966ZM1.606,6C2.8,3.93,4.747,2.816,5.952,3.511s1.212,2.937.017,5.007S2.828,11.7,1.624,11.007.411,8.07,1.606,6Zm16.427,9.483c1.2-2.07,3.139-3.184,4.343-2.489s1.211,2.936.016,5.006-3.14,3.185-4.344,2.49S16.837,17.553,18.033,15.483ZM1.624,12.993c1.205-.7,3.15.419,4.346,2.489s1.187,4.311-.018,5.007S2.8,20.07,1.607,18,.42,13.689,1.624,12.993ZM18.049,3.512c1.2-.695,3.149.419,4.344,2.489s1.188,4.311-.016,5.007-3.148-.42-4.343-2.49S16.846,4.207,18.049,3.512Z" }) + ] + } + ); +}); + +export { SiPolkadot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.cjs new file mode 100644 index 000000000..e6fb93679 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB3C00"; +const SiPoly = React__namespace.forwardRef(function SiPoly2({ title = "Poly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.569 16.102c-2.244 0-4.064-1.834-4.064-4.096s1.82-4.095 4.064-4.095c2.244 0 4.063 1.833 4.063 4.095 0 2.262-1.82 4.096-4.063 4.096zm11.019-5.671l-4.296 2.5.02-.118.012-.104.014-.173v-.013l.001-.012.009-.211.001-.232-.003-.168-.01-.24-.016-.22-.024-.239-.016-.13-.034-.233-.04-.228-.047-.223-.052-.219-.037-.135-.062-.211-.07-.207-.061-.168-.08-.2-.087-.195-.092-.19-.099-.189-.105-.185-.01-.015-.113-.183-.12-.18-.127-.176-.135-.175-.143-.172-.016-.02-.152-.17-.16-.168-.168-.167-.179-.166-.014-.013-.189-.165-.201-.166-.202-.158-.226-.167-.245-.172-.183-.124-.28-.181-.316-.197-.105-.063-.388-.23-.096-.057-.244-.142L1.705 0v3.175l4.296 2.5-.11.041-.096.042-.156.074-.012.006-.01.006-.186.098-.2.114-.142.087-.202.13-.181.124-.193.14-.106.08-.182.145-.175.149-.168.152-.162.155-.098.1-.15.16-.143.163-.114.14-.131.169-.125.172-.117.176-.112.18-.107.185-.01.017-.099.19-.094.194-.088.199-.082.204-.077.211-.009.025-.07.217-.065.223-.06.23-.053.24-.004.02-.047.246-.042.258-.034.256-.031.281-.026.299-.014.223-.016.334-.01.374-.003.125-.004.452V24l2.727-1.588v-5l.092.077.083.063.143.099.01.006.007.005.178.114.2.118.144.08.214.112.195.096.219.1.114.048.218.087.217.08.217.071.215.064.132.035.214.051.214.044.173.03.213.03.212.022.206.015.213.008h.227l.215-.008.216-.015.216-.022.22-.031.221-.039.02-.004.224-.047.226-.055.23-.065.233-.074.013-.004.238-.083.245-.093.233-.096.259-.115.272-.128.194-.097.298-.154.33-.18.102-.057.394-.225.094-.054.244-.142 8.697-5.06-2.728-1.588Z" }) + ] + } + ); +}); + +exports.default = SiPoly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.d.ts new file mode 100644 index 000000000..be41ef5dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB3C00"; +declare const SiPoly: IconType; +export { SiPoly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.mjs new file mode 100644 index 000000000..f6f367448 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPoly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB3C00"; +const SiPoly = React.forwardRef(function SiPoly2({ title = "Poly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.569 16.102c-2.244 0-4.064-1.834-4.064-4.096s1.82-4.095 4.064-4.095c2.244 0 4.063 1.833 4.063 4.095 0 2.262-1.82 4.096-4.063 4.096zm11.019-5.671l-4.296 2.5.02-.118.012-.104.014-.173v-.013l.001-.012.009-.211.001-.232-.003-.168-.01-.24-.016-.22-.024-.239-.016-.13-.034-.233-.04-.228-.047-.223-.052-.219-.037-.135-.062-.211-.07-.207-.061-.168-.08-.2-.087-.195-.092-.19-.099-.189-.105-.185-.01-.015-.113-.183-.12-.18-.127-.176-.135-.175-.143-.172-.016-.02-.152-.17-.16-.168-.168-.167-.179-.166-.014-.013-.189-.165-.201-.166-.202-.158-.226-.167-.245-.172-.183-.124-.28-.181-.316-.197-.105-.063-.388-.23-.096-.057-.244-.142L1.705 0v3.175l4.296 2.5-.11.041-.096.042-.156.074-.012.006-.01.006-.186.098-.2.114-.142.087-.202.13-.181.124-.193.14-.106.08-.182.145-.175.149-.168.152-.162.155-.098.1-.15.16-.143.163-.114.14-.131.169-.125.172-.117.176-.112.18-.107.185-.01.017-.099.19-.094.194-.088.199-.082.204-.077.211-.009.025-.07.217-.065.223-.06.23-.053.24-.004.02-.047.246-.042.258-.034.256-.031.281-.026.299-.014.223-.016.334-.01.374-.003.125-.004.452V24l2.727-1.588v-5l.092.077.083.063.143.099.01.006.007.005.178.114.2.118.144.08.214.112.195.096.219.1.114.048.218.087.217.08.217.071.215.064.132.035.214.051.214.044.173.03.213.03.212.022.206.015.213.008h.227l.215-.008.216-.015.216-.022.22-.031.221-.039.02-.004.224-.047.226-.055.23-.065.233-.074.013-.004.238-.083.245-.093.233-.096.259-.115.272-.128.194-.097.298-.154.33-.18.102-.057.394-.225.094-.054.244-.142 8.697-5.06-2.728-1.588Z" }) + ] + } + ); +}); + +export { SiPoly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.cjs new file mode 100644 index 000000000..070adef68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7B3FE4"; +const SiPolygon = React__namespace.forwardRef(function SiPolygon2({ title = "Polygon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.82 16.342 5.692-3.287A.98.98 0 0 0 24 12.21V5.635a.98.98 0 0 0-.488-.846l-5.693-3.286a.98.98 0 0 0-.977 0L11.15 4.789a.98.98 0 0 0-.489.846v11.747L6.67 19.686l-3.992-2.304v-4.61l3.992-2.304 2.633 1.52V8.896L7.158 7.658a.98.98 0 0 0-.977 0L.488 10.945a.98.98 0 0 0-.488.846v6.573a.98.98 0 0 0 .488.847l5.693 3.286a.981.981 0 0 0 .977 0l5.692-3.286a.98.98 0 0 0 .489-.846V6.618l.072-.041 3.92-2.263 3.99 2.305v4.609l-3.99 2.304-2.63-1.517v3.092l2.14 1.236a.981.981 0 0 0 .978 0v-.001Z" }) + ] + } + ); +}); + +exports.default = SiPolygon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.d.ts new file mode 100644 index 000000000..bc319bc64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7B3FE4"; +declare const SiPolygon: IconType; +export { SiPolygon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.mjs new file mode 100644 index 000000000..e769f890a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolygon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7B3FE4"; +const SiPolygon = React.forwardRef(function SiPolygon2({ title = "Polygon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.82 16.342 5.692-3.287A.98.98 0 0 0 24 12.21V5.635a.98.98 0 0 0-.488-.846l-5.693-3.286a.98.98 0 0 0-.977 0L11.15 4.789a.98.98 0 0 0-.489.846v11.747L6.67 19.686l-3.992-2.304v-4.61l3.992-2.304 2.633 1.52V8.896L7.158 7.658a.98.98 0 0 0-.977 0L.488 10.945a.98.98 0 0 0-.488.846v6.573a.98.98 0 0 0 .488.847l5.693 3.286a.981.981 0 0 0 .977 0l5.692-3.286a.98.98 0 0 0 .489-.846V6.618l.072-.041 3.92-2.263 3.99 2.305v4.609l-3.99 2.304-2.63-1.517v3.092l2.14 1.236a.981.981 0 0 0 .978 0v-.001Z" }) + ] + } + ); +}); + +export { SiPolygon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.cjs new file mode 100644 index 000000000..b264fa170 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4470"; +const SiPolymerproject = React__namespace.forwardRef(function SiPolymerproject2({ title = "Polymer Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.4 3.686L7.2 16.16 4.8 12l4.8-8.314H4.8L0 12l2.4 4.159 2.4 4.155h4.8l7.2-12.469L19.2 12l-4.8 8.314h4.8l2.4-4.155L24 12l-2.4-4.155-2.4-4.159Z" }) + ] + } + ); +}); + +exports.default = SiPolymerproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.d.ts new file mode 100644 index 000000000..1a91968db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4470"; +declare const SiPolymerproject: IconType; +export { SiPolymerproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.mjs new file mode 100644 index 000000000..d3269f4b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolymerproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4470"; +const SiPolymerproject = React.forwardRef(function SiPolymerproject2({ title = "Polymer Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.4 3.686L7.2 16.16 4.8 12l4.8-8.314H4.8L0 12l2.4 4.159 2.4 4.155h4.8l7.2-12.469L19.2 12l-4.8 8.314h4.8l2.4-4.155L24 12l-2.4-4.155-2.4-4.159Z" }) + ] + } + ); +}); + +export { SiPolymerproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.cjs new file mode 100644 index 000000000..8ae25a7ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#543DE0"; +const SiPolywork = React__namespace.forwardRef(function SiPolywork2({ title = "Polywork", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.125 0H4.875A4.865 4.865 0 0 0 0 4.875v14.25C0 21.825 2.175 24 4.875 24h6.6c2.7 0 4.875-2.175 4.875-4.875V16.65h2.775c2.7 0 4.875-2.175 4.875-4.875v-6.9C24 2.175 21.825 0 19.125 0zM16.5 1.275h2.625a3.6 3.6 0 0 1 3.6 3.6v2.7H16.5v-6.3zM15.075 9v6.45H8.85V9h6.225zM8.85 1.2h6.225v6.375H8.85V1.2zM1.275 4.8a3.6 3.6 0 0 1 3.6-3.6H7.5v6.375H1.275V4.8zM7.5 9v6.45H1.2V9h6.3zm0 13.725H4.8a3.6 3.6 0 0 1-3.6-3.6V16.8h6.3v5.925zm7.575-3.525a3.6 3.6 0 0 1-3.6 3.6H8.85v-5.925h6.225V19.2zm7.65-7.35a3.6 3.6 0 0 1-3.6 3.6H16.5V9h6.225v2.85z" }) + ] + } + ); +}); + +exports.default = SiPolywork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.d.ts new file mode 100644 index 000000000..f07f2d5dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#543DE0"; +declare const SiPolywork: IconType; +export { SiPolywork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.mjs new file mode 100644 index 000000000..8a81c468c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPolywork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#543DE0"; +const SiPolywork = React.forwardRef(function SiPolywork2({ title = "Polywork", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.125 0H4.875A4.865 4.865 0 0 0 0 4.875v14.25C0 21.825 2.175 24 4.875 24h6.6c2.7 0 4.875-2.175 4.875-4.875V16.65h2.775c2.7 0 4.875-2.175 4.875-4.875v-6.9C24 2.175 21.825 0 19.125 0zM16.5 1.275h2.625a3.6 3.6 0 0 1 3.6 3.6v2.7H16.5v-6.3zM15.075 9v6.45H8.85V9h6.225zM8.85 1.2h6.225v6.375H8.85V1.2zM1.275 4.8a3.6 3.6 0 0 1 3.6-3.6H7.5v6.375H1.275V4.8zM7.5 9v6.45H1.2V9h6.3zm0 13.725H4.8a3.6 3.6 0 0 1-3.6-3.6V16.8h6.3v5.925zm7.575-3.525a3.6 3.6 0 0 1-3.6 3.6H8.85v-5.925h6.225V19.2zm7.65-7.35a3.6 3.6 0 0 1-3.6 3.6H16.5V9h6.225v2.85z" }) + ] + } + ); +}); + +export { SiPolywork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.cjs new file mode 100644 index 000000000..0da6cbf9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6F43E7"; +const SiPomerium = React__namespace.forwardRef(function SiPomerium2({ title = "Pomerium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6.768v2.338l.038-.005A2.832 2.832 0 0 1 3.2 11.913v7.998h2.318v-9.023A2.687 2.687 0 0 1 7.95 8.213c1.288-.123 2.345.873 2.345 2.167v9.53h2.317v-9.265c0-1.685 1.271-3.1 2.948-3.281 1.565-.169 2.922 1.085 2.922 2.66v9.886H20.8v-9.875A3.635 3.635 0 0 1 24 6.422V4.089z" }) + ] + } + ); +}); + +exports.default = SiPomerium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.d.ts new file mode 100644 index 000000000..4bdf8430a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6F43E7"; +declare const SiPomerium: IconType; +export { SiPomerium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.mjs new file mode 100644 index 000000000..57c0e7567 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPomerium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6F43E7"; +const SiPomerium = React.forwardRef(function SiPomerium2({ title = "Pomerium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6.768v2.338l.038-.005A2.832 2.832 0 0 1 3.2 11.913v7.998h2.318v-9.023A2.687 2.687 0 0 1 7.95 8.213c1.288-.123 2.345.873 2.345 2.167v9.53h2.317v-9.265c0-1.685 1.271-3.1 2.948-3.281 1.565-.169 2.922 1.085 2.922 2.66v9.886H20.8v-9.875A3.635 3.635 0 0 1 24 6.422V4.089z" }) + ] + } + ); +}); + +export { SiPomerium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.cjs new file mode 100644 index 000000000..0875641dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPond5 = React__namespace.forwardRef(function SiPond52({ title = "Pond5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.504 11.385h.755c.92 0 1.747.286 1.741 1.388 0 1.047-.932 1.412-1.717 1.412-.993 0-1.75-.359-1.754-1.37v-.14h.944v.14c0 .384.442.53.798.53.233 0 .784-.085.784-.572.006-.475-.508-.572-.797-.572h-1.644V9.875h3.146v.853h-2.256Zm-4.167 2.745h-1.76V9.87h1.76c1.478 0 2.134.985 2.134 2.1 0 1.113-.632 2.16-2.134 2.16zm0-3.402h-.816v2.526h.816c.932 0 1.19-.682 1.19-1.297 0-.615-.295-1.23-1.19-1.23zm-6.055 1.14v2.262h-.955V9.81l.134-.023 2.598 2.33V9.869h.957v4.333l-.1.017-2.634-2.351zm-4.431 2.367c-1.374 0-2.319-.848-2.319-2.235 0-1.388.945-2.235 2.319-2.235 1.373 0 2.318.847 2.318 2.235 0 1.387-.944 2.234-2.318 2.234zm0-3.618c-.816 0-1.38.61-1.38 1.382 0 .798.564 1.376 1.38 1.376.834 0 1.38-.584 1.38-1.376 0-.779-.546-1.382-1.38-1.382zm-4.827 2.308h-.587v-.87h.587c.46 0 .686-.299.686-.64 0-.34-.232-.645-.686-.645H.957v3.36H0V9.87h2.024c1.097 0 1.642.705 1.642 1.527 0 .852-.552 1.516-1.643 1.528z" }) + ] + } + ); +}); + +exports.default = SiPond5; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.d.ts new file mode 100644 index 000000000..ea6e45e43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPond5: IconType; +export { SiPond5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.mjs new file mode 100644 index 000000000..8946e60ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPond5.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPond5 = React.forwardRef(function SiPond52({ title = "Pond5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.504 11.385h.755c.92 0 1.747.286 1.741 1.388 0 1.047-.932 1.412-1.717 1.412-.993 0-1.75-.359-1.754-1.37v-.14h.944v.14c0 .384.442.53.798.53.233 0 .784-.085.784-.572.006-.475-.508-.572-.797-.572h-1.644V9.875h3.146v.853h-2.256Zm-4.167 2.745h-1.76V9.87h1.76c1.478 0 2.134.985 2.134 2.1 0 1.113-.632 2.16-2.134 2.16zm0-3.402h-.816v2.526h.816c.932 0 1.19-.682 1.19-1.297 0-.615-.295-1.23-1.19-1.23zm-6.055 1.14v2.262h-.955V9.81l.134-.023 2.598 2.33V9.869h.957v4.333l-.1.017-2.634-2.351zm-4.431 2.367c-1.374 0-2.319-.848-2.319-2.235 0-1.388.945-2.235 2.319-2.235 1.373 0 2.318.847 2.318 2.235 0 1.387-.944 2.234-2.318 2.234zm0-3.618c-.816 0-1.38.61-1.38 1.382 0 .798.564 1.376 1.38 1.376.834 0 1.38-.584 1.38-1.376 0-.779-.546-1.382-1.38-1.382zm-4.827 2.308h-.587v-.87h.587c.46 0 .686-.299.686-.64 0-.34-.232-.645-.686-.645H.957v3.36H0V9.87h2.024c1.097 0 1.642.705 1.642 1.527 0 .852-.552 1.516-1.643 1.528z" }) + ] + } + ); +}); + +export { SiPond5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.cjs new file mode 100644 index 000000000..872637a4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#48B9C7"; +const SiPopos = React__namespace.forwardRef(function SiPopos2({ title = "Pop!_OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.373 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12 0-6.627-5.373-12-12-12ZM9.64 2.918c1.091-.026 1.548.229 2.182.635a4.459 4.459 0 0 1 1.902 2.764c.254 1.141.178 2.029-.127 2.664v.05c-.609 1.294-1.622 2.335-3.043 2.842l1.217 3.172c.228.583.432 1.192.254 1.75-.177.558-.989.736-1.572.127-1.116-1.192-4.871-8.702-5.15-9.26-.279-.558-.584-1.016-.584-1.574.026-.837 1.318-1.7 1.953-2.131.634-.431 1.877-1.014 2.968-1.039Zm-.996 2.311c-.789.022-.358 1.669-.197 2.129.178.507.661 1.572 1.193 2.105.127.127.254.229.407.254.152.027.457-.127.584-.33a.932.932 0 0 0 .15-.559 3.232 3.232 0 0 0-.049-1.216c-.228-.787-.711-1.548-1.346-2.055-.127-.102-.279-.229-.457-.279a.901.901 0 0 0-.285-.049Zm8.414 2.027a2.283 2.283 0 0 1 1.588.636c.305.279.33.582.229.963-.102.38-.457 1.194-.736 1.777l-.709 1.344c-1.37 2.435-1.649 2.689-2.03 2.537-.456-.178-.304-2.614.127-5.582.127-.812.329-1.217.557-1.42.171-.152.6-.248.975-.254l-.001-.001Zm-1.859 8.332c.554.011.789.7.656 1.232a.861.861 0 0 1-.379.559c-.203.127-.685.127-.965-.102-.278-.228-.33-.609-.254-.914.076-.304.331-.635.686-.736a.757.757 0 0 1 .256-.039Zm-8.604 2.805h10.809c.52 0 .938.419.938.939v.074c0 .52-.418.94-.938.94H6.595a.936.936 0 0 1-.937-.94v-.074c0-.52.417-.939.937-.939Z" }) + ] + } + ); +}); + +exports.default = SiPopos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.d.ts new file mode 100644 index 000000000..6867eabf4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#48B9C7"; +declare const SiPopos: IconType; +export { SiPopos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.mjs new file mode 100644 index 000000000..38a687b23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPopos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#48B9C7"; +const SiPopos = React.forwardRef(function SiPopos2({ title = "Pop!_OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.373 0 12c0 6.628 5.372 12 12 12 6.627 0 12-5.372 12-12 0-6.627-5.373-12-12-12ZM9.64 2.918c1.091-.026 1.548.229 2.182.635a4.459 4.459 0 0 1 1.902 2.764c.254 1.141.178 2.029-.127 2.664v.05c-.609 1.294-1.622 2.335-3.043 2.842l1.217 3.172c.228.583.432 1.192.254 1.75-.177.558-.989.736-1.572.127-1.116-1.192-4.871-8.702-5.15-9.26-.279-.558-.584-1.016-.584-1.574.026-.837 1.318-1.7 1.953-2.131.634-.431 1.877-1.014 2.968-1.039Zm-.996 2.311c-.789.022-.358 1.669-.197 2.129.178.507.661 1.572 1.193 2.105.127.127.254.229.407.254.152.027.457-.127.584-.33a.932.932 0 0 0 .15-.559 3.232 3.232 0 0 0-.049-1.216c-.228-.787-.711-1.548-1.346-2.055-.127-.102-.279-.229-.457-.279a.901.901 0 0 0-.285-.049Zm8.414 2.027a2.283 2.283 0 0 1 1.588.636c.305.279.33.582.229.963-.102.38-.457 1.194-.736 1.777l-.709 1.344c-1.37 2.435-1.649 2.689-2.03 2.537-.456-.178-.304-2.614.127-5.582.127-.812.329-1.217.557-1.42.171-.152.6-.248.975-.254l-.001-.001Zm-1.859 8.332c.554.011.789.7.656 1.232a.861.861 0 0 1-.379.559c-.203.127-.685.127-.965-.102-.278-.228-.33-.609-.254-.914.076-.304.331-.635.686-.736a.757.757 0 0 1 .256-.039Zm-8.604 2.805h10.809c.52 0 .938.419.938.939v.074c0 .52-.418.94-.938.94H6.595a.936.936 0 0 1-.937-.94v-.074c0-.52.417-.939.937-.939Z" }) + ] + } + ); +}); + +export { SiPopos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.cjs new file mode 100644 index 000000000..3c649ff18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF7878"; +const SiPorkbun = React__namespace.forwardRef(function SiPorkbun2({ title = "Porkbun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3708 0 .0176 5.3532.0176 11.9824.0176 18.6117 5.3708 24 12 24s11.9824-5.3532 11.9824-11.9824C23.9824 5.3883 18.6292 0 12 0ZM5.832 5.8848c1.0635.2481 2.092.6384 3.0137 1.1347-1.099.5318-1.9866 1.3824-2.6602 2.375-.4254-.5672-.6738-1.2767-.6738-2.0566 0-.5318.1076-.9923.3203-1.4531zm12.336 0c.2127.4254.3203.9213.3203 1.453 0 .78-.2484 1.4895-.6738 2.0567-.6736-.9926-1.5967-1.8432-2.6602-2.375a9.9821 9.9821 0 0 1 3.0137-1.1347zm-6.0723.8105c3.5286.0471 6.3547 2.9198 6.3203 6.457v3.8282c0 .638-.5318 1.1699-1.17 1.1699-.638 0-1.1698-.5318-1.1698-1.17v-.957H7.8516v.957c0 .6382-.5319 1.17-1.17 1.17-.638 0-1.1699-.5318-1.1699-1.17v-3.6503c0-3.5096 2.7307-6.489 6.2403-6.6309.1152-.0044.2299-.0054.3437-.0039zm1.5 3.7988c-.4963 0-.9219.4256-.9219.922 0 .248.0711.4242.213.6015.1417.2127.3536.3546.5663.461-.1418.0708-.3188.1425-.496.1425-.2128 0-.3907.176-.3907.3887s.178.3906.3906.3906h.1778c.6026 0 1.1346-.3553 1.3828-.8516.39-.1418.7092-.3896.9219-.7441.0709-.1064.0337-.2484-.0372-.2129-.1063-.0355-.2123-.034-.2832.0723-.1063.1418-.2485.2826-.4257.3535v-.1426c0-.39-.1409-.7086-.3536-.9922-.1772-.2481-.425-.3887-.7441-.3887zm0 .5313c.2127 0 .3532.1408.3887.3535v.1777c0 .1773-.0346.3543-.1055.4961-.2481-.0709-.4617-.213-.6035-.4257-.0355-.071-.0703-.14-.0703-.211 0-.2392.2063-.3906.3906-.3906z" }) + ] + } + ); +}); + +exports.default = SiPorkbun; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.d.ts new file mode 100644 index 000000000..7edba2a67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF7878"; +declare const SiPorkbun: IconType; +export { SiPorkbun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.mjs new file mode 100644 index 000000000..c3dd5ae8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPorkbun.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF7878"; +const SiPorkbun = React.forwardRef(function SiPorkbun2({ title = "Porkbun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3708 0 .0176 5.3532.0176 11.9824.0176 18.6117 5.3708 24 12 24s11.9824-5.3532 11.9824-11.9824C23.9824 5.3883 18.6292 0 12 0ZM5.832 5.8848c1.0635.2481 2.092.6384 3.0137 1.1347-1.099.5318-1.9866 1.3824-2.6602 2.375-.4254-.5672-.6738-1.2767-.6738-2.0566 0-.5318.1076-.9923.3203-1.4531zm12.336 0c.2127.4254.3203.9213.3203 1.453 0 .78-.2484 1.4895-.6738 2.0567-.6736-.9926-1.5967-1.8432-2.6602-2.375a9.9821 9.9821 0 0 1 3.0137-1.1347zm-6.0723.8105c3.5286.0471 6.3547 2.9198 6.3203 6.457v3.8282c0 .638-.5318 1.1699-1.17 1.1699-.638 0-1.1698-.5318-1.1698-1.17v-.957H7.8516v.957c0 .6382-.5319 1.17-1.17 1.17-.638 0-1.1699-.5318-1.1699-1.17v-3.6503c0-3.5096 2.7307-6.489 6.2403-6.6309.1152-.0044.2299-.0054.3437-.0039zm1.5 3.7988c-.4963 0-.9219.4256-.9219.922 0 .248.0711.4242.213.6015.1417.2127.3536.3546.5663.461-.1418.0708-.3188.1425-.496.1425-.2128 0-.3907.176-.3907.3887s.178.3906.3906.3906h.1778c.6026 0 1.1346-.3553 1.3828-.8516.39-.1418.7092-.3896.9219-.7441.0709-.1064.0337-.2484-.0372-.2129-.1063-.0355-.2123-.034-.2832.0723-.1063.1418-.2485.2826-.4257.3535v-.1426c0-.39-.1409-.7086-.3536-.9922-.1772-.2481-.425-.3887-.7441-.3887zm0 .5313c.2127 0 .3532.1408.3887.3535v.1777c0 .1773-.0346.3543-.1055.4961-.2481-.0709-.4617-.213-.6035-.4257-.0355-.071-.0703-.14-.0703-.211 0-.2392.2063-.3906.3906-.3906z" }) + ] + } + ); +}); + +export { SiPorkbun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.cjs new file mode 100644 index 000000000..42187776b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B12B28"; +const SiPorsche = React__namespace.forwardRef(function SiPorsche2({ title = "Porsche", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.972 0A25.68 25.68 0 0 0 9.93.091a27.858 27.858 0 0 0-4.248.685 23.565 23.565 0 0 0-2.975.966l-.06.022s.118 7.243.21 10.831a9.934 9.934 0 0 0 .569 3.098 14.899 14.899 0 0 0 1.622 3.214A12.884 12.884 0 0 0 7.56 21.66a11.234 11.234 0 0 0 1.192.873 15.214 15.214 0 0 0 2.038 1.031c.233.098.436.192.62.255A4.58 4.58 0 0 0 12 24a4.58 4.58 0 0 0 .59-.182c.182-.063.387-.156.62-.255a15.22 15.22 0 0 0 2.037-1.031 11.25 11.25 0 0 0 1.194-.873 12.88 12.88 0 0 0 2.511-2.752 14.889 14.889 0 0 0 1.622-3.214 9.934 9.934 0 0 0 .57-3.098c.091-3.588.21-10.827.21-10.827a.635.635 0 0 0-.057-.026 23.564 23.564 0 0 0-2.976-.966 27.856 27.856 0 0 0-4.248-.684A26.068 26.068 0 0 0 12.031 0zm0 .361h.057c.679.008 1.288.03 1.963.09a26.585 26.585 0 0 1 4.084.663 22.53 22.53 0 0 1 2.861.937.619.619 0 0 1 .057.025l-.038 2.274a.113.113 0 0 0-.019-.01 22.55 22.55 0 0 0-2.86-.937 26.61 26.61 0 0 0-4.085-.662c-.675-.06-1.281-.1-1.96-.108h-.058c-.679.009-1.29.048-1.965.108a26.608 26.608 0 0 0-4.084.665 22.547 22.547 0 0 0-2.861.938.116.116 0 0 0-.02.01l-.038-2.281.058-.022a22.527 22.527 0 0 1 2.86-.937A26.581 26.581 0 0 1 10.01.45c.675-.06 1.284-.08 1.963-.089zm.288.216a16.633 16.633 0 0 0-.902.008c-.121.005-.288.109-.29.23l-.007.648c-.002.132.172.236.305.239.462.01.87.002 1.318.03.033.003.062.023.062.056l-.003.13a.042.042 0 0 1-.045.046c-.521 0-1.066-.025-1.593.017-.028.002-.027-.005-.028.023l-.024.384-.002.03a16.318 16.318 0 0 1 1.882 0 .32.32 0 0 0 .305-.262l.006-.627c0-.129-.158-.224-.261-.23-.442-.028-.945-.013-1.394-.025a.046.046 0 0 1-.044-.05l.009-.145c0-.028.019-.036.047-.037.444-.016 1.107.005 1.562.019a.072.072 0 0 0 .06-.07V.674c0-.017-.032-.067-.063-.068V.605a33.113 33.113 0 0 0-.9-.028zm-1.88.064c-.423.008-1.341.125-1.862.19L8.515 2.64v.023l.47-.06a.014.014 0 0 0 .01-.006.014.014 0 0 0 .003-.01v-.523l.947-.102c.083-.015.18.046.256.169a.88.88 0 0 1 .114.339l.467-.035c.01 0 .03 0 .028-.01a.988.988 0 0 0-.307-.663.316.316 0 0 0 .197-.31 4.34 4.34 0 0 0-.022-.564.32.32 0 0 0-.3-.247zm3.59.019a.404.404 0 0 0-.413.332l-.01 1.195a.312.312 0 0 0 .24.289c.61.057 1.21.112 1.89.215.011 0 .032-.007.032-.017v-.416c0-.009-.02-.028-.027-.03-.454-.057-1.053-.137-1.589-.193a.076.076 0 0 1-.058-.07v-.812c0-.034.05-.052.084-.05.529.044 1.056.14 1.584.197.014.002.036-.007.037-.021l.01-.382a.037.037 0 0 0-.029-.033 36.382 36.382 0 0 0-1.75-.204zm1.98.237c-.012 0-.022.014-.022.025-.006.274-.045 1.457-.053 1.772v.027c.155.027.326.048.453.074.014.002.035-.008.035-.022-.002-.207 0-.448-.004-.636 0-.013.006-.014.02-.012a31.392 31.392 0 0 1 1.102.22c.008 0 .052.007.052.03-.003.217-.007.4-.013.617a.041.041 0 0 0 .027.04c.145.033.283.067.42.1.037.008.043.001.044-.012.022-.451.03-1.174.036-1.784 0-.008-.003-.02-.01-.022-.153-.035-.297-.072-.453-.105-.014-.003-.022.02-.023.035-.015.223-.009.43-.026.652 0 .008 0 .012-.009.01-.37-.076-.765-.158-1.132-.227-.01-.002-.006-.02-.005-.031l.003-.653a.033.033 0 0 0-.026-.03 23.196 23.196 0 0 0-.417-.068zM7.934.92a.303.303 0 0 0-.037 0c-.543.086-1.089.201-1.64.32a.5.5 0 0 0-.23.143.322.322 0 0 0-.102.205l.004 1.118a.434.434 0 0 0 .106.266.24.24 0 0 0 .204.11 38.518 38.518 0 0 1 1.633-.323.497.497 0 0 0 .268-.166.362.362 0 0 0 .098-.23L8.236 1.2a.28.28 0 0 0-.11-.198.303.303 0 0 0-.191-.08zm2.157.197a.076.076 0 0 1 .08.069l.003.189a.172.172 0 0 1-.14.166l-1.062.104-.009-.008V1.23l.009-.004 1.111-.108a.076.076 0 0 1 .008 0zm-2.52.29a.167.167 0 0 1 .078.022.117.117 0 0 1 .054.106l-.009.704a.125.125 0 0 1-.049.105.291.291 0 0 1-.12.047 61.16 61.16 0 0 1-.997.19.106.106 0 0 1-.088-.017.133.133 0 0 1-.03-.1v-.726a.143.143 0 0 1 .04-.097.243.243 0 0 1 .12-.06c.29-.054.67-.129.968-.172a.167.167 0 0 1 .033-.002zm10.81 0l-.001.001c-.008 0-.008.012-.008.019-.014.606-.03 1.167-.035 1.773 0 .013.006.03.018.033a22.245 22.245 0 0 1 2.158.7c.032.011.031-.013.031-.022.003-.138.01-.278.003-.416a.041.041 0 0 0-.025-.033 16.602 16.602 0 0 0-1.66-.541.028.028 0 0 1-.019-.026l.008-.18c0-.008.014-.01.022-.008a21.848 21.848 0 0 1 1.67.542c.01.003.01-.01.01-.019a5.121 5.121 0 0 0 0-.468.029.029 0 0 0-.02-.026 21.457 21.457 0 0 0-1.638-.523c-.008-.002-.018-.01-.018-.018v-.192c0-.008.013-.013.021-.01.564.144 1.184.36 1.615.519.038.014.06.008.06-.027 0-.157.006-.168-.002-.324-.002-.02-.004-.04-.022-.047a21.383 21.383 0 0 0-2.169-.707zm-12.97.064a.365.365 0 0 0-.084.009c-.65.166-1.303.414-1.956.652a.063.063 0 0 0-.03.052V3.65l.003.33s.471-.177.573-.21c.013-.004.013-.017.013-.031l-.01-.52c0-.015.002-.037.016-.04l1.625-.502a.306.306 0 0 0 .138-.101.237.237 0 0 0 .052-.156l-.017-.683a.272.272 0 0 0-.119-.197.365.365 0 0 0-.204-.068zm-.286.496c.036-.01.07.031.072.063a1.86 1.86 0 0 1 .012.25c-.001.045-.066.097-.11.11l-1.184.386c-.011.004-.031 0-.031-.012l.002-.358c0-.017.02-.031.036-.036a10.796 10.796 0 0 1 1.203-.403zm6.967.981c.653.01 1.246.03 1.9.088a26.591 26.591 0 0 1 4.083.663 22.501 22.501 0 0 1 2.861.937.107.107 0 0 1 .014.007 89.441 89.441 0 0 0-.007.448h-8.851zm-.317.002l-.001 4.618H8.827c-.043-.004-.015-.023.015-.052a1.71 1.71 0 0 1 .715-.312c.022-.002.028-.014-.003-.054a.898.898 0 0 0-.93-.212.985.985 0 0 0-.624.603.04.04 0 0 1-.04.031 6.734 6.734 0 0 1-.47.013c-.025 0-.037-.032-.035-.056a.737.737 0 0 1 .343-.484 1.1 1.1 0 0 1 .519-.178.04.04 0 0 0 .02-.063.515.515 0 0 0-.105-.093.758.758 0 0 0-.504-.077 1.053 1.053 0 0 0-.948.964c-.01.06.006.074-.053.094-.112.038-.322.064-.434.088-.02.003-.05-.043-.045-.063a1.309 1.309 0 0 1 .244-.522 1.006 1.006 0 0 1 .342-.291c.026-.013.05-.044.026-.064-.253-.22-.771.012-.98.241a1.37 1.37 0 0 0-.275.91c0 .016.014.041 0 .047a4.942 4.942 0 0 1-.4.15c-.012.003-.014-.028-.016-.04a.93.93 0 0 1 .147-.677.661.661 0 0 1 .244-.241c.01-.006.008-.018 0-.028-.115-.149-.569-.042-.708.094-.32.312-.297.615-.312 1.097-.001.023-.03.111-.056.123a.57.57 0 0 1-.184.07c-.021.006-.023.014-.028-.007a.39.39 0 0 0-.57-.222.356.356 0 0 0-.077.532c.015.017.02.034-.003.041a.42.42 0 0 0-.275.534.336.336 0 0 0 .296.21.628.628 0 0 0 .37-.108.043.043 0 0 1 .06.01.386.386 0 0 0 .531.124c.162-.107.234-.273.114-.559-.007-.016.02-.046.034-.054a6.615 6.615 0 0 1 3.144-.88 1.78 1.78 0 0 1 .456.101.094.094 0 0 1 .023.008l.002.941a.19.19 0 0 1-.034.025 1.005 1.005 0 0 0-.432.55c-.004.017-.006.021-.035.024-.193.019-.399.047-.591.062-.011.002-.032-.019-.028-.03a1.87 1.87 0 0 1 .725-.908.057.057 0 0 0 .01-.067.375.375 0 0 0-.168-.093 1.087 1.087 0 0 0-.895.362 1.418 1.418 0 0 0-.312.875c-.001.022.003.058-.019.065-.124.039-.261.074-.39.11-.015.004-.035-.011-.038-.027a1.006 1.006 0 0 1 .486-1.03c.051-.04-.038-.102-.102-.102a.963.963 0 0 0-.913.53 1.301 1.301 0 0 0-.03.793c.003.023.019.063-.006.069-.079.019-.265.09-.323.108-.021.007-.035-.003-.047-.03a1.041 1.041 0 0 1-.021-.488 1.102 1.102 0 0 1 .268-.493c.008-.01.011-.032 0-.037a.54.54 0 0 0-.378-.025.74.74 0 0 0-.477.38c-.159.297-.118.583.051 1.005.008.02.018.058 0 .07l-.137.08c-.017.013-.032.002-.044-.015-.055-.078-.124-.202-.21-.24a.415.415 0 0 0-.428.035.406.406 0 0 0-.12.431.875.875 0 0 0 .1.152c.01.014-.001.036-.013.047-.059.052-.14.09-.188.14a.395.395 0 0 0-.01.471.365.365 0 0 0 .45.123 1.624 1.624 0 0 0 .232-.122c.027-.018.045-.051.07-.025a.546.546 0 0 0 .224.153.427.427 0 0 0 .354-.062.305.305 0 0 0 .168-.338.875.875 0 0 0-.143-.27c-.033-.035-.035-.033 0-.054a7.435 7.435 0 0 1 1.66-.724 5.024 5.024 0 0 1 1.69-.207h.046l.003 1.949H3.206c-.054-2.133-.116-5.51-.156-7.836a.113.113 0 0 1 .014-.007 22.499 22.499 0 0 1 2.86-.937 26.59 26.59 0 0 1 4.084-.663 23.38 23.38 0 0 1 1.768-.086zm-3.088.816a1.237 1.237 0 0 0-.693.232c-.286.188-.456.773-.49.982a.044.044 0 0 1-.04.036 5.998 5.998 0 0 0-.676.125c-.007.001-.012-.01-.012-.017a.983.983 0 0 1 .258-.59 3.506 3.506 0 0 1 .493-.396c.013-.011.004-.045-.012-.051a1.035 1.035 0 0 0-.797.012 1.129 1.129 0 0 0-.675.867 2.062 2.062 0 0 0-.029.41c.002.017-.03.018-.045.023-.246.077-.504.167-.71.236-.01.004-.039.002-.039-.01a1.168 1.168 0 0 1 .175-.655c.12-.195.343-.305.505-.469.011-.012.028-.044.011-.051-.41-.165-.797.004-1.124.375a1.395 1.395 0 0 0-.2 1.124c.009.036 0 .075-.019.083a1.805 1.805 0 0 1-.23.089.025.025 0 0 1-.033-.02c-.093-.296-.44-.238-.597-.148a.361.361 0 0 0-.139.489.031.031 0 0 1-.01.044.442.442 0 0 0-.205.596.352.352 0 0 0 .428.137 1.208 1.208 0 0 0 .246-.129.027.027 0 0 1 .03.004.393.393 0 0 0 .566.08c.115-.082.16-.096.204-.244a.39.39 0 0 0-.09-.3c-.012-.01-.001-.04.013-.047A9.692 9.692 0 0 1 8.947 5.51a2.35 2.35 0 0 1 1.446.553.072.072 0 0 0 .062.031.098.098 0 0 0 .054-.056.66.66 0 0 0-.204-.678 1.21 1.21 0 0 0-.612-.344c-.012-.003-.02-.029-.01-.037a.968.968 0 0 1 .335-.22 3.587 3.587 0 0 1 .605-.05c.014-.001.035-.015.03-.028a.606.606 0 0 0-.527-.4 1.325 1.325 0 0 0-.693.1 1.118 1.118 0 0 0-.5.553.036.036 0 0 1-.032.02 12.139 12.139 0 0 0-.594-.007c-.014 0-.035 0-.035-.014a.943.943 0 0 1 .255-.517 1.989 1.989 0 0 1 .68-.386c.019-.006.04-.036.029-.051a.549.549 0 0 0-.201-.17 1.237 1.237 0 0 0-.347-.041zm3.405 1.607h8.845c-.012.686-.025 1.433-.04 2.195h-8.805zM8.681 7.801l6.666.003a.016.016 0 0 1 .017.013l-.002 5.138a2.354 2.354 0 0 1-.143.764 3.327 3.327 0 0 1-1.44 1.725 3.468 3.468 0 0 1-1.74.491 3.512 3.512 0 0 1-2.26-.86 3.078 3.078 0 0 1-1.105-2.31L8.667 7.82c0-.013.001-.019.014-.019zm6.994.086h5.217c-.012.645-.025 1.296-.034 1.926h-5.183V8.318zm-6.839.071c-.013 0-.014.005-.014.018l.007 4.753a2.97 2.97 0 0 0 1.054 2.225 3.333 3.333 0 0 0 2.153.827 3.284 3.284 0 0 0 1.66-.473 3.193 3.193 0 0 0 1.374-1.66 2.28 2.28 0 0 0 .136-.734l.002-4.94a.015.015 0 0 0-.016-.014zm4.436.304a.101.101 0 0 1 .001 0 .11.11 0 0 1 .087.071l.242.715a.079.079 0 0 1-.003.07.066.066 0 0 1-.054.024.065.065 0 0 1-.063-.044l-.038-.125h-.33l-.036.128c-.01.04-.04.044-.071.044a.063.063 0 0 1-.044-.028.057.057 0 0 1-.01-.052l.232-.728a.101.101 0 0 1 .087-.075zm-.763.007a.226.226 0 0 1 .023 0 .232.232 0 0 1 .235.157.046.046 0 0 1-.031.059.053.053 0 0 1-.07-.02.166.166 0 0 0-.132-.09.151.151 0 0 0-.133.1.498.498 0 0 0-.055.222.524.524 0 0 0 .046.228.159.159 0 0 0 .154.102.233.233 0 0 0 .166-.243v-.039h-.135a.057.057 0 0 1-.059-.063c0-.023.007-.05.059-.05h.192c.064 0 .073.048.073.09a.792.792 0 0 1-.011.152.399.399 0 0 1-.15.236.301.301 0 0 1-.15.043.257.257 0 0 1-.227-.145.618.618 0 0 1-.073-.31.577.577 0 0 1 .08-.304.226.226 0 0 1 .198-.125zm-2.988.002a.318.318 0 0 1 .004 0c.183.002.243.111.243.15 0 .035-.061.08-.095.039a.2.2 0 0 0-.157-.068.143.143 0 0 0-.15.096.114.114 0 0 0 .094.135.61.61 0 0 1 .267.08h-.001a.202.202 0 0 1 .081.18.247.247 0 0 1-.067.175.327.327 0 0 1-.247.088.297.297 0 0 1-.263-.14c-.004-.01-.01-.063.034-.078a.084.084 0 0 1 .082.026.239.239 0 0 0 .156.063.223.223 0 0 0 .148-.05.105.105 0 0 0 .024-.116.219.219 0 0 0-.193-.098.25.25 0 0 1-.172-.07.25.25 0 0 1-.069-.196.219.219 0 0 1 .1-.163.318.318 0 0 1 .181-.053zm1.649 0a.06.06 0 0 1 .001 0 .06.06 0 0 1 .006 0h.355a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm.56 0a.06.06 0 0 1 .001 0 .06.06 0 0 1 .006 0h.354a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.115a.06.06 0 0 1-.007-.12zm2.74 0a.06.06 0 0 1 .002 0 .06.06 0 0 1 .006 0h.353a.06.06 0 1 1 0 .12l-.112.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm-.677.004a.063.063 0 0 1 .012 0h.19a.364.364 0 0 1 .208.058.278.278 0 0 1 .108.206.235.235 0 0 1-.071.198.305.305 0 0 1-.117.075l-.02.007.158.2a.086.086 0 0 1 .023.056c-.002.032-.023.05-.06.05a.066.066 0 0 1-.056-.027l-.187-.258h-.117v.23a.059.059 0 0 1-.063.067.06.06 0 0 1-.062-.067v-.726a.073.073 0 0 1 .016-.05.063.063 0 0 1 .038-.019zm-3.87.002a.06.06 0 0 1 .003 0h.357a.06.06 0 0 1 0 .121h-.116v.684a.063.063 0 0 1-.125 0v-.684h-.116a.06.06 0 0 1-.003-.12zm.583 0a.063.063 0 0 1 .002 0 .063.063 0 0 1 .065.064v.471a.258.258 0 0 0 .037.151.146.146 0 0 0 .127.056.138.138 0 0 0 .125-.056.265.265 0 0 0 .035-.15V8.34h.001a.063.063 0 0 1 .125 0v.432a.474.474 0 0 1-.056.262.25.25 0 0 1-.228.104.26.26 0 0 1-.23-.104.456.456 0 0 1-.061-.262V8.34a.063.063 0 0 1 .058-.063zm3.354.115v.328h.13a.18.18 0 0 0 .2-.174.15.15 0 0 0-.051-.109.178.178 0 0 0-.13-.045zm-.584.015l-.136.469h.278zm-1.14 1.005c.011 0 .021.002.022.011.002.018-.016.029-.042.042a.206.206 0 0 0-.094.08.31.31 0 0 0-.039.163.115.115 0 0 0 .063.079.298.298 0 0 0 .142.028.502.502 0 0 0 .215-.063.581.581 0 0 1 .276-.02.341.341 0 0 1 .194.063c.024.017.02.038.011.04-.014.005-.029-.012-.044-.01a.674.674 0 0 0-.142.03c-.06.027-.087.037-.116.09a.099.099 0 0 0-.007.073c.01.024.035.04.04.057a.446.446 0 0 0 .064.125.205.205 0 0 0 .03.023 2.668 2.668 0 0 1 .282.243.26.26 0 0 1 .04.093c.003.012-.007.03-.018.025a.255.255 0 0 1-.036-.029.178.178 0 0 0-.053-.039.368.368 0 0 0-.176-.025c-.027 0-.081.024-.05.036a.357.357 0 0 1 .132.116.43.43 0 0 1 .107.31c0 .006-.012.01-.015.006a.359.359 0 0 0-.102-.109.324.324 0 0 0-.21-.062c-.015.001-.06 0-.055.014a1.19 1.19 0 0 1 .123.191.562.562 0 0 1 .039.276c-.001.005-.02.01-.023.005a.61.61 0 0 0-.077-.076.349.349 0 0 0-.094-.06.29.29 0 0 0-.204.028.325.325 0 0 0-.13.132.492.492 0 0 0-.062.205.46.46 0 0 0 .042.257.368.368 0 0 0 .19.164.955.955 0 0 0 .334.044c.139.005.278-.016.417-.02a1.943 1.943 0 0 1 .396.003.88.88 0 0 1 .3.12 2.64 2.64 0 0 1 .215.183c.008.006.026-.003.035-.009a.462.462 0 0 0 .131-.233.346.346 0 0 0-.056-.246c-.047-.085-.116-.18-.17-.27a2.962 2.962 0 0 1-.202-.296.305.305 0 0 1-.017-.221.238.238 0 0 1 .107-.128c.011-.007.022.006.017.021a.184.184 0 0 0-.008.112.32.32 0 0 0 .089.14c.013.01.047-.005.055-.021.018-.043.007-.11.023-.154a.619.619 0 0 1 .108-.226 1.47 1.47 0 0 1 .36-.196c.033-.019.054-.105.091-.091.037.013.017.1-.011.142-.04.062-.087.1-.131.156a1.536 1.536 0 0 0-.157.247.222.222 0 0 0-.029.137.14.14 0 0 0 .073.094c.022.01.05-.01.07-.025a.385.385 0 0 0 .097-.103c.023-.038.01-.089.032-.128.006-.009.03-.007.037 0a.139.139 0 0 1 .044.084.393.393 0 0 1-.01.113c-.003.008-.024.027-.031.045a.244.244 0 0 1-.02.04c-.036.063-.078.116-.125.126-.01.001-.017.021-.01.03a.391.391 0 0 0 .113.132.198.198 0 0 0 .152.01c.027-.008.048-.027.079-.037.013-.004.005.004.005.017a.27.27 0 0 1-.015.086.19.19 0 0 1-.075.083.395.395 0 0 1-.166.05c-.027.005-.068.025-.058.051a.256.256 0 0 0 .042.085.122.122 0 0 0 .08.039.205.205 0 0 0 .125-.036c.04-.026.061-.074.096-.108.007-.006.026 0 .026.01a.36.36 0 0 1-.041.158.497.497 0 0 1-.128.138c-.015.013-.033.029-.033.049a.2.2 0 0 0 .044.084.134.134 0 0 0 .083.054.269.269 0 0 0 .1 0c.013 0 .01.023-.001.031a.253.253 0 0 1-.117.068.25.25 0 0 1-.128.008c-.081-.02-.134-.05-.214-.073a.23.23 0 0 0-.135-.009.227.227 0 0 0-.106.083.133.133 0 0 0-.03.064c-.006.063.025.13.005.192a1.415 1.415 0 0 1-.081.234 1.314 1.314 0 0 1-.115.165c-.04.054-.093.074-.12.133a.638.638 0 0 1-.038.063.515.515 0 0 0-.058.229.452.452 0 0 0 .085.209l.153.237a.149.149 0 0 1 .009.083.088.088 0 0 1-.044.07.893.893 0 0 0-.419.527l-.002.013v.004a.106.106 0 0 1-.021.042.334.334 0 0 1-.19.096c-.055.015-.11.029-.165.046a.077.077 0 0 0-.044.031.08.08 0 0 0 .009.097.137.137 0 0 1 .03.071.063.063 0 0 1-.013.042.108.108 0 0 1-.028.022.865.865 0 0 1-.216.087c-.05.011-.086-.002-.07-.059a3.075 3.075 0 0 1 .098-.293.42.42 0 0 1 .133-.14 2.289 2.289 0 0 1 .212-.162.411.411 0 0 0 .119-.126 3.299 3.299 0 0 1 .19-.275.163.163 0 0 0 .029-.129.246.246 0 0 0-.142-.185 1.052 1.052 0 0 0-.085-.034.534.534 0 0 1-.246-.175.09.09 0 0 0-.062-.04c-.063.002-.081.09-.083.138a1.17 1.17 0 0 0 .004.212.18.18 0 0 1 .004.072.055.055 0 0 1-.039.034 2.74 2.74 0 0 0-.565.279.24.24 0 0 0-.063.07l-.017.029a.187.187 0 0 1-.223.08.5.5 0 0 0-.044-.011.094.094 0 0 0-.064.017.162.162 0 0 0-.041.036.06.06 0 0 0-.01.019v.006a.057.057 0 0 0 0 .008.07.07 0 0 0 .004.017l.022.06a.066.066 0 0 1-.038.096.881.881 0 0 1-.203.055c-.04.005-.075-.01-.065-.057a1.1 1.1 0 0 1 .07-.237.094.094 0 0 1 .057-.06.79.79 0 0 0 .179-.14.266.266 0 0 1 .169-.073.512.512 0 0 0 .262-.1 1.73 1.73 0 0 0 .225-.186.37.37 0 0 0-.006-.46l-.02-.035c-.019-.03-.03-.073-.046-.104a.24.24 0 0 1-.039-.104c0-.068.027-.133.031-.201a.024.024 0 0 0-.016-.025.488.488 0 0 0-.137-.03 2.677 2.677 0 0 1-.56.006 1.423 1.423 0 0 1-.39-.18c-.053-.033-.085-.07-.139-.101-.014-.008-.015-.005-.028.006a.672.672 0 0 1-.459.125h-.002a1.766 1.766 0 0 1-.294-.077c-.073-.027-.19-.074-.26-.015-.029.025-.022.06-.022.093a1.244 1.244 0 0 1-.01.305.038.038 0 0 0 .003.032.044.044 0 0 0 .006.006.136.136 0 0 0 .036.02l.01.004c.028.01.033.023.05.058a.196.196 0 0 1 .016.062.159.159 0 0 1-.003.062.544.544 0 0 1-.009.039.207.207 0 0 0 .008.135.115.115 0 0 0 .042.053.073.073 0 0 0 .01.004.063.063 0 0 0 .01.003.068.068 0 0 0 .01 0h.01a.074.074 0 0 0 .02-.008l.004-.002a.05.05 0 0 1 .035-.012.046.046 0 0 1 .01.003.08.08 0 0 1 .063.074.484.484 0 0 1-.046.221.058.058 0 0 1-.077.03l-.018-.007a.445.445 0 0 1-.14-.117.19.19 0 0 1-.049-.112.12.12 0 0 0-.028-.082.09.09 0 0 0-.032-.016.144.144 0 0 1-.07-.046.268.268 0 0 1-.052-.219 1.5 1.5 0 0 0-.046-.64.149.149 0 0 1 .002-.108l.016-.043a.148.148 0 0 1 .007-.016.06.06 0 0 1 .042-.032.167.167 0 0 1 .029-.003 1.516 1.516 0 0 0 .45-.07.152.152 0 0 1 .062-.01.89.89 0 0 0 .073.002c.03 0 .06-.027.024-.05a.847.847 0 0 1-.084-.087.046.046 0 0 0-.052-.022.072.072 0 0 0-.01.005l-.009.005a.098.098 0 0 1-.152-.029.824.824 0 0 1-.087-.202.555.555 0 0 0-.109-.238.235.235 0 0 0-.19-.063.216.216 0 0 0-.13.098l-.063.088a.144.144 0 0 0-.031.067.107.107 0 0 0 0 .016.14.14 0 0 0 .008.032.133.133 0 0 1-.039.154l-.094.075a.087.087 0 0 0-.03.06.527.527 0 0 1-.012.06.13.13 0 0 0-.003.045.088.088 0 0 0 .002.012.081.081 0 0 0 .031.04.156.156 0 0 1 .013.012.074.074 0 0 1 .012.017.06.06 0 0 1-.012.07.219.219 0 0 1-.024.021.753.753 0 0 1-.19.108.098.098 0 0 1-.026.006c-.038.003-.05-.026-.052-.06-.003-.044-.003-.089-.003-.134a.207.207 0 0 1 .057-.137.36.36 0 0 0 .072-.225.197.197 0 0 1 .04-.13.305.305 0 0 0 .057-.09.257.257 0 0 1 .039-.066 3.861 3.861 0 0 0 .281-.384c.054-.086.155-.192.237-.073a.357.357 0 0 0 .078.084 2.395 2.395 0 0 0 .259.164c.094.053.109-.042.125-.121v-.003a.331.331 0 0 1 .038-.092 1.26 1.26 0 0 1 .202-.247c.043-.038.105-.076.15-.113.018-.016.023-.018.03-.04.009-.022.024-.05.034-.078.01-.027.015-.055.024-.076a.344.344 0 0 0 .044-.098v-.003a.023.023 0 0 0 0-.005v-.007l-.003-.007a.05.05 0 0 0-.021-.024.18.18 0 0 0-.102-.026h-.003a.384.384 0 0 0-.148.031.106.106 0 0 0-.054.054.226.226 0 0 1-.042.063.098.098 0 0 1-.13.006c-.024-.016-.014-.043 0-.063a.414.414 0 0 0 .035-.05.042.042 0 0 0 .005-.025v-.004l-.002-.005a.031.031 0 0 0-.005-.006.046.046 0 0 0-.045-.007.98.98 0 0 0-.083.027.064.064 0 0 1-.094-.047.174.174 0 0 1-.003-.055.055.055 0 0 1 .04-.05c.02-.006.05-.017.046-.042a.079.079 0 0 1 0-.023.052.052 0 0 1 .012-.024.14.14 0 0 1 .03-.025 3.869 3.869 0 0 0 .32-.234.05.05 0 0 1 .064-.01l.01.006a.223.223 0 0 0 .151.02.046.046 0 0 0 .041-.03.025.025 0 0 0 0-.005v-.005l-.002-.006-.003-.004a.071.071 0 0 0-.035-.021l-.058-.021a.269.269 0 0 1-.052-.025.053.053 0 0 1-.025-.059c.023-.113.147-.114.241-.105h.004a.505.505 0 0 0 .14-.022c.06-.021.106-.067.163-.094.057-.027.117-.057.176-.08.018-.006.033-.002.049-.009a.091.091 0 0 0 .035-.025.965.965 0 0 1 .142-.163.822.822 0 0 1 .236-.092.107.107 0 0 1 .03-.006zm-.425.557a.219.219 0 0 0-.105.026c-.009.005-.015.016-.008.024.018.021.049.03.07.05a.16.16 0 0 1 .035.046c.009.019.024.04.033.06a1.296 1.296 0 0 1 .045.123 1.227 1.227 0 0 1 .05.209c.01.057.007.117.01.175v.081c-.001.023-.001.047-.003.07a1.143 1.143 0 0 0-.004.098v.08c.002.07.013.12.044.12a.18.18 0 0 0 .084-.019.175.175 0 0 0 .085-.148 2.026 2.026 0 0 0-.003-.576.51.51 0 0 0-.188-.362.219.219 0 0 0-.144-.057zm3.96.161h5.177c-.017.825-.034 1.6-.05 2.263h-5.13l.004-1.862zm-.006 2.544h5.123a9.697 9.697 0 0 1-.545 2.911 14.495 14.495 0 0 1-1.56 3.118 12.45 12.45 0 0 1-2.415 2.669 10.809 10.809 0 0 1-1.147.848 14.592 14.592 0 0 1-1.96.999c-.224.096-.418.186-.596.247-.193.065-.358.125-.474.156v-.115l.003-7.295a3.552 3.552 0 0 0 .316-.023c.005.015.016.057.031.1a.333.333 0 0 0 .219.166.317.317 0 0 0 .306-.107.373.373 0 0 0 .388.067.235.235 0 0 0 .175-.227.43.43 0 0 0-.033-.208l-.036-.066a3.925 3.925 0 0 0 .744-.41l.02-.006c.373-.094 1.872-.631 2.791-.643a3.28 3.28 0 0 1 1.627.39 2.792 2.792 0 0 1 .682.56c.006.009.013.028.037.032a.036.036 0 0 0 .034-.022 1.139 1.139 0 0 0 .079-.516c-.02-.282-.3-.486-.383-.57-.003-.003-.01-.021.02-.041a.674.674 0 0 1 .105-.085.983.983 0 0 1 .562-.212c.03.003.02-.04.012-.076-.058-.25-.415-.412-.79-.354a.963.963 0 0 0-.613.417c-.007.011-.042.027-.056.013a2.926 2.926 0 0 0-.369-.107c-.045-.01-.021-.044-.019-.05a1.003 1.003 0 0 1 .304-.337 1.125 1.125 0 0 1 .494-.224c.022 0 .022-.03.016-.04a.55.55 0 0 0-.375-.302.844.844 0 0 0-.78.14 1.397 1.397 0 0 0-.445.673c-.014.02-.018.036-.036.032-.099-.02-.345-.007-.367-.022-.015-.007-.012-.03-.009-.045a.91.91 0 0 1 .222-.38.882.882 0 0 1 .364-.286.055.055 0 0 0 .01-.094.98.98 0 0 0-1.22.263 2.192 2.192 0 0 0-.304.696c-.002.009-.017.036-.036.036l-.508.112-.083.019-.022.023a3.29 3.29 0 0 0 .497-1.65zm-12.45.085h5.19v.09a3.145 3.145 0 0 0 .837 2.098H3.556a9.74 9.74 0 0 1-.342-2.188zm.415 2.443h5.863a2.566 2.566 0 0 0 .112.1 3.897 3.897 0 0 0 2.17.898v1.21h-7.22a13.789 13.789 0 0 1-.8-1.827 10.401 10.401 0 0 1-.125-.38zm10.584.29l-.01.012h-.002l-.002-.002a3.29 3.29 0 0 0 .015-.01zm1.738.185a.911.911 0 0 0-.507.155.934.934 0 0 0-.392.41 2.65 2.65 0 0 0-.172.775.063.063 0 0 1-.038.035 2.897 2.897 0 0 0-.335.087.026.026 0 0 1-.023-.02 1.105 1.105 0 0 1 .15-.727.886.886 0 0 1 .218-.263.037.037 0 0 0-.017-.068.98.98 0 0 0-.648.114.888.888 0 0 0-.452.667 1.589 1.589 0 0 0 .042.594c0 .006.006.027-.016.031-.076.037-.282.145-.355.18-.005.002-.019.005-.022-.006a.58.58 0 0 0-.268-.358.526.526 0 0 0-.446.022.548.548 0 0 0-.216.224.375.375 0 0 0 .127.455c.006.006.017.02 0 .025-.09.049-.092.06-.16.161a.428.428 0 0 0 .052.45.465.465 0 0 0 .7.082c.004-.003.018.005.025.02a.548.548 0 0 0 .143.151.463.463 0 0 0 .455 0 .413.413 0 0 0 .21-.415.378.378 0 0 0-.111-.262c-.013-.016 0-.024.034-.046a5.404 5.404 0 0 1 1.96-.666 3.121 3.121 0 0 1 1.076.022 1.504 1.504 0 0 1 .629.312 2.841 2.841 0 0 1 .406.402.164.164 0 0 0 .117-.025.66.66 0 0 0 .014-.517 1.604 1.604 0 0 0-.384-.59c-.003-.002-.003-.013-.003-.02-.004-.03.015-.045.052-.079a1.211 1.211 0 0 1 .562-.297c.027-.002.038-.022.02-.053a.656.656 0 0 0-.808-.298h-.001a.916.916 0 0 0-.454.416c-.006.011-.022.05-.037.038-.09-.008-.242-.032-.331-.04-.041-.002-.025-.039-.024-.045a.744.744 0 0 1 .194-.316 1.176 1.176 0 0 1 .444-.318.021.021 0 0 0 .016-.031.627.627 0 0 0-.465-.229.81.81 0 0 0-.617.238 1.255 1.255 0 0 0-.337.74c-.009.023-.02.035-.037.035a2 2 0 0 1-.278.025c-.015-.004-.014-.02-.014-.036a.91.91 0 0 1 .101-.406 1.491 1.491 0 0 1 .55-.582c.036-.025.038-.076.026-.082a.911.911 0 0 0-.355-.071zM4.707 17.692h7.069v2.19H6.213a11.237 11.237 0 0 1-.898-1.181 16.446 16.446 0 0 1-.609-1.01zm10.076 1.176a.497.497 0 0 0-.273.069.982.982 0 0 0-.475.56 1.09 1.09 0 0 0 .012.571c.003.007.012.024-.002.03-.078.03-.136.065-.213.096-.004 0-.024.005-.028-.005a.631.631 0 0 1 .088-.736c.017-.015.027-.035-.008-.047a.588.588 0 0 0-.531.193.677.677 0 0 0-.117.659.922.922 0 0 0 .099.261c.003.005.03.021.014.028l-.15.115c-.003.003-.014.008-.019 0a.486.486 0 0 0-.29-.238.341.341 0 0 0-.317.088.361.361 0 0 0 .147.602c.007.003.017.012.005.02a.587.587 0 0 0-.19.212.377.377 0 0 0 .085.406.37.37 0 0 0 .29.089.605.605 0 0 0 .357-.313c.002-.003.021-.017.031-.006a.531.531 0 0 0 .264.2.324.324 0 0 0 .323-.065.35.35 0 0 0 .111-.4.61.61 0 0 0-.201-.216c-.013-.01-.003-.035.023-.055a2.972 2.972 0 0 1 1.402-.62 1.801 1.801 0 0 1 1.025.166 1.547 1.547 0 0 1 .337.267c.013.007.05.02.063.008a.397.397 0 0 0 .035-.548.654.654 0 0 0-.206-.165.043.043 0 0 1-.007-.015.906.906 0 0 1 .301-.393 1.382 1.382 0 0 1 .295-.143c.022-.006.018-.02.007-.047-.128-.293-.635-.304-.874-.15a1.088 1.088 0 0 0-.346.396c-.005.01-.012.04-.025.031l-.213-.064c-.004 0-.004-.024-.002-.028a1.115 1.115 0 0 1 .696-.565c.015-.006.01-.02.007-.028-.11-.268-.661-.245-.93-.074a1.167 1.167 0 0 0-.493.714c-.003.02.006.037-.007.04a1.239 1.239 0 0 1-.23.055.024.024 0 0 1-.022-.023.642.642 0 0 1 .067-.392 2 2 0 0 1 .324-.408.043.043 0 0 0-.003-.063.497.497 0 0 0-.236-.07zm-3.006 1.296v3.417c-.098-.032-.214-.074-.342-.117-.178-.06-.373-.151-.597-.247a14.587 14.587 0 0 1-1.96-1 10.816 10.816 0 0 1-1.147-.847 12.861 12.861 0 0 1-1.266-1.206h5.31z" }) + ] + } + ); +}); + +exports.default = SiPorsche; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.d.ts new file mode 100644 index 000000000..2eabf0059 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B12B28"; +declare const SiPorsche: IconType; +export { SiPorsche as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.mjs new file mode 100644 index 000000000..f7ded4bb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPorsche.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B12B28"; +const SiPorsche = React.forwardRef(function SiPorsche2({ title = "Porsche", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.972 0A25.68 25.68 0 0 0 9.93.091a27.858 27.858 0 0 0-4.248.685 23.565 23.565 0 0 0-2.975.966l-.06.022s.118 7.243.21 10.831a9.934 9.934 0 0 0 .569 3.098 14.899 14.899 0 0 0 1.622 3.214A12.884 12.884 0 0 0 7.56 21.66a11.234 11.234 0 0 0 1.192.873 15.214 15.214 0 0 0 2.038 1.031c.233.098.436.192.62.255A4.58 4.58 0 0 0 12 24a4.58 4.58 0 0 0 .59-.182c.182-.063.387-.156.62-.255a15.22 15.22 0 0 0 2.037-1.031 11.25 11.25 0 0 0 1.194-.873 12.88 12.88 0 0 0 2.511-2.752 14.889 14.889 0 0 0 1.622-3.214 9.934 9.934 0 0 0 .57-3.098c.091-3.588.21-10.827.21-10.827a.635.635 0 0 0-.057-.026 23.564 23.564 0 0 0-2.976-.966 27.856 27.856 0 0 0-4.248-.684A26.068 26.068 0 0 0 12.031 0zm0 .361h.057c.679.008 1.288.03 1.963.09a26.585 26.585 0 0 1 4.084.663 22.53 22.53 0 0 1 2.861.937.619.619 0 0 1 .057.025l-.038 2.274a.113.113 0 0 0-.019-.01 22.55 22.55 0 0 0-2.86-.937 26.61 26.61 0 0 0-4.085-.662c-.675-.06-1.281-.1-1.96-.108h-.058c-.679.009-1.29.048-1.965.108a26.608 26.608 0 0 0-4.084.665 22.547 22.547 0 0 0-2.861.938.116.116 0 0 0-.02.01l-.038-2.281.058-.022a22.527 22.527 0 0 1 2.86-.937A26.581 26.581 0 0 1 10.01.45c.675-.06 1.284-.08 1.963-.089zm.288.216a16.633 16.633 0 0 0-.902.008c-.121.005-.288.109-.29.23l-.007.648c-.002.132.172.236.305.239.462.01.87.002 1.318.03.033.003.062.023.062.056l-.003.13a.042.042 0 0 1-.045.046c-.521 0-1.066-.025-1.593.017-.028.002-.027-.005-.028.023l-.024.384-.002.03a16.318 16.318 0 0 1 1.882 0 .32.32 0 0 0 .305-.262l.006-.627c0-.129-.158-.224-.261-.23-.442-.028-.945-.013-1.394-.025a.046.046 0 0 1-.044-.05l.009-.145c0-.028.019-.036.047-.037.444-.016 1.107.005 1.562.019a.072.072 0 0 0 .06-.07V.674c0-.017-.032-.067-.063-.068V.605a33.113 33.113 0 0 0-.9-.028zm-1.88.064c-.423.008-1.341.125-1.862.19L8.515 2.64v.023l.47-.06a.014.014 0 0 0 .01-.006.014.014 0 0 0 .003-.01v-.523l.947-.102c.083-.015.18.046.256.169a.88.88 0 0 1 .114.339l.467-.035c.01 0 .03 0 .028-.01a.988.988 0 0 0-.307-.663.316.316 0 0 0 .197-.31 4.34 4.34 0 0 0-.022-.564.32.32 0 0 0-.3-.247zm3.59.019a.404.404 0 0 0-.413.332l-.01 1.195a.312.312 0 0 0 .24.289c.61.057 1.21.112 1.89.215.011 0 .032-.007.032-.017v-.416c0-.009-.02-.028-.027-.03-.454-.057-1.053-.137-1.589-.193a.076.076 0 0 1-.058-.07v-.812c0-.034.05-.052.084-.05.529.044 1.056.14 1.584.197.014.002.036-.007.037-.021l.01-.382a.037.037 0 0 0-.029-.033 36.382 36.382 0 0 0-1.75-.204zm1.98.237c-.012 0-.022.014-.022.025-.006.274-.045 1.457-.053 1.772v.027c.155.027.326.048.453.074.014.002.035-.008.035-.022-.002-.207 0-.448-.004-.636 0-.013.006-.014.02-.012a31.392 31.392 0 0 1 1.102.22c.008 0 .052.007.052.03-.003.217-.007.4-.013.617a.041.041 0 0 0 .027.04c.145.033.283.067.42.1.037.008.043.001.044-.012.022-.451.03-1.174.036-1.784 0-.008-.003-.02-.01-.022-.153-.035-.297-.072-.453-.105-.014-.003-.022.02-.023.035-.015.223-.009.43-.026.652 0 .008 0 .012-.009.01-.37-.076-.765-.158-1.132-.227-.01-.002-.006-.02-.005-.031l.003-.653a.033.033 0 0 0-.026-.03 23.196 23.196 0 0 0-.417-.068zM7.934.92a.303.303 0 0 0-.037 0c-.543.086-1.089.201-1.64.32a.5.5 0 0 0-.23.143.322.322 0 0 0-.102.205l.004 1.118a.434.434 0 0 0 .106.266.24.24 0 0 0 .204.11 38.518 38.518 0 0 1 1.633-.323.497.497 0 0 0 .268-.166.362.362 0 0 0 .098-.23L8.236 1.2a.28.28 0 0 0-.11-.198.303.303 0 0 0-.191-.08zm2.157.197a.076.076 0 0 1 .08.069l.003.189a.172.172 0 0 1-.14.166l-1.062.104-.009-.008V1.23l.009-.004 1.111-.108a.076.076 0 0 1 .008 0zm-2.52.29a.167.167 0 0 1 .078.022.117.117 0 0 1 .054.106l-.009.704a.125.125 0 0 1-.049.105.291.291 0 0 1-.12.047 61.16 61.16 0 0 1-.997.19.106.106 0 0 1-.088-.017.133.133 0 0 1-.03-.1v-.726a.143.143 0 0 1 .04-.097.243.243 0 0 1 .12-.06c.29-.054.67-.129.968-.172a.167.167 0 0 1 .033-.002zm10.81 0l-.001.001c-.008 0-.008.012-.008.019-.014.606-.03 1.167-.035 1.773 0 .013.006.03.018.033a22.245 22.245 0 0 1 2.158.7c.032.011.031-.013.031-.022.003-.138.01-.278.003-.416a.041.041 0 0 0-.025-.033 16.602 16.602 0 0 0-1.66-.541.028.028 0 0 1-.019-.026l.008-.18c0-.008.014-.01.022-.008a21.848 21.848 0 0 1 1.67.542c.01.003.01-.01.01-.019a5.121 5.121 0 0 0 0-.468.029.029 0 0 0-.02-.026 21.457 21.457 0 0 0-1.638-.523c-.008-.002-.018-.01-.018-.018v-.192c0-.008.013-.013.021-.01.564.144 1.184.36 1.615.519.038.014.06.008.06-.027 0-.157.006-.168-.002-.324-.002-.02-.004-.04-.022-.047a21.383 21.383 0 0 0-2.169-.707zm-12.97.064a.365.365 0 0 0-.084.009c-.65.166-1.303.414-1.956.652a.063.063 0 0 0-.03.052V3.65l.003.33s.471-.177.573-.21c.013-.004.013-.017.013-.031l-.01-.52c0-.015.002-.037.016-.04l1.625-.502a.306.306 0 0 0 .138-.101.237.237 0 0 0 .052-.156l-.017-.683a.272.272 0 0 0-.119-.197.365.365 0 0 0-.204-.068zm-.286.496c.036-.01.07.031.072.063a1.86 1.86 0 0 1 .012.25c-.001.045-.066.097-.11.11l-1.184.386c-.011.004-.031 0-.031-.012l.002-.358c0-.017.02-.031.036-.036a10.796 10.796 0 0 1 1.203-.403zm6.967.981c.653.01 1.246.03 1.9.088a26.591 26.591 0 0 1 4.083.663 22.501 22.501 0 0 1 2.861.937.107.107 0 0 1 .014.007 89.441 89.441 0 0 0-.007.448h-8.851zm-.317.002l-.001 4.618H8.827c-.043-.004-.015-.023.015-.052a1.71 1.71 0 0 1 .715-.312c.022-.002.028-.014-.003-.054a.898.898 0 0 0-.93-.212.985.985 0 0 0-.624.603.04.04 0 0 1-.04.031 6.734 6.734 0 0 1-.47.013c-.025 0-.037-.032-.035-.056a.737.737 0 0 1 .343-.484 1.1 1.1 0 0 1 .519-.178.04.04 0 0 0 .02-.063.515.515 0 0 0-.105-.093.758.758 0 0 0-.504-.077 1.053 1.053 0 0 0-.948.964c-.01.06.006.074-.053.094-.112.038-.322.064-.434.088-.02.003-.05-.043-.045-.063a1.309 1.309 0 0 1 .244-.522 1.006 1.006 0 0 1 .342-.291c.026-.013.05-.044.026-.064-.253-.22-.771.012-.98.241a1.37 1.37 0 0 0-.275.91c0 .016.014.041 0 .047a4.942 4.942 0 0 1-.4.15c-.012.003-.014-.028-.016-.04a.93.93 0 0 1 .147-.677.661.661 0 0 1 .244-.241c.01-.006.008-.018 0-.028-.115-.149-.569-.042-.708.094-.32.312-.297.615-.312 1.097-.001.023-.03.111-.056.123a.57.57 0 0 1-.184.07c-.021.006-.023.014-.028-.007a.39.39 0 0 0-.57-.222.356.356 0 0 0-.077.532c.015.017.02.034-.003.041a.42.42 0 0 0-.275.534.336.336 0 0 0 .296.21.628.628 0 0 0 .37-.108.043.043 0 0 1 .06.01.386.386 0 0 0 .531.124c.162-.107.234-.273.114-.559-.007-.016.02-.046.034-.054a6.615 6.615 0 0 1 3.144-.88 1.78 1.78 0 0 1 .456.101.094.094 0 0 1 .023.008l.002.941a.19.19 0 0 1-.034.025 1.005 1.005 0 0 0-.432.55c-.004.017-.006.021-.035.024-.193.019-.399.047-.591.062-.011.002-.032-.019-.028-.03a1.87 1.87 0 0 1 .725-.908.057.057 0 0 0 .01-.067.375.375 0 0 0-.168-.093 1.087 1.087 0 0 0-.895.362 1.418 1.418 0 0 0-.312.875c-.001.022.003.058-.019.065-.124.039-.261.074-.39.11-.015.004-.035-.011-.038-.027a1.006 1.006 0 0 1 .486-1.03c.051-.04-.038-.102-.102-.102a.963.963 0 0 0-.913.53 1.301 1.301 0 0 0-.03.793c.003.023.019.063-.006.069-.079.019-.265.09-.323.108-.021.007-.035-.003-.047-.03a1.041 1.041 0 0 1-.021-.488 1.102 1.102 0 0 1 .268-.493c.008-.01.011-.032 0-.037a.54.54 0 0 0-.378-.025.74.74 0 0 0-.477.38c-.159.297-.118.583.051 1.005.008.02.018.058 0 .07l-.137.08c-.017.013-.032.002-.044-.015-.055-.078-.124-.202-.21-.24a.415.415 0 0 0-.428.035.406.406 0 0 0-.12.431.875.875 0 0 0 .1.152c.01.014-.001.036-.013.047-.059.052-.14.09-.188.14a.395.395 0 0 0-.01.471.365.365 0 0 0 .45.123 1.624 1.624 0 0 0 .232-.122c.027-.018.045-.051.07-.025a.546.546 0 0 0 .224.153.427.427 0 0 0 .354-.062.305.305 0 0 0 .168-.338.875.875 0 0 0-.143-.27c-.033-.035-.035-.033 0-.054a7.435 7.435 0 0 1 1.66-.724 5.024 5.024 0 0 1 1.69-.207h.046l.003 1.949H3.206c-.054-2.133-.116-5.51-.156-7.836a.113.113 0 0 1 .014-.007 22.499 22.499 0 0 1 2.86-.937 26.59 26.59 0 0 1 4.084-.663 23.38 23.38 0 0 1 1.768-.086zm-3.088.816a1.237 1.237 0 0 0-.693.232c-.286.188-.456.773-.49.982a.044.044 0 0 1-.04.036 5.998 5.998 0 0 0-.676.125c-.007.001-.012-.01-.012-.017a.983.983 0 0 1 .258-.59 3.506 3.506 0 0 1 .493-.396c.013-.011.004-.045-.012-.051a1.035 1.035 0 0 0-.797.012 1.129 1.129 0 0 0-.675.867 2.062 2.062 0 0 0-.029.41c.002.017-.03.018-.045.023-.246.077-.504.167-.71.236-.01.004-.039.002-.039-.01a1.168 1.168 0 0 1 .175-.655c.12-.195.343-.305.505-.469.011-.012.028-.044.011-.051-.41-.165-.797.004-1.124.375a1.395 1.395 0 0 0-.2 1.124c.009.036 0 .075-.019.083a1.805 1.805 0 0 1-.23.089.025.025 0 0 1-.033-.02c-.093-.296-.44-.238-.597-.148a.361.361 0 0 0-.139.489.031.031 0 0 1-.01.044.442.442 0 0 0-.205.596.352.352 0 0 0 .428.137 1.208 1.208 0 0 0 .246-.129.027.027 0 0 1 .03.004.393.393 0 0 0 .566.08c.115-.082.16-.096.204-.244a.39.39 0 0 0-.09-.3c-.012-.01-.001-.04.013-.047A9.692 9.692 0 0 1 8.947 5.51a2.35 2.35 0 0 1 1.446.553.072.072 0 0 0 .062.031.098.098 0 0 0 .054-.056.66.66 0 0 0-.204-.678 1.21 1.21 0 0 0-.612-.344c-.012-.003-.02-.029-.01-.037a.968.968 0 0 1 .335-.22 3.587 3.587 0 0 1 .605-.05c.014-.001.035-.015.03-.028a.606.606 0 0 0-.527-.4 1.325 1.325 0 0 0-.693.1 1.118 1.118 0 0 0-.5.553.036.036 0 0 1-.032.02 12.139 12.139 0 0 0-.594-.007c-.014 0-.035 0-.035-.014a.943.943 0 0 1 .255-.517 1.989 1.989 0 0 1 .68-.386c.019-.006.04-.036.029-.051a.549.549 0 0 0-.201-.17 1.237 1.237 0 0 0-.347-.041zm3.405 1.607h8.845c-.012.686-.025 1.433-.04 2.195h-8.805zM8.681 7.801l6.666.003a.016.016 0 0 1 .017.013l-.002 5.138a2.354 2.354 0 0 1-.143.764 3.327 3.327 0 0 1-1.44 1.725 3.468 3.468 0 0 1-1.74.491 3.512 3.512 0 0 1-2.26-.86 3.078 3.078 0 0 1-1.105-2.31L8.667 7.82c0-.013.001-.019.014-.019zm6.994.086h5.217c-.012.645-.025 1.296-.034 1.926h-5.183V8.318zm-6.839.071c-.013 0-.014.005-.014.018l.007 4.753a2.97 2.97 0 0 0 1.054 2.225 3.333 3.333 0 0 0 2.153.827 3.284 3.284 0 0 0 1.66-.473 3.193 3.193 0 0 0 1.374-1.66 2.28 2.28 0 0 0 .136-.734l.002-4.94a.015.015 0 0 0-.016-.014zm4.436.304a.101.101 0 0 1 .001 0 .11.11 0 0 1 .087.071l.242.715a.079.079 0 0 1-.003.07.066.066 0 0 1-.054.024.065.065 0 0 1-.063-.044l-.038-.125h-.33l-.036.128c-.01.04-.04.044-.071.044a.063.063 0 0 1-.044-.028.057.057 0 0 1-.01-.052l.232-.728a.101.101 0 0 1 .087-.075zm-.763.007a.226.226 0 0 1 .023 0 .232.232 0 0 1 .235.157.046.046 0 0 1-.031.059.053.053 0 0 1-.07-.02.166.166 0 0 0-.132-.09.151.151 0 0 0-.133.1.498.498 0 0 0-.055.222.524.524 0 0 0 .046.228.159.159 0 0 0 .154.102.233.233 0 0 0 .166-.243v-.039h-.135a.057.057 0 0 1-.059-.063c0-.023.007-.05.059-.05h.192c.064 0 .073.048.073.09a.792.792 0 0 1-.011.152.399.399 0 0 1-.15.236.301.301 0 0 1-.15.043.257.257 0 0 1-.227-.145.618.618 0 0 1-.073-.31.577.577 0 0 1 .08-.304.226.226 0 0 1 .198-.125zm-2.988.002a.318.318 0 0 1 .004 0c.183.002.243.111.243.15 0 .035-.061.08-.095.039a.2.2 0 0 0-.157-.068.143.143 0 0 0-.15.096.114.114 0 0 0 .094.135.61.61 0 0 1 .267.08h-.001a.202.202 0 0 1 .081.18.247.247 0 0 1-.067.175.327.327 0 0 1-.247.088.297.297 0 0 1-.263-.14c-.004-.01-.01-.063.034-.078a.084.084 0 0 1 .082.026.239.239 0 0 0 .156.063.223.223 0 0 0 .148-.05.105.105 0 0 0 .024-.116.219.219 0 0 0-.193-.098.25.25 0 0 1-.172-.07.25.25 0 0 1-.069-.196.219.219 0 0 1 .1-.163.318.318 0 0 1 .181-.053zm1.649 0a.06.06 0 0 1 .001 0 .06.06 0 0 1 .006 0h.355a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm.56 0a.06.06 0 0 1 .001 0 .06.06 0 0 1 .006 0h.354a.06.06 0 1 1 0 .12l-.114.002v.682a.063.063 0 0 1-.125 0v-.683h-.115a.06.06 0 0 1-.007-.12zm2.74 0a.06.06 0 0 1 .002 0 .06.06 0 0 1 .006 0h.353a.06.06 0 1 1 0 .12l-.112.002v.682a.063.063 0 0 1-.125 0v-.683h-.116a.06.06 0 0 1-.007-.12zm-.677.004a.063.063 0 0 1 .012 0h.19a.364.364 0 0 1 .208.058.278.278 0 0 1 .108.206.235.235 0 0 1-.071.198.305.305 0 0 1-.117.075l-.02.007.158.2a.086.086 0 0 1 .023.056c-.002.032-.023.05-.06.05a.066.066 0 0 1-.056-.027l-.187-.258h-.117v.23a.059.059 0 0 1-.063.067.06.06 0 0 1-.062-.067v-.726a.073.073 0 0 1 .016-.05.063.063 0 0 1 .038-.019zm-3.87.002a.06.06 0 0 1 .003 0h.357a.06.06 0 0 1 0 .121h-.116v.684a.063.063 0 0 1-.125 0v-.684h-.116a.06.06 0 0 1-.003-.12zm.583 0a.063.063 0 0 1 .002 0 .063.063 0 0 1 .065.064v.471a.258.258 0 0 0 .037.151.146.146 0 0 0 .127.056.138.138 0 0 0 .125-.056.265.265 0 0 0 .035-.15V8.34h.001a.063.063 0 0 1 .125 0v.432a.474.474 0 0 1-.056.262.25.25 0 0 1-.228.104.26.26 0 0 1-.23-.104.456.456 0 0 1-.061-.262V8.34a.063.063 0 0 1 .058-.063zm3.354.115v.328h.13a.18.18 0 0 0 .2-.174.15.15 0 0 0-.051-.109.178.178 0 0 0-.13-.045zm-.584.015l-.136.469h.278zm-1.14 1.005c.011 0 .021.002.022.011.002.018-.016.029-.042.042a.206.206 0 0 0-.094.08.31.31 0 0 0-.039.163.115.115 0 0 0 .063.079.298.298 0 0 0 .142.028.502.502 0 0 0 .215-.063.581.581 0 0 1 .276-.02.341.341 0 0 1 .194.063c.024.017.02.038.011.04-.014.005-.029-.012-.044-.01a.674.674 0 0 0-.142.03c-.06.027-.087.037-.116.09a.099.099 0 0 0-.007.073c.01.024.035.04.04.057a.446.446 0 0 0 .064.125.205.205 0 0 0 .03.023 2.668 2.668 0 0 1 .282.243.26.26 0 0 1 .04.093c.003.012-.007.03-.018.025a.255.255 0 0 1-.036-.029.178.178 0 0 0-.053-.039.368.368 0 0 0-.176-.025c-.027 0-.081.024-.05.036a.357.357 0 0 1 .132.116.43.43 0 0 1 .107.31c0 .006-.012.01-.015.006a.359.359 0 0 0-.102-.109.324.324 0 0 0-.21-.062c-.015.001-.06 0-.055.014a1.19 1.19 0 0 1 .123.191.562.562 0 0 1 .039.276c-.001.005-.02.01-.023.005a.61.61 0 0 0-.077-.076.349.349 0 0 0-.094-.06.29.29 0 0 0-.204.028.325.325 0 0 0-.13.132.492.492 0 0 0-.062.205.46.46 0 0 0 .042.257.368.368 0 0 0 .19.164.955.955 0 0 0 .334.044c.139.005.278-.016.417-.02a1.943 1.943 0 0 1 .396.003.88.88 0 0 1 .3.12 2.64 2.64 0 0 1 .215.183c.008.006.026-.003.035-.009a.462.462 0 0 0 .131-.233.346.346 0 0 0-.056-.246c-.047-.085-.116-.18-.17-.27a2.962 2.962 0 0 1-.202-.296.305.305 0 0 1-.017-.221.238.238 0 0 1 .107-.128c.011-.007.022.006.017.021a.184.184 0 0 0-.008.112.32.32 0 0 0 .089.14c.013.01.047-.005.055-.021.018-.043.007-.11.023-.154a.619.619 0 0 1 .108-.226 1.47 1.47 0 0 1 .36-.196c.033-.019.054-.105.091-.091.037.013.017.1-.011.142-.04.062-.087.1-.131.156a1.536 1.536 0 0 0-.157.247.222.222 0 0 0-.029.137.14.14 0 0 0 .073.094c.022.01.05-.01.07-.025a.385.385 0 0 0 .097-.103c.023-.038.01-.089.032-.128.006-.009.03-.007.037 0a.139.139 0 0 1 .044.084.393.393 0 0 1-.01.113c-.003.008-.024.027-.031.045a.244.244 0 0 1-.02.04c-.036.063-.078.116-.125.126-.01.001-.017.021-.01.03a.391.391 0 0 0 .113.132.198.198 0 0 0 .152.01c.027-.008.048-.027.079-.037.013-.004.005.004.005.017a.27.27 0 0 1-.015.086.19.19 0 0 1-.075.083.395.395 0 0 1-.166.05c-.027.005-.068.025-.058.051a.256.256 0 0 0 .042.085.122.122 0 0 0 .08.039.205.205 0 0 0 .125-.036c.04-.026.061-.074.096-.108.007-.006.026 0 .026.01a.36.36 0 0 1-.041.158.497.497 0 0 1-.128.138c-.015.013-.033.029-.033.049a.2.2 0 0 0 .044.084.134.134 0 0 0 .083.054.269.269 0 0 0 .1 0c.013 0 .01.023-.001.031a.253.253 0 0 1-.117.068.25.25 0 0 1-.128.008c-.081-.02-.134-.05-.214-.073a.23.23 0 0 0-.135-.009.227.227 0 0 0-.106.083.133.133 0 0 0-.03.064c-.006.063.025.13.005.192a1.415 1.415 0 0 1-.081.234 1.314 1.314 0 0 1-.115.165c-.04.054-.093.074-.12.133a.638.638 0 0 1-.038.063.515.515 0 0 0-.058.229.452.452 0 0 0 .085.209l.153.237a.149.149 0 0 1 .009.083.088.088 0 0 1-.044.07.893.893 0 0 0-.419.527l-.002.013v.004a.106.106 0 0 1-.021.042.334.334 0 0 1-.19.096c-.055.015-.11.029-.165.046a.077.077 0 0 0-.044.031.08.08 0 0 0 .009.097.137.137 0 0 1 .03.071.063.063 0 0 1-.013.042.108.108 0 0 1-.028.022.865.865 0 0 1-.216.087c-.05.011-.086-.002-.07-.059a3.075 3.075 0 0 1 .098-.293.42.42 0 0 1 .133-.14 2.289 2.289 0 0 1 .212-.162.411.411 0 0 0 .119-.126 3.299 3.299 0 0 1 .19-.275.163.163 0 0 0 .029-.129.246.246 0 0 0-.142-.185 1.052 1.052 0 0 0-.085-.034.534.534 0 0 1-.246-.175.09.09 0 0 0-.062-.04c-.063.002-.081.09-.083.138a1.17 1.17 0 0 0 .004.212.18.18 0 0 1 .004.072.055.055 0 0 1-.039.034 2.74 2.74 0 0 0-.565.279.24.24 0 0 0-.063.07l-.017.029a.187.187 0 0 1-.223.08.5.5 0 0 0-.044-.011.094.094 0 0 0-.064.017.162.162 0 0 0-.041.036.06.06 0 0 0-.01.019v.006a.057.057 0 0 0 0 .008.07.07 0 0 0 .004.017l.022.06a.066.066 0 0 1-.038.096.881.881 0 0 1-.203.055c-.04.005-.075-.01-.065-.057a1.1 1.1 0 0 1 .07-.237.094.094 0 0 1 .057-.06.79.79 0 0 0 .179-.14.266.266 0 0 1 .169-.073.512.512 0 0 0 .262-.1 1.73 1.73 0 0 0 .225-.186.37.37 0 0 0-.006-.46l-.02-.035c-.019-.03-.03-.073-.046-.104a.24.24 0 0 1-.039-.104c0-.068.027-.133.031-.201a.024.024 0 0 0-.016-.025.488.488 0 0 0-.137-.03 2.677 2.677 0 0 1-.56.006 1.423 1.423 0 0 1-.39-.18c-.053-.033-.085-.07-.139-.101-.014-.008-.015-.005-.028.006a.672.672 0 0 1-.459.125h-.002a1.766 1.766 0 0 1-.294-.077c-.073-.027-.19-.074-.26-.015-.029.025-.022.06-.022.093a1.244 1.244 0 0 1-.01.305.038.038 0 0 0 .003.032.044.044 0 0 0 .006.006.136.136 0 0 0 .036.02l.01.004c.028.01.033.023.05.058a.196.196 0 0 1 .016.062.159.159 0 0 1-.003.062.544.544 0 0 1-.009.039.207.207 0 0 0 .008.135.115.115 0 0 0 .042.053.073.073 0 0 0 .01.004.063.063 0 0 0 .01.003.068.068 0 0 0 .01 0h.01a.074.074 0 0 0 .02-.008l.004-.002a.05.05 0 0 1 .035-.012.046.046 0 0 1 .01.003.08.08 0 0 1 .063.074.484.484 0 0 1-.046.221.058.058 0 0 1-.077.03l-.018-.007a.445.445 0 0 1-.14-.117.19.19 0 0 1-.049-.112.12.12 0 0 0-.028-.082.09.09 0 0 0-.032-.016.144.144 0 0 1-.07-.046.268.268 0 0 1-.052-.219 1.5 1.5 0 0 0-.046-.64.149.149 0 0 1 .002-.108l.016-.043a.148.148 0 0 1 .007-.016.06.06 0 0 1 .042-.032.167.167 0 0 1 .029-.003 1.516 1.516 0 0 0 .45-.07.152.152 0 0 1 .062-.01.89.89 0 0 0 .073.002c.03 0 .06-.027.024-.05a.847.847 0 0 1-.084-.087.046.046 0 0 0-.052-.022.072.072 0 0 0-.01.005l-.009.005a.098.098 0 0 1-.152-.029.824.824 0 0 1-.087-.202.555.555 0 0 0-.109-.238.235.235 0 0 0-.19-.063.216.216 0 0 0-.13.098l-.063.088a.144.144 0 0 0-.031.067.107.107 0 0 0 0 .016.14.14 0 0 0 .008.032.133.133 0 0 1-.039.154l-.094.075a.087.087 0 0 0-.03.06.527.527 0 0 1-.012.06.13.13 0 0 0-.003.045.088.088 0 0 0 .002.012.081.081 0 0 0 .031.04.156.156 0 0 1 .013.012.074.074 0 0 1 .012.017.06.06 0 0 1-.012.07.219.219 0 0 1-.024.021.753.753 0 0 1-.19.108.098.098 0 0 1-.026.006c-.038.003-.05-.026-.052-.06-.003-.044-.003-.089-.003-.134a.207.207 0 0 1 .057-.137.36.36 0 0 0 .072-.225.197.197 0 0 1 .04-.13.305.305 0 0 0 .057-.09.257.257 0 0 1 .039-.066 3.861 3.861 0 0 0 .281-.384c.054-.086.155-.192.237-.073a.357.357 0 0 0 .078.084 2.395 2.395 0 0 0 .259.164c.094.053.109-.042.125-.121v-.003a.331.331 0 0 1 .038-.092 1.26 1.26 0 0 1 .202-.247c.043-.038.105-.076.15-.113.018-.016.023-.018.03-.04.009-.022.024-.05.034-.078.01-.027.015-.055.024-.076a.344.344 0 0 0 .044-.098v-.003a.023.023 0 0 0 0-.005v-.007l-.003-.007a.05.05 0 0 0-.021-.024.18.18 0 0 0-.102-.026h-.003a.384.384 0 0 0-.148.031.106.106 0 0 0-.054.054.226.226 0 0 1-.042.063.098.098 0 0 1-.13.006c-.024-.016-.014-.043 0-.063a.414.414 0 0 0 .035-.05.042.042 0 0 0 .005-.025v-.004l-.002-.005a.031.031 0 0 0-.005-.006.046.046 0 0 0-.045-.007.98.98 0 0 0-.083.027.064.064 0 0 1-.094-.047.174.174 0 0 1-.003-.055.055.055 0 0 1 .04-.05c.02-.006.05-.017.046-.042a.079.079 0 0 1 0-.023.052.052 0 0 1 .012-.024.14.14 0 0 1 .03-.025 3.869 3.869 0 0 0 .32-.234.05.05 0 0 1 .064-.01l.01.006a.223.223 0 0 0 .151.02.046.046 0 0 0 .041-.03.025.025 0 0 0 0-.005v-.005l-.002-.006-.003-.004a.071.071 0 0 0-.035-.021l-.058-.021a.269.269 0 0 1-.052-.025.053.053 0 0 1-.025-.059c.023-.113.147-.114.241-.105h.004a.505.505 0 0 0 .14-.022c.06-.021.106-.067.163-.094.057-.027.117-.057.176-.08.018-.006.033-.002.049-.009a.091.091 0 0 0 .035-.025.965.965 0 0 1 .142-.163.822.822 0 0 1 .236-.092.107.107 0 0 1 .03-.006zm-.425.557a.219.219 0 0 0-.105.026c-.009.005-.015.016-.008.024.018.021.049.03.07.05a.16.16 0 0 1 .035.046c.009.019.024.04.033.06a1.296 1.296 0 0 1 .045.123 1.227 1.227 0 0 1 .05.209c.01.057.007.117.01.175v.081c-.001.023-.001.047-.003.07a1.143 1.143 0 0 0-.004.098v.08c.002.07.013.12.044.12a.18.18 0 0 0 .084-.019.175.175 0 0 0 .085-.148 2.026 2.026 0 0 0-.003-.576.51.51 0 0 0-.188-.362.219.219 0 0 0-.144-.057zm3.96.161h5.177c-.017.825-.034 1.6-.05 2.263h-5.13l.004-1.862zm-.006 2.544h5.123a9.697 9.697 0 0 1-.545 2.911 14.495 14.495 0 0 1-1.56 3.118 12.45 12.45 0 0 1-2.415 2.669 10.809 10.809 0 0 1-1.147.848 14.592 14.592 0 0 1-1.96.999c-.224.096-.418.186-.596.247-.193.065-.358.125-.474.156v-.115l.003-7.295a3.552 3.552 0 0 0 .316-.023c.005.015.016.057.031.1a.333.333 0 0 0 .219.166.317.317 0 0 0 .306-.107.373.373 0 0 0 .388.067.235.235 0 0 0 .175-.227.43.43 0 0 0-.033-.208l-.036-.066a3.925 3.925 0 0 0 .744-.41l.02-.006c.373-.094 1.872-.631 2.791-.643a3.28 3.28 0 0 1 1.627.39 2.792 2.792 0 0 1 .682.56c.006.009.013.028.037.032a.036.036 0 0 0 .034-.022 1.139 1.139 0 0 0 .079-.516c-.02-.282-.3-.486-.383-.57-.003-.003-.01-.021.02-.041a.674.674 0 0 1 .105-.085.983.983 0 0 1 .562-.212c.03.003.02-.04.012-.076-.058-.25-.415-.412-.79-.354a.963.963 0 0 0-.613.417c-.007.011-.042.027-.056.013a2.926 2.926 0 0 0-.369-.107c-.045-.01-.021-.044-.019-.05a1.003 1.003 0 0 1 .304-.337 1.125 1.125 0 0 1 .494-.224c.022 0 .022-.03.016-.04a.55.55 0 0 0-.375-.302.844.844 0 0 0-.78.14 1.397 1.397 0 0 0-.445.673c-.014.02-.018.036-.036.032-.099-.02-.345-.007-.367-.022-.015-.007-.012-.03-.009-.045a.91.91 0 0 1 .222-.38.882.882 0 0 1 .364-.286.055.055 0 0 0 .01-.094.98.98 0 0 0-1.22.263 2.192 2.192 0 0 0-.304.696c-.002.009-.017.036-.036.036l-.508.112-.083.019-.022.023a3.29 3.29 0 0 0 .497-1.65zm-12.45.085h5.19v.09a3.145 3.145 0 0 0 .837 2.098H3.556a9.74 9.74 0 0 1-.342-2.188zm.415 2.443h5.863a2.566 2.566 0 0 0 .112.1 3.897 3.897 0 0 0 2.17.898v1.21h-7.22a13.789 13.789 0 0 1-.8-1.827 10.401 10.401 0 0 1-.125-.38zm10.584.29l-.01.012h-.002l-.002-.002a3.29 3.29 0 0 0 .015-.01zm1.738.185a.911.911 0 0 0-.507.155.934.934 0 0 0-.392.41 2.65 2.65 0 0 0-.172.775.063.063 0 0 1-.038.035 2.897 2.897 0 0 0-.335.087.026.026 0 0 1-.023-.02 1.105 1.105 0 0 1 .15-.727.886.886 0 0 1 .218-.263.037.037 0 0 0-.017-.068.98.98 0 0 0-.648.114.888.888 0 0 0-.452.667 1.589 1.589 0 0 0 .042.594c0 .006.006.027-.016.031-.076.037-.282.145-.355.18-.005.002-.019.005-.022-.006a.58.58 0 0 0-.268-.358.526.526 0 0 0-.446.022.548.548 0 0 0-.216.224.375.375 0 0 0 .127.455c.006.006.017.02 0 .025-.09.049-.092.06-.16.161a.428.428 0 0 0 .052.45.465.465 0 0 0 .7.082c.004-.003.018.005.025.02a.548.548 0 0 0 .143.151.463.463 0 0 0 .455 0 .413.413 0 0 0 .21-.415.378.378 0 0 0-.111-.262c-.013-.016 0-.024.034-.046a5.404 5.404 0 0 1 1.96-.666 3.121 3.121 0 0 1 1.076.022 1.504 1.504 0 0 1 .629.312 2.841 2.841 0 0 1 .406.402.164.164 0 0 0 .117-.025.66.66 0 0 0 .014-.517 1.604 1.604 0 0 0-.384-.59c-.003-.002-.003-.013-.003-.02-.004-.03.015-.045.052-.079a1.211 1.211 0 0 1 .562-.297c.027-.002.038-.022.02-.053a.656.656 0 0 0-.808-.298h-.001a.916.916 0 0 0-.454.416c-.006.011-.022.05-.037.038-.09-.008-.242-.032-.331-.04-.041-.002-.025-.039-.024-.045a.744.744 0 0 1 .194-.316 1.176 1.176 0 0 1 .444-.318.021.021 0 0 0 .016-.031.627.627 0 0 0-.465-.229.81.81 0 0 0-.617.238 1.255 1.255 0 0 0-.337.74c-.009.023-.02.035-.037.035a2 2 0 0 1-.278.025c-.015-.004-.014-.02-.014-.036a.91.91 0 0 1 .101-.406 1.491 1.491 0 0 1 .55-.582c.036-.025.038-.076.026-.082a.911.911 0 0 0-.355-.071zM4.707 17.692h7.069v2.19H6.213a11.237 11.237 0 0 1-.898-1.181 16.446 16.446 0 0 1-.609-1.01zm10.076 1.176a.497.497 0 0 0-.273.069.982.982 0 0 0-.475.56 1.09 1.09 0 0 0 .012.571c.003.007.012.024-.002.03-.078.03-.136.065-.213.096-.004 0-.024.005-.028-.005a.631.631 0 0 1 .088-.736c.017-.015.027-.035-.008-.047a.588.588 0 0 0-.531.193.677.677 0 0 0-.117.659.922.922 0 0 0 .099.261c.003.005.03.021.014.028l-.15.115c-.003.003-.014.008-.019 0a.486.486 0 0 0-.29-.238.341.341 0 0 0-.317.088.361.361 0 0 0 .147.602c.007.003.017.012.005.02a.587.587 0 0 0-.19.212.377.377 0 0 0 .085.406.37.37 0 0 0 .29.089.605.605 0 0 0 .357-.313c.002-.003.021-.017.031-.006a.531.531 0 0 0 .264.2.324.324 0 0 0 .323-.065.35.35 0 0 0 .111-.4.61.61 0 0 0-.201-.216c-.013-.01-.003-.035.023-.055a2.972 2.972 0 0 1 1.402-.62 1.801 1.801 0 0 1 1.025.166 1.547 1.547 0 0 1 .337.267c.013.007.05.02.063.008a.397.397 0 0 0 .035-.548.654.654 0 0 0-.206-.165.043.043 0 0 1-.007-.015.906.906 0 0 1 .301-.393 1.382 1.382 0 0 1 .295-.143c.022-.006.018-.02.007-.047-.128-.293-.635-.304-.874-.15a1.088 1.088 0 0 0-.346.396c-.005.01-.012.04-.025.031l-.213-.064c-.004 0-.004-.024-.002-.028a1.115 1.115 0 0 1 .696-.565c.015-.006.01-.02.007-.028-.11-.268-.661-.245-.93-.074a1.167 1.167 0 0 0-.493.714c-.003.02.006.037-.007.04a1.239 1.239 0 0 1-.23.055.024.024 0 0 1-.022-.023.642.642 0 0 1 .067-.392 2 2 0 0 1 .324-.408.043.043 0 0 0-.003-.063.497.497 0 0 0-.236-.07zm-3.006 1.296v3.417c-.098-.032-.214-.074-.342-.117-.178-.06-.373-.151-.597-.247a14.587 14.587 0 0 1-1.96-1 10.816 10.816 0 0 1-1.147-.847 12.861 12.861 0 0 1-1.266-1.206h5.31z" }) + ] + } + ); +}); + +export { SiPorsche as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.cjs new file mode 100644 index 000000000..911e17c1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#818F95"; +const SiPortableappsdotcom = React__namespace.forwardRef(function SiPortableappsdotcom2({ title = "PortableApps.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C7.977 0 4.419 1.984 2.24 5.022c-1.816 4.295.987 7.619 4.001 7.532 2.925-.084 5.264-1.365 7.04-3.4l-3.02-3.015h10.635l-.037 10.577-2.788-2.782c-2.739 2.974-5.493 5.443-9.741 5.208C3.168 18.855.553 14.7.09 10.558.033 11.032 0 11.512 0 12 0 18.63 5.37 24 12 24s12-5.371 12-12S18.625 0 12 0z" }) + ] + } + ); +}); + +exports.default = SiPortableappsdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.d.ts new file mode 100644 index 000000000..1c2dfee37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#818F95"; +declare const SiPortableappsdotcom: IconType; +export { SiPortableappsdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.mjs new file mode 100644 index 000000000..9dc49575a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortableappsdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#818F95"; +const SiPortableappsdotcom = React.forwardRef(function SiPortableappsdotcom2({ title = "PortableApps.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C7.977 0 4.419 1.984 2.24 5.022c-1.816 4.295.987 7.619 4.001 7.532 2.925-.084 5.264-1.365 7.04-3.4l-3.02-3.015h10.635l-.037 10.577-2.788-2.782c-2.739 2.974-5.493 5.443-9.741 5.208C3.168 18.855.553 14.7.09 10.558.033 11.032 0 11.512 0 12 0 18.63 5.37 24 12 24s12-5.371 12-12S18.625 0 12 0z" }) + ] + } + ); +}); + +export { SiPortableappsdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.cjs new file mode 100644 index 000000000..978798a5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13BEF9"; +const SiPortainer = React__namespace.forwardRef(function SiPortainer2({ title = "Portainer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.504 0v1.023l-.01-.015-6.106 3.526H3.417v.751h5.359v3.638h1.942V5.284h1.786v10.416c.027 0 .54-.01.751.091V5.285h.531v10.608c.293.147.55.312.751.54V5.286h6.046v-.75h-1.267l-6.061-3.5V0zm0 1.87v2.664H7.889zm.751.031l4.56 2.633h-4.56zM9.142 5.285h1.21v1.686h-1.21zm-4.736 2.73v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm-2.19 2.171v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm2.18 0v1.951h1.942v-1.95zM4.36 12.43a3.73 3.73 0 00-.494 1.851c0 1.227.604 2.308 1.52 2.986.239-.064.477-.1.724-.11.1 0 .165.01.266.019.284-1.191 1.383-1.988 2.665-1.988.724 0 1.438.201 1.924.668.229-.476.302-1.007.302-1.575 0-.65-.165-1.292-.494-1.85zm4.828 3.16c-1.21 0-2.226.844-2.492 1.97a.922.922 0 00-.275-.009 2.559 2.559 0 00-2.564 2.556 2.565 2.565 0 003.096 2.5A2.579 2.579 0 009.233 24c.862 0 1.622-.43 2.09-1.081a2.557 2.557 0 004.186-1.97c0-.567-.193-1.099-.504-1.52a2.557 2.557 0 00-3.866-2.94 2.574 2.574 0 00-1.951-.898z" }) + ] + } + ); +}); + +exports.default = SiPortainer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.d.ts new file mode 100644 index 000000000..06a3203d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13BEF9"; +declare const SiPortainer: IconType; +export { SiPortainer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.mjs new file mode 100644 index 000000000..961d18e7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortainer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13BEF9"; +const SiPortainer = React.forwardRef(function SiPortainer2({ title = "Portainer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.504 0v1.023l-.01-.015-6.106 3.526H3.417v.751h5.359v3.638h1.942V5.284h1.786v10.416c.027 0 .54-.01.751.091V5.285h.531v10.608c.293.147.55.312.751.54V5.286h6.046v-.75h-1.267l-6.061-3.5V0zm0 1.87v2.664H7.889zm.751.031l4.56 2.633h-4.56zM9.142 5.285h1.21v1.686h-1.21zm-4.736 2.73v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm-2.19 2.171v1.951h1.942v-1.95zm2.19 0v1.951h1.941v-1.95zm2.18 0v1.951h1.942v-1.95zM4.36 12.43a3.73 3.73 0 00-.494 1.851c0 1.227.604 2.308 1.52 2.986.239-.064.477-.1.724-.11.1 0 .165.01.266.019.284-1.191 1.383-1.988 2.665-1.988.724 0 1.438.201 1.924.668.229-.476.302-1.007.302-1.575 0-.65-.165-1.292-.494-1.85zm4.828 3.16c-1.21 0-2.226.844-2.492 1.97a.922.922 0 00-.275-.009 2.559 2.559 0 00-2.564 2.556 2.565 2.565 0 003.096 2.5A2.579 2.579 0 009.233 24c.862 0 1.622-.43 2.09-1.081a2.557 2.557 0 004.186-1.97c0-.567-.193-1.099-.504-1.52a2.557 2.557 0 00-3.866-2.94 2.574 2.574 0 00-1.951-.898z" }) + ] + } + ); +}); + +export { SiPortainer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.cjs new file mode 100644 index 000000000..30ff6fda7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6633"; +const SiPortswigger = React__namespace.forwardRef(function SiPortswigger2({ title = "PortSwigger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h10.718v-3.805l3.496-4.272h-3.496v-5.205H4.427l6.291-7.767V0Zm13.282 0v3.884L9.786 8.155h3.496v5.205h6.291l-6.291 7.767V24H24V0Z" }) + ] + } + ); +}); + +exports.default = SiPortswigger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.d.ts new file mode 100644 index 000000000..91f8a9eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6633"; +declare const SiPortswigger: IconType; +export { SiPortswigger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.mjs new file mode 100644 index 000000000..86db7e77b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPortswigger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6633"; +const SiPortswigger = React.forwardRef(function SiPortswigger2({ title = "PortSwigger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h10.718v-3.805l3.496-4.272h-3.496v-5.205H4.427l6.291-7.767V0Zm13.282 0v3.884L9.786 8.155h3.496v5.205h6.291l-6.291 7.767V24H24V0Z" }) + ] + } + ); +}); + +export { SiPortswigger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.cjs new file mode 100644 index 000000000..663eb54af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#447099"; +const SiPosit = React__namespace.forwardRef(function SiPosit2({ title = "Posit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .953v6.393l4.852 2.066-3.27 1.447v2.283l3.215 1.432L0 16.615v6.432l11.918-5.256.082-.035.082.035L24 23.047v-6.432l-4.797-2.04 3.215-1.433v-2.283l-3.27-1.447L24 7.346V.953L12 6.25Zm.879 1.352 10.039 4.431-4.96 2.19L.879 6.763Zm22.242 0v4.458l-5.066 2.162-4.973-2.19 10.04-4.431ZM12 7.209l4.945 2.19-4.95 2.107-4.94-2.108zM5.959 9.885l4.926 2.093-.006.002.006.002-4.979 2.12-3.446-1.529v-1.148l3.5-1.541zm12.082 0 3.514 1.54v1.15l-3.448 1.526-1.107.487-4.994 2.21L7 14.589l4.994-2.133L17 14.588l1.094-.487-4.973-2.12zM5.906 15.06l5.012 2.215-.066.03-9.973 4.404v-4.512zm12.201 0 5.014 2.137v4.512l-9.959-4.404-.066-.03z" }) + ] + } + ); +}); + +exports.default = SiPosit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.d.ts new file mode 100644 index 000000000..c4751d2b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#447099"; +declare const SiPosit: IconType; +export { SiPosit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.mjs new file mode 100644 index 000000000..419dc2b16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPosit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#447099"; +const SiPosit = React.forwardRef(function SiPosit2({ title = "Posit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .953v6.393l4.852 2.066-3.27 1.447v2.283l3.215 1.432L0 16.615v6.432l11.918-5.256.082-.035.082.035L24 23.047v-6.432l-4.797-2.04 3.215-1.433v-2.283l-3.27-1.447L24 7.346V.953L12 6.25Zm.879 1.352 10.039 4.431-4.96 2.19L.879 6.763Zm22.242 0v4.458l-5.066 2.162-4.973-2.19 10.04-4.431ZM12 7.209l4.945 2.19-4.95 2.107-4.94-2.108zM5.959 9.885l4.926 2.093-.006.002.006.002-4.979 2.12-3.446-1.529v-1.148l3.5-1.541zm12.082 0 3.514 1.54v1.15l-3.448 1.526-1.107.487-4.994 2.21L7 14.589l4.994-2.133L17 14.588l1.094-.487-4.973-2.12zM5.906 15.06l5.012 2.215-.066.03-9.973 4.404v-4.512zm12.201 0 5.014 2.137v4.512l-9.959-4.404-.066-.03z" }) + ] + } + ); +}); + +export { SiPosit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.cjs new file mode 100644 index 000000000..e0babea47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD3A0A"; +const SiPostcss = React__namespace.forwardRef(function SiPostcss2({ title = "PostCSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.627.008q-.352.014-.706.065c-.226.024-.453.064-.672.097-.267.033-.534.05-.801.081-.252.033-.51.082-.762.123-.09.016-.178.048-.268.064-.194.04-.396.057-.59.122A16 16 0 0 0 6.79.917c-.316.13-.624.268-.923.43-.308.17-.6.373-.892.568q-.415.277-.82.592c-.257.203-.501.43-.736.657-.13.13-.235.284-.356.43-.203.236-.405.462-.6.706-.16.203-.308.414-.462.625-.275.373-.51.77-.728 1.168-.09.162-.17.325-.25.487-.123.243-.252.478-.366.73-.08.17-.146.357-.194.544a67 67 0 0 0-.332 1.2c-.098.358-.122.73-.13 1.096-.008.324.024.64.057.965.008.082-.04.18.056.244-.032.09-.008.138.04.154-.056.09.025.146-.007.227-.008.017.025.05.04.073 0 .025-.008.057 0 .08.01.074.04.147.04.229 0 .056.05.12.066.178.008.024 0 .065-.017.08-.048.058-.04.106.033.139.04.105.024.154.016.203.016.073-.008.097 0 .114.065.13.09.275.097.42 0 .034.016.066.033.107.008 0 0 .154 0 .154.04-.024.073-.032.113-.05q.036.16.081.294c.04.065.041.097.025.105.032.145.048.283.105.42 0-.153-.016-.307-.04-.453.113.04.21.08.275.08.008-.023.016-.055.025-.072-.049-.048-.09-.12-.138-.17.016.065 0 .09 0 .114a1 1 0 0 0-.114-.05c.033-.04.065-.08.114-.13 0-.072-.04-.137-.154-.13.05-.015.097-.04.154-.055.09-.048-.008-.138-.008-.25.008-.14-.073-.277-.097-.423-.04-.227-.033-.568-.057-.795-.049-.04-.09.065-.097.073q.04.293.064.584c-.048-.162-.08-.34-.12-.536-.01.057-.017.08-.017.114-.04.04-.008.09.016.146-.056-.025-.12-.016-.12-.016v.227c-.082-.08-.106-.146-.147-.203-.016-.065-.025-.13-.04-.194.015-.04 0-.065 0-.09l-.025-.195a1 1 0 0 0-.008-.13c.065.009.106.016.146.016-.08-.104-.025-.17.008-.234.016-.033.073-.04.09-.074.064-.12.17-.218.17-.373 0-.073.025-.154.032-.227q.027-.207.04-.414c.017-.178 0-.357.041-.527.065-.283.146-.568.235-.852.065-.203.138-.397.22-.6.12-.317.234-.633.388-.933.22-.438.47-.86.713-1.29.154-.268.316-.52.487-.78.16-.25.323-.51.51-.746.26-.332.543-.64.86-.917.323-.292.63-.592.98-.86a10 10 0 0 1 1.44-.925c.414-.219.843-.39 1.273-.552.275-.105.575-.154.859-.243.324-.106.648-.154.988-.162.219-.008.43-.033.648-.057a16 16 0 0 0 .6-.057.4.4 0 0 0-.04.065c-.09.13-.187.26-.276.39-.073.105-.154.218-.227.324-.13.17-.268.34-.39.52-.185.267-.356.543-.55.81-.194.26-.405.504-.608.755-.267.35-.518.706-.785 1.055-.244.332-.502.65-.737.982-.21.292-.398.6-.6.9-.3.446-.6.884-.9 1.33a84 84 0 0 1-.712 1.015c-.016.024-.04.032-.065.048-.064.105-.064.162-.09.21a4 4 0 0 1-.202.358c-.04.065-.097.122-.146.187-.008-.098.13-.147.065-.27-.04.067-.08.123-.12.188l-.1.194c.033.024.088.04.035.088-.005-.02-.032-.032-.053-.048a5 5 0 0 0-.194.293c.05.04.073.024.105-.033.03-.06.072-.104.11-.154l-.042.074a.3.3 0 0 0 .09-.08c0 .088-.05.16-.09.233-.033.065-.114.114-.17.163.008.008.065.032.073.04.073-.024.097-.064.106-.04.024-.033.048-.057.056-.08a.3.3 0 0 1 .162-.18q.046-.026.08-.064c.244-.252.495-.496.714-.764.34-.413.648-.843.973-1.265.137-.178.3-.357.445-.527.024.186.008.365 0 .535-.025.3-.04.6-.065.908-.008.122 0 .244-.008.366 0 .032-.025.056-.025.09 0 .08.025.17.025.25-.025.3-.057.592-.082.893-.008.064.024.13.04.186-.04.438.05.9-.024 1.364.057-.09.073-.147.073-.203.008-.05 0-.097 0-.154v-.08c.008-.147.04-.3.024-.448a1.5 1.5 0 0 1 .016-.47c.017-.065-.007-.146.033-.227v.12c-.008.463.01.926-.056 1.388-.008.04.024.114-.065.106-.073.146.016.252-.065.333-.016.016.016.09.024.138-.032.097-.032.097.016.105.008.18.025.34.033.51.13-.307.064-.624.122-.941.008.13.016.26.008.398 0 .21-.01.414-.017.625q-.002.06-.016.122c-.024.113-.032.227-.072.332-.033.08-.016.203-.016.3v.31c.032.137-.01.21.016.29-.025.083-.033.107-.025.13l.025.123c.162-.016.09.106.153.17-.048.065-.032.09-.032.122 0 .073-.008.138-.016.21 0 .188-.008.374-.008.553 0 .025.008.048.008.073l-.008.227c.016.024 0 .05-.025.073-.008 0-.032-1.03-.032-1.03h-.12c-.017.486.023.924-.066 1.38-.097.007-.13.023-.235.023q-.378-.002-.754.008c-.3 0-.59.008-.89.008-.147 0-.3.017-.446.017-.195 0-.397-.025-.59-.025-.3 0-.593.024-.893.032-.22.008-.437.008-.656.017-.146.008-.292.015-.438.032-.064.008-.12.032-.202.056-.025 0-.08-.008-.13 0-.08.017-.153.065-.235.082-.122.024-.154.056-.138.178v.08c-.008.017.178-.024.178-.024-.016 0-.024.05-.049.09.065-.025.106-.04.147-.057.121.057.226.025.323.05.316.08.64.113.964.145.21.016.414.025.624.032.3.017.6.033.9.033.25 0 .493-.025.744-.025.348 0 .697.016 1.045.025.073 0 .154-.008.235-.008h.592c.527-.016 1.053-.025 1.58-.04.3-.01.608-.025.907-.033l.924-.025c.357-.008.713-.008 1.062-.015.267 0 .526-.01.794-.017.3-.008.607-.032.907-.048.162-.008.324-.025.486-.04.195-.017.398-.04.592-.05.29-.016.59-.024.883-.04.365-.024.73-.057 1.102-.065.34-.016.689-.008 1.03-.016.3-.008.599-.025.907-.033l.51-.025s.34-.008.51-.024c.293-.016.584-.05.876-.057.186-.008.372 0 .559-.008.3-.008.606-.024.906-.024.113 0 .235.016.38.024-.064.057-.105.09-.153.13.032.008.064.025.097.04a.22.22 0 0 1-.13.04c-.016.042-.032.058-.048.139h.145c-.056 0-.105.073-.16.122-.066-.017-.123 0-.156.09.057.03.05.056.04.09-.096.03-.17.063-.128.169q-.05.022-.114.056c-.04.065-.113.08-.097.17.032.008.064.025.09.033-.042.016-.082.04-.123.056-.145.09-.08.13-.048.17q-.037.027-.073.04c.016.074.04.09.048.09l-.085.069.01-.027h-.032q0 .022.005.04l-.02.016c-.024.072-.056.104-.09.153-.03.048-.046.114-.087.162-.17.187-.292.406-.51.552-.081.057-.154.13-.227.203-.146.138-.276.292-.43.422a9 9 0 0 1-.631.478c-.267.187-.534.374-.802.552-.146.097-.308.17-.462.26s-.3.17-.454.26c-.097.064-.186.153-.291.202-.268.114-.551.211-.827.317-.268.114-.462.21-.664.284a5 5 0 0 1-.575.153c-.065.017-.138 0-.211.01-.138.024-.276.057-.414.073-.356.048-.713.08-1.07.13-.21.024-.413.064-.623.09-.146.007-.3-.009-.446-.009-.105 0-.218.025-.324.01-.17-.026-.34-.066-.51-.098-.04-.008-.097-.025-.13-.008-.064.032-.122-.016-.187 0-.04.008-.08-.025-.12-.025-.033-.008-.074.01-.115 0-.09-.024-.17-.056-.268-.048-.096.008-.194-.04-.298-.065l-.43-.097a.7.7 0 0 1-.162-.073c-.21 0-.348-.008-.478-.057-.113-.04-.22-.097-.34-.08-.032.007-.057-.009-.09-.009-.024-.033-.048-.098-.072-.098-.162.008-.26-.13-.397-.17-.073-.024-.13-.105-.202-.13-.18-.073-.324-.227-.527-.25-.064-.01-.13-.042-.202-.066.024.032.04.057.064.08-.235-.113-.453-.242-.672-.364-.032-.008-.056-.04-.08-.057l-.22-.147c-.12.024-.17-.025-.203-.04-.218-.154-.47-.252-.68-.421-.09-.074-.194-.122-.26-.212a1.3 1.3 0 0 0-.404-.316c-.122-.064-.235-.138-.348-.21-.057-.041-.114-.09-.114-.18 0-.056-.024-.113-.097-.08-.032-.05-.065-.106-.105-.122-.097-.04-.162-.114-.235-.18-.073-.064-.13-.153-.22-.185-.161-.065-.26-.203-.355-.316-.228-.268-.43-.56-.64-.844-.017-.024-.05-.04-.074-.065.033.09.073.162.114.243a.5.5 0 0 1-.186-.146c-.008.008.558.942.558.942.05.073.09.146.138.219a.25.25 0 0 1-.243-.13c-.073-.13-.154-.21-.316-.194a1.4 1.4 0 0 1-.04-.18.6.6 0 0 1-.114-.008c.114.179.21.333.316.51l-.08-.047c.145.154.25.349.436.446.04.187.25.276.3.454l-.114-.024c-.065-.081-.138-.162-.21-.251a.4.4 0 0 0 .072.145c.098.122.187.244.3.35.04.04.098.057.098.13.064.032.09.04.113.04.017.049-.008.122.09.106.064.12.128.12.218.08.105.105.162.114.235.05 0 .04.008.08.008.113.032-.017.025-.04.025-.081.04.033.064.049.08.065.08.114.154.219.268.307.154.13.29.268.437.39.283.235.6.43.916.608.39.22.762.455 1.16.665a6.2 6.2 0 0 0 1.513.545c.195.04.38.08.576.13.17.048.34.121.51.161.26.057.527.106.786.154l.179.025c.072.016.16-.016.177.008.04.065.073.032.122.024.057-.016.12-.016.186-.016.227.008.445.056.672.04.05 0 .122-.04.163.04.073-.032.113-.032.146-.04.008.073 0 .073-.016.08-.017.01-.04.017-.073.04.292.058.567.066.81 0a2.7 2.7 0 0 0 1.135-.136c.032.04.056.097.105.016.016-.025.056-.033.089-.04.073-.017.162-.05.227-.026.073.025.097-.04.154-.04.097 0 .186-.008.276-.024.048-.008.097-.033.153-.05a.4.4 0 0 0-.178-.04 7 7 0 0 1 .276-.13c-.017.025-.033.057-.065.057h.113c-.025 0-.057.073-.097.122.29-.073.558-.138.818-.204-.09-.17.097-.113.162-.21a3 3 0 0 1-.243.064c.275-.137.559-.26.834-.38-.04.048-.09.073-.162.114.049.008.08.008.106.015.129.04.097-.08.137-.154.154 0 .219-.024.292-.05q.12-.033.243-.08c.13-.056.25-.13.38-.194.025-.01.065 0 .098 0 .09-.057.12-.106.145-.098.114.017.194-.024.227-.13l.023-.015c.033.07.098.08.203.007q-.1-.002-.187-.016-.008.002-.011.006.06-.047.11-.08c.178-.096.347-.193.526-.29.065 0 .097 0 .113-.008a4 4 0 0 0 .3-.163c-.024-.008-.08-.04-.08-.04a1 1 0 0 0 .154-.04c.193-.23.46-.383.664-.56.089-.008.089-.032.089-.048.032-.041.064-.09.105-.122.177-.163.371-.3.533-.47q.354-.355.673-.732c.194-.227.39-.454.55-.705.228-.35.422-.706.625-1.072.146-.26.275-.52.422-.778.015-.025.048-.057.072-.057.22-.025.438-.04.65-.065.047-.008.104-.04.152-.065-.024-.04-.04-.09-.064-.13-.033-.05-.08-.09-.114-.138-.032-.04-.056-.09-.08-.138-.025-.04-.05-.072-.074-.114a3 3 0 0 1-.138-.275c-.008-.024-.025-.065-.016-.09.146-.315.202-.656.34-.972.138-.325.18-.69.243-1.04.057-.331.09-.664.13-.997.024-.235.057-.462.064-.697.05-.373.033-.723.025-1.072-.008-.308-.025-.624-.04-.933-.017-.317-.025-.633-.058-.95-.056-.43-.113-.868-.21-1.29a7 7 0 0 0-.316-1.014c-.154-.39-.308-.787-.503-1.16-.316-.6-.73-1.136-1.11-1.696-.252-.357-.576-.65-.82-1.014-.135-.21-.34-.39-.541-.55a14 14 0 0 0-1.004-.723 10 10 0 0 0-.794-.504c-.22-.122-.454-.22-.68-.325-.26-.12-.511-.268-.803-.324-.073-.016-.138-.04-.21-.065-.187-.065-.365-.138-.552-.195-.283-.089-.56-.194-.85-.267a8 8 0 0 0-.87-.163c-.323-.047-.655-.064-.98-.096a8 8 0 0 0-.623-.056c-.307-.018-.623-.018-.93-.025-.154-.008-.316-.024-.47-.016Zm.694.94q.156.027.3.041l.389.025c.292.023.583.04.875.08.243.033.486.081.737.122a10.4 10.4 0 0 1 1.572.405c.3.098.59.228.884.35.656.267 1.28.592 1.895.932.194.106.308.276.454.43.21.22.42.438.624.665.234.268.453.544.68.82.201.243.412.486.615.73.065.073.114.163.17.244.13.194.275.38.39.592.08.154.13.333.185.503.08.252.162.495.243.746.056.187.104.382.145.576.033.13.025.268.065.397.05.17 0 .358.05.528.007.017.015.04.023.057.033.032.057.065.008.114-.008.008-.008.04 0 .064.017-.016.025-.032.04-.057 0 .017.01.025.01.033 0 .032-.01.065 0 .097 0 .016.015.04.023.057.016-.017.032-.025.064-.05.073.276.082.552.082.836 0 .268.048.536-.065.795.024-.09-.033-.17-.008-.252l.003.002c-.008 0-.056-.05-.064-.057-.01.025 0 .05-.017.08-.008-.023-.064-.014-.064-.04-.01.115.048.228.04.34.024-.014.12-.023.146-.047a.1.1 0 0 0 .032.016c-.162.122-.12.244-.048.382.016.032.064.097.016.162-.016.016.008.065.016.106h.024v.015l-.073.025c-.016-.025-.113-.073-.113-.114v.414c.08.025.08.138.113.195a.2.2 0 0 0 .033-.064l.008.008q-.01.072-.032.146c-.016.072-.033.137-.04.21 0 .008.015.025.015.033-.09.203-.04.43-.072.64-.025.154 0 .317-.017.48a4 4 0 0 1-.08.42c-.009.025-.026.033-.066.05a.7.7 0 0 0-.008-.252c-.008 0-.114-.057-.122-.057 0 .114.065.268.09.398-.025-.008-.122-.065-.13-.065-.017.097-.017.227-.025.332-.008.082-.08.154-.09.244 0 .05.058.08.05.162h.064c0-.162.074-.308.074-.478h.023c.01.016.033.032.025.04-.016.09-.05.187-.04.276 0 .05.04.097.024.154a1 1 0 0 0-.033.17c-.008-.04-.016-.056-.016-.08l-.09-.008c-.007.05.058.097.05.138-.01.008-.017.008-.033.016l-.267-.39a82 82 0 0 1-.632-.932 2 2 0 0 1-.147-.244q-.372-.645-.833-1.24c-.235-.3-.422-.626-.64-.94-.203-.302-.405-.594-.608-.895-.073-.097-.162-.186-.227-.292-.21-.332-.397-.673-.607-1.006-.178-.276-.372-.544-.56-.81q-.097-.137-.194-.286a.1.1 0 0 1-.016-.055 12 12 0 0 1-.04-.528c0-.162.016-.324.016-.495V6.96c0-.04.008-.073.008-.113.008-.008.016-.025.024-.033-.235 0-.478-.01-.713 0-.154.008-.235-.057-.34-.17-.308-.35-.535-.747-.802-1.12a50 50 0 0 0-.77-1.055c-.211-.284-.422-.56-.632-.844-.236-.324-.462-.65-.705-.973q-.44-.585-.892-1.168c-.138-.179-.292-.35-.446-.536m-.752.426q.026.005.05.038c.218.276.437.56.655.835.163.204.325.398.48.61.185.26.364.52.55.778q.316.448.624.908c.308.455.6.91.907 1.363.227.333.454.658.672.99h-.413c-.38-.008-.77-.04-1.15-.024-.52.025-1.046.08-1.564.122a23 23 0 0 1-1.976.064c-.236 0-.47.033-.705.05-.284.016-.56.032-.843.04-.333.016-.656.024-.99.033-.185.008-.38 0-.582 0V7.18c.26-.357.527-.714.786-1.08.08-.105.145-.22.226-.324.025-.033.058-.05.098-.082l-.008-.015c.032-.04.064-.074.08-.106.042-.065.066-.138.099-.21a.1.1 0 0 1 .032-.033c.114.057.114-.064.154-.105a6 6 0 0 0 .21-.252c.05-.064.098-.12.139-.194.007-.025-.017-.065-.025-.098H9.05c.024-.016.049-.04.073-.056.008 0 .008 0 .016-.008a5 5 0 0 1 .146-.21c.097-.13.202-.26.315-.374q-.024.062-.048.113c.008 0 .008.008.016.008.097-.13.203-.252.3-.382q-.012-.014-.025-.016c-.04.04-.072.082-.113.122q-.012-.014-.025-.016c.082-.106.163-.21.243-.333.017.025.033.057.065.122.033-.08.065-.138.09-.195-.025.025-.057.05-.081.074l-.025-.025.146-.218c.154-.22.308-.447.462-.666.057-.08.13-.146.178-.227.154-.308.398-.552.584-.836.04-.056.097-.105.145-.154q.03-.035.056-.03zm-2.285 3.16c-.048.033-.09.057-.137.09-.01.008-.017.008-.01.008.01.04.01.073.017.13.057-.082.097-.147.146-.21zm6.838 3.342c.073 0 .113.025.154.09q.108.182.227.365c.008.016.024.04.024.064 0 .18 0 .365.008.544.008.187.025.365.032.552 0 .186-.016.38-.008.576.009.276.016.56.016.843h.002v.074c-.008 0-.016.008-.032.008-.033-.114-.065-.236-.106-.35a2.7 2.7 0 0 0-.316-.68c-.163-.228-.308-.463-.47-.698-.04-.057-.098-.106-.146-.154-.17-.187-.34-.382-.56-.52a6.6 6.6 0 0 0-1.012-.52 2 2 0 0 1-.284-.145h.194L15.23 7.9c.3-.008.59-.008.89-.024m-6.083.212q.088-.003.178.008c-.13.065-.26.13-.373.21-.146.098-.283.228-.43.334a2.4 2.4 0 0 0-.396.373c-.154.186-.324.348-.487.527-.113.13-.243.252-.34.39-.137.178-.26.372-.39.575.042-.77.09-1.533.058-2.312.382-.016.746-.04 1.12-.056.29-.017.59-.025.88-.04q.09-.008.18-.01zm2.033.415c.242.008.485.008.728.024.105.008.203.032.3.064.12.04.25.098.365.154q.204.11.397.244c.235.154.453.324.688.462.227.138.405.325.55.536.18.25.382.48.463.787l.12.535c.026.098.083.195.058.308-.04.203-.073.415-.105.617a1 1 0 0 0-.024.244c.015.252-.082.47-.18.698-.031.073-.08.146-.12.227a.2.2 0 0 0 .064.033l.073-.146c.009 0 .009 0 .016.008-.04.113-.072.235-.113.35-.097.25-.194.51-.316.753-.065.138-.178.25-.26.382-.08.113-.145.235-.226.34-.073.09-.145.18-.243.244a6 6 0 0 1-.68.454c-.146.09-.316.138-.478.178h.002c-.26.064-.527.138-.794.17-.227.033-.462.025-.697.025a8 8 0 0 1-.625-.025c-.235-.024-.47-.05-.696-.154-.195-.09-.398-.17-.591-.268-.196-.097-.39-.21-.536-.39-.105-.13-.251-.234-.38-.348a.38.38 0 0 0 .17.235c-.041.05-.098.025-.18-.106-.023.017-.047.025-.064.033.025-.057.049-.114.073-.162-.032-.065-.073-.138-.105-.204a7 7 0 0 1-.187-.324c-.016-.024-.016-.048-.032-.073a2 2 0 0 1-.114-.146c-.064-.097-.12-.202-.202-.3 0 .025.008.05.008.082-.008 0-.016.008-.016.008l-.17-.414c-.008 0-.008 0-.016.008l.145.535c-.008 0-.016.01-.024.01-.024-.034-.048-.066-.065-.106-.016-.066-.065-.066-.105-.04-.025.015-.041.072-.033.096q.088.207.187.414a1 1 0 0 0 .057.138c.008.016.032.032.032.056.033.065.057.13.098.187.073.097.154.195.227.292.072.097.137.203.2.3.009.016.034.016.04.025.043.12.18.21.277.162.025.186.227.25.308.43a4 4 0 0 1-.235-.106c-.008.008-.008.016-.016.032.097.05.195.098.283.154.082.05.163.098.236.155.097.09.21.138.348.17a.1.1 0 0 0-.016-.033c.227.106.462.22.64.308-.843.017-1.742.033-2.674.05 0-.155-.008-.3-.008-.455 0-.065.016-.122.008-.187-.025-.372-.025-.746-.073-1.11a8 8 0 0 1-.04-1.162c.007-.21-.01-.43-.017-.64 0-.284 0-.56.009-.844 0-.04.016-.073.032-.114h.025c.008.017 0 .04.015.05.025.024.066.064.082.056.048-.033.12-.065.138-.114a.8.8 0 0 0 .056-.3c0-.073.033-.12.065-.17.016-.025.025-.05.04-.08-.031-.025-.064-.042-.104-.074.032-.09.024-.195.146-.243.016-.008.016-.05.024-.073.008-.066.015-.14.024-.204.016.025.025.033.04.05q.015-.026.017-.026c0-.032-.008-.097 0-.097.097-.016.057-.122.105-.17.008-.01-.008-.033-.008-.05 0-.015 0-.04.008-.04.113-.024.097-.146.17-.203.024-.016.032-.04.065-.08.064.112-.05.17-.057.25.137-.08.178-.275.097-.332a.5.5 0 0 0 .089-.09c.09-.097.186-.186.267-.283.057-.073.09-.162.146-.235.033-.04.098-.073.146-.098.146-.08.284-.17.373-.307q.026-.025.064-.05c.025-.015.074-.015.082-.04.008-.016-.016-.057-.033-.08.032-.017.065-.05.13-.082-.025.05-.032.08-.05.114l.04.04c.074-.057.188-.12.26-.17 0-.008-.04-.04-.04-.04-.05.024-.121.065-.194.097.015-.024.015-.04.025-.05.113-.072.226-.144.348-.202.283-.13.567-.26.85-.38.049-.025.114-.01.17-.01.025 0 .04 0 .065-.006.13-.04.26-.082.39-.114a.7.7 0 0 1 .178-.024m-.316.12-.234.106c0 .008-.041.073-.033.073.04-.008.13-.073.178-.08.024 0 .057.007.082.015 0-.032 0-.065.007-.114m5.858 1.38c.08.107.17.204.227.309.187.34.43.634.656.942.195.268.373.56.552.835.218.333.429.665.648.998.162.252.332.503.502.747q.233.326.477.64c.137.187.283.374.42.56q.244.344.487.674c.08.113.17.227.26.34.05.065.121.114.17.154a.1.1 0 0 1-.032-.008q.034.05.056.073c.09.05.098.098.05.17v-.001c-.008.016-.025.033-.033.05-.008-.017-.008-.042-.016-.075-.05.13-.154.066-.227.066-.437.008-.883.008-1.32.008-.421 0-.85 0-1.271.008-.138 0-.284.032-.422.04a37 37 0 0 1-.997.033c-.024 0-.048-.04-.09-.073l-.048.073c-.008-.016-.024-.032-.04-.056l-.025.064h-.024c-.016-.113-.048-.22-.048-.332 0-.244.024-.487.032-.73.008-.114 0-.22 0-.325l.09.065a1 1 0 0 1 .048-.08s-.016-.008-.033-.025c.016-.008.033-.025.033-.033.008-.024.024-.05.024-.065 0-.057-.016-.105-.024-.153q.012.002.024-.008l.048.243h.025c-.032-.056.073-.106-.016-.17-.008-.008.008-.057.008-.082-.025-.048-.04-.097-.065-.162.008-.008.033-.016.057-.024q-.046-.026-.081-.04c.08-.073.08-.114.008-.195.016-.008.032-.008.032-.015 0-.074 0-.147-.016-.22-.016-.081.025-.178-.097-.227a.2.2 0 0 0 .032.065s-.024.008-.048.024c-.105-.097-.04-.228-.065-.373a1 1 0 0 1 .138.05c-.017-.058-.057-.123-.081-.196h-.033v-.536c0 .008.056.008.09.017 0-.008.007-.016.007-.025l-.09-.105.017-.016c-.065-.08-.032-.194-.032-.22v-.567c.08.082-.04.187.08.235v-.08h-.008c-.008-.122-.008-.244-.016-.366h-.016c-.008.017-.008.025-.016.04h-.016zm-13.65.665c-.098.113-.187.227-.276.34.015.008.04.065.055.082.09-.122.21-.276.3-.39-.008-.008-.072-.024-.08-.032m-.543.398c-.05.072-.17.202-.22.275.009.008.098-.032.106-.023.05-.073.098-.155.146-.228q-.022-.013-.032-.024m.17.12c-.05.034-.097.075-.146.107.016.016.016.025.016.04-.064-.007-.09.026-.12.114-.01.025-.05.033-.09.065-.01.016-.017.057-.033.097l.008.008a.1.1 0 0 1-.04.025c-.05.048-.106.09-.154.138q-.014.036-.016.073c.056-.057.153-.162.226-.227l.01.008c.03-.05.056-.098.09-.146.006.008.006.016.014.024-.024.065-.048.138-.073.203-.017.008-.04.024-.04.016-.033.025-.058.057-.09.08l-.146.098c-.08.073-.162.138-.25.21-.058.09-.114.17-.18.277.098-.025.122.016.114.097.113.016.122-.073.154-.138.008-.016.016-.05.032-.057.073-.065.154-.12.235-.186.017-.016.017-.05.017-.073 0-.008-.04-.008-.066-.017.073-.08.18-.218.25-.307.042-.025.083-.058.083-.082-.007-.075.032-.104.082-.13-.037.175-.144.325-.252.356.033.016.065.033.09.025s.04-.05.056-.074l.22-.316.072-.122-.032-.033c-.033.058-.065.107-.098.164l-.027-.014.002-.002c-.032-.025-.04-.05-.04-.057a.3.3 0 0 1 .04-.074c.017 0 .04-.008.04-.008.034-.056.034-.097.066-.146-.008-.008-.016-.008-.025-.016zm14.059.999h-.002v.006zm-.002.006a.2.2 0 0 0-.007.067q-.002-.034.007-.067m-.007.147v.008c.008.008.009.008.016 0-.008 0-.008 0-.016-.007zm0 .016c-.024.008-.05.008-.081.017.04.015.079.023.08.04zm0 .056v.002zm-1.192 1.422c-.016.925.09 1.833.21 2.75l-2.786.097a3.3 3.3 0 0 0 .94-.624 1 1 0 0 1 .13-.114c.34-.21.59-.503.818-.828.259-.373.429-.795.64-1.192a1 1 0 0 1 .048-.09m1.134.073.033.08c.04-.007.057-.007.073-.015q-.002-.012.008-.024c-.024-.01-.057-.024-.114-.04zm.024.074-.007.006c.008 0 .016.01.016.01l-.008-.01zM1.07 14.01a.2.2 0 0 0-.073.033c.032.08.073.17.105.252a.2.2 0 0 1 .065-.033c-.033-.08-.065-.17-.097-.252m-.228.333c-.024.04-.048.08-.04.113 0 .024.04.05.065.073 0-.008.008-.016.016-.023-.016-.057-.024-.106-.04-.163m21.657.008c0 .016.008.04 0 .057zm-21.235.18a.3.3 0 0 0-.073.03c.065.139.13.285.194.423.01 0 .073-.032.073-.032-.065-.14-.105-.293-.194-.422m-.162.324c0 .032-.04.024-.04.057-.049 0-.09-.008-.13-.008-.008.008.024.056.033.065h.17c0-.04-.008-.073-.008-.114zm7.453.316q.133.205.276.398l-.008.008c-.017-.008-.041-.017-.057-.033l-.194-.292a.1.1 0 0 1-.017-.08m9.043.438c-.008.097-.016.17-.016.243 0 .016.016.048.024.048.016.01.049-.008.065-.015a.06.06 0 0 0 .016-.032c-.024-.017-.048-.025-.073-.042.154-.08 0-.12-.016-.202m-14.114 4.59c.088.099.177.196.266.302-.048-.025-.105-.04-.13-.073-.056-.065-.104-.138-.16-.203zm.34.286c.024.04.04.089.064.138-.113-.008-.17-.057-.137-.122.024-.008.05-.008.073-.016m15.434 1.241c-.065.015-.114.024-.154.04-.016.033-.033.057-.05.09q.013.001.026.015c.049-.05.105-.09.178-.145m-.414.226c-.09.057-.186.113-.276.17.008.008.008.017.017.025a.8.8 0 0 0 .292-.146c-.008-.017-.025-.034-.033-.05m-3.97 1.542c-.371.106-.493.122-.534.065.187-.025.357-.04.535-.065m-.551.073c.008.016.008.032.016.048-.05 0-.081.017-.122.025-.113.024-.235.04-.348.057-.04.008-.09.05-.105-.025-.017.008-.033.008-.05.017.04.12.139.024.22.072-.18.025-.348.04-.52.065v-.016c.05-.008.107-.016.155-.025v-.024a2 2 0 0 0-.243-.016c-.024 0-.056.033-.08.04a.4.4 0 0 1-.106.017c-.138.008-.275.008-.405.016-.008 0-.025-.008-.033-.008v-.025c.543-.072 1.078-.145 1.62-.218zm-1.694.21v.024a4 4 0 0 1-.453.05v-.025z" }) + ] + } + ); +}); + +exports.default = SiPostcss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.d.ts new file mode 100644 index 000000000..8ff82095c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD3A0A"; +declare const SiPostcss: IconType; +export { SiPostcss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.mjs new file mode 100644 index 000000000..c0fcbdb14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostcss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD3A0A"; +const SiPostcss = React.forwardRef(function SiPostcss2({ title = "PostCSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.627.008q-.352.014-.706.065c-.226.024-.453.064-.672.097-.267.033-.534.05-.801.081-.252.033-.51.082-.762.123-.09.016-.178.048-.268.064-.194.04-.396.057-.59.122A16 16 0 0 0 6.79.917c-.316.13-.624.268-.923.43-.308.17-.6.373-.892.568q-.415.277-.82.592c-.257.203-.501.43-.736.657-.13.13-.235.284-.356.43-.203.236-.405.462-.6.706-.16.203-.308.414-.462.625-.275.373-.51.77-.728 1.168-.09.162-.17.325-.25.487-.123.243-.252.478-.366.73-.08.17-.146.357-.194.544a67 67 0 0 0-.332 1.2c-.098.358-.122.73-.13 1.096-.008.324.024.64.057.965.008.082-.04.18.056.244-.032.09-.008.138.04.154-.056.09.025.146-.007.227-.008.017.025.05.04.073 0 .025-.008.057 0 .08.01.074.04.147.04.229 0 .056.05.12.066.178.008.024 0 .065-.017.08-.048.058-.04.106.033.139.04.105.024.154.016.203.016.073-.008.097 0 .114.065.13.09.275.097.42 0 .034.016.066.033.107.008 0 0 .154 0 .154.04-.024.073-.032.113-.05q.036.16.081.294c.04.065.041.097.025.105.032.145.048.283.105.42 0-.153-.016-.307-.04-.453.113.04.21.08.275.08.008-.023.016-.055.025-.072-.049-.048-.09-.12-.138-.17.016.065 0 .09 0 .114a1 1 0 0 0-.114-.05c.033-.04.065-.08.114-.13 0-.072-.04-.137-.154-.13.05-.015.097-.04.154-.055.09-.048-.008-.138-.008-.25.008-.14-.073-.277-.097-.423-.04-.227-.033-.568-.057-.795-.049-.04-.09.065-.097.073q.04.293.064.584c-.048-.162-.08-.34-.12-.536-.01.057-.017.08-.017.114-.04.04-.008.09.016.146-.056-.025-.12-.016-.12-.016v.227c-.082-.08-.106-.146-.147-.203-.016-.065-.025-.13-.04-.194.015-.04 0-.065 0-.09l-.025-.195a1 1 0 0 0-.008-.13c.065.009.106.016.146.016-.08-.104-.025-.17.008-.234.016-.033.073-.04.09-.074.064-.12.17-.218.17-.373 0-.073.025-.154.032-.227q.027-.207.04-.414c.017-.178 0-.357.041-.527.065-.283.146-.568.235-.852.065-.203.138-.397.22-.6.12-.317.234-.633.388-.933.22-.438.47-.86.713-1.29.154-.268.316-.52.487-.78.16-.25.323-.51.51-.746.26-.332.543-.64.86-.917.323-.292.63-.592.98-.86a10 10 0 0 1 1.44-.925c.414-.219.843-.39 1.273-.552.275-.105.575-.154.859-.243.324-.106.648-.154.988-.162.219-.008.43-.033.648-.057a16 16 0 0 0 .6-.057.4.4 0 0 0-.04.065c-.09.13-.187.26-.276.39-.073.105-.154.218-.227.324-.13.17-.268.34-.39.52-.185.267-.356.543-.55.81-.194.26-.405.504-.608.755-.267.35-.518.706-.785 1.055-.244.332-.502.65-.737.982-.21.292-.398.6-.6.9-.3.446-.6.884-.9 1.33a84 84 0 0 1-.712 1.015c-.016.024-.04.032-.065.048-.064.105-.064.162-.09.21a4 4 0 0 1-.202.358c-.04.065-.097.122-.146.187-.008-.098.13-.147.065-.27-.04.067-.08.123-.12.188l-.1.194c.033.024.088.04.035.088-.005-.02-.032-.032-.053-.048a5 5 0 0 0-.194.293c.05.04.073.024.105-.033.03-.06.072-.104.11-.154l-.042.074a.3.3 0 0 0 .09-.08c0 .088-.05.16-.09.233-.033.065-.114.114-.17.163.008.008.065.032.073.04.073-.024.097-.064.106-.04.024-.033.048-.057.056-.08a.3.3 0 0 1 .162-.18q.046-.026.08-.064c.244-.252.495-.496.714-.764.34-.413.648-.843.973-1.265.137-.178.3-.357.445-.527.024.186.008.365 0 .535-.025.3-.04.6-.065.908-.008.122 0 .244-.008.366 0 .032-.025.056-.025.09 0 .08.025.17.025.25-.025.3-.057.592-.082.893-.008.064.024.13.04.186-.04.438.05.9-.024 1.364.057-.09.073-.147.073-.203.008-.05 0-.097 0-.154v-.08c.008-.147.04-.3.024-.448a1.5 1.5 0 0 1 .016-.47c.017-.065-.007-.146.033-.227v.12c-.008.463.01.926-.056 1.388-.008.04.024.114-.065.106-.073.146.016.252-.065.333-.016.016.016.09.024.138-.032.097-.032.097.016.105.008.18.025.34.033.51.13-.307.064-.624.122-.941.008.13.016.26.008.398 0 .21-.01.414-.017.625q-.002.06-.016.122c-.024.113-.032.227-.072.332-.033.08-.016.203-.016.3v.31c.032.137-.01.21.016.29-.025.083-.033.107-.025.13l.025.123c.162-.016.09.106.153.17-.048.065-.032.09-.032.122 0 .073-.008.138-.016.21 0 .188-.008.374-.008.553 0 .025.008.048.008.073l-.008.227c.016.024 0 .05-.025.073-.008 0-.032-1.03-.032-1.03h-.12c-.017.486.023.924-.066 1.38-.097.007-.13.023-.235.023q-.378-.002-.754.008c-.3 0-.59.008-.89.008-.147 0-.3.017-.446.017-.195 0-.397-.025-.59-.025-.3 0-.593.024-.893.032-.22.008-.437.008-.656.017-.146.008-.292.015-.438.032-.064.008-.12.032-.202.056-.025 0-.08-.008-.13 0-.08.017-.153.065-.235.082-.122.024-.154.056-.138.178v.08c-.008.017.178-.024.178-.024-.016 0-.024.05-.049.09.065-.025.106-.04.147-.057.121.057.226.025.323.05.316.08.64.113.964.145.21.016.414.025.624.032.3.017.6.033.9.033.25 0 .493-.025.744-.025.348 0 .697.016 1.045.025.073 0 .154-.008.235-.008h.592c.527-.016 1.053-.025 1.58-.04.3-.01.608-.025.907-.033l.924-.025c.357-.008.713-.008 1.062-.015.267 0 .526-.01.794-.017.3-.008.607-.032.907-.048.162-.008.324-.025.486-.04.195-.017.398-.04.592-.05.29-.016.59-.024.883-.04.365-.024.73-.057 1.102-.065.34-.016.689-.008 1.03-.016.3-.008.599-.025.907-.033l.51-.025s.34-.008.51-.024c.293-.016.584-.05.876-.057.186-.008.372 0 .559-.008.3-.008.606-.024.906-.024.113 0 .235.016.38.024-.064.057-.105.09-.153.13.032.008.064.025.097.04a.22.22 0 0 1-.13.04c-.016.042-.032.058-.048.139h.145c-.056 0-.105.073-.16.122-.066-.017-.123 0-.156.09.057.03.05.056.04.09-.096.03-.17.063-.128.169q-.05.022-.114.056c-.04.065-.113.08-.097.17.032.008.064.025.09.033-.042.016-.082.04-.123.056-.145.09-.08.13-.048.17q-.037.027-.073.04c.016.074.04.09.048.09l-.085.069.01-.027h-.032q0 .022.005.04l-.02.016c-.024.072-.056.104-.09.153-.03.048-.046.114-.087.162-.17.187-.292.406-.51.552-.081.057-.154.13-.227.203-.146.138-.276.292-.43.422a9 9 0 0 1-.631.478c-.267.187-.534.374-.802.552-.146.097-.308.17-.462.26s-.3.17-.454.26c-.097.064-.186.153-.291.202-.268.114-.551.211-.827.317-.268.114-.462.21-.664.284a5 5 0 0 1-.575.153c-.065.017-.138 0-.211.01-.138.024-.276.057-.414.073-.356.048-.713.08-1.07.13-.21.024-.413.064-.623.09-.146.007-.3-.009-.446-.009-.105 0-.218.025-.324.01-.17-.026-.34-.066-.51-.098-.04-.008-.097-.025-.13-.008-.064.032-.122-.016-.187 0-.04.008-.08-.025-.12-.025-.033-.008-.074.01-.115 0-.09-.024-.17-.056-.268-.048-.096.008-.194-.04-.298-.065l-.43-.097a.7.7 0 0 1-.162-.073c-.21 0-.348-.008-.478-.057-.113-.04-.22-.097-.34-.08-.032.007-.057-.009-.09-.009-.024-.033-.048-.098-.072-.098-.162.008-.26-.13-.397-.17-.073-.024-.13-.105-.202-.13-.18-.073-.324-.227-.527-.25-.064-.01-.13-.042-.202-.066.024.032.04.057.064.08-.235-.113-.453-.242-.672-.364-.032-.008-.056-.04-.08-.057l-.22-.147c-.12.024-.17-.025-.203-.04-.218-.154-.47-.252-.68-.421-.09-.074-.194-.122-.26-.212a1.3 1.3 0 0 0-.404-.316c-.122-.064-.235-.138-.348-.21-.057-.041-.114-.09-.114-.18 0-.056-.024-.113-.097-.08-.032-.05-.065-.106-.105-.122-.097-.04-.162-.114-.235-.18-.073-.064-.13-.153-.22-.185-.161-.065-.26-.203-.355-.316-.228-.268-.43-.56-.64-.844-.017-.024-.05-.04-.074-.065.033.09.073.162.114.243a.5.5 0 0 1-.186-.146c-.008.008.558.942.558.942.05.073.09.146.138.219a.25.25 0 0 1-.243-.13c-.073-.13-.154-.21-.316-.194a1.4 1.4 0 0 1-.04-.18.6.6 0 0 1-.114-.008c.114.179.21.333.316.51l-.08-.047c.145.154.25.349.436.446.04.187.25.276.3.454l-.114-.024c-.065-.081-.138-.162-.21-.251a.4.4 0 0 0 .072.145c.098.122.187.244.3.35.04.04.098.057.098.13.064.032.09.04.113.04.017.049-.008.122.09.106.064.12.128.12.218.08.105.105.162.114.235.05 0 .04.008.08.008.113.032-.017.025-.04.025-.081.04.033.064.049.08.065.08.114.154.219.268.307.154.13.29.268.437.39.283.235.6.43.916.608.39.22.762.455 1.16.665a6.2 6.2 0 0 0 1.513.545c.195.04.38.08.576.13.17.048.34.121.51.161.26.057.527.106.786.154l.179.025c.072.016.16-.016.177.008.04.065.073.032.122.024.057-.016.12-.016.186-.016.227.008.445.056.672.04.05 0 .122-.04.163.04.073-.032.113-.032.146-.04.008.073 0 .073-.016.08-.017.01-.04.017-.073.04.292.058.567.066.81 0a2.7 2.7 0 0 0 1.135-.136c.032.04.056.097.105.016.016-.025.056-.033.089-.04.073-.017.162-.05.227-.026.073.025.097-.04.154-.04.097 0 .186-.008.276-.024.048-.008.097-.033.153-.05a.4.4 0 0 0-.178-.04 7 7 0 0 1 .276-.13c-.017.025-.033.057-.065.057h.113c-.025 0-.057.073-.097.122.29-.073.558-.138.818-.204-.09-.17.097-.113.162-.21a3 3 0 0 1-.243.064c.275-.137.559-.26.834-.38-.04.048-.09.073-.162.114.049.008.08.008.106.015.129.04.097-.08.137-.154.154 0 .219-.024.292-.05q.12-.033.243-.08c.13-.056.25-.13.38-.194.025-.01.065 0 .098 0 .09-.057.12-.106.145-.098.114.017.194-.024.227-.13l.023-.015c.033.07.098.08.203.007q-.1-.002-.187-.016-.008.002-.011.006.06-.047.11-.08c.178-.096.347-.193.526-.29.065 0 .097 0 .113-.008a4 4 0 0 0 .3-.163c-.024-.008-.08-.04-.08-.04a1 1 0 0 0 .154-.04c.193-.23.46-.383.664-.56.089-.008.089-.032.089-.048.032-.041.064-.09.105-.122.177-.163.371-.3.533-.47q.354-.355.673-.732c.194-.227.39-.454.55-.705.228-.35.422-.706.625-1.072.146-.26.275-.52.422-.778.015-.025.048-.057.072-.057.22-.025.438-.04.65-.065.047-.008.104-.04.152-.065-.024-.04-.04-.09-.064-.13-.033-.05-.08-.09-.114-.138-.032-.04-.056-.09-.08-.138-.025-.04-.05-.072-.074-.114a3 3 0 0 1-.138-.275c-.008-.024-.025-.065-.016-.09.146-.315.202-.656.34-.972.138-.325.18-.69.243-1.04.057-.331.09-.664.13-.997.024-.235.057-.462.064-.697.05-.373.033-.723.025-1.072-.008-.308-.025-.624-.04-.933-.017-.317-.025-.633-.058-.95-.056-.43-.113-.868-.21-1.29a7 7 0 0 0-.316-1.014c-.154-.39-.308-.787-.503-1.16-.316-.6-.73-1.136-1.11-1.696-.252-.357-.576-.65-.82-1.014-.135-.21-.34-.39-.541-.55a14 14 0 0 0-1.004-.723 10 10 0 0 0-.794-.504c-.22-.122-.454-.22-.68-.325-.26-.12-.511-.268-.803-.324-.073-.016-.138-.04-.21-.065-.187-.065-.365-.138-.552-.195-.283-.089-.56-.194-.85-.267a8 8 0 0 0-.87-.163c-.323-.047-.655-.064-.98-.096a8 8 0 0 0-.623-.056c-.307-.018-.623-.018-.93-.025-.154-.008-.316-.024-.47-.016Zm.694.94q.156.027.3.041l.389.025c.292.023.583.04.875.08.243.033.486.081.737.122a10.4 10.4 0 0 1 1.572.405c.3.098.59.228.884.35.656.267 1.28.592 1.895.932.194.106.308.276.454.43.21.22.42.438.624.665.234.268.453.544.68.82.201.243.412.486.615.73.065.073.114.163.17.244.13.194.275.38.39.592.08.154.13.333.185.503.08.252.162.495.243.746.056.187.104.382.145.576.033.13.025.268.065.397.05.17 0 .358.05.528.007.017.015.04.023.057.033.032.057.065.008.114-.008.008-.008.04 0 .064.017-.016.025-.032.04-.057 0 .017.01.025.01.033 0 .032-.01.065 0 .097 0 .016.015.04.023.057.016-.017.032-.025.064-.05.073.276.082.552.082.836 0 .268.048.536-.065.795.024-.09-.033-.17-.008-.252l.003.002c-.008 0-.056-.05-.064-.057-.01.025 0 .05-.017.08-.008-.023-.064-.014-.064-.04-.01.115.048.228.04.34.024-.014.12-.023.146-.047a.1.1 0 0 0 .032.016c-.162.122-.12.244-.048.382.016.032.064.097.016.162-.016.016.008.065.016.106h.024v.015l-.073.025c-.016-.025-.113-.073-.113-.114v.414c.08.025.08.138.113.195a.2.2 0 0 0 .033-.064l.008.008q-.01.072-.032.146c-.016.072-.033.137-.04.21 0 .008.015.025.015.033-.09.203-.04.43-.072.64-.025.154 0 .317-.017.48a4 4 0 0 1-.08.42c-.009.025-.026.033-.066.05a.7.7 0 0 0-.008-.252c-.008 0-.114-.057-.122-.057 0 .114.065.268.09.398-.025-.008-.122-.065-.13-.065-.017.097-.017.227-.025.332-.008.082-.08.154-.09.244 0 .05.058.08.05.162h.064c0-.162.074-.308.074-.478h.023c.01.016.033.032.025.04-.016.09-.05.187-.04.276 0 .05.04.097.024.154a1 1 0 0 0-.033.17c-.008-.04-.016-.056-.016-.08l-.09-.008c-.007.05.058.097.05.138-.01.008-.017.008-.033.016l-.267-.39a82 82 0 0 1-.632-.932 2 2 0 0 1-.147-.244q-.372-.645-.833-1.24c-.235-.3-.422-.626-.64-.94-.203-.302-.405-.594-.608-.895-.073-.097-.162-.186-.227-.292-.21-.332-.397-.673-.607-1.006-.178-.276-.372-.544-.56-.81q-.097-.137-.194-.286a.1.1 0 0 1-.016-.055 12 12 0 0 1-.04-.528c0-.162.016-.324.016-.495V6.96c0-.04.008-.073.008-.113.008-.008.016-.025.024-.033-.235 0-.478-.01-.713 0-.154.008-.235-.057-.34-.17-.308-.35-.535-.747-.802-1.12a50 50 0 0 0-.77-1.055c-.211-.284-.422-.56-.632-.844-.236-.324-.462-.65-.705-.973q-.44-.585-.892-1.168c-.138-.179-.292-.35-.446-.536m-.752.426q.026.005.05.038c.218.276.437.56.655.835.163.204.325.398.48.61.185.26.364.52.55.778q.316.448.624.908c.308.455.6.91.907 1.363.227.333.454.658.672.99h-.413c-.38-.008-.77-.04-1.15-.024-.52.025-1.046.08-1.564.122a23 23 0 0 1-1.976.064c-.236 0-.47.033-.705.05-.284.016-.56.032-.843.04-.333.016-.656.024-.99.033-.185.008-.38 0-.582 0V7.18c.26-.357.527-.714.786-1.08.08-.105.145-.22.226-.324.025-.033.058-.05.098-.082l-.008-.015c.032-.04.064-.074.08-.106.042-.065.066-.138.099-.21a.1.1 0 0 1 .032-.033c.114.057.114-.064.154-.105a6 6 0 0 0 .21-.252c.05-.064.098-.12.139-.194.007-.025-.017-.065-.025-.098H9.05c.024-.016.049-.04.073-.056.008 0 .008 0 .016-.008a5 5 0 0 1 .146-.21c.097-.13.202-.26.315-.374q-.024.062-.048.113c.008 0 .008.008.016.008.097-.13.203-.252.3-.382q-.012-.014-.025-.016c-.04.04-.072.082-.113.122q-.012-.014-.025-.016c.082-.106.163-.21.243-.333.017.025.033.057.065.122.033-.08.065-.138.09-.195-.025.025-.057.05-.081.074l-.025-.025.146-.218c.154-.22.308-.447.462-.666.057-.08.13-.146.178-.227.154-.308.398-.552.584-.836.04-.056.097-.105.145-.154q.03-.035.056-.03zm-2.285 3.16c-.048.033-.09.057-.137.09-.01.008-.017.008-.01.008.01.04.01.073.017.13.057-.082.097-.147.146-.21zm6.838 3.342c.073 0 .113.025.154.09q.108.182.227.365c.008.016.024.04.024.064 0 .18 0 .365.008.544.008.187.025.365.032.552 0 .186-.016.38-.008.576.009.276.016.56.016.843h.002v.074c-.008 0-.016.008-.032.008-.033-.114-.065-.236-.106-.35a2.7 2.7 0 0 0-.316-.68c-.163-.228-.308-.463-.47-.698-.04-.057-.098-.106-.146-.154-.17-.187-.34-.382-.56-.52a6.6 6.6 0 0 0-1.012-.52 2 2 0 0 1-.284-.145h.194L15.23 7.9c.3-.008.59-.008.89-.024m-6.083.212q.088-.003.178.008c-.13.065-.26.13-.373.21-.146.098-.283.228-.43.334a2.4 2.4 0 0 0-.396.373c-.154.186-.324.348-.487.527-.113.13-.243.252-.34.39-.137.178-.26.372-.39.575.042-.77.09-1.533.058-2.312.382-.016.746-.04 1.12-.056.29-.017.59-.025.88-.04q.09-.008.18-.01zm2.033.415c.242.008.485.008.728.024.105.008.203.032.3.064.12.04.25.098.365.154q.204.11.397.244c.235.154.453.324.688.462.227.138.405.325.55.536.18.25.382.48.463.787l.12.535c.026.098.083.195.058.308-.04.203-.073.415-.105.617a1 1 0 0 0-.024.244c.015.252-.082.47-.18.698-.031.073-.08.146-.12.227a.2.2 0 0 0 .064.033l.073-.146c.009 0 .009 0 .016.008-.04.113-.072.235-.113.35-.097.25-.194.51-.316.753-.065.138-.178.25-.26.382-.08.113-.145.235-.226.34-.073.09-.145.18-.243.244a6 6 0 0 1-.68.454c-.146.09-.316.138-.478.178h.002c-.26.064-.527.138-.794.17-.227.033-.462.025-.697.025a8 8 0 0 1-.625-.025c-.235-.024-.47-.05-.696-.154-.195-.09-.398-.17-.591-.268-.196-.097-.39-.21-.536-.39-.105-.13-.251-.234-.38-.348a.38.38 0 0 0 .17.235c-.041.05-.098.025-.18-.106-.023.017-.047.025-.064.033.025-.057.049-.114.073-.162-.032-.065-.073-.138-.105-.204a7 7 0 0 1-.187-.324c-.016-.024-.016-.048-.032-.073a2 2 0 0 1-.114-.146c-.064-.097-.12-.202-.202-.3 0 .025.008.05.008.082-.008 0-.016.008-.016.008l-.17-.414c-.008 0-.008 0-.016.008l.145.535c-.008 0-.016.01-.024.01-.024-.034-.048-.066-.065-.106-.016-.066-.065-.066-.105-.04-.025.015-.041.072-.033.096q.088.207.187.414a1 1 0 0 0 .057.138c.008.016.032.032.032.056.033.065.057.13.098.187.073.097.154.195.227.292.072.097.137.203.2.3.009.016.034.016.04.025.043.12.18.21.277.162.025.186.227.25.308.43a4 4 0 0 1-.235-.106c-.008.008-.008.016-.016.032.097.05.195.098.283.154.082.05.163.098.236.155.097.09.21.138.348.17a.1.1 0 0 0-.016-.033c.227.106.462.22.64.308-.843.017-1.742.033-2.674.05 0-.155-.008-.3-.008-.455 0-.065.016-.122.008-.187-.025-.372-.025-.746-.073-1.11a8 8 0 0 1-.04-1.162c.007-.21-.01-.43-.017-.64 0-.284 0-.56.009-.844 0-.04.016-.073.032-.114h.025c.008.017 0 .04.015.05.025.024.066.064.082.056.048-.033.12-.065.138-.114a.8.8 0 0 0 .056-.3c0-.073.033-.12.065-.17.016-.025.025-.05.04-.08-.031-.025-.064-.042-.104-.074.032-.09.024-.195.146-.243.016-.008.016-.05.024-.073.008-.066.015-.14.024-.204.016.025.025.033.04.05q.015-.026.017-.026c0-.032-.008-.097 0-.097.097-.016.057-.122.105-.17.008-.01-.008-.033-.008-.05 0-.015 0-.04.008-.04.113-.024.097-.146.17-.203.024-.016.032-.04.065-.08.064.112-.05.17-.057.25.137-.08.178-.275.097-.332a.5.5 0 0 0 .089-.09c.09-.097.186-.186.267-.283.057-.073.09-.162.146-.235.033-.04.098-.073.146-.098.146-.08.284-.17.373-.307q.026-.025.064-.05c.025-.015.074-.015.082-.04.008-.016-.016-.057-.033-.08.032-.017.065-.05.13-.082-.025.05-.032.08-.05.114l.04.04c.074-.057.188-.12.26-.17 0-.008-.04-.04-.04-.04-.05.024-.121.065-.194.097.015-.024.015-.04.025-.05.113-.072.226-.144.348-.202.283-.13.567-.26.85-.38.049-.025.114-.01.17-.01.025 0 .04 0 .065-.006.13-.04.26-.082.39-.114a.7.7 0 0 1 .178-.024m-.316.12-.234.106c0 .008-.041.073-.033.073.04-.008.13-.073.178-.08.024 0 .057.007.082.015 0-.032 0-.065.007-.114m5.858 1.38c.08.107.17.204.227.309.187.34.43.634.656.942.195.268.373.56.552.835.218.333.429.665.648.998.162.252.332.503.502.747q.233.326.477.64c.137.187.283.374.42.56q.244.344.487.674c.08.113.17.227.26.34.05.065.121.114.17.154a.1.1 0 0 1-.032-.008q.034.05.056.073c.09.05.098.098.05.17v-.001c-.008.016-.025.033-.033.05-.008-.017-.008-.042-.016-.075-.05.13-.154.066-.227.066-.437.008-.883.008-1.32.008-.421 0-.85 0-1.271.008-.138 0-.284.032-.422.04a37 37 0 0 1-.997.033c-.024 0-.048-.04-.09-.073l-.048.073c-.008-.016-.024-.032-.04-.056l-.025.064h-.024c-.016-.113-.048-.22-.048-.332 0-.244.024-.487.032-.73.008-.114 0-.22 0-.325l.09.065a1 1 0 0 1 .048-.08s-.016-.008-.033-.025c.016-.008.033-.025.033-.033.008-.024.024-.05.024-.065 0-.057-.016-.105-.024-.153q.012.002.024-.008l.048.243h.025c-.032-.056.073-.106-.016-.17-.008-.008.008-.057.008-.082-.025-.048-.04-.097-.065-.162.008-.008.033-.016.057-.024q-.046-.026-.081-.04c.08-.073.08-.114.008-.195.016-.008.032-.008.032-.015 0-.074 0-.147-.016-.22-.016-.081.025-.178-.097-.227a.2.2 0 0 0 .032.065s-.024.008-.048.024c-.105-.097-.04-.228-.065-.373a1 1 0 0 1 .138.05c-.017-.058-.057-.123-.081-.196h-.033v-.536c0 .008.056.008.09.017 0-.008.007-.016.007-.025l-.09-.105.017-.016c-.065-.08-.032-.194-.032-.22v-.567c.08.082-.04.187.08.235v-.08h-.008c-.008-.122-.008-.244-.016-.366h-.016c-.008.017-.008.025-.016.04h-.016zm-13.65.665c-.098.113-.187.227-.276.34.015.008.04.065.055.082.09-.122.21-.276.3-.39-.008-.008-.072-.024-.08-.032m-.543.398c-.05.072-.17.202-.22.275.009.008.098-.032.106-.023.05-.073.098-.155.146-.228q-.022-.013-.032-.024m.17.12c-.05.034-.097.075-.146.107.016.016.016.025.016.04-.064-.007-.09.026-.12.114-.01.025-.05.033-.09.065-.01.016-.017.057-.033.097l.008.008a.1.1 0 0 1-.04.025c-.05.048-.106.09-.154.138q-.014.036-.016.073c.056-.057.153-.162.226-.227l.01.008c.03-.05.056-.098.09-.146.006.008.006.016.014.024-.024.065-.048.138-.073.203-.017.008-.04.024-.04.016-.033.025-.058.057-.09.08l-.146.098c-.08.073-.162.138-.25.21-.058.09-.114.17-.18.277.098-.025.122.016.114.097.113.016.122-.073.154-.138.008-.016.016-.05.032-.057.073-.065.154-.12.235-.186.017-.016.017-.05.017-.073 0-.008-.04-.008-.066-.017.073-.08.18-.218.25-.307.042-.025.083-.058.083-.082-.007-.075.032-.104.082-.13-.037.175-.144.325-.252.356.033.016.065.033.09.025s.04-.05.056-.074l.22-.316.072-.122-.032-.033c-.033.058-.065.107-.098.164l-.027-.014.002-.002c-.032-.025-.04-.05-.04-.057a.3.3 0 0 1 .04-.074c.017 0 .04-.008.04-.008.034-.056.034-.097.066-.146-.008-.008-.016-.008-.025-.016zm14.059.999h-.002v.006zm-.002.006a.2.2 0 0 0-.007.067q-.002-.034.007-.067m-.007.147v.008c.008.008.009.008.016 0-.008 0-.008 0-.016-.007zm0 .016c-.024.008-.05.008-.081.017.04.015.079.023.08.04zm0 .056v.002zm-1.192 1.422c-.016.925.09 1.833.21 2.75l-2.786.097a3.3 3.3 0 0 0 .94-.624 1 1 0 0 1 .13-.114c.34-.21.59-.503.818-.828.259-.373.429-.795.64-1.192a1 1 0 0 1 .048-.09m1.134.073.033.08c.04-.007.057-.007.073-.015q-.002-.012.008-.024c-.024-.01-.057-.024-.114-.04zm.024.074-.007.006c.008 0 .016.01.016.01l-.008-.01zM1.07 14.01a.2.2 0 0 0-.073.033c.032.08.073.17.105.252a.2.2 0 0 1 .065-.033c-.033-.08-.065-.17-.097-.252m-.228.333c-.024.04-.048.08-.04.113 0 .024.04.05.065.073 0-.008.008-.016.016-.023-.016-.057-.024-.106-.04-.163m21.657.008c0 .016.008.04 0 .057zm-21.235.18a.3.3 0 0 0-.073.03c.065.139.13.285.194.423.01 0 .073-.032.073-.032-.065-.14-.105-.293-.194-.422m-.162.324c0 .032-.04.024-.04.057-.049 0-.09-.008-.13-.008-.008.008.024.056.033.065h.17c0-.04-.008-.073-.008-.114zm7.453.316q.133.205.276.398l-.008.008c-.017-.008-.041-.017-.057-.033l-.194-.292a.1.1 0 0 1-.017-.08m9.043.438c-.008.097-.016.17-.016.243 0 .016.016.048.024.048.016.01.049-.008.065-.015a.06.06 0 0 0 .016-.032c-.024-.017-.048-.025-.073-.042.154-.08 0-.12-.016-.202m-14.114 4.59c.088.099.177.196.266.302-.048-.025-.105-.04-.13-.073-.056-.065-.104-.138-.16-.203zm.34.286c.024.04.04.089.064.138-.113-.008-.17-.057-.137-.122.024-.008.05-.008.073-.016m15.434 1.241c-.065.015-.114.024-.154.04-.016.033-.033.057-.05.09q.013.001.026.015c.049-.05.105-.09.178-.145m-.414.226c-.09.057-.186.113-.276.17.008.008.008.017.017.025a.8.8 0 0 0 .292-.146c-.008-.017-.025-.034-.033-.05m-3.97 1.542c-.371.106-.493.122-.534.065.187-.025.357-.04.535-.065m-.551.073c.008.016.008.032.016.048-.05 0-.081.017-.122.025-.113.024-.235.04-.348.057-.04.008-.09.05-.105-.025-.017.008-.033.008-.05.017.04.12.139.024.22.072-.18.025-.348.04-.52.065v-.016c.05-.008.107-.016.155-.025v-.024a2 2 0 0 0-.243-.016c-.024 0-.056.033-.08.04a.4.4 0 0 1-.106.017c-.138.008-.275.008-.405.016-.008 0-.025-.008-.033-.008v-.025c.543-.072 1.078-.145 1.62-.218zm-1.694.21v.024a4 4 0 0 1-.453.05v-.025z" }) + ] + } + ); +}); + +export { SiPostcss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.cjs new file mode 100644 index 000000000..ba8b77ecb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4169E1"; +const SiPostgresql = React__namespace.forwardRef(function SiPostgresql2({ title = "PostgreSQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.5594 14.7228a.5269.5269 0 0 0-.0563-.1191c-.139-.2632-.4768-.3418-1.0074-.2321-1.6533.3411-2.2935.1312-2.5256-.0191 1.342-2.0482 2.445-4.522 3.0411-6.8297.2714-1.0507.7982-3.5237.1222-4.7316a1.5641 1.5641 0 0 0-.1509-.235C21.6931.9086 19.8007.0248 17.5099.0005c-1.4947-.0158-2.7705.3461-3.1161.4794a9.449 9.449 0 0 0-.5159-.0816 8.044 8.044 0 0 0-1.3114-.1278c-1.1822-.0184-2.2038.2642-3.0498.8406-.8573-.3211-4.7888-1.645-7.2219.0788C.9359 2.1526.3086 3.8733.4302 6.3043c.0409.818.5069 3.334 1.2423 5.7436.4598 1.5065.9387 2.7019 1.4334 3.582.553.9942 1.1259 1.5933 1.7143 1.7895.4474.1491 1.1327.1441 1.8581-.7279.8012-.9635 1.5903-1.8258 1.9446-2.2069.4351.2355.9064.3625 1.39.3772a.0569.0569 0 0 0 .0004.0041 11.0312 11.0312 0 0 0-.2472.3054c-.3389.4302-.4094.5197-1.5002.7443-.3102.064-1.1344.2339-1.1464.8115-.0025.1224.0329.2309.0919.3268.2269.4231.9216.6097 1.015.6331 1.3345.3335 2.5044.092 3.3714-.6787-.017 2.231.0775 4.4174.3454 5.0874.2212.5529.7618 1.9045 2.4692 1.9043.2505 0 .5263-.0291.8296-.0941 1.7819-.3821 2.5557-1.1696 2.855-2.9059.1503-.8707.4016-2.8753.5388-4.1012.0169-.0703.0357-.1207.057-.1362.0007-.0005.0697-.0471.4272.0307a.3673.3673 0 0 0 .0443.0068l.2539.0223.0149.001c.8468.0384 1.9114-.1426 2.5312-.4308.6438-.2988 1.8057-1.0323 1.5951-1.6698zM2.371 11.8765c-.7435-2.4358-1.1779-4.8851-1.2123-5.5719-.1086-2.1714.4171-3.6829 1.5623-4.4927 1.8367-1.2986 4.8398-.5408 6.108-.13-.0032.0032-.0066.0061-.0098.0094-2.0238 2.044-1.9758 5.536-1.9708 5.7495-.0002.0823.0066.1989.0162.3593.0348.5873.0996 1.6804-.0735 2.9184-.1609 1.1504.1937 2.2764.9728 3.0892.0806.0841.1648.1631.2518.2374-.3468.3714-1.1004 1.1926-1.9025 2.1576-.5677.6825-.9597.5517-1.0886.5087-.3919-.1307-.813-.5871-1.2381-1.3223-.4796-.839-.9635-2.0317-1.4155-3.5126zm6.0072 5.0871c-.1711-.0428-.3271-.1132-.4322-.1772.0889-.0394.2374-.0902.4833-.1409 1.2833-.2641 1.4815-.4506 1.9143-1.0002.0992-.126.2116-.2687.3673-.4426a.3549.3549 0 0 0 .0737-.1298c.1708-.1513.2724-.1099.4369-.0417.156.0646.3078.26.3695.4752.0291.1016.0619.2945-.0452.4444-.9043 1.2658-2.2216 1.2494-3.1676 1.0128zm2.094-3.988-.0525.141c-.133.3566-.2567.6881-.3334 1.003-.6674-.0021-1.3168-.2872-1.8105-.8024-.6279-.6551-.9131-1.5664-.7825-2.5004.1828-1.3079.1153-2.4468.079-3.0586-.005-.0857-.0095-.1607-.0122-.2199.2957-.2621 1.6659-.9962 2.6429-.7724.4459.1022.7176.4057.8305.928.5846 2.7038.0774 3.8307-.3302 4.7363-.084.1866-.1633.3629-.2311.5454zm7.3637 4.5725c-.0169.1768-.0358.376-.0618.5959l-.146.4383a.3547.3547 0 0 0-.0182.1077c-.0059.4747-.054.6489-.115.8693-.0634.2292-.1353.4891-.1794 1.0575-.11 1.4143-.8782 2.2267-2.4172 2.5565-1.5155.3251-1.7843-.4968-2.0212-1.2217a6.5824 6.5824 0 0 0-.0769-.2266c-.2154-.5858-.1911-1.4119-.1574-2.5551.0165-.5612-.0249-1.9013-.3302-2.6462.0044-.2932.0106-.5909.019-.8918a.3529.3529 0 0 0-.0153-.1126 1.4927 1.4927 0 0 0-.0439-.208c-.1226-.4283-.4213-.7866-.7797-.9351-.1424-.059-.4038-.1672-.7178-.0869.067-.276.1831-.5875.309-.9249l.0529-.142c.0595-.16.134-.3257.213-.5012.4265-.9476 1.0106-2.2453.3766-5.1772-.2374-1.0981-1.0304-1.6343-2.2324-1.5098-.7207.0746-1.3799.3654-1.7088.5321a5.6716 5.6716 0 0 0-.1958.1041c.0918-1.1064.4386-3.1741 1.7357-4.4823a4.0306 4.0306 0 0 1 .3033-.276.3532.3532 0 0 0 .1447-.0644c.7524-.5706 1.6945-.8506 2.802-.8325.4091.0067.8017.0339 1.1742.081 1.939.3544 3.2439 1.4468 4.0359 2.3827.8143.9623 1.2552 1.9315 1.4312 2.4543-1.3232-.1346-2.2234.1268-2.6797.779-.9926 1.4189.543 4.1729 1.2811 5.4964.1353.2426.2522.4522.2889.5413.2403.5825.5515.9713.7787 1.2552.0696.087.1372.1714.1885.245-.4008.1155-1.1208.3825-1.0552 1.717-.0123.1563-.0423.4469-.0834.8148-.0461.2077-.0702.4603-.0994.7662zm.8905-1.6211c-.0405-.8316.2691-.9185.5967-1.0105a2.8566 2.8566 0 0 0 .135-.0406 1.202 1.202 0 0 0 .1342.103c.5703.3765 1.5823.4213 3.0068.1344-.2016.1769-.5189.3994-.9533.6011-.4098.1903-1.0957.333-1.7473.3636-.7197.0336-1.0859-.0807-1.1721-.151zm.5695-9.2712c-.0059.3508-.0542.6692-.1054 1.0017-.055.3576-.112.7274-.1264 1.1762-.0142.4368.0404.8909.0932 1.3301.1066.887.216 1.8003-.2075 2.7014a3.5272 3.5272 0 0 1-.1876-.3856c-.0527-.1276-.1669-.3326-.3251-.6162-.6156-1.1041-2.0574-3.6896-1.3193-4.7446.3795-.5427 1.3408-.5661 2.1781-.463zm.2284 7.0137a12.3762 12.3762 0 0 0-.0853-.1074l-.0355-.0444c.7262-1.1995.5842-2.3862.4578-3.4385-.0519-.4318-.1009-.8396-.0885-1.2226.0129-.4061.0666-.7543.1185-1.0911.0639-.415.1288-.8443.1109-1.3505.0134-.0531.0188-.1158.0118-.1902-.0457-.4855-.5999-1.938-1.7294-3.253-.6076-.7073-1.4896-1.4972-2.6889-2.0395.5251-.1066 1.2328-.2035 2.0244-.1859 2.0515.0456 3.6746.8135 4.8242 2.2824a.908.908 0 0 1 .0667.1002c.7231 1.3556-.2762 6.2751-2.9867 10.5405zm-8.8166-6.1162c-.025.1794-.3089.4225-.6211.4225a.5821.5821 0 0 1-.0809-.0056c-.1873-.026-.3765-.144-.5059-.3156-.0458-.0605-.1203-.178-.1055-.2844.0055-.0401.0261-.0985.0925-.1488.1182-.0894.3518-.1226.6096-.0867.3163.0441.6426.1938.6113.4186zm7.9305-.4114c.0111.0792-.049.201-.1531.3102-.0683.0717-.212.1961-.4079.2232a.5456.5456 0 0 1-.075.0052c-.2935 0-.5414-.2344-.5607-.3717-.024-.1765.2641-.3106.5611-.352.297-.0414.6111.0088.6356.1851z" }) + ] + } + ); +}); + +exports.default = SiPostgresql; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.d.ts new file mode 100644 index 000000000..c255cfe87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4169E1"; +declare const SiPostgresql: IconType; +export { SiPostgresql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.mjs new file mode 100644 index 000000000..25008c608 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostgresql.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4169E1"; +const SiPostgresql = React.forwardRef(function SiPostgresql2({ title = "PostgreSQL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.5594 14.7228a.5269.5269 0 0 0-.0563-.1191c-.139-.2632-.4768-.3418-1.0074-.2321-1.6533.3411-2.2935.1312-2.5256-.0191 1.342-2.0482 2.445-4.522 3.0411-6.8297.2714-1.0507.7982-3.5237.1222-4.7316a1.5641 1.5641 0 0 0-.1509-.235C21.6931.9086 19.8007.0248 17.5099.0005c-1.4947-.0158-2.7705.3461-3.1161.4794a9.449 9.449 0 0 0-.5159-.0816 8.044 8.044 0 0 0-1.3114-.1278c-1.1822-.0184-2.2038.2642-3.0498.8406-.8573-.3211-4.7888-1.645-7.2219.0788C.9359 2.1526.3086 3.8733.4302 6.3043c.0409.818.5069 3.334 1.2423 5.7436.4598 1.5065.9387 2.7019 1.4334 3.582.553.9942 1.1259 1.5933 1.7143 1.7895.4474.1491 1.1327.1441 1.8581-.7279.8012-.9635 1.5903-1.8258 1.9446-2.2069.4351.2355.9064.3625 1.39.3772a.0569.0569 0 0 0 .0004.0041 11.0312 11.0312 0 0 0-.2472.3054c-.3389.4302-.4094.5197-1.5002.7443-.3102.064-1.1344.2339-1.1464.8115-.0025.1224.0329.2309.0919.3268.2269.4231.9216.6097 1.015.6331 1.3345.3335 2.5044.092 3.3714-.6787-.017 2.231.0775 4.4174.3454 5.0874.2212.5529.7618 1.9045 2.4692 1.9043.2505 0 .5263-.0291.8296-.0941 1.7819-.3821 2.5557-1.1696 2.855-2.9059.1503-.8707.4016-2.8753.5388-4.1012.0169-.0703.0357-.1207.057-.1362.0007-.0005.0697-.0471.4272.0307a.3673.3673 0 0 0 .0443.0068l.2539.0223.0149.001c.8468.0384 1.9114-.1426 2.5312-.4308.6438-.2988 1.8057-1.0323 1.5951-1.6698zM2.371 11.8765c-.7435-2.4358-1.1779-4.8851-1.2123-5.5719-.1086-2.1714.4171-3.6829 1.5623-4.4927 1.8367-1.2986 4.8398-.5408 6.108-.13-.0032.0032-.0066.0061-.0098.0094-2.0238 2.044-1.9758 5.536-1.9708 5.7495-.0002.0823.0066.1989.0162.3593.0348.5873.0996 1.6804-.0735 2.9184-.1609 1.1504.1937 2.2764.9728 3.0892.0806.0841.1648.1631.2518.2374-.3468.3714-1.1004 1.1926-1.9025 2.1576-.5677.6825-.9597.5517-1.0886.5087-.3919-.1307-.813-.5871-1.2381-1.3223-.4796-.839-.9635-2.0317-1.4155-3.5126zm6.0072 5.0871c-.1711-.0428-.3271-.1132-.4322-.1772.0889-.0394.2374-.0902.4833-.1409 1.2833-.2641 1.4815-.4506 1.9143-1.0002.0992-.126.2116-.2687.3673-.4426a.3549.3549 0 0 0 .0737-.1298c.1708-.1513.2724-.1099.4369-.0417.156.0646.3078.26.3695.4752.0291.1016.0619.2945-.0452.4444-.9043 1.2658-2.2216 1.2494-3.1676 1.0128zm2.094-3.988-.0525.141c-.133.3566-.2567.6881-.3334 1.003-.6674-.0021-1.3168-.2872-1.8105-.8024-.6279-.6551-.9131-1.5664-.7825-2.5004.1828-1.3079.1153-2.4468.079-3.0586-.005-.0857-.0095-.1607-.0122-.2199.2957-.2621 1.6659-.9962 2.6429-.7724.4459.1022.7176.4057.8305.928.5846 2.7038.0774 3.8307-.3302 4.7363-.084.1866-.1633.3629-.2311.5454zm7.3637 4.5725c-.0169.1768-.0358.376-.0618.5959l-.146.4383a.3547.3547 0 0 0-.0182.1077c-.0059.4747-.054.6489-.115.8693-.0634.2292-.1353.4891-.1794 1.0575-.11 1.4143-.8782 2.2267-2.4172 2.5565-1.5155.3251-1.7843-.4968-2.0212-1.2217a6.5824 6.5824 0 0 0-.0769-.2266c-.2154-.5858-.1911-1.4119-.1574-2.5551.0165-.5612-.0249-1.9013-.3302-2.6462.0044-.2932.0106-.5909.019-.8918a.3529.3529 0 0 0-.0153-.1126 1.4927 1.4927 0 0 0-.0439-.208c-.1226-.4283-.4213-.7866-.7797-.9351-.1424-.059-.4038-.1672-.7178-.0869.067-.276.1831-.5875.309-.9249l.0529-.142c.0595-.16.134-.3257.213-.5012.4265-.9476 1.0106-2.2453.3766-5.1772-.2374-1.0981-1.0304-1.6343-2.2324-1.5098-.7207.0746-1.3799.3654-1.7088.5321a5.6716 5.6716 0 0 0-.1958.1041c.0918-1.1064.4386-3.1741 1.7357-4.4823a4.0306 4.0306 0 0 1 .3033-.276.3532.3532 0 0 0 .1447-.0644c.7524-.5706 1.6945-.8506 2.802-.8325.4091.0067.8017.0339 1.1742.081 1.939.3544 3.2439 1.4468 4.0359 2.3827.8143.9623 1.2552 1.9315 1.4312 2.4543-1.3232-.1346-2.2234.1268-2.6797.779-.9926 1.4189.543 4.1729 1.2811 5.4964.1353.2426.2522.4522.2889.5413.2403.5825.5515.9713.7787 1.2552.0696.087.1372.1714.1885.245-.4008.1155-1.1208.3825-1.0552 1.717-.0123.1563-.0423.4469-.0834.8148-.0461.2077-.0702.4603-.0994.7662zm.8905-1.6211c-.0405-.8316.2691-.9185.5967-1.0105a2.8566 2.8566 0 0 0 .135-.0406 1.202 1.202 0 0 0 .1342.103c.5703.3765 1.5823.4213 3.0068.1344-.2016.1769-.5189.3994-.9533.6011-.4098.1903-1.0957.333-1.7473.3636-.7197.0336-1.0859-.0807-1.1721-.151zm.5695-9.2712c-.0059.3508-.0542.6692-.1054 1.0017-.055.3576-.112.7274-.1264 1.1762-.0142.4368.0404.8909.0932 1.3301.1066.887.216 1.8003-.2075 2.7014a3.5272 3.5272 0 0 1-.1876-.3856c-.0527-.1276-.1669-.3326-.3251-.6162-.6156-1.1041-2.0574-3.6896-1.3193-4.7446.3795-.5427 1.3408-.5661 2.1781-.463zm.2284 7.0137a12.3762 12.3762 0 0 0-.0853-.1074l-.0355-.0444c.7262-1.1995.5842-2.3862.4578-3.4385-.0519-.4318-.1009-.8396-.0885-1.2226.0129-.4061.0666-.7543.1185-1.0911.0639-.415.1288-.8443.1109-1.3505.0134-.0531.0188-.1158.0118-.1902-.0457-.4855-.5999-1.938-1.7294-3.253-.6076-.7073-1.4896-1.4972-2.6889-2.0395.5251-.1066 1.2328-.2035 2.0244-.1859 2.0515.0456 3.6746.8135 4.8242 2.2824a.908.908 0 0 1 .0667.1002c.7231 1.3556-.2762 6.2751-2.9867 10.5405zm-8.8166-6.1162c-.025.1794-.3089.4225-.6211.4225a.5821.5821 0 0 1-.0809-.0056c-.1873-.026-.3765-.144-.5059-.3156-.0458-.0605-.1203-.178-.1055-.2844.0055-.0401.0261-.0985.0925-.1488.1182-.0894.3518-.1226.6096-.0867.3163.0441.6426.1938.6113.4186zm7.9305-.4114c.0111.0792-.049.201-.1531.3102-.0683.0717-.212.1961-.4079.2232a.5456.5456 0 0 1-.075.0052c-.2935 0-.5414-.2344-.5607-.3717-.024-.1765.2641-.3106.5611-.352.297-.0414.6111.0088.6356.1851z" }) + ] + } + ); +}); + +export { SiPostgresql as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.cjs new file mode 100644 index 000000000..50d39129f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPosthog = React__namespace.forwardRef(function SiPosthog2({ title = "PostHog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.854 14.5 5 9.647.854 5.5A.5.5 0 0 0 0 5.854V8.44a.5.5 0 0 0 .146.353L5 13.647l.147.146L9.854 18.5l.146.147v-.049c.065.03.134.049.207.049h2.586a.5.5 0 0 0 .353-.854L9.854 14.5zm0-5-4-4a.487.487 0 0 0-.409-.144.515.515 0 0 0-.356.21.493.493 0 0 0-.089.288V8.44a.5.5 0 0 0 .147.353l9 9a.5.5 0 0 0 .853-.354v-2.585a.5.5 0 0 0-.146-.354l-5-5zm1-4a.5.5 0 0 0-.854.354V8.44a.5.5 0 0 0 .147.353l4 4a.5.5 0 0 0 .853-.354V9.854a.5.5 0 0 0-.146-.354l-4-4zm12.647 11.515a3.863 3.863 0 0 1-2.232-1.1l-4.708-4.707a.5.5 0 0 0-.854.354v6.585a.5.5 0 0 0 .5.5H23.5a.5.5 0 0 0 .5-.5v-.6c0-.276-.225-.497-.499-.532zm-5.394.032a.8.8 0 1 1 0-1.6.8.8 0 0 1 0 1.6zM.854 15.5a.5.5 0 0 0-.854.354v2.293a.5.5 0 0 0 .5.5h2.293c.222 0 .39-.135.462-.309a.493.493 0 0 0-.109-.545L.854 15.501zM5 14.647.854 10.5a.5.5 0 0 0-.854.353v2.586a.5.5 0 0 0 .146.353L4.854 18.5l.146.147h2.793a.5.5 0 0 0 .353-.854L5 14.647z" }) + ] + } + ); +}); + +exports.default = SiPosthog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.d.ts new file mode 100644 index 000000000..34a66bcf4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPosthog: IconType; +export { SiPosthog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.mjs new file mode 100644 index 000000000..19ee0dd11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPosthog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPosthog = React.forwardRef(function SiPosthog2({ title = "PostHog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.854 14.5 5 9.647.854 5.5A.5.5 0 0 0 0 5.854V8.44a.5.5 0 0 0 .146.353L5 13.647l.147.146L9.854 18.5l.146.147v-.049c.065.03.134.049.207.049h2.586a.5.5 0 0 0 .353-.854L9.854 14.5zm0-5-4-4a.487.487 0 0 0-.409-.144.515.515 0 0 0-.356.21.493.493 0 0 0-.089.288V8.44a.5.5 0 0 0 .147.353l9 9a.5.5 0 0 0 .853-.354v-2.585a.5.5 0 0 0-.146-.354l-5-5zm1-4a.5.5 0 0 0-.854.354V8.44a.5.5 0 0 0 .147.353l4 4a.5.5 0 0 0 .853-.354V9.854a.5.5 0 0 0-.146-.354l-4-4zm12.647 11.515a3.863 3.863 0 0 1-2.232-1.1l-4.708-4.707a.5.5 0 0 0-.854.354v6.585a.5.5 0 0 0 .5.5H23.5a.5.5 0 0 0 .5-.5v-.6c0-.276-.225-.497-.499-.532zm-5.394.032a.8.8 0 1 1 0-1.6.8.8 0 0 1 0 1.6zM.854 15.5a.5.5 0 0 0-.854.354v2.293a.5.5 0 0 0 .5.5h2.293c.222 0 .39-.135.462-.309a.493.493 0 0 0-.109-.545L.854 15.501zM5 14.647.854 10.5a.5.5 0 0 0-.854.353v2.586a.5.5 0 0 0 .146.353L4.854 18.5l.146.147h2.793a.5.5 0 0 0 .353-.854L5 14.647z" }) + ] + } + ); +}); + +export { SiPosthog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.cjs new file mode 100644 index 000000000..c4939b37b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#612BD3"; +const SiPostiz = React__namespace.forwardRef(function SiPostiz2({ title = "Postiz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.902 0a15 15 0 0 0-1.123.063L8.165.886C7.21.96 6.731.996 6.38 1.21a1.72 1.72 0 0 0-.69.805c-.157.38-.12.857-.046 1.814l1.049 13.546c.074.956.111 1.435.326 1.786.188.308.469.55.803.688.38.158.859.121 1.815.047l10.613-.82c.957-.075 1.434-.112 1.785-.327.308-.188.55-.469.688-.803.158-.38.122-.859.047-1.815L21.722 2.585c-.074-.957-.11-1.435-.325-1.786a1.7 1.7 0 0 0-.804-.689c-.19-.079-.404-.109-.69-.11M4.852 3.472l-.293.067c-1.37.316-2.054.474-2.516.86a2.5 2.5 0 0 0-.822 1.317c-.146.584.013 1.27.329 2.639l2.825 12.252c.316 1.37.474 2.054.86 2.516.341.406.802.694 1.317.822.584.146 1.269-.011 2.639-.327l9.384-2.165c1.37-.316 2.054-.475 2.515-.862.305-.255.542-.577.697-.938-.46.11-1.073.157-1.982.227l-9.603.743c-1.4.109-2.101.163-2.658-.069a2.5 2.5 0 0 1-1.178-1.009c-.314-.514-.368-1.214-.477-2.615L4.92 4.393c-.026-.348-.05-.652-.067-.921m7.976.277.091 1.188q.247-.306.645-.528.395-.238.981-.282.538-.043 1.03.126.506.168.907.6.414.412.693 1.14.28.728.361 1.789a8.3 8.3 0 0 1-.024 1.532q-.069.77-.354 1.398-.287.627-.827 1.051-.526.408-1.366.472-.601.045-.962-.085a1.5 1.5 0 0 1-.554-.356l.299 3.85-2.237.745-.963-12.463zm1.077 1.573a.9.9 0 0 0-.538.25q-.255.21-.35.617l.341 4.417q.09.121.272.235a.85.85 0 0 0 .469.075.98.98 0 0 0 .675-.323q.264-.308.388-.764.14-.457.161-1 .037-.56-.006-1.098-.066-.871-.264-1.366-.182-.496-.405-.717-.225-.237-.436-.285a1 1 0 0 0-.307-.04" }) + ] + } + ); +}); + +exports.default = SiPostiz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.d.ts new file mode 100644 index 000000000..6204bf6cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#612BD3"; +declare const SiPostiz: IconType; +export { SiPostiz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.mjs new file mode 100644 index 000000000..6d66d1617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostiz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#612BD3"; +const SiPostiz = React.forwardRef(function SiPostiz2({ title = "Postiz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.902 0a15 15 0 0 0-1.123.063L8.165.886C7.21.96 6.731.996 6.38 1.21a1.72 1.72 0 0 0-.69.805c-.157.38-.12.857-.046 1.814l1.049 13.546c.074.956.111 1.435.326 1.786.188.308.469.55.803.688.38.158.859.121 1.815.047l10.613-.82c.957-.075 1.434-.112 1.785-.327.308-.188.55-.469.688-.803.158-.38.122-.859.047-1.815L21.722 2.585c-.074-.957-.11-1.435-.325-1.786a1.7 1.7 0 0 0-.804-.689c-.19-.079-.404-.109-.69-.11M4.852 3.472l-.293.067c-1.37.316-2.054.474-2.516.86a2.5 2.5 0 0 0-.822 1.317c-.146.584.013 1.27.329 2.639l2.825 12.252c.316 1.37.474 2.054.86 2.516.341.406.802.694 1.317.822.584.146 1.269-.011 2.639-.327l9.384-2.165c1.37-.316 2.054-.475 2.515-.862.305-.255.542-.577.697-.938-.46.11-1.073.157-1.982.227l-9.603.743c-1.4.109-2.101.163-2.658-.069a2.5 2.5 0 0 1-1.178-1.009c-.314-.514-.368-1.214-.477-2.615L4.92 4.393c-.026-.348-.05-.652-.067-.921m7.976.277.091 1.188q.247-.306.645-.528.395-.238.981-.282.538-.043 1.03.126.506.168.907.6.414.412.693 1.14.28.728.361 1.789a8.3 8.3 0 0 1-.024 1.532q-.069.77-.354 1.398-.287.627-.827 1.051-.526.408-1.366.472-.601.045-.962-.085a1.5 1.5 0 0 1-.554-.356l.299 3.85-2.237.745-.963-12.463zm1.077 1.573a.9.9 0 0 0-.538.25q-.255.21-.35.617l.341 4.417q.09.121.272.235a.85.85 0 0 0 .469.075.98.98 0 0 0 .675-.323q.264-.308.388-.764.14-.457.161-1 .037-.56-.006-1.098-.066-.871-.264-1.366-.182-.496-.405-.717-.225-.237-.436-.285a1 1 0 0 0-.307-.04" }) + ] + } + ); +}); + +export { SiPostiz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.cjs new file mode 100644 index 000000000..e94c7240f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6C37"; +const SiPostman = React__namespace.forwardRef(function SiPostman2({ title = "Postman", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.527.099C6.955-.744.942 3.9.099 10.473c-.843 6.572 3.8 12.584 10.373 13.428 6.573.843 12.587-3.801 13.428-10.374C24.744 6.955 20.101.943 13.527.099zm2.471 7.485a.855.855 0 0 0-.593.25l-4.453 4.453-.307-.307-.643-.643c4.389-4.376 5.18-4.418 5.996-3.753zm-4.863 4.861l4.44-4.44a.62.62 0 1 1 .847.903l-4.699 4.125-.588-.588zm.33.694l-1.1.238a.06.06 0 0 1-.067-.032.06.06 0 0 1 .01-.073l.645-.645.512.512zm-2.803-.459l1.172-1.172.879.878-1.979.426a.074.074 0 0 1-.085-.039.072.072 0 0 1 .013-.093zm-3.646 6.058a.076.076 0 0 1-.069-.083.077.077 0 0 1 .022-.046h.002l.946-.946 1.222 1.222-2.123-.147zm2.425-1.256a.228.228 0 0 0-.117.256l.203.865a.125.125 0 0 1-.211.117h-.003l-.934-.934-.294-.295 3.762-3.758 1.82-.393.874.874c-1.255 1.102-2.971 2.201-5.1 3.268zm5.279-3.428h-.002l-.839-.839 4.699-4.125a.952.952 0 0 0 .119-.127c-.148 1.345-2.029 3.245-3.977 5.091zm3.657-6.46l-.003-.002a1.822 1.822 0 0 1 2.459-2.684l-1.61 1.613a.119.119 0 0 0 0 .169l1.247 1.247a1.817 1.817 0 0 1-2.093-.343zm2.578 0a1.714 1.714 0 0 1-.271.218h-.001l-1.207-1.207 1.533-1.533c.661.72.637 1.832-.054 2.522zM18.855 6.05a.143.143 0 0 0-.053.157.416.416 0 0 1-.053.45.14.14 0 0 0 .023.197.141.141 0 0 0 .084.03.14.14 0 0 0 .106-.05.691.691 0 0 0 .087-.751.138.138 0 0 0-.194-.033z" }) + ] + } + ); +}); + +exports.default = SiPostman; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.d.ts new file mode 100644 index 000000000..a4a06cc25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6C37"; +declare const SiPostman: IconType; +export { SiPostman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.mjs new file mode 100644 index 000000000..69e04d1f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostman.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6C37"; +const SiPostman = React.forwardRef(function SiPostman2({ title = "Postman", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.527.099C6.955-.744.942 3.9.099 10.473c-.843 6.572 3.8 12.584 10.373 13.428 6.573.843 12.587-3.801 13.428-10.374C24.744 6.955 20.101.943 13.527.099zm2.471 7.485a.855.855 0 0 0-.593.25l-4.453 4.453-.307-.307-.643-.643c4.389-4.376 5.18-4.418 5.996-3.753zm-4.863 4.861l4.44-4.44a.62.62 0 1 1 .847.903l-4.699 4.125-.588-.588zm.33.694l-1.1.238a.06.06 0 0 1-.067-.032.06.06 0 0 1 .01-.073l.645-.645.512.512zm-2.803-.459l1.172-1.172.879.878-1.979.426a.074.074 0 0 1-.085-.039.072.072 0 0 1 .013-.093zm-3.646 6.058a.076.076 0 0 1-.069-.083.077.077 0 0 1 .022-.046h.002l.946-.946 1.222 1.222-2.123-.147zm2.425-1.256a.228.228 0 0 0-.117.256l.203.865a.125.125 0 0 1-.211.117h-.003l-.934-.934-.294-.295 3.762-3.758 1.82-.393.874.874c-1.255 1.102-2.971 2.201-5.1 3.268zm5.279-3.428h-.002l-.839-.839 4.699-4.125a.952.952 0 0 0 .119-.127c-.148 1.345-2.029 3.245-3.977 5.091zm3.657-6.46l-.003-.002a1.822 1.822 0 0 1 2.459-2.684l-1.61 1.613a.119.119 0 0 0 0 .169l1.247 1.247a1.817 1.817 0 0 1-2.093-.343zm2.578 0a1.714 1.714 0 0 1-.271.218h-.001l-1.207-1.207 1.533-1.533c.661.72.637 1.832-.054 2.522zM18.855 6.05a.143.143 0 0 0-.053.157.416.416 0 0 1-.053.45.14.14 0 0 0 .023.197.141.141 0 0 0 .084.03.14.14 0 0 0 .106-.05.691.691 0 0 0 .087-.751.138.138 0 0 0-.194-.033z" }) + ] + } + ); +}); + +export { SiPostman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.cjs new file mode 100644 index 000000000..2082103f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDF18"; +const SiPostmates = React__namespace.forwardRef(function SiPostmates2({ title = "Postmates", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.545 14.954l.44-1.284-1.138.692-1.08-.88.342 1.35-1.109.74 1.35.143.396 1.338.492-1.263 1.352.087zm5.308-2.61l-1.14.692-1.08-.88.342 1.349-1.108.74 1.35.144.396 1.336.493-1.261 1.352.087-1.046-.924zm-1.328 4.864l-1.139.692-1.08-.881.342 1.35-1.108.74 1.35.144.396 1.338.492-1.263 1.353.087-1.046-.924zM15.95 6.744l.72.041a.123.122 0 0 0 .092-.032l1.78-1.67a.032.032 0 0 0-.02-.056l-.7-.04a.189.189 0 0 0-.14.05l-1.754 1.646a.035.035 0 0 0 .022.06zm7.55 3.377a3.1 3.098 0 0 0-4.976-.342l-1.108-.83c.277-.113.857-.368.896-.525.022-.093-.273-.158-.727-.187l2.079-1.896a.047.047 0 0 0 .009-.053l-.529-.996a.04.04 0 0 0-.063-.01l-2.163 1.97c-.646 0-1.796.085-2.127-.123-.528-.333-.59-.822-.785-.997-.195-.176-.415-.197-.462-.346a.015.015 0 0 1 .011-.019c.102-.026.67-.186.8-.58.129-.396-.135-.932-.18-1.016a.018.018 0 0 1 0-.02l.604-.527a.018.018 0 0 0-.013-.03l-.886.108a.015.015 0 0 1-.015 0c-.047-.062-.4-.484-1.121-.189-.842.34-.687 1.068-.687 1.068.112.753.374.902.8 1.148.012 0 .017.02 0 .027-.274.228-3.035 2.494-5.585 3.378a.05.05 0 0 0 0 .093c.738.32 2.952.147 3.606-.232a.016.016 0 0 1 .025.018c-.072.273-.458 1.873.147 2.37l.034.026-.82.578a.21.21 0 0 0 .147.38l.422-.047a1.216 1.216 0 0 0 .725-.34l.148-.14 1.193.886-.158 1.261a3.1 3.098 0 1 0 2.56 1.623l.305-.195a.748.748 0 0 0 1.218-.756l1.262-.37a.205.205 0 0 0 .147-.24l-.008-.041a.207.207 0 0 0-.203-.164h-1.071a.018.018 0 0 1-.015-.01l-.322-.727.64-3.762 1.034.767a3.1 3.098 0 1 0 5.224 0zm-8.594-2.228l1.46-.025.192.361c-.338.012-.69.039-1.033.082-.247.03-.545-.287-.634-.387a.02.02 0 0 1 .015-.03zm-2.214 2.185c.122-.204.831-1.384.92-1.787a.018.018 0 0 1 .03-.007c.471.55 1.468.866 1.545.885a.009.009 0 0 0 .008 0l1.28-.394.287.213-1.34 1.229a.918.918 0 0 0-.52-.228c-.77-.098-1.975.076-2.194.11a.016.016 0 0 1-.006-.021zm3.31 4.029a.76.76 0 0 0-.249.074l-.915-.7a.015.015 0 0 1 0-.019l.458-.948a.016.016 0 0 1 .03 0l.752 1.18zm-1.942-1.025l-.626-.468 1.2-1.1zm0-1.623l-.974.894-.977-.727a11.265 11.258 0 0 0 1.97-.16zm-.778 1.553l.643.478-.077.211a.286.286 0 0 0 .172.369l1.34.488.04.03a.753.752 0 0 0-.019.473l-.295.192a3.09 3.088 0 0 0-1.919-1.217zm-.208 1.661a2.46 2.458 0 0 1 1.465.925l-1.717 1.092zm.822 4.48a2.46 2.46 0 1 1-1.235-4.53l-.309 2.456a.214.214 0 0 0 .096.203.207.207 0 0 0 .223 0l2.089-1.328a2.462 2.46 0 0 1-.866 3.198zm1.83-8.045a.01.01 0 0 1 0-.01 1.329 1.328 0 0 0-.063-.518l1.133-1.033-.49 2.875zm6.486 2.751a2.46 2.458 0 0 1-3.418-3.362l1.95 1.452a.207.207 0 0 0 .237.008.196.196 0 0 0 .054-.05.208.208 0 0 0-.043-.295l-1.953-1.45a2.385 2.384 0 0 1 .526-.443 2.46 2.46 0 1 1 2.644 4.147Z" }) + ] + } + ); +}); + +exports.default = SiPostmates; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.d.ts new file mode 100644 index 000000000..05a56ad3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDF18"; +declare const SiPostmates: IconType; +export { SiPostmates as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.mjs new file mode 100644 index 000000000..fa76d6704 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPostmates.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDF18"; +const SiPostmates = React.forwardRef(function SiPostmates2({ title = "Postmates", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.545 14.954l.44-1.284-1.138.692-1.08-.88.342 1.35-1.109.74 1.35.143.396 1.338.492-1.263 1.352.087zm5.308-2.61l-1.14.692-1.08-.88.342 1.349-1.108.74 1.35.144.396 1.336.493-1.261 1.352.087-1.046-.924zm-1.328 4.864l-1.139.692-1.08-.881.342 1.35-1.108.74 1.35.144.396 1.338.492-1.263 1.353.087-1.046-.924zM15.95 6.744l.72.041a.123.122 0 0 0 .092-.032l1.78-1.67a.032.032 0 0 0-.02-.056l-.7-.04a.189.189 0 0 0-.14.05l-1.754 1.646a.035.035 0 0 0 .022.06zm7.55 3.377a3.1 3.098 0 0 0-4.976-.342l-1.108-.83c.277-.113.857-.368.896-.525.022-.093-.273-.158-.727-.187l2.079-1.896a.047.047 0 0 0 .009-.053l-.529-.996a.04.04 0 0 0-.063-.01l-2.163 1.97c-.646 0-1.796.085-2.127-.123-.528-.333-.59-.822-.785-.997-.195-.176-.415-.197-.462-.346a.015.015 0 0 1 .011-.019c.102-.026.67-.186.8-.58.129-.396-.135-.932-.18-1.016a.018.018 0 0 1 0-.02l.604-.527a.018.018 0 0 0-.013-.03l-.886.108a.015.015 0 0 1-.015 0c-.047-.062-.4-.484-1.121-.189-.842.34-.687 1.068-.687 1.068.112.753.374.902.8 1.148.012 0 .017.02 0 .027-.274.228-3.035 2.494-5.585 3.378a.05.05 0 0 0 0 .093c.738.32 2.952.147 3.606-.232a.016.016 0 0 1 .025.018c-.072.273-.458 1.873.147 2.37l.034.026-.82.578a.21.21 0 0 0 .147.38l.422-.047a1.216 1.216 0 0 0 .725-.34l.148-.14 1.193.886-.158 1.261a3.1 3.098 0 1 0 2.56 1.623l.305-.195a.748.748 0 0 0 1.218-.756l1.262-.37a.205.205 0 0 0 .147-.24l-.008-.041a.207.207 0 0 0-.203-.164h-1.071a.018.018 0 0 1-.015-.01l-.322-.727.64-3.762 1.034.767a3.1 3.098 0 1 0 5.224 0zm-8.594-2.228l1.46-.025.192.361c-.338.012-.69.039-1.033.082-.247.03-.545-.287-.634-.387a.02.02 0 0 1 .015-.03zm-2.214 2.185c.122-.204.831-1.384.92-1.787a.018.018 0 0 1 .03-.007c.471.55 1.468.866 1.545.885a.009.009 0 0 0 .008 0l1.28-.394.287.213-1.34 1.229a.918.918 0 0 0-.52-.228c-.77-.098-1.975.076-2.194.11a.016.016 0 0 1-.006-.021zm3.31 4.029a.76.76 0 0 0-.249.074l-.915-.7a.015.015 0 0 1 0-.019l.458-.948a.016.016 0 0 1 .03 0l.752 1.18zm-1.942-1.025l-.626-.468 1.2-1.1zm0-1.623l-.974.894-.977-.727a11.265 11.258 0 0 0 1.97-.16zm-.778 1.553l.643.478-.077.211a.286.286 0 0 0 .172.369l1.34.488.04.03a.753.752 0 0 0-.019.473l-.295.192a3.09 3.088 0 0 0-1.919-1.217zm-.208 1.661a2.46 2.458 0 0 1 1.465.925l-1.717 1.092zm.822 4.48a2.46 2.46 0 1 1-1.235-4.53l-.309 2.456a.214.214 0 0 0 .096.203.207.207 0 0 0 .223 0l2.089-1.328a2.462 2.46 0 0 1-.866 3.198zm1.83-8.045a.01.01 0 0 1 0-.01 1.329 1.328 0 0 0-.063-.518l1.133-1.033-.49 2.875zm6.486 2.751a2.46 2.458 0 0 1-3.418-3.362l1.95 1.452a.207.207 0 0 0 .237.008.196.196 0 0 0 .054-.05.208.208 0 0 0-.043-.295l-1.953-1.45a2.385 2.384 0 0 1 .526-.443 2.46 2.46 0 1 1 2.644 4.147Z" }) + ] + } + ); +}); + +export { SiPostmates as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.cjs new file mode 100644 index 000000000..6f84856e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E74536"; +const SiPowers = React__namespace.forwardRef(function SiPowers2({ title = "POWERS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.31 12.347s-.008.73-.008 1.068c0 .34.339.544.777.544v.486h-2.988v-.486c.408 0 .79-.204.79-.544v-2.673c0-.545-.52-.557-.79-.595v-.466h2.55c1.042 0 2.403-.125 2.403 1.228 0 1.403-1.233 1.441-2.304 1.441zm-.017-2.212v1.559h.494c.35 0 .777-.063.777-.772 0-.749-.318-.795-.907-.795-.254 0-.364.008-.364.008zM12 4.551l12 7.45-12 7.448L0 12zm-8.645 7.45c2.764 1.713 7.373 4.575 8.645 5.364L20.644 12A7141.71 7141.71 0 0 0 12 6.636c-1.272.787-5.881 3.649-8.645 5.365Z" }) + ] + } + ); +}); + +exports.default = SiPowers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.d.ts new file mode 100644 index 000000000..0ebfcdef0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E74536"; +declare const SiPowers: IconType; +export { SiPowers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.mjs new file mode 100644 index 000000000..7a5cd8359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPowers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E74536"; +const SiPowers = React.forwardRef(function SiPowers2({ title = "POWERS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.31 12.347s-.008.73-.008 1.068c0 .34.339.544.777.544v.486h-2.988v-.486c.408 0 .79-.204.79-.544v-2.673c0-.545-.52-.557-.79-.595v-.466h2.55c1.042 0 2.403-.125 2.403 1.228 0 1.403-1.233 1.441-2.304 1.441zm-.017-2.212v1.559h.494c.35 0 .777-.063.777-.772 0-.749-.318-.795-.907-.795-.254 0-.364.008-.364.008zM12 4.551l12 7.45-12 7.448L0 12zm-8.645 7.45c2.764 1.713 7.373 4.575 8.645 5.364L20.644 12A7141.71 7141.71 0 0 0 12 6.636c-1.272.787-5.881 3.649-8.645 5.365Z" }) + ] + } + ); +}); + +export { SiPowers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.cjs new file mode 100644 index 000000000..0228c66cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0080FF"; +const SiPrdotco = React__namespace.forwardRef(function SiPrdotco2({ title = "pr.co", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9998 4.67c1.876-.0025 3.7518.7157 5.1832 2.1468 1.026 1.0238 1.6037 2.1895 1.898 3.2853l1.7906-1.7905c.7157-.7157 1.8761-.7157 2.5916 0 .7157.7155.7157 1.8758 0 2.5913l-6.2802 6.2803c-1.4314 1.4314-3.3073 2.1469-5.1832 2.1469-1.8758 0-3.7517-.7155-5.1831-2.147-.9442-.944-1.5768-2.0815-1.898-3.2848L3.128 15.6886c-.7154.716-1.8758.716-2.5915 0-.7153-.7154-.7153-1.8758 0-2.5915 2.092-2.0933 4.1908-4.1889 5.9512-5.9502 1.6938-1.8595 3.7695-2.4746 5.5121-2.477zm2.5918 4.7384c-1.4314-1.4312-3.7521-1.4312-5.1834 0-1.4313 1.4312-1.4313 3.7522 0 5.1834 1.4313 1.4312 3.7518 1.431 5.1831-.0002 1.4313-1.4312 1.4313-3.752.0003-5.1832z" }) + ] + } + ); +}); + +exports.default = SiPrdotco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.d.ts new file mode 100644 index 000000000..8abc86957 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0080FF"; +declare const SiPrdotco: IconType; +export { SiPrdotco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.mjs new file mode 100644 index 000000000..26de2b0f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrdotco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0080FF"; +const SiPrdotco = React.forwardRef(function SiPrdotco2({ title = "pr.co", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9998 4.67c1.876-.0025 3.7518.7157 5.1832 2.1468 1.026 1.0238 1.6037 2.1895 1.898 3.2853l1.7906-1.7905c.7157-.7157 1.8761-.7157 2.5916 0 .7157.7155.7157 1.8758 0 2.5913l-6.2802 6.2803c-1.4314 1.4314-3.3073 2.1469-5.1832 2.1469-1.8758 0-3.7517-.7155-5.1831-2.147-.9442-.944-1.5768-2.0815-1.898-3.2848L3.128 15.6886c-.7154.716-1.8758.716-2.5915 0-.7153-.7154-.7153-1.8758 0-2.5915 2.092-2.0933 4.1908-4.1889 5.9512-5.9502 1.6938-1.8595 3.7695-2.4746 5.5121-2.477zm2.5918 4.7384c-1.4314-1.4312-3.7521-1.4312-5.1834 0-1.4313 1.4312-1.4313 3.7522 0 5.1834 1.4313 1.4312 3.7518 1.431 5.1831-.0002 1.4313-1.4312 1.4313-3.752.0003-5.1832z" }) + ] + } + ); +}); + +export { SiPrdotco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.cjs new file mode 100644 index 000000000..e2abac025 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#673AB8"; +const SiPreact = React__namespace.forwardRef(function SiPreact2({ title = "Preact", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 12,10.406 A 1.594,1.594 0 0 0 10.406,12 1.594,1.594 0 0 0 12,13.594 1.594,1.594 0 0 0 13.594,12 1.594,1.594 0 0 0 12,10.406 Z m 5.499,-4.33 a 2.998,2.998 0 0 1 0.643,0.054 1.668,1.668 0 0 1 0.48,0.172 1.085,1.085 0 0 1 0.29,0.235 1.032,1.032 0 0 1 0.185,0.315 1.454,1.454 0 0 1 0.084,0.452 c 0.007,0.195 -0.015,0.398 -0.058,0.603 -0.054,0.261 -0.14,0.521 -0.244,0.778 -0.137,0.334 -0.304,0.66 -0.49,0.978 -0.245,0.417 -0.52,0.818 -0.817,1.207 -0.145,0.191 -0.3,0.376 -0.455,0.561 -0.22,-0.238 -0.443,-0.472 -0.673,-0.7 a 23.61,23.61 0 0 0 -2.05,-1.797 l -0.23,0.296 0.23,-0.296 -0.018,-0.014 -0.461,0.592 0.018,0.014 a 22.864,22.864 0 0 1 1.984,1.74 c 0.241,0.237 0.475,0.48 0.703,0.73 -0.099,0.108 -0.194,0.22 -0.296,0.326 -0.099,0.104 -0.2,0.207 -0.301,0.308 l 0.53,0.53 c 0.106,-0.105 0.21,-0.212 0.313,-0.32 0.085,-0.088 0.164,-0.182 0.248,-0.272 0.065,0.078 0.135,0.152 0.198,0.231 a 13.317,13.317 0 0 1 0.909,1.262 c 0.211,0.336 0.404,0.681 0.564,1.036 a 5.23,5.23 0 0 1 0.293,0.806 3.019,3.019 0 0 1 0.102,0.637 c 0.008,0.178 -0.007,0.351 -0.05,0.508 -0.034,0.123 -0.087,0.239 -0.157,0.338 h -10e-4 c -0.068,0.098 -0.157,0.186 -0.26,0.256 -0.121,0.083 -0.264,0.146 -0.418,0.191 -0.188,0.054 -0.39,0.081 -0.6,0.09 -0.266,0.01 -0.538,-0.01 -0.814,-0.05 -0.357,-0.051 -0.713,-0.134 -1.067,-0.238 -0.464,-0.137 -0.92,-0.307 -1.369,-0.5 h -0.001 c -0.584,-0.253 -1.153,-0.543 -1.71,-0.86 L 12.708,16.26 c 0.578,-0.377 1.144,-0.77 1.686,-1.194 l -0.21,-0.27 0.211,0.27 0.018,-0.015 -0.463,-0.59 -0.017,0.014 c -0.695,0.542 -1.418,1.047 -2.168,1.505 A 18.53,18.53 0 0 1 9.938,16.963 C 9.465,17.182 8.984,17.378 8.494,17.539 A 8.68,8.68 0 0 1 7.352,17.835 C 7.066,17.887 6.781,17.921 6.499,17.925 6.277,17.928 6.061,17.912 5.856,17.87 5.681,17.834 5.518,17.778 5.376,17.698 5.265,17.635 5.166,17.556 5.086,17.464 5.007,17.373 4.944,17.265 4.901,17.149 4.85,17.012 4.823,16.857 4.817,16.696 a 2.54,2.54 0 0 1 0.058,-0.603 c 0.055,-0.261 0.14,-0.52 0.245,-0.777 a 7.704,7.704 0 0 1 0.49,-0.978 12.09,12.09 0 0 1 1.271,-1.767 c 0.232,0.251 0.469,0.497 0.712,0.737 a 23.645,23.645 0 0 0 2.02,1.765 l 0.461,-0.591 A 22.9,22.9 0 0 1 8.119,12.773 C 7.865,12.523 7.618,12.267 7.378,12.004 7.477,11.896 7.573,11.785 7.673,11.679 7.776,11.572 7.879,11.466 7.983,11.362 l -0.53,-0.53 C 7.345,10.94 7.238,11.05 7.132,11.16 7.047,11.249 6.967,11.343 6.884,11.433 6.829,11.367 6.77,11.305 6.715,11.238 6.386,10.832 6.077,10.411 5.799,9.975 5.585,9.637 5.391,9.292 5.228,8.935 5.102,8.66 4.995,8.38 4.92,8.097 4.863,7.882 4.826,7.669 4.818,7.46 A 1.67,1.67 0 0 1 4.868,6.953 C 4.902,6.829 4.955,6.714 5.025,6.614 H 5.026 C 5.094,6.516 5.184,6.428 5.286,6.358 A 1.446,1.446 0 0 1 5.705,6.168 C 5.892,6.113 6.094,6.086 6.304,6.078 a 4.545,4.545 0 0 1 0.814,0.048 7.708,7.708 0 0 1 1.067,0.24 12.092,12.092 0 0 1 1.369,0.5 17.248,17.248 0 0 1 1.736,0.874 24.003,24.003 0 0 0 -1.694,1.202 l 0.462,0.59 c 0.683,-0.534 1.393,-1.031 2.13,-1.484 0.594,-0.363 1.203,-0.697 1.83,-0.99 0.474,-0.222 0.956,-0.42 1.448,-0.583 A 8.816,8.816 0 0 1 16.612,6.172 C 16.91,6.116 17.207,6.08 17.499,6.076 Z m -0.01,-0.75 -0.001,0 C 17.142,5.331 16.804,5.373 16.474,5.434 A 9.546,9.546 0 0 0 15.229,5.763 14.202,14.202 0 0 0 13.7,6.379 C 13.117,6.651 12.554,6.961 12.004,7.289 11.883,7.216 11.761,7.144 11.637,7.074 11.06,6.745 10.466,6.442 9.852,6.177 9.38,5.974 8.897,5.792 8.397,5.646 8.017,5.534 7.625,5.442 7.225,5.384 6.916,5.34 6.599,5.316 6.275,5.329 6.021,5.339 5.759,5.372 5.499,5.446 5.281,5.51 5.063,5.602 4.863,5.74 A 1.774,1.774 0 0 0 4.146,6.754 C 4.078,7.001 4.059,7.251 4.069,7.491 a 3.728,3.728 0 0 0 0.127,0.798 6.016,6.016 0 0 0 0.351,0.959 9.548,9.548 0 0 0 0.62,1.128 14.203,14.203 0 0 0 0.967,1.335 c 0.08,0.098 0.166,0.19 0.248,0.286 C 6.193,12.219 6.007,12.443 5.83,12.676 5.519,13.084 5.226,13.51 4.963,13.958 A 8.44,8.44 0 0 0 4.425,15.033 5.28,5.28 0 0 0 4.142,15.941 C 4.089,16.19 4.059,16.453 4.069,16.723 a 2.182,2.182 0 0 0 0.13,0.688 v 10e-4 a 1.775,1.775 0 0 0 0.81,0.94 2.403,2.403 0 0 0 0.697,0.253 3.699,3.699 0 0 0 0.805,0.07 5.97,5.97 0 0 0 0.977,-0.102 l 10e-4,-0.001 a 9.412,9.412 0 0 0 1.24,-0.32 c 0.523,-0.173 1.031,-0.38 1.526,-0.61 0.599,-0.278 1.178,-0.593 1.742,-0.93 0.121,0.072 0.243,0.144 0.366,0.214 a 17.99,17.99 0 0 0 1.785,0.898 12.832,12.832 0 0 0 1.455,0.53 c 0.38,0.112 0.772,0.204 1.172,0.262 a 5.284,5.284 0 0 0 0.95,0.056 c 0.254,-0.01 0.516,-0.044 0.776,-0.118 0.218,-0.063 0.436,-0.156 0.636,-0.294 a 1.775,1.775 0 0 0 0.717,-1.014 c 0.068,-0.248 0.087,-0.497 0.077,-0.736 -0.011,-0.277 -0.06,-0.544 -0.127,-0.799 -0.085,-0.322 -0.202,-0.629 -0.335,-0.923 -0.178,-0.393 -0.387,-0.767 -0.612,-1.127 -0.294,-0.466 -0.618,-0.908 -0.959,-1.333 -0.09,-0.111 -0.188,-0.216 -0.28,-0.324 0.189,-0.222 0.374,-0.447 0.552,-0.679 0.311,-0.409 0.604,-0.835 0.867,-1.283 A 8.441,8.441 0 0 0 19.575,8.967 5.277,5.277 0 0 0 19.858,8.06 C 19.911,7.81 19.941,7.547 19.931,7.277 19.924,7.051 19.886,6.817 19.801,6.589 V 6.588 a 1.775,1.775 0 0 0 -0.81,-0.94 C 18.767,5.522 18.529,5.444 18.294,5.396 A 3.7,3.7 0 0 0 17.489,5.326 Z M 12,0 22.392,6 V 18 L 12,24 1.607,18 V 6 Z" }) + ] + } + ); +}); + +exports.default = SiPreact; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.d.ts new file mode 100644 index 000000000..43f3060b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#673AB8"; +declare const SiPreact: IconType; +export { SiPreact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.mjs new file mode 100644 index 000000000..783baa23b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPreact.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#673AB8"; +const SiPreact = React.forwardRef(function SiPreact2({ title = "Preact", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 12,10.406 A 1.594,1.594 0 0 0 10.406,12 1.594,1.594 0 0 0 12,13.594 1.594,1.594 0 0 0 13.594,12 1.594,1.594 0 0 0 12,10.406 Z m 5.499,-4.33 a 2.998,2.998 0 0 1 0.643,0.054 1.668,1.668 0 0 1 0.48,0.172 1.085,1.085 0 0 1 0.29,0.235 1.032,1.032 0 0 1 0.185,0.315 1.454,1.454 0 0 1 0.084,0.452 c 0.007,0.195 -0.015,0.398 -0.058,0.603 -0.054,0.261 -0.14,0.521 -0.244,0.778 -0.137,0.334 -0.304,0.66 -0.49,0.978 -0.245,0.417 -0.52,0.818 -0.817,1.207 -0.145,0.191 -0.3,0.376 -0.455,0.561 -0.22,-0.238 -0.443,-0.472 -0.673,-0.7 a 23.61,23.61 0 0 0 -2.05,-1.797 l -0.23,0.296 0.23,-0.296 -0.018,-0.014 -0.461,0.592 0.018,0.014 a 22.864,22.864 0 0 1 1.984,1.74 c 0.241,0.237 0.475,0.48 0.703,0.73 -0.099,0.108 -0.194,0.22 -0.296,0.326 -0.099,0.104 -0.2,0.207 -0.301,0.308 l 0.53,0.53 c 0.106,-0.105 0.21,-0.212 0.313,-0.32 0.085,-0.088 0.164,-0.182 0.248,-0.272 0.065,0.078 0.135,0.152 0.198,0.231 a 13.317,13.317 0 0 1 0.909,1.262 c 0.211,0.336 0.404,0.681 0.564,1.036 a 5.23,5.23 0 0 1 0.293,0.806 3.019,3.019 0 0 1 0.102,0.637 c 0.008,0.178 -0.007,0.351 -0.05,0.508 -0.034,0.123 -0.087,0.239 -0.157,0.338 h -10e-4 c -0.068,0.098 -0.157,0.186 -0.26,0.256 -0.121,0.083 -0.264,0.146 -0.418,0.191 -0.188,0.054 -0.39,0.081 -0.6,0.09 -0.266,0.01 -0.538,-0.01 -0.814,-0.05 -0.357,-0.051 -0.713,-0.134 -1.067,-0.238 -0.464,-0.137 -0.92,-0.307 -1.369,-0.5 h -0.001 c -0.584,-0.253 -1.153,-0.543 -1.71,-0.86 L 12.708,16.26 c 0.578,-0.377 1.144,-0.77 1.686,-1.194 l -0.21,-0.27 0.211,0.27 0.018,-0.015 -0.463,-0.59 -0.017,0.014 c -0.695,0.542 -1.418,1.047 -2.168,1.505 A 18.53,18.53 0 0 1 9.938,16.963 C 9.465,17.182 8.984,17.378 8.494,17.539 A 8.68,8.68 0 0 1 7.352,17.835 C 7.066,17.887 6.781,17.921 6.499,17.925 6.277,17.928 6.061,17.912 5.856,17.87 5.681,17.834 5.518,17.778 5.376,17.698 5.265,17.635 5.166,17.556 5.086,17.464 5.007,17.373 4.944,17.265 4.901,17.149 4.85,17.012 4.823,16.857 4.817,16.696 a 2.54,2.54 0 0 1 0.058,-0.603 c 0.055,-0.261 0.14,-0.52 0.245,-0.777 a 7.704,7.704 0 0 1 0.49,-0.978 12.09,12.09 0 0 1 1.271,-1.767 c 0.232,0.251 0.469,0.497 0.712,0.737 a 23.645,23.645 0 0 0 2.02,1.765 l 0.461,-0.591 A 22.9,22.9 0 0 1 8.119,12.773 C 7.865,12.523 7.618,12.267 7.378,12.004 7.477,11.896 7.573,11.785 7.673,11.679 7.776,11.572 7.879,11.466 7.983,11.362 l -0.53,-0.53 C 7.345,10.94 7.238,11.05 7.132,11.16 7.047,11.249 6.967,11.343 6.884,11.433 6.829,11.367 6.77,11.305 6.715,11.238 6.386,10.832 6.077,10.411 5.799,9.975 5.585,9.637 5.391,9.292 5.228,8.935 5.102,8.66 4.995,8.38 4.92,8.097 4.863,7.882 4.826,7.669 4.818,7.46 A 1.67,1.67 0 0 1 4.868,6.953 C 4.902,6.829 4.955,6.714 5.025,6.614 H 5.026 C 5.094,6.516 5.184,6.428 5.286,6.358 A 1.446,1.446 0 0 1 5.705,6.168 C 5.892,6.113 6.094,6.086 6.304,6.078 a 4.545,4.545 0 0 1 0.814,0.048 7.708,7.708 0 0 1 1.067,0.24 12.092,12.092 0 0 1 1.369,0.5 17.248,17.248 0 0 1 1.736,0.874 24.003,24.003 0 0 0 -1.694,1.202 l 0.462,0.59 c 0.683,-0.534 1.393,-1.031 2.13,-1.484 0.594,-0.363 1.203,-0.697 1.83,-0.99 0.474,-0.222 0.956,-0.42 1.448,-0.583 A 8.816,8.816 0 0 1 16.612,6.172 C 16.91,6.116 17.207,6.08 17.499,6.076 Z m -0.01,-0.75 -0.001,0 C 17.142,5.331 16.804,5.373 16.474,5.434 A 9.546,9.546 0 0 0 15.229,5.763 14.202,14.202 0 0 0 13.7,6.379 C 13.117,6.651 12.554,6.961 12.004,7.289 11.883,7.216 11.761,7.144 11.637,7.074 11.06,6.745 10.466,6.442 9.852,6.177 9.38,5.974 8.897,5.792 8.397,5.646 8.017,5.534 7.625,5.442 7.225,5.384 6.916,5.34 6.599,5.316 6.275,5.329 6.021,5.339 5.759,5.372 5.499,5.446 5.281,5.51 5.063,5.602 4.863,5.74 A 1.774,1.774 0 0 0 4.146,6.754 C 4.078,7.001 4.059,7.251 4.069,7.491 a 3.728,3.728 0 0 0 0.127,0.798 6.016,6.016 0 0 0 0.351,0.959 9.548,9.548 0 0 0 0.62,1.128 14.203,14.203 0 0 0 0.967,1.335 c 0.08,0.098 0.166,0.19 0.248,0.286 C 6.193,12.219 6.007,12.443 5.83,12.676 5.519,13.084 5.226,13.51 4.963,13.958 A 8.44,8.44 0 0 0 4.425,15.033 5.28,5.28 0 0 0 4.142,15.941 C 4.089,16.19 4.059,16.453 4.069,16.723 a 2.182,2.182 0 0 0 0.13,0.688 v 10e-4 a 1.775,1.775 0 0 0 0.81,0.94 2.403,2.403 0 0 0 0.697,0.253 3.699,3.699 0 0 0 0.805,0.07 5.97,5.97 0 0 0 0.977,-0.102 l 10e-4,-0.001 a 9.412,9.412 0 0 0 1.24,-0.32 c 0.523,-0.173 1.031,-0.38 1.526,-0.61 0.599,-0.278 1.178,-0.593 1.742,-0.93 0.121,0.072 0.243,0.144 0.366,0.214 a 17.99,17.99 0 0 0 1.785,0.898 12.832,12.832 0 0 0 1.455,0.53 c 0.38,0.112 0.772,0.204 1.172,0.262 a 5.284,5.284 0 0 0 0.95,0.056 c 0.254,-0.01 0.516,-0.044 0.776,-0.118 0.218,-0.063 0.436,-0.156 0.636,-0.294 a 1.775,1.775 0 0 0 0.717,-1.014 c 0.068,-0.248 0.087,-0.497 0.077,-0.736 -0.011,-0.277 -0.06,-0.544 -0.127,-0.799 -0.085,-0.322 -0.202,-0.629 -0.335,-0.923 -0.178,-0.393 -0.387,-0.767 -0.612,-1.127 -0.294,-0.466 -0.618,-0.908 -0.959,-1.333 -0.09,-0.111 -0.188,-0.216 -0.28,-0.324 0.189,-0.222 0.374,-0.447 0.552,-0.679 0.311,-0.409 0.604,-0.835 0.867,-1.283 A 8.441,8.441 0 0 0 19.575,8.967 5.277,5.277 0 0 0 19.858,8.06 C 19.911,7.81 19.941,7.547 19.931,7.277 19.924,7.051 19.886,6.817 19.801,6.589 V 6.588 a 1.775,1.775 0 0 0 -0.81,-0.94 C 18.767,5.522 18.529,5.444 18.294,5.396 A 3.7,3.7 0 0 0 17.489,5.326 Z M 12,0 22.392,6 V 18 L 12,24 1.607,18 V 6 Z" }) + ] + } + ); +}); + +export { SiPreact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.cjs new file mode 100644 index 000000000..0060ada5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAB040"; +const SiPrecommit = React__namespace.forwardRef(function SiPrecommit2({ title = "pre-commit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-.563 0-1.127.215-1.557.645L.645 10.443c-.86.86-.86 2.254 0 3.114l9.798 9.798c.86.86 2.254.86 3.114 0l9.798-9.798c.86-.86.86-2.254 0-3.114L13.557.645A2.195 2.195 0 0012 0zm0 1.74c.493 0 .987.186 1.361.56L21.7 10.64c.75.75.75 1.973 0 2.722L13.361 21.7c-.374.375-.868.56-1.361.56s-.987-.185-1.361-.56L2.3 13.361a1.93 1.93 0 010-2.722L10.639 2.3c.374-.375.868-.56 1.361-.56zm0 .62c-.333 0-.664.127-.92.382L2.742 11.08a1.295 1.295 0 000 1.84l8.338 8.338a1.296 1.296 0 001.84 0l8.338-8.338a1.295 1.295 0 000-1.84L12.92 2.742A1.296 1.296 0 0012 2.36zM9.207 7.624h3.959c.55 0 1.015.079 1.4.238.385.16.7.371.942.633.241.262.417.561.527.897a3.34 3.34 0 010 2.084c-.11.34-.286.64-.527.902a2.628 2.628 0 01-.942.633c-.385.16-.85.238-1.4.238h-2.043v3.156H9.207zm1.916 1.484v2.657h1.514c.222 0 .434-.016.64-.05.207-.032.39-.097.547-.193.158-.095.284-.23.38-.404.094-.174.142-.401.142-.682 0-.28-.048-.507-.143-.681a1.053 1.053 0 00-.379-.404 1.513 1.513 0 00-.547-.194 4.056 4.056 0 00-.64-.049z" }) + ] + } + ); +}); + +exports.default = SiPrecommit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.d.ts new file mode 100644 index 000000000..175b21398 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAB040"; +declare const SiPrecommit: IconType; +export { SiPrecommit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.mjs new file mode 100644 index 000000000..cdc010ae5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrecommit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAB040"; +const SiPrecommit = React.forwardRef(function SiPrecommit2({ title = "pre-commit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-.563 0-1.127.215-1.557.645L.645 10.443c-.86.86-.86 2.254 0 3.114l9.798 9.798c.86.86 2.254.86 3.114 0l9.798-9.798c.86-.86.86-2.254 0-3.114L13.557.645A2.195 2.195 0 0012 0zm0 1.74c.493 0 .987.186 1.361.56L21.7 10.64c.75.75.75 1.973 0 2.722L13.361 21.7c-.374.375-.868.56-1.361.56s-.987-.185-1.361-.56L2.3 13.361a1.93 1.93 0 010-2.722L10.639 2.3c.374-.375.868-.56 1.361-.56zm0 .62c-.333 0-.664.127-.92.382L2.742 11.08a1.295 1.295 0 000 1.84l8.338 8.338a1.296 1.296 0 001.84 0l8.338-8.338a1.295 1.295 0 000-1.84L12.92 2.742A1.296 1.296 0 0012 2.36zM9.207 7.624h3.959c.55 0 1.015.079 1.4.238.385.16.7.371.942.633.241.262.417.561.527.897a3.34 3.34 0 010 2.084c-.11.34-.286.64-.527.902a2.628 2.628 0 01-.942.633c-.385.16-.85.238-1.4.238h-2.043v3.156H9.207zm1.916 1.484v2.657h1.514c.222 0 .434-.016.64-.05.207-.032.39-.097.547-.193.158-.095.284-.23.38-.404.094-.174.142-.401.142-.682 0-.28-.048-.507-.143-.681a1.053 1.053 0 00-.379-.404 1.513 1.513 0 00-.547-.194 4.056 4.056 0 00-.64-.049z" }) + ] + } + ); +}); + +export { SiPrecommit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.cjs new file mode 100644 index 000000000..c11e4395e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#070E10"; +const SiPrefect = React__namespace.forwardRef(function SiPrefect2({ title = "Prefect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 8.003 4.288 4.002 12 0l7.713 4v8.004L12 16v8l-7.71-4v-8L12 16V8.003Z" }) + ] + } + ); +}); + +exports.default = SiPrefect; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.d.ts new file mode 100644 index 000000000..11cd906a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#070E10"; +declare const SiPrefect: IconType; +export { SiPrefect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.mjs new file mode 100644 index 000000000..9e647b86b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrefect.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#070E10"; +const SiPrefect = React.forwardRef(function SiPrefect2({ title = "Prefect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 8.003 4.288 4.002 12 0l7.713 4v8.004L12 16v8l-7.71-4v-8L12 16V8.003Z" }) + ] + } + ); +}); + +export { SiPrefect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.cjs new file mode 100644 index 000000000..54c8c2aca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F54327"; +const SiPrek = React__namespace.forwardRef(function SiPrek2({ title = "prek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.3 0c-.38.003-.84 1.468-1.288 1.467-.454 0-.908-1.483-1.313-1.433-.406.05-.569 1.61-.994 1.716S8.447.507 8.08.639c-.367.131-.252 1.735-.67 1.936-.42.202-1.396-.972-1.756-.745s-.01 1.734-.352 2.042-1.502-.466-1.778-.175.352 1.612.087 1.999c-.265.386-1.42-.026-1.63.339-.211.365.543 1.383.37 1.83-.172.448-1.315.493-1.43.902-.113.409.757 1.168.755 1.56.033.532-1.002.489-.53 2.496.286.808.37 4.53 5.974 7.159-.322 2.542-1.14 2.71-1.245 3.402.022.476.54.639.639.613.185-.007 2.513-.879 4.246-3.272 4.34.367 7.727-1.231 9.595-2.931 1.754-2.028 2.402-3.652 2.684-6.408.104-.627-.644-.659-.663-1.079s.817-1.127.702-1.52c-.09-.604-1.34-.407-1.43-1.017-.069-.47.539-1.428.4-1.705-.193-.383-1.49-.143-1.628-.405-.216-.407.331-1.632.046-1.939-.285-.306-1.528.367-1.715.151-.3-.347.052-1.774-.395-2.019-.48-.263-1.445.919-1.709.75-.386-.248-.348-1.845-.727-1.984-.38-.139-1.085 1.222-1.513 1.112-.429-.11-.707-1.685-1.09-1.73zm3.332 5.868c.2.007.442.143.459.312.033.327-.08.263-1.145 2.056s-4.042 6.553-4.463 7.34c-.458.856-1.048 1.604-1.798.807s-2.352-2.691-3.028-3.533c-.675-.842-.534-.76-.553-.814-.018-.054-.106-.256.129-.532.496-.582.917-.786 1.263-1.008.346-.223.422-.283.777.068s1.14 1.466 1.491 1.82.308.15 1.411-.952c1.104-1.101 2.696-3.048 3.799-4.165s1.168-1.415 1.658-1.399" }) + ] + } + ); +}); + +exports.default = SiPrek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.d.ts new file mode 100644 index 000000000..32baad367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F54327"; +declare const SiPrek: IconType; +export { SiPrek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.mjs new file mode 100644 index 000000000..1d52e10b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F54327"; +const SiPrek = React.forwardRef(function SiPrek2({ title = "prek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.3 0c-.38.003-.84 1.468-1.288 1.467-.454 0-.908-1.483-1.313-1.433-.406.05-.569 1.61-.994 1.716S8.447.507 8.08.639c-.367.131-.252 1.735-.67 1.936-.42.202-1.396-.972-1.756-.745s-.01 1.734-.352 2.042-1.502-.466-1.778-.175.352 1.612.087 1.999c-.265.386-1.42-.026-1.63.339-.211.365.543 1.383.37 1.83-.172.448-1.315.493-1.43.902-.113.409.757 1.168.755 1.56.033.532-1.002.489-.53 2.496.286.808.37 4.53 5.974 7.159-.322 2.542-1.14 2.71-1.245 3.402.022.476.54.639.639.613.185-.007 2.513-.879 4.246-3.272 4.34.367 7.727-1.231 9.595-2.931 1.754-2.028 2.402-3.652 2.684-6.408.104-.627-.644-.659-.663-1.079s.817-1.127.702-1.52c-.09-.604-1.34-.407-1.43-1.017-.069-.47.539-1.428.4-1.705-.193-.383-1.49-.143-1.628-.405-.216-.407.331-1.632.046-1.939-.285-.306-1.528.367-1.715.151-.3-.347.052-1.774-.395-2.019-.48-.263-1.445.919-1.709.75-.386-.248-.348-1.845-.727-1.984-.38-.139-1.085 1.222-1.513 1.112-.429-.11-.707-1.685-1.09-1.73zm3.332 5.868c.2.007.442.143.459.312.033.327-.08.263-1.145 2.056s-4.042 6.553-4.463 7.34c-.458.856-1.048 1.604-1.798.807s-2.352-2.691-3.028-3.533c-.675-.842-.534-.76-.553-.814-.018-.054-.106-.256.129-.532.496-.582.917-.786 1.263-1.008.346-.223.422-.283.777.068s1.14 1.466 1.491 1.82.308.15 1.411-.952c1.104-1.101 2.696-3.048 3.799-4.165s1.168-1.415 1.658-1.399" }) + ] + } + ); +}); + +export { SiPrek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.cjs new file mode 100644 index 000000000..2c471e5d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7289DA"; +const SiPremid = React__namespace.forwardRef(function SiPremid2({ title = "PreMiD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.46 4.075c.85 0 1.54.69 1.54 1.54v12.77c0 .85-.69 1.54-1.54 1.54H1.54c-.85 0-1.54-.69-1.54-1.54V5.615c0-.85.69-1.54 1.54-1.54ZM3.442 8.485c-.4 0-.725.323-.725.724v5.673a.725.725 0 0 0 1.08.631l5.043-2.836a.725.725 0 0 0 0-1.263L3.797 8.577a.7.7 0 0 0-.355-.093m17.162 5.372h-7.698a.68.68 0 1 0 0 1.358h7.698a.68.68 0 1 0 0-1.358m0-2.446h-7.698a.68.68 0 1 0 0 1.359h7.698a.68.68 0 1 0 0-1.359m-3.17-2.445h-4.528a.68.68 0 1 0 0 1.359h4.528a.68.68 0 1 0 0-1.359" }) + ] + } + ); +}); + +exports.default = SiPremid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.d.ts new file mode 100644 index 000000000..25d230f70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7289DA"; +declare const SiPremid: IconType; +export { SiPremid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.mjs new file mode 100644 index 000000000..654a2f772 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPremid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7289DA"; +const SiPremid = React.forwardRef(function SiPremid2({ title = "PreMiD", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.46 4.075c.85 0 1.54.69 1.54 1.54v12.77c0 .85-.69 1.54-1.54 1.54H1.54c-.85 0-1.54-.69-1.54-1.54V5.615c0-.85.69-1.54 1.54-1.54ZM3.442 8.485c-.4 0-.725.323-.725.724v5.673a.725.725 0 0 0 1.08.631l5.043-2.836a.725.725 0 0 0 0-1.263L3.797 8.577a.7.7 0 0 0-.355-.093m17.162 5.372h-7.698a.68.68 0 1 0 0 1.358h7.698a.68.68 0 1 0 0-1.358m0-2.446h-7.698a.68.68 0 1 0 0 1.359h7.698a.68.68 0 1 0 0-1.359m-3.17-2.445h-4.528a.68.68 0 1 0 0 1.359h4.528a.68.68 0 1 0 0-1.359" }) + ] + } + ); +}); + +export { SiPremid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.cjs new file mode 100644 index 000000000..1e6f84cc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#360D3A"; +const SiPremierleague = React__namespace.forwardRef(function SiPremierleague2({ title = "Premier League", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.176 0s-.681 1.938-.867 2.527C9.844 2.202 8.386 1.194 7.78.775c.14.806.356 2.124.403 2.403-.124-.093-.821-.698-1.875-1.194.589.682 1.008 1.736 1.271 2.588a10.566 10.566 0 0 1 5.238-1.379c.977 0 1.94.14 2.854.403.093-.884.279-1.968.682-2.758-.915.728-1.474 1.503-1.551 1.596-.031-.186-.093-1.52-.17-2.434-.372.403-1.8 2.016-2.063 2.264C12.384 1.938 11.176 0 11.176 0zm1.674 3.86c-1.674 0-3.3.386-4.696 1.115.713.046 1.224.668 1.395 1.164-.558-.45-1.442-.667-1.985-.078-.511.589-.464 1.688.047 2.572-1.193-.605-1.194-2.185-.775-2.867A10.392 10.392 0 0 0 3.61 9.594l1.07.172c-1.24 1.426-2.107 3.953-2.107 5.146l1.75-.543c-.31 1.054-.401 4.602.653 6.385 0 0 1.38-.96 2.945-3.363.65 2.17.356 3.985 0 5.767 2.82 1.581 6.09.696 8.012-.683l.357 1.35c2.248-1.489 3.488-3.628 3.72-6.124l.837.93c1.286-3.829.28-6.883-1.565-9.502l-.078.637-.79-.87s.17-.077.31-.263c.03-.078-.046-.495-.371-.774-.31.078-.56.264-.684.45a3.222 3.222 0 0 0-.93-.543c.062.077.604.79.65 1.007.466.388 1.102.837 1.52 1.395-.34-.403-1.984-.497-2.728-.078 0 0-.744-.868-1.426-1.473-.14-.511.326-.96.326-.96s-.48-.03-.93.42c-.682-.512-1.55-.745-1.55-.745-.961.14-1.612.82-1.612.82.217.14.512.327.776.42.511.217 1.006.139 1.332.139.263 0 .636.078.636.078s.635.495 1.565 1.565c-1.426-.574-2.915.062-3.969-.45-1.24-.62-1.146-1.595-1.146-1.595s-.836-.11-.836-.141c0 0 .618-.82 1.548-1.1l-.464-.402c.558-.465 1.534-1.085 3.115-1.24 0 0 .683.262 2.11 1.285.232-.326.308-1.008.308-1.008.728.248 2.217 1.333 2.806 1.984-.325-.759-.559-1.223-.636-2.013-.357-.357-1.24-1.101-3.069-1.551.295.605.264 1.115.264 1.115-.34-.45-1.055-1.146-1.55-1.332-.295-.015-.605-.047-.93-.047zm3.271 7.068a4.323 4.323 0 0 0 1.256.697v1.348c-.465.403-1.985 1.675-3.008 1.566-.573-1.1-1.115-2.107-1.115-2.107s1.565-1.318 2.867-1.504zm2.975.031c.465 1.131.59 2.48.078 3.379-.28-.605-.636-.947-1.008-1.35v-1.347s.418-.264.93-.682zm-.977 3.395c.465.511.559 1.068.559 1.068-.202 1.131-.836 1.846-1.301 2.14.046-.821-.172-1.519-.172-1.519-.34.372-1.13.743-1.596.836l-.697-1.3c.822-.032 2.201-1.194 2.201-1.194l1.006-.031z" }) + ] + } + ); +}); + +exports.default = SiPremierleague; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.d.ts new file mode 100644 index 000000000..bd6e2fce1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#360D3A"; +declare const SiPremierleague: IconType; +export { SiPremierleague as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.mjs new file mode 100644 index 000000000..e9a306b24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPremierleague.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#360D3A"; +const SiPremierleague = React.forwardRef(function SiPremierleague2({ title = "Premier League", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.176 0s-.681 1.938-.867 2.527C9.844 2.202 8.386 1.194 7.78.775c.14.806.356 2.124.403 2.403-.124-.093-.821-.698-1.875-1.194.589.682 1.008 1.736 1.271 2.588a10.566 10.566 0 0 1 5.238-1.379c.977 0 1.94.14 2.854.403.093-.884.279-1.968.682-2.758-.915.728-1.474 1.503-1.551 1.596-.031-.186-.093-1.52-.17-2.434-.372.403-1.8 2.016-2.063 2.264C12.384 1.938 11.176 0 11.176 0zm1.674 3.86c-1.674 0-3.3.386-4.696 1.115.713.046 1.224.668 1.395 1.164-.558-.45-1.442-.667-1.985-.078-.511.589-.464 1.688.047 2.572-1.193-.605-1.194-2.185-.775-2.867A10.392 10.392 0 0 0 3.61 9.594l1.07.172c-1.24 1.426-2.107 3.953-2.107 5.146l1.75-.543c-.31 1.054-.401 4.602.653 6.385 0 0 1.38-.96 2.945-3.363.65 2.17.356 3.985 0 5.767 2.82 1.581 6.09.696 8.012-.683l.357 1.35c2.248-1.489 3.488-3.628 3.72-6.124l.837.93c1.286-3.829.28-6.883-1.565-9.502l-.078.637-.79-.87s.17-.077.31-.263c.03-.078-.046-.495-.371-.774-.31.078-.56.264-.684.45a3.222 3.222 0 0 0-.93-.543c.062.077.604.79.65 1.007.466.388 1.102.837 1.52 1.395-.34-.403-1.984-.497-2.728-.078 0 0-.744-.868-1.426-1.473-.14-.511.326-.96.326-.96s-.48-.03-.93.42c-.682-.512-1.55-.745-1.55-.745-.961.14-1.612.82-1.612.82.217.14.512.327.776.42.511.217 1.006.139 1.332.139.263 0 .636.078.636.078s.635.495 1.565 1.565c-1.426-.574-2.915.062-3.969-.45-1.24-.62-1.146-1.595-1.146-1.595s-.836-.11-.836-.141c0 0 .618-.82 1.548-1.1l-.464-.402c.558-.465 1.534-1.085 3.115-1.24 0 0 .683.262 2.11 1.285.232-.326.308-1.008.308-1.008.728.248 2.217 1.333 2.806 1.984-.325-.759-.559-1.223-.636-2.013-.357-.357-1.24-1.101-3.069-1.551.295.605.264 1.115.264 1.115-.34-.45-1.055-1.146-1.55-1.332-.295-.015-.605-.047-.93-.047zm3.271 7.068a4.323 4.323 0 0 0 1.256.697v1.348c-.465.403-1.985 1.675-3.008 1.566-.573-1.1-1.115-2.107-1.115-2.107s1.565-1.318 2.867-1.504zm2.975.031c.465 1.131.59 2.48.078 3.379-.28-.605-.636-.947-1.008-1.35v-1.347s.418-.264.93-.682zm-.977 3.395c.465.511.559 1.068.559 1.068-.202 1.131-.836 1.846-1.301 2.14.046-.821-.172-1.519-.172-1.519-.34.372-1.13.743-1.596.836l-.697-1.3c.822-.032 2.201-1.194 2.201-1.194l1.006-.031z" }) + ] + } + ); +}); + +export { SiPremierleague as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.cjs new file mode 100644 index 000000000..e2624eb20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A87C6"; +const SiPrepbytes = React__namespace.forwardRef(function SiPrepbytes2({ title = "PrepBytes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.427 0 .0997 5.3717.1016 12c0 6.6283 5.3273 12 11.8984 12s11.8984-5.3736 11.8984-12c0-6.6283-5.3273-12-11.8984-12zm1.4082 7.1602h1.127v3.914l.2675-.1855a3.5647 3.5647 0 0 1 2.252-.6992c.0095 0 .0198.002.0293.002 1.924.1048 3.3998 1.7497 3.2969 3.6737-.2155 3.5392-5.069 4.5848-6.625 1.3946-.3757-.7761-.3483-.4843-.375-4.5059l.0273-3.5937zm-4.7324.1328a3.4259 3.4259 0 0 1 2.1308.7539c1.5084 1.1765 1.7943 3.3475.6387 4.873-1.167 1.5408-3.3616 1.8448-4.9023.6778-.0801-.0534-.1895-.1068-.2696-.1602-.0267 0-.0273.8561-.0273 1.9297v1.9297H5.119v-3.1895c0-3.8614.0013-4.0768.377-4.8281A3.6055 3.6055 0 0 1 7.91 7.375c.2541-.0572.5101-.0831.7657-.082zm-.0684 1.1035c-1.0545-.0057-1.9793.6966-2.2539 1.7148-.3337 1.2357.3992 2.51 1.6367 2.8438 1.2357.3337 2.5081-.3992 2.8418-1.6367.3337-1.2357-.3972-2.5081-1.6347-2.8418a2.2104 2.2104 0 0 0-.5899-.0801zm8.42 2.8965c-1.1232-.0687-2.142.659-2.4395 1.7441-.347 1.2662.3979 2.5748 1.664 2.9219 1.2662.347 2.5749-.398 2.922-1.664.347-1.2662-.398-2.5749-1.6641-2.922a1.48 1.48 0 0 0-.4825-.08z" }) + ] + } + ); +}); + +exports.default = SiPrepbytes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.d.ts new file mode 100644 index 000000000..096f5e512 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A87C6"; +declare const SiPrepbytes: IconType; +export { SiPrepbytes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.mjs new file mode 100644 index 000000000..2df347373 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrepbytes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A87C6"; +const SiPrepbytes = React.forwardRef(function SiPrepbytes2({ title = "PrepBytes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.427 0 .0997 5.3717.1016 12c0 6.6283 5.3273 12 11.8984 12s11.8984-5.3736 11.8984-12c0-6.6283-5.3273-12-11.8984-12zm1.4082 7.1602h1.127v3.914l.2675-.1855a3.5647 3.5647 0 0 1 2.252-.6992c.0095 0 .0198.002.0293.002 1.924.1048 3.3998 1.7497 3.2969 3.6737-.2155 3.5392-5.069 4.5848-6.625 1.3946-.3757-.7761-.3483-.4843-.375-4.5059l.0273-3.5937zm-4.7324.1328a3.4259 3.4259 0 0 1 2.1308.7539c1.5084 1.1765 1.7943 3.3475.6387 4.873-1.167 1.5408-3.3616 1.8448-4.9023.6778-.0801-.0534-.1895-.1068-.2696-.1602-.0267 0-.0273.8561-.0273 1.9297v1.9297H5.119v-3.1895c0-3.8614.0013-4.0768.377-4.8281A3.6055 3.6055 0 0 1 7.91 7.375c.2541-.0572.5101-.0831.7657-.082zm-.0684 1.1035c-1.0545-.0057-1.9793.6966-2.2539 1.7148-.3337 1.2357.3992 2.51 1.6367 2.8438 1.2357.3337 2.5081-.3992 2.8418-1.6367.3337-1.2357-.3972-2.5081-1.6347-2.8418a2.2104 2.2104 0 0 0-.5899-.0801zm8.42 2.8965c-1.1232-.0687-2.142.659-2.4395 1.7441-.347 1.2662.3979 2.5748 1.664 2.9219 1.2662.347 2.5749-.398 2.922-1.664.347-1.2662-.398-2.5749-1.6641-2.922a1.48 1.48 0 0 0-.4825-.08z" }) + ] + } + ); +}); + +export { SiPrepbytes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.cjs new file mode 100644 index 000000000..869fae661 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DF0067"; +const SiPrestashop = React__namespace.forwardRef(function SiPrestashop2({ title = "PrestaShop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.558 1.034C5.174 1.034 0 6.21 0 12.592c0 1.258.201 2.47.574 3.597l.002-.007a12.415 12.415 0 01.53-1.787l.011-.03c.085-.222.179-.442.277-.66l.084-.181c.08-.171.165-.34.253-.507.036-.068.07-.136.108-.203.02-.038.044-.073.064-.11.094-.166.19-.332.29-.493l.075-.114c.125-.195.256-.386.393-.573l.035-.05c.144-.193.295-.38.451-.563l.1-.118c.155-.177.315-.35.481-.517l.099-.097a10.321 10.321 0 01.546-.503c.74-2.48 3.005-4.285 5.686-4.285 1.079 0 2.152.31 3.071.873a6.017 6.017 0 012.211 2.407l.007.015.04.074v.003l.004.002a9.925 9.925 0 011.567 1.198c.04.037.081.071.12.109.002 0 .006.005.007.006l-.002-.006-.001-.004v-.003l.042-.084c.377-2.384 1.43-4.102 2.67-4.102.934 0 1.762.975 2.276 2.476l.005.016.001.002c.145.158.287.331.424.521l.007.01.021.067-.02-.078c-1.542-4.569-5.863-7.857-10.952-7.857zM9.927 5.477C7.586 5.52 5.34 7.132 4.574 9.365l-.012.034a10.14 10.14 0 011.315-.895c2.806-1.656 6.479-1.646 9.278.016-.895-1.653-2.631-2.819-4.5-3.004a5.14 5.14 0 00-.728-.039zm9.834.5a1.36 1.36 0 00-.39.067c-1.265.562-1.719 2.073-2.031 3.303l-.016.072c.365-.62.808-1.215 1.396-1.642.835-.687 2.105-.655 2.916.053.308.326.141.008.031-.22-.342-.75-1.025-1.653-1.906-1.634zM21.67 7.98zm-9.32.335l-1.07 3.27-.002.005-.006.002-4.498 1.112h-.009l4.456 1.087c.105.11.227.205.36.28h.002c.042.024.085.045.129.065l.01.005c.041.018.083.033.126.047l.021.008c.04.013.08.023.12.032l.033.008a1.677 1.677 0 00.318.033 1.546 1.546 0 001.43-.948c.08-.186.123-.39.123-.604v-.011l-.001-.012c-.001-.054-.004-.107-.01-.16l-.001-.002a1.506 1.506 0 00-.026-.153l-.001-.004a1.511 1.511 0 00-.096-.288v-.003a1.521 1.521 0 00-.348-.49v-.003zm3.148.626c.048 1.008.036 2.046-.1 3.057-.17 2.018-1.19 3.798-1.972 5.616l-.03.08-.035.086c1.51-1.522 3.17-3.04 3.969-5.082.383-.636.118-1.342-.115-1.976-.17-.877-1.069-1.278-1.717-1.781zm6.172.572l-.588 2.688a1.764 1.764 0 00-.047.2c-.002.02-.007.04-.01.06a1.76 1.76 0 00-.016.222l-.002.031h.003c0 .628.297 1.136.663 1.137a.41.41 0 00.182-.045l.027-.015a.537.537 0 00.07-.047c.013-.01.024-.022.036-.033a.752.752 0 00.137-.168l.03-.054a1.23 1.23 0 00.052-.108l.017-.04c.02-.053.038-.108.053-.166l.002-.002.001-.003.404-.451-.407-.456v.001l-.02-.063zm-4.381.856c.69 1.716.85 3.707.091 5.43-.49 1.368-1.587 2.463-1.874 3.905.73.115 1.468.176 2.21.186 2.166.029 4.332-.42 6.284-1.365-2.04-2.869-4.121-5.755-6.711-8.156zm-4.948.977a.583.583 0 110 1.166.583.583 0 010-1.166zm9.352.37c.138 0 .249.19.249.426s-.111.426-.249.426c-.137 0-.248-.19-.248-.426 0-.235.11-.426.248-.426zm-4.044.184c-.016.112-.033.209-.05.29l-.006.023c-.01.05-.022.094-.033.128-.48 1.417-1.275 2.52-2.36 3.697-.147.16-.301.32-.459.484a58.883 58.883 0 01-1.196 1.205c-.112.11-.259.261-.425.436-.103.287-.22.61-.318.95-.044-.016-.086-.031-.131-.049-2.108-.815-3.519-1.904-3.519-1.904s1.086 1.414 2.915 2.74c.177.129.351.24.522.339-.075 1.194.452 2.34 2.83 2.682a4.81 4.81 0 001.228.008l-.01-.029a.062.062 0 00-.004-.01s-.167-.133-.379-.377a3.842 3.842 0 01-.584-.897 3.382 3.382 0 01-.266-.862 3.176 3.176 0 01-.006-.972c.017-.12.04-.241.072-.366.093-.374.255-.772.507-1.192l.002-.003.241-.404c1.103-1.86 1.797-3.275 1.506-5.441a8.943 8.943 0 00-.078-.476zm4.668.576zm.013.203l.003.036v.01c0 .013-.003.025-.003.038 0-.014.003-.028.003-.043 0-.014-.002-.026-.003-.04zm-.012.275v.001l-.002.01-.002.014.004-.025zm1.353 5.928c-2.553 1.138-5.44 1.44-8.192 1.007-.14 1.108.384 2.218 1.214 2.93l.012.01c2.703-.433 4.975-2.168 6.966-3.946z" }) + ] + } + ); +}); + +exports.default = SiPrestashop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.d.ts new file mode 100644 index 000000000..09b5de678 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DF0067"; +declare const SiPrestashop: IconType; +export { SiPrestashop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.mjs new file mode 100644 index 000000000..6a9e421eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrestashop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DF0067"; +const SiPrestashop = React.forwardRef(function SiPrestashop2({ title = "PrestaShop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.558 1.034C5.174 1.034 0 6.21 0 12.592c0 1.258.201 2.47.574 3.597l.002-.007a12.415 12.415 0 01.53-1.787l.011-.03c.085-.222.179-.442.277-.66l.084-.181c.08-.171.165-.34.253-.507.036-.068.07-.136.108-.203.02-.038.044-.073.064-.11.094-.166.19-.332.29-.493l.075-.114c.125-.195.256-.386.393-.573l.035-.05c.144-.193.295-.38.451-.563l.1-.118c.155-.177.315-.35.481-.517l.099-.097a10.321 10.321 0 01.546-.503c.74-2.48 3.005-4.285 5.686-4.285 1.079 0 2.152.31 3.071.873a6.017 6.017 0 012.211 2.407l.007.015.04.074v.003l.004.002a9.925 9.925 0 011.567 1.198c.04.037.081.071.12.109.002 0 .006.005.007.006l-.002-.006-.001-.004v-.003l.042-.084c.377-2.384 1.43-4.102 2.67-4.102.934 0 1.762.975 2.276 2.476l.005.016.001.002c.145.158.287.331.424.521l.007.01.021.067-.02-.078c-1.542-4.569-5.863-7.857-10.952-7.857zM9.927 5.477C7.586 5.52 5.34 7.132 4.574 9.365l-.012.034a10.14 10.14 0 011.315-.895c2.806-1.656 6.479-1.646 9.278.016-.895-1.653-2.631-2.819-4.5-3.004a5.14 5.14 0 00-.728-.039zm9.834.5a1.36 1.36 0 00-.39.067c-1.265.562-1.719 2.073-2.031 3.303l-.016.072c.365-.62.808-1.215 1.396-1.642.835-.687 2.105-.655 2.916.053.308.326.141.008.031-.22-.342-.75-1.025-1.653-1.906-1.634zM21.67 7.98zm-9.32.335l-1.07 3.27-.002.005-.006.002-4.498 1.112h-.009l4.456 1.087c.105.11.227.205.36.28h.002c.042.024.085.045.129.065l.01.005c.041.018.083.033.126.047l.021.008c.04.013.08.023.12.032l.033.008a1.677 1.677 0 00.318.033 1.546 1.546 0 001.43-.948c.08-.186.123-.39.123-.604v-.011l-.001-.012c-.001-.054-.004-.107-.01-.16l-.001-.002a1.506 1.506 0 00-.026-.153l-.001-.004a1.511 1.511 0 00-.096-.288v-.003a1.521 1.521 0 00-.348-.49v-.003zm3.148.626c.048 1.008.036 2.046-.1 3.057-.17 2.018-1.19 3.798-1.972 5.616l-.03.08-.035.086c1.51-1.522 3.17-3.04 3.969-5.082.383-.636.118-1.342-.115-1.976-.17-.877-1.069-1.278-1.717-1.781zm6.172.572l-.588 2.688a1.764 1.764 0 00-.047.2c-.002.02-.007.04-.01.06a1.76 1.76 0 00-.016.222l-.002.031h.003c0 .628.297 1.136.663 1.137a.41.41 0 00.182-.045l.027-.015a.537.537 0 00.07-.047c.013-.01.024-.022.036-.033a.752.752 0 00.137-.168l.03-.054a1.23 1.23 0 00.052-.108l.017-.04c.02-.053.038-.108.053-.166l.002-.002.001-.003.404-.451-.407-.456v.001l-.02-.063zm-4.381.856c.69 1.716.85 3.707.091 5.43-.49 1.368-1.587 2.463-1.874 3.905.73.115 1.468.176 2.21.186 2.166.029 4.332-.42 6.284-1.365-2.04-2.869-4.121-5.755-6.711-8.156zm-4.948.977a.583.583 0 110 1.166.583.583 0 010-1.166zm9.352.37c.138 0 .249.19.249.426s-.111.426-.249.426c-.137 0-.248-.19-.248-.426 0-.235.11-.426.248-.426zm-4.044.184c-.016.112-.033.209-.05.29l-.006.023c-.01.05-.022.094-.033.128-.48 1.417-1.275 2.52-2.36 3.697-.147.16-.301.32-.459.484a58.883 58.883 0 01-1.196 1.205c-.112.11-.259.261-.425.436-.103.287-.22.61-.318.95-.044-.016-.086-.031-.131-.049-2.108-.815-3.519-1.904-3.519-1.904s1.086 1.414 2.915 2.74c.177.129.351.24.522.339-.075 1.194.452 2.34 2.83 2.682a4.81 4.81 0 001.228.008l-.01-.029a.062.062 0 00-.004-.01s-.167-.133-.379-.377a3.842 3.842 0 01-.584-.897 3.382 3.382 0 01-.266-.862 3.176 3.176 0 01-.006-.972c.017-.12.04-.241.072-.366.093-.374.255-.772.507-1.192l.002-.003.241-.404c1.103-1.86 1.797-3.275 1.506-5.441a8.943 8.943 0 00-.078-.476zm4.668.576zm.013.203l.003.036v.01c0 .013-.003.025-.003.038 0-.014.003-.028.003-.043 0-.014-.002-.026-.003-.04zm-.012.275v.001l-.002.01-.002.014.004-.025zm1.353 5.928c-2.553 1.138-5.44 1.44-8.192 1.007-.14 1.108.384 2.218 1.214 2.93l.012.01c2.703-.433 4.975-2.168 6.966-3.946z" }) + ] + } + ); +}); + +export { SiPrestashop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.cjs new file mode 100644 index 000000000..569ab3099 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5890FF"; +const SiPresto = React__namespace.forwardRef(function SiPresto2({ title = "Presto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.3716 0C.6184 0 .0009.618.0009 1.3724v21.256C.0009 23.3825.6184 24 1.3716 24h21.256c.7545 0 1.3715-.6175 1.3715-1.3716V1.3724c0-.754-.617-1.3724-1.3715-1.3724zm11.9596 4.4849a.854.854 0 0 1 .032 0 .854.854 0 0 1 .854.854.854.854 0 0 1-.854.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .822-.854zm-4.4458.094a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.76.7595.7595 0 0 1-.76.759.7595.7595 0 0 1-.759-.759.7595.7595 0 0 1 .752-.76zm-4.4636.095a.6645.6645 0 0 1 .664.665.6645.6645 0 0 1-.664.664.6645.6645 0 0 1-.6649-.664.6645.6645 0 0 1 .665-.665zm11.1766 1.9513a.9486.9486 0 0 1 .949.949.9486.9486 0 0 1-.949.948.9486.9486 0 0 1-.949-.948.9486.9486 0 0 1 .949-.949zm-4.5026.094a.8545.8545 0 0 1 .032 0 .8545.8545 0 0 1 .8549.854.8545.8545 0 0 1-.8549.855.8545.8545 0 0 1-.8549-.855.8545.8545 0 0 1 .823-.854zm-4.4458.095a.7595.7595 0 0 1 .0071 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm11.167 1.9513a1.0436 1.0436 0 0 1 .0177 0 1.0436 1.0436 0 0 1 1.043 1.0431 1.0436 1.0436 0 0 1-1.043 1.044 1.0436 1.0436 0 0 1-1.044-1.044 1.0436 1.0436 0 0 1 1.0262-1.043zm-4.4539.095a.9486.9486 0 0 1 .949.949.9486.9486 0 0 1-.949.9481.9486.9486 0 0 1-.949-.948.9486.9486 0 0 1 .949-.949zm-4.4706.0941a.854.854 0 0 1 .8549.854.854.854 0 0 1-.855.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .854-.854zM20.069 10.906a1.1386 1.1386 0 0 1 1.139 1.139 1.1386 1.1386 0 0 1-1.139 1.138 1.1386 1.1386 0 0 1-1.139-1.138 1.1386 1.1386 0 0 1 1.139-1.139zm-4.4698.095a1.0436 1.0436 0 0 1 1.0431 1.044 1.0436 1.0436 0 0 1-1.043 1.043 1.0436 1.0436 0 0 1-1.044-1.043 1.0436 1.0436 0 0 1 1.044-1.044zm-4.4715.094a.949.949 0 0 1 .9499.949.949.949 0 0 1-.9499.949.949.949 0 0 1-.949-.949.949.949 0 0 1 .949-.949zm6.706 2.0463a1.1386 1.1386 0 0 1 1.139 1.139 1.1386 1.1386 0 0 1-1.139 1.138 1.1386 1.1386 0 0 1-1.139-1.138 1.1386 1.1386 0 0 1 1.139-1.139zm-4.4884.095a1.0436 1.0436 0 0 1 .0177 0 1.0436 1.0436 0 0 1 1.044 1.043 1.0436 1.0436 0 0 1-1.044 1.044 1.0436 1.0436 0 0 1-1.044-1.044 1.0436 1.0436 0 0 1 1.0263-1.043zm-4.46.284a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm6.6793 1.8563a1.1386 1.1386 0 0 1 .0337 0 1.1386 1.1386 0 0 1 1.139 1.138 1.1386 1.1386 0 0 1-1.139 1.139 1.1386 1.1386 0 0 1-1.139-1.139 1.1386 1.1386 0 0 1 1.1053-1.138zm-8.9146.379a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm4.4706 0a.7595.7595 0 0 1 .0071 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .7519-.759zM4.4157 17.99a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.76.7595.7595 0 0 1-.76.759.7595.7595 0 0 1-.7599-.759.7595.7595 0 0 1 .7528-.76zm4.4697.0009a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm4.4777.0009a.7591.7591 0 0 1 .538.222c.2954.2963.2954.7773 0 1.0732a.7603.7603 0 0 1-1.075 0c-.296-.2959-.296-.777 0-1.0733a.7563.7563 0 0 1 .537-.222Z" }) + ] + } + ); +}); + +exports.default = SiPresto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.d.ts new file mode 100644 index 000000000..fa6ddc024 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5890FF"; +declare const SiPresto: IconType; +export { SiPresto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.mjs new file mode 100644 index 000000000..f2098f364 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPresto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5890FF"; +const SiPresto = React.forwardRef(function SiPresto2({ title = "Presto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.3716 0C.6184 0 .0009.618.0009 1.3724v21.256C.0009 23.3825.6184 24 1.3716 24h21.256c.7545 0 1.3715-.6175 1.3715-1.3716V1.3724c0-.754-.617-1.3724-1.3715-1.3724zm11.9596 4.4849a.854.854 0 0 1 .032 0 .854.854 0 0 1 .854.854.854.854 0 0 1-.854.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .822-.854zm-4.4458.094a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.76.7595.7595 0 0 1-.76.759.7595.7595 0 0 1-.759-.759.7595.7595 0 0 1 .752-.76zm-4.4636.095a.6645.6645 0 0 1 .664.665.6645.6645 0 0 1-.664.664.6645.6645 0 0 1-.6649-.664.6645.6645 0 0 1 .665-.665zm11.1766 1.9513a.9486.9486 0 0 1 .949.949.9486.9486 0 0 1-.949.948.9486.9486 0 0 1-.949-.948.9486.9486 0 0 1 .949-.949zm-4.5026.094a.8545.8545 0 0 1 .032 0 .8545.8545 0 0 1 .8549.854.8545.8545 0 0 1-.8549.855.8545.8545 0 0 1-.8549-.855.8545.8545 0 0 1 .823-.854zm-4.4458.095a.7595.7595 0 0 1 .0071 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm11.167 1.9513a1.0436 1.0436 0 0 1 .0177 0 1.0436 1.0436 0 0 1 1.043 1.0431 1.0436 1.0436 0 0 1-1.043 1.044 1.0436 1.0436 0 0 1-1.044-1.044 1.0436 1.0436 0 0 1 1.0262-1.043zm-4.4539.095a.9486.9486 0 0 1 .949.949.9486.9486 0 0 1-.949.9481.9486.9486 0 0 1-.949-.948.9486.9486 0 0 1 .949-.949zm-4.4706.0941a.854.854 0 0 1 .8549.854.854.854 0 0 1-.855.854.854.854 0 0 1-.854-.854.854.854 0 0 1 .854-.854zM20.069 10.906a1.1386 1.1386 0 0 1 1.139 1.139 1.1386 1.1386 0 0 1-1.139 1.138 1.1386 1.1386 0 0 1-1.139-1.138 1.1386 1.1386 0 0 1 1.139-1.139zm-4.4698.095a1.0436 1.0436 0 0 1 1.0431 1.044 1.0436 1.0436 0 0 1-1.043 1.043 1.0436 1.0436 0 0 1-1.044-1.043 1.0436 1.0436 0 0 1 1.044-1.044zm-4.4715.094a.949.949 0 0 1 .9499.949.949.949 0 0 1-.9499.949.949.949 0 0 1-.949-.949.949.949 0 0 1 .949-.949zm6.706 2.0463a1.1386 1.1386 0 0 1 1.139 1.139 1.1386 1.1386 0 0 1-1.139 1.138 1.1386 1.1386 0 0 1-1.139-1.138 1.1386 1.1386 0 0 1 1.139-1.139zm-4.4884.095a1.0436 1.0436 0 0 1 .0177 0 1.0436 1.0436 0 0 1 1.044 1.043 1.0436 1.0436 0 0 1-1.044 1.044 1.0436 1.0436 0 0 1-1.044-1.044 1.0436 1.0436 0 0 1 1.0263-1.043zm-4.46.284a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm6.6793 1.8563a1.1386 1.1386 0 0 1 .0337 0 1.1386 1.1386 0 0 1 1.139 1.138 1.1386 1.1386 0 0 1-1.139 1.139 1.1386 1.1386 0 0 1-1.139-1.139 1.1386 1.1386 0 0 1 1.1053-1.138zm-8.9146.379a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm4.4706 0a.7595.7595 0 0 1 .0071 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .7519-.759zM4.4157 17.99a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.76.7595.7595 0 0 1-.76.759.7595.7595 0 0 1-.7599-.759.7595.7595 0 0 1 .7528-.76zm4.4697.0009a.7595.7595 0 0 1 .007 0 .7595.7595 0 0 1 .76.759.7595.7595 0 0 1-.76.76.7595.7595 0 0 1-.759-.76.7595.7595 0 0 1 .752-.759zm4.4777.0009a.7591.7591 0 0 1 .538.222c.2954.2963.2954.7773 0 1.0732a.7603.7603 0 0 1-1.075 0c-.296-.2959-.296-.777 0-1.0733a.7563.7563 0 0 1 .537-.222Z" }) + ] + } + ); +}); + +export { SiPresto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.cjs new file mode 100644 index 000000000..3aea816f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7B93E"; +const SiPrettier = React__namespace.forwardRef(function SiPrettier2({ title = "Prettier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.571 23.429A.571.571 0 0 1 8 24H2.286a.571.571 0 0 1 0-1.143H8c.316 0 .571.256.571.572zM8 20.57H6.857a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143zm-5.714 1.143H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zM8 18.286H2.286a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143zM16 16H5.714a.571.571 0 0 0 0 1.143H16A.571.571 0 0 0 16 16zM2.286 17.143h1.143a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm17.143-3.429H16a.571.571 0 0 0 0 1.143h3.429a.571.571 0 0 0 0-1.143zM9.143 14.857h4.571a.571.571 0 0 0 0-1.143H9.143a.571.571 0 0 0 0 1.143zm-6.857 0h4.571a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zM20.57 11.43H11.43a.571.571 0 0 0 0 1.142h9.142a.571.571 0 0 0 0-1.142zM9.714 12a.571.571 0 0 0-.571-.571H5.714a.571.571 0 0 0 0 1.142h3.429A.571.571 0 0 0 9.714 12zm-7.428.571h1.143a.571.571 0 0 0 0-1.142H2.286a.571.571 0 0 0 0 1.142zm19.428-3.428H16a.571.571 0 0 0 0 1.143h5.714a.571.571 0 0 0 0-1.143zM2.286 10.286H8a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm13.143-2.857c0 .315.255.571.571.571h5.714a.571.571 0 0 0 0-1.143H16a.571.571 0 0 0-.571.572zm-8.572-.572a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143H6.857zM2.286 8H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm16.571-2.857c0 .315.256.571.572.571h1.142a.571.571 0 0 0 0-1.143H19.43a.571.571 0 0 0-.572.572zm-1.143 0a.571.571 0 0 0-.571-.572H12.57a.571.571 0 0 0 0 1.143h4.572a.571.571 0 0 0 .571-.571zm-15.428.571h8a.571.571 0 0 0 0-1.143h-8a.571.571 0 0 0 0 1.143zm5.143-2.857c0 .316.255.572.571.572h11.429a.571.571 0 0 0 0-1.143H8a.571.571 0 0 0-.571.571zm-5.143.572h3.428a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm0-2.286H16A.571.571 0 0 0 16 0H2.286a.571.571 0 0 0 0 1.143z" }) + ] + } + ); +}); + +exports.default = SiPrettier; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.d.ts new file mode 100644 index 000000000..b554683c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7B93E"; +declare const SiPrettier: IconType; +export { SiPrettier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.mjs new file mode 100644 index 000000000..e24eec2e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrettier.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7B93E"; +const SiPrettier = React.forwardRef(function SiPrettier2({ title = "Prettier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.571 23.429A.571.571 0 0 1 8 24H2.286a.571.571 0 0 1 0-1.143H8c.316 0 .571.256.571.572zM8 20.57H6.857a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143zm-5.714 1.143H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zM8 18.286H2.286a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143zM16 16H5.714a.571.571 0 0 0 0 1.143H16A.571.571 0 0 0 16 16zM2.286 17.143h1.143a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm17.143-3.429H16a.571.571 0 0 0 0 1.143h3.429a.571.571 0 0 0 0-1.143zM9.143 14.857h4.571a.571.571 0 0 0 0-1.143H9.143a.571.571 0 0 0 0 1.143zm-6.857 0h4.571a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zM20.57 11.43H11.43a.571.571 0 0 0 0 1.142h9.142a.571.571 0 0 0 0-1.142zM9.714 12a.571.571 0 0 0-.571-.571H5.714a.571.571 0 0 0 0 1.142h3.429A.571.571 0 0 0 9.714 12zm-7.428.571h1.143a.571.571 0 0 0 0-1.142H2.286a.571.571 0 0 0 0 1.142zm19.428-3.428H16a.571.571 0 0 0 0 1.143h5.714a.571.571 0 0 0 0-1.143zM2.286 10.286H8a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm13.143-2.857c0 .315.255.571.571.571h5.714a.571.571 0 0 0 0-1.143H16a.571.571 0 0 0-.571.572zm-8.572-.572a.571.571 0 0 0 0 1.143H8a.571.571 0 0 0 0-1.143H6.857zM2.286 8H4.57a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm16.571-2.857c0 .315.256.571.572.571h1.142a.571.571 0 0 0 0-1.143H19.43a.571.571 0 0 0-.572.572zm-1.143 0a.571.571 0 0 0-.571-.572H12.57a.571.571 0 0 0 0 1.143h4.572a.571.571 0 0 0 .571-.571zm-15.428.571h8a.571.571 0 0 0 0-1.143h-8a.571.571 0 0 0 0 1.143zm5.143-2.857c0 .316.255.572.571.572h11.429a.571.571 0 0 0 0-1.143H8a.571.571 0 0 0-.571.571zm-5.143.572h3.428a.571.571 0 0 0 0-1.143H2.286a.571.571 0 0 0 0 1.143zm0-2.286H16A.571.571 0 0 0 16 0H2.286a.571.571 0 0 0 0 1.143z" }) + ] + } + ); +}); + +export { SiPrettier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.cjs new file mode 100644 index 000000000..ee7315834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BB3A4"; +const SiPretzel = React__namespace.forwardRef(function SiPretzel2({ title = "Pretzel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.439.03 10.757 6.516a.305.305 0 0 0-.142.236v5.426l2.72 1.704v-5.54a.303.303 0 0 1 .143-.235l6.24-3.48a.286.286 0 0 1 .415.237V15.186a2.807 2.807 0 0 1-1.38 2.555 2.827 2.827 0 0 1-2.909-.02l-6.24-3.951-.03-.03a5.569 5.569 0 0 0-6.245.333 5.524 5.524 0 0 0-1.977 5.917 5.462 5.462 0 0 0 2.662 3.331A5.656 5.656 0 0 0 6.676 24a5.961 5.961 0 0 0 1.597-.236 5.544 5.544 0 0 0 3.43-2.919l.09-.236-2.308-1.474-.237.56a2.792 2.792 0 0 1-1.74 1.478 2.836 2.836 0 0 1-2.189-.236 2.738 2.738 0 0 1-1.36-1.704c-.413-1.42.414-2.949 1.805-3.45.294-.105.604-.153.916-.142a2.834 2.834 0 0 1 1.449.413l6.241 3.977h.03a5.558 5.558 0 0 0 2.898.797 5.968 5.968 0 0 0 1.597-.236 5.572 5.572 0 0 0 2.896-2.049 5.544 5.544 0 0 0 1.067-3.377V.266A.29.29 0 0 0 22.576 0a.293.293 0 0 0-.137.03z" }) + ] + } + ); +}); + +exports.default = SiPretzel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.d.ts new file mode 100644 index 000000000..5535aed60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BB3A4"; +declare const SiPretzel: IconType; +export { SiPretzel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.mjs new file mode 100644 index 000000000..8794a45a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPretzel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BB3A4"; +const SiPretzel = React.forwardRef(function SiPretzel2({ title = "Pretzel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.439.03 10.757 6.516a.305.305 0 0 0-.142.236v5.426l2.72 1.704v-5.54a.303.303 0 0 1 .143-.235l6.24-3.48a.286.286 0 0 1 .415.237V15.186a2.807 2.807 0 0 1-1.38 2.555 2.827 2.827 0 0 1-2.909-.02l-6.24-3.951-.03-.03a5.569 5.569 0 0 0-6.245.333 5.524 5.524 0 0 0-1.977 5.917 5.462 5.462 0 0 0 2.662 3.331A5.656 5.656 0 0 0 6.676 24a5.961 5.961 0 0 0 1.597-.236 5.544 5.544 0 0 0 3.43-2.919l.09-.236-2.308-1.474-.237.56a2.792 2.792 0 0 1-1.74 1.478 2.836 2.836 0 0 1-2.189-.236 2.738 2.738 0 0 1-1.36-1.704c-.413-1.42.414-2.949 1.805-3.45.294-.105.604-.153.916-.142a2.834 2.834 0 0 1 1.449.413l6.241 3.977h.03a5.558 5.558 0 0 0 2.898.797 5.968 5.968 0 0 0 1.597-.236 5.572 5.572 0 0 0 2.896-2.049 5.544 5.544 0 0 0 1.067-3.377V.266A.29.29 0 0 0 22.576 0a.293.293 0 0 0-.137.03z" }) + ] + } + ); +}); + +export { SiPretzel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.cjs new file mode 100644 index 000000000..48ab9afa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#44C1C5"; +const SiPrevention = React__namespace.forwardRef(function SiPrevention2({ title = "Prevention", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.993 14.246h-.71v-1.891c0-.37-.211-.515-.508-.515-.327 0-.63.217-.63.768v1.638h-.689v-3.015h.688v.442h.015c.166-.298.478-.544.884-.544.565 0 .957.312.957.994zm-2.755-1.522c0 .986-.668 1.595-1.493 1.595-.826 0-1.479-.58-1.479-1.587 0-1.015.66-1.602 1.479-1.602.82 0 1.493.601 1.493 1.594zm-.725.008c0-.63-.304-.979-.768-.979s-.768.363-.768.971c0 .595.304.972.768.972s.768-.37.768-.965zm-2.283-2.138a.403.403 0 0 1-.413.384.396.396 0 0 1-.385-.384.403.403 0 0 1 .385-.414.402.402 0 0 1 .413.384zm-.76.68h.724v3.045h-.725zm-.146 2.85c-.181.115-.333.194-.725.194-.551 0-.855-.318-.855-1.058v-1.412h-.377v-.588h.377v-.746l.754-.327v1.073h.768v.595h-.768v1.334c0 .347.08.485.282.485a.72.72 0 0 0 .348-.094zm-2.102.122h-.71v-1.891c0-.37-.21-.515-.508-.515-.326 0-.623.217-.623.768v1.638h-.696v-3.015h.688v.442h.015c.167-.298.479-.544.883-.544.566 0 .959.312.959.994zm-4.762-1.82c.08-.47.412-.666.732-.666.42 0 .66.298.667.668zm.652-1.296c-.877 0-1.399.652-1.399 1.594 0 .972.623 1.595 1.515 1.595.58 0 .877-.08 1.138-.275l-.203-.58c-.226.137-.478.218-.884.218-.537 0-.805-.393-.826-.72h2.087c.036-1.064-.283-1.832-1.427-1.832zm-4.081.145h.811l.69 2.073.66-2.073h.739L8.879 14.32h-.804zm.218 1.682H5.16c.022.325.29.717.827.717.405 0 .659-.073.883-.217l.203.58c-.267.195-.565.275-1.138.275-.891.007-1.514-.609-1.514-1.588 0-.95.521-1.594 1.398-1.594 1.146 0 1.465.768 1.428 1.827zm-.682-.53c-.007-.37-.247-.66-.668-.66-.318 0-.65.196-.73.66zm-1.928-1.233-.153.704a.822.822 0 0 0-.26-.043c-.602 0-.617.564-.617.732v1.66H2.9V11.23h.703v.465h.015c.137-.356.362-.56.696-.56a.725.725 0 0 1 .326.058zm-1.885.11c0 1.254-.898 1.624-1.957 1.624v1.318H0V9.781a7.875 7.875 0 0 1 1.095-.101c.898 0 1.66.405 1.66 1.623zm-.804 0c0-.703-.384-.942-.884-.942-.08 0-.167.02-.26.028v1.842c.6.028 1.144-.175 1.144-.929z" }) + ] + } + ); +}); + +exports.default = SiPrevention; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.d.ts new file mode 100644 index 000000000..28bee2b22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#44C1C5"; +declare const SiPrevention: IconType; +export { SiPrevention as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.mjs new file mode 100644 index 000000000..22911daa3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrevention.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#44C1C5"; +const SiPrevention = React.forwardRef(function SiPrevention2({ title = "Prevention", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.993 14.246h-.71v-1.891c0-.37-.211-.515-.508-.515-.327 0-.63.217-.63.768v1.638h-.689v-3.015h.688v.442h.015c.166-.298.478-.544.884-.544.565 0 .957.312.957.994zm-2.755-1.522c0 .986-.668 1.595-1.493 1.595-.826 0-1.479-.58-1.479-1.587 0-1.015.66-1.602 1.479-1.602.82 0 1.493.601 1.493 1.594zm-.725.008c0-.63-.304-.979-.768-.979s-.768.363-.768.971c0 .595.304.972.768.972s.768-.37.768-.965zm-2.283-2.138a.403.403 0 0 1-.413.384.396.396 0 0 1-.385-.384.403.403 0 0 1 .385-.414.402.402 0 0 1 .413.384zm-.76.68h.724v3.045h-.725zm-.146 2.85c-.181.115-.333.194-.725.194-.551 0-.855-.318-.855-1.058v-1.412h-.377v-.588h.377v-.746l.754-.327v1.073h.768v.595h-.768v1.334c0 .347.08.485.282.485a.72.72 0 0 0 .348-.094zm-2.102.122h-.71v-1.891c0-.37-.21-.515-.508-.515-.326 0-.623.217-.623.768v1.638h-.696v-3.015h.688v.442h.015c.167-.298.479-.544.883-.544.566 0 .959.312.959.994zm-4.762-1.82c.08-.47.412-.666.732-.666.42 0 .66.298.667.668zm.652-1.296c-.877 0-1.399.652-1.399 1.594 0 .972.623 1.595 1.515 1.595.58 0 .877-.08 1.138-.275l-.203-.58c-.226.137-.478.218-.884.218-.537 0-.805-.393-.826-.72h2.087c.036-1.064-.283-1.832-1.427-1.832zm-4.081.145h.811l.69 2.073.66-2.073h.739L8.879 14.32h-.804zm.218 1.682H5.16c.022.325.29.717.827.717.405 0 .659-.073.883-.217l.203.58c-.267.195-.565.275-1.138.275-.891.007-1.514-.609-1.514-1.588 0-.95.521-1.594 1.398-1.594 1.146 0 1.465.768 1.428 1.827zm-.682-.53c-.007-.37-.247-.66-.668-.66-.318 0-.65.196-.73.66zm-1.928-1.233-.153.704a.822.822 0 0 0-.26-.043c-.602 0-.617.564-.617.732v1.66H2.9V11.23h.703v.465h.015c.137-.356.362-.56.696-.56a.725.725 0 0 1 .326.058zm-1.885.11c0 1.254-.898 1.624-1.957 1.624v1.318H0V9.781a7.875 7.875 0 0 1 1.095-.101c.898 0 1.66.405 1.66 1.623zm-.804 0c0-.703-.384-.942-.884-.942-.08 0-.167.02-.26.028v1.842c.6.028 1.144-.175 1.144-.929z" }) + ] + } + ); +}); + +export { SiPrevention as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.cjs new file mode 100644 index 000000000..1b0cbe23f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3181FF"; +const SiPrezi = React__namespace.forwardRef(function SiPrezi2({ title = "Prezi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.996 0c-.21 0-.42.005-.63.015l.134 2.547c.333-.02.66-.013.987 0L12.62.015A12.92 12.92 0 0011.996 0zm-1.89.148c-.413.067-.826.154-1.22.26l.667 2.467c.32-.086.64-.153.973-.206zm3.761 0l-.387 2.52c.334.054.66.12.974.207L15.1.408a12.652 12.652 0 00-1.233-.26zM7.699.795c-.393.154-.773.32-1.146.514l1.166 2.273c.294-.147.594-.28.894-.4zm8.608.007l-.92 2.38c.314.12.62.254.914.407l1.146-2.28c-.366-.187-.746-.36-1.14-.507zM5.46 1.935c-.353.227-.693.474-1.02.74l1.607 1.98c.26-.2.527-.4.807-.58zm13.062 0l-1.38 2.147c.28.18.547.374.8.58l1.62-1.973c-.333-.267-.68-.52-1.04-.754zm-6.528 1.56c-1.167 0-2.253.22-3.32.674a8.349 8.349 0 00-2.707 1.82 8.339 8.339 0 00-1.807 2.714c-.467 1.04-.674 2.14-.674 3.307 0 1.154.207 2.254.674 3.307a8.536 8.536 0 001.807 2.7 8.393 8.393 0 002.7 1.82 8.494 8.494 0 003.32.674 8.357 8.357 0 003.308-.673 8.748 8.748 0 002.714-1.82 8.462 8.462 0 001.806-2.7c.46-1.054.687-2.161.687-3.308a7.963 7.963 0 00-.68-3.307c-.413-1.04-1.04-1.934-1.807-2.714a8.633 8.633 0 00-2.713-1.82 8.358 8.358 0 00-3.308-.673zm8.495.027l-1.814 1.794c.234.24.46.487.674.753l1.98-1.62c-.26-.327-.547-.633-.84-.927zm-16.99.007c-.292.293-.566.6-.826.92l1.994 1.6c.2-.253.42-.493.653-.727zm8.489.667c1.066 0 2.073.193 3.033.606.947.4 1.76.96 2.474 1.68.72.72 1.28 1.548 1.68 2.474a7.7 7.7 0 01.627 3.054 7.67 7.67 0 01-.62 3.034c-.4.927-.96 1.76-1.68 2.48a7.748 7.748 0 01-2.474 1.68c-.96.4-1.967.607-3.034.607a7.848 7.848 0 01-3.033-.607c-.947-.4-1.76-.96-2.494-1.68a7.756 7.756 0 01-1.66-2.48 7.657 7.657 0 01-.607-3.034c0-1.073.193-2.08.607-3.054.386-.926.96-1.76 1.66-2.473a7.878 7.878 0 012.487-1.68 7.61 7.61 0 013.034-.607zm0 .686c-1.967 0-3.64.7-5.021 2.094-1.407 1.387-2.094 3.067-2.094 5.034 0 1.947.687 3.627 2.094 5 1.374 1.388 3.054 2.094 5.02 2.094 1.948 0 3.628-.706 5.021-2.093 1.394-1.374 2.074-3.054 2.074-5.001 0-1.967-.687-3.647-2.074-5.034-1.393-1.387-3.067-2.094-5.02-2.094zm10.074.587l-2.14 1.394c.187.273.347.56.494.853l2.273-1.167c-.187-.373-.4-.733-.627-1.08zm-20.136.007c-.226.353-.44.713-.633 1.093l2.274 1.16c.16-.306.326-.593.506-.873zm10.062.106c1.76 0 3.273.62 4.54 1.887 1.247 1.247 1.854 2.747 1.854 4.541 0 1.76-.607 3.274-1.854 4.52-1.26 1.248-2.78 1.868-4.54 1.868-1.774 0-3.294-.62-4.52-1.867-1.261-1.247-1.888-2.767-1.888-4.521 0-1.787.627-3.294 1.887-4.54 1.234-1.26 2.747-1.888 4.52-1.888zm0 .72c-1.567 0-2.927.547-4.04 1.66-1.121 1.121-1.661 2.461-1.661 4.041 0 1.567.54 2.907 1.66 4.028 1.12 1.12 2.474 1.68 4.04 1.68 1.58 0 2.908-.56 4.028-1.674 1.12-1.12 1.68-2.46 1.68-4.027 0-1.58-.56-2.927-1.68-4.04-1.12-1.12-2.44-1.667-4.027-1.667zM12 7.01c.086 0 .172.002.259.006 1.36.067 2.507.627 3.434 1.647.927 1.013 1.36 2.213 1.28 3.587-.047 1.387-.607 2.54-1.627 3.467-1.04.927-2.24 1.36-3.614 1.28-1.386-.08-2.54-.62-3.467-1.626-.913-1.04-1.34-2.234-1.28-3.628.08-1.373.62-2.527 1.66-3.447.944-.869 2.07-1.286 3.355-1.286zm11.2.68l-2.386.926c.12.3.22.614.306.934l2.467-.654c-.106-.413-.24-.813-.386-1.207zM.786 7.71c-.147.386-.28.78-.387 1.186l2.467.66c.087-.32.194-.633.307-.94zm11.222.133c-.16 0-.314.013-.467.026v8.262h.007c.14.033.3.033.46.033.16 0 .32 0 .46-.033h.006V7.869c-.153-.013-.306-.026-.466-.026zm-1.407.233a4.03 4.03 0 00-.927.467v6.907c.007.007.013.007.02.014.28.187.593.347.907.453zm2.814.007v7.841a3.978 3.978 0 00.926-.467v-6.9c-.293-.2-.6-.36-.926-.474zm-4.668 1.32a4.031 4.031 0 00-.907 2.594c0 .726.16 1.393.494 1.967.12.226.253.433.413.633zm6.521.013v5.174c.16-.193.294-.406.414-.613.32-.587.473-1.254.473-1.967 0-.987-.287-1.854-.887-2.594zm-15.129.707c-.06.414-.106.827-.126 1.247l2.547.133c.02-.333.053-.66.106-.987zm23.71 0l-2.52.4c.047.327.087.654.107.987v.007l2.547-.134v-.006c-.02-.427-.067-.84-.134-1.254zm-2.407 2.367c-.026.34-.06.674-.113 1l2.527.394c.067-.414.107-.834.133-1.26zm-18.876.013l-2.547.134c.02.42.067.827.127 1.227l2.52-.4a7.306 7.306 0 01-.1-.96zm18.563 1.947c-.087.32-.193.634-.307.94l2.387.914c.147-.393.28-.793.394-1.207zm-18.256.014l-2.467.653c.107.407.233.8.38 1.187l2.387-.9a12.78 12.78 0 01-.3-.94zm.7 1.827L1.3 17.458c.186.366.393.726.62 1.073l2.147-1.38c-.174-.274-.34-.56-.494-.86zm16.843.006a8.34 8.34 0 01-.494.854l2.14 1.393c.227-.353.44-.72.634-1.093zm-15.77 1.64l-1.98 1.614c.267.327.547.64.84.934l1.814-1.8a9.07 9.07 0 01-.673-.747zm14.683.014c-.2.26-.42.507-.654.733l1.8 1.807c.3-.3.58-.613.847-.94zm-13.276 1.4l-1.613 1.98c.327.267.667.514 1.02.74l1.4-2.133c-.28-.187-.546-.38-.807-.587zm11.882 0a8.39 8.39 0 01-.78.574l1.38 2.146c.354-.233.694-.48 1.02-.74zM7.706 20.425l-1.16 2.273c.373.187.76.36 1.153.514l.9-2.387a9.83 9.83 0 01-.893-.4zm8.588 0c-.293.146-.594.28-.9.393l.9 2.394c.4-.154.78-.327 1.16-.514zm-6.734.706l-.667 2.467c.4.107.807.194 1.22.26l.407-2.52a9.09 9.09 0 01-.96-.207zm4.887 0c-.32.087-.647.154-.973.207l.4 2.52a12.52 12.52 0 001.226-.26zm-2.94.307l-.147 2.547c.42.02.84.02 1.267 0l-.134-2.547c-.333.02-.66.02-.986 0Z" }) + ] + } + ); +}); + +exports.default = SiPrezi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.d.ts new file mode 100644 index 000000000..353c86dbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3181FF"; +declare const SiPrezi: IconType; +export { SiPrezi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.mjs new file mode 100644 index 000000000..322e20e41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrezi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3181FF"; +const SiPrezi = React.forwardRef(function SiPrezi2({ title = "Prezi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.996 0c-.21 0-.42.005-.63.015l.134 2.547c.333-.02.66-.013.987 0L12.62.015A12.92 12.92 0 0011.996 0zm-1.89.148c-.413.067-.826.154-1.22.26l.667 2.467c.32-.086.64-.153.973-.206zm3.761 0l-.387 2.52c.334.054.66.12.974.207L15.1.408a12.652 12.652 0 00-1.233-.26zM7.699.795c-.393.154-.773.32-1.146.514l1.166 2.273c.294-.147.594-.28.894-.4zm8.608.007l-.92 2.38c.314.12.62.254.914.407l1.146-2.28c-.366-.187-.746-.36-1.14-.507zM5.46 1.935c-.353.227-.693.474-1.02.74l1.607 1.98c.26-.2.527-.4.807-.58zm13.062 0l-1.38 2.147c.28.18.547.374.8.58l1.62-1.973c-.333-.267-.68-.52-1.04-.754zm-6.528 1.56c-1.167 0-2.253.22-3.32.674a8.349 8.349 0 00-2.707 1.82 8.339 8.339 0 00-1.807 2.714c-.467 1.04-.674 2.14-.674 3.307 0 1.154.207 2.254.674 3.307a8.536 8.536 0 001.807 2.7 8.393 8.393 0 002.7 1.82 8.494 8.494 0 003.32.674 8.357 8.357 0 003.308-.673 8.748 8.748 0 002.714-1.82 8.462 8.462 0 001.806-2.7c.46-1.054.687-2.161.687-3.308a7.963 7.963 0 00-.68-3.307c-.413-1.04-1.04-1.934-1.807-2.714a8.633 8.633 0 00-2.713-1.82 8.358 8.358 0 00-3.308-.673zm8.495.027l-1.814 1.794c.234.24.46.487.674.753l1.98-1.62c-.26-.327-.547-.633-.84-.927zm-16.99.007c-.292.293-.566.6-.826.92l1.994 1.6c.2-.253.42-.493.653-.727zm8.489.667c1.066 0 2.073.193 3.033.606.947.4 1.76.96 2.474 1.68.72.72 1.28 1.548 1.68 2.474a7.7 7.7 0 01.627 3.054 7.67 7.67 0 01-.62 3.034c-.4.927-.96 1.76-1.68 2.48a7.748 7.748 0 01-2.474 1.68c-.96.4-1.967.607-3.034.607a7.848 7.848 0 01-3.033-.607c-.947-.4-1.76-.96-2.494-1.68a7.756 7.756 0 01-1.66-2.48 7.657 7.657 0 01-.607-3.034c0-1.073.193-2.08.607-3.054.386-.926.96-1.76 1.66-2.473a7.878 7.878 0 012.487-1.68 7.61 7.61 0 013.034-.607zm0 .686c-1.967 0-3.64.7-5.021 2.094-1.407 1.387-2.094 3.067-2.094 5.034 0 1.947.687 3.627 2.094 5 1.374 1.388 3.054 2.094 5.02 2.094 1.948 0 3.628-.706 5.021-2.093 1.394-1.374 2.074-3.054 2.074-5.001 0-1.967-.687-3.647-2.074-5.034-1.393-1.387-3.067-2.094-5.02-2.094zm10.074.587l-2.14 1.394c.187.273.347.56.494.853l2.273-1.167c-.187-.373-.4-.733-.627-1.08zm-20.136.007c-.226.353-.44.713-.633 1.093l2.274 1.16c.16-.306.326-.593.506-.873zm10.062.106c1.76 0 3.273.62 4.54 1.887 1.247 1.247 1.854 2.747 1.854 4.541 0 1.76-.607 3.274-1.854 4.52-1.26 1.248-2.78 1.868-4.54 1.868-1.774 0-3.294-.62-4.52-1.867-1.261-1.247-1.888-2.767-1.888-4.521 0-1.787.627-3.294 1.887-4.54 1.234-1.26 2.747-1.888 4.52-1.888zm0 .72c-1.567 0-2.927.547-4.04 1.66-1.121 1.121-1.661 2.461-1.661 4.041 0 1.567.54 2.907 1.66 4.028 1.12 1.12 2.474 1.68 4.04 1.68 1.58 0 2.908-.56 4.028-1.674 1.12-1.12 1.68-2.46 1.68-4.027 0-1.58-.56-2.927-1.68-4.04-1.12-1.12-2.44-1.667-4.027-1.667zM12 7.01c.086 0 .172.002.259.006 1.36.067 2.507.627 3.434 1.647.927 1.013 1.36 2.213 1.28 3.587-.047 1.387-.607 2.54-1.627 3.467-1.04.927-2.24 1.36-3.614 1.28-1.386-.08-2.54-.62-3.467-1.626-.913-1.04-1.34-2.234-1.28-3.628.08-1.373.62-2.527 1.66-3.447.944-.869 2.07-1.286 3.355-1.286zm11.2.68l-2.386.926c.12.3.22.614.306.934l2.467-.654c-.106-.413-.24-.813-.386-1.207zM.786 7.71c-.147.386-.28.78-.387 1.186l2.467.66c.087-.32.194-.633.307-.94zm11.222.133c-.16 0-.314.013-.467.026v8.262h.007c.14.033.3.033.46.033.16 0 .32 0 .46-.033h.006V7.869c-.153-.013-.306-.026-.466-.026zm-1.407.233a4.03 4.03 0 00-.927.467v6.907c.007.007.013.007.02.014.28.187.593.347.907.453zm2.814.007v7.841a3.978 3.978 0 00.926-.467v-6.9c-.293-.2-.6-.36-.926-.474zm-4.668 1.32a4.031 4.031 0 00-.907 2.594c0 .726.16 1.393.494 1.967.12.226.253.433.413.633zm6.521.013v5.174c.16-.193.294-.406.414-.613.32-.587.473-1.254.473-1.967 0-.987-.287-1.854-.887-2.594zm-15.129.707c-.06.414-.106.827-.126 1.247l2.547.133c.02-.333.053-.66.106-.987zm23.71 0l-2.52.4c.047.327.087.654.107.987v.007l2.547-.134v-.006c-.02-.427-.067-.84-.134-1.254zm-2.407 2.367c-.026.34-.06.674-.113 1l2.527.394c.067-.414.107-.834.133-1.26zm-18.876.013l-2.547.134c.02.42.067.827.127 1.227l2.52-.4a7.306 7.306 0 01-.1-.96zm18.563 1.947c-.087.32-.193.634-.307.94l2.387.914c.147-.393.28-.793.394-1.207zm-18.256.014l-2.467.653c.107.407.233.8.38 1.187l2.387-.9a12.78 12.78 0 01-.3-.94zm.7 1.827L1.3 17.458c.186.366.393.726.62 1.073l2.147-1.38c-.174-.274-.34-.56-.494-.86zm16.843.006a8.34 8.34 0 01-.494.854l2.14 1.393c.227-.353.44-.72.634-1.093zm-15.77 1.64l-1.98 1.614c.267.327.547.64.84.934l1.814-1.8a9.07 9.07 0 01-.673-.747zm14.683.014c-.2.26-.42.507-.654.733l1.8 1.807c.3-.3.58-.613.847-.94zm-13.276 1.4l-1.613 1.98c.327.267.667.514 1.02.74l1.4-2.133c-.28-.187-.546-.38-.807-.587zm11.882 0a8.39 8.39 0 01-.78.574l1.38 2.146c.354-.233.694-.48 1.02-.74zM7.706 20.425l-1.16 2.273c.373.187.76.36 1.153.514l.9-2.387a9.83 9.83 0 01-.893-.4zm8.588 0c-.293.146-.594.28-.9.393l.9 2.394c.4-.154.78-.327 1.16-.514zm-6.734.706l-.667 2.467c.4.107.807.194 1.22.26l.407-2.52a9.09 9.09 0 01-.96-.207zm4.887 0c-.32.087-.647.154-.973.207l.4 2.52a12.52 12.52 0 001.226-.26zm-2.94.307l-.147 2.547c.42.02.84.02 1.267 0l-.134-2.547c-.333.02-.66.02-.986 0Z" }) + ] + } + ); +}); + +export { SiPrezi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.cjs new file mode 100644 index 000000000..814feb2a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#263238"; +const SiPrimefaces = React__namespace.forwardRef(function SiPrimefaces2({ title = "PrimeFaces", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.43 0 3.875 2.564l3.833.367L8.988 0Zm3.104 0L8.081 3.465 1.5 2.931l1.094 4.58 7.853 2.931h1.095V0Zm2.74 0v10.442h1.278l7.853-2.93 1.095-4.58-6.756.547L14.283 0Zm2.556 0 1.28 2.931 3.834-.367L17.387 0ZM2.778 8.244v6.229l4.383 3.663v-5.68l1.278-1.83-1.643.366-2.009-2.016zm18.261 0-2.009.732-2.009 2.016-1.643-.367 1.278 1.832v5.68l4.383-3.664zM9.17 10.625l-1.462 2.199v8.243l1.097 1.65L10.083 24h3.652l1.278-1.284 1.096-1.649v-8.243l-1.46-2.199-.914.55h-3.652zm-4.383 6.23v2.38l2.374 2.382V18.87zm14.243 0-2.374 2.015v2.747l2.374-2.381z" }) + ] + } + ); +}); + +exports.default = SiPrimefaces; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.d.ts new file mode 100644 index 000000000..570777f6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#263238"; +declare const SiPrimefaces: IconType; +export { SiPrimefaces as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.mjs new file mode 100644 index 000000000..96898ab05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimefaces.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#263238"; +const SiPrimefaces = React.forwardRef(function SiPrimefaces2({ title = "PrimeFaces", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.43 0 3.875 2.564l3.833.367L8.988 0Zm3.104 0L8.081 3.465 1.5 2.931l1.094 4.58 7.853 2.931h1.095V0Zm2.74 0v10.442h1.278l7.853-2.93 1.095-4.58-6.756.547L14.283 0Zm2.556 0 1.28 2.931 3.834-.367L17.387 0ZM2.778 8.244v6.229l4.383 3.663v-5.68l1.278-1.83-1.643.366-2.009-2.016zm18.261 0-2.009.732-2.009 2.016-1.643-.367 1.278 1.832v5.68l4.383-3.664zM9.17 10.625l-1.462 2.199v8.243l1.097 1.65L10.083 24h3.652l1.278-1.284 1.096-1.649v-8.243l-1.46-2.199-.914.55h-3.652zm-4.383 6.23v2.38l2.374 2.382V18.87zm14.243 0-2.374 2.015v2.747l2.374-2.381z" }) + ] + } + ); +}); + +export { SiPrimefaces as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.cjs new file mode 100644 index 000000000..dfc0778f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD0031"; +const SiPrimeng = React__namespace.forwardRef(function SiPrimeng2({ title = "PrimeNG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0 .784 3.984l1.711 14.772L12 24l9.506-5.244 1.71-14.772ZM8.354 4.212h1.674L9.19 6.124l-2.51-.24Zm2.032 0h1.315v6.812h-.717L5.843 9.112l-.717-2.988 4.308.35Zm1.794 0h1.314l.953 2.261 4.427-.349-.717 2.988-5.14 1.912h-.837Zm1.673 0h1.674L17.2 5.885l-2.51.239zM5.963 9.59l1.315.478 1.315 1.315 1.076-.24-.837 1.196v3.704l-2.87-2.39zm11.955 0v4.063l-2.87 2.39v-3.704l-.837-1.195 1.077.239 1.314-1.315zm-7.786 1.536.596.36h2.384l.597-.36.953 1.437v5.388l-.715 1.078-.835.838h-2.384l-.834-.838-.715-1.078v-5.388zm-2.854 4.08 1.554 1.315v1.793L7.278 16.76Zm9.324 0v1.554l-1.553 1.554V16.52z" }) + ] + } + ); +}); + +exports.default = SiPrimeng; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.d.ts new file mode 100644 index 000000000..2eb4e752d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD0031"; +declare const SiPrimeng: IconType; +export { SiPrimeng as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.mjs new file mode 100644 index 000000000..3ae0d94d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimeng.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD0031"; +const SiPrimeng = React.forwardRef(function SiPrimeng2({ title = "PrimeNG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0 .784 3.984l1.711 14.772L12 24l9.506-5.244 1.71-14.772ZM8.354 4.212h1.674L9.19 6.124l-2.51-.24Zm2.032 0h1.315v6.812h-.717L5.843 9.112l-.717-2.988 4.308.35Zm1.794 0h1.314l.953 2.261 4.427-.349-.717 2.988-5.14 1.912h-.837Zm1.673 0h1.674L17.2 5.885l-2.51.239zM5.963 9.59l1.315.478 1.315 1.315 1.076-.24-.837 1.196v3.704l-2.87-2.39zm11.955 0v4.063l-2.87 2.39v-3.704l-.837-1.195 1.077.239 1.314-1.315zm-7.786 1.536.596.36h2.384l.597-.36.953 1.437v5.388l-.715 1.078-.835.838h-2.384l-.834-.838-.715-1.078v-5.388zm-2.854 4.08 1.554 1.315v1.793L7.278 16.76Zm9.324 0v1.554l-1.553 1.554V16.52z" }) + ] + } + ); +}); + +export { SiPrimeng as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.cjs new file mode 100644 index 000000000..8871f6ede --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03C4E8"; +const SiPrimereact = React__namespace.forwardRef(function SiPrimereact2({ title = "PrimeReact", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.01 0c-1.212 0-2.297.62-2.903 1.66l-1.52 2.608H4.303A3.287 3.287 0 0 0 1.43 5.911a3.226 3.226 0 0 0 0 3.285l1.642 2.819-1.646 2.825a3.202 3.202 0 0 0 0 3.261 3.265 3.265 0 0 0 2.851 1.631h2.925l.865.856L9.09 22.34A3.322 3.322 0 0 0 11.991 24c1.211 0 2.296-.62 2.902-1.66l.816-1.4 1.22-1.208h2.77a3.287 3.287 0 0 0 2.87-1.643c.6-1.028.6-2.256 0-3.285l-1.642-2.82 1.646-2.824a3.202 3.202 0 0 0 0-3.261 3.265 3.265 0 0 0-2.851-1.631H16.43L14.91 1.66A3.322 3.322 0 0 0 12.01 0Zm0 .719c.948 0 1.798.486 2.273 1.3l1.31 2.249H8.425l1.31-2.248A2.603 2.603 0 0 1 12.01.719Zm.33 4.265v7.74h.962l5.904-2.174.014-.057.87 1.492-1.33 2.282.171-3.173-1.51.543-1.51 1.494-1.237-.27.962 1.357v4.212l1.452-1.296-.708 1.216v.001l-.744.622v.654l-.412.708V14.49l-1.098-1.63-.687.407h-2.746l-.687-.407-1.098 1.63v6.101l-.412-.706v-.912l-1.036-.867-.729-1.25 1.765 1.574v-4.212l.961-1.358-1.236.271-1.51-1.494-1.511-.543.188 3.455-1.477-2.534.942-1.617.122-.208.088.36 5.904 2.174h.824V4.985Zm1.512 0h.412l.96 2.17 1.935-.2.237.406-2.452.192zm-3.985.001h.412L9.187 7.552l-2.556-.205.072-.124.001.001.163-.28 2.04.21Zm-5.565.001h2.867L5.831 7.282l-1.592-.127.49 2.018-1.237 2.124-1.433-2.46a2.52 2.52 0 0 1 0-2.567 2.568 2.568 0 0 1 2.243-1.284Zm12.547 0h2.873c.928 0 1.759.476 2.223 1.272a2.497 2.497 0 0 1 0 2.543l-1.437 2.466-1.042-1.789.563-2.323-1.833.143Zm3.659 7.718 1.433 2.46a2.52 2.52 0 0 1 0 2.566 2.567 2.567 0 0 1-2.243 1.283h-2.277V18zm-17.016.03 3.22 5.525v.754H4.277a2.545 2.545 0 0 1-2.223-1.27 2.497 2.497 0 0 1 0-2.544z" }) + ] + } + ); +}); + +exports.default = SiPrimereact; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.d.ts new file mode 100644 index 000000000..8ffe2a5bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03C4E8"; +declare const SiPrimereact: IconType; +export { SiPrimereact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.mjs new file mode 100644 index 000000000..9f441e957 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimereact.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03C4E8"; +const SiPrimereact = React.forwardRef(function SiPrimereact2({ title = "PrimeReact", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.01 0c-1.212 0-2.297.62-2.903 1.66l-1.52 2.608H4.303A3.287 3.287 0 0 0 1.43 5.911a3.226 3.226 0 0 0 0 3.285l1.642 2.819-1.646 2.825a3.202 3.202 0 0 0 0 3.261 3.265 3.265 0 0 0 2.851 1.631h2.925l.865.856L9.09 22.34A3.322 3.322 0 0 0 11.991 24c1.211 0 2.296-.62 2.902-1.66l.816-1.4 1.22-1.208h2.77a3.287 3.287 0 0 0 2.87-1.643c.6-1.028.6-2.256 0-3.285l-1.642-2.82 1.646-2.824a3.202 3.202 0 0 0 0-3.261 3.265 3.265 0 0 0-2.851-1.631H16.43L14.91 1.66A3.322 3.322 0 0 0 12.01 0Zm0 .719c.948 0 1.798.486 2.273 1.3l1.31 2.249H8.425l1.31-2.248A2.603 2.603 0 0 1 12.01.719Zm.33 4.265v7.74h.962l5.904-2.174.014-.057.87 1.492-1.33 2.282.171-3.173-1.51.543-1.51 1.494-1.237-.27.962 1.357v4.212l1.452-1.296-.708 1.216v.001l-.744.622v.654l-.412.708V14.49l-1.098-1.63-.687.407h-2.746l-.687-.407-1.098 1.63v6.101l-.412-.706v-.912l-1.036-.867-.729-1.25 1.765 1.574v-4.212l.961-1.358-1.236.271-1.51-1.494-1.511-.543.188 3.455-1.477-2.534.942-1.617.122-.208.088.36 5.904 2.174h.824V4.985Zm1.512 0h.412l.96 2.17 1.935-.2.237.406-2.452.192zm-3.985.001h.412L9.187 7.552l-2.556-.205.072-.124.001.001.163-.28 2.04.21Zm-5.565.001h2.867L5.831 7.282l-1.592-.127.49 2.018-1.237 2.124-1.433-2.46a2.52 2.52 0 0 1 0-2.567 2.568 2.568 0 0 1 2.243-1.284Zm12.547 0h2.873c.928 0 1.759.476 2.223 1.272a2.497 2.497 0 0 1 0 2.543l-1.437 2.466-1.042-1.789.563-2.323-1.833.143Zm3.659 7.718 1.433 2.46a2.52 2.52 0 0 1 0 2.566 2.567 2.567 0 0 1-2.243 1.283h-2.277V18zm-17.016.03 3.22 5.525v.754H4.277a2.545 2.545 0 0 1-2.223-1.27 2.497 2.497 0 0 1 0-2.544z" }) + ] + } + ); +}); + +export { SiPrimereact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.cjs new file mode 100644 index 000000000..93ff60349 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41B883"; +const SiPrimevue = React__namespace.forwardRef(function SiPrimevue2({ title = "PrimeVue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.4101 0-2.565 2.565 3.8487.3664L8.8776.226l2.6637 6.8825v.0012l.3498.903.3843-.9291v-.0013L14.75 1.0898v-.0012l.2748-.6663 1.0993 2.5091 3.8487-.3664L17.4066 0H8.9763Zm2.3913 1.7191L8.071 3.455l-2.8863-.2213-3.7226-.3022 1.0993 4.5804L7.8437 9.476l.0143.0262 2.5579.9446h.2439l-.0012-.0048h.8827V8.7967Zm6.2817.1606L12.2754 8.679v1.7632h1.0053l-.0012.0048.2439-.0048h.0345l.0024-.0012h.0238l2.3758-.878.0107-.0179 5.468-2.0332 1.0993-4.5803-4.0415.3188-2.7494.2058zM2.7446 8.2447v6.2281l4.3984 3.6643v-5.6797l1.2837-1.8321-1.6501.3664-2.0154-2.0142Zm18.3275 0-2.0166.7328-2.0153 2.0142-1.6501-.3664 1.2837 1.8321v5.6797l4.3983-3.6643zM9.137 10.599l-.3045.4866.0095.0167-1.148 1.7215v8.2447l1.0992 1.6489L10.0756 24h3.6655l1.2825-1.2825 1.1005-1.649V12.824l-1.1492-1.7227.0095-.0155-.1797-.2391-.1475-.2213-.0131.0071-.025-.0333-.7911.4866h-3.6548zm-4.3757 6.2555v2.3818l2.3818 2.3818V18.87zm14.2943 0L16.6739 18.87v2.7482l2.3818-2.3818z" }) + ] + } + ); +}); + +exports.default = SiPrimevue; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.d.ts new file mode 100644 index 000000000..e2fc44b02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41B883"; +declare const SiPrimevue: IconType; +export { SiPrimevue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.mjs new file mode 100644 index 000000000..e5aac3145 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrimevue.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41B883"; +const SiPrimevue = React.forwardRef(function SiPrimevue2({ title = "PrimeVue", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.4101 0-2.565 2.565 3.8487.3664L8.8776.226l2.6637 6.8825v.0012l.3498.903.3843-.9291v-.0013L14.75 1.0898v-.0012l.2748-.6663 1.0993 2.5091 3.8487-.3664L17.4066 0H8.9763Zm2.3913 1.7191L8.071 3.455l-2.8863-.2213-3.7226-.3022 1.0993 4.5804L7.8437 9.476l.0143.0262 2.5579.9446h.2439l-.0012-.0048h.8827V8.7967Zm6.2817.1606L12.2754 8.679v1.7632h1.0053l-.0012.0048.2439-.0048h.0345l.0024-.0012h.0238l2.3758-.878.0107-.0179 5.468-2.0332 1.0993-4.5803-4.0415.3188-2.7494.2058zM2.7446 8.2447v6.2281l4.3984 3.6643v-5.6797l1.2837-1.8321-1.6501.3664-2.0154-2.0142Zm18.3275 0-2.0166.7328-2.0153 2.0142-1.6501-.3664 1.2837 1.8321v5.6797l4.3983-3.6643zM9.137 10.599l-.3045.4866.0095.0167-1.148 1.7215v8.2447l1.0992 1.6489L10.0756 24h3.6655l1.2825-1.2825 1.1005-1.649V12.824l-1.1492-1.7227.0095-.0155-.1797-.2391-.1475-.2213-.0131.0071-.025-.0333-.7911.4866h-3.6548zm-4.3757 6.2555v2.3818l2.3818 2.3818V18.87zm14.2943 0L16.6739 18.87v2.7482l2.3818-2.3818z" }) + ] + } + ); +}); + +export { SiPrimevue as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.cjs new file mode 100644 index 000000000..5126378cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA6831"; +const SiPrintables = React__namespace.forwardRef(function SiPrintables2({ title = "Printables", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.678 4.8 12 9.6v9.6l8.322-4.8V4.8L12 0ZM12 19.2l-8.322-4.8V24Z" }) + ] + } + ); +}); + +exports.default = SiPrintables; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.d.ts new file mode 100644 index 000000000..1e063f7ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA6831"; +declare const SiPrintables: IconType; +export { SiPrintables as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.mjs new file mode 100644 index 000000000..bc8bf2edf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrintables.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA6831"; +const SiPrintables = React.forwardRef(function SiPrintables2({ title = "Printables", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.678 4.8 12 9.6v9.6l8.322-4.8V4.8L12 0ZM12 19.2l-8.322-4.8V24Z" }) + ] + } + ); +}); + +export { SiPrintables as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.cjs new file mode 100644 index 000000000..3ed657300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D3748"; +const SiPrisma = React__namespace.forwardRef(function SiPrisma2({ title = "Prisma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.8068 18.2848L13.5528.7565c-.207-.4382-.639-.7273-1.1286-.7541-.5023-.0293-.9523.213-1.2062.6253L2.266 15.1271c-.2773.4518-.2718 1.0091.0158 1.4555l4.3759 6.7786c.2608.4046.7127.6388 1.1823.6388.1332 0 .267-.0188.3987-.0577l12.7019-3.7568c.3891-.1151.7072-.3904.8737-.7553s.1633-.7828-.0075-1.1454zm-1.8481.7519L9.1814 22.2242c-.3292.0975-.6448-.1873-.5756-.5194l3.8501-18.4386c.072-.3448.5486-.3996.699-.0803l7.1288 15.138c.1344.2856-.019.6224-.325.7128z" }) + ] + } + ); +}); + +exports.default = SiPrisma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.d.ts new file mode 100644 index 000000000..4ec44e834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D3748"; +declare const SiPrisma: IconType; +export { SiPrisma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.mjs new file mode 100644 index 000000000..7e44b2e21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrisma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D3748"; +const SiPrisma = React.forwardRef(function SiPrisma2({ title = "Prisma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.8068 18.2848L13.5528.7565c-.207-.4382-.639-.7273-1.1286-.7541-.5023-.0293-.9523.213-1.2062.6253L2.266 15.1271c-.2773.4518-.2718 1.0091.0158 1.4555l4.3759 6.7786c.2608.4046.7127.6388 1.1823.6388.1332 0 .267-.0188.3987-.0577l12.7019-3.7568c.3891-.1151.7072-.3904.8737-.7553s.1633-.7828-.0075-1.1454zm-1.8481.7519L9.1814 22.2242c-.3292.0975-.6448-.1873-.5756-.5194l3.8501-18.4386c.072-.3448.5486-.3996.699-.0803l7.1288 15.138c.1344.2856-.019.6224-.325.7128z" }) + ] + } + ); +}); + +export { SiPrisma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.cjs new file mode 100644 index 000000000..dc196c923 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5163BA"; +const SiPrismic = React__namespace.forwardRef(function SiPrismic2({ title = "Prismic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.7 0C5.033 0 4.066.278 3.09.8A5.447 5.447 0 0 0 .825 3.07c-.522.977-.8 1.947-.8 4.622v.998c0 .199.078.388.218.529l1.77 1.774a.15.15 0 0 0 .257-.106V8.019c0-2.006.208-2.733.6-3.467A4.088 4.088 0 0 1 4.568 2.85c.731-.392 1.457-.6 3.459-.6h2.164c.199 0 .39-.08.53-.221l1.77-1.772A.15.15 0 0 0 12.387 0zm7.605 0c-.2 0-.392.08-.532.22l-1.769 1.775a.147.147 0 0 0-.044.104c0 .083.068.15.15.15h2.862c2.002 0 2.728.21 3.46.601a4.089 4.089 0 0 1 1.698 1.702c.39.734.599 1.461.599 3.467v2.17c0 .198.078.39.218.53l1.77 1.774a.15.15 0 0 0 .257-.106V7.692c0-2.675-.278-3.645-.8-4.623A5.446 5.446 0 0 0 20.91.801C19.935.278 18.968 0 16.3 0zM6.761 3.75a2.995 2.995 0 0 0-2.993 2.999v5.691a.75.75 0 0 0 .219.529l1.77 1.776a.149.149 0 0 0 .255-.106v-7.14a1.5 1.5 0 0 1 .097-.53c.072-.2.188-.385.348-.545l2.308-2.421a.15.15 0 0 0-.11-.253zm4.802 0c-.2 0-.39.08-.53.22L9.26 5.744A.151.151 0 0 0 9.366 6h7.124c.186 0 .364.034.528.097.2.072.386.188.546.347l2.413 2.313a.15.15 0 0 0 .255-.108v-1.9a2.995 2.995 0 0 0-2.993-3zm6.573 5.463a.15.15 0 0 0-.15.15v7.139a1.5 1.5 0 0 1-.095.53 1.49 1.49 0 0 1-.348.546l-2.308 2.42a.15.15 0 0 0 .108.255h1.896a2.997 2.997 0 0 0 2.993-3.002v-5.69a.752.752 0 0 0-.219-.53l-1.77-1.774a.15.15 0 0 0-.107-.044zm-17.96 2.25a.15.15 0 0 0-.15.15v4.695c0 2.674.278 3.645.8 4.623a5.442 5.442 0 0 0 2.263 2.267c.976.522 1.943.802 4.612.802h.994c.2 0 .39-.08.53-.22l1.771-1.775a.149.149 0 0 0-.106-.255H8.027c-2.002 0-2.728-.208-3.46-.6a4.088 4.088 0 0 1-1.698-1.702c-.39-.734-.599-1.461-.599-3.467v-2.172a.749.749 0 0 0-.22-.528L.282 11.507a.15.15 0 0 0-.106-.044zm21.703 1.5a.15.15 0 0 0-.15.15v2.868c0 2.006-.208 2.733-.6 3.467a4.088 4.088 0 0 1-1.698 1.702c-.731.392-1.457.6-3.459.6h-2.164a.749.749 0 0 0-.532.22l-1.769 1.773a.151.151 0 0 0-.043.107c0 .083.065.15.148.15H16.3c2.67 0 3.636-.28 4.612-.802a5.442 5.442 0 0 0 2.263-2.267c.522-.978.8-1.948.8-4.623v-.998a.749.749 0 0 0-.22-.529l-1.769-1.774a.15.15 0 0 0-.106-.044zm-17.96 2.238a.15.15 0 0 0-.151.15v1.898a2.997 2.997 0 0 0 2.993 3.001h5.676c.2 0 .39-.08.53-.22l1.773-1.775a.146.146 0 0 0 .044-.104.15.15 0 0 0-.15-.15H7.51a1.48 1.48 0 0 1-.53-.098 1.49 1.49 0 0 1-.546-.347l-2.413-2.313a.147.147 0 0 0-.103-.042z" }) + ] + } + ); +}); + +exports.default = SiPrismic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.d.ts new file mode 100644 index 000000000..db7ca5fb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5163BA"; +declare const SiPrismic: IconType; +export { SiPrismic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.mjs new file mode 100644 index 000000000..e835731e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrismic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5163BA"; +const SiPrismic = React.forwardRef(function SiPrismic2({ title = "Prismic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.7 0C5.033 0 4.066.278 3.09.8A5.447 5.447 0 0 0 .825 3.07c-.522.977-.8 1.947-.8 4.622v.998c0 .199.078.388.218.529l1.77 1.774a.15.15 0 0 0 .257-.106V8.019c0-2.006.208-2.733.6-3.467A4.088 4.088 0 0 1 4.568 2.85c.731-.392 1.457-.6 3.459-.6h2.164c.199 0 .39-.08.53-.221l1.77-1.772A.15.15 0 0 0 12.387 0zm7.605 0c-.2 0-.392.08-.532.22l-1.769 1.775a.147.147 0 0 0-.044.104c0 .083.068.15.15.15h2.862c2.002 0 2.728.21 3.46.601a4.089 4.089 0 0 1 1.698 1.702c.39.734.599 1.461.599 3.467v2.17c0 .198.078.39.218.53l1.77 1.774a.15.15 0 0 0 .257-.106V7.692c0-2.675-.278-3.645-.8-4.623A5.446 5.446 0 0 0 20.91.801C19.935.278 18.968 0 16.3 0zM6.761 3.75a2.995 2.995 0 0 0-2.993 2.999v5.691a.75.75 0 0 0 .219.529l1.77 1.776a.149.149 0 0 0 .255-.106v-7.14a1.5 1.5 0 0 1 .097-.53c.072-.2.188-.385.348-.545l2.308-2.421a.15.15 0 0 0-.11-.253zm4.802 0c-.2 0-.39.08-.53.22L9.26 5.744A.151.151 0 0 0 9.366 6h7.124c.186 0 .364.034.528.097.2.072.386.188.546.347l2.413 2.313a.15.15 0 0 0 .255-.108v-1.9a2.995 2.995 0 0 0-2.993-3zm6.573 5.463a.15.15 0 0 0-.15.15v7.139a1.5 1.5 0 0 1-.095.53 1.49 1.49 0 0 1-.348.546l-2.308 2.42a.15.15 0 0 0 .108.255h1.896a2.997 2.997 0 0 0 2.993-3.002v-5.69a.752.752 0 0 0-.219-.53l-1.77-1.774a.15.15 0 0 0-.107-.044zm-17.96 2.25a.15.15 0 0 0-.15.15v4.695c0 2.674.278 3.645.8 4.623a5.442 5.442 0 0 0 2.263 2.267c.976.522 1.943.802 4.612.802h.994c.2 0 .39-.08.53-.22l1.771-1.775a.149.149 0 0 0-.106-.255H8.027c-2.002 0-2.728-.208-3.46-.6a4.088 4.088 0 0 1-1.698-1.702c-.39-.734-.599-1.461-.599-3.467v-2.172a.749.749 0 0 0-.22-.528L.282 11.507a.15.15 0 0 0-.106-.044zm21.703 1.5a.15.15 0 0 0-.15.15v2.868c0 2.006-.208 2.733-.6 3.467a4.088 4.088 0 0 1-1.698 1.702c-.731.392-1.457.6-3.459.6h-2.164a.749.749 0 0 0-.532.22l-1.769 1.773a.151.151 0 0 0-.043.107c0 .083.065.15.148.15H16.3c2.67 0 3.636-.28 4.612-.802a5.442 5.442 0 0 0 2.263-2.267c.522-.978.8-1.948.8-4.623v-.998a.749.749 0 0 0-.22-.529l-1.769-1.774a.15.15 0 0 0-.106-.044zm-17.96 2.238a.15.15 0 0 0-.151.15v1.898a2.997 2.997 0 0 0 2.993 3.001h5.676c.2 0 .39-.08.53-.22l1.773-1.775a.146.146 0 0 0 .044-.104.15.15 0 0 0-.15-.15H7.51a1.48 1.48 0 0 1-.53-.098 1.49 1.49 0 0 1-.546-.347l-2.413-2.313a.147.147 0 0 0-.103-.042z" }) + ] + } + ); +}); + +export { SiPrismic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.cjs new file mode 100644 index 000000000..c5e983e53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPrivatedivision = React__namespace.forwardRef(function SiPrivatedivision2({ title = "Private Division", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.384.248A.422.422 0 0 0 11.998 0a.427.427 0 0 0-.387.248L6.172 12.002l5.441 11.752a.428.428 0 0 0 .616.18.428.428 0 0 0 .157-.18l5.443-11.752L12.384.248Zm-.386 18.449-3.101-6.695 3.101-6.697 3.1 6.697-3.1 6.695Z" }) + ] + } + ); +}); + +exports.default = SiPrivatedivision; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.d.ts new file mode 100644 index 000000000..984156e54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPrivatedivision: IconType; +export { SiPrivatedivision as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.mjs new file mode 100644 index 000000000..25083f0a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivatedivision.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPrivatedivision = React.forwardRef(function SiPrivatedivision2({ title = "Private Division", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.384.248A.422.422 0 0 0 11.998 0a.427.427 0 0 0-.387.248L6.172 12.002l5.441 11.752a.428.428 0 0 0 .616.18.428.428 0 0 0 .157-.18l5.443-11.752L12.384.248Zm-.386 18.449-3.101-6.695 3.101-6.697 3.1 6.697-3.1 6.695Z" }) + ] + } + ); +}); + +export { SiPrivatedivision as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.cjs new file mode 100644 index 000000000..899f6844f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E811F"; +const SiPrivateinternetaccess = React__namespace.forwardRef(function SiPrivateinternetaccess2({ title = "Private Internet Access", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8078 5.7639a.812.812 0 1 0-.812.812.8115.8115 0 0 0 .812-.812m3.196-.8115a.812.812 0 1 0 .8114.8115.812.812 0 0 0-.8115-.8115m-.8757 2.1535a1.686 1.686 0 0 1-2.2571 0 .2106.2106 0 0 0-.2855.3092 2.0645 2.0645 0 0 0 2.8298 0 .2108.2108 0 1 0-.2866-.3092M11.9473 0C7.9939 0 4.789 3.2048 4.789 7.1582V8.543c0 .0084.0016.0202.002.0293-.7826.1443-1.3781.8232-1.3888 1.6464a2.3927 2.3927 0 0 0-.33 1.2208v9.1777a2.4154 2.4154 0 0 0 1.7851 2.3281A1.7667 1.7667 0 0 0 6.4727 24h2.0058a1.7627 1.7627 0 0 0 1.5762-.9668h3.6816c.3009.5943.9101.9678 1.5762.9668h2.0078a1.7718 1.7718 0 0 0 1.5899-1c1.1652-.1914 2.02-1.2 2.0175-2.3809v-9.1777a2.4275 2.4275 0 0 0-.3144-1.1973v-.0098c-.001-.7739-.5211-1.423-1.2305-1.625V7.1582C19.3828 3.2048 16.1761 0 12.2227 0Zm.0312 2.5586h.2149c2.4754 0 4.4824 2.005 4.4824 4.4805V8.543H15.668a1.6666 1.6666 0 0 0-1.1739.4804H9.5273a1.675 1.675 0 0 0-1.1836-.4804h-.8476V7.039c0-2.4754 2.007-4.4804 4.4824-4.4804zm.0254 9.4922v.0039a1.9739 1.9739 0 0 1 1.1055 3.6035.3126.3126 0 0 0-.1328.2988l.4863 3.2969a.307.307 0 0 1-.0703.2461.3137.3137 0 0 1-.2344.1074h-2.3164a.3097.3097 0 0 1-.3047-.3535l.4844-3.2969a.2934.2934 0 0 0-.129-.2949 1.975 1.975 0 0 1 .8848-3.5976 2.176 2.176 0 0 1 .2266-.0137z" }) + ] + } + ); +}); + +exports.default = SiPrivateinternetaccess; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.d.ts new file mode 100644 index 000000000..412e91598 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E811F"; +declare const SiPrivateinternetaccess: IconType; +export { SiPrivateinternetaccess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.mjs new file mode 100644 index 000000000..69fb507ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrivateinternetaccess.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E811F"; +const SiPrivateinternetaccess = React.forwardRef(function SiPrivateinternetaccess2({ title = "Private Internet Access", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.8078 5.7639a.812.812 0 1 0-.812.812.8115.8115 0 0 0 .812-.812m3.196-.8115a.812.812 0 1 0 .8114.8115.812.812 0 0 0-.8115-.8115m-.8757 2.1535a1.686 1.686 0 0 1-2.2571 0 .2106.2106 0 0 0-.2855.3092 2.0645 2.0645 0 0 0 2.8298 0 .2108.2108 0 1 0-.2866-.3092M11.9473 0C7.9939 0 4.789 3.2048 4.789 7.1582V8.543c0 .0084.0016.0202.002.0293-.7826.1443-1.3781.8232-1.3888 1.6464a2.3927 2.3927 0 0 0-.33 1.2208v9.1777a2.4154 2.4154 0 0 0 1.7851 2.3281A1.7667 1.7667 0 0 0 6.4727 24h2.0058a1.7627 1.7627 0 0 0 1.5762-.9668h3.6816c.3009.5943.9101.9678 1.5762.9668h2.0078a1.7718 1.7718 0 0 0 1.5899-1c1.1652-.1914 2.02-1.2 2.0175-2.3809v-9.1777a2.4275 2.4275 0 0 0-.3144-1.1973v-.0098c-.001-.7739-.5211-1.423-1.2305-1.625V7.1582C19.3828 3.2048 16.1761 0 12.2227 0Zm.0312 2.5586h.2149c2.4754 0 4.4824 2.005 4.4824 4.4805V8.543H15.668a1.6666 1.6666 0 0 0-1.1739.4804H9.5273a1.675 1.675 0 0 0-1.1836-.4804h-.8476V7.039c0-2.4754 2.007-4.4804 4.4824-4.4804zm.0254 9.4922v.0039a1.9739 1.9739 0 0 1 1.1055 3.6035.3126.3126 0 0 0-.1328.2988l.4863 3.2969a.307.307 0 0 1-.0703.2461.3137.3137 0 0 1-.2344.1074h-2.3164a.3097.3097 0 0 1-.3047-.3535l.4844-3.2969a.2934.2934 0 0 0-.129-.2949 1.975 1.975 0 0 1 .8848-3.5976 2.176 2.176 0 0 1 .2266-.0137z" }) + ] + } + ); +}); + +export { SiPrivateinternetaccess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.cjs new file mode 100644 index 000000000..2dd178fa3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B0D8"; +const SiProbot = React__namespace.forwardRef(function SiProbot2({ title = "Probot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .04a1.743 1.743 0 0 0-.537 3.401l-.631 2.579H2.456A2.456 2.456 0 0 0 0 8.476v13.029a2.456 2.456 0 0 0 2.456 2.456h19.088c1.356 0 2.456-1.1 2.456-2.456V8.476c0-1.356-1.1-2.456-2.456-2.456h-8.403l-.616-2.575A1.743 1.743 0 0 0 11.999.04zM3.933 7.881h16.136c1.101 0 1.994.893 1.994 1.994v10.117a1.994 1.994 0 0 1-1.994 1.994H3.933a1.994 1.994 0 0 1-1.994-1.994V9.875c0-1.101.893-1.994 1.994-1.994zm3.254 2.312a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15zm9.743 0a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15zm-9.743 1.07a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011zm9.743 0a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011zm-9.743 1.663a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686zm9.743 0a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686zm-6.927 6.5v2.159h.706v-2.159h-.706zm1.077 0v2.159h.705v-2.159h-.705zm1.076 0v2.159h.706v-2.159h-.706zm1.077 0v2.159h.706v-2.159h-.706zm1.077.03v2.1a1.08 1.08 0 0 0 .829-1.049v-.001c0-.51-.354-.937-.829-1.05zm-4.678.028a1.08 1.08 0 0 0-.731 1.021v.001c0 .474.306.876.731 1.021v-2.043z" }) + ] + } + ); +}); + +exports.default = SiProbot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.d.ts new file mode 100644 index 000000000..3a669801d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B0D8"; +declare const SiProbot: IconType; +export { SiProbot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.mjs new file mode 100644 index 000000000..dfdc9cd0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProbot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B0D8"; +const SiProbot = React.forwardRef(function SiProbot2({ title = "Probot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .04a1.743 1.743 0 0 0-.537 3.401l-.631 2.579H2.456A2.456 2.456 0 0 0 0 8.476v13.029a2.456 2.456 0 0 0 2.456 2.456h19.088c1.356 0 2.456-1.1 2.456-2.456V8.476c0-1.356-1.1-2.456-2.456-2.456h-8.403l-.616-2.575A1.743 1.743 0 0 0 11.999.04zM3.933 7.881h16.136c1.101 0 1.994.893 1.994 1.994v10.117a1.994 1.994 0 0 1-1.994 1.994H3.933a1.994 1.994 0 0 1-1.994-1.994V9.875c0-1.101.893-1.994 1.994-1.994zm3.254 2.312a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15zm9.743 0a4.575 4.575 0 1 0 0 9.15 4.575 4.575 0 0 0 0-9.15zm-9.743 1.07a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011zm9.743 0a3.506 3.506 0 1 1 0 7.011 3.506 3.506 0 0 1 0-7.011zm-9.743 1.663a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686zm9.743 0a1.843 1.843 0 1 0 0 3.686 1.843 1.843 0 0 0 0-3.686zm-6.927 6.5v2.159h.706v-2.159h-.706zm1.077 0v2.159h.705v-2.159h-.705zm1.076 0v2.159h.706v-2.159h-.706zm1.077 0v2.159h.706v-2.159h-.706zm1.077.03v2.1a1.08 1.08 0 0 0 .829-1.049v-.001c0-.51-.354-.937-.829-1.05zm-4.678.028a1.08 1.08 0 0 0-.731 1.021v.001c0 .474.306.876.731 1.021v-2.043z" }) + ] + } + ); +}); + +export { SiProbot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.cjs new file mode 100644 index 000000000..098991c84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiProcessingfoundation = React__namespace.forwardRef(function SiProcessingfoundation2({ title = "Processing Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0a12 12 0 100 24A12 12 0 0012 0zm1.183 5.255h.048c3.273 0 5.247 1.48 5.247 4.103 0 2.727-1.974 4.536-5.295 4.669v-1.742c1.837-.11 2.801-1.061 2.801-2.744 0-1.498-.957-2.442-2.8-2.516zm-1.773.026l.005 11.896c.779.052 1.583.18 2.26.337l-.269 1.324H6.788v-1.324a14.96 14.96 0 012.26-.337V6.993a14.71 14.71 0 01-2.26-.337V5.33h2.26c.64 0 1.469-.028 2.361-.05z" }) + ] + } + ); +}); + +exports.default = SiProcessingfoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.d.ts new file mode 100644 index 000000000..2af092867 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiProcessingfoundation: IconType; +export { SiProcessingfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.mjs new file mode 100644 index 000000000..e44bfad53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcessingfoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiProcessingfoundation = React.forwardRef(function SiProcessingfoundation2({ title = "Processing Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0a12 12 0 100 24A12 12 0 0012 0zm1.183 5.255h.048c3.273 0 5.247 1.48 5.247 4.103 0 2.727-1.974 4.536-5.295 4.669v-1.742c1.837-.11 2.801-1.061 2.801-2.744 0-1.498-.957-2.442-2.8-2.516zm-1.773.026l.005 11.896c.779.052 1.583.18 2.26.337l-.269 1.324H6.788v-1.324a14.96 14.96 0 012.26-.337V6.993a14.71 14.71 0 01-2.26-.337V5.33h2.26c.64 0 1.469-.028 2.361-.05z" }) + ] + } + ); +}); + +export { SiProcessingfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.cjs new file mode 100644 index 000000000..f01a809ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#067BEF"; +const SiProcesson = React__namespace.forwardRef(function SiProcesson2({ title = "ProcessOn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.91 12.058c0-2.504 1.175-4.546 3.37-4.546 2.216 0 3.352 2.167 3.352 4.46 0 2.542-1.203 4.526-3.351 4.526-2.129 0-3.37-1.965-3.37-4.44m9.072-.183c0-3.458-2.09-6.145-5.653-6.154-3.419 0-5.769 2.629-5.769 6.366 0 3.573 2.167 6.192 5.596 6.192 3.351 0 5.826-2.33 5.826-6.404m1.503.038.01 6.183h2.234v-5.162c0-.25.02-.52.087-.722.24-.665.847-1.3 1.733-1.3 1.204 0 1.676.953 1.676 2.215v4.96h2.215v-5.21c0-2.784-1.589-3.776-3.12-3.776-1.454 0-2.418.828-2.793 1.512h-.058l-.106-1.32h-1.946c.048.762.068 1.61.068 2.62M20.013 24H3.987A3.983 3.983 0 0 1 0 20.013V3.987A3.983 3.983 0 0 1 3.987 0h16.026A3.983 3.983 0 0 1 24 3.987v16.026A3.983 3.983 0 0 1 20.013 24" }) + ] + } + ); +}); + +exports.default = SiProcesson; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.d.ts new file mode 100644 index 000000000..af827f001 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#067BEF"; +declare const SiProcesson: IconType; +export { SiProcesson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.mjs new file mode 100644 index 000000000..ba03035f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesson.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#067BEF"; +const SiProcesson = React.forwardRef(function SiProcesson2({ title = "ProcessOn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.91 12.058c0-2.504 1.175-4.546 3.37-4.546 2.216 0 3.352 2.167 3.352 4.46 0 2.542-1.203 4.526-3.351 4.526-2.129 0-3.37-1.965-3.37-4.44m9.072-.183c0-3.458-2.09-6.145-5.653-6.154-3.419 0-5.769 2.629-5.769 6.366 0 3.573 2.167 6.192 5.596 6.192 3.351 0 5.826-2.33 5.826-6.404m1.503.038.01 6.183h2.234v-5.162c0-.25.02-.52.087-.722.24-.665.847-1.3 1.733-1.3 1.204 0 1.676.953 1.676 2.215v4.96h2.215v-5.21c0-2.784-1.589-3.776-3.12-3.776-1.454 0-2.418.828-2.793 1.512h-.058l-.106-1.32h-1.946c.048.762.068 1.61.068 2.62M20.013 24H3.987A3.983 3.983 0 0 1 0 20.013V3.987A3.983 3.983 0 0 1 3.987 0h16.026A3.983 3.983 0 0 1 24 3.987v16.026A3.983 3.983 0 0 1 20.013 24" }) + ] + } + ); +}); + +export { SiProcesson as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.cjs new file mode 100644 index 000000000..7813719ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2480E6"; +const SiProcesswire = React__namespace.forwardRef(function SiProcesswire2({ title = "ProcessWire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.939 5.27C21.211 4.183 20 2.941 18.784 2.137 16.258.407 13.332-.207 10.744.061c-2.699.291-5.01 1.308-6.91 3.004C2.074 4.637.912 6.559.4 8.392c-.518 1.833-.449 3.53-.264 4.808.195 1.297.841 2.929.841 2.929.132.313.315.44.41.493.472.258 1.247.031 1.842-.637.03-.041.046-.098.03-.146-.166-.639-.226-1.12-.285-1.492-.135-.736-.195-1.969-.105-3.109.045-.617.165-1.277.375-1.969.406-1.367 1.262-2.794 2.6-3.98 1.441-1.277 3.289-2.066 5.046-2.27.616-.074 1.788-.145 3.199.203.301.075 1.593.412 2.975 1.348 1.006.684 1.816 1.528 2.374 2.363.568.797 1.185 2.141 1.366 3.125.256 1.12.256 2.307.074 3.463-.225 1.158-.631 2.284-1.262 3.275-.435.768-1.337 1.783-2.403 2.545-.961.676-2.058 1.164-3.184 1.434-.57.135-1.142.221-1.728.24-.521.016-1.212 0-1.697-.082-.721-.115-.871-.299-1.036-.549 0 0-.115-.18-.147-.662.011-4.405.009-3.229.009-5.516 0-.646-.021-1.232-.015-1.764.03-.873.104-1.473.728-2.123.451-.479 1.082-.768 1.777-.768.211 0 .938.01 1.577.541.685.572.8 1.354.827 1.563.156 1.223-.652 2.134-.962 2.365-.384.288-.729.428-.962.51-.496.166-1.041.214-1.531.182-.075-.005-.143.044-.158.119l-.165.856c-.161.65.2.888.41.972.671.207 1.266.293 1.971.24 1.081-.076 2.147-.502 3.052-1.346.77-.732 1.209-1.635 1.359-2.645.15-1.121-.045-2.328-.556-3.35-.562-1.127-1.532-2.068-2.81-2.583-1.291-.508-2.318-.526-3.642-.188l-.015.005c-.86.296-1.596.661-2.362 1.452-.525.546-.955 1.207-1.217 1.953-.26.752-.33 1.313-.342 2.185-.016.646.015 1.246.015 1.808v3.701c0 1.184-.04 1.389 0 1.998.022.404.078.861.255 1.352.182.541.564 1.096.826 1.352.367.391.834.705 1.293.9 1.051.467 2.478.541 3.635.496.766-.029 1.536-.135 2.291-.314 1.51-.359 2.96-1.012 4.235-1.918 1.367-.963 2.555-2.277 3.211-3.393.841-1.326 1.385-2.814 1.668-4.343.255-1.532.243-3.103-.099-4.612-.27-1.4-.991-2.936-1.823-4.176l.038.037z" }) + ] + } + ); +}); + +exports.default = SiProcesswire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.d.ts new file mode 100644 index 000000000..0eff7d223 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2480E6"; +declare const SiProcesswire: IconType; +export { SiProcesswire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.mjs new file mode 100644 index 000000000..e3774223e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProcesswire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2480E6"; +const SiProcesswire = React.forwardRef(function SiProcesswire2({ title = "ProcessWire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.939 5.27C21.211 4.183 20 2.941 18.784 2.137 16.258.407 13.332-.207 10.744.061c-2.699.291-5.01 1.308-6.91 3.004C2.074 4.637.912 6.559.4 8.392c-.518 1.833-.449 3.53-.264 4.808.195 1.297.841 2.929.841 2.929.132.313.315.44.41.493.472.258 1.247.031 1.842-.637.03-.041.046-.098.03-.146-.166-.639-.226-1.12-.285-1.492-.135-.736-.195-1.969-.105-3.109.045-.617.165-1.277.375-1.969.406-1.367 1.262-2.794 2.6-3.98 1.441-1.277 3.289-2.066 5.046-2.27.616-.074 1.788-.145 3.199.203.301.075 1.593.412 2.975 1.348 1.006.684 1.816 1.528 2.374 2.363.568.797 1.185 2.141 1.366 3.125.256 1.12.256 2.307.074 3.463-.225 1.158-.631 2.284-1.262 3.275-.435.768-1.337 1.783-2.403 2.545-.961.676-2.058 1.164-3.184 1.434-.57.135-1.142.221-1.728.24-.521.016-1.212 0-1.697-.082-.721-.115-.871-.299-1.036-.549 0 0-.115-.18-.147-.662.011-4.405.009-3.229.009-5.516 0-.646-.021-1.232-.015-1.764.03-.873.104-1.473.728-2.123.451-.479 1.082-.768 1.777-.768.211 0 .938.01 1.577.541.685.572.8 1.354.827 1.563.156 1.223-.652 2.134-.962 2.365-.384.288-.729.428-.962.51-.496.166-1.041.214-1.531.182-.075-.005-.143.044-.158.119l-.165.856c-.161.65.2.888.41.972.671.207 1.266.293 1.971.24 1.081-.076 2.147-.502 3.052-1.346.77-.732 1.209-1.635 1.359-2.645.15-1.121-.045-2.328-.556-3.35-.562-1.127-1.532-2.068-2.81-2.583-1.291-.508-2.318-.526-3.642-.188l-.015.005c-.86.296-1.596.661-2.362 1.452-.525.546-.955 1.207-1.217 1.953-.26.752-.33 1.313-.342 2.185-.016.646.015 1.246.015 1.808v3.701c0 1.184-.04 1.389 0 1.998.022.404.078.861.255 1.352.182.541.564 1.096.826 1.352.367.391.834.705 1.293.9 1.051.467 2.478.541 3.635.496.766-.029 1.536-.135 2.291-.314 1.51-.359 2.96-1.012 4.235-1.918 1.367-.963 2.555-2.277 3.211-3.393.841-1.326 1.385-2.814 1.668-4.343.255-1.532.243-3.103-.099-4.612-.27-1.4-.991-2.936-1.823-4.176l.038.037z" }) + ] + } + ); +}); + +export { SiProcesswire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.cjs new file mode 100644 index 000000000..17284e03c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA552F"; +const SiProducthunt = React__namespace.forwardRef(function SiProducthunt2({ title = "Product Hunt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.604 8.4h-3.405V12h3.405c.995 0 1.801-.806 1.801-1.801 0-.993-.805-1.799-1.801-1.799zM12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm1.604 14.4h-3.405V18H7.801V6h5.804c2.319 0 4.2 1.88 4.2 4.199 0 2.321-1.881 4.201-4.201 4.201z" }) + ] + } + ); +}); + +exports.default = SiProducthunt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.d.ts new file mode 100644 index 000000000..d66c28df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA552F"; +declare const SiProducthunt: IconType; +export { SiProducthunt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.mjs new file mode 100644 index 000000000..30a63930c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProducthunt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA552F"; +const SiProducthunt = React.forwardRef(function SiProducthunt2({ title = "Product Hunt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.604 8.4h-3.405V12h3.405c.995 0 1.801-.806 1.801-1.801 0-.993-.805-1.799-1.801-1.799zM12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0zm1.604 14.4h-3.405V18H7.801V6h5.804c2.319 0 4.2 1.88 4.2 4.199 0 2.321-1.881 4.201-4.201 4.201z" }) + ] + } + ); +}); + +export { SiProducthunt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.cjs new file mode 100644 index 000000000..55c87d8cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#380953"; +const SiProgate = React__namespace.forwardRef(function SiProgate2({ title = "Progate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.056 24a17.14 17.14 0 01-3.457-.698c-1.244-.364-2.899-1-2.913-2.319 0-.946.54-1.755 1.675-2.477a15.827 15.827 0 011.6-.844 39.6 39.6 0 012.2-.928V4.98l-4.41-.476v12.652a.848.848 0 01-.895.846.85.85 0 01-.904-.846V3.496a.906.906 0 01.904-.903.8.8 0 01.096.014l6.198.67a.902.902 0 01.8.9v11.826a61.194 61.194 0 002.399-1.03c2.27-1.036 3.799-2.091 4.668-3.237 1.056-1.374 1.218-3.075 1.168-4.259a6.264 6.264 0 00-1.254-3.515 5.498 5.498 0 00-2.095-1.725 6.208 6.208 0 00-1.663-.486c-.6-.082-.896-.51-.864-.938.032-.427.384-.75.888-.8.863-.071 1.503.147 2.375.536a7.76 7.76 0 012.86 2.32 8.167 8.167 0 011.6 4.522 8.967 8.967 0 01-.485 3.481 7.36 7.36 0 01-1.088 1.966c-1.584 2.065-4.39 3.34-5.31 3.764-.868.4-2.8 1.2-3.18 1.352V23.1a.908.908 0 01-.31.682.918.918 0 01-.567.218zm-.896-5.318c-.552.2-1.4.512-1.72.66-.32.147-1.215.565-1.61.91-.1.085-.417.385-.339.629.078.244.446.374 1.904.766.518.14 1.125.274 1.765.4z" }) + ] + } + ); +}); + +exports.default = SiProgate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.d.ts new file mode 100644 index 000000000..7365de870 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#380953"; +declare const SiProgate: IconType; +export { SiProgate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.mjs new file mode 100644 index 000000000..7fda365bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProgate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#380953"; +const SiProgate = React.forwardRef(function SiProgate2({ title = "Progate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.056 24a17.14 17.14 0 01-3.457-.698c-1.244-.364-2.899-1-2.913-2.319 0-.946.54-1.755 1.675-2.477a15.827 15.827 0 011.6-.844 39.6 39.6 0 012.2-.928V4.98l-4.41-.476v12.652a.848.848 0 01-.895.846.85.85 0 01-.904-.846V3.496a.906.906 0 01.904-.903.8.8 0 01.096.014l6.198.67a.902.902 0 01.8.9v11.826a61.194 61.194 0 002.399-1.03c2.27-1.036 3.799-2.091 4.668-3.237 1.056-1.374 1.218-3.075 1.168-4.259a6.264 6.264 0 00-1.254-3.515 5.498 5.498 0 00-2.095-1.725 6.208 6.208 0 00-1.663-.486c-.6-.082-.896-.51-.864-.938.032-.427.384-.75.888-.8.863-.071 1.503.147 2.375.536a7.76 7.76 0 012.86 2.32 8.167 8.167 0 011.6 4.522 8.967 8.967 0 01-.485 3.481 7.36 7.36 0 01-1.088 1.966c-1.584 2.065-4.39 3.34-5.31 3.764-.868.4-2.8 1.2-3.18 1.352V23.1a.908.908 0 01-.31.682.918.918 0 01-.567.218zm-.896-5.318c-.552.2-1.4.512-1.72.66-.32.147-1.215.565-1.61.91-.1.085-.417.385-.339.629.078.244.446.374 1.904.766.518.14 1.125.274 1.765.4z" }) + ] + } + ); +}); + +export { SiProgate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.cjs new file mode 100644 index 000000000..4ec1ec0aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5CE500"; +const SiProgress = React__namespace.forwardRef(function SiProgress2({ title = "Progress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.235 6.825v11.997a.924.924 0 0 1-.419.725l-.393.235c-1.961 1.135-3.687 2.134-5.431 3.14V9.948L5.759 3.454C7.703 2.338 9.64 1.211 11.586.1a.927.927 0 0 1 .837 0l10.81 6.243v.482zm-8.741 4.562A9631.706 9631.706 0 0 0 6.8 6.943a.94.94 0 0 0-.837 0c-1.733 1.001-3.467 2-5.199 3.004l8.113 4.684V24c1.732-.999 3.46-2.006 5.197-2.995a.927.927 0 0 0 .419-.724zM.765 19.317l5.613 3.241V16.07Z" }) + ] + } + ); +}); + +exports.default = SiProgress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.d.ts new file mode 100644 index 000000000..28ee0844a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5CE500"; +declare const SiProgress: IconType; +export { SiProgress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.mjs new file mode 100644 index 000000000..7b2f0bc0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProgress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5CE500"; +const SiProgress = React.forwardRef(function SiProgress2({ title = "Progress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.235 6.825v11.997a.924.924 0 0 1-.419.725l-.393.235c-1.961 1.135-3.687 2.134-5.431 3.14V9.948L5.759 3.454C7.703 2.338 9.64 1.211 11.586.1a.927.927 0 0 1 .837 0l10.81 6.243v.482zm-8.741 4.562A9631.706 9631.706 0 0 0 6.8 6.943a.94.94 0 0 0-.837 0c-1.733 1.001-3.467 2-5.199 3.004l8.113 4.684V24c1.732-.999 3.46-2.006 5.197-2.995a.927.927 0 0 0 .419-.724zM.765 19.317l5.613 3.241V16.07Z" }) + ] + } + ); +}); + +export { SiProgress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.cjs new file mode 100644 index 000000000..fa062d6bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6522C"; +const SiPrometheus = React__namespace.forwardRef(function SiPrometheus2({ title = "Prometheus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12zm0 22.46c-1.885 0-3.414-1.26-3.414-2.814h6.828c0 1.553-1.528 2.813-3.414 2.813zm5.64-3.745H6.36v-2.046h11.28v2.046zm-.04-3.098H6.391c-.037-.043-.075-.086-.111-.13-1.155-1.401-1.427-2.133-1.69-2.879-.005-.025 1.4.287 2.395.511 0 0 .513.119 1.262.255-.72-.843-1.147-1.915-1.147-3.01 0-2.406 1.845-4.508 1.18-6.207.648.053 1.34 1.367 1.387 3.422.689-.951.977-2.69.977-3.755 0-1.103.727-2.385 1.454-2.429-.648 1.069.168 1.984.894 4.256.272.854.237 2.29.447 3.201.07-1.892.395-4.652 1.595-5.605-.529 1.2.079 2.702.494 3.424.671 1.164 1.078 2.047 1.078 3.716a4.642 4.642 0 01-1.11 2.996c.792-.149 1.34-.283 1.34-.283l2.573-.502s-.374 1.538-1.81 3.019z" }) + ] + } + ); +}); + +exports.default = SiPrometheus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.d.ts new file mode 100644 index 000000000..74b8555ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6522C"; +declare const SiPrometheus: IconType; +export { SiPrometheus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.mjs new file mode 100644 index 000000000..11ca9f7fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPrometheus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6522C"; +const SiPrometheus = React.forwardRef(function SiPrometheus2({ title = "Prometheus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12zm0 22.46c-1.885 0-3.414-1.26-3.414-2.814h6.828c0 1.553-1.528 2.813-3.414 2.813zm5.64-3.745H6.36v-2.046h11.28v2.046zm-.04-3.098H6.391c-.037-.043-.075-.086-.111-.13-1.155-1.401-1.427-2.133-1.69-2.879-.005-.025 1.4.287 2.395.511 0 0 .513.119 1.262.255-.72-.843-1.147-1.915-1.147-3.01 0-2.406 1.845-4.508 1.18-6.207.648.053 1.34 1.367 1.387 3.422.689-.951.977-2.69.977-3.755 0-1.103.727-2.385 1.454-2.429-.648 1.069.168 1.984.894 4.256.272.854.237 2.29.447 3.201.07-1.892.395-4.652 1.595-5.605-.529 1.2.079 2.702.494 3.424.671 1.164 1.078 2.047 1.078 3.716a4.642 4.642 0 01-1.11 2.996c.792-.149 1.34-.283 1.34-.283l2.573-.502s-.374 1.538-1.81 3.019z" }) + ] + } + ); +}); + +export { SiPrometheus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.cjs new file mode 100644 index 000000000..ec2845f37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C71585"; +const SiPronounsdotpage = React__namespace.forwardRef(function SiPronounsdotpage2({ title = "Pronouns.page", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.991 5.14c.058-.102.01-.185-.108-.185l-2.051.001a.414.414 0 0 0-.321.184l-5.027 8.503c-.702 1.156-1.681 1.411-2.622 1.297-1.615-.196-2.483-1.381-2.483-2.96a2.88 2.88 0 0 1 2.876-2.876h3.192c.117 0 .26-.083.319-.184l1.15-2.01c.058-.101.01-.184-.107-.184H5.254A5.26 5.26 0 0 0 0 11.98c0 1.4.547 2.91 1.542 3.897.98.972 2.29 1.328 3.688 1.357.789.009 2.956-.009 3.972-1.817a18678.91 18678.91 0 0 1 5.79-10.277Zm7.467 2.984c-.98-.972-2.29-1.329-3.688-1.357-.789-.01-2.956.009-3.972 1.816-1.138 2.024-5.79 10.277-5.79 10.277-.057.102-.008.185.109.185l2.051-.001a.414.414 0 0 0 .321-.184l5.027-8.503c.702-1.156 1.681-1.411 2.622-1.297 1.615.196 2.483 1.381 2.483 2.96a2.88 2.88 0 0 1-2.876 2.876h-3.192a.406.406 0 0 0-.319.184l-1.15 2.01c-.058.101-.01.184.107.184h4.555A5.26 5.26 0 0 0 24 12.02c0-1.4-.547-2.91-1.542-3.896z" }) + ] + } + ); +}); + +exports.default = SiPronounsdotpage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.d.ts new file mode 100644 index 000000000..2ebcd06d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C71585"; +declare const SiPronounsdotpage: IconType; +export { SiPronounsdotpage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.mjs new file mode 100644 index 000000000..e9ab202fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPronounsdotpage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C71585"; +const SiPronounsdotpage = React.forwardRef(function SiPronounsdotpage2({ title = "Pronouns.page", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.991 5.14c.058-.102.01-.185-.108-.185l-2.051.001a.414.414 0 0 0-.321.184l-5.027 8.503c-.702 1.156-1.681 1.411-2.622 1.297-1.615-.196-2.483-1.381-2.483-2.96a2.88 2.88 0 0 1 2.876-2.876h3.192c.117 0 .26-.083.319-.184l1.15-2.01c.058-.101.01-.184-.107-.184H5.254A5.26 5.26 0 0 0 0 11.98c0 1.4.547 2.91 1.542 3.897.98.972 2.29 1.328 3.688 1.357.789.009 2.956-.009 3.972-1.817a18678.91 18678.91 0 0 1 5.79-10.277Zm7.467 2.984c-.98-.972-2.29-1.329-3.688-1.357-.789-.01-2.956.009-3.972 1.816-1.138 2.024-5.79 10.277-5.79 10.277-.057.102-.008.185.109.185l2.051-.001a.414.414 0 0 0 .321-.184l5.027-8.503c.702-1.156 1.681-1.411 2.622-1.297 1.615.196 2.483 1.381 2.483 2.96a2.88 2.88 0 0 1-2.876 2.876h-3.192a.406.406 0 0 0-.319.184l-1.15 2.01c-.058.101-.01.184.107.184h4.555A5.26 5.26 0 0 0 24 12.02c0-1.4-.547-2.91-1.542-3.896z" }) + ] + } + ); +}); + +export { SiPronounsdotpage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.cjs new file mode 100644 index 000000000..16bcb13f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6000F"; +const SiProsieben = React__namespace.forwardRef(function SiProsieben2({ title = "ProSieben", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.24 0H23.68V6.64H.24M23.76 7.92V24H.24s2.88-7.84 10.48-12.48c7.12-4.4 13.04-3.6 13.04-3.6Z" }) + ] + } + ); +}); + +exports.default = SiProsieben; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.d.ts new file mode 100644 index 000000000..bccb1b70b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6000F"; +declare const SiProsieben: IconType; +export { SiProsieben as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.mjs new file mode 100644 index 000000000..50c81ebc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProsieben.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6000F"; +const SiProsieben = React.forwardRef(function SiProsieben2({ title = "ProSieben", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.24 0H23.68V6.64H.24M23.76 7.92V24H.24s2.88-7.84 10.48-12.48c7.12-4.4 13.04-3.6 13.04-3.6Z" }) + ] + } + ); +}); + +export { SiProsieben as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.cjs new file mode 100644 index 000000000..41495ac0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C79B3"; +const SiProteus = React__namespace.forwardRef(function SiProteus2({ title = "Proteus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.4051 4.799c0-.6655.5397-1.2051 1.2052-1.2051s1.2052.5396 1.2052 1.2052c0 .0037-.002.0068-.0021.0105.6943.2851 1.4968.776 2.1966 1.2557.404.277.8184.5853 1.2354.9068-.1488.0862-.2953.1743-.426.2674l-.0673.048c-.34-.2577-.6797-.5123-1.0096-.7385C6.79 5.8961 6.123 5.5426 5.662 5.3552c-.1757.3306-.4955.5571-.88.6143.154.58.5529 1.366 1.1504 2.2896l.7181 1.0453c.1443.199.3067.4082.4636.6143.1975.2596.4063.525.6218.7934.0459.057.0926.1143.1393.1716.1894.2332.3847.4688.5868.7068.116.1362.2366.2737.3566.4111.1533.1763.3054.352.4651.5298.299.3319.6053.6654.9244.9997.2949.3091.5976.6089.9002.9073-.2669-.0057-.534-.0105-.7977-.0213a42.315 42.315 0 0 1-.4966-.51c-.4947-.5184-.9558-1.0318-1.4002-1.5404a44.4174 44.4174 0 0 1-.2897-.3354c-.4261-.4974-.8328-.9881-1.2026-1.463l-.0016-.002c-.3052-.392-.5937-.776-.8567-1.1459l-.0006.0001-.0077-.0113c-.003-.0044-.0068-.009-.0099-.0133l.0008-.0001-.1281-.1904-.1413-.2097-.3963-.5883c-.633-.9963-1.048-1.849-1.202-2.4905-.4506-.1744-.773-.6056-.773-1.1178zm15.292 13.2427c-.3277-.8145-.9133-1.8048-1.6373-2.8438-.1986.0293-.4067.0528-.6108.0789.7763 1.1025 1.3413 2.0677 1.6562 2.7927-.4707.152-.8131.5726-.832 1.0893-.6327-.267-1.4611-.762-2.418-1.468-.737-.5438-1.5182-1.1992-2.3035-1.9031a54.784 54.784 0 0 1-.4126.3664c2.0873 1.8717 4.0796 3.26 5.3385 3.6912.215.3298.5693.5608.9923.5608.6656 0 1.2052-.5395 1.2052-1.2051 0-.5851-.4252-1.0499-.978-1.1593zm-6.1818-2.4915a10.5432 10.5432 0 0 0-.2286.006c-.1007.0037-.2013.008-.3021.008-.0975 0-.1918-.0059-.289-.0065-.1271.1114-.2496.2096-.3755.3171a36.746 36.746 0 0 1-.8212.684l.0013.0003c-1.5544 1.251-2.9273 2.1365-3.842 2.5257 0-.0016.001-.0028.001-.0044 0-.5293-.3466-.9657-.8212-1.1276.2694-.6066.6953-1.3508 1.2896-2.2061.0993-.1429.2175-.294.3234-.4398-.2083-.0241-.4229-.0452-.6245-.0723-.7207 1.0148-1.2719 1.9393-1.5923 2.685-.5565.1066-.9854.5732-.9854 1.1608 0 .6656.5396 1.2052 1.2052 1.2052.3973 0 .7328-.205.9523-.5015 1.5528-.4942 4.027-2.3594 6.109-4.2339zm-5.664-4.6696a5.1697 5.1697 0 0 0-.0566.7578c0 .9375.2618 1.8091.6994 2.5662.062.0074.119.0169.1815.024.7378.0831 1.5005.1402 2.2768.179-.1066-.1088-.2135-.217-.3192-.3278-1.0172-1.066-1.9556-2.1502-2.7818-3.1992zm8.1693-3.3744c.2686.2001.5185.424.7431.6717.1871.2063.3567.4285.5087.6631.1858.2867.3327.5988.4595.9209-.6217.835-1.3012 1.6632-1.999 2.4467-.121.1357-.2404.2732-.3622.4057a30.224 30.224 0 0 1-.7613.8 40.0852 40.0852 0 0 1-.8573.8379l-.2022.1924c-.189.003-.3759.017-.5653.017-.1727 0-.3388-.0114-.5104-.0135l-.1904-.1877c-.3007-.2967-.6017-.5946-.8949-.9019a45.099 45.099 0 0 1-.7263-.783 43.538 43.538 0 0 1-.3657-.4083c-.7586-.8544-1.4649-1.7107-2.0874-2.5373.1081-.2542.23-.5012.3758-.7326a5.1611 5.1611 0 0 1 .5092-.6784c.2586-.2911.5522-.5493.87-.7758a5.1451 5.1451 0 0 1 .493-.3094c.7384-.4093 1.5851-.6474 2.4894-.6474.9462 0 1.8328.2552 2.5948.7003a5.166 5.166 0 0 1 .479.3196m-.9201 6.8916a33.7491 33.7491 0 0 0 2.1308-.1939c.0635-.0079.1213-.0194.1843-.0276.4277-.7507.6833-1.612.6833-2.5379 0-.1966-.021-.3877-.0425-.5786-.8503 1.0858-1.7729 2.1483-2.7046 3.0896-.0805.0812-.167.1652-.2513.2484zm-1.4447 1.1489c.3586.3226.7121.6338 1.0523.918.6598-.2425 1.2618-.604 1.7643-1.0768-.9283.0911-1.8717.1395-2.8166.1588zm-1.2003 1.1964c.1639.0159.3231.0475.4913.0475.1633 0 .3177-.0316.4771-.0465-.1558-.1355-.3154-.2854-.4727-.4263-.153.1332-.318.275-.4957.4253zm-3.0121-1.335c.5032.468 1.1047.825 1.763 1.0638.352-.2805.7146-.5802 1.09-.9038l-.0005-.0099.0067-.0094c-.9745-.017-1.9343-.0598-2.8592-.1407zM15.17 7.3057l.0569.0423c1.2568-.9717 2.3588-1.6635 3.1438-1.9497.1728.3392.4982.5716.8884.6309-.148.4568-.4793 1.1684-1.1632 2.2364l-.6367.9297c-.1963.2796-.409.5625-.6213.8451-.4366.5809-.9059 1.1628-1.391 1.7327-.0595.0695-.12.1378-.18.207-.48.555-.9742 1.0994-1.4798 1.6102-.287.29-.575.5691-.8627.843.2702-.0072.5407-.0111.8094-.0244a36.253 36.253 0 0 0 .4404-.4354c.46-.4647.9096-.9581 1.3514-1.4604a37.509 37.509 0 0 0 .2472-.2859c.4272-.496.8412-.9985 1.2334-1.5061l.0014-.0017c.3653-.4731.718-.946 1.0405-1.4123l.6296-.9325c.501-.795.9901-1.6879 1.19-2.3977.4501-.1748.7715-.6058.7715-1.1176 0-.6656-.5395-1.2052-1.2051-1.2052-.662 0-1.197.5342-1.203 1.1947-.9004.3423-2.1135 1.107-3.4811 2.1767.1372.0839.2742.1716.42.2802zm.941.9155c.1281.1564.2589.3104.3712.4838l.122.188c.233.0324.454.075.6828.1113l.3803-.5553c-.5083-.0847-1.0258-.164-1.5563-.2278zm-8.3719.056c-.453.0637-.8929.1472-1.3344.2278l.3714.5407c.1601-.028.3143-.0627.476-.0885l.1216-.1932c.1083-.1719.2387-.328.3654-.4867zm16.239 3.1232c-.2514-1.2987-2.5312-2.1148-4.3994-2.5707-.2506-.0612-.5305-.1094-.7955-.1646l-.3626.5371c.4351.0867.864.1775 1.2647.2824 2.2145.5793 3.5636 1.3194 3.7012 2.0304.039.2012-.031.407-.214.6288-.5461.6619-1.9944 1.3135-3.9736 1.7878-.8763.21-1.8361.3783-2.8395.5058-.0321.0051-.064.0104-.0973.0146a34.0673 34.0673 0 0 1-2.1084.1935c-.227.0139-.4584.0114-.687.021-.2716.0113-.191.0197-.464.0248h-.3523c-.2264.0247-.5233.0203-.7462.0203-1.5226 0-2.9098-.0829-4.2566-.2347-3.2265-.3637-5.76-1.1231-6.695-2.088-.2397-.247-.3573-.4964-.3496-.741.0116-.3722.7711-1.2159 3.5442-2.0175.4803-.1388.9839-.2633 1.5028-.375l-.3534-.5246c-.4477.1006-.8982.1997-1.3167.3207C2.5106 9.4763.0398 10.376.0007 11.629c-.013.4138.1617.8106.5191 1.1795 1.0945 1.1291 3.9797 1.979 7.6472 2.3296 1.2005.1148 2.526.175 3.8589.175.0139 0-.014 0 0 0 .2593-.0014.5138-.0146.7716-.0206 1.0077-.023 2.0027-.0758 2.951-.1772.184-.0197.3583-.0469.539-.0693.1413-.0174.2813-.0358.4214-.0542 3.3329-.4575 6.0209-1.3645 6.9284-2.4645.3004-.3642.415-.7433.3408-1.127z" }) + ] + } + ); +}); + +exports.default = SiProteus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.d.ts new file mode 100644 index 000000000..a8f6e48d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C79B3"; +declare const SiProteus: IconType; +export { SiProteus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.mjs new file mode 100644 index 000000000..69066c0f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProteus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C79B3"; +const SiProteus = React.forwardRef(function SiProteus2({ title = "Proteus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.4051 4.799c0-.6655.5397-1.2051 1.2052-1.2051s1.2052.5396 1.2052 1.2052c0 .0037-.002.0068-.0021.0105.6943.2851 1.4968.776 2.1966 1.2557.404.277.8184.5853 1.2354.9068-.1488.0862-.2953.1743-.426.2674l-.0673.048c-.34-.2577-.6797-.5123-1.0096-.7385C6.79 5.8961 6.123 5.5426 5.662 5.3552c-.1757.3306-.4955.5571-.88.6143.154.58.5529 1.366 1.1504 2.2896l.7181 1.0453c.1443.199.3067.4082.4636.6143.1975.2596.4063.525.6218.7934.0459.057.0926.1143.1393.1716.1894.2332.3847.4688.5868.7068.116.1362.2366.2737.3566.4111.1533.1763.3054.352.4651.5298.299.3319.6053.6654.9244.9997.2949.3091.5976.6089.9002.9073-.2669-.0057-.534-.0105-.7977-.0213a42.315 42.315 0 0 1-.4966-.51c-.4947-.5184-.9558-1.0318-1.4002-1.5404a44.4174 44.4174 0 0 1-.2897-.3354c-.4261-.4974-.8328-.9881-1.2026-1.463l-.0016-.002c-.3052-.392-.5937-.776-.8567-1.1459l-.0006.0001-.0077-.0113c-.003-.0044-.0068-.009-.0099-.0133l.0008-.0001-.1281-.1904-.1413-.2097-.3963-.5883c-.633-.9963-1.048-1.849-1.202-2.4905-.4506-.1744-.773-.6056-.773-1.1178zm15.292 13.2427c-.3277-.8145-.9133-1.8048-1.6373-2.8438-.1986.0293-.4067.0528-.6108.0789.7763 1.1025 1.3413 2.0677 1.6562 2.7927-.4707.152-.8131.5726-.832 1.0893-.6327-.267-1.4611-.762-2.418-1.468-.737-.5438-1.5182-1.1992-2.3035-1.9031a54.784 54.784 0 0 1-.4126.3664c2.0873 1.8717 4.0796 3.26 5.3385 3.6912.215.3298.5693.5608.9923.5608.6656 0 1.2052-.5395 1.2052-1.2051 0-.5851-.4252-1.0499-.978-1.1593zm-6.1818-2.4915a10.5432 10.5432 0 0 0-.2286.006c-.1007.0037-.2013.008-.3021.008-.0975 0-.1918-.0059-.289-.0065-.1271.1114-.2496.2096-.3755.3171a36.746 36.746 0 0 1-.8212.684l.0013.0003c-1.5544 1.251-2.9273 2.1365-3.842 2.5257 0-.0016.001-.0028.001-.0044 0-.5293-.3466-.9657-.8212-1.1276.2694-.6066.6953-1.3508 1.2896-2.2061.0993-.1429.2175-.294.3234-.4398-.2083-.0241-.4229-.0452-.6245-.0723-.7207 1.0148-1.2719 1.9393-1.5923 2.685-.5565.1066-.9854.5732-.9854 1.1608 0 .6656.5396 1.2052 1.2052 1.2052.3973 0 .7328-.205.9523-.5015 1.5528-.4942 4.027-2.3594 6.109-4.2339zm-5.664-4.6696a5.1697 5.1697 0 0 0-.0566.7578c0 .9375.2618 1.8091.6994 2.5662.062.0074.119.0169.1815.024.7378.0831 1.5005.1402 2.2768.179-.1066-.1088-.2135-.217-.3192-.3278-1.0172-1.066-1.9556-2.1502-2.7818-3.1992zm8.1693-3.3744c.2686.2001.5185.424.7431.6717.1871.2063.3567.4285.5087.6631.1858.2867.3327.5988.4595.9209-.6217.835-1.3012 1.6632-1.999 2.4467-.121.1357-.2404.2732-.3622.4057a30.224 30.224 0 0 1-.7613.8 40.0852 40.0852 0 0 1-.8573.8379l-.2022.1924c-.189.003-.3759.017-.5653.017-.1727 0-.3388-.0114-.5104-.0135l-.1904-.1877c-.3007-.2967-.6017-.5946-.8949-.9019a45.099 45.099 0 0 1-.7263-.783 43.538 43.538 0 0 1-.3657-.4083c-.7586-.8544-1.4649-1.7107-2.0874-2.5373.1081-.2542.23-.5012.3758-.7326a5.1611 5.1611 0 0 1 .5092-.6784c.2586-.2911.5522-.5493.87-.7758a5.1451 5.1451 0 0 1 .493-.3094c.7384-.4093 1.5851-.6474 2.4894-.6474.9462 0 1.8328.2552 2.5948.7003a5.166 5.166 0 0 1 .479.3196m-.9201 6.8916a33.7491 33.7491 0 0 0 2.1308-.1939c.0635-.0079.1213-.0194.1843-.0276.4277-.7507.6833-1.612.6833-2.5379 0-.1966-.021-.3877-.0425-.5786-.8503 1.0858-1.7729 2.1483-2.7046 3.0896-.0805.0812-.167.1652-.2513.2484zm-1.4447 1.1489c.3586.3226.7121.6338 1.0523.918.6598-.2425 1.2618-.604 1.7643-1.0768-.9283.0911-1.8717.1395-2.8166.1588zm-1.2003 1.1964c.1639.0159.3231.0475.4913.0475.1633 0 .3177-.0316.4771-.0465-.1558-.1355-.3154-.2854-.4727-.4263-.153.1332-.318.275-.4957.4253zm-3.0121-1.335c.5032.468 1.1047.825 1.763 1.0638.352-.2805.7146-.5802 1.09-.9038l-.0005-.0099.0067-.0094c-.9745-.017-1.9343-.0598-2.8592-.1407zM15.17 7.3057l.0569.0423c1.2568-.9717 2.3588-1.6635 3.1438-1.9497.1728.3392.4982.5716.8884.6309-.148.4568-.4793 1.1684-1.1632 2.2364l-.6367.9297c-.1963.2796-.409.5625-.6213.8451-.4366.5809-.9059 1.1628-1.391 1.7327-.0595.0695-.12.1378-.18.207-.48.555-.9742 1.0994-1.4798 1.6102-.287.29-.575.5691-.8627.843.2702-.0072.5407-.0111.8094-.0244a36.253 36.253 0 0 0 .4404-.4354c.46-.4647.9096-.9581 1.3514-1.4604a37.509 37.509 0 0 0 .2472-.2859c.4272-.496.8412-.9985 1.2334-1.5061l.0014-.0017c.3653-.4731.718-.946 1.0405-1.4123l.6296-.9325c.501-.795.9901-1.6879 1.19-2.3977.4501-.1748.7715-.6058.7715-1.1176 0-.6656-.5395-1.2052-1.2051-1.2052-.662 0-1.197.5342-1.203 1.1947-.9004.3423-2.1135 1.107-3.4811 2.1767.1372.0839.2742.1716.42.2802zm.941.9155c.1281.1564.2589.3104.3712.4838l.122.188c.233.0324.454.075.6828.1113l.3803-.5553c-.5083-.0847-1.0258-.164-1.5563-.2278zm-8.3719.056c-.453.0637-.8929.1472-1.3344.2278l.3714.5407c.1601-.028.3143-.0627.476-.0885l.1216-.1932c.1083-.1719.2387-.328.3654-.4867zm16.239 3.1232c-.2514-1.2987-2.5312-2.1148-4.3994-2.5707-.2506-.0612-.5305-.1094-.7955-.1646l-.3626.5371c.4351.0867.864.1775 1.2647.2824 2.2145.5793 3.5636 1.3194 3.7012 2.0304.039.2012-.031.407-.214.6288-.5461.6619-1.9944 1.3135-3.9736 1.7878-.8763.21-1.8361.3783-2.8395.5058-.0321.0051-.064.0104-.0973.0146a34.0673 34.0673 0 0 1-2.1084.1935c-.227.0139-.4584.0114-.687.021-.2716.0113-.191.0197-.464.0248h-.3523c-.2264.0247-.5233.0203-.7462.0203-1.5226 0-2.9098-.0829-4.2566-.2347-3.2265-.3637-5.76-1.1231-6.695-2.088-.2397-.247-.3573-.4964-.3496-.741.0116-.3722.7711-1.2159 3.5442-2.0175.4803-.1388.9839-.2633 1.5028-.375l-.3534-.5246c-.4477.1006-.8982.1997-1.3167.3207C2.5106 9.4763.0398 10.376.0007 11.629c-.013.4138.1617.8106.5191 1.1795 1.0945 1.1291 3.9797 1.979 7.6472 2.3296 1.2005.1148 2.526.175 3.8589.175.0139 0-.014 0 0 0 .2593-.0014.5138-.0146.7716-.0206 1.0077-.023 2.0027-.0758 2.951-.1772.184-.0197.3583-.0469.539-.0693.1413-.0174.2813-.0358.4214-.0542 3.3329-.4575 6.0209-1.3645 6.9284-2.4645.3004-.3642.415-.7433.3408-1.127z" }) + ] + } + ); +}); + +export { SiProteus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.cjs new file mode 100644 index 000000000..3a22b849d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4D9FE7"; +const SiProtocolsdotio = React__namespace.forwardRef(function SiProtocolsdotio2({ title = "protocols.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.55.927c-.723.046-1.266.47-1.614 1.261a4.653 4.653 0 0 0-.215.6 11.007 11.007 0 0 0-.42 3.585c.052 1.007-.187 1.888-.6 2.797C.858 11.024.27 12.967.03 15.004c-.136 1.164.169 2.15 1.13 2.871.41.308.834.603 1.28.855 1.24.702 2.573 1.192 3.924 1.634a.825.825 0 0 1 .297.162c1.12 1.033 2.423 1.75 3.846 2.276 1.011.373 2.005.364 3.016-.01 1.057-.391 2.089-.853 2.944-1.576.76-.642 1.612-1.011 2.527-1.334 1.307-.462 2.566-1.037 3.69-1.872.934-.695 1.413-1.596 1.298-2.778-.023-.238-.04-.476-.076-.712-.3-1.942-.888-3.802-1.705-5.58-.356-.776-.658-1.524-.441-2.403-.075-.856-.128-1.726-.233-2.588-.083-.687-.24-1.365-.574-1.983-.442-.82-1.126-1.164-2.037-1-.32.057-.642.144-.94.273-1.61.698-2.904 1.8-3.95 3.198-.1.137-.194.184-.368.182a190.382 190.382 0 0 0-3.329-.002c-.144 0-.24-.014-.334-.144-.623-.877-1.389-1.615-2.256-2.247-.735-.536-1.51-1-2.406-1.22a2.601 2.601 0 0 0-.783-.08zm.096 1.152c.087-.002.183.012.292.04a4.5 4.5 0 0 1 .996.357c1.43.747 2.596 1.793 3.443 3.174.088.144.178.186.338.178.904-.042 1.806-.097 2.71-.103.62-.004 1.24.06 1.86.103.164.012.25-.04.337-.182.855-1.387 2.024-2.44 3.469-3.182a4.55 4.55 0 0 1 .973-.348c.43-.107.702.006.863.418.188.484.352.99.43 1.5.123.816.166 1.643.226 2.282-.037.648-.07 1.108-.086 1.569a.68.68 0 0 0 .08.322 21.82 21.82 0 0 1 2.174 6.377c.073.416.077.85.064 1.273-.013.481-.324.812-.673 1.1-.873.72-1.888 1.188-2.926 1.602-.714.284-1.452.51-2.174.775-.15.055-.3.149-.418.259-1.224 1.13-2.625 1.94-4.26 2.285-.37.078-.805.014-1.175-.098-1.473-.445-2.788-1.18-3.892-2.27a.692.692 0 0 0-.272-.149c-1.35-.43-2.684-.905-3.931-1.588-.35-.19-.676-.42-1.014-.632-.81-.51-1.026-1.267-.893-2.166.355-2.387 1.13-4.632 2.235-6.772a.745.745 0 0 0 .07-.375c-.106-1.522-.064-3.034.293-4.525.064-.266.162-.529.281-.775.146-.299.32-.442.58-.449zm9.222 6.72c-.354.04-.54.264-.72.72-.031.084-.06.168-.081.253-.197.782-.122 1.563-.025 2.352.108.89.498 1.492 1.367 1.832 1.379.54 2.11 1.645 2.442 3.047.08.343.148.688.228 1.068.39-.138.764-.265 1.135-.404.998-.373 1.972-.794 2.863-1.39.15-.1.224-.212.195-.393-.091-.586-.142-1.18-.273-1.758-.409-1.806-1.407-3.178-3.08-4.018-.61-.305-1.222-.614-1.861-.845a9.586 9.586 0 0 0-1.774-.444 1.586 1.586 0 0 0-.416-.02zm-4.208.01a2.26 2.26 0 0 0-.264.036c-1.57.32-2.996.965-4.298 1.892-.489.348-.91.766-1.225 1.282-.727 1.193-1.073 2.5-1.152 3.886-.01.178.053.288.199.364.722.375 1.433.777 2.172 1.117.583.268 1.2.462 1.824.697.083-.39.15-.737.23-1.08.331-1.402 1.073-2.48 2.436-3.06.05-.02.093-.052.143-.069.723-.249 1.07-.77 1.185-1.516.143-.919.26-1.829-.03-2.736-.22-.7-.494-.872-1.22-.812zm2.594 7.503c-.96.045-1.653.137-2.274.505-.426.254-.559.555-.396.98.366.951 1 1.69 1.89 2.19.33.184.685.193 1.02.01.919-.498 1.555-1.252 1.929-2.22.14-.365.044-.626-.274-.864-.147-.11-.312-.219-.486-.266-.544-.146-1.097-.263-1.409-.335z" }) + ] + } + ); +}); + +exports.default = SiProtocolsdotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.d.ts new file mode 100644 index 000000000..184eb54d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4D9FE7"; +declare const SiProtocolsdotio: IconType; +export { SiProtocolsdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.mjs new file mode 100644 index 000000000..c01b6c947 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtocolsdotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4D9FE7"; +const SiProtocolsdotio = React.forwardRef(function SiProtocolsdotio2({ title = "protocols.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.55.927c-.723.046-1.266.47-1.614 1.261a4.653 4.653 0 0 0-.215.6 11.007 11.007 0 0 0-.42 3.585c.052 1.007-.187 1.888-.6 2.797C.858 11.024.27 12.967.03 15.004c-.136 1.164.169 2.15 1.13 2.871.41.308.834.603 1.28.855 1.24.702 2.573 1.192 3.924 1.634a.825.825 0 0 1 .297.162c1.12 1.033 2.423 1.75 3.846 2.276 1.011.373 2.005.364 3.016-.01 1.057-.391 2.089-.853 2.944-1.576.76-.642 1.612-1.011 2.527-1.334 1.307-.462 2.566-1.037 3.69-1.872.934-.695 1.413-1.596 1.298-2.778-.023-.238-.04-.476-.076-.712-.3-1.942-.888-3.802-1.705-5.58-.356-.776-.658-1.524-.441-2.403-.075-.856-.128-1.726-.233-2.588-.083-.687-.24-1.365-.574-1.983-.442-.82-1.126-1.164-2.037-1-.32.057-.642.144-.94.273-1.61.698-2.904 1.8-3.95 3.198-.1.137-.194.184-.368.182a190.382 190.382 0 0 0-3.329-.002c-.144 0-.24-.014-.334-.144-.623-.877-1.389-1.615-2.256-2.247-.735-.536-1.51-1-2.406-1.22a2.601 2.601 0 0 0-.783-.08zm.096 1.152c.087-.002.183.012.292.04a4.5 4.5 0 0 1 .996.357c1.43.747 2.596 1.793 3.443 3.174.088.144.178.186.338.178.904-.042 1.806-.097 2.71-.103.62-.004 1.24.06 1.86.103.164.012.25-.04.337-.182.855-1.387 2.024-2.44 3.469-3.182a4.55 4.55 0 0 1 .973-.348c.43-.107.702.006.863.418.188.484.352.99.43 1.5.123.816.166 1.643.226 2.282-.037.648-.07 1.108-.086 1.569a.68.68 0 0 0 .08.322 21.82 21.82 0 0 1 2.174 6.377c.073.416.077.85.064 1.273-.013.481-.324.812-.673 1.1-.873.72-1.888 1.188-2.926 1.602-.714.284-1.452.51-2.174.775-.15.055-.3.149-.418.259-1.224 1.13-2.625 1.94-4.26 2.285-.37.078-.805.014-1.175-.098-1.473-.445-2.788-1.18-3.892-2.27a.692.692 0 0 0-.272-.149c-1.35-.43-2.684-.905-3.931-1.588-.35-.19-.676-.42-1.014-.632-.81-.51-1.026-1.267-.893-2.166.355-2.387 1.13-4.632 2.235-6.772a.745.745 0 0 0 .07-.375c-.106-1.522-.064-3.034.293-4.525.064-.266.162-.529.281-.775.146-.299.32-.442.58-.449zm9.222 6.72c-.354.04-.54.264-.72.72-.031.084-.06.168-.081.253-.197.782-.122 1.563-.025 2.352.108.89.498 1.492 1.367 1.832 1.379.54 2.11 1.645 2.442 3.047.08.343.148.688.228 1.068.39-.138.764-.265 1.135-.404.998-.373 1.972-.794 2.863-1.39.15-.1.224-.212.195-.393-.091-.586-.142-1.18-.273-1.758-.409-1.806-1.407-3.178-3.08-4.018-.61-.305-1.222-.614-1.861-.845a9.586 9.586 0 0 0-1.774-.444 1.586 1.586 0 0 0-.416-.02zm-4.208.01a2.26 2.26 0 0 0-.264.036c-1.57.32-2.996.965-4.298 1.892-.489.348-.91.766-1.225 1.282-.727 1.193-1.073 2.5-1.152 3.886-.01.178.053.288.199.364.722.375 1.433.777 2.172 1.117.583.268 1.2.462 1.824.697.083-.39.15-.737.23-1.08.331-1.402 1.073-2.48 2.436-3.06.05-.02.093-.052.143-.069.723-.249 1.07-.77 1.185-1.516.143-.919.26-1.829-.03-2.736-.22-.7-.494-.872-1.22-.812zm2.594 7.503c-.96.045-1.653.137-2.274.505-.426.254-.559.555-.396.98.366.951 1 1.69 1.89 2.19.33.184.685.193 1.02.01.919-.498 1.555-1.252 1.929-2.22.14-.365.044-.626-.274-.864-.147-.11-.312-.219-.486-.266-.544-.146-1.097-.263-1.409-.335z" }) + ] + } + ); +}); + +export { SiProtocolsdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.cjs new file mode 100644 index 000000000..2fec91215 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34A7C1"; +const SiProtodotio = React__namespace.forwardRef(function SiProtodotio2({ title = "Proto.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 11.997c-.728 0-1.316-.59-1.316-1.317S11.272 9.363 12 9.363s1.316.589 1.316 1.316-.588 1.318-1.316 1.318zm2.916-.021c0-2.828-1.109-5.397-2.916-7.298-1.807 1.9-2.916 4.47-2.916 7.298 0 1.297.234 2.535.66 3.683-.618.9-1.074 2.16-1.275 3.616.639-.767 1.422-1.306 2.292-1.591.363.555.78 1.096 1.239 1.574.461-.494.876-1.02 1.239-1.59.87.271 1.653.826 2.29 1.576-.199-1.456-.655-2.716-1.275-3.615.427-1.155.66-2.385.66-3.69l.002.037zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-22C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0z" }) + ] + } + ); +}); + +exports.default = SiProtodotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.d.ts new file mode 100644 index 000000000..216788133 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34A7C1"; +declare const SiProtodotio: IconType; +export { SiProtodotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.mjs new file mode 100644 index 000000000..0b0cc66dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtodotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34A7C1"; +const SiProtodotio = React.forwardRef(function SiProtodotio2({ title = "Proto.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 11.997c-.728 0-1.316-.59-1.316-1.317S11.272 9.363 12 9.363s1.316.589 1.316 1.316-.588 1.318-1.316 1.318zm2.916-.021c0-2.828-1.109-5.397-2.916-7.298-1.807 1.9-2.916 4.47-2.916 7.298 0 1.297.234 2.535.66 3.683-.618.9-1.074 2.16-1.275 3.616.639-.767 1.422-1.306 2.292-1.591.363.555.78 1.096 1.239 1.574.461-.494.876-1.02 1.239-1.59.87.271 1.653.826 2.29 1.576-.199-1.456-.655-2.716-1.275-3.615.427-1.155.66-2.385.66-3.69l.002.037zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-22C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0z" }) + ] + } + ); +}); + +export { SiProtodotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProton.cjs new file mode 100644 index 000000000..e1f40a8f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D4AFF"; +const SiProton = React__namespace.forwardRef(function SiProton2({ title = "Proton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.474 17.75V24h4.401v-5.979c0-.582.232-1.14.645-1.551a2.204 2.204 0 0 1 1.556-.643h4.513a7.955 7.955 0 0 0 5.612-2.318 7.907 7.907 0 0 0 2.325-5.595 7.91 7.91 0 0 0-2.325-5.596A7.958 7.958 0 0 0 13.587 0H2.474v7.812h4.401V4.129h6.416c.995 0 1.951.394 2.656 1.097.704.7 1.1 1.653 1.101 2.646a3.742 3.742 0 0 1-1.101 2.648 3.766 3.766 0 0 1-2.656 1.097H8.627a6.158 6.158 0 0 0-4.352 1.795 6.133 6.133 0 0 0-1.801 4.338Z" }) + ] + } + ); +}); + +exports.default = SiProton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProton.d.ts new file mode 100644 index 000000000..4571f4eab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D4AFF"; +declare const SiProton: IconType; +export { SiProton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProton.mjs new file mode 100644 index 000000000..8c927ef68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D4AFF"; +const SiProton = React.forwardRef(function SiProton2({ title = "Proton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.474 17.75V24h4.401v-5.979c0-.582.232-1.14.645-1.551a2.204 2.204 0 0 1 1.556-.643h4.513a7.955 7.955 0 0 0 5.612-2.318 7.907 7.907 0 0 0 2.325-5.595 7.91 7.91 0 0 0-2.325-5.596A7.958 7.958 0 0 0 13.587 0H2.474v7.812h4.401V4.129h6.416c.995 0 1.951.394 2.656 1.097.704.7 1.1 1.653 1.101 2.646a3.742 3.742 0 0 1-1.101 2.648 3.766 3.766 0 0 1-2.656 1.097H8.627a6.158 6.158 0 0 0-4.352 1.795 6.133 6.133 0 0 0-1.801 4.338Z" }) + ] + } + ); +}); + +export { SiProton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.cjs new file mode 100644 index 000000000..c31ec71e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#50B0E9"; +const SiProtoncalendar = React__namespace.forwardRef(function SiProtoncalendar2({ title = "Proton Calendar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.172 14.818V21.85h-4.276v-1.147c0-.584.21-1.151.592-1.596l3.684-4.288zm-4.93 5.884c0-.741.266-1.46.75-2.022l4.673-5.32c.522-.591 1.524-.92 2.262-.92h.967V7.007a1.919 1.919 0 0 0-1.928-1.914H0v14.295c0 1.36 1.11 2.462 2.482 2.462h7.76v-1.147zM18.8 5.197c.483.485.749 1.128.747 1.81v5.434H24V4.613c0-1.36-1.11-2.462-2.482-2.462H2.482A2.473 2.473 0 0 0 .006 4.438h16.96c.694 0 1.345.27 1.834.76zm.34 14.742c.817 0 1.45-.451 1.45-1.136a.953.953 0 0 0-.79-.971v-.013a.962.962 0 0 0 .485-.346.944.944 0 0 0 .185-.565c0-.632-.549-1.081-1.343-1.081-.99 0-1.384.712-1.415 1.21h.843a.54.54 0 0 1 .577-.495c.318 0 .549.196.549.48 0 .283-.213.473-.732.473h-.3v.713h.346c.536 0 .807.176.807.492s-.26.532-.655.532a.673.673 0 0 1-.686-.51h-.873c.063.733.683 1.222 1.551 1.217zm2-3.39v.806l.79-.532v3.06h.82v-3.988h-.635l-.974.655z" }) + ] + } + ); +}); + +exports.default = SiProtoncalendar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.d.ts new file mode 100644 index 000000000..330e1ca41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#50B0E9"; +declare const SiProtoncalendar: IconType; +export { SiProtoncalendar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.mjs new file mode 100644 index 000000000..c8a7e4a13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtoncalendar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#50B0E9"; +const SiProtoncalendar = React.forwardRef(function SiProtoncalendar2({ title = "Proton Calendar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.172 14.818V21.85h-4.276v-1.147c0-.584.21-1.151.592-1.596l3.684-4.288zm-4.93 5.884c0-.741.266-1.46.75-2.022l4.673-5.32c.522-.591 1.524-.92 2.262-.92h.967V7.007a1.919 1.919 0 0 0-1.928-1.914H0v14.295c0 1.36 1.11 2.462 2.482 2.462h7.76v-1.147zM18.8 5.197c.483.485.749 1.128.747 1.81v5.434H24V4.613c0-1.36-1.11-2.462-2.482-2.462H2.482A2.473 2.473 0 0 0 .006 4.438h16.96c.694 0 1.345.27 1.834.76zm.34 14.742c.817 0 1.45-.451 1.45-1.136a.953.953 0 0 0-.79-.971v-.013a.962.962 0 0 0 .485-.346.944.944 0 0 0 .185-.565c0-.632-.549-1.081-1.343-1.081-.99 0-1.384.712-1.415 1.21h.843a.54.54 0 0 1 .577-.495c.318 0 .549.196.549.48 0 .283-.213.473-.732.473h-.3v.713h.346c.536 0 .807.176.807.492s-.26.532-.655.532a.673.673 0 0 1-.686-.51h-.873c.063.733.683 1.222 1.551 1.217zm2-3.39v.806l.79-.532v3.06h.82v-3.988h-.635l-.974.655z" }) + ] + } + ); +}); + +export { SiProtoncalendar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.cjs new file mode 100644 index 000000000..8373ed271 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F50057"; +const SiProtondb = React__namespace.forwardRef(function SiProtondb2({ title = "ProtonDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.744 0C.781 0 0 .781 0 1.744v20.512C0 23.219.781 24 1.744 24h20.512c.963 0 1.744-.782 1.744-1.74V1.744C24 .781 23.218 0 22.26 0zm14.729 2.205v.004c.37 0 .704.08.996.25 1.26.728 1.55 2.996.904 5.846 2.8.855 4.625 2.238 4.625 3.695 0 1.457-1.813 2.836-4.6 3.691.65 2.84.367 5.102-.894 5.83a2.03 2.03 0 01-1.012.25c-1.232 0-2.846-.869-4.478-2.384-1.633 1.525-3.245 2.404-4.477 2.404-.376 0-.712-.079-1.006-.25-1.26-.728-1.55-2.996-.904-5.846-2.8-.855-4.625-2.238-4.625-3.695 0-1.452 1.814-2.83 4.605-3.69-.65-2.84-.366-5.103.895-5.831a2.03 2.03 0 011.012-.25V3.23c-.206 0-.377.035-.514.118-.606.352-.866 1.687-.656 3.398.054.416.133.85.236 1.299.875-.22 1.838-.385 2.85-.492a21.401 21.401 0 011.851-2.24C9.82 3.962 8.446 3.227 7.518 3.227V2.225c1.231 0 2.846.87 4.478 2.384 1.633-1.525 3.245-2.404 4.477-2.404zm-.006 1.002c-.929.003-2.3.745-3.758 2.102.635.66 1.261 1.413 1.867 2.244 1.007.107 1.964.273 2.844.488.098-.455.181-.9.23-1.32.206-1.711-.059-3.04-.67-3.393a1.037 1.037 0 00-.513-.117zm-4.483 2.81c-.41.43-.824.91-1.23 1.438a26.105 26.105 0 012.478 0 17.822 17.822 0 00-1.248-1.437zM12 8.428c-.684 0-1.36.03-2.03.089a24.514 24.514 0 00-1.08 1.71c-.337.587-.648 1.188-.927 1.79.283.6.591 1.196.933 1.783.352.601.713 1.172 1.084 1.705.665.054 1.34.084 2.02.084.684 0 1.36-.03 2.03-.088a24.51 24.51 0 001.08-1.71c.332-.592.644-1.194.927-1.79a23.03 23.03 0 00-.933-1.785 25.587 25.587 0 00-1.086-1.705A25.016 25.016 0 0012 8.428zm-3.334.23c-.64.092-1.256.214-1.848.35.171.582.377 1.185.621 1.786a25.469 25.469 0 011.227-2.137zm6.658 0a23.32 23.32 0 011.23 2.127c.235-.597.442-1.194.608-1.77a18.82 18.82 0 00-1.838-.358zm2.81.62a22.088 22.088 0 01-.997 2.72c.415.938.753 1.85 1.008 2.73.435-.142.854-.287 1.24-.454 1.583-.674 2.61-1.57 2.625-2.27 0-.703-1.027-1.587-2.615-2.267a13.533 13.533 0 00-1.26-.459zm-12.282.006c-.435.142-.856.287-1.243.453-1.588.67-2.615 1.566-2.615 2.27s1.027 1.588 2.615 2.267c.391.167.812.318 1.252.46a22.04 22.04 0 01.996-2.717 21.563 21.563 0 01-1.005-2.733zm6.142.668A2.048 2.048 0 0114.043 12a2.048 2.048 0 01-2.049 2.049A2.048 2.048 0 019.947 12a2.048 2.048 0 012.047-2.049zm4.56 3.252c-.185.362-.374.723-.58 1.08a25.52 25.52 0 01-.646 1.06c.64-.092 1.261-.215 1.848-.357a18.93 18.93 0 00-.621-1.783zm-9.115.024c-.234.596-.439 1.192-.605 1.77.587.14 1.202.258 1.838.35a37.4 37.4 0 01-.647-1.044c-.21-.357-.4-.72-.586-1.076zm9.99 2.728c-.874.22-1.837.385-2.849.492a21.402 21.402 0 01-1.851 2.24c1.461 1.35 2.834 2.086 3.763 2.086.205 0 .377-.034.514-.117.606-.352.864-1.685.654-3.396-.054-.416-.133-.85-.23-1.305zm-10.845.01c-.098.454-.182.9-.23 1.32-.206 1.711.058 3.039.67 3.39.131.079.304.119.51.124.928 0 2.301-.743 3.763-2.102a21.53 21.53 0 01-1.867-2.244 21.806 21.806 0 01-2.846-.488zm4.18.586c.41.528.83 1.007 1.246 1.437.41-.43.831-.91 1.232-1.437a26.056 26.056 0 01-2.478 0z" }) + ] + } + ); +}); + +exports.default = SiProtondb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.d.ts new file mode 100644 index 000000000..e7650a087 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F50057"; +declare const SiProtondb: IconType; +export { SiProtondb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.mjs new file mode 100644 index 000000000..9cc7a91a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F50057"; +const SiProtondb = React.forwardRef(function SiProtondb2({ title = "ProtonDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.744 0C.781 0 0 .781 0 1.744v20.512C0 23.219.781 24 1.744 24h20.512c.963 0 1.744-.782 1.744-1.74V1.744C24 .781 23.218 0 22.26 0zm14.729 2.205v.004c.37 0 .704.08.996.25 1.26.728 1.55 2.996.904 5.846 2.8.855 4.625 2.238 4.625 3.695 0 1.457-1.813 2.836-4.6 3.691.65 2.84.367 5.102-.894 5.83a2.03 2.03 0 01-1.012.25c-1.232 0-2.846-.869-4.478-2.384-1.633 1.525-3.245 2.404-4.477 2.404-.376 0-.712-.079-1.006-.25-1.26-.728-1.55-2.996-.904-5.846-2.8-.855-4.625-2.238-4.625-3.695 0-1.452 1.814-2.83 4.605-3.69-.65-2.84-.366-5.103.895-5.831a2.03 2.03 0 011.012-.25V3.23c-.206 0-.377.035-.514.118-.606.352-.866 1.687-.656 3.398.054.416.133.85.236 1.299.875-.22 1.838-.385 2.85-.492a21.401 21.401 0 011.851-2.24C9.82 3.962 8.446 3.227 7.518 3.227V2.225c1.231 0 2.846.87 4.478 2.384 1.633-1.525 3.245-2.404 4.477-2.404zm-.006 1.002c-.929.003-2.3.745-3.758 2.102.635.66 1.261 1.413 1.867 2.244 1.007.107 1.964.273 2.844.488.098-.455.181-.9.23-1.32.206-1.711-.059-3.04-.67-3.393a1.037 1.037 0 00-.513-.117zm-4.483 2.81c-.41.43-.824.91-1.23 1.438a26.105 26.105 0 012.478 0 17.822 17.822 0 00-1.248-1.437zM12 8.428c-.684 0-1.36.03-2.03.089a24.514 24.514 0 00-1.08 1.71c-.337.587-.648 1.188-.927 1.79.283.6.591 1.196.933 1.783.352.601.713 1.172 1.084 1.705.665.054 1.34.084 2.02.084.684 0 1.36-.03 2.03-.088a24.51 24.51 0 001.08-1.71c.332-.592.644-1.194.927-1.79a23.03 23.03 0 00-.933-1.785 25.587 25.587 0 00-1.086-1.705A25.016 25.016 0 0012 8.428zm-3.334.23c-.64.092-1.256.214-1.848.35.171.582.377 1.185.621 1.786a25.469 25.469 0 011.227-2.137zm6.658 0a23.32 23.32 0 011.23 2.127c.235-.597.442-1.194.608-1.77a18.82 18.82 0 00-1.838-.358zm2.81.62a22.088 22.088 0 01-.997 2.72c.415.938.753 1.85 1.008 2.73.435-.142.854-.287 1.24-.454 1.583-.674 2.61-1.57 2.625-2.27 0-.703-1.027-1.587-2.615-2.267a13.533 13.533 0 00-1.26-.459zm-12.282.006c-.435.142-.856.287-1.243.453-1.588.67-2.615 1.566-2.615 2.27s1.027 1.588 2.615 2.267c.391.167.812.318 1.252.46a22.04 22.04 0 01.996-2.717 21.563 21.563 0 01-1.005-2.733zm6.142.668A2.048 2.048 0 0114.043 12a2.048 2.048 0 01-2.049 2.049A2.048 2.048 0 019.947 12a2.048 2.048 0 012.047-2.049zm4.56 3.252c-.185.362-.374.723-.58 1.08a25.52 25.52 0 01-.646 1.06c.64-.092 1.261-.215 1.848-.357a18.93 18.93 0 00-.621-1.783zm-9.115.024c-.234.596-.439 1.192-.605 1.77.587.14 1.202.258 1.838.35a37.4 37.4 0 01-.647-1.044c-.21-.357-.4-.72-.586-1.076zm9.99 2.728c-.874.22-1.837.385-2.849.492a21.402 21.402 0 01-1.851 2.24c1.461 1.35 2.834 2.086 3.763 2.086.205 0 .377-.034.514-.117.606-.352.864-1.685.654-3.396-.054-.416-.133-.85-.23-1.305zm-10.845.01c-.098.454-.182.9-.23 1.32-.206 1.711.058 3.039.67 3.39.131.079.304.119.51.124.928 0 2.301-.743 3.763-2.102a21.53 21.53 0 01-1.867-2.244 21.806 21.806 0 01-2.846-.488zm4.18.586c.41.528.83 1.007 1.246 1.437.41-.43.831-.91 1.232-1.437a26.056 26.056 0 01-2.478 0z" }) + ] + } + ); +}); + +export { SiProtondb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.cjs new file mode 100644 index 000000000..b91cbb587 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB508D"; +const SiProtondrive = React__namespace.forwardRef(function SiProtondrive2({ title = "Proton Drive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 6.595v12.79c0 1.36-1.11 2.462-2.482 2.462h-1.62V9a2.925 2.925 0 0 0-2.93-2.914l-9.42.053a.943.943 0 0 1-.55-.172L4.905 4.493a2.918 2.918 0 0 0-1.694-.536H.1A2.47 2.47 0 0 1 2.482 2.15h4.657c.47 0 .928.148 1.305.424l1.559 1.134c.38.276.837.424 1.308.424h10.207A2.471 2.471 0 0 1 24 6.595zM18.897 9v12.85H2.482A2.471 2.471 0 0 1 0 19.387V4.957h3.21c.4 0 .792.122 1.118.353l2.095 1.476a1.94 1.94 0 0 0 1.13.353l9.402-.052A1.922 1.922 0 0 1 18.897 9z" }) + ] + } + ); +}); + +exports.default = SiProtondrive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.d.ts new file mode 100644 index 000000000..ac4f48297 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB508D"; +declare const SiProtondrive: IconType; +export { SiProtondrive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.mjs new file mode 100644 index 000000000..878538357 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtondrive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB508D"; +const SiProtondrive = React.forwardRef(function SiProtondrive2({ title = "Proton Drive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 6.595v12.79c0 1.36-1.11 2.462-2.482 2.462h-1.62V9a2.925 2.925 0 0 0-2.93-2.914l-9.42.053a.943.943 0 0 1-.55-.172L4.905 4.493a2.918 2.918 0 0 0-1.694-.536H.1A2.47 2.47 0 0 1 2.482 2.15h4.657c.47 0 .928.148 1.305.424l1.559 1.134c.38.276.837.424 1.308.424h10.207A2.471 2.471 0 0 1 24 6.595zM18.897 9v12.85H2.482A2.471 2.471 0 0 1 0 19.387V4.957h3.21c.4 0 .792.122 1.118.353l2.095 1.476a1.94 1.94 0 0 0 1.13.353l9.402-.052A1.922 1.922 0 0 1 18.897 9z" }) + ] + } + ); +}); + +export { SiProtondrive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.cjs new file mode 100644 index 000000000..cb955298f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D4AFF"; +const SiProtonmail = React__namespace.forwardRef(function SiProtonmail2({ title = "Proton Mail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.24 8.998 3.656-3.073v15.81H2.482C1.11 21.735 0 20.609 0 19.223V6.944l7.58 6.38a2.186 2.186 0 0 0 2.871-.042l4.792-4.284h-.003zm-5.456 3.538 1.809-1.616a2.438 2.438 0 0 1-1.178-.533L.905 2.395A.552.552 0 0 0 0 2.826v2.811l8.226 6.923a1.186 1.186 0 0 0 1.558-.024zM23.871 2.463a.551.551 0 0 0-.776-.068l-3.199 2.688v16.653h1.623c1.371 0 2.481-1.127 2.481-2.513V2.824a.551.551 0 0 0-.129-.36z" }) + ] + } + ); +}); + +exports.default = SiProtonmail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.d.ts new file mode 100644 index 000000000..9069622bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D4AFF"; +declare const SiProtonmail: IconType; +export { SiProtonmail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.mjs new file mode 100644 index 000000000..e85b0e920 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonmail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D4AFF"; +const SiProtonmail = React.forwardRef(function SiProtonmail2({ title = "Proton Mail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.24 8.998 3.656-3.073v15.81H2.482C1.11 21.735 0 20.609 0 19.223V6.944l7.58 6.38a2.186 2.186 0 0 0 2.871-.042l4.792-4.284h-.003zm-5.456 3.538 1.809-1.616a2.438 2.438 0 0 1-1.178-.533L.905 2.395A.552.552 0 0 0 0 2.826v2.811l8.226 6.923a1.186 1.186 0 0 0 1.558-.024zM23.871 2.463a.551.551 0 0 0-.776-.068l-3.199 2.688v16.653h1.623c1.371 0 2.481-1.127 2.481-2.513V2.824a.551.551 0 0 0-.129-.36z" }) + ] + } + ); +}); + +export { SiProtonmail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.cjs new file mode 100644 index 000000000..d10ecbf7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#66DEB1"; +const SiProtonvpn = React__namespace.forwardRef(function SiProtonvpn2({ title = "Proton VPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m10.176 20.058.858-1.28 6.513-9.838c.57-.86.026-2.014-1.005-2.131L.378 4.95l8.373 15.055a.84.84 0 0 0 1.424.052h.001zM23.586 7.14l-9.662 14.61c-1.036 1.567-3.38 1.478-4.293-.162l-.093-.168c.3-.01.594-.086.855-.235a1.85 1.85 0 0 0 .612-.57l.86-1.28 6.516-9.844c.46-.694.525-1.56.173-2.314a2.375 2.375 0 0 0-1.899-1.364L.493 3.956l-.476-.054C-.163 2.392 1.101.95 2.784 1.143l18.991 2.16c1.856.21 2.835 2.289 1.812 3.838z" }) + ] + } + ); +}); + +exports.default = SiProtonvpn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.d.ts new file mode 100644 index 000000000..042a3460d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#66DEB1"; +declare const SiProtonvpn: IconType; +export { SiProtonvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.mjs new file mode 100644 index 000000000..d829f3379 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtonvpn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#66DEB1"; +const SiProtonvpn = React.forwardRef(function SiProtonvpn2({ title = "Proton VPN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m10.176 20.058.858-1.28 6.513-9.838c.57-.86.026-2.014-1.005-2.131L.378 4.95l8.373 15.055a.84.84 0 0 0 1.424.052h.001zM23.586 7.14l-9.662 14.61c-1.036 1.567-3.38 1.478-4.293-.162l-.093-.168c.3-.01.594-.086.855-.235a1.85 1.85 0 0 0 .612-.57l.86-1.28 6.516-9.844c.46-.694.525-1.56.173-2.314a2.375 2.375 0 0 0-1.899-1.364L.493 3.956l-.476-.054C-.163 2.392 1.101.95 2.784 1.143l18.991 2.16c1.856.21 2.835 2.289 1.812 3.838z" }) + ] + } + ); +}); + +export { SiProtonvpn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.cjs new file mode 100644 index 000000000..dd31c424f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7ACB10"; +const SiProtools = React__namespace.forwardRef(function SiProtools2({ title = "Pro Tools", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.505 15.452Q.27 14.63.14 13.762.01 12.891.01 12q0-2.49.94-4.673.94-2.184 2.572-3.804Q5.155 1.902 7.339.938 9.523 0 12.012 0q2.465 0 4.65.94 2.183.962 3.815 2.583 1.633 1.62 2.572 3.804.94 2.184.94 4.673 0 .869-.118 1.714-.118.846-.352 1.644.21.047.34.07l.13.024-1.363 3.429-.188-.012-.54-.106Q21.1 19.937 20.02 20.9q-1.057.987-2.325 1.668-1.268.68-2.724 1.056-1.433.376-2.96.376-1.55 0-3.005-.376-1.433-.375-2.7-1.068-1.269-.693-2.35-1.656-1.08-.963-1.878-2.16-.282.094-.434.117l-.153.024-1.48-3.382.118.012.376-.059zM22.744 12q0-2.23-.846-4.18-.845-1.95-2.301-3.405-1.456-1.456-3.429-2.301-1.949-.846-4.156-.846-2.231 0-4.18.846-1.973.845-3.429 2.3Q2.947 5.872 2.102 7.82 1.256 9.77 1.256 12q0 .751.106 1.491.106.74.317 1.444.892-.516 2.02-1.972 1.127-1.456 1.808-2.912.352-.728.916-1.597.54-.869 1.338-1.632.799-.763 1.855-1.256 1.057-.517 2.396-.517 1.315 0 2.419.587 1.103.587 1.913 1.35.81.764 1.304 1.492.516.727.657.986.165.282.47.94.329.633.728 1.361.4.728.822 1.433.423.68.798 1.033.259.258.564.446.305.188.61.329.212-.728.33-1.48.117-.751.117-1.526zM12.012 22.732q1.338 0 2.583-.305 1.268-.33 2.383-.916 1.116-.587 2.055-1.41.94-.821 1.668-1.83-.94-.494-2.173-1.645-1.233-1.15-2.5-3.358-.142-.235-.494-.94-.352-.704-.857-1.455-.505-.752-1.115-1.339t-1.268-.587q-.681 0-1.386.634-.704.61-1.303 1.386-.6.775-1.022 1.503-.423.704-.54.916-1.174 2.066-2.477 3.205-1.304 1.139-2.29 1.656.728 1.01 1.667 1.831.963.846 2.079 1.433 1.115.587 2.36.892 1.268.329 2.63.329z" }) + ] + } + ); +}); + +exports.default = SiProtools; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.d.ts new file mode 100644 index 000000000..9b54b1632 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7ACB10"; +declare const SiProtools: IconType; +export { SiProtools as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.mjs new file mode 100644 index 000000000..a59e4dbd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtools.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7ACB10"; +const SiProtools = React.forwardRef(function SiProtools2({ title = "Pro Tools", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.505 15.452Q.27 14.63.14 13.762.01 12.891.01 12q0-2.49.94-4.673.94-2.184 2.572-3.804Q5.155 1.902 7.339.938 9.523 0 12.012 0q2.465 0 4.65.94 2.183.962 3.815 2.583 1.633 1.62 2.572 3.804.94 2.184.94 4.673 0 .869-.118 1.714-.118.846-.352 1.644.21.047.34.07l.13.024-1.363 3.429-.188-.012-.54-.106Q21.1 19.937 20.02 20.9q-1.057.987-2.325 1.668-1.268.68-2.724 1.056-1.433.376-2.96.376-1.55 0-3.005-.376-1.433-.375-2.7-1.068-1.269-.693-2.35-1.656-1.08-.963-1.878-2.16-.282.094-.434.117l-.153.024-1.48-3.382.118.012.376-.059zM22.744 12q0-2.23-.846-4.18-.845-1.95-2.301-3.405-1.456-1.456-3.429-2.301-1.949-.846-4.156-.846-2.231 0-4.18.846-1.973.845-3.429 2.3Q2.947 5.872 2.102 7.82 1.256 9.77 1.256 12q0 .751.106 1.491.106.74.317 1.444.892-.516 2.02-1.972 1.127-1.456 1.808-2.912.352-.728.916-1.597.54-.869 1.338-1.632.799-.763 1.855-1.256 1.057-.517 2.396-.517 1.315 0 2.419.587 1.103.587 1.913 1.35.81.764 1.304 1.492.516.727.657.986.165.282.47.94.329.633.728 1.361.4.728.822 1.433.423.68.798 1.033.259.258.564.446.305.188.61.329.212-.728.33-1.48.117-.751.117-1.526zM12.012 22.732q1.338 0 2.583-.305 1.268-.33 2.383-.916 1.116-.587 2.055-1.41.94-.821 1.668-1.83-.94-.494-2.173-1.645-1.233-1.15-2.5-3.358-.142-.235-.494-.94-.352-.704-.857-1.455-.505-.752-1.115-1.339t-1.268-.587q-.681 0-1.386.634-.704.61-1.303 1.386-.6.775-1.022 1.503-.423.704-.54.916-1.174 2.066-2.477 3.205-1.304 1.139-2.29 1.656.728 1.01 1.667 1.831.963.846 2.079 1.433 1.115.587 2.36.892 1.268.329 2.63.329z" }) + ] + } + ); +}); + +export { SiProtools as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.cjs new file mode 100644 index 000000000..26088d3e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED163A"; +const SiProtractor = React__namespace.forwardRef(function SiProtractor2({ title = "Protractor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.37 0 0 5.372 0 12s5.371 12 12 12c6.628 0 12-5.372 12-12S18.627 0 12 0zm-.273 3.789v1.71h.545v-1.71a9.055 9.055 0 015.961 2.468l-1.277 1.278.386.386 1.277-1.278a9.057 9.057 0 012.469 5.96h-1.71v.546h1.717v2.001H2.905v-2H4.62v-.546h-1.71a9.058 9.058 0 012.469-5.96L6.658 7.92l.386-.386-1.278-1.278a9.056 9.056 0 015.96-2.468zM12 6.965a5.912 5.912 0 00-5.913 5.912h11.824A5.91 5.91 0 0012 6.965z" }) + ] + } + ); +}); + +exports.default = SiProtractor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.d.ts new file mode 100644 index 000000000..bf990b80e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED163A"; +declare const SiProtractor: IconType; +export { SiProtractor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.mjs new file mode 100644 index 000000000..ff44e23a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProtractor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED163A"; +const SiProtractor = React.forwardRef(function SiProtractor2({ title = "Protractor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.37 0 0 5.372 0 12s5.371 12 12 12c6.628 0 12-5.372 12-12S18.627 0 12 0zm-.273 3.789v1.71h.545v-1.71a9.055 9.055 0 015.961 2.468l-1.277 1.278.386.386 1.277-1.278a9.057 9.057 0 012.469 5.96h-1.71v.546h1.717v2.001H2.905v-2H4.62v-.546h-1.71a9.058 9.058 0 012.469-5.96L6.658 7.92l.386-.386-1.278-1.278a9.056 9.056 0 015.96-2.468zM12 6.965a5.912 5.912 0 00-5.913 5.912h11.824A5.91 5.91 0 0012 6.965z" }) + ] + } + ); +}); + +export { SiProtractor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.cjs new file mode 100644 index 000000000..03e66d25e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E57000"; +const SiProxmox = React__namespace.forwardRef(function SiProxmox2({ title = "Proxmox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.928 1.825c-1.09.553-1.09.64-.07 1.78 5.655 6.295 7.004 7.782 7.107 7.782.139.017 7.971-8.542 8.058-8.801.034-.07-.208-.312-.519-.536-.415-.312-.864-.433-1.712-.467-1.59-.104-2.144.242-4.115 2.455-.899 1.003-1.66 1.833-1.66 1.833-.017 0-.76-.813-1.642-1.798S8.473 2.1 8.127 1.91c-.796-.45-2.421-.484-3.2-.086zM1.297 4.367C.45 4.695 0 5.007 0 5.248c0 .121 1.331 1.678 2.94 3.459 1.625 1.78 2.939 3.268 2.939 3.302 0 .035-1.331 1.522-2.94 3.303C1.314 17.11.017 18.683.035 18.822c.086.467 1.504 1.055 2.541 1.055 1.678-.018 2.058-.312 5.603-4.202 1.78-1.954 3.233-3.614 3.233-3.666 0-.069-1.435-1.694-3.199-3.63-2.3-2.508-3.423-3.632-3.96-3.874-.812-.398-2.126-.467-2.956-.138zm18.467.12c-.502.26-1.764 1.505-3.943 3.891-1.763 1.937-3.199 3.562-3.199 3.631 0 .07 1.453 1.712 3.234 3.666 3.544 3.89 3.925 4.184 5.602 4.202 1.038 0 2.455-.588 2.542-1.055.017-.156-1.28-1.712-2.905-3.493-1.608-1.78-2.94-3.285-2.94-3.32 0-.034 1.332-1.539 2.94-3.32C22.72 6.91 24.017 5.352 24 5.214c-.087-.45-1.366-.968-2.473-1.038-.795-.034-1.21.035-1.763.312zM7.954 16.973c-2.144 2.369-3.908 4.374-3.943 4.46-.034.07.208.312.52.537.414.311.864.432 1.711.467 1.574.103 2.161-.26 4.15-2.508.864-.968 1.608-1.78 1.625-1.78s.761.812 1.643 1.798c2.023 2.248 2.559 2.576 4.132 2.49.848-.035 1.297-.156 1.712-.467.311-.225.553-.467.519-.536-.087-.26-7.92-8.819-8.058-8.801-.069 0-1.867 1.954-4.011 4.34z" }) + ] + } + ); +}); + +exports.default = SiProxmox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.d.ts new file mode 100644 index 000000000..f75410aaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E57000"; +declare const SiProxmox: IconType; +export { SiProxmox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.mjs new file mode 100644 index 000000000..621126b23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiProxmox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E57000"; +const SiProxmox = React.forwardRef(function SiProxmox2({ title = "Proxmox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.928 1.825c-1.09.553-1.09.64-.07 1.78 5.655 6.295 7.004 7.782 7.107 7.782.139.017 7.971-8.542 8.058-8.801.034-.07-.208-.312-.519-.536-.415-.312-.864-.433-1.712-.467-1.59-.104-2.144.242-4.115 2.455-.899 1.003-1.66 1.833-1.66 1.833-.017 0-.76-.813-1.642-1.798S8.473 2.1 8.127 1.91c-.796-.45-2.421-.484-3.2-.086zM1.297 4.367C.45 4.695 0 5.007 0 5.248c0 .121 1.331 1.678 2.94 3.459 1.625 1.78 2.939 3.268 2.939 3.302 0 .035-1.331 1.522-2.94 3.303C1.314 17.11.017 18.683.035 18.822c.086.467 1.504 1.055 2.541 1.055 1.678-.018 2.058-.312 5.603-4.202 1.78-1.954 3.233-3.614 3.233-3.666 0-.069-1.435-1.694-3.199-3.63-2.3-2.508-3.423-3.632-3.96-3.874-.812-.398-2.126-.467-2.956-.138zm18.467.12c-.502.26-1.764 1.505-3.943 3.891-1.763 1.937-3.199 3.562-3.199 3.631 0 .07 1.453 1.712 3.234 3.666 3.544 3.89 3.925 4.184 5.602 4.202 1.038 0 2.455-.588 2.542-1.055.017-.156-1.28-1.712-2.905-3.493-1.608-1.78-2.94-3.285-2.94-3.32 0-.034 1.332-1.539 2.94-3.32C22.72 6.91 24.017 5.352 24 5.214c-.087-.45-1.366-.968-2.473-1.038-.795-.034-1.21.035-1.763.312zM7.954 16.973c-2.144 2.369-3.908 4.374-3.943 4.46-.034.07.208.312.52.537.414.311.864.432 1.711.467 1.574.103 2.161-.26 4.15-2.508.864-.968 1.608-1.78 1.625-1.78s.761.812 1.643 1.798c2.023 2.248 2.559 2.576 4.132 2.49.848-.035 1.297-.156 1.712-.467.311-.225.553-.467.519-.536-.087-.26-7.92-8.819-8.058-8.801-.069 0-1.867 1.954-4.011 4.34z" }) + ] + } + ); +}); + +export { SiProxmox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.cjs new file mode 100644 index 000000000..5a3a2bf5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#10539F"; +const SiPterodactyl = React__namespace.forwardRef(function SiPterodactyl2({ title = "Pterodactyl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.236 3.775a8.404 8.404 0 0 0-.535.004c-.576 0-1.573.103-2.201.234-1.834.367-4.348 1.65-5.5 2.855-1.362 1.415-1.362 1.755 0 .917 1.074-.708 4.663-2.227 5.187-2.227.157 0 .287.106.287.264 0 .13.524-.132 1.153-.604.628-.445 1.363-.969 1.625-1.152.334-.197.372-.275-.016-.291zm1.262 2.449c-.475.01-.894.041-1.143.094-1.676.34-3.457 1.388-5.29 3.117-.97.917-1.782 1.571-1.782 1.414 0-.157.104-.367.262-.445.419-.262 2.698-3.56 2.54-3.692-.209-.236-3.902 1.57-5.605 2.723-1.99 1.362-4.19 3.746-4.95 5.422-.34.707-.575 1.336-.523 1.389.053.026.89-.525 1.86-1.258.969-.734 1.833-1.257 1.912-1.178.078.079-.42.732-1.127 1.44-.707.733-1.206 1.31-1.127 1.31.078 0 1.152-.42 2.357-.943l2.174-.916.395.601c1.283 1.991 3.325 2.882 6.547 2.803 1.729-.026 2.096.028 2.986.656.55.367 1.153.68 1.336.68.184 0 .393.183.498.393.079.21.418.394.733.394.524-.026.55-.053.158-.289-.262-.13-.473-.394-.473-.55 0-.158.21-.444.473-.628.419-.314.419-.34 0-.367-.236 0-.525.105-.604.262-.288.471-1.1.261-1.545-.367-.393-.629-.393-.655.577-.97l.968-.314-1.832-.89c-.995-.472-2.044-.865-2.306-.865-.42 0-.47-.13-.313-.864.603-2.829 3.325-4.794 8.46-6.103C23.133 8.02 24 7.733 24 7.628c0-.288-4.166-1.23-6.026-1.361a14.798 14.798 0 0 0-1.476-.043Zm-12.354 5.36c.157 0 .159.156-.05.392-.184.236-.394.341-.446.29-.183-.184.182-.683.496-.683zm13.07 6.023a.535.535 0 0 0-.417.264c-.079.13-.054.261.103.261.131 0 .342-.13.42-.261.079-.157.052-.264-.105-.264zm-2.827.787c-.577 0-.628.052-.34.393.183.21.628.392.968.392.577 0 .628-.052.34-.392-.183-.21-.628-.393-.968-.393z" }) + ] + } + ); +}); + +exports.default = SiPterodactyl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.d.ts new file mode 100644 index 000000000..cea4c9695 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#10539F"; +declare const SiPterodactyl: IconType; +export { SiPterodactyl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.mjs new file mode 100644 index 000000000..45cc80dab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPterodactyl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#10539F"; +const SiPterodactyl = React.forwardRef(function SiPterodactyl2({ title = "Pterodactyl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.236 3.775a8.404 8.404 0 0 0-.535.004c-.576 0-1.573.103-2.201.234-1.834.367-4.348 1.65-5.5 2.855-1.362 1.415-1.362 1.755 0 .917 1.074-.708 4.663-2.227 5.187-2.227.157 0 .287.106.287.264 0 .13.524-.132 1.153-.604.628-.445 1.363-.969 1.625-1.152.334-.197.372-.275-.016-.291zm1.262 2.449c-.475.01-.894.041-1.143.094-1.676.34-3.457 1.388-5.29 3.117-.97.917-1.782 1.571-1.782 1.414 0-.157.104-.367.262-.445.419-.262 2.698-3.56 2.54-3.692-.209-.236-3.902 1.57-5.605 2.723-1.99 1.362-4.19 3.746-4.95 5.422-.34.707-.575 1.336-.523 1.389.053.026.89-.525 1.86-1.258.969-.734 1.833-1.257 1.912-1.178.078.079-.42.732-1.127 1.44-.707.733-1.206 1.31-1.127 1.31.078 0 1.152-.42 2.357-.943l2.174-.916.395.601c1.283 1.991 3.325 2.882 6.547 2.803 1.729-.026 2.096.028 2.986.656.55.367 1.153.68 1.336.68.184 0 .393.183.498.393.079.21.418.394.733.394.524-.026.55-.053.158-.289-.262-.13-.473-.394-.473-.55 0-.158.21-.444.473-.628.419-.314.419-.34 0-.367-.236 0-.525.105-.604.262-.288.471-1.1.261-1.545-.367-.393-.629-.393-.655.577-.97l.968-.314-1.832-.89c-.995-.472-2.044-.865-2.306-.865-.42 0-.47-.13-.313-.864.603-2.829 3.325-4.794 8.46-6.103C23.133 8.02 24 7.733 24 7.628c0-.288-4.166-1.23-6.026-1.361a14.798 14.798 0 0 0-1.476-.043Zm-12.354 5.36c.157 0 .159.156-.05.392-.184.236-.394.341-.446.29-.183-.184.182-.683.496-.683zm13.07 6.023a.535.535 0 0 0-.417.264c-.079.13-.054.261.103.261.131 0 .342-.13.42-.261.079-.157.052-.264-.105-.264zm-2.827.787c-.577 0-.628.052-.34.393.183.21.628.392.968.392.577 0 .628-.052.34-.392-.183-.21-.628-.393-.968-.393z" }) + ] + } + ); +}); + +export { SiPterodactyl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.cjs new file mode 100644 index 000000000..762b70b91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4B942"; +const SiPubg = React__namespace.forwardRef(function SiPubg2({ title = "PUBG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.425 20.693c-.107-.247-.132-.4-.131-.8 0-.376.015-.478.208-1.416a38 38 0 0 0 .2-1.015c-.1-.056-.481-.376-.7-.587-.49-.472-.799-.938-.942-1.415-.059-.195-.067-.282-.056-.592.013-.341.02-.378.127-.599a2 2 0 0 1 .257-.39c.14-.15.145-.161.188-.465.024-.171.072-.493.105-.715.054-.36.056-.424.018-.592a2.84 2.84 0 0 1 .082-1.529c.358-.99 1.39-1.681 3-2.007 1.226-.249 2.815-.265 4.374-.045 1.537.218 3.344.715 5.011 1.38.214.086.392.152.396.148.014-.014-1.28-.668-1.61-.814A17 17 0 0 0 8.28 8.073C7.472 7.92 7.22 7.9 6.147 7.9c-.931 0-1.068.007-1.46.073a7 7 0 0 0-.836.18c-.1.03-.056-.046.082-.141.516-.356 1.36-.69 2.23-.886.853-.191.851-.177.023-.165-.407.006-.74.002-.74-.009s.025-.041.055-.068a10 10 0 0 0 .342-.376c.493-.56 1.253-1.22 1.923-1.667 1.278-.854 2.553-1.345 4.124-1.588.51-.08 2.061-.08 2.6 0 1.682.245 2.964.707 4.14 1.49.554.37.864.624 1.339 1.101.953.958 1.613 2.02 2.191 3.527.31.808.601 1.76.756 2.474l.072.331.164.115c.09.063.183.152.206.198s.166.448.316.894c.151.445.286.814.3.82s.026.111.026.234c0 .213-.004.225-.086.264-.106.05-1.037.255-1.16.255-.127 0-.23-.11-.322-.343l-.177-.436c-.054-.128-.172-.416-.263-.638-.302-.739-.295-.725-.394-.766-.08-.033-.128-.026-.393.064-.166.057-.35.13-.407.165a.55.55 0 0 0-.221.4c-.001.091.23.762.289.84.067.089 1.591 1.11 1.688 1.131.06.013.253-.014.528-.074l.438-.094c.003 0 .016.215.028.478.021.45.018.486-.043.607-.104.204-.003.16-1.67.723-1.314.444-1.564.497-2.353.497a4.5 4.5 0 0 1-2.388-.644c-.48-.283-1.052-.767-1.224-1.037-.133-.209-.16-.04.34-2.195.1-.427.194-.781.211-.787.017-.005.09.1.163.236s.164.266.202.29.287.14.552.259c.409.182.515.217.695.228a.82.82 0 0 0 .79-.41c.083-.131.097-.2.213-1.07l.158-1.178c.098-.725.09-.957-.046-1.248-.153-.327-.328-.474-.881-.741-.918-.444-.862-.435-1.279-.204-.158.088-.29.161-.293.164a8 8 0 0 0 .313-.006l.318-.01.52.24c.408.19.555.275.678.392.301.29.393.655.31 1.241-.052.37-.085.458-.23.615-.185.202-.334.269-.596.27-.208 0-.243-.01-.732-.24-.509-.24-.516-.242-.79-.249l-.276-.007-.039.156-.166.685c-.162.673-.477 1.976-.735 3.038-.11.454-.258 1.063-.327 1.355-.159.668-.214.86-.307 1.075-.219.503-.689.99-1.2 1.245-.578.287-1.076.342-1.828.205a45 45 0 0 0-4.48-.615c-.606-.053-2.655-.053-3.051 0-.826.111-1.187.19-1.535.337a1.93 1.93 0 0 0-.847.672c-.174.257-.253.71-.191 1.092.029.177-.008.192-.079.03zm.317-3.394c0-.028.06-.365.165-.929.1-.538.212-.748.576-1.086.604-.56 1.758-.924 3.331-1.05.557-.045 2.451-.014 3.072.05 1.287.131 1.77.195 2.88.38.906.151.886.15.7.073a58 58 0 0 0-2.054-.744c-1.222-.412-1.941-.578-3.207-.74-.625-.08-2.496-.081-3.082-.001-1.13.154-1.95.382-2.568.717-.523.282-.895.643-1.049 1.02-.09.22-.075.702.03.956.124.299.332.586.65.9.436.428.556.526.556.454m-.558-4.09c.15-.107.649-.33.963-.43.525-.169.957-.256 1.805-.367.497-.065 2.617-.093 3.284-.043l.716.053c.286.022.316-.01.392-.418l.184-.974c.19-1 .248-1.318.249-1.375 0-.105-.107-.19-.281-.217-.792-.129-2.275-.198-3.255-.153-2.203.1-3.583.628-4.102 1.566a1.6 1.6 0 0 0-.219.662q-.018.188.01.105c.143-.436.52-.88.926-1.094.237-.125.26-.132.26-.088 0 .015-.063.058-.14.096q-.273.131-.513.593c-.153.295-.193.468-.297 1.291a61 61 0 0 1-.096.74c-.021.135-.008.14.114.053m9.586-.184c.066-.052.078-.085.078-.236 0-.159-.01-.184-.102-.266-.12-.108-.188-.114-.298-.028-.161.128-.122.44.069.544.11.06.16.057.253-.014m7.349-1.91c.223-.15.319-.421.251-.712-.118-.515-.662-.73-.966-.384-.283.322-.166.91.22 1.1.178.088.361.087.495-.004m-.321-.32c-.187-.102-.245-.433-.103-.586.108-.117.285-.115.4.006.166.172.172.42.016.551-.105.088-.19.096-.313.029m-6.548-.146c.098-.139.036-.446-.105-.521-.09-.049-.204-.039-.257.022-.14.16-.142.312-.003.476.1.12.29.132.366.023z" }) + ] + } + ); +}); + +exports.default = SiPubg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.d.ts new file mode 100644 index 000000000..412b7b87f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4B942"; +declare const SiPubg: IconType; +export { SiPubg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.mjs new file mode 100644 index 000000000..708e3a6ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPubg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4B942"; +const SiPubg = React.forwardRef(function SiPubg2({ title = "PUBG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.425 20.693c-.107-.247-.132-.4-.131-.8 0-.376.015-.478.208-1.416a38 38 0 0 0 .2-1.015c-.1-.056-.481-.376-.7-.587-.49-.472-.799-.938-.942-1.415-.059-.195-.067-.282-.056-.592.013-.341.02-.378.127-.599a2 2 0 0 1 .257-.39c.14-.15.145-.161.188-.465.024-.171.072-.493.105-.715.054-.36.056-.424.018-.592a2.84 2.84 0 0 1 .082-1.529c.358-.99 1.39-1.681 3-2.007 1.226-.249 2.815-.265 4.374-.045 1.537.218 3.344.715 5.011 1.38.214.086.392.152.396.148.014-.014-1.28-.668-1.61-.814A17 17 0 0 0 8.28 8.073C7.472 7.92 7.22 7.9 6.147 7.9c-.931 0-1.068.007-1.46.073a7 7 0 0 0-.836.18c-.1.03-.056-.046.082-.141.516-.356 1.36-.69 2.23-.886.853-.191.851-.177.023-.165-.407.006-.74.002-.74-.009s.025-.041.055-.068a10 10 0 0 0 .342-.376c.493-.56 1.253-1.22 1.923-1.667 1.278-.854 2.553-1.345 4.124-1.588.51-.08 2.061-.08 2.6 0 1.682.245 2.964.707 4.14 1.49.554.37.864.624 1.339 1.101.953.958 1.613 2.02 2.191 3.527.31.808.601 1.76.756 2.474l.072.331.164.115c.09.063.183.152.206.198s.166.448.316.894c.151.445.286.814.3.82s.026.111.026.234c0 .213-.004.225-.086.264-.106.05-1.037.255-1.16.255-.127 0-.23-.11-.322-.343l-.177-.436c-.054-.128-.172-.416-.263-.638-.302-.739-.295-.725-.394-.766-.08-.033-.128-.026-.393.064-.166.057-.35.13-.407.165a.55.55 0 0 0-.221.4c-.001.091.23.762.289.84.067.089 1.591 1.11 1.688 1.131.06.013.253-.014.528-.074l.438-.094c.003 0 .016.215.028.478.021.45.018.486-.043.607-.104.204-.003.16-1.67.723-1.314.444-1.564.497-2.353.497a4.5 4.5 0 0 1-2.388-.644c-.48-.283-1.052-.767-1.224-1.037-.133-.209-.16-.04.34-2.195.1-.427.194-.781.211-.787.017-.005.09.1.163.236s.164.266.202.29.287.14.552.259c.409.182.515.217.695.228a.82.82 0 0 0 .79-.41c.083-.131.097-.2.213-1.07l.158-1.178c.098-.725.09-.957-.046-1.248-.153-.327-.328-.474-.881-.741-.918-.444-.862-.435-1.279-.204-.158.088-.29.161-.293.164a8 8 0 0 0 .313-.006l.318-.01.52.24c.408.19.555.275.678.392.301.29.393.655.31 1.241-.052.37-.085.458-.23.615-.185.202-.334.269-.596.27-.208 0-.243-.01-.732-.24-.509-.24-.516-.242-.79-.249l-.276-.007-.039.156-.166.685c-.162.673-.477 1.976-.735 3.038-.11.454-.258 1.063-.327 1.355-.159.668-.214.86-.307 1.075-.219.503-.689.99-1.2 1.245-.578.287-1.076.342-1.828.205a45 45 0 0 0-4.48-.615c-.606-.053-2.655-.053-3.051 0-.826.111-1.187.19-1.535.337a1.93 1.93 0 0 0-.847.672c-.174.257-.253.71-.191 1.092.029.177-.008.192-.079.03zm.317-3.394c0-.028.06-.365.165-.929.1-.538.212-.748.576-1.086.604-.56 1.758-.924 3.331-1.05.557-.045 2.451-.014 3.072.05 1.287.131 1.77.195 2.88.38.906.151.886.15.7.073a58 58 0 0 0-2.054-.744c-1.222-.412-1.941-.578-3.207-.74-.625-.08-2.496-.081-3.082-.001-1.13.154-1.95.382-2.568.717-.523.282-.895.643-1.049 1.02-.09.22-.075.702.03.956.124.299.332.586.65.9.436.428.556.526.556.454m-.558-4.09c.15-.107.649-.33.963-.43.525-.169.957-.256 1.805-.367.497-.065 2.617-.093 3.284-.043l.716.053c.286.022.316-.01.392-.418l.184-.974c.19-1 .248-1.318.249-1.375 0-.105-.107-.19-.281-.217-.792-.129-2.275-.198-3.255-.153-2.203.1-3.583.628-4.102 1.566a1.6 1.6 0 0 0-.219.662q-.018.188.01.105c.143-.436.52-.88.926-1.094.237-.125.26-.132.26-.088 0 .015-.063.058-.14.096q-.273.131-.513.593c-.153.295-.193.468-.297 1.291a61 61 0 0 1-.096.74c-.021.135-.008.14.114.053m9.586-.184c.066-.052.078-.085.078-.236 0-.159-.01-.184-.102-.266-.12-.108-.188-.114-.298-.028-.161.128-.122.44.069.544.11.06.16.057.253-.014m7.349-1.91c.223-.15.319-.421.251-.712-.118-.515-.662-.73-.966-.384-.283.322-.166.91.22 1.1.178.088.361.087.495-.004m-.321-.32c-.187-.102-.245-.433-.103-.586.108-.117.285-.115.4.006.166.172.172.42.016.551-.105.088-.19.096-.313.029m-6.548-.146c.098-.139.036-.446-.105-.521-.09-.049-.204-.039-.257.022-.14.16-.142.312-.003.476.1.12.29.132.366.023z" }) + ] + } + ); +}); + +export { SiPubg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.cjs new file mode 100644 index 000000000..9bc55d451 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#336699"; +const SiPublons = React__namespace.forwardRef(function SiPublons2({ title = "Publons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm10.34 5.1c.083.014.114.096.156.158.054.354.1.71.154 1.065.157-.162.31-.328.49-.464.867-.666 2.05-.94 3.11-.63.72.21 1.315.72 1.756 1.316.187.263.348.547.45.855.198.582.225 1.206.198 1.815-.053 1.12-.433 2.244-1.169 3.103a4.029 4.029 0 01-2.616 1.41 4.418 4.418 0 01-2.188-.317c.019 1.01.032 2.018.038 3.028.021.465-.021.938.087 1.396.031.14.123.292.28.308.302.036.608.013.912.02.057 0 .13.037.126.101.004.186.009.373-.004.56-.046.092-.17.07-.255.072a44.358 44.358 0 00-4.437 0l-.07-.056c-.004-.22-.063-.467.034-.671.3-.035.606.02.904-.032.191-.048.268-.26.295-.434.04-.32.027-.642.042-.963V8.348c0-.156.006-.31-.008-.465a.888.888 0 00-.34-.656c-.203-.158-.438-.265-.662-.388-.082-.052-.181-.097-.229-.187a.985.985 0 01.008-.337c.056-.066.144-.086.219-.122.73-.315 1.456-.636 2.185-.952.17-.068.346-.144.533-.144zm1.99 1.146c-.053 0-.104 0-.156.013a2.12 2.12 0 00-1.493.86c.005 1.44 0 2.88.003 4.32.005.327.073.676.302.924.524.512 1.302.692 2.014.593.577-.096 1.037-.538 1.279-1.054.344-.736.395-1.571.335-2.371-.053-.655-.181-1.312-.449-1.915-.184-.407-.442-.793-.811-1.054a1.717 1.717 0 00-1.024-.313z" }) + ] + } + ); +}); + +exports.default = SiPublons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.d.ts new file mode 100644 index 000000000..abcee2e92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#336699"; +declare const SiPublons: IconType; +export { SiPublons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.mjs new file mode 100644 index 000000000..8025bed65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPublons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#336699"; +const SiPublons = React.forwardRef(function SiPublons2({ title = "Publons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm10.34 5.1c.083.014.114.096.156.158.054.354.1.71.154 1.065.157-.162.31-.328.49-.464.867-.666 2.05-.94 3.11-.63.72.21 1.315.72 1.756 1.316.187.263.348.547.45.855.198.582.225 1.206.198 1.815-.053 1.12-.433 2.244-1.169 3.103a4.029 4.029 0 01-2.616 1.41 4.418 4.418 0 01-2.188-.317c.019 1.01.032 2.018.038 3.028.021.465-.021.938.087 1.396.031.14.123.292.28.308.302.036.608.013.912.02.057 0 .13.037.126.101.004.186.009.373-.004.56-.046.092-.17.07-.255.072a44.358 44.358 0 00-4.437 0l-.07-.056c-.004-.22-.063-.467.034-.671.3-.035.606.02.904-.032.191-.048.268-.26.295-.434.04-.32.027-.642.042-.963V8.348c0-.156.006-.31-.008-.465a.888.888 0 00-.34-.656c-.203-.158-.438-.265-.662-.388-.082-.052-.181-.097-.229-.187a.985.985 0 01.008-.337c.056-.066.144-.086.219-.122.73-.315 1.456-.636 2.185-.952.17-.068.346-.144.533-.144zm1.99 1.146c-.053 0-.104 0-.156.013a2.12 2.12 0 00-1.493.86c.005 1.44 0 2.88.003 4.32.005.327.073.676.302.924.524.512 1.302.692 2.014.593.577-.096 1.037-.538 1.279-1.054.344-.736.395-1.571.335-2.371-.053-.655-.181-1.312-.449-1.915-.184-.407-.442-.793-.811-1.054a1.717 1.717 0 00-1.024-.313z" }) + ] + } + ); +}); + +export { SiPublons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.cjs new file mode 100644 index 000000000..05e14eb97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#326599"; +const SiPubmed = React__namespace.forwardRef(function SiPubmed2({ title = "PubMed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.23 7.982l.006-1.005C7.846 1.417 5.096 0 5.096 0l.048 2.291C3.73 1.056 2.6 1.444 2.6 1.444l.118 15.307s4.218-1.796 5.428 5.505C10.238 13.535 21.401 24 21.401 24V9S10.52-.18 8.231 7.982zm9.79 9.941l-1.046-5.232-1.904 4.507h-.96l-1.72-4.301-1.046 5.04H9.321l2.093-9.39h.802l2.491 5.543 2.508-5.557h.869l2.075 9.39h-2.138z" }) + ] + } + ); +}); + +exports.default = SiPubmed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.d.ts new file mode 100644 index 000000000..f7c647629 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#326599"; +declare const SiPubmed: IconType; +export { SiPubmed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.mjs new file mode 100644 index 000000000..a2abe6c46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPubmed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#326599"; +const SiPubmed = React.forwardRef(function SiPubmed2({ title = "PubMed", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.23 7.982l.006-1.005C7.846 1.417 5.096 0 5.096 0l.048 2.291C3.73 1.056 2.6 1.444 2.6 1.444l.118 15.307s4.218-1.796 5.428 5.505C10.238 13.535 21.401 24 21.401 24V9S10.52-.18 8.231 7.982zm9.79 9.941l-1.046-5.232-1.904 4.507h-.96l-1.72-4.301-1.046 5.04H9.321l2.093-9.39h.802l2.491 5.543 2.508-5.557h.869l2.075 9.39h-2.138z" }) + ] + } + ); +}); + +export { SiPubmed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPug.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPug.cjs new file mode 100644 index 000000000..e1a8ec1c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPug.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A86454"; +const SiPug = React__namespace.forwardRef(function SiPug2({ title = "Pug", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0938 4.6358c-2.0663 0-3.6817.204-4.9221.5704a6.4511 6.4511 0 0 0 .0918-.084c.0374-.0375-.0507-.0625-.2285-.0684-.5335-.0175-1.8672.1436-2.9904.7051-1.273.599-4.118 3.7446-4.0432 3.9318.075.1872 1.4594 1.3458 1.8712 1.795.2621.2995 1.0485 2.9592 1.7599 2.51.189-.131.2656-.651.33-1.2931.0582.4975.1155 1.013.1934 1.4805.1123.7488 1.087 1.3474 1.1993 2.0587.1391 1.0138.7614 1.7234 1.9805 2.174.4847.6681 1.2382.3299 1.801.6347.8984.4867 1.9091.2617 2.92.2617 1.0108 0 1.984.186 2.92-.3007.576-.2995 1.32.0311 1.8087-.5802 1.2254-.4494 1.8319-1.1633 1.9727-2.1895.1123-.7113 1.0479-1.3099 1.1602-2.0587.0633-.3799.1102-.802.1582-1.2032.0568.4994.13.9042.291 1.0157.674.4493 1.4978-2.2104 1.7599-2.5099.4118-.4492 1.7963-1.6078 1.8712-1.795.0748-.1872-2.8074-3.3327-4.0803-3.9318-1.1231-.5615-2.4568-.7226-2.9903-.705-.167.0054-.2454.0287-.2247.0624-1.1748-.308-2.6728-.4805-4.6095-.4805zm.0293.5c2.2035 0 3.8486.2253 5.01.6153.1335.0449.2387.098.3593.1465.6901.715 1.6233 1.831 2.0138 3.1173.0246.081.0405.1658.0625.248.0003.0013-.0003.0028 0 .004v.0039c.0453.77.3158 1.4169.2305 1.9903-.1536.9982-.2285 1.9726-.373 2.84l-.002.0039v.0039c-.0289.1922-.218.4762-.4786.8067-.2606.3305-.5955.7024-.6817 1.248v.006l-.0019.0038c-.1006.733-.4207 1.1997-1.17 1.5821.1252-.4447.2051-1.055.2051-1.963.0374-1.1231.0766-1.5722-.8594-2.6954-.7184-.9236-1.704-1.5746-2.793-1.8985-.1111-.3899-.7217-.836-1.551-.836-.8285 0-1.4147.422-1.5352.8204-1.1098.3182-2.116.9759-2.8458 1.9141-.936 1.1232-.8594 1.6097-.8594 2.6955 0 .9037.0795 1.5135.2031 1.961-.7697-.385-1.1078-.857-1.207-1.5802v-.0097c-.0875-.5541-.4371-.9235-.7071-1.254-.27-.3305-.4626-.6166-.4903-.8008l-.002-.004v-.0038c-.1444-.8669-.2196-1.8406-.373-2.838v-.002c-.0853-.5734.1833-1.2203.2285-1.9903v.0156c.0131-.1437.0173-.241.0254-.371.3604-1.1587 1.1531-2.1726 1.8048-2.8752a6.4135 6.4135 0 0 1 .7246-.289c1.1921-.3916 2.8593-.6153 5.0628-.6153zm-5.2092 3.805a1.6473 1.6473 0 0 0-1.6349 1.6484 1.6473 1.6473 0 0 0 1.6485 1.6466 1.6473 1.6473 0 0 0 .4415-.0606c.3487-.3747.7177-.7223 1.1113-1.041a1.6473 1.6473 0 0 0 .0938-.545 1.6473 1.6473 0 0 0-1.6466-1.6485 1.6473 1.6473 0 0 0-.0136 0zm10.2973 0a1.6473 1.6473 0 0 0-1.6368 1.6484 1.6473 1.6473 0 0 0 .1504.6836c.3125.2642.611.547.8945.8477a1.6473 1.6473 0 0 0 .6036.1153 1.6473 1.6473 0 0 0 1.6465-1.6466 1.6473 1.6473 0 0 0-1.6465-1.6485 1.6473 1.6473 0 0 0-.0117 0zm-9.8715.4863a.4118.4118 0 0 1 .4101.412.4118.4118 0 0 1-.4101.4122.4118.4118 0 0 1-.4122-.4121.4118.4118 0 0 1 .4122-.4121zm9.471 0a.4118.4118 0 0 1 .4122.412.4118.4118 0 0 1-.4121.4122.4118.4118 0 0 1-.4122-.4121.4118.4118 0 0 1 .4122-.4121zm-5.1095 1.4863a.1498.2995 17.23 0 1 .0293.004.1498.2995 17.23 0 1 .0547.33.1498.2995 17.23 0 1-.2325.2422.1498.2995 17.23 0 1-.0527-.33.1498.2995 17.23 0 1 .2012-.2462zm.6719.0215a.2995.1498 75.54 0 1 .205.254.2995.1498 75.54 0 1-.0703.328.2995.1498 75.54 0 1-.2207-.2519.2995.1498 75.54 0 1 .0703-.3281.2995.1498 75.54 0 1 .0157-.002zm-.3164.4766s.0358.226.1855.3008c.1498.0749.8614-.1504.8614-.1504-.337.262-.9727.263-.9727.338v.373c0 .4079.0263 1.4614-.0313 1.6856.8238.0045 2.09 1.1255 2.09 2.508v.0741c-.0375-1.3478-1.6091-2.4337-2.0958-2.4337-.4867 0-2.0603 1.0485-2.0978 2.4337v-.0742c0-1.3626 1.2326-2.47 2.0567-2.506-.0704-.5517-.0722-1.1372-.0722-1.6875v-.373c-.2145-.0954-.4322-.1714-.6563-.2364.1846.0326.371.0488.545.0488.1497-.0749.1875-.3008.1875-.3008zm-3.0412 1.3477a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm1.1231 0a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm3.67 0a.1498.1498 0 0 1 .0079 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm1.1232 0a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm-5.6526.8985a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1484.1504.1498.1498 0 0 1-.1484.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm5.3908 0a.1498.1498 0 0 1 .006 0 .1498.1498 0 0 1 .1503.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1484-.1504.1498.1498 0 0 1 .1425-.1504Z" }) + ] + } + ); +}); + +exports.default = SiPug; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPug.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPug.d.ts new file mode 100644 index 000000000..69d5e4c96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPug.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A86454"; +declare const SiPug: IconType; +export { SiPug as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPug.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPug.mjs new file mode 100644 index 000000000..dd0704049 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPug.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A86454"; +const SiPug = React.forwardRef(function SiPug2({ title = "Pug", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0938 4.6358c-2.0663 0-3.6817.204-4.9221.5704a6.4511 6.4511 0 0 0 .0918-.084c.0374-.0375-.0507-.0625-.2285-.0684-.5335-.0175-1.8672.1436-2.9904.7051-1.273.599-4.118 3.7446-4.0432 3.9318.075.1872 1.4594 1.3458 1.8712 1.795.2621.2995 1.0485 2.9592 1.7599 2.51.189-.131.2656-.651.33-1.2931.0582.4975.1155 1.013.1934 1.4805.1123.7488 1.087 1.3474 1.1993 2.0587.1391 1.0138.7614 1.7234 1.9805 2.174.4847.6681 1.2382.3299 1.801.6347.8984.4867 1.9091.2617 2.92.2617 1.0108 0 1.984.186 2.92-.3007.576-.2995 1.32.0311 1.8087-.5802 1.2254-.4494 1.8319-1.1633 1.9727-2.1895.1123-.7113 1.0479-1.3099 1.1602-2.0587.0633-.3799.1102-.802.1582-1.2032.0568.4994.13.9042.291 1.0157.674.4493 1.4978-2.2104 1.7599-2.5099.4118-.4492 1.7963-1.6078 1.8712-1.795.0748-.1872-2.8074-3.3327-4.0803-3.9318-1.1231-.5615-2.4568-.7226-2.9903-.705-.167.0054-.2454.0287-.2247.0624-1.1748-.308-2.6728-.4805-4.6095-.4805zm.0293.5c2.2035 0 3.8486.2253 5.01.6153.1335.0449.2387.098.3593.1465.6901.715 1.6233 1.831 2.0138 3.1173.0246.081.0405.1658.0625.248.0003.0013-.0003.0028 0 .004v.0039c.0453.77.3158 1.4169.2305 1.9903-.1536.9982-.2285 1.9726-.373 2.84l-.002.0039v.0039c-.0289.1922-.218.4762-.4786.8067-.2606.3305-.5955.7024-.6817 1.248v.006l-.0019.0038c-.1006.733-.4207 1.1997-1.17 1.5821.1252-.4447.2051-1.055.2051-1.963.0374-1.1231.0766-1.5722-.8594-2.6954-.7184-.9236-1.704-1.5746-2.793-1.8985-.1111-.3899-.7217-.836-1.551-.836-.8285 0-1.4147.422-1.5352.8204-1.1098.3182-2.116.9759-2.8458 1.9141-.936 1.1232-.8594 1.6097-.8594 2.6955 0 .9037.0795 1.5135.2031 1.961-.7697-.385-1.1078-.857-1.207-1.5802v-.0097c-.0875-.5541-.4371-.9235-.7071-1.254-.27-.3305-.4626-.6166-.4903-.8008l-.002-.004v-.0038c-.1444-.8669-.2196-1.8406-.373-2.838v-.002c-.0853-.5734.1833-1.2203.2285-1.9903v.0156c.0131-.1437.0173-.241.0254-.371.3604-1.1587 1.1531-2.1726 1.8048-2.8752a6.4135 6.4135 0 0 1 .7246-.289c1.1921-.3916 2.8593-.6153 5.0628-.6153zm-5.2092 3.805a1.6473 1.6473 0 0 0-1.6349 1.6484 1.6473 1.6473 0 0 0 1.6485 1.6466 1.6473 1.6473 0 0 0 .4415-.0606c.3487-.3747.7177-.7223 1.1113-1.041a1.6473 1.6473 0 0 0 .0938-.545 1.6473 1.6473 0 0 0-1.6466-1.6485 1.6473 1.6473 0 0 0-.0136 0zm10.2973 0a1.6473 1.6473 0 0 0-1.6368 1.6484 1.6473 1.6473 0 0 0 .1504.6836c.3125.2642.611.547.8945.8477a1.6473 1.6473 0 0 0 .6036.1153 1.6473 1.6473 0 0 0 1.6465-1.6466 1.6473 1.6473 0 0 0-1.6465-1.6485 1.6473 1.6473 0 0 0-.0117 0zm-9.8715.4863a.4118.4118 0 0 1 .4101.412.4118.4118 0 0 1-.4101.4122.4118.4118 0 0 1-.4122-.4121.4118.4118 0 0 1 .4122-.4121zm9.471 0a.4118.4118 0 0 1 .4122.412.4118.4118 0 0 1-.4121.4122.4118.4118 0 0 1-.4122-.4121.4118.4118 0 0 1 .4122-.4121zm-5.1095 1.4863a.1498.2995 17.23 0 1 .0293.004.1498.2995 17.23 0 1 .0547.33.1498.2995 17.23 0 1-.2325.2422.1498.2995 17.23 0 1-.0527-.33.1498.2995 17.23 0 1 .2012-.2462zm.6719.0215a.2995.1498 75.54 0 1 .205.254.2995.1498 75.54 0 1-.0703.328.2995.1498 75.54 0 1-.2207-.2519.2995.1498 75.54 0 1 .0703-.3281.2995.1498 75.54 0 1 .0157-.002zm-.3164.4766s.0358.226.1855.3008c.1498.0749.8614-.1504.8614-.1504-.337.262-.9727.263-.9727.338v.373c0 .4079.0263 1.4614-.0313 1.6856.8238.0045 2.09 1.1255 2.09 2.508v.0741c-.0375-1.3478-1.6091-2.4337-2.0958-2.4337-.4867 0-2.0603 1.0485-2.0978 2.4337v-.0742c0-1.3626 1.2326-2.47 2.0567-2.506-.0704-.5517-.0722-1.1372-.0722-1.6875v-.373c-.2145-.0954-.4322-.1714-.6563-.2364.1846.0326.371.0488.545.0488.1497-.0749.1875-.3008.1875-.3008zm-3.0412 1.3477a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm1.1231 0a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm3.67 0a.1498.1498 0 0 1 .0079 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm1.1232 0a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1504.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm-5.6526.8985a.1498.1498 0 0 1 .0078 0 .1498.1498 0 0 1 .1484.1504.1498.1498 0 0 1-.1484.1504.1498.1498 0 0 1-.1504-.1504.1498.1498 0 0 1 .1426-.1504zm5.3908 0a.1498.1498 0 0 1 .006 0 .1498.1498 0 0 1 .1503.1504.1498.1498 0 0 1-.1504.1504.1498.1498 0 0 1-.1484-.1504.1498.1498 0 0 1 .1425-.1504Z" }) + ] + } + ); +}); + +export { SiPug as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.cjs new file mode 100644 index 000000000..bccfe56a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8A3391"; +const SiPulumi = React__namespace.forwardRef(function SiPulumi2({ title = "Pulumi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.997 0C10.226 0 8.79.83 8.79 1.856c0 1.025 1.436 1.856 3.207 1.856 1.772 0 3.208-.831 3.208-1.856C15.205.83 13.77 0 11.997 0zM5.95 3.488c-1.772 0-3.208.83-3.208 1.856C2.742 6.369 4.178 7.2 5.95 7.2c1.771 0 3.207-.831 3.207-1.856 0-1.025-1.436-1.856-3.207-1.856zm12.103 0c-1.772 0-3.208.83-3.208 1.856 0 1.025 1.436 1.856 3.208 1.856 1.771 0 3.207-.831 3.207-1.856 0-1.025-1.436-1.856-3.207-1.856zm-6.056 3.495c-1.771 0-3.207.831-3.207 1.856 0 1.025 1.436 1.856 3.207 1.856 1.772 0 3.208-.83 3.208-1.856 0-1.025-1.436-1.856-3.208-1.856zm-10.127.67a1.157 1.157 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.534 2.324 2.362 3.211 1.85.888-.513.89-2.171.003-3.706-.72-1.246-1.803-2.027-2.66-2zm20.257.004c-.857-.026-1.941.754-2.661 2-.886 1.535-.884 3.194.003 3.707.888.512 2.325-.316 3.211-1.85.886-1.534.885-3.193-.003-3.706a1.157 1.157 0 0 0-.55-.15zm-6.048 3.492c-.857-.026-1.94.754-2.66 2-.886 1.535-.885 3.194.003 3.706.887.513 2.325-.316 3.21-1.85.887-1.534.885-3.193-.003-3.706a1.157 1.157 0 0 0-.55-.15zm-8.16.001a1.157 1.157 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.535 2.324 2.363 3.211 1.85.888-.512.89-2.171.003-3.705-.72-1.247-1.803-2.028-2.66-2.002zm-6.047 3.494a1.157 1.157 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.534 2.324 2.362 3.212 1.85.887-.513.888-2.172.003-3.706-.72-1.246-1.804-2.027-2.661-2.001zm20.258.002c-.857-.026-1.941.755-2.66 2.001-.887 1.535-.885 3.193.003 3.706.887.512 2.325-.316 3.21-1.85.886-1.534.885-3.193-.003-3.706a1.157 1.157 0 0 0-.55-.15zm-6.047 3.492c-.858-.026-1.942.754-2.661 2-.886 1.535-.885 3.194.003 3.706.888.513 2.325-.315 3.21-1.85.887-1.533.885-3.193-.002-3.705a1.157 1.157 0 0 0-.55-.151zm-8.163.003a1.157 1.157 0 0 0-.55.151c-.887.513-.889 2.172-.003 3.706.886 1.534 2.323 2.363 3.211 1.85.888-.512.89-2.171.004-3.706-.72-1.246-1.804-2.027-2.662-2z" }) + ] + } + ); +}); + +exports.default = SiPulumi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.d.ts new file mode 100644 index 000000000..da0a003eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8A3391"; +declare const SiPulumi: IconType; +export { SiPulumi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.mjs new file mode 100644 index 000000000..0fb83459a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPulumi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8A3391"; +const SiPulumi = React.forwardRef(function SiPulumi2({ title = "Pulumi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.997 0C10.226 0 8.79.83 8.79 1.856c0 1.025 1.436 1.856 3.207 1.856 1.772 0 3.208-.831 3.208-1.856C15.205.83 13.77 0 11.997 0zM5.95 3.488c-1.772 0-3.208.83-3.208 1.856C2.742 6.369 4.178 7.2 5.95 7.2c1.771 0 3.207-.831 3.207-1.856 0-1.025-1.436-1.856-3.207-1.856zm12.103 0c-1.772 0-3.208.83-3.208 1.856 0 1.025 1.436 1.856 3.208 1.856 1.771 0 3.207-.831 3.207-1.856 0-1.025-1.436-1.856-3.207-1.856zm-6.056 3.495c-1.771 0-3.207.831-3.207 1.856 0 1.025 1.436 1.856 3.207 1.856 1.772 0 3.208-.83 3.208-1.856 0-1.025-1.436-1.856-3.208-1.856zm-10.127.67a1.157 1.157 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.534 2.324 2.362 3.211 1.85.888-.513.89-2.171.003-3.706-.72-1.246-1.803-2.027-2.66-2zm20.257.004c-.857-.026-1.941.754-2.661 2-.886 1.535-.884 3.194.003 3.707.888.512 2.325-.316 3.211-1.85.886-1.534.885-3.193-.003-3.706a1.157 1.157 0 0 0-.55-.15zm-6.048 3.492c-.857-.026-1.94.754-2.66 2-.886 1.535-.885 3.194.003 3.706.887.513 2.325-.316 3.21-1.85.887-1.534.885-3.193-.003-3.706a1.157 1.157 0 0 0-.55-.15zm-8.16.001a1.157 1.157 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.535 2.324 2.363 3.211 1.85.888-.512.89-2.171.003-3.705-.72-1.247-1.803-2.028-2.66-2.002zm-6.047 3.494a1.157 1.157 0 0 0-.55.151c-.888.513-.89 2.172-.004 3.706.886 1.534 2.324 2.362 3.212 1.85.887-.513.888-2.172.003-3.706-.72-1.246-1.804-2.027-2.661-2.001zm20.258.002c-.857-.026-1.941.755-2.66 2.001-.887 1.535-.885 3.193.003 3.706.887.512 2.325-.316 3.21-1.85.886-1.534.885-3.193-.003-3.706a1.157 1.157 0 0 0-.55-.15zm-6.047 3.492c-.858-.026-1.942.754-2.661 2-.886 1.535-.885 3.194.003 3.706.888.513 2.325-.315 3.21-1.85.887-1.533.885-3.193-.002-3.705a1.157 1.157 0 0 0-.55-.151zm-8.163.003a1.157 1.157 0 0 0-.55.151c-.887.513-.889 2.172-.003 3.706.886 1.534 2.323 2.363 3.211 1.85.888-.512.89-2.171.004-3.706-.72-1.246-1.804-2.027-2.662-2z" }) + ] + } + ); +}); + +export { SiPulumi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.cjs new file mode 100644 index 000000000..7a80f62b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#242B2F"; +const SiPuma = React__namespace.forwardRef(function SiPuma2({ title = "Puma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.845 3.008c-.417-.533-1.146-.106-1.467.08-2.284 1.346-2.621 3.716-3.417 5.077-.626 1.09-1.652 1.89-2.58 1.952-.686.049-1.43-.084-2.168-.405-1.807-.781-2.78-1.792-3.017-1.97-.487-.37-4.23-4.015-7.28-4.164 0 0-.372-.75-.465-.763-.222-.025-.45.451-.616.501-.15.053-.413-.512-.565-.487-.153.02-.302.586-.6.877-.22.213-.486.2-.637.463-.052.096-.034.265-.093.42-.127.32-.551.354-.555.697 0 .381.357.454.669.72.248.212.265.362.554.461.258.088.632-.187.964-.088.277.081.543.14.602.423.054.256 0 .658-.34.613-.112-.015-.598-.174-1.198-.11-.725.077-1.553.309-1.634 1.11-.041.447.514.97 1.055.866.371-.071.196-.506.399-.716.267-.27 1.772.944 3.172.944.593 0 1.031-.15 1.467-.605.04-.029.093-.102.155-.11a.632.632 0 01.195.088c1.131.897 1.984 2.7 6.13 2.721.582.007 1.25.279 1.796.777.48.433.764 1.125 1.037 1.825.418 1.053 1.161 2.069 2.292 3.203.06.068.99.78 1.06.833.012.01.084.167.053.255-.02.69-.123 2.67 1.365 2.753.366.02.275-.231.275-.41-.005-.341-.065-.685.113-1.04.253-.478-.526-.709-.509-1.756.019-.784-.645-.651-.984-1.25-.19-.343-.368-.532-.35-.946.073-2.38-.517-3.948-.805-4.327-.227-.294-.423-.403-.207-.54 1.24-.815 1.525-1.574 1.525-1.574.66-1.541 1.256-2.945 2.075-3.57.166-.12.589-.44.852-.56.763-.362 1.173-.578 1.388-.788.356-.337.635-1.053.294-1.48z" }) + ] + } + ); +}); + +exports.default = SiPuma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.d.ts new file mode 100644 index 000000000..bb86b24f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#242B2F"; +declare const SiPuma: IconType; +export { SiPuma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.mjs new file mode 100644 index 000000000..ff94a8d7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#242B2F"; +const SiPuma = React.forwardRef(function SiPuma2({ title = "Puma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.845 3.008c-.417-.533-1.146-.106-1.467.08-2.284 1.346-2.621 3.716-3.417 5.077-.626 1.09-1.652 1.89-2.58 1.952-.686.049-1.43-.084-2.168-.405-1.807-.781-2.78-1.792-3.017-1.97-.487-.37-4.23-4.015-7.28-4.164 0 0-.372-.75-.465-.763-.222-.025-.45.451-.616.501-.15.053-.413-.512-.565-.487-.153.02-.302.586-.6.877-.22.213-.486.2-.637.463-.052.096-.034.265-.093.42-.127.32-.551.354-.555.697 0 .381.357.454.669.72.248.212.265.362.554.461.258.088.632-.187.964-.088.277.081.543.14.602.423.054.256 0 .658-.34.613-.112-.015-.598-.174-1.198-.11-.725.077-1.553.309-1.634 1.11-.041.447.514.97 1.055.866.371-.071.196-.506.399-.716.267-.27 1.772.944 3.172.944.593 0 1.031-.15 1.467-.605.04-.029.093-.102.155-.11a.632.632 0 01.195.088c1.131.897 1.984 2.7 6.13 2.721.582.007 1.25.279 1.796.777.48.433.764 1.125 1.037 1.825.418 1.053 1.161 2.069 2.292 3.203.06.068.99.78 1.06.833.012.01.084.167.053.255-.02.69-.123 2.67 1.365 2.753.366.02.275-.231.275-.41-.005-.341-.065-.685.113-1.04.253-.478-.526-.709-.509-1.756.019-.784-.645-.651-.984-1.25-.19-.343-.368-.532-.35-.946.073-2.38-.517-3.948-.805-4.327-.227-.294-.423-.403-.207-.54 1.24-.815 1.525-1.574 1.525-1.574.66-1.541 1.256-2.945 2.075-3.57.166-.12.589-.44.852-.56.763-.362 1.173-.578 1.388-.788.356-.337.635-1.053.294-1.48z" }) + ] + } + ); +}); + +export { SiPuma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.cjs new file mode 100644 index 000000000..d6c5fa3d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFAE1A"; +const SiPuppet = React__namespace.forwardRef(function SiPuppet2({ title = "Puppet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.984 21.611H6.595v-2.388h2.39zM6.595 2.39h2.39v2.388h-2.39zm13.198 6.028h-5.48l.001-.002-2.941-2.941V0H4.207v7.166h5.48l2.938 2.938.002-.001v3.794l-.003-.003-2.94 2.94H4.207V24h7.166v-5.477l2.94-2.94h5.48V8.417" }) + ] + } + ); +}); + +exports.default = SiPuppet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.d.ts new file mode 100644 index 000000000..ff410a1ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFAE1A"; +declare const SiPuppet: IconType; +export { SiPuppet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.mjs new file mode 100644 index 000000000..507eb687c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFAE1A"; +const SiPuppet = React.forwardRef(function SiPuppet2({ title = "Puppet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.984 21.611H6.595v-2.388h2.39zM6.595 2.39h2.39v2.388h-2.39zm13.198 6.028h-5.48l.001-.002-2.941-2.941V0H4.207v7.166h5.48l2.938 2.938.002-.001v3.794l-.003-.003-2.94 2.94H4.207V24h7.166v-5.477l2.94-2.94h5.48V8.417" }) + ] + } + ); +}); + +export { SiPuppet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.cjs new file mode 100644 index 000000000..c620d793c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40B5A4"; +const SiPuppeteer = React__namespace.forwardRef(function SiPuppeteer2({ title = "Puppeteer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.89 17.86h.397v.174h.028a.466.466 0 0 1 .619-.155l-.11.373a.364.364 0 0 0-.184-.043.288.288 0 0 0-.243.11.471.471 0 0 0-.082.29v.635h-.424zm-.26 1.048a.766.766 0 0 1-.27.28.741.741 0 0 1-.398.101.822.822 0 0 1-.3-.054.752.752 0 0 1-.237-.155.704.704 0 0 1-.214-.529c0-.1.018-.194.056-.282a.719.719 0 0 1 .156-.235.725.725 0 0 1 .529-.22.75.75 0 0 1 .302.056.642.642 0 0 1 .353.384.846.846 0 0 1 .037.402h-1.02c.02.09.063.156.127.198a.387.387 0 0 0 .214.062.345.345 0 0 0 .32-.18zm-.376-.54a.227.227 0 0 0-.03-.074.21.21 0 0 0-.058-.07.264.264 0 0 0-.093-.054.325.325 0 0 0-.43.198zm-1.242.54a.766.766 0 0 1-.27.28.741.741 0 0 1-.397.101.822.822 0 0 1-.3-.054.752.752 0 0 1-.237-.155.704.704 0 0 1-.215-.529c0-.1.019-.194.057-.282a.719.719 0 0 1 .155-.235.725.725 0 0 1 .529-.22c.115 0 .215.018.302.056a.642.642 0 0 1 .353.384.846.846 0 0 1 .037.402h-1.02c.02.09.063.156.127.198a.387.387 0 0 0 .215.062.345.345 0 0 0 .32-.18zm-.376-.54a.227.227 0 0 0-.028-.074.21.21 0 0 0-.06-.07.264.264 0 0 0-.093-.054.325.325 0 0 0-.43.198zm-1.918-.144l-.243-.004.004-.388.25.012-.007-.41.412.004-.016.39.367.02-.012.355-.365.008.013.47c-.012.092.022.145.027.194.08.1.137.068.137.068.02-.008.162-.027.177-.038l.04.388c-.138.082-.377.036-.377.036-.253-.037-.383-.217-.384-.293-.025-.068-.018-.21-.029-.29zm-.412.717c-.037.126-.172.218-.283.285a.772.772 0 0 1-.406.11.944.944 0 0 1-.32-.077c-.09-.038-.165-.113-.233-.18-.068-.065-.093-.142-.131-.23a.822.822 0 0 1-.045-.31c-.015-.194.126-.378.212-.505.28-.238.49-.22.49-.22.387-.075.696.288.718.437.03.086.022.18.022.28-.005.054 0 .05-.031.125h-1.037c.02.09.063.192.104.24.048.06.128.06.207.06.079 0 .163.002.214-.032.053-.034.172-.072.203-.125zm-.37-.558a.41.41 0 0 0-.04-.097c-.014-.026-.05-.046-.076-.066-.024-.023-.071-.037-.109-.05a.31.31 0 0 0-.121-.023.274.274 0 0 0-.168.053c-.057.037-.097.12-.123.19zm-2.34-.372h.028a.388.388 0 0 1 .147-.138.498.498 0 0 1 .254-.06.623.623 0 0 1 .467.207.696.696 0 0 1 .147.232c.036.09.053.19.053.3a.8.8 0 0 1-.053.3.729.729 0 0 1-.147.234.647.647 0 0 1-.467.203.518.518 0 0 1-.254-.056.409.409 0 0 1-.147-.142h-.028l.028.198v.565H10.2V17.86h.396zm.336.198a.34.34 0 0 0-.31.201.37.37 0 0 0-.026.141c0 .053.008.101.025.145a.362.362 0 0 0 .074.107c.032.028.068.05.107.068a.378.378 0 0 0 .257 0 .348.348 0 0 0 .108-.068.304.304 0 0 0 .073-.107.358.358 0 0 0 .028-.145.338.338 0 0 0-.336-.342zm-2.026-.198h.03a.388.388 0 0 1 .146-.138.498.498 0 0 1 .254-.06.623.623 0 0 1 .466.207.696.696 0 0 1 .147.232c.036.09.054.19.054.3a.8.8 0 0 1-.054.3.729.729 0 0 1-.147.234.647.647 0 0 1-.466.203.518.518 0 0 1-.254-.056.409.409 0 0 1-.147-.142h-.029l.03.198v.565H8.51V17.86h.395zm.337.198a.34.34 0 0 0-.31.201.37.37 0 0 0-.027.141c0 .053.01.101.026.145a.362.362 0 0 0 .073.107c.032.028.068.05.108.068a.378.378 0 0 0 .257 0 .348.348 0 0 0 .107-.068.303.303 0 0 0 .074-.107.358.358 0 0 0 .028-.145.338.338 0 0 0-.21-.316.32.32 0 0 0-.126-.026zm-1.433.86h-.028a.47.47 0 0 1-.424.22c-.174 0-.303-.055-.387-.167a.703.703 0 0 1-.128-.438v-.825h.424v.777c0 .076.018.138.054.187.036.047.091.07.167.07a.245.245 0 0 0 .217-.11.497.497 0 0 0 .077-.288v-.636h.424v1.385H7.81zm-2.594.175V17.22h.724a.82.82 0 0 1 .285.048.677.677 0 0 1 .23.136.589.589 0 0 1 .15.206.67.67 0 0 1 .053.27.657.657 0 0 1-.054.267.617.617 0 0 1-.379.342.818.818 0 0 1-.285.048h-.283v.707zm.738-1.125c.092 0 .16-.023.206-.068a.234.234 0 0 0 .068-.172.234.234 0 0 0-.068-.173c-.045-.045-.114-.068-.206-.068h-.297v.48zM18.04 2.758l-.594.05.236 2.932.626.363zm-12.016.01L5.728 6.01l.624-.3.266-2.89zm-.49 5.183l-.044.557-1.247 3.137c-.216.224-.308.514-.307.825L3.93 22.84c0 .669.49 1.16 1.158 1.16H18.82c.67 0 1.25-.444 1.25-1.11V12.485c0-.306-.1-.56-.286-.774L18.44 7.748l-.006-.068-.575.257.267 3.33H5.846l.237-2.615.226-.588L6.143 8l.002-.03zm13.112 2.34l.323.987c-.088-.014-.158-.006-.245-.01zm-13.316.232l-.084.744c-.058-.005-.12.005-.172.007zm-.18 1.134l13.67.008c.47 0 .853.344.853.815v.796H4.313v-.796c0-.47.364-.823.837-.823zm.135.553a.27.27 0 0 0-.272.27c0 .36.542.36.542 0a.27.27 0 0 0-.27-.27zm.92 0c-.36 0-.36.54 0 .54s.362-.54.002-.54zm.896 0c-.39-.034-.39.572 0 .538.33-.028.33-.51 0-.538zm-2.788 1.424h15.36v9.153c0 .595-.38.846-.853.845l-13.668-.004a.828.828 0 0 1-.84-.841zm1.883 4.42c.07-.117.07-.11.068-.186-.008-.073-.004-.076-.053-.135-.054-.054-.123-.138-.2-.134h-.387l-.02.55h.407c.122-.002.16-.084.185-.094zm-.185-.83a.58.58 0 0 1 .442.171c.11.117.164.273.164.465a.65.65 0 0 1-.16.462c-.117.12-.263.21-.43.203l-.4.008-.004.774-.412-.013-.005-2.088zm1.793 1.26l-.012-.624.366-.004.004 1.435-.36.004v-.122a.582.582 0 0 1-.432.15.557.557 0 0 1-.413-.156c-.103-.11-.13-.31-.123-.46l-.004-.847h.372l-.008.77a.328.328 0 0 0 .075.23.25.25 0 0 0 .198.09c.225 0 .336-.156.336-.468zm1.805.077a.36.36 0 0 0-.11-.272c-.07-.073-.115-.118-.218-.115-.1 0-.186.018-.266.094a.388.388 0 0 0-.116.293c0 .12.038.217.117.29.07.073.168.114.27.114.102.003.166-.053.238-.126.087-.094.06-.21.085-.278zm-.262-.76c.176 0 .333.11.466.245a.71.71 0 0 1 .197.515.7.7 0 0 1-.197.512c-.093.16-.31.255-.486.254-.16.005-.36-.066-.428-.197l.004.76-.4.006-.02-2.04.416-.02v.157c.126-.103.285-.2.448-.193zm2.002.764c-.014-.16-.044-.203-.117-.283-.072-.074-.117-.087-.22-.085-.1 0-.178-.005-.257.07a.388.388 0 0 0-.116.294c0 .12.038.217.116.29.07.073.168.114.27.114.102.003.154-.065.226-.137.073-.08.086-.175.098-.263zm-.318-.75c.177 0 .389.096.522.23a.712.712 0 0 1 .198.516.7.7 0 0 1-.198.512c-.105.15-.344.255-.522.254a.475.475 0 0 1-.392-.197v.75l-.405.01-.023-2.034h.428v.137c.126-.103.23-.183.392-.177zm1.268.576l.637-.008c-.017-.074-.063-.12-.124-.166a.357.357 0 0 0-.406.003c-.085.068-.054.056-.107.17zm.313-.575c.179-.003.425.078.552.203.133.13.157.308.166.512l-.031.125h-1.03c.02.095.044.186.104.244.059.056.153.07.234.07a.5.5 0 0 0 .383-.17l.316.141c-.046.14-.187.223-.304.296a.757.757 0 0 1-.408.094c-.184.003-.378-.116-.507-.247a.718.718 0 0 1-.2-.523c0-.21.094-.382.23-.518.13-.132.31-.232.495-.227zm1.673 1.127c.08-.003.11.002.178-.038l.04.388c-.107.063-.135.038-.26.042a.633.633 0 0 1-.416-.155c-.094-.09-.097-.26-.097-.443l-.012-.513-.243-.004.004-.388.25.012-.007-.41.412.004-.016.39.367.02-.012.355-.365.008.003.507c.002.155.042.225.175.225zm.75-.54h.654a.32.32 0 0 0-.12-.186.357.357 0 0 0-.407.003.3.3 0 0 0-.127.184zm.338-.587c.185 0 .368.092.5.22.133.13.173.295.183.5v.12h-1.03a.4.4 0 0 0 .12.228.31.31 0 0 0 .218.086c.155 0 .297-.06.367-.18l.3.15c-.05.13-.12.19-.238.262a.958.958 0 0 1-.452.125.712.712 0 0 1-.502-.224.77.77 0 0 1-.208-.542c0-.21.106-.382.24-.518.132-.132.316-.232.5-.227zm1.27.587h.654a.32.32 0 0 0-.12-.186.357.357 0 0 0-.407.003.3.3 0 0 0-.127.184zm.337-.587a.74.74 0 0 1 .5.22c.134.13.174.295.184.5v.12h-1.03a.4.4 0 0 0 .12.228.31.31 0 0 0 .217.086c.154 0 .297-.06.368-.18l.3.15c-.05.13-.12.19-.238.262a.957.957 0 0 1-.454.125.713.713 0 0 1-.5-.224.77.77 0 0 1-.208-.542c0-.21.106-.382.24-.518.13-.132.315-.232.5-.227zm1.938.04l-.067.364-.18-.023c-.322 0-.36.207-.36.595v.49l-.393.005.008-1.43h.365l-.004.22c.145-.17.215-.286.63-.22zM17.535 7.91l.02-.366 1.317-.687.007.396zM5.04 6.84l1.35.68-.008.393-1.314-.65zm7.21-1.748l4.839 2.448v.392l-4.851-2.46zM6.874 7.51l4.894-2.42-.007.374-4.893 2.444zm3.467-3.974L5.418 1.099 6.64.494l5.352 2.744L17.335.466l1.257.65-4.926 2.478c-.196.098-.13.388.067.486l4.838 2.42-1.22.622-5.353-2.697L6.62 7.129l-1.273-.634 4.998-2.483a.266.266 0 0 0-.004-.477zM5.059 1.888l.007-.377 4.607 2.276-.348.2zm9.648 2.077l-.41-.184 4.596-2.303-.028.412zm.422.306l4.124-2.07a.124.124 0 0 0 .07-.11v-.98c0-.046-.008-.136-.05-.157l-1.94-.94a.124.124 0 0 0-.113 0l-5.167 2.623a.123.123 0 0 1-.11 0L6.679.015a.124.124 0 0 0-.11 0L4.616.938c-.04.02-.02.11-.02.157v.995c0 .047.026.09.07.11l4.14 2.047L4.69 6.239c-.04.02-.108.062-.11.108l.017 1.034a.123.123 0 0 0 .068.113l1.933.986c.034.018.122.03.157.014l5.186-2.602a.124.124 0 0 1 .11 0l5.12 2.603a.124.124 0 0 0 .11 0l1.972-.954c.042-.02.103-.05.104-.096l-.007-1.033c0-.047-.047-.15-.09-.17z" }) + ] + } + ); +}); + +exports.default = SiPuppeteer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.d.ts new file mode 100644 index 000000000..5f8f4390d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40B5A4"; +declare const SiPuppeteer: IconType; +export { SiPuppeteer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.mjs new file mode 100644 index 000000000..bc4794ac7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPuppeteer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40B5A4"; +const SiPuppeteer = React.forwardRef(function SiPuppeteer2({ title = "Puppeteer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.89 17.86h.397v.174h.028a.466.466 0 0 1 .619-.155l-.11.373a.364.364 0 0 0-.184-.043.288.288 0 0 0-.243.11.471.471 0 0 0-.082.29v.635h-.424zm-.26 1.048a.766.766 0 0 1-.27.28.741.741 0 0 1-.398.101.822.822 0 0 1-.3-.054.752.752 0 0 1-.237-.155.704.704 0 0 1-.214-.529c0-.1.018-.194.056-.282a.719.719 0 0 1 .156-.235.725.725 0 0 1 .529-.22.75.75 0 0 1 .302.056.642.642 0 0 1 .353.384.846.846 0 0 1 .037.402h-1.02c.02.09.063.156.127.198a.387.387 0 0 0 .214.062.345.345 0 0 0 .32-.18zm-.376-.54a.227.227 0 0 0-.03-.074.21.21 0 0 0-.058-.07.264.264 0 0 0-.093-.054.325.325 0 0 0-.43.198zm-1.242.54a.766.766 0 0 1-.27.28.741.741 0 0 1-.397.101.822.822 0 0 1-.3-.054.752.752 0 0 1-.237-.155.704.704 0 0 1-.215-.529c0-.1.019-.194.057-.282a.719.719 0 0 1 .155-.235.725.725 0 0 1 .529-.22c.115 0 .215.018.302.056a.642.642 0 0 1 .353.384.846.846 0 0 1 .037.402h-1.02c.02.09.063.156.127.198a.387.387 0 0 0 .215.062.345.345 0 0 0 .32-.18zm-.376-.54a.227.227 0 0 0-.028-.074.21.21 0 0 0-.06-.07.264.264 0 0 0-.093-.054.325.325 0 0 0-.43.198zm-1.918-.144l-.243-.004.004-.388.25.012-.007-.41.412.004-.016.39.367.02-.012.355-.365.008.013.47c-.012.092.022.145.027.194.08.1.137.068.137.068.02-.008.162-.027.177-.038l.04.388c-.138.082-.377.036-.377.036-.253-.037-.383-.217-.384-.293-.025-.068-.018-.21-.029-.29zm-.412.717c-.037.126-.172.218-.283.285a.772.772 0 0 1-.406.11.944.944 0 0 1-.32-.077c-.09-.038-.165-.113-.233-.18-.068-.065-.093-.142-.131-.23a.822.822 0 0 1-.045-.31c-.015-.194.126-.378.212-.505.28-.238.49-.22.49-.22.387-.075.696.288.718.437.03.086.022.18.022.28-.005.054 0 .05-.031.125h-1.037c.02.09.063.192.104.24.048.06.128.06.207.06.079 0 .163.002.214-.032.053-.034.172-.072.203-.125zm-.37-.558a.41.41 0 0 0-.04-.097c-.014-.026-.05-.046-.076-.066-.024-.023-.071-.037-.109-.05a.31.31 0 0 0-.121-.023.274.274 0 0 0-.168.053c-.057.037-.097.12-.123.19zm-2.34-.372h.028a.388.388 0 0 1 .147-.138.498.498 0 0 1 .254-.06.623.623 0 0 1 .467.207.696.696 0 0 1 .147.232c.036.09.053.19.053.3a.8.8 0 0 1-.053.3.729.729 0 0 1-.147.234.647.647 0 0 1-.467.203.518.518 0 0 1-.254-.056.409.409 0 0 1-.147-.142h-.028l.028.198v.565H10.2V17.86h.396zm.336.198a.34.34 0 0 0-.31.201.37.37 0 0 0-.026.141c0 .053.008.101.025.145a.362.362 0 0 0 .074.107c.032.028.068.05.107.068a.378.378 0 0 0 .257 0 .348.348 0 0 0 .108-.068.304.304 0 0 0 .073-.107.358.358 0 0 0 .028-.145.338.338 0 0 0-.336-.342zm-2.026-.198h.03a.388.388 0 0 1 .146-.138.498.498 0 0 1 .254-.06.623.623 0 0 1 .466.207.696.696 0 0 1 .147.232c.036.09.054.19.054.3a.8.8 0 0 1-.054.3.729.729 0 0 1-.147.234.647.647 0 0 1-.466.203.518.518 0 0 1-.254-.056.409.409 0 0 1-.147-.142h-.029l.03.198v.565H8.51V17.86h.395zm.337.198a.34.34 0 0 0-.31.201.37.37 0 0 0-.027.141c0 .053.01.101.026.145a.362.362 0 0 0 .073.107c.032.028.068.05.108.068a.378.378 0 0 0 .257 0 .348.348 0 0 0 .107-.068.303.303 0 0 0 .074-.107.358.358 0 0 0 .028-.145.338.338 0 0 0-.21-.316.32.32 0 0 0-.126-.026zm-1.433.86h-.028a.47.47 0 0 1-.424.22c-.174 0-.303-.055-.387-.167a.703.703 0 0 1-.128-.438v-.825h.424v.777c0 .076.018.138.054.187.036.047.091.07.167.07a.245.245 0 0 0 .217-.11.497.497 0 0 0 .077-.288v-.636h.424v1.385H7.81zm-2.594.175V17.22h.724a.82.82 0 0 1 .285.048.677.677 0 0 1 .23.136.589.589 0 0 1 .15.206.67.67 0 0 1 .053.27.657.657 0 0 1-.054.267.617.617 0 0 1-.379.342.818.818 0 0 1-.285.048h-.283v.707zm.738-1.125c.092 0 .16-.023.206-.068a.234.234 0 0 0 .068-.172.234.234 0 0 0-.068-.173c-.045-.045-.114-.068-.206-.068h-.297v.48zM18.04 2.758l-.594.05.236 2.932.626.363zm-12.016.01L5.728 6.01l.624-.3.266-2.89zm-.49 5.183l-.044.557-1.247 3.137c-.216.224-.308.514-.307.825L3.93 22.84c0 .669.49 1.16 1.158 1.16H18.82c.67 0 1.25-.444 1.25-1.11V12.485c0-.306-.1-.56-.286-.774L18.44 7.748l-.006-.068-.575.257.267 3.33H5.846l.237-2.615.226-.588L6.143 8l.002-.03zm13.112 2.34l.323.987c-.088-.014-.158-.006-.245-.01zm-13.316.232l-.084.744c-.058-.005-.12.005-.172.007zm-.18 1.134l13.67.008c.47 0 .853.344.853.815v.796H4.313v-.796c0-.47.364-.823.837-.823zm.135.553a.27.27 0 0 0-.272.27c0 .36.542.36.542 0a.27.27 0 0 0-.27-.27zm.92 0c-.36 0-.36.54 0 .54s.362-.54.002-.54zm.896 0c-.39-.034-.39.572 0 .538.33-.028.33-.51 0-.538zm-2.788 1.424h15.36v9.153c0 .595-.38.846-.853.845l-13.668-.004a.828.828 0 0 1-.84-.841zm1.883 4.42c.07-.117.07-.11.068-.186-.008-.073-.004-.076-.053-.135-.054-.054-.123-.138-.2-.134h-.387l-.02.55h.407c.122-.002.16-.084.185-.094zm-.185-.83a.58.58 0 0 1 .442.171c.11.117.164.273.164.465a.65.65 0 0 1-.16.462c-.117.12-.263.21-.43.203l-.4.008-.004.774-.412-.013-.005-2.088zm1.793 1.26l-.012-.624.366-.004.004 1.435-.36.004v-.122a.582.582 0 0 1-.432.15.557.557 0 0 1-.413-.156c-.103-.11-.13-.31-.123-.46l-.004-.847h.372l-.008.77a.328.328 0 0 0 .075.23.25.25 0 0 0 .198.09c.225 0 .336-.156.336-.468zm1.805.077a.36.36 0 0 0-.11-.272c-.07-.073-.115-.118-.218-.115-.1 0-.186.018-.266.094a.388.388 0 0 0-.116.293c0 .12.038.217.117.29.07.073.168.114.27.114.102.003.166-.053.238-.126.087-.094.06-.21.085-.278zm-.262-.76c.176 0 .333.11.466.245a.71.71 0 0 1 .197.515.7.7 0 0 1-.197.512c-.093.16-.31.255-.486.254-.16.005-.36-.066-.428-.197l.004.76-.4.006-.02-2.04.416-.02v.157c.126-.103.285-.2.448-.193zm2.002.764c-.014-.16-.044-.203-.117-.283-.072-.074-.117-.087-.22-.085-.1 0-.178-.005-.257.07a.388.388 0 0 0-.116.294c0 .12.038.217.116.29.07.073.168.114.27.114.102.003.154-.065.226-.137.073-.08.086-.175.098-.263zm-.318-.75c.177 0 .389.096.522.23a.712.712 0 0 1 .198.516.7.7 0 0 1-.198.512c-.105.15-.344.255-.522.254a.475.475 0 0 1-.392-.197v.75l-.405.01-.023-2.034h.428v.137c.126-.103.23-.183.392-.177zm1.268.576l.637-.008c-.017-.074-.063-.12-.124-.166a.357.357 0 0 0-.406.003c-.085.068-.054.056-.107.17zm.313-.575c.179-.003.425.078.552.203.133.13.157.308.166.512l-.031.125h-1.03c.02.095.044.186.104.244.059.056.153.07.234.07a.5.5 0 0 0 .383-.17l.316.141c-.046.14-.187.223-.304.296a.757.757 0 0 1-.408.094c-.184.003-.378-.116-.507-.247a.718.718 0 0 1-.2-.523c0-.21.094-.382.23-.518.13-.132.31-.232.495-.227zm1.673 1.127c.08-.003.11.002.178-.038l.04.388c-.107.063-.135.038-.26.042a.633.633 0 0 1-.416-.155c-.094-.09-.097-.26-.097-.443l-.012-.513-.243-.004.004-.388.25.012-.007-.41.412.004-.016.39.367.02-.012.355-.365.008.003.507c.002.155.042.225.175.225zm.75-.54h.654a.32.32 0 0 0-.12-.186.357.357 0 0 0-.407.003.3.3 0 0 0-.127.184zm.338-.587c.185 0 .368.092.5.22.133.13.173.295.183.5v.12h-1.03a.4.4 0 0 0 .12.228.31.31 0 0 0 .218.086c.155 0 .297-.06.367-.18l.3.15c-.05.13-.12.19-.238.262a.958.958 0 0 1-.452.125.712.712 0 0 1-.502-.224.77.77 0 0 1-.208-.542c0-.21.106-.382.24-.518.132-.132.316-.232.5-.227zm1.27.587h.654a.32.32 0 0 0-.12-.186.357.357 0 0 0-.407.003.3.3 0 0 0-.127.184zm.337-.587a.74.74 0 0 1 .5.22c.134.13.174.295.184.5v.12h-1.03a.4.4 0 0 0 .12.228.31.31 0 0 0 .217.086c.154 0 .297-.06.368-.18l.3.15c-.05.13-.12.19-.238.262a.957.957 0 0 1-.454.125.713.713 0 0 1-.5-.224.77.77 0 0 1-.208-.542c0-.21.106-.382.24-.518.13-.132.315-.232.5-.227zm1.938.04l-.067.364-.18-.023c-.322 0-.36.207-.36.595v.49l-.393.005.008-1.43h.365l-.004.22c.145-.17.215-.286.63-.22zM17.535 7.91l.02-.366 1.317-.687.007.396zM5.04 6.84l1.35.68-.008.393-1.314-.65zm7.21-1.748l4.839 2.448v.392l-4.851-2.46zM6.874 7.51l4.894-2.42-.007.374-4.893 2.444zm3.467-3.974L5.418 1.099 6.64.494l5.352 2.744L17.335.466l1.257.65-4.926 2.478c-.196.098-.13.388.067.486l4.838 2.42-1.22.622-5.353-2.697L6.62 7.129l-1.273-.634 4.998-2.483a.266.266 0 0 0-.004-.477zM5.059 1.888l.007-.377 4.607 2.276-.348.2zm9.648 2.077l-.41-.184 4.596-2.303-.028.412zm.422.306l4.124-2.07a.124.124 0 0 0 .07-.11v-.98c0-.046-.008-.136-.05-.157l-1.94-.94a.124.124 0 0 0-.113 0l-5.167 2.623a.123.123 0 0 1-.11 0L6.679.015a.124.124 0 0 0-.11 0L4.616.938c-.04.02-.02.11-.02.157v.995c0 .047.026.09.07.11l4.14 2.047L4.69 6.239c-.04.02-.108.062-.11.108l.017 1.034a.123.123 0 0 0 .068.113l1.933.986c.034.018.122.03.157.014l5.186-2.602a.124.124 0 0 1 .11 0l5.12 2.603a.124.124 0 0 0 .11 0l1.972-.954c.042-.02.103-.05.104-.096l-.007-1.033c0-.047-.047-.15-.09-.17z" }) + ] + } + ); +}); + +export { SiPuppeteer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.cjs new file mode 100644 index 000000000..b3028ae77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14161A"; +const SiPurescript = React__namespace.forwardRef(function SiPurescript2({ title = "PureScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.166 4.6l-1.24 1.24 3.97 3.97-3.97 3.97 1.24 1.24 4.58-4.6a.87.87 0 0 0 0-1.23zM6.955 6.74l1.87 1.75h8.23l-1.87-1.75zm-2.1 2.24l-4.6 4.6a.87.87 0 0 0 0 1.23l4.6 4.59 1.23-1.24-3.97-3.97 3.97-3.97-1.24-1.24zm3.97 2.14l-1.87 1.76h8.23l1.87-1.76zm-1.87 4.39l1.87 1.75h8.23l-1.87-1.75z" }) + ] + } + ); +}); + +exports.default = SiPurescript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.d.ts new file mode 100644 index 000000000..bf6d9eeba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14161A"; +declare const SiPurescript: IconType; +export { SiPurescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.mjs new file mode 100644 index 000000000..c4c553b0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurescript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14161A"; +const SiPurescript = React.forwardRef(function SiPurescript2({ title = "PureScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.166 4.6l-1.24 1.24 3.97 3.97-3.97 3.97 1.24 1.24 4.58-4.6a.87.87 0 0 0 0-1.23zM6.955 6.74l1.87 1.75h8.23l-1.87-1.75zm-2.1 2.24l-4.6 4.6a.87.87 0 0 0 0 1.23l4.6 4.59 1.23-1.24-3.97-3.97 3.97-3.97-1.24-1.24zm3.97 2.14l-1.87 1.76h8.23l1.87-1.76zm-1.87 4.39l1.87 1.75h8.23l-1.87-1.75z" }) + ] + } + ); +}); + +export { SiPurescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.cjs new file mode 100644 index 000000000..3c9039d84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14161A"; +const SiPurgecss = React__namespace.forwardRef(function SiPurgecss2({ title = "PurgeCSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 9.764 11.791c.048-1.003.052-2.55.047-9.967 0-5.484.003-9.995.013-10.023.028-.08 2.26-.042 2.678.047a4.903 4.903 0 0 1 3.078 2.08 4.834 4.834 0 0 1-.7 6.164c-.924.878-2.041 1.334-3.29 1.334-.225 0-.29.012-.305.068-.01.043-.02 2.418-.014 5.287v5.196A12 12 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm-.691 4.31c-.013.004-.017.023-.02.063-.018.245-.023 8.358-.004 8.39.01.02.075-.014.145-.07 2.673-1.952 3.467-2.792 3.738-3.939.14-.746-.174-1.466-1.01-2.3-.699-.72-1.692-1.358-2.779-2.099-.038-.033-.058-.047-.07-.044z" }) + ] + } + ); +}); + +exports.default = SiPurgecss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.d.ts new file mode 100644 index 000000000..cfdaedcae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14161A"; +declare const SiPurgecss: IconType; +export { SiPurgecss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.mjs new file mode 100644 index 000000000..c60ac2504 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurgecss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14161A"; +const SiPurgecss = React.forwardRef(function SiPurgecss2({ title = "PurgeCSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 9.764 11.791c.048-1.003.052-2.55.047-9.967 0-5.484.003-9.995.013-10.023.028-.08 2.26-.042 2.678.047a4.903 4.903 0 0 1 3.078 2.08 4.834 4.834 0 0 1-.7 6.164c-.924.878-2.041 1.334-3.29 1.334-.225 0-.29.012-.305.068-.01.043-.02 2.418-.014 5.287v5.196A12 12 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm-.691 4.31c-.013.004-.017.023-.02.063-.018.245-.023 8.358-.004 8.39.01.02.075-.014.145-.07 2.673-1.952 3.467-2.792 3.738-3.939.14-.746-.174-1.466-1.01-2.3-.699-.72-1.692-1.358-2.779-2.099-.038-.033-.058-.047-.07-.044z" }) + ] + } + ); +}); + +export { SiPurgecss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.cjs new file mode 100644 index 000000000..2b6cbe266 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D2D2D"; +const SiPurism = React__namespace.forwardRef(function SiPurism2({ title = "Purism", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 19.588H0V4.412h24zM2.824 16.765h18.352v-9.53H2.824Z" }) + ] + } + ); +}); + +exports.default = SiPurism; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.d.ts new file mode 100644 index 000000000..3545ecd3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D2D2D"; +declare const SiPurism: IconType; +export { SiPurism as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.mjs new file mode 100644 index 000000000..fe4006cfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPurism.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D2D2D"; +const SiPurism = React.forwardRef(function SiPurism2({ title = "Purism", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 19.588H0V4.412h24zM2.824 16.765h18.352v-9.53H2.824Z" }) + ] + } + ); +}); + +export { SiPurism as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.cjs new file mode 100644 index 000000000..4b5749e43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4AB367"; +const SiPushbullet = React__namespace.forwardRef(function SiPushbullet2({ title = "Pushbullet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 1.688A10.312 10.312 0 0 1 22.312 12 10.312 10.312 0 0 1 12 22.312 10.312 10.312 0 0 1 1.688 12 10.312 10.312 0 0 1 12 1.688zM7.258 6.92a.659.772 0 0 0-.659.772v8.643a.603.603 0 0 0 .603.603h1.733a.603.603 0 0 0 .603-.603V7.692a.659.772 0 0 0-.658-.772zm6.94.001c-.975.005-1.93.005-2.867.002-.28 0-.474.254-.534.499a1.7 1.7 0 0 0-.043.405c.004 2.854.007 5.677.007 8.47 0 .397.21.643.589.641 1.002-.004 1.967-.003 2.895 0 .058 0 .129.022.176.02.824-.018 1.552-.251 2.182-.698 2.02-1.43 2.554-4.264 1.662-6.47-.574-1.417-1.743-2.573-3.27-2.82a5.027 5.027 0 0 0-.797-.049z" }) + ] + } + ); +}); + +exports.default = SiPushbullet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.d.ts new file mode 100644 index 000000000..c662b6542 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4AB367"; +declare const SiPushbullet: IconType; +export { SiPushbullet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.mjs new file mode 100644 index 000000000..98e9d96bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPushbullet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4AB367"; +const SiPushbullet = React.forwardRef(function SiPushbullet2({ title = "Pushbullet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 1.688A10.312 10.312 0 0 1 22.312 12 10.312 10.312 0 0 1 12 22.312 10.312 10.312 0 0 1 1.688 12 10.312 10.312 0 0 1 12 1.688zM7.258 6.92a.659.772 0 0 0-.659.772v8.643a.603.603 0 0 0 .603.603h1.733a.603.603 0 0 0 .603-.603V7.692a.659.772 0 0 0-.658-.772zm6.94.001c-.975.005-1.93.005-2.867.002-.28 0-.474.254-.534.499a1.7 1.7 0 0 0-.043.405c.004 2.854.007 5.677.007 8.47 0 .397.21.643.589.641 1.002-.004 1.967-.003 2.895 0 .058 0 .129.022.176.02.824-.018 1.552-.251 2.182-.698 2.02-1.43 2.554-4.264 1.662-6.47-.574-1.417-1.743-2.573-3.27-2.82a5.027 5.027 0 0 0-.797-.049z" }) + ] + } + ); +}); + +export { SiPushbullet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.cjs new file mode 100644 index 000000000..6fc7a62e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#300D4F"; +const SiPusher = React__namespace.forwardRef(function SiPusher2({ title = "Pusher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 23.966v-6.0166a.0348.0348 0 01.0182-.031l7.7319-4.4645a.0348.0348 0 00.0181-.031v-1.711a.0356.0356 0 00-.0537-.031l-7.6608 4.423a.0356.0356 0 01-.0537-.031v-1.7117a.0356.0356 0 01.0181-.031l7.732-4.4645a.037.037 0 00.0181-.031v-1.711a.0363.0363 0 00-.0537-.031l-7.6608 4.4229a.0356.0356 0 01-.0537-.031v-1.711a.0348.0348 0 01.0181-.031l7.732-4.4622a.0356.0356 0 00.0181-.031V4.515a.0757.0757 0 00-.0356-.062L12.0356.0096a.0704.0704 0 00-.0712 0L10.5002.855a.0356.0356 0 000 .062L18.161 5.34a.0363.0363 0 010 .062l-1.4642.8452a.0757.0757 0 01-.0719 0L8.9286 1.8038a.0757.0757 0 00-.0757 0l-1.4597.8445a.0356.0356 0 000 .062l7.6593 4.4236a.0356.0356 0 010 .0621l-1.4634.8452a.0757.0757 0 01-.0757 0l-7.6926-4.444a.0757.0757 0 00-.0756 0l-1.5134.8762v15.0492a.0348.0348 0 00.0181.031l1.4816.8558a.0356.0356 0 00.0538-.031V5.433a.0356.0356 0 01.0537-.031l1.4824.8558a.0356.0356 0 01.0174.031v15.028a.0356.0356 0 00.0181.031l1.4816.8559a.0363.0363 0 00.0545-.0318V7.227a.0356.0356 0 01.0537-.031l1.4817.855a.0356.0356 0 01.0181.0311v15.0288a.037.037 0 00.0174.031l1.4862.855A.0356.0356 0 0012 23.966z" }) + ] + } + ); +}); + +exports.default = SiPusher; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.d.ts new file mode 100644 index 000000000..a4a5dfe2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#300D4F"; +declare const SiPusher: IconType; +export { SiPusher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.mjs new file mode 100644 index 000000000..da7dbf3dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPusher.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#300D4F"; +const SiPusher = React.forwardRef(function SiPusher2({ title = "Pusher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 23.966v-6.0166a.0348.0348 0 01.0182-.031l7.7319-4.4645a.0348.0348 0 00.0181-.031v-1.711a.0356.0356 0 00-.0537-.031l-7.6608 4.423a.0356.0356 0 01-.0537-.031v-1.7117a.0356.0356 0 01.0181-.031l7.732-4.4645a.037.037 0 00.0181-.031v-1.711a.0363.0363 0 00-.0537-.031l-7.6608 4.4229a.0356.0356 0 01-.0537-.031v-1.711a.0348.0348 0 01.0181-.031l7.732-4.4622a.0356.0356 0 00.0181-.031V4.515a.0757.0757 0 00-.0356-.062L12.0356.0096a.0704.0704 0 00-.0712 0L10.5002.855a.0356.0356 0 000 .062L18.161 5.34a.0363.0363 0 010 .062l-1.4642.8452a.0757.0757 0 01-.0719 0L8.9286 1.8038a.0757.0757 0 00-.0757 0l-1.4597.8445a.0356.0356 0 000 .062l7.6593 4.4236a.0356.0356 0 010 .0621l-1.4634.8452a.0757.0757 0 01-.0757 0l-7.6926-4.444a.0757.0757 0 00-.0756 0l-1.5134.8762v15.0492a.0348.0348 0 00.0181.031l1.4816.8558a.0356.0356 0 00.0538-.031V5.433a.0356.0356 0 01.0537-.031l1.4824.8558a.0356.0356 0 01.0174.031v15.028a.0356.0356 0 00.0181.031l1.4816.8559a.0363.0363 0 00.0545-.0318V7.227a.0356.0356 0 01.0537-.031l1.4817.855a.0356.0356 0 01.0181.0311v15.0288a.037.037 0 00.0174.031l1.4862.855A.0356.0356 0 0012 23.966z" }) + ] + } + ); +}); + +export { SiPusher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.cjs new file mode 100644 index 000000000..e8e8070ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A0FC8"; +const SiPwa = React__namespace.forwardRef(function SiPwa2({ title = "PWA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.5967 7.482L24 16.518h-2.5098l-.5816-1.6184h-3.2452l.6933-1.7532h2.0019l-.95-2.6597 1.1881-3.0047zm-8.111 0l1.7722 5.8393L16.75 7.482h2.4154l-3.6433 9.036h-2.3833l-1.6395-5.2366-1.7196 5.2366h-2.377l-1.233-2.1161 1.2144-3.7415 1.342 2.6609 1.9029-5.8393h1.8566zm-8.7453 0c1.0635 0 1.8713.3055 2.4234.9166a2.647 2.647 0 01.2806.3684l-1.0753 3.3128-.3847 1.1854c-.352.1006-.7533.1509-1.204.1509H2.2928v3.102H0V7.482zm-.5816 1.7532h-.866v2.4276h.8597c.5577 0 .9406-.1194 1.1485-.3582.1896-.215.2845-.5058.2845-.8724 0-.364-.1079-.6544-.3235-.8714-.2157-.217-.5834-.3256-1.1032-.3256z" }) + ] + } + ); +}); + +exports.default = SiPwa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.d.ts new file mode 100644 index 000000000..e5e849550 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A0FC8"; +declare const SiPwa: IconType; +export { SiPwa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.mjs new file mode 100644 index 000000000..805620569 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPwa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A0FC8"; +const SiPwa = React.forwardRef(function SiPwa2({ title = "PWA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.5967 7.482L24 16.518h-2.5098l-.5816-1.6184h-3.2452l.6933-1.7532h2.0019l-.95-2.6597 1.1881-3.0047zm-8.111 0l1.7722 5.8393L16.75 7.482h2.4154l-3.6433 9.036h-2.3833l-1.6395-5.2366-1.7196 5.2366h-2.377l-1.233-2.1161 1.2144-3.7415 1.342 2.6609 1.9029-5.8393h1.8566zm-8.7453 0c1.0635 0 1.8713.3055 2.4234.9166a2.647 2.647 0 01.2806.3684l-1.0753 3.3128-.3847 1.1854c-.352.1006-.7533.1509-1.204.1509H2.2928v3.102H0V7.482zm-.5816 1.7532h-.866v2.4276h.8597c.5577 0 .9406-.1194 1.1485-.3582.1896-.215.2845-.5058.2845-.8724 0-.364-.1079-.6544-.3235-.8714-.2157-.217-.5834-.3256-1.1032-.3256z" }) + ] + } + ); +}); + +export { SiPwa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.cjs new file mode 100644 index 000000000..6fe00a929 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiPycharm = React__namespace.forwardRef(function SiPycharm2({ title = "PyCharm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.833 6.666v-.055c0-1-.667-1.5-1.778-1.5H4.389v3.055h1.723c1.111 0 1.721-.666 1.721-1.5zM0 0v24h24V0H0zm2.223 3.167h4c2.389 0 3.833 1.389 3.833 3.445v.055c0 2.278-1.778 3.5-4.001 3.5H4.389v2.945H2.223V3.167zM11.277 21h-9v-1.5h9V21zm4.779-7.777c-2.944.055-5.111-2.223-5.111-5.057C10.944 5.333 13.056 3 16.111 3c1.889 0 3 .611 3.944 1.556l-1.389 1.61c-.778-.722-1.556-1.111-2.556-1.111-1.658 0-2.873 1.375-2.887 3.084.014 1.709 1.174 3.083 2.887 3.083 1.111 0 1.833-.445 2.61-1.167l1.39 1.389c-.999 1.112-2.166 1.779-4.054 1.779z" }) + ] + } + ); +}); + +exports.default = SiPycharm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.d.ts new file mode 100644 index 000000000..12001ad0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiPycharm: IconType; +export { SiPycharm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.mjs new file mode 100644 index 000000000..824bb5bb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPycharm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiPycharm = React.forwardRef(function SiPycharm2({ title = "PyCharm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.833 6.666v-.055c0-1-.667-1.5-1.778-1.5H4.389v3.055h1.723c1.111 0 1.721-.666 1.721-1.5zM0 0v24h24V0H0zm2.223 3.167h4c2.389 0 3.833 1.389 3.833 3.445v.055c0 2.278-1.778 3.5-4.001 3.5H4.389v2.945H2.223V3.167zM11.277 21h-9v-1.5h9V21zm4.779-7.777c-2.944.055-5.111-2.223-5.111-5.057C10.944 5.333 13.056 3 16.111 3c1.889 0 3 .611 3.944 1.556l-1.389 1.61c-.778-.722-1.556-1.111-2.556-1.111-1.658 0-2.873 1.375-2.887 3.084.014 1.709 1.174 3.083 2.887 3.083 1.111 0 1.833-.445 2.61-1.167l1.39 1.389c-.999 1.112-2.166 1.779-4.054 1.779z" }) + ] + } + ); +}); + +export { SiPycharm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.cjs new file mode 100644 index 000000000..67e7b39d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#201B44"; +const SiPycqa = React__namespace.forwardRef(function SiPycqa2({ title = "PyCQA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.256 6.935c-.176 1.188-.244 1.694.88 1.694l-.008.068H0l.008-.068c1.008 0 1.096-.55 1.283-1.694l.518-3.331c.187-1.187.275-1.693-.745-1.693l.008-.068H4.57c1.893 0 2.901.47 2.901 1.618 0 1.9-2.127 2.383-3.761 2.383h-.176l.008-.08h.148c1.371 0 1.733-1.47 1.733-2.654 0-.825-.335-1.195-1.108-1.195h-.274zm7.905-1.251-.04-.008c-.657 2.511-1.303 3.096-2.343 3.096-1.35 0-1.315-1.008-1.203-1.685l.478-2.929c.028-.195-.127-.343-.402-.255l-.028-.028c.342-.167 1.028-.382 1.498-.382.558 0 .753.207.646.872l-.51 3.136c-.08.462.007.745.314.745.598 0 1.08-1.127 1.439-2.586.167-.677.442-1.94.107-2.108l.028-.028c1.331-.099 1.981-.079 1.734 1.511l-.53 3.359c-.275 1.725-2.566 3.419-3.734 3.419-1.961 0-2.578-1.734-3.977-1.734-.597 0-.825.283-.825.558 0 .243.168.462.518.462.235 0 .53-.235.423-.518 1.343-.135 1.371 1.881-.08 1.881-.753 0-1.155-.538-1.155-1.175 0-.961.88-2.156 2.163-2.156 2.264 0 3.144 2.331 3.706 2.331.733 0 .988-1.833 1.096-2.363zM5.034 22.261c-2.094-.397-3.679-2.239-3.679-4.447 0-2.499 2.028-4.527 4.526-4.527 2.499 0 4.527 2.028 4.527 4.527a4.51 4.51 0 0 1-.549 2.162l-1.754-3.034zm3.071-4.32 2.534 4.383H5.575zm7.604-8.397c-.957-.821-1.563-2.039-1.563-3.398 0-2.469 2.005-4.474 4.475-4.474 2.469 0 4.474 2.005 4.474 4.474 0 1.23-.497 2.344-1.3 3.154l.009.034c-.518.522-1.175.921-1.932 1.136-1.511.43-3.06.031-4.163-.926m5.925-.807c.599-.696.961-1.601.961-2.591 0-1.777-1.168-3.283-2.778-3.791zm.481 10.831 1.594 2.76H13.397l5.156-8.929 2.371 4.106H17.89v1.893l4.055-.001c.052.062.109.119.17.171m-3.725-1.563h3.831c.162-.292.473-.49.831-.49.523 0 .948.425.948.948 0 .524-.425.949-.948.949a.951.951 0 0 1-.844-.514H18.39z" }) + ] + } + ); +}); + +exports.default = SiPycqa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.d.ts new file mode 100644 index 000000000..f82252a64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#201B44"; +declare const SiPycqa: IconType; +export { SiPycqa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.mjs new file mode 100644 index 000000000..c6e1e59cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPycqa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#201B44"; +const SiPycqa = React.forwardRef(function SiPycqa2({ title = "PyCQA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.256 6.935c-.176 1.188-.244 1.694.88 1.694l-.008.068H0l.008-.068c1.008 0 1.096-.55 1.283-1.694l.518-3.331c.187-1.187.275-1.693-.745-1.693l.008-.068H4.57c1.893 0 2.901.47 2.901 1.618 0 1.9-2.127 2.383-3.761 2.383h-.176l.008-.08h.148c1.371 0 1.733-1.47 1.733-2.654 0-.825-.335-1.195-1.108-1.195h-.274zm7.905-1.251-.04-.008c-.657 2.511-1.303 3.096-2.343 3.096-1.35 0-1.315-1.008-1.203-1.685l.478-2.929c.028-.195-.127-.343-.402-.255l-.028-.028c.342-.167 1.028-.382 1.498-.382.558 0 .753.207.646.872l-.51 3.136c-.08.462.007.745.314.745.598 0 1.08-1.127 1.439-2.586.167-.677.442-1.94.107-2.108l.028-.028c1.331-.099 1.981-.079 1.734 1.511l-.53 3.359c-.275 1.725-2.566 3.419-3.734 3.419-1.961 0-2.578-1.734-3.977-1.734-.597 0-.825.283-.825.558 0 .243.168.462.518.462.235 0 .53-.235.423-.518 1.343-.135 1.371 1.881-.08 1.881-.753 0-1.155-.538-1.155-1.175 0-.961.88-2.156 2.163-2.156 2.264 0 3.144 2.331 3.706 2.331.733 0 .988-1.833 1.096-2.363zM5.034 22.261c-2.094-.397-3.679-2.239-3.679-4.447 0-2.499 2.028-4.527 4.526-4.527 2.499 0 4.527 2.028 4.527 4.527a4.51 4.51 0 0 1-.549 2.162l-1.754-3.034zm3.071-4.32 2.534 4.383H5.575zm7.604-8.397c-.957-.821-1.563-2.039-1.563-3.398 0-2.469 2.005-4.474 4.475-4.474 2.469 0 4.474 2.005 4.474 4.474 0 1.23-.497 2.344-1.3 3.154l.009.034c-.518.522-1.175.921-1.932 1.136-1.511.43-3.06.031-4.163-.926m5.925-.807c.599-.696.961-1.601.961-2.591 0-1.777-1.168-3.283-2.778-3.791zm.481 10.831 1.594 2.76H13.397l5.156-8.929 2.371 4.106H17.89v1.893l4.055-.001c.052.062.109.119.17.171m-3.725-1.563h3.831c.162-.292.473-.49.831-.49.523 0 .948.425.948.948 0 .524-.425.949-.948.949a.951.951 0 0 1-.844-.514H18.39z" }) + ] + } + ); +}); + +export { SiPycqa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.cjs new file mode 100644 index 000000000..d963ddcab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E92063"; +const SiPydantic = React__namespace.forwardRef(function SiPydantic2({ title = "Pydantic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.826 17.316-4.23-5.866-6.847-9.496c-.348-.48-1.151-.48-1.497 0l-6.845 9.494-4.233 5.868a.925.925 0 0 0 .46 1.417l11.078 3.626h.002a.92.92 0 0 0 .572 0h.002l11.077-3.626c.28-.092.5-.31.59-.592a.916.916 0 0 0-.13-.825h.002ZM12.001 4.07l4.44 6.158-4.152-1.36c-.032-.01-.066-.008-.098-.016a.8.8 0 0 0-.096-.016c-.032-.004-.062-.016-.094-.016s-.062.012-.094.016a.74.74 0 0 0-.096.016c-.032.006-.066.006-.096.016L7.59 10.221l-.026.008 4.44-6.158h-.002Zm-6.273 8.7 4.834-1.583.516-.168v9.19L2.41 17.372l3.317-4.6Zm7.197 7.437V11.02l5.35 1.752 3.316 4.598-8.666 2.838Z" }) + ] + } + ); +}); + +exports.default = SiPydantic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.d.ts new file mode 100644 index 000000000..214e854cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E92063"; +declare const SiPydantic: IconType; +export { SiPydantic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.mjs new file mode 100644 index 000000000..71868d91e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPydantic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E92063"; +const SiPydantic = React.forwardRef(function SiPydantic2({ title = "Pydantic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.826 17.316-4.23-5.866-6.847-9.496c-.348-.48-1.151-.48-1.497 0l-6.845 9.494-4.233 5.868a.925.925 0 0 0 .46 1.417l11.078 3.626h.002a.92.92 0 0 0 .572 0h.002l11.077-3.626c.28-.092.5-.31.59-.592a.916.916 0 0 0-.13-.825h.002ZM12.001 4.07l4.44 6.158-4.152-1.36c-.032-.01-.066-.008-.098-.016a.8.8 0 0 0-.096-.016c-.032-.004-.062-.016-.094-.016s-.062.012-.094.016a.74.74 0 0 0-.096.016c-.032.006-.066.006-.096.016L7.59 10.221l-.026.008 4.44-6.158h-.002Zm-6.273 8.7 4.834-1.583.516-.168v9.19L2.41 17.372l3.317-4.6Zm7.197 7.437V11.02l5.35 1.752 3.316 4.598-8.666 2.838Z" }) + ] + } + ); +}); + +export { SiPydantic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.cjs new file mode 100644 index 000000000..5cd3675b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3C2179"; +const SiPyg = React__namespace.forwardRef(function SiPyg2({ title = "PyG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.649 8.066-2.65 2.724a1.142 1.142 0 0 0-.531-.18l-.288-2.611a1.15 1.15 0 0 0 .804-.893l2.464.36c0 .053.004.106.013.158.03.159.095.31.188.442Zm-4.413 3.465H8.67a1.135 1.135 0 0 0-.337-.58l2.806-3.148c.172.135.38.218.597.24l.286 2.616a1.148 1.148 0 0 0-.787.872Zm-6.715-.427 1.886.596c-.01.103-.006.207.011.31a1.154 1.154 0 0 0 1.347.919c.062-.012.122-.03.18-.053l2.46 3.033a1.141 1.141 0 0 0-.23.837l-2.73.904a1.148 1.148 0 0 0-1.143-.583l-2.168-5.542a1.14 1.14 0 0 0 .387-.42Zm3.064 7.07c0-.034-.008-.068-.008-.103l2.732-.907a1.15 1.15 0 0 0 2.067-1.002l2.589-1.664c.139.174.326.305.538.374l-.319 3.825c-.03.008-.06.002-.09.008a1.152 1.152 0 0 0-.856.708l-6.653-1.238ZM9.464 4.729l1.487 1.456c-.212.26-.298.6-.237.93.025.124.07.244.135.354l-2.9 3.255a1.135 1.135 0 0 0-1.42.555l-1.872-.592a1.153 1.153 0 0 0-.008-.341 1.135 1.135 0 0 0-.258-.53l3.883-4.88a1.135 1.135 0 0 0 1.19-.206Zm7.212 3.827a.974.974 0 0 0 .54-.175l3.208 3.35a1.144 1.144 0 0 0-.206.703l-3.359.783a1.152 1.152 0 0 0-.69-.538l.504-4.123h.003Zm1.175-4.003-.929 1.754a1.135 1.135 0 0 0-1.415.723l-2.532-.373a1.135 1.135 0 0 0-1.681-.763L9.735 4.375c.052-.105.087-.218.103-.334l7.613-.134c.056.254.197.482.4.645Zm-3.058 8.815a1.135 1.135 0 0 0-.064.637c.007.033.022.067.032.103l-2.63 1.692a1.154 1.154 0 0 0-.397-.258l.597-2.633a1.135 1.135 0 0 0 .91-.41l1.552.87Zm.858-.719a1.135 1.135 0 0 0-.62.337l-1.574-.879a1.124 1.124 0 0 0-.146-1.011l2.65-2.725c.084.056.176.1.273.131l-.505 4.143c-.027.003-.053.002-.078.004Zm-7.325.001a1.15 1.15 0 0 0 .36-.676h2.548c.071.37.32.683.665.835l-.6 2.65a1.19 1.19 0 0 0-.2.018 1.143 1.143 0 0 0-.364.14L8.326 12.65ZM13.9 23.927l-8.674-1.816 1.068-2.767c.119.017.24.016.357-.005a1.15 1.15 0 0 0 .863-.73l6.642 1.237c-.002.43.241.822.627 1.012l-.883 3.07Zm-9.041-2.09-4.82-7.372 2.852-2.947c.246.16.544.22.833.168l2.151 5.52a1.144 1.144 0 0 0 0 2L4.86 21.838Zm16.61-2.668-7.068 4.62.804-2.804c.105.011.212.008.316-.01.523-.1.91-.546.935-1.078l5.013-.728Zm.07-18.79L24 12.717l-1.483-.31a1.15 1.15 0 0 0-1.285-1.159l-2.104-6.58a1.15 1.15 0 0 0 .58-1.22 1.129 1.129 0 0 0-.25-.515L21.54.379Zm2.432 12.783-1.977 5.48-5.604.814a1.126 1.126 0 0 0-.201-.352l4.639-5.697c.594.322 1.338.06 1.598-.565l1.545.32ZM0 13.87 1.773 5.4l5.86-1.105c.06.15.152.287.268.4L4.046 9.54a1.135 1.135 0 0 0-.742-.115 1.154 1.154 0 0 0-.92 1.342c.03.16.095.312.189.445L0 13.869Zm20.737-2.444-3.212-3.35a1.135 1.135 0 0 0-.215-1.556l.93-1.755c.15.047.31.061.468.043l2.104 6.581-.075.037ZM21.199.1l-2.08 2.557a1.135 1.135 0 0 0-1.51.385L10.21.073 21.2.099ZM2.306 4.848 9.387.218l8.059 3.233v.014L9.822 3.6a1.15 1.15 0 0 0-2.27.26l-5.246.989Zm13.536 13.976a1.18 1.18 0 0 0-.225-.091l.32-3.808a1.01 1.01 0 0 0 .135-.012 1.15 1.15 0 0 0 .929-1.28l3.316-.768c.043.095.1.183.167.263l-4.642 5.696Z" }) + ] + } + ); +}); + +exports.default = SiPyg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.d.ts new file mode 100644 index 000000000..8746e0ba2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3C2179"; +declare const SiPyg: IconType; +export { SiPyg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.mjs new file mode 100644 index 000000000..551324821 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3C2179"; +const SiPyg = React.forwardRef(function SiPyg2({ title = "PyG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.649 8.066-2.65 2.724a1.142 1.142 0 0 0-.531-.18l-.288-2.611a1.15 1.15 0 0 0 .804-.893l2.464.36c0 .053.004.106.013.158.03.159.095.31.188.442Zm-4.413 3.465H8.67a1.135 1.135 0 0 0-.337-.58l2.806-3.148c.172.135.38.218.597.24l.286 2.616a1.148 1.148 0 0 0-.787.872Zm-6.715-.427 1.886.596c-.01.103-.006.207.011.31a1.154 1.154 0 0 0 1.347.919c.062-.012.122-.03.18-.053l2.46 3.033a1.141 1.141 0 0 0-.23.837l-2.73.904a1.148 1.148 0 0 0-1.143-.583l-2.168-5.542a1.14 1.14 0 0 0 .387-.42Zm3.064 7.07c0-.034-.008-.068-.008-.103l2.732-.907a1.15 1.15 0 0 0 2.067-1.002l2.589-1.664c.139.174.326.305.538.374l-.319 3.825c-.03.008-.06.002-.09.008a1.152 1.152 0 0 0-.856.708l-6.653-1.238ZM9.464 4.729l1.487 1.456c-.212.26-.298.6-.237.93.025.124.07.244.135.354l-2.9 3.255a1.135 1.135 0 0 0-1.42.555l-1.872-.592a1.153 1.153 0 0 0-.008-.341 1.135 1.135 0 0 0-.258-.53l3.883-4.88a1.135 1.135 0 0 0 1.19-.206Zm7.212 3.827a.974.974 0 0 0 .54-.175l3.208 3.35a1.144 1.144 0 0 0-.206.703l-3.359.783a1.152 1.152 0 0 0-.69-.538l.504-4.123h.003Zm1.175-4.003-.929 1.754a1.135 1.135 0 0 0-1.415.723l-2.532-.373a1.135 1.135 0 0 0-1.681-.763L9.735 4.375c.052-.105.087-.218.103-.334l7.613-.134c.056.254.197.482.4.645Zm-3.058 8.815a1.135 1.135 0 0 0-.064.637c.007.033.022.067.032.103l-2.63 1.692a1.154 1.154 0 0 0-.397-.258l.597-2.633a1.135 1.135 0 0 0 .91-.41l1.552.87Zm.858-.719a1.135 1.135 0 0 0-.62.337l-1.574-.879a1.124 1.124 0 0 0-.146-1.011l2.65-2.725c.084.056.176.1.273.131l-.505 4.143c-.027.003-.053.002-.078.004Zm-7.325.001a1.15 1.15 0 0 0 .36-.676h2.548c.071.37.32.683.665.835l-.6 2.65a1.19 1.19 0 0 0-.2.018 1.143 1.143 0 0 0-.364.14L8.326 12.65ZM13.9 23.927l-8.674-1.816 1.068-2.767c.119.017.24.016.357-.005a1.15 1.15 0 0 0 .863-.73l6.642 1.237c-.002.43.241.822.627 1.012l-.883 3.07Zm-9.041-2.09-4.82-7.372 2.852-2.947c.246.16.544.22.833.168l2.151 5.52a1.144 1.144 0 0 0 0 2L4.86 21.838Zm16.61-2.668-7.068 4.62.804-2.804c.105.011.212.008.316-.01.523-.1.91-.546.935-1.078l5.013-.728Zm.07-18.79L24 12.717l-1.483-.31a1.15 1.15 0 0 0-1.285-1.159l-2.104-6.58a1.15 1.15 0 0 0 .58-1.22 1.129 1.129 0 0 0-.25-.515L21.54.379Zm2.432 12.783-1.977 5.48-5.604.814a1.126 1.126 0 0 0-.201-.352l4.639-5.697c.594.322 1.338.06 1.598-.565l1.545.32ZM0 13.87 1.773 5.4l5.86-1.105c.06.15.152.287.268.4L4.046 9.54a1.135 1.135 0 0 0-.742-.115 1.154 1.154 0 0 0-.92 1.342c.03.16.095.312.189.445L0 13.869Zm20.737-2.444-3.212-3.35a1.135 1.135 0 0 0-.215-1.556l.93-1.755c.15.047.31.061.468.043l2.104 6.581-.075.037ZM21.199.1l-2.08 2.557a1.135 1.135 0 0 0-1.51.385L10.21.073 21.2.099ZM2.306 4.848 9.387.218l8.059 3.233v.014L9.822 3.6a1.15 1.15 0 0 0-2.27.26l-5.246.989Zm13.536 13.976a1.18 1.18 0 0 0-.225-.091l.32-3.808a1.01 1.01 0 0 0 .135-.012 1.15 1.15 0 0 0 .929-1.28l3.316-.768c.043.095.1.183.167.263l-4.642 5.696Z" }) + ] + } + ); +}); + +export { SiPyg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.cjs new file mode 100644 index 000000000..40589928c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3775A9"; +const SiPypi = React__namespace.forwardRef(function SiPypi2({ title = "PyPI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.922 13.58v3.912L20.55 18.72l-.078.055.052.037 3.45-1.256.026-.036v-3.997l-.053-.036-.025.092z M23.621 5.618l-3.04 1.107v3.912l3.339-1.215V5.509zM23.92 13.457V9.544l-3.336 1.215v3.913zM20.47 14.71V10.8L17.17 12v3.913zM17.034 19.996v-3.912l-3.313 1.206v3.912zM17.17 16.057v3.868l3.314-1.206V14.85l-3.314 1.206zm2.093 1.882c-.367.134-.663-.074-.663-.463s.296-.814.663-.947c.365-.133.662.075.662.464s-.297.814-.662.946z M13.225 9.315l.365-.132-3.285-1.197-3.323 1.21.102.037 3.184 1.16zM20.507 10.664V6.751L17.17 7.965v3.913zM17.058 11.918V8.005l-3.302 1.202v3.912zM13.643 9.246l-3.336 1.215v3.913l3.336-1.215zM6.907 13.165l3.322 1.209v-3.913L6.907 9.252z M10.34 7.873l3.281 1.193V5.198l-3.28-1.193zM20.507 2.715L17.19 3.922v3.913l3.317-1.207zM16.95 3.903L13.724 2.73l-3.269 1.19 3.225 1.174zM15.365 4.606l-1.624.592v3.868l3.317-1.207V3.991l-1.693.615zm-.391 2.778c-.367.134-.662-.074-.662-.464s.295-.813.662-.946c.366-.133.663.074.663.464s-.297.813-.663.946z M10.229 18.41v-3.914l-3.322-1.209V17.2zM13.678 17.182v-3.913l-3.371 1.227v3.913z M13.756 17.154l3.3-1.2V12.04l-3.3 1.2zM13.678 21.217l-3.371 1.227v-3.912h-.078v3.912l-3.322-1.209v-3.913l-.053-.058-.025-.06-3.336-1.21v-3.948l.034.013 3.287 1.196.015-.078-3.261-1.187 3.26-1.187v-.109L3.876 9.62l-.307-.112 3.26-1.188v.877l.079-.055V6.769l3.257 1.185.058-.061L7.084 6.75l-.102-.037 3.24-1.179v-.083L6.854 6.677v.018l-.025.018v1.523L3.44 9.47v.02l-.025.017v4.007l-3.39 1.233v.019L0 14.784v3.995l.025.037 3.4 1.237.008-.006.007.01 3.4 1.238.008-.006.006.01 3.4 1.237.014-.009.012.01 3.45-1.256.026-.037-.078-.027zM3.493 9.563l3.257 1.185-3.257 1.187V9.562zM3.4 19.96L.078 18.752v-3.913l2.361.86.96.349v3.913zm.015-3.99L.335 14.85l-.182-.066 3.262-1.187v2.374zm3.399 5.231l-3.321-1.209v-3.912l3.321 1.209v3.912zM23.791 5.434l-3.21-1.17v2.338zM20.387 2.643l-3.24-1.18-3.27 1.19 3.247 1.182z" }) + ] + } + ); +}); + +exports.default = SiPypi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.d.ts new file mode 100644 index 000000000..3e1db6d60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3775A9"; +declare const SiPypi: IconType; +export { SiPypi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.mjs new file mode 100644 index 000000000..75b4e464c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPypi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3775A9"; +const SiPypi = React.forwardRef(function SiPypi2({ title = "PyPI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.922 13.58v3.912L20.55 18.72l-.078.055.052.037 3.45-1.256.026-.036v-3.997l-.053-.036-.025.092z M23.621 5.618l-3.04 1.107v3.912l3.339-1.215V5.509zM23.92 13.457V9.544l-3.336 1.215v3.913zM20.47 14.71V10.8L17.17 12v3.913zM17.034 19.996v-3.912l-3.313 1.206v3.912zM17.17 16.057v3.868l3.314-1.206V14.85l-3.314 1.206zm2.093 1.882c-.367.134-.663-.074-.663-.463s.296-.814.663-.947c.365-.133.662.075.662.464s-.297.814-.662.946z M13.225 9.315l.365-.132-3.285-1.197-3.323 1.21.102.037 3.184 1.16zM20.507 10.664V6.751L17.17 7.965v3.913zM17.058 11.918V8.005l-3.302 1.202v3.912zM13.643 9.246l-3.336 1.215v3.913l3.336-1.215zM6.907 13.165l3.322 1.209v-3.913L6.907 9.252z M10.34 7.873l3.281 1.193V5.198l-3.28-1.193zM20.507 2.715L17.19 3.922v3.913l3.317-1.207zM16.95 3.903L13.724 2.73l-3.269 1.19 3.225 1.174zM15.365 4.606l-1.624.592v3.868l3.317-1.207V3.991l-1.693.615zm-.391 2.778c-.367.134-.662-.074-.662-.464s.295-.813.662-.946c.366-.133.663.074.663.464s-.297.813-.663.946z M10.229 18.41v-3.914l-3.322-1.209V17.2zM13.678 17.182v-3.913l-3.371 1.227v3.913z M13.756 17.154l3.3-1.2V12.04l-3.3 1.2zM13.678 21.217l-3.371 1.227v-3.912h-.078v3.912l-3.322-1.209v-3.913l-.053-.058-.025-.06-3.336-1.21v-3.948l.034.013 3.287 1.196.015-.078-3.261-1.187 3.26-1.187v-.109L3.876 9.62l-.307-.112 3.26-1.188v.877l.079-.055V6.769l3.257 1.185.058-.061L7.084 6.75l-.102-.037 3.24-1.179v-.083L6.854 6.677v.018l-.025.018v1.523L3.44 9.47v.02l-.025.017v4.007l-3.39 1.233v.019L0 14.784v3.995l.025.037 3.4 1.237.008-.006.007.01 3.4 1.238.008-.006.006.01 3.4 1.237.014-.009.012.01 3.45-1.256.026-.037-.078-.027zM3.493 9.563l3.257 1.185-3.257 1.187V9.562zM3.4 19.96L.078 18.752v-3.913l2.361.86.96.349v3.913zm.015-3.99L.335 14.85l-.182-.066 3.262-1.187v2.374zm3.399 5.231l-3.321-1.209v-3.912l3.321 1.209v3.912zM23.791 5.434l-3.21-1.17v2.338zM20.387 2.643l-3.24-1.18-3.27 1.19 3.247 1.182z" }) + ] + } + ); +}); + +export { SiPypi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.cjs new file mode 100644 index 000000000..70b0feb50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#193440"; +const SiPypy = React__namespace.forwardRef(function SiPypy2({ title = "PyPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.947 0c-.099 0-.2.005-.3.016a2.706 2.706 0 0 0-1.27.447c-.164.009-.324.038-.488.053-1.78.279-3.037 1.197-3.92 2.286-1.702 2.515-1.711 6.092-1.481 8.471a6.55 6.55 0 0 1 1.86-3.765c.069-.069.15-.136.22-.217l.034-.034c.09-.078.18-.154.272-.228a8.87 8.87 0 0 1 .416-.309c.028-.014.056-.027.084-.055l.436-.273.03-.016.068-.035a4.99 4.99 0 0 1 .478-.225c.029-.014.07-.029.098-.043.127-.056.268-.098.395-.14-.002-.003-.006-.004-.008-.006l.022-.008a2.162 2.162 0 0 0-.268-.238 1.827 1.827 0 0 0-.731-.268 3.248 3.248 0 0 0-.829-.041 4.37 4.37 0 0 0-.799.115c.248-.102.497-.19.77-.242.279-.07.573-.111.88-.112.265 0 .55.036.82.135l.002.004c.028.014.042.015.07.03.07.028.155.069.225.11.01.006.017.013.026.018l.002.012c.14.084.268.196.394.323l.014.013c.004 0 .006 0 .01-.002a2.821 2.821 0 0 0 2.407.944l.254-.04h.041l.557-.114c1.867-.435 2.185-.507 3.135-1.036.4-.321.562-.548.63-.762.07-.217.055-.455.073-.797l-.002.01c-.001-.374-.282-.8-.696-1.22-.41-.417-.932-.824-1.366-1.196-.53-.374-.785-.718-1.031-.973a1.669 1.669 0 0 0-.63-.434A2.778 2.778 0 0 0 12.947 0zm2.362.934c.12.113.231.224.405.346l.008.004.005.006c.425.365.963.78 1.402 1.225.438.446.795.93.797 1.465v.004l-.002.006c-.017.319.008.589-.088.885-.096.297-.311.588-.754.94l-.012.01-.012.008a9.773 9.773 0 0 1-.584.303c1.232.485 2.467 1.071 3.808 2.118v-.002c1.21.937 2.345 2.057 3.49 3.74-.105-5.25-3.649-9.647-8.463-11.058zM8.534.98a11.576 11.576 0 0 0-2.155.897c-.07.038-.14.08-.209.12a11.768 11.768 0 0 0-5.942 10.02c.033 1.843.683 3.221 1.708 4.232 1.061 1.048 2.528 1.703 4.109 2.034 1.585.333 3.247.442 4.743.362a6.236 6.236 0 0 1-1.92-.692 11.15 11.15 0 0 1-.55-.322 12.475 12.475 0 0 1-.45-.338l-.295-.252a1.697 1.697 0 0 1-.225-.225 6.776 6.776 0 0 1-1.237-1.702c-.028-.056-.056-.126-.084-.182a6.412 6.412 0 0 1-.318-.858c-.104-.294-.318-.938-.489-2.003v-.006c-.299-2.347-.525-6.536 1.464-9.467l.004-.006.004-.006A6.873 6.873 0 0 1 8.534.98zm4.776 3.853c.059-.001.12 0 .182.004.492.043.87.282.856.55-.028.252-.434.436-.926.408-.492-.042-.872-.282-.858-.55.012-.233.336-.401.746-.412zm2.699 1.491c-.164.061-.451.142-.657.2 1.835 1.094 3.106 3.045 3.215 5.315l.004.068c.003.077.006.153.007.233v.04c0 .037-.005.072-.006.108.101 2.366-.31 3.562-1.291 5.62v.002c-.99 2.092-3.237 4.63-5.012 6.089 6.255-.14 11.293-5.145 11.494-11.384-1.22-1.9-2.408-3.086-3.696-4.084-1.43-1.117-2.725-1.7-4.058-2.207zm2.104 8.256c-.045.118-.087.238-.138.352-.029.056-.056.126-.084.182a6.537 6.537 0 0 1-1.462 1.927l-.295.252c-.14.112-.295.225-.45.338a5.13 5.13 0 0 1-.549.322c-.183.1-.375.185-.568.268v.002l-.016.006a6.555 6.555 0 0 1-.412.154c-2.013.742-5.2.867-8.166.244-1.63-.341-3.157-1.02-4.282-2.13a5.941 5.941 0 0 1-1.164-1.625C1.703 20.009 6.232 23.859 11.694 24c1.76-1.35 4.256-4.096 5.27-6.241v-.002c.598-1.253.97-2.146 1.15-3.178z" }) + ] + } + ); +}); + +exports.default = SiPypy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.d.ts new file mode 100644 index 000000000..89f520c1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#193440"; +declare const SiPypy: IconType; +export { SiPypy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.mjs new file mode 100644 index 000000000..c49acc78f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPypy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#193440"; +const SiPypy = React.forwardRef(function SiPypy2({ title = "PyPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.947 0c-.099 0-.2.005-.3.016a2.706 2.706 0 0 0-1.27.447c-.164.009-.324.038-.488.053-1.78.279-3.037 1.197-3.92 2.286-1.702 2.515-1.711 6.092-1.481 8.471a6.55 6.55 0 0 1 1.86-3.765c.069-.069.15-.136.22-.217l.034-.034c.09-.078.18-.154.272-.228a8.87 8.87 0 0 1 .416-.309c.028-.014.056-.027.084-.055l.436-.273.03-.016.068-.035a4.99 4.99 0 0 1 .478-.225c.029-.014.07-.029.098-.043.127-.056.268-.098.395-.14-.002-.003-.006-.004-.008-.006l.022-.008a2.162 2.162 0 0 0-.268-.238 1.827 1.827 0 0 0-.731-.268 3.248 3.248 0 0 0-.829-.041 4.37 4.37 0 0 0-.799.115c.248-.102.497-.19.77-.242.279-.07.573-.111.88-.112.265 0 .55.036.82.135l.002.004c.028.014.042.015.07.03.07.028.155.069.225.11.01.006.017.013.026.018l.002.012c.14.084.268.196.394.323l.014.013c.004 0 .006 0 .01-.002a2.821 2.821 0 0 0 2.407.944l.254-.04h.041l.557-.114c1.867-.435 2.185-.507 3.135-1.036.4-.321.562-.548.63-.762.07-.217.055-.455.073-.797l-.002.01c-.001-.374-.282-.8-.696-1.22-.41-.417-.932-.824-1.366-1.196-.53-.374-.785-.718-1.031-.973a1.669 1.669 0 0 0-.63-.434A2.778 2.778 0 0 0 12.947 0zm2.362.934c.12.113.231.224.405.346l.008.004.005.006c.425.365.963.78 1.402 1.225.438.446.795.93.797 1.465v.004l-.002.006c-.017.319.008.589-.088.885-.096.297-.311.588-.754.94l-.012.01-.012.008a9.773 9.773 0 0 1-.584.303c1.232.485 2.467 1.071 3.808 2.118v-.002c1.21.937 2.345 2.057 3.49 3.74-.105-5.25-3.649-9.647-8.463-11.058zM8.534.98a11.576 11.576 0 0 0-2.155.897c-.07.038-.14.08-.209.12a11.768 11.768 0 0 0-5.942 10.02c.033 1.843.683 3.221 1.708 4.232 1.061 1.048 2.528 1.703 4.109 2.034 1.585.333 3.247.442 4.743.362a6.236 6.236 0 0 1-1.92-.692 11.15 11.15 0 0 1-.55-.322 12.475 12.475 0 0 1-.45-.338l-.295-.252a1.697 1.697 0 0 1-.225-.225 6.776 6.776 0 0 1-1.237-1.702c-.028-.056-.056-.126-.084-.182a6.412 6.412 0 0 1-.318-.858c-.104-.294-.318-.938-.489-2.003v-.006c-.299-2.347-.525-6.536 1.464-9.467l.004-.006.004-.006A6.873 6.873 0 0 1 8.534.98zm4.776 3.853c.059-.001.12 0 .182.004.492.043.87.282.856.55-.028.252-.434.436-.926.408-.492-.042-.872-.282-.858-.55.012-.233.336-.401.746-.412zm2.699 1.491c-.164.061-.451.142-.657.2 1.835 1.094 3.106 3.045 3.215 5.315l.004.068c.003.077.006.153.007.233v.04c0 .037-.005.072-.006.108.101 2.366-.31 3.562-1.291 5.62v.002c-.99 2.092-3.237 4.63-5.012 6.089 6.255-.14 11.293-5.145 11.494-11.384-1.22-1.9-2.408-3.086-3.696-4.084-1.43-1.117-2.725-1.7-4.058-2.207zm2.104 8.256c-.045.118-.087.238-.138.352-.029.056-.056.126-.084.182a6.537 6.537 0 0 1-1.462 1.927l-.295.252c-.14.112-.295.225-.45.338a5.13 5.13 0 0 1-.549.322c-.183.1-.375.185-.568.268v.002l-.016.006a6.555 6.555 0 0 1-.412.154c-2.013.742-5.2.867-8.166.244-1.63-.341-3.157-1.02-4.282-2.13a5.941 5.941 0 0 1-1.164-1.625C1.703 20.009 6.232 23.859 11.694 24c1.76-1.35 4.256-4.096 5.27-6.241v-.002c.598-1.253.97-2.146 1.15-3.178z" }) + ] + } + ); +}); + +export { SiPypy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.cjs new file mode 100644 index 000000000..5b2ce7ed4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005CA0"; +const SiPyscaffold = React__namespace.forwardRef(function SiPyscaffold2({ title = "PyScaffold", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.402 2.06C.357 2.06 0 5.626 0 5.626l5.36.996s-3.65.862-4.227 1.054c.167.456 1.701.623 1.701.623h5.434c.886 0 1.342-.815 1.342-.815h9.056c.193 0 1.366 0 1.366 1.582 0 1.583-1.366 1.777-1.366 1.777H7.787c-.175 0-1.577.258-2.765 1.361h.077v.11h-.184a5.18 5.18 0 00-1.352 2.327h4.57c.154-.072.27-.11.27-.11h10.208c1.819.003 3.51-.837 4.466-2.218h-.282v-.11h.331c.523-.907.865-2.176.874-3.068 0-3.73-2.84-5.527-4.72-5.527h-9.25c-.61-1.192-2.101-1.55-2.101-1.55h-.896l.316 1.096h-.283v4.02h.283c-.107.367-.212.736-.318 1.105l-.318-1.106h.261V3.155h-.26l.315-1.096zm.788 1.419a.557.557 0 01.566.56.553.553 0 01-.561.56c-.747.003-.752-1.117-.005-1.12zm2.019 8.726h.33v.108h-.33zm.44 0h.33v.108h-.33zm.439 0h.332v.108h-.331l-.001-.108zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.768 0v.108h-.327v-.11c.101.005.22.001.327.002zm.109 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33v-.11zm.44 0h.33v.108h-.33v-.11zm.44 0h.33v.108h-.33v-.11zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33v-.108zM3.52 14.812c-.015.061-.022.13-.036.193l.277-.192-.241-.001zm.543 0l-.622.43a7.27 7.27 0 00-.097.765l1.726-1.194zm1.306 0l-2.038 1.412c-.005.11-.019.208-.019.321 0 .184.017.351.03.524l3.262-2.256-1.235-.001zm1.532 0L3.354 17.27c.022.217.057.418.099.615 1.38-.925 2.753-1.89 4.123-2.838.09-.093.182-.17.273-.233-.314.001-.64-.001-.948-.002zm.404.627l-3.532 2.445h.992l2.337-1.62c.005-.284.073-.565.2-.825zm-.203 1.037l-2.039 1.408h1.003l1.149-.795a2.066 2.066 0 01-.113-.614zm.173.778l-.908.63h.843l.336-.233a1.539 1.539 0 01-.27-.398zm.397.517l-.163.113h.348c-.064-.041-.119-.055-.185-.113zm-4.186.283c.835 3.483 4.47 3.888 4.47 3.888h7.856c2.412 0 4.141-3.805 4.141-3.805-3.864.002-7.729-.007-11.593-.012 0 0-.092-.018-.224-.071H3.485zm9.045.099l.26 1h-.231v1.786h.23l-.259.98-.275-.98h.211v-1.787h-.21Z" }) + ] + } + ); +}); + +exports.default = SiPyscaffold; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.d.ts new file mode 100644 index 000000000..f0813dc27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005CA0"; +declare const SiPyscaffold: IconType; +export { SiPyscaffold as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.mjs new file mode 100644 index 000000000..8693c962c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyscaffold.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005CA0"; +const SiPyscaffold = React.forwardRef(function SiPyscaffold2({ title = "PyScaffold", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.402 2.06C.357 2.06 0 5.626 0 5.626l5.36.996s-3.65.862-4.227 1.054c.167.456 1.701.623 1.701.623h5.434c.886 0 1.342-.815 1.342-.815h9.056c.193 0 1.366 0 1.366 1.582 0 1.583-1.366 1.777-1.366 1.777H7.787c-.175 0-1.577.258-2.765 1.361h.077v.11h-.184a5.18 5.18 0 00-1.352 2.327h4.57c.154-.072.27-.11.27-.11h10.208c1.819.003 3.51-.837 4.466-2.218h-.282v-.11h.331c.523-.907.865-2.176.874-3.068 0-3.73-2.84-5.527-4.72-5.527h-9.25c-.61-1.192-2.101-1.55-2.101-1.55h-.896l.316 1.096h-.283v4.02h.283c-.107.367-.212.736-.318 1.105l-.318-1.106h.261V3.155h-.26l.315-1.096zm.788 1.419a.557.557 0 01.566.56.553.553 0 01-.561.56c-.747.003-.752-1.117-.005-1.12zm2.019 8.726h.33v.108h-.33zm.44 0h.33v.108h-.33zm.439 0h.332v.108h-.331l-.001-.108zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.768 0v.108h-.327v-.11c.101.005.22.001.327.002zm.109 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33v-.11zm.44 0h.33v.108h-.33v-.11zm.44 0h.33v.108h-.33v-.11zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.33v.108h-.33zm.44 0h.329v.108h-.33l.001-.108zm.439 0h.33v.108h-.33zm.44 0h.33v.108h-.33v-.108zM3.52 14.812c-.015.061-.022.13-.036.193l.277-.192-.241-.001zm.543 0l-.622.43a7.27 7.27 0 00-.097.765l1.726-1.194zm1.306 0l-2.038 1.412c-.005.11-.019.208-.019.321 0 .184.017.351.03.524l3.262-2.256-1.235-.001zm1.532 0L3.354 17.27c.022.217.057.418.099.615 1.38-.925 2.753-1.89 4.123-2.838.09-.093.182-.17.273-.233-.314.001-.64-.001-.948-.002zm.404.627l-3.532 2.445h.992l2.337-1.62c.005-.284.073-.565.2-.825zm-.203 1.037l-2.039 1.408h1.003l1.149-.795a2.066 2.066 0 01-.113-.614zm.173.778l-.908.63h.843l.336-.233a1.539 1.539 0 01-.27-.398zm.397.517l-.163.113h.348c-.064-.041-.119-.055-.185-.113zm-4.186.283c.835 3.483 4.47 3.888 4.47 3.888h7.856c2.412 0 4.141-3.805 4.141-3.805-3.864.002-7.729-.007-11.593-.012 0 0-.092-.018-.224-.071H3.485zm9.045.099l.26 1h-.231v1.786h.23l-.259.98-.275-.98h.211v-1.787h-.21Z" }) + ] + } + ); +}); + +export { SiPyscaffold as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.cjs new file mode 100644 index 000000000..6a1ac264a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F1BF7A"; +const SiPysyft = React__namespace.forwardRef(function SiPysyft2({ title = "PySyft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.524 17.985 1.413-.46V13.64Zm6.485-5.632L24 9.305l-6.786-4.93zm-4.346-4.515 2.414 7.422 1.489-2.052zm.136 3.2 1.59 4.898-1.59 1.156zM9.732 20.19l3.688-1.198H8.863ZM12 22.03l4.159-3.023-5.747 1.87zm3.266 1.225 3.894-5.363-6.305 4.581zm4.149.158h-3.2l5.788-7.967Zm-9.657-1.947-6.305-4.581v2.532zm-5.175 1.947h8.377l-9.365-3.045Zm-.365-9.346-.607 1.87 4.16 3.021zm2.722 2.284-2.278-3.14.87-1.197ZM0 9.305l2.592 7.98V7.422Zm5.865-3.091-2.41.784v6.635Zm.952-.14-1.593 4.898 3.561-4.897Zm2.915.159 1.413.46-3.696 2.685zm4.863-3.761L11.998.587 5.206 5.52ZM8.946 5.213h7.81L15.267 3.16zm3.083.862 5.765 1.872-.61-1.872zm5.908 2.823v1.488l-3.702-2.688Z" }) + ] + } + ); +}); + +exports.default = SiPysyft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.d.ts new file mode 100644 index 000000000..618a24493 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F1BF7A"; +declare const SiPysyft: IconType; +export { SiPysyft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.mjs new file mode 100644 index 000000000..f398847cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPysyft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F1BF7A"; +const SiPysyft = React.forwardRef(function SiPysyft2({ title = "PySyft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.524 17.985 1.413-.46V13.64Zm6.485-5.632L24 9.305l-6.786-4.93zm-4.346-4.515 2.414 7.422 1.489-2.052zm.136 3.2 1.59 4.898-1.59 1.156zM9.732 20.19l3.688-1.198H8.863ZM12 22.03l4.159-3.023-5.747 1.87zm3.266 1.225 3.894-5.363-6.305 4.581zm4.149.158h-3.2l5.788-7.967Zm-9.657-1.947-6.305-4.581v2.532zm-5.175 1.947h8.377l-9.365-3.045Zm-.365-9.346-.607 1.87 4.16 3.021zm2.722 2.284-2.278-3.14.87-1.197ZM0 9.305l2.592 7.98V7.422Zm5.865-3.091-2.41.784v6.635Zm.952-.14-1.593 4.898 3.561-4.897Zm2.915.159 1.413.46-3.696 2.685zm4.863-3.761L11.998.587 5.206 5.52ZM8.946 5.213h7.81L15.267 3.16zm3.083.862 5.765 1.872-.61-1.872zm5.908 2.823v1.488l-3.702-2.688Z" }) + ] + } + ); +}); + +export { SiPysyft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.cjs new file mode 100644 index 000000000..fde68a1f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A9EDC"; +const SiPytest = React__namespace.forwardRef(function SiPytest2({ title = "Pytest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.6152 0v.8867h3.8399V0zm5.0215 0v.8867h3.8418V0zm4.957 0v.8867h3.8418V0zm4.9356 0v.8867h3.8418V0zM2.4473 1.8945a.935.935 0 0 0-.9356.9356c0 .517.4185.9375.9356.9375h19.1054c.5171 0 .9356-.4204.9356-.9375a.935.935 0 0 0-.9356-.9356zm.168 2.8477V24H6.455V4.7422zm5.0214 0V20.543h3.8418V4.7422zm4.957 0V15.291h3.8497V4.7422zm4.9356 0v6.4941h3.8418V4.7422z" }) + ] + } + ); +}); + +exports.default = SiPytest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.d.ts new file mode 100644 index 000000000..13c04464b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A9EDC"; +declare const SiPytest: IconType; +export { SiPytest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.mjs new file mode 100644 index 000000000..4d6757b73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPytest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A9EDC"; +const SiPytest = React.forwardRef(function SiPytest2({ title = "Pytest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.6152 0v.8867h3.8399V0zm5.0215 0v.8867h3.8418V0zm4.957 0v.8867h3.8418V0zm4.9356 0v.8867h3.8418V0zM2.4473 1.8945a.935.935 0 0 0-.9356.9356c0 .517.4185.9375.9356.9375h19.1054c.5171 0 .9356-.4204.9356-.9375a.935.935 0 0 0-.9356-.9356zm.168 2.8477V24H6.455V4.7422zm5.0214 0V20.543h3.8418V4.7422zm4.957 0V15.291h3.8497V4.7422zm4.9356 0v6.4941h3.8418V4.7422z" }) + ] + } + ); +}); + +export { SiPytest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPython.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPython.cjs new file mode 100644 index 000000000..71f29e525 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPython.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3776AB"; +const SiPython = React__namespace.forwardRef(function SiPython2({ title = "Python", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z" }) + ] + } + ); +}); + +exports.default = SiPython; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPython.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPython.d.ts new file mode 100644 index 000000000..77dbf777f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPython.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3776AB"; +declare const SiPython: IconType; +export { SiPython as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPython.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPython.mjs new file mode 100644 index 000000000..fc854a1a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPython.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3776AB"; +const SiPython = React.forwardRef(function SiPython2({ title = "Python", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z" }) + ] + } + ); +}); + +export { SiPython as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.cjs new file mode 100644 index 000000000..e6faace37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D9FD7"; +const SiPythonanywhere = React__namespace.forwardRef(function SiPythonanywhere2({ title = "PythonAnywhere", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.435 20.69c-.09-.11-.219-.182-.328-.255-.092-.055-.128-.11-.11-.238.183-1.077.347-2.154.511-3.25.11-.73.22-1.46.347-2.227.165.11.329.22.475.329.036.036.018.091.018.128-.036.255-.073.53-.128.785l-.273 1.77-.274 1.753c-.019.146-.037.31-.073.457.073.018.11-.037.164-.055 1.387-.73 2.775-1.442 4.163-2.173l.11-.054c.036-.019.072-.037.109 0 .146.09.292.2.456.31-.073.036-.11.073-.164.091-1.607.84-3.195 1.68-4.802 2.52-.055.018-.11.036-.128.091l-.073.018zm-4.874-9.858c-.037.292-.091.547-.128.803-.128.84-.274 1.661-.402 2.501-.073.493-.164.986-.237 1.479-.018.091-.055.128-.128.146-.146.036-.31.091-.456.146-.018-.037 0-.073 0-.11.146-.912.292-1.807.438-2.72.146-.876.274-1.77.42-2.647.018-.073.036-.128.128-.146.127-.037.237-.073.365-.11.073-.036.128-.018.2.037l.932.93c.986.987 1.99 1.973 2.976 2.94.018.019.036.055.073.073-.183.073-.366.11-.53.183-.055.018-.091-.037-.11-.055-.237-.237-.474-.475-.73-.712a375.76 375.76 0 0 1-2.702-2.684c-.036 0-.054-.018-.11-.054m4.748 2.83a8.286 8.286 0 0 1-.402-.384c-.037-.037-.018-.091 0-.128.11-.328.219-.657.347-.986l1.205-3.45a.338.338 0 0 0 .036-.128c-.073-.018-.128.018-.182.036-1.497.475-2.976.932-4.473 1.406-.238.073-.165.092-.329-.073l-.274-.274c.037-.054.11-.054.165-.073 1.734-.547 3.468-1.095 5.185-1.643.127-.036.2-.018.292.073.054.073.146.146.219.22.073.054.073.127.054.2-.2.548-.383 1.096-.584 1.643-.401 1.15-.803 2.3-1.205 3.433a.318.318 0 0 1-.054.127m-.31 1.15a5.268 5.268 0 0 0-.074.53c0 .073-.055.073-.11.091-.401.128-.784.256-1.168.365-1.132.366-2.282.712-3.414 1.078-.036.018-.091.036-.146.054a.284.284 0 0 0 .146.11c1.278.876 2.556 1.77 3.834 2.647.11.073.183.146.128.292-.037.128-.037.256-.073.384-.055 0-.091-.037-.128-.055C8.496 19.284 7 18.244 5.502 17.22c-.091-.073-.128-.127-.11-.255.019-.11.055-.201.055-.31 0-.092.055-.128.128-.147 1.77-.566 3.56-1.113 5.33-1.68.02 0 .056 0 .092-.017M6.944 3.62c-.018.183-.055.365-.073.53 0 .073-.073.073-.128.073-.328.11-.675.2-1.004.31-1.205.365-2.391.73-3.596 1.095-.037.019-.092.019-.128.073.055.037.091.073.146.11 1.278.895 2.538 1.807 3.816 2.702.09.073.127.128.11.256a3.37 3.37 0 0 0-.074.42c-.055-.019-.091-.055-.146-.074L1.431 5.994c-.11-.074-.146-.147-.11-.256.018-.11.037-.2.055-.31 0-.073.036-.11.128-.147l1.26-.383c1.35-.402 2.683-.821 4.034-1.223.037-.037.091-.037.146-.055m5.477 3.725c-.146.054-.292.09-.438.146-.091.036-.164.018-.237-.055-.493-.511-1.004-1.004-1.516-1.516a183.922 183.922 0 0 0-1.825-1.807c-.037-.036-.055-.091-.128-.11a6.081 6.081 0 0 0-.091.566c-.146.859-.274 1.717-.42 2.556-.092.548-.183 1.078-.256 1.625-.018.092-.036.128-.128.146-.146.037-.31.092-.456.146-.018-.11.018-.2.036-.273l.548-3.396c.091-.603.201-1.205.292-1.808.019-.073.037-.11.11-.127.128-.037.237-.073.365-.11.091-.037.146-.018.219.055l1.46 1.46c.786.785 1.589 1.57 2.374 2.355.018.037.073.073.091.147m.672 7.755a3.728 3.728 0 0 1-.13-.76c-.115-.959-.014-1.885.36-2.774.572-1.388 1.56-2.417 2.904-3.073a8.12 8.12 0 0 1 2.116-.676c.05.059.027.13.023.185l.032.332c.013.074-.026.108-.1.12-.484.113-.97.262-1.423.469-1.228.536-2.164 1.367-2.76 2.57a4.954 4.954 0 0 0-.526 2.544c.02.24.04.478.078.719.013.074.009.129-.085.159a3.57 3.57 0 0 0-.489.185m2.53 1.77c.013-.183.006-.348.02-.53.004-.073.025-.108.117-.12.481-.076.947-.19 1.382-.397 1.606-.712 2.66-1.92 3.09-3.628.177-.683.207-1.376.146-2.076.002-.036-.012-.092-.01-.129.006-.072-.06-.169-.002-.22.04-.052.131-.045.205-.058.13-.028.242-.057.373-.102.057.242.075.5.077.737a7.32 7.32 0 0 1-.054 1.552 5.652 5.652 0 0 1-1.478 3.081c-.87.928-1.953 1.492-3.179 1.754a2.843 2.843 0 0 1-.687.135m5.343-10.442c.054.004.075-.032.113-.047a54.441 54.441 0 0 1 2.265-1.251c.039-.034.095-.048.147-.008.157.102.333.206.509.31a.555.555 0 0 1-.134.082c-.95.501-1.917.983-2.867 1.483a.865.865 0 0 0-.195.17c-.349.543-.718 1.103-1.067 1.646-.062.105-.062.105-.167.043-.106-.063-.193-.124-.299-.186-.105-.062-.105-.062-.044-.15l.677-1.05c.143-.21.268-.42.41-.63a.368.368 0 0 0 .07-.197 182.142 182.142 0 0 1 .211-3.297c.142.064.263.164.405.23.16.083.19.177.176.36a76.356 76.356 0 0 0-.16 2.038c-.01.145-.039.29-.05.454m-3.882 4.468c-.018.255-.316.6-.575.637a.458.458 0 0 1-.465-.16.43.43 0 0 1-.077-.463.87.87 0 0 1 .436-.482.445.445 0 0 1 .474.033c.156.12.238.255.207.435m1.856 1.21c-.018.255-.317.6-.577.655-.186.042-.328-.023-.464-.16a.4.4 0 0 1-.08-.445c.09-.232.23-.405.457-.5.322-.16.688.104.664.45M.883 6.432c.164.091.292.2.456.31.055.037.037.091.019.146l-.165 1.04c-.2 1.242-.401 2.465-.602 3.707 0 .036-.037.091 0 .146.055-.037.11-.055.164-.091l4.108-2.246c.11-.055.182-.055.274.018.11.092.219.165.347.256-.037.055-.092.073-.128.091-1.589.877-3.177 1.735-4.747 2.61-.11.056-.183.074-.274-.017-.073-.073-.164-.128-.255-.183-.073-.036-.092-.091-.073-.164.073-.438.146-.858.2-1.296.22-1.388.457-2.776.676-4.163a.253.253 0 0 1 0-.164" }) + ] + } + ); +}); + +exports.default = SiPythonanywhere; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.d.ts new file mode 100644 index 000000000..febba4436 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D9FD7"; +declare const SiPythonanywhere: IconType; +export { SiPythonanywhere as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.mjs new file mode 100644 index 000000000..793c30df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPythonanywhere.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D9FD7"; +const SiPythonanywhere = React.forwardRef(function SiPythonanywhere2({ title = "PythonAnywhere", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.435 20.69c-.09-.11-.219-.182-.328-.255-.092-.055-.128-.11-.11-.238.183-1.077.347-2.154.511-3.25.11-.73.22-1.46.347-2.227.165.11.329.22.475.329.036.036.018.091.018.128-.036.255-.073.53-.128.785l-.273 1.77-.274 1.753c-.019.146-.037.31-.073.457.073.018.11-.037.164-.055 1.387-.73 2.775-1.442 4.163-2.173l.11-.054c.036-.019.072-.037.109 0 .146.09.292.2.456.31-.073.036-.11.073-.164.091-1.607.84-3.195 1.68-4.802 2.52-.055.018-.11.036-.128.091l-.073.018zm-4.874-9.858c-.037.292-.091.547-.128.803-.128.84-.274 1.661-.402 2.501-.073.493-.164.986-.237 1.479-.018.091-.055.128-.128.146-.146.036-.31.091-.456.146-.018-.037 0-.073 0-.11.146-.912.292-1.807.438-2.72.146-.876.274-1.77.42-2.647.018-.073.036-.128.128-.146.127-.037.237-.073.365-.11.073-.036.128-.018.2.037l.932.93c.986.987 1.99 1.973 2.976 2.94.018.019.036.055.073.073-.183.073-.366.11-.53.183-.055.018-.091-.037-.11-.055-.237-.237-.474-.475-.73-.712a375.76 375.76 0 0 1-2.702-2.684c-.036 0-.054-.018-.11-.054m4.748 2.83a8.286 8.286 0 0 1-.402-.384c-.037-.037-.018-.091 0-.128.11-.328.219-.657.347-.986l1.205-3.45a.338.338 0 0 0 .036-.128c-.073-.018-.128.018-.182.036-1.497.475-2.976.932-4.473 1.406-.238.073-.165.092-.329-.073l-.274-.274c.037-.054.11-.054.165-.073 1.734-.547 3.468-1.095 5.185-1.643.127-.036.2-.018.292.073.054.073.146.146.219.22.073.054.073.127.054.2-.2.548-.383 1.096-.584 1.643-.401 1.15-.803 2.3-1.205 3.433a.318.318 0 0 1-.054.127m-.31 1.15a5.268 5.268 0 0 0-.074.53c0 .073-.055.073-.11.091-.401.128-.784.256-1.168.365-1.132.366-2.282.712-3.414 1.078-.036.018-.091.036-.146.054a.284.284 0 0 0 .146.11c1.278.876 2.556 1.77 3.834 2.647.11.073.183.146.128.292-.037.128-.037.256-.073.384-.055 0-.091-.037-.128-.055C8.496 19.284 7 18.244 5.502 17.22c-.091-.073-.128-.127-.11-.255.019-.11.055-.201.055-.31 0-.092.055-.128.128-.147 1.77-.566 3.56-1.113 5.33-1.68.02 0 .056 0 .092-.017M6.944 3.62c-.018.183-.055.365-.073.53 0 .073-.073.073-.128.073-.328.11-.675.2-1.004.31-1.205.365-2.391.73-3.596 1.095-.037.019-.092.019-.128.073.055.037.091.073.146.11 1.278.895 2.538 1.807 3.816 2.702.09.073.127.128.11.256a3.37 3.37 0 0 0-.074.42c-.055-.019-.091-.055-.146-.074L1.431 5.994c-.11-.074-.146-.147-.11-.256.018-.11.037-.2.055-.31 0-.073.036-.11.128-.147l1.26-.383c1.35-.402 2.683-.821 4.034-1.223.037-.037.091-.037.146-.055m5.477 3.725c-.146.054-.292.09-.438.146-.091.036-.164.018-.237-.055-.493-.511-1.004-1.004-1.516-1.516a183.922 183.922 0 0 0-1.825-1.807c-.037-.036-.055-.091-.128-.11a6.081 6.081 0 0 0-.091.566c-.146.859-.274 1.717-.42 2.556-.092.548-.183 1.078-.256 1.625-.018.092-.036.128-.128.146-.146.037-.31.092-.456.146-.018-.11.018-.2.036-.273l.548-3.396c.091-.603.201-1.205.292-1.808.019-.073.037-.11.11-.127.128-.037.237-.073.365-.11.091-.037.146-.018.219.055l1.46 1.46c.786.785 1.589 1.57 2.374 2.355.018.037.073.073.091.147m.672 7.755a3.728 3.728 0 0 1-.13-.76c-.115-.959-.014-1.885.36-2.774.572-1.388 1.56-2.417 2.904-3.073a8.12 8.12 0 0 1 2.116-.676c.05.059.027.13.023.185l.032.332c.013.074-.026.108-.1.12-.484.113-.97.262-1.423.469-1.228.536-2.164 1.367-2.76 2.57a4.954 4.954 0 0 0-.526 2.544c.02.24.04.478.078.719.013.074.009.129-.085.159a3.57 3.57 0 0 0-.489.185m2.53 1.77c.013-.183.006-.348.02-.53.004-.073.025-.108.117-.12.481-.076.947-.19 1.382-.397 1.606-.712 2.66-1.92 3.09-3.628.177-.683.207-1.376.146-2.076.002-.036-.012-.092-.01-.129.006-.072-.06-.169-.002-.22.04-.052.131-.045.205-.058.13-.028.242-.057.373-.102.057.242.075.5.077.737a7.32 7.32 0 0 1-.054 1.552 5.652 5.652 0 0 1-1.478 3.081c-.87.928-1.953 1.492-3.179 1.754a2.843 2.843 0 0 1-.687.135m5.343-10.442c.054.004.075-.032.113-.047a54.441 54.441 0 0 1 2.265-1.251c.039-.034.095-.048.147-.008.157.102.333.206.509.31a.555.555 0 0 1-.134.082c-.95.501-1.917.983-2.867 1.483a.865.865 0 0 0-.195.17c-.349.543-.718 1.103-1.067 1.646-.062.105-.062.105-.167.043-.106-.063-.193-.124-.299-.186-.105-.062-.105-.062-.044-.15l.677-1.05c.143-.21.268-.42.41-.63a.368.368 0 0 0 .07-.197 182.142 182.142 0 0 1 .211-3.297c.142.064.263.164.405.23.16.083.19.177.176.36a76.356 76.356 0 0 0-.16 2.038c-.01.145-.039.29-.05.454m-3.882 4.468c-.018.255-.316.6-.575.637a.458.458 0 0 1-.465-.16.43.43 0 0 1-.077-.463.87.87 0 0 1 .436-.482.445.445 0 0 1 .474.033c.156.12.238.255.207.435m1.856 1.21c-.018.255-.317.6-.577.655-.186.042-.328-.023-.464-.16a.4.4 0 0 1-.08-.445c.09-.232.23-.405.457-.5.322-.16.688.104.664.45M.883 6.432c.164.091.292.2.456.31.055.037.037.091.019.146l-.165 1.04c-.2 1.242-.401 2.465-.602 3.707 0 .036-.037.091 0 .146.055-.037.11-.055.164-.091l4.108-2.246c.11-.055.182-.055.274.018.11.092.219.165.347.256-.037.055-.092.073-.128.091-1.589.877-3.177 1.735-4.747 2.61-.11.056-.183.074-.274-.017-.073-.073-.164-.128-.255-.183-.073-.036-.092-.091-.073-.164.073-.438.146-.858.2-1.296.22-1.388.457-2.776.676-4.163a.253.253 0 0 1 0-.164" }) + ] + } + ); +}); + +export { SiPythonanywhere as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.cjs new file mode 100644 index 000000000..d30eb778f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE4C2C"; +const SiPytorch = React__namespace.forwardRef(function SiPytorch2({ title = "PyTorch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.005 0L4.952 7.053a9.865 9.865 0 000 14.022 9.866 9.866 0 0014.022 0c3.984-3.9 3.986-10.205.085-14.023l-1.744 1.743c2.904 2.905 2.904 7.634 0 10.538s-7.634 2.904-10.538 0-2.904-7.634 0-10.538l4.647-4.646.582-.665zm3.568 3.899a1.327 1.327 0 00-1.327 1.327 1.327 1.327 0 001.327 1.328A1.327 1.327 0 0016.9 5.226 1.327 1.327 0 0015.573 3.9z" }) + ] + } + ); +}); + +exports.default = SiPytorch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.d.ts new file mode 100644 index 000000000..8225d75c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE4C2C"; +declare const SiPytorch: IconType; +export { SiPytorch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.mjs new file mode 100644 index 000000000..24edaafb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPytorch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE4C2C"; +const SiPytorch = React.forwardRef(function SiPytorch2({ title = "PyTorch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.005 0L4.952 7.053a9.865 9.865 0 000 14.022 9.866 9.866 0 0014.022 0c3.984-3.9 3.986-10.205.085-14.023l-1.744 1.743c2.904 2.905 2.904 7.634 0 10.538s-7.634 2.904-10.538 0-2.904-7.634 0-10.538l4.647-4.646.582-.665zm3.568 3.899a1.327 1.327 0 00-1.327 1.327 1.327 1.327 0 001.327 1.328A1.327 1.327 0 0016.9 5.226 1.327 1.327 0 0015.573 3.9z" }) + ] + } + ); +}); + +export { SiPytorch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.cjs new file mode 100644 index 000000000..ddfdbf951 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9F55FF"; +const SiPyup = React__namespace.forwardRef(function SiPyup2({ title = "PyUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L1.608 6v12l3.984 2.3v-12L12 4.6l6.408 3.7v7.4L12 19.4l-2.95-1.705v4.602L12 24l10.392-6V6zm0 8.593l-2.95 1.703v3.408L12 15.407l2.95-1.703v-3.408z" }) + ] + } + ); +}); + +exports.default = SiPyup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.d.ts new file mode 100644 index 000000000..952f05c55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9F55FF"; +declare const SiPyup: IconType; +export { SiPyup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.mjs new file mode 100644 index 000000000..6642f8cf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiPyup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9F55FF"; +const SiPyup = React.forwardRef(function SiPyup2({ title = "PyUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L1.608 6v12l3.984 2.3v-12L12 4.6l6.408 3.7v7.4L12 19.4l-2.95-1.705v4.602L12 24l10.392-6V6zm0 8.593l-2.95 1.703v3.408L12 15.407l2.95-1.703v-3.408z" }) + ] + } + ); +}); + +export { SiPyup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.cjs new file mode 100644 index 000000000..185ad4f7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E40000"; +const SiQantas = React__namespace.forwardRef(function SiQantas2({ title = "Qantas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.47l.218.572c1.925 5.006 5.566 2.689 10.415 7.139l.056.05c.652.599 1.1.044.888-.306a.76.76 0 0 1-.165-.532 6.7 6.7 0 0 1 2.606 1.369l-.06.126c-.366.73-3.959.421-4 1.943a.969.969 0 0 0 .607.923l.71.287a17.34 17.34 0 0 1 6.086 4.146.086.086 0 0 1-.063.147.079.079 0 0 1-.054-.018 17.32 17.32 0 0 0-8.173-3.61.467.467 0 0 1-.39-.41c-.548-5.089-5.575-5.434-7.492-8.705l5.313 13.94H24L9.979 6.449a10.022 10.022 0 0 0-7.045-2.98Z" }) + ] + } + ); +}); + +exports.default = SiQantas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.d.ts new file mode 100644 index 000000000..36a07b132 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E40000"; +declare const SiQantas: IconType; +export { SiQantas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.mjs new file mode 100644 index 000000000..6f75ff1d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQantas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E40000"; +const SiQantas = React.forwardRef(function SiQantas2({ title = "Qantas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.47l.218.572c1.925 5.006 5.566 2.689 10.415 7.139l.056.05c.652.599 1.1.044.888-.306a.76.76 0 0 1-.165-.532 6.7 6.7 0 0 1 2.606 1.369l-.06.126c-.366.73-3.959.421-4 1.943a.969.969 0 0 0 .607.923l.71.287a17.34 17.34 0 0 1 6.086 4.146.086.086 0 0 1-.063.147.079.079 0 0 1-.054-.018 17.32 17.32 0 0 0-8.173-3.61.467.467 0 0 1-.39-.41c-.548-5.089-5.575-5.434-7.492-8.705l5.313 13.94H24L9.979 6.449a10.022 10.022 0 0 0-7.045-2.98Z" }) + ] + } + ); +}); + +export { SiQantas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQase.cjs new file mode 100644 index 000000000..69263379e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4F46DC"; +const SiQase = React__namespace.forwardRef(function SiQase2({ title = "Qase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.85 18.994s-.802.46-1.795.28c-.19-.03-.37-.1-.551-.19a11.768 11.768 0 0 0 2.367-7.088C23.87 5.428 18.525.1 11.935.1S0 5.428 0 11.996c0 6.568 5.346 11.897 11.935 11.897 2.087 0 4.042-.54 5.747-1.47.562.59 1.344 1.21 2.297 1.4 1.796.34 3.1-.48 3.631-1.58.451-.96.482-2.1.24-3.249m-11.925-.13c-3.79 0-6.88-3.079-6.88-6.858 0-3.779 3.09-6.858 6.88-6.858 3.792 0 6.89 3.07 6.89 6.848 0 1.16-.29 2.26-.812 3.22-.15-.19-.28-.37-.37-.49-.352-.48-.713-.97-1.064-1.47-.461-.65-1.524-1.95-2.989-2.23-1.795-.34-3.099.48-3.63 1.58-.452.96-.482 2.1-.251 3.239 0 0 .802-.46 1.795-.28.722.13 1.404.68 2.277 1.76.07.09.371.49.772 1.01-.802.34-1.685.53-2.618.53" }) + ] + } + ); +}); + +exports.default = SiQase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQase.d.ts new file mode 100644 index 000000000..bfcffd41e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4F46DC"; +declare const SiQase: IconType; +export { SiQase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQase.mjs new file mode 100644 index 000000000..b7cb85fb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4F46DC"; +const SiQase = React.forwardRef(function SiQase2({ title = "Qase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.85 18.994s-.802.46-1.795.28c-.19-.03-.37-.1-.551-.19a11.768 11.768 0 0 0 2.367-7.088C23.87 5.428 18.525.1 11.935.1S0 5.428 0 11.996c0 6.568 5.346 11.897 11.935 11.897 2.087 0 4.042-.54 5.747-1.47.562.59 1.344 1.21 2.297 1.4 1.796.34 3.1-.48 3.631-1.58.451-.96.482-2.1.24-3.249m-11.925-.13c-3.79 0-6.88-3.079-6.88-6.858 0-3.779 3.09-6.858 6.88-6.858 3.792 0 6.89 3.07 6.89 6.848 0 1.16-.29 2.26-.812 3.22-.15-.19-.28-.37-.37-.49-.352-.48-.713-.97-1.064-1.47-.461-.65-1.524-1.95-2.989-2.23-1.795-.34-3.099.48-3.63 1.58-.452.96-.482 2.1-.251 3.239 0 0 .802-.46 1.795-.28.722.13 1.404.68 2.277 1.76.07.09.371.49.772 1.01-.802.34-1.685.53-2.618.53" }) + ] + } + ); +}); + +export { SiQase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.cjs new file mode 100644 index 000000000..444041029 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C0D34"; +const SiQatarairways = React__namespace.forwardRef(function SiQatarairways2({ title = "Qatar Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.633 13.143c.011.283.008.564-.006.84-2.752.11-5.362.274-5.362.462 0 .183 2.552.347 5.27.454a7.221 7.221 0 0 1-.186.924c-2.68.11-5.17.273-5.17.456 0 .174 2.326.33 4.897.44-.116.33-.25.647-.396.954-2.21.105-4.04.247-4.04.402 0 .145 1.595.279 3.609.38a9.968 9.968 0 0 1-.354.536c-.134.184-.274.369-.422.55-1.26.094-2.123.203-2.123.32 0 .1.616.193 1.568.276a9.055 9.055 0 0 1-1.856 1.414s-.854-.733-1.557-1.592c-.63-.764-1.96-2.78-2.271-3.229-.314-.451-.52-.585-.887-.453-.491.173-1.063.26-1.238.26-.176 0-.271-.067.025-.184.291-.118 1.45-.665 2.023-1.799.64-1.274.077-3.033.077-3.033-.216.94-.705 1.29-.705 1.29.159-.872-.014-1.664-.446-2.22l-.24 1.107s-.15-.01-.525.304c-.37.314-.474.77-.474.77.296.12.644-.176.644-.176-.446 1.685-1.093 3.054-1.562 3.78-.472.724-.856.998-1.33 1.19-.396.159-.529-.028-.529-.028a7.17 7.17 0 0 1-.878-.902s-.021-.04.05-.036c.196.003.54-.327.616-.467.084-.158.078-.277.033-.286-.04-.007-.115.119-.492.353-.37.236-.537.074-.665-.06-.093-.1 0-.232.057-.312.06-.074 2.025-3.736 7.222-7.588 6.822-5.045 11.171-6.405 11.42-6.505.166-.065.434-.15.496-.088.065.071.1.128.088.211-.008.082-.05.123-.363.262-2.62 1.154-5.674 3.073-7.408 4.191-2.136 1.04-4.172 2.525-4.245 2.561-.164.101-.046.25.058.188 3.6-2.397 7.826-4.03 12.498-5.368.22-.062.342-.062.382-.014a.377.377 0 0 1 .064.187c.006.084-.064.13-.258.206-5.011 1.864-8.71 3.592-11.091 5.194 0 0-.245.146-.248.318 0 .065.132.073.132.073 1.19.021 2.784.092 3.538.136 0 0-.104.384-.83.692-.56.24-1.077.202-1.592.204-.117 0-.21.112-.122.238.047.06 1.14 1.816 5.104 2.217m-9.09 3.693c-.539.193-1.177.296-1.437.296-.451 0-1.189.25-1.45.476a337.1 337.1 0 0 0 3.413-.069 58.21 58.21 0 0 1-.322-.472 1.552 1.552 0 0 0-.187-.236c-.01.003-.008 0-.016.005M2.92 8.682c1.43 0 4.068-.035 6.675-.095.297-.239.606-.477.928-.718-2.89-.073-6.003-.119-7.603-.119-.676 0-1.226.21-1.226.466 0 .257.55.465 1.226.465m.407-2.247c0 .202.433.366.965.366 1.631 0 5.267-.059 7.918-.15.198-.138.395-.279.591-.411a283.4 283.4 0 0 0-8.509-.171c-.532 0-.965.164-.965.366m11.784 5.069c.29.173.647.348 1.085.508 1.387-.07 2.28-.147 2.28-.23 0-.1-1.374-.195-3.365-.278m-13.018-.982c1.214 0 3.196-.023 5.36-.064.309-.298.642-.6.991-.906a352.416 352.416 0 0 0-6.351-.082c-.762 0-1.378.236-1.378.526 0 .29.616.526 1.378.526m13.8-2.448a30.5 30.5 0 0 0-.606.322c1.023-.055 1.67-.115 1.67-.179 0-.05-.402-.097-1.063-.143m-9.433-2.8c1.556 0 6.286-.116 6.286-.258 0-.145-4.732-.261-6.286-.261-.301 0-.547.116-.547.26 0 .143.246.26.547.26M16.645 9.95a.89.89 0 0 1-.095.218c.862-.054 1.391-.113 1.391-.173 0-.058-.479-.113-1.264-.165zm-5.878 8.619c-2.952-.077-6.2-.124-7.846-.124-.676 0-1.226.209-1.226.466 0 .256.55.465 1.226.465 1.735 0 5.237-.053 8.314-.137-.156-.22-.313-.445-.468-.67m1.402 1.905c-2.654-.09-6.254-.148-7.876-.148-.532 0-.965.164-.965.367 0 .2.433.364.965.364 1.702 0 5.575-.062 8.245-.161a13.13 13.13 0 0 1-.37-.422m-6.253 1.638c0 .142.246.262.547.262 1.554 0 6.286-.12 6.286-.262 0-.143-4.73-.258-6.286-.258-.301 0-.547.115-.547.258m-2.798-6.218c.028-.13.087-.274.205-.43-.017.02-.024.039-.006.007.106-.183.244-.41.419-.671-.814-.009-1.53-.014-2.093-.014-.808 0-1.465.25-1.465.558 0 .309.657.558 1.465.558.415 0 .915-.003 1.475-.008m1.2 1.748c-.198-.193-.862-.957-.943-1.03-.483-.003-.918-.006-1.28-.006-.762 0-1.378.234-1.378.527 0 .288.616.525 1.378.525.587 0 1.348-.007 2.223-.016m-.105-3.532c.243-.327.517-.692.839-1.084-1.427-.019-2.678-.03-3.556-.03-.827 0-1.495.254-1.495.567 0 .313.668.568 1.495.568.698 0 1.644-.007 2.717-.02m-2.57-1.771c.97 0 2.404-.015 4.025-.039.298-.327.607-.67.949-1.023a298.993 298.993 0 0 0-4.974-.052c-.808 0-1.465.246-1.465.556 0 .31.657.558 1.465.558Z" }) + ] + } + ); +}); + +exports.default = SiQatarairways; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.d.ts new file mode 100644 index 000000000..f304de27b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C0D34"; +declare const SiQatarairways: IconType; +export { SiQatarairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.mjs new file mode 100644 index 000000000..6eb74c13e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQatarairways.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C0D34"; +const SiQatarairways = React.forwardRef(function SiQatarairways2({ title = "Qatar Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.633 13.143c.011.283.008.564-.006.84-2.752.11-5.362.274-5.362.462 0 .183 2.552.347 5.27.454a7.221 7.221 0 0 1-.186.924c-2.68.11-5.17.273-5.17.456 0 .174 2.326.33 4.897.44-.116.33-.25.647-.396.954-2.21.105-4.04.247-4.04.402 0 .145 1.595.279 3.609.38a9.968 9.968 0 0 1-.354.536c-.134.184-.274.369-.422.55-1.26.094-2.123.203-2.123.32 0 .1.616.193 1.568.276a9.055 9.055 0 0 1-1.856 1.414s-.854-.733-1.557-1.592c-.63-.764-1.96-2.78-2.271-3.229-.314-.451-.52-.585-.887-.453-.491.173-1.063.26-1.238.26-.176 0-.271-.067.025-.184.291-.118 1.45-.665 2.023-1.799.64-1.274.077-3.033.077-3.033-.216.94-.705 1.29-.705 1.29.159-.872-.014-1.664-.446-2.22l-.24 1.107s-.15-.01-.525.304c-.37.314-.474.77-.474.77.296.12.644-.176.644-.176-.446 1.685-1.093 3.054-1.562 3.78-.472.724-.856.998-1.33 1.19-.396.159-.529-.028-.529-.028a7.17 7.17 0 0 1-.878-.902s-.021-.04.05-.036c.196.003.54-.327.616-.467.084-.158.078-.277.033-.286-.04-.007-.115.119-.492.353-.37.236-.537.074-.665-.06-.093-.1 0-.232.057-.312.06-.074 2.025-3.736 7.222-7.588 6.822-5.045 11.171-6.405 11.42-6.505.166-.065.434-.15.496-.088.065.071.1.128.088.211-.008.082-.05.123-.363.262-2.62 1.154-5.674 3.073-7.408 4.191-2.136 1.04-4.172 2.525-4.245 2.561-.164.101-.046.25.058.188 3.6-2.397 7.826-4.03 12.498-5.368.22-.062.342-.062.382-.014a.377.377 0 0 1 .064.187c.006.084-.064.13-.258.206-5.011 1.864-8.71 3.592-11.091 5.194 0 0-.245.146-.248.318 0 .065.132.073.132.073 1.19.021 2.784.092 3.538.136 0 0-.104.384-.83.692-.56.24-1.077.202-1.592.204-.117 0-.21.112-.122.238.047.06 1.14 1.816 5.104 2.217m-9.09 3.693c-.539.193-1.177.296-1.437.296-.451 0-1.189.25-1.45.476a337.1 337.1 0 0 0 3.413-.069 58.21 58.21 0 0 1-.322-.472 1.552 1.552 0 0 0-.187-.236c-.01.003-.008 0-.016.005M2.92 8.682c1.43 0 4.068-.035 6.675-.095.297-.239.606-.477.928-.718-2.89-.073-6.003-.119-7.603-.119-.676 0-1.226.21-1.226.466 0 .257.55.465 1.226.465m.407-2.247c0 .202.433.366.965.366 1.631 0 5.267-.059 7.918-.15.198-.138.395-.279.591-.411a283.4 283.4 0 0 0-8.509-.171c-.532 0-.965.164-.965.366m11.784 5.069c.29.173.647.348 1.085.508 1.387-.07 2.28-.147 2.28-.23 0-.1-1.374-.195-3.365-.278m-13.018-.982c1.214 0 3.196-.023 5.36-.064.309-.298.642-.6.991-.906a352.416 352.416 0 0 0-6.351-.082c-.762 0-1.378.236-1.378.526 0 .29.616.526 1.378.526m13.8-2.448a30.5 30.5 0 0 0-.606.322c1.023-.055 1.67-.115 1.67-.179 0-.05-.402-.097-1.063-.143m-9.433-2.8c1.556 0 6.286-.116 6.286-.258 0-.145-4.732-.261-6.286-.261-.301 0-.547.116-.547.26 0 .143.246.26.547.26M16.645 9.95a.89.89 0 0 1-.095.218c.862-.054 1.391-.113 1.391-.173 0-.058-.479-.113-1.264-.165zm-5.878 8.619c-2.952-.077-6.2-.124-7.846-.124-.676 0-1.226.209-1.226.466 0 .256.55.465 1.226.465 1.735 0 5.237-.053 8.314-.137-.156-.22-.313-.445-.468-.67m1.402 1.905c-2.654-.09-6.254-.148-7.876-.148-.532 0-.965.164-.965.367 0 .2.433.364.965.364 1.702 0 5.575-.062 8.245-.161a13.13 13.13 0 0 1-.37-.422m-6.253 1.638c0 .142.246.262.547.262 1.554 0 6.286-.12 6.286-.262 0-.143-4.73-.258-6.286-.258-.301 0-.547.115-.547.258m-2.798-6.218c.028-.13.087-.274.205-.43-.017.02-.024.039-.006.007.106-.183.244-.41.419-.671-.814-.009-1.53-.014-2.093-.014-.808 0-1.465.25-1.465.558 0 .309.657.558 1.465.558.415 0 .915-.003 1.475-.008m1.2 1.748c-.198-.193-.862-.957-.943-1.03-.483-.003-.918-.006-1.28-.006-.762 0-1.378.234-1.378.527 0 .288.616.525 1.378.525.587 0 1.348-.007 2.223-.016m-.105-3.532c.243-.327.517-.692.839-1.084-1.427-.019-2.678-.03-3.556-.03-.827 0-1.495.254-1.495.567 0 .313.668.568 1.495.568.698 0 1.644-.007 2.717-.02m-2.57-1.771c.97 0 2.404-.015 4.025-.039.298-.327.607-.67.949-1.023a298.993 298.993 0 0 0-4.974-.052c-.808 0-1.465.246-1.465.556 0 .31.657.558 1.465.558Z" }) + ] + } + ); +}); + +export { SiQatarairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.cjs new file mode 100644 index 000000000..1eb1bf505 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F67BA"; +const SiQbittorrent = React__namespace.forwardRef(function SiQbittorrent2({ title = "qbittorrent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.911 23.994c-1.31 0-2.605-.232-3.831-.705-3.4-1.024-6.2-3.865-7.433-7.58-1.23-3.708-.685-7.654 1.459-10.554C4.062 2.038 7.677.094 11.742.008c4.064-.079 7.758 1.703 9.882 4.785a12.066 12.066 0 0 1 2.369 7.145c.138 3.733-1.75 7.368-5.052 9.728-2.147 1.535-4.61 2.328-7.03 2.328zm.11-22.314c-.081 0-.162 0-.244.002-3.5.074-6.599 1.725-8.29 4.415-1.856 2.516-2.31 5.893-1.25 9.086 1.06 3.197 3.448 5.636 6.386 6.523 3.025 1.165 6.496.633 9.345-1.402 2.847-2.035 4.473-5.144 4.351-8.318v-.032c0-2.214-.73-4.41-2.055-6.185-1.78-2.58-4.84-4.09-8.243-4.09zM9.406 20.246v-4.578a2.663 2.663 0 0 1-.952.863 2.573 2.573 0 0 1-1.29.344c-1.016 0-1.893-.444-2.63-1.33-.731-.887-1.097-2.102-1.097-3.646 0-.939.148-1.781.444-2.527.301-.746.734-1.309 1.299-1.69A3.26 3.26 0 0 1 7.052 7.1c1.058 0 1.891.487 2.5 1.46v-1.25h1.306v12.935H9.406zm-4.477-8.285c0 1.203.232 2.108.694 2.711.463.6 1.016.9 1.662.9.619 0 1.15-.286 1.597-.855.446-.576.67-1.447.67-2.615 0-1.245-.237-2.18-.71-2.81-.468-.627-1.02-.941-1.654-.941-.63 0-1.164.293-1.605.88-.435.581-.654 1.491-.654 2.73m9.55 4.702h-1.346V3.755h1.452v4.604c.613-.84 1.395-1.258 2.347-1.258.526 0 1.024.117 1.492.351.464.222.864.558 1.161.978.307.416.546.922.718 1.514.172.593.258 1.227.258 1.902 0 1.603-.363 2.841-1.088 3.716-.727.874-1.598 1.312-2.614 1.312-1.011 0-1.804-.46-2.379-1.382v1.17m-.016-4.746c0 1.122.14 1.932.42 2.432.456.815 1.074 1.223 1.854 1.223.635 0 1.183-.3 1.646-.898.462-.604.693-1.503.693-2.695 0-1.22-.224-2.122-.67-2.703-.44-.58-.975-.872-1.605-.872-.634 0-1.182.303-1.645.907-.463.6-.694 1.468-.694 2.607" }) + ] + } + ); +}); + +exports.default = SiQbittorrent; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.d.ts new file mode 100644 index 000000000..0ecbf87d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F67BA"; +declare const SiQbittorrent: IconType; +export { SiQbittorrent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.mjs new file mode 100644 index 000000000..1cc22fcda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQbittorrent.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F67BA"; +const SiQbittorrent = React.forwardRef(function SiQbittorrent2({ title = "qbittorrent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.911 23.994c-1.31 0-2.605-.232-3.831-.705-3.4-1.024-6.2-3.865-7.433-7.58-1.23-3.708-.685-7.654 1.459-10.554C4.062 2.038 7.677.094 11.742.008c4.064-.079 7.758 1.703 9.882 4.785a12.066 12.066 0 0 1 2.369 7.145c.138 3.733-1.75 7.368-5.052 9.728-2.147 1.535-4.61 2.328-7.03 2.328zm.11-22.314c-.081 0-.162 0-.244.002-3.5.074-6.599 1.725-8.29 4.415-1.856 2.516-2.31 5.893-1.25 9.086 1.06 3.197 3.448 5.636 6.386 6.523 3.025 1.165 6.496.633 9.345-1.402 2.847-2.035 4.473-5.144 4.351-8.318v-.032c0-2.214-.73-4.41-2.055-6.185-1.78-2.58-4.84-4.09-8.243-4.09zM9.406 20.246v-4.578a2.663 2.663 0 0 1-.952.863 2.573 2.573 0 0 1-1.29.344c-1.016 0-1.893-.444-2.63-1.33-.731-.887-1.097-2.102-1.097-3.646 0-.939.148-1.781.444-2.527.301-.746.734-1.309 1.299-1.69A3.26 3.26 0 0 1 7.052 7.1c1.058 0 1.891.487 2.5 1.46v-1.25h1.306v12.935H9.406zm-4.477-8.285c0 1.203.232 2.108.694 2.711.463.6 1.016.9 1.662.9.619 0 1.15-.286 1.597-.855.446-.576.67-1.447.67-2.615 0-1.245-.237-2.18-.71-2.81-.468-.627-1.02-.941-1.654-.941-.63 0-1.164.293-1.605.88-.435.581-.654 1.491-.654 2.73m9.55 4.702h-1.346V3.755h1.452v4.604c.613-.84 1.395-1.258 2.347-1.258.526 0 1.024.117 1.492.351.464.222.864.558 1.161.978.307.416.546.922.718 1.514.172.593.258 1.227.258 1.902 0 1.603-.363 2.841-1.088 3.716-.727.874-1.598 1.312-2.614 1.312-1.011 0-1.804-.46-2.379-1.382v1.17m-.016-4.746c0 1.122.14 1.932.42 2.432.456.815 1.074 1.223 1.854 1.223.635 0 1.183-.3 1.646-.898.462-.604.693-1.503.693-2.695 0-1.22-.224-2.122-.67-2.703-.44-.58-.975-.872-1.605-.872-.634 0-1.182.303-1.645.907-.463.6-.694 1.468-.694 2.607" }) + ] + } + ); +}); + +export { SiQbittorrent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.cjs new file mode 100644 index 000000000..6f6663f4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiQemu = React__namespace.forwardRef(function SiQemu2({ title = "QEMU", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.003.064C5.376.064 0 5.407 0 12s5.376 11.936 12.003 11.936c2.169 0 4.2-.57 5.955-1.57l.624 1.57h4.841l-1.893-4.679A11.845 11.845 0 0024 12C24 5.407 18.63.064 12.003.064zM8.818 2.03c.398.339.324.198.86.134.61-.397.893.942 1.147.195.748.097 1.542.34 2.25.584a3.447 3.447 0 011.859 1.128l-.014.007.35.463c.045.08.082.164.12.248.142 1.205 1.48 1.19 2.377 1.625.767.272 1.69.686 1.785 1.611-.193-.042-.941-.921-1.53-1.007a3.919 3.919 0 01-1.094-.255L14.86 6.38v-.007a3.035 3.035 0 01-.309-.053v.013l-2.927-.362c.048.033.1.077.148.12l3 .585v-.007l.209.053.839.188c.166.016.334.043.47.067.856.236 1.868.194 2.571.792-.184.352-1.21.153-1.719.108-.062-.012-.131-.023-.194-.034l-.034-.007c-.696-.113-1.411-.12-2.081.088h-.007a3.193 3.193 0 00-.671.302c-.968.563-2.164.767-2.967 1.577-.787.847-.739 2.012-.604 3.095h.033v.275c.013.095.028.19.04.282.41 2.19 1.5 4.2 1.84 6.412.065.843.203 1.932.309 2.618-.306-.091-.475-1.462-.544-1.007a38.196 38.196 0 00-3.565-5.25c-.853-1.004-1.697-2.06-2.712-2.894-.685-.528-.468-1.55-.537-2.302-.23-.926-.094-1.848.06-2.773.313-.963.418-1.968.846-2.893.653-.581.669-1.63 1.303-2.135.094.058.157.085.2.1l.068.008h.007c.09-.095-.888-1.116.02-.712.035-.537.854-.128.866-.597zm3.847 2.182c-.323.009-.574.13-.645.335-.114.33.273.755.866.96.594.205 1.168.109 1.282-.221.114-.33-.272-.762-.866-.967a1.842 1.842 0 00-.637-.107z" }) + ] + } + ); +}); + +exports.default = SiQemu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.d.ts new file mode 100644 index 000000000..b7dfb3f1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiQemu: IconType; +export { SiQemu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.mjs new file mode 100644 index 000000000..e36a0c52d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQemu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiQemu = React.forwardRef(function SiQemu2({ title = "QEMU", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.003.064C5.376.064 0 5.407 0 12s5.376 11.936 12.003 11.936c2.169 0 4.2-.57 5.955-1.57l.624 1.57h4.841l-1.893-4.679A11.845 11.845 0 0024 12C24 5.407 18.63.064 12.003.064zM8.818 2.03c.398.339.324.198.86.134.61-.397.893.942 1.147.195.748.097 1.542.34 2.25.584a3.447 3.447 0 011.859 1.128l-.014.007.35.463c.045.08.082.164.12.248.142 1.205 1.48 1.19 2.377 1.625.767.272 1.69.686 1.785 1.611-.193-.042-.941-.921-1.53-1.007a3.919 3.919 0 01-1.094-.255L14.86 6.38v-.007a3.035 3.035 0 01-.309-.053v.013l-2.927-.362c.048.033.1.077.148.12l3 .585v-.007l.209.053.839.188c.166.016.334.043.47.067.856.236 1.868.194 2.571.792-.184.352-1.21.153-1.719.108-.062-.012-.131-.023-.194-.034l-.034-.007c-.696-.113-1.411-.12-2.081.088h-.007a3.193 3.193 0 00-.671.302c-.968.563-2.164.767-2.967 1.577-.787.847-.739 2.012-.604 3.095h.033v.275c.013.095.028.19.04.282.41 2.19 1.5 4.2 1.84 6.412.065.843.203 1.932.309 2.618-.306-.091-.475-1.462-.544-1.007a38.196 38.196 0 00-3.565-5.25c-.853-1.004-1.697-2.06-2.712-2.894-.685-.528-.468-1.55-.537-2.302-.23-.926-.094-1.848.06-2.773.313-.963.418-1.968.846-2.893.653-.581.669-1.63 1.303-2.135.094.058.157.085.2.1l.068.008h.007c.09-.095-.888-1.116.02-.712.035-.537.854-.128.866-.597zm3.847 2.182c-.323.009-.574.13-.645.335-.114.33.273.755.866.96.594.205 1.168.109 1.282-.221.114-.33-.272-.762-.866-.967a1.842 1.842 0 00-.637-.107z" }) + ] + } + ); +}); + +export { SiQemu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.cjs new file mode 100644 index 000000000..c0eb5d512 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#589632"; +const SiQgis = React__namespace.forwardRef(function SiQgis2({ title = "Qgis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.879 13.006v3.65l-3.004-3.048v-3.495h3.582l2.852 2.893h-3.43zm10.886 7.606V24h-3.654l-5.73-5.9v-3.55h3.354l6.03 6.062zm-10.828-1.448l3.372 3.371c-1.309.442-2.557.726-4.325.726C5.136 23.26 0 18.243 0 11.565 0 4.92 5.136 0 11.984 0 18.864 0 24 4.952 24 11.565c0 2.12-.523 4.076-1.457 5.759l-3.625-3.725a8.393 8.393 0 0 0 .24-2.005c0-4.291-3.148-7.527-7.1-7.527-3.954 0-7.248 3.236-7.248 7.527s3.33 7.6 7.247 7.6c.548 0 .661.017.88-.03z" }) + ] + } + ); +}); + +exports.default = SiQgis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.d.ts new file mode 100644 index 000000000..9bc76f77b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#589632"; +declare const SiQgis: IconType; +export { SiQgis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.mjs new file mode 100644 index 000000000..126bc74f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQgis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#589632"; +const SiQgis = React.forwardRef(function SiQgis2({ title = "Qgis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.879 13.006v3.65l-3.004-3.048v-3.495h3.582l2.852 2.893h-3.43zm10.886 7.606V24h-3.654l-5.73-5.9v-3.55h3.354l6.03 6.062zm-10.828-1.448l3.372 3.371c-1.309.442-2.557.726-4.325.726C5.136 23.26 0 18.243 0 11.565 0 4.92 5.136 0 11.984 0 18.864 0 24 4.952 24 11.565c0 2.12-.523 4.076-1.457 5.759l-3.625-3.725a8.393 8.393 0 0 0 .24-2.005c0-4.291-3.148-7.527-7.1-7.527-3.954 0-7.248 3.236-7.248 7.527s3.33 7.6 7.247 7.6c.548 0 .661.017.88-.03z" }) + ] + } + ); +}); + +export { SiQgis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQi.cjs new file mode 100644 index 000000000..55aa7a4b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiQi = React__namespace.forwardRef(function SiQi2({ title = "Qi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5742 0c-.8422 0-1.525.6826-1.525 1.5247 0 .8424.6828 1.525 1.525 1.525s1.5247-.6826 1.5247-1.525C18.0989.6826 17.4164 0 16.5742 0zm-4.6371 2.856c-1.7103.0124-3.4264.5973-4.8392 1.7828-3.2263 2.7071-3.6471 7.5175-.94 10.7439 1.4616 1.7419 3.5365 2.6653 5.6439 2.7208.2966 0 .2966.293.2966.293v2.65s.0002 2.7624 2.6567 2.9532c.2952.0103.2953-.295.2953-.295V3.7857s0-.2943-.295-.415a7.665 7.665 0 0 0-2.8183-.5147zm4.7479 1.662c-.1097-.0016-.1097.1789-.1097.3891v11.1466c0 .2941 0 .5266.2948.2954.0104-.009.0211-.0175.0318-.0266 3.2265-2.707 3.6474-7.5175.94-10.7437a7.5925 7.5925 0 0 0-.9713-.9659c-.083-.0656-.1427-.0941-.1856-.0948zm-4.7515 1.3885c.165 0 .165.1642.165.1642v8.8198s0 .1644-.165.1644c-1.2823-.0192-2.5496-.5735-3.4386-1.633-1.6245-1.936-1.3719-4.8217.5639-6.4464.8395-.7046 1.8582-1.0549 2.8747-1.069z" }) + ] + } + ); +}); + +exports.default = SiQi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQi.d.ts new file mode 100644 index 000000000..0f12523c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiQi: IconType; +export { SiQi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQi.mjs new file mode 100644 index 000000000..8b584317b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiQi = React.forwardRef(function SiQi2({ title = "Qi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.5742 0c-.8422 0-1.525.6826-1.525 1.5247 0 .8424.6828 1.525 1.525 1.525s1.5247-.6826 1.5247-1.525C18.0989.6826 17.4164 0 16.5742 0zm-4.6371 2.856c-1.7103.0124-3.4264.5973-4.8392 1.7828-3.2263 2.7071-3.6471 7.5175-.94 10.7439 1.4616 1.7419 3.5365 2.6653 5.6439 2.7208.2966 0 .2966.293.2966.293v2.65s.0002 2.7624 2.6567 2.9532c.2952.0103.2953-.295.2953-.295V3.7857s0-.2943-.295-.415a7.665 7.665 0 0 0-2.8183-.5147zm4.7479 1.662c-.1097-.0016-.1097.1789-.1097.3891v11.1466c0 .2941 0 .5266.2948.2954.0104-.009.0211-.0175.0318-.0266 3.2265-2.707 3.6474-7.5175.94-10.7437a7.5925 7.5925 0 0 0-.9713-.9659c-.083-.0656-.1427-.0941-.1856-.0948zm-4.7515 1.3885c.165 0 .165.1642.165.1642v8.8198s0 .1644-.165.1644c-1.2823-.0192-2.5496-.5735-3.4386-1.633-1.6245-1.936-1.3719-4.8217.5639-6.4464.8395-.7046 1.8582-1.0549 2.8747-1.069z" }) + ] + } + ); +}); + +export { SiQi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.cjs new file mode 100644 index 000000000..fb862d178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#55C500"; +const SiQiita = React__namespace.forwardRef(function SiQiita2({ title = "Qiita", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12c3.3984 0 6.4665-1.413 8.6498-3.6832-.383-.0574-.7746-.2062-1.1466-.4542-.7145-.4763-1.3486-.9263-1.6817-1.674-1.2945 1.3807-3.0532 1.835-5.1822 2.0503-4.311.4359-8.0456-1.4893-8.4979-6.2996-.1922-2.045.2628-3.989 1.1804-5.582l-.5342-2.1009c-.0862-.3652.2498-.7126.6057-.6262l1.8456.448c1.0974-.9012 2.4249-1.49 3.8892-1.638 1.2526-.1267 2.467.0834 3.571.5624l1.7348-1.0494c.3265-.1974.7399.0257.7711.4164l.1 2.4747v.0002c1.334 1.4084 2.2424 3.3319 2.4478 5.516.116 1.2339-.012 2.1776-.339 3.078-.1531.4215-.1992.7778.0776 1.1305.2674.3408.6915 1.0026 1.1644.8917.7107-.1666 1.4718-.1223 1.9422.1715C23.4925 15.9525 24 14.0358 24 12c0-6.6274-5.3726-12-12-12Zm-.0727 5.727a5.2731 5.2731 0 0 0-.6146.0273c-2.2084.2233-3.9572 1.8135-4.4937 3.8484l-1.3176-.1996-.014.2589 1.2972.1407c-.0352.1497-.0643.2384-.086.3923l-1.1319.0902.0103.2025 1.1032-.088c-.0194.1713-.031.2814-.0332.4565l-1.0078.412.0495.2499.9598-.4492c.002.1339.008.2053.0207.3407.2667 2.8371 2.6364 3.3981 5.4677 3.1118 2.8312-.2863 5.0517-1.3114 4.785-4.1486-.013-.1361-.0324-.2068-.0553-.3392l1.0397.2257.0242-.229-1.0906-.207c-.0342-.1687-.0765-.271-.1264-.4327l1.1208-.1374-.0158-.2019-1.1499.1409a5.1093 5.1093 0 0 0-.1665-.4259l1.2665-.4042-.0397-.2536-1.3471.4667c-.819-1.7168-2.5002-2.8224-4.4546-2.8482Z" }) + ] + } + ); +}); + +exports.default = SiQiita; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.d.ts new file mode 100644 index 000000000..4e27bf37f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#55C500"; +declare const SiQiita: IconType; +export { SiQiita as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.mjs new file mode 100644 index 000000000..9a6e2065c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiita.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#55C500"; +const SiQiita = React.forwardRef(function SiQiita2({ title = "Qiita", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12c3.3984 0 6.4665-1.413 8.6498-3.6832-.383-.0574-.7746-.2062-1.1466-.4542-.7145-.4763-1.3486-.9263-1.6817-1.674-1.2945 1.3807-3.0532 1.835-5.1822 2.0503-4.311.4359-8.0456-1.4893-8.4979-6.2996-.1922-2.045.2628-3.989 1.1804-5.582l-.5342-2.1009c-.0862-.3652.2498-.7126.6057-.6262l1.8456.448c1.0974-.9012 2.4249-1.49 3.8892-1.638 1.2526-.1267 2.467.0834 3.571.5624l1.7348-1.0494c.3265-.1974.7399.0257.7711.4164l.1 2.4747v.0002c1.334 1.4084 2.2424 3.3319 2.4478 5.516.116 1.2339-.012 2.1776-.339 3.078-.1531.4215-.1992.7778.0776 1.1305.2674.3408.6915 1.0026 1.1644.8917.7107-.1666 1.4718-.1223 1.9422.1715C23.4925 15.9525 24 14.0358 24 12c0-6.6274-5.3726-12-12-12Zm-.0727 5.727a5.2731 5.2731 0 0 0-.6146.0273c-2.2084.2233-3.9572 1.8135-4.4937 3.8484l-1.3176-.1996-.014.2589 1.2972.1407c-.0352.1497-.0643.2384-.086.3923l-1.1319.0902.0103.2025 1.1032-.088c-.0194.1713-.031.2814-.0332.4565l-1.0078.412.0495.2499.9598-.4492c.002.1339.008.2053.0207.3407.2667 2.8371 2.6364 3.3981 5.4677 3.1118 2.8312-.2863 5.0517-1.3114 4.785-4.1486-.013-.1361-.0324-.2068-.0553-.3392l1.0397.2257.0242-.229-1.0906-.207c-.0342-.1687-.0765-.271-.1264-.4327l1.1208-.1374-.0158-.2019-1.1499.1409a5.1093 5.1093 0 0 0-.1665-.4259l1.2665-.4042-.0397-.2536-1.3471.4667c-.819-1.7168-2.5002-2.8224-4.4546-2.8482Z" }) + ] + } + ); +}); + +export { SiQiita as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.cjs new file mode 100644 index 000000000..d8fbe3b0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6929C4"; +const SiQiskit = React__namespace.forwardRef(function SiQiskit2({ title = "Qiskit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9686 0v.0013C7.7636.0111 3.8602 2.222 1.6966 5.8438-.5206 9.5553-.5677 14.1722 1.5734 17.928c2.0288 3.5587 5.7249 5.821 9.7863 6.0365a6.1732 6.1732 0 001.3664-.005c3.9417-.2393 7.5325-2.4066 9.572-5.8207a11.9785 11.9785 0 001.6939-5.9703 1.3484 1.3484 0 00.008-.1258v-.0342a1.4017 1.4017 0 00-.006-.1104 11.9779 11.9779 0 00-1.4163-5.5598C20.5388 2.5261 16.6048.1057 12.2812.0033c-.08-.0019-.1598-.0013-.2396-.0016C12.019.0015 11.9898 0 11.9686 0zm.008.8395c1.2294.0012 2.0657.2743 2.0657.5136 0 .2398-.857.5483-2.0567.5483-1.1997 0-2.0908-.2911-2.0908-.531 0-.2346.823-.5168 1.9984-.529.0279-.0002.0555-.0018.0834-.002zm2.8741.368a11.2001 11.2001 0 014.9964 2.8353c-1.9678-.7539-4.8296-1.1702-7.6044-1.1992-1.3468 0-2.703.0898-3.9768.2587-.277-.3393-.757-.513-1.2469-.2737-.27.132-.4365.3398-.5178.5704-.8623.1802-1.6528.4022-2.3352.6632a11.1854 11.1854 0 014.916-2.8296c-.0059.0445-.01.09-.01.1379 0 1.2334 2.0224 1.336 2.9137 1.336.8912 0 2.8794-.1198 2.8794-1.336 0-.0569-.0059-.1107-.0143-.163zm-2.608 2.4411c4.789.0599 8.3098 1.1517 9.1259 2.2488.0245.0374.0496.0743.0736.112.07.1219.1071.2434.1071.363 0 .8254-1.7313 1.7052-4.4467 2.2304-1.5337-.2227-3.1837-.3483-4.8083-.363-.5957 0-1.1928.0175-1.7869.0448L8.2666 4.4024c.1364-.1666.2082-.3464.2307-.5246 1.1424-.1443 2.4018-.2292 3.7454-.2292zm-5.6933.5568c.159.3323.4872.5848.946.5738.0456.0028.0912.0028.1369 0l2.0644 3.551c-.9554.0639-1.894.1597-2.7865.2913-2.7422-.5285-4.4367-1.4293-4.4367-2.249 0-.0962.0263-.1932.072-.2904.0497-.0794.1014-.1573.153-.2353.5158-.6194 1.9017-1.2233 3.8509-1.6414zM22.095 7.1838a11.1321 11.1321 0 01.9992 3.3529c-.873-.6681-2.3136-1.2006-4.0417-1.584 1.46-.4478 2.5653-1.0446 3.0425-1.7689zm-20.1695.0315c.4884.7285 1.5982 1.3203 3.0449 1.7612-1.7294.3856-3.1592.9152-4.0297 1.5702.0658-.4965.1638-.993.299-1.4865.176-.6428.4074-1.2586.6858-1.845zM12.277 9.0277c.2927.0031.58.0103.8643.0194-.4443.0189-.8956.0322-1.361.0322a31.6185 31.6185 0 01-.8262-.0208l-.0044-.008a39.8672 39.8672 0 011.3272-.0228zm4.918.3801c3.6492.5526 5.954 1.6152 5.9974 2.5807 0 .0152-.0007.0305-.0007.0458-.0524.9623-2.3803 1.9992-5.943 2.5525-1.0469-.2007-2.1789-.3418-3.3325-.4189L12.38 11.5287l-.9443-1.6357c.109.0023.2182.0072.327.0084 1.8753 0 3.7715-.1718 5.4323-.4935zm-10.374.016c1.1798.2266 2.4668.375 3.7672.4394l1.1575 1.991 1.3102 2.2676a31.8296 31.8296 0 00-.813-.0235c-1.895 0-3.8113.1731-5.4852.4986-3.4614-.535-5.6997-1.5307-5.9126-2.4592a11.1137 11.1137 0 01-.0003-.2637c.2145-.9349 2.522-1.9192 5.9762-2.4501zm16.2693 4.0773a11.1764 11.1764 0 01-.9765 3.2946c-.4665-.7202-1.5352-1.302-2.9364-1.7384 1.679-.3871 3.064-.912 3.9129-1.5562zM.947 13.5205c.852.6529 2.2333 1.1731 3.89 1.5535-1.3891.4357-2.4439 1.009-2.921 1.7023a11.1813 11.1813 0 01-.969-3.2558zm11.2956 1.3658c.4403.0069.8654.0254 1.2831.0485l.0084.0144a39.6667 39.6667 0 01-1.7885.0401 39.3883 39.3883 0 01-1.435-.0421 31.1187 31.1187 0 011.932-.061zm5.0929.5226c2.6122.5393 4.2197 1.4099 4.2308 2.2183 0 .1156-.0357.233-.1034.3503-.0116.0183-.0241.0362-.0358.0545-.4058.6113-1.6971 1.2205-3.5647 1.6596-.1728-.2433-.4515-.4161-.8208-.4196a1.0459 1.0459 0 00-.1544 0l-2.078-3.57c.8675-.07 1.717-.1666 2.5263-.2931zm-10.6667.012c1.6028.2481 3.3467.3868 5.0597.4076.758 0 1.5198-.0228 2.2726-.0673l2.235 3.8875a1.0464 1.0464 0 00-.2005.3858c-1.2744.1865-2.7086.2995-4.2556.2995-4.7015-.0588-8.1788-1.0996-9.0873-2.1725a11.162 11.162 0 01-.1855-.2934c-.0323-.0807-.0497-.1612-.0508-.241.0106-.8 1.6375-1.6662 4.2124-2.2061zm13.2643 4.468c-.062.0623-.123.1254-.1868.1864a11.1477 11.1477 0 01-4.7213 2.6894c.0506-.1196.0797-.2446.0797-.375 0-.5564-.4856-1.0308-1.2513-1.3217a28.8077 28.8077 0 002.295-.2455c.2498.4144.7751.6624 1.3193.4078.3507-.164.5338-.4565.5794-.7658.6904-.164 1.326-.3566 1.886-.5755zm-15.7843.0482c1.5918.6106 3.7654.9958 6.0014 1.139-.7448.2871-1.2155.749-1.2155 1.2965v.017c0 .1298.03.2548.082.3748a11.1695 11.1695 0 01-4.8679-2.8273zm7.8709 1.596c1.3883 0 2.2625.4968 2.2796.8565.0123.2569-.4576.5739-1.2255.7348a11.2018 11.2018 0 01-2.1983-.008c-.7142-.1748-1.135-.4912-1.135-.7267 0-.3426.891-.8566 2.2792-.8566z" }) + ] + } + ); +}); + +exports.default = SiQiskit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.d.ts new file mode 100644 index 000000000..fd5fe8541 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6929C4"; +declare const SiQiskit: IconType; +export { SiQiskit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.mjs new file mode 100644 index 000000000..c350e3cc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiskit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6929C4"; +const SiQiskit = React.forwardRef(function SiQiskit2({ title = "Qiskit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9686 0v.0013C7.7636.0111 3.8602 2.222 1.6966 5.8438-.5206 9.5553-.5677 14.1722 1.5734 17.928c2.0288 3.5587 5.7249 5.821 9.7863 6.0365a6.1732 6.1732 0 001.3664-.005c3.9417-.2393 7.5325-2.4066 9.572-5.8207a11.9785 11.9785 0 001.6939-5.9703 1.3484 1.3484 0 00.008-.1258v-.0342a1.4017 1.4017 0 00-.006-.1104 11.9779 11.9779 0 00-1.4163-5.5598C20.5388 2.5261 16.6048.1057 12.2812.0033c-.08-.0019-.1598-.0013-.2396-.0016C12.019.0015 11.9898 0 11.9686 0zm.008.8395c1.2294.0012 2.0657.2743 2.0657.5136 0 .2398-.857.5483-2.0567.5483-1.1997 0-2.0908-.2911-2.0908-.531 0-.2346.823-.5168 1.9984-.529.0279-.0002.0555-.0018.0834-.002zm2.8741.368a11.2001 11.2001 0 014.9964 2.8353c-1.9678-.7539-4.8296-1.1702-7.6044-1.1992-1.3468 0-2.703.0898-3.9768.2587-.277-.3393-.757-.513-1.2469-.2737-.27.132-.4365.3398-.5178.5704-.8623.1802-1.6528.4022-2.3352.6632a11.1854 11.1854 0 014.916-2.8296c-.0059.0445-.01.09-.01.1379 0 1.2334 2.0224 1.336 2.9137 1.336.8912 0 2.8794-.1198 2.8794-1.336 0-.0569-.0059-.1107-.0143-.163zm-2.608 2.4411c4.789.0599 8.3098 1.1517 9.1259 2.2488.0245.0374.0496.0743.0736.112.07.1219.1071.2434.1071.363 0 .8254-1.7313 1.7052-4.4467 2.2304-1.5337-.2227-3.1837-.3483-4.8083-.363-.5957 0-1.1928.0175-1.7869.0448L8.2666 4.4024c.1364-.1666.2082-.3464.2307-.5246 1.1424-.1443 2.4018-.2292 3.7454-.2292zm-5.6933.5568c.159.3323.4872.5848.946.5738.0456.0028.0912.0028.1369 0l2.0644 3.551c-.9554.0639-1.894.1597-2.7865.2913-2.7422-.5285-4.4367-1.4293-4.4367-2.249 0-.0962.0263-.1932.072-.2904.0497-.0794.1014-.1573.153-.2353.5158-.6194 1.9017-1.2233 3.8509-1.6414zM22.095 7.1838a11.1321 11.1321 0 01.9992 3.3529c-.873-.6681-2.3136-1.2006-4.0417-1.584 1.46-.4478 2.5653-1.0446 3.0425-1.7689zm-20.1695.0315c.4884.7285 1.5982 1.3203 3.0449 1.7612-1.7294.3856-3.1592.9152-4.0297 1.5702.0658-.4965.1638-.993.299-1.4865.176-.6428.4074-1.2586.6858-1.845zM12.277 9.0277c.2927.0031.58.0103.8643.0194-.4443.0189-.8956.0322-1.361.0322a31.6185 31.6185 0 01-.8262-.0208l-.0044-.008a39.8672 39.8672 0 011.3272-.0228zm4.918.3801c3.6492.5526 5.954 1.6152 5.9974 2.5807 0 .0152-.0007.0305-.0007.0458-.0524.9623-2.3803 1.9992-5.943 2.5525-1.0469-.2007-2.1789-.3418-3.3325-.4189L12.38 11.5287l-.9443-1.6357c.109.0023.2182.0072.327.0084 1.8753 0 3.7715-.1718 5.4323-.4935zm-10.374.016c1.1798.2266 2.4668.375 3.7672.4394l1.1575 1.991 1.3102 2.2676a31.8296 31.8296 0 00-.813-.0235c-1.895 0-3.8113.1731-5.4852.4986-3.4614-.535-5.6997-1.5307-5.9126-2.4592a11.1137 11.1137 0 01-.0003-.2637c.2145-.9349 2.522-1.9192 5.9762-2.4501zm16.2693 4.0773a11.1764 11.1764 0 01-.9765 3.2946c-.4665-.7202-1.5352-1.302-2.9364-1.7384 1.679-.3871 3.064-.912 3.9129-1.5562zM.947 13.5205c.852.6529 2.2333 1.1731 3.89 1.5535-1.3891.4357-2.4439 1.009-2.921 1.7023a11.1813 11.1813 0 01-.969-3.2558zm11.2956 1.3658c.4403.0069.8654.0254 1.2831.0485l.0084.0144a39.6667 39.6667 0 01-1.7885.0401 39.3883 39.3883 0 01-1.435-.0421 31.1187 31.1187 0 011.932-.061zm5.0929.5226c2.6122.5393 4.2197 1.4099 4.2308 2.2183 0 .1156-.0357.233-.1034.3503-.0116.0183-.0241.0362-.0358.0545-.4058.6113-1.6971 1.2205-3.5647 1.6596-.1728-.2433-.4515-.4161-.8208-.4196a1.0459 1.0459 0 00-.1544 0l-2.078-3.57c.8675-.07 1.717-.1666 2.5263-.2931zm-10.6667.012c1.6028.2481 3.3467.3868 5.0597.4076.758 0 1.5198-.0228 2.2726-.0673l2.235 3.8875a1.0464 1.0464 0 00-.2005.3858c-1.2744.1865-2.7086.2995-4.2556.2995-4.7015-.0588-8.1788-1.0996-9.0873-2.1725a11.162 11.162 0 01-.1855-.2934c-.0323-.0807-.0497-.1612-.0508-.241.0106-.8 1.6375-1.6662 4.2124-2.2061zm13.2643 4.468c-.062.0623-.123.1254-.1868.1864a11.1477 11.1477 0 01-4.7213 2.6894c.0506-.1196.0797-.2446.0797-.375 0-.5564-.4856-1.0308-1.2513-1.3217a28.8077 28.8077 0 002.295-.2455c.2498.4144.7751.6624 1.3193.4078.3507-.164.5338-.4565.5794-.7658.6904-.164 1.326-.3566 1.886-.5755zm-15.7843.0482c1.5918.6106 3.7654.9958 6.0014 1.139-.7448.2871-1.2155.749-1.2155 1.2965v.017c0 .1298.03.2548.082.3748a11.1695 11.1695 0 01-4.8679-2.8273zm7.8709 1.596c1.3883 0 2.2625.4968 2.2796.8565.0123.2569-.4576.5739-1.2255.7348a11.2018 11.2018 0 01-2.1983-.008c-.7142-.1748-1.135-.4912-1.135-.7267 0-.3426.891-.8566 2.2792-.8566z" }) + ] + } + ); +}); + +export { SiQiskit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.cjs new file mode 100644 index 000000000..ee42fe1c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8C00"; +const SiQiwi = React__namespace.forwardRef(function SiQiwi2({ title = "QIWI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.064 0C5.17 0 .391 4.778.391 10.673c0 5.895 4.779 10.673 10.674 10.673 1.567 0 3.118-.293 5.398-.31 2.033 0 4.267.714 6.718 2.886.248.217.574-.062.357-.326-2.405-3.056-4.64-3.63-6.873-4.126-2.73-.606-4.126-2.126-5.104-3.817-.186-.341-.28-.279-.295.156-.018.639.03 1.278.14 1.908h-.326a7.066 7.066 0 01-7.06-7.06A7.065 7.065 0 0111.08 3.6a7.064 7.064 0 017.013 7.88c-.528-.093-1.537-.108-2.25-.046-.264.031-.233.155-.031.187 2.327.434 3.925 1.877 4.297 4.499.015.062.093.077.124.03a10.739 10.739 0 001.505-5.476C21.738 4.778 16.96 0 11.064 0zm7.644 15.077a.312.312 0 00-.306.157c-.124.218-.03.636.202 1.009.232.372.45.558.606.558.155 0 .294-.186.232-.667-.03-.264-.186-.868-.59-1.024-.047-.021-.101-.023-.144-.033zm-2.214 1.787c-.217 0-.388.076-.497.216-.279.341-.155.962.28 1.335.186.17.466.263.73.263a.816.816 0 00.635-.278c.249-.342.11-.808-.372-1.211-.248-.217-.527-.325-.776-.325Z" }) + ] + } + ); +}); + +exports.default = SiQiwi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.d.ts new file mode 100644 index 000000000..5d81083e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8C00"; +declare const SiQiwi: IconType; +export { SiQiwi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.mjs new file mode 100644 index 000000000..45bf25db3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQiwi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8C00"; +const SiQiwi = React.forwardRef(function SiQiwi2({ title = "QIWI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.064 0C5.17 0 .391 4.778.391 10.673c0 5.895 4.779 10.673 10.674 10.673 1.567 0 3.118-.293 5.398-.31 2.033 0 4.267.714 6.718 2.886.248.217.574-.062.357-.326-2.405-3.056-4.64-3.63-6.873-4.126-2.73-.606-4.126-2.126-5.104-3.817-.186-.341-.28-.279-.295.156-.018.639.03 1.278.14 1.908h-.326a7.066 7.066 0 01-7.06-7.06A7.065 7.065 0 0111.08 3.6a7.064 7.064 0 017.013 7.88c-.528-.093-1.537-.108-2.25-.046-.264.031-.233.155-.031.187 2.327.434 3.925 1.877 4.297 4.499.015.062.093.077.124.03a10.739 10.739 0 001.505-5.476C21.738 4.778 16.96 0 11.064 0zm7.644 15.077a.312.312 0 00-.306.157c-.124.218-.03.636.202 1.009.232.372.45.558.606.558.155 0 .294-.186.232-.667-.03-.264-.186-.868-.59-1.024-.047-.021-.101-.023-.144-.033zm-2.214 1.787c-.217 0-.388.076-.497.216-.279.341-.155.962.28 1.335.186.17.466.263.73.263a.816.816 0 00.635-.278c.249-.342.11-.808-.372-1.211-.248-.217-.527-.325-.776-.325Z" }) + ] + } + ); +}); + +export { SiQiwi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.cjs new file mode 100644 index 000000000..a7e55986b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009848"; +const SiQlik = React__namespace.forwardRef(function SiQlik2({ title = "Qlik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.7515 20.1367-3.13-2.6326c1.0862-1.7307 1.7303-3.7745 1.7303-5.9655 0-6.1684-5.008-11.1764-11.176-11.1764S0 5.3702 0 11.5386c0 6.168 5.008 11.176 11.1759 11.176 2.3934 0 4.6216-.7552 6.4443-2.0438l3.3324 2.7988s.4974.4236.921-.0738l1.9884-2.3568c-.0186 0 .3864-.4968-.1105-.9023zm-5.7078-8.598c0 3.7926-3.0747 6.8672-6.8678 6.8672-3.7926 0-6.8678-3.0746-6.8678-6.8673 0-3.793 3.0752-6.8678 6.8678-6.8678 3.7931 0 6.8678 3.0747 6.8678 6.8678zm-11.287 0c0-2.4304 1.9702-4.4006 4.4006-4.4006 2.4303 0 4.4005 1.9702 4.4005 4.4005 0 2.4304-1.9702 4.4006-4.4005 4.4006-2.4304 0-4.4005-1.9702-4.4005-4.4006z" }) + ] + } + ); +}); + +exports.default = SiQlik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.d.ts new file mode 100644 index 000000000..698831334 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009848"; +declare const SiQlik: IconType; +export { SiQlik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.mjs new file mode 100644 index 000000000..305135548 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQlik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009848"; +const SiQlik = React.forwardRef(function SiQlik2({ title = "Qlik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.7515 20.1367-3.13-2.6326c1.0862-1.7307 1.7303-3.7745 1.7303-5.9655 0-6.1684-5.008-11.1764-11.176-11.1764S0 5.3702 0 11.5386c0 6.168 5.008 11.176 11.1759 11.176 2.3934 0 4.6216-.7552 6.4443-2.0438l3.3324 2.7988s.4974.4236.921-.0738l1.9884-2.3568c-.0186 0 .3864-.4968-.1105-.9023zm-5.7078-8.598c0 3.7926-3.0747 6.8672-6.8678 6.8672-3.7926 0-6.8678-3.0746-6.8678-6.8673 0-3.793 3.0752-6.8678 6.8678-6.8678 3.7931 0 6.8678 3.0747 6.8678 6.8678zm-11.287 0c0-2.4304 1.9702-4.4006 4.4006-4.4006 2.4303 0 4.4005 1.9702 4.4005 4.4005 0 2.4304-1.9702 4.4006-4.4005 4.4006-2.4304 0-4.4005-1.9702-4.4005-4.4006z" }) + ] + } + ); +}); + +export { SiQlik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.cjs new file mode 100644 index 000000000..367da4de2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#66FAEC"; +const SiQlty = React__namespace.forwardRef(function SiQlty2({ title = "Qlty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.453 20.437h10.204V24H12.453Zm2.456-.8 8.868-9.812L14.897 0l-2.444 2.7 6.437 7.125-6.437 7.124ZM9.102 0 .223 9.825l8.868 9.814 2.456-2.69L5.11 9.825 11.55 2.7Z" }) + ] + } + ); +}); + +exports.default = SiQlty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.d.ts new file mode 100644 index 000000000..97ed7f190 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#66FAEC"; +declare const SiQlty: IconType; +export { SiQlty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.mjs new file mode 100644 index 000000000..3bf584469 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQlty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#66FAEC"; +const SiQlty = React.forwardRef(function SiQlty2({ title = "Qlty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.453 20.437h10.204V24H12.453Zm2.456-.8 8.868-9.812L14.897 0l-2.444 2.7 6.437 7.125-6.437 7.124ZM9.102 0 .223 9.825l8.868 9.814 2.456-2.69L5.11 9.825 11.55 2.7Z" }) + ] + } + ); +}); + +export { SiQlty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.cjs new file mode 100644 index 000000000..eab84ec89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiQmk = React__namespace.forwardRef(function SiQmk2({ title = "QMK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.78 0a.33.33 0 0 1 .33.33v2.127h1.453V.331c0-.16.114-.293.264-.324L8.894 0h.661a.33.33 0 0 1 .331.33v2.127h1.452V.331c0-.16.114-.293.265-.324L11.669 0h.662a.33.33 0 0 1 .33.33v2.127h1.452V.331c0-.16.114-.293.265-.324L14.445 0h.661a.33.33 0 0 1 .331.33l-.001 2.127h1.453V.331c0-.16.114-.293.264-.324L17.22 0h.662a.33.33 0 0 1 .33.33v2.127h.468a2.864 2.864 0 0 1 2.863 2.863l-.001.467h2.127c.16 0 .293.114.324.265l.007.067v.661a.33.33 0 0 1-.33.33h-2.128v1.453h2.127c.16 0 .293.114.324.264l.007.067v.661a.33.33 0 0 1-.33.331h-2.128v1.452h2.127c.16 0 .293.114.324.265l.007.066v.662a.33.33 0 0 1-.33.33h-2.128v1.452h2.127c.16 0 .293.114.324.265l.007.067v.661a.33.33 0 0 1-.33.331l-2.128-.001v1.453h2.127c.16 0 .293.114.324.264l.007.067v.662a.33.33 0 0 1-.33.33h-2.128v.468a2.864 2.864 0 0 1-2.862 2.863l-.468-.001v2.127a.33.33 0 0 1-.264.324l-.066.007h-.662a.33.33 0 0 1-.33-.33l-.001-2.128h-1.453l.001 2.127c0 .16-.114.293-.264.324l-.067.007h-.661a.331.331 0 0 1-.331-.33l-.001-2.128h-1.452v2.127a.33.33 0 0 1-.264.324l-.066.007h-.662a.33.33 0 0 1-.33-.33l-.001-2.128H9.886v2.127a.33.33 0 0 1-.264.324L9.555 24h-.661a.331.331 0 0 1-.331-.33v-2.128H7.11v2.127a.33.33 0 0 1-.33.331h-.662a.331.331 0 0 1-.33-.33l-.001-2.128H5.32a2.864 2.864 0 0 1-2.863-2.862v-.468H.331a.331.331 0 0 1-.324-.264L0 17.882v-.662a.33.33 0 0 1 .33-.33l2.127-.001v-1.453l-2.126.001a.331.331 0 0 1-.324-.264L0 15.106v-.661a.33.33 0 0 1 .33-.331l2.127-.001v-1.452H.331a.331.331 0 0 1-.324-.264L0 12.331v-.662a.33.33 0 0 1 .33-.33l2.127-.001V9.886H.331a.331.331 0 0 1-.324-.264L0 9.555v-.661a.33.33 0 0 1 .33-.33l2.127-.001V7.11H.331a.331.331 0 0 1-.324-.263L0 6.78v-.66a.33.33 0 0 1 .33-.331l2.127-.001V5.32A2.864 2.864 0 0 1 5.32 2.457h.467V.331c0-.16.114-.293.265-.324L6.118 0h.662Zm9.915 6.275c-.154 0-.278.006-.372.018a.952.952 0 0 0-.23.053.26.26 0 0 0-.125.088.204.204 0 0 0-.035.115v4.428c0 .472-.066.902-.2 1.288-.132.387-.33.718-.592.992-.263.275-.592.49-.988.646-.395.157-.859.238-1.39.244V6.549a.203.203 0 0 0-.035-.115.26.26 0 0 0-.124-.088.96.96 0 0 0-.235-.053 3.15 3.15 0 0 0-.368-.018c-.135 0-.252.006-.35.018a1.02 1.02 0 0 0-.238.053.292.292 0 0 0-.133.088.188.188 0 0 0-.04.115v7.598c-.531-.012-.996-.093-1.395-.244a2.597 2.597 0 0 1-.987-.637 2.637 2.637 0 0 1-.584-1 4.2 4.2 0 0 1-.195-1.324V6.549a.204.204 0 0 0-.036-.115.26.26 0 0 0-.124-.088.96.96 0 0 0-.234-.053 3.148 3.148 0 0 0-.368-.018c-.147 0-.27.006-.367.018a.887.887 0 0 0-.23.053.293.293 0 0 0-.124.088.188.188 0 0 0-.04.115v4.525c0 .697.106 1.314.318 1.851.213.537.52.99.921 1.36.402.368.892.65 1.47.845.579.195 1.237.301 1.975.319v2.116a.2.2 0 0 0 .04.124.263.263 0 0 0 .124.084c.056.02.133.037.23.049.097.012.22.017.367.017.148 0 .27-.005.368-.017a1.15 1.15 0 0 0 .235-.049c.059-.02.1-.049.124-.084a.218.218 0 0 0 .035-.124v-2.116c.726-.018 1.377-.133 1.953-.346a4.17 4.17 0 0 0 1.47-.903c.404-.39.715-.86.934-1.412.218-.552.327-1.176.327-1.873V6.549a.189.189 0 0 0-.04-.115.294.294 0 0 0-.124-.088.887.887 0 0 0-.23-.053 3.056 3.056 0 0 0-.358-.018Z" }) + ] + } + ); +}); + +exports.default = SiQmk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.d.ts new file mode 100644 index 000000000..83084ee6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiQmk: IconType; +export { SiQmk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.mjs new file mode 100644 index 000000000..e823b7a24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQmk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiQmk = React.forwardRef(function SiQmk2({ title = "QMK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.78 0a.33.33 0 0 1 .33.33v2.127h1.453V.331c0-.16.114-.293.264-.324L8.894 0h.661a.33.33 0 0 1 .331.33v2.127h1.452V.331c0-.16.114-.293.265-.324L11.669 0h.662a.33.33 0 0 1 .33.33v2.127h1.452V.331c0-.16.114-.293.265-.324L14.445 0h.661a.33.33 0 0 1 .331.33l-.001 2.127h1.453V.331c0-.16.114-.293.264-.324L17.22 0h.662a.33.33 0 0 1 .33.33v2.127h.468a2.864 2.864 0 0 1 2.863 2.863l-.001.467h2.127c.16 0 .293.114.324.265l.007.067v.661a.33.33 0 0 1-.33.33h-2.128v1.453h2.127c.16 0 .293.114.324.264l.007.067v.661a.33.33 0 0 1-.33.331h-2.128v1.452h2.127c.16 0 .293.114.324.265l.007.066v.662a.33.33 0 0 1-.33.33h-2.128v1.452h2.127c.16 0 .293.114.324.265l.007.067v.661a.33.33 0 0 1-.33.331l-2.128-.001v1.453h2.127c.16 0 .293.114.324.264l.007.067v.662a.33.33 0 0 1-.33.33h-2.128v.468a2.864 2.864 0 0 1-2.862 2.863l-.468-.001v2.127a.33.33 0 0 1-.264.324l-.066.007h-.662a.33.33 0 0 1-.33-.33l-.001-2.128h-1.453l.001 2.127c0 .16-.114.293-.264.324l-.067.007h-.661a.331.331 0 0 1-.331-.33l-.001-2.128h-1.452v2.127a.33.33 0 0 1-.264.324l-.066.007h-.662a.33.33 0 0 1-.33-.33l-.001-2.128H9.886v2.127a.33.33 0 0 1-.264.324L9.555 24h-.661a.331.331 0 0 1-.331-.33v-2.128H7.11v2.127a.33.33 0 0 1-.33.331h-.662a.331.331 0 0 1-.33-.33l-.001-2.128H5.32a2.864 2.864 0 0 1-2.863-2.862v-.468H.331a.331.331 0 0 1-.324-.264L0 17.882v-.662a.33.33 0 0 1 .33-.33l2.127-.001v-1.453l-2.126.001a.331.331 0 0 1-.324-.264L0 15.106v-.661a.33.33 0 0 1 .33-.331l2.127-.001v-1.452H.331a.331.331 0 0 1-.324-.264L0 12.331v-.662a.33.33 0 0 1 .33-.33l2.127-.001V9.886H.331a.331.331 0 0 1-.324-.264L0 9.555v-.661a.33.33 0 0 1 .33-.33l2.127-.001V7.11H.331a.331.331 0 0 1-.324-.263L0 6.78v-.66a.33.33 0 0 1 .33-.331l2.127-.001V5.32A2.864 2.864 0 0 1 5.32 2.457h.467V.331c0-.16.114-.293.265-.324L6.118 0h.662Zm9.915 6.275c-.154 0-.278.006-.372.018a.952.952 0 0 0-.23.053.26.26 0 0 0-.125.088.204.204 0 0 0-.035.115v4.428c0 .472-.066.902-.2 1.288-.132.387-.33.718-.592.992-.263.275-.592.49-.988.646-.395.157-.859.238-1.39.244V6.549a.203.203 0 0 0-.035-.115.26.26 0 0 0-.124-.088.96.96 0 0 0-.235-.053 3.15 3.15 0 0 0-.368-.018c-.135 0-.252.006-.35.018a1.02 1.02 0 0 0-.238.053.292.292 0 0 0-.133.088.188.188 0 0 0-.04.115v7.598c-.531-.012-.996-.093-1.395-.244a2.597 2.597 0 0 1-.987-.637 2.637 2.637 0 0 1-.584-1 4.2 4.2 0 0 1-.195-1.324V6.549a.204.204 0 0 0-.036-.115.26.26 0 0 0-.124-.088.96.96 0 0 0-.234-.053 3.148 3.148 0 0 0-.368-.018c-.147 0-.27.006-.367.018a.887.887 0 0 0-.23.053.293.293 0 0 0-.124.088.188.188 0 0 0-.04.115v4.525c0 .697.106 1.314.318 1.851.213.537.52.99.921 1.36.402.368.892.65 1.47.845.579.195 1.237.301 1.975.319v2.116a.2.2 0 0 0 .04.124.263.263 0 0 0 .124.084c.056.02.133.037.23.049.097.012.22.017.367.017.148 0 .27-.005.368-.017a1.15 1.15 0 0 0 .235-.049c.059-.02.1-.049.124-.084a.218.218 0 0 0 .035-.124v-2.116c.726-.018 1.377-.133 1.953-.346a4.17 4.17 0 0 0 1.47-.903c.404-.39.715-.86.934-1.412.218-.552.327-1.176.327-1.873V6.549a.189.189 0 0 0-.04-.115.294.294 0 0 0-.124-.088.887.887 0 0 0-.23-.053 3.056 3.056 0 0 0-.358-.018Z" }) + ] + } + ); +}); + +export { SiQmk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.cjs new file mode 100644 index 000000000..f8993bec4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C2E82"; +const SiQnap = React__namespace.forwardRef(function SiQnap2({ title = "QNAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.3164 9.955C.438 9.955 0 10.3094 0 11.0177v1.9512c0 .704.438 1.0566 1.3164 1.0566h2.5703c0-.0061.1487.0049.377-.0293-.2145-.3087-.6112-.6434-.9825-.9121l-.0683-.0488H1.6133v-2.1133H3.744v1.793c.6399.1993 1.0793.4554 1.379.6992.0507-.1283.0761-.2763.0761-.4454v-1.9511c0-.6699-.3928-1.0238-1.1758-1.0606v-.002zm4.9649.0528c-.1551 0-.274.044-.3575.1309-.1468.1535-.1164.3461-.1308.3535v3.5176h1.4453s-.0081-1.8582-.0117-2.4063c.0062-.036.0323-.088.1425-.0742 0 0 .0426.0012.0606.0332.2786.445 2.1035 2.4473 2.1035 2.4473h1.5v-4.002H9.5703v2.3281c-.022.0535-.095.044-.1308.006-.258-.399-1.2508-1.7643-1.5684-2.1993-.0202-.0243-.1248-.1348-.3555-.1348Zm6.584 0c-.3665 0-.6468.0763-.8438.2305-.202.1592-.3027.371-.3027.6387v3.1328h1.5273v-1.0664h2.1406v1.0664h1.5293V10.877c0-.2711-.0993-.4848-.2969-.6387-.197-.1542-.4793-.2305-.8457-.2305zm5.9179 0c-.366 0-.6481.0778-.8457.2324-.197.1533-.2976.361-.3027.6192v3.1504h1.5293v-1.045h2.4707c.6714 0 1.0078-.268 1.0078-.8085V10.873c0-.3081-.0845-.529-.248-.664-.2801-.2223-.743-.1877-.7032-.2012zm4.7246.0723c-.248.0126-.4473.2195-.4473.4707 0 .259.2116.4687.4707.4687A.4684.4684 0 0 0 24 10.5508c0-.2593-.2096-.4707-.4688-.4707-.008 0-.0154-.0004-.0234 0zm.002.0683c.0068-.0003.0146 0 .0215 0 .2213.0007.3998.1813.4004.4024a.3996.3996 0 0 1-.4004.3984c-.221-.0005-.4001-.1777-.4004-.3984.0003-.2142.1675-.391.379-.4024zm-.1894.1407v.5332h.0722v-.2364c.0404-.0023.081.0013.1211.002.0326.0073.0642.0456.0684.0508.0452.0579.0807.1224.121.1836h.088l-.0918-.1445a.3512.3512 0 0 0-.0586-.0703.1786.1786 0 0 0-.043-.0274c.0514-.007.0887-.023.1133-.0488.0434-.0465.05-.1157.0137-.1758-.0217-.036-.0561-.0664-.166-.0664zm.0722.0586h.168c.1513 0 .134.1407.0586.168-.0737.0188-.1513.0064-.2266.0097zm-10.1465.7011h2.1407v1.1582H13.246zm5.8965 0h1.9434v1.0371h-1.9434zm-16.3574 1.539c.4791.3043 1.3518.9071 1.6406 1.4571h1.0879c-.1858-.3314-.814-1.1293-2.7285-1.457Z" }) + ] + } + ); +}); + +exports.default = SiQnap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.d.ts new file mode 100644 index 000000000..c060a75e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C2E82"; +declare const SiQnap: IconType; +export { SiQnap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.mjs new file mode 100644 index 000000000..cfe8b4cc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQnap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C2E82"; +const SiQnap = React.forwardRef(function SiQnap2({ title = "QNAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.3164 9.955C.438 9.955 0 10.3094 0 11.0177v1.9512c0 .704.438 1.0566 1.3164 1.0566h2.5703c0-.0061.1487.0049.377-.0293-.2145-.3087-.6112-.6434-.9825-.9121l-.0683-.0488H1.6133v-2.1133H3.744v1.793c.6399.1993 1.0793.4554 1.379.6992.0507-.1283.0761-.2763.0761-.4454v-1.9511c0-.6699-.3928-1.0238-1.1758-1.0606v-.002zm4.9649.0528c-.1551 0-.274.044-.3575.1309-.1468.1535-.1164.3461-.1308.3535v3.5176h1.4453s-.0081-1.8582-.0117-2.4063c.0062-.036.0323-.088.1425-.0742 0 0 .0426.0012.0606.0332.2786.445 2.1035 2.4473 2.1035 2.4473h1.5v-4.002H9.5703v2.3281c-.022.0535-.095.044-.1308.006-.258-.399-1.2508-1.7643-1.5684-2.1993-.0202-.0243-.1248-.1348-.3555-.1348Zm6.584 0c-.3665 0-.6468.0763-.8438.2305-.202.1592-.3027.371-.3027.6387v3.1328h1.5273v-1.0664h2.1406v1.0664h1.5293V10.877c0-.2711-.0993-.4848-.2969-.6387-.197-.1542-.4793-.2305-.8457-.2305zm5.9179 0c-.366 0-.6481.0778-.8457.2324-.197.1533-.2976.361-.3027.6192v3.1504h1.5293v-1.045h2.4707c.6714 0 1.0078-.268 1.0078-.8085V10.873c0-.3081-.0845-.529-.248-.664-.2801-.2223-.743-.1877-.7032-.2012zm4.7246.0723c-.248.0126-.4473.2195-.4473.4707 0 .259.2116.4687.4707.4687A.4684.4684 0 0 0 24 10.5508c0-.2593-.2096-.4707-.4688-.4707-.008 0-.0154-.0004-.0234 0zm.002.0683c.0068-.0003.0146 0 .0215 0 .2213.0007.3998.1813.4004.4024a.3996.3996 0 0 1-.4004.3984c-.221-.0005-.4001-.1777-.4004-.3984.0003-.2142.1675-.391.379-.4024zm-.1894.1407v.5332h.0722v-.2364c.0404-.0023.081.0013.1211.002.0326.0073.0642.0456.0684.0508.0452.0579.0807.1224.121.1836h.088l-.0918-.1445a.3512.3512 0 0 0-.0586-.0703.1786.1786 0 0 0-.043-.0274c.0514-.007.0887-.023.1133-.0488.0434-.0465.05-.1157.0137-.1758-.0217-.036-.0561-.0664-.166-.0664zm.0722.0586h.168c.1513 0 .134.1407.0586.168-.0737.0188-.1513.0064-.2266.0097zm-10.1465.7011h2.1407v1.1582H13.246zm5.8965 0h1.9434v1.0371h-1.9434zm-16.3574 1.539c.4791.3043 1.3518.9071 1.6406 1.4571h1.0879c-.1858-.3314-.814-1.1293-2.7285-1.457Z" }) + ] + } + ); +}); + +export { SiQnap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.cjs new file mode 100644 index 000000000..b744eb0a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7968FA"; +const SiQodo = React__namespace.forwardRef(function SiQodo2({ title = "Qodo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.1145 1.8855C4.7612 1.8855 0 6.4137 0 12s4.5281 10.1145 10.1145 10.1145c3.5362 0 6.6481-1.814 8.4564-4.5627-1.1753-.4206-2.7083-.9286-4.0243-1.248-1.01-.2432-2.1647-.5052-3.1184-.5052-.6537 0-1.1614.1182-1.5459.364-1.2932.8191-2.2076 3.6722-2.6316 5.1102a8.8274 8.8274 0 0 1-.5835-.2004c.6396-2.1526 1.5374-4.585 2.8842-5.4375 1.2485-.7883 3.1412-.4207 5.1384.0649 2.8049.6811 5.7367 1.8817 7.085 2.4362.318.1313.3964.1274.5545.029l1.5416-.9568c.1466-.091.1602-.206.0818-.3915-.432-1.0288-2.4434-3.9052-5.8545-6.3886-.0984.079-.213.139-.3422.1644 0 .0308-.0023.0651-.0049.096 2.4178 1.7346 4.129 3.669 5.058 4.9937l-2.2909 1.495c-1.4332-.5646-3.6102-1.368-5.7232-1.881-2.087-.5056-4.0765-.8866-5.4622-.0113-1.1727.7428-2.0958 2.444-3.0521 5.6386-3.4419-1.4808-5.8602-4.9217-5.8602-8.922 0-1.1869.2128-2.3245.6033-3.3753 1.0856-.5399 2.174-.9517 3.251-1.2262.0194.0308.04.0623.0621.093l.8354 1.1437c.0703.0945.2011.1182.2949.046.0924-.071.1155-.2007.0451-.2971l-.836-1.1437c-.14-.1895-.2275-.3987-.2583-.599-.073-.4916.191-.6496.3986-.726.2385-.0877.4434-.0848.6202.017.286.1607.4462.545.477.709.0502.2572.3902 1.4519.4042 1.5028a.2106.2106 0 0 0 .2604.1467c.1124-.0308.1767-.1492.1432-.2624-.073-.2572-.191-.675-.278-1.0026 1.6757-.154 3.1477.0063 4.7658.4685 1.2893.3744 2.4624.831 3.678 1.4499h.8974c-1.1386-.633-2.3844-1.1974-3.7393-1.6354.2076-.424.319-.7688.3224-1.0146.0114-.085.0334-.3898-.1601-.661-.1514-.2117-.3867-.3471-.7034-.398-.7964-.13-1.15.4606-1.2284.8135l-.0896.7598c-1.251-.2545-2.5417-.322-3.843-.1947-.0027-.0168-.0093-.0366-.012-.048-.0475-.237-.2497-.749-.6843-.9948-.286-.1607-.6112-.1777-.9701-.0451-.5164.1922-.7552.6127-.6682 1.1867.014.1018.045.2037.0812.3055-.9343.2458-1.8763.5984-2.8186 1.0364a8.9847 8.9847 0 0 1 .4515-.884c.5526-.229 1.1046-.4295 1.6545-.5962-.0308-.7629.3646-1.3612 1.0886-1.6298.4976-.1855 1.0231-.1745 1.4866.0847.3951.223.6653.5823.8247.9299.2833-.0168.5689-.0254.8495-.0254.679 0 1.3605.0506 2.0255.1524l.0149-.1045c.0997-.6911.7842-1.5402 1.9402-1.356.606.0991.9369.4095 1.1077.652.3563.5036.3334 1.1283.1573 1.6614 1.5203.5479 2.9032 1.2426 4.1429 2.0108h.5806c.4574 0 .8283.3731.8283.8332 0 .0208-.0038.06-.0092.1016.4152.2994.8108.602 1.1839.9102.1333.1105.428.3594.6067.5115-.3556-5.2635-4.7379-9.4224-10.0912-9.4224Zm1.1147 3.75a.8425.8425 0 0 1 .201.0105c.5613.0931.5272.5081.5165.5905 0 .0114-.0028.0253-.0028.0367 0 .1132-.0416.3761-.3055.9045-.3422-.1038-.7275-.2109-1.0463-.2885l.0896-.774v-.0007c.0123-.0522.1237-.4461.5475-.479zM8.7923 9.5616c-.1152 0-.2102.0958-.2102.2117 0 .1158.095.2116.2102.2116h.2695l.0113.0113c.0054.0054.163.113.163.3387v.031c0 .2599-.0033.8676.4226 1.2996.2974.2993.7382.4522 1.3102.4522.7742 0 1.2768-.255 1.5373-.7775.1601-.3194.1989-.6976.2103-1.0646h.9482c.0114.367.0502.7458.2102 1.0646.258.5224.7632.7775 1.5374.7775.572 0 1.0128-.1529 1.3101-.4522.4294-.432.426-1.0397.4227-1.2996v-.031c0-.12.0692-.2964.177-.35H17.5924c.1152 0 .2102-.0958.2102-.2116 0-.1159-.095-.2117-.2102-.2117z" }) + ] + } + ); +}); + +exports.default = SiQodo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.d.ts new file mode 100644 index 000000000..9c73d48bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7968FA"; +declare const SiQodo: IconType; +export { SiQodo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.mjs new file mode 100644 index 000000000..c96f46bd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQodo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7968FA"; +const SiQodo = React.forwardRef(function SiQodo2({ title = "Qodo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.1145 1.8855C4.7612 1.8855 0 6.4137 0 12s4.5281 10.1145 10.1145 10.1145c3.5362 0 6.6481-1.814 8.4564-4.5627-1.1753-.4206-2.7083-.9286-4.0243-1.248-1.01-.2432-2.1647-.5052-3.1184-.5052-.6537 0-1.1614.1182-1.5459.364-1.2932.8191-2.2076 3.6722-2.6316 5.1102a8.8274 8.8274 0 0 1-.5835-.2004c.6396-2.1526 1.5374-4.585 2.8842-5.4375 1.2485-.7883 3.1412-.4207 5.1384.0649 2.8049.6811 5.7367 1.8817 7.085 2.4362.318.1313.3964.1274.5545.029l1.5416-.9568c.1466-.091.1602-.206.0818-.3915-.432-1.0288-2.4434-3.9052-5.8545-6.3886-.0984.079-.213.139-.3422.1644 0 .0308-.0023.0651-.0049.096 2.4178 1.7346 4.129 3.669 5.058 4.9937l-2.2909 1.495c-1.4332-.5646-3.6102-1.368-5.7232-1.881-2.087-.5056-4.0765-.8866-5.4622-.0113-1.1727.7428-2.0958 2.444-3.0521 5.6386-3.4419-1.4808-5.8602-4.9217-5.8602-8.922 0-1.1869.2128-2.3245.6033-3.3753 1.0856-.5399 2.174-.9517 3.251-1.2262.0194.0308.04.0623.0621.093l.8354 1.1437c.0703.0945.2011.1182.2949.046.0924-.071.1155-.2007.0451-.2971l-.836-1.1437c-.14-.1895-.2275-.3987-.2583-.599-.073-.4916.191-.6496.3986-.726.2385-.0877.4434-.0848.6202.017.286.1607.4462.545.477.709.0502.2572.3902 1.4519.4042 1.5028a.2106.2106 0 0 0 .2604.1467c.1124-.0308.1767-.1492.1432-.2624-.073-.2572-.191-.675-.278-1.0026 1.6757-.154 3.1477.0063 4.7658.4685 1.2893.3744 2.4624.831 3.678 1.4499h.8974c-1.1386-.633-2.3844-1.1974-3.7393-1.6354.2076-.424.319-.7688.3224-1.0146.0114-.085.0334-.3898-.1601-.661-.1514-.2117-.3867-.3471-.7034-.398-.7964-.13-1.15.4606-1.2284.8135l-.0896.7598c-1.251-.2545-2.5417-.322-3.843-.1947-.0027-.0168-.0093-.0366-.012-.048-.0475-.237-.2497-.749-.6843-.9948-.286-.1607-.6112-.1777-.9701-.0451-.5164.1922-.7552.6127-.6682 1.1867.014.1018.045.2037.0812.3055-.9343.2458-1.8763.5984-2.8186 1.0364a8.9847 8.9847 0 0 1 .4515-.884c.5526-.229 1.1046-.4295 1.6545-.5962-.0308-.7629.3646-1.3612 1.0886-1.6298.4976-.1855 1.0231-.1745 1.4866.0847.3951.223.6653.5823.8247.9299.2833-.0168.5689-.0254.8495-.0254.679 0 1.3605.0506 2.0255.1524l.0149-.1045c.0997-.6911.7842-1.5402 1.9402-1.356.606.0991.9369.4095 1.1077.652.3563.5036.3334 1.1283.1573 1.6614 1.5203.5479 2.9032 1.2426 4.1429 2.0108h.5806c.4574 0 .8283.3731.8283.8332 0 .0208-.0038.06-.0092.1016.4152.2994.8108.602 1.1839.9102.1333.1105.428.3594.6067.5115-.3556-5.2635-4.7379-9.4224-10.0912-9.4224Zm1.1147 3.75a.8425.8425 0 0 1 .201.0105c.5613.0931.5272.5081.5165.5905 0 .0114-.0028.0253-.0028.0367 0 .1132-.0416.3761-.3055.9045-.3422-.1038-.7275-.2109-1.0463-.2885l.0896-.774v-.0007c.0123-.0522.1237-.4461.5475-.479zM8.7923 9.5616c-.1152 0-.2102.0958-.2102.2117 0 .1158.095.2116.2102.2116h.2695l.0113.0113c.0054.0054.163.113.163.3387v.031c0 .2599-.0033.8676.4226 1.2996.2974.2993.7382.4522 1.3102.4522.7742 0 1.2768-.255 1.5373-.7775.1601-.3194.1989-.6976.2103-1.0646h.9482c.0114.367.0502.7458.2102 1.0646.258.5224.7632.7775 1.5374.7775.572 0 1.0128-.1529 1.3101-.4522.4294-.432.426-1.0397.4227-1.2996v-.031c0-.12.0692-.2964.177-.35H17.5924c.1152 0 .2102-.0958.2102-.2116 0-.1159-.095-.2117-.2102-.2117z" }) + ] + } + ); +}); + +export { SiQodo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQq.cjs new file mode 100644 index 000000000..3d421680f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1EBAFC"; +const SiQq = React__namespace.forwardRef(function SiQq2({ title = "QQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.395 15.035a40 40 0 0 0-.803-2.264l-1.079-2.695c.001-.032.014-.562.014-.836C19.526 4.632 17.351 0 12 0S4.474 4.632 4.474 9.241c0 .274.013.804.014.836l-1.08 2.695a39 39 0 0 0-.802 2.264c-1.021 3.283-.69 4.643-.438 4.673.54.065 2.103-2.472 2.103-2.472 0 1.469.756 3.387 2.394 4.771-.612.188-1.363.479-1.845.835-.434.32-.379.646-.301.778.343.578 5.883.369 7.482.189 1.6.18 7.14.389 7.483-.189.078-.132.132-.458-.301-.778-.483-.356-1.233-.646-1.846-.836 1.637-1.384 2.393-3.302 2.393-4.771 0 0 1.563 2.537 2.103 2.472.251-.03.581-1.39-.438-4.673" }) + ] + } + ); +}); + +exports.default = SiQq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQq.d.ts new file mode 100644 index 000000000..04fff404f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1EBAFC"; +declare const SiQq: IconType; +export { SiQq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQq.mjs new file mode 100644 index 000000000..fef97ed36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1EBAFC"; +const SiQq = React.forwardRef(function SiQq2({ title = "QQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.395 15.035a40 40 0 0 0-.803-2.264l-1.079-2.695c.001-.032.014-.562.014-.836C19.526 4.632 17.351 0 12 0S4.474 4.632 4.474 9.241c0 .274.013.804.014.836l-1.08 2.695a39 39 0 0 0-.802 2.264c-1.021 3.283-.69 4.643-.438 4.673.54.065 2.103-2.472 2.103-2.472 0 1.469.756 3.387 2.394 4.771-.612.188-1.363.479-1.845.835-.434.32-.379.646-.301.778.343.578 5.883.369 7.482.189 1.6.18 7.14.389 7.483-.189.078-.132.132-.458-.301-.778-.483-.356-1.233-.646-1.846-.836 1.637-1.384 2.393-3.302 2.393-4.771 0 0 1.563 2.537 2.103 2.472.251-.03.581-1.39-.438-4.673" }) + ] + } + ); +}); + +export { SiQq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQt.cjs new file mode 100644 index 000000000..a94ae4df5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41CD52"; +const SiQt = React__namespace.forwardRef(function SiQt2({ title = "Qt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.693 3.162H3.33L0 6.49v14.348h20.671L24 17.51V3.162zM12.785 18.4l-1.562.728-1.35-2.217c-.196.057-.499.09-.924.09-1.579 0-2.683-.425-3.305-1.276-.622-.85-.932-2.2-.932-4.033 0-1.84.319-3.206.949-4.098.63-.892 1.726-1.341 3.288-1.341 1.562 0 2.658.441 3.28 1.333.63.883.94 2.25.94 4.098 0 1.219-.13 2.2-.384 2.945-.261.752-.679 1.325-1.268 1.718zm4.736-1.587c-.858 0-1.447-.196-1.766-.59-.32-.392-.483-1.136-.483-2.232v-3.534H14.11V9.051h1.162V6.843h1.644V9.05h2.094v1.415h-2.094v3.346c0 .622.05 1.03.14 1.227.09.204.326.303.695.303l1.243-.05.073 1.326c-.67.13-1.186.196-1.546.196zm-8.58-9.08c-.95 0-1.604.311-1.963.94-.352.63-.532 1.629-.532 3.011 0 1.374.172 2.364.515 2.953.344.589 1.006.892 1.98.892.973 0 1.628-.295 1.971-.876.335-.58.507-1.57.507-2.953 0-1.39-.172-2.396-.523-3.026-.352-.63-1.006-.94-1.955-.94Z" }) + ] + } + ); +}); + +exports.default = SiQt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQt.d.ts new file mode 100644 index 000000000..49445bdeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41CD52"; +declare const SiQt: IconType; +export { SiQt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQt.mjs new file mode 100644 index 000000000..96704a87f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41CD52"; +const SiQt = React.forwardRef(function SiQt2({ title = "Qt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.693 3.162H3.33L0 6.49v14.348h20.671L24 17.51V3.162zM12.785 18.4l-1.562.728-1.35-2.217c-.196.057-.499.09-.924.09-1.579 0-2.683-.425-3.305-1.276-.622-.85-.932-2.2-.932-4.033 0-1.84.319-3.206.949-4.098.63-.892 1.726-1.341 3.288-1.341 1.562 0 2.658.441 3.28 1.333.63.883.94 2.25.94 4.098 0 1.219-.13 2.2-.384 2.945-.261.752-.679 1.325-1.268 1.718zm4.736-1.587c-.858 0-1.447-.196-1.766-.59-.32-.392-.483-1.136-.483-2.232v-3.534H14.11V9.051h1.162V6.843h1.644V9.05h2.094v1.415h-2.094v3.346c0 .622.05 1.03.14 1.227.09.204.326.303.695.303l1.243-.05.073 1.326c-.67.13-1.186.196-1.546.196zm-8.58-9.08c-.95 0-1.604.311-1.963.94-.352.63-.532 1.629-.532 3.011 0 1.374.172 2.364.515 2.953.344.589 1.006.892 1.98.892.973 0 1.628-.295 1.971-.876.335-.58.507-1.57.507-2.953 0-1.39-.172-2.396-.523-3.026-.352-.63-1.006-.94-1.955-.94Z" }) + ] + } + ); +}); + +export { SiQt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.cjs new file mode 100644 index 000000000..de253b3f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC205E"; +const SiQuad9 = React__namespace.forwardRef(function SiQuad92({ title = "Quad9", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.822 24h5.608l6.331-9.48c1.463-2.185 2.288-4.197 2.288-6.4C21.05 3.458 17.144 0 12 0 6.822 0 2.95 3.493 2.95 8.207c0 4.507 3.459 8 8.345 8 .413 0 .757-.018 1.083-.07zM12 12.129c-2.426 0-4.215-1.634-4.215-3.957 0-2.34 1.79-3.957 4.215-3.957 2.409 0 4.215 1.617 4.215 3.957 0 2.323-1.806 3.957-4.215 3.957z" }) + ] + } + ); +}); + +exports.default = SiQuad9; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.d.ts new file mode 100644 index 000000000..877eb5fca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC205E"; +declare const SiQuad9: IconType; +export { SiQuad9 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.mjs new file mode 100644 index 000000000..2f50f7fea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuad9.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC205E"; +const SiQuad9 = React.forwardRef(function SiQuad92({ title = "Quad9", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.822 24h5.608l6.331-9.48c1.463-2.185 2.288-4.197 2.288-6.4C21.05 3.458 17.144 0 12 0 6.822 0 2.95 3.493 2.95 8.207c0 4.507 3.459 8 8.345 8 .413 0 .757-.018 1.083-.07zM12 12.129c-2.426 0-4.215-1.634-4.215-3.957 0-2.34 1.79-3.957 4.215-3.957 2.409 0 4.215 1.617 4.215 3.957 0 2.323-1.806 3.957-4.215 3.957z" }) + ] + } + ); +}); + +export { SiQuad9 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.cjs new file mode 100644 index 000000000..da9c641bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3253DC"; +const SiQualcomm = React__namespace.forwardRef(function SiQualcomm2({ title = "Qualcomm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.22933 0 1.5761 4.48645 1.5761 10.47394c0 6.00417 4.65323 10.47394 10.4239 10.47394.98402 0 1.93468-.13343 2.8353-.3836l1.13412 2.9187c.11675.31688.35025.51702.7672.51702h1.80125c.43364 0 .75052-.28353.55038-.83391l-1.46768-3.81932c2.88534-1.81793 4.80333-5.03683 4.80333-8.8895C22.4239 4.48644 17.77067 0 12 0m4.53648 16.5615l-1.31758-3.41904c-.11675-.28353-.35024-.55038-.85059-.55038h-1.71786c-.43363 0-.7672.28353-.56706.83391l1.73454 4.48645c-.56706.1501-1.18416.21682-1.81793.21682-4.2196 0-7.22168-3.31897-7.22168-7.65532C4.77832 6.1376 7.7804 2.81862 12 2.81862s7.22168 3.31898 7.22168 7.65532c0 2.5351-1.01737 4.70327-2.6852 6.08756" }) + ] + } + ); +}); + +exports.default = SiQualcomm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.d.ts new file mode 100644 index 000000000..1604d8032 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3253DC"; +declare const SiQualcomm: IconType; +export { SiQualcomm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.mjs new file mode 100644 index 000000000..b3ffe82bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualcomm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3253DC"; +const SiQualcomm = React.forwardRef(function SiQualcomm2({ title = "Qualcomm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.22933 0 1.5761 4.48645 1.5761 10.47394c0 6.00417 4.65323 10.47394 10.4239 10.47394.98402 0 1.93468-.13343 2.8353-.3836l1.13412 2.9187c.11675.31688.35025.51702.7672.51702h1.80125c.43364 0 .75052-.28353.55038-.83391l-1.46768-3.81932c2.88534-1.81793 4.80333-5.03683 4.80333-8.8895C22.4239 4.48644 17.77067 0 12 0m4.53648 16.5615l-1.31758-3.41904c-.11675-.28353-.35024-.55038-.85059-.55038h-1.71786c-.43363 0-.7672.28353-.56706.83391l1.73454 4.48645c-.56706.1501-1.18416.21682-1.81793.21682-4.2196 0-7.22168-3.31897-7.22168-7.65532C4.77832 6.1376 7.7804 2.81862 12 2.81862s7.22168 3.31898 7.22168 7.65532c0 2.5351-1.01737 4.70327-2.6852 6.08756" }) + ] + } + ); +}); + +export { SiQualcomm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.cjs new file mode 100644 index 000000000..638ed0544 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B4EF"; +const SiQualtrics = React__namespace.forwardRef(function SiQualtrics2({ title = "Qualtrics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.14 5.518l-2.695 9.538h-.034l-2.89-9.538H8.125l-2.19 3.893-2.318-3.893H.368l3.78 6.116L0 18.486h2.993l2.66-4.534 2.755 4.534h4.906v-8.99h.034q.102.564.195.966.093.402.175.744c.057.228.118.445.184.65.065.206.132.43.2.677l1.926 5.949h2.523l1.942-5.95q.213-.718.398-1.385a14.544 14.544 0 0 0 .32-1.506h.035v8.845H24V5.514zM7.373 11.651l3.383-5.616v11.118z" }) + ] + } + ); +}); + +exports.default = SiQualtrics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.d.ts new file mode 100644 index 000000000..9b4d3fe13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B4EF"; +declare const SiQualtrics: IconType; +export { SiQualtrics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.mjs new file mode 100644 index 000000000..1db5f1922 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualtrics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B4EF"; +const SiQualtrics = React.forwardRef(function SiQualtrics2({ title = "Qualtrics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.14 5.518l-2.695 9.538h-.034l-2.89-9.538H8.125l-2.19 3.893-2.318-3.893H.368l3.78 6.116L0 18.486h2.993l2.66-4.534 2.755 4.534h4.906v-8.99h.034q.102.564.195.966.093.402.175.744c.057.228.118.445.184.65.065.206.132.43.2.677l1.926 5.949h2.523l1.942-5.95q.213-.718.398-1.385a14.544 14.544 0 0 0 .32-1.506h.035v8.845H24V5.514zM7.373 11.651l3.383-5.616v11.118z" }) + ] + } + ); +}); + +export { SiQualtrics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.cjs new file mode 100644 index 000000000..1fcf74c19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED2E26"; +const SiQualys = React__namespace.forwardRef(function SiQualys2({ title = "Qualys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9986 0C5.4353 0 2.1382 3.5117 2.1382 3.5117s-.3775 2.5993-.1366 7.8332C2.3654 19.2513 11.999 24.0005 11.9999 24c.001-.0005 9.6347-4.7488 9.9985-12.6551.2408-5.2339-.1364-7.8332-.1364-7.8332S18.562 0 11.9986 0zm-.6782 2.9194a7.3657 7.3657 0 0 1 8.0454 7.3343 7.1158 7.1158 0 0 1-2.7712 5.6342c-1.1788-.108-2.4098-.4423-2.9676-.7605 1.4379-.9177 3.3036-2.7033 3.3036-4.8737a4.9361 4.9361 0 0 0-4.9305-4.9305c-2.7165 0-4.9266 2.2743-4.9266 5.0698 0 2.332 1.2355 4.1624 3.6718 5.4404 1.5943.8363 3.9724 1.449 6.4852 1.7723-.418.6225-1.533 1.686-2.1847 2.0462-3.0087-.4934-5.6513-1.5354-7.4578-3.0964-1.9323-1.6699-2.9536-3.8488-2.9536-6.3018a7.3657 7.3657 0 0 1 6.686-7.3343Z" }) + ] + } + ); +}); + +exports.default = SiQualys; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.d.ts new file mode 100644 index 000000000..b18f95dac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED2E26"; +declare const SiQualys: IconType; +export { SiQualys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.mjs new file mode 100644 index 000000000..b7e7bcbf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQualys.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED2E26"; +const SiQualys = React.forwardRef(function SiQualys2({ title = "Qualys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9986 0C5.4353 0 2.1382 3.5117 2.1382 3.5117s-.3775 2.5993-.1366 7.8332C2.3654 19.2513 11.999 24.0005 11.9999 24c.001-.0005 9.6347-4.7488 9.9985-12.6551.2408-5.2339-.1364-7.8332-.1364-7.8332S18.562 0 11.9986 0zm-.6782 2.9194a7.3657 7.3657 0 0 1 8.0454 7.3343 7.1158 7.1158 0 0 1-2.7712 5.6342c-1.1788-.108-2.4098-.4423-2.9676-.7605 1.4379-.9177 3.3036-2.7033 3.3036-4.8737a4.9361 4.9361 0 0 0-4.9305-4.9305c-2.7165 0-4.9266 2.2743-4.9266 5.0698 0 2.332 1.2355 4.1624 3.6718 5.4404 1.5943.8363 3.9724 1.449 6.4852 1.7723-.418.6225-1.533 1.686-2.1847 2.0462-3.0087-.4934-5.6513-1.5354-7.4578-3.0964-1.9323-1.6699-2.9536-3.8488-2.9536-6.3018a7.3657 7.3657 0 0 1 6.686-7.3343Z" }) + ] + } + ); +}); + +export { SiQualys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.cjs new file mode 100644 index 000000000..f02cc35e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiQuantcast = React__namespace.forwardRef(function SiQuantcast2({ title = "Quantcast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.548 10.96c-.306 0-.579.102-.806.43h-.011v-.353H10v2.724h.763v-1.548c0-.37.191-.634.497-.634.24 0 .408.132.408.525v1.66h.763v-1.851c0-.528-.227-.952-.884-.952zm-1.952 2.8v-1.917c0-.627-.562-.88-1.236-.88-.954 0-1.25.537-1.277.956h.73c.017-.245.202-.402.514-.402.334 0 .536.16.536.483v.126l-.705.043c-1.064.064-1.16.544-1.16.836 0 .621.526.832.955.832.318 0 .68-.096.933-.43h.01v.354zm-.73-.937c0 .328-.388.46-.626.46-.256 0-.478-.073-.478-.317 0-.197.118-.303.466-.334l.635-.06Zm11.831-1.065c0-.165.203-.244.402-.244.292 0 .455.138.466.365l.764-.017c-.042-.592-.503-.901-1.202-.901-.806 0-1.129.455-1.129.873 0 1.124 1.632.71 1.632 1.166 0 .222-.256.28-.45.28-.227 0-.46-.106-.471-.37h-.764c.064.806.825.921 1.207.921 1.124 0 1.242-.7 1.242-.913 0-1.098-1.697-.674-1.697-1.16zm-.983 2.003v-1.918c0-.627-.561-.88-1.235-.88-.955 0-1.25.537-1.278.956h.73c.017-.245.202-.402.514-.402.334 0 .537.16.537.483v.126l-.705.042c-1.065.065-1.16.545-1.16.837 0 .621.525.832.955.832.317 0 .68-.096.932-.43h.011v.354zm-.73-.938c0 .328-.387.46-.626.46-.255 0-.477-.073-.477-.317 0-.197.118-.303.466-.334l.635-.06v.25zm-2.769-.02c-.047.25-.196.416-.477.416-.399 0-.525-.402-.525-.764 0-.351.059-.848.53-.848.197 0 .413.084.439.44h.744l.05-.002c-.036-.579-.424-1.087-1.235-1.087-.826 0-1.326.59-1.326 1.463 0 .837.45 1.41 1.343 1.41.73 0 1.092-.432 1.207-1.03zm-3.201-1.755v-.795h.772v.795h.407v.59h-.407v1.393c0 .123.053.182.253.182a.617.617 0 0 0 .154-.017v.607c-.123.017-.247.03-.37.03-.503 0-.81-.123-.81-.718v-1.48h-.353v-.587zm9.807 0v-.795h.772v.795H24v.59h-.407v1.393c0 .123.053.182.253.182a.617.617 0 0 0 .154-.017v.607a2.75 2.75 0 0 1-.37.03c-.503 0-.81-.123-.81-.718v-1.48h-.353v-.587ZM5.94 12.584c0 .37-.191.635-.497.635-.24 0-.408-.132-.408-.525v-1.66h-.764v1.85c0 .526.298.95.955.95.306 0 .509-.101.736-.43h.011v.354h.73v-2.724H5.94Zm-3.27 1.163.25.43h.89l-.47-.815c.426-.388.648-.958.648-1.525 0-1-.685-2.013-1.994-2.013S0 10.837 0 11.837s.685 2.014 1.994 2.014c.244 0 .472-.037.677-.104zm-1.808-1.91c0-.649.348-1.303 1.126-1.303.778 0 1.126.654 1.126 1.303 0 .28-.064.565-.202.792h-.89l.272.472a1.17 1.17 0 0 1-.306.04c-.778 0-1.126-.655-1.126-1.304z" }) + ] + } + ); +}); + +exports.default = SiQuantcast; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.d.ts new file mode 100644 index 000000000..d6e6420e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiQuantcast: IconType; +export { SiQuantcast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.mjs new file mode 100644 index 000000000..b44322928 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantcast.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiQuantcast = React.forwardRef(function SiQuantcast2({ title = "Quantcast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.548 10.96c-.306 0-.579.102-.806.43h-.011v-.353H10v2.724h.763v-1.548c0-.37.191-.634.497-.634.24 0 .408.132.408.525v1.66h.763v-1.851c0-.528-.227-.952-.884-.952zm-1.952 2.8v-1.917c0-.627-.562-.88-1.236-.88-.954 0-1.25.537-1.277.956h.73c.017-.245.202-.402.514-.402.334 0 .536.16.536.483v.126l-.705.043c-1.064.064-1.16.544-1.16.836 0 .621.526.832.955.832.318 0 .68-.096.933-.43h.01v.354zm-.73-.937c0 .328-.388.46-.626.46-.256 0-.478-.073-.478-.317 0-.197.118-.303.466-.334l.635-.06Zm11.831-1.065c0-.165.203-.244.402-.244.292 0 .455.138.466.365l.764-.017c-.042-.592-.503-.901-1.202-.901-.806 0-1.129.455-1.129.873 0 1.124 1.632.71 1.632 1.166 0 .222-.256.28-.45.28-.227 0-.46-.106-.471-.37h-.764c.064.806.825.921 1.207.921 1.124 0 1.242-.7 1.242-.913 0-1.098-1.697-.674-1.697-1.16zm-.983 2.003v-1.918c0-.627-.561-.88-1.235-.88-.955 0-1.25.537-1.278.956h.73c.017-.245.202-.402.514-.402.334 0 .537.16.537.483v.126l-.705.042c-1.065.065-1.16.545-1.16.837 0 .621.525.832.955.832.317 0 .68-.096.932-.43h.011v.354zm-.73-.938c0 .328-.387.46-.626.46-.255 0-.477-.073-.477-.317 0-.197.118-.303.466-.334l.635-.06v.25zm-2.769-.02c-.047.25-.196.416-.477.416-.399 0-.525-.402-.525-.764 0-.351.059-.848.53-.848.197 0 .413.084.439.44h.744l.05-.002c-.036-.579-.424-1.087-1.235-1.087-.826 0-1.326.59-1.326 1.463 0 .837.45 1.41 1.343 1.41.73 0 1.092-.432 1.207-1.03zm-3.201-1.755v-.795h.772v.795h.407v.59h-.407v1.393c0 .123.053.182.253.182a.617.617 0 0 0 .154-.017v.607c-.123.017-.247.03-.37.03-.503 0-.81-.123-.81-.718v-1.48h-.353v-.587zm9.807 0v-.795h.772v.795H24v.59h-.407v1.393c0 .123.053.182.253.182a.617.617 0 0 0 .154-.017v.607a2.75 2.75 0 0 1-.37.03c-.503 0-.81-.123-.81-.718v-1.48h-.353v-.587ZM5.94 12.584c0 .37-.191.635-.497.635-.24 0-.408-.132-.408-.525v-1.66h-.764v1.85c0 .526.298.95.955.95.306 0 .509-.101.736-.43h.011v.354h.73v-2.724H5.94Zm-3.27 1.163.25.43h.89l-.47-.815c.426-.388.648-.958.648-1.525 0-1-.685-2.013-1.994-2.013S0 10.837 0 11.837s.685 2.014 1.994 2.014c.244 0 .472-.037.677-.104zm-1.808-1.91c0-.649.348-1.303 1.126-1.303.778 0 1.126.654 1.126 1.303 0 .28-.064.565-.202.792h-.89l.272.472a1.17 1.17 0 0 1-.306.04c-.778 0-1.126-.655-1.126-1.304z" }) + ] + } + ); +}); + +export { SiQuantcast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.cjs new file mode 100644 index 000000000..1fe3cb2ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F98309"; +const SiQuantconnect = React__namespace.forwardRef(function SiQuantconnect2({ title = "QuantConnect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.0673 16.6635a12.1084 12.1084 0 0 1-6.404 6.4046A12.0185 12.0185 0 0 1 12.0002 24v-2.7975a8.63 8.63 0 0 0 3.5454-.7466 9.4574 9.4574 0 0 0 2.9836-1.9273 11.3659 11.3659 0 0 0 1.9273-2.922 9.1472 9.1472 0 0 0 .7465-3.6064 8.6298 8.6298 0 0 0-.7465-3.5454 8.9285 8.9285 0 0 0-4.9109-4.9122 9.5282 9.5282 0 0 0-7.091 0 9.4798 9.4798 0 0 0-4.9108 4.9122A9.7584 9.7584 0 0 0 2.7977 12H.0003A12.0115 12.0115 0 0 1 .932 7.3375 12.093 12.093 0 0 1 7.336.9328a12.121 12.121 0 0 1 9.326 0 11.5066 11.5066 0 0 1 3.7923 2.609 11.4988 11.4988 0 0 1 2.613 3.7963 12.1232 12.1232 0 0 1 0 9.3254zM11.998 9.8868V7.0892a4.7884 4.7884 0 0 0-3.4826 1.4296 4.7089 4.7089 0 0 0-1.4911 3.482 4.609 4.609 0 0 0 1.4911 3.4779c1.8316 1.923 4.8752 1.9972 6.7983.1656a4.7631 4.7631 0 0 0 .1656-.1656 4.34 4.34 0 0 0 1.4296-3.4786h-2.7976a2.0583 2.0583 0 0 1-.6215 1.4918 2.0189 2.0189 0 0 1-1.4918.6221c-1.1653-.0051-2.1088-.9485-2.114-2.114a2.0199 2.0199 0 0 1 .6216-1.4917 2.0637 2.0637 0 0 1 1.4924-.6215zm5.972 8.0798a7.0439 7.0439 0 0 0 1.806-2.6759 7.4712 7.4712 0 0 0 .6838-3.2953 7.655 7.655 0 0 0-.6837-3.2953 8.453 8.453 0 0 0-4.4767-4.4767 7.4678 7.4678 0 0 0-3.2953-.6836v2.7976a5.3066 5.3066 0 0 1 3.979 1.6784 5.4031 5.4031 0 0 1 1.6784 3.979c-.0338 3.1246-2.5943 5.6303-5.719 5.5964-3.077-.0333-5.5632-2.5195-5.5965-5.5964H3.5484a8.4 8.4 0 0 0 .616 3.298 9.2912 9.2912 0 0 0 4.5397 4.5381 9.0414 9.0414 0 0 0 6.59 0 7.9963 7.9963 0 0 0 2.6758-1.8643z" }) + ] + } + ); +}); + +exports.default = SiQuantconnect; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.d.ts new file mode 100644 index 000000000..64ad5fccf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F98309"; +declare const SiQuantconnect: IconType; +export { SiQuantconnect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.mjs new file mode 100644 index 000000000..9361c8a9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuantconnect.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F98309"; +const SiQuantconnect = React.forwardRef(function SiQuantconnect2({ title = "QuantConnect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.0673 16.6635a12.1084 12.1084 0 0 1-6.404 6.4046A12.0185 12.0185 0 0 1 12.0002 24v-2.7975a8.63 8.63 0 0 0 3.5454-.7466 9.4574 9.4574 0 0 0 2.9836-1.9273 11.3659 11.3659 0 0 0 1.9273-2.922 9.1472 9.1472 0 0 0 .7465-3.6064 8.6298 8.6298 0 0 0-.7465-3.5454 8.9285 8.9285 0 0 0-4.9109-4.9122 9.5282 9.5282 0 0 0-7.091 0 9.4798 9.4798 0 0 0-4.9108 4.9122A9.7584 9.7584 0 0 0 2.7977 12H.0003A12.0115 12.0115 0 0 1 .932 7.3375 12.093 12.093 0 0 1 7.336.9328a12.121 12.121 0 0 1 9.326 0 11.5066 11.5066 0 0 1 3.7923 2.609 11.4988 11.4988 0 0 1 2.613 3.7963 12.1232 12.1232 0 0 1 0 9.3254zM11.998 9.8868V7.0892a4.7884 4.7884 0 0 0-3.4826 1.4296 4.7089 4.7089 0 0 0-1.4911 3.482 4.609 4.609 0 0 0 1.4911 3.4779c1.8316 1.923 4.8752 1.9972 6.7983.1656a4.7631 4.7631 0 0 0 .1656-.1656 4.34 4.34 0 0 0 1.4296-3.4786h-2.7976a2.0583 2.0583 0 0 1-.6215 1.4918 2.0189 2.0189 0 0 1-1.4918.6221c-1.1653-.0051-2.1088-.9485-2.114-2.114a2.0199 2.0199 0 0 1 .6216-1.4917 2.0637 2.0637 0 0 1 1.4924-.6215zm5.972 8.0798a7.0439 7.0439 0 0 0 1.806-2.6759 7.4712 7.4712 0 0 0 .6838-3.2953 7.655 7.655 0 0 0-.6837-3.2953 8.453 8.453 0 0 0-4.4767-4.4767 7.4678 7.4678 0 0 0-3.2953-.6836v2.7976a5.3066 5.3066 0 0 1 3.979 1.6784 5.4031 5.4031 0 0 1 1.6784 3.979c-.0338 3.1246-2.5943 5.6303-5.719 5.5964-3.077-.0333-5.5632-2.5195-5.5965-5.5964H3.5484a8.4 8.4 0 0 0 .616 3.298 9.2912 9.2912 0 0 0 4.5397 4.5381 9.0414 9.0414 0 0 0 6.59 0 7.9963 7.9963 0 0 0 2.6758-1.8643z" }) + ] + } + ); +}); + +export { SiQuantconnect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.cjs new file mode 100644 index 000000000..e215a4259 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4695EB"; +const SiQuarkus = React__namespace.forwardRef(function SiQuarkus2({ title = "Quarkus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.981 0A3.993 3.993 0 0 0 0 3.981V20.02A3.993 3.993 0 0 0 3.981 24h10.983L12 16.8l-2.15 4.546H3.98c-.72 0-1.327-.608-1.327-1.327V3.98c0-.72.608-1.327 1.327-1.327h16.04c.72 0 1.327.608 1.327 1.327v16.04c0 .72-.608 1.327-1.327 1.327h-3.48L17.63 24h2.388A3.993 3.993 0 0 0 24 20.019V3.98A3.993 3.993 0 0 0 20.019 0zm4.324 4.217v3.858l3.341-1.93zm7.39 0l-3.341 1.929 3.34 1.929zM12 6.35L8.305 8.483 12 10.617l3.695-2.134zM8.104 8.832v4.266l3.695 2.133v-4.266zm7.792 0L12.2 10.965v4.266l3.695-2.133zm-8.146.204l-3.34 1.93 3.34 1.928zm8.5 0v3.858l3.34-1.929zm-8.146 4.47v3.859l3.341-1.93zm7.792 0l-3.341 1.93 3.34 1.929z" }) + ] + } + ); +}); + +exports.default = SiQuarkus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.d.ts new file mode 100644 index 000000000..598773538 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4695EB"; +declare const SiQuarkus: IconType; +export { SiQuarkus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.mjs new file mode 100644 index 000000000..e071f26bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarkus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4695EB"; +const SiQuarkus = React.forwardRef(function SiQuarkus2({ title = "Quarkus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.981 0A3.993 3.993 0 0 0 0 3.981V20.02A3.993 3.993 0 0 0 3.981 24h10.983L12 16.8l-2.15 4.546H3.98c-.72 0-1.327-.608-1.327-1.327V3.98c0-.72.608-1.327 1.327-1.327h16.04c.72 0 1.327.608 1.327 1.327v16.04c0 .72-.608 1.327-1.327 1.327h-3.48L17.63 24h2.388A3.993 3.993 0 0 0 24 20.019V3.98A3.993 3.993 0 0 0 20.019 0zm4.324 4.217v3.858l3.341-1.93zm7.39 0l-3.341 1.929 3.34 1.929zM12 6.35L8.305 8.483 12 10.617l3.695-2.134zM8.104 8.832v4.266l3.695 2.133v-4.266zm7.792 0L12.2 10.965v4.266l3.695-2.133zm-8.146.204l-3.34 1.93 3.34 1.928zm8.5 0v3.858l3.34-1.929zm-8.146 4.47v3.859l3.341-1.93zm7.792 0l-3.341 1.93 3.34 1.929z" }) + ] + } + ); +}); + +export { SiQuarkus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.cjs new file mode 100644 index 000000000..b4e16f90d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#39729E"; +const SiQuarto = React__namespace.forwardRef(function SiQuarto2({ title = "Quarto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.65 12.854V24c6.042-.325 10.923-5.105 11.33-11.125H12.65Zm-1.504 0H.02c.427 5.94 5.166 10.699 11.105 11.105V12.854Zm1.505-1.505H24C23.675 5.247 18.753.325 12.65 0Zm-1.505 0V0C5.106.427.326 5.308 0 11.35Z" }) + ] + } + ); +}); + +exports.default = SiQuarto; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.d.ts new file mode 100644 index 000000000..2585dda18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#39729E"; +declare const SiQuarto: IconType; +export { SiQuarto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.mjs new file mode 100644 index 000000000..737c618f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuarto.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#39729E"; +const SiQuarto = React.forwardRef(function SiQuarto2({ title = "Quarto", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.65 12.854V24c6.042-.325 10.923-5.105 11.33-11.125H12.65Zm-1.504 0H.02c.427 5.94 5.166 10.699 11.105 11.105V12.854Zm1.505-1.505H24C23.675 5.247 18.753.325 12.65 0Zm-1.505 0V0C5.106.427.326 5.308 0 11.35Z" }) + ] + } + ); +}); + +export { SiQuarto as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.cjs new file mode 100644 index 000000000..06fa347fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#050A14"; +const SiQuasar = React__namespace.forwardRef(function SiQuasar2({ title = "Quasar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.7427 11.9996c0 .9622-.78 1.7421-1.742 1.7421s-1.7422-.78-1.7422-1.742c0-.9622.78-1.7421 1.7421-1.7421.962 0 1.742.7799 1.742 1.742zm5.585-1.65 1.2674-.7318a8.9288 8.9288 0 0 0-.8615-2.0836 8.9295 8.9295 0 0 0-1.3684-1.789l-2.014 1.1628a6.7085 6.7085 0 0 0-2.1027-1.2187c-.6876.697-1.2337 1.4754-1.6275 2.3222 2.2419-.1526 4.5572.6588 6.7066 2.3382zm-9.5618 8.8206v1.4635a8.9313 8.9313 0 0 0 2.2351.2957 8.9343 8.9343 0 0 0 2.2337-.2905v-2.3255a6.7085 6.7085 0 0 0 2.1067-1.2117c-.2597-.9439-.6609-1.8062-1.1973-2.5706-.9888 2.0179-2.8492 3.6173-5.3782 4.639zM5.4117 13.208c.9472.247 1.8946.3307 2.8248.2483-1.2531-1.8653-1.708-4.276-1.3285-6.9773l-1.2675-.7318a8.9239 8.9239 0 0 0-1.3738 1.788 8.9294 8.9294 0 0 0-.865 2.0796l2.014 1.1628a6.7071 6.7071 0 0 0-.0041 2.4304zm13.1736.0135a6.7081 6.7081 0 0 0 .004-2.4303c-.9471-.2471-1.8945-.3309-2.8247-.2484 1.253 1.8652 1.708 4.276 1.3284 6.9772l1.2674.732a8.9282 8.9282 0 0 0 1.3738-1.788 8.929 8.929 0 0 0 .8651-2.0797l-2.014-1.1628zm-13.912.428-1.2674.7319c.198.728.4874 1.4281.8615 2.0835a8.9318 8.9318 0 0 0 1.3684 1.789l2.014-1.1628A6.7095 6.7095 0 0 0 9.7524 18.31c.6876-.6968 1.2338-1.4754 1.6274-2.3222-2.2418.1526-4.5571-.6587-6.7066-2.338zm9.5619-8.8205V3.3655A8.9337 8.9337 0 0 0 12 3.0698a8.934 8.934 0 0 0-2.2336.2906V5.686a6.7085 6.7085 0 0 0-2.1068 1.2117c.2597.9439.6608 1.8061 1.1973 2.5705.9889-2.0177 2.8492-3.6171 5.3783-4.639zM24 12c0 6.6274-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0s12 5.3726 12 12zm-1.535 0c0-5.7704-4.6946-10.465-10.465-10.465S1.535 6.2296 1.535 12 6.2296 22.4649 12 22.4649 22.465 17.7704 22.465 12z" }) + ] + } + ); +}); + +exports.default = SiQuasar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.d.ts new file mode 100644 index 000000000..580b624a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#050A14"; +declare const SiQuasar: IconType; +export { SiQuasar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.mjs new file mode 100644 index 000000000..5135916ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuasar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#050A14"; +const SiQuasar = React.forwardRef(function SiQuasar2({ title = "Quasar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.7427 11.9996c0 .9622-.78 1.7421-1.742 1.7421s-1.7422-.78-1.7422-1.742c0-.9622.78-1.7421 1.7421-1.7421.962 0 1.742.7799 1.742 1.742zm5.585-1.65 1.2674-.7318a8.9288 8.9288 0 0 0-.8615-2.0836 8.9295 8.9295 0 0 0-1.3684-1.789l-2.014 1.1628a6.7085 6.7085 0 0 0-2.1027-1.2187c-.6876.697-1.2337 1.4754-1.6275 2.3222 2.2419-.1526 4.5572.6588 6.7066 2.3382zm-9.5618 8.8206v1.4635a8.9313 8.9313 0 0 0 2.2351.2957 8.9343 8.9343 0 0 0 2.2337-.2905v-2.3255a6.7085 6.7085 0 0 0 2.1067-1.2117c-.2597-.9439-.6609-1.8062-1.1973-2.5706-.9888 2.0179-2.8492 3.6173-5.3782 4.639zM5.4117 13.208c.9472.247 1.8946.3307 2.8248.2483-1.2531-1.8653-1.708-4.276-1.3285-6.9773l-1.2675-.7318a8.9239 8.9239 0 0 0-1.3738 1.788 8.9294 8.9294 0 0 0-.865 2.0796l2.014 1.1628a6.7071 6.7071 0 0 0-.0041 2.4304zm13.1736.0135a6.7081 6.7081 0 0 0 .004-2.4303c-.9471-.2471-1.8945-.3309-2.8247-.2484 1.253 1.8652 1.708 4.276 1.3284 6.9772l1.2674.732a8.9282 8.9282 0 0 0 1.3738-1.788 8.929 8.929 0 0 0 .8651-2.0797l-2.014-1.1628zm-13.912.428-1.2674.7319c.198.728.4874 1.4281.8615 2.0835a8.9318 8.9318 0 0 0 1.3684 1.789l2.014-1.1628A6.7095 6.7095 0 0 0 9.7524 18.31c.6876-.6968 1.2338-1.4754 1.6274-2.3222-2.2418.1526-4.5571-.6587-6.7066-2.338zm9.5619-8.8205V3.3655A8.9337 8.9337 0 0 0 12 3.0698a8.934 8.934 0 0 0-2.2336.2906V5.686a6.7085 6.7085 0 0 0-2.1068 1.2117c.2597.9439.6608 1.8061 1.1973 2.5705.9889-2.0177 2.8492-3.6171 5.3783-4.639zM24 12c0 6.6274-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0s12 5.3726 12 12zm-1.535 0c0-5.7704-4.6946-10.465-10.465-10.465S1.535 6.2296 1.535 12 6.2296 22.4649 12 22.4649 22.465 17.7704 22.465 12z" }) + ] + } + ); +}); + +export { SiQuasar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.cjs new file mode 100644 index 000000000..b9fada265 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3874D8"; +const SiQubesos = React__namespace.forwardRef(function SiQubesos2({ title = "Qubes OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.893 20.79l-2.289-1.332 1.547-.895a2.402 2.402 0 0 0 1.2-2.08V7.098l-.003-.059a2.402 2.402 0 0 0-1.198-2.027l-3.899-2.255-4.21-2.436a2.473 2.473 0 0 0-.237-.118L12.77.187l-.093-.036-.052-.019c-.028-.01-.057-.018-.085-.027l-.062-.019-.079-.02-.072-.017-.073-.013-.079-.013-.068-.008-.087-.008-.063-.004A10.324 10.324 0 0 0 11.9 0h-.03l-.082.001-.076.002-.093.007-.064.006c-.037.004-.073.01-.11.016-.014.004-.029.006-.044.009a3.266 3.266 0 0 0-.154.034 2.39 2.39 0 0 0-.602.245L5.536 3.277l-3 1.736a2.407 2.407 0 0 0-1.201 2.083v9.385a2.405 2.405 0 0 0 1.2 2.08l8.108 4.693a2.395 2.395 0 0 0 2.4.002l1.804-1.044 2.302 1.339c1.03.599 2.687.599 3.716 0l1.03-.6c1.027-.597 1.027-1.562-.002-2.161zm-10.71-2.695l-4.46-2.583a1.324 1.324 0 0 1-.66-1.143V9.206c0-.236.063-.464.177-.662l.002.001c.116-.2.282-.368.482-.485l4.459-2.58c.092-.053.189-.093.289-.122l.034-.01c.035-.01.07-.015.105-.022.023-.004.045-.01.068-.013.031-.004.062-.004.093-.006.028 0 .055-.004.083-.004.036 0 .073.004.11.007.02.002.038.002.058.005.037.005.074.014.11.022.018.004.037.007.055.012.04.011.077.025.115.04l.045.015c.052.022.104.047.154.076l4.46 2.58c.198.116.364.283.48.483l.002.003-.003.002c.116.201.177.43.177.661v5.161c0 .15-.028.295-.076.433a1.32 1.32 0 0 1-.583.71l-4.46 2.582a1.312 1.312 0 0 1-1.316 0z" }) + ] + } + ); +}); + +exports.default = SiQubesos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.d.ts new file mode 100644 index 000000000..df13fb0f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3874D8"; +declare const SiQubesos: IconType; +export { SiQubesos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.mjs new file mode 100644 index 000000000..9c1b6e35c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQubesos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3874D8"; +const SiQubesos = React.forwardRef(function SiQubesos2({ title = "Qubes OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.893 20.79l-2.289-1.332 1.547-.895a2.402 2.402 0 0 0 1.2-2.08V7.098l-.003-.059a2.402 2.402 0 0 0-1.198-2.027l-3.899-2.255-4.21-2.436a2.473 2.473 0 0 0-.237-.118L12.77.187l-.093-.036-.052-.019c-.028-.01-.057-.018-.085-.027l-.062-.019-.079-.02-.072-.017-.073-.013-.079-.013-.068-.008-.087-.008-.063-.004A10.324 10.324 0 0 0 11.9 0h-.03l-.082.001-.076.002-.093.007-.064.006c-.037.004-.073.01-.11.016-.014.004-.029.006-.044.009a3.266 3.266 0 0 0-.154.034 2.39 2.39 0 0 0-.602.245L5.536 3.277l-3 1.736a2.407 2.407 0 0 0-1.201 2.083v9.385a2.405 2.405 0 0 0 1.2 2.08l8.108 4.693a2.395 2.395 0 0 0 2.4.002l1.804-1.044 2.302 1.339c1.03.599 2.687.599 3.716 0l1.03-.6c1.027-.597 1.027-1.562-.002-2.161zm-10.71-2.695l-4.46-2.583a1.324 1.324 0 0 1-.66-1.143V9.206c0-.236.063-.464.177-.662l.002.001c.116-.2.282-.368.482-.485l4.459-2.58c.092-.053.189-.093.289-.122l.034-.01c.035-.01.07-.015.105-.022.023-.004.045-.01.068-.013.031-.004.062-.004.093-.006.028 0 .055-.004.083-.004.036 0 .073.004.11.007.02.002.038.002.058.005.037.005.074.014.11.022.018.004.037.007.055.012.04.011.077.025.115.04l.045.015c.052.022.104.047.154.076l4.46 2.58c.198.116.364.283.48.483l.002.003-.003.002c.116.201.177.43.177.661v5.161c0 .15-.028.295-.076.433a1.32 1.32 0 0 1-.583.71l-4.46 2.582a1.312 1.312 0 0 1-1.316 0z" }) + ] + } + ); +}); + +export { SiQubesos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.cjs new file mode 100644 index 000000000..2d83859f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB4F14"; +const SiQuest = React__namespace.forwardRef(function SiQuest2({ title = "Quest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.284 8.755c-.055 0-.11 0-.166.002-.096 0-.2.01-.296.029a3.225 3.225 0 0 0-2.82 3.325 3.243 3.243 0 0 0 3.354 3.115 3.211 3.211 0 0 0 1.79-.629l-.495-.362a.173.173 0 0 0-.19-.01c-.381.22-.82.334-1.296.324C1.86 14.521.784 13.463.717 12.16a2.519 2.519 0 0 1 2.744-2.62 2.518 2.518 0 0 1 2.276 2.324 2.525 2.525 0 0 1-.428 1.59.18.18 0 0 0 .038.249l.42.304c.485-.61.733-1.352.704-2.133a3.244 3.244 0 0 0-3.187-3.118zm2.482 5.251s-.095.124-.286.305c-.19.181-.343.296-.343.296l.553.41a.2.2 0 0 0 .229 0 3.338 3.338 0 0 0 .381-.372.177.177 0 0 0-.03-.267zm17.586-4.572c-.038 0-.076 0-.105.028a.198.198 0 0 0-.095.058.208.208 0 0 0-.067.085c-.01.029-.019.067-.028.105 0 .038 0 .076.019.114a.345.345 0 0 0 .067.096c.028.019.057.047.095.057.038.01.076.019.114.019.038 0 .076-.01.114-.02a.198.198 0 0 0 .096-.056c.019-.029.047-.058.057-.096a.479.479 0 0 0 .019-.114.412.412 0 0 0-.02-.114.225.225 0 0 0-.056-.086.903.903 0 0 0-.096-.057.477.477 0 0 0-.114-.02zm-2.124.01v1.295h-.277c-.114 0-.2.095-.2.2v.41h.477v2.276c0 1.086.552 1.601 1.486 1.601A2.08 2.08 0 0 0 24 14.797l-.22-.352a.186.186 0 0 0-.247-.067c-.228.124-.486.21-.762.21-.505 0-.857-.296-.857-.972v-2.267h1.152a.17.17 0 0 0 .172-.172v-.438h-1.334V9.624a.18.18 0 0 0-.18-.18zm2.124.037c.038 0 .067.01.095.02a.2.2 0 0 1 .077.047.203.203 0 0 1 .047.076c.01.029.02.057.02.096a.34.34 0 0 1-.02.095.207.207 0 0 1-.047.076.208.208 0 0 1-.077.048.338.338 0 0 1-.095.019.282.282 0 0 1-.095-.02.208.208 0 0 1-.076-.047.208.208 0 0 1-.048-.076c-.01-.038-.01-.067-.02-.095 0-.039.01-.067.02-.096a.207.207 0 0 1 .048-.076.208.208 0 0 1 .076-.048.282.282 0 0 1 .095-.019zm-.124.067v.333h.048V9.74h.057l.095.142h.058l-.096-.142a.464.464 0 0 0 .067-.029.087.087 0 0 0 .029-.067c0-.038-.01-.057-.03-.076a.19.19 0 0 0-.085-.019zm.067.038h.095s.01.01.02.01l.018.019c.01.01.01.019.01.028 0 .01 0 .02-.01.029 0 .01-.01.019-.019.019-.01.01-.019.01-.028.01h-.029v-.01h-.057zm-9.25 1.143c-1.23 0-2.144.924-2.144 2.249 0 1.343.915 2.248 2.191 2.248.639 0 1.239-.162 1.782-.677l-.257-.323a.177.177 0 0 0-.239-.029 1.99 1.99 0 0 1-1.248.438c-.78 0-1.438-.476-1.533-1.41h3.286a.19.19 0 0 0 .19-.19v-.067c-.009-1.315-.856-2.23-2.028-2.239zm-6.602.01a.18.18 0 0 0-.181.18v2.43c0 1.286.914 1.896 1.962 1.896 1.039 0 1.963-.61 1.963-1.896V10.91a.17.17 0 0 0-.172-.171h-.505v2.544c0 .895-.533 1.314-1.276 1.314s-1.286-.419-1.286-1.314v-2.544zm11.032 0c-1.039 0-1.725.495-1.725 1.315 0 .647.457 1.086 1.43 1.2l.514.057c.61.067.905.286.905.629 0 .457-.458.695-1.191.695-.62 0-1.02-.152-1.334-.352a.2.2 0 0 0-.276.066l-.21.334c.543.419 1.239.552 1.8.552 1.163 0 1.906-.523 1.906-1.343 0-.714-.533-1.095-1.448-1.21l-.514-.066c-.572-.067-.886-.248-.886-.61 0-.42.4-.676 1.019-.676.495 0 .962.152 1.267.314.086.047.19.019.238-.067l.134-.21a.184.184 0 0 0-.067-.247 3.263 3.263 0 0 0-1.562-.381zm-4.44.6c.734 0 1.267.524 1.353 1.334h-2.782c.105-.781.629-1.334 1.43-1.334z" }) + ] + } + ); +}); + +exports.default = SiQuest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.d.ts new file mode 100644 index 000000000..dea9b194e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB4F14"; +declare const SiQuest: IconType; +export { SiQuest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.mjs new file mode 100644 index 000000000..79c27e9cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB4F14"; +const SiQuest = React.forwardRef(function SiQuest2({ title = "Quest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.284 8.755c-.055 0-.11 0-.166.002-.096 0-.2.01-.296.029a3.225 3.225 0 0 0-2.82 3.325 3.243 3.243 0 0 0 3.354 3.115 3.211 3.211 0 0 0 1.79-.629l-.495-.362a.173.173 0 0 0-.19-.01c-.381.22-.82.334-1.296.324C1.86 14.521.784 13.463.717 12.16a2.519 2.519 0 0 1 2.744-2.62 2.518 2.518 0 0 1 2.276 2.324 2.525 2.525 0 0 1-.428 1.59.18.18 0 0 0 .038.249l.42.304c.485-.61.733-1.352.704-2.133a3.244 3.244 0 0 0-3.187-3.118zm2.482 5.251s-.095.124-.286.305c-.19.181-.343.296-.343.296l.553.41a.2.2 0 0 0 .229 0 3.338 3.338 0 0 0 .381-.372.177.177 0 0 0-.03-.267zm17.586-4.572c-.038 0-.076 0-.105.028a.198.198 0 0 0-.095.058.208.208 0 0 0-.067.085c-.01.029-.019.067-.028.105 0 .038 0 .076.019.114a.345.345 0 0 0 .067.096c.028.019.057.047.095.057.038.01.076.019.114.019.038 0 .076-.01.114-.02a.198.198 0 0 0 .096-.056c.019-.029.047-.058.057-.096a.479.479 0 0 0 .019-.114.412.412 0 0 0-.02-.114.225.225 0 0 0-.056-.086.903.903 0 0 0-.096-.057.477.477 0 0 0-.114-.02zm-2.124.01v1.295h-.277c-.114 0-.2.095-.2.2v.41h.477v2.276c0 1.086.552 1.601 1.486 1.601A2.08 2.08 0 0 0 24 14.797l-.22-.352a.186.186 0 0 0-.247-.067c-.228.124-.486.21-.762.21-.505 0-.857-.296-.857-.972v-2.267h1.152a.17.17 0 0 0 .172-.172v-.438h-1.334V9.624a.18.18 0 0 0-.18-.18zm2.124.037c.038 0 .067.01.095.02a.2.2 0 0 1 .077.047.203.203 0 0 1 .047.076c.01.029.02.057.02.096a.34.34 0 0 1-.02.095.207.207 0 0 1-.047.076.208.208 0 0 1-.077.048.338.338 0 0 1-.095.019.282.282 0 0 1-.095-.02.208.208 0 0 1-.076-.047.208.208 0 0 1-.048-.076c-.01-.038-.01-.067-.02-.095 0-.039.01-.067.02-.096a.207.207 0 0 1 .048-.076.208.208 0 0 1 .076-.048.282.282 0 0 1 .095-.019zm-.124.067v.333h.048V9.74h.057l.095.142h.058l-.096-.142a.464.464 0 0 0 .067-.029.087.087 0 0 0 .029-.067c0-.038-.01-.057-.03-.076a.19.19 0 0 0-.085-.019zm.067.038h.095s.01.01.02.01l.018.019c.01.01.01.019.01.028 0 .01 0 .02-.01.029 0 .01-.01.019-.019.019-.01.01-.019.01-.028.01h-.029v-.01h-.057zm-9.25 1.143c-1.23 0-2.144.924-2.144 2.249 0 1.343.915 2.248 2.191 2.248.639 0 1.239-.162 1.782-.677l-.257-.323a.177.177 0 0 0-.239-.029 1.99 1.99 0 0 1-1.248.438c-.78 0-1.438-.476-1.533-1.41h3.286a.19.19 0 0 0 .19-.19v-.067c-.009-1.315-.856-2.23-2.028-2.239zm-6.602.01a.18.18 0 0 0-.181.18v2.43c0 1.286.914 1.896 1.962 1.896 1.039 0 1.963-.61 1.963-1.896V10.91a.17.17 0 0 0-.172-.171h-.505v2.544c0 .895-.533 1.314-1.276 1.314s-1.286-.419-1.286-1.314v-2.544zm11.032 0c-1.039 0-1.725.495-1.725 1.315 0 .647.457 1.086 1.43 1.2l.514.057c.61.067.905.286.905.629 0 .457-.458.695-1.191.695-.62 0-1.02-.152-1.334-.352a.2.2 0 0 0-.276.066l-.21.334c.543.419 1.239.552 1.8.552 1.163 0 1.906-.523 1.906-1.343 0-.714-.533-1.095-1.448-1.21l-.514-.066c-.572-.067-.886-.248-.886-.61 0-.42.4-.676 1.019-.676.495 0 .962.152 1.267.314.086.047.19.019.238-.067l.134-.21a.184.184 0 0 0-.067-.247 3.263 3.263 0 0 0-1.562-.381zm-4.44.6c.734 0 1.267.524 1.353 1.334h-2.782c.105-.781.629-1.334 1.43-1.334z" }) + ] + } + ); +}); + +export { SiQuest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.cjs new file mode 100644 index 000000000..681bdb31f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2CA01C"; +const SiQuickbooks = React__namespace.forwardRef(function SiQuickbooks2({ title = "QuickBooks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm.642 4.1335c.9554 0 1.7296.776 1.7296 1.7332v9.0667h1.6c1.614 0 2.9275-1.3156 2.9275-2.933 0-1.6173-1.3136-2.9333-2.9276-2.9333h-.6654V7.3334h.6654c2.5722 0 4.6577 2.0897 4.6577 4.667 0 2.5774-2.0855 4.6666-4.6577 4.6666H12.642zM7.9837 7.333h3.3291v12.533c-.9555 0-1.73-.7759-1.73-1.7332V9.0662H7.9837c-1.6146 0-2.9277 1.316-2.9277 2.9334 0 1.6175 1.3131 2.9333 2.9277 2.9333h.6654v1.7332h-.6654c-2.5725 0-4.6577-2.0892-4.6577-4.6665 0-2.5771 2.0852-4.6666 4.6577-4.6666Z" }) + ] + } + ); +}); + +exports.default = SiQuickbooks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.d.ts new file mode 100644 index 000000000..6453ee593 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2CA01C"; +declare const SiQuickbooks: IconType; +export { SiQuickbooks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.mjs new file mode 100644 index 000000000..a05cdcfdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuickbooks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2CA01C"; +const SiQuickbooks = React.forwardRef(function SiQuickbooks2({ title = "QuickBooks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm.642 4.1335c.9554 0 1.7296.776 1.7296 1.7332v9.0667h1.6c1.614 0 2.9275-1.3156 2.9275-2.933 0-1.6173-1.3136-2.9333-2.9276-2.9333h-.6654V7.3334h.6654c2.5722 0 4.6577 2.0897 4.6577 4.667 0 2.5774-2.0855 4.6666-4.6577 4.6666H12.642zM7.9837 7.333h3.3291v12.533c-.9555 0-1.73-.7759-1.73-1.7332V9.0662H7.9837c-1.6146 0-2.9277 1.316-2.9277 2.9334 0 1.6175 1.3131 2.9333 2.9277 2.9333h.6654v1.7332h-.6654c-2.5725 0-4.6577-2.0892-4.6577-4.6665 0-2.5771 2.0852-4.6666 4.6577-4.6666Z" }) + ] + } + ); +}); + +export { SiQuickbooks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.cjs new file mode 100644 index 000000000..28fa2eee4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0078D3"; +const SiQuicklook = React__namespace.forwardRef(function SiQuicklook2({ title = "QuickLook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22.682 19.189-.002-.002-3.07-3.068a7.027 7.027 0 0 0 1.332-4.12 7.068 7.068 0 0 0-7.068-7.067V1.037A1.04 1.04 0 0 0 12.653.016L1.67 1.965a.832.832 0 0 0-.687.818v18.434c0 .403.29.748.687.818l10.982 1.949a1.04 1.04 0 0 0 1.22-1.022v-3.894a7.027 7.027 0 0 0 4.12-1.332l3.069 3.07c.446.446 1.17.447 1.617 0h.001c.447-.447.448-1.17.002-1.617zm-8.808-.62a6.576 6.576 0 0 1-6.569-6.57 6.576 6.576 0 0 1 6.569-6.567A6.576 6.576 0 0 1 20.442 12a6.576 6.576 0 0 1-6.568 6.568zm5.28-6.57a5.287 5.287 0 0 1-5.28 5.282c-2.913 0-5.282-2.369-5.282-5.28s2.37-5.282 5.282-5.282a5.287 5.287 0 0 1 5.28 5.28z" }) + ] + } + ); +}); + +exports.default = SiQuicklook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.d.ts new file mode 100644 index 000000000..1c247a140 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0078D3"; +declare const SiQuicklook: IconType; +export { SiQuicklook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.mjs new file mode 100644 index 000000000..b350b7845 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicklook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0078D3"; +const SiQuicklook = React.forwardRef(function SiQuicklook2({ title = "QuickLook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m22.682 19.189-.002-.002-3.07-3.068a7.027 7.027 0 0 0 1.332-4.12 7.068 7.068 0 0 0-7.068-7.067V1.037A1.04 1.04 0 0 0 12.653.016L1.67 1.965a.832.832 0 0 0-.687.818v18.434c0 .403.29.748.687.818l10.982 1.949a1.04 1.04 0 0 0 1.22-1.022v-3.894a7.027 7.027 0 0 0 4.12-1.332l3.069 3.07c.446.446 1.17.447 1.617 0h.001c.447-.447.448-1.17.002-1.617zm-8.808-.62a6.576 6.576 0 0 1-6.569-6.57 6.576 6.576 0 0 1 6.569-6.567A6.576 6.576 0 0 1 20.442 12a6.576 6.576 0 0 1-6.568 6.568zm5.28-6.57a5.287 5.287 0 0 1-5.28 5.282c-2.913 0-5.282-2.369-5.282-5.28s2.37-5.282 5.282-5.282a5.287 5.287 0 0 1 5.28 5.28z" }) + ] + } + ); +}); + +export { SiQuicklook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.cjs new file mode 100644 index 000000000..c8c5ce45c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C69F0"; +const SiQuicktime = React__namespace.forwardRef(function SiQuicktime2({ title = "QuickTime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002 0a11.998 12 0 106.629 22l1.98 1.97h3.139l.25-.25v-3.15l-2-1.98A11.938 11.94 0 0024 12 11.998 12 0 0012.002 0m0 4.2a7.799 7.8 0 016.949 11.33l-5.25-5.26a2.404 2.404 0 10-3.4 3.4l5.27 5.26a7.759 7.76 0 01-3.57.87 7.799 7.8 0 010-15.6z" }) + ] + } + ); +}); + +exports.default = SiQuicktime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.d.ts new file mode 100644 index 000000000..1214c5a7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C69F0"; +declare const SiQuicktime: IconType; +export { SiQuicktime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.mjs new file mode 100644 index 000000000..1eedac571 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C69F0"; +const SiQuicktime = React.forwardRef(function SiQuicktime2({ title = "QuickTime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002 0a11.998 12 0 106.629 22l1.98 1.97h3.139l.25-.25v-3.15l-2-1.98A11.938 11.94 0 0024 12 11.998 12 0 0012.002 0m0 4.2a7.799 7.8 0 016.949 11.33l-5.25-5.26a2.404 2.404 0 10-3.4 3.4l5.27 5.26a7.759 7.76 0 01-3.57.87 7.799 7.8 0 010-15.6z" }) + ] + } + ); +}); + +export { SiQuicktime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.cjs new file mode 100644 index 000000000..7f44cebf8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#159588"; +const SiQuicktype = React__namespace.forwardRef(function SiQuicktype2({ title = "quicktype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.226 14.393a2.9 2.9 0 0 0 .612-.804c.538-1.032.365-2.246.047-2.983-.614-1.422-2.041-2.225-3.683-2.225-1.497 0-2.427.64-2.868 1.048-.474.44-1.144 1.31-1.144 2.729 0 .601.096 1.136.288 1.603.253.616.795 1.486 2.053 1.914a4.965 4.965 0 0 0 1.609.249h4.145c.466 0 .71-.405.705-.717a.694.694 0 0 0-.705-.683l-.29.005c-.516.04-.96.157-1.332.35l.563-.486zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12Zm1.424-15.41a.852.852 0 0 0 0 1.705h5a.852.852 0 1 0 0-1.705zm1.662 6.259c0 .478.375.865.838.865a.852.852 0 0 0 .838-.865V11.55c0-.478-.375-.656-.838-.656-.463 0-.838.178-.838.656zm-4.951-1.763c-.321.84-1.063 1.323-1.943 1.323-.875 0-1.612-.468-1.928-1.323-.18-.486-.227-1.19.005-1.79a1.998 1.998 0 0 1 1.103-1.146c.254-.107.53-.16.83-.16 1.032 0 1.675.604 1.938 1.306a2.666 2.666 0 0 1-.005 1.79z" }) + ] + } + ); +}); + +exports.default = SiQuicktype; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.d.ts new file mode 100644 index 000000000..7b66fd3f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#159588"; +declare const SiQuicktype: IconType; +export { SiQuicktype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.mjs new file mode 100644 index 000000000..ecd68da2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuicktype.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#159588"; +const SiQuicktype = React.forwardRef(function SiQuicktype2({ title = "quicktype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.226 14.393a2.9 2.9 0 0 0 .612-.804c.538-1.032.365-2.246.047-2.983-.614-1.422-2.041-2.225-3.683-2.225-1.497 0-2.427.64-2.868 1.048-.474.44-1.144 1.31-1.144 2.729 0 .601.096 1.136.288 1.603.253.616.795 1.486 2.053 1.914a4.965 4.965 0 0 0 1.609.249h4.145c.466 0 .71-.405.705-.717a.694.694 0 0 0-.705-.683l-.29.005c-.516.04-.96.157-1.332.35l.563-.486zM12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12-5.373 12-12 12Zm1.424-15.41a.852.852 0 0 0 0 1.705h5a.852.852 0 1 0 0-1.705zm1.662 6.259c0 .478.375.865.838.865a.852.852 0 0 0 .838-.865V11.55c0-.478-.375-.656-.838-.656-.463 0-.838.178-.838.656zm-4.951-1.763c-.321.84-1.063 1.323-1.943 1.323-.875 0-1.612-.468-1.928-1.323-.18-.486-.227-1.19.005-1.79a1.998 1.998 0 0 1 1.103-1.146c.254-.107.53-.16.83-.16 1.032 0 1.675.604 1.938 1.306a2.666 2.666 0 0 1-.005 1.79z" }) + ] + } + ); +}); + +export { SiQuicktype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.cjs new file mode 100644 index 000000000..12a5de663 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4255FF"; +const SiQuizlet = React__namespace.forwardRef(function SiQuizlet2({ title = "Quizlet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.779.025a11.789 11.789 0 0 0-5.338.896A11.829 11.829 0 0 0 3.058 4.11 11.928 11.928 0 0 0 .427 14.363a11.92 11.92 0 0 0 2.3 4.921 11.842 11.842 0 0 0 4.24 3.378 11.783 11.783 0 0 0 10.533-.226.327.327 0 0 1 .331.018 9.136 9.136 0 0 0 5.197 1.545.332.332 0 0 0 .332-.332v-4.038a.334.334 0 0 0-.276-.331 4.732 4.732 0 0 1-1.106-.319.329.329 0 0 1-.191-.352.33.33 0 0 1 .05-.133 11.943 11.943 0 0 0 .772-11.871 11.87 11.87 0 0 0-4.042-4.628A11.793 11.793 0 0 0 12.765.018l.013.007h.001ZM4.843 11.898a7.24 7.24 0 0 1 1.205-4.005 7.18 7.18 0 0 1 3.215-2.657 7.133 7.133 0 0 1 7.815 1.558 7.239 7.239 0 0 1 1.555 7.854 7.202 7.202 0 0 1-2.643 3.234 7.147 7.147 0 0 1-9.049-.896 7.228 7.228 0 0 1-2.103-5.089l.005.001Z" }) + ] + } + ); +}); + +exports.default = SiQuizlet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.d.ts new file mode 100644 index 000000000..1614ac3cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4255FF"; +declare const SiQuizlet: IconType; +export { SiQuizlet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.mjs new file mode 100644 index 000000000..9c53f145f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuizlet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4255FF"; +const SiQuizlet = React.forwardRef(function SiQuizlet2({ title = "Quizlet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.779.025a11.789 11.789 0 0 0-5.338.896A11.829 11.829 0 0 0 3.058 4.11 11.928 11.928 0 0 0 .427 14.363a11.92 11.92 0 0 0 2.3 4.921 11.842 11.842 0 0 0 4.24 3.378 11.783 11.783 0 0 0 10.533-.226.327.327 0 0 1 .331.018 9.136 9.136 0 0 0 5.197 1.545.332.332 0 0 0 .332-.332v-4.038a.334.334 0 0 0-.276-.331 4.732 4.732 0 0 1-1.106-.319.329.329 0 0 1-.191-.352.33.33 0 0 1 .05-.133 11.943 11.943 0 0 0 .772-11.871 11.87 11.87 0 0 0-4.042-4.628A11.793 11.793 0 0 0 12.765.018l.013.007h.001ZM4.843 11.898a7.24 7.24 0 0 1 1.205-4.005 7.18 7.18 0 0 1 3.215-2.657 7.133 7.133 0 0 1 7.815 1.558 7.239 7.239 0 0 1 1.555 7.854 7.202 7.202 0 0 1-2.643 3.234 7.147 7.147 0 0 1-9.049-.896 7.228 7.228 0 0 1-2.103-5.089l.005.001Z" }) + ] + } + ); +}); + +export { SiQuizlet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.cjs new file mode 100644 index 000000000..c00b417cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B92B27"; +const SiQuora = React__namespace.forwardRef(function SiQuora2({ title = "Quora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.3799.9483A11.9628 11.9628 0 0 1 21.248 19.5397l2.4096 2.4225c.7322.7362.21 1.9905-.8272 1.9905l-10.7105.01a12.52 12.52 0 0 1-.304 0h-.02A11.9628 11.9628 0 0 1 7.3818.9503Zm7.3217 4.428a7.1717 7.1717 0 1 0-5.4873 13.2512 7.1717 7.1717 0 0 0 5.4883-13.2511Z" }) + ] + } + ); +}); + +exports.default = SiQuora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.d.ts new file mode 100644 index 000000000..94215a95e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B92B27"; +declare const SiQuora: IconType; +export { SiQuora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.mjs new file mode 100644 index 000000000..63839f270 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQuora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B92B27"; +const SiQuora = React.forwardRef(function SiQuora2({ title = "Quora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.3799.9483A11.9628 11.9628 0 0 1 21.248 19.5397l2.4096 2.4225c.7322.7362.21 1.9905-.8272 1.9905l-10.7105.01a12.52 12.52 0 0 1-.304 0h-.02A11.9628 11.9628 0 0 1 7.3818.9503Zm7.3217 4.428a7.1717 7.1717 0 1 0-5.4873 13.2512 7.1717 7.1717 0 0 0 5.4883-13.2511Z" }) + ] + } + ); +}); + +export { SiQuora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.cjs new file mode 100644 index 000000000..a8237f999 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#282B2F"; +const SiQwant = React__namespace.forwardRef(function SiQwant2({ title = "Qwant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.313 5.163c4.289 0 7.766 2.589 7.766 7.616 0 4.759-3.072 7.301-7.003 7.59 1.87 1.142 4.693 1.143 6.45-.348l.547.297-.615 3.074-.226.285c-3.118.918-5.947-.099-7.921-3.329-3.816-.37-6.765-2.9-6.765-7.568 0-5.03 3.477-7.617 7.766-7.617zm0 13.88c2.756 0 4.08-2.804 4.08-6.264 0-3.46-1.148-6.264-4.08-6.264-2.85 0-4.08 2.805-4.08 6.264 0 3.46 1.182 6.264 4.08 6.264zm8.719-16.319L18.734 0h.263l.703 2.725 2.754.71v.248l-2.754.71-.703 2.725h-.263l-.702-2.725-2.696-.695V3.42z" }) + ] + } + ); +}); + +exports.default = SiQwant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.d.ts new file mode 100644 index 000000000..f549dacb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#282B2F"; +declare const SiQwant: IconType; +export { SiQwant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.mjs new file mode 100644 index 000000000..e44bc93f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#282B2F"; +const SiQwant = React.forwardRef(function SiQwant2({ title = "Qwant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.313 5.163c4.289 0 7.766 2.589 7.766 7.616 0 4.759-3.072 7.301-7.003 7.59 1.87 1.142 4.693 1.143 6.45-.348l.547.297-.615 3.074-.226.285c-3.118.918-5.947-.099-7.921-3.329-3.816-.37-6.765-2.9-6.765-7.568 0-5.03 3.477-7.617 7.766-7.617zm0 13.88c2.756 0 4.08-2.804 4.08-6.264 0-3.46-1.148-6.264-4.08-6.264-2.85 0-4.08 2.805-4.08 6.264 0 3.46 1.182 6.264 4.08 6.264zm8.719-16.319L18.734 0h.263l.703 2.725 2.754.71v.248l-2.754.71-.703 2.725h-.263l-.702-2.725-2.696-.695V3.42z" }) + ] + } + ); +}); + +export { SiQwant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.cjs new file mode 100644 index 000000000..a9f56ddb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AC7EF4"; +const SiQwik = React__namespace.forwardRef(function SiQwik2({ title = "Qwik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.5469 0a2.957 2.957 0 0 0-2.5606 1.4785L.5332 9.1915a2.957 2.957 0 0 0 0 2.957l4.4531 7.7128A2.955 2.955 0 0 0 7.547 21.338H12l8.5938 2.6484c.2409.0742.4512-.1782.3359-.4023l-1.916-3.7227 4.4531-7.7129a2.957 2.957 0 0 0 0-2.957l-4.4531-7.7129A2.957 2.957 0 0 0 16.453 0zm0 .7656L17.7324 10.67l-1.8965 1.8985.5782 7.5332L6.2676 10.67l2.371-2.373z" }) + ] + } + ); +}); + +exports.default = SiQwik; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.d.ts new file mode 100644 index 000000000..e4527a79d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AC7EF4"; +declare const SiQwik: IconType; +export { SiQwik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.mjs new file mode 100644 index 000000000..450e5ca29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwik.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AC7EF4"; +const SiQwik = React.forwardRef(function SiQwik2({ title = "Qwik", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.5469 0a2.957 2.957 0 0 0-2.5606 1.4785L.5332 9.1915a2.957 2.957 0 0 0 0 2.957l4.4531 7.7128A2.955 2.955 0 0 0 7.547 21.338H12l8.5938 2.6484c.2409.0742.4512-.1782.3359-.4023l-1.916-3.7227 4.4531-7.7129a2.957 2.957 0 0 0 0-2.957l-4.4531-7.7129A2.957 2.957 0 0 0 16.453 0zm0 .7656L17.7324 10.67l-1.8965 1.8985.5782 7.5332L6.2676 10.67l2.371-2.373z" }) + ] + } + ); +}); + +export { SiQwik as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.cjs new file mode 100644 index 000000000..547d5a28d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5CD0E"; +const SiQwiklabs = React__namespace.forwardRef(function SiQwiklabs2({ title = "Qwiklabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.346 18.205A6.464 6.464 0 0 0 12 5.72a6.462 6.462 0 0 0-2.346 12.485.69.69 0 0 0 .961-.623v-5.4a1.385 1.385 0 1 1 2.77 0v5.4a.692.692 0 0 0 .961.623zm.809 5.558C20.252 22.378 24 17.718 24 12.182c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.536 3.748 10.196 8.845 11.581a.7.7 0 0 0 .049.013l.059.016.001-.002a1.385 1.385 0 0 0 .635-2.695 9.231 9.231 0 1 1 4.824-.001 1.385 1.385 0 0 0 .635 2.695l.001.002.059-.016.049-.013z" }) + ] + } + ); +}); + +exports.default = SiQwiklabs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.d.ts new file mode 100644 index 000000000..ba0bf25e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5CD0E"; +declare const SiQwiklabs: IconType; +export { SiQwiklabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.mjs new file mode 100644 index 000000000..530158de8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQwiklabs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5CD0E"; +const SiQwiklabs = React.forwardRef(function SiQwiklabs2({ title = "Qwiklabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.346 18.205A6.464 6.464 0 0 0 12 5.72a6.462 6.462 0 0 0-2.346 12.485.69.69 0 0 0 .961-.623v-5.4a1.385 1.385 0 1 1 2.77 0v5.4a.692.692 0 0 0 .961.623zm.809 5.558C20.252 22.378 24 17.718 24 12.182c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.536 3.748 10.196 8.845 11.581a.7.7 0 0 0 .049.013l.059.016.001-.002a1.385 1.385 0 0 0 .635-2.695 9.231 9.231 0 1 1 4.824-.001 1.385 1.385 0 0 0 .635 2.695l.001.002.059-.016.049-.013z" }) + ] + } + ); +}); + +export { SiQwiklabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.cjs new file mode 100644 index 000000000..090acd0f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FECE00"; +const SiQzone = React__namespace.forwardRef(function SiQzone2({ title = "Qzone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9868 9.2012c-.032-.099-.127-.223-.334-.258-.207-.036-7.352-1.4063-7.352-1.4063s-.105-.022-.198-.07c-.092-.047-.127-.167-.127-.167S12.4472.954 12.3491.7679c-.099-.187-.245-.238-.349-.238-.104 0-.251.051-.349.238C11.5531.954 8.0245 7.3 8.0245 7.3s-.035.12-.128.167c-.092.047-.197.07-.197.07S.5546 8.9071.3466 8.9421c-.208.036-.302.16-.333.258a.477.477 0 00.125.4491L5.5013 15.14s.072.08.119.172c.016.104.005.21.005.21s-1.1891 7.243-1.2201 7.451c-.031.208.075.369.159.4301.083.062.233.106.421.013.189-.093 6.813-3.2614 6.813-3.2614s.098-.044.201-.061c.103-.017.201.061.201.061s6.624 3.1684 6.813 3.2614c.188.094.338.049.421-.013a.463.463 0 00.159-.43c-.021-.14-.93-5.6778-.93-5.6778.876-.5401 1.4251-1.0392 1.8492-1.7473-2.5944.9692-6.0069 1.7173-9.4163 1.8663-.9152.041-2.4104.097-3.4735-.015-.6781-.071-1.1702-.144-1.2432-.438-.053-.2151.054-.4601.5451-.8312a2640.8625 2640.8625 0 012.8614-2.1553c1.2852-.9681 3.5595-2.4703 3.5595-2.7314 0-.285-2.1443-.781-4.0376-.781-1.9452 0-2.2753.132-2.8114.168-.488.034-.769.005-.804-.138-.06-.2481.183-.3891.588-.5682.7091-.314 1.8603-.594 1.9843-.626.194-.052 3.0824-.8051 5.6188-.5351 1.3181.14 3.2444.668 3.2444 1.2762 0 .342-1.7212 1.4942-3.2254 2.5973-1.1492.8431-2.2173 1.5612-2.2173 1.6883 0 .342 3.5334 1.2411 6.6899 1.01l.003-.022c.048-.092.119-.172.119-.172l5.3627-5.4907a.477.477 0 00.127-.449z" }) + ] + } + ); +}); + +exports.default = SiQzone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.d.ts new file mode 100644 index 000000000..05b41a2a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FECE00"; +declare const SiQzone: IconType; +export { SiQzone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.mjs new file mode 100644 index 000000000..776f65ac3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiQzone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FECE00"; +const SiQzone = React.forwardRef(function SiQzone2({ title = "Qzone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9868 9.2012c-.032-.099-.127-.223-.334-.258-.207-.036-7.352-1.4063-7.352-1.4063s-.105-.022-.198-.07c-.092-.047-.127-.167-.127-.167S12.4472.954 12.3491.7679c-.099-.187-.245-.238-.349-.238-.104 0-.251.051-.349.238C11.5531.954 8.0245 7.3 8.0245 7.3s-.035.12-.128.167c-.092.047-.197.07-.197.07S.5546 8.9071.3466 8.9421c-.208.036-.302.16-.333.258a.477.477 0 00.125.4491L5.5013 15.14s.072.08.119.172c.016.104.005.21.005.21s-1.1891 7.243-1.2201 7.451c-.031.208.075.369.159.4301.083.062.233.106.421.013.189-.093 6.813-3.2614 6.813-3.2614s.098-.044.201-.061c.103-.017.201.061.201.061s6.624 3.1684 6.813 3.2614c.188.094.338.049.421-.013a.463.463 0 00.159-.43c-.021-.14-.93-5.6778-.93-5.6778.876-.5401 1.4251-1.0392 1.8492-1.7473-2.5944.9692-6.0069 1.7173-9.4163 1.8663-.9152.041-2.4104.097-3.4735-.015-.6781-.071-1.1702-.144-1.2432-.438-.053-.2151.054-.4601.5451-.8312a2640.8625 2640.8625 0 012.8614-2.1553c1.2852-.9681 3.5595-2.4703 3.5595-2.7314 0-.285-2.1443-.781-4.0376-.781-1.9452 0-2.2753.132-2.8114.168-.488.034-.769.005-.804-.138-.06-.2481.183-.3891.588-.5682.7091-.314 1.8603-.594 1.9843-.626.194-.052 3.0824-.8051 5.6188-.5351 1.3181.14 3.2444.668 3.2444 1.2762 0 .342-1.7212 1.4942-3.2254 2.5973-1.1492.8431-2.2173 1.5612-2.2173 1.6883 0 .342 3.5334 1.2411 6.6899 1.01l.003-.022c.048-.092.119-.172.119-.172l5.3627-5.4907a.477.477 0 00.127-.449z" }) + ] + } + ); +}); + +export { SiQzone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiR.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiR.cjs new file mode 100644 index 000000000..967a73a44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiR.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#276DC3"; +const SiR = React__namespace.forwardRef(function SiR2({ title = "R", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2.746c-6.627 0-12 3.599-12 8.037 0 3.897 4.144 7.144 9.64 7.88V16.26c-2.924-.915-4.925-2.755-4.925-4.877 0-3.035 4.084-5.494 9.12-5.494 5.038 0 8.757 1.683 8.757 5.494 0 1.976-.999 3.379-2.662 4.272.09.066.174.128.258.216.169.149.25.363.372.544 2.128-1.45 3.44-3.437 3.44-5.631 0-4.44-5.373-8.038-12-8.038zm-2.111 4.99v13.516l4.093-.002-.002-5.291h1.1c.225 0 .321.066.549.25.272.22.715.982.715.982l2.164 4.063 4.627-.002-2.864-4.826s-.086-.193-.265-.383a2.22 2.22 0 00-.582-.416c-.422-.214-1.149-.434-1.149-.434s3.578-.264 3.578-3.826c0-3.562-3.744-3.63-3.744-3.63zm4.127 2.93l2.478.002s1.149-.062 1.149 1.127c0 1.165-1.149 1.17-1.149 1.17h-2.478zm1.754 6.119c-.494.049-1.012.079-1.54.088v1.807a16.622 16.622 0 002.37-.473l-.471-.891s-.108-.183-.248-.394c-.039-.054-.08-.098-.111-.137z" }) + ] + } + ); +}); + +exports.default = SiR; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiR.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiR.d.ts new file mode 100644 index 000000000..2515cd21c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiR.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#276DC3"; +declare const SiR: IconType; +export { SiR as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiR.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiR.mjs new file mode 100644 index 000000000..12116337d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiR.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#276DC3"; +const SiR = React.forwardRef(function SiR2({ title = "R", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 2.746c-6.627 0-12 3.599-12 8.037 0 3.897 4.144 7.144 9.64 7.88V16.26c-2.924-.915-4.925-2.755-4.925-4.877 0-3.035 4.084-5.494 9.12-5.494 5.038 0 8.757 1.683 8.757 5.494 0 1.976-.999 3.379-2.662 4.272.09.066.174.128.258.216.169.149.25.363.372.544 2.128-1.45 3.44-3.437 3.44-5.631 0-4.44-5.373-8.038-12-8.038zm-2.111 4.99v13.516l4.093-.002-.002-5.291h1.1c.225 0 .321.066.549.25.272.22.715.982.715.982l2.164 4.063 4.627-.002-2.864-4.826s-.086-.193-.265-.383a2.22 2.22 0 00-.582-.416c-.422-.214-1.149-.434-1.149-.434s3.578-.264 3.578-3.826c0-3.562-3.744-3.63-3.744-3.63zm4.127 2.93l2.478.002s1.149-.062 1.149 1.127c0 1.165-1.149 1.17-1.149 1.17h-2.478zm1.754 6.119c-.494.049-1.012.079-1.54.088v1.807a16.622 16.622 0 002.37-.473l-.471-.891s-.108-.183-.248-.394c-.039-.054-.08-.098-.111-.137z" }) + ] + } + ); +}); + +export { SiR as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiR3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiR3.cjs new file mode 100644 index 000000000..b542c6494 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiR3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC1D24"; +const SiR3 = React__namespace.forwardRef(function SiR32({ title = "R3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 13.457c0 .841-.688 1.53-1.53 1.53-.842 0-1.53-.689-1.53-1.53a1.53 1.53 0 1 1 3.06 0zM6.147 2.853c-1.123 0-2.172.3-3.08.828v-.828H0v12.134h3.067V9a3.077 3.077 0 0 1 3.08-3.08l1.029-.007 2.105-3.06H6.147zm8.746 6.08 2.078-3.02v-3.06h-6.615l-2.104 3.06h4.99l-2.565 3.735 1.53 2.653a3.098 3.098 0 0 1 4.65 2.686c0 1.717-1.39 3.1-3.1 3.1-1.71 0-3.1-1.39-3.1-3.1h-3.06c0 3.4 2.76 6.16 6.154 6.16 3.4 0 6.16-2.76 6.16-6.16a6.162 6.162 0 0 0-5.018-6.054z" }) + ] + } + ); +}); + +exports.default = SiR3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiR3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiR3.d.ts new file mode 100644 index 000000000..ed1e4dc21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiR3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC1D24"; +declare const SiR3: IconType; +export { SiR3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiR3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiR3.mjs new file mode 100644 index 000000000..ce35a41e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiR3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC1D24"; +const SiR3 = React.forwardRef(function SiR32({ title = "R3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 13.457c0 .841-.688 1.53-1.53 1.53-.842 0-1.53-.689-1.53-1.53a1.53 1.53 0 1 1 3.06 0zM6.147 2.853c-1.123 0-2.172.3-3.08.828v-.828H0v12.134h3.067V9a3.077 3.077 0 0 1 3.08-3.08l1.029-.007 2.105-3.06H6.147zm8.746 6.08 2.078-3.02v-3.06h-6.615l-2.104 3.06h4.99l-2.565 3.735 1.53 2.653a3.098 3.098 0 0 1 4.65 2.686c0 1.717-1.39 3.1-3.1 3.1-1.71 0-3.1-1.39-3.1-3.1h-3.06c0 3.4 2.76 6.16 6.154 6.16 3.4 0 6.16-2.76 6.16-6.16a6.162 6.162 0 0 0-5.018-6.054z" }) + ] + } + ); +}); + +export { SiR3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.cjs new file mode 100644 index 000000000..625822216 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiRabbitmq = React__namespace.forwardRef(function SiRabbitmq2({ title = "RabbitMQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.035 9.601h-7.677a.956.956 0 01-.962-.962V.962a.956.956 0 00-.962-.956H10.56a.956.956 0 00-.962.956V8.64a.956.956 0 01-.962.962H5.762a.956.956 0 01-.961-.962V.962A.956.956 0 003.839 0H.959a.956.956 0 00-.956.962v22.076A.956.956 0 00.965 24h22.07a.956.956 0 00.962-.962V10.58a.956.956 0 00-.962-.98zm-3.86 8.152a1.437 1.437 0 01-1.437 1.443h-1.924a1.437 1.437 0 01-1.436-1.443v-1.917a1.437 1.437 0 011.436-1.443h1.924a1.437 1.437 0 011.437 1.443z" }) + ] + } + ); +}); + +exports.default = SiRabbitmq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.d.ts new file mode 100644 index 000000000..c93198dc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiRabbitmq: IconType; +export { SiRabbitmq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.mjs new file mode 100644 index 000000000..2c945061d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRabbitmq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiRabbitmq = React.forwardRef(function SiRabbitmq2({ title = "RabbitMQ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.035 9.601h-7.677a.956.956 0 01-.962-.962V.962a.956.956 0 00-.962-.956H10.56a.956.956 0 00-.962.956V8.64a.956.956 0 01-.962.962H5.762a.956.956 0 01-.961-.962V.962A.956.956 0 003.839 0H.959a.956.956 0 00-.956.962v22.076A.956.956 0 00.965 24h22.07a.956.956 0 00.962-.962V10.58a.956.956 0 00-.962-.98zm-3.86 8.152a1.437 1.437 0 01-1.437 1.443h-1.924a1.437 1.437 0 01-1.436-1.443v-1.917a1.437 1.437 0 011.436-1.443h1.924a1.437 1.437 0 011.437 1.443z" }) + ] + } + ); +}); + +export { SiRabbitmq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.cjs new file mode 100644 index 000000000..4fcf4ea3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9F1D20"; +const SiRacket = React__namespace.forwardRef(function SiRacket2({ title = "Racket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a11.95 11.95 0 0 0-4.104.721c4.872 2.556 11.316 10.893 13.547 18.686A11.957 11.957 0 0 0 24 12c0-6.627-5.373-12-12-12zM4.093 2.974A11.971 11.971 0 0 0 0 12c0 3.026 1.12 5.789 2.968 7.9 1.629-4.894 4.691-9.611 7.313-12.246-1.872-2.016-3.968-3.618-6.188-4.68zm2.276 19.625A11.947 11.947 0 0 0 12 24c2.092 0 4.059-.536 5.772-1.478-.987-4.561-2.851-8.739-5.28-12.147-2.597 2.8-5.186 7.702-6.123 12.224z" }) + ] + } + ); +}); + +exports.default = SiRacket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.d.ts new file mode 100644 index 000000000..94da3f0d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9F1D20"; +declare const SiRacket: IconType; +export { SiRacket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.mjs new file mode 100644 index 000000000..fc50e4917 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRacket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9F1D20"; +const SiRacket = React.forwardRef(function SiRacket2({ title = "Racket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a11.95 11.95 0 0 0-4.104.721c4.872 2.556 11.316 10.893 13.547 18.686A11.957 11.957 0 0 0 24 12c0-6.627-5.373-12-12-12zM4.093 2.974A11.971 11.971 0 0 0 0 12c0 3.026 1.12 5.789 2.968 7.9 1.629-4.894 4.691-9.611 7.313-12.246-1.872-2.016-3.968-3.618-6.188-4.68zm2.276 19.625A11.947 11.947 0 0 0 12 24c2.092 0 4.059-.536 5.772-1.478-.987-4.561-2.851-8.739-5.28-12.147-2.597 2.8-5.186 7.702-6.123 12.224z" }) + ] + } + ); +}); + +export { SiRacket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.cjs new file mode 100644 index 000000000..939ed4c7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007AFF"; +const SiRadar = React__namespace.forwardRef(function SiRadar2({ title = "Radar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L2.197 23.975 12 19.952 21.803 24z" }) + ] + } + ); +}); + +exports.default = SiRadar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.d.ts new file mode 100644 index 000000000..01570f541 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007AFF"; +declare const SiRadar: IconType; +export { SiRadar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.mjs new file mode 100644 index 000000000..a09c8c563 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007AFF"; +const SiRadar = React.forwardRef(function SiRadar2({ title = "Radar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L2.197 23.975 12 19.952 21.803 24z" }) + ] + } + ); +}); + +export { SiRadar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.cjs new file mode 100644 index 000000000..ed434d7d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCB3D"; +const SiRadarr = React__namespace.forwardRef(function SiRadarr2({ title = "radarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.274 0C3.189.039 1.19 1.547 1.19 4.705l.184 14.518c0 1.47 1.103 2.205 2.573 2.021L3.764 3.786c0-1.654.919-1.838 2.022-1.103l14.7 8.27c1.103.734 1.655 1.47 1.838 2.756.92-1.654.552-4.043-1.286-5.33L7.991.846A4.559 4.559 0 0 0 5.274.001zm1.982 6.91-.184 10.107 9.004-5.146Zm13.598 6.064-15.068 8.82c-.92.552-2.022.736-3.124.368.918 1.47 3.307 2.389 5.145 1.47l12.68-7.35c1.102-.736 1.286-2.022.367-3.308z" }) + ] + } + ); +}); + +exports.default = SiRadarr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.d.ts new file mode 100644 index 000000000..743b24de5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCB3D"; +declare const SiRadarr: IconType; +export { SiRadarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.mjs new file mode 100644 index 000000000..6841135ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadarr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCB3D"; +const SiRadarr = React.forwardRef(function SiRadarr2({ title = "radarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.274 0C3.189.039 1.19 1.547 1.19 4.705l.184 14.518c0 1.47 1.103 2.205 2.573 2.021L3.764 3.786c0-1.654.919-1.838 2.022-1.103l14.7 8.27c1.103.734 1.655 1.47 1.838 2.756.92-1.654.552-4.043-1.286-5.33L7.991.846A4.559 4.559 0 0 0 5.274.001zm1.982 6.91-.184 10.107 9.004-5.146Zm13.598 6.064-15.068 8.82c-.92.552-2.022.736-3.124.368.918 1.47 3.307 2.389 5.145 1.47l12.68-7.35c1.102-.736 1.286-2.022.367-3.308z" }) + ] + } + ); +}); + +export { SiRadarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.cjs new file mode 100644 index 000000000..1cb25f2c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2B00E7"; +const SiRadiofrance = React__namespace.forwardRef(function SiRadiofrance2({ title = "Radio France", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C6.144 24 1.397 19.497 1.397 13.94a9.6 9.6 0 0 1 .208-1.991h5.99a4.4 4.4 0 0 0-.474 1.991c0 2.557 2.184 4.63 4.88 4.63.6 0 1.175-.104 1.706-.292v5.592Q12.872 24 12 24m10.355-7.888H16.31a4.4 4.4 0 0 0 .57-2.172c0-2.557-2.184-4.63-4.879-4.63-.504 0-.99.073-1.448.208V0h5.25v4.546c3.978 1.45 6.802 5.109 6.802 9.394a9.6 9.6 0 0 1-.249 2.172" }) + ] + } + ); +}); + +exports.default = SiRadiofrance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.d.ts new file mode 100644 index 000000000..853b9f416 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2B00E7"; +declare const SiRadiofrance: IconType; +export { SiRadiofrance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.mjs new file mode 100644 index 000000000..8d4bc4539 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadiofrance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2B00E7"; +const SiRadiofrance = React.forwardRef(function SiRadiofrance2({ title = "Radio France", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C6.144 24 1.397 19.497 1.397 13.94a9.6 9.6 0 0 1 .208-1.991h5.99a4.4 4.4 0 0 0-.474 1.991c0 2.557 2.184 4.63 4.88 4.63.6 0 1.175-.104 1.706-.292v5.592Q12.872 24 12 24m10.355-7.888H16.31a4.4 4.4 0 0 0 .57-2.172c0-2.557-2.184-4.63-4.879-4.63-.504 0-.99.073-1.448.208V0h5.25v4.546c3.978 1.45 6.802 5.109 6.802 9.394a9.6 9.6 0 0 1-.249 2.172" }) + ] + } + ); +}); + +export { SiRadiofrance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.cjs new file mode 100644 index 000000000..1d376117f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#161618"; +const SiRadixui = React__namespace.forwardRef(function SiRadixui2({ title = "Radix UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.52 24a7.68 7.68 0 0 1-7.68-7.68 7.68 7.68 0 0 1 7.68-7.68V24Zm0-24v7.68H3.84V0h7.68Zm4.8 7.68a3.84 3.84 0 1 1 0-7.68 3.84 3.84 0 0 1 0 7.68Z" }) + ] + } + ); +}); + +exports.default = SiRadixui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.d.ts new file mode 100644 index 000000000..3b6026ba4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#161618"; +declare const SiRadixui: IconType; +export { SiRadixui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.mjs new file mode 100644 index 000000000..13a881452 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadixui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#161618"; +const SiRadixui = React.forwardRef(function SiRadixui2({ title = "Radix UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.52 24a7.68 7.68 0 0 1-7.68-7.68 7.68 7.68 0 0 1 7.68-7.68V24Zm0-24v7.68H3.84V0h7.68Zm4.8 7.68a3.84 3.84 0 1 1 0-7.68 3.84 3.84 0 0 1 0 7.68Z" }) + ] + } + ); +}); + +export { SiRadixui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.cjs new file mode 100644 index 000000000..590d20092 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E62431"; +const SiRadstudio = React__namespace.forwardRef(function SiRadstudio2({ title = "RAD Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.1465 10.5337.7359 1.9534h-1.4716l.7357-1.9534zM4.8863 9.1476c-.4025.0044-.805.0008-1.2076.001-.019 0-.038.0018-.0614.003v2.0964c.0175.0016.0327.0043.048.0043.4142 0 .8285.0053 1.2426-.0018.6636-.0114 1.1412-.6091 1.0089-1.2605-.1016-.4999-.5468-.8477-1.0305-.8424zm19.0972 3.3603c-.0252.409-.0595.8184-.1126 1.2246-.0742.5675-.2022 1.1249-.3642 1.6746a11.8456 11.8456 0 0 1-.892 2.1936 11.9768 11.9768 0 0 1-2.4107 3.1587c-.9165.8593-1.9422 1.5593-3.0778 2.0967-.9867.467-2.0181.7934-3.095.9755-.511.0864-1.025.1418-1.5428.1622-.0501.002-.8557.0047-.8686.0043a12.0444 12.0444 0 0 1-1.4517-.1334 11.7612 11.7612 0 0 1-1.7943-.4175 11.9283 11.9283 0 0 1-2.2824-.9961 11.9821 11.9821 0 0 1-2.9132-2.3115c-.891-.9661-1.6055-2.0493-2.1417-3.2497-.5047-1.13-.824-2.3107-.9616-3.54a11.9165 11.9165 0 0 1-.0733-1.5264c.0072-.4321.0355-.8625.0876-1.2911.0655-.5373.1675-1.068.3055-1.5918.2367-.899.574-1.7584 1.011-2.5784.5443-1.0208 1.2235-1.943 2.0329-2.7688a11.8993 11.8993 0 0 1 1.1528-1.0307C5.633 1.745 6.7778 1.116 8.027.6766 8.5082.5073 8.9971.3635 9.4976.266c.381-.0742.7651-.1357 1.1504-.1821.3426-.0413.6883-.0613 1.0333-.0771.2358-.0108.4727-.001.709.004.4673.0101.9318.0555 1.3937.1244.5023.075.9982.1817 1.4873.32.8146.2305 1.596.5437 2.343.9409a11.9932 11.9932 0 0 1 3.016 2.2728 11.997 11.997 0 0 1 1.362 1.6917A11.9248 11.9248 0 0 1 23.4617 8.45c.2238.722.3769 1.4587.4604 2.2096.0684.6143.0996 1.231.0614 1.8483zM8.0166 14.8342c-.278-.6611-.5564-1.3221-.8356-1.9828-.0771-.1825-.174-.3545-.2985-.509-.0708-.0878-.1482-.1702-.2199-.252.0911-.1045.189-.2057.2746-.3164.7633-.9879.7042-2.4032-.1422-3.3218-.5123-.556-1.1557-.83-1.9078-.8393-.6724-.0084-1.3449-.0041-2.0173.0007-.1034.0007-.211.0215-.309.0553-.2904.1003-.483.3929-.483.7162-.0001 2.2343-.0003 4.4686.0011 6.703 0 .0772.0099.156.027.2315.0772.3384.3777.5771.7256.5814a.7718.7718 0 0 0 .7829-.774c.001-.7546.0002-1.5091.0003-2.2636v-.0725c.0228-.0016.0399-.0038.057-.0038.3733-.0003.7467-.0003 1.12.0001a.226.226 0 0 1 .0636.008c.1992.0601.3907.1383.5636.2559.1302.0886.2506.188.3171.337.0326.073.0643.1465.0955.2202.2588.6116.5169 1.2235.776 1.835a.7605.7605 0 0 0 1.013.4002c.386-.1724.561-.6172.396-1.0093zm7.3796.0008c-.1816-.4869-.3648-.9732-.5474-1.4598-.6555-1.7467-1.3107-3.4935-1.9666-5.2401-.1162-.3096-.3968-.5014-.7292-.5019-.3412-.0005-.6244.19-.7416.5022a7268.363 7268.363 0 0 0-2.509 6.6893c-.0359.0958-.0506.1994-.0644.2556.009.2562.0747.4425.222.5941.3843.3953 1.07.2492 1.2665-.2692.1677-.442.335-.8843.5002-1.3272.0175-.0471.0382-.0648.0908-.0647.823.002 1.646.002 2.469 0 .0522-.0001.0739.0162.0916.0638.1679.4503.3364.9004.5085 1.349.184.4797.8151.6317 1.199.2914.2523-.2235.3325-.5554.2106-.8825zm7.1412-3.6449c-.1495-1.092-.663-1.988-1.5232-2.679-.7198-.5782-1.5504-.867-2.4684-.8967-.4863-.0158-.9734-.0048-1.4602-.002a.733.733 0 0 0-.3641.0988c-.2612.1505-.3834.3844-.384.6798-.0023 1.1201-.001 2.2402-.001 3.3603 0 1.122-.0003 2.2442.0002 3.3662.0003.451.3323.7827.782.783.4399.0003.8797-.0002 1.3196.0002a4.0977 4.0977 0 0 0 1.3082-.212c.8541-.285 1.546-.7947 2.063-1.5313.6267-.8927.876-1.8864.728-2.9673zm-3.224-1.8945c-.4632-.1813-.9487-.1486-1.4309-.1439-.0015 0-.003.002-.0084.0059v5.2038c.0185.0014.0336.0036.0487.0036.1818.0001.3636.0019.5453-.0006.6462-.0086 1.2177-.2247 1.6953-.656.6695-.6046.9716-1.3701.8587-2.264-.1327-1.0498-.7238-1.7633-1.7088-2.1488z" }) + ] + } + ); +}); + +exports.default = SiRadstudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.d.ts new file mode 100644 index 000000000..c645a2ae8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E62431"; +declare const SiRadstudio: IconType; +export { SiRadstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.mjs new file mode 100644 index 000000000..3a2773252 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRadstudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E62431"; +const SiRadstudio = React.forwardRef(function SiRadstudio2({ title = "RAD Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.1465 10.5337.7359 1.9534h-1.4716l.7357-1.9534zM4.8863 9.1476c-.4025.0044-.805.0008-1.2076.001-.019 0-.038.0018-.0614.003v2.0964c.0175.0016.0327.0043.048.0043.4142 0 .8285.0053 1.2426-.0018.6636-.0114 1.1412-.6091 1.0089-1.2605-.1016-.4999-.5468-.8477-1.0305-.8424zm19.0972 3.3603c-.0252.409-.0595.8184-.1126 1.2246-.0742.5675-.2022 1.1249-.3642 1.6746a11.8456 11.8456 0 0 1-.892 2.1936 11.9768 11.9768 0 0 1-2.4107 3.1587c-.9165.8593-1.9422 1.5593-3.0778 2.0967-.9867.467-2.0181.7934-3.095.9755-.511.0864-1.025.1418-1.5428.1622-.0501.002-.8557.0047-.8686.0043a12.0444 12.0444 0 0 1-1.4517-.1334 11.7612 11.7612 0 0 1-1.7943-.4175 11.9283 11.9283 0 0 1-2.2824-.9961 11.9821 11.9821 0 0 1-2.9132-2.3115c-.891-.9661-1.6055-2.0493-2.1417-3.2497-.5047-1.13-.824-2.3107-.9616-3.54a11.9165 11.9165 0 0 1-.0733-1.5264c.0072-.4321.0355-.8625.0876-1.2911.0655-.5373.1675-1.068.3055-1.5918.2367-.899.574-1.7584 1.011-2.5784.5443-1.0208 1.2235-1.943 2.0329-2.7688a11.8993 11.8993 0 0 1 1.1528-1.0307C5.633 1.745 6.7778 1.116 8.027.6766 8.5082.5073 8.9971.3635 9.4976.266c.381-.0742.7651-.1357 1.1504-.1821.3426-.0413.6883-.0613 1.0333-.0771.2358-.0108.4727-.001.709.004.4673.0101.9318.0555 1.3937.1244.5023.075.9982.1817 1.4873.32.8146.2305 1.596.5437 2.343.9409a11.9932 11.9932 0 0 1 3.016 2.2728 11.997 11.997 0 0 1 1.362 1.6917A11.9248 11.9248 0 0 1 23.4617 8.45c.2238.722.3769 1.4587.4604 2.2096.0684.6143.0996 1.231.0614 1.8483zM8.0166 14.8342c-.278-.6611-.5564-1.3221-.8356-1.9828-.0771-.1825-.174-.3545-.2985-.509-.0708-.0878-.1482-.1702-.2199-.252.0911-.1045.189-.2057.2746-.3164.7633-.9879.7042-2.4032-.1422-3.3218-.5123-.556-1.1557-.83-1.9078-.8393-.6724-.0084-1.3449-.0041-2.0173.0007-.1034.0007-.211.0215-.309.0553-.2904.1003-.483.3929-.483.7162-.0001 2.2343-.0003 4.4686.0011 6.703 0 .0772.0099.156.027.2315.0772.3384.3777.5771.7256.5814a.7718.7718 0 0 0 .7829-.774c.001-.7546.0002-1.5091.0003-2.2636v-.0725c.0228-.0016.0399-.0038.057-.0038.3733-.0003.7467-.0003 1.12.0001a.226.226 0 0 1 .0636.008c.1992.0601.3907.1383.5636.2559.1302.0886.2506.188.3171.337.0326.073.0643.1465.0955.2202.2588.6116.5169 1.2235.776 1.835a.7605.7605 0 0 0 1.013.4002c.386-.1724.561-.6172.396-1.0093zm7.3796.0008c-.1816-.4869-.3648-.9732-.5474-1.4598-.6555-1.7467-1.3107-3.4935-1.9666-5.2401-.1162-.3096-.3968-.5014-.7292-.5019-.3412-.0005-.6244.19-.7416.5022a7268.363 7268.363 0 0 0-2.509 6.6893c-.0359.0958-.0506.1994-.0644.2556.009.2562.0747.4425.222.5941.3843.3953 1.07.2492 1.2665-.2692.1677-.442.335-.8843.5002-1.3272.0175-.0471.0382-.0648.0908-.0647.823.002 1.646.002 2.469 0 .0522-.0001.0739.0162.0916.0638.1679.4503.3364.9004.5085 1.349.184.4797.8151.6317 1.199.2914.2523-.2235.3325-.5554.2106-.8825zm7.1412-3.6449c-.1495-1.092-.663-1.988-1.5232-2.679-.7198-.5782-1.5504-.867-2.4684-.8967-.4863-.0158-.9734-.0048-1.4602-.002a.733.733 0 0 0-.3641.0988c-.2612.1505-.3834.3844-.384.6798-.0023 1.1201-.001 2.2402-.001 3.3603 0 1.122-.0003 2.2442.0002 3.3662.0003.451.3323.7827.782.783.4399.0003.8797-.0002 1.3196.0002a4.0977 4.0977 0 0 0 1.3082-.212c.8541-.285 1.546-.7947 2.063-1.5313.6267-.8927.876-1.8864.728-2.9673zm-3.224-1.8945c-.4632-.1813-.9487-.1486-1.4309-.1439-.0015 0-.003.002-.0084.0059v5.2038c.0185.0014.0336.0036.0487.0036.1818.0001.3636.0019.5453-.0006.6462-.0086 1.2177-.2247 1.6953-.656.6695-.6046.9716-1.3701.8587-2.264-.1327-1.0498-.7238-1.7633-1.7088-2.1488z" }) + ] + } + ); +}); + +export { SiRadstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.cjs new file mode 100644 index 000000000..12b597c00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B0D0E"; +const SiRailway = React__namespace.forwardRef(function SiRailway2({ title = "Railway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.113 10.27A13.026 13.026 0 000 11.48h18.23c-.064-.125-.15-.237-.235-.347-3.117-4.027-4.793-3.677-7.19-3.78-.8-.034-1.34-.048-4.524-.048-1.704 0-3.555.005-5.358.01-.234.63-.459 1.24-.567 1.737h9.342v1.216H.113v.002zm18.26 2.426H.009c.02.326.05.645.094.961h16.955c.754 0 1.179-.429 1.315-.96zm-17.318 4.28s2.81 6.902 10.93 7.024c4.855 0 9.027-2.883 10.92-7.024H1.056zM11.988 0C7.5 0 3.593 2.466 1.531 6.108l4.75-.005v-.002c3.71 0 3.849.016 4.573.047l.448.016c1.563.052 3.485.22 4.996 1.364.82.621 2.007 1.99 2.712 2.965.654.902.842 1.94.396 2.934-.408.914-1.289 1.458-2.353 1.458H.391s.099.42.249.886h22.748A12.026 12.026 0 0024 12.005C24 5.377 18.621 0 11.988 0z" }) + ] + } + ); +}); + +exports.default = SiRailway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.d.ts new file mode 100644 index 000000000..f8485d022 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B0D0E"; +declare const SiRailway: IconType; +export { SiRailway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.mjs new file mode 100644 index 000000000..e4ddbb600 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRailway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B0D0E"; +const SiRailway = React.forwardRef(function SiRailway2({ title = "Railway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.113 10.27A13.026 13.026 0 000 11.48h18.23c-.064-.125-.15-.237-.235-.347-3.117-4.027-4.793-3.677-7.19-3.78-.8-.034-1.34-.048-4.524-.048-1.704 0-3.555.005-5.358.01-.234.63-.459 1.24-.567 1.737h9.342v1.216H.113v.002zm18.26 2.426H.009c.02.326.05.645.094.961h16.955c.754 0 1.179-.429 1.315-.96zm-17.318 4.28s2.81 6.902 10.93 7.024c4.855 0 9.027-2.883 10.92-7.024H1.056zM11.988 0C7.5 0 3.593 2.466 1.531 6.108l4.75-.005v-.002c3.71 0 3.849.016 4.573.047l.448.016c1.563.052 3.485.22 4.996 1.364.82.621 2.007 1.99 2.712 2.965.654.902.842 1.94.396 2.934-.408.914-1.289 1.458-2.353 1.458H.391s.099.42.249.886h22.748A12.026 12.026 0 0024 12.005C24 5.377 18.621 0 11.988 0z" }) + ] + } + ); +}); + +export { SiRailway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.cjs new file mode 100644 index 000000000..1f7c4ecdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#19519B"; +const SiRainmeter = React__namespace.forwardRef(function SiRainmeter2({ title = "Rainmeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.7 1.088L12 0l-.7 1.088c-.751 1.168-7.342 11.525-7.342 15.366C3.958 20.615 7.565 24 12 24s8.042-3.385 8.042-7.546c0-3.84-6.591-14.197-7.342-15.366zM12 22.335c-3.516 0-6.377-2.638-6.377-5.881C5.623 13.908 9.732 6.756 12 3.1c2.268 3.656 6.377 10.809 6.377 13.355 0 3.242-2.861 5.88-6.377 5.88zm4.957-6.017c0 2.548-2.22 4.615-4.957 4.615-2.737 0-4.957-2.067-4.957-4.615 0-.163.021-.347.058-.549 0 0 1.306-2.616 4.847 0 2.999 2.215 4.95 0 4.95 0 .038.202.059.386.059.549z" }) + ] + } + ); +}); + +exports.default = SiRainmeter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.d.ts new file mode 100644 index 000000000..6cdd78a1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#19519B"; +declare const SiRainmeter: IconType; +export { SiRainmeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.mjs new file mode 100644 index 000000000..e1218c231 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRainmeter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#19519B"; +const SiRainmeter = React.forwardRef(function SiRainmeter2({ title = "Rainmeter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.7 1.088L12 0l-.7 1.088c-.751 1.168-7.342 11.525-7.342 15.366C3.958 20.615 7.565 24 12 24s8.042-3.385 8.042-7.546c0-3.84-6.591-14.197-7.342-15.366zM12 22.335c-3.516 0-6.377-2.638-6.377-5.881C5.623 13.908 9.732 6.756 12 3.1c2.268 3.656 6.377 10.809 6.377 13.355 0 3.242-2.861 5.88-6.377 5.88zm4.957-6.017c0 2.548-2.22 4.615-4.957 4.615-2.737 0-4.957-2.067-4.957-4.615 0-.163.021-.347.058-.549 0 0 1.306-2.616 4.847 0 2.999 2.215 4.95 0 4.95 0 .038.202.059.386.059.549z" }) + ] + } + ); +}); + +export { SiRainmeter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.cjs new file mode 100644 index 000000000..9c529a56e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DAD9D9"; +const SiRainyun = React__namespace.forwardRef(function SiRainyun2({ title = "RainYun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.976 22.69c-.539-.19-.81-.83-.63-1.483.09-.325 1.554-2.49 1.773-2.623.992-.6 2.026.57 1.469 1.664-.202.396-1.211 1.874-1.469 2.15-.342.367-.686.454-1.143.293zm3.979.027c-.517-.156-.816-.862-.637-1.508.09-.328 1.548-2.488 1.772-2.627.99-.613 2.032.562 1.473 1.66-.208.41-1.305 2.016-1.516 2.222a1 .897 0 0 1-1.092.253zm3.966-.026c-.54-.192-.811-.831-.63-1.484.09-.325 1.554-2.49 1.773-2.623.992-.6 2.025.57 1.469 1.664-.202.396-1.211 1.874-1.469 2.15-.342.367-.686.454-1.143.293zm3.973 0c-.54-.192-.812-.831-.63-1.484.09-.325 1.553-2.49 1.772-2.623.98-.544 1.915.721 1.212 1.76-.046.069-.642 1.371-1.259 2.024-.31.329-.812.423-1.095.323zm-10.4-5.282c-3.439-.42-3.997-5.627-.719-6.695.418-.137.498-.217.498-.497 0-3.244 4.472-4.913 6.881-2.568.47.456.47.456.753.34 1.553-.631 3.65.405 4.266 2.107.165.456.194.492.43.537 3.21.603 3.19 5.66-.026 6.686-.381.121-11.167.202-12.083.09zM4.246 15.98c-.18-.143-.216-.279-.493-1.887-.282-1.634-.094-1.452-1.794-1.748-1.743-.305-1.66-.283-1.789-.448-.267-.341-.194-.537.68-1.816.435-.637.82-1.214.857-1.283.086-.162.081-.17-.872-1.562C-.416 5.41-.408 5.393 1.873 4.998c.852-.148 1.572-.284 1.6-.301.027-.018.174-.75.327-1.629.397-2.286.309-2.25 2.227-.93 1.556 1.067 1.135 1.061 2.643.036C10.66.822 10.556.78 10.953 3.09c.31 1.802.16 1.587 1.301 1.854 1.493.227.742.493-.195.738a5.22 5.22 0 0 0-1.103.42c-.763.384-.79.383-1.27-.026-2.228-1.907-5.526-.58-5.85 2.353-.138 1.247.59 2.551 1.837 3.29.228.135.235.325.034.922-.223.664-.286 1.472-.163 2.109.162.838-.727 1.682-1.298 1.231zm1.769-5.087c-2.738-1.756-.423-5.982 2.52-4.602.912.427 1.035.776.536 1.51-.355.522-.496.816-.705 1.479-.176.558-.17.551-.677.894-.22.15-.553.408-.74.575-.401.359-.562.383-.934.144z" }) + ] + } + ); +}); + +exports.default = SiRainyun; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.d.ts new file mode 100644 index 000000000..df01432da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DAD9D9"; +declare const SiRainyun: IconType; +export { SiRainyun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.mjs new file mode 100644 index 000000000..e177b87fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRainyun.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DAD9D9"; +const SiRainyun = React.forwardRef(function SiRainyun2({ title = "RainYun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.976 22.69c-.539-.19-.81-.83-.63-1.483.09-.325 1.554-2.49 1.773-2.623.992-.6 2.026.57 1.469 1.664-.202.396-1.211 1.874-1.469 2.15-.342.367-.686.454-1.143.293zm3.979.027c-.517-.156-.816-.862-.637-1.508.09-.328 1.548-2.488 1.772-2.627.99-.613 2.032.562 1.473 1.66-.208.41-1.305 2.016-1.516 2.222a1 .897 0 0 1-1.092.253zm3.966-.026c-.54-.192-.811-.831-.63-1.484.09-.325 1.554-2.49 1.773-2.623.992-.6 2.025.57 1.469 1.664-.202.396-1.211 1.874-1.469 2.15-.342.367-.686.454-1.143.293zm3.973 0c-.54-.192-.812-.831-.63-1.484.09-.325 1.553-2.49 1.772-2.623.98-.544 1.915.721 1.212 1.76-.046.069-.642 1.371-1.259 2.024-.31.329-.812.423-1.095.323zm-10.4-5.282c-3.439-.42-3.997-5.627-.719-6.695.418-.137.498-.217.498-.497 0-3.244 4.472-4.913 6.881-2.568.47.456.47.456.753.34 1.553-.631 3.65.405 4.266 2.107.165.456.194.492.43.537 3.21.603 3.19 5.66-.026 6.686-.381.121-11.167.202-12.083.09zM4.246 15.98c-.18-.143-.216-.279-.493-1.887-.282-1.634-.094-1.452-1.794-1.748-1.743-.305-1.66-.283-1.789-.448-.267-.341-.194-.537.68-1.816.435-.637.82-1.214.857-1.283.086-.162.081-.17-.872-1.562C-.416 5.41-.408 5.393 1.873 4.998c.852-.148 1.572-.284 1.6-.301.027-.018.174-.75.327-1.629.397-2.286.309-2.25 2.227-.93 1.556 1.067 1.135 1.061 2.643.036C10.66.822 10.556.78 10.953 3.09c.31 1.802.16 1.587 1.301 1.854 1.493.227.742.493-.195.738a5.22 5.22 0 0 0-1.103.42c-.763.384-.79.383-1.27-.026-2.228-1.907-5.526-.58-5.85 2.353-.138 1.247.59 2.551 1.837 3.29.228.135.235.325.034.922-.223.664-.286 1.472-.163 2.109.162.838-.727 1.682-1.298 1.231zm1.769-5.087c-2.738-1.756-.423-5.982 2.52-4.602.912.427 1.035.776.536 1.51-.355.522-.496.816-.705 1.479-.176.558-.17.551-.677.894-.22.15-.553.408-.74.575-.401.359-.562.383-.934.144z" }) + ] + } + ); +}); + +export { SiRainyun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.cjs new file mode 100644 index 000000000..f221e2a76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BF0000"; +const SiRakuten = React__namespace.forwardRef(function SiRakuten2({ title = "Rakuten", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.277 21.3L3.939 24 .722 21.3h22.555zM7.6 19.276H3.939V0h6.052a6.653 6.653 0 0 1 6.65 6.646c0 2.234-1.108 4.204-2.799 5.418l5.418 7.211h-4.585l-4.486-5.979H7.6v5.98zm0-9.64h2.392a2.992 2.992 0 0 0 2.989-2.989 2.994 2.994 0 0 0-2.989-2.986H7.6v5.975z" }) + ] + } + ); +}); + +exports.default = SiRakuten; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.d.ts new file mode 100644 index 000000000..c77634fa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BF0000"; +declare const SiRakuten: IconType; +export { SiRakuten as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.mjs new file mode 100644 index 000000000..3e3487450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRakuten.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BF0000"; +const SiRakuten = React.forwardRef(function SiRakuten2({ title = "Rakuten", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.277 21.3L3.939 24 .722 21.3h22.555zM7.6 19.276H3.939V0h6.052a6.653 6.653 0 0 1 6.65 6.646c0 2.234-1.108 4.204-2.799 5.418l5.418 7.211h-4.585l-4.486-5.979H7.6v5.98zm0-9.64h2.392a2.992 2.992 0 0 0 2.989-2.989 2.994 2.994 0 0 0-2.989-2.986H7.6v5.975z" }) + ] + } + ); +}); + +export { SiRakuten as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.cjs new file mode 100644 index 000000000..5110e7fad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BF0000"; +const SiRakutenkobo = React__namespace.forwardRef(function SiRakutenkobo2({ title = "Rakuten Kobo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 13.192h.874v3.115l1.21-1.432h1.047l-1.385 1.619 1.51 2.125H2.21L.889 16.732H.874v1.887H0zm3.177 3.555c0-1.227.575-1.957 1.653-1.957 1.077 0 1.655.73 1.655 1.957s-.575 1.957-1.651 1.957-1.652-.731-1.652-1.957zm1.653 1.341c.627 0 .722-.643.722-1.344 0-.7-.095-1.343-.722-1.343-.628 0-.722.646-.722 1.346s.091 1.341.722 1.341m2.999-2.764h.016a1.09 1.09 0 0 1 .967-.535c.898 0 1.29.763 1.29 1.957 0 1.045-.362 1.957-1.581 1.957-.978 0-1.564-.559-1.564-1.678v-3.83h.872zm.699 2.767c.56 0 .653-.73.653-1.344 0-.676-.07-1.398-.653-1.398-.527 0-.699.771-.699 1.398 0 .935.14 1.344.699 1.344m2.011-1.344c0-1.227.573-1.957 1.65-1.957 1.078 0 1.653.731 1.653 1.957s-.575 1.957-1.653 1.957c-1.077 0-1.65-.73-1.65-1.957m1.655 1.341c.629 0 .724-.643.724-1.344 0-.7-.095-1.343-.724-1.343s-.723.643-.723 1.343c0 .701.094 1.344.723 1.344m7.126-6.807L5.956 12.439 4.8 11.281zM6.141 6.604h.903v3.935h-.903v-.17c-.245.174-.538.27-.839.272-1.018 0-1.791-.928-1.791-2.067s.773-2.068 1.791-2.068c.301.003.594.098.839.273zm-.839 3.088c.502 0 .857-.493.857-1.118s-.355-1.118-.857-1.118-.868.494-.868 1.118c0 .623.366 1.118.868 1.118m8.006-3.088h.894v3.935h-.894v-.14a1.37 1.37 0 0 1-.759.242c-.951 0-1.599-.773-1.599-1.723V6.604h.893v2.314c0 .434.297.801.732.801s.733-.367.733-.801zm8.332 3.935h-.897V6.61h.897v.14c.224-.155.489-.239.761-.244.95 0 1.599.773 1.599 1.723v2.31h-.893v-2.31c0-.434-.298-.8-.733-.8-.434 0-.734.366-.734.8zm-20.705 0H.013V5.627H1.55c.927.006 1.686.77 1.686 1.697 0 .546-.264 1.06-.707 1.378l1.384 1.837H2.741L1.592 9.017H.935zm0-3.982v1.525h.642a.767.767 0 0 0 .764-.763.77.77 0 0 0-.764-.763l-.032.001zm15.679 3.054v.003l.588.785a1.8 1.8 0 0 1-.875.245 1.353 1.353 0 0 1-1.331-1.346l.002-.059v-1.7h-.473v-.935h.473v-.978h.894v.978h.768v.935h-.765v1.686l-.002.043c0 .234.187.43.422.441a.54.54 0 0 0 .299-.098m-7.352-1.16 1.78 2.092H9.789L8.47 8.925v1.618h-.922V5.296h.922v2.68l1.073-1.372h1.253zm9.416-1.947c1.014 0 1.934.931 1.713 2.345h-2.577c.118.9 1.137 1.358 1.748.457l.79.456c-.508.72-1.113.882-1.584.882-.935 0-1.866-.85-1.866-2.07 0-1.16.742-2.07 1.776-2.07m.782 1.561c-.175-.979-1.423-.923-1.612 0z" }) + ] + } + ); +}); + +exports.default = SiRakutenkobo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.d.ts new file mode 100644 index 000000000..2f9f431cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BF0000"; +declare const SiRakutenkobo: IconType; +export { SiRakutenkobo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.mjs new file mode 100644 index 000000000..d959dda51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRakutenkobo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BF0000"; +const SiRakutenkobo = React.forwardRef(function SiRakutenkobo2({ title = "Rakuten Kobo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 13.192h.874v3.115l1.21-1.432h1.047l-1.385 1.619 1.51 2.125H2.21L.889 16.732H.874v1.887H0zm3.177 3.555c0-1.227.575-1.957 1.653-1.957 1.077 0 1.655.73 1.655 1.957s-.575 1.957-1.651 1.957-1.652-.731-1.652-1.957zm1.653 1.341c.627 0 .722-.643.722-1.344 0-.7-.095-1.343-.722-1.343-.628 0-.722.646-.722 1.346s.091 1.341.722 1.341m2.999-2.764h.016a1.09 1.09 0 0 1 .967-.535c.898 0 1.29.763 1.29 1.957 0 1.045-.362 1.957-1.581 1.957-.978 0-1.564-.559-1.564-1.678v-3.83h.872zm.699 2.767c.56 0 .653-.73.653-1.344 0-.676-.07-1.398-.653-1.398-.527 0-.699.771-.699 1.398 0 .935.14 1.344.699 1.344m2.011-1.344c0-1.227.573-1.957 1.65-1.957 1.078 0 1.653.731 1.653 1.957s-.575 1.957-1.653 1.957c-1.077 0-1.65-.73-1.65-1.957m1.655 1.341c.629 0 .724-.643.724-1.344 0-.7-.095-1.343-.724-1.343s-.723.643-.723 1.343c0 .701.094 1.344.723 1.344m7.126-6.807L5.956 12.439 4.8 11.281zM6.141 6.604h.903v3.935h-.903v-.17c-.245.174-.538.27-.839.272-1.018 0-1.791-.928-1.791-2.067s.773-2.068 1.791-2.068c.301.003.594.098.839.273zm-.839 3.088c.502 0 .857-.493.857-1.118s-.355-1.118-.857-1.118-.868.494-.868 1.118c0 .623.366 1.118.868 1.118m8.006-3.088h.894v3.935h-.894v-.14a1.37 1.37 0 0 1-.759.242c-.951 0-1.599-.773-1.599-1.723V6.604h.893v2.314c0 .434.297.801.732.801s.733-.367.733-.801zm8.332 3.935h-.897V6.61h.897v.14c.224-.155.489-.239.761-.244.95 0 1.599.773 1.599 1.723v2.31h-.893v-2.31c0-.434-.298-.8-.733-.8-.434 0-.734.366-.734.8zm-20.705 0H.013V5.627H1.55c.927.006 1.686.77 1.686 1.697 0 .546-.264 1.06-.707 1.378l1.384 1.837H2.741L1.592 9.017H.935zm0-3.982v1.525h.642a.767.767 0 0 0 .764-.763.77.77 0 0 0-.764-.763l-.032.001zm15.679 3.054v.003l.588.785a1.8 1.8 0 0 1-.875.245 1.353 1.353 0 0 1-1.331-1.346l.002-.059v-1.7h-.473v-.935h.473v-.978h.894v.978h.768v.935h-.765v1.686l-.002.043c0 .234.187.43.422.441a.54.54 0 0 0 .299-.098m-7.352-1.16 1.78 2.092H9.789L8.47 8.925v1.618h-.922V5.296h.922v2.68l1.073-1.372h1.253zm9.416-1.947c1.014 0 1.934.931 1.713 2.345h-2.577c.118.9 1.137 1.358 1.748.457l.79.456c-.508.72-1.113.882-1.584.882-.935 0-1.866-.85-1.866-2.07 0-1.16.742-2.07 1.776-2.07m.782 1.561c-.175-.979-1.423-.923-1.612 0z" }) + ] + } + ); +}); + +export { SiRakutenkobo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRam.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRam.cjs new file mode 100644 index 000000000..b56029f34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRam.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRam = React__namespace.forwardRef(function SiRam2({ title = "Ram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.46 22.432l-.515-1.14h-.024l-.579 1.14h1.118zm.222.755h-1.556L9.792 24H7.344l1.791-3.359h3.627L14.494 24h-2.448l-.364-.813zm9.516-1.122h-.105L20.048 24h-1.492l-1.042-1.926-.099.001L17.406 24h-2.239v-3.359h3.522l.627 1.056h.03l.686-1.056h3.403V24h-2.239l.002-1.935zm-18.319.1h.467c.501 0 .647-.161.65-.322.007-.311-.052-.553-.625-.553h-.492v.875zm.512.703h-.499V24H.564v-3.359h3.358c1.761 0 2.48.29 2.566 1.037.043.372-.161 1.043-.977 1.11L6.728 24H4.265l-.874-1.132zM11.844.412c-2.642.003-5.658.155-6.66.24-1.093.093-1.289.164-1.29 1.087l-.009.838c-.008.658-.02 1.587-.02 2.633 0 1.704.101 3.717.226 5.373.134 1.761.24 3.152 2.458 4.475 1.704 1.016 4.668 2.484 4.697 2.498.171.085.565.275.699.327a.531.531 0 0 0 .126 0c.137-.054.572-.27.786-.366.021-.009 2.077-.95 4.608-2.459 2.218-1.323 2.324-2.714 2.459-4.476.125-1.656.226-3.67.226-5.374 0-1.045-.012-1.974-.02-2.632l-.008-.838c-.004-.813-.158-.993-1.291-1.087-1.002-.083-4.018-.238-6.66-.241h-.327v.002zM12.173 0c2.632.003 5.647.139 6.7.243 1.337.131 1.662.194 1.662 1.496 0 1.027.047 5.619-.199 8.875-.138 1.806-.257 3.365-2.658 4.798a50.914 50.914 0 0 1-4.71 2.487c-.311.138-.721.37-.804.387a.884.884 0 0 1-.312 0c-.092-.019-.593-.265-.786-.36-.193-.094-3.067-1.525-4.726-2.514-2.401-1.432-2.52-2.991-2.658-4.798-.247-3.256-.2-7.849-.2-8.875 0-1.302.325-1.365 1.662-1.496C6.197.139 9.212.003 11.844 0h.329zM8.279 2.312c1.95 0 2.955 1.664 3.532 2.876l-.181.991c-1.01-2.1-2.215-3.436-3.674-3.436-1.577 0-2.465 2.012-2.693 2.351.407-1.034 1.591-2.782 3.016-2.782zm10.343 2.783c-.229-.339-1.116-2.351-2.693-2.351-1.459 0-2.663 1.336-3.674 3.436l-.182-.992c.576-1.212 1.581-2.876 3.532-2.876 1.426 0 2.611 1.748 3.017 2.783zm-3.444 4.12c-.163.071-.288.117-.288.117l.098-.846.522-.684c.161.769.149 1.203-.332 1.413zm-6.374 0c-.481-.21-.493-.644-.332-1.414l.522.684.098.846s-.126-.045-.288-.116zm8.367-4.41c-1.276-.025-2.381.961-3.127 3.352l.419.264-.173.998-.952.338-.187 1.292.462-.587.649-.132-.289.778-.895.499-.318 2.084.12.783-.92.356v.001l-.844-.357.12-.783-.318-2.084-.895-.499-.288-.778.649.132.462.587-.188-1.292-.952-.338-.173-.998.418-.264c-.745-2.39-1.85-3.376-3.127-3.352-1.02.02-1.778 1.209-1.693 2.466l.885.105c.317 1.773.612 4.025 1.28 4.025.203 0 .212-.319.212-.577 0-.627-.378-1.38-.378-2.575 0-.552.179-1.027.587-1.027.277 0 .402.074.532.315-.11.818-.114 1.52.525 1.953.141.095.446.382.446.382s.525 2.067.557 2.205c.03.126.104.298.161.403l.666 1.163s.199 1.249.241 1.465c.105.533.648.579 1.091.583h.123c.444-.003.986-.049 1.091-.583.042-.215.241-1.465.241-1.465l.666-1.163c.057-.105.132-.277.161-.403.032-.138.558-2.205.558-2.205s.305-.287.446-.382c.638-.433.635-1.135.524-1.953.131-.241.255-.315.532-.315.408 0 .587.475.587 1.027 0 1.196-.378 1.948-.378 2.575 0 .259.008.577.212.577.667 0 .963-2.252 1.279-4.025l.885-.105c.086-1.257-.672-2.446-1.692-2.466zm-4.953-3.33c1.928 0 5.848.197 6.1.222.326.029.541.074.614.153.073.074.095.158.107.344.012.173.023.858.023.859.007.612.018 1.475.018 2.446 0 .57-.004 1.176-.014 1.791l.132.086c.011-.644.015-1.281.015-1.877 0-.972-.011-1.836-.018-2.448 0-.001-.011-.684-.023-.866-.012-.189-.038-.323-.146-.43-.136-.13-.366-.157-.695-.192-.265-.026-4.175-.222-6.113-.223-.278.002-.571-.003-.854-.003-2.323 0-5.419.21-5.675.226-.379.025-.58.033-.717.189-.106.13-.137.323-.144.513-.005.185-.007.786-.007.787-.007.611-.018 1.476-.018 2.448 0 .587.004 1.214.015 1.848l.132-.086c-.01-.604-.013-1.201-.013-1.762 0-.971.011-1.835.018-2.447 0-.001.002-.603.008-.784.004-.176.041-.348.113-.431.074-.096.236-.12.621-.141.257-.016 3.349-.226 5.665-.226l.856.004zm7.121 6.071l-.146.277s-.582.061-.602.061c-.281 2.239-1.19 4.63-2.183 4.63-.327 0-.336-.507-.336-1.111 0-.257.036-.486.076-.687-.106.197-.289.918-.289 1.534 0 .72.405 1.116 1.097 1.116.702 0 1.289-.343 1.673-.981-.248.686-.732 1.281-1.767 1.903a45.997 45.997 0 0 1-4.298 2.27c-.181.081-.416.187-.601.266-.17-.079-.333-.161-.47-.228-.025-.012-2.769-1.371-4.34-2.308-.969-.581-1.455-1.14-1.716-1.772.382.551.915.85 1.565.85.692 0 1.097-.396 1.097-1.116 0-.616-.182-1.337-.289-1.534.041.201.076.43.076.687 0 .603-.009 1.111-.336 1.111-.993 0-1.905-2.402-2.185-4.641l-.564-.058-.18-.336s-.033 1.075.003 1.78c.036.706.11 1.312.337 2.17.043.164.093.318.15.462.198.946.658 1.729 1.974 2.509 1.58.942 4.322 2.3 4.349 2.313.149.073.349.173.527.254.194-.081.459-.201.658-.29.021-.01 1.971-.883 4.312-2.278 1.458-.864 1.865-1.731 2.029-2.82.013-.05.027-.1.039-.152.194-.868.274-1.322.31-2.028.032-.606.031-1.591.03-1.853z" }) + ] + } + ); +}); + +exports.default = SiRam; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRam.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRam.d.ts new file mode 100644 index 000000000..876f5e9e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRam.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRam: IconType; +export { SiRam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRam.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRam.mjs new file mode 100644 index 000000000..fdaf10f2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRam.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRam = React.forwardRef(function SiRam2({ title = "Ram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.46 22.432l-.515-1.14h-.024l-.579 1.14h1.118zm.222.755h-1.556L9.792 24H7.344l1.791-3.359h3.627L14.494 24h-2.448l-.364-.813zm9.516-1.122h-.105L20.048 24h-1.492l-1.042-1.926-.099.001L17.406 24h-2.239v-3.359h3.522l.627 1.056h.03l.686-1.056h3.403V24h-2.239l.002-1.935zm-18.319.1h.467c.501 0 .647-.161.65-.322.007-.311-.052-.553-.625-.553h-.492v.875zm.512.703h-.499V24H.564v-3.359h3.358c1.761 0 2.48.29 2.566 1.037.043.372-.161 1.043-.977 1.11L6.728 24H4.265l-.874-1.132zM11.844.412c-2.642.003-5.658.155-6.66.24-1.093.093-1.289.164-1.29 1.087l-.009.838c-.008.658-.02 1.587-.02 2.633 0 1.704.101 3.717.226 5.373.134 1.761.24 3.152 2.458 4.475 1.704 1.016 4.668 2.484 4.697 2.498.171.085.565.275.699.327a.531.531 0 0 0 .126 0c.137-.054.572-.27.786-.366.021-.009 2.077-.95 4.608-2.459 2.218-1.323 2.324-2.714 2.459-4.476.125-1.656.226-3.67.226-5.374 0-1.045-.012-1.974-.02-2.632l-.008-.838c-.004-.813-.158-.993-1.291-1.087-1.002-.083-4.018-.238-6.66-.241h-.327v.002zM12.173 0c2.632.003 5.647.139 6.7.243 1.337.131 1.662.194 1.662 1.496 0 1.027.047 5.619-.199 8.875-.138 1.806-.257 3.365-2.658 4.798a50.914 50.914 0 0 1-4.71 2.487c-.311.138-.721.37-.804.387a.884.884 0 0 1-.312 0c-.092-.019-.593-.265-.786-.36-.193-.094-3.067-1.525-4.726-2.514-2.401-1.432-2.52-2.991-2.658-4.798-.247-3.256-.2-7.849-.2-8.875 0-1.302.325-1.365 1.662-1.496C6.197.139 9.212.003 11.844 0h.329zM8.279 2.312c1.95 0 2.955 1.664 3.532 2.876l-.181.991c-1.01-2.1-2.215-3.436-3.674-3.436-1.577 0-2.465 2.012-2.693 2.351.407-1.034 1.591-2.782 3.016-2.782zm10.343 2.783c-.229-.339-1.116-2.351-2.693-2.351-1.459 0-2.663 1.336-3.674 3.436l-.182-.992c.576-1.212 1.581-2.876 3.532-2.876 1.426 0 2.611 1.748 3.017 2.783zm-3.444 4.12c-.163.071-.288.117-.288.117l.098-.846.522-.684c.161.769.149 1.203-.332 1.413zm-6.374 0c-.481-.21-.493-.644-.332-1.414l.522.684.098.846s-.126-.045-.288-.116zm8.367-4.41c-1.276-.025-2.381.961-3.127 3.352l.419.264-.173.998-.952.338-.187 1.292.462-.587.649-.132-.289.778-.895.499-.318 2.084.12.783-.92.356v.001l-.844-.357.12-.783-.318-2.084-.895-.499-.288-.778.649.132.462.587-.188-1.292-.952-.338-.173-.998.418-.264c-.745-2.39-1.85-3.376-3.127-3.352-1.02.02-1.778 1.209-1.693 2.466l.885.105c.317 1.773.612 4.025 1.28 4.025.203 0 .212-.319.212-.577 0-.627-.378-1.38-.378-2.575 0-.552.179-1.027.587-1.027.277 0 .402.074.532.315-.11.818-.114 1.52.525 1.953.141.095.446.382.446.382s.525 2.067.557 2.205c.03.126.104.298.161.403l.666 1.163s.199 1.249.241 1.465c.105.533.648.579 1.091.583h.123c.444-.003.986-.049 1.091-.583.042-.215.241-1.465.241-1.465l.666-1.163c.057-.105.132-.277.161-.403.032-.138.558-2.205.558-2.205s.305-.287.446-.382c.638-.433.635-1.135.524-1.953.131-.241.255-.315.532-.315.408 0 .587.475.587 1.027 0 1.196-.378 1.948-.378 2.575 0 .259.008.577.212.577.667 0 .963-2.252 1.279-4.025l.885-.105c.086-1.257-.672-2.446-1.692-2.466zm-4.953-3.33c1.928 0 5.848.197 6.1.222.326.029.541.074.614.153.073.074.095.158.107.344.012.173.023.858.023.859.007.612.018 1.475.018 2.446 0 .57-.004 1.176-.014 1.791l.132.086c.011-.644.015-1.281.015-1.877 0-.972-.011-1.836-.018-2.448 0-.001-.011-.684-.023-.866-.012-.189-.038-.323-.146-.43-.136-.13-.366-.157-.695-.192-.265-.026-4.175-.222-6.113-.223-.278.002-.571-.003-.854-.003-2.323 0-5.419.21-5.675.226-.379.025-.58.033-.717.189-.106.13-.137.323-.144.513-.005.185-.007.786-.007.787-.007.611-.018 1.476-.018 2.448 0 .587.004 1.214.015 1.848l.132-.086c-.01-.604-.013-1.201-.013-1.762 0-.971.011-1.835.018-2.447 0-.001.002-.603.008-.784.004-.176.041-.348.113-.431.074-.096.236-.12.621-.141.257-.016 3.349-.226 5.665-.226l.856.004zm7.121 6.071l-.146.277s-.582.061-.602.061c-.281 2.239-1.19 4.63-2.183 4.63-.327 0-.336-.507-.336-1.111 0-.257.036-.486.076-.687-.106.197-.289.918-.289 1.534 0 .72.405 1.116 1.097 1.116.702 0 1.289-.343 1.673-.981-.248.686-.732 1.281-1.767 1.903a45.997 45.997 0 0 1-4.298 2.27c-.181.081-.416.187-.601.266-.17-.079-.333-.161-.47-.228-.025-.012-2.769-1.371-4.34-2.308-.969-.581-1.455-1.14-1.716-1.772.382.551.915.85 1.565.85.692 0 1.097-.396 1.097-1.116 0-.616-.182-1.337-.289-1.534.041.201.076.43.076.687 0 .603-.009 1.111-.336 1.111-.993 0-1.905-2.402-2.185-4.641l-.564-.058-.18-.336s-.033 1.075.003 1.78c.036.706.11 1.312.337 2.17.043.164.093.318.15.462.198.946.658 1.729 1.974 2.509 1.58.942 4.322 2.3 4.349 2.313.149.073.349.173.527.254.194-.081.459-.201.658-.29.021-.01 1.971-.883 4.312-2.278 1.458-.864 1.865-1.731 2.029-2.82.013-.05.027-.1.039-.152.194-.868.274-1.322.31-2.028.032-.606.031-1.591.03-1.853z" }) + ] + } + ); +}); + +export { SiRam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.cjs new file mode 100644 index 000000000..67e604853 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0075A8"; +const SiRancher = React__namespace.forwardRef(function SiRancher2({ title = "Rancher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.727 9.007a.713.713 0 01-.726.855h-1.542V8.798h.468a.883.883 0 00.875-.875v-.388c0-.477.12-.875.269-.875.139 0 .328.388.407.865l.249 1.482zm-3.49-1.253c.486 0 .874.388.894.885v4.555a.883.883 0 01-.875.875h-2.357a.883.883 0 01-.875-.875v-1.79a.871.871 0 00-.348.696v1.502c0 .477.397.875.875.875h1.531v2.327a.535.535 0 01-.537.538h-2.884a.535.535 0 01-.537-.538v-2.168a.535.535 0 00-.537-.537h-7.2a.535.535 0 00-.538.537v2.168a.535.535 0 01-.537.538H2.428a.535.535 0 01-.537-.538V10.58L.588 11.603c-.06.04-.14.04-.189-.02l-.368-.438a.135.135 0 01-.01-.159l1.91-2.914a.536.536 0 01.487-.318h10.165a.54.54 0 01.527.627l-.21 1.243a.54.54 0 00.528.626h2.039a.535.535 0 00.527-.437c-.13.04-.269.06-.418.06h-1.452c-.487 0-.815-.388-.736-.866l.249-1.482c.08-.477.258-.865.407-.865.15 0 .269.398.269.875v.229c.02-.01.05-.01.08-.01h4.843zm3.65-.537c0-.388.288-.557.556-.557.269 0 .557.17.557.557 0 .378-.288.547-.557.547-.268 0-.557-.17-.557-.547zm.984 0c0-.308-.2-.438-.418-.438-.219 0-.428.13-.428.438 0 .298.21.438.428.438.219-.01.418-.14.418-.438zm-.607-.279h.199c.1 0 .199.03.199.17 0 .08-.06.129-.13.149l.13.228h-.12l-.119-.218h-.05v.218h-.109v-.547zm.199.25c.05 0 .09-.03.09-.08 0-.06-.05-.07-.09-.07h-.1v.15h.1z" }) + ] + } + ); +}); + +exports.default = SiRancher; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.d.ts new file mode 100644 index 000000000..dd13a2a14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0075A8"; +declare const SiRancher: IconType; +export { SiRancher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.mjs new file mode 100644 index 000000000..74e34da0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRancher.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0075A8"; +const SiRancher = React.forwardRef(function SiRancher2({ title = "Rancher", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.727 9.007a.713.713 0 01-.726.855h-1.542V8.798h.468a.883.883 0 00.875-.875v-.388c0-.477.12-.875.269-.875.139 0 .328.388.407.865l.249 1.482zm-3.49-1.253c.486 0 .874.388.894.885v4.555a.883.883 0 01-.875.875h-2.357a.883.883 0 01-.875-.875v-1.79a.871.871 0 00-.348.696v1.502c0 .477.397.875.875.875h1.531v2.327a.535.535 0 01-.537.538h-2.884a.535.535 0 01-.537-.538v-2.168a.535.535 0 00-.537-.537h-7.2a.535.535 0 00-.538.537v2.168a.535.535 0 01-.537.538H2.428a.535.535 0 01-.537-.538V10.58L.588 11.603c-.06.04-.14.04-.189-.02l-.368-.438a.135.135 0 01-.01-.159l1.91-2.914a.536.536 0 01.487-.318h10.165a.54.54 0 01.527.627l-.21 1.243a.54.54 0 00.528.626h2.039a.535.535 0 00.527-.437c-.13.04-.269.06-.418.06h-1.452c-.487 0-.815-.388-.736-.866l.249-1.482c.08-.477.258-.865.407-.865.15 0 .269.398.269.875v.229c.02-.01.05-.01.08-.01h4.843zm3.65-.537c0-.388.288-.557.556-.557.269 0 .557.17.557.557 0 .378-.288.547-.557.547-.268 0-.557-.17-.557-.547zm.984 0c0-.308-.2-.438-.418-.438-.219 0-.428.13-.428.438 0 .298.21.438.428.438.219-.01.418-.14.418-.438zm-.607-.279h.199c.1 0 .199.03.199.17 0 .08-.06.129-.13.149l.13.228h-.12l-.119-.218h-.05v.218h-.109v-.547zm.199.25c.05 0 .09-.03.09-.08 0-.06-.05-.07-.09-.07h-.1v.15h.1z" }) + ] + } + ); +}); + +export { SiRancher as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.cjs new file mode 100644 index 000000000..af68ff842 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0055DA"; +const SiRapid = React__namespace.forwardRef(function SiRapid2({ title = "Rapid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.028 15.798c-.212-.065-.228-.359.017-.457 4.216-1.993 3.938-6.519 3.938-6.519C19.967 4.232 16.6-.016 11.158 0 5.112.033 1.468 4.787 1.5 10.407 1.55 20.26 9.067 24.017 11.42 24l-.016-3.905c0-.62 0-1.11.375-1.11 0 0 2.42 2.434 5.116 2.417 4.183-.016 5.605-3.529 5.605-3.529zm-4.837-3.006a3.86 3.86 0 0 1-3.89-3.855 3.86 3.86 0 0 1 3.857-3.889 3.86 3.86 0 0 1 3.89 3.856c0 2.14-1.716 3.888-3.857 3.888z" }) + ] + } + ); +}); + +exports.default = SiRapid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.d.ts new file mode 100644 index 000000000..0845eb100 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0055DA"; +declare const SiRapid: IconType; +export { SiRapid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.mjs new file mode 100644 index 000000000..6a0535de9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRapid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0055DA"; +const SiRapid = React.forwardRef(function SiRapid2({ title = "Rapid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.028 15.798c-.212-.065-.228-.359.017-.457 4.216-1.993 3.938-6.519 3.938-6.519C19.967 4.232 16.6-.016 11.158 0 5.112.033 1.468 4.787 1.5 10.407 1.55 20.26 9.067 24.017 11.42 24l-.016-3.905c0-.62 0-1.11.375-1.11 0 0 2.42 2.434 5.116 2.417 4.183-.016 5.605-3.529 5.605-3.529zm-4.837-3.006a3.86 3.86 0 0 1-3.89-3.855 3.86 3.86 0 0 1 3.857-3.889 3.86 3.86 0 0 1 3.89 3.856c0 2.14-1.716 3.888-3.857 3.888z" }) + ] + } + ); +}); + +export { SiRapid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.cjs new file mode 100644 index 000000000..688de0e60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FEDA03"; +const SiRarible = React__namespace.forwardRef(function SiRarible2({ title = "Rarible", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.8 0A4.79 4.79 0 000 4.8v14.4A4.79 4.79 0 004.8 24h14.4a4.79 4.79 0 004.8-4.8V4.8A4.79 4.79 0 0019.2 0zm1.32 7.68h8.202c2.06 0 3.666.44 3.666 2.334 0 1.137-.671 1.702-1.427 1.898.904.268 1.558 1 1.558 2.16v2.131h-3.451V14.18c0-.62-.37-.87-1-.87H9.572v2.893H6.12zm3.452 2.5v.834h4.155c.452 0 .726-.06.726-.416 0-.358-.274-.418-.726-.418z" }) + ] + } + ); +}); + +exports.default = SiRarible; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.d.ts new file mode 100644 index 000000000..1046722b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FEDA03"; +declare const SiRarible: IconType; +export { SiRarible as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.mjs new file mode 100644 index 000000000..566391712 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRarible.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FEDA03"; +const SiRarible = React.forwardRef(function SiRarible2({ title = "Rarible", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.8 0A4.79 4.79 0 000 4.8v14.4A4.79 4.79 0 004.8 24h14.4a4.79 4.79 0 004.8-4.8V4.8A4.79 4.79 0 0019.2 0zm1.32 7.68h8.202c2.06 0 3.666.44 3.666 2.334 0 1.137-.671 1.702-1.427 1.898.904.268 1.558 1 1.558 2.16v2.131h-3.451V14.18c0-.62-.37-.87-1-.87H9.572v2.893H6.12zm3.452 2.5v.834h4.155c.452 0 .726-.06.726-.416 0-.358-.274-.418-.726-.418z" }) + ] + } + ); +}); + +export { SiRarible as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.cjs new file mode 100644 index 000000000..21f95afd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5A17EE"; +const SiRasa = React__namespace.forwardRef(function SiRasa2({ title = "Rasa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.848 15.852-3.882-2.034H.97V7.515h22.06v6.303h-2.182v2.034ZM0 6.545v8.243h16.727l5.091 2.667v-2.667H24V6.545H0Zm1.94 1.94h4.12v2.18l-1.33.517 1.362 1.666H4.84l-1.06-1.296-.87.339v.957h-.97V8.485ZM8 12.848h-.97V8.485h4.364v4.363h-.97v-1.454H8v1.454Zm4.364-1.696V8.485h4.363v.97h-3.394v.727h3.394v2.666h-4.363v-.97h3.394v-.726h-3.394Zm5.333-.243V8.485h4.364v4.363h-.97v-1.454h-2.424v1.454h-.97V10.91Zm-14.788-.06 2.182-.848v-.546H2.909v1.395ZM8 9.456v.97h2.424v-.97H8Zm13.09.97v-.97h-2.423v.97h2.424Z" }) + ] + } + ); +}); + +exports.default = SiRasa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.d.ts new file mode 100644 index 000000000..b5723f2fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5A17EE"; +declare const SiRasa: IconType; +export { SiRasa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.mjs new file mode 100644 index 000000000..fc48dc5f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRasa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5A17EE"; +const SiRasa = React.forwardRef(function SiRasa2({ title = "Rasa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m20.848 15.852-3.882-2.034H.97V7.515h22.06v6.303h-2.182v2.034ZM0 6.545v8.243h16.727l5.091 2.667v-2.667H24V6.545H0Zm1.94 1.94h4.12v2.18l-1.33.517 1.362 1.666H4.84l-1.06-1.296-.87.339v.957h-.97V8.485ZM8 12.848h-.97V8.485h4.364v4.363h-.97v-1.454H8v1.454Zm4.364-1.696V8.485h4.363v.97h-3.394v.727h3.394v2.666h-4.363v-.97h3.394v-.726h-3.394Zm5.333-.243V8.485h4.364v4.363h-.97v-1.454h-2.424v1.454h-.97V10.91Zm-14.788-.06 2.182-.848v-.546H2.909v1.395ZM8 9.456v.97h2.424v-.97H8Zm13.09.97v-.97h-2.423v.97h2.424Z" }) + ] + } + ); +}); + +export { SiRasa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.cjs new file mode 100644 index 000000000..0bf2c18fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A22846"; +const SiRaspberrypi = React__namespace.forwardRef(function SiRaspberrypi2({ title = "Raspberry Pi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.8955 10.8961-.1726-.3028c.0068-2.1746-1.0022-3.061-2.1788-3.7348.356-.0938.7237-.1711.8245-.6182.6118-.1566.7397-.4398.8011-.7398.16-.1066.6955-.4061.6394-.9211.2998-.2069.4669-.4725.3819-.8487.3222-.3515.407-.6419.2702-.9096.3868-.4805.2152-.7295.05-.9817.2897-.5254.0341-1.0887-.7758-.9944-.3221-.4733-1.0244-.3659-1.133-.3637-.1215-.1519-.2819-.2821-.7755-.219-.3197-.2851-.6771-.2364-1.0458-.0964-.4378-.3403-.7275-.0675-1.0584.0356-.53-.1706-.6513.0631-.9117.1583-.5781-.1203-.7538.1416-1.0309.4182l-.3224-.0063c-.8719.5061-1.305 1.5366-1.4585 2.0664-.1536-.5299-.5858-1.5604-1.4575-2.0664l-.3223.0063C9.942.5014 9.7663.2394 9.1883.3597 8.9279.2646 8.807.0309 8.2766.2015c-.2172-.0677-.417-.2084-.6522-.2012l.0004.0002C7.5017.0041 7.369.049 7.2185.166c-.3688-.1401-.7262-.1887-1.0459.0964-.4936-.0631-.654.0671-.7756.219C5.2887.4791 4.5862.3717 4.264.845c-.8096-.0943-1.0655.4691-.7756.9944-.1653.2521-.3366.5013.05.9819-.1367.2677-.0519.5581.2703.9096-.085.3763.0822.6418.3819.8487-.0561.515.4795.8144.6394.9211.0614.3001.1894.5832.8011.7398.1008.4472.4685.5244.8245.6183-1.1766.6737-2.1856 1.56-2.1788 3.7348l-.1724.3028c-1.3491.8082-2.5629 3.4056-.6648 5.5167.124.6609.3319 1.1355.5171 1.6609.2769 2.117 2.0841 3.1082 2.5608 3.2255.6984.524 1.4423 1.0212 2.449 1.3696.949.964 1.977 1.3314 3.0107 1.3308.0152 0 .0306.0002.0457 0 1.0337.0006 2.0618-.3668 3.0107-1.3308 1.0067-.3483 1.7506-.8456 2.4491-1.3696.4766-.1173 2.2838-1.1085 2.5607-3.2255.1851-.5253.3931-1 .517-1.6609 1.8981-2.1113.6843-4.7089-.6649-5.517zm-1.0386-.3715c-.0704.8759-4.6354-3.0504-3.8472-3.1808 2.1391-.3558 3.9191.896 3.8472 3.1808zm-2.0155 4.3649c-1.1481.7409-2.8025.2626-3.6953-1.0681-.8928-1.3306-.6858-3.0101.4623-3.7509 1.1481-.7409 2.8025-.2627 3.6953 1.068.8927 1.3307.6858 3.0101-.4623 3.751zM13.6591 1.3721c.0396.1967.0843.321.1354.3577.2537-.272.4611-.5506.7878-.8123.0011.1537-.0776.3205.1169.4425.1752-.2356.4119-.4459.7263-.6244-.1514.2611-.026.3404.0554.4486.24-.2059.4681-.4144.9109-.5759-.121.1474-.2902.2914-.1108.4607.2473-.1544.496-.3086 1.0833-.4183-.1323.1475-.4059.295-.2401.4426.3104-.1186.6539-.2047 1.034-.2546-.182.1496-.3337.2963-.1846.4122.3323-.1022.7899-.2398 1.2372-.1212l-.2832.2849c-.0314.0382.6623.0297 1.1202.0364-.167.2321-.3375.4562-.437.8548.0454.0459.2723.0204.4862 0-.2194.4618-.6004.5783-.6893.776.134.1015.32.075.5232.006-.158.3254-.4892.5484-.7509.8123.0662.047.1818.075.4555.0425-.2418.257-.5339.492-.8802.7032.0614.0708.2722.0681.4678.0727-.3136.3069-.7173.466-1.0955.6668.1885.1288.3234.0988.4678.097-.2676.2198-.7225.3342-1.1448.4668.0803.1249.1607.1589.3324.194-.447.2473-1.0873.1343-1.2679.2607.0435.1243.1665.2053.3139.2728-.7197.0418-2.6879-.0262-3.0652-1.5156.7367-.8094 2.0813-1.7593 4.394-2.934-1.7994.6022-3.4229 1.405-4.7817 2.5096-1.5978-.7436-.4965-2.6197.283-3.3645zm-1.6126 5.3718c1.1329-.0123 2.5356.8325 2.53 1.6286-.005.7027-.9851 1.2715-2.5213 1.2607-1.5043-.0177-2.5172-.7148-2.5137-1.3957.003-.5603 1.2282-1.5263 2.505-1.4936zm-5.7646-.6006c.1717-.0351.252-.0692.3323-.194-.4223-.1327-.8772-.247-1.1448-.4668.1444.0018.2792.0318.4678-.097-.3783-.2008-.782-.3599-1.0956-.6668.1955-.0048.4064-.002.4677-.0728-.3462-.2113-.6383-.4463-.8801-.7033.2738.0325.3893.0045.4555-.0425-.2617-.264-.593-.487-.7509-.8123.2032.069.3892.0954.5232-.006-.089-.1977-.47-.3142-.6894-.776.214.0204.4409.0459.4863 0-.0994-.3985-.2698-.6226-.4369-.8547.4579-.0067 1.1516.0018 1.1202-.0364l-.2831-.2849c.4472-.1186.9049.019 1.2371.1213.1492-.1159-.0026-.2626-.1847-.4123.3801.05.7236.1361 1.034.2547.1659-.1476-.1076-.2951-.24-.4426.5872.1097.8361.2639 1.0833.4183.1794-.1694.0103-.3133-.1108-.4607.4428.1615.6709.37.911.5759.0814-.1082.2068-.1875.0554-.4486.3143.1785.5511.3888.7263.6244.1945-.122.1159-.2888.1169-.4426.3267.2618.534.5404.7879.8124.0511-.0366.0959-.161.1354-.3577.7794.7448 1.8807 2.6208.2831 3.3646-1.3589-1.1039-2.9817-1.9064-4.78-2.5086 2.3115 1.174 3.6556 2.1239 4.392 2.9328-.3773 1.4895-2.3455 1.5575-3.0651 1.5157.1473-.0676.2703-.1485.3139-.2728-.1806-.1264-.8209-.0134-1.2679-.2607zm2.8175 1.1334c.7881.1304-3.7769 4.0567-3.8472 3.1809-.0719-2.2846 1.7079-3.5367 3.8472-3.1809zm-4.847 8.7567c-1.1094-.8789-1.4668-3.4529.5901-4.6097 1.2394-.3273.4184 5.051-.5901 4.6097zm4.2656 4.5989c-.6257.3719-2.1452.2187-3.2252-1.3095-.7283-1.2823-.6345-2.5872-.123-2.9705.7648-.4589 1.9464.1609 2.8559 1.2003.7923.9405 1.1536 2.5927.4923 3.0797zm-1.2415-5.6086c-1.1481-.7409-1.3551-2.4203-.4623-3.7511.8928-1.3307 2.5472-1.8089 3.6952-1.068 1.1481.7409 1.3551 2.4203.4623 3.7509-.8926 1.3308-2.5471 1.809-3.6952 1.0682zm4.7948 8.2279c-1.3763.0584-2.7258-1.1105-2.7081-1.5157-.0206-.594 1.6758-1.0578 2.782-1.0306 1.1131-.0479 2.6068.3531 2.6097.8851.0184.5166-1.3547 1.6838-2.6836 1.6612zm2.7584-5.8578c.0081 1.3899-1.226 2.5225-2.7562 2.5299-1.5302.0073-2.7773-1.1135-2.7854-2.5033v-.0265c-.008-1.3899 1.2259-2.5226 2.7562-2.5299 1.5302-.0073 2.7773 1.1134 2.7853 2.5033a.7794.7794 0 0 1 .0001.0265zm3.855 2.0029c-1.186 1.6208-2.7916 1.684-3.3896 1.2325-.6255-.5811-.148-2.3854.7094-3.3747v-.0003c.9812-1.0912 2.0302-1.8037 2.7609-1.2469.4919.4828.7805 2.3008-.0807 3.3894zm1.0724-3.4301c-1.0086.4413-1.8298-4.9372-.5901-4.61 2.0568 1.1569 1.6994 3.731.5901 4.61zm-.0256-8.3279h.2985v-.5304h.2986c.1502 0 .2053.0624.2262.2052.0152.1088.0113.2395.0477.3253h.2984c-.0533-.0763-.0515-.2358-.0571-.3213-.0097-.1373-.0513-.2796-.1977-.3176v-.0037c.1502-.061.2149-.1807.2149-.341 0-.2048-.1539-.3738-.3974-.3738h-.732v1.3573zm.2985-1.1255h.3269c.1333 0 .2054.0573.2054.188 0 .1369-.0721.1942-.2054.1942H20.03v-.3822zm-1.0337.4633c0 .7009.5682 1.2694 1.2695 1.2694s1.2695-.5684 1.2695-1.2694c0-.7013-.5683-1.2697-1.2695-1.2697-.7013 0-1.2695.5684-1.2695 1.2697zm2.3275 0c0 .5845-.4737 1.058-1.058 1.058s-1.058-.4735-1.058-1.058c0-.5849.4737-1.058 1.058-1.058s1.058.4731 1.058 1.058z" }) + ] + } + ); +}); + +exports.default = SiRaspberrypi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.d.ts new file mode 100644 index 000000000..9b35bab94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A22846"; +declare const SiRaspberrypi: IconType; +export { SiRaspberrypi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.mjs new file mode 100644 index 000000000..ff3592fa9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaspberrypi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A22846"; +const SiRaspberrypi = React.forwardRef(function SiRaspberrypi2({ title = "Raspberry Pi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.8955 10.8961-.1726-.3028c.0068-2.1746-1.0022-3.061-2.1788-3.7348.356-.0938.7237-.1711.8245-.6182.6118-.1566.7397-.4398.8011-.7398.16-.1066.6955-.4061.6394-.9211.2998-.2069.4669-.4725.3819-.8487.3222-.3515.407-.6419.2702-.9096.3868-.4805.2152-.7295.05-.9817.2897-.5254.0341-1.0887-.7758-.9944-.3221-.4733-1.0244-.3659-1.133-.3637-.1215-.1519-.2819-.2821-.7755-.219-.3197-.2851-.6771-.2364-1.0458-.0964-.4378-.3403-.7275-.0675-1.0584.0356-.53-.1706-.6513.0631-.9117.1583-.5781-.1203-.7538.1416-1.0309.4182l-.3224-.0063c-.8719.5061-1.305 1.5366-1.4585 2.0664-.1536-.5299-.5858-1.5604-1.4575-2.0664l-.3223.0063C9.942.5014 9.7663.2394 9.1883.3597 8.9279.2646 8.807.0309 8.2766.2015c-.2172-.0677-.417-.2084-.6522-.2012l.0004.0002C7.5017.0041 7.369.049 7.2185.166c-.3688-.1401-.7262-.1887-1.0459.0964-.4936-.0631-.654.0671-.7756.219C5.2887.4791 4.5862.3717 4.264.845c-.8096-.0943-1.0655.4691-.7756.9944-.1653.2521-.3366.5013.05.9819-.1367.2677-.0519.5581.2703.9096-.085.3763.0822.6418.3819.8487-.0561.515.4795.8144.6394.9211.0614.3001.1894.5832.8011.7398.1008.4472.4685.5244.8245.6183-1.1766.6737-2.1856 1.56-2.1788 3.7348l-.1724.3028c-1.3491.8082-2.5629 3.4056-.6648 5.5167.124.6609.3319 1.1355.5171 1.6609.2769 2.117 2.0841 3.1082 2.5608 3.2255.6984.524 1.4423 1.0212 2.449 1.3696.949.964 1.977 1.3314 3.0107 1.3308.0152 0 .0306.0002.0457 0 1.0337.0006 2.0618-.3668 3.0107-1.3308 1.0067-.3483 1.7506-.8456 2.4491-1.3696.4766-.1173 2.2838-1.1085 2.5607-3.2255.1851-.5253.3931-1 .517-1.6609 1.8981-2.1113.6843-4.7089-.6649-5.517zm-1.0386-.3715c-.0704.8759-4.6354-3.0504-3.8472-3.1808 2.1391-.3558 3.9191.896 3.8472 3.1808zm-2.0155 4.3649c-1.1481.7409-2.8025.2626-3.6953-1.0681-.8928-1.3306-.6858-3.0101.4623-3.7509 1.1481-.7409 2.8025-.2627 3.6953 1.068.8927 1.3307.6858 3.0101-.4623 3.751zM13.6591 1.3721c.0396.1967.0843.321.1354.3577.2537-.272.4611-.5506.7878-.8123.0011.1537-.0776.3205.1169.4425.1752-.2356.4119-.4459.7263-.6244-.1514.2611-.026.3404.0554.4486.24-.2059.4681-.4144.9109-.5759-.121.1474-.2902.2914-.1108.4607.2473-.1544.496-.3086 1.0833-.4183-.1323.1475-.4059.295-.2401.4426.3104-.1186.6539-.2047 1.034-.2546-.182.1496-.3337.2963-.1846.4122.3323-.1022.7899-.2398 1.2372-.1212l-.2832.2849c-.0314.0382.6623.0297 1.1202.0364-.167.2321-.3375.4562-.437.8548.0454.0459.2723.0204.4862 0-.2194.4618-.6004.5783-.6893.776.134.1015.32.075.5232.006-.158.3254-.4892.5484-.7509.8123.0662.047.1818.075.4555.0425-.2418.257-.5339.492-.8802.7032.0614.0708.2722.0681.4678.0727-.3136.3069-.7173.466-1.0955.6668.1885.1288.3234.0988.4678.097-.2676.2198-.7225.3342-1.1448.4668.0803.1249.1607.1589.3324.194-.447.2473-1.0873.1343-1.2679.2607.0435.1243.1665.2053.3139.2728-.7197.0418-2.6879-.0262-3.0652-1.5156.7367-.8094 2.0813-1.7593 4.394-2.934-1.7994.6022-3.4229 1.405-4.7817 2.5096-1.5978-.7436-.4965-2.6197.283-3.3645zm-1.6126 5.3718c1.1329-.0123 2.5356.8325 2.53 1.6286-.005.7027-.9851 1.2715-2.5213 1.2607-1.5043-.0177-2.5172-.7148-2.5137-1.3957.003-.5603 1.2282-1.5263 2.505-1.4936zm-5.7646-.6006c.1717-.0351.252-.0692.3323-.194-.4223-.1327-.8772-.247-1.1448-.4668.1444.0018.2792.0318.4678-.097-.3783-.2008-.782-.3599-1.0956-.6668.1955-.0048.4064-.002.4677-.0728-.3462-.2113-.6383-.4463-.8801-.7033.2738.0325.3893.0045.4555-.0425-.2617-.264-.593-.487-.7509-.8123.2032.069.3892.0954.5232-.006-.089-.1977-.47-.3142-.6894-.776.214.0204.4409.0459.4863 0-.0994-.3985-.2698-.6226-.4369-.8547.4579-.0067 1.1516.0018 1.1202-.0364l-.2831-.2849c.4472-.1186.9049.019 1.2371.1213.1492-.1159-.0026-.2626-.1847-.4123.3801.05.7236.1361 1.034.2547.1659-.1476-.1076-.2951-.24-.4426.5872.1097.8361.2639 1.0833.4183.1794-.1694.0103-.3133-.1108-.4607.4428.1615.6709.37.911.5759.0814-.1082.2068-.1875.0554-.4486.3143.1785.5511.3888.7263.6244.1945-.122.1159-.2888.1169-.4426.3267.2618.534.5404.7879.8124.0511-.0366.0959-.161.1354-.3577.7794.7448 1.8807 2.6208.2831 3.3646-1.3589-1.1039-2.9817-1.9064-4.78-2.5086 2.3115 1.174 3.6556 2.1239 4.392 2.9328-.3773 1.4895-2.3455 1.5575-3.0651 1.5157.1473-.0676.2703-.1485.3139-.2728-.1806-.1264-.8209-.0134-1.2679-.2607zm2.8175 1.1334c.7881.1304-3.7769 4.0567-3.8472 3.1809-.0719-2.2846 1.7079-3.5367 3.8472-3.1809zm-4.847 8.7567c-1.1094-.8789-1.4668-3.4529.5901-4.6097 1.2394-.3273.4184 5.051-.5901 4.6097zm4.2656 4.5989c-.6257.3719-2.1452.2187-3.2252-1.3095-.7283-1.2823-.6345-2.5872-.123-2.9705.7648-.4589 1.9464.1609 2.8559 1.2003.7923.9405 1.1536 2.5927.4923 3.0797zm-1.2415-5.6086c-1.1481-.7409-1.3551-2.4203-.4623-3.7511.8928-1.3307 2.5472-1.8089 3.6952-1.068 1.1481.7409 1.3551 2.4203.4623 3.7509-.8926 1.3308-2.5471 1.809-3.6952 1.0682zm4.7948 8.2279c-1.3763.0584-2.7258-1.1105-2.7081-1.5157-.0206-.594 1.6758-1.0578 2.782-1.0306 1.1131-.0479 2.6068.3531 2.6097.8851.0184.5166-1.3547 1.6838-2.6836 1.6612zm2.7584-5.8578c.0081 1.3899-1.226 2.5225-2.7562 2.5299-1.5302.0073-2.7773-1.1135-2.7854-2.5033v-.0265c-.008-1.3899 1.2259-2.5226 2.7562-2.5299 1.5302-.0073 2.7773 1.1134 2.7853 2.5033a.7794.7794 0 0 1 .0001.0265zm3.855 2.0029c-1.186 1.6208-2.7916 1.684-3.3896 1.2325-.6255-.5811-.148-2.3854.7094-3.3747v-.0003c.9812-1.0912 2.0302-1.8037 2.7609-1.2469.4919.4828.7805 2.3008-.0807 3.3894zm1.0724-3.4301c-1.0086.4413-1.8298-4.9372-.5901-4.61 2.0568 1.1569 1.6994 3.731.5901 4.61zm-.0256-8.3279h.2985v-.5304h.2986c.1502 0 .2053.0624.2262.2052.0152.1088.0113.2395.0477.3253h.2984c-.0533-.0763-.0515-.2358-.0571-.3213-.0097-.1373-.0513-.2796-.1977-.3176v-.0037c.1502-.061.2149-.1807.2149-.341 0-.2048-.1539-.3738-.3974-.3738h-.732v1.3573zm.2985-1.1255h.3269c.1333 0 .2054.0573.2054.188 0 .1369-.0721.1942-.2054.1942H20.03v-.3822zm-1.0337.4633c0 .7009.5682 1.2694 1.2695 1.2694s1.2695-.5684 1.2695-1.2694c0-.7013-.5683-1.2697-1.2695-1.2697-.7013 0-1.2695.5684-1.2695 1.2697zm2.3275 0c0 .5845-.4737 1.058-1.058 1.058s-1.058-.4735-1.058-1.058c0-.5849.4737-1.058 1.058-1.058s1.058.4731 1.058 1.058z" }) + ] + } + ); +}); + +export { SiRaspberrypi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.cjs new file mode 100644 index 000000000..e00ea98e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRatatui = React__namespace.forwardRef(function SiRatatui2({ title = "Ratatui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" }) + ] + } + ); +}); + +exports.default = SiRatatui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.d.ts new file mode 100644 index 000000000..4403a6422 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRatatui: IconType; +export { SiRatatui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.mjs new file mode 100644 index 000000000..35eb585f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRatatui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRatatui = React.forwardRef(function SiRatatui2({ title = "Ratatui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" }) + ] + } + ); +}); + +export { SiRatatui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.cjs new file mode 100644 index 000000000..a07fa30a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE6E62"; +const SiRavelry = React__namespace.forwardRef(function SiRavelry2({ title = "Ravelry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9718 10.9238c-.0597-.51098-.084-1.02918-.1851-1.53174-.1227-.61046-.2793-1.21823-.4755-1.80886-.34288-1.03247-.84358-1.9895-1.52577-2.84163-.2955-.3691-.59489-.73971-.92998-1.07185-.699-.69252-1.47808-1.28586-2.32827-1.78481-.88588-.52-1.81527-.9414-2.80316-1.21913-.54449-.153-1.10068-.26842-1.65627-.37632-.3351-.06493-.67949-.08236-1.01938-.12264-.0156-.0018-.0297-.01773-.0444-.02735-.5319.0003-1.06379.0003-1.59568.0003-.1191.01924-.2376.04569-.3576.0568-.57748.05381-1.13818.18667-1.69287.35078-.68279.20169-1.33498.47912-1.96527.80825-.66029.34506-1.28548.74813-1.88187 1.19388-.3048.22783-.6063.46258-.88829.71747-.50279.45507-1.00678.91104-1.47897 1.39707-.6378.65676-1.18769 1.38595-1.66288 2.17196C1.05934 7.533.71345 8.2628.46776 9.03978c-.1773.56118-.3054 1.13197-.3801 1.7178-.0744.58431-.1062 1.17043-.0768 1.75565.0336.66577.0951 1.32944.2187 1.9886.1713.91345.4392 1.79083.82679 2.63394.3207.69703.72149 1.34267 1.18618 1.95344.3897.51187.83099.97476 1.30258 1.40428.63239.5759 1.32508 1.07546 2.06487 1.5116.87719.51728 1.79787.92937 2.76266 1.24918.65639.21762 1.32808.37271 2.00847.48603.3.0499.60659.06192.90988.09258.0204.0021.0393.01834.0588.02765h1.59568c.1239-.01924.2472-.04629.372-.05651.80728-.06583 1.58667-.2636 2.34686-.52961.85018-.29787 1.66557-.6784 2.41916-1.17705.4818-.31861.95849-.64624 1.42018-.9931.2859-.21491.54299-.4695.80579-.71447.1959-.18275.38369-.37452.56879-.56839.59639-.6261 1.11118-1.31471 1.55307-2.05773.4716-.79292.8577-1.62611 1.10219-2.51671.1413-.51459.2445-1.04.3468-1.5642.051-.2609.0618-.5299.0924-.79502.0018-.01563.0177-.02976.0273-.04448v-1.8314c-.0096-.02946-.0246-.058-.0282-.08807zm-7.96218-.05682s-.81899-.14728-1.40698-.14728c-1.34398 0-1.65897.7364-1.65897 1.8305v4.62885H9.31072V7.75303h3.63295v1.57802c.441-1.32554 1.32298-1.78842 3.06595-1.78842z" }) + ] + } + ); +}); + +exports.default = SiRavelry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.d.ts new file mode 100644 index 000000000..174c1c806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE6E62"; +declare const SiRavelry: IconType; +export { SiRavelry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.mjs new file mode 100644 index 000000000..c3ba22fb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRavelry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE6E62"; +const SiRavelry = React.forwardRef(function SiRavelry2({ title = "Ravelry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9718 10.9238c-.0597-.51098-.084-1.02918-.1851-1.53174-.1227-.61046-.2793-1.21823-.4755-1.80886-.34288-1.03247-.84358-1.9895-1.52577-2.84163-.2955-.3691-.59489-.73971-.92998-1.07185-.699-.69252-1.47808-1.28586-2.32827-1.78481-.88588-.52-1.81527-.9414-2.80316-1.21913-.54449-.153-1.10068-.26842-1.65627-.37632-.3351-.06493-.67949-.08236-1.01938-.12264-.0156-.0018-.0297-.01773-.0444-.02735-.5319.0003-1.06379.0003-1.59568.0003-.1191.01924-.2376.04569-.3576.0568-.57748.05381-1.13818.18667-1.69287.35078-.68279.20169-1.33498.47912-1.96527.80825-.66029.34506-1.28548.74813-1.88187 1.19388-.3048.22783-.6063.46258-.88829.71747-.50279.45507-1.00678.91104-1.47897 1.39707-.6378.65676-1.18769 1.38595-1.66288 2.17196C1.05934 7.533.71345 8.2628.46776 9.03978c-.1773.56118-.3054 1.13197-.3801 1.7178-.0744.58431-.1062 1.17043-.0768 1.75565.0336.66577.0951 1.32944.2187 1.9886.1713.91345.4392 1.79083.82679 2.63394.3207.69703.72149 1.34267 1.18618 1.95344.3897.51187.83099.97476 1.30258 1.40428.63239.5759 1.32508 1.07546 2.06487 1.5116.87719.51728 1.79787.92937 2.76266 1.24918.65639.21762 1.32808.37271 2.00847.48603.3.0499.60659.06192.90988.09258.0204.0021.0393.01834.0588.02765h1.59568c.1239-.01924.2472-.04629.372-.05651.80728-.06583 1.58667-.2636 2.34686-.52961.85018-.29787 1.66557-.6784 2.41916-1.17705.4818-.31861.95849-.64624 1.42018-.9931.2859-.21491.54299-.4695.80579-.71447.1959-.18275.38369-.37452.56879-.56839.59639-.6261 1.11118-1.31471 1.55307-2.05773.4716-.79292.8577-1.62611 1.10219-2.51671.1413-.51459.2445-1.04.3468-1.5642.051-.2609.0618-.5299.0924-.79502.0018-.01563.0177-.02976.0273-.04448v-1.8314c-.0096-.02946-.0246-.058-.0282-.08807zm-7.96218-.05682s-.81899-.14728-1.40698-.14728c-1.34398 0-1.65897.7364-1.65897 1.8305v4.62885H9.31072V7.75303h3.63295v1.57802c.441-1.32554 1.32298-1.78842 3.06595-1.78842z" }) + ] + } + ); +}); + +export { SiRavelry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRay.cjs new file mode 100644 index 000000000..938ddd807 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#028CF0"; +const SiRay = React__namespace.forwardRef(function SiRay2({ title = "Ray", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.153 12.826c-.63-.183-1.03.15-1.378.846-.58 1.13-1.643 1.644-2.888 1.594-1.245-.05-2.257-.63-2.788-1.776-.233-.498-.498-.664-1.046-.68-.93-.017-1.643.016-2.174 1.062-.631 1.261-2.258 1.693-3.619 1.261a3.234 3.234 0 0 1-2.257-3.22 3.198 3.198 0 0 1 2.29-3.02 3.276 3.276 0 0 1 3.702 1.327c.216.315.216.863.597.93.648.1 1.328.033 1.992.033.299 0 .316-.266.399-.465.58-1.295 1.61-1.959 2.987-1.975 1.361-.017 2.39.647 2.955 1.892.215.465.48.598.946.548.166-.017.332.016.498 0 .464-.083 1.062.282 1.344-.448.282-.73-.382-.913-.68-1.245-.847-.946-1.81-1.793-2.673-2.706-.415-.465-.763-.614-1.41-.415-1.876.614-3.619-.431-4.15-2.357-.448-1.676.714-3.535 2.44-3.917a3.293 3.293 0 0 1 3.95 2.457c.017.05.017.083.033.133.117.564.117 1.145-.132 1.626-.283.531-.133.83.249 1.195a152.61 152.61 0 0 1 3.286 3.27c.299.299.498.349.913.2 1.51-.565 2.97-.1 3.884 1.161a3.266 3.266 0 0 1-.067 3.801c-.896 1.195-2.357 1.643-3.834 1.079-.381-.15-.58-.1-.846.182a163.619 163.619 0 0 1-3.403 3.386c-.299.3-.415.532-.232.98a3.198 3.198 0 0 1-1.278 3.917A3.298 3.298 0 0 1 9.646 23c-1.062-1.062-1.228-2.688-.415-4.033a3.196 3.196 0 0 1 3.835-1.294c.498.182.78.083 1.145-.283 1.012-1.045 2.058-2.058 3.087-3.103.266-.266.68-.449.432-1.03-.233-.547-.631-.414-1.03-.431zM11.97 4.942c.913.016 1.643-.714 1.66-1.627v-.05a1.646 1.646 0 0 0-1.76-1.56 1.63 1.63 0 0 0-1.543 1.527 1.638 1.638 0 0 0 1.577 1.71zm.033 5.41a1.658 1.658 0 0 0-1.676 1.61v.084a1.73 1.73 0 0 0 1.643 1.66c.847.016 1.643-.78 1.677-1.627a1.648 1.648 0 0 0-1.577-1.71c-.017-.016-.05-.016-.067-.016zm7.088 1.694c.016.896.747 1.61 1.626 1.643a1.723 1.723 0 0 0 1.66-1.726 1.666 1.666 0 0 0-1.66-1.61 1.623 1.623 0 0 0-1.643 1.577c.017.05.017.083.017.116zM3.24 10.353a1.692 1.692 0 0 0-1.66 1.626c-.017.847.863 1.727 1.693 1.71a1.687 1.687 0 0 0 1.626-1.743 1.615 1.615 0 0 0-1.643-1.593Zm8.68 12c.98.033 1.71-.647 1.727-1.593a1.646 1.646 0 0 0-1.51-1.793 1.646 1.646 0 0 0-1.793 1.51v.233a1.609 1.609 0 0 0 1.543 1.66c0-.017.017-.017.033-.017z" }) + ] + } + ); +}); + +exports.default = SiRay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRay.d.ts new file mode 100644 index 000000000..4b997801d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#028CF0"; +declare const SiRay: IconType; +export { SiRay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRay.mjs new file mode 100644 index 000000000..593fb496a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#028CF0"; +const SiRay = React.forwardRef(function SiRay2({ title = "Ray", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.153 12.826c-.63-.183-1.03.15-1.378.846-.58 1.13-1.643 1.644-2.888 1.594-1.245-.05-2.257-.63-2.788-1.776-.233-.498-.498-.664-1.046-.68-.93-.017-1.643.016-2.174 1.062-.631 1.261-2.258 1.693-3.619 1.261a3.234 3.234 0 0 1-2.257-3.22 3.198 3.198 0 0 1 2.29-3.02 3.276 3.276 0 0 1 3.702 1.327c.216.315.216.863.597.93.648.1 1.328.033 1.992.033.299 0 .316-.266.399-.465.58-1.295 1.61-1.959 2.987-1.975 1.361-.017 2.39.647 2.955 1.892.215.465.48.598.946.548.166-.017.332.016.498 0 .464-.083 1.062.282 1.344-.448.282-.73-.382-.913-.68-1.245-.847-.946-1.81-1.793-2.673-2.706-.415-.465-.763-.614-1.41-.415-1.876.614-3.619-.431-4.15-2.357-.448-1.676.714-3.535 2.44-3.917a3.293 3.293 0 0 1 3.95 2.457c.017.05.017.083.033.133.117.564.117 1.145-.132 1.626-.283.531-.133.83.249 1.195a152.61 152.61 0 0 1 3.286 3.27c.299.299.498.349.913.2 1.51-.565 2.97-.1 3.884 1.161a3.266 3.266 0 0 1-.067 3.801c-.896 1.195-2.357 1.643-3.834 1.079-.381-.15-.58-.1-.846.182a163.619 163.619 0 0 1-3.403 3.386c-.299.3-.415.532-.232.98a3.198 3.198 0 0 1-1.278 3.917A3.298 3.298 0 0 1 9.646 23c-1.062-1.062-1.228-2.688-.415-4.033a3.196 3.196 0 0 1 3.835-1.294c.498.182.78.083 1.145-.283 1.012-1.045 2.058-2.058 3.087-3.103.266-.266.68-.449.432-1.03-.233-.547-.631-.414-1.03-.431zM11.97 4.942c.913.016 1.643-.714 1.66-1.627v-.05a1.646 1.646 0 0 0-1.76-1.56 1.63 1.63 0 0 0-1.543 1.527 1.638 1.638 0 0 0 1.577 1.71zm.033 5.41a1.658 1.658 0 0 0-1.676 1.61v.084a1.73 1.73 0 0 0 1.643 1.66c.847.016 1.643-.78 1.677-1.627a1.648 1.648 0 0 0-1.577-1.71c-.017-.016-.05-.016-.067-.016zm7.088 1.694c.016.896.747 1.61 1.626 1.643a1.723 1.723 0 0 0 1.66-1.726 1.666 1.666 0 0 0-1.66-1.61 1.623 1.623 0 0 0-1.643 1.577c.017.05.017.083.017.116zM3.24 10.353a1.692 1.692 0 0 0-1.66 1.626c-.017.847.863 1.727 1.693 1.71a1.687 1.687 0 0 0 1.626-1.743 1.615 1.615 0 0 0-1.643-1.593Zm8.68 12c.98.033 1.71-.647 1.727-1.593a1.646 1.646 0 0 0-1.51-1.793 1.646 1.646 0 0 0-1.793 1.51v.233a1.609 1.609 0 0 0 1.543 1.66c0-.017.017-.017.033-.017z" }) + ] + } + ); +}); + +export { SiRay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.cjs new file mode 100644 index 000000000..cb7ee9a2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6363"; +const SiRaycast = React__namespace.forwardRef(function SiRaycast2({ title = "Raycast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.004 15.492v2.504L0 11.992l1.258-1.249Zm2.504 2.504H6.004L12.008 24l1.253-1.253zm14.24-4.747L24 11.997 12.003 0 10.75 1.251 15.491 6h-2.865L9.317 2.692 8.065 3.944l2.06 2.06H8.691v9.31H18v-1.432l2.06 2.06 1.252-1.252-3.312-3.32V8.506ZM6.63 5.372 5.38 6.625l1.342 1.343 1.251-1.253Zm10.655 10.655-1.247 1.251 1.342 1.343 1.253-1.251zM3.944 8.059 2.692 9.31l3.312 3.314v-2.506zm9.936 9.937h-2.504l3.314 3.312 1.25-1.252z" }) + ] + } + ); +}); + +exports.default = SiRaycast; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.d.ts new file mode 100644 index 000000000..c6154634c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6363"; +declare const SiRaycast: IconType; +export { SiRaycast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.mjs new file mode 100644 index 000000000..50ff2712a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaycast.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6363"; +const SiRaycast = React.forwardRef(function SiRaycast2({ title = "Raycast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.004 15.492v2.504L0 11.992l1.258-1.249Zm2.504 2.504H6.004L12.008 24l1.253-1.253zm14.24-4.747L24 11.997 12.003 0 10.75 1.251 15.491 6h-2.865L9.317 2.692 8.065 3.944l2.06 2.06H8.691v9.31H18v-1.432l2.06 2.06 1.252-1.252-3.312-3.32V8.506ZM6.63 5.372 5.38 6.625l1.342 1.343 1.251-1.253Zm10.655 10.655-1.247 1.251 1.342 1.343 1.253-1.251zM3.944 8.059 2.692 9.31l3.312 3.314v-2.506zm9.936 9.937h-2.504l3.314 3.312 1.25-1.252z" }) + ] + } + ); +}); + +export { SiRaycast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.cjs new file mode 100644 index 000000000..c4c1b7d8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRaylib = React__namespace.forwardRef(function SiRaylib2({ title = "Raylib", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0Zm1.5 1.5h21v21h-21v-21Zm14.813 15.469v3.281h.937v-.469h-.469V16.97h-.468Zm1.406 0v.468h.468v-.468h-.468Zm.937 0v3.281H21v-2.344h-1.875v-.937h-.469Zm-10.781.937v2.344h.469v-1.875h1.875v-.469H7.875Zm2.813 0v.469h1.874v.469h-1.874v1.406h2.343v-2.344h-2.344Zm2.812 0v2.344h1.875v.469H13.5v.468h2.344v-3.28h-.469v1.874h-1.406v-1.875H13.5Zm4.219 0v2.344h.468v-2.344h-.468Zm1.406.469h1.406v1.406h-1.406v-1.406Zm-7.969.938h1.406v.468h-1.406v-.468Z" }) + ] + } + ); +}); + +exports.default = SiRaylib; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.d.ts new file mode 100644 index 000000000..a17cecf22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRaylib: IconType; +export { SiRaylib as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.mjs new file mode 100644 index 000000000..83b8e6bca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRaylib.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRaylib = React.forwardRef(function SiRaylib2({ title = "Raylib", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0Zm1.5 1.5h21v21h-21v-21Zm14.813 15.469v3.281h.937v-.469h-.469V16.97h-.468Zm1.406 0v.468h.468v-.468h-.468Zm.937 0v3.281H21v-2.344h-1.875v-.937h-.469Zm-10.781.937v2.344h.469v-1.875h1.875v-.469H7.875Zm2.813 0v.469h1.874v.469h-1.874v1.406h2.343v-2.344h-2.344Zm2.812 0v2.344h1.875v.469H13.5v.468h2.344v-3.28h-.469v1.874h-1.406v-1.875H13.5Zm4.219 0v2.344h.468v-2.344h-.468Zm1.406.469h1.406v1.406h-1.406v-1.406Zm-7.969.938h1.406v.468h-1.406v-.468Z" }) + ] + } + ); +}); + +export { SiRaylib as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.cjs new file mode 100644 index 000000000..9ebf792b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FF00"; +const SiRazer = React__namespace.forwardRef(function SiRazer2({ title = "Razer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.4 0a.385.385 0 00-.278.125L22.91.35l-.401.182a.711.711 0 00-.417 0 .305.305 0 01-.171 0 1.005 1.005 0 00-.567 0A.936.936 0 0021 .596a.877.877 0 00-.412.337l-.037.048a1.246 1.246 0 00-.898.684 1.07 1.07 0 00-.07.225 1.935 1.935 0 00-.337-.193 2.026 2.026 0 00-2.063.305 2.08 2.08 0 00-.69 2.139c.086.376.23.737.428 1.069.496.776 1.079 1.494 1.737 2.138.526.512.996 1.078 1.401 1.69l.053.096c.396.754.321 1.31-.219 1.647a1.358 1.358 0 01-.572.198 2.491 2.491 0 00-.144-2.07 2.342 2.342 0 00-.3-.406c-.79-.866-1.63-.674-1.962-.449a.385.385 0 00-.15.455l.027.058a.385.385 0 00.38.188 1.07 1.07 0 01.962.582c.23.384.23.862 0 1.246a4.812 4.812 0 01-.534-.535l-.07-.07-.037-.042a3.368 3.368 0 00-1.92-1.208 3.09 3.09 0 00-.406-1.455 4.368 4.368 0 00-1.358-1.48 2.673 2.673 0 00-.267-.16 3.085 3.085 0 00-2.251-2.717 2.7 2.7 0 00-2.968 1.139c-.053.086-.112.171-.165.267a12.26 12.26 0 00-1.038 2.78 11.64 11.64 0 01-.775 2.187l-.059.107c-.213.374-.406.583-.609.647a.406.406 0 01-.374-.064c-.203-.14-.155-.423 0-.973a3.33 3.33 0 00.128-.45c.07-.33-.005-.673-.203-.946a1.07 1.07 0 00-.786-.411c-.49-.018-.94.27-1.128.722l-.08.15a.968.968 0 00-.316-.46.936.936 0 00-.294-.129 1.016 1.016 0 00-.535-.198.342.342 0 01-.17-.053.711.711 0 00-.434-.097l-.326-.256-.144-.278c-.18-.35-.707-.238-.727.155a.385.385 0 00.032.727l.305.075.342.267c.026.14.093.268.192.37.043.04.072.092.086.149.058.184.167.347.315.47a.877.877 0 00.727.465h.06c.262.313.662.477 1.068.439a1.07 1.07 0 00.23-.054 1.935 1.935 0 000 .38 2.026 2.026 0 001.3 1.636 2.08 2.08 0 002.208-.481c.276-.26.51-.562.695-.893.422-.817.75-1.68.978-2.572.179-.711.433-1.401.76-2.058l.058-.096c.454-.722.973-.936 1.535-.637.18.096.338.231.46.396-.714.12-1.34.543-1.717 1.16-.084.146-.152.3-.203.46-.353 1.117.23 1.748.593 1.925.16.077.353.035.466-.102l.037-.053a.385.385 0 000-.423 1.07 1.07 0 010-1.128c.218-.384.627-.62 1.07-.615-.04.245-.1.486-.177.722l-.034.093a3.533 3.533 0 00-.084 2.324 3.09 3.09 0 00-1.07 1.07 4.368 4.368 0 00-.603 1.913 2.674 2.674 0 000 .31 3.085 3.085 0 00-1.23 3.31 2.7 2.7 0 002.47 2h.31a12.26 12.26 0 002.925-.493 11.64 11.64 0 012.283-.422h.117c.304-.037.61.035.866.203.102.09.152.224.134.358 0 .246-.289.348-.855.466a3.33 3.33 0 00-.45.117 1.192 1.192 0 00-.721.647 1.07 1.07 0 00.037.888c.229.435.704.683 1.193.62h.165a.968.968 0 00-.235.502.936.936 0 000 .364c-.019.183.013.368.091.535.03.054.045.115.043.176-.002.151.045.3.133.422l-.058.412-.166.262a.385.385 0 00.497.535c.287.265.74-.016.63-.39l-.085-.3.064-.433a.711.711 0 00.22-.353.305.305 0 01.085-.15c.131-.141.218-.318.252-.508a.936.936 0 00.122-.336.877.877 0 00-.085-.535v-.053c.134-.376.08-.794-.144-1.123a1.07 1.07 0 00-.16-.171c.115-.05.226-.11.33-.182a2.026 2.026 0 00.77-1.94 2.08 2.08 0 00-1.518-1.674 3.71 3.71 0 00-1.123-.155c-.919.043-1.83.19-2.716.438-.697.198-1.414.322-2.138.369h-.112c-.85-.032-1.294-.374-1.316-1.01-.007-.204.031-.407.113-.594.459.559 1.138.89 1.86.909.17 0 .338-.018.503-.054 1.144-.25 1.4-1.069 1.374-1.475a.385.385 0 00-.321-.353h-.064a.385.385 0 00-.353.235 1.07 1.07 0 01-.984.535 1.214 1.214 0 01-1.069-.631c.233-.088.473-.158.716-.209h.155a3.368 3.368 0 002.01-1.069c.449.243.95.372 1.46.374.679.01 1.35-.138 1.962-.433.094-.044.185-.094.273-.15a3.085 3.085 0 003.48-.587 2.7 2.7 0 00.498-3.139 6.884 6.884 0 00-.15-.273 12.259 12.259 0 00-1.887-2.288 11.64 11.64 0 01-1.508-1.764l-.064-.102a1.294 1.294 0 01-.257-.85.406.406 0 01.16-.267c.225-.107.444.08.83.508.1.118.21.228.326.331.25.225.584.334.92.3a1.07 1.07 0 00.748-.476c.263-.416.24-.951-.06-1.342l-.085-.145c.18.035.365.019.535-.048a.936.936 0 00.32-.197c.178-.076.33-.2.44-.359a.342.342 0 01.133-.123.711.711 0 00.3-.326l.384-.155h.31a.385.385 0 00.353-.577l-.005.01a.385.385 0 00-.118-.128A.385.385 0 0023.4 0zm.006.398l-.187.315.347.086-.395.005-.658.262a.262.262 0 01-.171.262c-.316.182-.198.321-.583.487-.08.032-.107.101-.256.176-.15.075-.407-.027-.535 0a.32.32 0 00-.203.535c.085.144.486.679.192 1.112a.711.711 0 01-1.107.102c-.368-.305-.866-1.214-1.577-.877-.71.336-.502 1.128-.085 1.796.882 1.39 2.705 2.673 3.523 4.277 1 2-1.107 4.336-3.673 3.117a2.326 2.326 0 01-.396.24c-1.069.535-2.512.578-3.395-.117-.395.941-1.79 1.182-2.031 1.24-.423.08-.832.22-1.214.418.487 1.614 2.47 1.454 2.908.427 0 0 .054.824-1.069 1.07a2.139 2.139 0 01-2.288-1.16c-.33.346-.507.81-.492 1.288.027.69.46 1.337 1.69 1.385 1.662.064 4.25-1.203 6.014-.669 1.344.335 1.723 2.065.642 2.93a2.732 2.732 0 01-1.23.385c-.182.01-.198.091-.181.145.016.053.117.053.278.053.582-.053 1.208.283.93 1.166-.043.123.155.352.117.534-.053.262-.112.203-.112.289-.07.412-.235.326-.337.679a.257.257 0 01-.203.208l-.101.706.112.38-.182-.321-.251.257.214-.332.101-.7a.262.262 0 01-.16-.267c0-.364-.182-.332-.128-.75.037-.085 0-.042 0-.31.016-.186.23-.341.272-.48.043-.14.054-.45-.369-.45-.198.006-.85.075-1.069-.39a.711.711 0 01.465-1.01c.45-.16 1.497-.123 1.556-.91.059-.785-.727-.999-1.513-.972-1.657.059-3.663 1.01-5.48.903-2.23-.128-3.198-3.133-.861-4.737a2.326 2.326 0 010-.465c.09-1.219.77-2.47 1.812-2.85-.593-.818-.128-2.149-.058-2.384.135-.4.213-.818.23-1.24-1.642-.37-2.497 1.411-1.824 2.304 0 0-.743-.369-.395-1.465a2.139 2.139 0 012.138-1.4 1.786 1.786 0 00-.871-1.07c-.61-.3-1.385-.267-2.043.77-.887 1.411-1.063 4.293-2.427 5.544-.961 1-2.652.463-2.86-.909a2.732 2.732 0 01.278-1.256c.08-.166.032-.214-.038-.23-.07-.016-.123.07-.187.214a.823.823 0 01-1.475.224c-.097-.107-.342.006-.535-.17-.192-.177-.128-.188-.192-.241-.321-.273-.16-.375-.418-.636a.257.257 0 01-.08-.284L.796 7.2.41 7.102h.38l-.102-.347.182.353.534.438a.262.262 0 01.31 0c.321.182.38.01.717.262.07.054.133.027.283.134.15.107.187.374.278.476a.32.32 0 00.572-.096c.086-.193.332-.77.866-.728.457.027.77.47.642.91-.091.47-.652 1.357 0 1.801.652.444 1.235-.134 1.604-.829.775-1.46.957-3.678 1.957-5.202 1.23-1.887 4.309-1.224 4.533 1.604.145.06.283.136.412.225 1.032.69 1.759 1.924 1.567 2.994 1.02-.129 1.919.957 2.09 1.138.28.328.606.612.968.845 1.165-1.23.037-2.865-1.07-2.732 0 0 .69-.46 1.466.39.61.728.666 1.772.139 2.561.465.113.956.034 1.363-.219.583-.353.925-1.07.353-2.138-.776-1.476-3.187-3.075-3.588-4.876-.384-1.333.928-2.528 2.219-2.021.38.21.705.51.946.871.102.155.166.134.214.086.048-.048-.005-.14-.096-.268a.823.823 0 01.534-1.39c.145-.027.161-.289.418-.374.256-.086.23-.016.31-.048.395-.15.406.043.759-.048.1-.038.212-.01.283.07l.68-.263zm-10.297 6.26c-.065.53-.348 1.647-.187 2.332.155.871.823.823 1.069.395.163-.332.2-.711.107-1.069a3.106 3.106 0 00-.984-1.636zm.256.872c.17.262.293.551.364.856a1.3 1.3 0 010 .759c-.086.187-.332.187-.423-.23-.04-.462-.02-.928.06-1.385zm1.727 2.661c-.517.012-.67.472-.47.82.207.31.521.534.882.63a3.106 3.106 0 001.908-.037c-.422-.32-1.25-1.123-1.903-1.342a1.255 1.255 0 00-.417-.07zm.088.401a.807.807 0 01.201.04c.429.197.83.45 1.192.753a2.82 2.82 0 01-.962-.107 1.3 1.3 0 01-.642-.396c-.095-.134-.036-.3.21-.29zm-2.285.183a1.54 1.54 0 00-.984.45 3.106 3.106 0 00-.936 1.673c.535-.203 1.604-.519 2.139-.973.663-.588.251-1.166-.22-1.15zm-.025.341c.188.008.276.217-.04.488a5.39 5.39 0 01-1.234.631c.134-.277.315-.528.534-.743a1.3 1.3 0 01.7-.374.284.284 0 01.04-.002z" }) + ] + } + ); +}); + +exports.default = SiRazer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.d.ts new file mode 100644 index 000000000..e528886f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FF00"; +declare const SiRazer: IconType; +export { SiRazer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.mjs new file mode 100644 index 000000000..d4b983c6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRazer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FF00"; +const SiRazer = React.forwardRef(function SiRazer2({ title = "Razer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.4 0a.385.385 0 00-.278.125L22.91.35l-.401.182a.711.711 0 00-.417 0 .305.305 0 01-.171 0 1.005 1.005 0 00-.567 0A.936.936 0 0021 .596a.877.877 0 00-.412.337l-.037.048a1.246 1.246 0 00-.898.684 1.07 1.07 0 00-.07.225 1.935 1.935 0 00-.337-.193 2.026 2.026 0 00-2.063.305 2.08 2.08 0 00-.69 2.139c.086.376.23.737.428 1.069.496.776 1.079 1.494 1.737 2.138.526.512.996 1.078 1.401 1.69l.053.096c.396.754.321 1.31-.219 1.647a1.358 1.358 0 01-.572.198 2.491 2.491 0 00-.144-2.07 2.342 2.342 0 00-.3-.406c-.79-.866-1.63-.674-1.962-.449a.385.385 0 00-.15.455l.027.058a.385.385 0 00.38.188 1.07 1.07 0 01.962.582c.23.384.23.862 0 1.246a4.812 4.812 0 01-.534-.535l-.07-.07-.037-.042a3.368 3.368 0 00-1.92-1.208 3.09 3.09 0 00-.406-1.455 4.368 4.368 0 00-1.358-1.48 2.673 2.673 0 00-.267-.16 3.085 3.085 0 00-2.251-2.717 2.7 2.7 0 00-2.968 1.139c-.053.086-.112.171-.165.267a12.26 12.26 0 00-1.038 2.78 11.64 11.64 0 01-.775 2.187l-.059.107c-.213.374-.406.583-.609.647a.406.406 0 01-.374-.064c-.203-.14-.155-.423 0-.973a3.33 3.33 0 00.128-.45c.07-.33-.005-.673-.203-.946a1.07 1.07 0 00-.786-.411c-.49-.018-.94.27-1.128.722l-.08.15a.968.968 0 00-.316-.46.936.936 0 00-.294-.129 1.016 1.016 0 00-.535-.198.342.342 0 01-.17-.053.711.711 0 00-.434-.097l-.326-.256-.144-.278c-.18-.35-.707-.238-.727.155a.385.385 0 00.032.727l.305.075.342.267c.026.14.093.268.192.37.043.04.072.092.086.149.058.184.167.347.315.47a.877.877 0 00.727.465h.06c.262.313.662.477 1.068.439a1.07 1.07 0 00.23-.054 1.935 1.935 0 000 .38 2.026 2.026 0 001.3 1.636 2.08 2.08 0 002.208-.481c.276-.26.51-.562.695-.893.422-.817.75-1.68.978-2.572.179-.711.433-1.401.76-2.058l.058-.096c.454-.722.973-.936 1.535-.637.18.096.338.231.46.396-.714.12-1.34.543-1.717 1.16-.084.146-.152.3-.203.46-.353 1.117.23 1.748.593 1.925.16.077.353.035.466-.102l.037-.053a.385.385 0 000-.423 1.07 1.07 0 010-1.128c.218-.384.627-.62 1.07-.615-.04.245-.1.486-.177.722l-.034.093a3.533 3.533 0 00-.084 2.324 3.09 3.09 0 00-1.07 1.07 4.368 4.368 0 00-.603 1.913 2.674 2.674 0 000 .31 3.085 3.085 0 00-1.23 3.31 2.7 2.7 0 002.47 2h.31a12.26 12.26 0 002.925-.493 11.64 11.64 0 012.283-.422h.117c.304-.037.61.035.866.203.102.09.152.224.134.358 0 .246-.289.348-.855.466a3.33 3.33 0 00-.45.117 1.192 1.192 0 00-.721.647 1.07 1.07 0 00.037.888c.229.435.704.683 1.193.62h.165a.968.968 0 00-.235.502.936.936 0 000 .364c-.019.183.013.368.091.535.03.054.045.115.043.176-.002.151.045.3.133.422l-.058.412-.166.262a.385.385 0 00.497.535c.287.265.74-.016.63-.39l-.085-.3.064-.433a.711.711 0 00.22-.353.305.305 0 01.085-.15c.131-.141.218-.318.252-.508a.936.936 0 00.122-.336.877.877 0 00-.085-.535v-.053c.134-.376.08-.794-.144-1.123a1.07 1.07 0 00-.16-.171c.115-.05.226-.11.33-.182a2.026 2.026 0 00.77-1.94 2.08 2.08 0 00-1.518-1.674 3.71 3.71 0 00-1.123-.155c-.919.043-1.83.19-2.716.438-.697.198-1.414.322-2.138.369h-.112c-.85-.032-1.294-.374-1.316-1.01-.007-.204.031-.407.113-.594.459.559 1.138.89 1.86.909.17 0 .338-.018.503-.054 1.144-.25 1.4-1.069 1.374-1.475a.385.385 0 00-.321-.353h-.064a.385.385 0 00-.353.235 1.07 1.07 0 01-.984.535 1.214 1.214 0 01-1.069-.631c.233-.088.473-.158.716-.209h.155a3.368 3.368 0 002.01-1.069c.449.243.95.372 1.46.374.679.01 1.35-.138 1.962-.433.094-.044.185-.094.273-.15a3.085 3.085 0 003.48-.587 2.7 2.7 0 00.498-3.139 6.884 6.884 0 00-.15-.273 12.259 12.259 0 00-1.887-2.288 11.64 11.64 0 01-1.508-1.764l-.064-.102a1.294 1.294 0 01-.257-.85.406.406 0 01.16-.267c.225-.107.444.08.83.508.1.118.21.228.326.331.25.225.584.334.92.3a1.07 1.07 0 00.748-.476c.263-.416.24-.951-.06-1.342l-.085-.145c.18.035.365.019.535-.048a.936.936 0 00.32-.197c.178-.076.33-.2.44-.359a.342.342 0 01.133-.123.711.711 0 00.3-.326l.384-.155h.31a.385.385 0 00.353-.577l-.005.01a.385.385 0 00-.118-.128A.385.385 0 0023.4 0zm.006.398l-.187.315.347.086-.395.005-.658.262a.262.262 0 01-.171.262c-.316.182-.198.321-.583.487-.08.032-.107.101-.256.176-.15.075-.407-.027-.535 0a.32.32 0 00-.203.535c.085.144.486.679.192 1.112a.711.711 0 01-1.107.102c-.368-.305-.866-1.214-1.577-.877-.71.336-.502 1.128-.085 1.796.882 1.39 2.705 2.673 3.523 4.277 1 2-1.107 4.336-3.673 3.117a2.326 2.326 0 01-.396.24c-1.069.535-2.512.578-3.395-.117-.395.941-1.79 1.182-2.031 1.24-.423.08-.832.22-1.214.418.487 1.614 2.47 1.454 2.908.427 0 0 .054.824-1.069 1.07a2.139 2.139 0 01-2.288-1.16c-.33.346-.507.81-.492 1.288.027.69.46 1.337 1.69 1.385 1.662.064 4.25-1.203 6.014-.669 1.344.335 1.723 2.065.642 2.93a2.732 2.732 0 01-1.23.385c-.182.01-.198.091-.181.145.016.053.117.053.278.053.582-.053 1.208.283.93 1.166-.043.123.155.352.117.534-.053.262-.112.203-.112.289-.07.412-.235.326-.337.679a.257.257 0 01-.203.208l-.101.706.112.38-.182-.321-.251.257.214-.332.101-.7a.262.262 0 01-.16-.267c0-.364-.182-.332-.128-.75.037-.085 0-.042 0-.31.016-.186.23-.341.272-.48.043-.14.054-.45-.369-.45-.198.006-.85.075-1.069-.39a.711.711 0 01.465-1.01c.45-.16 1.497-.123 1.556-.91.059-.785-.727-.999-1.513-.972-1.657.059-3.663 1.01-5.48.903-2.23-.128-3.198-3.133-.861-4.737a2.326 2.326 0 010-.465c.09-1.219.77-2.47 1.812-2.85-.593-.818-.128-2.149-.058-2.384.135-.4.213-.818.23-1.24-1.642-.37-2.497 1.411-1.824 2.304 0 0-.743-.369-.395-1.465a2.139 2.139 0 012.138-1.4 1.786 1.786 0 00-.871-1.07c-.61-.3-1.385-.267-2.043.77-.887 1.411-1.063 4.293-2.427 5.544-.961 1-2.652.463-2.86-.909a2.732 2.732 0 01.278-1.256c.08-.166.032-.214-.038-.23-.07-.016-.123.07-.187.214a.823.823 0 01-1.475.224c-.097-.107-.342.006-.535-.17-.192-.177-.128-.188-.192-.241-.321-.273-.16-.375-.418-.636a.257.257 0 01-.08-.284L.796 7.2.41 7.102h.38l-.102-.347.182.353.534.438a.262.262 0 01.31 0c.321.182.38.01.717.262.07.054.133.027.283.134.15.107.187.374.278.476a.32.32 0 00.572-.096c.086-.193.332-.77.866-.728.457.027.77.47.642.91-.091.47-.652 1.357 0 1.801.652.444 1.235-.134 1.604-.829.775-1.46.957-3.678 1.957-5.202 1.23-1.887 4.309-1.224 4.533 1.604.145.06.283.136.412.225 1.032.69 1.759 1.924 1.567 2.994 1.02-.129 1.919.957 2.09 1.138.28.328.606.612.968.845 1.165-1.23.037-2.865-1.07-2.732 0 0 .69-.46 1.466.39.61.728.666 1.772.139 2.561.465.113.956.034 1.363-.219.583-.353.925-1.07.353-2.138-.776-1.476-3.187-3.075-3.588-4.876-.384-1.333.928-2.528 2.219-2.021.38.21.705.51.946.871.102.155.166.134.214.086.048-.048-.005-.14-.096-.268a.823.823 0 01.534-1.39c.145-.027.161-.289.418-.374.256-.086.23-.016.31-.048.395-.15.406.043.759-.048.1-.038.212-.01.283.07l.68-.263zm-10.297 6.26c-.065.53-.348 1.647-.187 2.332.155.871.823.823 1.069.395.163-.332.2-.711.107-1.069a3.106 3.106 0 00-.984-1.636zm.256.872c.17.262.293.551.364.856a1.3 1.3 0 010 .759c-.086.187-.332.187-.423-.23-.04-.462-.02-.928.06-1.385zm1.727 2.661c-.517.012-.67.472-.47.82.207.31.521.534.882.63a3.106 3.106 0 001.908-.037c-.422-.32-1.25-1.123-1.903-1.342a1.255 1.255 0 00-.417-.07zm.088.401a.807.807 0 01.201.04c.429.197.83.45 1.192.753a2.82 2.82 0 01-.962-.107 1.3 1.3 0 01-.642-.396c-.095-.134-.036-.3.21-.29zm-2.285.183a1.54 1.54 0 00-.984.45 3.106 3.106 0 00-.936 1.673c.535-.203 1.604-.519 2.139-.973.663-.588.251-1.166-.22-1.15zm-.025.341c.188.008.276.217-.04.488a5.39 5.39 0 01-1.234.631c.134-.277.315-.528.534-.743a1.3 1.3 0 01.7-.374.284.284 0 01.04-.002z" }) + ] + } + ); +}); + +export { SiRazer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.cjs new file mode 100644 index 000000000..5391571bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C2451"; +const SiRazorpay = React__namespace.forwardRef(function SiRazorpay2({ title = "Razorpay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.436 0l-11.91 7.773-1.174 4.276 6.625-4.297L11.65 24h4.391l6.395-24zM14.26 10.098L3.389 17.166 1.564 24h9.008l3.688-13.902Z" }) + ] + } + ); +}); + +exports.default = SiRazorpay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.d.ts new file mode 100644 index 000000000..75ab487ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C2451"; +declare const SiRazorpay: IconType; +export { SiRazorpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.mjs new file mode 100644 index 000000000..2dfe4107b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRazorpay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C2451"; +const SiRazorpay = React.forwardRef(function SiRazorpay2({ title = "Razorpay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.436 0l-11.91 7.773-1.174 4.276 6.625-4.297L11.65 24h4.391l6.395-24zM14.26 10.098L3.389 17.166 1.564 24h9.008l3.688-13.902Z" }) + ] + } + ); +}); + +export { SiRazorpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.cjs new file mode 100644 index 000000000..0ad53f3f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3F79AD"; +const SiRclone = React__namespace.forwardRef(function SiRclone2({ title = "Rclone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.842.6258C9.3647.6813 6.9754 1.9906 5.646 4.2933c-.7593 1.3144-1.0647 2.7662-.966 4.1745a7.99 7.99 0 0 1 2.6568-.4541l1.4705-.0013c-.0093-.5594.1245-1.1284.4245-1.6482.8827-1.5284 2.837-2.0522 4.3654-1.1695 1.5284.8824 2.0519 2.8366 1.1695 4.365l-1.4782 2.5647 1.1955 2.0714 2.3914-.0004 1.4775-2.5655c2.0262-3.5088.8239-7.9959-2.6853-10.0217C14.4614.9118 13.1396.5967 11.842.6258m-1.5451 8.073-2.9605.0029C3.2844 8.7017 0 11.9867 0 16.0383c0 4.052 3.2844 7.3367 7.3364 7.3367 1.5174 0 2.9267-.4609 4.0967-1.2497a8 8 0 0 1-1.72-2.0748l-.7368-1.273c-.4799.288-1.0392.4565-1.6395.4565-1.765 0-3.1958-1.4307-3.1958-3.1958 0-1.7647 1.4307-3.1954 3.1958-3.1954l2.96-.0022 1.1962-2.0708zm9.587.7475a7.99 7.99 0 0 1-.935 2.5278l-.7344 1.2745c.4892.2717.915.6719 1.2153 1.192.8823 1.528.3585 3.4826-1.1699 4.365-1.528.8823-3.4828.3588-4.3651-1.1696l-1.482-2.5628h-2.3915L8.8256 17.144l1.483 2.5626c2.0262 3.5091 6.513 4.7112 10.022 2.685 3.5089-2.0257 4.7112-6.5125 2.6853-10.0216-.7588-1.3144-1.863-2.3052-3.132-2.9237" }) + ] + } + ); +}); + +exports.default = SiRclone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.d.ts new file mode 100644 index 000000000..f422aba8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3F79AD"; +declare const SiRclone: IconType; +export { SiRclone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.mjs new file mode 100644 index 000000000..5cfc57840 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRclone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3F79AD"; +const SiRclone = React.forwardRef(function SiRclone2({ title = "Rclone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.842.6258C9.3647.6813 6.9754 1.9906 5.646 4.2933c-.7593 1.3144-1.0647 2.7662-.966 4.1745a7.99 7.99 0 0 1 2.6568-.4541l1.4705-.0013c-.0093-.5594.1245-1.1284.4245-1.6482.8827-1.5284 2.837-2.0522 4.3654-1.1695 1.5284.8824 2.0519 2.8366 1.1695 4.365l-1.4782 2.5647 1.1955 2.0714 2.3914-.0004 1.4775-2.5655c2.0262-3.5088.8239-7.9959-2.6853-10.0217C14.4614.9118 13.1396.5967 11.842.6258m-1.5451 8.073-2.9605.0029C3.2844 8.7017 0 11.9867 0 16.0383c0 4.052 3.2844 7.3367 7.3364 7.3367 1.5174 0 2.9267-.4609 4.0967-1.2497a8 8 0 0 1-1.72-2.0748l-.7368-1.273c-.4799.288-1.0392.4565-1.6395.4565-1.765 0-3.1958-1.4307-3.1958-3.1958 0-1.7647 1.4307-3.1954 3.1958-3.1954l2.96-.0022 1.1962-2.0708zm9.587.7475a7.99 7.99 0 0 1-.935 2.5278l-.7344 1.2745c.4892.2717.915.6719 1.2153 1.192.8823 1.528.3585 3.4826-1.1699 4.365-1.528.8823-3.4828.3588-4.3651-1.1696l-1.482-2.5628h-2.3915L8.8256 17.144l1.483 2.5626c2.0262 3.5091 6.513 4.7112 10.022 2.685 3.5089-2.0257 4.7112-6.5125 2.6853-10.0216-.7588-1.3144-1.863-2.3052-3.132-2.9237" }) + ] + } + ); +}); + +export { SiRclone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReact.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReact.cjs new file mode 100644 index 000000000..ea364e3fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReact.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#61DAFB"; +const SiReact = React__namespace.forwardRef(function SiReact2({ title = "React", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z" }) + ] + } + ); +}); + +exports.default = SiReact; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReact.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReact.d.ts new file mode 100644 index 000000000..713117fb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReact.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#61DAFB"; +declare const SiReact: IconType; +export { SiReact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReact.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReact.mjs new file mode 100644 index 000000000..5ae7e8901 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReact.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#61DAFB"; +const SiReact = React.forwardRef(function SiReact2({ title = "React", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z" }) + ] + } + ); +}); + +export { SiReact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.cjs new file mode 100644 index 000000000..9b0c67527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41E0FD"; +const SiReactbootstrap = React__namespace.forwardRef(function SiReactbootstrap2({ title = "React Bootstrap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.679.6264c-.5006 0-.948.1121-1.3298.333-.367.2125-.6755.5291-.917.9411-.2262.386-.393.856-.4957 1.3964-.1978 1.0417-.155 2.3459.124 3.7707.0353.1794.074.361.1157.5414a17 17 0 0 0-.6444.209c-1.345.469-2.4699 1.0817-3.2528 1.7723-.406.3576-.72.7357-.9349 1.1235C.1158 11.1263 0 11.5493 0 11.9712c0 .846.4686 1.703 1.355 2.4806.8347.7323 2.015 1.3717 3.4123 1.8496.1298.0441.262.087.3948.128a17 17 0 0 0-.1281.609c-.2658 1.3994-.2968 2.6799-.0903 3.7032.1073.53.2776.9912.5063 1.371.2432.4038.5519.7156.9174.9264.3851.222.8384.3346 1.3472.3346.6927 0 1.4672-.2054 2.302-.6105.8184-.3971 1.6537-.9659 2.4827-1.6905a13 13 0 0 0 .3909-.3556h.1963v-.0004h5.9501q1.3018 0 2.2457-.38c.6305-.2529 1.1436-.5942 1.5475-1.0227.4038-.4286.6983-.9399.8871-1.5339.1888-.589.2831-1.227.2831-1.9087.0005-1.1884-.2152-2.1719-.6416-2.9608q-.6346-1.1668-1.867-1.5139a.032.032 0 0 1-.0202-.0321.034.034 0 0 1 .0154-.0303c.6118-.3401 1.082-.8245 1.4115-1.4425q.498-.9348.498-2.2499c0-1.4464-.366-2.5224-1.0946-3.238-.7287-.7158-1.6988-1.0715-2.9064-1.0715h-6.5124a16 16 0 0 0-.308-.2819c-.8608-.7637-1.7192-1.363-2.552-1.7796C9.1688.8432 8.3802.6264 7.679.6264m.0072 1.6994c.4338 0 .9952.1703 1.623.4925.6806.3497 1.4185.8697 2.1341 1.5051q.0666.0591.1361.1228c-.6294.696-1.2497 1.4694-1.846 2.302-1.016.0992-1.9927.2474-2.9071.441a15 15 0 0 1-.0925-.4342l-.0027-.0149c-.218-1.1138-.2711-2.1316-.1536-2.9418.1015-.6963.3287-1.194.6245-1.3653.1228-.0712.2858-.1072.4842-.1072m5.1605 3.217v12.9119l-.7657-.9454-.5002-.6175c-.2525-.3117-.657-.8886-1.1391-1.624a29 29 0 0 1-.7951-1.2816l-.0145-.025c-.231-.3984-.4027-.7193-.5406-.977a39 39 0 0 1-.5065-.9813l.03-.0583.0018-.0033a31 31 0 0 1 .5659-1.0979l.0017-.003.2074-.4024.3063-.5075.002-.0033c.1143-.1947.233-.3912.3526-.584l.2108-.3482c.2806-.4645.5061-.8033.862-1.2943.1917-.2642.3735-.4962.6616-.8562l.0006-.0007.0142-.018.0055-.007c.117-.1491.235-.2961.3509-.4369l.0038-.0047.0023-.0028a83 83 0 0 1 .6822-.8317zm2.3907.2519h3.8286c.6423 0 1.1336.1804 1.4735.5363s.5097.9744.5097 1.8516c0 .7803-.1888 1.375-.5667 1.7942-.378.419-.85.624-1.4169.624h-3.8284c-.0141 0-.0256-.0149-.0256-.0332l.0002-4.7399c0-.0182.0113-.033.0256-.033M8.498 8.6164a31.5 31.5 0 0 0-.7931 1.375 23 23 0 0 1-.4173-1.1595 23 23 0 0 1 1.2104-.2155m-2.8646.6334c.288.8924.6483 1.8157 1.0715 2.7477l.0002.0001c-.4297.9474-.795 1.8853-1.087 2.791a12 12 0 0 1-.3005-.0982c-1.1617-.397-2.1292-.9097-2.798-1.4823-.5116-.4381-.817-.9003-.817-1.2364 0-.345.3055-.7895.8384-1.2203.6203-.5016 1.503-.96 2.551-1.3252a15 15 0 0 1 .5414-.1764m9.6038 3.5427h4.1484c.718 0 1.2696.2244 1.67.692s.597 1.1257.597 1.9883c.0002.8771-.2004 1.5595-.5968 2.037-.3932.4822-.952.7218-1.67.7218h-4.1486c-.0141 0-.0256-.0148-.0256-.033v-5.373c0-.0183.0113-.033.0256-.033M7.7065 14.001a31.4 31.4 0 0 0 .818 1.411 22 22 0 0 1-1.251-.2087v-.0001c.1291-.3932.2742-.7959.433-1.2022m-.8937 2.8444c.9022.1846 1.8901.3238 2.9408.414.602.8384 1.2275 1.617 1.8615 2.317-.0783.0721-.1572.143-.2357.212-.9178.8022-1.8394 1.3821-2.6649 1.6771l-.0171.0061c-.37.1306-.7003.1969-.9812.1969-.2073 0-.3747-.036-.4975-.1067-.299-.1725-.5317-.6594-.6384-1.336-.1247-.7884-.081-1.7816.126-2.872l.0001.0001c.0323-.1692.0677-.3393.1064-.5085" }) + ] + } + ); +}); + +exports.default = SiReactbootstrap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.d.ts new file mode 100644 index 000000000..2b818f75c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41E0FD"; +declare const SiReactbootstrap: IconType; +export { SiReactbootstrap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.mjs new file mode 100644 index 000000000..171e92e27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactbootstrap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41E0FD"; +const SiReactbootstrap = React.forwardRef(function SiReactbootstrap2({ title = "React Bootstrap", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.679.6264c-.5006 0-.948.1121-1.3298.333-.367.2125-.6755.5291-.917.9411-.2262.386-.393.856-.4957 1.3964-.1978 1.0417-.155 2.3459.124 3.7707.0353.1794.074.361.1157.5414a17 17 0 0 0-.6444.209c-1.345.469-2.4699 1.0817-3.2528 1.7723-.406.3576-.72.7357-.9349 1.1235C.1158 11.1263 0 11.5493 0 11.9712c0 .846.4686 1.703 1.355 2.4806.8347.7323 2.015 1.3717 3.4123 1.8496.1298.0441.262.087.3948.128a17 17 0 0 0-.1281.609c-.2658 1.3994-.2968 2.6799-.0903 3.7032.1073.53.2776.9912.5063 1.371.2432.4038.5519.7156.9174.9264.3851.222.8384.3346 1.3472.3346.6927 0 1.4672-.2054 2.302-.6105.8184-.3971 1.6537-.9659 2.4827-1.6905a13 13 0 0 0 .3909-.3556h.1963v-.0004h5.9501q1.3018 0 2.2457-.38c.6305-.2529 1.1436-.5942 1.5475-1.0227.4038-.4286.6983-.9399.8871-1.5339.1888-.589.2831-1.227.2831-1.9087.0005-1.1884-.2152-2.1719-.6416-2.9608q-.6346-1.1668-1.867-1.5139a.032.032 0 0 1-.0202-.0321.034.034 0 0 1 .0154-.0303c.6118-.3401 1.082-.8245 1.4115-1.4425q.498-.9348.498-2.2499c0-1.4464-.366-2.5224-1.0946-3.238-.7287-.7158-1.6988-1.0715-2.9064-1.0715h-6.5124a16 16 0 0 0-.308-.2819c-.8608-.7637-1.7192-1.363-2.552-1.7796C9.1688.8432 8.3802.6264 7.679.6264m.0072 1.6994c.4338 0 .9952.1703 1.623.4925.6806.3497 1.4185.8697 2.1341 1.5051q.0666.0591.1361.1228c-.6294.696-1.2497 1.4694-1.846 2.302-1.016.0992-1.9927.2474-2.9071.441a15 15 0 0 1-.0925-.4342l-.0027-.0149c-.218-1.1138-.2711-2.1316-.1536-2.9418.1015-.6963.3287-1.194.6245-1.3653.1228-.0712.2858-.1072.4842-.1072m5.1605 3.217v12.9119l-.7657-.9454-.5002-.6175c-.2525-.3117-.657-.8886-1.1391-1.624a29 29 0 0 1-.7951-1.2816l-.0145-.025c-.231-.3984-.4027-.7193-.5406-.977a39 39 0 0 1-.5065-.9813l.03-.0583.0018-.0033a31 31 0 0 1 .5659-1.0979l.0017-.003.2074-.4024.3063-.5075.002-.0033c.1143-.1947.233-.3912.3526-.584l.2108-.3482c.2806-.4645.5061-.8033.862-1.2943.1917-.2642.3735-.4962.6616-.8562l.0006-.0007.0142-.018.0055-.007c.117-.1491.235-.2961.3509-.4369l.0038-.0047.0023-.0028a83 83 0 0 1 .6822-.8317zm2.3907.2519h3.8286c.6423 0 1.1336.1804 1.4735.5363s.5097.9744.5097 1.8516c0 .7803-.1888 1.375-.5667 1.7942-.378.419-.85.624-1.4169.624h-3.8284c-.0141 0-.0256-.0149-.0256-.0332l.0002-4.7399c0-.0182.0113-.033.0256-.033M8.498 8.6164a31.5 31.5 0 0 0-.7931 1.375 23 23 0 0 1-.4173-1.1595 23 23 0 0 1 1.2104-.2155m-2.8646.6334c.288.8924.6483 1.8157 1.0715 2.7477l.0002.0001c-.4297.9474-.795 1.8853-1.087 2.791a12 12 0 0 1-.3005-.0982c-1.1617-.397-2.1292-.9097-2.798-1.4823-.5116-.4381-.817-.9003-.817-1.2364 0-.345.3055-.7895.8384-1.2203.6203-.5016 1.503-.96 2.551-1.3252a15 15 0 0 1 .5414-.1764m9.6038 3.5427h4.1484c.718 0 1.2696.2244 1.67.692s.597 1.1257.597 1.9883c.0002.8771-.2004 1.5595-.5968 2.037-.3932.4822-.952.7218-1.67.7218h-4.1486c-.0141 0-.0256-.0148-.0256-.033v-5.373c0-.0183.0113-.033.0256-.033M7.7065 14.001a31.4 31.4 0 0 0 .818 1.411 22 22 0 0 1-1.251-.2087v-.0001c.1291-.3932.2742-.7959.433-1.2022m-.8937 2.8444c.9022.1846 1.8901.3238 2.9408.414.602.8384 1.2275 1.617 1.8615 2.317-.0783.0721-.1572.143-.2357.212-.9178.8022-1.8394 1.3821-2.6649 1.6771l-.0171.0061c-.37.1306-.7003.1969-.9812.1969-.2073 0-.3747-.036-.4975-.1067-.299-.1725-.5317-.6594-.6384-1.336-.1247-.7884-.081-1.7816.126-2.872l.0001.0001c.0323-.1692.0677-.3393.1064-.5085" }) + ] + } + ); +}); + +export { SiReactbootstrap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.cjs new file mode 100644 index 000000000..b143f4eb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC5990"; +const SiReacthookform = React__namespace.forwardRef(function SiReacthookform2({ title = "React Hook Form", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.7754 17.3477H5.8065a.2815.2815 0 1 0 0 .563h4.9689a.2815.2815 0 1 0 0-.563zm7.3195 0h-4.9688a.2815.2815 0 1 0 0 .563h4.9688a.2815.2815 0 0 0 0-.563zm-7.3336-6.475H5.8065a.2815.2815 0 1 0 0 .563h4.9548a.2815.2815 0 1 0 0-.563zm7.3195 0h-4.9547a.2815.2815 0 1 0 0 .563h4.9547a.2815.2815 0 0 0 0-.563zm.5518-9.2001h-4.341a2.4042 2.4042 0 0 0-4.5804 0H5.3674c-1.7103 0-3.0968 1.3864-3.0968 3.0967v16.134C2.2706 22.6135 3.6571 24 5.3674 24h13.2652c1.7103 0 3.0968-1.3865 3.0968-3.0967V4.7693c0-1.7103-1.3865-3.0967-3.0968-3.0967zm-8.7046.563a.2815.2815 0 0 0 .2815-.2224 1.8411 1.8411 0 0 1 3.5979 0 .2815.2815 0 0 0 .2815.2224h1.5146v1.844a.8446.8446 0 0 1-.8446.8446H9.2552a.8446.8446 0 0 1-.8446-.8446v-1.844Zm11.2383 18.6677c0 1.3993-1.1344 2.5337-2.5337 2.5337H5.3674c-1.3993 0-2.5337-1.1344-2.5337-2.5337V4.7693c0-1.3993 1.1344-2.5337 2.5337-2.5337h2.4802v1.844c0 .7774.6302 1.4076 1.4076 1.4076h5.4896c.7774 0 1.4076-.6302 1.4076-1.4076v-1.844h2.4802c1.3993 0 2.5337 1.1344 2.5337 2.5337z" }) + ] + } + ); +}); + +exports.default = SiReacthookform; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.d.ts new file mode 100644 index 000000000..d0d4ab41c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC5990"; +declare const SiReacthookform: IconType; +export { SiReacthookform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.mjs new file mode 100644 index 000000000..9ff4d7a45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReacthookform.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC5990"; +const SiReacthookform = React.forwardRef(function SiReacthookform2({ title = "React Hook Form", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.7754 17.3477H5.8065a.2815.2815 0 1 0 0 .563h4.9689a.2815.2815 0 1 0 0-.563zm7.3195 0h-4.9688a.2815.2815 0 1 0 0 .563h4.9688a.2815.2815 0 0 0 0-.563zm-7.3336-6.475H5.8065a.2815.2815 0 1 0 0 .563h4.9548a.2815.2815 0 1 0 0-.563zm7.3195 0h-4.9547a.2815.2815 0 1 0 0 .563h4.9547a.2815.2815 0 0 0 0-.563zm.5518-9.2001h-4.341a2.4042 2.4042 0 0 0-4.5804 0H5.3674c-1.7103 0-3.0968 1.3864-3.0968 3.0967v16.134C2.2706 22.6135 3.6571 24 5.3674 24h13.2652c1.7103 0 3.0968-1.3865 3.0968-3.0967V4.7693c0-1.7103-1.3865-3.0967-3.0968-3.0967zm-8.7046.563a.2815.2815 0 0 0 .2815-.2224 1.8411 1.8411 0 0 1 3.5979 0 .2815.2815 0 0 0 .2815.2224h1.5146v1.844a.8446.8446 0 0 1-.8446.8446H9.2552a.8446.8446 0 0 1-.8446-.8446v-1.844Zm11.2383 18.6677c0 1.3993-1.1344 2.5337-2.5337 2.5337H5.3674c-1.3993 0-2.5337-1.1344-2.5337-2.5337V4.7693c0-1.3993 1.1344-2.5337 2.5337-2.5337h2.4802v1.844c0 .7774.6302 1.4076 1.4076 1.4076h5.4896c.7774 0 1.4076-.6302 1.4076-1.4076v-1.844h2.4802c1.3993 0 2.5337 1.1344 2.5337 2.5337z" }) + ] + } + ); +}); + +export { SiReacthookform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.cjs new file mode 100644 index 000000000..ce24f4772 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiReactiveresume = React__namespace.forwardRef(function SiReactiveresume2({ title = "Reactive Resume", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3.393v12.949h3.662v-3.44h2c1.8-.002 4.084-.395 5.276-2.183.468-.716.703-1.56.703-2.535 0-.986-.235-1.836-.704-2.551-.468-.728-1.135-1.284-1.998-1.666-.85-.382-1.836-.574-3.02-.574H0zm3.662 2.886h2.035c.765 0 1.331.167 1.701.5.382.332.575.8.575 1.405 0 .592-.193 1.055-.575 1.388-.37.333-.936.5-1.7.5H3.661V6.28zm8.906 4.301 3.764 5.012-3.764 5.015h3.92l1.795-2.388 1.795 2.388H24L16.488 10.58h-3.92zm7.51 0-1.369 1.834 1.969 2.61L24 10.58h-3.922zM9.096 12.912s-1.496.628-3.467.604l2.115 2.826h3.92l-2.568-3.43z" }) + ] + } + ); +}); + +exports.default = SiReactiveresume; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.d.ts new file mode 100644 index 000000000..fa31460ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiReactiveresume: IconType; +export { SiReactiveresume as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.mjs new file mode 100644 index 000000000..938606bf6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactiveresume.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiReactiveresume = React.forwardRef(function SiReactiveresume2({ title = "Reactive Resume", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3.393v12.949h3.662v-3.44h2c1.8-.002 4.084-.395 5.276-2.183.468-.716.703-1.56.703-2.535 0-.986-.235-1.836-.704-2.551-.468-.728-1.135-1.284-1.998-1.666-.85-.382-1.836-.574-3.02-.574H0zm3.662 2.886h2.035c.765 0 1.331.167 1.701.5.382.332.575.8.575 1.405 0 .592-.193 1.055-.575 1.388-.37.333-.936.5-1.7.5H3.661V6.28zm8.906 4.301 3.764 5.012-3.764 5.015h3.92l1.795-2.388 1.795 2.388H24L16.488 10.58h-3.92zm7.51 0-1.369 1.834 1.969 2.61L24 10.58h-3.922zM9.096 12.912s-1.496.628-3.467.604l2.115 2.826h3.92l-2.568-3.43z" }) + ] + } + ); +}); + +export { SiReactiveresume as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.cjs new file mode 100644 index 000000000..4dc1efb9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B7178C"; +const SiReactivex = React__namespace.forwardRef(function SiReactivex2({ title = "ReactiveX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.402 2.343c-2.224.984-3.615 2.583-4.4 3.747-.852 1.268-1.184 2.319-1.184 2.328-.002.036.005-.017 0 .019-.246.7-.473 1.798-.473 1.807-.265 1.344-.142 2.593-.142 2.612l.029.246a9.58 9.58 0 01.132-1.012c.019-.133.37-2.016 1.694-3.511.142-.218 1.675-2.233 4.495-2.233.606 0 1.24.094 1.874.283h.019c.038.01.87.313 1.173.464.284.142.786.36.795.36h.02c2.715 1.325 5.062 1.75 5.081 1.76.672.114 1.278.17 1.817.17 1.079 0 1.855-.236 2.262-.69.237-.26.307-.559.293-.814.019-.985-.785-2.044-1.467-2.754a10.868 10.868 0 00-1.542-1.344c-2.044-1.514-4.23-2.28-6.52-2.28-2.347.009-3.937.832-3.956.842zm7.419 2.659c.284 0 .511.227.511.51a.509.509 0 01-.511.512.509.509 0 01-.511-.511c0-.284.227-.511.511-.511zm-6.605-1.94c.075 0 .123.019.142.019l3.227 1.003-.123.255-1.543-.482c-.548-.17-1.12-.351-1.656-.52-.01 0-.028-.01-.047-.01-.02 0-.048 0-.067.01-.293.075-1.097.359-1.334.785a.481.481 0 00-.038.378c0 .01.17.54.596 1.088l2.14-.104 1.428-.066-.142.293-3.549.17c-.53-.643-.738-1.286-.738-1.286C6.181 3.554 8.083 3.07 8.083 3.07c.045-.001.09-.006.133-.01zm11.223 15.747c2.177-.946 3.104-2.584 3.104-2.584 2.035-2.772 1.344-5.697 1.344-5.697-1.296 2.82-2.48 3.596-2.48 3.596 3.19-4.854.02-7.788.02-7.788C22.723 9.1 21 12.468 21 12.468c-1.448 3.048-3.502 4.136-3.502 4.136 2.29.426 3.975-1.117 3.975-1.117-3.284 3.549-6.842 3.379-6.842 3.379 1.495 1.675 3.738 1.533 3.738 1.533-2.934.69-5.688-.284-7.95-2.167-.425-.35-.832-.73-1.21-1.136-.144-.15-.28-.31-.417-.464-.047 1.751 1.779 3.379 1.779 3.379-2.29-.947-3.34-3-3.34-3s-1.543-2.631-.426-5.631c1.107-2.962 4.419-3.626 4.504-3.645-.251-.117-.644-.292-.814-.367-.293-.142-1.145-.455-1.145-.455a6.397 6.397 0 00-1.798-.274c-2.792 0-4.277 2.11-4.277 2.11-1.316 1.477-1.628 3.388-1.628 3.388-.37 1.827.028 3.748.028 3.748s.038.151.048.217c.303.72.69 1.43 1.145 2.101 2.46 3.672 6.454 4.94 6.454 4.94 5.914 2.006 9.955-.946 9.955-.946 3.72-2.555 4.467-5.508 4.467-5.508-3.01 2.338-4.306 2.12-4.306 2.12zM1.307 14.948a12.545 12.545 0 01-.36-1.78c-.01-.098-.025-.207-.037-.302 0 0-.133-1.287.151-2.697 0 0 .01-.038.02-.095.036-.203.093-.407.132-.577.085-.37.208-.814.33-1.174 0 0 1.307-4.287 5.726-6.245 0 0 1.524-.805 3.823-.862-.162-.16-.349-.329-.51-.435-1.08-.72-2.688-.956-3.663.057-.293.303-.54.634-.814.937-.312.34-.69.624-1.126.785-.378.142-.757.114-1.145.18-.397.066-.804.208-1.126.464-.35.284-.492.662-.53 1.097-.038.341-.028.691-.047 1.032-.048 1.003-.37 1.287-1.089 1.845-.303.227-.558.53-.747.852-.568 1.003.34 2.044.388 3.057.01.208-.01.416-.085.615-.076.217-.228.36-.35.54-.171.236-.285.52-.237.813.047.293.199.568.34.823.275.455.616.862.975 1.25.012.016.038.04.054.052l-.073-.232z" }) + ] + } + ); +}); + +exports.default = SiReactivex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.d.ts new file mode 100644 index 000000000..81fc671fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B7178C"; +declare const SiReactivex: IconType; +export { SiReactivex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.mjs new file mode 100644 index 000000000..e3e8a728e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactivex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B7178C"; +const SiReactivex = React.forwardRef(function SiReactivex2({ title = "ReactiveX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.402 2.343c-2.224.984-3.615 2.583-4.4 3.747-.852 1.268-1.184 2.319-1.184 2.328-.002.036.005-.017 0 .019-.246.7-.473 1.798-.473 1.807-.265 1.344-.142 2.593-.142 2.612l.029.246a9.58 9.58 0 01.132-1.012c.019-.133.37-2.016 1.694-3.511.142-.218 1.675-2.233 4.495-2.233.606 0 1.24.094 1.874.283h.019c.038.01.87.313 1.173.464.284.142.786.36.795.36h.02c2.715 1.325 5.062 1.75 5.081 1.76.672.114 1.278.17 1.817.17 1.079 0 1.855-.236 2.262-.69.237-.26.307-.559.293-.814.019-.985-.785-2.044-1.467-2.754a10.868 10.868 0 00-1.542-1.344c-2.044-1.514-4.23-2.28-6.52-2.28-2.347.009-3.937.832-3.956.842zm7.419 2.659c.284 0 .511.227.511.51a.509.509 0 01-.511.512.509.509 0 01-.511-.511c0-.284.227-.511.511-.511zm-6.605-1.94c.075 0 .123.019.142.019l3.227 1.003-.123.255-1.543-.482c-.548-.17-1.12-.351-1.656-.52-.01 0-.028-.01-.047-.01-.02 0-.048 0-.067.01-.293.075-1.097.359-1.334.785a.481.481 0 00-.038.378c0 .01.17.54.596 1.088l2.14-.104 1.428-.066-.142.293-3.549.17c-.53-.643-.738-1.286-.738-1.286C6.181 3.554 8.083 3.07 8.083 3.07c.045-.001.09-.006.133-.01zm11.223 15.747c2.177-.946 3.104-2.584 3.104-2.584 2.035-2.772 1.344-5.697 1.344-5.697-1.296 2.82-2.48 3.596-2.48 3.596 3.19-4.854.02-7.788.02-7.788C22.723 9.1 21 12.468 21 12.468c-1.448 3.048-3.502 4.136-3.502 4.136 2.29.426 3.975-1.117 3.975-1.117-3.284 3.549-6.842 3.379-6.842 3.379 1.495 1.675 3.738 1.533 3.738 1.533-2.934.69-5.688-.284-7.95-2.167-.425-.35-.832-.73-1.21-1.136-.144-.15-.28-.31-.417-.464-.047 1.751 1.779 3.379 1.779 3.379-2.29-.947-3.34-3-3.34-3s-1.543-2.631-.426-5.631c1.107-2.962 4.419-3.626 4.504-3.645-.251-.117-.644-.292-.814-.367-.293-.142-1.145-.455-1.145-.455a6.397 6.397 0 00-1.798-.274c-2.792 0-4.277 2.11-4.277 2.11-1.316 1.477-1.628 3.388-1.628 3.388-.37 1.827.028 3.748.028 3.748s.038.151.048.217c.303.72.69 1.43 1.145 2.101 2.46 3.672 6.454 4.94 6.454 4.94 5.914 2.006 9.955-.946 9.955-.946 3.72-2.555 4.467-5.508 4.467-5.508-3.01 2.338-4.306 2.12-4.306 2.12zM1.307 14.948a12.545 12.545 0 01-.36-1.78c-.01-.098-.025-.207-.037-.302 0 0-.133-1.287.151-2.697 0 0 .01-.038.02-.095.036-.203.093-.407.132-.577.085-.37.208-.814.33-1.174 0 0 1.307-4.287 5.726-6.245 0 0 1.524-.805 3.823-.862-.162-.16-.349-.329-.51-.435-1.08-.72-2.688-.956-3.663.057-.293.303-.54.634-.814.937-.312.34-.69.624-1.126.785-.378.142-.757.114-1.145.18-.397.066-.804.208-1.126.464-.35.284-.492.662-.53 1.097-.038.341-.028.691-.047 1.032-.048 1.003-.37 1.287-1.089 1.845-.303.227-.558.53-.747.852-.568 1.003.34 2.044.388 3.057.01.208-.01.416-.085.615-.076.217-.228.36-.35.54-.171.236-.285.52-.237.813.047.293.199.568.34.823.275.455.616.862.975 1.25.012.016.038.04.054.052l-.073-.232z" }) + ] + } + ); +}); + +export { SiReactivex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.cjs new file mode 100644 index 000000000..735b7da5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0088CC"; +const SiReactos = React__namespace.forwardRef(function SiReactos2({ title = "ReactOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.21 24c-1.148-.007-2.477-.334-3.89-.915-2.823-1.163-6.04-3.372-9.036-6.367C4.289 13.723 2.075 10.505.913 7.68-.25 4.857-.383 2.36.988.989 2.358-.38 4.855-.248 7.679.915c.306.125.617.265.932.415-.331.113-.658.24-.974.383l-.141-.058C4.832.558 2.698.519 1.607 1.609.517 2.7.557 4.83 1.653 7.494c1.097 2.663 3.235 5.793 6.147 8.704 2.91 2.911 6.044 5.05 8.708 6.147 2.664 1.097 4.79 1.136 5.88.045 1.091-1.09 1.056-3.22-.041-5.884-.108-.263-.23-.531-.358-.803.134-.317.25-.642.354-.973.282.54.53 1.07.744 1.589 1.163 2.823 1.292 5.32-.079 6.691-.685.685-1.651.997-2.799.99zM3.79 24c-1.148.008-2.117-.305-2.802-.99-1.37-1.37-1.238-3.868-.075-6.691.235-.572.517-1.16.836-1.76.098.333.212.66.34.978a17.67 17.67 0 00-.436.969C.556 19.169.521 21.3 1.611 22.39c1.091 1.091 3.221 1.051 5.885-.045.922-.38 3.021-1.69 4.026-2.308.216.162.433.32.649.474-1.157.733-3.415 2.13-4.492 2.574-1.412.581-2.74.907-3.888.915zm9.753-4.458c-.214-.14-.429-.282-.645-.433a34.547 34.547 0 003.302-2.911c2.912-2.911 5.05-6.04 6.147-8.704 1.097-2.664 1.132-4.794.042-5.885-1.091-1.09-3.217-1.055-5.88.042l-.072.029a10.726 10.726 0 00-.99-.379c.295-.14.587-.272.874-.39 2.824-1.163 5.321-1.292 6.691.078s1.238 3.864.075 6.688c-1.162 2.823-3.376 6.046-6.37 9.04a35.747 35.747 0 01-3.174 2.825zm1.95 1.156c-.325-.17-1.798-1.073-2.135-1.273 1.002-.806 2.423-1.97 3.396-2.944 1.718-1.718 3.981-4.787 5.162-6.555-.008.111-.093 2.49-.105 2.6a9.802 9.802 0 01-6.318 8.172zm-6.928-.034c-3.407-1.308-6.043-4.71-6.287-8.198-.01-.151-.06-.399-.054-.984.007-.602.056-1.423.159-1.283 1.036 1.42 3.976 5.455 5.352 6.83.973.973 1.927 1.624 2.929 2.43a112.45 112.45 0 01-2.1 1.205zm3.43-2.208a33.27 33.27 0 01-3.443-3.01c-2.54-2.54-4.462-5.254-5.568-7.582 1.45-3.597 4.973-6.138 9.087-6.138 4.051 0 7.53 2.465 9.02 5.976-1.093 2.363-3.045 5.145-5.643 7.743a33.161 33.161 0 01-3.452 3.011z" }) + ] + } + ); +}); + +exports.default = SiReactos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.d.ts new file mode 100644 index 000000000..26b8c2a90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0088CC"; +declare const SiReactos: IconType; +export { SiReactos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.mjs new file mode 100644 index 000000000..fe658cfac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0088CC"; +const SiReactos = React.forwardRef(function SiReactos2({ title = "ReactOS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.21 24c-1.148-.007-2.477-.334-3.89-.915-2.823-1.163-6.04-3.372-9.036-6.367C4.289 13.723 2.075 10.505.913 7.68-.25 4.857-.383 2.36.988.989 2.358-.38 4.855-.248 7.679.915c.306.125.617.265.932.415-.331.113-.658.24-.974.383l-.141-.058C4.832.558 2.698.519 1.607 1.609.517 2.7.557 4.83 1.653 7.494c1.097 2.663 3.235 5.793 6.147 8.704 2.91 2.911 6.044 5.05 8.708 6.147 2.664 1.097 4.79 1.136 5.88.045 1.091-1.09 1.056-3.22-.041-5.884-.108-.263-.23-.531-.358-.803.134-.317.25-.642.354-.973.282.54.53 1.07.744 1.589 1.163 2.823 1.292 5.32-.079 6.691-.685.685-1.651.997-2.799.99zM3.79 24c-1.148.008-2.117-.305-2.802-.99-1.37-1.37-1.238-3.868-.075-6.691.235-.572.517-1.16.836-1.76.098.333.212.66.34.978a17.67 17.67 0 00-.436.969C.556 19.169.521 21.3 1.611 22.39c1.091 1.091 3.221 1.051 5.885-.045.922-.38 3.021-1.69 4.026-2.308.216.162.433.32.649.474-1.157.733-3.415 2.13-4.492 2.574-1.412.581-2.74.907-3.888.915zm9.753-4.458c-.214-.14-.429-.282-.645-.433a34.547 34.547 0 003.302-2.911c2.912-2.911 5.05-6.04 6.147-8.704 1.097-2.664 1.132-4.794.042-5.885-1.091-1.09-3.217-1.055-5.88.042l-.072.029a10.726 10.726 0 00-.99-.379c.295-.14.587-.272.874-.39 2.824-1.163 5.321-1.292 6.691.078s1.238 3.864.075 6.688c-1.162 2.823-3.376 6.046-6.37 9.04a35.747 35.747 0 01-3.174 2.825zm1.95 1.156c-.325-.17-1.798-1.073-2.135-1.273 1.002-.806 2.423-1.97 3.396-2.944 1.718-1.718 3.981-4.787 5.162-6.555-.008.111-.093 2.49-.105 2.6a9.802 9.802 0 01-6.318 8.172zm-6.928-.034c-3.407-1.308-6.043-4.71-6.287-8.198-.01-.151-.06-.399-.054-.984.007-.602.056-1.423.159-1.283 1.036 1.42 3.976 5.455 5.352 6.83.973.973 1.927 1.624 2.929 2.43a112.45 112.45 0 01-2.1 1.205zm3.43-2.208a33.27 33.27 0 01-3.443-3.01c-2.54-2.54-4.462-5.254-5.568-7.582 1.45-3.597 4.973-6.138 9.087-6.138 4.051 0 7.53 2.465 9.02 5.976-1.093 2.363-3.045 5.145-5.643 7.743a33.161 33.161 0 01-3.452 3.011z" }) + ] + } + ); +}); + +export { SiReactos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.cjs new file mode 100644 index 000000000..6a7673e06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4154"; +const SiReactquery = React__namespace.forwardRef(function SiReactquery2({ title = "React Query", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.9297 13.6875c.164-.0938.375-.0352.4687.1328l.0625.1055c.4805.8515.9805 1.6601 1.5 2.4258.6133.9023 1.3047 1.8164 2.0743 2.7421a.3455.3455 0 0 1-.0391.4844l-.0742.0664c-2.543 2.2227-4.1914 2.664-4.9532 1.332-.746-1.3046-.4765-3.6718.8086-7.1093a.3437.3437 0 0 1 .1524-.1797ZM17.75 16.3008c.1836-.0313.3594.086.3945.2695l.0196.1016c.6289 3.2851.1875 4.9297-1.3243 4.9297-1.4804 0-3.3593-1.4024-5.6484-4.2032a.3271.3271 0 0 1-.0742-.2226c0-.1875.1562-.3399.3437-.3399h.1211a32.9838 32.9838 0 0 0 2.8086-.0976c1.0703-.086 2.1914-.2305 3.3594-.4375zm.871-6.9766a.3528.3528 0 0 1 .4454-.211l.1016.0352c3.2617 1.1094 4.5039 2.332 3.7187 3.6641-.7656 1.3047-2.9922 2.254-6.6836 2.8477-.082.0117-.168-.004-.2383-.047-.168-.0976-.2265-.3085-.125-.4765l.0625-.1054c.504-.8438.957-1.6836 1.3672-2.5235.4766-.9883.9297-2.0508 1.3516-3.1836zM7.797 8.3398c.082-.0117.168.004.2383.047.168.0976.2265.3085.125.4765l-.0625.1054a34.0882 34.0882 0 0 0-1.3672 2.5235c-.4766.9883-.9297 2.0508-1.3516 3.1836a.3528.3528 0 0 1-.4453.211l-.1016-.0352c-3.2617-1.1094-4.5039-2.332-3.7187-3.6641.7656-1.3047 2.9922-2.254 6.6836-2.8477Zm5.2812-3.9843c2.543-2.2227 4.1914-2.664 4.9532-1.332.746 1.3046.4765 3.6718-.8086 7.1093a.3436.3436 0 0 1-.1524.1797c-.164.0938-.375.0352-.4687-.1328l-.0625-.1055c-.4805-.8515-.9805-1.6601-1.5-2.4258-.6133-.9023-1.3047-1.8164-2.0743-2.7421a.3455.3455 0 0 1 .0391-.4844Zm-5.793-2.082c1.4805 0 3.3633 1.4023 5.6485 4.203a.3488.3488 0 0 1 .0781.2188c-.0039.1914-.1562.3438-.3476.3438l-.1172-.004a34.5835 34.5835 0 0 0-2.8086.1016c-1.0742.086-2.1953.2305-3.3633.4375a.343.343 0 0 1-.3945-.2734l-.0196-.0977c-.629-3.2851-.1876-4.9297 1.3242-4.9297Zm2.8711 5.8124h3.6875a.638.638 0 0 1 .5508.3164l1.8477 3.2188a.6437.6437 0 0 1 0 .6289l-1.8477 3.2227a.638.638 0 0 1-.5507.3164h-3.6875c-.2266 0-.4375-.1211-.547-.3164L7.7579 12.25a.6437.6437 0 0 1 0-.629l1.8516-3.2187c.1093-.1953.3203-.3164.5468-.3164Zm3.2305.793a.638.638 0 0 1 .5508.3164l1.3906 2.4258a.6437.6437 0 0 1 0 .6289l-1.3906 2.4297a.638.638 0 0 1-.5508.3164h-2.7734c-.2266 0-.4375-.1211-.5469-.3164L8.672 12.25a.6437.6437 0 0 1 0-.629l1.3945-2.4257c.1094-.1953.3203-.3164.5469-.3164Zm-.4922.8672h-1.789c-.2266 0-.4336.1172-.547.3164l-.8983 1.5586a.6437.6437 0 0 0 0 .6289l.8984 1.5625a.6317.6317 0 0 0 .5469.3164h1.789a.6317.6317 0 0 0 .547-.3164l.8983-1.5625a.6437.6437 0 0 0 0-.629l-.8984-1.5585c-.1133-.1992-.3203-.3164-.5469-.3164Zm-.4765.8281c.2265 0 .4375.1211.5468.3164l.422.7305c.1132.1953.1132.4375 0 .6289l-.422.7344c-.1093.1953-.3203.3164-.5468.3164h-.836a.6317.6317 0 0 1-.5468-.3164l-.422-.7344c-.1132-.1914-.1132-.4336 0-.629l.422-.7304a.6317.6317 0 0 1 .5468-.3164zm-.418.8164a.548.548 0 0 0-.4727.2735c-.0976.168-.0976.375 0 .5468a.5444.5444 0 0 0 .4727.2696.5444.5444 0 0 0 .4727-.2696c.0976-.1718.0976-.3789 0-.5468A.548.548 0 0 0 12 11.3906Zm-4.4219.5469h.9805M18.9805 7.75c.3906-1.8945.4765-3.3438.2226-4.3984-.1484-.629-.4218-1.1368-.8398-1.5078-.4414-.3907-1-.582-1.625-.582-1.0352 0-2.1211.4726-3.2813 1.3671-.4726.3633-.9648.8047-1.4726 1.3164-.043-.0508-.086-.1015-.1367-.1445-1.4454-1.2852-2.6602-2.082-3.6993-2.3906-.6171-.1836-1.1953-.1993-1.7226-.0235-.5586.1875-1.004.5742-1.3164 1.1172-.5156.8945-.6524 2.0742-.461 3.5274.0782.5898.2149 1.2343.4024 1.9335a1.1187 1.1187 0 0 0-.2149.047C3.008 8.621 1.711 9.2694.9258 10.0155c-.4649.4414-.7695.9375-.8828 1.4805-.1133.5781 0 1.1562.3125 1.6992.5156.8945 1.4648 1.5977 2.8164 2.1563.543.2226 1.1562.4257 1.8437.6093a1.0227 1.0227 0 0 0-.0703.2266c-.3906 1.8906-.4765 3.3438-.2226 4.3945.1484.629.4257 1.1407.8398 1.5078.4414.3907 1 .582 1.625.582 1.0352 0 2.121-.4726 3.2813-1.3632.4765-.3711.9726-.8164 1.4882-1.336a1.2 1.2 0 0 0 .1953.2266c1.4454 1.2852 2.6602 2.082 3.6993 2.3906.6172.1836 1.1953.1993 1.7226.0235.5586-.1875 1.004-.5742 1.3164-1.1172.5157-.8945.6524-2.0742.461-3.5273-.082-.6133-.2227-1.2813-.4258-2.0118a1.2248 1.2248 0 0 0 .2383-.0468c1.828-.6094 3.125-1.2578 3.9101-2.004.4649-.4413.7696-.9374.8828-1.4804.1133-.5781 0-1.1563-.3125-1.6992-.5156-.8946-1.4648-1.5977-2.8164-2.1563-.5586-.2304-1.1953-.4414-1.9062-.625a.8647.8647 0 0 0 .0586-.1953z" }) + ] + } + ); +}); + +exports.default = SiReactquery; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.d.ts new file mode 100644 index 000000000..62c557e07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4154"; +declare const SiReactquery: IconType; +export { SiReactquery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.mjs new file mode 100644 index 000000000..56bafef0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactquery.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4154"; +const SiReactquery = React.forwardRef(function SiReactquery2({ title = "React Query", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.9297 13.6875c.164-.0938.375-.0352.4687.1328l.0625.1055c.4805.8515.9805 1.6601 1.5 2.4258.6133.9023 1.3047 1.8164 2.0743 2.7421a.3455.3455 0 0 1-.0391.4844l-.0742.0664c-2.543 2.2227-4.1914 2.664-4.9532 1.332-.746-1.3046-.4765-3.6718.8086-7.1093a.3437.3437 0 0 1 .1524-.1797ZM17.75 16.3008c.1836-.0313.3594.086.3945.2695l.0196.1016c.6289 3.2851.1875 4.9297-1.3243 4.9297-1.4804 0-3.3593-1.4024-5.6484-4.2032a.3271.3271 0 0 1-.0742-.2226c0-.1875.1562-.3399.3437-.3399h.1211a32.9838 32.9838 0 0 0 2.8086-.0976c1.0703-.086 2.1914-.2305 3.3594-.4375zm.871-6.9766a.3528.3528 0 0 1 .4454-.211l.1016.0352c3.2617 1.1094 4.5039 2.332 3.7187 3.6641-.7656 1.3047-2.9922 2.254-6.6836 2.8477-.082.0117-.168-.004-.2383-.047-.168-.0976-.2265-.3085-.125-.4765l.0625-.1054c.504-.8438.957-1.6836 1.3672-2.5235.4766-.9883.9297-2.0508 1.3516-3.1836zM7.797 8.3398c.082-.0117.168.004.2383.047.168.0976.2265.3085.125.4765l-.0625.1054a34.0882 34.0882 0 0 0-1.3672 2.5235c-.4766.9883-.9297 2.0508-1.3516 3.1836a.3528.3528 0 0 1-.4453.211l-.1016-.0352c-3.2617-1.1094-4.5039-2.332-3.7187-3.6641.7656-1.3047 2.9922-2.254 6.6836-2.8477Zm5.2812-3.9843c2.543-2.2227 4.1914-2.664 4.9532-1.332.746 1.3046.4765 3.6718-.8086 7.1093a.3436.3436 0 0 1-.1524.1797c-.164.0938-.375.0352-.4687-.1328l-.0625-.1055c-.4805-.8515-.9805-1.6601-1.5-2.4258-.6133-.9023-1.3047-1.8164-2.0743-2.7421a.3455.3455 0 0 1 .0391-.4844Zm-5.793-2.082c1.4805 0 3.3633 1.4023 5.6485 4.203a.3488.3488 0 0 1 .0781.2188c-.0039.1914-.1562.3438-.3476.3438l-.1172-.004a34.5835 34.5835 0 0 0-2.8086.1016c-1.0742.086-2.1953.2305-3.3633.4375a.343.343 0 0 1-.3945-.2734l-.0196-.0977c-.629-3.2851-.1876-4.9297 1.3242-4.9297Zm2.8711 5.8124h3.6875a.638.638 0 0 1 .5508.3164l1.8477 3.2188a.6437.6437 0 0 1 0 .6289l-1.8477 3.2227a.638.638 0 0 1-.5507.3164h-3.6875c-.2266 0-.4375-.1211-.547-.3164L7.7579 12.25a.6437.6437 0 0 1 0-.629l1.8516-3.2187c.1093-.1953.3203-.3164.5468-.3164Zm3.2305.793a.638.638 0 0 1 .5508.3164l1.3906 2.4258a.6437.6437 0 0 1 0 .6289l-1.3906 2.4297a.638.638 0 0 1-.5508.3164h-2.7734c-.2266 0-.4375-.1211-.5469-.3164L8.672 12.25a.6437.6437 0 0 1 0-.629l1.3945-2.4257c.1094-.1953.3203-.3164.5469-.3164Zm-.4922.8672h-1.789c-.2266 0-.4336.1172-.547.3164l-.8983 1.5586a.6437.6437 0 0 0 0 .6289l.8984 1.5625a.6317.6317 0 0 0 .5469.3164h1.789a.6317.6317 0 0 0 .547-.3164l.8983-1.5625a.6437.6437 0 0 0 0-.629l-.8984-1.5585c-.1133-.1992-.3203-.3164-.5469-.3164Zm-.4765.8281c.2265 0 .4375.1211.5468.3164l.422.7305c.1132.1953.1132.4375 0 .6289l-.422.7344c-.1093.1953-.3203.3164-.5468.3164h-.836a.6317.6317 0 0 1-.5468-.3164l-.422-.7344c-.1132-.1914-.1132-.4336 0-.629l.422-.7304a.6317.6317 0 0 1 .5468-.3164zm-.418.8164a.548.548 0 0 0-.4727.2735c-.0976.168-.0976.375 0 .5468a.5444.5444 0 0 0 .4727.2696.5444.5444 0 0 0 .4727-.2696c.0976-.1718.0976-.3789 0-.5468A.548.548 0 0 0 12 11.3906Zm-4.4219.5469h.9805M18.9805 7.75c.3906-1.8945.4765-3.3438.2226-4.3984-.1484-.629-.4218-1.1368-.8398-1.5078-.4414-.3907-1-.582-1.625-.582-1.0352 0-2.1211.4726-3.2813 1.3671-.4726.3633-.9648.8047-1.4726 1.3164-.043-.0508-.086-.1015-.1367-.1445-1.4454-1.2852-2.6602-2.082-3.6993-2.3906-.6171-.1836-1.1953-.1993-1.7226-.0235-.5586.1875-1.004.5742-1.3164 1.1172-.5156.8945-.6524 2.0742-.461 3.5274.0782.5898.2149 1.2343.4024 1.9335a1.1187 1.1187 0 0 0-.2149.047C3.008 8.621 1.711 9.2694.9258 10.0155c-.4649.4414-.7695.9375-.8828 1.4805-.1133.5781 0 1.1562.3125 1.6992.5156.8945 1.4648 1.5977 2.8164 2.1563.543.2226 1.1562.4257 1.8437.6093a1.0227 1.0227 0 0 0-.0703.2266c-.3906 1.8906-.4765 3.3438-.2226 4.3945.1484.629.4257 1.1407.8398 1.5078.4414.3907 1 .582 1.625.582 1.0352 0 2.121-.4726 3.2813-1.3632.4765-.3711.9726-.8164 1.4882-1.336a1.2 1.2 0 0 0 .1953.2266c1.4454 1.2852 2.6602 2.082 3.6993 2.3906.6172.1836 1.1953.1993 1.7226.0235.5586-.1875 1.004-.5742 1.3164-1.1172.5157-.8945.6524-2.0742.461-3.5273-.082-.6133-.2227-1.2813-.4258-2.0118a1.2248 1.2248 0 0 0 .2383-.0468c1.828-.6094 3.125-1.2578 3.9101-2.004.4649-.4413.7696-.9374.8828-1.4804.1133-.5781 0-1.1563-.3125-1.6992-.5156-.8946-1.4648-1.5977-2.8164-2.1563-.5586-.2304-1.1953-.4414-1.9062-.625a.8647.8647 0 0 0 .0586-.1953z" }) + ] + } + ); +}); + +export { SiReactquery as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.cjs new file mode 100644 index 000000000..4b4125a31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CA4245"; +const SiReactrouter = React__namespace.forwardRef(function SiReactrouter2({ title = "React Router", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.118 5.466a2.306 2.306 0 00-.623.08c-.278.067-.702.332-.953.583-.41.423-.49.609-.662 1.469-.08.423.41 1.43.847 1.734.45.317 1.085.502 2.065.608 1.429.16 1.84.636 1.84 2.197 0 1.377-.385 1.747-1.96 1.906-1.707.172-2.58.834-2.765 2.117-.106.781.41 1.76 1.125 2.091 1.627.768 3.15-.198 3.467-2.196.211-1.284.622-1.642 1.998-1.747 1.588-.133 2.409-.675 2.713-1.787.278-1.02-.304-2.157-1.297-2.554-.264-.106-.873-.238-1.35-.291-1.495-.16-1.879-.424-2.038-1.39-.225-1.337-.317-1.562-.794-2.09a2.174 2.174 0 00-1.613-.73zm-4.785 4.36a2.145 2.145 0 00-.497.048c-1.469.318-2.17 2.051-1.35 3.295 1.178 1.774 3.944.953 3.97-1.177.012-1.193-.98-2.143-2.123-2.166zM2.089 14.19a2.22 2.22 0 00-.427.052c-2.158.476-2.237 3.626-.106 4.182.53.145.582.145 1.111.013 1.191-.318 1.866-1.456 1.549-2.607-.278-1.02-1.144-1.664-2.127-1.64zm19.824.008c-.233.002-.477.058-.784.162-1.39.477-1.866 2.092-.98 3.336.557.794 1.96 1.058 2.82.516 1.416-.874 1.363-3.057-.093-3.746-.38-.186-.663-.271-.963-.268z" }) + ] + } + ); +}); + +exports.default = SiReactrouter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.d.ts new file mode 100644 index 000000000..e28ad51ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CA4245"; +declare const SiReactrouter: IconType; +export { SiReactrouter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.mjs new file mode 100644 index 000000000..779381983 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReactrouter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CA4245"; +const SiReactrouter = React.forwardRef(function SiReactrouter2({ title = "React Router", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.118 5.466a2.306 2.306 0 00-.623.08c-.278.067-.702.332-.953.583-.41.423-.49.609-.662 1.469-.08.423.41 1.43.847 1.734.45.317 1.085.502 2.065.608 1.429.16 1.84.636 1.84 2.197 0 1.377-.385 1.747-1.96 1.906-1.707.172-2.58.834-2.765 2.117-.106.781.41 1.76 1.125 2.091 1.627.768 3.15-.198 3.467-2.196.211-1.284.622-1.642 1.998-1.747 1.588-.133 2.409-.675 2.713-1.787.278-1.02-.304-2.157-1.297-2.554-.264-.106-.873-.238-1.35-.291-1.495-.16-1.879-.424-2.038-1.39-.225-1.337-.317-1.562-.794-2.09a2.174 2.174 0 00-1.613-.73zm-4.785 4.36a2.145 2.145 0 00-.497.048c-1.469.318-2.17 2.051-1.35 3.295 1.178 1.774 3.944.953 3.97-1.177.012-1.193-.98-2.143-2.123-2.166zM2.089 14.19a2.22 2.22 0 00-.427.052c-2.158.476-2.237 3.626-.106 4.182.53.145.582.145 1.111.013 1.191-.318 1.866-1.456 1.549-2.607-.278-1.02-1.144-1.664-2.127-1.64zm19.824.008c-.233.002-.477.058-.784.162-1.39.477-1.866 2.092-.98 3.336.557.794 1.96 1.058 2.82.516 1.416-.874 1.363-3.057-.093-3.746-.38-.186-.663-.271-.963-.268z" }) + ] + } + ); +}); + +export { SiReactrouter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.cjs new file mode 100644 index 000000000..4fbc6ce24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4154"; +const SiReacttable = React__namespace.forwardRef(function SiReacttable2({ title = "React Table", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.738 1.263c.626 0 1.183.192 1.624.581.417.369.692.88.842 1.507.253 1.054.169 2.505-.222 4.398a1.105 1.105 0 01-.06.195c.712.187 1.347.395 1.906.626 1.352.559 2.301 1.264 2.817 2.158.313.542.427 1.12.31 1.696-.11.546-.415 1.04-.882 1.482-.784.745-2.08 1.396-3.91 2.002a1.1 1.1 0 01-.236.05c.201.729.343 1.4.424 2.013.193 1.452.056 2.629-.46 3.524-.314.543-.758.93-1.316 1.118-.528.177-1.107.16-1.725-.023-1.039-.308-2.253-1.106-3.696-2.39a1.1 1.1 0 01-.195-.228c-.516.521-1.013.966-1.491 1.335-1.16.894-2.247 1.364-3.28 1.364-.626 0-1.183-.19-1.624-.58-.417-.37-.692-.88-.842-1.507-.253-1.054-.169-2.506.222-4.398.016-.079.04-.154.072-.224-.687-.183-1.301-.386-1.844-.61C1.82 14.793.871 14.088.355 13.194c-.313-.542-.427-1.12-.31-1.697.11-.545.415-1.039.882-1.482.784-.744 2.08-1.396 3.91-2.002.071-.023.143-.039.215-.048a14.937 14.937 0 01-.403-1.936c-.193-1.452-.056-2.629.46-3.524.314-.543.758-.93 1.316-1.118.528-.177 1.107-.16 1.725.023 1.039.308 2.253 1.106 3.696 2.39.05.045.097.094.137.147.51-.515 1.002-.954 1.475-1.32 1.16-.893 2.247-1.364 3.28-1.364zM7.359 13.761a.342.342 0 00-.582.106c-1.284 3.436-1.554 5.806-.809 7.11.762 1.332 2.413.889 4.953-1.33l.077-.068.053-.059a.351.351 0 00-.016-.427 36.239 36.239 0 01-2.074-2.743 34.032 34.032 0 01-1.502-2.425l-.06-.106zm10.46 2.534l-.067.005c-1.169.206-2.29.352-3.363.437-.91.072-1.845.105-2.808.1h-.12l-.07.006a.343.343 0 00-.198.554C13.48 20.2 15.361 21.6 16.84 21.6c1.512 0 1.954-1.643 1.326-4.928l-.02-.1-.02-.066a.342.342 0 00-.374-.206zm-6.231-1.137H9.385l.252.44a.632.632 0 00.548.318h1.403v-.758zm3.087 0h-2.203v.758h1.403a.632.632 0 00.548-.317l.252-.441zM19 9.098a.355.355 0 00-.379.226 35.885 35.885 0 01-1.352 3.184 33.75 33.75 0 01-1.366 2.525l-.063.106-.03.064a.345.345 0 00.155.412.36.36 0 00.237.044c3.692-.595 5.92-1.543 6.687-2.846.784-1.332-.456-2.554-3.72-3.666l-.1-.033zm-11.118-.76l-.082.003c-3.692.595-5.92 1.543-6.687 2.846-.784 1.332.456 2.554 3.72 3.666l.1.033.069.016c.161.021.321-.07.379-.226a35.885 35.885 0 011.352-3.184 33.75 33.75 0 011.366-2.525l.063-.106.03-.064a.345.345 0 00-.155-.412.36.36 0 00-.237-.044zm3.707 5.051H8.37l.507.885h2.71v-.885zm4.102 0h-3.218v.885h2.71l.508-.885zm-4.102-1.768H7.862l-.073.128a.632.632 0 000 .628l.073.128h3.726v-.884zm4.61 0h-3.726v.884h3.726l.073-.128a.632.632 0 000-.628l-.073-.128zm-4.61-1.768h-2.71l-.508.884h3.218v-.884zm3.595 0h-2.711v.884h3.218l-.507-.884zm2.849-6.83c-.762-1.332-2.413-.889-4.953 1.33l-.077.068-.053.059a.351.351 0 00.016.427c.768.926 1.46 1.84 2.074 2.743.52.765 1.021 1.573 1.502 2.425l.06.106.04.058a.342.342 0 00.582-.106c1.284-3.436 1.554-5.806.809-7.11zm-6.444 5.188h-1.403a.632.632 0 00-.548.317l-.253.44h2.204v-.757zm2.287 0h-1.403v.757h2.204l-.253-.44a.632.632 0 00-.548-.317zM7.286 2.274c-1.511 0-1.953 1.642-1.326 4.928l.02.1.02.065c.06.146.214.235.375.207a35.507 35.507 0 013.363-.437 33.252 33.252 0 012.807-.1h.12l.07-.006a.343.343 0 00.198-.554c-2.286-2.802-4.168-4.203-5.647-4.203z" }) + ] + } + ); +}); + +exports.default = SiReacttable; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.d.ts new file mode 100644 index 000000000..27fede9f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4154"; +declare const SiReacttable: IconType; +export { SiReacttable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.mjs new file mode 100644 index 000000000..172d4d058 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReacttable.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4154"; +const SiReacttable = React.forwardRef(function SiReacttable2({ title = "React Table", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.738 1.263c.626 0 1.183.192 1.624.581.417.369.692.88.842 1.507.253 1.054.169 2.505-.222 4.398a1.105 1.105 0 01-.06.195c.712.187 1.347.395 1.906.626 1.352.559 2.301 1.264 2.817 2.158.313.542.427 1.12.31 1.696-.11.546-.415 1.04-.882 1.482-.784.745-2.08 1.396-3.91 2.002a1.1 1.1 0 01-.236.05c.201.729.343 1.4.424 2.013.193 1.452.056 2.629-.46 3.524-.314.543-.758.93-1.316 1.118-.528.177-1.107.16-1.725-.023-1.039-.308-2.253-1.106-3.696-2.39a1.1 1.1 0 01-.195-.228c-.516.521-1.013.966-1.491 1.335-1.16.894-2.247 1.364-3.28 1.364-.626 0-1.183-.19-1.624-.58-.417-.37-.692-.88-.842-1.507-.253-1.054-.169-2.506.222-4.398.016-.079.04-.154.072-.224-.687-.183-1.301-.386-1.844-.61C1.82 14.793.871 14.088.355 13.194c-.313-.542-.427-1.12-.31-1.697.11-.545.415-1.039.882-1.482.784-.744 2.08-1.396 3.91-2.002.071-.023.143-.039.215-.048a14.937 14.937 0 01-.403-1.936c-.193-1.452-.056-2.629.46-3.524.314-.543.758-.93 1.316-1.118.528-.177 1.107-.16 1.725.023 1.039.308 2.253 1.106 3.696 2.39.05.045.097.094.137.147.51-.515 1.002-.954 1.475-1.32 1.16-.893 2.247-1.364 3.28-1.364zM7.359 13.761a.342.342 0 00-.582.106c-1.284 3.436-1.554 5.806-.809 7.11.762 1.332 2.413.889 4.953-1.33l.077-.068.053-.059a.351.351 0 00-.016-.427 36.239 36.239 0 01-2.074-2.743 34.032 34.032 0 01-1.502-2.425l-.06-.106zm10.46 2.534l-.067.005c-1.169.206-2.29.352-3.363.437-.91.072-1.845.105-2.808.1h-.12l-.07.006a.343.343 0 00-.198.554C13.48 20.2 15.361 21.6 16.84 21.6c1.512 0 1.954-1.643 1.326-4.928l-.02-.1-.02-.066a.342.342 0 00-.374-.206zm-6.231-1.137H9.385l.252.44a.632.632 0 00.548.318h1.403v-.758zm3.087 0h-2.203v.758h1.403a.632.632 0 00.548-.317l.252-.441zM19 9.098a.355.355 0 00-.379.226 35.885 35.885 0 01-1.352 3.184 33.75 33.75 0 01-1.366 2.525l-.063.106-.03.064a.345.345 0 00.155.412.36.36 0 00.237.044c3.692-.595 5.92-1.543 6.687-2.846.784-1.332-.456-2.554-3.72-3.666l-.1-.033zm-11.118-.76l-.082.003c-3.692.595-5.92 1.543-6.687 2.846-.784 1.332.456 2.554 3.72 3.666l.1.033.069.016c.161.021.321-.07.379-.226a35.885 35.885 0 011.352-3.184 33.75 33.75 0 011.366-2.525l.063-.106.03-.064a.345.345 0 00-.155-.412.36.36 0 00-.237-.044zm3.707 5.051H8.37l.507.885h2.71v-.885zm4.102 0h-3.218v.885h2.71l.508-.885zm-4.102-1.768H7.862l-.073.128a.632.632 0 000 .628l.073.128h3.726v-.884zm4.61 0h-3.726v.884h3.726l.073-.128a.632.632 0 000-.628l-.073-.128zm-4.61-1.768h-2.71l-.508.884h3.218v-.884zm3.595 0h-2.711v.884h3.218l-.507-.884zm2.849-6.83c-.762-1.332-2.413-.889-4.953 1.33l-.077.068-.053.059a.351.351 0 00.016.427c.768.926 1.46 1.84 2.074 2.743.52.765 1.021 1.573 1.502 2.425l.06.106.04.058a.342.342 0 00.582-.106c1.284-3.436 1.554-5.806.809-7.11zm-6.444 5.188h-1.403a.632.632 0 00-.548.317l-.253.44h2.204v-.757zm2.287 0h-1.403v.757h2.204l-.253-.44a.632.632 0 00-.548-.317zM7.286 2.274c-1.511 0-1.953 1.642-1.326 4.928l.02.1.02.065c.06.146.214.235.375.207a35.507 35.507 0 013.363-.437 33.252 33.252 0 012.807-.1h.12l.07-.006a.343.343 0 00.198-.554c-2.286-2.802-4.168-4.203-5.647-4.203z" }) + ] + } + ); +}); + +export { SiReacttable as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.cjs new file mode 100644 index 000000000..387e4b5d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111111"; +const SiReaddotcv = React__namespace.forwardRef(function SiReaddotcv2({ title = "Read.cv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.8315 3.36707L8.66861 0.10804C6.98928 -0.34192 5.26312 0.65467 4.81314 2.334L0.94304 16.7773C0.49306 18.4568 1.48966 20.1829 3.16899 20.6328L15.3319 23.892C17.0112 24.3419 18.7373 23.3453 19.1874 21.666L23.0574 7.22254C23.5073 5.54321 22.5108 3.81705 20.8315 3.36707ZM6.33349 2.74138C6.55849 1.90171 7.42156 1.40341 8.26123 1.62841L20.4241 4.88744C21.2637 5.11242 21.762 5.9755 21.537 6.81516L17.6669 21.2586C17.4421 22.0983 16.5789 22.5966 15.7393 22.3715L3.57639 19.1125C2.73671 18.8875 2.23842 18.0245 2.4634 17.1849L6.33349 2.74138ZM8.9669 5.07654C8.54705 4.96404 8.11552 5.2132 8.00302 5.63302C7.89054 6.05285 8.13968 6.4844 8.55952 6.59689L17.6817 9.04116C18.1015 9.15366 18.5331 8.90451 18.6455 8.48468C18.7581 8.06483 18.5089 7.6333 18.0891 7.52081L8.9669 5.07654ZM6.98458 9.43392C7.09708 9.01409 7.52862 8.76493 7.94844 8.87743L17.0706 11.3217C17.4904 11.4342 17.7395 11.8657 17.6271 12.2856C17.5146 12.7054 17.0831 12.9546 16.6632 12.8421L7.54107 10.3978C7.12124 10.2853 6.87208 9.85375 6.98458 9.43392ZM6.93 12.6783C6.51017 12.5658 6.07862 12.815 5.96614 13.2348C5.85364 13.6546 6.1028 14.0861 6.52263 14.1987L11.8439 15.6246C12.2637 15.737 12.6952 15.4879 12.8077 15.0679C12.9202 14.6481 12.6711 14.2167 12.2513 14.1041L6.93 12.6783Z" }) + ] + } + ); +}); + +exports.default = SiReaddotcv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.d.ts new file mode 100644 index 000000000..d9ca9a632 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111111"; +declare const SiReaddotcv: IconType; +export { SiReaddotcv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.mjs new file mode 100644 index 000000000..5e45dd15c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReaddotcv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111111"; +const SiReaddotcv = React.forwardRef(function SiReaddotcv2({ title = "Read.cv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.8315 3.36707L8.66861 0.10804C6.98928 -0.34192 5.26312 0.65467 4.81314 2.334L0.94304 16.7773C0.49306 18.4568 1.48966 20.1829 3.16899 20.6328L15.3319 23.892C17.0112 24.3419 18.7373 23.3453 19.1874 21.666L23.0574 7.22254C23.5073 5.54321 22.5108 3.81705 20.8315 3.36707ZM6.33349 2.74138C6.55849 1.90171 7.42156 1.40341 8.26123 1.62841L20.4241 4.88744C21.2637 5.11242 21.762 5.9755 21.537 6.81516L17.6669 21.2586C17.4421 22.0983 16.5789 22.5966 15.7393 22.3715L3.57639 19.1125C2.73671 18.8875 2.23842 18.0245 2.4634 17.1849L6.33349 2.74138ZM8.9669 5.07654C8.54705 4.96404 8.11552 5.2132 8.00302 5.63302C7.89054 6.05285 8.13968 6.4844 8.55952 6.59689L17.6817 9.04116C18.1015 9.15366 18.5331 8.90451 18.6455 8.48468C18.7581 8.06483 18.5089 7.6333 18.0891 7.52081L8.9669 5.07654ZM6.98458 9.43392C7.09708 9.01409 7.52862 8.76493 7.94844 8.87743L17.0706 11.3217C17.4904 11.4342 17.7395 11.8657 17.6271 12.2856C17.5146 12.7054 17.0831 12.9546 16.6632 12.8421L7.54107 10.3978C7.12124 10.2853 6.87208 9.85375 6.98458 9.43392ZM6.93 12.6783C6.51017 12.5658 6.07862 12.815 5.96614 13.2348C5.85364 13.6546 6.1028 14.0861 6.52263 14.1987L11.8439 15.6246C12.2637 15.737 12.6952 15.4879 12.8077 15.0679C12.9202 14.6481 12.6711 14.2167 12.2513 14.1041L6.93 12.6783Z" }) + ] + } + ); +}); + +export { SiReaddotcv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.cjs new file mode 100644 index 000000000..c3ca8d06e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#018EF5"; +const SiReadme = React__namespace.forwardRef(function SiReadme2({ title = "ReadMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.0113 3.269h-5.8219a4.2894 4.2894 0 0 0-4.1854 3.3452A4.2894 4.2894 0 0 0 7.8186 3.269h-5.818A2.0007 2.0007 0 0 0 0 5.2697v10.2434a2.0007 2.0007 0 0 0 2.0007 2.0007h3.7372c4.2574 0 5.5299 1.0244 6.138 3.133a.112.112 0 0 0 .1121.084h.024a.112.112 0 0 0 .112-.084c.6122-2.1086 1.8847-3.133 6.138-3.133h3.7373A2.0007 2.0007 0 0 0 24 15.5131V5.2697a2.0007 2.0007 0 0 0-1.9887-2.0006Zm-11.928 11.0557a.144.144 0 0 1-.144.144H3.2571a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144H3.2571a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144H3.2571a.144.144 0 0 1-.144-.144v-.9524a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm10.8037 5.0696a.144.144 0 0 1-.144.144h-6.6823a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144h-6.6823a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144h-6.6823a.144.144 0 0 1-.144-.144v-.9484a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144v.9524z" }) + ] + } + ); +}); + +exports.default = SiReadme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.d.ts new file mode 100644 index 000000000..b37383ae1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#018EF5"; +declare const SiReadme: IconType; +export { SiReadme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.mjs new file mode 100644 index 000000000..45e9f1947 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReadme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#018EF5"; +const SiReadme = React.forwardRef(function SiReadme2({ title = "ReadMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.0113 3.269h-5.8219a4.2894 4.2894 0 0 0-4.1854 3.3452A4.2894 4.2894 0 0 0 7.8186 3.269h-5.818A2.0007 2.0007 0 0 0 0 5.2697v10.2434a2.0007 2.0007 0 0 0 2.0007 2.0007h3.7372c4.2574 0 5.5299 1.0244 6.138 3.133a.112.112 0 0 0 .1121.084h.024a.112.112 0 0 0 .112-.084c.6122-2.1086 1.8847-3.133 6.138-3.133h3.7373A2.0007 2.0007 0 0 0 24 15.5131V5.2697a2.0007 2.0007 0 0 0-1.9887-2.0006Zm-11.928 11.0557a.144.144 0 0 1-.144.144H3.2571a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144H3.2571a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144H3.2571a.144.144 0 0 1-.144-.144v-.9524a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm10.8037 5.0696a.144.144 0 0 1-.144.144h-6.6823a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144h-6.6823a.144.144 0 0 1-.144-.144v-.9523a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144zm0-2.5368a.144.144 0 0 1-.144.144h-6.6823a.144.144 0 0 1-.144-.144v-.9484a.144.144 0 0 1 .144-.144h6.6822a.144.144 0 0 1 .144.144v.9524z" }) + ] + } + ); +}); + +export { SiReadme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.cjs new file mode 100644 index 000000000..3a3eb6c59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiReadthedocs = React__namespace.forwardRef(function SiReadthedocs2({ title = "Read the Docs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.806 11.568a.573.573 0 0 0-.076 1.123s1.403.464 3.788.658c1.917.157 4.09-.135 4.09-.135.841-.028.678-1.318-.143-1.136 0 0-2.127.262-3.854.123-2.28-.186-3.52-.604-3.52-.604a.65.65 0 0 0-.285-.03m0-2.854a.573.573 0 0 0-.076 1.123s1.403.464 3.788.658c1.917.157 4.09-.135 4.09-.135.841-.028.678-1.318-.143-1.136 0 0-2.127.263-3.854.123-2.28-.186-3.52-.604-3.52-.604a.65.65 0 0 0-.285-.03m0-2.854a.573.573 0 0 0-.076 1.123s1.403.464 3.788.66c1.917.155 4.09-.137 4.09-.137.841-.028.678-1.318-.143-1.136 0 0-2.127.263-3.854.123-2.28-.186-3.52-.603-3.52-.603a.65.65 0 0 0-.285-.03m0-2.85a.573.573 0 0 0-.076 1.123s1.403.465 3.788.66c1.917.155 4.09-.136 4.09-.136.841-.028.678-1.318-.143-1.136 0 0-2.127.262-3.854.122-2.28-.185-3.52-.603-3.52-.603a.6.6 0 0 0-.285-.03M6.81 0C3.812.021 2.693.941 2.693.941v22.39s1.09-.943 4.602-.799 4.234 1.378 8.55 1.46q.366.008.702.008c3.732 0 4.699-.668 4.699-.668l.06-22.825s-1.941.548-5.72.578S10.9.122 7.43.008A34 34 0 0 0 6.81 0m2.508 1.46s1.815.6 5.173.77c2.837.138 5.678-.28 5.678-.28v20.286s-1.44.756-5.036.5c-2.787-.2-5.857-1.255-5.857-1.255Zm-1.752.528c.718.052.718 1.105 0 1.157 0 0-.942.004-1.51.064-.964.097-1.618.447-1.618.447-.677.346-1.207-.658-.54-1.022 0 0 .852-.45 2.043-.57.688-.07 1.625-.076 1.625-.076m-.557 2.863c.32-.008.56 0 .56 0a.58.58 0 0 1 .001 1.152s-.94.004-1.51.064c-.964.097-1.618.447-1.618.447-.662.294-1.155-.65-.536-1.026 0 0 .852-.45 2.043-.57.334-.038.74-.059 1.06-.067m.557 2.85c.71.06.71 1.097 0 1.156 0 0-.942-.004-1.51.051-.964.097-1.618.448-1.618.448-.665.3-1.162-.65-.537-1.026 0 0 .853-.452 2.044-.57.684-.064 1.62-.06 1.62-.06" }) + ] + } + ); +}); + +exports.default = SiReadthedocs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.d.ts new file mode 100644 index 000000000..113ef2927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiReadthedocs: IconType; +export { SiReadthedocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.mjs new file mode 100644 index 000000000..04f0c1698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReadthedocs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiReadthedocs = React.forwardRef(function SiReadthedocs2({ title = "Read the Docs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.806 11.568a.573.573 0 0 0-.076 1.123s1.403.464 3.788.658c1.917.157 4.09-.135 4.09-.135.841-.028.678-1.318-.143-1.136 0 0-2.127.262-3.854.123-2.28-.186-3.52-.604-3.52-.604a.65.65 0 0 0-.285-.03m0-2.854a.573.573 0 0 0-.076 1.123s1.403.464 3.788.658c1.917.157 4.09-.135 4.09-.135.841-.028.678-1.318-.143-1.136 0 0-2.127.263-3.854.123-2.28-.186-3.52-.604-3.52-.604a.65.65 0 0 0-.285-.03m0-2.854a.573.573 0 0 0-.076 1.123s1.403.464 3.788.66c1.917.155 4.09-.137 4.09-.137.841-.028.678-1.318-.143-1.136 0 0-2.127.263-3.854.123-2.28-.186-3.52-.603-3.52-.603a.65.65 0 0 0-.285-.03m0-2.85a.573.573 0 0 0-.076 1.123s1.403.465 3.788.66c1.917.155 4.09-.136 4.09-.136.841-.028.678-1.318-.143-1.136 0 0-2.127.262-3.854.122-2.28-.185-3.52-.603-3.52-.603a.6.6 0 0 0-.285-.03M6.81 0C3.812.021 2.693.941 2.693.941v22.39s1.09-.943 4.602-.799 4.234 1.378 8.55 1.46q.366.008.702.008c3.732 0 4.699-.668 4.699-.668l.06-22.825s-1.941.548-5.72.578S10.9.122 7.43.008A34 34 0 0 0 6.81 0m2.508 1.46s1.815.6 5.173.77c2.837.138 5.678-.28 5.678-.28v20.286s-1.44.756-5.036.5c-2.787-.2-5.857-1.255-5.857-1.255Zm-1.752.528c.718.052.718 1.105 0 1.157 0 0-.942.004-1.51.064-.964.097-1.618.447-1.618.447-.677.346-1.207-.658-.54-1.022 0 0 .852-.45 2.043-.57.688-.07 1.625-.076 1.625-.076m-.557 2.863c.32-.008.56 0 .56 0a.58.58 0 0 1 .001 1.152s-.94.004-1.51.064c-.964.097-1.618.447-1.618.447-.662.294-1.155-.65-.536-1.026 0 0 .852-.45 2.043-.57.334-.038.74-.059 1.06-.067m.557 2.85c.71.06.71 1.097 0 1.156 0 0-.942-.004-1.51.051-.964.097-1.618.448-1.618.448-.665.3-1.162-.65-.537-1.026 0 0 .853-.452 2.044-.57.684-.064 1.62-.06 1.62-.06" }) + ] + } + ); +}); + +export { SiReadthedocs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReason.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReason.cjs new file mode 100644 index 000000000..5fdf13953 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReason.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD4B39"; +const SiReason = React__namespace.forwardRef(function SiReason2({ title = "Reason", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm11.52 21.89l-1.33-2.54H8.4v2.54H6v-9.2h4.13c2.44 0 3.83 1.19 3.83 3.24 0 1.39-.58 2.4-1.64 2.96l1.92 3h-2.72zm11.36 0H15.5v-9.2h7.24v1.92H17.9v1.72h4.38v1.9l-4.38.01v1.73h4.99v1.92zM11.68 16c0 .93-.56 1.43-1.53 1.43H8.4v-2.82h1.75c.97 0 1.53.49 1.53 1.4z" }) + ] + } + ); +}); + +exports.default = SiReason; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReason.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReason.d.ts new file mode 100644 index 000000000..a1ee80b4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReason.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD4B39"; +declare const SiReason: IconType; +export { SiReason as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReason.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReason.mjs new file mode 100644 index 000000000..c5c8bfd5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReason.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD4B39"; +const SiReason = React.forwardRef(function SiReason2({ title = "Reason", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm11.52 21.89l-1.33-2.54H8.4v2.54H6v-9.2h4.13c2.44 0 3.83 1.19 3.83 3.24 0 1.39-.58 2.4-1.64 2.96l1.92 3h-2.72zm11.36 0H15.5v-9.2h7.24v1.92H17.9v1.72h4.38v1.9l-4.38.01v1.73h4.99v1.92zM11.68 16c0 .93-.56 1.43-1.53 1.43H8.4v-2.82h1.75c.97 0 1.53.49 1.53 1.4z" }) + ] + } + ); +}); + +export { SiReason as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.cjs new file mode 100644 index 000000000..d7ce83584 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiReasonstudios = React__namespace.forwardRef(function SiReasonstudios2({ title = "Reason Studios", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.49 5.114l8.3-4.79a2.421 2.421 0 012.39-.017l.03.017 8.299 4.79c.74.427 1.2 1.212 1.211 2.065V16.79c0 .854-.451 1.645-1.184 2.08l-.027.016-8.299 4.79a2.42 2.42 0 01-2.39.017l-.03-.017-8.3-4.79a2.421 2.421 0 01-1.21-2.065V7.21c0-.855.45-1.645 1.184-2.08l.026-.016 8.3-4.79zM12 4.026L5.092 8.013v7.974L12 19.974V12l6.908-3.987z" }) + ] + } + ); +}); + +exports.default = SiReasonstudios; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.d.ts new file mode 100644 index 000000000..c5ff97cf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiReasonstudios: IconType; +export { SiReasonstudios as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.mjs new file mode 100644 index 000000000..f08f513b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReasonstudios.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiReasonstudios = React.forwardRef(function SiReasonstudios2({ title = "Reason Studios", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.49 5.114l8.3-4.79a2.421 2.421 0 012.39-.017l.03.017 8.299 4.79c.74.427 1.2 1.212 1.211 2.065V16.79c0 .854-.451 1.645-1.184 2.08l-.027.016-8.299 4.79a2.42 2.42 0 01-2.39.017l-.03-.017-8.3-4.79a2.421 2.421 0 01-1.21-2.065V7.21c0-.855.45-1.645 1.184-2.08l.026-.016 8.3-4.79zM12 4.026L5.092 8.013v7.974L12 19.974V12l6.908-3.987z" }) + ] + } + ); +}); + +export { SiReasonstudios as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.cjs new file mode 100644 index 000000000..6bb2ea061 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3578E5"; +const SiRecoil = React__namespace.forwardRef(function SiRecoil2({ title = "Recoil", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.09 8.862a3.017 3.018 0 00-2.615-2.43l-.245-.03a1.662 1.662 0 01-1.453-1.645v-.856a2.028 2.028 0 10-1.602-.02v.874a3.263 3.264 0 002.855 3.236l.245.032c.764.096 1.144.66 1.246 1.155.1.495-.03 1.163-.698 1.55a2.569 2.569 0 01-1.055.337l-3.68.346a4.212 4.212 0 00-1.71.546 3.02 3.02 0 00-1.468 3.257 3.017 3.018 0 002.615 2.43l.245.032a1.662 1.662 0 011.453 1.644v.777a2.03 2.03 0 101.602.016v-.793a3.263 3.264 0 00-2.856-3.236l-.244-.032c-.764-.096-1.145-.66-1.246-1.155-.1-.495.03-1.163.697-1.55a2.569 2.569 0 011.057-.337l3.68-.345a4.212 4.212 0 001.71-.546 3.023 3.024 0 001.467-3.258zm-2.653 4.708a5.71 5.71 0 01-.436.06l-1.543.147 1.93 2.119a3.47 3.47 0 01.906 2.34H16.9a5.07 5.07 0 00-1.325-3.42zm-5.003-3.11a4.65 4.65 0 01.546-.08l1.427-.136L9.469 8.12a3.47 3.47 0 01-.905-2.34H6.963c0 1.267.47 2.483 1.324 3.42z" }) + ] + } + ); +}); + +exports.default = SiRecoil; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.d.ts new file mode 100644 index 000000000..a6081ebd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3578E5"; +declare const SiRecoil: IconType; +export { SiRecoil as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.mjs new file mode 100644 index 000000000..895eaea6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRecoil.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3578E5"; +const SiRecoil = React.forwardRef(function SiRecoil2({ title = "Recoil", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.09 8.862a3.017 3.018 0 00-2.615-2.43l-.245-.03a1.662 1.662 0 01-1.453-1.645v-.856a2.028 2.028 0 10-1.602-.02v.874a3.263 3.264 0 002.855 3.236l.245.032c.764.096 1.144.66 1.246 1.155.1.495-.03 1.163-.698 1.55a2.569 2.569 0 01-1.055.337l-3.68.346a4.212 4.212 0 00-1.71.546 3.02 3.02 0 00-1.468 3.257 3.017 3.018 0 002.615 2.43l.245.032a1.662 1.662 0 011.453 1.644v.777a2.03 2.03 0 101.602.016v-.793a3.263 3.264 0 00-2.856-3.236l-.244-.032c-.764-.096-1.145-.66-1.246-1.155-.1-.495.03-1.163.697-1.55a2.569 2.569 0 011.057-.337l3.68-.345a4.212 4.212 0 001.71-.546 3.023 3.024 0 001.467-3.258zm-2.653 4.708a5.71 5.71 0 01-.436.06l-1.543.147 1.93 2.119a3.47 3.47 0 01.906 2.34H16.9a5.07 5.07 0 00-1.325-3.42zm-5.003-3.11a4.65 4.65 0 01.546-.08l1.427-.136L9.469 8.12a3.47 3.47 0 01-.905-2.34H6.963c0 1.267.47 2.483 1.324 3.42z" }) + ] + } + ); +}); + +export { SiRecoil as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRed.cjs new file mode 100644 index 000000000..fb9b6d5c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B32629"; +const SiRed = React__namespace.forwardRef(function SiRed2({ title = "Red", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6.679V0L8.655 4.945Zm0 1.976v6.69l7.673-4L16.327 6.4zm0-1.976 3.345-1.734L12 0Zm8.655 6.133L12 17.322V24l12-6.242ZM12 24v-6.679l-8.655-4.509L0 17.758ZM4.327 11.345l7.673 4v-6.69L7.673 6.4Z" }) + ] + } + ); +}); + +exports.default = SiRed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRed.d.ts new file mode 100644 index 000000000..19524ea6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B32629"; +declare const SiRed: IconType; +export { SiRed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRed.mjs new file mode 100644 index 000000000..482cc9abe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B32629"; +const SiRed = React.forwardRef(function SiRed2({ title = "Red", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6.679V0L8.655 4.945Zm0 1.976v6.69l7.673-4L16.327 6.4zm0-1.976 3.345-1.734L12 0Zm8.655 6.133L12 17.322V24l12-6.242ZM12 24v-6.679l-8.655-4.509L0 17.758ZM4.327 11.345l7.673 4v-6.69L7.673 6.4Z" }) + ] + } + ); +}); + +export { SiRed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.cjs new file mode 100644 index 000000000..d043157e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7964"; +const SiRedash = React__namespace.forwardRef(function SiRedash2({ title = "Redash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.775 0 2.546 4.238 2.546 9.455c0 4.971 3.842 9.05 8.727 9.423V24c3.405-3.49 5.837-6.072 7.307-7.756a9.5 9.5 0 0 0 1.532-1.93l.005-.006q.003-.007.007-.014a9.4 9.4 0 0 0 1.33-4.84C21.455 4.238 17.226 0 12 0m3.821 5.818h1.385c.337.001.611.25.612.558v6.157c-.001.308-.275.557-.612.558H15.82c-.337-.001-.611-.25-.612-.558V6.376c0-.307.275-.557.612-.558M9.297 7.921h1.386c.338 0 .611.25.613.558v4.054c-.002.308-.275.557-.613.558H9.297c-.337-.001-.61-.25-.61-.558V8.479c0-.308.273-.558.61-.558m3.222 1.534h1.396c.337 0 .61.25.61.558v2.52c0 .308-.273.557-.61.558h-1.396c-.338-.001-.612-.25-.613-.558v-2.52c.001-.308.275-.558.613-.558M6.067 10.71h1.396c.337.001.61.25.61.559v1.264c0 .308-.273.557-.61.558H6.067c-.338-.001-.611-.25-.612-.558v-1.264c0-.308.274-.558.612-.559" }) + ] + } + ); +}); + +exports.default = SiRedash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.d.ts new file mode 100644 index 000000000..8591014a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7964"; +declare const SiRedash: IconType; +export { SiRedash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.mjs new file mode 100644 index 000000000..376f10a20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7964"; +const SiRedash = React.forwardRef(function SiRedash2({ title = "Redash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.775 0 2.546 4.238 2.546 9.455c0 4.971 3.842 9.05 8.727 9.423V24c3.405-3.49 5.837-6.072 7.307-7.756a9.5 9.5 0 0 0 1.532-1.93l.005-.006q.003-.007.007-.014a9.4 9.4 0 0 0 1.33-4.84C21.455 4.238 17.226 0 12 0m3.821 5.818h1.385c.337.001.611.25.612.558v6.157c-.001.308-.275.557-.612.558H15.82c-.337-.001-.611-.25-.612-.558V6.376c0-.307.275-.557.612-.558M9.297 7.921h1.386c.338 0 .611.25.613.558v4.054c-.002.308-.275.557-.613.558H9.297c-.337-.001-.61-.25-.61-.558V8.479c0-.308.273-.558.61-.558m3.222 1.534h1.396c.337 0 .61.25.61.558v2.52c0 .308-.273.557-.61.558h-1.396c-.338-.001-.612-.25-.613-.558v-2.52c.001-.308.275-.558.613-.558M6.067 10.71h1.396c.337.001.61.25.61.559v1.264c0 .308-.273.557-.61.558H6.067c-.338-.001-.611-.25-.612-.558v-1.264c0-.308.274-.558.612-.559" }) + ] + } + ); +}); + +export { SiRedash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.cjs new file mode 100644 index 000000000..1162cf37d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E41321"; +const SiRedbubble = React__namespace.forwardRef(function SiRedbubble2({ title = "Redbubble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.633 16.324h-3.199a.321.321 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32H16.4c2.226 0 2.693 1.31 2.693 2.408 0 .636-.169 1.14-.504 1.511.816.337 1.256 1.096 1.256 2.194 0 1.601-1.201 2.557-3.212 2.557m-4.644 0H5.345a.32.32 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32h3.103c1.939 0 3.096 1.043 3.096 2.791 0 1.163-.585 2.077-1.527 2.448l2.21 2.897a.322.322 0 0 1-.24.533M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.63 0 12.001 0" }) + ] + } + ); +}); + +exports.default = SiRedbubble; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.d.ts new file mode 100644 index 000000000..2eddbd851 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E41321"; +declare const SiRedbubble: IconType; +export { SiRedbubble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.mjs new file mode 100644 index 000000000..5cf4222be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbubble.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E41321"; +const SiRedbubble = React.forwardRef(function SiRedbubble2({ title = "Redbubble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.633 16.324h-3.199a.321.321 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32H16.4c2.226 0 2.693 1.31 2.693 2.408 0 .636-.169 1.14-.504 1.511.816.337 1.256 1.096 1.256 2.194 0 1.601-1.201 2.557-3.212 2.557m-4.644 0H5.345a.32.32 0 0 1-.32-.322V7.974a.32.32 0 0 1 .32-.32h3.103c1.939 0 3.096 1.043 3.096 2.791 0 1.163-.585 2.077-1.527 2.448l2.21 2.897a.322.322 0 0 1-.24.533M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12c6.628 0 12-5.373 12-12S18.63 0 12.001 0" }) + ] + } + ); +}); + +export { SiRedbubble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.cjs new file mode 100644 index 000000000..a4565bcac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB0A40"; +const SiRedbull = React__namespace.forwardRef(function SiRedbull2({ title = "Red Bull", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.381 11.374c-.389 1.244-1.019 2.33-2.142 3.082l-.33.251-.264.236-.091.107-.025.041-.011.028-.004.016v.013l.001.009.002.007.002.006.005.007.002.002.01.008.012.007.011.004a.16.16 0 0 0 .046.006h.024c.178-.007.512-.141.629-.245l-.139.137-.164.149-.173.146-.18.141-.185.136-.197.134-.204.13-.206.123-.213.118-.223.115-.226.108-.225.1-.236.097-.045.018c-1.97.763-4.327.854-5.914-.44.353.344.787.728 1.199.98-.251-.043-.429-.237-.666-.311.004.008.575.751 2.282.946l.316.032.48.031.464.014.448-.009.44-.039.464-.084.401-.107.599-.181.294-.081.128-.033c.104-.026.214-.052.333-.077l.041-.009c.073.031-.524.339-1.344.57-.361.132-.739.2-1.119.227l-.269.012-.216.001-.218-.005-.264-.015-.315-.027-.31-.034-.056-.007c-.401-.049-.781-.107-1.122-.143h-.006.006c.03.015.209.096 1.067.402-.061.022-.346.061-1.536-.448 2.417 1.392 4.988.759 7.266-.585l.352-.215.053-.034.294-.191.151-.103c.178-.121.353-.246.526-.374 0 .009-.004.021-.004.031a.963.963 0 0 0 .075.01c-.014.041-.014.041-.214.279.435-.351.659-.896 1.12-1.225-.236.473-.538.813-1.1 1.361.033-.024.064-.051.095-.078l.028-.026-.028.026a7.88 7.88 0 0 1-3.682 1.965c.126-.014.251-.039.373-.073-.22.061-.227.068-.32.099.058-.007.058-.007.358-.068-.175.086-.377.127-.865.226 2.806-.444 5.721-2.571 5.956-5.449a.142.142 0 0 1-.152-.143c.009-.562-.147-.982-.42-1.302-.163.58-.413 1.136-1.027 2.072-.26.393-.72.41-1.005.771l-.021-.013-.032-.028-.005-.003-.004-.002-.001-.001h-.003l-.007.001h-.003l-.001.001a.193.193 0 0 0-.058.051l.062-.07.067-.092.016-.031.005-.014.002-.01v-.01l-.001-.009-.001-.003-.002-.004-.001-.003-.003-.003a.027.027 0 0 0-.005-.006l-.009-.006-.04-.019-.006-.004-.004-.004-.002-.003-.002-.002-.002-.006v-.006l.001-.007.004-.011.023-.034.014-.016c.622-.687 1.192-1.306 1.438-2.228l.006-.021-.027.032c-.087.103-.147.147-.24.265l.11-.39.035-.127.065-.26.052-.225a.859.859 0 0 0-.118-.055Zm-2.257 6.199a9.006 9.006 0 0 1-1.105.547c-.38.155-.768.279-1.152.354a10.026 10.026 0 0 0 2.257-.901Zm-6.505.203.051.02-.001-.012-.05-.008Zm3.644-2.807c-.372-.201-.515-.63-.744-.945-.6-.62-.701-1.681-.858-2.549-.158-.843-.878-1.467-1.378-2.119-.443-.361-1.599-1.457-2.145-1.632-.72-.299-1.348.267-1.947.544-.487.201-1.002.258-1.432.63-.674.865-1.079.173-1.861.858-1.165 1.22-1.606.146-3.207 1.575-.429.257-.831.515-1.348.487-.823-.039-1.103-1.145-.459-1.633.449-.502 1.552-1.019 1.004-1.831-.57-.508-1.24-.292-1.918-.858-.313.49.087 1.155.601 1.318.211.131.701-.078.802.227-.217.434-.81.669-1.088 1.089-.693.8-.009 2.112.973 2.173.363.117.825-.179 1.06-.057.028.286 0 .544.057.802.027.282.348.584.172.858-.285.245-.654.37-1.03.347-.195.225-.228.48-.344.744-.142.258-.428.372-.629.487-.133.201-.265.424-.545.458-.171.201-.2.458-.257.716.716.19.87.094 1.26-.515.143-.143.344-.029.486 0 .407-.049.711-.321 1.003-.573 1.042-.272 1.032.41 2.233-.372.201-.086.287-.315.373-.487.1-.192.378-.562.028-.658-.899 1.819-2.464.338-3.665 1.715-.184.051-.041-.235 0-.287.862-1.256 2.823-.15 3.493-1.776.117-.25.051-1.247.343-1.232.029 0 .115.029.115.086-.278 1.214-.094 1.591 1.202 1.378.444-.128 1.716.325 1.69-.286 0-.114-.115-.171 0-.257.028-.029.114 0 .143.028.081.49.511.85.919 1.06.823.56.49 1.291-.459 1.26-.315-.172-.4-.487-.63-.745-.267-.234-.633-.122-.944-.057-.155.233.212.511.286.745.143.086.344-.058.458.114.115.171.172.344.344.458.496.476 1.532-.36 2.061-.401.463.051.674-.371.831-.716.261-.477-.434-.948-.487-1.374-.158-.044-.368-.167-.487 0 .088.213.579.993.544 1.231-.064.173-.21.572-.429.544.058-.2.144-.428.144-.658-.105-.245-.565-.953-.602-1.203.092-.242.562-.102.744-.344.201-.315.258-.629.316-1.03a.127.127 0 0 1 .086-.087c.279.18-.005 1.042-.172 1.232-.016.297.568.098.687 0 .221.046.67-.175.773-.029a1.545 1.545 0 0 0-.286.573c-.172.2-.458.344-.458.63.031.18.273-.11.286.114-.249.317-.218.394-.143.745.261.368.761.065 1.088-.028.552-.217 1.172.126 1.604-.459.116.01.222.074.286.172.319.335.769.513 1.231.487.188-.13-.222-.233-.286-.287-.201-.114-.459-.286-.516-.515-.075-.32-.306-.613-.458-.916.669.01.739 1.406 1.716 1.203.048-.033.043-.069.029-.115l-.259-.057Zm-16.866.687c-.339.139-.159.558-.371.773 0 .028-.058.086 0 .115.142.028.257.086.429.114.076-.256.15-.541.2-.773-.058-.086-.143-.2-.258-.229Zm17.317-.39c-.085.109-.274.115-.356.19a.115.115 0 0 0-.023.082.24.24 0 0 1-.073.242c-.087.094-.25.136-.397.126-.734.008-1.092-.351-1.392-.523-.41.265-.665.37-1.201.287-.315-.025-.596.134-.902.212.434.372 2.193.844 1.545.524-1.072-.607-.295-.203.645.019a6.905 6.905 0 0 0 1.625.2 8.043 8.043 0 0 0 2.427-1.279.342.342 0 0 1-.118-.021.192.192 0 0 1-.095-.081c-.031-.052-.048-.136.023-.251.074-.119.286-.327.734-.651a.014.014 0 0 1 .004-.003c1.097-.736 1.71-1.8 2.088-3.015a4.09 4.09 0 0 0-.798-.2c-.405 1.006-.503 1.716-1.458 2.285-1.108.725-.414.539-.403.534.086-.035.168-.079.245-.132-.429.689-1.174 1.129-2.063 1.327a.206.206 0 0 1-.057.128Zm-16.687.39c.2-.115.315-.315.401-.487-.062-.096-.136-.223-.286-.172-.137.106-.28.201-.429.287-.072.194.107.439.315.372h-.001Zm8.648-.63c.114.143.114.343.258.458a.617.617 0 0 0 .486-.143c.086-.057-.028-.143-.057-.229-.086-.115-.028-.344-.229-.344-.217.051-.455-.012-.659.057 0 .087.172.087.201.201Zm5.125-.344a1.694 1.694 0 0 1-.4.057h-.029c-.169-.156.184-.468.372-.458h.086c.105.044.078.32-.029.401Zm7.828-3.179c-.038.169-.078.328-.12.489a.142.142 0 0 1 .133.177c-.243.936-.807 1.571-1.433 2.262l.003.005c.1-.07.207-.127.313-.184.163-.088.326-.176.442-.351.632-.962.872-1.515 1.032-2.115-.11-.106-.233-.2-.37-.283Zm-.948-2.516.117.073c1.725 1.116 2.457 3.197 1.833 4.905l.006-.005c.29-.834.408-1.718.349-2.599-.306-2.281-1.087-4.283-3.87-5.019 1.721.416 1.85.631 2.075.779-1.337-1.235-3.49-1.664-5.667-1.295 1.253-.404 3.303-.361 4.61.417l.031.019c-3.108-1.906-6.839-1.075-9.134 1.114.429.083.806.366 1.157.637l.109-.059.127-.064.131-.062.27-.119.281-.11.295-.105.306-.096.285-.079.323-.079.299-.064.273-.05.17-.027.17-.025.138-.018.172-.019c1.705-.182 3.539.045 4.907.946l.013.008a4.445 4.445 0 0 1 1.518 1.685c-.033.021-.065.016-.094-.001l-.038-.029-.108-.115-.02-.015c-.014-.005-.046-.036-.061-.043l-.209-.189-.248-.186-.266-.162-.044-.024c-.773-.418-1.714-.603-2.55-.779l-.051-.01.415.146.459.135.494.143.299.099.242.094.16.071.143.072.085.046.098.058Zm-1.112 4.436c.186-.409.62-.629.762-1.123-.021.073.134.103.195.103.245-.042.251-.379.33-.449-.061.766-.578 1.393-1.144 1.912a.255.255 0 0 0-.244-.011c-.024-.144.286-.344.101-.432Zm-5.023-.402c-.032.056-.081.202-.143.201-.062-.001-.089.009-.086-.057-.005-.193-.036-.429-.201-.544-.374-.582-.468.147-.601.057-.08-.162.046-.345.115-.487.032-.038.044-.083.086-.114.061-.353.383-.152.458.057.197.245.429.521.401.802-.029-.029-.029.028-.029.085Zm-.549-3.278c-.217-.28-.442-.582-.683-.803 1.207-.431 3.157-.54 4.121-.577.228-.007.352-.022.403-.037a.18.18 0 0 0 .087-.052.143.143 0 0 0 .037-.115.15.15 0 0 0-.066-.11.573.573 0 0 0-.18-.059 8.12 8.12 0 0 0-1.056-.106h-.002c-.657 0-1.409.067-2.124.192.255-.086.515-.156.779-.209a.142.142 0 0 0 .114-.146.143.143 0 0 0-.128-.134c-.122-.013-.895.075-1.605.241-.485.113-.938.266-1.149.438a.08.08 0 0 0-.013.013c-.071-.06-.143-.119-.213-.176 1.546-.816 4.032-1.269 6.157-.782 1.178.269 2.246.83 2.973 1.785-.868-.665-2.087-.901-3.134-1.122a.142.142 0 0 0-.082.27c.762.303 1.566.393 2.28.798 1.572.902 2.381 2.603 2.161 4.159.016-.994-.449-1.573-1.164-1.938-2.191-.92-4.263.309-6 .558v-.014l-.003-.005c-.1-.215.937-.435 1.075-.518.082-.085.222-.056.315-.132.092-.091.23-.111.353-.135.323-.165.679-.219 1.039-.226.127.019.245-.052.372-.043a.347.347 0 0 1 .188-.03c.385-.029.779-.065 1.111-.299.035-.021.153-.086.053-.099-.629-.17-.932.26-1.506-.256.009-.022-.181-.103-.208-.103-.304.061-.589.197-.905.202-.144.032-.201-.04-.345-.04-.193.045-.46.169-.657.184-.092-.017-.542.218-.551.056a.017.017 0 0 1-.01 0c-.048-.182 2.822-1.254 1.641-.532.065.056.447-.105.807-.132.404-.086.941.211 1.118-.185-.007-.065-.162-.046-.2-.019-.077.042-.16.014-.241.032-.135.016-.66-.079-.779-.071-.095-.081.528-.064.583-.073.205-.031.452-.077.657-.115.091-.011.183-.013.274-.006.186.044.684-.024.153-.153-.14-.027-.581-.041-.652-.019-.108.014-.576.153-.825.095-.225-.068.7-.106.59-.168-1.148-.145-2.457-.109-4.724 1-.072-.089-.15-.183-.236-.284Zm-2.543.902c-.029.029-.058.029-.115.029-.077-.29-.104-.592-.258-.831-.08-.079-.184-.181-.115-.315a.138.138 0 0 1 .173-.029c.262.196.306.469.315.802.057.057.028.229 0 .344Zm9.227-1.658Zm-7.497-.15.213-.075.252-.076.266-.068.313-.068.36-.067.313-.049.37-.049.442-.05.467-.042.53-.036.414-.023.446-.018.194-.018.035-.008.013-.005.005-.003v-.001l.003-.002v-.001l.001-.004c0-.002-.001-.004-.004-.007l-.004-.003-.006-.003c-.113-.058-.879-.133-1.149-.136-1.19 0-2.697.224-3.712.611l.238.201Zm2.074-1.11.027.001a6.503 6.503 0 0 0-.867.238l-.496.169-.452.166-.341.132-.285.117-.209-.174c.434-.355 1.968-.598 2.491-.642l.132-.007Zm3.546.188c.08.059.363.23.812.232a.143.143 0 0 0 .131-.086.143.143 0 0 0-.028-.154c-.09-.093-.249-.173-.434-.235-.245-.082-.537-.139-.734-.184a.14.14 0 0 0-.102.016.143.143 0 0 0-.068.083.14.14 0 0 0 .008.111c.01.021.039.059.094.09.075.041.234.099.321.127Zm-.287-.278c-.003-.004-.002-.008.003-.011.302.069.834.165 1.057.344l.04.035a1.47 1.47 0 0 1-.438-.066l-.099-.035-.092-.042-.065-.037a.216.216 0 0 1-.05-.036h.001l-.277-.103-.043-.021a.106.106 0 0 1-.037-.028Zm.305.284.002.001a.203.203 0 0 0-.002-.001Z" }) + ] + } + ); +}); + +exports.default = SiRedbull; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.d.ts new file mode 100644 index 000000000..10e9fbb4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB0A40"; +declare const SiRedbull: IconType; +export { SiRedbull as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.mjs new file mode 100644 index 000000000..01862382f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedbull.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB0A40"; +const SiRedbull = React.forwardRef(function SiRedbull2({ title = "Red Bull", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.381 11.374c-.389 1.244-1.019 2.33-2.142 3.082l-.33.251-.264.236-.091.107-.025.041-.011.028-.004.016v.013l.001.009.002.007.002.006.005.007.002.002.01.008.012.007.011.004a.16.16 0 0 0 .046.006h.024c.178-.007.512-.141.629-.245l-.139.137-.164.149-.173.146-.18.141-.185.136-.197.134-.204.13-.206.123-.213.118-.223.115-.226.108-.225.1-.236.097-.045.018c-1.97.763-4.327.854-5.914-.44.353.344.787.728 1.199.98-.251-.043-.429-.237-.666-.311.004.008.575.751 2.282.946l.316.032.48.031.464.014.448-.009.44-.039.464-.084.401-.107.599-.181.294-.081.128-.033c.104-.026.214-.052.333-.077l.041-.009c.073.031-.524.339-1.344.57-.361.132-.739.2-1.119.227l-.269.012-.216.001-.218-.005-.264-.015-.315-.027-.31-.034-.056-.007c-.401-.049-.781-.107-1.122-.143h-.006.006c.03.015.209.096 1.067.402-.061.022-.346.061-1.536-.448 2.417 1.392 4.988.759 7.266-.585l.352-.215.053-.034.294-.191.151-.103c.178-.121.353-.246.526-.374 0 .009-.004.021-.004.031a.963.963 0 0 0 .075.01c-.014.041-.014.041-.214.279.435-.351.659-.896 1.12-1.225-.236.473-.538.813-1.1 1.361.033-.024.064-.051.095-.078l.028-.026-.028.026a7.88 7.88 0 0 1-3.682 1.965c.126-.014.251-.039.373-.073-.22.061-.227.068-.32.099.058-.007.058-.007.358-.068-.175.086-.377.127-.865.226 2.806-.444 5.721-2.571 5.956-5.449a.142.142 0 0 1-.152-.143c.009-.562-.147-.982-.42-1.302-.163.58-.413 1.136-1.027 2.072-.26.393-.72.41-1.005.771l-.021-.013-.032-.028-.005-.003-.004-.002-.001-.001h-.003l-.007.001h-.003l-.001.001a.193.193 0 0 0-.058.051l.062-.07.067-.092.016-.031.005-.014.002-.01v-.01l-.001-.009-.001-.003-.002-.004-.001-.003-.003-.003a.027.027 0 0 0-.005-.006l-.009-.006-.04-.019-.006-.004-.004-.004-.002-.003-.002-.002-.002-.006v-.006l.001-.007.004-.011.023-.034.014-.016c.622-.687 1.192-1.306 1.438-2.228l.006-.021-.027.032c-.087.103-.147.147-.24.265l.11-.39.035-.127.065-.26.052-.225a.859.859 0 0 0-.118-.055Zm-2.257 6.199a9.006 9.006 0 0 1-1.105.547c-.38.155-.768.279-1.152.354a10.026 10.026 0 0 0 2.257-.901Zm-6.505.203.051.02-.001-.012-.05-.008Zm3.644-2.807c-.372-.201-.515-.63-.744-.945-.6-.62-.701-1.681-.858-2.549-.158-.843-.878-1.467-1.378-2.119-.443-.361-1.599-1.457-2.145-1.632-.72-.299-1.348.267-1.947.544-.487.201-1.002.258-1.432.63-.674.865-1.079.173-1.861.858-1.165 1.22-1.606.146-3.207 1.575-.429.257-.831.515-1.348.487-.823-.039-1.103-1.145-.459-1.633.449-.502 1.552-1.019 1.004-1.831-.57-.508-1.24-.292-1.918-.858-.313.49.087 1.155.601 1.318.211.131.701-.078.802.227-.217.434-.81.669-1.088 1.089-.693.8-.009 2.112.973 2.173.363.117.825-.179 1.06-.057.028.286 0 .544.057.802.027.282.348.584.172.858-.285.245-.654.37-1.03.347-.195.225-.228.48-.344.744-.142.258-.428.372-.629.487-.133.201-.265.424-.545.458-.171.201-.2.458-.257.716.716.19.87.094 1.26-.515.143-.143.344-.029.486 0 .407-.049.711-.321 1.003-.573 1.042-.272 1.032.41 2.233-.372.201-.086.287-.315.373-.487.1-.192.378-.562.028-.658-.899 1.819-2.464.338-3.665 1.715-.184.051-.041-.235 0-.287.862-1.256 2.823-.15 3.493-1.776.117-.25.051-1.247.343-1.232.029 0 .115.029.115.086-.278 1.214-.094 1.591 1.202 1.378.444-.128 1.716.325 1.69-.286 0-.114-.115-.171 0-.257.028-.029.114 0 .143.028.081.49.511.85.919 1.06.823.56.49 1.291-.459 1.26-.315-.172-.4-.487-.63-.745-.267-.234-.633-.122-.944-.057-.155.233.212.511.286.745.143.086.344-.058.458.114.115.171.172.344.344.458.496.476 1.532-.36 2.061-.401.463.051.674-.371.831-.716.261-.477-.434-.948-.487-1.374-.158-.044-.368-.167-.487 0 .088.213.579.993.544 1.231-.064.173-.21.572-.429.544.058-.2.144-.428.144-.658-.105-.245-.565-.953-.602-1.203.092-.242.562-.102.744-.344.201-.315.258-.629.316-1.03a.127.127 0 0 1 .086-.087c.279.18-.005 1.042-.172 1.232-.016.297.568.098.687 0 .221.046.67-.175.773-.029a1.545 1.545 0 0 0-.286.573c-.172.2-.458.344-.458.63.031.18.273-.11.286.114-.249.317-.218.394-.143.745.261.368.761.065 1.088-.028.552-.217 1.172.126 1.604-.459.116.01.222.074.286.172.319.335.769.513 1.231.487.188-.13-.222-.233-.286-.287-.201-.114-.459-.286-.516-.515-.075-.32-.306-.613-.458-.916.669.01.739 1.406 1.716 1.203.048-.033.043-.069.029-.115l-.259-.057Zm-16.866.687c-.339.139-.159.558-.371.773 0 .028-.058.086 0 .115.142.028.257.086.429.114.076-.256.15-.541.2-.773-.058-.086-.143-.2-.258-.229Zm17.317-.39c-.085.109-.274.115-.356.19a.115.115 0 0 0-.023.082.24.24 0 0 1-.073.242c-.087.094-.25.136-.397.126-.734.008-1.092-.351-1.392-.523-.41.265-.665.37-1.201.287-.315-.025-.596.134-.902.212.434.372 2.193.844 1.545.524-1.072-.607-.295-.203.645.019a6.905 6.905 0 0 0 1.625.2 8.043 8.043 0 0 0 2.427-1.279.342.342 0 0 1-.118-.021.192.192 0 0 1-.095-.081c-.031-.052-.048-.136.023-.251.074-.119.286-.327.734-.651a.014.014 0 0 1 .004-.003c1.097-.736 1.71-1.8 2.088-3.015a4.09 4.09 0 0 0-.798-.2c-.405 1.006-.503 1.716-1.458 2.285-1.108.725-.414.539-.403.534.086-.035.168-.079.245-.132-.429.689-1.174 1.129-2.063 1.327a.206.206 0 0 1-.057.128Zm-16.687.39c.2-.115.315-.315.401-.487-.062-.096-.136-.223-.286-.172-.137.106-.28.201-.429.287-.072.194.107.439.315.372h-.001Zm8.648-.63c.114.143.114.343.258.458a.617.617 0 0 0 .486-.143c.086-.057-.028-.143-.057-.229-.086-.115-.028-.344-.229-.344-.217.051-.455-.012-.659.057 0 .087.172.087.201.201Zm5.125-.344a1.694 1.694 0 0 1-.4.057h-.029c-.169-.156.184-.468.372-.458h.086c.105.044.078.32-.029.401Zm7.828-3.179c-.038.169-.078.328-.12.489a.142.142 0 0 1 .133.177c-.243.936-.807 1.571-1.433 2.262l.003.005c.1-.07.207-.127.313-.184.163-.088.326-.176.442-.351.632-.962.872-1.515 1.032-2.115-.11-.106-.233-.2-.37-.283Zm-.948-2.516.117.073c1.725 1.116 2.457 3.197 1.833 4.905l.006-.005c.29-.834.408-1.718.349-2.599-.306-2.281-1.087-4.283-3.87-5.019 1.721.416 1.85.631 2.075.779-1.337-1.235-3.49-1.664-5.667-1.295 1.253-.404 3.303-.361 4.61.417l.031.019c-3.108-1.906-6.839-1.075-9.134 1.114.429.083.806.366 1.157.637l.109-.059.127-.064.131-.062.27-.119.281-.11.295-.105.306-.096.285-.079.323-.079.299-.064.273-.05.17-.027.17-.025.138-.018.172-.019c1.705-.182 3.539.045 4.907.946l.013.008a4.445 4.445 0 0 1 1.518 1.685c-.033.021-.065.016-.094-.001l-.038-.029-.108-.115-.02-.015c-.014-.005-.046-.036-.061-.043l-.209-.189-.248-.186-.266-.162-.044-.024c-.773-.418-1.714-.603-2.55-.779l-.051-.01.415.146.459.135.494.143.299.099.242.094.16.071.143.072.085.046.098.058Zm-1.112 4.436c.186-.409.62-.629.762-1.123-.021.073.134.103.195.103.245-.042.251-.379.33-.449-.061.766-.578 1.393-1.144 1.912a.255.255 0 0 0-.244-.011c-.024-.144.286-.344.101-.432Zm-5.023-.402c-.032.056-.081.202-.143.201-.062-.001-.089.009-.086-.057-.005-.193-.036-.429-.201-.544-.374-.582-.468.147-.601.057-.08-.162.046-.345.115-.487.032-.038.044-.083.086-.114.061-.353.383-.152.458.057.197.245.429.521.401.802-.029-.029-.029.028-.029.085Zm-.549-3.278c-.217-.28-.442-.582-.683-.803 1.207-.431 3.157-.54 4.121-.577.228-.007.352-.022.403-.037a.18.18 0 0 0 .087-.052.143.143 0 0 0 .037-.115.15.15 0 0 0-.066-.11.573.573 0 0 0-.18-.059 8.12 8.12 0 0 0-1.056-.106h-.002c-.657 0-1.409.067-2.124.192.255-.086.515-.156.779-.209a.142.142 0 0 0 .114-.146.143.143 0 0 0-.128-.134c-.122-.013-.895.075-1.605.241-.485.113-.938.266-1.149.438a.08.08 0 0 0-.013.013c-.071-.06-.143-.119-.213-.176 1.546-.816 4.032-1.269 6.157-.782 1.178.269 2.246.83 2.973 1.785-.868-.665-2.087-.901-3.134-1.122a.142.142 0 0 0-.082.27c.762.303 1.566.393 2.28.798 1.572.902 2.381 2.603 2.161 4.159.016-.994-.449-1.573-1.164-1.938-2.191-.92-4.263.309-6 .558v-.014l-.003-.005c-.1-.215.937-.435 1.075-.518.082-.085.222-.056.315-.132.092-.091.23-.111.353-.135.323-.165.679-.219 1.039-.226.127.019.245-.052.372-.043a.347.347 0 0 1 .188-.03c.385-.029.779-.065 1.111-.299.035-.021.153-.086.053-.099-.629-.17-.932.26-1.506-.256.009-.022-.181-.103-.208-.103-.304.061-.589.197-.905.202-.144.032-.201-.04-.345-.04-.193.045-.46.169-.657.184-.092-.017-.542.218-.551.056a.017.017 0 0 1-.01 0c-.048-.182 2.822-1.254 1.641-.532.065.056.447-.105.807-.132.404-.086.941.211 1.118-.185-.007-.065-.162-.046-.2-.019-.077.042-.16.014-.241.032-.135.016-.66-.079-.779-.071-.095-.081.528-.064.583-.073.205-.031.452-.077.657-.115.091-.011.183-.013.274-.006.186.044.684-.024.153-.153-.14-.027-.581-.041-.652-.019-.108.014-.576.153-.825.095-.225-.068.7-.106.59-.168-1.148-.145-2.457-.109-4.724 1-.072-.089-.15-.183-.236-.284Zm-2.543.902c-.029.029-.058.029-.115.029-.077-.29-.104-.592-.258-.831-.08-.079-.184-.181-.115-.315a.138.138 0 0 1 .173-.029c.262.196.306.469.315.802.057.057.028.229 0 .344Zm9.227-1.658Zm-7.497-.15.213-.075.252-.076.266-.068.313-.068.36-.067.313-.049.37-.049.442-.05.467-.042.53-.036.414-.023.446-.018.194-.018.035-.008.013-.005.005-.003v-.001l.003-.002v-.001l.001-.004c0-.002-.001-.004-.004-.007l-.004-.003-.006-.003c-.113-.058-.879-.133-1.149-.136-1.19 0-2.697.224-3.712.611l.238.201Zm2.074-1.11.027.001a6.503 6.503 0 0 0-.867.238l-.496.169-.452.166-.341.132-.285.117-.209-.174c.434-.355 1.968-.598 2.491-.642l.132-.007Zm3.546.188c.08.059.363.23.812.232a.143.143 0 0 0 .131-.086.143.143 0 0 0-.028-.154c-.09-.093-.249-.173-.434-.235-.245-.082-.537-.139-.734-.184a.14.14 0 0 0-.102.016.143.143 0 0 0-.068.083.14.14 0 0 0 .008.111c.01.021.039.059.094.09.075.041.234.099.321.127Zm-.287-.278c-.003-.004-.002-.008.003-.011.302.069.834.165 1.057.344l.04.035a1.47 1.47 0 0 1-.438-.066l-.099-.035-.092-.042-.065-.037a.216.216 0 0 1-.05-.036h.001l-.277-.103-.043-.021a.106.106 0 0 1-.037-.028Zm.305.284.002.001a.203.203 0 0 0-.002-.001Z" }) + ] + } + ); +}); + +export { SiRedbull as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.cjs new file mode 100644 index 000000000..bb04f8814 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D23735"; +const SiRedcandlegames = React__namespace.forwardRef(function SiRedcandlegames2({ title = "Red Candle Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.387 3.168q.028.194.08.378l.004.02a3.3 3.3 0 0 0 .326.77l.014.025q.186.31.434.57a1.5 1.5 0 0 1 .631-1.212.21.21 0 0 1 .24 0c.393.28.627.73.63 1.211a3.2 3.2 0 0 0 .435-.569l.014-.025q.21-.358.327-.77l.005-.02q.048-.187.078-.378l.01-.065a4 4 0 0 0 .028-.41v-.012a3.29 3.29 0 0 0-1.326-2.64.215.215 0 0 0-.34.15 3.3 3.3 0 0 1-1.616 2.482l-.01.02q0 .21.027.41zM5.137 13.72a.205.205 0 0 0-.222.207l.003.344q0 1.602-.122 3.172a42 42 0 0 1-.49 3.973.204.204 0 0 0 .182.239q1.02.09 2.048.158a.466.466 0 0 0 .49-.383 42 42 0 0 0 .614-7.534l-.003-.003a82 82 0 0 1-2.5-.173m13.94.551.002-.344a.205.205 0 0 0-.22-.207q-1.246.106-2.501.171l-.004.003q-.015 1.89.133 3.74a42 42 0 0 0 .476 3.76c.045.253.272.43.528.415a85 85 0 0 0 2.015-.156.203.203 0 0 0 .183-.237 41 41 0 0 1-.49-3.973 42 42 0 0 1-.123-3.172m-6.48-6.908v.896c0 .229.186.414.415.413l.57-.008a88 88 0 0 0 2.83-.1.41.41 0 0 0 .384-.352q.075-.497.157-.992.079-.461.167-.922a.184.184 0 0 0-.19-.218q-.66.04-1.323.068c-.53.022-1.062.044-1.596.056q-.707.013-1.415.018zm-5.397.847a.41.41 0 0 0 .383.352q.515.026 1.03.045a78 78 0 0 0 2.396.063.41.41 0 0 0 .416-.413V6.224a83 83 0 0 1-1.417-.018c-.534-.012-1.065-.034-1.596-.056a74 74 0 0 1-1.347-.07.182.182 0 0 0-.19.217q.09.46.166.922.086.495.16.99m12.13 1.473q-1.371.12-2.745.198c-.42.024-.84.04-1.261.057a88 88 0 0 1-2.727.064c-.2.002-.398.008-.597.008-.193 0-.38-.006-.573-.008A89 89 0 0 1 8.7 9.938q-.645-.023-1.287-.056a83 83 0 0 1-3.77-.295.22.22 0 0 0-.238.248c.049.352.09.703.137 1.057.045.345.096.688.136 1.033a.46.46 0 0 0 .415.412q.39.038.784.07c.906.077 1.816.145 2.73.192.392.02.788.033 1.184.05q.012.643.016 1.292l.004.333a87 87 0 0 1-.533 9.412.22.22 0 0 0 .208.245q1.35.055 2.72.069a.22.22 0 0 0 .222-.221V12.704h1.17v11.071c0 .122.1.22.223.22q1.365-.012 2.719-.069a.22.22 0 0 0 .209-.245 82 82 0 0 1-.46-5.996 82 82 0 0 1-.074-3.415l.004-.333q.004-.648.016-1.292a75 75 0 0 0 1.16-.047 82 82 0 0 0 2.73-.192l.82-.074a.42.42 0 0 0 .374-.372c.041-.358.095-.713.142-1.07l.136-1.057a.22.22 0 0 0-.238-.248q-.515.053-1.028.097" }) + ] + } + ); +}); + +exports.default = SiRedcandlegames; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.d.ts new file mode 100644 index 000000000..f8b1f2c6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D23735"; +declare const SiRedcandlegames: IconType; +export { SiRedcandlegames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.mjs new file mode 100644 index 000000000..bdc21ef32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedcandlegames.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D23735"; +const SiRedcandlegames = React.forwardRef(function SiRedcandlegames2({ title = "Red Candle Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.387 3.168q.028.194.08.378l.004.02a3.3 3.3 0 0 0 .326.77l.014.025q.186.31.434.57a1.5 1.5 0 0 1 .631-1.212.21.21 0 0 1 .24 0c.393.28.627.73.63 1.211a3.2 3.2 0 0 0 .435-.569l.014-.025q.21-.358.327-.77l.005-.02q.048-.187.078-.378l.01-.065a4 4 0 0 0 .028-.41v-.012a3.29 3.29 0 0 0-1.326-2.64.215.215 0 0 0-.34.15 3.3 3.3 0 0 1-1.616 2.482l-.01.02q0 .21.027.41zM5.137 13.72a.205.205 0 0 0-.222.207l.003.344q0 1.602-.122 3.172a42 42 0 0 1-.49 3.973.204.204 0 0 0 .182.239q1.02.09 2.048.158a.466.466 0 0 0 .49-.383 42 42 0 0 0 .614-7.534l-.003-.003a82 82 0 0 1-2.5-.173m13.94.551.002-.344a.205.205 0 0 0-.22-.207q-1.246.106-2.501.171l-.004.003q-.015 1.89.133 3.74a42 42 0 0 0 .476 3.76c.045.253.272.43.528.415a85 85 0 0 0 2.015-.156.203.203 0 0 0 .183-.237 41 41 0 0 1-.49-3.973 42 42 0 0 1-.123-3.172m-6.48-6.908v.896c0 .229.186.414.415.413l.57-.008a88 88 0 0 0 2.83-.1.41.41 0 0 0 .384-.352q.075-.497.157-.992.079-.461.167-.922a.184.184 0 0 0-.19-.218q-.66.04-1.323.068c-.53.022-1.062.044-1.596.056q-.707.013-1.415.018zm-5.397.847a.41.41 0 0 0 .383.352q.515.026 1.03.045a78 78 0 0 0 2.396.063.41.41 0 0 0 .416-.413V6.224a83 83 0 0 1-1.417-.018c-.534-.012-1.065-.034-1.596-.056a74 74 0 0 1-1.347-.07.182.182 0 0 0-.19.217q.09.46.166.922.086.495.16.99m12.13 1.473q-1.371.12-2.745.198c-.42.024-.84.04-1.261.057a88 88 0 0 1-2.727.064c-.2.002-.398.008-.597.008-.193 0-.38-.006-.573-.008A89 89 0 0 1 8.7 9.938q-.645-.023-1.287-.056a83 83 0 0 1-3.77-.295.22.22 0 0 0-.238.248c.049.352.09.703.137 1.057.045.345.096.688.136 1.033a.46.46 0 0 0 .415.412q.39.038.784.07c.906.077 1.816.145 2.73.192.392.02.788.033 1.184.05q.012.643.016 1.292l.004.333a87 87 0 0 1-.533 9.412.22.22 0 0 0 .208.245q1.35.055 2.72.069a.22.22 0 0 0 .222-.221V12.704h1.17v11.071c0 .122.1.22.223.22q1.365-.012 2.719-.069a.22.22 0 0 0 .209-.245 82 82 0 0 1-.46-5.996 82 82 0 0 1-.074-3.415l.004-.333q.004-.648.016-1.292a75 75 0 0 0 1.16-.047 82 82 0 0 0 2.73-.192l.82-.074a.42.42 0 0 0 .374-.372c.041-.358.095-.713.142-1.07l.136-1.057a.22.22 0 0 0-.238-.248q-.515.053-1.028.097" }) + ] + } + ); +}); + +export { SiRedcandlegames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.cjs new file mode 100644 index 000000000..8a2117250 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4500"; +const SiReddit = React__namespace.forwardRef(function SiReddit2({ title = "Reddit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286C.775 23.225 1.097 24 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0Zm4.388 3.199c1.104 0 1.999.895 1.999 1.999 0 1.105-.895 2-1.999 2-.946 0-1.739-.657-1.947-1.539v.002c-1.147.162-2.032 1.15-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363.473-.363 1.064-.58 1.707-.58 1.547 0 2.802 1.254 2.802 2.802 0 1.117-.655 2.081-1.601 2.531-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87-.954-.447-1.614-1.415-1.614-2.538 0-1.548 1.255-2.802 2.803-2.802.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01c0-1.663 1.263-3.034 2.88-3.207.188-.911.993-1.595 1.959-1.595Zm-8.085 8.376c-.784 0-1.459.78-1.506 1.797-.047 1.016.64 1.429 1.426 1.429.786 0 1.371-.369 1.418-1.385.047-1.017-.553-1.841-1.338-1.841Zm7.406 0c-.786 0-1.385.824-1.338 1.841.047 1.017.634 1.385 1.418 1.385.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797Zm-3.703 4.013c-.974 0-1.907.048-2.77.135-.147.015-.241.168-.183.305.483 1.154 1.622 1.964 2.953 1.964 1.33 0 2.47-.81 2.953-1.964.057-.137-.037-.29-.184-.305-.863-.087-1.795-.135-2.769-.135Z" }) + ] + } + ); +}); + +exports.default = SiReddit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.d.ts new file mode 100644 index 000000000..c289a327f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4500"; +declare const SiReddit: IconType; +export { SiReddit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.mjs new file mode 100644 index 000000000..ffa26122b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReddit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4500"; +const SiReddit = React.forwardRef(function SiReddit2({ title = "Reddit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286C.775 23.225 1.097 24 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0Zm4.388 3.199c1.104 0 1.999.895 1.999 1.999 0 1.105-.895 2-1.999 2-.946 0-1.739-.657-1.947-1.539v.002c-1.147.162-2.032 1.15-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363.473-.363 1.064-.58 1.707-.58 1.547 0 2.802 1.254 2.802 2.802 0 1.117-.655 2.081-1.601 2.531-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87-.954-.447-1.614-1.415-1.614-2.538 0-1.548 1.255-2.802 2.803-2.802.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01c0-1.663 1.263-3.034 2.88-3.207.188-.911.993-1.595 1.959-1.595Zm-8.085 8.376c-.784 0-1.459.78-1.506 1.797-.047 1.016.64 1.429 1.426 1.429.786 0 1.371-.369 1.418-1.385.047-1.017-.553-1.841-1.338-1.841Zm7.406 0c-.786 0-1.385.824-1.338 1.841.047 1.017.634 1.385 1.418 1.385.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797Zm-3.703 4.013c-.974 0-1.907.048-2.77.135-.147.015-.241.168-.183.305.483 1.154 1.622 1.964 2.953 1.964 1.33 0 2.47-.81 2.953-1.964.057-.137-.037-.29-.184-.305-.863-.087-1.795-.135-2.769-.135Z" }) + ] + } + ); +}); + +export { SiReddit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.cjs new file mode 100644 index 000000000..a63155468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE0000"; +const SiRedhat = React__namespace.forwardRef(function SiRedhat2({ title = "Red Hat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.009 13.386c1.577 0 3.86-.326 3.86-2.202a1.765 1.765 0 0 0-.04-.431l-.94-4.08c-.216-.898-.406-1.305-1.982-2.093-1.223-.625-3.888-1.658-4.676-1.658-.733 0-.947.946-1.822.946-.842 0-1.467-.706-2.255-.706-.757 0-1.25.515-1.63 1.576 0 0-1.06 2.99-1.197 3.424a.81.81 0 0 0-.028.245c0 1.162 4.577 4.974 10.71 4.974m4.101-1.435c.218 1.032.218 1.14.218 1.277 0 1.765-1.984 2.745-4.593 2.745-5.895.004-11.06-3.451-11.06-5.734a2.326 2.326 0 0 1 .19-.925C2.746 9.415 0 9.794 0 12.217c0 3.969 9.405 8.861 16.851 8.861 5.71 0 7.149-2.582 7.149-4.62 0-1.605-1.387-3.425-3.887-4.512" }) + ] + } + ); +}); + +exports.default = SiRedhat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.d.ts new file mode 100644 index 000000000..f484d14c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE0000"; +declare const SiRedhat: IconType; +export { SiRedhat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.mjs new file mode 100644 index 000000000..036c30a39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE0000"; +const SiRedhat = React.forwardRef(function SiRedhat2({ title = "Red Hat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.009 13.386c1.577 0 3.86-.326 3.86-2.202a1.765 1.765 0 0 0-.04-.431l-.94-4.08c-.216-.898-.406-1.305-1.982-2.093-1.223-.625-3.888-1.658-4.676-1.658-.733 0-.947.946-1.822.946-.842 0-1.467-.706-2.255-.706-.757 0-1.25.515-1.63 1.576 0 0-1.06 2.99-1.197 3.424a.81.81 0 0 0-.028.245c0 1.162 4.577 4.974 10.71 4.974m4.101-1.435c.218 1.032.218 1.14.218 1.277 0 1.765-1.984 2.745-4.593 2.745-5.895.004-11.06-3.451-11.06-5.734a2.326 2.326 0 0 1 .19-.925C2.746 9.415 0 9.794 0 12.217c0 3.969 9.405 8.861 16.851 8.861 5.71 0 7.149-2.582 7.149-4.62 0-1.605-1.387-3.425-3.887-4.512" }) + ] + } + ); +}); + +export { SiRedhat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.cjs new file mode 100644 index 000000000..09da43dbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE0000"; +const SiRedhatopenshift = React__namespace.forwardRef(function SiRedhatopenshift2({ title = "Red Hat Open Shift", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.665,11.812c-0.11-1.377-0.476-2.724-1.08-3.966L24,6.599c-0.268-0.556-0.585-1.092-0.943-1.595 l-1.601,0.583c-3.534-4.95-10.412-6.098-15.363-2.565c-3.144,2.244-4.883,5.972-4.582,9.823l1.604-0.584 c0.051,0.615,0.153,1.224,0.305,1.822L0,15.335c0.338,1.339,0.922,2.604,1.721,3.731l1.812-0.659 c3.526,4.95,10.398,6.106,15.349,2.58c1.555-1.107,2.796-2.6,3.599-4.332c0.802-1.715,1.144-3.61,0.991-5.497L21.665,11.812z M16.925,9.177c0.687,1.227,0.998,2.629,0.895,4.032l1.809-0.657c-0.063,0.856-0.282,1.694-0.646,2.471 c-1.67,3.584-5.928,5.138-9.514,3.472c-0.782-0.365-1.491-0.87-2.092-1.49l-1.813,0.66c-0.979-1.01-1.64-2.285-1.903-3.667 l3.426-1.242c-0.121-0.624-0.159-1.262-0.111-1.896H6.97l-1.604,0.583c0.294-3.932,3.72-6.881,7.652-6.587 c0.868,0.065,1.716,0.288,2.504,0.658V5.508c0.778,0.364,1.483,0.867,2.082,1.483l1.599-0.582c0.002,0.002,0.004,0.003,0.006,0.005 c0.441,0.454,0.82,0.965,1.128,1.518L16.925,9.177z" }) + ] + } + ); +}); + +exports.default = SiRedhatopenshift; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.d.ts new file mode 100644 index 000000000..8f6420a4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE0000"; +declare const SiRedhatopenshift: IconType; +export { SiRedhatopenshift as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.mjs new file mode 100644 index 000000000..a8c7c8552 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedhatopenshift.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE0000"; +const SiRedhatopenshift = React.forwardRef(function SiRedhatopenshift2({ title = "Red Hat Open Shift", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.665,11.812c-0.11-1.377-0.476-2.724-1.08-3.966L24,6.599c-0.268-0.556-0.585-1.092-0.943-1.595 l-1.601,0.583c-3.534-4.95-10.412-6.098-15.363-2.565c-3.144,2.244-4.883,5.972-4.582,9.823l1.604-0.584 c0.051,0.615,0.153,1.224,0.305,1.822L0,15.335c0.338,1.339,0.922,2.604,1.721,3.731l1.812-0.659 c3.526,4.95,10.398,6.106,15.349,2.58c1.555-1.107,2.796-2.6,3.599-4.332c0.802-1.715,1.144-3.61,0.991-5.497L21.665,11.812z M16.925,9.177c0.687,1.227,0.998,2.629,0.895,4.032l1.809-0.657c-0.063,0.856-0.282,1.694-0.646,2.471 c-1.67,3.584-5.928,5.138-9.514,3.472c-0.782-0.365-1.491-0.87-2.092-1.49l-1.813,0.66c-0.979-1.01-1.64-2.285-1.903-3.667 l3.426-1.242c-0.121-0.624-0.159-1.262-0.111-1.896H6.97l-1.604,0.583c0.294-3.932,3.72-6.881,7.652-6.587 c0.868,0.065,1.716,0.288,2.504,0.658V5.508c0.778,0.364,1.483,0.867,2.082,1.483l1.599-0.582c0.002,0.002,0.004,0.003,0.006,0.005 c0.441,0.454,0.82,0.965,1.128,1.518L16.925,9.177z" }) + ] + } + ); +}); + +export { SiRedhatopenshift as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.cjs new file mode 100644 index 000000000..6c8e73ee4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4438"; +const SiRedis = React__namespace.forwardRef(function SiRedis2({ title = "Redis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.71 13.145c-1.66 2.092-3.452 4.483-7.038 4.483-3.203 0-4.397-2.825-4.48-5.12.701 1.484 2.073 2.685 4.214 2.63 4.117-.133 6.94-3.852 6.94-7.239 0-4.05-3.022-6.972-8.268-6.972-3.752 0-8.4 1.428-11.455 3.685C2.59 6.937 3.885 9.958 4.35 9.626c2.648-1.904 4.748-3.13 6.784-3.744C8.12 9.244.886 17.05 0 18.425c.1 1.261 1.66 4.648 2.424 4.648.232 0 .431-.133.664-.365a100.49 100.49 0 0 0 5.54-6.765c.222 3.104 1.748 6.898 6.014 6.898 3.819 0 7.604-2.756 9.33-8.965.2-.764-.73-1.361-1.261-.73zm-4.349-5.013c0 1.959-1.926 2.922-3.685 2.922-.941 0-1.664-.247-2.235-.568 1.051-1.592 2.092-3.225 3.21-4.973 1.972.334 2.71 1.43 2.71 2.619z" }) + ] + } + ); +}); + +exports.default = SiRedis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.d.ts new file mode 100644 index 000000000..da29fa230 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4438"; +declare const SiRedis: IconType; +export { SiRedis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.mjs new file mode 100644 index 000000000..1d7849a2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4438"; +const SiRedis = React.forwardRef(function SiRedis2({ title = "Redis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.71 13.145c-1.66 2.092-3.452 4.483-7.038 4.483-3.203 0-4.397-2.825-4.48-5.12.701 1.484 2.073 2.685 4.214 2.63 4.117-.133 6.94-3.852 6.94-7.239 0-4.05-3.022-6.972-8.268-6.972-3.752 0-8.4 1.428-11.455 3.685C2.59 6.937 3.885 9.958 4.35 9.626c2.648-1.904 4.748-3.13 6.784-3.744C8.12 9.244.886 17.05 0 18.425c.1 1.261 1.66 4.648 2.424 4.648.232 0 .431-.133.664-.365a100.49 100.49 0 0 0 5.54-6.765c.222 3.104 1.748 6.898 6.014 6.898 3.819 0 7.604-2.756 9.33-8.965.2-.764-.73-1.361-1.261-.73zm-4.349-5.013c0 1.959-1.926 2.922-3.685 2.922-.941 0-1.664-.247-2.235-.568 1.051-1.592 2.092-3.225 3.21-4.973 1.972.334 2.71 1.43 2.71 2.619z" }) + ] + } + ); +}); + +export { SiRedis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.cjs new file mode 100644 index 000000000..fd55d6a7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B32024"; +const SiRedmine = React__namespace.forwardRef(function SiRedmine2({ title = "Redmine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m1.092 15.088c.789.243 4.098 1.005 4.098 1.005.198.061.139.21.139.21-.228 1.798-.178 3.17-.178 3.644 0 .21-.153.18-.153.18h-4.83c-.209 0-.164-.19-.164-.19.04-.599.212-2.303.878-4.746 0 0 .033-.157.21-.103zm21.816 0c-.789.243-4.098 1.005-4.098 1.005-.198.061-.139.21-.139.21.228 1.798.178 3.17.178 3.644 0 .21.153.18.153.18h4.83c.21 0 .164-.19.164-.19-.04-.599-.212-2.303-.878-4.746 0 0-.034-.157-.21-.103zm-1.929-5.354-3.448 1.667c-.164.063-.082.212-.082.212.476 1.134.766 2.091.99 3.251.038.194.169.132.169.132l3.879-1.684s.116-.044.068-.193c-.172-.531-1.05-2.649-1.402-3.341 0 0-.062-.105-.174-.044zm-17.958 0 3.448 1.667c.164.063.082.212.082.212-.476 1.134-.766 2.091-.991 3.251-.037.194-.169.132-.169.132l-3.878-1.684s-.116-.044-.068-.193c.172-.531 1.05-2.649 1.402-3.341 0 0 .062-.105.174-.044zm4.085-4.368 2.302 2.681c.099.128-.032.222-.032.222-.923.498-1.59 1.25-2.161 2.111-.114.17-.236.046-.236.046l-2.917-2.184s-.126-.074-.016-.22c.854-1.134 1.63-1.934 2.871-2.689 0 0 .094-.089.189.033zm9.788 0-2.302 2.681c-.099.128.032.222.032.222.923.498 1.59 1.25 2.161 2.111.114.17.236.046.236.046l2.917-2.184s.126-.074.016-.22c-.854-1.134-1.63-1.934-2.871-2.689 0 0-.094-.089-.189.033zm-4.894 2.295c.388 0 1.105.037 1.444.093.177.03.221-.088.221-.088l1.449-3.028s.097-.114-.106-.188c-1.082-.396-1.657-.578-3.008-.578-1.335 0-1.926.182-3.008.578-.203.074-.106.188-.106.188l1.449 3.028s.044.118.221.088c.339-.056 1.056-.093 1.444-.093z" }) + ] + } + ); +}); + +exports.default = SiRedmine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.d.ts new file mode 100644 index 000000000..1751d6d04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B32024"; +declare const SiRedmine: IconType; +export { SiRedmine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.mjs new file mode 100644 index 000000000..2df8cc06f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedmine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B32024"; +const SiRedmine = React.forwardRef(function SiRedmine2({ title = "Redmine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m1.092 15.088c.789.243 4.098 1.005 4.098 1.005.198.061.139.21.139.21-.228 1.798-.178 3.17-.178 3.644 0 .21-.153.18-.153.18h-4.83c-.209 0-.164-.19-.164-.19.04-.599.212-2.303.878-4.746 0 0 .033-.157.21-.103zm21.816 0c-.789.243-4.098 1.005-4.098 1.005-.198.061-.139.21-.139.21.228 1.798.178 3.17.178 3.644 0 .21.153.18.153.18h4.83c.21 0 .164-.19.164-.19-.04-.599-.212-2.303-.878-4.746 0 0-.034-.157-.21-.103zm-1.929-5.354-3.448 1.667c-.164.063-.082.212-.082.212.476 1.134.766 2.091.99 3.251.038.194.169.132.169.132l3.879-1.684s.116-.044.068-.193c-.172-.531-1.05-2.649-1.402-3.341 0 0-.062-.105-.174-.044zm-17.958 0 3.448 1.667c.164.063.082.212.082.212-.476 1.134-.766 2.091-.991 3.251-.037.194-.169.132-.169.132l-3.878-1.684s-.116-.044-.068-.193c.172-.531 1.05-2.649 1.402-3.341 0 0 .062-.105.174-.044zm4.085-4.368 2.302 2.681c.099.128-.032.222-.032.222-.923.498-1.59 1.25-2.161 2.111-.114.17-.236.046-.236.046l-2.917-2.184s-.126-.074-.016-.22c.854-1.134 1.63-1.934 2.871-2.689 0 0 .094-.089.189.033zm9.788 0-2.302 2.681c-.099.128.032.222.032.222.923.498 1.59 1.25 2.161 2.111.114.17.236.046.236.046l2.917-2.184s.126-.074.016-.22c-.854-1.134-1.63-1.934-2.871-2.689 0 0-.094-.089-.189.033zm-4.894 2.295c.388 0 1.105.037 1.444.093.177.03.221-.088.221-.088l1.449-3.028s.097-.114-.106-.188c-1.082-.396-1.657-.578-3.008-.578-1.335 0-1.926.182-3.008.578-.203.074-.106.188-.106.188l1.449 3.028s.044.118.221.088c.339-.056 1.056-.093 1.444-.093z" }) + ] + } + ); +}); + +export { SiRedmine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.cjs new file mode 100644 index 000000000..3767eb005 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRedox = React__namespace.forwardRef(function SiRedox2({ title = "Redox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.6935 6.0492a.2861.2861 0 0 0-.2578.242C3.5384 6.383 1.883 7.4011.912 8.9027H.9101a.2835.2835 0 0 0-.3866.2638c0 .0888.0423.1682.1073.2203A5.689 5.689 0 0 0 0 12.0001c0 .9415.2272 1.83.6312 2.6135a.2827.2827 0 0 0 .2808.4842c.9706 1.5016 2.6264 2.5198 4.5237 2.6116v.002a.2835.2835 0 0 0 .5605-.0023c1.8966-.0919 3.5509-1.1105 4.5215-2.6113h.0019a.285.285 0 0 0 .3885-.2638.2857.2857 0 0 0-.031-.1266l-.014-.0295-.029.0159a2.3482 2.3482 0 0 1-.459.1851l-.0313.0099.0098.0313a.3061.3061 0 0 0 .0216.0492 5.5177 5.5177 0 0 1-4.4202 2.5485v-.0019a.2827.2827 0 0 0-.4803.0038 5.5219 5.5219 0 0 1-4.4202-2.549l.0019-.0018a.2835.2835 0 0 0-.2419-.418A5.5003 5.5003 0 0 1 .1909 12c0-.9203.2252-1.7877.6232-2.5508a.2835.2835 0 0 0 .2404-.4195 5.5219 5.5219 0 0 1 4.4198-2.549.2827.2827 0 0 0 .4822 0 5.5219 5.5219 0 0 1 4.4183 2.5508.2816.2816 0 0 0-.0351.1346.285.285 0 0 0 .277.2835 5.4879 5.4879 0 0 1 .4649 1.232 2.369 2.369 0 0 1 .238.1894 5.6693 5.6693 0 0 0-.5192-1.4842.2827.2827 0 0 0 .1073-.2207.2854.2854 0 0 0-.3885-.2638A5.7112 5.7112 0 0 0 5.9958 6.293a.285.285 0 0 0-.2811-.2438c-.0076 0-.0144-.0007-.0216 0zm-.006 1.4177a.288.288 0 0 0-.248.2207c-2.245.1486-4.0233 2.0183-4.0233 4.3011 0 2.2802 1.7749 4.1492 4.0176 4.3004a.2835.2835 0 0 0 .2812.2441.2869.2869 0 0 0 .2812-.2418 4.3041 4.3041 0 0 0 2.945-1.4317 2.369 2.369 0 0 1-.1874-.0764 4.1083 4.1083 0 0 1-2.7969 1.3183.2854.2854 0 0 0-.2419-.1345.288.288 0 0 0-.2403.1326c-2.1582-.1304-3.8673-1.92-3.8673-4.111 0-2.1872 1.7027-3.9749 3.8552-4.1113v.0022a.283.283 0 0 0 .5064-.0022c1.5625.0907 2.8902 1.0492 3.5074 2.4026a2.369 2.369 0 0 1 .2034-.0159 4.3124 4.3124 0 0 0-3.6877-2.576v-.002a.285.285 0 0 0-.277-.2188c-.0099 0-.0182-.0008-.0277 0zM3.959 9.506v4.9849h.4958V9.9572h.703c.5099 0 .892.0605 1.1467.1815a.8504.8504 0 0 1 .389.3673c.0922.1648.1383.3614.1383.5896 0 .5496-.2415.8965-.7227 1.0394-.2282.0635-.6104.0956-1.1463.0956l1.6819 2.2602h.6187L5.8651 12.629c.4788-.0503.8455-.2056 1.096-.4649.2525-.2612.3787-.6145.3787-1.0605 0-.3031-.0623-.5685-.1851-.7967a1.3667 1.3667 0 0 0-.5318-.547c-.305-.1689-.7813-.254-1.4313-.254Zm11.6288 0v1.8811c-.3757-.4505-.8583-.6757-1.449-.6757-.3693 0-.703.0846-1.0043.2536a1.858 1.858 0 0 0-.7049.6992c-.1693.2967-.254.6259-.254.9902 0 .3606.0881.6883.2639.9827a1.8644 1.8644 0 0 0 .7207.6916c.3073.1663.6497.2495 1.0254.2495.3073 0 .5696-.059.7869-.1776.2196-.1183.424-.3118.6153-.5798v.6697h.502V9.506ZM9.697 10.7114a1.8905 1.8905 0 0 0-.9645.2536 1.8591 1.8591 0 0 0-.6916.6954 1.9106 1.9106 0 0 0-.254.9687c0 .2683.0514.5223.1523.7635a1.911 1.911 0 0 0 .4104.6236 1.9257 1.9257 0 0 0 .6229.412 1.9665 1.9665 0 0 0 .7657.1504 1.8172 1.8172 0 0 0 1.0957-.3576 1.948 1.948 0 0 0 .6992-.9471h-.5215a1.3172 1.3172 0 0 1-.5099.613 1.4003 1.4003 0 0 1-.777.2306 1.4237 1.4237 0 0 1-.9884-.3787c-.279-.2552-.4294-.5632-.4494-.928h3.338c0-.246-.0158-.4508-.049-.6133a1.8002 1.8002 0 0 0-.1716-.4804 1.7953 1.7953 0 0 0-.7012-.7363 1.9446 1.9446 0 0 0-1.006-.2694Zm9.0082 0c-.5432.0113-.9925.1954-1.3497.5506-.3693.3648-.5548.8266-.5548 1.3868 0 .3647.0846.6939.254.9883a1.833 1.833 0 0 0 .709.6916c.3008.1663.6365.2495 1.0076.2495.5427 0 .9918-.1822 1.3478-.5465.3556-.3647.5329-.8236.5329-1.3773 0-.3666-.0813-.6973-.2457-.994a1.7688 1.7688 0 0 0-.68-.6954c-.2875-.169-.6107-.2536-.9686-.2536h-.053zm2.1619.0895 1.285 1.809-1.285 1.8806h.5665l1.0016-1.4804.9902 1.4804H24l-1.291-1.8807L24 10.8008h-.5745l-.9902 1.4219-1.0016-1.4219zm-11.2343.3693c.0215-.0008.0427 0 .0642 0 .3583 0 .6652.1054.92.3182.257.2132.4263.5027.5102.8693H8.3006c.068-.3556.2313-.6417.4883-.8594a1.3444 1.3444 0 0 1 .844-.3281zm4.4005 0c.0242-.0011.0472 0 .0718 0 .4222 0 .7786.1421 1.0685.4278.2902.2835.4358.6286.4358 1.0371 0 .4082-.141.759-.4218 1.0489-.2812.2899-.6206.4335-1.016.4335-.4195 0-.7725-.1406-1.0605-.4237-.2854-.2857-.4275-.6357-.4275-1.0507 0-.4086.1372-.756.4139-1.0413.2596-.2698.5718-.4146.9358-.4316zm4.611 0c.025-.0011.0491 0 .0745 0 .4172 0 .7593.1387 1.0272.42.268.2788.4022.6371.4022 1.0722 0 .424-.1312.7725-.3923 1.0469-.2593.2721-.5919.4082-.9982.4082-.4173 0-.7627-.1372-1.0371-.4139-.2744-.277-.412-.6274-.412-1.0492 0-.426.1342-.7793.4022-1.0605.2513-.2653.5627-.407.9335-.4233z" }) + ] + } + ); +}); + +exports.default = SiRedox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.d.ts new file mode 100644 index 000000000..26f5e3b1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRedox: IconType; +export { SiRedox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.mjs new file mode 100644 index 000000000..8f4e077b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRedox = React.forwardRef(function SiRedox2({ title = "Redox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.6935 6.0492a.2861.2861 0 0 0-.2578.242C3.5384 6.383 1.883 7.4011.912 8.9027H.9101a.2835.2835 0 0 0-.3866.2638c0 .0888.0423.1682.1073.2203A5.689 5.689 0 0 0 0 12.0001c0 .9415.2272 1.83.6312 2.6135a.2827.2827 0 0 0 .2808.4842c.9706 1.5016 2.6264 2.5198 4.5237 2.6116v.002a.2835.2835 0 0 0 .5605-.0023c1.8966-.0919 3.5509-1.1105 4.5215-2.6113h.0019a.285.285 0 0 0 .3885-.2638.2857.2857 0 0 0-.031-.1266l-.014-.0295-.029.0159a2.3482 2.3482 0 0 1-.459.1851l-.0313.0099.0098.0313a.3061.3061 0 0 0 .0216.0492 5.5177 5.5177 0 0 1-4.4202 2.5485v-.0019a.2827.2827 0 0 0-.4803.0038 5.5219 5.5219 0 0 1-4.4202-2.549l.0019-.0018a.2835.2835 0 0 0-.2419-.418A5.5003 5.5003 0 0 1 .1909 12c0-.9203.2252-1.7877.6232-2.5508a.2835.2835 0 0 0 .2404-.4195 5.5219 5.5219 0 0 1 4.4198-2.549.2827.2827 0 0 0 .4822 0 5.5219 5.5219 0 0 1 4.4183 2.5508.2816.2816 0 0 0-.0351.1346.285.285 0 0 0 .277.2835 5.4879 5.4879 0 0 1 .4649 1.232 2.369 2.369 0 0 1 .238.1894 5.6693 5.6693 0 0 0-.5192-1.4842.2827.2827 0 0 0 .1073-.2207.2854.2854 0 0 0-.3885-.2638A5.7112 5.7112 0 0 0 5.9958 6.293a.285.285 0 0 0-.2811-.2438c-.0076 0-.0144-.0007-.0216 0zm-.006 1.4177a.288.288 0 0 0-.248.2207c-2.245.1486-4.0233 2.0183-4.0233 4.3011 0 2.2802 1.7749 4.1492 4.0176 4.3004a.2835.2835 0 0 0 .2812.2441.2869.2869 0 0 0 .2812-.2418 4.3041 4.3041 0 0 0 2.945-1.4317 2.369 2.369 0 0 1-.1874-.0764 4.1083 4.1083 0 0 1-2.7969 1.3183.2854.2854 0 0 0-.2419-.1345.288.288 0 0 0-.2403.1326c-2.1582-.1304-3.8673-1.92-3.8673-4.111 0-2.1872 1.7027-3.9749 3.8552-4.1113v.0022a.283.283 0 0 0 .5064-.0022c1.5625.0907 2.8902 1.0492 3.5074 2.4026a2.369 2.369 0 0 1 .2034-.0159 4.3124 4.3124 0 0 0-3.6877-2.576v-.002a.285.285 0 0 0-.277-.2188c-.0099 0-.0182-.0008-.0277 0zM3.959 9.506v4.9849h.4958V9.9572h.703c.5099 0 .892.0605 1.1467.1815a.8504.8504 0 0 1 .389.3673c.0922.1648.1383.3614.1383.5896 0 .5496-.2415.8965-.7227 1.0394-.2282.0635-.6104.0956-1.1463.0956l1.6819 2.2602h.6187L5.8651 12.629c.4788-.0503.8455-.2056 1.096-.4649.2525-.2612.3787-.6145.3787-1.0605 0-.3031-.0623-.5685-.1851-.7967a1.3667 1.3667 0 0 0-.5318-.547c-.305-.1689-.7813-.254-1.4313-.254Zm11.6288 0v1.8811c-.3757-.4505-.8583-.6757-1.449-.6757-.3693 0-.703.0846-1.0043.2536a1.858 1.858 0 0 0-.7049.6992c-.1693.2967-.254.6259-.254.9902 0 .3606.0881.6883.2639.9827a1.8644 1.8644 0 0 0 .7207.6916c.3073.1663.6497.2495 1.0254.2495.3073 0 .5696-.059.7869-.1776.2196-.1183.424-.3118.6153-.5798v.6697h.502V9.506ZM9.697 10.7114a1.8905 1.8905 0 0 0-.9645.2536 1.8591 1.8591 0 0 0-.6916.6954 1.9106 1.9106 0 0 0-.254.9687c0 .2683.0514.5223.1523.7635a1.911 1.911 0 0 0 .4104.6236 1.9257 1.9257 0 0 0 .6229.412 1.9665 1.9665 0 0 0 .7657.1504 1.8172 1.8172 0 0 0 1.0957-.3576 1.948 1.948 0 0 0 .6992-.9471h-.5215a1.3172 1.3172 0 0 1-.5099.613 1.4003 1.4003 0 0 1-.777.2306 1.4237 1.4237 0 0 1-.9884-.3787c-.279-.2552-.4294-.5632-.4494-.928h3.338c0-.246-.0158-.4508-.049-.6133a1.8002 1.8002 0 0 0-.1716-.4804 1.7953 1.7953 0 0 0-.7012-.7363 1.9446 1.9446 0 0 0-1.006-.2694Zm9.0082 0c-.5432.0113-.9925.1954-1.3497.5506-.3693.3648-.5548.8266-.5548 1.3868 0 .3647.0846.6939.254.9883a1.833 1.833 0 0 0 .709.6916c.3008.1663.6365.2495 1.0076.2495.5427 0 .9918-.1822 1.3478-.5465.3556-.3647.5329-.8236.5329-1.3773 0-.3666-.0813-.6973-.2457-.994a1.7688 1.7688 0 0 0-.68-.6954c-.2875-.169-.6107-.2536-.9686-.2536h-.053zm2.1619.0895 1.285 1.809-1.285 1.8806h.5665l1.0016-1.4804.9902 1.4804H24l-1.291-1.8807L24 10.8008h-.5745l-.9902 1.4219-1.0016-1.4219zm-11.2343.3693c.0215-.0008.0427 0 .0642 0 .3583 0 .6652.1054.92.3182.257.2132.4263.5027.5102.8693H8.3006c.068-.3556.2313-.6417.4883-.8594a1.3444 1.3444 0 0 1 .844-.3281zm4.4005 0c.0242-.0011.0472 0 .0718 0 .4222 0 .7786.1421 1.0685.4278.2902.2835.4358.6286.4358 1.0371 0 .4082-.141.759-.4218 1.0489-.2812.2899-.6206.4335-1.016.4335-.4195 0-.7725-.1406-1.0605-.4237-.2854-.2857-.4275-.6357-.4275-1.0507 0-.4086.1372-.756.4139-1.0413.2596-.2698.5718-.4146.9358-.4316zm4.611 0c.025-.0011.0491 0 .0745 0 .4172 0 .7593.1387 1.0272.42.268.2788.4022.6371.4022 1.0722 0 .424-.1312.7725-.3923 1.0469-.2593.2721-.5919.4082-.9982.4082-.4173 0-.7627-.1372-1.0371-.4139-.2744-.277-.412-.6274-.412-1.0492 0-.426.1342-.7793.4022-1.0605.2513-.2653.5627-.407.9335-.4233z" }) + ] + } + ); +}); + +export { SiRedox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.cjs new file mode 100644 index 000000000..beab9cbe2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60012"; +const SiRedragon = React__namespace.forwardRef(function SiRedragon2({ title = "Redragon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.995 4.077v.06A10.963 10.963 0 0 1 16.22 8.42c.605 2.167.876 4.414.805 6.662a1.01 1.01 0 0 1 0 .113 6.278 6.278 0 0 0-.721-1.846 4.39 4.39 0 0 0-1.367-1.45c.025.064.059.113.059.168a7.04 7.04 0 0 1 .528 2.245 4.703 4.703 0 0 1-1.076 3.41 1.38 1.38 0 0 0-.113.203l-.069-.065a3.949 3.949 0 0 0-.138-2.374c-.578 2.216-2.068 3.538-4.047 4.437 2.404-.01 4.723-.375 6.697-1.856.015.533-.148.958-.696 1.841 1.673-.839 2.403-2.23 2.586-4.012.45.536.755 1.178.888 1.866.128.656.192 1.327.286 1.974.71-1.747.686-3.593.444-5.512 2.137 1.248 3.02 3.266 3.701 5.428a25.023 25.023 0 0 0-.133-3.494c-.17-1.698-.59-3.36-1.248-4.935a11.844 11.844 0 0 0-6.638-6.583 8.79 8.79 0 0 0-1.973-.563zm-2.734.11c-.306.522-.587 1.06-.933 1.539a18.019 18.019 0 0 1-1.14 1.524 1.313 1.313 0 0 1-.943.43l.445-2.083a.626.626 0 0 0-.143.188c-.3.46-.592.928-.908 1.372a.632.632 0 0 1-.726.247c-.493-.144-.987-.282-1.48-.44a.257.257 0 0 0-.326.08A18.356 18.356 0 0 1 3.785 8.42c-1.076.953-2.24 1.746-3.785 1.638v.065c.434 1.026.864 2.053 1.318 3.074a1.648 1.648 0 0 0 .69.74 12.216 12.216 0 0 1-.183-1.283c-.024-.523.094-.617.617-.667a.168.168 0 0 1 .203.129c.074.187.163.37.246.558.104-.227.193-.44.296-.642a.301.301 0 0 1 .149-.133c.222-.094.45-.168.686-.257l.177.356c.153-.35.296-.696.46-1.037a.375.375 0 0 1 .468-.173v.242a4.935 4.935 0 0 0 .493 2.626 4.244 4.244 0 0 1 .281 1.046c.04.162-.043.257-.196.257l-.4.044a1.655 1.655 0 0 1 .27.247c.075.094.179.27.144.32a.918.918 0 0 1-.39.267.536.536 0 0 1-.315 0 9.746 9.746 0 0 1-.81-.272 3.64 3.64 0 0 1-.414-.212l-.08.094.716.612a1.554 1.554 0 0 0 1.24.41.987.987 0 0 0 .986-.988c.045-.306.005-.616.045-.922a2.704 2.704 0 0 1 .927-1.974 2.561 2.561 0 0 0-1.214.74 6.366 6.366 0 0 1-.079-1.135 1.545 1.545 0 0 1 1.402-1.653 20.515 20.515 0 0 1 1.648-.281c.805-.08 1.599-.246 2.369-.494a4.367 4.367 0 0 0 1.406-.794 17.83 17.83 0 0 1-2.872.38 8.882 8.882 0 0 0 3.4-4.777c-1.056 1.48-2.202 2.867-3.87 3.701a22.7 22.7 0 0 0 1.447-4.086zM5.443 8.07c-.03.153-.054.305-.094.454-.074.29-.163.577-.237.868a.197.197 0 0 1-.198.178c-.384.045-.764.103-1.183.157zM9.4 10.775a4.206 4.206 0 0 0-.577.053 2.897 2.897 0 0 0-1.48.523.987.987 0 0 0-.43.923 1.1 1.1 0 0 1 .972-.671 3.065 3.065 0 0 1 1.762.34c.49.234.772.76.696 1.298a2.338 2.338 0 0 1-.687 1.377 5.797 5.797 0 0 1-1.914 1.308 9.695 9.695 0 0 0-2.32 1.41 3.95 3.95 0 0 0-1.396 2.567h5.921a2.023 2.023 0 0 1 .987-2.551l-.26 1.115a5.428 5.428 0 0 0 1.243-2.665c.171.407.245.848.216 1.288a5.615 5.615 0 0 0 .44-2.866l.518.561c-.049-.4-.09-.755-.134-1.11a3.097 3.097 0 0 0-1.865-2.585 4.197 4.197 0 0 0-1.692-.315z" }) + ] + } + ); +}); + +exports.default = SiRedragon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.d.ts new file mode 100644 index 000000000..a45086e6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60012"; +declare const SiRedragon: IconType; +export { SiRedragon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.mjs new file mode 100644 index 000000000..816dc0700 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedragon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60012"; +const SiRedragon = React.forwardRef(function SiRedragon2({ title = "Redragon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.995 4.077v.06A10.963 10.963 0 0 1 16.22 8.42c.605 2.167.876 4.414.805 6.662a1.01 1.01 0 0 1 0 .113 6.278 6.278 0 0 0-.721-1.846 4.39 4.39 0 0 0-1.367-1.45c.025.064.059.113.059.168a7.04 7.04 0 0 1 .528 2.245 4.703 4.703 0 0 1-1.076 3.41 1.38 1.38 0 0 0-.113.203l-.069-.065a3.949 3.949 0 0 0-.138-2.374c-.578 2.216-2.068 3.538-4.047 4.437 2.404-.01 4.723-.375 6.697-1.856.015.533-.148.958-.696 1.841 1.673-.839 2.403-2.23 2.586-4.012.45.536.755 1.178.888 1.866.128.656.192 1.327.286 1.974.71-1.747.686-3.593.444-5.512 2.137 1.248 3.02 3.266 3.701 5.428a25.023 25.023 0 0 0-.133-3.494c-.17-1.698-.59-3.36-1.248-4.935a11.844 11.844 0 0 0-6.638-6.583 8.79 8.79 0 0 0-1.973-.563zm-2.734.11c-.306.522-.587 1.06-.933 1.539a18.019 18.019 0 0 1-1.14 1.524 1.313 1.313 0 0 1-.943.43l.445-2.083a.626.626 0 0 0-.143.188c-.3.46-.592.928-.908 1.372a.632.632 0 0 1-.726.247c-.493-.144-.987-.282-1.48-.44a.257.257 0 0 0-.326.08A18.356 18.356 0 0 1 3.785 8.42c-1.076.953-2.24 1.746-3.785 1.638v.065c.434 1.026.864 2.053 1.318 3.074a1.648 1.648 0 0 0 .69.74 12.216 12.216 0 0 1-.183-1.283c-.024-.523.094-.617.617-.667a.168.168 0 0 1 .203.129c.074.187.163.37.246.558.104-.227.193-.44.296-.642a.301.301 0 0 1 .149-.133c.222-.094.45-.168.686-.257l.177.356c.153-.35.296-.696.46-1.037a.375.375 0 0 1 .468-.173v.242a4.935 4.935 0 0 0 .493 2.626 4.244 4.244 0 0 1 .281 1.046c.04.162-.043.257-.196.257l-.4.044a1.655 1.655 0 0 1 .27.247c.075.094.179.27.144.32a.918.918 0 0 1-.39.267.536.536 0 0 1-.315 0 9.746 9.746 0 0 1-.81-.272 3.64 3.64 0 0 1-.414-.212l-.08.094.716.612a1.554 1.554 0 0 0 1.24.41.987.987 0 0 0 .986-.988c.045-.306.005-.616.045-.922a2.704 2.704 0 0 1 .927-1.974 2.561 2.561 0 0 0-1.214.74 6.366 6.366 0 0 1-.079-1.135 1.545 1.545 0 0 1 1.402-1.653 20.515 20.515 0 0 1 1.648-.281c.805-.08 1.599-.246 2.369-.494a4.367 4.367 0 0 0 1.406-.794 17.83 17.83 0 0 1-2.872.38 8.882 8.882 0 0 0 3.4-4.777c-1.056 1.48-2.202 2.867-3.87 3.701a22.7 22.7 0 0 0 1.447-4.086zM5.443 8.07c-.03.153-.054.305-.094.454-.074.29-.163.577-.237.868a.197.197 0 0 1-.198.178c-.384.045-.764.103-1.183.157zM9.4 10.775a4.206 4.206 0 0 0-.577.053 2.897 2.897 0 0 0-1.48.523.987.987 0 0 0-.43.923 1.1 1.1 0 0 1 .972-.671 3.065 3.065 0 0 1 1.762.34c.49.234.772.76.696 1.298a2.338 2.338 0 0 1-.687 1.377 5.797 5.797 0 0 1-1.914 1.308 9.695 9.695 0 0 0-2.32 1.41 3.95 3.95 0 0 0-1.396 2.567h5.921a2.023 2.023 0 0 1 .987-2.551l-.26 1.115a5.428 5.428 0 0 0 1.243-2.665c.171.407.245.848.216 1.288a5.615 5.615 0 0 0 .44-2.866l.518.561c-.049-.4-.09-.755-.134-1.11a3.097 3.097 0 0 0-1.865-2.585 4.197 4.197 0 0 0-1.692-.315z" }) + ] + } + ); +}); + +export { SiRedragon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.cjs new file mode 100644 index 000000000..63d573628 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC7C26"; +const SiRedsys = React__namespace.forwardRef(function SiRedsys2({ title = "Redsys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.626 24c-3.989-.108-7.476-2.03-9.89-5.873A10.9 10.9 0 0 1 .17 13.959a12.4 12.4 0 0 1 .239-4.996c.44-1.711 1.275-3.197 2.339-4.58.075-.099.169-.263.314-.174.098.061.023.207-.019.324-.473 1.36-.46 2.756.225 3.984.783 1.411 1.964 2.438 3.67 2.705 1.636.258 3.07-.211 4.21-1.317 1.378-1.34 1.95-2.99 1.415-4.946-.285-1.036-.768-1.922-1.612-2.578-1.092-.848-2.33-1.26-3.722-1.12-.098.01-.225.08-.267-.056s.103-.14.187-.178A11.9 11.9 0 0 1 12.071 0c1.74.01 3.427.384 5.006 1.125 2.152 1.008 3.91 2.498 5.133 4.552a12.4 12.4 0 0 1 1.688 4.93c.154 1.313.08 2.584-.188 3.863-.333 1.575-.942 3.028-1.875 4.34-.853 1.2-1.851 2.241-3.103 3.052-.998.647-2.025 1.177-3.16 1.538-1.115.356-2.245.544-3.946.595z" }) + ] + } + ); +}); + +exports.default = SiRedsys; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.d.ts new file mode 100644 index 000000000..78825b854 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC7C26"; +declare const SiRedsys: IconType; +export { SiRedsys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.mjs new file mode 100644 index 000000000..0aba9704a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedsys.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC7C26"; +const SiRedsys = React.forwardRef(function SiRedsys2({ title = "Redsys", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.626 24c-3.989-.108-7.476-2.03-9.89-5.873A10.9 10.9 0 0 1 .17 13.959a12.4 12.4 0 0 1 .239-4.996c.44-1.711 1.275-3.197 2.339-4.58.075-.099.169-.263.314-.174.098.061.023.207-.019.324-.473 1.36-.46 2.756.225 3.984.783 1.411 1.964 2.438 3.67 2.705 1.636.258 3.07-.211 4.21-1.317 1.378-1.34 1.95-2.99 1.415-4.946-.285-1.036-.768-1.922-1.612-2.578-1.092-.848-2.33-1.26-3.722-1.12-.098.01-.225.08-.267-.056s.103-.14.187-.178A11.9 11.9 0 0 1 12.071 0c1.74.01 3.427.384 5.006 1.125 2.152 1.008 3.91 2.498 5.133 4.552a12.4 12.4 0 0 1 1.688 4.93c.154 1.313.08 2.584-.188 3.863-.333 1.575-.942 3.028-1.875 4.34-.853 1.2-1.851 2.241-3.103 3.052-.998.647-2.025 1.177-3.16 1.538-1.115.356-2.245.544-3.946.595z" }) + ] + } + ); +}); + +export { SiRedsys as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.cjs new file mode 100644 index 000000000..9e778e356 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#764ABC"; +const SiRedux = React__namespace.forwardRef(function SiRedux2({ title = "Redux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.634 16.504c.87-.075 1.543-.84 1.5-1.754-.047-.914-.796-1.648-1.709-1.648h-.061a1.71 1.71 0 00-1.648 1.769c.03.479.226.869.494 1.153-1.048 2.038-2.621 3.536-5.005 4.795-1.603.838-3.296 1.154-4.944.93-1.378-.195-2.456-.81-3.116-1.799-.988-1.499-1.078-3.116-.255-4.734.6-1.17 1.499-2.023 2.099-2.443a9.96 9.96 0 01-.42-1.543C-.868 14.408-.416 18.752.932 20.805c1.004 1.498 3.057 2.456 5.304 2.456.6 0 1.23-.044 1.843-.194 3.897-.749 6.848-3.086 8.541-6.532zm5.348-3.746c-2.32-2.728-5.738-4.226-9.634-4.226h-.51c-.253-.554-.837-.899-1.498-.899h-.045c-.943 0-1.678.81-1.647 1.753.03.898.794 1.648 1.708 1.648h.074a1.69 1.69 0 001.499-1.049h.555c2.309 0 4.495.674 6.488 1.992 1.527 1.005 2.622 2.323 3.237 3.897.538 1.288.509 2.547-.045 3.597-.855 1.647-2.294 2.517-4.196 2.517-1.199 0-2.367-.375-2.967-.644-.36.298-.96.793-1.394 1.093 1.318.598 2.652.943 3.94.943 2.922 0 5.094-1.647 5.919-3.236.898-1.798.824-4.824-1.47-7.416zM6.49 17.042c.03.899.793 1.648 1.708 1.648h.06a1.688 1.688 0 001.648-1.768c0-.9-.779-1.647-1.693-1.647h-.06c-.06 0-.15 0-.226.029-1.243-2.098-1.768-4.347-1.572-6.772.12-1.828.72-3.417 1.797-4.735.9-1.124 2.593-1.68 3.747-1.708 3.236-.061 4.585 3.971 4.689 5.574l1.498.45C17.741 3.197 14.686.62 11.764.62 9.02.62 6.49 2.613 5.47 5.535 4.077 9.43 4.991 13.177 6.7 16.174c-.15.195-.24.539-.21.868z" }) + ] + } + ); +}); + +exports.default = SiRedux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.d.ts new file mode 100644 index 000000000..231841100 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#764ABC"; +declare const SiRedux: IconType; +export { SiRedux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.mjs new file mode 100644 index 000000000..a2904bc92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#764ABC"; +const SiRedux = React.forwardRef(function SiRedux2({ title = "Redux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.634 16.504c.87-.075 1.543-.84 1.5-1.754-.047-.914-.796-1.648-1.709-1.648h-.061a1.71 1.71 0 00-1.648 1.769c.03.479.226.869.494 1.153-1.048 2.038-2.621 3.536-5.005 4.795-1.603.838-3.296 1.154-4.944.93-1.378-.195-2.456-.81-3.116-1.799-.988-1.499-1.078-3.116-.255-4.734.6-1.17 1.499-2.023 2.099-2.443a9.96 9.96 0 01-.42-1.543C-.868 14.408-.416 18.752.932 20.805c1.004 1.498 3.057 2.456 5.304 2.456.6 0 1.23-.044 1.843-.194 3.897-.749 6.848-3.086 8.541-6.532zm5.348-3.746c-2.32-2.728-5.738-4.226-9.634-4.226h-.51c-.253-.554-.837-.899-1.498-.899h-.045c-.943 0-1.678.81-1.647 1.753.03.898.794 1.648 1.708 1.648h.074a1.69 1.69 0 001.499-1.049h.555c2.309 0 4.495.674 6.488 1.992 1.527 1.005 2.622 2.323 3.237 3.897.538 1.288.509 2.547-.045 3.597-.855 1.647-2.294 2.517-4.196 2.517-1.199 0-2.367-.375-2.967-.644-.36.298-.96.793-1.394 1.093 1.318.598 2.652.943 3.94.943 2.922 0 5.094-1.647 5.919-3.236.898-1.798.824-4.824-1.47-7.416zM6.49 17.042c.03.899.793 1.648 1.708 1.648h.06a1.688 1.688 0 001.648-1.768c0-.9-.779-1.647-1.693-1.647h-.06c-.06 0-.15 0-.226.029-1.243-2.098-1.768-4.347-1.572-6.772.12-1.828.72-3.417 1.797-4.735.9-1.124 2.593-1.68 3.747-1.708 3.236-.061 4.585 3.971 4.689 5.574l1.498.45C17.741 3.197 14.686.62 11.764.62 9.02.62 6.49 2.613 5.47 5.535 4.077 9.43 4.991 13.177 6.7 16.174c-.15.195-.24.539-.21.868z" }) + ] + } + ); +}); + +export { SiRedux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.cjs new file mode 100644 index 000000000..b4d49a3fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#999999"; +const SiReduxsaga = React__namespace.forwardRef(function SiReduxsaga2({ title = "Redux-Saga", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.871 4.678a3.315 3.315 0 0 0-1.953.631C4.455 6.35 3.724 8.235 3.534 10.007c-.204 1.938.23 4.166 1.398 5.638-.194.57.193 1.202.793 1.268a.975.975 0 0 0 1.06-.713c.197-.66-.425-1.342-1.13-1.189-.982-1.321-1.29-3.038-1.186-4.653.125-1.576.683-3.255 1.985-4.245.81-.602 1.828-.622 2.65-.075 1.107.742 1.763 2.132 1.97 3.43l.51.199.551.288c-.198-1.888-1.097-3.866-2.576-4.774a3.149 3.149 0 0 0-1.688-.503zm9.515 3.946a8.752 8.752 0 0 0-3.056.526.968.968 0 0 0-1.246.27c-.394.505-.162 1.297.475 1.495.615.211 1.29-.284 1.265-.918a7.778 7.778 0 0 1 2.839-.403c1.575.07 3.665.654 4.626 2.148.076.119.165.404.521.4a.484.484 0 0 0 .422-.7c-.526-.99-1.522-1.725-2.636-2.194-.984-.412-2.095-.62-3.21-.624zm-11.06.717c-.455-.003-.93.296-.979.933.012 1.233 1.657 1.33 1.912.24 1.887-.271 3.894.584 5.3 1.717.973.77 1.852 1.993 2.072 3.083.162.071.61.265 1.002.306-.146-1.638-1.215-3.101-2.452-4.127-1.568-1.33-4.123-2.328-6.218-1.903a.912.912 0 0 0-.636-.249zm-3.418 1.86c-.866.609-1.65 1.36-2.185 2.282C.008 14.668-.312 16.24.4 17.499c.66 1.218 2.082 1.78 3.41 1.812a7.263 7.263 0 0 0 2.265-.297c2.104-.59 4.373-2.222 5.274-4.362a.964.964 0 0 0 .79-.705c.2-.72-.463-1.372-1.169-1.191-.686.175-.966 1.012-.522 1.54-.607 1.389-1.8 2.449-3.112 3.161-1.493.804-3.306 1.188-4.758.659-.93-.304-1.642-1.13-1.618-2.215 0-1.297.924-2.677 2.062-3.573-.118-.538-.107-.74-.114-1.128zm20.103 1.53a.938.938 0 0 0-.672.292c-.344.327-.364.902-.092 1.248-.546.823-1.508 1.384-2.455 1.706-1.855.613-4.111.503-5.798-.38a4.48 4.48 0 0 1-.99-.674c-.141-.128-.183-.157-.296-.188-.5-.105-.783.486-.457.808 1.269 1.189 3.037 1.706 4.744 1.777.664.024 1.33-.02 1.983-.14 1.622-.302 3.318-1.107 4.168-2.521.639-.072 1.038-.775.769-1.344a.958.958 0 0 0-.904-.584zm-8.746 4.514c-.83 1.12-2.646 1.45-4.75.723-.19.13-.302.214-.433.3-.13.087-.29.17-.607.366 2.558 1.032 5.444 1.076 6.739-1.082a3.39 3.39 0 0 1-.949-.307z" }) + ] + } + ); +}); + +exports.default = SiReduxsaga; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.d.ts new file mode 100644 index 000000000..c36cf064c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#999999"; +declare const SiReduxsaga: IconType; +export { SiReduxsaga as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.mjs new file mode 100644 index 000000000..a9e4c1d93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReduxsaga.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#999999"; +const SiReduxsaga = React.forwardRef(function SiReduxsaga2({ title = "Redux-Saga", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.871 4.678a3.315 3.315 0 0 0-1.953.631C4.455 6.35 3.724 8.235 3.534 10.007c-.204 1.938.23 4.166 1.398 5.638-.194.57.193 1.202.793 1.268a.975.975 0 0 0 1.06-.713c.197-.66-.425-1.342-1.13-1.189-.982-1.321-1.29-3.038-1.186-4.653.125-1.576.683-3.255 1.985-4.245.81-.602 1.828-.622 2.65-.075 1.107.742 1.763 2.132 1.97 3.43l.51.199.551.288c-.198-1.888-1.097-3.866-2.576-4.774a3.149 3.149 0 0 0-1.688-.503zm9.515 3.946a8.752 8.752 0 0 0-3.056.526.968.968 0 0 0-1.246.27c-.394.505-.162 1.297.475 1.495.615.211 1.29-.284 1.265-.918a7.778 7.778 0 0 1 2.839-.403c1.575.07 3.665.654 4.626 2.148.076.119.165.404.521.4a.484.484 0 0 0 .422-.7c-.526-.99-1.522-1.725-2.636-2.194-.984-.412-2.095-.62-3.21-.624zm-11.06.717c-.455-.003-.93.296-.979.933.012 1.233 1.657 1.33 1.912.24 1.887-.271 3.894.584 5.3 1.717.973.77 1.852 1.993 2.072 3.083.162.071.61.265 1.002.306-.146-1.638-1.215-3.101-2.452-4.127-1.568-1.33-4.123-2.328-6.218-1.903a.912.912 0 0 0-.636-.249zm-3.418 1.86c-.866.609-1.65 1.36-2.185 2.282C.008 14.668-.312 16.24.4 17.499c.66 1.218 2.082 1.78 3.41 1.812a7.263 7.263 0 0 0 2.265-.297c2.104-.59 4.373-2.222 5.274-4.362a.964.964 0 0 0 .79-.705c.2-.72-.463-1.372-1.169-1.191-.686.175-.966 1.012-.522 1.54-.607 1.389-1.8 2.449-3.112 3.161-1.493.804-3.306 1.188-4.758.659-.93-.304-1.642-1.13-1.618-2.215 0-1.297.924-2.677 2.062-3.573-.118-.538-.107-.74-.114-1.128zm20.103 1.53a.938.938 0 0 0-.672.292c-.344.327-.364.902-.092 1.248-.546.823-1.508 1.384-2.455 1.706-1.855.613-4.111.503-5.798-.38a4.48 4.48 0 0 1-.99-.674c-.141-.128-.183-.157-.296-.188-.5-.105-.783.486-.457.808 1.269 1.189 3.037 1.706 4.744 1.777.664.024 1.33-.02 1.983-.14 1.622-.302 3.318-1.107 4.168-2.521.639-.072 1.038-.775.769-1.344a.958.958 0 0 0-.904-.584zm-8.746 4.514c-.83 1.12-2.646 1.45-4.75.723-.19.13-.302.214-.433.3-.13.087-.29.17-.607.366 2.558 1.032 5.444 1.076 6.739-1.082a3.39 3.39 0 0 1-.949-.307z" }) + ] + } + ); +}); + +export { SiReduxsaga as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.cjs new file mode 100644 index 000000000..a30e36cc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BF4722"; +const SiRedwoodjs = React__namespace.forwardRef(function SiRedwoodjs2({ title = "RedwoodJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.989 3.47l4.66 3.181c.105.07.228.108.354.111a.634.634 0 0 0 .354-.111l4.664-3.192a.637.637 0 0 0-.089-1.087L12.272.065a.64.64 0 0 0-.56 0L7.067 2.372a.636.636 0 0 0-.078 1.098zm6.597 4.179c0 .211.104.408.276.528l3.736 2.553a.628.628 0 0 0 .776-.05l3.134-2.803a.637.637 0 0 0-.028-.973l-2.992-2.393a.635.635 0 0 0-.751-.029l-3.874 2.65a.644.644 0 0 0-.277.517zm-9.291 3.474a.64.64 0 0 1 .209.538.625.625 0 0 1-.315.485l-2.231 1.337a.63.63 0 0 1-.718-.049.64.64 0 0 1-.21-.693l.825-2.596a.63.63 0 0 1 1.023-.281l1.417 1.259zm12.1.271l-4.033-2.76a.634.634 0 0 0-.708 0l-4.033 2.76a.646.646 0 0 0-.276.485.664.664 0 0 0 .212.521l4.03 3.605a.635.635 0 0 0 .842 0l4.03-3.605a.647.647 0 0 0-.064-1.006zm-10.758-.713l-3.13-2.803a.648.648 0 0 1-.213-.503.626.626 0 0 1 .237-.481l2.992-2.407a.641.641 0 0 1 .754-.029l3.87 2.65a.639.639 0 0 1 0 1.07l-3.732 2.553a.633.633 0 0 1-.778-.05zm16.073 4.026l-3.187-1.908a.627.627 0 0 0-.744.071l-3.895 3.477a.644.644 0 0 0-.204.587.636.636 0 0 0 .388.483l5.404 2.19a.634.634 0 0 0 .815-.332l1.675-3.752a.64.64 0 0 0-.252-.816zm.442-4.561l.825 2.596h-.007a.635.635 0 0 1-.927.742l-2.234-1.337a.623.623 0 0 1-.305-.485.631.631 0 0 1 .209-.538l1.416-1.262a.63.63 0 0 1 1.023.284zm-11.82 6.786a.637.637 0 0 0-.202-.585L6.235 12.87a.627.627 0 0 0-.744-.071l-3.187 1.908a.648.648 0 0 0-.255.813l1.678 3.752a.632.632 0 0 0 .814.332l5.4-2.19a.637.637 0 0 0 .391-.482zm1.912 1.07l4.334 1.755c.212.091.358.29.382.521a.635.635 0 0 1-.269.596l-4.338 3.013A.625.625 0 0 1 12 24a.64.64 0 0 1-.354-.114l-4.334-3.013a.635.635 0 0 1 .124-1.117l4.334-1.755a.642.642 0 0 1 .474.001z" }) + ] + } + ); +}); + +exports.default = SiRedwoodjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.d.ts new file mode 100644 index 000000000..e28c29e2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BF4722"; +declare const SiRedwoodjs: IconType; +export { SiRedwoodjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.mjs new file mode 100644 index 000000000..27162fe3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRedwoodjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BF4722"; +const SiRedwoodjs = React.forwardRef(function SiRedwoodjs2({ title = "RedwoodJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.989 3.47l4.66 3.181c.105.07.228.108.354.111a.634.634 0 0 0 .354-.111l4.664-3.192a.637.637 0 0 0-.089-1.087L12.272.065a.64.64 0 0 0-.56 0L7.067 2.372a.636.636 0 0 0-.078 1.098zm6.597 4.179c0 .211.104.408.276.528l3.736 2.553a.628.628 0 0 0 .776-.05l3.134-2.803a.637.637 0 0 0-.028-.973l-2.992-2.393a.635.635 0 0 0-.751-.029l-3.874 2.65a.644.644 0 0 0-.277.517zm-9.291 3.474a.64.64 0 0 1 .209.538.625.625 0 0 1-.315.485l-2.231 1.337a.63.63 0 0 1-.718-.049.64.64 0 0 1-.21-.693l.825-2.596a.63.63 0 0 1 1.023-.281l1.417 1.259zm12.1.271l-4.033-2.76a.634.634 0 0 0-.708 0l-4.033 2.76a.646.646 0 0 0-.276.485.664.664 0 0 0 .212.521l4.03 3.605a.635.635 0 0 0 .842 0l4.03-3.605a.647.647 0 0 0-.064-1.006zm-10.758-.713l-3.13-2.803a.648.648 0 0 1-.213-.503.626.626 0 0 1 .237-.481l2.992-2.407a.641.641 0 0 1 .754-.029l3.87 2.65a.639.639 0 0 1 0 1.07l-3.732 2.553a.633.633 0 0 1-.778-.05zm16.073 4.026l-3.187-1.908a.627.627 0 0 0-.744.071l-3.895 3.477a.644.644 0 0 0-.204.587.636.636 0 0 0 .388.483l5.404 2.19a.634.634 0 0 0 .815-.332l1.675-3.752a.64.64 0 0 0-.252-.816zm.442-4.561l.825 2.596h-.007a.635.635 0 0 1-.927.742l-2.234-1.337a.623.623 0 0 1-.305-.485.631.631 0 0 1 .209-.538l1.416-1.262a.63.63 0 0 1 1.023.284zm-11.82 6.786a.637.637 0 0 0-.202-.585L6.235 12.87a.627.627 0 0 0-.744-.071l-3.187 1.908a.648.648 0 0 0-.255.813l1.678 3.752a.632.632 0 0 0 .814.332l5.4-2.19a.637.637 0 0 0 .391-.482zm1.912 1.07l4.334 1.755c.212.091.358.29.382.521a.635.635 0 0 1-.269.596l-4.338 3.013A.625.625 0 0 1 12 24a.64.64 0 0 1-.354-.114l-4.334-3.013a.635.635 0 0 1 .124-1.117l4.334-1.755a.642.642 0 0 1 .474.001z" }) + ] + } + ); +}); + +export { SiRedwoodjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.cjs new file mode 100644 index 000000000..950b002d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E41D1B"; +const SiReebok = React__namespace.forwardRef(function SiReebok2({ title = "Reebok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.991 11.48C17.744 10.38 19.458 9.748 24 8.64c-2.467.163-7.922.537-11.682 1.271l2.673 1.57m-8.56 3.651h3.6c.713-1.08 1.422-1.606 2.248-2.191a71.382 71.382 0 00-1.892-.701c-2.297 1.014-3.575 2.375-3.953 2.892m.709-3.928c-3.21 1.147-4.994 2.393-6.199 3.928h3.975c.387-.539 1.862-2.093 4.633-3.174a57.092 57.092 0 00-2.41-.754M8.79 8.788H0c8.862 1.6 13.133 3.66 20 6.572-.587-.439-10.051-6.013-11.209-6.572" }) + ] + } + ); +}); + +exports.default = SiReebok; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.d.ts new file mode 100644 index 000000000..66d84663b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E41D1B"; +declare const SiReebok: IconType; +export { SiReebok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.mjs new file mode 100644 index 000000000..25f606c39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReebok.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E41D1B"; +const SiReebok = React.forwardRef(function SiReebok2({ title = "Reebok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.991 11.48C17.744 10.38 19.458 9.748 24 8.64c-2.467.163-7.922.537-11.682 1.271l2.673 1.57m-8.56 3.651h3.6c.713-1.08 1.422-1.606 2.248-2.191a71.382 71.382 0 00-1.892-.701c-2.297 1.014-3.575 2.375-3.953 2.892m.709-3.928c-3.21 1.147-4.994 2.393-6.199 3.928h3.975c.387-.539 1.862-2.093 4.633-3.174a57.092 57.092 0 00-2.41-.754M8.79 8.788H0c8.862 1.6 13.133 3.66 20 6.572-.587-.439-10.051-6.013-11.209-6.572" }) + ] + } + ); +}); + +export { SiReebok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.cjs new file mode 100644 index 000000000..8960db5eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14141F"; +const SiRefine = React__namespace.forwardRef(function SiRefine2({ title = "Refine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.789.422a4.001 4.001 0 0 0-3.578 0l-8 4A4.0011 4.0011 0 0 0 0 8v8c0 1.515.856 2.9 2.211 3.578l8 4a4.001 4.001 0 0 0 3.578 0l8-4A4.0011 4.0011 0 0 0 24 16V8c0-1.515-.856-2.9-2.211-3.578l-8-4ZM8 8c0-2.209 1.791-4 4-4s4 1.791 4 4v8c0 2.209-1.791 4-4 4s-4-1.791-4-4V8Zm6 0c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2Z" }) + ] + } + ); +}); + +exports.default = SiRefine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.d.ts new file mode 100644 index 000000000..7f4b85f6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14141F"; +declare const SiRefine: IconType; +export { SiRefine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.mjs new file mode 100644 index 000000000..96b751785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRefine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14141F"; +const SiRefine = React.forwardRef(function SiRefine2({ title = "Refine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.789.422a4.001 4.001 0 0 0-3.578 0l-8 4A4.0011 4.0011 0 0 0 0 8v8c0 1.515.856 2.9 2.211 3.578l8 4a4.001 4.001 0 0 0 3.578 0l8-4A4.0011 4.0011 0 0 0 24 16V8c0-1.515-.856-2.9-2.211-3.578l-8-4ZM8 8c0-2.209 1.791-4 4-4s4 1.791 4 4v8c0 2.209-1.791 4-4 4s-4-1.791-4-4V8Zm6 0c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2Z" }) + ] + } + ); +}); + +export { SiRefine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.cjs new file mode 100644 index 000000000..11ad4a46c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9E95B7"; +const SiRefinedgithub = React__namespace.forwardRef(function SiRefinedgithub2({ title = "Refined GitHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.906.614a3.4 3.4 0 0 0-.896.127c-.955.262-1.824.76-2.646 1.302a13.7 13.7 0 0 0-6.807-.002A11 11 0 0 0 6.71 1.016C6.136.78 5.526.585 4.899.622c-.113.01-.263.013-.315.135a5.8 5.8 0 0 0-.422 1.737 4.8 4.8 0 0 0 .223 1.923 5.4 5.4 0 0 0-1.36 3.053c-.05.453-.036.91-.015 1.365-.934-.237-1.93-.278-2.867-.035-.11.025-.174.16-.128.261.036.092.146.14.238.111.912-.232 1.881-.177 2.783.074q.045.412.107.821c-.798-.196-1.635-.093-2.42.11-.14.033-.18.238-.071.328.083.08.205.04.303.015.74-.18 1.536-.258 2.275-.027.072.248.13.5.226.741l.316.715c.321.63.806 1.167 1.365 1.596a6.8 6.8 0 0 0 1.73.942c.727.277 1.49.449 2.258.571a3.3 3.3 0 0 0-.376.498 3.2 3.2 0 0 0-.335.795c-.43.007-.865.05-1.288-.045a1.95 1.95 0 0 1-.864-.452 3.6 3.6 0 0 1-.62-.739 1 1 0 0 0-.618-.43.73.73 0 0 0-.57.11.67.67 0 0 0-.256.406c-.051.221-.011.452.059.665.122.365.351.687.626.954.485.467 1.089.799 1.726 1.006.535.17 1.112.257 1.667.143-.003.99.003 1.979-.003 2.968-.024.232-.134.45-.28.628-.1.128-.23.231-.377.301-.128.056-.268.102-.362.212a.43.43 0 0 0-.097.422.41.41 0 0 0 .265.25c.148.05.306.039.46.036.45-.013.907-.1 1.306-.318.55-.294.95-.897.925-1.532-.002-.679-.022-1.357-.032-2.036-.003-.385-.018-.771.016-1.155.028 1.009.034 2.019.054 3.028.002.324-.001.654-.09.97a1.8 1.8 0 0 1-.365.682c-.098.12-.226.22-.295.362-.06.114-.07.26.001.37.084.143.254.197.409.22.33.041.657-.073.95-.218a2.16 2.16 0 0 0 .86-.783c.209-.338.308-.736.316-1.13.01-.584.008-1.167.017-1.75.035-.297.021-.596.028-.894.005.175.003.35.004.525-.027.534-.003 1.07-.004 1.604.01.31-.013.624.049.93.062.324.195.636.398.897.234.3.551.53.902.678.294.123.63.204.943.105.156-.044.296-.18.3-.35.003-.169-.105-.312-.22-.427a1.87 1.87 0 0 1-.524-1.36V18.47c.004-.27-.012-.54.014-.809.049.405.034.814.033 1.22.004.733-.003 1.466.004 2.2.015.41.18.822.48 1.108.346.337.824.5 1.295.565q.36.05.719.026c.182-.016.37-.137.408-.324.039-.176-.059-.355-.2-.457-.093-.075-.215-.095-.318-.153-.292-.16-.5-.451-.588-.77-.045-.138-.022-.284-.028-.426.001-.89-.007-1.782.008-2.672.483.097.983.043 1.455-.084a4.6 4.6 0 0 0 1.794-.94c.334-.29.618-.651.761-1.073.068-.205.11-.426.068-.641a.7.7 0 0 0-.233-.414.72.72 0 0 0-.583-.137 1 1 0 0 0-.632.431c-.206.314-.445.612-.744.841a1.9 1.9 0 0 1-.718.346c-.43.103-.876.059-1.314.051a3.9 3.9 0 0 0-.72-1.269c-.032-.022.018-.042.036-.041 1.228-.18 2.453-.528 3.514-1.188a5.15 5.15 0 0 0 1.638-1.593 3 3 0 0 0 .21-.383c.096-.214.203-.423.285-.644a8 8 0 0 0 .218-.725c.661-.228 1.38-.193 2.057-.057q.187.037.375.084c.07.017.154.017.21-.036.104-.084.073-.278-.054-.323-.81-.218-1.677-.314-2.5-.104a9 9 0 0 0 .109-.792c0-.031.038-.032.06-.041.903-.252 1.874-.306 2.788-.073.12.038.227-.057.263-.165v-.037c-.031-.073-.074-.156-.16-.173-.956-.246-1.971-.197-2.92.052.038-.68.033-1.37-.125-2.037a5.5 5.5 0 0 0-1.251-2.399c.386-1.133.283-2.39-.134-3.499-.04-.105-.07-.249-.204-.27q-.15-.03-.3-.032" }) + ] + } + ); +}); + +exports.default = SiRefinedgithub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.d.ts new file mode 100644 index 000000000..5765760ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9E95B7"; +declare const SiRefinedgithub: IconType; +export { SiRefinedgithub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.mjs new file mode 100644 index 000000000..8d2b4594c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRefinedgithub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9E95B7"; +const SiRefinedgithub = React.forwardRef(function SiRefinedgithub2({ title = "Refined GitHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.906.614a3.4 3.4 0 0 0-.896.127c-.955.262-1.824.76-2.646 1.302a13.7 13.7 0 0 0-6.807-.002A11 11 0 0 0 6.71 1.016C6.136.78 5.526.585 4.899.622c-.113.01-.263.013-.315.135a5.8 5.8 0 0 0-.422 1.737 4.8 4.8 0 0 0 .223 1.923 5.4 5.4 0 0 0-1.36 3.053c-.05.453-.036.91-.015 1.365-.934-.237-1.93-.278-2.867-.035-.11.025-.174.16-.128.261.036.092.146.14.238.111.912-.232 1.881-.177 2.783.074q.045.412.107.821c-.798-.196-1.635-.093-2.42.11-.14.033-.18.238-.071.328.083.08.205.04.303.015.74-.18 1.536-.258 2.275-.027.072.248.13.5.226.741l.316.715c.321.63.806 1.167 1.365 1.596a6.8 6.8 0 0 0 1.73.942c.727.277 1.49.449 2.258.571a3.3 3.3 0 0 0-.376.498 3.2 3.2 0 0 0-.335.795c-.43.007-.865.05-1.288-.045a1.95 1.95 0 0 1-.864-.452 3.6 3.6 0 0 1-.62-.739 1 1 0 0 0-.618-.43.73.73 0 0 0-.57.11.67.67 0 0 0-.256.406c-.051.221-.011.452.059.665.122.365.351.687.626.954.485.467 1.089.799 1.726 1.006.535.17 1.112.257 1.667.143-.003.99.003 1.979-.003 2.968-.024.232-.134.45-.28.628-.1.128-.23.231-.377.301-.128.056-.268.102-.362.212a.43.43 0 0 0-.097.422.41.41 0 0 0 .265.25c.148.05.306.039.46.036.45-.013.907-.1 1.306-.318.55-.294.95-.897.925-1.532-.002-.679-.022-1.357-.032-2.036-.003-.385-.018-.771.016-1.155.028 1.009.034 2.019.054 3.028.002.324-.001.654-.09.97a1.8 1.8 0 0 1-.365.682c-.098.12-.226.22-.295.362-.06.114-.07.26.001.37.084.143.254.197.409.22.33.041.657-.073.95-.218a2.16 2.16 0 0 0 .86-.783c.209-.338.308-.736.316-1.13.01-.584.008-1.167.017-1.75.035-.297.021-.596.028-.894.005.175.003.35.004.525-.027.534-.003 1.07-.004 1.604.01.31-.013.624.049.93.062.324.195.636.398.897.234.3.551.53.902.678.294.123.63.204.943.105.156-.044.296-.18.3-.35.003-.169-.105-.312-.22-.427a1.87 1.87 0 0 1-.524-1.36V18.47c.004-.27-.012-.54.014-.809.049.405.034.814.033 1.22.004.733-.003 1.466.004 2.2.015.41.18.822.48 1.108.346.337.824.5 1.295.565q.36.05.719.026c.182-.016.37-.137.408-.324.039-.176-.059-.355-.2-.457-.093-.075-.215-.095-.318-.153-.292-.16-.5-.451-.588-.77-.045-.138-.022-.284-.028-.426.001-.89-.007-1.782.008-2.672.483.097.983.043 1.455-.084a4.6 4.6 0 0 0 1.794-.94c.334-.29.618-.651.761-1.073.068-.205.11-.426.068-.641a.7.7 0 0 0-.233-.414.72.72 0 0 0-.583-.137 1 1 0 0 0-.632.431c-.206.314-.445.612-.744.841a1.9 1.9 0 0 1-.718.346c-.43.103-.876.059-1.314.051a3.9 3.9 0 0 0-.72-1.269c-.032-.022.018-.042.036-.041 1.228-.18 2.453-.528 3.514-1.188a5.15 5.15 0 0 0 1.638-1.593 3 3 0 0 0 .21-.383c.096-.214.203-.423.285-.644a8 8 0 0 0 .218-.725c.661-.228 1.38-.193 2.057-.057q.187.037.375.084c.07.017.154.017.21-.036.104-.084.073-.278-.054-.323-.81-.218-1.677-.314-2.5-.104a9 9 0 0 0 .109-.792c0-.031.038-.032.06-.041.903-.252 1.874-.306 2.788-.073.12.038.227-.057.263-.165v-.037c-.031-.073-.074-.156-.16-.173-.956-.246-1.971-.197-2.92.052.038-.68.033-1.37-.125-2.037a5.5 5.5 0 0 0-1.251-2.399c.386-1.133.283-2.39-.134-3.499-.04-.105-.07-.249-.204-.27q-.15-.03-.3-.032" }) + ] + } + ); +}); + +export { SiRefinedgithub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.cjs new file mode 100644 index 000000000..3ee90763b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6E56CF"; +const SiReflex = React__namespace.forwardRef(function SiReflex2({ title = "Reflex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 15v9h5v-9zM2 0v24h5v-9h10v-5H7V5h10v5h5V0z" }) + ] + } + ); +}); + +exports.default = SiReflex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.d.ts new file mode 100644 index 000000000..839004804 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6E56CF"; +declare const SiReflex: IconType; +export { SiReflex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.mjs new file mode 100644 index 000000000..241dc6e4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReflex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6E56CF"; +const SiReflex = React.forwardRef(function SiReflex2({ title = "Reflex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17 15v9h5v-9zM2 0v24h5v-9h10v-5H7V5h10v5h5V0z" }) + ] + } + ); +}); + +export { SiReflex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.cjs new file mode 100644 index 000000000..1c77a9801 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#16A353"; +const SiRekaui = React__namespace.forwardRef(function SiRekaui2({ title = "Reka UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.3478 1.3265c-.6864 0-1.1148.744-.77 1.3375l2.564 4.4157h7.9478c1.1216 0 1.8502 1.26 1.2908 2.2322l-3.9539 6.8691 3.4078 5.869a.8903.8903 0 0 0 .77.4431h5.5038c.711 0 1.1352-.7922.741-1.384l-3.6294-5.4496c-.3177-.477-.089-1.1085.4021-1.362 1.1318-.592 1.9681-1.4035 2.5131-2.4347.5467-1.0343.8215-2.2223.8215-3.5667 0-1.3443-.2748-2.5402-.8219-3.5899-.545-1.046-1.385-1.8689-2.5244-2.4681l-.0006-.0002c-1.1369-.6054-2.5976-.9114-4.388-.9114zM.9908 7.5796c-.761 0-1.237.8232-.8574 1.4829l7.5494 13.1152c.3805.661 1.3343.661 1.7148 0L16.947 9.0625c.3796-.6597-.0963-1.4829-.8574-1.4829z" }) + ] + } + ); +}); + +exports.default = SiRekaui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.d.ts new file mode 100644 index 000000000..a488fadd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#16A353"; +declare const SiRekaui: IconType; +export { SiRekaui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.mjs new file mode 100644 index 000000000..d5bc9c49a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRekaui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#16A353"; +const SiRekaui = React.forwardRef(function SiRekaui2({ title = "Reka UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.3478 1.3265c-.6864 0-1.1148.744-.77 1.3375l2.564 4.4157h7.9478c1.1216 0 1.8502 1.26 1.2908 2.2322l-3.9539 6.8691 3.4078 5.869a.8903.8903 0 0 0 .77.4431h5.5038c.711 0 1.1352-.7922.741-1.384l-3.6294-5.4496c-.3177-.477-.089-1.1085.4021-1.362 1.1318-.592 1.9681-1.4035 2.5131-2.4347.5467-1.0343.8215-2.2223.8215-3.5667 0-1.3443-.2748-2.5402-.8219-3.5899-.545-1.046-1.385-1.8689-2.5244-2.4681l-.0006-.0002c-1.1369-.6054-2.5976-.9114-4.388-.9114zM.9908 7.5796c-.761 0-1.237.8232-.8574 1.4829l7.5494 13.1152c.3805.661 1.3343.661 1.7148 0L16.947 9.0625c.3796-.6597-.0963-1.4829-.8574-1.4829z" }) + ] + } + ); +}); + +export { SiRekaui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.cjs new file mode 100644 index 000000000..8bba4086d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F26B00"; +const SiRelay = React__namespace.forwardRef(function SiRelay2({ title = "Relay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.26428 4.93674C1.01354 4.93674 0 5.95018 0 7.20093c0 1.25074 1.01363 2.26428 2.26437 2.26428 1.05365 0 1.9393-.71975 2.1919-1.69462h10.3387c.98764 0 1.79128.80368 1.79128 1.79146 0 .98779-.80359 1.79156-1.79128 1.79156h-5.7309c-1.67246 0-3.03319 1.36067-3.03319 3.03318 0 1.67252 1.36063 3.03301 3.0332 3.03301h10.49429c.26987.9487 1.14197 1.64346 2.17735 1.64346 1.25074 0 2.26428-1.01344 2.26428-2.26419 0-1.25074-1.01354-2.26428-2.26428-2.26428-1.0353 0-1.9074.69469-2.17735 1.64328H9.06397c-.98777 0-1.79145-.80359-1.79145-1.79128 0-.98797.80358-1.79164 1.79146-1.79164h5.7309c1.67251 0 3.033-1.36063 3.033-3.0331 0-1.67246-1.36044-3.03319-3.033-3.03319H4.42718c-.2863-.92243-1.1464-1.59212-2.1629-1.59212Z" }) + ] + } + ); +}); + +exports.default = SiRelay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.d.ts new file mode 100644 index 000000000..71c010e6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F26B00"; +declare const SiRelay: IconType; +export { SiRelay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.mjs new file mode 100644 index 000000000..6e6a0aab5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRelay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F26B00"; +const SiRelay = React.forwardRef(function SiRelay2({ title = "Relay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.26428 4.93674C1.01354 4.93674 0 5.95018 0 7.20093c0 1.25074 1.01363 2.26428 2.26437 2.26428 1.05365 0 1.9393-.71975 2.1919-1.69462h10.3387c.98764 0 1.79128.80368 1.79128 1.79146 0 .98779-.80359 1.79156-1.79128 1.79156h-5.7309c-1.67246 0-3.03319 1.36067-3.03319 3.03318 0 1.67252 1.36063 3.03301 3.0332 3.03301h10.49429c.26987.9487 1.14197 1.64346 2.17735 1.64346 1.25074 0 2.26428-1.01344 2.26428-2.26419 0-1.25074-1.01354-2.26428-2.26428-2.26428-1.0353 0-1.9074.69469-2.17735 1.64328H9.06397c-.98777 0-1.79145-.80359-1.79145-1.79128 0-.98797.80358-1.79164 1.79146-1.79164h5.7309c1.67251 0 3.033-1.36063 3.033-3.0331 0-1.67246-1.36044-3.03319-3.033-3.03319H4.42718c-.2863-.92243-1.1464-1.59212-2.1629-1.59212Z" }) + ] + } + ); +}); + +export { SiRelay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.cjs new file mode 100644 index 000000000..dccc36aa2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D1AB66"; +const SiRelianceindustrieslimited = React__namespace.forwardRef(function SiRelianceindustrieslimited2({ title = "Reliance Industries Limited", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.65 18.44c.717-1.506 1.356-3.046 1.661-4.787.119 1.818 1.2 3.435 1.72 5.177.199.842.214 1.714-.107 2.584-.349.948-.911 1.759-1.582 2.488C7.528 21.936 6.97 20.11 7.65 18.44zm11.547 3.765c-.825.623-1.902.716-2.744.311 0 0-.229-.093-.439-.34-1.6-1.868-3.215-3.725-4.828-5.583 1.431.264 3-.438 3.805-1.712.81-1.212.777-2.942.016-4.154-.916-1.324-2.695-1.758-4.19-1.555-2.588.373-4.447 2.722-5.026 5.182-.595 2.799-.166 5.44.761 7.932a6.87 6.87 0 0 0 .856 1.538c-2.727-1.215-5.137-3.45-6.402-6.457-1.4-3.232-1.372-7.324.294-10.606C2.608 4.225 4.923 1.876 7.789.884c1.157-.49 2.47-.746 3.81-.786h.716c1.91.057 3.838.55 5.435 1.466 3.548 1.807 6.232 6.3 6.244 10.314.123 4.153-1.674 7.915-4.797 10.327z" }) + ] + } + ); +}); + +exports.default = SiRelianceindustrieslimited; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.d.ts new file mode 100644 index 000000000..0e7188a9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D1AB66"; +declare const SiRelianceindustrieslimited: IconType; +export { SiRelianceindustrieslimited as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.mjs new file mode 100644 index 000000000..0ffadabea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRelianceindustrieslimited.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D1AB66"; +const SiRelianceindustrieslimited = React.forwardRef(function SiRelianceindustrieslimited2({ title = "Reliance Industries Limited", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.65 18.44c.717-1.506 1.356-3.046 1.661-4.787.119 1.818 1.2 3.435 1.72 5.177.199.842.214 1.714-.107 2.584-.349.948-.911 1.759-1.582 2.488C7.528 21.936 6.97 20.11 7.65 18.44zm11.547 3.765c-.825.623-1.902.716-2.744.311 0 0-.229-.093-.439-.34-1.6-1.868-3.215-3.725-4.828-5.583 1.431.264 3-.438 3.805-1.712.81-1.212.777-2.942.016-4.154-.916-1.324-2.695-1.758-4.19-1.555-2.588.373-4.447 2.722-5.026 5.182-.595 2.799-.166 5.44.761 7.932a6.87 6.87 0 0 0 .856 1.538c-2.727-1.215-5.137-3.45-6.402-6.457-1.4-3.232-1.372-7.324.294-10.606C2.608 4.225 4.923 1.876 7.789.884c1.157-.49 2.47-.746 3.81-.786h.716c1.91.057 3.838.55 5.435 1.466 3.548 1.807 6.232 6.3 6.244 10.314.123 4.153-1.674 7.915-4.797 10.327z" }) + ] + } + ); +}); + +export { SiRelianceindustrieslimited as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.cjs new file mode 100644 index 000000000..c915d5477 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRemark = React__namespace.forwardRef(function SiRemark2({ title = "remark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.204 18.089V12.66q0-2.477 1.156-3.947 1.156-1.47 3.108-1.47.494 0 1.03.092.54.088.953.245V5.976q-.279-.122-.754-.195-.478-.073-1.007-.073-1.76 0-2.902.88-1.144.881-1.458 2.497h-.157V6.01H0v1.186h2.737V18.09Zm-3.959 0H8.04v-1.187H.245ZM19.1 7.109q1.604 0 2.507 1.095.904 1.091.904 3.02H15.6q0-1.94.93-3.027.93-1.088 2.569-1.088zm4.846 7.998h-1.458q-.28.884-1.133 1.378-.854.494-2.087.494-1.68 0-2.676-1.114-.991-1.118-.991-3.013v-.414H24v-.953q0-1.807-.578-3.074-.574-1.267-1.67-1.933-1.094-.67-2.652-.67-1.493 0-2.615.658-1.118.655-1.738 1.838-.617 1.183-.617 2.775v1.761q0 2.58 1.352 4.016 1.351 1.436 3.786 1.436 1.221 0 2.205-.394.98-.39 1.627-1.11.643-.717.846-1.681z" }) + ] + } + ); +}); + +exports.default = SiRemark; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.d.ts new file mode 100644 index 000000000..2f8a31927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRemark: IconType; +export { SiRemark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.mjs new file mode 100644 index 000000000..65014f328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemark.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRemark = React.forwardRef(function SiRemark2({ title = "remark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.204 18.089V12.66q0-2.477 1.156-3.947 1.156-1.47 3.108-1.47.494 0 1.03.092.54.088.953.245V5.976q-.279-.122-.754-.195-.478-.073-1.007-.073-1.76 0-2.902.88-1.144.881-1.458 2.497h-.157V6.01H0v1.186h2.737V18.09Zm-3.959 0H8.04v-1.187H.245ZM19.1 7.109q1.604 0 2.507 1.095.904 1.091.904 3.02H15.6q0-1.94.93-3.027.93-1.088 2.569-1.088zm4.846 7.998h-1.458q-.28.884-1.133 1.378-.854.494-2.087.494-1.68 0-2.676-1.114-.991-1.118-.991-3.013v-.414H24v-.953q0-1.807-.578-3.074-.574-1.267-1.67-1.933-1.094-.67-2.652-.67-1.493 0-2.615.658-1.118.655-1.738 1.838-.617 1.183-.617 2.775v1.761q0 2.58 1.352 4.016 1.351 1.436 3.786 1.436 1.221 0 2.205-.394.98-.39 1.627-1.11.643-.717.846-1.681z" }) + ] + } + ); +}); + +export { SiRemark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.cjs new file mode 100644 index 000000000..b95e62715 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D6001C"; +const SiRemedyentertainment = React__namespace.forwardRef(function SiRemedyentertainment2({ title = "Remedy Entertainment", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.717 5.245v6.613a3.309 3.309 0 0 0 3.306-3.307 3.31 3.31 0 0 0-3.306-3.306Zm-4.594 0h-3.45v6.613h3.455a3.309 3.309 0 0 0 3.306-3.307 3.312 3.312 0 0 0-3.311-3.306Zm11.448 9.915v-1.507a8.578 8.578 0 0 1-2.714 2.379l2.714 4.792v-2.878L24 24h-7.574l-2.709-4.789V24h-1.656l-3.907-6.897H5.673V24H0V0h9.123a8.5 8.5 0 0 1 4.589 1.337V0a8.551 8.551 0 0 1 6.859 3.441V1.939a8.527 8.527 0 0 1 3.133 6.612 8.516 8.516 0 0 1-3.133 6.609Z" }) + ] + } + ); +}); + +exports.default = SiRemedyentertainment; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.d.ts new file mode 100644 index 000000000..16c53a606 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D6001C"; +declare const SiRemedyentertainment: IconType; +export { SiRemedyentertainment as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.mjs new file mode 100644 index 000000000..06094bf4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemedyentertainment.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D6001C"; +const SiRemedyentertainment = React.forwardRef(function SiRemedyentertainment2({ title = "Remedy Entertainment", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.717 5.245v6.613a3.309 3.309 0 0 0 3.306-3.307 3.31 3.31 0 0 0-3.306-3.306Zm-4.594 0h-3.45v6.613h3.455a3.309 3.309 0 0 0 3.306-3.307 3.312 3.312 0 0 0-3.311-3.306Zm11.448 9.915v-1.507a8.578 8.578 0 0 1-2.714 2.379l2.714 4.792v-2.878L24 24h-7.574l-2.709-4.789V24h-1.656l-3.907-6.897H5.673V24H0V0h9.123a8.5 8.5 0 0 1 4.589 1.337V0a8.551 8.551 0 0 1 6.859 3.441V1.939a8.527 8.527 0 0 1 3.133 6.612 8.516 8.516 0 0 1-3.133 6.609Z" }) + ] + } + ); +}); + +export { SiRemedyentertainment as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.cjs new file mode 100644 index 000000000..24d8337dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRemix = React__namespace.forwardRef(function SiRemix2({ title = "Remix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.511 18.508c.216 2.773.216 4.073.216 5.492H15.31c0-.309.006-.592.011-.878.018-.892.036-1.821-.109-3.698-.19-2.747-1.374-3.358-3.55-3.358H1.574v-5h10.396c2.748 0 4.122-.835 4.122-3.049 0-1.946-1.374-3.125-4.122-3.125H1.573V0h11.541c6.221 0 9.313 2.938 9.313 7.632 0 3.511-2.176 5.8-5.114 6.182 2.48.497 3.93 1.909 4.198 4.694ZM1.573 24v-3.727h6.784c1.133 0 1.379.84 1.379 1.342V24Z" }) + ] + } + ); +}); + +exports.default = SiRemix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.d.ts new file mode 100644 index 000000000..26da2f86e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRemix: IconType; +export { SiRemix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.mjs new file mode 100644 index 000000000..c6525142d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRemix = React.forwardRef(function SiRemix2({ title = "Remix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.511 18.508c.216 2.773.216 4.073.216 5.492H15.31c0-.309.006-.592.011-.878.018-.892.036-1.821-.109-3.698-.19-2.747-1.374-3.358-3.55-3.358H1.574v-5h10.396c2.748 0 4.122-.835 4.122-3.049 0-1.946-1.374-3.125-4.122-3.125H1.573V0h11.541c6.221 0 9.313 2.938 9.313 7.632 0 3.511-2.176 5.8-5.114 6.182 2.48.497 3.93 1.909 4.198 4.694ZM1.573 24v-3.727h6.784c1.133 0 1.379.84 1.379 1.342V24Z" }) + ] + } + ); +}); + +export { SiRemix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.cjs new file mode 100644 index 000000000..9d38a1c07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#54616C"; +const SiRemovedotbg = React__namespace.forwardRef(function SiRemovedotbg2({ title = "remove.bg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.729 13.55-1.903-.995-9.134 4.776a1.497 1.497 0 0 1-1.383.002l-9.137-4.778-1.903.995a.5.5 0 0 0 0 .888l11.499 6.011a.495.495 0 0 0 .462 0l11.499-6.011a.5.5 0 0 0 0-.888zM.269 10.447l11.499 6.013a.495.495 0 0 0 .462 0l11.499-6.013a.5.5 0 0 0 0-.887l-11.5-6.012a.505.505 0 0 0-.462 0L.268 9.559a.5.5 0 0 0 .001.887z" }) + ] + } + ); +}); + +exports.default = SiRemovedotbg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.d.ts new file mode 100644 index 000000000..119bb254b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#54616C"; +declare const SiRemovedotbg: IconType; +export { SiRemovedotbg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.mjs new file mode 100644 index 000000000..1fdcf3552 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRemovedotbg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#54616C"; +const SiRemovedotbg = React.forwardRef(function SiRemovedotbg2({ title = "remove.bg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.729 13.55-1.903-.995-9.134 4.776a1.497 1.497 0 0 1-1.383.002l-9.137-4.778-1.903.995a.5.5 0 0 0 0 .888l11.499 6.011a.495.495 0 0 0 .462 0l11.499-6.011a.5.5 0 0 0 0-.888zM.269 10.447l11.499 6.013a.495.495 0 0 0 .462 0l11.499-6.013a.5.5 0 0 0 0-.887l-11.5-6.012a.505.505 0 0 0-.462 0L.268 9.559a.5.5 0 0 0 .001.887z" }) + ] + } + ); +}); + +export { SiRemovedotbg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.cjs new file mode 100644 index 000000000..b1919ba0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCC33"; +const SiRenault = React__namespace.forwardRef(function SiRenault2({ title = "Renault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.463 11.99l-4.097-7.692-.924 1.707 3.213 5.985-5.483 10.283L4.69 11.99 11.096 0H9.27L2.882 11.99 9.269 24h1.807zm3.655 0L14.711 0h-1.807L6.517 11.99l4.117 7.712.904-1.707-3.193-6.005 5.463-10.263L19.29 11.99 12.904 24h1.807Z" }) + ] + } + ); +}); + +exports.default = SiRenault; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.d.ts new file mode 100644 index 000000000..3bdb79ee7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCC33"; +declare const SiRenault: IconType; +export { SiRenault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.mjs new file mode 100644 index 000000000..aaf0aca6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenault.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCC33"; +const SiRenault = React.forwardRef(function SiRenault2({ title = "Renault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.463 11.99l-4.097-7.692-.924 1.707 3.213 5.985-5.483 10.283L4.69 11.99 11.096 0H9.27L2.882 11.99 9.269 24h1.807zm3.655 0L14.711 0h-1.807L6.517 11.99l4.117 7.712.904-1.707-3.193-6.005 5.463-10.263L19.29 11.99 12.904 24h1.807Z" }) + ] + } + ); +}); + +export { SiRenault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRender.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRender.cjs new file mode 100644 index 000000000..588fe24b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRender.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRender = React__namespace.forwardRef(function SiRender2({ title = "Render", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.263.007c-3.121-.147-5.744 2.109-6.192 5.082-.018.138-.045.272-.067.405-.696 3.703-3.936 6.507-7.827 6.507-1.388 0-2.691-.356-3.825-.979a.2024.2024 0 0 0-.302.178V24H12v-8.999c0-1.656 1.338-3 2.987-3h2.988c3.382 0 6.103-2.817 5.97-6.244-.12-3.084-2.61-5.603-5.682-5.75" }) + ] + } + ); +}); + +exports.default = SiRender; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRender.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRender.d.ts new file mode 100644 index 000000000..cc1a4ebb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRender.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRender: IconType; +export { SiRender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRender.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRender.mjs new file mode 100644 index 000000000..61b4d14b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRender.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRender = React.forwardRef(function SiRender2({ title = "Render", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.263.007c-3.121-.147-5.744 2.109-6.192 5.082-.018.138-.045.272-.067.405-.696 3.703-3.936 6.507-7.827 6.507-1.388 0-2.691-.356-3.825-.979a.2024.2024 0 0 0-.302.178V24H12v-8.999c0-1.656 1.338-3 2.987-3h2.988c3.382 0 6.103-2.817 5.97-6.244-.12-3.084-2.61-5.603-5.682-5.75" }) + ] + } + ); +}); + +export { SiRender as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.cjs new file mode 100644 index 000000000..4492015fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#308BE3"; +const SiRenovate = React__namespace.forwardRef(function SiRenovate2({ title = "Renovate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.598 0A1.7 1.7 0 0 0 6.37.465a1.71 1.71 0 0 0-.072 2.421l.002.002L8.91 5.65a.623.623 0 0 1-.025.891.625.625 0 0 1-.89-.027l-1.26-1.332a1.727 1.727 0 0 0-2.428-.073 1.71 1.71 0 0 0-.075 2.422v.002l1.88 1.988a.626.626 0 0 1-.026.891.623.623 0 0 1-.89-.027h-.003l-.685-.729-.014-.02a1.73 1.73 0 0 0-2.427-.073 1.71 1.71 0 0 0-.074 2.423l2.253 2.444.006.008.352.363q.004-.06.013-.117a1.75 1.75 0 0 0 .488 1.47l.141.143 1.29 1.28c.68.68 1.795.68 2.474 0l.523-.522 1.588-1.582 1.102-1.09 1.77-1.766 2.532-2.52v-.003a1.745 1.745 0 0 0 0-2.463l-.443-.442a1.295 1.295 0 0 1 1.576.202l1.057 1.054c.904.905.905 2.353.002 3.248v.002l-3.496 3.48h-.002c-.56.56-.56 1.477.004 2.03l.504.498-.676.674a.51.51 0 0 0-.031.69l.15.185h.008l2.488-2.49-.184-.15a.52.52 0 0 0-.357-.116.53.53 0 0 0-.334.15l-.648.647-.51-.504h-.002a.84.84 0 0 1 .004-1.201l3.494-3.48a2.88 2.88 0 0 0 .002-4.075l-1.06-1.056a1.88 1.88 0 0 0-1.33-.55c-.38 0-.76.116-1.083.343l-.564-.563a1.74 1.74 0 0 0-1.237-.508v-.002a2 2 0 0 0-.205.014l-.937-1.03-.008-.005-1.28-1.358L8.8.538A1.73 1.73 0 0 0 7.6.002ZM7.58.635a1.08 1.08 0 0 1 .756.344l2.63 2.778 1.278 1.353.744.82a1.7 1.7 0 0 0-.367.278l-3.91 3.895-3.606 3.587a1.8 1.8 0 0 0-.308.426l.01-.021-.094-.098-2.253-2.443-.004-.002a1.063 1.063 0 0 1 .042-1.522l.004-.002a1.08 1.08 0 0 1 1.527.041l.002.012.701.74a1.27 1.27 0 0 0 1.79.057 1.27 1.27 0 0 0 .056-1.79h-.002l-1.88-1.989v-.002a1.06 1.06 0 0 1 .042-1.522 1.08 1.08 0 0 1 1.533.045l1.256 1.33a1.27 1.27 0 0 0 1.791.057 1.27 1.27 0 0 0 .055-1.79h-.002l-2.61-2.763a1.06 1.06 0 0 1 .042-1.52A1.08 1.08 0 0 1 7.58.635m6.277 5.696c.143 0 .285.03.418.084a1.1 1.1 0 0 0-.418-.084m.44.096q.19.08.346.232a1.1 1.1 0 0 0-.346-.232m-9.52 7.732a1.8 1.8 0 0 0-.154.473 1.7 1.7 0 0 1 .154-.473m13.397 3.037-2.557 2.557 2.848 3.435q.065.075.14.15c.875.873 2.317.89 3.206 0a2.25 2.25 0 0 0-.152-3.33z" }) + ] + } + ); +}); + +exports.default = SiRenovate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.d.ts new file mode 100644 index 000000000..36fc0cf32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#308BE3"; +declare const SiRenovate: IconType; +export { SiRenovate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.mjs new file mode 100644 index 000000000..bf2e4c5c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenovate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#308BE3"; +const SiRenovate = React.forwardRef(function SiRenovate2({ title = "Renovate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.598 0A1.7 1.7 0 0 0 6.37.465a1.71 1.71 0 0 0-.072 2.421l.002.002L8.91 5.65a.623.623 0 0 1-.025.891.625.625 0 0 1-.89-.027l-1.26-1.332a1.727 1.727 0 0 0-2.428-.073 1.71 1.71 0 0 0-.075 2.422v.002l1.88 1.988a.626.626 0 0 1-.026.891.623.623 0 0 1-.89-.027h-.003l-.685-.729-.014-.02a1.73 1.73 0 0 0-2.427-.073 1.71 1.71 0 0 0-.074 2.423l2.253 2.444.006.008.352.363q.004-.06.013-.117a1.75 1.75 0 0 0 .488 1.47l.141.143 1.29 1.28c.68.68 1.795.68 2.474 0l.523-.522 1.588-1.582 1.102-1.09 1.77-1.766 2.532-2.52v-.003a1.745 1.745 0 0 0 0-2.463l-.443-.442a1.295 1.295 0 0 1 1.576.202l1.057 1.054c.904.905.905 2.353.002 3.248v.002l-3.496 3.48h-.002c-.56.56-.56 1.477.004 2.03l.504.498-.676.674a.51.51 0 0 0-.031.69l.15.185h.008l2.488-2.49-.184-.15a.52.52 0 0 0-.357-.116.53.53 0 0 0-.334.15l-.648.647-.51-.504h-.002a.84.84 0 0 1 .004-1.201l3.494-3.48a2.88 2.88 0 0 0 .002-4.075l-1.06-1.056a1.88 1.88 0 0 0-1.33-.55c-.38 0-.76.116-1.083.343l-.564-.563a1.74 1.74 0 0 0-1.237-.508v-.002a2 2 0 0 0-.205.014l-.937-1.03-.008-.005-1.28-1.358L8.8.538A1.73 1.73 0 0 0 7.6.002ZM7.58.635a1.08 1.08 0 0 1 .756.344l2.63 2.778 1.278 1.353.744.82a1.7 1.7 0 0 0-.367.278l-3.91 3.895-3.606 3.587a1.8 1.8 0 0 0-.308.426l.01-.021-.094-.098-2.253-2.443-.004-.002a1.063 1.063 0 0 1 .042-1.522l.004-.002a1.08 1.08 0 0 1 1.527.041l.002.012.701.74a1.27 1.27 0 0 0 1.79.057 1.27 1.27 0 0 0 .056-1.79h-.002l-1.88-1.989v-.002a1.06 1.06 0 0 1 .042-1.522 1.08 1.08 0 0 1 1.533.045l1.256 1.33a1.27 1.27 0 0 0 1.791.057 1.27 1.27 0 0 0 .055-1.79h-.002l-2.61-2.763a1.06 1.06 0 0 1 .042-1.52A1.08 1.08 0 0 1 7.58.635m6.277 5.696c.143 0 .285.03.418.084a1.1 1.1 0 0 0-.418-.084m.44.096q.19.08.346.232a1.1 1.1 0 0 0-.346-.232m-9.52 7.732a1.8 1.8 0 0 0-.154.473 1.7 1.7 0 0 1 .154-.473m13.397 3.037-2.557 2.557 2.848 3.435q.065.075.14.15c.875.873 2.317.89 3.206 0a2.25 2.25 0 0 0-.152-3.33z" }) + ] + } + ); +}); + +export { SiRenovate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.cjs new file mode 100644 index 000000000..ce35f6040 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7F7F"; +const SiRenpy = React__namespace.forwardRef(function SiRenpy2({ title = "RenPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.166 0S6.908 1.035 6.25 4.744C4.885 5.647 4.194 6.368 4.19 6.66c0 .023.02.042.031.063.115-.054 5.565-2.614 9.422-2.967a8.31 8.31 0 01.707-.03c1.8-.007 4.532.365 4.569.37-.063-.269-1.722-1.02-2.817-1.217C13.504.009 10.166 0 10.166 0zm8.754 4.096c-.039-.003-3.665-.261-5.342-.096-3.94.388-9.242 2.675-9.356 2.725.16.27 1.288.38 1.848.384-.085 1.63-.804 4.532-.674 4.553.09.014.295-.547.295-.547s-.105.322-.201.692c.404-.02.597-.04.851-.018.057.005.143.01.184.078.134-.26.137-.494.137-.494s.056.211.043.494c.096-.082.209-.316.209-.316s-.009.201-.018.324c.08.048.213.033.213.033a6.8 6.8 0 01-.092.592c-.062.312-.16.488-.4.803-.297.002-.617.244-.748.57-.02.17.246.37.246.37l-.39 1.896a1.743 1.743 0 00-.583.937s-.078.912-.013 1.23c.04.202 1 .846 1.671.89.397.025 1.19-.618 1.19-.618l.506-.049c.276.346.528.441.931.553l.11.34s-.182.149-.182.26c0 .11.197.214.197.214s-1.108.156-1.074 1.53c.018.728 1.01 1.074 1.824 1.105.855.033 2.012-.513 2.012-.513s.184.066.412.048c.262-.02.549-.205.549-.205s-.426.331-.436 1.268c-.002.25.172.537.364.7.114.095.3.17.412.171.173.001-.359-.495-.375-.813-.028-.541.69-.626 1.135-.626.471-.001 1.812.614 2.82.626 1.57.02 2.583-1.212 2.613-2.16.037-1.14-.951-1.834-1.304-2.21-.052-.233-.324-.722-.604-.782-.487-.104-.963.09-.963.09s-.112-.03-.223-.088c.794-1.087.876-1.977.887-2.728.032-2.214-1.539-3.268-1.762-3.39.371-.38.53-.64.622-.847a27.5 27.5 0 00-.18 1.051l.369-.326v.379s.44-.45.504-.914c.039.377.021.914.021.914s.552-.561.737-1.92c.035.862.066 1.508.066 1.508s.29-1.837.192-3.75c-.048-.928-.144-2.02-.47-2.746.825-.647 1.245-.959 1.227-1.16 0-.004-.007-.009-.007-.012zM10.504.25s.961.233 1.406.578c.737.573 1.562 1.75 1.562 1.75s-.98-1.165-1.625-1.625C11.451.67 10.504.25 10.504.25zm-.516.031s-.72.785-1 1.235c-.42.672-1 2.156-1 2.156s.358-1.511.766-2.156C9.064 1.024 9.988.28 9.988.28zm3.914 2.56c.813.013 1.465.054 1.465.054s-2.596.027-3.867.253C9.48 3.508 6.77 4.686 6.77 4.686S9.273 3.36 11.478 2.96c.638-.116 1.611-.132 2.424-.12zm-3.031 3.07s-.122.283-.23.552c-.056-.01-.112-.027-.165-.026.19-.26.395-.527.395-.527zm1.293.01s-.513 1.13-.598 2.433c.17-.534.299-.83.299-.83s-.064.815.12 1.425c.131-1.169.774-1.955.774-1.955s-.209.81-.12 1.37c.107-.826.398-1.69.398-1.69s-.187 1.808.209 2.64c.385-.368.718-1.193.718-1.193s.074.246.045.508c.506-.967.452-2.574.452-2.574s.122.406.26.998c-.19.13-.315.271-.315.271s.136-.113.326-.215c.08.347.155.75.223 1.176-.005 0-.009-.004-.014-.004-.62-.006-.944.26-1.047.594-.288.935.01 1.18.453 1.18.836-.001.961-1.149.961-1.149s.119.33.094.57c-.01.104-.102.274-.102.274l.336-.242s-.092-.74-.394-1.069c.145-.587.24-1.068.285-1.42.05.023.097.052.143.085.063.634.133 1.446.117 2.066.171-.286.31-.586.31-.586l.01.52s-.344.88-.906 2.033c-1.185.85-1.903 1.111-3.17 1.181-.478.027-1.305-.175-1.305-.175s-.556-1.118-1.037-1.106c-.288.007-.719.22-.719.22s-.542-1.166-.232-4.009c.041-.38.674-.928.674-.928s-.258.515-.414 1.284a5.42 5.42 0 01-.116.14s.093-.094.112-.115a5.608 5.608 0 00-.102.713c.123-.289.29-.541.29-.541s-.064.57.12.84c.355-.915.75-1.59 1.063-2.053.013-.003.028-.012.04-.014.053-.009.122.01.183.016a5.67 5.67 0 00-.354 1.531c-.886.086-1.043 1.293-1.043 1.293l.324.309s-.104-.216-.105-.34c.273.375.461.746 1.025.74 1.124-.013.951-1.56.951-1.56l.07.023s-.376-.51-1.171-.477l-.006.002a8.303 8.303 0 01.851-1.384c.128.051.16.068.252.115-.154.395-.29.859-.27 1.312.138-.467.311-.861.48-1.209l.074.037-.069-.048a9.273 9.273 0 01.567-1.012zm-.344.013s-.222.368-.42.863c-.08-.057-.105-.075-.219-.139.362-.464.639-.724.639-.724zm3.767.375l.067.644a.698.698 0 00-.117-.055c.031-.307.05-.59.05-.59zm-4.539 2.105c.068.002.135.05.17.123.05.1.024.214-.056.252-.08.04-.184-.01-.233-.111-.049-.1-.023-.214.057-.252a.133.133 0 01.062-.012zm4.04.106c.058.002.121.05.16.123.053.1.042.211-.024.25-.065.038-.162-.01-.215-.11-.053-.1-.042-.211.024-.25a.098.098 0 01.054-.013zm-3.83.714s-.004.734-.805.793c-.556.042-.805-.445-.805-.445l.106.04s.077-.066.156-.028c.089.043.097.168.097.168s.06.075.399.066c.633-.016.851-.594.851-.594zm3.824.102s-.145.637-.72.648c-.606.012-.48-.527-.48-.527s.058.343.5.379c.428.035.7-.5.7-.5zm-2.578 1.5c-.239-.003-.704.125-.704.125l.157.453-.016-.36s.347-.075.523-.077c.158-.003.47.054.47.054l-.063.406.25-.476s-.408-.123-.618-.125zm-2.915.318c.529-.084 1.037 1.046 1.133 1.166.174.217.616.38.672.696.064.359-.46.992-.46.992s-.046-.26-.212-.352c.102.179.102.446.102.446s-.103.755-1.406.976c-1.3.22-1.557-.389-1.557-.389s-.117-.312-.035-.691c-.157.168-.088.541-.088.541s-.828-.338-.943-.717c-.09-.295.188-.58.265-.879.133-.514.024-1.275.602-1.486.329-.12.848.067 1.093.022.285-.054.413-.257.834-.325zm.008.244c-.29.017-.447.375-.492.72-.049.374.14 1.124.14 1.124s-.104-.738-.046-1.101c.052-.33.177-.575.414-.579.446-.006.625.344.68.72.05.342.023 1.038.023 1.038s.095-.72.055-1.078c-.044-.382-.3-.87-.774-.844zm-1.726.227c-.355.066-.533.52-.532.941.002.478.547 1.317.547 1.317s-.414-.843-.414-1.297c0-.474.111-.744.407-.813.3-.069.584.2.734.563.129.312.101 1.008.101 1.008s.062-.714-.023-1.055c-.1-.402-.474-.728-.82-.664zm7.156.32c1.36.023 2.372 1.958 2.365 2.94-.014 2.137-.426 2.398-1.25 3.58-1.214 1.742-4.018 3.821-5.699 3.9-1.064.05-1.817-.482-1.814-.912.006-1.313.996-1.441.996-1.441 2.425-.29 2.477-.52 4.117-2.2 1.587-1.625 1.808-3.87.273-4.552l-.379-.135s.227-1.2 1.39-1.18zm-1.022.098l.028.178s-.382.309-.477.867l-.783-.373.016-.315c.56-.016 1.216-.357 1.216-.357zm-3.046.314l.347.067-.021.187zm.486.051s.339.052.508.055c.22.003.68-.055.68-.055l.017.457-.271.592-.977-.713zm-1.846.297c-.104 0-.188.106-.187.236 0 .13.084.235.187.235.104 0 .19-.104.19-.235 0-.13-.085-.237-.19-.236zm.059.078c.05 0 .091.043.092.096 0 .054-.041.098-.092.098s-.093-.044-.092-.098c0-.053.042-.096.092-.096zm-1.307.164a.153.153 0 00-.056.012c-.098.037-.14.166-.092.287.046.121.162.19.26.152.098-.035.14-.165.093-.287-.036-.097-.12-.164-.205-.164zm.05.059c.041-.004.08.02.097.06.02.051-.003.108-.051.125-.048.02-.102-.007-.121-.058-.02-.05.003-.105.05-.123a.087.087 0 01.026-.004zm4.423.037l.732.768.254.199.22-.586s.868.283.89 1.662l-1.127-.623-.077.182 1.19.695c-.02.162-.054.325-.108.49-.02-.03-.04-.068-.06-.072-.562.133-1.453.492-1.453.492l.008 1.834c-.154.166-.308.337-.461.49l-.073-2.515.207-.586c-.042-.06-.314-.449-.377-.702-.029-.118.033-.245.004-.363-.035-.144-.186-.246-.209-.392-.017-.117-.014-.308.067-.348.044-.022.127.027.127.076 0 .088-.08.096-.082.154-.008.193.19.343.23.532.025.113-.022.235.006.347.049.197.222.479.28.569l.519-1.465-.695-.748-.352.375zm-5.953.053s-.26.496-.182.736c.124.381 1.002.84 1.002.84s-.59.247-.437 1.148c.12.714 1.125.633 1.125.633s.048.538-.004.932c-.055.407-.383.845-.383.845s.408-.413.474-.828c.027-.166.018-.5.018-.5s.093.16.125.246c.07.188.14.582.14.582s-.017-.385-.054-.574a6.832 6.832 0 00-.207-.687l.363-.047s.08.25.344.285c.161.022.488.004.488.004s.004.3-.05.457c-.095.27-.47.75-.47.75s-.255.372-.456.426c-.265.07-.682.025-.682.025s-.82.69-1.275.69c-.424 0-1.418-.674-1.508-.823-.105-.173.014-.723.01-1.084-.005-.327.597-.949.597-.949l.42-1.96s-.294-.213-.25-.348c.157-.478.645-.489.645-.489zm4.613.166l.758.254-.778-.16zm-.36.57l1.725 1.818-.178.43.075 2.584c-1.202 1.182-3.051 1.203-3.051 1.203s-.202-.063-.217-.183c-.013-.106.158-.235.158-.235-.171-.552-.21-.736-.224-1.34l-.155-.144s.312-.425.448-.701c.088-.18.075-.327.072-.598 0 0 .373-.11.535-.215.251-.162.201-.385.201-.385s.262.06.602-.015a.89.89 0 00.678-.856c.01-.811-.883-.953-.883-.953zm-1.285.035a.273.273 0 00-.103.526.273.273 0 01.209-.45c.035.001.07.008.101.022a.273.273 0 00-.207-.098zm-1.148.227a.273.273 0 00-.273.273c0 .11.067.208.168.25a.273.273 0 01.21-.447c.035 0 .07.008.102.021a.273.273 0 00-.207-.097zm2.135.263s.699.024.857.76c.081.377-.301.828-.767.881-.111.013-.409-.037-.409-.037s-.054-.114-.154-.115c-.227-.003-.342.138-.72.185-.3.038-.386-.011-.575.022-.214.037-.267.207-.267.207s-.325.063-.524.066c-.771.014-.883-.294-.941-.74-.083-.634.486-.797.486-.797s.025.108.35.258l-.23.068.06.264-.215.066.027.287.254-.027.045.26.266-.012-.051-.303.227-.05.025-.442c.218.039.474.063.826.033.345-.028.602-.147.82-.28a.671.671 0 00-.056.269c0 .38.316.687.707.687.39 0 .707-.308.707-.687a.697.697 0 00-.87-.668c.075-.089.122-.155.122-.155zm3 .188l1.1.615c0 .028-.009.058-.01.086l-1.13-.644zm-2.807.037c.05.002.1.02.137.06l.01.01a.198.198 0 01-.008.28l-.477.447a.198.198 0 01-.279-.01l-.008-.01a.195.195 0 01.008-.277l.094-.09.033.074a.15.15 0 10.185.147.15.15 0 00-.125-.147l.01-.17.28-.261a.195.195 0 01.14-.053zm-.006.059a.15.15 0 10.016.3.15.15 0 00-.016-.3zm.244.34c.05.001.1.02.137.06l.01.01a.198.198 0 01-.008.28l-.476.446a.198.198 0 01-.28-.01l-.008-.01a.195.195 0 01.008-.277l.477-.447a.195.195 0 01.14-.053zm-.007.058a.15.15 0 10.002 0zm-3.008.047l.136.232-.109.024zm1.537.35a.081.081 0 00-.049.04l-.062.118a.087.087 0 00.035.117.088.088 0 00.117-.037l.06-.117a.085.085 0 00-.035-.116.089.089 0 00-.066-.006zm1.014.025a.15.15 0 10.002 0zm-1.483.057a.088.088 0 00-.05.043l-.061.117a.085.085 0 00.035.115.085.085 0 00.115-.035l.063-.12a.085.085 0 00-.037-.115.084.084 0 00-.065-.005zm5.397.357c.024.008.04.04.054.07a4.003 4.003 0 01-.285.608l-.765.279s-.015-.196-.028-.293c-.02-.148-.281-.172-.281-.172s.896-.376 1.305-.492zm-4.43.045c.06-.002.11.016.14.064.154.25-.203.55-.722.637-.66.111-.89-.2-.73-.437.09-.137.498-.035.675-.059.17-.023.455-.2.637-.205zm3.125.54c.077.01.193.031.197.124.007.138.028.414.028.414l.74-.27a7.746 7.746 0 01-.576.78l-.065-.365v.449c-.11.132-.216.258-.332.385zm-2.006.032c-.324.004-.646.04-.973.108-.128.183-.072.564-.072.564l2.133-.105s-.014-.334-.106-.487a5.44 5.44 0 00-.982-.08zm-.076.09c.263-.007.551.008.992.05.068.152.067.34.067.34l-1.934.087s-.014-.204.035-.387c.339-.053.577-.083.84-.09zm1.066.59s-.11.838-.023 1.32c-.462.113-1.205.137-1.828.11-.056-.511-.086-1.22-.086-1.22s-.08.55-.008 1.36c.714-.004 1.466-.006 2.031-.14-.067-.742-.086-1.43-.086-1.43zm-1.222.246s-.03.34-.028.512c.002.188.04.562.04.562s.045-.37.042-.555c-.002-.174-.054-.519-.054-.519zm.484.098s-.043.285-.043.43c0 .147.047.44.047.44s.028-.29.027-.437c0-.145-.031-.433-.031-.433zm-2.465.539l.133.105c-.003.25.006.502.098.79-.258-.034-.617-.217-.782-.45.298-.122.346-.167.551-.445zm8.694.078c.25.139.459.393.457.611-.003.254-.264-.15-.557-.404.233.249.397.632.215.637-.238.006-.255-.311-.602-.514-.184-.107-.496-.152-.496-.152s.371-.174.983-.178zm-1.073.273c.741-.002.851.642 1.137.64.313-.003.172-.28.172-.28s.106.151.21.136c0 0 1.301 1.029 1.321 1.989.022 1.08-1.257 2.173-2.312 2.164-1.381-.02-2.043-.67-3.008-.68-.725.034-1.213.328-1.227.727-.006.193.174.558.174.558s-.306-.258-.322-.527c-.041-.738.523-1.603 1.402-1.666.953-.11 1.383.232 2.613.322.48.035 1.162-.482 1.149-.766-.038-.823-1.73-.808-1.73-.808l.343-.309c-.023-1.231-.637-1.086-.637-1.086l.36-.406s.21-.007.355-.008zm-.808.516c.161-.025.325 0 .453.187.138.203.176.746.176.746s-.448.437-.735.547c-.01-.128-.007-.244-.023-.402-.013-.123-.172-.28-.362-.309v-.171c.175-.192.341-.392.49-.598zm-.563.674v1.513c-.136.058-.245.115-.414.172-.255.087-.544-.005-.805.063-.285.073-.53.26-.804.367-.409.16-.95.176-.95.176s1.708-.936 2.973-2.291zm.072.16c.127.025.282.153.288.256.012.26.022.344.03.504.158-.017.427-.262.427-.262s.042.256-.055.406c-.081.125-.349.271-.69.42zm.85.549s1.6.075 1.602.71c0 .4-.705.64-1.125.641-.571.002-1.54-.344-1.54-.344s.913-.39 1.032-.574c.097-.151.031-.433.031-.433z" }) + ] + } + ); +}); + +exports.default = SiRenpy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.d.ts new file mode 100644 index 000000000..d0cce1eda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7F7F"; +declare const SiRenpy: IconType; +export { SiRenpy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.mjs new file mode 100644 index 000000000..94fd377c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenpy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7F7F"; +const SiRenpy = React.forwardRef(function SiRenpy2({ title = "RenPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.166 0S6.908 1.035 6.25 4.744C4.885 5.647 4.194 6.368 4.19 6.66c0 .023.02.042.031.063.115-.054 5.565-2.614 9.422-2.967a8.31 8.31 0 01.707-.03c1.8-.007 4.532.365 4.569.37-.063-.269-1.722-1.02-2.817-1.217C13.504.009 10.166 0 10.166 0zm8.754 4.096c-.039-.003-3.665-.261-5.342-.096-3.94.388-9.242 2.675-9.356 2.725.16.27 1.288.38 1.848.384-.085 1.63-.804 4.532-.674 4.553.09.014.295-.547.295-.547s-.105.322-.201.692c.404-.02.597-.04.851-.018.057.005.143.01.184.078.134-.26.137-.494.137-.494s.056.211.043.494c.096-.082.209-.316.209-.316s-.009.201-.018.324c.08.048.213.033.213.033a6.8 6.8 0 01-.092.592c-.062.312-.16.488-.4.803-.297.002-.617.244-.748.57-.02.17.246.37.246.37l-.39 1.896a1.743 1.743 0 00-.583.937s-.078.912-.013 1.23c.04.202 1 .846 1.671.89.397.025 1.19-.618 1.19-.618l.506-.049c.276.346.528.441.931.553l.11.34s-.182.149-.182.26c0 .11.197.214.197.214s-1.108.156-1.074 1.53c.018.728 1.01 1.074 1.824 1.105.855.033 2.012-.513 2.012-.513s.184.066.412.048c.262-.02.549-.205.549-.205s-.426.331-.436 1.268c-.002.25.172.537.364.7.114.095.3.17.412.171.173.001-.359-.495-.375-.813-.028-.541.69-.626 1.135-.626.471-.001 1.812.614 2.82.626 1.57.02 2.583-1.212 2.613-2.16.037-1.14-.951-1.834-1.304-2.21-.052-.233-.324-.722-.604-.782-.487-.104-.963.09-.963.09s-.112-.03-.223-.088c.794-1.087.876-1.977.887-2.728.032-2.214-1.539-3.268-1.762-3.39.371-.38.53-.64.622-.847a27.5 27.5 0 00-.18 1.051l.369-.326v.379s.44-.45.504-.914c.039.377.021.914.021.914s.552-.561.737-1.92c.035.862.066 1.508.066 1.508s.29-1.837.192-3.75c-.048-.928-.144-2.02-.47-2.746.825-.647 1.245-.959 1.227-1.16 0-.004-.007-.009-.007-.012zM10.504.25s.961.233 1.406.578c.737.573 1.562 1.75 1.562 1.75s-.98-1.165-1.625-1.625C11.451.67 10.504.25 10.504.25zm-.516.031s-.72.785-1 1.235c-.42.672-1 2.156-1 2.156s.358-1.511.766-2.156C9.064 1.024 9.988.28 9.988.28zm3.914 2.56c.813.013 1.465.054 1.465.054s-2.596.027-3.867.253C9.48 3.508 6.77 4.686 6.77 4.686S9.273 3.36 11.478 2.96c.638-.116 1.611-.132 2.424-.12zm-3.031 3.07s-.122.283-.23.552c-.056-.01-.112-.027-.165-.026.19-.26.395-.527.395-.527zm1.293.01s-.513 1.13-.598 2.433c.17-.534.299-.83.299-.83s-.064.815.12 1.425c.131-1.169.774-1.955.774-1.955s-.209.81-.12 1.37c.107-.826.398-1.69.398-1.69s-.187 1.808.209 2.64c.385-.368.718-1.193.718-1.193s.074.246.045.508c.506-.967.452-2.574.452-2.574s.122.406.26.998c-.19.13-.315.271-.315.271s.136-.113.326-.215c.08.347.155.75.223 1.176-.005 0-.009-.004-.014-.004-.62-.006-.944.26-1.047.594-.288.935.01 1.18.453 1.18.836-.001.961-1.149.961-1.149s.119.33.094.57c-.01.104-.102.274-.102.274l.336-.242s-.092-.74-.394-1.069c.145-.587.24-1.068.285-1.42.05.023.097.052.143.085.063.634.133 1.446.117 2.066.171-.286.31-.586.31-.586l.01.52s-.344.88-.906 2.033c-1.185.85-1.903 1.111-3.17 1.181-.478.027-1.305-.175-1.305-.175s-.556-1.118-1.037-1.106c-.288.007-.719.22-.719.22s-.542-1.166-.232-4.009c.041-.38.674-.928.674-.928s-.258.515-.414 1.284a5.42 5.42 0 01-.116.14s.093-.094.112-.115a5.608 5.608 0 00-.102.713c.123-.289.29-.541.29-.541s-.064.57.12.84c.355-.915.75-1.59 1.063-2.053.013-.003.028-.012.04-.014.053-.009.122.01.183.016a5.67 5.67 0 00-.354 1.531c-.886.086-1.043 1.293-1.043 1.293l.324.309s-.104-.216-.105-.34c.273.375.461.746 1.025.74 1.124-.013.951-1.56.951-1.56l.07.023s-.376-.51-1.171-.477l-.006.002a8.303 8.303 0 01.851-1.384c.128.051.16.068.252.115-.154.395-.29.859-.27 1.312.138-.467.311-.861.48-1.209l.074.037-.069-.048a9.273 9.273 0 01.567-1.012zm-.344.013s-.222.368-.42.863c-.08-.057-.105-.075-.219-.139.362-.464.639-.724.639-.724zm3.767.375l.067.644a.698.698 0 00-.117-.055c.031-.307.05-.59.05-.59zm-4.539 2.105c.068.002.135.05.17.123.05.1.024.214-.056.252-.08.04-.184-.01-.233-.111-.049-.1-.023-.214.057-.252a.133.133 0 01.062-.012zm4.04.106c.058.002.121.05.16.123.053.1.042.211-.024.25-.065.038-.162-.01-.215-.11-.053-.1-.042-.211.024-.25a.098.098 0 01.054-.013zm-3.83.714s-.004.734-.805.793c-.556.042-.805-.445-.805-.445l.106.04s.077-.066.156-.028c.089.043.097.168.097.168s.06.075.399.066c.633-.016.851-.594.851-.594zm3.824.102s-.145.637-.72.648c-.606.012-.48-.527-.48-.527s.058.343.5.379c.428.035.7-.5.7-.5zm-2.578 1.5c-.239-.003-.704.125-.704.125l.157.453-.016-.36s.347-.075.523-.077c.158-.003.47.054.47.054l-.063.406.25-.476s-.408-.123-.618-.125zm-2.915.318c.529-.084 1.037 1.046 1.133 1.166.174.217.616.38.672.696.064.359-.46.992-.46.992s-.046-.26-.212-.352c.102.179.102.446.102.446s-.103.755-1.406.976c-1.3.22-1.557-.389-1.557-.389s-.117-.312-.035-.691c-.157.168-.088.541-.088.541s-.828-.338-.943-.717c-.09-.295.188-.58.265-.879.133-.514.024-1.275.602-1.486.329-.12.848.067 1.093.022.285-.054.413-.257.834-.325zm.008.244c-.29.017-.447.375-.492.72-.049.374.14 1.124.14 1.124s-.104-.738-.046-1.101c.052-.33.177-.575.414-.579.446-.006.625.344.68.72.05.342.023 1.038.023 1.038s.095-.72.055-1.078c-.044-.382-.3-.87-.774-.844zm-1.726.227c-.355.066-.533.52-.532.941.002.478.547 1.317.547 1.317s-.414-.843-.414-1.297c0-.474.111-.744.407-.813.3-.069.584.2.734.563.129.312.101 1.008.101 1.008s.062-.714-.023-1.055c-.1-.402-.474-.728-.82-.664zm7.156.32c1.36.023 2.372 1.958 2.365 2.94-.014 2.137-.426 2.398-1.25 3.58-1.214 1.742-4.018 3.821-5.699 3.9-1.064.05-1.817-.482-1.814-.912.006-1.313.996-1.441.996-1.441 2.425-.29 2.477-.52 4.117-2.2 1.587-1.625 1.808-3.87.273-4.552l-.379-.135s.227-1.2 1.39-1.18zm-1.022.098l.028.178s-.382.309-.477.867l-.783-.373.016-.315c.56-.016 1.216-.357 1.216-.357zm-3.046.314l.347.067-.021.187zm.486.051s.339.052.508.055c.22.003.68-.055.68-.055l.017.457-.271.592-.977-.713zm-1.846.297c-.104 0-.188.106-.187.236 0 .13.084.235.187.235.104 0 .19-.104.19-.235 0-.13-.085-.237-.19-.236zm.059.078c.05 0 .091.043.092.096 0 .054-.041.098-.092.098s-.093-.044-.092-.098c0-.053.042-.096.092-.096zm-1.307.164a.153.153 0 00-.056.012c-.098.037-.14.166-.092.287.046.121.162.19.26.152.098-.035.14-.165.093-.287-.036-.097-.12-.164-.205-.164zm.05.059c.041-.004.08.02.097.06.02.051-.003.108-.051.125-.048.02-.102-.007-.121-.058-.02-.05.003-.105.05-.123a.087.087 0 01.026-.004zm4.423.037l.732.768.254.199.22-.586s.868.283.89 1.662l-1.127-.623-.077.182 1.19.695c-.02.162-.054.325-.108.49-.02-.03-.04-.068-.06-.072-.562.133-1.453.492-1.453.492l.008 1.834c-.154.166-.308.337-.461.49l-.073-2.515.207-.586c-.042-.06-.314-.449-.377-.702-.029-.118.033-.245.004-.363-.035-.144-.186-.246-.209-.392-.017-.117-.014-.308.067-.348.044-.022.127.027.127.076 0 .088-.08.096-.082.154-.008.193.19.343.23.532.025.113-.022.235.006.347.049.197.222.479.28.569l.519-1.465-.695-.748-.352.375zm-5.953.053s-.26.496-.182.736c.124.381 1.002.84 1.002.84s-.59.247-.437 1.148c.12.714 1.125.633 1.125.633s.048.538-.004.932c-.055.407-.383.845-.383.845s.408-.413.474-.828c.027-.166.018-.5.018-.5s.093.16.125.246c.07.188.14.582.14.582s-.017-.385-.054-.574a6.832 6.832 0 00-.207-.687l.363-.047s.08.25.344.285c.161.022.488.004.488.004s.004.3-.05.457c-.095.27-.47.75-.47.75s-.255.372-.456.426c-.265.07-.682.025-.682.025s-.82.69-1.275.69c-.424 0-1.418-.674-1.508-.823-.105-.173.014-.723.01-1.084-.005-.327.597-.949.597-.949l.42-1.96s-.294-.213-.25-.348c.157-.478.645-.489.645-.489zm4.613.166l.758.254-.778-.16zm-.36.57l1.725 1.818-.178.43.075 2.584c-1.202 1.182-3.051 1.203-3.051 1.203s-.202-.063-.217-.183c-.013-.106.158-.235.158-.235-.171-.552-.21-.736-.224-1.34l-.155-.144s.312-.425.448-.701c.088-.18.075-.327.072-.598 0 0 .373-.11.535-.215.251-.162.201-.385.201-.385s.262.06.602-.015a.89.89 0 00.678-.856c.01-.811-.883-.953-.883-.953zm-1.285.035a.273.273 0 00-.103.526.273.273 0 01.209-.45c.035.001.07.008.101.022a.273.273 0 00-.207-.098zm-1.148.227a.273.273 0 00-.273.273c0 .11.067.208.168.25a.273.273 0 01.21-.447c.035 0 .07.008.102.021a.273.273 0 00-.207-.097zm2.135.263s.699.024.857.76c.081.377-.301.828-.767.881-.111.013-.409-.037-.409-.037s-.054-.114-.154-.115c-.227-.003-.342.138-.72.185-.3.038-.386-.011-.575.022-.214.037-.267.207-.267.207s-.325.063-.524.066c-.771.014-.883-.294-.941-.74-.083-.634.486-.797.486-.797s.025.108.35.258l-.23.068.06.264-.215.066.027.287.254-.027.045.26.266-.012-.051-.303.227-.05.025-.442c.218.039.474.063.826.033.345-.028.602-.147.82-.28a.671.671 0 00-.056.269c0 .38.316.687.707.687.39 0 .707-.308.707-.687a.697.697 0 00-.87-.668c.075-.089.122-.155.122-.155zm3 .188l1.1.615c0 .028-.009.058-.01.086l-1.13-.644zm-2.807.037c.05.002.1.02.137.06l.01.01a.198.198 0 01-.008.28l-.477.447a.198.198 0 01-.279-.01l-.008-.01a.195.195 0 01.008-.277l.094-.09.033.074a.15.15 0 10.185.147.15.15 0 00-.125-.147l.01-.17.28-.261a.195.195 0 01.14-.053zm-.006.059a.15.15 0 10.016.3.15.15 0 00-.016-.3zm.244.34c.05.001.1.02.137.06l.01.01a.198.198 0 01-.008.28l-.476.446a.198.198 0 01-.28-.01l-.008-.01a.195.195 0 01.008-.277l.477-.447a.195.195 0 01.14-.053zm-.007.058a.15.15 0 10.002 0zm-3.008.047l.136.232-.109.024zm1.537.35a.081.081 0 00-.049.04l-.062.118a.087.087 0 00.035.117.088.088 0 00.117-.037l.06-.117a.085.085 0 00-.035-.116.089.089 0 00-.066-.006zm1.014.025a.15.15 0 10.002 0zm-1.483.057a.088.088 0 00-.05.043l-.061.117a.085.085 0 00.035.115.085.085 0 00.115-.035l.063-.12a.085.085 0 00-.037-.115.084.084 0 00-.065-.005zm5.397.357c.024.008.04.04.054.07a4.003 4.003 0 01-.285.608l-.765.279s-.015-.196-.028-.293c-.02-.148-.281-.172-.281-.172s.896-.376 1.305-.492zm-4.43.045c.06-.002.11.016.14.064.154.25-.203.55-.722.637-.66.111-.89-.2-.73-.437.09-.137.498-.035.675-.059.17-.023.455-.2.637-.205zm3.125.54c.077.01.193.031.197.124.007.138.028.414.028.414l.74-.27a7.746 7.746 0 01-.576.78l-.065-.365v.449c-.11.132-.216.258-.332.385zm-2.006.032c-.324.004-.646.04-.973.108-.128.183-.072.564-.072.564l2.133-.105s-.014-.334-.106-.487a5.44 5.44 0 00-.982-.08zm-.076.09c.263-.007.551.008.992.05.068.152.067.34.067.34l-1.934.087s-.014-.204.035-.387c.339-.053.577-.083.84-.09zm1.066.59s-.11.838-.023 1.32c-.462.113-1.205.137-1.828.11-.056-.511-.086-1.22-.086-1.22s-.08.55-.008 1.36c.714-.004 1.466-.006 2.031-.14-.067-.742-.086-1.43-.086-1.43zm-1.222.246s-.03.34-.028.512c.002.188.04.562.04.562s.045-.37.042-.555c-.002-.174-.054-.519-.054-.519zm.484.098s-.043.285-.043.43c0 .147.047.44.047.44s.028-.29.027-.437c0-.145-.031-.433-.031-.433zm-2.465.539l.133.105c-.003.25.006.502.098.79-.258-.034-.617-.217-.782-.45.298-.122.346-.167.551-.445zm8.694.078c.25.139.459.393.457.611-.003.254-.264-.15-.557-.404.233.249.397.632.215.637-.238.006-.255-.311-.602-.514-.184-.107-.496-.152-.496-.152s.371-.174.983-.178zm-1.073.273c.741-.002.851.642 1.137.64.313-.003.172-.28.172-.28s.106.151.21.136c0 0 1.301 1.029 1.321 1.989.022 1.08-1.257 2.173-2.312 2.164-1.381-.02-2.043-.67-3.008-.68-.725.034-1.213.328-1.227.727-.006.193.174.558.174.558s-.306-.258-.322-.527c-.041-.738.523-1.603 1.402-1.666.953-.11 1.383.232 2.613.322.48.035 1.162-.482 1.149-.766-.038-.823-1.73-.808-1.73-.808l.343-.309c-.023-1.231-.637-1.086-.637-1.086l.36-.406s.21-.007.355-.008zm-.808.516c.161-.025.325 0 .453.187.138.203.176.746.176.746s-.448.437-.735.547c-.01-.128-.007-.244-.023-.402-.013-.123-.172-.28-.362-.309v-.171c.175-.192.341-.392.49-.598zm-.563.674v1.513c-.136.058-.245.115-.414.172-.255.087-.544-.005-.805.063-.285.073-.53.26-.804.367-.409.16-.95.176-.95.176s1.708-.936 2.973-2.291zm.072.16c.127.025.282.153.288.256.012.26.022.344.03.504.158-.017.427-.262.427-.262s.042.256-.055.406c-.081.125-.349.271-.69.42zm.85.549s1.6.075 1.602.71c0 .4-.705.64-1.125.641-.571.002-1.54-.344-1.54-.344s.913-.39 1.032-.574c.097-.151.031-.433.031-.433z" }) + ] + } + ); +}); + +export { SiRenpy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.cjs new file mode 100644 index 000000000..bed426a52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#217DC6"; +const SiRenren = React__namespace.forwardRef(function SiRenren2({ title = "Renren", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.66 9.553V5.254A6.794 6.794 0 0 0 1.606 16.34c2.379-1.152 4.042-3.755 4.054-6.787zm1.132 4.115c-.423 1.752-1.687 3.25-3.262 4.245a6.76 6.76 0 0 0 3.26.833 6.772 6.772 0 0 0 3.264-.833c-1.575-.996-2.84-2.494-3.262-4.245zm5.184-6.103a6.79 6.79 0 0 0-4.052-2.31V9.52c0 3.045 1.667 5.663 4.051 6.818a6.767 6.767 0 0 1-1.607-4.387 6.755 6.755 0 0 1 1.608-4.386zc1.003 1.183 1.655 2.714 1.655 4.387 0 1.674-.65 3.203-1.655 4.388 2.38-1.15 4.088-3.755 4.1-6.787V5.254a6.9 6.901 0 0 0-4.1 2.31zM18.34 9.52c0 3.046 1.667 5.663 4.053 6.82A6.793 6.793 0 0 0 18.34 5.255zm-1.132 4.148c-.423 1.752-1.687 3.25-3.263 4.245a6.76 6.76 0 0 0 3.262.833 6.772 6.772 0 0 0 3.263-.833c-1.575-.996-2.839-2.494-3.262-4.245z" }) + ] + } + ); +}); + +exports.default = SiRenren; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.d.ts new file mode 100644 index 000000000..7a3f7764b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#217DC6"; +declare const SiRenren: IconType; +export { SiRenren as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.mjs new file mode 100644 index 000000000..9c8521a4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRenren.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#217DC6"; +const SiRenren = React.forwardRef(function SiRenren2({ title = "Renren", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.66 9.553V5.254A6.794 6.794 0 0 0 1.606 16.34c2.379-1.152 4.042-3.755 4.054-6.787zm1.132 4.115c-.423 1.752-1.687 3.25-3.262 4.245a6.76 6.76 0 0 0 3.26.833 6.772 6.772 0 0 0 3.264-.833c-1.575-.996-2.84-2.494-3.262-4.245zm5.184-6.103a6.79 6.79 0 0 0-4.052-2.31V9.52c0 3.045 1.667 5.663 4.051 6.818a6.767 6.767 0 0 1-1.607-4.387 6.755 6.755 0 0 1 1.608-4.386zc1.003 1.183 1.655 2.714 1.655 4.387 0 1.674-.65 3.203-1.655 4.388 2.38-1.15 4.088-3.755 4.1-6.787V5.254a6.9 6.901 0 0 0-4.1 2.31zM18.34 9.52c0 3.046 1.667 5.663 4.053 6.82A6.793 6.793 0 0 0 18.34 5.255zm-1.132 4.148c-.423 1.752-1.687 3.25-3.263 4.245a6.76 6.76 0 0 0 3.262.833 6.772 6.772 0 0 0 3.263-.833c-1.575-.996-2.839-2.494-3.262-4.245z" }) + ] + } + ); +}); + +export { SiRenren as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.cjs new file mode 100644 index 000000000..4fe914bed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiReplicate = React__namespace.forwardRef(function SiReplicate2({ title = "Replicate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.262v2.712h-9.518V24h-3.034V10.262zm0-5.131v2.717H8.755V24H5.722V5.131zM24 0v2.717H3.034V24H0V0z" }) + ] + } + ); +}); + +exports.default = SiReplicate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.d.ts new file mode 100644 index 000000000..9e14f1bff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiReplicate: IconType; +export { SiReplicate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.mjs new file mode 100644 index 000000000..d3f2c5eb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReplicate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiReplicate = React.forwardRef(function SiReplicate2({ title = "Replicate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.262v2.712h-9.518V24h-3.034V10.262zm0-5.131v2.717H8.755V24H5.722V5.131zM24 0v2.717H3.034V24H0V0z" }) + ] + } + ); +}); + +export { SiReplicate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.cjs new file mode 100644 index 000000000..73158654c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F26207"; +const SiReplit = React__namespace.forwardRef(function SiReplit2({ title = "Replit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 1.5A1.5 1.5 0 0 1 3.5 0h7A1.5 1.5 0 0 1 12 1.5V8H3.5A1.5 1.5 0 0 1 2 6.5ZM12 8h8.5A1.5 1.5 0 0 1 22 9.5v5a1.5 1.5 0 0 1-1.5 1.5H12ZM2 17.5A1.5 1.5 0 0 1 3.5 16H12v6.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 2 22.5Z" }) + ] + } + ); +}); + +exports.default = SiReplit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.d.ts new file mode 100644 index 000000000..9e045ca95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F26207"; +declare const SiReplit: IconType; +export { SiReplit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.mjs new file mode 100644 index 000000000..333e3ec33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReplit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F26207"; +const SiReplit = React.forwardRef(function SiReplit2({ title = "Replit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2 1.5A1.5 1.5 0 0 1 3.5 0h7A1.5 1.5 0 0 1 12 1.5V8H3.5A1.5 1.5 0 0 1 2 6.5ZM12 8h8.5A1.5 1.5 0 0 1 22 9.5v5a1.5 1.5 0 0 1-1.5 1.5H12ZM2 17.5A1.5 1.5 0 0 1 3.5 16H12v6.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 2 22.5Z" }) + ] + } + ); +}); + +export { SiReplit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.cjs new file mode 100644 index 000000000..6e5f6b3cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0029"; +const SiRepublicofgamers = React__namespace.forwardRef(function SiRepublicofgamers2({ title = "Republic of Gamers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.3906 5.5833c-1.3467.0115-3.4338.19541-5.9375.97657-1.6024.49851-3.916 2.74203-8.22459 6.90823-.56973.3204-2.67017-.8912-3.88085-1.461 0 0 1.9929 3.1699 2.70507 4.0957 1.06825 1.46 3.02735 2.3145 3.02735 2.3145-.17804-.1781-1.53019-1.6029-1.92188-2.4219-.24926-.3917.03418-.9624 1.95703-2.3867C10.86 12.3268 17.0569 7.09358 23.0391 5.66924c0 0-.601-.09488-1.6485-.08593V5.5833ZM24 7.7708c-2.0653.21366-4.06.81878-5.9473 1.70899C14.2783 11.2602 7.9043 15.8177 7.9043 15.8177c.28486.178.5706.3556.85546.498 3.06234 1.3531 7.58484 2.1716 8.43944 1.8867 2.3858-.7833 5.056-5.8026 5.875-8.1172 0 0-2.4933.9968-5.0215 2.1719-2.1009.9971-4.414 2.1368-4.414 2.1368l5.875-1.7813s-1.5676 3.7036-3.6328 4.1309c-2.0653.4273-5.6973-1.0332-5.6973-1.0332.2849-.2493 4.1302-3.0629 13.1035-6.73051.3917-.28487.6417-.74608.7129-1.20898V7.7708ZM0 11.2942c.35608.9615.8194 1.8525 1.35352 2.7071.64094.819 3.27477 1.4952 3.63086 1.5664C3.34638 14.4282 0 11.2942 0 11.2942Z" }) + ] + } + ); +}); + +exports.default = SiRepublicofgamers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.d.ts new file mode 100644 index 000000000..4aee34b80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0029"; +declare const SiRepublicofgamers: IconType; +export { SiRepublicofgamers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.mjs new file mode 100644 index 000000000..34245c99f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRepublicofgamers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0029"; +const SiRepublicofgamers = React.forwardRef(function SiRepublicofgamers2({ title = "Republic of Gamers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.3906 5.5833c-1.3467.0115-3.4338.19541-5.9375.97657-1.6024.49851-3.916 2.74203-8.22459 6.90823-.56973.3204-2.67017-.8912-3.88085-1.461 0 0 1.9929 3.1699 2.70507 4.0957 1.06825 1.46 3.02735 2.3145 3.02735 2.3145-.17804-.1781-1.53019-1.6029-1.92188-2.4219-.24926-.3917.03418-.9624 1.95703-2.3867C10.86 12.3268 17.0569 7.09358 23.0391 5.66924c0 0-.601-.09488-1.6485-.08593V5.5833ZM24 7.7708c-2.0653.21366-4.06.81878-5.9473 1.70899C14.2783 11.2602 7.9043 15.8177 7.9043 15.8177c.28486.178.5706.3556.85546.498 3.06234 1.3531 7.58484 2.1716 8.43944 1.8867 2.3858-.7833 5.056-5.8026 5.875-8.1172 0 0-2.4933.9968-5.0215 2.1719-2.1009.9971-4.414 2.1368-4.414 2.1368l5.875-1.7813s-1.5676 3.7036-3.6328 4.1309c-2.0653.4273-5.6973-1.0332-5.6973-1.0332.2849-.2493 4.1302-3.0629 13.1035-6.73051.3917-.28487.6417-.74608.7129-1.20898V7.7708ZM0 11.2942c.35608.9615.8194 1.8525 1.35352 2.7071.64094.819 3.27477 1.4952 3.63086 1.5664C3.34638 14.4282 0 11.2942 0 11.2942Z" }) + ] + } + ); +}); + +export { SiRepublicofgamers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.cjs new file mode 100644 index 000000000..7d965429e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6484F"; +const SiRescript = React__namespace.forwardRef(function SiRescript2({ title = "ReScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.29 1.8c-.3-.4-.6-.7-.9-.9-1.3-.9-2.899-.9-6.098-.9H7.696C4.498 0 2.9 0 1.8.8c-.4.3-.7.6-1 1C0 2.9 0 4.5 0 7.7v8.6c0 3.2 0 4.8.8 5.9.3.4.6.7.9.9 1.199.9 2.798.9 5.996.9h8.596c3.199 0 4.798 0 5.898-.8.4-.3.7-.6.9-.9.799-1.1.799-2.7.799-5.9V7.7c.2-3.2.2-4.8-.6-5.9ZM11.194 16.5c0 .2 0 .5-.1.8 0 .2-.1.3-.1.5-.1.1-.2.3-.4.5s-.4.3-.6.4c-.3.1-.7.1-1.399.1-.8 0-1.1 0-1.4-.1-.4-.2-.699-.5-.899-.9-.1-.3-.1-.7-.1-1.4v-8c0-.9 0-1.4.2-1.7.2-.3.4-.5.8-.7.3-.2.8-.2 1.699-.2h2.299zm5.097-4.9c-1.599 0-2.798-1.3-2.798-2.8 0-1.6 1.3-2.8 2.798-2.8 1.5 0 2.8 1.3 2.8 2.8 0 1.5-1.3 2.8-2.8 2.8z" }) + ] + } + ); +}); + +exports.default = SiRescript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.d.ts new file mode 100644 index 000000000..e4e8cc734 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6484F"; +declare const SiRescript: IconType; +export { SiRescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.mjs new file mode 100644 index 000000000..96269e128 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRescript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6484F"; +const SiRescript = React.forwardRef(function SiRescript2({ title = "ReScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.29 1.8c-.3-.4-.6-.7-.9-.9-1.3-.9-2.899-.9-6.098-.9H7.696C4.498 0 2.9 0 1.8.8c-.4.3-.7.6-1 1C0 2.9 0 4.5 0 7.7v8.6c0 3.2 0 4.8.8 5.9.3.4.6.7.9.9 1.199.9 2.798.9 5.996.9h8.596c3.199 0 4.798 0 5.898-.8.4-.3.7-.6.9-.9.799-1.1.799-2.7.799-5.9V7.7c.2-3.2.2-4.8-.6-5.9ZM11.194 16.5c0 .2 0 .5-.1.8 0 .2-.1.3-.1.5-.1.1-.2.3-.4.5s-.4.3-.6.4c-.3.1-.7.1-1.399.1-.8 0-1.1 0-1.4-.1-.4-.2-.699-.5-.899-.9-.1-.3-.1-.7-.1-1.4v-8c0-.9 0-1.4.2-1.7.2-.3.4-.5.8-.7.3-.2.8-.2 1.699-.2h2.299zm5.097-4.9c-1.599 0-2.798-1.3-2.798-2.8 0-1.6 1.3-2.8 2.798-2.8 1.5 0 2.8 1.3 2.8 2.8 0 1.5-1.3 2.8-2.8 2.8z" }) + ] + } + ); +}); + +export { SiRescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.cjs new file mode 100644 index 000000000..8f78324ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#161A3B"; +const SiRescuetime = React__namespace.forwardRef(function SiRescuetime2({ title = "RescueTime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m24 7.626v8.749c0 .597-.485 1.092-1.091 1.092h-5.447v5.452c0 .596-.485 1.092-1.091 1.092h-8.742c-.596 0-1.091-.486-1.091-1.092v-5.452h-5.447c-.596 0-1.091-.485-1.091-1.092v-8.749c0-.597.485-1.092 1.091-1.092h5.447v-5.452c0-.596.485-1.092 1.091-1.092h8.742c.596 0 1.091.485 1.091 1.092v5.452h5.447c.596 0 1.091.495 1.091 1.092zm-3.325 4.339-2.192-1.649.333 1.042-4.891-.344c.152.304.243.638.243.992 0 .343-.081.667-.213.95l4.871-.364-.323 1.022zm-7.579.03-.495-8 1.021.324-1.647-2.185-1.647 2.195 1.04-.334-.454 8c0 .597.485 1.093 1.091 1.093.596 0 1.091-.486 1.091-1.093z" }) + ] + } + ); +}); + +exports.default = SiRescuetime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.d.ts new file mode 100644 index 000000000..c38cd6fe5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#161A3B"; +declare const SiRescuetime: IconType; +export { SiRescuetime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.mjs new file mode 100644 index 000000000..0e5a49c7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRescuetime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#161A3B"; +const SiRescuetime = React.forwardRef(function SiRescuetime2({ title = "RescueTime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m24 7.626v8.749c0 .597-.485 1.092-1.091 1.092h-5.447v5.452c0 .596-.485 1.092-1.091 1.092h-8.742c-.596 0-1.091-.486-1.091-1.092v-5.452h-5.447c-.596 0-1.091-.485-1.091-1.092v-8.749c0-.597.485-1.092 1.091-1.092h5.447v-5.452c0-.596.485-1.092 1.091-1.092h8.742c.596 0 1.091.485 1.091 1.092v5.452h5.447c.596 0 1.091.495 1.091 1.092zm-3.325 4.339-2.192-1.649.333 1.042-4.891-.344c.152.304.243.638.243.992 0 .343-.081.667-.213.95l4.871-.364-.323 1.022zm-7.579.03-.495-8 1.021.324-1.647-2.185-1.647 2.195 1.04-.334-.454 8c0 .597.485 1.093 1.091 1.093.596 0 1.091-.486 1.091-1.093z" }) + ] + } + ); +}); + +export { SiRescuetime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.cjs new file mode 100644 index 000000000..9a17e77c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CCBB"; +const SiResearchgate = React__namespace.forwardRef(function SiResearchgate2({ title = "ResearchGate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.586 0c-.818 0-1.508.19-2.073.565-.563.377-.97.936-1.213 1.68a3.193 3.193 0 0 0-.112.437 8.365 8.365 0 0 0-.078.53 9 9 0 0 0-.05.727c-.01.282-.013.621-.013 1.016a31.121 31.123 0 0 0 .014 1.017 9 9 0 0 0 .05.727 7.946 7.946 0 0 0 .077.53h-.005a3.334 3.334 0 0 0 .113.438c.245.743.65 1.303 1.214 1.68.565.376 1.256.564 2.075.564.8 0 1.536-.213 2.105-.603.57-.39.94-.916 1.175-1.65.076-.235.135-.558.177-.93a10.9 10.9 0 0 0 .043-1.207v-.82c0-.095-.047-.142-.14-.142h-3.064c-.094 0-.14.047-.14.141v.956c0 .094.046.14.14.14h1.666c.056 0 .084.03.084.086 0 .36 0 .62-.036.865-.038.244-.1.447-.147.606-.108.385-.348.664-.638.876-.29.212-.738.35-1.227.35-.545 0-.901-.15-1.21-.353-.306-.203-.517-.454-.67-.915a3.136 3.136 0 0 1-.147-.762 17.366 17.367 0 0 1-.034-.656c-.01-.26-.014-.572-.014-.939a26.401 26.403 0 0 1 .014-.938 15.821 15.822 0 0 1 .035-.656 3.19 3.19 0 0 1 .148-.76 1.89 1.89 0 0 1 .742-1.01c.344-.244.593-.352 1.137-.352.508 0 .815.096 1.144.303.33.207.528.492.764.925.047.094.111.118.198.07l1.044-.43c.075-.048.09-.115.042-.199a3.549 3.549 0 0 0-.466-.742 3 3 0 0 0-.679-.607 3.313 3.313 0 0 0-.903-.41A4.068 4.068 0 0 0 19.586 0zM8.217 5.836c-1.69 0-3.036.086-4.297.086-1.146 0-2.291 0-3.007-.029v.831l1.088.2c.744.144 1.174.488 1.174 2.264v11.288c0 1.777-.43 2.12-1.174 2.263l-1.088.2v.832c.773-.029 2.12-.086 3.465-.086 1.29 0 2.951.057 3.667.086v-.831l-1.49-.2c-.773-.115-1.174-.487-1.174-2.264v-4.784c.688.057 1.29.057 2.206.057 1.748 3.123 3.41 5.472 4.355 6.56.86 1.032 2.177 1.691 3.839 1.691.487 0 1.003-.086 1.318-.23v-.744c-1.031 0-2.063-.716-2.808-1.518-1.26-1.376-2.95-3.582-4.355-6.074 2.32-.545 4.04-2.722 4.04-4.9 0-3.208-2.492-4.698-5.758-4.698zm-.515 1.29c2.406 0 3.839 1.26 3.839 3.552 0 2.263-1.547 3.782-4.097 3.782-.974 0-1.404-.03-2.063-.086v-7.19c.66-.059 1.547-.059 2.32-.059z" }) + ] + } + ); +}); + +exports.default = SiResearchgate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.d.ts new file mode 100644 index 000000000..4d20bc7f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CCBB"; +declare const SiResearchgate: IconType; +export { SiResearchgate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.mjs new file mode 100644 index 000000000..0aa25a2ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResearchgate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CCBB"; +const SiResearchgate = React.forwardRef(function SiResearchgate2({ title = "ResearchGate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.586 0c-.818 0-1.508.19-2.073.565-.563.377-.97.936-1.213 1.68a3.193 3.193 0 0 0-.112.437 8.365 8.365 0 0 0-.078.53 9 9 0 0 0-.05.727c-.01.282-.013.621-.013 1.016a31.121 31.123 0 0 0 .014 1.017 9 9 0 0 0 .05.727 7.946 7.946 0 0 0 .077.53h-.005a3.334 3.334 0 0 0 .113.438c.245.743.65 1.303 1.214 1.68.565.376 1.256.564 2.075.564.8 0 1.536-.213 2.105-.603.57-.39.94-.916 1.175-1.65.076-.235.135-.558.177-.93a10.9 10.9 0 0 0 .043-1.207v-.82c0-.095-.047-.142-.14-.142h-3.064c-.094 0-.14.047-.14.141v.956c0 .094.046.14.14.14h1.666c.056 0 .084.03.084.086 0 .36 0 .62-.036.865-.038.244-.1.447-.147.606-.108.385-.348.664-.638.876-.29.212-.738.35-1.227.35-.545 0-.901-.15-1.21-.353-.306-.203-.517-.454-.67-.915a3.136 3.136 0 0 1-.147-.762 17.366 17.367 0 0 1-.034-.656c-.01-.26-.014-.572-.014-.939a26.401 26.403 0 0 1 .014-.938 15.821 15.822 0 0 1 .035-.656 3.19 3.19 0 0 1 .148-.76 1.89 1.89 0 0 1 .742-1.01c.344-.244.593-.352 1.137-.352.508 0 .815.096 1.144.303.33.207.528.492.764.925.047.094.111.118.198.07l1.044-.43c.075-.048.09-.115.042-.199a3.549 3.549 0 0 0-.466-.742 3 3 0 0 0-.679-.607 3.313 3.313 0 0 0-.903-.41A4.068 4.068 0 0 0 19.586 0zM8.217 5.836c-1.69 0-3.036.086-4.297.086-1.146 0-2.291 0-3.007-.029v.831l1.088.2c.744.144 1.174.488 1.174 2.264v11.288c0 1.777-.43 2.12-1.174 2.263l-1.088.2v.832c.773-.029 2.12-.086 3.465-.086 1.29 0 2.951.057 3.667.086v-.831l-1.49-.2c-.773-.115-1.174-.487-1.174-2.264v-4.784c.688.057 1.29.057 2.206.057 1.748 3.123 3.41 5.472 4.355 6.56.86 1.032 2.177 1.691 3.839 1.691.487 0 1.003-.086 1.318-.23v-.744c-1.031 0-2.063-.716-2.808-1.518-1.26-1.376-2.95-3.582-4.355-6.074 2.32-.545 4.04-2.722 4.04-4.9 0-3.208-2.492-4.698-5.758-4.698zm-.515 1.29c2.406 0 3.839 1.26 3.839 3.552 0 2.263-1.547 3.782-4.097 3.782-.974 0-1.404-.03-2.063-.086v-7.19c.66-.059 1.547-.059 2.32-.059z" }) + ] + } + ); +}); + +export { SiResearchgate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResend.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResend.cjs new file mode 100644 index 000000000..2c967a816 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResend.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiResend = React__namespace.forwardRef(function SiResend2({ title = "Resend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.679 0c4.648 0 7.413 2.765 7.413 6.434s-2.765 6.434-7.413 6.434H12.33L24 24h-8.245l-8.88-8.44c-.636-.588-.93-1.273-.93-1.86 0-.831.587-1.565 1.713-1.883l4.574-1.224c1.737-.465 2.936-1.81 2.936-3.572 0-2.153-1.761-3.4-3.939-3.4H0V0z" }) + ] + } + ); +}); + +exports.default = SiResend; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResend.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiResend.d.ts new file mode 100644 index 000000000..65989e390 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResend.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiResend: IconType; +export { SiResend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResend.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResend.mjs new file mode 100644 index 000000000..9cbcdb1fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResend.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiResend = React.forwardRef(function SiResend2({ title = "Resend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.679 0c4.648 0 7.413 2.765 7.413 6.434s-2.765 6.434-7.413 6.434H12.33L24 24h-8.245l-8.88-8.44c-.636-.588-.93-1.273-.93-1.86 0-.831.587-1.565 1.713-1.883l4.574-1.224c1.737-.465 2.936-1.81 2.936-3.572 0-2.153-1.761-3.4-3.939-3.4H0V0z" }) + ] + } + ); +}); + +export { SiResend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.cjs new file mode 100644 index 000000000..26b746889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiResharper = React__namespace.forwardRef(function SiResharper2({ title = "ReSharper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 0H0v24h24V0ZM3.006 19.476h9v1.5h-9v-1.5Zm9.824-9.392h-.98V8.432h1.264l.324-1.908h-1.136V4.872h1.416l.324-1.864h1.704l-.332 1.864h1.88l.324-1.864h1.7l-.304 1.864h.98v1.652h-1.28l-.324 1.908h1.136v1.652h-1.42l-.336 1.936h-1.7l.332-1.936h-1.868l-.32 1.936h-1.72l.336-1.936ZM3.014 3.008H7.15c1.144 0 2.021.304 2.632.912.529.553.808 1.3.772 2.064v.028a2.802 2.802 0 0 1-.536 1.784 3.065 3.065 0 0 1-1.404.992l2.204 3.224h-2.32L6.63 9.24H5.014v2.772h-2V3.008Zm13.672 5.424.328-1.908h-1.876l-.32 1.908h1.868ZM7.014 7.408c.415.014.821-.129 1.136-.4a1.2 1.2 0 0 0 .4-.928v-.028a1.156 1.156 0 0 0-.4-.968 1.836 1.836 0 0 0-1.148-.32H5.014v2.592l2 .052Z" }) + ] + } + ); +}); + +exports.default = SiResharper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.d.ts new file mode 100644 index 000000000..53ca8b993 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiResharper: IconType; +export { SiResharper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.mjs new file mode 100644 index 000000000..2169ae852 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResharper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiResharper = React.forwardRef(function SiResharper2({ title = "ReSharper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 0H0v24h24V0ZM3.006 19.476h9v1.5h-9v-1.5Zm9.824-9.392h-.98V8.432h1.264l.324-1.908h-1.136V4.872h1.416l.324-1.864h1.704l-.332 1.864h1.88l.324-1.864h1.7l-.304 1.864h.98v1.652h-1.28l-.324 1.908h1.136v1.652h-1.42l-.336 1.936h-1.7l.332-1.936h-1.868l-.32 1.936h-1.72l.336-1.936ZM3.014 3.008H7.15c1.144 0 2.021.304 2.632.912.529.553.808 1.3.772 2.064v.028a2.802 2.802 0 0 1-.536 1.784 3.065 3.065 0 0 1-1.404.992l2.204 3.224h-2.32L6.63 9.24H5.014v2.772h-2V3.008Zm13.672 5.424.328-1.908h-1.876l-.32 1.908h1.868ZM7.014 7.408c.415.014.821-.129 1.136-.4a1.2 1.2 0 0 0 .4-.928v-.028a1.156 1.156 0 0 0-.4-.968 1.836 1.836 0 0 0-1.148-.32H5.014v2.592l2 .052Z" }) + ] + } + ); +}); + +export { SiResharper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.cjs new file mode 100644 index 000000000..5d7514f89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiResurrectionremixos = React__namespace.forwardRef(function SiResurrectionremixos2({ title = "Resurrection Remix OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 3.53l-9.952.078C9.142 3.647 6.994 8.265 0 16.345c1.569.753 3.323 1.24 4.338.119 1.703-1.883 4.275-5.48 7.154-8.346 1.793-1.784 6.01-.865 9.95-1.23 1.351-.125 2.41-2.48 2.558-3.359zm-.147 6.076l-7.326.044c-4.39 0-5.38 2.492-11.91 10.24 1.194.563 3.28.84 3.763.257 1.78-2.158 2.506-3.51 5.36-6.362 1.657-1.658 4.39-.687 7.86-1.01 1.267-.12 2.132-2.449 2.253-3.169z" }) + ] + } + ); +}); + +exports.default = SiResurrectionremixos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.d.ts new file mode 100644 index 000000000..4f3422df5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiResurrectionremixos: IconType; +export { SiResurrectionremixos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.mjs new file mode 100644 index 000000000..96002ee3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiResurrectionremixos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiResurrectionremixos = React.forwardRef(function SiResurrectionremixos2({ title = "Resurrection Remix OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 3.53l-9.952.078C9.142 3.647 6.994 8.265 0 16.345c1.569.753 3.323 1.24 4.338.119 1.703-1.883 4.275-5.48 7.154-8.346 1.793-1.784 6.01-.865 9.95-1.23 1.351-.125 2.41-2.48 2.558-3.359zm-.147 6.076l-7.326.044c-4.39 0-5.38 2.492-11.91 10.24 1.194.563 3.28.84 3.763.257 1.78-2.158 2.506-3.51 5.36-6.362 1.657-1.658 4.39-.687 7.86-1.01 1.267-.12 2.132-2.449 2.253-3.169z" }) + ] + } + ); +}); + +export { SiResurrectionremixos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.cjs new file mode 100644 index 000000000..0ca00b58c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3D3D3D"; +const SiRetool = React__namespace.forwardRef(function SiRetool2({ title = "Retool", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2.2A2.2 2.2 0 0 1 2.2 0h8.6A2.2 2.2 0 0 1 13 2.2v1.7A1.1 1.1 0 0 1 11.9 5H1.1A1.1 1.1 0 0 1 0 3.9V2.2zm0 6.9A1.1 1.1 0 0 1 1.1 8h20.7a2.2 2.2 0 0 1 2.2 2.2v5.7a1.1 1.1 0 0 1-1.1 1.1H2.2A2.2 2.2 0 0 1 0 14.8V9.1zm11 12a1.1 1.1 0 0 1 1.1-1.1h10.8a1.1 1.1 0 0 1 1.1 1.1v.7a2.2 2.2 0 0 1-2.2 2.2h-8.6a2.2 2.2 0 0 1-2.2-2.2v-.7z" }) + ] + } + ); +}); + +exports.default = SiRetool; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.d.ts new file mode 100644 index 000000000..65571b474 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3D3D3D"; +declare const SiRetool: IconType; +export { SiRetool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.mjs new file mode 100644 index 000000000..c47750eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetool.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3D3D3D"; +const SiRetool = React.forwardRef(function SiRetool2({ title = "Retool", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2.2A2.2 2.2 0 0 1 2.2 0h8.6A2.2 2.2 0 0 1 13 2.2v1.7A1.1 1.1 0 0 1 11.9 5H1.1A1.1 1.1 0 0 1 0 3.9V2.2zm0 6.9A1.1 1.1 0 0 1 1.1 8h20.7a2.2 2.2 0 0 1 2.2 2.2v5.7a1.1 1.1 0 0 1-1.1 1.1H2.2A2.2 2.2 0 0 1 0 14.8V9.1zm11 12a1.1 1.1 0 0 1 1.1-1.1h10.8a1.1 1.1 0 0 1 1.1 1.1v.7a2.2 2.2 0 0 1-2.2 2.2h-8.6a2.2 2.2 0 0 1-2.2-2.2v-.7z" }) + ] + } + ); +}); + +export { SiRetool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.cjs new file mode 100644 index 000000000..8dde8c5d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1065DF"; +const SiRetroachievements = React__namespace.forwardRef(function SiRetroachievements2({ title = "Retro Achievements", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 5.389V7.22h4.617l.74-.014a1.6 1.6 0 0 1 .262.008c.061.008.146.024.201.035s.082.015.135.031a2.4 2.4 0 0 1 .44.182 3 3 0 0 1 .312.191 2 2 0 0 1 .25.213c.047.046.1.1.143.147s.076.086.113.138.08.118.111.176q.048.087.08.154c.022.046.043.088.069.153a3 3 0 0 1 .181.672 3 3 0 0 1 .03.453 4 4 0 0 1-.026.357 3 3 0 0 1-.037.225c-.015.066-.03.114-.045.168l-.049.18a2 2 0 0 1-.168.392 2 2 0 0 1-.117.188 6 6 0 0 1-.185.24 2 2 0 0 1-.184.21 3.6 3.6 0 0 1-.43.32 2 2 0 0 1-.234.12 1 1 0 0 1-.182.07 1 1 0 0 1-.199.022l-.174.01.41.726 3.24 5.623 1.823-.007-3.06-5.5q.045-.031.099-.073a2 2 0 0 0 .125-.113c.049-.048.106-.107.158-.162a2 2 0 0 0 .143-.164c.044-.058.086-.123.127-.18.04-.058.08-.109.117-.166q.056-.084.111-.19a8 8 0 0 0 .244-.497 2.5 2.5 0 0 0 .16-.508c.02-.082.033-.157.05-.235q.023-.118.044-.255a4 4 0 0 0 .03-.3c.006-.105.007-.216.01-.316.002-.1.004-.189.003-.297a7 7 0 0 0-.013-.36 4 4 0 0 0-.041-.376 3 3 0 0 0-.075-.34 6 6 0 0 0-.095-.31 4 4 0 0 0-.112-.297 4 4 0 0 0-.164-.348 4 4 0 0 0-.181-.303 4 4 0 0 0-.19-.273A3 3 0 0 0 8.4 6.8a7 7 0 0 0-.25-.246 5 5 0 0 0-.304-.266 4 4 0 0 0-.272-.195 4 4 0 0 0-.271-.168 4 4 0 0 0-.729-.32 6 6 0 0 0-.424-.124 3 3 0 0 0-.345-.062 4 4 0 0 0-.272-.022H.217L.035 5.39zm17.54.01a3 3 0 0 0-.25.013 1 1 0 0 0-.19.035 2 2 0 0 0-.211.073q-.109.043-.221.095a1.5 1.5 0 0 0-.219.114 1.6 1.6 0 0 0-.207.167 3 3 0 0 0-.377.428q-.082.12-.14.233a3 3 0 0 0-.106.248 14 14 0 0 0-.121.334c-.036.107-.068.194-.746 2.101l-2.662 7.494c-.662 1.863-.661 1.864-.656 1.864h.002l.03.002h1.766l3.725-10.633.09-.252q.039-.12.082-.211a.4.4 0 0 1 .11-.14.6.6 0 0 1 .16-.098.8.8 0 0 1 .19-.053 1 1 0 0 1 .206-.006.7.7 0 0 1 .182.047 1 1 0 0 1 .193.092.5.5 0 0 1 .142.138 1 1 0 0 1 .094.198c.028.076.054.163.614 1.72a7065.411 7066 0 0 0 2.742 7.606l-5.578.002-.014 1.584 7.83-.01-4.1-11.613c-.042-.1-.08-.2-.12-.285a2.6 2.6 0 0 0-.264-.45 3 3 0 0 0-.2-.232 2 2 0 0 0-.171-.156 2 2 0 0 0-.207-.16 1 1 0 0 0-.215-.11 3 3 0 0 0-.51-.146 2 2 0 0 0-.283-.034 6 6 0 0 0-.39 0m.17 2.253a.3.3 0 0 0-.073.012.4.4 0 0 0-.102.043.4.4 0 0 0-.144.166 2 2 0 0 0-.055.147l-.066.205-3.407 9.88-.134.366-.047.127h1.681l.795-2.47v.41h4.979l-2.518-7.13c-.513-1.452-.535-1.518-.558-1.562a.24.24 0 0 0-.08-.092 1 1 0 0 0-.112-.065.4.4 0 0 0-.119-.037zM.013 7.678C0 7.676 0 7.674 0 9.494v9.104h1.813V9.506c1.12 0 2.241 0 2.816.002s.605.007.629.015a.1.1 0 0 1 .05.034.2.2 0 0 1 .03.056.4.4 0 0 1 .023.147.4.4 0 0 1-.01.084.2.2 0 0 1-.029.062.2.2 0 0 1-.06.055.3.3 0 0 1-.108.027 2 2 0 0 1-.183.006l-.264.002H2.26v8.6h1.826v-4.573l2.633 4.575h1.927l-3.814-6.711h.365a1 1 0 0 0 .164-.01 3 3 0 0 0 .29-.05 2 2 0 0 0 .265-.089q.125-.05.234-.103.105-.052.196-.115a1.8 1.8 0 0 0 .336-.31c.05-.06.1-.129.144-.189.043-.058.08-.107.113-.166a2 2 0 0 0 .098-.2 3 3 0 0 0 .078-.208 1.5 1.5 0 0 0 .078-.418 4 4 0 0 0-.002-.521 6 6 0 0 0-.02-.24 3 3 0 0 0-.025-.184 1 1 0 0 0-.044-.18 2 2 0 0 0-.086-.21 2 2 0 0 0-.106-.186 3 3 0 0 0-.137-.19 2 2 0 0 0-.136-.148 1 1 0 0 0-.143-.11 4 4 0 0 0-.205-.124 2 2 0 0 0-.207-.106 2 2 0 0 0-.24-.078 2 2 0 0 0-.207-.047l-.127-.018H.076zM17.72 11.59l1.148 3.336H16.7z" }) + ] + } + ); +}); + +exports.default = SiRetroachievements; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.d.ts new file mode 100644 index 000000000..251593715 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1065DF"; +declare const SiRetroachievements: IconType; +export { SiRetroachievements as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.mjs new file mode 100644 index 000000000..c84d818d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroachievements.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1065DF"; +const SiRetroachievements = React.forwardRef(function SiRetroachievements2({ title = "Retro Achievements", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 5.389V7.22h4.617l.74-.014a1.6 1.6 0 0 1 .262.008c.061.008.146.024.201.035s.082.015.135.031a2.4 2.4 0 0 1 .44.182 3 3 0 0 1 .312.191 2 2 0 0 1 .25.213c.047.046.1.1.143.147s.076.086.113.138.08.118.111.176q.048.087.08.154c.022.046.043.088.069.153a3 3 0 0 1 .181.672 3 3 0 0 1 .03.453 4 4 0 0 1-.026.357 3 3 0 0 1-.037.225c-.015.066-.03.114-.045.168l-.049.18a2 2 0 0 1-.168.392 2 2 0 0 1-.117.188 6 6 0 0 1-.185.24 2 2 0 0 1-.184.21 3.6 3.6 0 0 1-.43.32 2 2 0 0 1-.234.12 1 1 0 0 1-.182.07 1 1 0 0 1-.199.022l-.174.01.41.726 3.24 5.623 1.823-.007-3.06-5.5q.045-.031.099-.073a2 2 0 0 0 .125-.113c.049-.048.106-.107.158-.162a2 2 0 0 0 .143-.164c.044-.058.086-.123.127-.18.04-.058.08-.109.117-.166q.056-.084.111-.19a8 8 0 0 0 .244-.497 2.5 2.5 0 0 0 .16-.508c.02-.082.033-.157.05-.235q.023-.118.044-.255a4 4 0 0 0 .03-.3c.006-.105.007-.216.01-.316.002-.1.004-.189.003-.297a7 7 0 0 0-.013-.36 4 4 0 0 0-.041-.376 3 3 0 0 0-.075-.34 6 6 0 0 0-.095-.31 4 4 0 0 0-.112-.297 4 4 0 0 0-.164-.348 4 4 0 0 0-.181-.303 4 4 0 0 0-.19-.273A3 3 0 0 0 8.4 6.8a7 7 0 0 0-.25-.246 5 5 0 0 0-.304-.266 4 4 0 0 0-.272-.195 4 4 0 0 0-.271-.168 4 4 0 0 0-.729-.32 6 6 0 0 0-.424-.124 3 3 0 0 0-.345-.062 4 4 0 0 0-.272-.022H.217L.035 5.39zm17.54.01a3 3 0 0 0-.25.013 1 1 0 0 0-.19.035 2 2 0 0 0-.211.073q-.109.043-.221.095a1.5 1.5 0 0 0-.219.114 1.6 1.6 0 0 0-.207.167 3 3 0 0 0-.377.428q-.082.12-.14.233a3 3 0 0 0-.106.248 14 14 0 0 0-.121.334c-.036.107-.068.194-.746 2.101l-2.662 7.494c-.662 1.863-.661 1.864-.656 1.864h.002l.03.002h1.766l3.725-10.633.09-.252q.039-.12.082-.211a.4.4 0 0 1 .11-.14.6.6 0 0 1 .16-.098.8.8 0 0 1 .19-.053 1 1 0 0 1 .206-.006.7.7 0 0 1 .182.047 1 1 0 0 1 .193.092.5.5 0 0 1 .142.138 1 1 0 0 1 .094.198c.028.076.054.163.614 1.72a7065.411 7066 0 0 0 2.742 7.606l-5.578.002-.014 1.584 7.83-.01-4.1-11.613c-.042-.1-.08-.2-.12-.285a2.6 2.6 0 0 0-.264-.45 3 3 0 0 0-.2-.232 2 2 0 0 0-.171-.156 2 2 0 0 0-.207-.16 1 1 0 0 0-.215-.11 3 3 0 0 0-.51-.146 2 2 0 0 0-.283-.034 6 6 0 0 0-.39 0m.17 2.253a.3.3 0 0 0-.073.012.4.4 0 0 0-.102.043.4.4 0 0 0-.144.166 2 2 0 0 0-.055.147l-.066.205-3.407 9.88-.134.366-.047.127h1.681l.795-2.47v.41h4.979l-2.518-7.13c-.513-1.452-.535-1.518-.558-1.562a.24.24 0 0 0-.08-.092 1 1 0 0 0-.112-.065.4.4 0 0 0-.119-.037zM.013 7.678C0 7.676 0 7.674 0 9.494v9.104h1.813V9.506c1.12 0 2.241 0 2.816.002s.605.007.629.015a.1.1 0 0 1 .05.034.2.2 0 0 1 .03.056.4.4 0 0 1 .023.147.4.4 0 0 1-.01.084.2.2 0 0 1-.029.062.2.2 0 0 1-.06.055.3.3 0 0 1-.108.027 2 2 0 0 1-.183.006l-.264.002H2.26v8.6h1.826v-4.573l2.633 4.575h1.927l-3.814-6.711h.365a1 1 0 0 0 .164-.01 3 3 0 0 0 .29-.05 2 2 0 0 0 .265-.089q.125-.05.234-.103.105-.052.196-.115a1.8 1.8 0 0 0 .336-.31c.05-.06.1-.129.144-.189.043-.058.08-.107.113-.166a2 2 0 0 0 .098-.2 3 3 0 0 0 .078-.208 1.5 1.5 0 0 0 .078-.418 4 4 0 0 0-.002-.521 6 6 0 0 0-.02-.24 3 3 0 0 0-.025-.184 1 1 0 0 0-.044-.18 2 2 0 0 0-.086-.21 2 2 0 0 0-.106-.186 3 3 0 0 0-.137-.19 2 2 0 0 0-.136-.148 1 1 0 0 0-.143-.11 4 4 0 0 0-.205-.124 2 2 0 0 0-.207-.106 2 2 0 0 0-.24-.078 2 2 0 0 0-.207-.047l-.127-.018H.076zM17.72 11.59l1.148 3.336H16.7z" }) + ] + } + ); +}); + +export { SiRetroachievements as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.cjs new file mode 100644 index 000000000..fd7313699 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRetroarch = React__namespace.forwardRef(function SiRetroarch2({ title = "RetroArch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.84 5.76L8.4 7.68H5.28l-.72 2.88H2.64l.72-2.88H1.44L0 13.44h3.84l-.48 1.92h3.36L4.2 18.24h2.82l2.34-2.88h5.28l2.34 2.88h2.82l-2.52-2.88h3.36l-.48-1.92H24l-1.44-5.76h-1.92l.72 2.88h-1.92l-.72-2.88H15.6l1.56-1.92h-2.04l-1.68 1.92h-2.88L8.88 5.76zm.24 3.84H9v1.92H7.08zm7.925 0h1.92v1.92h-1.92Z" }) + ] + } + ); +}); + +exports.default = SiRetroarch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.d.ts new file mode 100644 index 000000000..dca71fbe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRetroarch: IconType; +export { SiRetroarch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.mjs new file mode 100644 index 000000000..1f0057f73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetroarch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRetroarch = React.forwardRef(function SiRetroarch2({ title = "RetroArch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.84 5.76L8.4 7.68H5.28l-.72 2.88H2.64l.72-2.88H1.44L0 13.44h3.84l-.48 1.92h3.36L4.2 18.24h2.82l2.34-2.88h5.28l2.34 2.88h2.82l-2.52-2.88h3.36l-.48-1.92H24l-1.44-5.76h-1.92l.72 2.88h-1.92l-.72-2.88H15.6l1.56-1.92h-2.04l-1.68 1.92h-2.88L8.88 5.76zm.24 3.84H9v1.92H7.08zm7.925 0h1.92v1.92h-1.92Z" }) + ] + } + ); +}); + +export { SiRetroarch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.cjs new file mode 100644 index 000000000..45fd6143e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiRetropie = React__namespace.forwardRef(function SiRetropie2({ title = "RetroPie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.923 0a3.59 3.59 0 0 0-1.531 6.839c.04.475.18 2.156.315 3.874a1.356 1.356 0 0 1-.126.016c-.25.016-.499-.027-.748-.007-.32.024-.59.197-.914.197-.298 0-.608-.006-.88.136-.446.232-1.106.086-1.474.467-.298.308-.859.153-1.199.475-.088.083-.101.222-.213.26-.126.043-.257.07-.383.113-.247.083-.51.226-.607.486-.061.166.022.188-.146.257a1.38 1.38 0 0 0-.33.182c-.182.141-.231.336-.258.568-.002.017.003.315.003.314a.918.918 0 0 0-.221.256c-.133.235-.107.484-.009.728.107.264.198.364.209.636-.012.13.05.266.098.383.192.47.307.835.831.884l1.48 3.964C6.564 23.015 9.25 24 11.949 24c2.72 0 5.448-1.001 6.204-2.986l1.522-4.002c.327-.06.603-.178.726-.538.086-.189.174-.393.202-.6a.674.674 0 0 0-.01-.249c.062-.08.123-.15.167-.243.211-.445.162-.964-.268-1.25.114-.407-.014-.695-.385-.91-.188-.109-.29-.091-.347-.296-.053-.19-.14-.339-.307-.437-.215-.126-.458-.15-.684-.243-.093-.242-.33-.385-.565-.462-.195-.064-.398-.073-.594-.126-.203-.054-.317-.242-.524-.318-.225-.081-.463-.089-.698-.113-.253-.027-.43-.18-.669-.243-.253-.066-.502-.05-.758-.065-.258-.015-.476-.15-.73-.182-.202-.026-.403-.009-.606-.001a2.01 2.01 0 0 1-.474-.053c.136-1.721.266-3.391.3-3.843A3.59 3.59 0 0 0 11.924 0zm.95.826c.292-.007.684.158 1.009.518.518.573.59 1.257.332 1.397-.261.145-.741-.145-1.187-.529-.438-.388-.721-.863-.536-1.193.068-.123.207-.19.382-.193zM10.766 6.99a3.584 3.584 0 0 0 2.312 0c-.197 2.54-.459 5.87-.486 6.08-.014.083-.098.176-.218.242a1 1 0 0 1-.464.102c-.027 0-.664-.005-.68-.409-.032-.825-.342-4.563-.464-6.015zm2.371 3.856c.077.017.156.032.237.04.302.025.597-.048.899.015.137.028.25.101.385.134.168.04.339.047.511.043a1.68 1.68 0 0 1 .463.052c.164.044.273.156.43.204.352.106.793.02 1.095.254.059.045.08.113.145.148.068.036.143.061.218.082.13.035.265.046.396.074.151.032.311.082.43.178a.31.31 0 0 1 .12.197c.009.072.088.1.156.13.215.094.453.11.657.232a.46.46 0 0 1 .205.227l.006.02.002.006.01.044c.004.034.014.132.027.222.057.04.12.073.186.099.18.071.474.207.537.4a.208.208 0 0 1 .003.007l.004.023a.24.24 0 0 1-.001.124c-.02.075-.066.238-.095.366.105.077.228.133.317.23.046.05.081.11.1.172l.001.001.002.007.007.03c.046.185-.041.53-.136.636a2.1 2.1 0 0 0-.182.253.44.44 0 0 1 .054.166l.002.018v.016l-.001.029-.002.012-.003.018a2.249 2.249 0 0 1-.18.53c-.12.387-.574.307-.864.408-.028.154-.164.81-.284.965-.237.305-.633.282-.969.27a1.17 1.17 0 0 0-.503.089.668.668 0 0 0-.2.13c-.078.075-.09.155-.121.254-.108.352-.47.512-.795.543-.271.025-.509-.057-.772-.102a1.548 1.548 0 0 0-.773.058.87.87 0 0 0-.322.187c-.086.082-.154.173-.253.24a1.3 1.3 0 0 1-.735.211c-.261 0-.525-.066-.754-.2a1.485 1.485 0 0 0-.747-.183c-.255 0-.522.05-.747.183a1.49 1.49 0 0 1-.757.203c-.337 0-.694-.112-.926-.38-.182-.211-.457-.3-.72-.328-.378-.04-.718.123-1.09.123-.33 0-.713-.112-.889-.431-.067-.123-.067-.267-.17-.367-.135-.132-.33-.192-.509-.214-.354-.044-.702.068-1.03-.14a.586.586 0 0 1-.263-.372c-.023-.084-.161-.562-.18-.663-.029-.15-.484-.048-.637-.135-.138-.08-.208-.29-.253-.389-.044-.098-.18-.405-.19-.5l.006-.005c-.001-.012-.004-.023-.004-.036a.423.423 0 0 1 .104-.283.697.697 0 0 1-.199-.194c-.044-.085-.255-.454-.19-.64l.005-.004a.523.523 0 0 1 .18-.262c.069-.057.16-.1.237-.154a.476.476 0 0 1-.058-.054c-.1-.136-.081-.427.014-.566l.012-.02.002-.003.003-.002a.254.254 0 0 1 .029-.036c.117-.124.279-.185.437-.248a.931.931 0 0 0 .187-.097c.009-.088.003-.189.01-.246a.27.27 0 0 1 .093-.178c.16-.17.522-.23.707-.296a.817.817 0 0 0 .22-.108c.04-.03.036-.133.07-.18.09-.126.259-.19.408-.23.167-.045.342-.053.508-.1a.778.778 0 0 0 .233-.098c.055-.039.082-.113.146-.154.323-.205.74-.116 1.093-.237.125-.043.211-.136.341-.177.176-.056.37-.073.555-.064.164.008.334-.009.493-.05.142-.035.26-.11.408-.136.327-.057.652.03.98-.02.043.551.083 1.081.11 1.475-.67.17-1.125.495-1.125.87 0 .553.983 1 2.195 1 1.212 0 2.195-.447 2.195-1 0-.366-.435-.683-1.08-.858.034-.404.072-.866.123-1.508zm3.865 2.053c-.318 0-.626.059-.891.17-.375.157-.6.407-.634.703a.645.645 0 0 0 .022.252l.02.409.01.2.002.027a1.288 1.288 0 0 0-.347-.207 2.306 2.306 0 0 0-.892-.17c-.319 0-.627.058-.892.169-.375.157-.6.407-.633.703a.645.645 0 0 0 .023.258l.02.402.01.201a.467.467 0 0 0 .073.268l.026.044c.117.214.336.388.63.501.232.09.493.137.754.137.34 0 .662-.078.93-.226.324-.178.51-.436.526-.725a.7.7 0 0 1 .006-.074c.004-.03.008-.058.011-.119l.023-.416a.656.656 0 0 0 .026-.173c0-.016-.003-.032-.004-.049.116.106.263.195.438.262.233.09.493.137.755.137.34 0 .661-.078.93-.226.324-.179.51-.436.525-.725.002-.042.004-.056.006-.074a.948.948 0 0 0 .011-.12l.023-.41a.656.656 0 0 0 .026-.178c.001-.299-.192-.56-.543-.735a2.312 2.312 0 0 0-.99-.216zm0 .27a2.03 2.03 0 0 1 .862.183c.164.082.402.243.401.498 0 .09-.033.175-.092.254l-.134.116a1.033 1.033 0 0 1-.217.143c-.01.004-.018.01-.028.013a2.06 2.06 0 0 1-.788.149c-.293 0-.571-.056-.807-.16l-.025-.01a1.037 1.037 0 0 1-.207-.14l-.132-.114a.414.414 0 0 1-.09-.299c.023-.194.19-.366.47-.484.232-.098.505-.149.787-.149zm-1.212 1.266c.074.06.16.112.256.157.017.011.037.017.054.024.268.128.58.198.906.198.327 0 .642-.068.912-.196l.023-.013a1.34 1.34 0 0 0 .274-.164c-.006.08-.011.077-.016.177-.012.228-.198.399-.385.502a1.68 1.68 0 0 1-.8.193 1.85 1.85 0 0 1-.658-.119c-.192-.074-.389-.194-.49-.38-.059-.103-.061-.08-.067-.194a57.658 57.658 0 0 0-.009-.185zm-1.498.117a2.03 2.03 0 0 1 .862.184c.164.08.401.242.4.497a.42.42 0 0 1-.093.255l-.132.115a1.03 1.03 0 0 1-.213.14 2.053 2.053 0 0 1-.82.165 2.02 2.02 0 0 1-.802-.157l-.03-.013a1.032 1.032 0 0 1-.207-.139l-.133-.116a.413.413 0 0 1-.089-.297c.022-.195.19-.367.47-.485a2.04 2.04 0 0 1 .787-.149zm-1.212 1.266c.08.064.173.122.28.17l.033.013c.268.127.577.196.903.196.327 0 .642-.067.912-.196l.025-.014c.103-.047.194-.102.271-.163-.005.08-.01.078-.016.177-.011.228-.197.4-.385.502a1.665 1.665 0 0 1-.8.193 1.82 1.82 0 0 1-.657-.119c-.192-.074-.389-.194-.491-.38-.058-.104-.06-.08-.066-.194l-.01-.185zm-8.06 2.297c.097.063.205.11.318.14.408.11 1.054-.132 1.236.345.208.541.85.741 1.381.698.43-.035 1.06-.306 1.41.092.404.46 1.092.576 1.665.425.525-.138.91-.457 1.478-.238.627.24 1.206.454 1.853.102.455-.247.623-.592 1.215-.492.522.089 1.02.2 1.503-.104.352-.22.362-.73.783-.78.37-.044.731.044 1.083-.139h.002l-.036.094-1.013 2.66c-.328.863-1.097 1.584-2.223 2.087-1.048.467-2.372.725-3.728.725-1.347 0-2.656-.255-3.686-.717-1.11-.498-1.866-1.217-2.188-2.08L5.02 18.115Z" }) + ] + } + ); +}); + +exports.default = SiRetropie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.d.ts new file mode 100644 index 000000000..e353e7e3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiRetropie: IconType; +export { SiRetropie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.mjs new file mode 100644 index 000000000..ed3e14567 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRetropie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiRetropie = React.forwardRef(function SiRetropie2({ title = "RetroPie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.923 0a3.59 3.59 0 0 0-1.531 6.839c.04.475.18 2.156.315 3.874a1.356 1.356 0 0 1-.126.016c-.25.016-.499-.027-.748-.007-.32.024-.59.197-.914.197-.298 0-.608-.006-.88.136-.446.232-1.106.086-1.474.467-.298.308-.859.153-1.199.475-.088.083-.101.222-.213.26-.126.043-.257.07-.383.113-.247.083-.51.226-.607.486-.061.166.022.188-.146.257a1.38 1.38 0 0 0-.33.182c-.182.141-.231.336-.258.568-.002.017.003.315.003.314a.918.918 0 0 0-.221.256c-.133.235-.107.484-.009.728.107.264.198.364.209.636-.012.13.05.266.098.383.192.47.307.835.831.884l1.48 3.964C6.564 23.015 9.25 24 11.949 24c2.72 0 5.448-1.001 6.204-2.986l1.522-4.002c.327-.06.603-.178.726-.538.086-.189.174-.393.202-.6a.674.674 0 0 0-.01-.249c.062-.08.123-.15.167-.243.211-.445.162-.964-.268-1.25.114-.407-.014-.695-.385-.91-.188-.109-.29-.091-.347-.296-.053-.19-.14-.339-.307-.437-.215-.126-.458-.15-.684-.243-.093-.242-.33-.385-.565-.462-.195-.064-.398-.073-.594-.126-.203-.054-.317-.242-.524-.318-.225-.081-.463-.089-.698-.113-.253-.027-.43-.18-.669-.243-.253-.066-.502-.05-.758-.065-.258-.015-.476-.15-.73-.182-.202-.026-.403-.009-.606-.001a2.01 2.01 0 0 1-.474-.053c.136-1.721.266-3.391.3-3.843A3.59 3.59 0 0 0 11.924 0zm.95.826c.292-.007.684.158 1.009.518.518.573.59 1.257.332 1.397-.261.145-.741-.145-1.187-.529-.438-.388-.721-.863-.536-1.193.068-.123.207-.19.382-.193zM10.766 6.99a3.584 3.584 0 0 0 2.312 0c-.197 2.54-.459 5.87-.486 6.08-.014.083-.098.176-.218.242a1 1 0 0 1-.464.102c-.027 0-.664-.005-.68-.409-.032-.825-.342-4.563-.464-6.015zm2.371 3.856c.077.017.156.032.237.04.302.025.597-.048.899.015.137.028.25.101.385.134.168.04.339.047.511.043a1.68 1.68 0 0 1 .463.052c.164.044.273.156.43.204.352.106.793.02 1.095.254.059.045.08.113.145.148.068.036.143.061.218.082.13.035.265.046.396.074.151.032.311.082.43.178a.31.31 0 0 1 .12.197c.009.072.088.1.156.13.215.094.453.11.657.232a.46.46 0 0 1 .205.227l.006.02.002.006.01.044c.004.034.014.132.027.222.057.04.12.073.186.099.18.071.474.207.537.4a.208.208 0 0 1 .003.007l.004.023a.24.24 0 0 1-.001.124c-.02.075-.066.238-.095.366.105.077.228.133.317.23.046.05.081.11.1.172l.001.001.002.007.007.03c.046.185-.041.53-.136.636a2.1 2.1 0 0 0-.182.253.44.44 0 0 1 .054.166l.002.018v.016l-.001.029-.002.012-.003.018a2.249 2.249 0 0 1-.18.53c-.12.387-.574.307-.864.408-.028.154-.164.81-.284.965-.237.305-.633.282-.969.27a1.17 1.17 0 0 0-.503.089.668.668 0 0 0-.2.13c-.078.075-.09.155-.121.254-.108.352-.47.512-.795.543-.271.025-.509-.057-.772-.102a1.548 1.548 0 0 0-.773.058.87.87 0 0 0-.322.187c-.086.082-.154.173-.253.24a1.3 1.3 0 0 1-.735.211c-.261 0-.525-.066-.754-.2a1.485 1.485 0 0 0-.747-.183c-.255 0-.522.05-.747.183a1.49 1.49 0 0 1-.757.203c-.337 0-.694-.112-.926-.38-.182-.211-.457-.3-.72-.328-.378-.04-.718.123-1.09.123-.33 0-.713-.112-.889-.431-.067-.123-.067-.267-.17-.367-.135-.132-.33-.192-.509-.214-.354-.044-.702.068-1.03-.14a.586.586 0 0 1-.263-.372c-.023-.084-.161-.562-.18-.663-.029-.15-.484-.048-.637-.135-.138-.08-.208-.29-.253-.389-.044-.098-.18-.405-.19-.5l.006-.005c-.001-.012-.004-.023-.004-.036a.423.423 0 0 1 .104-.283.697.697 0 0 1-.199-.194c-.044-.085-.255-.454-.19-.64l.005-.004a.523.523 0 0 1 .18-.262c.069-.057.16-.1.237-.154a.476.476 0 0 1-.058-.054c-.1-.136-.081-.427.014-.566l.012-.02.002-.003.003-.002a.254.254 0 0 1 .029-.036c.117-.124.279-.185.437-.248a.931.931 0 0 0 .187-.097c.009-.088.003-.189.01-.246a.27.27 0 0 1 .093-.178c.16-.17.522-.23.707-.296a.817.817 0 0 0 .22-.108c.04-.03.036-.133.07-.18.09-.126.259-.19.408-.23.167-.045.342-.053.508-.1a.778.778 0 0 0 .233-.098c.055-.039.082-.113.146-.154.323-.205.74-.116 1.093-.237.125-.043.211-.136.341-.177.176-.056.37-.073.555-.064.164.008.334-.009.493-.05.142-.035.26-.11.408-.136.327-.057.652.03.98-.02.043.551.083 1.081.11 1.475-.67.17-1.125.495-1.125.87 0 .553.983 1 2.195 1 1.212 0 2.195-.447 2.195-1 0-.366-.435-.683-1.08-.858.034-.404.072-.866.123-1.508zm3.865 2.053c-.318 0-.626.059-.891.17-.375.157-.6.407-.634.703a.645.645 0 0 0 .022.252l.02.409.01.2.002.027a1.288 1.288 0 0 0-.347-.207 2.306 2.306 0 0 0-.892-.17c-.319 0-.627.058-.892.169-.375.157-.6.407-.633.703a.645.645 0 0 0 .023.258l.02.402.01.201a.467.467 0 0 0 .073.268l.026.044c.117.214.336.388.63.501.232.09.493.137.754.137.34 0 .662-.078.93-.226.324-.178.51-.436.526-.725a.7.7 0 0 1 .006-.074c.004-.03.008-.058.011-.119l.023-.416a.656.656 0 0 0 .026-.173c0-.016-.003-.032-.004-.049.116.106.263.195.438.262.233.09.493.137.755.137.34 0 .661-.078.93-.226.324-.179.51-.436.525-.725.002-.042.004-.056.006-.074a.948.948 0 0 0 .011-.12l.023-.41a.656.656 0 0 0 .026-.178c.001-.299-.192-.56-.543-.735a2.312 2.312 0 0 0-.99-.216zm0 .27a2.03 2.03 0 0 1 .862.183c.164.082.402.243.401.498 0 .09-.033.175-.092.254l-.134.116a1.033 1.033 0 0 1-.217.143c-.01.004-.018.01-.028.013a2.06 2.06 0 0 1-.788.149c-.293 0-.571-.056-.807-.16l-.025-.01a1.037 1.037 0 0 1-.207-.14l-.132-.114a.414.414 0 0 1-.09-.299c.023-.194.19-.366.47-.484.232-.098.505-.149.787-.149zm-1.212 1.266c.074.06.16.112.256.157.017.011.037.017.054.024.268.128.58.198.906.198.327 0 .642-.068.912-.196l.023-.013a1.34 1.34 0 0 0 .274-.164c-.006.08-.011.077-.016.177-.012.228-.198.399-.385.502a1.68 1.68 0 0 1-.8.193 1.85 1.85 0 0 1-.658-.119c-.192-.074-.389-.194-.49-.38-.059-.103-.061-.08-.067-.194a57.658 57.658 0 0 0-.009-.185zm-1.498.117a2.03 2.03 0 0 1 .862.184c.164.08.401.242.4.497a.42.42 0 0 1-.093.255l-.132.115a1.03 1.03 0 0 1-.213.14 2.053 2.053 0 0 1-.82.165 2.02 2.02 0 0 1-.802-.157l-.03-.013a1.032 1.032 0 0 1-.207-.139l-.133-.116a.413.413 0 0 1-.089-.297c.022-.195.19-.367.47-.485a2.04 2.04 0 0 1 .787-.149zm-1.212 1.266c.08.064.173.122.28.17l.033.013c.268.127.577.196.903.196.327 0 .642-.067.912-.196l.025-.014c.103-.047.194-.102.271-.163-.005.08-.01.078-.016.177-.011.228-.197.4-.385.502a1.665 1.665 0 0 1-.8.193 1.82 1.82 0 0 1-.657-.119c-.192-.074-.389-.194-.491-.38-.058-.104-.06-.08-.066-.194l-.01-.185zm-8.06 2.297c.097.063.205.11.318.14.408.11 1.054-.132 1.236.345.208.541.85.741 1.381.698.43-.035 1.06-.306 1.41.092.404.46 1.092.576 1.665.425.525-.138.91-.457 1.478-.238.627.24 1.206.454 1.853.102.455-.247.623-.592 1.215-.492.522.089 1.02.2 1.503-.104.352-.22.362-.73.783-.78.37-.044.731.044 1.083-.139h.002l-.036.094-1.013 2.66c-.328.863-1.097 1.584-2.223 2.087-1.048.467-2.372.725-3.728.725-1.347 0-2.656-.255-3.686-.717-1.11-.498-1.866-1.217-2.188-2.08L5.02 18.115Z" }) + ] + } + ); +}); + +export { SiRetropie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.cjs new file mode 100644 index 000000000..92a46ea11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9ED5FF"; +const SiRevanced = React__namespace.forwardRef(function SiRevanced2({ title = "ReVanced", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.1 0a.28.28 0 0 0-.23.42l6.88 11.93a.28.28 0 0 0 .48 0L19.13.42A.28.28 0 0 0 18.9 0ZM.5 0a.33.33 0 0 0-.3.46L10.43 23.8c.05.12.17.2.3.2h2.54c.13 0 .25-.08.3-.2L23.8.46a.33.33 0 0 0-.3-.46h-2.32a.24.24 0 0 0-.21.14L12.2 20.08a.23.23 0 0 1-.42 0L3.03.14A.23.23 0 0 0 2.82 0Z" }) + ] + } + ); +}); + +exports.default = SiRevanced; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.d.ts new file mode 100644 index 000000000..f7bd576b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9ED5FF"; +declare const SiRevanced: IconType; +export { SiRevanced as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.mjs new file mode 100644 index 000000000..05b9f10c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevanced.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9ED5FF"; +const SiRevanced = React.forwardRef(function SiRevanced2({ title = "ReVanced", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.1 0a.28.28 0 0 0-.23.42l6.88 11.93a.28.28 0 0 0 .48 0L19.13.42A.28.28 0 0 0 18.9 0ZM.5 0a.33.33 0 0 0-.3.46L10.43 23.8c.05.12.17.2.3.2h2.54c.13 0 .25-.08.3-.2L23.8.46a.33.33 0 0 0-.3-.46h-2.32a.24.24 0 0 0-.21.14L12.2 20.08a.23.23 0 0 1-.42 0L3.03.14A.23.23 0 0 0 2.82 0Z" }) + ] + } + ); +}); + +export { SiRevanced as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.cjs new file mode 100644 index 000000000..a2bb4640c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2E142"; +const SiRevealdotjs = React__namespace.forwardRef(function SiRevealdotjs2({ title = "reveal.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.271 1.352a.774.774 0 0 0-.787.775v19.761c0 .49.45.857.93.758l6.676-1.382-2.77-.614-3.675.762V2.607l3.101.686 2.777-.574-6.097-1.35a.774.774 0 0 0-.155-.017zm15.315.002L5.145 4.344v15.092l14.43 3.195a.774.774 0 0 0 .94-.758V2.111a.773.773 0 0 0-.93-.757zM2.984 4.79l-2.367.49A.774.774 0 0 0 0 6.04v11.639a.774.774 0 0 0 .607.754l2.377.525V4.791zm18.034.252V6.23l1.822.405v11.011l-1.822.377v1.186l2.365-.49A.774.774 0 0 0 24 17.96V6.322a.774.774 0 0 0-.607-.754l-2.375-.525z" }) + ] + } + ); +}); + +exports.default = SiRevealdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.d.ts new file mode 100644 index 000000000..67f321797 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2E142"; +declare const SiRevealdotjs: IconType; +export { SiRevealdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.mjs new file mode 100644 index 000000000..80c36d6ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevealdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2E142"; +const SiRevealdotjs = React.forwardRef(function SiRevealdotjs2({ title = "reveal.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.271 1.352a.774.774 0 0 0-.787.775v19.761c0 .49.45.857.93.758l6.676-1.382-2.77-.614-3.675.762V2.607l3.101.686 2.777-.574-6.097-1.35a.774.774 0 0 0-.155-.017zm15.315.002L5.145 4.344v15.092l14.43 3.195a.774.774 0 0 0 .94-.758V2.111a.773.773 0 0 0-.93-.757zM2.984 4.79l-2.367.49A.774.774 0 0 0 0 6.04v11.639a.774.774 0 0 0 .607.754l2.377.525V4.791zm18.034.252V6.23l1.822.405v11.011l-1.822.377v1.186l2.365-.49A.774.774 0 0 0 24 17.96V6.322a.774.774 0 0 0-.607-.754l-2.375-.525z" }) + ] + } + ); +}); + +export { SiRevealdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.cjs new file mode 100644 index 000000000..7d608c7bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2545B"; +const SiRevenuecat = React__namespace.forwardRef(function SiRevenuecat2({ title = "RevenueCat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.3036.3999c-1.5246 0-3.2129.1508-4.303.4136v14.9997c.3083.1722.8432.28 1.5632.28.7404 0 1.2553-.1072 1.5433-.28v-5.2323a14.8588 14.8588 0 0 0 2.121.1512h.3294l2.8604 5.0588c.432.195 1.0288.3024 1.9348.3024.8033 0 1.38-.1104 1.6476-.3024l-3.437-5.8358c1.4195-.8004 2.326-2.2698 2.326-4.4964C10.8894 1.827 8.4232.4 4.3037.4zm15.4543 0c-1.3788 0-2.624.2707-3.6901.7945-2.4552 1.203-3.9609 3.7376-3.9609 7.3627 0 4.8245 2.6552 7.7155 7.1659 7.7155.9 0 1.5868-.3014 2.005.2554.4194.5568-.3582 1.2165-.7746 1.5105-1.6338 1.1544-5.7217-.1024-9.4908-.4804C5.5994 17.015.9264 16.3009.146 19.1928c-.4104 1.5264.1225 2.5013.6421 3.0503 1.044 1.1046 2.882 1.357 4.344 1.357a13.959 13.959 0 0 0 2.0508-.1558 1.311 1.311 0 0 0 1.023-.8063c.1674-.4254.0861-.904-.212-1.2562a1.3464 1.3464 0 0 0-1.2352-.4523c-1.5012.2706-3.6213.8685-4.4343.0105-.2748-.291-.2268-1.0037 0-1.2257.6048-.8748 4.493-.5393 8.4127-.0293 4.329.4344 8.4023 1.8609 10.945.6351.9955-.48 2.318-1.1941 2.318-3.792h-.0012c0-1.1473-.1489-2.274-.4476-3.3797-1.3818.1872-2.4783.2857-3.2883.2941-2.845 0-4.869-1.4484-4.869-5.0963 0-3.648 2.0461-5.1573 5.0179-5.1573 1.2011 0 2.129.2512 3.1405.7336.1062-.9234-.1058-2.1605-.5906-2.8523-.78-.4608-2.0014-.6703-3.2038-.6703zM4.51 3.1889c2.0579 0 3.2108.7111 3.2108 2.4421 0 1.6824-1.0912 2.3554-2.8816 2.3554a10.2838 10.2838 0 0 1-1.7706-.1511V3.3166a7.7782 7.7782 0 0 1 1.4413-.1277z" }) + ] + } + ); +}); + +exports.default = SiRevenuecat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.d.ts new file mode 100644 index 000000000..c1738a873 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2545B"; +declare const SiRevenuecat: IconType; +export { SiRevenuecat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.mjs new file mode 100644 index 000000000..0124fb446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevenuecat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2545B"; +const SiRevenuecat = React.forwardRef(function SiRevenuecat2({ title = "RevenueCat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.3036.3999c-1.5246 0-3.2129.1508-4.303.4136v14.9997c.3083.1722.8432.28 1.5632.28.7404 0 1.2553-.1072 1.5433-.28v-5.2323a14.8588 14.8588 0 0 0 2.121.1512h.3294l2.8604 5.0588c.432.195 1.0288.3024 1.9348.3024.8033 0 1.38-.1104 1.6476-.3024l-3.437-5.8358c1.4195-.8004 2.326-2.2698 2.326-4.4964C10.8894 1.827 8.4232.4 4.3037.4zm15.4543 0c-1.3788 0-2.624.2707-3.6901.7945-2.4552 1.203-3.9609 3.7376-3.9609 7.3627 0 4.8245 2.6552 7.7155 7.1659 7.7155.9 0 1.5868-.3014 2.005.2554.4194.5568-.3582 1.2165-.7746 1.5105-1.6338 1.1544-5.7217-.1024-9.4908-.4804C5.5994 17.015.9264 16.3009.146 19.1928c-.4104 1.5264.1225 2.5013.6421 3.0503 1.044 1.1046 2.882 1.357 4.344 1.357a13.959 13.959 0 0 0 2.0508-.1558 1.311 1.311 0 0 0 1.023-.8063c.1674-.4254.0861-.904-.212-1.2562a1.3464 1.3464 0 0 0-1.2352-.4523c-1.5012.2706-3.6213.8685-4.4343.0105-.2748-.291-.2268-1.0037 0-1.2257.6048-.8748 4.493-.5393 8.4127-.0293 4.329.4344 8.4023 1.8609 10.945.6351.9955-.48 2.318-1.1941 2.318-3.792h-.0012c0-1.1473-.1489-2.274-.4476-3.3797-1.3818.1872-2.4783.2857-3.2883.2941-2.845 0-4.869-1.4484-4.869-5.0963 0-3.648 2.0461-5.1573 5.0179-5.1573 1.2011 0 2.129.2512 3.1405.7336.1062-.9234-.1058-2.1605-.5906-2.8523-.78-.4608-2.0014-.6703-3.2038-.6703zM4.51 3.1889c2.0579 0 3.2108.7111 3.2108 2.4421 0 1.6824-1.0912 2.3554-2.8816 2.3554a10.2838 10.2838 0 0 1-1.7706-.1511V3.3166a7.7782 7.7782 0 0 1 1.4413-.1277z" }) + ] + } + ); +}); + +export { SiRevenuecat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.cjs new file mode 100644 index 000000000..db2522ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E43526"; +const SiReverbnation = React__namespace.forwardRef(function SiReverbnation2({ title = "ReverbNation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 9.324l-9.143-.03L11.971.57 9.143 9.294 0 9.324h.031l7.367 5.355-2.855 8.749h.029l7.459-5.386 7.396 5.386-2.855-8.73L24 9.315" }) + ] + } + ); +}); + +exports.default = SiReverbnation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.d.ts new file mode 100644 index 000000000..918f6bd4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E43526"; +declare const SiReverbnation: IconType; +export { SiReverbnation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.mjs new file mode 100644 index 000000000..1883a194a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiReverbnation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E43526"; +const SiReverbnation = React.forwardRef(function SiReverbnation2({ title = "ReverbNation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 9.324l-9.143-.03L11.971.57 9.143 9.294 0 9.324h.031l7.367 5.355-2.855 8.749h.029l7.459-5.386 7.396 5.386-2.855-8.73L24 9.315" }) + ] + } + ); +}); + +export { SiReverbnation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.cjs new file mode 100644 index 000000000..dd42d9c20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4655"; +const SiRevoltdotchat = React__namespace.forwardRef(function SiRevoltdotchat2({ title = "Revolt.chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.005 7.796c0 1.88-1.023 3.009-3.207 3.009h-3.615v-5.95H13.8c2.183 0 3.206 1.162 3.206 2.94zM.853 0l3.5 4.866v19.133h5.832v-9.06h1.398L16.563 24h6.583l-5.525-9.504a6.966 6.966 0 0 0 3.879-2.532 7 7 0 0 0 1.44-4.408C22.94 3.384 20.009 0 14.143 0h-9.79z" }) + ] + } + ); +}); + +exports.default = SiRevoltdotchat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.d.ts new file mode 100644 index 000000000..942962fc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4655"; +declare const SiRevoltdotchat: IconType; +export { SiRevoltdotchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.mjs new file mode 100644 index 000000000..2a7c63b3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevoltdotchat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4655"; +const SiRevoltdotchat = React.forwardRef(function SiRevoltdotchat2({ title = "Revolt.chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.005 7.796c0 1.88-1.023 3.009-3.207 3.009h-3.615v-5.95H13.8c2.183 0 3.206 1.162 3.206 2.94zM.853 0l3.5 4.866v19.133h5.832v-9.06h1.398L16.563 24h6.583l-5.525-9.504a6.966 6.966 0 0 0 3.879-2.532 7 7 0 0 0 1.44-4.408C22.94 3.384 20.009 0 14.143 0h-9.79z" }) + ] + } + ); +}); + +export { SiRevoltdotchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.cjs new file mode 100644 index 000000000..b08703d40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#191C1F"; +const SiRevolut = React__namespace.forwardRef(function SiRevolut2({ title = "Revolut", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.9133 6.9566C20.9133 3.1208 17.7898 0 13.9503 0H2.424v3.8605h10.9782c1.7376 0 3.177 1.3651 3.2087 3.043.016.84-.2994 1.633-.8878 2.2324-.5886.5998-1.375.9303-2.2144.9303H9.2322a.2756.2756 0 0 0-.2755.2752v3.431c0 .0585.018.1142.052.1612L16.2646 24h5.3114l-7.2727-10.094c3.6625-.1838 6.61-3.2612 6.61-6.9494zM6.8943 5.9229H2.424V24h4.4704z" }) + ] + } + ); +}); + +exports.default = SiRevolut; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.d.ts new file mode 100644 index 000000000..6477cafad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#191C1F"; +declare const SiRevolut: IconType; +export { SiRevolut as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.mjs new file mode 100644 index 000000000..b61638db4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRevolut.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#191C1F"; +const SiRevolut = React.forwardRef(function SiRevolut2({ title = "Revolut", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.9133 6.9566C20.9133 3.1208 17.7898 0 13.9503 0H2.424v3.8605h10.9782c1.7376 0 3.177 1.3651 3.2087 3.043.016.84-.2994 1.633-.8878 2.2324-.5886.5998-1.375.9303-2.2144.9303H9.2322a.2756.2756 0 0 0-.2755.2752v3.431c0 .0585.018.1142.052.1612L16.2646 24h5.3114l-7.2727-10.094c3.6625-.1838 6.61-3.2612 6.61-6.9494zM6.8943 5.9229H2.424V24h4.4704z" }) + ] + } + ); +}); + +export { SiRevolut as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.cjs new file mode 100644 index 000000000..5732245b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC071E"; +const SiRewe = React__namespace.forwardRef(function SiRewe2({ title = "REWE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.597 12.45h.025l.579-3.166c.066-.36.214-.488.63-.488h.58c.307 0 .481.118.481.395 0 .064-.009.135-.026.216l-1.278 5.285c-.078.357-.195.512-.635.512h-.696c-.396 0-.51-.138-.598-.495l-.799-3.449h-.015l-.807 3.455c-.081.363-.195.49-.588.49h-.697c-.449 0-.56-.145-.642-.497l-1.269-5.3c-.016-.082-.036-.153-.036-.216 0-.278.18-.396.49-.396h.69c.417 0 .57.126.635.488l.575 3.167h.015l.738-3.167c.085-.362.233-.488.63-.488h.653c.391 0 .543.126.63.488l.735 3.167zM.498 15.205c-.349 0-.498-.144-.498-.496V9.3c0-.355.15-.503.498-.503h1.835c1.984 0 2.736.747 2.736 2.02 0 .776-.42 1.425-1.35 1.75l1.467 2.025c.089.124.125.22.125.306 0 .205-.24.307-.508.307H3.72c-.32 0-.444-.126-.669-.49l-1.206-1.931h-.019v1.926c0 .353-.15.495-.51.495H.498zm19.479 0c-.35 0-.485-.127-.485-.478V9.285c0-.362.136-.49.485-.49h3.251c.356 0 .486.127.486.489v.462c0 .347-.13.478-.486.478h-1.867v1.061h1.583c.358 0 .484.13.484.49v.426c0 .348-.126.477-.485.477H21.36v1.095h2.143c.363 0 .497.133.497.49v.463c0 .351-.134.478-.497.478h-3.526zm-13.411 0c-.351 0-.498-.144-.498-.496V9.3c0-.355.147-.503.498-.503h3.211c.354 0 .504.149.504.503v.429c0 .347-.15.496-.504.496H7.928v1.06H9.49c.36 0 .511.146.511.507v.388c0 .35-.15.499-.51.499H7.927v1.094h2.131c.356 0 .51.146.51.512v.423c0 .352-.154.495-.51.495H6.566zM2.351 11.68c.557 0 .793-.234.793-.743s-.236-.745-.793-.745h-.526v1.488h.526Z" }) + ] + } + ); +}); + +exports.default = SiRewe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.d.ts new file mode 100644 index 000000000..e49618ca1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC071E"; +declare const SiRewe: IconType; +export { SiRewe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.mjs new file mode 100644 index 000000000..e86969753 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRewe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC071E"; +const SiRewe = React.forwardRef(function SiRewe2({ title = "REWE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.597 12.45h.025l.579-3.166c.066-.36.214-.488.63-.488h.58c.307 0 .481.118.481.395 0 .064-.009.135-.026.216l-1.278 5.285c-.078.357-.195.512-.635.512h-.696c-.396 0-.51-.138-.598-.495l-.799-3.449h-.015l-.807 3.455c-.081.363-.195.49-.588.49h-.697c-.449 0-.56-.145-.642-.497l-1.269-5.3c-.016-.082-.036-.153-.036-.216 0-.278.18-.396.49-.396h.69c.417 0 .57.126.635.488l.575 3.167h.015l.738-3.167c.085-.362.233-.488.63-.488h.653c.391 0 .543.126.63.488l.735 3.167zM.498 15.205c-.349 0-.498-.144-.498-.496V9.3c0-.355.15-.503.498-.503h1.835c1.984 0 2.736.747 2.736 2.02 0 .776-.42 1.425-1.35 1.75l1.467 2.025c.089.124.125.22.125.306 0 .205-.24.307-.508.307H3.72c-.32 0-.444-.126-.669-.49l-1.206-1.931h-.019v1.926c0 .353-.15.495-.51.495H.498zm19.479 0c-.35 0-.485-.127-.485-.478V9.285c0-.362.136-.49.485-.49h3.251c.356 0 .486.127.486.489v.462c0 .347-.13.478-.486.478h-1.867v1.061h1.583c.358 0 .484.13.484.49v.426c0 .348-.126.477-.485.477H21.36v1.095h2.143c.363 0 .497.133.497.49v.463c0 .351-.134.478-.497.478h-3.526zm-13.411 0c-.351 0-.498-.144-.498-.496V9.3c0-.355.147-.503.498-.503h3.211c.354 0 .504.149.504.503v.429c0 .347-.15.496-.504.496H7.928v1.06H9.49c.36 0 .511.146.511.507v.388c0 .35-.15.499-.51.499H7.927v1.094h2.131c.356 0 .51.146.51.512v.423c0 .352-.154.495-.51.495H6.566zM2.351 11.68c.557 0 .793-.234.793-.743s-.236-.745-.793-.745h-.526v1.488h.526Z" }) + ] + } + ); +}); + +export { SiRewe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.cjs new file mode 100644 index 000000000..d781e02f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F76C00"; +const SiRezgo = React__namespace.forwardRef(function SiRezgo2({ title = "Rezgo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.147 16.705c-.015-3.076.004-6.175-.024-9.238 0-2.052.836-3.917 2.193-5.274A7.438 7.438 0 0 1 17.59 0c1.482.015 2.999.008 4.493.008v3.728c-1.494 0-3.012-.005-4.493.006a3.713 3.713 0 0 0-3.725 3.725c-.01 3.063.004 6.162.01 9.238zm-5.4-.633l-3.61.965c.845 3.15 3.287 5.236 6.274 6.253a13.74 13.74 0 0 0 4.026.704c1.385.039 2.78-.117 4.092-.469 3.31-.886 6.186-3 7.334-6.371l-3.538-1.199c-.699 2.053-2.574 3.374-4.76 3.96-.982.263-2.013.38-3.025.352a10 10 0 0 1-2.93-.514c-1.868-.636-3.378-1.87-3.862-3.681zM6.986 3.354a2.887 2.887 0 1 1-5.775 0 2.887 2.887 0 0 1 5.775 0Z" }) + ] + } + ); +}); + +exports.default = SiRezgo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.d.ts new file mode 100644 index 000000000..17c9ee24a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F76C00"; +declare const SiRezgo: IconType; +export { SiRezgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.mjs new file mode 100644 index 000000000..a2f11b426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRezgo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F76C00"; +const SiRezgo = React.forwardRef(function SiRezgo2({ title = "Rezgo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.147 16.705c-.015-3.076.004-6.175-.024-9.238 0-2.052.836-3.917 2.193-5.274A7.438 7.438 0 0 1 17.59 0c1.482.015 2.999.008 4.493.008v3.728c-1.494 0-3.012-.005-4.493.006a3.713 3.713 0 0 0-3.725 3.725c-.01 3.063.004 6.162.01 9.238zm-5.4-.633l-3.61.965c.845 3.15 3.287 5.236 6.274 6.253a13.74 13.74 0 0 0 4.026.704c1.385.039 2.78-.117 4.092-.469 3.31-.886 6.186-3 7.334-6.371l-3.538-1.199c-.699 2.053-2.574 3.374-4.76 3.96-.982.263-2.013.38-3.025.352a10 10 0 0 1-2.93-.514c-1.868-.636-3.378-1.87-3.862-3.681zM6.986 3.354a2.887 2.887 0 1 1-5.775 0 2.887 2.887 0 0 1 5.775 0Z" }) + ] + } + ); +}); + +export { SiRezgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.cjs new file mode 100644 index 000000000..a370985de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#801010"; +const SiRhinoceros = React__namespace.forwardRef(function SiRhinoceros2({ title = "Rhinoceros", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.823 3.103c-.1 0-.213.006-.34.017-.511.044-1.25.18-1.802.329a6.269 6.269 0 0 0-1.15.42c-.231.112-.33.178-.354.273-.023.094.028.217.16.436s.346.533.535.961c.19.428.356.97.361 1.651.006.68-.149 1.5-.245 1.962-.096.462-.133.568-.227.618-.094.05-.245.044-.525-.021-.281-.065-.69-.187-1.1-.259-.41-.072-.819-.093-1.122-.038-.304.056-.504.189-.645.369-.14.18-.224.406-.282.75A6.957 6.957 0 0 0 0 11.687c.005.317.047.49.136.584.088.094.223.109.492.054s.672-.18 1.224-.215a6.302 6.302 0 0 1 1.94.202c.685.182 1.353.49 1.95.93.598.438 1.127 1.007 1.566 1.593.438.586.787 1.189 1.004 1.541.217.353.304.455.372.42.068-.035.117-.207.145-.417a3.141 3.141 0 0 0-.02-.848 7.467 7.467 0 0 0-.32-1.365 5.617 5.617 0 0 0-.495-1.018c-.146-.247-.241-.408-.245-.51-.004-.103.085-.148.51-.315.424-.167 1.185-.457 1.958-.808.772-.351 1.556-.764 2.042-1.106.486-.341.674-.61.724-.937.05-.326-.039-.71-.16-1.076a6.93 6.93 0 0 0-.529-1.193A13.696 13.696 0 0 0 11.28 5.6a9.187 9.187 0 0 0-1.1-1.236c-.282-.255-.421-.31-.51-.29-.09.02-.131.115-.168.47-.037.356-.07.973-.144 1.559a7.468 7.468 0 0 1-.432 1.773 12.543 12.543 0 0 1-.99 1.982c-.388.64-.803 1.212-1.054 1.462-.25.25-.336.18-.477.064l-.486-.4c-.15-.125-.253-.213-.273-.293-.02-.08.045-.15.27-.448.227-.299.615-.825.96-1.478a7.75 7.75 0 0 0 .796-2.282 10.1 10.1 0 0 0 .095-2.338c-.044-.564-.124-.77-.306-.896-.137-.095-.332-.146-.638-.146zm6.48 7.034h-.012c-.084.01-.192.112-.415.294a6.86 6.86 0 0 1-1.017.7c-.458.257-1.038.507-1.51.734-.47.226-.831.429-1.004.712-.172.283-.155.648.04.85.194.204.566.246.883.259.318.013.58-.002.826.087.246.09.475.285.764.516.288.23.637.498.925.561.289.063.518-.079.766-.202.249-.124.516-.23.888-.225.371.005.847.12 1.318.37.47.248.938.63 1.184.866.247.236.272.327.245.362-.028.036-.108.018-.304-.14-.196-.157-.508-.454-.917-.688-.41-.234-.916-.404-1.4-.391-.482.013-.94.21-1.23.55-.29.34-.412.822-.546 1.164-.133.341-.28.543-.47.617-.19.074-.424.02-.703-.099-.28-.12-.604-.307-.874-.442-.269-.136-.484-.22-.62-.353-.136-.132-.195-.31-.203-.571-.01-.26.032-.6.05-.853.02-.25.018-.413-.038-.56a1.079 1.079 0 0 0-.232-.35c-.07-.07-.099-.075-.113-.058-.014.017-.012.058.01.158.023.1.067.26.05.581-.019.321-.098.803-.16 1.17-.062.366-.107.618-.02.808.087.191.306.322.707.54.4.22.982.527 1.518.855.537.327 1.027.673 1.562 1.089.534.415 1.112.9 1.5 1.238.39.339.588.532.742.59.154.059.264-.018.307-.138.044-.12.023-.285-.014-.429a1.174 1.174 0 0 0-.24-.46 4.92 4.92 0 0 0-.68-.704c-.287-.243-.614-.463-.803-.614-.19-.151-.242-.233-.212-.259.03-.026.14.004.302.108.162.103.375.28.612.459.237.178.499.356.733.584.235.228.443.506.583.706.14.201.214.324.294.372.08.049.165.022.277-.05a3.03 3.03 0 0 0 .426-.355c.178-.169.398-.393.551-.633.154-.24.242-.496.299-.772.056-.276.08-.572.247-.862.167-.29.476-.574.994-1.025.518-.451 1.244-1.07 1.891-1.664.648-.595 1.216-1.165 1.696-1.802.479-.638.87-1.342 1.067-1.743.199-.4.205-.498.14-.526-.063-.027-.198.015-.61.313-.414.297-1.106.849-1.886 1.43-.781.58-1.65 1.19-2.336 1.569-.686.378-1.19.524-1.55.562-.361.037-.58-.034-.724-.11-.143-.077-.21-.158-.224-.241-.013-.084.03-.17.135-.275.106-.106.277-.232.447-.392.17-.16.338-.354.468-.556.13-.202.22-.411.261-.592.042-.181.034-.333-.04-.376-.074-.043-.215.023-.376.11-.162.086-.343.192-.593.3a2.683 2.683 0 0 1-.92.235 1.626 1.626 0 0 1-1.088-.313c-.343-.26-.635-.71-.866-1.147-.23-.438-.398-.865-.512-1.12-.108-.242-.168-.33-.246-.33zm-2.215 4.075a.422.422 0 0 0-.294.115c-.094.086-.145.2-.034.338.112.137.385.297.636.469.252.172.481.357.666.42.184.064.323.006.402-.096.08-.102.1-.247-.003-.404-.103-.157-.327-.325-.564-.481-.238-.157-.488-.302-.681-.346a.574.574 0 0 0-.128-.015zm.252.208c.025 0 .053.003.083.01.118.026.272.115.418.211.145.096.283.2.333.289.05.089.014.163-.048.216a.255.255 0 0 1-.247.053c-.1-.031-.216-.126-.36-.219-.145-.093-.319-.184-.387-.268-.068-.084-.031-.162.029-.218a.26.26 0 0 1 .18-.074zm4.778 3.728c.211-.008.42.06.602.24.183.178.34.467.383.732.042.265-.03.505-.125.692a1.58 1.58 0 0 1-.289.397c-.074.074-.109.095-.14.095h-.003c-.033-.001-.062-.023-.208-.171a7.39 7.39 0 0 1-.573-.642c-.165-.22-.232-.383-.263-.568-.032-.185-.027-.39.082-.536.109-.146.323-.23.534-.239zm.093 1.111a.258.258 0 0 0-.153.046c-.058.041-.105.113-.093.185.012.073.085.146.174.255.089.11.195.255.264.335.068.08.1.093.127.091.029-.002.054-.018.086-.048a.349.349 0 0 0 .094-.157.518.518 0 0 0 .002-.316.668.668 0 0 0-.218-.282.476.476 0 0 0-.283-.109z" }) + ] + } + ); +}); + +exports.default = SiRhinoceros; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.d.ts new file mode 100644 index 000000000..27bd297de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#801010"; +declare const SiRhinoceros: IconType; +export { SiRhinoceros as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.mjs new file mode 100644 index 000000000..9484a654f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRhinoceros.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#801010"; +const SiRhinoceros = React.forwardRef(function SiRhinoceros2({ title = "Rhinoceros", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.823 3.103c-.1 0-.213.006-.34.017-.511.044-1.25.18-1.802.329a6.269 6.269 0 0 0-1.15.42c-.231.112-.33.178-.354.273-.023.094.028.217.16.436s.346.533.535.961c.19.428.356.97.361 1.651.006.68-.149 1.5-.245 1.962-.096.462-.133.568-.227.618-.094.05-.245.044-.525-.021-.281-.065-.69-.187-1.1-.259-.41-.072-.819-.093-1.122-.038-.304.056-.504.189-.645.369-.14.18-.224.406-.282.75A6.957 6.957 0 0 0 0 11.687c.005.317.047.49.136.584.088.094.223.109.492.054s.672-.18 1.224-.215a6.302 6.302 0 0 1 1.94.202c.685.182 1.353.49 1.95.93.598.438 1.127 1.007 1.566 1.593.438.586.787 1.189 1.004 1.541.217.353.304.455.372.42.068-.035.117-.207.145-.417a3.141 3.141 0 0 0-.02-.848 7.467 7.467 0 0 0-.32-1.365 5.617 5.617 0 0 0-.495-1.018c-.146-.247-.241-.408-.245-.51-.004-.103.085-.148.51-.315.424-.167 1.185-.457 1.958-.808.772-.351 1.556-.764 2.042-1.106.486-.341.674-.61.724-.937.05-.326-.039-.71-.16-1.076a6.93 6.93 0 0 0-.529-1.193A13.696 13.696 0 0 0 11.28 5.6a9.187 9.187 0 0 0-1.1-1.236c-.282-.255-.421-.31-.51-.29-.09.02-.131.115-.168.47-.037.356-.07.973-.144 1.559a7.468 7.468 0 0 1-.432 1.773 12.543 12.543 0 0 1-.99 1.982c-.388.64-.803 1.212-1.054 1.462-.25.25-.336.18-.477.064l-.486-.4c-.15-.125-.253-.213-.273-.293-.02-.08.045-.15.27-.448.227-.299.615-.825.96-1.478a7.75 7.75 0 0 0 .796-2.282 10.1 10.1 0 0 0 .095-2.338c-.044-.564-.124-.77-.306-.896-.137-.095-.332-.146-.638-.146zm6.48 7.034h-.012c-.084.01-.192.112-.415.294a6.86 6.86 0 0 1-1.017.7c-.458.257-1.038.507-1.51.734-.47.226-.831.429-1.004.712-.172.283-.155.648.04.85.194.204.566.246.883.259.318.013.58-.002.826.087.246.09.475.285.764.516.288.23.637.498.925.561.289.063.518-.079.766-.202.249-.124.516-.23.888-.225.371.005.847.12 1.318.37.47.248.938.63 1.184.866.247.236.272.327.245.362-.028.036-.108.018-.304-.14-.196-.157-.508-.454-.917-.688-.41-.234-.916-.404-1.4-.391-.482.013-.94.21-1.23.55-.29.34-.412.822-.546 1.164-.133.341-.28.543-.47.617-.19.074-.424.02-.703-.099-.28-.12-.604-.307-.874-.442-.269-.136-.484-.22-.62-.353-.136-.132-.195-.31-.203-.571-.01-.26.032-.6.05-.853.02-.25.018-.413-.038-.56a1.079 1.079 0 0 0-.232-.35c-.07-.07-.099-.075-.113-.058-.014.017-.012.058.01.158.023.1.067.26.05.581-.019.321-.098.803-.16 1.17-.062.366-.107.618-.02.808.087.191.306.322.707.54.4.22.982.527 1.518.855.537.327 1.027.673 1.562 1.089.534.415 1.112.9 1.5 1.238.39.339.588.532.742.59.154.059.264-.018.307-.138.044-.12.023-.285-.014-.429a1.174 1.174 0 0 0-.24-.46 4.92 4.92 0 0 0-.68-.704c-.287-.243-.614-.463-.803-.614-.19-.151-.242-.233-.212-.259.03-.026.14.004.302.108.162.103.375.28.612.459.237.178.499.356.733.584.235.228.443.506.583.706.14.201.214.324.294.372.08.049.165.022.277-.05a3.03 3.03 0 0 0 .426-.355c.178-.169.398-.393.551-.633.154-.24.242-.496.299-.772.056-.276.08-.572.247-.862.167-.29.476-.574.994-1.025.518-.451 1.244-1.07 1.891-1.664.648-.595 1.216-1.165 1.696-1.802.479-.638.87-1.342 1.067-1.743.199-.4.205-.498.14-.526-.063-.027-.198.015-.61.313-.414.297-1.106.849-1.886 1.43-.781.58-1.65 1.19-2.336 1.569-.686.378-1.19.524-1.55.562-.361.037-.58-.034-.724-.11-.143-.077-.21-.158-.224-.241-.013-.084.03-.17.135-.275.106-.106.277-.232.447-.392.17-.16.338-.354.468-.556.13-.202.22-.411.261-.592.042-.181.034-.333-.04-.376-.074-.043-.215.023-.376.11-.162.086-.343.192-.593.3a2.683 2.683 0 0 1-.92.235 1.626 1.626 0 0 1-1.088-.313c-.343-.26-.635-.71-.866-1.147-.23-.438-.398-.865-.512-1.12-.108-.242-.168-.33-.246-.33zm-2.215 4.075a.422.422 0 0 0-.294.115c-.094.086-.145.2-.034.338.112.137.385.297.636.469.252.172.481.357.666.42.184.064.323.006.402-.096.08-.102.1-.247-.003-.404-.103-.157-.327-.325-.564-.481-.238-.157-.488-.302-.681-.346a.574.574 0 0 0-.128-.015zm.252.208c.025 0 .053.003.083.01.118.026.272.115.418.211.145.096.283.2.333.289.05.089.014.163-.048.216a.255.255 0 0 1-.247.053c-.1-.031-.216-.126-.36-.219-.145-.093-.319-.184-.387-.268-.068-.084-.031-.162.029-.218a.26.26 0 0 1 .18-.074zm4.778 3.728c.211-.008.42.06.602.24.183.178.34.467.383.732.042.265-.03.505-.125.692a1.58 1.58 0 0 1-.289.397c-.074.074-.109.095-.14.095h-.003c-.033-.001-.062-.023-.208-.171a7.39 7.39 0 0 1-.573-.642c-.165-.22-.232-.383-.263-.568-.032-.185-.027-.39.082-.536.109-.146.323-.23.534-.239zm.093 1.111a.258.258 0 0 0-.153.046c-.058.041-.105.113-.093.185.012.073.085.146.174.255.089.11.195.255.264.335.068.08.1.093.127.091.029-.002.054-.018.086-.048a.349.349 0 0 0 .094-.157.518.518 0 0 0 .002-.316.668.668 0 0 0-.218-.282.476.476 0 0 0-.283-.109z" }) + ] + } + ); +}); + +export { SiRhinoceros as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRich.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRich.cjs new file mode 100644 index 000000000..4ee6cfeb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRich.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAE742"; +const SiRich = React__namespace.forwardRef(function SiRich2({ title = "Rich", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.419 10.32v-.645c0-.531.437-.968.968-.968h3.225c.204 0 .395.065.552.175a2.295 2.295 0 0 0-.904.47h-2.873c-.177 0-.323.146-.323.323v3.224c0 .177.146.323.323.323h2.921l.048.067v.578h-2.969c-.531 0-.968-.437-.968-.968v-1.934h-5.13l.08.967h3.115v.645H4.423l.058.698c.651.192 1.323.309 2.001.347.901.038 1.789.229 2.625.564.138.04.244.146.288.276a4.183 4.183 0 0 0-1.771-.395H6.88c-.25 0-.485.065-.688.18a9.4449 9.4449 0 0 1-1.654-.286l.147 1.772c.267-.044.533-.095.798-.15.018.224.09.434.203.616-.314.067-.63.127-.947.179l.09 1.09c.03.332.31.589.643.591h2.101c-.335.14-.626.364-.846.645H5.472c-.666-.003-1.226-.519-1.285-1.183l-.548-6.556H2.358l.758 7.578c.081.821.78 1.453 1.605 1.451h1.565c.001.121.012.239.033.355-.293.04-.566.141-.806.29h-.792c-1.155.004-2.134-.882-2.246-2.032l-.794-7.933c-.001-.01-.001-.021-.001-.032 0-.088.036-.169.094-.228l2.58-2.58a.324.324 0 0 1 .228-.094h1.023a.9628.9628 0 0 1-.056-.323c0-.435.294-.819.713-.933a.9928.9928 0 0 1-.068-.357c0-.53.437-.967.968-.967h1.29c.531 0 .967.437.967.967 0 .099-.015.198-.045.293a.976.976 0 0 1 .436-.258.9719.9719 0 0 1-.068-.357c0-.531.437-.968.967-.968h1.29c.531 0 .968.437.968.968 0 .11-.019.219-.055.322h1.667c.331 0 .639.17.816.449a.9527.9527 0 0 1 .474-.126h2.58c.531 0 .968.436.968.967 0 .11-.019.219-.056.323h.461l-.282-.174 1.876-3.051h-2.645V3.87h.637a5.077 5.077 0 0 0-.027-.323c-.64-.002-.853-.011-1.57-.04l-.09-.004a2.6858 2.6858 0 0 1-.673-.089.4482.4482 0 0 1-.267-.189.4067.4067 0 0 1-.041-.282.455.455 0 0 1 .238-.274c.059-.032.12-.062.181-.089h-3.87v1.29h4.837v.645H2.579l1.087 1.766-.549.338-1.389-2.258a.3145.3145 0 0 1-.048-.169C1.68 1.802 3.205 0 5.227 0h.078c.403 0 .747.275.855.645h11.679c.107-.37.451-.645.854-.645h.078c2.023 0 3.548 1.802 3.548 4.192a.318.318 0 0 1-.067.196L20.191 7.74h.193c.53 0 .967.437.967.967 0 .224-.078.441-.22.614l1.083 1.082c.065.06.106.145.106.239 0 .011 0 .022-.001.032l-.794 7.933c-.11 1.131-1.059 2.006-2.188 2.032a2.053 2.053 0 0 0-.805-.29c.021-.116.032-.234.032-.355h.714c.824.002 1.524-.63 1.604-1.451l.76-7.578h-1.283l-.546 6.556c-.059.664-.62 1.18-1.287 1.183h-.403c-.094-.12-.201-.23-.319-.328v-.317h.722c.333-.002.613-.259.643-.591l.004-.054c-.578 0-1.099-.002-1.636-.018v-.645c.553.017 1.091.018 1.69.018l.08-.96c-.666.022-1.243.098-1.77.237v-.665c.549-.13 1.145-.201 1.824-.219l.081-.971c-.637.008-1.272.043-1.905.105v-.647a23.275 23.275 0 0 1 1.958-.103l.081-.969h-1.521c.134-.2.234-.417.298-.645h1.276l.081-.967h-1.276a2.2538 2.2538 0 0 0-.129-.645h2.079c.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322.3248.3248 0 0 1-.323-.323c0-.177.146-.322.323-.322.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-1.935a.3248.3248 0 0 1-.323-.323c0-.177.146-.322.323-.322.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-2.58a.321.321 0 0 0-.277.161c-.057.1-.164.161-.279.161h-.089a.323.323 0 0 1-.322-.322c0-.177-.146-.323-.323-.323h-2.58a.323.323 0 0 1-.322-.322c0-.177.145-.323.322-.323.177 0 .323-.145.323-.322 0-.177-.146-.323-.323-.323h-1.29c-.177 0-.322.146-.322.323 0 .177.145.322.322.322.177 0 .323.146.323.323 0 .177-.146.322-.323.322h-.645a.323.323 0 0 0-.302.218.3227.3227 0 0 1-.305.215.327.327 0 0 1-.179-.054.3172.3172 0 0 0-.181-.056h-.645a.3248.3248 0 0 1-.323-.323c0-.177.146-.322.323-.322.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-1.29c-.177 0-.323.145-.323.322 0 .177.146.323.323.323.177 0 .322.145.322.322 0 .177-.145.323-.322.323h-.645c-.177 0-.323.145-.323.322 0 .177.146.323.323.323.177 0 .322.145.322.322 0 .177-.145.323-.322.323H4.904c-.176 0-.322.145-.322.322 0 .177.146.323.322.323.177 0 .323.145.323.322 0 .177-.146.323-.323.323H4.26c-.177 0-.323.145-.323.322 0 .177.146.323.323.323h1.289a.3117.3117 0 0 0 .081-.013.3177.3177 0 0 1 .162 0c.026.007.053.012.08.013h2.58c.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-.968V9.03h.968c.531 0 .967.436.967.967 0 .113-.019.222-.056.323h.056Zm3.225-6.45V1.29h-1.29v2.58h1.29Zm-10.309 0h1.609c.089-1.854.936-2.52 1.452-2.754A.2513.2513 0 0 0 5.55.89c0-.134-.11-.245-.244-.245h-.079C3.662.645 2.46 2.01 2.335 3.87Zm2.255 0h6.119V2.257c-1.154 0-2.459.001-3.508.003h-.077c.065.041.136.079.208.119.127.066.25.141.368.223a.43.43 0 0 1 .18.536.4527.4527 0 0 1-.258.228c-.223.079-.458.121-.696.123-.793.043-1.475.055-2.309.058-.012.102-.021.21-.027.323Zm14.663-.969c-.226-.759-.637-1.071-.917-1.198a.903.903 0 0 1-.434-.413h-4.613v.645c1.274 0 3.003 0 4.155.002h.055c.129-.006.259.004.385.032.259.037.451.267.44.528a.5407.5407 0 0 1-.265.373c.494.021.727.029 1.194.031ZM6.096 1.29a.8943.8943 0 0 1-.434.413c-.279.127-.691.439-.917 1.198.751-.003 1.383-.016 2.103-.054-.104-.06-.203-.129-.295-.207a.6246.6246 0 0 1-.235-.405c-.008-.263.164-.5.417-.572.132-.04.271-.056.409-.048h.055c1.051-.002 2.356-.003 3.51-.003V1.29H6.096Zm-3.315 9.03h.566a.9616.9616 0 0 1-.056-.323c0-.072.008-.143.024-.212l-.534.535Zm17.273-6.45h1.609C21.538 2.01 20.337.645 18.771.645h-.078a.245.245 0 0 0-.244.244c.002.099.063.188.154.226.516.235 1.362.901 1.451 2.755Zm-6.698 12.638c-.345.098-.701.162-1.062.19-.197.025-.395.047-.593.069-.056.004-.111.008-.167.014a3.995 3.995 0 0 0-.289-.618c.129-.015.257-.027.386-.037.193-.022.387-.043.58-.068.391-.027.776-.102 1.145-.222v.672Zm-.284-3.609h-2.363a.323.323 0 0 1-.322-.322v-2.58c0-.177.145-.322.322-.322h2.24c-.153.192-.275.409-.359.645h-1.558v1.934h1.627c.064.141.143.276.236.403l.177.242Zm-5.467 5.147.005-.01v.008l-.005.002ZM3.292 11.61v.644h-.645v-.644h.645Zm1.29 7.094v.645h-.645v-.645h.645Zm16.769-7.417v.645h-.645v-.645h.645Zm-1.29 7.417v.645h-.645v-.645h.645ZM8.774 11.932v.645h-.645v-.645h.645Zm3.548-1.29v1.29h-.645v-1.29h.645ZM4.064 6.927l.395.642-.549.338-.395-.642.549-.338Zm14.18 13.902c.875 0 1.586.712 1.586 1.585 0 .875-.711 1.586-1.586 1.586H6.606c-.875 0-1.585-.711-1.585-1.586 0-.873.71-1.585 1.585-1.585h.427c-.155-.246-.247-.534-.247-.845 0-.785.574-1.437 1.324-1.563v-.786c0-.385-.172-.744-.473-.986l-.034-.028a1.158 1.158 0 0 0-.723-.254c-.497 0-.902-.404-.902-.9s.405-.9.902-.9h.744c.836 0 1.653.288 2.304.812.866.697 1.363 1.733 1.363 2.842v.177h2.565v-5.272l-.557-.764c-.223-.306-.342-.666-.342-1.045v-.233c0-.979.799-1.775 1.781-1.775h1.418c.982 0 1.781.796 1.781 1.775v.233c0 .379-.118.739-.341 1.045l-.559.764v5.376c.599.226 1.027.805 1.027 1.482 0 .311-.092.599-.246.845h.426Zm-3.385-5.232a.263.263 0 0 1-.021-.372l.345-.389v-.794a1.7787 1.7787 0 0 1-.586-.196v4.552h1.7v-4.552c-.181.099-.379.165-.585.196v.794l.345.389a.264.264 0 0 1-.023.372.2624.2624 0 0 1-.175.068.2668.2668 0 0 1-.198-.089l-.214-.241-.214.241a.2668.2668 0 0 1-.198.089.2649.2649 0 0 1-.176-.068Zm-6.758.475c.476.384.75.953.75 1.563v.763h1.7v-.177a2.98 2.98 0 0 0-.076-.662l-.406-.062c-.733-.114-1.307-.704-1.398-1.438l-.072-.585a2.9598 2.9598 0 0 0-.975-.167H6.88c-.089 0-.162.072-.162.16 0 .088.073.159.162.159.431 0 .852.149 1.186.418l.035.028Zm8.342 7.188c.402-.819 1.152-1.415 2.057-1.616l.06-.012a.8101.8101 0 0 0-.316-.063H6.606c-.466 0-.845.38-.845.845 0 .467.379.846.845.846h.558l-.007-.006a.8244.8244 0 0 1-.265-.604c0-.409.307-.76.714-.816l.985-.136c.343-.047.696.071.942.315.309.309.41.773.255 1.182l-.025.065h6.68Zm-8.817-3.672a.836.836 0 0 0-.099.396c0 .466.379.845.846.845h4.31c.082-.551.464-1.022 1.001-1.211.419-.147.881-.106 1.266.114l.199.113c.374.214.636.574.73.984h.599c.466 0 .846-.379.846-.845 0-.467-.38-.846-.846-.846h-4.935l-.125.202c-.405.654-1.108 1.017-1.831 1.017-.348 0-.701-.085-1.028-.261l-.933-.508Zm6.072-8.271c0 .22.068.431.199.608l.709.971c.195.267.509.427.841.427.331 0 .646-.16.841-.427l.71-.971c.13-.177.199-.388.199-.608v-.233c0-.451-.293-.835-.698-.976v.301c0 .146-.119.265-.265.265a.2646.2646 0 0 1-.264-.265v-.359h-.258v.684c0 .146-.119.265-.265.265a.2646.2646 0 0 1-.264-.265v-.684h-.258v.359c0 .146-.119.265-.265.265a.2646.2646 0 0 1-.264-.265v-.301c-.406.141-.698.525-.698.976v.233Zm1.157.309c0 .166-.135.301-.303.301a.3015.3015 0 0 1-.302-.301.3026.3026 0 0 1 .605 0Zm1.672.012c0 .166-.136.302-.303.302a.3024.3024 0 0 1-.302-.302c0-.166.135-.301.302-.301.167 0 .303.135.303.301Z" }) + ] + } + ); +}); + +exports.default = SiRich; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRich.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRich.d.ts new file mode 100644 index 000000000..2a5eb3832 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRich.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAE742"; +declare const SiRich: IconType; +export { SiRich as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRich.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRich.mjs new file mode 100644 index 000000000..613947615 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRich.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAE742"; +const SiRich = React.forwardRef(function SiRich2({ title = "Rich", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.419 10.32v-.645c0-.531.437-.968.968-.968h3.225c.204 0 .395.065.552.175a2.295 2.295 0 0 0-.904.47h-2.873c-.177 0-.323.146-.323.323v3.224c0 .177.146.323.323.323h2.921l.048.067v.578h-2.969c-.531 0-.968-.437-.968-.968v-1.934h-5.13l.08.967h3.115v.645H4.423l.058.698c.651.192 1.323.309 2.001.347.901.038 1.789.229 2.625.564.138.04.244.146.288.276a4.183 4.183 0 0 0-1.771-.395H6.88c-.25 0-.485.065-.688.18a9.4449 9.4449 0 0 1-1.654-.286l.147 1.772c.267-.044.533-.095.798-.15.018.224.09.434.203.616-.314.067-.63.127-.947.179l.09 1.09c.03.332.31.589.643.591h2.101c-.335.14-.626.364-.846.645H5.472c-.666-.003-1.226-.519-1.285-1.183l-.548-6.556H2.358l.758 7.578c.081.821.78 1.453 1.605 1.451h1.565c.001.121.012.239.033.355-.293.04-.566.141-.806.29h-.792c-1.155.004-2.134-.882-2.246-2.032l-.794-7.933c-.001-.01-.001-.021-.001-.032 0-.088.036-.169.094-.228l2.58-2.58a.324.324 0 0 1 .228-.094h1.023a.9628.9628 0 0 1-.056-.323c0-.435.294-.819.713-.933a.9928.9928 0 0 1-.068-.357c0-.53.437-.967.968-.967h1.29c.531 0 .967.437.967.967 0 .099-.015.198-.045.293a.976.976 0 0 1 .436-.258.9719.9719 0 0 1-.068-.357c0-.531.437-.968.967-.968h1.29c.531 0 .968.437.968.968 0 .11-.019.219-.055.322h1.667c.331 0 .639.17.816.449a.9527.9527 0 0 1 .474-.126h2.58c.531 0 .968.436.968.967 0 .11-.019.219-.056.323h.461l-.282-.174 1.876-3.051h-2.645V3.87h.637a5.077 5.077 0 0 0-.027-.323c-.64-.002-.853-.011-1.57-.04l-.09-.004a2.6858 2.6858 0 0 1-.673-.089.4482.4482 0 0 1-.267-.189.4067.4067 0 0 1-.041-.282.455.455 0 0 1 .238-.274c.059-.032.12-.062.181-.089h-3.87v1.29h4.837v.645H2.579l1.087 1.766-.549.338-1.389-2.258a.3145.3145 0 0 1-.048-.169C1.68 1.802 3.205 0 5.227 0h.078c.403 0 .747.275.855.645h11.679c.107-.37.451-.645.854-.645h.078c2.023 0 3.548 1.802 3.548 4.192a.318.318 0 0 1-.067.196L20.191 7.74h.193c.53 0 .967.437.967.967 0 .224-.078.441-.22.614l1.083 1.082c.065.06.106.145.106.239 0 .011 0 .022-.001.032l-.794 7.933c-.11 1.131-1.059 2.006-2.188 2.032a2.053 2.053 0 0 0-.805-.29c.021-.116.032-.234.032-.355h.714c.824.002 1.524-.63 1.604-1.451l.76-7.578h-1.283l-.546 6.556c-.059.664-.62 1.18-1.287 1.183h-.403c-.094-.12-.201-.23-.319-.328v-.317h.722c.333-.002.613-.259.643-.591l.004-.054c-.578 0-1.099-.002-1.636-.018v-.645c.553.017 1.091.018 1.69.018l.08-.96c-.666.022-1.243.098-1.77.237v-.665c.549-.13 1.145-.201 1.824-.219l.081-.971c-.637.008-1.272.043-1.905.105v-.647a23.275 23.275 0 0 1 1.958-.103l.081-.969h-1.521c.134-.2.234-.417.298-.645h1.276l.081-.967h-1.276a2.2538 2.2538 0 0 0-.129-.645h2.079c.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322.3248.3248 0 0 1-.323-.323c0-.177.146-.322.323-.322.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-1.935a.3248.3248 0 0 1-.323-.323c0-.177.146-.322.323-.322.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-2.58a.321.321 0 0 0-.277.161c-.057.1-.164.161-.279.161h-.089a.323.323 0 0 1-.322-.322c0-.177-.146-.323-.323-.323h-2.58a.323.323 0 0 1-.322-.322c0-.177.145-.323.322-.323.177 0 .323-.145.323-.322 0-.177-.146-.323-.323-.323h-1.29c-.177 0-.322.146-.322.323 0 .177.145.322.322.322.177 0 .323.146.323.323 0 .177-.146.322-.323.322h-.645a.323.323 0 0 0-.302.218.3227.3227 0 0 1-.305.215.327.327 0 0 1-.179-.054.3172.3172 0 0 0-.181-.056h-.645a.3248.3248 0 0 1-.323-.323c0-.177.146-.322.323-.322.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-1.29c-.177 0-.323.145-.323.322 0 .177.146.323.323.323.177 0 .322.145.322.322 0 .177-.145.323-.322.323h-.645c-.177 0-.323.145-.323.322 0 .177.146.323.323.323.177 0 .322.145.322.322 0 .177-.145.323-.322.323H4.904c-.176 0-.322.145-.322.322 0 .177.146.323.322.323.177 0 .323.145.323.322 0 .177-.146.323-.323.323H4.26c-.177 0-.323.145-.323.322 0 .177.146.323.323.323h1.289a.3117.3117 0 0 0 .081-.013.3177.3177 0 0 1 .162 0c.026.007.053.012.08.013h2.58c.177 0 .322-.146.322-.323a.323.323 0 0 0-.322-.322h-.968V9.03h.968c.531 0 .967.436.967.967 0 .113-.019.222-.056.323h.056Zm3.225-6.45V1.29h-1.29v2.58h1.29Zm-10.309 0h1.609c.089-1.854.936-2.52 1.452-2.754A.2513.2513 0 0 0 5.55.89c0-.134-.11-.245-.244-.245h-.079C3.662.645 2.46 2.01 2.335 3.87Zm2.255 0h6.119V2.257c-1.154 0-2.459.001-3.508.003h-.077c.065.041.136.079.208.119.127.066.25.141.368.223a.43.43 0 0 1 .18.536.4527.4527 0 0 1-.258.228c-.223.079-.458.121-.696.123-.793.043-1.475.055-2.309.058-.012.102-.021.21-.027.323Zm14.663-.969c-.226-.759-.637-1.071-.917-1.198a.903.903 0 0 1-.434-.413h-4.613v.645c1.274 0 3.003 0 4.155.002h.055c.129-.006.259.004.385.032.259.037.451.267.44.528a.5407.5407 0 0 1-.265.373c.494.021.727.029 1.194.031ZM6.096 1.29a.8943.8943 0 0 1-.434.413c-.279.127-.691.439-.917 1.198.751-.003 1.383-.016 2.103-.054-.104-.06-.203-.129-.295-.207a.6246.6246 0 0 1-.235-.405c-.008-.263.164-.5.417-.572.132-.04.271-.056.409-.048h.055c1.051-.002 2.356-.003 3.51-.003V1.29H6.096Zm-3.315 9.03h.566a.9616.9616 0 0 1-.056-.323c0-.072.008-.143.024-.212l-.534.535Zm17.273-6.45h1.609C21.538 2.01 20.337.645 18.771.645h-.078a.245.245 0 0 0-.244.244c.002.099.063.188.154.226.516.235 1.362.901 1.451 2.755Zm-6.698 12.638c-.345.098-.701.162-1.062.19-.197.025-.395.047-.593.069-.056.004-.111.008-.167.014a3.995 3.995 0 0 0-.289-.618c.129-.015.257-.027.386-.037.193-.022.387-.043.58-.068.391-.027.776-.102 1.145-.222v.672Zm-.284-3.609h-2.363a.323.323 0 0 1-.322-.322v-2.58c0-.177.145-.322.322-.322h2.24c-.153.192-.275.409-.359.645h-1.558v1.934h1.627c.064.141.143.276.236.403l.177.242Zm-5.467 5.147.005-.01v.008l-.005.002ZM3.292 11.61v.644h-.645v-.644h.645Zm1.29 7.094v.645h-.645v-.645h.645Zm16.769-7.417v.645h-.645v-.645h.645Zm-1.29 7.417v.645h-.645v-.645h.645ZM8.774 11.932v.645h-.645v-.645h.645Zm3.548-1.29v1.29h-.645v-1.29h.645ZM4.064 6.927l.395.642-.549.338-.395-.642.549-.338Zm14.18 13.902c.875 0 1.586.712 1.586 1.585 0 .875-.711 1.586-1.586 1.586H6.606c-.875 0-1.585-.711-1.585-1.586 0-.873.71-1.585 1.585-1.585h.427c-.155-.246-.247-.534-.247-.845 0-.785.574-1.437 1.324-1.563v-.786c0-.385-.172-.744-.473-.986l-.034-.028a1.158 1.158 0 0 0-.723-.254c-.497 0-.902-.404-.902-.9s.405-.9.902-.9h.744c.836 0 1.653.288 2.304.812.866.697 1.363 1.733 1.363 2.842v.177h2.565v-5.272l-.557-.764c-.223-.306-.342-.666-.342-1.045v-.233c0-.979.799-1.775 1.781-1.775h1.418c.982 0 1.781.796 1.781 1.775v.233c0 .379-.118.739-.341 1.045l-.559.764v5.376c.599.226 1.027.805 1.027 1.482 0 .311-.092.599-.246.845h.426Zm-3.385-5.232a.263.263 0 0 1-.021-.372l.345-.389v-.794a1.7787 1.7787 0 0 1-.586-.196v4.552h1.7v-4.552c-.181.099-.379.165-.585.196v.794l.345.389a.264.264 0 0 1-.023.372.2624.2624 0 0 1-.175.068.2668.2668 0 0 1-.198-.089l-.214-.241-.214.241a.2668.2668 0 0 1-.198.089.2649.2649 0 0 1-.176-.068Zm-6.758.475c.476.384.75.953.75 1.563v.763h1.7v-.177a2.98 2.98 0 0 0-.076-.662l-.406-.062c-.733-.114-1.307-.704-1.398-1.438l-.072-.585a2.9598 2.9598 0 0 0-.975-.167H6.88c-.089 0-.162.072-.162.16 0 .088.073.159.162.159.431 0 .852.149 1.186.418l.035.028Zm8.342 7.188c.402-.819 1.152-1.415 2.057-1.616l.06-.012a.8101.8101 0 0 0-.316-.063H6.606c-.466 0-.845.38-.845.845 0 .467.379.846.845.846h.558l-.007-.006a.8244.8244 0 0 1-.265-.604c0-.409.307-.76.714-.816l.985-.136c.343-.047.696.071.942.315.309.309.41.773.255 1.182l-.025.065h6.68Zm-8.817-3.672a.836.836 0 0 0-.099.396c0 .466.379.845.846.845h4.31c.082-.551.464-1.022 1.001-1.211.419-.147.881-.106 1.266.114l.199.113c.374.214.636.574.73.984h.599c.466 0 .846-.379.846-.845 0-.467-.38-.846-.846-.846h-4.935l-.125.202c-.405.654-1.108 1.017-1.831 1.017-.348 0-.701-.085-1.028-.261l-.933-.508Zm6.072-8.271c0 .22.068.431.199.608l.709.971c.195.267.509.427.841.427.331 0 .646-.16.841-.427l.71-.971c.13-.177.199-.388.199-.608v-.233c0-.451-.293-.835-.698-.976v.301c0 .146-.119.265-.265.265a.2646.2646 0 0 1-.264-.265v-.359h-.258v.684c0 .146-.119.265-.265.265a.2646.2646 0 0 1-.264-.265v-.684h-.258v.359c0 .146-.119.265-.265.265a.2646.2646 0 0 1-.264-.265v-.301c-.406.141-.698.525-.698.976v.233Zm1.157.309c0 .166-.135.301-.303.301a.3015.3015 0 0 1-.302-.301.3026.3026 0 0 1 .605 0Zm1.672.012c0 .166-.136.302-.303.302a.3024.3024 0 0 1-.302-.302c0-.166.135-.301.302-.301.167 0 .303.135.303.301Z" }) + ] + } + ); +}); + +export { SiRich as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRider.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRider.cjs new file mode 100644 index 000000000..ca5b7ae8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRider.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRider = React__namespace.forwardRef(function SiRider2({ title = "Rider", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm7.031 3.113A4.063 4.063 0 0 1 9.72 4.14a3.23 3.23 0 0 1 .84 2.28A3.16 3.16 0 0 1 8.4 9.54l2.46 3.6H8.28L6.12 9.9H4.38v3.24H2.16V3.12c1.61-.004 3.281.009 4.871-.007zm5.509.007h3.96c3.18 0 5.34 2.16 5.34 5.04 0 2.82-2.16 5.04-5.34 5.04h-3.96zm4.069 1.976c-.607.01-1.235.004-1.849.004v6.06h1.74a2.882 2.882 0 0 0 3.06-3 2.897 2.897 0 0 0-2.951-3.064zM4.319 5.1v2.88H6.6c1.08 0 1.68-.6 1.68-1.44 0-.96-.66-1.44-1.74-1.44zM2.16 19.5h9V21h-9Z" }) + ] + } + ); +}); + +exports.default = SiRider; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRider.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRider.d.ts new file mode 100644 index 000000000..4c311a546 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRider.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRider: IconType; +export { SiRider as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRider.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRider.mjs new file mode 100644 index 000000000..81add520b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRider.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRider = React.forwardRef(function SiRider2({ title = "Rider", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm7.031 3.113A4.063 4.063 0 0 1 9.72 4.14a3.23 3.23 0 0 1 .84 2.28A3.16 3.16 0 0 1 8.4 9.54l2.46 3.6H8.28L6.12 9.9H4.38v3.24H2.16V3.12c1.61-.004 3.281.009 4.871-.007zm5.509.007h3.96c3.18 0 5.34 2.16 5.34 5.04 0 2.82-2.16 5.04-5.34 5.04h-3.96zm4.069 1.976c-.607.01-1.235.004-1.849.004v6.06h1.74a2.882 2.882 0 0 0 3.06-3 2.897 2.897 0 0 0-2.951-3.064zM4.319 5.1v2.88H6.6c1.08 0 1.68-.6 1.68-1.44 0-.96-.66-1.44-1.74-1.44zM2.16 19.5h9V21h-9Z" }) + ] + } + ); +}); + +export { SiRider as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.cjs new file mode 100644 index 000000000..0014548c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A222E"; +const SiRimacautomobili = React__namespace.forwardRef(function SiRimacautomobili2({ title = "Rimac Automobili", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.422 1.317C18.428.488 15.194-.017 12.007 0 8.819-.017 5.586.487 2.594 1.317a.488.488 0 00-.342.455c0 7.95 2.976 17.802 9.479 22.142a.464.464 0 00.537 0c6.503-4.34 9.495-14.175 9.479-22.142.016-.21-.13-.39-.326-.455zM15.91 17.055c-1.025 1.723-2.244 3.267-3.691 4.454a.32.319 0 01-.407 0C7.845 18.241 5.537 12.47 4.658 6.893L3.65 6.356h7.479c2.407 0 2.715.78 2.715 1.35 0 .57-.308 1.35-2.714 1.35H8.934a.128.128 0 00-.13.13c0 .032.016.065.05.097l7.332 7.332.78.78zm1.333-2.65l-4.374-4.374c-.065-.065-.016-.162.065-.18l.862-.096c1.805-.195 2.845-1.106 2.845-2.244 0-1.317-1.398-2.049-3.723-2.049H4.446A24.735 24.733 0 014.268 3.3a.462.462 0 01.374-.487 32.298 32.296 0 017.3-.862h.13c2.39 0 4.878.293 7.301.862.227.049.39.26.373.487-.179 3.625-.99 7.593-2.503 11.104z" }) + ] + } + ); +}); + +exports.default = SiRimacautomobili; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.d.ts new file mode 100644 index 000000000..8d72d8154 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A222E"; +declare const SiRimacautomobili: IconType; +export { SiRimacautomobili as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.mjs new file mode 100644 index 000000000..58bb36f95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRimacautomobili.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A222E"; +const SiRimacautomobili = React.forwardRef(function SiRimacautomobili2({ title = "Rimac Automobili", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.422 1.317C18.428.488 15.194-.017 12.007 0 8.819-.017 5.586.487 2.594 1.317a.488.488 0 00-.342.455c0 7.95 2.976 17.802 9.479 22.142a.464.464 0 00.537 0c6.503-4.34 9.495-14.175 9.479-22.142.016-.21-.13-.39-.326-.455zM15.91 17.055c-1.025 1.723-2.244 3.267-3.691 4.454a.32.319 0 01-.407 0C7.845 18.241 5.537 12.47 4.658 6.893L3.65 6.356h7.479c2.407 0 2.715.78 2.715 1.35 0 .57-.308 1.35-2.714 1.35H8.934a.128.128 0 00-.13.13c0 .032.016.065.05.097l7.332 7.332.78.78zm1.333-2.65l-4.374-4.374c-.065-.065-.016-.162.065-.18l.862-.096c1.805-.195 2.845-1.106 2.845-2.244 0-1.317-1.398-2.049-3.723-2.049H4.446A24.735 24.733 0 014.268 3.3a.462.462 0 01.374-.487 32.298 32.296 0 017.3-.862h.13c2.39 0 4.878.293 7.301.862.227.049.39.26.373.487-.179 3.625-.99 7.593-2.503 11.104z" }) + ] + } + ); +}); + +export { SiRimacautomobili as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRime.cjs new file mode 100644 index 000000000..c3de779e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRime = React__namespace.forwardRef(function SiRime2({ title = "Rime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.733 0H2.267C1 0 0 1 0 2.267v19.466C0 23 1 24 2.267 24h19.466C23 24 24 23 24 21.733V2.267C24 1 22.933 0 21.733 0Zm-1.6 20.667H19.8c-.6 0-5.933-.134-7.733-.134-1.934 0-7.867.134-7.934.134H3.8v-1.134L3.733 18.4h.334c.066 0 4.2-.2 6.733-.267v-2.466c-2.733-.134-4.667-.867-5.933-2.134-1.934-2-1.8-4.866-1.734-7.933v-.867l2.4.067v.933c-.066 2.6-.2 4.867 1.067 6.134.8.8 2.133 1.266 4.2 1.4V3.533h2.4V13.2c2-.133 3.4-.6 4.2-1.4 1.2-1.267 1.133-3.533 1.067-6.133v-.934l2.4-.066v.866c.133 3.067.2 5.934-1.734 7.934-1.266 1.266-3.2 2-5.933 2.133v2.467c2.467.066 6.667.266 6.733.266h.334l-.067 1.134Z" }) + ] + } + ); +}); + +exports.default = SiRime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRime.d.ts new file mode 100644 index 000000000..ef3a876d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRime: IconType; +export { SiRime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRime.mjs new file mode 100644 index 000000000..5d3b9c80a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRime = React.forwardRef(function SiRime2({ title = "Rime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.733 0H2.267C1 0 0 1 0 2.267v19.466C0 23 1 24 2.267 24h19.466C23 24 24 23 24 21.733V2.267C24 1 22.933 0 21.733 0Zm-1.6 20.667H19.8c-.6 0-5.933-.134-7.733-.134-1.934 0-7.867.134-7.934.134H3.8v-1.134L3.733 18.4h.334c.066 0 4.2-.2 6.733-.267v-2.466c-2.733-.134-4.667-.867-5.933-2.134-1.934-2-1.8-4.866-1.734-7.933v-.867l2.4.067v.933c-.066 2.6-.2 4.867 1.067 6.134.8.8 2.133 1.266 4.2 1.4V3.533h2.4V13.2c2-.133 3.4-.6 4.2-1.4 1.2-1.267 1.133-3.533 1.067-6.133v-.934l2.4-.066v.866c.133 3.067.2 5.934-1.734 7.934-1.266 1.266-3.2 2-5.933 2.133v2.467c2.467.066 6.667.266 6.733.266h.334l-.067 1.134Z" }) + ] + } + ); +}); + +export { SiRime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRing.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRing.cjs new file mode 100644 index 000000000..8721c47bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRing.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C9AD6"; +const SiRing = React__namespace.forwardRef(function SiRing2({ title = "Ring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 16.375a3.05 3.05 0 0 1-.246 1.231 3.114 3.114 0 0 1-1.672 1.66 3.068 3.068 0 0 1-1.225.247 3.695 3.695 0 0 1-.71-.073 4.05 4.05 0 0 1-.739-.218 3.184 3.184 0 0 1-.676-.37 2.02 2.02 0 0 1-.507-.515.46.46 0 0 1-.08-.275.442.442 0 0 1 .152-.346.504.504 0 0 1 .346-.138.553.553 0 0 1 .201.04.392.392 0 0 1 .186.17.046.046 0 0 0 .016.032l.064.065a1.806 1.806 0 0 0 .798.507 3.052 3.052 0 0 0 .943.154 2.12 2.12 0 0 0 .846-.17 2.189 2.189 0 0 0 1.16-1.16 2.115 2.115 0 0 0 .176-.841v-1.109a3.132 3.132 0 0 1-.985.637 3.089 3.089 0 0 1-1.193.234 3.046 3.046 0 0 1-1.231-.246 3.137 3.137 0 0 1-1.66-1.66 3.04 3.04 0 0 1-.247-1.232v-2.544a3.058 3.058 0 0 1 .247-1.225 3.154 3.154 0 0 1 .668-1 3.202 3.202 0 0 1 .986-.669 3.15 3.15 0 0 1 2.463 0 3.09 3.09 0 0 1 1.668 1.668 3.066 3.066 0 0 1 .246 1.225v5.92zm-.967-5.92a2.118 2.118 0 0 0-.17-.846 2.189 2.189 0 0 0-1.16-1.16 2.201 2.201 0 0 0-1.692 0 2.191 2.191 0 0 0-1.166 1.16 2.134 2.134 0 0 0-.168.845v2.531a2.133 2.133 0 0 0 .168.853 2.194 2.194 0 0 0 .468.693 2.171 2.171 0 0 0 .694.467 2.201 2.201 0 0 0 1.692 0 2.189 2.189 0 0 0 1.16-1.16 2.117 2.117 0 0 0 .174-.853zm-7.252 5.356a.435.435 0 0 1-.154.363.511.511 0 0 1-.66 0 .434.434 0 0 1-.153-.363v-5.356a2.118 2.118 0 0 0-.17-.846 2.189 2.189 0 0 0-1.16-1.16 2.201 2.201 0 0 0-1.692 0 2.19 2.19 0 0 0-1.16 1.16 2.127 2.127 0 0 0-.17.846v5.356a.434.434 0 0 1-.152.363.511.511 0 0 1-.661 0 .434.434 0 0 1-.153-.363v-5.356a3.058 3.058 0 0 1 .246-1.225 3.163 3.163 0 0 1 .67-1 3.202 3.202 0 0 1 .984-.669 3.15 3.15 0 0 1 2.464 0 3.091 3.091 0 0 1 1.667 1.668 3.066 3.066 0 0 1 .247 1.225zm-8.383 0a.435.435 0 0 1-.152.363.511.511 0 0 1-.662 0 .434.434 0 0 1-.152-.363V7.956a.435.435 0 0 1 .152-.363.512.512 0 0 1 .662 0 .436.436 0 0 1 .152.363zM4.982 8.44a.463.463 0 0 1-.145.338.483.483 0 0 1-.355.142.503.503 0 0 1-.339-.145l-.016-.017a.149.149 0 0 0-.032-.024.123.123 0 0 1-.033-.025 1.9 1.9 0 0 0-1.24-.43q-.871 0-1.363.595-.491.596-.492 1.693v5.243a.435.435 0 0 1-.153.363.525.525 0 0 1-.33.123.525.525 0 0 1-.33-.123.434.434 0 0 1-.153-.363v-5.243A4.362 4.362 0 0 1 .18 9.303a3.034 3.034 0 0 1 .53-1.031 2.546 2.546 0 0 1 .878-.706 2.763 2.763 0 0 1 1.231-.257 3.08 3.08 0 0 1 1.065.209 2.573 2.573 0 0 1 .934.58.48.48 0 0 1 .163.343zm2.76-3.128a.826.826 0 0 1-.826.827.826.826 0 0 1-.827-.827.826.826 0 0 1 .827-.826.826.826 0 0 1 .826.826Z" }) + ] + } + ); +}); + +exports.default = SiRing; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRing.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRing.d.ts new file mode 100644 index 000000000..58b806f9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRing.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C9AD6"; +declare const SiRing: IconType; +export { SiRing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRing.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRing.mjs new file mode 100644 index 000000000..928c4cf9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRing.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C9AD6"; +const SiRing = React.forwardRef(function SiRing2({ title = "Ring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 16.375a3.05 3.05 0 0 1-.246 1.231 3.114 3.114 0 0 1-1.672 1.66 3.068 3.068 0 0 1-1.225.247 3.695 3.695 0 0 1-.71-.073 4.05 4.05 0 0 1-.739-.218 3.184 3.184 0 0 1-.676-.37 2.02 2.02 0 0 1-.507-.515.46.46 0 0 1-.08-.275.442.442 0 0 1 .152-.346.504.504 0 0 1 .346-.138.553.553 0 0 1 .201.04.392.392 0 0 1 .186.17.046.046 0 0 0 .016.032l.064.065a1.806 1.806 0 0 0 .798.507 3.052 3.052 0 0 0 .943.154 2.12 2.12 0 0 0 .846-.17 2.189 2.189 0 0 0 1.16-1.16 2.115 2.115 0 0 0 .176-.841v-1.109a3.132 3.132 0 0 1-.985.637 3.089 3.089 0 0 1-1.193.234 3.046 3.046 0 0 1-1.231-.246 3.137 3.137 0 0 1-1.66-1.66 3.04 3.04 0 0 1-.247-1.232v-2.544a3.058 3.058 0 0 1 .247-1.225 3.154 3.154 0 0 1 .668-1 3.202 3.202 0 0 1 .986-.669 3.15 3.15 0 0 1 2.463 0 3.09 3.09 0 0 1 1.668 1.668 3.066 3.066 0 0 1 .246 1.225v5.92zm-.967-5.92a2.118 2.118 0 0 0-.17-.846 2.189 2.189 0 0 0-1.16-1.16 2.201 2.201 0 0 0-1.692 0 2.191 2.191 0 0 0-1.166 1.16 2.134 2.134 0 0 0-.168.845v2.531a2.133 2.133 0 0 0 .168.853 2.194 2.194 0 0 0 .468.693 2.171 2.171 0 0 0 .694.467 2.201 2.201 0 0 0 1.692 0 2.189 2.189 0 0 0 1.16-1.16 2.117 2.117 0 0 0 .174-.853zm-7.252 5.356a.435.435 0 0 1-.154.363.511.511 0 0 1-.66 0 .434.434 0 0 1-.153-.363v-5.356a2.118 2.118 0 0 0-.17-.846 2.189 2.189 0 0 0-1.16-1.16 2.201 2.201 0 0 0-1.692 0 2.19 2.19 0 0 0-1.16 1.16 2.127 2.127 0 0 0-.17.846v5.356a.434.434 0 0 1-.152.363.511.511 0 0 1-.661 0 .434.434 0 0 1-.153-.363v-5.356a3.058 3.058 0 0 1 .246-1.225 3.163 3.163 0 0 1 .67-1 3.202 3.202 0 0 1 .984-.669 3.15 3.15 0 0 1 2.464 0 3.091 3.091 0 0 1 1.667 1.668 3.066 3.066 0 0 1 .247 1.225zm-8.383 0a.435.435 0 0 1-.152.363.511.511 0 0 1-.662 0 .434.434 0 0 1-.152-.363V7.956a.435.435 0 0 1 .152-.363.512.512 0 0 1 .662 0 .436.436 0 0 1 .152.363zM4.982 8.44a.463.463 0 0 1-.145.338.483.483 0 0 1-.355.142.503.503 0 0 1-.339-.145l-.016-.017a.149.149 0 0 0-.032-.024.123.123 0 0 1-.033-.025 1.9 1.9 0 0 0-1.24-.43q-.871 0-1.363.595-.491.596-.492 1.693v5.243a.435.435 0 0 1-.153.363.525.525 0 0 1-.33.123.525.525 0 0 1-.33-.123.434.434 0 0 1-.153-.363v-5.243A4.362 4.362 0 0 1 .18 9.303a3.034 3.034 0 0 1 .53-1.031 2.546 2.546 0 0 1 .878-.706 2.763 2.763 0 0 1 1.231-.257 3.08 3.08 0 0 1 1.065.209 2.573 2.573 0 0 1 .934.58.48.48 0 0 1 .163.343zm2.76-3.128a.826.826 0 0 1-.826.827.826.826 0 0 1-.827-.827.826.826 0 0 1 .827-.826.826.826 0 0 1 .826.826Z" }) + ] + } + ); +}); + +export { SiRing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.cjs new file mode 100644 index 000000000..b31c5f0fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB0029"; +const SiRiotgames = React__namespace.forwardRef(function SiRiotgames2({ title = "Riot Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.458.86 0 7.093l3.353 12.761 2.552-.313-.701-8.024.838-.373 1.447 8.202 4.361-.535-.775-8.857.83-.37 1.591 9.025 4.412-.542-.849-9.708.84-.374 1.74 9.87L24 17.318V3.5Zm.316 19.356.222 1.256L24 23.14v-4.18l-10.22 1.256Z" }) + ] + } + ); +}); + +exports.default = SiRiotgames; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.d.ts new file mode 100644 index 000000000..bc76339ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB0029"; +declare const SiRiotgames: IconType; +export { SiRiotgames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.mjs new file mode 100644 index 000000000..4b562eb0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiotgames.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB0029"; +const SiRiotgames = React.forwardRef(function SiRiotgames2({ title = "Riot Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.458.86 0 7.093l3.353 12.761 2.552-.313-.701-8.024.838-.373 1.447 8.202 4.361-.535-.775-8.857.83-.37 1.591 9.025 4.412-.542-.849-9.708.84-.374 1.74 9.87L24 17.318V3.5Zm.316 19.356.222 1.256L24 23.14v-4.18l-10.22 1.256Z" }) + ] + } + ); +}); + +export { SiRiotgames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.cjs new file mode 100644 index 000000000..aaf945f3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0085C0"; +const SiRipple = React__namespace.forwardRef(function SiRipple2({ title = "Ripple", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.55 14.65c-.846-.486-1.805-.632-2.752-.666-.79-.023-1.974-.541-1.974-1.985 0-1.072.868-1.94 1.985-1.985.947-.034 1.906-.18 2.752-.666A5.018 5.018 0 0022.4 2.502 5.04 5.04 0 0015.53.674a4.993 4.993 0 00-2.504 4.343c0 .97.35 1.861.79 2.696.372.699.553 1.996-.71 2.73-.948.54-2.132.202-2.719-.745-.496-.801-1.094-1.545-1.94-2.03C6.045 6.28 2.977 7.104 1.6 9.495A5.018 5.018 0 003.44 16.34a5.025 5.025 0 005.008 0c.846-.485 1.444-1.23 1.94-2.03.406-.654 1.433-1.489 2.718-.744.948.541 1.241 1.737.711 2.73-.44.823-.79 1.725-.79 2.695A5.011 5.011 0 0018.034 24a5.011 5.011 0 005.008-5.008 4.982 4.982 0 00-2.492-4.343z" }) + ] + } + ); +}); + +exports.default = SiRipple; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.d.ts new file mode 100644 index 000000000..450931e88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0085C0"; +declare const SiRipple: IconType; +export { SiRipple as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.mjs new file mode 100644 index 000000000..0fc23654f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRipple.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0085C0"; +const SiRipple = React.forwardRef(function SiRipple2({ title = "Ripple", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.55 14.65c-.846-.486-1.805-.632-2.752-.666-.79-.023-1.974-.541-1.974-1.985 0-1.072.868-1.94 1.985-1.985.947-.034 1.906-.18 2.752-.666A5.018 5.018 0 0022.4 2.502 5.04 5.04 0 0015.53.674a4.993 4.993 0 00-2.504 4.343c0 .97.35 1.861.79 2.696.372.699.553 1.996-.71 2.73-.948.54-2.132.202-2.719-.745-.496-.801-1.094-1.545-1.94-2.03C6.045 6.28 2.977 7.104 1.6 9.495A5.018 5.018 0 003.44 16.34a5.025 5.025 0 005.008 0c.846-.485 1.444-1.23 1.94-2.03.406-.654 1.433-1.489 2.718-.744.948.541 1.241 1.737.711 2.73-.44.823-.79 1.725-.79 2.695A5.011 5.011 0 0018.034 24a5.011 5.011 0 005.008-5.008 4.982 4.982 0 00-2.492-4.343z" }) + ] + } + ); +}); + +export { SiRipple as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.cjs new file mode 100644 index 000000000..37fd71bb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#283272"; +const SiRiscv = React__namespace.forwardRef(function SiRiscv2({ title = "RISC-V", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.94945.05132h16.9479v6.2099l-10.42482 14.7424-.52374.73429-5.7888-6.84154c4.10309-.73955 6.2099-3.89648 6.2099-7.37054 0-3.47539-2.10681-7.0534-6.42044-7.4745zM1.47516 13.42121l8.73912 10.52747H0V3.4188h5.47428c2.94506 0 4.42154 1.9989 4.42154 4.10703 0 2.1068-1.47648 4.20967-4.42154 4.20967H1.47516v1.6857zm14.0693 10.52747H24V12.1566l-7.68505 10.73802-.77048 1.05406z" }) + ] + } + ); +}); + +exports.default = SiRiscv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.d.ts new file mode 100644 index 000000000..7f090b527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#283272"; +declare const SiRiscv: IconType; +export { SiRiscv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.mjs new file mode 100644 index 000000000..e613737d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiscv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#283272"; +const SiRiscv = React.forwardRef(function SiRiscv2({ title = "RISC-V", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.94945.05132h16.9479v6.2099l-10.42482 14.7424-.52374.73429-5.7888-6.84154c4.10309-.73955 6.2099-3.89648 6.2099-7.37054 0-3.47539-2.10681-7.0534-6.42044-7.4745zM1.47516 13.42121l8.73912 10.52747H0V3.4188h5.47428c2.94506 0 4.42154 1.9989 4.42154 4.10703 0 2.1068-1.47648 4.20967-4.42154 4.20967H1.47516v1.6857zm14.0693 10.52747H24V12.1566l-7.68505 10.73802-.77048 1.05406z" }) + ] + } + ); +}); + +export { SiRiscv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.cjs new file mode 100644 index 000000000..7623d0b9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiRiseup = React__namespace.forwardRef(function SiRiseup2({ title = "Riseup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 24l-1.485-9.007-8.961-1.738L8.16 9.06 7.045 0l6.495 6.414 8.271-3.861-4.093 8.16 6.228 6.673-9.024-1.372z" }) + ] + } + ); +}); + +exports.default = SiRiseup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.d.ts new file mode 100644 index 000000000..8e7e75502 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiRiseup: IconType; +export { SiRiseup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.mjs new file mode 100644 index 000000000..28304d23c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRiseup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiRiseup = React.forwardRef(function SiRiseup2({ title = "Riseup", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.5 24l-1.485-9.007-8.961-1.738L8.16 9.06 7.045 0l6.495 6.414 8.271-3.861-4.093 8.16 6.228 6.673-9.024-1.372z" }) + ] + } + ); +}); + +export { SiRiseup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.cjs new file mode 100644 index 000000000..658d6fad2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRitzcarlton = React__namespace.forwardRef(function SiRitzcarlton2({ title = "Ritz Carlton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.543 16.862a2.83 2.83 0 0 1-1.168-.743h-.071c-.22.016-.692-.032-1.416-.142s-1.33-.519-1.817-1.227a2.332 2.332 0 0 1-1.086 1.097c-.487.244-1.093.374-1.817.39a4.241 4.241 0 0 1-1.215.696c-.417.15-.893.224-1.428.224-.63 0-1.2-.2-1.711-.602s-.767-.94-.767-1.616c0-.157.008-.315.024-.472.015-.157.047-.3.094-.425.299.393.637.68 1.015.861.377.181.708.272.991.272.44 0 .751-.165.932-.496.181-.33.272-.77.272-1.321v-.342c0-.118-.008-.233-.024-.343-.016-.613.02-1.22.106-1.817.087-.598.46-1.172 1.121-1.723l.236-.189c-.126.032-.24.06-.342.083a1.158 1.158 0 0 1-.248.035c-.11 0-.26-.118-.448-.354a1.661 1.661 0 0 1-.354-.731c-.047-.126-.036-.225.035-.295s.17-.154.295-.248h.024l.023-.024c-.015-.016-.039-.02-.07-.012a.496.496 0 0 1-.118.012.234.234 0 0 1-.107.024h-.13a1.477 1.477 0 0 1-.707-.165 6.459 6.459 0 0 1-.225-.095c-.07-.031-.145-.047-.224-.047s-.15.004-.212.012-.11.02-.142.035H5.7c-.031 0-.063-.02-.094-.059-.032-.04-.048-.098-.048-.177 0-.22.083-.377.248-.472.165-.094.31-.141.437-.141.11 0 .212.015.307.047l.283.094c.11.032.212.06.307.083a.4.4 0 0 0 .283-.036 7.087 7.087 0 0 1-.154-.247 6.626 6.626 0 0 0-.153-.248 3.455 3.455 0 0 1-.153.035.497.497 0 0 1-.083.012c-.142 0-.264-.079-.366-.236-.102-.157-.2-.527-.295-1.11a2.306 2.306 0 0 1-.271-.46.9.9 0 0 1-.083-.318c0-.142.055-.26.165-.354a2.48 2.48 0 0 1 .425-.283L8.39 2.289c.126-.315.256-.554.39-.72s.303-.271.507-.318c.236-.047.504-.087.802-.118.3-.032.622-.055.968-.071a1.36 1.36 0 0 1 .354-.33.785.785 0 0 1 .425-.118c.031 0 .067.004.106.011s.083.02.13.036c.078.016.161.031.248.047.086.016.184.024.295.024.078 0 .184-.004.318-.012s.295-.02.484-.036c.079-.063.2-.133.366-.212.165-.079.342-.157.53-.236.08-.047.166-.09.26-.13.095-.04.181-.075.26-.106.126.079.303.224.53.437s.398.436.508.672c1.007.173 1.633.413 1.876.72.244.307.366.72.366 1.239s.142.905.425 1.156c.283.252.503.417.66.496a.466.466 0 0 1-.341.141 1.18 1.18 0 0 1-.437-.094c.362.22.645.484.85.79.204.307.338.657.4 1.05-.157-.094-.322-.18-.495-.259s-.346-.134-.519-.165c.205.22.354.48.448.779.095.299.142.63.142.991 0 .283-.055.602-.165.956-.11.354-.315.727-.614 1.12.047.048.087.115.118.201s.047.193.047.319c0 .346-.07.653-.212.92s-.299.52-.472.756a9.739 9.739 0 0 0-.425.696 1.61 1.61 0 0 0-.189.79c0 .457.154.78.46.968s.61.283.91.283c.14 0 .314-.023.518-.07.205-.048.41-.15.614-.307.031.094.059.197.083.307s.035.228.035.354c0 .55-.185.995-.555 1.333s-.908.507-1.616.507c-.378 0-.79-.074-1.24-.224zm1.616 3.646a.51.51 0 0 1 .236.177c.048.071.055.154.024.248a3.32 3.32 0 0 1-.07.236l-.095.283c-.095.252-.193.535-.295.85s-.154.621-.154.92c0 .11.004.192.012.247s.012.098.012.13.004.059.012.082.012.052.012.083c0 .079-.028.138-.083.177s-.122.059-.2.059H6.571a.336.336 0 0 1-.2-.059c-.055-.04-.083-.098-.083-.177v-.083c0-.024.008-.05.024-.082 0-.032.004-.075.011-.13s.012-.138.012-.248c0-.298-.051-.605-.153-.92s-.2-.597-.295-.849a4.434 4.434 0 0 0-.095-.295 2.146 2.146 0 0 0-.094-.224.332.332 0 0 1 .047-.248.519.519 0 0 1 .236-.177l-1.557-3.587.118-.023c.078.11.247.26.507.448.26.189.594.283 1.003.283l.047.071a.712.712 0 0 0-.212.625c.031.244.15.366.354.366.141 0 .24-.047.295-.141a.834.834 0 0 0 .106-.284l.07-.023c.016 0 .04.012.072.035a11.104 11.104 0 0 1 .342.212c.086.056.145.099.177.13l-.047.236-.048.236a.932.932 0 0 0-.035.142.42.42 0 0 1-.035.118h-.071a.339.339 0 0 0-.165-.153.452.452 0 0 0-.142-.036.269.269 0 0 0-.224.106.429.429 0 0 0-.083.272c0 .189.055.358.165.507.11.15.3.224.567.224.283 0 .554-.07.814-.212s.39-.362.39-.66a.86.86 0 0 0-.154-.473 1.046 1.046 0 0 0-.484-.377v-.071a3.34 3.34 0 0 0 .449-.437c.141-.165.228-.295.26-.39h.07c.063.08.185.186.366.32.18.133.358.224.53.27v.072c-.157.157-.259.306-.306.448s-.07.26-.07.354c0 .252.086.448.259.59.173.142.487.212.944.212.33 0 .633-.059.908-.177.276-.118.413-.334.413-.649 0-.173-.05-.306-.153-.4a.52.52 0 0 0-.366-.142.502.502 0 0 0-.248.059.706.706 0 0 0-.224.247h-.07c0-.015-.016-.039-.048-.07a5.65 5.65 0 0 0-.189-.225 2.738 2.738 0 0 0-.26-.247v-.071c.064-.047.138-.122.225-.224a4.26 4.26 0 0 0 .271-.366h.071c.142.157.248.255.319.295.07.04.16.059.271.059a.587.587 0 0 0 .26-.071c.094-.047.141-.142.141-.283 0-.173-.086-.303-.26-.39s-.346-.16-.519-.224v-.07c.284-.11.547-.296.791-.555s.39-.484.437-.673h.094c.047.189.193.413.437.673s.507.444.79.554v.071c-.173.063-.346.138-.519.224s-.26.217-.26.39c0 .141.048.236.142.283a.584.584 0 0 0 .531.012c.07-.04.17-.138.295-.295h.094c.095.141.185.263.272.366.086.102.161.177.224.224v.07c-.11.095-.197.178-.26.248a5.65 5.65 0 0 0-.188.225c-.032.031-.048.055-.048.07h-.094a.706.706 0 0 0-.224-.247.455.455 0 0 0-.224-.06.52.52 0 0 0-.366.142.52.52 0 0 0-.154.401c0 .315.138.531.413.65.276.117.579.176.909.176.456 0 .77-.07.944-.212.173-.142.26-.338.26-.59 0-.094-.024-.212-.071-.354s-.15-.291-.307-.448v-.071c.173-.047.35-.138.53-.272.182-.133.296-.24.343-.318h.094c.032.094.115.224.248.39.134.164.28.31.437.436v.07a1.06 1.06 0 0 0-.46.378.86.86 0 0 0-.154.472c0 .299.13.52.39.66s.53.213.814.213c.267 0 .456-.074.566-.224a.834.834 0 0 0 .165-.507c0-.11-.027-.2-.082-.272a.269.269 0 0 0-.224-.106.561.561 0 0 0-.154.036.247.247 0 0 0-.153.153h-.07a.42.42 0 0 1-.036-.118.932.932 0 0 0-.036-.142l-.047-.236-.047-.236c.031-.031.09-.074.177-.13s.169-.106.248-.153c.031-.016.063-.035.094-.059s.055-.035.07-.035l.072.023a.834.834 0 0 0 .106.284c.055.094.145.141.271.141.22 0 .346-.122.378-.366a.712.712 0 0 0-.213-.625l.048-.07c.409 0 .743-.095 1.003-.284s.428-.338.507-.448l.118.023-1.558 3.587zM5.345 15.482a4.734 4.734 0 0 1-.566-.284c.157.583.452.948.885 1.098s.782.224 1.05.224c.299 0 .574-.035.826-.106.251-.071.495-.209.731-.413a2.085 2.085 0 0 1-.53-.095c-.134-.047-.217-.102-.248-.165.676-.078 1.058-.476 1.144-1.192.087-.715.122-1.42.106-2.112v-.661c0-.991.232-1.71.696-2.16.465-.448 1.507-1.018 3.127-1.71a7.818 7.818 0 0 0 1.582-.897c.55-.393.826-.905.826-1.534 0-.22-.087-.507-.26-.861s-.606-.704-1.298-1.05a.886.886 0 0 0-.094-.083.62.62 0 0 0-.095-.06l-.448-.471c.63-.126 1.274.035 1.935.484.66.448.991 1.026.991 1.734 0 .645-.228 1.22-.684 1.723s-1.22.999-2.29 1.487l-.117.047c-.929.409-1.704.83-2.325 1.263-.621.432-.932 1.128-.932 2.088a6.986 6.986 0 0 0 .189 1.652c.015-.645.15-1.38.4-2.207.253-.826.937-1.38 2.054-1.663a4.627 4.627 0 0 0-.401 1.911c0 .693.134 1.334.401 1.924.267.59.66 1.074 1.18 1.451.535.394 1.196.59 1.982.59-.912-.519-1.502-1.144-1.77-1.876a9.306 9.306 0 0 1-.519-2.089 2.643 2.643 0 0 0-.236.697c-.063.291-.07.523-.023.696a3.504 3.504 0 0 1-.295-.755 3.314 3.314 0 0 1-.107-.85c0-.472.095-.968.284-1.487.188-.52.676-.975 1.463-1.369a4.51 4.51 0 0 0-.531.756c-.15.267-.224.582-.224.944 0 .157.007.318.023.483.016.165.055.335.118.508.032-.425.17-.83.413-1.216s.515-.79.814-1.215c.22-.299.44-.614.661-.944.22-.33.41-.677.566-1.038.08.094.126.263.142.507s-.031.468-.142.673c.284-.205.496-.484.638-.838s.212-.775.212-1.263c0-.283-.063-.64-.189-1.074-.126-.432-.417-.869-.873-1.31.189.095.535.37 1.038.827s.756 1.077.756 1.864c0 .472-.193 1.038-.579 1.7-.385.66-1.042 1.336-1.97 2.029.63-.142 1.341-.464 2.136-.968.794-.503 1.191-1.345 1.191-2.525 0-.503-.24-1.176-.72-2.018s-1.301-1.333-2.465-1.475a.262.262 0 0 1 .106-.153c.055-.04.114-.075.177-.106.126-.079.247-.173.365-.283.118-.11.177-.268.177-.472 0-.19-.07-.394-.212-.614s-.385-.472-.731-.755c-.787.126-1.247.326-1.381.602s-.2.444-.2.507c0 .173.07.334.212.484s.338.31.59.484c.063.031.082.062.059.094-.024.031-.051.047-.083.047-.031 0-.075-.02-.13-.059-.055-.04-.13-.09-.224-.153-.22-.173-.53-.378-.932-.614s-.854-.354-1.357-.354c-.488 0-.948.02-1.38.06-.433.038-.697.082-.791.129-.11.047-.2.11-.272.189s-.106.165-.106.26c.11-.048.228-.091.354-.13a1.13 1.13 0 0 1 .33-.06c.08 0 .19.02.331.06.142.039.212.098.212.177H9.9c-.142 0-.236.015-.284.047s-.07.063-.07.094c0 .063.015.114.047.154a.25.25 0 0 0 .118.082.13.13 0 0 0 .094.012.323.323 0 0 1 .071-.012.176.176 0 0 1 .07-.023h.072c.015 0 .023.007.023.023v.047c0 .032-.027.079-.082.142s-.138.126-.248.189c.079-.016.165-.032.26-.047s.157-.024.188-.024c0 .016-.02.047-.059.094s-.067.079-.082.095a.148.148 0 0 1-.06.035.358.358 0 0 1-.106.012.56.56 0 0 0-.153.024 3.707 3.707 0 0 0-.153.047c-.11.047-.22.078-.33.094a.445.445 0 0 1-.26-.023l.094-.095.142-.047c-.173.016-.295-.004-.366-.06-.07-.054-.13-.192-.177-.412-.488.236-.92.448-1.298.637a22.47 22.47 0 0 0-.944.496c-.11.047-.165.11-.165.188 0 .08.04.166.118.26l.519-.236a.315.315 0 0 1 .083.06c.023.023.035.058.035.105 0 .047-.016.09-.047.13-.032.04-.063.083-.095.13a.907.907 0 0 0-.153.2.455.455 0 0 0-.059.225c0 .063.031.2.094.413.063.212.118.318.166.318a.21.21 0 0 0 .094-.023.37.37 0 0 0 .094-.071c.016 0 .032-.008.048-.024s.031-.023.047-.023a1.66 1.66 0 0 1 .39-.177c.164-.055.42-.099.766-.13.173-.157.303-.256.39-.295a.536.536 0 0 1 .2-.06c.079 0 .15.02.212.06.063.04.134.098.213.177l1.203 1.109-.047.378c-.362 0-.649.055-.861.165-.213.11-.492.338-.838.684a.887.887 0 0 1-.342.224c-.118.04-.224.067-.319.083a2.683 2.683 0 0 0-.224.083c-.055.023-.082.074-.082.153 0 .126.074.303.224.531.15.228.295.342.436.342.158 0 .41-.098.755-.295s.598-.42.756-.672c.204-.362.527-.61.967-.744.44-.134.779-.2 1.015-.2h.212c.078 0 .158.007.236.023h.332a.643.643 0 0 0 .436-.153c.118-.102.225-.287.319-.555-.11.063-.264.11-.46.142a4.242 4.242 0 0 1-.342.047c-.126 0-.209-.008-.248-.024s-.051-.039-.036-.07c.19-.079.335-.15.437-.213a.668.668 0 0 0 .2-.165.512.512 0 0 0 .024-.165v-.508c0-.102.032-.2.095-.295a.63.63 0 0 1 .212.236c.063.11.094.205.094.284.048-.11.083-.205.107-.284a.947.947 0 0 0-.024-.578.661.661 0 0 0-.2-.271c.314 0 .522.122.625.366.102.244.153.5.153.767 0 .629-.22 1.09-.66 1.38s-.976.578-1.605.862a4.538 4.538 0 0 0-.425.165l-.425.189C9.97 8.48 9.184 9.03 8.696 9.629c-.488.597-.731 1.675-.731 3.233v.047c0 .362-.075.905-.225 1.629-.15.723-.672 1.085-1.569 1.085-.33 0-.606-.047-.826-.141zm2.867-8.768c.008-.008.012-.02.012-.035.016-.016.032-.024.047-.024s.04.008.071.024c.016 0 .028.004.036.011l.035.036c.157-.11.33-.205.52-.283.188-.08.33-.118.424-.118a1.089 1.089 0 0 0-.307-.142 1.283 1.283 0 0 0-.354-.047c-.094 0-.193.016-.295.047a.916.916 0 0 0-.318.189l-.048.047a.275.275 0 0 1-.07.047c-.095.079-.22.17-.378.272-.157.102-.346.122-.566.059l-.19-.048a.524.524 0 0 1-.164-.07c-.08-.016-.15-.032-.213-.048s-.134-.023-.212-.023a.48.48 0 0 0-.272.07c-.07.048-.106.095-.106.142 0 .032.008.055.024.071.016.016.047.024.094.024a.105.105 0 0 0 .047-.012.105.105 0 0 1 .048-.012.388.388 0 0 0 .094-.012.496.496 0 0 1 .118-.012.58.58 0 0 1 .212.048c.079.031.166.063.26.094.094.047.2.094.319.142.118.047.24.07.365.07.22 0 .382-.05.484-.153.102-.102.185-.208.248-.319l.035-.035zm3.859 16.39h2.773c.841 0 1.6-.008 2.277-.023l.425-1.841a48.429 48.429 0 0 0-2.761-.295 35.074 35.074 0 0 0-5.44 0 48.8 48.8 0 0 0-2.75.295l.426 1.84a98.82 98.82 0 0 0 2.277.024h2.773zM7.41 3.67c.15-.055.28-.09.39-.107a.511.511 0 0 1-.13.307 1.59 1.59 0 0 1-.248.26v.023a.27.27 0 0 1-.154-.059.18.18 0 0 1-.082-.153c0-.126.074-.216.224-.271zm-.083 18.42c0 .015.044.07.13.165.087.094.138.141.154.141s.062-.047.141-.141.118-.15.118-.166c0-.047-.04-.114-.118-.2s-.126-.13-.141-.13-.067.043-.154.13c-.086.086-.13.153-.13.2zm.095-16.568c-.047.11-.04.236.023.378s.181.212.354.212c.016-.126.024-.248.024-.366s-.024-.216-.07-.295c-.08.016-.15.028-.213.036-.063.008-.103.02-.118.035zm1.227 1.652a.254.254 0 0 0-.13-.224.464.464 0 0 0-.248-.083c-.031.095-.047.181-.047.26s.016.15.047.212c.032 0 .083-.007.154-.023s.145-.063.224-.142zm-.378 15.4c-.031-.024-.047-.06-.047-.107v-.85c0-.062.016-.106.047-.13s.071-.035.118-.035l.732-.047c.252-.016.456-.024.613-.024.063 0 .115.02.154.06a.18.18 0 0 1 .059.13v.849c0 .063-.02.11-.06.141s-.09.048-.153.048H8.39a.191.191 0 0 1-.118-.036zm.425-.579c0 .016.055.087.165.212.11.126.181.19.213.19s.098-.064.2-.19c.103-.125.154-.196.154-.212 0-.047-.051-.13-.154-.248s-.169-.177-.2-.177-.103.06-.213.177-.165.2-.165.248zm2.584-8.708a6.56 6.56 0 0 0-.153-.59c-.063-.299-.126-.61-.189-.933a3.185 3.185 0 0 1-.024-1.026c-.298.33-.483.688-.554 1.073-.07.386-.122.776-.154 1.17-.031.455-.094.9-.188 1.332-.095.433-.339.846-.732 1.24.52 0 .991-.142 1.416-.425.425-.284.637-.716.637-1.298 0-.173-.02-.354-.059-.543zM9.97 3.94a3.111 3.111 0 0 0-.13.437.342.342 0 0 0 .06.295.65.65 0 0 0 .188.165c.08.047.166.094.26.141.142.063.291.142.448.236s.3.236.425.425l.024-.047a1.089 1.089 0 0 0-.26-.53 5.435 5.435 0 0 0-.377-.367c-.126-.094-.244-.2-.354-.318s-.19-.264-.236-.437H9.97zm.307 18.054c0 .016.044.07.13.165.087.095.138.142.153.142.016 0 .063-.047.142-.142.079-.094.118-.15.118-.165 0-.031-.04-.09-.118-.177-.079-.086-.126-.13-.142-.13-.015 0-.066.044-.153.13s-.13.146-.13.177zm2.455.66H11.41c-.063 0-.11-.019-.142-.058a.203.203 0 0 1-.047-.13v-.92c0-.063.016-.11.047-.142.032-.031.08-.047.142-.047h1.322c.063 0 .11.016.141.047.032.032.047.079.047.142v.92c0 .047-.015.09-.047.13-.031.04-.078.059-.141.059zm-1.062-.66c0 .016.055.087.165.212.11.126.189.19.236.19.016 0 .078-.064.189-.19.11-.125.165-.196.165-.212 0-.047-.055-.13-.165-.248-.11-.118-.173-.177-.19-.177-.046 0-.125.06-.235.177-.11.118-.165.2-.165.248zm2.194 0c0-.031-.043-.09-.13-.177s-.137-.13-.153-.13c-.016 0-.063.044-.141.13-.08.087-.118.146-.118.177 0 .016.039.07.118.165.078.095.125.142.141.142.016 0 .067-.047.154-.142.086-.094.13-.15.13-.165zm.2-20.083a.809.809 0 0 1-.129-.425c0-.095.032-.205.095-.33s.251-.244.566-.355c.016 0 .024.004.024.012V.85a.21.21 0 0 1-.024.094 1.581 1.581 0 0 0-.06.142.601.601 0 0 0-.034.212c0 .142.055.248.165.319.11.07.204.106.283.106.094 0 .169-.028.224-.083s.083-.114.083-.177c0-.047.004-.098.012-.153.007-.055.027-.083.059-.083a.58.58 0 0 1 .165.425.647.647 0 0 1-.177.437 1.606 1.606 0 0 1-.531.365l-.118-.07c-.315-.174-.516-.33-.602-.472zm2.821 7.882c-.393.189-.77.346-1.133.472-.456.157-.85.334-1.18.53-.33.197-.495.563-.495 1.098a1.78 1.78 0 0 0 .33 1.039c.016-.44.095-.81.236-1.11.142-.299.346-.519.614-.66a1.755 1.755 0 0 0-.283.672 3.79 3.79 0 0 0-.071.72c0 1.243.334 2.195 1.003 2.856.668.66 1.404.991 2.206.991.425 0 .751-.094.98-.283.228-.189.358-.472.389-.85a1.11 1.11 0 0 1-.484.2 3.016 3.016 0 0 1-.413.036c-.786 0-1.357-.283-1.71-.85-.355-.566-.445-1.25-.272-2.052-.095.298-.205.55-.33.755a1.44 1.44 0 0 1-.449.472c.047-.126.067-.264.06-.413a9.239 9.239 0 0 1-.013-.484 4.156 4.156 0 0 1-.047-.614c0-.393.11-.712.33-.956.22-.244.457-.484.708-.72.268-.22.512-.456.732-.708s.33-.582.33-.99a2.95 2.95 0 0 1-1.038.849zm-2.478 12.815c-.063 0-.114-.016-.153-.048s-.06-.078-.06-.141v-.85c0-.047.02-.09.06-.13a.209.209 0 0 1 .153-.059c.142 0 .342.008.602.024l.743.047c.047 0 .087.012.118.036s.047.067.047.13v.849c0 .047-.015.083-.047.106s-.07.036-.118.036h-1.345zm.307-.614c0 .016.055.087.165.212.11.126.181.19.213.19.015 0 .078-.064.188-.19.11-.125.165-.196.165-.212 0-.047-.055-.13-.165-.248s-.173-.177-.188-.177c-.032 0-.103.06-.213.177s-.165.2-.165.248zM16.2 1.971a.74.74 0 0 1-.024.318c.268.173.523.366.767.578.244.213.468.445.673.696a2.808 2.808 0 0 1-.142-.471 3.04 3.04 0 0 0-.319-.826c-.149-.268-.5-.465-1.05-.59a.994.994 0 0 1 .095.295zm.59 20.118c0-.047-.04-.114-.118-.2-.079-.087-.126-.13-.142-.13-.016 0-.067.043-.153.13s-.13.153-.13.2c0 .016.043.071.13.166s.137.141.153.141c.016 0 .063-.047.142-.141.078-.095.118-.15.118-.166z" }) + ] + } + ); +}); + +exports.default = SiRitzcarlton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.d.ts new file mode 100644 index 000000000..c321f2948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRitzcarlton: IconType; +export { SiRitzcarlton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.mjs new file mode 100644 index 000000000..4804ac838 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRitzcarlton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRitzcarlton = React.forwardRef(function SiRitzcarlton2({ title = "Ritz Carlton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.543 16.862a2.83 2.83 0 0 1-1.168-.743h-.071c-.22.016-.692-.032-1.416-.142s-1.33-.519-1.817-1.227a2.332 2.332 0 0 1-1.086 1.097c-.487.244-1.093.374-1.817.39a4.241 4.241 0 0 1-1.215.696c-.417.15-.893.224-1.428.224-.63 0-1.2-.2-1.711-.602s-.767-.94-.767-1.616c0-.157.008-.315.024-.472.015-.157.047-.3.094-.425.299.393.637.68 1.015.861.377.181.708.272.991.272.44 0 .751-.165.932-.496.181-.33.272-.77.272-1.321v-.342c0-.118-.008-.233-.024-.343-.016-.613.02-1.22.106-1.817.087-.598.46-1.172 1.121-1.723l.236-.189c-.126.032-.24.06-.342.083a1.158 1.158 0 0 1-.248.035c-.11 0-.26-.118-.448-.354a1.661 1.661 0 0 1-.354-.731c-.047-.126-.036-.225.035-.295s.17-.154.295-.248h.024l.023-.024c-.015-.016-.039-.02-.07-.012a.496.496 0 0 1-.118.012.234.234 0 0 1-.107.024h-.13a1.477 1.477 0 0 1-.707-.165 6.459 6.459 0 0 1-.225-.095c-.07-.031-.145-.047-.224-.047s-.15.004-.212.012-.11.02-.142.035H5.7c-.031 0-.063-.02-.094-.059-.032-.04-.048-.098-.048-.177 0-.22.083-.377.248-.472.165-.094.31-.141.437-.141.11 0 .212.015.307.047l.283.094c.11.032.212.06.307.083a.4.4 0 0 0 .283-.036 7.087 7.087 0 0 1-.154-.247 6.626 6.626 0 0 0-.153-.248 3.455 3.455 0 0 1-.153.035.497.497 0 0 1-.083.012c-.142 0-.264-.079-.366-.236-.102-.157-.2-.527-.295-1.11a2.306 2.306 0 0 1-.271-.46.9.9 0 0 1-.083-.318c0-.142.055-.26.165-.354a2.48 2.48 0 0 1 .425-.283L8.39 2.289c.126-.315.256-.554.39-.72s.303-.271.507-.318c.236-.047.504-.087.802-.118.3-.032.622-.055.968-.071a1.36 1.36 0 0 1 .354-.33.785.785 0 0 1 .425-.118c.031 0 .067.004.106.011s.083.02.13.036c.078.016.161.031.248.047.086.016.184.024.295.024.078 0 .184-.004.318-.012s.295-.02.484-.036c.079-.063.2-.133.366-.212.165-.079.342-.157.53-.236.08-.047.166-.09.26-.13.095-.04.181-.075.26-.106.126.079.303.224.53.437s.398.436.508.672c1.007.173 1.633.413 1.876.72.244.307.366.72.366 1.239s.142.905.425 1.156c.283.252.503.417.66.496a.466.466 0 0 1-.341.141 1.18 1.18 0 0 1-.437-.094c.362.22.645.484.85.79.204.307.338.657.4 1.05-.157-.094-.322-.18-.495-.259s-.346-.134-.519-.165c.205.22.354.48.448.779.095.299.142.63.142.991 0 .283-.055.602-.165.956-.11.354-.315.727-.614 1.12.047.048.087.115.118.201s.047.193.047.319c0 .346-.07.653-.212.92s-.299.52-.472.756a9.739 9.739 0 0 0-.425.696 1.61 1.61 0 0 0-.189.79c0 .457.154.78.46.968s.61.283.91.283c.14 0 .314-.023.518-.07.205-.048.41-.15.614-.307.031.094.059.197.083.307s.035.228.035.354c0 .55-.185.995-.555 1.333s-.908.507-1.616.507c-.378 0-.79-.074-1.24-.224zm1.616 3.646a.51.51 0 0 1 .236.177c.048.071.055.154.024.248a3.32 3.32 0 0 1-.07.236l-.095.283c-.095.252-.193.535-.295.85s-.154.621-.154.92c0 .11.004.192.012.247s.012.098.012.13.004.059.012.082.012.052.012.083c0 .079-.028.138-.083.177s-.122.059-.2.059H6.571a.336.336 0 0 1-.2-.059c-.055-.04-.083-.098-.083-.177v-.083c0-.024.008-.05.024-.082 0-.032.004-.075.011-.13s.012-.138.012-.248c0-.298-.051-.605-.153-.92s-.2-.597-.295-.849a4.434 4.434 0 0 0-.095-.295 2.146 2.146 0 0 0-.094-.224.332.332 0 0 1 .047-.248.519.519 0 0 1 .236-.177l-1.557-3.587.118-.023c.078.11.247.26.507.448.26.189.594.283 1.003.283l.047.071a.712.712 0 0 0-.212.625c.031.244.15.366.354.366.141 0 .24-.047.295-.141a.834.834 0 0 0 .106-.284l.07-.023c.016 0 .04.012.072.035a11.104 11.104 0 0 1 .342.212c.086.056.145.099.177.13l-.047.236-.048.236a.932.932 0 0 0-.035.142.42.42 0 0 1-.035.118h-.071a.339.339 0 0 0-.165-.153.452.452 0 0 0-.142-.036.269.269 0 0 0-.224.106.429.429 0 0 0-.083.272c0 .189.055.358.165.507.11.15.3.224.567.224.283 0 .554-.07.814-.212s.39-.362.39-.66a.86.86 0 0 0-.154-.473 1.046 1.046 0 0 0-.484-.377v-.071a3.34 3.34 0 0 0 .449-.437c.141-.165.228-.295.26-.39h.07c.063.08.185.186.366.32.18.133.358.224.53.27v.072c-.157.157-.259.306-.306.448s-.07.26-.07.354c0 .252.086.448.259.59.173.142.487.212.944.212.33 0 .633-.059.908-.177.276-.118.413-.334.413-.649 0-.173-.05-.306-.153-.4a.52.52 0 0 0-.366-.142.502.502 0 0 0-.248.059.706.706 0 0 0-.224.247h-.07c0-.015-.016-.039-.048-.07a5.65 5.65 0 0 0-.189-.225 2.738 2.738 0 0 0-.26-.247v-.071c.064-.047.138-.122.225-.224a4.26 4.26 0 0 0 .271-.366h.071c.142.157.248.255.319.295.07.04.16.059.271.059a.587.587 0 0 0 .26-.071c.094-.047.141-.142.141-.283 0-.173-.086-.303-.26-.39s-.346-.16-.519-.224v-.07c.284-.11.547-.296.791-.555s.39-.484.437-.673h.094c.047.189.193.413.437.673s.507.444.79.554v.071c-.173.063-.346.138-.519.224s-.26.217-.26.39c0 .141.048.236.142.283a.584.584 0 0 0 .531.012c.07-.04.17-.138.295-.295h.094c.095.141.185.263.272.366.086.102.161.177.224.224v.07c-.11.095-.197.178-.26.248a5.65 5.65 0 0 0-.188.225c-.032.031-.048.055-.048.07h-.094a.706.706 0 0 0-.224-.247.455.455 0 0 0-.224-.06.52.52 0 0 0-.366.142.52.52 0 0 0-.154.401c0 .315.138.531.413.65.276.117.579.176.909.176.456 0 .77-.07.944-.212.173-.142.26-.338.26-.59 0-.094-.024-.212-.071-.354s-.15-.291-.307-.448v-.071c.173-.047.35-.138.53-.272.182-.133.296-.24.343-.318h.094c.032.094.115.224.248.39.134.164.28.31.437.436v.07a1.06 1.06 0 0 0-.46.378.86.86 0 0 0-.154.472c0 .299.13.52.39.66s.53.213.814.213c.267 0 .456-.074.566-.224a.834.834 0 0 0 .165-.507c0-.11-.027-.2-.082-.272a.269.269 0 0 0-.224-.106.561.561 0 0 0-.154.036.247.247 0 0 0-.153.153h-.07a.42.42 0 0 1-.036-.118.932.932 0 0 0-.036-.142l-.047-.236-.047-.236c.031-.031.09-.074.177-.13s.169-.106.248-.153c.031-.016.063-.035.094-.059s.055-.035.07-.035l.072.023a.834.834 0 0 0 .106.284c.055.094.145.141.271.141.22 0 .346-.122.378-.366a.712.712 0 0 0-.213-.625l.048-.07c.409 0 .743-.095 1.003-.284s.428-.338.507-.448l.118.023-1.558 3.587zM5.345 15.482a4.734 4.734 0 0 1-.566-.284c.157.583.452.948.885 1.098s.782.224 1.05.224c.299 0 .574-.035.826-.106.251-.071.495-.209.731-.413a2.085 2.085 0 0 1-.53-.095c-.134-.047-.217-.102-.248-.165.676-.078 1.058-.476 1.144-1.192.087-.715.122-1.42.106-2.112v-.661c0-.991.232-1.71.696-2.16.465-.448 1.507-1.018 3.127-1.71a7.818 7.818 0 0 0 1.582-.897c.55-.393.826-.905.826-1.534 0-.22-.087-.507-.26-.861s-.606-.704-1.298-1.05a.886.886 0 0 0-.094-.083.62.62 0 0 0-.095-.06l-.448-.471c.63-.126 1.274.035 1.935.484.66.448.991 1.026.991 1.734 0 .645-.228 1.22-.684 1.723s-1.22.999-2.29 1.487l-.117.047c-.929.409-1.704.83-2.325 1.263-.621.432-.932 1.128-.932 2.088a6.986 6.986 0 0 0 .189 1.652c.015-.645.15-1.38.4-2.207.253-.826.937-1.38 2.054-1.663a4.627 4.627 0 0 0-.401 1.911c0 .693.134 1.334.401 1.924.267.59.66 1.074 1.18 1.451.535.394 1.196.59 1.982.59-.912-.519-1.502-1.144-1.77-1.876a9.306 9.306 0 0 1-.519-2.089 2.643 2.643 0 0 0-.236.697c-.063.291-.07.523-.023.696a3.504 3.504 0 0 1-.295-.755 3.314 3.314 0 0 1-.107-.85c0-.472.095-.968.284-1.487.188-.52.676-.975 1.463-1.369a4.51 4.51 0 0 0-.531.756c-.15.267-.224.582-.224.944 0 .157.007.318.023.483.016.165.055.335.118.508.032-.425.17-.83.413-1.216s.515-.79.814-1.215c.22-.299.44-.614.661-.944.22-.33.41-.677.566-1.038.08.094.126.263.142.507s-.031.468-.142.673c.284-.205.496-.484.638-.838s.212-.775.212-1.263c0-.283-.063-.64-.189-1.074-.126-.432-.417-.869-.873-1.31.189.095.535.37 1.038.827s.756 1.077.756 1.864c0 .472-.193 1.038-.579 1.7-.385.66-1.042 1.336-1.97 2.029.63-.142 1.341-.464 2.136-.968.794-.503 1.191-1.345 1.191-2.525 0-.503-.24-1.176-.72-2.018s-1.301-1.333-2.465-1.475a.262.262 0 0 1 .106-.153c.055-.04.114-.075.177-.106.126-.079.247-.173.365-.283.118-.11.177-.268.177-.472 0-.19-.07-.394-.212-.614s-.385-.472-.731-.755c-.787.126-1.247.326-1.381.602s-.2.444-.2.507c0 .173.07.334.212.484s.338.31.59.484c.063.031.082.062.059.094-.024.031-.051.047-.083.047-.031 0-.075-.02-.13-.059-.055-.04-.13-.09-.224-.153-.22-.173-.53-.378-.932-.614s-.854-.354-1.357-.354c-.488 0-.948.02-1.38.06-.433.038-.697.082-.791.129-.11.047-.2.11-.272.189s-.106.165-.106.26c.11-.048.228-.091.354-.13a1.13 1.13 0 0 1 .33-.06c.08 0 .19.02.331.06.142.039.212.098.212.177H9.9c-.142 0-.236.015-.284.047s-.07.063-.07.094c0 .063.015.114.047.154a.25.25 0 0 0 .118.082.13.13 0 0 0 .094.012.323.323 0 0 1 .071-.012.176.176 0 0 1 .07-.023h.072c.015 0 .023.007.023.023v.047c0 .032-.027.079-.082.142s-.138.126-.248.189c.079-.016.165-.032.26-.047s.157-.024.188-.024c0 .016-.02.047-.059.094s-.067.079-.082.095a.148.148 0 0 1-.06.035.358.358 0 0 1-.106.012.56.56 0 0 0-.153.024 3.707 3.707 0 0 0-.153.047c-.11.047-.22.078-.33.094a.445.445 0 0 1-.26-.023l.094-.095.142-.047c-.173.016-.295-.004-.366-.06-.07-.054-.13-.192-.177-.412-.488.236-.92.448-1.298.637a22.47 22.47 0 0 0-.944.496c-.11.047-.165.11-.165.188 0 .08.04.166.118.26l.519-.236a.315.315 0 0 1 .083.06c.023.023.035.058.035.105 0 .047-.016.09-.047.13-.032.04-.063.083-.095.13a.907.907 0 0 0-.153.2.455.455 0 0 0-.059.225c0 .063.031.2.094.413.063.212.118.318.166.318a.21.21 0 0 0 .094-.023.37.37 0 0 0 .094-.071c.016 0 .032-.008.048-.024s.031-.023.047-.023a1.66 1.66 0 0 1 .39-.177c.164-.055.42-.099.766-.13.173-.157.303-.256.39-.295a.536.536 0 0 1 .2-.06c.079 0 .15.02.212.06.063.04.134.098.213.177l1.203 1.109-.047.378c-.362 0-.649.055-.861.165-.213.11-.492.338-.838.684a.887.887 0 0 1-.342.224c-.118.04-.224.067-.319.083a2.683 2.683 0 0 0-.224.083c-.055.023-.082.074-.082.153 0 .126.074.303.224.531.15.228.295.342.436.342.158 0 .41-.098.755-.295s.598-.42.756-.672c.204-.362.527-.61.967-.744.44-.134.779-.2 1.015-.2h.212c.078 0 .158.007.236.023h.332a.643.643 0 0 0 .436-.153c.118-.102.225-.287.319-.555-.11.063-.264.11-.46.142a4.242 4.242 0 0 1-.342.047c-.126 0-.209-.008-.248-.024s-.051-.039-.036-.07c.19-.079.335-.15.437-.213a.668.668 0 0 0 .2-.165.512.512 0 0 0 .024-.165v-.508c0-.102.032-.2.095-.295a.63.63 0 0 1 .212.236c.063.11.094.205.094.284.048-.11.083-.205.107-.284a.947.947 0 0 0-.024-.578.661.661 0 0 0-.2-.271c.314 0 .522.122.625.366.102.244.153.5.153.767 0 .629-.22 1.09-.66 1.38s-.976.578-1.605.862a4.538 4.538 0 0 0-.425.165l-.425.189C9.97 8.48 9.184 9.03 8.696 9.629c-.488.597-.731 1.675-.731 3.233v.047c0 .362-.075.905-.225 1.629-.15.723-.672 1.085-1.569 1.085-.33 0-.606-.047-.826-.141zm2.867-8.768c.008-.008.012-.02.012-.035.016-.016.032-.024.047-.024s.04.008.071.024c.016 0 .028.004.036.011l.035.036c.157-.11.33-.205.52-.283.188-.08.33-.118.424-.118a1.089 1.089 0 0 0-.307-.142 1.283 1.283 0 0 0-.354-.047c-.094 0-.193.016-.295.047a.916.916 0 0 0-.318.189l-.048.047a.275.275 0 0 1-.07.047c-.095.079-.22.17-.378.272-.157.102-.346.122-.566.059l-.19-.048a.524.524 0 0 1-.164-.07c-.08-.016-.15-.032-.213-.048s-.134-.023-.212-.023a.48.48 0 0 0-.272.07c-.07.048-.106.095-.106.142 0 .032.008.055.024.071.016.016.047.024.094.024a.105.105 0 0 0 .047-.012.105.105 0 0 1 .048-.012.388.388 0 0 0 .094-.012.496.496 0 0 1 .118-.012.58.58 0 0 1 .212.048c.079.031.166.063.26.094.094.047.2.094.319.142.118.047.24.07.365.07.22 0 .382-.05.484-.153.102-.102.185-.208.248-.319l.035-.035zm3.859 16.39h2.773c.841 0 1.6-.008 2.277-.023l.425-1.841a48.429 48.429 0 0 0-2.761-.295 35.074 35.074 0 0 0-5.44 0 48.8 48.8 0 0 0-2.75.295l.426 1.84a98.82 98.82 0 0 0 2.277.024h2.773zM7.41 3.67c.15-.055.28-.09.39-.107a.511.511 0 0 1-.13.307 1.59 1.59 0 0 1-.248.26v.023a.27.27 0 0 1-.154-.059.18.18 0 0 1-.082-.153c0-.126.074-.216.224-.271zm-.083 18.42c0 .015.044.07.13.165.087.094.138.141.154.141s.062-.047.141-.141.118-.15.118-.166c0-.047-.04-.114-.118-.2s-.126-.13-.141-.13-.067.043-.154.13c-.086.086-.13.153-.13.2zm.095-16.568c-.047.11-.04.236.023.378s.181.212.354.212c.016-.126.024-.248.024-.366s-.024-.216-.07-.295c-.08.016-.15.028-.213.036-.063.008-.103.02-.118.035zm1.227 1.652a.254.254 0 0 0-.13-.224.464.464 0 0 0-.248-.083c-.031.095-.047.181-.047.26s.016.15.047.212c.032 0 .083-.007.154-.023s.145-.063.224-.142zm-.378 15.4c-.031-.024-.047-.06-.047-.107v-.85c0-.062.016-.106.047-.13s.071-.035.118-.035l.732-.047c.252-.016.456-.024.613-.024.063 0 .115.02.154.06a.18.18 0 0 1 .059.13v.849c0 .063-.02.11-.06.141s-.09.048-.153.048H8.39a.191.191 0 0 1-.118-.036zm.425-.579c0 .016.055.087.165.212.11.126.181.19.213.19s.098-.064.2-.19c.103-.125.154-.196.154-.212 0-.047-.051-.13-.154-.248s-.169-.177-.2-.177-.103.06-.213.177-.165.2-.165.248zm2.584-8.708a6.56 6.56 0 0 0-.153-.59c-.063-.299-.126-.61-.189-.933a3.185 3.185 0 0 1-.024-1.026c-.298.33-.483.688-.554 1.073-.07.386-.122.776-.154 1.17-.031.455-.094.9-.188 1.332-.095.433-.339.846-.732 1.24.52 0 .991-.142 1.416-.425.425-.284.637-.716.637-1.298 0-.173-.02-.354-.059-.543zM9.97 3.94a3.111 3.111 0 0 0-.13.437.342.342 0 0 0 .06.295.65.65 0 0 0 .188.165c.08.047.166.094.26.141.142.063.291.142.448.236s.3.236.425.425l.024-.047a1.089 1.089 0 0 0-.26-.53 5.435 5.435 0 0 0-.377-.367c-.126-.094-.244-.2-.354-.318s-.19-.264-.236-.437H9.97zm.307 18.054c0 .016.044.07.13.165.087.095.138.142.153.142.016 0 .063-.047.142-.142.079-.094.118-.15.118-.165 0-.031-.04-.09-.118-.177-.079-.086-.126-.13-.142-.13-.015 0-.066.044-.153.13s-.13.146-.13.177zm2.455.66H11.41c-.063 0-.11-.019-.142-.058a.203.203 0 0 1-.047-.13v-.92c0-.063.016-.11.047-.142.032-.031.08-.047.142-.047h1.322c.063 0 .11.016.141.047.032.032.047.079.047.142v.92c0 .047-.015.09-.047.13-.031.04-.078.059-.141.059zm-1.062-.66c0 .016.055.087.165.212.11.126.189.19.236.19.016 0 .078-.064.189-.19.11-.125.165-.196.165-.212 0-.047-.055-.13-.165-.248-.11-.118-.173-.177-.19-.177-.046 0-.125.06-.235.177-.11.118-.165.2-.165.248zm2.194 0c0-.031-.043-.09-.13-.177s-.137-.13-.153-.13c-.016 0-.063.044-.141.13-.08.087-.118.146-.118.177 0 .016.039.07.118.165.078.095.125.142.141.142.016 0 .067-.047.154-.142.086-.094.13-.15.13-.165zm.2-20.083a.809.809 0 0 1-.129-.425c0-.095.032-.205.095-.33s.251-.244.566-.355c.016 0 .024.004.024.012V.85a.21.21 0 0 1-.024.094 1.581 1.581 0 0 0-.06.142.601.601 0 0 0-.034.212c0 .142.055.248.165.319.11.07.204.106.283.106.094 0 .169-.028.224-.083s.083-.114.083-.177c0-.047.004-.098.012-.153.007-.055.027-.083.059-.083a.58.58 0 0 1 .165.425.647.647 0 0 1-.177.437 1.606 1.606 0 0 1-.531.365l-.118-.07c-.315-.174-.516-.33-.602-.472zm2.821 7.882c-.393.189-.77.346-1.133.472-.456.157-.85.334-1.18.53-.33.197-.495.563-.495 1.098a1.78 1.78 0 0 0 .33 1.039c.016-.44.095-.81.236-1.11.142-.299.346-.519.614-.66a1.755 1.755 0 0 0-.283.672 3.79 3.79 0 0 0-.071.72c0 1.243.334 2.195 1.003 2.856.668.66 1.404.991 2.206.991.425 0 .751-.094.98-.283.228-.189.358-.472.389-.85a1.11 1.11 0 0 1-.484.2 3.016 3.016 0 0 1-.413.036c-.786 0-1.357-.283-1.71-.85-.355-.566-.445-1.25-.272-2.052-.095.298-.205.55-.33.755a1.44 1.44 0 0 1-.449.472c.047-.126.067-.264.06-.413a9.239 9.239 0 0 1-.013-.484 4.156 4.156 0 0 1-.047-.614c0-.393.11-.712.33-.956.22-.244.457-.484.708-.72.268-.22.512-.456.732-.708s.33-.582.33-.99a2.95 2.95 0 0 1-1.038.849zm-2.478 12.815c-.063 0-.114-.016-.153-.048s-.06-.078-.06-.141v-.85c0-.047.02-.09.06-.13a.209.209 0 0 1 .153-.059c.142 0 .342.008.602.024l.743.047c.047 0 .087.012.118.036s.047.067.047.13v.849c0 .047-.015.083-.047.106s-.07.036-.118.036h-1.345zm.307-.614c0 .016.055.087.165.212.11.126.181.19.213.19.015 0 .078-.064.188-.19.11-.125.165-.196.165-.212 0-.047-.055-.13-.165-.248s-.173-.177-.188-.177c-.032 0-.103.06-.213.177s-.165.2-.165.248zM16.2 1.971a.74.74 0 0 1-.024.318c.268.173.523.366.767.578.244.213.468.445.673.696a2.808 2.808 0 0 1-.142-.471 3.04 3.04 0 0 0-.319-.826c-.149-.268-.5-.465-1.05-.59a.994.994 0 0 1 .095.295zm.59 20.118c0-.047-.04-.114-.118-.2-.079-.087-.126-.13-.142-.13-.016 0-.067.043-.153.13s-.13.153-.13.2c0 .016.043.071.13.166s.137.141.153.141c.016 0 .063-.047.142-.141.078-.095.118-.15.118-.166z" }) + ] + } + ); +}); + +export { SiRitzcarlton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRive.cjs new file mode 100644 index 000000000..b3ea0b884 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D1D1D"; +const SiRive = React__namespace.forwardRef(function SiRive2({ title = "Rive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.643 1.475c0 .814.668 1.475 1.49 1.475H14.49c1.408 0 2.568.43 3.48 1.29.91.861 1.366 1.967 1.366 3.32 0 1.25-.456 2.274-1.367 3.072-.911.78-2.07 1.168-3.479 1.168H9.12c-.824 0-1.491.66-1.491 1.475 0 .815.667 1.475 1.491 1.475h5.93l5.342 8.482c.332.512.797.768 1.398.768.663 0 1.129-.256 1.398-.768.269-.533.217-1.096-.155-1.69l-4.753-7.56c1.284-.574 2.299-1.414 3.044-2.52.746-1.127 1.119-2.427 1.119-3.902 0-1.496-.342-2.807-1.026-3.934-.662-1.127-1.594-2.008-2.795-2.643C17.42.327 16.044 0 14.49 0H2.134C1.311 0 .643.66.643 1.475Z" }) + ] + } + ); +}); + +exports.default = SiRive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRive.d.ts new file mode 100644 index 000000000..215730169 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D1D1D"; +declare const SiRive: IconType; +export { SiRive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRive.mjs new file mode 100644 index 000000000..ad34260f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D1D1D"; +const SiRive = React.forwardRef(function SiRive2({ title = "Rive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.643 1.475c0 .814.668 1.475 1.49 1.475H14.49c1.408 0 2.568.43 3.48 1.29.91.861 1.366 1.967 1.366 3.32 0 1.25-.456 2.274-1.367 3.072-.911.78-2.07 1.168-3.479 1.168H9.12c-.824 0-1.491.66-1.491 1.475 0 .815.667 1.475 1.491 1.475h5.93l5.342 8.482c.332.512.797.768 1.398.768.663 0 1.129-.256 1.398-.768.269-.533.217-1.096-.155-1.69l-4.753-7.56c1.284-.574 2.299-1.414 3.044-2.52.746-1.127 1.119-2.427 1.119-3.902 0-1.496-.342-2.807-1.026-3.934-.662-1.127-1.594-2.008-2.795-2.643C17.42.327 16.044 0 14.49 0H2.134C1.311 0 .643.66.643 1.475Z" }) + ] + } + ); +}); + +export { SiRive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.cjs new file mode 100644 index 000000000..6d7a64c54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRoadmapdotsh = React__namespace.forwardRef(function SiRoadmapdotsh2({ title = "roadmap.sh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.693 0H3.307A3.307 3.307 0 0 0 0 3.307v17.386A3.307 3.307 0 0 0 3.307 24h17.386A3.307 3.307 0 0 0 24 20.693V3.307A3.307 3.307 0 0 0 20.693 0zm-7.706 9.18c-.349.031-.689.078-1.021.142-.333.063-.65.134-.95.214a3.64 3.64 0 0 0-.736.237v8.097a5.522 5.522 0 0 1-.76.143c-.333.047-.68.07-1.045.07a5.87 5.87 0 0 1-.95-.07 1.588 1.588 0 0 1-.688-.285 1.476 1.476 0 0 1-.452-.57c-.095-.253-.142-.578-.142-.974V9.061c0-.364.063-.673.19-.926.142-.27.34-.507.594-.713a3.93 3.93 0 0 1 .926-.546 9.133 9.133 0 0 1 2.54-.736 8.093 8.093 0 0 1 1.378-.119c.76 0 1.361.15 1.804.451.444.285.665.76.665 1.425 0 .222-.032.443-.095.665a3.075 3.075 0 0 1-.237.57c-.341 0-.682.016-1.021.047zm5.113 8.453c-.412.443-.974.665-1.686.665s-1.274-.222-1.686-.665c-.412-.443-.617-.998-.617-1.662 0-.665.205-1.22.617-1.663.412-.443.974-.664 1.686-.664s1.274.221 1.686.664c.411.444.617.998.617 1.663 0 .664-.206 1.219-.617 1.662z" }) + ] + } + ); +}); + +exports.default = SiRoadmapdotsh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.d.ts new file mode 100644 index 000000000..d66b59527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRoadmapdotsh: IconType; +export { SiRoadmapdotsh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.mjs new file mode 100644 index 000000000..7048f5538 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoadmapdotsh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRoadmapdotsh = React.forwardRef(function SiRoadmapdotsh2({ title = "roadmap.sh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.693 0H3.307A3.307 3.307 0 0 0 0 3.307v17.386A3.307 3.307 0 0 0 3.307 24h17.386A3.307 3.307 0 0 0 24 20.693V3.307A3.307 3.307 0 0 0 20.693 0zm-7.706 9.18c-.349.031-.689.078-1.021.142-.333.063-.65.134-.95.214a3.64 3.64 0 0 0-.736.237v8.097a5.522 5.522 0 0 1-.76.143c-.333.047-.68.07-1.045.07a5.87 5.87 0 0 1-.95-.07 1.588 1.588 0 0 1-.688-.285 1.476 1.476 0 0 1-.452-.57c-.095-.253-.142-.578-.142-.974V9.061c0-.364.063-.673.19-.926.142-.27.34-.507.594-.713a3.93 3.93 0 0 1 .926-.546 9.133 9.133 0 0 1 2.54-.736 8.093 8.093 0 0 1 1.378-.119c.76 0 1.361.15 1.804.451.444.285.665.76.665 1.425 0 .222-.032.443-.095.665a3.075 3.075 0 0 1-.237.57c-.341 0-.682.016-1.021.047zm5.113 8.453c-.412.443-.974.665-1.686.665s-1.274-.222-1.686-.665c-.412-.443-.617-.998-.617-1.662 0-.665.205-1.22.617-1.663.412-.443.974-.664 1.686-.664s1.274.221 1.686.664c.411.444.617.998.617 1.663 0 .664-.206 1.219-.617 1.662z" }) + ] + } + ); +}); + +export { SiRoadmapdotsh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.cjs new file mode 100644 index 000000000..bc9830c1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#343A40"; +const SiRoamresearch = React__namespace.forwardRef(function SiRoamresearch2({ title = "Roam Research", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.14.028C7.315.36 4.072 2.263 1.98 5.411.487 7.646-.232 10.589.067 13.211c.32 2.772 1.4 5.124 3.242 7.049 4.643 4.852 12.252 5.001 17.038.343 1.085-1.057 1.738-1.959 2.407-3.303a11.943 11.943 0 0 0-2.429-13.925C18.372 1.495 16.015.388 13.27.078c-.68-.083-1.56-.1-2.13-.05zm4.814 2.567c1.112.437 2.086 1.068 3.032 1.986.62.598 1.323 1.46 1.3 1.599-.016.072-1.626.725-1.792.725-.056 0-.078-.072-.078-.25 0-.138-.011-.248-.028-.248-.01 0-.758.459-1.654 1.023-.897.565-1.666 1.024-1.71 1.024-.05 0-.133-.061-.194-.139-.127-.16-.216-.171-.354-.044-.066.056-.1.166-.1.316v.226l-.824.46c-.46.249-.89.453-.968.453h-.144V8.161c0-.863.016-2.025.038-2.573.034-.99.04-1.007.155-1.007.117 0 .128-.028.155-.514.067-1.107.25-1.284 1.362-1.323l.514-.016.16-.233c.156-.226.167-.226.366-.171.116.028.46.15.764.271zm-7.05.011l.122.183.641-.006c.604 0 .659.011.902.15.355.21.482.497.526 1.145l.033.498.172.016.171.017.017 2.716.011 2.722-.232.138a3.024 3.024 0 0 0-.936.875l-.177.27h-5.24v-.325l-.592-.017-.598-.017-.398-.586c-.332-.493-.454-.626-.758-.825-.415-.265-.404-.193-.139-1.023.659-2.025 2.203-3.945 4.1-5.107.67-.409 1.932-.995 2.159-1.001.055-.005.155.078.216.177zm12.163 4.902c.354.686.725 1.588.725 1.765 0 .071-.1.149-.327.26-.326.154-.393.237-.393.503 0 .155-.166.36-.564.692l-.327.27h-.99v.333h-2.767v-.886l-.332-.42c-.183-.227-.332-.432-.332-.454 0-.022 1.073-.68 2.39-1.46 2.17-1.29 2.402-1.417 2.485-1.34.05.045.244.377.432.737zm-5.556 3.087c.243.354.454.664.46.686.01.027-.394.05-.892.05h-.918l-.2-.332c-.11-.183-.193-.36-.182-.388.028-.083 1.167-.708 1.234-.68.033.011.254.31.498.664zm-7.282 2.567c.254.398.442.741.415.769-.111.1-5.163 3.32-5.213 3.32-.155 0-.813-1.317-1.024-2.048-.249-.863-.265-.769.188-1.045.178-.111.371-.321.637-.703l.387-.548.603-.027.609-.028.017-.21.016-.205H7.77l.459.725zm1.815-.476c.066.122.127.249.127.288 0 .077-.996.686-1.057.647-.05-.028-.714-1.1-.714-1.15 0-.023.343-.028.758-.023l.758.017.128.221zm9.158-.044l.016.21.554.028c.597.027.525 0 1.184.481.011.006.06.194.11.41.095.425.128.459.493.547.288.072.293.133.072.78-.57 1.682-1.787 3.425-3.287 4.686-.642.542-.603.542-.559-.055.045-.614-.027-.935-.254-1.162-.26-.255-.526-.221-1.3.177-.51.26-.698.332-.897.332-.327 0-.631-.094-.825-.255l-.16-.127.393-.36c.42-.381.62-.73.525-.907-.16-.298-.453-.37-1.045-.26-.498.1-.864.105-1.013.028-.188-.105-.288-.376-.26-.741.028-.332.022-.343-.216-.62l-.238-.282v-1.765l.393-.271c.216-.144.559-.448.758-.675l.37-.404h5.17l.017.205zm-7.814 2.157v.758l-.276.282-.277.283.083.238c.1.282.105.52.022.674-.1.194-.293.222-.896.133a8.212 8.212 0 0 0-.764-.083c-.68 0-.703.482-.06 1.256.31.37.31.365-.084.564-.553.277-.902.25-1.389-.116-.41-.304-.647-.393-.968-.36-.21.017-.31.061-.443.2l-.177.177.006.686c0 .382-.011.691-.023.691-.06 0-1.023-.846-1.45-1.272-.442-.448-.995-1.123-.995-1.217 0-.044 1.516-.72 1.615-.72.034 0 .045.084.034.194-.011.105-.006.194.01.194.017 0 1.362-.747 2.989-1.66a204.276 204.276 0 0 1 3.005-1.66c.022 0 .038.343.038.758z" }) + ] + } + ); +}); + +exports.default = SiRoamresearch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.d.ts new file mode 100644 index 000000000..6b5d25145 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#343A40"; +declare const SiRoamresearch: IconType; +export { SiRoamresearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.mjs new file mode 100644 index 000000000..9b9107a99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoamresearch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#343A40"; +const SiRoamresearch = React.forwardRef(function SiRoamresearch2({ title = "Roam Research", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.14.028C7.315.36 4.072 2.263 1.98 5.411.487 7.646-.232 10.589.067 13.211c.32 2.772 1.4 5.124 3.242 7.049 4.643 4.852 12.252 5.001 17.038.343 1.085-1.057 1.738-1.959 2.407-3.303a11.943 11.943 0 0 0-2.429-13.925C18.372 1.495 16.015.388 13.27.078c-.68-.083-1.56-.1-2.13-.05zm4.814 2.567c1.112.437 2.086 1.068 3.032 1.986.62.598 1.323 1.46 1.3 1.599-.016.072-1.626.725-1.792.725-.056 0-.078-.072-.078-.25 0-.138-.011-.248-.028-.248-.01 0-.758.459-1.654 1.023-.897.565-1.666 1.024-1.71 1.024-.05 0-.133-.061-.194-.139-.127-.16-.216-.171-.354-.044-.066.056-.1.166-.1.316v.226l-.824.46c-.46.249-.89.453-.968.453h-.144V8.161c0-.863.016-2.025.038-2.573.034-.99.04-1.007.155-1.007.117 0 .128-.028.155-.514.067-1.107.25-1.284 1.362-1.323l.514-.016.16-.233c.156-.226.167-.226.366-.171.116.028.46.15.764.271zm-7.05.011l.122.183.641-.006c.604 0 .659.011.902.15.355.21.482.497.526 1.145l.033.498.172.016.171.017.017 2.716.011 2.722-.232.138a3.024 3.024 0 0 0-.936.875l-.177.27h-5.24v-.325l-.592-.017-.598-.017-.398-.586c-.332-.493-.454-.626-.758-.825-.415-.265-.404-.193-.139-1.023.659-2.025 2.203-3.945 4.1-5.107.67-.409 1.932-.995 2.159-1.001.055-.005.155.078.216.177zm12.163 4.902c.354.686.725 1.588.725 1.765 0 .071-.1.149-.327.26-.326.154-.393.237-.393.503 0 .155-.166.36-.564.692l-.327.27h-.99v.333h-2.767v-.886l-.332-.42c-.183-.227-.332-.432-.332-.454 0-.022 1.073-.68 2.39-1.46 2.17-1.29 2.402-1.417 2.485-1.34.05.045.244.377.432.737zm-5.556 3.087c.243.354.454.664.46.686.01.027-.394.05-.892.05h-.918l-.2-.332c-.11-.183-.193-.36-.182-.388.028-.083 1.167-.708 1.234-.68.033.011.254.31.498.664zm-7.282 2.567c.254.398.442.741.415.769-.111.1-5.163 3.32-5.213 3.32-.155 0-.813-1.317-1.024-2.048-.249-.863-.265-.769.188-1.045.178-.111.371-.321.637-.703l.387-.548.603-.027.609-.028.017-.21.016-.205H7.77l.459.725zm1.815-.476c.066.122.127.249.127.288 0 .077-.996.686-1.057.647-.05-.028-.714-1.1-.714-1.15 0-.023.343-.028.758-.023l.758.017.128.221zm9.158-.044l.016.21.554.028c.597.027.525 0 1.184.481.011.006.06.194.11.41.095.425.128.459.493.547.288.072.293.133.072.78-.57 1.682-1.787 3.425-3.287 4.686-.642.542-.603.542-.559-.055.045-.614-.027-.935-.254-1.162-.26-.255-.526-.221-1.3.177-.51.26-.698.332-.897.332-.327 0-.631-.094-.825-.255l-.16-.127.393-.36c.42-.381.62-.73.525-.907-.16-.298-.453-.37-1.045-.26-.498.1-.864.105-1.013.028-.188-.105-.288-.376-.26-.741.028-.332.022-.343-.216-.62l-.238-.282v-1.765l.393-.271c.216-.144.559-.448.758-.675l.37-.404h5.17l.017.205zm-7.814 2.157v.758l-.276.282-.277.283.083.238c.1.282.105.52.022.674-.1.194-.293.222-.896.133a8.212 8.212 0 0 0-.764-.083c-.68 0-.703.482-.06 1.256.31.37.31.365-.084.564-.553.277-.902.25-1.389-.116-.41-.304-.647-.393-.968-.36-.21.017-.31.061-.443.2l-.177.177.006.686c0 .382-.011.691-.023.691-.06 0-1.023-.846-1.45-1.272-.442-.448-.995-1.123-.995-1.217 0-.044 1.516-.72 1.615-.72.034 0 .045.084.034.194-.011.105-.006.194.01.194.017 0 1.362-.747 2.989-1.66a204.276 204.276 0 0 1 3.005-1.66c.022 0 .038.343.038.758z" }) + ] + } + ); +}); + +export { SiRoamresearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.cjs new file mode 100644 index 000000000..e3bf2ad5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CCFF00"; +const SiRobinhood = React__namespace.forwardRef(function SiRobinhood2({ title = "Robinhood", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.84 24h.53c.096 0 .192-.048.224-.128C7.591 13.696 11.94 8.656 14.67 5.638c.112-.128.064-.225-.096-.225h-4.88a.55.55 0 0 0-.45.225L5.746 9.972c-.514.642-.642 1.236-.642 2.086v4.43c-1.14 3.194-1.862 5.361-2.392 7.32-.032.125.016.192.129.192M20.447.646c-.754-.802-4.157-.834-5.73-.224a3 3 0 0 0-.786.465 41 41 0 0 0-3.323 3.178c-.112.113-.064.225.097.225h5.409c.497 0 .786.289.786.786v6.1c0 .16.128.208.225.064l3.258-4.254c.53-.69.69-.898.835-1.861.192-1.413.08-3.58-.77-4.479m-6.982 16.18 2.231-3.676a.7.7 0 0 0 .064-.29V6.73c0-.16-.112-.225-.224-.097-3.355 3.74-5.971 7.672-8.395 12.407-.06.12.016.225.16.177l5.009-1.54c.565-.174.882-.402 1.155-.852" }) + ] + } + ); +}); + +exports.default = SiRobinhood; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.d.ts new file mode 100644 index 000000000..6e0512e8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CCFF00"; +declare const SiRobinhood: IconType; +export { SiRobinhood as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.mjs new file mode 100644 index 000000000..368215e08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobinhood.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CCFF00"; +const SiRobinhood = React.forwardRef(function SiRobinhood2({ title = "Robinhood", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.84 24h.53c.096 0 .192-.048.224-.128C7.591 13.696 11.94 8.656 14.67 5.638c.112-.128.064-.225-.096-.225h-4.88a.55.55 0 0 0-.45.225L5.746 9.972c-.514.642-.642 1.236-.642 2.086v4.43c-1.14 3.194-1.862 5.361-2.392 7.32-.032.125.016.192.129.192M20.447.646c-.754-.802-4.157-.834-5.73-.224a3 3 0 0 0-.786.465 41 41 0 0 0-3.323 3.178c-.112.113-.064.225.097.225h5.409c.497 0 .786.289.786.786v6.1c0 .16.128.208.225.064l3.258-4.254c.53-.69.69-.898.835-1.861.192-1.413.08-3.58-.77-4.479m-6.982 16.18 2.231-3.676a.7.7 0 0 0 .064-.29V6.73c0-.16-.112-.225-.224-.097-3.355 3.74-5.971 7.672-8.395 12.407-.06.12.016.225.16.177l5.009-1.54c.565-.174.882-.402 1.155-.852" }) + ] + } + ); +}); + +export { SiRobinhood as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.cjs new file mode 100644 index 000000000..7915fd22c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRoblox = React__namespace.forwardRef(function SiRoblox2({ title = "Roblox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.926 23.998 0 18.892 5.075.002 24 5.108ZM15.348 10.09l-5.282-1.453-1.414 5.273 5.282 1.453z" }) + ] + } + ); +}); + +exports.default = SiRoblox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.d.ts new file mode 100644 index 000000000..ffb653423 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRoblox: IconType; +export { SiRoblox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.mjs new file mode 100644 index 000000000..ce1098671 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoblox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRoblox = React.forwardRef(function SiRoblox2({ title = "Roblox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.926 23.998 0 18.892 5.075.002 24 5.108ZM15.348 10.09l-5.282-1.453-1.414 5.273 5.282 1.453z" }) + ] + } + ); +}); + +export { SiRoblox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.cjs new file mode 100644 index 000000000..d57305fd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A2FF"; +const SiRobloxstudio = React__namespace.forwardRef(function SiRobloxstudio2({ title = "Roblox Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 13.936 15.356 L 1.826 12.112 L 0 18.93 L 18.928 24 L 21.608 14.01 L 14.79 12.18 L 13.936 15.356 Z M 5.072 0 L 2.394 9.992 L 9.21 11.822 L 10.064 8.644 L 22.174 11.89 L 24 5.072 L 5.072 0 Z" }) + ] + } + ); +}); + +exports.default = SiRobloxstudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.d.ts new file mode 100644 index 000000000..e2aad8701 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A2FF"; +declare const SiRobloxstudio: IconType; +export { SiRobloxstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.mjs new file mode 100644 index 000000000..9c9965a50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobloxstudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A2FF"; +const SiRobloxstudio = React.forwardRef(function SiRobloxstudio2({ title = "Roblox Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 13.936 15.356 L 1.826 12.112 L 0 18.93 L 18.928 24 L 21.608 14.01 L 14.79 12.18 L 13.936 15.356 Z M 5.072 0 L 2.394 9.992 L 9.21 11.822 L 10.064 8.644 L 22.174 11.89 L 24 5.072 L 5.072 0 Z" }) + ] + } + ); +}); + +export { SiRobloxstudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.cjs new file mode 100644 index 000000000..d0b769bec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6706CE"; +const SiRoboflow = React__namespace.forwardRef(function SiRoboflow2({ title = "Roboflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.512 3.6a9.6 9.6 0 0 1 2.594.39c1.764.52 3.511 1.747 3.823 3.68.066.41.065.829.007 1.24-.208 1.466-1.09 2.777-2.09 3.83-1.063 1.122-2.417 1.854-3.54 2.898-.657.611-.925 1.36-.132 1.995 1.084.553 1.986.266 2.97-.332.582-.353 1.08-.823 1.511-1.345.219-.264.422-.542.617-.825.164-.24.317-.517.537-.716a.8.8 0 0 1 .502-.267.69.69 0 0 1 .7.406c.118.28.013.64-.113.9-.652 1.346-1.368 2.25-1.867 2.78-1.486 1.653-3.809 2.736-5.955 1.846-1.234-.51-2.198-1.658-2.37-2.998-.32-2.502 2.588-3.95 4.12-5.368.937-.868 1.965-2.203 1.486-3.562-.459-1.302-1.988-1.868-3.246-2-1.24-.128-2.5.128-3.624.654-.882.412-1.625 1.038-2.32 1.711-.23.223-.45.46-.688.673-.206.184-.453.352-.732.39-.417.056-.813-.248-.76-.688.086-.712.592-1.332 1.036-1.862q.412-.493.884-.928a9.3 9.3 0 0 1 2.397-1.6 9.9 9.9 0 0 1 4.253-.901m-2.22 5.264c1.558-.055 1.92 1.034.882 1.843-1.763 1.372-3.997 2.745-4.224 4.95-.092.887.352 2.293.89 3.24.04.07.061.153.058.24-.01.231-.19.42-.428.409-.162-.008-.311-.09-.45-.176-.639-.395-1.238-.89-1.705-1.481a5 5 0 0 1-.665-1.116 4.6 4.6 0 0 1-.323-1.196 4.6 4.6 0 0 1 .011-1.238q.045-.315.128-.62c.673-2.49 3.377-4.564 5.498-4.828q.172-.021.328-.027" }) + ] + } + ); +}); + +exports.default = SiRoboflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.d.ts new file mode 100644 index 000000000..030bc540c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6706CE"; +declare const SiRoboflow: IconType; +export { SiRoboflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.mjs new file mode 100644 index 000000000..9dbf684c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoboflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6706CE"; +const SiRoboflow = React.forwardRef(function SiRoboflow2({ title = "Roboflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m.512 3.6a9.6 9.6 0 0 1 2.594.39c1.764.52 3.511 1.747 3.823 3.68.066.41.065.829.007 1.24-.208 1.466-1.09 2.777-2.09 3.83-1.063 1.122-2.417 1.854-3.54 2.898-.657.611-.925 1.36-.132 1.995 1.084.553 1.986.266 2.97-.332.582-.353 1.08-.823 1.511-1.345.219-.264.422-.542.617-.825.164-.24.317-.517.537-.716a.8.8 0 0 1 .502-.267.69.69 0 0 1 .7.406c.118.28.013.64-.113.9-.652 1.346-1.368 2.25-1.867 2.78-1.486 1.653-3.809 2.736-5.955 1.846-1.234-.51-2.198-1.658-2.37-2.998-.32-2.502 2.588-3.95 4.12-5.368.937-.868 1.965-2.203 1.486-3.562-.459-1.302-1.988-1.868-3.246-2-1.24-.128-2.5.128-3.624.654-.882.412-1.625 1.038-2.32 1.711-.23.223-.45.46-.688.673-.206.184-.453.352-.732.39-.417.056-.813-.248-.76-.688.086-.712.592-1.332 1.036-1.862q.412-.493.884-.928a9.3 9.3 0 0 1 2.397-1.6 9.9 9.9 0 0 1 4.253-.901m-2.22 5.264c1.558-.055 1.92 1.034.882 1.843-1.763 1.372-3.997 2.745-4.224 4.95-.092.887.352 2.293.89 3.24.04.07.061.153.058.24-.01.231-.19.42-.428.409-.162-.008-.311-.09-.45-.176-.639-.395-1.238-.89-1.705-1.481a5 5 0 0 1-.665-1.116 4.6 4.6 0 0 1-.323-1.196 4.6 4.6 0 0 1 .011-1.238q.045-.315.128-.62c.673-2.49 3.377-4.564 5.498-4.828q.172-.021.328-.027" }) + ] + } + ); +}); + +export { SiRoboflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.cjs new file mode 100644 index 000000000..bb74db838 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRobotframework = React__namespace.forwardRef(function SiRobotframework2({ title = "Robot Framework", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.9565 10.2246c0-1.8766 1.5257-3.4023 3.4-3.4023 1.8766 0 3.4024 1.5257 3.4024 3.4023 0 .6838-.5526 1.2364-1.2341 1.2364-.6818 0-1.2344-.5526-1.2344-1.2364 0-.513-.4185-.9296-.9338-.9296-.5129 0-.9317.4165-.9317.9296 0 .6838-.5523 1.2364-1.234 1.2364-.6818 0-1.2344-.5526-1.2344-1.2364m14.0868 5.717c0 .6842-.5524 1.2363-1.2341 1.2363H6.3575c-.6818 0-1.2344-.552-1.2344-1.2363 0-.6837.5526-1.2363 1.2344-1.2363h11.4517c.6817 0 1.234.5526 1.234 1.2363m-5.351-5.0244c-.3814-.5657-.2323-1.3328.3334-1.7143l2.8628-1.9334c.5613-.3902 1.3329-.2324 1.7144.3289.3815.5654.2323 1.3329-.3334 1.7144l-2.8628 1.9333c-.5442.3831-1.3348.2379-1.7144-.3289zm7.8393 7.6018a.8815.8815 0 0 1-.258.6227l-2.1277 2.1277a.8822.8822 0 0 1-.623.258H5.4772a.8822.8822 0 0 1-.623-.258l-2.1277-2.1277a.8815.8815 0 0 1-.258-.6227V5.4818a.8797.8797 0 0 1 .258-.6228l2.1277-2.1282a.8816.8816 0 0 1 .623-.2578h13.0456a.8816.8816 0 0 1 .623.2578l2.1277 2.1282a.8797.8797 0 0 1 .258.6228V18.519zm1.811-15.0835L20.5644.6577A2.2454 2.2454 0 0 0 18.9775 0H5.0207A2.2445 2.2445 0 0 0 3.433.658L.657 3.4359A2.2449 2.2449 0 0 0 0 5.0228v13.9547c0 .5953.2366 1.1667.6575 1.5872l2.778 2.7779c.421.421.9918.6573 1.5871.6573h13.9548a2.2448 2.2448 0 0 0 1.5872-.6573l2.7779-2.7779A2.2436 2.2436 0 0 0 24 18.9775V5.023a2.2451 2.2451 0 0 0-.6575-1.5875z" }) + ] + } + ); +}); + +exports.default = SiRobotframework; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.d.ts new file mode 100644 index 000000000..7d4fa78e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRobotframework: IconType; +export { SiRobotframework as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.mjs new file mode 100644 index 000000000..ca173c545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRobotframework.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRobotframework = React.forwardRef(function SiRobotframework2({ title = "Robot Framework", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.9565 10.2246c0-1.8766 1.5257-3.4023 3.4-3.4023 1.8766 0 3.4024 1.5257 3.4024 3.4023 0 .6838-.5526 1.2364-1.2341 1.2364-.6818 0-1.2344-.5526-1.2344-1.2364 0-.513-.4185-.9296-.9338-.9296-.5129 0-.9317.4165-.9317.9296 0 .6838-.5523 1.2364-1.234 1.2364-.6818 0-1.2344-.5526-1.2344-1.2364m14.0868 5.717c0 .6842-.5524 1.2363-1.2341 1.2363H6.3575c-.6818 0-1.2344-.552-1.2344-1.2363 0-.6837.5526-1.2363 1.2344-1.2363h11.4517c.6817 0 1.234.5526 1.234 1.2363m-5.351-5.0244c-.3814-.5657-.2323-1.3328.3334-1.7143l2.8628-1.9334c.5613-.3902 1.3329-.2324 1.7144.3289.3815.5654.2323 1.3329-.3334 1.7144l-2.8628 1.9333c-.5442.3831-1.3348.2379-1.7144-.3289zm7.8393 7.6018a.8815.8815 0 0 1-.258.6227l-2.1277 2.1277a.8822.8822 0 0 1-.623.258H5.4772a.8822.8822 0 0 1-.623-.258l-2.1277-2.1277a.8815.8815 0 0 1-.258-.6227V5.4818a.8797.8797 0 0 1 .258-.6228l2.1277-2.1282a.8816.8816 0 0 1 .623-.2578h13.0456a.8816.8816 0 0 1 .623.2578l2.1277 2.1282a.8797.8797 0 0 1 .258.6228V18.519zm1.811-15.0835L20.5644.6577A2.2454 2.2454 0 0 0 18.9775 0H5.0207A2.2445 2.2445 0 0 0 3.433.658L.657 3.4359A2.2449 2.2449 0 0 0 0 5.0228v13.9547c0 .5953.2366 1.1667.6575 1.5872l2.778 2.7779c.421.421.9918.6573 1.5871.6573h13.9548a2.2448 2.2448 0 0 0 1.5872-.6573l2.7779-2.7779A2.2436 2.2436 0 0 0 24 18.9775V5.023a2.2451 2.2451 0 0 0-.6575-1.5875z" }) + ] + } + ); +}); + +export { SiRobotframework as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.cjs new file mode 100644 index 000000000..8c6c8d2d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D33847"; +const SiRocket = React__namespace.forwardRef(function SiRocket2({ title = "Rocket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.735.238V.236a.248.248 0 0 0-.2-.188c-.256-.04-6.336-.924-14.17 7.051a28.44 28.44 0 0 0-2.12 2.576l-4.047 1.166a.246.246 0 0 0-.124.08l-2.856 3.5a.248.248 0 0 0 .126.394l3.887 1.096.484-.566c.178-.208.37-.4.574-.58l.54-.472-.38.608a5.556 5.556 0 0 1-.482.66l-.52.606c.008.79.214 1.488.62 2.068L3.68 19.653c-.148.16-.036.272.12.428l1.11 1.086c.153.16.255.258.41.1l1.505-1.534c.34.122 1.162.334 2.4.14l.75-.576c.212-.164.438-.312.672-.442l.644-.36-.514.53c-.187.192-.387.37-.6.534l-.62.476 1.424 3.804a.246.246 0 0 0 .404.09l3.242-3.144a.248.248 0 0 0 .072-.136l.698-4.108c.884-.78 1.78-1.686 2.66-2.694 5.072-5.806 5.798-10.315 5.78-12.487-.008-.702-.094-1.094-.1-1.122h-.002zM16.49 11.165c-1.274 1.296-3.1 1.564-4.082.6-.98-.962-.744-2.794.53-4.09s3.1-1.566 4.08-.602c.982.964.746 2.796-.528 4.092z" }) + ] + } + ); +}); + +exports.default = SiRocket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.d.ts new file mode 100644 index 000000000..930107fe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D33847"; +declare const SiRocket: IconType; +export { SiRocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.mjs new file mode 100644 index 000000000..37392f03b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D33847"; +const SiRocket = React.forwardRef(function SiRocket2({ title = "Rocket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.735.238V.236a.248.248 0 0 0-.2-.188c-.256-.04-6.336-.924-14.17 7.051a28.44 28.44 0 0 0-2.12 2.576l-4.047 1.166a.246.246 0 0 0-.124.08l-2.856 3.5a.248.248 0 0 0 .126.394l3.887 1.096.484-.566c.178-.208.37-.4.574-.58l.54-.472-.38.608a5.556 5.556 0 0 1-.482.66l-.52.606c.008.79.214 1.488.62 2.068L3.68 19.653c-.148.16-.036.272.12.428l1.11 1.086c.153.16.255.258.41.1l1.505-1.534c.34.122 1.162.334 2.4.14l.75-.576c.212-.164.438-.312.672-.442l.644-.36-.514.53c-.187.192-.387.37-.6.534l-.62.476 1.424 3.804a.246.246 0 0 0 .404.09l3.242-3.144a.248.248 0 0 0 .072-.136l.698-4.108c.884-.78 1.78-1.686 2.66-2.694 5.072-5.806 5.798-10.315 5.78-12.487-.008-.702-.094-1.094-.1-1.122h-.002zM16.49 11.165c-1.274 1.296-3.1 1.564-4.082.6-.98-.962-.744-2.794.53-4.09s3.1-1.566 4.08-.602c.982.964.746 2.796-.528 4.092z" }) + ] + } + ); +}); + +export { SiRocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.cjs new file mode 100644 index 000000000..f2c561f63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5455C"; +const SiRocketdotchat = React__namespace.forwardRef(function SiRocketdotchat2({ title = "Rocket.Chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.909 8.381c-.651-1.01-1.564-1.905-2.71-2.66-2.215-1.457-5.127-2.259-8.197-2.259-1.027 0-2.038.09-3.018.266a9.978 9.978 0 0 0-2.075-1.53C4.11.803 1.646 1.323.4 1.77a.598.598 0 0 0-.233.977c.879.907 2.332 2.698 1.974 4.327C.753 8.493 0 10.203 0 11.982c0 1.815.752 3.524 2.142 4.942.357 1.63-1.096 3.421-1.975 4.328a.597.597 0 0 0 .233.977c1.245.448 3.71.968 6.508-.427a10.031 10.031 0 0 0 2.075-1.53 17.06 17.06 0 0 0 3.018.265c3.071 0 5.983-.801 8.197-2.257 1.147-.755 2.06-1.65 2.71-2.661C23.633 14.493 24 13.28 24 12.017c.001-1.297-.366-2.508-1.091-3.636zM11.875 18.437c-1.328 0-2.594-.171-3.748-.48l-.844.81a7.716 7.716 0 0 1-1.556 1.154 6.118 6.118 0 0 1-2.2.621c.042-.074.079-.149.119-.224.844-1.553 1.073-2.948.683-4.186-1.382-1.086-2.212-2.476-2.212-3.99 0-3.476 4.369-6.294 9.757-6.294s9.757 2.818 9.757 6.294c.001 3.477-4.367 6.295-9.756 6.295zm-3.229-6.315c0 .788-.644 1.427-1.438 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426.794 0 1.438.638 1.438 1.426zm4.627 0c0 .788-.644 1.427-1.438 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426.794 0 1.438.638 1.438 1.426zm4.63 0c0 .788-.645 1.427-1.439 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426.794 0 1.438.638 1.438 1.426z" }) + ] + } + ); +}); + +exports.default = SiRocketdotchat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.d.ts new file mode 100644 index 000000000..c732af8f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5455C"; +declare const SiRocketdotchat: IconType; +export { SiRocketdotchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.mjs new file mode 100644 index 000000000..4028d3cd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocketdotchat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5455C"; +const SiRocketdotchat = React.forwardRef(function SiRocketdotchat2({ title = "Rocket.Chat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.909 8.381c-.651-1.01-1.564-1.905-2.71-2.66-2.215-1.457-5.127-2.259-8.197-2.259-1.027 0-2.038.09-3.018.266a9.978 9.978 0 0 0-2.075-1.53C4.11.803 1.646 1.323.4 1.77a.598.598 0 0 0-.233.977c.879.907 2.332 2.698 1.974 4.327C.753 8.493 0 10.203 0 11.982c0 1.815.752 3.524 2.142 4.942.357 1.63-1.096 3.421-1.975 4.328a.597.597 0 0 0 .233.977c1.245.448 3.71.968 6.508-.427a10.031 10.031 0 0 0 2.075-1.53 17.06 17.06 0 0 0 3.018.265c3.071 0 5.983-.801 8.197-2.257 1.147-.755 2.06-1.65 2.71-2.661C23.633 14.493 24 13.28 24 12.017c.001-1.297-.366-2.508-1.091-3.636zM11.875 18.437c-1.328 0-2.594-.171-3.748-.48l-.844.81a7.716 7.716 0 0 1-1.556 1.154 6.118 6.118 0 0 1-2.2.621c.042-.074.079-.149.119-.224.844-1.553 1.073-2.948.683-4.186-1.382-1.086-2.212-2.476-2.212-3.99 0-3.476 4.369-6.294 9.757-6.294s9.757 2.818 9.757 6.294c.001 3.477-4.367 6.295-9.756 6.295zm-3.229-6.315c0 .788-.644 1.427-1.438 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426.794 0 1.438.638 1.438 1.426zm4.627 0c0 .788-.644 1.427-1.438 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426.794 0 1.438.638 1.438 1.426zm4.63 0c0 .788-.645 1.427-1.439 1.427a1.433 1.433 0 0 1-1.438-1.427c0-.788.644-1.426 1.438-1.426.794 0 1.438.638 1.438 1.426z" }) + ] + } + ); +}); + +export { SiRocketdotchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.cjs new file mode 100644 index 000000000..8525160f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A2A2A"; +const SiRocksdb = React__namespace.forwardRef(function SiRocksdb2({ title = "RocksDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.299 2.519-2.102.985c.006.005.006.014.006.02a.81.81 0 0 0 .303.337c-2.557 1.32-3.643 3.104-3.643 3.104L4.09 12.228a1.183 1.183 0 0 1-1.598-.482 1.183 1.183 0 0 1 .483-1.596l2.771-1.492A2.226 2.226 0 0 0 6.912 6.84l-1.664.894-2.771 1.494a2.23 2.23 0 0 0 2.109 3.927l1.25-.674c-.09.493-.05 1.019.146 1.516.066.17.11.277.11.277.443.96-.14 1.713-.903 1.713h-.242l-.879 3.828a.93.93 0 0 0-.441-.255l-.438 1.802a.923.923 0 0 0 1.061-.521l1.992-3.578c2.522-.246 3.85-1.954 3.79-4.36 2.611.16 6.093-1.48 7.64-3.726 1.175 1.492 3.395 1.28 4.385.902l.19-.064a.93.93 0 0 0-.11.44l1.857-.02a.933.933 0 0 0-.94-.913h-.01l-3.192-.275-.73-1.914v-2.03a.982.982 0 0 0 .483.126c.527 0 .96-.406 1.01-.918l.764-.508-.035-1.03a.19.19 0 0 0-.192-.187l-.955-.014a.73.73 0 0 0-.898-.252zm.25.508c.166 0 .303.135.303.3a.305.305 0 0 1-.303.304.301.301 0 0 1-.295-.303c0-.166.13-.3.295-.3zM5.48 4.567a.528.528 0 0 0-.232.686l.127.22.924-.495-.12-.221a.528.528 0 0 0-.699-.19zm12.487.235c.156 0 .281.144.281.144s-.045.056-.115.096c.11.045.185.115.185.115s-.075.072-.185.117a.47.47 0 0 1 .115.094s-.125.147-.281.147c-.156 0-.281-.147-.281-.147s.044-.053.115-.094a.558.558 0 0 1-.186-.117s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.28-.144zm-1.461.693c.156 0 .281.145.281.145s-.045.05-.115.095c.11.046.185.116.185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.125.147-.281.147c-.156 0-.281-.147-.281-.147s.045-.055.115-.095a.674.674 0 0 1-.186-.115s.075-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.145.28-.145zm-9.9.05-.924.497.048.096c.09.17.137.352.141.533l.98-.53a2.125 2.125 0 0 0-.197-.501zm11.236.948c.156 0 .281.147.281.147s-.045.055-.115.095c.11.046.185.116.185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.13.147-.281.147c-.156 0-.281-.147-.281-.147s.044-.055.115-.095a.674.674 0 0 1-.186-.115s.075-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.147.28-.147zm-2.844.399c.156 0 .281.144.281.144s-.045.056-.115.096c.11.045.186.115.186.115s-.075.07-.186.115c.07.04.115.096.115.096s-.125.146-.281.146c-.156 0-.281-.146-.281-.146s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.076-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.281-.144zm7.807.18c-.015.004-.03.015-.045.025l.004-.004-2.711.972.326.866c.508-.13 1.286-.69 1.834-1.121a.94.94 0 0 0 .045.453L24 7.617a.932.932 0 0 0-1.195-.547zm-6.37.255c.156 0 .282.147.282.147s-.045.055-.115.095a.588.588 0 0 1 .185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.126.147-.281.147c-.156 0-.282-.147-.282-.147s.045-.055.116-.095c-.111-.045-.186-.115-.186-.115s.075-.07.186-.116c-.07-.04-.116-.095-.116-.095s.126-.147.282-.147zm1.778.559c.156 0 .281.144.281.144s-.045.056-.115.096a.56.56 0 0 1 .185.115s-.075.072-.185.117a.47.47 0 0 1 .115.094s-.125.147-.281.147c-.156 0-.281-.147-.281-.147s.045-.053.115-.094c-.11-.045-.186-.117-.186-.117s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.28-.144zm-3.887.386c.156 0 .281.145.281.145s-.044.055-.115.096c.11.045.186.115.186.115s-.075.072-.186.117a.47.47 0 0 1 .115.094s-.125.146-.28.146c-.157 0-.282-.146-.282-.146s.045-.054.115-.094c-.11-.045-.185-.117-.185-.117s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.125-.145.281-.145zm-1.904.25c.156 0 .281.147.281.147s-.045.055-.115.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.125.146-.281.146c-.156 0-.281-.146-.281-.146s.045-.05.115-.096a.674.674 0 0 1-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.147.28-.147zm3.611.342c.156 0 .281.147.281.147s-.044.055-.115.095c.11.04.186.116.186.116s-.075.07-.186.115c.07.04.115.096.115.096s-.125.146-.28.146c-.157 0-.282-.146-.282-.146s.045-.056.115-.096c-.11-.045-.185-.115-.185-.115s.075-.07.185-.116c-.07-.04-.115-.095-.115-.095s.125-.147.281-.147zm-2.703.85c.156 0 .281.146.281.146s-.045.054-.115.094c.11.04.186.117.186.117s-.075.07-.186.116c.07.04.115.095.115.095s-.125.145-.28.145c-.157 0-.282-.145-.282-.145s.047-.055.117-.095c-.11-.046-.187-.116-.187-.116s.077-.072.187-.117a.506.506 0 0 1-.117-.094s.125-.146.281-.146zm-2.27.02c.156 0 .282.146.282.146s-.045.055-.115.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.126.144-.281.144c-.156 0-.282-.144-.282-.144s.045-.056.116-.096c-.111-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.116-.096-.116-.096s.126-.147.282-.147zm3.758.306c.156 0 .282.146.282.146s-.045.056-.116.096c.11.045.186.115.186.115s-.075.07-.186.116c.07.04.116.095.116.095s-.126.145-.282.145c-.155 0-.28-.145-.28-.145s.044-.055.114-.095a.688.688 0 0 1-.185-.116s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.146.281-.146zm-5.662.322c.156 0 .281.145.281.145s-.044.055-.115.096c.11.04.186.115.186.115s-.075.07-.186.115c.07.04.116.096.116.096s-.126.146-.282.146c-.155 0-.281-.146-.281-.146s.045-.056.115-.096c-.11-.045-.185-.115-.185-.115s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.145.281-.145zm3.356.803c.155 0 .281.147.281.147s-.045.055-.115.095a.56.56 0 0 1 .185.115s-.075.07-.185.116c.07.04.115.095.115.095s-.126.145-.281.145c-.156 0-.282-.145-.282-.145s.045-.055.116-.095c-.11-.046-.186-.116-.186-.116s.075-.07.186-.115c-.07-.04-.116-.095-.116-.095s.126-.147.282-.147zm-1.848.262c.156 0 .281.146.281.146s-.045.054-.115.094a.49.49 0 0 1 .186.117s-.075.07-.186.115c.07.04.115.096.115.096s-.125.145-.28.145c-.157 0-.282-.145-.282-.145s.045-.055.115-.096c-.11-.045-.185-.115-.185-.115s.075-.072.185-.117c-.07-.04-.115-.094-.115-.094s.125-.146.281-.146zm-3.316.08c.155 0 .28.146.28.146s-.044.056-.114.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.126.145-.281.145c-.156 0-.282-.145-.282-.145s.047-.055.118-.096a.72.72 0 0 1-.188-.115s.077-.07.188-.115c-.07-.04-.118-.096-.118-.096s.126-.146.282-.146zm16.646.527-5.705 1.428-2.23 2.53-3.25.08-1.227 2.814-3.193.834-2 1.824h16.093c.834 0 1.512-.68 1.512-1.514zm-15.053.217c.156 0 .282.144.282.144s-.045.056-.116.096c.11.04.186.115.186.115s-.075.07-.186.116c.07.04.116.095.116.095s-.126.147-.282.147c-.155 0-.28-.147-.28-.147s.044-.055.114-.095a.688.688 0 0 1-.185-.116s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.144.281-.144zm-1.898 1.014c.156 0 .281.146.281.146s-.047.056-.117.096a.72.72 0 0 1 .188.115s-.077.07-.188.115c.07.04.117.096.117.096s-.13.15-.281.145c-.156 0-.281-.145-.281-.145s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.146.281-.146zm1.582.552c.156 0 .281.147.281.147s-.045.055-.115.096c.11.045.186.115.186.115s-.075.07-.186.115c.07.04.115.096.115.096s-.125.144-.281.144c-.156 0-.281-.144-.281-.144s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.147.281-.147zm-1.086 1.256c.156 0 .281.147.281.147s-.045.055-.115.095c.11.04.186.116.186.116s-.075.07-.186.115c.07.04.115.096.115.096s-.125.144-.28.144c-.157 0-.282-.144-.282-.144s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.076-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.147.281-.147zm-3.203 1.155-2.709 2.325a.969.969 0 0 0-.205-.473L0 19.277a.928.928 0 0 0 1.195.192l2.649-1.201z" }) + ] + } + ); +}); + +exports.default = SiRocksdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.d.ts new file mode 100644 index 000000000..0016f1d8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A2A2A"; +declare const SiRocksdb: IconType; +export { SiRocksdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.mjs new file mode 100644 index 000000000..7c048026f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRocksdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A2A2A"; +const SiRocksdb = React.forwardRef(function SiRocksdb2({ title = "RocksDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.299 2.519-2.102.985c.006.005.006.014.006.02a.81.81 0 0 0 .303.337c-2.557 1.32-3.643 3.104-3.643 3.104L4.09 12.228a1.183 1.183 0 0 1-1.598-.482 1.183 1.183 0 0 1 .483-1.596l2.771-1.492A2.226 2.226 0 0 0 6.912 6.84l-1.664.894-2.771 1.494a2.23 2.23 0 0 0 2.109 3.927l1.25-.674c-.09.493-.05 1.019.146 1.516.066.17.11.277.11.277.443.96-.14 1.713-.903 1.713h-.242l-.879 3.828a.93.93 0 0 0-.441-.255l-.438 1.802a.923.923 0 0 0 1.061-.521l1.992-3.578c2.522-.246 3.85-1.954 3.79-4.36 2.611.16 6.093-1.48 7.64-3.726 1.175 1.492 3.395 1.28 4.385.902l.19-.064a.93.93 0 0 0-.11.44l1.857-.02a.933.933 0 0 0-.94-.913h-.01l-3.192-.275-.73-1.914v-2.03a.982.982 0 0 0 .483.126c.527 0 .96-.406 1.01-.918l.764-.508-.035-1.03a.19.19 0 0 0-.192-.187l-.955-.014a.73.73 0 0 0-.898-.252zm.25.508c.166 0 .303.135.303.3a.305.305 0 0 1-.303.304.301.301 0 0 1-.295-.303c0-.166.13-.3.295-.3zM5.48 4.567a.528.528 0 0 0-.232.686l.127.22.924-.495-.12-.221a.528.528 0 0 0-.699-.19zm12.487.235c.156 0 .281.144.281.144s-.045.056-.115.096c.11.045.185.115.185.115s-.075.072-.185.117a.47.47 0 0 1 .115.094s-.125.147-.281.147c-.156 0-.281-.147-.281-.147s.044-.053.115-.094a.558.558 0 0 1-.186-.117s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.28-.144zm-1.461.693c.156 0 .281.145.281.145s-.045.05-.115.095c.11.046.185.116.185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.125.147-.281.147c-.156 0-.281-.147-.281-.147s.045-.055.115-.095a.674.674 0 0 1-.186-.115s.075-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.145.28-.145zm-9.9.05-.924.497.048.096c.09.17.137.352.141.533l.98-.53a2.125 2.125 0 0 0-.197-.501zm11.236.948c.156 0 .281.147.281.147s-.045.055-.115.095c.11.046.185.116.185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.13.147-.281.147c-.156 0-.281-.147-.281-.147s.044-.055.115-.095a.674.674 0 0 1-.186-.115s.075-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.147.28-.147zm-2.844.399c.156 0 .281.144.281.144s-.045.056-.115.096c.11.045.186.115.186.115s-.075.07-.186.115c.07.04.115.096.115.096s-.125.146-.281.146c-.156 0-.281-.146-.281-.146s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.076-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.281-.144zm7.807.18c-.015.004-.03.015-.045.025l.004-.004-2.711.972.326.866c.508-.13 1.286-.69 1.834-1.121a.94.94 0 0 0 .045.453L24 7.617a.932.932 0 0 0-1.195-.547zm-6.37.255c.156 0 .282.147.282.147s-.045.055-.115.095a.588.588 0 0 1 .185.116s-.075.07-.185.115c.07.04.115.095.115.095s-.126.147-.281.147c-.156 0-.282-.147-.282-.147s.045-.055.116-.095c-.111-.045-.186-.115-.186-.115s.075-.07.186-.116c-.07-.04-.116-.095-.116-.095s.126-.147.282-.147zm1.778.559c.156 0 .281.144.281.144s-.045.056-.115.096a.56.56 0 0 1 .185.115s-.075.072-.185.117a.47.47 0 0 1 .115.094s-.125.147-.281.147c-.156 0-.281-.147-.281-.147s.045-.053.115-.094c-.11-.045-.186-.117-.186-.117s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.144.28-.144zm-3.887.386c.156 0 .281.145.281.145s-.044.055-.115.096c.11.045.186.115.186.115s-.075.072-.186.117a.47.47 0 0 1 .115.094s-.125.146-.28.146c-.157 0-.282-.146-.282-.146s.045-.054.115-.094c-.11-.045-.185-.117-.185-.117s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.125-.145.281-.145zm-1.904.25c.156 0 .281.147.281.147s-.045.055-.115.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.125.146-.281.146c-.156 0-.281-.146-.281-.146s.045-.05.115-.096a.674.674 0 0 1-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.147.28-.147zm3.611.342c.156 0 .281.147.281.147s-.044.055-.115.095c.11.04.186.116.186.116s-.075.07-.186.115c.07.04.115.096.115.096s-.125.146-.28.146c-.157 0-.282-.146-.282-.146s.045-.056.115-.096c-.11-.045-.185-.115-.185-.115s.075-.07.185-.116c-.07-.04-.115-.095-.115-.095s.125-.147.281-.147zm-2.703.85c.156 0 .281.146.281.146s-.045.054-.115.094c.11.04.186.117.186.117s-.075.07-.186.116c.07.04.115.095.115.095s-.125.145-.28.145c-.157 0-.282-.145-.282-.145s.047-.055.117-.095c-.11-.046-.187-.116-.187-.116s.077-.072.187-.117a.506.506 0 0 1-.117-.094s.125-.146.281-.146zm-2.27.02c.156 0 .282.146.282.146s-.045.055-.115.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.126.144-.281.144c-.156 0-.282-.144-.282-.144s.045-.056.116-.096c-.111-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.116-.096-.116-.096s.126-.147.282-.147zm3.758.306c.156 0 .282.146.282.146s-.045.056-.116.096c.11.045.186.115.186.115s-.075.07-.186.116c.07.04.116.095.116.095s-.126.145-.282.145c-.155 0-.28-.145-.28-.145s.044-.055.114-.095a.688.688 0 0 1-.185-.116s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.146.281-.146zm-5.662.322c.156 0 .281.145.281.145s-.044.055-.115.096c.11.04.186.115.186.115s-.075.07-.186.115c.07.04.116.096.116.096s-.126.146-.282.146c-.155 0-.281-.146-.281-.146s.045-.056.115-.096c-.11-.045-.185-.115-.185-.115s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.145.281-.145zm3.356.803c.155 0 .281.147.281.147s-.045.055-.115.095a.56.56 0 0 1 .185.115s-.075.07-.185.116c.07.04.115.095.115.095s-.126.145-.281.145c-.156 0-.282-.145-.282-.145s.045-.055.116-.095c-.11-.046-.186-.116-.186-.116s.075-.07.186-.115c-.07-.04-.116-.095-.116-.095s.126-.147.282-.147zm-1.848.262c.156 0 .281.146.281.146s-.045.054-.115.094a.49.49 0 0 1 .186.117s-.075.07-.186.115c.07.04.115.096.115.096s-.125.145-.28.145c-.157 0-.282-.145-.282-.145s.045-.055.115-.096c-.11-.045-.185-.115-.185-.115s.075-.072.185-.117c-.07-.04-.115-.094-.115-.094s.125-.146.281-.146zm-3.316.08c.155 0 .28.146.28.146s-.044.056-.114.096c.11.045.185.115.185.115s-.075.07-.185.115c.07.04.115.096.115.096s-.126.145-.281.145c-.156 0-.282-.145-.282-.145s.047-.055.118-.096a.72.72 0 0 1-.188-.115s.077-.07.188-.115c-.07-.04-.118-.096-.118-.096s.126-.146.282-.146zm16.646.527-5.705 1.428-2.23 2.53-3.25.08-1.227 2.814-3.193.834-2 1.824h16.093c.834 0 1.512-.68 1.512-1.514zm-15.053.217c.156 0 .282.144.282.144s-.045.056-.116.096c.11.04.186.115.186.115s-.075.07-.186.116c.07.04.116.095.116.095s-.126.147-.282.147c-.155 0-.28-.147-.28-.147s.044-.055.114-.095a.688.688 0 0 1-.185-.116s.075-.07.185-.115c-.07-.04-.115-.096-.115-.096s.126-.144.281-.144zm-1.898 1.014c.156 0 .281.146.281.146s-.047.056-.117.096a.72.72 0 0 1 .188.115s-.077.07-.188.115c.07.04.117.096.117.096s-.13.15-.281.145c-.156 0-.281-.145-.281-.145s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.146.281-.146zm1.582.552c.156 0 .281.147.281.147s-.045.055-.115.096c.11.045.186.115.186.115s-.075.07-.186.115c.07.04.115.096.115.096s-.125.144-.281.144c-.156 0-.281-.144-.281-.144s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.075-.07.186-.115c-.07-.04-.115-.096-.115-.096s.125-.147.281-.147zm-1.086 1.256c.156 0 .281.147.281.147s-.045.055-.115.095c.11.04.186.116.186.116s-.075.07-.186.115c.07.04.115.096.115.096s-.125.144-.28.144c-.157 0-.282-.144-.282-.144s.045-.056.115-.096c-.11-.045-.186-.115-.186-.115s.076-.07.186-.116c-.07-.04-.115-.095-.115-.095s.125-.147.281-.147zm-3.203 1.155-2.709 2.325a.969.969 0 0 0-.205-.473L0 19.277a.928.928 0 0 0 1.195.192l2.649-1.201z" }) + ] + } + ); +}); + +export { SiRocksdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.cjs new file mode 100644 index 000000000..dcfab7ad5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FCAF17"; +const SiRockstargames = React__namespace.forwardRef(function SiRockstargames2({ title = "Rockstar Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.971 6.816h3.241c1.469 0 2.741-.448 2.741-2.084 0-1.3-1.117-1.576-2.19-1.576H6.748l-.777 3.66Zm12.834 8.753h5.168l-4.664 3.228.755 5.087-4.041-3.07L10.599 24l2.536-5.392s-2.95-3.075-2.947-3.075c-.198-.262-.265-.936-.265-1.226 0-.367.024-.739.049-1.134.028-.451.058-.933.058-1.476 0-1.338-.59-2.038-2.036-2.038H5.283l-1.18 5.525H.026L3.269 0h7.672c2.852 0 5.027.702 5.027 3.936 0 2.276-1.12 3.894-3.592 4.233v.045c1.162.276 1.598 1.062 1.598 2.527 0 .585-.018 1.098-.034 1.581-.015.428-.03.834-.03 1.243 0 .525.137 1.382.48 1.968h.567l3.028-5.06.82 5.096Zm-1.233-2.948-2.187 3.654h-3.457l2.103 2.189-1.73 3.672 3.777-2.218 2.976 2.263-.553-3.731 3.093-2.139h-3.43l-.592-3.69Z" }) + ] + } + ); +}); + +exports.default = SiRockstargames; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.d.ts new file mode 100644 index 000000000..527568474 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FCAF17"; +declare const SiRockstargames: IconType; +export { SiRockstargames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.mjs new file mode 100644 index 000000000..1a7e841e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockstargames.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FCAF17"; +const SiRockstargames = React.forwardRef(function SiRockstargames2({ title = "Rockstar Games", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.971 6.816h3.241c1.469 0 2.741-.448 2.741-2.084 0-1.3-1.117-1.576-2.19-1.576H6.748l-.777 3.66Zm12.834 8.753h5.168l-4.664 3.228.755 5.087-4.041-3.07L10.599 24l2.536-5.392s-2.95-3.075-2.947-3.075c-.198-.262-.265-.936-.265-1.226 0-.367.024-.739.049-1.134.028-.451.058-.933.058-1.476 0-1.338-.59-2.038-2.036-2.038H5.283l-1.18 5.525H.026L3.269 0h7.672c2.852 0 5.027.702 5.027 3.936 0 2.276-1.12 3.894-3.592 4.233v.045c1.162.276 1.598 1.062 1.598 2.527 0 .585-.018 1.098-.034 1.581-.015.428-.03.834-.03 1.243 0 .525.137 1.382.48 1.968h.567l3.028-5.06.82 5.096Zm-1.233-2.948-2.187 3.654h-3.457l2.103 2.189-1.73 3.672 3.777-2.218 2.976 2.263-.553-3.731 3.093-2.139h-3.43l-.592-3.69Z" }) + ] + } + ); +}); + +export { SiRockstargames as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.cjs new file mode 100644 index 000000000..13d3d3ab5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD163F"; +const SiRockwellautomation = React__namespace.forwardRef(function SiRockwellautomation2({ title = "Rockwell Automation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.1252 6.157-4.6678-4.6678a.7667.7667 0 0 0-.9801-.087l-8.983 6.0494c1.7005.1068 2.7313.7962 2.7313 2.3676 0 1.372-.74 2.2257-1.9913 2.3746v.0239c.5814.1067.9676.3763 1.254.74.0997.1264.1685.2752.2079.434l.7091 2.1498 3.0528-7.6475a.7082.7082 0 0 1 .6572-.4452h2.6821l3.5668 8.9325h-2.2075c-.448 0-.8664-.2837-1.056-.7078-.113-.3264-.229-.6527-.344-.9787h-3.2396l-.629 1.6865H9.0475c-.2584 0-.4789-.191-.5238-.4522l-.8046-2.3409c-.1124-.4002-.5098-.4634-.9016-.4634h-.7835v3.2565H3.2789v-5.4148l-1.6486 1.1093a.5568.5568 0 0 0-.2387.4564v3.4474c0 .222.132.4213.3342.5098l15.5408 6.5045a.7678.7678 0 0 0 .8468-.1601l5.0075-4.9865A2.983 2.983 0 0 0 24 15.7325v-7.465a2.9953 2.9953 0 0 0-.8748-2.1106ZM8.3749 10.2797c0-.806-.5504-.9226-1.1346-.9226H6.072v1.9h1.1262c.5954 0 1.1767-.0773 1.1767-.9774zm6.8682 2.4223h1.8143l-.8889-2.5234ZM6.8303 7.4348 16.431.3223c.1376-.1025.066-.3202-.1053-.3202H8.455a3.4405 3.4405 0 0 0-2.4336 1.0083L1.0083 6.022A3.4405 3.4405 0 0 0 0 8.4557v7.0886c0 .9128.3623 1.7876 1.0083 2.4336l5.0131 5.0117A3.4405 3.4405 0 0 0 8.455 23.998h6.8176c.1896 0 .2471-.257.0758-.3384l-13.5496-6.388a1.6147 1.6147 0 0 1-.9268-1.4604v-3.3997c0-.3552.1685-.6894.4536-.9l1.952-1.4465V7.4348Z" }) + ] + } + ); +}); + +exports.default = SiRockwellautomation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.d.ts new file mode 100644 index 000000000..7db1a3808 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD163F"; +declare const SiRockwellautomation: IconType; +export { SiRockwellautomation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.mjs new file mode 100644 index 000000000..d5997b10d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockwellautomation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD163F"; +const SiRockwellautomation = React.forwardRef(function SiRockwellautomation2({ title = "Rockwell Automation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.1252 6.157-4.6678-4.6678a.7667.7667 0 0 0-.9801-.087l-8.983 6.0494c1.7005.1068 2.7313.7962 2.7313 2.3676 0 1.372-.74 2.2257-1.9913 2.3746v.0239c.5814.1067.9676.3763 1.254.74.0997.1264.1685.2752.2079.434l.7091 2.1498 3.0528-7.6475a.7082.7082 0 0 1 .6572-.4452h2.6821l3.5668 8.9325h-2.2075c-.448 0-.8664-.2837-1.056-.7078-.113-.3264-.229-.6527-.344-.9787h-3.2396l-.629 1.6865H9.0475c-.2584 0-.4789-.191-.5238-.4522l-.8046-2.3409c-.1124-.4002-.5098-.4634-.9016-.4634h-.7835v3.2565H3.2789v-5.4148l-1.6486 1.1093a.5568.5568 0 0 0-.2387.4564v3.4474c0 .222.132.4213.3342.5098l15.5408 6.5045a.7678.7678 0 0 0 .8468-.1601l5.0075-4.9865A2.983 2.983 0 0 0 24 15.7325v-7.465a2.9953 2.9953 0 0 0-.8748-2.1106ZM8.3749 10.2797c0-.806-.5504-.9226-1.1346-.9226H6.072v1.9h1.1262c.5954 0 1.1767-.0773 1.1767-.9774zm6.8682 2.4223h1.8143l-.8889-2.5234ZM6.8303 7.4348 16.431.3223c.1376-.1025.066-.3202-.1053-.3202H8.455a3.4405 3.4405 0 0 0-2.4336 1.0083L1.0083 6.022A3.4405 3.4405 0 0 0 0 8.4557v7.0886c0 .9128.3623 1.7876 1.0083 2.4336l5.0131 5.0117A3.4405 3.4405 0 0 0 8.455 23.998h6.8176c.1896 0 .2471-.257.0758-.3384l-13.5496-6.388a1.6147 1.6147 0 0 1-.9268-1.4604v-3.3997c0-.3552.1685-.6894.4536-.9l1.952-1.4465V7.4348Z" }) + ] + } + ); +}); + +export { SiRockwellautomation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.cjs new file mode 100644 index 000000000..fa5a86d0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#10B981"; +const SiRockylinux = React__namespace.forwardRef(function SiRockylinux2({ title = "Rocky Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.332 15.957c.433-1.239.668-2.57.668-3.957 0-6.627-5.373-12-12-12S0 5.373 0 12c0 3.28 1.315 6.251 3.447 8.417L15.62 8.245l3.005 3.005zm-2.192 3.819l-5.52-5.52L6.975 22.9c1.528.706 3.23 1.1 5.025 1.1 3.661 0 6.94-1.64 9.14-4.224z" }) + ] + } + ); +}); + +exports.default = SiRockylinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.d.ts new file mode 100644 index 000000000..3a543a2a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#10B981"; +declare const SiRockylinux: IconType; +export { SiRockylinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.mjs new file mode 100644 index 000000000..e1fc10419 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRockylinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#10B981"; +const SiRockylinux = React.forwardRef(function SiRockylinux2({ title = "Rocky Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.332 15.957c.433-1.239.668-2.57.668-3.957 0-6.627-5.373-12-12-12S0 5.373 0 12c0 3.28 1.315 6.251 3.447 8.417L15.62 8.245l3.005 3.005zm-2.192 3.819l-5.52-5.52L6.975 22.9c1.528.706 3.23 1.1 5.025 1.1 3.661 0 6.94-1.64 9.14-4.224z" }) + ] + } + ); +}); + +export { SiRockylinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.cjs new file mode 100644 index 000000000..532de45e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#662D91"; +const SiRoku = React__namespace.forwardRef(function SiRoku2({ title = "Roku", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.34 9.853l-2.254 2.254v-2.26H12.13v5.744h1.957v-2.33l2.353 2.33h2.46l-2.988-2.99 2.477-2.476v3.411c0 1.133.679 2.177 2.393 2.177.815 0 1.56-.462 1.922-.88l.88.759H24v-5.74h-1.951v3.718c-.22.384-.528.627-1.002.627-.482 0-.703-.286-.703-1.198V9.853zm-4.591 2.869A3.004 3.004 0 1 1 8.738 9.73a2.997 2.997 0 0 1 3.011 2.99m-3.011-1.57c-.518 0-.956.704-.956 1.572 0 .867.438 1.57.956 1.57.528 0 .968-.702.968-1.57 0-.869-.438-1.572-.968-1.572zm-2.206 4.447H4.313L2.55 13.153h-.594v2.44H0V8.26h2.8c1.616 0 2.935 1.1 2.935 2.45 0 .826-.505 1.562-1.273 2.013l2.07 2.875m-2.75-4.888A1.226 1.226 0 0 0 2.56 9.478h-.604v2.453h.605a1.225 1.225 0 0 0 1.22-1.221Z" }) + ] + } + ); +}); + +exports.default = SiRoku; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.d.ts new file mode 100644 index 000000000..362b3553b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#662D91"; +declare const SiRoku: IconType; +export { SiRoku as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.mjs new file mode 100644 index 000000000..56d6ad7b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoku.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#662D91"; +const SiRoku = React.forwardRef(function SiRoku2({ title = "Roku", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.34 9.853l-2.254 2.254v-2.26H12.13v5.744h1.957v-2.33l2.353 2.33h2.46l-2.988-2.99 2.477-2.476v3.411c0 1.133.679 2.177 2.393 2.177.815 0 1.56-.462 1.922-.88l.88.759H24v-5.74h-1.951v3.718c-.22.384-.528.627-1.002.627-.482 0-.703-.286-.703-1.198V9.853zm-4.591 2.869A3.004 3.004 0 1 1 8.738 9.73a2.997 2.997 0 0 1 3.011 2.99m-3.011-1.57c-.518 0-.956.704-.956 1.572 0 .867.438 1.57.956 1.57.528 0 .968-.702.968-1.57 0-.869-.438-1.572-.968-1.572zm-2.206 4.447H4.313L2.55 13.153h-.594v2.44H0V8.26h2.8c1.616 0 2.935 1.1 2.935 2.45 0 .826-.505 1.562-1.273 2.013l2.07 2.875m-2.75-4.888A1.226 1.226 0 0 0 2.56 9.478h-.604v2.453h.605a1.225 1.225 0 0 0 1.22-1.221Z" }) + ] + } + ); +}); + +export { SiRoku as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.cjs new file mode 100644 index 000000000..c504c0d3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E10085"; +const SiRoll20 = React__namespace.forwardRef(function SiRoll202({ title = "Roll20", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.383 0c-.02 0-.04.007-.06.014H11.286l-7.256 3.64a.247.247 0 0 0-.129.211c0 .136.11.239.239.239l-.008.013a.219.219 0 0 0 .096-.021l7.181-1.567a.245.245 0 0 0 .21-.236V.225A.238.238 0 0 0 11.382 0zm1.22.008c-.128 0-.23.1-.236.222V2.3c0 .122.094.217.21.23l-.007-.013 7.182 1.574a.236.236 0 0 0 .203-.428L12.7.02h-.008l-.027-.012h-.06zm.57 3.404a.24.24 0 0 0-.237.242c0 .048.013.09.04.123l6.749 11.868c.04.06.108.101.19.101.128 0 .229-.1.235-.223l2.428-9.921c0-.014.008-.02.008-.034a.239.239 0 0 0-.203-.23l-9.121-1.9.013-.006s-.027-.001-.04-.008l-.061-.012zm-2.38.012-.06.008c-.014 0-.028-.001-.042.006l-9.12 1.9a.239.239 0 0 0-.204.23c0 .014 0 .02.006.034h.014l2.427 9.921a.24.24 0 0 0 .239.23c.081 0 .148-.04.19-.1l6.747-11.87c.02-.04.041-.073.041-.12a.238.238 0 0 0-.238-.24zm1.193.306a.24.24 0 0 0-.195.108L4.676 16.404h.008a.224.224 0 0 0-.041.13c0 .135.109.237.238.237H19.1c.136 0 .237-.109.237-.238 0-.047-.02-.088-.041-.129L12.184 3.838a.244.244 0 0 0-.198-.108zM1.543 9.305a.239.239 0 0 0-.23.209v.035l.298 8.062v.008c0 .136.108.236.237.236.04 0 .075-.012.109-.033l1.268-.754h.005a.025.025 0 0 0 .008-.006l.014-.007a.236.236 0 0 0 .115-.203.09.09 0 0 0-.008-.041L1.773 9.514a.239.239 0 0 0-.23-.21zm20.908.006a.24.24 0 0 0-.23.21l-1.588 7.297c0 .014-.006.028-.006.041 0 .089.047.156.115.203l.02.014s.007 0 .013.006l1.268.76a.234.234 0 0 0 .346-.209v-.008l.299-8.063v-.007l-.006-.006V9.52a.24.24 0 0 0-.23-.21zm-12.105.828c1.064 0 1.492.698 1.492 1.35 0 .86-.611 1.193-1.317 1.58-.311.169-.671.393-.746.63h1.995s.054.028.054.055v.766s-.027.054-.054.054H8.799s-.053-.027-.053-.054v-.368h-.014c0-.99.638-1.465 1.323-1.838.786-.42.847-.603.847-.834 0-.142-.054-.474-.556-.474-.38 0-.623.279-.623.713a.054.054 0 0 1-.055.054h-.82s-.055-.027-.055-.054c0-.76.488-1.58 1.553-1.58zm3.431.013c.794 0 1.641.59 1.641 2.252s-.847 2.25-1.64 2.25c-.794 0-1.65-.588-1.65-2.25 0-1.661.856-2.252 1.65-2.252zm-.002.854c-.657 0-.724.97-.724 1.39 0 .326.053 1.383.724 1.383.672 0 .727-1.057.727-1.383 0-.413-.069-1.39-.727-1.39zM5.4 17.523a.236.236 0 0 0-.236.239c0 .074.04.142.094.19l6.578 5.993a.24.24 0 0 0 .15.055c.055 0 .108-.02.149-.055l6.578-5.994c.054-.047.096-.109.096-.183l.005-.006a.24.24 0 0 0-.23-.239H5.4zm-1.662.143c-.054 0-.1.02-.134.047H3.59l-1.235.74a.245.245 0 0 0-.12.21c0 .087.046.162.12.202l5.975 3.522c.034.013.075.033.115.033.136 0 .239-.11.239-.238a.243.243 0 0 0-.063-.155l.022-.007-4.748-4.307H3.88a.255.255 0 0 0-.143-.047zm16.496.006a.24.24 0 0 0-.136.049h-.014l-4.746 4.306a.282.282 0 0 0-.063.162c0 .136.11.237.239.237.04 0 .081-.013.115-.033l5.975-3.514a.245.245 0 0 0 .12-.21.228.228 0 0 0-.12-.202l.013-.008-1.234-.738h-.014a.252.252 0 0 0-.135-.05z" }) + ] + } + ); +}); + +exports.default = SiRoll20; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.d.ts new file mode 100644 index 000000000..0f1422a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E10085"; +declare const SiRoll20: IconType; +export { SiRoll20 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.mjs new file mode 100644 index 000000000..8824d4f70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoll20.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E10085"; +const SiRoll20 = React.forwardRef(function SiRoll202({ title = "Roll20", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.383 0c-.02 0-.04.007-.06.014H11.286l-7.256 3.64a.247.247 0 0 0-.129.211c0 .136.11.239.239.239l-.008.013a.219.219 0 0 0 .096-.021l7.181-1.567a.245.245 0 0 0 .21-.236V.225A.238.238 0 0 0 11.382 0zm1.22.008c-.128 0-.23.1-.236.222V2.3c0 .122.094.217.21.23l-.007-.013 7.182 1.574a.236.236 0 0 0 .203-.428L12.7.02h-.008l-.027-.012h-.06zm.57 3.404a.24.24 0 0 0-.237.242c0 .048.013.09.04.123l6.749 11.868c.04.06.108.101.19.101.128 0 .229-.1.235-.223l2.428-9.921c0-.014.008-.02.008-.034a.239.239 0 0 0-.203-.23l-9.121-1.9.013-.006s-.027-.001-.04-.008l-.061-.012zm-2.38.012-.06.008c-.014 0-.028-.001-.042.006l-9.12 1.9a.239.239 0 0 0-.204.23c0 .014 0 .02.006.034h.014l2.427 9.921a.24.24 0 0 0 .239.23c.081 0 .148-.04.19-.1l6.747-11.87c.02-.04.041-.073.041-.12a.238.238 0 0 0-.238-.24zm1.193.306a.24.24 0 0 0-.195.108L4.676 16.404h.008a.224.224 0 0 0-.041.13c0 .135.109.237.238.237H19.1c.136 0 .237-.109.237-.238 0-.047-.02-.088-.041-.129L12.184 3.838a.244.244 0 0 0-.198-.108zM1.543 9.305a.239.239 0 0 0-.23.209v.035l.298 8.062v.008c0 .136.108.236.237.236.04 0 .075-.012.109-.033l1.268-.754h.005a.025.025 0 0 0 .008-.006l.014-.007a.236.236 0 0 0 .115-.203.09.09 0 0 0-.008-.041L1.773 9.514a.239.239 0 0 0-.23-.21zm20.908.006a.24.24 0 0 0-.23.21l-1.588 7.297c0 .014-.006.028-.006.041 0 .089.047.156.115.203l.02.014s.007 0 .013.006l1.268.76a.234.234 0 0 0 .346-.209v-.008l.299-8.063v-.007l-.006-.006V9.52a.24.24 0 0 0-.23-.21zm-12.105.828c1.064 0 1.492.698 1.492 1.35 0 .86-.611 1.193-1.317 1.58-.311.169-.671.393-.746.63h1.995s.054.028.054.055v.766s-.027.054-.054.054H8.799s-.053-.027-.053-.054v-.368h-.014c0-.99.638-1.465 1.323-1.838.786-.42.847-.603.847-.834 0-.142-.054-.474-.556-.474-.38 0-.623.279-.623.713a.054.054 0 0 1-.055.054h-.82s-.055-.027-.055-.054c0-.76.488-1.58 1.553-1.58zm3.431.013c.794 0 1.641.59 1.641 2.252s-.847 2.25-1.64 2.25c-.794 0-1.65-.588-1.65-2.25 0-1.661.856-2.252 1.65-2.252zm-.002.854c-.657 0-.724.97-.724 1.39 0 .326.053 1.383.724 1.383.672 0 .727-1.057.727-1.383 0-.413-.069-1.39-.727-1.39zM5.4 17.523a.236.236 0 0 0-.236.239c0 .074.04.142.094.19l6.578 5.993a.24.24 0 0 0 .15.055c.055 0 .108-.02.149-.055l6.578-5.994c.054-.047.096-.109.096-.183l.005-.006a.24.24 0 0 0-.23-.239H5.4zm-1.662.143c-.054 0-.1.02-.134.047H3.59l-1.235.74a.245.245 0 0 0-.12.21c0 .087.046.162.12.202l5.975 3.522c.034.013.075.033.115.033.136 0 .239-.11.239-.238a.243.243 0 0 0-.063-.155l.022-.007-4.748-4.307H3.88a.255.255 0 0 0-.143-.047zm16.496.006a.24.24 0 0 0-.136.049h-.014l-4.746 4.306a.282.282 0 0 0-.063.162c0 .136.11.237.239.237.04 0 .081-.013.115-.033l5.975-3.514a.245.245 0 0 0 .12-.21.228.228 0 0 0-.12-.202l.013-.008-1.234-.738h-.014a.252.252 0 0 0-.135-.05z" }) + ] + } + ); +}); + +export { SiRoll20 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.cjs new file mode 100644 index 000000000..cf86a58de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3569F3"; +const SiRollbar = React__namespace.forwardRef(function SiRollbar2({ title = "Rollbar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 2.5795c-.0019-.1956-.1152-.5064-.484-.584-.0578-.0162-.1178-.0113-.177-.0104-.3082.0276-4.3793.4162-8.9551 2.4569-2.7478 1.2221-4.8747 3.0984-6.213 5.376l-.3449.1494C2.9271 12.1542 0 16.4046 0 21.338v.0828c0 .3392.2786.5955.5967.5955h16.2625c.1045 0 .2506-.0351.3748-.1391l6.5533-5.5255a.5932.5932 0 0 0 .2116-.4598V2.5795Zm-6.5544 17.5582V8.382l5.3622-4.5195v11.7557ZM7.3684 16.4908h8.885v4.3333H2.227ZM14.868 5.532a30.7234 30.7234 0 0 1 6.5315-2.043L16.6063 7.53a30.4061 30.4061 0 0 0-6.489 1.528c1.1866-1.4487 2.787-2.6501 4.7506-3.5262ZM8.978 10.7722a30.7706 30.7706 0 0 1 7.2753-1.9947v6.5211h-8.494a10.5382 10.5382 0 0 1 1.2187-4.5264zm-1.636.7611a11.8074 11.8074 0 0 0-.7887 4.0826l-5.2886 4.4632c.4-3.6262 2.5535-6.6591 6.0773-8.5458z" }) + ] + } + ); +}); + +exports.default = SiRollbar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.d.ts new file mode 100644 index 000000000..dd851566f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3569F3"; +declare const SiRollbar: IconType; +export { SiRollbar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.mjs new file mode 100644 index 000000000..bdab9a839 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollbar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3569F3"; +const SiRollbar = React.forwardRef(function SiRollbar2({ title = "Rollbar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 2.5795c-.0019-.1956-.1152-.5064-.484-.584-.0578-.0162-.1178-.0113-.177-.0104-.3082.0276-4.3793.4162-8.9551 2.4569-2.7478 1.2221-4.8747 3.0984-6.213 5.376l-.3449.1494C2.9271 12.1542 0 16.4046 0 21.338v.0828c0 .3392.2786.5955.5967.5955h16.2625c.1045 0 .2506-.0351.3748-.1391l6.5533-5.5255a.5932.5932 0 0 0 .2116-.4598V2.5795Zm-6.5544 17.5582V8.382l5.3622-4.5195v11.7557ZM7.3684 16.4908h8.885v4.3333H2.227ZM14.868 5.532a30.7234 30.7234 0 0 1 6.5315-2.043L16.6063 7.53a30.4061 30.4061 0 0 0-6.489 1.528c1.1866-1.4487 2.787-2.6501 4.7506-3.5262ZM8.978 10.7722a30.7706 30.7706 0 0 1 7.2753-1.9947v6.5211h-8.494a10.5382 10.5382 0 0 1 1.2187-4.5264zm-1.636.7611a11.8074 11.8074 0 0 0-.7887 4.0826l-5.2886 4.4632c.4-3.6262 2.5535-6.6591 6.0773-8.5458z" }) + ] + } + ); +}); + +export { SiRollbar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.cjs new file mode 100644 index 000000000..966ba8c31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4100"; +const SiRolldown = React__namespace.forwardRef(function SiRolldown2({ title = "Rolldown", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.652 0c.514 0 .796.6.466.998l-5.616 6.74c-.662.793-.098 1.997.934 1.997h5.433c.516 0 .797.6.467.998L12.467 23.775a.6.6 0 0 1-.468.225.6.6 0 0 1-.468-.225L.661 10.733a.609.609 0 0 1 .468-.998H6.56c1.032 0 1.595-1.204.937-1.997L1.88.998A.608.608 0 0 1 2.346 0Z" }) + ] + } + ); +}); + +exports.default = SiRolldown; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.d.ts new file mode 100644 index 000000000..7d58a1185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4100"; +declare const SiRolldown: IconType; +export { SiRolldown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.mjs new file mode 100644 index 000000000..3d83c33e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRolldown.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4100"; +const SiRolldown = React.forwardRef(function SiRolldown2({ title = "Rolldown", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.652 0c.514 0 .796.6.466.998l-5.616 6.74c-.662.793-.098 1.997.934 1.997h5.433c.516 0 .797.6.467.998L12.467 23.775a.6.6 0 0 1-.468.225.6.6 0 0 1-.468-.225L.661 10.733a.609.609 0 0 1 .468-.998H6.56c1.032 0 1.595-1.204.937-1.997L1.88.998A.608.608 0 0 1 2.346 0Z" }) + ] + } + ); +}); + +export { SiRolldown as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.cjs new file mode 100644 index 000000000..e76f9cdaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#281432"; +const SiRollsroyce = React__namespace.forwardRef(function SiRollsroyce2({ title = "Rolls-Royce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.363 3.663H9.961v6.865c-.41.196-.857.368-1.341.511a7.94 7.94 0 0 1-.776.182V3.968s.06-1.041-.519-1.393v-.13h5.434c.244.297.463.697.604 1.218zm.958 9.391c2.465-1.182 3.652-3.262 3.674-5.646.015-1.622-.557-2.618-1.197-3.148a1.883 1.883 0 0 0-.117-.089 6.454 6.454 0 0 0-.612-1.618c.118.017.227.036.324.057 1.788.38 3.225 1.436 3.905 3.474.554 1.662.285 3.724-.904 5.377-.281.391-1.03 1.226-1.89 1.842-.156.112-.25.174-.414.277 1.077 1.726 1.608 2.717 2.295 4.6.6 1.644 1.055 3.83 1.117 4.344.15 1.223.515 1.32.599 1.345V24h-4.295v-.13c.132-.07 1.293-.546 1.299-2.367.006-1.337-.32-2.808-.914-4.46a22.925 22.925 0 0 0-1.277-2.829l-.014-.021a8.355 8.355 0 0 1-.872.321c-.223-.516-.45-.983-.707-1.459zm-4.36-.144v1.116c.325-.014 1.34-.096 2.254-.274.207.468.387.912.511 1.257l.017.048a26.3 26.3 0 0 1-1.23.166 33.2 33.2 0 0 1-1.552.131v7.21c0 .159.037 1.008.59 1.306V24H7.254v-.13c.538-.283.59-1.147.59-1.305v-9.27a18.96 18.96 0 0 0 2.118-.385zm.457-11.66l-.462-.007H5.662v10.575c.426-.019 2.013-.152 3.052-.46 3.465-1.025 5.12-3.447 5.146-6.293.015-1.655-.568-2.672-1.222-3.212-.407-.337-.946-.496-1.338-.554-.22-.044-.71-.05-.882-.05zM3.502 20.557V1.554S3.564.492 2.972.133V0h7.346c.613.001 1.415.063 1.907.17 1.824.387 3.291 1.464 3.985 3.544.565 1.696.291 3.8-.922 5.487-.287.4-1.05 1.25-1.93 1.88a6.998 6.998 0 0 1-.422.281c1.1 1.762 1.641 2.773 2.343 4.695.612 1.677 1.076 3.909 1.14 4.432.151 1.248.525 1.374.61 1.4v.132h-4.382l-.001-.133c.136-.072 1.32-.583 1.326-2.442.007-1.363-.326-2.865-.932-4.55a23.36 23.36 0 0 0-1.305-2.887l-.014-.022c-.582.265-1.812.624-2.61.775-.571.108-1.15.197-1.865.277-.623.07-1.227.111-1.584.134v7.384c0 .161.038 1.028.603 1.332v.132H2.9v-.132c.549-.29.603-1.17.603-1.332Z" }) + ] + } + ); +}); + +exports.default = SiRollsroyce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.d.ts new file mode 100644 index 000000000..680a44b7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#281432"; +declare const SiRollsroyce: IconType; +export { SiRollsroyce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.mjs new file mode 100644 index 000000000..e2687cceb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollsroyce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#281432"; +const SiRollsroyce = React.forwardRef(function SiRollsroyce2({ title = "Rolls-Royce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.363 3.663H9.961v6.865c-.41.196-.857.368-1.341.511a7.94 7.94 0 0 1-.776.182V3.968s.06-1.041-.519-1.393v-.13h5.434c.244.297.463.697.604 1.218zm.958 9.391c2.465-1.182 3.652-3.262 3.674-5.646.015-1.622-.557-2.618-1.197-3.148a1.883 1.883 0 0 0-.117-.089 6.454 6.454 0 0 0-.612-1.618c.118.017.227.036.324.057 1.788.38 3.225 1.436 3.905 3.474.554 1.662.285 3.724-.904 5.377-.281.391-1.03 1.226-1.89 1.842-.156.112-.25.174-.414.277 1.077 1.726 1.608 2.717 2.295 4.6.6 1.644 1.055 3.83 1.117 4.344.15 1.223.515 1.32.599 1.345V24h-4.295v-.13c.132-.07 1.293-.546 1.299-2.367.006-1.337-.32-2.808-.914-4.46a22.925 22.925 0 0 0-1.277-2.829l-.014-.021a8.355 8.355 0 0 1-.872.321c-.223-.516-.45-.983-.707-1.459zm-4.36-.144v1.116c.325-.014 1.34-.096 2.254-.274.207.468.387.912.511 1.257l.017.048a26.3 26.3 0 0 1-1.23.166 33.2 33.2 0 0 1-1.552.131v7.21c0 .159.037 1.008.59 1.306V24H7.254v-.13c.538-.283.59-1.147.59-1.305v-9.27a18.96 18.96 0 0 0 2.118-.385zm.457-11.66l-.462-.007H5.662v10.575c.426-.019 2.013-.152 3.052-.46 3.465-1.025 5.12-3.447 5.146-6.293.015-1.655-.568-2.672-1.222-3.212-.407-.337-.946-.496-1.338-.554-.22-.044-.71-.05-.882-.05zM3.502 20.557V1.554S3.564.492 2.972.133V0h7.346c.613.001 1.415.063 1.907.17 1.824.387 3.291 1.464 3.985 3.544.565 1.696.291 3.8-.922 5.487-.287.4-1.05 1.25-1.93 1.88a6.998 6.998 0 0 1-.422.281c1.1 1.762 1.641 2.773 2.343 4.695.612 1.677 1.076 3.909 1.14 4.432.151 1.248.525 1.374.61 1.4v.132h-4.382l-.001-.133c.136-.072 1.32-.583 1.326-2.442.007-1.363-.326-2.865-.932-4.55a23.36 23.36 0 0 0-1.305-2.887l-.014-.022c-.582.265-1.812.624-2.61.775-.571.108-1.15.197-1.865.277-.623.07-1.227.111-1.584.134v7.384c0 .161.038 1.028.603 1.332v.132H2.9v-.132c.549-.29.603-1.17.603-1.332Z" }) + ] + } + ); +}); + +export { SiRollsroyce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.cjs new file mode 100644 index 000000000..7081bd3bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC4A3F"; +const SiRollupdotjs = React__namespace.forwardRef(function SiRollupdotjs2({ title = "rollup.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.42.0002a.37.37 0 00-.369.37V19.885c.577-1.488 1.557-3.6168 3.1378-6.5297C11.8885 2.876 12.6355 1.8191 15.6043 1.8191c1.56 0 3.1338.704 4.1518 1.9549A7.9616 7.9616 0 0013.1014.0002zM16.1393 2.544c-1.19.01-2.257.466-2.6979 1.498-.967 2.2558 1.624 4.7667 2.7569 4.5677 1.4419-.255-.255-3.5628-.255-3.5628 2.2049 4.1558 1.6969 2.8838-2.2899 6.6996C9.6666 15.5623 5.596 23.6188 5.002 23.9568a.477.477 0 01-.08.043H20.558a.373.373 0 00.33-.538l-4.0878-8.0915a.37.37 0 01.144-.488 7.9596 7.9596 0 004.0048-6.9126c0-1.4249-.373-2.7608-1.03-3.9198-.9269-.9519-2.4298-1.5159-3.7787-1.5059z" }) + ] + } + ); +}); + +exports.default = SiRollupdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.d.ts new file mode 100644 index 000000000..f7b5a8385 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC4A3F"; +declare const SiRollupdotjs: IconType; +export { SiRollupdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.mjs new file mode 100644 index 000000000..3d7599ba5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRollupdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC4A3F"; +const SiRollupdotjs = React.forwardRef(function SiRollupdotjs2({ title = "rollup.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.42.0002a.37.37 0 00-.369.37V19.885c.577-1.488 1.557-3.6168 3.1378-6.5297C11.8885 2.876 12.6355 1.8191 15.6043 1.8191c1.56 0 3.1338.704 4.1518 1.9549A7.9616 7.9616 0 0013.1014.0002zM16.1393 2.544c-1.19.01-2.257.466-2.6979 1.498-.967 2.2558 1.624 4.7667 2.7569 4.5677 1.4419-.255-.255-3.5628-.255-3.5628 2.2049 4.1558 1.6969 2.8838-2.2899 6.6996C9.6666 15.5623 5.596 23.6188 5.002 23.9568a.477.477 0 01-.08.043H20.558a.373.373 0 00.33-.538l-4.0878-8.0915a.37.37 0 01.144-.488 7.9596 7.9596 0 004.0048-6.9126c0-1.4249-.373-2.7608-1.03-3.9198-.9269-.9519-2.4298-1.5159-3.7787-1.5059z" }) + ] + } + ); +}); + +export { SiRollupdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRook.cjs new file mode 100644 index 000000000..6dcf66b40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2AC6EA"; +const SiRook = React__namespace.forwardRef(function SiRook2({ title = "Rook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.8246 0c-.4424 0-.774.3685-.774.774v6.1198c0 .4424.3685.7747.774.7747H5.88c.4424 0 .774-.3323.774-.7747 0-.4424-.3684-.774-.774-.774H2.562V1.548h2.544v1.2903c0 .2212.0736.4056.221.553.1475.1475.3687.2218.553.2218h4.092c.4425 0 .7749-.3692.7749-.7748V1.5481H13.29v1.2903c0 .4424.3692.7748.7747.7748h4.092c.2213 0 .4056-.0743.553-.2218.1476-.1474.2211-.3686.2211-.553V1.5481h2.544V6.083H18.12c-.4424 0-.7748.3685-.7748.774 0 .4424.3692.774.7748.774h4.092c.1843 0 .4055-.0735.553-.221.1475-.1474.221-.3686.221-.553V.774c0-.4055-.3689-.7371-.6638-.774h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904h-2.544V.774c0-.4424-.3685-.7741-.774-.7741h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904H6.6914V.774C6.6914.3317 6.3222 0 5.9167 0ZM1.788 9.069c-.4424 0-.774.3686-.774.774v8.8113C1.0138 21.6037 3.4101 24 6.3594 24h11.281c2.9493 0 5.3457-2.3963 5.3457-5.3457V9.8431c0-.4424-.3686-.774-.774-.774zm.774 1.5114h18.8762v8.074c0 2.1013-1.6962 3.7975-3.7976 3.7975H6.3595c-2.1014 0-3.7976-1.6962-3.7976-3.7976zm9.4377 2.544c-1.8802 0-3.4281 1.5486-3.4281 3.4288v2.6541c0 .4424.3685.7741.774.7741h5.309c.4424 0 .774-.3685.774-.774v-2.6542c0-1.8802-1.5487-3.4288-3.4289-3.4288zm-.0367 1.4746c1.0691 0 1.9175.8484 1.9175 1.9175v1.9168h-3.8343v-1.9168c0-1.0691.8477-1.9175 1.9168-1.9175z" }) + ] + } + ); +}); + +exports.default = SiRook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRook.d.ts new file mode 100644 index 000000000..9d3f74887 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2AC6EA"; +declare const SiRook: IconType; +export { SiRook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRook.mjs new file mode 100644 index 000000000..626a9f1a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2AC6EA"; +const SiRook = React.forwardRef(function SiRook2({ title = "Rook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.8246 0c-.4424 0-.774.3685-.774.774v6.1198c0 .4424.3685.7747.774.7747H5.88c.4424 0 .774-.3323.774-.7747 0-.4424-.3684-.774-.774-.774H2.562V1.548h2.544v1.2903c0 .2212.0736.4056.221.553.1475.1475.3687.2218.553.2218h4.092c.4425 0 .7749-.3692.7749-.7748V1.5481H13.29v1.2903c0 .4424.3692.7748.7747.7748h4.092c.2213 0 .4056-.0743.553-.2218.1476-.1474.2211-.3686.2211-.553V1.5481h2.544V6.083H18.12c-.4424 0-.7748.3685-.7748.774 0 .4424.3692.774.7748.774h4.092c.1843 0 .4055-.0735.553-.221.1475-.1474.221-.3686.221-.553V.774c0-.4055-.3689-.7371-.6638-.774h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904h-2.544V.774c0-.4424-.3685-.7741-.774-.7741h-4.092c-.4425 0-.7741.3685-.7741.774v1.2904H6.6914V.774C6.6914.3317 6.3222 0 5.9167 0ZM1.788 9.069c-.4424 0-.774.3686-.774.774v8.8113C1.0138 21.6037 3.4101 24 6.3594 24h11.281c2.9493 0 5.3457-2.3963 5.3457-5.3457V9.8431c0-.4424-.3686-.774-.774-.774zm.774 1.5114h18.8762v8.074c0 2.1013-1.6962 3.7975-3.7976 3.7975H6.3595c-2.1014 0-3.7976-1.6962-3.7976-3.7976zm9.4377 2.544c-1.8802 0-3.4281 1.5486-3.4281 3.4288v2.6541c0 .4424.3685.7741.774.7741h5.309c.4424 0 .774-.3685.774-.774v-2.6542c0-1.8802-1.5487-3.4288-3.4289-3.4288zm-.0367 1.4746c1.0691 0 1.9175.8484 1.9175 1.9175v1.9168h-3.8343v-1.9168c0-1.0691.8477-1.9175 1.9168-1.9175z" }) + ] + } + ); +}); + +export { SiRook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.cjs new file mode 100644 index 000000000..309b691ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2039F3"; +const SiRoon = React__namespace.forwardRef(function SiRoon2({ title = "Roon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.29045 9.19816c.138-.02376.23432-.17068.23432-.32064a.31246.31246 0 0 0-.18305-.299s-.0877-.05976-.5772-.05976C1.05931 8.51876 0 9.59844 0 11.3365v3.79832a.35555.35555 0 0 0 .71104 0v-3.79832c0-1.37753.84717-2.1881 2.1359-2.1362.08608.00351.3352.0243.4435-.00213zm17.89042-.69322c-1.64076 0-2.8316 1.19085-2.8316 2.83161v3.79832a.35555.35555 0 1 0 .71103 0v-3.79832c0-1.22151.89185-2.10808 2.12057-2.10808 1.22158 0 2.10815.88657 2.10815 2.10808v3.79832a.35549.35549 0 1 0 .71098 0v-3.79832c0-1.64076-1.18557-2.8316-2.81913-2.8316Zm-6.89807 0c-1.83654 0-3.3305 1.57798-3.3305 3.51768 0 1.91213 1.49402 3.4678 3.3305 3.4678 1.84333 0 3.34306-1.55567 3.34306-3.4678 0-1.9397-1.49967-3.51768-3.34306-3.51768zm2.61953 3.51768c0 1.53385-1.17514 2.78167-2.61953 2.78167-1.44438 0-2.61953-1.24788-2.61953-2.78167 0-1.56136 1.17515-2.83161 2.61953-2.83161 1.44439 0 2.61953 1.27024 2.61953 2.83161zM6.87328 8.50494c-1.83654 0-3.33063 1.57798-3.33063 3.51768 0 1.91213 1.49409 3.4678 3.33063 3.4678 1.84334 0 3.343-1.55567 3.343-3.4678 0-1.9397-1.49966-3.51768-3.343-3.51768zm2.61947 3.51768c0 1.53385-1.17514 2.78167-2.61953 2.78167-1.44438 0-2.61953-1.24788-2.61953-2.78167 0-1.56136 1.17515-2.83161 2.61953-2.83161 1.44439 0 2.61953 1.27024 2.61953 2.83161z" }) + ] + } + ); +}); + +exports.default = SiRoon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.d.ts new file mode 100644 index 000000000..1b3ee2c2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2039F3"; +declare const SiRoon: IconType; +export { SiRoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.mjs new file mode 100644 index 000000000..1c5205315 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2039F3"; +const SiRoon = React.forwardRef(function SiRoon2({ title = "Roon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.29045 9.19816c.138-.02376.23432-.17068.23432-.32064a.31246.31246 0 0 0-.18305-.299s-.0877-.05976-.5772-.05976C1.05931 8.51876 0 9.59844 0 11.3365v3.79832a.35555.35555 0 0 0 .71104 0v-3.79832c0-1.37753.84717-2.1881 2.1359-2.1362.08608.00351.3352.0243.4435-.00213zm17.89042-.69322c-1.64076 0-2.8316 1.19085-2.8316 2.83161v3.79832a.35555.35555 0 1 0 .71103 0v-3.79832c0-1.22151.89185-2.10808 2.12057-2.10808 1.22158 0 2.10815.88657 2.10815 2.10808v3.79832a.35549.35549 0 1 0 .71098 0v-3.79832c0-1.64076-1.18557-2.8316-2.81913-2.8316Zm-6.89807 0c-1.83654 0-3.3305 1.57798-3.3305 3.51768 0 1.91213 1.49402 3.4678 3.3305 3.4678 1.84333 0 3.34306-1.55567 3.34306-3.4678 0-1.9397-1.49967-3.51768-3.34306-3.51768zm2.61953 3.51768c0 1.53385-1.17514 2.78167-2.61953 2.78167-1.44438 0-2.61953-1.24788-2.61953-2.78167 0-1.56136 1.17515-2.83161 2.61953-2.83161 1.44439 0 2.61953 1.27024 2.61953 2.83161zM6.87328 8.50494c-1.83654 0-3.33063 1.57798-3.33063 3.51768 0 1.91213 1.49409 3.4678 3.33063 3.4678 1.84334 0 3.343-1.55567 3.343-3.4678 0-1.9397-1.49966-3.51768-3.343-3.51768zm2.61947 3.51768c0 1.53385-1.17514 2.78167-2.61953 2.78167-1.44438 0-2.61953-1.24788-2.61953-2.78167 0-1.56136 1.17515-2.83161 2.61953-2.83161 1.44439 0 2.61953 1.27024 2.61953 2.83161z" }) + ] + } + ); +}); + +export { SiRoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.cjs new file mode 100644 index 000000000..222f4a2aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1ED3E4"; +const SiRoot = React__namespace.forwardRef(function SiRoot2({ title = "ROOT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.57 4.758a.4.4 0 0 0-.097 0q-2.521.045-5.047.097c-.973.016-1.946.04-2.914.051-.168.004-.246.032-.274.223-.367 2.309-.746 4.617-1.12 6.922-.403 2.496-.81 4.988-1.212 7.484l-.36 2.215c-.089-.059-.105-.145-.14-.219q-1.667-3.444-3.32-6.894c-.082-.172-.145-.203-.328-.117a702 702 0 0 1-5.516 2.515 1 1 0 0 0-.11.063C3.052 21.176 7.196 24 12 24c6.625 0 12-5.371 12-12 0-2.719-.906-5.227-2.434-7.242Zm-.379-.473A11.98 11.98 0 0 0 12 0C5.371 0 0 5.371 0 12c0 1.621.324 3.168.906 4.582q.046-.014.11-.05c2.129-1.223 4.265-2.434 6.394-3.657.192-.113.262-.086.356.113.691 1.489 1.398 2.969 2.101 4.453.028.055.035.125.121.164q.142-.812.278-1.613.701-4.106 1.398-8.219c.195-1.16.399-2.316.59-3.476.023-.14.074-.188.215-.184q2.069.047 4.144.086 2.203.046 4.407.086" }) + ] + } + ); +}); + +exports.default = SiRoot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.d.ts new file mode 100644 index 000000000..8f26c20fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1ED3E4"; +declare const SiRoot: IconType; +export { SiRoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.mjs new file mode 100644 index 000000000..353f63c2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1ED3E4"; +const SiRoot = React.forwardRef(function SiRoot2({ title = "ROOT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.57 4.758a.4.4 0 0 0-.097 0q-2.521.045-5.047.097c-.973.016-1.946.04-2.914.051-.168.004-.246.032-.274.223-.367 2.309-.746 4.617-1.12 6.922-.403 2.496-.81 4.988-1.212 7.484l-.36 2.215c-.089-.059-.105-.145-.14-.219q-1.667-3.444-3.32-6.894c-.082-.172-.145-.203-.328-.117a702 702 0 0 1-5.516 2.515 1 1 0 0 0-.11.063C3.052 21.176 7.196 24 12 24c6.625 0 12-5.371 12-12 0-2.719-.906-5.227-2.434-7.242Zm-.379-.473A11.98 11.98 0 0 0 12 0C5.371 0 0 5.371 0 12c0 1.621.324 3.168.906 4.582q.046-.014.11-.05c2.129-1.223 4.265-2.434 6.394-3.657.192-.113.262-.086.356.113.691 1.489 1.398 2.969 2.101 4.453.028.055.035.125.121.164q.142-.812.278-1.613.701-4.106 1.398-8.219c.195-1.16.399-2.316.59-3.476.023-.14.074-.188.215-.184q2.069.047 4.144.086 2.203.046 4.407.086" }) + ] + } + ); +}); + +export { SiRoot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.cjs new file mode 100644 index 000000000..d7cb32bca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRootme = React__namespace.forwardRef(function SiRootme2({ title = "Root Me", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.364 9.897c0-.448-.029-.896-.096-1.325 0-.028-.009-.057-.009-.086-.582-3.785-3.452-6.894-7.228-7.723-.095-.429-.477-.753-.934-.753-.534 0-.964.429-.964.963 0 .457.325.839.754.934v3.519c0 .057.028.114.076.152.029.019.067.029.105.029.019 0 .048 0 .067-.01l1.411-.534c.095.143.238.239.41.286v1.659c-.715.878-1.602 1.669-2.546 2.375l-1.077-2.499c.2-.133.333-.352.333-.61 0-.4-.324-.734-.734-.734-.4 0-.734.324-.734.734 0 .401.324.734.734.734h.038l1.125 2.603c-.658.477-1.335.906-2.002 1.297l-3.204-.963c-.038-.009-.076-.009-.114.01l-.954.372c-.133-.182-.343-.296-.591-.296-.4 0-.734.324-.734.734 0 .401.324.734.734.734.401 0 .734-.324.734-.734 0-.028-.009-.057-.009-.086l.896-.352 2.794.839c-2.384 1.335-4.52 2.107-4.873 2.231l-.171.057a.9205.9205 0 0 0-.553-.181h-.029c-.448-1.058-.677-2.212-.677-3.366 0-.572.057-1.135.162-1.678H7.69c.086.315.362.543.706.543.4 0 .734-.324.734-.734 0-.4-.324-.734-.734-.734-.344 0-.62.229-.706.543h-4.1c.772-3.137 3.251-5.644 6.455-6.388.172.276.477.467.82.467.534 0 .963-.429.963-.963S11.399 0 10.865 0c-.467 0-.848.334-.944.763-4.205.953-7.285 4.739-7.285 9.125 0 1.249.248 2.498.735 3.642-.181.172-.286.42-.286.687 0 .429.276.782.658.915v3.757c0 .067.019.134.057.191l.21.143 2.851 2.012v2.403c0 .2.162.362.362.362h9.535c.2 0 .362-.162.362-.362v-2.403l2.861-2.012.21-.153a.3437.3437 0 0 0 .057-.19v-3.786c.353-.143.601-.486.601-.887 0-.248-.096-.476-.248-.648.505-1.135.763-2.393.763-3.662Zm-1.383 3.366h-.086c-.534 0-.963.429-.963.963 0 .41.258.763.629.897v3.509l-3.003 2.117c-.096.066-.153.181-.153.295v2.022c0 .114-.095.209-.21.209H15.08c-.115 0-.21-.095-.21-.209v-.725c0-.191-.133-.362-.324-.382-.219-.019-.401.153-.401.363v.753c0 .115-.095.21-.209.21h-1.364a.212.212 0 0 1-.21-.21v-1.116c0-.19-.133-.362-.324-.381-.219-.019-.4.153-.4.362v1.145c0 .114-.096.209-.21.209h-1.364a.2109.2109 0 0 1-.209-.209v-.744c0-.191-.134-.362-.325-.382-.219-.019-.4.153-.4.363v.753c0 .115-.095.21-.21.21H7.805c-.115 0-.21-.095-.21-.21v-2.021c0-.115-.057-.229-.153-.296l-2.994-2.117v-3.547a.9594.9594 0 0 0 .563-.877c0-.057-.01-.114-.019-.172.381-.133 3.289-1.173 6.15-2.956 3.871-2.412 6.017-5.149 6.264-7.961 1.669 1.344 2.823 3.289 3.157 5.473-.048 4.777-8.372 7.723-8.458 7.752-.019.009-.067.019-.105.038-.105-.019-.21-.038-.324-.057-.076-.019-.162-.029-.239-.048-.124-.019-.247-.048-.371-.076-.02-.01-.048-.01-.067-.01-.048-.009-.096-.019-.143-.028-.057-.01-.115-.029-.172-.039-.133-.028-.267-.057-.391-.095-.238-.057-.467-.124-.696-.181-.219-.067-.448-.124-.658-.191H8.92c-.162-.047-.315-.095-.467-.152a.9996.9996 0 0 0-.153-.048c-.076-.029-.143-.048-.209-.067-.124-.038-.239-.076-.344-.124h-.009a5.9785 5.9785 0 0 1-.458-.171c-.143-.058-.267-.105-.362-.143-.096-.048-.181-.077-.229-.105-.057-.029-.086-.038-.086-.038s.019.028.057.066c.038.048.096.115.181.191.077.076.182.172.306.267.124.095.267.2.419.305h.01c-.058.191-.096.401-.096.61 0 1.097.897 1.993 1.993 1.993.849 0 1.573-.534 1.86-1.287.095.01.2.019.295.029.172.009.334.009.486.009.01 0 .019.01.029.01l1.611 1.64c.41.41 1.049.477 1.526.162l2.517-1.411c.22-.143.363-.391.363-.658v-2.899c.972-.772 1.85-1.688 2.422-2.727-.105.753-.305 1.468-.601 2.145Zm-7.799 5.87-.002-.002c-.002-.002-.004-.003-.008-.003a.0437.0437 0 0 0-.013-.009l-.003-.002a.028.028 0 0 1-.013-.009c-.01 0-.019-.009-.029-.009-.009 0-.019-.01-.019-.01-.009 0-.019 0-.028-.009h-.115c-.009 0-.019 0-.028.009-.01 0-.019.01-.019.01-.01 0-.019.009-.029.009-.009 0-.019.01-.029.02-.009 0-.009.009-.019.009l-.038.038-.772.963c-.095.124-.076.296.048.391.047.038.114.057.171.057.086 0 .162-.038.219-.104l.01-.01c.286-.353.82-.353 1.097 0l.009.01c.057.066.134.104.219.104.058 0 .124-.019.172-.057.124-.095.143-.276.048-.391l-.782-.953c-.01-.01-.019-.019-.019-.029-.01-.009-.01-.009-.019-.019a.0127.0127 0 0 1-.009-.004Zm-1.622-2.265c-.038.076-.095.152-.143.219-.229.267-.572.439-.953.439-.382 0-.725-.172-.954-.439-.191-.219-.295-.505-.295-.81 0-.077.009-.144.019-.22.152.076.314.153.476.229.22.095.449.191.687.267.238.086.486.153.734.219.143.038.286.067.429.096Zm-6.503-2.184c-.114 0-.219-.048-.305-.114-.095-.086-.162-.21-.162-.344 0-.057.01-.114.029-.162.066-.171.238-.295.429-.295.085 0 .162.028.229.067.133.076.228.228.228.4 0 .086-.028.162-.066.229-.067.133-.21.219-.382.219Zm16.21-.181c-.086.105-.219.181-.362.181-.134 0-.248-.057-.334-.143-.076-.086-.124-.191-.124-.315 0-.2.124-.371.305-.429.048-.019.105-.028.162-.028.219 0 .41.162.458.372.009.028.009.057.009.095-.019.095-.057.191-.114.267Zm-5.845-9.869c0 .029.009.048.009.067l-1.163.438V1.897c.286-.047.525-.219.658-.457 1.02.229 1.974.639 2.823 1.201-.01 1.411-.554 2.708-1.412 3.881V5.34c.315-.086.544-.363.544-.706 0-.4-.324-.734-.734-.734-.401.009-.725.334-.725.734Zm-3.48-1.735c-.391 0-.716.305-.735.696l-1.458.534c-.077.028-.134.095-.134.181v.925H7.442c-.086-.315-.362-.544-.705-.544-.401 0-.735.324-.735.735 0 .4.325.734.735.734.343 0 .619-.229.705-.544h1.364c.105 0 .19-.086.19-.19v-.983l1.288-.476c.124.238.372.4.648.4.401 0 .734-.324.734-.734.01-.401-.324-.734-.724-.734Zm-.41-2.241a.4605.4605 0 0 1 .343-.153c.257 0 .467.21.467.468 0 .257-.21.467-.467.467-.096 0-.181-.029-.258-.076-.124-.086-.209-.229-.209-.382 0-.133.047-.248.124-.324Zm2.097.305c0-.257.21-.467.468-.467.133 0 .247.057.333.143.077.086.124.191.124.315 0 .152-.076.295-.2.381-.076.057-.162.086-.267.086-.248.009-.458-.2-.458-.458Z" }) + ] + } + ); +}); + +exports.default = SiRootme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.d.ts new file mode 100644 index 000000000..bf7d33e65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRootme: IconType; +export { SiRootme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.mjs new file mode 100644 index 000000000..6949f2b54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRootme = React.forwardRef(function SiRootme2({ title = "Root Me", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.364 9.897c0-.448-.029-.896-.096-1.325 0-.028-.009-.057-.009-.086-.582-3.785-3.452-6.894-7.228-7.723-.095-.429-.477-.753-.934-.753-.534 0-.964.429-.964.963 0 .457.325.839.754.934v3.519c0 .057.028.114.076.152.029.019.067.029.105.029.019 0 .048 0 .067-.01l1.411-.534c.095.143.238.239.41.286v1.659c-.715.878-1.602 1.669-2.546 2.375l-1.077-2.499c.2-.133.333-.352.333-.61 0-.4-.324-.734-.734-.734-.4 0-.734.324-.734.734 0 .401.324.734.734.734h.038l1.125 2.603c-.658.477-1.335.906-2.002 1.297l-3.204-.963c-.038-.009-.076-.009-.114.01l-.954.372c-.133-.182-.343-.296-.591-.296-.4 0-.734.324-.734.734 0 .401.324.734.734.734.401 0 .734-.324.734-.734 0-.028-.009-.057-.009-.086l.896-.352 2.794.839c-2.384 1.335-4.52 2.107-4.873 2.231l-.171.057a.9205.9205 0 0 0-.553-.181h-.029c-.448-1.058-.677-2.212-.677-3.366 0-.572.057-1.135.162-1.678H7.69c.086.315.362.543.706.543.4 0 .734-.324.734-.734 0-.4-.324-.734-.734-.734-.344 0-.62.229-.706.543h-4.1c.772-3.137 3.251-5.644 6.455-6.388.172.276.477.467.82.467.534 0 .963-.429.963-.963S11.399 0 10.865 0c-.467 0-.848.334-.944.763-4.205.953-7.285 4.739-7.285 9.125 0 1.249.248 2.498.735 3.642-.181.172-.286.42-.286.687 0 .429.276.782.658.915v3.757c0 .067.019.134.057.191l.21.143 2.851 2.012v2.403c0 .2.162.362.362.362h9.535c.2 0 .362-.162.362-.362v-2.403l2.861-2.012.21-.153a.3437.3437 0 0 0 .057-.19v-3.786c.353-.143.601-.486.601-.887 0-.248-.096-.476-.248-.648.505-1.135.763-2.393.763-3.662Zm-1.383 3.366h-.086c-.534 0-.963.429-.963.963 0 .41.258.763.629.897v3.509l-3.003 2.117c-.096.066-.153.181-.153.295v2.022c0 .114-.095.209-.21.209H15.08c-.115 0-.21-.095-.21-.209v-.725c0-.191-.133-.362-.324-.382-.219-.019-.401.153-.401.363v.753c0 .115-.095.21-.209.21h-1.364a.212.212 0 0 1-.21-.21v-1.116c0-.19-.133-.362-.324-.381-.219-.019-.4.153-.4.362v1.145c0 .114-.096.209-.21.209h-1.364a.2109.2109 0 0 1-.209-.209v-.744c0-.191-.134-.362-.325-.382-.219-.019-.4.153-.4.363v.753c0 .115-.095.21-.21.21H7.805c-.115 0-.21-.095-.21-.21v-2.021c0-.115-.057-.229-.153-.296l-2.994-2.117v-3.547a.9594.9594 0 0 0 .563-.877c0-.057-.01-.114-.019-.172.381-.133 3.289-1.173 6.15-2.956 3.871-2.412 6.017-5.149 6.264-7.961 1.669 1.344 2.823 3.289 3.157 5.473-.048 4.777-8.372 7.723-8.458 7.752-.019.009-.067.019-.105.038-.105-.019-.21-.038-.324-.057-.076-.019-.162-.029-.239-.048-.124-.019-.247-.048-.371-.076-.02-.01-.048-.01-.067-.01-.048-.009-.096-.019-.143-.028-.057-.01-.115-.029-.172-.039-.133-.028-.267-.057-.391-.095-.238-.057-.467-.124-.696-.181-.219-.067-.448-.124-.658-.191H8.92c-.162-.047-.315-.095-.467-.152a.9996.9996 0 0 0-.153-.048c-.076-.029-.143-.048-.209-.067-.124-.038-.239-.076-.344-.124h-.009a5.9785 5.9785 0 0 1-.458-.171c-.143-.058-.267-.105-.362-.143-.096-.048-.181-.077-.229-.105-.057-.029-.086-.038-.086-.038s.019.028.057.066c.038.048.096.115.181.191.077.076.182.172.306.267.124.095.267.2.419.305h.01c-.058.191-.096.401-.096.61 0 1.097.897 1.993 1.993 1.993.849 0 1.573-.534 1.86-1.287.095.01.2.019.295.029.172.009.334.009.486.009.01 0 .019.01.029.01l1.611 1.64c.41.41 1.049.477 1.526.162l2.517-1.411c.22-.143.363-.391.363-.658v-2.899c.972-.772 1.85-1.688 2.422-2.727-.105.753-.305 1.468-.601 2.145Zm-7.799 5.87-.002-.002c-.002-.002-.004-.003-.008-.003a.0437.0437 0 0 0-.013-.009l-.003-.002a.028.028 0 0 1-.013-.009c-.01 0-.019-.009-.029-.009-.009 0-.019-.01-.019-.01-.009 0-.019 0-.028-.009h-.115c-.009 0-.019 0-.028.009-.01 0-.019.01-.019.01-.01 0-.019.009-.029.009-.009 0-.019.01-.029.02-.009 0-.009.009-.019.009l-.038.038-.772.963c-.095.124-.076.296.048.391.047.038.114.057.171.057.086 0 .162-.038.219-.104l.01-.01c.286-.353.82-.353 1.097 0l.009.01c.057.066.134.104.219.104.058 0 .124-.019.172-.057.124-.095.143-.276.048-.391l-.782-.953c-.01-.01-.019-.019-.019-.029-.01-.009-.01-.009-.019-.019a.0127.0127 0 0 1-.009-.004Zm-1.622-2.265c-.038.076-.095.152-.143.219-.229.267-.572.439-.953.439-.382 0-.725-.172-.954-.439-.191-.219-.295-.505-.295-.81 0-.077.009-.144.019-.22.152.076.314.153.476.229.22.095.449.191.687.267.238.086.486.153.734.219.143.038.286.067.429.096Zm-6.503-2.184c-.114 0-.219-.048-.305-.114-.095-.086-.162-.21-.162-.344 0-.057.01-.114.029-.162.066-.171.238-.295.429-.295.085 0 .162.028.229.067.133.076.228.228.228.4 0 .086-.028.162-.066.229-.067.133-.21.219-.382.219Zm16.21-.181c-.086.105-.219.181-.362.181-.134 0-.248-.057-.334-.143-.076-.086-.124-.191-.124-.315 0-.2.124-.371.305-.429.048-.019.105-.028.162-.028.219 0 .41.162.458.372.009.028.009.057.009.095-.019.095-.057.191-.114.267Zm-5.845-9.869c0 .029.009.048.009.067l-1.163.438V1.897c.286-.047.525-.219.658-.457 1.02.229 1.974.639 2.823 1.201-.01 1.411-.554 2.708-1.412 3.881V5.34c.315-.086.544-.363.544-.706 0-.4-.324-.734-.734-.734-.401.009-.725.334-.725.734Zm-3.48-1.735c-.391 0-.716.305-.735.696l-1.458.534c-.077.028-.134.095-.134.181v.925H7.442c-.086-.315-.362-.544-.705-.544-.401 0-.735.324-.735.735 0 .4.325.734.735.734.343 0 .619-.229.705-.544h1.364c.105 0 .19-.086.19-.19v-.983l1.288-.476c.124.238.372.4.648.4.401 0 .734-.324.734-.734.01-.401-.324-.734-.724-.734Zm-.41-2.241a.4605.4605 0 0 1 .343-.153c.257 0 .467.21.467.468 0 .257-.21.467-.467.467-.096 0-.181-.029-.258-.076-.124-.086-.209-.229-.209-.382 0-.133.047-.248.124-.324Zm2.097.305c0-.257.21-.467.468-.467.133 0 .247.057.333.143.077.086.124.191.124.315 0 .152-.076.295-.2.381-.076.057-.162.086-.267.086-.248.009-.458-.2-.458-.458Z" }) + ] + } + ); +}); + +export { SiRootme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.cjs new file mode 100644 index 000000000..12d9d9fb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#525DDC"; +const SiRoots = React__namespace.forwardRef(function SiRoots2({ title = "Roots", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.513 12.27L2.6 18.177a.244.244 0 0 1-.174.072l-.02-.001a.248.248 0 0 1-.178-.102 11.973 11.973 0 0 1-.889-1.452.247.247 0 0 1 .045-.287l5.638-5.628a9.403 9.403 0 0 0 2.776-6.694.245.245 0 0 1 .49 0v3.911a6 6 0 0 1-1.774 4.274zM18 .842a.242.242 0 0 0-.245 0 .246.246 0 0 0-.122.212v10.855a6 6 0 0 0 1.773 4.273l1.997 1.995a.246.246 0 0 0 .173.072l.021-.001a.256.256 0 0 0 .18-.102A11.902 11.902 0 0 0 24 11.21c0-4.255-2.298-8.228-6-10.367zM6.367 4.085V1.054A.244.244 0 0 0 6 .842C2.3 2.982 0 6.954 0 11.21c0 .34.018.705.056 1.115.01.094.072.174.161.208a.294.294 0 0 0 .084.014.245.245 0 0 0 .172-.071l4.123-4.118a5.999 5.999 0 0 0 1.771-4.273zm10.614 14.52a9.402 9.402 0 0 1-2.778-6.696V7.996a.245.245 0 1 0-.489 0 9.401 9.401 0 0 1-2.776 6.696l-5.915 5.905a.244.244 0 0 0-.071.193.243.243 0 0 0 .102.18A11.929 11.929 0 0 0 12 23.192a11.93 11.93 0 0 0 6.947-2.222.237.237 0 0 0 .1-.18.239.239 0 0 0-.068-.193l-1.998-1.992Z" }) + ] + } + ); +}); + +exports.default = SiRoots; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.d.ts new file mode 100644 index 000000000..6e3ba7213 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#525DDC"; +declare const SiRoots: IconType; +export { SiRoots as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.mjs new file mode 100644 index 000000000..af92e40f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoots.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#525DDC"; +const SiRoots = React.forwardRef(function SiRoots2({ title = "Roots", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.513 12.27L2.6 18.177a.244.244 0 0 1-.174.072l-.02-.001a.248.248 0 0 1-.178-.102 11.973 11.973 0 0 1-.889-1.452.247.247 0 0 1 .045-.287l5.638-5.628a9.403 9.403 0 0 0 2.776-6.694.245.245 0 0 1 .49 0v3.911a6 6 0 0 1-1.774 4.274zM18 .842a.242.242 0 0 0-.245 0 .246.246 0 0 0-.122.212v10.855a6 6 0 0 0 1.773 4.273l1.997 1.995a.246.246 0 0 0 .173.072l.021-.001a.256.256 0 0 0 .18-.102A11.902 11.902 0 0 0 24 11.21c0-4.255-2.298-8.228-6-10.367zM6.367 4.085V1.054A.244.244 0 0 0 6 .842C2.3 2.982 0 6.954 0 11.21c0 .34.018.705.056 1.115.01.094.072.174.161.208a.294.294 0 0 0 .084.014.245.245 0 0 0 .172-.071l4.123-4.118a5.999 5.999 0 0 0 1.771-4.273zm10.614 14.52a9.402 9.402 0 0 1-2.778-6.696V7.996a.245.245 0 1 0-.489 0 9.401 9.401 0 0 1-2.776 6.696l-5.915 5.905a.244.244 0 0 0-.071.193.243.243 0 0 0 .102.18A11.929 11.929 0 0 0 12 23.192a11.93 11.93 0 0 0 6.947-2.222.237.237 0 0 0 .1-.18.239.239 0 0 0-.068-.193l-1.998-1.992Z" }) + ] + } + ); +}); + +export { SiRoots as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.cjs new file mode 100644 index 000000000..eaad18a25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#525DDC"; +const SiRootsbedrock = React__namespace.forwardRef(function SiRootsbedrock2({ title = "Roots Bedrock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.4 0L0 .4v5.2l.343.343 11.314-1.886L12 4.4V8l11.52-1.92.48-.48V.4l-.4-.4zm.08 9.92L0 10.4v3.2l.343.343L12 12V8zM12 12v4l11.52-1.92.48-.48v-3.2l-.343-.343zM.48 17.92L0 18.4v5.2l.4.4h23.2l.4-.4v-5.2l-.343-.343-11.314 1.886L12 19.6V16L.48 17.92z" }) + ] + } + ); +}); + +exports.default = SiRootsbedrock; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.d.ts new file mode 100644 index 000000000..43b97a154 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#525DDC"; +declare const SiRootsbedrock: IconType; +export { SiRootsbedrock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.mjs new file mode 100644 index 000000000..1e4574ffd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootsbedrock.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#525DDC"; +const SiRootsbedrock = React.forwardRef(function SiRootsbedrock2({ title = "Roots Bedrock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.4 0L0 .4v5.2l.343.343 11.314-1.886L12 4.4V8l11.52-1.92.48-.48V.4l-.4-.4zm.08 9.92L0 10.4v3.2l.343.343L12 12V8zM12 12v4l11.52-1.92.48-.48v-3.2l-.343-.343zM.48 17.92L0 18.4v5.2l.4.4h23.2l.4-.4v-5.2l-.343-.343-11.314 1.886L12 19.6V16L.48 17.92z" }) + ] + } + ); +}); + +export { SiRootsbedrock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.cjs new file mode 100644 index 000000000..ad8aa1c14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#525DDC"; +const SiRootssage = React__namespace.forwardRef(function SiRootssage2({ title = "Roots Sage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.384 4.232l1.71 5.075-4.478-3.136L0 9.403l1.753 5.2.01.03H7.3L2.82 17.77l1.754 5.2.01.03h5.705L12 17.925l1.7 5.045.01.03h5.707l1.763-5.23-4.48-3.137h5.537L24 9.403l-4.616-3.232-4.479 3.136 1.711-5.075L12 1zm.105 10.342l1.723-5.111h5.576l1.723 5.111-4.51 3.16z" }) + ] + } + ); +}); + +exports.default = SiRootssage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.d.ts new file mode 100644 index 000000000..495e282bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#525DDC"; +declare const SiRootssage: IconType; +export { SiRootssage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.mjs new file mode 100644 index 000000000..f794390f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRootssage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#525DDC"; +const SiRootssage = React.forwardRef(function SiRootssage2({ title = "Roots Sage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.384 4.232l1.71 5.075-4.478-3.136L0 9.403l1.753 5.2.01.03H7.3L2.82 17.77l1.754 5.2.01.03h5.705L12 17.925l1.7 5.045.01.03h5.707l1.763-5.23-4.48-3.137h5.537L24 9.403l-4.616-3.232-4.479 3.136 1.711-5.075L12 1zm.105 10.342l1.723-5.111h5.576l1.723 5.111-4.51 3.16z" }) + ] + } + ); +}); + +export { SiRootssage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRos.cjs new file mode 100644 index 000000000..14c600810 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#22314E"; +const SiRos = React__namespace.forwardRef(function SiRos2({ title = "ROS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.807 0C1.353 0 .173 1.22.173 2.722c0 1.504 1.18 2.723 2.634 2.723 1.455 0 2.635-1.22 2.635-2.723S4.262 0 2.807 0zM12 0c-1.455 0-2.634 1.22-2.634 2.722 0 1.504 1.18 2.723 2.634 2.723 1.455 0 2.634-1.22 2.634-2.723S13.454 0 12 0zm9.193 0c-1.455 0-2.635 1.22-2.635 2.722 0 1.504 1.18 2.723 2.635 2.723 1.455 0 2.634-1.22 2.634-2.723S22.647 0 21.193 0zM2.807 9.277C1.353 9.277.173 10.497.173 12s1.18 2.722 2.634 2.722c1.455 0 2.635-1.219 2.635-2.722 0-1.504-1.18-2.723-2.635-2.723zm9.193 0c-1.455 0-2.634 1.22-2.634 2.723s1.18 2.722 2.634 2.722c1.455 0 2.634-1.219 2.634-2.722 0-1.504-1.18-2.723-2.634-2.723zm9.193 0c-1.455 0-2.635 1.22-2.635 2.723s1.18 2.722 2.635 2.722c1.455 0 2.634-1.219 2.634-2.722 0-1.504-1.18-2.723-2.634-2.723zM2.807 18.555c-1.454 0-2.634 1.22-2.634 2.722C.173 22.781 1.353 24 2.807 24c1.455 0 2.635-1.22 2.635-2.723s-1.18-2.722-2.635-2.722zm9.193 0c-1.455 0-2.634 1.22-2.634 2.722C9.366 22.781 10.546 24 12 24c1.455 0 2.634-1.22 2.634-2.723s-1.18-2.722-2.634-2.722zm9.193 0c-1.455 0-2.635 1.22-2.635 2.722 0 1.504 1.18 2.723 2.635 2.723 1.455 0 2.634-1.22 2.634-2.723s-1.18-2.722-2.634-2.722z" }) + ] + } + ); +}); + +exports.default = SiRos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRos.d.ts new file mode 100644 index 000000000..46d477cc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#22314E"; +declare const SiRos: IconType; +export { SiRos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRos.mjs new file mode 100644 index 000000000..d48f9f223 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#22314E"; +const SiRos = React.forwardRef(function SiRos2({ title = "ROS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.807 0C1.353 0 .173 1.22.173 2.722c0 1.504 1.18 2.723 2.634 2.723 1.455 0 2.635-1.22 2.635-2.723S4.262 0 2.807 0zM12 0c-1.455 0-2.634 1.22-2.634 2.722 0 1.504 1.18 2.723 2.634 2.723 1.455 0 2.634-1.22 2.634-2.723S13.454 0 12 0zm9.193 0c-1.455 0-2.635 1.22-2.635 2.722 0 1.504 1.18 2.723 2.635 2.723 1.455 0 2.634-1.22 2.634-2.723S22.647 0 21.193 0zM2.807 9.277C1.353 9.277.173 10.497.173 12s1.18 2.722 2.634 2.722c1.455 0 2.635-1.219 2.635-2.722 0-1.504-1.18-2.723-2.635-2.723zm9.193 0c-1.455 0-2.634 1.22-2.634 2.723s1.18 2.722 2.634 2.722c1.455 0 2.634-1.219 2.634-2.722 0-1.504-1.18-2.723-2.634-2.723zm9.193 0c-1.455 0-2.635 1.22-2.635 2.723s1.18 2.722 2.635 2.722c1.455 0 2.634-1.219 2.634-2.722 0-1.504-1.18-2.723-2.634-2.723zM2.807 18.555c-1.454 0-2.634 1.22-2.634 2.722C.173 22.781 1.353 24 2.807 24c1.455 0 2.635-1.22 2.635-2.723s-1.18-2.722-2.635-2.722zm9.193 0c-1.455 0-2.634 1.22-2.634 2.722C9.366 22.781 10.546 24 12 24c1.455 0 2.634-1.22 2.634-2.723s-1.18-2.722-2.634-2.722zm9.193 0c-1.455 0-2.635 1.22-2.635 2.722 0 1.504 1.18 2.723 2.635 2.723 1.455 0 2.634-1.22 2.634-2.723s-1.18-2.722-2.634-2.722z" }) + ] + } + ); +}); + +export { SiRos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.cjs new file mode 100644 index 000000000..7c83ff830 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C3002D"; +const SiRossmann = React__namespace.forwardRef(function SiRossmann2({ title = "Rossmann", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.391 0 0 5.391 0 12s5.391 12 12 12 12-5.391 12-12S18.609 0 12 0m0 2.088a9.93 9.93 0 0 1 7.477 3.39H16l.348-.607c.347-.783-.958-1.392-1.393-.61l-.607 1.218H4.52C6.435 3.392 9.131 2.088 12 2.088m8.434 4.695A10.07 10.07 0 0 1 21.912 12c0 4.087-2.522 7.653-6.174 9.13l-3.912-3.911q-.13-.131 0-.262l1.39-2.783c.088-.087.174-.174.26-.174h2.436c.087 0 .088.087.088.174l-.697 1.478s0 .174.088.174l.869.61c.087.087.175-.001.261-.088l.956-2.26c.087-.087.174-.174.261-.174h.87s.087 0 .087.174L18 15.652s-.001.174.086.174l.957.61c.087.087.173-.001.26-.088 0-.087 1.045-2.26 1.045-2.434.26-.609.172-1.652-1.045-1.652h-1.39a.19.19 0 0 1-.175-.174v-4.61q0-.26.262-.26zm-16.782.088s9.13.434 9.217.434.26 0 .26.174c.087.173.87 2.174.957 2.261s.087.348-.348.348H4.87a1.15 1.15 0 0 0-1.13 1.13v3.305c0 .261.086.522.173.696.261.26.696.433.783.433.087.087.174.001.174-.086v-4.261c0-.087.087-.174.174-.174H6s.173 0 .086.088c-.348.435-.434.87-.434 1.652 0 1.217.87 1.999 1.217 2.26 0 0 .087.087 0 .174S6 17.044 6 17.13q-.13.131 0 .262l4.348 4.26c-4.696-.87-8.174-4.87-8.174-9.653 0-1.913.522-3.65 1.478-5.129M9.912 14h.957s.173 0 .086.174-1.39 2.696-1.39 2.783v.174l4.52 4.435c-.52.174-1.042.173-1.564.26l-4.435-4.433c-.087-.087 0-.175 0-.262s1.48-2.87 1.566-2.957c0-.087.086-.174.26-.174" }) + ] + } + ); +}); + +exports.default = SiRossmann; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.d.ts new file mode 100644 index 000000000..7d9036f59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C3002D"; +declare const SiRossmann: IconType; +export { SiRossmann as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.mjs new file mode 100644 index 000000000..ca3c21722 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRossmann.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C3002D"; +const SiRossmann = React.forwardRef(function SiRossmann2({ title = "Rossmann", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.391 0 0 5.391 0 12s5.391 12 12 12 12-5.391 12-12S18.609 0 12 0m0 2.088a9.93 9.93 0 0 1 7.477 3.39H16l.348-.607c.347-.783-.958-1.392-1.393-.61l-.607 1.218H4.52C6.435 3.392 9.131 2.088 12 2.088m8.434 4.695A10.07 10.07 0 0 1 21.912 12c0 4.087-2.522 7.653-6.174 9.13l-3.912-3.911q-.13-.131 0-.262l1.39-2.783c.088-.087.174-.174.26-.174h2.436c.087 0 .088.087.088.174l-.697 1.478s0 .174.088.174l.869.61c.087.087.175-.001.261-.088l.956-2.26c.087-.087.174-.174.261-.174h.87s.087 0 .087.174L18 15.652s-.001.174.086.174l.957.61c.087.087.173-.001.26-.088 0-.087 1.045-2.26 1.045-2.434.26-.609.172-1.652-1.045-1.652h-1.39a.19.19 0 0 1-.175-.174v-4.61q0-.26.262-.26zm-16.782.088s9.13.434 9.217.434.26 0 .26.174c.087.173.87 2.174.957 2.261s.087.348-.348.348H4.87a1.15 1.15 0 0 0-1.13 1.13v3.305c0 .261.086.522.173.696.261.26.696.433.783.433.087.087.174.001.174-.086v-4.261c0-.087.087-.174.174-.174H6s.173 0 .086.088c-.348.435-.434.87-.434 1.652 0 1.217.87 1.999 1.217 2.26 0 0 .087.087 0 .174S6 17.044 6 17.13q-.13.131 0 .262l4.348 4.26c-4.696-.87-8.174-4.87-8.174-9.653 0-1.913.522-3.65 1.478-5.129M9.912 14h.957s.173 0 .086.174-1.39 2.696-1.39 2.783v.174l4.52 4.435c-.52.174-1.042.173-1.564.26l-4.435-4.433c-.087-.087 0-.175 0-.262s1.48-2.87 1.566-2.957c0-.087.086-.174.26-.174" }) + ] + } + ); +}); + +export { SiRossmann as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.cjs new file mode 100644 index 000000000..677b105ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7A81B"; +const SiRotaryinternational = React__namespace.forwardRef(function SiRotaryinternational2({ title = "Rotary International", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.301 9.504c.09.03.125.129.152.227.467 1.572.467 2.916 0 4.5-.038.136-.093.211-.165.24-.105.032-.218-.043-.314-.113l-3.061-2.077c-.118-.078-.187-.186-.187-.3 0-.112.067-.219.187-.3l3.06-2.075c.14-.1.247-.131.328-.102zm-1.122 6.928c-1.134 1.195-2.296 1.867-3.893 2.25-.136.034-.23.023-.287-.025-.084-.07-.073-.21-.065-.331l.265-3.689c.017-.144.073-.252.175-.313.097-.053.223-.048.347.012l3.33 1.611c.154.076.237.152.253.236.017.092-.05.173-.125.25zm-5.177-2.327a2.163 2.163 0 0 1-2.162-2.16c0-.728.363-1.403.972-1.805a.436.436 0 0 1 .48.728A1.29 1.29 0 0 0 12 13.233a1.29 1.29 0 0 0 .709-2.366.437.437 0 0 1 .482-.728A2.162 2.162 0 0 1 12 14.105zm-.95 4.606c-.073.06-.174.04-.275.016-1.59-.38-2.757-1.052-3.895-2.25-.082-.087-.122-.163-.122-.23 0-.013 0-.02.002-.034.015-.104.144-.166.25-.218l3.33-1.615c.13-.06.255-.064.353-.006.096.057.157.166.167.305l.27 3.696c.01.175-.015.282-.08.336zm-5.018-4.33c-.145.1-.25.135-.333.106-.09-.032-.12-.13-.15-.23-.47-1.569-.47-2.915-.005-4.5.04-.135.097-.21.17-.237.105-.037.217.04.317.11l3.059 2.08c.115.076.183.182.183.298 0 .112-.068.218-.18.3zm.79-6.832h.001c1.138-1.196 2.304-1.87 3.894-2.25.099-.023.203-.042.273.02.067.053.092.162.079.339l-.27 3.685c-.008.142-.066.254-.166.309-.097.058-.224.055-.35-.007L6.959 8.033c-.108-.054-.235-.11-.257-.22-.01-.075.026-.164.122-.264Zm6.177-2.26c.077-.061.177-.042.277-.021 1.59.385 2.756 1.057 3.895 2.253.081.085.125.165.125.236l-.002.028c-.025.109-.146.166-.255.219l-3.328 1.61c-.131.063-.254.069-.35.01-.097-.057-.158-.166-.17-.31l-.267-3.685c-.012-.176.013-.285.076-.34zm-.996-1.272c-4.36 0-7.908 3.55-7.908 7.911 0 4.362 3.548 7.91 7.908 7.91 4.362 0 7.912-3.548 7.912-7.91 0-4.361-3.55-7.91-7.912-7.91m0 16.903c-4.955 0-8.99-4.034-8.99-8.994 0-4.958 4.035-8.99 8.99-8.99 4.96 0 8.993 4.032 8.993 8.99 0 4.96-4.033 8.994-8.993 8.994zm11.973-9.295-.002-.033-.026-.015c-.508-.308-1.176-.483-1.83-.497a57.713 57.713 0 0 1-.103-.785c.623-.176 1.222-.515 1.64-.95l.023-.02-.006-.032a3.568 3.568 0 0 0-.2-.753l-.013-.03-.032-.008c-.574-.164-1.261-.16-1.893 0a64.48 64.48 0 0 0-.296-.723c.555-.34 1.043-.82 1.336-1.34l.016-.025-.012-.033a3.88 3.88 0 0 0-.39-.674l-.016-.024h-.035c-.59-.013-1.25.167-1.833.48-.052-.07-.43-.563-.482-.631.454-.468.8-1.062.948-1.64l.008-.034-.022-.024a3.604 3.604 0 0 0-.546-.556l-.025-.019-.032.006c-.582.147-1.17.495-1.64.945l-.634-.497c.313-.553.497-1.192.497-1.78l-.004-.08-.025-.02a3.246 3.246 0 0 0-.675-.39l-.03-.01-.025.012c-.522.29-1 .775-1.335 1.33a67.567 67.567 0 0 1-.76-.317c.078-.313.127-.635.127-.958a3.19 3.19 0 0 0-.128-.932l-.007-.03-.033-.013a3.43 3.43 0 0 0-.745-.205l-.034-.003-.021.022c-.43.418-.769 1.014-.948 1.638a41.443 41.443 0 0 0-.8-.102c-.008-.647-.183-1.31-.491-1.825l-.016-.03h-.032a3.61 3.61 0 0 0-.78 0h-.034l-.015.03c-.306.51-.478 1.173-.49 1.824-.09.012-.717.088-.808.103-.18-.628-.52-1.226-.948-1.642L9.297.311l-.035.006c-.23.034-.55.12-.75.2l-.03.013-.01.03a3.6 3.6 0 0 0-.124.944c0 .316.05.64.124.95-.078.034-.683.293-.764.326-.337-.555-.817-1.044-1.337-1.337l-.028-.017-.032.011c-.2.088-.49.255-.672.393l-.028.017v.086c0 .583.18 1.224.49 1.781-.067.056-.52.41-.589.465-.467-.45-1.058-.799-1.642-.949l-.029-.007-.022.022c-.18.134-.42.37-.557.547l-.02.026.007.032c.146.58.494 1.17.944 1.644-.05.069-.444.583-.5.654-.564-.315-1.223-.503-1.825-.494l-.03.002-.02.027a3.693 3.693 0 0 0-.391.675l-.013.028.017.029c.288.518.778 1.003 1.335 1.342-.03.08-.259.637-.294.718-.642-.16-1.325-.16-1.896.006l-.031.008-.011.027c-.084.2-.171.516-.205.754l-.004.032.022.025c.417.429 1.015.768 1.64.94l-.105.791c-.649.013-1.318.184-1.828.491l-.028.015-.004.034a3.534 3.534 0 0 0 0 .78l.004.031.028.015c.51.306 1.173.48 1.827.49.012.09.1.724.11.811-.625.184-1.22.526-1.636.954l-.023.027.004.03c.036.234.122.556.203.75l.013.03.029.01c.579.164 1.263.157 1.898 0 .032.08.278.641.312.722-.555.333-1.043.815-1.337 1.335l-.014.03.01.03c.086.205.256.494.392.673l.021.027.028.002c.598.008 1.258-.17 1.83-.486.053.068.44.57.49.64-.448.46-.798 1.05-.946 1.637l-.008.03.02.027c.137.175.373.41.55.553l.025.022.03-.01c.58-.145 1.17-.49 1.641-.943l.647.496c-.308.566-.489 1.21-.489 1.798v.066l.03.02c.174.134.46.297.671.39l.03.012.03-.015c.523-.29 1.004-.78 1.342-1.342l.71.287a3.8 3.8 0 0 0-.123.945c0 .33.043.653.126.943l.008.03.032.014c.198.084.515.17.75.208l.034.005.022-.026c.432-.42.77-1.018.939-1.637.09.015.724.104.812.114.013.652.188 1.317.494 1.823l.013.028.035.005c.225.028.56.028.78 0l.03-.005.018-.028c.303-.506.478-1.172.494-1.827.088-.013.68-.095.77-.11.174.63.514 1.22.946 1.642l.023.02.03-.001c.235-.038.555-.121.754-.202l.028-.014.011-.03c.083-.292.122-.613.122-.943 0-.318-.045-.644-.122-.957.081-.03.655-.28.736-.315.34.557.82 1.046 1.338 1.34l.026.012.03-.01c.207-.086.5-.254.678-.394l.026-.016v-.087c0-.576-.18-1.217-.483-1.78l.61-.476c.474.45 1.064.795 1.643.945l.032.009.023-.021c.177-.14.417-.378.555-.55l.022-.03-.012-.026c-.143-.578-.488-1.17-.94-1.642.053-.07.435-.572.487-.643.574.315 1.235.495 1.828.484h.032l.02-.025a3.11 3.11 0 0 0 .39-.68l.014-.026-.016-.028c-.283-.51-.768-.996-1.324-1.346l.293-.713c.63.162 1.314.167 1.89 0l.027-.01.013-.028c.085-.203.17-.517.206-.75l.004-.033-.024-.025c-.417-.432-1.012-.767-1.631-.945.014-.087.097-.68.106-.77.656-.01 1.324-.185 1.833-.49l.026-.018.002-.035c.015-.108.02-.25.02-.389 0-.14-.005-.278-.02-.387" }) + ] + } + ); +}); + +exports.default = SiRotaryinternational; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.d.ts new file mode 100644 index 000000000..ddb3c3744 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7A81B"; +declare const SiRotaryinternational: IconType; +export { SiRotaryinternational as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.mjs new file mode 100644 index 000000000..24efef908 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRotaryinternational.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7A81B"; +const SiRotaryinternational = React.forwardRef(function SiRotaryinternational2({ title = "Rotary International", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.301 9.504c.09.03.125.129.152.227.467 1.572.467 2.916 0 4.5-.038.136-.093.211-.165.24-.105.032-.218-.043-.314-.113l-3.061-2.077c-.118-.078-.187-.186-.187-.3 0-.112.067-.219.187-.3l3.06-2.075c.14-.1.247-.131.328-.102zm-1.122 6.928c-1.134 1.195-2.296 1.867-3.893 2.25-.136.034-.23.023-.287-.025-.084-.07-.073-.21-.065-.331l.265-3.689c.017-.144.073-.252.175-.313.097-.053.223-.048.347.012l3.33 1.611c.154.076.237.152.253.236.017.092-.05.173-.125.25zm-5.177-2.327a2.163 2.163 0 0 1-2.162-2.16c0-.728.363-1.403.972-1.805a.436.436 0 0 1 .48.728A1.29 1.29 0 0 0 12 13.233a1.29 1.29 0 0 0 .709-2.366.437.437 0 0 1 .482-.728A2.162 2.162 0 0 1 12 14.105zm-.95 4.606c-.073.06-.174.04-.275.016-1.59-.38-2.757-1.052-3.895-2.25-.082-.087-.122-.163-.122-.23 0-.013 0-.02.002-.034.015-.104.144-.166.25-.218l3.33-1.615c.13-.06.255-.064.353-.006.096.057.157.166.167.305l.27 3.696c.01.175-.015.282-.08.336zm-5.018-4.33c-.145.1-.25.135-.333.106-.09-.032-.12-.13-.15-.23-.47-1.569-.47-2.915-.005-4.5.04-.135.097-.21.17-.237.105-.037.217.04.317.11l3.059 2.08c.115.076.183.182.183.298 0 .112-.068.218-.18.3zm.79-6.832h.001c1.138-1.196 2.304-1.87 3.894-2.25.099-.023.203-.042.273.02.067.053.092.162.079.339l-.27 3.685c-.008.142-.066.254-.166.309-.097.058-.224.055-.35-.007L6.959 8.033c-.108-.054-.235-.11-.257-.22-.01-.075.026-.164.122-.264Zm6.177-2.26c.077-.061.177-.042.277-.021 1.59.385 2.756 1.057 3.895 2.253.081.085.125.165.125.236l-.002.028c-.025.109-.146.166-.255.219l-3.328 1.61c-.131.063-.254.069-.35.01-.097-.057-.158-.166-.17-.31l-.267-3.685c-.012-.176.013-.285.076-.34zm-.996-1.272c-4.36 0-7.908 3.55-7.908 7.911 0 4.362 3.548 7.91 7.908 7.91 4.362 0 7.912-3.548 7.912-7.91 0-4.361-3.55-7.91-7.912-7.91m0 16.903c-4.955 0-8.99-4.034-8.99-8.994 0-4.958 4.035-8.99 8.99-8.99 4.96 0 8.993 4.032 8.993 8.99 0 4.96-4.033 8.994-8.993 8.994zm11.973-9.295-.002-.033-.026-.015c-.508-.308-1.176-.483-1.83-.497a57.713 57.713 0 0 1-.103-.785c.623-.176 1.222-.515 1.64-.95l.023-.02-.006-.032a3.568 3.568 0 0 0-.2-.753l-.013-.03-.032-.008c-.574-.164-1.261-.16-1.893 0a64.48 64.48 0 0 0-.296-.723c.555-.34 1.043-.82 1.336-1.34l.016-.025-.012-.033a3.88 3.88 0 0 0-.39-.674l-.016-.024h-.035c-.59-.013-1.25.167-1.833.48-.052-.07-.43-.563-.482-.631.454-.468.8-1.062.948-1.64l.008-.034-.022-.024a3.604 3.604 0 0 0-.546-.556l-.025-.019-.032.006c-.582.147-1.17.495-1.64.945l-.634-.497c.313-.553.497-1.192.497-1.78l-.004-.08-.025-.02a3.246 3.246 0 0 0-.675-.39l-.03-.01-.025.012c-.522.29-1 .775-1.335 1.33a67.567 67.567 0 0 1-.76-.317c.078-.313.127-.635.127-.958a3.19 3.19 0 0 0-.128-.932l-.007-.03-.033-.013a3.43 3.43 0 0 0-.745-.205l-.034-.003-.021.022c-.43.418-.769 1.014-.948 1.638a41.443 41.443 0 0 0-.8-.102c-.008-.647-.183-1.31-.491-1.825l-.016-.03h-.032a3.61 3.61 0 0 0-.78 0h-.034l-.015.03c-.306.51-.478 1.173-.49 1.824-.09.012-.717.088-.808.103-.18-.628-.52-1.226-.948-1.642L9.297.311l-.035.006c-.23.034-.55.12-.75.2l-.03.013-.01.03a3.6 3.6 0 0 0-.124.944c0 .316.05.64.124.95-.078.034-.683.293-.764.326-.337-.555-.817-1.044-1.337-1.337l-.028-.017-.032.011c-.2.088-.49.255-.672.393l-.028.017v.086c0 .583.18 1.224.49 1.781-.067.056-.52.41-.589.465-.467-.45-1.058-.799-1.642-.949l-.029-.007-.022.022c-.18.134-.42.37-.557.547l-.02.026.007.032c.146.58.494 1.17.944 1.644-.05.069-.444.583-.5.654-.564-.315-1.223-.503-1.825-.494l-.03.002-.02.027a3.693 3.693 0 0 0-.391.675l-.013.028.017.029c.288.518.778 1.003 1.335 1.342-.03.08-.259.637-.294.718-.642-.16-1.325-.16-1.896.006l-.031.008-.011.027c-.084.2-.171.516-.205.754l-.004.032.022.025c.417.429 1.015.768 1.64.94l-.105.791c-.649.013-1.318.184-1.828.491l-.028.015-.004.034a3.534 3.534 0 0 0 0 .78l.004.031.028.015c.51.306 1.173.48 1.827.49.012.09.1.724.11.811-.625.184-1.22.526-1.636.954l-.023.027.004.03c.036.234.122.556.203.75l.013.03.029.01c.579.164 1.263.157 1.898 0 .032.08.278.641.312.722-.555.333-1.043.815-1.337 1.335l-.014.03.01.03c.086.205.256.494.392.673l.021.027.028.002c.598.008 1.258-.17 1.83-.486.053.068.44.57.49.64-.448.46-.798 1.05-.946 1.637l-.008.03.02.027c.137.175.373.41.55.553l.025.022.03-.01c.58-.145 1.17-.49 1.641-.943l.647.496c-.308.566-.489 1.21-.489 1.798v.066l.03.02c.174.134.46.297.671.39l.03.012.03-.015c.523-.29 1.004-.78 1.342-1.342l.71.287a3.8 3.8 0 0 0-.123.945c0 .33.043.653.126.943l.008.03.032.014c.198.084.515.17.75.208l.034.005.022-.026c.432-.42.77-1.018.939-1.637.09.015.724.104.812.114.013.652.188 1.317.494 1.823l.013.028.035.005c.225.028.56.028.78 0l.03-.005.018-.028c.303-.506.478-1.172.494-1.827.088-.013.68-.095.77-.11.174.63.514 1.22.946 1.642l.023.02.03-.001c.235-.038.555-.121.754-.202l.028-.014.011-.03c.083-.292.122-.613.122-.943 0-.318-.045-.644-.122-.957.081-.03.655-.28.736-.315.34.557.82 1.046 1.338 1.34l.026.012.03-.01c.207-.086.5-.254.678-.394l.026-.016v-.087c0-.576-.18-1.217-.483-1.78l.61-.476c.474.45 1.064.795 1.643.945l.032.009.023-.021c.177-.14.417-.378.555-.55l.022-.03-.012-.026c-.143-.578-.488-1.17-.94-1.642.053-.07.435-.572.487-.643.574.315 1.235.495 1.828.484h.032l.02-.025a3.11 3.11 0 0 0 .39-.68l.014-.026-.016-.028c-.283-.51-.768-.996-1.324-1.346l.293-.713c.63.162 1.314.167 1.89 0l.027-.01.013-.028c.085-.203.17-.517.206-.75l.004-.033-.024-.025c-.417-.432-1.012-.767-1.631-.945.014-.087.097-.68.106-.77.656-.01 1.324-.185 1.833-.49l.026-.018.002-.035c.015-.108.02-.25.02-.389 0-.14-.005-.278-.02-.387" }) + ] + } + ); +}); + +export { SiRotaryinternational as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.cjs new file mode 100644 index 000000000..a16149f7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA320A"; +const SiRottentomatoes = React__namespace.forwardRef(function SiRottentomatoes2({ title = "Rotten Tomatoes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.866 0L4.335 1.262l2.082 1.8c-2.629-.989-4.842 1.4-5.012 2.338 1.384-.323 2.24-.422 3.344-.335-7.042 4.634-4.978 13.148-1.434 16.094 5.784 4.612 13.77 3.202 17.91-1.316C27.26 13.363 22.993.65 10.86 2.766c.107-1.17.633-1.503 1.243-1.602-.89-1.493-3.67-.734-4.556 1.374C7.52 2.602 5.866 0 5.866 0zM4.422 7.217H6.9c2.673 0 2.898.012 3.55.202 1.06.307 1.868.973 2.313 1.904.05.106.092.206.13.305l7.623.008.027 2.912-2.745-.024v7.549l-2.982-.016v-7.522l-2.127.016a2.92 2.92 0 0 1-1.056 1.134c-.287.176-.3.19-.254.264.127.2 2.125 3.642 2.125 3.659l-3.39.019-2.013-3.376c-.034-.047-.122-.068-.344-.084l-.297-.02.037 3.48-3.075-.038zm3.016 2.288l.024.338c.014.186.024.729.024 1.206v.867l.582-.025c.32-.013.695-.049.833-.078.694-.146 1.048-.478 1.087-1.018.027-.378-.063-.636-.303-.87-.318-.309-.761-.416-1.733-.418Z" }) + ] + } + ); +}); + +exports.default = SiRottentomatoes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.d.ts new file mode 100644 index 000000000..4da902e12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA320A"; +declare const SiRottentomatoes: IconType; +export { SiRottentomatoes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.mjs new file mode 100644 index 000000000..7cab1d010 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRottentomatoes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA320A"; +const SiRottentomatoes = React.forwardRef(function SiRottentomatoes2({ title = "Rotten Tomatoes", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.866 0L4.335 1.262l2.082 1.8c-2.629-.989-4.842 1.4-5.012 2.338 1.384-.323 2.24-.422 3.344-.335-7.042 4.634-4.978 13.148-1.434 16.094 5.784 4.612 13.77 3.202 17.91-1.316C27.26 13.363 22.993.65 10.86 2.766c.107-1.17.633-1.503 1.243-1.602-.89-1.493-3.67-.734-4.556 1.374C7.52 2.602 5.866 0 5.866 0zM4.422 7.217H6.9c2.673 0 2.898.012 3.55.202 1.06.307 1.868.973 2.313 1.904.05.106.092.206.13.305l7.623.008.027 2.912-2.745-.024v7.549l-2.982-.016v-7.522l-2.127.016a2.92 2.92 0 0 1-1.056 1.134c-.287.176-.3.19-.254.264.127.2 2.125 3.642 2.125 3.659l-3.39.019-2.013-3.376c-.034-.047-.122-.068-.344-.084l-.297-.02.037 3.48-3.075-.038zm3.016 2.288l.024.338c.014.186.024.729.024 1.206v.867l.582-.025c.32-.013.695-.049.833-.078.694-.146 1.048-.478 1.087-1.018.027-.378-.063-.636-.303-.87-.318-.309-.761-.416-1.733-.418Z" }) + ] + } + ); +}); + +export { SiRottentomatoes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.cjs new file mode 100644 index 000000000..78019802a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#37BEFF"; +const SiRoundcube = React__namespace.forwardRef(function SiRoundcube2({ title = "Roundcube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002.072a8.302 8.302 0 0 0-8.266 7.512L.498 9.454l4.682 2.704A7.8 7.8 0 0 1 12.002.572a7.802 7.802 0 0 1 6.824 11.582l4.676-2.7-3.236-1.87A8.302 8.302 0 0 0 12.002.072zM0 9.742v7.399l11.75 6.787v-7.399L0 9.742zm24 0l-5.777 3.338-5.248 3.031h-.002l-.108.063-.615.355v7.399L24 17.14V9.744z" }) + ] + } + ); +}); + +exports.default = SiRoundcube; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.d.ts new file mode 100644 index 000000000..ace1a58ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#37BEFF"; +declare const SiRoundcube: IconType; +export { SiRoundcube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.mjs new file mode 100644 index 000000000..d4214bf06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRoundcube.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#37BEFF"; +const SiRoundcube = React.forwardRef(function SiRoundcube2({ title = "Roundcube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002.072a8.302 8.302 0 0 0-8.266 7.512L.498 9.454l4.682 2.704A7.8 7.8 0 0 1 12.002.572a7.802 7.802 0 0 1 6.824 11.582l4.676-2.7-3.236-1.87A8.302 8.302 0 0 0 12.002.072zM0 9.742v7.399l11.75 6.787v-7.399L0 9.742zm24 0l-5.777 3.338-5.248 3.031h-.002l-.108.063-.615.355v7.399L24 17.14V9.744z" }) + ] + } + ); +}); + +export { SiRoundcube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.cjs new file mode 100644 index 000000000..3ea5a0771 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF0092"; +const SiRsocket = React__namespace.forwardRef(function SiRsocket2({ title = "RSocket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.0017.0027a10.519 10.519 0 0 1-.707.0254c-2.729-.0032-5.4588.0152-8.1873-.0235-1.3307-.0188-2.5864.2591-3.8065.7383-1.888.7414-3.491 1.8872-4.8105 3.4335C3.3771 5.4811 2.6038 6.9602 2.1 8.5981c-.351 1.1412-.4421 2.316-.457 3.4843-.0491 3.8519-.03 7.704-.045 11.5563-.001.272.12.3397.3594.3399a747.047 747.047 0 0 1 3.8808.0156c.2057.0013.3034-.0698.3027-.2988-.0065-2.0774-.004-4.1549-.004-6.2323h.004c0-1.6147-.0051-3.2289.002-4.8436.0032-.7354.0408-1.4628.2011-2.1913.2935-1.3334.8763-2.4931 1.8007-3.5019 1.4113-1.5399 3.095-2.3874 5.2264-2.4062 2.7385-.024 5.4765-.017 8.2147-.0097.758.002.7573.0062.7597-.748.0038-1.1425.0089-2.2853.0137-3.4277.001-.2785-.081-.3503-.3574-.332zm.0722 6.4686a8.0464 8.0464 0 0 1-.5097.0175c-2.7098.0032-5.419.0064-8.1287.0078-.4452.0003-.899.0172-1.3222.1348-2.3604.6557-3.8665 2.6802-3.9921 4.9784-.1171 2.1443.8097 3.7936 2.5624 4.992.639.437 1.3534.7418 2.121.8027 1.5251.121 3.059.0446 4.5878.084.19.005.2812-.0765.2656-.2734-.007-.089-.0564-.2059.0528-.254.1102-.0484.1893.0542.2695.1153.5025.3832.9995.775 1.5078 1.1504.2049.1513.162.2592-.0058.3945-.4774.3848-.9511.776-1.4258 1.164-.0732.0599-.145.1317-.25.0977-.1193-.0386-.1036-.1468-.0976-.2383.0159-.243-.1108-.3032-.332-.3027-2.9551.0058-5.91.0073-8.865.0058-.4322-.0002-.4198-.0086-.416.412.0117 1.3027.0395 2.6042-.0176 3.9062-.0114.2586.094.3345.3281.334 1.5294-.0033 3.0584-.002 4.5878-.002v-.0332c.9158 0 1.8322.0067 2.748-.002.7262-.0069 1.4622.0436 2.1757-.1055 1.4784-.3089 2.6552-1.106 3.5057-2.3515 1.0026-1.4681 1.1873-3.0805.6836-4.7596-.3397-1.1324-1.0219-2.0666-1.9824-2.7577-.8843-.6363-1.8522-1.0606-2.9862-1.0644-1.1798-.004-2.3591-.0068-3.539-.0235-.2507-.0035-.2778.1322-.25.33.0116.0822.027.1789-.0644.2286-.0936.051-.1617-.0238-.2246-.0762-.515-.4283-1.0257-.8616-1.543-1.287-.1355-.1115-.1546-.2131-.0098-.3164.5468-.39 1.0515-.829 1.543-1.2852.0603-.056.1264-.1333.2207-.0761.0785.0475.051.1323.0449.207-.0266.3245.025.3792.3515.3808.6797.0034 1.3583-.03 2.037-.037 2.1146-.0223 4.2309-.0069 6.3456 0 .2361.0007.3523-.079.3516-.3243-.004-1.2932-.0035-2.5875-.0058-3.8807-.0004-.213-.1099-.3068-.3223-.293z" }) + ] + } + ); +}); + +exports.default = SiRsocket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.d.ts new file mode 100644 index 000000000..a21f4514b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF0092"; +declare const SiRsocket: IconType; +export { SiRsocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.mjs new file mode 100644 index 000000000..7dd3eb23c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRsocket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF0092"; +const SiRsocket = React.forwardRef(function SiRsocket2({ title = "RSocket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.0017.0027a10.519 10.519 0 0 1-.707.0254c-2.729-.0032-5.4588.0152-8.1873-.0235-1.3307-.0188-2.5864.2591-3.8065.7383-1.888.7414-3.491 1.8872-4.8105 3.4335C3.3771 5.4811 2.6038 6.9602 2.1 8.5981c-.351 1.1412-.4421 2.316-.457 3.4843-.0491 3.8519-.03 7.704-.045 11.5563-.001.272.12.3397.3594.3399a747.047 747.047 0 0 1 3.8808.0156c.2057.0013.3034-.0698.3027-.2988-.0065-2.0774-.004-4.1549-.004-6.2323h.004c0-1.6147-.0051-3.2289.002-4.8436.0032-.7354.0408-1.4628.2011-2.1913.2935-1.3334.8763-2.4931 1.8007-3.5019 1.4113-1.5399 3.095-2.3874 5.2264-2.4062 2.7385-.024 5.4765-.017 8.2147-.0097.758.002.7573.0062.7597-.748.0038-1.1425.0089-2.2853.0137-3.4277.001-.2785-.081-.3503-.3574-.332zm.0722 6.4686a8.0464 8.0464 0 0 1-.5097.0175c-2.7098.0032-5.419.0064-8.1287.0078-.4452.0003-.899.0172-1.3222.1348-2.3604.6557-3.8665 2.6802-3.9921 4.9784-.1171 2.1443.8097 3.7936 2.5624 4.992.639.437 1.3534.7418 2.121.8027 1.5251.121 3.059.0446 4.5878.084.19.005.2812-.0765.2656-.2734-.007-.089-.0564-.2059.0528-.254.1102-.0484.1893.0542.2695.1153.5025.3832.9995.775 1.5078 1.1504.2049.1513.162.2592-.0058.3945-.4774.3848-.9511.776-1.4258 1.164-.0732.0599-.145.1317-.25.0977-.1193-.0386-.1036-.1468-.0976-.2383.0159-.243-.1108-.3032-.332-.3027-2.9551.0058-5.91.0073-8.865.0058-.4322-.0002-.4198-.0086-.416.412.0117 1.3027.0395 2.6042-.0176 3.9062-.0114.2586.094.3345.3281.334 1.5294-.0033 3.0584-.002 4.5878-.002v-.0332c.9158 0 1.8322.0067 2.748-.002.7262-.0069 1.4622.0436 2.1757-.1055 1.4784-.3089 2.6552-1.106 3.5057-2.3515 1.0026-1.4681 1.1873-3.0805.6836-4.7596-.3397-1.1324-1.0219-2.0666-1.9824-2.7577-.8843-.6363-1.8522-1.0606-2.9862-1.0644-1.1798-.004-2.3591-.0068-3.539-.0235-.2507-.0035-.2778.1322-.25.33.0116.0822.027.1789-.0644.2286-.0936.051-.1617-.0238-.2246-.0762-.515-.4283-1.0257-.8616-1.543-1.287-.1355-.1115-.1546-.2131-.0098-.3164.5468-.39 1.0515-.829 1.543-1.2852.0603-.056.1264-.1333.2207-.0761.0785.0475.051.1323.0449.207-.0266.3245.025.3792.3515.3808.6797.0034 1.3583-.03 2.037-.037 2.1146-.0223 4.2309-.0069 6.3456 0 .2361.0007.3523-.079.3516-.3243-.004-1.2932-.0035-2.5875-.0058-3.8807-.0004-.213-.1099-.3068-.3223-.293z" }) + ] + } + ); +}); + +export { SiRsocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRss.cjs new file mode 100644 index 000000000..5cacb55c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA500"; +const SiRss = React__namespace.forwardRef(function SiRss2({ title = "RSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z" }) + ] + } + ); +}); + +exports.default = SiRss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRss.d.ts new file mode 100644 index 000000000..bb03c1137 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA500"; +declare const SiRss: IconType; +export { SiRss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRss.mjs new file mode 100644 index 000000000..379630fb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA500"; +const SiRss = React.forwardRef(function SiRss2({ title = "RSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z" }) + ] + } + ); +}); + +export { SiRss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.cjs new file mode 100644 index 000000000..77eab1d2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#75AADB"; +const SiRstudioide = React__namespace.forwardRef(function SiRstudioide2({ title = "RStudio IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.178.002a12.002 12.002 0 0 0-8.662 3.515 12.002 12.002 0 0 0 0 16.97 12.002 12.002 0 0 0 16.97 0 12.002 12.002 0 0 0 0-16.97A12.002 12.002 0 0 0 12.179.002zM7.77 5.995c.562.128 1.05.217 1.663.217.921 0 1.863-.217 2.786-.217 1.79 0 3.45.814 3.45 2.8 0 1.54-.921 2.517-2.35 2.93l2.788 4.107h1.301v1.01h-1.986l-3.293-4.934h-1.757v3.924h1.718v1.01H7.77v-1.01h1.483V7.134L7.77 6.951v-.957zm4.466 1.012c-.596 0-1.213.053-1.864.127v3.798l.941.02c2.298.034 3.183-.85 3.183-2.026 0-1.376-.997-1.919-2.26-1.919z" }) + ] + } + ); +}); + +exports.default = SiRstudioide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.d.ts new file mode 100644 index 000000000..003c1ad47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#75AADB"; +declare const SiRstudioide: IconType; +export { SiRstudioide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.mjs new file mode 100644 index 000000000..834321eee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRstudioide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#75AADB"; +const SiRstudioide = React.forwardRef(function SiRstudioide2({ title = "RStudio IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.178.002a12.002 12.002 0 0 0-8.662 3.515 12.002 12.002 0 0 0 0 16.97 12.002 12.002 0 0 0 16.97 0 12.002 12.002 0 0 0 0-16.97A12.002 12.002 0 0 0 12.179.002zM7.77 5.995c.562.128 1.05.217 1.663.217.921 0 1.863-.217 2.786-.217 1.79 0 3.45.814 3.45 2.8 0 1.54-.921 2.517-2.35 2.93l2.788 4.107h1.301v1.01h-1.986l-3.293-4.934h-1.757v3.924h1.718v1.01H7.77v-1.01h1.483V7.134L7.77 6.951v-.957zm4.466 1.012c-.596 0-1.213.053-1.864.127v3.798l.941.02c2.298.034 3.183-.85 3.183-2.026 0-1.376-.997-1.919-2.26-1.919z" }) + ] + } + ); +}); + +export { SiRstudioide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRte.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRte.cjs new file mode 100644 index 000000000..a334a3514 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRte.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A7B3"; +const SiRte = React__namespace.forwardRef(function SiRte2({ title = "RTÉ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.983 12.857V9.038s.734-.018 1.615-.018c.131 0 .258.01.373.016 1.41.115 1.992.883 1.992 1.807 0 1.036-.82 1.819-1.992 1.986a3.5 3.5 0 0 1-.474.028zm2.84 1.244c1.736-.168 3.197-1.446 3.197-3.102 0-1.763-1.018-3.324-4.049-3.45a9.497 9.497 0 0 0-.393-.01c-2.098 0-3.537.1-3.537.1s.097 1.035.097 1.558v7.624C.138 17.522 0 18.26 0 18.26h2.118s-.135-.737-.135-1.577v-3.101l1.988 2.08 1.006 1.043c.62.677 1.702 1.555 1.702 1.555h2.8s-1.253-.878-1.835-1.438zm19.055-7.198a8.123 8.123 0 0 0-2.036-.284c-1.784 0-3.321.541-4.603 1.682l.02-1.261c1.36-.925 2.9-1.34 4.583-1.34.738 0 1.378.1 2.056.276l-.02.927M11.282 18.259s.117-.778.117-1.458V9.402h-.501c-.68 0-1.736 0-2.516.077l-.066-1.718h8.124l-.041 1.718c-.802-.077-1.838-.077-2.539-.077h-.617v7.399c0 .68.136 1.458.136 1.458h-2.097m10.419-1.524c-1.838 0-3.386-1.315-3.666-3.175h3.482c.385 0 1.222.082 1.222.082V12.1s-.822.061-1.28.061h-3.424c.347-1.822 1.845-3.08 3.666-3.08.96 0 2.139.438 2.139.438l.023-1.622s-.84-.318-2.162-.318c-3.063 0-5.741 2.34-5.741 5.32 0 3.223 2.678 5.4 5.74 5.4 1.44 0 2.3-.384 2.3-.384l-.04-1.676c-.001 0-1.062.496-2.26.496Z" }) + ] + } + ); +}); + +exports.default = SiRte; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRte.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRte.d.ts new file mode 100644 index 000000000..6884de450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRte.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A7B3"; +declare const SiRte: IconType; +export { SiRte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRte.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRte.mjs new file mode 100644 index 000000000..4a3d0edd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRte.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A7B3"; +const SiRte = React.forwardRef(function SiRte2({ title = "RTÉ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.983 12.857V9.038s.734-.018 1.615-.018c.131 0 .258.01.373.016 1.41.115 1.992.883 1.992 1.807 0 1.036-.82 1.819-1.992 1.986a3.5 3.5 0 0 1-.474.028zm2.84 1.244c1.736-.168 3.197-1.446 3.197-3.102 0-1.763-1.018-3.324-4.049-3.45a9.497 9.497 0 0 0-.393-.01c-2.098 0-3.537.1-3.537.1s.097 1.035.097 1.558v7.624C.138 17.522 0 18.26 0 18.26h2.118s-.135-.737-.135-1.577v-3.101l1.988 2.08 1.006 1.043c.62.677 1.702 1.555 1.702 1.555h2.8s-1.253-.878-1.835-1.438zm19.055-7.198a8.123 8.123 0 0 0-2.036-.284c-1.784 0-3.321.541-4.603 1.682l.02-1.261c1.36-.925 2.9-1.34 4.583-1.34.738 0 1.378.1 2.056.276l-.02.927M11.282 18.259s.117-.778.117-1.458V9.402h-.501c-.68 0-1.736 0-2.516.077l-.066-1.718h8.124l-.041 1.718c-.802-.077-1.838-.077-2.539-.077h-.617v7.399c0 .68.136 1.458.136 1.458h-2.097m10.419-1.524c-1.838 0-3.386-1.315-3.666-3.175h3.482c.385 0 1.222.082 1.222.082V12.1s-.822.061-1.28.061h-3.424c.347-1.822 1.845-3.08 3.666-3.08.96 0 2.139.438 2.139.438l.023-1.622s-.84-.318-2.162-.318c-3.063 0-5.741 2.34-5.741 5.32 0 3.223 2.678 5.4 5.74 5.4 1.44 0 2.3-.384 2.3-.384l-.04-1.676c-.001 0-1.062.496-2.26.496Z" }) + ] + } + ); +}); + +export { SiRte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.cjs new file mode 100644 index 000000000..939824050 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA002E"; +const SiRtl = React__namespace.forwardRef(function SiRtl2({ title = "RTL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 9.889v4.222h7.498V9.89H0zm8.25 0v4.222h7.5V9.89h-7.5zm8.252 0v4.222H24V9.89h-7.498zm-14.365.966H4.12c.61 0 .945.275.945.733 0 .397-.254.662-.691.723l.977.824h-.754l-.926-.795H2.656v.795h-.52v-2.28zm8.281 0h3.164v.448H12.26v1.832h-.52v-1.832h-1.322v-.448zm8.414 0h.518v1.832h2.32v.448h-2.838v-2.28zm-16.176.428v.631H4.06c.325 0 .478-.103.478-.316 0-.214-.153-.315-.478-.315H2.656z" }) + ] + } + ); +}); + +exports.default = SiRtl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.d.ts new file mode 100644 index 000000000..caf9afc2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA002E"; +declare const SiRtl: IconType; +export { SiRtl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.mjs new file mode 100644 index 000000000..3e9d5c979 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA002E"; +const SiRtl = React.forwardRef(function SiRtl2({ title = "RTL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 9.889v4.222h7.498V9.89H0zm8.25 0v4.222h7.5V9.89h-7.5zm8.252 0v4.222H24V9.89h-7.498zm-14.365.966H4.12c.61 0 .945.275.945.733 0 .397-.254.662-.691.723l.977.824h-.754l-.926-.795H2.656v.795h-.52v-2.28zm8.281 0h3.164v.448H12.26v1.832h-.52v-1.832h-1.322v-.448zm8.414 0h.518v1.832h2.32v.448h-2.838v-2.28zm-16.176.428v.631H4.06c.325 0 .478-.103.478-.316 0-.214-.153-.315-.478-.315H2.656z" }) + ] + } + ); +}); + +export { SiRtl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.cjs new file mode 100644 index 000000000..db8cc436f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00BCF6"; +const SiRtlzwei = React__namespace.forwardRef(function SiRtlzwei2({ title = "RTLZWEI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h7.38v-3.69H3.692L3.69 3.69h9.229V0H0zm16.61 0v3.69h3.7v16.62h-9.238V24H24V0h-7.39zm-.003 6.49l-3.689.717v9.227l3.69-.715V6.49zm-5.535 1.076l-3.69.715v9.229l3.69-.717V7.566z" }) + ] + } + ); +}); + +exports.default = SiRtlzwei; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.d.ts new file mode 100644 index 000000000..5702fb707 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00BCF6"; +declare const SiRtlzwei: IconType; +export { SiRtlzwei as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.mjs new file mode 100644 index 000000000..7ab2f7223 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtlzwei.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00BCF6"; +const SiRtlzwei = React.forwardRef(function SiRtlzwei2({ title = "RTLZWEI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h7.38v-3.69H3.692L3.69 3.69h9.229V0H0zm16.61 0v3.69h3.7v16.62h-9.238V24H24V0h-7.39zm-.003 6.49l-3.689.717v9.227l3.69-.715V6.49zm-5.535 1.076l-3.69.715v9.229l3.69-.717V7.566z" }) + ] + } + ); +}); + +export { SiRtlzwei as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.cjs new file mode 100644 index 000000000..956a47bd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#36474F"; +const SiRtm = React__namespace.forwardRef(function SiRtm2({ title = "RTM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.584 9.054H1.98l-.487 1.413h3.408c.54 0 .594.25.51.494-.084.244-.18.323-.719.323h-3.43L0 14.946h1.917l.892-2.454c.263 0 .33.024.436.257l1.043 2.197h2.084l-1.148-2.46c1.368-.15 1.985-.822 2.206-1.698.211-.837-.173-1.734-1.846-1.734m2.817 0-.487 1.413H10l-1.541 4.48 2.036-.001 1.54-4.479h1.94l.486-1.413H8.4zm7.89 0h-1.306l-.485 1.414h.624c.272 0 .416.22.322.493l-1.368 3.985h2.036l1.37-3.988c.37-1.08.053-1.905-1.194-1.904m3.186 0h-1.16l-.486 1.414h.48c.271 0 .415.22.322.493l-1.368 3.985H19.3l1.37-3.988c.37-1.08.053-1.904-1.194-1.904m3.185 0h-1.16l-.485 1.414h.479c.272 0 .416.22.323.493l-1.369 3.985h2.036l1.37-3.988c.37-1.08.054-1.904-1.194-1.904" }) + ] + } + ); +}); + +exports.default = SiRtm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.d.ts new file mode 100644 index 000000000..924f0341a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#36474F"; +declare const SiRtm: IconType; +export { SiRtm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.mjs new file mode 100644 index 000000000..fa8121e38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRtm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#36474F"; +const SiRtm = React.forwardRef(function SiRtm2({ title = "RTM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.584 9.054H1.98l-.487 1.413h3.408c.54 0 .594.25.51.494-.084.244-.18.323-.719.323h-3.43L0 14.946h1.917l.892-2.454c.263 0 .33.024.436.257l1.043 2.197h2.084l-1.148-2.46c1.368-.15 1.985-.822 2.206-1.698.211-.837-.173-1.734-1.846-1.734m2.817 0-.487 1.413H10l-1.541 4.48 2.036-.001 1.54-4.479h1.94l.486-1.413H8.4zm7.89 0h-1.306l-.485 1.414h.624c.272 0 .416.22.322.493l-1.368 3.985h2.036l1.37-3.988c.37-1.08.053-1.905-1.194-1.904m3.186 0h-1.16l-.486 1.414h.48c.271 0 .415.22.322.493l-1.368 3.985H19.3l1.37-3.988c.37-1.08.053-1.904-1.194-1.904m3.185 0h-1.16l-.485 1.414h.479c.272 0 .416.22.323.493l-1.369 3.985h2.036l1.37-3.988c.37-1.08.054-1.904-1.194-1.904" }) + ] + } + ); +}); + +export { SiRtm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.cjs new file mode 100644 index 000000000..30128cfdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRubocop = React__namespace.forwardRef(function SiRubocop2({ title = "RuboCop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.06 0C7.71 0 4.121 3.25 3.584 7.455h16.952C19.998 3.25 16.41 0 12.06 0zM3.93 7.95a1.54 1.54 0 0 0-1.537 1.537v.772c-.358.22-.598.613-.598 1.06v2.065c0 .448.24.842.598 1.061v.802a1.54 1.54 0 0 0 1.536 1.536h16.14a1.54 1.54 0 0 0 1.536-1.536v-.802c.358-.22.6-.612.6-1.06V11.32c0-.448-.242-.842-.6-1.061v-.772A1.54 1.54 0 0 0 20.07 7.95zm1.47 3.146h13.2c.622 0 1.132.51 1.132 1.134s-.51 1.133-1.133 1.133H5.4c-.624 0-1.134-.51-1.134-1.133s.51-1.134 1.134-1.134zm-1.42 5.998v3.276A3.64 3.64 0 0 0 7.61 24h8.94a3.64 3.64 0 0 0 3.628-3.63v-3.276h-1.995v3.267c0 .898-.735 1.633-1.633 1.633h-.89v-.003a.62.62 0 0 1-.48-.23h-.002l-1.063-1.358h-.002a.622.622 0 0 0-.488-.245h-3.093a.62.62 0 0 0-.463.214h-.002L8.98 21.758h-.002a.62.62 0 0 1-.481.23v.004h-.89a1.638 1.638 0 0 1-1.633-1.633v-3.267zm4.996.795-.82.95.774.67.515-.596h5.046l.516.596.774-.67-.82-.95z" }) + ] + } + ); +}); + +exports.default = SiRubocop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.d.ts new file mode 100644 index 000000000..3a5949919 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRubocop: IconType; +export { SiRubocop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.mjs new file mode 100644 index 000000000..2caf18252 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubocop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRubocop = React.forwardRef(function SiRubocop2({ title = "RuboCop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.06 0C7.71 0 4.121 3.25 3.584 7.455h16.952C19.998 3.25 16.41 0 12.06 0zM3.93 7.95a1.54 1.54 0 0 0-1.537 1.537v.772c-.358.22-.598.613-.598 1.06v2.065c0 .448.24.842.598 1.061v.802a1.54 1.54 0 0 0 1.536 1.536h16.14a1.54 1.54 0 0 0 1.536-1.536v-.802c.358-.22.6-.612.6-1.06V11.32c0-.448-.242-.842-.6-1.061v-.772A1.54 1.54 0 0 0 20.07 7.95zm1.47 3.146h13.2c.622 0 1.132.51 1.132 1.134s-.51 1.133-1.133 1.133H5.4c-.624 0-1.134-.51-1.134-1.133s.51-1.134 1.134-1.134zm-1.42 5.998v3.276A3.64 3.64 0 0 0 7.61 24h8.94a3.64 3.64 0 0 0 3.628-3.63v-3.276h-1.995v3.267c0 .898-.735 1.633-1.633 1.633h-.89v-.003a.62.62 0 0 1-.48-.23h-.002l-1.063-1.358h-.002a.622.622 0 0 0-.488-.245h-3.093a.62.62 0 0 0-.463.214h-.002L8.98 21.758h-.002a.62.62 0 0 1-.481.23v.004h-.89a1.638 1.638 0 0 1-1.633-1.633v-3.267zm4.996.795-.82.95.774.67.515-.596h5.046l.516.596.774-.67-.82-.95z" }) + ] + } + ); +}); + +export { SiRubocop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.cjs new file mode 100644 index 000000000..daa4d5aad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC342D"; +const SiRuby = React__namespace.forwardRef(function SiRuby2({ title = "Ruby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.156.083c3.033.525 3.893 2.598 3.829 4.77L24 4.822 22.635 22.71 4.89 23.926h.016C3.433 23.864.15 23.729 0 19.139l1.645-3 2.819 6.586.503 1.172 2.805-9.144-.03.007.016-.03 9.255 2.956-1.396-5.431-.99-3.9 8.82-.569-.615-.51L16.5 2.114 20.159.073l-.003.01zM0 19.089zM5.13 5.073c3.561-3.533 8.157-5.621 9.922-3.84 1.762 1.777-.105 6.105-3.673 9.636-3.563 3.532-8.103 5.734-9.864 3.957-1.766-1.777.045-6.217 3.612-9.75l.003-.003z" }) + ] + } + ); +}); + +exports.default = SiRuby; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.d.ts new file mode 100644 index 000000000..58e10cbca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC342D"; +declare const SiRuby: IconType; +export { SiRuby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.mjs new file mode 100644 index 000000000..eae084c5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRuby.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC342D"; +const SiRuby = React.forwardRef(function SiRuby2({ title = "Ruby", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.156.083c3.033.525 3.893 2.598 3.829 4.77L24 4.822 22.635 22.71 4.89 23.926h.016C3.433 23.864.15 23.729 0 19.139l1.645-3 2.819 6.586.503 1.172 2.805-9.144-.03.007.016-.03 9.255 2.956-1.396-5.431-.99-3.9 8.82-.569-.615-.51L16.5 2.114 20.159.073l-.003.01zM0 19.089zM5.13 5.073c3.561-3.533 8.157-5.621 9.922-3.84 1.762 1.777-.105 6.105-3.673 9.636-3.563 3.532-8.103 5.734-9.864 3.957-1.766-1.777.045-6.217 3.612-9.75l.003-.003z" }) + ] + } + ); +}); + +export { SiRuby as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.cjs new file mode 100644 index 000000000..318fecca7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E9573F"; +const SiRubygems = React__namespace.forwardRef(function SiRubygems2({ title = "RubyGems", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.81 7.9l-2.97 2.95 7.19 7.18 2.96-2.95 4.22-4.23-2.96-2.96v-.01H7.8zM12 0L1.53 6v12L12 24l10.47-6V6L12 0zm8.47 16.85L12 21.73l-8.47-4.88V7.12L12 2.24l8.47 4.88v9.73z" }) + ] + } + ); +}); + +exports.default = SiRubygems; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.d.ts new file mode 100644 index 000000000..c5ff023cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E9573F"; +declare const SiRubygems: IconType; +export { SiRubygems as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.mjs new file mode 100644 index 000000000..b24a3a843 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubygems.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E9573F"; +const SiRubygems = React.forwardRef(function SiRubygems2({ title = "RubyGems", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.81 7.9l-2.97 2.95 7.19 7.18 2.96-2.95 4.22-4.23-2.96-2.96v-.01H7.8zM12 0L1.53 6v12L12 24l10.47-6V6L12 0zm8.47 16.85L12 21.73l-8.47-4.88V7.12L12 2.24l8.47 4.88v9.73z" }) + ] + } + ); +}); + +export { SiRubygems as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.cjs new file mode 100644 index 000000000..b70c92a17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRubymine = React__namespace.forwardRef(function SiRubymine2({ title = "RubyMine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm3.056 3H6.92q.945 0 1.665.347t1.106.977c.262.42.392.902.392 1.46q0 .835-.399 1.478a2.6 2.6 0 0 1-1.125.99 2 2 0 0 1-.297.103q-.066.02-.13.04L10.276 12H8.264l-1.94-3.4H4.811V12H3.056Zm8.51 0h2.444l1.851 5.907.154.773.136-.773L17.937 3h2.482v9h-1.736V5.578l.026-.47L16.613 12H15.34l-2.07-6.846.026.424V12h-1.73ZM4.812 4.459V7.14h1.993q.444-.001.771-.161.335-.167.515-.47c.12-.205.18-.439.18-.713q0-.411-.18-.707a1.17 1.17 0 0 0-.515-.462 1.7 1.7 0 0 0-.77-.168ZM2.996 19.2h9.6V21h-9.6z" }) + ] + } + ); +}); + +exports.default = SiRubymine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.d.ts new file mode 100644 index 000000000..d9826e800 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRubymine: IconType; +export { SiRubymine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.mjs new file mode 100644 index 000000000..05b564ea4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubymine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRubymine = React.forwardRef(function SiRubymine2({ title = "RubyMine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm3.056 3H6.92q.945 0 1.665.347t1.106.977c.262.42.392.902.392 1.46q0 .835-.399 1.478a2.6 2.6 0 0 1-1.125.99 2 2 0 0 1-.297.103q-.066.02-.13.04L10.276 12H8.264l-1.94-3.4H4.811V12H3.056Zm8.51 0h2.444l1.851 5.907.154.773.136-.773L17.937 3h2.482v9h-1.736V5.578l.026-.47L16.613 12H15.34l-2.07-6.846.026.424V12h-1.73ZM4.812 4.459V7.14h1.993q.444-.001.771-.161.335-.167.515-.47c.12-.205.18-.439.18-.713q0-.411-.18-.707a1.17 1.17 0 0 0-.515-.462 1.7 1.7 0 0 0-.77-.168ZM2.996 19.2h9.6V21h-9.6z" }) + ] + } + ); +}); + +export { SiRubymine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.cjs new file mode 100644 index 000000000..293e51783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D30001"; +const SiRubyonrails = React__namespace.forwardRef(function SiRubyonrails2({ title = "Ruby on Rails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.741 19.365h8.36s-1.598-7.291 3.693-10.243l.134-.066c1.286-.637 4.907-2.431 10.702 1.854.19-.159.37-.286.37-.286s-5.503-5.492-11.63-4.878c-3.079.275-6.867 3.079-9.09 6.783C1.058 16.233.741 19.365.741 19.365Zm8.804-.783a10.682 10.682 0 0 1-.127-1.333l1.143.412c.063.498.159.963.254 1.376l-1.27-.455Zm-7.799-4.317L.529 13.82c-.201.455-.423.984-.529 1.27l1.217.444c.137-.359.36-.878.529-1.269Zm7.831.296.857.677c.042-.413.116-.825.222-1.238l-.762-.603c-.137.391-.233.783-.317 1.164Zm2.042-2.646-.508-.762c.191-.243.413-.486.656-.709l.476.72a5.958 5.958 0 0 0-.624.751ZM4.19 8.878l.752.656c-.254.265-.498.551-.72.836l-.815-.698c.244-.265.508-.529.783-.794Zm9.799 1.027-.243-.73c.265-.117.571-.233.931-.339l.233.698a6.82 6.82 0 0 0-.921.371Zm3.122-.656.042-.667c.339.021.688.064 1.048.138l-.042.656a5.859 5.859 0 0 0-1.048-.127ZM8.942 6.392l-.476-.731c-.265.138-.54.286-.826.455l.487.741c.275-.169.54-.328.815-.465Zm9.217-.053.042-.709c-.095-.053-.36-.18-1.026-.371l-.043.699c.349.116.688.243 1.027.381ZM13.238 5.28h.106l-.212-.645c-.328 0-.666.021-1.016.063l.201.625a8.87 8.87 0 0 1 .921-.043Z" }) + ] + } + ); +}); + +exports.default = SiRubyonrails; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.d.ts new file mode 100644 index 000000000..b7f744231 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D30001"; +declare const SiRubyonrails: IconType; +export { SiRubyonrails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.mjs new file mode 100644 index 000000000..53f4e62a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubyonrails.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D30001"; +const SiRubyonrails = React.forwardRef(function SiRubyonrails2({ title = "Ruby on Rails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.741 19.365h8.36s-1.598-7.291 3.693-10.243l.134-.066c1.286-.637 4.907-2.431 10.702 1.854.19-.159.37-.286.37-.286s-5.503-5.492-11.63-4.878c-3.079.275-6.867 3.079-9.09 6.783C1.058 16.233.741 19.365.741 19.365Zm8.804-.783a10.682 10.682 0 0 1-.127-1.333l1.143.412c.063.498.159.963.254 1.376l-1.27-.455Zm-7.799-4.317L.529 13.82c-.201.455-.423.984-.529 1.27l1.217.444c.137-.359.36-.878.529-1.269Zm7.831.296.857.677c.042-.413.116-.825.222-1.238l-.762-.603c-.137.391-.233.783-.317 1.164Zm2.042-2.646-.508-.762c.191-.243.413-.486.656-.709l.476.72a5.958 5.958 0 0 0-.624.751ZM4.19 8.878l.752.656c-.254.265-.498.551-.72.836l-.815-.698c.244-.265.508-.529.783-.794Zm9.799 1.027-.243-.73c.265-.117.571-.233.931-.339l.233.698a6.82 6.82 0 0 0-.921.371Zm3.122-.656.042-.667c.339.021.688.064 1.048.138l-.042.656a5.859 5.859 0 0 0-1.048-.127ZM8.942 6.392l-.476-.731c-.265.138-.54.286-.826.455l.487.741c.275-.169.54-.328.815-.465Zm9.217-.053.042-.709c-.095-.053-.36-.18-1.026-.371l-.043.699c.349.116.688.243 1.027.381ZM13.238 5.28h.106l-.212-.645c-.328 0-.666.021-1.016.063l.201.625a8.87 8.87 0 0 1 .921-.043Z" }) + ] + } + ); +}); + +export { SiRubyonrails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.cjs new file mode 100644 index 000000000..aaa574cfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRubysinatra = React__namespace.forwardRef(function SiRubysinatra2({ title = "Ruby Sinatra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.224 10.525c-1.215.4-3.32 1.384-3.943 1.934-.069.06-.138.125-.207.194-.49.43-.76.851-.89 1.285A4.423 4.423 0 0 0 0 15.208c-.005.842.247 1.369.247 1.369.714 1.428 2.416 2.4 4.21 2.963 1.777.593 5.622.289 7.521.046 5.091-.684 8.389-1.657 10.319-3.237C23.924 15.042 24 13.644 24 13.127c0-.06-.007-.134-.02-.219-.032-.553-.258-1.62-1.49-2.38a2.96 2.96 0 0 0-.33-.197c-.125-.065-.25-.127-.375-.186l-.035-.027-.191-.078a12.313 12.313 0 0 0-.629-.264c-.515-.225-.971-.387-1.372-.477a69.929 69.929 0 0 1-.041-1.703c0-.7-.244-1.08-.441-1.277-.12-.119-.557-.265-.997-.4a19.118 19.118 0 0 0-.93-.287 4.657 4.657 0 0 0-.079-.027v.005l-.417-.12h-.001l-.448-.128a1.5 1.5 0 0 1-.094-.015l-.033-.01a2.161 2.161 0 0 0-.07-.02l-.028-.008a64.267 64.267 0 0 1-.641-.19 1.72 1.72 0 0 1-.091-.012v-.003a51.125 51.125 0 0 1-.213-.057v-.004a30.91 30.91 0 0 0-.32-.09v-.001a17.568 17.568 0 0 0-.669-.167 70.288 70.288 0 0 0-2.689-.502c-.182-.046-1.367-.152-1.367-.152a5.944 5.944 0 0 0-1.106.023 4.01 4.01 0 0 0-.779.19c-.113.024-.245.103-.383.216a1.363 1.363 0 0 0-.177.146l-.002.002a4.226 4.226 0 0 0-.125.12l-.007.008c-.217.217-.36.412-.454.584-.174.249-.304.479-.341.61-.032.119-.129.578-.228 1.044-.091.432-.184.871-.228 1.054-.048.2-.334.906-.601 1.567-.124.304-.243.598-.334.83Zm14.384.642c0-.06.076-.06.076.015 0 0 0 .016-.003.036a.092.092 0 0 1 .003.025c0 .03 0 .456-.03.957-.008.137-.02.281-.031.426-.011.144-.023.289-.03.425-.007.225-.008.431-.007.59.007.154.007.246.007.246v.106c0 .259-.152.593-.396.745l-.04.026h-.001l-.021.013c-.115.088-.251.166-.409.23-.22.106-.516.223-.942.339-.836.243-1.459.35-1.869.395-1.003.122-2.188.182-3.601.182-.29 0-1.414 0-1.687-.015-3.739-.106-5.988-1.23-5.988-2.036v-.106s.32-2.478.32-2.63c0-.151.09-.273.09-.182v.06c0 .03 0 .061.002.093.002.01.005.018.008.025.003.007.006.013.006.02.32 1.018 3.45 1.717 7.279 1.717h.638l.205-.003h.001c1.15-.012 3.818-.042 5.842-.954.35-.228.578-.456.578-.745z" }) + ] + } + ); +}); + +exports.default = SiRubysinatra; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.d.ts new file mode 100644 index 000000000..0d9d1c2c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRubysinatra: IconType; +export { SiRubysinatra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.mjs new file mode 100644 index 000000000..b87b286ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRubysinatra.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRubysinatra = React.forwardRef(function SiRubysinatra2({ title = "Ruby Sinatra", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.224 10.525c-1.215.4-3.32 1.384-3.943 1.934-.069.06-.138.125-.207.194-.49.43-.76.851-.89 1.285A4.423 4.423 0 0 0 0 15.208c-.005.842.247 1.369.247 1.369.714 1.428 2.416 2.4 4.21 2.963 1.777.593 5.622.289 7.521.046 5.091-.684 8.389-1.657 10.319-3.237C23.924 15.042 24 13.644 24 13.127c0-.06-.007-.134-.02-.219-.032-.553-.258-1.62-1.49-2.38a2.96 2.96 0 0 0-.33-.197c-.125-.065-.25-.127-.375-.186l-.035-.027-.191-.078a12.313 12.313 0 0 0-.629-.264c-.515-.225-.971-.387-1.372-.477a69.929 69.929 0 0 1-.041-1.703c0-.7-.244-1.08-.441-1.277-.12-.119-.557-.265-.997-.4a19.118 19.118 0 0 0-.93-.287 4.657 4.657 0 0 0-.079-.027v.005l-.417-.12h-.001l-.448-.128a1.5 1.5 0 0 1-.094-.015l-.033-.01a2.161 2.161 0 0 0-.07-.02l-.028-.008a64.267 64.267 0 0 1-.641-.19 1.72 1.72 0 0 1-.091-.012v-.003a51.125 51.125 0 0 1-.213-.057v-.004a30.91 30.91 0 0 0-.32-.09v-.001a17.568 17.568 0 0 0-.669-.167 70.288 70.288 0 0 0-2.689-.502c-.182-.046-1.367-.152-1.367-.152a5.944 5.944 0 0 0-1.106.023 4.01 4.01 0 0 0-.779.19c-.113.024-.245.103-.383.216a1.363 1.363 0 0 0-.177.146l-.002.002a4.226 4.226 0 0 0-.125.12l-.007.008c-.217.217-.36.412-.454.584-.174.249-.304.479-.341.61-.032.119-.129.578-.228 1.044-.091.432-.184.871-.228 1.054-.048.2-.334.906-.601 1.567-.124.304-.243.598-.334.83Zm14.384.642c0-.06.076-.06.076.015 0 0 0 .016-.003.036a.092.092 0 0 1 .003.025c0 .03 0 .456-.03.957-.008.137-.02.281-.031.426-.011.144-.023.289-.03.425-.007.225-.008.431-.007.59.007.154.007.246.007.246v.106c0 .259-.152.593-.396.745l-.04.026h-.001l-.021.013c-.115.088-.251.166-.409.23-.22.106-.516.223-.942.339-.836.243-1.459.35-1.869.395-1.003.122-2.188.182-3.601.182-.29 0-1.414 0-1.687-.015-3.739-.106-5.988-1.23-5.988-2.036v-.106s.32-2.478.32-2.63c0-.151.09-.273.09-.182v.06c0 .03 0 .061.002.093.002.01.005.018.008.025.003.007.006.013.006.02.32 1.018 3.45 1.717 7.279 1.717h.638l.205-.003h.001c1.15-.012 3.818-.042 5.842-.954.35-.228.578-.456.578-.745z" }) + ] + } + ); +}); + +export { SiRubysinatra as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.cjs new file mode 100644 index 000000000..ab45efa5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D7FF64"; +const SiRuff = React__namespace.forwardRef(function SiRuff2({ title = "Ruff", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 0C1.338 0 0 1.338 0 3v18c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3V3c0-1.662-1.338-3-3-3Zm4.2 7.2h8.641c.53 0 .959.43.959.959v3.266c0 .53-.43.959-.959.959h-.961v.768h1.92V16.8h-4.416v-2.88h-.768v2.88H7.2Zm3.648 3.648v.768h2.304v-.768z" }) + ] + } + ); +}); + +exports.default = SiRuff; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.d.ts new file mode 100644 index 000000000..6b3422257 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D7FF64"; +declare const SiRuff: IconType; +export { SiRuff as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.mjs new file mode 100644 index 000000000..897af508f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRuff.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D7FF64"; +const SiRuff = React.forwardRef(function SiRuff2({ title = "Ruff", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3 0C1.338 0 0 1.338 0 3v18c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3V3c0-1.662-1.338-3-3-3Zm4.2 7.2h8.641c.53 0 .959.43.959.959v3.266c0 .53-.43.959-.959.959h-.961v.768h1.92V16.8h-4.416v-2.88h-.768v2.88H7.2Zm3.648 3.648v.768h2.304v-.768z" }) + ] + } + ); +}); + +export { SiRuff as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.cjs new file mode 100644 index 000000000..604b92128 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2EB4E3"; +const SiRumahweb = React__namespace.forwardRef(function SiRumahweb2({ title = "Rumahweb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.149c.028-.275.148-.543.36-.753l7.182-7.092a.972.972 0 0 1 .103-.091c.308-.265 1.807-1.473 3.743-1.553h.402c1.126.047 2.374.5 3.61 1.731 2.534 2.542 5.076 5.077 7.615 7.615 1.14 1.14 1.198 2.585.642 3.795a4.043 4.043 0 0 1-.819 1.173 3.973 3.973 0 0 1-1.188.823c-1.208.537-2.646.458-3.86-.753l-.053-.056-6.222-6.061a.93.93 0 0 0-1.03-.207 1.6 1.6 0 0 0-.499.325c-.15.141-.272.304-.352.473-.136.291-.141.627.085.907l6.806 6.802c.483.485.481 1.27-.005 1.752a1.246 1.246 0 0 1-1.758-.004l-6.889-6.89c-.999-1.138-1.021-2.48-.488-3.614a4.087 4.087 0 0 1 2.185-2.05c1.183-.468 2.553-.365 3.679.731 2.103 2.044 4.197 4.098 6.304 6.138.359.356.76.392 1.085.248a1.6 1.6 0 0 0 .76-.763c.154-.335.148-.726-.146-1.018-2.54-2.533-5.07-5.077-7.615-7.605-1.977-1.973-4.04-.345-4.347-.082l-7.178 7.086a1.245 1.245 0 0 1-1.757-.003A1.248 1.248 0 0 1 0 12.402v-.253Z" }) + ] + } + ); +}); + +exports.default = SiRumahweb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.d.ts new file mode 100644 index 000000000..1cf239364 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2EB4E3"; +declare const SiRumahweb: IconType; +export { SiRumahweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.mjs new file mode 100644 index 000000000..921ec3b62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRumahweb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2EB4E3"; +const SiRumahweb = React.forwardRef(function SiRumahweb2({ title = "Rumahweb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.149c.028-.275.148-.543.36-.753l7.182-7.092a.972.972 0 0 1 .103-.091c.308-.265 1.807-1.473 3.743-1.553h.402c1.126.047 2.374.5 3.61 1.731 2.534 2.542 5.076 5.077 7.615 7.615 1.14 1.14 1.198 2.585.642 3.795a4.043 4.043 0 0 1-.819 1.173 3.973 3.973 0 0 1-1.188.823c-1.208.537-2.646.458-3.86-.753l-.053-.056-6.222-6.061a.93.93 0 0 0-1.03-.207 1.6 1.6 0 0 0-.499.325c-.15.141-.272.304-.352.473-.136.291-.141.627.085.907l6.806 6.802c.483.485.481 1.27-.005 1.752a1.246 1.246 0 0 1-1.758-.004l-6.889-6.89c-.999-1.138-1.021-2.48-.488-3.614a4.087 4.087 0 0 1 2.185-2.05c1.183-.468 2.553-.365 3.679.731 2.103 2.044 4.197 4.098 6.304 6.138.359.356.76.392 1.085.248a1.6 1.6 0 0 0 .76-.763c.154-.335.148-.726-.146-1.018-2.54-2.533-5.07-5.077-7.615-7.605-1.977-1.973-4.04-.345-4.347-.082l-7.178 7.086a1.245 1.245 0 0 1-1.757-.003A1.248 1.248 0 0 1 0 12.402v-.253Z" }) + ] + } + ); +}); + +export { SiRumahweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.cjs new file mode 100644 index 000000000..7d75a882d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#85C742"; +const SiRumble = React__namespace.forwardRef(function SiRumble2({ title = "Rumble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.4528 13.5458c.8064-.6542.9297-1.8381.2756-2.6445a1.8802 1.8802 0 0 0-.2756-.2756 21.2127 21.2127 0 0 0-4.3121-2.776c-1.066-.51-2.256.2-2.4261 1.414a23.5226 23.5226 0 0 0-.14 5.5021c.116 1.23 1.292 1.964 2.372 1.492a19.6285 19.6285 0 0 0 4.5062-2.704v-.008zm6.9322-5.4002c2.0335 2.228 2.0396 5.637.014 7.8723A26.1487 26.1487 0 0 1 8.2946 23.846c-2.6848.6713-5.4168-.914-6.1662-3.5781-1.524-5.2002-1.3-11.0803.17-16.3045.772-2.744 3.3521-4.4661 6.0102-3.832 4.9242 1.174 9.5443 4.196 13.0764 8.0121v.002z" }) + ] + } + ); +}); + +exports.default = SiRumble; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.d.ts new file mode 100644 index 000000000..246fb5d57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#85C742"; +declare const SiRumble: IconType; +export { SiRumble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.mjs new file mode 100644 index 000000000..f8cfe5095 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRumble.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#85C742"; +const SiRumble = React.forwardRef(function SiRumble2({ title = "Rumble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.4528 13.5458c.8064-.6542.9297-1.8381.2756-2.6445a1.8802 1.8802 0 0 0-.2756-.2756 21.2127 21.2127 0 0 0-4.3121-2.776c-1.066-.51-2.256.2-2.4261 1.414a23.5226 23.5226 0 0 0-.14 5.5021c.116 1.23 1.292 1.964 2.372 1.492a19.6285 19.6285 0 0 0 4.5062-2.704v-.008zm6.9322-5.4002c2.0335 2.228 2.0396 5.637.014 7.8723A26.1487 26.1487 0 0 1 8.2946 23.846c-2.6848.6713-5.4168-.914-6.1662-3.5781-1.524-5.2002-1.3-11.0803.17-16.3045.772-2.744 3.3521-4.4661 6.0102-3.832 4.9242 1.174 9.5443 4.196 13.0764 8.0121v.002z" }) + ] + } + ); +}); + +export { SiRumble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.cjs new file mode 100644 index 000000000..80d87d5f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F73F39"; +const SiRundeck = React__namespace.forwardRef(function SiRundeck2({ title = "Rundeck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.35 4.8 16.325 0H.115L3.14 4.8h16.21zM.115 24h16.21l3.025-4.8H3.14L.115 24zM6.163 9.6h16.21l1.512 2.4-1.512 2.4H6.163L7.675 12 6.163 9.6z" }) + ] + } + ); +}); + +exports.default = SiRundeck; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.d.ts new file mode 100644 index 000000000..7afa36593 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F73F39"; +declare const SiRundeck: IconType; +export { SiRundeck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.mjs new file mode 100644 index 000000000..99717d5bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRundeck.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F73F39"; +const SiRundeck = React.forwardRef(function SiRundeck2({ title = "Rundeck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.35 4.8 16.325 0H.115L3.14 4.8h16.21zM.115 24h16.21l3.025-4.8H3.14L.115 24zM6.163 9.6h16.21l1.512 2.4-1.512 2.4H6.163L7.675 12 6.163 9.6z" }) + ] + } + ); +}); + +export { SiRundeck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.cjs new file mode 100644 index 000000000..0c5a37863 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#001E62"; +const SiRunkeeper = React__namespace.forwardRef(function SiRunkeeper2({ title = "Runkeeper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.429 10.42c-.52 0-1.091.318-1.45.619l.029.04c.556-.39 1.33-.644 1.544-.263.112.201-.079.607-.348.928.065-.142.022-.414-.353-.414-.624 0-1.851.826-1.851 1.672 0 .339.235.56.622.56 1.035 0 2.44-1.698 2.44-2.551 0-.301-.173-.59-.633-.59zm8.738.714v1.903h.454v-.306l.345-.229.628.535h.626l-.91-.764.891-.595h-.68l-.9.619v-1.163zm-7.464.19v1.712h.453v-.543h.98l.546.544h.58l-.589-.575a.773.773 0 0 0 .399-.196.485.485 0 0 0 .14-.357.495.495 0 0 0-.23-.433c-.152-.102-.363-.153-.634-.153zm-1.853.207c.297 0 .274.265.1.492l-.096.106c-.345.34-.664.52-.88.52v-.001c-.179 0-.265-.138-.22-.297.093-.33.69-.82 1.096-.82zm17.228.09a1.29 1.29 0 0 0-.012 0 1.251 1.251 0 0 0-.403.063.76.76 0 0 0-.292.166v-.172h-.45v1.902h.455v-.711a.778.778 0 0 0 .293.163 1.262 1.262 0 0 0 .397.061 1.29 1.29 0 0 0 .498-.092.816.816 0 0 0 .349-.26.648.648 0 0 0 0-.769.82.82 0 0 0-.349-.259 1.29 1.29 0 0 0-.486-.092zm-9.133 0a1.103 1.103 0 0 0-.011 0 .96.96 0 0 0-.44.096.71.71 0 0 0-.29.258v-.297h-.432v1.359h.454v-.568a.453.453 0 0 1 .081-.271.494.494 0 0 1 .22-.17.82.82 0 0 1 .312-.057.561.561 0 0 1 .261.06.441.441 0 0 1 .18.167.475.475 0 0 1 .065.248v.59h.456v-.663a.71.71 0 0 0-.117-.414.707.707 0 0 0-.314-.254 1.103 1.103 0 0 0-.425-.084zm6.667 0a1.487 1.487 0 0 0-.523.094.867.867 0 0 0-.364.263.594.594 0 0 0-.132.378.6.6 0 0 0 .133.385.849.849 0 0 0 .385.26c.168.061.366.092.594.091a2.573 2.573 0 0 0 .418-.03c.123-.02.256-.049.397-.085v-.33a5.593 5.593 0 0 1-.398.087 2.366 2.366 0 0 1-.4.03c-.178 0-.328-.024-.45-.073-.12-.049-.195-.12-.224-.213l1.569.003v-.078a.687.687 0 0 0-.131-.42.813.813 0 0 0-.36-.27 1.487 1.487 0 0 0-.514-.092zm7.388 0a1.465 1.465 0 0 0-.582.111c-.165.072-.279.167-.342.284v-.338h-.449v1.359h.454v-.5a.387.387 0 0 1 .144-.306.897.897 0 0 1 .357-.18 1.493 1.493 0 0 1 .418-.052zm-9.66 0a1.488 1.488 0 0 0-.524.094.87.87 0 0 0-.363.263.594.594 0 0 0-.133.378.601.601 0 0 0 .134.385.85.85 0 0 0 .385.26c.168.061.366.092.594.092a2.575 2.575 0 0 0 .418-.03c.123-.021.255-.05.397-.086v-.33a5.19 5.19 0 0 1-.398.087 2.367 2.367 0 0 1-.4.03c-.178 0-.328-.024-.45-.072-.12-.05-.195-.12-.224-.213l1.569.002v-.078a.687.687 0 0 0-.131-.42.813.813 0 0 0-.36-.27 1.488 1.488 0 0 0-.515-.092zm6.958 0a1.488 1.488 0 0 0-.523.094.87.87 0 0 0-.364.263.594.594 0 0 0-.132.378.601.601 0 0 0 .134.385.85.85 0 0 0 .385.26c.168.061.366.092.594.092a2.574 2.574 0 0 0 .418-.03c.123-.021.255-.05.397-.086v-.33c-.147.037-.28.067-.398.087a2.367 2.367 0 0 1-.4.03 1.23 1.23 0 0 1-.45-.072c-.12-.05-.195-.12-.224-.213l1.569.002v-.078a.687.687 0 0 0-.131-.42.813.813 0 0 0-.36-.27 1.488 1.488 0 0 0-.515-.092zm-17.142.057h1.15a.72.72 0 0 1 .304.054.183.183 0 0 1 .115.177c0 .08-.038.14-.115.176a.703.703 0 0 1-.304.056h-1.15zm3.837 0v.645a.359.359 0 0 1-.07.222.455.455 0 0 1-.197.146.75.75 0 0 1-.287.052.71.71 0 0 1-.279-.052.447.447 0 0 1-.192-.148.365.365 0 0 1-.07-.22v-.645h-.456v.645a.688.688 0 0 0 .123.407.781.781 0 0 0 .35.268c.15.063.327.095.53.095.204 0 .38-.032.532-.095a.786.786 0 0 0 .35-.268.687.687 0 0 0 .122-.407v-.645zm6.343.243c.14 0 .258.028.354.083a.345.345 0 0 1 .178.217h-1.09a.352.352 0 0 1 .188-.22c.1-.053.224-.08.37-.08zm2.272 0c.14 0 .258.028.355.083a.345.345 0 0 1 .177.217h-1.09a.352.352 0 0 1 .189-.22c.1-.053.223-.08.37-.08zm4.687 0c.14 0 .258.028.354.083a.345.345 0 0 1 .177.217h-1.089a.356.356 0 0 1 .188-.22c.1-.053.223-.08.37-.08zm-2.293.033a.866.866 0 0 1 .29.05.46.46 0 0 1 .203.143.331.331 0 0 1 .071.209.335.335 0 0 1-.07.211.458.458 0 0 1-.204.142.867.867 0 0 1-.312.05 1.004 1.004 0 0 1-.305-.044.52.52 0 0 1-.227-.137.313.313 0 0 1-.086-.222.305.305 0 0 1 .086-.22.541.541 0 0 1 .228-.135.981.981 0 0 1 .304-.047.866.866 0 0 1 .022 0z" }) + ] + } + ); +}); + +exports.default = SiRunkeeper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.d.ts new file mode 100644 index 000000000..8ae45086c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#001E62"; +declare const SiRunkeeper: IconType; +export { SiRunkeeper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.mjs new file mode 100644 index 000000000..7d2f785dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkeeper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#001E62"; +const SiRunkeeper = React.forwardRef(function SiRunkeeper2({ title = "Runkeeper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.429 10.42c-.52 0-1.091.318-1.45.619l.029.04c.556-.39 1.33-.644 1.544-.263.112.201-.079.607-.348.928.065-.142.022-.414-.353-.414-.624 0-1.851.826-1.851 1.672 0 .339.235.56.622.56 1.035 0 2.44-1.698 2.44-2.551 0-.301-.173-.59-.633-.59zm8.738.714v1.903h.454v-.306l.345-.229.628.535h.626l-.91-.764.891-.595h-.68l-.9.619v-1.163zm-7.464.19v1.712h.453v-.543h.98l.546.544h.58l-.589-.575a.773.773 0 0 0 .399-.196.485.485 0 0 0 .14-.357.495.495 0 0 0-.23-.433c-.152-.102-.363-.153-.634-.153zm-1.853.207c.297 0 .274.265.1.492l-.096.106c-.345.34-.664.52-.88.52v-.001c-.179 0-.265-.138-.22-.297.093-.33.69-.82 1.096-.82zm17.228.09a1.29 1.29 0 0 0-.012 0 1.251 1.251 0 0 0-.403.063.76.76 0 0 0-.292.166v-.172h-.45v1.902h.455v-.711a.778.778 0 0 0 .293.163 1.262 1.262 0 0 0 .397.061 1.29 1.29 0 0 0 .498-.092.816.816 0 0 0 .349-.26.648.648 0 0 0 0-.769.82.82 0 0 0-.349-.259 1.29 1.29 0 0 0-.486-.092zm-9.133 0a1.103 1.103 0 0 0-.011 0 .96.96 0 0 0-.44.096.71.71 0 0 0-.29.258v-.297h-.432v1.359h.454v-.568a.453.453 0 0 1 .081-.271.494.494 0 0 1 .22-.17.82.82 0 0 1 .312-.057.561.561 0 0 1 .261.06.441.441 0 0 1 .18.167.475.475 0 0 1 .065.248v.59h.456v-.663a.71.71 0 0 0-.117-.414.707.707 0 0 0-.314-.254 1.103 1.103 0 0 0-.425-.084zm6.667 0a1.487 1.487 0 0 0-.523.094.867.867 0 0 0-.364.263.594.594 0 0 0-.132.378.6.6 0 0 0 .133.385.849.849 0 0 0 .385.26c.168.061.366.092.594.091a2.573 2.573 0 0 0 .418-.03c.123-.02.256-.049.397-.085v-.33a5.593 5.593 0 0 1-.398.087 2.366 2.366 0 0 1-.4.03c-.178 0-.328-.024-.45-.073-.12-.049-.195-.12-.224-.213l1.569.003v-.078a.687.687 0 0 0-.131-.42.813.813 0 0 0-.36-.27 1.487 1.487 0 0 0-.514-.092zm7.388 0a1.465 1.465 0 0 0-.582.111c-.165.072-.279.167-.342.284v-.338h-.449v1.359h.454v-.5a.387.387 0 0 1 .144-.306.897.897 0 0 1 .357-.18 1.493 1.493 0 0 1 .418-.052zm-9.66 0a1.488 1.488 0 0 0-.524.094.87.87 0 0 0-.363.263.594.594 0 0 0-.133.378.601.601 0 0 0 .134.385.85.85 0 0 0 .385.26c.168.061.366.092.594.092a2.575 2.575 0 0 0 .418-.03c.123-.021.255-.05.397-.086v-.33a5.19 5.19 0 0 1-.398.087 2.367 2.367 0 0 1-.4.03c-.178 0-.328-.024-.45-.072-.12-.05-.195-.12-.224-.213l1.569.002v-.078a.687.687 0 0 0-.131-.42.813.813 0 0 0-.36-.27 1.488 1.488 0 0 0-.515-.092zm6.958 0a1.488 1.488 0 0 0-.523.094.87.87 0 0 0-.364.263.594.594 0 0 0-.132.378.601.601 0 0 0 .134.385.85.85 0 0 0 .385.26c.168.061.366.092.594.092a2.574 2.574 0 0 0 .418-.03c.123-.021.255-.05.397-.086v-.33c-.147.037-.28.067-.398.087a2.367 2.367 0 0 1-.4.03 1.23 1.23 0 0 1-.45-.072c-.12-.05-.195-.12-.224-.213l1.569.002v-.078a.687.687 0 0 0-.131-.42.813.813 0 0 0-.36-.27 1.488 1.488 0 0 0-.515-.092zm-17.142.057h1.15a.72.72 0 0 1 .304.054.183.183 0 0 1 .115.177c0 .08-.038.14-.115.176a.703.703 0 0 1-.304.056h-1.15zm3.837 0v.645a.359.359 0 0 1-.07.222.455.455 0 0 1-.197.146.75.75 0 0 1-.287.052.71.71 0 0 1-.279-.052.447.447 0 0 1-.192-.148.365.365 0 0 1-.07-.22v-.645h-.456v.645a.688.688 0 0 0 .123.407.781.781 0 0 0 .35.268c.15.063.327.095.53.095.204 0 .38-.032.532-.095a.786.786 0 0 0 .35-.268.687.687 0 0 0 .122-.407v-.645zm6.343.243c.14 0 .258.028.354.083a.345.345 0 0 1 .178.217h-1.09a.352.352 0 0 1 .188-.22c.1-.053.224-.08.37-.08zm2.272 0c.14 0 .258.028.355.083a.345.345 0 0 1 .177.217h-1.09a.352.352 0 0 1 .189-.22c.1-.053.223-.08.37-.08zm4.687 0c.14 0 .258.028.354.083a.345.345 0 0 1 .177.217h-1.089a.356.356 0 0 1 .188-.22c.1-.053.223-.08.37-.08zm-2.293.033a.866.866 0 0 1 .29.05.46.46 0 0 1 .203.143.331.331 0 0 1 .071.209.335.335 0 0 1-.07.211.458.458 0 0 1-.204.142.867.867 0 0 1-.312.05 1.004 1.004 0 0 1-.305-.044.52.52 0 0 1-.227-.137.313.313 0 0 1-.086-.222.305.305 0 0 1 .086-.22.541.541 0 0 1 .228-.135.981.981 0 0 1 .304-.047.866.866 0 0 1 .022 0z" }) + ] + } + ); +}); + +export { SiRunkeeper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.cjs new file mode 100644 index 000000000..c878d6b05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#491757"; +const SiRunkit = React__namespace.forwardRef(function SiRunkit2({ title = "RunKit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.97 14.797a3 3 0 01-1.47 3.02l-9 5.2a3 3 0 01-3 0l-9-5.2a3 3 0 01-1.47-3.02l1.32-7.2a3 3 0 01.98-1.82 2.96 2.96 0 01.49-.35l7.55-4.37a3.01 3.01 0 013.28.02l7.53 4.35c.1.05.19.1.28.17a3 3 0 011.19 2zm-9.54-10.77l-7.72 1.59c-.43.08-.51.64-.14.86l5.6 3.23c.23.13.5.07.63-.19l1.58-3.6.53-1.22c.16-.35-.11-.75-.5-.67z" }) + ] + } + ); +}); + +exports.default = SiRunkit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.d.ts new file mode 100644 index 000000000..fa3ddbfae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#491757"; +declare const SiRunkit: IconType; +export { SiRunkit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.mjs new file mode 100644 index 000000000..2ddd7afc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunkit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#491757"; +const SiRunkit = React.forwardRef(function SiRunkit2({ title = "RunKit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.97 14.797a3 3 0 01-1.47 3.02l-9 5.2a3 3 0 01-3 0l-9-5.2a3 3 0 01-1.47-3.02l1.32-7.2a3 3 0 01.98-1.82 2.96 2.96 0 01.49-.35l7.55-4.37a3.01 3.01 0 013.28.02l7.53 4.35c.1.05.19.1.28.17a3 3 0 011.19 2zm-9.54-10.77l-7.72 1.59c-.43.08-.51.64-.14.86l5.6 3.23c.23.13.5.07.63-.19l1.58-3.6.53-1.22c.16-.35-.11-.75-.5-.67z" }) + ] + } + ); +}); + +export { SiRunkit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.cjs new file mode 100644 index 000000000..87f3a6b0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB3729"; +const SiRunrundotit = React__namespace.forwardRef(function SiRunrundotit2({ title = "Runrun.it", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.933 10.995c.289-1.241.554-2.402.715-3.377.293-1.762.364-2.985.28-4.197h.134c2.995 0 4.642 1.256 4.642 3.364 0 2.769-2.795 4.174-5.771 4.21Zm10.006 7.318c-.544.701-1.352 1.4-2.306 1.4-1.844 0-3.433-2.808-3.71-6.624 3.514-.662 6.575-3.086 6.575-6.823C22.498 3.18 19.313 0 13.55 0 6.478 0 .471 3.84.471 8.648c0 1.696.886 3.249 2.396 3.249.874 0 1.775-.345 2.36-1.167-.4-.767-.622-1.376-.575-2.277.086-1.613 1.982-3.354 3.734-4.198.029 2.846-.402 5.014-1.105 8.305-.755 3.537-1.747 6.57-1.747 9.087 0 1.073.502 2.353 1.773 2.353 1.351 0 2.533-.789 3.302-1.663-.199-1.552-.226-3.313.25-6.255a55.23 55.23 0 0 1 .636-3.187c.43 4.649 2.332 11.045 6.867 11.045 2.742 0 5.167-1.693 5.167-3.918 0-1.012-.636-1.83-1.59-1.709" }) + ] + } + ); +}); + +exports.default = SiRunrundotit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.d.ts new file mode 100644 index 000000000..6c0f0320c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB3729"; +declare const SiRunrundotit: IconType; +export { SiRunrundotit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.mjs new file mode 100644 index 000000000..ad6e08401 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRunrundotit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB3729"; +const SiRunrundotit = React.forwardRef(function SiRunrundotit2({ title = "Runrun.it", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.933 10.995c.289-1.241.554-2.402.715-3.377.293-1.762.364-2.985.28-4.197h.134c2.995 0 4.642 1.256 4.642 3.364 0 2.769-2.795 4.174-5.771 4.21Zm10.006 7.318c-.544.701-1.352 1.4-2.306 1.4-1.844 0-3.433-2.808-3.71-6.624 3.514-.662 6.575-3.086 6.575-6.823C22.498 3.18 19.313 0 13.55 0 6.478 0 .471 3.84.471 8.648c0 1.696.886 3.249 2.396 3.249.874 0 1.775-.345 2.36-1.167-.4-.767-.622-1.376-.575-2.277.086-1.613 1.982-3.354 3.734-4.198.029 2.846-.402 5.014-1.105 8.305-.755 3.537-1.747 6.57-1.747 9.087 0 1.073.502 2.353 1.773 2.353 1.351 0 2.533-.789 3.302-1.663-.199-1.552-.226-3.313.25-6.255a55.23 55.23 0 0 1 .636-3.187c.43 4.649 2.332 11.045 6.867 11.045 2.742 0 5.167-1.693 5.167-3.918 0-1.012-.636-1.83-1.59-1.709" }) + ] + } + ); +}); + +export { SiRunrundotit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRust.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRust.cjs new file mode 100644 index 000000000..b6bd05db6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRust.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRust = React__namespace.forwardRef(function SiRust2({ title = "Rust", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.8346 11.7033l-1.0073-.6236a13.7268 13.7268 0 00-.0283-.2936l.8656-.8069a.3483.3483 0 00-.1154-.578l-1.1066-.414a8.4958 8.4958 0 00-.087-.2856l.6904-.9587a.3462.3462 0 00-.2257-.5446l-1.1663-.1894a9.3574 9.3574 0 00-.1407-.2622l.49-1.0761a.3437.3437 0 00-.0274-.3361.3486.3486 0 00-.3006-.154l-1.1845.0416a6.7444 6.7444 0 00-.1873-.2268l.2723-1.153a.3472.3472 0 00-.417-.4172l-1.1532.2724a14.0183 14.0183 0 00-.2278-.1873l.0415-1.1845a.3442.3442 0 00-.49-.328l-1.076.491c-.0872-.0476-.1742-.0952-.2623-.1407l-.1903-1.1673A.3483.3483 0 0016.256.955l-.9597.6905a8.4867 8.4867 0 00-.2855-.086l-.414-1.1066a.3483.3483 0 00-.5781-.1154l-.8069.8666a9.2936 9.2936 0 00-.2936-.0284L12.2946.1683a.3462.3462 0 00-.5892 0l-.6236 1.0073a13.7383 13.7383 0 00-.2936.0284L9.9803.3374a.3462.3462 0 00-.578.1154l-.4141 1.1065c-.0962.0274-.1903.0567-.2855.086L7.744.955a.3483.3483 0 00-.5447.2258L7.009 2.348a9.3574 9.3574 0 00-.2622.1407l-1.0762-.491a.3462.3462 0 00-.49.328l.0416 1.1845a7.9826 7.9826 0 00-.2278.1873L3.8413 3.425a.3472.3472 0 00-.4171.4171l.2713 1.1531c-.0628.075-.1255.1509-.1863.2268l-1.1845-.0415a.3462.3462 0 00-.328.49l.491 1.0761a9.167 9.167 0 00-.1407.2622l-1.1662.1894a.3483.3483 0 00-.2258.5446l.6904.9587a13.303 13.303 0 00-.087.2855l-1.1065.414a.3483.3483 0 00-.1155.5781l.8656.807a9.2936 9.2936 0 00-.0283.2935l-1.0073.6236a.3442.3442 0 000 .5892l1.0073.6236c.008.0982.0182.1964.0283.2936l-.8656.8079a.3462.3462 0 00.1155.578l1.1065.4141c.0273.0962.0567.1914.087.2855l-.6904.9587a.3452.3452 0 00.2268.5447l1.1662.1893c.0456.088.0922.1751.1408.2622l-.491 1.0762a.3462.3462 0 00.328.49l1.1834-.0415c.0618.0769.1235.1528.1873.2277l-.2713 1.1541a.3462.3462 0 00.4171.4161l1.153-.2713c.075.0638.151.1255.2279.1863l-.0415 1.1845a.3442.3442 0 00.49.327l1.0761-.49c.087.0486.1741.0951.2622.1407l.1903 1.1662a.3483.3483 0 00.5447.2268l.9587-.6904a9.299 9.299 0 00.2855.087l.414 1.1066a.3452.3452 0 00.5781.1154l.8079-.8656c.0972.0111.1954.0203.2936.0294l.6236 1.0073a.3472.3472 0 00.5892 0l.6236-1.0073c.0982-.0091.1964-.0183.2936-.0294l.8069.8656a.3483.3483 0 00.578-.1154l.4141-1.1066a8.4626 8.4626 0 00.2855-.087l.9587.6904a.3452.3452 0 00.5447-.2268l.1903-1.1662c.088-.0456.1751-.0931.2622-.1407l1.0762.49a.3472.3472 0 00.49-.327l-.0415-1.1845a6.7267 6.7267 0 00.2267-.1863l1.1531.2713a.3472.3472 0 00.4171-.416l-.2713-1.1542c.0628-.0749.1255-.1508.1863-.2278l1.1845.0415a.3442.3442 0 00.328-.49l-.49-1.076c.0475-.0872.0951-.1742.1407-.2623l1.1662-.1893a.3483.3483 0 00.2258-.5447l-.6904-.9587.087-.2855 1.1066-.414a.3462.3462 0 00.1154-.5781l-.8656-.8079c.0101-.0972.0202-.1954.0283-.2936l1.0073-.6236a.3442.3442 0 000-.5892zm-6.7413 8.3551a.7138.7138 0 01.2986-1.396.714.714 0 11-.2997 1.396zm-.3422-2.3142a.649.649 0 00-.7715.5l-.3573 1.6685c-1.1035.501-2.3285.7795-3.6193.7795a8.7368 8.7368 0 01-3.6951-.814l-.3574-1.6684a.648.648 0 00-.7714-.499l-1.473.3158a8.7216 8.7216 0 01-.7613-.898h7.1676c.081 0 .1356-.0141.1356-.088v-2.536c0-.074-.0536-.0881-.1356-.0881h-2.0966v-1.6077h2.2677c.2065 0 1.1065.0587 1.394 1.2088.0901.3533.2875 1.5044.4232 1.8729.1346.413.6833 1.2381 1.2685 1.2381h3.5716a.7492.7492 0 00.1296-.0131 8.7874 8.7874 0 01-.8119.9526zM6.8369 20.024a.714.714 0 11-.2997-1.396.714.714 0 01.2997 1.396zM4.1177 8.9972a.7137.7137 0 11-1.304.5791.7137.7137 0 011.304-.579zm-.8352 1.9813l1.5347-.6824a.65.65 0 00.33-.8585l-.3158-.7147h1.2432v5.6025H3.5669a8.7753 8.7753 0 01-.2834-3.348zm6.7343-.5437V8.7836h2.9601c.153 0 1.0792.1772 1.0792.8697 0 .575-.7107.7815-1.2948.7815zm10.7574 1.4862c0 .2187-.008.4363-.0243.651h-.9c-.09 0-.1265.0586-.1265.1477v.413c0 .973-.5487 1.1846-1.0296 1.2382-.4576.0517-.9648-.1913-1.0275-.4717-.2704-1.5186-.7198-1.8436-1.4305-2.4034.8817-.5599 1.799-1.386 1.799-2.4915 0-1.1936-.819-1.9458-1.3769-2.3153-.7825-.5163-1.6491-.6195-1.883-.6195H5.4682a8.7651 8.7651 0 014.907-2.7699l1.0974 1.151a.648.648 0 00.9182.0213l1.227-1.1743a8.7753 8.7753 0 016.0044 4.2762l-.8403 1.8982a.652.652 0 00.33.8585l1.6178.7188c.0283.2875.0425.577.0425.8717zm-9.3006-9.5993a.7128.7128 0 11.984 1.0316.7137.7137 0 01-.984-1.0316zm8.3389 6.71a.7107.7107 0 01.9395-.3625.7137.7137 0 11-.9405.3635z" }) + ] + } + ); +}); + +exports.default = SiRust; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRust.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRust.d.ts new file mode 100644 index 000000000..e0ec1cbb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRust.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRust: IconType; +export { SiRust as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRust.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRust.mjs new file mode 100644 index 000000000..a4bda8216 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRust.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRust = React.forwardRef(function SiRust2({ title = "Rust", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.8346 11.7033l-1.0073-.6236a13.7268 13.7268 0 00-.0283-.2936l.8656-.8069a.3483.3483 0 00-.1154-.578l-1.1066-.414a8.4958 8.4958 0 00-.087-.2856l.6904-.9587a.3462.3462 0 00-.2257-.5446l-1.1663-.1894a9.3574 9.3574 0 00-.1407-.2622l.49-1.0761a.3437.3437 0 00-.0274-.3361.3486.3486 0 00-.3006-.154l-1.1845.0416a6.7444 6.7444 0 00-.1873-.2268l.2723-1.153a.3472.3472 0 00-.417-.4172l-1.1532.2724a14.0183 14.0183 0 00-.2278-.1873l.0415-1.1845a.3442.3442 0 00-.49-.328l-1.076.491c-.0872-.0476-.1742-.0952-.2623-.1407l-.1903-1.1673A.3483.3483 0 0016.256.955l-.9597.6905a8.4867 8.4867 0 00-.2855-.086l-.414-1.1066a.3483.3483 0 00-.5781-.1154l-.8069.8666a9.2936 9.2936 0 00-.2936-.0284L12.2946.1683a.3462.3462 0 00-.5892 0l-.6236 1.0073a13.7383 13.7383 0 00-.2936.0284L9.9803.3374a.3462.3462 0 00-.578.1154l-.4141 1.1065c-.0962.0274-.1903.0567-.2855.086L7.744.955a.3483.3483 0 00-.5447.2258L7.009 2.348a9.3574 9.3574 0 00-.2622.1407l-1.0762-.491a.3462.3462 0 00-.49.328l.0416 1.1845a7.9826 7.9826 0 00-.2278.1873L3.8413 3.425a.3472.3472 0 00-.4171.4171l.2713 1.1531c-.0628.075-.1255.1509-.1863.2268l-1.1845-.0415a.3462.3462 0 00-.328.49l.491 1.0761a9.167 9.167 0 00-.1407.2622l-1.1662.1894a.3483.3483 0 00-.2258.5446l.6904.9587a13.303 13.303 0 00-.087.2855l-1.1065.414a.3483.3483 0 00-.1155.5781l.8656.807a9.2936 9.2936 0 00-.0283.2935l-1.0073.6236a.3442.3442 0 000 .5892l1.0073.6236c.008.0982.0182.1964.0283.2936l-.8656.8079a.3462.3462 0 00.1155.578l1.1065.4141c.0273.0962.0567.1914.087.2855l-.6904.9587a.3452.3452 0 00.2268.5447l1.1662.1893c.0456.088.0922.1751.1408.2622l-.491 1.0762a.3462.3462 0 00.328.49l1.1834-.0415c.0618.0769.1235.1528.1873.2277l-.2713 1.1541a.3462.3462 0 00.4171.4161l1.153-.2713c.075.0638.151.1255.2279.1863l-.0415 1.1845a.3442.3442 0 00.49.327l1.0761-.49c.087.0486.1741.0951.2622.1407l.1903 1.1662a.3483.3483 0 00.5447.2268l.9587-.6904a9.299 9.299 0 00.2855.087l.414 1.1066a.3452.3452 0 00.5781.1154l.8079-.8656c.0972.0111.1954.0203.2936.0294l.6236 1.0073a.3472.3472 0 00.5892 0l.6236-1.0073c.0982-.0091.1964-.0183.2936-.0294l.8069.8656a.3483.3483 0 00.578-.1154l.4141-1.1066a8.4626 8.4626 0 00.2855-.087l.9587.6904a.3452.3452 0 00.5447-.2268l.1903-1.1662c.088-.0456.1751-.0931.2622-.1407l1.0762.49a.3472.3472 0 00.49-.327l-.0415-1.1845a6.7267 6.7267 0 00.2267-.1863l1.1531.2713a.3472.3472 0 00.4171-.416l-.2713-1.1542c.0628-.0749.1255-.1508.1863-.2278l1.1845.0415a.3442.3442 0 00.328-.49l-.49-1.076c.0475-.0872.0951-.1742.1407-.2623l1.1662-.1893a.3483.3483 0 00.2258-.5447l-.6904-.9587.087-.2855 1.1066-.414a.3462.3462 0 00.1154-.5781l-.8656-.8079c.0101-.0972.0202-.1954.0283-.2936l1.0073-.6236a.3442.3442 0 000-.5892zm-6.7413 8.3551a.7138.7138 0 01.2986-1.396.714.714 0 11-.2997 1.396zm-.3422-2.3142a.649.649 0 00-.7715.5l-.3573 1.6685c-1.1035.501-2.3285.7795-3.6193.7795a8.7368 8.7368 0 01-3.6951-.814l-.3574-1.6684a.648.648 0 00-.7714-.499l-1.473.3158a8.7216 8.7216 0 01-.7613-.898h7.1676c.081 0 .1356-.0141.1356-.088v-2.536c0-.074-.0536-.0881-.1356-.0881h-2.0966v-1.6077h2.2677c.2065 0 1.1065.0587 1.394 1.2088.0901.3533.2875 1.5044.4232 1.8729.1346.413.6833 1.2381 1.2685 1.2381h3.5716a.7492.7492 0 00.1296-.0131 8.7874 8.7874 0 01-.8119.9526zM6.8369 20.024a.714.714 0 11-.2997-1.396.714.714 0 01.2997 1.396zM4.1177 8.9972a.7137.7137 0 11-1.304.5791.7137.7137 0 011.304-.579zm-.8352 1.9813l1.5347-.6824a.65.65 0 00.33-.8585l-.3158-.7147h1.2432v5.6025H3.5669a8.7753 8.7753 0 01-.2834-3.348zm6.7343-.5437V8.7836h2.9601c.153 0 1.0792.1772 1.0792.8697 0 .575-.7107.7815-1.2948.7815zm10.7574 1.4862c0 .2187-.008.4363-.0243.651h-.9c-.09 0-.1265.0586-.1265.1477v.413c0 .973-.5487 1.1846-1.0296 1.2382-.4576.0517-.9648-.1913-1.0275-.4717-.2704-1.5186-.7198-1.8436-1.4305-2.4034.8817-.5599 1.799-1.386 1.799-2.4915 0-1.1936-.819-1.9458-1.3769-2.3153-.7825-.5163-1.6491-.6195-1.883-.6195H5.4682a8.7651 8.7651 0 014.907-2.7699l1.0974 1.151a.648.648 0 00.9182.0213l1.227-1.1743a8.7753 8.7753 0 016.0044 4.2762l-.8403 1.8982a.652.652 0 00.33.8585l1.6178.7188c.0283.2875.0425.577.0425.8717zm-9.3006-9.5993a.7128.7128 0 11.984 1.0316.7137.7137 0 01-.984-1.0316zm8.3389 6.71a.7107.7107 0 01.9395-.3625.7137.7137 0 11-.9405.3635z" }) + ] + } + ); +}); + +export { SiRust as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.cjs new file mode 100644 index 000000000..f01aa70a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#024EFF"; +const SiRustdesk = React__namespace.forwardRef(function SiRustdesk2({ title = "RustDesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.6081 5.6014-1.9708 1.9588c-.347.3111-.515.8114-.3203 1.2342 1.3127 2.7471.8142 6.0223-1.3403 8.175-2.1554 2.1516-5.4343 2.6492-8.1842 1.3375-.4052-.1819-.8806-.0277-1.1926.288l-2.0031 2.0003a1.0652 1.0652 0 0 0 .192 1.6708 12.0048 12.0048 0 0 0 14.6864-1.765A11.9725 11.9725 0 0 0 22.2808 5.836a1.0652 1.0652 0 0 0-1.6727-.2345zM3.5614 3.4737A11.9716 11.9716 0 0 0 1.6967 18.137a1.0652 1.0652 0 0 0 1.6727.2345L5.33 16.4238c.3554-.3102.528-.816.3314-1.2444-1.3136-2.747-.816-6.0222 1.3394-8.1749C9.1553 4.852 12.4351 4.3543 15.185 5.666c.4006.1791.8695.0305 1.1824-.2769l2.0142-2.0123a1.0634 1.0634 0 0 0-.192-1.6708A12.0085 12.0085 0 0 0 3.519 3.5272z" }) + ] + } + ); +}); + +exports.default = SiRustdesk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.d.ts new file mode 100644 index 000000000..4f7160b8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#024EFF"; +declare const SiRustdesk: IconType; +export { SiRustdesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.mjs new file mode 100644 index 000000000..3b23dcd12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRustdesk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#024EFF"; +const SiRustdesk = React.forwardRef(function SiRustdesk2({ title = "RustDesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m20.6081 5.6014-1.9708 1.9588c-.347.3111-.515.8114-.3203 1.2342 1.3127 2.7471.8142 6.0223-1.3403 8.175-2.1554 2.1516-5.4343 2.6492-8.1842 1.3375-.4052-.1819-.8806-.0277-1.1926.288l-2.0031 2.0003a1.0652 1.0652 0 0 0 .192 1.6708 12.0048 12.0048 0 0 0 14.6864-1.765A11.9725 11.9725 0 0 0 22.2808 5.836a1.0652 1.0652 0 0 0-1.6727-.2345zM3.5614 3.4737A11.9716 11.9716 0 0 0 1.6967 18.137a1.0652 1.0652 0 0 0 1.6727.2345L5.33 16.4238c.3554-.3102.528-.816.3314-1.2444-1.3136-2.747-.816-6.0222 1.3394-8.1749C9.1553 4.852 12.4351 4.3543 15.185 5.666c.4006.1791.8695.0305 1.1824-.2769l2.0142-2.0123a1.0634 1.0634 0 0 0-.192-1.6708A12.0085 12.0085 0 0 0 3.519 3.5272z" }) + ] + } + ); +}); + +export { SiRustdesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.cjs new file mode 100644 index 000000000..d4dd51fc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8D1F89"; +const SiRxdb = React__namespace.forwardRef(function SiRxdb2({ title = "RxDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.096 3.452h1.15v-1.15h1.151v1.15h6.411v4.932H4.192V1.15h1.15V2.3h1.151V0h1.15v1.15h1.152v2.302h1.15V1.151h1.151v2.301zM4.192 14.466h15.616V9.534H4.192v4.932zm15.616 1.15H4.192v4.932h6.41v1.15h1.151v-1.15h1.151v2.301h1.15v-2.301h1.152v2.301h1.15V24h1.151v-2.301h1.15v1.15h1.151v-7.233z" }) + ] + } + ); +}); + +exports.default = SiRxdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.d.ts new file mode 100644 index 000000000..d9287e7ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8D1F89"; +declare const SiRxdb: IconType; +export { SiRxdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.mjs new file mode 100644 index 000000000..d16a05b2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRxdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8D1F89"; +const SiRxdb = React.forwardRef(function SiRxdb2({ title = "RxDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.096 3.452h1.15v-1.15h1.151v1.15h6.411v4.932H4.192V1.15h1.15V2.3h1.151V0h1.15v1.15h1.152v2.302h1.15V1.151h1.151v2.301zM4.192 14.466h15.616V9.534H4.192v4.932zm15.616 1.15H4.192v4.932h6.41v1.15h1.151v-1.15h1.151v2.301h1.15v-2.301h1.152v2.301h1.15V24h1.151v-2.301h1.15v1.15h1.151v-7.233z" }) + ] + } + ); +}); + +export { SiRxdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.cjs new file mode 100644 index 000000000..bd6238c1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#073590"; +const SiRyanair = React__namespace.forwardRef(function SiRyanair2({ title = "Ryanair", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.847.008c-.718.047-1.464.288-1.986.81-.796.996-1.692 1.891-2.787 2.488a.3.3 0 0 1-.396 0c-.1-.299.198-.497.198-.696.1-.398.2-.895 0-1.393C4.478.72 3.583.62 2.886.72c-.298 0-.596.1-.994.2-.1 0-.3.098-.3.297.1.398-.098.897-.198 1.195-.1.2 0 .298 0 .597-.1 0 0 .099-.099.099 0 .497.697.298.995.596 0 .1.1.2.1.3.099.099.098.298.098.398C1.991 5.198.6 5.694.201 6.092-.396 6.888.7 7.187.7 7.585v.198c0 .497.198.797.198 1.195.398.995.994 1.89 1.591 2.885.2.299.4.696.698 1.193.1.2.197.398.396.498 1.99 1.99 4.676 3.183 6.467 5.172l1.195 1.493c.597.796 1.193 1.592 1.69 2.487.299.398.498.896.896 1.294.299-.1.1-.497.1-.696.099 0-.1-.001 0-.1-.1-.399-.3-.796-.4-1.194-.099-.1-.098-.198-.098-.198-.1-.497-.299-.995-.498-1.492-.398-.796-.695-1.692-1.193-2.487-.497-.796-1.193-1.593-2.089-2.19a5.537 5.537 0 0 1-1.593-1.394c-.597-.795-1.094-1.69-1.591-2.586-.2-.398-.298-.894-.597-1.292-.497-.696-1.59-1.095-1.69-1.89.1-.995.497-1.791 1.094-2.587 1.094-1.492 2.984-2.29 4.974-2.19 2.09-.1 4.08.797 6.368.896 1.193.1 2.486-.1 3.58-.398l.896-.298a9.874 9.874 0 0 0 2.686-1.393c.199-.1.198-.299.198-.398-.1-.1-.198 0-.297 0-.697.1-1.195.398-1.89.398h-1.095c-1.691-.199-3.284-.596-4.776-1.094C14.129.92 12.437.322 10.546.024a4.011 4.011 0 0 0-.7-.016zm.264 4.685c-.303.056-.51.28-.659.504a18.378 18.378 0 0 0-1.492 5.671c0 .2.001.498.2.597 0 .1.198.1.198 0 .796-1.89 1.195-3.78 2.29-5.57.099-.3.496-.598.197-.996-.099-.1-.199-.2-.398-.2a.88.88 0 0 0-.336-.006zm2.922.504c-.199 0-.197.1-.297.2-1.094 1.79-1.89 3.878-2.487 5.868-.299.895-.498 1.89-.3 2.786 0 .1.101.1.2.1.1 0 .2-.1.2-.199.596-2.387 1.988-4.577 3.083-6.766.199-.597.597-1.093.497-1.79-.199-.198-.597-.2-.896-.2zm6.568 0c-.398.1-.697.498-.797.796-.994 2.487-2.387 4.775-3.482 7.163-.795 2.188-1.79 4.279-1.89 6.666 0 .2 0 .398.2.597.1 0 .198.1.198 0 .299-.498.398-1.096.597-1.693.696-1.89 1.392-3.78 2.487-5.57 1.293-2.09 2.886-4.08 3.682-6.368.1-.398.298-.696.1-1.094-.2-.298-.597-.398-1.095-.497zm-3.284.099c-.398.1-.597.399-.796.697-.498 1.095-1.094 1.99-1.592 3.084-1.194 2.189-1.79 4.477-2.089 6.964 0 .299 0 .696.1.995.099 0 .299 0 .299-.1.199-.696.397-1.392.596-1.989.896-3.084 2.986-5.571 4.279-8.456.1-.2.298-.697 0-.896-.199-.1-.498-.2-.797-.3z" }) + ] + } + ); +}); + +exports.default = SiRyanair; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.d.ts new file mode 100644 index 000000000..677f8dfb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#073590"; +declare const SiRyanair: IconType; +export { SiRyanair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.mjs new file mode 100644 index 000000000..0eac7a1eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRyanair.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#073590"; +const SiRyanair = React.forwardRef(function SiRyanair2({ title = "Ryanair", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.847.008c-.718.047-1.464.288-1.986.81-.796.996-1.692 1.891-2.787 2.488a.3.3 0 0 1-.396 0c-.1-.299.198-.497.198-.696.1-.398.2-.895 0-1.393C4.478.72 3.583.62 2.886.72c-.298 0-.596.1-.994.2-.1 0-.3.098-.3.297.1.398-.098.897-.198 1.195-.1.2 0 .298 0 .597-.1 0 0 .099-.099.099 0 .497.697.298.995.596 0 .1.1.2.1.3.099.099.098.298.098.398C1.991 5.198.6 5.694.201 6.092-.396 6.888.7 7.187.7 7.585v.198c0 .497.198.797.198 1.195.398.995.994 1.89 1.591 2.885.2.299.4.696.698 1.193.1.2.197.398.396.498 1.99 1.99 4.676 3.183 6.467 5.172l1.195 1.493c.597.796 1.193 1.592 1.69 2.487.299.398.498.896.896 1.294.299-.1.1-.497.1-.696.099 0-.1-.001 0-.1-.1-.399-.3-.796-.4-1.194-.099-.1-.098-.198-.098-.198-.1-.497-.299-.995-.498-1.492-.398-.796-.695-1.692-1.193-2.487-.497-.796-1.193-1.593-2.089-2.19a5.537 5.537 0 0 1-1.593-1.394c-.597-.795-1.094-1.69-1.591-2.586-.2-.398-.298-.894-.597-1.292-.497-.696-1.59-1.095-1.69-1.89.1-.995.497-1.791 1.094-2.587 1.094-1.492 2.984-2.29 4.974-2.19 2.09-.1 4.08.797 6.368.896 1.193.1 2.486-.1 3.58-.398l.896-.298a9.874 9.874 0 0 0 2.686-1.393c.199-.1.198-.299.198-.398-.1-.1-.198 0-.297 0-.697.1-1.195.398-1.89.398h-1.095c-1.691-.199-3.284-.596-4.776-1.094C14.129.92 12.437.322 10.546.024a4.011 4.011 0 0 0-.7-.016zm.264 4.685c-.303.056-.51.28-.659.504a18.378 18.378 0 0 0-1.492 5.671c0 .2.001.498.2.597 0 .1.198.1.198 0 .796-1.89 1.195-3.78 2.29-5.57.099-.3.496-.598.197-.996-.099-.1-.199-.2-.398-.2a.88.88 0 0 0-.336-.006zm2.922.504c-.199 0-.197.1-.297.2-1.094 1.79-1.89 3.878-2.487 5.868-.299.895-.498 1.89-.3 2.786 0 .1.101.1.2.1.1 0 .2-.1.2-.199.596-2.387 1.988-4.577 3.083-6.766.199-.597.597-1.093.497-1.79-.199-.198-.597-.2-.896-.2zm6.568 0c-.398.1-.697.498-.797.796-.994 2.487-2.387 4.775-3.482 7.163-.795 2.188-1.79 4.279-1.89 6.666 0 .2 0 .398.2.597.1 0 .198.1.198 0 .299-.498.398-1.096.597-1.693.696-1.89 1.392-3.78 2.487-5.57 1.293-2.09 2.886-4.08 3.682-6.368.1-.398.298-.696.1-1.094-.2-.298-.597-.398-1.095-.497zm-3.284.099c-.398.1-.597.399-.796.697-.498 1.095-1.094 1.99-1.592 3.084-1.194 2.189-1.79 4.477-2.089 6.964 0 .299 0 .696.1.995.099 0 .299 0 .299-.1.199-.696.397-1.392.596-1.989.896-3.084 2.986-5.571 4.279-8.456.1-.2.298-.697 0-.896-.199-.1-.498-.2-.797-.3z" }) + ] + } + ); +}); + +export { SiRyanair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRye.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRye.cjs new file mode 100644 index 000000000..222e5d49e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRye.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiRye = React__namespace.forwardRef(function SiRye2({ title = "Rye", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.372 0 0 5.372 0 11.999c0 5.422 3.597 10.003 8.536 11.49.011-.186.028-.406.049-.669.026-.316-.142-.784-.382-.963-2.67-1.997-3.534-4.125-2.906-7.394a.197.197 0 0 1 .335-.101c.72.747 1.234 1.218 1.988 2.094 1.121 1.305 1.557 2.839 1.42 4.59.123-.531.3-1.057.358-1.596.242-2.222.775-4.326 2.426-5.958.425-.42.939-.823 1.488-1.033 1.448-.552 2.953-.965 3.931-2.339.08.049-.451 1.869-.541 2.263-.645 2.193-.42 2.3-1.186 4.45-.506 1.417-1.596 2.404-3.125 2.798-1.504.386-2.349 1.4-2.56 2.898-.077.558-.123.947-.149 1.246.75.147 1.525.225 2.318.225 6.628 0 12-5.372 12-11.999C24 5.374 18.629 0 12 0Zm-1.158 13.463a1.425 1.425 0 0 1-.306.689c-.578.658-1.105 1.844-1.418 3.425-.567-1.75-2.556-3.304-3.273-4.606-.247-.448-.051-1.963.281-3.223.607-1.782.637-2.096.981-3.594 1.689 1.365 2.041 2.267 2.954 3.879.456.804.957 1.904.782 3.43zm4.227-2.272c-1.586.647-2.565 1.018-3.576 1.82.252-1.354-.602-2.944-1.137-4.146-.079-.177.948-1.858 1.13-2.14 1.205-1.498 1.17-1.767 2.83-2.38 1.354-.5 2.719-.97 4.065-1.449-.24 3.291-.805 7.273-3.312 8.295z" }) + ] + } + ); +}); + +exports.default = SiRye; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRye.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiRye.d.ts new file mode 100644 index 000000000..70ebdb5dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRye.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiRye: IconType; +export { SiRye as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiRye.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiRye.mjs new file mode 100644 index 000000000..64a7c4d13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiRye.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiRye = React.forwardRef(function SiRye2({ title = "Rye", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.372 0 0 5.372 0 11.999c0 5.422 3.597 10.003 8.536 11.49.011-.186.028-.406.049-.669.026-.316-.142-.784-.382-.963-2.67-1.997-3.534-4.125-2.906-7.394a.197.197 0 0 1 .335-.101c.72.747 1.234 1.218 1.988 2.094 1.121 1.305 1.557 2.839 1.42 4.59.123-.531.3-1.057.358-1.596.242-2.222.775-4.326 2.426-5.958.425-.42.939-.823 1.488-1.033 1.448-.552 2.953-.965 3.931-2.339.08.049-.451 1.869-.541 2.263-.645 2.193-.42 2.3-1.186 4.45-.506 1.417-1.596 2.404-3.125 2.798-1.504.386-2.349 1.4-2.56 2.898-.077.558-.123.947-.149 1.246.75.147 1.525.225 2.318.225 6.628 0 12-5.372 12-11.999C24 5.374 18.629 0 12 0Zm-1.158 13.463a1.425 1.425 0 0 1-.306.689c-.578.658-1.105 1.844-1.418 3.425-.567-1.75-2.556-3.304-3.273-4.606-.247-.448-.051-1.963.281-3.223.607-1.782.637-2.096.981-3.594 1.689 1.365 2.041 2.267 2.954 3.879.456.804.957 1.904.782 3.43zm4.227-2.272c-1.586.647-2.565 1.018-3.576 1.82.252-1.354-.602-2.944-1.137-4.146-.079-.177.948-1.858 1.13-2.14 1.205-1.498 1.17-1.767 2.83-2.38 1.354-.5 2.719-.97 4.065-1.449-.24 3.291-.805 7.273-3.312 8.295z" }) + ] + } + ); +}); + +export { SiRye as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.cjs new file mode 100644 index 000000000..1bda9d304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C4D600"; +const SiS7airlines = React__namespace.forwardRef(function SiS7airlines2({ title = "S7 Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.004 0C5.375 0 0 5.373 0 12.002 0 18.632 5.375 24 12.004 24 18.63 24 24 18.632 24 12.002 24 5.373 18.631 0 12.004 0zm-.875 5.739h1.705L12 7.825h-1.168c-1.255 0-2.061.004-2.496.148-.423.132-.735.29-.906.54-.157.202-.21.477-.21.716 0 .25.027.487.275.806.305.305.809.699 1.797 1.307 1.97 1.229 2.552 2.204 2.552 3.487 0 2.09-1.97 4.084-5.272 4.084-.992 0-2.377-.146-2.961-.332l-.307-.09c.12-.397.512-1.493.685-1.956l.31.078c.648.16 1.664.252 2.338.252 1.932 0 2.682-.872 2.682-1.638 0-.7-.382-1.084-2.299-2.246-1.796-1.11-2.417-2.076-2.417-3.409 0-1.6 1.03-2.818 2.522-3.399.888-.33 2.114-.434 4.004-.434zm2.959 0h5.871c.276 0 .329.195.223.407-.384.952-4.007 10.028-4.007 10.028h-2.421s2.861-7.291 3.336-8.377c-.33 0-.581.028-1.89.028h-1.947Z" }) + ] + } + ); +}); + +exports.default = SiS7airlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.d.ts new file mode 100644 index 000000000..91cad0abe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C4D600"; +declare const SiS7airlines: IconType; +export { SiS7airlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.mjs new file mode 100644 index 000000000..aa48de9e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiS7airlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C4D600"; +const SiS7airlines = React.forwardRef(function SiS7airlines2({ title = "S7 Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.004 0C5.375 0 0 5.373 0 12.002 0 18.632 5.375 24 12.004 24 18.63 24 24 18.632 24 12.002 24 5.373 18.631 0 12.004 0zm-.875 5.739h1.705L12 7.825h-1.168c-1.255 0-2.061.004-2.496.148-.423.132-.735.29-.906.54-.157.202-.21.477-.21.716 0 .25.027.487.275.806.305.305.809.699 1.797 1.307 1.97 1.229 2.552 2.204 2.552 3.487 0 2.09-1.97 4.084-5.272 4.084-.992 0-2.377-.146-2.961-.332l-.307-.09c.12-.397.512-1.493.685-1.956l.31.078c.648.16 1.664.252 2.338.252 1.932 0 2.682-.872 2.682-1.638 0-.7-.382-1.084-2.299-2.246-1.796-1.11-2.417-2.076-2.417-3.409 0-1.6 1.03-2.818 2.522-3.399.888-.33 2.114-.434 4.004-.434zm2.959 0h5.871c.276 0 .329.195.223.407-.384.952-4.007 10.028-4.007 10.028h-2.421s2.861-7.291 3.336-8.377c-.33 0-.581.028-1.89.028h-1.947Z" }) + ] + } + ); +}); + +export { SiS7airlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.cjs new file mode 100644 index 000000000..8c75aacc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004B93"; +const SiSabanci = React__namespace.forwardRef(function SiSabanci2({ title = "Sabanci", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.3877 8.88a15.8031 15.8031 0 0 0-1.5366.1053c-1.1437.1457-1.5395.6461-1.5395 1.8724 0 .9713.2576 1.44.9035 1.661.3132.1092.8498.155 1.7434.155h1.6998a8.7053 8.7053 0 0 1 .923.0194c.3787.0365.5629.2113.5629.5246 0 .5463-.2429.6-2.4283.6a8.499 8.499 0 0 1-1.1724-.0631c-.2768-.0656-.34-.1751-.3595-.6365H2.3386v.3595c0 .8766.2959 1.3186.988 1.4935.4516.1214 1.0785.1579 2.4723.1579a23.1753 23.1753 0 0 0 2.5834-.0925c1.1704-.1263 1.6125-.6312 1.6125-1.8672 0-.6386-.129-1.1-.3766-1.3768-.2865-.3302-.6651-.442-1.5879-.4856-.4978-.0195-.8668-.0294-.9713-.0294H5.308a3.181 3.181 0 0 1-.7284-.036.471.471 0 0 1-.4127-.4857c0-.34.1652-.4716.6265-.508.2866-.017 1.117-.046 1.6998-.046 1.2652 0 1.44.0752 1.44.6095h1.804c0-1.0612-.2037-1.4862-.8204-1.717-.4711-.1748-.9595-.211-2.7589-.211a15.8031 15.8031 0 0 0-.7702-.0033Zm11.2217.0446-3.4603 6.1508h2.1224l.59-1.0975h3.9677l.6071 1.0975h2.0493l-3.3678-6.1508Zm1.236 1.3185 1.3379 2.4553H16.534ZM0 12.0012a6.1532 6.1532 0 0 1 11.998-1.928 6.1556 6.1556 0 1 1 0 3.8536A6.1532 6.1532 0 0 1 0 12.0012Z" }) + ] + } + ); +}); + +exports.default = SiSabanci; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.d.ts new file mode 100644 index 000000000..3a4a53346 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004B93"; +declare const SiSabanci: IconType; +export { SiSabanci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.mjs new file mode 100644 index 000000000..4a7974d88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSabanci.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004B93"; +const SiSabanci = React.forwardRef(function SiSabanci2({ title = "Sabanci", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.3877 8.88a15.8031 15.8031 0 0 0-1.5366.1053c-1.1437.1457-1.5395.6461-1.5395 1.8724 0 .9713.2576 1.44.9035 1.661.3132.1092.8498.155 1.7434.155h1.6998a8.7053 8.7053 0 0 1 .923.0194c.3787.0365.5629.2113.5629.5246 0 .5463-.2429.6-2.4283.6a8.499 8.499 0 0 1-1.1724-.0631c-.2768-.0656-.34-.1751-.3595-.6365H2.3386v.3595c0 .8766.2959 1.3186.988 1.4935.4516.1214 1.0785.1579 2.4723.1579a23.1753 23.1753 0 0 0 2.5834-.0925c1.1704-.1263 1.6125-.6312 1.6125-1.8672 0-.6386-.129-1.1-.3766-1.3768-.2865-.3302-.6651-.442-1.5879-.4856-.4978-.0195-.8668-.0294-.9713-.0294H5.308a3.181 3.181 0 0 1-.7284-.036.471.471 0 0 1-.4127-.4857c0-.34.1652-.4716.6265-.508.2866-.017 1.117-.046 1.6998-.046 1.2652 0 1.44.0752 1.44.6095h1.804c0-1.0612-.2037-1.4862-.8204-1.717-.4711-.1748-.9595-.211-2.7589-.211a15.8031 15.8031 0 0 0-.7702-.0033Zm11.2217.0446-3.4603 6.1508h2.1224l.59-1.0975h3.9677l.6071 1.0975h2.0493l-3.3678-6.1508Zm1.236 1.3185 1.3379 2.4553H16.534ZM0 12.0012a6.1532 6.1532 0 0 1 11.998-1.928 6.1556 6.1556 0 1 1 0 3.8536A6.1532 6.1532 0 0 1 0 12.0012Z" }) + ] + } + ); +}); + +export { SiSabanci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.cjs new file mode 100644 index 000000000..1fee70643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006CFF"; +const SiSafari = React__namespace.forwardRef(function SiSafari2({ title = "Safari", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm-.004.953h.006c.063 0 .113.05.113.113v1.842c0 .063-.05.113-.113.113h-.006a.112.112 0 0 1-.113-.113V1.066c0-.063.05-.113.113-.113zm-.941.041c.056.001.104.046.11.104l.077.918a.112.112 0 0 1-.101.12h-.01a.11.11 0 0 1-.12-.1l-.08-.919a.112.112 0 0 1 .102-.12h.01l.012-.003zm1.892 0H12.965a.113.113 0 0 1 .103.121l-.08.92a.111.111 0 0 1-.12.102h-.009a.111.111 0 0 1-.101-.121l.078-.92a.112.112 0 0 1 .111-.102zm-2.838.123a.11.11 0 0 1 .106.092l.32 1.818c.01.06-.03.119-.09.13l-.01.001a.111.111 0 0 1-.128-.09l-.32-1.818a.111.111 0 0 1 .09-.129l.01-.002a.103.103 0 0 1 .022-.002zm3.784.002h.021l.008.002c.061.01.102.07.092.131l-.32 1.814c-.011.062-.07.101-.132.09h-.005a.113.113 0 0 1-.092-.13l.32-1.815a.111.111 0 0 1 .108-.092zm-4.715.203c.048.002.09.035.103.084l.239.893a.112.112 0 0 1-.079.139l-.005.001a.114.114 0 0 1-.14-.08l-.237-.894a.11.11 0 0 1 .078-.137l.006-.002a.123.123 0 0 1 .035-.004zm5.644 0a.11.11 0 0 1 .033.004l.006.002c.06.016.097.079.08.139l-.24.892a.112.112 0 0 1-.137.08l-.005-.002a.114.114 0 0 1-.08-.138l.24-.893a.112.112 0 0 1 .103-.084zm-6.562.285a.11.11 0 0 1 .107.073L9 3.42a.107.107 0 0 1-.064.139l-.012.005a.11.11 0 0 1-.14-.066L8.15 1.76a.11.11 0 0 1 .065-.14l.014-.005a.106.106 0 0 1 .03-.008zm7.469.002c.014 0 .028.001.042.006l.012.006c.057.02.087.082.067.139l-.633 1.738a.11.11 0 0 1-.14.066l-.013-.003A.11.11 0 0 1 15 3.42l.633-1.738a.108.108 0 0 1 .096-.073zm-8.352.366a.112.112 0 0 1 .105.064l.393.838a.112.112 0 0 1-.055.148l-.008.004a.11.11 0 0 1-.146-.054l-.395-.838a.112.112 0 0 1 .055-.149l.008-.004a.11.11 0 0 1 .043-.01zm9.246 0a.11.11 0 0 1 .043.01l.006.003a.11.11 0 0 1 .053.149l-.391.838a.112.112 0 0 1-.148.054l-.006-.002a.112.112 0 0 1-.055-.148l.393-.84a.112.112 0 0 1 .105-.064zm-10.092.44c.04-.002.08.018.102.056l.922 1.597a.113.113 0 0 1-.041.155l-.006.002a.113.113 0 0 1-.154-.041l-.922-1.598a.113.113 0 0 1 .04-.154l.007-.002a.11.11 0 0 1 .052-.016zm10.94.001c.018 0 .035.004.052.014l.004.002a.114.114 0 0 1 .041.156l-.923 1.596a.114.114 0 0 1-.157.04l-.004-.001a.112.112 0 0 1-.04-.155l.925-1.595a.113.113 0 0 1 .102-.057zM5.729 2.93a.11.11 0 0 1 .093.047l.532.753a.114.114 0 0 1-.028.159l-.004.002a.114.114 0 0 1-.158-.028l-.531-.752a.114.114 0 0 1 .027-.158l.006-.002a.113.113 0 0 1 .063-.021zm12.542 0a.11.11 0 0 1 .063.02l.006.003a.112.112 0 0 1 .027.156l-.531.756a.112.112 0 0 1-.156.028l-.006-.004a.112.112 0 0 1-.028-.157l.532-.755a.11.11 0 0 1 .093-.047zm.747.578a.11.11 0 0 1 .08.027l.006.004c.047.04.053.111.013.158L17.932 5.11a.11.11 0 0 1-.157.016l-.005-.006a.11.11 0 0 1-.014-.156l1.185-1.414a.114.114 0 0 1 .077-.041zM4.984 3.51a.11.11 0 0 1 .077.039L6.244 4.96a.112.112 0 0 1-.014.158l-.003.004a.112.112 0 0 1-.159-.014L4.883 3.697a.112.112 0 0 1 .013-.158l.006-.004a.111.111 0 0 1 .082-.025zm-.714.64c.027 0 .055.01.076.032l.658.66a.107.107 0 0 1 0 .152l-.01.01a.107.107 0 0 1-.152 0l-.66-.658a.11.11 0 0 1 0-.155l.01-.01a.111.111 0 0 1 .078-.03zm15.462 0c.028 0 .055.01.077.032l.007.007a.109.109 0 0 1 0 .155l-.658.66a.109.109 0 0 1-.154 0l-.008-.008a.109.109 0 0 1 0-.154l.658-.66a.11.11 0 0 1 .078-.032zm.707.66c.038 0 .071.02.092.075a.112.112 0 0 1-.023.117l-7.606 8.08c-3.084 2.024-6.149 4.04-9.222 6.05-.078.051-.17.082-.211-.028a.112.112 0 0 1 .023-.118l7.594-8.08c3.084-2.023 6.161-4.039 9.234-6.049a.247.247 0 0 1 .12-.046zm-16.824.045a.109.109 0 0 1 .08.026l1.416 1.187a.11.11 0 0 1 .014.157l-.006.005a.11.11 0 0 1-.156.014L3.549 5.057a.109.109 0 0 1-.014-.155l.006-.007a.108.108 0 0 1 .074-.04zm17.336.756c.036 0 .072.017.094.05l.004.003a.114.114 0 0 1-.028.158l-.753.53a.112.112 0 0 1-.157-.028l-.004-.004a.114.114 0 0 1 .028-.158l.754-.53a.113.113 0 0 1 .062-.02zm-17.904.002c.02 0 .042.007.06.02l.76.531c.05.035.06.103.026.152l-.006.01a.109.109 0 0 1-.153.026l-.76-.532a.109.109 0 0 1-.025-.152l.006-.01a.108.108 0 0 1 .092-.045zm-.512.803c.018 0 .036.006.053.016l1.596.923a.111.111 0 0 1 .04.153l-.003.006a.111.111 0 0 1-.153.04L2.473 6.63a.111.111 0 0 1-.041-.152l.004-.006a.11.11 0 0 1 .1-.055zm18.932 0a.11.11 0 0 1 .1.055l.001.004a.113.113 0 0 1-.04.154l-1.596.926a.113.113 0 0 1-.155-.041l-.002-.004a.113.113 0 0 1 .041-.155l1.596-.925a.115.115 0 0 1 .055-.014zm-19.373.846c.014 0 .029.003.043.01l.838.392a.11.11 0 0 1 .052.147l-.004.01a.11.11 0 0 1-.146.052l-.838-.393a.11.11 0 0 1-.053-.146l.004-.01a.109.109 0 0 1 .104-.062zm19.81.002a.11.11 0 0 1 .106.062l.002.008a.11.11 0 0 1-.053.146l-.838.393a.11.11 0 0 1-.146-.053l-.004-.008a.11.11 0 0 1 .052-.146l.838-.393a.11.11 0 0 1 .043-.01zm-20.183.88c.014 0 .028.001.043.006l1.732.631a.112.112 0 0 1 .067.145l-.002.006a.11.11 0 0 1-.143.066l-1.732-.63a.113.113 0 0 1-.069-.145l.002-.004a.115.115 0 0 1 .102-.074zm20.549 0a.113.113 0 0 1 .11.075l.003.004a.115.115 0 0 1-.069.146l-1.732.629a.112.112 0 0 1-.145-.066l-.001-.006a.113.113 0 0 1 .068-.145l1.732-.63a.11.11 0 0 1 .034-.006zm-20.836.909a.11.11 0 0 1 .033.004l.892.24c.06.016.096.077.08.137l-.002.007a.11.11 0 0 1-.136.079l-.895-.239a.113.113 0 0 1-.078-.138l.002-.006a.113.113 0 0 1 .104-.084zm21.13.002a.115.115 0 0 1 .106.084v.004a.112.112 0 0 1-.078.138l-.893.239a.112.112 0 0 1-.138-.079v-.005a.112.112 0 0 1 .078-.14l.892-.237a.11.11 0 0 1 .033-.004zm-21.335.93.023.001 1.814.323c.062.01.101.069.09.13v.006a.111.111 0 0 1-.13.09l-1.815-.322a.113.113 0 0 1-.092-.131l.002-.006a.11.11 0 0 1 .108-.092zm21.519.001h.022c.052.002.1.038.109.092v.006c.01.062-.03.12-.092.13l-1.814.321a.113.113 0 0 1-.131-.092v-.005a.113.113 0 0 1 .092-.131l1.814-.32zm-21.644.944h.011l.922.084a.11.11 0 0 1 .102.119l-.002.01a.11.11 0 0 1-.121.1l-.922-.083a.11.11 0 0 1-.1-.12v-.009a.111.111 0 0 1 .11-.101zm21.779.002h.012c.056 0 .106.043.11.101v.008a.111.111 0 0 1-.1.121l-.923.08a.111.111 0 0 1-.12-.101v-.008a.111.111 0 0 1 .1-.121l.92-.08zm-11.82.73L6.091 16.95c2.02-1.324 4.039-2.646 6.066-3.976l-1.095-1.31zm11.87.219c.063 0 .114.05.114.113v.004c0 .063-.05.113-.113.113l-1.844.004a.113.113 0 0 1-.113-.113v-.004c0-.063.05-.113.113-.113l1.844-.004zm-21.869.002h1.844c.062 0 .112.05.112.111v.008c0 .062-.05.111-.112.111H1.064a.111.111 0 0 1-.11-.111v-.008c0-.061.049-.111.11-.111zm.952.875h.011a.11.11 0 0 1 .11.101v.006a.111.111 0 0 1-.102.121l-.922.08a.11.11 0 0 1-.119-.101l-.002-.006a.111.111 0 0 1 .102-.121l.922-.08zm19.955 0h.011l.922.08a.11.11 0 0 1 .102.119v.008a.112.112 0 0 1-.121.101l-.922-.08a.11.11 0 0 1-.102-.119v-.008a.111.111 0 0 1 .11-.101zm-18.924.705c.053.001.098.04.107.094l.002.004c.011.061-.03.12-.092.13l-1.812.32a.113.113 0 0 1-.13-.091v-.004a.115.115 0 0 1 .09-.133l1.811-.318a.117.117 0 0 1 .024-.002zm17.902 0c.008 0 .016 0 .024.002l1.816.32c.061.011.1.07.09.131v.004a.113.113 0 0 1-.131.092l-1.816-.32a.112.112 0 0 1-.09-.131v-.004a.113.113 0 0 1 .107-.094zM2.332 14.477a.11.11 0 0 1 .104.082l.002.005c.016.06-.02.121-.08.137l-.891.24a.112.112 0 0 1-.137-.08l-.002-.006a.112.112 0 0 1 .08-.136l.89-.239a.112.112 0 0 1 .034-.003zm19.332 0c.011 0 .024 0 .035.003l.893.239c.06.016.096.077.08.136l-.002.006a.111.111 0 0 1-.137.078l-.894-.238a.111.111 0 0 1-.078-.137l.002-.005a.109.109 0 0 1 .101-.082zm-18.213.517a.11.11 0 0 1 .11.074l.002.004a.112.112 0 0 1-.067.145l-1.732.63a.113.113 0 0 1-.145-.068l-.002-.004a.113.113 0 0 1 .069-.144L3.418 15a.11.11 0 0 1 .033-.006zm17.086 0c.015 0 .029 0 .043.006l1.734.63a.111.111 0 0 1 .067.143l-.002.008a.111.111 0 0 1-.143.067l-1.734-.631a.111.111 0 0 1-.066-.143l.002-.008a.111.111 0 0 1 .1-.072zM2.92 16.117a.109.109 0 0 1 .103.063l.004.01a.108.108 0 0 1-.052.144l-.838.393a.11.11 0 0 1-.147-.055l-.004-.008a.11.11 0 0 1 .053-.146l.838-.391a.112.112 0 0 1 .043-.01zm18.158 0a.11.11 0 0 1 .043.01l.838.39c.056.027.08.093.055.149l-.002.004a.112.112 0 0 1-.149.055l-.838-.391a.112.112 0 0 1-.054-.148l.002-.004a.112.112 0 0 1 .105-.065zm-16.957.315c.04-.001.078.02.1.056l.004.004a.11.11 0 0 1-.041.153l-1.596.921a.113.113 0 0 1-.154-.04l-.002-.005a.113.113 0 0 1 .04-.154l1.596-.922a.109.109 0 0 1 .053-.013zm15.756 0c.018 0 .036.004.053.013l1.597.924a.11.11 0 0 1 .041.152l-.002.004a.11.11 0 0 1-.152.041l-1.598-.921a.113.113 0 0 1-.04-.155l.001-.002a.111.111 0 0 1 .1-.056zm.328 1.193a.11.11 0 0 1 .06.021l.758.534c.05.035.061.102.026.152l-.004.008a.111.111 0 0 1-.154.027l-.756-.535a.109.109 0 0 1-.028-.152l.006-.008a.11.11 0 0 1 .092-.047zm-16.412.002c.035 0 .072.016.094.047l.004.008a.109.109 0 0 1-.028.152l-.756.531a.108.108 0 0 1-.152-.025l-.006-.008a.109.109 0 0 1 .028-.152l.755-.534a.107.107 0 0 1 .061-.019zm15.162.102a.112.112 0 0 1 .082.025l1.414 1.187a.11.11 0 0 1 .014.157l-.004.004a.113.113 0 0 1-.158.013L18.89 17.93a.11.11 0 0 1-.014-.157l.004-.005a.108.108 0 0 1 .074-.04zm-12.812 1.12a.11.11 0 0 1 .08.026l.007.008a.11.11 0 0 1 .014.154L5.06 20.451a.11.11 0 0 1-.155.012l-.008-.006a.11.11 0 0 1-.013-.154l1.185-1.414a.11.11 0 0 1 .075-.04zm11.703 0c.032 0 .065.015.088.042l1.181 1.41c.04.048.035.12-.013.16l-.002.002a.114.114 0 0 1-.16-.014l-1.182-1.41a.114.114 0 0 1 .013-.16l.002-.002a.115.115 0 0 1 .073-.027zm-12.928.114c.027 0 .054.01.074.031l.014.012a.107.107 0 0 1 0 .15l-.662.66a.105.105 0 0 1-.149 0l-.011-.011a.105.105 0 0 1 0-.149l.66-.662a.105.105 0 0 1 .074-.031zm14.164 0c.027 0 .053.01.074.031l.66.662a.106.106 0 0 1 0 .15l-.011.012a.106.106 0 0 1-.15-.002l-.66-.66a.106.106 0 0 1 .001-.15l.01-.012a.108.108 0 0 1 .076-.031zm-11.627.797c.018 0 .034.006.05.015l.007.004a.11.11 0 0 1 .04.15l-.921 1.598a.11.11 0 0 1-.15.041l-.008-.004a.111.111 0 0 1-.04-.152l.922-1.596a.113.113 0 0 1 .1-.056zm9.088.002a.11.11 0 0 1 .1.054l.925 1.596a.113.113 0 0 1-.04.154h-.005a.11.11 0 0 1-.152-.039l-.926-1.595a.113.113 0 0 1 .041-.155l.004-.002a.108.108 0 0 1 .053-.013zm-10.285.324c.021 0 .043.008.062.021l.004.002c.051.036.063.106.028.157l-.53.755a.112.112 0 0 1-.156.028l-.004-.002a.112.112 0 0 1-.027-.156l.53-.756a.113.113 0 0 1 .093-.05zm11.484.002c.036 0 .072.015.094.047l.53.756c.035.05.023.12-.028.156l-.004.002a.112.112 0 0 1-.156-.028l-.53-.755a.112.112 0 0 1 .028-.157l.004-.002a.112.112 0 0 1 .062-.02zm-8.863.342a.11.11 0 0 1 .043.006l.012.005c.056.02.084.081.064.137l-.633 1.74a.105.105 0 0 1-.136.063l-.014-.004a.106.106 0 0 1-.065-.137l.633-1.74a.107.107 0 0 1 .096-.07zm6.232 0a.107.107 0 0 1 .106.07l.633 1.738a.107.107 0 0 1-.065.137l-.015.006a.107.107 0 0 1-.137-.065L15 20.578a.107.107 0 0 1 .064-.137l.014-.005a.117.117 0 0 1 .033-.006zm-4.695.41c.008 0 .014 0 .021.002l.006.002c.062.01.101.067.09.129l-.318 1.812a.113.113 0 0 1-.131.092l-.004-.002a.111.111 0 0 1-.092-.129l.32-1.812a.113.113 0 0 1 .108-.094zm3.146.002c.008-.002.015 0 .022 0a.111.111 0 0 1 .107.092l.32 1.812c.012.061-.03.12-.091.131l-.004.002a.113.113 0 0 1-.13-.092l-.321-1.812a.113.113 0 0 1 .092-.131l.005-.002zm-5.79.119a.11.11 0 0 1 .042.01l.004.002a.114.114 0 0 1 .055.15l-.393.834a.112.112 0 0 1-.148.055l-.004-.002a.112.112 0 0 1-.055-.149l.393-.836a.112.112 0 0 1 .105-.064zm8.458 0a.108.108 0 0 1 .104.062l.39.84a.11.11 0 0 1-.052.147l-.008.004a.11.11 0 0 1-.146-.055l-.391-.838a.11.11 0 0 1 .053-.146l.008-.004a.11.11 0 0 1 .042-.01zm-4.236.018H12c.063 0 .115.05.115.113l.002 1.84c0 .063-.05.113-.113.113h-.006a.113.113 0 0 1-.113-.113l-.004-1.838c0-.063.05-.115.113-.115zm-2.592.578c.011 0 .022 0 .034.004l.005.002c.06.016.095.077.079.136l-.24.893a.111.111 0 0 1-.137.078l-.006-.002a.111.111 0 0 1-.078-.137l.24-.89a.113.113 0 0 1 .103-.084zm5.196.002a.11.11 0 0 1 .103.082l.24.89a.11.11 0 0 1-.078.137l-.006.002a.11.11 0 0 1-.136-.078l-.24-.89a.11.11 0 0 1 .078-.138l.005-.002a.112.112 0 0 1 .034-.003zm-3.475.302h.01l.008.002c.061.006.107.06.101.121l-.08.92a.112.112 0 0 1-.121.102h-.008a.11.11 0 0 1-.1-.121l.08-.922a.111.111 0 0 1 .11-.102zm1.736 0h.02a.11.11 0 0 1 .107.102l.08.924a.11.11 0 0 1-.101.119l-.008.002a.11.11 0 0 1-.12-.102l-.08-.924a.112.112 0 0 1 .102-.12z" }) + ] + } + ); +}); + +exports.default = SiSafari; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.d.ts new file mode 100644 index 000000000..525f65fc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006CFF"; +declare const SiSafari: IconType; +export { SiSafari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.mjs new file mode 100644 index 000000000..5f329644d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSafari.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006CFF"; +const SiSafari = React.forwardRef(function SiSafari2({ title = "Safari", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm-.004.953h.006c.063 0 .113.05.113.113v1.842c0 .063-.05.113-.113.113h-.006a.112.112 0 0 1-.113-.113V1.066c0-.063.05-.113.113-.113zm-.941.041c.056.001.104.046.11.104l.077.918a.112.112 0 0 1-.101.12h-.01a.11.11 0 0 1-.12-.1l-.08-.919a.112.112 0 0 1 .102-.12h.01l.012-.003zm1.892 0H12.965a.113.113 0 0 1 .103.121l-.08.92a.111.111 0 0 1-.12.102h-.009a.111.111 0 0 1-.101-.121l.078-.92a.112.112 0 0 1 .111-.102zm-2.838.123a.11.11 0 0 1 .106.092l.32 1.818c.01.06-.03.119-.09.13l-.01.001a.111.111 0 0 1-.128-.09l-.32-1.818a.111.111 0 0 1 .09-.129l.01-.002a.103.103 0 0 1 .022-.002zm3.784.002h.021l.008.002c.061.01.102.07.092.131l-.32 1.814c-.011.062-.07.101-.132.09h-.005a.113.113 0 0 1-.092-.13l.32-1.815a.111.111 0 0 1 .108-.092zm-4.715.203c.048.002.09.035.103.084l.239.893a.112.112 0 0 1-.079.139l-.005.001a.114.114 0 0 1-.14-.08l-.237-.894a.11.11 0 0 1 .078-.137l.006-.002a.123.123 0 0 1 .035-.004zm5.644 0a.11.11 0 0 1 .033.004l.006.002c.06.016.097.079.08.139l-.24.892a.112.112 0 0 1-.137.08l-.005-.002a.114.114 0 0 1-.08-.138l.24-.893a.112.112 0 0 1 .103-.084zm-6.562.285a.11.11 0 0 1 .107.073L9 3.42a.107.107 0 0 1-.064.139l-.012.005a.11.11 0 0 1-.14-.066L8.15 1.76a.11.11 0 0 1 .065-.14l.014-.005a.106.106 0 0 1 .03-.008zm7.469.002c.014 0 .028.001.042.006l.012.006c.057.02.087.082.067.139l-.633 1.738a.11.11 0 0 1-.14.066l-.013-.003A.11.11 0 0 1 15 3.42l.633-1.738a.108.108 0 0 1 .096-.073zm-8.352.366a.112.112 0 0 1 .105.064l.393.838a.112.112 0 0 1-.055.148l-.008.004a.11.11 0 0 1-.146-.054l-.395-.838a.112.112 0 0 1 .055-.149l.008-.004a.11.11 0 0 1 .043-.01zm9.246 0a.11.11 0 0 1 .043.01l.006.003a.11.11 0 0 1 .053.149l-.391.838a.112.112 0 0 1-.148.054l-.006-.002a.112.112 0 0 1-.055-.148l.393-.84a.112.112 0 0 1 .105-.064zm-10.092.44c.04-.002.08.018.102.056l.922 1.597a.113.113 0 0 1-.041.155l-.006.002a.113.113 0 0 1-.154-.041l-.922-1.598a.113.113 0 0 1 .04-.154l.007-.002a.11.11 0 0 1 .052-.016zm10.94.001c.018 0 .035.004.052.014l.004.002a.114.114 0 0 1 .041.156l-.923 1.596a.114.114 0 0 1-.157.04l-.004-.001a.112.112 0 0 1-.04-.155l.925-1.595a.113.113 0 0 1 .102-.057zM5.729 2.93a.11.11 0 0 1 .093.047l.532.753a.114.114 0 0 1-.028.159l-.004.002a.114.114 0 0 1-.158-.028l-.531-.752a.114.114 0 0 1 .027-.158l.006-.002a.113.113 0 0 1 .063-.021zm12.542 0a.11.11 0 0 1 .063.02l.006.003a.112.112 0 0 1 .027.156l-.531.756a.112.112 0 0 1-.156.028l-.006-.004a.112.112 0 0 1-.028-.157l.532-.755a.11.11 0 0 1 .093-.047zm.747.578a.11.11 0 0 1 .08.027l.006.004c.047.04.053.111.013.158L17.932 5.11a.11.11 0 0 1-.157.016l-.005-.006a.11.11 0 0 1-.014-.156l1.185-1.414a.114.114 0 0 1 .077-.041zM4.984 3.51a.11.11 0 0 1 .077.039L6.244 4.96a.112.112 0 0 1-.014.158l-.003.004a.112.112 0 0 1-.159-.014L4.883 3.697a.112.112 0 0 1 .013-.158l.006-.004a.111.111 0 0 1 .082-.025zm-.714.64c.027 0 .055.01.076.032l.658.66a.107.107 0 0 1 0 .152l-.01.01a.107.107 0 0 1-.152 0l-.66-.658a.11.11 0 0 1 0-.155l.01-.01a.111.111 0 0 1 .078-.03zm15.462 0c.028 0 .055.01.077.032l.007.007a.109.109 0 0 1 0 .155l-.658.66a.109.109 0 0 1-.154 0l-.008-.008a.109.109 0 0 1 0-.154l.658-.66a.11.11 0 0 1 .078-.032zm.707.66c.038 0 .071.02.092.075a.112.112 0 0 1-.023.117l-7.606 8.08c-3.084 2.024-6.149 4.04-9.222 6.05-.078.051-.17.082-.211-.028a.112.112 0 0 1 .023-.118l7.594-8.08c3.084-2.023 6.161-4.039 9.234-6.049a.247.247 0 0 1 .12-.046zm-16.824.045a.109.109 0 0 1 .08.026l1.416 1.187a.11.11 0 0 1 .014.157l-.006.005a.11.11 0 0 1-.156.014L3.549 5.057a.109.109 0 0 1-.014-.155l.006-.007a.108.108 0 0 1 .074-.04zm17.336.756c.036 0 .072.017.094.05l.004.003a.114.114 0 0 1-.028.158l-.753.53a.112.112 0 0 1-.157-.028l-.004-.004a.114.114 0 0 1 .028-.158l.754-.53a.113.113 0 0 1 .062-.02zm-17.904.002c.02 0 .042.007.06.02l.76.531c.05.035.06.103.026.152l-.006.01a.109.109 0 0 1-.153.026l-.76-.532a.109.109 0 0 1-.025-.152l.006-.01a.108.108 0 0 1 .092-.045zm-.512.803c.018 0 .036.006.053.016l1.596.923a.111.111 0 0 1 .04.153l-.003.006a.111.111 0 0 1-.153.04L2.473 6.63a.111.111 0 0 1-.041-.152l.004-.006a.11.11 0 0 1 .1-.055zm18.932 0a.11.11 0 0 1 .1.055l.001.004a.113.113 0 0 1-.04.154l-1.596.926a.113.113 0 0 1-.155-.041l-.002-.004a.113.113 0 0 1 .041-.155l1.596-.925a.115.115 0 0 1 .055-.014zm-19.373.846c.014 0 .029.003.043.01l.838.392a.11.11 0 0 1 .052.147l-.004.01a.11.11 0 0 1-.146.052l-.838-.393a.11.11 0 0 1-.053-.146l.004-.01a.109.109 0 0 1 .104-.062zm19.81.002a.11.11 0 0 1 .106.062l.002.008a.11.11 0 0 1-.053.146l-.838.393a.11.11 0 0 1-.146-.053l-.004-.008a.11.11 0 0 1 .052-.146l.838-.393a.11.11 0 0 1 .043-.01zm-20.183.88c.014 0 .028.001.043.006l1.732.631a.112.112 0 0 1 .067.145l-.002.006a.11.11 0 0 1-.143.066l-1.732-.63a.113.113 0 0 1-.069-.145l.002-.004a.115.115 0 0 1 .102-.074zm20.549 0a.113.113 0 0 1 .11.075l.003.004a.115.115 0 0 1-.069.146l-1.732.629a.112.112 0 0 1-.145-.066l-.001-.006a.113.113 0 0 1 .068-.145l1.732-.63a.11.11 0 0 1 .034-.006zm-20.836.909a.11.11 0 0 1 .033.004l.892.24c.06.016.096.077.08.137l-.002.007a.11.11 0 0 1-.136.079l-.895-.239a.113.113 0 0 1-.078-.138l.002-.006a.113.113 0 0 1 .104-.084zm21.13.002a.115.115 0 0 1 .106.084v.004a.112.112 0 0 1-.078.138l-.893.239a.112.112 0 0 1-.138-.079v-.005a.112.112 0 0 1 .078-.14l.892-.237a.11.11 0 0 1 .033-.004zm-21.335.93.023.001 1.814.323c.062.01.101.069.09.13v.006a.111.111 0 0 1-.13.09l-1.815-.322a.113.113 0 0 1-.092-.131l.002-.006a.11.11 0 0 1 .108-.092zm21.519.001h.022c.052.002.1.038.109.092v.006c.01.062-.03.12-.092.13l-1.814.321a.113.113 0 0 1-.131-.092v-.005a.113.113 0 0 1 .092-.131l1.814-.32zm-21.644.944h.011l.922.084a.11.11 0 0 1 .102.119l-.002.01a.11.11 0 0 1-.121.1l-.922-.083a.11.11 0 0 1-.1-.12v-.009a.111.111 0 0 1 .11-.101zm21.779.002h.012c.056 0 .106.043.11.101v.008a.111.111 0 0 1-.1.121l-.923.08a.111.111 0 0 1-.12-.101v-.008a.111.111 0 0 1 .1-.121l.92-.08zm-11.82.73L6.091 16.95c2.02-1.324 4.039-2.646 6.066-3.976l-1.095-1.31zm11.87.219c.063 0 .114.05.114.113v.004c0 .063-.05.113-.113.113l-1.844.004a.113.113 0 0 1-.113-.113v-.004c0-.063.05-.113.113-.113l1.844-.004zm-21.869.002h1.844c.062 0 .112.05.112.111v.008c0 .062-.05.111-.112.111H1.064a.111.111 0 0 1-.11-.111v-.008c0-.061.049-.111.11-.111zm.952.875h.011a.11.11 0 0 1 .11.101v.006a.111.111 0 0 1-.102.121l-.922.08a.11.11 0 0 1-.119-.101l-.002-.006a.111.111 0 0 1 .102-.121l.922-.08zm19.955 0h.011l.922.08a.11.11 0 0 1 .102.119v.008a.112.112 0 0 1-.121.101l-.922-.08a.11.11 0 0 1-.102-.119v-.008a.111.111 0 0 1 .11-.101zm-18.924.705c.053.001.098.04.107.094l.002.004c.011.061-.03.12-.092.13l-1.812.32a.113.113 0 0 1-.13-.091v-.004a.115.115 0 0 1 .09-.133l1.811-.318a.117.117 0 0 1 .024-.002zm17.902 0c.008 0 .016 0 .024.002l1.816.32c.061.011.1.07.09.131v.004a.113.113 0 0 1-.131.092l-1.816-.32a.112.112 0 0 1-.09-.131v-.004a.113.113 0 0 1 .107-.094zM2.332 14.477a.11.11 0 0 1 .104.082l.002.005c.016.06-.02.121-.08.137l-.891.24a.112.112 0 0 1-.137-.08l-.002-.006a.112.112 0 0 1 .08-.136l.89-.239a.112.112 0 0 1 .034-.003zm19.332 0c.011 0 .024 0 .035.003l.893.239c.06.016.096.077.08.136l-.002.006a.111.111 0 0 1-.137.078l-.894-.238a.111.111 0 0 1-.078-.137l.002-.005a.109.109 0 0 1 .101-.082zm-18.213.517a.11.11 0 0 1 .11.074l.002.004a.112.112 0 0 1-.067.145l-1.732.63a.113.113 0 0 1-.145-.068l-.002-.004a.113.113 0 0 1 .069-.144L3.418 15a.11.11 0 0 1 .033-.006zm17.086 0c.015 0 .029 0 .043.006l1.734.63a.111.111 0 0 1 .067.143l-.002.008a.111.111 0 0 1-.143.067l-1.734-.631a.111.111 0 0 1-.066-.143l.002-.008a.111.111 0 0 1 .1-.072zM2.92 16.117a.109.109 0 0 1 .103.063l.004.01a.108.108 0 0 1-.052.144l-.838.393a.11.11 0 0 1-.147-.055l-.004-.008a.11.11 0 0 1 .053-.146l.838-.391a.112.112 0 0 1 .043-.01zm18.158 0a.11.11 0 0 1 .043.01l.838.39c.056.027.08.093.055.149l-.002.004a.112.112 0 0 1-.149.055l-.838-.391a.112.112 0 0 1-.054-.148l.002-.004a.112.112 0 0 1 .105-.065zm-16.957.315c.04-.001.078.02.1.056l.004.004a.11.11 0 0 1-.041.153l-1.596.921a.113.113 0 0 1-.154-.04l-.002-.005a.113.113 0 0 1 .04-.154l1.596-.922a.109.109 0 0 1 .053-.013zm15.756 0c.018 0 .036.004.053.013l1.597.924a.11.11 0 0 1 .041.152l-.002.004a.11.11 0 0 1-.152.041l-1.598-.921a.113.113 0 0 1-.04-.155l.001-.002a.111.111 0 0 1 .1-.056zm.328 1.193a.11.11 0 0 1 .06.021l.758.534c.05.035.061.102.026.152l-.004.008a.111.111 0 0 1-.154.027l-.756-.535a.109.109 0 0 1-.028-.152l.006-.008a.11.11 0 0 1 .092-.047zm-16.412.002c.035 0 .072.016.094.047l.004.008a.109.109 0 0 1-.028.152l-.756.531a.108.108 0 0 1-.152-.025l-.006-.008a.109.109 0 0 1 .028-.152l.755-.534a.107.107 0 0 1 .061-.019zm15.162.102a.112.112 0 0 1 .082.025l1.414 1.187a.11.11 0 0 1 .014.157l-.004.004a.113.113 0 0 1-.158.013L18.89 17.93a.11.11 0 0 1-.014-.157l.004-.005a.108.108 0 0 1 .074-.04zm-12.812 1.12a.11.11 0 0 1 .08.026l.007.008a.11.11 0 0 1 .014.154L5.06 20.451a.11.11 0 0 1-.155.012l-.008-.006a.11.11 0 0 1-.013-.154l1.185-1.414a.11.11 0 0 1 .075-.04zm11.703 0c.032 0 .065.015.088.042l1.181 1.41c.04.048.035.12-.013.16l-.002.002a.114.114 0 0 1-.16-.014l-1.182-1.41a.114.114 0 0 1 .013-.16l.002-.002a.115.115 0 0 1 .073-.027zm-12.928.114c.027 0 .054.01.074.031l.014.012a.107.107 0 0 1 0 .15l-.662.66a.105.105 0 0 1-.149 0l-.011-.011a.105.105 0 0 1 0-.149l.66-.662a.105.105 0 0 1 .074-.031zm14.164 0c.027 0 .053.01.074.031l.66.662a.106.106 0 0 1 0 .15l-.011.012a.106.106 0 0 1-.15-.002l-.66-.66a.106.106 0 0 1 .001-.15l.01-.012a.108.108 0 0 1 .076-.031zm-11.627.797c.018 0 .034.006.05.015l.007.004a.11.11 0 0 1 .04.15l-.921 1.598a.11.11 0 0 1-.15.041l-.008-.004a.111.111 0 0 1-.04-.152l.922-1.596a.113.113 0 0 1 .1-.056zm9.088.002a.11.11 0 0 1 .1.054l.925 1.596a.113.113 0 0 1-.04.154h-.005a.11.11 0 0 1-.152-.039l-.926-1.595a.113.113 0 0 1 .041-.155l.004-.002a.108.108 0 0 1 .053-.013zm-10.285.324c.021 0 .043.008.062.021l.004.002c.051.036.063.106.028.157l-.53.755a.112.112 0 0 1-.156.028l-.004-.002a.112.112 0 0 1-.027-.156l.53-.756a.113.113 0 0 1 .093-.05zm11.484.002c.036 0 .072.015.094.047l.53.756c.035.05.023.12-.028.156l-.004.002a.112.112 0 0 1-.156-.028l-.53-.755a.112.112 0 0 1 .028-.157l.004-.002a.112.112 0 0 1 .062-.02zm-8.863.342a.11.11 0 0 1 .043.006l.012.005c.056.02.084.081.064.137l-.633 1.74a.105.105 0 0 1-.136.063l-.014-.004a.106.106 0 0 1-.065-.137l.633-1.74a.107.107 0 0 1 .096-.07zm6.232 0a.107.107 0 0 1 .106.07l.633 1.738a.107.107 0 0 1-.065.137l-.015.006a.107.107 0 0 1-.137-.065L15 20.578a.107.107 0 0 1 .064-.137l.014-.005a.117.117 0 0 1 .033-.006zm-4.695.41c.008 0 .014 0 .021.002l.006.002c.062.01.101.067.09.129l-.318 1.812a.113.113 0 0 1-.131.092l-.004-.002a.111.111 0 0 1-.092-.129l.32-1.812a.113.113 0 0 1 .108-.094zm3.146.002c.008-.002.015 0 .022 0a.111.111 0 0 1 .107.092l.32 1.812c.012.061-.03.12-.091.131l-.004.002a.113.113 0 0 1-.13-.092l-.321-1.812a.113.113 0 0 1 .092-.131l.005-.002zm-5.79.119a.11.11 0 0 1 .042.01l.004.002a.114.114 0 0 1 .055.15l-.393.834a.112.112 0 0 1-.148.055l-.004-.002a.112.112 0 0 1-.055-.149l.393-.836a.112.112 0 0 1 .105-.064zm8.458 0a.108.108 0 0 1 .104.062l.39.84a.11.11 0 0 1-.052.147l-.008.004a.11.11 0 0 1-.146-.055l-.391-.838a.11.11 0 0 1 .053-.146l.008-.004a.11.11 0 0 1 .042-.01zm-4.236.018H12c.063 0 .115.05.115.113l.002 1.84c0 .063-.05.113-.113.113h-.006a.113.113 0 0 1-.113-.113l-.004-1.838c0-.063.05-.115.113-.115zm-2.592.578c.011 0 .022 0 .034.004l.005.002c.06.016.095.077.079.136l-.24.893a.111.111 0 0 1-.137.078l-.006-.002a.111.111 0 0 1-.078-.137l.24-.89a.113.113 0 0 1 .103-.084zm5.196.002a.11.11 0 0 1 .103.082l.24.89a.11.11 0 0 1-.078.137l-.006.002a.11.11 0 0 1-.136-.078l-.24-.89a.11.11 0 0 1 .078-.138l.005-.002a.112.112 0 0 1 .034-.003zm-3.475.302h.01l.008.002c.061.006.107.06.101.121l-.08.92a.112.112 0 0 1-.121.102h-.008a.11.11 0 0 1-.1-.121l.08-.922a.111.111 0 0 1 .11-.102zm1.736 0h.02a.11.11 0 0 1 .107.102l.08.924a.11.11 0 0 1-.101.119l-.008.002a.11.11 0 0 1-.12-.102l-.08-.924a.112.112 0 0 1 .102-.12z" }) + ] + } + ); +}); + +export { SiSafari as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSage.cjs new file mode 100644 index 000000000..42d95538d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D639"; +const SiSage = React__namespace.forwardRef(function SiSage2({ title = "Sage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.702 5.316C1.167 5.316 0 6.48 0 7.972c0 1.635 1.167 2.267 2.46 2.655 1.224.387 1.804.818 1.804 1.666 0 .86-.64 1.465-1.477 1.465-.84 0-1.566-.604-1.566-1.535 0-.516.242-.647.242-.934 0-.33-.227-.574-.599-.574-.423 0-.864.647-.864 1.566 0 1.48 1.266 2.57 2.787 2.57 1.535 0 2.701-1.163 2.701-2.656 0-1.623-1.166-2.267-2.472-2.655-1.209-.372-1.792-.818-1.792-1.666 0-.845.626-1.45 1.463-1.45.867 0 1.565.617 1.577 1.465.016.388.285.617.599.617a.592.592 0 0 0 .61-.647c-.027-1.48-1.263-2.543-2.771-2.543zm6.171 9.52c.683 0 1.21-.23 1.21-.69a.57.57 0 0 0-.557-.574c-.2 0-.341.085-.668.085-.882 0-1.577-.76-1.577-1.65 0-.962.71-1.725 1.608-1.725 1.009 0 1.65.775 1.65 1.895v2.054c0 .36.284.604.625.604.327 0 .61-.244.61-.604v-2.097c0-1.72-1.178-2.984-2.858-2.984-1.566 0-2.86 1.22-2.86 2.856 0 1.58 1.282 2.83 2.817 2.83zm6.257 3.848c1.535 0 2.701-1.163 2.701-2.656 0-1.635-1.166-2.267-2.472-2.655-1.209-.387-1.792-.818-1.792-1.666s.64-1.465 1.463-1.465c.84 0 1.577.604 1.577 1.535 0 .519-.241.647-.241.934 0 .33.226.574.583.574.441 0 .882-.647.882-1.566 0-1.48-1.278-2.57-2.801-2.57-1.535 0-2.687 1.163-2.687 2.656 0 1.623 1.152 2.267 2.46 2.655 1.224.372 1.804.818 1.804 1.666 0 .86-.64 1.45-1.462 1.45-.883 0-1.566-.601-1.578-1.465-.015-.388-.3-.604-.598-.604-.327 0-.626.216-.61.631.011 1.499 1.247 2.546 2.77 2.546zm6.171-3.849c.795 0 1.424-.229 1.862-.503.426-.272.595-.504.595-.76 0-.272-.2-.516-.568-.516-.441 0-.795.66-1.877.66-.952 0-1.707-.76-1.707-1.722 0-.95.725-1.724 1.635-1.724.982 0 1.508.647 1.508 1.062 0 .116-.085.174-.2.174h-1.194c-.326 0-.568.216-.568.503 0 .314.242.546.568.546h1.636c.625 0 1.009-.33 1.009-.89 0-1.408-1.194-2.512-2.774-2.512-1.566 0-2.83 1.263-2.83 2.84s1.312 2.842 2.905 2.842z" }) + ] + } + ); +}); + +exports.default = SiSage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSage.d.ts new file mode 100644 index 000000000..adfcd80f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D639"; +declare const SiSage: IconType; +export { SiSage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSage.mjs new file mode 100644 index 000000000..25d79bad0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D639"; +const SiSage = React.forwardRef(function SiSage2({ title = "Sage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.702 5.316C1.167 5.316 0 6.48 0 7.972c0 1.635 1.167 2.267 2.46 2.655 1.224.387 1.804.818 1.804 1.666 0 .86-.64 1.465-1.477 1.465-.84 0-1.566-.604-1.566-1.535 0-.516.242-.647.242-.934 0-.33-.227-.574-.599-.574-.423 0-.864.647-.864 1.566 0 1.48 1.266 2.57 2.787 2.57 1.535 0 2.701-1.163 2.701-2.656 0-1.623-1.166-2.267-2.472-2.655-1.209-.372-1.792-.818-1.792-1.666 0-.845.626-1.45 1.463-1.45.867 0 1.565.617 1.577 1.465.016.388.285.617.599.617a.592.592 0 0 0 .61-.647c-.027-1.48-1.263-2.543-2.771-2.543zm6.171 9.52c.683 0 1.21-.23 1.21-.69a.57.57 0 0 0-.557-.574c-.2 0-.341.085-.668.085-.882 0-1.577-.76-1.577-1.65 0-.962.71-1.725 1.608-1.725 1.009 0 1.65.775 1.65 1.895v2.054c0 .36.284.604.625.604.327 0 .61-.244.61-.604v-2.097c0-1.72-1.178-2.984-2.858-2.984-1.566 0-2.86 1.22-2.86 2.856 0 1.58 1.282 2.83 2.817 2.83zm6.257 3.848c1.535 0 2.701-1.163 2.701-2.656 0-1.635-1.166-2.267-2.472-2.655-1.209-.387-1.792-.818-1.792-1.666s.64-1.465 1.463-1.465c.84 0 1.577.604 1.577 1.535 0 .519-.241.647-.241.934 0 .33.226.574.583.574.441 0 .882-.647.882-1.566 0-1.48-1.278-2.57-2.801-2.57-1.535 0-2.687 1.163-2.687 2.656 0 1.623 1.152 2.267 2.46 2.655 1.224.372 1.804.818 1.804 1.666 0 .86-.64 1.45-1.462 1.45-.883 0-1.566-.601-1.578-1.465-.015-.388-.3-.604-.598-.604-.327 0-.626.216-.61.631.011 1.499 1.247 2.546 2.77 2.546zm6.171-3.849c.795 0 1.424-.229 1.862-.503.426-.272.595-.504.595-.76 0-.272-.2-.516-.568-.516-.441 0-.795.66-1.877.66-.952 0-1.707-.76-1.707-1.722 0-.95.725-1.724 1.635-1.724.982 0 1.508.647 1.508 1.062 0 .116-.085.174-.2.174h-1.194c-.326 0-.568.216-.568.503 0 .314.242.546.568.546h1.636c.625 0 1.009-.33 1.009-.89 0-1.408-1.194-2.512-2.774-2.512-1.566 0-2.83 1.263-2.83 2.84s1.312 2.842 2.905 2.842z" }) + ] + } + ); +}); + +export { SiSage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.cjs new file mode 100644 index 000000000..5ebdc75ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3333FF"; +const SiSagemath = React__namespace.forwardRef(function SiSagemath2({ title = "SageMath", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.122 0a.9.9 0 0 0-.9.9.9.9 0 0 0 .165.514l-2.21 2.563a1.094 1.094 0 0 0-.307-.044 1.094 1.094 0 0 0-1.093 1.094 1.094 1.094 0 0 0 .006.091l-1.95 1.284a.9.9 0 0 0-.516-.165.9.9 0 0 0-.9.9.9.9 0 0 0 .4.746L.46 14.586a.705.705 0 0 0-.375.62.705.705 0 0 0 .706.706.705.705 0 0 0 .095-.007l4.889 5.016a.705.705 0 0 0-.004.051.705.705 0 0 0 .705.705.705.705 0 0 0 .386-.115l2.651 1.426a.9.9 0 0 0-.008.113.9.9 0 0 0 .9.899.9.9 0 0 0 .895-.819l7.183-2.097a.9.9 0 0 0 .718.361.9.9 0 0 0 .9-.9.9.9 0 0 0-.197-.556l3.11-6.845a.9.9 0 0 0 .899-.9.9.9 0 0 0-.723-.879l-.975-3.259a.705.705 0 0 0 .256-.543.705.705 0 0 0-.705-.705.705.705 0 0 0-.137.015L17.163 1.4a.705.705 0 0 0 .011-.12.705.705 0 0 0-.705-.706.705.705 0 0 0-.549.266L8.968.6a.9.9 0 0 0-.846-.6zm.84 1.218 6.825.235a.705.705 0 0 0 .276.4l-.161.768a1.094 1.094 0 0 0-.75.605l-7.64.89.512-2.324a.9.9 0 0 0 .098.007.9.9 0 0 0 .84-.58zm7.82.692 4.356 5.337a.705.705 0 0 0-.076.316.705.705 0 0 0 .225.515L20.93 9.08l-3.82-4.886a1.094 1.094 0 0 0 .127-.51 1.094 1.094 0 0 0-.713-1.022l.149-.709a.705.705 0 0 0 .11-.044zm-9.132.145-.462 2.099-1.48.172a1.094 1.094 0 0 0-.008-.01zm7.554 2.408-2.215 8.64a1.363 1.363 0 0 0-.178.054L7.097 6.692l2.663-.297a.705.705 0 0 0 .618.371.705.705 0 0 0 .705-.704.705.705 0 0 0-.02-.16l3.747-1.393zm-1.685.196-2.59.964a.705.705 0 0 0-.55-.266.705.705 0 0 0-.705.705.705.705 0 0 0 .002.031l-2.664.298.22-.999zm2.877.125 4.166 5.33-.86 2.417-5.233 1.218a1.363 1.363 0 0 0-.282-.347zm-9.489.646-.184.84-.655-.742zm-2.892.275a1.094 1.094 0 0 0 .209.2l-.156.816-1.878.21a.9.9 0 0 0-.005-.022zm.797.41a1.094 1.094 0 0 0 .058.005 1.094 1.094 0 0 0 .071-.002l.407.46-.639.071zm.786.745.797.902-.343 1.56a.705.705 0 0 0-.679.703.705.705 0 0 0 .25.538l-2.355 3.614 1.38-7.21zm-1.59.178-1.496 7.808a.9.9 0 0 0-.59.423l-.427-.08a.705.705 0 0 0-.415-.625l.347-6.535a.9.9 0 0 0 .782-.79zm2.64 1.01 5.328 6.029a1.363 1.363 0 0 0-.02.095l-8.62.925a.9.9 0 0 0-.2-.153L5.9 10.705a.705.705 0 0 0 .18.024.705.705 0 0 0 .704-.704.705.705 0 0 0-.428-.647zm14.91.188a.705.705 0 0 0 .057.013l.827 2.766-1.287-1.646zm-.77 2.166 1.24 1.588-1.969.458zm1.31 2.522-2.828 6.224.057-3.885a.66.66 0 0 0 .546-.65.66.66 0 0 0-.374-.593l.19-.535zm-2.766.644-.138.388a.66.66 0 0 0-.64.658.66.66 0 0 0 .464.63l-.065 4.438a.9.9 0 0 0-.525.41l-3.924-.847a.705.705 0 0 0-.705-.699.705.705 0 0 0-.702.67l-.961.235 1.183-3.66a1.363 1.363 0 0 0 1.314-1.13zm-7.23 1.52a1.363 1.363 0 0 0 .34.402l-1.363 4.22-2.927.717-4.629-4.353a.9.9 0 0 0 .026-.068zm-10.4.768.109.02a.9.9 0 0 0 .029.121zm.697.715a.9.9 0 0 0 .296.053.9.9 0 0 0 .06-.002l3.902 3.67a.705.705 0 0 0-.18-.025.705.705 0 0 0-.372.107zm10.75 2.95a.705.705 0 0 0 .65.435.705.705 0 0 0 .64-.41l3.453.746-6.655 1.943.787-2.439zm-2.181.534-.697 2.157a.9.9 0 0 0-.173.046L8.42 20.679zm-3.62.887.446.42-.615-.331a.705.705 0 0 0 .002-.049z" }) + ] + } + ); +}); + +exports.default = SiSagemath; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.d.ts new file mode 100644 index 000000000..172e0f012 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3333FF"; +declare const SiSagemath: IconType; +export { SiSagemath as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.mjs new file mode 100644 index 000000000..0a1a879ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSagemath.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3333FF"; +const SiSagemath = React.forwardRef(function SiSagemath2({ title = "SageMath", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.122 0a.9.9 0 0 0-.9.9.9.9 0 0 0 .165.514l-2.21 2.563a1.094 1.094 0 0 0-.307-.044 1.094 1.094 0 0 0-1.093 1.094 1.094 1.094 0 0 0 .006.091l-1.95 1.284a.9.9 0 0 0-.516-.165.9.9 0 0 0-.9.9.9.9 0 0 0 .4.746L.46 14.586a.705.705 0 0 0-.375.62.705.705 0 0 0 .706.706.705.705 0 0 0 .095-.007l4.889 5.016a.705.705 0 0 0-.004.051.705.705 0 0 0 .705.705.705.705 0 0 0 .386-.115l2.651 1.426a.9.9 0 0 0-.008.113.9.9 0 0 0 .9.899.9.9 0 0 0 .895-.819l7.183-2.097a.9.9 0 0 0 .718.361.9.9 0 0 0 .9-.9.9.9 0 0 0-.197-.556l3.11-6.845a.9.9 0 0 0 .899-.9.9.9 0 0 0-.723-.879l-.975-3.259a.705.705 0 0 0 .256-.543.705.705 0 0 0-.705-.705.705.705 0 0 0-.137.015L17.163 1.4a.705.705 0 0 0 .011-.12.705.705 0 0 0-.705-.706.705.705 0 0 0-.549.266L8.968.6a.9.9 0 0 0-.846-.6zm.84 1.218 6.825.235a.705.705 0 0 0 .276.4l-.161.768a1.094 1.094 0 0 0-.75.605l-7.64.89.512-2.324a.9.9 0 0 0 .098.007.9.9 0 0 0 .84-.58zm7.82.692 4.356 5.337a.705.705 0 0 0-.076.316.705.705 0 0 0 .225.515L20.93 9.08l-3.82-4.886a1.094 1.094 0 0 0 .127-.51 1.094 1.094 0 0 0-.713-1.022l.149-.709a.705.705 0 0 0 .11-.044zm-9.132.145-.462 2.099-1.48.172a1.094 1.094 0 0 0-.008-.01zm7.554 2.408-2.215 8.64a1.363 1.363 0 0 0-.178.054L7.097 6.692l2.663-.297a.705.705 0 0 0 .618.371.705.705 0 0 0 .705-.704.705.705 0 0 0-.02-.16l3.747-1.393zm-1.685.196-2.59.964a.705.705 0 0 0-.55-.266.705.705 0 0 0-.705.705.705.705 0 0 0 .002.031l-2.664.298.22-.999zm2.877.125 4.166 5.33-.86 2.417-5.233 1.218a1.363 1.363 0 0 0-.282-.347zm-9.489.646-.184.84-.655-.742zm-2.892.275a1.094 1.094 0 0 0 .209.2l-.156.816-1.878.21a.9.9 0 0 0-.005-.022zm.797.41a1.094 1.094 0 0 0 .058.005 1.094 1.094 0 0 0 .071-.002l.407.46-.639.071zm.786.745.797.902-.343 1.56a.705.705 0 0 0-.679.703.705.705 0 0 0 .25.538l-2.355 3.614 1.38-7.21zm-1.59.178-1.496 7.808a.9.9 0 0 0-.59.423l-.427-.08a.705.705 0 0 0-.415-.625l.347-6.535a.9.9 0 0 0 .782-.79zm2.64 1.01 5.328 6.029a1.363 1.363 0 0 0-.02.095l-8.62.925a.9.9 0 0 0-.2-.153L5.9 10.705a.705.705 0 0 0 .18.024.705.705 0 0 0 .704-.704.705.705 0 0 0-.428-.647zm14.91.188a.705.705 0 0 0 .057.013l.827 2.766-1.287-1.646zm-.77 2.166 1.24 1.588-1.969.458zm1.31 2.522-2.828 6.224.057-3.885a.66.66 0 0 0 .546-.65.66.66 0 0 0-.374-.593l.19-.535zm-2.766.644-.138.388a.66.66 0 0 0-.64.658.66.66 0 0 0 .464.63l-.065 4.438a.9.9 0 0 0-.525.41l-3.924-.847a.705.705 0 0 0-.705-.699.705.705 0 0 0-.702.67l-.961.235 1.183-3.66a1.363 1.363 0 0 0 1.314-1.13zm-7.23 1.52a1.363 1.363 0 0 0 .34.402l-1.363 4.22-2.927.717-4.629-4.353a.9.9 0 0 0 .026-.068zm-10.4.768.109.02a.9.9 0 0 0 .029.121zm.697.715a.9.9 0 0 0 .296.053.9.9 0 0 0 .06-.002l3.902 3.67a.705.705 0 0 0-.18-.025.705.705 0 0 0-.372.107zm10.75 2.95a.705.705 0 0 0 .65.435.705.705 0 0 0 .64-.41l3.453.746-6.655 1.943.787-2.439zm-2.181.534-.697 2.157a.9.9 0 0 0-.173.046L8.42 20.679zm-3.62.887.446.42-.615-.331a.705.705 0 0 0 .002-.049z" }) + ] + } + ); +}); + +export { SiSagemath as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.cjs new file mode 100644 index 000000000..dbb23e17a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE800"; +const SiSahibinden = React__namespace.forwardRef(function SiSahibinden2({ title = "Sahibinden", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm11.517 4.723c.563-.007 1.13-.004 1.69.063 2.412.054 4.853 2.18 4.879 4.508h-3.319c.009-.694-.603-1.555-1.279-1.732-1.105-.269-2.46-.355-3.43.294-.738.445-1.065 1.672-.095 2.056 2.288 1.083 5.158.846 7.224 2.372 1.698 1.21 1.598 3.666.274 5.086-1.718 1.84-4.636 2.132-7.099 1.782-2.448-.117-4.755-2.245-4.819-4.562h3.311c-.056.832.638 1.557 1.46 1.822 1.27.275 2.726.358 3.93-.19.96-.323 1.024-1.544.284-2.103-1.595-.897-3.565-.924-5.297-1.518-2.012-.39-3.643-2.278-3.26-4.197.424-2.342 3.127-3.727 5.546-3.681z" }) + ] + } + ); +}); + +exports.default = SiSahibinden; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.d.ts new file mode 100644 index 000000000..2aa21fcc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE800"; +declare const SiSahibinden: IconType; +export { SiSahibinden as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.mjs new file mode 100644 index 000000000..b228201a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSahibinden.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE800"; +const SiSahibinden = React.forwardRef(function SiSahibinden2({ title = "Sahibinden", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm11.517 4.723c.563-.007 1.13-.004 1.69.063 2.412.054 4.853 2.18 4.879 4.508h-3.319c.009-.694-.603-1.555-1.279-1.732-1.105-.269-2.46-.355-3.43.294-.738.445-1.065 1.672-.095 2.056 2.288 1.083 5.158.846 7.224 2.372 1.698 1.21 1.598 3.666.274 5.086-1.718 1.84-4.636 2.132-7.099 1.782-2.448-.117-4.755-2.245-4.819-4.562h3.311c-.056.832.638 1.557 1.46 1.822 1.27.275 2.726.358 3.93-.19.96-.323 1.024-1.544.284-2.103-1.595-.897-3.565-.924-5.297-1.518-2.012-.39-3.643-2.278-3.26-4.197.424-2.342 3.127-3.727 5.546-3.681z" }) + ] + } + ); +}); + +export { SiSahibinden as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.cjs new file mode 100644 index 000000000..90e6e3279 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#053766"; +const SiSailfishos = React__namespace.forwardRef(function SiSailfishos2({ title = "Sailfish OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.98132 5.10497a.31172.31172 0 0 0-.40763-.17385l-2.3379.81527a24.35014 24.35014 0 0 1-3.1292.82126c-2.16405.39565-3.71666-1.3368-3.71666-1.3368a.3237.3237 0 0 0-.35968-.1019 4.83167 4.83167 0 0 0-.45559.17384 13.1462 13.1462 0 0 1 1.70247-4.7957c.10211-.10285.10211-.26881 0-.37166a.36567.36567 0 0 0-.40763-.1139 27.1736 27.1736 0 0 0-4.19623 2.60166c-2.87742 2.236-4.47798 4.51395-4.6758 6.7979-.14987 1.85833 1.07303 3.07524 2.24198 4.19623l.20382.19783a4.50795 4.50795 0 0 1-.28774 3.59077c-1.04306 2.30193-3.35699 4.31013-6.25838 5.39516-.91118.34768-1.6785.59946-1.6785.59946-.15467.05152-.24352.21354-.20381.37166A.3237.3237 0 0 0 .32056 24H.3985a34.28921 34.28921 0 0 0 6.59408-2.35588l.59947-.29974c3.71666-1.93026 5.70088-4.19623 5.92867-6.68999.15586-1.58857-.7853-2.65561-1.79838-3.59677 1.29483-1.79838 5.49107-3.2251 5.52104-3.2251l4.14228-1.43871c1.32481-.41962 2.3439-.82126 2.39785-.84524a.29973.29973 0 0 0 .17984-.41963zM12.9692 5.6265a10.23281 10.23281 0 0 0-3.51285 2.72755 3.29105 3.29105 0 0 1-.2278-1.54062c.15587-1.70846 1.98422-3.69268 2.26597-3.99241a29.92513 29.92513 0 0 1 2.7935-1.75643 12.8045 12.8045 0 0 0-1.3488 4.5619ZM5.25413 21.74602a10.61047 10.61047 0 0 0 3.51285-4.09432 5.74284 5.74284 0 0 0 .5575-2.87742 3.03927 3.03927 0 0 1 .86922 2.25997c-.2278 2.18205-2.92537 3.74065-2.94935 3.76462-.64742.3417-1.31282.65342-1.99022.94715zm7.60717-7.14558c-.14986 1.71446-1.24688 3.17715-2.74553 4.38806a4.0104 4.0104 0 0 0 .6774-1.88231c.15585-1.63653-.98912-2.7755-2.11011-3.86653-1.121-1.09102-2.18804-2.15806-2.06215-3.72266.15586-1.83435 1.30083-3.47088 2.69758-4.85564a5.2393 5.2393 0 0 0-.76132 2.1281c-.20382 2.00819 1.14497 3.24908 2.31392 4.3401 1.16895 1.09102 2.1101 1.96024 1.98422 3.47088zm-1.65451-4.0164a9.38757 9.38757 0 0 1-1.4507-1.57058c1.09702-1.75643 3.59677-2.9014 4.32812-3.19513a5.14938 5.14938 0 0 0 2.84744 1.39674c-.61145.2218-4.3401 1.53462-5.72486 3.36898z" }) + ] + } + ); +}); + +exports.default = SiSailfishos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.d.ts new file mode 100644 index 000000000..6cad79562 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#053766"; +declare const SiSailfishos: IconType; +export { SiSailfishos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.mjs new file mode 100644 index 000000000..7b016778e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSailfishos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#053766"; +const SiSailfishos = React.forwardRef(function SiSailfishos2({ title = "Sailfish OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.98132 5.10497a.31172.31172 0 0 0-.40763-.17385l-2.3379.81527a24.35014 24.35014 0 0 1-3.1292.82126c-2.16405.39565-3.71666-1.3368-3.71666-1.3368a.3237.3237 0 0 0-.35968-.1019 4.83167 4.83167 0 0 0-.45559.17384 13.1462 13.1462 0 0 1 1.70247-4.7957c.10211-.10285.10211-.26881 0-.37166a.36567.36567 0 0 0-.40763-.1139 27.1736 27.1736 0 0 0-4.19623 2.60166c-2.87742 2.236-4.47798 4.51395-4.6758 6.7979-.14987 1.85833 1.07303 3.07524 2.24198 4.19623l.20382.19783a4.50795 4.50795 0 0 1-.28774 3.59077c-1.04306 2.30193-3.35699 4.31013-6.25838 5.39516-.91118.34768-1.6785.59946-1.6785.59946-.15467.05152-.24352.21354-.20381.37166A.3237.3237 0 0 0 .32056 24H.3985a34.28921 34.28921 0 0 0 6.59408-2.35588l.59947-.29974c3.71666-1.93026 5.70088-4.19623 5.92867-6.68999.15586-1.58857-.7853-2.65561-1.79838-3.59677 1.29483-1.79838 5.49107-3.2251 5.52104-3.2251l4.14228-1.43871c1.32481-.41962 2.3439-.82126 2.39785-.84524a.29973.29973 0 0 0 .17984-.41963zM12.9692 5.6265a10.23281 10.23281 0 0 0-3.51285 2.72755 3.29105 3.29105 0 0 1-.2278-1.54062c.15587-1.70846 1.98422-3.69268 2.26597-3.99241a29.92513 29.92513 0 0 1 2.7935-1.75643 12.8045 12.8045 0 0 0-1.3488 4.5619ZM5.25413 21.74602a10.61047 10.61047 0 0 0 3.51285-4.09432 5.74284 5.74284 0 0 0 .5575-2.87742 3.03927 3.03927 0 0 1 .86922 2.25997c-.2278 2.18205-2.92537 3.74065-2.94935 3.76462-.64742.3417-1.31282.65342-1.99022.94715zm7.60717-7.14558c-.14986 1.71446-1.24688 3.17715-2.74553 4.38806a4.0104 4.0104 0 0 0 .6774-1.88231c.15585-1.63653-.98912-2.7755-2.11011-3.86653-1.121-1.09102-2.18804-2.15806-2.06215-3.72266.15586-1.83435 1.30083-3.47088 2.69758-4.85564a5.2393 5.2393 0 0 0-.76132 2.1281c-.20382 2.00819 1.14497 3.24908 2.31392 4.3401 1.16895 1.09102 2.1101 1.96024 1.98422 3.47088zm-1.65451-4.0164a9.38757 9.38757 0 0 1-1.4507-1.57058c1.09702-1.75643 3.59677-2.9014 4.32812-3.19513a5.14938 5.14938 0 0 0 2.84744 1.39674c-.61145.2218-4.3401 1.53462-5.72486 3.36898z" }) + ] + } + ); +}); + +export { SiSailfishos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.cjs new file mode 100644 index 000000000..74a7eaef1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#14ACC2"; +const SiSailsdotjs = React__namespace.forwardRef(function SiSailsdotjs2({ title = "Sails.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.23828 24S-6.9375 9.39844 11.9375 0v24H2.23828M14.85938 24V9.125s3.01171 4.91406 9.1328 14.875h-9.1328" }) + ] + } + ); +}); + +exports.default = SiSailsdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.d.ts new file mode 100644 index 000000000..2543fcb0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#14ACC2"; +declare const SiSailsdotjs: IconType; +export { SiSailsdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.mjs new file mode 100644 index 000000000..c65e18bc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSailsdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#14ACC2"; +const SiSailsdotjs = React.forwardRef(function SiSailsdotjs2({ title = "Sails.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.23828 24S-6.9375 9.39844 11.9375 0v24H2.23828M14.85938 24V9.125s3.01171 4.91406 9.1328 14.875h-9.1328" }) + ] + } + ); +}); + +export { SiSailsdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.cjs new file mode 100644 index 000000000..7c79c62cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BAF3E6"; +const SiSalla = React__namespace.forwardRef(function SiSalla2({ title = "Salla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.862 13.439a1.27 1.27 0 0 0-.81-.555 1.27 1.27 0 0 0-.964.18c-3.422 2.231-6.75 2.231-10.178 0a1.27 1.27 0 0 0-.964-.18 1.283 1.283 0 0 0-.434 2.327c2.142 1.394 4.326 2.1 6.49 2.1 2.166 0 4.348-.706 6.488-2.102a1.27 1.27 0 0 0 .555-.81 1.27 1.27 0 0 0-.18-.964zm5.103 2.82-1.171-9.764a5.24 5.24 0 0 0-5.2-4.614H6.406a5.236 5.236 0 0 0-5.198 4.612l-1.17 9.766a5.235 5.235 0 0 0 5.198 5.86h13.529a5.238 5.238 0 0 0 5.198-5.86zm-3.21 2.4c-.532.6-1.265.929-2.066.929H5.311c-.801 0-1.536-.33-2.066-.929a2.73 2.73 0 0 1-.676-2.16l1.157-9.657A2.764 2.764 0 0 1 6.468 4.41h11.064a2.765 2.765 0 0 1 2.742 2.432l1.157 9.656a2.72 2.72 0 0 1-.676 2.161" }) + ] + } + ); +}); + +exports.default = SiSalla; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.d.ts new file mode 100644 index 000000000..e89370c38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BAF3E6"; +declare const SiSalla: IconType; +export { SiSalla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.mjs new file mode 100644 index 000000000..1abd61fd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSalla.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BAF3E6"; +const SiSalla = React.forwardRef(function SiSalla2({ title = "Salla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.862 13.439a1.27 1.27 0 0 0-.81-.555 1.27 1.27 0 0 0-.964.18c-3.422 2.231-6.75 2.231-10.178 0a1.27 1.27 0 0 0-.964-.18 1.283 1.283 0 0 0-.434 2.327c2.142 1.394 4.326 2.1 6.49 2.1 2.166 0 4.348-.706 6.488-2.102a1.27 1.27 0 0 0 .555-.81 1.27 1.27 0 0 0-.18-.964zm5.103 2.82-1.171-9.764a5.24 5.24 0 0 0-5.2-4.614H6.406a5.236 5.236 0 0 0-5.198 4.612l-1.17 9.766a5.235 5.235 0 0 0 5.198 5.86h13.529a5.238 5.238 0 0 0 5.198-5.86zm-3.21 2.4c-.532.6-1.265.929-2.066.929H5.311c-.801 0-1.536-.33-2.066-.929a2.73 2.73 0 0 1-.676-2.16l1.157-9.657A2.764 2.764 0 0 1 6.468 4.41h11.064a2.765 2.765 0 0 1 2.742 2.432l1.157 9.656a2.72 2.72 0 0 1-.676 2.161" }) + ] + } + ); +}); + +export { SiSalla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.cjs new file mode 100644 index 000000000..419c31e4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#57BCAD"; +const SiSaltproject = React__namespace.forwardRef(function SiSaltproject2({ title = "Salt Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12v10.56h12L18 12h6V1.44H12L6 12Z" }) + ] + } + ); +}); + +exports.default = SiSaltproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.d.ts new file mode 100644 index 000000000..b8dc0331c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#57BCAD"; +declare const SiSaltproject: IconType; +export { SiSaltproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.mjs new file mode 100644 index 000000000..dc5f3a7dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaltproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#57BCAD"; +const SiSaltproject = React.forwardRef(function SiSaltproject2({ title = "Salt Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12v10.56h12L18 12h6V1.44H12L6 12Z" }) + ] + } + ); +}); + +export { SiSaltproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.cjs new file mode 100644 index 000000000..6e8654a77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0067A0"; +const SiSamsclub = React__namespace.forwardRef(function SiSamsclub2({ title = "Sams Club", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m14.275 1.71 9.403 9.504a1.119 1.119 0 0 1 .001 1.569l-9.401 9.507-1.624-1.64a1.136 1.136 0 0 1 0-1.596L19.631 12l-6.917-6.99a1.225 1.225 0 0 1 0-1.72l1.56-1.579zm-3.026 1.572L9.695 1.71.34 11.17a1.186 1.186 0 0 0 0 1.663l9.356 9.457 1.553-1.57a1.237 1.237 0 0 0 0-1.737L4.341 12l6.909-6.985a1.235 1.235 0 0 0-.001-1.734z" }) + ] + } + ); +}); + +exports.default = SiSamsclub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.d.ts new file mode 100644 index 000000000..20665b697 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0067A0"; +declare const SiSamsclub: IconType; +export { SiSamsclub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.mjs new file mode 100644 index 000000000..079c85946 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsclub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0067A0"; +const SiSamsclub = React.forwardRef(function SiSamsclub2({ title = "Sams Club", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m14.275 1.71 9.403 9.504a1.119 1.119 0 0 1 .001 1.569l-9.401 9.507-1.624-1.64a1.136 1.136 0 0 1 0-1.596L19.631 12l-6.917-6.99a1.225 1.225 0 0 1 0-1.72l1.56-1.579zm-3.026 1.572L9.695 1.71.34 11.17a1.186 1.186 0 0 0 0 1.663l9.356 9.457 1.553-1.57a1.237 1.237 0 0 0 0-1.737L4.341 12l6.909-6.985a1.235 1.235 0 0 0-.001-1.734z" }) + ] + } + ); +}); + +export { SiSamsclub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.cjs new file mode 100644 index 000000000..ce1d2ac1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1428A0"; +const SiSamsung = React__namespace.forwardRef(function SiSamsung2({ title = "Samsung", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.8166 10.2808l.0459 2.6934h-.023l-.7793-2.6934h-1.2837v3.3925h.8481l-.0458-2.785h.023l.8366 2.785h1.2264v-3.3925zm-16.149 0l-.6418 3.427h.9284l.4699-3.1175h.0229l.4585 3.1174h.9169l-.6304-3.4269zm5.1805 0l-.424 2.6132h-.023l-.424-2.6132H6.5788l-.0688 3.427h.8596l.023-3.0832h.0114l.573 3.0831h.8711l.5731-3.083h.023l.0228 3.083h.8596l-.0802-3.4269zm-7.2664 2.4527c.0343.0802.0229.1949.0114.2522-.0229.1146-.1031.2292-.3324.2292-.2177 0-.3438-.126-.3438-.3095v-.3323H0v.2636c0 .7679.6074.9971 1.2493.9971.6189 0 1.1346-.2178 1.2149-.7794.0458-.298.0114-.4928 0-.5616-.1605-.722-1.467-.9283-1.5588-1.3295-.0114-.0688-.0114-.1375 0-.1834.023-.1146.1032-.2292.3095-.2292.2063 0 .321.126.321.3095v.2063h.8595v-.2407c0-.745-.6762-.8596-1.1576-.8596-.6074 0-1.1117.2063-1.2034.7564-.023.149-.0344.2866.0114.4585.1376.7106 1.364.9169 1.5358 1.3524m11.152 0c.0343.0803.0228.1834.0114.2522-.023.1146-.1032.2292-.3324.2292-.2178 0-.3438-.126-.3438-.3095v-.3323h-.917v.2636c0 .7564.596.9857 1.2379.9857.6189 0 1.1232-.2063 1.2034-.7794.0459-.298.0115-.4814 0-.5616-.1375-.7106-1.4327-.9284-1.5243-1.318-.0115-.0688-.0115-.1376 0-.1835.0229-.1146.1031-.2292.3094-.2292.1948 0 .321.126.321.3095v.2063h.848v-.2407c0-.745-.6647-.8596-1.146-.8596-.6075 0-1.1004.1948-1.192.7564-.023.149-.023.2866.0114.4585.1376.7106 1.341.9054 1.513 1.3524m2.8882.4585c.2407 0 .3094-.1605.3323-.2522.0115-.0343.0115-.0917.0115-.126v-2.533h.871v2.4642c0 .0688 0 .1948-.0114.2292-.0573.6419-.5616.8482-1.192.8482-.6303 0-1.1346-.2063-1.192-.8482 0-.0344-.0114-.1604-.0114-.2292v-2.4642h.871v2.533c0 .0458 0 .0916.0115.126 0 .0917.0688.2522.3095.2522m7.1518-.0344c.2522 0 .3324-.1605.3553-.2522.0115-.0343.0115-.0917.0115-.126v-.4929h-.3553v-.5043H24v.917c0 .0687 0 .1145-.0115.2292-.0573.6303-.596.8481-1.2034.8481-.6075 0-1.1461-.2178-1.2034-.8481-.0115-.1147-.0115-.1605-.0115-.2293v-1.444c0-.0574.0115-.172.0115-.2293.0802-.6419.596-.8482 1.2034-.8482s1.1347.2063 1.2034.8482c.0115.1031.0115.2292.0115.2292v.1146h-.8596v-.1948s0-.0803-.0115-.1261c-.0114-.0802-.0802-.2521-.3438-.2521-.2521 0-.321.1604-.3438.2521-.0115.0458-.0115.1032-.0115.1605v1.5702c0 .0458 0 .0916.0115.126 0 .0917.0917.2522.3323.2522" }) + ] + } + ); +}); + +exports.default = SiSamsung; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.d.ts new file mode 100644 index 000000000..5a761baf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1428A0"; +declare const SiSamsung: IconType; +export { SiSamsung as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.mjs new file mode 100644 index 000000000..65263bcdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsung.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1428A0"; +const SiSamsung = React.forwardRef(function SiSamsung2({ title = "Samsung", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.8166 10.2808l.0459 2.6934h-.023l-.7793-2.6934h-1.2837v3.3925h.8481l-.0458-2.785h.023l.8366 2.785h1.2264v-3.3925zm-16.149 0l-.6418 3.427h.9284l.4699-3.1175h.0229l.4585 3.1174h.9169l-.6304-3.4269zm5.1805 0l-.424 2.6132h-.023l-.424-2.6132H6.5788l-.0688 3.427h.8596l.023-3.0832h.0114l.573 3.0831h.8711l.5731-3.083h.023l.0228 3.083h.8596l-.0802-3.4269zm-7.2664 2.4527c.0343.0802.0229.1949.0114.2522-.0229.1146-.1031.2292-.3324.2292-.2177 0-.3438-.126-.3438-.3095v-.3323H0v.2636c0 .7679.6074.9971 1.2493.9971.6189 0 1.1346-.2178 1.2149-.7794.0458-.298.0114-.4928 0-.5616-.1605-.722-1.467-.9283-1.5588-1.3295-.0114-.0688-.0114-.1375 0-.1834.023-.1146.1032-.2292.3095-.2292.2063 0 .321.126.321.3095v.2063h.8595v-.2407c0-.745-.6762-.8596-1.1576-.8596-.6074 0-1.1117.2063-1.2034.7564-.023.149-.0344.2866.0114.4585.1376.7106 1.364.9169 1.5358 1.3524m11.152 0c.0343.0803.0228.1834.0114.2522-.023.1146-.1032.2292-.3324.2292-.2178 0-.3438-.126-.3438-.3095v-.3323h-.917v.2636c0 .7564.596.9857 1.2379.9857.6189 0 1.1232-.2063 1.2034-.7794.0459-.298.0115-.4814 0-.5616-.1375-.7106-1.4327-.9284-1.5243-1.318-.0115-.0688-.0115-.1376 0-.1835.0229-.1146.1031-.2292.3094-.2292.1948 0 .321.126.321.3095v.2063h.848v-.2407c0-.745-.6647-.8596-1.146-.8596-.6075 0-1.1004.1948-1.192.7564-.023.149-.023.2866.0114.4585.1376.7106 1.341.9054 1.513 1.3524m2.8882.4585c.2407 0 .3094-.1605.3323-.2522.0115-.0343.0115-.0917.0115-.126v-2.533h.871v2.4642c0 .0688 0 .1948-.0114.2292-.0573.6419-.5616.8482-1.192.8482-.6303 0-1.1346-.2063-1.192-.8482 0-.0344-.0114-.1604-.0114-.2292v-2.4642h.871v2.533c0 .0458 0 .0916.0115.126 0 .0917.0688.2522.3095.2522m7.1518-.0344c.2522 0 .3324-.1605.3553-.2522.0115-.0343.0115-.0917.0115-.126v-.4929h-.3553v-.5043H24v.917c0 .0687 0 .1145-.0115.2292-.0573.6303-.596.8481-1.2034.8481-.6075 0-1.1461-.2178-1.2034-.8481-.0115-.1147-.0115-.1605-.0115-.2293v-1.444c0-.0574.0115-.172.0115-.2293.0802-.6419.596-.8482 1.2034-.8482s1.1347.2063 1.2034.8482c.0115.1031.0115.2292.0115.2292v.1146h-.8596v-.1948s0-.0803-.0115-.1261c-.0114-.0802-.0802-.2521-.3438-.2521-.2521 0-.321.1604-.3438.2521-.0115.0458-.0115.1032-.0115.1605v1.5702c0 .0458 0 .0916.0115.126 0 .0917.0917.2522.3323.2522" }) + ] + } + ); +}); + +export { SiSamsung as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.cjs new file mode 100644 index 000000000..a6c7dd5d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1428A0"; +const SiSamsungpay = React__namespace.forwardRef(function SiSamsungpay2({ title = "Samsung Pay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.703 17.387.617-1.5-1.205-2.795h.724l.817 1.98.776-1.98h.711l-1.752 4.295Zm-2.492-1.295c-.708 0-1.445-.569-1.445-1.528 0-.975.712-1.531 1.455-1.531.387 0 .735.16.946.411v-.352h.677v2.94h-.677v-.382a1.222 1.222 0 0 1-.956.442Zm-4.206-.06v-3.666h1.258c.759 0 1.32.581 1.32 1.305 0 .728-.562 1.312-1.325 1.312H.69v1.05zm4.315-.562c.503 0 .88-.407.88-.914 0-.497-.377-.906-.88-.906a.886.886 0 0 0-.888.906c0 .512.386.914.888.914zM.69 14.348h.52c.408 0 .686-.3.686-.677a.66.66 0 0 0-.685-.672H.69Zm.557-4.063C.603 10.285 0 10.055 0 9.29v-.265h.92l.002.333c0 .187.13.31.344.31.228 0 .305-.117.333-.232a.44.44 0 0 0-.005-.252C1.417 8.74.198 8.538.049 7.837a1.192 1.192 0 0 1-.007-.463c.09-.56.588-.76 1.198-.76.485 0 1.156.114 1.156.861v.242h-.854v-.213c0-.187-.12-.31-.32-.31-.215 0-.289.122-.313.232a.435.435 0 0 0 .002.18c.098.401 1.4.615 1.545 1.333.014.072.044.266.002.562-.081.573-.59.784-1.21.784zm11.154-.018c-.638 0-1.234-.227-1.234-.984V9.02h.911v.328c0 .185.129.31.341.31.227 0 .303-.117.331-.23a.438.438 0 0 0-.005-.25c-.175-.44-1.382-.641-1.529-1.336a1.166 1.166 0 0 1-.008-.458c.09-.554.585-.753 1.188-.753.48 0 1.143.115 1.143.855v.24h-.846v-.212c0-.185-.116-.307-.315-.307-.212 0-.289.12-.313.23a.435.435 0 0 0 .005.176c.096.398 1.385.61 1.529 1.32.015.073.044.265.003.558-.081.567-.586.776-1.2.776zm3.224-.013c-.63 0-1.138-.21-1.198-.85a2.792 2.792 0 0 1-.008-.223V6.72h.867v2.538c0 .044 0 .093.008.13.017.085.092.248.331.248.238 0 .311-.163.328-.248a.718.718 0 0 0 .008-.13V6.72h.867v2.461a2.94 2.94 0 0 1-.008.224c-.06.64-.564.849-1.195.849zm7.156-.037c-.608 0-1.148-.221-1.205-.846a2.518 2.518 0 0 1-.014-.227V7.702c0-.061.009-.17.016-.227.077-.641.595-.846 1.203-.846.608 0 1.14.203 1.203.846.011.11.008.227.008.227v.114h-.864v-.193s0-.08-.01-.13c-.016-.075-.082-.25-.345-.25-.249 0-.322.166-.34.25a.816.816 0 0 0-.014.162v1.567a.89.89 0 0 0 .008.13c.016.092.104.25.352.25s.333-.158.349-.25a.722.722 0 0 0 .008-.13v-.497h-.352v-.5H24v.92c0 .064-.003.112-.013.226-.057.625-.598.846-1.206.846zm-19.745-.065.636-3.432h1.526l.633 3.432h-.922l-.456-3.114-.02.002-.47 3.112Zm3.48 0L6.59 6.72h1.4l.421 2.625h.021l.422-2.625h1.399l.075 3.432h-.857l-.02-3.083H9.43l-.573 3.083h-.87L7.414 7.07h-.018l-.021 3.083Zm11.268-.036V6.72h1.273l.79 2.693h.018l-.047-2.693h.851v3.396h-1.221l-.849-2.787h-.018l.047 2.787z" }) + ] + } + ); +}); + +exports.default = SiSamsungpay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.d.ts new file mode 100644 index 000000000..04cae860b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1428A0"; +declare const SiSamsungpay: IconType; +export { SiSamsungpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.mjs new file mode 100644 index 000000000..e83e599d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSamsungpay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1428A0"; +const SiSamsungpay = React.forwardRef(function SiSamsungpay2({ title = "Samsung Pay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.703 17.387.617-1.5-1.205-2.795h.724l.817 1.98.776-1.98h.711l-1.752 4.295Zm-2.492-1.295c-.708 0-1.445-.569-1.445-1.528 0-.975.712-1.531 1.455-1.531.387 0 .735.16.946.411v-.352h.677v2.94h-.677v-.382a1.222 1.222 0 0 1-.956.442Zm-4.206-.06v-3.666h1.258c.759 0 1.32.581 1.32 1.305 0 .728-.562 1.312-1.325 1.312H.69v1.05zm4.315-.562c.503 0 .88-.407.88-.914 0-.497-.377-.906-.88-.906a.886.886 0 0 0-.888.906c0 .512.386.914.888.914zM.69 14.348h.52c.408 0 .686-.3.686-.677a.66.66 0 0 0-.685-.672H.69Zm.557-4.063C.603 10.285 0 10.055 0 9.29v-.265h.92l.002.333c0 .187.13.31.344.31.228 0 .305-.117.333-.232a.44.44 0 0 0-.005-.252C1.417 8.74.198 8.538.049 7.837a1.192 1.192 0 0 1-.007-.463c.09-.56.588-.76 1.198-.76.485 0 1.156.114 1.156.861v.242h-.854v-.213c0-.187-.12-.31-.32-.31-.215 0-.289.122-.313.232a.435.435 0 0 0 .002.18c.098.401 1.4.615 1.545 1.333.014.072.044.266.002.562-.081.573-.59.784-1.21.784zm11.154-.018c-.638 0-1.234-.227-1.234-.984V9.02h.911v.328c0 .185.129.31.341.31.227 0 .303-.117.331-.23a.438.438 0 0 0-.005-.25c-.175-.44-1.382-.641-1.529-1.336a1.166 1.166 0 0 1-.008-.458c.09-.554.585-.753 1.188-.753.48 0 1.143.115 1.143.855v.24h-.846v-.212c0-.185-.116-.307-.315-.307-.212 0-.289.12-.313.23a.435.435 0 0 0 .005.176c.096.398 1.385.61 1.529 1.32.015.073.044.265.003.558-.081.567-.586.776-1.2.776zm3.224-.013c-.63 0-1.138-.21-1.198-.85a2.792 2.792 0 0 1-.008-.223V6.72h.867v2.538c0 .044 0 .093.008.13.017.085.092.248.331.248.238 0 .311-.163.328-.248a.718.718 0 0 0 .008-.13V6.72h.867v2.461a2.94 2.94 0 0 1-.008.224c-.06.64-.564.849-1.195.849zm7.156-.037c-.608 0-1.148-.221-1.205-.846a2.518 2.518 0 0 1-.014-.227V7.702c0-.061.009-.17.016-.227.077-.641.595-.846 1.203-.846.608 0 1.14.203 1.203.846.011.11.008.227.008.227v.114h-.864v-.193s0-.08-.01-.13c-.016-.075-.082-.25-.345-.25-.249 0-.322.166-.34.25a.816.816 0 0 0-.014.162v1.567a.89.89 0 0 0 .008.13c.016.092.104.25.352.25s.333-.158.349-.25a.722.722 0 0 0 .008-.13v-.497h-.352v-.5H24v.92c0 .064-.003.112-.013.226-.057.625-.598.846-1.206.846zm-19.745-.065.636-3.432h1.526l.633 3.432h-.922l-.456-3.114-.02.002-.47 3.112Zm3.48 0L6.59 6.72h1.4l.421 2.625h.021l.422-2.625h1.399l.075 3.432h-.857l-.02-3.083H9.43l-.573 3.083h-.87L7.414 7.07h-.018l-.021 3.083Zm11.268-.036V6.72h1.273l.79 2.693h.018l-.047-2.693h.851v3.396h-1.221l-.849-2.787h-.018l.047 2.787z" }) + ] + } + ); +}); + +export { SiSamsungpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.cjs new file mode 100644 index 000000000..d9ad54d0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BA0C2F"; +const SiSanfranciscomunicipalrailway = React__namespace.forwardRef(function SiSanfranciscomunicipalrailway2({ title = "San Francisco Municipal Railway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.62 15.698v-4.847s0-.232-.237-.232c-.225 0-.225.232-.225.232v6.678h-.924V9.925s-.022-1.154 1.15-1.154c1.153 0 1.153 1.153 1.153 1.153v4.156s0 1.618 1.616 1.618c1.615 0 1.615-1.618 1.615-1.618V6.448h.924v9.25s0 2.073-2.54 2.073c-2.532 0-2.532-2.073-2.532-2.073m-5.542-1.607V6.448h.925v6.71s-.023.233.23.233c.254 0 .23-.232.23-.232v-6.71h.923v7.631s.095 1.157-1.153 1.157c-1.247 0-1.155-1.146-1.155-1.146m-8.306 1.146L2.77 10.85s0-.232-.23-.232c-.232 0-.232.232-.232.232v6.678h-.922V9.925s0-1.154 1.154-1.154 1.154 1.153 1.154 1.153v4.156s0 1.618 1.613 1.618c1.618 0 1.618-1.618 1.618-1.618V9.925s-.02-1.154 1.15-1.154c1.158 0 1.158 1.153 1.158 1.153v7.605H8.31v-6.678s0-.232-.237-.232c-.225 0-.225.232-.225.232v4.386s-.03 2.534-2.542 2.534c-2.513 0-2.535-2.534-2.535-2.534m19.385-8.789H24V17.53h-1.843zM9.695 15.237V9.924s0-1.61-1.62-1.61c-1.612 0-1.612 1.61-1.612 1.61v4.156s0 1.157-1.156 1.157c-1.154 0-1.154-1.157-1.154-1.157V9.925s0-1.611-1.613-1.611c-1.616 0-1.616 1.61-1.616 1.61v7.605H0V8.771s0-2.543 2.54-2.543 2.54 2.543 2.54 2.543l.01 4.42s-.01.2.217.2c.242 0 .235-.232.235-.232V8.77s0-2.543 2.532-2.543c2.545 0 2.54 2.543 2.54 2.543l.005 5.31s-.075 1.617 1.613 1.617c1.69 0 1.614-1.618 1.614-1.618l.002-5.31s0-2.541 2.535-2.541c2.537 0 2.537 2.542 2.537 2.542l.008 4.388s-.008.232.225.232c.23 0 .23-.232.23-.232v-6.71h.924v7.631s0 1.157-1.154 1.157c-1.157 0-1.157-1.157-1.157-1.157V9.925s0-1.611-1.613-1.611c-1.611 0-1.611 1.61-1.611 1.61v5.313s0 2.534-2.54 2.534c-2.537 0-2.537-2.534-2.537-2.534Z" }) + ] + } + ); +}); + +exports.default = SiSanfranciscomunicipalrailway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.d.ts new file mode 100644 index 000000000..75bd88582 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BA0C2F"; +declare const SiSanfranciscomunicipalrailway: IconType; +export { SiSanfranciscomunicipalrailway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.mjs new file mode 100644 index 000000000..f5303a450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanfranciscomunicipalrailway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BA0C2F"; +const SiSanfranciscomunicipalrailway = React.forwardRef(function SiSanfranciscomunicipalrailway2({ title = "San Francisco Municipal Railway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.62 15.698v-4.847s0-.232-.237-.232c-.225 0-.225.232-.225.232v6.678h-.924V9.925s-.022-1.154 1.15-1.154c1.153 0 1.153 1.153 1.153 1.153v4.156s0 1.618 1.616 1.618c1.615 0 1.615-1.618 1.615-1.618V6.448h.924v9.25s0 2.073-2.54 2.073c-2.532 0-2.532-2.073-2.532-2.073m-5.542-1.607V6.448h.925v6.71s-.023.233.23.233c.254 0 .23-.232.23-.232v-6.71h.923v7.631s.095 1.157-1.153 1.157c-1.247 0-1.155-1.146-1.155-1.146m-8.306 1.146L2.77 10.85s0-.232-.23-.232c-.232 0-.232.232-.232.232v6.678h-.922V9.925s0-1.154 1.154-1.154 1.154 1.153 1.154 1.153v4.156s0 1.618 1.613 1.618c1.618 0 1.618-1.618 1.618-1.618V9.925s-.02-1.154 1.15-1.154c1.158 0 1.158 1.153 1.158 1.153v7.605H8.31v-6.678s0-.232-.237-.232c-.225 0-.225.232-.225.232v4.386s-.03 2.534-2.542 2.534c-2.513 0-2.535-2.534-2.535-2.534m19.385-8.789H24V17.53h-1.843zM9.695 15.237V9.924s0-1.61-1.62-1.61c-1.612 0-1.612 1.61-1.612 1.61v4.156s0 1.157-1.156 1.157c-1.154 0-1.154-1.157-1.154-1.157V9.925s0-1.611-1.613-1.611c-1.616 0-1.616 1.61-1.616 1.61v7.605H0V8.771s0-2.543 2.54-2.543 2.54 2.543 2.54 2.543l.01 4.42s-.01.2.217.2c.242 0 .235-.232.235-.232V8.77s0-2.543 2.532-2.543c2.545 0 2.54 2.543 2.54 2.543l.005 5.31s-.075 1.617 1.613 1.617c1.69 0 1.614-1.618 1.614-1.618l.002-5.31s0-2.541 2.535-2.541c2.537 0 2.537 2.542 2.537 2.542l.008 4.388s-.008.232.225.232c.23 0 .23-.232.23-.232v-6.71h.924v7.631s0 1.157-1.154 1.157c-1.157 0-1.157-1.157-1.157-1.157V9.925s0-1.611-1.613-1.611c-1.611 0-1.611 1.61-1.611 1.61v5.313s0 2.534-2.54 2.534c-2.537 0-2.537-2.534-2.537-2.534Z" }) + ] + } + ); +}); + +export { SiSanfranciscomunicipalrailway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.cjs new file mode 100644 index 000000000..0ad457493 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0D68"; +const SiSanic = React__namespace.forwardRef(function SiSanic2({ title = "Sanic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0Zm-.703 6.676c.584-.01.694-.037 1.379-.037.758 0 .758.064 1.507.064.548 0 .767-.027 1.114-.036.064 0 .137 0 .219.018a.511.511 0 0 1 .237.11.84.84 0 0 1 .265.52c.01.11 0 .22-.027.329a.836.836 0 0 1-.365.493c-.037.018-.083.027-.12.037-.1.009-.255.018-.383.027-.246 0-.475-.01-.94-.01-.758 0-.758.056-1.507.056H11.15c-.183-.01-.274.009-.411-.046a.69.69 0 0 1-.22-.21.62.62 0 0 1-.1-.292c-.027-.676.119-1.014.877-1.023zM5.516 8.21c.256-.466.703-.776 1.169-1.032.447-.274.922-.466 1.48-.466.365 0 .447-.027.73-.036.256.018.301.018.438.128.146.146.265.32.302.538a.817.817 0 0 1-.183.63c-.356.311-.667.183-1.288.183-.42 0-.758.256-1.04.53-.275.283-.466.62-.466 1.041 0 .42.118.831.392 1.114.283.274.694.466 1.114.466.75 0 .75-.11 1.507-.11.75 0 .75-.018 1.498-.018.758 0 .758.137 1.507.137.246 0 .511-.1.721.082a.842.842 0 0 1 .302.54c.009.118 0 .227-.028.337-.146.447-.155.548-.995.557-.75 0-.75-.146-1.507-.146-.749 0-.749.119-1.498.119-.758 0-.758-.12-1.507-.12-.557 0-1.04-.109-1.497-.364-.466-.274-.895-.594-1.17-1.06-.255-.447-.337-.995-.337-1.534.009-.539.1-1.068.356-1.516zm3.251 8.557a.817.817 0 0 1-.155.292.703.703 0 0 1-.256.21c-.2.092-.575.055-.886.064-.73 0-.776-.036-1.516-.036a.778.778 0 0 1-.776-.786c.01-.41.393-.748.804-.748.721 0 .758-.037 1.48-.037.693.018.83-.027 1.04.146a.842.842 0 0 1 .302.539c.009.128-.01.247-.037.356zm9.516-.95c-.274.466-.648.804-1.114 1.078-.448.256-.94.41-1.48.41-.757 0-.757.065-1.506.065-.758 0-.758-.028-1.507-.028-.75 0-.75.037-1.507.037-.877-.027-1.507.137-1.598-.621a.746.746 0 0 1 .045-.347c.037-.11.1-.22.174-.31a.834.834 0 0 1 .274-.229c.347-.146.712-.091 1.114-.091.758 0 .758.064 1.507.064.758 0 .758.027 1.507.027.749 0 .749.037 1.507.037.42 0 .858-.192 1.123-.466.274-.283.365-.703.365-1.142 0-.42-.192-.748-.475-1.022-.274-.284-.593-.503-1.023-.503-.547.019-.913.073-1.114-.2a.62.62 0 0 1-.1-.293.746.746 0 0 1 .046-.347c.036-.11.1-.22.173-.31a.834.834 0 0 1 .274-.229c.183-.091.402-.055.73-.055.54 0 1.097.019 1.553.274.466.256.749.758 1.005 1.224.255.439.557.923.557 1.47-.01.558-.265 1.06-.53 1.507zm-.164-7.643c-.484 0-.393.009-.557.009-.32.009-.594.009-.758-.265a.695.695 0 0 1-.092-.274c-.009-.11 0-.229.037-.338.036-.11.073-.21.137-.329.137-.219.256-.283.484-.32.137-.036.502-.045.767-.027.438 0 .721.42.703.859a.698.698 0 0 1-.721.684z" }) + ] + } + ); +}); + +exports.default = SiSanic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.d.ts new file mode 100644 index 000000000..de6020401 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0D68"; +declare const SiSanic: IconType; +export { SiSanic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.mjs new file mode 100644 index 000000000..a8701a84e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0D68"; +const SiSanic = React.forwardRef(function SiSanic2({ title = "Sanic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0Zm-.703 6.676c.584-.01.694-.037 1.379-.037.758 0 .758.064 1.507.064.548 0 .767-.027 1.114-.036.064 0 .137 0 .219.018a.511.511 0 0 1 .237.11.84.84 0 0 1 .265.52c.01.11 0 .22-.027.329a.836.836 0 0 1-.365.493c-.037.018-.083.027-.12.037-.1.009-.255.018-.383.027-.246 0-.475-.01-.94-.01-.758 0-.758.056-1.507.056H11.15c-.183-.01-.274.009-.411-.046a.69.69 0 0 1-.22-.21.62.62 0 0 1-.1-.292c-.027-.676.119-1.014.877-1.023zM5.516 8.21c.256-.466.703-.776 1.169-1.032.447-.274.922-.466 1.48-.466.365 0 .447-.027.73-.036.256.018.301.018.438.128.146.146.265.32.302.538a.817.817 0 0 1-.183.63c-.356.311-.667.183-1.288.183-.42 0-.758.256-1.04.53-.275.283-.466.62-.466 1.041 0 .42.118.831.392 1.114.283.274.694.466 1.114.466.75 0 .75-.11 1.507-.11.75 0 .75-.018 1.498-.018.758 0 .758.137 1.507.137.246 0 .511-.1.721.082a.842.842 0 0 1 .302.54c.009.118 0 .227-.028.337-.146.447-.155.548-.995.557-.75 0-.75-.146-1.507-.146-.749 0-.749.119-1.498.119-.758 0-.758-.12-1.507-.12-.557 0-1.04-.109-1.497-.364-.466-.274-.895-.594-1.17-1.06-.255-.447-.337-.995-.337-1.534.009-.539.1-1.068.356-1.516zm3.251 8.557a.817.817 0 0 1-.155.292.703.703 0 0 1-.256.21c-.2.092-.575.055-.886.064-.73 0-.776-.036-1.516-.036a.778.778 0 0 1-.776-.786c.01-.41.393-.748.804-.748.721 0 .758-.037 1.48-.037.693.018.83-.027 1.04.146a.842.842 0 0 1 .302.539c.009.128-.01.247-.037.356zm9.516-.95c-.274.466-.648.804-1.114 1.078-.448.256-.94.41-1.48.41-.757 0-.757.065-1.506.065-.758 0-.758-.028-1.507-.028-.75 0-.75.037-1.507.037-.877-.027-1.507.137-1.598-.621a.746.746 0 0 1 .045-.347c.037-.11.1-.22.174-.31a.834.834 0 0 1 .274-.229c.347-.146.712-.091 1.114-.091.758 0 .758.064 1.507.064.758 0 .758.027 1.507.027.749 0 .749.037 1.507.037.42 0 .858-.192 1.123-.466.274-.283.365-.703.365-1.142 0-.42-.192-.748-.475-1.022-.274-.284-.593-.503-1.023-.503-.547.019-.913.073-1.114-.2a.62.62 0 0 1-.1-.293.746.746 0 0 1 .046-.347c.036-.11.1-.22.173-.31a.834.834 0 0 1 .274-.229c.183-.091.402-.055.73-.055.54 0 1.097.019 1.553.274.466.256.749.758 1.005 1.224.255.439.557.923.557 1.47-.01.558-.265 1.06-.53 1.507zm-.164-7.643c-.484 0-.393.009-.557.009-.32.009-.594.009-.758-.265a.695.695 0 0 1-.092-.274c-.009-.11 0-.229.037-.338.036-.11.073-.21.137-.329.137-.219.256-.283.484-.32.137-.036.502-.045.767-.027.438 0 .721.42.703.859a.698.698 0 0 1-.721.684z" }) + ] + } + ); +}); + +export { SiSanic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.cjs new file mode 100644 index 000000000..a5bd6d080 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D0E12"; +const SiSanity = React__namespace.forwardRef(function SiSanity2({ title = "Sanity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.327 15.205-.893-1.555-4.321 2.632 4.799-6.11.726-.426-.179-.27.33-.421-1.515-1.261-.693.883-13.992 8.186 5.173-6.221 9.636-5.282-.915-1.769-5.248 2.876 2.584-3.106-1.481-1.305-5.816 6.994-5.777 3.168 4.423-5.847 2.771-1.442-.88-1.789-8.075 4.203L6.186 4.43 4.648 3.198 0 9.349l.072.058.868 1.768 5.153-2.683-4.696 6.207.77.617.458.885 5.425-2.974-5.974 7.185 1.481 1.304.297-.358 14.411-8.459-4.785 6.094.078.065-.007.005.992 1.726 6.364-3.877-2.451 3.954 1.642 1.077L24 15.648z" }) + ] + } + ); +}); + +exports.default = SiSanity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.d.ts new file mode 100644 index 000000000..4d15b397e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D0E12"; +declare const SiSanity: IconType; +export { SiSanity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.mjs new file mode 100644 index 000000000..4f2d81804 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSanity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D0E12"; +const SiSanity = React.forwardRef(function SiSanity2({ title = "Sanity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.327 15.205-.893-1.555-4.321 2.632 4.799-6.11.726-.426-.179-.27.33-.421-1.515-1.261-.693.883-13.992 8.186 5.173-6.221 9.636-5.282-.915-1.769-5.248 2.876 2.584-3.106-1.481-1.305-5.816 6.994-5.777 3.168 4.423-5.847 2.771-1.442-.88-1.789-8.075 4.203L6.186 4.43 4.648 3.198 0 9.349l.072.058.868 1.768 5.153-2.683-4.696 6.207.77.617.458.885 5.425-2.974-5.974 7.185 1.481 1.304.297-.358 14.411-8.459-4.785 6.094.078.065-.007.005.992 1.726 6.364-3.877-2.451 3.954 1.642 1.077L24 15.648z" }) + ] + } + ); +}); + +export { SiSanity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.cjs new file mode 100644 index 000000000..ab93f5951 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004382"; +const SiSaopaulometro = React__namespace.forwardRef(function SiSaopaulometro2({ title = "São Paulo Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.366 6.543l5.092 5.456-5.092 5.456V6.543zM24 0v24H0V0h24zm-5.542 11.999l1.747-1.872L11.976 1.9l-8.227 8.228 1.747 1.871-1.747 1.871 8.227 8.229 8.228-8.229-1.746-1.871zm-7.87 5.455V6.543l-5.092 5.456 5.092 5.455z" }) + ] + } + ); +}); + +exports.default = SiSaopaulometro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.d.ts new file mode 100644 index 000000000..be970b021 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004382"; +declare const SiSaopaulometro: IconType; +export { SiSaopaulometro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.mjs new file mode 100644 index 000000000..c74b88bf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaopaulometro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004382"; +const SiSaopaulometro = React.forwardRef(function SiSaopaulometro2({ title = "São Paulo Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.366 6.543l5.092 5.456-5.092 5.456V6.543zM24 0v24H0V0h24zm-5.542 11.999l1.747-1.872L11.976 1.9l-8.227 8.228 1.747 1.871-1.747 1.871 8.227 8.229 8.228-8.229-1.746-1.871zm-7.87 5.455V6.543l-5.092 5.456 5.092 5.455z" }) + ] + } + ); +}); + +export { SiSaopaulometro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSap.cjs new file mode 100644 index 000000000..03da16f79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0FAAFF"; +const SiSap = React__namespace.forwardRef(function SiSap2({ title = "SAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6.064v11.872h12.13L24 6.064zm3.264 2.208h.005c.863.001 1.915.245 2.676.633l-.82 1.43c-.835-.404-1.255-.442-1.73-.467-.708-.038-1.064.215-1.069.488-.007.332.669.633 1.305.838.964.306 2.19.715 2.377 1.9L7.77 8.437h2.046l2.064 5.576-.007-5.575h2.37c2.257 0 3.318.764 3.318 2.519 0 1.575-1.09 2.514-2.936 2.514h-.763l-.01 2.094-3.588-.003-.25-.908c-.37.122-.787.189-1.23.189-.456 0-.885-.071-1.263-.2l-.358.919-2 .006.09-.462c-.029.025-.057.05-.087.074-.535.43-1.208.629-2.037.644l-.213.002a5.075 5.075 0 0 1-2.581-.675l.73-1.448c.79.467 1.286.572 1.956.558.347-.007.598-.07.761-.239a.557.557 0 0 0 .156-.369c.007-.376-.53-.553-1.185-.756-.531-.164-1.135-.389-1.606-.735-.559-.41-.825-.924-.812-1.65a1.99 1.99 0 0 1 .566-1.377c.519-.537 1.357-.863 2.363-.863zm10.597 1.67v1.904h.521c.694 0 1.247-.23 1.248-.964 0-.709-.554-.94-1.248-.94zm-5.087.767l-.748 2.362c.223.085.481.133.757.133.268 0 .52-.047.742-.126l-.736-2.37z" }) + ] + } + ); +}); + +exports.default = SiSap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSap.d.ts new file mode 100644 index 000000000..6a1e84577 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0FAAFF"; +declare const SiSap: IconType; +export { SiSap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSap.mjs new file mode 100644 index 000000000..ccdcaa764 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0FAAFF"; +const SiSap = React.forwardRef(function SiSap2({ title = "SAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6.064v11.872h12.13L24 6.064zm3.264 2.208h.005c.863.001 1.915.245 2.676.633l-.82 1.43c-.835-.404-1.255-.442-1.73-.467-.708-.038-1.064.215-1.069.488-.007.332.669.633 1.305.838.964.306 2.19.715 2.377 1.9L7.77 8.437h2.046l2.064 5.576-.007-5.575h2.37c2.257 0 3.318.764 3.318 2.519 0 1.575-1.09 2.514-2.936 2.514h-.763l-.01 2.094-3.588-.003-.25-.908c-.37.122-.787.189-1.23.189-.456 0-.885-.071-1.263-.2l-.358.919-2 .006.09-.462c-.029.025-.057.05-.087.074-.535.43-1.208.629-2.037.644l-.213.002a5.075 5.075 0 0 1-2.581-.675l.73-1.448c.79.467 1.286.572 1.956.558.347-.007.598-.07.761-.239a.557.557 0 0 0 .156-.369c.007-.376-.53-.553-1.185-.756-.531-.164-1.135-.389-1.606-.735-.559-.41-.825-.924-.812-1.65a1.99 1.99 0 0 1 .566-1.377c.519-.537 1.357-.863 2.363-.863zm10.597 1.67v1.904h.521c.694 0 1.247-.23 1.248-.964 0-.709-.554-.94-1.248-.94zm-5.087.767l-.748 2.362c.223.085.481.133.757.133.268 0 .52-.047.742-.126l-.736-2.37z" }) + ] + } + ); +}); + +export { SiSap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.cjs new file mode 100644 index 000000000..c0c8f958d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFED00"; +const SiSartorius = React__namespace.forwardRef(function SiSartorius2({ title = "Sartorius", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.3766 12.4988c0 .6105-.2898 1.0715-.9317 1.0715s-.9315-.4733-.9315-1.0715V9.988h-.588v2.51c0 .8212.5135 1.5959 1.5195 1.5959.9829 0 1.5097-.7747 1.5097-1.5958v-.1646h-.578zm-3.8398 1.5133h.588V9.988h-.588Zm-5.3263-4.0183h-.095v.5125h.095c.8374 0 1.498.6697 1.498 1.5316 0 .8678-.6606 1.5375-1.498 1.5375s-1.4991-.6697-1.4991-1.5375h-.5463c0 1.1473.905 2.05 2.0454 2.05s2.0442-.9027 2.0442-2.05c0-1.1415-.9038-2.044-2.0442-2.044m11.052 1.7986c-.2856-.1283-.6287-.1934-.8787-.2983-.2737-.1168-.3738-.2753-.3738-.5377 0-.315.2618-.5543.6604-.5543.5237 0 .768.2568.7796.6302h.5294c.0178-.5835-.4045-1.1262-1.309-1.1262-.7437 0-1.2386.4611-1.2386 1.0445 0 .495.231.7768.5999.9751.2856.1517.5851.1868.8648.2917.4089.1513.5329.3598.5329.6551 0 .4044-.278.6626-.7362.6626h-.058v.4782h.0348c.8139 0 1.33-.5083 1.33-1.1435.0001-.4174-.2027-.8387-.7375-1.0774m-6.4054-.5346c0-.728-.5226-1.2695-1.277-1.2695h-1.194v.5302h1.1752c.38 0 .7484.297.7484.739 0 .4252-.3387.7455-.7662.7455h-.62v.53l.467-.0046.7814 1.484h.6475l-.8442-1.552c.4416-.1346.8819-.5913.8819-1.2032ZM11.3194 9.988H8.3478v.5293h.7138v3.495h.5819v-3.495h1.6759zm-7.312 0L2.469 14.0123h.5705l1.2708-3.3314 1.3126 3.3314h.6118L4.6132 9.988ZM.553 12.761v-.215H.0005v.2147c-.0178.652.4202 1.2525 1.412 1.2525h.0355v-.4887h-.0356c-.5287 0-.8594-.3379-.8594-.7632zm1.4118-.9614c-.2852-.128-.6474-.198-.897-.303-.2732-.1159-.3564-.2795-.3564-.5417 0-.3146.2608-.5534.6594-.5534.5227 0 .7662.2563.7781.6292h.5285c.0178-.5827-.4039-1.1245-1.3069-1.1245-.7426 0-1.2415.4602-1.2416 1.0433 0 .466.1903.7806.5822.9785.2852.145.594.1865.8733.2913.297.1107.41.204.4514.3671h.6c-.0829-.3437-.3146-.6229-.671-.7865zm6.1307-.5426c0-.728-.5226-1.2695-1.277-1.2695h-1.216v.53h1.1972c.38 0 .7483.297.7483.739 0 .4252-.3385.7454-.7661.7454h-.6415v.53l.4894-.0046.7812 1.484h.6474l-.8437-1.552c.4405-.1334.8808-.59.8808-1.202z" }) + ] + } + ); +}); + +exports.default = SiSartorius; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.d.ts new file mode 100644 index 000000000..4bce1c751 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFED00"; +declare const SiSartorius: IconType; +export { SiSartorius as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.mjs new file mode 100644 index 000000000..8afbb4614 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSartorius.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFED00"; +const SiSartorius = React.forwardRef(function SiSartorius2({ title = "Sartorius", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.3766 12.4988c0 .6105-.2898 1.0715-.9317 1.0715s-.9315-.4733-.9315-1.0715V9.988h-.588v2.51c0 .8212.5135 1.5959 1.5195 1.5959.9829 0 1.5097-.7747 1.5097-1.5958v-.1646h-.578zm-3.8398 1.5133h.588V9.988h-.588Zm-5.3263-4.0183h-.095v.5125h.095c.8374 0 1.498.6697 1.498 1.5316 0 .8678-.6606 1.5375-1.498 1.5375s-1.4991-.6697-1.4991-1.5375h-.5463c0 1.1473.905 2.05 2.0454 2.05s2.0442-.9027 2.0442-2.05c0-1.1415-.9038-2.044-2.0442-2.044m11.052 1.7986c-.2856-.1283-.6287-.1934-.8787-.2983-.2737-.1168-.3738-.2753-.3738-.5377 0-.315.2618-.5543.6604-.5543.5237 0 .768.2568.7796.6302h.5294c.0178-.5835-.4045-1.1262-1.309-1.1262-.7437 0-1.2386.4611-1.2386 1.0445 0 .495.231.7768.5999.9751.2856.1517.5851.1868.8648.2917.4089.1513.5329.3598.5329.6551 0 .4044-.278.6626-.7362.6626h-.058v.4782h.0348c.8139 0 1.33-.5083 1.33-1.1435.0001-.4174-.2027-.8387-.7375-1.0774m-6.4054-.5346c0-.728-.5226-1.2695-1.277-1.2695h-1.194v.5302h1.1752c.38 0 .7484.297.7484.739 0 .4252-.3387.7455-.7662.7455h-.62v.53l.467-.0046.7814 1.484h.6475l-.8442-1.552c.4416-.1346.8819-.5913.8819-1.2032ZM11.3194 9.988H8.3478v.5293h.7138v3.495h.5819v-3.495h1.6759zm-7.312 0L2.469 14.0123h.5705l1.2708-3.3314 1.3126 3.3314h.6118L4.6132 9.988ZM.553 12.761v-.215H.0005v.2147c-.0178.652.4202 1.2525 1.412 1.2525h.0355v-.4887h-.0356c-.5287 0-.8594-.3379-.8594-.7632zm1.4118-.9614c-.2852-.128-.6474-.198-.897-.303-.2732-.1159-.3564-.2795-.3564-.5417 0-.3146.2608-.5534.6594-.5534.5227 0 .7662.2563.7781.6292h.5285c.0178-.5827-.4039-1.1245-1.3069-1.1245-.7426 0-1.2415.4602-1.2416 1.0433 0 .466.1903.7806.5822.9785.2852.145.594.1865.8733.2913.297.1107.41.204.4514.3671h.6c-.0829-.3437-.3146-.6229-.671-.7865zm6.1307-.5426c0-.728-.5226-1.2695-1.277-1.2695h-1.216v.53h1.1972c.38 0 .7483.297.7483.739 0 .4252-.3385.7454-.7661.7454h-.6415v.53l.4894-.0046.7812 1.484h.6474l-.8437-1.552c.4405-.1334.8808-.59.8808-1.202z" }) + ] + } + ); +}); + +export { SiSartorius as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSass.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSass.cjs new file mode 100644 index 000000000..138b70a82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSass.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC6699"; +const SiSass = React__namespace.forwardRef(function SiSass2({ title = "Sass", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0zM9.615 15.998c.175.645.156 1.248-.024 1.792l-.065.18c-.024.061-.052.12-.078.176-.14.29-.326.56-.555.81-.698.759-1.672 1.047-2.09.805-.45-.262-.226-1.335.584-2.19.871-.918 2.12-1.509 2.12-1.509v-.003l.108-.061zm9.911-10.861c-.542-2.133-4.077-2.834-7.422-1.645-1.989.707-4.144 1.818-5.693 3.267C4.568 8.48 4.275 9.98 4.396 10.607c.427 2.211 3.457 3.657 4.703 4.73v.006c-.367.18-3.056 1.529-3.686 2.925-.675 1.47.105 2.521.615 2.655 1.575.436 3.195-.36 4.065-1.649.84-1.261.766-2.881.404-3.676.496-.135 1.08-.195 1.83-.104 2.101.24 2.521 1.56 2.43 2.1-.09.539-.523.854-.674.944-.15.091-.195.12-.181.181.015.09.091.09.21.075.165-.03 1.096-.45 1.141-1.471.045-1.29-1.186-2.729-3.375-2.7-.9.016-1.471.091-1.875.256-.03-.045-.061-.075-.105-.105-1.35-1.455-3.855-2.475-3.75-4.41.03-.705.285-2.564 4.8-4.814 3.705-1.846 6.661-1.335 7.171-.21.733 1.604-1.576 4.59-5.431 5.024-1.47.165-2.235-.404-2.431-.615-.209-.225-.239-.24-.314-.194-.12.06-.045.255 0 .375.12.3.585.825 1.396 1.095.704.225 2.43.359 4.5-.45 2.324-.899 4.139-3.405 3.614-5.505l.073.067z" }) + ] + } + ); +}); + +exports.default = SiSass; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSass.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSass.d.ts new file mode 100644 index 000000000..9f27550b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSass.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC6699"; +declare const SiSass: IconType; +export { SiSass as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSass.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSass.mjs new file mode 100644 index 000000000..9ed90dc6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSass.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC6699"; +const SiSass = React.forwardRef(function SiSass2({ title = "Sass", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0zM9.615 15.998c.175.645.156 1.248-.024 1.792l-.065.18c-.024.061-.052.12-.078.176-.14.29-.326.56-.555.81-.698.759-1.672 1.047-2.09.805-.45-.262-.226-1.335.584-2.19.871-.918 2.12-1.509 2.12-1.509v-.003l.108-.061zm9.911-10.861c-.542-2.133-4.077-2.834-7.422-1.645-1.989.707-4.144 1.818-5.693 3.267C4.568 8.48 4.275 9.98 4.396 10.607c.427 2.211 3.457 3.657 4.703 4.73v.006c-.367.18-3.056 1.529-3.686 2.925-.675 1.47.105 2.521.615 2.655 1.575.436 3.195-.36 4.065-1.649.84-1.261.766-2.881.404-3.676.496-.135 1.08-.195 1.83-.104 2.101.24 2.521 1.56 2.43 2.1-.09.539-.523.854-.674.944-.15.091-.195.12-.181.181.015.09.091.09.21.075.165-.03 1.096-.45 1.141-1.471.045-1.29-1.186-2.729-3.375-2.7-.9.016-1.471.091-1.875.256-.03-.045-.061-.075-.105-.105-1.35-1.455-3.855-2.475-3.75-4.41.03-.705.285-2.564 4.8-4.814 3.705-1.846 6.661-1.335 7.171-.21.733 1.604-1.576 4.59-5.431 5.024-1.47.165-2.235-.404-2.431-.615-.209-.225-.239-.24-.314-.194-.12.06-.045.255 0 .375.12.3.585.825 1.396 1.095.704.225 2.43.359 4.5-.45 2.324-.899 4.139-3.405 3.614-5.505l.073.067z" }) + ] + } + ); +}); + +export { SiSass as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.cjs new file mode 100644 index 000000000..6c96cc4af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#047DA3"; +const SiSat1 = React__namespace.forwardRef(function SiSat12({ title = "Sat.1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.3437.0066c-.292.01-.586.028-.881.06-10.092 1.088-6.4994 16.6226-5.9704 18.1375-3.9647-8.4243-1.6329-13.7038.118-15.4917.049-.05-.004-.136-.05-.095C.6046 5.8241.2506 9.4498.2506 9.4498c-.684 3.9517 3.1578 7.8334 4.2457 8.7653C1.5295 16.2152.6556 14.7794.1146 12.7985c-.016-.06-.118-.08-.113 0 .081 1.064.185 2.4898 1.005 4.1737.7519.9729 2.8147 1.2469 3.4897 1.2459h.003l-.003-.006C5.3792 14.9634 7.17 9.2928 9.9908 5.473 12.7185 1.9356 14.8204.8237 15.3933.5687c.048-.023.025-.077-.03-.114-.128-.082-1.9788-.513-4.0196-.448zM4.4983 18.2191c.7149 1.2099 2.9297 4.5456 6.9754 5.6995 1.3818.277 5.6175-.02 8.6012-3.0108.054-.053.007-.175-.106-.099-1.9698 1.344-8.1393 2.6818-15.4706-2.5897zl-.003.002c-1.053.447-2.2199.28-2.7298.044-.065-.031-.125-.02-.09.044.748 1.2639 1.1659 1.6998 2.1098 2.5448.051.053.104.04.08-.064-.01-.046-.189-1.342.63-2.5648-.105.822-.206 3.1047.6919 3.7107 1.0579.7219 2.1468 1.4138 4.0836 1.8288.076.018.145-.071.071-.11-3.1657-1.5458-3.9116-3.4737-4.8445-5.4325zM17.612 1.3985c-.226.026-.462.215-1.0159.552C9.9728 6.36 5.0582 17.0342 4.4982 18.215c0 0 11.0691-2.3898 17.8545-9.2892 1.06-1.085 1.138-.85.64-2.0538-.239-.597-.866-1.8129-1.9499-3.0358-.8539-.9549-1.9698-1.7028-2.4658-2.0098-.52-.316-.7379-.454-.9649-.428zM4.4983 18.2151c1.3628.78 16.1146 7.0634 18.9573-2.7248.665-2.2838.576-4.6746.468-4.9636-.022-.062-.073-.034-.076-.014-.35.516-1.8279 2.4198-5.7795 4.4947C13.8265 17.1182 7.84 17.913 4.4993 18.215z" }) + ] + } + ); +}); + +exports.default = SiSat1; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.d.ts new file mode 100644 index 000000000..8db12a3e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#047DA3"; +declare const SiSat1: IconType; +export { SiSat1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.mjs new file mode 100644 index 000000000..b873e4888 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSat1.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#047DA3"; +const SiSat1 = React.forwardRef(function SiSat12({ title = "Sat.1", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.3437.0066c-.292.01-.586.028-.881.06-10.092 1.088-6.4994 16.6226-5.9704 18.1375-3.9647-8.4243-1.6329-13.7038.118-15.4917.049-.05-.004-.136-.05-.095C.6046 5.8241.2506 9.4498.2506 9.4498c-.684 3.9517 3.1578 7.8334 4.2457 8.7653C1.5295 16.2152.6556 14.7794.1146 12.7985c-.016-.06-.118-.08-.113 0 .081 1.064.185 2.4898 1.005 4.1737.7519.9729 2.8147 1.2469 3.4897 1.2459h.003l-.003-.006C5.3792 14.9634 7.17 9.2928 9.9908 5.473 12.7185 1.9356 14.8204.8237 15.3933.5687c.048-.023.025-.077-.03-.114-.128-.082-1.9788-.513-4.0196-.448zM4.4983 18.2191c.7149 1.2099 2.9297 4.5456 6.9754 5.6995 1.3818.277 5.6175-.02 8.6012-3.0108.054-.053.007-.175-.106-.099-1.9698 1.344-8.1393 2.6818-15.4706-2.5897zl-.003.002c-1.053.447-2.2199.28-2.7298.044-.065-.031-.125-.02-.09.044.748 1.2639 1.1659 1.6998 2.1098 2.5448.051.053.104.04.08-.064-.01-.046-.189-1.342.63-2.5648-.105.822-.206 3.1047.6919 3.7107 1.0579.7219 2.1468 1.4138 4.0836 1.8288.076.018.145-.071.071-.11-3.1657-1.5458-3.9116-3.4737-4.8445-5.4325zM17.612 1.3985c-.226.026-.462.215-1.0159.552C9.9728 6.36 5.0582 17.0342 4.4982 18.215c0 0 11.0691-2.3898 17.8545-9.2892 1.06-1.085 1.138-.85.64-2.0538-.239-.597-.866-1.8129-1.9499-3.0358-.8539-.9549-1.9698-1.7028-2.4658-2.0098-.52-.316-.7379-.454-.9649-.428zM4.4983 18.2151c1.3628.78 16.1146 7.0634 18.9573-2.7248.665-2.2838.576-4.6746.468-4.9636-.022-.062-.073-.034-.076-.014-.35.516-1.8279 2.4198-5.7795 4.4947C13.8265 17.1182 7.84 17.913 4.4993 18.215z" }) + ] + } + ); +}); + +export { SiSat1 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.cjs new file mode 100644 index 000000000..ff6a1fbff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSatellite = React__namespace.forwardRef(function SiSatellite2({ title = "Satellite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.413 7.62c.042 0 .063.02.105.02.062 0 .148-.02.21-.061l.736-.415c.21-.124.273-.372.148-.559l-.946-1.635a.374.374 0 0 0-.253-.187c-.105-.02-.23-.02-.315.042l-.735.414c-.211.125-.274.373-.148.56l.946 1.635c.042.082.147.145.252.186zm3.699 4.06-.735.413c-.21.125-.274.374-.148.56l.946 1.635a.373.373 0 0 0 .253.187c.041 0 .062.02.104.02a.409.409 0 0 0 .211-.062l.735-.414c.21-.125.274-.373.148-.56l-.946-1.635a.375.375 0 0 0-.252-.187.558.558 0 0 0-.316.042ZM11.989 0C6.105 0 1.333 4.7 1.333 10.499c0 .953.127 1.884.379 2.795.147.56.735.87 1.282.725.567-.145.882-.725.736-1.263a8.098 8.098 0 0 1-.316-2.237C3.436 5.86 7.28 2.071 11.99 2.071s8.555 3.79 8.555 8.428c0 3.189-1.787 6.067-4.667 7.517a6.35 6.35 0 0 1-.861.372c-.126.041-.252.104-.4.145a1.046 1.046 0 0 0-.735.994c0 .498.084 1.056.274 1.657l-2.46-1.305c-.987-.517-1.955-1.056-2.753-1.822-.904-.87-1.198-1.429-1.282-2.444-.084-.931.147-1.594.904-2.505.4-.497.924-.85 1.344-1.097.4-.25.82-.477 1.262-.685a2.097 2.097 0 0 0 2.27.146 2.053 2.053 0 0 0 .798-2.816c-.567-.995-1.849-1.347-2.858-.788a2.021 2.021 0 0 0-1.051 1.575c-.525.249-1.05.538-1.534.849-.547.331-1.262.828-1.87 1.573-.758.932-1.514 2.133-1.367 3.976.126 1.532.631 2.527 1.892 3.748 1.009.974 2.101 1.595 3.258 2.196l3.95 2.05c.211.103.463.165.694.165.379 0 .736-.145 1.009-.394a1.41 1.41 0 0 0 .315-1.656 7.646 7.646 0 0 1-.588-1.677c.252-.104.505-.229.756-.332 3.595-1.801 5.823-5.384 5.823-9.36C22.645 4.701 17.875 0 11.989 0Z" }) + ] + } + ); +}); + +exports.default = SiSatellite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.d.ts new file mode 100644 index 000000000..a7c4abc45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSatellite: IconType; +export { SiSatellite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.mjs new file mode 100644 index 000000000..36165b34a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSatellite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSatellite = React.forwardRef(function SiSatellite2({ title = "Satellite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.413 7.62c.042 0 .063.02.105.02.062 0 .148-.02.21-.061l.736-.415c.21-.124.273-.372.148-.559l-.946-1.635a.374.374 0 0 0-.253-.187c-.105-.02-.23-.02-.315.042l-.735.414c-.211.125-.274.373-.148.56l.946 1.635c.042.082.147.145.252.186zm3.699 4.06-.735.413c-.21.125-.274.374-.148.56l.946 1.635a.373.373 0 0 0 .253.187c.041 0 .062.02.104.02a.409.409 0 0 0 .211-.062l.735-.414c.21-.125.274-.373.148-.56l-.946-1.635a.375.375 0 0 0-.252-.187.558.558 0 0 0-.316.042ZM11.989 0C6.105 0 1.333 4.7 1.333 10.499c0 .953.127 1.884.379 2.795.147.56.735.87 1.282.725.567-.145.882-.725.736-1.263a8.098 8.098 0 0 1-.316-2.237C3.436 5.86 7.28 2.071 11.99 2.071s8.555 3.79 8.555 8.428c0 3.189-1.787 6.067-4.667 7.517a6.35 6.35 0 0 1-.861.372c-.126.041-.252.104-.4.145a1.046 1.046 0 0 0-.735.994c0 .498.084 1.056.274 1.657l-2.46-1.305c-.987-.517-1.955-1.056-2.753-1.822-.904-.87-1.198-1.429-1.282-2.444-.084-.931.147-1.594.904-2.505.4-.497.924-.85 1.344-1.097.4-.25.82-.477 1.262-.685a2.097 2.097 0 0 0 2.27.146 2.053 2.053 0 0 0 .798-2.816c-.567-.995-1.849-1.347-2.858-.788a2.021 2.021 0 0 0-1.051 1.575c-.525.249-1.05.538-1.534.849-.547.331-1.262.828-1.87 1.573-.758.932-1.514 2.133-1.367 3.976.126 1.532.631 2.527 1.892 3.748 1.009.974 2.101 1.595 3.258 2.196l3.95 2.05c.211.103.463.165.694.165.379 0 .736-.145 1.009-.394a1.41 1.41 0 0 0 .315-1.656 7.646 7.646 0 0 1-.588-1.677c.252-.104.505-.229.756-.332 3.595-1.801 5.823-5.384 5.823-9.36C22.645 4.701 17.875 0 11.989 0Z" }) + ] + } + ); +}); + +export { SiSatellite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.cjs new file mode 100644 index 000000000..1fa9737dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB680B"; +const SiSaturn = React__namespace.forwardRef(function SiSaturn2({ title = "Saturn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.039 11.459c.001.015.022.244.03.407.006.113 0 .29 0 .3.003 0 .029.023.03.024 1.428 1.17 2.943 2.767 3.204 3.94.073.325.056.618-.072.868-.152.293-.439.503-.834.638-2.046.7-6.925-.642-10.907-2.609-2.845-1.406-5.342-3.081-7.032-4.719-1.57-1.523-1.995-2.71-1.59-3.427.155-.271.42-.472.776-.609 1.299-.507 3.788-.152 6.239.579-1.16.866-1.968 2.034-2.342 3.202l-.001.007a.051.051 0 0 1-.001.006c-.115 1.07 1.434 2.47 3 3.25-.002-.006.084.032.084.026-.002-.006-.015-.109-.017-.113-.366-2.66 1.648-6.64 3.765-7.513.136-.056.254-.09.27-.095l-.273-.027c-.074-.006-.148-.013-.228-.015a7.464 7.464 0 0 0-.272-.01 6.443 6.443 0 0 0-3.4.892C5.378 5.057 2.383 4.892 1.13 5.31c-.497.167-.833.418-1 .751-.174.35-.175.79-.002 1.306.57 1.704 3.058 4.032 6.211 6.099.457 2.407 2.615 4.875 5.703 5.204l.142.015a.278.278 0 0 1 .05 0 6.618 6.618 0 0 0-.173-.132c-.955-.736-1.813-1.949-2.107-3l.185.093.143.07c4.985 2.465 10.215 3.72 12.53 2.947.519-.174.9-.418 1.075-.768.167-.335.139-.78-.029-1.278-.436-1.3-2.304-3.284-4.675-5.052a5.003 5.003 0 0 0-.145-.107" }) + ] + } + ); +}); + +exports.default = SiSaturn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.d.ts new file mode 100644 index 000000000..c05865dd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB680B"; +declare const SiSaturn: IconType; +export { SiSaturn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.mjs new file mode 100644 index 000000000..fdc650cfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaturn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB680B"; +const SiSaturn = React.forwardRef(function SiSaturn2({ title = "Saturn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.039 11.459c.001.015.022.244.03.407.006.113 0 .29 0 .3.003 0 .029.023.03.024 1.428 1.17 2.943 2.767 3.204 3.94.073.325.056.618-.072.868-.152.293-.439.503-.834.638-2.046.7-6.925-.642-10.907-2.609-2.845-1.406-5.342-3.081-7.032-4.719-1.57-1.523-1.995-2.71-1.59-3.427.155-.271.42-.472.776-.609 1.299-.507 3.788-.152 6.239.579-1.16.866-1.968 2.034-2.342 3.202l-.001.007a.051.051 0 0 1-.001.006c-.115 1.07 1.434 2.47 3 3.25-.002-.006.084.032.084.026-.002-.006-.015-.109-.017-.113-.366-2.66 1.648-6.64 3.765-7.513.136-.056.254-.09.27-.095l-.273-.027c-.074-.006-.148-.013-.228-.015a7.464 7.464 0 0 0-.272-.01 6.443 6.443 0 0 0-3.4.892C5.378 5.057 2.383 4.892 1.13 5.31c-.497.167-.833.418-1 .751-.174.35-.175.79-.002 1.306.57 1.704 3.058 4.032 6.211 6.099.457 2.407 2.615 4.875 5.703 5.204l.142.015a.278.278 0 0 1 .05 0 6.618 6.618 0 0 0-.173-.132c-.955-.736-1.813-1.949-2.107-3l.185.093.143.07c4.985 2.465 10.215 3.72 12.53 2.947.519-.174.9-.418 1.075-.768.167-.335.139-.78-.029-1.278-.436-1.3-2.304-3.284-4.675-5.052a5.003 5.003 0 0 0-.145-.107" }) + ] + } + ); +}); + +export { SiSaturn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.cjs new file mode 100644 index 000000000..5eb382758 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DDC91"; +const SiSaucelabs = React__namespace.forwardRef(function SiSaucelabs2({ title = "Sauce Labs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.4337 7.344c-.5641-.7664-1.469-1.2197-2.4343-1.2197H13.999L11.9993 12h4.8377l-1.9998 5.8755H9.9995l-1.9997 5.8755h9.0001c1.2912 0 2.438-.8086 2.8466-2.0088L23.846 9.9922c.3049-.8957.1518-1.8807-.4123-2.647Zm-13.434 4.655H7.1618l1.9997-5.8756h4.8378l2.001-5.8743H7c-1.2912 0-2.438.8086-2.8466 2.0089L.154 14.0079c-.3049.8956-.1518 1.8807.4123 2.647.5641.7663 1.469 1.2196 2.4343 1.2196h7.0004l1.9998-5.8755H10.001z" }) + ] + } + ); +}); + +exports.default = SiSaucelabs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.d.ts new file mode 100644 index 000000000..84de93643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DDC91"; +declare const SiSaucelabs: IconType; +export { SiSaucelabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.mjs new file mode 100644 index 000000000..4f22b40f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaucelabs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DDC91"; +const SiSaucelabs = React.forwardRef(function SiSaucelabs2({ title = "Sauce Labs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.4337 7.344c-.5641-.7664-1.469-1.2197-2.4343-1.2197H13.999L11.9993 12h4.8377l-1.9998 5.8755H9.9995l-1.9997 5.8755h9.0001c1.2912 0 2.438-.8086 2.8466-2.0088L23.846 9.9922c.3049-.8957.1518-1.8807-.4123-2.647Zm-13.434 4.655H7.1618l1.9997-5.8756h4.8378l2.001-5.8743H7c-1.2912 0-2.438.8086-2.8466 2.0089L.154 14.0079c-.3049.8956-.1518 1.8807.4123 2.647.5641.7663 1.469 1.2196 2.4343 1.2196h7.0004l1.9998-5.8755H10.001z" }) + ] + } + ); +}); + +export { SiSaucelabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.cjs new file mode 100644 index 000000000..f7363dd53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#026938"; +const SiSaudia = React__namespace.forwardRef(function SiSaudia2({ title = "Saudia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.759 5.065c.9467.2206 1.5774.709 1.5774.709s-.5652-.8898-1.4944-1.2994c-.6905-.3046-1.3669-.3084-1.8968-.2284.0425-.085.0968-.1617.1663-.2254.163-.15.3462-.2365.3462-.2365s-.3924-.0987-.7332.0296c-.1759.0663-.3144.1633-.419.2553a2.8126 2.8126 0 0 0-.0561-.2997c-.0403-.1636-.233-.5137-.2496-.5435-.0165.0299-.2093.38-.2495.5435a2.8656 2.8656 0 0 0-.0562.2997c-.1045-.092-.243-.189-.419-.2553-.3408-.1283-.7332-.0296-.7332-.0296s.1833.0864.3463.2365c.0695.0638.1238.1404.1663.2254-.53-.08-1.2063-.0762-1.8968.2284-.9293.4096-1.4944 1.2994-1.4944 1.2994s.6306-.4884 1.5773-.709c.4664-.1084.899-.1047 1.2687-.0558-.5924.129-1.4224.4374-2.0342 1.2166-.5328.6783-.6693 1.627-.6693 1.627s.4324-.554 1.1608-1.172a5.3466 5.3466 0 0 1 1.2083-.773c-.4536.4305-.6782 1.091-.769 1.3414-.2762.7628-.0991 1.6102-.0991 1.6102s.1166-.5536.5411-1.2737c.3025-.5135.6921-.9026 1.0187-1.1704-.3908 1.4485.0125 2.8744.0125 2.8744s.2446-1.0975.6126-2.0282c.1566-.396.3362-.6952.5082-.9193.1721.2241.3517.5232.5083.9193.368.9307.6125 2.0282.6125 2.0282s.4033-1.4259.0125-2.8744c.3266.2678.7163.6569 1.0188 1.1704.4245.72.5411 1.2737.5411 1.2737s.177-.8474-.0992-1.6102c-.0908-.2504-.3154-.9109-.7688-1.3415a5.3497 5.3497 0 0 1 1.2082.7732c.7284.618 1.1607 1.172 1.1607 1.172s-.1364-.9488-.6693-1.627c-.6117-.7793-1.4418-1.0878-2.0343-1.2167.3696-.049.8023-.0526 1.2687.0559zM11.257 9.9964.1124 7.7623c-.0887-.0176-.1485.088-.0877.1547l3.5377 3.9094c1.0824-.1919 2.1748-.2009 3.2488.0342 1.6084.352 3.1082 1.0626 4.5816 1.7776zm-3.0057 7.0091-.6383-.7071c.4314-.2386.861-.4798 1.2878-.7262.7147-.4125 1.4164-.8508 2.1327-1.2622-1.6736-.961-2.9471-1.5586-4.0263-1.9281-1.089-.4295-2.2841-.5153-3.4447-.5554l4.0445 4.4695c-.0184.014-.153.1136-.377.246-1.339.7925-2.1517.9026-3.2395.983 1.0017.2088 1.4249.4835 2.892.1527.5157-.1161 1.3428-.649 1.3711-.6673l3.4057 3.7637-.2149-5.7579c-.8341.501-1.6592 1.0165-2.4817 1.5383m3.7805-6.558-.136 3.6418c1.4735-.715 2.9733-1.4256 4.5819-1.7776 1.0738-.235 2.1662-.226 3.2486-.0342l3.5377-3.9093c.0607-.0668.001-.1724-.0876-.1547m-3.4501 4.064-4.0445 4.4695c.0184.014.153.1136.377.2459 1.339.7926 2.1517.9027 3.2395.983-1.0016.209-1.4249.4836-2.892.1528-.5157-.1161-1.3428-.649-1.371-.6674l-3.4058 3.7638.2149-5.7579c1.0759.6445 2.134 1.3178 3.193 1.9894l.6383-.7072a80.1445 80.1445 0 0 1-1.2877-.7262c-.7147-.4125-1.4164-.8508-2.1327-1.2622 1.9488-1.1083 3.051-1.5941 4.0263-1.928 1.089-.4296 2.284-.5154 3.4447-.5555" }) + ] + } + ); +}); + +exports.default = SiSaudia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.d.ts new file mode 100644 index 000000000..685041897 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#026938"; +declare const SiSaudia: IconType; +export { SiSaudia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.mjs new file mode 100644 index 000000000..54d42c5cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSaudia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#026938"; +const SiSaudia = React.forwardRef(function SiSaudia2({ title = "Saudia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.759 5.065c.9467.2206 1.5774.709 1.5774.709s-.5652-.8898-1.4944-1.2994c-.6905-.3046-1.3669-.3084-1.8968-.2284.0425-.085.0968-.1617.1663-.2254.163-.15.3462-.2365.3462-.2365s-.3924-.0987-.7332.0296c-.1759.0663-.3144.1633-.419.2553a2.8126 2.8126 0 0 0-.0561-.2997c-.0403-.1636-.233-.5137-.2496-.5435-.0165.0299-.2093.38-.2495.5435a2.8656 2.8656 0 0 0-.0562.2997c-.1045-.092-.243-.189-.419-.2553-.3408-.1283-.7332-.0296-.7332-.0296s.1833.0864.3463.2365c.0695.0638.1238.1404.1663.2254-.53-.08-1.2063-.0762-1.8968.2284-.9293.4096-1.4944 1.2994-1.4944 1.2994s.6306-.4884 1.5773-.709c.4664-.1084.899-.1047 1.2687-.0558-.5924.129-1.4224.4374-2.0342 1.2166-.5328.6783-.6693 1.627-.6693 1.627s.4324-.554 1.1608-1.172a5.3466 5.3466 0 0 1 1.2083-.773c-.4536.4305-.6782 1.091-.769 1.3414-.2762.7628-.0991 1.6102-.0991 1.6102s.1166-.5536.5411-1.2737c.3025-.5135.6921-.9026 1.0187-1.1704-.3908 1.4485.0125 2.8744.0125 2.8744s.2446-1.0975.6126-2.0282c.1566-.396.3362-.6952.5082-.9193.1721.2241.3517.5232.5083.9193.368.9307.6125 2.0282.6125 2.0282s.4033-1.4259.0125-2.8744c.3266.2678.7163.6569 1.0188 1.1704.4245.72.5411 1.2737.5411 1.2737s.177-.8474-.0992-1.6102c-.0908-.2504-.3154-.9109-.7688-1.3415a5.3497 5.3497 0 0 1 1.2082.7732c.7284.618 1.1607 1.172 1.1607 1.172s-.1364-.9488-.6693-1.627c-.6117-.7793-1.4418-1.0878-2.0343-1.2167.3696-.049.8023-.0526 1.2687.0559zM11.257 9.9964.1124 7.7623c-.0887-.0176-.1485.088-.0877.1547l3.5377 3.9094c1.0824-.1919 2.1748-.2009 3.2488.0342 1.6084.352 3.1082 1.0626 4.5816 1.7776zm-3.0057 7.0091-.6383-.7071c.4314-.2386.861-.4798 1.2878-.7262.7147-.4125 1.4164-.8508 2.1327-1.2622-1.6736-.961-2.9471-1.5586-4.0263-1.9281-1.089-.4295-2.2841-.5153-3.4447-.5554l4.0445 4.4695c-.0184.014-.153.1136-.377.246-1.339.7925-2.1517.9026-3.2395.983 1.0017.2088 1.4249.4835 2.892.1527.5157-.1161 1.3428-.649 1.3711-.6673l3.4057 3.7637-.2149-5.7579c-.8341.501-1.6592 1.0165-2.4817 1.5383m3.7805-6.558-.136 3.6418c1.4735-.715 2.9733-1.4256 4.5819-1.7776 1.0738-.235 2.1662-.226 3.2486-.0342l3.5377-3.9093c.0607-.0668.001-.1724-.0876-.1547m-3.4501 4.064-4.0445 4.4695c.0184.014.153.1136.377.2459 1.339.7926 2.1517.9027 3.2395.983-1.0016.209-1.4249.4836-2.892.1528-.5157-.1161-1.3428-.649-1.371-.6674l-3.4058 3.7638.2149-5.7579c1.0759.6445 2.134 1.3178 3.193 1.9894l.6383-.7072a80.1445 80.1445 0 0 1-1.2877-.7262c-.7147-.4125-1.4164-.8508-2.1327-1.2622 1.9488-1.1083 3.051-1.5941 4.0263-1.928 1.089-.4296 2.284-.5154 3.4447-.5555" }) + ] + } + ); +}); + +export { SiSaudia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScala.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScala.cjs new file mode 100644 index 000000000..284eb335f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScala.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DC322F"; +const SiScala = React__namespace.forwardRef(function SiScala2({ title = "Scala", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.589 24c4.537 0 13.81-1.516 14.821-3v-5.729c-.957 1.408-10.284 2.912-14.821 2.912V24zM4.589 16.365c4.537 0 13.81-1.516 14.821-3V7.636c-.957 1.408-10.284 2.912-14.821 2.912v5.817zM4.589 8.729c4.537 0 13.81-1.516 14.821-3V0C18.453 1.408 9.126 2.912 4.589 2.912v5.817z" }) + ] + } + ); +}); + +exports.default = SiScala; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScala.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScala.d.ts new file mode 100644 index 000000000..2dd7c2975 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScala.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DC322F"; +declare const SiScala: IconType; +export { SiScala as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScala.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScala.mjs new file mode 100644 index 000000000..945bd8f86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScala.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DC322F"; +const SiScala = React.forwardRef(function SiScala2({ title = "Scala", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.589 24c4.537 0 13.81-1.516 14.821-3v-5.729c-.957 1.408-10.284 2.912-14.821 2.912V24zM4.589 16.365c4.537 0 13.81-1.516 14.821-3V7.636c-.957 1.408-10.284 2.912-14.821 2.912v5.817zM4.589 8.729c4.537 0 13.81-1.516 14.821-3V0C18.453 1.408 9.126 2.912 4.589 2.912v5.817z" }) + ] + } + ); +}); + +export { SiScala as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.cjs new file mode 100644 index 000000000..4e7062116 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1A1A"; +const SiScalar = React__namespace.forwardRef(function SiScalar2({ title = "Scalar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.044 0c.243 0 .486.202.486.486v5.423l3.804-3.845c.202-.202.526-.202.688 0l2.914 2.914c.162.162.202.486 0 .648v.04L18.09 9.47h5.423c.284 0 .486.203.486.486v4.088a.468.468 0 0 1-.486.486h-5.423l3.845 3.804c.162.202.202.526 0 .688l-2.914 2.914c-.162.162-.486.202-.648 0h-.04L14.53 18.09v5.423a.468.468 0 0 1-.486.486H9.956a.468.468 0 0 1-.486-.486v-2.833c0-.89.365-1.74.972-2.388l5.261-5.261a1.466 1.466 0 0 0 0-2.064l-5.22-5.221A3.4 3.4 0 0 1 9.47 3.359V.486c0-.284.203-.486.486-.486h4.088ZM5.585 2.105h.04l8.864 8.863a1.466 1.466 0 0 1 0 2.064l-8.863 8.904c-.162.202-.486.202-.688 0l-2.874-2.833c-.162-.203-.202-.486 0-.688L5.91 14.53H.486A.468.468 0 0 1 0 14.043V9.956c0-.283.202-.486.486-.486h5.423L2.064 5.666a.548.548 0 0 1 0-.688l2.874-2.873a.421.421 0 0 1 .647 0Z" }) + ] + } + ); +}); + +exports.default = SiScalar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.d.ts new file mode 100644 index 000000000..4a070c125 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1A1A"; +declare const SiScalar: IconType; +export { SiScalar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.mjs new file mode 100644 index 000000000..ea5ede421 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScalar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1A1A"; +const SiScalar = React.forwardRef(function SiScalar2({ title = "Scalar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.044 0c.243 0 .486.202.486.486v5.423l3.804-3.845c.202-.202.526-.202.688 0l2.914 2.914c.162.162.202.486 0 .648v.04L18.09 9.47h5.423c.284 0 .486.203.486.486v4.088a.468.468 0 0 1-.486.486h-5.423l3.845 3.804c.162.202.202.526 0 .688l-2.914 2.914c-.162.162-.486.202-.648 0h-.04L14.53 18.09v5.423a.468.468 0 0 1-.486.486H9.956a.468.468 0 0 1-.486-.486v-2.833c0-.89.365-1.74.972-2.388l5.261-5.261a1.466 1.466 0 0 0 0-2.064l-5.22-5.221A3.4 3.4 0 0 1 9.47 3.359V.486c0-.284.203-.486.486-.486h4.088ZM5.585 2.105h.04l8.864 8.863a1.466 1.466 0 0 1 0 2.064l-8.863 8.904c-.162.202-.486.202-.688 0l-2.874-2.833c-.162-.203-.202-.486 0-.688L5.91 14.53H.486A.468.468 0 0 1 0 14.043V9.956c0-.283.202-.486.486-.486h5.423L2.064 5.666a.548.548 0 0 1 0-.688l2.874-2.873a.421.421 0 0 1 .647 0Z" }) + ] + } + ); +}); + +export { SiScalar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.cjs new file mode 100644 index 000000000..f46060929 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4F0599"; +const SiScaleway = React__namespace.forwardRef(function SiScaleway2({ title = "Scaleway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.605 11.11v5.72a1.77 1.77 0 01-1.54 1.69h-4a1.43 1.43 0 01-1.31-1.22 1.09 1.09 0 010-.18 1.37 1.37 0 011.37-1.36h1.74a1 1 0 001-1v-3.62a1.4 1.4 0 011.18-1.39h.17a1.37 1.37 0 011.39 1.36zm-6.46 1.74V9.26a1 1 0 011-1h1.85a1.37 1.37 0 001.37-1.37 1 1 0 000-.17 1.45 1.45 0 00-1.41-1.2h-3.96a1.81 1.81 0 00-1.58 1.66v5.7a1.37 1.37 0 001.37 1.37h.21a1.4 1.4 0 001.15-1.4zm12-4.29V20a4.53 4.53 0 01-4.15 4h-7.58a8.57 8.57 0 01-8.56-8.57V4.54A4.54 4.54 0 016.395 0h7.18a8.56 8.56 0 018.56 8.56zm-2.74 0a5.83 5.83 0 00-5.82-5.82h-7.19a1.79 1.79 0 00-1.8 1.8v10.89a5.83 5.83 0 005.82 5.8h7.44a1.79 1.79 0 001.54-1.48z" }) + ] + } + ); +}); + +exports.default = SiScaleway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.d.ts new file mode 100644 index 000000000..9cda2d122 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4F0599"; +declare const SiScaleway: IconType; +export { SiScaleway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.mjs new file mode 100644 index 000000000..77d1be111 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScaleway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4F0599"; +const SiScaleway = React.forwardRef(function SiScaleway2({ title = "Scaleway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.605 11.11v5.72a1.77 1.77 0 01-1.54 1.69h-4a1.43 1.43 0 01-1.31-1.22 1.09 1.09 0 010-.18 1.37 1.37 0 011.37-1.36h1.74a1 1 0 001-1v-3.62a1.4 1.4 0 011.18-1.39h.17a1.37 1.37 0 011.39 1.36zm-6.46 1.74V9.26a1 1 0 011-1h1.85a1.37 1.37 0 001.37-1.37 1 1 0 000-.17 1.45 1.45 0 00-1.41-1.2h-3.96a1.81 1.81 0 00-1.58 1.66v5.7a1.37 1.37 0 001.37 1.37h.21a1.4 1.4 0 001.15-1.4zm12-4.29V20a4.53 4.53 0 01-4.15 4h-7.58a8.57 8.57 0 01-8.56-8.57V4.54A4.54 4.54 0 016.395 0h7.18a8.56 8.56 0 018.56 8.56zm-2.74 0a5.83 5.83 0 00-5.82-5.82h-7.19a1.79 1.79 0 00-1.8 1.8v10.89a5.83 5.83 0 005.82 5.8h7.44a1.79 1.79 0 001.54-1.48z" }) + ] + } + ); +}); + +export { SiScaleway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScan.cjs new file mode 100644 index 000000000..28d1888b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004C97"; +const SiScan = React__namespace.forwardRef(function SiScan2({ title = "Scan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.363 9.13a5.8 5.8 0 0 1 0 5.285l-3.376 5.948a6.11 6.11 0 0 1-4.603 2.853h-6.76a6.09 6.09 0 0 1-4.605-2.83l-3.384-6.03a5.8 5.8 0 0 1 0-5.276l3.384-5.806A5.73 5.73 0 0 1 8.623.784h6.76a5.74 5.74 0 0 1 4.605 2.49zm-14.47 5.94a2.22 2.22 0 0 0-1.542.73 5.41 5.41 0 0 0 4.43 2.44 4.305 4.305 0 0 0 4.886-3.716c.124-3.02-2.04-3.834-4.264-4.248-1.12-.232-2.207-.382-2.207-1.427 0-.888.946-1.26 1.95-1.26a2.49 2.49 0 0 1 2.132 1.21l2.182-1.46a4.98 4.98 0 0 0-4.314-2.256c-2.298 0-4.513 1.27-4.662 3.683 0 2.821 2.04 3.759 4.048 4.066 1.319.183 2.489.43 2.489 1.535 0 1.302-1.012 1.6-2.15 1.6-1.658 0-1.658-.88-2.92-.88" }) + ] + } + ); +}); + +exports.default = SiScan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScan.d.ts new file mode 100644 index 000000000..43767aa18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004C97"; +declare const SiScan: IconType; +export { SiScan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScan.mjs new file mode 100644 index 000000000..aca26b684 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004C97"; +const SiScan = React.forwardRef(function SiScan2({ title = "Scan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.363 9.13a5.8 5.8 0 0 1 0 5.285l-3.376 5.948a6.11 6.11 0 0 1-4.603 2.853h-6.76a6.09 6.09 0 0 1-4.605-2.83l-3.384-6.03a5.8 5.8 0 0 1 0-5.276l3.384-5.806A5.73 5.73 0 0 1 8.623.784h6.76a5.74 5.74 0 0 1 4.605 2.49zm-14.47 5.94a2.22 2.22 0 0 0-1.542.73 5.41 5.41 0 0 0 4.43 2.44 4.305 4.305 0 0 0 4.886-3.716c.124-3.02-2.04-3.834-4.264-4.248-1.12-.232-2.207-.382-2.207-1.427 0-.888.946-1.26 1.95-1.26a2.49 2.49 0 0 1 2.132 1.21l2.182-1.46a4.98 4.98 0 0 0-4.314-2.256c-2.298 0-4.513 1.27-4.662 3.683 0 2.821 2.04 3.759 4.048 4.066 1.319.183 2.489.43 2.489 1.535 0 1.302-1.012 1.6-2.15 1.6-1.658 0-1.658-.88-2.92-.88" }) + ] + } + ); +}); + +export { SiScan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScania.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScania.cjs new file mode 100644 index 000000000..6f5514094 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScania.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#041E42"; +const SiScania = React__namespace.forwardRef(function SiScania2({ title = "Scania", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .6c-2.167 0-4.264.667-6.019 1.888a32.768 32.768 0 0 1-2.167-.48A12.262 12.262 0 0 0 0 8.615a32.75 32.75 0 0 1 1.5 1.636c-.3705 4.3908 2.0301 8.5486 6.018 10.423.247.699.47 1.404.668 2.117a12.266 12.266 0 0 0 7.629 0c.197-.713.42-1.419.667-2.118 3.9876-1.8737 6.3882-6.0307 6.018-10.421.482-.563.982-1.11 1.5-1.636a12.261 12.261 0 0 0-3.814-6.609c-.716.185-1.439.345-2.167.481A10.535 10.535 0 0 0 12 .6zm0 .642c1.806 0 3.562.494 5.086 1.407a32.724 32.724 0 0 1-10.172 0A9.896 9.896 0 0 1 12 1.242zM3.994 2.715c.431.107.865.204 1.301.293a10.537 10.537 0 0 0-3.687 6.387c-.295-.332-.597-.659-.904-.98a11.619 11.619 0 0 1 3.29-5.7zm16.012 0a11.62 11.62 0 0 1 3.29 5.7c-.307.321-.609.648-.904.98a10.537 10.537 0 0 0-3.687-6.387c.436-.089.87-.186 1.301-.293zm-13.873.454a33.353 33.353 0 0 0 11.734 0 9.885 9.885 0 0 1 3.966 6.873 33.352 33.352 0 0 0-5.866 10.16 9.89 9.89 0 0 1-7.935 0 33.367 33.367 0 0 0-5.866-10.16 9.895 9.895 0 0 1 3.967-6.873zm6.018.867a.662.662 0 0 0-.448 1.132.652.652 0 0 0-.971.573.652.652 0 0 0 1.03.535c-.241.404-.606.944-1.13.944-.547 0-.811-.228-1.052-.633a.548.548 0 0 0 .318-.021c.316-.105.493-.423.404-.823-.079-.354-.456-.55-.799-.45a.637.637 0 0 0-.291.18.698.698 0 0 0 .064-.519c-.098-.349-.512-.628-.873-.574l1.415 3.475c-.073.078-.18.196-.256.329-.302-.153-.909-.379-1.514-.135a1.553 1.553 0 0 0-.522.349c-.45.45-.676 1.2-.793 1.731a8.3307 8.3307 0 0 0-.08.415c.188-.141.31-.23.424-.306.102-.068.2-.124.336-.194.247-.127.583-.264.886-.264.163 0 .347.043.472.148.045.037.405.543 1.114.729.666.175.68.287.69.377 0 0-.116.19-.367.365a2.685 2.685 0 0 0-.346-.445c-.331-.346-.862-.532-1.296-.529-.413.004-.718.192-1.526.192-.82 0-1.39-.207-1.81-.454-.302-.164-.52-.37-.723-.535.108.263.213.472.307.684.07.151.327.667.648.947.413.35.822.465 1.224.465.408 0 .81-.119 1.206-.236.39-.116.766-.228 1.142-.228.487 0 .752.163.964.294a6.196 6.196 0 0 1-.225.15c-.3.191-.539.262-.771.262-.286 0-.801-.15-1.25-.33a1.2368 1.2368 0 0 0-.006.102v.116c0 .253.041.557.326.85.123.125.275.222.454.29.187.07.407.105.646.117-.109.1-.211.194-.31.316-.24.296-.435.692-.435 1.202 0 .262.046.481.111.691.047.149.093.284.157.445l.212-.255c.004-.004.236-.278.555-.51a2.98 2.98 0 0 0-.326 1.325c0 1.012.563 1.834 1.332 2.48 0 0 .183.163.312.263-.003-.162 0-.267 0-.408 0-.493.08-1.448.405-2.025.035.135.075.334.11.558.045.298.081.641.081.94 0 .496-.072.863-.156 1.127-.098.304-.18.42-.255.547a3.34 3.34 0 0 0 .882-.09 2.3 2.3 0 0 0 1.72-1.555c.09-.283.136-.596.136-.94 0-.198-.018-.403-.046-.603l-.024-.16c.055.044.093.085.14.138.18.207.343.524.343 1.036 0 .175-.01.445-.084.749.174-.058.351-.163.52-.27.204-.13.397-.284.572-.46.48-.48.811-1.117.818-1.845.005-.475-.096-.855-.32-1.299-.024-.048-.052-.097-.077-.146.052.022.101.05.147.08.255.164.42.424.53.718.066.177.114.35.147.554.074-.09.162-.212.262-.385.201-.348.414-.883.414-1.647 0-.375-.049-.806-.22-1.255a2.883 2.883 0 0 0-.85-1.202c.2643.0287.511.146.7.333.125.126.223.28.313.452l.095.19c.009-.093.008-.123.01-.204-.02-1.351-.397-2.34-1.626-2.978l-.007-.004c.43-.488.638-1.038.783-1.63-.296-.075-.843-.138-1.673.25l1.32-3.254c-.362-.054-.775.225-.873.574a.695.695 0 0 0 .065.519.642.642 0 0 0-.292-.181c-.343-.1-.72.097-.8.451-.088.4.089.718.405.822.134.04.177.045.318.021-.241.405-.494.629-1.041.629-.524 0-.892-.535-1.133-.94 0 0 .246.122.385.122a.651.651 0 0 0 .645-.657.652.652 0 0 0-.645-.658.634.634 0 0 0-.33.093.694.694 0 0 0 .202-.481.651.651 0 0 0-.645-.658zm3.608 3.585h.147l-.047.14c-.151.447-.629 1.516-1.802 1.779l.005.022.05.247c.497-.092.817-.303 1.107-.555.742.361 1.242.961 1.42 1.76l.034.157a.668.668 0 0 0-.114-.1 1.345 1.345 0 0 0-.719-.194c-.262 0-.489.063-.602.102.186.159.337.297.471.431.41.411.677.803.837 1.235.12.326.18.67.18 1.048 0 .403-.072.772-.213 1.098-.011.026-.04.092-.052.127a.706.706 0 0 0-.044-.126c-.341-.72-.91-.872-1.328-.872-.07 0-.13.004-.184.008l.006.01c.278.428.698 1.075.698 1.87 0 .26-.048.516-.142.759a2.4 2.4 0 0 1-.55.83c-.118.117-.222.214-.397.333l-.1.071a.465.465 0 0 0 .02-.12c.024-.897-.475-1.61-1.272-1.827l.018.076c.087.353.186.752.186 1.292 0 .583-.145 1.066-.43 1.436a1.954 1.954 0 0 1-.688.556 2.23 2.23 0 0 1-.652.219l-.109.018c.011-.014.034-.063.045-.087a1.0898 1.0898 0 0 0 .054-.161c.124-.455.127-1.001.127-1.069 0-.845-.21-1.618-.336-2.08l-.026-.098c-.1.074-.166.14-.211.186l-.02.021c-.263.263-.455.723-.57 1.367-.035.197-.052.362-.07.537l-.013.195-.003.121s-.072-.08-.09-.098a4.643 4.643 0 0 1-.188-.204 3.207 3.207 0 0 1-.483-.71 2.495 2.495 0 0 1-.177-.482 2.302 2.302 0 0 1-.07-.561c0-1.062.641-1.774.918-2.058l-.09.016a3.31 3.31 0 0 0-.326.08 2.172 2.172 0 0 0-.546.252 3.171 3.171 0 0 0-.603.513s-.018-.083-.021-.107a2.518 2.518 0 0 1-.04-.391c0-.441.168-.833.5-1.163.312-.313.551-.413 1.265-.712l.218-.091-.314.043c-.438.062-.638.09-1.009.09-.525 0-.887-.107-1.106-.327a.75.75 0 0 1-.123-.158 1.549 1.549 0 0 1-.117-.243l.272.099c.054.017.117.036.17.05a1.9 1.9 0 0 0 .49.07c.444 0 .804-.194 1.24-.508.182-.13.336-.258.456-.378.182-.182.221-.28.222-.297-.008-.269-.016-.523-.951-.768a1.782 1.782 0 0 1-.913-.59.8119.8119 0 0 0-.063-.068 1.046 1.046 0 0 0-.682-.229c-.196 0-.409.043-.651.132a4.7942 4.7942 0 0 0-.395.166l-.108.05.036-.113c.04-.132.085-.252.144-.391.05-.118.1-.22.156-.314.184-.31.412-.522.676-.629.138-.056.288-.084.447-.084.385 0 .732.167.875.247.01.71.438 1.12.93 1.12a.856.856 0 0 0 .643-.275c.121-.122.196-.258.244-.366.039-.087.067-.15.07-.2l.005.001a.496.496 0 0 1 .211.132l.236-.21a1.118 1.118 0 0 0-.401-.264 1.424 1.424 0 0 0-.464-.098 1.68 1.68 0 0 0-.36.026c-.123.02-.222.048-.396.048a.693.693 0 0 1-.358-.09 1.73 1.73 0 0 1 .525-.535l.006-.004h3.817l.074.003a3.287 3.287 0 0 0-.747.655l.215.17c.498-.622 1.272-1.01 2.02-1.01v.001zm-.457.494c-.621.08-1.182.635-1.182.635l.127.27c.293-.062.521-.22.69-.389.248-.248.347-.437.365-.516zm-5.542.543l.138.038c.055.016.132.032.207.042l.036.006.007.035a.27.27 0 0 0 .072.144.302.302 0 0 0 .43 0 .297.297 0 0 0 .088-.196l.002-.048.047-.002a2.6025 2.6025 0 0 1 .22 0l.117.008-.018.07a.852.852 0 0 1-.228.425.609.609 0 0 1-.469.192.578.578 0 0 1-.41-.175.81.81 0 0 1-.219-.43l-.02-.109zm4.513 1.49l-.133.416c.085.098.148.19.2.267.146.214.238.41.29.614.05.2.056.392.056.57 0 .142-.015.285-.046.425-.022.101-.053.21-.079.293-.024.08-.079.226-.079.226s-.008-.165-.023-.255-.029-.186-.053-.264a1.437 1.437 0 0 0-.353-.604 1.41 1.41 0 0 0-.35-.253 1.821 1.821 0 0 0-.284-.118c.022.083.045.173.07.28.064.276.093.504.093.716 0 .337-.075.622-.232.871a1.323 1.323 0 0 1-.187.234 2.039 2.039 0 0 1-.386.316c.036-.06.065-.122.1-.193.042-.087.068-.18.087-.248.186-.657-.121-1.063-.37-1.312a2.3783 2.3783 0 0 0-.103-.098c-.004.092-.008.184-.014.277-.022.318-.08.68-.35.948a1.942 1.942 0 0 1-.139.13c-.052.042-.111.092-.19.14.033-.064.06-.096.11-.218a.97.97 0 0 0-.029-.78l-.34.183c.01.025.017.052.024.076a.71.71 0 0 1-.086.577c-.05.08-.115.16-.204.25-.079.077-.162.152-.235.218l-.156.141.139-.001c.15-.002.35-.01.563-.047.34-.062.605-.192.813-.4a1.34 1.34 0 0 0 .218-.287c-.01.11-.037.222-.084.34a2.265 2.265 0 0 1-.239.436c-.065.095-.138.2-.232.315l-.086.105.134-.02c.162-.023.323-.056.48-.098a1.742 1.742 0 0 0 1.078-.777c.1-.158.172-.323.218-.504a2.35 2.35 0 0 0 .066-.696c.03.052.057.109.083.172.054.136.09.29.11.47.01.112.016.235.016.385v.03c0 .144 0 .281-.011.436l-.011.152.103-.112c.134-.147.279-.315.427-.55a2.543 2.543 0 0 0 .332-1.978 2.31 2.31 0 0 0-.359-.76 3.15 3.15 0 0 0-.349-.417l-.018-.019zm-3.275.165a.5.5 0 0 0-.215.049c.273.029.341.113.467.238.066.067.129.138.194.204.12.12.231.219.436.219a.613.613 0 0 0 .157-.022.981.981 0 0 0 .305-.141.528.528 0 0 1-.203.041c-.511 0-.663-.588-1.14-.588h-.001zm-5.83.1c.06.038.186.127.365.2.167.07.343.135.55.184.278.065.586.097.94.097.326 0 .717-.052 1.162-.153.143-.032.292-.062.413-.062.215 0 .424.035.578.116.153.082.261.17.395.279a2.71 2.71 0 0 0-.48-.071c-.143-.01-.34.003-.465.022-.28.041-.525.114-.783.19l-.03.01c-.39.115-.759.224-1.123.224-.422 0-.803-.157-1.101-.455-.065-.065-.171-.17-.242-.27a1.994 1.994 0 0 1-.179-.31v-.001zm-3.061.567a32.694 32.694 0 0 1 5.084 8.805 9.895 9.895 0 0 1-5.086-8.647c0-.054 0-.106.002-.158zm19.786 0l.002.157a9.895 9.895 0 0 1-5.086 8.648 32.665 32.665 0 0 1 5.085-8.805h-.001zM8.313 21.007a10.535 10.535 0 0 0 7.375 0c-.14.423-.273.847-.396 1.274a11.616 11.616 0 0 1-6.583 0 33.2233 33.2233 0 0 0-.397-1.273l.001-.001z" }) + ] + } + ); +}); + +exports.default = SiScania; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScania.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScania.d.ts new file mode 100644 index 000000000..0aa2ab91d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScania.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#041E42"; +declare const SiScania: IconType; +export { SiScania as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScania.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScania.mjs new file mode 100644 index 000000000..0c83831b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScania.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#041E42"; +const SiScania = React.forwardRef(function SiScania2({ title = "Scania", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .6c-2.167 0-4.264.667-6.019 1.888a32.768 32.768 0 0 1-2.167-.48A12.262 12.262 0 0 0 0 8.615a32.75 32.75 0 0 1 1.5 1.636c-.3705 4.3908 2.0301 8.5486 6.018 10.423.247.699.47 1.404.668 2.117a12.266 12.266 0 0 0 7.629 0c.197-.713.42-1.419.667-2.118 3.9876-1.8737 6.3882-6.0307 6.018-10.421.482-.563.982-1.11 1.5-1.636a12.261 12.261 0 0 0-3.814-6.609c-.716.185-1.439.345-2.167.481A10.535 10.535 0 0 0 12 .6zm0 .642c1.806 0 3.562.494 5.086 1.407a32.724 32.724 0 0 1-10.172 0A9.896 9.896 0 0 1 12 1.242zM3.994 2.715c.431.107.865.204 1.301.293a10.537 10.537 0 0 0-3.687 6.387c-.295-.332-.597-.659-.904-.98a11.619 11.619 0 0 1 3.29-5.7zm16.012 0a11.62 11.62 0 0 1 3.29 5.7c-.307.321-.609.648-.904.98a10.537 10.537 0 0 0-3.687-6.387c.436-.089.87-.186 1.301-.293zm-13.873.454a33.353 33.353 0 0 0 11.734 0 9.885 9.885 0 0 1 3.966 6.873 33.352 33.352 0 0 0-5.866 10.16 9.89 9.89 0 0 1-7.935 0 33.367 33.367 0 0 0-5.866-10.16 9.895 9.895 0 0 1 3.967-6.873zm6.018.867a.662.662 0 0 0-.448 1.132.652.652 0 0 0-.971.573.652.652 0 0 0 1.03.535c-.241.404-.606.944-1.13.944-.547 0-.811-.228-1.052-.633a.548.548 0 0 0 .318-.021c.316-.105.493-.423.404-.823-.079-.354-.456-.55-.799-.45a.637.637 0 0 0-.291.18.698.698 0 0 0 .064-.519c-.098-.349-.512-.628-.873-.574l1.415 3.475c-.073.078-.18.196-.256.329-.302-.153-.909-.379-1.514-.135a1.553 1.553 0 0 0-.522.349c-.45.45-.676 1.2-.793 1.731a8.3307 8.3307 0 0 0-.08.415c.188-.141.31-.23.424-.306.102-.068.2-.124.336-.194.247-.127.583-.264.886-.264.163 0 .347.043.472.148.045.037.405.543 1.114.729.666.175.68.287.69.377 0 0-.116.19-.367.365a2.685 2.685 0 0 0-.346-.445c-.331-.346-.862-.532-1.296-.529-.413.004-.718.192-1.526.192-.82 0-1.39-.207-1.81-.454-.302-.164-.52-.37-.723-.535.108.263.213.472.307.684.07.151.327.667.648.947.413.35.822.465 1.224.465.408 0 .81-.119 1.206-.236.39-.116.766-.228 1.142-.228.487 0 .752.163.964.294a6.196 6.196 0 0 1-.225.15c-.3.191-.539.262-.771.262-.286 0-.801-.15-1.25-.33a1.2368 1.2368 0 0 0-.006.102v.116c0 .253.041.557.326.85.123.125.275.222.454.29.187.07.407.105.646.117-.109.1-.211.194-.31.316-.24.296-.435.692-.435 1.202 0 .262.046.481.111.691.047.149.093.284.157.445l.212-.255c.004-.004.236-.278.555-.51a2.98 2.98 0 0 0-.326 1.325c0 1.012.563 1.834 1.332 2.48 0 0 .183.163.312.263-.003-.162 0-.267 0-.408 0-.493.08-1.448.405-2.025.035.135.075.334.11.558.045.298.081.641.081.94 0 .496-.072.863-.156 1.127-.098.304-.18.42-.255.547a3.34 3.34 0 0 0 .882-.09 2.3 2.3 0 0 0 1.72-1.555c.09-.283.136-.596.136-.94 0-.198-.018-.403-.046-.603l-.024-.16c.055.044.093.085.14.138.18.207.343.524.343 1.036 0 .175-.01.445-.084.749.174-.058.351-.163.52-.27.204-.13.397-.284.572-.46.48-.48.811-1.117.818-1.845.005-.475-.096-.855-.32-1.299-.024-.048-.052-.097-.077-.146.052.022.101.05.147.08.255.164.42.424.53.718.066.177.114.35.147.554.074-.09.162-.212.262-.385.201-.348.414-.883.414-1.647 0-.375-.049-.806-.22-1.255a2.883 2.883 0 0 0-.85-1.202c.2643.0287.511.146.7.333.125.126.223.28.313.452l.095.19c.009-.093.008-.123.01-.204-.02-1.351-.397-2.34-1.626-2.978l-.007-.004c.43-.488.638-1.038.783-1.63-.296-.075-.843-.138-1.673.25l1.32-3.254c-.362-.054-.775.225-.873.574a.695.695 0 0 0 .065.519.642.642 0 0 0-.292-.181c-.343-.1-.72.097-.8.451-.088.4.089.718.405.822.134.04.177.045.318.021-.241.405-.494.629-1.041.629-.524 0-.892-.535-1.133-.94 0 0 .246.122.385.122a.651.651 0 0 0 .645-.657.652.652 0 0 0-.645-.658.634.634 0 0 0-.33.093.694.694 0 0 0 .202-.481.651.651 0 0 0-.645-.658zm3.608 3.585h.147l-.047.14c-.151.447-.629 1.516-1.802 1.779l.005.022.05.247c.497-.092.817-.303 1.107-.555.742.361 1.242.961 1.42 1.76l.034.157a.668.668 0 0 0-.114-.1 1.345 1.345 0 0 0-.719-.194c-.262 0-.489.063-.602.102.186.159.337.297.471.431.41.411.677.803.837 1.235.12.326.18.67.18 1.048 0 .403-.072.772-.213 1.098-.011.026-.04.092-.052.127a.706.706 0 0 0-.044-.126c-.341-.72-.91-.872-1.328-.872-.07 0-.13.004-.184.008l.006.01c.278.428.698 1.075.698 1.87 0 .26-.048.516-.142.759a2.4 2.4 0 0 1-.55.83c-.118.117-.222.214-.397.333l-.1.071a.465.465 0 0 0 .02-.12c.024-.897-.475-1.61-1.272-1.827l.018.076c.087.353.186.752.186 1.292 0 .583-.145 1.066-.43 1.436a1.954 1.954 0 0 1-.688.556 2.23 2.23 0 0 1-.652.219l-.109.018c.011-.014.034-.063.045-.087a1.0898 1.0898 0 0 0 .054-.161c.124-.455.127-1.001.127-1.069 0-.845-.21-1.618-.336-2.08l-.026-.098c-.1.074-.166.14-.211.186l-.02.021c-.263.263-.455.723-.57 1.367-.035.197-.052.362-.07.537l-.013.195-.003.121s-.072-.08-.09-.098a4.643 4.643 0 0 1-.188-.204 3.207 3.207 0 0 1-.483-.71 2.495 2.495 0 0 1-.177-.482 2.302 2.302 0 0 1-.07-.561c0-1.062.641-1.774.918-2.058l-.09.016a3.31 3.31 0 0 0-.326.08 2.172 2.172 0 0 0-.546.252 3.171 3.171 0 0 0-.603.513s-.018-.083-.021-.107a2.518 2.518 0 0 1-.04-.391c0-.441.168-.833.5-1.163.312-.313.551-.413 1.265-.712l.218-.091-.314.043c-.438.062-.638.09-1.009.09-.525 0-.887-.107-1.106-.327a.75.75 0 0 1-.123-.158 1.549 1.549 0 0 1-.117-.243l.272.099c.054.017.117.036.17.05a1.9 1.9 0 0 0 .49.07c.444 0 .804-.194 1.24-.508.182-.13.336-.258.456-.378.182-.182.221-.28.222-.297-.008-.269-.016-.523-.951-.768a1.782 1.782 0 0 1-.913-.59.8119.8119 0 0 0-.063-.068 1.046 1.046 0 0 0-.682-.229c-.196 0-.409.043-.651.132a4.7942 4.7942 0 0 0-.395.166l-.108.05.036-.113c.04-.132.085-.252.144-.391.05-.118.1-.22.156-.314.184-.31.412-.522.676-.629.138-.056.288-.084.447-.084.385 0 .732.167.875.247.01.71.438 1.12.93 1.12a.856.856 0 0 0 .643-.275c.121-.122.196-.258.244-.366.039-.087.067-.15.07-.2l.005.001a.496.496 0 0 1 .211.132l.236-.21a1.118 1.118 0 0 0-.401-.264 1.424 1.424 0 0 0-.464-.098 1.68 1.68 0 0 0-.36.026c-.123.02-.222.048-.396.048a.693.693 0 0 1-.358-.09 1.73 1.73 0 0 1 .525-.535l.006-.004h3.817l.074.003a3.287 3.287 0 0 0-.747.655l.215.17c.498-.622 1.272-1.01 2.02-1.01v.001zm-.457.494c-.621.08-1.182.635-1.182.635l.127.27c.293-.062.521-.22.69-.389.248-.248.347-.437.365-.516zm-5.542.543l.138.038c.055.016.132.032.207.042l.036.006.007.035a.27.27 0 0 0 .072.144.302.302 0 0 0 .43 0 .297.297 0 0 0 .088-.196l.002-.048.047-.002a2.6025 2.6025 0 0 1 .22 0l.117.008-.018.07a.852.852 0 0 1-.228.425.609.609 0 0 1-.469.192.578.578 0 0 1-.41-.175.81.81 0 0 1-.219-.43l-.02-.109zm4.513 1.49l-.133.416c.085.098.148.19.2.267.146.214.238.41.29.614.05.2.056.392.056.57 0 .142-.015.285-.046.425-.022.101-.053.21-.079.293-.024.08-.079.226-.079.226s-.008-.165-.023-.255-.029-.186-.053-.264a1.437 1.437 0 0 0-.353-.604 1.41 1.41 0 0 0-.35-.253 1.821 1.821 0 0 0-.284-.118c.022.083.045.173.07.28.064.276.093.504.093.716 0 .337-.075.622-.232.871a1.323 1.323 0 0 1-.187.234 2.039 2.039 0 0 1-.386.316c.036-.06.065-.122.1-.193.042-.087.068-.18.087-.248.186-.657-.121-1.063-.37-1.312a2.3783 2.3783 0 0 0-.103-.098c-.004.092-.008.184-.014.277-.022.318-.08.68-.35.948a1.942 1.942 0 0 1-.139.13c-.052.042-.111.092-.19.14.033-.064.06-.096.11-.218a.97.97 0 0 0-.029-.78l-.34.183c.01.025.017.052.024.076a.71.71 0 0 1-.086.577c-.05.08-.115.16-.204.25-.079.077-.162.152-.235.218l-.156.141.139-.001c.15-.002.35-.01.563-.047.34-.062.605-.192.813-.4a1.34 1.34 0 0 0 .218-.287c-.01.11-.037.222-.084.34a2.265 2.265 0 0 1-.239.436c-.065.095-.138.2-.232.315l-.086.105.134-.02c.162-.023.323-.056.48-.098a1.742 1.742 0 0 0 1.078-.777c.1-.158.172-.323.218-.504a2.35 2.35 0 0 0 .066-.696c.03.052.057.109.083.172.054.136.09.29.11.47.01.112.016.235.016.385v.03c0 .144 0 .281-.011.436l-.011.152.103-.112c.134-.147.279-.315.427-.55a2.543 2.543 0 0 0 .332-1.978 2.31 2.31 0 0 0-.359-.76 3.15 3.15 0 0 0-.349-.417l-.018-.019zm-3.275.165a.5.5 0 0 0-.215.049c.273.029.341.113.467.238.066.067.129.138.194.204.12.12.231.219.436.219a.613.613 0 0 0 .157-.022.981.981 0 0 0 .305-.141.528.528 0 0 1-.203.041c-.511 0-.663-.588-1.14-.588h-.001zm-5.83.1c.06.038.186.127.365.2.167.07.343.135.55.184.278.065.586.097.94.097.326 0 .717-.052 1.162-.153.143-.032.292-.062.413-.062.215 0 .424.035.578.116.153.082.261.17.395.279a2.71 2.71 0 0 0-.48-.071c-.143-.01-.34.003-.465.022-.28.041-.525.114-.783.19l-.03.01c-.39.115-.759.224-1.123.224-.422 0-.803-.157-1.101-.455-.065-.065-.171-.17-.242-.27a1.994 1.994 0 0 1-.179-.31v-.001zm-3.061.567a32.694 32.694 0 0 1 5.084 8.805 9.895 9.895 0 0 1-5.086-8.647c0-.054 0-.106.002-.158zm19.786 0l.002.157a9.895 9.895 0 0 1-5.086 8.648 32.665 32.665 0 0 1 5.085-8.805h-.001zM8.313 21.007a10.535 10.535 0 0 0 7.375 0c-.14.423-.273.847-.396 1.274a11.616 11.616 0 0 1-6.583 0 33.2233 33.2233 0 0 0-.397-1.273l.001-.001z" }) + ] + } + ); +}); + +export { SiScania as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.cjs new file mode 100644 index 000000000..d0e262abd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3DCD58"; +const SiSchneiderelectric = React__namespace.forwardRef(function SiSchneiderelectric2({ title = "Schneider Electric", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.73.313c-3.56-.049-7.797 1.68-11.288 5.02-.87.83-1.607 1.725-2.28 2.642h3.042L5.497 9.99H1.864c-.346.636-.672 1.266-.922 1.906h4.307l-.687 2.016H.327c-.724 3.079-.262 5.953 1.559 7.777 3.54 3.538 11.01 2.292 16.591-3.048.977-.93 1.783-1.931 2.511-2.96h-3.906l.596-2.013h4.568c.334-.64.643-1.274.883-1.914h-4.992l.554-2.01h5.051c.623-2.917.132-5.62-1.638-7.39C20.76 1.01 18.867.34 16.73.312Zm-1.044 4.714h4.968l-.634 2.938h-3.002c-.323 0-.46.054-.592.201-.05.058-.07.115-.09.23l-1.639 6.22c-.385 2.179-3.065 4.359-6.555 4.359H3.288l.842-3.198h3.119a.984.984 0 0 0 .775-.347c.076-.09.177-.232.19-.377L9.509 9.62c.381-2.182 2.686-4.592 6.177-4.592Z" }) + ] + } + ); +}); + +exports.default = SiSchneiderelectric; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.d.ts new file mode 100644 index 000000000..74a1ee137 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3DCD58"; +declare const SiSchneiderelectric: IconType; +export { SiSchneiderelectric as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.mjs new file mode 100644 index 000000000..53de8859c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSchneiderelectric.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3DCD58"; +const SiSchneiderelectric = React.forwardRef(function SiSchneiderelectric2({ title = "Schneider Electric", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.73.313c-3.56-.049-7.797 1.68-11.288 5.02-.87.83-1.607 1.725-2.28 2.642h3.042L5.497 9.99H1.864c-.346.636-.672 1.266-.922 1.906h4.307l-.687 2.016H.327c-.724 3.079-.262 5.953 1.559 7.777 3.54 3.538 11.01 2.292 16.591-3.048.977-.93 1.783-1.931 2.511-2.96h-3.906l.596-2.013h4.568c.334-.64.643-1.274.883-1.914h-4.992l.554-2.01h5.051c.623-2.917.132-5.62-1.638-7.39C20.76 1.01 18.867.34 16.73.312Zm-1.044 4.714h4.968l-.634 2.938h-3.002c-.323 0-.46.054-.592.201-.05.058-.07.115-.09.23l-1.639 6.22c-.385 2.179-3.065 4.359-6.555 4.359H3.288l.842-3.198h3.119a.984.984 0 0 0 .775-.347c.076-.09.177-.232.19-.377L9.509 9.62c.381-2.182 2.686-4.592 6.177-4.592Z" }) + ] + } + ); +}); + +export { SiSchneiderelectric as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.cjs new file mode 100644 index 000000000..937735b03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7931E"; +const SiScikitlearn = React__namespace.forwardRef(function SiScikitlearn2({ title = "scikit-learn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.601 5.53c-1.91.035-3.981.91-5.63 2.56-2.93 2.93-2.083 8.53-1.088 9.525.805.804 6.595 1.843 9.526-1.088a9.74 9.74 0 0 0 .584-.643c.043-.292.205-.66.489-1.106a1.848 1.848 0 0 1-.537.176c-.144.265-.37.55-.676.855-.354.335-.607.554-.76.656a.795.795 0 0 1-.437.152c-.35 0-.514-.308-.494-.924-.22.316-.425.549-.612.7a.914.914 0 0 1-.578.224c-.194 0-.36-.09-.496-.273a1.03 1.03 0 0 1-.193-.507 4.016 4.016 0 0 1-.726.583c-.224.132-.47.197-.74.197-.3 0-.543-.096-.727-.288a.978.978 0 0 1-.257-.524v.004c-.3.276-.564.48-.79.611a1.295 1.295 0 0 1-.649.197.693.693 0 0 1-.571-.275c-.145-.183-.218-.43-.218-.739 0-.464.101-1.02.302-1.67.201-.65.445-1.25.733-1.797l.842-.312a.21.21 0 0 1 .06-.013c.063 0 .116.047.157.14.04.095.061.221.061.38 0 .451-.104.888-.312 1.31-.207.422-.532.873-.974 1.352-.018.23-.027.388-.027.474 0 .193.036.345.106.458.071.113.165.169.282.169a.71.71 0 0 0 .382-.13c.132-.084.333-.26.602-.523.028-.418.187-.798.482-1.142.324-.38.685-.569 1.08-.569.206 0 .37.054.494.16a.524.524 0 0 1 .186.417c0 .458-.486.829-1.459 1.114.088.43.32.646.693.646a.807.807 0 0 0 .417-.117c.129-.076.321-.243.575-.497.032-.252.118-.495.259-.728.182-.3.416-.544.701-.73.285-.185.537-.278.756-.278.276 0 .47.127.58.381l.677-.374h.186l-.292.971c-.15.488-.226.823-.226 1.004 0 .19.067.285.202.285.086 0 .181-.045.285-.137.104-.092.25-.232.437-.42v.001c.143-.155.274-.32.392-.494-.19-.084-.285-.21-.285-.375 0-.17.058-.352.174-.545.116-.194.275-.29.479-.29.172 0 .258.088.258.265 0 .139-.05.338-.149.596.367-.04.687-.32.961-.842l.228-.01c1.059-2.438.828-5.075-.83-6.732-1.019-1.02-2.408-1.5-3.895-1.471zm4.725 8.203a8.938 8.938 0 0 1-1.333 2.151 1.09 1.09 0 0 0-.012.147c0 .168.047.309.14.423.092.113.206.17.34.17.296 0 .714-.264 1.254-.787-.001.04-.003.08-.003.121 0 .146.012.368.036.666l.733-.172c0-.2.003-.357.01-.474.01-.157.033-.33.066-.517.02-.11.07-.216.152-.315l.186-.216a5.276 5.276 0 0 1 .378-.397c.062-.055.116-.099.162-.13a.26.26 0 0 1 .123-.046c.055 0 .083.035.083.106 0 .07-.052.236-.156.497-.194.486-.292.848-.292 1.084 0 .175.046.314.136.418a.45.45 0 0 0 .358.155c.365 0 .803-.269 1.313-.808v-.381c-.361.426-.623.64-.784.64-.109 0-.163-.067-.163-.2 0-.1.065-.316.195-.65.19-.486.285-.836.285-1.048a.464.464 0 0 0-.112-.319.36.36 0 0 0-.282-.127c-.165 0-.354.077-.567.233-.213.156-.5.436-.863.84.053-.262.165-.622.335-1.08l-.809.156a6.54 6.54 0 0 0-.399 1.074c-.04.156-.07.316-.092.48a7.447 7.447 0 0 1-.49.45.38.38 0 0 1-.229.08.208.208 0 0 1-.174-.082.352.352 0 0 1-.064-.222c0-.1.019-.214.056-.343.038-.13.12-.373.249-.731l.308-.849zm-17.21-2.927c-.863-.016-1.67.263-2.261.854-1.352 1.352-1.07 3.827.631 5.527 1.7 1.701 4.95 1.21 5.527.632.467-.466 1.07-3.827-.631-5.527-.957-.957-2.158-1.465-3.267-1.486zm12.285.358h.166v.21H15.4zm.427 0h.166v.865l.46-.455h.195l-.364.362.428.684h-.198l-.357-.575-.164.166v.41h-.166zm1.016 0h.166v.21h-.166zm.481.122h.166v.288h.172v.135h-.172v.717c0 .037.006.062.02.075.012.013.037.02.074.02a.23.23 0 0 0 .078-.01v.141a.802.802 0 0 1-.136.014.23.23 0 0 1-.15-.043.15.15 0 0 1-.052-.123v-.79h-.141v-.136h.141zm-3.562.258c.081 0 .15.012.207.038.057.024.1.061.13.11s.045.106.045.173h-.176c-.006-.111-.075-.167-.208-.167a.285.285 0 0 0-.164.041.134.134 0 0 0-.06.117c0 .035.015.065.045.088.03.024.08.044.15.06l.16.039a.47.47 0 0 1 .224.105c.047.046.07.108.07.186a.3.3 0 0 1-.052.175.327.327 0 0 1-.152.116.585.585 0 0 1-.226.041c-.136 0-.24-.03-.309-.088-.069-.059-.105-.149-.109-.269h.176c.004.037.01.065.017.084a.166.166 0 0 0 .034.054c.044.043.112.065.204.065a.31.31 0 0 0 .177-.045.139.139 0 0 0 .067-.119.116.116 0 0 0-.038-.09.287.287 0 0 0-.124-.055l-.156-.038a1.248 1.248 0 0 1-.159-.05.359.359 0 0 1-.098-.061.22.22 0 0 1-.058-.083.32.32 0 0 1-.016-.108c0-.096.036-.174.109-.232a.45.45 0 0 1 .29-.087zm1.035 0a.46.46 0 0 1 .202.043.351.351 0 0 1 .187.212.577.577 0 0 1 .023.126h-.168a.256.256 0 0 0-.078-.168.242.242 0 0 0-.17-.06.248.248 0 0 0-.155.05.306.306 0 0 0-.1.144.662.662 0 0 0-.034.224.58.58 0 0 0 .035.214.299.299 0 0 0 .101.135.261.261 0 0 0 .157.048c.142 0 .227-.084.256-.252h.167a.519.519 0 0 1-.065.22.35.35 0 0 1-.146.138.464.464 0 0 1-.216.048.448.448 0 0 1-.246-.066.441.441 0 0 1-.161-.192.703.703 0 0 1-.057-.293c0-.085.01-.163.032-.233a.522.522 0 0 1 .095-.182.403.403 0 0 1 .15-.117.453.453 0 0 1 .191-.04zm.603.03h.166v1.046H15.4zm1.443 0h.166v1.046h-.166zm-5.05.618c-.08 0-.2.204-.356.611-.155.407-.308.977-.459 1.71.281-.312.509-.662.683-1.05.175-.387.262-.72.262-.999a.455.455 0 0 0-.036-.197c-.025-.05-.056-.075-.093-.075zm4.662 1.797c-.221 0-.431.188-.629.563-.197.376-.296.722-.296 1.038 0 .12.029.216.088.29a.273.273 0 0 0 .223.111c.221 0 .43-.188.625-.565.196-.377.294-.725.294-1.043a.457.457 0 0 0-.083-.29.269.269 0 0 0-.222-.104zm-2.848.007c-.146 0-.285.11-.417.333-.133.222-.2.51-.2.866.566-.159.849-.452.849-.881 0-.212-.077-.318-.232-.318Z" }) + ] + } + ); +}); + +exports.default = SiScikitlearn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.d.ts new file mode 100644 index 000000000..cb2b1c06a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7931E"; +declare const SiScikitlearn: IconType; +export { SiScikitlearn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.mjs new file mode 100644 index 000000000..0e54cafb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScikitlearn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7931E"; +const SiScikitlearn = React.forwardRef(function SiScikitlearn2({ title = "scikit-learn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.601 5.53c-1.91.035-3.981.91-5.63 2.56-2.93 2.93-2.083 8.53-1.088 9.525.805.804 6.595 1.843 9.526-1.088a9.74 9.74 0 0 0 .584-.643c.043-.292.205-.66.489-1.106a1.848 1.848 0 0 1-.537.176c-.144.265-.37.55-.676.855-.354.335-.607.554-.76.656a.795.795 0 0 1-.437.152c-.35 0-.514-.308-.494-.924-.22.316-.425.549-.612.7a.914.914 0 0 1-.578.224c-.194 0-.36-.09-.496-.273a1.03 1.03 0 0 1-.193-.507 4.016 4.016 0 0 1-.726.583c-.224.132-.47.197-.74.197-.3 0-.543-.096-.727-.288a.978.978 0 0 1-.257-.524v.004c-.3.276-.564.48-.79.611a1.295 1.295 0 0 1-.649.197.693.693 0 0 1-.571-.275c-.145-.183-.218-.43-.218-.739 0-.464.101-1.02.302-1.67.201-.65.445-1.25.733-1.797l.842-.312a.21.21 0 0 1 .06-.013c.063 0 .116.047.157.14.04.095.061.221.061.38 0 .451-.104.888-.312 1.31-.207.422-.532.873-.974 1.352-.018.23-.027.388-.027.474 0 .193.036.345.106.458.071.113.165.169.282.169a.71.71 0 0 0 .382-.13c.132-.084.333-.26.602-.523.028-.418.187-.798.482-1.142.324-.38.685-.569 1.08-.569.206 0 .37.054.494.16a.524.524 0 0 1 .186.417c0 .458-.486.829-1.459 1.114.088.43.32.646.693.646a.807.807 0 0 0 .417-.117c.129-.076.321-.243.575-.497.032-.252.118-.495.259-.728.182-.3.416-.544.701-.73.285-.185.537-.278.756-.278.276 0 .47.127.58.381l.677-.374h.186l-.292.971c-.15.488-.226.823-.226 1.004 0 .19.067.285.202.285.086 0 .181-.045.285-.137.104-.092.25-.232.437-.42v.001c.143-.155.274-.32.392-.494-.19-.084-.285-.21-.285-.375 0-.17.058-.352.174-.545.116-.194.275-.29.479-.29.172 0 .258.088.258.265 0 .139-.05.338-.149.596.367-.04.687-.32.961-.842l.228-.01c1.059-2.438.828-5.075-.83-6.732-1.019-1.02-2.408-1.5-3.895-1.471zm4.725 8.203a8.938 8.938 0 0 1-1.333 2.151 1.09 1.09 0 0 0-.012.147c0 .168.047.309.14.423.092.113.206.17.34.17.296 0 .714-.264 1.254-.787-.001.04-.003.08-.003.121 0 .146.012.368.036.666l.733-.172c0-.2.003-.357.01-.474.01-.157.033-.33.066-.517.02-.11.07-.216.152-.315l.186-.216a5.276 5.276 0 0 1 .378-.397c.062-.055.116-.099.162-.13a.26.26 0 0 1 .123-.046c.055 0 .083.035.083.106 0 .07-.052.236-.156.497-.194.486-.292.848-.292 1.084 0 .175.046.314.136.418a.45.45 0 0 0 .358.155c.365 0 .803-.269 1.313-.808v-.381c-.361.426-.623.64-.784.64-.109 0-.163-.067-.163-.2 0-.1.065-.316.195-.65.19-.486.285-.836.285-1.048a.464.464 0 0 0-.112-.319.36.36 0 0 0-.282-.127c-.165 0-.354.077-.567.233-.213.156-.5.436-.863.84.053-.262.165-.622.335-1.08l-.809.156a6.54 6.54 0 0 0-.399 1.074c-.04.156-.07.316-.092.48a7.447 7.447 0 0 1-.49.45.38.38 0 0 1-.229.08.208.208 0 0 1-.174-.082.352.352 0 0 1-.064-.222c0-.1.019-.214.056-.343.038-.13.12-.373.249-.731l.308-.849zm-17.21-2.927c-.863-.016-1.67.263-2.261.854-1.352 1.352-1.07 3.827.631 5.527 1.7 1.701 4.95 1.21 5.527.632.467-.466 1.07-3.827-.631-5.527-.957-.957-2.158-1.465-3.267-1.486zm12.285.358h.166v.21H15.4zm.427 0h.166v.865l.46-.455h.195l-.364.362.428.684h-.198l-.357-.575-.164.166v.41h-.166zm1.016 0h.166v.21h-.166zm.481.122h.166v.288h.172v.135h-.172v.717c0 .037.006.062.02.075.012.013.037.02.074.02a.23.23 0 0 0 .078-.01v.141a.802.802 0 0 1-.136.014.23.23 0 0 1-.15-.043.15.15 0 0 1-.052-.123v-.79h-.141v-.136h.141zm-3.562.258c.081 0 .15.012.207.038.057.024.1.061.13.11s.045.106.045.173h-.176c-.006-.111-.075-.167-.208-.167a.285.285 0 0 0-.164.041.134.134 0 0 0-.06.117c0 .035.015.065.045.088.03.024.08.044.15.06l.16.039a.47.47 0 0 1 .224.105c.047.046.07.108.07.186a.3.3 0 0 1-.052.175.327.327 0 0 1-.152.116.585.585 0 0 1-.226.041c-.136 0-.24-.03-.309-.088-.069-.059-.105-.149-.109-.269h.176c.004.037.01.065.017.084a.166.166 0 0 0 .034.054c.044.043.112.065.204.065a.31.31 0 0 0 .177-.045.139.139 0 0 0 .067-.119.116.116 0 0 0-.038-.09.287.287 0 0 0-.124-.055l-.156-.038a1.248 1.248 0 0 1-.159-.05.359.359 0 0 1-.098-.061.22.22 0 0 1-.058-.083.32.32 0 0 1-.016-.108c0-.096.036-.174.109-.232a.45.45 0 0 1 .29-.087zm1.035 0a.46.46 0 0 1 .202.043.351.351 0 0 1 .187.212.577.577 0 0 1 .023.126h-.168a.256.256 0 0 0-.078-.168.242.242 0 0 0-.17-.06.248.248 0 0 0-.155.05.306.306 0 0 0-.1.144.662.662 0 0 0-.034.224.58.58 0 0 0 .035.214.299.299 0 0 0 .101.135.261.261 0 0 0 .157.048c.142 0 .227-.084.256-.252h.167a.519.519 0 0 1-.065.22.35.35 0 0 1-.146.138.464.464 0 0 1-.216.048.448.448 0 0 1-.246-.066.441.441 0 0 1-.161-.192.703.703 0 0 1-.057-.293c0-.085.01-.163.032-.233a.522.522 0 0 1 .095-.182.403.403 0 0 1 .15-.117.453.453 0 0 1 .191-.04zm.603.03h.166v1.046H15.4zm1.443 0h.166v1.046h-.166zm-5.05.618c-.08 0-.2.204-.356.611-.155.407-.308.977-.459 1.71.281-.312.509-.662.683-1.05.175-.387.262-.72.262-.999a.455.455 0 0 0-.036-.197c-.025-.05-.056-.075-.093-.075zm4.662 1.797c-.221 0-.431.188-.629.563-.197.376-.296.722-.296 1.038 0 .12.029.216.088.29a.273.273 0 0 0 .223.111c.221 0 .43-.188.625-.565.196-.377.294-.725.294-1.043a.457.457 0 0 0-.083-.29.269.269 0 0 0-.222-.104zm-2.848.007c-.146 0-.285.11-.417.333-.133.222-.2.51-.2.866.566-.159.849-.452.849-.881 0-.212-.077-.318-.232-.318Z" }) + ] + } + ); +}); + +export { SiScikitlearn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.cjs new file mode 100644 index 000000000..ff8070931 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD1925"; +const SiScilab = React__namespace.forwardRef(function SiScilab2({ title = "Scilab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.813 1.803c-1.103 0-1.99.888-1.99 1.99v16.414c0 1.102.887 1.99 1.99 1.99h16.375c1.102 0 1.99-.888 1.99-1.99V3.793c0-1.102-.888-1.99-1.99-1.99zm8.82 1.234a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.827A1.802 1.825 0 0 1 10.83 4.86a1.802 1.825 0 0 1 1.803-1.824Zm2.986 3.496a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.825 1.802 1.825 0 0 1-1.803-1.825 1.802 1.825 0 0 1 1.803-1.826Zm-7.346.26a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.826 1.802 1.825 0 0 1-1.802-1.826 1.802 1.825 0 0 1 1.802-1.824Zm3.98 2.633a1.802 1.825 0 0 1 1.804 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.803-1.824 1.802 1.825 0 0 1 1.803-1.826zm7.044.053a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.8-1.824 1.802 1.825 0 0 1 1.8-1.826zm-3.402 2.535a1.802 1.825 0 0 1 1.802 1.826 1.802 1.825 0 0 1-1.802 1.824 1.802 1.825 0 0 1-1.803-1.824 1.802 1.825 0 0 1 1.803-1.826zm-11.614.953a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.802-1.824 1.802 1.825 0 0 1 1.802-1.826Zm15.518.93a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.826 1.802 1.825 0 0 1-1.803-1.826 1.802 1.825 0 0 1 1.803-1.825zM7.81 15.665a1.802 1.825 0 0 1 1.802 1.824 1.802 1.825 0 0 1-1.802 1.826 1.802 1.825 0 0 1-1.803-1.826 1.802 1.825 0 0 1 1.803-1.824ZM3.564 0A3.556 3.556 0 0 0 0 3.564v16.872A3.556 3.556 0 0 0 3.564 24h16.872A3.556 3.556 0 0 0 24 20.436V3.564A3.556 3.556 0 0 0 20.436 0Zm-.002 1.021h16.875a2.536 2.536 0 0 1 2.542 2.542v16.875a2.536 2.536 0 0 1-2.542 2.54H3.563a2.536 2.536 0 0 1-2.54-2.54V3.563a2.536 2.536 0 0 1 2.54-2.542z" }) + ] + } + ); +}); + +exports.default = SiScilab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.d.ts new file mode 100644 index 000000000..25ca925ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD1925"; +declare const SiScilab: IconType; +export { SiScilab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.mjs new file mode 100644 index 000000000..47b7e489a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScilab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD1925"; +const SiScilab = React.forwardRef(function SiScilab2({ title = "Scilab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.813 1.803c-1.103 0-1.99.888-1.99 1.99v16.414c0 1.102.887 1.99 1.99 1.99h16.375c1.102 0 1.99-.888 1.99-1.99V3.793c0-1.102-.888-1.99-1.99-1.99zm8.82 1.234a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.827A1.802 1.825 0 0 1 10.83 4.86a1.802 1.825 0 0 1 1.803-1.824Zm2.986 3.496a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.825 1.802 1.825 0 0 1-1.803-1.825 1.802 1.825 0 0 1 1.803-1.826Zm-7.346.26a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.826 1.802 1.825 0 0 1-1.802-1.826 1.802 1.825 0 0 1 1.802-1.824Zm3.98 2.633a1.802 1.825 0 0 1 1.804 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.803-1.824 1.802 1.825 0 0 1 1.803-1.826zm7.044.053a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.8-1.824 1.802 1.825 0 0 1 1.8-1.826zm-3.402 2.535a1.802 1.825 0 0 1 1.802 1.826 1.802 1.825 0 0 1-1.802 1.824 1.802 1.825 0 0 1-1.803-1.824 1.802 1.825 0 0 1 1.803-1.826zm-11.614.953a1.802 1.825 0 0 1 1.803 1.826 1.802 1.825 0 0 1-1.803 1.824 1.802 1.825 0 0 1-1.802-1.824 1.802 1.825 0 0 1 1.802-1.826Zm15.518.93a1.802 1.825 0 0 1 1.803 1.824 1.802 1.825 0 0 1-1.803 1.826 1.802 1.825 0 0 1-1.803-1.826 1.802 1.825 0 0 1 1.803-1.825zM7.81 15.665a1.802 1.825 0 0 1 1.802 1.824 1.802 1.825 0 0 1-1.802 1.826 1.802 1.825 0 0 1-1.803-1.826 1.802 1.825 0 0 1 1.803-1.824ZM3.564 0A3.556 3.556 0 0 0 0 3.564v16.872A3.556 3.556 0 0 0 3.564 24h16.872A3.556 3.556 0 0 0 24 20.436V3.564A3.556 3.556 0 0 0 20.436 0Zm-.002 1.021h16.875a2.536 2.536 0 0 1 2.542 2.542v16.875a2.536 2.536 0 0 1-2.542 2.54H3.563a2.536 2.536 0 0 1-2.54-2.54V3.563a2.536 2.536 0 0 1 2.54-2.542z" }) + ] + } + ); +}); + +export { SiScilab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.cjs new file mode 100644 index 000000000..e1d2b09b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8CAAE6"; +const SiScipy = React__namespace.forwardRef(function SiScipy2({ title = "SciPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.697 13.496c-.784-1.072-1.982-1.519-3.694-1.88l-1.592-.375-1.201-.515c-.631-.446-1.17-1.634-1.017-2.681a3 3 0 0 1 3.386-2.526 2.962 2.962 0 0 1 1.962 1.155L15.35 9.05c1.033 1.33 2.195 1.727 3.459 1.098l.637-.27a.22.22 0 0 1 .278.087l.127.19a.311.311 0 0 0 .156.131.326.326 0 0 0 .33-.058l1.467-1.384c.257-.22.182-.422.182-.422l-.354-.806s-.097-.193-.431-.149l-1.968.181a.327.327 0 0 0-.27.411l.071.227c.014.047.014.1-.005.148a.219.219 0 0 1-.124.125l-.556.235c-.582.341-1.244.123-1.686-.417l-.505-.67-1.438-1.91a4.421 4.421 0 0 0-2.929-1.72C9.355 3.733 7.095 5.42 6.741 7.84c-.179 1.22.187 2.375.855 3.302.485.674 1.373 1.06 1.854 1.18l1.262.36 1.208.277c.166.04.634.155.91.255.256.092.845.31 1.324.701.572.582.875 1.413.746 2.284a2.744 2.744 0 0 1-4.897 1.255l-1.726-2.292a2.294 2.294 0 0 0-1.514-.89 2.31 2.31 0 0 0-1.708.439l-3.632 2.71A11.002 11.002 0 0 1 0 12C0 5.798 5.133.768 11.465.768c4.715 0 8.761 2.788 10.523 6.77l.581-.27.393-1.072.411.144-.353.96.98.337-.148.402-1.095-.382-.603.277c.5 1.262.778 2.632.778 4.066 0 6.203-5.135 11.232-11.467 11.232a11.526 11.526 0 0 1-9.26-4.61l3.721-2.788a.855.855 0 0 1 1.163.19l1.826 2.455a4.186 4.186 0 0 0 2.673 1.502c2.302.322 4.439-1.273 4.773-3.563a4.14 4.14 0 0 0-.664-2.922" }) + ] + } + ); +}); + +exports.default = SiScipy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.d.ts new file mode 100644 index 000000000..3dc65fb42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8CAAE6"; +declare const SiScipy: IconType; +export { SiScipy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.mjs new file mode 100644 index 000000000..bd459b14d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScipy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8CAAE6"; +const SiScipy = React.forwardRef(function SiScipy2({ title = "SciPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.697 13.496c-.784-1.072-1.982-1.519-3.694-1.88l-1.592-.375-1.201-.515c-.631-.446-1.17-1.634-1.017-2.681a3 3 0 0 1 3.386-2.526 2.962 2.962 0 0 1 1.962 1.155L15.35 9.05c1.033 1.33 2.195 1.727 3.459 1.098l.637-.27a.22.22 0 0 1 .278.087l.127.19a.311.311 0 0 0 .156.131.326.326 0 0 0 .33-.058l1.467-1.384c.257-.22.182-.422.182-.422l-.354-.806s-.097-.193-.431-.149l-1.968.181a.327.327 0 0 0-.27.411l.071.227c.014.047.014.1-.005.148a.219.219 0 0 1-.124.125l-.556.235c-.582.341-1.244.123-1.686-.417l-.505-.67-1.438-1.91a4.421 4.421 0 0 0-2.929-1.72C9.355 3.733 7.095 5.42 6.741 7.84c-.179 1.22.187 2.375.855 3.302.485.674 1.373 1.06 1.854 1.18l1.262.36 1.208.277c.166.04.634.155.91.255.256.092.845.31 1.324.701.572.582.875 1.413.746 2.284a2.744 2.744 0 0 1-4.897 1.255l-1.726-2.292a2.294 2.294 0 0 0-1.514-.89 2.31 2.31 0 0 0-1.708.439l-3.632 2.71A11.002 11.002 0 0 1 0 12C0 5.798 5.133.768 11.465.768c4.715 0 8.761 2.788 10.523 6.77l.581-.27.393-1.072.411.144-.353.96.98.337-.148.402-1.095-.382-.603.277c.5 1.262.778 2.632.778 4.066 0 6.203-5.135 11.232-11.467 11.232a11.526 11.526 0 0 1-9.26-4.61l3.721-2.788a.855.855 0 0 1 1.163.19l1.826 2.455a4.186 4.186 0 0 0 2.673 1.502c2.302.322 4.439-1.273 4.773-3.563a4.14 4.14 0 0 0-.664-2.922" }) + ] + } + ); +}); + +export { SiScipy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.cjs new file mode 100644 index 000000000..5f879f2fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E9711C"; +const SiScopus = React__namespace.forwardRef(function SiScopus2({ title = "Scopus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 19.059l-.14-1.777c-1.426.772-2.945 1.076-4.465 1.076-3.319 0-5.96-2.782-5.96-6.475 0-3.903 2.595-6.31 5.633-6.31 1.917 0 3.39.303 4.792 1.075L24 4.895c-1.286-.608-2.337-.889-4.698-.889-4.534 0-7.97 3.53-7.97 8.017 0 5.12 4.09 7.924 7.9 7.924 1.916 0 3.506-.257 4.768-.888zm-14.954-3.46c0-2.22-1.964-3.225-3.857-4.347C3.716 10.364 2.15 9.756 2.15 8.12c0-1.215.889-2.548 2.642-2.548 1.519 0 2.57.234 3.903 1.029l.117-1.847c-1.239-.514-2.127-.748-4.137-.748C1.8 4.006.047 5.876.047 8.26c0 2.384 2.103 3.413 4.02 4.581 1.426.865 2.922 1.45 2.922 2.992 0 1.496-1.333 2.571-2.922 2.571-1.566 0-2.594-.35-3.786-1.075L0 19.176c1.215.56 2.454.818 4.16.818 2.385 0 4.885-1.473 4.885-4.395z" }) + ] + } + ); +}); + +exports.default = SiScopus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.d.ts new file mode 100644 index 000000000..961f3a4d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E9711C"; +declare const SiScopus: IconType; +export { SiScopus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.mjs new file mode 100644 index 000000000..af8c329d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScopus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E9711C"; +const SiScopus = React.forwardRef(function SiScopus2({ title = "Scopus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 19.059l-.14-1.777c-1.426.772-2.945 1.076-4.465 1.076-3.319 0-5.96-2.782-5.96-6.475 0-3.903 2.595-6.31 5.633-6.31 1.917 0 3.39.303 4.792 1.075L24 4.895c-1.286-.608-2.337-.889-4.698-.889-4.534 0-7.97 3.53-7.97 8.017 0 5.12 4.09 7.924 7.9 7.924 1.916 0 3.506-.257 4.768-.888zm-14.954-3.46c0-2.22-1.964-3.225-3.857-4.347C3.716 10.364 2.15 9.756 2.15 8.12c0-1.215.889-2.548 2.642-2.548 1.519 0 2.57.234 3.903 1.029l.117-1.847c-1.239-.514-2.127-.748-4.137-.748C1.8 4.006.047 5.876.047 8.26c0 2.384 2.103 3.413 4.02 4.581 1.426.865 2.922 1.45 2.922 2.992 0 1.496-1.333 2.571-2.922 2.571-1.566 0-2.594-.35-3.786-1.075L0 19.176c1.215.56 2.454.818 4.16.818 2.385 0 4.885-1.473 4.885-4.395z" }) + ] + } + ); +}); + +export { SiScopus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.cjs new file mode 100644 index 000000000..d9dccddd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiScpfoundation = React__namespace.forwardRef(function SiScpfoundation2({ title = "SCP Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.577 5.064v.555l-.045.01c-.026 0-.148.015-.272.028a7.023 7.023 0 0 0-3.146 1.14A7.053 7.053 0 0 0 6.18 8.73a7.007 7.007 0 0 0-.507 6.893c.05.103.09.19.09.195 0 0-.236.145-.528.313a34.79 34.79 0 0 0-.544.317c-.014.01.013.063.196.38a8.68 8.68 0 0 0 .22.37 26.001 26.001 0 0 0 .55-.312c.297-.173.544-.313.55-.313.003 0 .052.063.106.14a7.057 7.057 0 0 0 1.801 1.74 7.258 7.258 0 0 0 1.69.826 6.992 6.992 0 0 0 4.41 0 7.228 7.228 0 0 0 1.69-.825 7.01 7.01 0 0 0 1.816-1.764c.063-.09.117-.162.12-.162.002 0 .244.138.536.306.292.17.539.31.548.314.013.01.064-.075.23-.362.192-.331.21-.371.195-.383-.01-.01-.255-.15-.546-.317a16.77 16.77 0 0 1-.527-.313s.036-.082.08-.174a7.033 7.033 0 0 0 .566-4.14 7.074 7.074 0 0 0-1.084-2.73 7.03 7.03 0 0 0-1.622-1.714 6.664 6.664 0 0 0-1.08-.663 6.834 6.834 0 0 0-2.378-.697l-.27-.028-.048-.01v-1.11h-.863zm0 3.102v1.25h-.492c-.285 0-.49 0-.487.01.01.032 1.428 2.775 1.432 2.775.004 0 1.42-2.743 1.434-2.774.002-.01-.213-.01-.51-.01h-.514V6.915h.05c.151 0 .606.076.912.152a5.304 5.304 0 0 1 1.137.42 5.64 5.64 0 0 1 1.165.755c.165.136.589.567.73.742.21.26.406.545.567.828.086.152.263.52.33.69a5.74 5.74 0 0 1 .115 3.918c-.096.29-.27.703-.294.703-.013 0-1.993-1.14-2.013-1.16-.013-.011.022-.08.223-.427.13-.228.24-.418.24-.424 0-.011.007-.011-.25-.022-.102 0-.195-.01-.204-.011-.01 0-.105-.01-.215-.01s-.224-.01-.254-.012c-.03 0-.126-.01-.216-.011-.088 0-.183-.01-.21-.011-.027 0-.134-.01-.237-.012-.104 0-.205-.01-.225-.01-.02 0-.118-.01-.22-.011-.102 0-.203-.01-.224-.011-.02 0-.13-.01-.243-.011-.112 0-.212-.01-.22-.011-.042-.01-.4-.018-.4-.012 0 0 .307.484.682 1.067l.843 1.31c.146.226.163.25.176.233.008-.011.124-.21.259-.443l.245-.424.032.019 1.013.584c.538.31.978.57.978.575 0 .016-.16.23-.29.39a8.634 8.634 0 0 1-.718.728 6.278 6.278 0 0 1-.76.54 7.585 7.585 0 0 1-.817.403 5.743 5.743 0 0 1-4.236 0c-.2-.08-.634-.292-.816-.403a6.23 6.23 0 0 1-.76-.54 8.363 8.363 0 0 1-.696-.7 4.14 4.14 0 0 1-.29-.383c.002 0 .443-.257.98-.567l1.01-.583.034-.021.235.407c.13.224.24.416.248.427.011.017.02.01.08-.086.036-.058.132-.21.213-.333l.267-.415c.114-.18.485-.756.583-.906l.242-.377.255-.396a.682.682 0 0 0 .058-.101c0-.01-.026-.01-.083-.01-.046 0-.15.01-.23.012-.08 0-.182.01-.226.01-.088.01-.239.014-.453.023-.075 0-.172.01-.216.01-.044 0-.14.01-.216.012-.137.01-.26.012-.45.022-.058 0-.212.01-.342.016-.13.01-.285.013-.342.016-.059 0-.153.01-.21.01-.263.014-.349.02-.349.027 0 0 .113.203.252.443l.253.437-.03.017c-.093.06-1.996 1.153-2.004 1.153-.013 0-.114-.214-.19-.406a5.79 5.79 0 0 1-.406-2.49 5.765 5.765 0 0 1 1.291-3.287c.143-.174.567-.606.732-.742.378-.313.73-.54 1.164-.756.4-.196.725-.317 1.137-.42.31-.077.733-.148.9-.15h.061zM8.531.806l-.168.964c-.088.513-.165.94-.17.947a.832.832 0 0 1-.164.077 10.594 10.594 0 0 0-6.498 8.22 2.255 2.255 0 0 1-.04.215c-.02.053-.064.467-.084.825a15.195 15.195 0 0 0 0 1.134c.013.235.033.455.066.736l.024.199-.043.04a44.252 44.252 0 0 1-.328.303l-.2.183c-.09.085-.106.1-.562.522-.198.18-.36.335-.364.34-.003 0 .132.246.299.536l1.738 3.01a200.286 200.286 0 0 0 1.446 2.484c.006 0 .091-.03.19-.066l.468-.171c.95-.348 1.182-.432 1.19-.432a.384.384 0 0 1 .075.053c.197.165.681.506 1 .704a11.19 11.19 0 0 0 1.898.926 10.64 10.64 0 0 0 4.967.593 10.69 10.69 0 0 0 2.583-.647c.106-.042.203-.078.215-.08.059-.01.404-.167.745-.34.553-.28 1.037-.58 1.545-.96l.208-.152.056.017.089.028a133.24 133.24 0 0 1 1.343.419c.015.01.077.025.14.043l.213.067a.612.612 0 0 0 .11.028c.013 0 3.486-6.017 3.482-6.027-.003-.01-.21-.182-1.076-.904l-.415-.347c-.02-.02-.02-.023.002-.18.12-.844.134-1.68.045-2.56a10.59 10.59 0 0 0-5.284-8.136 11.63 11.63 0 0 0-1.226-.6c-.05-.02-.092-.045-.094-.054-.003-.01-.104-.452-.223-.983l-.222-.984c-.005-.017-.18-.018-3.489-.018h-3.48Zm6.395.55a183.046 183.046 0 0 1 .426 1.832c.008.03.02.037.213.11.425.165.93.4 1.282.597a9.974 9.974 0 0 1 5.106 7.923c.035.432.042 1.199.012 1.558-.028.345-.081.75-.143 1.093l-.013.073.048.046a5.893 5.893 0 0 0 .255.219c.006.01.062.053.123.102l.214.177.41.344c.413.345.384.318.37.34-.004.01-.66 1.142-1.452 2.516-.867 1.503-1.45 2.5-1.458 2.5-.01 0-.095-.024-.191-.053l-.213-.064a44.667 44.667 0 0 1-.857-.262c-.012-.01-.043-.015-.07-.022-.027-.01-.058-.016-.07-.022-.012-.01-.055-.02-.097-.03l-.207-.062c-.13-.04-.132-.04-.16-.02l-.18.145c-.261.21-.743.56-.773.56a.77.77 0 0 0-.106.062 10.05 10.05 0 0 1-4.744 1.559 16.157 16.157 0 0 1-1.284 0c-1.405-.105-2.64-.443-3.845-1.05a10.14 10.14 0 0 1-1.764-1.131.565.565 0 0 0-.088-.066.995.995 0 0 1-.117-.095l-.104-.09-.05.01a5.057 5.057 0 0 0-.466.164 60.002 60.002 0 0 1-.528.195l-.529.193a2.303 2.303 0 0 1-.188.066c-.006 0-.666-1.134-1.466-2.52l-1.455-2.52.037-.031.214-.202.248-.233.173-.164c.056-.054.128-.12.16-.15l.1-.09a41.97 41.97 0 0 1 .41-.385l.072-.07-.015-.077a8.382 8.382 0 0 1-.118-1c0-.087-.006-.32-.01-.518A9.967 9.967 0 0 1 6.46 4.329a9.862 9.862 0 0 1 2.178-1.1c.124-.044.13-.048.138-.082.011-.043.081-.437.214-1.202l.103-.586.005-.024h2.91c2.765 0 2.912 0 2.918.018z" }) + ] + } + ); +}); + +exports.default = SiScpfoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.d.ts new file mode 100644 index 000000000..045d87ce0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiScpfoundation: IconType; +export { SiScpfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.mjs new file mode 100644 index 000000000..336f5ab85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScpfoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiScpfoundation = React.forwardRef(function SiScpfoundation2({ title = "SCP Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.577 5.064v.555l-.045.01c-.026 0-.148.015-.272.028a7.023 7.023 0 0 0-3.146 1.14A7.053 7.053 0 0 0 6.18 8.73a7.007 7.007 0 0 0-.507 6.893c.05.103.09.19.09.195 0 0-.236.145-.528.313a34.79 34.79 0 0 0-.544.317c-.014.01.013.063.196.38a8.68 8.68 0 0 0 .22.37 26.001 26.001 0 0 0 .55-.312c.297-.173.544-.313.55-.313.003 0 .052.063.106.14a7.057 7.057 0 0 0 1.801 1.74 7.258 7.258 0 0 0 1.69.826 6.992 6.992 0 0 0 4.41 0 7.228 7.228 0 0 0 1.69-.825 7.01 7.01 0 0 0 1.816-1.764c.063-.09.117-.162.12-.162.002 0 .244.138.536.306.292.17.539.31.548.314.013.01.064-.075.23-.362.192-.331.21-.371.195-.383-.01-.01-.255-.15-.546-.317a16.77 16.77 0 0 1-.527-.313s.036-.082.08-.174a7.033 7.033 0 0 0 .566-4.14 7.074 7.074 0 0 0-1.084-2.73 7.03 7.03 0 0 0-1.622-1.714 6.664 6.664 0 0 0-1.08-.663 6.834 6.834 0 0 0-2.378-.697l-.27-.028-.048-.01v-1.11h-.863zm0 3.102v1.25h-.492c-.285 0-.49 0-.487.01.01.032 1.428 2.775 1.432 2.775.004 0 1.42-2.743 1.434-2.774.002-.01-.213-.01-.51-.01h-.514V6.915h.05c.151 0 .606.076.912.152a5.304 5.304 0 0 1 1.137.42 5.64 5.64 0 0 1 1.165.755c.165.136.589.567.73.742.21.26.406.545.567.828.086.152.263.52.33.69a5.74 5.74 0 0 1 .115 3.918c-.096.29-.27.703-.294.703-.013 0-1.993-1.14-2.013-1.16-.013-.011.022-.08.223-.427.13-.228.24-.418.24-.424 0-.011.007-.011-.25-.022-.102 0-.195-.01-.204-.011-.01 0-.105-.01-.215-.01s-.224-.01-.254-.012c-.03 0-.126-.01-.216-.011-.088 0-.183-.01-.21-.011-.027 0-.134-.01-.237-.012-.104 0-.205-.01-.225-.01-.02 0-.118-.01-.22-.011-.102 0-.203-.01-.224-.011-.02 0-.13-.01-.243-.011-.112 0-.212-.01-.22-.011-.042-.01-.4-.018-.4-.012 0 0 .307.484.682 1.067l.843 1.31c.146.226.163.25.176.233.008-.011.124-.21.259-.443l.245-.424.032.019 1.013.584c.538.31.978.57.978.575 0 .016-.16.23-.29.39a8.634 8.634 0 0 1-.718.728 6.278 6.278 0 0 1-.76.54 7.585 7.585 0 0 1-.817.403 5.743 5.743 0 0 1-4.236 0c-.2-.08-.634-.292-.816-.403a6.23 6.23 0 0 1-.76-.54 8.363 8.363 0 0 1-.696-.7 4.14 4.14 0 0 1-.29-.383c.002 0 .443-.257.98-.567l1.01-.583.034-.021.235.407c.13.224.24.416.248.427.011.017.02.01.08-.086.036-.058.132-.21.213-.333l.267-.415c.114-.18.485-.756.583-.906l.242-.377.255-.396a.682.682 0 0 0 .058-.101c0-.01-.026-.01-.083-.01-.046 0-.15.01-.23.012-.08 0-.182.01-.226.01-.088.01-.239.014-.453.023-.075 0-.172.01-.216.01-.044 0-.14.01-.216.012-.137.01-.26.012-.45.022-.058 0-.212.01-.342.016-.13.01-.285.013-.342.016-.059 0-.153.01-.21.01-.263.014-.349.02-.349.027 0 0 .113.203.252.443l.253.437-.03.017c-.093.06-1.996 1.153-2.004 1.153-.013 0-.114-.214-.19-.406a5.79 5.79 0 0 1-.406-2.49 5.765 5.765 0 0 1 1.291-3.287c.143-.174.567-.606.732-.742.378-.313.73-.54 1.164-.756.4-.196.725-.317 1.137-.42.31-.077.733-.148.9-.15h.061zM8.531.806l-.168.964c-.088.513-.165.94-.17.947a.832.832 0 0 1-.164.077 10.594 10.594 0 0 0-6.498 8.22 2.255 2.255 0 0 1-.04.215c-.02.053-.064.467-.084.825a15.195 15.195 0 0 0 0 1.134c.013.235.033.455.066.736l.024.199-.043.04a44.252 44.252 0 0 1-.328.303l-.2.183c-.09.085-.106.1-.562.522-.198.18-.36.335-.364.34-.003 0 .132.246.299.536l1.738 3.01a200.286 200.286 0 0 0 1.446 2.484c.006 0 .091-.03.19-.066l.468-.171c.95-.348 1.182-.432 1.19-.432a.384.384 0 0 1 .075.053c.197.165.681.506 1 .704a11.19 11.19 0 0 0 1.898.926 10.64 10.64 0 0 0 4.967.593 10.69 10.69 0 0 0 2.583-.647c.106-.042.203-.078.215-.08.059-.01.404-.167.745-.34.553-.28 1.037-.58 1.545-.96l.208-.152.056.017.089.028a133.24 133.24 0 0 1 1.343.419c.015.01.077.025.14.043l.213.067a.612.612 0 0 0 .11.028c.013 0 3.486-6.017 3.482-6.027-.003-.01-.21-.182-1.076-.904l-.415-.347c-.02-.02-.02-.023.002-.18.12-.844.134-1.68.045-2.56a10.59 10.59 0 0 0-5.284-8.136 11.63 11.63 0 0 0-1.226-.6c-.05-.02-.092-.045-.094-.054-.003-.01-.104-.452-.223-.983l-.222-.984c-.005-.017-.18-.018-3.489-.018h-3.48Zm6.395.55a183.046 183.046 0 0 1 .426 1.832c.008.03.02.037.213.11.425.165.93.4 1.282.597a9.974 9.974 0 0 1 5.106 7.923c.035.432.042 1.199.012 1.558-.028.345-.081.75-.143 1.093l-.013.073.048.046a5.893 5.893 0 0 0 .255.219c.006.01.062.053.123.102l.214.177.41.344c.413.345.384.318.37.34-.004.01-.66 1.142-1.452 2.516-.867 1.503-1.45 2.5-1.458 2.5-.01 0-.095-.024-.191-.053l-.213-.064a44.667 44.667 0 0 1-.857-.262c-.012-.01-.043-.015-.07-.022-.027-.01-.058-.016-.07-.022-.012-.01-.055-.02-.097-.03l-.207-.062c-.13-.04-.132-.04-.16-.02l-.18.145c-.261.21-.743.56-.773.56a.77.77 0 0 0-.106.062 10.05 10.05 0 0 1-4.744 1.559 16.157 16.157 0 0 1-1.284 0c-1.405-.105-2.64-.443-3.845-1.05a10.14 10.14 0 0 1-1.764-1.131.565.565 0 0 0-.088-.066.995.995 0 0 1-.117-.095l-.104-.09-.05.01a5.057 5.057 0 0 0-.466.164 60.002 60.002 0 0 1-.528.195l-.529.193a2.303 2.303 0 0 1-.188.066c-.006 0-.666-1.134-1.466-2.52l-1.455-2.52.037-.031.214-.202.248-.233.173-.164c.056-.054.128-.12.16-.15l.1-.09a41.97 41.97 0 0 1 .41-.385l.072-.07-.015-.077a8.382 8.382 0 0 1-.118-1c0-.087-.006-.32-.01-.518A9.967 9.967 0 0 1 6.46 4.329a9.862 9.862 0 0 1 2.178-1.1c.124-.044.13-.048.138-.082.011-.043.081-.437.214-1.202l.103-.586.005-.024h2.91c2.765 0 2.912 0 2.918.018z" }) + ] + } + ); +}); + +export { SiScpfoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.cjs new file mode 100644 index 000000000..4d730de24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#06B632"; +const SiScrapbox = React__namespace.forwardRef(function SiScrapbox2({ title = "Scrapbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 3c.194 0 .388.04.535.117l4.93 2.592c.296.156.295.406 0 .562L12.32 8.977c-.177.092-.177.244 0 .337l5.145 2.706c.183.096.342.286.44.498l-4.987 2.623a.533.533 0 0 0-.281.476v.002a.536.536 0 0 0 .281.479l4.836 2.545a.948.948 0 0 1-.29.248l-4.929 2.591c-.296.156-.774.156-1.07 0l-4.93-2.591c-.296-.156-.295-.407 0-.563l5.145-2.705c.176-.092.177-.245 0-.338L6.535 12.58a1 1 0 0 1-.373-.367l4.942-2.57a.516.516 0 0 0 .279-.26.554.554 0 0 0 0-.48.515.515 0 0 0-.28-.258l-4.939-2.57a1 1 0 0 1 .371-.366l4.93-2.592A1.19 1.19 0 0 1 12 3zM6 7.176l3.781 1.967L6 11.109V7.176zm12 6.48v3.926l-3.732-1.963L18 13.656z" }) + ] + } + ); +}); + +exports.default = SiScrapbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.d.ts new file mode 100644 index 000000000..c0d7fcd90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#06B632"; +declare const SiScrapbox: IconType; +export { SiScrapbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.mjs new file mode 100644 index 000000000..784679da3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#06B632"; +const SiScrapbox = React.forwardRef(function SiScrapbox2({ title = "Scrapbox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 3c.194 0 .388.04.535.117l4.93 2.592c.296.156.295.406 0 .562L12.32 8.977c-.177.092-.177.244 0 .337l5.145 2.706c.183.096.342.286.44.498l-4.987 2.623a.533.533 0 0 0-.281.476v.002a.536.536 0 0 0 .281.479l4.836 2.545a.948.948 0 0 1-.29.248l-4.929 2.591c-.296.156-.774.156-1.07 0l-4.93-2.591c-.296-.156-.295-.407 0-.563l5.145-2.705c.176-.092.177-.245 0-.338L6.535 12.58a1 1 0 0 1-.373-.367l4.942-2.57a.516.516 0 0 0 .279-.26.554.554 0 0 0 0-.48.515.515 0 0 0-.28-.258l-4.939-2.57a1 1 0 0 1 .371-.366l4.93-2.592A1.19 1.19 0 0 1 12 3zM6 7.176l3.781 1.967L6 11.109V7.176zm12 6.48v3.926l-3.732-1.963L18 13.656z" }) + ] + } + ); +}); + +export { SiScrapbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.cjs new file mode 100644 index 000000000..959ff960f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#60A839"; +const SiScrapy = React__namespace.forwardRef(function SiScrapy2({ title = "Scrapy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12Zm0 1.113c6.003 0 10.887 4.884 10.887 10.887S18.003 22.887 12 22.887 1.113 18.003 1.113 12 5.997 1.113 12 1.113Zm7.03 5.201c-.536-.002-1.28.304-2.255 1.098-1.052.858-3.814 3.045-3.814 3.045l1.025 1.3c4.694-2.558 6.19-3.167 6.116-4.294-.042-.634-.384-1.146-1.073-1.149Zm-.507.752c.147 0 .266.106.266.239 0 .132-.119.238-.266.238-.146 0-.265-.106-.265-.238 0-.171.162-.239.265-.239zm-1.58 1.489c0 .131-.118.238-.265.238-.147 0-.264-.107-.264-.238 0-.128.11-.234.24-.24.13-.006.29.077.29.24zm-2.109 1.01c.147 0 .266.106.266.238s-.12.238-.266.238c-.146 0-.266-.106-.266-.238 0-.148.139-.239.266-.239zm-2.445.972c-1.502.225-5.807.992-8.01 2.672l3.574 5.387s4.706-2.932 5.863-6.244z" }) + ] + } + ); +}); + +exports.default = SiScrapy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.d.ts new file mode 100644 index 000000000..9dd8b383e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#60A839"; +declare const SiScrapy: IconType; +export { SiScrapy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.mjs new file mode 100644 index 000000000..17e4a5dd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrapy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#60A839"; +const SiScrapy = React.forwardRef(function SiScrapy2({ title = "Scrapy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12 6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12Zm0 1.113c6.003 0 10.887 4.884 10.887 10.887S18.003 22.887 12 22.887 1.113 18.003 1.113 12 5.997 1.113 12 1.113Zm7.03 5.201c-.536-.002-1.28.304-2.255 1.098-1.052.858-3.814 3.045-3.814 3.045l1.025 1.3c4.694-2.558 6.19-3.167 6.116-4.294-.042-.634-.384-1.146-1.073-1.149Zm-.507.752c.147 0 .266.106.266.239 0 .132-.119.238-.266.238-.146 0-.265-.106-.265-.238 0-.171.162-.239.265-.239zm-1.58 1.489c0 .131-.118.238-.265.238-.147 0-.264-.107-.264-.238 0-.128.11-.234.24-.24.13-.006.29.077.29.24zm-2.109 1.01c.147 0 .266.106.266.238s-.12.238-.266.238c-.146 0-.266-.106-.266-.238 0-.148.139-.239.266-.239zm-2.445.972c-1.502.225-5.807.992-8.01 2.672l3.574 5.387s4.706-2.932 5.863-6.244z" }) + ] + } + ); +}); + +export { SiScrapy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.cjs new file mode 100644 index 000000000..471e5b004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#855CD6"; +const SiScratch = React__namespace.forwardRef(function SiScratch2({ title = "Scratch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.406 11.312c-.78-.123-1.198-.654-.99-2.295l.023-.198c.175-1.426.321-1.743.996-1.706.198.013.426.14.654.33.211.247.68.568.945 1.204.19.466.254.77.281 1.098l.042.402v-.002a.68.68 0 0 0 1.342-.007c.008-.044.176-4.365.176-4.436 0-.38-.302-.69-.68-.696a.685.685 0 0 0-.682.688c0 .009-.001.605-.014 1.206-.536-.592-1.223-1.123-1.994-1.17-2.058-.11-2.283 1.811-2.419 2.918l-.02.196c-.278 2.189.441 3.569 2.13 3.837 1.838.293 3.063.72 3.074 1.868.007.446-.224.903-.627 1.254a2.163 2.163 0 0 1-1.749.507 3.233 3.233 0 0 1-.539-.141c-.24-.136-.847-.51-1.154-.942-.26-.364-.35-.937-.378-1.3.004-.163.005-.27.005-.283a.69.69 0 0 0-.669-.703.689.689 0 0 0-.696.682c0 .013-.017 1.367-.066 2.183-.07 1.313 0 2.426 0 2.474.028.382.35.67.727.644a.681.681 0 0 0 .635-.733c0-.006-.033-.545-.029-1.29a5.21 5.21 0 0 0 1.938.773 3.451 3.451 0 0 0 2.856-.82c.713-.619 1.122-1.464 1.11-2.32-.024-2.555-2.865-3.004-4.228-3.222M14.174 0a5.51 5.51 0 0 0-2.724.723h-.112c-2.637 0-4.937 1.392-6.15 3.728-.728 1.393-.9 2.75-.999 3.579-.012.089-.018.17-.028.262-.12.974-.123 1.904-.01 2.772a5.824 5.824 0 0 0-.625 2.529v.016a58.919 58.919 0 0 1-.057 1.95 29.72 29.72 0 0 0-.008 2.94l.013.209C3.698 21.676 6.159 24 9.083 24a5.516 5.516 0 0 0 3.463-1.21 8.357 8.357 0 0 0 5.195-2.08c1.826-1.587 2.859-3.845 2.83-6.19-.013-1.362-.346-2.638-.978-3.763.117-1.273.221-4.996.221-5.03 0-3.103-2.484-5.67-5.539-5.727zm.056 2.675c1.642.03 2.978 1.412 2.978 3.081 0 .038-.145 4.497-.215 4.883a3.152 3.152 0 0 1-.203.69c.756.89 1.165 2 1.175 3.256.021 1.555-.681 3.076-1.926 4.16a5.763 5.763 0 0 1-3.8 1.444 5.986 5.986 0 0 1-.718-.048 3.386 3.386 0 0 1-.172.215 2.97 2.97 0 0 1-2.264 1.038c-1.573 0-2.897-1.255-3.013-2.856l-.008-.122a27.366 27.366 0 0 1 .005-2.662c.039-.679.06-1.831.062-2.08a3.124 3.124 0 0 1 .783-2.025c-.237-.835-.312-1.836-.167-3.02l.024-.212c.083-.695.208-1.72.72-2.7.765-1.473 2.168-2.318 3.848-2.318a4.568 4.568 0 0 1 .824.07c.546-.5 1.27-.81 2.067-.794Z" }) + ] + } + ); +}); + +exports.default = SiScratch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.d.ts new file mode 100644 index 000000000..4a6cf6608 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#855CD6"; +declare const SiScratch: IconType; +export { SiScratch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.mjs new file mode 100644 index 000000000..ab6fbd4e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScratch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#855CD6"; +const SiScratch = React.forwardRef(function SiScratch2({ title = "Scratch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.406 11.312c-.78-.123-1.198-.654-.99-2.295l.023-.198c.175-1.426.321-1.743.996-1.706.198.013.426.14.654.33.211.247.68.568.945 1.204.19.466.254.77.281 1.098l.042.402v-.002a.68.68 0 0 0 1.342-.007c.008-.044.176-4.365.176-4.436 0-.38-.302-.69-.68-.696a.685.685 0 0 0-.682.688c0 .009-.001.605-.014 1.206-.536-.592-1.223-1.123-1.994-1.17-2.058-.11-2.283 1.811-2.419 2.918l-.02.196c-.278 2.189.441 3.569 2.13 3.837 1.838.293 3.063.72 3.074 1.868.007.446-.224.903-.627 1.254a2.163 2.163 0 0 1-1.749.507 3.233 3.233 0 0 1-.539-.141c-.24-.136-.847-.51-1.154-.942-.26-.364-.35-.937-.378-1.3.004-.163.005-.27.005-.283a.69.69 0 0 0-.669-.703.689.689 0 0 0-.696.682c0 .013-.017 1.367-.066 2.183-.07 1.313 0 2.426 0 2.474.028.382.35.67.727.644a.681.681 0 0 0 .635-.733c0-.006-.033-.545-.029-1.29a5.21 5.21 0 0 0 1.938.773 3.451 3.451 0 0 0 2.856-.82c.713-.619 1.122-1.464 1.11-2.32-.024-2.555-2.865-3.004-4.228-3.222M14.174 0a5.51 5.51 0 0 0-2.724.723h-.112c-2.637 0-4.937 1.392-6.15 3.728-.728 1.393-.9 2.75-.999 3.579-.012.089-.018.17-.028.262-.12.974-.123 1.904-.01 2.772a5.824 5.824 0 0 0-.625 2.529v.016a58.919 58.919 0 0 1-.057 1.95 29.72 29.72 0 0 0-.008 2.94l.013.209C3.698 21.676 6.159 24 9.083 24a5.516 5.516 0 0 0 3.463-1.21 8.357 8.357 0 0 0 5.195-2.08c1.826-1.587 2.859-3.845 2.83-6.19-.013-1.362-.346-2.638-.978-3.763.117-1.273.221-4.996.221-5.03 0-3.103-2.484-5.67-5.539-5.727zm.056 2.675c1.642.03 2.978 1.412 2.978 3.081 0 .038-.145 4.497-.215 4.883a3.152 3.152 0 0 1-.203.69c.756.89 1.165 2 1.175 3.256.021 1.555-.681 3.076-1.926 4.16a5.763 5.763 0 0 1-3.8 1.444 5.986 5.986 0 0 1-.718-.048 3.386 3.386 0 0 1-.172.215 2.97 2.97 0 0 1-2.264 1.038c-1.573 0-2.897-1.255-3.013-2.856l-.008-.122a27.366 27.366 0 0 1 .005-2.662c.039-.679.06-1.831.062-2.08a3.124 3.124 0 0 1 .783-2.025c-.237-.835-.312-1.836-.167-3.02l.024-.212c.083-.695.208-1.72.72-2.7.765-1.473 2.168-2.318 3.848-2.318a4.568 4.568 0 0 1 .824.07c.546-.5 1.27-.81 2.067-.794Z" }) + ] + } + ); +}); + +export { SiScratch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.cjs new file mode 100644 index 000000000..1e4185af6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8282"; +const SiScreencastify = React__namespace.forwardRef(function SiScreencastify2({ title = "Screencastify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.898 2.347c-.472.008-.914.38-.914.891v4.278H1.1c-.541 0-1.1.437-1.1.978v7.02c0 .54.559.907 1.1.907h5.884V7.533h6.408c.542 0 .926.437.926.979v1.623l3.667-2.095v7.927l-3.667-2.095v1.676c0 .541-.384.908-.926.908H6.984v4.313c0 .68.786 1.1 1.38.768l9.638-5.535 5.553-3.195c.593-.402.593-1.257 0-1.59l-5.553-3.194L8.364 2.47a.886.886 0 00-.466-.123z" }) + ] + } + ); +}); + +exports.default = SiScreencastify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.d.ts new file mode 100644 index 000000000..af9b78139 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8282"; +declare const SiScreencastify: IconType; +export { SiScreencastify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.mjs new file mode 100644 index 000000000..32a37bc89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScreencastify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8282"; +const SiScreencastify = React.forwardRef(function SiScreencastify2({ title = "Screencastify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.898 2.347c-.472.008-.914.38-.914.891v4.278H1.1c-.541 0-1.1.437-1.1.978v7.02c0 .54.559.907 1.1.907h5.884V7.533h6.408c.542 0 .926.437.926.979v1.623l3.667-2.095v7.927l-3.667-2.095v1.676c0 .541-.384.908-.926.908H6.984v4.313c0 .68.786 1.1 1.38.768l9.638-5.535 5.553-3.195c.593-.402.593-1.257 0-1.59l-5.553-3.194L8.364 2.47a.886.886 0 00-.466-.123z" }) + ] + } + ); +}); + +export { SiScreencastify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.cjs new file mode 100644 index 000000000..e1cc851fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2B283A"; +const SiScrimba = React__namespace.forwardRef(function SiScrimba2({ title = "Scrimba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 6.222a2.222 2.222 0 01-2.222 2.222h-8.89a2.222 2.222 0 010-4.444h8.89C23.005 4 24 4.995 24 6.222zm-7.333 9.334h-8.89a2.222 2.222 0 000 4.444h8.89a2.222 2.222 0 000-4.444zm0-5.778H13.11a2.222 2.222 0 000 4.444h3.556a2.222 2.222 0 000-4.444zM2.222 15.556a2.222 2.222 0 100 4.444 2.222 2.222 0 000-4.444z" }) + ] + } + ); +}); + +exports.default = SiScrimba; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.d.ts new file mode 100644 index 000000000..68a7d0cb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2B283A"; +declare const SiScrimba: IconType; +export { SiScrimba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.mjs new file mode 100644 index 000000000..eadfc7db9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrimba.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2B283A"; +const SiScrimba = React.forwardRef(function SiScrimba2({ title = "Scrimba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 6.222a2.222 2.222 0 01-2.222 2.222h-8.89a2.222 2.222 0 010-4.444h8.89C23.005 4 24 4.995 24 6.222zm-7.333 9.334h-8.89a2.222 2.222 0 000 4.444h8.89a2.222 2.222 0 000-4.444zm0-5.778H13.11a2.222 2.222 0 000 4.444h3.556a2.222 2.222 0 000-4.444zM2.222 15.556a2.222 2.222 0 100 4.444 2.222 2.222 0 000-4.444z" }) + ] + } + ); +}); + +export { SiScrimba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.cjs new file mode 100644 index 000000000..b16e7e876 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCB36"; +const SiScrollreveal = React__namespace.forwardRef(function SiScrollreveal2({ title = "ScrollReveal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.714 2.857A1.71 1.71 0 0 0 0 4.571v6.858c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714V4.57a1.71 1.71 0 0 0-1.715-1.714zm6.857 0a1.71 1.71 0 0 0-1.714 1.714v1.143c0 .95.765 1.715 1.714 1.715a1.71 1.71 0 0 0 1.715-1.715V4.571A1.71 1.71 0 0 0 8.57 2.857zm6.858 0a1.71 1.71 0 0 0-1.715 1.714V19.43c0 .95.765 1.714 1.715 1.714a1.71 1.71 0 0 0 1.714-1.714V4.57a1.71 1.71 0 0 0-1.714-1.714zm6.857 0a1.71 1.71 0 0 0-1.715 1.714v6.858c0 .95.765 1.714 1.715 1.714A1.71 1.71 0 0 0 24 11.429V4.57a1.71 1.71 0 0 0-1.714-1.714zm-13.715 8a1.71 1.71 0 0 0-1.714 1.714v6.858c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714V12.57a1.71 1.71 0 0 0-1.715-1.714zm-6.857 5.714A1.71 1.71 0 0 0 0 18.286v1.143c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714v-1.143a1.71 1.71 0 0 0-1.715-1.715zm20.572 0a1.71 1.71 0 0 0-1.715 1.715v1.143c0 .95.765 1.714 1.715 1.714A1.71 1.71 0 0 0 24 19.429v-1.143a1.71 1.71 0 0 0-1.714-1.715Z" }) + ] + } + ); +}); + +exports.default = SiScrollreveal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.d.ts new file mode 100644 index 000000000..a66822058 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCB36"; +declare const SiScrollreveal: IconType; +export { SiScrollreveal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.mjs new file mode 100644 index 000000000..2ab60d364 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrollreveal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCB36"; +const SiScrollreveal = React.forwardRef(function SiScrollreveal2({ title = "ScrollReveal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.714 2.857A1.71 1.71 0 0 0 0 4.571v6.858c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714V4.57a1.71 1.71 0 0 0-1.715-1.714zm6.857 0a1.71 1.71 0 0 0-1.714 1.714v1.143c0 .95.765 1.715 1.714 1.715a1.71 1.71 0 0 0 1.715-1.715V4.571A1.71 1.71 0 0 0 8.57 2.857zm6.858 0a1.71 1.71 0 0 0-1.715 1.714V19.43c0 .95.765 1.714 1.715 1.714a1.71 1.71 0 0 0 1.714-1.714V4.57a1.71 1.71 0 0 0-1.714-1.714zm6.857 0a1.71 1.71 0 0 0-1.715 1.714v6.858c0 .95.765 1.714 1.715 1.714A1.71 1.71 0 0 0 24 11.429V4.57a1.71 1.71 0 0 0-1.714-1.714zm-13.715 8a1.71 1.71 0 0 0-1.714 1.714v6.858c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714V12.57a1.71 1.71 0 0 0-1.715-1.714zm-6.857 5.714A1.71 1.71 0 0 0 0 18.286v1.143c0 .95.765 1.714 1.714 1.714a1.71 1.71 0 0 0 1.715-1.714v-1.143a1.71 1.71 0 0 0-1.715-1.715zm20.572 0a1.71 1.71 0 0 0-1.715 1.715v1.143c0 .95.765 1.714 1.715 1.714A1.71 1.71 0 0 0 24 19.429v-1.143a1.71 1.71 0 0 0-1.714-1.715Z" }) + ] + } + ); +}); + +export { SiScrollreveal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.cjs new file mode 100644 index 000000000..ad23d2f62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009FDA"; +const SiScrumalliance = React__namespace.forwardRef(function SiScrumalliance2({ title = "Scrum Alliance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.6113 7.6836a.2999.2999 0 1 0 .3398.254.2998.2998 0 0 0-.3398-.254zm.879.002a.325.325 0 0 0-.295.3242.325.325 0 0 0 .3262.3261.325.325 0 0 0 .3242-.3261.325.325 0 0 0-.3242-.3243.325.325 0 0 0-.0313 0zM.8261 8.078a.2746.2746 0 0 0-.2325.3106c.022.15.1608.2524.3106.2304a.2711.2711 0 0 0 .2305-.3086c-.0216-.1493-.1591-.2543-.3086-.2324zm2.086.375a.349.349 0 0 0 .3495.3496.349.349 0 0 0 .3477-.3496.3481.3481 0 0 0-.3487-.3469.3481.3481 0 0 0-.3486.347zm3.9648.0274c-.6133 0-1.17.3394-1.17.9883 0 .9991 1.3438.7344 1.3438 1.4355 0 .3597-.287.6113-.6914.6113-.2958 0-.6265-.0989-.5742-.3926l.0468-.2617h-.4004l-.0605.332c-.0956.5637.5359.7442.9316.7442.6438 0 1.1953-.3976 1.1953-1.0605 0-1.0373-1.3437-.7678-1.3437-1.4356 0-.3362.2964-.545.666-.545.2175 0 .5124.0716.4688.299l-.0391.2323h.4004l.0703-.3613c.0826-.4308-.4827-.586-.8437-.586zm-6.541.287a.2454.2454 0 0 0-.207.2774.2435.2435 0 0 0 .2772.2051.2431.2431 0 0 0 .207-.2754.2457.2457 0 0 0-.2773-.207zm3.3261.127a.3674.3674 0 0 0-.3105.416.3674.3674 0 0 0 .416.3106.3668.3668 0 0 0 .3105-.416.367.367 0 0 0-.416-.3106zm5.664.5332c-.7783 0-1.4003.6805-1.4003 1.457 0 .6254.4032 1.0528 1.0469 1.0528.5787 0 .914-.3555.914-.3555l-.121-.3554s-.3147.3125-.754.3125c-.4087 0-.6562-.2707-.6562-.6875 0-.554.4472-1.0274.9258-1.0274.2087 0 .4523.0852.4218.2793l-.0293.1621h.373l.0528-.2754c.0696-.4262-.4557-.5625-.7734-.5625zm7.625 0c-.4132 0-.7684.369-.873.582h-.0097c.0305-.085.0664-.2712.0664-.328 0-.128-.0662-.1973-.2403-.1973h-.496l-.0645.3554h.2734c.0695 0 .0868.0362.0781.0977l-.3476 1.9434h.4219l.1914-1.0704c.087-.4735.4044-.9667.8261-.9667.2437 0 .3145.1378.3145.332 0 .0805-.0183.1747-.0313.2695l-.2558 1.4356h.42l.1972-1.0957c.0784-.4594.3917-.9414.8008-.9414.2522 0 .3203.1372.3203.3457 0 .2272-.1856 1.0272-.1856 1.25 0 .4072.2867.4492.4824.4492.1043 0 .1875-.0078.1875-.0078l.0645-.3555s-.0446.0098-.1055.0098c-.1087 0-.1953-.0292-.1953-.209 0-.1895.1914-.9814.1914-1.2657 0-.4072-.2293-.6328-.6035-.6328-.3654 0-.6956.2555-.8652.582h-.0098c-.0217-.3788-.2005-.582-.5527-.582zm-4.9628.0274c-.3479 0-.6431.2976-.791.6387h-.0098c.0349-.1138.0781-.3448.0781-.4063 0-.1375-.0647-.2031-.2343-.2031h-.4961l-.0704.3535h.2754c.0739 0 .087.0486.0782.1055l-.3438 1.9375h.4219l.1562-.8907c.0956-.5493.4607-1.0859.8653-1.0859.0565 0 .0956.011.1172.0156l.084-.455a.7813.7813 0 0 0-.131-.0098zm.4922.0293l-.0664.3535h.3652l-.2031 1.166a1.5665 1.5665 0 0 0-.0313.3027c0 .45.2823.6309.6172.6309.4612 0 .7665-.3281.9102-.5742h.0078c-.0304.3599.1437.5254.4394.5254a2.838 2.838 0 0 0 .2012-.0078l.0645-.3555s-.0403.0098-.1055.0098c-.1086 0-.1953-.0386-.1953-.209a.937.937 0 0 1 .0136-.1465l.3047-1.6953h-.787l-.0665.3535h.3653l-.129.7344c-.0784.4545-.4357.9472-.875.9472-.2478 0-.33-.1273-.33-.336 0-.0756.0134-.174.0351-.2733l.252-1.4258zm-12.2871.086a.2255.2255 0 0 0-.1914.2558c.0178.1238.134.209.2578.1914a.2254.2254 0 0 0 .1914-.2559.2277.2277 0 0 0-.2578-.1914zm.2187.7773a.1912.1912 0 0 0-.1621.2168.193.193 0 0 0 .2188.162.1911.1911 0 0 0 .162-.2167.1936.1936 0 0 0-.2187-.1621zm.4941.6484a.166.166 0 0 0-.1406.1875.1642.1642 0 0 0 .1875.1387.1659.1659 0 0 0 .1407-.1875.1644.1644 0 0 0-.1876-.1387zm2.4864.2207c-.222 0-.4024.179-.4024.4004 0 .2219.1805.4023.4024.4023a.4027.4027 0 0 0 .4023-.4023c0-.2214-.1804-.4004-.4023-.4004zm-1.8106.0762a.157.157 0 0 0-.1445.1562.157.157 0 0 0 .1582.1582.157.157 0 0 0 .1563-.1582.157.157 0 0 0-.1563-.1562.1566.1566 0 0 0-.0137 0zm.672.0918a.4355.4355 0 0 0-.418.4355.4355.4355 0 1 0 .4355-.4355.4365.4365 0 0 0-.0176 0zm2.205.1757c-.2024 0-.3652.165-.3652.3672 0 .2028.1628.3672.3652.3672a.3673.3673 0 0 0 .3672-.3672.3677.3677 0 0 0-.3672-.3672zm-3.0645.5098a.4664.4664 0 0 0-.4668.4668c0 .2583.2087.4668.4668.4668a.4663.4663 0 0 0 .4668-.4668.4664.4664 0 0 0-.4668-.4668zm3.8575.3223a.3187.3187 0 0 0-.3184.3203c0 .1774.1414.3203.3184.3203a.32.32 0 0 0 .3203-.3203.3205.3205 0 0 0-.3203-.3203zm2.8125.4824l-1.5743 3.0547h-.3086l-.0488.2754h.9785l.0528-.2754h-.3477l.4395-.8574h1.1914l.1347.8574h-.3535l-.0469.2754h.9649l.0488-.2754h-.3086l-.4844-3.0547zm1.6835 0l-.0488.2656h.3926l-.4395 2.4668c-.013.0663-.0214.1323-.0214.1797 0 .3742.2561.4316.4257.4316.0697 0 .1524-.0136.1524-.0136l.0469-.2754s-.0334.0098-.1075.0098c-.1043 0-.209-.014-.209-.213 0-.0378.0089-.0995.0176-.1562l.4785-2.6953zm1.1622 0l-.0489.2656h.3907l-.4375 2.4668c-.0132.0663-.0235.1323-.0235.1797 0 .3742.2581.4316.4277.4316.0697 0 .1524-.0136.1524-.0136l.0469-.2754s-.0336.0098-.1075.0098c-.1045 0-.209-.014-.209-.213 0-.0378.0089-.0995.0176-.1562l.4766-2.6953zm1.6386 0l-.0742.4023h.336l.0742-.4023zM.957 13.1738a.4928.4928 0 0 0-.4922.4922c0 .2718.2208.4902.4922.4902a.4905.4905 0 0 0 .4922-.4902.4925.4925 0 0 0-.4922-.4922zm22.5762.039c-.2566 0-.4629.2294-.4629.5177 0 .288.2063.5175.4629.5175.2592 0 .4668-.2296.4668-.5175 0-.2883-.2076-.5176-.4668-.5176zm-15.3555.004h.0078s.0003.104.0176.2129l.209 1.3633H7.3906l.7031-1.3633c.0523-.109.084-.2129.084-.2129zm15.3555.0918c.2097 0 .3711.1847.3711.4219 0 .237-.1614.4218-.3711.4218-.2073 0-.3672-.1848-.3672-.4218 0-.2372.1599-.422.3672-.422zm-17.9453.0976a.2965.2965 0 0 0-.2969.297c0 .164.1326.2968.2969.2968s.2988-.1328.2988-.2969c0-.1643-.1345-.2968-.2988-.2968zm17.7871.0547v.5352h.0918v-.207h.08l.0919.207h.1015l-.0937-.1973c-.0117-.0242-.0176-.0293-.0176-.0293v-.0039c.0404-.0112.0898-.0583.0898-.1406 0-.0993-.0617-.164-.1542-.164zm.0918.0762h.0781c.0482 0 .0801.0327.0801.0879 0 .0568-.0319.0898-.08.0898h-.0782zm-9.1602.2285c-.4568 0-.7949.2461-.7949.2461l.0899.2617s.2971-.2226.6582-.2226c.3349 0 .4472.1746.4472.4258 0 .085-.0351.2695-.0351.2695h-.1426c-.6003 0-1.4844.1555-1.4844.918 0 .3836.2884.5976.6406.5976.5177 0 .8091-.5117.8047-.5117h.0078c-.0217.3174.14.4648.3965.4648.0783 0 .164-.0097.164-.0097l.049-.2656s-.0393.0097-.1134.0097c-.1 0-.205-.024-.205-.2226 0-.199.2187-1.0175.2187-1.297 0-.4593-.2836-.664-.7012-.664zm2.92 0c-.5395 0-.8878.4272-.9746.6309h-.0098c.0393-.0995.0742-.327.0742-.379 0-.1231-.0554-.1952-.2207-.1952h-.418l-.0488.2656h.2969c.0695 0 .0867.0467.0781.1035l-.3613 2.0137h.2949l.1973-1.0938c.0956-.5587.53-1.043 1-1.043.2435 0 .3789.1285.3789.3985 0 .2652-.2051 1.1269-.2051 1.3398 0 .36.2613.4082.418.4082.0738 0 .1601-.0097.1601-.0097l.0488-.2656s-.0397.0097-.1093.0097c-.1042 0-.209-.019-.209-.2226 0-.1895.205-1.0562.205-1.3496 0-.393-.2129-.6114-.5956-.6114zm2.5312 0c-.7264 0-1.3789.6491-1.3789 1.459 0 .6394.4078 1.0371 1.004 1.0371.5567 0 .8886-.3555.8886-.3555l-.0957-.2656s-.3127.332-.7695.332c-.4262 0-.7227-.2891-.7227-.7675 0-.6487.5301-1.1504 1.039-1.1504.2132 0 .5096.09.4747.3125l-.0313.1758h.2754l.043-.252c.0652-.3881-.4308-.5254-.7266-.5254zm2.3106 0c-.7395 0-1.2793.7156-1.2793 1.4922 0 .6015.392 1.004.9921 1.004.461 0 .8223-.3126.8223-.3126l-.0918-.2656s-.323.289-.7187.289c-.461 0-.6992-.3262-.6992-.7382 0-.1185.0214-.2188.0214-.2188h1.6797s.0606-.204.0606-.3886c0-.4973-.2477-.8614-.7871-.8614zm-10.0586.0567l-.047.2656h.3907l-.2773 1.5351c-.0088.0664-.0235.1265-.0235.1739 0 .3742.2624.418.4278.418.0608 0 .1523-.0098.1523-.0098l.0469-.2656s-.0355.0097-.1094.0097c-.1045 0-.207-.0238-.207-.2226 0-.0379.003-.0846.0117-.1368l.3223-1.7675zm10.0449.2129c.2873 0 .5.1855.5.5644 0 .0948-.0176.1797-.0176.1797H21.168c.1565-.4833.526-.7441.8867-.7441zm-16.6035.4238c-.139 0-.252.113-.252.252 0 .1387.113.25.252.25s.252-.1113.252-.25c0-.139-.113-.252-.252-.252zm9.0508.5293h.127l-.0216.1035c-.0954.412-.4389.9043-.8476.9043-.2916 0-.4141-.1753-.4141-.379 0-.5872.7908-.6288 1.1563-.6288zm-9.5684.4043c-.1198 0-.2188.0966-.2188.2168a.22.22 0 0 0 .2188.2187c.12 0 .2168-.0988.2168-.2187a.2164.2164 0 0 0-.2168-.2168zm-.8086.5137a.2077.2077 0 0 0-.207.207c0 .114.0932.205.207.205a.2044.2044 0 0 0 .205-.205.2062.2062 0 0 0-.205-.207Z" }) + ] + } + ); +}); + +exports.default = SiScrumalliance; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.d.ts new file mode 100644 index 000000000..e6f179d4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009FDA"; +declare const SiScrumalliance: IconType; +export { SiScrumalliance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.mjs new file mode 100644 index 000000000..20731d393 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrumalliance.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009FDA"; +const SiScrumalliance = React.forwardRef(function SiScrumalliance2({ title = "Scrum Alliance", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.6113 7.6836a.2999.2999 0 1 0 .3398.254.2998.2998 0 0 0-.3398-.254zm.879.002a.325.325 0 0 0-.295.3242.325.325 0 0 0 .3262.3261.325.325 0 0 0 .3242-.3261.325.325 0 0 0-.3242-.3243.325.325 0 0 0-.0313 0zM.8261 8.078a.2746.2746 0 0 0-.2325.3106c.022.15.1608.2524.3106.2304a.2711.2711 0 0 0 .2305-.3086c-.0216-.1493-.1591-.2543-.3086-.2324zm2.086.375a.349.349 0 0 0 .3495.3496.349.349 0 0 0 .3477-.3496.3481.3481 0 0 0-.3487-.3469.3481.3481 0 0 0-.3486.347zm3.9648.0274c-.6133 0-1.17.3394-1.17.9883 0 .9991 1.3438.7344 1.3438 1.4355 0 .3597-.287.6113-.6914.6113-.2958 0-.6265-.0989-.5742-.3926l.0468-.2617h-.4004l-.0605.332c-.0956.5637.5359.7442.9316.7442.6438 0 1.1953-.3976 1.1953-1.0605 0-1.0373-1.3437-.7678-1.3437-1.4356 0-.3362.2964-.545.666-.545.2175 0 .5124.0716.4688.299l-.0391.2323h.4004l.0703-.3613c.0826-.4308-.4827-.586-.8437-.586zm-6.541.287a.2454.2454 0 0 0-.207.2774.2435.2435 0 0 0 .2772.2051.2431.2431 0 0 0 .207-.2754.2457.2457 0 0 0-.2773-.207zm3.3261.127a.3674.3674 0 0 0-.3105.416.3674.3674 0 0 0 .416.3106.3668.3668 0 0 0 .3105-.416.367.367 0 0 0-.416-.3106zm5.664.5332c-.7783 0-1.4003.6805-1.4003 1.457 0 .6254.4032 1.0528 1.0469 1.0528.5787 0 .914-.3555.914-.3555l-.121-.3554s-.3147.3125-.754.3125c-.4087 0-.6562-.2707-.6562-.6875 0-.554.4472-1.0274.9258-1.0274.2087 0 .4523.0852.4218.2793l-.0293.1621h.373l.0528-.2754c.0696-.4262-.4557-.5625-.7734-.5625zm7.625 0c-.4132 0-.7684.369-.873.582h-.0097c.0305-.085.0664-.2712.0664-.328 0-.128-.0662-.1973-.2403-.1973h-.496l-.0645.3554h.2734c.0695 0 .0868.0362.0781.0977l-.3476 1.9434h.4219l.1914-1.0704c.087-.4735.4044-.9667.8261-.9667.2437 0 .3145.1378.3145.332 0 .0805-.0183.1747-.0313.2695l-.2558 1.4356h.42l.1972-1.0957c.0784-.4594.3917-.9414.8008-.9414.2522 0 .3203.1372.3203.3457 0 .2272-.1856 1.0272-.1856 1.25 0 .4072.2867.4492.4824.4492.1043 0 .1875-.0078.1875-.0078l.0645-.3555s-.0446.0098-.1055.0098c-.1087 0-.1953-.0292-.1953-.209 0-.1895.1914-.9814.1914-1.2657 0-.4072-.2293-.6328-.6035-.6328-.3654 0-.6956.2555-.8652.582h-.0098c-.0217-.3788-.2005-.582-.5527-.582zm-4.9628.0274c-.3479 0-.6431.2976-.791.6387h-.0098c.0349-.1138.0781-.3448.0781-.4063 0-.1375-.0647-.2031-.2343-.2031h-.4961l-.0704.3535h.2754c.0739 0 .087.0486.0782.1055l-.3438 1.9375h.4219l.1562-.8907c.0956-.5493.4607-1.0859.8653-1.0859.0565 0 .0956.011.1172.0156l.084-.455a.7813.7813 0 0 0-.131-.0098zm.4922.0293l-.0664.3535h.3652l-.2031 1.166a1.5665 1.5665 0 0 0-.0313.3027c0 .45.2823.6309.6172.6309.4612 0 .7665-.3281.9102-.5742h.0078c-.0304.3599.1437.5254.4394.5254a2.838 2.838 0 0 0 .2012-.0078l.0645-.3555s-.0403.0098-.1055.0098c-.1086 0-.1953-.0386-.1953-.209a.937.937 0 0 1 .0136-.1465l.3047-1.6953h-.787l-.0665.3535h.3653l-.129.7344c-.0784.4545-.4357.9472-.875.9472-.2478 0-.33-.1273-.33-.336 0-.0756.0134-.174.0351-.2733l.252-1.4258zm-12.2871.086a.2255.2255 0 0 0-.1914.2558c.0178.1238.134.209.2578.1914a.2254.2254 0 0 0 .1914-.2559.2277.2277 0 0 0-.2578-.1914zm.2187.7773a.1912.1912 0 0 0-.1621.2168.193.193 0 0 0 .2188.162.1911.1911 0 0 0 .162-.2167.1936.1936 0 0 0-.2187-.1621zm.4941.6484a.166.166 0 0 0-.1406.1875.1642.1642 0 0 0 .1875.1387.1659.1659 0 0 0 .1407-.1875.1644.1644 0 0 0-.1876-.1387zm2.4864.2207c-.222 0-.4024.179-.4024.4004 0 .2219.1805.4023.4024.4023a.4027.4027 0 0 0 .4023-.4023c0-.2214-.1804-.4004-.4023-.4004zm-1.8106.0762a.157.157 0 0 0-.1445.1562.157.157 0 0 0 .1582.1582.157.157 0 0 0 .1563-.1582.157.157 0 0 0-.1563-.1562.1566.1566 0 0 0-.0137 0zm.672.0918a.4355.4355 0 0 0-.418.4355.4355.4355 0 1 0 .4355-.4355.4365.4365 0 0 0-.0176 0zm2.205.1757c-.2024 0-.3652.165-.3652.3672 0 .2028.1628.3672.3652.3672a.3673.3673 0 0 0 .3672-.3672.3677.3677 0 0 0-.3672-.3672zm-3.0645.5098a.4664.4664 0 0 0-.4668.4668c0 .2583.2087.4668.4668.4668a.4663.4663 0 0 0 .4668-.4668.4664.4664 0 0 0-.4668-.4668zm3.8575.3223a.3187.3187 0 0 0-.3184.3203c0 .1774.1414.3203.3184.3203a.32.32 0 0 0 .3203-.3203.3205.3205 0 0 0-.3203-.3203zm2.8125.4824l-1.5743 3.0547h-.3086l-.0488.2754h.9785l.0528-.2754h-.3477l.4395-.8574h1.1914l.1347.8574h-.3535l-.0469.2754h.9649l.0488-.2754h-.3086l-.4844-3.0547zm1.6835 0l-.0488.2656h.3926l-.4395 2.4668c-.013.0663-.0214.1323-.0214.1797 0 .3742.2561.4316.4257.4316.0697 0 .1524-.0136.1524-.0136l.0469-.2754s-.0334.0098-.1075.0098c-.1043 0-.209-.014-.209-.213 0-.0378.0089-.0995.0176-.1562l.4785-2.6953zm1.1622 0l-.0489.2656h.3907l-.4375 2.4668c-.0132.0663-.0235.1323-.0235.1797 0 .3742.2581.4316.4277.4316.0697 0 .1524-.0136.1524-.0136l.0469-.2754s-.0336.0098-.1075.0098c-.1045 0-.209-.014-.209-.213 0-.0378.0089-.0995.0176-.1562l.4766-2.6953zm1.6386 0l-.0742.4023h.336l.0742-.4023zM.957 13.1738a.4928.4928 0 0 0-.4922.4922c0 .2718.2208.4902.4922.4902a.4905.4905 0 0 0 .4922-.4902.4925.4925 0 0 0-.4922-.4922zm22.5762.039c-.2566 0-.4629.2294-.4629.5177 0 .288.2063.5175.4629.5175.2592 0 .4668-.2296.4668-.5175 0-.2883-.2076-.5176-.4668-.5176zm-15.3555.004h.0078s.0003.104.0176.2129l.209 1.3633H7.3906l.7031-1.3633c.0523-.109.084-.2129.084-.2129zm15.3555.0918c.2097 0 .3711.1847.3711.4219 0 .237-.1614.4218-.3711.4218-.2073 0-.3672-.1848-.3672-.4218 0-.2372.1599-.422.3672-.422zm-17.9453.0976a.2965.2965 0 0 0-.2969.297c0 .164.1326.2968.2969.2968s.2988-.1328.2988-.2969c0-.1643-.1345-.2968-.2988-.2968zm17.7871.0547v.5352h.0918v-.207h.08l.0919.207h.1015l-.0937-.1973c-.0117-.0242-.0176-.0293-.0176-.0293v-.0039c.0404-.0112.0898-.0583.0898-.1406 0-.0993-.0617-.164-.1542-.164zm.0918.0762h.0781c.0482 0 .0801.0327.0801.0879 0 .0568-.0319.0898-.08.0898h-.0782zm-9.1602.2285c-.4568 0-.7949.2461-.7949.2461l.0899.2617s.2971-.2226.6582-.2226c.3349 0 .4472.1746.4472.4258 0 .085-.0351.2695-.0351.2695h-.1426c-.6003 0-1.4844.1555-1.4844.918 0 .3836.2884.5976.6406.5976.5177 0 .8091-.5117.8047-.5117h.0078c-.0217.3174.14.4648.3965.4648.0783 0 .164-.0097.164-.0097l.049-.2656s-.0393.0097-.1134.0097c-.1 0-.205-.024-.205-.2226 0-.199.2187-1.0175.2187-1.297 0-.4593-.2836-.664-.7012-.664zm2.92 0c-.5395 0-.8878.4272-.9746.6309h-.0098c.0393-.0995.0742-.327.0742-.379 0-.1231-.0554-.1952-.2207-.1952h-.418l-.0488.2656h.2969c.0695 0 .0867.0467.0781.1035l-.3613 2.0137h.2949l.1973-1.0938c.0956-.5587.53-1.043 1-1.043.2435 0 .3789.1285.3789.3985 0 .2652-.2051 1.1269-.2051 1.3398 0 .36.2613.4082.418.4082.0738 0 .1601-.0097.1601-.0097l.0488-.2656s-.0397.0097-.1093.0097c-.1042 0-.209-.019-.209-.2226 0-.1895.205-1.0562.205-1.3496 0-.393-.2129-.6114-.5956-.6114zm2.5312 0c-.7264 0-1.3789.6491-1.3789 1.459 0 .6394.4078 1.0371 1.004 1.0371.5567 0 .8886-.3555.8886-.3555l-.0957-.2656s-.3127.332-.7695.332c-.4262 0-.7227-.2891-.7227-.7675 0-.6487.5301-1.1504 1.039-1.1504.2132 0 .5096.09.4747.3125l-.0313.1758h.2754l.043-.252c.0652-.3881-.4308-.5254-.7266-.5254zm2.3106 0c-.7395 0-1.2793.7156-1.2793 1.4922 0 .6015.392 1.004.9921 1.004.461 0 .8223-.3126.8223-.3126l-.0918-.2656s-.323.289-.7187.289c-.461 0-.6992-.3262-.6992-.7382 0-.1185.0214-.2188.0214-.2188h1.6797s.0606-.204.0606-.3886c0-.4973-.2477-.8614-.7871-.8614zm-10.0586.0567l-.047.2656h.3907l-.2773 1.5351c-.0088.0664-.0235.1265-.0235.1739 0 .3742.2624.418.4278.418.0608 0 .1523-.0098.1523-.0098l.0469-.2656s-.0355.0097-.1094.0097c-.1045 0-.207-.0238-.207-.2226 0-.0379.003-.0846.0117-.1368l.3223-1.7675zm10.0449.2129c.2873 0 .5.1855.5.5644 0 .0948-.0176.1797-.0176.1797H21.168c.1565-.4833.526-.7441.8867-.7441zm-16.6035.4238c-.139 0-.252.113-.252.252 0 .1387.113.25.252.25s.252-.1113.252-.25c0-.139-.113-.252-.252-.252zm9.0508.5293h.127l-.0216.1035c-.0954.412-.4389.9043-.8476.9043-.2916 0-.4141-.1753-.4141-.379 0-.5872.7908-.6288 1.1563-.6288zm-9.5684.4043c-.1198 0-.2188.0966-.2188.2168a.22.22 0 0 0 .2188.2187c.12 0 .2168-.0988.2168-.2187a.2164.2164 0 0 0-.2168-.2168zm-.8086.5137a.2077.2077 0 0 0-.207.207c0 .114.0932.205.207.205a.2044.2044 0 0 0 .205-.205.2062.2062 0 0 0-.205-.207Z" }) + ] + } + ); +}); + +export { SiScrumalliance as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.cjs new file mode 100644 index 000000000..4b63791a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8A9296"; +const SiScrutinizerci = React__namespace.forwardRef(function SiScrutinizerci2({ title = "Scrutinizer CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.862 0L6.879.06a6.139 6.127 0 00-3.744 2.508 6.36 6.36 0 00-1.357 2.64l-.12.553-.12.857c-.06.8-.06 1.351.12 1.471h5.276c.06 0-.186-.246-.186-.672 0-.738.252-.924.552-1.23.552-.426 2.945-.12 4.728-.246 2.448 0 4.602-.06 4.848-.12 2.7-.427 5.03-2.388 5.522-4.536.12-.547.12-1.105.06-1.165C22.398 0 21.418 0 14.86 0zM9.194 9.007c-3.758-.015-7.47 0-7.53.06-.126.126-.06.798.06 1.35a5.64 5.64 0 001.843 2.761 7.549 7.549 0 003.312 1.59c.366.126 1.044.126 4.597.126 4.236 0 4.915.06 5.22.24a1.842 1.836 0 01.372.372c.18.24.18.307.18.98 0 .671-.065.731-.185 1.043a1.47 1.47 0 01-.426.366c-.186.12-.307.12-4.357.18-4.67 0-5.155 0-6.32.431a6.445 6.433 0 00-2.46 1.35c-1.163 1.04-1.841 2.203-1.961 3.428l.06.611a283.022 282.613 0 0015.404 0l.492-.12a4.543 4.537 0 00.737-.245l.367-.18a7.735 7.723 0 003.499-4.297 8.407 8.395 0 00-.373-6.06 8.527 8.521 0 00-2.328-2.88 6.937 6.925 0 00-2.394-.985c-.246-.06-4.051-.106-7.81-.12z" }) + ] + } + ); +}); + +exports.default = SiScrutinizerci; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.d.ts new file mode 100644 index 000000000..1cba9192a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8A9296"; +declare const SiScrutinizerci: IconType; +export { SiScrutinizerci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.mjs new file mode 100644 index 000000000..595dfd384 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScrutinizerci.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8A9296"; +const SiScrutinizerci = React.forwardRef(function SiScrutinizerci2({ title = "Scrutinizer CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.862 0L6.879.06a6.139 6.127 0 00-3.744 2.508 6.36 6.36 0 00-1.357 2.64l-.12.553-.12.857c-.06.8-.06 1.351.12 1.471h5.276c.06 0-.186-.246-.186-.672 0-.738.252-.924.552-1.23.552-.426 2.945-.12 4.728-.246 2.448 0 4.602-.06 4.848-.12 2.7-.427 5.03-2.388 5.522-4.536.12-.547.12-1.105.06-1.165C22.398 0 21.418 0 14.86 0zM9.194 9.007c-3.758-.015-7.47 0-7.53.06-.126.126-.06.798.06 1.35a5.64 5.64 0 001.843 2.761 7.549 7.549 0 003.312 1.59c.366.126 1.044.126 4.597.126 4.236 0 4.915.06 5.22.24a1.842 1.836 0 01.372.372c.18.24.18.307.18.98 0 .671-.065.731-.185 1.043a1.47 1.47 0 01-.426.366c-.186.12-.307.12-4.357.18-4.67 0-5.155 0-6.32.431a6.445 6.433 0 00-2.46 1.35c-1.163 1.04-1.841 2.203-1.961 3.428l.06.611a283.022 282.613 0 0015.404 0l.492-.12a4.543 4.537 0 00.737-.245l.367-.18a7.735 7.723 0 003.499-4.297 8.407 8.395 0 00-.373-6.06 8.527 8.521 0 00-2.328-2.88 6.937 6.925 0 00-2.394-.985c-.246-.06-4.051-.106-7.81-.12z" }) + ] + } + ); +}); + +export { SiScrutinizerci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.cjs new file mode 100644 index 000000000..ced88c611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6CD5E7"; +const SiScylladb = React__namespace.forwardRef(function SiScylladb2({ title = "ScyllaDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.992 2.435C17.229.868 14.75 0 12.004 0 9.259 0 6.779.868 5.017 2.435 3.246 4.012 2.272 6.244 2.272 8.706c0 2.373 2.382 13.567 2.479 14.045.169.735.815 1.24 1.541 1.24.089 0 .168-.009.257-.018.151-.026.292-.07.434-.141.301.133.638.186.965.124.248-.045.479-.151.673-.31a1.579 1.579 0 0 0 1.63.203c.23-.106.425-.265.576-.451a1.596 1.596 0 0 0 1.231.602 1.596 1.596 0 0 0 .823-.239 1.695 1.695 0 0 0 .408-.354c.248.301.611.513 1 .566.39.062.797-.035 1.116-.256.036-.018.062-.045.089-.071.186.15.407.257.637.301.169.035.337.044.505.026.151-.017.292-.053.434-.115.124.053.248.089.381.115a1.58 1.58 0 0 0 1.798-1.222c.097-.478 2.479-11.663 2.479-14.045.009-2.462-.965-4.685-2.736-6.271Zm-.186 20.219c-.124.558-.655.93-1.222.868a1.59 1.59 0 0 0 .443-.833l.07-.425.275-1.691c.088-.567.177-1.134.248-1.701a.156.156 0 0 0-.115-.168.16.16 0 0 0-.186.115c-.124.558-.239 1.125-.354 1.683l-.328 1.683-.08.416c-.026.115-.071.23-.124.327a.947.947 0 0 1-.221.275 1.05 1.05 0 0 1-.292.195 1.512 1.512 0 0 1-.337.097 1.142 1.142 0 0 1-.77-.195c.106-.159.194-.336.239-.531.017-.044.017-.097.026-.142 0-.026.009-.053.009-.071l.009-.062.08-.743.097-.992c.062-.665.124-1.329.168-1.993a.147.147 0 0 0-.133-.159.164.164 0 0 0-.177.132c-.097.656-.186 1.32-.274 1.975l-.186 1.488c-.018.16-.036.346-.071.461a1.101 1.101 0 0 1-.469.655 1.104 1.104 0 0 1-.78.168 1.107 1.107 0 0 1-.814-.566c.026-.071.044-.142.061-.204.036-.142.036-.292.036-.408l.009-.735c.009-.487.017-.983.017-1.47a40.02 40.02 0 0 0 0-1.47c0-.079-.062-.15-.141-.15a.145.145 0 0 0-.16.141c-.026.487-.062.983-.079 1.47-.027.488-.045.983-.071 1.471l-.036.735c0 .062 0 .124-.008.177 0 .053-.009.097-.018.15-.027.098-.053.195-.106.284a1.11 1.11 0 0 1-.992.593.893.893 0 0 1-.301-.044c-.098-.027-.186-.071-.275-.115a1.154 1.154 0 0 1-.416-.434 1.082 1.082 0 0 1-.106-.284c-.027-.097-.027-.195-.036-.327l-.035-.735c-.018-.488-.045-.983-.071-1.471l-.08-1.47a.154.154 0 0 0-.15-.141.15.15 0 0 0-.151.15v1.47c0 .487.009.983.018 1.47l.009.735c0 .116.008.266.035.408.018.071.035.142.062.212a1.169 1.169 0 0 1-.523.47 1.109 1.109 0 0 1-1.337-.346 1.002 1.002 0 0 1-.177-.327 1.392 1.392 0 0 1-.044-.186c-.009-.027-.009-.071-.018-.107l-.018-.115-.23-1.797c-.08-.603-.159-1.205-.257-1.798-.009-.08-.079-.133-.159-.133-.089.009-.151.08-.142.168.044.602.098 1.205.151 1.807l.177 1.806.009.116c0 .035.009.07.017.124.009.088.036.177.062.256.045.151.124.293.213.426a1.129 1.129 0 0 1-1.125.097 1.154 1.154 0 0 1-.629-.806l-.079-.416-.328-1.674c-.115-.558-.23-1.116-.354-1.674-.018-.08-.089-.133-.168-.115-.08.009-.142.089-.133.177.079.567.159 1.125.248 1.692l.274 1.682.071.425c.027.169.089.328.16.47.07.133.159.257.274.363-.018 0-.027.009-.044.009a1.126 1.126 0 0 1-1.276-.859c-.026-.115-2.47-11.619-2.47-13.949 0-2.338.921-4.437 2.586-5.933C6.956 1.284 9.33.461 11.96.461s5.004.823 6.678 2.32c1.673 1.488 2.586 3.595 2.586 5.933.053 2.33-2.392 13.834-2.418 13.94Zm-4.517-11.451a1.322 1.322 0 0 0-.726-.407h-.035a.235.235 0 0 0-.248.212.235.235 0 0 0 .212.248.824.824 0 0 1 .354.106 11.147 11.147 0 0 1-3.701 1.621 11.15 11.15 0 0 1-4.198.186.193.193 0 1 0-.062.381c.212.035.434.062.646.08 0 .008 0 .017.009.026.186.558.664 1.302 1.284 1.302a.78.78 0 0 0 .195-.027c.23-.053.611-.292.611-1.248 0-.018-.009-.027-.009-.045a12.213 12.213 0 0 0 1.612-.248c.053-.008.106-.026.151-.035.124.496.31 1.116.93 1.116.256 0 .531-.142.744-.381.177-.204.46-.664.371-1.435a11.47 11.47 0 0 0 1.745-.974.834.834 0 0 1 .115.292c.018.08.089.133.169.124a.15.15 0 0 0 .141-.168 1.184 1.184 0 0 0-.31-.726Zm-6.11 2.489c0 .442-.107.761-.266.797-.346.088-.7-.426-.868-.815.381.018.753.018 1.134 0 .008.009 0 .018 0 .018Zm3.551.106c-.115.133-.266.221-.39.221-.212 0-.336-.186-.487-.77.39-.115.779-.248 1.151-.399.018.381-.079.718-.274.948Zm-2.878-1.515a4.471 4.471 0 1 1 4.472-4.472 4.476 4.476 0 0 1-4.472 4.472Zm0-8.475A4.014 4.014 0 0 0 4.84 7.82a4.014 4.014 0 0 0 4.012 4.012 4.013 4.013 0 0 0 4.011-4.012 4.02 4.02 0 0 0-4.011-4.012Zm.876 1.231c-.735.151-.876 1.754-.442 2.196.292.293.876.381.876.585 0 .204-.584.292-.876.584-.443.443-.293 2.046.442 2.197.868.177 2.197-.877 2.197-2.781 0-1.904-1.329-2.958-2.197-2.781Z" }) + ] + } + ); +}); + +exports.default = SiScylladb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.d.ts new file mode 100644 index 000000000..36c0a56a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6CD5E7"; +declare const SiScylladb: IconType; +export { SiScylladb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.mjs new file mode 100644 index 000000000..5722df39c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiScylladb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6CD5E7"; +const SiScylladb = React.forwardRef(function SiScylladb2({ title = "ScyllaDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.992 2.435C17.229.868 14.75 0 12.004 0 9.259 0 6.779.868 5.017 2.435 3.246 4.012 2.272 6.244 2.272 8.706c0 2.373 2.382 13.567 2.479 14.045.169.735.815 1.24 1.541 1.24.089 0 .168-.009.257-.018.151-.026.292-.07.434-.141.301.133.638.186.965.124.248-.045.479-.151.673-.31a1.579 1.579 0 0 0 1.63.203c.23-.106.425-.265.576-.451a1.596 1.596 0 0 0 1.231.602 1.596 1.596 0 0 0 .823-.239 1.695 1.695 0 0 0 .408-.354c.248.301.611.513 1 .566.39.062.797-.035 1.116-.256.036-.018.062-.045.089-.071.186.15.407.257.637.301.169.035.337.044.505.026.151-.017.292-.053.434-.115.124.053.248.089.381.115a1.58 1.58 0 0 0 1.798-1.222c.097-.478 2.479-11.663 2.479-14.045.009-2.462-.965-4.685-2.736-6.271Zm-.186 20.219c-.124.558-.655.93-1.222.868a1.59 1.59 0 0 0 .443-.833l.07-.425.275-1.691c.088-.567.177-1.134.248-1.701a.156.156 0 0 0-.115-.168.16.16 0 0 0-.186.115c-.124.558-.239 1.125-.354 1.683l-.328 1.683-.08.416c-.026.115-.071.23-.124.327a.947.947 0 0 1-.221.275 1.05 1.05 0 0 1-.292.195 1.512 1.512 0 0 1-.337.097 1.142 1.142 0 0 1-.77-.195c.106-.159.194-.336.239-.531.017-.044.017-.097.026-.142 0-.026.009-.053.009-.071l.009-.062.08-.743.097-.992c.062-.665.124-1.329.168-1.993a.147.147 0 0 0-.133-.159.164.164 0 0 0-.177.132c-.097.656-.186 1.32-.274 1.975l-.186 1.488c-.018.16-.036.346-.071.461a1.101 1.101 0 0 1-.469.655 1.104 1.104 0 0 1-.78.168 1.107 1.107 0 0 1-.814-.566c.026-.071.044-.142.061-.204.036-.142.036-.292.036-.408l.009-.735c.009-.487.017-.983.017-1.47a40.02 40.02 0 0 0 0-1.47c0-.079-.062-.15-.141-.15a.145.145 0 0 0-.16.141c-.026.487-.062.983-.079 1.47-.027.488-.045.983-.071 1.471l-.036.735c0 .062 0 .124-.008.177 0 .053-.009.097-.018.15-.027.098-.053.195-.106.284a1.11 1.11 0 0 1-.992.593.893.893 0 0 1-.301-.044c-.098-.027-.186-.071-.275-.115a1.154 1.154 0 0 1-.416-.434 1.082 1.082 0 0 1-.106-.284c-.027-.097-.027-.195-.036-.327l-.035-.735c-.018-.488-.045-.983-.071-1.471l-.08-1.47a.154.154 0 0 0-.15-.141.15.15 0 0 0-.151.15v1.47c0 .487.009.983.018 1.47l.009.735c0 .116.008.266.035.408.018.071.035.142.062.212a1.169 1.169 0 0 1-.523.47 1.109 1.109 0 0 1-1.337-.346 1.002 1.002 0 0 1-.177-.327 1.392 1.392 0 0 1-.044-.186c-.009-.027-.009-.071-.018-.107l-.018-.115-.23-1.797c-.08-.603-.159-1.205-.257-1.798-.009-.08-.079-.133-.159-.133-.089.009-.151.08-.142.168.044.602.098 1.205.151 1.807l.177 1.806.009.116c0 .035.009.07.017.124.009.088.036.177.062.256.045.151.124.293.213.426a1.129 1.129 0 0 1-1.125.097 1.154 1.154 0 0 1-.629-.806l-.079-.416-.328-1.674c-.115-.558-.23-1.116-.354-1.674-.018-.08-.089-.133-.168-.115-.08.009-.142.089-.133.177.079.567.159 1.125.248 1.692l.274 1.682.071.425c.027.169.089.328.16.47.07.133.159.257.274.363-.018 0-.027.009-.044.009a1.126 1.126 0 0 1-1.276-.859c-.026-.115-2.47-11.619-2.47-13.949 0-2.338.921-4.437 2.586-5.933C6.956 1.284 9.33.461 11.96.461s5.004.823 6.678 2.32c1.673 1.488 2.586 3.595 2.586 5.933.053 2.33-2.392 13.834-2.418 13.94Zm-4.517-11.451a1.322 1.322 0 0 0-.726-.407h-.035a.235.235 0 0 0-.248.212.235.235 0 0 0 .212.248.824.824 0 0 1 .354.106 11.147 11.147 0 0 1-3.701 1.621 11.15 11.15 0 0 1-4.198.186.193.193 0 1 0-.062.381c.212.035.434.062.646.08 0 .008 0 .017.009.026.186.558.664 1.302 1.284 1.302a.78.78 0 0 0 .195-.027c.23-.053.611-.292.611-1.248 0-.018-.009-.027-.009-.045a12.213 12.213 0 0 0 1.612-.248c.053-.008.106-.026.151-.035.124.496.31 1.116.93 1.116.256 0 .531-.142.744-.381.177-.204.46-.664.371-1.435a11.47 11.47 0 0 0 1.745-.974.834.834 0 0 1 .115.292c.018.08.089.133.169.124a.15.15 0 0 0 .141-.168 1.184 1.184 0 0 0-.31-.726Zm-6.11 2.489c0 .442-.107.761-.266.797-.346.088-.7-.426-.868-.815.381.018.753.018 1.134 0 .008.009 0 .018 0 .018Zm3.551.106c-.115.133-.266.221-.39.221-.212 0-.336-.186-.487-.77.39-.115.779-.248 1.151-.399.018.381-.079.718-.274.948Zm-2.878-1.515a4.471 4.471 0 1 1 4.472-4.472 4.476 4.476 0 0 1-4.472 4.472Zm0-8.475A4.014 4.014 0 0 0 4.84 7.82a4.014 4.014 0 0 0 4.012 4.012 4.013 4.013 0 0 0 4.011-4.012 4.02 4.02 0 0 0-4.011-4.012Zm.876 1.231c-.735.151-.876 1.754-.442 2.196.292.293.876.381.876.585 0 .204-.584.292-.876.584-.443.443-.293 2.046.442 2.197.868.177 2.197-.877 2.197-2.781 0-1.904-1.329-2.958-2.197-2.781Z" }) + ] + } + ); +}); + +export { SiScylladb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.cjs new file mode 100644 index 000000000..3e9891a14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9800"; +const SiSeafile = React__namespace.forwardRef(function SiSeafile2({ title = "Seafile", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.2129 4.2695c-2.003 0-3.623 1.6201-3.623 3.623 0 .0648.0043.1326.0078.2012a2.3767 2.3767 0 0 0-.9727-.205c-1.3369 0-2.418 1.0815-2.418 2.418 0 .0647.0043.1266.0078.1913-.1299-.119-.2995-.1953-.4902-.1953-.4001 0-.7246.321-.7246.7207 0 .4002.3245.713.7246.7207h3.5489c.6808-1.448 2.1364-2.4062 3.8222-2.4062.8177 0 1.5803.2409 2.2285.6445a5.701 5.701 0 0 1 1.5137-2.125c-.0217-1.9847-1.6364-3.5879-3.625-3.5879ZM15.58 7.4063c-2.4965 0-4.5635 1.8477-4.9024 4.2539-.616-.8212-1.5989-1.3536-2.705-1.3536-1.8696 0-3.3829 1.5168-3.3829 3.3829 0 .544.1283 1.0542.3555 1.5117-1.1744.2376-2.045 1.1499-2.045 2.2343 0 1.2683 1.1885 2.295 2.6583 2.295.6482 0 1.2421-.2022 1.7031-.5371l5.4375-5.3457c.6018-.5514 1.4004-.8868 2.2793-.8868 1.8374 0 3.3324 1.4669 3.3828 3.293 0 0-.0004-.0039-.0039-.0039.0287.5405-.2507 1.0839-.7695 1.3828-.7243.418-1.633.196-2.0293-.4922-.3997-.6917-.1364-1.5903.5879-2.0078a1.6117 1.6117 0 0 1 .5254-.1894c-.1551-.0326-.317-.047-.4824-.047-1.333 0-2.418 1.0792-2.418 2.4161 0 1.3365 1.081 2.418 2.418 2.418.0577 0 .1203-.004.1777-.0078l-.004-.006.0685-.0077h4.744v.0176C22.6275 19.6618 24 18.3256 24 16.6973c0-1.668-1.4258-3.0293-3.0938-3.0293h-.0077c-.2703.4827-.5978.764-.9688 1.0664.3889-.7095.6113-1.5182.6113-2.3828-.0083-1.3647-.5622-2.597-1.459-3.4942-.8972-.8972-2.1333-1.4512-3.502-1.4512Z" }) + ] + } + ); +}); + +exports.default = SiSeafile; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.d.ts new file mode 100644 index 000000000..c51c4e020 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9800"; +declare const SiSeafile: IconType; +export { SiSeafile as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.mjs new file mode 100644 index 000000000..ca43a13cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeafile.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9800"; +const SiSeafile = React.forwardRef(function SiSeafile2({ title = "Seafile", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.2129 4.2695c-2.003 0-3.623 1.6201-3.623 3.623 0 .0648.0043.1326.0078.2012a2.3767 2.3767 0 0 0-.9727-.205c-1.3369 0-2.418 1.0815-2.418 2.418 0 .0647.0043.1266.0078.1913-.1299-.119-.2995-.1953-.4902-.1953-.4001 0-.7246.321-.7246.7207 0 .4002.3245.713.7246.7207h3.5489c.6808-1.448 2.1364-2.4062 3.8222-2.4062.8177 0 1.5803.2409 2.2285.6445a5.701 5.701 0 0 1 1.5137-2.125c-.0217-1.9847-1.6364-3.5879-3.625-3.5879ZM15.58 7.4063c-2.4965 0-4.5635 1.8477-4.9024 4.2539-.616-.8212-1.5989-1.3536-2.705-1.3536-1.8696 0-3.3829 1.5168-3.3829 3.3829 0 .544.1283 1.0542.3555 1.5117-1.1744.2376-2.045 1.1499-2.045 2.2343 0 1.2683 1.1885 2.295 2.6583 2.295.6482 0 1.2421-.2022 1.7031-.5371l5.4375-5.3457c.6018-.5514 1.4004-.8868 2.2793-.8868 1.8374 0 3.3324 1.4669 3.3828 3.293 0 0-.0004-.0039-.0039-.0039.0287.5405-.2507 1.0839-.7695 1.3828-.7243.418-1.633.196-2.0293-.4922-.3997-.6917-.1364-1.5903.5879-2.0078a1.6117 1.6117 0 0 1 .5254-.1894c-.1551-.0326-.317-.047-.4824-.047-1.333 0-2.418 1.0792-2.418 2.4161 0 1.3365 1.081 2.418 2.418 2.418.0577 0 .1203-.004.1777-.0078l-.004-.006.0685-.0077h4.744v.0176C22.6275 19.6618 24 18.3256 24 16.6973c0-1.668-1.4258-3.0293-3.0938-3.0293h-.0077c-.2703.4827-.5978.764-.9688 1.0664.3889-.7095.6113-1.5182.6113-2.3828-.0083-1.3647-.5622-2.597-1.459-3.4942-.8972-.8972-2.1333-1.4512-3.502-1.4512Z" }) + ] + } + ); +}); + +export { SiSeafile as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.cjs new file mode 100644 index 000000000..f02f7c8b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6EBE49"; +const SiSeagate = React__namespace.forwardRef(function SiSeagate2({ title = "Seagate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.2279 22.6842c-.2642-1.0048-.5233-1.9919-.7764-2.9548.2734-.1324.4986-.2368.7965-.384 1.239-.528 2.4364-1.1329 3.5508-1.8929 1.3946-.9512 2.6975-2.0144 3.8322-3.2673.8904-.983 1.6324-2.0681 2.0558-3.3424.282-.8479.4202-1.7152.2962-2.6088-.103-.7409-.375-1.4175-.7962-2.0369-.5082-.747-1.1691-1.3149-1.9737-1.7209-1.0067-.5084-2.0802-.696-3.1976-.6628-.9912.0294-1.9456.2473-2.8748.5868C10.431 5.0247 8.863 5.9178 7.358 6.928c-.4391.2949-.8425.6364-1.1916 1.0376-.1904.2188-.3368.4606-.3985.7491-.1038.4872.1755.858.6724.8816.3477.0164.6577-.1181.9617-.262.9456-.4467 1.7992-1.049 2.6828-1.6.7256-.4527 1.458-.8945 2.255-1.2117.786-.313 1.5975-.4847 2.447-.3423.9257.1549 1.6704.5913 2.1225 1.4413.3168.5956.3421 1.2269.1754 1.871-.1903.733-.6147 1.3292-1.1168 1.8759-.6926.7545-1.49 1.3817-2.372 1.899-.924.5421-1.8403 1.1006-2.788 1.5986-1.1086.5827-2.2897.9958-3.4927 1.3446-1.0106.2934-2.0378.4258-3.0865.3328-.8788-.078-1.7068-.3332-2.4364-.8414-.659-.4593-1.1454-1.068-1.44-1.8192-.455-1.1608-.4317-2.3436-.1437-3.5352.3256-1.3464 1.008-2.5097 1.8502-3.5909.6395-.8209 1.3767-1.5472 2.1709-2.2152 1.1242-.9458 2.317-1.7969 3.5952-2.524.4327-.246.8736-.4777 1.285-.702l.4213.8667c-.3808.2048-.757.4008-1.1275.6072-1.5956.8886-3.0574 1.96-4.3596 3.2419-.707.6956-1.3047 1.4804-1.7574 2.3664-.4741.9285-.7285 1.9104-.6164 2.9584.1232 1.147.661 2.0288 1.7175 2.5579.6303.3158 1.303.4098 1.997.3947.9564-.0205 1.858-.2923 2.7487-.6108 1.3273-.475 2.5625-1.1374 3.7648-1.8638.7058-.4264 1.4094-.8594 2.0064-1.4363.315-.3047.6302-.6145.7914-1.0384.2862-.7533-.121-1.4058-.9281-1.4824-.4392-.0415-.8377.1044-1.2262.2842-1.026.4747-1.9486 1.125-2.9045 1.719-.7306.454-1.4693.8943-2.2732 1.2087-.5567.2175-1.1321.3535-1.7363.2843-1.0364-.1187-1.6846-.937-1.5719-1.9753.0886-.8158.4854-1.4814 1.0219-2.075.5934-.6566 1.2856-1.1949 2.0287-1.6697 1.141-.7293 2.299-1.428 3.5382-1.9832 1.4362-.6438 2.9097-1.1544 4.4904-1.2936 1.1439-.1006 2.2752-.0366 3.3912.2533.9863.2563 1.896.6732 2.7145 1.28.8112.6015 1.4645 1.347 1.959 2.2285.4462.7956.7005 1.6501.7756 2.5585.079.9561-.0343 1.8948-.3106 2.8077-.2695.89-.6313 1.7449-1.1264 2.5378-.6903 1.1051-1.5035 2.1103-2.4493 3.0074-.9636.9142-1.937 1.8156-3.034 2.572-1.4267.9841-2.9131 1.8594-4.5207 2.5189-.429.176-.8567.3563-1.3065.5436" }) + ] + } + ); +}); + +exports.default = SiSeagate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.d.ts new file mode 100644 index 000000000..53e65f38e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6EBE49"; +declare const SiSeagate: IconType; +export { SiSeagate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.mjs new file mode 100644 index 000000000..86df4dfb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeagate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6EBE49"; +const SiSeagate = React.forwardRef(function SiSeagate2({ title = "Seagate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.2279 22.6842c-.2642-1.0048-.5233-1.9919-.7764-2.9548.2734-.1324.4986-.2368.7965-.384 1.239-.528 2.4364-1.1329 3.5508-1.8929 1.3946-.9512 2.6975-2.0144 3.8322-3.2673.8904-.983 1.6324-2.0681 2.0558-3.3424.282-.8479.4202-1.7152.2962-2.6088-.103-.7409-.375-1.4175-.7962-2.0369-.5082-.747-1.1691-1.3149-1.9737-1.7209-1.0067-.5084-2.0802-.696-3.1976-.6628-.9912.0294-1.9456.2473-2.8748.5868C10.431 5.0247 8.863 5.9178 7.358 6.928c-.4391.2949-.8425.6364-1.1916 1.0376-.1904.2188-.3368.4606-.3985.7491-.1038.4872.1755.858.6724.8816.3477.0164.6577-.1181.9617-.262.9456-.4467 1.7992-1.049 2.6828-1.6.7256-.4527 1.458-.8945 2.255-1.2117.786-.313 1.5975-.4847 2.447-.3423.9257.1549 1.6704.5913 2.1225 1.4413.3168.5956.3421 1.2269.1754 1.871-.1903.733-.6147 1.3292-1.1168 1.8759-.6926.7545-1.49 1.3817-2.372 1.899-.924.5421-1.8403 1.1006-2.788 1.5986-1.1086.5827-2.2897.9958-3.4927 1.3446-1.0106.2934-2.0378.4258-3.0865.3328-.8788-.078-1.7068-.3332-2.4364-.8414-.659-.4593-1.1454-1.068-1.44-1.8192-.455-1.1608-.4317-2.3436-.1437-3.5352.3256-1.3464 1.008-2.5097 1.8502-3.5909.6395-.8209 1.3767-1.5472 2.1709-2.2152 1.1242-.9458 2.317-1.7969 3.5952-2.524.4327-.246.8736-.4777 1.285-.702l.4213.8667c-.3808.2048-.757.4008-1.1275.6072-1.5956.8886-3.0574 1.96-4.3596 3.2419-.707.6956-1.3047 1.4804-1.7574 2.3664-.4741.9285-.7285 1.9104-.6164 2.9584.1232 1.147.661 2.0288 1.7175 2.5579.6303.3158 1.303.4098 1.997.3947.9564-.0205 1.858-.2923 2.7487-.6108 1.3273-.475 2.5625-1.1374 3.7648-1.8638.7058-.4264 1.4094-.8594 2.0064-1.4363.315-.3047.6302-.6145.7914-1.0384.2862-.7533-.121-1.4058-.9281-1.4824-.4392-.0415-.8377.1044-1.2262.2842-1.026.4747-1.9486 1.125-2.9045 1.719-.7306.454-1.4693.8943-2.2732 1.2087-.5567.2175-1.1321.3535-1.7363.2843-1.0364-.1187-1.6846-.937-1.5719-1.9753.0886-.8158.4854-1.4814 1.0219-2.075.5934-.6566 1.2856-1.1949 2.0287-1.6697 1.141-.7293 2.299-1.428 3.5382-1.9832 1.4362-.6438 2.9097-1.1544 4.4904-1.2936 1.1439-.1006 2.2752-.0366 3.3912.2533.9863.2563 1.896.6732 2.7145 1.28.8112.6015 1.4645 1.347 1.959 2.2285.4462.7956.7005 1.6501.7756 2.5585.079.9561-.0343 1.8948-.3106 2.8077-.2695.89-.6313 1.7449-1.1264 2.5378-.6903 1.1051-1.5035 2.1103-2.4493 3.0074-.9636.9142-1.937 1.8156-3.034 2.572-1.4267.9841-2.9131 1.8594-4.5207 2.5189-.429.176-.8567.3563-1.3065.5436" }) + ] + } + ); +}); + +export { SiSeagate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.cjs new file mode 100644 index 000000000..b2ac53c41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3050FF"; +const SiSearxng = React__namespace.forwardRef(function SiSearxng2({ title = "SearXNG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.716 17.261 6.873 6.582L24 20.282l-6.824-6.536a9.11 9.11 0 0 0 1.143-4.43c0-5.055-4.105-9.159-9.16-9.159S0 4.261 0 9.316c0 5.055 4.104 9.159 9.159 9.159a9.11 9.11 0 0 0 4.557-1.214ZM9.159 2.773a6.546 6.546 0 0 1 6.543 6.543 6.545 6.545 0 0 1-6.543 6.542 6.545 6.545 0 0 1-6.542-6.542 6.545 6.545 0 0 1 6.542-6.543ZM7.26 5.713a4.065 4.065 0 0 1 4.744.747 4.064 4.064 0 0 1 .707 4.749l1.157.611a5.376 5.376 0 0 0-.935-6.282 5.377 5.377 0 0 0-6.274-.987l.601 1.162Z" }) + ] + } + ); +}); + +exports.default = SiSearxng; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.d.ts new file mode 100644 index 000000000..bc2714839 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3050FF"; +declare const SiSearxng: IconType; +export { SiSearxng as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.mjs new file mode 100644 index 000000000..520d5f958 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSearxng.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3050FF"; +const SiSearxng = React.forwardRef(function SiSearxng2({ title = "SearXNG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m13.716 17.261 6.873 6.582L24 20.282l-6.824-6.536a9.11 9.11 0 0 0 1.143-4.43c0-5.055-4.105-9.159-9.16-9.159S0 4.261 0 9.316c0 5.055 4.104 9.159 9.159 9.159a9.11 9.11 0 0 0 4.557-1.214ZM9.159 2.773a6.546 6.546 0 0 1 6.543 6.543 6.545 6.545 0 0 1-6.543 6.542 6.545 6.545 0 0 1-6.542-6.542 6.545 6.545 0 0 1 6.542-6.543ZM7.26 5.713a4.065 4.065 0 0 1 4.744.747 4.064 4.064 0 0 1 .707 4.749l1.157.611a5.376 5.376 0 0 0-.935-6.282 5.377 5.377 0 0 0-6.274-.987l.601 1.162Z" }) + ] + } + ); +}); + +export { SiSearxng as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.cjs new file mode 100644 index 000000000..866f0501e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#33302E"; +const SiSeat = React__namespace.forwardRef(function SiSeat2({ title = "SEAT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 10.325l23.98 4.46c-.021.657-.062 2.712-.103 3.903-.041 1.418-.35 2.281-.925 2.815-.801.72-1.747.884-4.007 1.007-5.219.288-10.54.247-17.219-.226-.699-.04-.966-.185-1.089-.267-.288-.205-.329-.431-.411-1.603-.062-.801-.164-3.123-.205-3.904 3.102.206 7.849.37 11.712.37.966 0 3.493.02 4.171.02.534 0 1.233-.143 1.582-.698L0 13.222zm.02-1.253c.021-.76.062-2.65.103-3.76.041-1.418.35-2.281.925-2.815.801-.72 1.747-.884 4.007-1.007 5.219-.288 10.54-.247 17.219.226.699.04.966.185 1.089.267.288.205.329.431.411 1.603.041.678.144 2.486.185 3.472-2.301-.123-6.206-.308-9.596-.35-3.39-.04-6.452.021-6.822.063-.74.102-1.089.452-1.192.595L24 10.634v2.568Z" }) + ] + } + ); +}); + +exports.default = SiSeat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.d.ts new file mode 100644 index 000000000..cc5af8887 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#33302E"; +declare const SiSeat: IconType; +export { SiSeat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.mjs new file mode 100644 index 000000000..c45a148fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#33302E"; +const SiSeat = React.forwardRef(function SiSeat2({ title = "SEAT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 10.325l23.98 4.46c-.021.657-.062 2.712-.103 3.903-.041 1.418-.35 2.281-.925 2.815-.801.72-1.747.884-4.007 1.007-5.219.288-10.54.247-17.219-.226-.699-.04-.966-.185-1.089-.267-.288-.205-.329-.431-.411-1.603-.062-.801-.164-3.123-.205-3.904 3.102.206 7.849.37 11.712.37.966 0 3.493.02 4.171.02.534 0 1.233-.143 1.582-.698L0 13.222zm.02-1.253c.021-.76.062-2.65.103-3.76.041-1.418.35-2.281.925-2.815.801-.72 1.747-.884 4.007-1.007 5.219-.288 10.54-.247 17.219.226.699.04.966.185 1.089.267.288.205.329.431.411 1.603.041.678.144 2.486.185 3.472-2.301-.123-6.206-.308-9.596-.35-3.39-.04-6.452.021-6.822.063-.74.102-1.089.452-1.192.595L24 10.634v2.568Z" }) + ] + } + ); +}); + +export { SiSeat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.cjs new file mode 100644 index 000000000..ff50dd1d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5B49"; +const SiSeatgeek = React__namespace.forwardRef(function SiSeatgeek2({ title = "SeatGeek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.866 11.277h-.177l-.703-.001v-.001c-1.337-.002-3.426-.009-3.845-.011v-7.37c2.111.089 4.044.121 4.044.121l.304 1.556c.001 0-.745.007-2.361-.03v1.394l1.486.022v1.31L9.128 8.25v1.452c.832.008 1.595.013 2.411.014l1.99-5.615c.3-.008 1.573-.041 1.886-.054l2.637 7.225c-.661.003-1.331-.009-1.993-.006l-.448-1.302c-.76.008-1.52.013-2.281.016l-.445 1.293c-.355 0-.685 0-1.019.004Zm2.607-4.625-.693 2.015c.461-.004.921-.009 1.38-.016l-.687-1.999Zm4.389-1.197c-.719.044-1.438.081-2.157.112l.307-1.594c1.904-.105 3.8-.271 5.694-.497l.306 1.645c-.719.071-1.439.134-2.16.192l-.01 5.953c-.66.006-1.32-.001-1.98.004V5.455ZM6.533 9.069c0 1.246-.901 2.401-2.674 2.401-1.61 0-2.42-.752-2.42-.752V8.699c1.101 1.043 3.266 1.745 3.266.482 0-.96-3.266-1.125-3.266-3.518 0-1.342 1.247-2.186 2.675-2.186 1.009 0 1.855.193 2.065.258l-.083 1.772c-.884-.521-2.801-.763-2.801.134 0 .992 3.239 1.002 3.238 3.428Zm14.861 11.155-1.957-3.596v3.433c-.673-.053-1.982-.133-1.982-.133V12.5l1.982.004c-.007 1.059.008 2.118 0 3.176l2.028-3.18h2.233l-2.314 3.569L24 20.525a90.598 90.598 0 0 0-2.606-.301ZM9.132 18.231c.892-.019 1.785-.029 2.678-.029l-.307 1.561c-.869.003-3.428.062-4.358.122v-7.374h4.038l.307 1.536s-.973-.007-2.358-.008v1.399l1.481-.013v1.323l-1.481.018v1.465Zm5.162-.001c.707.015 1.905.054 2.682.082l-.32 1.573a87.388 87.388 0 0 0-4.349-.121v-7.253l4.051.002.306 1.551-2.371-.015v1.389c.461.005.92.009 1.379.017v1.321c-.459-.011-.919-.018-1.379-.025l.001 1.479ZM3.617 15.549l2.604-.059v4.445s-.7.032-2.26.178C1.746 20.321 0 19.022 0 16.468c0-3.034 2.222-3.993 4.225-3.993.868 0 1.379.016 1.667.031l.328 1.723s-.58-.122-1.673-.122c-1.24 0-2.585.415-2.585 2.078 0 1.791.745 2.392 2.556 2.228l-.001-1.536-1.206.059.306-1.387Z" }) + ] + } + ); +}); + +exports.default = SiSeatgeek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.d.ts new file mode 100644 index 000000000..5ed69ee75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5B49"; +declare const SiSeatgeek: IconType; +export { SiSeatgeek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.mjs new file mode 100644 index 000000000..c61aabad3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSeatgeek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5B49"; +const SiSeatgeek = React.forwardRef(function SiSeatgeek2({ title = "SeatGeek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.866 11.277h-.177l-.703-.001v-.001c-1.337-.002-3.426-.009-3.845-.011v-7.37c2.111.089 4.044.121 4.044.121l.304 1.556c.001 0-.745.007-2.361-.03v1.394l1.486.022v1.31L9.128 8.25v1.452c.832.008 1.595.013 2.411.014l1.99-5.615c.3-.008 1.573-.041 1.886-.054l2.637 7.225c-.661.003-1.331-.009-1.993-.006l-.448-1.302c-.76.008-1.52.013-2.281.016l-.445 1.293c-.355 0-.685 0-1.019.004Zm2.607-4.625-.693 2.015c.461-.004.921-.009 1.38-.016l-.687-1.999Zm4.389-1.197c-.719.044-1.438.081-2.157.112l.307-1.594c1.904-.105 3.8-.271 5.694-.497l.306 1.645c-.719.071-1.439.134-2.16.192l-.01 5.953c-.66.006-1.32-.001-1.98.004V5.455ZM6.533 9.069c0 1.246-.901 2.401-2.674 2.401-1.61 0-2.42-.752-2.42-.752V8.699c1.101 1.043 3.266 1.745 3.266.482 0-.96-3.266-1.125-3.266-3.518 0-1.342 1.247-2.186 2.675-2.186 1.009 0 1.855.193 2.065.258l-.083 1.772c-.884-.521-2.801-.763-2.801.134 0 .992 3.239 1.002 3.238 3.428Zm14.861 11.155-1.957-3.596v3.433c-.673-.053-1.982-.133-1.982-.133V12.5l1.982.004c-.007 1.059.008 2.118 0 3.176l2.028-3.18h2.233l-2.314 3.569L24 20.525a90.598 90.598 0 0 0-2.606-.301ZM9.132 18.231c.892-.019 1.785-.029 2.678-.029l-.307 1.561c-.869.003-3.428.062-4.358.122v-7.374h4.038l.307 1.536s-.973-.007-2.358-.008v1.399l1.481-.013v1.323l-1.481.018v1.465Zm5.162-.001c.707.015 1.905.054 2.682.082l-.32 1.573a87.388 87.388 0 0 0-4.349-.121v-7.253l4.051.002.306 1.551-2.371-.015v1.389c.461.005.92.009 1.379.017v1.321c-.459-.011-.919-.018-1.379-.025l.001 1.479ZM3.617 15.549l2.604-.059v4.445s-.7.032-2.26.178C1.746 20.321 0 19.022 0 16.468c0-3.034 2.222-3.993 4.225-3.993.868 0 1.379.016 1.667.031l.328 1.723s-.58-.122-1.673-.122c-1.24 0-2.585.415-2.585 2.078 0 1.791.745 2.392 2.556 2.228l-.001-1.536-1.206.059.306-1.387Z" }) + ] + } + ); +}); + +export { SiSeatgeek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.cjs new file mode 100644 index 000000000..f0012dfc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7033FD"; +const SiSecurityscorecard = React__namespace.forwardRef(function SiSecurityscorecard2({ title = "SecurityScorecard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.3696 2.5006 12.0006 5 7.6303 7.5006v-5L12.0006 0Zm6.1177 3.499.0028 4.986-8.7282-4.9929 4.3564-2.4923Zm-4.369 9.5085-.0014 4.9972 4.3774-2.5007-.0028-5.018-4.3732-2.502zM7.6274 21.502 12.0006 24l4.369-2.4952v-4.9972zM7.6303 9.5v5.0014l4.3703 2.4992 4.369-2.4937V9.5001l-4.369-2.4993Zm-6.1248 8.5044.0028-5.0055 8.7464 5.0027-4.376 2.5008Zm4.376-14.504L1.5125 6.001l-.0028 4.9985 4.3718 2.502z" }) + ] + } + ); +}); + +exports.default = SiSecurityscorecard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.d.ts new file mode 100644 index 000000000..748daaeab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7033FD"; +declare const SiSecurityscorecard: IconType; +export { SiSecurityscorecard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.mjs new file mode 100644 index 000000000..f620cf594 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSecurityscorecard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7033FD"; +const SiSecurityscorecard = React.forwardRef(function SiSecurityscorecard2({ title = "SecurityScorecard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.3696 2.5006 12.0006 5 7.6303 7.5006v-5L12.0006 0Zm6.1177 3.499.0028 4.986-8.7282-4.9929 4.3564-2.4923Zm-4.369 9.5085-.0014 4.9972 4.3774-2.5007-.0028-5.018-4.3732-2.502zM7.6274 21.502 12.0006 24l4.369-2.4952v-4.9972zM7.6303 9.5v5.0014l4.3703 2.4992 4.369-2.4937V9.5001l-4.369-2.4993Zm-6.1248 8.5044.0028-5.0055 8.7464 5.0027-4.376 2.5008Zm4.376-14.504L1.5125 6.001l-.0028 4.9985 4.3718 2.502z" }) + ] + } + ); +}); + +export { SiSecurityscorecard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.cjs new file mode 100644 index 000000000..b91ca6e6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212E50"; +const SiSefaria = React__namespace.forwardRef(function SiSefaria2({ title = "Sefaria", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.615 15.412c-.62 2.915-2.733 4.152-7.425 4.152-11.54 0-7.45-9.28-5.84-11.186.678-.85 1.152-1.553 2.874-1.553h3.273c4.567 0 5.437.217 6.582 2.55.617 1.258.975 3.971.536 6.036m1.238-5.79c-.385-2.492-.889-5.202-3.052-6.706-1.31-.911-2.663-.981-4.177-.981-1.026 0-4.666-.041-6.257-.041C5.833 1.893 4.779.618 4.779 0 3.777 1.234 3.001 2.597 3.272 4.245c.244 1.484 1.261 2.433 2.75 2.622C4.338 9.25 2.81 11.994 2.881 14.9c.046 1.83.467 9.1 8.686 9.1h1.497c3.507 0 5.632-2.606 6.25-3.614 1.822-2.963 2.122-7.548 1.537-10.764Z" }) + ] + } + ); +}); + +exports.default = SiSefaria; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.d.ts new file mode 100644 index 000000000..ee0aa106d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212E50"; +declare const SiSefaria: IconType; +export { SiSefaria as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.mjs new file mode 100644 index 000000000..466cab91f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSefaria.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212E50"; +const SiSefaria = React.forwardRef(function SiSefaria2({ title = "Sefaria", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.615 15.412c-.62 2.915-2.733 4.152-7.425 4.152-11.54 0-7.45-9.28-5.84-11.186.678-.85 1.152-1.553 2.874-1.553h3.273c4.567 0 5.437.217 6.582 2.55.617 1.258.975 3.971.536 6.036m1.238-5.79c-.385-2.492-.889-5.202-3.052-6.706-1.31-.911-2.663-.981-4.177-.981-1.026 0-4.666-.041-6.257-.041C5.833 1.893 4.779.618 4.779 0 3.777 1.234 3.001 2.597 3.272 4.245c.244 1.484 1.261 2.433 2.75 2.622C4.338 9.25 2.81 11.994 2.881 14.9c.046 1.83.467 9.1 8.686 9.1h1.497c3.507 0 5.632-2.606 6.25-3.614 1.822-2.963 2.122-7.548 1.537-10.764Z" }) + ] + } + ); +}); + +export { SiSefaria as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSega.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSega.cjs new file mode 100644 index 000000000..1af9884c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSega.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0089CF"; +const SiSega = React__namespace.forwardRef(function SiSega2({ title = "Sega", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.229 4.14l-.006 3.33h-10.6c-.219 0-.397.181-.397.399 0 .221.18.399.397.399l2.76-.016c4.346 0 7.868 3.525 7.868 7.869 0 4.348-3.522 7.869-7.869 7.869L2.748 24l.005-3.375h10.635c2.487 0 4.504-2.016 4.504-4.504 0-2.49-2.017-4.506-4.506-4.506l-2.771-.03c-2.06 0-3.727-1.666-3.727-3.72 0-2.061 1.666-3.726 3.723-3.726h10.618zM2.763 19.843l-.004-3.331h10.609c.21 0 .383-.175.383-.387 0-.213-.173-.385-.384-.385h-2.744c-4.345 0-7.867-3.525-7.867-7.871S6.278 0 10.623 0l10.6.003.006 3.35-10.604.003c-2.49 0-4.5 2.019-4.5 4.507 0 2.489 2.024 4.504 4.515 4.504l2.775.03c2.055 0 3.72 1.668 3.72 3.724 0 2.055-1.665 3.719-3.72 3.719H2.765l-.002.003z" }) + ] + } + ); +}); + +exports.default = SiSega; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSega.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSega.d.ts new file mode 100644 index 000000000..0485cd2a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSega.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0089CF"; +declare const SiSega: IconType; +export { SiSega as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSega.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSega.mjs new file mode 100644 index 000000000..47949afe0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSega.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0089CF"; +const SiSega = React.forwardRef(function SiSega2({ title = "Sega", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.229 4.14l-.006 3.33h-10.6c-.219 0-.397.181-.397.399 0 .221.18.399.397.399l2.76-.016c4.346 0 7.868 3.525 7.868 7.869 0 4.348-3.522 7.869-7.869 7.869L2.748 24l.005-3.375h10.635c2.487 0 4.504-2.016 4.504-4.504 0-2.49-2.017-4.506-4.506-4.506l-2.771-.03c-2.06 0-3.727-1.666-3.727-3.72 0-2.061 1.666-3.726 3.723-3.726h10.618zM2.763 19.843l-.004-3.331h10.609c.21 0 .383-.175.383-.387 0-.213-.173-.385-.384-.385h-2.744c-4.345 0-7.867-3.525-7.867-7.871S6.278 0 10.623 0l10.6.003.006 3.35-10.604.003c-2.49 0-4.5 2.019-4.5 4.507 0 2.489 2.024 4.504 4.515 4.504l2.775.03c2.055 0 3.72 1.668 3.72 3.724 0 2.055-1.665 3.719-3.72 3.719H2.765l-.002.003z" }) + ] + } + ); +}); + +export { SiSega as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.cjs new file mode 100644 index 000000000..460fd2024 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#43B02A"; +const SiSelenium = React__namespace.forwardRef(function SiSelenium2({ title = "Selenium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.174 3.468l-7.416 8.322a.228.228 0 0 1-.33 0l-3.786-3.9a.228.228 0 0 1 0-.282L12.872 6a.228.228 0 0 1 .366 0l2.106 2.346a.228.228 0 0 0 .342 0l5.94-8.094A.162.162 0 0 0 21.5 0H.716a.174.174 0 0 0-.174.174v23.652A.174.174 0 0 0 .716 24h22.566a.174.174 0 0 0 .174-.174V3.6a.162.162 0 0 0-.282-.132zM6.932 21.366a5.706 5.706 0 0 1-4.05-1.44.222.222 0 0 1 0-.288l.882-1.236a.222.222 0 0 1 .33-.036 4.338 4.338 0 0 0 2.964 1.158c1.158 0 1.722-.534 1.722-1.098 0-1.752-5.7-.552-5.7-4.278 0-1.65 1.428-3 3.756-3a5.568 5.568 0 0 1 3.708 1.242.222.222 0 0 1 0 .3l-.906 1.2a.222.222 0 0 1-.318.036 4.29 4.29 0 0 0-2.706-.936c-.906 0-1.41.402-1.41.996 0 1.572 5.688.522 5.688 4.2.006 1.812-1.284 3.18-3.96 3.18zm12.438-3.432a.192.192 0 0 1-.192.192h-5.202a.06.06 0 0 0-.06.066 1.986 1.986 0 0 0 2.106 1.638 3.264 3.264 0 0 0 1.8-.6.192.192 0 0 1 .276.042l.636.93a.198.198 0 0 1-.042.264 4.71 4.71 0 0 1-2.892.9 3.726 3.726 0 0 1-3.93-3.87 3.744 3.744 0 0 1 3.81-3.852c2.196 0 3.684 1.644 3.684 4.05zm-3.684-2.748a1.758 1.758 0 0 0-1.8 1.56.06.06 0 0 0 .06.066h3.492a.06.06 0 0 0 .06-.066 1.698 1.698 0 0 0-1.812-1.56Z" }) + ] + } + ); +}); + +exports.default = SiSelenium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.d.ts new file mode 100644 index 000000000..157cc2646 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#43B02A"; +declare const SiSelenium: IconType; +export { SiSelenium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.mjs new file mode 100644 index 000000000..002a0c5a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSelenium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#43B02A"; +const SiSelenium = React.forwardRef(function SiSelenium2({ title = "Selenium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.174 3.468l-7.416 8.322a.228.228 0 0 1-.33 0l-3.786-3.9a.228.228 0 0 1 0-.282L12.872 6a.228.228 0 0 1 .366 0l2.106 2.346a.228.228 0 0 0 .342 0l5.94-8.094A.162.162 0 0 0 21.5 0H.716a.174.174 0 0 0-.174.174v23.652A.174.174 0 0 0 .716 24h22.566a.174.174 0 0 0 .174-.174V3.6a.162.162 0 0 0-.282-.132zM6.932 21.366a5.706 5.706 0 0 1-4.05-1.44.222.222 0 0 1 0-.288l.882-1.236a.222.222 0 0 1 .33-.036 4.338 4.338 0 0 0 2.964 1.158c1.158 0 1.722-.534 1.722-1.098 0-1.752-5.7-.552-5.7-4.278 0-1.65 1.428-3 3.756-3a5.568 5.568 0 0 1 3.708 1.242.222.222 0 0 1 0 .3l-.906 1.2a.222.222 0 0 1-.318.036 4.29 4.29 0 0 0-2.706-.936c-.906 0-1.41.402-1.41.996 0 1.572 5.688.522 5.688 4.2.006 1.812-1.284 3.18-3.96 3.18zm12.438-3.432a.192.192 0 0 1-.192.192h-5.202a.06.06 0 0 0-.06.066 1.986 1.986 0 0 0 2.106 1.638 3.264 3.264 0 0 0 1.8-.6.192.192 0 0 1 .276.042l.636.93a.198.198 0 0 1-.042.264 4.71 4.71 0 0 1-2.892.9 3.726 3.726 0 0 1-3.93-3.87 3.744 3.744 0 0 1 3.81-3.852c2.196 0 3.684 1.644 3.684 4.05zm-3.684-2.748a1.758 1.758 0 0 0-1.8 1.56.06.06 0 0 0 .06.066h3.492a.06.06 0 0 0 .06-.066 1.698 1.698 0 0 0-1.812-1.56Z" }) + ] + } + ); +}); + +export { SiSelenium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.cjs new file mode 100644 index 000000000..2c0361185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21B352"; +const SiSellfy = React__namespace.forwardRef(function SiSellfy2({ title = "Sellfy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.179.818C15.533-.273 8.406-.273.8.818-.266 8.377-.266 15.424.8 22.946 4.511 23.491 8.22 24 12.005 24c3.748 0 7.459-.51 11.17-1.017 1.1-7.56 1.1-14.607 0-22.165h.004zm-11.54 18.314c-2.055 0-4.226-.689-5.179-1.199l.807-3.126c1.064.705 2.682 1.395 4.446 1.395 1.395 0 2.24-.436 2.24-1.305 0-.615-.435-.975-1.575-1.26l-2.279-.631c-2.416-.66-3.557-1.891-3.557-3.855 0-2.365 1.83-4.256 5.619-4.256 1.99 0 3.973.545 5.07 1.092l-.951 2.976c-1.104-.615-2.79-1.125-4.226-1.125-1.365 0-1.95.436-1.95 1.092 0 .619.404.87 1.291 1.092l2.488.734c2.566.736 3.707 1.966 3.707 3.885-.076 2.701-2.461 4.517-5.957 4.517l.006-.026z" }) + ] + } + ); +}); + +exports.default = SiSellfy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.d.ts new file mode 100644 index 000000000..719899a78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21B352"; +declare const SiSellfy: IconType; +export { SiSellfy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.mjs new file mode 100644 index 000000000..27b3affb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSellfy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21B352"; +const SiSellfy = React.forwardRef(function SiSellfy2({ title = "Sellfy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.179.818C15.533-.273 8.406-.273.8.818-.266 8.377-.266 15.424.8 22.946 4.511 23.491 8.22 24 12.005 24c3.748 0 7.459-.51 11.17-1.017 1.1-7.56 1.1-14.607 0-22.165h.004zm-11.54 18.314c-2.055 0-4.226-.689-5.179-1.199l.807-3.126c1.064.705 2.682 1.395 4.446 1.395 1.395 0 2.24-.436 2.24-1.305 0-.615-.435-.975-1.575-1.26l-2.279-.631c-2.416-.66-3.557-1.891-3.557-3.855 0-2.365 1.83-4.256 5.619-4.256 1.99 0 3.973.545 5.07 1.092l-.951 2.976c-1.104-.615-2.79-1.125-4.226-1.125-1.365 0-1.95.436-1.95 1.092 0 .619.404.87 1.291 1.092l2.488.734c2.566.736 3.707 1.966 3.707 3.885-.076 2.701-2.461 4.517-5.957 4.517l.006-.026z" }) + ] + } + ); +}); + +export { SiSellfy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.cjs new file mode 100644 index 000000000..936cf3e1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#494949"; +const SiSemanticrelease = React__namespace.forwardRef(function SiSemanticrelease2({ title = "semantic-release", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.952 14.4a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8zm0-.72a1.68 1.68 0 1 0 0-3.36 1.68 1.68 0 0 0 0 3.36zM8.304 3.12v1.728c.096.528 1.008 2.64 1.68 3.888C9.12 8.112 7.2 6.672 6.672 5.952a4.416 4.416 0 0 1-.816-1.392L2.448 6.48v4.128c.432.24 1.104.72 1.488.864.528.192 2.832.432 4.224.48-1.008.432-3.168 1.392-4.08 1.488-.768.144-1.296.048-1.632 0v4.08l3.312 1.872c.432-.192 1.152-.576 1.488-.816.432-.336 1.776-2.208 2.496-3.408-.096 1.056-.384 3.408-.72 4.272-.288.72-.624 1.104-.816 1.392L12 22.992l3.504-2.016c.048-.432.096-1.344 0-1.824-.048-.528-1.008-2.64-1.632-3.888.864.672 2.736 2.112 3.312 2.832.528.624.72 1.152.816 1.44l3.552-2.016v-4.032c-.384-.24-1.152-.72-1.632-.912-.48-.192-2.784-.432-4.176-.48 1.008-.48 3.168-1.392 4.08-1.488.864-.144 1.392-.048 1.728.048V6.48l-3.36-1.92-1.488.912c-.432.336-1.776 2.208-2.544 3.36.144-1.056.432-3.408.768-4.272.288-.72.624-1.152.864-1.392L12 1.008zM12 0l10.416 6v12L12 24 1.584 18V6z" }) + ] + } + ); +}); + +exports.default = SiSemanticrelease; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.d.ts new file mode 100644 index 000000000..ded09098a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#494949"; +declare const SiSemanticrelease: IconType; +export { SiSemanticrelease as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.mjs new file mode 100644 index 000000000..1ca52ab27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticrelease.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#494949"; +const SiSemanticrelease = React.forwardRef(function SiSemanticrelease2({ title = "semantic-release", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.952 14.4a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8zm0-.72a1.68 1.68 0 1 0 0-3.36 1.68 1.68 0 0 0 0 3.36zM8.304 3.12v1.728c.096.528 1.008 2.64 1.68 3.888C9.12 8.112 7.2 6.672 6.672 5.952a4.416 4.416 0 0 1-.816-1.392L2.448 6.48v4.128c.432.24 1.104.72 1.488.864.528.192 2.832.432 4.224.48-1.008.432-3.168 1.392-4.08 1.488-.768.144-1.296.048-1.632 0v4.08l3.312 1.872c.432-.192 1.152-.576 1.488-.816.432-.336 1.776-2.208 2.496-3.408-.096 1.056-.384 3.408-.72 4.272-.288.72-.624 1.104-.816 1.392L12 22.992l3.504-2.016c.048-.432.096-1.344 0-1.824-.048-.528-1.008-2.64-1.632-3.888.864.672 2.736 2.112 3.312 2.832.528.624.72 1.152.816 1.44l3.552-2.016v-4.032c-.384-.24-1.152-.72-1.632-.912-.48-.192-2.784-.432-4.176-.48 1.008-.48 3.168-1.392 4.08-1.488.864-.144 1.392-.048 1.728.048V6.48l-3.36-1.92-1.488.912c-.432.336-1.776 2.208-2.544 3.36.144-1.056.432-3.408.768-4.272.288-.72.624-1.152.864-1.392L12 1.008zM12 0l10.416 6v12L12 24 1.584 18V6z" }) + ] + } + ); +}); + +export { SiSemanticrelease as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.cjs new file mode 100644 index 000000000..b9b5e225d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1857B6"; +const SiSemanticscholar = React__namespace.forwardRef(function SiSemanticscholar2({ title = "Semantic Scholar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 8.609c-.848.536-1.436.83-2.146 1.245-4.152 2.509-8.15 5.295-11.247 8.981l-1.488 1.817-4.568-7.268c1.021.814 3.564 3.098 4.603 3.599l3.356-2.526c2.336-1.644 8.946-5.226 11.49-5.848ZM8.046 15.201c.346.277.692.537.969.744.761-3.668.121-7.613-1.886-11.039 3.374-.052 6.731-.087 10.105-.139a14.794 14.794 0 0 1 1.298 5.295c.294-.156.588-.294.883-.433-.104-1.868-.641-3.91-1.662-6.263-4.602-.018-9.188-.018-13.79-.018 2.993 3.547 4.36 7.839 4.083 11.853Zm-.623-.484c.087.086.191.155.277.225-.138-3.409-1.419-6.887-3.824-9.881H1.73c3.098 2.855 4.984 6.299 5.693 9.656Zm-.744-.658c.104.087.208.173.329.277-.9-2.526-2.492-5.018-4.741-7.198H0c2.89 2.076 5.122 4.481 6.679 6.921Z" }) + ] + } + ); +}); + +exports.default = SiSemanticscholar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.d.ts new file mode 100644 index 000000000..18c96556b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1857B6"; +declare const SiSemanticscholar: IconType; +export { SiSemanticscholar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.mjs new file mode 100644 index 000000000..67b6f2df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticscholar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1857B6"; +const SiSemanticscholar = React.forwardRef(function SiSemanticscholar2({ title = "Semantic Scholar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 8.609c-.848.536-1.436.83-2.146 1.245-4.152 2.509-8.15 5.295-11.247 8.981l-1.488 1.817-4.568-7.268c1.021.814 3.564 3.098 4.603 3.599l3.356-2.526c2.336-1.644 8.946-5.226 11.49-5.848ZM8.046 15.201c.346.277.692.537.969.744.761-3.668.121-7.613-1.886-11.039 3.374-.052 6.731-.087 10.105-.139a14.794 14.794 0 0 1 1.298 5.295c.294-.156.588-.294.883-.433-.104-1.868-.641-3.91-1.662-6.263-4.602-.018-9.188-.018-13.79-.018 2.993 3.547 4.36 7.839 4.083 11.853Zm-.623-.484c.087.086.191.155.277.225-.138-3.409-1.419-6.887-3.824-9.881H1.73c3.098 2.855 4.984 6.299 5.693 9.656Zm-.744-.658c.104.087.208.173.329.277-.9-2.526-2.492-5.018-4.741-7.198H0c2.89 2.076 5.122 4.481 6.679 6.921Z" }) + ] + } + ); +}); + +export { SiSemanticscholar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.cjs new file mode 100644 index 000000000..6f1459d95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B5AD"; +const SiSemanticui = React__namespace.forwardRef(function SiSemanticui2({ title = "Semantic UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm12.086 3.648a7.762 7.762 0 0 1 5.51 2.141l-1.818 2.232c-.488-.302-2.51-1.465-4.122-1.136-1.223.25-1.35 1.088-1.356 1.162-.031.373.364.963.718 1.148 1.656.858 3.761 1.561 4.617 2.024 2.452 1.325 2.638 3.322 2.295 4.873-.902 4.092-6.821 4.835-10.516 2.638a7.119 7.119 0 0 1-1.424-1.097l2.037-2.442c.319.189.45.408 1.485.955 2.47 1.308 4.132.398 4.29.292.528-.356.547-.957.538-1.155-.03-.627-.502-.97-1.115-1.236-1.01-.438-2.7-1.108-3.87-1.647-1.687-.777-2.757-2.046-2.76-3.982-.003-3.209 2.827-4.261 3.91-4.547a6.916 6.916 0 0 1 1.58-.223Z" }) + ] + } + ); +}); + +exports.default = SiSemanticui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.d.ts new file mode 100644 index 000000000..dab583fe6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B5AD"; +declare const SiSemanticui: IconType; +export { SiSemanticui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.mjs new file mode 100644 index 000000000..e564dd14a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B5AD"; +const SiSemanticui = React.forwardRef(function SiSemanticui2({ title = "Semantic UI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm12.086 3.648a7.762 7.762 0 0 1 5.51 2.141l-1.818 2.232c-.488-.302-2.51-1.465-4.122-1.136-1.223.25-1.35 1.088-1.356 1.162-.031.373.364.963.718 1.148 1.656.858 3.761 1.561 4.617 2.024 2.452 1.325 2.638 3.322 2.295 4.873-.902 4.092-6.821 4.835-10.516 2.638a7.119 7.119 0 0 1-1.424-1.097l2.037-2.442c.319.189.45.408 1.485.955 2.47 1.308 4.132.398 4.29.292.528-.356.547-.957.538-1.155-.03-.627-.502-.97-1.115-1.236-1.01-.438-2.7-1.108-3.87-1.647-1.687-.777-2.757-2.046-2.76-3.982-.003-3.209 2.827-4.261 3.91-4.547a6.916 6.916 0 0 1 1.58-.223Z" }) + ] + } + ); +}); + +export { SiSemanticui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.cjs new file mode 100644 index 000000000..10119b597 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#35BDB2"; +const SiSemanticuireact = React__namespace.forwardRef(function SiSemanticuireact2({ title = "Semantic UI React", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.857 23.995C4.52 23.9-.237 17.431.012 11.775-.004 6.167 4.646.066 12.111 0c6.254.027 11.978 5.271 11.885 12.202-.072 6.813-5.84 11.973-12.14 11.793zm.175-4.92c.988.93 3.497 3.166 5.362 1.957 1.434-.93 1.157-3.975.75-5.5 1.597-.365 4.44-1.76 4.37-3.506-.078-2-2.615-3.057-4.408-3.545.347-1.495.913-4.317-.745-5.527-1.637-1.195-4.302.88-5.354 1.969-1.025-.879-3.361-3.096-5.22-2.046-1.46.824-1.513 3.087-.875 5.598-1.441.34-4.459 1.532-4.42 3.546.04 2.183 3.342 3.175 4.397 3.553-.495 1.639-.768 4.596.884 5.55 1.88 1.085 4.39-1.292 5.26-2.048zm-5.244-3.321c.126.039.216.054.362.113.035-.362.268-.685.486-.875-.221-.005-.544-.066-.615-.113.172-.562.439-1.357.657-1.782.25.375.393.674.6 1.1a3.35 3.35 0 0 1 .66-.68c-.645-1.294-1.514-2.837-1.896-4.38.227-.112.426-.116.618-.15.053-.324.162-.638.288-.95-.378-.003-.764.097-1.15.19-.525-1.693-.604-4.156.511-4.624 1.354-.48 3.525 1.331 4.052 2.013l-.337.351c.668-.123 1.305-.107 1.988.013a2.52 2.52 0 0 0-.358-.382c1.172-1.273 3.307-2.653 4.306-1.81.906.852.681 2.98.286 4.456-.466-.083-.72-.138-1.065-.194-.097.51-.163.523-.366.83.317.035.617.065 1.188.234-.19.624-.387 1.202-.662 1.776-.273-.415-.473-.829-.932-1.55l-.565.74c.725 1.284 1.45 2.526 2.143 4.79-.196.114-.309.103-.604.165a4.16 4.16 0 0 1-.333.96c.451-.087.794-.142 1.182-.233.4 1.242.676 3.872-.423 4.554-1.172.677-3.229-.943-4.141-1.918.086-.13.11-.172.26-.274-.594.062-1.29.082-1.779.044.13.108.169.163.207.245-1.43 1.496-3.372 2.559-4.275 1.822-.887-.724-.77-2.846-.293-4.481zm6.072 1.5c2.67-.512 3.576-3.241 2.114-4.976-.405-.48-1.479-1.024-2.257-1.275-1.523-.49-2.556-1.136-1.716-1.962.826-.81 2.851.083 3.182.503l1.155-1.49c-1.161-1.105-2.702-1.52-4.337-1.222C9.54 7.1 8.488 8.336 8.418 9.308c-.155 2.168.875 2.764 2.821 3.598 1.592.682 2.139.913 2.051 1.487-.246 1.618-2.867.959-3.977-.09l-1.361 1.58c1.696 1.405 3.33 1.653 4.908 1.371zM2.404 12.055c-.097-1.216 2.43-2.463 3.731-2.682.318.892.625 1.788 1.031 2.608-.412.86-.737 1.764-1.042 2.679-1.08-.236-3.616-1.31-3.72-2.605zm14.455-.082c.452-1.08.812-2.016 1.013-2.64 1.2.252 3.78 1.37 3.724 2.668-.061 1.442-2.362 2.165-3.703 2.669a29.043 29.043 0 0 0-1.034-2.697z" }) + ] + } + ); +}); + +exports.default = SiSemanticuireact; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.d.ts new file mode 100644 index 000000000..d101f4e35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#35BDB2"; +declare const SiSemanticuireact: IconType; +export { SiSemanticuireact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.mjs new file mode 100644 index 000000000..71cd0c8ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticuireact.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#35BDB2"; +const SiSemanticuireact = React.forwardRef(function SiSemanticuireact2({ title = "Semantic UI React", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.857 23.995C4.52 23.9-.237 17.431.012 11.775-.004 6.167 4.646.066 12.111 0c6.254.027 11.978 5.271 11.885 12.202-.072 6.813-5.84 11.973-12.14 11.793zm.175-4.92c.988.93 3.497 3.166 5.362 1.957 1.434-.93 1.157-3.975.75-5.5 1.597-.365 4.44-1.76 4.37-3.506-.078-2-2.615-3.057-4.408-3.545.347-1.495.913-4.317-.745-5.527-1.637-1.195-4.302.88-5.354 1.969-1.025-.879-3.361-3.096-5.22-2.046-1.46.824-1.513 3.087-.875 5.598-1.441.34-4.459 1.532-4.42 3.546.04 2.183 3.342 3.175 4.397 3.553-.495 1.639-.768 4.596.884 5.55 1.88 1.085 4.39-1.292 5.26-2.048zm-5.244-3.321c.126.039.216.054.362.113.035-.362.268-.685.486-.875-.221-.005-.544-.066-.615-.113.172-.562.439-1.357.657-1.782.25.375.393.674.6 1.1a3.35 3.35 0 0 1 .66-.68c-.645-1.294-1.514-2.837-1.896-4.38.227-.112.426-.116.618-.15.053-.324.162-.638.288-.95-.378-.003-.764.097-1.15.19-.525-1.693-.604-4.156.511-4.624 1.354-.48 3.525 1.331 4.052 2.013l-.337.351c.668-.123 1.305-.107 1.988.013a2.52 2.52 0 0 0-.358-.382c1.172-1.273 3.307-2.653 4.306-1.81.906.852.681 2.98.286 4.456-.466-.083-.72-.138-1.065-.194-.097.51-.163.523-.366.83.317.035.617.065 1.188.234-.19.624-.387 1.202-.662 1.776-.273-.415-.473-.829-.932-1.55l-.565.74c.725 1.284 1.45 2.526 2.143 4.79-.196.114-.309.103-.604.165a4.16 4.16 0 0 1-.333.96c.451-.087.794-.142 1.182-.233.4 1.242.676 3.872-.423 4.554-1.172.677-3.229-.943-4.141-1.918.086-.13.11-.172.26-.274-.594.062-1.29.082-1.779.044.13.108.169.163.207.245-1.43 1.496-3.372 2.559-4.275 1.822-.887-.724-.77-2.846-.293-4.481zm6.072 1.5c2.67-.512 3.576-3.241 2.114-4.976-.405-.48-1.479-1.024-2.257-1.275-1.523-.49-2.556-1.136-1.716-1.962.826-.81 2.851.083 3.182.503l1.155-1.49c-1.161-1.105-2.702-1.52-4.337-1.222C9.54 7.1 8.488 8.336 8.418 9.308c-.155 2.168.875 2.764 2.821 3.598 1.592.682 2.139.913 2.051 1.487-.246 1.618-2.867.959-3.977-.09l-1.361 1.58c1.696 1.405 3.33 1.653 4.908 1.371zM2.404 12.055c-.097-1.216 2.43-2.463 3.731-2.682.318.892.625 1.788 1.031 2.608-.412.86-.737 1.764-1.042 2.679-1.08-.236-3.616-1.31-3.72-2.605zm14.455-.082c.452-1.08.812-2.016 1.013-2.64 1.2.252 3.78 1.37 3.724 2.668-.061 1.442-2.362 2.165-3.703 2.669a29.043 29.043 0 0 0-1.034-2.697z" }) + ] + } + ); +}); + +export { SiSemanticuireact as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.cjs new file mode 100644 index 000000000..cd381e485 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005A9C"; +const SiSemanticweb = React__namespace.forwardRef(function SiSemanticweb2({ title = "Semantic Web", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.602 0s-1.524 5.809-8.516 2.658c-.776-.35-.954-.444-.982-.469L2.074 6.301l10.043 4.896s.776-.326 2.026-.933C20.273 7.287 21.602 0 21.602 0zM1.59 8.486v10.448L10.947 24V13.242L1.59 8.486zm20.82 0l-9.357 4.756V24l9.357-5.066V8.486Z" }) + ] + } + ); +}); + +exports.default = SiSemanticweb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.d.ts new file mode 100644 index 000000000..08238d891 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005A9C"; +declare const SiSemanticweb: IconType; +export { SiSemanticweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.mjs new file mode 100644 index 000000000..993bdd942 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemanticweb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005A9C"; +const SiSemanticweb = React.forwardRef(function SiSemanticweb2({ title = "Semantic Web", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.602 0s-1.524 5.809-8.516 2.658c-.776-.35-.954-.444-.982-.469L2.074 6.301l10.043 4.896s.776-.326 2.026-.933C20.273 7.287 21.602 0 21.602 0zM1.59 8.486v10.448L10.947 24V13.242L1.59 8.486zm20.82 0l-9.357 4.756V24l9.357-5.066V8.486Z" }) + ] + } + ); +}); + +export { SiSemanticweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.cjs new file mode 100644 index 000000000..fd2c02870 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#19A974"; +const SiSemaphoreci = React__namespace.forwardRef(function SiSemaphoreci2({ title = "Semaphore CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.50314 13.2549-4.15781-4.22828a3.03814 3.03814 0 0 0-4.3591 0L9.6943 12.374a1.20701 1.20701 0 0 1-1.7213 0l-1.63096-1.6587 4.1578-4.22866a6.53247 6.53247 0 0 1 9.34234 0L24 10.71531zM8.82879 19.47925a6.52947 6.52947 0 0 1-4.67098-1.9657L0 13.295l2.48674-2.52872 4.15744 4.21816a3.05613 3.05613 0 0 0 4.3591 0l3.29191-3.34814a1.20701 1.20701 0 0 1 1.7213 0l1.63097 1.6587-4.14732 4.22866a6.5186 6.5186 0 0 1-4.67135 1.95558z" }) + ] + } + ); +}); + +exports.default = SiSemaphoreci; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.d.ts new file mode 100644 index 000000000..9d95bd72d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#19A974"; +declare const SiSemaphoreci: IconType; +export { SiSemaphoreci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.mjs new file mode 100644 index 000000000..8a74a1668 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemaphoreci.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#19A974"; +const SiSemaphoreci = React.forwardRef(function SiSemaphoreci2({ title = "Semaphore CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m21.50314 13.2549-4.15781-4.22828a3.03814 3.03814 0 0 0-4.3591 0L9.6943 12.374a1.20701 1.20701 0 0 1-1.7213 0l-1.63096-1.6587 4.1578-4.22866a6.53247 6.53247 0 0 1 9.34234 0L24 10.71531zM8.82879 19.47925a6.52947 6.52947 0 0 1-4.67098-1.9657L0 13.295l2.48674-2.52872 4.15744 4.21816a3.05613 3.05613 0 0 0 4.3591 0l3.29191-3.34814a1.20701 1.20701 0 0 1 1.7213 0l1.63097 1.6587-4.14732 4.22866a6.5186 6.5186 0 0 1-4.67135 1.95558z" }) + ] + } + ); +}); + +export { SiSemaphoreci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.cjs new file mode 100644 index 000000000..112a45483 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF642D"; +const SiSemrush = React__namespace.forwardRef(function SiSemrush2({ title = "Semrush", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.698 11.911c0 .444-.226.516-.79.516-.596 0-.706-.1-.77-.554-.118-1.152-.896-2.13-2.201-2.24-.418-.034-.518-.19-.518-.706 0-.48.074-.708.446-.708 2.265.01 3.833 1.832 3.833 3.69v.002zm3.3 0c0-3.456-2.338-7.11-7.74-7.11H5.52c-.218 0-.354.11-.354.31 0 .109.082.209.156.26.388.31.97.654 1.73 1.036.743.372 1.323.616 1.903.852.246.1.336.208.336.344 0 .19-.136.308-.4.308H.372c-.254 0-.372.164-.372.326 0 .136.044.254.162.372.69.726 1.796 1.596 3.4 2.604 1.466.91 2.98 1.74 4.533 2.492.236.11.308.236.308.372-.008.154-.126.28-.4.28H4.1c-.216 0-.344.12-.344.3 0 .1.08.226.19.326.888.808 2.311 1.688 4.207 2.494 2.53 1.08 5.094 1.721 7.98 1.721 5.465 0 7.867-4.087 7.867-7.289l-.002.002zm-7.133 5.104c-2.794 0-5.132-2.276-5.132-5.114 0-2.794 2.33-5.04 5.132-5.04 2.863 0 5.111 2.24 5.111 5.04a5.086 5.086 0 0 1-5.111 5.114z" }) + ] + } + ); +}); + +exports.default = SiSemrush; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.d.ts new file mode 100644 index 000000000..c26f9de1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF642D"; +declare const SiSemrush: IconType; +export { SiSemrush as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.mjs new file mode 100644 index 000000000..db00eed54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemrush.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF642D"; +const SiSemrush = React.forwardRef(function SiSemrush2({ title = "Semrush", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.698 11.911c0 .444-.226.516-.79.516-.596 0-.706-.1-.77-.554-.118-1.152-.896-2.13-2.201-2.24-.418-.034-.518-.19-.518-.706 0-.48.074-.708.446-.708 2.265.01 3.833 1.832 3.833 3.69v.002zm3.3 0c0-3.456-2.338-7.11-7.74-7.11H5.52c-.218 0-.354.11-.354.31 0 .109.082.209.156.26.388.31.97.654 1.73 1.036.743.372 1.323.616 1.903.852.246.1.336.208.336.344 0 .19-.136.308-.4.308H.372c-.254 0-.372.164-.372.326 0 .136.044.254.162.372.69.726 1.796 1.596 3.4 2.604 1.466.91 2.98 1.74 4.533 2.492.236.11.308.236.308.372-.008.154-.126.28-.4.28H4.1c-.216 0-.344.12-.344.3 0 .1.08.226.19.326.888.808 2.311 1.688 4.207 2.494 2.53 1.08 5.094 1.721 7.98 1.721 5.465 0 7.867-4.087 7.867-7.289l-.002.002zm-7.133 5.104c-2.794 0-5.132-2.276-5.132-5.114 0-2.794 2.33-5.04 5.132-5.04 2.863 0 5.111 2.24 5.111 5.04a5.086 5.086 0 0 1-5.111 5.114z" }) + ] + } + ); +}); + +export { SiSemrush as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.cjs new file mode 100644 index 000000000..3f2382f74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3F4551"; +const SiSemver = React__namespace.forwardRef(function SiSemver2({ title = "SemVer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.357 9.024A12.07 12.07 0 002.97 19.867a12.051 12.051 0 0010.38 4.063c7.768-.703 13.086-9.799 9.517-16.8-.416-1.19-2.07-.368-1.903.596.287.7.526 1.421.713 2.155a9.983 9.983 0 01-3.926 10.25 9.965 9.965 0 01-14.807-3.809A9.984 9.984 0 014.44 5.448a9.968 9.968 0 014.85-3.044 9.868 9.868 0 017.02.631.333.333 0 01.155.429l-3.962 10.62c-.107.81-.69.786-.797 0l-2.38-7.37a1.572 1.572 0 00-.773-.988c-1.19-.56-3.093.667-2.379 2.155l3.914 10.441c.524 1.393 1.023 1.834 2.058 1.834s1.535-.44 2.058-1.834L20 3.94a1.036 1.036 0 00-.369-1.19C13.1-2.907 2.32.641.357 9.023z" }) + ] + } + ); +}); + +exports.default = SiSemver; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.d.ts new file mode 100644 index 000000000..d9878032c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3F4551"; +declare const SiSemver: IconType; +export { SiSemver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.mjs new file mode 100644 index 000000000..49b36fe50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSemver.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3F4551"; +const SiSemver = React.forwardRef(function SiSemver2({ title = "SemVer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.357 9.024A12.07 12.07 0 002.97 19.867a12.051 12.051 0 0010.38 4.063c7.768-.703 13.086-9.799 9.517-16.8-.416-1.19-2.07-.368-1.903.596.287.7.526 1.421.713 2.155a9.983 9.983 0 01-3.926 10.25 9.965 9.965 0 01-14.807-3.809A9.984 9.984 0 014.44 5.448a9.968 9.968 0 014.85-3.044 9.868 9.868 0 017.02.631.333.333 0 01.155.429l-3.962 10.62c-.107.81-.69.786-.797 0l-2.38-7.37a1.572 1.572 0 00-.773-.988c-1.19-.56-3.093.667-2.379 2.155l3.914 10.441c.524 1.393 1.023 1.834 2.058 1.834s1.535-.44 2.058-1.834L20 3.94a1.036 1.036 0 00-.369-1.19C13.1-2.907 2.32.641.357 9.023z" }) + ] + } + ); +}); + +export { SiSemver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.cjs new file mode 100644 index 000000000..b912107ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#86BC40"; +const SiSencha = React__namespace.forwardRef(function SiSencha2({ title = "Sencha", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.287,24c0.458-1.221,0.917-1.532,0.917-2.442c0-1.452-0.878-2.8-2.237-3.434 l-5.831-2.813C5.211,13.85,3.392,10.97,3.392,7.797c0-3.23,1.867-6.133,4.871-7.576L8.712,0C8.129,0.674,7.796,1.532,7.796,2.44 c0,1.453,0.878,2.801,2.237,3.435l5.831,2.813c2.926,1.462,4.744,4.342,4.744,7.514c0,3.23-1.867,6.133-4.871,7.577L15.287,24" }) + ] + } + ); +}); + +exports.default = SiSencha; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.d.ts new file mode 100644 index 000000000..2a4d5215d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#86BC40"; +declare const SiSencha: IconType; +export { SiSencha as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.mjs new file mode 100644 index 000000000..a88c6efad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSencha.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#86BC40"; +const SiSencha = React.forwardRef(function SiSencha2({ title = "Sencha", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.287,24c0.458-1.221,0.917-1.532,0.917-2.442c0-1.452-0.878-2.8-2.237-3.434 l-5.831-2.813C5.211,13.85,3.392,10.97,3.392,7.797c0-3.23,1.867-6.133,4.871-7.576L8.712,0C8.129,0.674,7.796,1.532,7.796,2.44 c0,1.453,0.878,2.801,2.237,3.435l5.831,2.813c2.926,1.462,4.744,4.342,4.744,7.514c0,3.23-1.867,6.133-4.871,7.577L15.287,24" }) + ] + } + ); +}); + +export { SiSencha as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.cjs new file mode 100644 index 000000000..9d8863cda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSennheiser = React__namespace.forwardRef(function SiSennheiser2({ title = "Sennheiser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3v18h24V3zm13.209 1.659c-1.428.548-2.799 1.757-3.905 4.182-.321.703-.925 2.062-1.2 2.67-2.224 4.882-3.364 5.932-6.72 5.932V4.35H13.15c.184-.011.235.25.06.309zm9.428 1.894V19.65H10.851c-.181.005-.227-.25-.055-.309 1.427-.548 2.798-1.757 3.904-4.182.321-.703.926-2.062 1.2-2.67 2.22-4.882 3.36-5.932 6.716-5.932z" }) + ] + } + ); +}); + +exports.default = SiSennheiser; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.d.ts new file mode 100644 index 000000000..0f2d270b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSennheiser: IconType; +export { SiSennheiser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.mjs new file mode 100644 index 000000000..67bb18a28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSennheiser.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSennheiser = React.forwardRef(function SiSennheiser2({ title = "Sennheiser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3v18h24V3zm13.209 1.659c-1.428.548-2.799 1.757-3.905 4.182-.321.703-.925 2.062-1.2 2.67-2.224 4.882-3.364 5.932-6.72 5.932V4.35H13.15c.184-.011.235.25.06.309zm9.428 1.894V19.65H10.851c-.181.005-.227-.25-.055-.309 1.427-.548 2.798-1.757 3.904-4.182.321-.703.926-2.062 1.2-2.67 2.22-4.882 3.36-5.932 6.716-5.932z" }) + ] + } + ); +}); + +export { SiSennheiser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.cjs new file mode 100644 index 000000000..0cfd3036f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#89C967"; +const SiSensu = React__namespace.forwardRef(function SiSensu2({ title = "Sensu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12L12 0 0 12l12 12 12-12zM12 3.197l4.418 4.418c-1.445-.386-2.93-.586-4.418-.586s-2.974.199-4.418.588L12 3.196zM8.069 16.87c1.19-.658 2.534-1.008 3.931-1.008s2.741.35 3.931 1.008L12 20.804 8.069 16.87zm9.509-1.647c-1.697-1.08-3.636-1.622-5.578-1.622s-3.881.542-5.578 1.622l-3.103-3.101C5.822 10.284 8.834 9.29 12 9.29s6.178.994 8.681 2.832l-3.103 3.101z" }) + ] + } + ); +}); + +exports.default = SiSensu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.d.ts new file mode 100644 index 000000000..0f48de19d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#89C967"; +declare const SiSensu: IconType; +export { SiSensu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.mjs new file mode 100644 index 000000000..a52f8ad6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSensu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#89C967"; +const SiSensu = React.forwardRef(function SiSensu2({ title = "Sensu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12L12 0 0 12l12 12 12-12zM12 3.197l4.418 4.418c-1.445-.386-2.93-.586-4.418-.586s-2.974.199-4.418.588L12 3.196zM8.069 16.87c1.19-.658 2.534-1.008 3.931-1.008s2.741.35 3.931 1.008L12 20.804 8.069 16.87zm9.509-1.647c-1.697-1.08-3.636-1.622-5.578-1.622s-3.881.542-5.578 1.622l-3.103-3.101C5.822 10.284 8.834 9.29 12 9.29s6.178.994 8.681 2.832l-3.103 3.101z" }) + ] + } + ); +}); + +export { SiSensu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.cjs new file mode 100644 index 000000000..dbf2939bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#362D59"; +const SiSentry = React__namespace.forwardRef(function SiSentry2({ title = "Sentry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.91 2.505c-.873-1.448-2.972-1.448-3.844 0L6.904 7.92a15.478 15.478 0 0 1 8.53 12.811h-2.221A13.301 13.301 0 0 0 5.784 9.814l-2.926 5.06a7.65 7.65 0 0 1 4.435 5.848H2.194a.365.365 0 0 1-.298-.534l1.413-2.402a5.16 5.16 0 0 0-1.614-.913L.296 19.275a2.182 2.182 0 0 0 .812 2.999 2.24 2.24 0 0 0 1.086.288h6.983a9.322 9.322 0 0 0-3.845-8.318l1.11-1.922a11.47 11.47 0 0 1 4.95 10.24h5.915a17.242 17.242 0 0 0-7.885-15.28l2.244-3.845a.37.37 0 0 1 .504-.13c.255.14 9.75 16.708 9.928 16.9a.365.365 0 0 1-.327.543h-2.287c.029.612.029 1.223 0 1.831h2.297a2.206 2.206 0 0 0 1.922-3.31z" }) + ] + } + ); +}); + +exports.default = SiSentry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.d.ts new file mode 100644 index 000000000..e5f64272f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#362D59"; +declare const SiSentry: IconType; +export { SiSentry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.mjs new file mode 100644 index 000000000..f9c73dfd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSentry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#362D59"; +const SiSentry = React.forwardRef(function SiSentry2({ title = "Sentry", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.91 2.505c-.873-1.448-2.972-1.448-3.844 0L6.904 7.92a15.478 15.478 0 0 1 8.53 12.811h-2.221A13.301 13.301 0 0 0 5.784 9.814l-2.926 5.06a7.65 7.65 0 0 1 4.435 5.848H2.194a.365.365 0 0 1-.298-.534l1.413-2.402a5.16 5.16 0 0 0-1.614-.913L.296 19.275a2.182 2.182 0 0 0 .812 2.999 2.24 2.24 0 0 0 1.086.288h6.983a9.322 9.322 0 0 0-3.845-8.318l1.11-1.922a11.47 11.47 0 0 1 4.95 10.24h5.915a17.242 17.242 0 0 0-7.885-15.28l2.244-3.845a.37.37 0 0 1 .504-.13c.255.14 9.75 16.708 9.928 16.9a.365.365 0 0 1-.327.543h-2.287c.029.612.029 1.223 0 1.831h2.297a2.206 2.206 0 0 0 1.922-3.31z" }) + ] + } + ); +}); + +export { SiSentry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.cjs new file mode 100644 index 000000000..f835afc6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2350A9"; +const SiSepa = React__namespace.forwardRef(function SiSepa2({ title = "SEPA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.553 8.72v6.56h1.766v-1.694h1.052l.293-.01c.579-.009.907-.02.984-.033.656-.086 1.09-.418 1.3-.994.106-.29.16-.769.16-1.434 0-.553-.049-.968-.145-1.243-.185-.524-.548-.871-1.09-1.04-.236-.074-.58-.111-1.031-.111zm6.79 0l-1.971 6.56h1.826l.317-1.134h2.36l.337 1.133H24l-1.995-6.558zm-9.339.031a3.36 3.36 0 0 0-1.888.574 3.272 3.272 0 0 0-1.199 1.455h-.742l-.464.996h.969a3.17 3.17 0 0 0 .004.526h-.467l-.465.995H6.94a3.333 3.333 0 0 0 3.064 1.973 3.37 3.37 0 0 0 1.876-.564l.013-.009v-1.241l-.05.056a2.293 2.293 0 0 1-3.618-.215h2.396l.465-.995H7.838a2.356 2.356 0 0 1-.012-.526h3.505l.008-.017.438-.939.019-.04H8.154a2.308 2.308 0 0 1 1.963-1.108c.694 0 1.344.31 1.783.85l.028.035.409-.875-.015-.014a3.359 3.359 0 0 0-2.318-.917zm-7.2.004c-.439 0-.837.016-1.196.048-.43.034-.785.15-1.062.348a1.082 1.082 0 0 0-.41.565c-.086.248-.128.578-.128.99 0 .54.079.943.236 1.21.179.314.537.52 1.074.621.205.035.57.071 1.094.109.654.044 1.02.078 1.098.103.211.063.316.239.316.528a1.1 1.1 0 0 1-.037.315.48.48 0 0 1-.298.287c-.084.032-.281.048-.589.048h-.604a.963.963 0 0 1-.41-.09c-.164-.081-.246-.264-.246-.549v-.136H0c0 .533.04.915.118 1.143.142.412.435.685.879.82.362.11 1.003.164 1.922.164.551 0 .96-.025 1.228-.075.64-.12 1.05-.404 1.233-.853.101-.245.151-.632.151-1.16 0-.23-.01-.435-.033-.617a1.186 1.186 0 0 0-.355-.74c-.252-.242-.66-.392-1.22-.448-.177-.019-.62-.052-1.33-.1l-.331-.023a.768.768 0 0 1-.35-.094c-.124-.075-.185-.233-.185-.471 0-.264.07-.435.208-.514.139-.079.423-.118.852-.118.441 0 .71.068.808.205.063.092.095.272.095.542h1.642c.01-.145.016-.253.016-.326 0-.884-.357-1.421-1.072-1.613-.293-.079-.784-.119-1.473-.119zm17.894 1.27l.827 2.843h-1.63zm-6.38.13h1.116c.18 0 .294.004.342.01.24.042.393.157.456.345.045.134.067.34.067.617a2.9 2.9 0 0 1-.033.512c-.035.172-.105.287-.21.344-.076.042-.288.069-.637.082h-1.1Z" }) + ] + } + ); +}); + +exports.default = SiSepa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.d.ts new file mode 100644 index 000000000..3e89370ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2350A9"; +declare const SiSepa: IconType; +export { SiSepa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.mjs new file mode 100644 index 000000000..6b9961f13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSepa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2350A9"; +const SiSepa = React.forwardRef(function SiSepa2({ title = "SEPA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.553 8.72v6.56h1.766v-1.694h1.052l.293-.01c.579-.009.907-.02.984-.033.656-.086 1.09-.418 1.3-.994.106-.29.16-.769.16-1.434 0-.553-.049-.968-.145-1.243-.185-.524-.548-.871-1.09-1.04-.236-.074-.58-.111-1.031-.111zm6.79 0l-1.971 6.56h1.826l.317-1.134h2.36l.337 1.133H24l-1.995-6.558zm-9.339.031a3.36 3.36 0 0 0-1.888.574 3.272 3.272 0 0 0-1.199 1.455h-.742l-.464.996h.969a3.17 3.17 0 0 0 .004.526h-.467l-.465.995H6.94a3.333 3.333 0 0 0 3.064 1.973 3.37 3.37 0 0 0 1.876-.564l.013-.009v-1.241l-.05.056a2.293 2.293 0 0 1-3.618-.215h2.396l.465-.995H7.838a2.356 2.356 0 0 1-.012-.526h3.505l.008-.017.438-.939.019-.04H8.154a2.308 2.308 0 0 1 1.963-1.108c.694 0 1.344.31 1.783.85l.028.035.409-.875-.015-.014a3.359 3.359 0 0 0-2.318-.917zm-7.2.004c-.439 0-.837.016-1.196.048-.43.034-.785.15-1.062.348a1.082 1.082 0 0 0-.41.565c-.086.248-.128.578-.128.99 0 .54.079.943.236 1.21.179.314.537.52 1.074.621.205.035.57.071 1.094.109.654.044 1.02.078 1.098.103.211.063.316.239.316.528a1.1 1.1 0 0 1-.037.315.48.48 0 0 1-.298.287c-.084.032-.281.048-.589.048h-.604a.963.963 0 0 1-.41-.09c-.164-.081-.246-.264-.246-.549v-.136H0c0 .533.04.915.118 1.143.142.412.435.685.879.82.362.11 1.003.164 1.922.164.551 0 .96-.025 1.228-.075.64-.12 1.05-.404 1.233-.853.101-.245.151-.632.151-1.16 0-.23-.01-.435-.033-.617a1.186 1.186 0 0 0-.355-.74c-.252-.242-.66-.392-1.22-.448-.177-.019-.62-.052-1.33-.1l-.331-.023a.768.768 0 0 1-.35-.094c-.124-.075-.185-.233-.185-.471 0-.264.07-.435.208-.514.139-.079.423-.118.852-.118.441 0 .71.068.808.205.063.092.095.272.095.542h1.642c.01-.145.016-.253.016-.326 0-.884-.357-1.421-1.072-1.613-.293-.079-.784-.119-1.473-.119zm17.894 1.27l.827 2.843h-1.63zm-6.38.13h1.116c.18 0 .294.004.342.01.24.042.393.157.456.345.045.134.067.34.067.617a2.9 2.9 0 0 1-.033.512c-.035.172-.105.287-.21.344-.076.042-.288.069-.637.082h-1.1Z" }) + ] + } + ); +}); + +export { SiSepa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.cjs new file mode 100644 index 000000000..68e489d7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#52B0E7"; +const SiSequelize = React__namespace.forwardRef(function SiSequelize2({ title = "Sequelize", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0264 0 1.5947 5.9922v12.0156L12.0264 24l10.3789-5.9922V5.9922L12.0264 0zm-.0274 3.4844 7.4297 4.2266v8.5781l-7.4297 4.2266-7.3476-4.1817-.0801-8.623 7.4277-4.2266zm.0489.5898c-.9765.5627-1.9519 1.1274-2.9277 1.6914v.2539l2.6074 1.5234v.4824c.1355-.0781.2616-.1511.4023-.2324l.2559.1504v-.3359c.8844-.5068 1.8073-1.0412 2.5684-1.4805.0035-.1232.0027-.2534.0039-.373-.9703-.5596-1.9403-1.1197-2.9102-1.6797zM8.335 6.1387c-.9705.553-1.9312 1.1228-2.8926 1.6914v3.4023c.965.5553 1.9287 1.1127 2.8926 1.6699l.4023-.2324v-2.916c.8561-.4945 1.7522-1.0126 2.4902-1.4395v-.4843L8.335 6.1387zm7.4433.0879-2.8926 1.6699v.3379l2.6367 1.541v3.0664c.0854.0494.1705.0991.2559.1484l2.8926-1.6699V7.918l-2.8926-1.6914zm-3.6484 2.1445c-.9636.5584-1.9281 1.1151-2.8926 1.6719v3.4238c.965.5553 1.9287 1.1127 2.8926 1.6699l2.8926-1.6719v-3.4023l-2.8926-1.6914zm-6.1973 3.7227c-.1627.0962-.3275.1889-.4902.2852v3.4023c.9643.5571 1.9284 1.1145 2.8926 1.6719l.4023-.2324v-2.918c.1625-.0939.3086-.1787.4727-.2734-.1629-.0945-.3047-.1763-.4727-.2734v-.508l-.4023.2325c-.8251-.4771-1.6902-.976-2.4024-1.3867zm12.2481.0859-2.4023 1.3887c-.088-.0509-.1672-.0972-.2559-.1484v.334l-.4922.2852.4922.2871v3.0664c.0854.0494.1705.0991.2559.1484l2.8926-1.6719v-3.4023l-.4903-.2872zm-8.4688 2.1387c-.1581.0913-.3165.1821-.4746.2734v3.4238c.9637.5575 1.9282 1.1136 2.8926 1.6699l2.8926-1.6699v-3.4023l-.4902-.2871-2.4023 1.3887c-.8307-.4804-1.7013-.9829-2.4181-1.3965z" }) + ] + } + ); +}); + +exports.default = SiSequelize; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.d.ts new file mode 100644 index 000000000..dc264c7cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#52B0E7"; +declare const SiSequelize: IconType; +export { SiSequelize as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.mjs new file mode 100644 index 000000000..247b6d2ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSequelize.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#52B0E7"; +const SiSequelize = React.forwardRef(function SiSequelize2({ title = "Sequelize", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0264 0 1.5947 5.9922v12.0156L12.0264 24l10.3789-5.9922V5.9922L12.0264 0zm-.0274 3.4844 7.4297 4.2266v8.5781l-7.4297 4.2266-7.3476-4.1817-.0801-8.623 7.4277-4.2266zm.0489.5898c-.9765.5627-1.9519 1.1274-2.9277 1.6914v.2539l2.6074 1.5234v.4824c.1355-.0781.2616-.1511.4023-.2324l.2559.1504v-.3359c.8844-.5068 1.8073-1.0412 2.5684-1.4805.0035-.1232.0027-.2534.0039-.373-.9703-.5596-1.9403-1.1197-2.9102-1.6797zM8.335 6.1387c-.9705.553-1.9312 1.1228-2.8926 1.6914v3.4023c.965.5553 1.9287 1.1127 2.8926 1.6699l.4023-.2324v-2.916c.8561-.4945 1.7522-1.0126 2.4902-1.4395v-.4843L8.335 6.1387zm7.4433.0879-2.8926 1.6699v.3379l2.6367 1.541v3.0664c.0854.0494.1705.0991.2559.1484l2.8926-1.6699V7.918l-2.8926-1.6914zm-3.6484 2.1445c-.9636.5584-1.9281 1.1151-2.8926 1.6719v3.4238c.965.5553 1.9287 1.1127 2.8926 1.6699l2.8926-1.6719v-3.4023l-2.8926-1.6914zm-6.1973 3.7227c-.1627.0962-.3275.1889-.4902.2852v3.4023c.9643.5571 1.9284 1.1145 2.8926 1.6719l.4023-.2324v-2.918c.1625-.0939.3086-.1787.4727-.2734-.1629-.0945-.3047-.1763-.4727-.2734v-.508l-.4023.2325c-.8251-.4771-1.6902-.976-2.4024-1.3867zm12.2481.0859-2.4023 1.3887c-.088-.0509-.1672-.0972-.2559-.1484v.334l-.4922.2852.4922.2871v3.0664c.0854.0494.1705.0991.2559.1484l2.8926-1.6719v-3.4023l-.4903-.2872zm-8.4688 2.1387c-.1581.0913-.3165.1821-.4746.2734v3.4238c.9637.5575 1.9282 1.1136 2.8926 1.6699l2.8926-1.6699v-3.4023l-.4902-.2871-2.4023 1.3887c-.8307-.4804-1.7013-.9829-2.4181-1.3965z" }) + ] + } + ); +}); + +export { SiSequelize as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.cjs new file mode 100644 index 000000000..89f824c08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00103C"; +const SiServbay = React__namespace.forwardRef(function SiServbay2({ title = "ServBay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.201.028a.505.505 0 0 1 .643.313c.04.11.043.23.006.341l-2.258 6.356a.512.512 0 0 1-.319.302L1 11.168l2.665-7.33a.513.513 0 0 1 .319-.302L14.2.028h.001ZM1 11.757l2.776 4.05a.55.55 0 0 0 .622.227l5.12-1.892a.483.483 0 0 0 .29-.653l-.03-.063L7.412 9.62 1 11.756Zm8.799 12.215a.505.505 0 0 1-.643-.312.517.517 0 0 1-.006-.342l2.235-6.365a.513.513 0 0 1 .319-.3L23 12.832l-2.665 7.33a.51.51 0 0 1-.318.3l-10.218 3.51v-.001ZM20.437 8.079a.55.55 0 0 0-.622-.226l-5.12 1.893a.483.483 0 0 0-.29.65l.03.064 2.336 3.85 6.215-2.12-2.55-4.11h.001Z" }) + ] + } + ); +}); + +exports.default = SiServbay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.d.ts new file mode 100644 index 000000000..c9723cfeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00103C"; +declare const SiServbay: IconType; +export { SiServbay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.mjs new file mode 100644 index 000000000..11600f38f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServbay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00103C"; +const SiServbay = React.forwardRef(function SiServbay2({ title = "ServBay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.201.028a.505.505 0 0 1 .643.313c.04.11.043.23.006.341l-2.258 6.356a.512.512 0 0 1-.319.302L1 11.168l2.665-7.33a.513.513 0 0 1 .319-.302L14.2.028h.001ZM1 11.757l2.776 4.05a.55.55 0 0 0 .622.227l5.12-1.892a.483.483 0 0 0 .29-.653l-.03-.063L7.412 9.62 1 11.756Zm8.799 12.215a.505.505 0 0 1-.643-.312.517.517 0 0 1-.006-.342l2.235-6.365a.513.513 0 0 1 .319-.3L23 12.832l-2.665 7.33a.51.51 0 0 1-.318.3l-10.218 3.51v-.001ZM20.437 8.079a.55.55 0 0 0-.622-.226l-5.12 1.893a.483.483 0 0 0-.29.65l.03.064 2.336 3.85 6.215-2.12-2.55-4.11h.001Z" }) + ] + } + ); +}); + +export { SiServbay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.cjs new file mode 100644 index 000000000..227abe7b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E7282D"; +const SiServerfault = React__namespace.forwardRef(function SiServerfault2({ title = "Server Fault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 18.185v2.274h-4.89v-2.274H24zm-24-.106h11.505v2.274H0zm12.89 0h4.89v2.274h-4.89zm6.221-3.607H24v2.274h-4.89l.001-2.274zM0 14.367h11.505v2.274H0v-2.274zm12.89 0h4.89v2.274h-4.89v-2.274zm6.221-3.346H24v2.273h-4.89l.001-2.273zM0 10.916h11.505v2.271H0v-2.271zm12.89 0h4.89v2.271h-4.89v-2.271zm6.22-3.609H24v2.279h-4.89V7.307zM0 7.206h11.505V9.48H0V7.201zm12.89 0h4.89V9.48h-4.89V7.201zm6.221-3.556H24v2.276h-4.89v-2.28l.001.004zM0 3.541h11.505v2.274H0V3.541zm12.89 0h4.89v2.274h-4.89V3.541z" }) + ] + } + ); +}); + +exports.default = SiServerfault; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.d.ts new file mode 100644 index 000000000..a6e787d91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E7282D"; +declare const SiServerfault: IconType; +export { SiServerfault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.mjs new file mode 100644 index 000000000..b2729b4be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServerfault.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E7282D"; +const SiServerfault = React.forwardRef(function SiServerfault2({ title = "Server Fault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 18.185v2.274h-4.89v-2.274H24zm-24-.106h11.505v2.274H0zm12.89 0h4.89v2.274h-4.89zm6.221-3.607H24v2.274h-4.89l.001-2.274zM0 14.367h11.505v2.274H0v-2.274zm12.89 0h4.89v2.274h-4.89v-2.274zm6.221-3.346H24v2.273h-4.89l.001-2.273zM0 10.916h11.505v2.271H0v-2.271zm12.89 0h4.89v2.271h-4.89v-2.271zm6.22-3.609H24v2.279h-4.89V7.307zM0 7.206h11.505V9.48H0V7.201zm12.89 0h4.89V9.48h-4.89V7.201zm6.221-3.556H24v2.276h-4.89v-2.28l.001.004zM0 3.541h11.505v2.274H0V3.541zm12.89 0h4.89v2.274h-4.89V3.541z" }) + ] + } + ); +}); + +export { SiServerfault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.cjs new file mode 100644 index 000000000..9d3be7e0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD5750"; +const SiServerless = React__namespace.forwardRef(function SiServerless2({ title = "Serverless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 17.57h4.248l-1.316 3.974H0zm0-7.557h6.75l-1.316 3.974H0zm0-7.557h9.252L7.936 6.431H0zm13.44 0H24v3.975H12.123zM9.62 13.987l1.317-3.974H24v3.974zM8.436 17.57H24v3.975H7.119Z" }) + ] + } + ); +}); + +exports.default = SiServerless; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.d.ts new file mode 100644 index 000000000..e2d69d059 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD5750"; +declare const SiServerless: IconType; +export { SiServerless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.mjs new file mode 100644 index 000000000..b3869e2f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiServerless.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD5750"; +const SiServerless = React.forwardRef(function SiServerless2({ title = "Serverless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 17.57h4.248l-1.316 3.974H0zm0-7.557h6.75l-1.316 3.974H0zm0-7.557h9.252L7.936 6.431H0zm13.44 0H24v3.975H12.123zM9.62 13.987l1.317-3.974H24v3.974zM8.436 17.57H24v3.975H7.119Z" }) + ] + } + ); +}); + +export { SiServerless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSession.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSession.cjs new file mode 100644 index 000000000..4c384919b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSession.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSession = React__namespace.forwardRef(function SiSession2({ title = "Session", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.431 12.193-4.53-2.51h3.071a4.847 4.847 0 0 0 4.842-4.841A4.848 4.848 0 0 0 17.972 0H7.252a6.073 6.073 0 0 0-6.066 6.066 6.566 6.566 0 0 0 3.383 5.741l4.53 2.51H6.028a4.847 4.847 0 0 0-4.842 4.841A4.848 4.848 0 0 0 6.028 24h10.72a6.073 6.073 0 0 0 6.066-6.066 6.568 6.568 0 0 0-3.383-5.741zm-14.136-1.7a5.065 5.065 0 0 1-2.607-4.309C2.627 3.61 4.79 1.5 7.367 1.5h10.508c1.797 0 3.345 1.378 3.434 3.173a3.345 3.345 0 0 1-3.337 3.51H11.92a.67.67 0 0 0-.67.67l-.001 4.94zM16.633 22.5H6.124c-1.797 0-3.345-1.378-3.434-3.173a3.345 3.345 0 0 1 3.337-3.51h6.053c.37 0 .67-.3.67-.67v-4.94l5.954 3.3a5.065 5.065 0 0 1 2.608 4.309c.06 2.575-2.103 4.684-4.679 4.684" }) + ] + } + ); +}); + +exports.default = SiSession; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSession.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSession.d.ts new file mode 100644 index 000000000..e3c46d187 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSession.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSession: IconType; +export { SiSession as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSession.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSession.mjs new file mode 100644 index 000000000..763e6b56c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSession.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSession = React.forwardRef(function SiSession2({ title = "Session", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.431 12.193-4.53-2.51h3.071a4.847 4.847 0 0 0 4.842-4.841A4.848 4.848 0 0 0 17.972 0H7.252a6.073 6.073 0 0 0-6.066 6.066 6.566 6.566 0 0 0 3.383 5.741l4.53 2.51H6.028a4.847 4.847 0 0 0-4.842 4.841A4.848 4.848 0 0 0 6.028 24h10.72a6.073 6.073 0 0 0 6.066-6.066 6.568 6.568 0 0 0-3.383-5.741zm-14.136-1.7a5.065 5.065 0 0 1-2.607-4.309C2.627 3.61 4.79 1.5 7.367 1.5h10.508c1.797 0 3.345 1.378 3.434 3.173a3.345 3.345 0 0 1-3.337 3.51H11.92a.67.67 0 0 0-.67.67l-.001 4.94zM16.633 22.5H6.124c-1.797 0-3.345-1.378-3.434-3.173a3.345 3.345 0 0 1 3.337-3.51h6.053c.37 0 .67-.3.67-.67v-4.94l5.954 3.3a5.065 5.065 0 0 1 2.608 4.309c.06 2.575-2.103 4.684-4.679 4.684" }) + ] + } + ); +}); + +export { SiSession as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.cjs new file mode 100644 index 000000000..de3a0002b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1AB394"; +const SiSessionize = React__namespace.forwardRef(function SiSessionize2({ title = "Sessionize", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c6.628 0 12 5.372 12 12v10c0 1.097-.903 2-2 2h-7.5l-.001-.169c-.049-2.894-1.347-4.902-3.709-5.96L24 12l-.32-.109c-2.858-.999-5.251-2.462-7.18-4.391-1.928-1.928-3.392-4.322-4.391-7.181L12 0 4 18c0 .667.167 1.167.5 1.5.334.334.834.5 1.5.5l.187.001c3.771.04 5.313 1.295 5.313 3.999H2c-1.097 0-2-.903-2-2V2C0 .903.903 0 2 0h10Zm7.207 4.793c-.781-.781-1.73-1.097-2.121-.707-.39.39-.074 1.34.707 2.121.781.781 1.731 1.098 2.121.707.391-.39.074-1.34-.707-2.121Z" }) + ] + } + ); +}); + +exports.default = SiSessionize; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.d.ts new file mode 100644 index 000000000..b8c9973a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1AB394"; +declare const SiSessionize: IconType; +export { SiSessionize as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.mjs new file mode 100644 index 000000000..84241ee6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSessionize.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1AB394"; +const SiSessionize = React.forwardRef(function SiSessionize2({ title = "Sessionize", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c6.628 0 12 5.372 12 12v10c0 1.097-.903 2-2 2h-7.5l-.001-.169c-.049-2.894-1.347-4.902-3.709-5.96L24 12l-.32-.109c-2.858-.999-5.251-2.462-7.18-4.391-1.928-1.928-3.392-4.322-4.391-7.181L12 0 4 18c0 .667.167 1.167.5 1.5.334.334.834.5 1.5.5l.187.001c3.771.04 5.313 1.295 5.313 3.999H2c-1.097 0-2-.903-2-2V2C0 .903.903 0 2 0h10Zm7.207 4.793c-.781-.781-1.73-1.097-2.121-.707-.39.39-.074 1.34.707 2.121.781.781 1.731 1.098 2.121.707.391-.39.074-1.34-.707-2.121Z" }) + ] + } + ); +}); + +export { SiSessionize as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.cjs new file mode 100644 index 000000000..26716f3e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6C3A5"; +const SiSetapp = React__namespace.forwardRef(function SiSetapp2({ title = "Setapp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.0949 8.1332a.619.619 0 0 1 0-.874l2.7712-2.7733a.619.619 0 0 1 .877 0l2.7703 2.7722a.619.619 0 0 1 0 .8751l-2.7703 2.7722a.619.619 0 0 1-.877 0zm-1.5331-1.5331L8.7906 3.8299a.618.618 0 0 1 0-.877L11.5618.1815a.619.619 0 0 1 .876 0l2.7732 2.7712a.619.619 0 0 1 0 .877L12.4378 6.6a.619.619 0 0 1-.876 0zm0 2.1902a.619.619 0 0 1 .876 0l2.7732 2.7712a.619.619 0 0 1 0 .877l-2.7732 2.7712a.619.619 0 0 1-.876 0l-2.7712-2.7692a.618.618 0 0 1 0-.877zm-4.3044 2.1151L4.4862 8.1332a.619.619 0 0 1 0-.876l2.7712-2.7713a.619.619 0 0 1 .8761 0l2.7722 2.7712a.621.621 0 0 1 0 .8761l-2.7732 2.7722a.619.619 0 0 1-.876 0zm9.4847 2.1902 2.7723 2.7712a.618.618 0 0 1 0 .875l-2.7703 2.7723a.619.619 0 0 1-.876 0l-2.7732-2.7722a.621.621 0 0 1 0-.8751l2.7732-2.7722a.619.619 0 0 1 .875 0zm-4.3043 4.3033 2.7722 2.7722a.618.618 0 0 1 0 .876l-2.7722 2.7713a.619.619 0 0 1-.876 0l-2.7712-2.7712a.619.619 0 0 1 0-.877l2.7712-2.7713a.619.619 0 0 1 .876 0zm-1.532-1.5321a.619.619 0 0 1 0 .875l-2.7723 2.7733a.621.621 0 0 1-.876 0l-2.7723-2.7722a.619.619 0 0 1 0-.8751l2.7722-2.7722a.619.619 0 0 1 .8761 0z" }) + ] + } + ); +}); + +exports.default = SiSetapp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.d.ts new file mode 100644 index 000000000..9d6ee98b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6C3A5"; +declare const SiSetapp: IconType; +export { SiSetapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.mjs new file mode 100644 index 000000000..8be53802b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSetapp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6C3A5"; +const SiSetapp = React.forwardRef(function SiSetapp2({ title = "Setapp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.0949 8.1332a.619.619 0 0 1 0-.874l2.7712-2.7733a.619.619 0 0 1 .877 0l2.7703 2.7722a.619.619 0 0 1 0 .8751l-2.7703 2.7722a.619.619 0 0 1-.877 0zm-1.5331-1.5331L8.7906 3.8299a.618.618 0 0 1 0-.877L11.5618.1815a.619.619 0 0 1 .876 0l2.7732 2.7712a.619.619 0 0 1 0 .877L12.4378 6.6a.619.619 0 0 1-.876 0zm0 2.1902a.619.619 0 0 1 .876 0l2.7732 2.7712a.619.619 0 0 1 0 .877l-2.7732 2.7712a.619.619 0 0 1-.876 0l-2.7712-2.7692a.618.618 0 0 1 0-.877zm-4.3044 2.1151L4.4862 8.1332a.619.619 0 0 1 0-.876l2.7712-2.7713a.619.619 0 0 1 .8761 0l2.7722 2.7712a.621.621 0 0 1 0 .8761l-2.7732 2.7722a.619.619 0 0 1-.876 0zm9.4847 2.1902 2.7723 2.7712a.618.618 0 0 1 0 .875l-2.7703 2.7723a.619.619 0 0 1-.876 0l-2.7732-2.7722a.621.621 0 0 1 0-.8751l2.7732-2.7722a.619.619 0 0 1 .875 0zm-4.3043 4.3033 2.7722 2.7722a.618.618 0 0 1 0 .876l-2.7722 2.7713a.619.619 0 0 1-.876 0l-2.7712-2.7712a.619.619 0 0 1 0-.877l2.7712-2.7713a.619.619 0 0 1 .876 0zm-1.532-1.5321a.619.619 0 0 1 0 .875l-2.7723 2.7733a.621.621 0 0 1-.876 0l-2.7723-2.7722a.619.619 0 0 1 0-.8751l2.7722-2.7722a.619.619 0 0 1 .8761 0z" }) + ] + } + ); +}); + +export { SiSetapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.cjs new file mode 100644 index 000000000..64db35d83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#336790"; +const SiSetuptools = React__namespace.forwardRef(function SiSetuptools2({ title = "Setuptools", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.4352 0c-.6025.01-1.0795.2596-1.3688.4747-.3857.2867-.5094.4508-1.0929.4523-.5834.0014-.7074-.1624-1.0946-.4472S9.7704-.1487 8.8662.096s-1.3537.9052-1.5444 1.3464c-.1906.4412-.2156.6453-.7202.9383s-.6942.2137-1.1719.1605c-.4777-.053-1.2747.0094-1.9354.6735s-.7202 1.4617-.6647 1.9391.1358.6665-.1546 1.1725-.4935.5316-.9338.7245c-.4403.1928-1.0994.645-1.3396 1.5505s.108 1.625.3948 2.0108c.2868.3857.4509.5094.4523 1.0929s-.1623.7072-.4472 1.0943-.6281 1.1086-.3834 2.0128.9048 1.354 1.346 1.5446c.4413.1907.6453.2156.9383.7202s.2137.6937.1606 1.1713.0094 1.275.6735 1.9358c.664.6607 1.4616.7187 1.939.6632s.6666-.1341 1.1726.1564.5316.4934.7244.9337.6451 1.099 1.5506 1.3393 2.0157-.2187 2.0108-.3948c-.005-.176-.7486.1269-1.494-.3421s-.6917-.7586-.8561-1.1337-.4583-1.0795-1.2784-1.5503c-.82-.4707-1.5762-.3687-1.983-.3214s-.434.1297-.8539-.288c-.4198-.4178-.3361-.4446-.2908-.8516.0452-.4071.1426-1.163-.3323-1.9808s-1.18-1.1086-1.5559-1.271c-.376-.1625-.4403-.1032-.595-.675-.1547-.5716-.0708-.5553.1719-.8852.2427-.33.7064-.9352.704-1.8808-.0023-.9456-.469-1.5504-.7134-1.8791-.2443-.3287-.3291-.3105-.1772-.883.1518-.5725.2173-.5134.5924-.6778s1.0795-.4583 1.5503-1.2784c.4708-.82.3687-1.5762.3215-1.983s-.1295-.434.2883-.8539.4442-.3378.8513-.2925c.407.0452 1.163.1443 1.9807-.3305.8178-.4749 1.1072-1.18 1.2697-1.556.1624-.376.1048-.4403.6765-.595s.5551-.0708.885.172c.33.2427.9353.7063 1.8809.704s1.5487-.4688 1.8773-.7131c.3287-.2444.3109-.3295.8834-.1776s.5148.2173.679.5925c.1644.3751.4587 1.0795 1.2788 1.5502s1.5759.369 1.9827.3218.434-.1298.8539.288.3364.4443.2911.8513-.1429 1.163.332 1.9808 1.18 1.1071 1.5559 1.2696.4406.1048.5953.6766.0705.555-.1722.885-.7064.9352-.704 1.8808.469 1.5487.7134 1.8774c.2443.3287.3291.3108.1772.8833-.1518.5725-.2173.515-.5924.6794s-1.0795.4583-1.5503 1.2784-.3687 1.5759-.3215 1.9828.1298.434-.288.8538-.4445.3364-.8516.2912c-.407-.0453-1.163-.1427-1.9807.3322-.8178.4748-1.1089 1.18-1.2714 1.556-.135.3123-.1218.4097-.4398.5224a1.2 1.2 0 0 0-.1608-.0727c-.5273-.1984-.5964.0698-1.0292.3922-.3892.2899-.6677.324-.6514.7063a.47.47 0 0 0-.0991-.001c-.0884.0102-.1233.0248-.217-.029-.0936-.0537-.0982-.0913-.134-.1727-.0356-.0815-.1192-.2037-.2868-.2481-.1676-.0445-.373.0405-.3721.073.0008.0326.1384-.0233.2764.0635s.1279.1404.1583.2098c.0304.0695.085.1998.2367.287.1518.087.2915.0682.3668.0594.0575-.0067.0747-.0166.1138.0133.1155.396.3953.3524.88.5347.5273.1984.6884.437 1.1212.1147.317-.2361.2852-.4067.2087-.685.7046-.2947 1.0744-.8538 1.2425-1.2428.1906-.4412.2156-.645.7202-.938s.6939-.214 1.1716-.1608c.4777.053 1.275-.0091 1.9357-.6732s.72-1.462.6644-1.9394-.1355-.6662.155-1.1722.4934-.5319.9337-.7248 1.099-.6448 1.3393-1.5502-.108-1.6251-.3948-2.0108-.4506-.5094-.452-1.093c-.0014-.5834.1623-.7074.4472-1.0945s.6281-1.1086.3834-2.0128c-.2447-.9043-.9051-1.3537-1.3464-1.5443-.4412-.1907-.645-.2154-.938-.72s-.214-.6944-.1608-1.1721c.0531-.4778-.0092-1.2747-.6732-1.9355-.664-.6607-1.462-.7202-1.9394-.6647s-.6662.1359-1.1722-.1546-.5319-.4935-.7247-.9337C16.4346.9792 15.9827.3203 15.0772.0802a2.34 2.34 0 0 0-.642-.0799Zm-1.5345 4.4625c-.687-.0065-1.972.0192-1.9748.0193-.1358 0-.244.1158-.244.2484v.6712h-.9143v-.6712c0-.1326-.108-.2484-.2438-.2484H8.1213c-.1358 0-.2438.1154-.2438.2484v2.9702c0 .133.108.2484.2438.2484h1.4025c.1358 0 .2438-.1158.2438-.2484v-.6709h.9142v.671c0 .1325.1083.2483.2441.2483h.5792v3.5914c-.4026.2024-.6939.5986-.6939 1.0798v5.7268c0 .6803.552 1.232 1.2323 1.232s1.232-.5516 1.232-1.232V12.62c0-.4812-.291-.8773-.6937-1.0798V7.9488h.6871l.0374-.0331c.1107-.0975.1471-.2183.2645-.3693.1157-.149.2928-.3217.5942-.4764.8356-.2838 1.41-.0753 1.7927.1799.1921.128.3333.2688.4282.3681.0474.0497.079.0862.1155.1178.0091.008.0188.0166.0343.0258.0156.0092.0384.0257.09.0204.0518-.0053.1056-.0605.1168-.0932.011-.0327.0083-.0502.0074-.0654-.0145-.2232-.1293-1.6807-1.7149-2.5186l-.003-.002-.0032-.0022c-.337-.1515-.703-.301-1.0128-.4152a7.3 7.3 0 0 0-.4132-.1405c-.108-.0323-.1884-.0508-.2622-.0577-.0061-.0014-.0171-.0064-.0224-.0074a.5.5 0 0 0-.0365-.0054c-.026-.0026-.057-.0037-.094-.0054a9 9 0 0 0-.2858-.0065z" }) + ] + } + ); +}); + +exports.default = SiSetuptools; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.d.ts new file mode 100644 index 000000000..874dfba12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#336790"; +declare const SiSetuptools: IconType; +export { SiSetuptools as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.mjs new file mode 100644 index 000000000..8f99911a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSetuptools.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#336790"; +const SiSetuptools = React.forwardRef(function SiSetuptools2({ title = "Setuptools", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.4352 0c-.6025.01-1.0795.2596-1.3688.4747-.3857.2867-.5094.4508-1.0929.4523-.5834.0014-.7074-.1624-1.0946-.4472S9.7704-.1487 8.8662.096s-1.3537.9052-1.5444 1.3464c-.1906.4412-.2156.6453-.7202.9383s-.6942.2137-1.1719.1605c-.4777-.053-1.2747.0094-1.9354.6735s-.7202 1.4617-.6647 1.9391.1358.6665-.1546 1.1725-.4935.5316-.9338.7245c-.4403.1928-1.0994.645-1.3396 1.5505s.108 1.625.3948 2.0108c.2868.3857.4509.5094.4523 1.0929s-.1623.7072-.4472 1.0943-.6281 1.1086-.3834 2.0128.9048 1.354 1.346 1.5446c.4413.1907.6453.2156.9383.7202s.2137.6937.1606 1.1713.0094 1.275.6735 1.9358c.664.6607 1.4616.7187 1.939.6632s.6666-.1341 1.1726.1564.5316.4934.7244.9337.6451 1.099 1.5506 1.3393 2.0157-.2187 2.0108-.3948c-.005-.176-.7486.1269-1.494-.3421s-.6917-.7586-.8561-1.1337-.4583-1.0795-1.2784-1.5503c-.82-.4707-1.5762-.3687-1.983-.3214s-.434.1297-.8539-.288c-.4198-.4178-.3361-.4446-.2908-.8516.0452-.4071.1426-1.163-.3323-1.9808s-1.18-1.1086-1.5559-1.271c-.376-.1625-.4403-.1032-.595-.675-.1547-.5716-.0708-.5553.1719-.8852.2427-.33.7064-.9352.704-1.8808-.0023-.9456-.469-1.5504-.7134-1.8791-.2443-.3287-.3291-.3105-.1772-.883.1518-.5725.2173-.5134.5924-.6778s1.0795-.4583 1.5503-1.2784c.4708-.82.3687-1.5762.3215-1.983s-.1295-.434.2883-.8539.4442-.3378.8513-.2925c.407.0452 1.163.1443 1.9807-.3305.8178-.4749 1.1072-1.18 1.2697-1.556.1624-.376.1048-.4403.6765-.595s.5551-.0708.885.172c.33.2427.9353.7063 1.8809.704s1.5487-.4688 1.8773-.7131c.3287-.2444.3109-.3295.8834-.1776s.5148.2173.679.5925c.1644.3751.4587 1.0795 1.2788 1.5502s1.5759.369 1.9827.3218.434-.1298.8539.288.3364.4443.2911.8513-.1429 1.163.332 1.9808 1.18 1.1071 1.5559 1.2696.4406.1048.5953.6766.0705.555-.1722.885-.7064.9352-.704 1.8808.469 1.5487.7134 1.8774c.2443.3287.3291.3108.1772.8833-.1518.5725-.2173.515-.5924.6794s-1.0795.4583-1.5503 1.2784-.3687 1.5759-.3215 1.9828.1298.434-.288.8538-.4445.3364-.8516.2912c-.407-.0453-1.163-.1427-1.9807.3322-.8178.4748-1.1089 1.18-1.2714 1.556-.135.3123-.1218.4097-.4398.5224a1.2 1.2 0 0 0-.1608-.0727c-.5273-.1984-.5964.0698-1.0292.3922-.3892.2899-.6677.324-.6514.7063a.47.47 0 0 0-.0991-.001c-.0884.0102-.1233.0248-.217-.029-.0936-.0537-.0982-.0913-.134-.1727-.0356-.0815-.1192-.2037-.2868-.2481-.1676-.0445-.373.0405-.3721.073.0008.0326.1384-.0233.2764.0635s.1279.1404.1583.2098c.0304.0695.085.1998.2367.287.1518.087.2915.0682.3668.0594.0575-.0067.0747-.0166.1138.0133.1155.396.3953.3524.88.5347.5273.1984.6884.437 1.1212.1147.317-.2361.2852-.4067.2087-.685.7046-.2947 1.0744-.8538 1.2425-1.2428.1906-.4412.2156-.645.7202-.938s.6939-.214 1.1716-.1608c.4777.053 1.275-.0091 1.9357-.6732s.72-1.462.6644-1.9394-.1355-.6662.155-1.1722.4934-.5319.9337-.7248 1.099-.6448 1.3393-1.5502-.108-1.6251-.3948-2.0108-.4506-.5094-.452-1.093c-.0014-.5834.1623-.7074.4472-1.0945s.6281-1.1086.3834-2.0128c-.2447-.9043-.9051-1.3537-1.3464-1.5443-.4412-.1907-.645-.2154-.938-.72s-.214-.6944-.1608-1.1721c.0531-.4778-.0092-1.2747-.6732-1.9355-.664-.6607-1.462-.7202-1.9394-.6647s-.6662.1359-1.1722-.1546-.5319-.4935-.7247-.9337C16.4346.9792 15.9827.3203 15.0772.0802a2.34 2.34 0 0 0-.642-.0799Zm-1.5345 4.4625c-.687-.0065-1.972.0192-1.9748.0193-.1358 0-.244.1158-.244.2484v.6712h-.9143v-.6712c0-.1326-.108-.2484-.2438-.2484H8.1213c-.1358 0-.2438.1154-.2438.2484v2.9702c0 .133.108.2484.2438.2484h1.4025c.1358 0 .2438-.1158.2438-.2484v-.6709h.9142v.671c0 .1325.1083.2483.2441.2483h.5792v3.5914c-.4026.2024-.6939.5986-.6939 1.0798v5.7268c0 .6803.552 1.232 1.2323 1.232s1.232-.5516 1.232-1.232V12.62c0-.4812-.291-.8773-.6937-1.0798V7.9488h.6871l.0374-.0331c.1107-.0975.1471-.2183.2645-.3693.1157-.149.2928-.3217.5942-.4764.8356-.2838 1.41-.0753 1.7927.1799.1921.128.3333.2688.4282.3681.0474.0497.079.0862.1155.1178.0091.008.0188.0166.0343.0258.0156.0092.0384.0257.09.0204.0518-.0053.1056-.0605.1168-.0932.011-.0327.0083-.0502.0074-.0654-.0145-.2232-.1293-1.6807-1.7149-2.5186l-.003-.002-.0032-.0022c-.337-.1515-.703-.301-1.0128-.4152a7.3 7.3 0 0 0-.4132-.1405c-.108-.0323-.1884-.0508-.2622-.0577-.0061-.0014-.0171-.0064-.0224-.0074a.5.5 0 0 0-.0365-.0054c-.026-.0026-.057-.0037-.094-.0054a9 9 0 0 0-.2858-.0065z" }) + ] + } + ); +}); + +export { SiSetuptools as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.cjs new file mode 100644 index 000000000..ba68318e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8CC445"; +const SiSfml = React__namespace.forwardRef(function SiSfml2({ title = "SFML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.187.3336C11.1144.312 9.8776.863 7.9587 2.241L3.162 5.7258C.252 7.8401-.839 8.5272.6917 13.3288l1.8322 5.639c1.1115 3.4208 1.4278 4.6711 6.4675 4.6991H14.92c3.5969 0 4.884.085 6.4678-4.6991l1.8319-5.639c1.1115-3.421 1.5903-4.618-2.4703-7.603L15.953 2.241h-.0004C14.4069 1.1178 13.4026.358 12.187.3336zm-.1624 1.8837c.0652.0015.1303.0048.1953.01 1.0784.0831 1.6791.6384 2.3401 1.1186l.0193.0193-2.128 8.1684h-.9257L9.404 3.3652c.0067-.006.0118-.0137.0192-.0193.7741-.5944 1.5245-1.0708 2.4109-1.125l.1905-.0036zM16.128 4.489h.0008l.0896.0643 3.8771 2.8158c.9207.632 1.6776 1.2778 1.9282 2.3144.2542 1.0514-.0947 1.7946-.3472 2.5716l-2.1082 6.506c-.3166 1.0708-.699 1.9873-1.6073 2.5459-.9213.5666-1.7352.4693-2.5523.4693H8.568c-1.117.03-2.1064-.0413-2.9187-.7329-.8236-.7012-.982-1.5052-1.2344-2.2823l-2.1151-6.506c-.3745-1.0545-.6065-2.021-.1993-3.0087.4123-1 1.1262-1.397 1.7872-1.8773l3.8767-2.8158.0835-.0579.8358 3.208-.2121.1543-2.771 2.0058c-.5628.409-.667.5092-.7135.5465.012.0598.0363.2851.2379.8486l2.1279 6.5446c.1988.6723.2754.8034.2958.855.0652.0084.2856.0495.8743.0322h6.8853c.6295 0 .8264-.0174.8997-.0193.0264-.0569.1413-.252.3086-.8229l2.1281-6.551c.194-.5974.2404-.804.2571-.8615-.048-.0451-.2023-.2149-.6879-.5464l-2.803-2.0316-.2186-.1607.8358-3.208h-.0001z" }) + ] + } + ); +}); + +exports.default = SiSfml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.d.ts new file mode 100644 index 000000000..b7d747502 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8CC445"; +declare const SiSfml: IconType; +export { SiSfml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.mjs new file mode 100644 index 000000000..e4e4cfdc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSfml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8CC445"; +const SiSfml = React.forwardRef(function SiSfml2({ title = "SFML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.187.3336C11.1144.312 9.8776.863 7.9587 2.241L3.162 5.7258C.252 7.8401-.839 8.5272.6917 13.3288l1.8322 5.639c1.1115 3.4208 1.4278 4.6711 6.4675 4.6991H14.92c3.5969 0 4.884.085 6.4678-4.6991l1.8319-5.639c1.1115-3.421 1.5903-4.618-2.4703-7.603L15.953 2.241h-.0004C14.4069 1.1178 13.4026.358 12.187.3336zm-.1624 1.8837c.0652.0015.1303.0048.1953.01 1.0784.0831 1.6791.6384 2.3401 1.1186l.0193.0193-2.128 8.1684h-.9257L9.404 3.3652c.0067-.006.0118-.0137.0192-.0193.7741-.5944 1.5245-1.0708 2.4109-1.125l.1905-.0036zM16.128 4.489h.0008l.0896.0643 3.8771 2.8158c.9207.632 1.6776 1.2778 1.9282 2.3144.2542 1.0514-.0947 1.7946-.3472 2.5716l-2.1082 6.506c-.3166 1.0708-.699 1.9873-1.6073 2.5459-.9213.5666-1.7352.4693-2.5523.4693H8.568c-1.117.03-2.1064-.0413-2.9187-.7329-.8236-.7012-.982-1.5052-1.2344-2.2823l-2.1151-6.506c-.3745-1.0545-.6065-2.021-.1993-3.0087.4123-1 1.1262-1.397 1.7872-1.8773l3.8767-2.8158.0835-.0579.8358 3.208-.2121.1543-2.771 2.0058c-.5628.409-.667.5092-.7135.5465.012.0598.0363.2851.2379.8486l2.1279 6.5446c.1988.6723.2754.8034.2958.855.0652.0084.2856.0495.8743.0322h6.8853c.6295 0 .8264-.0174.8997-.0193.0264-.0569.1413-.252.3086-.8229l2.1281-6.551c.194-.5974.2404-.804.2571-.8615-.048-.0451-.2023-.2149-.6879-.5464l-2.803-2.0316-.2186-.1607.8358-3.208h-.0001z" }) + ] + } + ); +}); + +export { SiSfml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.cjs new file mode 100644 index 000000000..c7647387f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiShadcnui = React__namespace.forwardRef(function SiShadcnui2({ title = "shadcn/ui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.219 11.784 11.784 22.219c-.407.407-.407 1.068 0 1.476.407.407 1.068.407 1.476 0L23.695 13.26c.407-.408.407-1.069 0-1.476-.408-.407-1.069-.407-1.476 0ZM20.132.305.305 20.132c-.407.407-.407 1.068 0 1.476.408.407 1.069.407 1.476 0L21.608 1.781c.407-.407.407-1.068 0-1.476-.408-.407-1.069-.407-1.476 0Z" }) + ] + } + ); +}); + +exports.default = SiShadcnui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.d.ts new file mode 100644 index 000000000..f19a8f39f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiShadcnui: IconType; +export { SiShadcnui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.mjs new file mode 100644 index 000000000..0ef13f536 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShadcnui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiShadcnui = React.forwardRef(function SiShadcnui2({ title = "shadcn/ui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.219 11.784 11.784 22.219c-.407.407-.407 1.068 0 1.476.407.407 1.068.407 1.476 0L23.695 13.26c.407-.408.407-1.069 0-1.476-.408-.407-1.069-.407-1.476 0ZM20.132.305.305 20.132c-.407.407-.407 1.068 0 1.476.408.407 1.069.407 1.476 0L21.608 1.781c.407-.407.407-1.068 0-1.476-.408-.407-1.069-.407-1.476 0Z" }) + ] + } + ); +}); + +export { SiShadcnui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.cjs new file mode 100644 index 000000000..a3782221d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0C0D"; +const SiShadow = React__namespace.forwardRef(function SiShadow2({ title = "Shadow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3727 0 0 5.3727 0 12c0 3.5145 1.511 6.6754 3.9181 8.8702a4.457 4.457 0 01-.1998-1.3238c0-2.4597 1.9938-4.4535 4.4536-4.4535 2.4596 0 4.4535 1.9938 4.4535 4.4535 0 1.9565-1.262 3.6171-3.016 4.2153C10.382 23.9178 11.1815 24 12 24c6.6273 0 12-5.3727 12-12S18.6273 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiShadow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.d.ts new file mode 100644 index 000000000..b5a17e374 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0C0D"; +declare const SiShadow: IconType; +export { SiShadow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.mjs new file mode 100644 index 000000000..823712ad7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShadow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0C0D"; +const SiShadow = React.forwardRef(function SiShadow2({ title = "Shadow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3727 0 0 5.3727 0 12c0 3.5145 1.511 6.6754 3.9181 8.8702a4.457 4.457 0 01-.1998-1.3238c0-2.4597 1.9938-4.4535 4.4536-4.4535 2.4596 0 4.4535 1.9938 4.4535 4.4535 0 1.9565-1.262 3.6171-3.016 4.2153C10.382 23.9178 11.1815 24 12 24c6.6273 0 12-5.3727 12-12S18.6273 0 12 0Z" }) + ] + } + ); +}); + +export { SiShadow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.cjs new file mode 100644 index 000000000..de2b5a7f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC1C24"; +const SiShanghaimetro = React__namespace.forwardRef(function SiShanghaimetro2({ title = "Shanghai Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.383 11.664h-1.716l-3.432-4.487-3.073 3.606L9.31 7.177l-3.513 4.487H3.63c.185-4.464 3.872-8.047 8.383-8.047 3.953 0 7.27 2.748 8.15 6.424h3.687C22.91 4.359 17.96.01 12 .01c-6.632 0-12 5.369-12 12 0 1.102.15 2.169.429 3.177h6.516l2.412-2.55 2.805 3.478 2.945-3.502 1.902 2.61h2.69c-1.287 2.967-4.256 5.495-7.699 5.495-2.84 0-5.357-1.681-6.875-3.942H.997C2.852 21.02 7.072 23.988 12 23.988c6.632 0 12-5.368 12-12 0-.116 0-.231-.012-.347l-3.605.023Z" }) + ] + } + ); +}); + +exports.default = SiShanghaimetro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.d.ts new file mode 100644 index 000000000..65247fe1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC1C24"; +declare const SiShanghaimetro: IconType; +export { SiShanghaimetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.mjs new file mode 100644 index 000000000..b681b595c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShanghaimetro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC1C24"; +const SiShanghaimetro = React.forwardRef(function SiShanghaimetro2({ title = "Shanghai Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.383 11.664h-1.716l-3.432-4.487-3.073 3.606L9.31 7.177l-3.513 4.487H3.63c.185-4.464 3.872-8.047 8.383-8.047 3.953 0 7.27 2.748 8.15 6.424h3.687C22.91 4.359 17.96.01 12 .01c-6.632 0-12 5.369-12 12 0 1.102.15 2.169.429 3.177h6.516l2.412-2.55 2.805 3.478 2.945-3.502 1.902 2.61h2.69c-1.287 2.967-4.256 5.495-7.699 5.495-2.84 0-5.357-1.681-6.875-3.942H.997C2.852 21.02 7.072 23.988 12 23.988c6.632 0 12-5.368 12-12 0-.116 0-.231-.012-.347l-3.605.023Z" }) + ] + } + ); +}); + +export { SiShanghaimetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.cjs new file mode 100644 index 000000000..aa35bd46f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2885F1"; +const SiSharex = React__namespace.forwardRef(function SiSharex2({ title = "ShareX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.217 15.774v.054c.083 3.469 2.543 6.416 5.99 7.607h-.002c1.095.377 2.246.568 3.404.565 5.159 0 9.347-3.697 9.389-8.275a7.49 7.49 0 0 0-.563-2.668c-1.19 3.446-4.138 5.906-7.607 5.987h-.176c-2.01 0-3.854-.8-5.294-2.13-1.656-1.53-2.78-3.765-3.01-6.295-1.3 1.407-2.093 3.2-2.13 5.155Zm3.01-10.557H8.17c-3.36.08-6.23 2.39-7.49 5.669l-.117.32A10.408 10.408 0 0 0 0 14.608c0 5.159 3.697 9.347 8.275 9.389a7.49 7.49 0 0 0 2.668-.563c-3.446-1.19-5.906-4.138-5.987-7.607v-.176c0-2.01.8-3.854 2.13-5.296 1.53-1.656 3.765-2.78 6.296-3.01-1.407-1.3-3.2-2.093-5.155-2.129Zm7.601 13.566.324-.015c3.327-.223 6.129-2.636 7.283-5.974A10.36 10.36 0 0 0 24 9.392c0-5.16-3.697-9.347-8.275-9.39a7.49 7.49 0 0 0-2.668.563c3.446 1.19 5.906 4.14 5.987 7.607v.176c0 2.01-.8 3.854-2.13 5.294-1.53 1.656-3.765 2.78-6.295 3.01 1.407 1.3 3.2 2.094 5.155 2.13zM.002 8.275a7.49 7.49 0 0 0 .563 2.668c1.19-3.446 4.14-5.906 7.607-5.987h.176c2.01 0 3.854.8 5.294 2.13.334.31.643.643.925.999 1.146 1.436 1.9 3.27 2.085 5.297 1.3-1.407 2.094-3.2 2.13-5.155V8.17C18.7 4.703 16.24 1.756 12.795.564A10.408 10.408 0 0 0 9.393 0C4.23 0 .045 3.697.002 8.275Z" }) + ] + } + ); +}); + +exports.default = SiSharex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.d.ts new file mode 100644 index 000000000..b419aa41f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2885F1"; +declare const SiSharex: IconType; +export { SiSharex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.mjs new file mode 100644 index 000000000..464643bf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSharex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2885F1"; +const SiSharex = React.forwardRef(function SiSharex2({ title = "ShareX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.217 15.774v.054c.083 3.469 2.543 6.416 5.99 7.607h-.002c1.095.377 2.246.568 3.404.565 5.159 0 9.347-3.697 9.389-8.275a7.49 7.49 0 0 0-.563-2.668c-1.19 3.446-4.138 5.906-7.607 5.987h-.176c-2.01 0-3.854-.8-5.294-2.13-1.656-1.53-2.78-3.765-3.01-6.295-1.3 1.407-2.093 3.2-2.13 5.155Zm3.01-10.557H8.17c-3.36.08-6.23 2.39-7.49 5.669l-.117.32A10.408 10.408 0 0 0 0 14.608c0 5.159 3.697 9.347 8.275 9.389a7.49 7.49 0 0 0 2.668-.563c-3.446-1.19-5.906-4.138-5.987-7.607v-.176c0-2.01.8-3.854 2.13-5.296 1.53-1.656 3.765-2.78 6.296-3.01-1.407-1.3-3.2-2.093-5.155-2.129Zm7.601 13.566.324-.015c3.327-.223 6.129-2.636 7.283-5.974A10.36 10.36 0 0 0 24 9.392c0-5.16-3.697-9.347-8.275-9.39a7.49 7.49 0 0 0-2.668.563c3.446 1.19 5.906 4.14 5.987 7.607v.176c0 2.01-.8 3.854-2.13 5.294-1.53 1.656-3.765 2.78-6.295 3.01 1.407 1.3 3.2 2.094 5.155 2.13zM.002 8.275a7.49 7.49 0 0 0 .563 2.668c1.19-3.446 4.14-5.906 7.607-5.987h.176c2.01 0 3.854.8 5.294 2.13.334.31.643.643.925.999 1.146 1.436 1.9 3.27 2.085 5.297 1.3-1.407 2.094-3.2 2.13-5.155V8.17C18.7 4.703 16.24 1.756 12.795.564A10.408 10.408 0 0 0 9.393 0C4.23 0 .045 3.697.002 8.275Z" }) + ] + } + ); +}); + +export { SiSharex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.cjs new file mode 100644 index 000000000..f58180ff0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#99CC00"; +const SiSharp = React__namespace.forwardRef(function SiSharp2({ title = "sharp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.2209.0875v5.9613l-3.7433.5012v3.5233l3.7433-.5012v3.5735l3.492-.4672V9.1047L24 8.2634l-.4631-3.4613-5.824.7794V.0875zM6.287 1.145v5.9618L0 7.9483l.4634 3.4613 5.8514-.7834 3.4644-.4637V1.145zm3.5198 9.7185l-3.492.4675v3.578l-6.183.8276.4633 3.4613 5.8239-.7796v5.4942h3.492v-5.962l3.6114-.4834V13.944l-3.7156.4973zm13.73 1.7405l-5.824.779-3.492.4673v9.0179h3.492v-5.9618L24 16.0652Z" }) + ] + } + ); +}); + +exports.default = SiSharp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.d.ts new file mode 100644 index 000000000..84cb60eb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#99CC00"; +declare const SiSharp: IconType; +export { SiSharp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.mjs new file mode 100644 index 000000000..d766042c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSharp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#99CC00"; +const SiSharp = React.forwardRef(function SiSharp2({ title = "sharp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.2209.0875v5.9613l-3.7433.5012v3.5233l3.7433-.5012v3.5735l3.492-.4672V9.1047L24 8.2634l-.4631-3.4613-5.824.7794V.0875zM6.287 1.145v5.9618L0 7.9483l.4634 3.4613 5.8514-.7834 3.4644-.4637V1.145zm3.5198 9.7185l-3.492.4675v3.578l-6.183.8276.4633 3.4613 5.8239-.7796v5.4942h3.492v-5.962l3.6114-.4834V13.944l-3.7156.4973zm13.73 1.7405l-5.824.779-3.492.4673v9.0179h3.492v-5.9618L24 16.0652Z" }) + ] + } + ); +}); + +export { SiSharp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.cjs new file mode 100644 index 000000000..ca4784dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0088FF"; +const SiShazam = React__namespace.forwardRef(function SiShazam2({ title = "Shazam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0-.001 5.371-.001 12c0 6.625 5.374 12 12.001 12s12-5.375 12-12c0-6.629-5.373-12-12-12M9.872 16.736c-1.287 0-2.573-.426-3.561-1.281-1.214-1.049-1.934-2.479-2.029-4.024-.09-1.499.42-2.944 1.436-4.067C6.86 6.101 8.907 4.139 8.993 4.055c.555-.532 1.435-.511 1.966.045.53.557.512 1.439-.044 1.971-.021.02-2.061 1.976-3.137 3.164-.508.564-.764 1.283-.719 2.027.049.789.428 1.529 1.07 2.086.844.73 2.51.891 3.553-.043.619-.559 1.372-1.377 1.38-1.386.52-.567 1.4-.603 1.965-.081.565.52.603 1.402.083 1.969-.035.035-.852.924-1.572 1.572-1.005.902-2.336 1.357-3.666 1.357m8.41-.099c-1.143 1.262-3.189 3.225-3.276 3.309-.27.256-.615.385-.96.385-.368 0-.732-.145-1.006-.43-.531-.559-.512-1.439.044-1.971.021-.02 2.063-1.977 3.137-3.166.508-.563.764-1.283.719-2.027-.048-.789-.428-1.529-1.07-2.084-.844-.73-2.51-.893-3.552.044-.621.556-1.373 1.376-1.38 1.384-.521.566-1.399.604-1.966.084-.564-.521-.604-1.404-.082-1.971.034-.037.85-.926 1.571-1.573 1.979-1.778 5.221-1.813 7.227-.077 1.214 1.051 1.935 2.48 2.028 4.025.092 1.497-.419 2.945-1.434 4.068" }) + ] + } + ); +}); + +exports.default = SiShazam; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.d.ts new file mode 100644 index 000000000..827b29d0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0088FF"; +declare const SiShazam: IconType; +export { SiShazam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.mjs new file mode 100644 index 000000000..ce1c9c129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShazam.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0088FF"; +const SiShazam = React.forwardRef(function SiShazam2({ title = "Shazam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0-.001 5.371-.001 12c0 6.625 5.374 12 12.001 12s12-5.375 12-12c0-6.629-5.373-12-12-12M9.872 16.736c-1.287 0-2.573-.426-3.561-1.281-1.214-1.049-1.934-2.479-2.029-4.024-.09-1.499.42-2.944 1.436-4.067C6.86 6.101 8.907 4.139 8.993 4.055c.555-.532 1.435-.511 1.966.045.53.557.512 1.439-.044 1.971-.021.02-2.061 1.976-3.137 3.164-.508.564-.764 1.283-.719 2.027.049.789.428 1.529 1.07 2.086.844.73 2.51.891 3.553-.043.619-.559 1.372-1.377 1.38-1.386.52-.567 1.4-.603 1.965-.081.565.52.603 1.402.083 1.969-.035.035-.852.924-1.572 1.572-1.005.902-2.336 1.357-3.666 1.357m8.41-.099c-1.143 1.262-3.189 3.225-3.276 3.309-.27.256-.615.385-.96.385-.368 0-.732-.145-1.006-.43-.531-.559-.512-1.439.044-1.971.021-.02 2.063-1.977 3.137-3.166.508-.563.764-1.283.719-2.027-.048-.789-.428-1.529-1.07-2.084-.844-.73-2.51-.893-3.552.044-.621.556-1.373 1.376-1.38 1.384-.521.566-1.399.604-1.966.084-.564-.521-.604-1.404-.082-1.971.034-.037.85-.926 1.571-1.573 1.979-1.778 5.221-1.813 7.227-.077 1.214 1.051 1.935 2.48 2.028 4.025.092 1.497-.419 2.945-1.434 4.068" }) + ] + } + ); +}); + +export { SiShazam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShell.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShell.cjs new file mode 100644 index 000000000..810d9b15b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShell.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD500"; +const SiShell = React__namespace.forwardRef(function SiShell2({ title = "Shell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .863C5.34.863 0 6.251 0 12.98c0 .996.038 1.374.246 2.33l3.662 2.71.57 4.515h6.102l.326.227c.377.262.705.375 1.082.375.352 0 .732-.101 1.024-.313l.39-.289h6.094l.563-4.515 3.695-2.71c.208-.956.246-1.334.246-2.33C24 6.252 18.661.863 12 .863zm.996 2.258c.9 0 1.778.224 2.512.649l-2.465 12.548 3.42-12.062c1.059.36 1.863.941 2.508 1.814l.025.034-4.902 10.615 5.572-9.713.033.03c.758.708 1.247 1.567 1.492 2.648l-6.195 7.666 6.436-6.5.01.021c.253.563.417 1.36.417 1.996 0 .509-.024.712-.164 1.25l-3.554 2.602-.467 3.71h-4.475l-.517.395c-.199.158-.482.266-.682.266-.199 0-.483-.108-.682-.266l-.517-.394H6.322l-.445-3.61-3.627-2.666c-.11-.436-.16-.83-.16-1.261 0-.72.159-1.49.426-2.053l.013-.024 6.45 6.551L2.75 9.621c.25-1.063.874-2.09 1.64-2.713l5.542 9.776L4.979 6.1c.555-.814 1.45-1.455 2.546-1.827l3.424 12.069L8.355 3.816l.055-.03c.814-.45 1.598-.657 2.457-.657.195 0 .286.004.528.03l.587 13.05.46-13.059c.224-.025.309-.029.554-.029z" }) + ] + } + ); +}); + +exports.default = SiShell; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShell.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShell.d.ts new file mode 100644 index 000000000..4a34df22f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShell.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD500"; +declare const SiShell: IconType; +export { SiShell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShell.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShell.mjs new file mode 100644 index 000000000..8099fec01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShell.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD500"; +const SiShell = React.forwardRef(function SiShell2({ title = "Shell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .863C5.34.863 0 6.251 0 12.98c0 .996.038 1.374.246 2.33l3.662 2.71.57 4.515h6.102l.326.227c.377.262.705.375 1.082.375.352 0 .732-.101 1.024-.313l.39-.289h6.094l.563-4.515 3.695-2.71c.208-.956.246-1.334.246-2.33C24 6.252 18.661.863 12 .863zm.996 2.258c.9 0 1.778.224 2.512.649l-2.465 12.548 3.42-12.062c1.059.36 1.863.941 2.508 1.814l.025.034-4.902 10.615 5.572-9.713.033.03c.758.708 1.247 1.567 1.492 2.648l-6.195 7.666 6.436-6.5.01.021c.253.563.417 1.36.417 1.996 0 .509-.024.712-.164 1.25l-3.554 2.602-.467 3.71h-4.475l-.517.395c-.199.158-.482.266-.682.266-.199 0-.483-.108-.682-.266l-.517-.394H6.322l-.445-3.61-3.627-2.666c-.11-.436-.16-.83-.16-1.261 0-.72.159-1.49.426-2.053l.013-.024 6.45 6.551L2.75 9.621c.25-1.063.874-2.09 1.64-2.713l5.542 9.776L4.979 6.1c.555-.814 1.45-1.455 2.546-1.827l3.424 12.069L8.355 3.816l.055-.03c.814-.45 1.598-.657 2.457-.657.195 0 .286.004.528.03l.587 13.05.46-13.059c.224-.025.309-.029.554-.029z" }) + ] + } + ); +}); + +export { SiShell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.cjs new file mode 100644 index 000000000..014e187ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4495D1"; +const SiShelly = React__namespace.forwardRef(function SiShelly2({ title = "Shelly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 .033.88c1.07-.443 2.495-.679 4.322-.679h5.762c-.167.61-.548 1.087-1.142 1.436-.532.308-1.14.463-1.823.463h-.927c-.89 0-1.663.154-2.32.463-.859.403-1.286 1-1.286 1.789 0 .893.59 1.594 1.774 2.1a7.423 7.423 0 0 0 2.927.581c1.318 0 2.416-.29 3.297-.867 1.024-.664 1.535-1.616 1.535-2.857 0-.854-.325-2.08-.976-3.676-.65-1.597-.975-2.837-.975-3.723 0-2.79 2.305-4.233 6.916-4.324.641-.01 1.337-.005 1.916-.004.593 0 1.144.05 1.66.147A12 12 0 0 0 12 0zm4.758 5.691c-1.206 0-1.809.502-1.809 1.506 0 .514.356 1.665 1.067 3.451.71 1.787 1.064 3.186 1.064 4.198 0 2.166-1.202 3.791-3.607 4.875-1.794.797-3.892 1.197-6.297 1.197-1.268 0-2.442-.114-3.543-.316A12 12 0 0 0 12 24c6.627 0 12-5.373 12-12a12 12 0 0 0-.781-4.256 3.404 3.404 0 0 1-.832.77h-4.371l1.425-2.828a299.94 299.94 0 0 0-2.683.005Z" }) + ] + } + ); +}); + +exports.default = SiShelly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.d.ts new file mode 100644 index 000000000..0ceb88062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4495D1"; +declare const SiShelly: IconType; +export { SiShelly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.mjs new file mode 100644 index 000000000..835da3a05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShelly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4495D1"; +const SiShelly = React.forwardRef(function SiShelly2({ title = "Shelly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 .033.88c1.07-.443 2.495-.679 4.322-.679h5.762c-.167.61-.548 1.087-1.142 1.436-.532.308-1.14.463-1.823.463h-.927c-.89 0-1.663.154-2.32.463-.859.403-1.286 1-1.286 1.789 0 .893.59 1.594 1.774 2.1a7.423 7.423 0 0 0 2.927.581c1.318 0 2.416-.29 3.297-.867 1.024-.664 1.535-1.616 1.535-2.857 0-.854-.325-2.08-.976-3.676-.65-1.597-.975-2.837-.975-3.723 0-2.79 2.305-4.233 6.916-4.324.641-.01 1.337-.005 1.916-.004.593 0 1.144.05 1.66.147A12 12 0 0 0 12 0zm4.758 5.691c-1.206 0-1.809.502-1.809 1.506 0 .514.356 1.665 1.067 3.451.71 1.787 1.064 3.186 1.064 4.198 0 2.166-1.202 3.791-3.607 4.875-1.794.797-3.892 1.197-6.297 1.197-1.268 0-2.442-.114-3.543-.316A12 12 0 0 0 12 24c6.627 0 12-5.373 12-12a12 12 0 0 0-.781-4.256 3.404 3.404 0 0 1-.832.77h-4.371l1.425-2.828a299.94 299.94 0 0 0-2.683.005Z" }) + ] + } + ); +}); + +export { SiShelly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.cjs new file mode 100644 index 000000000..ccd67e638 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009943"; +const SiShenzhenmetro = React__namespace.forwardRef(function SiShenzhenmetro2({ title = "Shenzhen Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.27 0v.155c0 4.69 3.033 8.751 7.331 10.434v2.736C3.303 14.99.271 19.019.271 23.768V24H4.36v-.232c0-2.459 1.278-4.623 3.24-5.934V24h3.165v-7.384c.408-.065.82-.098 1.234-.1.423 0 .834.038 1.235.1V24h3.165v-6.148c1.925 1.313 3.163 3.469 3.163 5.916V24h4.168v-.232c0-4.691-3.033-8.751-7.331-10.434V10.6c4.298-1.665 7.33-5.696 7.33-10.446V.001h-4.09v.154c0 2.458-1.277 4.622-3.24 5.934V0h-3.165v7.305c-.408.066-.821.1-1.235.103a8.11 8.11 0 0 1-1.234-.103V.001H7.6V6.07C5.675 4.757 4.438 2.602 4.438.154V.001zm10.495 11.358c.82.084 1.648.084 2.469.001v1.205a12.236 12.236 0 0 0-2.47 0z" }) + ] + } + ); +}); + +exports.default = SiShenzhenmetro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.d.ts new file mode 100644 index 000000000..489a07ca9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009943"; +declare const SiShenzhenmetro: IconType; +export { SiShenzhenmetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.mjs new file mode 100644 index 000000000..f0e413c33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShenzhenmetro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009943"; +const SiShenzhenmetro = React.forwardRef(function SiShenzhenmetro2({ title = "Shenzhen Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.27 0v.155c0 4.69 3.033 8.751 7.331 10.434v2.736C3.303 14.99.271 19.019.271 23.768V24H4.36v-.232c0-2.459 1.278-4.623 3.24-5.934V24h3.165v-7.384c.408-.065.82-.098 1.234-.1.423 0 .834.038 1.235.1V24h3.165v-6.148c1.925 1.313 3.163 3.469 3.163 5.916V24h4.168v-.232c0-4.691-3.033-8.751-7.331-10.434V10.6c4.298-1.665 7.33-5.696 7.33-10.446V.001h-4.09v.154c0 2.458-1.277 4.622-3.24 5.934V0h-3.165v7.305c-.408.066-.821.1-1.235.103a8.11 8.11 0 0 1-1.234-.103V.001H7.6V6.07C5.675 4.757 4.438 2.602 4.438.154V.001zm10.495 11.358c.82.084 1.648.084 2.469.001v1.205a12.236 12.236 0 0 0-2.47 0z" }) + ] + } + ); +}); + +export { SiShenzhenmetro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.cjs new file mode 100644 index 000000000..33089434b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiShieldsdotio = React__namespace.forwardRef(function SiShieldsdotio2({ title = "Shields.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 0a5 5 0 0 1 5 5v14a5 5 0 0 1-5 5H5l-.257-.007A5 5 0 0 1 0 19V5a5 5 0 0 1 5-5zm-7 21h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-7z" }) + ] + } + ); +}); + +exports.default = SiShieldsdotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.d.ts new file mode 100644 index 000000000..89d2c0b27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiShieldsdotio: IconType; +export { SiShieldsdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.mjs new file mode 100644 index 000000000..fba04b73d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShieldsdotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiShieldsdotio = React.forwardRef(function SiShieldsdotio2({ title = "Shields.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19 0a5 5 0 0 1 5 5v14a5 5 0 0 1-5 5H5l-.257-.007A5 5 0 0 1 0 19V5a5 5 0 0 1 5-5zm-7 21h7a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-7z" }) + ] + } + ); +}); + +export { SiShieldsdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.cjs new file mode 100644 index 000000000..274eb8b7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#343434"; +const SiShikimori = React__namespace.forwardRef(function SiShikimori2({ title = "Shikimori", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.8025.0025C2.7779.03 2.8332.1223 2.9834.3c.0981.1134.1594.2328.233.4444.0551.1594.1198.3157.1443.3464.0368.049.0396.037.0427-.1102V.8181l.218.3004c.331.4568.5365.6992.6744.7973.0706.046.1136.0919.0952.098-.049.0153-.4785-.2208-.6778-.374-.1012-.0767-.196-.1411-.2114-.1411-.0153 0-.0644-.0461-.1073-.1013-.0399-.0552-.1348-.1408-.2053-.1898-.1717-.1196-.3527-.2913-.3957-.374C2.763.7721 2.668.7323 2.668.7814c0 .049.245.377.435.5793.5825.6224 1.1776.932 2.7688 1.4287.3373.1043.6347.2085.6623.233.0246.0215.0737.0398.1074.0398.0306 0 .0795.0152.104.0305.0399.0245.0367.031-.0093.031-.0368 0-.0521.018-.046.0548.0092.0552.1595.1045.4477.1444.1287.0184.1593.0124.1593-.0244 0-.049-.0889-.083-.2207-.083-.049 0-.0858-.0151-.0858-.0304 0-.0184.031-.025.0708-.0188.0368.0092.1652.0306.2817.052.276.046.353.0768.353.135 0 .0644.0826.092.1377.046.0307-.0276.046-.0274.046-.0028 0 .0183.0151.0337.0304.0337.0184 0 .031-.0214.031-.046 0-.0582-.0309-.0586.4842.0212.3066.046.42.077.374.0923-.098.0368-.0428.0858.0952.0858.0705 0 .1195.0153.1195.0337 0 .0276.0704.0306.2452.0183.1594-.0123.2516-.0093.2639.0122.0122.0184.0643.0275.1195.0183.0521-.0092.1961.0034.3126.0248.3066.0583 1.1313.1044 2.977.1688 2.983.1042 5.157.3277 5.9726.6159.3617.1287.9075.4048 1.0087.509.1594.1686.2082.3066.1898.5334-.0092.1135-.0092.2149 0 .2241.089.089.2855-.0859.2855-.2545 0-.0338.0639-.1165.1467-.187.331-.2913.3803-.454.3436-1.1194-.0246-.4476-.031-.4782-.2302-1.1343-.2606-.8585-.3215-.9903-.6342-1.3214-.3679-.3863-.7023-.6072-1.1592-.7635-.1103-.0368-.3434-.1224-.5212-.1899-.2483-.098-.4262-.141-.788-.1931-.512-.0736-1.6126-.1256-1.956-.0919-.1226.0123-.6132 0-1.1498-.0337-.61-.0337-.984-.046-1.0729-.0277-.0766.0154-.2085.0274-.2944.0305-.1257 0-.1837.0187-.291.0984-.1257.092-.2149.1194-.5644.1777-.5641.092-.929.1653-1.0823.2175-.1196.0429-.3157.0706-.6192.089-.8309.0521-1.3029.0952-1.4071.129-.0706.0214-.3406.0274-.7913.0182-.5488-.0123-.6895-.006-.7171.0277-.0276.0306-.0155.0398.0581.0398.1809 0 1.7968.1258 1.8121.141.0154.0154-.273.003-1.0977-.0491-.2423-.0154-.4567-.0186-.472-.0094-.0583.0368-.4939.0307-.9108-.0122-.515-.0521-1.0115-.138-1.4714-.2545-.2146-.0521-.4662-.0916-.644-.1008-.328-.0153-.6778-.129-1.1714-.3773-.325-.1625-.3614-.1684-.3614-.0366v.1008L3.244.5331c-.0552-.0644-.1224-.1689-.15-.2302-.0552-.1165-.2609-.328-.2915-.3004zm.4584 3.1887c-.5697.0269-1.0938.4707-1.47 1.2628-.2238.4752-.2635.6593-.2789 1.291-.0122.4966-.0063.598.0642 1.0119.1503.8615.19.9625.5058 1.2721.3342.3312 1.1654.785 1.6284.8892.1594.0338.3464.0768.4139.0952.2575.0644.61.0885 1.4868.1008.8431.0153.9136.0125 1.027-.0427.0797-.0398.2486-.0707.4908-.089.2023-.0184.4165-.0459.4748-.0643.0582-.0153.1841-.0309.276-.0309.0951 0 .1903-.0182.2087-.0366.0735-.0735.4228-.1503.757-.1687.187-.0092.3621-.0273.3928-.0427.1011-.0551.052-.0859-.1135-.0675-.095.0092-.187.003-.2207-.0154-.0491-.0307-.034-.0335.0825-.0366.0766 0 .2269-.0093.3342-.0216.1655-.0153.1842-.0248.1382-.0585-.1134-.0828-.0153-.1041.4936-.1041.4568 0 .5886-.0215.4537-.0736-.0275-.0092-.1413-.0216-.2517-.0216-.1134-.003-.1624-.0119-.1134-.015.0521-.006.1628-.0277.2517-.043.0859-.0185.6255-.0399 1.1958-.046.5702-.0061 1.0542-.0124 1.0757-.0155.0276 0 .0338-.0215.0216-.0614-.0123-.043-.0061-.061.0276-.061.0245 0 .083-.049.129-.1073.0919-.1195.1161-.1137.156.0427l.0277.1012.2207.0094c.1748.0061.2333-.003.2916-.046.0398-.0306.1224-.0645.1837-.0768l.1135-.0216-.0183.1782c-.0184.144-.0152.1716.0215.1593.0246-.0092.1222-.0338.2203-.0553l.1749-.0337-.0675-.089c-.043-.0491-.1226-.098-.1931-.1163l-.1224-.031.1838-.006a4.812 4.812 0 0 1 .3004 0c.0644.003.1135-.0089.1135-.0272 0-.0184-.0182-.034-.0366-.037-.0215-.0031-.089-.0064-.1472-.0095-.0582-.006-.1564-.0398-.2147-.0735-.0582-.0368-.1317-.067-.1593-.067-.0307 0-.0553-.0157-.0553-.031 0-.0215.092-.0305.2545-.0244.2483.0092.2514.0091.2606.0919.0123.095.0122.095.0797.0675a.0498.0498 0 0 0 .0305-.0581c-.0184-.049.037-.0893.083-.0586.0183.0092.0918.0215.1593.0276.1655.0092.9718.0737 1.1803.0952.1103.0122.1593.0307.1593.0614 0 .0521.037.0549.083.0089.0245-.0245.1442-.021.4354.0066.3557.0337.4017.0425.4017.0946 0 .0368.0213.0556.0704.0586.0368 0 .1656.0121.2821.0244.1196.0123.2329.0181.2513.009.0214-.0062.0891-.0979.1504-.2021.1196-.1993.2208-.3253.2607-.3253.0153 0 .018.0219.0089.0464-.0123.0245-.003.046.0154.046.0215 0 .0338.0244.0277.052-.0061.0367.0213.0582.0919.0735.1134.0246.1657.0582.089.0582-.0276 0-.0525.0183-.0525.0398 0 .0215.1812.0984.4448.1842.2821.095.4444.1623.4444.1899 0 .0306-.095.0092-.3586-.0797-.6254-.2146-.898-.2606-.898-.1533 0 .046.0488.0676.285.1228.1532.0368.3002.0642.3248.0642.0214 0 .0798.0338.1289.0736.049.043.294.144.5638.233.273.092.5153.19.5644.233.049.0398.1349.0952.1931.1166.1932.0828.4693.3309.6778.6099.3005.4047.2973.3895.1317.3895-.0766 0-.2946-.0214-.4847-.046-.19-.0245-.429-.0461-.53-.0492-.2147-.0061-1.9684.0278-2.6245.0493l-.4449.0154-.0703-.1504c-.0398-.0828-.1533-.2298-.2545-.331-.1747-.1717-.1837-.175-.2236-.1167-.0245.0337-.1168.1626-.2057.2822l-.1622.2236-.1992.0065c-.1104 0-.2242.0031-.2517 0-.0675-.006-.0703.0305-.009.144l.0427.0857-.3126.0216c-.8524.0582-2.661.282-3.268.4078-.135.0276-.4203.049-.6778.052-.46.0061-.5028.0184-.794.187-.0522.0276-.0922.0339-.129.0155-.0337-.0215-.0643-.0154-.0858.0122-.0337.0398-.144.058-.9534.1439-.1778.0184-.475.0584-.665.089-.3312.0552-.3499.0552-.5246 0-.184-.0582-.7572-.135-1.2478-.1687l-.276-.0216-.1622.1472c-.092.0797-.218.2177-.2855.3066-.092.1257-.141.166-.1992.166-.1257 0-1.2448.1743-2.0573.3215-.8768.1594-1.2077.1904-1.4652.1382-.2668-.0551-.2701-.0583-.2578-.3956.0122-.2851.0093-.2941-.0643-.3309-.1686-.0858-.331-.0371-.5517.1622-.052.046-.1133.0675-.1992.0675-.0705-.003-.1993.0306-.3004.0797l-.181.083.009.1593c.006.0858-.0032.1868-.0216.2175-.0245.0368-.0306.1994-.0183.4692.0123.328.003.4476-.0398.607l-.052.1964.1471.2086c.2943.4139.503.7294.503.763 0 .0185.0916.1169.208.218.506.4446.7207.5642 1.2174.6685.5273.1134.6131.1072.9412-.0675.1502-.0828.3251-.1965.3895-.2578.0797-.0736.3067-.1931.742-.3863.6776-.3004.7631-.3342.7631-.2943 0 .0122.043.426.0952.9135.1073 1.024.1411 2.0052.0951 2.7595-.0368.5917-.0644.6743-.4814 1.4591-.6469 1.2172-1.4224 2.3947-2.008 3.0477-.1043.1196-.2636.325-.3525.4599-.1686.2544-.4815.595-.871.9445-.1317.1195-.2177.2206-.2085.2451.0092.0245.1046.0734.2119.1102.1042.0398.2052.083.2236.0984.049.049.1101.0303.337-.0924l.2207-.1223.0891.0614c.1073.0705.3006.0763.4631.015.0644-.0245.1932-.052.2883-.0581.19-.0184.3126-.0703.5118-.2236.0736-.0552.1687-.1073.2147-.1195.089-.0184.8585-.7976 1.2694-1.2881.1287-.1502.4506-.4905.7204-.7542.3771-.374.5457-.5148.7603-.6436.3096-.184.5548-.4076.5854-.5395.0123-.046.052-.1413.0919-.2118.095-.1625.2024-.5792.1748-.6835-.0092-.0429-.0552-.147-.1012-.233-.0797-.141-.0855-.1901-.1008-.5826-.0276-.6898-.138-1.0515-.4875-1.5941-.2023-.3127-.2516-.4231-.3773-.8278-.2085-.696-.2697-1.3493-.1655-1.8613.049-.2545.0735-.2883.279-.4078.1072-.0644.2484-.1656.3159-.227l.1256-.1162.5948-.0675c.328-.0398.6958-.0889.8123-.1134.1196-.0245.3831-.0797.5855-.1195.2054-.043.497-.1164.6473-.1655.1502-.0521.3616-.1137.472-.1383.2146-.049.9472-.1192.9717-.0946.0092.0092.0185.4476.0155.975 0 .8277-.0092 1.0515-.0797 1.6616-.1196 1.0455-.1442 1.3732-.1749 2.526-.0276 1.1466-.0365 1.1986-.2236 1.3335-.1349.0981-.2728.0802-.6806-.1007-.2023-.089-.6286-.264-.9505-.3928-.3189-.1288-.7727-.3277-1.0027-.4411-.233-.1165-.4232-.2028-.4232-.1936 0 .0092.1165.1595.2606.3342.144.1748.2606.325.2606.3342 0 .0092-.0274.0188-.0642.0188-.0552 0-.0584.006-.0155.0642.0276.0398.0369.101.0277.1654-.0123.0828-.0032.1106.058.1505.04.0276.1046.1041.1445.1716.0368.0643.1012.147.141.1776.04.0307.098.1044.1318.1627.0306.0582.1348.1654.233.239.098.0736.193.1687.2113.2086.0184.046.1077.1133.2119.1655.2422.1226.5975.4353.6557.5732.0338.0859.1015.1534.2977.2822.1564.1042.4321.3433.7387.6469.558.5518.5887.5703 1.0425.5427.2943-.0214.4416-.0768.6164-.2362.0705-.0644.1563-.1316.187-.15.0306-.0184.1072-.1072.1655-.1992.0582-.095.147-.1932.193-.2208.1288-.0766.3587-.402.3587-.5062 0-.1533.0582-.251.2606-.441.1778-.1656.2149-.2213.3253-.4941.1717-.417.2326-.6864.2878-1.223.0674-.6622.0616-1.4623-.015-1.962-.1257-.8156-.604-3.0876-.7481-3.5414-.1196-.377-.233-.8676-.233-1.0087 0-.0337.064-.0369.3155-.0215.23.0153.4108.0094.6745-.0305.3127-.046.4202-.049.7514-.0183.2115.0184.3923.0396.3984.0488.0245.0214.4968 1.5575.5765 1.8702.1656.6408.1688.687.2025 2.2996.0153.8431.0304 1.8426.0366 2.2228.0061.6407.0124.7111.089.9932.0981.3587.2054.5919.4261.9108.089.1257.2238.3464.3005.4874.1533.2852.3527.521.6103.7172.3372.2606.6652.4724.8676.5644.2422.1103.4382.2849.6314.5577.0797.1104.1932.2609.2545.3375.0613.0767.1378.1932.1716.2607.0582.1226.0766.1348.4078.233.1532.0459.5762.0548.8123.015.1318-.0216.1812-.052.3928-.2574.285-.276.42-.469.42-.607 0-.2146.0303-.279.156-.3281.0798-.0307.1196-.0673.1196-.1041 0-.1932-.2023-.9723-.3066-1.1747-.0674-.1349-.9471-1.324-1.686-2.2836-.7849-1.0148-1.061-1.4567-1.2234-1.935-.0521-.1624-.2481-1.2754-.3708-2.143-.0889-.6224-.2608-1.2386-.5306-1.9223-.092-.233-.1564-.4228-.141-.4228.0735 0 1.6526.4415 1.7445.4875.0583.0307.2974.159.5274.2878.23.1318.4537.2363.4935.2363.046 0 .239.1073.466.2606l.3895.2606.2025-.0155c.2912-.0276.346-.0398.4687-.1256.1748-.1196.2792-.138.4172-.0736.2667.1257.4507.1472.2883.0338-.2422-.1687-.2667-.2516-.1257-.4632.1687-.2575.1867-.2757.3614-.3646.279-.141.2976-.1745.3895-.6774.043-.2452.1011-.4848.1257-.5338.0705-.1472.0553-.2419-.0642-.3553-.0614-.0583-.1627-.1904-.2302-.2916-.095-.1472-.1223-.2175-.1223-.3248 0-.1196-.0124-.144-.1013-.1992a1.3114 1.3114 0 0 0-.218-.1074c-.1318-.046-.3369-.2635-.3093-.3248a2.3155 2.3155 0 0 0 .0337-.083c.0246-.0613-.2239-.1962-.4692-.2545-.2452-.0582-.2421-.0583-.1992-.1073.0215-.0276.0212-.1227.0028-.3005-.092-.84-.4321-1.4285-.9993-1.7259-.1226-.0644-.2299-.1288-.239-.1471-.0583-.089-.7818-.365-1.1803-.4477-.1257-.0245-.3744-.0857-.5522-.1378-.1778-.049-.4504-.1016-.6098-.12-.4568-.043-1.073-.147-1.2754-.2114-.1012-.0307-.3403-.0858-.5335-.1195-.1931-.0368-.3587-.0766-.368-.0919-.0122-.0184-.0858-.0156-.187.0028-.1164.0215-.2912.0217-.5671-.0028-.2177-.0215-.7573-.034-1.1957-.031-.6745.0031-.8585-.0057-1.2019-.0609-.2207-.0368-.518-.0646-.659-.0646-.3373-.0031-1.331-.1042-1.1531-.1196.0276 0 .1195-.0181.2053-.0365.141-.0307.1504-.0372.1228-.0985-.0306-.0644-.0458-.0673-.478-.0642-.368 0-.4539.0094-.4815.0492-.0306.0399-.0615.0428-.1964.0183-.144-.0306-.1533-.0368-.1073-.0736.049-.0368.0492-.046.0094-.0736-.0246-.0153-.0676-.031-.0952-.031-.0399 0-1.9562-.19-2.7533-.2727-.1564-.0184-.2941-.0365-.3033-.0488-.0092-.0092.0061-.0154.0337-.0154.0307 0 .052-.0124.052-.0277 0-.046-.156-.058-.3707-.0244-.1502.0215-.2303.0213-.2794-.0032-.0582-.0246-.0395-.0273.0924-.015.2912.0306.1683-.0401-.1383-.077-.1656-.0214-.3372-.043-.3801-.0491a.486.486 0 0 1-.1379-.046c-.0306-.0184-.3679-.0763-.748-.1284-.3802-.0521-.8065-.1291-.9506-.172-.4967-.141-.9532-.371-1.2169-.607l-.1382-.1224.0492-.1167c.1011-.2422.2299-.3832.4598-.4936.3158-.1533.46-.178 1.0762-.1964.561-.0122.693-.0365.6286-.1101-.0307-.043-.472-.1106-.6928-.1106-.138 0-.4815-.0674-.7973-.1594a1.2257 1.2257 0 0 0-.4003-.0488zm8.8497 2.9503a.3051.3051 0 0 0-.0675.0051c-.181.0307-.285.0734-.3769.15l-.0919.0736.1472.0033c.1564 0 .239-.0306.3525-.1317.0713-.0644.0838-.0963.0366-.1003zm5.7762.951c.0383-.0023.0814.0089.1626.0319.092.0276.193.0401.2236.031.0307-.0093.0674-.0033.0797.0182.0153.0276-.0305.0308-.1838.0155-.1349-.0154-.2025-.0126-.2025.0089 0 .0184.0368.04.0858.0492.2238.049.2607.0737.0675.0553-.1103-.0123-.276-.0213-.368-.0244-.1594 0-.1684.003-.1776.0797-.0092.0705-.0307.0856-.181.1163-.2053.0398-.1775.0428-.3308-.0277-.138-.0674-.4418-.141-.819-.1992-.141-.0215-.2112-.0396-.1621-.0427.0521 0 .3342.0307.6286.0736.5457.0767.6988.0919.6651.0582-.0092-.0092-.2483-.0644-.5334-.1196l-.5151-.1012.3004-.0033c.2637-.003.3098.0064.3895.0647.0675.049.1011.0583.1256.0337.0215-.0214.1133-.028.2574-.0187.1931.0153.2452.0095.3525-.0488.0628-.0322.0966-.0483.135-.0506zm-4.3466.5128c.0152-.0005.0284.0022.036.0099.0124.0092.0002.0306-.0243.0459-.0582.0368-.0828.037-.1073.0033-.0138-.0253.0499-.0575.0956-.059zm4.9869.09c.0057-.002.0158.0105.0342.0366.0214.0276.0673.052.098.052.049 0 .0524.006.0126.0305-.0245.0153-.0522.0276-.0614.0276-.0613-.0061-.0919-.0428-.0919-.098.0015-.0306.0027-.0468.0085-.0487zm-3.9515.1805c-.0613 0-.104.052-.104.1256 0 .0153.0702.0276.156.0276.1472 0 .1536-.003.1168-.052-.0613-.0797-.0983-.1012-.1688-.1012zm6.1901 1.8304c.0215-.0092.0738.012.1167.0426.0675.0521.0674.0584.0122.0553-.0858 0-.184-.0765-.1289-.098Z" }) + ] + } + ); +}); + +exports.default = SiShikimori; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.d.ts new file mode 100644 index 000000000..5f82bd53f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#343434"; +declare const SiShikimori: IconType; +export { SiShikimori as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.mjs new file mode 100644 index 000000000..ce9802984 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShikimori.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#343434"; +const SiShikimori = React.forwardRef(function SiShikimori2({ title = "Shikimori", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.8025.0025C2.7779.03 2.8332.1223 2.9834.3c.0981.1134.1594.2328.233.4444.0551.1594.1198.3157.1443.3464.0368.049.0396.037.0427-.1102V.8181l.218.3004c.331.4568.5365.6992.6744.7973.0706.046.1136.0919.0952.098-.049.0153-.4785-.2208-.6778-.374-.1012-.0767-.196-.1411-.2114-.1411-.0153 0-.0644-.0461-.1073-.1013-.0399-.0552-.1348-.1408-.2053-.1898-.1717-.1196-.3527-.2913-.3957-.374C2.763.7721 2.668.7323 2.668.7814c0 .049.245.377.435.5793.5825.6224 1.1776.932 2.7688 1.4287.3373.1043.6347.2085.6623.233.0246.0215.0737.0398.1074.0398.0306 0 .0795.0152.104.0305.0399.0245.0367.031-.0093.031-.0368 0-.0521.018-.046.0548.0092.0552.1595.1045.4477.1444.1287.0184.1593.0124.1593-.0244 0-.049-.0889-.083-.2207-.083-.049 0-.0858-.0151-.0858-.0304 0-.0184.031-.025.0708-.0188.0368.0092.1652.0306.2817.052.276.046.353.0768.353.135 0 .0644.0826.092.1377.046.0307-.0276.046-.0274.046-.0028 0 .0183.0151.0337.0304.0337.0184 0 .031-.0214.031-.046 0-.0582-.0309-.0586.4842.0212.3066.046.42.077.374.0923-.098.0368-.0428.0858.0952.0858.0705 0 .1195.0153.1195.0337 0 .0276.0704.0306.2452.0183.1594-.0123.2516-.0093.2639.0122.0122.0184.0643.0275.1195.0183.0521-.0092.1961.0034.3126.0248.3066.0583 1.1313.1044 2.977.1688 2.983.1042 5.157.3277 5.9726.6159.3617.1287.9075.4048 1.0087.509.1594.1686.2082.3066.1898.5334-.0092.1135-.0092.2149 0 .2241.089.089.2855-.0859.2855-.2545 0-.0338.0639-.1165.1467-.187.331-.2913.3803-.454.3436-1.1194-.0246-.4476-.031-.4782-.2302-1.1343-.2606-.8585-.3215-.9903-.6342-1.3214-.3679-.3863-.7023-.6072-1.1592-.7635-.1103-.0368-.3434-.1224-.5212-.1899-.2483-.098-.4262-.141-.788-.1931-.512-.0736-1.6126-.1256-1.956-.0919-.1226.0123-.6132 0-1.1498-.0337-.61-.0337-.984-.046-1.0729-.0277-.0766.0154-.2085.0274-.2944.0305-.1257 0-.1837.0187-.291.0984-.1257.092-.2149.1194-.5644.1777-.5641.092-.929.1653-1.0823.2175-.1196.0429-.3157.0706-.6192.089-.8309.0521-1.3029.0952-1.4071.129-.0706.0214-.3406.0274-.7913.0182-.5488-.0123-.6895-.006-.7171.0277-.0276.0306-.0155.0398.0581.0398.1809 0 1.7968.1258 1.8121.141.0154.0154-.273.003-1.0977-.0491-.2423-.0154-.4567-.0186-.472-.0094-.0583.0368-.4939.0307-.9108-.0122-.515-.0521-1.0115-.138-1.4714-.2545-.2146-.0521-.4662-.0916-.644-.1008-.328-.0153-.6778-.129-1.1714-.3773-.325-.1625-.3614-.1684-.3614-.0366v.1008L3.244.5331c-.0552-.0644-.1224-.1689-.15-.2302-.0552-.1165-.2609-.328-.2915-.3004zm.4584 3.1887c-.5697.0269-1.0938.4707-1.47 1.2628-.2238.4752-.2635.6593-.2789 1.291-.0122.4966-.0063.598.0642 1.0119.1503.8615.19.9625.5058 1.2721.3342.3312 1.1654.785 1.6284.8892.1594.0338.3464.0768.4139.0952.2575.0644.61.0885 1.4868.1008.8431.0153.9136.0125 1.027-.0427.0797-.0398.2486-.0707.4908-.089.2023-.0184.4165-.0459.4748-.0643.0582-.0153.1841-.0309.276-.0309.0951 0 .1903-.0182.2087-.0366.0735-.0735.4228-.1503.757-.1687.187-.0092.3621-.0273.3928-.0427.1011-.0551.052-.0859-.1135-.0675-.095.0092-.187.003-.2207-.0154-.0491-.0307-.034-.0335.0825-.0366.0766 0 .2269-.0093.3342-.0216.1655-.0153.1842-.0248.1382-.0585-.1134-.0828-.0153-.1041.4936-.1041.4568 0 .5886-.0215.4537-.0736-.0275-.0092-.1413-.0216-.2517-.0216-.1134-.003-.1624-.0119-.1134-.015.0521-.006.1628-.0277.2517-.043.0859-.0185.6255-.0399 1.1958-.046.5702-.0061 1.0542-.0124 1.0757-.0155.0276 0 .0338-.0215.0216-.0614-.0123-.043-.0061-.061.0276-.061.0245 0 .083-.049.129-.1073.0919-.1195.1161-.1137.156.0427l.0277.1012.2207.0094c.1748.0061.2333-.003.2916-.046.0398-.0306.1224-.0645.1837-.0768l.1135-.0216-.0183.1782c-.0184.144-.0152.1716.0215.1593.0246-.0092.1222-.0338.2203-.0553l.1749-.0337-.0675-.089c-.043-.0491-.1226-.098-.1931-.1163l-.1224-.031.1838-.006a4.812 4.812 0 0 1 .3004 0c.0644.003.1135-.0089.1135-.0272 0-.0184-.0182-.034-.0366-.037-.0215-.0031-.089-.0064-.1472-.0095-.0582-.006-.1564-.0398-.2147-.0735-.0582-.0368-.1317-.067-.1593-.067-.0307 0-.0553-.0157-.0553-.031 0-.0215.092-.0305.2545-.0244.2483.0092.2514.0091.2606.0919.0123.095.0122.095.0797.0675a.0498.0498 0 0 0 .0305-.0581c-.0184-.049.037-.0893.083-.0586.0183.0092.0918.0215.1593.0276.1655.0092.9718.0737 1.1803.0952.1103.0122.1593.0307.1593.0614 0 .0521.037.0549.083.0089.0245-.0245.1442-.021.4354.0066.3557.0337.4017.0425.4017.0946 0 .0368.0213.0556.0704.0586.0368 0 .1656.0121.2821.0244.1196.0123.2329.0181.2513.009.0214-.0062.0891-.0979.1504-.2021.1196-.1993.2208-.3253.2607-.3253.0153 0 .018.0219.0089.0464-.0123.0245-.003.046.0154.046.0215 0 .0338.0244.0277.052-.0061.0367.0213.0582.0919.0735.1134.0246.1657.0582.089.0582-.0276 0-.0525.0183-.0525.0398 0 .0215.1812.0984.4448.1842.2821.095.4444.1623.4444.1899 0 .0306-.095.0092-.3586-.0797-.6254-.2146-.898-.2606-.898-.1533 0 .046.0488.0676.285.1228.1532.0368.3002.0642.3248.0642.0214 0 .0798.0338.1289.0736.049.043.294.144.5638.233.273.092.5153.19.5644.233.049.0398.1349.0952.1931.1166.1932.0828.4693.3309.6778.6099.3005.4047.2973.3895.1317.3895-.0766 0-.2946-.0214-.4847-.046-.19-.0245-.429-.0461-.53-.0492-.2147-.0061-1.9684.0278-2.6245.0493l-.4449.0154-.0703-.1504c-.0398-.0828-.1533-.2298-.2545-.331-.1747-.1717-.1837-.175-.2236-.1167-.0245.0337-.1168.1626-.2057.2822l-.1622.2236-.1992.0065c-.1104 0-.2242.0031-.2517 0-.0675-.006-.0703.0305-.009.144l.0427.0857-.3126.0216c-.8524.0582-2.661.282-3.268.4078-.135.0276-.4203.049-.6778.052-.46.0061-.5028.0184-.794.187-.0522.0276-.0922.0339-.129.0155-.0337-.0215-.0643-.0154-.0858.0122-.0337.0398-.144.058-.9534.1439-.1778.0184-.475.0584-.665.089-.3312.0552-.3499.0552-.5246 0-.184-.0582-.7572-.135-1.2478-.1687l-.276-.0216-.1622.1472c-.092.0797-.218.2177-.2855.3066-.092.1257-.141.166-.1992.166-.1257 0-1.2448.1743-2.0573.3215-.8768.1594-1.2077.1904-1.4652.1382-.2668-.0551-.2701-.0583-.2578-.3956.0122-.2851.0093-.2941-.0643-.3309-.1686-.0858-.331-.0371-.5517.1622-.052.046-.1133.0675-.1992.0675-.0705-.003-.1993.0306-.3004.0797l-.181.083.009.1593c.006.0858-.0032.1868-.0216.2175-.0245.0368-.0306.1994-.0183.4692.0123.328.003.4476-.0398.607l-.052.1964.1471.2086c.2943.4139.503.7294.503.763 0 .0185.0916.1169.208.218.506.4446.7207.5642 1.2174.6685.5273.1134.6131.1072.9412-.0675.1502-.0828.3251-.1965.3895-.2578.0797-.0736.3067-.1931.742-.3863.6776-.3004.7631-.3342.7631-.2943 0 .0122.043.426.0952.9135.1073 1.024.1411 2.0052.0951 2.7595-.0368.5917-.0644.6743-.4814 1.4591-.6469 1.2172-1.4224 2.3947-2.008 3.0477-.1043.1196-.2636.325-.3525.4599-.1686.2544-.4815.595-.871.9445-.1317.1195-.2177.2206-.2085.2451.0092.0245.1046.0734.2119.1102.1042.0398.2052.083.2236.0984.049.049.1101.0303.337-.0924l.2207-.1223.0891.0614c.1073.0705.3006.0763.4631.015.0644-.0245.1932-.052.2883-.0581.19-.0184.3126-.0703.5118-.2236.0736-.0552.1687-.1073.2147-.1195.089-.0184.8585-.7976 1.2694-1.2881.1287-.1502.4506-.4905.7204-.7542.3771-.374.5457-.5148.7603-.6436.3096-.184.5548-.4076.5854-.5395.0123-.046.052-.1413.0919-.2118.095-.1625.2024-.5792.1748-.6835-.0092-.0429-.0552-.147-.1012-.233-.0797-.141-.0855-.1901-.1008-.5826-.0276-.6898-.138-1.0515-.4875-1.5941-.2023-.3127-.2516-.4231-.3773-.8278-.2085-.696-.2697-1.3493-.1655-1.8613.049-.2545.0735-.2883.279-.4078.1072-.0644.2484-.1656.3159-.227l.1256-.1162.5948-.0675c.328-.0398.6958-.0889.8123-.1134.1196-.0245.3831-.0797.5855-.1195.2054-.043.497-.1164.6473-.1655.1502-.0521.3616-.1137.472-.1383.2146-.049.9472-.1192.9717-.0946.0092.0092.0185.4476.0155.975 0 .8277-.0092 1.0515-.0797 1.6616-.1196 1.0455-.1442 1.3732-.1749 2.526-.0276 1.1466-.0365 1.1986-.2236 1.3335-.1349.0981-.2728.0802-.6806-.1007-.2023-.089-.6286-.264-.9505-.3928-.3189-.1288-.7727-.3277-1.0027-.4411-.233-.1165-.4232-.2028-.4232-.1936 0 .0092.1165.1595.2606.3342.144.1748.2606.325.2606.3342 0 .0092-.0274.0188-.0642.0188-.0552 0-.0584.006-.0155.0642.0276.0398.0369.101.0277.1654-.0123.0828-.0032.1106.058.1505.04.0276.1046.1041.1445.1716.0368.0643.1012.147.141.1776.04.0307.098.1044.1318.1627.0306.0582.1348.1654.233.239.098.0736.193.1687.2113.2086.0184.046.1077.1133.2119.1655.2422.1226.5975.4353.6557.5732.0338.0859.1015.1534.2977.2822.1564.1042.4321.3433.7387.6469.558.5518.5887.5703 1.0425.5427.2943-.0214.4416-.0768.6164-.2362.0705-.0644.1563-.1316.187-.15.0306-.0184.1072-.1072.1655-.1992.0582-.095.147-.1932.193-.2208.1288-.0766.3587-.402.3587-.5062 0-.1533.0582-.251.2606-.441.1778-.1656.2149-.2213.3253-.4941.1717-.417.2326-.6864.2878-1.223.0674-.6622.0616-1.4623-.015-1.962-.1257-.8156-.604-3.0876-.7481-3.5414-.1196-.377-.233-.8676-.233-1.0087 0-.0337.064-.0369.3155-.0215.23.0153.4108.0094.6745-.0305.3127-.046.4202-.049.7514-.0183.2115.0184.3923.0396.3984.0488.0245.0214.4968 1.5575.5765 1.8702.1656.6408.1688.687.2025 2.2996.0153.8431.0304 1.8426.0366 2.2228.0061.6407.0124.7111.089.9932.0981.3587.2054.5919.4261.9108.089.1257.2238.3464.3005.4874.1533.2852.3527.521.6103.7172.3372.2606.6652.4724.8676.5644.2422.1103.4382.2849.6314.5577.0797.1104.1932.2609.2545.3375.0613.0767.1378.1932.1716.2607.0582.1226.0766.1348.4078.233.1532.0459.5762.0548.8123.015.1318-.0216.1812-.052.3928-.2574.285-.276.42-.469.42-.607 0-.2146.0303-.279.156-.3281.0798-.0307.1196-.0673.1196-.1041 0-.1932-.2023-.9723-.3066-1.1747-.0674-.1349-.9471-1.324-1.686-2.2836-.7849-1.0148-1.061-1.4567-1.2234-1.935-.0521-.1624-.2481-1.2754-.3708-2.143-.0889-.6224-.2608-1.2386-.5306-1.9223-.092-.233-.1564-.4228-.141-.4228.0735 0 1.6526.4415 1.7445.4875.0583.0307.2974.159.5274.2878.23.1318.4537.2363.4935.2363.046 0 .239.1073.466.2606l.3895.2606.2025-.0155c.2912-.0276.346-.0398.4687-.1256.1748-.1196.2792-.138.4172-.0736.2667.1257.4507.1472.2883.0338-.2422-.1687-.2667-.2516-.1257-.4632.1687-.2575.1867-.2757.3614-.3646.279-.141.2976-.1745.3895-.6774.043-.2452.1011-.4848.1257-.5338.0705-.1472.0553-.2419-.0642-.3553-.0614-.0583-.1627-.1904-.2302-.2916-.095-.1472-.1223-.2175-.1223-.3248 0-.1196-.0124-.144-.1013-.1992a1.3114 1.3114 0 0 0-.218-.1074c-.1318-.046-.3369-.2635-.3093-.3248a2.3155 2.3155 0 0 0 .0337-.083c.0246-.0613-.2239-.1962-.4692-.2545-.2452-.0582-.2421-.0583-.1992-.1073.0215-.0276.0212-.1227.0028-.3005-.092-.84-.4321-1.4285-.9993-1.7259-.1226-.0644-.2299-.1288-.239-.1471-.0583-.089-.7818-.365-1.1803-.4477-.1257-.0245-.3744-.0857-.5522-.1378-.1778-.049-.4504-.1016-.6098-.12-.4568-.043-1.073-.147-1.2754-.2114-.1012-.0307-.3403-.0858-.5335-.1195-.1931-.0368-.3587-.0766-.368-.0919-.0122-.0184-.0858-.0156-.187.0028-.1164.0215-.2912.0217-.5671-.0028-.2177-.0215-.7573-.034-1.1957-.031-.6745.0031-.8585-.0057-1.2019-.0609-.2207-.0368-.518-.0646-.659-.0646-.3373-.0031-1.331-.1042-1.1531-.1196.0276 0 .1195-.0181.2053-.0365.141-.0307.1504-.0372.1228-.0985-.0306-.0644-.0458-.0673-.478-.0642-.368 0-.4539.0094-.4815.0492-.0306.0399-.0615.0428-.1964.0183-.144-.0306-.1533-.0368-.1073-.0736.049-.0368.0492-.046.0094-.0736-.0246-.0153-.0676-.031-.0952-.031-.0399 0-1.9562-.19-2.7533-.2727-.1564-.0184-.2941-.0365-.3033-.0488-.0092-.0092.0061-.0154.0337-.0154.0307 0 .052-.0124.052-.0277 0-.046-.156-.058-.3707-.0244-.1502.0215-.2303.0213-.2794-.0032-.0582-.0246-.0395-.0273.0924-.015.2912.0306.1683-.0401-.1383-.077-.1656-.0214-.3372-.043-.3801-.0491a.486.486 0 0 1-.1379-.046c-.0306-.0184-.3679-.0763-.748-.1284-.3802-.0521-.8065-.1291-.9506-.172-.4967-.141-.9532-.371-1.2169-.607l-.1382-.1224.0492-.1167c.1011-.2422.2299-.3832.4598-.4936.3158-.1533.46-.178 1.0762-.1964.561-.0122.693-.0365.6286-.1101-.0307-.043-.472-.1106-.6928-.1106-.138 0-.4815-.0674-.7973-.1594a1.2257 1.2257 0 0 0-.4003-.0488zm8.8497 2.9503a.3051.3051 0 0 0-.0675.0051c-.181.0307-.285.0734-.3769.15l-.0919.0736.1472.0033c.1564 0 .239-.0306.3525-.1317.0713-.0644.0838-.0963.0366-.1003zm5.7762.951c.0383-.0023.0814.0089.1626.0319.092.0276.193.0401.2236.031.0307-.0093.0674-.0033.0797.0182.0153.0276-.0305.0308-.1838.0155-.1349-.0154-.2025-.0126-.2025.0089 0 .0184.0368.04.0858.0492.2238.049.2607.0737.0675.0553-.1103-.0123-.276-.0213-.368-.0244-.1594 0-.1684.003-.1776.0797-.0092.0705-.0307.0856-.181.1163-.2053.0398-.1775.0428-.3308-.0277-.138-.0674-.4418-.141-.819-.1992-.141-.0215-.2112-.0396-.1621-.0427.0521 0 .3342.0307.6286.0736.5457.0767.6988.0919.6651.0582-.0092-.0092-.2483-.0644-.5334-.1196l-.5151-.1012.3004-.0033c.2637-.003.3098.0064.3895.0647.0675.049.1011.0583.1256.0337.0215-.0214.1133-.028.2574-.0187.1931.0153.2452.0095.3525-.0488.0628-.0322.0966-.0483.135-.0506zm-4.3466.5128c.0152-.0005.0284.0022.036.0099.0124.0092.0002.0306-.0243.0459-.0582.0368-.0828.037-.1073.0033-.0138-.0253.0499-.0575.0956-.059zm4.9869.09c.0057-.002.0158.0105.0342.0366.0214.0276.0673.052.098.052.049 0 .0524.006.0126.0305-.0245.0153-.0522.0276-.0614.0276-.0613-.0061-.0919-.0428-.0919-.098.0015-.0306.0027-.0468.0085-.0487zm-3.9515.1805c-.0613 0-.104.052-.104.1256 0 .0153.0702.0276.156.0276.1472 0 .1536-.003.1168-.052-.0613-.0797-.0983-.1012-.1688-.1012zm6.1901 1.8304c.0215-.0092.0738.012.1167.0426.0675.0521.0674.0584.0122.0553-.0858 0-.184-.0765-.1289-.098Z" }) + ] + } + ); +}); + +export { SiShikimori as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.cjs new file mode 100644 index 000000000..74006c133 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE4D2D"; +const SiShopee = React__namespace.forwardRef(function SiShopee2({ title = "Shopee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.9414 17.9633c.229-1.879-.981-3.077-4.1758-4.0969-1.548-.528-2.277-1.22-2.26-2.1719.065-1.056 1.048-1.825 2.352-1.85a5.2898 5.2898 0 0 1 2.8838.89c.116.072.197.06.263-.039.09-.145.315-.494.39-.62.051-.081.061-.187-.068-.281-.185-.1369-.704-.4149-.983-.5319a6.4697 6.4697 0 0 0-2.5118-.514c-1.909.008-3.4129 1.215-3.5389 2.826-.082 1.1629.494 2.1078 1.73 2.8278.262.152 1.6799.716 2.2438.892 1.774.552 2.695 1.5419 2.478 2.6969-.197 1.047-1.299 1.7239-2.818 1.7439-1.2039-.046-2.2878-.537-3.1278-1.19l-.141-.11c-.104-.08-.218-.075-.287.03-.05.077-.376.547-.458.67-.077.108-.035.168.045.234.35.293.817.613 1.134.775a6.7097 6.7097 0 0 0 2.8289.727 4.9048 4.9048 0 0 0 2.0759-.354c1.095-.465 1.8029-1.394 1.9449-2.554zM11.9986 1.4009c-2.068 0-3.7539 1.95-3.8329 4.3899h7.6657c-.08-2.44-1.765-4.3899-3.8328-4.3899zm7.8516 22.5981-.08.001-15.7843-.002c-1.074-.04-1.863-.91-1.971-1.991l-.01-.195L1.298 6.2858a.459.459 0 0 1 .45-.494h4.9748C6.8448 2.568 9.1607 0 11.9996 0c2.8388 0 5.1537 2.5689 5.2757 5.7898h4.9678a.459.459 0 0 1 .458.483l-.773 15.5883-.007.131c-.094 1.094-.979 1.9769-2.0709 2.0059z" }) + ] + } + ); +}); + +exports.default = SiShopee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.d.ts new file mode 100644 index 000000000..88d692096 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE4D2D"; +declare const SiShopee: IconType; +export { SiShopee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.mjs new file mode 100644 index 000000000..1cfc13268 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE4D2D"; +const SiShopee = React.forwardRef(function SiShopee2({ title = "Shopee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.9414 17.9633c.229-1.879-.981-3.077-4.1758-4.0969-1.548-.528-2.277-1.22-2.26-2.1719.065-1.056 1.048-1.825 2.352-1.85a5.2898 5.2898 0 0 1 2.8838.89c.116.072.197.06.263-.039.09-.145.315-.494.39-.62.051-.081.061-.187-.068-.281-.185-.1369-.704-.4149-.983-.5319a6.4697 6.4697 0 0 0-2.5118-.514c-1.909.008-3.4129 1.215-3.5389 2.826-.082 1.1629.494 2.1078 1.73 2.8278.262.152 1.6799.716 2.2438.892 1.774.552 2.695 1.5419 2.478 2.6969-.197 1.047-1.299 1.7239-2.818 1.7439-1.2039-.046-2.2878-.537-3.1278-1.19l-.141-.11c-.104-.08-.218-.075-.287.03-.05.077-.376.547-.458.67-.077.108-.035.168.045.234.35.293.817.613 1.134.775a6.7097 6.7097 0 0 0 2.8289.727 4.9048 4.9048 0 0 0 2.0759-.354c1.095-.465 1.8029-1.394 1.9449-2.554zM11.9986 1.4009c-2.068 0-3.7539 1.95-3.8329 4.3899h7.6657c-.08-2.44-1.765-4.3899-3.8328-4.3899zm7.8516 22.5981-.08.001-15.7843-.002c-1.074-.04-1.863-.91-1.971-1.991l-.01-.195L1.298 6.2858a.459.459 0 0 1 .45-.494h4.9748C6.8448 2.568 9.1607 0 11.9996 0c2.8388 0 5.1537 2.5689 5.2757 5.7898h4.9678a.459.459 0 0 1 .458.483l-.773 15.5883-.007.131c-.094 1.094-.979 1.9769-2.0709 2.0059z" }) + ] + } + ); +}); + +export { SiShopee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.cjs new file mode 100644 index 000000000..98097f92e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7AB55C"; +const SiShopify = React__namespace.forwardRef(function SiShopify2({ title = "Shopify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.337 23.979l7.216-1.561s-2.604-17.613-2.625-17.73c-.018-.116-.114-.192-.211-.192s-1.929-.136-1.929-.136-1.275-1.274-1.439-1.411c-.045-.037-.075-.057-.121-.074l-.914 21.104h.023zM11.71 11.305s-.81-.424-1.774-.424c-1.447 0-1.504.906-1.504 1.141 0 1.232 3.24 1.715 3.24 4.629 0 2.295-1.44 3.76-3.406 3.76-2.354 0-3.54-1.465-3.54-1.465l.646-2.086s1.245 1.066 2.28 1.066c.675 0 .975-.545.975-.932 0-1.619-2.654-1.694-2.654-4.359-.034-2.237 1.571-4.416 4.827-4.416 1.257 0 1.875.361 1.875.361l-.945 2.715-.02.01zM11.17.83c.136 0 .271.038.405.135-.984.465-2.064 1.639-2.508 3.992-.656.213-1.293.405-1.889.578C7.697 3.75 8.951.84 11.17.84V.83zm1.235 2.949v.135c-.754.232-1.583.484-2.394.736.466-1.777 1.333-2.645 2.085-2.971.193.501.309 1.176.309 2.1zm.539-2.234c.694.074 1.141.867 1.429 1.755-.349.114-.735.231-1.158.366v-.252c0-.752-.096-1.371-.271-1.871v.002zm2.992 1.289c-.02 0-.06.021-.078.021s-.289.075-.714.21c-.423-1.233-1.176-2.37-2.508-2.37h-.115C12.135.209 11.669 0 11.265 0 8.159 0 6.675 3.877 6.21 5.846c-1.194.365-2.063.636-2.16.674-.675.213-.694.232-.772.87-.075.462-1.83 14.063-1.83 14.063L15.009 24l.927-21.166z" }) + ] + } + ); +}); + +exports.default = SiShopify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.d.ts new file mode 100644 index 000000000..9df059a84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7AB55C"; +declare const SiShopify: IconType; +export { SiShopify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.mjs new file mode 100644 index 000000000..3c94bd63f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7AB55C"; +const SiShopify = React.forwardRef(function SiShopify2({ title = "Shopify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.337 23.979l7.216-1.561s-2.604-17.613-2.625-17.73c-.018-.116-.114-.192-.211-.192s-1.929-.136-1.929-.136-1.275-1.274-1.439-1.411c-.045-.037-.075-.057-.121-.074l-.914 21.104h.023zM11.71 11.305s-.81-.424-1.774-.424c-1.447 0-1.504.906-1.504 1.141 0 1.232 3.24 1.715 3.24 4.629 0 2.295-1.44 3.76-3.406 3.76-2.354 0-3.54-1.465-3.54-1.465l.646-2.086s1.245 1.066 2.28 1.066c.675 0 .975-.545.975-.932 0-1.619-2.654-1.694-2.654-4.359-.034-2.237 1.571-4.416 4.827-4.416 1.257 0 1.875.361 1.875.361l-.945 2.715-.02.01zM11.17.83c.136 0 .271.038.405.135-.984.465-2.064 1.639-2.508 3.992-.656.213-1.293.405-1.889.578C7.697 3.75 8.951.84 11.17.84V.83zm1.235 2.949v.135c-.754.232-1.583.484-2.394.736.466-1.777 1.333-2.645 2.085-2.971.193.501.309 1.176.309 2.1zm.539-2.234c.694.074 1.141.867 1.429 1.755-.349.114-.735.231-1.158.366v-.252c0-.752-.096-1.371-.271-1.871v.002zm2.992 1.289c-.02 0-.06.021-.078.021s-.289.075-.714.21c-.423-1.233-1.176-2.37-2.508-2.37h-.115C12.135.209 11.669 0 11.265 0 8.159 0 6.675 3.877 6.21 5.846c-1.194.365-2.063.636-2.16.674-.675.213-.694.232-.772.87-.075.462-1.83 14.063-1.83 14.063L15.009 24l.927-21.166z" }) + ] + } + ); +}); + +export { SiShopify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.cjs new file mode 100644 index 000000000..abf4e22c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#189EFF"; +const SiShopware = React__namespace.forwardRef(function SiShopware2({ title = "Shopware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9477 10.8913a.1735.1735 0 00-.061-.1178c-2.5032-2.078-4.5288-2.9261-6.9905-2.9261-1.3127 0-2.32.2638-2.9916.7827-.5822.4492-.8896 1.0772-.8896 1.812 0 2.0605 2.5184 3.0003 5.4358 4.0883 1.5023.5604 3.057 1.1404 4.483 1.9319a.1626.1626 0 00.0828.0218.187.187 0 00.0589-.011c.0458-.0174.085-.0523.1025-.1002.545-1.3955.822-2.8673.822-4.374a13.082 13.082 0 00-.0523-1.1076zm-4.81 10.4791c-1.0423-.785-2.5795-1.3824-4.2061-2.0125-1.9362-.7501-4.132-1.6027-5.7803-2.913-1.8665-1.4871-2.7757-3.3623-2.7757-5.7324 0-2.1281.883-3.9466 2.5533-5.2614 1.873-1.474 4.7119-2.2546 8.2071-2.2546.966 0 1.8883.0589 2.743.1766a.1696.1696 0 00.1788-.098.17.17 0 00-.0414-.2007C17.814 1.0924 14.9664.0022 12.001.0022c-3.2052 0-6.2186 1.2472-8.4862 3.5148C1.2494 5.7825 0 8.796 0 11.999c0 3.2051 1.2472 6.2185 3.5149 8.484 2.2654 2.2654 5.2788 3.5148 8.4862 3.5148 2.5903 0 5.0564-.8133 7.1344-2.3505a.1714.1714 0 00.0697-.1374.1735.1735 0 00-.0676-.1395Z" }) + ] + } + ); +}); + +exports.default = SiShopware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.d.ts new file mode 100644 index 000000000..9b8a5f02c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#189EFF"; +declare const SiShopware: IconType; +export { SiShopware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.mjs new file mode 100644 index 000000000..72b300c56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShopware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#189EFF"; +const SiShopware = React.forwardRef(function SiShopware2({ title = "Shopware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9477 10.8913a.1735.1735 0 00-.061-.1178c-2.5032-2.078-4.5288-2.9261-6.9905-2.9261-1.3127 0-2.32.2638-2.9916.7827-.5822.4492-.8896 1.0772-.8896 1.812 0 2.0605 2.5184 3.0003 5.4358 4.0883 1.5023.5604 3.057 1.1404 4.483 1.9319a.1626.1626 0 00.0828.0218.187.187 0 00.0589-.011c.0458-.0174.085-.0523.1025-.1002.545-1.3955.822-2.8673.822-4.374a13.082 13.082 0 00-.0523-1.1076zm-4.81 10.4791c-1.0423-.785-2.5795-1.3824-4.2061-2.0125-1.9362-.7501-4.132-1.6027-5.7803-2.913-1.8665-1.4871-2.7757-3.3623-2.7757-5.7324 0-2.1281.883-3.9466 2.5533-5.2614 1.873-1.474 4.7119-2.2546 8.2071-2.2546.966 0 1.8883.0589 2.743.1766a.1696.1696 0 00.1788-.098.17.17 0 00-.0414-.2007C17.814 1.0924 14.9664.0022 12.001.0022c-3.2052 0-6.2186 1.2472-8.4862 3.5148C1.2494 5.7825 0 8.796 0 11.999c0 3.2051 1.2472 6.2185 3.5149 8.484 2.2654 2.2654 5.2788 3.5148 8.4862 3.5148 2.5903 0 5.0564-.8133 7.1344-2.3505a.1714.1714 0 00.0697-.1374.1735.1735 0 00-.0676-.1395Z" }) + ] + } + ); +}); + +export { SiShopware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.cjs new file mode 100644 index 000000000..f754d99fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#58B1E4"; +const SiShortcut = React__namespace.forwardRef(function SiShortcut2({ title = "Shortcut", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 6a6 6 0 0 0-6-6H6a5.975 5.975 0 0 0-4.242 1.758 5.998 5.998 0 0 0 0 8.484l2.137 2.137A6.007 6.007 0 0 0 0 18a6 6 0 0 0 6 6h12a5.975 5.975 0 0 0 4.242-1.758 5.998 5.998 0 0 0 0-8.484l-2.137-2.137A6.002 6.002 0 0 0 24 6zM3.404 20.598c-.694-.694-1.075-1.615-1.075-2.596s.38-1.903 1.075-2.595a3.65 3.65 0 0 1 2.443-1.074l7.34 7.34H6a3.664 3.664 0 0 1-2.596-1.075zm17.192-5.194C21.29 16.1 21.67 17.02 21.67 18s-.38 1.904-1.075 2.596A3.644 3.644 0 0 1 18 21.67a3.64 3.64 0 0 1-2.596-1.075l-12-11.998C2.71 7.904 2.33 6.983 2.33 6.002s.38-1.903 1.075-2.595C4.1 2.712 5.02 2.33 6 2.33s1.904.381 2.596 1.076l12 11.997zm0-6.806a3.65 3.65 0 0 1-2.443 1.073l-7.34-7.342H18a3.64 3.64 0 0 1 2.596 1.075C21.29 4.1 21.67 5.02 21.67 6s-.38 1.904-1.075 2.598z" }) + ] + } + ); +}); + +exports.default = SiShortcut; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.d.ts new file mode 100644 index 000000000..22b3414d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#58B1E4"; +declare const SiShortcut: IconType; +export { SiShortcut as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.mjs new file mode 100644 index 000000000..c55253397 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShortcut.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#58B1E4"; +const SiShortcut = React.forwardRef(function SiShortcut2({ title = "Shortcut", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 6a6 6 0 0 0-6-6H6a5.975 5.975 0 0 0-4.242 1.758 5.998 5.998 0 0 0 0 8.484l2.137 2.137A6.007 6.007 0 0 0 0 18a6 6 0 0 0 6 6h12a5.975 5.975 0 0 0 4.242-1.758 5.998 5.998 0 0 0 0-8.484l-2.137-2.137A6.002 6.002 0 0 0 24 6zM3.404 20.598c-.694-.694-1.075-1.615-1.075-2.596s.38-1.903 1.075-2.595a3.65 3.65 0 0 1 2.443-1.074l7.34 7.34H6a3.664 3.664 0 0 1-2.596-1.075zm17.192-5.194C21.29 16.1 21.67 17.02 21.67 18s-.38 1.904-1.075 2.596A3.644 3.644 0 0 1 18 21.67a3.64 3.64 0 0 1-2.596-1.075l-12-11.998C2.71 7.904 2.33 6.983 2.33 6.002s.38-1.903 1.075-2.595C4.1 2.712 5.02 2.33 6 2.33s1.904.381 2.596 1.076l12 11.997zm0-6.806a3.65 3.65 0 0 1-2.443 1.073l-7.34-7.342H18a3.64 3.64 0 0 1 2.596 1.075C21.29 4.1 21.67 5.02 21.67 6s-.38 1.904-1.075 2.598z" }) + ] + } + ); +}); + +export { SiShortcut as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.cjs new file mode 100644 index 000000000..b3fa17259 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D2E83"; +const SiShowpad = React__namespace.forwardRef(function SiShowpad2({ title = "Showpad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 11.9872c0-.0894 0-.1787-.0128-.2808v-.0383c0-.0766-.0127-.1532-.0127-.2426v-.0128c-.2681-2.5787-2.3107-4.6085-4.8766-4.8766h-.0128c-.0766-.0128-.1532-.0128-.2426-.0128h-.0383c-.0893 0-.1787-.0128-.2808-.0128-1.4553 0-2.8468.5745-3.868 1.6086l-1.864 1.851 1.3533 1.3532 1.3404-1.3532h-.0128l.5107-.5105c.6638-.6766 1.583-1.0468 2.5276-1.0468h.2043c.051 0 .1021 0 .1532.0128h.0128c1.685.1787 3.0127 1.5063 3.1787 3.1787v.0128c0 .051.0128.1021.0128.1532v.4084c0 .0511-.0128.1022-.0128.1532-.1277 1.2255-.8809 2.2979-1.9787 2.834l-.0383.0129a.3813.3813 0 0 0-.1022.051l-.0766.0256-.0638.0255-.1149.0383-.0255.0128c-1.2894.4468-2.7192.1148-3.6894-.8554l-.4979-.4979-3.3702-3.3574-5.3617-5.3617-1.3532 1.3532L0 12l1.3532 1.3532 5.3872 5.3872 1.3532-1.3532 3.3702-3.3702-1.3532-1.3532-3.3702 3.3702L2.6936 12l4.0468-4.0468 2.017 2.0298 5.3873 5.3872.4979.4979c1.0212 1.034 2.4255 1.6085 3.8808 1.5957.6128 0 1.2128-.102 1.7872-.2936l.0511-.0128c.051-.0255.1149-.0383.166-.0638l.102-.0383.1022-.051.1532-.0767.051-.0255c1.698-.8298 2.8469-2.4766 3.0511-4.3532.0128-.0766.0128-.166.0128-.2425v-.3192z" }) + ] + } + ); +}); + +exports.default = SiShowpad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.d.ts new file mode 100644 index 000000000..eb53c4569 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D2E83"; +declare const SiShowpad: IconType; +export { SiShowpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.mjs new file mode 100644 index 000000000..43406337d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowpad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D2E83"; +const SiShowpad = React.forwardRef(function SiShowpad2({ title = "Showpad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 11.9872c0-.0894 0-.1787-.0128-.2808v-.0383c0-.0766-.0127-.1532-.0127-.2426v-.0128c-.2681-2.5787-2.3107-4.6085-4.8766-4.8766h-.0128c-.0766-.0128-.1532-.0128-.2426-.0128h-.0383c-.0893 0-.1787-.0128-.2808-.0128-1.4553 0-2.8468.5745-3.868 1.6086l-1.864 1.851 1.3533 1.3532 1.3404-1.3532h-.0128l.5107-.5105c.6638-.6766 1.583-1.0468 2.5276-1.0468h.2043c.051 0 .1021 0 .1532.0128h.0128c1.685.1787 3.0127 1.5063 3.1787 3.1787v.0128c0 .051.0128.1021.0128.1532v.4084c0 .0511-.0128.1022-.0128.1532-.1277 1.2255-.8809 2.2979-1.9787 2.834l-.0383.0129a.3813.3813 0 0 0-.1022.051l-.0766.0256-.0638.0255-.1149.0383-.0255.0128c-1.2894.4468-2.7192.1148-3.6894-.8554l-.4979-.4979-3.3702-3.3574-5.3617-5.3617-1.3532 1.3532L0 12l1.3532 1.3532 5.3872 5.3872 1.3532-1.3532 3.3702-3.3702-1.3532-1.3532-3.3702 3.3702L2.6936 12l4.0468-4.0468 2.017 2.0298 5.3873 5.3872.4979.4979c1.0212 1.034 2.4255 1.6085 3.8808 1.5957.6128 0 1.2128-.102 1.7872-.2936l.0511-.0128c.051-.0255.1149-.0383.166-.0638l.102-.0383.1022-.051.1532-.0767.051-.0255c1.698-.8298 2.8469-2.4766 3.0511-4.3532.0128-.0766.0128-.166.0128-.2425v-.3192z" }) + ] + } + ); +}); + +export { SiShowpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.cjs new file mode 100644 index 000000000..c28b3eea4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B10000"; +const SiShowtime = React__namespace.forwardRef(function SiShowtime2({ title = "Showtime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.99 12.167c0-4.808 1.779-7.84 3.903-8.16C18.769 1.397 15.221 0 11.999 0 8.451 0 5.265 1.54 3.07 3.985c2.094.416 2.806 2.174 2.806 4.892H3.314c0-1.605-.334-2.436-1.284-2.436-.427 0-.758.217-.954.587-.027.06-.057.122-.084.184a2.115 2.115 0 0 0-.114.71c0 3.324 5.46 3.159 5.46 8.27 0 1.995-1.53 3.855-3.252 3.855C5.35 22.52 8.441 24 12 24c3.46 0 6.577-1.464 8.766-3.808-2.018-.509-3.776-3.413-3.776-8.025zm-1.142 7.921h-2.746V13.26h-2.967v6.83H7.384V4.327h2.746v6.348h2.972V4.327h2.746v15.761zM2.372 17.58c-1.32 0-2.399-2.32-2.372-5.8 1.905 1.72 3.681 2.11 3.681 4.145 0 .981-.543 1.655-1.309 1.655zM24 12.002c0 2.844-.896 5.409-2.1 5.409-1.445 0-2.181-2.703-2.181-5.498 0-2.654.771-5.308 2.181-5.308 1.676 0 2.1 4.102 2.1 5.397z" }) + ] + } + ); +}); + +exports.default = SiShowtime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.d.ts new file mode 100644 index 000000000..ba23141f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B10000"; +declare const SiShowtime: IconType; +export { SiShowtime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.mjs new file mode 100644 index 000000000..7724738a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowtime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B10000"; +const SiShowtime = React.forwardRef(function SiShowtime2({ title = "Showtime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.99 12.167c0-4.808 1.779-7.84 3.903-8.16C18.769 1.397 15.221 0 11.999 0 8.451 0 5.265 1.54 3.07 3.985c2.094.416 2.806 2.174 2.806 4.892H3.314c0-1.605-.334-2.436-1.284-2.436-.427 0-.758.217-.954.587-.027.06-.057.122-.084.184a2.115 2.115 0 0 0-.114.71c0 3.324 5.46 3.159 5.46 8.27 0 1.995-1.53 3.855-3.252 3.855C5.35 22.52 8.441 24 12 24c3.46 0 6.577-1.464 8.766-3.808-2.018-.509-3.776-3.413-3.776-8.025zm-1.142 7.921h-2.746V13.26h-2.967v6.83H7.384V4.327h2.746v6.348h2.972V4.327h2.746v15.761zM2.372 17.58c-1.32 0-2.399-2.32-2.372-5.8 1.905 1.72 3.681 2.11 3.681 4.145 0 .981-.543 1.655-1.309 1.655zM24 12.002c0 2.844-.896 5.409-2.1 5.409-1.445 0-2.181-2.703-2.181-5.498 0-2.654.771-5.308 2.181-5.308 1.676 0 2.1 4.102 2.1 5.397z" }) + ] + } + ); +}); + +export { SiShowtime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.cjs new file mode 100644 index 000000000..abb79997d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0D14"; +const SiShowwcase = React__namespace.forwardRef(function SiShowwcase2({ title = "Showwcase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.554 2.938c.56-.103 1.126-.177 1.695-.22.128-.01.218-.031.273-.121.094-.153.26-.211.492-.228.624-.047 1.243-.05 1.869-.007.301.02.503.097.618.295.046.078.124.107.242.116.245.017.49.043.733.076.316.042.629.096.957.15a2.057 2.057 0 0 0-.244-.512c-.379-.605-.986-1.018-1.89-1.185-.679-.126-1.366-.114-2.054-.075-.43.025-.842.11-1.226.259-.8.307-1.193.831-1.466 1.452Zm-8.079.553c.272.103.527.245.757.423.503.385.849.843 1.17 1.313.356.522.637 1.067.901 1.62.053-.033.057-.07.068-.108.135-.437.293-.869.496-1.292.36-.75.841-1.444 1.718-1.953.088-.051.08-.087.015-.147a5.395 5.395 0 0 0-.927-.706 1.786 1.786 0 0 0-.955-.24c-.793.013-1.515.2-2.199.475-.394.158-.76.343-1.044.615Zm7.245-.165c-1.072.24-1.899.706-2.473 1.406-.458.557-.708 1.173-.936 1.793a15.233 15.233 0 0 0-.55 1.969 52.617 52.617 0 0 0-.589 3.215c-.122.783-.235 1.568-.34 2.354-.15 1.115-.285 2.23-.295 3.352-.01.985.021 1.966.44 2.916.274.623.746 1.135 1.54 1.477.823.353 1.724.544 2.647.688 1.366.213 2.755.283 4.148.3 1.498.016 2.994-.01 4.48-.167 1.09-.115 2.157-.29 3.168-.62.92-.3 1.59-.768 1.955-1.463.362-.69.486-1.408.528-2.136.095-1.644-.124-3.277-.354-4.91a83.408 83.408 0 0 0-.573-3.588c-.135-.73-.28-1.459-.468-2.182-.22-.84-.48-1.672-.931-2.466-.55-.967-1.473-1.65-2.876-1.944-3.4-.71-7.039-.326-8.521.006Zm14.169 9.746c0 .095.005.19.038.283l.111.766c-.016.048-.008.094.024.156.026-.064.083-.1.065-.155l.336-1.198c.023-.045.045-.089.033-.137.065-.11.08-.228.12-.342.244-.69.41-1.392.566-2.095.173-.773.321-1.55.512-2.32.236-.948.341-1.901.296-2.862-.017-.356-.04-.714-.172-1.083-.11.062-.206.108-.29.165-.386.26-.66.582-.906.915-.699.95-1.153 1.967-1.577 2.993-.021.052-.009.102.003.154.22.93.38 1.867.53 2.804.105.652.207 1.304.31 1.956zM.067 4.334c-.07.204-.066.412-.067.62-.002.941.139 1.874.308 2.807.147.81.352 1.613.551 2.417.191.78.391 1.558.6 2.335.2.739.272 1.487.348 2.236.005.054-.007.113.045.168.01-.016.023-.027.025-.039.136-1.097.292-2.191.469-3.282.172-1.064.337-2.129.58-3.186.032-.138.07-.272 0-.417-.141-.284-.247-.576-.382-.861-.357-.754-.737-1.502-1.306-2.189-.23-.278-.47-.555-.84-.754-.083-.052-.174-.145-.274-.112-.084.027-.053.141-.07.217-.002.013.008.027.013.04zm22.248-1.497a7.182 7.182 0 0 0-2.429-.4 1.25 1.25 0 0 0-.673.197c-.343.22-.58.494-.784.787-.042.06.003.084.056.116.233.139.45.303.646.49.676.643 1.022 1.392 1.307 2.16.087.234.164.47.256.734.28-.574.55-1.12.903-1.64.43-.632.893-1.249 1.699-1.682.063-.033.13-.056.195-.085.084-.022.033-.044 0-.066-.016-.048-.06-.082-.111-.112a.425.425 0 0 0-.19-.131 2.437 2.437 0 0 0-.596-.28c-.09-.035-.171-.083-.28-.088z" }) + ] + } + ); +}); + +exports.default = SiShowwcase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.d.ts new file mode 100644 index 000000000..cd4de7fe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0D14"; +declare const SiShowwcase: IconType; +export { SiShowwcase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.mjs new file mode 100644 index 000000000..f0fbdbdf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiShowwcase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0D14"; +const SiShowwcase = React.forwardRef(function SiShowwcase2({ title = "Showwcase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.554 2.938c.56-.103 1.126-.177 1.695-.22.128-.01.218-.031.273-.121.094-.153.26-.211.492-.228.624-.047 1.243-.05 1.869-.007.301.02.503.097.618.295.046.078.124.107.242.116.245.017.49.043.733.076.316.042.629.096.957.15a2.057 2.057 0 0 0-.244-.512c-.379-.605-.986-1.018-1.89-1.185-.679-.126-1.366-.114-2.054-.075-.43.025-.842.11-1.226.259-.8.307-1.193.831-1.466 1.452Zm-8.079.553c.272.103.527.245.757.423.503.385.849.843 1.17 1.313.356.522.637 1.067.901 1.62.053-.033.057-.07.068-.108.135-.437.293-.869.496-1.292.36-.75.841-1.444 1.718-1.953.088-.051.08-.087.015-.147a5.395 5.395 0 0 0-.927-.706 1.786 1.786 0 0 0-.955-.24c-.793.013-1.515.2-2.199.475-.394.158-.76.343-1.044.615Zm7.245-.165c-1.072.24-1.899.706-2.473 1.406-.458.557-.708 1.173-.936 1.793a15.233 15.233 0 0 0-.55 1.969 52.617 52.617 0 0 0-.589 3.215c-.122.783-.235 1.568-.34 2.354-.15 1.115-.285 2.23-.295 3.352-.01.985.021 1.966.44 2.916.274.623.746 1.135 1.54 1.477.823.353 1.724.544 2.647.688 1.366.213 2.755.283 4.148.3 1.498.016 2.994-.01 4.48-.167 1.09-.115 2.157-.29 3.168-.62.92-.3 1.59-.768 1.955-1.463.362-.69.486-1.408.528-2.136.095-1.644-.124-3.277-.354-4.91a83.408 83.408 0 0 0-.573-3.588c-.135-.73-.28-1.459-.468-2.182-.22-.84-.48-1.672-.931-2.466-.55-.967-1.473-1.65-2.876-1.944-3.4-.71-7.039-.326-8.521.006Zm14.169 9.746c0 .095.005.19.038.283l.111.766c-.016.048-.008.094.024.156.026-.064.083-.1.065-.155l.336-1.198c.023-.045.045-.089.033-.137.065-.11.08-.228.12-.342.244-.69.41-1.392.566-2.095.173-.773.321-1.55.512-2.32.236-.948.341-1.901.296-2.862-.017-.356-.04-.714-.172-1.083-.11.062-.206.108-.29.165-.386.26-.66.582-.906.915-.699.95-1.153 1.967-1.577 2.993-.021.052-.009.102.003.154.22.93.38 1.867.53 2.804.105.652.207 1.304.31 1.956zM.067 4.334c-.07.204-.066.412-.067.62-.002.941.139 1.874.308 2.807.147.81.352 1.613.551 2.417.191.78.391 1.558.6 2.335.2.739.272 1.487.348 2.236.005.054-.007.113.045.168.01-.016.023-.027.025-.039.136-1.097.292-2.191.469-3.282.172-1.064.337-2.129.58-3.186.032-.138.07-.272 0-.417-.141-.284-.247-.576-.382-.861-.357-.754-.737-1.502-1.306-2.189-.23-.278-.47-.555-.84-.754-.083-.052-.174-.145-.274-.112-.084.027-.053.141-.07.217-.002.013.008.027.013.04zm22.248-1.497a7.182 7.182 0 0 0-2.429-.4 1.25 1.25 0 0 0-.673.197c-.343.22-.58.494-.784.787-.042.06.003.084.056.116.233.139.45.303.646.49.676.643 1.022 1.392 1.307 2.16.087.234.164.47.256.734.28-.574.55-1.12.903-1.64.43-.632.893-1.249 1.699-1.682.063-.033.13-.056.195-.085.084-.022.033-.044 0-.066-.016-.048-.06-.082-.111-.112a.425.425 0 0 0-.19-.131 2.437 2.437 0 0 0-.596-.28c-.09-.035-.171-.083-.28-.088z" }) + ] + } + ); +}); + +export { SiShowwcase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.cjs new file mode 100644 index 000000000..ddf3f314a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B1003E"; +const SiSidekiq = React__namespace.forwardRef(function SiSidekiq2({ title = "Sidekiq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.639 23.767C4.145 22.67 0 17.815 0 12 0 5.377 5.377 0 12 0c4.47 0 8.373 2.449 10.437 6.078-.159.124-.425.289-.625.467-.183.162-.566.362-1.149.598-.366-.328-.607-.465-.722-.411-.174.081-1.435.742-2.023.919s-2.621 1.601-3.156 1.734c-.534.132-.984.284-1.218.461-.234.176-.526.105-.857.14-.167.018-.435.303-.924.434-.062.06-.114.163-.156.308-.328.957-.564 1.586-.711 1.887-.146.3-.407.711-.784 1.232.312.356.467.6.467.733 0 .2-.034 1.332-.143 1.863-.072.353-.145 2.126-.22 5.317 0 .554-.055.896-.166 1.028-.167.197-.361.727-.361.871 0 .026-.019.064-.05.108M22.747 6.659C23.549 8.268 24 10.082 24 12c0 6.623-5.377 12-12 12-.53 0-1.052-.034-1.564-.101.26-.328.445-.295.597-.434.151-.139.425-.514.288-.677-.092-.109-.137-.347-.137-.713.207-.122.365-.184.472-.184.161 0 .03-.574.239-1.178.14-.402.471-2.497.996-6.286.321-.946.539-1.465.653-1.556s.568-.477 1.363-1.156c1.262-.781 1.966-1.235 2.111-1.361.219-.19 2.354-.798 2.646-1.185.195-.258.608-.556 1.241-.895v-.241c.398-.137.66-.205.783-.205.186 0 .435.113.567-.177.133-.291.046-.615.231-.767.075-.061.169-.141.261-.225M9.253 13.361c-.02.045-.029.074-.026.081-.047.233-.019.481 0 .615.104.721-.598.905-.598.905l.37.319c.744-.136.744-1.083.744-1.083-.035-.131-.07-.56-.052-.678.002.001.436-.513.81-1.309.192-.409.374-.921.498-1.258.12-.326.143-.536.125-.595 0 .02-.219-.072-.428-.129 0-.004.001-.007.001-.011l-.376-.345c.899-.346 1.41-.598 1.533-.757.184-.238.516-.958.516-1.231 0-.181.027-.812.08-1.891-.526.066-.832.066-.92 0-.132-.099-.256-.493-.256-.826 0-.221-.068-.52-.205-.896l-.372-.103c-.056-.276-.115-.415-.178-.415q-.093 0-.198.198c-.079.303-.118.492-.118.566 0 .11-.08.424.118.65.132.151.288.427.466.826-.111.409-.111.669 0 .781.167.167 0 .388 0 .516q0 .1275-.09.594c-1.023.177-1.608.236-1.757.177s-.384.005-.706.193l-.409.392c.07-.302.07-.525 0-.666-.106-.213-.165-.347-.165-.54 0-.08-.111-.264-.111-.397 0-.054.015-.144.045-.269l-.291-.276c.068-.003.107-.023.115-.058q.0135-.0525-.189-.141c-.956.048-1.579.237-1.87.568-.291.33-.313.792-.067 1.387.172.283.32.491.446.623.126.131.319.272.58.422l-.343.195-.237.723-.576 1.053-.959 2.359-.185.564c.124.733.234 1.142.329 1.226.094.084.267.118.519.103.253.282.417.382.493.302.03-.032.078-.079.056-.234-.01-.07-.107-.205-.099-.296.007-.087.089-.185.116-.373.011-.081.011-.238 0-.469l1.519-1.556.874.185 1.154.205z" }) + ] + } + ); +}); + +exports.default = SiSidekiq; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.d.ts new file mode 100644 index 000000000..a0ebe8289 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B1003E"; +declare const SiSidekiq: IconType; +export { SiSidekiq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.mjs new file mode 100644 index 000000000..6fec41235 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSidekiq.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B1003E"; +const SiSidekiq = React.forwardRef(function SiSidekiq2({ title = "Sidekiq", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.639 23.767C4.145 22.67 0 17.815 0 12 0 5.377 5.377 0 12 0c4.47 0 8.373 2.449 10.437 6.078-.159.124-.425.289-.625.467-.183.162-.566.362-1.149.598-.366-.328-.607-.465-.722-.411-.174.081-1.435.742-2.023.919s-2.621 1.601-3.156 1.734c-.534.132-.984.284-1.218.461-.234.176-.526.105-.857.14-.167.018-.435.303-.924.434-.062.06-.114.163-.156.308-.328.957-.564 1.586-.711 1.887-.146.3-.407.711-.784 1.232.312.356.467.6.467.733 0 .2-.034 1.332-.143 1.863-.072.353-.145 2.126-.22 5.317 0 .554-.055.896-.166 1.028-.167.197-.361.727-.361.871 0 .026-.019.064-.05.108M22.747 6.659C23.549 8.268 24 10.082 24 12c0 6.623-5.377 12-12 12-.53 0-1.052-.034-1.564-.101.26-.328.445-.295.597-.434.151-.139.425-.514.288-.677-.092-.109-.137-.347-.137-.713.207-.122.365-.184.472-.184.161 0 .03-.574.239-1.178.14-.402.471-2.497.996-6.286.321-.946.539-1.465.653-1.556s.568-.477 1.363-1.156c1.262-.781 1.966-1.235 2.111-1.361.219-.19 2.354-.798 2.646-1.185.195-.258.608-.556 1.241-.895v-.241c.398-.137.66-.205.783-.205.186 0 .435.113.567-.177.133-.291.046-.615.231-.767.075-.061.169-.141.261-.225M9.253 13.361c-.02.045-.029.074-.026.081-.047.233-.019.481 0 .615.104.721-.598.905-.598.905l.37.319c.744-.136.744-1.083.744-1.083-.035-.131-.07-.56-.052-.678.002.001.436-.513.81-1.309.192-.409.374-.921.498-1.258.12-.326.143-.536.125-.595 0 .02-.219-.072-.428-.129 0-.004.001-.007.001-.011l-.376-.345c.899-.346 1.41-.598 1.533-.757.184-.238.516-.958.516-1.231 0-.181.027-.812.08-1.891-.526.066-.832.066-.92 0-.132-.099-.256-.493-.256-.826 0-.221-.068-.52-.205-.896l-.372-.103c-.056-.276-.115-.415-.178-.415q-.093 0-.198.198c-.079.303-.118.492-.118.566 0 .11-.08.424.118.65.132.151.288.427.466.826-.111.409-.111.669 0 .781.167.167 0 .388 0 .516q0 .1275-.09.594c-1.023.177-1.608.236-1.757.177s-.384.005-.706.193l-.409.392c.07-.302.07-.525 0-.666-.106-.213-.165-.347-.165-.54 0-.08-.111-.264-.111-.397 0-.054.015-.144.045-.269l-.291-.276c.068-.003.107-.023.115-.058q.0135-.0525-.189-.141c-.956.048-1.579.237-1.87.568-.291.33-.313.792-.067 1.387.172.283.32.491.446.623.126.131.319.272.58.422l-.343.195-.237.723-.576 1.053-.959 2.359-.185.564c.124.733.234 1.142.329 1.226.094.084.267.118.519.103.253.282.417.382.493.302.03-.032.078-.079.056-.234-.01-.07-.107-.205-.099-.296.007-.087.089-.185.116-.373.011-.081.011-.238 0-.469l1.519-1.556.874.185 1.154.205z" }) + ] + } + ); +}); + +export { SiSidekiq as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.cjs new file mode 100644 index 000000000..fc14b2820 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#101227"; +const SiSidequest = React__namespace.forwardRef(function SiSidequest2({ title = "SideQuest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.409 18.689 1.21H8.065l2.518 4.359.769 1.331-.918 1.592H8.598l-.769-1.333-2.517-4.36L0 11.999l5.311 9.199 2.518-4.36.769-1.333h1.836l.919 1.593-.77 1.332-2.517 4.359H18.69L24 13.59h-6.571l-.919-1.591.919-1.59H24ZM5.288 5.328 6.27 7.03 4.763 9.64h6.334l3.169-5.486h-3.015l-.983-1.702h7.046l-5.183 8.977H1.763l3.525-6.101Zm4.98 16.219.983-1.703h3.015l-3.169-5.488H4.763l1.507 2.611-.982 1.704-3.525-6.104h10.368l1.364 2.363 3.819 6.617h-7.046Zm8.084-4.062 1.505-2.61h1.969l-3.525 6.102-3.109-5.382-2.077-3.596 2.459-4.257 2.727-4.72 3.525 6.102h-1.969l-1.505-2.611-3.17 5.486 3.17 5.486Z" }) + ] + } + ); +}); + +exports.default = SiSidequest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.d.ts new file mode 100644 index 000000000..665931bc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#101227"; +declare const SiSidequest: IconType; +export { SiSidequest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.mjs new file mode 100644 index 000000000..df6a06cc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSidequest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#101227"; +const SiSidequest = React.forwardRef(function SiSidequest2({ title = "SideQuest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.409 18.689 1.21H8.065l2.518 4.359.769 1.331-.918 1.592H8.598l-.769-1.333-2.517-4.36L0 11.999l5.311 9.199 2.518-4.36.769-1.333h1.836l.919 1.593-.77 1.332-2.517 4.359H18.69L24 13.59h-6.571l-.919-1.591.919-1.59H24ZM5.288 5.328 6.27 7.03 4.763 9.64h6.334l3.169-5.486h-3.015l-.983-1.702h7.046l-5.183 8.977H1.763l3.525-6.101Zm4.98 16.219.983-1.703h3.015l-3.169-5.488H4.763l1.507 2.611-.982 1.704-3.525-6.104h10.368l1.364 2.363 3.819 6.617h-7.046Zm8.084-4.062 1.505-2.61h1.969l-3.525 6.102-3.109-5.382-2.077-3.596 2.459-4.257 2.727-4.72 3.525 6.102h-1.969l-1.505-2.611-3.17 5.486 3.17 5.486Z" }) + ] + } + ); +}); + +export { SiSidequest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.cjs new file mode 100644 index 000000000..78b9eb989 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009999"; +const SiSiemens = React__namespace.forwardRef(function SiSiemens2({ title = "Siemens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.478 10.016c.24 0 .59.046 1.046.14v.726a2.465 2.465 0 0 0-.946-.213c-.41 0-.615.118-.615.354 0 .088.041.16.124.216.069.045.258.14.568.286.446.208.743.388.89.541.176.182.264.417.264.705 0 .415-.172.73-.516.949-.279.176-.64.264-1.085.264-.375 0-.753-.046-1.133-.139v-.755c.41.135.774.203 1.09.203.437 0 .655-.121.655-.362a.302.302 0 0 0-.095-.227c-.065-.065-.232-.155-.5-.27-.481-.208-.795-.384-.94-.53a.999.999 0 0 1-.284-.73c0-.377.137-.666.413-.864.272-.196.626-.294 1.064-.294zm21.19 0c.246 0 .565.04.956.123l.09.016v.727a2.471 2.471 0 0 0-.948-.213c-.409 0-.612.118-.612.354 0 .088.04.16.123.216.066.043.256.139.57.286.443.208.74.388.889.541.176.182.264.417.264.705 0 .415-.172.73-.514.949-.28.176-.643.264-1.087.264-.376 0-.754-.046-1.134-.139v-.755c.407.135.77.203 1.09.203.437 0 .655-.121.655-.362 0-.09-.03-.166-.092-.227-.066-.065-.233-.155-.503-.27-.48-.206-.793-.382-.94-.53a.997.997 0 0 1-.284-.732c0-.376.137-.664.413-.862.272-.196.627-.294 1.064-.294zm-12.674.066l.92 2.444.942-2.444h1.257v3.825h-.968v-2.708l-1.072 2.747h-.632l-1.052-2.747v2.708H8.67v-3.825zm-5.587 0v3.825H3.386v-3.825zm3.554 0v.692H6.327v.864H7.75v.63H6.327v.908h1.677v.73h-2.66v-3.824zm8.707 0v.692h-1.634v.864h1.422v.63h-1.422v.908h1.677v.73H14.05v-3.824zm1.898 0l1.255 2.56v-2.56h.719v3.825h-1.15l-1.288-2.595v2.595h-.72v-3.825z" }) + ] + } + ); +}); + +exports.default = SiSiemens; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.d.ts new file mode 100644 index 000000000..3cf499474 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009999"; +declare const SiSiemens: IconType; +export { SiSiemens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.mjs new file mode 100644 index 000000000..57d842270 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSiemens.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009999"; +const SiSiemens = React.forwardRef(function SiSiemens2({ title = "Siemens", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.478 10.016c.24 0 .59.046 1.046.14v.726a2.465 2.465 0 0 0-.946-.213c-.41 0-.615.118-.615.354 0 .088.041.16.124.216.069.045.258.14.568.286.446.208.743.388.89.541.176.182.264.417.264.705 0 .415-.172.73-.516.949-.279.176-.64.264-1.085.264-.375 0-.753-.046-1.133-.139v-.755c.41.135.774.203 1.09.203.437 0 .655-.121.655-.362a.302.302 0 0 0-.095-.227c-.065-.065-.232-.155-.5-.27-.481-.208-.795-.384-.94-.53a.999.999 0 0 1-.284-.73c0-.377.137-.666.413-.864.272-.196.626-.294 1.064-.294zm21.19 0c.246 0 .565.04.956.123l.09.016v.727a2.471 2.471 0 0 0-.948-.213c-.409 0-.612.118-.612.354 0 .088.04.16.123.216.066.043.256.139.57.286.443.208.74.388.889.541.176.182.264.417.264.705 0 .415-.172.73-.514.949-.28.176-.643.264-1.087.264-.376 0-.754-.046-1.134-.139v-.755c.407.135.77.203 1.09.203.437 0 .655-.121.655-.362 0-.09-.03-.166-.092-.227-.066-.065-.233-.155-.503-.27-.48-.206-.793-.382-.94-.53a.997.997 0 0 1-.284-.732c0-.376.137-.664.413-.862.272-.196.627-.294 1.064-.294zm-12.674.066l.92 2.444.942-2.444h1.257v3.825h-.968v-2.708l-1.072 2.747h-.632l-1.052-2.747v2.708H8.67v-3.825zm-5.587 0v3.825H3.386v-3.825zm3.554 0v.692H6.327v.864H7.75v.63H6.327v.908h1.677v.73h-2.66v-3.824zm8.707 0v.692h-1.634v.864h1.422v.63h-1.422v.908h1.677v.73H14.05v-3.824zm1.898 0l1.255 2.56v-2.56h.719v3.825h-1.15l-1.288-2.595v2.595h-.72v-3.825z" }) + ] + } + ); +}); + +export { SiSiemens as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.cjs new file mode 100644 index 000000000..bd3e31b04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#252323"; +const SiSifive = React__namespace.forwardRef(function SiSifive2({ title = "SiFive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.9056 12.4076 6.0245 2.737h11.9511l1.2129 3.7623H8.6317l-.6751 2.1342h11.92l1.792 5.5583L12 21.319l-9.1888-6.7771h6.2049l2.9565 2.1805 5.8505-4.3125-14.9175-.0023zM19.4166.4426H4.5835L0 14.7306l12 8.8268 12-8.8298L19.4165.4427z" }) + ] + } + ); +}); + +exports.default = SiSifive; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.d.ts new file mode 100644 index 000000000..c8c290c75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#252323"; +declare const SiSifive: IconType; +export { SiSifive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.mjs new file mode 100644 index 000000000..ae8eb6f65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSifive.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#252323"; +const SiSifive = React.forwardRef(function SiSifive2({ title = "SiFive", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.9056 12.4076 6.0245 2.737h11.9511l1.2129 3.7623H8.6317l-.6751 2.1342h11.92l1.792 5.5583L12 21.319l-9.1888-6.7771h6.2049l2.9565 2.1805 5.8505-4.3125-14.9175-.0023zM19.4166.4426H4.5835L0 14.7306l12 8.8268 12-8.8298L19.4165.4427z" }) + ] + } + ); +}); + +export { SiSifive as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.cjs new file mode 100644 index 000000000..d35609353 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B45FD"; +const SiSignal = React__namespace.forwardRef(function SiSignal2({ title = "Signal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0q-.934 0-1.83.139l.17 1.111a11 11 0 0 1 3.32 0l.172-1.111A12 12 0 0 0 12 0M9.152.34A12 12 0 0 0 5.77 1.742l.584.961a10.8 10.8 0 0 1 3.066-1.27zm5.696 0-.268 1.094a10.8 10.8 0 0 1 3.066 1.27l.584-.962A12 12 0 0 0 14.848.34M12 2.25a9.75 9.75 0 0 0-8.539 14.459c.074.134.1.292.064.441l-1.013 4.338 4.338-1.013a.62.62 0 0 1 .441.064A9.7 9.7 0 0 0 12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-7.092.068a12 12 0 0 0-2.59 2.59l.909.664a11 11 0 0 1 2.345-2.345zm14.184 0-.664.909a11 11 0 0 1 2.345 2.345l.909-.664a12 12 0 0 0-2.59-2.59M1.742 5.77A12 12 0 0 0 .34 9.152l1.094.268a10.8 10.8 0 0 1 1.269-3.066zm20.516 0-.961.584a10.8 10.8 0 0 1 1.27 3.066l1.093-.268a12 12 0 0 0-1.402-3.383M.138 10.168A12 12 0 0 0 0 12q0 .934.139 1.83l1.111-.17A11 11 0 0 1 1.125 12q0-.848.125-1.66zm23.723.002-1.111.17q.125.812.125 1.66c0 .848-.042 1.12-.125 1.66l1.111.172a12.1 12.1 0 0 0 0-3.662M1.434 14.58l-1.094.268a12 12 0 0 0 .96 2.591l-.265 1.14 1.096.255.36-1.539-.188-.365a10.8 10.8 0 0 1-.87-2.35m21.133 0a10.8 10.8 0 0 1-1.27 3.067l.962.584a12 12 0 0 0 1.402-3.383zm-1.793 3.848a11 11 0 0 1-2.345 2.345l.664.909a12 12 0 0 0 2.59-2.59zm-19.959 1.1L.357 21.48a1.8 1.8 0 0 0 2.162 2.161l1.954-.455-.256-1.095-1.953.455a.675.675 0 0 1-.81-.81l.454-1.954zm16.832 1.769a10.8 10.8 0 0 1-3.066 1.27l.268 1.093a12 12 0 0 0 3.382-1.402zm-10.94.213-1.54.36.256 1.095 1.139-.266c.814.415 1.683.74 2.591.961l.268-1.094a10.8 10.8 0 0 1-2.35-.869zm3.634 1.24-.172 1.111a12.1 12.1 0 0 0 3.662 0l-.17-1.111q-.812.125-1.66.125a11 11 0 0 1-1.66-.125" }) + ] + } + ); +}); + +exports.default = SiSignal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.d.ts new file mode 100644 index 000000000..9a5bb6479 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B45FD"; +declare const SiSignal: IconType; +export { SiSignal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.mjs new file mode 100644 index 000000000..68198509b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSignal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B45FD"; +const SiSignal = React.forwardRef(function SiSignal2({ title = "Signal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0q-.934 0-1.83.139l.17 1.111a11 11 0 0 1 3.32 0l.172-1.111A12 12 0 0 0 12 0M9.152.34A12 12 0 0 0 5.77 1.742l.584.961a10.8 10.8 0 0 1 3.066-1.27zm5.696 0-.268 1.094a10.8 10.8 0 0 1 3.066 1.27l.584-.962A12 12 0 0 0 14.848.34M12 2.25a9.75 9.75 0 0 0-8.539 14.459c.074.134.1.292.064.441l-1.013 4.338 4.338-1.013a.62.62 0 0 1 .441.064A9.7 9.7 0 0 0 12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-7.092.068a12 12 0 0 0-2.59 2.59l.909.664a11 11 0 0 1 2.345-2.345zm14.184 0-.664.909a11 11 0 0 1 2.345 2.345l.909-.664a12 12 0 0 0-2.59-2.59M1.742 5.77A12 12 0 0 0 .34 9.152l1.094.268a10.8 10.8 0 0 1 1.269-3.066zm20.516 0-.961.584a10.8 10.8 0 0 1 1.27 3.066l1.093-.268a12 12 0 0 0-1.402-3.383M.138 10.168A12 12 0 0 0 0 12q0 .934.139 1.83l1.111-.17A11 11 0 0 1 1.125 12q0-.848.125-1.66zm23.723.002-1.111.17q.125.812.125 1.66c0 .848-.042 1.12-.125 1.66l1.111.172a12.1 12.1 0 0 0 0-3.662M1.434 14.58l-1.094.268a12 12 0 0 0 .96 2.591l-.265 1.14 1.096.255.36-1.539-.188-.365a10.8 10.8 0 0 1-.87-2.35m21.133 0a10.8 10.8 0 0 1-1.27 3.067l.962.584a12 12 0 0 0 1.402-3.383zm-1.793 3.848a11 11 0 0 1-2.345 2.345l.664.909a12 12 0 0 0 2.59-2.59zm-19.959 1.1L.357 21.48a1.8 1.8 0 0 0 2.162 2.161l1.954-.455-.256-1.095-1.953.455a.675.675 0 0 1-.81-.81l.454-1.954zm16.832 1.769a10.8 10.8 0 0 1-3.066 1.27l.268 1.093a12 12 0 0 0 3.382-1.402zm-10.94.213-1.54.36.256 1.095 1.139-.266c.814.415 1.683.74 2.591.961l.268-1.094a10.8 10.8 0 0 1-2.35-.869zm3.634 1.24-.172 1.111a12.1 12.1 0 0 0 3.662 0l-.17-1.111q-.812.125-1.66.125a11 11 0 0 1-1.66-.125" }) + ] + } + ); +}); + +export { SiSignal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.cjs new file mode 100644 index 000000000..9bce424de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D0006F"; +const SiSilverairways = React__namespace.forwardRef(function SiSilverairways2({ title = "Silver Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.102 20.437v-2.675a1.339 1.339 0 0 0-.06-.357.216.216 0 0 1-.007-.03 6.631 6.631 0 0 1-.03-.934c.016-.117.05-.234.075-.35 0-.004.011-.008.011-.011 0-.053.018-.12-.008-.153-.025-.033-.09.01-.128.029-.15.069-.313.099-.464.164-.193.083-.398.132-.591.217a3.616 3.616 0 0 1-.406.143c-.128.04-.25.095-.376.138-.126.043-.241.087-.361.129-.174.06-.346.125-.528.17a.435.435 0 0 0-.207.143.048.048 0 0 0-.008.043c.09.143 0 .254-.07.362-.068.108-.166.195-.228.305-.061.11-.142.193-.207.294-.114.173-.255.327-.383.49-.05.062-.096.127-.144.19a.636.636 0 0 1-.105.12.162.162 0 0 1-.109.012c-.009 0-.016-.045-.018-.069-.013-.152.052-.286.112-.418.101-.218.208-.434.32-.648a1.455 1.455 0 0 0 .139-.41c.013-.074.018-.147.029-.22.02-.123.1-.196.207-.26.171-.099.36-.15.54-.223.138-.056.276-.107.415-.16.207-.08.41-.158.614-.24.142-.057.286-.112.429-.168.207-.083.423-.157.634-.235.105-.04.211-.079.315-.12.153-.059.307-.116.457-.18a.225.225 0 0 0 .143-.177c.021-.112.048-.214 0-.324a.35.35 0 0 1 0-.132v-3.506a.576.576 0 0 0-.11-.336 1.678 1.678 0 0 0-.188-.222c-.116-.12-.212-.255-.319-.382a1.048 1.048 0 0 0-.523-.337.65.65 0 0 0-.219-.034c-.077.005-.155 0-.233 0-.217 0-.432.057-.65.033-.054-.006-.093.076-.163.014-.032-.028-.104-.011-.158-.013a.76.76 0 0 1-.182-.003c-.148-.044-.3-.07-.445-.128a11.382 11.382 0 0 0-.65-.234c-.22-.072-.426-.127-.63-.207a1.67 1.67 0 0 1-.715-.512 2.168 2.168 0 0 1-.304-.539c-.049-.125-.063-.26-.121-.38a.08.08 0 0 1-.006-.032c0-.08.012-.161-.034-.235 0-.305-.006-.61.006-.914a1.115 1.115 0 0 1 .03-.185c.014-.062.02-.126.034-.185.033-.134.086-.263.13-.395a3.477 3.477 0 0 1 .233-.5 2.48 2.48 0 0 1 .315-.469c.108-.126.198-.27.32-.38.192-.171.372-.357.59-.5.074-.048.137-.12.206-.176.175-.138.33-.295.506-.429.117-.09.217-.197.325-.296a2.23 2.23 0 0 0 .184-.154 2.256 2.256 0 0 0 .31-.42c.046-.086.091-.174.139-.256.069-.11.083-.232.121-.345a.71.71 0 0 0-.1-.339 1.672 1.672 0 0 0-.247-.232.258.258 0 0 0-.306-.01c-.121.068-.258.068-.384.116-.035.013-.083-.008-.124-.015-.016 0-.03-.016-.044-.015-.15.012-.276-.056-.397-.125-.07-.04-.148-.07-.221-.108a1.212 1.212 0 0 0-.223-.06.572.572 0 0 0-.356.054 1.52 1.52 0 0 0-.507.34 11.48 11.48 0 0 1-.457.423.89.89 0 0 1-.183.117c-.102.053-.154.018-.171-.092a.71.71 0 0 1 .041-.267 2.671 2.671 0 0 1 .092-.31c.036-.102.07-.207.1-.307A1.696 1.696 0 0 1 5.65.952c.182-.268.457-.392.74-.494A2.104 2.104 0 0 1 6.789.37a1.624 1.624 0 0 0 .397-.08c.118-.05.243-.08.362-.129a1.48 1.48 0 0 1 .436-.126c.063-.005.119-.044.186-.033.249.04.49.088.692.262a3.27 3.27 0 0 1 .276.25 2.42 2.42 0 0 1 .48.716 2.125 2.125 0 0 1 .162.599 3.135 3.135 0 0 1 .025.402c0 .096-.025.19-.03.286a1.763 1.763 0 0 1-.06.257 3.041 3.041 0 0 1-.309.82 2.143 2.143 0 0 1-.328.48c-.04.042-.069.097-.107.138a2.786 2.786 0 0 1-.617.477 3.847 3.847 0 0 0-.602.386c-.115.095-.24.19-.309.335-.188.163-.267.395-.374.609a3.387 3.387 0 0 0-.187.537c-.046.15-.042.31-.098.458a.133.133 0 0 0 0 .033c-.007.079.01.158-.03.237a.183.183 0 0 0 0 .16c.054.07 0 .148.053.214s.07.155.123.213a.577.577 0 0 0 .341.172 1.856 1.856 0 0 0 .297 0c.004-.092.01-.184.013-.276a.928.928 0 0 1 0-.116c.01-.07-.02-.146.027-.222.034-.053-.025-.139.038-.2.013-.255.133-.475.24-.698a1.93 1.93 0 0 1 .187-.287 2.666 2.666 0 0 1 .175-.207c.15-.17.346-.287.527-.415.228-.156.484-.243.743-.333a1.634 1.634 0 0 1 .622-.1c.133.006.266-.004.4 0 .084.004.166-.02.254.026.065.036.161-.022.233.038.099-.023.19.025.284.038.095.013.184.04.277.055.113.02.224.048.336.074.15.036.3.069.45.118l.337.107a7.576 7.576 0 0 1 1.202.508c.228.117.465.244.691.383.227.14.437.262.643.415.144.106.29.207.436.31.121.084.23.184.357.261.07.04.12.104.185.153.114.083.208.188.318.276.392.324.725.708 1.089 1.06.047.045.108.068.144.137a1.056 1.056 0 0 1 .078.168 1.568 1.568 0 0 0 .29.512 7.377 7.377 0 0 1 .46.622c.076.11.099.247.144.372a1.114 1.114 0 0 1 .069.438c-.006.1.007.2 0 .299a1.297 1.297 0 0 1-.132.493.4.4 0 0 1-.036.07.05.05 0 0 1-.042.013c-.01 0-.018-.024-.02-.038-.021-.09-.045-.183-.06-.276a1.994 1.994 0 0 0-.124-.382 7.084 7.084 0 0 0-.276-.665c-.12-.248-.315-.286-.507-.267-.01 0-.03.036-.025.047.04.094.085.186.13.276a5.817 5.817 0 0 1 .322.814c.069.216.113.44.175.659.005.017-.008.04-.013.06-.018-.006-.044-.007-.055-.02-.035-.04-.064-.085-.095-.126-.005-.006-.016-.008-.024-.013 0 .01-.012.022-.01.029.057.159.003.328.039.484a2.923 2.923 0 0 1 .027.37c.008.084.026.167.032.252.006.084 0 .166 0 .249 0 .018.022.035.028.054a.077.077 0 0 1-.055.085c-.04.006-.032-.028-.045-.05a.54.54 0 0 1-.069-.207 3.097 3.097 0 0 0-.074-.334c-.027-.105-.062-.207-.089-.312a5.035 5.035 0 0 0-.186-.604 6.155 6.155 0 0 0-.211-.477 3.158 3.158 0 0 0-.227-.356 3.42 3.42 0 0 0-.331-.36.465.465 0 0 0-.06-.058.058.058 0 0 0-.081.043v.3a.169.169 0 0 1 0 .064c-.006.013-.04.026-.049.02a.178.178 0 0 1-.048-.062 1.113 1.113 0 0 1-.093-.177 1.452 1.452 0 0 0-.288-.477 2.309 2.309 0 0 0-.438-.419 1.74 1.74 0 0 1-.228-.165c-.1-.093-.226-.11-.34-.15a.333.333 0 0 0-.294.069c-.077.063-.15.045-.228.054a.228.228 0 0 1-.16-.059c-.17-.118-.254-.116-.474-.08-.256.042-.463.169-.67.308a1.257 1.257 0 0 1-.516.202c-.108.016-.215.01-.32.03-.155.03-.317.025-.47.07a1.076 1.076 0 0 0-.245.127.38.38 0 0 0-.12.097c-.115.166-.118.283-.004.45.062.09.128.18.2.265q.2.239.387.484c.108.138.233.268.338.41.104.143.22.271.322.415.102.144.235.276.346.422.163.202.322.408.483.613a3.72 3.72 0 0 0 .473.5.776.776 0 0 1 .208.213c.011.023.038.05.033.07a.18.18 0 0 1-.058.084.956.956 0 0 1-.277.132c-.276.1-.553.193-.83.288-.276.094-.547.173-.813.282-.265.11-.542.158-.793.293-.012.007-.033 0-.047 0a.167.167 0 0 0-.139.177.612.612 0 0 0 .027.222c.026.073.006.163.006.246 0 .228-.008.455 0 .682.005.1-.043.187-.038.285a.91.91 0 0 1 0 .298c-.044.146-.006.294-.031.436-.047.266-.026.534-.03.8-.004.267.025.546-.007.814-.04.335-.018.667-.026 1-.008.333.024.667-.008.997-.045.484-.012.968-.026 1.452 0 .11.006.107.064.255.037.096.076.19.12.283a.224.224 0 0 1-.089.283.09.09 0 0 1-.044.013h-.265c-.089 0-.152.039-.236.037a29.968 29.968 0 0 0-1.03 0 .471.471 0 0 0-.171.026c-.09.034-.18-.034-.265-.07-.01-.003-.01-.063 0-.084a.338.338 0 0 1 .224-.139c.202-.046.399-.113.601-.153.128-.026.254-.062.384-.08a.814.814 0 0 0 .253-.07.22.22 0 0 0 .117-.18c.003-.04 0-.078 0-.117zm.465-5.566v.365c0 .033-.012.053.047.03.09-.036.179-.077.27-.109a9.12 9.12 0 0 0 .515-.198c.17-.07.355-.131.53-.202.175-.072.353-.139.531-.2a2.29 2.29 0 0 0 .24-.1c.063-.03.079-.08.045-.13-.081-.116-.16-.234-.247-.345a8.168 8.168 0 0 0-.435-.533c-.139-.156-.271-.32-.411-.477-.14-.156-.255-.305-.386-.454a12.227 12.227 0 0 1-.562-.663c-.008-.011-.033-.024-.04-.02a.07.07 0 0 0-.03.043c-.013.284 0 .566-.027.85-.031.301 0 .608-.008.912-.008.304.022.6-.03.899a2.034 2.034 0 0 0-.003.332z" }) + ] + } + ); +}); + +exports.default = SiSilverairways; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.d.ts new file mode 100644 index 000000000..25b1606b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D0006F"; +declare const SiSilverairways: IconType; +export { SiSilverairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.mjs new file mode 100644 index 000000000..0f29e070a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSilverairways.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D0006F"; +const SiSilverairways = React.forwardRef(function SiSilverairways2({ title = "Silver Airways", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.102 20.437v-2.675a1.339 1.339 0 0 0-.06-.357.216.216 0 0 1-.007-.03 6.631 6.631 0 0 1-.03-.934c.016-.117.05-.234.075-.35 0-.004.011-.008.011-.011 0-.053.018-.12-.008-.153-.025-.033-.09.01-.128.029-.15.069-.313.099-.464.164-.193.083-.398.132-.591.217a3.616 3.616 0 0 1-.406.143c-.128.04-.25.095-.376.138-.126.043-.241.087-.361.129-.174.06-.346.125-.528.17a.435.435 0 0 0-.207.143.048.048 0 0 0-.008.043c.09.143 0 .254-.07.362-.068.108-.166.195-.228.305-.061.11-.142.193-.207.294-.114.173-.255.327-.383.49-.05.062-.096.127-.144.19a.636.636 0 0 1-.105.12.162.162 0 0 1-.109.012c-.009 0-.016-.045-.018-.069-.013-.152.052-.286.112-.418.101-.218.208-.434.32-.648a1.455 1.455 0 0 0 .139-.41c.013-.074.018-.147.029-.22.02-.123.1-.196.207-.26.171-.099.36-.15.54-.223.138-.056.276-.107.415-.16.207-.08.41-.158.614-.24.142-.057.286-.112.429-.168.207-.083.423-.157.634-.235.105-.04.211-.079.315-.12.153-.059.307-.116.457-.18a.225.225 0 0 0 .143-.177c.021-.112.048-.214 0-.324a.35.35 0 0 1 0-.132v-3.506a.576.576 0 0 0-.11-.336 1.678 1.678 0 0 0-.188-.222c-.116-.12-.212-.255-.319-.382a1.048 1.048 0 0 0-.523-.337.65.65 0 0 0-.219-.034c-.077.005-.155 0-.233 0-.217 0-.432.057-.65.033-.054-.006-.093.076-.163.014-.032-.028-.104-.011-.158-.013a.76.76 0 0 1-.182-.003c-.148-.044-.3-.07-.445-.128a11.382 11.382 0 0 0-.65-.234c-.22-.072-.426-.127-.63-.207a1.67 1.67 0 0 1-.715-.512 2.168 2.168 0 0 1-.304-.539c-.049-.125-.063-.26-.121-.38a.08.08 0 0 1-.006-.032c0-.08.012-.161-.034-.235 0-.305-.006-.61.006-.914a1.115 1.115 0 0 1 .03-.185c.014-.062.02-.126.034-.185.033-.134.086-.263.13-.395a3.477 3.477 0 0 1 .233-.5 2.48 2.48 0 0 1 .315-.469c.108-.126.198-.27.32-.38.192-.171.372-.357.59-.5.074-.048.137-.12.206-.176.175-.138.33-.295.506-.429.117-.09.217-.197.325-.296a2.23 2.23 0 0 0 .184-.154 2.256 2.256 0 0 0 .31-.42c.046-.086.091-.174.139-.256.069-.11.083-.232.121-.345a.71.71 0 0 0-.1-.339 1.672 1.672 0 0 0-.247-.232.258.258 0 0 0-.306-.01c-.121.068-.258.068-.384.116-.035.013-.083-.008-.124-.015-.016 0-.03-.016-.044-.015-.15.012-.276-.056-.397-.125-.07-.04-.148-.07-.221-.108a1.212 1.212 0 0 0-.223-.06.572.572 0 0 0-.356.054 1.52 1.52 0 0 0-.507.34 11.48 11.48 0 0 1-.457.423.89.89 0 0 1-.183.117c-.102.053-.154.018-.171-.092a.71.71 0 0 1 .041-.267 2.671 2.671 0 0 1 .092-.31c.036-.102.07-.207.1-.307A1.696 1.696 0 0 1 5.65.952c.182-.268.457-.392.74-.494A2.104 2.104 0 0 1 6.789.37a1.624 1.624 0 0 0 .397-.08c.118-.05.243-.08.362-.129a1.48 1.48 0 0 1 .436-.126c.063-.005.119-.044.186-.033.249.04.49.088.692.262a3.27 3.27 0 0 1 .276.25 2.42 2.42 0 0 1 .48.716 2.125 2.125 0 0 1 .162.599 3.135 3.135 0 0 1 .025.402c0 .096-.025.19-.03.286a1.763 1.763 0 0 1-.06.257 3.041 3.041 0 0 1-.309.82 2.143 2.143 0 0 1-.328.48c-.04.042-.069.097-.107.138a2.786 2.786 0 0 1-.617.477 3.847 3.847 0 0 0-.602.386c-.115.095-.24.19-.309.335-.188.163-.267.395-.374.609a3.387 3.387 0 0 0-.187.537c-.046.15-.042.31-.098.458a.133.133 0 0 0 0 .033c-.007.079.01.158-.03.237a.183.183 0 0 0 0 .16c.054.07 0 .148.053.214s.07.155.123.213a.577.577 0 0 0 .341.172 1.856 1.856 0 0 0 .297 0c.004-.092.01-.184.013-.276a.928.928 0 0 1 0-.116c.01-.07-.02-.146.027-.222.034-.053-.025-.139.038-.2.013-.255.133-.475.24-.698a1.93 1.93 0 0 1 .187-.287 2.666 2.666 0 0 1 .175-.207c.15-.17.346-.287.527-.415.228-.156.484-.243.743-.333a1.634 1.634 0 0 1 .622-.1c.133.006.266-.004.4 0 .084.004.166-.02.254.026.065.036.161-.022.233.038.099-.023.19.025.284.038.095.013.184.04.277.055.113.02.224.048.336.074.15.036.3.069.45.118l.337.107a7.576 7.576 0 0 1 1.202.508c.228.117.465.244.691.383.227.14.437.262.643.415.144.106.29.207.436.31.121.084.23.184.357.261.07.04.12.104.185.153.114.083.208.188.318.276.392.324.725.708 1.089 1.06.047.045.108.068.144.137a1.056 1.056 0 0 1 .078.168 1.568 1.568 0 0 0 .29.512 7.377 7.377 0 0 1 .46.622c.076.11.099.247.144.372a1.114 1.114 0 0 1 .069.438c-.006.1.007.2 0 .299a1.297 1.297 0 0 1-.132.493.4.4 0 0 1-.036.07.05.05 0 0 1-.042.013c-.01 0-.018-.024-.02-.038-.021-.09-.045-.183-.06-.276a1.994 1.994 0 0 0-.124-.382 7.084 7.084 0 0 0-.276-.665c-.12-.248-.315-.286-.507-.267-.01 0-.03.036-.025.047.04.094.085.186.13.276a5.817 5.817 0 0 1 .322.814c.069.216.113.44.175.659.005.017-.008.04-.013.06-.018-.006-.044-.007-.055-.02-.035-.04-.064-.085-.095-.126-.005-.006-.016-.008-.024-.013 0 .01-.012.022-.01.029.057.159.003.328.039.484a2.923 2.923 0 0 1 .027.37c.008.084.026.167.032.252.006.084 0 .166 0 .249 0 .018.022.035.028.054a.077.077 0 0 1-.055.085c-.04.006-.032-.028-.045-.05a.54.54 0 0 1-.069-.207 3.097 3.097 0 0 0-.074-.334c-.027-.105-.062-.207-.089-.312a5.035 5.035 0 0 0-.186-.604 6.155 6.155 0 0 0-.211-.477 3.158 3.158 0 0 0-.227-.356 3.42 3.42 0 0 0-.331-.36.465.465 0 0 0-.06-.058.058.058 0 0 0-.081.043v.3a.169.169 0 0 1 0 .064c-.006.013-.04.026-.049.02a.178.178 0 0 1-.048-.062 1.113 1.113 0 0 1-.093-.177 1.452 1.452 0 0 0-.288-.477 2.309 2.309 0 0 0-.438-.419 1.74 1.74 0 0 1-.228-.165c-.1-.093-.226-.11-.34-.15a.333.333 0 0 0-.294.069c-.077.063-.15.045-.228.054a.228.228 0 0 1-.16-.059c-.17-.118-.254-.116-.474-.08-.256.042-.463.169-.67.308a1.257 1.257 0 0 1-.516.202c-.108.016-.215.01-.32.03-.155.03-.317.025-.47.07a1.076 1.076 0 0 0-.245.127.38.38 0 0 0-.12.097c-.115.166-.118.283-.004.45.062.09.128.18.2.265q.2.239.387.484c.108.138.233.268.338.41.104.143.22.271.322.415.102.144.235.276.346.422.163.202.322.408.483.613a3.72 3.72 0 0 0 .473.5.776.776 0 0 1 .208.213c.011.023.038.05.033.07a.18.18 0 0 1-.058.084.956.956 0 0 1-.277.132c-.276.1-.553.193-.83.288-.276.094-.547.173-.813.282-.265.11-.542.158-.793.293-.012.007-.033 0-.047 0a.167.167 0 0 0-.139.177.612.612 0 0 0 .027.222c.026.073.006.163.006.246 0 .228-.008.455 0 .682.005.1-.043.187-.038.285a.91.91 0 0 1 0 .298c-.044.146-.006.294-.031.436-.047.266-.026.534-.03.8-.004.267.025.546-.007.814-.04.335-.018.667-.026 1-.008.333.024.667-.008.997-.045.484-.012.968-.026 1.452 0 .11.006.107.064.255.037.096.076.19.12.283a.224.224 0 0 1-.089.283.09.09 0 0 1-.044.013h-.265c-.089 0-.152.039-.236.037a29.968 29.968 0 0 0-1.03 0 .471.471 0 0 0-.171.026c-.09.034-.18-.034-.265-.07-.01-.003-.01-.063 0-.084a.338.338 0 0 1 .224-.139c.202-.046.399-.113.601-.153.128-.026.254-.062.384-.08a.814.814 0 0 0 .253-.07.22.22 0 0 0 .117-.18c.003-.04 0-.078 0-.117zm.465-5.566v.365c0 .033-.012.053.047.03.09-.036.179-.077.27-.109a9.12 9.12 0 0 0 .515-.198c.17-.07.355-.131.53-.202.175-.072.353-.139.531-.2a2.29 2.29 0 0 0 .24-.1c.063-.03.079-.08.045-.13-.081-.116-.16-.234-.247-.345a8.168 8.168 0 0 0-.435-.533c-.139-.156-.271-.32-.411-.477-.14-.156-.255-.305-.386-.454a12.227 12.227 0 0 1-.562-.663c-.008-.011-.033-.024-.04-.02a.07.07 0 0 0-.03.043c-.013.284 0 .566-.027.85-.031.301 0 .608-.008.912-.008.304.022.6-.03.899a2.034 2.034 0 0 0-.003.332z" }) + ] + } + ); +}); + +export { SiSilverairways as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.cjs new file mode 100644 index 000000000..225f3b46c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#092540"; +const SiSimilarweb = React__namespace.forwardRef(function SiSimilarweb2({ title = "Similarweb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.099 5.781c-1.283-2-3.14-3.67-5.27-4.52l-.63-.213a7.433 7.433 0 0 0-2.15-.331c-2.307.01-4.175 1.92-4.175 4.275a4.3 4.3 0 0 0 .867 2.602l-.26-.342c.124.186.26.37.417.556.663.802 1.604 1.635 2.822 2.58 2.999 2.32 4.943 4.378 5.104 6.93.038.344.062.696.062 1.051 0 1.297-.283 2.67-.764 3.635h.005s-.207.377-.077.487c.066.057.21.1.46-.053a12.104 12.104 0 0 0 3.4-3.33 12.111 12.111 0 0 0 2.088-6.635 12.098 12.098 0 0 0-1.9-6.692zm-9.096 8.718-1.878-1.55c-3.934-2.87-5.98-5.966-4.859-9.783a8.73 8.73 0 0 1 .37-1.016v-.004s.278-.583-.327-.295a12.067 12.067 0 0 0-6.292 9.975 12.11 12.11 0 0 0 2.053 7.421 9.394 9.394 0 0 0 2.154 2.168H4.22c4.148 3.053 7.706 1.446 7.706 1.446h.003a4.847 4.847 0 0 0 2.962-4.492 4.855 4.855 0 0 0-1.889-3.87z" }) + ] + } + ); +}); + +exports.default = SiSimilarweb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.d.ts new file mode 100644 index 000000000..02572206e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#092540"; +declare const SiSimilarweb: IconType; +export { SiSimilarweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.mjs new file mode 100644 index 000000000..09b336963 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimilarweb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#092540"; +const SiSimilarweb = React.forwardRef(function SiSimilarweb2({ title = "Similarweb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.099 5.781c-1.283-2-3.14-3.67-5.27-4.52l-.63-.213a7.433 7.433 0 0 0-2.15-.331c-2.307.01-4.175 1.92-4.175 4.275a4.3 4.3 0 0 0 .867 2.602l-.26-.342c.124.186.26.37.417.556.663.802 1.604 1.635 2.822 2.58 2.999 2.32 4.943 4.378 5.104 6.93.038.344.062.696.062 1.051 0 1.297-.283 2.67-.764 3.635h.005s-.207.377-.077.487c.066.057.21.1.46-.053a12.104 12.104 0 0 0 3.4-3.33 12.111 12.111 0 0 0 2.088-6.635 12.098 12.098 0 0 0-1.9-6.692zm-9.096 8.718-1.878-1.55c-3.934-2.87-5.98-5.966-4.859-9.783a8.73 8.73 0 0 1 .37-1.016v-.004s.278-.583-.327-.295a12.067 12.067 0 0 0-6.292 9.975 12.11 12.11 0 0 0 2.053 7.421 9.394 9.394 0 0 0 2.154 2.168H4.22c4.148 3.053 7.706 1.446 7.706 1.446h.003a4.847 4.847 0 0 0 2.962-4.492 4.855 4.855 0 0 0-1.889-3.87z" }) + ] + } + ); +}); + +export { SiSimilarweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.cjs new file mode 100644 index 000000000..8a14a2cb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSimkl = React__namespace.forwardRef(function SiSimkl2({ title = "Simkl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.84 0A3.832 3.832 0 0 0 0 3.84v16.32A3.832 3.832 0 0 0 3.84 24h16.32A3.832 3.832 0 0 0 24 20.16V3.84A3.832 3.832 0 0 0 20.16 0zm8.567 4.11c2.074 0 3.538.061 4.393.186 1.127.168 1.94.46 2.438.877.672.578 1.009 1.613 1.009 3.104 0 .161-.004.417-.01.768h-4.234c-.014-.358-.039-.607-.074-.746-.098-.41-.42-.64-.966-.692-.484-.043-1.66-.066-3.53-.066-1.85 0-2.946.056-3.289.165-.385.133-.578.474-.578 1.024 0 .528.203.851.61.969.343.095 1.887.187 4.633.275 2.487.073 4.073.165 4.76.275.693.11 1.244.275 1.654.495.41.22.737.532.983.936.37.595.557 1.552.557 2.873 0 1.475-.182 2.557-.546 3.247-.364.683-.96 1.149-1.785 1.398-.812.25-3.05.374-6.71.374-2.226 0-3.832-.062-4.82-.187-1.204-.147-2.068-.434-2.593-.86-.567-.456-.903-1.1-1.008-1.93a10.522 10.522 0 0 1-.085-1.434v-.789H7.44c-.007.74.136 1.216.43 1.428.154.102.33.167.525.203.196.037.54.063 1.03.077a166.2 166.2 0 0 0 2.405.022c1.862-.007 2.94-.018 3.234-.033.553-.044.917-.12 1.092-.23.245-.161.368-.52.368-1.077 0-.38-.078-.648-.231-.802-.211-.212-.712-.325-1.503-.34-.547 0-1.688-.044-3.425-.132-1.794-.088-2.956-.14-3.488-.154-1.387-.044-2.364-.212-2.932-.505-.728-.373-1.205-1.01-1.429-1.91-.126-.498-.189-1.15-.189-1.956 0-1.698.309-2.895.925-3.59.462-.527 1.163-.875 2.102-1.044.848-.146 2.865-.22 6.053-.22z" }) + ] + } + ); +}); + +exports.default = SiSimkl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.d.ts new file mode 100644 index 000000000..ed6106a83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSimkl: IconType; +export { SiSimkl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.mjs new file mode 100644 index 000000000..2def48deb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimkl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSimkl = React.forwardRef(function SiSimkl2({ title = "Simkl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.84 0A3.832 3.832 0 0 0 0 3.84v16.32A3.832 3.832 0 0 0 3.84 24h16.32A3.832 3.832 0 0 0 24 20.16V3.84A3.832 3.832 0 0 0 20.16 0zm8.567 4.11c2.074 0 3.538.061 4.393.186 1.127.168 1.94.46 2.438.877.672.578 1.009 1.613 1.009 3.104 0 .161-.004.417-.01.768h-4.234c-.014-.358-.039-.607-.074-.746-.098-.41-.42-.64-.966-.692-.484-.043-1.66-.066-3.53-.066-1.85 0-2.946.056-3.289.165-.385.133-.578.474-.578 1.024 0 .528.203.851.61.969.343.095 1.887.187 4.633.275 2.487.073 4.073.165 4.76.275.693.11 1.244.275 1.654.495.41.22.737.532.983.936.37.595.557 1.552.557 2.873 0 1.475-.182 2.557-.546 3.247-.364.683-.96 1.149-1.785 1.398-.812.25-3.05.374-6.71.374-2.226 0-3.832-.062-4.82-.187-1.204-.147-2.068-.434-2.593-.86-.567-.456-.903-1.1-1.008-1.93a10.522 10.522 0 0 1-.085-1.434v-.789H7.44c-.007.74.136 1.216.43 1.428.154.102.33.167.525.203.196.037.54.063 1.03.077a166.2 166.2 0 0 0 2.405.022c1.862-.007 2.94-.018 3.234-.033.553-.044.917-.12 1.092-.23.245-.161.368-.52.368-1.077 0-.38-.078-.648-.231-.802-.211-.212-.712-.325-1.503-.34-.547 0-1.688-.044-3.425-.132-1.794-.088-2.956-.14-3.488-.154-1.387-.044-2.364-.212-2.932-.505-.728-.373-1.205-1.01-1.429-1.91-.126-.498-.189-1.15-.189-1.956 0-1.698.309-2.895.925-3.59.462-.527 1.163-.875 2.102-1.044.848-.146 2.865-.22 6.053-.22z" }) + ] + } + ); +}); + +export { SiSimkl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.cjs new file mode 100644 index 000000000..1a097e806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4F64"; +const SiSimpleanalytics = React__namespace.forwardRef(function SiSimpleanalytics2({ title = "Simple Analytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.019 13.019h3.849V24h-3.85zm8.943-6.68h3.85V24h-3.85zM19.132 0h3.85v24h-3.85z" }) + ] + } + ); +}); + +exports.default = SiSimpleanalytics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.d.ts new file mode 100644 index 000000000..6bb2dca92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4F64"; +declare const SiSimpleanalytics: IconType; +export { SiSimpleanalytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.mjs new file mode 100644 index 000000000..e0f55aaa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleanalytics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4F64"; +const SiSimpleanalytics = React.forwardRef(function SiSimpleanalytics2({ title = "Simple Analytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.019 13.019h3.849V24h-3.85zm8.943-6.68h3.85V24h-3.85zM19.132 0h3.85v24h-3.85z" }) + ] + } + ); +}); + +export { SiSimpleanalytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.cjs new file mode 100644 index 000000000..c25a9ae5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111111"; +const SiSimpleicons = React__namespace.forwardRef(function SiSimpleicons2({ title = "Simple Icons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C8.688 0 6 2.688 6 6s2.688 6 6 6c4.64-.001 7.526 5.039 5.176 9.04h1.68A7.507 7.507 0 0 0 12 10.5 4.502 4.502 0 0 1 7.5 6c0-2.484 2.016-4.5 4.5-4.5s4.5 2.016 4.5 4.5H18c0-3.312-2.688-6-6-6Zm0 3a3 3 0 0 0 0 6c4 0 4-6 0-6Zm0 1.5A1.5 1.5 0 0 1 13.5 6v.002c-.002 1.336-1.617 2.003-2.561 1.058C9.995 6.115 10.664 4.5 12 4.5ZM7.5 15v1.5H9v6H4.5V24h15v-1.5H15v-6h1.5V15Zm3 1.5h3v6h-3zm-6 1.47c0 1.09.216 2.109.644 3.069h1.684A5.957 5.957 0 0 1 6 17.97Z" }) + ] + } + ); +}); + +exports.default = SiSimpleicons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.d.ts new file mode 100644 index 000000000..b80caa52e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111111"; +declare const SiSimpleicons: IconType; +export { SiSimpleicons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.mjs new file mode 100644 index 000000000..8218c3435 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimpleicons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111111"; +const SiSimpleicons = React.forwardRef(function SiSimpleicons2({ title = "Simple Icons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C8.688 0 6 2.688 6 6s2.688 6 6 6c4.64-.001 7.526 5.039 5.176 9.04h1.68A7.507 7.507 0 0 0 12 10.5 4.502 4.502 0 0 1 7.5 6c0-2.484 2.016-4.5 4.5-4.5s4.5 2.016 4.5 4.5H18c0-3.312-2.688-6-6-6Zm0 3a3 3 0 0 0 0 6c4 0 4-6 0-6Zm0 1.5A1.5 1.5 0 0 1 13.5 6v.002c-.002 1.336-1.617 2.003-2.561 1.058C9.995 6.115 10.664 4.5 12 4.5ZM7.5 15v1.5H9v6H4.5V24h15v-1.5H15v-6h1.5V15Zm3 1.5h3v6h-3zm-6 1.47c0 1.09.216 2.109.644 3.069h1.684A5.957 5.957 0 0 1 6 17.97Z" }) + ] + } + ); +}); + +export { SiSimpleicons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.cjs new file mode 100644 index 000000000..e30b5696f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#222B33"; +const SiSimplelocalize = React__namespace.forwardRef(function SiSimplelocalize2({ title = "SimpleLocalize", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.62 1.5q1.63 0 3.017.834a6.1 6.1 0 0 1 2.175 2.197 3.5 3.5 0 0 1 1.988-.606q1.5 0 2.55 1.06 1.05 1.062 1.05 2.577a4 4 0 0 1-.225 1.327q1.65.34 2.738 1.667Q24 11.882 24 13.625q0 1.326-.637 2.444a4.7 4.7 0 0 1-1.666 1.715c-1.966 1.409-6.07 3.414-11.223 4.683-1.866.459 3.785-3.98.853-3.98q-.15 0-.24-.011L5.4 18.475a5.17 5.17 0 0 1-2.7-.74 5.53 5.53 0 0 1-1.969-1.99A5.3 5.3 0 0 1 0 13.02q0-1.78 1.013-3.183T3.6 7.866v-.303a6 6 0 0 1 .806-3.032A6 6 0 0 1 6.6 2.315 5.86 5.86 0 0 1 9.62 1.5" }) + ] + } + ); +}); + +exports.default = SiSimplelocalize; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.d.ts new file mode 100644 index 000000000..2ddb0fc9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#222B33"; +declare const SiSimplelocalize: IconType; +export { SiSimplelocalize as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.mjs new file mode 100644 index 000000000..6138011a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelocalize.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#222B33"; +const SiSimplelocalize = React.forwardRef(function SiSimplelocalize2({ title = "SimpleLocalize", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.62 1.5q1.63 0 3.017.834a6.1 6.1 0 0 1 2.175 2.197 3.5 3.5 0 0 1 1.988-.606q1.5 0 2.55 1.06 1.05 1.062 1.05 2.577a4 4 0 0 1-.225 1.327q1.65.34 2.738 1.667Q24 11.882 24 13.625q0 1.326-.637 2.444a4.7 4.7 0 0 1-1.666 1.715c-1.966 1.409-6.07 3.414-11.223 4.683-1.866.459 3.785-3.98.853-3.98q-.15 0-.24-.011L5.4 18.475a5.17 5.17 0 0 1-2.7-.74 5.53 5.53 0 0 1-1.969-1.99A5.3 5.3 0 0 1 0 13.02q0-1.78 1.013-3.183T3.6 7.866v-.303a6 6 0 0 1 .806-3.032A6 6 0 0 1 6.6 2.315 5.86 5.86 0 0 1 9.62 1.5" }) + ] + } + ); +}); + +export { SiSimplelocalize as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.cjs new file mode 100644 index 000000000..5ccbd28ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA319F"; +const SiSimplelogin = React__namespace.forwardRef(function SiSimplelogin2({ title = "SimpleLogin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.451 3.672c.106.105.199.222.277.348.178.293.272.628.272.97v9.604c0 .342-.095.679-.274.971a1.899 1.899 0 0 1-.383.444c-.335.286-.76.443-1.201.443H11.727a9.773 9.773 0 0 1-5.2 4.365l-.136.049-.135-.052a9.741 9.741 0 0 1-4.499-3.526A9.702 9.702 0 0 1 0 11.701a9.794 9.794 0 0 1 .227-2.1l.052-.237.236-.058c.055-.013.109-.028.162-.042a11.979 11.979 0 0 0 5.568-3.262l.04-.043.232-.239v-.73c0-.343.095-.68.274-.972.078-.126.171-.242.278-.346a1.835 1.835 0 0 1 1.193-.537h13.994a1.84 1.84 0 0 1 1.195.537Zm-15.075.346c-.033 0-.066.001-.098.004h-.142l.023.021 6.815 6.029a.435.435 0 0 0 .576 0l6.815-6.029.023-.021h-.146a1.042 1.042 0 0 0-.098-.004H8.376Zm-.898.605a.945.945 0 0 0-.072.367v1.586a11.997 11.997 0 0 0 4.938 2.681l.114.029.057.015.237.058.051.239a8.49 8.49 0 0 1 .1.565l.417-.369-5.842-5.171ZM2.329 16.719a9.049 9.049 0 0 0 4.074 3.312 8.997 8.997 0 0 0 5.68-10.036 12.736 12.736 0 0 1-5.555-3.169 12.751 12.751 0 0 1-5.583 3.177 9.044 9.044 0 0 0-.161 1.698 9.038 9.038 0 0 0 1.545 5.018Zm10.684-5.098a9.709 9.709 0 0 1-.837 3.944h10.212l-.028-.025-5.826-5.153-.985.87a.43.43 0 0 1-.575 0l-.985-.87-.984.87c.005.122.008.242.008.364Zm10.029 3.339a.94.94 0 0 0 .072-.366l.001-9.603a.967.967 0 0 0-.071-.364l-5.84 5.168 5.838 5.165ZM6.609 8.206a10.24 10.24 0 0 0 4.379 2.464c.074.404.113.813.118 1.223v.082a7.233 7.233 0 0 1-1.705 4.655l-.007.008a7.234 7.234 0 0 1-2.97 2.095 7.259 7.259 0 0 1-4.515-6.692c0-.458.043-.915.129-1.365a10.252 10.252 0 0 0 4.486-2.551l.084.081h.001Zm-3.177 5.053 2.752 2.752h.001l3.831-3.831-.847-.846-2.983 2.984-1.908-1.907-.846.848Z" }) + ] + } + ); +}); + +exports.default = SiSimplelogin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.d.ts new file mode 100644 index 000000000..26f97f58e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA319F"; +declare const SiSimplelogin: IconType; +export { SiSimplelogin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.mjs new file mode 100644 index 000000000..8b4df1a38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplelogin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA319F"; +const SiSimplelogin = React.forwardRef(function SiSimplelogin2({ title = "SimpleLogin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.451 3.672c.106.105.199.222.277.348.178.293.272.628.272.97v9.604c0 .342-.095.679-.274.971a1.899 1.899 0 0 1-.383.444c-.335.286-.76.443-1.201.443H11.727a9.773 9.773 0 0 1-5.2 4.365l-.136.049-.135-.052a9.741 9.741 0 0 1-4.499-3.526A9.702 9.702 0 0 1 0 11.701a9.794 9.794 0 0 1 .227-2.1l.052-.237.236-.058c.055-.013.109-.028.162-.042a11.979 11.979 0 0 0 5.568-3.262l.04-.043.232-.239v-.73c0-.343.095-.68.274-.972.078-.126.171-.242.278-.346a1.835 1.835 0 0 1 1.193-.537h13.994a1.84 1.84 0 0 1 1.195.537Zm-15.075.346c-.033 0-.066.001-.098.004h-.142l.023.021 6.815 6.029a.435.435 0 0 0 .576 0l6.815-6.029.023-.021h-.146a1.042 1.042 0 0 0-.098-.004H8.376Zm-.898.605a.945.945 0 0 0-.072.367v1.586a11.997 11.997 0 0 0 4.938 2.681l.114.029.057.015.237.058.051.239a8.49 8.49 0 0 1 .1.565l.417-.369-5.842-5.171ZM2.329 16.719a9.049 9.049 0 0 0 4.074 3.312 8.997 8.997 0 0 0 5.68-10.036 12.736 12.736 0 0 1-5.555-3.169 12.751 12.751 0 0 1-5.583 3.177 9.044 9.044 0 0 0-.161 1.698 9.038 9.038 0 0 0 1.545 5.018Zm10.684-5.098a9.709 9.709 0 0 1-.837 3.944h10.212l-.028-.025-5.826-5.153-.985.87a.43.43 0 0 1-.575 0l-.985-.87-.984.87c.005.122.008.242.008.364Zm10.029 3.339a.94.94 0 0 0 .072-.366l.001-9.603a.967.967 0 0 0-.071-.364l-5.84 5.168 5.838 5.165ZM6.609 8.206a10.24 10.24 0 0 0 4.379 2.464c.074.404.113.813.118 1.223v.082a7.233 7.233 0 0 1-1.705 4.655l-.007.008a7.234 7.234 0 0 1-2.97 2.095 7.259 7.259 0 0 1-4.515-6.692c0-.458.043-.915.129-1.365a10.252 10.252 0 0 0 4.486-2.551l.084.081h.001Zm-3.177 5.053 2.752 2.752h.001l3.831-3.831-.847-.846-2.983 2.984-1.908-1.907-.846.848Z" }) + ] + } + ); +}); + +export { SiSimplelogin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.cjs new file mode 100644 index 000000000..b07e65306 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3361CC"; +const SiSimplenote = React__namespace.forwardRef(function SiSimplenote2({ title = "Simplenote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.466 3.62c-.004.052-.014.104-.018.158-.406 4.626 2.747 8.548 8.03 9.994 2.024.553 5.374 2.018 5.06 5.599a5.063 5.063 0 0 1-1.803 3.46c-1.022.857-2.308 1.21-3.64 1.166C5.147 23.794 0 18.367 0 12.05c0-3.285 1.325-6.262 3.467-8.428zM9.82 1.032c.907-.762 2.056-1.078 3.235-1.027C18.996.27 24 5.67 24 11.936c0 2.855-1.001 5.478-2.667 7.536.332-4.908-2.94-8.897-8.59-10.441-2.337-.64-4.749-2.274-4.514-4.948A4.467 4.467 0 0 1 9.82 1.03z" }) + ] + } + ); +}); + +exports.default = SiSimplenote; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.d.ts new file mode 100644 index 000000000..f368daae1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3361CC"; +declare const SiSimplenote: IconType; +export { SiSimplenote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.mjs new file mode 100644 index 000000000..81aa0f968 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplenote.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3361CC"; +const SiSimplenote = React.forwardRef(function SiSimplenote2({ title = "Simplenote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.466 3.62c-.004.052-.014.104-.018.158-.406 4.626 2.747 8.548 8.03 9.994 2.024.553 5.374 2.018 5.06 5.599a5.063 5.063 0 0 1-1.803 3.46c-1.022.857-2.308 1.21-3.64 1.166C5.147 23.794 0 18.367 0 12.05c0-3.285 1.325-6.262 3.467-8.428zM9.82 1.032c.907-.762 2.056-1.078 3.235-1.027C18.996.27 24 5.67 24 11.936c0 2.855-1.001 5.478-2.667 7.536.332-4.908-2.94-8.897-8.59-10.441-2.337-.64-4.749-2.274-4.514-4.948A4.467 4.467 0 0 1 9.82 1.03z" }) + ] + } + ); +}); + +export { SiSimplenote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.cjs new file mode 100644 index 000000000..1a139a0d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSimplex = React__namespace.forwardRef(function SiSimplex2({ title = "SimpleX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.1 0-4.026 4.025L8.125.076 6.113 2.09l3.95 3.947-3.975 3.977L2.14 6.066.109 8.096l3.948 3.947L0 16.1l1.975 1.972 4.056-4.056 3.95 3.947 2.029-2.027-3.95-3.95 3.975-3.972 3.951 3.949-4.025 4.023v.002L9.947 18l-4.023 4.025L7.896 24l4.026-4.025 3.95 3.949 2.013-2.014-3.951-3.95 4.027-4.024 3.95 3.949 2.013-2.012-3.95-3.95L24 7.899l-1.975-1.972L18 9.949 14.049 6l4.025-4.025z" }) + ] + } + ); +}); + +exports.default = SiSimplex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.d.ts new file mode 100644 index 000000000..4151e366b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSimplex: IconType; +export { SiSimplex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.mjs new file mode 100644 index 000000000..78cba0b0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSimplex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSimplex = React.forwardRef(function SiSimplex2({ title = "SimpleX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.1 0-4.026 4.025L8.125.076 6.113 2.09l3.95 3.947-3.975 3.977L2.14 6.066.109 8.096l3.948 3.947L0 16.1l1.975 1.972 4.056-4.056 3.95 3.947 2.029-2.027-3.95-3.95 3.975-3.972 3.951 3.949-4.025 4.023v.002L9.947 18l-4.023 4.025L7.896 24l4.026-4.025 3.95 3.949 2.013-2.014-3.951-3.95 4.027-4.024 3.95 3.949 2.013-2.012-3.95-3.95L24 7.899l-1.975-1.972L18 9.949 14.049 6l4.025-4.025z" }) + ] + } + ); +}); + +export { SiSimplex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.cjs new file mode 100644 index 000000000..66a4b604c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E6162D"; +const SiSinaweibo = React__namespace.forwardRef(function SiSinaweibo2({ title = "Sina Weibo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.098 20.323c-3.977.391-7.414-1.406-7.672-4.02-.259-2.609 2.759-5.047 6.74-5.441 3.979-.394 7.413 1.404 7.671 4.018.259 2.6-2.759 5.049-6.737 5.439l-.002.004zM9.05 17.219c-.384.616-1.208.884-1.829.602-.612-.279-.793-.991-.406-1.593.379-.595 1.176-.861 1.793-.601.622.263.82.972.442 1.592zm1.27-1.627c-.141.237-.449.353-.689.253-.236-.09-.313-.361-.177-.586.138-.227.436-.346.672-.24.239.09.315.36.18.601l.014-.028zm.176-2.719c-1.893-.493-4.033.45-4.857 2.118-.836 1.704-.026 3.591 1.886 4.21 1.983.64 4.318-.341 5.132-2.179.8-1.793-.201-3.642-2.161-4.149zm7.563-1.224c-.346-.105-.57-.18-.405-.615.375-.977.42-1.804 0-2.404-.781-1.112-2.915-1.053-5.364-.03 0 0-.766.331-.571-.271.376-1.217.315-2.224-.27-2.809-1.338-1.337-4.869.045-7.888 3.08C1.309 10.87 0 13.273 0 15.348c0 3.981 5.099 6.395 10.086 6.395 6.536 0 10.888-3.801 10.888-6.82 0-1.822-1.547-2.854-2.915-3.284v.01zm1.908-5.092c-.766-.856-1.908-1.187-2.96-.962-.436.09-.706.511-.616.932.09.42.511.691.932.602.511-.105 1.067.044 1.442.465.376.421.466.977.316 1.473-.136.406.089.856.51.992.405.119.857-.105.992-.512.33-1.021.12-2.178-.646-3.035l.03.045zm2.418-2.195c-1.576-1.757-3.905-2.419-6.054-1.968-.496.104-.812.587-.706 1.081.104.496.586.813 1.082.707 1.532-.331 3.185.15 4.296 1.383 1.112 1.246 1.429 2.943.947 4.416-.165.48.106 1.007.586 1.157.479.165.991-.104 1.157-.586.675-2.088.241-4.478-1.338-6.235l.03.045z" }) + ] + } + ); +}); + +exports.default = SiSinaweibo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.d.ts new file mode 100644 index 000000000..d39e586cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E6162D"; +declare const SiSinaweibo: IconType; +export { SiSinaweibo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.mjs new file mode 100644 index 000000000..b68550195 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSinaweibo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E6162D"; +const SiSinaweibo = React.forwardRef(function SiSinaweibo2({ title = "Sina Weibo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.098 20.323c-3.977.391-7.414-1.406-7.672-4.02-.259-2.609 2.759-5.047 6.74-5.441 3.979-.394 7.413 1.404 7.671 4.018.259 2.6-2.759 5.049-6.737 5.439l-.002.004zM9.05 17.219c-.384.616-1.208.884-1.829.602-.612-.279-.793-.991-.406-1.593.379-.595 1.176-.861 1.793-.601.622.263.82.972.442 1.592zm1.27-1.627c-.141.237-.449.353-.689.253-.236-.09-.313-.361-.177-.586.138-.227.436-.346.672-.24.239.09.315.36.18.601l.014-.028zm.176-2.719c-1.893-.493-4.033.45-4.857 2.118-.836 1.704-.026 3.591 1.886 4.21 1.983.64 4.318-.341 5.132-2.179.8-1.793-.201-3.642-2.161-4.149zm7.563-1.224c-.346-.105-.57-.18-.405-.615.375-.977.42-1.804 0-2.404-.781-1.112-2.915-1.053-5.364-.03 0 0-.766.331-.571-.271.376-1.217.315-2.224-.27-2.809-1.338-1.337-4.869.045-7.888 3.08C1.309 10.87 0 13.273 0 15.348c0 3.981 5.099 6.395 10.086 6.395 6.536 0 10.888-3.801 10.888-6.82 0-1.822-1.547-2.854-2.915-3.284v.01zm1.908-5.092c-.766-.856-1.908-1.187-2.96-.962-.436.09-.706.511-.616.932.09.42.511.691.932.602.511-.105 1.067.044 1.442.465.376.421.466.977.316 1.473-.136.406.089.856.51.992.405.119.857-.105.992-.512.33-1.021.12-2.178-.646-3.035l.03.045zm2.418-2.195c-1.576-1.757-3.905-2.419-6.054-1.968-.496.104-.812.587-.706 1.081.104.496.586.813 1.082.707 1.532-.331 3.185.15 4.296 1.383 1.112 1.246 1.429 2.943.947 4.416-.165.48.106 1.007.586 1.157.479.165.991-.104 1.157-.586.675-2.088.241-4.478-1.338-6.235l.03.045z" }) + ] + } + ); +}); + +export { SiSinaweibo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.cjs new file mode 100644 index 000000000..d9fdb75ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F99F1C"; +const SiSingaporeairlines = React__namespace.forwardRef(function SiSingaporeairlines2({ title = "Singapore Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.981 0 7.786 1.79c-.473.728-.062 1.51-.062 1.51l5.475 9.055c1.263 2.17-.536 4.535-.536 4.535L9.36 22.015h2.738c1.387 0 2.014-1.133 2.014-1.133l1.73-2.673c.628-.978 1.45-1.008 1.45-1.008h1.572c-.977.41-1.418 1.418-1.418 1.418l-1.946 2.993c-.76 1.133-1.643.969-1.643.969h-7.83l3.713-5.792c.875-1.318 0-2.42 0-2.42L4.796 6.355 3.756 7.93c-.907 1.45-.032 2.294-.032 2.294l3.56 5.722c.79 1.193.224 1.914.224 1.914l-4 6.14h10.513a2.97 2.97 0 0 0 2.674-1.574l2.232-3.364c.535-.852 1.728-.728 1.728-.728l-1.512-2.388h-2.17c-1.542 0-2.14 1.286-2.14 1.286l-2.045 3.117h-.002c-.187.225-.404.505-.628.35-.217-.155.093-.566.093-.566l2.744-4.28c.404-.666 1.133-1.986 1.133-3.148 0-1.162-.915-2.666-.915-2.666zM7.004 3.146 5.618 5.224c-.41.69 0 1.41 0 1.41l4.69 7.77c.659 1.161.154 2.262.154 2.262l-3.364 5.31h1.668l3.62-5.622c1.543-2.332.124-4.216.124-4.216z" }) + ] + } + ); +}); + +exports.default = SiSingaporeairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.d.ts new file mode 100644 index 000000000..f8d5a7ff0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F99F1C"; +declare const SiSingaporeairlines: IconType; +export { SiSingaporeairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.mjs new file mode 100644 index 000000000..b917e3a72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSingaporeairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F99F1C"; +const SiSingaporeairlines = React.forwardRef(function SiSingaporeairlines2({ title = "Singapore Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.981 0 7.786 1.79c-.473.728-.062 1.51-.062 1.51l5.475 9.055c1.263 2.17-.536 4.535-.536 4.535L9.36 22.015h2.738c1.387 0 2.014-1.133 2.014-1.133l1.73-2.673c.628-.978 1.45-1.008 1.45-1.008h1.572c-.977.41-1.418 1.418-1.418 1.418l-1.946 2.993c-.76 1.133-1.643.969-1.643.969h-7.83l3.713-5.792c.875-1.318 0-2.42 0-2.42L4.796 6.355 3.756 7.93c-.907 1.45-.032 2.294-.032 2.294l3.56 5.722c.79 1.193.224 1.914.224 1.914l-4 6.14h10.513a2.97 2.97 0 0 0 2.674-1.574l2.232-3.364c.535-.852 1.728-.728 1.728-.728l-1.512-2.388h-2.17c-1.542 0-2.14 1.286-2.14 1.286l-2.045 3.117h-.002c-.187.225-.404.505-.628.35-.217-.155.093-.566.093-.566l2.744-4.28c.404-.666 1.133-1.986 1.133-3.148 0-1.162-.915-2.666-.915-2.666zM7.004 3.146 5.618 5.224c-.41.69 0 1.41 0 1.41l4.69 7.77c.659 1.161.154 2.262.154 2.262l-3.364 5.31h1.668l3.62-5.622c1.543-2.332.124-4.216.124-4.216z" }) + ] + } + ); +}); + +export { SiSingaporeairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.cjs new file mode 100644 index 000000000..f24ec292a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AA00FF"; +const SiSinglestore = React__namespace.forwardRef(function SiSinglestore2({ title = "SingleStore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.029 5.063c-.914-1.916-2.8-3.432-5.114-4.033C11.4.887 10.858.83 10.258.8c-.886 0-1.743.114-2.629.343-2.2.658-3.742 1.945-4.657 2.947C1.801 5.435 1.03 6.837.572 8.238c0 .029-.028.057-.028.115C.515 8.467.4 8.81.4 8.896c-.029.057-.029.143-.057.2l-.086.344c0 .028 0 .057-.028.086-.743 3.69.49 7.001 1.234 8.231.185.308.338.564.49.8C.27 9.403 5.116 5.035 10.63 4.92c2.886-.057 5.771 1.116 7.171 3.461-.086-1.287-.171-2.002-.771-3.318zM12.543 0c2.572.715 4.914 2.517 5.886 4.72 1.485 3.575 1.143 8.095-.486 10.784-1.371 2.203-3.485 3.375-5.914 3.347-3.771-.029-6.828-3.032-6.857-6.808 0-3.776 2.971-6.894 6.857-6.894.629 0 1.535.087 2.563.516 0 0-.739-.438-2.638-.732C6.497 4.218.058 8.353 1.544 17.878c2.057 3.662 6 6.15 10.485 6.122 6.6-.029 12-5.435 11.97-12.072C24 5.578 18.83.172 12.544 0z" }) + ] + } + ); +}); + +exports.default = SiSinglestore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.d.ts new file mode 100644 index 000000000..b9ab0b4c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AA00FF"; +declare const SiSinglestore: IconType; +export { SiSinglestore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.mjs new file mode 100644 index 000000000..0b759986e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSinglestore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AA00FF"; +const SiSinglestore = React.forwardRef(function SiSinglestore2({ title = "SingleStore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.029 5.063c-.914-1.916-2.8-3.432-5.114-4.033C11.4.887 10.858.83 10.258.8c-.886 0-1.743.114-2.629.343-2.2.658-3.742 1.945-4.657 2.947C1.801 5.435 1.03 6.837.572 8.238c0 .029-.028.057-.028.115C.515 8.467.4 8.81.4 8.896c-.029.057-.029.143-.057.2l-.086.344c0 .028 0 .057-.028.086-.743 3.69.49 7.001 1.234 8.231.185.308.338.564.49.8C.27 9.403 5.116 5.035 10.63 4.92c2.886-.057 5.771 1.116 7.171 3.461-.086-1.287-.171-2.002-.771-3.318zM12.543 0c2.572.715 4.914 2.517 5.886 4.72 1.485 3.575 1.143 8.095-.486 10.784-1.371 2.203-3.485 3.375-5.914 3.347-3.771-.029-6.828-3.032-6.857-6.808 0-3.776 2.971-6.894 6.857-6.894.629 0 1.535.087 2.563.516 0 0-.739-.438-2.638-.732C6.497 4.218.058 8.353 1.544 17.878c2.057 3.662 6 6.15 10.485 6.122 6.6-.029 12-5.435 11.97-12.072C24 5.578 18.83.172 12.544 0z" }) + ] + } + ); +}); + +export { SiSinglestore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.cjs new file mode 100644 index 000000000..4dc954996 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB1F1F"; +const SiSitecore = React__namespace.forwardRef(function SiSitecore2({ title = "Sitecore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0Zm0 3.266A8.714 8.714 0 0 1 20.734 12c0 4.815-3.92 8.734-8.734 8.734A8.73 8.73 0 0 1 3.266 12 8.73 8.73 0 0 1 12 3.266Zm6.701 3.847-2.878 1.839c.87 1.379.991 2.879.314 4.403-.774 1.838-2.613 3.41-4.694 4.16a7.337 7.337 0 0 0 2.662-.87c2.032-1.137 3.194-3.073 3.29-5.468v-.218h2.83c-.168-1.427-.725-2.734-1.524-3.846Zm-.87 4.282c-.17 2.42-1.428 4.476-3.508 5.613a8.13 8.13 0 0 1-3.92.992 9.19 9.19 0 0 1-3.194-.58c1.259.774 2.662 1.21 4.113 1.21h.025c2.613 0 4.984-1.38 6.314-3.727l.121-.193 1.621 1.04A8.166 8.166 0 0 0 20.3 12c0-.194-.025-.387-.025-.605zm.072 3.943c-1.427 2.323-3.846 3.726-6.556 3.726-2.637 0-5.105-1.306-6.847-3.532 1.33 2.807 4.185 4.766 7.5 4.766a8.267 8.267 0 0 0 7.185-4.161z" }) + ] + } + ); +}); + +exports.default = SiSitecore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.d.ts new file mode 100644 index 000000000..a9fa6eef3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB1F1F"; +declare const SiSitecore: IconType; +export { SiSitecore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.mjs new file mode 100644 index 000000000..8c656de80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSitecore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB1F1F"; +const SiSitecore = React.forwardRef(function SiSitecore2({ title = "Sitecore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0Zm0 3.266A8.714 8.714 0 0 1 20.734 12c0 4.815-3.92 8.734-8.734 8.734A8.73 8.73 0 0 1 3.266 12 8.73 8.73 0 0 1 12 3.266Zm6.701 3.847-2.878 1.839c.87 1.379.991 2.879.314 4.403-.774 1.838-2.613 3.41-4.694 4.16a7.337 7.337 0 0 0 2.662-.87c2.032-1.137 3.194-3.073 3.29-5.468v-.218h2.83c-.168-1.427-.725-2.734-1.524-3.846Zm-.87 4.282c-.17 2.42-1.428 4.476-3.508 5.613a8.13 8.13 0 0 1-3.92.992 9.19 9.19 0 0 1-3.194-.58c1.259.774 2.662 1.21 4.113 1.21h.025c2.613 0 4.984-1.38 6.314-3.727l.121-.193 1.621 1.04A8.166 8.166 0 0 0 20.3 12c0-.194-.025-.387-.025-.605zm.072 3.943c-1.427 2.323-3.846 3.726-6.556 3.726-2.637 0-5.105-1.306-6.847-3.532 1.33 2.807 4.185 4.766 7.5 4.766a8.267 8.267 0 0 0 7.185-4.161z" }) + ] + } + ); +}); + +export { SiSitecore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.cjs new file mode 100644 index 000000000..c7d26e70a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#258AAF"; +const SiSitepoint = React__namespace.forwardRef(function SiSitepoint2({ title = "SitePoint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.471 10.533l1.771 1.688 5.598 5.141 2.4-2.291c.21-.297.194-.705-.046-.985L9.99 12.184l.01-.005-2.371-2.266c-.279-.314-.27-.78.021-1.079l6.39-6.076L11.146 0 2.475 8.238c-.664.633-.664 1.66 0 2.295h-.004zm19.056 2.937l-1.77-1.691-5.595-5.142-2.411 2.291c-.221.3-.207.705.045.985l2.205 1.891h-.006l2.369 2.265c.27.314.27.766-.029 1.064l-6.391 6.075L12.855 24l8.67-8.238c.664-.633.666-1.659 0-2.295l.002.003z" }) + ] + } + ); +}); + +exports.default = SiSitepoint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.d.ts new file mode 100644 index 000000000..4c710f450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#258AAF"; +declare const SiSitepoint: IconType; +export { SiSitepoint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.mjs new file mode 100644 index 000000000..75aa65881 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSitepoint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#258AAF"; +const SiSitepoint = React.forwardRef(function SiSitepoint2({ title = "SitePoint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.471 10.533l1.771 1.688 5.598 5.141 2.4-2.291c.21-.297.194-.705-.046-.985L9.99 12.184l.01-.005-2.371-2.266c-.279-.314-.27-.78.021-1.079l6.39-6.076L11.146 0 2.475 8.238c-.664.633-.664 1.66 0 2.295h-.004zm19.056 2.937l-1.77-1.691-5.595-5.142-2.411 2.291c-.221.3-.207.705.045.985l2.205 1.891h-.006l2.369 2.265c.27.314.27.766-.029 1.064l-6.391 6.075L12.855 24l8.67-8.238c.664-.633.666-1.659 0-2.295l.002.003z" }) + ] + } + ); +}); + +export { SiSitepoint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.cjs new file mode 100644 index 000000000..bd44604f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D23F31"; +const SiSiyuan = React__namespace.forwardRef(function SiSiyuan2({ title = "SiYuan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 8.455 6.818-6.819L12 6.818l5.182-5.182L24 8.455v13.909l-6.818-6.819v-2.314l5.182 5.182v-9.28L17.182 3.95v11.594L12 20.727l-5.182-5.182v-2.314L12 18.413v-9.28L6.818 3.95v11.594L0 22.364Z" }) + ] + } + ); +}); + +exports.default = SiSiyuan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.d.ts new file mode 100644 index 000000000..874af90a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D23F31"; +declare const SiSiyuan: IconType; +export { SiSiyuan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.mjs new file mode 100644 index 000000000..9c0b37d5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSiyuan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D23F31"; +const SiSiyuan = React.forwardRef(function SiSiyuan2({ title = "SiYuan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 8.455 6.818-6.819L12 6.818l5.182-5.182L24 8.455v13.909l-6.818-6.819v-2.314l5.182 5.182v-9.28L17.182 3.95v11.594L12 20.727l-5.182-5.182v-2.314L12 18.413v-9.28L6.818 3.95v11.594L0 22.364Z" }) + ] + } + ); +}); + +export { SiSiyuan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.cjs new file mode 100644 index 000000000..29d4ee5f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2AA2D6"; +const SiSkaffold = React__namespace.forwardRef(function SiSkaffold2({ title = "Skaffold", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.602 20.097H24v3.836H6.602v-3.836zm-2.766-6.692h13.562v3.837H0V6.714h3.836v6.691zm13.562-9.502H0V.067h17.398v3.836zm2.766 6.692H6.602V6.758H24v10.528h-3.836v-6.691z" }) + ] + } + ); +}); + +exports.default = SiSkaffold; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.d.ts new file mode 100644 index 000000000..30bec5865 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2AA2D6"; +declare const SiSkaffold: IconType; +export { SiSkaffold as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.mjs new file mode 100644 index 000000000..cd5fd6b2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkaffold.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2AA2D6"; +const SiSkaffold = React.forwardRef(function SiSkaffold2({ title = "Skaffold", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.602 20.097H24v3.836H6.602v-3.836zm-2.766-6.692h13.562v3.837H0V6.714h3.836v6.691zm13.562-9.502H0V.067h17.398v3.836zm2.766 6.692H6.602V6.758H24v10.528h-3.836v-6.691z" }) + ] + } + ); +}); + +export { SiSkaffold as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.cjs new file mode 100644 index 000000000..c385c4014 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSkeleton = React__namespace.forwardRef(function SiSkeleton2({ title = "Skeleton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.913 6.126c3.042 0 5.639 1.042 7.497 2.753l.034-.01c.233-.072.432-.147.597-.222.527-.244 1.219-.742 2.076-1.496-.14 1.313-.288 2.277-.449 2.891a11.584 11.584 0 0 1-.397 1.197 9.513 9.513 0 0 1 1.024 2.803c.733 3.634-.522 5.24-3.436 6.138.022.108.04.224.052.348.104 1.063-.44 2.78-1.092 2.78-.43 0-.709-.592-1.008-1.456-.093 1-.554 2.148-1.088 2.148-.575 0-.88-1.06-1.326-2.413C14.171 22.65 13.83 24 13.227 24c-.611 0-.275-1.906-1.308-2.714-5.233.282-9.634-1.63-9.634-7.15a6.71 6.71 0 0 1 .688-2.927c-.08-.155-.153-.306-.222-.457-.348-.758-.765-1.906-1.251-3.442 1.244.918 2.199 1.465 2.863 1.64.066.018.136.034.208.047C6.314 7.27 8.92 6.126 11.913 6.126zm-1.221 7.446c-1.768 0-3.202 1.376-3.202 3.074s1.434 3.075 3.202 3.075 3.201-1.377 3.201-3.075c0-1.656-1.362-3.005-3.069-3.072zm4.544 3.84c-.535 0-.817 1.13-.817 1.636 0 .396.134.615.353.654.531.05.369-.716.634-.716.282 0 .612.783.888.677.328-.194.202-.615.089-.947-.399-.837-.612-1.304-1.147-1.304zm3.48-4.02c-1.218 0-2.205 1.208-2.205 2.7 0 1.491.987 2.7 2.205 2.7s2.207-1.209 2.207-2.7c0-1.492-.988-2.7-2.207-2.7zM11.1 15a1.8 1.8 0 1 1-.3 3.575 1.8 1.8 0 0 0 0-3.55 1.83 1.83 0 0 1 .3-.025zm7.5-.6c.828 0 1.5.806 1.5 1.8s-.672 1.8-1.5 1.8c-.103 0-.203-.012-.3-.036.685-.167 1.2-.893 1.2-1.764 0-.87-.515-1.597-1.2-1.764.097-.024.197-.036.3-.036zm.17-11.152.195.125a.188.188 0 0 1 .057.26l-1.434 2.193a.188.188 0 0 1-.26.056l-.194-.124a.188.188 0 0 1-.057-.26l1.434-2.194a.188.188 0 0 1 .26-.056zm-13.906.333 1.164 1.65c.06.084.04.202-.045.262l-.192.132a.188.188 0 0 1-.26-.046l-1.165-1.65a.188.188 0 0 1 .046-.262l.19-.132a.188.188 0 0 1 .262.046zM12.41 0l.348 2.896 1.287-1.431.036 3.565-.255-.057a9.528 9.528 0 0 0-2.028-.246 5.781 5.781 0 0 0-1.692.24l-.285.086.23-4.46 1.18 2.205z" }) + ] + } + ); +}); + +exports.default = SiSkeleton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.d.ts new file mode 100644 index 000000000..609a4e639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSkeleton: IconType; +export { SiSkeleton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.mjs new file mode 100644 index 000000000..4311ea459 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkeleton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSkeleton = React.forwardRef(function SiSkeleton2({ title = "Skeleton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.913 6.126c3.042 0 5.639 1.042 7.497 2.753l.034-.01c.233-.072.432-.147.597-.222.527-.244 1.219-.742 2.076-1.496-.14 1.313-.288 2.277-.449 2.891a11.584 11.584 0 0 1-.397 1.197 9.513 9.513 0 0 1 1.024 2.803c.733 3.634-.522 5.24-3.436 6.138.022.108.04.224.052.348.104 1.063-.44 2.78-1.092 2.78-.43 0-.709-.592-1.008-1.456-.093 1-.554 2.148-1.088 2.148-.575 0-.88-1.06-1.326-2.413C14.171 22.65 13.83 24 13.227 24c-.611 0-.275-1.906-1.308-2.714-5.233.282-9.634-1.63-9.634-7.15a6.71 6.71 0 0 1 .688-2.927c-.08-.155-.153-.306-.222-.457-.348-.758-.765-1.906-1.251-3.442 1.244.918 2.199 1.465 2.863 1.64.066.018.136.034.208.047C6.314 7.27 8.92 6.126 11.913 6.126zm-1.221 7.446c-1.768 0-3.202 1.376-3.202 3.074s1.434 3.075 3.202 3.075 3.201-1.377 3.201-3.075c0-1.656-1.362-3.005-3.069-3.072zm4.544 3.84c-.535 0-.817 1.13-.817 1.636 0 .396.134.615.353.654.531.05.369-.716.634-.716.282 0 .612.783.888.677.328-.194.202-.615.089-.947-.399-.837-.612-1.304-1.147-1.304zm3.48-4.02c-1.218 0-2.205 1.208-2.205 2.7 0 1.491.987 2.7 2.205 2.7s2.207-1.209 2.207-2.7c0-1.492-.988-2.7-2.207-2.7zM11.1 15a1.8 1.8 0 1 1-.3 3.575 1.8 1.8 0 0 0 0-3.55 1.83 1.83 0 0 1 .3-.025zm7.5-.6c.828 0 1.5.806 1.5 1.8s-.672 1.8-1.5 1.8c-.103 0-.203-.012-.3-.036.685-.167 1.2-.893 1.2-1.764 0-.87-.515-1.597-1.2-1.764.097-.024.197-.036.3-.036zm.17-11.152.195.125a.188.188 0 0 1 .057.26l-1.434 2.193a.188.188 0 0 1-.26.056l-.194-.124a.188.188 0 0 1-.057-.26l1.434-2.194a.188.188 0 0 1 .26-.056zm-13.906.333 1.164 1.65c.06.084.04.202-.045.262l-.192.132a.188.188 0 0 1-.26-.046l-1.165-1.65a.188.188 0 0 1 .046-.262l.19-.132a.188.188 0 0 1 .262.046zM12.41 0l.348 2.896 1.287-1.431.036 3.565-.255-.057a9.528 9.528 0 0 0-2.028-.246 5.781 5.781 0 0 0-1.692.24l-.285.086.23-4.46 1.18 2.205z" }) + ] + } + ); +}); + +export { SiSkeleton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.cjs new file mode 100644 index 000000000..5c478a5af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7B500"; +const SiSketch = React__namespace.forwardRef(function SiSketch2({ title = "Sketch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1.25l6.75 6.637V2L12 1.25zm0 0l-6.05 7h12.1l-6.05-7zm0 0L5.25 2v5.887L12 1.25zM5.25 2L0 9l4.416-.68L5.25 2zM0 9l11.959 13.703.008-.014L4.443 9H0zm18.75-7l.834 6.32L24 9l-5.25-7zM24 9h-4.506l-7.523 13.69.029.06L24 9zM12 22.75l-.031-.057-.008.012.039.045zM5.436 9l6.533 13.686L18.564 9H5.436Z" }) + ] + } + ); +}); + +exports.default = SiSketch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.d.ts new file mode 100644 index 000000000..d71cd55ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7B500"; +declare const SiSketch: IconType; +export { SiSketch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.mjs new file mode 100644 index 000000000..f6279400a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7B500"; +const SiSketch = React.forwardRef(function SiSketch2({ title = "Sketch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 1.25l6.75 6.637V2L12 1.25zm0 0l-6.05 7h12.1l-6.05-7zm0 0L5.25 2v5.887L12 1.25zM5.25 2L0 9l4.416-.68L5.25 2zM0 9l11.959 13.703.008-.014L4.443 9H0zm18.75-7l.834 6.32L24 9l-5.25-7zM24 9h-4.506l-7.523 13.69.029.06L24 9zM12 22.75l-.031-.057-.008.012.039.045zM5.436 9l6.533 13.686L18.564 9H5.436Z" }) + ] + } + ); +}); + +export { SiSketch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.cjs new file mode 100644 index 000000000..94be8b13b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1CAAD9"; +const SiSketchfab = React__namespace.forwardRef(function SiSketchfab2({ title = "Sketchfab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.3 0A11.983 11.983 0 0 0 .037 11a13.656 13.656 0 0 0 0 2 11.983 11.983 0 0 0 11.29 11h1.346a12.045 12.045 0 0 0 11.3-11.36 13.836 13.836 0 0 0 0-1.7A12.049 12.049 0 0 0 12.674 0zM15 6.51l2.99 1.74s-6.064 3.24-6.084 3.24S5.812 8.27 5.8 8.26l2.994-1.77 2.992-1.76zm-6.476 5.126L11 13v5.92l-2.527-1.4-2.46-1.43v-5.76zm9.461 1.572v2.924L15.5 17.574 13 19.017v-6.024l2.489-1.345 2.5-1.355z" }) + ] + } + ); +}); + +exports.default = SiSketchfab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.d.ts new file mode 100644 index 000000000..d72b9a02b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1CAAD9"; +declare const SiSketchfab: IconType; +export { SiSketchfab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.mjs new file mode 100644 index 000000000..04ffdbe4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchfab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1CAAD9"; +const SiSketchfab = React.forwardRef(function SiSketchfab2({ title = "Sketchfab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.3 0A11.983 11.983 0 0 0 .037 11a13.656 13.656 0 0 0 0 2 11.983 11.983 0 0 0 11.29 11h1.346a12.045 12.045 0 0 0 11.3-11.36 13.836 13.836 0 0 0 0-1.7A12.049 12.049 0 0 0 12.674 0zM15 6.51l2.99 1.74s-6.064 3.24-6.084 3.24S5.812 8.27 5.8 8.26l2.994-1.77 2.992-1.76zm-6.476 5.126L11 13v5.92l-2.527-1.4-2.46-1.43v-5.76zm9.461 1.572v2.924L15.5 17.574 13 19.017v-6.024l2.489-1.345 2.5-1.355z" }) + ] + } + ); +}); + +export { SiSketchfab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.cjs new file mode 100644 index 000000000..1ce4e0fc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005F9E"; +const SiSketchup = React__namespace.forwardRef(function SiSketchup2({ title = "SketchUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.968 9.027l7.717 4.428-.006 1.32-4.39-2.518-2.763 1.57 7.148 4.12.005 1.27-7.658-4.405c.02.516.488 2.106 1.383 3.337.91 1.247 1.946 1.776 1.946 1.776L11.428 24V11.849L.975 5.846zm22.064-3.8L15.22.723S13.982 0 12.008 0C9.952 0 8.76.746 8.76.746l-7.236 4.14 11.009 6.328V24l7.245-4.136s1.295-.715 2.279-2.414c.867-1.496.975-2.943.975-2.943zM11.251 7.308s1.615-.298 2.98.49l2.171 1.25s.003 1.097.003 2.736c0 1.313-1.112 2.674-1.112 2.674l.002-4.816zm6.402 10.562l-2.358 1.353v-1.269l1.835-1.05c1.748-1.26 2.037-3.117 2.037-3.761l-.007-5.705-5.006-2.881s-.76-.499-2.129-.499c-1.367 0-2.113.461-2.113.461L8.154 5.53l-1.11-.641L9.473 3.5s.95-.527 2.544-.527c1.462 0 2.6.571 2.6.571L20.27 6.81l-.007 6.226c.04.957-.406 3.296-2.61 4.835z" }) + ] + } + ); +}); + +exports.default = SiSketchup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.d.ts new file mode 100644 index 000000000..178a60510 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005F9E"; +declare const SiSketchup: IconType; +export { SiSketchup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.mjs new file mode 100644 index 000000000..00a550296 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSketchup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005F9E"; +const SiSketchup = React.forwardRef(function SiSketchup2({ title = "SketchUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.968 9.027l7.717 4.428-.006 1.32-4.39-2.518-2.763 1.57 7.148 4.12.005 1.27-7.658-4.405c.02.516.488 2.106 1.383 3.337.91 1.247 1.946 1.776 1.946 1.776L11.428 24V11.849L.975 5.846zm22.064-3.8L15.22.723S13.982 0 12.008 0C9.952 0 8.76.746 8.76.746l-7.236 4.14 11.009 6.328V24l7.245-4.136s1.295-.715 2.279-2.414c.867-1.496.975-2.943.975-2.943zM11.251 7.308s1.615-.298 2.98.49l2.171 1.25s.003 1.097.003 2.736c0 1.313-1.112 2.674-1.112 2.674l.002-4.816zm6.402 10.562l-2.358 1.353v-1.269l1.835-1.05c1.748-1.26 2.037-3.117 2.037-3.761l-.007-5.705-5.006-2.881s-.76-.499-2.129-.499c-1.367 0-2.113.461-2.113.461L8.154 5.53l-1.11-.641L9.473 3.5s.95-.527 2.544-.527c1.462 0 2.6.571 2.6.571L20.27 6.81l-.007 6.226c.04.957-.406 3.296-2.61 4.835z" }) + ] + } + ); +}); + +export { SiSketchup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.cjs new file mode 100644 index 000000000..ed33bcdea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FF84"; +const SiSkillshare = React__namespace.forwardRef(function SiSkillshare2({ title = "Skillshare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.783 6.056a.768.768 0 0 0-.773.764c0 .421.346.763.773.763a.768.768 0 0 0 .772-.763.768.768 0 0 0-.772-.764zM1.895 8.1C.821 8.1.111 8.622.111 9.413c0 .634.381 1.06 1.048 1.225l.836.21c.248.078.348.2.347.39 0 .21-.21.327-.424.337-.31.014-.537-.154-.554-.422H0c.02.8.802 1.362 1.974 1.362 1.108 0 1.827-.513 1.827-1.382 0-.634-.399-1.034-1.057-1.208l-.81-.224c-.274-.081-.369-.202-.369-.372 0-.185.146-.294.335-.316.274-.032.486.087.486.382v.02H3.78v-.02h-.001c0-.834-.706-1.294-1.884-1.294zm2.485.116v4.19h1.318v-1.821l1.274 1.82h1.62l-1.629-2.201 1.604-1.977h-1.56l-1.309 1.76v-1.77zm4.744 0v4.19h1.318v-4.19zm2.084 0v4.191h3.218v-1.244h-1.892V8.217zm3.937 0v4.191h3.218v-1.244h-1.892V8.217zm-13.25 5.308c-1.074 0-1.784.522-1.784 1.312 0 .635.381 1.06 1.048 1.225l.836.21c.248.078.348.2.347.39 0 .21-.21.328-.424.338-.31.014-.537-.155-.554-.423H0c.02.8.802 1.362 1.974 1.362 1.108 0 1.827-.512 1.827-1.382 0-.634-.399-1.034-1.057-1.207l-.81-.225c-.274-.081-.369-.201-.369-.371 0-.186.146-.295.335-.317.274-.032.486.087.486.383v.019H3.78v-.02h-.001c0-.834-.706-1.294-1.884-1.294zm9.19.015c-1.215 0-1.986.953-1.986 2.202 0 1.257.72 2.202 1.968 2.201.58 0 1.1-.286 1.326-.702v.59h1.318v-4.179h-1.318v.599c-.225-.425-.702-.711-1.309-.711zm8.751 0c-1.36 0-2.253.832-2.253 2.202 0 1.396.875 2.202 2.296 2.202 1.11 0 1.951-.546 2.08-1.37h-1.3c-.113.26-.373.373-.78.373-.59 0-.954-.295-.98-.841h3.087c.026-.234.035-.364.035-.581 0-1.179-.884-1.985-2.185-1.985zm-2.87.043c-.51 0-1.005.32-1.152.945v-.876h-1.327v4.179h1.327v-1.613c0-.927.382-1.395 1.1-1.395a2.8 2.8 0 0 1 .393.025l.007-1.23a1.28 1.28 0 0 0-.347-.035zM4.38 13.65v4.191h1.3v-1.485h1.59v1.485h1.3V13.65h-1.3v1.505H5.68V13.65zm15.448.781c.564 0 .876.295.885.85H18.9c.008-.511.356-.85.927-.85zm-8.38.217c.66 0 .997.494.997 1.093 0 .607-.337 1.1-.997 1.1-.616 0-.997-.468-.997-1.1 0-.634.382-1.093.997-1.093zm11.78 1.741a.768.768 0 0 0-.772.764c0 .422.345.764.772.764a.768.768 0 0 0 .772-.764.768.768 0 0 0-.772-.764z" }) + ] + } + ); +}); + +exports.default = SiSkillshare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.d.ts new file mode 100644 index 000000000..955859aa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FF84"; +declare const SiSkillshare: IconType; +export { SiSkillshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.mjs new file mode 100644 index 000000000..8eaa93880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkillshare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FF84"; +const SiSkillshare = React.forwardRef(function SiSkillshare2({ title = "Skillshare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.783 6.056a.768.768 0 0 0-.773.764c0 .421.346.763.773.763a.768.768 0 0 0 .772-.763.768.768 0 0 0-.772-.764zM1.895 8.1C.821 8.1.111 8.622.111 9.413c0 .634.381 1.06 1.048 1.225l.836.21c.248.078.348.2.347.39 0 .21-.21.327-.424.337-.31.014-.537-.154-.554-.422H0c.02.8.802 1.362 1.974 1.362 1.108 0 1.827-.513 1.827-1.382 0-.634-.399-1.034-1.057-1.208l-.81-.224c-.274-.081-.369-.202-.369-.372 0-.185.146-.294.335-.316.274-.032.486.087.486.382v.02H3.78v-.02h-.001c0-.834-.706-1.294-1.884-1.294zm2.485.116v4.19h1.318v-1.821l1.274 1.82h1.62l-1.629-2.201 1.604-1.977h-1.56l-1.309 1.76v-1.77zm4.744 0v4.19h1.318v-4.19zm2.084 0v4.191h3.218v-1.244h-1.892V8.217zm3.937 0v4.191h3.218v-1.244h-1.892V8.217zm-13.25 5.308c-1.074 0-1.784.522-1.784 1.312 0 .635.381 1.06 1.048 1.225l.836.21c.248.078.348.2.347.39 0 .21-.21.328-.424.338-.31.014-.537-.155-.554-.423H0c.02.8.802 1.362 1.974 1.362 1.108 0 1.827-.512 1.827-1.382 0-.634-.399-1.034-1.057-1.207l-.81-.225c-.274-.081-.369-.201-.369-.371 0-.186.146-.295.335-.317.274-.032.486.087.486.383v.019H3.78v-.02h-.001c0-.834-.706-1.294-1.884-1.294zm9.19.015c-1.215 0-1.986.953-1.986 2.202 0 1.257.72 2.202 1.968 2.201.58 0 1.1-.286 1.326-.702v.59h1.318v-4.179h-1.318v.599c-.225-.425-.702-.711-1.309-.711zm8.751 0c-1.36 0-2.253.832-2.253 2.202 0 1.396.875 2.202 2.296 2.202 1.11 0 1.951-.546 2.08-1.37h-1.3c-.113.26-.373.373-.78.373-.59 0-.954-.295-.98-.841h3.087c.026-.234.035-.364.035-.581 0-1.179-.884-1.985-2.185-1.985zm-2.87.043c-.51 0-1.005.32-1.152.945v-.876h-1.327v4.179h1.327v-1.613c0-.927.382-1.395 1.1-1.395a2.8 2.8 0 0 1 .393.025l.007-1.23a1.28 1.28 0 0 0-.347-.035zM4.38 13.65v4.191h1.3v-1.485h1.59v1.485h1.3V13.65h-1.3v1.505H5.68V13.65zm15.448.781c.564 0 .876.295.885.85H18.9c.008-.511.356-.85.927-.85zm-8.38.217c.66 0 .997.494.997 1.093 0 .607-.337 1.1-.997 1.1-.616 0-.997-.468-.997-1.1 0-.634.382-1.093.997-1.093zm11.78 1.741a.768.768 0 0 0-.772.764c0 .422.345.764.772.764a.768.768 0 0 0 .772-.764.768.768 0 0 0-.772-.764z" }) + ] + } + ); +}); + +export { SiSkillshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.cjs new file mode 100644 index 000000000..dcb6762b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E3A2F"; +const SiSkoda = React__namespace.forwardRef(function SiSkoda2({ title = "ŠKODA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0Zm0 22.9636C5.945 22.9636 1.0364 18.055 1.0364 12 1.0364 5.945 5.945 1.0364 12 1.0364S22.9636 5.945 22.9636 12 18.055 22.9636 12 22.9636Zm5.189-7.2325-.269.7263h-.984c.263-.7089 3.5783-8.6177-2.9362-13.9819a9.5254 9.5254 0 0 0-4.0531.4483c.2172.175 2.474 2.0276 3.5373 4.315l-.312.084c-.5861-.6387-2.7156-2.9833-4.7448-3.7379a9.6184 9.6184 0 0 0-2.8448 2.3597c.953.4875 3.4432 1.9748 4.3896 3.1302-.0542.0244-.267.139-.267.139-1.736-1.3195-4.8199-2.0043-4.9775-2.0383a9.5126 9.5126 0 0 0-1.2267 3.6098c4.7759.9613 6.0618 3.1715 6.2818 5.6721H7.878l-1.5545-.6776a.8563.8563 0 0 0-.2524-.0531H3.1767a9.587 9.587 0 0 0 1.9267 2.9155h1.2334c.1063 0 .1993-.0133.2923-.0664l1.2489-.6378h9.042l.269.7264a4.8386 4.8386 0 0 0 2.9466-1.4667 4.839 4.839 0 0 0-2.9467-1.4666zm-4.14-.5786a1.1863 1.1863 0 0 1-.5038-1.2162 1.1862 1.1862 0 0 1 .931-.9309 1.1863 1.1863 0 0 1 1.2161.5038c.3098.4636.2563 1.0924-.1473 1.496-.4032.4032-1.0318.4574-1.496.1473z" }) + ] + } + ); +}); + +exports.default = SiSkoda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.d.ts new file mode 100644 index 000000000..11aedf061 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E3A2F"; +declare const SiSkoda: IconType; +export { SiSkoda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.mjs new file mode 100644 index 000000000..248545157 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkoda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E3A2F"; +const SiSkoda = React.forwardRef(function SiSkoda2({ title = "ŠKODA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.3726 0 0 5.3726 0 12s5.3726 12 12 12 12-5.3726 12-12S18.6274 0 12 0Zm0 22.9636C5.945 22.9636 1.0364 18.055 1.0364 12 1.0364 5.945 5.945 1.0364 12 1.0364S22.9636 5.945 22.9636 12 18.055 22.9636 12 22.9636Zm5.189-7.2325-.269.7263h-.984c.263-.7089 3.5783-8.6177-2.9362-13.9819a9.5254 9.5254 0 0 0-4.0531.4483c.2172.175 2.474 2.0276 3.5373 4.315l-.312.084c-.5861-.6387-2.7156-2.9833-4.7448-3.7379a9.6184 9.6184 0 0 0-2.8448 2.3597c.953.4875 3.4432 1.9748 4.3896 3.1302-.0542.0244-.267.139-.267.139-1.736-1.3195-4.8199-2.0043-4.9775-2.0383a9.5126 9.5126 0 0 0-1.2267 3.6098c4.7759.9613 6.0618 3.1715 6.2818 5.6721H7.878l-1.5545-.6776a.8563.8563 0 0 0-.2524-.0531H3.1767a9.587 9.587 0 0 0 1.9267 2.9155h1.2334c.1063 0 .1993-.0133.2923-.0664l1.2489-.6378h9.042l.269.7264a4.8386 4.8386 0 0 0 2.9466-1.4667 4.839 4.839 0 0 0-2.9467-1.4666zm-4.14-.5786a1.1863 1.1863 0 0 1-.5038-1.2162 1.1862 1.1862 0 0 1 .931-.9309 1.1863 1.1863 0 0 1 1.2161.5038c.3098.4636.2563 1.0924-.1473 1.496-.4032.4032-1.0318.4574-1.496.1473z" }) + ] + } + ); +}); + +export { SiSkoda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSky.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSky.cjs new file mode 100644 index 000000000..49adb1530 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSky.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0072C9"; +const SiSky = React__namespace.forwardRef(function SiSky2({ title = "Sky", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.387 13.656c0 1.423-.933 2.454-2.823 2.675-1.35.147-3.337-.025-4.294-.148-.025-.147-.074-.343-.074-.49 0-1.252.663-1.522 1.3-1.522.664 0 1.694.123 2.455.123.834 0 1.104-.295 1.104-.565 0-.368-.343-.515-1.006-.638l-1.767-.343C.785 12.453 0 11.423 0 10.343c0-1.325.933-2.454 2.798-2.65 1.398-.148 3.116.024 4.049.122.024.172.049.32.049.491 0 1.252-.663 1.522-1.276 1.522-.491 0-1.227-.099-2.086-.099-.884 0-1.227.246-1.227.54 0 .32.343.442.883.54l1.718.32c1.742.294 2.479 1.3 2.479 2.527m3.092 1.521c0 .761-.295 1.203-1.792 1.203-.196 0-.368-.025-.54-.05V6.22c0-.76.27-1.57 1.767-1.57.196 0 .393.024.565.049zm6.085 3.927c.197.098.59.22 1.105.245.859.025 1.325-.319 1.693-1.08L24 7.913a2.5 2.5 0 0 0-.957-.22c-.589 0-1.399.122-1.914 1.325l-1.497 3.534-2.945-4.81c-.196-.05-.662-.148-1.006-.148-1.03 0-1.62.393-2.233 1.031l-2.871 3.141 2.306 3.632c.418.663.982 1.006 1.89 1.006.589 0 1.104-.147 1.325-.245l-2.773-4.196 1.963-2.086 3.24 5.08Z" }) + ] + } + ); +}); + +exports.default = SiSky; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSky.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSky.d.ts new file mode 100644 index 000000000..7fa7519c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSky.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0072C9"; +declare const SiSky: IconType; +export { SiSky as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSky.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSky.mjs new file mode 100644 index 000000000..9b89f7d72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSky.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0072C9"; +const SiSky = React.forwardRef(function SiSky2({ title = "Sky", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.387 13.656c0 1.423-.933 2.454-2.823 2.675-1.35.147-3.337-.025-4.294-.148-.025-.147-.074-.343-.074-.49 0-1.252.663-1.522 1.3-1.522.664 0 1.694.123 2.455.123.834 0 1.104-.295 1.104-.565 0-.368-.343-.515-1.006-.638l-1.767-.343C.785 12.453 0 11.423 0 10.343c0-1.325.933-2.454 2.798-2.65 1.398-.148 3.116.024 4.049.122.024.172.049.32.049.491 0 1.252-.663 1.522-1.276 1.522-.491 0-1.227-.099-2.086-.099-.884 0-1.227.246-1.227.54 0 .32.343.442.883.54l1.718.32c1.742.294 2.479 1.3 2.479 2.527m3.092 1.521c0 .761-.295 1.203-1.792 1.203-.196 0-.368-.025-.54-.05V6.22c0-.76.27-1.57 1.767-1.57.196 0 .393.024.565.049zm6.085 3.927c.197.098.59.22 1.105.245.859.025 1.325-.319 1.693-1.08L24 7.913a2.5 2.5 0 0 0-.957-.22c-.589 0-1.399.122-1.914 1.325l-1.497 3.534-2.945-4.81c-.196-.05-.662-.148-1.006-.148-1.03 0-1.62.393-2.233 1.031l-2.871 3.141 2.306 3.632c.418.663.982 1.006 1.89 1.006.589 0 1.104-.147 1.325-.245l-2.773-4.196 1.963-2.086 3.24 5.08Z" }) + ] + } + ); +}); + +export { SiSky as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.cjs new file mode 100644 index 000000000..b8fe9f42d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3167FF"; +const SiSkypack = React__namespace.forwardRef(function SiSkypack2({ title = "Skypack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.82 11.27-5.997-2.994 5.999-2.993c.28-.14.453-.42.453-.734a.815.815 0 0 0-.454-.735L12.366.087a.814.814 0 0 0-.733 0L4.178 3.814a.815.815 0 0 0-.453.735v7.454c0 .28.15.548.384.699l.07.034 5.998 2.994-5.999 2.993a.815.815 0 0 0-.453.734c0 .314.174.594.453.735l7.455 3.727a.814.814 0 0 0 .361.081.814.814 0 0 0 .361-.081l7.454-3.727c.28-.14.455-.42.455-.735v-7.454a.785.785 0 0 0-.443-.733zm-7.814-9.54 5.625 2.819-5.625 2.818L6.38 4.55zm-6.64 4.135 4.811 2.41-4.81 2.412zm1.014 6.138 5.626-2.819 5.625 2.82-5.625 2.818zm4.81 5.044v4.81l-4.81-2.41zm7.455 1.91-5.824 2.911v-5.625l5.824-2.912v5.625z" }) + ] + } + ); +}); + +exports.default = SiSkypack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.d.ts new file mode 100644 index 000000000..918b52072 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3167FF"; +declare const SiSkypack: IconType; +export { SiSkypack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.mjs new file mode 100644 index 000000000..560bebc9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSkypack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3167FF"; +const SiSkypack = React.forwardRef(function SiSkypack2({ title = "Skypack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.82 11.27-5.997-2.994 5.999-2.993c.28-.14.453-.42.453-.734a.815.815 0 0 0-.454-.735L12.366.087a.814.814 0 0 0-.733 0L4.178 3.814a.815.815 0 0 0-.453.735v7.454c0 .28.15.548.384.699l.07.034 5.998 2.994-5.999 2.993a.815.815 0 0 0-.453.734c0 .314.174.594.453.735l7.455 3.727a.814.814 0 0 0 .361.081.814.814 0 0 0 .361-.081l7.454-3.727c.28-.14.455-.42.455-.735v-7.454a.785.785 0 0 0-.443-.733zm-7.814-9.54 5.625 2.819-5.625 2.818L6.38 4.55zm-6.64 4.135 4.811 2.41-4.81 2.412zm1.014 6.138 5.626-2.819 5.625 2.82-5.625 2.818zm4.81 5.044v4.81l-4.81-2.41zm7.455 1.91-5.824 2.911v-5.625l5.824-2.912v5.625z" }) + ] + } + ); +}); + +export { SiSkypack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.cjs new file mode 100644 index 000000000..af2d5f67d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSlackware = React__namespace.forwardRef(function SiSlackware2({ title = "Slackware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.924 1.228c-.584-.01-1.251 0-1.485.027-2.46.282-4.138 1.3-4.753 2.891-.218.552-.274 1.002-.243 1.772.048 1.21.419 2.004 1.262 2.742 1.225 1.06 2.98 1.508 5.998 1.508 2.737 0 3.71.413 3.916 1.675.313 1.867-1.57 3.07-4.414 2.827-1.878-.16-3.496-.912-4.223-1.967a7.772 7.772 0 01-.355-.62c-.382-.76-.64-.978-1.176-.978-.43.005-.732.165-.918.494l-.133.24v4.03l.137.296c.165.344.4.546.744.63.35.09.794-.036 1.42-.402l.5-.29.826.185c1.82.403 2.75.523 4.065.523 1.103.005 1.548-.046 2.455-.285 1.124-.297 1.974-.785 2.717-1.57.8-.844 1.15-1.853 1.097-3.147-.069-1.628-.695-2.698-2-3.414-.96-.525-2.292-.79-4.377-.88-2.042-.086-2.794-.155-3.515-.32-.51-.12-.785-.25-1.076-.515-.653-.589-.59-1.755.136-2.482.642-.637 1.511-.928 2.774-.928 1.432.005 2.393.27 3.412.955.185.127.721.62 1.193 1.092.886.902 1.135 1.082 1.506 1.082.244 0 .59-.163.732-.344.26-.329.303-.63.303-2.2 0-1.66-.043-1.91-.377-2.282-.387-.425-.848-.42-1.75.031l-.59.297-.63-.17c-1.496-.392-2.038-.477-3.178-.504zM0 13.775v9h24v-1H1v-8z" }) + ] + } + ); +}); + +exports.default = SiSlackware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.d.ts new file mode 100644 index 000000000..7042cbf9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSlackware: IconType; +export { SiSlackware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.mjs new file mode 100644 index 000000000..c6376db8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlackware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSlackware = React.forwardRef(function SiSlackware2({ title = "Slackware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.924 1.228c-.584-.01-1.251 0-1.485.027-2.46.282-4.138 1.3-4.753 2.891-.218.552-.274 1.002-.243 1.772.048 1.21.419 2.004 1.262 2.742 1.225 1.06 2.98 1.508 5.998 1.508 2.737 0 3.71.413 3.916 1.675.313 1.867-1.57 3.07-4.414 2.827-1.878-.16-3.496-.912-4.223-1.967a7.772 7.772 0 01-.355-.62c-.382-.76-.64-.978-1.176-.978-.43.005-.732.165-.918.494l-.133.24v4.03l.137.296c.165.344.4.546.744.63.35.09.794-.036 1.42-.402l.5-.29.826.185c1.82.403 2.75.523 4.065.523 1.103.005 1.548-.046 2.455-.285 1.124-.297 1.974-.785 2.717-1.57.8-.844 1.15-1.853 1.097-3.147-.069-1.628-.695-2.698-2-3.414-.96-.525-2.292-.79-4.377-.88-2.042-.086-2.794-.155-3.515-.32-.51-.12-.785-.25-1.076-.515-.653-.589-.59-1.755.136-2.482.642-.637 1.511-.928 2.774-.928 1.432.005 2.393.27 3.412.955.185.127.721.62 1.193 1.092.886.902 1.135 1.082 1.506 1.082.244 0 .59-.163.732-.344.26-.329.303-.63.303-2.2 0-1.66-.043-1.91-.377-2.282-.387-.425-.848-.42-1.75.031l-.59.297-.63-.17c-1.496-.392-2.038-.477-3.178-.504zM0 13.775v9h24v-1H1v-8z" }) + ] + } + ); +}); + +export { SiSlackware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.cjs new file mode 100644 index 000000000..6976152e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#026664"; +const SiSlashdot = React__namespace.forwardRef(function SiSlashdot2({ title = "Slashdot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.777 0L7.037 24H1.868L14.605 0h5.172zm2.354 19.801c0 2.268-1.841 4.105-4.109 4.105s-4.107-1.838-4.107-4.105 1.839-4.107 4.107-4.107 4.109 1.839 4.109 4.107z" }) + ] + } + ); +}); + +exports.default = SiSlashdot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.d.ts new file mode 100644 index 000000000..f157c44a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#026664"; +declare const SiSlashdot: IconType; +export { SiSlashdot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.mjs new file mode 100644 index 000000000..22b750426 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlashdot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#026664"; +const SiSlashdot = React.forwardRef(function SiSlashdot2({ title = "Slashdot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.777 0L7.037 24H1.868L14.605 0h5.172zm2.354 19.801c0 2.268-1.841 4.105-4.109 4.105s-4.107-1.838-4.107-4.105 1.839-4.107 4.107-4.107 4.109 1.839 4.109 4.107z" }) + ] + } + ); +}); + +export { SiSlashdot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.cjs new file mode 100644 index 000000000..2077c5d04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF880F"; +const SiSlickpic = React__namespace.forwardRef(function SiSlickpic2({ title = "SlickPic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.483 18.308L6.056 14.085l2.52-9.201L24 9.104l-2.517 9.204zm-13.414-5.37l12.263 3.354 1.654-6.033L9.72 6.9l-1.65 6.034v.004zM8.526 15.795l-4.891 1.311-1.625-6.045 4.146-1.11.501-1.835L0 9.902l2.478 9.215 9.178-2.467" }) + ] + } + ); +}); + +exports.default = SiSlickpic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.d.ts new file mode 100644 index 000000000..0a66e5bc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF880F"; +declare const SiSlickpic: IconType; +export { SiSlickpic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.mjs new file mode 100644 index 000000000..24cc9eb2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlickpic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF880F"; +const SiSlickpic = React.forwardRef(function SiSlickpic2({ title = "SlickPic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.483 18.308L6.056 14.085l2.52-9.201L24 9.104l-2.517 9.204zm-13.414-5.37l12.263 3.354 1.654-6.033L9.72 6.9l-1.65 6.034v.004zM8.526 15.795l-4.891 1.311-1.625-6.045 4.146-1.11.501-1.835L0 9.902l2.478 9.215 9.178-2.467" }) + ] + } + ); +}); + +export { SiSlickpic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.cjs new file mode 100644 index 000000000..9193c45fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E4637C"; +const SiSlides = React__namespace.forwardRef(function SiSlides2({ title = "Slides", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.695.395 4.578.97l5.7.552zm-2.443.851-.04.406H6.44ZM0 2.152V21.85h19.697V2.152Zm20.197.836V20.24l1.66-17.092zm2.084.965-1.65 17.002L24 4.301ZM9.928 7.361c.595 0 1.127.075 1.593.227.467.152.7.321.7.508 0 .151-.068.347-.201.586-.135.239-.255.359-.36.359-.012 0-.086-.035-.226-.105a2.82 2.82 0 0 0-1.34-.315c-.496 0-.88.103-1.155.307a.95.95 0 0 0-.412.797c0 .326.103.583.307.77.204.186.55.355 1.041.507 1.097.339 1.841.709 2.232 1.111.391.403.586 1.01.586 1.82 0 .812-.289 1.481-.867 2.006-.578.526-1.269.788-2.074.788-.805 0-1.499-.12-2.082-.36-.584-.239-.875-.47-.875-.691 0-.117.073-.292.219-.526.145-.233.275-.35.392-.35.012 0 .106.056.281.167.176.11.426.223.752.334.327.11.72.166 1.182.166.461 0 .841-.132 1.139-.395.297-.262.445-.619.445-1.068 0-.45-.13-.8-.393-1.05-.262-.252-.786-.488-1.568-.71-.782-.221-1.347-.503-1.697-.848-.35-.344-.526-.866-.526-1.566 0-.7.268-1.287.805-1.76.537-.472 1.238-.709 2.102-.709Zm5.86 14.989 4.165.404.04-.404zm1.126.613 3.18.642.066-.328z" }) + ] + } + ); +}); + +exports.default = SiSlides; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.d.ts new file mode 100644 index 000000000..39ea80b75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E4637C"; +declare const SiSlides: IconType; +export { SiSlides as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.mjs new file mode 100644 index 000000000..85758937b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlides.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E4637C"; +const SiSlides = React.forwardRef(function SiSlides2({ title = "Slides", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.695.395 4.578.97l5.7.552zm-2.443.851-.04.406H6.44ZM0 2.152V21.85h19.697V2.152Zm20.197.836V20.24l1.66-17.092zm2.084.965-1.65 17.002L24 4.301ZM9.928 7.361c.595 0 1.127.075 1.593.227.467.152.7.321.7.508 0 .151-.068.347-.201.586-.135.239-.255.359-.36.359-.012 0-.086-.035-.226-.105a2.82 2.82 0 0 0-1.34-.315c-.496 0-.88.103-1.155.307a.95.95 0 0 0-.412.797c0 .326.103.583.307.77.204.186.55.355 1.041.507 1.097.339 1.841.709 2.232 1.111.391.403.586 1.01.586 1.82 0 .812-.289 1.481-.867 2.006-.578.526-1.269.788-2.074.788-.805 0-1.499-.12-2.082-.36-.584-.239-.875-.47-.875-.691 0-.117.073-.292.219-.526.145-.233.275-.35.392-.35.012 0 .106.056.281.167.176.11.426.223.752.334.327.11.72.166 1.182.166.461 0 .841-.132 1.139-.395.297-.262.445-.619.445-1.068 0-.45-.13-.8-.393-1.05-.262-.252-.786-.488-1.568-.71-.782-.221-1.347-.503-1.697-.848-.35-.344-.526-.866-.526-1.566 0-.7.268-1.287.805-1.76.537-.472 1.238-.709 2.102-.709Zm5.86 14.989 4.165.404.04-.404zm1.126.613 3.18.642.066-.328z" }) + ] + } + ); +}); + +export { SiSlides as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.cjs new file mode 100644 index 000000000..b78d1d77c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008ED2"; +const SiSlideshare = React__namespace.forwardRef(function SiSlideshare2({ title = "SlideShare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.222.21C1.762.21 1.06 1.337 1.06 2.497v7.883c-.53-.502-1.096-.15-1.058.295.038.439.59 1.546 1.436 2.517.843.968 1.924 1.776 2.94 2.268a11.19 11.19 0 00-.491 3.598c.09 1.096.378 1.95.903 2.75.918 1.407 2.32 1.985 3.674 1.985 1.209 0 2.494-.563 2.698-2.373v-4.694c1.308.552 3.47.363 4.47-.39.19-.14.326-.207.416-.113.095.09.106.166-.113.439a5.6 5.6 0 01-3.103 1.965l.008 2.72a2.532 2.532 0 002.543 2.446c1.64.015 2.48-.556 3.148-1.164.632-.567 1.399-1.754 1.558-3.243a10.128 10.128 0 00-.454-3.926 10.358 10.358 0 002.948-2.268C23.213 12.5 24 11.185 24 10.675c0-.51-.556-.782-1.036-.302V2.497c0-.824-.48-2.29-2.135-2.29zm.423 1.35H20.41c.756 0 1.17.28 1.17 1.224v8.904a8.73 8.73 0 01-3.555 1.534c-1.606.352-2.94.087-3.666.148-.718.06-1.428.529-1.296 1.79-.491-.154-1.236-.683-1.682-1.117-.438-.428-.87-.711-1.534-.692-1.013.03-1.663.102-2.57.01a9.656 9.656 0 01-4.838-1.786V2.78c0-.87.378-1.22 1.206-1.22zm4.497 4.988a2.994 2.994 0 100 5.987 2.993 2.993 0 000-5.983zm7.71 0a2.994 2.994 0 100 5.987 2.993 2.993 0 000-5.983z" }) + ] + } + ); +}); + +exports.default = SiSlideshare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.d.ts new file mode 100644 index 000000000..0c0acc171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008ED2"; +declare const SiSlideshare: IconType; +export { SiSlideshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.mjs new file mode 100644 index 000000000..44a6c3c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlideshare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008ED2"; +const SiSlideshare = React.forwardRef(function SiSlideshare2({ title = "SlideShare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.222.21C1.762.21 1.06 1.337 1.06 2.497v7.883c-.53-.502-1.096-.15-1.058.295.038.439.59 1.546 1.436 2.517.843.968 1.924 1.776 2.94 2.268a11.19 11.19 0 00-.491 3.598c.09 1.096.378 1.95.903 2.75.918 1.407 2.32 1.985 3.674 1.985 1.209 0 2.494-.563 2.698-2.373v-4.694c1.308.552 3.47.363 4.47-.39.19-.14.326-.207.416-.113.095.09.106.166-.113.439a5.6 5.6 0 01-3.103 1.965l.008 2.72a2.532 2.532 0 002.543 2.446c1.64.015 2.48-.556 3.148-1.164.632-.567 1.399-1.754 1.558-3.243a10.128 10.128 0 00-.454-3.926 10.358 10.358 0 002.948-2.268C23.213 12.5 24 11.185 24 10.675c0-.51-.556-.782-1.036-.302V2.497c0-.824-.48-2.29-2.135-2.29zm.423 1.35H20.41c.756 0 1.17.28 1.17 1.224v8.904a8.73 8.73 0 01-3.555 1.534c-1.606.352-2.94.087-3.666.148-.718.06-1.428.529-1.296 1.79-.491-.154-1.236-.683-1.682-1.117-.438-.428-.87-.711-1.534-.692-1.013.03-1.663.102-2.57.01a9.656 9.656 0 01-4.838-1.786V2.78c0-.87.378-1.22 1.206-1.22zm4.497 4.988a2.994 2.994 0 100 5.987 2.993 2.993 0 000-5.983zm7.71 0a2.994 2.994 0 100 5.987 2.993 2.993 0 000-5.983z" }) + ] + } + ); +}); + +export { SiSlideshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.cjs new file mode 100644 index 000000000..16ce334c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2379F4"; +const SiSlint = React__namespace.forwardRef(function SiSlint2({ title = "Slint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.503 23.914 13.61-9.399s.614-.351.614-.906c0-.739-.776-.979-.776-.979l-7.488-2.953c-.267-.104-.634.189-.29.56l2.479 2.471s.688.675.688 1.117-.423.836-.423.836l-9.02 8.684c-.32.31.113.87.606.569zM17.497.087 3.887 9.484s-.614.351-.614.906c0 .739.776.98.776.98l7.488 2.953c.267.103.636-.19.29-.559l-2.479-2.48s-.688-.673-.688-1.116c0-.444.423-.837.423-.837L18.097.654c.326-.31-.106-.87-.6-.567z" }) + ] + } + ); +}); + +exports.default = SiSlint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.d.ts new file mode 100644 index 000000000..228f1c068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2379F4"; +declare const SiSlint: IconType; +export { SiSlint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.mjs new file mode 100644 index 000000000..e37aa5e33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSlint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2379F4"; +const SiSlint = React.forwardRef(function SiSlint2({ title = "Slint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.503 23.914 13.61-9.399s.614-.351.614-.906c0-.739-.776-.979-.776-.979l-7.488-2.953c-.267-.104-.634.189-.29.56l2.479 2.471s.688.675.688 1.117-.423.836-.423.836l-9.02 8.684c-.32.31.113.87.606.569zM17.497.087 3.887 9.484s-.614.351-.614.906c0 .739.776.98.776.98l7.488 2.953c.267.103.636-.19.29-.559l-2.479-2.48s-.688-.673-.688-1.116c0-.444.423-.837.423-.837L18.097.654c.326-.31-.106-.87-.6-.567z" }) + ] + } + ); +}); + +export { SiSlint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.cjs new file mode 100644 index 000000000..707751749 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D7E600"; +const SiSmart = React__namespace.forwardRef(function SiSmart2({ title = "smart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.85.846A11.138 11.138 0 0 0 0 11.979v.04a11.136 11.136 0 0 0 10.844 11.135h.283a10.983 10.983 0 0 0 4.041-.758.395.395 0 0 0 .256-.369v-5.564a.21.21 0 0 0-.274-.195c-1.202.489-2.215.957-3.96.957a5.222 5.222 0 0 1-5.22-5.22 5.22 5.22 0 0 1 5.22-5.22c1.745 0 2.758.467 3.96.955a.21.21 0 0 0 .274-.193V1.979a.395.395 0 0 0-.256-.37 10.983 10.983 0 0 0-4.037-.763Zm5.863 1.82v18.67a.238.238 0 0 0 .377.19c3.413-2.122 6.91-8.16 6.91-9.52 0-1.36-3.497-7.396-6.91-9.522a.238.238 0 0 0-.377.182Z" }) + ] + } + ); +}); + +exports.default = SiSmart; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.d.ts new file mode 100644 index 000000000..558545990 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D7E600"; +declare const SiSmart: IconType; +export { SiSmart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.mjs new file mode 100644 index 000000000..f80946909 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmart.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D7E600"; +const SiSmart = React.forwardRef(function SiSmart2({ title = "smart", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.85.846A11.138 11.138 0 0 0 0 11.979v.04a11.136 11.136 0 0 0 10.844 11.135h.283a10.983 10.983 0 0 0 4.041-.758.395.395 0 0 0 .256-.369v-5.564a.21.21 0 0 0-.274-.195c-1.202.489-2.215.957-3.96.957a5.222 5.222 0 0 1-5.22-5.22 5.22 5.22 0 0 1 5.22-5.22c1.745 0 2.758.467 3.96.955a.21.21 0 0 0 .274-.193V1.979a.395.395 0 0 0-.256-.37 10.983 10.983 0 0 0-4.037-.763Zm5.863 1.82v18.67a.238.238 0 0 0 .377.19c3.413-2.122 6.91-8.16 6.91-9.52 0-1.36-3.497-7.396-6.91-9.522a.238.238 0 0 0-.377.182Z" }) + ] + } + ); +}); + +export { SiSmart as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.cjs new file mode 100644 index 000000000..b7dd4a67f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#15BFFF"; +const SiSmartthings = React__namespace.forwardRef(function SiSmartthings2({ title = "SmartThings", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.51 0C8.338 0 5.034.537 2.694 2.694.5 5.174 0 8.464 0 11.525v.942c0 3.165.537 6.499 2.694 8.84C5.188 23.513 8.494 24 11.569 24h.854c3.18 0 6.528-.53 8.883-2.694C23.514 18.811 24 15.5 24 12.423v-.853c0-3.18-.53-6.528-2.694-8.876C18.826.494 15.544 0 12.482 0zM12 3.505c1.244 0 2.256.99 2.256 2.206 0 1.065-.685 1.976-1.715 2.181v1.59c1.48.214 2.528 1.43 2.528 2.934 0 1.654-1.377 3-3.07 3-1.692 0-3.068-1.346-3.068-3 0-.17.017-.335.045-.497l-1.536-.488a2.258 2.258 0 01-1.962 1.12c-.237 0-.471-.037-.698-.11-1.183-.375-1.833-1.622-1.449-2.78a2.246 2.246 0 012.146-1.524c.237 0 .471.036.698.108a2.23 2.23 0 011.313 1.098c.204.391.282.823.232 1.249l1.535.488c.44-.86 1.378-1.453 2.384-1.599V7.892c-1.029-.205-1.896-1.116-1.896-2.181 0-1.217 1.012-2.206 2.257-2.206zm0 .882c-.747 0-1.354.594-1.354 1.324 0 .73.607 1.324 1.354 1.324.746 0 1.354-.594 1.354-1.324 0-.73-.608-1.324-1.354-1.324zm6.522 3.75c.98 0 1.843.613 2.146 1.525.186.56.138 1.158-.135 1.683-.274.526-.74.915-1.314 1.096-.227.073-.461.11-.698.11a2.258 2.258 0 01-1.962-1.12l-.634.201-.278-.838.632-.202a2.21 2.21 0 011.546-2.347c.226-.072.46-.108.697-.108zM5.476 9.02c-.588 0-1.105.368-1.287.915-.23.694.159 1.442.869 1.668.136.043.277.065.419.065.588 0 1.105-.368 1.287-.915a1.29 1.29 0 00-.081-1.01 1.338 1.338 0 00-.788-.658 1.377 1.377 0 00-.42-.065zm13.045 0c-.142 0-.282.021-.419.065a1.32 1.32 0 00-.869 1.668c.182.547.7.915 1.287.915.142 0 .283-.022.42-.065.344-.11.623-.343.787-.659.165-.315.193-.673.082-1.009a1.348 1.348 0 00-1.288-.915zM12 10.474c-1.095 0-1.986.871-1.986 1.942 0 1.07.89 1.941 1.986 1.941 1.094 0 1.985-.87 1.985-1.94 0-1.072-.89-1.943-1.985-1.943zm-2.706 4.831l.73.519-.39.526c.709.757.801 1.925.16 2.787-.423.57-1.106.91-1.827.91-.478 0-.937-.147-1.325-.422a2.177 2.177 0 01-.499-3.082 2.28 2.28 0 012.76-.71zm5.41 0l.392.528a2.285 2.285 0 012.76.71 2.178 2.178 0 01-.499 3.082 2.275 2.275 0 01-1.325.421 2.28 2.28 0 01-1.827-.91 2.172 2.172 0 01.16-2.785l-.39-.527zm-6.734 1.21c-.433 0-.843.205-1.097.547-.44.59-.304 1.42.3 1.849a1.37 1.37 0 001.891-.293c.44-.59.305-1.42-.3-1.85a1.364 1.364 0 00-.794-.252zm8.059 0c-.287 0-.561.088-.795.254a1.307 1.307 0 00-.299 1.849 1.371 1.371 0 001.891.293 1.307 1.307 0 00.3-1.85 1.37 1.37 0 00-1.097-.545Z" }) + ] + } + ); +}); + +exports.default = SiSmartthings; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.d.ts new file mode 100644 index 000000000..049035669 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#15BFFF"; +declare const SiSmartthings: IconType; +export { SiSmartthings as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.mjs new file mode 100644 index 000000000..844fba4a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmartthings.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#15BFFF"; +const SiSmartthings = React.forwardRef(function SiSmartthings2({ title = "SmartThings", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.51 0C8.338 0 5.034.537 2.694 2.694.5 5.174 0 8.464 0 11.525v.942c0 3.165.537 6.499 2.694 8.84C5.188 23.513 8.494 24 11.569 24h.854c3.18 0 6.528-.53 8.883-2.694C23.514 18.811 24 15.5 24 12.423v-.853c0-3.18-.53-6.528-2.694-8.876C18.826.494 15.544 0 12.482 0zM12 3.505c1.244 0 2.256.99 2.256 2.206 0 1.065-.685 1.976-1.715 2.181v1.59c1.48.214 2.528 1.43 2.528 2.934 0 1.654-1.377 3-3.07 3-1.692 0-3.068-1.346-3.068-3 0-.17.017-.335.045-.497l-1.536-.488a2.258 2.258 0 01-1.962 1.12c-.237 0-.471-.037-.698-.11-1.183-.375-1.833-1.622-1.449-2.78a2.246 2.246 0 012.146-1.524c.237 0 .471.036.698.108a2.23 2.23 0 011.313 1.098c.204.391.282.823.232 1.249l1.535.488c.44-.86 1.378-1.453 2.384-1.599V7.892c-1.029-.205-1.896-1.116-1.896-2.181 0-1.217 1.012-2.206 2.257-2.206zm0 .882c-.747 0-1.354.594-1.354 1.324 0 .73.607 1.324 1.354 1.324.746 0 1.354-.594 1.354-1.324 0-.73-.608-1.324-1.354-1.324zm6.522 3.75c.98 0 1.843.613 2.146 1.525.186.56.138 1.158-.135 1.683-.274.526-.74.915-1.314 1.096-.227.073-.461.11-.698.11a2.258 2.258 0 01-1.962-1.12l-.634.201-.278-.838.632-.202a2.21 2.21 0 011.546-2.347c.226-.072.46-.108.697-.108zM5.476 9.02c-.588 0-1.105.368-1.287.915-.23.694.159 1.442.869 1.668.136.043.277.065.419.065.588 0 1.105-.368 1.287-.915a1.29 1.29 0 00-.081-1.01 1.338 1.338 0 00-.788-.658 1.377 1.377 0 00-.42-.065zm13.045 0c-.142 0-.282.021-.419.065a1.32 1.32 0 00-.869 1.668c.182.547.7.915 1.287.915.142 0 .283-.022.42-.065.344-.11.623-.343.787-.659.165-.315.193-.673.082-1.009a1.348 1.348 0 00-1.288-.915zM12 10.474c-1.095 0-1.986.871-1.986 1.942 0 1.07.89 1.941 1.986 1.941 1.094 0 1.985-.87 1.985-1.94 0-1.072-.89-1.943-1.985-1.943zm-2.706 4.831l.73.519-.39.526c.709.757.801 1.925.16 2.787-.423.57-1.106.91-1.827.91-.478 0-.937-.147-1.325-.422a2.177 2.177 0 01-.499-3.082 2.28 2.28 0 012.76-.71zm5.41 0l.392.528a2.285 2.285 0 012.76.71 2.178 2.178 0 01-.499 3.082 2.275 2.275 0 01-1.325.421 2.28 2.28 0 01-1.827-.91 2.172 2.172 0 01.16-2.785l-.39-.527zm-6.734 1.21c-.433 0-.843.205-1.097.547-.44.59-.304 1.42.3 1.849a1.37 1.37 0 001.891-.293c.44-.59.305-1.42-.3-1.85a1.364 1.364 0 00-.794-.252zm8.059 0c-.287 0-.561.088-.795.254a1.307 1.307 0 00-.299 1.849 1.371 1.371 0 001.891.293 1.307 1.307 0 00.3-1.85 1.37 1.37 0 00-1.097-.545Z" }) + ] + } + ); +}); + +export { SiSmartthings as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.cjs new file mode 100644 index 000000000..d2ba77f2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E85C33"; +const SiSmashingmagazine = React__namespace.forwardRef(function SiSmashingmagazine2({ title = "Smashing Magazine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.734 12.002c.766.524 1.662 1.01 2.708 1.443 1.785.742 2.985 1.387 3.601 1.936.615.547.928 1.248.928 2.104-.005 1.457-1.023 2.189-3.076 2.189-1.977 0-3.75-.627-5.326-1.875l-1.871 4.186c1.422.761 2.58 1.257 3.475 1.496l.141.033-1.798.416c-1.271.292-2.539-.503-2.832-1.771L.061 6.5c-.291-1.271.5-2.539 1.773-2.835l4.375-1.009c-.158.155-.307.316-.441.485l-.018.021c-.753.949-1.131 2.115-1.131 3.505 0 2.101 1.03 3.87 3.079 5.296l.046.029-.01.01zm10.358.072c-.84-.672-1.904-1.268-3.24-1.786-1.98-.784-3.271-1.41-3.871-1.872-.6-.465-.914-.981-.914-1.557 0-1.459.914-2.19 2.76-2.19 2.041 0 3.646.494 4.786 1.476l1.515-4.08c-1.095-.556-2.235-.96-3.405-1.216l-.06-.015c-.256-.061-.525-.12-.811-.164l2.625-.602c1.275-.285 2.535.511 2.836 1.771l3.63 15.647c.284 1.274-.51 2.551-1.784 2.835l-2.985.69c.824-1.051 1.245-2.34 1.245-3.87 0-1.575-.437-2.911-1.306-4.021-.285-.346-.615-.676-1.006-1.006l-.044-.029.029-.011z" }) + ] + } + ); +}); + +exports.default = SiSmashingmagazine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.d.ts new file mode 100644 index 000000000..df5f664f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E85C33"; +declare const SiSmashingmagazine: IconType; +export { SiSmashingmagazine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.mjs new file mode 100644 index 000000000..58840d071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmashingmagazine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E85C33"; +const SiSmashingmagazine = React.forwardRef(function SiSmashingmagazine2({ title = "Smashing Magazine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.734 12.002c.766.524 1.662 1.01 2.708 1.443 1.785.742 2.985 1.387 3.601 1.936.615.547.928 1.248.928 2.104-.005 1.457-1.023 2.189-3.076 2.189-1.977 0-3.75-.627-5.326-1.875l-1.871 4.186c1.422.761 2.58 1.257 3.475 1.496l.141.033-1.798.416c-1.271.292-2.539-.503-2.832-1.771L.061 6.5c-.291-1.271.5-2.539 1.773-2.835l4.375-1.009c-.158.155-.307.316-.441.485l-.018.021c-.753.949-1.131 2.115-1.131 3.505 0 2.101 1.03 3.87 3.079 5.296l.046.029-.01.01zm10.358.072c-.84-.672-1.904-1.268-3.24-1.786-1.98-.784-3.271-1.41-3.871-1.872-.6-.465-.914-.981-.914-1.557 0-1.459.914-2.19 2.76-2.19 2.041 0 3.646.494 4.786 1.476l1.515-4.08c-1.095-.556-2.235-.96-3.405-1.216l-.06-.015c-.256-.061-.525-.12-.811-.164l2.625-.602c1.275-.285 2.535.511 2.836 1.771l3.63 15.647c.284 1.274-.51 2.551-1.784 2.835l-2.985.69c.824-1.051 1.245-2.34 1.245-3.87 0-1.575-.437-2.911-1.306-4.021-.285-.346-.615-.676-1.006-1.006l-.044-.029.029-.011z" }) + ] + } + ); +}); + +export { SiSmashingmagazine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.cjs new file mode 100644 index 000000000..24fc35669 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSmoothcomp = React__namespace.forwardRef(function SiSmoothcomp2({ title = "Smoothcomp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.3415 0C2.845 0 0 2.8445 0 6.3415v11.3166C0 21.155 2.8449 24 6.3415 24h11.317C21.155 24 24 21.155 24 17.658V6.3416C24 2.845 21.155 0 17.6585 0Zm0 2.1493h11.317c2.3117 0 4.1922 1.8805 4.1922 4.1922v11.3166c0 2.3118-1.8805 4.1923-4.1922 4.1923H6.3415c-2.3117 0-4.1922-1.8802-4.1922-4.1923V6.3415c0-2.3117 1.8805-4.1922 4.1922-4.1922zM7.06 5.638c-.7632 0-1.3842.6211-1.3842 1.3843v10.0035c0 .7629.621 1.384 1.3842 1.384h10.0047c.7628 0 1.3835-.6208 1.3835-1.3836V7.022c0-.37-.1443-.7174-.4057-.9788a1.3745 1.3745 0 0 0-.9786-.405Zm.765 2.1493h8.474v8.4735H7.825Z" }) + ] + } + ); +}); + +exports.default = SiSmoothcomp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.d.ts new file mode 100644 index 000000000..3b9d1b141 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSmoothcomp: IconType; +export { SiSmoothcomp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.mjs new file mode 100644 index 000000000..3f7a87447 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmoothcomp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSmoothcomp = React.forwardRef(function SiSmoothcomp2({ title = "Smoothcomp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.3415 0C2.845 0 0 2.8445 0 6.3415v11.3166C0 21.155 2.8449 24 6.3415 24h11.317C21.155 24 24 21.155 24 17.658V6.3416C24 2.845 21.155 0 17.6585 0Zm0 2.1493h11.317c2.3117 0 4.1922 1.8805 4.1922 4.1922v11.3166c0 2.3118-1.8805 4.1923-4.1922 4.1923H6.3415c-2.3117 0-4.1922-1.8802-4.1922-4.1923V6.3415c0-2.3117 1.8805-4.1922 4.1922-4.1922zM7.06 5.638c-.7632 0-1.3842.6211-1.3842 1.3843v10.0035c0 .7629.621 1.384 1.3842 1.384h10.0047c.7628 0 1.3835-.6208 1.3835-1.3836V7.022c0-.37-.1443-.7174-.4057-.9788a1.3745 1.3745 0 0 0-.9786-.405Zm.765 2.1493h8.474v8.4735H7.825Z" }) + ] + } + ); +}); + +export { SiSmoothcomp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.cjs new file mode 100644 index 000000000..eb78978ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE2E24"; +const SiSmrt = React__namespace.forwardRef(function SiSmrt2({ title = "SMRT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.6535 13.753c.8096 4.4368 4.677 7.8105 9.3392 7.8105 4.677 0 8.6171-4.0882 9.3967-8.5422h-2.5631c-.7499 3.0597-3.5506 6.0385-6.8334 6.0385-2.3686 0-4.4526-1.1984-5.727-2.999h5.292c.435 0 .8542-.2304 1.214-.7029l1.2895-1.8584c.121-.2305.3448-.3601.6145-.3601h7.54L24 10.8318H13.6117c-.2535 0-.48.144-.6148.3284l-1.7089 2.2932c-.1037.1728-.2852.288-.4946.288zm18.6783-3.5063c-.8096-4.4396-4.6468-7.8102-9.3242-7.8102-4.677 0-8.4993 3.9755-9.2786 8.4299h2.5634c.7496-3.0598 3.4322-5.9265 6.7302-5.9265 2.3686 0 4.452 1.1985 5.7263 2.9964h-5.3065c-.4348 0-.8545.2305-1.2143.7058l-1.2892 1.8581c-.121.2305-.3448.3604-.6148.3604h-7.54L0 13.1365h10.3883c.2535 0 .48-.144.6148-.3284l1.7089-2.3107c.1037-.1729.2852-.2881.4946-.2881z" }) + ] + } + ); +}); + +exports.default = SiSmrt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.d.ts new file mode 100644 index 000000000..eaae98762 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE2E24"; +declare const SiSmrt: IconType; +export { SiSmrt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.mjs new file mode 100644 index 000000000..9a0d47d63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmrt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE2E24"; +const SiSmrt = React.forwardRef(function SiSmrt2({ title = "SMRT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.6535 13.753c.8096 4.4368 4.677 7.8105 9.3392 7.8105 4.677 0 8.6171-4.0882 9.3967-8.5422h-2.5631c-.7499 3.0597-3.5506 6.0385-6.8334 6.0385-2.3686 0-4.4526-1.1984-5.727-2.999h5.292c.435 0 .8542-.2304 1.214-.7029l1.2895-1.8584c.121-.2305.3448-.3601.6145-.3601h7.54L24 10.8318H13.6117c-.2535 0-.48.144-.6148.3284l-1.7089 2.2932c-.1037.1728-.2852.288-.4946.288zm18.6783-3.5063c-.8096-4.4396-4.6468-7.8102-9.3242-7.8102-4.677 0-8.4993 3.9755-9.2786 8.4299h2.5634c.7496-3.0598 3.4322-5.9265 6.7302-5.9265 2.3686 0 4.452 1.1985 5.7263 2.9964h-5.3065c-.4348 0-.8545.2305-1.2143.7058l-1.2892 1.8581c-.121.2305-.3448.3604-.6148.3604h-7.54L0 13.1365h10.3883c.2535 0 .48-.144.6148-.3284l1.7089-2.3107c.1037-.1729.2852-.2881.4946-.2881z" }) + ] + } + ); +}); + +export { SiSmrt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.cjs new file mode 100644 index 000000000..198ec57e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6DB944"; +const SiSmugmug = React__namespace.forwardRef(function SiSmugmug2({ title = "SmugMug", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.31 0l-.35.01c-1.55.13-2.46 1.2-2.6 2.28-.15 1.2.65 2.4 2.58 2.28 2.15-.12 3.09-1.2 3.1-2.28.02-1.15-1-2.28-2.73-2.29zM7.21.34A2.66 2.66 0 004.56 2.6C4.41 3.73 5.12 4.87 7 4.85c2.23-.04 3.31-1.37 3.16-2.57-.12-1-1.09-1.92-2.94-1.94zm12.35 8.71a7 7 0 00-.4.02c-5.28.54-5.54.6-15.26.82C-.2 9.9.62 24 9.38 24c8.2 0 18.12-15.15 10.18-14.95zm-1.1 2.7c3.18-.07-2.9 9.53-8.8 9.56-7.46 0-6.44-8.8-5.18-8.85 8.67-.35 10.88-.64 13.98-.71Z" }) + ] + } + ); +}); + +exports.default = SiSmugmug; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.d.ts new file mode 100644 index 000000000..a658252a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6DB944"; +declare const SiSmugmug: IconType; +export { SiSmugmug as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.mjs new file mode 100644 index 000000000..fddf6b67f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSmugmug.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6DB944"; +const SiSmugmug = React.forwardRef(function SiSmugmug2({ title = "SmugMug", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.31 0l-.35.01c-1.55.13-2.46 1.2-2.6 2.28-.15 1.2.65 2.4 2.58 2.28 2.15-.12 3.09-1.2 3.1-2.28.02-1.15-1-2.28-2.73-2.29zM7.21.34A2.66 2.66 0 004.56 2.6C4.41 3.73 5.12 4.87 7 4.85c2.23-.04 3.31-1.37 3.16-2.57-.12-1-1.09-1.92-2.94-1.94zm12.35 8.71a7 7 0 00-.4.02c-5.28.54-5.54.6-15.26.82C-.2 9.9.62 24 9.38 24c8.2 0 18.12-15.15 10.18-14.95zm-1.1 2.7c3.18-.07-2.9 9.53-8.8 9.56-7.46 0-6.44-8.8-5.18-8.85 8.67-.35 10.88-.64 13.98-.71Z" }) + ] + } + ); +}); + +export { SiSmugmug as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.cjs new file mode 100644 index 000000000..b2019e440 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFC00"; +const SiSnapchat = React__namespace.forwardRef(function SiSnapchat2({ title = "Snapchat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.206.793c.99 0 4.347.276 5.93 3.821.529 1.193.403 3.219.299 4.847l-.003.06c-.012.18-.022.345-.03.51.075.045.203.09.401.09.3-.016.659-.12 1.033-.301.165-.088.344-.104.464-.104.182 0 .359.029.509.09.45.149.734.479.734.838.015.449-.39.839-1.213 1.168-.089.029-.209.075-.344.119-.45.135-1.139.36-1.333.81-.09.224-.061.524.12.868l.015.015c.06.136 1.526 3.475 4.791 4.014.255.044.435.27.42.509 0 .075-.015.149-.045.225-.24.569-1.273.988-3.146 1.271-.059.091-.12.375-.164.57-.029.179-.074.36-.134.553-.076.271-.27.405-.555.405h-.03c-.135 0-.313-.031-.538-.074-.36-.075-.765-.135-1.273-.135-.3 0-.599.015-.913.074-.6.104-1.123.464-1.723.884-.853.599-1.826 1.288-3.294 1.288-.06 0-.119-.015-.18-.015h-.149c-1.468 0-2.427-.675-3.279-1.288-.599-.42-1.107-.779-1.707-.884-.314-.045-.629-.074-.928-.074-.54 0-.958.089-1.272.149-.211.043-.391.074-.54.074-.374 0-.523-.224-.583-.42-.061-.192-.09-.389-.135-.567-.046-.181-.105-.494-.166-.57-1.918-.222-2.95-.642-3.189-1.226-.031-.063-.052-.15-.055-.225-.015-.243.165-.465.42-.509 3.264-.54 4.73-3.879 4.791-4.02l.016-.029c.18-.345.224-.645.119-.869-.195-.434-.884-.658-1.332-.809-.121-.029-.24-.074-.346-.119-1.107-.435-1.257-.93-1.197-1.273.09-.479.674-.793 1.168-.793.146 0 .27.029.383.074.42.194.789.3 1.104.3.234 0 .384-.06.465-.105l-.046-.569c-.098-1.626-.225-3.651.307-4.837C7.392 1.077 10.739.807 11.727.807l.419-.015h.06z" }) + ] + } + ); +}); + +exports.default = SiSnapchat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.d.ts new file mode 100644 index 000000000..b75cf6b56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFC00"; +declare const SiSnapchat: IconType; +export { SiSnapchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.mjs new file mode 100644 index 000000000..2ccca1958 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapchat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFC00"; +const SiSnapchat = React.forwardRef(function SiSnapchat2({ title = "Snapchat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.206.793c.99 0 4.347.276 5.93 3.821.529 1.193.403 3.219.299 4.847l-.003.06c-.012.18-.022.345-.03.51.075.045.203.09.401.09.3-.016.659-.12 1.033-.301.165-.088.344-.104.464-.104.182 0 .359.029.509.09.45.149.734.479.734.838.015.449-.39.839-1.213 1.168-.089.029-.209.075-.344.119-.45.135-1.139.36-1.333.81-.09.224-.061.524.12.868l.015.015c.06.136 1.526 3.475 4.791 4.014.255.044.435.27.42.509 0 .075-.015.149-.045.225-.24.569-1.273.988-3.146 1.271-.059.091-.12.375-.164.57-.029.179-.074.36-.134.553-.076.271-.27.405-.555.405h-.03c-.135 0-.313-.031-.538-.074-.36-.075-.765-.135-1.273-.135-.3 0-.599.015-.913.074-.6.104-1.123.464-1.723.884-.853.599-1.826 1.288-3.294 1.288-.06 0-.119-.015-.18-.015h-.149c-1.468 0-2.427-.675-3.279-1.288-.599-.42-1.107-.779-1.707-.884-.314-.045-.629-.074-.928-.074-.54 0-.958.089-1.272.149-.211.043-.391.074-.54.074-.374 0-.523-.224-.583-.42-.061-.192-.09-.389-.135-.567-.046-.181-.105-.494-.166-.57-1.918-.222-2.95-.642-3.189-1.226-.031-.063-.052-.15-.055-.225-.015-.243.165-.465.42-.509 3.264-.54 4.73-3.879 4.791-4.02l.016-.029c.18-.345.224-.645.119-.869-.195-.434-.884-.658-1.332-.809-.121-.029-.24-.074-.346-.119-1.107-.435-1.257-.93-1.197-1.273.09-.479.674-.793 1.168-.793.146 0 .27.029.383.074.42.194.789.3 1.104.3.234 0 .384-.06.465-.105l-.046-.569c-.098-1.626-.225-3.651.307-4.837C7.392 1.077 10.739.807 11.727.807l.419-.015h.06z" }) + ] + } + ); +}); + +export { SiSnapchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.cjs new file mode 100644 index 000000000..3ccb84280 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E95420"; +const SiSnapcraft = React__namespace.forwardRef(function SiSnapcraft2({ title = "Snapcraft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.17 11.335a.106.106 0 0 0-.173.022L1.754 23.466a.105.105 0 0 0 .032.133c.04.029.101.027.138-.012l8.89-9.11a.107.107 0 0 0 .005-.144l-2.649-3Zm9.76-3.519L.146.39C.041.346-.047.478.028.56l12.034 12.874a.11.11 0 0 0 .075.034.102.102 0 0 0 .075-.03L17.96 7.99a.106.106 0 0 0-.032-.174Zm6.047.547-2.188-4.405a.21.21 0 0 0-.189-.117h-8.77a.212.212 0 0 0-.08.408l10.96 4.405a.211.211 0 0 0 .268-.29z" }) + ] + } + ); +}); + +exports.default = SiSnapcraft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.d.ts new file mode 100644 index 000000000..5b40e0610 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E95420"; +declare const SiSnapcraft: IconType; +export { SiSnapcraft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.mjs new file mode 100644 index 000000000..8e73a0ba0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapcraft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E95420"; +const SiSnapcraft = React.forwardRef(function SiSnapcraft2({ title = "Snapcraft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.17 11.335a.106.106 0 0 0-.173.022L1.754 23.466a.105.105 0 0 0 .032.133c.04.029.101.027.138-.012l8.89-9.11a.107.107 0 0 0 .005-.144l-2.649-3Zm9.76-3.519L.146.39C.041.346-.047.478.028.56l12.034 12.874a.11.11 0 0 0 .075.034.102.102 0 0 0 .075-.03L17.96 7.99a.106.106 0 0 0-.032-.174Zm6.047.547-2.188-4.405a.21.21 0 0 0-.189-.117h-8.77a.212.212 0 0 0-.08.408l10.96 4.405a.211.211 0 0 0 .268-.29z" }) + ] + } + ); +}); + +export { SiSnapcraft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.cjs new file mode 100644 index 000000000..5aa13b4b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C33139"; +const SiSnapdragon = React__namespace.forwardRef(function SiSnapdragon2({ title = "Snapdragon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .016h-.351c-3.223.128-6.862 2.202-7.596 5.49-.032.127-.191.127-.223 0-.16-.799-.128-1.66.096-2.394a12.645 12.645 0 0 0-1.82 2.074 6.473 6.473 0 0 0-.638 1.34c-.447 1.405-.287 3.096.702 4.245.926 1.085 2.394 1.468 3.575 2.202 1.18.703 2.202 1.66 2.68 3 .511 1.405.416 3-.127 4.373-.032.127-.223.095-.223-.064.127-2.01-.894-3.894-2.777-4.787-.99-.447-2.106-.639-3.096-1.117C1.31 13.963.16 13.133 0 12.048c0 6.574 5.362 11.936 12 11.936 6.607 0 12-5.362 12-12S18.607.016 12 .016m8.745 18.638a11.663 11.663 0 0 1-3.255 2.872s0-.032.032-.032c-.83.479-1.724.894-2.681 1.15.734-.607 3.127-2.171 3.127-6.48 0-3.191-2.01-5.33-4.276-6.382C11.107 8.569 8.33 7.93 8.33 4.675c0-1.723 1.372-3.574 3.51-3.606.128-.032.288-.032.416-.032h.127a10.827 10.827 0 0 1 7.5 3.35 10.923 10.923 0 0 1 3.096 7.66v.064c0 1.34-.255 2.65-.702 3.862v.032c-.032.096-.096.223-.128.32-.032.063-.064.127-.064.159s-.032.032-.032.064a13.475 13.475 0 0 1-1.308 2.106" }) + ] + } + ); +}); + +exports.default = SiSnapdragon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.d.ts new file mode 100644 index 000000000..c09bc68f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C33139"; +declare const SiSnapdragon: IconType; +export { SiSnapdragon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.mjs new file mode 100644 index 000000000..314d6618c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnapdragon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C33139"; +const SiSnapdragon = React.forwardRef(function SiSnapdragon2({ title = "Snapdragon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .016h-.351c-3.223.128-6.862 2.202-7.596 5.49-.032.127-.191.127-.223 0-.16-.799-.128-1.66.096-2.394a12.645 12.645 0 0 0-1.82 2.074 6.473 6.473 0 0 0-.638 1.34c-.447 1.405-.287 3.096.702 4.245.926 1.085 2.394 1.468 3.575 2.202 1.18.703 2.202 1.66 2.68 3 .511 1.405.416 3-.127 4.373-.032.127-.223.095-.223-.064.127-2.01-.894-3.894-2.777-4.787-.99-.447-2.106-.639-3.096-1.117C1.31 13.963.16 13.133 0 12.048c0 6.574 5.362 11.936 12 11.936 6.607 0 12-5.362 12-12S18.607.016 12 .016m8.745 18.638a11.663 11.663 0 0 1-3.255 2.872s0-.032.032-.032c-.83.479-1.724.894-2.681 1.15.734-.607 3.127-2.171 3.127-6.48 0-3.191-2.01-5.33-4.276-6.382C11.107 8.569 8.33 7.93 8.33 4.675c0-1.723 1.372-3.574 3.51-3.606.128-.032.288-.032.416-.032h.127a10.827 10.827 0 0 1 7.5 3.35 10.923 10.923 0 0 1 3.096 7.66v.064c0 1.34-.255 2.65-.702 3.862v.032c-.032.096-.096.223-.128.32-.032.063-.064.127-.064.159s-.032.032-.032.064a13.475 13.475 0 0 1-1.308 2.106" }) + ] + } + ); +}); + +export { SiSnapdragon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.cjs new file mode 100644 index 000000000..19a5a58c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CA0939"; +const SiSncf = React__namespace.forwardRef(function SiSncf2({ title = "SNCF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.093 5.76c4.628 0 14.881.633 21.698 4.934.21.135.25.27.173.519-.039.115-2.151 6.74-2.151 6.74-.096.287-.25.287-.423.287H.384c-.25 0-.384-.172-.384-.384V6.182c0-.25.173-.384.46-.384.423 0 .96-.038 1.633-.038zm.288 6.355c-.384.941.71 1.517 1.67 1.959.788.345 1.345.71 1.133 1.113-.134.346-.71.5-1.478.5-.672 0-1.517-.212-2.19-.519l-.383.845c.5.211 1.478.519 2.342.557 1.594.038 2.65-.346 3.073-1.229.426-.976-.575-1.51-1.518-1.963l-.092-.045-.138-.066c-.787-.345-1.305-.557-1.17-.94.133-.461.92-.634 1.631-.596.346 0 .595.039.922.135l.25-.807c-.346-.077-.634-.096-1.057-.096-1.42-.038-2.688.346-2.995 1.152Zm13.595-1.21c-1.344 0-2.554.461-3.284 1.268 0 .038-.038.038-.077.038-.038 0-.038 0-.038-.038l.384-1.19h-1.133l-1.267 3.82c-.384-1.113-1.21-2.63-2.19-3.82H7.163l-.883 2.803c.442.345.576.595.73.921 0 0 0 .039.038.039 0 0 .038 0 .038-.039 0-.038.788-2.419.788-2.419a14.506 14.506 0 0 1 2.016 4.167h1.267l.634-1.997s0-.039.038-.039c0 0 .039 0 .039.039.172 1.229 1.44 2.074 3.225 2.074 1.133 0 2.19-.308 2.439-.423l.672-2.112h2.573l.25-.807h-2.612l.461-1.363h3.072l.288-.845h-4.34l-1.44 4.551c-.326.077-.71.096-1.094.096-.845 0-1.555-.211-1.94-.672a1.467 1.467 0 0 1-.326-1.267c.173-1.152 1.306-1.901 2.823-1.901.326 0 .634 0 .96.077l.327-.884c-.346-.076-.807-.076-1.23-.076z" }) + ] + } + ); +}); + +exports.default = SiSncf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.d.ts new file mode 100644 index 000000000..92fa6857e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CA0939"; +declare const SiSncf: IconType; +export { SiSncf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.mjs new file mode 100644 index 000000000..8b827d880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSncf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CA0939"; +const SiSncf = React.forwardRef(function SiSncf2({ title = "SNCF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.093 5.76c4.628 0 14.881.633 21.698 4.934.21.135.25.27.173.519-.039.115-2.151 6.74-2.151 6.74-.096.287-.25.287-.423.287H.384c-.25 0-.384-.172-.384-.384V6.182c0-.25.173-.384.46-.384.423 0 .96-.038 1.633-.038zm.288 6.355c-.384.941.71 1.517 1.67 1.959.788.345 1.345.71 1.133 1.113-.134.346-.71.5-1.478.5-.672 0-1.517-.212-2.19-.519l-.383.845c.5.211 1.478.519 2.342.557 1.594.038 2.65-.346 3.073-1.229.426-.976-.575-1.51-1.518-1.963l-.092-.045-.138-.066c-.787-.345-1.305-.557-1.17-.94.133-.461.92-.634 1.631-.596.346 0 .595.039.922.135l.25-.807c-.346-.077-.634-.096-1.057-.096-1.42-.038-2.688.346-2.995 1.152Zm13.595-1.21c-1.344 0-2.554.461-3.284 1.268 0 .038-.038.038-.077.038-.038 0-.038 0-.038-.038l.384-1.19h-1.133l-1.267 3.82c-.384-1.113-1.21-2.63-2.19-3.82H7.163l-.883 2.803c.442.345.576.595.73.921 0 0 0 .039.038.039 0 0 .038 0 .038-.039 0-.038.788-2.419.788-2.419a14.506 14.506 0 0 1 2.016 4.167h1.267l.634-1.997s0-.039.038-.039c0 0 .039 0 .039.039.172 1.229 1.44 2.074 3.225 2.074 1.133 0 2.19-.308 2.439-.423l.672-2.112h2.573l.25-.807h-2.612l.461-1.363h3.072l.288-.845h-4.34l-1.44 4.551c-.326.077-.71.096-1.094.096-.845 0-1.555-.211-1.94-.672a1.467 1.467 0 0 1-.326-1.267c.173-1.152 1.306-1.901 2.823-1.901.326 0 .634 0 .96.077l.327-.884c-.346-.076-.807-.076-1.23-.076z" }) + ] + } + ); +}); + +export { SiSncf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.cjs new file mode 100644 index 000000000..214e408c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F6A7AA"; +const SiSnort = React__namespace.forwardRef(function SiSnort2({ title = "Snort", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.53 14.994c.257-.027.46-.392.582-.555-.23-.163-.718.217-.582.555m11.815-1.747c-1.03 1.34-2.629 3.305-2.588 4.511.23-1.016 1.355-1.26 2.94-3.36.84-1.097 1.138-1.3 2.222-3.211.04-.054.718-.271.556-.474-1.315.474-2.575 1.829-3.13 2.534m4.43-5.054c-.325-.529-1.26-.773-1.991-.637-2.683.623-6.3-.23-7.276-.8-.068 0 .149-.528.013-.731.203-.136.271-.217.528-.15.461.204 1.03.123 1.49.055-.27-.528-.541-1.558-.948-2.154-.393.325-1.002.582-1.395.853-.732-1.978-3.211-2.33-5.217-1.192-.054.027-.108.027-.108.027s-.542-1.138-.772-1.667C7.38 2.217 6.757 2.8 6.486 2.8c-.542 0-1.192 0-1.72-.068 0 .922.352 1.992.392 2.792-.8.799-1.585 1.585-2.113 2.588-.583-.136-1.233-.23-1.843.027-.38.162-.827.636-.678 1.165.082.298.461.61 1.193.8-1.41 1.354-2.128 4.213-.84 5.202-.326.325-.719.637-.84 1.07-.15.57.176.773.569.854.731.136 1.26-.23 1.802-.555 1.138.677 1.91.623 3.238.69.135 0 .447.394.447.394s-.894-.095-1.355.04c-.623.19-1.165.772-.732 1.274.637.759 1.87 1.03 2.981.759.678.718.366 1.896-.772 2.37.99-.067 2.14-.731 2.263-2.1.027-.257-.122-.677-.325-.88-.136-.136-.312-.325-.312-.325s.555-1.057-.596-1.653c.46-.095 1.328-.461 1.328-.461s.352.406.663.46c.34.055.732-.135.868-.46.19-.488-.393-.867-.393-.867l.46-.732s.407.38.583.678c.57.948.678 1.896 1.206 2.831.27.461.732.84 1.192 1.044a2.5 2.5 0 0 0 1.274.08c.745-.135 1.341-.378 1.761-.636 2.954-1.761 5.027-4.065 6.83-7.33.446-.88 1.422-2.602.758-3.658m-8.4-3.943s.176.311.27.528c.136.325.394.962.394.962l-.529-.095-.501-.352s-.068.257-.352.474c-.136-.393.149-.582-.244-1.016.311-.203.962-.501.962-.501m-7.29 15.853c.122.704-.501 1.422-.935 1.693.38-.582.746-.84.312-2.046-.176-.474-.596-.813-1.03-1.097-.135-.095-.311-.15-.515-.203-.216-.055-.46.108-.664.311 0 0 .624.312 1.166.407.311.406-.312.42-.312.42-.068.067-1.788-.176-1.68-1.016.04-.326.69-.935 1.992-.434.731.284 1.558 1.3 1.666 1.965m-.732-2.48c.326.149.326.528.326.867 0 .068-.068.068-.136.136-.203-.366-.542-.542-.867-.8-.068-.054-.108-.081-.04-.149.216-.203.487-.176.717-.054m2.426-1.138c-.122.46-.556.38-.596.149-.04-.203.217-.271.298-.366.068.04.311.149.298.217m2.507 1.22c-.719-2.141-2.697-4.106-3.659-4.675-.054-.027-.176.149-.176.149s.867.813 1.003 1.409c.135.528-.163 1.097-.501 1.49-1.328 1.26-3.117 1.016-4.824.895-.528-.041-1.314-.393-.908-1.193-.596.461-1.517 1.328-2.195 1.057-.135-.054-.325-.38-.19-.69.244-.516 1.057-1.315 1.762-1.667.04-.068-.054-.204-.312-.082-.27.122-.8.637-1.016.529-1.206-.597-.434-2.819-.04-3.55.487-.908 1.124-1.07 1.788-1.274-.786-.135-1.396-.217-1.789-.623-.203-.271-.108-.474.095-.732a1.56 1.56 0 0 1 .705-.42c.27-.081.501-.04.759.014.65.135.69.474 1.016.406-.068-.149-.407-.46-.339-.596a5.95 5.95 0 0 1 1.572-1.978c.095-.082.162-.095.298-.095.203.068.122.27.244.46.203.34.745.326 1.07.068.664-.528.88-1.517 1.152-2.317 0-.067.217-.487-.15-.365-.175.731-.46 1.327-.866 1.991-.203.271-.434.502-.76.38-.067-.068-.202-.109-.23-.312-.135-.948-.325-2.723-.325-2.723s.922.122 1.274.04c.203-.04.664-.596 1.125-.786.325.461.636.908.921 1.355 1.328-.596 2.886-1.07 4.2-.08.461.392.962.893 1.111 1.34.122.34.19 1.166.109 1.789 1.124.596 2.235.935 3.495 1.179.556.108.99.162 1.532.203.27.027.907.108 2.167-.108-2.588.528-4.674 2.195-6.422 4.213-.867.99-2.412 3.415-2.615 4.296-.081.365-.095.555-.081 1.002Zm10.568-6.572c-.434 1.273-1.545 2.954-2.696 4.2-1.07 1.165-4.106 3.956-6.247 3.835-1.002-.055-1.395-1.084-1.03-2.236.678-2.181 3.7-6.612 7.534-8.197.8-.325 2.195-.474 2.52-.054.434.61.19 1.653-.08 2.452Zm-2.914-.068c.177-.339.38-.474.448-.745.068-.46.88-.163.921-.772-1.382.216-3.13 1.883-4.281 3.306-1.193 1.463-2.886 3.577-2.724 5.121.271-1.273.746-.745 2.683-3.103 1.057-1.273 2.141-2.303 2.954-3.807m-6.504-5.569c-.217-.23-.38.325-.501.23-.42-.311.23-1.409-.583-1.544-.664-.122-1.151.637-1.585 1.07.203.65.962-1.165 1.49-.636.217.216.204.677.312.935-.38-.136-.8.447-.637.934.054.15.23.258.312.176.149-.094-.081-.176-.095-.216a.61.61 0 0 1 .176-.637c.176-.15.15.095.081.311-.04.136-.149.217-.121.312.243.203.42-.623.42-.623s.528.217.731-.312m.082.474c-.068.068-.163.109-.19.244-.027.15-.163.34-.095.488.285.15.583-.298.501-.582 0-.082-.067-.23-.216-.15m.067.34c-.013.121-.027.108-.081.203s-.081.013-.095-.068.014-.095.054-.23c.027-.109.068-.095.082-.095.067 0 .054.067.04.19" }) + ] + } + ); +}); + +exports.default = SiSnort; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.d.ts new file mode 100644 index 000000000..057e37ada --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F6A7AA"; +declare const SiSnort: IconType; +export { SiSnort as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.mjs new file mode 100644 index 000000000..7b7e6fbff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnort.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F6A7AA"; +const SiSnort = React.forwardRef(function SiSnort2({ title = "Snort", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.53 14.994c.257-.027.46-.392.582-.555-.23-.163-.718.217-.582.555m11.815-1.747c-1.03 1.34-2.629 3.305-2.588 4.511.23-1.016 1.355-1.26 2.94-3.36.84-1.097 1.138-1.3 2.222-3.211.04-.054.718-.271.556-.474-1.315.474-2.575 1.829-3.13 2.534m4.43-5.054c-.325-.529-1.26-.773-1.991-.637-2.683.623-6.3-.23-7.276-.8-.068 0 .149-.528.013-.731.203-.136.271-.217.528-.15.461.204 1.03.123 1.49.055-.27-.528-.541-1.558-.948-2.154-.393.325-1.002.582-1.395.853-.732-1.978-3.211-2.33-5.217-1.192-.054.027-.108.027-.108.027s-.542-1.138-.772-1.667C7.38 2.217 6.757 2.8 6.486 2.8c-.542 0-1.192 0-1.72-.068 0 .922.352 1.992.392 2.792-.8.799-1.585 1.585-2.113 2.588-.583-.136-1.233-.23-1.843.027-.38.162-.827.636-.678 1.165.082.298.461.61 1.193.8-1.41 1.354-2.128 4.213-.84 5.202-.326.325-.719.637-.84 1.07-.15.57.176.773.569.854.731.136 1.26-.23 1.802-.555 1.138.677 1.91.623 3.238.69.135 0 .447.394.447.394s-.894-.095-1.355.04c-.623.19-1.165.772-.732 1.274.637.759 1.87 1.03 2.981.759.678.718.366 1.896-.772 2.37.99-.067 2.14-.731 2.263-2.1.027-.257-.122-.677-.325-.88-.136-.136-.312-.325-.312-.325s.555-1.057-.596-1.653c.46-.095 1.328-.461 1.328-.461s.352.406.663.46c.34.055.732-.135.868-.46.19-.488-.393-.867-.393-.867l.46-.732s.407.38.583.678c.57.948.678 1.896 1.206 2.831.27.461.732.84 1.192 1.044a2.5 2.5 0 0 0 1.274.08c.745-.135 1.341-.378 1.761-.636 2.954-1.761 5.027-4.065 6.83-7.33.446-.88 1.422-2.602.758-3.658m-8.4-3.943s.176.311.27.528c.136.325.394.962.394.962l-.529-.095-.501-.352s-.068.257-.352.474c-.136-.393.149-.582-.244-1.016.311-.203.962-.501.962-.501m-7.29 15.853c.122.704-.501 1.422-.935 1.693.38-.582.746-.84.312-2.046-.176-.474-.596-.813-1.03-1.097-.135-.095-.311-.15-.515-.203-.216-.055-.46.108-.664.311 0 0 .624.312 1.166.407.311.406-.312.42-.312.42-.068.067-1.788-.176-1.68-1.016.04-.326.69-.935 1.992-.434.731.284 1.558 1.3 1.666 1.965m-.732-2.48c.326.149.326.528.326.867 0 .068-.068.068-.136.136-.203-.366-.542-.542-.867-.8-.068-.054-.108-.081-.04-.149.216-.203.487-.176.717-.054m2.426-1.138c-.122.46-.556.38-.596.149-.04-.203.217-.271.298-.366.068.04.311.149.298.217m2.507 1.22c-.719-2.141-2.697-4.106-3.659-4.675-.054-.027-.176.149-.176.149s.867.813 1.003 1.409c.135.528-.163 1.097-.501 1.49-1.328 1.26-3.117 1.016-4.824.895-.528-.041-1.314-.393-.908-1.193-.596.461-1.517 1.328-2.195 1.057-.135-.054-.325-.38-.19-.69.244-.516 1.057-1.315 1.762-1.667.04-.068-.054-.204-.312-.082-.27.122-.8.637-1.016.529-1.206-.597-.434-2.819-.04-3.55.487-.908 1.124-1.07 1.788-1.274-.786-.135-1.396-.217-1.789-.623-.203-.271-.108-.474.095-.732a1.56 1.56 0 0 1 .705-.42c.27-.081.501-.04.759.014.65.135.69.474 1.016.406-.068-.149-.407-.46-.339-.596a5.95 5.95 0 0 1 1.572-1.978c.095-.082.162-.095.298-.095.203.068.122.27.244.46.203.34.745.326 1.07.068.664-.528.88-1.517 1.152-2.317 0-.067.217-.487-.15-.365-.175.731-.46 1.327-.866 1.991-.203.271-.434.502-.76.38-.067-.068-.202-.109-.23-.312-.135-.948-.325-2.723-.325-2.723s.922.122 1.274.04c.203-.04.664-.596 1.125-.786.325.461.636.908.921 1.355 1.328-.596 2.886-1.07 4.2-.08.461.392.962.893 1.111 1.34.122.34.19 1.166.109 1.789 1.124.596 2.235.935 3.495 1.179.556.108.99.162 1.532.203.27.027.907.108 2.167-.108-2.588.528-4.674 2.195-6.422 4.213-.867.99-2.412 3.415-2.615 4.296-.081.365-.095.555-.081 1.002Zm10.568-6.572c-.434 1.273-1.545 2.954-2.696 4.2-1.07 1.165-4.106 3.956-6.247 3.835-1.002-.055-1.395-1.084-1.03-2.236.678-2.181 3.7-6.612 7.534-8.197.8-.325 2.195-.474 2.52-.054.434.61.19 1.653-.08 2.452Zm-2.914-.068c.177-.339.38-.474.448-.745.068-.46.88-.163.921-.772-1.382.216-3.13 1.883-4.281 3.306-1.193 1.463-2.886 3.577-2.724 5.121.271-1.273.746-.745 2.683-3.103 1.057-1.273 2.141-2.303 2.954-3.807m-6.504-5.569c-.217-.23-.38.325-.501.23-.42-.311.23-1.409-.583-1.544-.664-.122-1.151.637-1.585 1.07.203.65.962-1.165 1.49-.636.217.216.204.677.312.935-.38-.136-.8.447-.637.934.054.15.23.258.312.176.149-.094-.081-.176-.095-.216a.61.61 0 0 1 .176-.637c.176-.15.15.095.081.311-.04.136-.149.217-.121.312.243.203.42-.623.42-.623s.528.217.731-.312m.082.474c-.068.068-.163.109-.19.244-.027.15-.163.34-.095.488.285.15.583-.298.501-.582 0-.082-.067-.23-.216-.15m.067.34c-.013.121-.027.108-.081.203s-.081.013-.095-.068.014-.095.054-.23c.027-.109.068-.095.082-.095.067 0 .054.067.04.19" }) + ] + } + ); +}); + +export { SiSnort as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.cjs new file mode 100644 index 000000000..8ae06fbb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#29B5E8"; +const SiSnowflake = React__namespace.forwardRef(function SiSnowflake2({ title = "Snowflake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 3.459c0 .646-.418 1.18-1.141 1.18-.723 0-1.142-.534-1.142-1.18 0-.647.419-1.18 1.142-1.18.723 0 1.141.533 1.141 1.18zm-.228 0c0-.533-.38-.951-.913-.951s-.913.38-.913.95c0 .533.38.952.913.952.57 0 .913-.419.913-.951zm-1.37-.533h.495c.266 0 .456.152.456.38 0 .153-.076.229-.19.305l.19.266v.038h-.266l-.19-.266h-.229v.266h-.266zm.495.228h-.229v.267h.229c.114 0 .152-.038.152-.114.038-.077-.038-.153-.152-.153zM7.602 12.4c.038-.151.076-.304.076-.456 0-.114-.038-.228-.038-.342-.114-.343-.304-.647-.646-.838l-4.87-2.777c-.685-.38-1.56-.152-1.94.533-.381.685-.153 1.56.532 1.94l2.701 1.56-2.701 1.56c-.685.38-.913 1.256-.533 1.94.38.685 1.256.914 1.94.533l4.832-2.777c.343-.267.571-.533.647-.876zm1.332 2.626c-.266-.038-.57.038-.837.19l-4.832 2.777c-.685.38-.913 1.256-.532 1.94.38.686 1.255.914 1.94.533l2.701-1.56v3.12c0 .8.647 1.408 1.446 1.408.799 0 1.407-.647 1.407-1.408v-5.592c0-.761-.57-1.37-1.293-1.408zm4.946-6.088c.266.038.57-.038.837-.19l4.832-2.777c.685-.38.913-1.256.532-1.94-.38-.686-1.255-.914-1.94-.533l-2.701 1.56V1.975c0-.799-.647-1.408-1.446-1.408-.799 0-1.446.609-1.446 1.408V7.53c0 .76.609 1.37 1.332 1.407zM3.265 5.97l4.832 2.777c.266.152.533.19.837.19.723-.038 1.331-.684 1.331-1.407V1.975c0-.799-.646-1.408-1.407-1.408-.799 0-1.446.647-1.446 1.408v3.12l-2.701-1.56c-.685-.38-1.56-.152-1.94.533-.419.646-.19 1.521.494 1.902zm9.093 6.011a.412.412 0 00-.114-.266l-.57-.571a.346.346 0 00-.267-.114.412.412 0 00-.266.114l-.571.57a.411.411 0 00-.114.267c0 .076.038.19.114.267l.57.57a.345.345 0 00.267.114c.076 0 .19-.038.266-.114l.571-.57a.412.412 0 00.114-.267zm1.598.533L11.94 14.53c-.039.038-.153.114-.229.114h-.608a.411.411 0 01-.267-.114L8.82 12.514a.408.408 0 01-.076-.229v-.608c0-.076.038-.19.114-.267l2.016-2.016a.41.41 0 01.267-.114h.608a.41.41 0 01.267.114l2.016 2.016a.347.347 0 01.114.267v.608c-.076.077-.114.19-.19.229zm5.593 5.44l-4.832-2.777c-.266-.152-.57-.19-.837-.152-.723.038-1.332.684-1.332 1.408v5.554c0 .8.647 1.408 1.408 1.408.799 0 1.446-.647 1.446-1.408v-3.12l2.7 1.56c.686.38 1.561.152 1.941-.533.419-.646.19-1.521-.494-1.94zm2.549-7.533l-2.701 1.56 2.7 1.56c.686.38.914 1.256.533 1.94-.38.685-1.255.913-1.94.533l-4.832-2.778a1.644 1.644 0 01-.647-.798c-.037-.153-.076-.305-.076-.457 0-.114.039-.228.039-.342.114-.343.342-.647.646-.837l4.832-2.778c.685-.38 1.56-.152 1.94.533.457.609.19 1.484-.494 1.864" }) + ] + } + ); +}); + +exports.default = SiSnowflake; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.d.ts new file mode 100644 index 000000000..0c153b73b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#29B5E8"; +declare const SiSnowflake: IconType; +export { SiSnowflake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.mjs new file mode 100644 index 000000000..9417323a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowflake.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#29B5E8"; +const SiSnowflake = React.forwardRef(function SiSnowflake2({ title = "Snowflake", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 3.459c0 .646-.418 1.18-1.141 1.18-.723 0-1.142-.534-1.142-1.18 0-.647.419-1.18 1.142-1.18.723 0 1.141.533 1.141 1.18zm-.228 0c0-.533-.38-.951-.913-.951s-.913.38-.913.95c0 .533.38.952.913.952.57 0 .913-.419.913-.951zm-1.37-.533h.495c.266 0 .456.152.456.38 0 .153-.076.229-.19.305l.19.266v.038h-.266l-.19-.266h-.229v.266h-.266zm.495.228h-.229v.267h.229c.114 0 .152-.038.152-.114.038-.077-.038-.153-.152-.153zM7.602 12.4c.038-.151.076-.304.076-.456 0-.114-.038-.228-.038-.342-.114-.343-.304-.647-.646-.838l-4.87-2.777c-.685-.38-1.56-.152-1.94.533-.381.685-.153 1.56.532 1.94l2.701 1.56-2.701 1.56c-.685.38-.913 1.256-.533 1.94.38.685 1.256.914 1.94.533l4.832-2.777c.343-.267.571-.533.647-.876zm1.332 2.626c-.266-.038-.57.038-.837.19l-4.832 2.777c-.685.38-.913 1.256-.532 1.94.38.686 1.255.914 1.94.533l2.701-1.56v3.12c0 .8.647 1.408 1.446 1.408.799 0 1.407-.647 1.407-1.408v-5.592c0-.761-.57-1.37-1.293-1.408zm4.946-6.088c.266.038.57-.038.837-.19l4.832-2.777c.685-.38.913-1.256.532-1.94-.38-.686-1.255-.914-1.94-.533l-2.701 1.56V1.975c0-.799-.647-1.408-1.446-1.408-.799 0-1.446.609-1.446 1.408V7.53c0 .76.609 1.37 1.332 1.407zM3.265 5.97l4.832 2.777c.266.152.533.19.837.19.723-.038 1.331-.684 1.331-1.407V1.975c0-.799-.646-1.408-1.407-1.408-.799 0-1.446.647-1.446 1.408v3.12l-2.701-1.56c-.685-.38-1.56-.152-1.94.533-.419.646-.19 1.521.494 1.902zm9.093 6.011a.412.412 0 00-.114-.266l-.57-.571a.346.346 0 00-.267-.114.412.412 0 00-.266.114l-.571.57a.411.411 0 00-.114.267c0 .076.038.19.114.267l.57.57a.345.345 0 00.267.114c.076 0 .19-.038.266-.114l.571-.57a.412.412 0 00.114-.267zm1.598.533L11.94 14.53c-.039.038-.153.114-.229.114h-.608a.411.411 0 01-.267-.114L8.82 12.514a.408.408 0 01-.076-.229v-.608c0-.076.038-.19.114-.267l2.016-2.016a.41.41 0 01.267-.114h.608a.41.41 0 01.267.114l2.016 2.016a.347.347 0 01.114.267v.608c-.076.077-.114.19-.19.229zm5.593 5.44l-4.832-2.777c-.266-.152-.57-.19-.837-.152-.723.038-1.332.684-1.332 1.408v5.554c0 .8.647 1.408 1.408 1.408.799 0 1.446-.647 1.446-1.408v-3.12l2.7 1.56c.686.38 1.561.152 1.941-.533.419-.646.19-1.521-.494-1.94zm2.549-7.533l-2.701 1.56 2.7 1.56c.686.38.914 1.256.533 1.94-.38.685-1.255.913-1.94.533l-4.832-2.778a1.644 1.644 0 01-.647-.798c-.037-.153-.076-.305-.076-.457 0-.114.039-.228.039-.342.114-.343.342-.647.646-.837l4.832-2.778c.685-.38 1.56-.152 1.94.533.457.609.19 1.484-.494 1.864" }) + ] + } + ); +}); + +export { SiSnowflake as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.cjs new file mode 100644 index 000000000..45df7e83d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E5E82"; +const SiSnowpack = React__namespace.forwardRef(function SiSnowpack2({ title = "Snowpack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.8094 19.7512l-10.8-16.7999a1.2002 1.2002 0 00-2.0189 0L.1906 19.7512a1.2 1.2 0 00-.0439 1.224 1.2002 1.2002 0 001.0534.6247H22.8c.4391 0 .843-.2396 1.0534-.6251a1.1994 1.1994 0 00-.044-1.2236zM12 5.8193L15.202 10.8H12l-2.4 2.4-1.4272-1.4272z" }) + ] + } + ); +}); + +exports.default = SiSnowpack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.d.ts new file mode 100644 index 000000000..25deb8984 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E5E82"; +declare const SiSnowpack: IconType; +export { SiSnowpack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.mjs new file mode 100644 index 000000000..8c2bd6902 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnowpack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E5E82"; +const SiSnowpack = React.forwardRef(function SiSnowpack2({ title = "Snowpack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.8094 19.7512l-10.8-16.7999a1.2002 1.2002 0 00-2.0189 0L.1906 19.7512a1.2 1.2 0 00-.0439 1.224 1.2002 1.2002 0 001.0534.6247H22.8c.4391 0 .843-.2396 1.0534-.6251a1.1994 1.1994 0 00-.044-1.2236zM12 5.8193L15.202 10.8H12l-2.4 2.4-1.4272-1.4272z" }) + ] + } + ); +}); + +export { SiSnowpack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.cjs new file mode 100644 index 000000000..ae37e0672 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4C4A73"; +const SiSnyk = React__namespace.forwardRef(function SiSnyk2({ title = "Snyk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.097 13.344c.143-.37.06-2.117-.222-4.675l-.004-.04.904-2.431v-.05c0-1.06-1.374-3.9-2.186-5.41L15.192 0l-.84 5.854-.503.829-.125-.042c-.351-.118-1.042-.316-1.728-.316-.65 0-1.294.171-1.72.315l-.125.042-.504-.827L8.807 0l-.396.737c-.812 1.51-2.186 4.35-2.186 5.411v.05l.904 2.432-.004.039c-.283 2.558-.366 4.305-.222 4.674.13.332.642 1.041 1.072 1.605l-.619 5.724.617.442.576-5.329c.012.414.064 1.277.275 2.068l-.389 3.592L12 24l4.279-3.067.375-.268-.62-5.73c.428-.561.934-1.262 1.063-1.591zM15.59 2.298c.694 1.408 1.421 3.08 1.471 3.779l-.388 1.045c-.935-1.31-1.228-3.441-1.253-3.636zm-1.124 7.8c.84 0 .212.712.138.792h-1.587c.144-.18.69-.792 1.45-.792zm-.452 1.468a.178.178 0 0 1-.175.153.292.292 0 1 0 .441-.31h.504v.024a.662.662 0 0 1-1.325 0v-.025h.511l-.008.007c.039.038.06.093.052.15zM12.39 19.29c.097.064.2.115.306.156-.168.19-.399.287-.697.287-.299 0-.53-.097-.697-.288.107-.04.21-.092.306-.156a.573.573 0 0 0 .391.114c.103 0 .255 0 .391-.113zm-2.62-7.724a.178.178 0 0 1-.174.153.292.292 0 1 0 .441-.31h.504v.024a.662.662 0 0 1-1.326 0v-.025h.511l-.008.007c.039.038.06.093.052.15zm-.374-.676c-.074-.08-.702-.792.138-.792.759 0 1.305.612 1.45.792zM6.948 6.077c.05-.699.778-2.37 1.471-3.78l.185 1.29c-.07.48-.393 2.37-1.257 3.56zM9.473 18.09c-.373-1.02-.377-2.446-.377-2.507v-.097l-.06-.076c-.551-.683-1.477-1.9-1.616-2.257l-.005-.014c-.124-.43.1-2.997.268-4.513l.008-.066-.187-.502.07-.075c.476-.497.88-1.213 1.203-2.126L9 5.223l.118.82.807 1.326.22-.094c.009-.004.934-.4 1.851-.4H12v.44h-.004c-.812 0-1.669.36-1.677.363l-.571.246-.797-1.308c-.27.62-.585 1.137-.94 1.543l.129.347-.019.169c-.24 2.156-.348 4.044-.285 4.332.086.2.523.812 1 1.437l.748-.218 1.17-1.334.184 3.458c-.011.015-.28.393-.28.609 0 .235.344.541.685.786.005-.01.007-.02.013-.03.12-.212.275-.251.346-.087.04.092.028.369.028.369l.005.002v.328c-.013.027-.302.674-1.014.674-.275 0-.948-.089-1.248-.911zm2.536 2.409c-.527 0-1.297-.257-1.374-.952.029.001.057.003.086.003.06 0 .119-.003.177-.01.235.455.665.6 1.102.6.436 0 .865-.146 1.1-.6.059.007.119.01.18.01.029 0 .057-.002.085-.003-.076.695-.835.952-1.356.952zm2.956-5.09l-.061.077v.097c0 .06-.004 1.487-.377 2.507-.3.822-.973.91-1.248.91-.71 0-1.002-.658-1.014-.686V18l.005-.004s-.012-.276.028-.368c.07-.164.226-.126.346.088.006.009.009.02.013.03.34-.246.686-.552.686-.787 0-.216-.269-.593-.28-.61l.183-3.457 1.17 1.334 1.2.35c-.23.304-.463.6-.651.834zm-8.472-1.907c-.22-.563-.022-2.916.187-4.817l-.895-2.409v-.128c0-.312.095-.734.246-1.207-1.177.253-1.808.49-1.808.49v12.996l2.67 1.914.577-5.332c-.538-.718-.868-1.226-.977-1.507zm3.853-7.346c.446-.136 1.042-.27 1.65-.27.61 0 1.21.135 1.658.27l.276-.453.184-1.288s-1.288-.068-2.103-.068c-.759 0-1.467.026-2.125.07l.184 1.286zm7.623-1.217c.151.474.247.896.247 1.21v.127l-.895 2.409c.208 1.901.406 4.253.186 4.818-.109.279-.435.782-.968 1.493l.578 5.337 2.66-1.906V5.432s-.632-.24-1.808-.493Z" }) + ] + } + ); +}); + +exports.default = SiSnyk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.d.ts new file mode 100644 index 000000000..ac320cfa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4C4A73"; +declare const SiSnyk: IconType; +export { SiSnyk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.mjs new file mode 100644 index 000000000..47ac6be7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSnyk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4C4A73"; +const SiSnyk = React.forwardRef(function SiSnyk2({ title = "Snyk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.097 13.344c.143-.37.06-2.117-.222-4.675l-.004-.04.904-2.431v-.05c0-1.06-1.374-3.9-2.186-5.41L15.192 0l-.84 5.854-.503.829-.125-.042c-.351-.118-1.042-.316-1.728-.316-.65 0-1.294.171-1.72.315l-.125.042-.504-.827L8.807 0l-.396.737c-.812 1.51-2.186 4.35-2.186 5.411v.05l.904 2.432-.004.039c-.283 2.558-.366 4.305-.222 4.674.13.332.642 1.041 1.072 1.605l-.619 5.724.617.442.576-5.329c.012.414.064 1.277.275 2.068l-.389 3.592L12 24l4.279-3.067.375-.268-.62-5.73c.428-.561.934-1.262 1.063-1.591zM15.59 2.298c.694 1.408 1.421 3.08 1.471 3.779l-.388 1.045c-.935-1.31-1.228-3.441-1.253-3.636zm-1.124 7.8c.84 0 .212.712.138.792h-1.587c.144-.18.69-.792 1.45-.792zm-.452 1.468a.178.178 0 0 1-.175.153.292.292 0 1 0 .441-.31h.504v.024a.662.662 0 0 1-1.325 0v-.025h.511l-.008.007c.039.038.06.093.052.15zM12.39 19.29c.097.064.2.115.306.156-.168.19-.399.287-.697.287-.299 0-.53-.097-.697-.288.107-.04.21-.092.306-.156a.573.573 0 0 0 .391.114c.103 0 .255 0 .391-.113zm-2.62-7.724a.178.178 0 0 1-.174.153.292.292 0 1 0 .441-.31h.504v.024a.662.662 0 0 1-1.326 0v-.025h.511l-.008.007c.039.038.06.093.052.15zm-.374-.676c-.074-.08-.702-.792.138-.792.759 0 1.305.612 1.45.792zM6.948 6.077c.05-.699.778-2.37 1.471-3.78l.185 1.29c-.07.48-.393 2.37-1.257 3.56zM9.473 18.09c-.373-1.02-.377-2.446-.377-2.507v-.097l-.06-.076c-.551-.683-1.477-1.9-1.616-2.257l-.005-.014c-.124-.43.1-2.997.268-4.513l.008-.066-.187-.502.07-.075c.476-.497.88-1.213 1.203-2.126L9 5.223l.118.82.807 1.326.22-.094c.009-.004.934-.4 1.851-.4H12v.44h-.004c-.812 0-1.669.36-1.677.363l-.571.246-.797-1.308c-.27.62-.585 1.137-.94 1.543l.129.347-.019.169c-.24 2.156-.348 4.044-.285 4.332.086.2.523.812 1 1.437l.748-.218 1.17-1.334.184 3.458c-.011.015-.28.393-.28.609 0 .235.344.541.685.786.005-.01.007-.02.013-.03.12-.212.275-.251.346-.087.04.092.028.369.028.369l.005.002v.328c-.013.027-.302.674-1.014.674-.275 0-.948-.089-1.248-.911zm2.536 2.409c-.527 0-1.297-.257-1.374-.952.029.001.057.003.086.003.06 0 .119-.003.177-.01.235.455.665.6 1.102.6.436 0 .865-.146 1.1-.6.059.007.119.01.18.01.029 0 .057-.002.085-.003-.076.695-.835.952-1.356.952zm2.956-5.09l-.061.077v.097c0 .06-.004 1.487-.377 2.507-.3.822-.973.91-1.248.91-.71 0-1.002-.658-1.014-.686V18l.005-.004s-.012-.276.028-.368c.07-.164.226-.126.346.088.006.009.009.02.013.03.34-.246.686-.552.686-.787 0-.216-.269-.593-.28-.61l.183-3.457 1.17 1.334 1.2.35c-.23.304-.463.6-.651.834zm-8.472-1.907c-.22-.563-.022-2.916.187-4.817l-.895-2.409v-.128c0-.312.095-.734.246-1.207-1.177.253-1.808.49-1.808.49v12.996l2.67 1.914.577-5.332c-.538-.718-.868-1.226-.977-1.507zm3.853-7.346c.446-.136 1.042-.27 1.65-.27.61 0 1.21.135 1.658.27l.276-.453.184-1.288s-1.288-.068-2.103-.068c-.759 0-1.467.026-2.125.07l.184 1.286zm7.623-1.217c.151.474.247.896.247 1.21v.127l-.895 2.409c.208 1.901.406 4.253.186 4.818-.109.279-.435.782-.968 1.493l.578 5.337 2.66-1.906V5.432s-.632-.24-1.808-.493Z" }) + ] + } + ); +}); + +export { SiSnyk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.cjs new file mode 100644 index 000000000..d6204ab91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B3382C"; +const SiSocialblade = React__namespace.forwardRef(function SiSocialblade2({ title = "Social Blade", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.323 16.688H0v1.893h2.323v-1.893ZM5.935 13.591H3.613v4.99h2.322v-4.99ZM9.548 14.796H7.226v3.785h2.322v-3.785ZM13.161 13.935H10.84v4.646h2.322v-4.646ZM16.774 12.043h-2.322v6.538h2.322v-6.538ZM20.387 10.065h-2.323v8.516h2.323v-8.516ZM24 5.42h-2.323v13.16H24V5.42Z" }) + ] + } + ); +}); + +exports.default = SiSocialblade; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.d.ts new file mode 100644 index 000000000..68437d718 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B3382C"; +declare const SiSocialblade: IconType; +export { SiSocialblade as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.mjs new file mode 100644 index 000000000..bf4202b0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocialblade.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B3382C"; +const SiSocialblade = React.forwardRef(function SiSocialblade2({ title = "Social Blade", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.323 16.688H0v1.893h2.323v-1.893ZM5.935 13.591H3.613v4.99h2.322v-4.99ZM9.548 14.796H7.226v3.785h2.322v-3.785ZM13.161 13.935H10.84v4.646h2.322v-4.646ZM16.774 12.043h-2.322v6.538h2.322v-6.538ZM20.387 10.065h-2.323v8.516h2.323v-8.516ZM24 5.42h-2.323v13.16H24V5.42Z" }) + ] + } + ); +}); + +export { SiSocialblade as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.cjs new file mode 100644 index 000000000..dfb10d6f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSociety6 = React__namespace.forwardRef(function SiSociety62({ title = "Society6", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm7.928 4.966l.042.876-.916.157c-.705.194-1.32.465-1.843.813s-.966.73-1.33 1.148a6.147 6.147 0 0 0-.888 1.339l-.016.036c-.243.506-.459 1.04-.65 1.599a4.992 4.992 0 0 1 1.31-.812l.033-.012c.521-.223 1.141-.335 1.864-.335.839 0 1.543.296 2.111.884s.853 1.355.853 2.298c0 1.409-.541 2.628-1.624 3.659s-2.414 1.547-3.992 1.547c-1.255 0-2.256-.374-3.003-1.122s-1.12-1.743-1.12-2.981c0-2.363.84-4.387 2.52-6.073s3.895-2.692 6.65-3.023zM7.925 9.103c.435 0 .838.027 1.211.081.388.055.739.159 1.065.307l-.024-.01c.286.13.524.322.705.56l.003.004c.169.232.252.513.252.844s-.118.614-.356.852c-.237.238-.549.356-.933.356-.332 0-.607-.091-.828-.272s-.399-.394-.537-.642c-.137-.253-.247-.516-.327-.784s-.146-.493-.197-.674c-.401.024-.765.178-1.094.459s-.495.629-.495 1.046c0 .253.039.452.116.596s.184.265.311.358l.003.002c.162.115.348.217.544.296l.018.006c.151.069.431.177.714.279l.132.041c.778.288 1.365.635 1.76 1.038.321.328.509.742.569 1.241-.008-.117.117 1.109.018.183.002.056.006.113.006.171 0 .433-.097.847-.289 1.245s-.464.728-.818.992a4.26 4.26 0 0 1-1.336.646l-.03.007c-.516.147-1.172.221-1.967.221-.722 0-1.318-.061-1.789-.184s-.845-.282-1.12-.474c-.281-.193-.473-.398-.575-.617s-.155-.425-.155-.617c0-.349.125-.655.373-.916s.58-.391.991-.391c.344 0 .631.092.863.278.236.193.43.426.574.691l.006.012c.136.244.259.528.352.824l.009.032c.035.09.106.322.172.556l.034.139c.647 0 1.137-.144 1.469-.436s.498-.691.498-1.196c0-.222-.05-.408-.15-.558s-.234-.283-.399-.398c-.166-.108-.377-.213-.635-.315s-.513-.198-.765-.289c-.693-.246-1.24-.587-1.644-1.023s-.605-.978-.605-1.628v-.013c0-.391.093-.76.259-1.087l-.006.014c.17-.34.434-.654.794-.944.355-.276.804-.496 1.348-.661s1.179-.249 1.906-.249zm8.017 1.874c-.329 0-.64.066-.933.199s-.605.397-.934.792c-.04.183-.109.534-.21 1.055s-.152 1.162-.152 1.923c0 .778.123 1.384.365 1.82s.566.655.968.655c.626 0 1.168-.432 1.628-1.295h.002c.46-.864.69-1.912.69-3.144 0-.618-.134-1.108-.402-1.468s-.608-.538-1.022-.538z" }) + ] + } + ); +}); + +exports.default = SiSociety6; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.d.ts new file mode 100644 index 000000000..f7724b3a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSociety6: IconType; +export { SiSociety6 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.mjs new file mode 100644 index 000000000..f14a86b3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSociety6.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSociety6 = React.forwardRef(function SiSociety62({ title = "Society6", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm7.928 4.966l.042.876-.916.157c-.705.194-1.32.465-1.843.813s-.966.73-1.33 1.148a6.147 6.147 0 0 0-.888 1.339l-.016.036c-.243.506-.459 1.04-.65 1.599a4.992 4.992 0 0 1 1.31-.812l.033-.012c.521-.223 1.141-.335 1.864-.335.839 0 1.543.296 2.111.884s.853 1.355.853 2.298c0 1.409-.541 2.628-1.624 3.659s-2.414 1.547-3.992 1.547c-1.255 0-2.256-.374-3.003-1.122s-1.12-1.743-1.12-2.981c0-2.363.84-4.387 2.52-6.073s3.895-2.692 6.65-3.023zM7.925 9.103c.435 0 .838.027 1.211.081.388.055.739.159 1.065.307l-.024-.01c.286.13.524.322.705.56l.003.004c.169.232.252.513.252.844s-.118.614-.356.852c-.237.238-.549.356-.933.356-.332 0-.607-.091-.828-.272s-.399-.394-.537-.642c-.137-.253-.247-.516-.327-.784s-.146-.493-.197-.674c-.401.024-.765.178-1.094.459s-.495.629-.495 1.046c0 .253.039.452.116.596s.184.265.311.358l.003.002c.162.115.348.217.544.296l.018.006c.151.069.431.177.714.279l.132.041c.778.288 1.365.635 1.76 1.038.321.328.509.742.569 1.241-.008-.117.117 1.109.018.183.002.056.006.113.006.171 0 .433-.097.847-.289 1.245s-.464.728-.818.992a4.26 4.26 0 0 1-1.336.646l-.03.007c-.516.147-1.172.221-1.967.221-.722 0-1.318-.061-1.789-.184s-.845-.282-1.12-.474c-.281-.193-.473-.398-.575-.617s-.155-.425-.155-.617c0-.349.125-.655.373-.916s.58-.391.991-.391c.344 0 .631.092.863.278.236.193.43.426.574.691l.006.012c.136.244.259.528.352.824l.009.032c.035.09.106.322.172.556l.034.139c.647 0 1.137-.144 1.469-.436s.498-.691.498-1.196c0-.222-.05-.408-.15-.558s-.234-.283-.399-.398c-.166-.108-.377-.213-.635-.315s-.513-.198-.765-.289c-.693-.246-1.24-.587-1.644-1.023s-.605-.978-.605-1.628v-.013c0-.391.093-.76.259-1.087l-.006.014c.17-.34.434-.654.794-.944.355-.276.804-.496 1.348-.661s1.179-.249 1.906-.249zm8.017 1.874c-.329 0-.64.066-.933.199s-.605.397-.934.792c-.04.183-.109.534-.21 1.055s-.152 1.162-.152 1.923c0 .778.123 1.384.365 1.82s.566.655.968.655c.626 0 1.168-.432 1.628-1.295h.002c.46-.864.69-1.912.69-3.144 0-.618-.134-1.108-.402-1.468s-.608-.538-1.022-.538z" }) + ] + } + ); +}); + +export { SiSociety6 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.cjs new file mode 100644 index 000000000..6a779258d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C93CD7"; +const SiSocket = React__namespace.forwardRef(function SiSocket2({ title = "Socket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.93 11.171c0 5.92 3.778 10.957 9.063 12.829a13.652 13.652 0 0 0 6.513-4.89 13.497 13.497 0 0 0 2.564-7.939V3.274L11.997 0 2.933 3.274v7.897zm7.491-6.09h4.208L13.34 9.47h2.292l-6.264 9.446 1.486-6.858H8.365z" }) + ] + } + ); +}); + +exports.default = SiSocket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.d.ts new file mode 100644 index 000000000..024b765b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C93CD7"; +declare const SiSocket: IconType; +export { SiSocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.mjs new file mode 100644 index 000000000..3c6dc5a4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C93CD7"; +const SiSocket = React.forwardRef(function SiSocket2({ title = "Socket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.93 11.171c0 5.92 3.778 10.957 9.063 12.829a13.652 13.652 0 0 0 6.513-4.89 13.497 13.497 0 0 0 2.564-7.939V3.274L11.997 0 2.933 3.274v7.897zm7.491-6.09h4.208L13.34 9.47h2.292l-6.264 9.446 1.486-6.858H8.365z" }) + ] + } + ); +}); + +export { SiSocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.cjs new file mode 100644 index 000000000..d80641b2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#010101"; +const SiSocketdotio = React__namespace.forwardRef(function SiSocketdotio2({ title = "Socket.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9362.0137a12.1694 12.1694 0 00-2.9748.378C4.2816 1.5547.5678 5.7944.0918 10.6012c-.59 4.5488 1.7079 9.2856 5.6437 11.6345 3.8608 2.4179 9.0926 2.3199 12.8734-.223 3.3969-2.206 5.5118-6.2277 5.3858-10.2845-.058-4.0159-2.31-7.9167-5.7588-9.9796C16.354.5876 14.1431.0047 11.9362.0137zm-.063 1.696c4.9448-.007 9.7886 3.8137 10.2815 8.9245.945 5.6597-3.7528 11.4125-9.4875 11.5795-5.4538.544-10.7245-4.0798-10.8795-9.5566-.407-4.4338 2.5159-8.8346 6.6977-10.2995a9.1126 9.1126 0 013.3878-.647zm5.0908 3.2248c-2.6869 2.0849-5.2598 4.3078-7.8886 6.4567 1.2029.017 2.4118.016 3.6208.01 1.41-2.165 2.8589-4.3008 4.2678-6.4667zm-5.6647 7.6536c-1.41 2.166-2.86 4.3088-4.2699 6.4737 2.693-2.0799 5.2548-4.3198 7.9017-6.4557a255.4132 255.4132 0 00-3.6318-.018z" }) + ] + } + ); +}); + +exports.default = SiSocketdotio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.d.ts new file mode 100644 index 000000000..05fb8acab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#010101"; +declare const SiSocketdotio: IconType; +export { SiSocketdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.mjs new file mode 100644 index 000000000..e1e4ef23d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSocketdotio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#010101"; +const SiSocketdotio = React.forwardRef(function SiSocketdotio2({ title = "Socket.io", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9362.0137a12.1694 12.1694 0 00-2.9748.378C4.2816 1.5547.5678 5.7944.0918 10.6012c-.59 4.5488 1.7079 9.2856 5.6437 11.6345 3.8608 2.4179 9.0926 2.3199 12.8734-.223 3.3969-2.206 5.5118-6.2277 5.3858-10.2845-.058-4.0159-2.31-7.9167-5.7588-9.9796C16.354.5876 14.1431.0047 11.9362.0137zm-.063 1.696c4.9448-.007 9.7886 3.8137 10.2815 8.9245.945 5.6597-3.7528 11.4125-9.4875 11.5795-5.4538.544-10.7245-4.0798-10.8795-9.5566-.407-4.4338 2.5159-8.8346 6.6977-10.2995a9.1126 9.1126 0 013.3878-.647zm5.0908 3.2248c-2.6869 2.0849-5.2598 4.3078-7.8886 6.4567 1.2029.017 2.4118.016 3.6208.01 1.41-2.165 2.8589-4.3008 4.2678-6.4667zm-5.6647 7.6536c-1.41 2.166-2.86 4.3088-4.2699 6.4737 2.693-2.0799 5.2548-4.3198 7.9017-6.4557a255.4132 255.4132 0 00-3.6318-.018z" }) + ] + } + ); +}); + +export { SiSocketdotio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.cjs new file mode 100644 index 000000000..54d137057 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BA2626"; +const SiSoftcatala = React__namespace.forwardRef(function SiSoftcatala2({ title = "Softcatalà", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0ZM8.363 3.808c.495 0 .924.088 1.286.264.361.176.661.41.9.7.238.292.413.598.523.919.11.32.165.633.165.937 0 .279-.069.53-.207.753-.137.223-.31.334-.515.334a.495.495 0 0 1-.427-.2c-.097-.135-.203-.354-.317-.659-.147-.436-.323-.776-.529-1.02-.206-.245-.536-.367-.991-.367-.423 0-.763.133-1.022.398a1.323 1.323 0 0 0-.388.958c0 .23.044.43.132.599.088.168.21.312.363.433.155.12.31.215.469.284.158.068.418.168.782.3.455.152.868.32 1.237.504.369.184.683.407.942.67.259.262.46.595.606.997.011.03.019.065.03.097a11.59 11.59 0 0 1-.036-.903c0-.931.097-1.765.293-2.502.196-.736.476-1.366.84-1.89.366-.523.793-.922 1.284-1.195a3.174 3.174 0 0 1 1.57-.411c.678 0 1.282.187 1.81.56a3.8 3.8 0 0 1 1.216 1.382c.282.55.423 1.068.423 1.556 0 .268-.069.504-.206.71-.137.204-.302.307-.496.307-.217 0-.38-.071-.489-.214-.108-.142-.23-.387-.362-.735-.22-.574-.48-1.004-.78-1.289a1.541 1.541 0 0 0-1.104-.427c-.697 0-1.252.367-1.665 1.1-.413.732-.62 1.773-.62 3.122 0 .902.092 1.651.275 2.25.183.598.441 1.044.776 1.34.335.295.727.442 1.177.442.487 0 .899-.167 1.236-.502.337-.334.59-.826.762-1.474.072-.306.162-.555.268-.747.107-.193.278-.289.514-.289.202 0 .375.098.52.293.144.195.216.437.216.726 0 .368-.065.765-.197 1.193a4.65 4.65 0 0 1-.62 1.26 3.333 3.333 0 0 1-1.078 1.003c-.438.257-.948.386-1.53.386-.442 0-.843-.057-1.205-.172a2.925 2.925 0 0 1-.984-.537 3.888 3.888 0 0 1-.813-.96 6.345 6.345 0 0 1-.564-1.22 7.816 7.816 0 0 1-.246-.887c0 .035.003.069.004.105 0 .7-.126 1.33-.378 1.887-.251.558-.62.995-1.104 1.31-.485.316-1.06.474-1.724.474-.797 0-1.454-.216-1.972-.648-.366-.31-.664-.725-.893-1.243a3.721 3.721 0 0 1-.344-1.51c0-.285.069-.528.206-.73.137-.203.313-.304.525-.304.172 0 .318.079.437.236.12.158.221.392.306.702.102.368.213.675.333.922.119.247.287.45.503.611.217.16.502.24.854.24.485 0 .878-.161 1.181-.484.303-.324.455-.727.455-1.21 0-.384-.082-.695-.245-.934a1.609 1.609 0 0 0-.634-.548 8.483 8.483 0 0 0-1.038-.402c-.58-.195-1.065-.422-1.455-.682a2.75 2.75 0 0 1-.93-1.064c-.23-.449-.344-1.007-.344-1.674 0-.636.121-1.2.363-1.694a2.609 2.609 0 0 1 1.052-1.139c.459-.265.998-.398 1.619-.398Zm9.43 12.702h.137c.04 0 .07.01.09.03a.38.38 0 0 1 .067.129l.045.118a.25.25 0 0 1 .027.083c0 .023-.014.035-.043.035a.21.21 0 0 1-.124-.04 1.136 1.136 0 0 1-.138-.168.823.823 0 0 1-.111-.166c0-.014.017-.021.051-.021zm-4.97.501a.16.16 0 0 1 .103.033c.028.022.05.05.068.086a.693.693 0 0 1 .043.111l.045.16.385 1.331c.03.101.045.175.045.221a.22.22 0 0 1-.043.132c-.029.04-.063.06-.103.06a.104.104 0 0 1-.06-.018.146.146 0 0 1-.043-.048.502.502 0 0 1-.037-.093l-.033-.11-.07-.259h-.6l-.07.265c-.027.103-.05.173-.07.209-.02.036-.051.054-.096.054-.037 0-.07-.02-.1-.058a.213.213 0 0 1-.042-.13c0-.029.003-.058.01-.088l.033-.125.377-1.34.038-.138a.831.831 0 0 1 .049-.135.244.244 0 0 1 .067-.087.16.16 0 0 1 .103-.033zm2.502 0a.16.16 0 0 1 .104.033c.027.023.05.05.067.086a.712.712 0 0 1 .043.111l.045.16.385 1.331c.03.101.045.175.045.221a.222.222 0 0 1-.043.132c-.028.04-.063.06-.103.06a.104.104 0 0 1-.06-.018.145.145 0 0 1-.043-.048.517.517 0 0 1-.036-.093 15.369 15.369 0 0 1-.033-.11l-.07-.259h-.6l-.07.265a1.208 1.208 0 0 1-.07.209.102.102 0 0 1-.096.054c-.038 0-.071-.02-.1-.058a.211.211 0 0 1-.043-.13c0-.029.003-.058.01-.088l.033-.125.377-1.34.039-.138a.831.831 0 0 1 .048-.135.24.24 0 0 1 .067-.087.161.161 0 0 1 .104-.033zm1.05 0c.045 0 .082.021.11.063a.354.354 0 0 1 .041.191v1.502h.605c.049 0 .086.017.112.05a.194.194 0 0 1 .038.123.19.19 0 0 1-.038.123c-.025.031-.063.047-.111.047h-.721c-.065 0-.112-.02-.14-.06-.029-.041-.043-.106-.043-.196v-1.59a.36.36 0 0 1 .04-.19c.028-.042.063-.063.108-.063zm1.675 0a.16.16 0 0 1 .104.033c.028.022.05.05.067.086a.712.712 0 0 1 .043.111l.045.16.385 1.331c.03.101.045.175.045.221a.222.222 0 0 1-.043.132c-.028.04-.063.06-.103.06a.104.104 0 0 1-.06-.018.145.145 0 0 1-.042-.048.502.502 0 0 1-.037-.093l-.033-.11-.07-.259h-.6l-.07.265a1.208 1.208 0 0 1-.07.209.102.102 0 0 1-.096.054c-.038 0-.07-.02-.1-.058a.213.213 0 0 1-.043-.13c0-.029.003-.058.01-.088l.033-.125.377-1.34.039-.138a.831.831 0 0 1 .048-.135.24.24 0 0 1 .068-.087.161.161 0 0 1 .103-.033zm-6.683 0c.12 0 .226.034.319.1a.674.674 0 0 1 .214.247c.05.098.074.191.074.278 0 .048-.012.09-.036.127-.024.036-.053.055-.087.055-.038 0-.067-.013-.086-.038a.566.566 0 0 1-.064-.132.62.62 0 0 0-.138-.229.27.27 0 0 0-.194-.076c-.123 0-.22.065-.293.196-.073.13-.11.316-.11.556 0 .16.017.294.049.4a.506.506 0 0 0 .137.24.302.302 0 0 0 .207.078c.086 0 .158-.03.217-.09a.568.568 0 0 0 .135-.262.54.54 0 0 1 .047-.133.096.096 0 0 1 .09-.051c.036 0 .066.017.092.052a.211.211 0 0 1 .038.13.736.736 0 0 1-.034.212.842.842 0 0 1-.11.225.592.592 0 0 1-.19.18.515.515 0 0 1-.269.069.687.687 0 0 1-.212-.031.513.513 0 0 1-.173-.097.7.7 0 0 1-.144-.172 1.134 1.134 0 0 1-.1-.217 1.484 1.484 0 0 1-.061-.257 1.938 1.938 0 0 1-.02-.29c0-.166.016-.315.051-.446.034-.131.084-.244.148-.337a.684.684 0 0 1 .227-.213.554.554 0 0 1 .276-.074zm-4.117 0c.152 0 .284.044.393.13a.8.8 0 0 1 .249.371c.056.16.084.348.084.564 0 .16-.015.304-.046.434a1.08 1.08 0 0 1-.139.34.65.65 0 0 1-.227.219.618.618 0 0 1-.308.076.614.614 0 0 1-.538-.298 1.077 1.077 0 0 1-.138-.342 1.886 1.886 0 0 1-.047-.432c0-.159.016-.304.049-.437a1.07 1.07 0 0 1 .141-.338.65.65 0 0 1 .225-.213.613.613 0 0 1 .302-.073Zm-1.493.001a.55.55 0 0 1 .235.047.528.528 0 0 1 .29.457.25.25 0 0 1-.038.135c-.025.04-.056.06-.093.06a.091.091 0 0 1-.078-.036.52.52 0 0 1-.058-.118.558.558 0 0 0-.097-.182c-.037-.044-.098-.066-.18-.066a.251.251 0 0 0-.187.071.234.234 0 0 0-.071.171.22.22 0 0 0 .09.185.378.378 0 0 0 .086.05c.029.013.077.03.143.054.083.027.158.057.226.09a.645.645 0 0 1 .172.12.485.485 0 0 1 .11.178c.026.071.04.16.04.263a.79.79 0 0 1-.07.336.537.537 0 0 1-.516.318.555.555 0 0 1-.36-.115.607.607 0 0 1-.163-.221.652.652 0 0 1-.063-.27c0-.05.013-.094.038-.13a.113.113 0 0 1 .096-.054.1.1 0 0 1 .08.042c.022.029.04.07.055.126a1 1 0 0 0 .061.164c.022.044.053.08.092.11a.26.26 0 0 0 .156.042c.089 0 .16-.029.216-.086a.3.3 0 0 0 .083-.217.284.284 0 0 0-.045-.166.292.292 0 0 0-.116-.098 1.558 1.558 0 0 0-.19-.072 1.137 1.137 0 0 1-.265-.122.495.495 0 0 1-.17-.19.642.642 0 0 1-.062-.299c0-.114.022-.215.066-.303a.47.47 0 0 1 .192-.203.592.592 0 0 1 .295-.071zm2.65.034h.704c.048 0 .083.015.106.045.023.03.035.068.035.116a.186.186 0 0 1-.035.118c-.023.03-.058.044-.105.044h-.589v.528h.492c.046 0 .08.014.102.043a.181.181 0 0 1 .034.115.176.176 0 0 1-.034.114c-.023.028-.057.042-.102.042h-.492v.68c0 .085-.013.15-.041.191-.028.042-.064.063-.107.063-.044 0-.08-.021-.108-.063a.353.353 0 0 1-.042-.192v-1.587c0-.06.006-.11.019-.147a.15.15 0 0 1 .06-.083.189.189 0 0 1 .104-.027zm1.076 0h.95c.051 0 .09.016.115.049a.198.198 0 0 1 .038.125.194.194 0 0 1-.039.125c-.025.032-.063.047-.114.047h-.326v1.498c0 .087-.014.15-.041.192-.028.042-.063.063-.107.063-.045 0-.08-.021-.109-.063a.35.35 0 0 1-.041-.192v-1.496h-.326c-.051 0-.089-.016-.114-.048a.196.196 0 0 1-.037-.125.19.19 0 0 1 .039-.127c.025-.031.063-.046.112-.046zm4.1 0h.95c.051 0 .09.016.115.049a.198.198 0 0 1 .038.125.194.194 0 0 1-.038.125c-.026.031-.064.047-.115.047h-.326v1.498c0 .087-.014.15-.041.192-.028.042-.063.063-.107.063s-.08-.021-.108-.063a.35.35 0 0 1-.042-.192v-1.496h-.326c-.05 0-.089-.016-.113-.048a.197.197 0 0 1-.038-.125.19.19 0 0 1 .039-.127c.026-.031.063-.046.112-.046zm-6.334.297a.307.307 0 0 0-.165.047.404.404 0 0 0-.13.138.767.767 0 0 0-.087.23 1.434 1.434 0 0 0-.031.315c0 .117.01.223.031.318a.767.767 0 0 0 .09.236c.038.063.082.11.132.14.05.031.105.047.164.047a.322.322 0 0 0 .21-.08.54.54 0 0 0 .154-.248c.037-.113.056-.25.056-.413a1.32 1.32 0 0 0-.052-.393.541.541 0 0 0-.149-.252.327.327 0 0 0-.223-.085Zm5.572.11-.219.85h.441zm2.502 0-.218.85h.44zm2.725 0-.218.85h.44zm-6.858 2.39h.392l-.96.96-.197-.195zm.636 0h.392l-1.279 1.279-.196-.196zm.636 0h.392l-1.597 1.596-.196-.195zm.635 0h.393l-1.915 1.915-.196-.197z" }) + ] + } + ); +}); + +exports.default = SiSoftcatala; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.d.ts new file mode 100644 index 000000000..45b286251 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BA2626"; +declare const SiSoftcatala: IconType; +export { SiSoftcatala as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.mjs new file mode 100644 index 000000000..3b0c4d6dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftcatala.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BA2626"; +const SiSoftcatala = React.forwardRef(function SiSoftcatala2({ title = "Softcatalà", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0ZM8.363 3.808c.495 0 .924.088 1.286.264.361.176.661.41.9.7.238.292.413.598.523.919.11.32.165.633.165.937 0 .279-.069.53-.207.753-.137.223-.31.334-.515.334a.495.495 0 0 1-.427-.2c-.097-.135-.203-.354-.317-.659-.147-.436-.323-.776-.529-1.02-.206-.245-.536-.367-.991-.367-.423 0-.763.133-1.022.398a1.323 1.323 0 0 0-.388.958c0 .23.044.43.132.599.088.168.21.312.363.433.155.12.31.215.469.284.158.068.418.168.782.3.455.152.868.32 1.237.504.369.184.683.407.942.67.259.262.46.595.606.997.011.03.019.065.03.097a11.59 11.59 0 0 1-.036-.903c0-.931.097-1.765.293-2.502.196-.736.476-1.366.84-1.89.366-.523.793-.922 1.284-1.195a3.174 3.174 0 0 1 1.57-.411c.678 0 1.282.187 1.81.56a3.8 3.8 0 0 1 1.216 1.382c.282.55.423 1.068.423 1.556 0 .268-.069.504-.206.71-.137.204-.302.307-.496.307-.217 0-.38-.071-.489-.214-.108-.142-.23-.387-.362-.735-.22-.574-.48-1.004-.78-1.289a1.541 1.541 0 0 0-1.104-.427c-.697 0-1.252.367-1.665 1.1-.413.732-.62 1.773-.62 3.122 0 .902.092 1.651.275 2.25.183.598.441 1.044.776 1.34.335.295.727.442 1.177.442.487 0 .899-.167 1.236-.502.337-.334.59-.826.762-1.474.072-.306.162-.555.268-.747.107-.193.278-.289.514-.289.202 0 .375.098.52.293.144.195.216.437.216.726 0 .368-.065.765-.197 1.193a4.65 4.65 0 0 1-.62 1.26 3.333 3.333 0 0 1-1.078 1.003c-.438.257-.948.386-1.53.386-.442 0-.843-.057-1.205-.172a2.925 2.925 0 0 1-.984-.537 3.888 3.888 0 0 1-.813-.96 6.345 6.345 0 0 1-.564-1.22 7.816 7.816 0 0 1-.246-.887c0 .035.003.069.004.105 0 .7-.126 1.33-.378 1.887-.251.558-.62.995-1.104 1.31-.485.316-1.06.474-1.724.474-.797 0-1.454-.216-1.972-.648-.366-.31-.664-.725-.893-1.243a3.721 3.721 0 0 1-.344-1.51c0-.285.069-.528.206-.73.137-.203.313-.304.525-.304.172 0 .318.079.437.236.12.158.221.392.306.702.102.368.213.675.333.922.119.247.287.45.503.611.217.16.502.24.854.24.485 0 .878-.161 1.181-.484.303-.324.455-.727.455-1.21 0-.384-.082-.695-.245-.934a1.609 1.609 0 0 0-.634-.548 8.483 8.483 0 0 0-1.038-.402c-.58-.195-1.065-.422-1.455-.682a2.75 2.75 0 0 1-.93-1.064c-.23-.449-.344-1.007-.344-1.674 0-.636.121-1.2.363-1.694a2.609 2.609 0 0 1 1.052-1.139c.459-.265.998-.398 1.619-.398Zm9.43 12.702h.137c.04 0 .07.01.09.03a.38.38 0 0 1 .067.129l.045.118a.25.25 0 0 1 .027.083c0 .023-.014.035-.043.035a.21.21 0 0 1-.124-.04 1.136 1.136 0 0 1-.138-.168.823.823 0 0 1-.111-.166c0-.014.017-.021.051-.021zm-4.97.501a.16.16 0 0 1 .103.033c.028.022.05.05.068.086a.693.693 0 0 1 .043.111l.045.16.385 1.331c.03.101.045.175.045.221a.22.22 0 0 1-.043.132c-.029.04-.063.06-.103.06a.104.104 0 0 1-.06-.018.146.146 0 0 1-.043-.048.502.502 0 0 1-.037-.093l-.033-.11-.07-.259h-.6l-.07.265c-.027.103-.05.173-.07.209-.02.036-.051.054-.096.054-.037 0-.07-.02-.1-.058a.213.213 0 0 1-.042-.13c0-.029.003-.058.01-.088l.033-.125.377-1.34.038-.138a.831.831 0 0 1 .049-.135.244.244 0 0 1 .067-.087.16.16 0 0 1 .103-.033zm2.502 0a.16.16 0 0 1 .104.033c.027.023.05.05.067.086a.712.712 0 0 1 .043.111l.045.16.385 1.331c.03.101.045.175.045.221a.222.222 0 0 1-.043.132c-.028.04-.063.06-.103.06a.104.104 0 0 1-.06-.018.145.145 0 0 1-.043-.048.517.517 0 0 1-.036-.093 15.369 15.369 0 0 1-.033-.11l-.07-.259h-.6l-.07.265a1.208 1.208 0 0 1-.07.209.102.102 0 0 1-.096.054c-.038 0-.071-.02-.1-.058a.211.211 0 0 1-.043-.13c0-.029.003-.058.01-.088l.033-.125.377-1.34.039-.138a.831.831 0 0 1 .048-.135.24.24 0 0 1 .067-.087.161.161 0 0 1 .104-.033zm1.05 0c.045 0 .082.021.11.063a.354.354 0 0 1 .041.191v1.502h.605c.049 0 .086.017.112.05a.194.194 0 0 1 .038.123.19.19 0 0 1-.038.123c-.025.031-.063.047-.111.047h-.721c-.065 0-.112-.02-.14-.06-.029-.041-.043-.106-.043-.196v-1.59a.36.36 0 0 1 .04-.19c.028-.042.063-.063.108-.063zm1.675 0a.16.16 0 0 1 .104.033c.028.022.05.05.067.086a.712.712 0 0 1 .043.111l.045.16.385 1.331c.03.101.045.175.045.221a.222.222 0 0 1-.043.132c-.028.04-.063.06-.103.06a.104.104 0 0 1-.06-.018.145.145 0 0 1-.042-.048.502.502 0 0 1-.037-.093l-.033-.11-.07-.259h-.6l-.07.265a1.208 1.208 0 0 1-.07.209.102.102 0 0 1-.096.054c-.038 0-.07-.02-.1-.058a.213.213 0 0 1-.043-.13c0-.029.003-.058.01-.088l.033-.125.377-1.34.039-.138a.831.831 0 0 1 .048-.135.24.24 0 0 1 .068-.087.161.161 0 0 1 .103-.033zm-6.683 0c.12 0 .226.034.319.1a.674.674 0 0 1 .214.247c.05.098.074.191.074.278 0 .048-.012.09-.036.127-.024.036-.053.055-.087.055-.038 0-.067-.013-.086-.038a.566.566 0 0 1-.064-.132.62.62 0 0 0-.138-.229.27.27 0 0 0-.194-.076c-.123 0-.22.065-.293.196-.073.13-.11.316-.11.556 0 .16.017.294.049.4a.506.506 0 0 0 .137.24.302.302 0 0 0 .207.078c.086 0 .158-.03.217-.09a.568.568 0 0 0 .135-.262.54.54 0 0 1 .047-.133.096.096 0 0 1 .09-.051c.036 0 .066.017.092.052a.211.211 0 0 1 .038.13.736.736 0 0 1-.034.212.842.842 0 0 1-.11.225.592.592 0 0 1-.19.18.515.515 0 0 1-.269.069.687.687 0 0 1-.212-.031.513.513 0 0 1-.173-.097.7.7 0 0 1-.144-.172 1.134 1.134 0 0 1-.1-.217 1.484 1.484 0 0 1-.061-.257 1.938 1.938 0 0 1-.02-.29c0-.166.016-.315.051-.446.034-.131.084-.244.148-.337a.684.684 0 0 1 .227-.213.554.554 0 0 1 .276-.074zm-4.117 0c.152 0 .284.044.393.13a.8.8 0 0 1 .249.371c.056.16.084.348.084.564 0 .16-.015.304-.046.434a1.08 1.08 0 0 1-.139.34.65.65 0 0 1-.227.219.618.618 0 0 1-.308.076.614.614 0 0 1-.538-.298 1.077 1.077 0 0 1-.138-.342 1.886 1.886 0 0 1-.047-.432c0-.159.016-.304.049-.437a1.07 1.07 0 0 1 .141-.338.65.65 0 0 1 .225-.213.613.613 0 0 1 .302-.073Zm-1.493.001a.55.55 0 0 1 .235.047.528.528 0 0 1 .29.457.25.25 0 0 1-.038.135c-.025.04-.056.06-.093.06a.091.091 0 0 1-.078-.036.52.52 0 0 1-.058-.118.558.558 0 0 0-.097-.182c-.037-.044-.098-.066-.18-.066a.251.251 0 0 0-.187.071.234.234 0 0 0-.071.171.22.22 0 0 0 .09.185.378.378 0 0 0 .086.05c.029.013.077.03.143.054.083.027.158.057.226.09a.645.645 0 0 1 .172.12.485.485 0 0 1 .11.178c.026.071.04.16.04.263a.79.79 0 0 1-.07.336.537.537 0 0 1-.516.318.555.555 0 0 1-.36-.115.607.607 0 0 1-.163-.221.652.652 0 0 1-.063-.27c0-.05.013-.094.038-.13a.113.113 0 0 1 .096-.054.1.1 0 0 1 .08.042c.022.029.04.07.055.126a1 1 0 0 0 .061.164c.022.044.053.08.092.11a.26.26 0 0 0 .156.042c.089 0 .16-.029.216-.086a.3.3 0 0 0 .083-.217.284.284 0 0 0-.045-.166.292.292 0 0 0-.116-.098 1.558 1.558 0 0 0-.19-.072 1.137 1.137 0 0 1-.265-.122.495.495 0 0 1-.17-.19.642.642 0 0 1-.062-.299c0-.114.022-.215.066-.303a.47.47 0 0 1 .192-.203.592.592 0 0 1 .295-.071zm2.65.034h.704c.048 0 .083.015.106.045.023.03.035.068.035.116a.186.186 0 0 1-.035.118c-.023.03-.058.044-.105.044h-.589v.528h.492c.046 0 .08.014.102.043a.181.181 0 0 1 .034.115.176.176 0 0 1-.034.114c-.023.028-.057.042-.102.042h-.492v.68c0 .085-.013.15-.041.191-.028.042-.064.063-.107.063-.044 0-.08-.021-.108-.063a.353.353 0 0 1-.042-.192v-1.587c0-.06.006-.11.019-.147a.15.15 0 0 1 .06-.083.189.189 0 0 1 .104-.027zm1.076 0h.95c.051 0 .09.016.115.049a.198.198 0 0 1 .038.125.194.194 0 0 1-.039.125c-.025.032-.063.047-.114.047h-.326v1.498c0 .087-.014.15-.041.192-.028.042-.063.063-.107.063-.045 0-.08-.021-.109-.063a.35.35 0 0 1-.041-.192v-1.496h-.326c-.051 0-.089-.016-.114-.048a.196.196 0 0 1-.037-.125.19.19 0 0 1 .039-.127c.025-.031.063-.046.112-.046zm4.1 0h.95c.051 0 .09.016.115.049a.198.198 0 0 1 .038.125.194.194 0 0 1-.038.125c-.026.031-.064.047-.115.047h-.326v1.498c0 .087-.014.15-.041.192-.028.042-.063.063-.107.063s-.08-.021-.108-.063a.35.35 0 0 1-.042-.192v-1.496h-.326c-.05 0-.089-.016-.113-.048a.197.197 0 0 1-.038-.125.19.19 0 0 1 .039-.127c.026-.031.063-.046.112-.046zm-6.334.297a.307.307 0 0 0-.165.047.404.404 0 0 0-.13.138.767.767 0 0 0-.087.23 1.434 1.434 0 0 0-.031.315c0 .117.01.223.031.318a.767.767 0 0 0 .09.236c.038.063.082.11.132.14.05.031.105.047.164.047a.322.322 0 0 0 .21-.08.54.54 0 0 0 .154-.248c.037-.113.056-.25.056-.413a1.32 1.32 0 0 0-.052-.393.541.541 0 0 0-.149-.252.327.327 0 0 0-.223-.085Zm5.572.11-.219.85h.441zm2.502 0-.218.85h.44zm2.725 0-.218.85h.44zm-6.858 2.39h.392l-.96.96-.197-.195zm.636 0h.392l-1.279 1.279-.196-.196zm.636 0h.392l-1.597 1.596-.196-.195zm.635 0h.393l-1.915 1.915-.196-.197z" }) + ] + } + ); +}); + +export { SiSoftcatala as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.cjs new file mode 100644 index 000000000..c1dda20cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002873"; +const SiSoftpedia = React__namespace.forwardRef(function SiSoftpedia2({ title = "Softpedia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.88 18.093V24c4.526 0 9.959-.326 13.765-1.628a14.698 14.698 0 0 0 2.708-1.23c1.255-.752 2.208-1.668 2.844-2.763.317-.533.559-1.107.725-1.709l.197-1.723c0-.63-.09-1.23-.257-1.819a6.72 6.72 0 0 0-.696-1.531c-.484-.78-1.165-1.45-2.012-2.024a12.187 12.187 0 0 0-1.95-.999c-1.722-.642-4.38-1.295-5.356-1.654-.882-.294-1.784-.738-1.784-1.012H20.59V0H10.11C7.522 0 5.677 1.148 4.573 3.46c-1.18 2.461-.741 4.704 1.286 6.714.56.561 1.24 1.053 2.042 1.477.862.452 2.072.903 3.615 1.34 1.664.493 2.465.712 2.374.684.56.178 1 .342 1.332.493l.62.328c.272.191.332.506.18.957-.165.22-.437.452-.8.67-.938.574-2.375 1.026-4.311 1.34-2.39.424-5.4.63-9.03.63z" }) + ] + } + ); +}); + +exports.default = SiSoftpedia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.d.ts new file mode 100644 index 000000000..cf502aa71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002873"; +declare const SiSoftpedia: IconType; +export { SiSoftpedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.mjs new file mode 100644 index 000000000..c39ccf24c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoftpedia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002873"; +const SiSoftpedia = React.forwardRef(function SiSoftpedia2({ title = "Softpedia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.88 18.093V24c4.526 0 9.959-.326 13.765-1.628a14.698 14.698 0 0 0 2.708-1.23c1.255-.752 2.208-1.668 2.844-2.763.317-.533.559-1.107.725-1.709l.197-1.723c0-.63-.09-1.23-.257-1.819a6.72 6.72 0 0 0-.696-1.531c-.484-.78-1.165-1.45-2.012-2.024a12.187 12.187 0 0 0-1.95-.999c-1.722-.642-4.38-1.295-5.356-1.654-.882-.294-1.784-.738-1.784-1.012H20.59V0H10.11C7.522 0 5.677 1.148 4.573 3.46c-1.18 2.461-.741 4.704 1.286 6.714.56.561 1.24 1.053 2.042 1.477.862.452 2.072.903 3.615 1.34 1.664.493 2.465.712 2.374.684.56.178 1 .342 1.332.493l.62.328c.272.191.332.506.18.957-.165.22-.437.452-.8.67-.938.574-2.375 1.026-4.311 1.34-2.39.424-5.4.63-9.03.63z" }) + ] + } + ); +}); + +export { SiSoftpedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.cjs new file mode 100644 index 000000000..b9af41cad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB6022"; +const SiSogou = React__namespace.forwardRef(function SiSogou2({ title = "Sogou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.801 22.74L17.79 24c1.561-.676 2.926-1.62 4.051-2.851l-.946-1.318c-1.11 1.289-2.475 2.279-4.08 2.909h-.014zM12 22.199c-5.775 0-10.455-4.619-10.455-10.35C1.545 6.15 6.225 1.53 12 1.53s10.456 4.65 10.456 10.35c0 2.55-.946 4.891-2.507 6.69l.945 1.261C22.801 17.729 24 14.939 24 11.88 24 5.295 18.63 0 12 0S0 5.311 0 11.85c0 6.57 5.37 11.88 12 11.88 1.71 0 3.33-.346 4.801-.99l-.961-1.26c-1.2.45-2.49.719-3.84.719zM18 12.646c-2.25-1.86-5.34-2.101-7.801-3.556-.75-.479-.148-1.395.602-1.425 2.699-.45 5.369.63 7.889 1.5l.151-2.655c-3.151-1.14-6.57-1.875-9.901-1.35-1.2.3-2.4.675-3.254 1.56-1.171 1.2-.961 3.36.389 4.32 2.236 1.755 5.176 2.011 7.621 3.36.96.39.555 1.68-.391 1.77-2.925.555-5.805-.721-8.325-2.1-.03 1.02-.06 2.01-.06 3 3.195 1.409 6.75 2.069 10.2 1.529 1.17-.225 2.37-.6 3.225-1.454 1.229-1.2 1.111-3.511-.33-4.5H18z" }) + ] + } + ); +}); + +exports.default = SiSogou; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.d.ts new file mode 100644 index 000000000..af8e766fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB6022"; +declare const SiSogou: IconType; +export { SiSogou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.mjs new file mode 100644 index 000000000..71e4f59e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSogou.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB6022"; +const SiSogou = React.forwardRef(function SiSogou2({ title = "Sogou", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.801 22.74L17.79 24c1.561-.676 2.926-1.62 4.051-2.851l-.946-1.318c-1.11 1.289-2.475 2.279-4.08 2.909h-.014zM12 22.199c-5.775 0-10.455-4.619-10.455-10.35C1.545 6.15 6.225 1.53 12 1.53s10.456 4.65 10.456 10.35c0 2.55-.946 4.891-2.507 6.69l.945 1.261C22.801 17.729 24 14.939 24 11.88 24 5.295 18.63 0 12 0S0 5.311 0 11.85c0 6.57 5.37 11.88 12 11.88 1.71 0 3.33-.346 4.801-.99l-.961-1.26c-1.2.45-2.49.719-3.84.719zM18 12.646c-2.25-1.86-5.34-2.101-7.801-3.556-.75-.479-.148-1.395.602-1.425 2.699-.45 5.369.63 7.889 1.5l.151-2.655c-3.151-1.14-6.57-1.875-9.901-1.35-1.2.3-2.4.675-3.254 1.56-1.171 1.2-.961 3.36.389 4.32 2.236 1.755 5.176 2.011 7.621 3.36.96.39.555 1.68-.391 1.77-2.925.555-5.805-.721-8.325-2.1-.03 1.02-.06 2.01-.06 3 3.195 1.409 6.75 2.069 10.2 1.529 1.17-.225 2.37-.6 3.225-1.454 1.229-1.2 1.111-3.511-.33-4.5H18z" }) + ] + } + ); +}); + +export { SiSogou as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.cjs new file mode 100644 index 000000000..6013a5fc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9945FF"; +const SiSolana = React__namespace.forwardRef(function SiSolana2({ title = "Solana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.8764 18.0313-3.962 4.1393a.9201.9201 0 0 1-.306.2106.9407.9407 0 0 1-.367.0742H.4599a.4689.4689 0 0 1-.2522-.0733.4513.4513 0 0 1-.1696-.1962.4375.4375 0 0 1-.0314-.2545.4438.4438 0 0 1 .117-.2298l3.9649-4.1393a.92.92 0 0 1 .3052-.2102.9407.9407 0 0 1 .3658-.0746H23.54a.4692.4692 0 0 1 .2523.0734.4531.4531 0 0 1 .1697.196.438.438 0 0 1 .0313.2547.4442.4442 0 0 1-.1169.2297zm-3.962-8.3355a.9202.9202 0 0 0-.306-.2106.941.941 0 0 0-.367-.0742H.4599a.4687.4687 0 0 0-.2522.0734.4513.4513 0 0 0-.1696.1961.4376.4376 0 0 0-.0314.2546.444.444 0 0 0 .117.2297l3.9649 4.1394a.9204.9204 0 0 0 .3052.2102c.1154.049.24.0744.3658.0746H23.54a.469.469 0 0 0 .2523-.0734.453.453 0 0 0 .1697-.1961.4382.4382 0 0 0 .0313-.2546.4444.4444 0 0 0-.1169-.2297zM.46 6.7225h18.7815a.9411.9411 0 0 0 .367-.0742.9202.9202 0 0 0 .306-.2106l3.962-4.1394a.4442.4442 0 0 0 .117-.2297.4378.4378 0 0 0-.0314-.2546.453.453 0 0 0-.1697-.196.469.469 0 0 0-.2523-.0734H4.7596a.941.941 0 0 0-.3658.0745.9203.9203 0 0 0-.3052.2102L.1246 5.9687a.4438.4438 0 0 0-.1169.2295.4375.4375 0 0 0 .0312.2544.4512.4512 0 0 0 .1692.196.4689.4689 0 0 0 .2518.0739z" }) + ] + } + ); +}); + +exports.default = SiSolana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.d.ts new file mode 100644 index 000000000..6c71a0920 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9945FF"; +declare const SiSolana: IconType; +export { SiSolana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.mjs new file mode 100644 index 000000000..edfa8823c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9945FF"; +const SiSolana = React.forwardRef(function SiSolana2({ title = "Solana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.8764 18.0313-3.962 4.1393a.9201.9201 0 0 1-.306.2106.9407.9407 0 0 1-.367.0742H.4599a.4689.4689 0 0 1-.2522-.0733.4513.4513 0 0 1-.1696-.1962.4375.4375 0 0 1-.0314-.2545.4438.4438 0 0 1 .117-.2298l3.9649-4.1393a.92.92 0 0 1 .3052-.2102.9407.9407 0 0 1 .3658-.0746H23.54a.4692.4692 0 0 1 .2523.0734.4531.4531 0 0 1 .1697.196.438.438 0 0 1 .0313.2547.4442.4442 0 0 1-.1169.2297zm-3.962-8.3355a.9202.9202 0 0 0-.306-.2106.941.941 0 0 0-.367-.0742H.4599a.4687.4687 0 0 0-.2522.0734.4513.4513 0 0 0-.1696.1961.4376.4376 0 0 0-.0314.2546.444.444 0 0 0 .117.2297l3.9649 4.1394a.9204.9204 0 0 0 .3052.2102c.1154.049.24.0744.3658.0746H23.54a.469.469 0 0 0 .2523-.0734.453.453 0 0 0 .1697-.1961.4382.4382 0 0 0 .0313-.2546.4444.4444 0 0 0-.1169-.2297zM.46 6.7225h18.7815a.9411.9411 0 0 0 .367-.0742.9202.9202 0 0 0 .306-.2106l3.962-4.1394a.4442.4442 0 0 0 .117-.2297.4378.4378 0 0 0-.0314-.2546.453.453 0 0 0-.1697-.196.469.469 0 0 0-.2523-.0734H4.7596a.941.941 0 0 0-.3658.0745.9203.9203 0 0 0-.3052.2102L.1246 5.9687a.4438.4438 0 0 0-.1169.2295.4375.4375 0 0 0 .0312.2544.4512.4512 0 0 0 .1692.196.4689.4689 0 0 0 .2518.0739z" }) + ] + } + ); +}); + +export { SiSolana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.cjs new file mode 100644 index 000000000..647163b17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C4F7C"; +const SiSolid = React__namespace.forwardRef(function SiSolid2({ title = "Solid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.558.788A9.082 9.082 0 0 0 9.776.99l-.453.15c-.906.303-1.656.755-2.1 1.348l-.301.452-2.035 3.528c.426-.387.974-.698 1.643-.894h.001l.613-.154h.001a8.82 8.82 0 0 1 1.777-.206c2.916-.053 6.033 1.148 8.423 2.36 2.317 1.175 3.888 2.32 3.987 2.39L24 5.518c-.082-.06-1.66-1.21-3.991-2.386-2.393-1.206-5.521-2.396-8.45-2.343zM8.924 5.366a8.634 8.634 0 0 0-1.745.203l-.606.151c-1.278.376-2.095 1.16-2.43 2.108-.334.948-.188 2.065.487 3.116.33.43.747.813 1.216 1.147L12.328 10h.001a6.943 6.943 0 0 1 6.013 1.013l2.844-.963c-.17-.124-1.663-1.2-3.91-2.34-2.379-1.206-5.479-2.396-8.352-2.344zm5.435 4.497a6.791 6.791 0 0 0-1.984.283L2.94 13.189 0 18.334l9.276-2.992a6.945 6.945 0 0 1 7.408 2.314v.001c.695.903.89 1.906.66 2.808l2.572-4.63c.595-1.041.45-2.225-.302-3.429a6.792 6.792 0 0 0-5.255-2.543zm-3.031 5.341a6.787 6.787 0 0 0-2.006.283L.008 18.492c.175.131 2.02 1.498 4.687 2.768 2.797 1.332 6.37 2.467 9.468 1.712l.454-.152h.002c1.278-.376 2.134-1.162 2.487-2.09.353-.93.207-2.004-.541-2.978a6.791 6.791 0 0 0-5.237-2.548z" }) + ] + } + ); +}); + +exports.default = SiSolid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.d.ts new file mode 100644 index 000000000..adae0ba74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C4F7C"; +declare const SiSolid: IconType; +export { SiSolid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.mjs new file mode 100644 index 000000000..8a1c3a67f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C4F7C"; +const SiSolid = React.forwardRef(function SiSolid2({ title = "Solid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.558.788A9.082 9.082 0 0 0 9.776.99l-.453.15c-.906.303-1.656.755-2.1 1.348l-.301.452-2.035 3.528c.426-.387.974-.698 1.643-.894h.001l.613-.154h.001a8.82 8.82 0 0 1 1.777-.206c2.916-.053 6.033 1.148 8.423 2.36 2.317 1.175 3.888 2.32 3.987 2.39L24 5.518c-.082-.06-1.66-1.21-3.991-2.386-2.393-1.206-5.521-2.396-8.45-2.343zM8.924 5.366a8.634 8.634 0 0 0-1.745.203l-.606.151c-1.278.376-2.095 1.16-2.43 2.108-.334.948-.188 2.065.487 3.116.33.43.747.813 1.216 1.147L12.328 10h.001a6.943 6.943 0 0 1 6.013 1.013l2.844-.963c-.17-.124-1.663-1.2-3.91-2.34-2.379-1.206-5.479-2.396-8.352-2.344zm5.435 4.497a6.791 6.791 0 0 0-1.984.283L2.94 13.189 0 18.334l9.276-2.992a6.945 6.945 0 0 1 7.408 2.314v.001c.695.903.89 1.906.66 2.808l2.572-4.63c.595-1.041.45-2.225-.302-3.429a6.792 6.792 0 0 0-5.255-2.543zm-3.031 5.341a6.787 6.787 0 0 0-2.006.283L.008 18.492c.175.131 2.02 1.498 4.687 2.768 2.797 1.332 6.37 2.467 9.468 1.712l.454-.152h.002c1.278-.376 2.134-1.162 2.487-2.09.353-.93.207-2.004-.541-2.978a6.791 6.791 0 0 0-5.237-2.548z" }) + ] + } + ); +}); + +export { SiSolid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.cjs new file mode 100644 index 000000000..bafd551b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#363636"; +const SiSolidity = React__namespace.forwardRef(function SiSolidity2({ title = "Solidity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.409 6.608L7.981.255l3.572 6.353H4.409zM8.411 0l3.569 6.348L15.552 0H8.411zm4.036 17.392l3.572 6.354 3.575-6.354h-7.147zm-.608-10.284h-7.43l3.715 6.605 3.715-6.605zm.428-.25h7.428L15.982.255l-3.715 6.603zM15.589 24l-3.569-6.349L8.448 24h7.141zm-3.856-6.858H4.306l3.712 6.603 3.715-6.603zm.428-.25h7.433l-3.718-6.605-3.715 6.605z" }) + ] + } + ); +}); + +exports.default = SiSolidity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.d.ts new file mode 100644 index 000000000..37f7f73e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#363636"; +declare const SiSolidity: IconType; +export { SiSolidity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.mjs new file mode 100644 index 000000000..3b56da676 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolidity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#363636"; +const SiSolidity = React.forwardRef(function SiSolidity2({ title = "Solidity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.409 6.608L7.981.255l3.572 6.353H4.409zM8.411 0l3.569 6.348L15.552 0H8.411zm4.036 17.392l3.572 6.354 3.575-6.354h-7.147zm-.608-10.284h-7.43l3.715 6.605 3.715-6.605zm.428-.25h7.428L15.982.255l-3.715 6.603zM15.589 24l-3.569-6.349L8.448 24h7.141zm-3.856-6.858H4.306l3.712 6.603 3.715-6.603zm.428-.25h7.433l-3.718-6.605-3.715 6.605z" }) + ] + } + ); +}); + +export { SiSolidity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.cjs new file mode 100644 index 000000000..94c4d27d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#149EF2"; +const SiSololearn = React__namespace.forwardRef(function SiSololearn2({ title = "Sololearn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.621 16.084a8.483 8.483 0 0 1-2.922 6.427c-.603.53-.19 1.522.613 1.442a9.039 9.039 0 0 0 1.587-.3 8.32 8.32 0 0 0 5.787-5.887 8.555 8.555 0 0 0-8.258-10.832 9.012 9.012 0 0 0-1.045.06c-.794.1-.995 1.161-.29 1.542 2.701 1.452 4.53 4.285 4.53 7.548zM7.906 18.597a8.538 8.538 0 0 1-6.45-2.913c-.532-.6-1.527-.19-1.446.61a8.943 8.943 0 0 0 .3 1.582c.794 2.823 3.064 5.026 5.907 5.766 5.727 1.492 10.87-2.773 10.87-8.229 0-.35-.02-.7-.06-1.04-.1-.792-1.165-.992-1.547-.29a8.597 8.597 0 0 1-7.574 4.514zM5.382 7.916a8.483 8.483 0 0 1 2.924-6.427c.603-.531.19-1.522-.613-1.442a9.93 9.93 0 0 0-1.598.29A8.339 8.339 0 0 0 .31 6.224a8.555 8.555 0 0 0 8.258 10.832c.352 0 .704-.02 1.045-.06.794-.1.995-1.162.29-1.542a8.54 8.541 0 0 1-4.52-7.538zm10.72-2.513a8.538 8.538 0 0 1 6.45 2.913c.53.6 1.526.19 1.445-.61a8.945 8.945 0 0 0-.3-1.583C22.902 3.3 20.632 1.098 17.788.357 12.071-1.145 6.928 3.12 6.928 8.576c0 .35.02.7.06 1.041.1.791 1.168.991 1.549.29A8.58 8.58 0 0 1 16.1 5.404z" }) + ] + } + ); +}); + +exports.default = SiSololearn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.d.ts new file mode 100644 index 000000000..f134dfc2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#149EF2"; +declare const SiSololearn: IconType; +export { SiSololearn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.mjs new file mode 100644 index 000000000..7a0139d7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSololearn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#149EF2"; +const SiSololearn = React.forwardRef(function SiSololearn2({ title = "Sololearn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.621 16.084a8.483 8.483 0 0 1-2.922 6.427c-.603.53-.19 1.522.613 1.442a9.039 9.039 0 0 0 1.587-.3 8.32 8.32 0 0 0 5.787-5.887 8.555 8.555 0 0 0-8.258-10.832 9.012 9.012 0 0 0-1.045.06c-.794.1-.995 1.161-.29 1.542 2.701 1.452 4.53 4.285 4.53 7.548zM7.906 18.597a8.538 8.538 0 0 1-6.45-2.913c-.532-.6-1.527-.19-1.446.61a8.943 8.943 0 0 0 .3 1.582c.794 2.823 3.064 5.026 5.907 5.766 5.727 1.492 10.87-2.773 10.87-8.229 0-.35-.02-.7-.06-1.04-.1-.792-1.165-.992-1.547-.29a8.597 8.597 0 0 1-7.574 4.514zM5.382 7.916a8.483 8.483 0 0 1 2.924-6.427c.603-.531.19-1.522-.613-1.442a9.93 9.93 0 0 0-1.598.29A8.339 8.339 0 0 0 .31 6.224a8.555 8.555 0 0 0 8.258 10.832c.352 0 .704-.02 1.045-.06.794-.1.995-1.162.29-1.542a8.54 8.541 0 0 1-4.52-7.538zm10.72-2.513a8.538 8.538 0 0 1 6.45 2.913c.53.6 1.526.19 1.445-.61a8.945 8.945 0 0 0-.3-1.583C22.902 3.3 20.632 1.098 17.788.357 12.071-1.145 6.928 3.12 6.928 8.576c0 .35.02.7.06 1.041.1.791 1.168.991 1.549.29A8.58 8.58 0 0 1 16.1 5.404z" }) + ] + } + ); +}); + +export { SiSololearn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.cjs new file mode 100644 index 000000000..b3d10505a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5294E2"; +const SiSolus = React__namespace.forwardRef(function SiSolus2({ title = "Solus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.453 0c-.18.587-.369 1.167-.565 1.75A11.638 11.638 0 0 0 0 12.364a11.638 11.638 0 0 0 .516 3.403l-.339.598L0 16.73l.279.143a3.448 3.448 0 0 0 .741.222A11.638 11.638 0 0 0 2 18.868c4.034.343 8.55.512 12.446-.056 3.192-.463 5.94-1.423 7.735-3.117.252-.233.474-.474.674-.722.019-.038.037-.053.06-.076.011 0 .026-.037.038-.052.015 0 .03-.038.041-.057.008 0 .015-.038.023-.038.33-.444.587-.892.801-1.31l.181-.365-.365-.365a5.936 5.936 0 0 0-.361-.35A11.638 11.638 0 0 0 11.635.722a11.638 11.638 0 0 0-3.211.463C7.96.508 7.596.041 7.453 0zm.365 1.637C9.06 3.82 10.13 5.06 11.454 7.457c.132 1.524.67 9.45.727 10.181-.392-.037-2.485-.24-5.104-.515-1.43-.147-2.899-.316-4.092-.49l-1.9-.447c2.149-3.787 5.551-9.727 6.737-14.548zm4.543 6.18s4.991 3.927 7.092 8.73c-2.56 1.26-4.916 1.098-6.361 1.09 1.023-2.634 1.023-6.21-.73-9.82zm3.456 2.184a45.14 45.14 0 0 1 2.91.907c1.768.629 3.417 1.49 4.365 2.364a6.956 6.956 0 0 1-2.91 2.91c.151-1.495-.39-2.933-1.456-4.002-.787-.787-1.822-1.453-2.91-2.183zm6.707 6.478c-2.352 1.667-5.126 2.68-7.965 3.112a41.026 41.026 0 0 1-3.715.34h-.323a53.48 53.48 0 0 1-3.727 0 85.763 85.763 0 0 1-4.178-.23h-.003c2.555 3.255 6.993 4.893 11.092 4.102a11.367 11.367 0 0 0 4.498-1.852 11.638 11.638 0 0 0 .007 0c.312-.214.614-.444.903-.685a11.638 11.638 0 0 0 .038-.037 11.555 11.555 0 0 0 3.376-4.762zM2.511 19.584a11.638 11.638 0 0 0 .023.038c-.008 0-.015-.038-.023-.038z" }) + ] + } + ); +}); + +exports.default = SiSolus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.d.ts new file mode 100644 index 000000000..b56cb0ed8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5294E2"; +declare const SiSolus: IconType; +export { SiSolus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.mjs new file mode 100644 index 000000000..ca98d51ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSolus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5294E2"; +const SiSolus = React.forwardRef(function SiSolus2({ title = "Solus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.453 0c-.18.587-.369 1.167-.565 1.75A11.638 11.638 0 0 0 0 12.364a11.638 11.638 0 0 0 .516 3.403l-.339.598L0 16.73l.279.143a3.448 3.448 0 0 0 .741.222A11.638 11.638 0 0 0 2 18.868c4.034.343 8.55.512 12.446-.056 3.192-.463 5.94-1.423 7.735-3.117.252-.233.474-.474.674-.722.019-.038.037-.053.06-.076.011 0 .026-.037.038-.052.015 0 .03-.038.041-.057.008 0 .015-.038.023-.038.33-.444.587-.892.801-1.31l.181-.365-.365-.365a5.936 5.936 0 0 0-.361-.35A11.638 11.638 0 0 0 11.635.722a11.638 11.638 0 0 0-3.211.463C7.96.508 7.596.041 7.453 0zm.365 1.637C9.06 3.82 10.13 5.06 11.454 7.457c.132 1.524.67 9.45.727 10.181-.392-.037-2.485-.24-5.104-.515-1.43-.147-2.899-.316-4.092-.49l-1.9-.447c2.149-3.787 5.551-9.727 6.737-14.548zm4.543 6.18s4.991 3.927 7.092 8.73c-2.56 1.26-4.916 1.098-6.361 1.09 1.023-2.634 1.023-6.21-.73-9.82zm3.456 2.184a45.14 45.14 0 0 1 2.91.907c1.768.629 3.417 1.49 4.365 2.364a6.956 6.956 0 0 1-2.91 2.91c.151-1.495-.39-2.933-1.456-4.002-.787-.787-1.822-1.453-2.91-2.183zm6.707 6.478c-2.352 1.667-5.126 2.68-7.965 3.112a41.026 41.026 0 0 1-3.715.34h-.323a53.48 53.48 0 0 1-3.727 0 85.763 85.763 0 0 1-4.178-.23h-.003c2.555 3.255 6.993 4.893 11.092 4.102a11.367 11.367 0 0 0 4.498-1.852 11.638 11.638 0 0 0 .007 0c.312-.214.614-.444.903-.685a11.638 11.638 0 0 0 .038-.037 11.555 11.555 0 0 0 3.376-4.762zM2.511 19.584a11.638 11.638 0 0 0 .023.038c-.008 0-.015-.038-.023-.038z" }) + ] + } + ); +}); + +export { SiSolus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.cjs new file mode 100644 index 000000000..bf0fa4fcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD3456"; +const SiSonar = React__namespace.forwardRef(function SiSonar2({ title = "Sonar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.63 5.037a3.834 3.834 0 0 0-.702.044 14.875 14.875 0 0 1 1.018 5.465c0 5.693-3.172 10.745-7.802 12.587.234.015.469.024.707.024h.035a7.434 7.434 0 0 0 5.748-2.764c1.773-2.194 2.861-5.15 2.861-8.391a13.582 13.582 0 0 0-1.865-6.965Zm-.738 5.509a13.833 13.833 0 0 0-.98-5.172c-.136.056-.233.107-.304.142a.8.8 0 0 0-.424.804c.083.72.126 1.444.127 2.169 0 3.312-1.069 6.49-3.011 8.946-1.837 2.321-4.301 3.815-6.981 4.242l.023.014a5.457 5.457 0 0 0 5.103.153c3.782-1.854 6.447-6.22 6.447-11.298ZM24 12.002a11.104 11.104 0 0 0-.85-4.276 4.892 4.892 0 0 0-1.072-1.627 3.61 3.61 0 0 0-.842-.631A3.598 3.598 0 0 0 21 5.356a14.841 14.841 0 0 1 1.544 6.642c0 3.294-1.073 6.467-2.982 8.901A11.135 11.135 0 0 0 24 12.002Zm-3.147-7.771A11.118 11.118 0 0 0 12.856.843C6.691.843 1.64 5.95 1.702 12.115c.013 1.461.315 2.905.888 4.25-.184-.024-.369-.032-.555-.024-.5.023-1.207-.157-1.527-.247-.32-.089-.606.167-.476.465v.009c1.108 2.536 3.562 4.187 5.906 4.182.155 0 .311-.008.466-.024 5.488-.418 9.843-5.746 9.843-12.236 0-.409-.018-.816-.053-1.22a.238.238 0 0 0-.054-.132.237.237 0 0 0-.263-.075.24.24 0 0 0-.117.084c-1.518 2.009-3.766 5.541-6.579 3.7-1.084-.706-1.661-2.225-1.335-3.772.586-2.777 3.822-4.608 5.248-4.034.112.045.513.205.65.571.208.558-.421 1.018-.742 2.007-.345 1.071-.15 2.206.092 2.256.271.054.726-.94 1.845-1.844.813-.654 1.426-.839 1.811-1.534.371-.678-.29-1.392-.065-1.456.225-.063.435.717 1.105 1.105.559.325 1.058.122 1.794.092.273-.002.545.019.813.063 0 0 .144.02.372.067a.077.077 0 0 0 .052-.003.084.084 0 0 0 .04-.034.076.076 0 0 0 .012-.051.082.082 0 0 0-.02-.049Zm-8.314 8.599a.786.786 0 0 1 .508-.307.648.648 0 0 1 .499.135c.271.251.191.736-.042 1.015-.217.258-.644.427-.941.236a.678.678 0 0 1-.263-.542.8.8 0 0 1 .239-.537Z" }) + ] + } + ); +}); + +exports.default = SiSonar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.d.ts new file mode 100644 index 000000000..84bc36c41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD3456"; +declare const SiSonar: IconType; +export { SiSonar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.mjs new file mode 100644 index 000000000..c1e3dd889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD3456"; +const SiSonar = React.forwardRef(function SiSonar2({ title = "Sonar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.63 5.037a3.834 3.834 0 0 0-.702.044 14.875 14.875 0 0 1 1.018 5.465c0 5.693-3.172 10.745-7.802 12.587.234.015.469.024.707.024h.035a7.434 7.434 0 0 0 5.748-2.764c1.773-2.194 2.861-5.15 2.861-8.391a13.582 13.582 0 0 0-1.865-6.965Zm-.738 5.509a13.833 13.833 0 0 0-.98-5.172c-.136.056-.233.107-.304.142a.8.8 0 0 0-.424.804c.083.72.126 1.444.127 2.169 0 3.312-1.069 6.49-3.011 8.946-1.837 2.321-4.301 3.815-6.981 4.242l.023.014a5.457 5.457 0 0 0 5.103.153c3.782-1.854 6.447-6.22 6.447-11.298ZM24 12.002a11.104 11.104 0 0 0-.85-4.276 4.892 4.892 0 0 0-1.072-1.627 3.61 3.61 0 0 0-.842-.631A3.598 3.598 0 0 0 21 5.356a14.841 14.841 0 0 1 1.544 6.642c0 3.294-1.073 6.467-2.982 8.901A11.135 11.135 0 0 0 24 12.002Zm-3.147-7.771A11.118 11.118 0 0 0 12.856.843C6.691.843 1.64 5.95 1.702 12.115c.013 1.461.315 2.905.888 4.25-.184-.024-.369-.032-.555-.024-.5.023-1.207-.157-1.527-.247-.32-.089-.606.167-.476.465v.009c1.108 2.536 3.562 4.187 5.906 4.182.155 0 .311-.008.466-.024 5.488-.418 9.843-5.746 9.843-12.236 0-.409-.018-.816-.053-1.22a.238.238 0 0 0-.054-.132.237.237 0 0 0-.263-.075.24.24 0 0 0-.117.084c-1.518 2.009-3.766 5.541-6.579 3.7-1.084-.706-1.661-2.225-1.335-3.772.586-2.777 3.822-4.608 5.248-4.034.112.045.513.205.65.571.208.558-.421 1.018-.742 2.007-.345 1.071-.15 2.206.092 2.256.271.054.726-.94 1.845-1.844.813-.654 1.426-.839 1.811-1.534.371-.678-.29-1.392-.065-1.456.225-.063.435.717 1.105 1.105.559.325 1.058.122 1.794.092.273-.002.545.019.813.063 0 0 .144.02.372.067a.077.077 0 0 0 .052-.003.084.084 0 0 0 .04-.034.076.076 0 0 0 .012-.051.082.082 0 0 0-.02-.049Zm-8.314 8.599a.786.786 0 0 1 .508-.307.648.648 0 0 1 .499.135c.271.251.191.736-.042 1.015-.217.258-.644.427-.941.236a.678.678 0 0 1-.263-.542.8.8 0 0 1 .239-.537Z" }) + ] + } + ); +}); + +export { SiSonar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.cjs new file mode 100644 index 000000000..5243086b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#126ED3"; +const SiSonarqubecloud = React__namespace.forwardRef(function SiSonarqubecloud2({ title = "SonarQube Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2656.168c-.4273 0-.7676.3551-.7676.7773 0 .4222.3513.7676.7735.7676.0268-.0144.062-.004.0918-.0059 3.9749 0 7.3782 2.9452 7.9394 6.879.0567.3861.3859.664.7618.664.4676 0 .8328-.4084.7636-.8809C21.1588 3.6786 17.0963.168 12.3594.168Zm-.3027 3.0566c-1.7538 0-3.5063.6678-4.8399 2.004-1.3747 1.3747-2.0765 3.2193-1.994 5.1347-1.1431.2935-2.2292.8795-3.125 1.7754-2.6723 2.6722-2.6723 7.0184 0 9.6855 1.3335 1.3336 3.0899 2.002 4.8456 2.002 1.7558 0 3.505-.6684 4.8438-2.002.108-.1081.2075-.2266.3105-.3398 1.2563 1.4365 3.094 2.3476 5.1484 2.3476 3.7793 0 6.8477-3.0735 6.8477-6.8476 0-3.1511-2.1943-5.9-5.2012-6.6465.0721-1.8433-.5865-3.7089-1.9922-5.1094-1.336-1.3361-3.0899-2.0039-4.8437-2.0039Zm3.752 3.1074c2.0698 2.0699 2.0698 5.4354 0 7.5-.3038.3038-.3038.7932 0 1.0918.2973.2974.7873.3045 1.0918 0 .8753-.8753 1.4572-1.925 1.7558-3.037 2.2552.628 3.8926 2.7183 3.8926 5.1073 0 2.9246-2.3782 5.3028-5.3027 5.3008-2.9245-.002-5.3027-2.382-5.3027-5.3066 0-.4274-.3461-.7715-.7735-.7715a.7699.7699 0 0 0-.7715.7715c0 1.1482.2877 2.231.7871 3.1836-.1493.2008-.308.39-.4882.5703-2.0699 2.0698-5.4373 2.0698-7.502 0-2.0698-2.0698-2.0698-5.4321 0-7.502 2.0698-2.0698 5.4321-2.0698 7.502 0 .3037.3038.7912.3038 1.0898 0 .2986-.3037.3038-.7931 0-1.0918-1.385-1.385-3.2177-2.0436-5.0352-1.9922-.0206-1.4313.525-2.7996 1.5547-3.8242 1.035-1.0349 2.394-1.5527 3.752-1.5527 1.358 0 2.715.5178 3.75 1.5527zm-3.5566.0508c-.4274 0-.7676.3552-.7676.7774 0 .4388.3555.7675.7988.7675 1.0452 0 1.9038.8494 1.914 1.8946 0 .4222.3513.7675.778.7675s.767-.3551.767-.7773c-.0103-.9216-.3761-1.792-1.0352-2.441-.659-.6492-1.5231-.999-2.455-.9887Z" }) + ] + } + ); +}); + +exports.default = SiSonarqubecloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.d.ts new file mode 100644 index 000000000..0196cd4f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#126ED3"; +declare const SiSonarqubecloud: IconType; +export { SiSonarqubecloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.mjs new file mode 100644 index 000000000..48aada1df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubecloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#126ED3"; +const SiSonarqubecloud = React.forwardRef(function SiSonarqubecloud2({ title = "SonarQube Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.2656.168c-.4273 0-.7676.3551-.7676.7773 0 .4222.3513.7676.7735.7676.0268-.0144.062-.004.0918-.0059 3.9749 0 7.3782 2.9452 7.9394 6.879.0567.3861.3859.664.7618.664.4676 0 .8328-.4084.7636-.8809C21.1588 3.6786 17.0963.168 12.3594.168Zm-.3027 3.0566c-1.7538 0-3.5063.6678-4.8399 2.004-1.3747 1.3747-2.0765 3.2193-1.994 5.1347-1.1431.2935-2.2292.8795-3.125 1.7754-2.6723 2.6722-2.6723 7.0184 0 9.6855 1.3335 1.3336 3.0899 2.002 4.8456 2.002 1.7558 0 3.505-.6684 4.8438-2.002.108-.1081.2075-.2266.3105-.3398 1.2563 1.4365 3.094 2.3476 5.1484 2.3476 3.7793 0 6.8477-3.0735 6.8477-6.8476 0-3.1511-2.1943-5.9-5.2012-6.6465.0721-1.8433-.5865-3.7089-1.9922-5.1094-1.336-1.3361-3.0899-2.0039-4.8437-2.0039Zm3.752 3.1074c2.0698 2.0699 2.0698 5.4354 0 7.5-.3038.3038-.3038.7932 0 1.0918.2973.2974.7873.3045 1.0918 0 .8753-.8753 1.4572-1.925 1.7558-3.037 2.2552.628 3.8926 2.7183 3.8926 5.1073 0 2.9246-2.3782 5.3028-5.3027 5.3008-2.9245-.002-5.3027-2.382-5.3027-5.3066 0-.4274-.3461-.7715-.7735-.7715a.7699.7699 0 0 0-.7715.7715c0 1.1482.2877 2.231.7871 3.1836-.1493.2008-.308.39-.4882.5703-2.0699 2.0698-5.4373 2.0698-7.502 0-2.0698-2.0698-2.0698-5.4321 0-7.502 2.0698-2.0698 5.4321-2.0698 7.502 0 .3037.3038.7912.3038 1.0898 0 .2986-.3037.3038-.7931 0-1.0918-1.385-1.385-3.2177-2.0436-5.0352-1.9922-.0206-1.4313.525-2.7996 1.5547-3.8242 1.035-1.0349 2.394-1.5527 3.752-1.5527 1.358 0 2.715.5178 3.75 1.5527zm-3.5566.0508c-.4274 0-.7676.3552-.7676.7774 0 .4388.3555.7675.7988.7675 1.0452 0 1.9038.8494 1.914 1.8946 0 .4222.3513.7675.778.7675s.767-.3551.767-.7773c-.0103-.9216-.3761-1.792-1.0352-2.441-.659-.6492-1.5231-.999-2.455-.9887Z" }) + ] + } + ); +}); + +export { SiSonarqubecloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.cjs new file mode 100644 index 000000000..dd0341465 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#126ED3"; +const SiSonarqubeforide = React__namespace.forwardRef(function SiSonarqubeforide2({ title = "SonarQube for IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.4219.002a12.0453 12.0453 0 0 0-.5274.002c-2.8105.0773-5.6 1.1307-7.7968 3.1522-.328.3024-.3306.8227-.0118 1.1329l.002.002.0041.0039c.2993.2729.7594.2765 1.0564 0 1.9339-1.774 4.4298-2.6978 6.8536-2.7442 2.4237-.0464 4.868.739 6.8535 2.3789.3145.2578.775.2366 1.0586-.0625.3094-.325.2771-.846-.0684-1.1348C17.6894.9533 15.0583.045 12.4219.002ZM6.996 9.668c-1.2996 0-1.908 1.1345-2.3516 1.9648-.3764.7117-.6362 1.1465-.9765 1.1465-.3404 0-.593-.4348-.9746-1.1465-.2785-.5208-.618-1.159-1.1543-1.5664-.49-.3661-1.1914-.0063-1.1914.6074v.125c0 .2218.1188.407.289.541.2166.1702.4174.531.6856 1.0313.4435.8303 1.052 1.9648 2.3515 1.9648 1.2996 0 1.908-1.1345 2.3516-1.9648.3816-.7117.635-1.1445.9805-1.1445.3455 0 .5969.4328.9785 1.1445.4435.8303 1.0571 1.9648 2.3515 1.9648 1.2944 0 1.9042-1.1345 2.3477-1.9648.3765-.7117.629-1.1445.9746-1.1445.3455 0 .5989.4328.9805 1.1445.4435.8303 1.052 1.9648 2.3515 1.9648 1.2996 0 1.9081-1.1345 2.3516-1.9648.3816-.7117.6382-1.1445.9785-1.1445.3404 0 .5989.4328.9805 1.1445.2785.5208.6238 1.161 1.1601 1.5684.49.3661 1.1914.0043 1.1914-.6094h-.0098v-.123c0-.2167-.1188-.409-.289-.543-.2166-.1702-.4233-.531-.6914-1.0313-.4435-.8303-1.052-1.9648-2.3516-1.9648-1.2995 0-1.908 1.1345-2.3516 1.9648-.3816.7117-.6349 1.1465-.9804 1.1465-.3455 0-.597-.4348-.9785-1.1465-.4435-.8303-1.0572-1.9648-2.3516-1.9648s-1.9042 1.1345-2.3477 1.9648c-.3764.7117-.629 1.1465-.9746 1.1465-.3455 0-.5969-.4348-.9785-1.1465-.4434-.8303-1.052-1.9648-2.3515-1.9648Zm12.2832 10.0254c-1.8514 1.707-4.2337 2.677-6.7813 2.7441-2.5475.0722-4.9776-.768-6.9218-2.377-.3198-.2578-.7789-.2385-1.0625.0606-.3094.3249-.283.8511.0625 1.1348C6.7266 23.035 9.3977 24 12.2032 24l.0116-.0098h.3301c2.924-.0774 5.662-1.1914 7.7969-3.1563.3249-.3094.3249-.8312 0-1.1406-.299-.2784-.7585-.2782-1.0625 0z" }) + ] + } + ); +}); + +exports.default = SiSonarqubeforide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.d.ts new file mode 100644 index 000000000..f722d5a94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#126ED3"; +declare const SiSonarqubeforide: IconType; +export { SiSonarqubeforide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.mjs new file mode 100644 index 000000000..c584f0563 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeforide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#126ED3"; +const SiSonarqubeforide = React.forwardRef(function SiSonarqubeforide2({ title = "SonarQube for IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.4219.002a12.0453 12.0453 0 0 0-.5274.002c-2.8105.0773-5.6 1.1307-7.7968 3.1522-.328.3024-.3306.8227-.0118 1.1329l.002.002.0041.0039c.2993.2729.7594.2765 1.0564 0 1.9339-1.774 4.4298-2.6978 6.8536-2.7442 2.4237-.0464 4.868.739 6.8535 2.3789.3145.2578.775.2366 1.0586-.0625.3094-.325.2771-.846-.0684-1.1348C17.6894.9533 15.0583.045 12.4219.002ZM6.996 9.668c-1.2996 0-1.908 1.1345-2.3516 1.9648-.3764.7117-.6362 1.1465-.9765 1.1465-.3404 0-.593-.4348-.9746-1.1465-.2785-.5208-.618-1.159-1.1543-1.5664-.49-.3661-1.1914-.0063-1.1914.6074v.125c0 .2218.1188.407.289.541.2166.1702.4174.531.6856 1.0313.4435.8303 1.052 1.9648 2.3515 1.9648 1.2996 0 1.908-1.1345 2.3516-1.9648.3816-.7117.635-1.1445.9805-1.1445.3455 0 .5969.4328.9785 1.1445.4435.8303 1.0571 1.9648 2.3515 1.9648 1.2944 0 1.9042-1.1345 2.3477-1.9648.3765-.7117.629-1.1445.9746-1.1445.3455 0 .5989.4328.9805 1.1445.4435.8303 1.052 1.9648 2.3515 1.9648 1.2996 0 1.9081-1.1345 2.3516-1.9648.3816-.7117.6382-1.1445.9785-1.1445.3404 0 .5989.4328.9805 1.1445.2785.5208.6238 1.161 1.1601 1.5684.49.3661 1.1914.0043 1.1914-.6094h-.0098v-.123c0-.2167-.1188-.409-.289-.543-.2166-.1702-.4233-.531-.6914-1.0313-.4435-.8303-1.052-1.9648-2.3516-1.9648-1.2995 0-1.908 1.1345-2.3516 1.9648-.3816.7117-.6349 1.1465-.9804 1.1465-.3455 0-.597-.4348-.9785-1.1465-.4435-.8303-1.0572-1.9648-2.3516-1.9648s-1.9042 1.1345-2.3477 1.9648c-.3764.7117-.629 1.1465-.9746 1.1465-.3455 0-.5969-.4348-.9785-1.1465-.4434-.8303-1.052-1.9648-2.3515-1.9648Zm12.2832 10.0254c-1.8514 1.707-4.2337 2.677-6.7813 2.7441-2.5475.0722-4.9776-.768-6.9218-2.377-.3198-.2578-.7789-.2385-1.0625.0606-.3094.3249-.283.8511.0625 1.1348C6.7266 23.035 9.3977 24 12.2032 24l.0116-.0098h.3301c2.924-.0774 5.662-1.1914 7.7969-3.1563.3249-.3094.3249-.8312 0-1.1406-.299-.2784-.7585-.2782-1.0625 0z" }) + ] + } + ); +}); + +export { SiSonarqubeforide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.cjs new file mode 100644 index 000000000..4106b7b7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#126ED3"; +const SiSonarqubeserver = React__namespace.forwardRef(function SiSonarqubeserver2({ title = "SonarQube Server", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a.774.774 0 0 0-.775.775c0 .43.346.776.775.776 5.762 0 10.45 4.687 10.45 10.449 0 .43.345.775.775.775A.774.774 0 0 0 24 12c0-6.616-5.384-12-12-12zm0 3.932a.774.774 0 0 0-.775.775c0 .43.346.775.775.775A6.524 6.524 0 0 1 18.518 12c0 .43.346.775.775.775.43 0 .775-.346.775-.775 0-4.448-3.62-8.068-8.068-8.068zm0 3.925a.774.774 0 0 0-.775.776c0 .43.346.775.775.775A2.597 2.597 0 0 1 14.592 12c0 .43.346.775.775.775.43 0 .776-.346.776-.775A4.145 4.145 0 0 0 12 7.857zM.775 11.225A.774.774 0 0 0 0 12c0 6.616 5.384 12 12 12 .43 0 .775-.346.775-.775a.774.774 0 0 0-.775-.776C6.238 22.45 1.55 17.762 1.55 12a.774.774 0 0 0-.775-.775zm3.932 0a.774.774 0 0 0-.775.775c0 4.448 3.62 8.068 8.068 8.068.43 0 .775-.346.775-.775a.774.774 0 0 0-.775-.775A6.524 6.524 0 0 1 5.482 12a.774.774 0 0 0-.775-.775zm3.926 0a.774.774 0 0 0-.776.775A4.145 4.145 0 0 0 12 16.143c.43 0 .775-.347.775-.776a.774.774 0 0 0-.775-.775A2.597 2.597 0 0 1 9.408 12a.774.774 0 0 0-.775-.775z" }) + ] + } + ); +}); + +exports.default = SiSonarqubeserver; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.d.ts new file mode 100644 index 000000000..cb2d2de5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#126ED3"; +declare const SiSonarqubeserver: IconType; +export { SiSonarqubeserver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.mjs new file mode 100644 index 000000000..782bb2cd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarqubeserver.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#126ED3"; +const SiSonarqubeserver = React.forwardRef(function SiSonarqubeserver2({ title = "SonarQube Server", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a.774.774 0 0 0-.775.775c0 .43.346.776.775.776 5.762 0 10.45 4.687 10.45 10.449 0 .43.345.775.775.775A.774.774 0 0 0 24 12c0-6.616-5.384-12-12-12zm0 3.932a.774.774 0 0 0-.775.775c0 .43.346.775.775.775A6.524 6.524 0 0 1 18.518 12c0 .43.346.775.775.775.43 0 .775-.346.775-.775 0-4.448-3.62-8.068-8.068-8.068zm0 3.925a.774.774 0 0 0-.775.776c0 .43.346.775.775.775A2.597 2.597 0 0 1 14.592 12c0 .43.346.775.775.775.43 0 .776-.346.776-.775A4.145 4.145 0 0 0 12 7.857zM.775 11.225A.774.774 0 0 0 0 12c0 6.616 5.384 12 12 12 .43 0 .775-.346.775-.775a.774.774 0 0 0-.775-.776C6.238 22.45 1.55 17.762 1.55 12a.774.774 0 0 0-.775-.775zm3.932 0a.774.774 0 0 0-.775.775c0 4.448 3.62 8.068 8.068 8.068.43 0 .775-.346.775-.775a.774.774 0 0 0-.775-.775A6.524 6.524 0 0 1 5.482 12a.774.774 0 0 0-.775-.775zm3.926 0a.774.774 0 0 0-.776.775A4.145 4.145 0 0 0 12 16.143c.43 0 .775-.347.775-.776a.774.774 0 0 0-.775-.775A2.597 2.597 0 0 1 9.408 12a.774.774 0 0 0-.775-.775z" }) + ] + } + ); +}); + +export { SiSonarqubeserver as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.cjs new file mode 100644 index 000000000..5ef266aef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2596BE"; +const SiSonarr = React__namespace.forwardRef(function SiSonarr2({ title = "sonarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.212 4.282c1.851 2.204 2.777 4.776 2.777 7.718 0 2.848-.867 5.344-2.602 7.489a934.355 934.355 0 0 1-2.101-2.095c-1.477-1.477-1.792-3.293-1.792-5.278 0-2.224.127-3.486 1.577-4.935l2.478-2.478a13.209 13.209 0 0 0-.337-.421Zm-17.7 16.193C1.708 18.678.6 16.59.188 14.213A11.84 11.84 0 0 1 .011 12c0-.28.006-.548.017-.802 0-.026.007-.052.022-.078.153-2.601 1.076-4.889 2.767-6.865-.108.127-.214.256-.316.387 0 0 1.351 1.346 2.329 2.323 1.408 1.409 1.726 3.215 1.726 5.151 0 1.985-.249 3.762-1.781 5.295-1.035 1.035-2.119 2.124-2.119 2.124.112.136.229.271.349.404.029-.027 1.297-1.348 2.123-2.175 1.638-1.637 1.928-3.528 1.928-5.648 0-2.072-.365-3.997-1.873-5.504a620.045 620.045 0 0 0-2.366-2.357c.168-.196.342-.388.523-.576l3.117 3.106-.194.195 1.903 1.898.547-.549L6.81 6.432l-.196.196L3.495 3.52c.01-.009.436-.416.643-.597.009.011 2.28 2.283 2.28 2.283 1.538 1.537 3.5 1.955 5.621 1.955 2.18 0 4.134-.442 5.731-2.038.907-.908 2.153-2.149 2.162-2.16.17.151.491.461.56.528l.013.013-3.111 3.028-.001.002-.197-.194-1.876 1.903.552.543 1.875-1.903-.197-.194 3.109-3.026c.193.203.377.41.553.619-.03.025-2.495 2.546-2.495 2.546-1.556 1.556-1.723 2.9-1.723 5.288 0 2.121.361 4.054 1.939 5.632a576.91 576.91 0 0 0 2.133 2.124c-.183.208-.599.645-.613.66l-3.066-3.174.195-.196-1.995-1.986-.546.549 1.995 1.986.195-.196 3.065 3.172c-.021.019-.385.362-.552.506-.01-.013-1.974-1.978-1.974-1.978-1.842-1.842-3.299-2.039-5.731-2.039-2.338 0-3.92.239-5.632 1.95-.944.944-2.078 2.085-2.089 2.099-.275-.23-.649-.594-.649-.594l3.019-3.024.199.192 1.854-1.925-.558-.538-1.854 1.926.199.191-3.016 3.022ZM12 8.672A3.33 3.33 0 0 0 8.672 12 3.33 3.33 0 0 0 12 15.328 3.33 3.33 0 0 0 15.328 12 3.33 3.33 0 0 0 12 8.672ZM4.52 2.6C6.665.867 9.162 0 12.011 0c2.88 0 5.394.88 7.541 2.639 0 0-1.215 1.209-2.136 2.13-1.496 1.496-3.334 1.892-5.377 1.892-1.985 0-3.829-.37-5.267-1.809L4.52 2.6Zm14.837 18.909a9.507 9.507 0 0 1-.342.256C16.994 23.255 14.659 24 12.011 24c-2.652 0-4.983-.745-6.993-2.235-.104-.074-.208-.15-.31-.227 0 0 1.096-1.101 2.053-2.058 1.602-1.602 3.09-1.804 5.278-1.804 2.28 0 3.651.166 5.377 1.892l1.941 1.941Z" }) + ] + } + ); +}); + +exports.default = SiSonarr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.d.ts new file mode 100644 index 000000000..c61de4bbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2596BE"; +declare const SiSonarr: IconType; +export { SiSonarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.mjs new file mode 100644 index 000000000..c9d14e14f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonarr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2596BE"; +const SiSonarr = React.forwardRef(function SiSonarr2({ title = "sonarr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.212 4.282c1.851 2.204 2.777 4.776 2.777 7.718 0 2.848-.867 5.344-2.602 7.489a934.355 934.355 0 0 1-2.101-2.095c-1.477-1.477-1.792-3.293-1.792-5.278 0-2.224.127-3.486 1.577-4.935l2.478-2.478a13.209 13.209 0 0 0-.337-.421Zm-17.7 16.193C1.708 18.678.6 16.59.188 14.213A11.84 11.84 0 0 1 .011 12c0-.28.006-.548.017-.802 0-.026.007-.052.022-.078.153-2.601 1.076-4.889 2.767-6.865-.108.127-.214.256-.316.387 0 0 1.351 1.346 2.329 2.323 1.408 1.409 1.726 3.215 1.726 5.151 0 1.985-.249 3.762-1.781 5.295-1.035 1.035-2.119 2.124-2.119 2.124.112.136.229.271.349.404.029-.027 1.297-1.348 2.123-2.175 1.638-1.637 1.928-3.528 1.928-5.648 0-2.072-.365-3.997-1.873-5.504a620.045 620.045 0 0 0-2.366-2.357c.168-.196.342-.388.523-.576l3.117 3.106-.194.195 1.903 1.898.547-.549L6.81 6.432l-.196.196L3.495 3.52c.01-.009.436-.416.643-.597.009.011 2.28 2.283 2.28 2.283 1.538 1.537 3.5 1.955 5.621 1.955 2.18 0 4.134-.442 5.731-2.038.907-.908 2.153-2.149 2.162-2.16.17.151.491.461.56.528l.013.013-3.111 3.028-.001.002-.197-.194-1.876 1.903.552.543 1.875-1.903-.197-.194 3.109-3.026c.193.203.377.41.553.619-.03.025-2.495 2.546-2.495 2.546-1.556 1.556-1.723 2.9-1.723 5.288 0 2.121.361 4.054 1.939 5.632a576.91 576.91 0 0 0 2.133 2.124c-.183.208-.599.645-.613.66l-3.066-3.174.195-.196-1.995-1.986-.546.549 1.995 1.986.195-.196 3.065 3.172c-.021.019-.385.362-.552.506-.01-.013-1.974-1.978-1.974-1.978-1.842-1.842-3.299-2.039-5.731-2.039-2.338 0-3.92.239-5.632 1.95-.944.944-2.078 2.085-2.089 2.099-.275-.23-.649-.594-.649-.594l3.019-3.024.199.192 1.854-1.925-.558-.538-1.854 1.926.199.191-3.016 3.022ZM12 8.672A3.33 3.33 0 0 0 8.672 12 3.33 3.33 0 0 0 12 15.328 3.33 3.33 0 0 0 15.328 12 3.33 3.33 0 0 0 12 8.672ZM4.52 2.6C6.665.867 9.162 0 12.011 0c2.88 0 5.394.88 7.541 2.639 0 0-1.215 1.209-2.136 2.13-1.496 1.496-3.334 1.892-5.377 1.892-1.985 0-3.829-.37-5.267-1.809L4.52 2.6Zm14.837 18.909a9.507 9.507 0 0 1-.342.256C16.994 23.255 14.659 24 12.011 24c-2.652 0-4.983-.745-6.993-2.235-.104-.074-.208-.15-.31-.227 0 0 1.096-1.101 2.053-2.058 1.602-1.602 3.09-1.804 5.278-1.804 2.28 0 3.651.166 5.377 1.892l1.941 1.941Z" }) + ] + } + ); +}); + +export { SiSonarr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.cjs new file mode 100644 index 000000000..f212fbbfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1B1C30"; +const SiSonatype = React__namespace.forwardRef(function SiSonatype2({ title = "Sonatype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.4568 20.5995c0 .5118-.4275.9032-1.2103.9032-.4938 0-.9454-.1565-1.2465-.4516l.289-.4577c.2048.2109.6082.4095.9876.4095.3794 0 .572-.1385.572-.3553 0-.2528-.307-.3432-.6624-.4215-.4997-.1083-1.0959-.2408-1.0959-.8912 0-.4756.4095-.8851 1.1441-.8851.4938 0 .8672.1745 1.1321.4095l-.265.4455c-.1745-.1987-.4998-.3492-.861-.3492-.3313 0-.542.1204-.542.3251 0 .2228.289.301.6323.3794.5058.1084 1.126.253 1.126.9394zm3.3115-.6263c0 .8371-.566 1.5295-1.4994 1.5295-.9214 0-1.4934-.6924-1.4934-1.5295 0-.831.572-1.5235 1.4934-1.5235.9334 0 1.4994.6926 1.4994 1.5235zm-.6564 0c0-.5118-.3011-.9634-.843-.9634-.536 0-.837.4516-.837.9634 0 .5179.301.9695.837.9695.5419 0 .843-.4516.843-.9695zm2.8117-1.5234c-.4577 0-.831.2408-1.0236.4696v-.3974h-.6323v2.9085H6.9v-2.0294c.1445-.1986.4215-.3913.7467-.3913.3553 0 .584.1505.584.6021v1.8186h.6323v-2.0474c0-.5962-.313-.9333-.9394-.9333zm4.0744 1.0537v1.927h-.6323v-.3132c-.2168.247-.554.3855-.9393.3855-.4757 0-1.0117-.3192-1.0117-.9635 0-.6685.536-.9454 1.0117-.9454.3913 0 .7286.1264.9393.3733v-.4336c0-.3371-.2769-.5419-.6804-.5419-.3251 0-.6082.1204-.861.3673l-.259-.4396c.3372-.3192.7587-.4697 1.2224-.4697.6443 0 1.2103.271 1.2103 1.0538zm-.6323.825c-.1444-.1987-.4154-.3011-.6924-.3011-.3553 0-.6203.2048-.6203.524 0 .313.265.5178.6203.5178.277 0 .548-.1024.6924-.3011v-.4395zm2.487.6142c-.1806 0-.277-.1445-.277-.3432V19.076h.5902v-.554h-.5902v-.7949h-.6322v.7949h-.4817v.554h.4817v1.68c0 .4817.259.7468.7467.7468.295 0 .4817-.0783.5961-.1867l-.1505-.4757c-.0482.0541-.1626.1023-.283.1023zm2.1175-.2409-.8491-2.1798h-.6744l1.1923 2.9446-.1445.3313c-.0843.1926-.2169.2528-.4155.2528-.0722 0-.1746-.018-.241-.0481l-.0962.566c.0903.0241.265.0422.3552.0422.4517-.006.801-.1626.9997-.6564l1.403-3.4324h-.6804l-.849 2.1798zm4.6887-.7286c0 .9575-.536 1.5295-1.2887 1.5295-.3674 0-.6986-.1626-.9334-.4757v1.5115h-.6323V18.522h.6323v.3974c.2168-.289.554-.4697.9334-.4697.7527 0 1.2887.566 1.2887 1.5235zm-.6565 0c0-.56-.3191-.9634-.819-.9634-.295 0-.608.1746-.7466.3913v1.1502c.1385.2108.4516.3914.7467.3914.4998 0 .819-.4034.819-.9695zM24 20.184h-2.2462c.0483.4396.3794.8009.9274.8009.283 0 .6203-.1144.825-.3192l.289.4155c-.289.277-.7165.4215-1.1802.4215-.8732 0-1.5234-.6081-1.5234-1.5295 0-.843.6141-1.5234 1.4752-1.5234.8732 0 1.4332.6684 1.4332 1.5836v.1506zm-.6142-.4457c-.012-.3432-.247-.7707-.819-.7707-.542 0-.7888.4155-.819.7707h1.638zm-5.4338-8.0399L12 15.1348l-5.952-3.4364V4.8256L12 1.3892l5.952 3.4364v6.8728zm-1.7072-5.8871L12 3.3607 7.7553 5.8113v4.9014L12 13.1635l4.2448-2.4506V5.8112z" }) + ] + } + ); +}); + +exports.default = SiSonatype; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.d.ts new file mode 100644 index 000000000..3178b0600 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1B1C30"; +declare const SiSonatype: IconType; +export { SiSonatype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.mjs new file mode 100644 index 000000000..c3b109043 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonatype.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1B1C30"; +const SiSonatype = React.forwardRef(function SiSonatype2({ title = "Sonatype", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.4568 20.5995c0 .5118-.4275.9032-1.2103.9032-.4938 0-.9454-.1565-1.2465-.4516l.289-.4577c.2048.2109.6082.4095.9876.4095.3794 0 .572-.1385.572-.3553 0-.2528-.307-.3432-.6624-.4215-.4997-.1083-1.0959-.2408-1.0959-.8912 0-.4756.4095-.8851 1.1441-.8851.4938 0 .8672.1745 1.1321.4095l-.265.4455c-.1745-.1987-.4998-.3492-.861-.3492-.3313 0-.542.1204-.542.3251 0 .2228.289.301.6323.3794.5058.1084 1.126.253 1.126.9394zm3.3115-.6263c0 .8371-.566 1.5295-1.4994 1.5295-.9214 0-1.4934-.6924-1.4934-1.5295 0-.831.572-1.5235 1.4934-1.5235.9334 0 1.4994.6926 1.4994 1.5235zm-.6564 0c0-.5118-.3011-.9634-.843-.9634-.536 0-.837.4516-.837.9634 0 .5179.301.9695.837.9695.5419 0 .843-.4516.843-.9695zm2.8117-1.5234c-.4577 0-.831.2408-1.0236.4696v-.3974h-.6323v2.9085H6.9v-2.0294c.1445-.1986.4215-.3913.7467-.3913.3553 0 .584.1505.584.6021v1.8186h.6323v-2.0474c0-.5962-.313-.9333-.9394-.9333zm4.0744 1.0537v1.927h-.6323v-.3132c-.2168.247-.554.3855-.9393.3855-.4757 0-1.0117-.3192-1.0117-.9635 0-.6685.536-.9454 1.0117-.9454.3913 0 .7286.1264.9393.3733v-.4336c0-.3371-.2769-.5419-.6804-.5419-.3251 0-.6082.1204-.861.3673l-.259-.4396c.3372-.3192.7587-.4697 1.2224-.4697.6443 0 1.2103.271 1.2103 1.0538zm-.6323.825c-.1444-.1987-.4154-.3011-.6924-.3011-.3553 0-.6203.2048-.6203.524 0 .313.265.5178.6203.5178.277 0 .548-.1024.6924-.3011v-.4395zm2.487.6142c-.1806 0-.277-.1445-.277-.3432V19.076h.5902v-.554h-.5902v-.7949h-.6322v.7949h-.4817v.554h.4817v1.68c0 .4817.259.7468.7467.7468.295 0 .4817-.0783.5961-.1867l-.1505-.4757c-.0482.0541-.1626.1023-.283.1023zm2.1175-.2409-.8491-2.1798h-.6744l1.1923 2.9446-.1445.3313c-.0843.1926-.2169.2528-.4155.2528-.0722 0-.1746-.018-.241-.0481l-.0962.566c.0903.0241.265.0422.3552.0422.4517-.006.801-.1626.9997-.6564l1.403-3.4324h-.6804l-.849 2.1798zm4.6887-.7286c0 .9575-.536 1.5295-1.2887 1.5295-.3674 0-.6986-.1626-.9334-.4757v1.5115h-.6323V18.522h.6323v.3974c.2168-.289.554-.4697.9334-.4697.7527 0 1.2887.566 1.2887 1.5235zm-.6565 0c0-.56-.3191-.9634-.819-.9634-.295 0-.608.1746-.7466.3913v1.1502c.1385.2108.4516.3914.7467.3914.4998 0 .819-.4034.819-.9695zM24 20.184h-2.2462c.0483.4396.3794.8009.9274.8009.283 0 .6203-.1144.825-.3192l.289.4155c-.289.277-.7165.4215-1.1802.4215-.8732 0-1.5234-.6081-1.5234-1.5295 0-.843.6141-1.5234 1.4752-1.5234.8732 0 1.4332.6684 1.4332 1.5836v.1506zm-.6142-.4457c-.012-.3432-.247-.7707-.819-.7707-.542 0-.7888.4155-.819.7707h1.638zm-5.4338-8.0399L12 15.1348l-5.952-3.4364V4.8256L12 1.3892l5.952 3.4364v6.8728zm-1.7072-5.8871L12 3.3607 7.7553 5.8113v4.9014L12 13.1635l4.2448-2.4506V5.8112z" }) + ] + } + ); +}); + +export { SiSonatype as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.cjs new file mode 100644 index 000000000..3826292d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F80046"; +const SiSongkick = React__namespace.forwardRef(function SiSongkick2({ title = "Songkick", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.55 18.779c-1.855 0-3.372-.339-4.598-1.602l1.92-1.908c.63.631 1.74.853 2.715.853 1.186 0 1.739-.391 1.739-1.089 0-.291-.06-.529-.239-.717-.15-.154-.404-.273-.795-.324l-1.455-.205c-1.064-.152-1.891-.51-2.43-1.072-.555-.578-.84-1.395-.84-2.434C2.536 8.066 4.2 6.45 6.96 6.45c1.74 0 3.048.407 4.086 1.448L9.171 9.77c-.765-.766-1.77-.715-2.295-.715-1.039 0-1.465.597-1.465 1.125 0 .152.051.375.24.561.15.153.404.307.832.359l1.467.203c1.09.153 1.875.495 2.385 1.005.645.63.9 1.53.9 2.655 0 2.47-2.127 3.819-4.68 3.819l-.005-.003zM20.813 2.651C19.178 1.432 17.37.612 15.089.237v10.875l3.261-4.539h3.565l-4.095 5.72s.944 1.51 1.515 2.405c.586.899 1.139 1.14 1.965 1.14h.57v2.806h-.872c-1.812 0-2.9-.33-3.72-1.575-.504-.811-2.175-3.436-2.175-3.436v4.995H12.12V-.001H12c-3.852 0-6.509.931-8.811 2.652C-.132 5.137.001 8.451.001 11.997c0 3.547-.133 6.867 3.188 9.352C5.491 23.074 8.148 24 12 24s6.51-.927 8.812-2.651C24.131 18.865 24 15.544 24 11.997c0-3.546.132-6.859-3.188-9.346h.001z" }) + ] + } + ); +}); + +exports.default = SiSongkick; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.d.ts new file mode 100644 index 000000000..b8f9ee9ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F80046"; +declare const SiSongkick: IconType; +export { SiSongkick as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.mjs new file mode 100644 index 000000000..3b59735c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSongkick.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F80046"; +const SiSongkick = React.forwardRef(function SiSongkick2({ title = "Songkick", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.55 18.779c-1.855 0-3.372-.339-4.598-1.602l1.92-1.908c.63.631 1.74.853 2.715.853 1.186 0 1.739-.391 1.739-1.089 0-.291-.06-.529-.239-.717-.15-.154-.404-.273-.795-.324l-1.455-.205c-1.064-.152-1.891-.51-2.43-1.072-.555-.578-.84-1.395-.84-2.434C2.536 8.066 4.2 6.45 6.96 6.45c1.74 0 3.048.407 4.086 1.448L9.171 9.77c-.765-.766-1.77-.715-2.295-.715-1.039 0-1.465.597-1.465 1.125 0 .152.051.375.24.561.15.153.404.307.832.359l1.467.203c1.09.153 1.875.495 2.385 1.005.645.63.9 1.53.9 2.655 0 2.47-2.127 3.819-4.68 3.819l-.005-.003zM20.813 2.651C19.178 1.432 17.37.612 15.089.237v10.875l3.261-4.539h3.565l-4.095 5.72s.944 1.51 1.515 2.405c.586.899 1.139 1.14 1.965 1.14h.57v2.806h-.872c-1.812 0-2.9-.33-3.72-1.575-.504-.811-2.175-3.436-2.175-3.436v4.995H12.12V-.001H12c-3.852 0-6.509.931-8.811 2.652C-.132 5.137.001 8.451.001 11.997c0 3.547-.133 6.867 3.188 9.352C5.491 23.074 8.148 24 12 24s6.51-.927 8.812-2.651C24.131 18.865 24 15.544 24 11.997c0-3.546.132-6.859-3.188-9.346h.001z" }) + ] + } + ); +}); + +export { SiSongkick as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.cjs new file mode 100644 index 000000000..a04ec82df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC494A"; +const SiSongoda = React__namespace.forwardRef(function SiSongoda2({ title = "Songoda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.23 4.917c-1.414-.156-6.227-.945-10.604-4.688a.968.968 0 0 0-1.251 0C6.997 3.967 2.185 4.76.77 4.917a.435.435 0 0 0-.385.463c.29 3.924 1.918 14.211 10.998 18.482.39.184.844.184 1.234 0 9.079-4.27 10.708-14.557 10.998-18.482a.435.435 0 0 0-.385-.463zm-1.704 2.016c-.581 4.255-2.54 11.442-9.126 14.896a.87.87 0 0 1-.807 0C5.006 18.373 3.048 11.19 2.47 6.935a.365.365 0 0 1 .285-.404 22.733 22.733 0 0 0 2.208-.596v3.38c0 .489.402.89.89.89.489 0 .89-.401.89-.89V5.279a22.335 22.335 0 0 0 4.989-2.87.44.44 0 0 1 .534 0c3.338 2.556 6.805 3.656 8.975 4.12.186.04.31.217.285.405zm-5.831 7.812c0 .923-.347 1.671-1.04 2.246-.687.574-1.572.86-2.654.86-1.362 0-2.407-.37-3.135-1.114-.374-.385-.56-.739-.56-1.063a.771.771 0 0 1 .28-.584c.185-.175.43-.262.733-.262.355 0 .655.167.9.501.4.55.971.824 1.71.824.449 0 .81-.099 1.083-.297.344-.251.515-.632.515-1.14 0-.545-.25-1.021-.75-1.43-.361-.294-.891-.606-1.59-.936-.855-.404-1.501-.86-1.938-1.365-.448-.514-.672-1.158-.672-1.93 0-1.003.398-1.77 1.196-2.298.599-.404 1.352-.606 2.26-.606.995 0 1.813.267 2.454.801.407.34.611.686.611 1.04 0 .27-.137.492-.41.667a1.131 1.131 0 0 1-.627.188c-.36 0-.623-.124-.785-.374-.291-.454-.71-.681-1.258-.681-.588 0-.978.24-1.17.718a1.99 1.99 0 0 0-.14.741c-.005.3.108.591.315.809.297.329.83.683 1.598 1.062.92.454 1.593.874 2.018 1.258.704.654 1.056 1.442 1.056 2.365z" }) + ] + } + ); +}); + +exports.default = SiSongoda; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.d.ts new file mode 100644 index 000000000..55c9b8fad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC494A"; +declare const SiSongoda: IconType; +export { SiSongoda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.mjs new file mode 100644 index 000000000..000c19d2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSongoda.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC494A"; +const SiSongoda = React.forwardRef(function SiSongoda2({ title = "Songoda", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.23 4.917c-1.414-.156-6.227-.945-10.604-4.688a.968.968 0 0 0-1.251 0C6.997 3.967 2.185 4.76.77 4.917a.435.435 0 0 0-.385.463c.29 3.924 1.918 14.211 10.998 18.482.39.184.844.184 1.234 0 9.079-4.27 10.708-14.557 10.998-18.482a.435.435 0 0 0-.385-.463zm-1.704 2.016c-.581 4.255-2.54 11.442-9.126 14.896a.87.87 0 0 1-.807 0C5.006 18.373 3.048 11.19 2.47 6.935a.365.365 0 0 1 .285-.404 22.733 22.733 0 0 0 2.208-.596v3.38c0 .489.402.89.89.89.489 0 .89-.401.89-.89V5.279a22.335 22.335 0 0 0 4.989-2.87.44.44 0 0 1 .534 0c3.338 2.556 6.805 3.656 8.975 4.12.186.04.31.217.285.405zm-5.831 7.812c0 .923-.347 1.671-1.04 2.246-.687.574-1.572.86-2.654.86-1.362 0-2.407-.37-3.135-1.114-.374-.385-.56-.739-.56-1.063a.771.771 0 0 1 .28-.584c.185-.175.43-.262.733-.262.355 0 .655.167.9.501.4.55.971.824 1.71.824.449 0 .81-.099 1.083-.297.344-.251.515-.632.515-1.14 0-.545-.25-1.021-.75-1.43-.361-.294-.891-.606-1.59-.936-.855-.404-1.501-.86-1.938-1.365-.448-.514-.672-1.158-.672-1.93 0-1.003.398-1.77 1.196-2.298.599-.404 1.352-.606 2.26-.606.995 0 1.813.267 2.454.801.407.34.611.686.611 1.04 0 .27-.137.492-.41.667a1.131 1.131 0 0 1-.627.188c-.36 0-.623-.124-.785-.374-.291-.454-.71-.681-1.258-.681-.588 0-.978.24-1.17.718a1.99 1.99 0 0 0-.14.741c-.005.3.108.591.315.809.297.329.83.683 1.598 1.062.92.454 1.593.874 2.018 1.258.704.654 1.056 1.442 1.056 2.365z" }) + ] + } + ); +}); + +export { SiSongoda as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.cjs new file mode 100644 index 000000000..797e01c37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF791A"; +const SiSonicwall = React__namespace.forwardRef(function SiSonicwall2({ title = "SonicWall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.678 10.007a.31.31 0 0 0 .016.62.308.308 0 0 0 .306-.308.31.31 0 0 0-.302-.312.31.31 0 0 0-.02 0zm.016.043a.27.27 0 0 1 .27.269.27.27 0 1 1-.27-.27zm-9.503.053l-.614 1.863-.013.04-.013-.04-.624-1.855h-.619l.986 2.74h.508l.618-1.788.013-.037.013.037.619 1.787h.507l.986-2.74h-.603l-.622 1.856-.015.04-.013-.04-.613-1.863zm-5.48.006v2.743h.258V10.11zm-7.823 0a1.315 1.315 0 0 0-.038.002c-.481 0-.85.306-.85.712 0 .41.26.63.898.759.6.12.715.279.715.526 0 .288-.26.49-.631.49a1.228 1.228 0 0 1-.923-.37l-.02-.02v.313a1.477 1.477 0 0 0 .923.31c.524 0 .89-.302.89-.738.005-.393-.257-.614-.872-.738-.619-.127-.739-.288-.739-.541 0-.27.255-.464.608-.464a1.091 1.091 0 0 1 .759.287l.022.018v-.318a1.315 1.315 0 0 0-.742-.227zm4.92.002v2.747h.284v-2.081l1.813 2.08h.063v-2.746h-.272v2.106l-1.828-2.106zm11.672 0l-.642 1.721c-.637.117-1.051.393-.848.943.278.76 1.549 1.218 1.549 1.218s-1.285-.801-.613-1.34c.296-.238.819-.414 1.313-.54l.278.719h.541l-.322-.833c.403-.08.708-.122.708-.122s-.36-.043-.785-.077l-.653-1.69zm2.136 0v2.721h1.554v-.49h-1.034v-2.231zm2.106 0v2.721h1.555v-.49H22.24v-2.231zm-17.953.008a1.344 1.344 0 0 0-.042 0 1.327 1.327 0 0 0-.67.176 1.313 1.313 0 0 0-.491.499 1.377 1.377 0 0 0-.185.69 1.292 1.292 0 0 0 .397.953 1.318 1.318 0 0 0 .971.395 1.351 1.351 0 0 0 1.359-1.356 1.307 1.307 0 0 0-.397-.965 1.344 1.344 0 0 0-.942-.392zm7.3.002a1.381 1.381 0 0 0-.96.392 1.292 1.292 0 0 0-.4.96 1.377 1.377 0 0 0 .33.923 1.353 1.353 0 0 0 1.077.454 1.516 1.516 0 0 0 .65-.136 1.477 1.477 0 0 0 .265-.185v-.338a1.16 1.16 0 0 1-.899.412 1.134 1.134 0 0 1-.823-.325 1.067 1.067 0 0 1-.325-.794 1.097 1.097 0 0 1 .146-.565 1.073 1.073 0 0 1 .41-.402 1.156 1.156 0 0 1 .576-.15 1.196 1.196 0 0 1 .515.12 1.132 1.132 0 0 1 .4.314v-.35a1.477 1.477 0 0 0-.26-.185 1.477 1.477 0 0 0-.66-.145 1.381 1.381 0 0 0-.041 0zm12.661.009a.11.11 0 0 0-.012 0h-.162v.37h.094v-.142h.035l.085.142.11-.002-.103-.153a.103.103 0 0 0 .068-.102.11.11 0 0 0-.115-.113zm-.026.063a.048.048 0 0 1 .046.054c0 .032-.017.048-.054.048h-.046v-.101h.046a.048.048 0 0 1 .008 0zm-19.97.178a1.108 1.108 0 0 1 .006 0 1.093 1.093 0 0 1 .548.153 1.075 1.075 0 0 1 .405.399 1.097 1.097 0 0 1 .143.553 1.12 1.12 0 0 1-.143.564 1.047 1.047 0 0 1-.4.399 1.108 1.108 0 0 1-.553.145 1.087 1.087 0 0 1-1.091-1.095 1.119 1.119 0 0 1 .144-.564 1.108 1.108 0 0 1 .94-.554zm14.015.465l.368.931c-.032 0-.065-.003-.097-.004a7.414 7.414 0 0 0-.622.01h-.018z" }) + ] + } + ); +}); + +exports.default = SiSonicwall; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.d.ts new file mode 100644 index 000000000..d43a22de0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF791A"; +declare const SiSonicwall: IconType; +export { SiSonicwall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.mjs new file mode 100644 index 000000000..1c3ffca10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonicwall.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF791A"; +const SiSonicwall = React.forwardRef(function SiSonicwall2({ title = "SonicWall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.678 10.007a.31.31 0 0 0 .016.62.308.308 0 0 0 .306-.308.31.31 0 0 0-.302-.312.31.31 0 0 0-.02 0zm.016.043a.27.27 0 0 1 .27.269.27.27 0 1 1-.27-.27zm-9.503.053l-.614 1.863-.013.04-.013-.04-.624-1.855h-.619l.986 2.74h.508l.618-1.788.013-.037.013.037.619 1.787h.507l.986-2.74h-.603l-.622 1.856-.015.04-.013-.04-.613-1.863zm-5.48.006v2.743h.258V10.11zm-7.823 0a1.315 1.315 0 0 0-.038.002c-.481 0-.85.306-.85.712 0 .41.26.63.898.759.6.12.715.279.715.526 0 .288-.26.49-.631.49a1.228 1.228 0 0 1-.923-.37l-.02-.02v.313a1.477 1.477 0 0 0 .923.31c.524 0 .89-.302.89-.738.005-.393-.257-.614-.872-.738-.619-.127-.739-.288-.739-.541 0-.27.255-.464.608-.464a1.091 1.091 0 0 1 .759.287l.022.018v-.318a1.315 1.315 0 0 0-.742-.227zm4.92.002v2.747h.284v-2.081l1.813 2.08h.063v-2.746h-.272v2.106l-1.828-2.106zm11.672 0l-.642 1.721c-.637.117-1.051.393-.848.943.278.76 1.549 1.218 1.549 1.218s-1.285-.801-.613-1.34c.296-.238.819-.414 1.313-.54l.278.719h.541l-.322-.833c.403-.08.708-.122.708-.122s-.36-.043-.785-.077l-.653-1.69zm2.136 0v2.721h1.554v-.49h-1.034v-2.231zm2.106 0v2.721h1.555v-.49H22.24v-2.231zm-17.953.008a1.344 1.344 0 0 0-.042 0 1.327 1.327 0 0 0-.67.176 1.313 1.313 0 0 0-.491.499 1.377 1.377 0 0 0-.185.69 1.292 1.292 0 0 0 .397.953 1.318 1.318 0 0 0 .971.395 1.351 1.351 0 0 0 1.359-1.356 1.307 1.307 0 0 0-.397-.965 1.344 1.344 0 0 0-.942-.392zm7.3.002a1.381 1.381 0 0 0-.96.392 1.292 1.292 0 0 0-.4.96 1.377 1.377 0 0 0 .33.923 1.353 1.353 0 0 0 1.077.454 1.516 1.516 0 0 0 .65-.136 1.477 1.477 0 0 0 .265-.185v-.338a1.16 1.16 0 0 1-.899.412 1.134 1.134 0 0 1-.823-.325 1.067 1.067 0 0 1-.325-.794 1.097 1.097 0 0 1 .146-.565 1.073 1.073 0 0 1 .41-.402 1.156 1.156 0 0 1 .576-.15 1.196 1.196 0 0 1 .515.12 1.132 1.132 0 0 1 .4.314v-.35a1.477 1.477 0 0 0-.26-.185 1.477 1.477 0 0 0-.66-.145 1.381 1.381 0 0 0-.041 0zm12.661.009a.11.11 0 0 0-.012 0h-.162v.37h.094v-.142h.035l.085.142.11-.002-.103-.153a.103.103 0 0 0 .068-.102.11.11 0 0 0-.115-.113zm-.026.063a.048.048 0 0 1 .046.054c0 .032-.017.048-.054.048h-.046v-.101h.046a.048.048 0 0 1 .008 0zm-19.97.178a1.108 1.108 0 0 1 .006 0 1.093 1.093 0 0 1 .548.153 1.075 1.075 0 0 1 .405.399 1.097 1.097 0 0 1 .143.553 1.12 1.12 0 0 1-.143.564 1.047 1.047 0 0 1-.4.399 1.108 1.108 0 0 1-.553.145 1.087 1.087 0 0 1-1.091-1.095 1.119 1.119 0 0 1 .144-.564 1.108 1.108 0 0 1 .94-.554zm14.015.465l.368.931c-.032 0-.065-.003-.097-.004a7.414 7.414 0 0 0-.622.01h-.018z" }) + ] + } + ); +}); + +export { SiSonicwall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.cjs new file mode 100644 index 000000000..55ffe68ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSonos = React__namespace.forwardRef(function SiSonos2({ title = "Sonos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.988 12.36l-2.813-2.634v4.429h.837V11.7l2.813 2.633V9.905h-.837zM6.464 9.665A2.3 2.3 0 0 0 4.13 12c0 1.257 1.077 2.334 2.334 2.334A2.3 2.3 0 0 0 8.798 12a2.3 2.3 0 0 0-2.334-2.334m0 3.83A1.482 1.482 0 0 1 4.968 12c0-.838.658-1.496 1.496-1.496S7.96 11.162 7.96 12s-.658 1.496-1.496 1.496M2.694 12c-.24-.18-.54-.3-.958-.419-.838-.24-.838-.479-.838-.598 0-.24.299-.48.718-.48.36 0 .658.18.778.24l.06.06.658-.479-.06-.06s-.538-.598-1.436-.598c-.419 0-.838.12-1.137.359-.3.24-.479.598-.479.958s.18.718.479.957c.24.18.538.3.957.42.838.239.838.478.838.598 0 .239-.299.478-.718.478-.359 0-.658-.18-.778-.239l-.06-.06-.658.479.06.06s.538.598 1.436.598c.42 0 .838-.12 1.137-.359.3-.24.48-.598.48-.957 0-.36-.18-.659-.48-.958m14.843-2.334A2.3 2.3 0 0 0 15.202 12a2.337 2.337 0 0 0 2.334 2.334A2.3 2.3 0 0 0 19.87 12a2.337 2.337 0 0 0-2.334-2.334m0 3.83A1.482 1.482 0 0 1 16.04 12c0-.838.658-1.496 1.496-1.496s1.496.658 1.496 1.496-.718 1.496-1.496 1.496m3.77-1.556c.24.18.54.3.958.42.838.239.838.478.838.598 0 .239-.299.478-.718.478-.36 0-.658-.18-.778-.239h-.06l-.658.479.06.06s.538.598 1.436.598c.419 0 .838-.12 1.137-.359s.479-.598.479-.958-.18-.718-.479-.957c-.24-.18-.538-.3-.957-.42-.838-.239-.838-.478-.838-.598 0-.239.299-.478.718-.478.359 0 .658.18.778.239l.06.06.658-.479-.06-.06s-.538-.598-1.436-.598c-.42 0-.838.12-1.137.359-.3.24-.48.598-.48.957-.059.36.12.659.48.898" }) + ] + } + ); +}); + +exports.default = SiSonos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.d.ts new file mode 100644 index 000000000..e6677a881 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSonos: IconType; +export { SiSonos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.mjs new file mode 100644 index 000000000..a6e12a178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSonos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSonos = React.forwardRef(function SiSonos2({ title = "Sonos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.988 12.36l-2.813-2.634v4.429h.837V11.7l2.813 2.633V9.905h-.837zM6.464 9.665A2.3 2.3 0 0 0 4.13 12c0 1.257 1.077 2.334 2.334 2.334A2.3 2.3 0 0 0 8.798 12a2.3 2.3 0 0 0-2.334-2.334m0 3.83A1.482 1.482 0 0 1 4.968 12c0-.838.658-1.496 1.496-1.496S7.96 11.162 7.96 12s-.658 1.496-1.496 1.496M2.694 12c-.24-.18-.54-.3-.958-.419-.838-.24-.838-.479-.838-.598 0-.24.299-.48.718-.48.36 0 .658.18.778.24l.06.06.658-.479-.06-.06s-.538-.598-1.436-.598c-.419 0-.838.12-1.137.359-.3.24-.479.598-.479.958s.18.718.479.957c.24.18.538.3.957.42.838.239.838.478.838.598 0 .239-.299.478-.718.478-.359 0-.658-.18-.778-.239l-.06-.06-.658.479.06.06s.538.598 1.436.598c.42 0 .838-.12 1.137-.359.3-.24.48-.598.48-.957 0-.36-.18-.659-.48-.958m14.843-2.334A2.3 2.3 0 0 0 15.202 12a2.337 2.337 0 0 0 2.334 2.334A2.3 2.3 0 0 0 19.87 12a2.337 2.337 0 0 0-2.334-2.334m0 3.83A1.482 1.482 0 0 1 16.04 12c0-.838.658-1.496 1.496-1.496s1.496.658 1.496 1.496-.718 1.496-1.496 1.496m3.77-1.556c.24.18.54.3.958.42.838.239.838.478.838.598 0 .239-.299.478-.718.478-.36 0-.658-.18-.778-.239h-.06l-.658.479.06.06s.538.598 1.436.598c.419 0 .838-.12 1.137-.359s.479-.598.479-.958-.18-.718-.479-.957c-.24-.18-.538-.3-.957-.42-.838-.239-.838-.478-.838-.598 0-.239.299-.478.718-.478.359 0 .658.18.778.239l.06.06.658-.479-.06-.06s-.538-.598-1.436-.598c-.42 0-.838.12-1.137.359-.3.24-.48.598-.48.957-.059.36.12.659.48.898" }) + ] + } + ); +}); + +export { SiSonos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSony.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSony.cjs new file mode 100644 index 000000000..03d534117 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSony.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiSony = React__namespace.forwardRef(function SiSony2({ title = "Sony", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5505 9.8881c.921 0 1.6574.2303 2.2209.7423.3848.3485.5999.8454.5939 1.3665a1.9081 1.9081 0 0 1-.5939 1.3726c-.5272.4848-1.3483.7423-2.221.7423-.8725 0-1.6785-.2575-2.2148-.7423-.3908-.3485-.609-.8484-.603-1.3726 0-.518.2182-1.015.603-1.3665.5-.4545 1.3847-.7423 2.2149-.7423zm.003 3.6692c.4606 0 .8878-.1606 1.1878-.4575.2999-.2999.4332-.6605.4332-1.1029 0-.4242-.1484-.821-.4333-1.1029-.2938-.2908-.7332-.4545-1.1877-.4545s-.8938.1637-1.1907.4545c-.2848.2818-.4333.6787-.4333 1.103-.006.409.1485.806.4333 1.1029.2969.2939.7332.4575 1.1907.4575zm-4.8418-1.9665c.1605.0424.315.094.4666.1636a1.352 1.352 0 0 1 .3787.2576c.197.206.309.4817.306.7665a.9643.9643 0 0 1-.3787.7788 2.0662 2.0662 0 0 1-.709.3485 3.7231 3.7231 0 0 1-1.1938.1697c-.352 0-.5467-.0406-.8138-.0962l-.077-.016c-.294-.0666-.5817-.1575-.8575-.2787a.0695.0695 0 0 0-.0424-.0121c-.0454 0-.0818.0394-.0818.0848v.203H.1212v-1.4786h.5242a.7559.7559 0 0 0 .1363.418c.2121.2607.4394.3607.6575.4395.3666.1212.7514.1848 1.1362.1969.5526 0 .8756-.134.9455-.163l.009-.0037.0062-.0023c.0616-.0226.3119-.1143.3119-.3916 0-.2743-.2338-.334-.387-.373l-.022-.0058c-.1708-.046-.562-.0872-.9897-.1323l-.1526-.016c-.4848-.0515-.9696-.1273-1.1968-.1758-.4977-.1097-.6942-.2917-.816-.4045l-.0082-.0076A1.0192 1.0192 0 0 1 0 11.1608c0-.497.3394-.797.7575-.9817.4454-.2.9756-.288 1.4392-.288.8211.0031 1.4877.2697 1.727.394.097.0515.1455-.0121.1455-.0606v-.1484h.5272v1.2876h-.4727a.9056.9056 0 0 0-.2939-.4909 1.289 1.289 0 0 0-.297-.1787c-.3968-.1667-.821-.2515-1.2513-.2455-.4423 0-.8665.085-1.0786.2153-.1333.0818-.2.1848-.2.306 0 .1727.1454.2424.2182.2636.1967.0597.6328.103.972.1369.0736.0073.1426.0142.2036.0206.3272.0334 1.012.1243 1.315.2zm18.1673-.9966v-.4787H24v.4696h-.4757c-.1727 0-.2424.0334-.3727.1788l-1.4271 1.63a.098.098 0 0 0-.0182.0698v.7423a1.106 1.106 0 0 0 .0121.103.1496.1496 0 0 0 .1.0909.9368.9368 0 0 0 .1303.009h.4848v.4698h-2.5724v-.4697h.4606a.9343.9343 0 0 0 .1302-.0091.1627.1627 0 0 0 .1031-.091.5626.5626 0 0 0 .009-.1v-.7422c0-.0242 0-.0242-.0333-.0636a606.7592 606.7592 0 0 0-1.4119-1.6028c-.0758-.0788-.2061-.2061-.406-.2061h-.4576v-.4696h2.5876v.4696h-.3121c-.0697 0-.1182.0697-.0576.1455 0 0 .8696 1.0392.8787 1.0513.0091.0122.0152.0122.0273.003.0121-.009.8938-1.0453.8999-1.0543a.0912.0912 0 0 0-.0182-.1273.1095.1095 0 0 0-.0606-.0182zm-6.284-.0031h.4848c.2212 0 .2606.0848.2636.2909l.0273 1.5664-2.5815-2.324H11.944v.4697h.412c.297 0 .3182.1636.3182.309v2.2138c.0004.1285.0009.295-.1818.295h-.506v.4667h2.1634v-.4697h-.5273c-.212 0-.2211-.097-.2242-.303v-1.8816l2.9724 2.6511h.7575l-.0394-2.9966c.003-.218.0182-.2908.2424-.2908h.4726v-.4697H15.595Z" }) + ] + } + ); +}); + +exports.default = SiSony; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSony.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSony.d.ts new file mode 100644 index 000000000..0ea5e1362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSony.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiSony: IconType; +export { SiSony as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSony.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSony.mjs new file mode 100644 index 000000000..33092456b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSony.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiSony = React.forwardRef(function SiSony2({ title = "Sony", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.5505 9.8881c.921 0 1.6574.2303 2.2209.7423.3848.3485.5999.8454.5939 1.3665a1.9081 1.9081 0 0 1-.5939 1.3726c-.5272.4848-1.3483.7423-2.221.7423-.8725 0-1.6785-.2575-2.2148-.7423-.3908-.3485-.609-.8484-.603-1.3726 0-.518.2182-1.015.603-1.3665.5-.4545 1.3847-.7423 2.2149-.7423zm.003 3.6692c.4606 0 .8878-.1606 1.1878-.4575.2999-.2999.4332-.6605.4332-1.1029 0-.4242-.1484-.821-.4333-1.1029-.2938-.2908-.7332-.4545-1.1877-.4545s-.8938.1637-1.1907.4545c-.2848.2818-.4333.6787-.4333 1.103-.006.409.1485.806.4333 1.1029.2969.2939.7332.4575 1.1907.4575zm-4.8418-1.9665c.1605.0424.315.094.4666.1636a1.352 1.352 0 0 1 .3787.2576c.197.206.309.4817.306.7665a.9643.9643 0 0 1-.3787.7788 2.0662 2.0662 0 0 1-.709.3485 3.7231 3.7231 0 0 1-1.1938.1697c-.352 0-.5467-.0406-.8138-.0962l-.077-.016c-.294-.0666-.5817-.1575-.8575-.2787a.0695.0695 0 0 0-.0424-.0121c-.0454 0-.0818.0394-.0818.0848v.203H.1212v-1.4786h.5242a.7559.7559 0 0 0 .1363.418c.2121.2607.4394.3607.6575.4395.3666.1212.7514.1848 1.1362.1969.5526 0 .8756-.134.9455-.163l.009-.0037.0062-.0023c.0616-.0226.3119-.1143.3119-.3916 0-.2743-.2338-.334-.387-.373l-.022-.0058c-.1708-.046-.562-.0872-.9897-.1323l-.1526-.016c-.4848-.0515-.9696-.1273-1.1968-.1758-.4977-.1097-.6942-.2917-.816-.4045l-.0082-.0076A1.0192 1.0192 0 0 1 0 11.1608c0-.497.3394-.797.7575-.9817.4454-.2.9756-.288 1.4392-.288.8211.0031 1.4877.2697 1.727.394.097.0515.1455-.0121.1455-.0606v-.1484h.5272v1.2876h-.4727a.9056.9056 0 0 0-.2939-.4909 1.289 1.289 0 0 0-.297-.1787c-.3968-.1667-.821-.2515-1.2513-.2455-.4423 0-.8665.085-1.0786.2153-.1333.0818-.2.1848-.2.306 0 .1727.1454.2424.2182.2636.1967.0597.6328.103.972.1369.0736.0073.1426.0142.2036.0206.3272.0334 1.012.1243 1.315.2zm18.1673-.9966v-.4787H24v.4696h-.4757c-.1727 0-.2424.0334-.3727.1788l-1.4271 1.63a.098.098 0 0 0-.0182.0698v.7423a1.106 1.106 0 0 0 .0121.103.1496.1496 0 0 0 .1.0909.9368.9368 0 0 0 .1303.009h.4848v.4698h-2.5724v-.4697h.4606a.9343.9343 0 0 0 .1302-.0091.1627.1627 0 0 0 .1031-.091.5626.5626 0 0 0 .009-.1v-.7422c0-.0242 0-.0242-.0333-.0636a606.7592 606.7592 0 0 0-1.4119-1.6028c-.0758-.0788-.2061-.2061-.406-.2061h-.4576v-.4696h2.5876v.4696h-.3121c-.0697 0-.1182.0697-.0576.1455 0 0 .8696 1.0392.8787 1.0513.0091.0122.0152.0122.0273.003.0121-.009.8938-1.0453.8999-1.0543a.0912.0912 0 0 0-.0182-.1273.1095.1095 0 0 0-.0606-.0182zm-6.284-.0031h.4848c.2212 0 .2606.0848.2636.2909l.0273 1.5664-2.5815-2.324H11.944v.4697h.412c.297 0 .3182.1636.3182.309v2.2138c.0004.1285.0009.295-.1818.295h-.506v.4667h2.1634v-.4697h-.5273c-.212 0-.2211-.097-.2242-.303v-1.8816l2.9724 2.6511h.7575l-.0394-2.9966c.003-.218.0182-.2908.2424-.2908h.4726v-.4697H15.595Z" }) + ] + } + ); +}); + +export { SiSony as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.cjs new file mode 100644 index 000000000..3794483ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D52B1E"; +const SiSoriana = React__namespace.forwardRef(function SiSoriana2({ title = "Soriana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.994 3.2c-1.16 0-2.772.494-3.94 2.104-.223.314-.39.664-.494 1.034a4.27 4.27 0 0 0 .678 3.692c.6.812 1.368 1.42 2.044 1.96.332.26 1.034.926 1.26 1.208.34.422.596.674.902 1.606.186.564.212 1.308.12 1.73C21.684 14.384 24 11.594 24 8.56c0-3.486-2.498-5.36-5.006-5.36M15.05 14.986c-.886-1.204-1.908-1.936-2.754-2.706-.368-.336-.772-.584-1.07-.88-1.434-1.424-2.102-3.18-1.764-5.34.268-1.692 1.108-2.806 2.124-3.622a7.098 7.098 0 0 0-4.278-1.372C3.274 1.066-.1 4.31.002 8.306c.184 7.22 9.224 13.37 12.948 14.628 1.992-1.02 3.05-2.928 3.05-4.884 0-1.426-.612-2.6-.95-3.064" }) + ] + } + ); +}); + +exports.default = SiSoriana; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.d.ts new file mode 100644 index 000000000..44c8d5bd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D52B1E"; +declare const SiSoriana: IconType; +export { SiSoriana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.mjs new file mode 100644 index 000000000..aefb1c9de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoriana.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D52B1E"; +const SiSoriana = React.forwardRef(function SiSoriana2({ title = "Soriana", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.994 3.2c-1.16 0-2.772.494-3.94 2.104-.223.314-.39.664-.494 1.034a4.27 4.27 0 0 0 .678 3.692c.6.812 1.368 1.42 2.044 1.96.332.26 1.034.926 1.26 1.208.34.422.596.674.902 1.606.186.564.212 1.308.12 1.73C21.684 14.384 24 11.594 24 8.56c0-3.486-2.498-5.36-5.006-5.36M15.05 14.986c-.886-1.204-1.908-1.936-2.754-2.706-.368-.336-.772-.584-1.07-.88-1.434-1.424-2.102-3.18-1.764-5.34.268-1.692 1.108-2.806 2.124-3.622a7.098 7.098 0 0 0-4.278-1.372C3.274 1.066-.1 4.31.002 8.306c.184 7.22 9.224 13.37 12.948 14.628 1.992-1.02 3.05-2.928 3.05-4.884 0-1.426-.612-2.6-.95-3.064" }) + ] + } + ); +}); + +export { SiSoriana as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.cjs new file mode 100644 index 000000000..d6d2ac627 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C1528"; +const SiSoundcharts = React__namespace.forwardRef(function SiSoundcharts2({ title = "Soundcharts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.038 0h6.052v17.229h-.702v-4.333h-.413v4.333h-.29v-2.521h-.412v2.52h-.29v-4.04h-.413v4.04h-.289V13.98h-.414v3.25h-.33v-2.521h-.371v2.52h-.331v-3.791h-.413v3.792h-.289v-4.333h-.414v4.333h-.701c.02-5.73.02-11.457.02-17.229ZM8.995 7.624h6.01v9.605h-.66v-2.23h-.414v2.23h-.288v-3.5h-.414v3.5h-.289v-3.5h-.413v3.5h-.33v-2.77h-.372v2.77h-.331v-2.77h-.413v2.77h-.289V14.23h-.414v3h-.289v-3.793h-.412v3.793h-.703c.02-2.687.02-6.958.02-9.605zM7.28 12.896h-.414v4.29h-.288v-1.978h-.414v1.98h-.33v-2.772h-.372v2.77h-.33v-4.04h-.414v4.04H4.43v-2.228h-.414v2.229h-.289v-3.25h-.414v3.25h-.289v-3.75h-.412v3.75H1.91V11.54h6.011v5.646h-.66c.02-1.395.02-2.833.02-4.291zm5.969 5.5h.371V24h-.371Zm4.213 0h.33v5.52h-.33zm-7.436 5.396h-.33v-5.398h.33v5.397zm7.064-5.397v5.397h-.33v-5.398h.33zm-4.544 0h.33v5.23h-.33zm6.342 0h.33v5.23h-.33zm-9.894 0h.33v4.897h-.33v-4.898ZM19.92 23.25h-.33v-4.856h.33v4.855zm-9.17-.042h-.33v-4.833h.33zm4.254-.042h-.33v-4.79h.33v4.791zm-3.511-.374h-.372v-4.417h.372zm9.852.208h-.33v-4.625h.33zm-9.191-.208h-.33v-4.417h.33zm3.883-4.397h.331v4.417h-.33Zm-9.852 4.063v-4.082h.371v4.083h-.371Zm11.98-.042v-4.04h.371v4.041h-.371zM4.8 18.396h.33v4.25H4.8v-4.252Zm16.916 0h.372v4h-.372v-4.002ZM6.91 22.415v-4.04h.33v4.041h-.33Zm-1.426-.042v-3.998h.33v4h-.33Zm15.162 0h-.331v-3.998h.33v4zm-16.96-.04h-.33v-3.917h.33zm-.701-.23h-.372v-3.709h.372Zm10.967-3.709h.372v3.625h-.372zm-5.97 3.793h-.33v-3.793h.33zm-6.009-3.794h.33v3.584h-.33zm2.128 0h.33v3.584H4.1z" }) + ] + } + ); +}); + +exports.default = SiSoundcharts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.d.ts new file mode 100644 index 000000000..798aaf4a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C1528"; +declare const SiSoundcharts: IconType; +export { SiSoundcharts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.mjs new file mode 100644 index 000000000..42d366ff6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcharts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C1528"; +const SiSoundcharts = React.forwardRef(function SiSoundcharts2({ title = "Soundcharts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.038 0h6.052v17.229h-.702v-4.333h-.413v4.333h-.29v-2.521h-.412v2.52h-.29v-4.04h-.413v4.04h-.289V13.98h-.414v3.25h-.33v-2.521h-.371v2.52h-.331v-3.791h-.413v3.792h-.289v-4.333h-.414v4.333h-.701c.02-5.73.02-11.457.02-17.229ZM8.995 7.624h6.01v9.605h-.66v-2.23h-.414v2.23h-.288v-3.5h-.414v3.5h-.289v-3.5h-.413v3.5h-.33v-2.77h-.372v2.77h-.331v-2.77h-.413v2.77h-.289V14.23h-.414v3h-.289v-3.793h-.412v3.793h-.703c.02-2.687.02-6.958.02-9.605zM7.28 12.896h-.414v4.29h-.288v-1.978h-.414v1.98h-.33v-2.772h-.372v2.77h-.33v-4.04h-.414v4.04H4.43v-2.228h-.414v2.229h-.289v-3.25h-.414v3.25h-.289v-3.75h-.412v3.75H1.91V11.54h6.011v5.646h-.66c.02-1.395.02-2.833.02-4.291zm5.969 5.5h.371V24h-.371Zm4.213 0h.33v5.52h-.33zm-7.436 5.396h-.33v-5.398h.33v5.397zm7.064-5.397v5.397h-.33v-5.398h.33zm-4.544 0h.33v5.23h-.33zm6.342 0h.33v5.23h-.33zm-9.894 0h.33v4.897h-.33v-4.898ZM19.92 23.25h-.33v-4.856h.33v4.855zm-9.17-.042h-.33v-4.833h.33zm4.254-.042h-.33v-4.79h.33v4.791zm-3.511-.374h-.372v-4.417h.372zm9.852.208h-.33v-4.625h.33zm-9.191-.208h-.33v-4.417h.33zm3.883-4.397h.331v4.417h-.33Zm-9.852 4.063v-4.082h.371v4.083h-.371Zm11.98-.042v-4.04h.371v4.041h-.371zM4.8 18.396h.33v4.25H4.8v-4.252Zm16.916 0h.372v4h-.372v-4.002ZM6.91 22.415v-4.04h.33v4.041h-.33Zm-1.426-.042v-3.998h.33v4h-.33Zm15.162 0h-.331v-3.998h.33v4zm-16.96-.04h-.33v-3.917h.33zm-.701-.23h-.372v-3.709h.372Zm10.967-3.709h.372v3.625h-.372zm-5.97 3.793h-.33v-3.793h.33zm-6.009-3.794h.33v3.584h-.33zm2.128 0h.33v3.584H4.1z" }) + ] + } + ); +}); + +export { SiSoundcharts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.cjs new file mode 100644 index 000000000..d54e86a1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5500"; +const SiSoundcloud = React__namespace.forwardRef(function SiSoundcloud2({ title = "SoundCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.999 14.165c-.052 1.796-1.612 3.169-3.4 3.169h-8.18a.68.68 0 0 1-.675-.683V7.862a.747.747 0 0 1 .452-.724s.75-.513 2.333-.513a5.364 5.364 0 0 1 2.763.755 5.433 5.433 0 0 1 2.57 3.54c.282-.08.574-.121.868-.12.884 0 1.73.358 2.347.992s.948 1.49.922 2.373ZM10.721 8.421c.247 2.98.427 5.697 0 8.672a.264.264 0 0 1-.53 0c-.395-2.946-.22-5.718 0-8.672a.264.264 0 0 1 .53 0ZM9.072 9.448c.285 2.659.37 4.986-.006 7.655a.277.277 0 0 1-.55 0c-.331-2.63-.256-5.02 0-7.655a.277.277 0 0 1 .556 0Zm-1.663-.257c.27 2.726.39 5.171 0 7.904a.266.266 0 0 1-.532 0c-.38-2.69-.257-5.21 0-7.904a.266.266 0 0 1 .532 0Zm-1.647.77a26.108 26.108 0 0 1-.008 7.147.272.272 0 0 1-.542 0 27.955 27.955 0 0 1 0-7.147.275.275 0 0 1 .55 0Zm-1.67 1.769c.421 1.865.228 3.5-.029 5.388a.257.257 0 0 1-.514 0c-.21-1.858-.398-3.549 0-5.389a.272.272 0 0 1 .543 0Zm-1.655-.273c.388 1.897.26 3.508-.01 5.412-.026.28-.514.283-.54 0-.244-1.878-.347-3.54-.01-5.412a.283.283 0 0 1 .56 0Zm-1.668.911c.4 1.268.257 2.292-.026 3.572a.257.257 0 0 1-.514 0c-.241-1.262-.354-2.312-.023-3.572a.283.283 0 0 1 .563 0Z" }) + ] + } + ); +}); + +exports.default = SiSoundcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.d.ts new file mode 100644 index 000000000..9759eff48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5500"; +declare const SiSoundcloud: IconType; +export { SiSoundcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.mjs new file mode 100644 index 000000000..ff96fe78c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSoundcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5500"; +const SiSoundcloud = React.forwardRef(function SiSoundcloud2({ title = "SoundCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.999 14.165c-.052 1.796-1.612 3.169-3.4 3.169h-8.18a.68.68 0 0 1-.675-.683V7.862a.747.747 0 0 1 .452-.724s.75-.513 2.333-.513a5.364 5.364 0 0 1 2.763.755 5.433 5.433 0 0 1 2.57 3.54c.282-.08.574-.121.868-.12.884 0 1.73.358 2.347.992s.948 1.49.922 2.373ZM10.721 8.421c.247 2.98.427 5.697 0 8.672a.264.264 0 0 1-.53 0c-.395-2.946-.22-5.718 0-8.672a.264.264 0 0 1 .53 0ZM9.072 9.448c.285 2.659.37 4.986-.006 7.655a.277.277 0 0 1-.55 0c-.331-2.63-.256-5.02 0-7.655a.277.277 0 0 1 .556 0Zm-1.663-.257c.27 2.726.39 5.171 0 7.904a.266.266 0 0 1-.532 0c-.38-2.69-.257-5.21 0-7.904a.266.266 0 0 1 .532 0Zm-1.647.77a26.108 26.108 0 0 1-.008 7.147.272.272 0 0 1-.542 0 27.955 27.955 0 0 1 0-7.147.275.275 0 0 1 .55 0Zm-1.67 1.769c.421 1.865.228 3.5-.029 5.388a.257.257 0 0 1-.514 0c-.21-1.858-.398-3.549 0-5.389a.272.272 0 0 1 .543 0Zm-1.655-.273c.388 1.897.26 3.508-.01 5.412-.026.28-.514.283-.54 0-.244-1.878-.347-3.54-.01-5.412a.283.283 0 0 1 .56 0Zm-1.668.911c.4 1.268.257 2.292-.026 3.572a.257.257 0 0 1-.514 0c-.241-1.262-.354-2.312-.023-3.572a.283.283 0 0 1 .563 0Z" }) + ] + } + ); +}); + +export { SiSoundcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.cjs new file mode 100644 index 000000000..3950e6db2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F79A10"; +const SiSourceengine = React__namespace.forwardRef(function SiSourceengine2({ title = "Source Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.865.716h-.26L7.64.784a12.76 12.76 0 0 0-7.01 1.69l.002.001A1.211 1.211 0 0 0 1.21 4.75c.35 0 .662-.148.883-.383a10.321 10.321 0 0 1 8.818-.462c5.275 2.165 7.805 8.22 5.64 13.495a10.283 10.283 0 0 1-2.495 3.613l.01.013a1.21 1.21 0 1 0 1.63 1.69 12.638 12.638 0 0 0 3.04-4.419c.05-.118 4.952-12.06 4.964-12.093A3.992 3.992 0 0 0 21.522.996c-.55-.226-1.064-.278-1.657-.28zM6.067 6.851c-2.635 0-5.342.807-5.342 3.941 0 2.16 1.946 2.85 3.893 3.277 2.422.522 3.823.878 3.823 1.9 0 1.187-1.235 1.567-2.208 1.567-1.33 0-2.564-.594-2.588-2.066H.44c.143 3.252 2.92 4.32 5.77 4.32 2.801 0 5.603-1.044 5.603-4.273 0-2.28-1.923-2.992-3.894-3.443-1.923-.45-3.823-.617-3.823-1.828 0-.997 1.116-1.14 1.877-1.14 1.21 0 2.207.357 2.302 1.662h3.205c-.26-3.015-2.73-3.917-5.413-3.917z" }) + ] + } + ); +}); + +exports.default = SiSourceengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.d.ts new file mode 100644 index 000000000..d11bae889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F79A10"; +declare const SiSourceengine: IconType; +export { SiSourceengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.mjs new file mode 100644 index 000000000..0ec362b82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F79A10"; +const SiSourceengine = React.forwardRef(function SiSourceengine2({ title = "Source Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.865.716h-.26L7.64.784a12.76 12.76 0 0 0-7.01 1.69l.002.001A1.211 1.211 0 0 0 1.21 4.75c.35 0 .662-.148.883-.383a10.321 10.321 0 0 1 8.818-.462c5.275 2.165 7.805 8.22 5.64 13.495a10.283 10.283 0 0 1-2.495 3.613l.01.013a1.21 1.21 0 1 0 1.63 1.69 12.638 12.638 0 0 0 3.04-4.419c.05-.118 4.952-12.06 4.964-12.093A3.992 3.992 0 0 0 21.522.996c-.55-.226-1.064-.278-1.657-.28zM6.067 6.851c-2.635 0-5.342.807-5.342 3.941 0 2.16 1.946 2.85 3.893 3.277 2.422.522 3.823.878 3.823 1.9 0 1.187-1.235 1.567-2.208 1.567-1.33 0-2.564-.594-2.588-2.066H.44c.143 3.252 2.92 4.32 5.77 4.32 2.801 0 5.603-1.044 5.603-4.273 0-2.28-1.923-2.992-3.894-3.443-1.923-.45-3.823-.617-3.823-1.828 0-.997 1.116-1.14 1.877-1.14 1.21 0 2.207.357 2.302 1.662h3.205c-.26-3.015-2.73-3.917-5.413-3.917z" }) + ] + } + ); +}); + +export { SiSourceengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.cjs new file mode 100644 index 000000000..ff710613f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6600"; +const SiSourceforge = React__namespace.forwardRef(function SiSourceforge2({ title = "SourceForge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.998 1.4648c-.088 0-.1761.0395-.2402.1036L.1016 11.2148c-.1361.1281-.1361.3444 0 .4805l9.1523 9.1348c.064.072.1522.1054.2402.1054.0881 0 .1743-.0414.2383-.1054l1.3692-1.3848c.136-.128.136-.3444 0-.4805l-7.172-7.1738a.4682.4682 0 010-.664l9.0782-9.0782c.1201-.12.1123-.2728.0723-.377-.04-.096-.1444-.207-.3125-.207H9.998zm4.5313 1.5918c-.088 0-.1762.0415-.2402.1055l-1.3926 1.3926c-.1361.128-.1361.3444 0 .4805l7.1719 7.1816c.088.088.1367.208.1367.3281 0 .1201-.0487.24-.1367.3281l-9.0782 9.0782c-.12.12-.1123.2728-.0722.377.04.096.1443.207.3125.207v-.0079H14c.088 0 .1762-.0316.2402-.0957l9.6563-9.6543c.072-.064.1035-.1521.1035-.2402 0-.088-.0395-.1762-.1035-.2402l-9.127-9.1348c-.064-.072-.1521-.1055-.2402-.1055zM11.4336 6.213c-.1125.005-.2164.1007-.211.2383.1442 2.2176-2.6425 2.7635-2.6425 6.246v.0235c0 2.1216 1.6026 3.8418 3.58 3.8418 1.9775 0 3.5782-1.7202 3.5782-3.8418v-.0234c0-.9848-.3679-1.9225-.7442-2.627-.072-.136-.2896-.087-.2656.041.6725 2.9943-1.0156 4.8507-1.0156 2.545 0-3.931-1.3943-5.7162-2.1309-6.3887a.2072.2072 0 00-.1484-.0547Z" }) + ] + } + ); +}); + +exports.default = SiSourceforge; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.d.ts new file mode 100644 index 000000000..fb02bc30a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6600"; +declare const SiSourceforge: IconType; +export { SiSourceforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.mjs new file mode 100644 index 000000000..5fececf7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourceforge.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6600"; +const SiSourceforge = React.forwardRef(function SiSourceforge2({ title = "SourceForge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.998 1.4648c-.088 0-.1761.0395-.2402.1036L.1016 11.2148c-.1361.1281-.1361.3444 0 .4805l9.1523 9.1348c.064.072.1522.1054.2402.1054.0881 0 .1743-.0414.2383-.1054l1.3692-1.3848c.136-.128.136-.3444 0-.4805l-7.172-7.1738a.4682.4682 0 010-.664l9.0782-9.0782c.1201-.12.1123-.2728.0723-.377-.04-.096-.1444-.207-.3125-.207H9.998zm4.5313 1.5918c-.088 0-.1762.0415-.2402.1055l-1.3926 1.3926c-.1361.128-.1361.3444 0 .4805l7.1719 7.1816c.088.088.1367.208.1367.3281 0 .1201-.0487.24-.1367.3281l-9.0782 9.0782c-.12.12-.1123.2728-.0722.377.04.096.1443.207.3125.207v-.0079H14c.088 0 .1762-.0316.2402-.0957l9.6563-9.6543c.072-.064.1035-.1521.1035-.2402 0-.088-.0395-.1762-.1035-.2402l-9.127-9.1348c-.064-.072-.1521-.1055-.2402-.1055zM11.4336 6.213c-.1125.005-.2164.1007-.211.2383.1442 2.2176-2.6425 2.7635-2.6425 6.246v.0235c0 2.1216 1.6026 3.8418 3.58 3.8418 1.9775 0 3.5782-1.7202 3.5782-3.8418v-.0234c0-.9848-.3679-1.9225-.7442-2.627-.072-.136-.2896-.087-.2656.041.6725 2.9943-1.0156 4.8507-1.0156 2.545 0-3.931-1.3943-5.7162-2.1309-6.3887a.2072.2072 0 00-.1484-.0547Z" }) + ] + } + ); +}); + +export { SiSourceforge as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.cjs new file mode 100644 index 000000000..9d59d8808 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSourcehut = React__namespace.forwardRef(function SiSourcehut2({ title = "SourceHut", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12S18.629 0 12 0Zm0 21.677A9.675 9.675 0 0 1 2.323 12 9.675 9.675 0 0 1 12 2.323 9.675 9.675 0 0 1 21.677 12 9.675 9.675 0 0 1 12 21.677Z" }) + ] + } + ); +}); + +exports.default = SiSourcehut; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.d.ts new file mode 100644 index 000000000..387bda365 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSourcehut: IconType; +export { SiSourcehut as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.mjs new file mode 100644 index 000000000..4b0f742d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcehut.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSourcehut = React.forwardRef(function SiSourcehut2({ title = "SourceHut", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.371 0 0 5.371 0 12s5.371 12 12 12 12-5.371 12-12S18.629 0 12 0Zm0 21.677A9.675 9.675 0 0 1 2.323 12 9.675 9.675 0 0 1 12 2.323 9.675 9.675 0 0 1 21.677 12 9.675 9.675 0 0 1 12 21.677Z" }) + ] + } + ); +}); + +export { SiSourcehut as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.cjs new file mode 100644 index 000000000..77a9734f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiSourcetree = React__namespace.forwardRef(function SiSourcetree2({ title = "Sourcetree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0C6.756 0 2.474 4.245 2.474 9.525c0 4.21 2.769 7.792 6.572 9.047v4.764c0 .37.295.664.664.664h4.506a.661.661 0 0 0 .664-.664v-4.764c.025-.008.049-.019.074-.027v.064c3.694-1.22 6.412-4.634 6.565-8.687.005-.124.007-.25.007-.375v-.022c0-.152-.006-.304-.013-.455C21.275 4.037 17.125 0 11.999 0Zm0 6.352a3.214 3.214 0 0 1 2.664 5.005v.002A3.218 3.218 0 0 1 12 12.775a3.212 3.212 0 0 1 0-6.424z" }) + ] + } + ); +}); + +exports.default = SiSourcetree; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.d.ts new file mode 100644 index 000000000..245517c3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiSourcetree: IconType; +export { SiSourcetree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.mjs new file mode 100644 index 000000000..08a0ee2ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSourcetree.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiSourcetree = React.forwardRef(function SiSourcetree2({ title = "Sourcetree", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0C6.756 0 2.474 4.245 2.474 9.525c0 4.21 2.769 7.792 6.572 9.047v4.764c0 .37.295.664.664.664h4.506a.661.661 0 0 0 .664-.664v-4.764c.025-.008.049-.019.074-.027v.064c3.694-1.22 6.412-4.634 6.565-8.687.005-.124.007-.25.007-.375v-.022c0-.152-.006-.304-.013-.455C21.275 4.037 17.125 0 11.999 0Zm0 6.352a3.214 3.214 0 0 1 2.664 5.005v.002A3.218 3.218 0 0 1 12 12.775a3.212 3.212 0 0 1 0-6.424z" }) + ] + } + ); +}); + +export { SiSourcetree as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.cjs new file mode 100644 index 000000000..f09ecb456 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#304CB2"; +const SiSouthwestairlines = React__namespace.forwardRef(function SiSouthwestairlines2({ title = "Southwest Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.163 2.419C21.038 1.219 19.35.58 17.437.58c-2.062 0-3.637.675-4.725 1.275 2.063 1.163 6.526 3.75 11.175 7.163.075-.45.113-.938.113-1.388-.038-2.175-.675-4.012-1.837-5.212zm1.35 8.212C18.186 6.244 15 4.031 11.55 1.97 10.612 1.406 8.775.58 6.675.58 4.688.581 3 1.22 1.837 2.42 1.087 3.206.563 4.18.262 5.38 3 7.294 10.462 12.656 18 18.581c2.512-2.362 4.613-5.1 5.512-7.95zM0 7.781c0 6.15 6.487 11.85 12 15.638 1.575-1.088 3.225-2.325 4.8-3.713A736.871 736.871 0 0 0 .15 6.131C.038 6.62 0 7.181 0 7.781Z" }) + ] + } + ); +}); + +exports.default = SiSouthwestairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.d.ts new file mode 100644 index 000000000..f940cf800 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#304CB2"; +declare const SiSouthwestairlines: IconType; +export { SiSouthwestairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.mjs new file mode 100644 index 000000000..b76c0d1fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSouthwestairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#304CB2"; +const SiSouthwestairlines = React.forwardRef(function SiSouthwestairlines2({ title = "Southwest Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.163 2.419C21.038 1.219 19.35.58 17.437.58c-2.062 0-3.637.675-4.725 1.275 2.063 1.163 6.526 3.75 11.175 7.163.075-.45.113-.938.113-1.388-.038-2.175-.675-4.012-1.837-5.212zm1.35 8.212C18.186 6.244 15 4.031 11.55 1.97 10.612 1.406 8.775.58 6.675.58 4.688.581 3 1.22 1.837 2.42 1.087 3.206.563 4.18.262 5.38 3 7.294 10.462 12.656 18 18.581c2.512-2.362 4.613-5.1 5.512-7.95zM0 7.781c0 6.15 6.487 11.85 12 15.638 1.575-1.088 3.225-2.325 4.8-3.713A736.871 736.871 0 0 0 .15 6.131C.038 6.62 0 7.181 0 7.781Z" }) + ] + } + ); +}); + +export { SiSouthwestairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.cjs new file mode 100644 index 000000000..9a245520d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9266CC"; +const SiSpacemacs = React__namespace.forwardRef(function SiSpacemacs2({ title = "Spacemacs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.997.011c-1.79.015-3.452.397-4.968 1.093l.005-.002c3.638 2.026 6.955 5.634 8.932 8.241.398.534.753 1.006 1.078 1.434l.004-.019c.412-1.738-.313-5.239-1.518-7.331-.117-.203-.201-.379-.187-.392l.006.002.002-.007c.098.024 1.031.995 1.373 1.433.599.767.832 1.213 1.162 2.23.858 2.645 1.424 4.801 1.901 7.249.239 1.228.675 3.458.731 3.884.007.057-.009.128-.01.143a5.164 5.164 0 0 0-.29-.264c-.645-.568-1.924-1.417-3.183-2.114-1.57-.87-3.118-1.614-6.575-3.162-3.156-1.413-4.61-2.086-5.751-2.661l-1.024-.51c.12.301.249.624.399 1.005 0 0 1.933 1.08 2.174 1.408 0 0 2.322 4.367 3.353 6.955.767 1.949 1.634 4.264 2.155 4.904l.06.069c-1.026-.251-5.745-2.598-5.745-2.598-.518-4.399-1.969-9.61-3.855-14.94a7.259 7.259 0 0 1-.125-.271c.001-.015.141.121.311.303C4.313 8.13 8.368 9.98 12.675 10.775a16.48 16.48 0 0 0 3.533.223c-.307-.392-.64-.821-1.009-1.302-3.418-4.455-6.774-6.326-9.78-7.469-.079-.028-.154-.061-.231-.088A11.902 11.902 0 0 0 .669 8.071a11.97 11.97 0 0 0-.67 4.016l.003-.088c.033 5.018 3.129 9.616 8.052 11.33 1.335.465 2.696.68 4.032.67l-.088-.003c5.018-.033 9.616-3.129 11.33-8.052.465-1.335.68-2.696.67-4.032l-.003.088c-.033-5.018-3.129-9.616-8.052-11.33A11.966 11.966 0 0 0 11.911 0l.088.003zm6.133 6.11l-.002.007c-.001 0 0 0 0 0l.002-.007c.531.511 1.376 1.503 2.336 2.062.789.99 1.216 1.963 1.748 2.629-.219-.188-1.111-.972-1.111-.972s-1.378-1.305-2.141-2.153c-.293-.326-.32-.38-.478-.628-.062-.097-.275-.825-.354-.935h-.001l.002-.007z" }) + ] + } + ); +}); + +exports.default = SiSpacemacs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.d.ts new file mode 100644 index 000000000..2e511dbcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9266CC"; +declare const SiSpacemacs: IconType; +export { SiSpacemacs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.mjs new file mode 100644 index 000000000..f0d2fdadb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacemacs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9266CC"; +const SiSpacemacs = React.forwardRef(function SiSpacemacs2({ title = "Spacemacs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.997.011c-1.79.015-3.452.397-4.968 1.093l.005-.002c3.638 2.026 6.955 5.634 8.932 8.241.398.534.753 1.006 1.078 1.434l.004-.019c.412-1.738-.313-5.239-1.518-7.331-.117-.203-.201-.379-.187-.392l.006.002.002-.007c.098.024 1.031.995 1.373 1.433.599.767.832 1.213 1.162 2.23.858 2.645 1.424 4.801 1.901 7.249.239 1.228.675 3.458.731 3.884.007.057-.009.128-.01.143a5.164 5.164 0 0 0-.29-.264c-.645-.568-1.924-1.417-3.183-2.114-1.57-.87-3.118-1.614-6.575-3.162-3.156-1.413-4.61-2.086-5.751-2.661l-1.024-.51c.12.301.249.624.399 1.005 0 0 1.933 1.08 2.174 1.408 0 0 2.322 4.367 3.353 6.955.767 1.949 1.634 4.264 2.155 4.904l.06.069c-1.026-.251-5.745-2.598-5.745-2.598-.518-4.399-1.969-9.61-3.855-14.94a7.259 7.259 0 0 1-.125-.271c.001-.015.141.121.311.303C4.313 8.13 8.368 9.98 12.675 10.775a16.48 16.48 0 0 0 3.533.223c-.307-.392-.64-.821-1.009-1.302-3.418-4.455-6.774-6.326-9.78-7.469-.079-.028-.154-.061-.231-.088A11.902 11.902 0 0 0 .669 8.071a11.97 11.97 0 0 0-.67 4.016l.003-.088c.033 5.018 3.129 9.616 8.052 11.33 1.335.465 2.696.68 4.032.67l-.088-.003c5.018-.033 9.616-3.129 11.33-8.052.465-1.335.68-2.696.67-4.032l-.003.088c-.033-5.018-3.129-9.616-8.052-11.33A11.966 11.966 0 0 0 11.911 0l.088.003zm6.133 6.11l-.002.007c-.001 0 0 0 0 0l.002-.007c.531.511 1.376 1.503 2.336 2.062.789.99 1.216 1.963 1.748 2.629-.219-.188-1.111-.972-1.111-.972s-1.378-1.305-2.141-2.153c-.293-.326-.32-.38-.478-.628-.062-.097-.275-.825-.354-.935h-.001l.002-.007z" }) + ] + } + ); +}); + +export { SiSpacemacs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.cjs new file mode 100644 index 000000000..3377a4bf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#394EFF"; +const SiSpaceship = React__namespace.forwardRef(function SiSpaceship2({ title = "Spaceship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9997 1.2529c1.0445 0 1.956.5689 2.441 1.4125l4.5883 7.9314 4.45 7.6915c.0466.074.2105.3585.27.4938.2216.4677.2505.9472.251 1.1595 0 1.5496-1.2587 2.8056-2.8116 2.8056-.2949 0-.579-.045-.8457-.129l-7.9011-2.6061a1.406 1.406 0 0 0-.4413-.0705 1.413 1.413 0 0 0-.442.0705L3.658 22.6183l-.1623.0456a2.8398 2.8398 0 0 1-.6838.0831c-1.5531 0-2.8119-1.256-2.8119-2.8056.002-.243.0234-.5533.168-.9578.0294-.0911.0743-.176.1115-.264.0712-.1487.1607-.2875.2411-.4313l4.4493-7.6916 4.5883-7.9313c.485-.8437 1.3971-1.4126 2.4416-1.4126z" }) + ] + } + ); +}); + +exports.default = SiSpaceship; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.d.ts new file mode 100644 index 000000000..961f2d694 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#394EFF"; +declare const SiSpaceship: IconType; +export { SiSpaceship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.mjs new file mode 100644 index 000000000..1d6d7b6bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpaceship.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#394EFF"; +const SiSpaceship = React.forwardRef(function SiSpaceship2({ title = "Spaceship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9997 1.2529c1.0445 0 1.956.5689 2.441 1.4125l4.5883 7.9314 4.45 7.6915c.0466.074.2105.3585.27.4938.2216.4677.2505.9472.251 1.1595 0 1.5496-1.2587 2.8056-2.8116 2.8056-.2949 0-.579-.045-.8457-.129l-7.9011-2.6061a1.406 1.406 0 0 0-.4413-.0705 1.413 1.413 0 0 0-.442.0705L3.658 22.6183l-.1623.0456a2.8398 2.8398 0 0 1-.6838.0831c-1.5531 0-2.8119-1.256-2.8119-2.8056.002-.243.0234-.5533.168-.9578.0294-.0911.0743-.176.1115-.264.0712-.1487.1607-.2875.2411-.4313l4.4493-7.6916 4.5883-7.9313c.485-.8437 1.3971-1.4126 2.4416-1.4126z" }) + ] + } + ); +}); + +export { SiSpaceship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.cjs new file mode 100644 index 000000000..76bd9453b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSpacex = React__namespace.forwardRef(function SiSpacex2({ title = "SpaceX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 7.417C8.882 8.287 1.89 14.75.321 16.28L0 16.583h2.797C10.356 9.005 21.222 7.663 24 7.417zm-17.046 6.35c-.472.321-.945.68-1.398 1.02l2.457 1.796h2.778zM2.948 10.8H.189l3.25 2.381c.473-.321 1.02-.661 1.512-.945Z" }) + ] + } + ); +}); + +exports.default = SiSpacex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.d.ts new file mode 100644 index 000000000..1f6c1f7a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSpacex: IconType; +export { SiSpacex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.mjs new file mode 100644 index 000000000..35ac05225 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSpacex = React.forwardRef(function SiSpacex2({ title = "SpaceX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 7.417C8.882 8.287 1.89 14.75.321 16.28L0 16.583h2.797C10.356 9.005 21.222 7.663 24 7.417zm-17.046 6.35c-.472.321-.945.68-1.398 1.02l2.457 1.796h2.778zM2.948 10.8H.189l3.25 2.381c.473-.321 1.02-.661 1.512-.945Z" }) + ] + } + ); +}); + +export { SiSpacex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.cjs new file mode 100644 index 000000000..06f4aa455 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09A3D5"; +const SiSpacy = React__namespace.forwardRef(function SiSpacy2({ title = "spaCy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.001 11.213c-.55-.065-.591-.803-1.297-.738-.342 0-.66.143-.66.457 0 .473.73.517 1.17.636.75.228 1.476.383 1.476 1.199 0 1.035-.811 1.394-1.884 1.394-.897 0-1.806-.318-1.806-1.142 0-.228.22-.407.432-.407.269 0 .363.114.457.301.208.367.44.563 1.019.563.367 0 .742-.139.742-.457 0-.452-.46-.55-.937-.66C.869 12.122.143 12 .057 11.062c-.09-1.598 3.242-1.659 3.433-.257-.004.253-.24.408-.489.408ZM6.964 9.81c1.171 0 1.835.979 1.835 2.186 0 1.211-.644 2.185-1.835 2.185-.66 0-1.072-.281-1.37-.713v1.598c0 .481-.155.714-.505.714-.428 0-.506-.273-.506-.714v-4.648c0-.379.159-.612.506-.612.326 0 .505.257.505.612v.13c.331-.416.71-.738 1.37-.738Zm-.277 3.54c.685 0 .991-.632.991-1.37 0-.722-.31-1.37-.991-1.37-.714 0-1.044.587-1.044 1.37 0 .762.335 1.37 1.044 1.37Zm2.907-2.398c0-.84.967-1.142 1.904-1.142 1.317 0 1.86.384 1.86 1.656v1.223c0 .29.179.869.179 1.044 0 .265-.244.432-.505.432-.29 0-.506-.342-.661-.587-.428.342-.881.587-1.574.587-.766 0-1.37-.453-1.37-1.199 0-.66.473-1.039 1.044-1.17 0 .004 1.835-.432 1.835-.436 0-.563-.2-.812-.791-.812-.522 0-.787.143-.991.457-.163.237-.143.379-.457.379-.253-.004-.473-.175-.473-.432Zm1.566 2.524c.803 0 1.142-.424 1.142-1.268v-.18c-.216.074-1.089.29-1.325.327-.253.049-.506.236-.506.534.008.326.342.587.689.587Zm5.9-5.26c1.134 0 2.361.677 2.361 1.753a.49.49 0 0 1-.481.506c-.371 0-.424-.2-.587-.481-.273-.502-.596-.836-1.297-.836-1.085-.008-1.57.921-1.57 2.079 0 1.167.404 2.007 1.525 2.007.746 0 1.158-.433 1.37-.991.086-.257.241-.506.563-.506.253 0 .506.257.506.534 0 1.142-1.167 1.933-2.365 1.933-1.313 0-2.055-.555-2.463-1.476a3.48 3.48 0 0 1-.326-1.525c-.009-1.77 1.023-2.997 2.764-2.997Zm6.483 1.594c.29 0 .457.188.457.481 0 .119-.094.355-.13.482l-1.395 3.665c-.31.795-.542 1.346-1.598 1.346-.502 0-.938-.045-.938-.481 0-.253.191-.38.457-.38.048 0 .13.025.179.025.077 0 .13.024.179.024.53 0 .604-.542.791-.917L20.2 10.724c-.078-.18-.131-.302-.131-.408 0-.294.229-.506.534-.506.343 0 .478.269.563.563l.889 2.642.889-2.442c.134-.379.147-.763.599-.763Z" }) + ] + } + ); +}); + +exports.default = SiSpacy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.d.ts new file mode 100644 index 000000000..d22935c6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09A3D5"; +declare const SiSpacy: IconType; +export { SiSpacy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.mjs new file mode 100644 index 000000000..2f8bb2f65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpacy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09A3D5"; +const SiSpacy = React.forwardRef(function SiSpacy2({ title = "spaCy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.001 11.213c-.55-.065-.591-.803-1.297-.738-.342 0-.66.143-.66.457 0 .473.73.517 1.17.636.75.228 1.476.383 1.476 1.199 0 1.035-.811 1.394-1.884 1.394-.897 0-1.806-.318-1.806-1.142 0-.228.22-.407.432-.407.269 0 .363.114.457.301.208.367.44.563 1.019.563.367 0 .742-.139.742-.457 0-.452-.46-.55-.937-.66C.869 12.122.143 12 .057 11.062c-.09-1.598 3.242-1.659 3.433-.257-.004.253-.24.408-.489.408ZM6.964 9.81c1.171 0 1.835.979 1.835 2.186 0 1.211-.644 2.185-1.835 2.185-.66 0-1.072-.281-1.37-.713v1.598c0 .481-.155.714-.505.714-.428 0-.506-.273-.506-.714v-4.648c0-.379.159-.612.506-.612.326 0 .505.257.505.612v.13c.331-.416.71-.738 1.37-.738Zm-.277 3.54c.685 0 .991-.632.991-1.37 0-.722-.31-1.37-.991-1.37-.714 0-1.044.587-1.044 1.37 0 .762.335 1.37 1.044 1.37Zm2.907-2.398c0-.84.967-1.142 1.904-1.142 1.317 0 1.86.384 1.86 1.656v1.223c0 .29.179.869.179 1.044 0 .265-.244.432-.505.432-.29 0-.506-.342-.661-.587-.428.342-.881.587-1.574.587-.766 0-1.37-.453-1.37-1.199 0-.66.473-1.039 1.044-1.17 0 .004 1.835-.432 1.835-.436 0-.563-.2-.812-.791-.812-.522 0-.787.143-.991.457-.163.237-.143.379-.457.379-.253-.004-.473-.175-.473-.432Zm1.566 2.524c.803 0 1.142-.424 1.142-1.268v-.18c-.216.074-1.089.29-1.325.327-.253.049-.506.236-.506.534.008.326.342.587.689.587Zm5.9-5.26c1.134 0 2.361.677 2.361 1.753a.49.49 0 0 1-.481.506c-.371 0-.424-.2-.587-.481-.273-.502-.596-.836-1.297-.836-1.085-.008-1.57.921-1.57 2.079 0 1.167.404 2.007 1.525 2.007.746 0 1.158-.433 1.37-.991.086-.257.241-.506.563-.506.253 0 .506.257.506.534 0 1.142-1.167 1.933-2.365 1.933-1.313 0-2.055-.555-2.463-1.476a3.48 3.48 0 0 1-.326-1.525c-.009-1.77 1.023-2.997 2.764-2.997Zm6.483 1.594c.29 0 .457.188.457.481 0 .119-.094.355-.13.482l-1.395 3.665c-.31.795-.542 1.346-1.598 1.346-.502 0-.938-.045-.938-.481 0-.253.191-.38.457-.38.048 0 .13.025.179.025.077 0 .13.024.179.024.53 0 .604-.542.791-.917L20.2 10.724c-.078-.18-.131-.302-.131-.408 0-.294.229-.506.534-.506.343 0 .478.269.563.563l.889 2.642.889-2.442c.134-.379.147-.763.599-.763Z" }) + ] + } + ); +}); + +export { SiSpacy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.cjs new file mode 100644 index 000000000..c0e03794c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5C83"; +const SiSparkar = React__namespace.forwardRef(function SiSparkar2({ title = "Spark AR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.199 20.001L20.801 12v8.001L11.999 24l-8.8-3.999zm8.8 3.999zm-.001-24L3.199 3.999V12l17.602-8.001L11.998 0zM3.803 12.275l7.592 3.453 8.803-4.002-7.594-3.45-8.801 3.999z" }) + ] + } + ); +}); + +exports.default = SiSparkar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.d.ts new file mode 100644 index 000000000..ec77e414f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5C83"; +declare const SiSparkar: IconType; +export { SiSparkar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.mjs new file mode 100644 index 000000000..9c02431c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5C83"; +const SiSparkar = React.forwardRef(function SiSparkar2({ title = "Spark AR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.199 20.001L20.801 12v8.001L11.999 24l-8.8-3.999zm8.8 3.999zm-.001-24L3.199 3.999V12l17.602-8.001L11.998 0zM3.803 12.275l7.592 3.453 8.803-4.002-7.594-3.45-8.801 3.999z" }) + ] + } + ); +}); + +export { SiSparkar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.cjs new file mode 100644 index 000000000..8788033d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiSparkasse = React__namespace.forwardRef(function SiSparkasse2({ title = "Sparkasse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.0602 12.3061v1.8455h14.175v6.7773c.0296 1.6615-1.4064 3.1066-3.0705 3.0705H5.8352c-1.6582.0306-3.1011-1.4121-3.0705-3.0705v-1.225H16.908v-1.8455H2.7648v-6.7773c-.0307-1.6579 1.4123-3.1012 3.0704-3.0704h12.3295c1.6641-.0363 3.1 1.4095 3.0705 3.0705v1.225H7.0602zm4.9241-6.1486c1.7003 0 3.0787-1.3784 3.0787-3.0787S13.6847 0 11.9843 0 8.9055 1.3784 8.9055 3.0788s1.3785 3.0787 3.0788 3.0787z" }) + ] + } + ); +}); + +exports.default = SiSparkasse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.d.ts new file mode 100644 index 000000000..292680e5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiSparkasse: IconType; +export { SiSparkasse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.mjs new file mode 100644 index 000000000..7ad8b9063 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkasse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiSparkasse = React.forwardRef(function SiSparkasse2({ title = "Sparkasse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.0602 12.3061v1.8455h14.175v6.7773c.0296 1.6615-1.4064 3.1066-3.0705 3.0705H5.8352c-1.6582.0306-3.1011-1.4121-3.0705-3.0705v-1.225H16.908v-1.8455H2.7648v-6.7773c-.0307-1.6579 1.4123-3.1012 3.0704-3.0704h12.3295c1.6641-.0363 3.1 1.4095 3.0705 3.0705v1.225H7.0602zm4.9241-6.1486c1.7003 0 3.0787-1.3784 3.0787-3.0787S13.6847 0 11.9843 0 8.9055 1.3784 8.9055 3.0788s1.3785 3.0787 3.0788 3.0787z" }) + ] + } + ); +}); + +export { SiSparkasse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.cjs new file mode 100644 index 000000000..0f4d2e40d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E53525"; +const SiSparkfun = React__namespace.forwardRef(function SiSparkfun2({ title = "SparkFun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.307 5.476c-.756.134-1.975-.615-2.59-1.362-.755-.922-.66-1.647-.071-2.29.883-.978 2.396-.6 2.396-.6s-2.772-2.432-5.658-.44c-2.571 1.77-1.833 4.183.487 6.288 2.09 1.902.42 3.988-1.686 3.717-1.443-.184-2.034-1.343-1.687-2.054.298-.608 1.335-.982 1.335-.982s-1.19-.484-2.592.044c-1.259.474-2.297 1.515-2.214 4.12V24s1.301-1.604 2.83-3.236c1.714-1.84 2.495-3.084 4.254-2.938 3.328.205 5.735-1.273 7.371-3.645 3.141-4.563.67-9.68-1.43-10.343 0 0 .34 1.438-.745 1.638z" }) + ] + } + ); +}); + +exports.default = SiSparkfun; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.d.ts new file mode 100644 index 000000000..a804e8352 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E53525"; +declare const SiSparkfun: IconType; +export { SiSparkfun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.mjs new file mode 100644 index 000000000..87a245da3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkfun.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E53525"; +const SiSparkfun = React.forwardRef(function SiSparkfun2({ title = "SparkFun", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.307 5.476c-.756.134-1.975-.615-2.59-1.362-.755-.922-.66-1.647-.071-2.29.883-.978 2.396-.6 2.396-.6s-2.772-2.432-5.658-.44c-2.571 1.77-1.833 4.183.487 6.288 2.09 1.902.42 3.988-1.686 3.717-1.443-.184-2.034-1.343-1.687-2.054.298-.608 1.335-.982 1.335-.982s-1.19-.484-2.592.044c-1.259.474-2.297 1.515-2.214 4.12V24s1.301-1.604 2.83-3.236c1.714-1.84 2.495-3.084 4.254-2.938 3.328.205 5.735-1.273 7.371-3.645 3.141-4.563.67-9.68-1.43-10.343 0 0 .34 1.438-.745 1.638z" }) + ] + } + ); +}); + +export { SiSparkfun as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.cjs new file mode 100644 index 000000000..e8b43649f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA6423"; +const SiSparkpost = React__namespace.forwardRef(function SiSparkpost2({ title = "SparkPost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.2 9c-1.351.9-1.8 2.7-1.65 3.9-2.25-2.25 3.45-8.55-3-12.9C15.15 5.4 6 9.75 6 17.4c0 3 1.95 5.701 6 6.6 4.05-.898 6-3.6 6-6.6 0-4.5-2.7-6-1.8-8.4zM12 20.852c-1.8 0-3.45-1.5-3.45-3.451 0-1.801 1.5-3.45 3.45-3.45 1.8 0 3.45 1.5 3.45 3.45-.15 1.951-1.65 3.451-3.45 3.451z" }) + ] + } + ); +}); + +exports.default = SiSparkpost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.d.ts new file mode 100644 index 000000000..8b9618dbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA6423"; +declare const SiSparkpost: IconType; +export { SiSparkpost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.mjs new file mode 100644 index 000000000..145a694ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSparkpost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA6423"; +const SiSparkpost = React.forwardRef(function SiSparkpost2({ title = "SparkPost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.2 9c-1.351.9-1.8 2.7-1.65 3.9-2.25-2.25 3.45-8.55-3-12.9C15.15 5.4 6 9.75 6 17.4c0 3 1.95 5.701 6 6.6 4.05-.898 6-3.6 6-6.6 0-4.5-2.7-6-1.8-8.4zM12 20.852c-1.8 0-3.45-1.5-3.45-3.451 0-1.801 1.5-3.45 3.45-3.45 1.8 0 3.45 1.5 3.45 3.45-.15 1.951-1.65 3.451-3.45 3.451z" }) + ] + } + ); +}); + +export { SiSparkpost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.cjs new file mode 100644 index 000000000..c422a2594 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4398CC"; +const SiSpdx = React__namespace.forwardRef(function SiSpdx2({ title = "SPDX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24H8.222l2.089-2.373 2.09-2.374V13.2H18.978l2.51-2.488L24 8.223V0H12zm5.2 5.2h13.791L12.2 12c-3.735 3.74-6.838 6.8-6.896 6.8-.057 0-.104-3.06-.104-6.8zm8.4 8.8v10H24V14h-5.2z" }) + ] + } + ); +}); + +exports.default = SiSpdx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.d.ts new file mode 100644 index 000000000..62bef4815 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4398CC"; +declare const SiSpdx: IconType; +export { SiSpdx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.mjs new file mode 100644 index 000000000..ad0aaeb50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpdx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4398CC"; +const SiSpdx = React.forwardRef(function SiSpdx2({ title = "SPDX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24H8.222l2.089-2.373 2.09-2.374V13.2H18.978l2.51-2.488L24 8.223V0H12zm5.2 5.2h13.791L12.2 12c-3.735 3.74-6.838 6.8-6.896 6.8-.057 0-.104-3.06-.104-6.8zm8.4 8.8v10H24V14h-5.2z" }) + ] + } + ); +}); + +export { SiSpdx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.cjs new file mode 100644 index 000000000..fedca0fbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009287"; +const SiSpeakerdeck = React__namespace.forwardRef(function SiSpeakerdeck2({ title = "Speaker Deck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.025 13.875H4.687a4.688 4.688 0 0 1 0-9.375h6.227a1.875 1.875 0 0 1 0 3.75H4.592a.937.937 0 1 0 0 1.875h5.337a4.687 4.687 0 1 1 0 9.375H1.875a1.875 1.875 0 0 1 0-3.75h8.15a.938.938 0 0 0 0-1.875zM13.97 19.5a5.635 5.635 0 0 0 2.396-3.75h3.026a.93.93 0 0 0 .921-.938V9.189a.93.93 0 0 0-.921-.938h-5.497c.438-.498.704-1.155.704-1.875s-.266-1.377-.704-1.875h6.418C22.35 4.5 24 6.179 24 8.25v7.5c0 2.071-1.65 3.75-3.687 3.75H13.97z" }) + ] + } + ); +}); + +exports.default = SiSpeakerdeck; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.d.ts new file mode 100644 index 000000000..84b0a8ffd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009287"; +declare const SiSpeakerdeck: IconType; +export { SiSpeakerdeck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.mjs new file mode 100644 index 000000000..9a217900d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeakerdeck.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009287"; +const SiSpeakerdeck = React.forwardRef(function SiSpeakerdeck2({ title = "Speaker Deck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.025 13.875H4.687a4.688 4.688 0 0 1 0-9.375h6.227a1.875 1.875 0 0 1 0 3.75H4.592a.937.937 0 1 0 0 1.875h5.337a4.687 4.687 0 1 1 0 9.375H1.875a1.875 1.875 0 0 1 0-3.75h8.15a.938.938 0 0 0 0-1.875zM13.97 19.5a5.635 5.635 0 0 0 2.396-3.75h3.026a.93.93 0 0 0 .921-.938V9.189a.93.93 0 0 0-.921-.938h-5.497c.438-.498.704-1.155.704-1.875s-.266-1.377-.704-1.875h6.418C22.35 4.5 24 6.179 24 8.25v7.5c0 2.071-1.65 3.75-3.687 3.75H13.97z" }) + ] + } + ); +}); + +export { SiSpeakerdeck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.cjs new file mode 100644 index 000000000..144c7d638 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7B16FF"; +const SiSpectrum = React__namespace.forwardRef(function SiSpectrum2({ title = "Spectrum", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 10.2A1.8 1.8 0 001.8 12h1.8a8.4 8.4 0 018.4 8.4v1.8a1.8 1.8 0 001.8 1.8h8.4a1.8 1.8 0 001.8-1.8v-1.8C24 9.133 14.867 0 3.6 0H1.8A1.8 1.8 0 000 1.8v8.4z" }) + ] + } + ); +}); + +exports.default = SiSpectrum; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.d.ts new file mode 100644 index 000000000..e55cdf957 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7B16FF"; +declare const SiSpectrum: IconType; +export { SiSpectrum as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.mjs new file mode 100644 index 000000000..892ee13db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpectrum.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7B16FF"; +const SiSpectrum = React.forwardRef(function SiSpectrum2({ title = "Spectrum", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 10.2A1.8 1.8 0 001.8 12h1.8a8.4 8.4 0 018.4 8.4v1.8a1.8 1.8 0 001.8 1.8h8.4a1.8 1.8 0 001.8-1.8v-1.8C24 9.133 14.867 0 3.6 0H1.8A1.8 1.8 0 000 1.8v8.4z" }) + ] + } + ); +}); + +export { SiSpectrum as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.cjs new file mode 100644 index 000000000..32be66574 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#141526"; +const SiSpeedtest = React__namespace.forwardRef(function SiSpeedtest2({ title = "Speedtest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.628 16.186l-2.047-2.14 6.791-5.953 1.21 1.302zm8.837 6.047c2.14-2.14 3.535-5.117 3.535-8.466 0-6.604-5.395-12-12-12s-12 5.396-12 12c0 3.35 1.302 6.326 3.535 8.466l1.674-1.675c-1.767-1.767-2.79-4.093-2.79-6.79A9.568 9.568 0 0 1 12 4.185a9.568 9.568 0 0 1 9.581 9.581c0 2.605-1.116 5.024-2.79 6.791Z" }) + ] + } + ); +}); + +exports.default = SiSpeedtest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.d.ts new file mode 100644 index 000000000..6984d56b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#141526"; +declare const SiSpeedtest: IconType; +export { SiSpeedtest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.mjs new file mode 100644 index 000000000..2d80b4e50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedtest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#141526"; +const SiSpeedtest = React.forwardRef(function SiSpeedtest2({ title = "Speedtest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.628 16.186l-2.047-2.14 6.791-5.953 1.21 1.302zm8.837 6.047c2.14-2.14 3.535-5.117 3.535-8.466 0-6.604-5.395-12-12-12s-12 5.396-12 12c0 3.35 1.302 6.326 3.535 8.466l1.674-1.675c-1.767-1.767-2.79-4.093-2.79-6.79A9.568 9.568 0 0 1 12 4.185a9.568 9.568 0 0 1 9.581 9.581c0 2.605-1.116 5.024-2.79 6.791Z" }) + ] + } + ); +}); + +export { SiSpeedtest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.cjs new file mode 100644 index 000000000..701451674 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C71F9"; +const SiSpeedypage = React__namespace.forwardRef(function SiSpeedypage2({ title = "SpeedyPage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.356 11.774a8.66 8.66 0 0 1-7.797 8.623C12.559 20.503 0 22.18 0 22.18l1.383-4.978 10.192-1.544v-.025a3.617 3.617 0 0 0 3.405-3.807 3.44 3.44 0 0 0-.212-1.01h5.534c.054.318.054.638.054.958zm-16.686.452c0-4.444 3.381-8.171 7.797-8.623C11.467 3.471 24 1.82 24 1.82l-1.41 4.978-10.19 1.57v.025a3.556 3.556 0 0 0-3.353 3.781c.026.346.08.664.214.984H3.724c-.026-.32-.054-.612-.054-.932z" }) + ] + } + ); +}); + +exports.default = SiSpeedypage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.d.ts new file mode 100644 index 000000000..4363d62c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C71F9"; +declare const SiSpeedypage: IconType; +export { SiSpeedypage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.mjs new file mode 100644 index 000000000..e662550a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpeedypage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C71F9"; +const SiSpeedypage = React.forwardRef(function SiSpeedypage2({ title = "SpeedyPage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.356 11.774a8.66 8.66 0 0 1-7.797 8.623C12.559 20.503 0 22.18 0 22.18l1.383-4.978 10.192-1.544v-.025a3.617 3.617 0 0 0 3.405-3.807 3.44 3.44 0 0 0-.212-1.01h5.534c.054.318.054.638.054.958zm-16.686.452c0-4.444 3.381-8.171 7.797-8.623C11.467 3.471 24 1.82 24 1.82l-1.41 4.978-10.19 1.57v.025a3.556 3.556 0 0 0-3.353 3.781c.026.346.08.664.214.984H3.724c-.026-.32-.054-.612-.054-.932z" }) + ] + } + ); +}); + +export { SiSpeedypage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.cjs new file mode 100644 index 000000000..1cc39ef4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSphinx = React__namespace.forwardRef(function SiSphinx2({ title = "Sphinx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.284 19.861c0-.654.177-1.834.393-2.623.499-1.822.774-4.079.497-4.079-.116 0-.959.762-1.873 1.694-3.472 3.54-7.197 5.543-10.312 5.543-1.778 0-2.987-.45-4.154-1.545C.128 18.186 0 17.858 0 16.703c0-1.188.117-1.468.909-2.175.718-.642 1.171-.813 2.157-.813.76.171 1.21.16 1.457.461.251.296.338 1.265.035 1.832-.162.303-.585.491-1.105.491-.49 0-.77-.116-.669-.278.315-.511-.135-.857-.713-.548-.699.374-.711 1.698-.021 2.322.969.878 3.65 1.208 5.262.648 1.743-.605 4.022-2.061 5.841-3.732l1.6-1.469-2.088-.013c-2.186-.012-3.608-.273-8.211-1.506-1.531-.41-3.003-.765-3.271-.789-.304-.026-.503-.274-.487-.656.027-.646.378-1.127.793-1.308.249-.109 1.977-.274 3.809-.761 7.136-1.898 7.569-1.629 12.323-.426 1.553.393 3.351.821 4.147.835 1.227.022 1.493.124 1.74.666.16.351.291.686.291.745 0 .058-.695.424-1.545.813-3.12 1.428-4.104 2.185-3.088 3.635.421.602.412.666-.14 1.052-.323.227-.59.687-.593 1.022-.009.908-.583 2.856-1.417 3.624l-.732.675v-1.189Zm1.594-8.328c1.242-.346 1.994-.738 3.539-1.562-1.272-.372-4.462-.895-4.462-.895-2.354-.472-2.108-.448-2.214.071a3.475 3.475 0 0 1-.45 1.105c-.541.848-2.521 1.026-3.656.483-.356-.171-.714-.821-.709-1.283.007-.65-.362-.801-.598-.714-.191.07-.813.079-2.179.448-4.514 1.217-5.132 1.078-2.189 1.495.353.05 2.223.572 3.136.815 2.239.597 2.658.641 5.556.581 2.015-.042 2.858-.163 4.226-.544ZM.732 6.258c.056-.577.088-.702 1.692-1.025.919-.185 3.185-.785 5.036-1.333 4.254-1.26 5.462-1.263 9.873-.026 1.904.535 4.037.973 4.74.975 1.097.002 1.668.487 1.668.487.505 1.16.412 1.24-1.558 1.24-1.374 0-2.558-.232-4.385-.857-1.389-.476-3.369-.923-4.451-1.004-1.974-.149-1.971-.15-8.072 1.529-1.072.295-2.553.624-3.29.732l-1.342.196.089-.914Z" }) + ] + } + ); +}); + +exports.default = SiSphinx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.d.ts new file mode 100644 index 000000000..d136d8f7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSphinx: IconType; +export { SiSphinx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.mjs new file mode 100644 index 000000000..7bd7c3ffa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSphinx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSphinx = React.forwardRef(function SiSphinx2({ title = "Sphinx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.284 19.861c0-.654.177-1.834.393-2.623.499-1.822.774-4.079.497-4.079-.116 0-.959.762-1.873 1.694-3.472 3.54-7.197 5.543-10.312 5.543-1.778 0-2.987-.45-4.154-1.545C.128 18.186 0 17.858 0 16.703c0-1.188.117-1.468.909-2.175.718-.642 1.171-.813 2.157-.813.76.171 1.21.16 1.457.461.251.296.338 1.265.035 1.832-.162.303-.585.491-1.105.491-.49 0-.77-.116-.669-.278.315-.511-.135-.857-.713-.548-.699.374-.711 1.698-.021 2.322.969.878 3.65 1.208 5.262.648 1.743-.605 4.022-2.061 5.841-3.732l1.6-1.469-2.088-.013c-2.186-.012-3.608-.273-8.211-1.506-1.531-.41-3.003-.765-3.271-.789-.304-.026-.503-.274-.487-.656.027-.646.378-1.127.793-1.308.249-.109 1.977-.274 3.809-.761 7.136-1.898 7.569-1.629 12.323-.426 1.553.393 3.351.821 4.147.835 1.227.022 1.493.124 1.74.666.16.351.291.686.291.745 0 .058-.695.424-1.545.813-3.12 1.428-4.104 2.185-3.088 3.635.421.602.412.666-.14 1.052-.323.227-.59.687-.593 1.022-.009.908-.583 2.856-1.417 3.624l-.732.675v-1.189Zm1.594-8.328c1.242-.346 1.994-.738 3.539-1.562-1.272-.372-4.462-.895-4.462-.895-2.354-.472-2.108-.448-2.214.071a3.475 3.475 0 0 1-.45 1.105c-.541.848-2.521 1.026-3.656.483-.356-.171-.714-.821-.709-1.283.007-.65-.362-.801-.598-.714-.191.07-.813.079-2.179.448-4.514 1.217-5.132 1.078-2.189 1.495.353.05 2.223.572 3.136.815 2.239.597 2.658.641 5.556.581 2.015-.042 2.858-.163 4.226-.544ZM.732 6.258c.056-.577.088-.702 1.692-1.025.919-.185 3.185-.785 5.036-1.333 4.254-1.26 5.462-1.263 9.873-.026 1.904.535 4.037.973 4.74.975 1.097.002 1.668.487 1.668.487.505 1.16.412 1.24-1.558 1.24-1.374 0-2.558-.232-4.385-.857-1.389-.476-3.369-.923-4.451-1.004-1.974-.149-1.971-.15-8.072 1.529-1.072.295-2.553.624-3.29.732l-1.342.196.089-.914Z" }) + ] + } + ); +}); + +export { SiSphinx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.cjs new file mode 100644 index 000000000..eaf6bd80b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED8106"; +const SiSpigotmc = React__namespace.forwardRef(function SiSpigotmc2({ title = "SpigotMC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.644 2.44c-.179.033-.456.182-.603.331-.245.2-.588.232-2.023.133l-1.713-.116.049.713.049.713h.652c.36-.016 1.207-.05 1.876-.083l1.224-.083v3.317l-.44.05c-.425.05-.457.1-.457.862 0 .713-.05.813-.36.863-.26.033-.39.182-.44.464-.016.232-.114.448-.18.497-.08.05-.228.597-.326 1.211-.228 1.526-.375 1.708-1.37 1.84-1.436.167-2.056.134-2.056-.148 0-.2-.244-.25-1.158-.25-1.012 0-1.158-.032-1.24-.33-.065-.25-.228-.333-.62-.333s-.555.083-.62.332c-.082.299-.228.332-1.224.332-1.011 0-1.158.033-1.256.332-.049.182-.18.331-.26.331-.082 0-.148.863-.148 1.99 0 1.609.05 1.99.229 1.99.13 0 .293.15.342.332.082.282.245.332 1.175.332.914 0 1.077.05 1.142.331.13.465 1.11.465 1.24 0 .065-.282.228-.331 1.158-.331.849 0 1.077-.05 1.077-.25 0-.397 2.121-.33 3.426.117 1.583.53 5.14.53 6.82 0 .653-.199 1.256-.332 1.338-.282.359.232.163.896-.343 1.178-.587.298-.587.563 0 1.956l.343.797 1.599-.067c1.73-.083 2.822-.48 3.915-1.41l.539-.464-.31-.912c-.327-.962-.734-1.327-1.518-1.327-.342 0-.473-.149-.766-.796-.506-1.144-1.224-1.758-2.758-2.355-.799-.315-1.582-.746-1.99-1.127-.604-.548-.685-.73-.832-1.775-.098-.63-.245-1.194-.326-1.244-.066-.05-.164-.265-.18-.497-.049-.282-.18-.431-.424-.464-.326-.05-.375-.15-.375-.863 0-.763-.033-.812-.44-.862-.458-.05-.458-.05-.507-1.526-.032-.929.017-1.542.13-1.658.115-.116.93-.183 2.09-.183h1.908l.05-.564c.032-.298-.017-.63-.099-.713-.098-.1-.816-.083-1.909.05-1.256.15-1.778.15-1.86.017-.146-.25-.848-.481-1.24-.398z" }) + ] + } + ); +}); + +exports.default = SiSpigotmc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.d.ts new file mode 100644 index 000000000..15bcf66fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED8106"; +declare const SiSpigotmc: IconType; +export { SiSpigotmc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.mjs new file mode 100644 index 000000000..80cc25852 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpigotmc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED8106"; +const SiSpigotmc = React.forwardRef(function SiSpigotmc2({ title = "SpigotMC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.644 2.44c-.179.033-.456.182-.603.331-.245.2-.588.232-2.023.133l-1.713-.116.049.713.049.713h.652c.36-.016 1.207-.05 1.876-.083l1.224-.083v3.317l-.44.05c-.425.05-.457.1-.457.862 0 .713-.05.813-.36.863-.26.033-.39.182-.44.464-.016.232-.114.448-.18.497-.08.05-.228.597-.326 1.211-.228 1.526-.375 1.708-1.37 1.84-1.436.167-2.056.134-2.056-.148 0-.2-.244-.25-1.158-.25-1.012 0-1.158-.032-1.24-.33-.065-.25-.228-.333-.62-.333s-.555.083-.62.332c-.082.299-.228.332-1.224.332-1.011 0-1.158.033-1.256.332-.049.182-.18.331-.26.331-.082 0-.148.863-.148 1.99 0 1.609.05 1.99.229 1.99.13 0 .293.15.342.332.082.282.245.332 1.175.332.914 0 1.077.05 1.142.331.13.465 1.11.465 1.24 0 .065-.282.228-.331 1.158-.331.849 0 1.077-.05 1.077-.25 0-.397 2.121-.33 3.426.117 1.583.53 5.14.53 6.82 0 .653-.199 1.256-.332 1.338-.282.359.232.163.896-.343 1.178-.587.298-.587.563 0 1.956l.343.797 1.599-.067c1.73-.083 2.822-.48 3.915-1.41l.539-.464-.31-.912c-.327-.962-.734-1.327-1.518-1.327-.342 0-.473-.149-.766-.796-.506-1.144-1.224-1.758-2.758-2.355-.799-.315-1.582-.746-1.99-1.127-.604-.548-.685-.73-.832-1.775-.098-.63-.245-1.194-.326-1.244-.066-.05-.164-.265-.18-.497-.049-.282-.18-.431-.424-.464-.326-.05-.375-.15-.375-.863 0-.763-.033-.812-.44-.862-.458-.05-.458-.05-.507-1.526-.032-.929.017-1.542.13-1.658.115-.116.93-.183 2.09-.183h1.908l.05-.564c.032-.298-.017-.63-.099-.713-.098-.1-.816-.083-1.909.05-1.256.15-1.778.15-1.86.017-.146-.25-.848-.481-1.24-.398z" }) + ] + } + ); +}); + +export { SiSpigotmc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.cjs new file mode 100644 index 000000000..38c12046d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4000"; +const SiSpine = React__namespace.forwardRef(function SiSpine2({ title = "Spine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.157 2.207c.066 2.004 1.454 3.117 4.221 3.55 2.345.368 4.46.181 5.151-1.829C17.874.01 14.681.985 11.915.55S7.051-1.013 7.157 2.207m.831 8.23c.257 1.497 1.652 2.355 3.786 2.297 2.135-.059 3.728-.892 3.949-2.507.409-2.988-1.946-1.832-4.08-1.774-2.136.059-4.161-.952-3.655 1.984m2.778 6.852c.424 1.117 1.587 1.589 3.159 1.253 1.569-.335 2.656-.856 2.568-2.129-.159-2.357-1.713-1.616-3.283-1.279-1.571.333-3.272-.039-2.444 2.155m1.348 5.221c.123.943.939 1.5 2.215 1.49 1.279-.011 2.248-.515 2.412-1.525.308-1.871-1.123-1.175-2.4-1.165-1.28.01-2.47-.65-2.227 1.2" }) + ] + } + ); +}); + +exports.default = SiSpine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.d.ts new file mode 100644 index 000000000..62d7885b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4000"; +declare const SiSpine: IconType; +export { SiSpine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.mjs new file mode 100644 index 000000000..bcc66426f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4000"; +const SiSpine = React.forwardRef(function SiSpine2({ title = "Spine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.157 2.207c.066 2.004 1.454 3.117 4.221 3.55 2.345.368 4.46.181 5.151-1.829C17.874.01 14.681.985 11.915.55S7.051-1.013 7.157 2.207m.831 8.23c.257 1.497 1.652 2.355 3.786 2.297 2.135-.059 3.728-.892 3.949-2.507.409-2.988-1.946-1.832-4.08-1.774-2.136.059-4.161-.952-3.655 1.984m2.778 6.852c.424 1.117 1.587 1.589 3.159 1.253 1.569-.335 2.656-.856 2.568-2.129-.159-2.357-1.713-1.616-3.283-1.279-1.571.333-3.272-.039-2.444 2.155m1.348 5.221c.123.943.939 1.5 2.215 1.49 1.279-.011 2.248-.515 2.412-1.525.308-1.871-1.123-1.175-2.4-1.165-1.28.01-2.47-.65-2.227 1.2" }) + ] + } + ); +}); + +export { SiSpine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.cjs new file mode 100644 index 000000000..7d322dabc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#139BB4"; +const SiSpinnaker = React__namespace.forwardRef(function SiSpinnaker2({ title = "Spinnaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.343 0C17.785 8.741 11.317 21.987.815 23.882c10.806 1.064 19.481-5.327 21.646-8.066C24.627 13.076 21.343 0 21.343 0zM.815 23.882L.8 23.88v.004l.015-.003zM17.182 5.8C15.409 10.988 10.477 18.547 5.4 20.39c.885.033 1.74-.019 2.561-.132 3.989-3.221 7.14-8.037 9.577-12.771-.193-.981-.356-1.687-.356-1.687z" }) + ] + } + ); +}); + +exports.default = SiSpinnaker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.d.ts new file mode 100644 index 000000000..2ddf4bfc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#139BB4"; +declare const SiSpinnaker: IconType; +export { SiSpinnaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.mjs new file mode 100644 index 000000000..dc021aa20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpinnaker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#139BB4"; +const SiSpinnaker = React.forwardRef(function SiSpinnaker2({ title = "Spinnaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.343 0C17.785 8.741 11.317 21.987.815 23.882c10.806 1.064 19.481-5.327 21.646-8.066C24.627 13.076 21.343 0 21.343 0zM.815 23.882L.8 23.88v.004l.015-.003zM17.182 5.8C15.409 10.988 10.477 18.547 5.4 20.39c.885.033 1.74-.019 2.561-.132 3.989-3.221 7.14-8.037 9.577-12.771-.193-.981-.356-1.687-.356-1.687z" }) + ] + } + ); +}); + +export { SiSpinnaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.cjs new file mode 100644 index 000000000..4bbb45e7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSplunk = React__namespace.forwardRef(function SiSplunk2({ title = "Splunk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.348 11.911l-2.241-1.091v-.65L24 11.621v.593l-2.893 1.438v-.636zm-5.397 1.841h-.961v-5.31h.961v3.116h.102l1.28-1.481.723.31-1.23 1.316 1.453 1.809-.888.311-1.44-1.996zm-2.577-.002v-2.068a2.685 2.685 0 0 0-.026-.42.791.791 0 0 0-.09-.26c-.113-.202-.308-.304-.59-.304a.888.888 0 0 0-.461.113.673.673 0 0 0-.286.33 1.012 1.012 0 0 0-.07.263c-.012.13-.019.262-.017.395v1.95h-.961v-3.614h.961l.002.485c.185-.2.373-.348.566-.437.192-.089.418-.134.673-.134.286 0 .527.058.721.177a1.016 1.016 0 0 1 .475.665 1.972 1.972 0 0 1 .054.448c.002.1.004.22.004.358v2.053zm-4.115.002l-.002-.485a1.783 1.783 0 0 1-.565.437 1.597 1.597 0 0 1-.674.135c-.285 0-.524-.057-.72-.17a.972.972 0 0 1-.425-.504.75.75 0 0 1-.054-.167 1.918 1.918 0 0 1-.033-.199 2.033 2.033 0 0 1-.017-.258 15.516 15.516 0 0 1-.005-.355V10.13h.956v2.07c-.003.141.006.282.026.42.015.092.045.18.09.26.113.204.308.306.59.306.36 0 .606-.15.74-.449.035-.082.06-.168.074-.257.017-.134.024-.269.022-.403v-1.95h.955v3.624zM7.184 8.44h.955v5.31h-.955zM5.759 11.9c0-.396-.08-.708-.24-.937a.759.759 0 0 0-.657-.345.804.804 0 0 0-.693.366c-.171.245-.256.574-.253.99 0 .405.084.723.25.957a.796.796 0 0 0 .69.347.685.685 0 0 0 .433-.135.985.985 0 0 0 .277-.34c.071-.14.121-.292.147-.448.03-.151.043-.3.046-.455m1.01-.036c.003.266-.04.532-.129.786-.082.23-.204.441-.364.626-.31.361-.764.567-1.24.563a1.67 1.67 0 0 1-.313-.028 1.041 1.041 0 0 1-.275-.098 1.33 1.33 0 0 1-.257-.178 2.379 2.379 0 0 1-.265-.268v2.293h-.929v-5.425h.93l.004.529c.169-.212.353-.368.55-.468.197-.1.426-.15.688-.147a1.509 1.509 0 0 1 1.156.507c.148.166.259.361.33.571.08.236.12.485.115.737m-4.21.89a.946.946 0 0 1-.102.441 1.007 1.007 0 0 1-.282.345c-.13.1-.275.173-.43.22a1.8 1.8 0 0 1-.546.08 1.985 1.985 0 0 1-.637-.097 1.964 1.964 0 0 1-.563-.32l.312-.505c.15.126.284.217.405.275.115.057.24.087.368.087a.557.557 0 0 0 .373-.12.396.396 0 0 0 .14-.322.475.475 0 0 0-.12-.318 1.306 1.306 0 0 0-.187-.173 9.231 9.231 0 0 0-.308-.232 6.787 6.787 0 0 1-.281-.21 2.11 2.11 0 0 1-.252-.232 1.039 1.039 0 0 1-.18-.275.826.826 0 0 1-.069-.347.893.893 0 0 1 .094-.409.935.935 0 0 1 .255-.314 1.22 1.22 0 0 1 .39-.203c.16-.05.327-.074.494-.072.184 0 .368.026.545.076.174.05.338.123.488.219l-.282.454a1.05 1.05 0 0 0-.608-.201.504.504 0 0 0-.323.102.307.307 0 0 0-.126.253c0 .098.041.193.113.26.074.078.203.186.385.325.185.136.336.253.457.355.104.085.202.182.286.286.065.08.115.173.145.273a.808.808 0 0 1 .046.299Z" }) + ] + } + ); +}); + +exports.default = SiSplunk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.d.ts new file mode 100644 index 000000000..f11422e00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSplunk: IconType; +export { SiSplunk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.mjs new file mode 100644 index 000000000..51c192295 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSplunk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSplunk = React.forwardRef(function SiSplunk2({ title = "Splunk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.348 11.911l-2.241-1.091v-.65L24 11.621v.593l-2.893 1.438v-.636zm-5.397 1.841h-.961v-5.31h.961v3.116h.102l1.28-1.481.723.31-1.23 1.316 1.453 1.809-.888.311-1.44-1.996zm-2.577-.002v-2.068a2.685 2.685 0 0 0-.026-.42.791.791 0 0 0-.09-.26c-.113-.202-.308-.304-.59-.304a.888.888 0 0 0-.461.113.673.673 0 0 0-.286.33 1.012 1.012 0 0 0-.07.263c-.012.13-.019.262-.017.395v1.95h-.961v-3.614h.961l.002.485c.185-.2.373-.348.566-.437.192-.089.418-.134.673-.134.286 0 .527.058.721.177a1.016 1.016 0 0 1 .475.665 1.972 1.972 0 0 1 .054.448c.002.1.004.22.004.358v2.053zm-4.115.002l-.002-.485a1.783 1.783 0 0 1-.565.437 1.597 1.597 0 0 1-.674.135c-.285 0-.524-.057-.72-.17a.972.972 0 0 1-.425-.504.75.75 0 0 1-.054-.167 1.918 1.918 0 0 1-.033-.199 2.033 2.033 0 0 1-.017-.258 15.516 15.516 0 0 1-.005-.355V10.13h.956v2.07c-.003.141.006.282.026.42.015.092.045.18.09.26.113.204.308.306.59.306.36 0 .606-.15.74-.449.035-.082.06-.168.074-.257.017-.134.024-.269.022-.403v-1.95h.955v3.624zM7.184 8.44h.955v5.31h-.955zM5.759 11.9c0-.396-.08-.708-.24-.937a.759.759 0 0 0-.657-.345.804.804 0 0 0-.693.366c-.171.245-.256.574-.253.99 0 .405.084.723.25.957a.796.796 0 0 0 .69.347.685.685 0 0 0 .433-.135.985.985 0 0 0 .277-.34c.071-.14.121-.292.147-.448.03-.151.043-.3.046-.455m1.01-.036c.003.266-.04.532-.129.786-.082.23-.204.441-.364.626-.31.361-.764.567-1.24.563a1.67 1.67 0 0 1-.313-.028 1.041 1.041 0 0 1-.275-.098 1.33 1.33 0 0 1-.257-.178 2.379 2.379 0 0 1-.265-.268v2.293h-.929v-5.425h.93l.004.529c.169-.212.353-.368.55-.468.197-.1.426-.15.688-.147a1.509 1.509 0 0 1 1.156.507c.148.166.259.361.33.571.08.236.12.485.115.737m-4.21.89a.946.946 0 0 1-.102.441 1.007 1.007 0 0 1-.282.345c-.13.1-.275.173-.43.22a1.8 1.8 0 0 1-.546.08 1.985 1.985 0 0 1-.637-.097 1.964 1.964 0 0 1-.563-.32l.312-.505c.15.126.284.217.405.275.115.057.24.087.368.087a.557.557 0 0 0 .373-.12.396.396 0 0 0 .14-.322.475.475 0 0 0-.12-.318 1.306 1.306 0 0 0-.187-.173 9.231 9.231 0 0 0-.308-.232 6.787 6.787 0 0 1-.281-.21 2.11 2.11 0 0 1-.252-.232 1.039 1.039 0 0 1-.18-.275.826.826 0 0 1-.069-.347.893.893 0 0 1 .094-.409.935.935 0 0 1 .255-.314 1.22 1.22 0 0 1 .39-.203c.16-.05.327-.074.494-.072.184 0 .368.026.545.076.174.05.338.123.488.219l-.282.454a1.05 1.05 0 0 0-.608-.201.504.504 0 0 0-.323.102.307.307 0 0 0-.126.253c0 .098.041.193.113.26.074.078.203.186.385.325.185.136.336.253.457.355.104.085.202.182.286.286.065.08.115.173.145.273a.808.808 0 0 1 .046.299Z" }) + ] + } + ); +}); + +export { SiSplunk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.cjs new file mode 100644 index 000000000..33d4df5a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#337AB7"; +const SiSpoj = React__namespace.forwardRef(function SiSpoj2({ title = "Sphere Online Judge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.143.056c-.522.127-.713.219-2.28 1.114-.88.506-1.68.957-1.76 1.008-.202.113-.417.236-.59.337-.587.337-3.293 1.893-3.453 1.973-1.05.581-1.72 1.453-2.013 2.587-.084.34-.084 9.532 0 9.865.282 1.131.957 2 2.013 2.587.152.084 2.866 1.64 3.453 1.973.173.102.388.224.59.337.085.051.882.507 1.774 1.012C10.89 24.005 10.89 24 12.01 24c1.11 0 1.125-.004 3-1.076.818-.468 1.546-.885 1.626-.928.072-.047.203-.119.283-.164l.295-.17c.08-.046.21-.118.286-.163.582-.337 3.293-1.893 3.44-1.973 1.05-.582 1.72-1.454 2.013-2.587.084-.341.084-9.532 0-9.866-.282-1.13-.957-2-2.013-2.586a860.394 860.394 0 0 1-3.726-2.137l-.295-.17c-.08-.046-.21-.118-.283-.164-.076-.042-.809-.46-1.626-.928C13.183.047 13.117.022 12.09.004c-.51-.013-.763.004-.95.051zm3.014 4.32c.838.156 2.493.759 2.493.91 0 .03-.207.62-.46 1.313-.384 1.058-.472 1.26-.536 1.251-.047 0-.3-.1-.566-.218-.92-.4-1.48-.515-2.546-.51-1.19 0-1.773.21-2.027.732-.088.186-.109.287-.109.548 0 .414.093.616.421.924.304.279.734.502 1.507.788 2.44.899 3.346 1.36 4.026 2.093.759.806 1.04 1.707.995 3.187-.021.83-.101 1.172-.41 1.786-.64 1.291-1.92 2.04-3.906 2.28-.472.059-.813.067-1.706.051-1.135-.021-1.494-.059-2.347-.244-.801-.173-2.16-.696-2.226-.852-.018-.05.838-2.586.893-2.64.01-.008.212.072.452.182 1.16.518 2.04.7 3.4.704 1.07 0 1.626-.131 2.026-.494.275-.244.355-.434.374-.894.017-.371.013-.406-.114-.663a1.533 1.533 0 0 0-.354-.464c-.304-.265-1.232-.717-2.187-1.055-.953-.34-1.36-.51-1.893-.776-1.176-.594-1.947-1.453-2.253-2.52-.088-.294-.096-.417-.094-1.171 0-.798.01-.864.12-1.223.35-1.142 1.032-1.946 2.12-2.506a6.482 6.482 0 0 1 1.613-.523c.218-.039.446-.076.507-.084a21.5 21.5 0 0 1 1.2-.005c.881.013 1.19.03 1.573.101z" }) + ] + } + ); +}); + +exports.default = SiSpoj; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.d.ts new file mode 100644 index 000000000..46a450b7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#337AB7"; +declare const SiSpoj: IconType; +export { SiSpoj as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.mjs new file mode 100644 index 000000000..52bf9a8cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpoj.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#337AB7"; +const SiSpoj = React.forwardRef(function SiSpoj2({ title = "Sphere Online Judge", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.143.056c-.522.127-.713.219-2.28 1.114-.88.506-1.68.957-1.76 1.008-.202.113-.417.236-.59.337-.587.337-3.293 1.893-3.453 1.973-1.05.581-1.72 1.453-2.013 2.587-.084.34-.084 9.532 0 9.865.282 1.131.957 2 2.013 2.587.152.084 2.866 1.64 3.453 1.973.173.102.388.224.59.337.085.051.882.507 1.774 1.012C10.89 24.005 10.89 24 12.01 24c1.11 0 1.125-.004 3-1.076.818-.468 1.546-.885 1.626-.928.072-.047.203-.119.283-.164l.295-.17c.08-.046.21-.118.286-.163.582-.337 3.293-1.893 3.44-1.973 1.05-.582 1.72-1.454 2.013-2.587.084-.341.084-9.532 0-9.866-.282-1.13-.957-2-2.013-2.586a860.394 860.394 0 0 1-3.726-2.137l-.295-.17c-.08-.046-.21-.118-.283-.164-.076-.042-.809-.46-1.626-.928C13.183.047 13.117.022 12.09.004c-.51-.013-.763.004-.95.051zm3.014 4.32c.838.156 2.493.759 2.493.91 0 .03-.207.62-.46 1.313-.384 1.058-.472 1.26-.536 1.251-.047 0-.3-.1-.566-.218-.92-.4-1.48-.515-2.546-.51-1.19 0-1.773.21-2.027.732-.088.186-.109.287-.109.548 0 .414.093.616.421.924.304.279.734.502 1.507.788 2.44.899 3.346 1.36 4.026 2.093.759.806 1.04 1.707.995 3.187-.021.83-.101 1.172-.41 1.786-.64 1.291-1.92 2.04-3.906 2.28-.472.059-.813.067-1.706.051-1.135-.021-1.494-.059-2.347-.244-.801-.173-2.16-.696-2.226-.852-.018-.05.838-2.586.893-2.64.01-.008.212.072.452.182 1.16.518 2.04.7 3.4.704 1.07 0 1.626-.131 2.026-.494.275-.244.355-.434.374-.894.017-.371.013-.406-.114-.663a1.533 1.533 0 0 0-.354-.464c-.304-.265-1.232-.717-2.187-1.055-.953-.34-1.36-.51-1.893-.776-1.176-.594-1.947-1.453-2.253-2.52-.088-.294-.096-.417-.094-1.171 0-.798.01-.864.12-1.223.35-1.142 1.032-1.946 2.12-2.506a6.482 6.482 0 0 1 1.613-.523c.218-.039.446-.076.507-.084a21.5 21.5 0 0 1 1.2-.005c.881.013 1.19.03 1.573.101z" }) + ] + } + ); +}); + +export { SiSpoj as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.cjs new file mode 100644 index 000000000..326d139b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE4353"; +const SiSpond = React__namespace.forwardRef(function SiSpond2({ title = "Spond", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm-1.403 2.281a3.767 3.767 0 00-.17 2.847c.61 1.79 2.336 2.772 4.069 3.213 2.633.672 4.715 1.388 5.892 2.502 1.037.982 1.435 2.416.803 4.618-.17.59-.486 1.124-.802 1.643-.125-.706-.424-1.411-.924-2.094-3.269-4.462-10.438-3.57-13.174-7.307-.803-1.096-.747-2.236.092-3.288.979-1.226 2.69-1.917 4.214-2.134zm3.163.11c.138-.01.281.002.43.036a9.835 9.835 0 017.076 6.318c-1.514-1.132-3.655-1.86-6.233-2.517-1.528-.39-2.3-1.087-2.542-1.798-.326-.956.308-1.98 1.27-2.04zM3.611 6.895c.125.706.424 1.412.924 2.094 3.269 4.462 10.438 3.57 13.174 7.307.803 1.095.747 2.236-.092 3.288-.979 1.226-2.69 1.916-4.214 2.133.427-.89.489-1.91.17-2.846-.61-1.79-2.336-2.772-4.069-3.213-2.633-.672-4.715-1.388-5.892-2.502-1.037-.982-1.435-2.416-.803-4.618.17-.59.486-1.124.802-1.643zm-.877 8.36c1.514 1.13 3.655 1.858 6.233 2.516 1.528.39 2.3 1.087 2.542 1.798.336.985-.347 2.042-1.357 2.042-.11 0-.225-.012-.342-.039a9.835 9.835 0 01-7.076-6.318z" }) + ] + } + ); +}); + +exports.default = SiSpond; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.d.ts new file mode 100644 index 000000000..8bbc91e6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE4353"; +declare const SiSpond: IconType; +export { SiSpond as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.mjs new file mode 100644 index 000000000..70a97cae9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpond.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE4353"; +const SiSpond = React.forwardRef(function SiSpond2({ title = "Spond", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm-1.403 2.281a3.767 3.767 0 00-.17 2.847c.61 1.79 2.336 2.772 4.069 3.213 2.633.672 4.715 1.388 5.892 2.502 1.037.982 1.435 2.416.803 4.618-.17.59-.486 1.124-.802 1.643-.125-.706-.424-1.411-.924-2.094-3.269-4.462-10.438-3.57-13.174-7.307-.803-1.096-.747-2.236.092-3.288.979-1.226 2.69-1.917 4.214-2.134zm3.163.11c.138-.01.281.002.43.036a9.835 9.835 0 017.076 6.318c-1.514-1.132-3.655-1.86-6.233-2.517-1.528-.39-2.3-1.087-2.542-1.798-.326-.956.308-1.98 1.27-2.04zM3.611 6.895c.125.706.424 1.412.924 2.094 3.269 4.462 10.438 3.57 13.174 7.307.803 1.095.747 2.236-.092 3.288-.979 1.226-2.69 1.916-4.214 2.133.427-.89.489-1.91.17-2.846-.61-1.79-2.336-2.772-4.069-3.213-2.633-.672-4.715-1.388-5.892-2.502-1.037-.982-1.435-2.416-.803-4.618.17-.59.486-1.124.802-1.643zm-.877 8.36c1.514 1.13 3.655 1.858 6.233 2.516 1.528.39 2.3 1.087 2.542 1.798.336.985-.347 2.042-1.357 2.042-.11 0-.225-.012-.342-.039a9.835 9.835 0 01-7.076-6.318z" }) + ] + } + ); +}); + +export { SiSpond as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.cjs new file mode 100644 index 000000000..d9aacc593 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1ED760"; +const SiSpotify = React__namespace.forwardRef(function SiSpotify2({ title = "Spotify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3z" }) + ] + } + ); +}); + +exports.default = SiSpotify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.d.ts new file mode 100644 index 000000000..5d6b8f821 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1ED760"; +declare const SiSpotify: IconType; +export { SiSpotify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.mjs new file mode 100644 index 000000000..c1f9ac909 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1ED760"; +const SiSpotify = React.forwardRef(function SiSpotify2({ title = "Spotify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3z" }) + ] + } + ); +}); + +export { SiSpotify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.cjs new file mode 100644 index 000000000..1f5cef222 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#352A71"; +const SiSpotlight = React__namespace.forwardRef(function SiSpotlight2({ title = "Spotlight", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.126 6.408c.008.101.008.194 0 .295-.034.589-.295 1.027-.656 1.388a2.093 2.093 0 0 1-1.464.606 2.106 2.106 0 0 1-1.498-.572 2.126 2.126 0 0 1-.126-2.996l.101-.101c.353-.345.757-.547 1.372-.606a2.112 2.112 0 0 1 1.582.555c.396.37.64.884.69 1.431zm8.465 7.288l-.631 1.22a3.73 3.73 0 0 0-.37 1.144l-.21 1.363a3.692 3.692 0 0 1-2.003 2.752l-1.229.614c-.362.185-.69.421-.976.707l-.968.985a3.703 3.703 0 0 1-3.24 1.052l-1.355-.227a3.625 3.625 0 0 0-1.203 0l-1.355.227a3.71 3.71 0 0 1-3.24-1.052l-.968-.985a3.669 3.669 0 0 0-.976-.707l-1.229-.614a3.71 3.71 0 0 1-2.003-2.752l-.21-1.363a3.58 3.58 0 0 0-.37-1.144l-.64-1.22a3.68 3.68 0 0 1 0-3.4l.631-1.22a3.73 3.73 0 0 0 .37-1.144l.21-1.363a3.692 3.692 0 0 1 2.003-2.752l1.229-.614c.362-.185.69-.421.976-.707l.968-.976a3.703 3.703 0 0 1 3.24-1.052l1.355.227c.396.067.808.067 1.203 0l1.355-.227a3.71 3.71 0 0 1 3.24 1.052l.968.976c.286.286.614.53.976.707l1.229.614a3.71 3.71 0 0 1 2.003 2.752l.21 1.363c.059.404.185.791.37 1.144l.631 1.22a3.703 3.703 0 0 1 .008 3.4zm-7.287-7.33a3.045 3.045 0 0 0-.345-1.296 3.38 3.38 0 0 0-3.223-1.826c-.135.017-.252.025-.37.042a3.316 3.316 0 0 0-1.868 1.052 3.255 3.255 0 0 0-.841 2.44c.076.926.488 1.717 1.086 2.23.438.379.993.715 1.691.816 1.338.202 2.365-.328 3.029-1.052a3.24 3.24 0 0 0 .841-2.407zm-9.736 6.766c.244-.135.48-.278.715-.412-.084-.968-.16-2.011-.236-2.903.985-.412 1.683-1.212 1.994-2.339.252-.909.143-1.977-.32-2.575a1.533 1.533 0 0 0-.597-.488c-.404-.151-.892-.034-1.229.109a2.902 2.902 0 0 0-.522.303c-.32.227-.614.48-.884.774.286 2.491.572 5.108.85 7.657.076-.034.151-.076.227-.126zm.126-7.153c.017-.076.202-.185.269-.236a.857.857 0 0 1 .429-.16c.463-.017.572.379.597.825.017.236.017.471 0 .707-.059.783-.429 1.287-1.043 1.54-.05-.488-.084-1.077-.143-1.641-.025-.227-.059-.53-.093-.799-.008-.076-.017-.151-.017-.236zm-1.136 6.278a6.08 6.08 0 0 0-.421-1.212 4.559 4.559 0 0 1-.37-1.237c-.067-.597.05-1.119.429-1.397-.143-.463-.261-.917-.404-1.372-.825.438-1.397 1.229-1.397 2.407 0 .724.269 1.195.53 1.717.177.345.328.698.446 1.069.118.396.227.833.194 1.245-.067.791-.396 1.346-.825 1.818-.042.05-.185.168-.185.202.025.059.05.109.084.16.168.353.32.656.488 1.001.025.05.05.151.084.168s.101-.067.143-.118c.143-.151.278-.311.404-.48.698-.968 1.119-2.474.799-3.972zm2.777 1.674c.345-.976.673-1.986.926-3.012.076-.303.168-.614.227-.926.008-.034.034-.109 0-.126-.446.135-.909.252-1.346.396-.185 1.523-.64 2.878-1.153 4.148s-1.144 2.44-1.801 3.559c.808.875 1.834 1.54 2.962 2.095.202-.337.421-.665.614-1.01-.69-.421-1.405-.825-1.994-1.346a39.617 39.617 0 0 0 1.565-3.778zm2.625-2.684c-.286-.194-.64-.337-.951-.505-.623 2.39-1.456 4.594-2.255 6.833.278.151.547.32.833.471.539-1.043.867-2.163 1.296-3.299.21-.555.387-1.128.564-1.708s.353-1.186.513-1.792zm2.424 6.993v-.993c0-.227-.008-.48-.017-.875-.597.076-1.203.126-1.792.21-.025.328-.025.673-.042 1.018.261.017.673-.034.934-.034 0 .488 0 .909.008 1.321 0 .16.025.32-.017.454-.059.202-.269.328-.539.303-.311-.034-.555-.353-.69-.614-.463-.909-.311-2.407-.126-3.416a5.324 5.324 0 0 1 .732-1.927c.345-.547.816-1.001 1.489-1.195 0-.278-.017-.656-.034-.968-.008-.143 0-.32-.034-.396-.008-.008-.025.008-.034.008a3.66 3.66 0 0 0-1.128.64 4.8 4.8 0 0 0-1.22 1.414 5.505 5.505 0 0 0-.286.589c-.362.808-.53 1.742-.631 2.777-.076.791-.084 1.515.034 2.23.042.227.109.454.194.673.295.774.867 1.422 2.028 1.262.446-.059.808-.236 1.186-.396 0-.74-.017-1.515-.017-2.087zm3.559-4.477a22.049 22.049 0 0 1-.109-1.691c-.025-.783 0-1.54.042-2.322 0-.008 0-.008-.008-.008-.303.236-.648.48-.976.715a.418.418 0 0 0-.126.118.853.853 0 0 0 0 .202c-.008 1.128.059 2.322.084 3.332-.278.118-.555.269-.833.379a88.942 88.942 0 0 1-.261-3.408c-.37.126-.707.278-1.069.412.076.555.151 1.086.202 1.599.093.816.135 1.632.143 2.449 0 .236 0 .471-.017.707-.034.496-.025 1.001-.059 1.498-.076.959-.067 1.986-.067 2.895.194-.084.379-.194.572-.286.194-.084.379-.185.564-.295 0-.362.017-.648.025-.959.034-1.186.067-2.179.025-3.231.32-.151.64-.303.976-.446.227 1.355.682 2.541 1.094 3.753.345-.261.64-.572.968-.858a22.97 22.97 0 0 1-.614-1.919 13.182 13.182 0 0 1-.555-2.634zm2.583-3.787c.194-.076.37-.194.555-.286s.362-.194.539-.303c-.337-.968-.757-1.851-1.338-2.609a10.081 10.081 0 0 0-1.977-1.986c0-.017-.025 0-.025.008a7.414 7.414 0 0 0-.513.724c-.034.059-.151.21-.143.269.05.067.109.126.177.177.067.067.135.118.185.168.303.311.555.589.833.926.042.05.143.16.143.21a1.388 1.388 0 0 1-.076.269c-.135.48-.227.951-.311 1.456a12.46 12.46 0 0 0-.151 2.962c.076 1.052.278 2.003.505 2.928.109.454.244.909.412 1.346.126.328.252.656.396.951.05.101.076.219.16.295.286-.37.589-.724.867-1.094-.421-.749-.707-1.666-.926-2.617a6.908 6.908 0 0 1-.177-1.01c-.126-1.372-.177-2.861.194-4.157.295.429.522.892.673 1.372z" }) + ] + } + ); +}); + +exports.default = SiSpotlight; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.d.ts new file mode 100644 index 000000000..73a95d37f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#352A71"; +declare const SiSpotlight: IconType; +export { SiSpotlight as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.mjs new file mode 100644 index 000000000..789a7fd18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpotlight.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#352A71"; +const SiSpotlight = React.forwardRef(function SiSpotlight2({ title = "Spotlight", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.126 6.408c.008.101.008.194 0 .295-.034.589-.295 1.027-.656 1.388a2.093 2.093 0 0 1-1.464.606 2.106 2.106 0 0 1-1.498-.572 2.126 2.126 0 0 1-.126-2.996l.101-.101c.353-.345.757-.547 1.372-.606a2.112 2.112 0 0 1 1.582.555c.396.37.64.884.69 1.431zm8.465 7.288l-.631 1.22a3.73 3.73 0 0 0-.37 1.144l-.21 1.363a3.692 3.692 0 0 1-2.003 2.752l-1.229.614c-.362.185-.69.421-.976.707l-.968.985a3.703 3.703 0 0 1-3.24 1.052l-1.355-.227a3.625 3.625 0 0 0-1.203 0l-1.355.227a3.71 3.71 0 0 1-3.24-1.052l-.968-.985a3.669 3.669 0 0 0-.976-.707l-1.229-.614a3.71 3.71 0 0 1-2.003-2.752l-.21-1.363a3.58 3.58 0 0 0-.37-1.144l-.64-1.22a3.68 3.68 0 0 1 0-3.4l.631-1.22a3.73 3.73 0 0 0 .37-1.144l.21-1.363a3.692 3.692 0 0 1 2.003-2.752l1.229-.614c.362-.185.69-.421.976-.707l.968-.976a3.703 3.703 0 0 1 3.24-1.052l1.355.227c.396.067.808.067 1.203 0l1.355-.227a3.71 3.71 0 0 1 3.24 1.052l.968.976c.286.286.614.53.976.707l1.229.614a3.71 3.71 0 0 1 2.003 2.752l.21 1.363c.059.404.185.791.37 1.144l.631 1.22a3.703 3.703 0 0 1 .008 3.4zm-7.287-7.33a3.045 3.045 0 0 0-.345-1.296 3.38 3.38 0 0 0-3.223-1.826c-.135.017-.252.025-.37.042a3.316 3.316 0 0 0-1.868 1.052 3.255 3.255 0 0 0-.841 2.44c.076.926.488 1.717 1.086 2.23.438.379.993.715 1.691.816 1.338.202 2.365-.328 3.029-1.052a3.24 3.24 0 0 0 .841-2.407zm-9.736 6.766c.244-.135.48-.278.715-.412-.084-.968-.16-2.011-.236-2.903.985-.412 1.683-1.212 1.994-2.339.252-.909.143-1.977-.32-2.575a1.533 1.533 0 0 0-.597-.488c-.404-.151-.892-.034-1.229.109a2.902 2.902 0 0 0-.522.303c-.32.227-.614.48-.884.774.286 2.491.572 5.108.85 7.657.076-.034.151-.076.227-.126zm.126-7.153c.017-.076.202-.185.269-.236a.857.857 0 0 1 .429-.16c.463-.017.572.379.597.825.017.236.017.471 0 .707-.059.783-.429 1.287-1.043 1.54-.05-.488-.084-1.077-.143-1.641-.025-.227-.059-.53-.093-.799-.008-.076-.017-.151-.017-.236zm-1.136 6.278a6.08 6.08 0 0 0-.421-1.212 4.559 4.559 0 0 1-.37-1.237c-.067-.597.05-1.119.429-1.397-.143-.463-.261-.917-.404-1.372-.825.438-1.397 1.229-1.397 2.407 0 .724.269 1.195.53 1.717.177.345.328.698.446 1.069.118.396.227.833.194 1.245-.067.791-.396 1.346-.825 1.818-.042.05-.185.168-.185.202.025.059.05.109.084.16.168.353.32.656.488 1.001.025.05.05.151.084.168s.101-.067.143-.118c.143-.151.278-.311.404-.48.698-.968 1.119-2.474.799-3.972zm2.777 1.674c.345-.976.673-1.986.926-3.012.076-.303.168-.614.227-.926.008-.034.034-.109 0-.126-.446.135-.909.252-1.346.396-.185 1.523-.64 2.878-1.153 4.148s-1.144 2.44-1.801 3.559c.808.875 1.834 1.54 2.962 2.095.202-.337.421-.665.614-1.01-.69-.421-1.405-.825-1.994-1.346a39.617 39.617 0 0 0 1.565-3.778zm2.625-2.684c-.286-.194-.64-.337-.951-.505-.623 2.39-1.456 4.594-2.255 6.833.278.151.547.32.833.471.539-1.043.867-2.163 1.296-3.299.21-.555.387-1.128.564-1.708s.353-1.186.513-1.792zm2.424 6.993v-.993c0-.227-.008-.48-.017-.875-.597.076-1.203.126-1.792.21-.025.328-.025.673-.042 1.018.261.017.673-.034.934-.034 0 .488 0 .909.008 1.321 0 .16.025.32-.017.454-.059.202-.269.328-.539.303-.311-.034-.555-.353-.69-.614-.463-.909-.311-2.407-.126-3.416a5.324 5.324 0 0 1 .732-1.927c.345-.547.816-1.001 1.489-1.195 0-.278-.017-.656-.034-.968-.008-.143 0-.32-.034-.396-.008-.008-.025.008-.034.008a3.66 3.66 0 0 0-1.128.64 4.8 4.8 0 0 0-1.22 1.414 5.505 5.505 0 0 0-.286.589c-.362.808-.53 1.742-.631 2.777-.076.791-.084 1.515.034 2.23.042.227.109.454.194.673.295.774.867 1.422 2.028 1.262.446-.059.808-.236 1.186-.396 0-.74-.017-1.515-.017-2.087zm3.559-4.477a22.049 22.049 0 0 1-.109-1.691c-.025-.783 0-1.54.042-2.322 0-.008 0-.008-.008-.008-.303.236-.648.48-.976.715a.418.418 0 0 0-.126.118.853.853 0 0 0 0 .202c-.008 1.128.059 2.322.084 3.332-.278.118-.555.269-.833.379a88.942 88.942 0 0 1-.261-3.408c-.37.126-.707.278-1.069.412.076.555.151 1.086.202 1.599.093.816.135 1.632.143 2.449 0 .236 0 .471-.017.707-.034.496-.025 1.001-.059 1.498-.076.959-.067 1.986-.067 2.895.194-.084.379-.194.572-.286.194-.084.379-.185.564-.295 0-.362.017-.648.025-.959.034-1.186.067-2.179.025-3.231.32-.151.64-.303.976-.446.227 1.355.682 2.541 1.094 3.753.345-.261.64-.572.968-.858a22.97 22.97 0 0 1-.614-1.919 13.182 13.182 0 0 1-.555-2.634zm2.583-3.787c.194-.076.37-.194.555-.286s.362-.194.539-.303c-.337-.968-.757-1.851-1.338-2.609a10.081 10.081 0 0 0-1.977-1.986c0-.017-.025 0-.025.008a7.414 7.414 0 0 0-.513.724c-.034.059-.151.21-.143.269.05.067.109.126.177.177.067.067.135.118.185.168.303.311.555.589.833.926.042.05.143.16.143.21a1.388 1.388 0 0 1-.076.269c-.135.48-.227.951-.311 1.456a12.46 12.46 0 0 0-.151 2.962c.076 1.052.278 2.003.505 2.928.109.454.244.909.412 1.346.126.328.252.656.396.951.05.101.076.219.16.295.286-.37.589-.724.867-1.094-.421-.749-.707-1.666-.926-2.617a6.908 6.908 0 0 1-.177-1.01c-.126-1.372-.177-2.861.194-4.157.295.429.522.892.673 1.372z" }) + ] + } + ); +}); + +export { SiSpotlight as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.cjs new file mode 100644 index 000000000..0da858954 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B2A5"; +const SiSpreadshirt = React__namespace.forwardRef(function SiSpreadshirt2({ title = "Spreadshirt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6.306L7.796 2.102 0 9.898l12 12 12-12-7.796-7.796zm0 12L3.592 9.898l4.204-4.204L12 9.898l4.184-4.184 4.204 4.204" }) + ] + } + ); +}); + +exports.default = SiSpreadshirt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.d.ts new file mode 100644 index 000000000..4e0624343 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B2A5"; +declare const SiSpreadshirt: IconType; +export { SiSpreadshirt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.mjs new file mode 100644 index 000000000..197988a49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreadshirt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B2A5"; +const SiSpreadshirt = React.forwardRef(function SiSpreadshirt2({ title = "Spreadshirt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 6.306L7.796 2.102 0 9.898l12 12 12-12-7.796-7.796zm0 12L3.592 9.898l4.204-4.204L12 9.898l4.184-4.184 4.204 4.204" }) + ] + } + ); +}); + +export { SiSpreadshirt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.cjs new file mode 100644 index 000000000..638359125 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F5C300"; +const SiSpreaker = React__namespace.forwardRef(function SiSpreaker2({ title = "Spreaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.615 0l-5.64 6.54L.529 4.718l8.68 7.372-8.537 7.463 8.411-1.984L14.843 24l.71-8.601 7.918-3.483-7.963-3.33L14.621 0h-.006z" }) + ] + } + ); +}); + +exports.default = SiSpreaker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.d.ts new file mode 100644 index 000000000..6f330b97d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F5C300"; +declare const SiSpreaker: IconType; +export { SiSpreaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.mjs new file mode 100644 index 000000000..7b9f8420f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpreaker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F5C300"; +const SiSpreaker = React.forwardRef(function SiSpreaker2({ title = "Spreaker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.615 0l-5.64 6.54L.529 4.718l8.68 7.372-8.537 7.463 8.411-1.984L14.843 24l.71-8.601 7.918-3.483-7.963-3.33L14.621 0h-.006z" }) + ] + } + ); +}); + +export { SiSpreaker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.cjs new file mode 100644 index 000000000..baabdf83c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6DB33F"; +const SiSpring = React__namespace.forwardRef(function SiSpring2({ title = "Spring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.8537 1.4158a10.4504 10.4504 0 0 1-1.284 2.2471A11.9666 11.9666 0 1 0 3.8518 20.7757l.4445.3951a11.9543 11.9543 0 0 0 19.6316-8.2971c.3457-3.0126-.568-6.8649-2.0743-11.458zM5.5805 20.8745a1.0174 1.0174 0 1 1-.1482-1.4323 1.0396 1.0396 0 0 1 .1482 1.4323zm16.1991-3.5806c-2.9385 3.9263-9.2601 2.5928-13.2852 2.7904 0 0-.7161.0494-1.4323.1481 0 0 .2717-.1234.6174-.2469 2.8398-.9877 4.1732-1.1853 5.9018-2.0743 3.2349-1.6545 6.4698-5.2844 7.1118-9.0379-1.2347 3.6053-4.9881 6.7167-8.3959 7.9761-2.3459.8643-6.5685 1.7039-6.5685 1.7039l-.1729-.0988c-2.8645-1.4076-2.9632-7.6304 2.2718-9.6306 2.2966-.889 4.4696-.395 6.9637-.9877 2.6422-.6174 5.7043-2.5929 6.939-5.1857 1.3828 4.1732 3.062 10.643.0493 14.6434z" }) + ] + } + ); +}); + +exports.default = SiSpring; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.d.ts new file mode 100644 index 000000000..58c99ebe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6DB33F"; +declare const SiSpring: IconType; +export { SiSpring as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.mjs new file mode 100644 index 000000000..91fa64e27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpring.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6DB33F"; +const SiSpring = React.forwardRef(function SiSpring2({ title = "Spring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.8537 1.4158a10.4504 10.4504 0 0 1-1.284 2.2471A11.9666 11.9666 0 1 0 3.8518 20.7757l.4445.3951a11.9543 11.9543 0 0 0 19.6316-8.2971c.3457-3.0126-.568-6.8649-2.0743-11.458zM5.5805 20.8745a1.0174 1.0174 0 1 1-.1482-1.4323 1.0396 1.0396 0 0 1 .1482 1.4323zm16.1991-3.5806c-2.9385 3.9263-9.2601 2.5928-13.2852 2.7904 0 0-.7161.0494-1.4323.1481 0 0 .2717-.1234.6174-.2469 2.8398-.9877 4.1732-1.1853 5.9018-2.0743 3.2349-1.6545 6.4698-5.2844 7.1118-9.0379-1.2347 3.6053-4.9881 6.7167-8.3959 7.9761-2.3459.8643-6.5685 1.7039-6.5685 1.7039l-.1729-.0988c-2.8645-1.4076-2.9632-7.6304 2.2718-9.6306 2.2966-.889 4.4696-.395 6.9637-.9877 2.6422-.6174 5.7043-2.5929 6.939-5.1857 1.3828 4.1732 3.062 10.643.0493 14.6434z" }) + ] + } + ); +}); + +export { SiSpring as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.cjs new file mode 100644 index 000000000..aaaf8ca45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSpringCreators = React__namespace.forwardRef(function SiSpringCreators2({ title = "Spring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.563 24c-1.839 0-4.435-.537-7.028-2.87l2.035-2.262c3.636 3.273 7.425 1.98 8.595.888.078-.079.156-.153.234-.23-3.83-.373-6.629-3.086-6.822-3.277-2.933-2.889-3.6-6.808-1.512-8.93s6.015-1.522 8.95 1.357c.257.246 3.116 3.052 3.677 6.605a6.776 6.776 0 002.727-5.426 6.62 6.62 0 00-1.995-4.791c-1.334-1.303-3.222-2.02-5.306-2.02V0c2.88 0 5.519 1.024 7.43 2.882 1.881 1.83 2.917 4.304 2.917 6.973a9.831 9.831 0 01-6.116 9.086c-.416 1.1-1.12 2.117-2.106 3.04-.97.905-2.865 1.908-5.28 2.01-.13.007-.262.009-.4.009zM7.283 9.077c-.425 0-.79.115-1.046.375-.749.762-.275 2.904 1.48 4.633l.008.009c.025.024 2.771 2.687 6.025 2.414v-.005c.015-2.873-2.808-5.597-2.837-5.625l-.02-.019C9.85 9.832 8.37 9.077 7.283 9.077Z" }) + ] + } + ); +}); + +exports.default = SiSpringCreators; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.d.ts new file mode 100644 index 000000000..2bdba4fbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSpringCreators: IconType; +export { SiSpringCreators as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.mjs new file mode 100644 index 000000000..cc045d094 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringCreators.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSpringCreators = React.forwardRef(function SiSpringCreators2({ title = "Spring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.563 24c-1.839 0-4.435-.537-7.028-2.87l2.035-2.262c3.636 3.273 7.425 1.98 8.595.888.078-.079.156-.153.234-.23-3.83-.373-6.629-3.086-6.822-3.277-2.933-2.889-3.6-6.808-1.512-8.93s6.015-1.522 8.95 1.357c.257.246 3.116 3.052 3.677 6.605a6.776 6.776 0 002.727-5.426 6.62 6.62 0 00-1.995-4.791c-1.334-1.303-3.222-2.02-5.306-2.02V0c2.88 0 5.519 1.024 7.43 2.882 1.881 1.83 2.917 4.304 2.917 6.973a9.831 9.831 0 01-6.116 9.086c-.416 1.1-1.12 2.117-2.106 3.04-.97.905-2.865 1.908-5.28 2.01-.13.007-.262.009-.4.009zM7.283 9.077c-.425 0-.79.115-1.046.375-.749.762-.275 2.904 1.48 4.633l.008.009c.025.024 2.771 2.687 6.025 2.414v-.005c.015-2.873-2.808-5.597-2.837-5.625l-.02-.019C9.85 9.832 8.37 9.077 7.283 9.077Z" }) + ] + } + ); +}); + +export { SiSpringCreators as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.cjs new file mode 100644 index 000000000..afe3df184 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6DB33F"; +const SiSpringboot = React__namespace.forwardRef(function SiSpringboot2({ title = "Spring Boot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.693 10.7058-4.73-8.1844c-.4094-.7106-1.4166-1.2942-2.2402-1.2942H7.2725c-.819 0-1.8308.5836-2.2402 1.2942L.307 10.7058c-.4095.7106-.4095 1.873 0 2.5837l4.7252 8.189c.4094.7107 1.4166 1.2943 2.2402 1.2943h9.455c.819 0 1.826-.5836 2.2402-1.2942l4.7252-8.189c.4095-.7107.4095-1.8732 0-2.5838zM10.9763 5.7547c0-.5365.4377-.9742.9742-.9742s.9742.4377.9742.9742v5.8217c0 .5366-.4377.9742-.9742.9742s-.9742-.4376-.9742-.9742zm.9742 12.4294c-3.6427 0-6.6077-2.965-6.6077-6.6077.0047-2.0896.993-4.0521 2.6685-5.304a.8657.8657 0 0 1 1.2142.1788.8657.8657 0 0 1-.1788 1.2143c-2.1602 1.6048-2.612 4.6592-1.0072 6.8194 1.6049 2.1603 4.6593 2.612 6.8195 1.0072 1.2378-.9177 1.9673-2.372 1.9673-3.9157a4.8972 4.8972 0 0 0-1.9861-3.925c-.386-.2824-.466-.8284-.1836-1.2143.2824-.386.8283-.466 1.2143-.1835 1.6895 1.2471 2.6826 3.2238 2.6873 5.3228 0 3.6474-2.965 6.6077-6.6077 6.6077z" }) + ] + } + ); +}); + +exports.default = SiSpringboot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.d.ts new file mode 100644 index 000000000..3509d6b8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6DB33F"; +declare const SiSpringboot: IconType; +export { SiSpringboot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.mjs new file mode 100644 index 000000000..952c24ddb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringboot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6DB33F"; +const SiSpringboot = React.forwardRef(function SiSpringboot2({ title = "Spring Boot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.693 10.7058-4.73-8.1844c-.4094-.7106-1.4166-1.2942-2.2402-1.2942H7.2725c-.819 0-1.8308.5836-2.2402 1.2942L.307 10.7058c-.4095.7106-.4095 1.873 0 2.5837l4.7252 8.189c.4094.7107 1.4166 1.2943 2.2402 1.2943h9.455c.819 0 1.826-.5836 2.2402-1.2942l4.7252-8.189c.4095-.7107.4095-1.8732 0-2.5838zM10.9763 5.7547c0-.5365.4377-.9742.9742-.9742s.9742.4377.9742.9742v5.8217c0 .5366-.4377.9742-.9742.9742s-.9742-.4376-.9742-.9742zm.9742 12.4294c-3.6427 0-6.6077-2.965-6.6077-6.6077.0047-2.0896.993-4.0521 2.6685-5.304a.8657.8657 0 0 1 1.2142.1788.8657.8657 0 0 1-.1788 1.2143c-2.1602 1.6048-2.612 4.6592-1.0072 6.8194 1.6049 2.1603 4.6593 2.612 6.8195 1.0072 1.2378-.9177 1.9673-2.372 1.9673-3.9157a4.8972 4.8972 0 0 0-1.9861-3.925c-.386-.2824-.466-.8284-.1836-1.2143.2824-.386.8283-.466 1.2143-.1835 1.6895 1.2471 2.6826 3.2238 2.6873 5.3228 0 3.6474-2.965 6.6077-6.6077 6.6077z" }) + ] + } + ); +}); + +export { SiSpringboot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.cjs new file mode 100644 index 000000000..2d3aba960 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6DB33F"; +const SiSpringsecurity = React__namespace.forwardRef(function SiSpringsecurity2({ title = "Spring Security", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.59 2.066 11.993 0 3.41 2.066v6.612h4.557a3.804 3.804 0 0 0 0 .954H3.41v3.106C3.41 19.867 11.994 24 11.994 24s8.582-4.133 8.582-11.258V9.635h-4.545a3.616 3.616 0 0 0 0-.954h4.558zM12 12.262h-.006a3.109 3.109 0 1 1 .006 0zm-.006-4.579a.804.804 0 0 0-.37 1.52v.208l.238.237v.159l.159.159v.159l-.14.14.15.246v.159l-.16.189.223.222.246-.246V9.218a.804.804 0 0 0-.346-1.535zm0 .836a.299.299 0 1 1 .298-.299.299.299 0 0 1-.298.3z" }) + ] + } + ); +}); + +exports.default = SiSpringsecurity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.d.ts new file mode 100644 index 000000000..cc6c58660 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6DB33F"; +declare const SiSpringsecurity: IconType; +export { SiSpringsecurity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.mjs new file mode 100644 index 000000000..5b12cfcda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpringsecurity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6DB33F"; +const SiSpringsecurity = React.forwardRef(function SiSpringsecurity2({ title = "Spring Security", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.59 2.066 11.993 0 3.41 2.066v6.612h4.557a3.804 3.804 0 0 0 0 .954H3.41v3.106C3.41 19.867 11.994 24 11.994 24s8.582-4.133 8.582-11.258V9.635h-4.545a3.616 3.616 0 0 0 0-.954h4.558zM12 12.262h-.006a3.109 3.109 0 1 1 .006 0zm-.006-4.579a.804.804 0 0 0-.37 1.52v.208l.238.237v.159l.159.159v.159l-.14.14.15.246v.159l-.16.189.223.222.246-.246V9.218a.804.804 0 0 0-.346-1.535zm0 .836a.299.299 0 1 1 .298-.299.299.299 0 0 1-.298.3z" }) + ] + } + ); +}); + +export { SiSpringsecurity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.cjs new file mode 100644 index 000000000..6352ac8d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8C0000"; +const SiSpyderide = React__namespace.forwardRef(function SiSpyderide2({ title = "Spyder IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.053.237a4.05 4.05 0 0 0-1.89.467A4.1 4.1 0 0 0 .524 2.29a7 7 0 0 0-.2.4c-.036.094-.076.186-.107.275a3.6 3.6 0 0 0-.147.567 4 4 0 0 0-.07.76v15.42a4 4 0 0 0 .4 1.756 4.05 4.05 0 0 0 3.654 2.295h8.234a.22.22 0 0 0 .22-.22v-.983a.22.22 0 0 0-.22-.219h-1.07l-3.188-6.46 7.276-9.642a.8.8 0 0 0 .137-.284l6.668 1.02v1.506a.22.22 0 0 0 .218.217h.99a.22.22 0 0 0 .218-.217v-4.19a4.04 4.04 0 0 0-1.506-3.146A4.04 4.04 0 0 0 19.48.237Zm0 1.42h2.97l.213 1.717-3.938-.601-1.242-.193a2.62 2.62 0 0 1 1.997-.923m9.586 0 .345 2.748-5.39-.821-.244-1.915zm1.318 0h4.304a2.855 2.855 0 0 1 2.848 2.848v1.142L15.326 4.61ZM2.13 3.92l4.924.756-2.749 3.653Zm6.394.98 5.508.843-6.65 8.824-2.43-4.927 3.57-4.733Zm-7.1.555 1.76 3.57-1.762.215Zm17.964 4.608c-2.625 0-4.98.368-4.98 3.069v.514c0 1.35.465 2.772 2.355 3.508l3.484 1.333c1.129.464 1.423.93 1.423 1.641v.295c0 1.055-.614 1.276-2.576 1.276h-4.539a.324.324 0 0 0-.368.368v1.08c0 .195.073.343.368.366.417.05 2.354.222 4.489.222 3.314 0 4.956-.536 4.956-3.284v-.273c0-1.35-.196-2.601-2.453-3.46l-3.263-1.3c-1.202-.442-1.52-1.033-1.52-1.717v-.32c0-.883.661-1.274 1.79-1.274h4.563a.326.326 0 0 0 .369-.369v-1.055a.363.363 0 0 0-.344-.393 31 31 0 0 0-3.754-.227m-15.592.203 2.464 4.98-4.838.608v-5.289Zm3.07 6.227 2.888 5.85H4.272a2.857 2.857 0 0 1-2.85-2.85v-2.316z" }) + ] + } + ); +}); + +exports.default = SiSpyderide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.d.ts new file mode 100644 index 000000000..e10be2904 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8C0000"; +declare const SiSpyderide: IconType; +export { SiSpyderide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.mjs new file mode 100644 index 000000000..9dacaacc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSpyderide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8C0000"; +const SiSpyderide = React.forwardRef(function SiSpyderide2({ title = "Spyder IDE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.053.237a4.05 4.05 0 0 0-1.89.467A4.1 4.1 0 0 0 .524 2.29a7 7 0 0 0-.2.4c-.036.094-.076.186-.107.275a3.6 3.6 0 0 0-.147.567 4 4 0 0 0-.07.76v15.42a4 4 0 0 0 .4 1.756 4.05 4.05 0 0 0 3.654 2.295h8.234a.22.22 0 0 0 .22-.22v-.983a.22.22 0 0 0-.22-.219h-1.07l-3.188-6.46 7.276-9.642a.8.8 0 0 0 .137-.284l6.668 1.02v1.506a.22.22 0 0 0 .218.217h.99a.22.22 0 0 0 .218-.217v-4.19a4.04 4.04 0 0 0-1.506-3.146A4.04 4.04 0 0 0 19.48.237Zm0 1.42h2.97l.213 1.717-3.938-.601-1.242-.193a2.62 2.62 0 0 1 1.997-.923m9.586 0 .345 2.748-5.39-.821-.244-1.915zm1.318 0h4.304a2.855 2.855 0 0 1 2.848 2.848v1.142L15.326 4.61ZM2.13 3.92l4.924.756-2.749 3.653Zm6.394.98 5.508.843-6.65 8.824-2.43-4.927 3.57-4.733Zm-7.1.555 1.76 3.57-1.762.215Zm17.964 4.608c-2.625 0-4.98.368-4.98 3.069v.514c0 1.35.465 2.772 2.355 3.508l3.484 1.333c1.129.464 1.423.93 1.423 1.641v.295c0 1.055-.614 1.276-2.576 1.276h-4.539a.324.324 0 0 0-.368.368v1.08c0 .195.073.343.368.366.417.05 2.354.222 4.489.222 3.314 0 4.956-.536 4.956-3.284v-.273c0-1.35-.196-2.601-2.453-3.46l-3.263-1.3c-1.202-.442-1.52-1.033-1.52-1.717v-.32c0-.883.661-1.274 1.79-1.274h4.563a.326.326 0 0 0 .369-.369v-1.055a.363.363 0 0 0-.344-.393 31 31 0 0 0-3.754-.227m-15.592.203 2.464 4.98-4.838.608v-5.289Zm3.07 6.227 2.888 5.85H4.272a2.857 2.857 0 0 1-2.85-2.85v-2.316z" }) + ] + } + ); +}); + +export { SiSpyderide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.cjs new file mode 100644 index 000000000..a71fdebb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D71F00"; +const SiSqlalchemy = React__namespace.forwardRef(function SiSqlalchemy2({ title = "SQLAlchemy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.8 15.955a44.068 44.068 0 0 1-1.673-.691c-1.736-.757-1.981-.772-2.499-.143-.119.146-.25.236-.287.2-.111-.111.219-.644.617-.993.325-.285.433-.325.791-.285.228.025.985.29 1.682.586 1.573.669 2.034.811 2.635.811.731 0 1.106-.512.876-1.192-.057-.171-.04-.228.074-.228.213 0 .322.797.168 1.255a1.617 1.617 0 0 1-.424.614c-.251.211-.41.257-.879.254a3.853 3.853 0 0 1-1.082-.188h.001Zm.301-2.225c0-.048.179-.134.401-.188l.401-.099.086-1.446c.094-1.599.025-3.172-.148-3.383-.063-.074-.253-.165-.427-.205-.705-.156-.236-.264 1.133-.264 1.368 0 1.803.099 1.152.264-.561.14-.564.148-.564 2.43 0 1.266.046 2.22.111 2.342.092.171.228.207.752.207 1.081 0 1.453-.255 1.747-1.203.088-.284.315-.233.236.054-.037.134-.097.54-.134.91l-.068.669H14.44c-1.286 0-2.339-.04-2.339-.088Zm5.312-.068c0-.086.083-.171.219-.236.183-.086.302-.265.734-1.11.686-1.337 1.767-3.634 1.87-3.978.079-.262.097-.276.392-.31.171-.02.313-.031.316-.025l.527 1.152c.284.628.856 1.824 1.271 2.654.695 1.397.772 1.523 1.005 1.636.142.069.253.174.253.237 0 .099-.122.111-1.175.111-1.056 0-1.175-.012-1.175-.114 0-.068.091-.142.236-.191.134-.043.236-.122.236-.182 0-.057-.139-.432-.31-.834l-.31-.731h-2.35l-.225.495c-.421.928-.43 1.147-.037 1.252.196.054.25.097.227.185-.025.103-.127.117-.867.117-.794.006-.837 0-.837-.128Zm-15.652.025a10.933 10.933 0 0 1-.808-.196l-.549-.154.282-.518.281-.518-.227-.281c-.322-.399-.737-1.272-.74-1.554-.003-.657.851-1.61 1.898-2.122.72-.353 1.291-.362 2.009-.026l.54.253.157-.224c.085-.123.156-.285.156-.356 0-.071.071-.134.157-.134.085 0 .156.023.156.048 0 .063-.629 1.651-.669 1.691-.017.016-.187-.063-.381-.177-.546-.321-1.232-.535-1.764-.549-1.238-.031-1.667 1.178-.794 2.236l.308.373.839-.68c.942-.76 1.05-.777 1.784-.27.825.569.839 1.434.042 2.339-.705.805-1.431 1.027-2.677.819Zm5.984-.165c-.646-.301-1.229-.876-1.565-1.547-.538-1.076-.373-1.765.646-2.695.856-.782 1.556-1.087 2.498-1.087.68 0 .825.037 1.266.307 1.044.646 1.303 1.878.675 3.221-.737 1.577-2.294 2.37-3.52 1.801Zm-3.872-.702c.409-.322.381-.917-.063-1.389-.558-.592-.731-.566-1.713.253-.976.814-.982.783.185 1.155.771.251 1.255.242 1.591-.019Zm6.034-.046c.484-.239.817-1.343.68-2.259-.17-1.13-1.698-1.901-2.819-1.423-1.153.493-1.17 1.804-.037 2.985.791.828 1.471 1.044 2.176.697Zm11.359-1.414c.04-.071-.845-2.003-.928-2.023-.06-.017-.976 1.872-.976 2.014 0 .072 1.861.08 1.904.009Z" }) + ] + } + ); +}); + +exports.default = SiSqlalchemy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.d.ts new file mode 100644 index 000000000..a49d0a282 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D71F00"; +declare const SiSqlalchemy: IconType; +export { SiSqlalchemy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.mjs new file mode 100644 index 000000000..3e15f5b3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlalchemy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D71F00"; +const SiSqlalchemy = React.forwardRef(function SiSqlalchemy2({ title = "SQLAlchemy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.8 15.955a44.068 44.068 0 0 1-1.673-.691c-1.736-.757-1.981-.772-2.499-.143-.119.146-.25.236-.287.2-.111-.111.219-.644.617-.993.325-.285.433-.325.791-.285.228.025.985.29 1.682.586 1.573.669 2.034.811 2.635.811.731 0 1.106-.512.876-1.192-.057-.171-.04-.228.074-.228.213 0 .322.797.168 1.255a1.617 1.617 0 0 1-.424.614c-.251.211-.41.257-.879.254a3.853 3.853 0 0 1-1.082-.188h.001Zm.301-2.225c0-.048.179-.134.401-.188l.401-.099.086-1.446c.094-1.599.025-3.172-.148-3.383-.063-.074-.253-.165-.427-.205-.705-.156-.236-.264 1.133-.264 1.368 0 1.803.099 1.152.264-.561.14-.564.148-.564 2.43 0 1.266.046 2.22.111 2.342.092.171.228.207.752.207 1.081 0 1.453-.255 1.747-1.203.088-.284.315-.233.236.054-.037.134-.097.54-.134.91l-.068.669H14.44c-1.286 0-2.339-.04-2.339-.088Zm5.312-.068c0-.086.083-.171.219-.236.183-.086.302-.265.734-1.11.686-1.337 1.767-3.634 1.87-3.978.079-.262.097-.276.392-.31.171-.02.313-.031.316-.025l.527 1.152c.284.628.856 1.824 1.271 2.654.695 1.397.772 1.523 1.005 1.636.142.069.253.174.253.237 0 .099-.122.111-1.175.111-1.056 0-1.175-.012-1.175-.114 0-.068.091-.142.236-.191.134-.043.236-.122.236-.182 0-.057-.139-.432-.31-.834l-.31-.731h-2.35l-.225.495c-.421.928-.43 1.147-.037 1.252.196.054.25.097.227.185-.025.103-.127.117-.867.117-.794.006-.837 0-.837-.128Zm-15.652.025a10.933 10.933 0 0 1-.808-.196l-.549-.154.282-.518.281-.518-.227-.281c-.322-.399-.737-1.272-.74-1.554-.003-.657.851-1.61 1.898-2.122.72-.353 1.291-.362 2.009-.026l.54.253.157-.224c.085-.123.156-.285.156-.356 0-.071.071-.134.157-.134.085 0 .156.023.156.048 0 .063-.629 1.651-.669 1.691-.017.016-.187-.063-.381-.177-.546-.321-1.232-.535-1.764-.549-1.238-.031-1.667 1.178-.794 2.236l.308.373.839-.68c.942-.76 1.05-.777 1.784-.27.825.569.839 1.434.042 2.339-.705.805-1.431 1.027-2.677.819Zm5.984-.165c-.646-.301-1.229-.876-1.565-1.547-.538-1.076-.373-1.765.646-2.695.856-.782 1.556-1.087 2.498-1.087.68 0 .825.037 1.266.307 1.044.646 1.303 1.878.675 3.221-.737 1.577-2.294 2.37-3.52 1.801Zm-3.872-.702c.409-.322.381-.917-.063-1.389-.558-.592-.731-.566-1.713.253-.976.814-.982.783.185 1.155.771.251 1.255.242 1.591-.019Zm6.034-.046c.484-.239.817-1.343.68-2.259-.17-1.13-1.698-1.901-2.819-1.423-1.153.493-1.17 1.804-.037 2.985.791.828 1.471 1.044 2.176.697Zm11.359-1.414c.04-.071-.845-2.003-.928-2.023-.06-.017-.976 1.872-.976 2.014 0 .072 1.861.08 1.904.009Z" }) + ] + } + ); +}); + +export { SiSqlalchemy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.cjs new file mode 100644 index 000000000..5a3f48305 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003B57"; +const SiSqlite = React__namespace.forwardRef(function SiSqlite2({ title = "SQLite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.678.521c-1.032-.92-2.28-.55-3.513.544a8.71 8.71 0 0 0-.547.535c-2.109 2.237-4.066 6.38-4.674 9.544.237.48.422 1.093.544 1.561a13.044 13.044 0 0 1 .164.703s-.019-.071-.096-.296l-.05-.146a1.689 1.689 0 0 0-.033-.08c-.138-.32-.518-.995-.686-1.289-.143.423-.27.818-.376 1.176.484.884.778 2.4.778 2.4s-.025-.099-.147-.442c-.107-.303-.644-1.244-.772-1.464-.217.804-.304 1.346-.226 1.478.152.256.296.698.422 1.186.286 1.1.485 2.44.485 2.44l.017.224a22.41 22.41 0 0 0 .056 2.748c.095 1.146.273 2.13.5 2.657l.155-.084c-.334-1.038-.47-2.399-.41-3.967.09-2.398.642-5.29 1.661-8.304 1.723-4.55 4.113-8.201 6.3-9.945-1.993 1.8-4.692 7.63-5.5 9.788-.904 2.416-1.545 4.684-1.931 6.857.666-2.037 2.821-2.912 2.821-2.912s1.057-1.304 2.292-3.166c-.74.169-1.955.458-2.362.629-.6.251-.762.337-.762.337s1.945-1.184 3.613-1.72C21.695 7.9 24.195 2.767 21.678.521m-18.573.543A1.842 1.842 0 0 0 1.27 2.9v16.608a1.84 1.84 0 0 0 1.835 1.834h9.418a22.953 22.953 0 0 1-.052-2.707c-.006-.062-.011-.141-.016-.2a27.01 27.01 0 0 0-.473-2.378c-.121-.47-.275-.898-.369-1.057-.116-.197-.098-.31-.097-.432 0-.12.015-.245.037-.386a9.98 9.98 0 0 1 .234-1.045l.217-.028c-.017-.035-.014-.065-.031-.097l-.041-.381a32.8 32.8 0 0 1 .382-1.194l.2-.019c-.008-.016-.01-.038-.018-.053l-.043-.316c.63-3.28 2.587-7.443 4.8-9.791.066-.069.133-.128.198-.194Z" }) + ] + } + ); +}); + +exports.default = SiSqlite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.d.ts new file mode 100644 index 000000000..2832eb2fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003B57"; +declare const SiSqlite: IconType; +export { SiSqlite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.mjs new file mode 100644 index 000000000..61b2523a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSqlite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003B57"; +const SiSqlite = React.forwardRef(function SiSqlite2({ title = "SQLite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.678.521c-1.032-.92-2.28-.55-3.513.544a8.71 8.71 0 0 0-.547.535c-2.109 2.237-4.066 6.38-4.674 9.544.237.48.422 1.093.544 1.561a13.044 13.044 0 0 1 .164.703s-.019-.071-.096-.296l-.05-.146a1.689 1.689 0 0 0-.033-.08c-.138-.32-.518-.995-.686-1.289-.143.423-.27.818-.376 1.176.484.884.778 2.4.778 2.4s-.025-.099-.147-.442c-.107-.303-.644-1.244-.772-1.464-.217.804-.304 1.346-.226 1.478.152.256.296.698.422 1.186.286 1.1.485 2.44.485 2.44l.017.224a22.41 22.41 0 0 0 .056 2.748c.095 1.146.273 2.13.5 2.657l.155-.084c-.334-1.038-.47-2.399-.41-3.967.09-2.398.642-5.29 1.661-8.304 1.723-4.55 4.113-8.201 6.3-9.945-1.993 1.8-4.692 7.63-5.5 9.788-.904 2.416-1.545 4.684-1.931 6.857.666-2.037 2.821-2.912 2.821-2.912s1.057-1.304 2.292-3.166c-.74.169-1.955.458-2.362.629-.6.251-.762.337-.762.337s1.945-1.184 3.613-1.72C21.695 7.9 24.195 2.767 21.678.521m-18.573.543A1.842 1.842 0 0 0 1.27 2.9v16.608a1.84 1.84 0 0 0 1.835 1.834h9.418a22.953 22.953 0 0 1-.052-2.707c-.006-.062-.011-.141-.016-.2a27.01 27.01 0 0 0-.473-2.378c-.121-.47-.275-.898-.369-1.057-.116-.197-.098-.31-.097-.432 0-.12.015-.245.037-.386a9.98 9.98 0 0 1 .234-1.045l.217-.028c-.017-.035-.014-.065-.031-.097l-.041-.381a32.8 32.8 0 0 1 .382-1.194l.2-.019c-.008-.016-.01-.038-.018-.053l-.043-.316c.63-3.28 2.587-7.443 4.8-9.791.066-.069.133-.128.198-.194Z" }) + ] + } + ); +}); + +export { SiSqlite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.cjs new file mode 100644 index 000000000..64e1472b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3E4348"; +const SiSquare = React__namespace.forwardRef(function SiSquare2({ title = "Square", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.01 0A4.01 4.01 0 000 4.01v15.98c0 2.21 1.8 4 4.01 4.01h15.98C22.2 24 24 22.2 24 19.99V4A4.01 4.01 0 0019.99 0H4zm1.62 4.36h12.74c.7 0 1.26.57 1.26 1.27v12.74c0 .7-.56 1.27-1.26 1.27H5.63c-.7 0-1.26-.57-1.26-1.27V5.63a1.27 1.27 0 011.26-1.27zm3.83 4.35a.73.73 0 00-.73.73v5.09c0 .4.32.72.72.72h5.1a.73.73 0 00.73-.72V9.44a.73.73 0 00-.73-.73h-5.1Z" }) + ] + } + ); +}); + +exports.default = SiSquare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.d.ts new file mode 100644 index 000000000..1d764b8ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3E4348"; +declare const SiSquare: IconType; +export { SiSquare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.mjs new file mode 100644 index 000000000..f43c43dd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3E4348"; +const SiSquare = React.forwardRef(function SiSquare2({ title = "Square", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.01 0A4.01 4.01 0 000 4.01v15.98c0 2.21 1.8 4 4.01 4.01h15.98C22.2 24 24 22.2 24 19.99V4A4.01 4.01 0 0019.99 0H4zm1.62 4.36h12.74c.7 0 1.26.57 1.26 1.27v12.74c0 .7-.56 1.27-1.26 1.27H5.63c-.7 0-1.26-.57-1.26-1.27V5.63a1.27 1.27 0 011.26-1.27zm3.83 4.35a.73.73 0 00-.73.73v5.09c0 .4.32.72.72.72h5.1a.73.73 0 00.73-.72V9.44a.73.73 0 00-.73-.73h-5.1Z" }) + ] + } + ); +}); + +export { SiSquare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.cjs new file mode 100644 index 000000000..348e2888c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiSquareenix = React__namespace.forwardRef(function SiSquareenix2({ title = "Square Enix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.723 0v24h20.554v-4.496H7.037V4.088h15.006V0zm9.751 9.46v4.497h8.584V9.459z" }) + ] + } + ); +}); + +exports.default = SiSquareenix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.d.ts new file mode 100644 index 000000000..6bdceb9bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiSquareenix: IconType; +export { SiSquareenix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.mjs new file mode 100644 index 000000000..deaf5e7f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquareenix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiSquareenix = React.forwardRef(function SiSquareenix2({ title = "Square Enix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.723 0v24h20.554v-4.496H7.037V4.088h15.006V0zm9.751 9.46v4.497h8.584V9.459z" }) + ] + } + ); +}); + +export { SiSquareenix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.cjs new file mode 100644 index 000000000..c2d8220d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSquarespace = React__namespace.forwardRef(function SiSquarespace2({ title = "Squarespace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.655 8.719c-1.802-1.801-4.726-1.801-6.564 0l-7.351 7.35c-.45.45-.45 1.2 0 1.65.45.449 1.2.449 1.65 0l7.351-7.351c.899-.899 2.362-.899 3.264 0 .9.9.9 2.364 0 3.264l-7.239 7.239c.9.899 2.362.899 3.263 0l5.589-5.589c1.836-1.838 1.836-4.763.037-6.563zm-2.475 2.437c-.451-.45-1.201-.45-1.65 0l-7.354 7.389c-.9.899-2.361.899-3.262 0-.45-.45-1.2-.45-1.65 0s-.45 1.2 0 1.649c1.801 1.801 4.726 1.801 6.564 0l7.351-7.35c.449-.487.449-1.239.001-1.688zm-2.439-7.35c-1.801-1.801-4.726-1.801-6.564 0l-7.351 7.351c-.45.449-.45 1.199 0 1.649s1.2.45 1.65 0l7.395-7.351c.9-.899 2.371-.899 3.27 0 .451.45 1.201.45 1.65 0 .421-.487.421-1.199-.029-1.649h-.021zm-2.475 2.437c-.45-.45-1.2-.45-1.65 0l-7.351 7.389c-.899.9-2.363.9-3.265 0-.9-.899-.9-2.363 0-3.264l7.239-7.239c-.9-.9-2.362-.9-3.263 0L1.35 8.719c-1.8 1.8-1.8 4.725 0 6.563 1.801 1.801 4.725 1.801 6.564 0l7.35-7.351c.451-.488.451-1.238 0-1.688h.002z" }) + ] + } + ); +}); + +exports.default = SiSquarespace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.d.ts new file mode 100644 index 000000000..fcccb791f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSquarespace: IconType; +export { SiSquarespace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.mjs new file mode 100644 index 000000000..0a697a00c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSquarespace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSquarespace = React.forwardRef(function SiSquarespace2({ title = "Squarespace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.655 8.719c-1.802-1.801-4.726-1.801-6.564 0l-7.351 7.35c-.45.45-.45 1.2 0 1.65.45.449 1.2.449 1.65 0l7.351-7.351c.899-.899 2.362-.899 3.264 0 .9.9.9 2.364 0 3.264l-7.239 7.239c.9.899 2.362.899 3.263 0l5.589-5.589c1.836-1.838 1.836-4.763.037-6.563zm-2.475 2.437c-.451-.45-1.201-.45-1.65 0l-7.354 7.389c-.9.899-2.361.899-3.262 0-.45-.45-1.2-.45-1.65 0s-.45 1.2 0 1.649c1.801 1.801 4.726 1.801 6.564 0l7.351-7.35c.449-.487.449-1.239.001-1.688zm-2.439-7.35c-1.801-1.801-4.726-1.801-6.564 0l-7.351 7.351c-.45.449-.45 1.199 0 1.649s1.2.45 1.65 0l7.395-7.351c.9-.899 2.371-.899 3.27 0 .451.45 1.201.45 1.65 0 .421-.487.421-1.199-.029-1.649h-.021zm-2.475 2.437c-.45-.45-1.2-.45-1.65 0l-7.351 7.389c-.899.9-2.363.9-3.265 0-.9-.899-.9-2.363 0-3.264l7.239-7.239c-.9-.9-2.362-.9-3.263 0L1.35 8.719c-1.8 1.8-1.8 4.725 0 6.563 1.801 1.801 4.725 1.801 6.564 0l7.35-7.351c.451-.488.451-1.238 0-1.688h.002z" }) + ] + } + ); +}); + +export { SiSquarespace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.cjs new file mode 100644 index 000000000..87275e5f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#AF001E"; +const SiSrgssr = React__namespace.forwardRef(function SiSrgssr2({ title = "SRG SSR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 7.861v8.278h24V7.86Zm2.979 2.135c.494 0 .883.032 1.06.057.08.012.122.047.11.138l-.073.457c-.024.135-.068.153-.226.141a11.818 11.818 0 0 0-.914-.043c-.281 0-.575.062-.575.379 0 .226.14.323.446.402l.45.116c.806.207 1.038.604 1.038 1.134 0 .903-.706 1.221-1.676 1.221-.433 0-.878-.032-1.055-.057-.079-.012-.123-.047-.11-.138l.073-.471c.025-.134.067-.153.225-.14.152.012.597.048.853.048.561 0 .793-.06.793-.402 0-.232-.157-.34-.529-.438l-.451-.117c-.592-.152-.934-.524-.934-1.152 0-.695.489-1.135 1.495-1.135zm7.275 0c.628 0 .903.037.945.043.128.012.151.068.133.19l-.072.439c-.025.134-.068.15-.227.139-.177-.012-.487-.03-.719-.03-.768 0-1.123.239-1.123 1.172 0 .738.214 1.274 1.043 1.274.14 0 .263-.006.3-.012v-.854h-.286c-.122 0-.16-.044-.16-.166v-.42c0-.121.038-.164.16-.164h1c.122 0 .158.043.158.164v1.958c0 .134-.038.184-.166.214s-.376.06-1.04.06c-1.483 0-1.96-.853-1.96-2.054 0-1.214.58-1.953 2.014-1.953zm4.129 0c.494 0 .885.03 1.062.055.08.012.122.049.11.14l-.075.457c-.024.135-.065.153-.224.141a11.818 11.818 0 0 0-.914-.043c-.28 0-.574.062-.574.379 0 .226.14.323.445.402l.451.116c.805.207 1.037.604 1.037 1.134 0 .903-.708 1.22-1.678 1.22a9.58 9.58 0 0 1-1.054-.056c-.08-.012-.122-.047-.11-.138l.075-.471c.024-.134.066-.153.224-.14.152.012.598.048.854.048.56 0 .793-.06.793-.402 0-.232-.16-.342-.532-.44l-.45-.115c-.592-.152-.932-.524-.932-1.152 0-.695.486-1.135 1.492-1.135zm3.154 0c.494 0 .884.03 1.06.055.08.012.122.049.11.14l-.072.457c-.024.135-.068.153-.227.141a11.813 11.813 0 0 0-.914-.043c-.28 0-.574.062-.574.379 0 .226.14.323.445.402l.451.116c.805.207 1.038.604 1.038 1.134 0 .903-.707 1.22-1.676 1.22-.433 0-.88-.031-1.057-.056-.08-.012-.122-.047-.11-.138l.075-.471c.024-.134.066-.153.225-.14.152.012.597.048.853.048.561 0 .793-.06.793-.402 0-.232-.157-.342-.53-.44l-.452-.115c-.592-.152-.932-.524-.932-1.152 0-.695.488-1.135 1.494-1.135zM4.98 10.04h1.359c.94 0 1.367.427 1.367 1.19 0 .591-.336.86-.635 1.048l.89 1.477c.099.152-.006.207-.09.207h-.665c-.146 0-.197-.043-.258-.147l-.724-1.304c-.075-.128-.071-.183-.037-.319l.06-.255c.055-.232.116-.152.293-.225.14-.061.281-.16.281-.47 0-.342-.177-.475-.543-.475h-.58v3.03c0 .123-.036.165-.158.165h-.56c-.122 0-.159-.042-.159-.164v-3.594c0-.122.037-.164.159-.164zm14.558 0h1.36c.939 0 1.365.427 1.365 1.19 0 .591-.334.86-.633 1.048l.89 1.477c.098.152-.006.207-.091.207h-.666c-.147 0-.195-.043-.256-.147l-.725-1.304c-.08-.14-.07-.184-.037-.319l.06-.255c.055-.232.117-.152.294-.225.14-.061.28-.16.28-.47 0-.342-.176-.475-.542-.475h-.58v3.029c0 .122-.036.166-.158.166h-.56c-.123 0-.16-.044-.16-.166v-3.592c0-.122.037-.164.16-.164z" }) + ] + } + ); +}); + +exports.default = SiSrgssr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.d.ts new file mode 100644 index 000000000..66ada86fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#AF001E"; +declare const SiSrgssr: IconType; +export { SiSrgssr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.mjs new file mode 100644 index 000000000..e30c41377 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSrgssr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#AF001E"; +const SiSrgssr = React.forwardRef(function SiSrgssr2({ title = "SRG SSR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 7.861v8.278h24V7.86Zm2.979 2.135c.494 0 .883.032 1.06.057.08.012.122.047.11.138l-.073.457c-.024.135-.068.153-.226.141a11.818 11.818 0 0 0-.914-.043c-.281 0-.575.062-.575.379 0 .226.14.323.446.402l.45.116c.806.207 1.038.604 1.038 1.134 0 .903-.706 1.221-1.676 1.221-.433 0-.878-.032-1.055-.057-.079-.012-.123-.047-.11-.138l.073-.471c.025-.134.067-.153.225-.14.152.012.597.048.853.048.561 0 .793-.06.793-.402 0-.232-.157-.34-.529-.438l-.451-.117c-.592-.152-.934-.524-.934-1.152 0-.695.489-1.135 1.495-1.135zm7.275 0c.628 0 .903.037.945.043.128.012.151.068.133.19l-.072.439c-.025.134-.068.15-.227.139-.177-.012-.487-.03-.719-.03-.768 0-1.123.239-1.123 1.172 0 .738.214 1.274 1.043 1.274.14 0 .263-.006.3-.012v-.854h-.286c-.122 0-.16-.044-.16-.166v-.42c0-.121.038-.164.16-.164h1c.122 0 .158.043.158.164v1.958c0 .134-.038.184-.166.214s-.376.06-1.04.06c-1.483 0-1.96-.853-1.96-2.054 0-1.214.58-1.953 2.014-1.953zm4.129 0c.494 0 .885.03 1.062.055.08.012.122.049.11.14l-.075.457c-.024.135-.065.153-.224.141a11.818 11.818 0 0 0-.914-.043c-.28 0-.574.062-.574.379 0 .226.14.323.445.402l.451.116c.805.207 1.037.604 1.037 1.134 0 .903-.708 1.22-1.678 1.22a9.58 9.58 0 0 1-1.054-.056c-.08-.012-.122-.047-.11-.138l.075-.471c.024-.134.066-.153.224-.14.152.012.598.048.854.048.56 0 .793-.06.793-.402 0-.232-.16-.342-.532-.44l-.45-.115c-.592-.152-.932-.524-.932-1.152 0-.695.486-1.135 1.492-1.135zm3.154 0c.494 0 .884.03 1.06.055.08.012.122.049.11.14l-.072.457c-.024.135-.068.153-.227.141a11.813 11.813 0 0 0-.914-.043c-.28 0-.574.062-.574.379 0 .226.14.323.445.402l.451.116c.805.207 1.038.604 1.038 1.134 0 .903-.707 1.22-1.676 1.22-.433 0-.88-.031-1.057-.056-.08-.012-.122-.047-.11-.138l.075-.471c.024-.134.066-.153.225-.14.152.012.597.048.853.048.561 0 .793-.06.793-.402 0-.232-.157-.342-.53-.44l-.452-.115c-.592-.152-.932-.524-.932-1.152 0-.695.488-1.135 1.494-1.135zM4.98 10.04h1.359c.94 0 1.367.427 1.367 1.19 0 .591-.336.86-.635 1.048l.89 1.477c.099.152-.006.207-.09.207h-.665c-.146 0-.197-.043-.258-.147l-.724-1.304c-.075-.128-.071-.183-.037-.319l.06-.255c.055-.232.116-.152.293-.225.14-.061.281-.16.281-.47 0-.342-.177-.475-.543-.475h-.58v3.03c0 .123-.036.165-.158.165h-.56c-.122 0-.159-.042-.159-.164v-3.594c0-.122.037-.164.159-.164zm14.558 0h1.36c.939 0 1.365.427 1.365 1.19 0 .591-.334.86-.633 1.048l.89 1.477c.098.152-.006.207-.091.207h-.666c-.147 0-.195-.043-.256-.147l-.725-1.304c-.08-.14-.07-.184-.037-.319l.06-.255c.055-.232.117-.152.294-.225.14-.061.28-.16.28-.47 0-.342-.176-.475-.542-.475h-.58v3.029c0 .122-.036.166-.158.166h-.56c-.123 0-.16-.044-.16-.166v-3.592c0-.122.037-.164.16-.164z" }) + ] + } + ); +}); + +export { SiSrgssr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.cjs new file mode 100644 index 000000000..ec840879a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#154881"; +const SiSsrn = React__namespace.forwardRef(function SiSsrn2({ title = "SSRN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.087 7.242c-1.704 0-2.878.996-2.878 2.395 0 .627.21 1.141.611 1.56.45.465.932.723 2.058 1.108 1.173.37 1.398.483 1.64.66.417.337.658.803.658 1.301 0 1.013-.964 1.833-2.154 1.833-.723 0-1.478-.29-1.945-.756-.353-.353-.594-.755-.803-1.366-.032-.08-.065-.128-.129-.128-.08 0-.145.08-.145.192 0 .129.065.499.177.852.097.338.161.563.161.595.097.482.113.498.241.611.338.257 1.334.498 2.074.498 1.848 0 3.166-1.173 3.166-2.813 0-1.205-.787-2.073-2.41-2.604-1.624-.53-1.705-.579-2.074-.98a1.476 1.476 0 0 1-.386-1.013c0-.868.707-1.495 1.688-1.495 1.173 0 2.266.691 2.572 1.64.08.257.112.305.209.305.064 0 .128-.08.128-.193 0-.048-.016-.16-.032-.29-.177-1.092-.193-1.14-.21-1.333 0-.225-.047-.322-.16-.322a.121.121 0 0 0-.064.032c-.16.129-.177.145-.257.145a.495.495 0 0 1-.129-.032c-.852-.354-.996-.402-1.607-.402zm5.256.032c-1.222 0-2.17.498-2.604 1.302l.096.659c.017.096.016.16.016.193 0 .257-.16.45-.369.498.048.499.257.933.61 1.286.45.466.933.724 2.058 1.11 1.158.385 1.399.482 1.64.658.418.322.659.804.659 1.302 0 1.013-.964 1.833-2.154 1.833-.723 0-1.48-.29-1.945-.755a2.82 2.82 0 0 1-.386-.483c-.096.225-.209.45-.338.643.097.45.113.483.242.579.337.257 1.334.498 2.073.498 1.833 0 3.167-1.173 3.167-2.813-.032-1.173-.836-2.025-2.46-2.572-1.64-.546-1.72-.578-2.073-.98a1.477 1.477 0 0 1-.386-1.013c0-.884.707-1.495 1.688-1.495 1.173 0 2.25.691 2.572 1.64.08.257.128.305.209.305.064 0 .129-.08.129-.193 0-.048-.017-.144-.033-.289-.177-1.093-.192-1.141-.209-1.334 0-.225-.048-.322-.16-.322-.032 0-.049.016-.065.032-.16.13-.176.145-.257.145-.032 0-.064-.016-.129-.032-.835-.37-.996-.402-1.591-.402zm4.662.177c-.306 0-.643.016-.98.032-.724.048-.724.048-1.062.048h-.128a.81.81 0 0 1 .048.306c.016.128.016.193.112.723l.113.707a1.1 1.1 0 0 1 .016.193.51.51 0 0 1-.145.37v2.524c.29.417.434.9.434 1.446 0 .627-.177 1.19-.482 1.656-.08.579-.29.723-.82.884-.128.032-.16.048-.16.129 0 .096.048.128.176.128.048 0 .21-.016.338-.032.225-.032.563-.048.884-.048.627 0 1.318.016 1.479.048.177.016.321.032.402.032.112 0 .209-.048.209-.128s-.08-.129-.241-.145c-.933-.096-1.238-.434-1.206-1.35v-2.38c.016-.224.048-.257.386-.24h.723c.29 0 .37.048.515.273.048.08.08.128.08.144l1.623 2.492c.66 1.013 1.238 1.399 2.042 1.399.482 0 .932-.129.932-.258 0-.048-.048-.096-.112-.096-.691.016-1.158-.37-1.977-1.624l-1.833-2.668c1.06-.547 1.64-1.318 1.64-2.299 0-.707-.29-1.334-.804-1.72-.514-.385-1.174-.546-2.202-.546zm10.802.112c-.08 0-.177.016-.322.033-.16.032-.321.048-.595.048-.385 0-1.028-.032-1.27-.048l-.289-.016c-.128 0-.193.048-.193.128 0 .096.049.145.193.177 1.254.177 1.367.466 1.334 3.536v3.15c0 .21-.016.258-.08.242-.032 0-.08-.048-.177-.16l-6.044-6.88c-.128-.145-.209-.193-.353-.193-.048 0-.129 0-.225.016h-.113c-.032 0-.321 0-.514-.016.08.048.16.112.24.16.58.434.933 1.174.933 1.977 0 .129-.016.258-.032.37v4.18l.16.24c.145.21.258.386.37.547v-4.71c0-.225.032-.289.129-.289.064 0 .08.016.16.096l5.546 6.366c.21.241.21.241.306.241.16 0 .209-.097.209-.386v-.128c.016-.386.016-.98.016-1.817v-4.276l.016-.417c-.016-1.592.048-1.753.659-1.913.096-.016.129-.049.129-.113 0-.08-.08-.145-.193-.145zm-11.156.338c.611 0 1.27.209 1.64.547.466.385.739 1.028.739 1.64 0 1.092-.691 1.767-1.849 1.767h-.739c-.434-.016-.466-.048-.466-.466V8.721c0-.45 0-.499.08-.611.097-.129.29-.209.595-.209z" }) + ] + } + ); +}); + +exports.default = SiSsrn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.d.ts new file mode 100644 index 000000000..2cf8284fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#154881"; +declare const SiSsrn: IconType; +export { SiSsrn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.mjs new file mode 100644 index 000000000..cfcc36efa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSsrn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#154881"; +const SiSsrn = React.forwardRef(function SiSsrn2({ title = "SSRN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.087 7.242c-1.704 0-2.878.996-2.878 2.395 0 .627.21 1.141.611 1.56.45.465.932.723 2.058 1.108 1.173.37 1.398.483 1.64.66.417.337.658.803.658 1.301 0 1.013-.964 1.833-2.154 1.833-.723 0-1.478-.29-1.945-.756-.353-.353-.594-.755-.803-1.366-.032-.08-.065-.128-.129-.128-.08 0-.145.08-.145.192 0 .129.065.499.177.852.097.338.161.563.161.595.097.482.113.498.241.611.338.257 1.334.498 2.074.498 1.848 0 3.166-1.173 3.166-2.813 0-1.205-.787-2.073-2.41-2.604-1.624-.53-1.705-.579-2.074-.98a1.476 1.476 0 0 1-.386-1.013c0-.868.707-1.495 1.688-1.495 1.173 0 2.266.691 2.572 1.64.08.257.112.305.209.305.064 0 .128-.08.128-.193 0-.048-.016-.16-.032-.29-.177-1.092-.193-1.14-.21-1.333 0-.225-.047-.322-.16-.322a.121.121 0 0 0-.064.032c-.16.129-.177.145-.257.145a.495.495 0 0 1-.129-.032c-.852-.354-.996-.402-1.607-.402zm5.256.032c-1.222 0-2.17.498-2.604 1.302l.096.659c.017.096.016.16.016.193 0 .257-.16.45-.369.498.048.499.257.933.61 1.286.45.466.933.724 2.058 1.11 1.158.385 1.399.482 1.64.658.418.322.659.804.659 1.302 0 1.013-.964 1.833-2.154 1.833-.723 0-1.48-.29-1.945-.755a2.82 2.82 0 0 1-.386-.483c-.096.225-.209.45-.338.643.097.45.113.483.242.579.337.257 1.334.498 2.073.498 1.833 0 3.167-1.173 3.167-2.813-.032-1.173-.836-2.025-2.46-2.572-1.64-.546-1.72-.578-2.073-.98a1.477 1.477 0 0 1-.386-1.013c0-.884.707-1.495 1.688-1.495 1.173 0 2.25.691 2.572 1.64.08.257.128.305.209.305.064 0 .129-.08.129-.193 0-.048-.017-.144-.033-.289-.177-1.093-.192-1.141-.209-1.334 0-.225-.048-.322-.16-.322-.032 0-.049.016-.065.032-.16.13-.176.145-.257.145-.032 0-.064-.016-.129-.032-.835-.37-.996-.402-1.591-.402zm4.662.177c-.306 0-.643.016-.98.032-.724.048-.724.048-1.062.048h-.128a.81.81 0 0 1 .048.306c.016.128.016.193.112.723l.113.707a1.1 1.1 0 0 1 .016.193.51.51 0 0 1-.145.37v2.524c.29.417.434.9.434 1.446 0 .627-.177 1.19-.482 1.656-.08.579-.29.723-.82.884-.128.032-.16.048-.16.129 0 .096.048.128.176.128.048 0 .21-.016.338-.032.225-.032.563-.048.884-.048.627 0 1.318.016 1.479.048.177.016.321.032.402.032.112 0 .209-.048.209-.128s-.08-.129-.241-.145c-.933-.096-1.238-.434-1.206-1.35v-2.38c.016-.224.048-.257.386-.24h.723c.29 0 .37.048.515.273.048.08.08.128.08.144l1.623 2.492c.66 1.013 1.238 1.399 2.042 1.399.482 0 .932-.129.932-.258 0-.048-.048-.096-.112-.096-.691.016-1.158-.37-1.977-1.624l-1.833-2.668c1.06-.547 1.64-1.318 1.64-2.299 0-.707-.29-1.334-.804-1.72-.514-.385-1.174-.546-2.202-.546zm10.802.112c-.08 0-.177.016-.322.033-.16.032-.321.048-.595.048-.385 0-1.028-.032-1.27-.048l-.289-.016c-.128 0-.193.048-.193.128 0 .096.049.145.193.177 1.254.177 1.367.466 1.334 3.536v3.15c0 .21-.016.258-.08.242-.032 0-.08-.048-.177-.16l-6.044-6.88c-.128-.145-.209-.193-.353-.193-.048 0-.129 0-.225.016h-.113c-.032 0-.321 0-.514-.016.08.048.16.112.24.16.58.434.933 1.174.933 1.977 0 .129-.016.258-.032.37v4.18l.16.24c.145.21.258.386.37.547v-4.71c0-.225.032-.289.129-.289.064 0 .08.016.16.096l5.546 6.366c.21.241.21.241.306.241.16 0 .209-.097.209-.386v-.128c.016-.386.016-.98.016-1.817v-4.276l.016-.417c-.016-1.592.048-1.753.659-1.913.096-.016.129-.049.129-.113 0-.08-.08-.145-.193-.145zm-11.156.338c.611 0 1.27.209 1.64.547.466.385.739 1.028.739 1.64 0 1.092-.691 1.767-1.849 1.767h-.739c-.434-.016-.466-.048-.466-.466V8.721c0-.45 0-.499.08-.611.097-.129.29-.209.595-.209z" }) + ] + } + ); +}); + +export { SiSsrn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSst.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSst.cjs new file mode 100644 index 000000000..e5ed99068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSst.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E27152"; +const SiSst = React__namespace.forwardRef(function SiSst2({ title = "SST", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.68 7.205h-3.776a.263.263 0 0 1-.223-.403l1.666-2.664a.897.897 0 0 0-.76-1.372H4.092c-.54 0-1.04.29-1.31.758C2.09 4.734.758 7.054.23 7.974a1.688 1.688 0 0 0-.223.839L0 15.77a1.499 1.499 0 0 0 1.499 1.5h4.78a.082.082 0 0 1 .067.127l-1.648 2.43a.9.9 0 0 0 .745 1.406h14.542a2.07 2.07 0 0 0 1.81-1.068c.465-.842 1.201-2.008 1.656-2.831.36-.653.549-1.387.549-2.133V8.526c0-.73-.591-1.32-1.32-1.32zm-18.65-1.9a1.43 1.43 0 0 1 1.43-1.43h13.278a.339.339 0 0 1 .284.525l-1.744 2.67a.299.299 0 0 1-.25.135H9.363c-.514 0-.993.26-1.274.69-.833 1.278-2.342 3.882-2.347 3.923h-.187a1.456 1.456 0 0 1-1.526-1.455V5.306zM2.255 16.35a.521.521 0 0 1-.41-.843l1.606-2.055a1.664 1.664 0 0 1 1.308-.64l14.028-.049a.321.321 0 0 1 .275.49l-1.233 2.015c-.194.316-.538.51-.91.51H7.854a1 1 0 0 0-.905.572H2.256zm19.934 1.113c-.366.635-.975 1.532-1.33 2.15-.25.433-.71.7-1.21.7H6.075a.27.27 0 0 1-.221-.425l1.968-2.793a.936.936 0 0 1 .765-.396h13.16a.51.51 0 0 1 .442.764zm.795-2.451a.766.766 0 0 1-.766.765h-2.631a.49.49 0 0 1-.416-.75l1.086-1.746a.968.968 0 0 0-.822-1.48H7.782a.389.389 0 0 1-.329-.597c.43-.675.936-1.767 1.371-2.452a1.346 1.346 0 0 1 1.136-.624h12.274a.75.75 0 0 1 .75.75v6.134z" }) + ] + } + ); +}); + +exports.default = SiSst; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSst.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSst.d.ts new file mode 100644 index 000000000..ecc442014 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSst.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E27152"; +declare const SiSst: IconType; +export { SiSst as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSst.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSst.mjs new file mode 100644 index 000000000..e79a2b625 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSst.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E27152"; +const SiSst = React.forwardRef(function SiSst2({ title = "SST", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.68 7.205h-3.776a.263.263 0 0 1-.223-.403l1.666-2.664a.897.897 0 0 0-.76-1.372H4.092c-.54 0-1.04.29-1.31.758C2.09 4.734.758 7.054.23 7.974a1.688 1.688 0 0 0-.223.839L0 15.77a1.499 1.499 0 0 0 1.499 1.5h4.78a.082.082 0 0 1 .067.127l-1.648 2.43a.9.9 0 0 0 .745 1.406h14.542a2.07 2.07 0 0 0 1.81-1.068c.465-.842 1.201-2.008 1.656-2.831.36-.653.549-1.387.549-2.133V8.526c0-.73-.591-1.32-1.32-1.32zm-18.65-1.9a1.43 1.43 0 0 1 1.43-1.43h13.278a.339.339 0 0 1 .284.525l-1.744 2.67a.299.299 0 0 1-.25.135H9.363c-.514 0-.993.26-1.274.69-.833 1.278-2.342 3.882-2.347 3.923h-.187a1.456 1.456 0 0 1-1.526-1.455V5.306zM2.255 16.35a.521.521 0 0 1-.41-.843l1.606-2.055a1.664 1.664 0 0 1 1.308-.64l14.028-.049a.321.321 0 0 1 .275.49l-1.233 2.015c-.194.316-.538.51-.91.51H7.854a1 1 0 0 0-.905.572H2.256zm19.934 1.113c-.366.635-.975 1.532-1.33 2.15-.25.433-.71.7-1.21.7H6.075a.27.27 0 0 1-.221-.425l1.968-2.793a.936.936 0 0 1 .765-.396h13.16a.51.51 0 0 1 .442.764zm.795-2.451a.766.766 0 0 1-.766.765h-2.631a.49.49 0 0 1-.416-.75l1.086-1.746a.968.968 0 0 0-.822-1.48H7.782a.389.389 0 0 1-.329-.597c.43-.675.936-1.767 1.371-2.452a1.346 1.346 0 0 1 1.136-.624h12.274a.75.75 0 0 1 .75.75v6.134z" }) + ] + } + ); +}); + +export { SiSst as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.cjs new file mode 100644 index 000000000..fca6a103c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#207BEA"; +const SiStackbit = React__namespace.forwardRef(function SiStackbit2({ title = "Stackbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.9488 2.306L1.1706 7.9673c-.784.4493-1.2385 1.3261-1.1623 2.242v3.7743c-.0664.9275.406 1.8084 1.2066 2.2495l9.7782 5.4725a2.2606 2.2606 0 002.2305 0l9.5937-5.4725c.7883-.45 1.2477-1.329 1.1752-2.2495v-3.7744c.0683-.9116-.3846-1.7816-1.1623-2.2325l-9.5937-5.6615A2.2646 2.2646 0 0012.0845 2c-.3917 0-.7833.102-1.1357.306zm.7749 14.0366l-9.7782-5.6615a.745.745 0 01-.2884-.2951c-.1974-.3648-.0683-.824.2884-1.0259l9.7782-5.6615a.7242.7242 0 01.738 0l9.5936 5.6747c.353.2086.474.6702.2703 1.0314-.2037.3612-.6551.485-1.0082.2764l-9.2284-5.452-8.2765 4.7915 8.638 5.001c.3567.2053.483.6675.2823 1.032-.1361.2477-.3874.3868-.6462.3868a.7266.7266 0 01-.363-.0978zm.0147 3.963L1.9602 14.833a.707.707 0 01-.0815-.0457c-.3443-.2232-.4465-.6897-.2282-1.0419.2178-.352.6741-.4567 1.0182-.2334l9.4203 5.2708 9.2376-5.2708c.3566-.2033.8068-.0723 1.0055.2925.1987.365.0706.8252-.286 1.0285l-9.5937 5.4728a.7239.7239 0 01-.714 0z" }) + ] + } + ); +}); + +exports.default = SiStackbit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.d.ts new file mode 100644 index 000000000..9228dace3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#207BEA"; +declare const SiStackbit: IconType; +export { SiStackbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.mjs new file mode 100644 index 000000000..0199baf41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackbit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#207BEA"; +const SiStackbit = React.forwardRef(function SiStackbit2({ title = "Stackbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.9488 2.306L1.1706 7.9673c-.784.4493-1.2385 1.3261-1.1623 2.242v3.7743c-.0664.9275.406 1.8084 1.2066 2.2495l9.7782 5.4725a2.2606 2.2606 0 002.2305 0l9.5937-5.4725c.7883-.45 1.2477-1.329 1.1752-2.2495v-3.7744c.0683-.9116-.3846-1.7816-1.1623-2.2325l-9.5937-5.6615A2.2646 2.2646 0 0012.0845 2c-.3917 0-.7833.102-1.1357.306zm.7749 14.0366l-9.7782-5.6615a.745.745 0 01-.2884-.2951c-.1974-.3648-.0683-.824.2884-1.0259l9.7782-5.6615a.7242.7242 0 01.738 0l9.5936 5.6747c.353.2086.474.6702.2703 1.0314-.2037.3612-.6551.485-1.0082.2764l-9.2284-5.452-8.2765 4.7915 8.638 5.001c.3567.2053.483.6675.2823 1.032-.1361.2477-.3874.3868-.6462.3868a.7266.7266 0 01-.363-.0978zm.0147 3.963L1.9602 14.833a.707.707 0 01-.0815-.0457c-.3443-.2232-.4465-.6897-.2282-1.0419.2178-.352.6741-.4567 1.0182-.2334l9.4203 5.2708 9.2376-5.2708c.3566-.2033.8068-.0723 1.0055.2925.1987.365.0706.8252-.286 1.0285l-9.5937 5.4728a.7239.7239 0 01-.714 0z" }) + ] + } + ); +}); + +export { SiStackbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.cjs new file mode 100644 index 000000000..49767a6db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1269D3"; +const SiStackblitz = React__namespace.forwardRef(function SiStackblitz2({ title = "StackBlitz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.797 14.182H3.635L16.728 0l-3.525 9.818h7.162L7.272 24l3.524-9.818Z" }) + ] + } + ); +}); + +exports.default = SiStackblitz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.d.ts new file mode 100644 index 000000000..a16ba061c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1269D3"; +declare const SiStackblitz: IconType; +export { SiStackblitz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.mjs new file mode 100644 index 000000000..12194e3ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackblitz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1269D3"; +const SiStackblitz = React.forwardRef(function SiStackblitz2({ title = "StackBlitz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.797 14.182H3.635L16.728 0l-3.525 9.818h7.162L7.272 24l3.524-9.818Z" }) + ] + } + ); +}); + +export { SiStackblitz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.cjs new file mode 100644 index 000000000..c5633a6a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#606060"; +const SiStackedit = React__namespace.forwardRef(function SiStackedit2({ title = "StackEdit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 0C2.689 0 0 2.689 0 6v12c0 3.311 2.689 6 6 6h12c3.311 0 6-2.689 6-6V6c0-3.311-2.689-6-6-6H6zm.227 1.871h11.546A3.98 3.98 0 0 1 21.75 5.85v11.545a3.978 3.978 0 0 1-3.977 3.976H6.227a3.978 3.978 0 0 1-3.977-3.976V5.85a3.98 3.98 0 0 1 3.977-3.98zm-.223 2.31V6.01H4.633V7.7h1.37v1.903h-1.37v1.689h1.37v1.828h1.4v-1.828h1.695v1.828h1.398v-1.828h1.371v-1.69h-1.37v-1.9h1.37V6.01h-1.37V4.182h-1.4V6.01H7.403V4.182H6.004zm1.398 3.52h1.696v1.903H7.402V7.7z" }) + ] + } + ); +}); + +exports.default = SiStackedit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.d.ts new file mode 100644 index 000000000..220946c01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#606060"; +declare const SiStackedit: IconType; +export { SiStackedit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.mjs new file mode 100644 index 000000000..ab56cf06e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackedit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#606060"; +const SiStackedit = React.forwardRef(function SiStackedit2({ title = "StackEdit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 0C2.689 0 0 2.689 0 6v12c0 3.311 2.689 6 6 6h12c3.311 0 6-2.689 6-6V6c0-3.311-2.689-6-6-6H6zm.227 1.871h11.546A3.98 3.98 0 0 1 21.75 5.85v11.545a3.978 3.978 0 0 1-3.977 3.976H6.227a3.978 3.978 0 0 1-3.977-3.976V5.85a3.98 3.98 0 0 1 3.977-3.98zm-.223 2.31V6.01H4.633V7.7h1.37v1.903h-1.37v1.689h1.37v1.828h1.4v-1.828h1.695v1.828h1.398v-1.828h1.371v-1.69h-1.37v-1.9h1.37V6.01h-1.37V4.182h-1.4V6.01H7.403V4.182H6.004zm1.398 3.52h1.696v1.903H7.402V7.7z" }) + ] + } + ); +}); + +export { SiStackedit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.cjs new file mode 100644 index 000000000..5070d76d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E5397"; +const SiStackexchange = React__namespace.forwardRef(function SiStackexchange2({ title = "Stack Exchange", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.728 15.577v1.036c0 1.754-1.395 3.177-3.1 3.177h-.904L13.645 24v-4.21H5.371c-1.704 0-3.099-1.423-3.099-3.181v-1.032h19.456zM2.275 10.463h19.323v3.979H2.275v-3.979zm0-5.141h19.323v3.979H2.275V5.322zM18.575 0c1.681 0 3.023 1.42 3.023 3.178v1.034H2.275V3.178C2.275 1.422 3.67 0 5.375 0h13.2z" }) + ] + } + ); +}); + +exports.default = SiStackexchange; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.d.ts new file mode 100644 index 000000000..26f13883e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E5397"; +declare const SiStackexchange: IconType; +export { SiStackexchange as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.mjs new file mode 100644 index 000000000..591e69013 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackexchange.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E5397"; +const SiStackexchange = React.forwardRef(function SiStackexchange2({ title = "Stack Exchange", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.728 15.577v1.036c0 1.754-1.395 3.177-3.1 3.177h-.904L13.645 24v-4.21H5.371c-1.704 0-3.099-1.423-3.099-3.181v-1.032h19.456zM2.275 10.463h19.323v3.979H2.275v-3.979zm0-5.141h19.323v3.979H2.275V5.322zM18.575 0c1.681 0 3.023 1.42 3.023 3.178v1.034H2.275V3.178C2.275 1.422 3.67 0 5.375 0h13.2z" }) + ] + } + ); +}); + +export { SiStackexchange as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.cjs new file mode 100644 index 000000000..f07097b65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CBC6"; +const SiStackhawk = React__namespace.forwardRef(function SiStackhawk2({ title = "StackHawk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.674 6.989c.11.092.207.178.298.255L12 4.34l4.971 2.867.298-.256-5.27-3.039-5.325 3.077Zm12.33 6.063c-.12.06-.244.114-.37.162v2.612l-3.315 1.911c.096.025.16.037.16.037-.11.148-.383.258-.607.33l.22.197 3.91-2.256.002-2.993Zm-6.165 10.51 1.182-.683-.682-.46-.179.102c-.086.353-.193.7-.321 1.04Zm-4.32-5.788s.065-.013.161-.037l-3.308-1.911v-2.572a3.963 3.963 0 0 1-.37-.149v2.935l3.997 2.308.238-.22c-.23-.059-.592-.18-.718-.354ZM5.36 5.788c.14.137.282.27.42.399L12 2.594l6.154 3.554c.139-.129.278-.262.42-.4L12 1.953 5.36 5.788Zm15.34 5.74a7.444 7.444 0 0 1-.553.648v4.523L15.95 19.12a11 11 0 0 1 .388.418l4.363-2.52v-5.491ZM4.689 5.116l7.389-4.26L19.3 5.023c.177-.186.346-.374.508-.562L12.075 0 4.172 4.563c.168.18.34.368.517.553ZM9.416 21.61l-6.992-4.037V8.205c-.25-.27-.501-.579-.74-.891V18l7.698 4.443c-.005-.26.01-.548.034-.834ZM21.732 7.913v9.659l-6.997 4.04c.025.287.038.575.033.836L22.474 18V6.965c-.232.318-.485.647-.742.948ZM9.625 20.028l-.235-.136-.793.186.934.54c.039-.246.07-.45.094-.59Zm-1.476-.854L3.86 16.7v-4.414a6.965 6.965 0 0 1-.552-.619v5.353l4.459 2.575c.118-.139.248-.28.382-.42Zm3.16 4.384a9.053 9.053 0 0 1-.319-1.042l-.175-.1-.682.462 1.176.68Zm3.342-3.69-.143.083c.022.123.057.332.096.587l.841-.486-.794-.183Zm-2.91-7.697c.111.238.234.483.348.732.11-.25.233-.494.349-.732.8-1.658 1.202-2.62.175-3.15l-.045-.035c-.168-.166-.332-.25-.479-.25a.711.711 0 0 0-.477.25l-.046.035c-1.026.53-.625 1.493.176 3.15Zm11.14-7.228c-2.374 3.884-7.401 5.72-7.401 5.72 8.85-5.24 8.518-10.51 8.518-10.51-3.172 5.97-8.499 9.199-10.452 10.231-.118.593-.441 1.261-.773 1.948-.17.354-.348.722-.51 1.104l-.172.396-.17-.396c-.162-.377-.34-.744-.511-1.104-.311-.647-.616-1.278-.75-1.843C8.891 9.584 3.292 6.341.002.152c0 0-.332 5.27 8.518 10.51 0 0-5.025-1.836-7.402-5.72 0 0 1.694 5.123 6.799 6.284 0 0-3.221-.043-5.052-1.94 0 0-.105 2.282 4.808 2.626 0 0-2.415.586-3.597-.488 0 0 .058 1.157 3.672 1.268 0 0 1.593-.111 2.606.597-.033 1.296.27 2.64.574 3.645-.053.036-.069.293-1.866.86 0 .029 1.152.309 1.713-.22.12.127-1.305.516-2.642 2.188.016-.066 1.749-.631 2.97-1.177.014-.007-.901.904-1.088 3.617.032-.01.566-.884 1.406-1.857-.06 1.252.164 2.5.65 3.655a8.317 8.317 0 0 0 .653-3.494c.762.907 1.24 1.686 1.27 1.696-.185-2.713-1.104-3.624-1.089-3.617 1.216.546 2.956 1.106 2.971 1.177-1.335-1.672-2.771-2.061-2.643-2.187.56.526 1.717.246 1.713.22-1.818-.574-1.813-.829-1.868-.861.305-1.002.61-2.347.58-3.646 1.015-.704 2.597-.59 2.597-.59 3.614-.11 3.672-1.268 3.672-1.268-1.182 1.074-3.597.488-3.597.488 4.913-.343 4.808-2.625 4.808-2.625-1.834 1.89-5.05 1.933-5.05 1.933 5.1-1.16 6.793-6.283 6.793-6.283Z" }) + ] + } + ); +}); + +exports.default = SiStackhawk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.d.ts new file mode 100644 index 000000000..784e6ab3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CBC6"; +declare const SiStackhawk: IconType; +export { SiStackhawk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.mjs new file mode 100644 index 000000000..c6fc7e276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackhawk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CBC6"; +const SiStackhawk = React.forwardRef(function SiStackhawk2({ title = "StackHawk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.674 6.989c.11.092.207.178.298.255L12 4.34l4.971 2.867.298-.256-5.27-3.039-5.325 3.077Zm12.33 6.063c-.12.06-.244.114-.37.162v2.612l-3.315 1.911c.096.025.16.037.16.037-.11.148-.383.258-.607.33l.22.197 3.91-2.256.002-2.993Zm-6.165 10.51 1.182-.683-.682-.46-.179.102c-.086.353-.193.7-.321 1.04Zm-4.32-5.788s.065-.013.161-.037l-3.308-1.911v-2.572a3.963 3.963 0 0 1-.37-.149v2.935l3.997 2.308.238-.22c-.23-.059-.592-.18-.718-.354ZM5.36 5.788c.14.137.282.27.42.399L12 2.594l6.154 3.554c.139-.129.278-.262.42-.4L12 1.953 5.36 5.788Zm15.34 5.74a7.444 7.444 0 0 1-.553.648v4.523L15.95 19.12a11 11 0 0 1 .388.418l4.363-2.52v-5.491ZM4.689 5.116l7.389-4.26L19.3 5.023c.177-.186.346-.374.508-.562L12.075 0 4.172 4.563c.168.18.34.368.517.553ZM9.416 21.61l-6.992-4.037V8.205c-.25-.27-.501-.579-.74-.891V18l7.698 4.443c-.005-.26.01-.548.034-.834ZM21.732 7.913v9.659l-6.997 4.04c.025.287.038.575.033.836L22.474 18V6.965c-.232.318-.485.647-.742.948ZM9.625 20.028l-.235-.136-.793.186.934.54c.039-.246.07-.45.094-.59Zm-1.476-.854L3.86 16.7v-4.414a6.965 6.965 0 0 1-.552-.619v5.353l4.459 2.575c.118-.139.248-.28.382-.42Zm3.16 4.384a9.053 9.053 0 0 1-.319-1.042l-.175-.1-.682.462 1.176.68Zm3.342-3.69-.143.083c.022.123.057.332.096.587l.841-.486-.794-.183Zm-2.91-7.697c.111.238.234.483.348.732.11-.25.233-.494.349-.732.8-1.658 1.202-2.62.175-3.15l-.045-.035c-.168-.166-.332-.25-.479-.25a.711.711 0 0 0-.477.25l-.046.035c-1.026.53-.625 1.493.176 3.15Zm11.14-7.228c-2.374 3.884-7.401 5.72-7.401 5.72 8.85-5.24 8.518-10.51 8.518-10.51-3.172 5.97-8.499 9.199-10.452 10.231-.118.593-.441 1.261-.773 1.948-.17.354-.348.722-.51 1.104l-.172.396-.17-.396c-.162-.377-.34-.744-.511-1.104-.311-.647-.616-1.278-.75-1.843C8.891 9.584 3.292 6.341.002.152c0 0-.332 5.27 8.518 10.51 0 0-5.025-1.836-7.402-5.72 0 0 1.694 5.123 6.799 6.284 0 0-3.221-.043-5.052-1.94 0 0-.105 2.282 4.808 2.626 0 0-2.415.586-3.597-.488 0 0 .058 1.157 3.672 1.268 0 0 1.593-.111 2.606.597-.033 1.296.27 2.64.574 3.645-.053.036-.069.293-1.866.86 0 .029 1.152.309 1.713-.22.12.127-1.305.516-2.642 2.188.016-.066 1.749-.631 2.97-1.177.014-.007-.901.904-1.088 3.617.032-.01.566-.884 1.406-1.857-.06 1.252.164 2.5.65 3.655a8.317 8.317 0 0 0 .653-3.494c.762.907 1.24 1.686 1.27 1.696-.185-2.713-1.104-3.624-1.089-3.617 1.216.546 2.956 1.106 2.971 1.177-1.335-1.672-2.771-2.061-2.643-2.187.56.526 1.717.246 1.713.22-1.818-.574-1.813-.829-1.868-.861.305-1.002.61-2.347.58-3.646 1.015-.704 2.597-.59 2.597-.59 3.614-.11 3.672-1.268 3.672-1.268-1.182 1.074-3.597.488-3.597.488 4.913-.343 4.808-2.625 4.808-2.625-1.834 1.89-5.05 1.933-5.05 1.933 5.1-1.16 6.793-6.283 6.793-6.283Z" }) + ] + } + ); +}); + +export { SiStackhawk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.cjs new file mode 100644 index 000000000..a229d4399 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F58025"; +const SiStackoverflow = React__namespace.forwardRef(function SiStackoverflow2({ title = "Stack Overflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.725 0l-1.72 1.277 6.39 8.588 1.716-1.277L15.725 0zm-3.94 3.418l-1.369 1.644 8.225 6.85 1.369-1.644-8.225-6.85zm-3.15 4.465l-.905 1.94 9.702 4.517.904-1.94-9.701-4.517zm-1.85 4.86l-.44 2.093 10.473 2.201.44-2.092-10.473-2.203zM1.89 15.47V24h19.19v-8.53h-2.133v6.397H4.021v-6.396H1.89zm4.265 2.133v2.13h10.66v-2.13H6.154Z" }) + ] + } + ); +}); + +exports.default = SiStackoverflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.d.ts new file mode 100644 index 000000000..937d0e175 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F58025"; +declare const SiStackoverflow: IconType; +export { SiStackoverflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.mjs new file mode 100644 index 000000000..42f88a9fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackoverflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F58025"; +const SiStackoverflow = React.forwardRef(function SiStackoverflow2({ title = "Stack Overflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.725 0l-1.72 1.277 6.39 8.588 1.716-1.277L15.725 0zm-3.94 3.418l-1.369 1.644 8.225 6.85 1.369-1.644-8.225-6.85zm-3.15 4.465l-.905 1.94 9.702 4.517.904-1.94-9.701-4.517zm-1.85 4.86l-.44 2.093 10.473 2.201.44-2.092-10.473-2.203zM1.89 15.47V24h19.19v-8.53h-2.133v6.397H4.021v-6.396H1.89zm4.265 2.133v2.13h10.66v-2.13H6.154Z" }) + ] + } + ); +}); + +export { SiStackoverflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.cjs new file mode 100644 index 000000000..8728091b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0690FA"; +const SiStackshare = React__namespace.forwardRef(function SiStackshare2({ title = "StackShare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.209 6.697c-.035-.274 0-.594 0-.594v-.01c.141-.714.771-1.254 1.525-1.254.005 0 .009.001.014.001h.002c.859 0 1.557.698 1.557 1.556s-.697 1.556-1.557 1.556c-.003 0-.006-.001-.009-.001h-.007c-.742-.001-1.38-.526-1.525-1.254zM24 1.54v20.92c0 .851-.646 1.54-1.443 1.54H1.444C.647 24 0 23.311 0 22.46V1.54C0 .69.647 0 1.444 0h21.113C23.354 0 24 .69 24 1.54zm-2.303 16.007c0-1.636-1.326-2.962-2.961-2.962-1.317 0-2.477.87-2.844 2.134h-1.758l-2.74-4.717-.002-.004.002-.004 2.736-4.709h1.748c.457 1.571 2.102 2.474 3.673 2.017 1.571-.457 2.475-2.102 2.017-3.673-.457-1.571-2.102-2.474-3.672-2.017a2.9638 2.9638 0 0 0-2.018 2.017h-2.665l-.026-.016-3.227 5.552-.025.042H8.018c-.457-1.571-2.102-2.474-3.673-2.016-1.571.458-2.474 2.102-2.017 3.673.458 1.571 2.103 2.474 3.673 2.017.973-.283 1.733-1.045 2.017-2.017h1.961l3.208 5.52.015-.009h2.69a2.9592 2.9592 0 0 0 2.842 2.134h.002c1.636 0 2.961-1.326 2.961-2.962zm-2.933-1.619c-.743.002-1.381.526-1.527 1.254-.004.029-.004.057-.007.085-.004.017-.015.029-.018.046-.041.301 0 .602 0 .602.173.842.995 1.383 1.837 1.209.573-.118 1.005-.548 1.164-1.088.065-.172.105-.356.105-.551 0-.859-.697-1.557-1.554-1.557zM5.2 10.417c-.858 0-1.556.698-1.556 1.557 0 .006.002.012.002.018 0 .003-.001.005-.001.008.001.854.693 1.547 1.548 1.548.541-.001 1.015-.278 1.292-.698.171-.249.272-.551.272-.875 0-.86-.698-1.558-1.557-1.558z" }) + ] + } + ); +}); + +exports.default = SiStackshare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.d.ts new file mode 100644 index 000000000..99e25449d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0690FA"; +declare const SiStackshare: IconType; +export { SiStackshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.mjs new file mode 100644 index 000000000..1a23b047e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStackshare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0690FA"; +const SiStackshare = React.forwardRef(function SiStackshare2({ title = "StackShare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.209 6.697c-.035-.274 0-.594 0-.594v-.01c.141-.714.771-1.254 1.525-1.254.005 0 .009.001.014.001h.002c.859 0 1.557.698 1.557 1.556s-.697 1.556-1.557 1.556c-.003 0-.006-.001-.009-.001h-.007c-.742-.001-1.38-.526-1.525-1.254zM24 1.54v20.92c0 .851-.646 1.54-1.443 1.54H1.444C.647 24 0 23.311 0 22.46V1.54C0 .69.647 0 1.444 0h21.113C23.354 0 24 .69 24 1.54zm-2.303 16.007c0-1.636-1.326-2.962-2.961-2.962-1.317 0-2.477.87-2.844 2.134h-1.758l-2.74-4.717-.002-.004.002-.004 2.736-4.709h1.748c.457 1.571 2.102 2.474 3.673 2.017 1.571-.457 2.475-2.102 2.017-3.673-.457-1.571-2.102-2.474-3.672-2.017a2.9638 2.9638 0 0 0-2.018 2.017h-2.665l-.026-.016-3.227 5.552-.025.042H8.018c-.457-1.571-2.102-2.474-3.673-2.016-1.571.458-2.474 2.102-2.017 3.673.458 1.571 2.103 2.474 3.673 2.017.973-.283 1.733-1.045 2.017-2.017h1.961l3.208 5.52.015-.009h2.69a2.9592 2.9592 0 0 0 2.842 2.134h.002c1.636 0 2.961-1.326 2.961-2.962zm-2.933-1.619c-.743.002-1.381.526-1.527 1.254-.004.029-.004.057-.007.085-.004.017-.015.029-.018.046-.041.301 0 .602 0 .602.173.842.995 1.383 1.837 1.209.573-.118 1.005-.548 1.164-1.088.065-.172.105-.356.105-.551 0-.859-.697-1.557-1.554-1.557zM5.2 10.417c-.858 0-1.556.698-1.556 1.557 0 .006.002.012.002.018 0 .003-.001.005-.001.008.001.854.693 1.547 1.548 1.548.541-.001 1.015-.278 1.292-.698.171-.249.272-.551.272-.875 0-.86-.698-1.558-1.557-1.558z" }) + ] + } + ); +}); + +export { SiStackshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.cjs new file mode 100644 index 000000000..209ba223d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD2640"; +const SiStadia = React__namespace.forwardRef(function SiStadia2({ title = "Stadia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.5253 10.0302a18.279 18.279 0 0 1 15.7805.263c.263.1973.6575 0 .7233-.263l.9205-2.8273c.1315-.263 0-.6576-.3288-.789A22.3557 22.3557 0 0 0 .2788 8.6493a.6575.6575 0 0 0-.1972.8548l2.1698 4.7999c.1315.3287.526.526.8548.3945 2.4328-.9205 6.1807-1.841 9.9943-1.315-2.63.4602-4.6684 1.3807-6.3122 2.367a.6575.6575 0 0 0-.1972.8548L7.906 19.63c.1315.263.4603.3288.6575.1315.526-.526 1.052-.9205 1.5123-1.1835 2.104-1.1836 4.9972-2.1041 8.8765-1.9068a.6575.6575 0 0 0 .6576-.4603l.9862-2.9589c.1316-.263 0-.6575-.263-.789a20.0544 20.0544 0 0 0-13.8737-2.4328z" }) + ] + } + ); +}); + +exports.default = SiStadia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.d.ts new file mode 100644 index 000000000..7f9459cf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD2640"; +declare const SiStadia: IconType; +export { SiStadia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.mjs new file mode 100644 index 000000000..48d3605d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStadia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD2640"; +const SiStadia = React.forwardRef(function SiStadia2({ title = "Stadia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.5253 10.0302a18.279 18.279 0 0 1 15.7805.263c.263.1973.6575 0 .7233-.263l.9205-2.8273c.1315-.263 0-.6576-.3288-.789A22.3557 22.3557 0 0 0 .2788 8.6493a.6575.6575 0 0 0-.1972.8548l2.1698 4.7999c.1315.3287.526.526.8548.3945 2.4328-.9205 6.1807-1.841 9.9943-1.315-2.63.4602-4.6684 1.3807-6.3122 2.367a.6575.6575 0 0 0-.1972.8548L7.906 19.63c.1315.263.4603.3288.6575.1315.526-.526 1.052-.9205 1.5123-1.1835 2.104-1.1836 4.9972-2.1041 8.8765-1.9068a.6575.6575 0 0 0 .6576-.4603l.9862-2.9589c.1316-.263 0-.6575-.263-.789a20.0544 20.0544 0 0 0-13.8737-2.4328z" }) + ] + } + ); +}); + +export { SiStadia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.cjs new file mode 100644 index 000000000..b23adc93b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A4FD"; +const SiStaffbase = React__namespace.forwardRef(function SiStaffbase2({ title = "Staffbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.847 20.095a7.805 7.805 0 01-6.286-3.238l1.714-1.238C8.323 17.048 10.037 18 11.847 18s3.523-.857 4.571-2.381l1.714 1.238a7.805 7.805 0 01-6.285 3.238zm.19-18c1.62 0 3.238.476 4.762 1.334l1.048.476 2.857-.572-.477 2.857c2.381 3.715 2.191 9.239-1.047 12.667a9.748 9.748 0 01-7.048 3.048 9.98 9.98 0 01-6.857-2.762c-3.905-3.81-4-10-.286-13.905 1.905-2.095 4.477-3.143 7.048-3.143m0-2.095C8.799 0 5.751 1.333 3.466 3.714c-4.572 4.762-4.477 12.381.285 16.953A11.91 11.91 0 0012.037 24c3.238 0 6.381-1.333 8.571-3.619 3.62-3.714 4.286-9.81 1.81-14.571l.38-2.096.477-2.952-2.952.571-2.19.381-.382-.19C15.941.476 14.037 0 12.037 0Z" }) + ] + } + ); +}); + +exports.default = SiStaffbase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.d.ts new file mode 100644 index 000000000..0bbc45379 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A4FD"; +declare const SiStaffbase: IconType; +export { SiStaffbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.mjs new file mode 100644 index 000000000..40937a625 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStaffbase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A4FD"; +const SiStaffbase = React.forwardRef(function SiStaffbase2({ title = "Staffbase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.847 20.095a7.805 7.805 0 01-6.286-3.238l1.714-1.238C8.323 17.048 10.037 18 11.847 18s3.523-.857 4.571-2.381l1.714 1.238a7.805 7.805 0 01-6.285 3.238zm.19-18c1.62 0 3.238.476 4.762 1.334l1.048.476 2.857-.572-.477 2.857c2.381 3.715 2.191 9.239-1.047 12.667a9.748 9.748 0 01-7.048 3.048 9.98 9.98 0 01-6.857-2.762c-3.905-3.81-4-10-.286-13.905 1.905-2.095 4.477-3.143 7.048-3.143m0-2.095C8.799 0 5.751 1.333 3.466 3.714c-4.572 4.762-4.477 12.381.285 16.953A11.91 11.91 0 0012.037 24c3.238 0 6.381-1.333 8.571-3.619 3.62-3.714 4.286-9.81 1.81-14.571l.38-2.096.477-2.952-2.952.571-2.19.381-.382-.19C15.941.476 14.037 0 12.037 0Z" }) + ] + } + ); +}); + +export { SiStaffbase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.cjs new file mode 100644 index 000000000..44c7e6b2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A66C"; +const SiStagetimer = React__namespace.forwardRef(function SiStagetimer2({ title = "Stagetimer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.127 2.639c0 .821.662 1.475 1.464 1.644a7.832 7.832 0 0 1 6.201 7.666c0 4.326-3.499 7.833-7.815 7.833a7.767 7.767 0 0 1-3.932-1.062c-.716-.419-1.66-.372-2.207.253l-.794.906c-.549.625-.491 1.586.196 2.053A11.946 11.946 0 0 0 11.977 24C18.617 24 24 18.605 24 11.949 24 5.86 19.495.826 13.644.013c-.829-.116-1.517.571-1.517 1.411v1.215ZM2.01 15.376c-.8.27-1.236 1.135-.866 1.886.255.518.546 1.016.871 1.492.473.693 1.449.752 2.085.202l.921-.797c.636-.551.686-1.502.26-2.224l-.035-.06c-.419-.726-1.277-1.158-2.077-.889l-1.159.39Zm-.322-1.384c-.807.162-1.6-.369-1.658-1.198-.04-.571-.04-1.143 0-1.714.058-.829.851-1.36 1.658-1.198l1.168.233c.807.162 1.316.957 1.312 1.788v.068c.004.831-.505 1.626-1.312 1.787l-1.168.234Z" }) + ] + } + ); +}); + +exports.default = SiStagetimer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.d.ts new file mode 100644 index 000000000..1a1829a44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A66C"; +declare const SiStagetimer: IconType; +export { SiStagetimer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.mjs new file mode 100644 index 000000000..bf2b889a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStagetimer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A66C"; +const SiStagetimer = React.forwardRef(function SiStagetimer2({ title = "Stagetimer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.127 2.639c0 .821.662 1.475 1.464 1.644a7.832 7.832 0 0 1 6.201 7.666c0 4.326-3.499 7.833-7.815 7.833a7.767 7.767 0 0 1-3.932-1.062c-.716-.419-1.66-.372-2.207.253l-.794.906c-.549.625-.491 1.586.196 2.053A11.946 11.946 0 0 0 11.977 24C18.617 24 24 18.605 24 11.949 24 5.86 19.495.826 13.644.013c-.829-.116-1.517.571-1.517 1.411v1.215ZM2.01 15.376c-.8.27-1.236 1.135-.866 1.886.255.518.546 1.016.871 1.492.473.693 1.449.752 2.085.202l.921-.797c.636-.551.686-1.502.26-2.224l-.035-.06c-.419-.726-1.277-1.158-2.077-.889l-1.159.39Zm-.322-1.384c-.807.162-1.6-.369-1.658-1.198-.04-.571-.04-1.143 0-1.714.058-.829.851-1.36 1.658-1.198l1.168.233c.807.162 1.316.957 1.312 1.788v.068c.004.831-.505 1.626-1.312 1.787l-1.168.234Z" }) + ] + } + ); +}); + +export { SiStagetimer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.cjs new file mode 100644 index 000000000..af6855cc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F3DF49"; +const SiStandardjs = React__namespace.forwardRef(function SiStandardjs2({ title = "StandardJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.966 0 1.608 5.965v12.07L12.035 24l10.358-5.965V5.965Zm1.421 7.02h.651v3.483h-.651l.015-.3c-.116.218-.333.343-.647.343-.501 0-.93-.443-.93-1.075 0-.632.424-1.066.92-1.066.329 0 .512.13.642.333zm6.83 0h.65v3.483h-.65l.014-.3c-.116.218-.333.343-.646.343-.502 0-.931-.443-.931-1.075 0-.632.424-1.066.921-1.066.328 0 .511.13.641.333zm-14.928.358h.646v1.07h.526v.54h-.526v.763c0 .207.068.25.17.25.105 0 .183-.058.226-.086l.246.453a.865.865 0 0 1-.574.188c-.415 0-.714-.207-.714-.825v-.743h-.304v-.54h.304zM3.895 8.405c.338 0 .58.11.748.284l-.347.372a.634.634 0 0 0-.396-.154c-.15 0-.222.038-.222.12 0 .116.13.13.41.193.3.068.676.207.676.641 0 .377-.198.685-.845.685-.477 0-.757-.178-.935-.39l.38-.338a.74.74 0 0 0 .512.217c.212 0 .28-.039.28-.125 0-.111-.13-.111-.463-.198-.28-.072-.593-.227-.593-.656 0-.463.356-.651.795-.651zm4.018 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.333.328-.608.328-.376 0-.723-.169-.723-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.126-.343-.343-.343a.643.643 0 0 0-.468.188l-.361-.385c.193-.189.41-.338.892-.338zm2.71 0c.449 0 .772.328.772.911v1.187h-.651V9.36c0-.232-.11-.362-.342-.362-.26 0-.415.145-.415.405v1.1h-.651V8.448h.65l-.014.338a.703.703 0 0 1 .651-.381zm4.857 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.332.328-.607.328-.376 0-.724-.169-.724-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.125-.343-.343-.343a.643.643 0 0 0-.467.188l-.362-.385c.193-.189.41-.338.892-.338zm2.667 0c.135 0 .237.038.319.082l-.208.593a.567.567 0 0 0-.25-.063c-.295 0-.454.135-.454.574v.912h-.651V8.448h.651l-.01.372c.15-.338.391-.415.603-.415zm-5.204.574c-.275 0-.448.188-.448.492 0 .323.173.506.448.506.28 0 .463-.183.463-.506 0-.304-.183-.492-.463-.492zm6.83 0c-.275 0-.449.188-.449.492 0 .323.174.506.449.506.28 0 .463-.183.463-.506 0-.304-.184-.492-.463-.492zm-12.024.69c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm7.567 0c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm-1.261 2.478c.766 0 1.317.267 1.713.965l-.938.603c-.207-.37-.431-.517-.775-.517-.354 0-.578.224-.578.517 0 .361.224.508.741.732l.302.129c1.024.439 1.602.887 1.602 1.895 0 1.085-.853 1.679-1.999 1.679-1.12 0-1.843-.534-2.196-1.232l.982-.568c.258.422.594.732 1.189.732.5 0 .818-.25.818-.594 0-.414-.328-.56-.879-.801l-.301-.13c-.87-.37-1.447-.835-1.447-1.817 0-.904.689-1.593 1.766-1.593zm-3.988.069h1.206v4.117c0 1.249-.732 1.817-1.8 1.817-.965 0-1.525-.5-1.809-1.102l.982-.595c.19.336.362.62.775.62.396 0 .646-.155.646-.757z" }) + ] + } + ); +}); + +exports.default = SiStandardjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.d.ts new file mode 100644 index 000000000..d2cde8314 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F3DF49"; +declare const SiStandardjs: IconType; +export { SiStandardjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.mjs new file mode 100644 index 000000000..c405aaa65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F3DF49"; +const SiStandardjs = React.forwardRef(function SiStandardjs2({ title = "StandardJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.966 0 1.608 5.965v12.07L12.035 24l10.358-5.965V5.965Zm1.421 7.02h.651v3.483h-.651l.015-.3c-.116.218-.333.343-.647.343-.501 0-.93-.443-.93-1.075 0-.632.424-1.066.92-1.066.329 0 .512.13.642.333zm6.83 0h.65v3.483h-.65l.014-.3c-.116.218-.333.343-.646.343-.502 0-.931-.443-.931-1.075 0-.632.424-1.066.921-1.066.328 0 .511.13.641.333zm-14.928.358h.646v1.07h.526v.54h-.526v.763c0 .207.068.25.17.25.105 0 .183-.058.226-.086l.246.453a.865.865 0 0 1-.574.188c-.415 0-.714-.207-.714-.825v-.743h-.304v-.54h.304zM3.895 8.405c.338 0 .58.11.748.284l-.347.372a.634.634 0 0 0-.396-.154c-.15 0-.222.038-.222.12 0 .116.13.13.41.193.3.068.676.207.676.641 0 .377-.198.685-.845.685-.477 0-.757-.178-.935-.39l.38-.338a.74.74 0 0 0 .512.217c.212 0 .28-.039.28-.125 0-.111-.13-.111-.463-.198-.28-.072-.593-.227-.593-.656 0-.463.356-.651.795-.651zm4.018 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.333.328-.608.328-.376 0-.723-.169-.723-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.126-.343-.343-.343a.643.643 0 0 0-.468.188l-.361-.385c.193-.189.41-.338.892-.338zm2.71 0c.449 0 .772.328.772.911v1.187h-.651V9.36c0-.232-.11-.362-.342-.362-.26 0-.415.145-.415.405v1.1h-.651V8.448h.65l-.014.338a.703.703 0 0 1 .651-.381zm4.857 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.332.328-.607.328-.376 0-.724-.169-.724-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.125-.343-.343-.343a.643.643 0 0 0-.467.188l-.362-.385c.193-.189.41-.338.892-.338zm2.667 0c.135 0 .237.038.319.082l-.208.593a.567.567 0 0 0-.25-.063c-.295 0-.454.135-.454.574v.912h-.651V8.448h.651l-.01.372c.15-.338.391-.415.603-.415zm-5.204.574c-.275 0-.448.188-.448.492 0 .323.173.506.448.506.28 0 .463-.183.463-.506 0-.304-.183-.492-.463-.492zm6.83 0c-.275 0-.449.188-.449.492 0 .323.174.506.449.506.28 0 .463-.183.463-.506 0-.304-.184-.492-.463-.492zm-12.024.69c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm7.567 0c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm-1.261 2.478c.766 0 1.317.267 1.713.965l-.938.603c-.207-.37-.431-.517-.775-.517-.354 0-.578.224-.578.517 0 .361.224.508.741.732l.302.129c1.024.439 1.602.887 1.602 1.895 0 1.085-.853 1.679-1.999 1.679-1.12 0-1.843-.534-2.196-1.232l.982-.568c.258.422.594.732 1.189.732.5 0 .818-.25.818-.594 0-.414-.328-.56-.879-.801l-.301-.13c-.87-.37-1.447-.835-1.447-1.817 0-.904.689-1.593 1.766-1.593zm-3.988.069h1.206v4.117c0 1.249-.732 1.817-1.8 1.817-.965 0-1.525-.5-1.809-1.102l.982-.595c.19.336.362.62.775.62.396 0 .646-.155.646-.757z" }) + ] + } + ); +}); + +export { SiStandardjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.cjs new file mode 100644 index 000000000..f3e1c660e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A3FFB"; +const SiStandardresume = React__namespace.forwardRef(function SiStandardresume2({ title = "Standard Resume", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.524 17.138v-2.093h3.111v2.358c0 1.306.102 2.226.306 2.76.204.523.587.786 1.149.786.564 0 .934-.217 1.115-.654.187-.435.281-1.146.281-2.131 0-.987-.165-1.845-.49-2.573-.326-.736-.845-1.506-1.554-2.305L3.852 11.5a10.829 10.829 0 0 1-1.74-2.625C1.705 7.97 1.5 6.92 1.5 5.73c0-1.937.342-3.375 1.028-4.317C3.212.471 4.391 0 6.064 0s2.802.55 3.39 1.653c.595 1.092.893 2.691.893 4.797v1.452H7.324v-1.68c0-1.136-.09-1.95-.268-2.438-.18-.498-.525-.745-1.041-.745-.505 0-.871.186-1.101.56-.22.371-.33.932-.33 1.678 0 .747.114 1.341.342 1.785.23.445.64 1.014 1.236 1.707l1.775 2.091c.889 1.05 1.56 2.11 2.007 3.186.457 1.074.685 2.247.685 3.518 0 2.194-.338 3.815-1.016 4.864C8.938 23.475 7.75 24 6.053 24c-1.69 0-2.868-.582-3.537-1.746-.66-1.173-.99-2.878-.99-5.117Zm15.849-4.426-1.053-.052v11.073h-3.28V.28h5.422c1.125 0 1.965.248 2.52.746.555.489.918 1.177 1.09 2.066.18.878.269 2.034.269 3.464 0 1.422-.138 2.505-.416 3.252a2.405 2.405 0 0 1-1.542 1.505c.741.143 1.26.69 1.554 1.64.293.95.44 2.932.44 5.943 0 3.003.042 4.615.123 4.837h-3.28c-.082-.177-.122-2.98-.122-8.407 0-1.04-.114-1.728-.344-2.066-.228-.346-.69-.53-1.381-.547Zm-1.041-2.824h1.31c.415 0 .721-.102.918-.306.204-.206.342-.555.415-1.053.083-.498.123-1.257.123-2.28v-.144c0-1.27-.097-2.1-.294-2.492-.195-.391-.648-.586-1.357-.586h-1.115z" }) + ] + } + ); +}); + +exports.default = SiStandardresume; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.d.ts new file mode 100644 index 000000000..a38b64ac4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A3FFB"; +declare const SiStandardresume: IconType; +export { SiStandardresume as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.mjs new file mode 100644 index 000000000..cdd3b27f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStandardresume.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A3FFB"; +const SiStandardresume = React.forwardRef(function SiStandardresume2({ title = "Standard Resume", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.524 17.138v-2.093h3.111v2.358c0 1.306.102 2.226.306 2.76.204.523.587.786 1.149.786.564 0 .934-.217 1.115-.654.187-.435.281-1.146.281-2.131 0-.987-.165-1.845-.49-2.573-.326-.736-.845-1.506-1.554-2.305L3.852 11.5a10.829 10.829 0 0 1-1.74-2.625C1.705 7.97 1.5 6.92 1.5 5.73c0-1.937.342-3.375 1.028-4.317C3.212.471 4.391 0 6.064 0s2.802.55 3.39 1.653c.595 1.092.893 2.691.893 4.797v1.452H7.324v-1.68c0-1.136-.09-1.95-.268-2.438-.18-.498-.525-.745-1.041-.745-.505 0-.871.186-1.101.56-.22.371-.33.932-.33 1.678 0 .747.114 1.341.342 1.785.23.445.64 1.014 1.236 1.707l1.775 2.091c.889 1.05 1.56 2.11 2.007 3.186.457 1.074.685 2.247.685 3.518 0 2.194-.338 3.815-1.016 4.864C8.938 23.475 7.75 24 6.053 24c-1.69 0-2.868-.582-3.537-1.746-.66-1.173-.99-2.878-.99-5.117Zm15.849-4.426-1.053-.052v11.073h-3.28V.28h5.422c1.125 0 1.965.248 2.52.746.555.489.918 1.177 1.09 2.066.18.878.269 2.034.269 3.464 0 1.422-.138 2.505-.416 3.252a2.405 2.405 0 0 1-1.542 1.505c.741.143 1.26.69 1.554 1.64.293.95.44 2.932.44 5.943 0 3.003.042 4.615.123 4.837h-3.28c-.082-.177-.122-2.98-.122-8.407 0-1.04-.114-1.728-.344-2.066-.228-.346-.69-.53-1.381-.547Zm-1.041-2.824h1.31c.415 0 .721-.102.918-.306.204-.206.342-.555.415-1.053.083-.498.123-1.257.123-2.28v-.144c0-1.27-.097-2.1-.294-2.492-.195-.391-.648-.586-1.357-.586h-1.115z" }) + ] + } + ); +}); + +export { SiStandardresume as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.cjs new file mode 100644 index 000000000..90d33c7cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006241"; +const SiStarbucks = React__namespace.forwardRef(function SiStarbucks2({ title = "Starbucks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.2072 5.2801c-.1052-.0188-.6126-.104-1.2072-.104s-1.102.0848-1.2072.104c-.0605.0108-.0837-.0484-.0377-.0828.0417-.0308 1.2445-.9463 1.2445-.9463l1.244.9463c.0469.0344.024.0936-.0364.0828zm-2.0783 5.9446s-.0636.0228-.0804.0788c.252.1937.4257.6343.9515.6343s.6995-.4406.9511-.6343c-.0164-.0564-.08-.0788-.08-.0788s-.3293.0776-.8711.0776c-.5418 0-.8711-.0776-.8711-.0776zM12 10.4832c-.146 0-.178-.0552-.2777-.0548-.0948.0004-.2789.076-.319.1453a.1542.1542 0 00.0413.0948c.2129.032.309.1505.5558.1505.2469 0 .3425-.1185.5558-.1505a.1579.1579 0 00.0412-.0948c-.0396-.0692-.224-.1445-.3193-.1453-.1-.0008-.1324.0548-.2781.0548zm11.9868 2.27a11.964 11.964 0 01-.076.8528c-1.359.2249-1.8447-.986-3.2368-.9252.0832.2954.1508.5963.2029.9036 1.148-.0008 1.6105 1.0724 2.8878.9143-.0672.3281-.148.6519-.2413.9708-1.01.0992-1.3657-.9044-2.5345-.8767.0096.1664.0148.3345.0148.5041l-.0048.2805 2.2696.866a12.04 12.04 0 01-.3965.9479c-.6823-.0376-.9175-.9127-1.9555-.8431a9.0882 9.0882 0 01-.118.665c.9015-.0632 1.0955.7667 1.7414.834a12.2317 12.2317 0 01-.5302.8767c-.3826-.205-.7143-.8231-1.4398-.8612a8.6035 8.6035 0 00.195-.6994c-.6435 0-1.3794-.2509-1.9964-.8127.2-1.1388-1.5674-2.2984-1.5674-3.1324 0-.9059.4582-1.4073.4582-2.6285 0-.9063-.4402-1.8895-1.104-2.5614a2.2175 2.2175 0 00-.4114-.3309c.6098.7547 1.078 1.6494 1.078 2.6858 0 1.15-.535 1.757-.535 2.8186 0 1.0612 1.5526 1.9796 1.5526 3.074 0 .4305-.1377.851-.5914 1.677.697.6962 1.605 1.076 2.1908 1.076.19 0 .292-.058.3601-.2073a9.0925 9.0925 0 00.1665-.391c.631.0245.9199.5979 1.2692.8268-.1916.2573-.393.5057-.6038.7462-.234-.2593-.5486-.6954-1.0092-.8167a9.2087 9.2087 0 01-.2613.473c.3966.108.6679.5082.878.7715a12.1305 12.1305 0 01-.7075.6754c-.1532-.2384-.3917-.541-.659-.7042a8.3639 8.3639 0 01-.3077.391c.2272.154.4277.4313.5586.6574-.2833.2272-.5763.443-.8796.6446-.1496-1.2192-1.8138-2.0548-1.3653-3.4693-.1472.2493-.3229.561-.3229.9364 0 1.024 1.0908 1.8366 1.1776 2.8542-.226.1353-.4573.2625-.693.383-.0392-1.1185-1.194-2.3425-1.194-3.2604 0-1.0248 1.342-2.054 1.342-3.2636 0-1.2105-1.5485-2.0484-1.5485-3.1112 0-1.062.6586-1.673.6586-3.0343 0-.9972-.4738-2.0063-1.2056-2.651-.1297-.1144-.2573-.2052-.4106-.2849.6903.828 1.0904 1.579 1.0904 2.7186 0 1.2801-.7546 1.9908-.7546 3.244 0 1.2537 1.5197 1.9507 1.5197 3.1192 0 1.1684-1.4145 2.1532-1.4145 3.3536 0 1.092 1.2468 2.182 1.2653 3.4777a11.7704 11.7704 0 01-.8327.3257c.1584-1.3089-1.245-2.659-1.245-3.727 0-1.1676 1.4674-2.1712 1.4674-3.43 0-1.2597-1.4917-1.8451-1.4917-3.138 0-1.292.9151-2.0075.9151-3.4352 0-1.1129-.5494-2.1136-1.352-2.7338l-.0509-.0385c-.0756-.056-.138.0116-.0844.078.5682.7095.8719 1.427.8719 2.4894 0 1.306-1.0512 2.3673-1.0512 3.6325 0 1.4934 1.4117 1.9203 1.4117 3.1456 0 1.2248-1.5137 2.2048-1.5137 3.5053 0 1.206 1.4325 2.5445 1.1868 3.9366a11.6645 11.6645 0 01-.8743.192c.2689-1.7334-1.1364-2.9782-1.1364-4.1122 0-1.2277 1.5677-2.322 1.5677-3.5217 0-1.1316-1.1252-1.5014-1.2732-2.659-.0204-.158-.1473-.2753-.3221-.2461-.2285.0416-.5214.192-.9816.192-.4602 0-.753-.1508-.982-.192-.1744-.0288-.3013.0884-.3217.246-.1476 1.1577-1.2736 1.527-1.2736 2.659 0 1.1997 1.5681 2.2937 1.5681 3.5218 0 1.134-1.4053 2.3788-1.1368 4.1123a12.1233 12.1233 0 01-.8743-.1921c-.2457-1.3921 1.1872-2.7306 1.1872-3.9366 0-1.3005-1.5141-2.2805-1.5141-3.5053 0-1.2253 1.412-1.6522 1.412-3.1456 0-1.2652-1.0515-2.326-1.0515-3.6325 0-1.062.3037-1.7795.8723-2.4893.0532-.0665-.0088-.134-.0848-.078l-.0504.0384c-.802.6186-1.351 1.6193-1.351 2.7322 0 1.4277.9152 2.1431.9152 3.4352 0 1.2925-1.4917 1.878-1.4917 3.138 0 1.2588 1.4673 2.2624 1.4673 3.43 0 1.0684-1.4033 2.4181-1.2445 3.727a11.8995 11.8995 0 01-.833-.3257c.0188-1.2957 1.2648-2.3861 1.2648-3.4777 0-1.2004-1.4137-2.1852-1.4137-3.3536 0-1.1685 1.519-1.8655 1.519-3.1192 0-1.2532-.7543-1.9639-.7543-3.244 0-1.1396.3997-1.8907 1.09-2.7186-.1537.0797-.281.1705-.4102.285-.7318.6446-1.2052 1.6537-1.2052 2.651 0 1.3612.6586 1.9722.6586 3.0342 0 1.0628-1.5485 1.9007-1.5485 3.1112 0 1.2096 1.342 2.2392 1.342 3.2636 0 .9183-1.1556 2.1423-1.1944 3.2604a11.8754 11.8754 0 01-.693-.383c.0872-1.0176 1.1776-1.8303 1.1776-2.8542 0-.3754-.1753-.687-.323-.9364.4486 1.4145-1.2156 2.25-1.3652 3.4693a12.1204 12.1204 0 01-.8796-.6446c.1305-.2257.331-.5034.5586-.6575a7.9134 7.9134 0 01-.3077-.391c-.2677.1633-.5066.4659-.6594.7043a12.2459 12.2459 0 01-.707-.6754c.21-.2633.4813-.6635.8779-.7715a9.0433 9.0433 0 01-.2613-.473c-.4606.1213-.7755.5574-1.0092.8167a12.141 12.141 0 01-.6038-.7462c.3493-.229.6382-.8027 1.2688-.8267.0529.1312.1085.2617.1669.3909.068.1493.1705.2073.3601.2073.5858 0 1.4934-.3798 2.1908-1.076-.4537-.826-.5914-1.2465-.5914-1.677 0-1.094 1.5526-2.0124 1.5526-3.074 0-1.0615-.535-1.6686-.535-2.8186 0-1.0364.4682-1.9311 1.078-2.6858a2.2175 2.2175 0 00-.4114.331c-.6638.6722-1.104 1.655-1.104 2.5613 0 1.2212.4586 1.7226.4586 2.6285 0 .834-1.7679 1.9936-1.5678 3.1324-.617.5618-1.3529.8127-1.9967.8127a9.305 9.305 0 00.1949.6994c-.7251.0385-1.0568.6567-1.4398.8612a12.0872 12.0872 0 01-.5302-.8768c.6455-.0672.84-.897 1.7419-.8339a9.1275 9.1275 0 01-.1185-.665c-1.038-.0696-1.2732.8059-1.9555.8431a12.04 12.04 0 01-.3965-.948l2.27-.8659-.0048-.2805c0-.1696.0052-.3377.0144-.5041-1.1688-.0273-1.5246.976-2.5345.8767a12.106 12.106 0 01-.241-.9708c1.2766.158 1.7395-.9151 2.888-.9143a8.7482 8.7482 0 01.2024-.9036c-1.392-.0604-1.8779 1.1505-3.2364.9252a11.7352 11.7352 0 01-.076-.8527c1.5794.1764 2.1716-1.122 3.6097-.9632a8.4303 8.4303 0 01.471-.9963c-1.803-.317-2.4153 1.1908-4.0935.9591C.1813 5.2805 5.4844.0898 12 .0898S23.8187 5.2805 24 11.753c-1.6786.2317-2.2908-1.2757-4.0935-.9591.1773.32.335.6526.471.9963 1.4373-.1592 2.0295 1.1396 3.6093.9632zm-17.147-5.035c-.884-.3613-1.954-.278-2.868.309-.1416-.8504-.603-1.6058-1.26-2.0616-.0908-.0628-.1853-.0032-.1769.102.1389 1.7967-.9115 3.3569-2.2032 4.7282 1.3313.4001 2.4645-1.3141 4.1912-.7159a9.0364 9.0364 0 012.3168-2.3617zM12 6.6314c-1.1144 0-2.048.6303-2.2924 1.4446-.0188.0624.0068.1028.0788.0704.2005-.09.4285-.1333.6762-.1333.4546 0 .8551.1669 1.092.4574.1049.3457.1137.8463-.0048 1.132-.1872-.042-.2545-.1868-.4373-.1868-.1829 0-.3245.1284-.6347.1284-.3097 0-.346-.1465-.5498-.1465-.2396 0-.2837.247-.2837.5254 0 1.2417 1.1413 2.9503 2.3553 2.9503 1.2136 0 2.3549-1.7086 2.3549-2.9503 0-.2785-.0573-.517-.3077-.5494-.1249.09-.2397.1705-.5254.1705-.3102 0-.3958-.1284-.5783-.1284-.2204 0-.1984.465-.4601.491-.1745-.4194-.1829-.9572-.038-1.4362.2373-.2905.6374-.4574 1.092-.4574.2477 0 .4773.0437.6758.1333.0724.0324.0976-.0084.0788-.0704-.244-.8143-1.1772-1.4446-2.2916-1.4446zm1.7743 1.7815c-.2673 0-.5807.082-.7775.3013-.0204.0596-.0204.1484.0084.2077.4845-.166.9119-.1725 1.1184.0584.11-.1.1452-.19.1452-.2945 0-.1613-.164-.273-.4945-.273zm-3.8979.5674c.2337-.234.7263-.224 1.238-.0352.0225-.2545-.4333-.5326-.8887-.5326-.3309 0-.4945.1116-.4945.2733 0 .1044.0352.1949.1452.2945zm7.6804-4.2031c-.8799.0628-1.6442.3649-2.2624.8683.2625-.7443.5958-1.3953 1.0184-2.0264-1.1204.1189-2.0572.5286-2.7406 1.2289l-.535-1.4025 1.1876-1.0488-1.5902-.1125L12 .8053l-.635 1.479-1.5902.1124 1.1876 1.0488-.5346 1.4025c-.6838-.7003-1.6206-1.11-2.7402-1.2289.4218.6315.7551 1.2825 1.0176 2.0264-.6178-.5038-1.3821-.806-2.262-.8683.5278.6786.9955 1.402 1.342 2.18.0393.0876.1233.1164.2141.0712 1.2053-.599 2.5634-.936 4.0003-.936 1.437 0 2.7946.3374 4.0007.936.0908.0452.1748.0164.2136-.0712.347-.778.8147-1.5014 1.343-2.18zm1.9211 5.3035c1.7259-.5982 2.8595 1.1156 4.1908.7159-1.2917-1.3713-2.3417-2.9315-2.2028-4.7282.0084-.1052-.0865-.1652-.1769-.102-.6574.4558-1.1188 1.2112-1.26 2.0615-.9144-.587-1.984-.6706-2.868-.3089a9.0431 9.0431 0 012.317 2.3617z" }) + ] + } + ); +}); + +exports.default = SiStarbucks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.d.ts new file mode 100644 index 000000000..51dd6e86e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006241"; +declare const SiStarbucks: IconType; +export { SiStarbucks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.mjs new file mode 100644 index 000000000..838e4c83b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarbucks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006241"; +const SiStarbucks = React.forwardRef(function SiStarbucks2({ title = "Starbucks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.2072 5.2801c-.1052-.0188-.6126-.104-1.2072-.104s-1.102.0848-1.2072.104c-.0605.0108-.0837-.0484-.0377-.0828.0417-.0308 1.2445-.9463 1.2445-.9463l1.244.9463c.0469.0344.024.0936-.0364.0828zm-2.0783 5.9446s-.0636.0228-.0804.0788c.252.1937.4257.6343.9515.6343s.6995-.4406.9511-.6343c-.0164-.0564-.08-.0788-.08-.0788s-.3293.0776-.8711.0776c-.5418 0-.8711-.0776-.8711-.0776zM12 10.4832c-.146 0-.178-.0552-.2777-.0548-.0948.0004-.2789.076-.319.1453a.1542.1542 0 00.0413.0948c.2129.032.309.1505.5558.1505.2469 0 .3425-.1185.5558-.1505a.1579.1579 0 00.0412-.0948c-.0396-.0692-.224-.1445-.3193-.1453-.1-.0008-.1324.0548-.2781.0548zm11.9868 2.27a11.964 11.964 0 01-.076.8528c-1.359.2249-1.8447-.986-3.2368-.9252.0832.2954.1508.5963.2029.9036 1.148-.0008 1.6105 1.0724 2.8878.9143-.0672.3281-.148.6519-.2413.9708-1.01.0992-1.3657-.9044-2.5345-.8767.0096.1664.0148.3345.0148.5041l-.0048.2805 2.2696.866a12.04 12.04 0 01-.3965.9479c-.6823-.0376-.9175-.9127-1.9555-.8431a9.0882 9.0882 0 01-.118.665c.9015-.0632 1.0955.7667 1.7414.834a12.2317 12.2317 0 01-.5302.8767c-.3826-.205-.7143-.8231-1.4398-.8612a8.6035 8.6035 0 00.195-.6994c-.6435 0-1.3794-.2509-1.9964-.8127.2-1.1388-1.5674-2.2984-1.5674-3.1324 0-.9059.4582-1.4073.4582-2.6285 0-.9063-.4402-1.8895-1.104-2.5614a2.2175 2.2175 0 00-.4114-.3309c.6098.7547 1.078 1.6494 1.078 2.6858 0 1.15-.535 1.757-.535 2.8186 0 1.0612 1.5526 1.9796 1.5526 3.074 0 .4305-.1377.851-.5914 1.677.697.6962 1.605 1.076 2.1908 1.076.19 0 .292-.058.3601-.2073a9.0925 9.0925 0 00.1665-.391c.631.0245.9199.5979 1.2692.8268-.1916.2573-.393.5057-.6038.7462-.234-.2593-.5486-.6954-1.0092-.8167a9.2087 9.2087 0 01-.2613.473c.3966.108.6679.5082.878.7715a12.1305 12.1305 0 01-.7075.6754c-.1532-.2384-.3917-.541-.659-.7042a8.3639 8.3639 0 01-.3077.391c.2272.154.4277.4313.5586.6574-.2833.2272-.5763.443-.8796.6446-.1496-1.2192-1.8138-2.0548-1.3653-3.4693-.1472.2493-.3229.561-.3229.9364 0 1.024 1.0908 1.8366 1.1776 2.8542-.226.1353-.4573.2625-.693.383-.0392-1.1185-1.194-2.3425-1.194-3.2604 0-1.0248 1.342-2.054 1.342-3.2636 0-1.2105-1.5485-2.0484-1.5485-3.1112 0-1.062.6586-1.673.6586-3.0343 0-.9972-.4738-2.0063-1.2056-2.651-.1297-.1144-.2573-.2052-.4106-.2849.6903.828 1.0904 1.579 1.0904 2.7186 0 1.2801-.7546 1.9908-.7546 3.244 0 1.2537 1.5197 1.9507 1.5197 3.1192 0 1.1684-1.4145 2.1532-1.4145 3.3536 0 1.092 1.2468 2.182 1.2653 3.4777a11.7704 11.7704 0 01-.8327.3257c.1584-1.3089-1.245-2.659-1.245-3.727 0-1.1676 1.4674-2.1712 1.4674-3.43 0-1.2597-1.4917-1.8451-1.4917-3.138 0-1.292.9151-2.0075.9151-3.4352 0-1.1129-.5494-2.1136-1.352-2.7338l-.0509-.0385c-.0756-.056-.138.0116-.0844.078.5682.7095.8719 1.427.8719 2.4894 0 1.306-1.0512 2.3673-1.0512 3.6325 0 1.4934 1.4117 1.9203 1.4117 3.1456 0 1.2248-1.5137 2.2048-1.5137 3.5053 0 1.206 1.4325 2.5445 1.1868 3.9366a11.6645 11.6645 0 01-.8743.192c.2689-1.7334-1.1364-2.9782-1.1364-4.1122 0-1.2277 1.5677-2.322 1.5677-3.5217 0-1.1316-1.1252-1.5014-1.2732-2.659-.0204-.158-.1473-.2753-.3221-.2461-.2285.0416-.5214.192-.9816.192-.4602 0-.753-.1508-.982-.192-.1744-.0288-.3013.0884-.3217.246-.1476 1.1577-1.2736 1.527-1.2736 2.659 0 1.1997 1.5681 2.2937 1.5681 3.5218 0 1.134-1.4053 2.3788-1.1368 4.1123a12.1233 12.1233 0 01-.8743-.1921c-.2457-1.3921 1.1872-2.7306 1.1872-3.9366 0-1.3005-1.5141-2.2805-1.5141-3.5053 0-1.2253 1.412-1.6522 1.412-3.1456 0-1.2652-1.0515-2.326-1.0515-3.6325 0-1.062.3037-1.7795.8723-2.4893.0532-.0665-.0088-.134-.0848-.078l-.0504.0384c-.802.6186-1.351 1.6193-1.351 2.7322 0 1.4277.9152 2.1431.9152 3.4352 0 1.2925-1.4917 1.878-1.4917 3.138 0 1.2588 1.4673 2.2624 1.4673 3.43 0 1.0684-1.4033 2.4181-1.2445 3.727a11.8995 11.8995 0 01-.833-.3257c.0188-1.2957 1.2648-2.3861 1.2648-3.4777 0-1.2004-1.4137-2.1852-1.4137-3.3536 0-1.1685 1.519-1.8655 1.519-3.1192 0-1.2532-.7543-1.9639-.7543-3.244 0-1.1396.3997-1.8907 1.09-2.7186-.1537.0797-.281.1705-.4102.285-.7318.6446-1.2052 1.6537-1.2052 2.651 0 1.3612.6586 1.9722.6586 3.0342 0 1.0628-1.5485 1.9007-1.5485 3.1112 0 1.2096 1.342 2.2392 1.342 3.2636 0 .9183-1.1556 2.1423-1.1944 3.2604a11.8754 11.8754 0 01-.693-.383c.0872-1.0176 1.1776-1.8303 1.1776-2.8542 0-.3754-.1753-.687-.323-.9364.4486 1.4145-1.2156 2.25-1.3652 3.4693a12.1204 12.1204 0 01-.8796-.6446c.1305-.2257.331-.5034.5586-.6575a7.9134 7.9134 0 01-.3077-.391c-.2677.1633-.5066.4659-.6594.7043a12.2459 12.2459 0 01-.707-.6754c.21-.2633.4813-.6635.8779-.7715a9.0433 9.0433 0 01-.2613-.473c-.4606.1213-.7755.5574-1.0092.8167a12.141 12.141 0 01-.6038-.7462c.3493-.229.6382-.8027 1.2688-.8267.0529.1312.1085.2617.1669.3909.068.1493.1705.2073.3601.2073.5858 0 1.4934-.3798 2.1908-1.076-.4537-.826-.5914-1.2465-.5914-1.677 0-1.094 1.5526-2.0124 1.5526-3.074 0-1.0615-.535-1.6686-.535-2.8186 0-1.0364.4682-1.9311 1.078-2.6858a2.2175 2.2175 0 00-.4114.331c-.6638.6722-1.104 1.655-1.104 2.5613 0 1.2212.4586 1.7226.4586 2.6285 0 .834-1.7679 1.9936-1.5678 3.1324-.617.5618-1.3529.8127-1.9967.8127a9.305 9.305 0 00.1949.6994c-.7251.0385-1.0568.6567-1.4398.8612a12.0872 12.0872 0 01-.5302-.8768c.6455-.0672.84-.897 1.7419-.8339a9.1275 9.1275 0 01-.1185-.665c-1.038-.0696-1.2732.8059-1.9555.8431a12.04 12.04 0 01-.3965-.948l2.27-.8659-.0048-.2805c0-.1696.0052-.3377.0144-.5041-1.1688-.0273-1.5246.976-2.5345.8767a12.106 12.106 0 01-.241-.9708c1.2766.158 1.7395-.9151 2.888-.9143a8.7482 8.7482 0 01.2024-.9036c-1.392-.0604-1.8779 1.1505-3.2364.9252a11.7352 11.7352 0 01-.076-.8527c1.5794.1764 2.1716-1.122 3.6097-.9632a8.4303 8.4303 0 01.471-.9963c-1.803-.317-2.4153 1.1908-4.0935.9591C.1813 5.2805 5.4844.0898 12 .0898S23.8187 5.2805 24 11.753c-1.6786.2317-2.2908-1.2757-4.0935-.9591.1773.32.335.6526.471.9963 1.4373-.1592 2.0295 1.1396 3.6093.9632zm-17.147-5.035c-.884-.3613-1.954-.278-2.868.309-.1416-.8504-.603-1.6058-1.26-2.0616-.0908-.0628-.1853-.0032-.1769.102.1389 1.7967-.9115 3.3569-2.2032 4.7282 1.3313.4001 2.4645-1.3141 4.1912-.7159a9.0364 9.0364 0 012.3168-2.3617zM12 6.6314c-1.1144 0-2.048.6303-2.2924 1.4446-.0188.0624.0068.1028.0788.0704.2005-.09.4285-.1333.6762-.1333.4546 0 .8551.1669 1.092.4574.1049.3457.1137.8463-.0048 1.132-.1872-.042-.2545-.1868-.4373-.1868-.1829 0-.3245.1284-.6347.1284-.3097 0-.346-.1465-.5498-.1465-.2396 0-.2837.247-.2837.5254 0 1.2417 1.1413 2.9503 2.3553 2.9503 1.2136 0 2.3549-1.7086 2.3549-2.9503 0-.2785-.0573-.517-.3077-.5494-.1249.09-.2397.1705-.5254.1705-.3102 0-.3958-.1284-.5783-.1284-.2204 0-.1984.465-.4601.491-.1745-.4194-.1829-.9572-.038-1.4362.2373-.2905.6374-.4574 1.092-.4574.2477 0 .4773.0437.6758.1333.0724.0324.0976-.0084.0788-.0704-.244-.8143-1.1772-1.4446-2.2916-1.4446zm1.7743 1.7815c-.2673 0-.5807.082-.7775.3013-.0204.0596-.0204.1484.0084.2077.4845-.166.9119-.1725 1.1184.0584.11-.1.1452-.19.1452-.2945 0-.1613-.164-.273-.4945-.273zm-3.8979.5674c.2337-.234.7263-.224 1.238-.0352.0225-.2545-.4333-.5326-.8887-.5326-.3309 0-.4945.1116-.4945.2733 0 .1044.0352.1949.1452.2945zm7.6804-4.2031c-.8799.0628-1.6442.3649-2.2624.8683.2625-.7443.5958-1.3953 1.0184-2.0264-1.1204.1189-2.0572.5286-2.7406 1.2289l-.535-1.4025 1.1876-1.0488-1.5902-.1125L12 .8053l-.635 1.479-1.5902.1124 1.1876 1.0488-.5346 1.4025c-.6838-.7003-1.6206-1.11-2.7402-1.2289.4218.6315.7551 1.2825 1.0176 2.0264-.6178-.5038-1.3821-.806-2.262-.8683.5278.6786.9955 1.402 1.342 2.18.0393.0876.1233.1164.2141.0712 1.2053-.599 2.5634-.936 4.0003-.936 1.437 0 2.7946.3374 4.0007.936.0908.0452.1748.0164.2136-.0712.347-.778.8147-1.5014 1.343-2.18zm1.9211 5.3035c1.7259-.5982 2.8595 1.1156 4.1908.7159-1.2917-1.3713-2.3417-2.9315-2.2028-4.7282.0084-.1052-.0865-.1652-.1769-.102-.6574.4558-1.1188 1.2112-1.26 2.0615-.9144-.587-1.984-.6706-2.868-.3089a9.0431 9.0431 0 012.317 2.3617z" }) + ] + } + ); +}); + +export { SiStarbucks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.cjs new file mode 100644 index 000000000..7e97d4035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#004B8D"; +const SiStardock = React__namespace.forwardRef(function SiStardock2({ title = "Stardock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.337 3.28c-.108 0-.22.007-.336.017-1.553.129-3.886.917-6.557 2.217a7.326 7.326 0 0 0-3.71-.994c-4.124 0-7.478 3.354-7.478 7.496 0 .674.093 1.33.262 1.95-3.224 2.697-5.04 5.153-4.385 6.221.712 1.125 3.992.412 8.115-1.556a7.55 7.55 0 0 0 3.484.863c4.124 0 7.48-3.356 7.48-7.478 0-.544-.058-1.086-.17-1.592 3.504-2.867 5.529-5.491 4.816-6.615-.24-.375-.768-.545-1.521-.53Zm-4.324 1.708c-1.912.769-4.666 1.706-5.64 3.711-.564 1.143.371 2.436.84 3.035.47.62 1.35 2.174-.13 3.786-1.5 1.63-7.028 3.318-7.028 3.318 1.78-.843 4.91-2.06 5.396-4.16.375-1.593-1.142-2.493-1.555-3.205-.412-.712-.842-1.93 1.313-3.54 2.156-1.631 6.804-2.945 6.804-2.945Zm1.02.758c.67-.007 1.153.151 1.378.498.43.675-.207 1.95-1.556 3.393a7.514 7.514 0 0 0-2.323-3.393c.975-.318 1.832-.49 2.502-.498zM4.8 14.79a7.627 7.627 0 0 0 2.305 3.074c-1.762.525-3.074.524-3.467-.113-.394-.618.075-1.706 1.162-2.96z" }) + ] + } + ); +}); + +exports.default = SiStardock; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.d.ts new file mode 100644 index 000000000..353096e90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#004B8D"; +declare const SiStardock: IconType; +export { SiStardock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.mjs new file mode 100644 index 000000000..cb1c465f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStardock.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#004B8D"; +const SiStardock = React.forwardRef(function SiStardock2({ title = "Stardock", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.337 3.28c-.108 0-.22.007-.336.017-1.553.129-3.886.917-6.557 2.217a7.326 7.326 0 0 0-3.71-.994c-4.124 0-7.478 3.354-7.478 7.496 0 .674.093 1.33.262 1.95-3.224 2.697-5.04 5.153-4.385 6.221.712 1.125 3.992.412 8.115-1.556a7.55 7.55 0 0 0 3.484.863c4.124 0 7.48-3.356 7.48-7.478 0-.544-.058-1.086-.17-1.592 3.504-2.867 5.529-5.491 4.816-6.615-.24-.375-.768-.545-1.521-.53Zm-4.324 1.708c-1.912.769-4.666 1.706-5.64 3.711-.564 1.143.371 2.436.84 3.035.47.62 1.35 2.174-.13 3.786-1.5 1.63-7.028 3.318-7.028 3.318 1.78-.843 4.91-2.06 5.396-4.16.375-1.593-1.142-2.493-1.555-3.205-.412-.712-.842-1.93 1.313-3.54 2.156-1.631 6.804-2.945 6.804-2.945Zm1.02.758c.67-.007 1.153.151 1.378.498.43.675-.207 1.95-1.556 3.393a7.514 7.514 0 0 0-2.323-3.393c.975-.318 1.832-.49 2.502-.498zM4.8 14.79a7.627 7.627 0 0 0 2.305 3.074c-1.762.525-3.074.524-3.467-.113-.394-.618.075-1.706 1.162-2.96z" }) + ] + } + ); +}); + +export { SiStardock as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.cjs new file mode 100644 index 000000000..57e26e45e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6935D3"; +const SiStarlingbank = React__namespace.forwardRef(function SiStarlingbank2({ title = "Starling Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm2.738 3.822h.666v2.724h-.666a4.794 4.794 0 0 0-4.789 4.788V12H7.226v-.666c0-4.142 3.37-7.512 7.512-7.512zM14.05 12h2.723v.666c0 4.142-3.37 7.512-7.512 7.512h-.666v-2.724h.666a4.794 4.794 0 0 0 4.789-4.788z" }) + ] + } + ); +}); + +exports.default = SiStarlingbank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.d.ts new file mode 100644 index 000000000..453e0bdc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6935D3"; +declare const SiStarlingbank: IconType; +export { SiStarlingbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.mjs new file mode 100644 index 000000000..0805d4380 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarlingbank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6935D3"; +const SiStarlingbank = React.forwardRef(function SiStarlingbank2({ title = "Starling Bank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm2.738 3.822h.666v2.724h-.666a4.794 4.794 0 0 0-4.789 4.788V12H7.226v-.666c0-4.142 3.37-7.512 7.512-7.512zM14.05 12h2.723v.666c0 4.142-3.37 7.512-7.512 7.512h-.666v-2.724h.666a4.794 4.794 0 0 0 4.789-4.788z" }) + ] + } + ); +}); + +export { SiStarlingbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.cjs new file mode 100644 index 000000000..2f7353e5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD0B78"; +const SiStarship = React__namespace.forwardRef(function SiStarship2({ title = "Starship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.521 9.62a1.057 1.057 0 11-2.115 0 1.057 1.057 0 012.115 0zM24 12c0 6.627-5.373 12-12 12-.35 0-.697-.015-1.04-.044 2.019-1.89 2.548-5.061 2.548-5.061l-3.226-1.053s-1.499 3.23-5.599 3.67A11.98 11.98 0 010 12C0 5.373 5.373 0 12 0s12 5.373 12 12zM8.628 6.606c-1.23-.13-1.885-.83-2.03-2.031-.142 1.159-.77 1.88-2.032 2.031 1.168.227 1.83.918 2.031 2.032-.02-1.154.666-1.825 2.031-2.032zm7.786 5.207c1.11-2.483.392-4.252-1.233-6.246-2.043 1.5-3.759 3.023-3.636 5.149-1.375.675-2.261 1.206-3.147 2.289l2.779 1.103-.368 1.267 3.637 1.062.443-1.181 2.825.651c.014-1.496-.38-3.097-1.3-4.094z" }) + ] + } + ); +}); + +exports.default = SiStarship; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.d.ts new file mode 100644 index 000000000..66aaaa118 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD0B78"; +declare const SiStarship: IconType; +export { SiStarship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.mjs new file mode 100644 index 000000000..1424943e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarship.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD0B78"; +const SiStarship = React.forwardRef(function SiStarship2({ title = "Starship", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.521 9.62a1.057 1.057 0 11-2.115 0 1.057 1.057 0 012.115 0zM24 12c0 6.627-5.373 12-12 12-.35 0-.697-.015-1.04-.044 2.019-1.89 2.548-5.061 2.548-5.061l-3.226-1.053s-1.499 3.23-5.599 3.67A11.98 11.98 0 010 12C0 5.373 5.373 0 12 0s12 5.373 12 12zM8.628 6.606c-1.23-.13-1.885-.83-2.03-2.031-.142 1.159-.77 1.88-2.032 2.031 1.168.227 1.83.918 2.031 2.032-.02-1.154.666-1.825 2.031-2.032zm7.786 5.207c1.11-2.483.392-4.252-1.233-6.246-2.043 1.5-3.759 3.023-3.636 5.149-1.375.675-2.261 1.206-3.147 2.289l2.779 1.103-.368 1.267 3.637 1.062.443-1.181 2.825.651c.014-1.496-.38-3.097-1.3-4.094z" }) + ] + } + ); +}); + +export { SiStarship as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.cjs new file mode 100644 index 000000000..d9935df3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2E75BA"; +const SiStartdotgg = React__namespace.forwardRef(function SiStartdotgg2({ title = "start.gg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 0A5.999 5.999 0 00.002 6v5.252a.75.75 0 00.75.748H5.25a.748.748 0 00.75-.747V6.749C6 6.334 6.336 6 6.748 6h16.497a.748.748 0 00.749-.748V.749A.743.743 0 0023.247 0zm12.75 12a.748.748 0 00-.75.75v4.5a.748.748 0 01-.747.748H.753a.754.754 0 00-.75.751v4.5a.75.75 0 00.75.751H18a5.999 5.999 0 005.999-6v-5.25a.75.75 0 00-.75-.75z" }) + ] + } + ); +}); + +exports.default = SiStartdotgg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.d.ts new file mode 100644 index 000000000..f2b9ed7ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2E75BA"; +declare const SiStartdotgg: IconType; +export { SiStartdotgg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.mjs new file mode 100644 index 000000000..58fe7f86d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartdotgg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2E75BA"; +const SiStartdotgg = React.forwardRef(function SiStartdotgg2({ title = "start.gg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 0A5.999 5.999 0 00.002 6v5.252a.75.75 0 00.75.748H5.25a.748.748 0 00.75-.747V6.749C6 6.334 6.336 6 6.748 6h16.497a.748.748 0 00.749-.748V.749A.743.743 0 0023.247 0zm12.75 12a.748.748 0 00-.75.75v4.5a.748.748 0 01-.747.748H.753a.754.754 0 00-.75.751v4.5a.75.75 0 00.75.751H18a5.999 5.999 0 005.999-6v-5.25a.75.75 0 00-.75-.75z" }) + ] + } + ); +}); + +export { SiStartdotgg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.cjs new file mode 100644 index 000000000..4b6f2225d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6563FF"; +const SiStartpage = React__namespace.forwardRef(function SiStartpage2({ title = "Startpage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.885 14.254.04-.06a8.723 8.723 0 0 0 1.851-4.309c-1.334 0-2.648 0-3.982.04a4.901 4.901 0 0 1-4.758 3.696 4.948 4.948 0 0 1-4.56-3.044 89.632 89.632 0 0 0-3.941.514c1.035 3.697 4.46 6.405 8.501 6.405a8.76 8.76 0 0 0 3.743-.83l.06-.02.04.04 5.455 6.603c.378.454.916.711 1.513.711.458 0 .896-.158 1.234-.435.399-.336.657-.79.697-1.304.04-.514-.1-1.009-.438-1.424zM5.118 8.56c.1-2.59 2.27-4.685 4.918-4.685a4.911 4.911 0 0 1 4.898 4.389c1.314.02 2.608.04 3.922.099C18.616 3.717 14.754 0 10.036 0c-4.858 0-8.82 3.934-8.82 8.758v.178a86.7 86.7 0 0 1 3.902-.376z" }) + ] + } + ); +}); + +exports.default = SiStartpage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.d.ts new file mode 100644 index 000000000..ba14058e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6563FF"; +declare const SiStartpage: IconType; +export { SiStartpage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.mjs new file mode 100644 index 000000000..9026696a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartpage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6563FF"; +const SiStartpage = React.forwardRef(function SiStartpage2({ title = "Startpage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m16.885 14.254.04-.06a8.723 8.723 0 0 0 1.851-4.309c-1.334 0-2.648 0-3.982.04a4.901 4.901 0 0 1-4.758 3.696 4.948 4.948 0 0 1-4.56-3.044 89.632 89.632 0 0 0-3.941.514c1.035 3.697 4.46 6.405 8.501 6.405a8.76 8.76 0 0 0 3.743-.83l.06-.02.04.04 5.455 6.603c.378.454.916.711 1.513.711.458 0 .896-.158 1.234-.435.399-.336.657-.79.697-1.304.04-.514-.1-1.009-.438-1.424zM5.118 8.56c.1-2.59 2.27-4.685 4.918-4.685a4.911 4.911 0 0 1 4.898 4.389c1.314.02 2.608.04 3.922.099C18.616 3.717 14.754 0 10.036 0c-4.858 0-8.82 3.934-8.82 8.758v.178a86.7 86.7 0 0 1 3.902-.376z" }) + ] + } + ); +}); + +export { SiStartpage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.cjs new file mode 100644 index 000000000..f617f3dcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFE200"; +const SiStartrek = React__namespace.forwardRef(function SiStartrek2({ title = "Star Trek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.943 14.596c.094 0 .3.095.576.462a57.71 57.71 0 0 1 2.165 3.23c-1.627.646-3.595 1.01-5.684 1.01-.988 0-1.948-.097-2.856-.26 1.417-1.507 2.918-2.856 4.703-3.98.555-.278.819-.462 1.096-.462zm2.424-6.202c2.858 1.055 4.788 2.906 4.788 4.998 0 1.415-.881 2.73-2.338 3.755-.385-2.26-.898-4.477-1.644-6.616a38.69 38.69 0 0 0-.808-2.136zM7.73 8.077a38.965 38.965 0 0 0-1.096 3.288 56.361 56.361 0 0 0-1.327 6.404c-2.11-1.1-3.462-2.69-3.462-4.385.001-2.274 2.44-4.337 5.885-5.307zM12.463.086c-.095 0-.08-.007-.174.086a25.88 25.88 0 0 0-3.663 5.77C3.631 6.89 0 9.887 0 13.385c0 2.588 1.991 4.903 5.048 6.317a64.85 64.85 0 0 0-.347 4.01c0 .094.108.202.203.202h.086c.094 0 .08.007.173-.086a79.757 79.757 0 0 1 2.538-3.203c1.338.336 2.78.52 4.299.52 2.455 0 4.738-.48 6.635-1.298.46.772.908 1.555 1.385 2.395 0 .094.194.086.288.086a.175.175 0 0 0 .173-.173 69.569 69.569 0 0 0-.346-3.088c2.369-1.42 3.865-3.45 3.865-5.682 0-3.252-3.156-6.072-7.615-7.212a33.526 33.526 0 0 0-3.75-6c0-.094-.078-.087-.172-.087z" }) + ] + } + ); +}); + +exports.default = SiStartrek; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.d.ts new file mode 100644 index 000000000..61d6c63be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFE200"; +declare const SiStartrek: IconType; +export { SiStartrek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.mjs new file mode 100644 index 000000000..b6e69cc2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStartrek.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFE200"; +const SiStartrek = React.forwardRef(function SiStartrek2({ title = "Star Trek", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.943 14.596c.094 0 .3.095.576.462a57.71 57.71 0 0 1 2.165 3.23c-1.627.646-3.595 1.01-5.684 1.01-.988 0-1.948-.097-2.856-.26 1.417-1.507 2.918-2.856 4.703-3.98.555-.278.819-.462 1.096-.462zm2.424-6.202c2.858 1.055 4.788 2.906 4.788 4.998 0 1.415-.881 2.73-2.338 3.755-.385-2.26-.898-4.477-1.644-6.616a38.69 38.69 0 0 0-.808-2.136zM7.73 8.077a38.965 38.965 0 0 0-1.096 3.288 56.361 56.361 0 0 0-1.327 6.404c-2.11-1.1-3.462-2.69-3.462-4.385.001-2.274 2.44-4.337 5.885-5.307zM12.463.086c-.095 0-.08-.007-.174.086a25.88 25.88 0 0 0-3.663 5.77C3.631 6.89 0 9.887 0 13.385c0 2.588 1.991 4.903 5.048 6.317a64.85 64.85 0 0 0-.347 4.01c0 .094.108.202.203.202h.086c.094 0 .08.007.173-.086a79.757 79.757 0 0 1 2.538-3.203c1.338.336 2.78.52 4.299.52 2.455 0 4.738-.48 6.635-1.298.46.772.908 1.555 1.385 2.395 0 .094.194.086.288.086a.175.175 0 0 0 .173-.173 69.569 69.569 0 0 0-.346-3.088c2.369-1.42 3.865-3.45 3.865-5.682 0-3.252-3.156-6.072-7.615-7.212a33.526 33.526 0 0 0-3.75-6c0-.094-.078-.087-.172-.087z" }) + ] + } + ); +}); + +export { SiStartrek as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.cjs new file mode 100644 index 000000000..58b8ca400 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#082125"; +const SiStarz = React__namespace.forwardRef(function SiStarz2({ title = "STARZ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.2695 9.2832C.3784 9.2832.131 10.4706.131 10.834c0 2.1989 2.9316 1.3955 2.9316 2.2363 0 .2073-.1641.4277-.7363.4277-.6317 0-.7598-.2895-.7598-.5097H0c.0054.4022.1675 1.7285 2.3262 1.7285 1.5989 0 2.287-.7516 2.287-1.7031 0-2.1804-2.996-1.3552-2.996-2.1797 0-.1628.1284-.4082.6308-.4082.5025 0 .631.2454.631.4082H4.369c0-.3917-.2084-1.5508-2.0996-1.5508zm2.2774.1465v1.4043h1.4199v3.7363h1.5488V10.834h1.4395V9.4297Zm5.6191 0L8.131 14.5703h1.6425l.1836-.5586h1.7989l.1855.5586h1.6406L11.547 9.4297Zm3.7422 0v5.1406h1.5488v-2.164l1.289 2.164h1.836l-1.3125-1.9023c.6997-.3145.9922-.9294.9922-1.5567h-.002c0-.928-.6126-1.6816-2.121-1.6816h-.002zm4.9297 0v1.4043h2.0371l-2.2246 3.7363h4.1816l.7793-1.4043h-2.4531l2.2227-3.7363Zm-3.3809 1.2656h.6817c.4166 0 .58.225.58.504 0 .2788-.1636.5058-.58.5058v-.002h-.6817zm-4.6015.6094.5586 1.6777h-1.1153zm12.836 2.7148c-.1708 0-.3087.1398-.3087.3106 0 .1707.1379.3086.3086.3086A.3082.3082 0 0 0 24 14.33c0-.1708-.1379-.3106-.3086-.3106zm-.0138.0606c.0042-.0002.0094 0 .0137 0 .1373 0 .248.1127.248.25a.2477.2477 0 0 1-.248.248c-.1372 0-.25-.1108-.25-.248 0-.133.105-.2433.2363-.25zm-.0937.084v.33h.0605v-.1289h.047l.0702.129h.0703l-.0781-.1368a.0987.0987 0 0 0 .0469-.0332.0949.0949 0 0 0 .0195-.0605c0-.059-.0416-.0996-.1055-.0996zm.0605.0625h.0645c.0314 0 .0488.013.0488.039 0 .026-.0174.039-.0488.039h-.0645z" }) + ] + } + ); +}); + +exports.default = SiStarz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.d.ts new file mode 100644 index 000000000..4277d0343 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#082125"; +declare const SiStarz: IconType; +export { SiStarz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.mjs new file mode 100644 index 000000000..0e72f9b07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStarz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#082125"; +const SiStarz = React.forwardRef(function SiStarz2({ title = "STARZ", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.2695 9.2832C.3784 9.2832.131 10.4706.131 10.834c0 2.1989 2.9316 1.3955 2.9316 2.2363 0 .2073-.1641.4277-.7363.4277-.6317 0-.7598-.2895-.7598-.5097H0c.0054.4022.1675 1.7285 2.3262 1.7285 1.5989 0 2.287-.7516 2.287-1.7031 0-2.1804-2.996-1.3552-2.996-2.1797 0-.1628.1284-.4082.6308-.4082.5025 0 .631.2454.631.4082H4.369c0-.3917-.2084-1.5508-2.0996-1.5508zm2.2774.1465v1.4043h1.4199v3.7363h1.5488V10.834h1.4395V9.4297Zm5.6191 0L8.131 14.5703h1.6425l.1836-.5586h1.7989l.1855.5586h1.6406L11.547 9.4297Zm3.7422 0v5.1406h1.5488v-2.164l1.289 2.164h1.836l-1.3125-1.9023c.6997-.3145.9922-.9294.9922-1.5567h-.002c0-.928-.6126-1.6816-2.121-1.6816h-.002zm4.9297 0v1.4043h2.0371l-2.2246 3.7363h4.1816l.7793-1.4043h-2.4531l2.2227-3.7363Zm-3.3809 1.2656h.6817c.4166 0 .58.225.58.504 0 .2788-.1636.5058-.58.5058v-.002h-.6817zm-4.6015.6094.5586 1.6777h-1.1153zm12.836 2.7148c-.1708 0-.3087.1398-.3087.3106 0 .1707.1379.3086.3086.3086A.3082.3082 0 0 0 24 14.33c0-.1708-.1379-.3106-.3086-.3106zm-.0138.0606c.0042-.0002.0094 0 .0137 0 .1373 0 .248.1127.248.25a.2477.2477 0 0 1-.248.248c-.1372 0-.25-.1108-.25-.248 0-.133.105-.2433.2363-.25zm-.0937.084v.33h.0605v-.1289h.047l.0702.129h.0703l-.0781-.1368a.0987.0987 0 0 0 .0469-.0332.0949.0949 0 0 0 .0195-.0605c0-.059-.0416-.0996-.1055-.0996zm.0605.0625h.0645c.0314 0 .0488.013.0488.039 0 .026-.0174.039-.0488.039h-.0645z" }) + ] + } + ); +}); + +export { SiStarz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.cjs new file mode 100644 index 000000000..d2f3189d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF269E"; +const SiStatamic = React__namespace.forwardRef(function SiStatamic2({ title = "Statamic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.78 21.639c1.754 0 2.398-.756 2.398-2.607v-3.62c0-1.722.837-2.704 1.641-3.17.242-.145.242-.483 0-.644-.836-.531-1.64-1.642-1.64-3.122v-3.54c0-1.996-.548-2.575-2.302-2.575H4.123c-1.754 0-2.301.58-2.301 2.575v3.556c0 1.48-.805 2.59-1.641 3.122a.377.377 0 0 0 0 .643c.804.451 1.64 1.433 1.64 3.17v3.605c0 1.85.645 2.607 2.399 2.607zm-7.82-3.299c-1.883 0-3.25-.563-4.522-1.673a.891.891 0 0 1-.29-.676.83.83 0 0 1 .193-.563l.403-.515c.193-.242.402-.354.643-.354.274 0 .531.112.805.29a5.331 5.331 0 0 0 2.993.884c.885 0 1.593-.37 1.593-1.126 0-1.963-6.533-.885-6.533-5.294 0-2.366 1.93-3.685 4.441-3.685 1.77 0 3.074.515 4.04 1.126.24.161.402.483.402.805 0 .193-.049.37-.161.53l-.29.435c-.21.29-.45.435-.756.435-.21 0-.435-.08-.676-.193a5.07 5.07 0 0 0-2.398-.564c-.95 0-1.513.515-1.513 1.046 0 2.012 6.534.918 6.534 5.198 0 2.414-1.947 3.894-4.908 3.894z" }) + ] + } + ); +}); + +exports.default = SiStatamic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.d.ts new file mode 100644 index 000000000..50a0bde9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF269E"; +declare const SiStatamic: IconType; +export { SiStatamic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.mjs new file mode 100644 index 000000000..b2b3fcdce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatamic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF269E"; +const SiStatamic = React.forwardRef(function SiStatamic2({ title = "Statamic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.78 21.639c1.754 0 2.398-.756 2.398-2.607v-3.62c0-1.722.837-2.704 1.641-3.17.242-.145.242-.483 0-.644-.836-.531-1.64-1.642-1.64-3.122v-3.54c0-1.996-.548-2.575-2.302-2.575H4.123c-1.754 0-2.301.58-2.301 2.575v3.556c0 1.48-.805 2.59-1.641 3.122a.377.377 0 0 0 0 .643c.804.451 1.64 1.433 1.64 3.17v3.605c0 1.85.645 2.607 2.399 2.607zm-7.82-3.299c-1.883 0-3.25-.563-4.522-1.673a.891.891 0 0 1-.29-.676.83.83 0 0 1 .193-.563l.403-.515c.193-.242.402-.354.643-.354.274 0 .531.112.805.29a5.331 5.331 0 0 0 2.993.884c.885 0 1.593-.37 1.593-1.126 0-1.963-6.533-.885-6.533-5.294 0-2.366 1.93-3.685 4.441-3.685 1.77 0 3.074.515 4.04 1.126.24.161.402.483.402.805 0 .193-.049.37-.161.53l-.29.435c-.21.29-.45.435-.756.435-.21 0-.435-.08-.676-.193a5.07 5.07 0 0 0-2.398-.564c-.95 0-1.513.515-1.513 1.046 0 2.012 6.534.918 6.534 5.198 0 2.414-1.947 3.894-4.908 3.894z" }) + ] + } + ); +}); + +export { SiStatamic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.cjs new file mode 100644 index 000000000..1a2107c45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#001327"; +const SiStatista = React__namespace.forwardRef(function SiStatista2({ title = "Statista", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.8597 0a.84.84 0 0 0-.8404.8404v15.2165H.14s3.6114-.0681 5.1428-.8739a10.89 10.89 0 0 0 3.337-3.0513l.903-1.2746.2857-.4062c.0343-.04.1821-.2571.2678-.3828s.4581-.6506.8181-1.1764a16.94 16.94 0 0 1 5.2623-4.7433c3.3371-1.7142 7.76-1.5424 7.76-1.5424h.0681V.8917A.84.84 0 0 0 23.1455 0Zm23.1195 7.9487a.9.9 0 0 1-.2166.029s-3.6054.068-5.154.8794a10.86 10.86 0 0 0-3.3382 3.0458l-.885 1.2801c-.1314.1829-.257.3652-.2913.4052l-.269.3828-.817 1.1774s-2.1776 3.1433-5.2633 4.7433c-3.2 1.6629-7.3882 1.5539-7.731 1.5425v1.7142A.84.84 0 0 0 .8541 24h22.2857a.84.84 0 0 0 .8393-.8404z" }) + ] + } + ); +}); + +exports.default = SiStatista; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.d.ts new file mode 100644 index 000000000..ae63107c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#001327"; +declare const SiStatista: IconType; +export { SiStatista as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.mjs new file mode 100644 index 000000000..ac319e564 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatista.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#001327"; +const SiStatista = React.forwardRef(function SiStatista2({ title = "Statista", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.8597 0a.84.84 0 0 0-.8404.8404v15.2165H.14s3.6114-.0681 5.1428-.8739a10.89 10.89 0 0 0 3.337-3.0513l.903-1.2746.2857-.4062c.0343-.04.1821-.2571.2678-.3828s.4581-.6506.8181-1.1764a16.94 16.94 0 0 1 5.2623-4.7433c3.3371-1.7142 7.76-1.5424 7.76-1.5424h.0681V.8917A.84.84 0 0 0 23.1455 0Zm23.1195 7.9487a.9.9 0 0 1-.2166.029s-3.6054.068-5.154.8794a10.86 10.86 0 0 0-3.3382 3.0458l-.885 1.2801c-.1314.1829-.257.3652-.2913.4052l-.269.3828-.817 1.1774s-2.1776 3.1433-5.2633 4.7433c-3.2 1.6629-7.3882 1.5539-7.731 1.5425v1.7142A.84.84 0 0 0 .8541 24h22.2857a.84.84 0 0 0 .8393-.8404z" }) + ] + } + ); +}); + +export { SiStatista as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.cjs new file mode 100644 index 000000000..b49abca1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#172B4D"; +const SiStatuspage = React__namespace.forwardRef(function SiStatuspage2({ title = "Statuspage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.008 9.597a5.623 5.623 0 1 1 0 11.245 5.623 5.623 0 0 1 0-11.245zM.154 8.717l3.02 3.574a.639.639 0 0 0 .913.068c4.885-4.379 10.97-4.379 15.84 0a.642.642 0 0 0 .916-.068l3.006-3.574a.646.646 0 0 0-.075-.906c-7.1-6.204-16.462-6.204-23.555 0a.65.65 0 0 0-.065.906z" }) + ] + } + ); +}); + +exports.default = SiStatuspage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.d.ts new file mode 100644 index 000000000..d6ab6d1ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#172B4D"; +declare const SiStatuspage: IconType; +export { SiStatuspage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.mjs new file mode 100644 index 000000000..0ec4b8e28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#172B4D"; +const SiStatuspage = React.forwardRef(function SiStatuspage2({ title = "Statuspage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.008 9.597a5.623 5.623 0 1 1 0 11.245 5.623 5.623 0 0 1 0-11.245zM.154 8.717l3.02 3.574a.639.639 0 0 0 .913.068c4.885-4.379 10.97-4.379 15.84 0a.642.642 0 0 0 .916-.068l3.006-3.574a.646.646 0 0 0-.075-.906c-7.1-6.204-16.462-6.204-23.555 0a.65.65 0 0 0-.065.906z" }) + ] + } + ); +}); + +export { SiStatuspage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.cjs new file mode 100644 index 000000000..537799bed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4934BF"; +const SiStatuspal = React__namespace.forwardRef(function SiStatuspal2({ title = "Statuspal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.275 9.296c0-1.242-1.02-2.25-2.275-2.25-1.256 0-2.275 1.008-2.275 2.25 0 .936.58 1.737 1.403 2.077L5.934 24c1.896-1.1 3.98-1.651 6.066-1.651 2.085 0 4.17.55 6.066 1.65l-5.194-12.626a2.251 2.251 0 001.403-2.077zm1.187 12.01A13.44 13.44 0 0012 20.849a13.44 13.44 0 00-3.463.457L12 13.389zM16.55 13.5a5.58 5.58 0 00-.723-7.535 5.732 5.732 0 00-7.654 0A5.58 5.58 0 007.45 13.5a6.167 6.167 0 01.143-8.716c2.446-2.379 6.368-2.379 8.813 0a6.167 6.167 0 01.144 8.716zm0 3c3.047-1.988 4.416-5.716 3.366-9.174C18.867 3.867 15.65 1.5 12 1.5c-3.65 0-6.869 2.367-7.917 5.826-1.049 3.458.32 7.186 3.367 9.174-3.481-2.029-5.16-6.111-4.096-9.968C4.417 2.675 7.96 0 12 0c4.042 0 7.583 2.675 8.646 6.532 1.063 3.857-.615 7.94-4.096 9.968z" }) + ] + } + ); +}); + +exports.default = SiStatuspal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.d.ts new file mode 100644 index 000000000..3aac70805 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4934BF"; +declare const SiStatuspal: IconType; +export { SiStatuspal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.mjs new file mode 100644 index 000000000..bad791792 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStatuspal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4934BF"; +const SiStatuspal = React.forwardRef(function SiStatuspal2({ title = "Statuspal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.275 9.296c0-1.242-1.02-2.25-2.275-2.25-1.256 0-2.275 1.008-2.275 2.25 0 .936.58 1.737 1.403 2.077L5.934 24c1.896-1.1 3.98-1.651 6.066-1.651 2.085 0 4.17.55 6.066 1.65l-5.194-12.626a2.251 2.251 0 001.403-2.077zm1.187 12.01A13.44 13.44 0 0012 20.849a13.44 13.44 0 00-3.463.457L12 13.389zM16.55 13.5a5.58 5.58 0 00-.723-7.535 5.732 5.732 0 00-7.654 0A5.58 5.58 0 007.45 13.5a6.167 6.167 0 01.143-8.716c2.446-2.379 6.368-2.379 8.813 0a6.167 6.167 0 01.144 8.716zm0 3c3.047-1.988 4.416-5.716 3.366-9.174C18.867 3.867 15.65 1.5 12 1.5c-3.65 0-6.869 2.367-7.917 5.826-1.049 3.458.32 7.186 3.367 9.174-3.481-2.029-5.16-6.111-4.096-9.968C4.417 2.675 7.96 0 12 0c4.042 0 7.583 2.675 8.646 6.532 1.063 3.857-.615 7.94-4.096 9.968z" }) + ] + } + ); +}); + +export { SiStatuspal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.cjs new file mode 100644 index 000000000..3fb051ff6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSteam = React__namespace.forwardRef(function SiSteam2({ title = "Steam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.979 0C5.678 0 .511 4.86.022 11.037l6.432 2.658c.545-.371 1.203-.59 1.912-.59.063 0 .125.004.188.006l2.861-4.142V8.91c0-2.495 2.028-4.524 4.524-4.524 2.494 0 4.524 2.031 4.524 4.527s-2.03 4.525-4.524 4.525h-.105l-4.076 2.911c0 .052.004.105.004.159 0 1.875-1.515 3.396-3.39 3.396-1.635 0-3.016-1.173-3.331-2.727L.436 15.27C1.862 20.307 6.486 24 11.979 24c6.627 0 11.999-5.373 11.999-12S18.605 0 11.979 0zM7.54 18.21l-1.473-.61c.262.543.714.999 1.314 1.25 1.297.539 2.793-.076 3.332-1.375.263-.63.264-1.319.005-1.949s-.75-1.121-1.377-1.383c-.624-.26-1.29-.249-1.878-.03l1.523.63c.956.4 1.409 1.5 1.009 2.455-.397.957-1.497 1.41-2.454 1.012H7.54zm11.415-9.303c0-1.662-1.353-3.015-3.015-3.015-1.665 0-3.015 1.353-3.015 3.015 0 1.665 1.35 3.015 3.015 3.015 1.663 0 3.015-1.35 3.015-3.015zm-5.273-.005c0-1.252 1.013-2.266 2.265-2.266 1.249 0 2.266 1.014 2.266 2.266 0 1.251-1.017 2.265-2.266 2.265-1.253 0-2.265-1.014-2.265-2.265z" }) + ] + } + ); +}); + +exports.default = SiSteam; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.d.ts new file mode 100644 index 000000000..45ad13b19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSteam: IconType; +export { SiSteam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.mjs new file mode 100644 index 000000000..0edccc495 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteam.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSteam = React.forwardRef(function SiSteam2({ title = "Steam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.979 0C5.678 0 .511 4.86.022 11.037l6.432 2.658c.545-.371 1.203-.59 1.912-.59.063 0 .125.004.188.006l2.861-4.142V8.91c0-2.495 2.028-4.524 4.524-4.524 2.494 0 4.524 2.031 4.524 4.527s-2.03 4.525-4.524 4.525h-.105l-4.076 2.911c0 .052.004.105.004.159 0 1.875-1.515 3.396-3.39 3.396-1.635 0-3.016-1.173-3.331-2.727L.436 15.27C1.862 20.307 6.486 24 11.979 24c6.627 0 11.999-5.373 11.999-12S18.605 0 11.979 0zM7.54 18.21l-1.473-.61c.262.543.714.999 1.314 1.25 1.297.539 2.793-.076 3.332-1.375.263-.63.264-1.319.005-1.949s-.75-1.121-1.377-1.383c-.624-.26-1.29-.249-1.878-.03l1.523.63c.956.4 1.409 1.5 1.009 2.455-.397.957-1.497 1.41-2.454 1.012H7.54zm11.415-9.303c0-1.662-1.353-3.015-3.015-3.015-1.665 0-3.015 1.353-3.015 3.015 0 1.665 1.35 3.015 3.015 3.015 1.663 0 3.015-1.35 3.015-3.015zm-5.273-.005c0-1.252 1.013-2.266 2.265-2.266 1.249 0 2.266 1.014 2.266 2.266 0 1.251-1.017 2.265-2.266 2.265-1.253 0-2.265-1.014-2.265-2.265z" }) + ] + } + ); +}); + +export { SiSteam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.cjs new file mode 100644 index 000000000..4cd1cf79e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSteamdb = React__namespace.forwardRef(function SiSteamdb2({ title = "SteamDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.981 0C5.72 0 .581 2.231.02 5.081l6.675 1.257c.544-.17 1.162-.244 1.8-.244l3.131-1.875c-.037-.469.244-.956.881-1.35.9-.581 2.307-.9 3.732-.9a8.582 8.582 0 012.812.412c2.1.713 2.569 2.082 1.069 3.057-.956.618-2.494.937-4.013.9l-4.125 1.48c-.037.3-.243.582-.637.845-1.106.712-3.263.88-4.8.356-.675-.225-1.125-.563-1.313-.9L.47 7.2c.431.675 1.125 1.294 2.025 1.838C.938 9.938 0 11.062 0 12.28c0 1.2.9 2.307 2.419 3.206C.9 16.37 0 17.476 0 18.675 0 21.619 5.363 24 12 24c6.619 0 12-2.381 12-5.325 0-1.2-.9-2.306-2.419-3.188C23.1 14.588 24 13.482 24 12.282c0-1.219-.938-2.362-2.512-3.262 1.556-.956 2.493-2.138 2.493-3.413 0-3.093-5.381-5.606-12-5.606zm4.275 2.663c-.975.018-1.912.225-2.512.618-1.031.675-.713 1.594.712 2.082 1.425.487 3.394.337 4.425-.338 1.032-.675.713-1.594-.712-2.062a6.376 6.376 0 00-1.913-.282zm.057.318c1.387 0 2.493.525 2.493 1.163 0 .637-1.106 1.162-2.493 1.162-1.388 0-2.494-.525-2.494-1.162 0-.638 1.106-1.163 2.494-1.163zM8.493 6.45c-.3.019-.58.038-.862.075l1.707.319a2.03.94 0 11-1.52 1.744l-1.668-.32c.188.17.45.32.806.45 1.2.413 2.888.282 3.75-.28.863-.563.6-1.35-.6-1.744-.487-.169-1.068-.244-1.612-.244zm11.944 3.113v1.743c0 2.063-3.787 3.732-8.437 3.732-4.669 0-8.437-1.67-8.437-3.732V9.581c2.156.994 5.137 1.613 8.418 1.613 3.3 0 6.3-.619 8.475-1.631zm0 6.487v1.65c0 2.063-3.787 3.731-8.437 3.731-4.669 0-8.437-1.668-8.437-3.731v-1.65c2.175.956 5.137 1.538 8.437 1.538s6.281-.582 8.438-1.538z" }) + ] + } + ); +}); + +exports.default = SiSteamdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.d.ts new file mode 100644 index 000000000..6fc6b70d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSteamdb: IconType; +export { SiSteamdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.mjs new file mode 100644 index 000000000..0568c9841 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSteamdb = React.forwardRef(function SiSteamdb2({ title = "SteamDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.981 0C5.72 0 .581 2.231.02 5.081l6.675 1.257c.544-.17 1.162-.244 1.8-.244l3.131-1.875c-.037-.469.244-.956.881-1.35.9-.581 2.307-.9 3.732-.9a8.582 8.582 0 012.812.412c2.1.713 2.569 2.082 1.069 3.057-.956.618-2.494.937-4.013.9l-4.125 1.48c-.037.3-.243.582-.637.845-1.106.712-3.263.88-4.8.356-.675-.225-1.125-.563-1.313-.9L.47 7.2c.431.675 1.125 1.294 2.025 1.838C.938 9.938 0 11.062 0 12.28c0 1.2.9 2.307 2.419 3.206C.9 16.37 0 17.476 0 18.675 0 21.619 5.363 24 12 24c6.619 0 12-2.381 12-5.325 0-1.2-.9-2.306-2.419-3.188C23.1 14.588 24 13.482 24 12.282c0-1.219-.938-2.362-2.512-3.262 1.556-.956 2.493-2.138 2.493-3.413 0-3.093-5.381-5.606-12-5.606zm4.275 2.663c-.975.018-1.912.225-2.512.618-1.031.675-.713 1.594.712 2.082 1.425.487 3.394.337 4.425-.338 1.032-.675.713-1.594-.712-2.062a6.376 6.376 0 00-1.913-.282zm.057.318c1.387 0 2.493.525 2.493 1.163 0 .637-1.106 1.162-2.493 1.162-1.388 0-2.494-.525-2.494-1.162 0-.638 1.106-1.163 2.494-1.163zM8.493 6.45c-.3.019-.58.038-.862.075l1.707.319a2.03.94 0 11-1.52 1.744l-1.668-.32c.188.17.45.32.806.45 1.2.413 2.888.282 3.75-.28.863-.563.6-1.35-.6-1.744-.487-.169-1.068-.244-1.612-.244zm11.944 3.113v1.743c0 2.063-3.787 3.732-8.437 3.732-4.669 0-8.437-1.67-8.437-3.732V9.581c2.156.994 5.137 1.613 8.418 1.613 3.3 0 6.3-.619 8.475-1.631zm0 6.487v1.65c0 2.063-3.787 3.731-8.437 3.731-4.669 0-8.437-1.668-8.437-3.731v-1.65c2.175.956 5.137 1.538 8.437 1.538s6.281-.582 8.438-1.538z" }) + ] + } + ); +}); + +export { SiSteamdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.cjs new file mode 100644 index 000000000..dff8cf3f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A9FFF"; +const SiSteamdeck = React__namespace.forwardRef(function SiSteamdeck2({ title = "Steam Deck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.999 0v4.309c4.242 0 7.694 3.45 7.694 7.691s-3.452 7.691-7.694 7.691V24c6.617 0 12-5.383 12-12s-5.383-12-12-12Zm0 6.011c-3.313 0-6 2.687-5.998 6a5.999 5.999 0 1 0 5.998-6z" }) + ] + } + ); +}); + +exports.default = SiSteamdeck; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.d.ts new file mode 100644 index 000000000..f402046e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A9FFF"; +declare const SiSteamdeck: IconType; +export { SiSteamdeck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.mjs new file mode 100644 index 000000000..99659cc24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamdeck.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A9FFF"; +const SiSteamdeck = React.forwardRef(function SiSteamdeck2({ title = "Steam Deck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.999 0v4.309c4.242 0 7.694 3.45 7.694 7.691s-3.452 7.691-7.694 7.691V24c6.617 0 12-5.383 12-12s-5.383-12-12-12Zm0 6.011c-3.313 0-6 2.687-5.998 6a5.999 5.999 0 1 0 5.998-6z" }) + ] + } + ); +}); + +export { SiSteamdeck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.cjs new file mode 100644 index 000000000..47f396adc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1E1E1E"; +const SiSteamworks = React__namespace.forwardRef(function SiSteamworks2({ title = "Steamworks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.928 9.49v2.071h-1.503v1.503h1.503v-1.5H24V9.49zm-5.915.498v1.075h1.075V9.988zm2.326 2.572a.596.596 0 00-.382.144.497.497 0 00-.155.383.437.437 0 00.145.35.627.627 0 00.33.14l.103.015.112.02a1.071 1.071 0 01.163.037.366.366 0 01.102.065.34.34 0 01.1.268.353.353 0 01-.127.29.529.529 0 01-.347.105.736.736 0 01-.285-.05.747.747 0 01-.24-.175l-.098.102a.795.795 0 00.27.193.866.866 0 00.343.06.68.68 0 00.455-.144.508.508 0 00.175-.39.53.53 0 00-.043-.208.423.423 0 00-.12-.16.468.468 0 00-.13-.08.84.84 0 00-.2-.047l-.112-.02-.088-.013a.82.82 0 01-.152-.045.481.481 0 01-.123-.072.323.323 0 01-.095-.25.378.378 0 01.115-.287.442.442 0 01.313-.105.617.617 0 01.252.045.75.75 0 01.195.132l.09-.092a.713.713 0 00-.53-.21.596.596 0 00-.036 0zm-17.664.005a.673.673 0 00-.432.161.542.542 0 00-.175.42.516.516 0 00.132.375.602.602 0 00.359.157l.12.015.105.015a.278.278 0 01.172.076.23.23 0 01.05.155c0 .16-.11.237-.327.237a.783.783 0 01-.251-.037.47.47 0 01-.195-.123l-.233.24a.76.76 0 00.295.195 1.157 1.157 0 00.38.058.764.764 0 00.492-.156.53.53 0 00.193-.431.54.54 0 00-.143-.405.48.48 0 00-.145-.093.988.988 0 00-.21-.052l-.107-.015-.113-.015a.292.292 0 01-.167-.078.194.194 0 01-.058-.135.222.222 0 01.075-.172.305.305 0 01.213-.068.767.767 0 01.205.027.394.394 0 01.172.105l.228-.232a.72.72 0 00-.26-.17.977.977 0 00-.338-.053.673.673 0 00-.037 0zm12.091.003a.612.612 0 00-.238.05.645.645 0 00-.21.146.525.525 0 00-.097.134.607.607 0 00-.05.153 1.387 1.387 0 00-.02.19 8.383 8.383 0 000 .595 1.306 1.306 0 00.02.19.607.607 0 00.05.152.486.486 0 00.097.135.645.645 0 00.21.145.656.656 0 00.251.05.612.612 0 00.251-.05.645.645 0 00.21-.145.525.525 0 00.097-.135.606.606 0 00.05-.152 1.385 1.385 0 00.02-.19 8.36 8.36 0 000-.595 1.305 1.305 0 00-.02-.19.606.606 0 00-.05-.153.486.486 0 00-.097-.134.645.645 0 00-.21-.146.656.656 0 00-.25-.05.612.612 0 00-.014 0zm-10.949.015v.333H2.3v1.575h.36v-1.575h.482v-.333zm1.878 0v1.908h1.218v-.33h-.855v-.464h.727v-.333h-.727v-.448h.855v-.333zm2.298 0l-.673 1.908h.375l.113-.337h.655l.11.337h.377l-.675-1.908zm1.442 0v1.908h.36v-1.11l.355.722h.245l.352-.722v1.11h.36v-1.908h-.354l-.48 1.03-.483-1.03zm2.198 0l.46 1.908h.144l.437-1.66.435 1.66h.143l.46-1.908h-.147l-.39 1.658-.43-1.658H10.6l-.43 1.658-.39-1.658zm4.452 0v1.908h.14v-.882h.508l.44.882h.162l-.445-.882a.49.49 0 00.428-.516.486.486 0 00-.148-.374.55.55 0 00-.382-.136zm1.93 0v1.908h.14v-.515l.44-.553.593 1.068v-.002h.167l-.667-1.177.57-.728h-.168l-.935 1.192v-1.192zm3.188.033v.19h.026v-.128l.045.093h.024l.042-.093v.128h.028v-.19h-.028l-.055.118-.055-.118zm-.165.002v.025h.052v.163h.028v-.163h.052v-.025zm-6.26.08a.489.489 0 01.352.148.45.45 0 01.077.107.485.485 0 01.043.132 1.117 1.117 0 01.018.175 7.48 7.48 0 010 .556 1.117 1.117 0 01-.018.175.485.485 0 01-.043.132.506.506 0 01-.077.107.489.489 0 01-.7 0 .45.45 0 01-.078-.107.589.589 0 01-.042-.132 1.117 1.117 0 01-.018-.175 7.459 7.459 0 010-.556 1.117 1.117 0 01.018-.175.485.485 0 01.042-.132.506.506 0 01.078-.107.489.489 0 01.349-.148zm2.007.015a.433.433 0 01.28.098.35.35 0 01.11.289.358.358 0 01-.113.286.428.428 0 01-.294.098h-.543v-.77h.545a.433.433 0 01.015-.001zm-8.643.433l.228.692h-.46z" }) + ] + } + ); +}); + +exports.default = SiSteamworks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.d.ts new file mode 100644 index 000000000..471ca5bf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1E1E1E"; +declare const SiSteamworks: IconType; +export { SiSteamworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.mjs new file mode 100644 index 000000000..0baafb186 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteamworks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1E1E1E"; +const SiSteamworks = React.forwardRef(function SiSteamworks2({ title = "Steamworks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.928 9.49v2.071h-1.503v1.503h1.503v-1.5H24V9.49zm-5.915.498v1.075h1.075V9.988zm2.326 2.572a.596.596 0 00-.382.144.497.497 0 00-.155.383.437.437 0 00.145.35.627.627 0 00.33.14l.103.015.112.02a1.071 1.071 0 01.163.037.366.366 0 01.102.065.34.34 0 01.1.268.353.353 0 01-.127.29.529.529 0 01-.347.105.736.736 0 01-.285-.05.747.747 0 01-.24-.175l-.098.102a.795.795 0 00.27.193.866.866 0 00.343.06.68.68 0 00.455-.144.508.508 0 00.175-.39.53.53 0 00-.043-.208.423.423 0 00-.12-.16.468.468 0 00-.13-.08.84.84 0 00-.2-.047l-.112-.02-.088-.013a.82.82 0 01-.152-.045.481.481 0 01-.123-.072.323.323 0 01-.095-.25.378.378 0 01.115-.287.442.442 0 01.313-.105.617.617 0 01.252.045.75.75 0 01.195.132l.09-.092a.713.713 0 00-.53-.21.596.596 0 00-.036 0zm-17.664.005a.673.673 0 00-.432.161.542.542 0 00-.175.42.516.516 0 00.132.375.602.602 0 00.359.157l.12.015.105.015a.278.278 0 01.172.076.23.23 0 01.05.155c0 .16-.11.237-.327.237a.783.783 0 01-.251-.037.47.47 0 01-.195-.123l-.233.24a.76.76 0 00.295.195 1.157 1.157 0 00.38.058.764.764 0 00.492-.156.53.53 0 00.193-.431.54.54 0 00-.143-.405.48.48 0 00-.145-.093.988.988 0 00-.21-.052l-.107-.015-.113-.015a.292.292 0 01-.167-.078.194.194 0 01-.058-.135.222.222 0 01.075-.172.305.305 0 01.213-.068.767.767 0 01.205.027.394.394 0 01.172.105l.228-.232a.72.72 0 00-.26-.17.977.977 0 00-.338-.053.673.673 0 00-.037 0zm12.091.003a.612.612 0 00-.238.05.645.645 0 00-.21.146.525.525 0 00-.097.134.607.607 0 00-.05.153 1.387 1.387 0 00-.02.19 8.383 8.383 0 000 .595 1.306 1.306 0 00.02.19.607.607 0 00.05.152.486.486 0 00.097.135.645.645 0 00.21.145.656.656 0 00.251.05.612.612 0 00.251-.05.645.645 0 00.21-.145.525.525 0 00.097-.135.606.606 0 00.05-.152 1.385 1.385 0 00.02-.19 8.36 8.36 0 000-.595 1.305 1.305 0 00-.02-.19.606.606 0 00-.05-.153.486.486 0 00-.097-.134.645.645 0 00-.21-.146.656.656 0 00-.25-.05.612.612 0 00-.014 0zm-10.949.015v.333H2.3v1.575h.36v-1.575h.482v-.333zm1.878 0v1.908h1.218v-.33h-.855v-.464h.727v-.333h-.727v-.448h.855v-.333zm2.298 0l-.673 1.908h.375l.113-.337h.655l.11.337h.377l-.675-1.908zm1.442 0v1.908h.36v-1.11l.355.722h.245l.352-.722v1.11h.36v-1.908h-.354l-.48 1.03-.483-1.03zm2.198 0l.46 1.908h.144l.437-1.66.435 1.66h.143l.46-1.908h-.147l-.39 1.658-.43-1.658H10.6l-.43 1.658-.39-1.658zm4.452 0v1.908h.14v-.882h.508l.44.882h.162l-.445-.882a.49.49 0 00.428-.516.486.486 0 00-.148-.374.55.55 0 00-.382-.136zm1.93 0v1.908h.14v-.515l.44-.553.593 1.068v-.002h.167l-.667-1.177.57-.728h-.168l-.935 1.192v-1.192zm3.188.033v.19h.026v-.128l.045.093h.024l.042-.093v.128h.028v-.19h-.028l-.055.118-.055-.118zm-.165.002v.025h.052v.163h.028v-.163h.052v-.025zm-6.26.08a.489.489 0 01.352.148.45.45 0 01.077.107.485.485 0 01.043.132 1.117 1.117 0 01.018.175 7.48 7.48 0 010 .556 1.117 1.117 0 01-.018.175.485.485 0 01-.043.132.506.506 0 01-.077.107.489.489 0 01-.7 0 .45.45 0 01-.078-.107.589.589 0 01-.042-.132 1.117 1.117 0 01-.018-.175 7.459 7.459 0 010-.556 1.117 1.117 0 01.018-.175.485.485 0 01.042-.132.506.506 0 01.078-.107.489.489 0 01.349-.148zm2.007.015a.433.433 0 01.28.098.35.35 0 01.11.289.358.358 0 01-.113.286.428.428 0 01-.294.098h-.543v-.77h.545a.433.433 0 01.015-.001zm-8.643.433l.228.692h-.46z" }) + ] + } + ); +}); + +export { SiSteamworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.cjs new file mode 100644 index 000000000..b7b6b2149 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF5200"; +const SiSteelseries = React__namespace.forwardRef(function SiSteelseries2({ title = "Steelseries", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.08008 0c-1.00234 0-1.8125.80893-1.8125 1.8086v2.57226c-4.01871.7444-7.19505 3.9119-7.93946 7.91992H1.8125c-1.001 0-1.8125.80698-1.8125 1.80664 0 .99833.8115 1.8086 1.8125 1.8086h2.51563C5.18077 20.5094 9.22875 24 14.08008 24 19.54884 24 24 19.56148 24 14.10742c0-4.83662-3.50067-8.87524-8.10742-9.72656V1.80859C15.89258.80893 15.08108 0 14.08008 0ZM4.69336 3.17578c-1.00368 0-1.8164.80955-1.8164 1.81055 0 .99966.81272 1.8125 1.8164 1.8125 1.001 0 1.8164-.81284 1.8164-1.8125 0-1.001-.8154-1.81055-1.8164-1.81055zm9.38672 4.65625c3.46809 0 6.29297 2.81398 6.29297 6.2754 0 3.46006-2.82488 6.27734-6.29297 6.27734-3.46943 0-6.29297-2.81728-6.29297-6.27735 0-3.4614 2.82354-6.27539 6.29297-6.27539zm-.01758 2.4043c-2.14634 0-3.89258 1.73986-3.89258 3.88086S11.91616 18 14.0625 18c2.14634 0 3.89258-1.74182 3.89258-3.88281 0-2.141-1.74624-3.88086-3.89258-3.88086zm0 2.7168c.6455 0 1.16797.51989 1.16797 1.16406 0 .64283-.52246 1.16797-1.16797 1.16797-.64417 0-1.16992-.52514-1.16992-1.16797 0-.64417.52575-1.16407 1.16992-1.16407z" }) + ] + } + ); +}); + +exports.default = SiSteelseries; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.d.ts new file mode 100644 index 000000000..f7c2a0e5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF5200"; +declare const SiSteelseries: IconType; +export { SiSteelseries as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.mjs new file mode 100644 index 000000000..7ff9b89cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteelseries.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF5200"; +const SiSteelseries = React.forwardRef(function SiSteelseries2({ title = "Steelseries", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.08008 0c-1.00234 0-1.8125.80893-1.8125 1.8086v2.57226c-4.01871.7444-7.19505 3.9119-7.93946 7.91992H1.8125c-1.001 0-1.8125.80698-1.8125 1.80664 0 .99833.8115 1.8086 1.8125 1.8086h2.51563C5.18077 20.5094 9.22875 24 14.08008 24 19.54884 24 24 19.56148 24 14.10742c0-4.83662-3.50067-8.87524-8.10742-9.72656V1.80859C15.89258.80893 15.08108 0 14.08008 0ZM4.69336 3.17578c-1.00368 0-1.8164.80955-1.8164 1.81055 0 .99966.81272 1.8125 1.8164 1.8125 1.001 0 1.8164-.81284 1.8164-1.8125 0-1.001-.8154-1.81055-1.8164-1.81055zm9.38672 4.65625c3.46809 0 6.29297 2.81398 6.29297 6.2754 0 3.46006-2.82488 6.27734-6.29297 6.27734-3.46943 0-6.29297-2.81728-6.29297-6.27735 0-3.4614 2.82354-6.27539 6.29297-6.27539zm-.01758 2.4043c-2.14634 0-3.89258 1.73986-3.89258 3.88086S11.91616 18 14.0625 18c2.14634 0 3.89258-1.74182 3.89258-3.88281 0-2.141-1.74624-3.88086-3.89258-3.88086zm0 2.7168c.6455 0 1.16797.51989 1.16797 1.16406 0 .64283-.52246 1.16797-1.16797 1.16797-.64417 0-1.16992-.52514-1.16992-1.16797 0-.64417.52575-1.16407 1.16992-1.16407z" }) + ] + } + ); +}); + +export { SiSteelseries as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.cjs new file mode 100644 index 000000000..2433cd6ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#171FC9"; +const SiSteem = React__namespace.forwardRef(function SiSteem2({ title = "Steem", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.683 16.148l-.114.114c-.235.236-.486.46-.748.666l-.298.235a.11.11 0 01-.176-.11l.12-.53a3.3 3.3 0 00-.084-1.746l-.064-.195a7.193 7.193 0 00-.257-.671l-1.387-3.27-.149-.445a2.08 2.08 0 01-.093-.425l-.025-.223a2.065 2.065 0 01.59-1.696l.115-.114a8.33 8.33 0 01.747-.666l.299-.235a.109.109 0 01.126-.007c.04.025.06.071.049.117l-.119.53a3.3 3.3 0 00.083 1.746l.064.195c.074.227.16.453.257.671l1.387 3.27.15.445c.045.138.077.28.093.425l.025.223a2.065 2.065 0 01-.591 1.696zm-3.997 1.073l-.146.147c-.296.297-.612.579-.941.838l-.39.307a.12.12 0 01-.192-.12l.154-.687a4.169 4.169 0 00-.105-2.205l-.08-.248a9.058 9.058 0 00-.325-.848L9.91 10.28l-.188-.56a2.608 2.608 0 01-.117-.532l-.032-.285a2.586 2.586 0 01.74-2.124l.146-.147c.296-.297.612-.579.941-.838l.39-.307a.119.119 0 01.138-.007.119.119 0 01.054.127l-.154.687a4.168 4.168 0 00.105 2.205l.08.248c.094.287.204.572.325.848l1.75 4.125.188.56c.057.173.097.352.117.532l.032.285a2.586 2.586 0 01-.74 2.124zM9 16.148l-.114.114c-.234.236-.486.46-.747.666l-.299.235a.11.11 0 01-.175-.11l.12-.53a3.3 3.3 0 00-.084-1.746l-.064-.195a7.181 7.181 0 00-.257-.671l-1.387-3.27-.15-.445a2.076 2.076 0 01-.093-.425l-.025-.223a2.065 2.065 0 01.591-1.696l.114-.114a8.34 8.34 0 01.748-.666l.298-.235a.109.109 0 01.127-.007c.04.025.059.071.049.117l-.12.53a3.3 3.3 0 00.084 1.746l.064.195c.074.227.16.453.257.671l1.387 3.27.149.445c.046.138.077.28.093.425l.025.223a2.065 2.065 0 01-.59 1.696zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0" }) + ] + } + ); +}); + +exports.default = SiSteem; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.d.ts new file mode 100644 index 000000000..cfff9c7dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#171FC9"; +declare const SiSteem: IconType; +export { SiSteem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.mjs new file mode 100644 index 000000000..2f9c2a125 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteem.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#171FC9"; +const SiSteem = React.forwardRef(function SiSteem2({ title = "Steem", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.683 16.148l-.114.114c-.235.236-.486.46-.748.666l-.298.235a.11.11 0 01-.176-.11l.12-.53a3.3 3.3 0 00-.084-1.746l-.064-.195a7.193 7.193 0 00-.257-.671l-1.387-3.27-.149-.445a2.08 2.08 0 01-.093-.425l-.025-.223a2.065 2.065 0 01.59-1.696l.115-.114a8.33 8.33 0 01.747-.666l.299-.235a.109.109 0 01.126-.007c.04.025.06.071.049.117l-.119.53a3.3 3.3 0 00.083 1.746l.064.195c.074.227.16.453.257.671l1.387 3.27.15.445c.045.138.077.28.093.425l.025.223a2.065 2.065 0 01-.591 1.696zm-3.997 1.073l-.146.147c-.296.297-.612.579-.941.838l-.39.307a.12.12 0 01-.192-.12l.154-.687a4.169 4.169 0 00-.105-2.205l-.08-.248a9.058 9.058 0 00-.325-.848L9.91 10.28l-.188-.56a2.608 2.608 0 01-.117-.532l-.032-.285a2.586 2.586 0 01.74-2.124l.146-.147c.296-.297.612-.579.941-.838l.39-.307a.119.119 0 01.138-.007.119.119 0 01.054.127l-.154.687a4.168 4.168 0 00.105 2.205l.08.248c.094.287.204.572.325.848l1.75 4.125.188.56c.057.173.097.352.117.532l.032.285a2.586 2.586 0 01-.74 2.124zM9 16.148l-.114.114c-.234.236-.486.46-.747.666l-.299.235a.11.11 0 01-.175-.11l.12-.53a3.3 3.3 0 00-.084-1.746l-.064-.195a7.181 7.181 0 00-.257-.671l-1.387-3.27-.15-.445a2.076 2.076 0 01-.093-.425l-.025-.223a2.065 2.065 0 01.591-1.696l.114-.114a8.34 8.34 0 01.748-.666l.298-.235a.109.109 0 01.127-.007c.04.025.059.071.049.117l-.12.53a3.3 3.3 0 00.084 1.746l.064.195c.074.227.16.453.257.671l1.387 3.27.149.445c.046.138.077.28.093.425l.025.223a2.065 2.065 0 01-.59 1.696zM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0" }) + ] + } + ); +}); + +export { SiSteem as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.cjs new file mode 100644 index 000000000..5975e532f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#06D6A9"; +const SiSteemit = React__namespace.forwardRef(function SiSteemit2({ title = "Steemit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.982 7.246c-1-1-2.163-1.73-3.4-2.202.721-2.12 3.277-2.892 3.277-2.892S14.895-.944 8.31.29C6.114.64 4.008 1.988 2.468 3.768a9.152 9.152 0 0 0 .991 12.984c.598.512 1.934 1.308 1.958 1.349-.876 2.226-3.678 2.835-3.678 2.835s3.703 2.316 8.676 2.917c1.319.163 2.72.204 4.17.05 2.302-.188 4.596-1.406 6.34-3.12a9.525 9.525 0 0 0 .058-13.538zm-1.704 12.058c-1.41 1.382-3.515 2.26-5.137 2.381-1.147.114-2.376.13-3.555-.016-1.737-.212-2.99-.69-4.22-1.154.623-.601 1.246-1.43 1.5-2.145a1.652 1.652 0 0 0-.05-1.308 6.995 6.995 0 0 1 1.426-8.077 7.196 7.196 0 0 1 5.931-1.99 7.142 7.142 0 0 1 4.228 2.047c2.785 2.795 2.687 7.524-.123 10.262z" }) + ] + } + ); +}); + +exports.default = SiSteemit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.d.ts new file mode 100644 index 000000000..e83d521d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#06D6A9"; +declare const SiSteemit: IconType; +export { SiSteemit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.mjs new file mode 100644 index 000000000..9049e5395 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteemit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#06D6A9"; +const SiSteemit = React.forwardRef(function SiSteemit2({ title = "Steemit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.982 7.246c-1-1-2.163-1.73-3.4-2.202.721-2.12 3.277-2.892 3.277-2.892S14.895-.944 8.31.29C6.114.64 4.008 1.988 2.468 3.768a9.152 9.152 0 0 0 .991 12.984c.598.512 1.934 1.308 1.958 1.349-.876 2.226-3.678 2.835-3.678 2.835s3.703 2.316 8.676 2.917c1.319.163 2.72.204 4.17.05 2.302-.188 4.596-1.406 6.34-3.12a9.525 9.525 0 0 0 .058-13.538zm-1.704 12.058c-1.41 1.382-3.515 2.26-5.137 2.381-1.147.114-2.376.13-3.555-.016-1.737-.212-2.99-.69-4.22-1.154.623-.601 1.246-1.43 1.5-2.145a1.652 1.652 0 0 0-.05-1.308 6.995 6.995 0 0 1 1.426-8.077 7.196 7.196 0 0 1 5.931-1.99 7.142 7.142 0 0 1 4.228 2.047c2.785 2.795 2.687 7.524-.123 10.262z" }) + ] + } + ); +}); + +export { SiSteemit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.cjs new file mode 100644 index 000000000..5cdf973fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C90827"; +const SiSteinberg = React__namespace.forwardRef(function SiSteinberg2({ title = "Steinberg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.4807 12.6291c.6422-.371.6422-1.0092 0-1.3792L14.711 8.4954c-.6422-.371-1.1952-.052-1.1952.6901v5.508c0 .741.553 1.0601 1.1952.69zm-7.4812-9.9036c5.1219 0 9.2745 4.1526 9.2745 9.2745s-4.1526 9.2745-9.2745 9.2745S2.726 17.122 2.726 12s4.1516-9.2745 9.2735-9.2745m0-2.7255C5.3834 0 .0005 5.3829.0005 12s5.3829 12 12 12 11.999-5.3829 11.999-12-5.3829-12-12-12z" }) + ] + } + ); +}); + +exports.default = SiSteinberg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.d.ts new file mode 100644 index 000000000..662dda2b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C90827"; +declare const SiSteinberg: IconType; +export { SiSteinberg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.mjs new file mode 100644 index 000000000..cc641b58e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSteinberg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C90827"; +const SiSteinberg = React.forwardRef(function SiSteinberg2({ title = "Steinberg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.4807 12.6291c.6422-.371.6422-1.0092 0-1.3792L14.711 8.4954c-.6422-.371-1.1952-.052-1.1952.6901v5.508c0 .741.553 1.0601 1.1952.69zm-7.4812-9.9036c5.1219 0 9.2745 4.1526 9.2745 9.2745s-4.1526 9.2745-9.2745 9.2745S2.726 17.122 2.726 12s4.1516-9.2745 9.2735-9.2745m0-2.7255C5.3834 0 .0005 5.3829.0005 12s5.3829 12 12 12 11.999-5.3829 11.999-12-5.3829-12-12-12z" }) + ] + } + ); +}); + +export { SiSteinberg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.cjs new file mode 100644 index 000000000..f3a041f58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDDA24"; +const SiStellar = React__namespace.forwardRef(function SiStellar2({ title = "Stellar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.003 1.716c-1.37 0-2.7.27-3.948.78A10.18 10.18 0 0 0 2.66 7.901a10.136 10.136 0 0 0-.797 3.954c0 .258.01.516.027.775a1.942 1.942 0 0 1-1.055 1.88L0 14.934v1.902l2.463-1.26.072-.032v.005l.77-.39.758-.385.066-.039 14.807-7.56 1.666-.847 3.392-1.732V2.694L17.792 5.86 3.744 13.025l-.104.055-.017-.115a8.286 8.286 0 0 1-.071-1.105c0-2.255.88-4.377 2.474-5.977a8.462 8.462 0 0 1 2.71-1.82 8.513 8.513 0 0 1 3.2-.654h.067a8.41 8.41 0 0 1 4.09 1.055l1.628-.83.126-.066a10.11 10.11 0 0 0-5.845-1.853zM24 7.143 5.047 16.808l-1.666.847L0 19.382v1.902l3.282-1.671 2.91-1.485 14.058-7.153.105-.055.016.115c.05.369.072.743.072 1.11 0 2.255-.88 4.383-2.475 5.978a8.461 8.461 0 0 1-2.71 1.82 8.305 8.305 0 0 1-3.2.654h-.06c-1.441 0-2.86-.369-4.102-1.061l-.066.033-1.683.857c.594.418 1.232.776 1.903 1.062a10.11 10.11 0 0 0 3.947.797 10.09 10.09 0 0 0 7.17-2.975 10.136 10.136 0 0 0 2.969-7.18c0-.259-.005-.523-.027-.781a1.942 1.942 0 0 1 1.055-1.88L24 9.044z" }) + ] + } + ); +}); + +exports.default = SiStellar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.d.ts new file mode 100644 index 000000000..a5d3f285f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDDA24"; +declare const SiStellar: IconType; +export { SiStellar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.mjs new file mode 100644 index 000000000..9f1694547 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStellar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDDA24"; +const SiStellar = React.forwardRef(function SiStellar2({ title = "Stellar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.003 1.716c-1.37 0-2.7.27-3.948.78A10.18 10.18 0 0 0 2.66 7.901a10.136 10.136 0 0 0-.797 3.954c0 .258.01.516.027.775a1.942 1.942 0 0 1-1.055 1.88L0 14.934v1.902l2.463-1.26.072-.032v.005l.77-.39.758-.385.066-.039 14.807-7.56 1.666-.847 3.392-1.732V2.694L17.792 5.86 3.744 13.025l-.104.055-.017-.115a8.286 8.286 0 0 1-.071-1.105c0-2.255.88-4.377 2.474-5.977a8.462 8.462 0 0 1 2.71-1.82 8.513 8.513 0 0 1 3.2-.654h.067a8.41 8.41 0 0 1 4.09 1.055l1.628-.83.126-.066a10.11 10.11 0 0 0-5.845-1.853zM24 7.143 5.047 16.808l-1.666.847L0 19.382v1.902l3.282-1.671 2.91-1.485 14.058-7.153.105-.055.016.115c.05.369.072.743.072 1.11 0 2.255-.88 4.383-2.475 5.978a8.461 8.461 0 0 1-2.71 1.82 8.305 8.305 0 0 1-3.2.654h-.06c-1.441 0-2.86-.369-4.102-1.061l-.066.033-1.683.857c.594.418 1.232.776 1.903 1.062a10.11 10.11 0 0 0 3.947.797 10.09 10.09 0 0 0 7.17-2.975 10.136 10.136 0 0 0 2.969-7.18c0-.259-.005-.523-.027-.781a1.942 1.942 0 0 1 1.055-1.88L24 9.044z" }) + ] + } + ); +}); + +export { SiStellar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.cjs new file mode 100644 index 000000000..96aa6c446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5530FF"; +const SiStencil = React__namespace.forwardRef(function SiStencil2({ title = "Stencil", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.85 15.66h9.25l-5 5.34H3.9ZM24 9.328H4.997L0 14.672h19.003ZM10.884 3H20.1l-4.977 5.34H5.9Z" }) + ] + } + ); +}); + +exports.default = SiStencil; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.d.ts new file mode 100644 index 000000000..039443ac5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5530FF"; +declare const SiStencil: IconType; +export { SiStencil as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.mjs new file mode 100644 index 000000000..385b1d4ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStencil.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5530FF"; +const SiStencil = React.forwardRef(function SiStencil2({ title = "Stencil", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.85 15.66h9.25l-5 5.34H3.9ZM24 9.328H4.997L0 14.672h19.003ZM10.884 3H20.1l-4.977 5.34H5.9Z" }) + ] + } + ); +}); + +export { SiStencil as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.cjs new file mode 100644 index 000000000..6171fa64e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8E1C04"; +const SiStencyl = React__namespace.forwardRef(function SiStencyl2({ title = "Stencyl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.36,2.675c-0.959,0.12-1.901,0.366-2.783,0.759L9.389,1.622l0.433,2.835 c-0.758,0.567-1.41,1.25-1.935,2.038L4.982,6l1.951,2.352c-0.31,0.817-0.502,1.677-0.589,2.548L3.374,12l2.952,1.099 c0.083,0.883,0.258,1.763,0.565,2.597l-1.894,2.283l2.819-0.426c0.541,0.811,1.229,1.518,2.025,2.08l-0.47,2.751l2.247-1.806 c0.864,0.333,1.78,0.523,2.705,0.597L15.372,24l1.059-2.846c1.418-0.144,2.841-0.46,4.103-1.144 c-0.229-1.019-0.468-2.035-0.692-3.055c-2.042,1.044-4.605,1.442-6.736,0.403c-1.763-0.896-2.773-2.842-2.911-4.785 c-0.152-2.15,0.502-4.51,2.314-5.801c1.724-1.192,4.024-1.208,5.964-0.586c0.428,0.149,0.836,0.353,1.224,0.603 c0.306-1.052,0.616-2.104,0.93-3.154c-1.32-0.674-2.811-0.98-4.291-1.044L15.372,0L14.36,2.675z" }) + ] + } + ); +}); + +exports.default = SiStencyl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.d.ts new file mode 100644 index 000000000..2a2e8f041 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8E1C04"; +declare const SiStencyl: IconType; +export { SiStencyl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.mjs new file mode 100644 index 000000000..00bc47016 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStencyl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8E1C04"; +const SiStencyl = React.forwardRef(function SiStencyl2({ title = "Stencyl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.36,2.675c-0.959,0.12-1.901,0.366-2.783,0.759L9.389,1.622l0.433,2.835 c-0.758,0.567-1.41,1.25-1.935,2.038L4.982,6l1.951,2.352c-0.31,0.817-0.502,1.677-0.589,2.548L3.374,12l2.952,1.099 c0.083,0.883,0.258,1.763,0.565,2.597l-1.894,2.283l2.819-0.426c0.541,0.811,1.229,1.518,2.025,2.08l-0.47,2.751l2.247-1.806 c0.864,0.333,1.78,0.523,2.705,0.597L15.372,24l1.059-2.846c1.418-0.144,2.841-0.46,4.103-1.144 c-0.229-1.019-0.468-2.035-0.692-3.055c-2.042,1.044-4.605,1.442-6.736,0.403c-1.763-0.896-2.773-2.842-2.911-4.785 c-0.152-2.15,0.502-4.51,2.314-5.801c1.724-1.192,4.024-1.208,5.964-0.586c0.428,0.149,0.836,0.353,1.224,0.603 c0.306-1.052,0.616-2.104,0.93-3.154c-1.32-0.674-2.811-0.98-4.291-1.044L15.372,0L14.36,2.675z" }) + ] + } + ); +}); + +export { SiStencyl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.cjs new file mode 100644 index 000000000..f9f5796ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#77E8B9"; +const SiStimulus = React__namespace.forwardRef(function SiStimulus2({ title = "Stimulus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.704 0A.704.704 0 000 .704v2.824h5.648a3.064 3.064 0 011.312.36l3.232 1.9a.4.4 0 010 .712l-1.536.904a1.308 1.308 0 01-1.2 0l-1.2-.7a3.084 3.084 0 00-1.316-.36H0v4.236h4.94a3.028 3.028 0 001.316-.36l10.8-6.344a3.008 3.008 0 011.312-.36H24V.692A.704.704 0 0023.296 0zM19.06 6.352a3.084 3.084 0 00-1.316.36l-10.8 6.348a3.064 3.064 0 01-1.312.36H0v4.236h4.94a3.084 3.084 0 001.316-.36l10.8-6.348a3.064 3.064 0 011.312-.36H24V6.352h-3.376zm0 7.072a3.084 3.084 0 00-1.316.36l-10.8 6.344a3.008 3.008 0 01-1.312.36H0v2.824A.708.708 0 00.704 24h22.592a.708.708 0 00.704-.7v-2.824h-5.648a3.008 3.008 0 01-1.312-.36l-3.232-1.896a.4.4 0 010-.716l1.536-.9a1.308 1.308 0 011.2 0l1.2.696a3.028 3.028 0 001.316.36H24v-4.236h-3.376z" }) + ] + } + ); +}); + +exports.default = SiStimulus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.d.ts new file mode 100644 index 000000000..c6fd5703e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#77E8B9"; +declare const SiStimulus: IconType; +export { SiStimulus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.mjs new file mode 100644 index 000000000..749d20e4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStimulus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#77E8B9"; +const SiStimulus = React.forwardRef(function SiStimulus2({ title = "Stimulus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.704 0A.704.704 0 000 .704v2.824h5.648a3.064 3.064 0 011.312.36l3.232 1.9a.4.4 0 010 .712l-1.536.904a1.308 1.308 0 01-1.2 0l-1.2-.7a3.084 3.084 0 00-1.316-.36H0v4.236h4.94a3.028 3.028 0 001.316-.36l10.8-6.344a3.008 3.008 0 011.312-.36H24V.692A.704.704 0 0023.296 0zM19.06 6.352a3.084 3.084 0 00-1.316.36l-10.8 6.348a3.064 3.064 0 01-1.312.36H0v4.236h4.94a3.084 3.084 0 001.316-.36l10.8-6.348a3.064 3.064 0 011.312-.36H24V6.352h-3.376zm0 7.072a3.084 3.084 0 00-1.316.36l-10.8 6.344a3.008 3.008 0 01-1.312.36H0v2.824A.708.708 0 00.704 24h22.592a.708.708 0 00.704-.7v-2.824h-5.648a3.008 3.008 0 01-1.312-.36l-3.232-1.896a.4.4 0 010-.716l1.536-.9a1.308 1.308 0 011.2 0l1.2.696a3.028 3.028 0 001.316.36H24v-4.236h-3.376z" }) + ] + } + ); +}); + +export { SiStimulus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.cjs new file mode 100644 index 000000000..deb0faa55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03234B"; +const SiStmicroelectronics = React__namespace.forwardRef(function SiStmicroelectronics2({ title = "STMicroelectronics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 23.818 5.61 L 6.402 5.61 C 5.125 5.609 3.968 6.362 3.452 7.529 L 0.014 15.811 C -0.036 15.931 0.052 16.063 0.182 16.061 L 8.046 16.061 C 8.601 16.061 8.848 15.523 8.412 15.093 L 5.524 12.388 C 4.008 10.9 4.658 7.45 7.81 7.45 L 23.206 7.45 C 23.283 7.451 23.352 7.402 23.378 7.329 L 23.987 5.857 C 23.996 5.835 24.001 5.811 24 5.787 C 23.997 5.689 23.917 5.61 23.818 5.61 M 22.082 9.826 L 19.126 9.826 C 18.932 9.825 18.756 9.94 18.681 10.118 L 15.369 18.118 C 15.355 18.144 15.347 18.173 15.347 18.202 C 15.348 18.302 15.429 18.383 15.529 18.381 L 16.632 18.381 C 17.93 18.387 19.105 17.613 19.612 16.418 L 22.244 10.063 C 22.252 10.042 22.257 10.019 22.257 9.996 C 22.253 9.902 22.176 9.828 22.082 9.826 M 16.271 10.005 C 16.271 9.905 16.189 9.825 16.089 9.825 L 7.706 9.825 C 7.251 9.825 6.853 10.38 7.335 10.825 L 10.104 13.404 C 10.104 13.404 11.224 14.437 10.984 15.916 C 10.778 17.219 9.889 18.016 9.241 18.302 C 9.208 18.31 9.196 18.351 9.219 18.376 C 9.23 18.387 9.246 18.392 9.261 18.388 L 12.489 18.388 C 12.683 18.39 12.859 18.275 12.934 18.095 L 16.256 10.068 C 16.266 10.049 16.271 10.027 16.271 10.005" }) + ] + } + ); +}); + +exports.default = SiStmicroelectronics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.d.ts new file mode 100644 index 000000000..8e8d55215 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03234B"; +declare const SiStmicroelectronics: IconType; +export { SiStmicroelectronics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.mjs new file mode 100644 index 000000000..90ce2e528 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStmicroelectronics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03234B"; +const SiStmicroelectronics = React.forwardRef(function SiStmicroelectronics2({ title = "STMicroelectronics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 23.818 5.61 L 6.402 5.61 C 5.125 5.609 3.968 6.362 3.452 7.529 L 0.014 15.811 C -0.036 15.931 0.052 16.063 0.182 16.061 L 8.046 16.061 C 8.601 16.061 8.848 15.523 8.412 15.093 L 5.524 12.388 C 4.008 10.9 4.658 7.45 7.81 7.45 L 23.206 7.45 C 23.283 7.451 23.352 7.402 23.378 7.329 L 23.987 5.857 C 23.996 5.835 24.001 5.811 24 5.787 C 23.997 5.689 23.917 5.61 23.818 5.61 M 22.082 9.826 L 19.126 9.826 C 18.932 9.825 18.756 9.94 18.681 10.118 L 15.369 18.118 C 15.355 18.144 15.347 18.173 15.347 18.202 C 15.348 18.302 15.429 18.383 15.529 18.381 L 16.632 18.381 C 17.93 18.387 19.105 17.613 19.612 16.418 L 22.244 10.063 C 22.252 10.042 22.257 10.019 22.257 9.996 C 22.253 9.902 22.176 9.828 22.082 9.826 M 16.271 10.005 C 16.271 9.905 16.189 9.825 16.089 9.825 L 7.706 9.825 C 7.251 9.825 6.853 10.38 7.335 10.825 L 10.104 13.404 C 10.104 13.404 11.224 14.437 10.984 15.916 C 10.778 17.219 9.889 18.016 9.241 18.302 C 9.208 18.31 9.196 18.351 9.219 18.376 C 9.23 18.387 9.246 18.392 9.261 18.388 L 12.489 18.388 C 12.683 18.39 12.859 18.275 12.934 18.095 L 16.256 10.068 C 16.266 10.049 16.271 10.027 16.271 10.005" }) + ] + } + ); +}); + +export { SiStmicroelectronics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.cjs new file mode 100644 index 000000000..405bf2120 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006340"; +const SiStockx = React__namespace.forwardRef(function SiStockx2({ title = "StockX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.74 16.5 22.5 24v-6l-7-6 7-6V0L10.26 10.5v-3L1.5 0v6l7 6-7 6v6l12.24-10.5Z" }) + ] + } + ); +}); + +exports.default = SiStockx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.d.ts new file mode 100644 index 000000000..856b5e782 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006340"; +declare const SiStockx: IconType; +export { SiStockx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.mjs new file mode 100644 index 000000000..819ac0a17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStockx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006340"; +const SiStockx = React.forwardRef(function SiStockx2({ title = "StockX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.74 16.5 22.5 24v-6l-7-6 7-6V0L10.26 10.5v-3L1.5 0v6l7 6-7 6v6l12.24-10.5Z" }) + ] + } + ); +}); + +export { SiStockx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.cjs new file mode 100644 index 000000000..3ee9a4998 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#536DFE"; +const SiStopstalk = React__namespace.forwardRef(function SiStopstalk2({ title = "StopStalk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zm-.049 2.953a9.046 9.046 0 01.049 0 9.046 9.046 0 013.46.688L13.57 6.42l2.72.047 1.14-1.703A9.046 9.046 0 0121.047 12 9.046 9.046 0 0112 21.047a9.046 9.046 0 01-2.916-.483l1.937-2.828-2.72-.047-1.258 1.88A9.046 9.046 0 012.953 12a9.046 9.046 0 018.998-9.047zm1.713 4.072a.55.55 0 00-.42.172c-.17.156-.266.248-.297.264-.653-.28-1.196-.42-1.662-.42-.653 0-1.213.219-1.664.639-.45.435-.684.994-.684 1.724 0 .638.204 1.26.577 1.866.388.606 1.024 1.429 1.957 2.455.373.42.7.808.965 1.166.264.342.404.638.404.902 0 .14-.063.264-.188.357a.756.756 0 01-.466.14c-.513 0-1.025-.483-1.538-1.462-.14-.28-.248-.45-.326-.527-.077-.078-.328-.11-.732-.11-.311 0-.465.063-.465.172 0 .016.03.156.092.42l.435 2.004c.016.14.048.217.11.248.046.031.14.047.279.047.358 0 .59-.077.684-.232.046-.078.11-.125.187-.125a.88.88 0 01.358.109 3.19 3.19 0 001.212.248c.653 0 1.243-.217 1.772-.621.528-.42.809-1.01.809-1.787 0-.669-.156-1.259-.467-1.787-.311-.529-.965-1.384-1.975-2.58-.87-1.026-1.305-1.711-1.305-2.069 0-.28.14-.42.436-.42.404 0 .87.405 1.383 1.213.248.389.42.606.498.653.093.062.279.078.574.078.264 0 .42 0 .482-.032.063-.03.094-.076.094-.154 0-.015-.016-.079-.031-.187l-.467-2.051c-.03-.14-.078-.22-.14-.266a9.706 9.706 0 00-.48-.047Z" }) + ] + } + ); +}); + +exports.default = SiStopstalk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.d.ts new file mode 100644 index 000000000..1d4fca1c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#536DFE"; +declare const SiStopstalk: IconType; +export { SiStopstalk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.mjs new file mode 100644 index 000000000..8163fec28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStopstalk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#536DFE"; +const SiStopstalk = React.forwardRef(function SiStopstalk2({ title = "StopStalk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zm-.049 2.953a9.046 9.046 0 01.049 0 9.046 9.046 0 013.46.688L13.57 6.42l2.72.047 1.14-1.703A9.046 9.046 0 0121.047 12 9.046 9.046 0 0112 21.047a9.046 9.046 0 01-2.916-.483l1.937-2.828-2.72-.047-1.258 1.88A9.046 9.046 0 012.953 12a9.046 9.046 0 018.998-9.047zm1.713 4.072a.55.55 0 00-.42.172c-.17.156-.266.248-.297.264-.653-.28-1.196-.42-1.662-.42-.653 0-1.213.219-1.664.639-.45.435-.684.994-.684 1.724 0 .638.204 1.26.577 1.866.388.606 1.024 1.429 1.957 2.455.373.42.7.808.965 1.166.264.342.404.638.404.902 0 .14-.063.264-.188.357a.756.756 0 01-.466.14c-.513 0-1.025-.483-1.538-1.462-.14-.28-.248-.45-.326-.527-.077-.078-.328-.11-.732-.11-.311 0-.465.063-.465.172 0 .016.03.156.092.42l.435 2.004c.016.14.048.217.11.248.046.031.14.047.279.047.358 0 .59-.077.684-.232.046-.078.11-.125.187-.125a.88.88 0 01.358.109 3.19 3.19 0 001.212.248c.653 0 1.243-.217 1.772-.621.528-.42.809-1.01.809-1.787 0-.669-.156-1.259-.467-1.787-.311-.529-.965-1.384-1.975-2.58-.87-1.026-1.305-1.711-1.305-2.069 0-.28.14-.42.436-.42.404 0 .87.405 1.383 1.213.248.389.42.606.498.653.093.062.279.078.574.078.264 0 .42 0 .482-.032.063-.03.094-.076.094-.154 0-.015-.016-.079-.031-.187l-.467-2.051c-.03-.14-.078-.22-.14-.266a9.706 9.706 0 00-.48-.047Z" }) + ] + } + ); +}); + +export { SiStopstalk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.cjs new file mode 100644 index 000000000..48027450c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#09B3AF"; +const SiStoryblok = React__namespace.forwardRef(function SiStoryblok2({ title = "Storyblok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.953 11.462H9.088v2.34h4.748c.281 0 .538-.118.749-.305.187-.187.304-.468.304-.819a1.404 1.404 0 0 0-.257-.842c-.188-.234-.398-.374-.679-.374zm.164-2.83c.21-.14.304-.445.304-.843 0-.35-.094-.608-.257-.771a.935.935 0 0 0-.608-.234H9.088v2.105h4.374c.234 0 .468-.117.655-.257zM21.251 0H2.89c-.585 0-1.053.468-1.053 1.03v18.385c0 .562.468.912 1.03.912H5.58V24l3.368-3.65h12.304c.562 0 .913-.35.913-.935V1.053c0-.562-.351-1.03-.936-1.03zm-3.087 14.9a2.827 2.827 0 0 1-1.006 1.03c-.445.28-.936.538-1.497.655-.562.14-1.17.257-1.801.257H5.579v-13.1h9.403c.468 0 .866.094 1.24.305.351.187.679.444.936.748.524.64.806 1.443.795 2.27 0 .608-.164 1.192-.468 1.754a2.924 2.924 0 0 1-1.403 1.263c.748.21 1.333.585 1.778 1.123.42.561.631 1.286.631 2.199 0 .584-.117 1.076-.35 1.497z" }) + ] + } + ); +}); + +exports.default = SiStoryblok; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.d.ts new file mode 100644 index 000000000..474b0dfee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#09B3AF"; +declare const SiStoryblok: IconType; +export { SiStoryblok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.mjs new file mode 100644 index 000000000..971585746 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStoryblok.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#09B3AF"; +const SiStoryblok = React.forwardRef(function SiStoryblok2({ title = "Storyblok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.953 11.462H9.088v2.34h4.748c.281 0 .538-.118.749-.305.187-.187.304-.468.304-.819a1.404 1.404 0 0 0-.257-.842c-.188-.234-.398-.374-.679-.374zm.164-2.83c.21-.14.304-.445.304-.843 0-.35-.094-.608-.257-.771a.935.935 0 0 0-.608-.234H9.088v2.105h4.374c.234 0 .468-.117.655-.257zM21.251 0H2.89c-.585 0-1.053.468-1.053 1.03v18.385c0 .562.468.912 1.03.912H5.58V24l3.368-3.65h12.304c.562 0 .913-.35.913-.935V1.053c0-.562-.351-1.03-.936-1.03zm-3.087 14.9a2.827 2.827 0 0 1-1.006 1.03c-.445.28-.936.538-1.497.655-.562.14-1.17.257-1.801.257H5.579v-13.1h9.403c.468 0 .866.094 1.24.305.351.187.679.444.936.748.524.64.806 1.443.795 2.27 0 .608-.164 1.192-.468 1.754a2.924 2.924 0 0 1-1.403 1.263c.748.21 1.333.585 1.778 1.123.42.561.631 1.286.631 2.199 0 .584-.117 1.076-.35 1.497z" }) + ] + } + ); +}); + +export { SiStoryblok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.cjs new file mode 100644 index 000000000..aac9a57c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4785"; +const SiStorybook = React__namespace.forwardRef(function SiStorybook2({ title = "Storybook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.71.243l-.12 2.71a.18.18 0 00.29.15l1.06-.8.9.7a.18.18 0 00.28-.14l-.1-2.76 1.33-.1a1.2 1.2 0 011.279 1.2v21.596a1.2 1.2 0 01-1.26 1.2l-16.096-.72a1.2 1.2 0 01-1.15-1.16l-.75-19.797a1.2 1.2 0 011.13-1.27L16.7.222zM13.64 9.3c0 .47 3.16.24 3.59-.08 0-3.2-1.72-4.89-4.859-4.89-3.15 0-4.899 1.72-4.899 4.29 0 4.45 5.999 4.53 5.999 6.959 0 .7-.32 1.1-1.05 1.1-.96 0-1.35-.49-1.3-2.16 0-.36-3.649-.48-3.769 0-.27 4.03 2.23 5.2 5.099 5.2 2.79 0 4.969-1.49 4.969-4.18 0-4.77-6.099-4.64-6.099-6.999 0-.97.72-1.1 1.13-1.1.45 0 1.25.07 1.19 1.87z" }) + ] + } + ); +}); + +exports.default = SiStorybook; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.d.ts new file mode 100644 index 000000000..a9d6b482d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4785"; +declare const SiStorybook: IconType; +export { SiStorybook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.mjs new file mode 100644 index 000000000..e0d00b004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStorybook.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4785"; +const SiStorybook = React.forwardRef(function SiStorybook2({ title = "Storybook", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.71.243l-.12 2.71a.18.18 0 00.29.15l1.06-.8.9.7a.18.18 0 00.28-.14l-.1-2.76 1.33-.1a1.2 1.2 0 011.279 1.2v21.596a1.2 1.2 0 01-1.26 1.2l-16.096-.72a1.2 1.2 0 01-1.15-1.16l-.75-19.797a1.2 1.2 0 011.13-1.27L16.7.222zM13.64 9.3c0 .47 3.16.24 3.59-.08 0-3.2-1.72-4.89-4.859-4.89-3.15 0-4.899 1.72-4.899 4.29 0 4.45 5.999 4.53 5.999 6.959 0 .7-.32 1.1-1.05 1.1-.96 0-1.35-.49-1.3-2.16 0-.36-3.649-.48-3.769 0-.27 4.03 2.23 5.2 5.099 5.2 2.79 0 4.969-1.49 4.969-4.18 0-4.77-6.099-4.64-6.099-6.999 0-.97.72-1.1 1.13-1.1.45 0 1.25.07 1.19 1.87z" }) + ] + } + ); +}); + +export { SiStorybook as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.cjs new file mode 100644 index 000000000..28aa0a3ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4945FF"; +const SiStrapi = React__namespace.forwardRef(function SiStrapi2({ title = "Strapi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.32 0c-3.922 0-5.882 0-7.1 1.219C0 2.438 0 4.399 0 8.32v7.36c0 3.922 0 5.882 1.219 7.101C2.438 24 4.399 24 8.32 24h7.36c3.922 0 5.882 0 7.101-1.219C24 21.562 24 19.601 24 15.68V8.32c0-3.922 0-5.882-1.219-7.101C21.562 0 19.601 0 15.68 0H8.32zm.41 7.28h7.83a.16.16 0 0 1 .16.16v7.83h-3.87v-3.71a.41.41 0 0 0-.313-.398l-.086-.012h-3.72V7.28zm-.5.25v3.87H4.553a.08.08 0 0 1-.057-.136L8.23 7.529zm.25 4.12h3.87v3.87H8.64a.16.16 0 0 1-.16-.16v-3.71zm4.12 4.12h3.87l-3.734 3.734a.08.08 0 0 1-.136-.057V15.77z" }) + ] + } + ); +}); + +exports.default = SiStrapi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.d.ts new file mode 100644 index 000000000..9a41a1046 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4945FF"; +declare const SiStrapi: IconType; +export { SiStrapi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.mjs new file mode 100644 index 000000000..a712ec93e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrapi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4945FF"; +const SiStrapi = React.forwardRef(function SiStrapi2({ title = "Strapi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.32 0c-3.922 0-5.882 0-7.1 1.219C0 2.438 0 4.399 0 8.32v7.36c0 3.922 0 5.882 1.219 7.101C2.438 24 4.399 24 8.32 24h7.36c3.922 0 5.882 0 7.101-1.219C24 21.562 24 19.601 24 15.68V8.32c0-3.922 0-5.882-1.219-7.101C21.562 0 19.601 0 15.68 0H8.32zm.41 7.28h7.83a.16.16 0 0 1 .16.16v7.83h-3.87v-3.71a.41.41 0 0 0-.313-.398l-.086-.012h-3.72V7.28zm-.5.25v3.87H4.553a.08.08 0 0 1-.057-.136L8.23 7.529zm.25 4.12h3.87v3.87H8.64a.16.16 0 0 1-.16-.16v-3.71zm4.12 4.12h3.87l-3.734 3.734a.08.08 0 0 1-.136-.057V15.77z" }) + ] + } + ); +}); + +export { SiStrapi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.cjs new file mode 100644 index 000000000..ccc1235b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC4C02"; +const SiStrava = React__namespace.forwardRef(function SiStrava2({ title = "Strava", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.387 17.944l-2.089-4.116h-3.065L15.387 24l5.15-10.172h-3.066m-7.008-5.599l2.836 5.598h4.172L10.463 0l-7 13.828h4.169" }) + ] + } + ); +}); + +exports.default = SiStrava; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.d.ts new file mode 100644 index 000000000..b798f0b38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC4C02"; +declare const SiStrava: IconType; +export { SiStrava as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.mjs new file mode 100644 index 000000000..ff4ae6f76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrava.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC4C02"; +const SiStrava = React.forwardRef(function SiStrava2({ title = "Strava", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.387 17.944l-2.089-4.116h-3.065L15.387 24l5.15-10.172h-3.066m-7.008-5.599l2.836 5.598h4.172L10.463 0l-7 13.828h4.169" }) + ] + } + ); +}); + +export { SiStrava as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.cjs new file mode 100644 index 000000000..a0b41dc15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#80F5D2"; +const SiStreamlabs = React__namespace.forwardRef(function SiStreamlabs2({ title = "Streamlabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.6878 1.3459a1.365 1.365 0 0 0-.2734.0058c-.528.066-1.0133.1616-1.4843.3086A10.0568 10.0568 0 0 0 .3208 8.2697c-.147.471-.2445.9583-.3105 1.4863-.091.734.431 1.4041 1.166 1.4961.734.091 1.404-.43 1.496-1.164.05-.406.119-.7316.209-1.0196A7.3736 7.3736 0 0 1 7.727 4.221c.288-.09.6145-.157 1.0195-.207.735-.092 1.255-.7631 1.164-1.4981a1.3394 1.3394 0 0 0-1.2226-1.17Zm4.0488 5.2226c-2.629 0-3.9432.0007-4.9472.5117A4.684 4.684 0 0 0 5.7406 9.131c-.512 1.004-.5117 2.3183-.5117 4.9473v4.289c0 1.502-.001 2.2542.291 2.8282.257.505.6679.9149 1.1719 1.1719.574.292 1.326.291 2.828.291h6.9706c2.628 0 3.9442.0012 4.9472-.5098a4.6883 4.6883 0 0 0 2.0507-2.0508c.512-1.004.5117-2.3182.5117-4.9472v-1.0723c0-2.629.0003-3.9433-.5117-4.9473a4.6883 4.6883 0 0 0-2.0507-2.0508c-1.003-.511-2.3193-.5117-4.9472-.5117zm.537 6.7051c.741 0 1.3399.5998 1.3399 1.3398v2.6836c0 .74-.5988 1.3399-1.3398 1.3399-.74 0-1.3418-.5999-1.3418-1.3399v-2.6836c0-.74.6018-1.3398 1.3418-1.3398zm5.3632 0c.74 0 1.3399.5998 1.3399 1.3398v2.6836c0 .74-.5999 1.3399-1.3399 1.3399-.741 0-1.3398-.5999-1.3398-1.3399v-2.6836c0-.74.5989-1.3398 1.3398-1.3398z" }) + ] + } + ); +}); + +exports.default = SiStreamlabs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.d.ts new file mode 100644 index 000000000..c6240bc96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#80F5D2"; +declare const SiStreamlabs: IconType; +export { SiStreamlabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.mjs new file mode 100644 index 000000000..33e5aedc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlabs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#80F5D2"; +const SiStreamlabs = React.forwardRef(function SiStreamlabs2({ title = "Streamlabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.6878 1.3459a1.365 1.365 0 0 0-.2734.0058c-.528.066-1.0133.1616-1.4843.3086A10.0568 10.0568 0 0 0 .3208 8.2697c-.147.471-.2445.9583-.3105 1.4863-.091.734.431 1.4041 1.166 1.4961.734.091 1.404-.43 1.496-1.164.05-.406.119-.7316.209-1.0196A7.3736 7.3736 0 0 1 7.727 4.221c.288-.09.6145-.157 1.0195-.207.735-.092 1.255-.7631 1.164-1.4981a1.3394 1.3394 0 0 0-1.2226-1.17Zm4.0488 5.2226c-2.629 0-3.9432.0007-4.9472.5117A4.684 4.684 0 0 0 5.7406 9.131c-.512 1.004-.5117 2.3183-.5117 4.9473v4.289c0 1.502-.001 2.2542.291 2.8282.257.505.6679.9149 1.1719 1.1719.574.292 1.326.291 2.828.291h6.9706c2.628 0 3.9442.0012 4.9472-.5098a4.6883 4.6883 0 0 0 2.0507-2.0508c.512-1.004.5117-2.3182.5117-4.9472v-1.0723c0-2.629.0003-3.9433-.5117-4.9473a4.6883 4.6883 0 0 0-2.0507-2.0508c-1.003-.511-2.3193-.5117-4.9472-.5117zm.537 6.7051c.741 0 1.3399.5998 1.3399 1.3398v2.6836c0 .74-.5988 1.3399-1.3398 1.3399-.74 0-1.3418-.5999-1.3418-1.3399v-2.6836c0-.74.6018-1.3398 1.3418-1.3398zm5.3632 0c.74 0 1.3399.5998 1.3399 1.3398v2.6836c0 .74-.5999 1.3399-1.3399 1.3399-.741 0-1.3398-.5999-1.3398-1.3399v-2.6836c0-.74.5989-1.3398 1.3398-1.3398z" }) + ] + } + ); +}); + +export { SiStreamlabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.cjs new file mode 100644 index 000000000..b2307c61d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4B4B"; +const SiStreamlit = React__namespace.forwardRef(function SiStreamlit2({ title = "Streamlit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.673 11.32l6.862-3.618c.233-.136.554.12.442.387L20.463 17.1zm-8.556-.229l3.473-5.187c.203-.328.578-.316.793-.028l7.886 11.75zm-3.375 7.25c-.28 0-.835-.284-.993-.716l-3.72-9.46c-.118-.331.139-.614.48-.464l19.474 10.306c-.149.147-.453.337-.72.334z" }) + ] + } + ); +}); + +exports.default = SiStreamlit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.d.ts new file mode 100644 index 000000000..d8be7babd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4B4B"; +declare const SiStreamlit: IconType; +export { SiStreamlit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.mjs new file mode 100644 index 000000000..8e23f75a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamlit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4B4B"; +const SiStreamlit = React.forwardRef(function SiStreamlit2({ title = "Streamlit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.673 11.32l6.862-3.618c.233-.136.554.12.442.387L20.463 17.1zm-8.556-.229l3.473-5.187c.203-.328.578-.316.793-.028l7.886 11.75zm-3.375 7.25c-.28 0-.835-.284-.993-.716l-3.72-9.46c-.118-.331.139-.614.48-.464l19.474 10.306c-.149.147-.453.337-.72.334z" }) + ] + } + ); +}); + +export { SiStreamlit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.cjs new file mode 100644 index 000000000..92e38452d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6644F8"; +const SiStreamrunners = React__namespace.forwardRef(function SiStreamrunners2({ title = "StreamRunners", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.572 12.737a.854.854 0 0 0 0-1.48l-12.66-7.31c-.695-.4-1.51.292-1.225 1.043l.98 2.587c.106.28-.1.578-.4.578H7.55c-.658 0-1.275.32-1.656.857L3.632 12.21h8.553c.02 0 .034.02.027.04-.847 2.253-1.69 4.508-2.537 6.761-.282.75.532 1.44 1.227 1.04zM.001 17.052a.005.005 0 0 0 0 .006h8.297a.64.64 0 0 0 .612-.452l.656-2.134a.64.64 0 0 0-.613-.83l-6.805.018a.078.078 0 0 0-.067.036C1.386 14.813.694 15.933 0 17.052Z" }) + ] + } + ); +}); + +exports.default = SiStreamrunners; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.d.ts new file mode 100644 index 000000000..63cb57963 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6644F8"; +declare const SiStreamrunners: IconType; +export { SiStreamrunners as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.mjs new file mode 100644 index 000000000..02579a1d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStreamrunners.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6644F8"; +const SiStreamrunners = React.forwardRef(function SiStreamrunners2({ title = "StreamRunners", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.572 12.737a.854.854 0 0 0 0-1.48l-12.66-7.31c-.695-.4-1.51.292-1.225 1.043l.98 2.587c.106.28-.1.578-.4.578H7.55c-.658 0-1.275.32-1.656.857L3.632 12.21h8.553c.02 0 .034.02.027.04-.847 2.253-1.69 4.508-2.537 6.761-.282.75.532 1.44 1.227 1.04zM.001 17.052a.005.005 0 0 0 0 .006h8.297a.64.64 0 0 0 .612-.452l.656-2.134a.64.64 0 0 0-.613-.83l-6.805.018a.078.078 0 0 0-.067.036C1.386 14.813.694 15.933 0 17.052Z" }) + ] + } + ); +}); + +export { SiStreamrunners as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.cjs new file mode 100644 index 000000000..e6c011e0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#685CEE"; +const SiStremio = React__namespace.forwardRef(function SiStremio2({ title = "Stremio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a1.2 1.2 0 0 0-.85.354L.353 11.15c-.47.47-.47 1.227 0 1.697L11.15 23.647a1.2 1.2 0 0 0 1.7 0l10.797-10.8c.47-.47.47-1.226 0-1.696L12.85.354A1.2 1.2 0 0 0 12 0zm-1.674 7.586a.2.2 0 0 1 .002 0 .2.2 0 0 1 .129.04l5.729 4.214a.2.2 0 0 1 0 .323l-5.73 4.213a.2.2 0 0 1-.317-.16v-8.43a.2.2 0 0 1 .187-.2z" }) + ] + } + ); +}); + +exports.default = SiStremio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.d.ts new file mode 100644 index 000000000..90737a004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#685CEE"; +declare const SiStremio: IconType; +export { SiStremio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.mjs new file mode 100644 index 000000000..10827e0aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStremio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#685CEE"; +const SiStremio = React.forwardRef(function SiStremio2({ title = "Stremio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a1.2 1.2 0 0 0-.85.354L.353 11.15c-.47.47-.47 1.227 0 1.697L11.15 23.647a1.2 1.2 0 0 0 1.7 0l10.797-10.8c.47-.47.47-1.226 0-1.696L12.85.354A1.2 1.2 0 0 0 12 0zm-1.674 7.586a.2.2 0 0 1 .002 0 .2.2 0 0 1 .129.04l5.729 4.214a.2.2 0 0 1 0 .323l-5.73 4.213a.2.2 0 0 1-.317-.16v-8.43a.2.2 0 0 1 .187-.2z" }) + ] + } + ); +}); + +export { SiStremio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.cjs new file mode 100644 index 000000000..dc740574b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#635BFF"; +const SiStripe = React__namespace.forwardRef(function SiStripe2({ title = "Stripe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.976 9.15c-2.172-.806-3.356-1.426-3.356-2.409 0-.831.683-1.305 1.901-1.305 2.227 0 4.515.858 6.09 1.631l.89-5.494C18.252.975 15.697 0 12.165 0 9.667 0 7.589.654 6.104 1.872 4.56 3.147 3.757 4.992 3.757 7.218c0 4.039 2.467 5.76 6.476 7.219 2.585.92 3.445 1.574 3.445 2.583 0 .98-.84 1.545-2.354 1.545-1.875 0-4.965-.921-6.99-2.109l-.9 5.555C5.175 22.99 8.385 24 11.714 24c2.641 0 4.843-.624 6.328-1.813 1.664-1.305 2.525-3.236 2.525-5.732 0-4.128-2.524-5.851-6.594-7.305h.003z" }) + ] + } + ); +}); + +exports.default = SiStripe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.d.ts new file mode 100644 index 000000000..c8599bb3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#635BFF"; +declare const SiStripe: IconType; +export { SiStripe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.mjs new file mode 100644 index 000000000..fc918a154 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStripe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#635BFF"; +const SiStripe = React.forwardRef(function SiStripe2({ title = "Stripe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.976 9.15c-2.172-.806-3.356-1.426-3.356-2.409 0-.831.683-1.305 1.901-1.305 2.227 0 4.515.858 6.09 1.631l.89-5.494C18.252.975 15.697 0 12.165 0 9.667 0 7.589.654 6.104 1.872 4.56 3.147 3.757 4.992 3.757 7.218c0 4.039 2.467 5.76 6.476 7.219 2.585.92 3.445 1.574 3.445 2.583 0 .98-.84 1.545-2.354 1.545-1.875 0-4.965-.921-6.99-2.109l-.9 5.555C5.175 22.99 8.385 24 11.714 24c2.641 0 4.843-.624 6.328-1.813 1.664-1.305 2.525-3.236 2.525-5.732 0-4.128-2.524-5.851-6.594-7.305h.003z" }) + ] + } + ); +}); + +export { SiStripe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.cjs new file mode 100644 index 000000000..0b2b2ddbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E00033"; +const SiStrongswan = React__namespace.forwardRef(function SiStrongswan2({ title = "strongSwan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.803 5.24a3.161 3.161 0 0 0-1.647.5c-.245.185-.54.52-.518 1.165.022.32.031.294.112.58.232.433.458.622.826.94.06.047.079.06.133.099.275.258.553.556.79.823.207.256.432.54.604.825.229.392.263.369.546.928.287.645.398 1.392.226 2.068a4.62 4.62 0 0 1-.88 1.646l.347 1.137.303-1.115.463.003.298 1.114.34-1.112h.466l-.554 1.662c.3-.39.528-.74.763-1.197l.409.07c.036-.093.079-.155.145-.183.04-.018.063-.032.19-.032.1-.001.216.016.253.095.013.035.028.064.023.183a3.68 3.68 0 0 1-.436.104c-.302.059-.427.105-.521.192a.44.44 0 0 0-.152.355c0 .11.02.184.07.26.079.122.19.197.344.23.1.022.302.018.393-.008a.86.86 0 0 0 .27-.138l.07-.053.056.173h.482l-.015-.03a1.143 1.143 0 0 1-.075-.22c-.012-.054-.014-.132-.015-.548 0-.401-.003-.497-.014-.552-.022-.112-.04-.16-.102-.216a.46.46 0 0 0-.257-.14 1.74 1.74 0 0 0-.494-.025c-.216.018-.42.11-.49.22 0 .002 0 .002-.002.003.734-1.491 1.002-3.19.274-4.696-.42-.92-1.036-1.522-1.751-2.102.71.009 1.367.094 2.033.02.167-.012.3-.02.455-.056a.624.624 0 0 1 .318-.073c.335-.116.376-.214.379-.292-.021-.181-.335-.323-.487-.393l-.96.202c-.057-.04-.835-.292-.83-.595.003-.122.13-.138.16-.433l.001-.263-.058-.298c-.063-.082-.425-.313-.626-.421-.241-.12-.386-.19-.562-.235a3.181 3.181 0 0 0-1.096-.171zm-6.332.657c-1.667-.01-3.283.509-4.457 1.83-.55.579-1.06 1.274-1.458 1.923.396.083.697.186 1.165.32.438.097.78.378 1.082.488l.09-.048c-1.001-.5-.685-.4-.284-.266.723.654 1.823.52 2.545 1.162l.243.14c.113-.04-.322-.275-.248-.282l.063.004c-.022-.001-.862-.533-.795-.53-.085-.145-.267-.225-.358-.308.227.073.587.375.732.428l.074-.063c.033-.029.005.135.141.165l.1-.165c.017-.026.087.146.131.157.03.008.004-.061.074-.111-.123-.079-.14-.075-.26-.138-.154-.029-.183-.042-.459-.238.29-.024.326.09.46.15.44.126.9.28 1.274.562l.033-.04c.017-.02.546.385.51.35l.065-.083c.012-.015.132.172.142.161l.06-.067c.252.226.276.377.528.551.16.075.54.373.79.528.505.45.711.64-.029.077-.166-.093-.617-.525-.528-.161.166.125.671.372.446.387.008.004.039.076.375.265.143.081.447.298.447.298l.014-.025.176.16c-.012-.012-.127-.013-.188-.022-.282-.22-.27-.194-.296-.193-.211.236.208.156.032.3.154.084.302.212.417.327.012.122.13.19.264.317s.285.315.389.41c.846-.389 1.315-.976 1.551-1.524.295-.756.245-1.02.086-1.586-.178-.557-.711-1.153-1.183-1.527-.25-.223-.495-.368-.878-.655-.69-.751-.954-1.401-1.019-1.966-.076-.516.06-.998.168-1.315-.7-.07-1.452-.15-2.065-.145a7.912 7.912 0 0 0-.162-.002zM5.556 9.65c-.08-.014-.157-.028-.229-.03a.338.338 0 0 0-.252.089c.13.015.26.03.398.074zm-.083.133l-.08.126c.219.023.314.015.515.04.19.05.542.15.71.207.016.013.088-.033.05-.054-.39-.174-.815-.208-1.195-.319zm-.08.126h-.169l.14.045zm-.028.045l-.031.065c.216.031.986.29 1.045.297.043.005.063-.048.025-.065-.134-.052-.317-.096-.508-.154a5.804 5.804 0 0 0-.531-.143zm-.031.065c-.21-.043-.326-.098-.578-.169-.258-.106-1.13-.252-.557.03.042.098-.506-.041-.341-.095-.06.002-.98-.273-.721-.092-.392-.14-.308-.129-.365.069-.2-.123-.331-.165-.466-.166-.08 0-.163.015-.262.037-.348-.063-.124-.019-.166.143.114.124.781.278.922.31.322.069 1.115.315 1.085.254-.282-.164.146.009.267.068.144.088.58.079.55.225a.353.353 0 0 1 .21.077c.123-.215.245-.432.422-.69zm-.528-.254c.067.07.14.053.232.078.066-.006.292-.018.336-.013-.017-.004-.23-.063-.568-.065zm-.408.075c.095.002.427.224.194.138-.243-.065-.326-.128-.21-.135a.034.034 0 0 1 .016-.003zm-2.675.011c-.034-.003-.056.08.119.104.054.008-.078-.093-.12-.104zm.22.07c-.03.021.03.068.363.128.274.05-.301-.129-.362-.128zm2.878.03c.04 0 .237.123.165.115-.236-.028-.255-.116-.165-.115zm-2.507.19c.229.144.31.17.052.134.147.097.48.15.348.306.055.027.201-.006.224.047.023.053.016.063-.101.13-.08.05-.49-.063-.683-.09-.22-.057-.376-.06-.594-.09-.468-.046-.003.087-.672.046-.545-.032-.193.11-.244.122-.1.137-.284-.069-.313-.044-.044.057-.01.187-.287.006L0 10.862c.397-.01.522.146.597-.035.17.013.3.096.354.133.054.037-.134.11-.016.095.101-.112.172.067.24.057.044 0 .12-.082.17-.088.021.006.079.098.13.093.043-.004.129-.07.149-.057.389.066.488.097.556.176.252-.012.55.164.963.209.981.336-.904-.193-1.462-.16-.188.017-.872-.13-.538.058.288.127.482.255.624.159.048-.026.894.356.338.019.12.017.227-.01.326.045.303.163.47.058.565.134.277.156.474.111.698.135.126.022.411.06.476.104.114.023.067.014.212.038l.102-.267c-.671-.075-.693-.112-1.543-.368l.014-.056c.209.068.343.1.52.127l.012-.094c.09.022.47.105.489.091-.215-.094-.2-.044-.163-.114.11-.033.557.165.613.139.156-.005.123.003.162.007.154-.415.171-.38.276-.654a2.276 2.276 0 0 1-.245-.109c-.089.042.196.142-.306-.008-.147-.1-.125-.145-.153-.002-.054-.037-.089-.005-.339-.193-.351-.122-1.261-.338-1.507-.336zm2.274 1.301l-.104.268c.212.02.167.005.303-.01.135-.014.471.118.621.191.088.057.095.074.363.167.147.025.574.242.876.316.036-.01.363.114.526.15.102.04.193.093.28.157.147.061.207.087.38.11.164.071-.018.024.201.117.24.123.358.242.442.267.104-.053.34-.12.38-.13-.172-.04-.438-.242-.817-.388-.623-.15-1.137-.55-1.71-.804l-.419-.113c-.038.003-.043.021-.044.05.394.123.534.162.677.235.182.16.322.185.351.221-.325-.097-.295-.085-.59-.174-.237-.078-.274-.133-.58-.227-.158-.049-.356-.166-.536-.233a2.167 2.167 0 0 0-.6-.17zm-.206.535C3.678 13.9 3.315 14.845 1.76 15.86c-.364.229-.778.4-1.21.427v2.467c1.51.002 3.019.001 4.528.006-.276-2.279 1.124-4.583 3.202-5.505-.38-.288-.39-.202-.451-.172-.248-.181-1.15-.677-1.16-.688-.1-.011-.36-.125-.398-.075-.025.055.13.072.187.084.225.041 1.242.664 1.32.792-.448.025-.81-.41-1.181-.505l.008-.118c-.236-.12-.415-.122-.481-.166-.08.146-1.016-.346-1.17-.341-.23.033-.213-.036-.572-.089zm.938-1.331c-.017 0-.007.01.056.041.053.019.515.205.256.143-.168.117.425.013.244.116-.398-.111.547.306.308.07-.093-.147-.131-.088-.193-.12-.183-.093-.297-.127-.414-.178-.03-.009-.216-.07-.257-.072zm.257.072m-4.575-.052c.13 0 .266.01.313.014.366-.045.425.12.107.088-.03-.002-.108-.073-.233.049-.074-.009-.126-.086-.212-.104.071.1.293.142-.131.088-.258-.114-.06-.137.156-.135zm.741.033c.05-.002.111.017.128.077-.257-.015-.21-.074-.128-.077zm8.753.28l-.003.001c-.122.08.05.232.385.348-.099-.138-.042-.143-.195-.193.067.172-.15-.155-.187-.156zm-5.734.12c-.23.14.486.301.387.255-.042-.173.399.174.217-.043-.26-.058-.11-.103-.203-.096-.158.066-.295-.098-.401-.115zm-2.067.017c.005 0 .01.002.016.005.023.014.052.05.093.072.01.037-.029.04-.069.029-.04-.01-.081-.033-.078-.045.011-.047.023-.062.038-.062zm.845.09c.016 0 .048.025.095.102-.097-.004-.126-.1-.095-.101zm7.412.046c-.084.073.188.295.27.145-.136-.126.054.123-.27-.145zm-3.99.003c-.277.065-.275.007.053.197.3.138-.003.095-.126.012.004.03.25.217.22.19.118.083.454.215.32.042.12-.15-.193-.162-.194-.184a.867.867 0 0 1-.28-.183c-.185.014.119-.06.007-.074zm-.007.074h.004c-.004-.002-.005-.002-.004 0zm.28.183c.028.007.048.003.055-.017-.04.007-.055.013-.055.017zm.28 2.852v.485h-.192v.242h.192l.008 1.018c.008.224.129.388.334.447.17.028.32.013.478-.028l-.004-.264a.733.733 0 0 1-.245.058c-.17-.01-.23-.035-.275-.203l-.005-1.03.53.002v-.242h-.527v-.485zm4.614.436a.7.7 0 0 0-.459.179l-.056.045v-.175h-.293v1.689h.293v-1.259l.064-.047a.9.9 0 0 1 .258-.136.571.571 0 0 1 .236 0c.06.017.11.058.138.113.047.092.05.125.054.754l.004.575h.292l-.003-.625c-.003-.606-.004-.628-.022-.7-.05-.205-.167-.34-.344-.393a.725.725 0 0 0-.162-.02zm11.251.002a.751.751 0 0 0-.306.068.896.896 0 0 0-.228.168l-.034.039v-.237h-.444v1.715h.477l-.003-.893c-.01-.438.226-.504.398-.511.195.006.274.14.28.332-.002.358.001.715.004 1.072H24l-.003-.65c-.003-.591-.005-.656-.018-.71a.462.462 0 0 0-.286-.337.778.778 0 0 0-.313-.056zm-13.111 0a.901.901 0 0 0-.198.02c-.3.082-.498.337-.54.699-.016.131-.006.355.02.468.04.173.1.284.214.399a.524.524 0 0 0 .147.114.794.794 0 0 0 .234.077c.08.013.265.004.345-.015a.678.678 0 0 0 .44-.35c.076-.15.097-.247.103-.475a1.144 1.144 0 0 0-.048-.432.694.694 0 0 0-.717-.505zm3.394.001a.67.67 0 0 0-.477.196.688.688 0 0 0-.176.266c-.073.18-.093.425-.053.662.05.3.21.497.444.56a.845.845 0 0 0 .446-.02c.091-.04.154-.093.225-.148l-.002.135a1.05 1.05 0 0 1-.018.182c-.027.11-.072.184-.163.23a.537.537 0 0 1-.297.055c-.196-.004-.364-.073-.488-.116l-.004.307c.1.024.21.047.295.057.185.023.381.012.514-.03.256-.06.425-.299.448-.67v-1.62h-.266l-.014.07-.077-.042c-.156-.074-.264-.073-.337-.074zm-7.03.003a.79.79 0 0 0-.213.025c-.193.057-.337.192-.38.357a.647.647 0 0 0-.013.137c0 .15.038.247.13.333.09.085.186.118.471.177.202.042.28.078.313.177.02.175.002.215-.107.283a.726.726 0 0 1-.242.042c-.15.014-.372-.071-.554-.218H6.02v.32c.11.056.23.098.355.128.1.026.382.015.452-.008.149-.048.3-.15.358-.261a.453.453 0 0 0 .06-.254c-.001-.257-.122-.39-.418-.459l-.216-.05a.583.583 0 0 1-.23-.095c-.045-.041-.069-.136-.052-.206.015-.06.05-.098.108-.133.177-.108.498-.048.722.13h.023v-.308a1.34 1.34 0 0 0-.337-.105 2.395 2.395 0 0 0-.21-.012zm2.676.042a.678.678 0 0 0-.395.175l-.093.08.001-.253H8.54l.004 1.686.285.002-.004-1.199a.915.915 0 0 1 .251-.162c.148-.053.195-.04.363-.023v-.305h-.13zm.965.204c.051 0 .103.007.154.022.14.044.237.162.283.343.025.1.032.37.013.482-.038.219-.14.361-.296.413a.447.447 0 0 1-.43-.08c-.113-.106-.163-.247-.171-.486-.01-.277.04-.463.155-.578a.421.421 0 0 1 .292-.116zm3.42.008h.042a.802.802 0 0 1 .336.098v.918l-.05.035a.803.803 0 0 1-.24.11.619.619 0 0 1-.28 0c-.118-.038-.19-.122-.232-.276a1.28 1.28 0 0 1-.03-.335c.016-.214.066-.34.174-.442a.374.374 0 0 1 .28-.108zm3.96.105c-1.014.897-1.887 1.096-2.407 1.228.247.696.34 1.51.289 2.245 1.596-.265 3.04-.904 4.076-2.083l-.43-.001-.31-1.098-.299 1.098-.46.001zm3.78.58c.007.002.007.028.004.129-.005.156-.019.204-.078.27a.455.455 0 0 1-.2.114c-.111.028-.212.005-.283-.065-.112-.112-.073-.274.079-.33.045-.017.08-.026.329-.083a3.467 3.467 0 0 0 .149-.035z" }) + ] + } + ); +}); + +exports.default = SiStrongswan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.d.ts new file mode 100644 index 000000000..7a589aced --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E00033"; +declare const SiStrongswan: IconType; +export { SiStrongswan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.mjs new file mode 100644 index 000000000..c770b4bde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStrongswan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E00033"; +const SiStrongswan = React.forwardRef(function SiStrongswan2({ title = "strongSwan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.803 5.24a3.161 3.161 0 0 0-1.647.5c-.245.185-.54.52-.518 1.165.022.32.031.294.112.58.232.433.458.622.826.94.06.047.079.06.133.099.275.258.553.556.79.823.207.256.432.54.604.825.229.392.263.369.546.928.287.645.398 1.392.226 2.068a4.62 4.62 0 0 1-.88 1.646l.347 1.137.303-1.115.463.003.298 1.114.34-1.112h.466l-.554 1.662c.3-.39.528-.74.763-1.197l.409.07c.036-.093.079-.155.145-.183.04-.018.063-.032.19-.032.1-.001.216.016.253.095.013.035.028.064.023.183a3.68 3.68 0 0 1-.436.104c-.302.059-.427.105-.521.192a.44.44 0 0 0-.152.355c0 .11.02.184.07.26.079.122.19.197.344.23.1.022.302.018.393-.008a.86.86 0 0 0 .27-.138l.07-.053.056.173h.482l-.015-.03a1.143 1.143 0 0 1-.075-.22c-.012-.054-.014-.132-.015-.548 0-.401-.003-.497-.014-.552-.022-.112-.04-.16-.102-.216a.46.46 0 0 0-.257-.14 1.74 1.74 0 0 0-.494-.025c-.216.018-.42.11-.49.22 0 .002 0 .002-.002.003.734-1.491 1.002-3.19.274-4.696-.42-.92-1.036-1.522-1.751-2.102.71.009 1.367.094 2.033.02.167-.012.3-.02.455-.056a.624.624 0 0 1 .318-.073c.335-.116.376-.214.379-.292-.021-.181-.335-.323-.487-.393l-.96.202c-.057-.04-.835-.292-.83-.595.003-.122.13-.138.16-.433l.001-.263-.058-.298c-.063-.082-.425-.313-.626-.421-.241-.12-.386-.19-.562-.235a3.181 3.181 0 0 0-1.096-.171zm-6.332.657c-1.667-.01-3.283.509-4.457 1.83-.55.579-1.06 1.274-1.458 1.923.396.083.697.186 1.165.32.438.097.78.378 1.082.488l.09-.048c-1.001-.5-.685-.4-.284-.266.723.654 1.823.52 2.545 1.162l.243.14c.113-.04-.322-.275-.248-.282l.063.004c-.022-.001-.862-.533-.795-.53-.085-.145-.267-.225-.358-.308.227.073.587.375.732.428l.074-.063c.033-.029.005.135.141.165l.1-.165c.017-.026.087.146.131.157.03.008.004-.061.074-.111-.123-.079-.14-.075-.26-.138-.154-.029-.183-.042-.459-.238.29-.024.326.09.46.15.44.126.9.28 1.274.562l.033-.04c.017-.02.546.385.51.35l.065-.083c.012-.015.132.172.142.161l.06-.067c.252.226.276.377.528.551.16.075.54.373.79.528.505.45.711.64-.029.077-.166-.093-.617-.525-.528-.161.166.125.671.372.446.387.008.004.039.076.375.265.143.081.447.298.447.298l.014-.025.176.16c-.012-.012-.127-.013-.188-.022-.282-.22-.27-.194-.296-.193-.211.236.208.156.032.3.154.084.302.212.417.327.012.122.13.19.264.317s.285.315.389.41c.846-.389 1.315-.976 1.551-1.524.295-.756.245-1.02.086-1.586-.178-.557-.711-1.153-1.183-1.527-.25-.223-.495-.368-.878-.655-.69-.751-.954-1.401-1.019-1.966-.076-.516.06-.998.168-1.315-.7-.07-1.452-.15-2.065-.145a7.912 7.912 0 0 0-.162-.002zM5.556 9.65c-.08-.014-.157-.028-.229-.03a.338.338 0 0 0-.252.089c.13.015.26.03.398.074zm-.083.133l-.08.126c.219.023.314.015.515.04.19.05.542.15.71.207.016.013.088-.033.05-.054-.39-.174-.815-.208-1.195-.319zm-.08.126h-.169l.14.045zm-.028.045l-.031.065c.216.031.986.29 1.045.297.043.005.063-.048.025-.065-.134-.052-.317-.096-.508-.154a5.804 5.804 0 0 0-.531-.143zm-.031.065c-.21-.043-.326-.098-.578-.169-.258-.106-1.13-.252-.557.03.042.098-.506-.041-.341-.095-.06.002-.98-.273-.721-.092-.392-.14-.308-.129-.365.069-.2-.123-.331-.165-.466-.166-.08 0-.163.015-.262.037-.348-.063-.124-.019-.166.143.114.124.781.278.922.31.322.069 1.115.315 1.085.254-.282-.164.146.009.267.068.144.088.58.079.55.225a.353.353 0 0 1 .21.077c.123-.215.245-.432.422-.69zm-.528-.254c.067.07.14.053.232.078.066-.006.292-.018.336-.013-.017-.004-.23-.063-.568-.065zm-.408.075c.095.002.427.224.194.138-.243-.065-.326-.128-.21-.135a.034.034 0 0 1 .016-.003zm-2.675.011c-.034-.003-.056.08.119.104.054.008-.078-.093-.12-.104zm.22.07c-.03.021.03.068.363.128.274.05-.301-.129-.362-.128zm2.878.03c.04 0 .237.123.165.115-.236-.028-.255-.116-.165-.115zm-2.507.19c.229.144.31.17.052.134.147.097.48.15.348.306.055.027.201-.006.224.047.023.053.016.063-.101.13-.08.05-.49-.063-.683-.09-.22-.057-.376-.06-.594-.09-.468-.046-.003.087-.672.046-.545-.032-.193.11-.244.122-.1.137-.284-.069-.313-.044-.044.057-.01.187-.287.006L0 10.862c.397-.01.522.146.597-.035.17.013.3.096.354.133.054.037-.134.11-.016.095.101-.112.172.067.24.057.044 0 .12-.082.17-.088.021.006.079.098.13.093.043-.004.129-.07.149-.057.389.066.488.097.556.176.252-.012.55.164.963.209.981.336-.904-.193-1.462-.16-.188.017-.872-.13-.538.058.288.127.482.255.624.159.048-.026.894.356.338.019.12.017.227-.01.326.045.303.163.47.058.565.134.277.156.474.111.698.135.126.022.411.06.476.104.114.023.067.014.212.038l.102-.267c-.671-.075-.693-.112-1.543-.368l.014-.056c.209.068.343.1.52.127l.012-.094c.09.022.47.105.489.091-.215-.094-.2-.044-.163-.114.11-.033.557.165.613.139.156-.005.123.003.162.007.154-.415.171-.38.276-.654a2.276 2.276 0 0 1-.245-.109c-.089.042.196.142-.306-.008-.147-.1-.125-.145-.153-.002-.054-.037-.089-.005-.339-.193-.351-.122-1.261-.338-1.507-.336zm2.274 1.301l-.104.268c.212.02.167.005.303-.01.135-.014.471.118.621.191.088.057.095.074.363.167.147.025.574.242.876.316.036-.01.363.114.526.15.102.04.193.093.28.157.147.061.207.087.38.11.164.071-.018.024.201.117.24.123.358.242.442.267.104-.053.34-.12.38-.13-.172-.04-.438-.242-.817-.388-.623-.15-1.137-.55-1.71-.804l-.419-.113c-.038.003-.043.021-.044.05.394.123.534.162.677.235.182.16.322.185.351.221-.325-.097-.295-.085-.59-.174-.237-.078-.274-.133-.58-.227-.158-.049-.356-.166-.536-.233a2.167 2.167 0 0 0-.6-.17zm-.206.535C3.678 13.9 3.315 14.845 1.76 15.86c-.364.229-.778.4-1.21.427v2.467c1.51.002 3.019.001 4.528.006-.276-2.279 1.124-4.583 3.202-5.505-.38-.288-.39-.202-.451-.172-.248-.181-1.15-.677-1.16-.688-.1-.011-.36-.125-.398-.075-.025.055.13.072.187.084.225.041 1.242.664 1.32.792-.448.025-.81-.41-1.181-.505l.008-.118c-.236-.12-.415-.122-.481-.166-.08.146-1.016-.346-1.17-.341-.23.033-.213-.036-.572-.089zm.938-1.331c-.017 0-.007.01.056.041.053.019.515.205.256.143-.168.117.425.013.244.116-.398-.111.547.306.308.07-.093-.147-.131-.088-.193-.12-.183-.093-.297-.127-.414-.178-.03-.009-.216-.07-.257-.072zm.257.072m-4.575-.052c.13 0 .266.01.313.014.366-.045.425.12.107.088-.03-.002-.108-.073-.233.049-.074-.009-.126-.086-.212-.104.071.1.293.142-.131.088-.258-.114-.06-.137.156-.135zm.741.033c.05-.002.111.017.128.077-.257-.015-.21-.074-.128-.077zm8.753.28l-.003.001c-.122.08.05.232.385.348-.099-.138-.042-.143-.195-.193.067.172-.15-.155-.187-.156zm-5.734.12c-.23.14.486.301.387.255-.042-.173.399.174.217-.043-.26-.058-.11-.103-.203-.096-.158.066-.295-.098-.401-.115zm-2.067.017c.005 0 .01.002.016.005.023.014.052.05.093.072.01.037-.029.04-.069.029-.04-.01-.081-.033-.078-.045.011-.047.023-.062.038-.062zm.845.09c.016 0 .048.025.095.102-.097-.004-.126-.1-.095-.101zm7.412.046c-.084.073.188.295.27.145-.136-.126.054.123-.27-.145zm-3.99.003c-.277.065-.275.007.053.197.3.138-.003.095-.126.012.004.03.25.217.22.19.118.083.454.215.32.042.12-.15-.193-.162-.194-.184a.867.867 0 0 1-.28-.183c-.185.014.119-.06.007-.074zm-.007.074h.004c-.004-.002-.005-.002-.004 0zm.28.183c.028.007.048.003.055-.017-.04.007-.055.013-.055.017zm.28 2.852v.485h-.192v.242h.192l.008 1.018c.008.224.129.388.334.447.17.028.32.013.478-.028l-.004-.264a.733.733 0 0 1-.245.058c-.17-.01-.23-.035-.275-.203l-.005-1.03.53.002v-.242h-.527v-.485zm4.614.436a.7.7 0 0 0-.459.179l-.056.045v-.175h-.293v1.689h.293v-1.259l.064-.047a.9.9 0 0 1 .258-.136.571.571 0 0 1 .236 0c.06.017.11.058.138.113.047.092.05.125.054.754l.004.575h.292l-.003-.625c-.003-.606-.004-.628-.022-.7-.05-.205-.167-.34-.344-.393a.725.725 0 0 0-.162-.02zm11.251.002a.751.751 0 0 0-.306.068.896.896 0 0 0-.228.168l-.034.039v-.237h-.444v1.715h.477l-.003-.893c-.01-.438.226-.504.398-.511.195.006.274.14.28.332-.002.358.001.715.004 1.072H24l-.003-.65c-.003-.591-.005-.656-.018-.71a.462.462 0 0 0-.286-.337.778.778 0 0 0-.313-.056zm-13.111 0a.901.901 0 0 0-.198.02c-.3.082-.498.337-.54.699-.016.131-.006.355.02.468.04.173.1.284.214.399a.524.524 0 0 0 .147.114.794.794 0 0 0 .234.077c.08.013.265.004.345-.015a.678.678 0 0 0 .44-.35c.076-.15.097-.247.103-.475a1.144 1.144 0 0 0-.048-.432.694.694 0 0 0-.717-.505zm3.394.001a.67.67 0 0 0-.477.196.688.688 0 0 0-.176.266c-.073.18-.093.425-.053.662.05.3.21.497.444.56a.845.845 0 0 0 .446-.02c.091-.04.154-.093.225-.148l-.002.135a1.05 1.05 0 0 1-.018.182c-.027.11-.072.184-.163.23a.537.537 0 0 1-.297.055c-.196-.004-.364-.073-.488-.116l-.004.307c.1.024.21.047.295.057.185.023.381.012.514-.03.256-.06.425-.299.448-.67v-1.62h-.266l-.014.07-.077-.042c-.156-.074-.264-.073-.337-.074zm-7.03.003a.79.79 0 0 0-.213.025c-.193.057-.337.192-.38.357a.647.647 0 0 0-.013.137c0 .15.038.247.13.333.09.085.186.118.471.177.202.042.28.078.313.177.02.175.002.215-.107.283a.726.726 0 0 1-.242.042c-.15.014-.372-.071-.554-.218H6.02v.32c.11.056.23.098.355.128.1.026.382.015.452-.008.149-.048.3-.15.358-.261a.453.453 0 0 0 .06-.254c-.001-.257-.122-.39-.418-.459l-.216-.05a.583.583 0 0 1-.23-.095c-.045-.041-.069-.136-.052-.206.015-.06.05-.098.108-.133.177-.108.498-.048.722.13h.023v-.308a1.34 1.34 0 0 0-.337-.105 2.395 2.395 0 0 0-.21-.012zm2.676.042a.678.678 0 0 0-.395.175l-.093.08.001-.253H8.54l.004 1.686.285.002-.004-1.199a.915.915 0 0 1 .251-.162c.148-.053.195-.04.363-.023v-.305h-.13zm.965.204c.051 0 .103.007.154.022.14.044.237.162.283.343.025.1.032.37.013.482-.038.219-.14.361-.296.413a.447.447 0 0 1-.43-.08c-.113-.106-.163-.247-.171-.486-.01-.277.04-.463.155-.578a.421.421 0 0 1 .292-.116zm3.42.008h.042a.802.802 0 0 1 .336.098v.918l-.05.035a.803.803 0 0 1-.24.11.619.619 0 0 1-.28 0c-.118-.038-.19-.122-.232-.276a1.28 1.28 0 0 1-.03-.335c.016-.214.066-.34.174-.442a.374.374 0 0 1 .28-.108zm3.96.105c-1.014.897-1.887 1.096-2.407 1.228.247.696.34 1.51.289 2.245 1.596-.265 3.04-.904 4.076-2.083l-.43-.001-.31-1.098-.299 1.098-.46.001zm3.78.58c.007.002.007.028.004.129-.005.156-.019.204-.078.27a.455.455 0 0 1-.2.114c-.111.028-.212.005-.283-.065-.112-.112-.073-.274.079-.33.045-.017.08-.026.329-.083a3.467 3.467 0 0 0 .149-.035z" }) + ] + } + ); +}); + +export { SiStrongswan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.cjs new file mode 100644 index 000000000..05907ccc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E74C3C"; +const SiStryker = React__namespace.forwardRef(function SiStryker2({ title = "Stryker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.852 0C5.34.08.079 5.341 0 11.852h1.857v.296H0C.08 18.66 5.34 23.921 11.852 24v-1.857h.296V24C18.66 23.92 23.921 18.66 24 12.148h-1.857v-.296H24C23.92 5.34 18.66.079 12.148 0v1.857h-.296Zm.505 2.83c1.44 0 2.561.31 3.373.894.812.583 1.441 1.373 1.88 2.371l.234.53-2.73.957-.191-.472c-.222-.545-.52-.973-.909-1.27-.384-.29-.924-.418-1.612-.418-.73 0-1.332.162-1.8.505-.425.313-.61.817-.61 1.49 0 .332.041.628.13.883.081.23.22.437.408.62.223.216.516.419.881.614.398.213.89.43 1.481.65a18.254 18.254 0 0 1 1.756.784 6.345 6.345 0 0 1 1.545 1.106A4.91 4.91 0 0 1 17.28 13.7c.26.624.399 1.382.399 2.277a4.88 4.88 0 0 1-.427 2.013 5.054 5.054 0 0 1-1.183 1.657 5.57 5.57 0 0 1-1.792 1.108 6.182 6.182 0 0 1-2.266.406c-.832 0-1.56-.107-2.183-.316a5.6 5.6 0 0 1-1.638-.84 4.988 4.988 0 0 1-1.145-1.198 6.109 6.109 0 0 1-.692-1.362l-.177-.496 2.662-.998.18.517a4.164 4.164 0 0 0 .38.797c.144.239.331.449.556.63.232.187.513.337.844.453.342.12.754.177 1.238.177a3.654 3.654 0 0 0 .966-.132 2.295 2.295 0 0 0 .813-.403 1.98 1.98 0 0 0 .569-.728c.154-.32.224-.711.224-1.173 0-.505-.057-.925-.184-1.258a2.133 2.133 0 0 0-.554-.81c-.278-.258-.641-.485-1.09-.688a57.733 57.733 0 0 0-1.798-.774c-1.342-.548-2.325-1.22-2.962-1.997-.666-.814-1.007-1.814-1.007-3.009 0-.656.122-1.273.364-1.85a4.245 4.245 0 0 1 1.079-1.527 5.073 5.073 0 0 1 1.683-.992c.644-.234 1.383-.355 2.22-.355z" }) + ] + } + ); +}); + +exports.default = SiStryker; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.d.ts new file mode 100644 index 000000000..0e3944eb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E74C3C"; +declare const SiStryker: IconType; +export { SiStryker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.mjs new file mode 100644 index 000000000..14ee95ea0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStryker.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E74C3C"; +const SiStryker = React.forwardRef(function SiStryker2({ title = "Stryker", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.852 0C5.34.08.079 5.341 0 11.852h1.857v.296H0C.08 18.66 5.34 23.921 11.852 24v-1.857h.296V24C18.66 23.92 23.921 18.66 24 12.148h-1.857v-.296H24C23.92 5.34 18.66.079 12.148 0v1.857h-.296Zm.505 2.83c1.44 0 2.561.31 3.373.894.812.583 1.441 1.373 1.88 2.371l.234.53-2.73.957-.191-.472c-.222-.545-.52-.973-.909-1.27-.384-.29-.924-.418-1.612-.418-.73 0-1.332.162-1.8.505-.425.313-.61.817-.61 1.49 0 .332.041.628.13.883.081.23.22.437.408.62.223.216.516.419.881.614.398.213.89.43 1.481.65a18.254 18.254 0 0 1 1.756.784 6.345 6.345 0 0 1 1.545 1.106A4.91 4.91 0 0 1 17.28 13.7c.26.624.399 1.382.399 2.277a4.88 4.88 0 0 1-.427 2.013 5.054 5.054 0 0 1-1.183 1.657 5.57 5.57 0 0 1-1.792 1.108 6.182 6.182 0 0 1-2.266.406c-.832 0-1.56-.107-2.183-.316a5.6 5.6 0 0 1-1.638-.84 4.988 4.988 0 0 1-1.145-1.198 6.109 6.109 0 0 1-.692-1.362l-.177-.496 2.662-.998.18.517a4.164 4.164 0 0 0 .38.797c.144.239.331.449.556.63.232.187.513.337.844.453.342.12.754.177 1.238.177a3.654 3.654 0 0 0 .966-.132 2.295 2.295 0 0 0 .813-.403 1.98 1.98 0 0 0 .569-.728c.154-.32.224-.711.224-1.173 0-.505-.057-.925-.184-1.258a2.133 2.133 0 0 0-.554-.81c-.278-.258-.641-.485-1.09-.688a57.733 57.733 0 0 0-1.798-.774c-1.342-.548-2.325-1.22-2.962-1.997-.666-.814-1.007-1.814-1.007-3.009 0-.656.122-1.273.364-1.85a4.245 4.245 0 0 1 1.079-1.527 5.073 5.073 0 0 1 1.683-.992c.644-.234 1.383-.355 2.22-.355z" }) + ] + } + ); +}); + +export { SiStryker as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.cjs new file mode 100644 index 000000000..bc6a36bf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003168"; +const SiStubhub = React__namespace.forwardRef(function SiStubhub2({ title = "StubHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.78 6.566L.21 8.148c-.116.008-.21.107-.21.227V8.4l.725 6.884v.004c.003.036.006.07.006.11 0 .123-.016.243-.048.347L.344 16.84c-.04.122.026.182.146.134l1.805-.75c.002 0 .004 0 .006-.002h.003c.13-.05.27-.076.418-.076h.036l20.04 1.29c.127 0 .23-.097.243-.222L24 6.784v-.02c0-.11-.09-.198-.2-.198h-.02zm-19.245 3.68h.053c.823 0 1.25.304 1.275.892v.045h-.516l-.006-.04c-.027-.26-.273-.386-.753-.386h-.045c-.48.008-.717.152-.717.434v.08c.005.055.03.102.07.136.052.048.117.087.19.11l1.204.403-.007-.005.01.004c.18.057.34.163.46.306.108.138.175.313.175.502v.117c0 .287-.14.54-.36.695-.235.18-.575.268-.997.268s-.75-.093-.99-.268v-.002c-.218-.155-.36-.41-.36-.7v-.07h.516v.05c0 .146.063.255.21.346s.358.137.628.137.49-.048.637-.136.22-.2.22-.346v-.072c0-.167-.098-.277-.3-.344L3.935 12c-.195-.062-.35-.157-.45-.28-.1-.12-.16-.274-.16-.444v-.084c0-.616.403-.935 1.21-.943zm8.292.08h.518v1.448h1.588v-1.447h.52v3.47h-.522v-1.52h-1.585v1.52h-.518v-3.47zm-6.495.007h.5v.945h.535v.51h-.535v.89c0 .208.056.37.168.487l-.002.004c.087.09.202.15.334.17h.035v.485l-.047-.004h-.004c-.265-.016-.504-.13-.68-.308-.203-.21-.305-.492-.305-.834v-2.346zm11.913 0h.5v1.12c.155-.157.367-.24.633-.24.755 0 1.14.395 1.142 1.175v.283c0 .342-.103.624-.305.835s-.486.316-.836.316-.628-.105-.83-.315-.306-.494-.306-.834v-2.337zm-8.084.002h.5v1.12c.156-.16.368-.243.634-.243.76 0 1.14.396 1.144 1.176v.283c0 .342-.105.624-.307.835s-.483.316-.833.316-.627-.105-.83-.315-.307-.494-.307-.834v-2.335zm-2.395.945h.492v1.367c0 .258.04.442.113.545.07.095.204.146.387.146h.016c.185 0 .31-.047.385-.146s.115-.287.115-.545H9.27V11.28h.49v1.367c0 .417-.08.72-.23.902-.146.173-.385.264-.71.272h-.115c-.325-.008-.564-.098-.71-.273-.156-.18-.23-.486-.23-.903V11.28zm8.077 0h.492v1.367c0 .258.04.442.115.545.07.095.2.146.384.146h.025c.18 0 .306-.05.378-.146.075-.104.115-.287.115-.545h-.004V11.28h.49v1.367c0 .417-.083.728-.23.902s-.384.264-.71.272h-.12c-.324-.008-.563-.098-.71-.273-.155-.18-.228-.486-.228-.903V11.28zm-4.548.422c-.207 0-.37.05-.473.156s-.16.285-.16.53v.288c0 .208.062.366.17.486s.26.182.464.182c.203 0 .357-.056.47-.18s.17-.28.17-.488v-.283c0-.247-.056-.423-.163-.53s-.266-.16-.476-.16zm8.083 0c-.207 0-.37.05-.473.156s-.16.285-.16.53v.288c0 .208.06.366.166.486s.267.182.467.182.355-.06.47-.18.17-.285.17-.488v-.283c0-.247-.056-.423-.163-.53s-.267-.16-.477-.16z" }) + ] + } + ); +}); + +exports.default = SiStubhub; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.d.ts new file mode 100644 index 000000000..128189535 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003168"; +declare const SiStubhub: IconType; +export { SiStubhub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.mjs new file mode 100644 index 000000000..ddcd25431 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStubhub.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003168"; +const SiStubhub = React.forwardRef(function SiStubhub2({ title = "StubHub", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.78 6.566L.21 8.148c-.116.008-.21.107-.21.227V8.4l.725 6.884v.004c.003.036.006.07.006.11 0 .123-.016.243-.048.347L.344 16.84c-.04.122.026.182.146.134l1.805-.75c.002 0 .004 0 .006-.002h.003c.13-.05.27-.076.418-.076h.036l20.04 1.29c.127 0 .23-.097.243-.222L24 6.784v-.02c0-.11-.09-.198-.2-.198h-.02zm-19.245 3.68h.053c.823 0 1.25.304 1.275.892v.045h-.516l-.006-.04c-.027-.26-.273-.386-.753-.386h-.045c-.48.008-.717.152-.717.434v.08c.005.055.03.102.07.136.052.048.117.087.19.11l1.204.403-.007-.005.01.004c.18.057.34.163.46.306.108.138.175.313.175.502v.117c0 .287-.14.54-.36.695-.235.18-.575.268-.997.268s-.75-.093-.99-.268v-.002c-.218-.155-.36-.41-.36-.7v-.07h.516v.05c0 .146.063.255.21.346s.358.137.628.137.49-.048.637-.136.22-.2.22-.346v-.072c0-.167-.098-.277-.3-.344L3.935 12c-.195-.062-.35-.157-.45-.28-.1-.12-.16-.274-.16-.444v-.084c0-.616.403-.935 1.21-.943zm8.292.08h.518v1.448h1.588v-1.447h.52v3.47h-.522v-1.52h-1.585v1.52h-.518v-3.47zm-6.495.007h.5v.945h.535v.51h-.535v.89c0 .208.056.37.168.487l-.002.004c.087.09.202.15.334.17h.035v.485l-.047-.004h-.004c-.265-.016-.504-.13-.68-.308-.203-.21-.305-.492-.305-.834v-2.346zm11.913 0h.5v1.12c.155-.157.367-.24.633-.24.755 0 1.14.395 1.142 1.175v.283c0 .342-.103.624-.305.835s-.486.316-.836.316-.628-.105-.83-.315-.306-.494-.306-.834v-2.337zm-8.084.002h.5v1.12c.156-.16.368-.243.634-.243.76 0 1.14.396 1.144 1.176v.283c0 .342-.105.624-.307.835s-.483.316-.833.316-.627-.105-.83-.315-.307-.494-.307-.834v-2.335zm-2.395.945h.492v1.367c0 .258.04.442.113.545.07.095.204.146.387.146h.016c.185 0 .31-.047.385-.146s.115-.287.115-.545H9.27V11.28h.49v1.367c0 .417-.08.72-.23.902-.146.173-.385.264-.71.272h-.115c-.325-.008-.564-.098-.71-.273-.156-.18-.23-.486-.23-.903V11.28zm8.077 0h.492v1.367c0 .258.04.442.115.545.07.095.2.146.384.146h.025c.18 0 .306-.05.378-.146.075-.104.115-.287.115-.545h-.004V11.28h.49v1.367c0 .417-.083.728-.23.902s-.384.264-.71.272h-.12c-.324-.008-.563-.098-.71-.273-.155-.18-.228-.486-.228-.903V11.28zm-4.548.422c-.207 0-.37.05-.473.156s-.16.285-.16.53v.288c0 .208.062.366.17.486s.26.182.464.182c.203 0 .357-.056.47-.18s.17-.28.17-.488v-.283c0-.247-.056-.423-.163-.53s-.266-.16-.476-.16zm8.083 0c-.207 0-.37.05-.473.156s-.16.285-.16.53v.288c0 .208.06.366.166.486s.267.182.467.182.355-.06.47-.18.17-.285.17-.488v-.283c0-.247-.056-.423-.163-.53s-.267-.16-.477-.16z" }) + ] + } + ); +}); + +export { SiStubhub as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.cjs new file mode 100644 index 000000000..8b1a237be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17AF66"; +const SiStudio3t = React__namespace.forwardRef(function SiStudio3t2({ title = "Studio 3T", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.336 3.194c-3.37.044-8.92 1.972-11.414 7.826-.16.384-.3.777-.418 1.177A12.825 12.825 0 0 0 .1 14.094l-.004-.002c-.405 4.071.519 6.19 1.877 6.62.909.288 1.707-.099 2.646-.888 1.032-.867 1.436-1.523 1.32-2.426-.12-.932-1.126-1.61-2.037-1.853-1.318-.383-.787-1.228-.787-1.228s1.421 1.02 3.711.763c2.089-.234 2.486-.672 2.486-.672-.003-2.155 1.152-3.657 2.664-3.802-1.05.495-1.656 2.205-1.654 3.593l.006 3.674.521.002c1.533.002 2.839-1.54 2.836-3.281v-.72s1.146-.623 2.774-.805c.77-.087 1.372-.006 1.892.15a2.15 2.15 0 0 1-.514-1.318c-.007-.225.362-.324.444 0 .29 1.302 1.035 1.859 2.898 2.418a3.84 3.84 0 0 0 1.057.021c.807-.111 1.615-.558 1.744-1.508.12-.89-.323-1.498-.776-2.12l-.109-.153a5.268 5.268 0 0 1-.48-.77 6.479 6.479 0 0 1-.293-.763c-.107-.318-.213-.634-.375-.922-2.136-3.785-5.939-4.958-9.611-4.91Zm8.058 6.287h.027c.29 0 .525.254.526.566 0 .312-.233.565-.524.565-.29 0-.527-.255-.527-.567 0-.302.22-.55.498-.564zm-6.035 4.728c.21 2.063-.963 2.934-.963 2.934 1.636-.098 3.485-1.592 3.392-3.51 0 0-.725-.105-2.429.576z" }) + ] + } + ); +}); + +exports.default = SiStudio3t; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.d.ts new file mode 100644 index 000000000..6c2966b5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17AF66"; +declare const SiStudio3t: IconType; +export { SiStudio3t as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.mjs new file mode 100644 index 000000000..7028c2aef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStudio3t.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17AF66"; +const SiStudio3t = React.forwardRef(function SiStudio3t2({ title = "Studio 3T", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.336 3.194c-3.37.044-8.92 1.972-11.414 7.826-.16.384-.3.777-.418 1.177A12.825 12.825 0 0 0 .1 14.094l-.004-.002c-.405 4.071.519 6.19 1.877 6.62.909.288 1.707-.099 2.646-.888 1.032-.867 1.436-1.523 1.32-2.426-.12-.932-1.126-1.61-2.037-1.853-1.318-.383-.787-1.228-.787-1.228s1.421 1.02 3.711.763c2.089-.234 2.486-.672 2.486-.672-.003-2.155 1.152-3.657 2.664-3.802-1.05.495-1.656 2.205-1.654 3.593l.006 3.674.521.002c1.533.002 2.839-1.54 2.836-3.281v-.72s1.146-.623 2.774-.805c.77-.087 1.372-.006 1.892.15a2.15 2.15 0 0 1-.514-1.318c-.007-.225.362-.324.444 0 .29 1.302 1.035 1.859 2.898 2.418a3.84 3.84 0 0 0 1.057.021c.807-.111 1.615-.558 1.744-1.508.12-.89-.323-1.498-.776-2.12l-.109-.153a5.268 5.268 0 0 1-.48-.77 6.479 6.479 0 0 1-.293-.763c-.107-.318-.213-.634-.375-.922-2.136-3.785-5.939-4.958-9.611-4.91Zm8.058 6.287h.027c.29 0 .525.254.526.566 0 .312-.233.565-.524.565-.29 0-.527-.255-.527-.567 0-.302.22-.55.498-.564zm-6.035 4.728c.21 2.063-.963 2.934-.963 2.934 1.636-.098 3.485-1.592 3.392-3.51 0 0-.725-.105-2.429.576z" }) + ] + } + ); +}); + +export { SiStudio3t as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.cjs new file mode 100644 index 000000000..9949e9560 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB7093"; +const SiStyledcomponents = React__namespace.forwardRef(function SiStyledcomponents2({ title = "styled-components", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.214 6.762l-.075.391c-.116.741-.074.953.244 1.228l.307.254-.318 1.418c-.19.846-.423 1.555-.571 1.788-.127.201-.275.497-.307.656-.053.19-.233.381-.508.55-.243.138-.72.508-1.058.805-.27.243-.456.392-.557.456l-.33.261c-.106.17-.166.307-.189.411-.023.107-.01.178.024.23.033.05.09.085.168.107a.954.954 0 00.282.023 3 3 0 00.632-.112c.07-.019.125-.037.173-.053.074-.091.245-.263.548-.562.804-.793 1.111-1.227.794-1.11-.117.042-.064-.064.137-.276.424-.413.667-1.037 1.175-2.994.402-1.545.402-1.567.698-1.567.139 0 .532.024.532.024V6.762h-.902zm3.839 3.165c-.064 0-.17.096-.233.202-.116.19.021.306 1.767 1.396 1.037.657 1.873 1.217 1.852 1.26-.021.031-.868.582-1.883 1.217-1.842 1.142-1.852 1.153-1.683 1.386.212.275 0 .37 2.391-1.122L24 13.155v-.836l-1.937-1.196c-1.047-.656-1.957-1.185-2.01-1.196zm-16.085.117c-.053 0-.963.54-2.01 1.185L0 12.425v.836l1.947 1.217c1.08.666 1.99 1.217 2.032 1.217.042 0 .127-.096.212-.212.127-.201.02-.286-1.768-1.418C.72 12.996.54 12.848.71 12.732c.106-.074.91-.572 1.778-1.111 1.979-1.217 1.873-1.133 1.714-1.387-.063-.105-.17-.2-.233-.19zm8.684.023c-.292-.002-.92.443-2.8 1.978-.081.193-.088.326-.051.412.024.059.068.1.129.13.06.03.138.048.224.055.171.015.373-.012.536-.044l.11-.025a.386.386 0 01.144-.118c.116-.064.603-.508 1.09-.984.857-.868 1.058-1.26.709-1.387a.24.24 0 00-.09-.017zm2.196.603c-.257.007-.72.305-1.513.938-.398.323-.65.497-.785.533l-.524.414c-.197.36-.226.583-.174.706a.25.25 0 00.138.134.644.644 0 00.24.045 2.18 2.18 0 00.58-.085 3.466 3.466 0 00.291-.092l.029-.012.053-.028c.1-.129.33-.372.618-.652.91-.878 1.375-1.502 1.28-1.735-.043-.113-.117-.17-.233-.166zm-2.424 1.08c-.074.008-.24.136-.539.398-.432.382-.903.602-1.066.504a3.97 3.97 0 01-.114.024c-.166.033-.373.06-.558.045a.708.708 0 01-.252-.063.337.337 0 01-.168-.17c-.037-.09-.037-.202.005-.345l-.65.534-1.471 1.217V15.867l4.82-3.797a.41.41 0 01.016-.123c.037-.134.035-.202-.023-.196zm2.074.639c-.073 0-.195.103-.39.31-.265.283-.682.557-.903.613l-.034.018a2.191 2.191 0 01-.11.042c-.06.02-.138.044-.228.068-.18.049-.404.094-.604.089a.732.732 0 01-.275-.054.344.344 0 01-.184-.18c-.058-.139-.035-.334.092-.611L7.61 16.033v1.205h1.868l3.962-3.112c.103-.114.258-.27.467-.465.56-.519.687-.698.687-.963 0-.206-.023-.31-.096-.31zm.943 1.95l-.339.338c-.19.18-.529.402-.761.497l-.046.02-.003.005-.01.01c-.009.007-.013.008-.02.011a3.432 3.432 0 01-.282.093 3.058 3.058 0 01-.65.115 1.035 1.035 0 01-.31-.027.364.364 0 01-.218-.144c-.048-.074-.062-.173-.035-.295a1.11 1.11 0 01.095-.25l-3.197 2.526h4.252l.508-.582c.698-.814 1.016-1.396 1.016-1.894z" }) + ] + } + ); +}); + +exports.default = SiStyledcomponents; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.d.ts new file mode 100644 index 000000000..7b91df9e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB7093"; +declare const SiStyledcomponents: IconType; +export { SiStyledcomponents as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.mjs new file mode 100644 index 000000000..59627be50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStyledcomponents.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB7093"; +const SiStyledcomponents = React.forwardRef(function SiStyledcomponents2({ title = "styled-components", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.214 6.762l-.075.391c-.116.741-.074.953.244 1.228l.307.254-.318 1.418c-.19.846-.423 1.555-.571 1.788-.127.201-.275.497-.307.656-.053.19-.233.381-.508.55-.243.138-.72.508-1.058.805-.27.243-.456.392-.557.456l-.33.261c-.106.17-.166.307-.189.411-.023.107-.01.178.024.23.033.05.09.085.168.107a.954.954 0 00.282.023 3 3 0 00.632-.112c.07-.019.125-.037.173-.053.074-.091.245-.263.548-.562.804-.793 1.111-1.227.794-1.11-.117.042-.064-.064.137-.276.424-.413.667-1.037 1.175-2.994.402-1.545.402-1.567.698-1.567.139 0 .532.024.532.024V6.762h-.902zm3.839 3.165c-.064 0-.17.096-.233.202-.116.19.021.306 1.767 1.396 1.037.657 1.873 1.217 1.852 1.26-.021.031-.868.582-1.883 1.217-1.842 1.142-1.852 1.153-1.683 1.386.212.275 0 .37 2.391-1.122L24 13.155v-.836l-1.937-1.196c-1.047-.656-1.957-1.185-2.01-1.196zm-16.085.117c-.053 0-.963.54-2.01 1.185L0 12.425v.836l1.947 1.217c1.08.666 1.99 1.217 2.032 1.217.042 0 .127-.096.212-.212.127-.201.02-.286-1.768-1.418C.72 12.996.54 12.848.71 12.732c.106-.074.91-.572 1.778-1.111 1.979-1.217 1.873-1.133 1.714-1.387-.063-.105-.17-.2-.233-.19zm8.684.023c-.292-.002-.92.443-2.8 1.978-.081.193-.088.326-.051.412.024.059.068.1.129.13.06.03.138.048.224.055.171.015.373-.012.536-.044l.11-.025a.386.386 0 01.144-.118c.116-.064.603-.508 1.09-.984.857-.868 1.058-1.26.709-1.387a.24.24 0 00-.09-.017zm2.196.603c-.257.007-.72.305-1.513.938-.398.323-.65.497-.785.533l-.524.414c-.197.36-.226.583-.174.706a.25.25 0 00.138.134.644.644 0 00.24.045 2.18 2.18 0 00.58-.085 3.466 3.466 0 00.291-.092l.029-.012.053-.028c.1-.129.33-.372.618-.652.91-.878 1.375-1.502 1.28-1.735-.043-.113-.117-.17-.233-.166zm-2.424 1.08c-.074.008-.24.136-.539.398-.432.382-.903.602-1.066.504a3.97 3.97 0 01-.114.024c-.166.033-.373.06-.558.045a.708.708 0 01-.252-.063.337.337 0 01-.168-.17c-.037-.09-.037-.202.005-.345l-.65.534-1.471 1.217V15.867l4.82-3.797a.41.41 0 01.016-.123c.037-.134.035-.202-.023-.196zm2.074.639c-.073 0-.195.103-.39.31-.265.283-.682.557-.903.613l-.034.018a2.191 2.191 0 01-.11.042c-.06.02-.138.044-.228.068-.18.049-.404.094-.604.089a.732.732 0 01-.275-.054.344.344 0 01-.184-.18c-.058-.139-.035-.334.092-.611L7.61 16.033v1.205h1.868l3.962-3.112c.103-.114.258-.27.467-.465.56-.519.687-.698.687-.963 0-.206-.023-.31-.096-.31zm.943 1.95l-.339.338c-.19.18-.529.402-.761.497l-.046.02-.003.005-.01.01c-.009.007-.013.008-.02.011a3.432 3.432 0 01-.282.093 3.058 3.058 0 01-.65.115 1.035 1.035 0 01-.31-.027.364.364 0 01-.218-.144c-.048-.074-.062-.173-.035-.295a1.11 1.11 0 01.095-.25l-3.197 2.526h4.252l.508-.582c.698-.814 1.016-1.396 1.016-1.894z" }) + ] + } + ); +}); + +export { SiStyledcomponents as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.cjs new file mode 100644 index 000000000..157570e8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#263238"; +const SiStylelint = React__namespace.forwardRef(function SiStylelint2({ title = "stylelint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.415.549L0 3.712 2.242 5.65.547 7.483l11.176 15.909h.114c-2.625-9.386-2.55-9.428-4.446-16.12l-.456.263c-.248.143-.451.026-.451-.26V4.084C5.98 2.321 5.586.958 5.47.549zm15.115 0c-.116.41-.51 1.772-1.014 3.535v3.191c0 .286-.203.403-.45.26l-.457-.264c-1.897 6.693-1.821 6.735-4.446 16.12-.017.07.06.09.114 0L23.453 7.484 21.757 5.65 24 3.712 20.585.549zm-11.496.75c-.118.007-.2.105-.2.271v5.127c0 .242.172.34.38.22l3.068-1.772a.336.336 0 01-.086-.222V3.287c0-.067.021-.129.056-.182L7.215 1.35a.333.333 0 00-.18-.051zm9.939 0a.331.331 0 00-.18.052l-3.038 1.753a.33.33 0 01.057.183v1.636a.335.335 0 01-.088.223l3.068 1.77c.21.122.38.023.38-.218V1.57c0-.166-.08-.264-.199-.27zm-6.35 1.863c-.101 0-.183.056-.183.125v1.636c0 .069.082.125.183.125h2.761c.101 0 .184-.056.184-.125V3.287c0-.07-.083-.125-.184-.125zm1.294 3.642a.829.829 0 00-.83.83.829.829 0 00.83.828.829.829 0 00.829-.829.829.829 0 00-.83-.829zm-.01 4.93a.829.829 0 00-.82.829.829.829 0 00.83.829.829.829 0 00.828-.83.829.829 0 00-.829-.828.829.829 0 00-.009 0zm.01 4.93a.829.829 0 00-.83.828.829.829 0 00.83.83.829.829 0 00.829-.83.829.829 0 00-.83-.829z" }) + ] + } + ); +}); + +exports.default = SiStylelint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.d.ts new file mode 100644 index 000000000..7aeb5d2fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#263238"; +declare const SiStylelint: IconType; +export { SiStylelint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.mjs new file mode 100644 index 000000000..0e49df5c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStylelint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#263238"; +const SiStylelint = React.forwardRef(function SiStylelint2({ title = "stylelint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.415.549L0 3.712 2.242 5.65.547 7.483l11.176 15.909h.114c-2.625-9.386-2.55-9.428-4.446-16.12l-.456.263c-.248.143-.451.026-.451-.26V4.084C5.98 2.321 5.586.958 5.47.549zm15.115 0c-.116.41-.51 1.772-1.014 3.535v3.191c0 .286-.203.403-.45.26l-.457-.264c-1.897 6.693-1.821 6.735-4.446 16.12-.017.07.06.09.114 0L23.453 7.484 21.757 5.65 24 3.712 20.585.549zm-11.496.75c-.118.007-.2.105-.2.271v5.127c0 .242.172.34.38.22l3.068-1.772a.336.336 0 01-.086-.222V3.287c0-.067.021-.129.056-.182L7.215 1.35a.333.333 0 00-.18-.051zm9.939 0a.331.331 0 00-.18.052l-3.038 1.753a.33.33 0 01.057.183v1.636a.335.335 0 01-.088.223l3.068 1.77c.21.122.38.023.38-.218V1.57c0-.166-.08-.264-.199-.27zm-6.35 1.863c-.101 0-.183.056-.183.125v1.636c0 .069.082.125.183.125h2.761c.101 0 .184-.056.184-.125V3.287c0-.07-.083-.125-.184-.125zm1.294 3.642a.829.829 0 00-.83.83.829.829 0 00.83.828.829.829 0 00.829-.829.829.829 0 00-.83-.829zm-.01 4.93a.829.829 0 00-.82.829.829.829 0 00.83.829.829.829 0 00.828-.83.829.829 0 00-.829-.828.829.829 0 00-.009 0zm.01 4.93a.829.829 0 00-.83.828.829.829 0 00.83.83.829.829 0 00.829-.83.829.829 0 00-.83-.829z" }) + ] + } + ); +}); + +export { SiStylelint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.cjs new file mode 100644 index 000000000..ae30d7d02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiStyleshare = React__namespace.forwardRef(function SiStyleshare2({ title = "StyleShare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.752 7.22a2.04 2.04 0 0 0-2.049 2.048c0 .455.146.89.414 1.241l2.628 3.662c.31.537.124 1.242-.414 1.572-.538.311-1.241.125-1.572-.414a1.154 1.154 0 0 1 .372-1.551l.042-.021c.206-.145.269-.414.124-.621a.467.467 0 0 0-.373-.207.395.395 0 0 0-.207.063l-.041.021c-.951.6-1.262 1.861-.662 2.813.601.953 1.862 1.264 2.813.662.952-.6 1.263-1.861.662-2.813-.041-.063-.082-.104-.104-.166l-2.627-3.683a1.095 1.095 0 0 1-.145-.58c0-.641.517-1.138 1.138-1.138.62 0 1.138.517 1.138 1.138 0 .394-.207.745-.538.973-.021 0-.021.021-.041.021-.207.145-.27.414-.124.621.082.124.228.186.372.207a.4.4 0 0 0 .207-.062l.041-.021c.952-.6 1.263-1.862.662-2.814a2.027 2.027 0 0 0-1.716-.951zM14.752 15.311a.578.578 0 0 0 .579-.58.578.578 0 1 0-1.158 0c0 .332.268.58.579.58zM14.752 8.689a.578.578 0 0 0-.579.58.578.578 0 1 0 1.158 0c-.02-.331-.268-.58-.579-.58zM12 0C5.379 0 0 5.379 0 12c0 6.622 5.379 12 12 12s12-5.379 12-12S18.621 0 12 0zM9.269 17.357a2.613 2.613 0 0 1-2.627-2.605 2.62 2.62 0 0 1 1.593-2.421L7.138 10.8c-.848-1.18-.579-2.814.579-3.642s2.814-.58 3.641.579c.828 1.159.58 2.814-.579 3.642a2.58 2.58 0 0 1-.517.29l1.138 1.615a2.599 2.599 0 0 1-.703 3.619 2.49 2.49 0 0 1-1.428.454zm7.655-4.074c.808 1.199.497 2.813-.703 3.619s-2.814.498-3.621-.703a2.601 2.601 0 0 1 .704-3.621c.145-.104.289-.165.435-.248l-1.117-1.531a2.633 2.633 0 0 1 .579-3.662 2.634 2.634 0 0 1 3.662.58 2.635 2.635 0 0 1-.579 3.662 2.56 2.56 0 0 1-.518.29l1.158 1.614zM8.255 9.827a1.099 1.099 0 0 1-.145-.579c0-.641.517-1.138 1.138-1.138.642 0 1.138.517 1.138 1.138 0 .394-.207.766-.538.973l-.041.021c-.207.145-.269.414-.125.621.083.124.228.186.373.207a.403.403 0 0 0 .207-.062l.041-.021a2.055 2.055 0 0 0 .683-2.814 2.055 2.055 0 0 0-2.814-.684 2.069 2.069 0 0 0-.682 2.814c.042.063.083.125.124.166l2.627 3.663c.104.166.145.373.145.578 0 .643-.497 1.139-1.138 1.16a1.153 1.153 0 0 1-1.158-1.139c0-.393.207-.766.538-.973l.042-.02c.207-.146.269-.414.124-.621a.467.467 0 0 0-.373-.207.393.393 0 0 0-.207.063l-.042.021c-.952.599-1.262 1.863-.662 2.814s1.862 1.262 2.814.662c.6-.373.972-1.035.972-1.738 0-.455-.145-.889-.414-1.242L8.255 9.827zM9.269 15.311c.31 0 .579-.248.579-.58a.58.58 0 0 0-1.159 0c0 .332.249.58.58.58zM9.269 8.689a.575.575 0 0 0-.58.559c0 .311.249.58.559.58.311 0 .58-.249.58-.559a.562.562 0 0 0-.559-.58z" }) + ] + } + ); +}); + +exports.default = SiStyleshare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.d.ts new file mode 100644 index 000000000..3e85e3859 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiStyleshare: IconType; +export { SiStyleshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.mjs new file mode 100644 index 000000000..d3c19626f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStyleshare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiStyleshare = React.forwardRef(function SiStyleshare2({ title = "StyleShare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.752 7.22a2.04 2.04 0 0 0-2.049 2.048c0 .455.146.89.414 1.241l2.628 3.662c.31.537.124 1.242-.414 1.572-.538.311-1.241.125-1.572-.414a1.154 1.154 0 0 1 .372-1.551l.042-.021c.206-.145.269-.414.124-.621a.467.467 0 0 0-.373-.207.395.395 0 0 0-.207.063l-.041.021c-.951.6-1.262 1.861-.662 2.813.601.953 1.862 1.264 2.813.662.952-.6 1.263-1.861.662-2.813-.041-.063-.082-.104-.104-.166l-2.627-3.683a1.095 1.095 0 0 1-.145-.58c0-.641.517-1.138 1.138-1.138.62 0 1.138.517 1.138 1.138 0 .394-.207.745-.538.973-.021 0-.021.021-.041.021-.207.145-.27.414-.124.621.082.124.228.186.372.207a.4.4 0 0 0 .207-.062l.041-.021c.952-.6 1.263-1.862.662-2.814a2.027 2.027 0 0 0-1.716-.951zM14.752 15.311a.578.578 0 0 0 .579-.58.578.578 0 1 0-1.158 0c0 .332.268.58.579.58zM14.752 8.689a.578.578 0 0 0-.579.58.578.578 0 1 0 1.158 0c-.02-.331-.268-.58-.579-.58zM12 0C5.379 0 0 5.379 0 12c0 6.622 5.379 12 12 12s12-5.379 12-12S18.621 0 12 0zM9.269 17.357a2.613 2.613 0 0 1-2.627-2.605 2.62 2.62 0 0 1 1.593-2.421L7.138 10.8c-.848-1.18-.579-2.814.579-3.642s2.814-.58 3.641.579c.828 1.159.58 2.814-.579 3.642a2.58 2.58 0 0 1-.517.29l1.138 1.615a2.599 2.599 0 0 1-.703 3.619 2.49 2.49 0 0 1-1.428.454zm7.655-4.074c.808 1.199.497 2.813-.703 3.619s-2.814.498-3.621-.703a2.601 2.601 0 0 1 .704-3.621c.145-.104.289-.165.435-.248l-1.117-1.531a2.633 2.633 0 0 1 .579-3.662 2.634 2.634 0 0 1 3.662.58 2.635 2.635 0 0 1-.579 3.662 2.56 2.56 0 0 1-.518.29l1.158 1.614zM8.255 9.827a1.099 1.099 0 0 1-.145-.579c0-.641.517-1.138 1.138-1.138.642 0 1.138.517 1.138 1.138 0 .394-.207.766-.538.973l-.041.021c-.207.145-.269.414-.125.621.083.124.228.186.373.207a.403.403 0 0 0 .207-.062l.041-.021a2.055 2.055 0 0 0 .683-2.814 2.055 2.055 0 0 0-2.814-.684 2.069 2.069 0 0 0-.682 2.814c.042.063.083.125.124.166l2.627 3.663c.104.166.145.373.145.578 0 .643-.497 1.139-1.138 1.16a1.153 1.153 0 0 1-1.158-1.139c0-.393.207-.766.538-.973l.042-.02c.207-.146.269-.414.124-.621a.467.467 0 0 0-.373-.207.393.393 0 0 0-.207.063l-.042.021c-.952.599-1.262 1.863-.662 2.814s1.862 1.262 2.814.662c.6-.373.972-1.035.972-1.738 0-.455-.145-.889-.414-1.242L8.255 9.827zM9.269 15.311c.31 0 .579-.248.579-.58a.58.58 0 0 0-1.159 0c0 .332.249.58.58.58zM9.269 8.689a.575.575 0 0 0-.58.559c0 .311.249.58.559.58.311 0 .58-.249.58-.559a.562.562 0 0 0-.559-.58z" }) + ] + } + ); +}); + +export { SiStyleshare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.cjs new file mode 100644 index 000000000..9f979c869 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiStylus = React__namespace.forwardRef(function SiStylus2({ title = "Stylus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.671 8.861c-.445-.354-1.697.239-2.05 1.118-.446 1.116-1.105 2.746-1.752 3.46-.683.75-.751.17-.683-.262.158-1.02 1.153-3.381 1.696-4.047-.202-.3-1.52-.256-2.435 1.166-.342.536-1.122 2.325-1.99 3.734-.19.305-.427.092-.243-.621.207-.825.818-3.089 1.604-4.871 2.064-.409 4.254-.696 5.933-.702.226-.06.377-.263 0-.275-1.447-.049-3.62.122-5.652.38.391-.782.812-1.404 1.239-1.667-.464-.293-1.404-.177-1.94.617a10.547 10.547 0 00-.702 1.244c-1.49.232-2.765.494-3.412.739-.671.256-.598 1.068-.19.915.85-.317 1.996-.647 3.272-.94-.812 1.831-1.447 3.992-1.599 4.87-.379 2.137.946 2.124 1.593 1.282.702-.922 2.166-4.163 2.392-4.504.067-.116.16-.055.11.048-1.635 3.265-1.496 4.529-.17 4.248.597-.128 1.629-1.153 1.897-1.684.055-.128.171-.116.146-.061-1.037 2.692-2.355 4.87-3.24 5.554-.805.616-1.404-.72 1.446-2.637.422-.286.226-.677-.25-.543-1.47.232-5.681 1.568-7.53 2.85-.142.098-.27.177-.264.379.006.116.208.073.306.012 2.393-1.435 4.351-1.995 6.597-2.466.03.013.067.019.097.007.104-.025.098.03.031.073a3.99 3.99 0 01-.342.177c-1.513.591-2.429 1.897-2.105 2.563.275.574 1.758.366 2.46-.012 1.72-.934 2.971-2.765 3.826-5.292.745-2.24 1.685-4.778 1.904-4.852zM3.7 16.094c.623-.745.696-1.514.214-2.942-.305-.903-.812-1.599-.44-2.16.397-.598 1.24-.019.538.78l.14.098c.842.098 1.257-1.056.628-1.386-1.66-.866-3.113.8-2.472 2.729.275.817.66 1.684.348 2.374-.268.592-.787.94-1.135.952-.726.037-.244-1.63.592-2.045.073-.036.177-.085.08-.207-1.032-.116-1.636.36-1.984 1.025-1.013 1.934 1.922 2.649 3.49.782zm19.974-2.064c-2.8-.366-8.842.122-11.509.831-.794.207-.574.628-.171.549.006 0 .177-.043.183-.043 2.191-.427 7.507-.8 10.607-.207.372.067 1.49-1.05.89-1.13zm-9.22-.329c.78-.39 1.94-2.808 2.702-4.131.055-.098.153-.02.098.048-1.928 3.32-1.11 3.705-.348 3.656 1.02-.061 1.96-1.526 2.167-1.856.086-.128.135-.024.086.068-.05.152-.226.421-.391.787-.232.519.012.72.214.812.317.153 1.183.055 1.317-.476-.865-.018 1.209-4.108 1.423-4.358-.58-.336-1.477.031-1.886.836-.872 1.727-1.605 3.119-2.063 3.143-.89.049 1.026-3.85 1.337-3.973-.19-.275-1.404-.159-2.082.89-.244.38-1.732 3.016-2.099 3.45-.647.769-.696.11-.513-.66.061-.262.165-.598.3-.97.427-.964.885-1.27 1.166-1.581 1.885-2.093 2.966-3.79 2.538-4.455-.378-.592-1.642-.33-2.453.89-1.496 2.241-2.874 5.31-3.051 6.715-.171 1.403.847 1.506 1.537 1.165zm7.372-3.296c.238.586.598 1.166.384 1.679-.177.439-.41.623-.665.665-.36.06-.263-1.068.354-1.404.055-.03.134-.177.06-.262-.78-.043-1.22.33-1.458.824-.69 1.447 1.563 1.842 2.667.42.44-.567.458-1.128.036-2.147-.267-.647-.676-1.13-.42-1.557.275-.45.933-.061.44.544l.11.06c.64.037.902-.817.414-1.03-1.287-.55-2.49.835-1.922 2.208zm-6.579-.811c.067-.153.11-.195.226-.452.67-1.477 1.514-3.033 2.093-3.759.36-.379.866.134-.049 1.538a14.165 14.165 0 01-1.812 2.264v.006c-.171.189-.324.348-.391.44-.049.06-.104.049-.067-.037z" }) + ] + } + ); +}); + +exports.default = SiStylus; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.d.ts new file mode 100644 index 000000000..2ca637c0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiStylus: IconType; +export { SiStylus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.mjs new file mode 100644 index 000000000..d7ffe2654 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiStylus.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiStylus = React.forwardRef(function SiStylus2({ title = "Stylus", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.671 8.861c-.445-.354-1.697.239-2.05 1.118-.446 1.116-1.105 2.746-1.752 3.46-.683.75-.751.17-.683-.262.158-1.02 1.153-3.381 1.696-4.047-.202-.3-1.52-.256-2.435 1.166-.342.536-1.122 2.325-1.99 3.734-.19.305-.427.092-.243-.621.207-.825.818-3.089 1.604-4.871 2.064-.409 4.254-.696 5.933-.702.226-.06.377-.263 0-.275-1.447-.049-3.62.122-5.652.38.391-.782.812-1.404 1.239-1.667-.464-.293-1.404-.177-1.94.617a10.547 10.547 0 00-.702 1.244c-1.49.232-2.765.494-3.412.739-.671.256-.598 1.068-.19.915.85-.317 1.996-.647 3.272-.94-.812 1.831-1.447 3.992-1.599 4.87-.379 2.137.946 2.124 1.593 1.282.702-.922 2.166-4.163 2.392-4.504.067-.116.16-.055.11.048-1.635 3.265-1.496 4.529-.17 4.248.597-.128 1.629-1.153 1.897-1.684.055-.128.171-.116.146-.061-1.037 2.692-2.355 4.87-3.24 5.554-.805.616-1.404-.72 1.446-2.637.422-.286.226-.677-.25-.543-1.47.232-5.681 1.568-7.53 2.85-.142.098-.27.177-.264.379.006.116.208.073.306.012 2.393-1.435 4.351-1.995 6.597-2.466.03.013.067.019.097.007.104-.025.098.03.031.073a3.99 3.99 0 01-.342.177c-1.513.591-2.429 1.897-2.105 2.563.275.574 1.758.366 2.46-.012 1.72-.934 2.971-2.765 3.826-5.292.745-2.24 1.685-4.778 1.904-4.852zM3.7 16.094c.623-.745.696-1.514.214-2.942-.305-.903-.812-1.599-.44-2.16.397-.598 1.24-.019.538.78l.14.098c.842.098 1.257-1.056.628-1.386-1.66-.866-3.113.8-2.472 2.729.275.817.66 1.684.348 2.374-.268.592-.787.94-1.135.952-.726.037-.244-1.63.592-2.045.073-.036.177-.085.08-.207-1.032-.116-1.636.36-1.984 1.025-1.013 1.934 1.922 2.649 3.49.782zm19.974-2.064c-2.8-.366-8.842.122-11.509.831-.794.207-.574.628-.171.549.006 0 .177-.043.183-.043 2.191-.427 7.507-.8 10.607-.207.372.067 1.49-1.05.89-1.13zm-9.22-.329c.78-.39 1.94-2.808 2.702-4.131.055-.098.153-.02.098.048-1.928 3.32-1.11 3.705-.348 3.656 1.02-.061 1.96-1.526 2.167-1.856.086-.128.135-.024.086.068-.05.152-.226.421-.391.787-.232.519.012.72.214.812.317.153 1.183.055 1.317-.476-.865-.018 1.209-4.108 1.423-4.358-.58-.336-1.477.031-1.886.836-.872 1.727-1.605 3.119-2.063 3.143-.89.049 1.026-3.85 1.337-3.973-.19-.275-1.404-.159-2.082.89-.244.38-1.732 3.016-2.099 3.45-.647.769-.696.11-.513-.66.061-.262.165-.598.3-.97.427-.964.885-1.27 1.166-1.581 1.885-2.093 2.966-3.79 2.538-4.455-.378-.592-1.642-.33-2.453.89-1.496 2.241-2.874 5.31-3.051 6.715-.171 1.403.847 1.506 1.537 1.165zm7.372-3.296c.238.586.598 1.166.384 1.679-.177.439-.41.623-.665.665-.36.06-.263-1.068.354-1.404.055-.03.134-.177.06-.262-.78-.043-1.22.33-1.458.824-.69 1.447 1.563 1.842 2.667.42.44-.567.458-1.128.036-2.147-.267-.647-.676-1.13-.42-1.557.275-.45.933-.061.44.544l.11.06c.64.037.902-.817.414-1.03-1.287-.55-2.49.835-1.922 2.208zm-6.579-.811c.067-.153.11-.195.226-.452.67-1.477 1.514-3.033 2.093-3.759.36-.379.866.134-.049 1.538a14.165 14.165 0 01-1.812 2.264v.006c-.171.189-.324.348-.391.44-.049.06-.104.049-.067-.037z" }) + ] + } + ); +}); + +export { SiStylus as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.cjs new file mode 100644 index 000000000..946cf7b9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#013C74"; +const SiSubaru = React__namespace.forwardRef(function SiSubaru2({ title = "Subaru", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4.983c3.004 0 6.224.612 8.786 2.239C22.451 8.286 24 9.9 24 12.002c0 2.456-2.097 4.242-4.106 5.287-2.391 1.238-5.216 1.728-7.894 1.728-3.003 0-6.217-.605-8.78-2.238C1.556 15.714 0 14.101 0 12.003 0 9.536 2.092 7.757 4.106 6.71 6.504 5.474 9.323 4.983 12 4.983zm-.025.746c-2.793 0-5.802.523-8.225 1.983-1.524.912-3.03 2.347-3.03 4.253 0 2.239 2.04 3.806 3.864 4.706 2.258 1.102 4.897 1.53 7.391 1.53 2.798 0 5.809-.523 8.232-1.983 1.517-.918 3.029-2.346 3.029-4.253 0-2.243-2.035-3.813-3.864-4.705-2.258-1.104-4.898-1.53-7.397-1.53zm-10.54 4.686l4.597-.784 1.384-3.003L8.794 9.63l4.596.784-4.596.792-1.378 3.01-1.384-3.01zm10.106 2.289l2.028-.356.605-1.359.606 1.359 2.028.356-2.028.35-.606 1.36-.605-1.36zm4.196-3.621l2.028-.35.605-1.365.606 1.364 2.028.35-2.028.357-.606 1.36-.606-1.36zM13.57 15.51l2.02-.35.607-1.365.612 1.365 2.027.35-2.027.357-.612 1.36-.606-1.36zm-6.23.491l2.028-.35.612-1.366.605 1.366 2.028.35-2.028.357-.605 1.359-.612-1.359zm10.196-3.353l2.022-.357.605-1.359.612 1.359 2.028.357-2.028.35-.612 1.357-.606-1.357Z" }) + ] + } + ); +}); + +exports.default = SiSubaru; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.d.ts new file mode 100644 index 000000000..372fcd828 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#013C74"; +declare const SiSubaru: IconType; +export { SiSubaru as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.mjs new file mode 100644 index 000000000..7be60c8da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubaru.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#013C74"; +const SiSubaru = React.forwardRef(function SiSubaru2({ title = "Subaru", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 4.983c3.004 0 6.224.612 8.786 2.239C22.451 8.286 24 9.9 24 12.002c0 2.456-2.097 4.242-4.106 5.287-2.391 1.238-5.216 1.728-7.894 1.728-3.003 0-6.217-.605-8.78-2.238C1.556 15.714 0 14.101 0 12.003 0 9.536 2.092 7.757 4.106 6.71 6.504 5.474 9.323 4.983 12 4.983zm-.025.746c-2.793 0-5.802.523-8.225 1.983-1.524.912-3.03 2.347-3.03 4.253 0 2.239 2.04 3.806 3.864 4.706 2.258 1.102 4.897 1.53 7.391 1.53 2.798 0 5.809-.523 8.232-1.983 1.517-.918 3.029-2.346 3.029-4.253 0-2.243-2.035-3.813-3.864-4.705-2.258-1.104-4.898-1.53-7.397-1.53zm-10.54 4.686l4.597-.784 1.384-3.003L8.794 9.63l4.596.784-4.596.792-1.378 3.01-1.384-3.01zm10.106 2.289l2.028-.356.605-1.359.606 1.359 2.028.356-2.028.35-.606 1.36-.605-1.36zm4.196-3.621l2.028-.35.605-1.365.606 1.364 2.028.35-2.028.357-.606 1.36-.606-1.36zM13.57 15.51l2.02-.35.607-1.365.612 1.365 2.027.35-2.027.357-.612 1.36-.606-1.36zm-6.23.491l2.028-.35.612-1.366.605 1.366 2.028.35-2.028.357-.605 1.359-.612-1.359zm10.196-3.353l2.022-.357.605-1.359.612 1.359 2.028.357-2.028.35-.612 1.357-.606-1.357Z" }) + ] + } + ); +}); + +export { SiSubaru as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.cjs new file mode 100644 index 000000000..6b8ed6265 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF9800"; +const SiSublimetext = React__namespace.forwardRef(function SiSublimetext2({ title = "Sublime Text", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.953.004a.397.397 0 0 0-.18.017L3.225 5.585c-.175.055-.323.214-.402.398a.42.42 0 0 0-.06.22v5.726a.42.42 0 0 0 .06.22c.079.183.227.341.402.397l7.454 2.364-7.454 2.363c-.255.08-.463.374-.463.655v5.688c0 .282.208.444.463.363l17.55-5.565c.237-.075.426-.336.452-.6.003-.022.013-.04.013-.065V12.06c0-.281-.208-.575-.463-.656L13.4 9.065l7.375-2.339c.255-.08.462-.375.462-.656V.384c0-.211-.117-.355-.283-.38z" }) + ] + } + ); +}); + +exports.default = SiSublimetext; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.d.ts new file mode 100644 index 000000000..7dab0572d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF9800"; +declare const SiSublimetext: IconType; +export { SiSublimetext as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.mjs new file mode 100644 index 000000000..6f4718e8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSublimetext.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF9800"; +const SiSublimetext = React.forwardRef(function SiSublimetext2({ title = "Sublime Text", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.953.004a.397.397 0 0 0-.18.017L3.225 5.585c-.175.055-.323.214-.402.398a.42.42 0 0 0-.06.22v5.726a.42.42 0 0 0 .06.22c.079.183.227.341.402.397l7.454 2.364-7.454 2.363c-.255.08-.463.374-.463.655v5.688c0 .282.208.444.463.363l17.55-5.565c.237-.075.426-.336.452-.6.003-.022.013-.04.013-.065V12.06c0-.281-.208-.575-.463-.656L13.4 9.065l7.375-2.339c.255-.08.462-.375.462-.656V.384c0-.211-.117-.355-.283-.38z" }) + ] + } + ); +}); + +export { SiSublimetext as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.cjs new file mode 100644 index 000000000..e391cbdef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6719"; +const SiSubstack = React__namespace.forwardRef(function SiSubstack2({ title = "Substack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.539 8.242H1.46V5.406h21.08v2.836zM1.46 10.812V24L12 18.11 22.54 24V10.812H1.46zM22.54 0H1.46v2.836h21.08V0z" }) + ] + } + ); +}); + +exports.default = SiSubstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.d.ts new file mode 100644 index 000000000..d36d06639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6719"; +declare const SiSubstack: IconType; +export { SiSubstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.mjs new file mode 100644 index 000000000..c22e874a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6719"; +const SiSubstack = React.forwardRef(function SiSubstack2({ title = "Substack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.539 8.242H1.46V5.406h21.08v2.836zM1.46 10.812V24L12 18.11 22.54 24V10.812H1.46zM22.54 0H1.46v2.836h21.08V0z" }) + ] + } + ); +}); + +export { SiSubstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.cjs new file mode 100644 index 000000000..4367e2948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC2424"; +const SiSubtitleedit = React__namespace.forwardRef(function SiSubtitleedit2({ title = "Subtitle Edit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.858.02C1.744.23.16 1.91.02 4.09c-.038.598-.02 15.896.02 16.156.3 1.996 1.752 3.455 3.7 3.719.418.057 16.38.04 16.674-.018 1.433-.28 2.614-1.164 3.156-2.363.2-.443.304-.776.377-1.208.047-.282.075-16.036.029-16.509A4.266 4.266 0 0 0 20.348.048C20.065.008 4.261-.02 3.858.02m7.237 6.15c.707.707 1.285 1.299 1.285 1.315 0 .024-.57.03-2.79.03-3.106 0-2.95-.008-3.286.16-1.145.58-1.175 2.2-.052 2.8.34.18.265.174 1.725.192 1.404.018 1.475.023 1.976.153 1.495.388 2.688 1.64 3.015 3.164a4.2 4.2 0 0 1-3.547 5.057c-.347.046-6.605.05-6.605.004 0-.016.573-.602 1.273-1.302L5.36 16.47l1.87-.01c2.07-.009 1.97-.002 2.326-.172a1.566 1.566 0 0 0 .421-2.532c-.431-.43-.571-.461-2.05-.462-1.802 0-2.364-.125-3.253-.721-3.078-2.066-2.152-6.837 1.475-7.597.38-.08.522-.086 2.11-.089l1.551-.003 1.284 1.285m10.067-1.256c0 .017-.578.608-1.284 1.315l-1.284 1.286h-4.427l-1.296-1.298a68.614 68.608 0 0 1-1.296-1.315c0-.01 2.157-.018 4.793-.018 3.813 0 4.794.006 4.794.03m-2.562 7.06-.006 1.308h-4.449l-.033-.094c-.336-.942-.695-1.527-1.346-2.194a4.325 4.325 0 0 1-.292-.313c0-.01 1.38-.016 3.066-.016h3.066l-.006 1.309m1.278 5.78a67.498 67.492 0 0 1 1.284 1.302c0 .01-1.955.018-4.344.018-2.389 0-4.344-.008-4.344-.018 0-.01.103-.12.228-.243a5.453 5.453 0 0 0 1.38-2.185l.053-.16h4.458l1.285 1.285" }) + ] + } + ); +}); + +exports.default = SiSubtitleedit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.d.ts new file mode 100644 index 000000000..c4e134cab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC2424"; +declare const SiSubtitleedit: IconType; +export { SiSubtitleedit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.mjs new file mode 100644 index 000000000..126ffdf3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubtitleedit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC2424"; +const SiSubtitleedit = React.forwardRef(function SiSubtitleedit2({ title = "Subtitle Edit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.858.02C1.744.23.16 1.91.02 4.09c-.038.598-.02 15.896.02 16.156.3 1.996 1.752 3.455 3.7 3.719.418.057 16.38.04 16.674-.018 1.433-.28 2.614-1.164 3.156-2.363.2-.443.304-.776.377-1.208.047-.282.075-16.036.029-16.509A4.266 4.266 0 0 0 20.348.048C20.065.008 4.261-.02 3.858.02m7.237 6.15c.707.707 1.285 1.299 1.285 1.315 0 .024-.57.03-2.79.03-3.106 0-2.95-.008-3.286.16-1.145.58-1.175 2.2-.052 2.8.34.18.265.174 1.725.192 1.404.018 1.475.023 1.976.153 1.495.388 2.688 1.64 3.015 3.164a4.2 4.2 0 0 1-3.547 5.057c-.347.046-6.605.05-6.605.004 0-.016.573-.602 1.273-1.302L5.36 16.47l1.87-.01c2.07-.009 1.97-.002 2.326-.172a1.566 1.566 0 0 0 .421-2.532c-.431-.43-.571-.461-2.05-.462-1.802 0-2.364-.125-3.253-.721-3.078-2.066-2.152-6.837 1.475-7.597.38-.08.522-.086 2.11-.089l1.551-.003 1.284 1.285m10.067-1.256c0 .017-.578.608-1.284 1.315l-1.284 1.286h-4.427l-1.296-1.298a68.614 68.608 0 0 1-1.296-1.315c0-.01 2.157-.018 4.793-.018 3.813 0 4.794.006 4.794.03m-2.562 7.06-.006 1.308h-4.449l-.033-.094c-.336-.942-.695-1.527-1.346-2.194a4.325 4.325 0 0 1-.292-.313c0-.01 1.38-.016 3.066-.016h3.066l-.006 1.309m1.278 5.78a67.498 67.492 0 0 1 1.284 1.302c0 .01-1.955.018-4.344.018-2.389 0-4.344-.008-4.344-.018 0-.01.103-.12.228-.243a5.453 5.453 0 0 0 1.38-2.185l.053-.16h4.458l1.285 1.285" }) + ] + } + ); +}); + +export { SiSubtitleedit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.cjs new file mode 100644 index 000000000..34f8b0a7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#809CC9"; +const SiSubversion = React__namespace.forwardRef(function SiSubversion2({ title = "Subversion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 20.753v-6.306c-3.285 1.296-7.362 2.556-12.23 3.786-4.534 1.145-8.458 1.97-11.77 2.475v.045h24zM0 14.078v5.133c3.738-.55 7.116-1.206 10.13-1.967 2.962-.748 5.245-1.475 6.847-2.18 1.602-.703 2.34-1.297 2.22-1.78-.107-.42-.846-.635-2.217-.645-.703.01-1.67.06-2.904.15-1.236.09-2.774.234-4.61.426-2.85.304-5.216.537-7.1.694-.896.075-1.685.132-2.366.17zm1.035 2.95c.06 0 .114.025.16.07.046.046.07.103.07.166 0 .066-.024.12-.07.168-.047.045-.104.066-.164.066-.032 0-.064-.006-.092-.018-.03-.012-.054-.03-.075-.05-.023-.014-.04-.044-.05-.074 0-.015-.016-.045-.016-.09 0-.06.03-.12.075-.165s.105-.06.18-.06zm.81 0c.063 0 .117.025.165.07.045.046.066.103.066.166 0 .066-.022.12-.067.168-.06.045-.106.066-.18.066-.03 0-.06-.006-.09-.018s-.06-.03-.076-.05c-.03-.014-.045-.044-.06-.074-.015-.015-.015-.045-.015-.09 0-.06.014-.12.06-.165s.104-.06.164-.06zm-.81-1.51c.06 0 .114.022.16.07.046.045.07.1.07.165 0 .064-.024.12-.07.165s-.1.07-.164.07c-.065 0-.122-.024-.167-.07-.045-.045-.07-.102-.07-.165 0-.067.016-.123.06-.168s.106-.068.166-.068zm.81 0c.063 0 .117.022.165.07.045.045.066.1.066.165 0 .064-.022.12-.067.165-.06.045-.106.07-.18.07s-.12-.024-.166-.07c-.045-.045-.075-.102-.075-.165 0-.067.014-.123.06-.168s.104-.068.164-.068zM24 4.597V9.41c-1.635.1-3.68.277-6.138.534-2.49.27-4.52.48-6.093.615-1.576.15-2.713.226-3.41.24-1.363.03-2.09-.15-2.195-.554-.105-.45.705-1.05 2.445-1.77 1.74-.735 4.05-1.47 6.9-2.19 2.505-.63 5.34-1.185 8.49-1.65zm-.855-1.35c-3.255.605-6.627 1.35-10.114 2.23C7.587 6.852 3.244 8.22 0 9.573V3.248h23.146z" }) + ] + } + ); +}); + +exports.default = SiSubversion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.d.ts new file mode 100644 index 000000000..e6ce24ae1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#809CC9"; +declare const SiSubversion: IconType; +export { SiSubversion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.mjs new file mode 100644 index 000000000..3717e7c7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSubversion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#809CC9"; +const SiSubversion = React.forwardRef(function SiSubversion2({ title = "Subversion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 20.753v-6.306c-3.285 1.296-7.362 2.556-12.23 3.786-4.534 1.145-8.458 1.97-11.77 2.475v.045h24zM0 14.078v5.133c3.738-.55 7.116-1.206 10.13-1.967 2.962-.748 5.245-1.475 6.847-2.18 1.602-.703 2.34-1.297 2.22-1.78-.107-.42-.846-.635-2.217-.645-.703.01-1.67.06-2.904.15-1.236.09-2.774.234-4.61.426-2.85.304-5.216.537-7.1.694-.896.075-1.685.132-2.366.17zm1.035 2.95c.06 0 .114.025.16.07.046.046.07.103.07.166 0 .066-.024.12-.07.168-.047.045-.104.066-.164.066-.032 0-.064-.006-.092-.018-.03-.012-.054-.03-.075-.05-.023-.014-.04-.044-.05-.074 0-.015-.016-.045-.016-.09 0-.06.03-.12.075-.165s.105-.06.18-.06zm.81 0c.063 0 .117.025.165.07.045.046.066.103.066.166 0 .066-.022.12-.067.168-.06.045-.106.066-.18.066-.03 0-.06-.006-.09-.018s-.06-.03-.076-.05c-.03-.014-.045-.044-.06-.074-.015-.015-.015-.045-.015-.09 0-.06.014-.12.06-.165s.104-.06.164-.06zm-.81-1.51c.06 0 .114.022.16.07.046.045.07.1.07.165 0 .064-.024.12-.07.165s-.1.07-.164.07c-.065 0-.122-.024-.167-.07-.045-.045-.07-.102-.07-.165 0-.067.016-.123.06-.168s.106-.068.166-.068zm.81 0c.063 0 .117.022.165.07.045.045.066.1.066.165 0 .064-.022.12-.067.165-.06.045-.106.07-.18.07s-.12-.024-.166-.07c-.045-.045-.075-.102-.075-.165 0-.067.014-.123.06-.168s.104-.068.164-.068zM24 4.597V9.41c-1.635.1-3.68.277-6.138.534-2.49.27-4.52.48-6.093.615-1.576.15-2.713.226-3.41.24-1.363.03-2.09-.15-2.195-.554-.105-.45.705-1.05 2.445-1.77 1.74-.735 4.05-1.47 6.9-2.19 2.505-.63 5.34-1.185 8.49-1.65zm-.855-1.35c-3.255.605-6.627 1.35-10.114 2.23C7.587 6.852 3.244 8.22 0 9.573V3.248h23.146z" }) + ] + } + ); +}); + +export { SiSubversion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.cjs new file mode 100644 index 000000000..5f1bee7a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1177AA"; +const SiSuckless = React__namespace.forwardRef(function SiSuckless2({ title = "suckless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4h24v4H4v2h20v10H0v-4h20v-2H0z" }) + ] + } + ); +}); + +exports.default = SiSuckless; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.d.ts new file mode 100644 index 000000000..a3a8fa5f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1177AA"; +declare const SiSuckless: IconType; +export { SiSuckless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.mjs new file mode 100644 index 000000000..8792acb8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuckless.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1177AA"; +const SiSuckless = React.forwardRef(function SiSuckless2({ title = "suckless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4h24v4H4v2h20v10H0v-4h20v-2H0z" }) + ] + } + ); +}); + +export { SiSuckless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSui.cjs new file mode 100644 index 000000000..eb51bf7e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4DA2FF"; +const SiSui = React__namespace.forwardRef(function SiSui2({ title = "Sui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.636 10.009a7.16 7.16 0 0 1 1.565 4.474 7.2 7.2 0 0 1-1.608 4.53l-.087.106-.023-.135a7 7 0 0 0-.07-.349c-.502-2.21-2.142-4.106-4.84-5.642-1.823-1.034-2.866-2.278-3.14-3.693-.177-.915-.046-1.834.209-2.62.254-.787.631-1.446.953-1.843l1.05-1.284a.46.46 0 0 1 .713 0l5.28 6.456zm1.66-1.283L12.26.123a.336.336 0 0 0-.52 0L4.704 8.726l-.023.029a9.33 9.33 0 0 0-2.07 5.872C2.612 19.803 6.816 24 12 24s9.388-4.197 9.388-9.373a9.32 9.32 0 0 0-2.07-5.871zM6.389 9.981l.63-.77.018.142q.023.17.055.34c.408 2.136 1.862 3.917 4.294 5.297 2.114 1.203 3.345 2.586 3.7 4.103a5.3 5.3 0 0 1 .109 1.801l-.004.034-.03.014A7.2 7.2 0 0 1 12 21.67c-3.976 0-7.2-3.218-7.2-7.188 0-1.705.594-3.27 1.587-4.503z" }) + ] + } + ); +}); + +exports.default = SiSui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSui.d.ts new file mode 100644 index 000000000..e03ded299 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4DA2FF"; +declare const SiSui: IconType; +export { SiSui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSui.mjs new file mode 100644 index 000000000..73ead880f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4DA2FF"; +const SiSui = React.forwardRef(function SiSui2({ title = "Sui", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.636 10.009a7.16 7.16 0 0 1 1.565 4.474 7.2 7.2 0 0 1-1.608 4.53l-.087.106-.023-.135a7 7 0 0 0-.07-.349c-.502-2.21-2.142-4.106-4.84-5.642-1.823-1.034-2.866-2.278-3.14-3.693-.177-.915-.046-1.834.209-2.62.254-.787.631-1.446.953-1.843l1.05-1.284a.46.46 0 0 1 .713 0l5.28 6.456zm1.66-1.283L12.26.123a.336.336 0 0 0-.52 0L4.704 8.726l-.023.029a9.33 9.33 0 0 0-2.07 5.872C2.612 19.803 6.816 24 12 24s9.388-4.197 9.388-9.373a9.32 9.32 0 0 0-2.07-5.871zM6.389 9.981l.63-.77.018.142q.023.17.055.34c.408 2.136 1.862 3.917 4.294 5.297 2.114 1.203 3.345 2.586 3.7 4.103a5.3 5.3 0 0 1 .109 1.801l-.004.034-.03.014A7.2 7.2 0 0 1 12 21.67c-3.976 0-7.2-3.218-7.2-7.188 0-1.705.594-3.27 1.587-4.503z" }) + ] + } + ); +}); + +export { SiSui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.cjs new file mode 100644 index 000000000..3f0f6842a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F06060"; +const SiSuitest = React__namespace.forwardRef(function SiSuitest2({ title = "Suitest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.9 10.026c-1.039-2.2-2.744-2.62-5.531-1.358l-.038.017C7.65 9.91 6.833 11.542 7.84 13.673c.779 1.653 1.988 2.96 5.53 1.358l.051-.022c3.669-1.676 3.267-3.313 2.48-4.983m-1.438 1.102a.5.5 0 0 1-.199.037.5.5 0 0 1-.456-.302c-.085-.2-.24-.381-.425-.498a.9.9 0 0 0-.557-.14.497.497 0 0 1-.554-.432.494.494 0 0 1 .443-.542c.408-.046.837.058 1.208.289.36.224.648.56.812.948a.487.487 0 0 1-.27.64zm8.84-4.68a2 2 0 0 0-.308-.255c-.015-1.27-1.062-1.764-1.415-1.931-.684-.323-.723-.514-.738-.595-.228-1.139-.969-1.897-1.982-2.03a2 2 0 0 0-1.095.156c-.514.235-.913.687-1.152 1.31-.35.903-.707 1.872-.973 2.87-2.114-.954-4.29-.974-6.307-.053a8.7 8.7 0 0 0-1.18.657A6.4 6.4 0 0 0 6.75 7.875L5.156 2.14a.62.62 0 0 0-.787-.363.6.6 0 0 0-.372.769l1.545 5.88-3.415-.717a.616.616 0 0 0-.73.463c-.07.324.141.645.473.714l3.733.784c-.16.323-.253.555-.281.627l-.008.02-.007.021a6.07 6.07 0 0 0-.178 3.495c-.557-.049-1.13-.088-1.728-.048a7.7 7.7 0 0 0-2.116.44 2 2 0 0 0-.17.068c-.58.266-.962.727-1.079 1.3-.12.593.063 1.217.518 1.757.116.138.235.242.347.323-.118 1.563 1.002 2.196 1.679 2.578q.127.071.264.151c.205.12.402.204.569.273.145.595.506 1.47 1.677 1.675.405.071.807.023 1.161-.139.527-.24.93-.71 1.201-1.398.347-.879.656-1.794.918-2.72 2.095 1.125 4.267 1.188 6.46.186a8 8 0 0 0 .261-.124c.19-.091 1.59-.799 2.42-1.99.708-1.017 1.133-1.862 1.298-2.582a7.8 7.8 0 0 0 .09-3.075c.363.008.708-.02 1.019-.046l.168-.015c.828-.067 1.484-.132 2.406-.383a2.009 2.009 0 0 0 1.483-1.652c.109-.704-.145-1.438-.676-1.964ZM22.3 8.838q-.071.033-.154.055c-.797.217-1.36.28-2.193.346-.406.033-.822.079-1.233.05-.493-.033-.857-.078-1.056.012-.183.083-.227.283-.102.71a6.44 6.44 0 0 1 .077 3.26c-.134.585-.539 1.343-1.118 2.176-.693.993-1.983 1.615-1.983 1.615q-.116.058-.233.11c-1.9.868-3.79.804-5.647-.285-.422-.246-.703-.332-.91-.238-.203.092-.335.358-.46.817-.266.97-.584 1.931-.952 2.867-.12.305-.307.635-.61.772a.77.77 0 0 1-.467.053c-.605-.106-.65-.568-.753-1.103-.072-.375-.62-.42-1.08-.692-.808-.475-1.423-.684-1.317-1.632.04-.362.25-.689-.096-.863-.25-.125-.371-.068-.55-.28-.395-.47-.338-.95.182-1.187q.045-.02.09-.036a6.5 6.5 0 0 1 1.792-.37c.65-.045 1.313.027 1.967.084.31.027.547.008.711-.07.298-.135.362-.448.21-.976-.309-1.08-.388-2.04.032-3.262 0 0 .824-2.135 2.39-3.17a8 8 0 0 1 1.023-.572c1.84-.84 3.713-.717 5.47.119.464.221.758.307.967.21.208-.094.333-.365.457-.86.254-.992.609-1.963.978-2.92.109-.28.286-.553.558-.677a.83.83 0 0 1 .454-.062c.578.075.822.542.92 1.028.107.534.431 1.015 1.437 1.49.445.21.712.407.69.875-.031.704-.275.64.057.794.33.152.374.023.628.274.501.494.414 1.27-.176 1.54zm0 0" }) + ] + } + ); +}); + +exports.default = SiSuitest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.d.ts new file mode 100644 index 000000000..5153445d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F06060"; +declare const SiSuitest: IconType; +export { SiSuitest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.mjs new file mode 100644 index 000000000..f8bde341a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuitest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F06060"; +const SiSuitest = React.forwardRef(function SiSuitest2({ title = "Suitest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.9 10.026c-1.039-2.2-2.744-2.62-5.531-1.358l-.038.017C7.65 9.91 6.833 11.542 7.84 13.673c.779 1.653 1.988 2.96 5.53 1.358l.051-.022c3.669-1.676 3.267-3.313 2.48-4.983m-1.438 1.102a.5.5 0 0 1-.199.037.5.5 0 0 1-.456-.302c-.085-.2-.24-.381-.425-.498a.9.9 0 0 0-.557-.14.497.497 0 0 1-.554-.432.494.494 0 0 1 .443-.542c.408-.046.837.058 1.208.289.36.224.648.56.812.948a.487.487 0 0 1-.27.64zm8.84-4.68a2 2 0 0 0-.308-.255c-.015-1.27-1.062-1.764-1.415-1.931-.684-.323-.723-.514-.738-.595-.228-1.139-.969-1.897-1.982-2.03a2 2 0 0 0-1.095.156c-.514.235-.913.687-1.152 1.31-.35.903-.707 1.872-.973 2.87-2.114-.954-4.29-.974-6.307-.053a8.7 8.7 0 0 0-1.18.657A6.4 6.4 0 0 0 6.75 7.875L5.156 2.14a.62.62 0 0 0-.787-.363.6.6 0 0 0-.372.769l1.545 5.88-3.415-.717a.616.616 0 0 0-.73.463c-.07.324.141.645.473.714l3.733.784c-.16.323-.253.555-.281.627l-.008.02-.007.021a6.07 6.07 0 0 0-.178 3.495c-.557-.049-1.13-.088-1.728-.048a7.7 7.7 0 0 0-2.116.44 2 2 0 0 0-.17.068c-.58.266-.962.727-1.079 1.3-.12.593.063 1.217.518 1.757.116.138.235.242.347.323-.118 1.563 1.002 2.196 1.679 2.578q.127.071.264.151c.205.12.402.204.569.273.145.595.506 1.47 1.677 1.675.405.071.807.023 1.161-.139.527-.24.93-.71 1.201-1.398.347-.879.656-1.794.918-2.72 2.095 1.125 4.267 1.188 6.46.186a8 8 0 0 0 .261-.124c.19-.091 1.59-.799 2.42-1.99.708-1.017 1.133-1.862 1.298-2.582a7.8 7.8 0 0 0 .09-3.075c.363.008.708-.02 1.019-.046l.168-.015c.828-.067 1.484-.132 2.406-.383a2.009 2.009 0 0 0 1.483-1.652c.109-.704-.145-1.438-.676-1.964ZM22.3 8.838q-.071.033-.154.055c-.797.217-1.36.28-2.193.346-.406.033-.822.079-1.233.05-.493-.033-.857-.078-1.056.012-.183.083-.227.283-.102.71a6.44 6.44 0 0 1 .077 3.26c-.134.585-.539 1.343-1.118 2.176-.693.993-1.983 1.615-1.983 1.615q-.116.058-.233.11c-1.9.868-3.79.804-5.647-.285-.422-.246-.703-.332-.91-.238-.203.092-.335.358-.46.817-.266.97-.584 1.931-.952 2.867-.12.305-.307.635-.61.772a.77.77 0 0 1-.467.053c-.605-.106-.65-.568-.753-1.103-.072-.375-.62-.42-1.08-.692-.808-.475-1.423-.684-1.317-1.632.04-.362.25-.689-.096-.863-.25-.125-.371-.068-.55-.28-.395-.47-.338-.95.182-1.187q.045-.02.09-.036a6.5 6.5 0 0 1 1.792-.37c.65-.045 1.313.027 1.967.084.31.027.547.008.711-.07.298-.135.362-.448.21-.976-.309-1.08-.388-2.04.032-3.262 0 0 .824-2.135 2.39-3.17a8 8 0 0 1 1.023-.572c1.84-.84 3.713-.717 5.47.119.464.221.758.307.967.21.208-.094.333-.365.457-.86.254-.992.609-1.963.978-2.92.109-.28.286-.553.558-.677a.83.83 0 0 1 .454-.062c.578.075.822.542.92 1.028.107.534.431 1.015 1.437 1.49.445.21.712.407.69.875-.031.704-.275.64.057.794.33.152.374.023.628.274.501.494.414 1.27-.176 1.54zm0 0" }) + ] + } + ); +}); + +export { SiSuitest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.cjs new file mode 100644 index 000000000..d238aba74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000099"; +const SiSumologic = React__namespace.forwardRef(function SiSumologic2({ title = "Sumo Logic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.922 10.756v2.513h-.586v-.266c-.134.216-.379.341-.737.341-.595 0-.89-.308-.89-.799v-1.79h.64v1.62c0 .262.142.416.417.416.32 0 .516-.184.516-.52v-1.515zm4.161.757v1.756h-.64v-1.564c0-.3-.121-.483-.4-.483s-.441.208-.441.5v1.547h-.64v-1.564c0-.32-.134-.483-.4-.483-.283 0-.441.208-.441.5v1.547H5.48v-2.513h.595v.279c.146-.242.387-.362.716-.362.32 0 .561.133.699.37.17-.245.424-.37.753-.37.536 0 .84.32.84.84zm5.143 1.756h-.64V9.774h.64zm6.949 0h-.641v-2.513h.64zm-.654-2.892h.662v-.611h-.662zm3.055 2.035c-.263.279-.441.387-.683.387-.287 0-.49-.167-.582-.425v-.732c.095-.262.3-.428.59-.428.213 0 .383.074.654.328l.4-.395c-.321-.35-.633-.478-1.053-.478-.587 0-1.04.307-1.22.823v1.032c.175.516.62.82 1.203.82.453 0 .765-.15 1.115-.583zm-22.257-.69c-.175-.038-.3-.072-.37-.088-.088-.025-.154-.058-.188-.104v-.192c.059-.091.2-.15.396-.15.27 0 .457.063.753.296l.345-.416c-.35-.291-.649-.395-1.082-.395-.499 0-.844.204-.982.495v.632c.109.212.358.333.858.441.178.042.3.071.37.084.091.029.175.066.22.133v.22c-.062.1-.212.154-.407.154a.977.977 0 01-.408-.079 1.854 1.854 0 01-.454-.295L0 12.87c.4.353.736.474 1.215.474.512 0 .874-.196 1.011-.508V12.2c-.116-.237-.395-.362-.907-.479zm9.445-1.053c-.578 0-1.032.312-1.215.81v1.058c.183.5.641.811 1.215.811.574 0 1.028-.312 1.211-.807v-1.065c-.187-.495-.64-.807-1.21-.807zm.591 1.71c-.1.266-.312.424-.595.424s-.495-.158-.6-.424v-.741c.1-.266.313-.429.6-.429s.491.163.59.429zm4.585-1.71c-.578 0-1.032.312-1.219.81v1.058c.187.5.641.811 1.22.811.578 0 1.027-.312 1.21-.807v-1.065c-.183-.495-.636-.807-1.21-.807zm.591 1.71c-.1.266-.312.424-.59.424a.62.62 0 01-.6-.424v-.741c.1-.266.312-.429.6-.429.286 0 .49.163.59.429zm2.85-1.623v.279c-.162-.242-.416-.362-.765-.362-.475 0-.857.29-1.024.753v1.036c.163.462.545.749 1.024.749.32 0 .562-.108.732-.32v.2c0 .415-.241.61-.616.61-.278 0-.507-.082-.873-.299l-.313.462c.354.237.77.366 1.195.37.707 0 1.227-.378 1.227-1.086v-2.392zm-.079 1.527c-.095.237-.295.387-.545.387a.574.574 0 01-.545-.387v-.687a.572.572 0 01.545-.382c.254 0 .45.145.545.382z" }) + ] + } + ); +}); + +exports.default = SiSumologic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.d.ts new file mode 100644 index 000000000..dd7ad75fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000099"; +declare const SiSumologic: IconType; +export { SiSumologic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.mjs new file mode 100644 index 000000000..467071a28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSumologic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000099"; +const SiSumologic = React.forwardRef(function SiSumologic2({ title = "Sumo Logic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.922 10.756v2.513h-.586v-.266c-.134.216-.379.341-.737.341-.595 0-.89-.308-.89-.799v-1.79h.64v1.62c0 .262.142.416.417.416.32 0 .516-.184.516-.52v-1.515zm4.161.757v1.756h-.64v-1.564c0-.3-.121-.483-.4-.483s-.441.208-.441.5v1.547h-.64v-1.564c0-.32-.134-.483-.4-.483-.283 0-.441.208-.441.5v1.547H5.48v-2.513h.595v.279c.146-.242.387-.362.716-.362.32 0 .561.133.699.37.17-.245.424-.37.753-.37.536 0 .84.32.84.84zm5.143 1.756h-.64V9.774h.64zm6.949 0h-.641v-2.513h.64zm-.654-2.892h.662v-.611h-.662zm3.055 2.035c-.263.279-.441.387-.683.387-.287 0-.49-.167-.582-.425v-.732c.095-.262.3-.428.59-.428.213 0 .383.074.654.328l.4-.395c-.321-.35-.633-.478-1.053-.478-.587 0-1.04.307-1.22.823v1.032c.175.516.62.82 1.203.82.453 0 .765-.15 1.115-.583zm-22.257-.69c-.175-.038-.3-.072-.37-.088-.088-.025-.154-.058-.188-.104v-.192c.059-.091.2-.15.396-.15.27 0 .457.063.753.296l.345-.416c-.35-.291-.649-.395-1.082-.395-.499 0-.844.204-.982.495v.632c.109.212.358.333.858.441.178.042.3.071.37.084.091.029.175.066.22.133v.22c-.062.1-.212.154-.407.154a.977.977 0 01-.408-.079 1.854 1.854 0 01-.454-.295L0 12.87c.4.353.736.474 1.215.474.512 0 .874-.196 1.011-.508V12.2c-.116-.237-.395-.362-.907-.479zm9.445-1.053c-.578 0-1.032.312-1.215.81v1.058c.183.5.641.811 1.215.811.574 0 1.028-.312 1.211-.807v-1.065c-.187-.495-.64-.807-1.21-.807zm.591 1.71c-.1.266-.312.424-.595.424s-.495-.158-.6-.424v-.741c.1-.266.313-.429.6-.429s.491.163.59.429zm4.585-1.71c-.578 0-1.032.312-1.219.81v1.058c.187.5.641.811 1.22.811.578 0 1.027-.312 1.21-.807v-1.065c-.183-.495-.636-.807-1.21-.807zm.591 1.71c-.1.266-.312.424-.59.424a.62.62 0 01-.6-.424v-.741c.1-.266.312-.429.6-.429.286 0 .49.163.59.429zm2.85-1.623v.279c-.162-.242-.416-.362-.765-.362-.475 0-.857.29-1.024.753v1.036c.163.462.545.749 1.024.749.32 0 .562-.108.732-.32v.2c0 .415-.241.61-.616.61-.278 0-.507-.082-.873-.299l-.313.462c.354.237.77.366 1.195.37.707 0 1.227-.378 1.227-1.086v-2.392zm-.079 1.527c-.095.237-.295.387-.545.387a.574.574 0 01-.545-.387v-.687a.572.572 0 01.545-.382c.254 0 .45.145.545.382z" }) + ] + } + ); +}); + +export { SiSumologic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.cjs new file mode 100644 index 000000000..f9b5e1d26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSuno = React__namespace.forwardRef(function SiSuno2({ title = "Suno", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5 0C20.642 0 24 5.373 24 12h-9c0 6.627-3.358 12-7.5 12C3.358 24 0 18.627 0 12h9c0-6.627 3.358-12 7.5-12Z" }) + ] + } + ); +}); + +exports.default = SiSuno; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.d.ts new file mode 100644 index 000000000..de70f7577 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSuno: IconType; +export { SiSuno as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.mjs new file mode 100644 index 000000000..736b47e40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuno.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSuno = React.forwardRef(function SiSuno2({ title = "Suno", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.5 0C20.642 0 24 5.373 24 12h-9c0 6.627-3.358 12-7.5 12C3.358 24 0 18.627 0 12h9c0-6.627 3.358-12 7.5-12Z" }) + ] + } + ); +}); + +export { SiSuno as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.cjs new file mode 100644 index 000000000..d7df432ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA291C"; +const SiSunrise = React__namespace.forwardRef(function SiSunrise2({ title = "Sunrise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0011 0A12 12 0 1 0 24 11.9989 12.0114 12.0114 0 0 0 12.0012 0m0 2.4639a9.53 9.53 0 0 1 9.5134 8.8891 9.53 9.53 0 0 1-.8622 4.6487H3.349a9.53 9.53 0 0 1 .6162-9.14 9.53 9.53 0 0 1 8.036-4.398" }) + ] + } + ); +}); + +exports.default = SiSunrise; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.d.ts new file mode 100644 index 000000000..ad67936a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA291C"; +declare const SiSunrise: IconType; +export { SiSunrise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.mjs new file mode 100644 index 000000000..302e3da41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSunrise.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA291C"; +const SiSunrise = React.forwardRef(function SiSunrise2({ title = "Sunrise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0011 0A12 12 0 1 0 24 11.9989 12.0114 12.0114 0 0 0 12.0012 0m0 2.4639a9.53 9.53 0 0 1 9.5134 8.8891 9.53 9.53 0 0 1-.8622 4.6487H3.349a9.53 9.53 0 0 1 .6162-9.14 9.53 9.53 0 0 1 8.036-4.398" }) + ] + } + ); +}); + +export { SiSunrise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.cjs new file mode 100644 index 000000000..94f852575 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3FCF8E"; +const SiSupabase = React__namespace.forwardRef(function SiSupabase2({ title = "Supabase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9 1.036c-.015-.986-1.26-1.41-1.874-.637L.764 12.05C-.33 13.427.65 15.455 2.409 15.455h9.579l.113 7.51c.014.985 1.259 1.408 1.873.636l9.262-11.653c1.093-1.375.113-3.403-1.645-3.403h-9.642z" }) + ] + } + ); +}); + +exports.default = SiSupabase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.d.ts new file mode 100644 index 000000000..184aa4768 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3FCF8E"; +declare const SiSupabase: IconType; +export { SiSupabase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.mjs new file mode 100644 index 000000000..4c999835c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupabase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3FCF8E"; +const SiSupabase = React.forwardRef(function SiSupabase2({ title = "Supabase", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9 1.036c-.015-.986-1.26-1.41-1.874-.637L.764 12.05C-.33 13.427.65 15.455 2.409 15.455h9.579l.113 7.51c.014.985 1.259 1.408 1.873.636l9.262-11.653c1.093-1.375.113-3.403-1.645-3.403h-9.642z" }) + ] + } + ); +}); + +export { SiSupabase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.cjs new file mode 100644 index 000000000..7ff576efc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSupercrease = React__namespace.forwardRef(function SiSupercrease2({ title = "Supercrease", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.13 5.553-.265.472s-.047.082-.082.15c-.045.014-4.562 1.305-5.752 1.651-.705.197-1.214.345-1.33.381-.115-.185-.38-.635-.38-.635l-1.087.324-1.224.358-.219.07s-.022.126-.059.299c-.08.439-.218 1.213-.242 1.305-.023.023-.149.22-.334.463-.173.254-.405.555-.601.843-.162.22-.312.415-.416.565L0 11.996s.058-.012.139-.035l1.017-.174c-.092.52-.279 1.525-.279 1.525l.209.29.601.83.417.566c.042 0 .086.004.128.012-.173.358-.486 1.005-.613 1.248a.396.396 0 0 1-.037.092l1.041.888.717.612.37.312.116.092.322.055-.011.023 3.027.115s-.553-.645-.59-.681c.705.023 2.37.093 2.37.093l-1.4-1.617-.09-.115s-.418.197-.602.277c-.012-.011-.012-.035-.024-.058l-.057.037-.082-.21-.127-.368.198-.266.717.232.61.21.694.218 1.446-.195.242-.035s.323-.265.623-.508c.093-.08.186-.163.267-.232.255.462.866 1.604 1.004 1.859-.058.139-.423 1.098-.423 1.098l1.523.08.799.035 1.744.092-.3-.704 1.628.08-.592-1.398-.844-.531s-.172.037-.195.037v-.15c.011-.012.045-.036.069-.059l.126-.103s.07-1.317.094-1.963a1.86 1.86 0 0 0 .01-.233c.082.035.269.117.512.233 1.317.6 4.574 2.078 4.99 2.275l.265-.174 1.133-.717-.336-.174.163-.38.347-.832.924-2.252-.785.705s-1.318 1.131-1.688 1.443c-.011-.011-.127-.092-.127-.092l.67-1.605-.935.277c-.195.081-.497.197-.705.29 0-.024-.38-.843-.52-1.132v-.011c.347-.185 1.387-.766 1.387-.766l-.035-.068-.416-.809-.59-1.164-.324-.623s-.753.808-.971 1.039c-.093-.046-.335-.196-.67-.393-.15-.08-.311-.185-.484-.289-1.029-.6-2.439-1.42-3.075-1.8-.207-.116-.335-.198-.335-.198s.023.094.046.198l.092.46a1.911 1.911 0 0 1-.277.024c-.254.035-.542.057-.797.08-.208.023-.369.035-.473.047-.058-.093-.207-.346-.38-.635h-.005c-.229-.373-.472-.773-.472-.773Zm.05.633 3.558 5.86-1.113.507-.127.058-3.324 1.537-.98.45-.987-3.198 2.857-5.007.116-.207Zm-.239.252-1.949 3.42-.865 1.517-.01.016 1.024 3.316.572-.262.5-.226.182.341.05.094-1.076.893-1.539.207-2.1-.639-1.212-.37.12-.198-.722-.047 1.752-2.584-2.02-3.383 7.293-2.095Zm3.016.375 4.031 2.36-2.093 2.253-.204.219-.615.584-.053-.258-1.02-4.961-.007-.035-.039-.162Zm-.039.251.998 4.795.02.092-.092.111-2.916-4.802 1.99-.196Zm-10.719.868.328.552.795 1.33 1.25 2.1-1.763 2.598-.116.156-1.775-.08H2.893l-.045-.002-.516-.02-1.041-1.414.338-1.802.006-.028.504-2.793 2.06-.597Zm15.678.404.973 1.9-2.334 1.274-2.645 1.326-.088.043v-.004l-.236.121.154-.166.059-.062.015-.018 3.036-3.264.273-.293.035-.037.758-.82Zm-18.121 1.82-.205 1.125-.696.125.9-1.25Zm17.742.914.79 1.686.097.367-.2.162-2.091-1.469.46-.236.602-.328.342-.182Zm-1.486.79 2.611 1.84.29.206.68.477.038.025.246.176.49.354-.797.476-5.588-2.543 2.03-1.012Zm-2.202.244-.437.548-.021.01.01.006-.425.533-.277-.574 1.15-.524Zm5.827.07-.69 1.648-.002.006-.691-.494.223-.18-.002-.004 1.101-.927.06-.05Zm-.305.146-.879.745-.088-.329-.006-.023.973-.393Zm-5.604.016-.005.176-.08.033-.116.045.202-.254Zm7.569.06-1.002 2.39-.58-.417.074-.092 1.465-1.826.043-.055Zm-7.438.141-.074.082-.103.111-.131-.062.25-.102.058-.029Zm-1.273.125.082.168.252.524.515-.649.188.09-.297.318.051.063.129-.069.19-.093-.114 2.299-.129.1v-.017l-1.119.938-.209.027v-.234l.197-.162.172-3.262.092-.04Zm-.176.08-.152 2.881-.016.3-.197.163-1.053.861-.201.04-1.242-2.313-.125-.234-.137-.255 3.123-1.443Zm8.502.004-1.14 1.424-.202-.274 1.342-1.15Zm-1.744.762.55.726-.072.086-.634-.443.156-.37Zm-16.307 1.07.639.041-.064.102-.008.013-.035.057-.563.947-.226.37-.053.085-.01.018-.023.037-.004.008-.014.021-.025.05-1.479-1.651 1.738.076.127-.174ZM2.8 14.67h.084l1.504 1.678-2.324-.174.736-1.504Zm2.676.146 1.132.344-.265.438-.084.14-.801-.894.018-.028Zm-.06.102.75.84-1.196-.09.445-.75Zm9.96.652v.582l-.877.153.877-.735Zm-10.453.176 1.322.1.026.029.015-.025.06.004.307.902-.527.25-.338.16-.162-.174-.1.045-.914-.771.248-.418.063-.102Zm1.4.041.014.04-.023-.026.01-.014Zm9.535.363.63.39.322.759-1.538-.076-.037-.102-.69-.445-.044.008-.373.066v-.305l.09-.015-.008.008 1.244-.215v-.004l.404-.069Zm-1.812.041v.573l-.889.154.889-.727ZM2.12 16.26l2.346.175.025.03.016-.027.043.003.318.907-.935.441-1.813-1.53Zm5.264.244.773.887-2.258-.088-.058-.073 1.543-.726Zm7.144.258.633.4.006.012.045.127h.008l.26.623-2.989-.145.272-.707.988-.174.373-.064.404-.072Zm-8.922.33.243.28.01.01.519.598-2.455-.093 1.015-.473.577-.28.091-.042Z" }) + ] + } + ); +}); + +exports.default = SiSupercrease; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.d.ts new file mode 100644 index 000000000..d6ce9709c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSupercrease: IconType; +export { SiSupercrease as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.mjs new file mode 100644 index 000000000..108db308c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupercrease.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSupercrease = React.forwardRef(function SiSupercrease2({ title = "Supercrease", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.13 5.553-.265.472s-.047.082-.082.15c-.045.014-4.562 1.305-5.752 1.651-.705.197-1.214.345-1.33.381-.115-.185-.38-.635-.38-.635l-1.087.324-1.224.358-.219.07s-.022.126-.059.299c-.08.439-.218 1.213-.242 1.305-.023.023-.149.22-.334.463-.173.254-.405.555-.601.843-.162.22-.312.415-.416.565L0 11.996s.058-.012.139-.035l1.017-.174c-.092.52-.279 1.525-.279 1.525l.209.29.601.83.417.566c.042 0 .086.004.128.012-.173.358-.486 1.005-.613 1.248a.396.396 0 0 1-.037.092l1.041.888.717.612.37.312.116.092.322.055-.011.023 3.027.115s-.553-.645-.59-.681c.705.023 2.37.093 2.37.093l-1.4-1.617-.09-.115s-.418.197-.602.277c-.012-.011-.012-.035-.024-.058l-.057.037-.082-.21-.127-.368.198-.266.717.232.61.21.694.218 1.446-.195.242-.035s.323-.265.623-.508c.093-.08.186-.163.267-.232.255.462.866 1.604 1.004 1.859-.058.139-.423 1.098-.423 1.098l1.523.08.799.035 1.744.092-.3-.704 1.628.08-.592-1.398-.844-.531s-.172.037-.195.037v-.15c.011-.012.045-.036.069-.059l.126-.103s.07-1.317.094-1.963a1.86 1.86 0 0 0 .01-.233c.082.035.269.117.512.233 1.317.6 4.574 2.078 4.99 2.275l.265-.174 1.133-.717-.336-.174.163-.38.347-.832.924-2.252-.785.705s-1.318 1.131-1.688 1.443c-.011-.011-.127-.092-.127-.092l.67-1.605-.935.277c-.195.081-.497.197-.705.29 0-.024-.38-.843-.52-1.132v-.011c.347-.185 1.387-.766 1.387-.766l-.035-.068-.416-.809-.59-1.164-.324-.623s-.753.808-.971 1.039c-.093-.046-.335-.196-.67-.393-.15-.08-.311-.185-.484-.289-1.029-.6-2.439-1.42-3.075-1.8-.207-.116-.335-.198-.335-.198s.023.094.046.198l.092.46a1.911 1.911 0 0 1-.277.024c-.254.035-.542.057-.797.08-.208.023-.369.035-.473.047-.058-.093-.207-.346-.38-.635h-.005c-.229-.373-.472-.773-.472-.773Zm.05.633 3.558 5.86-1.113.507-.127.058-3.324 1.537-.98.45-.987-3.198 2.857-5.007.116-.207Zm-.239.252-1.949 3.42-.865 1.517-.01.016 1.024 3.316.572-.262.5-.226.182.341.05.094-1.076.893-1.539.207-2.1-.639-1.212-.37.12-.198-.722-.047 1.752-2.584-2.02-3.383 7.293-2.095Zm3.016.375 4.031 2.36-2.093 2.253-.204.219-.615.584-.053-.258-1.02-4.961-.007-.035-.039-.162Zm-.039.251.998 4.795.02.092-.092.111-2.916-4.802 1.99-.196Zm-10.719.868.328.552.795 1.33 1.25 2.1-1.763 2.598-.116.156-1.775-.08H2.893l-.045-.002-.516-.02-1.041-1.414.338-1.802.006-.028.504-2.793 2.06-.597Zm15.678.404.973 1.9-2.334 1.274-2.645 1.326-.088.043v-.004l-.236.121.154-.166.059-.062.015-.018 3.036-3.264.273-.293.035-.037.758-.82Zm-18.121 1.82-.205 1.125-.696.125.9-1.25Zm17.742.914.79 1.686.097.367-.2.162-2.091-1.469.46-.236.602-.328.342-.182Zm-1.486.79 2.611 1.84.29.206.68.477.038.025.246.176.49.354-.797.476-5.588-2.543 2.03-1.012Zm-2.202.244-.437.548-.021.01.01.006-.425.533-.277-.574 1.15-.524Zm5.827.07-.69 1.648-.002.006-.691-.494.223-.18-.002-.004 1.101-.927.06-.05Zm-.305.146-.879.745-.088-.329-.006-.023.973-.393Zm-5.604.016-.005.176-.08.033-.116.045.202-.254Zm7.569.06-1.002 2.39-.58-.417.074-.092 1.465-1.826.043-.055Zm-7.438.141-.074.082-.103.111-.131-.062.25-.102.058-.029Zm-1.273.125.082.168.252.524.515-.649.188.09-.297.318.051.063.129-.069.19-.093-.114 2.299-.129.1v-.017l-1.119.938-.209.027v-.234l.197-.162.172-3.262.092-.04Zm-.176.08-.152 2.881-.016.3-.197.163-1.053.861-.201.04-1.242-2.313-.125-.234-.137-.255 3.123-1.443Zm8.502.004-1.14 1.424-.202-.274 1.342-1.15Zm-1.744.762.55.726-.072.086-.634-.443.156-.37Zm-16.307 1.07.639.041-.064.102-.008.013-.035.057-.563.947-.226.37-.053.085-.01.018-.023.037-.004.008-.014.021-.025.05-1.479-1.651 1.738.076.127-.174ZM2.8 14.67h.084l1.504 1.678-2.324-.174.736-1.504Zm2.676.146 1.132.344-.265.438-.084.14-.801-.894.018-.028Zm-.06.102.75.84-1.196-.09.445-.75Zm9.96.652v.582l-.877.153.877-.735Zm-10.453.176 1.322.1.026.029.015-.025.06.004.307.902-.527.25-.338.16-.162-.174-.1.045-.914-.771.248-.418.063-.102Zm1.4.041.014.04-.023-.026.01-.014Zm9.535.363.63.39.322.759-1.538-.076-.037-.102-.69-.445-.044.008-.373.066v-.305l.09-.015-.008.008 1.244-.215v-.004l.404-.069Zm-1.812.041v.573l-.889.154.889-.727ZM2.12 16.26l2.346.175.025.03.016-.027.043.003.318.907-.935.441-1.813-1.53Zm5.264.244.773.887-2.258-.088-.058-.073 1.543-.726Zm7.144.258.633.4.006.012.045.127h.008l.26.623-2.989-.145.272-.707.988-.174.373-.064.404-.072Zm-8.922.33.243.28.01.01.519.598-2.455-.093 1.015-.473.577-.28.091-.042Z" }) + ] + } + ); +}); + +export { SiSupercrease as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.cjs new file mode 100644 index 000000000..5898c685b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#151F6D"; +const SiSupermicro = React__namespace.forwardRef(function SiSupermicro2({ title = "Supermicro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.937 5.842c-.489-.007-.988.002-1.494.03-3.99.218-7.831 1.51-10.236 3.443-.469.379-1.18 1.133-1.453 1.543-.539.8-.754 1.444-.754 2.252 0 1.55 1.026 2.85 3.006 3.798 1.218.586 2.67.97 4.392 1.164 1.203.133 3.198.114 4.568-.046 3.963-.465 7.517-1.921 9.52-3.893.242-.242.77-.851.789-.914 0-.004.105.031.234.074.554.188 1.148-.078 1.398-.629.133-.28.121-.732-.023-1.025a1.149 1.149 0 0 0-.621-.57l-.188-.067v-.199c0-.855-.422-1.727-1.203-2.484-1.568-1.52-4.513-2.421-7.935-2.477Zm-.156.395c.638-.008 1.257.013 1.836.064 2.276.2 4.213.782 5.587 1.684.504.332 1.176 1.002 1.418 1.416.234.402.375.848.403 1.27l.02.331-.24.004a1.076 1.076 0 0 0-.823.41c-.196.25-.254.422-.25.778 0 .336.082.556.289.795l.129.144-.348.352c-.683.69-1.46 1.242-2.482 1.75-2.585 1.296-6.064 1.974-9.258 1.806-2.178-.113-3.916-.502-5.365-1.197-1.527-.73-2.478-1.723-2.72-2.82-.613-2.776 3.139-5.614 8.593-6.508a21.81 21.81 0 0 1 3.21-.28ZM23 7.784l-.01.002c-.03 0-.059 0-.088.01-.04.007-.079.026-.117.042a.44.44 0 0 0-.138.125c-.016.027-.035.052-.043.082a.35.35 0 0 0-.032.122.468.468 0 0 0 .016.152.436.436 0 0 0 .174.228.483.483 0 0 0 .187.067.456.456 0 0 0 .248-.047.408.408 0 0 0 .215-.281c.005-.035.013-.069.008-.104.001-.026-.006-.054-.01-.08a.435.435 0 0 0-.191-.26.485.485 0 0 0-.21-.058H23zm-.031.086h.06a.292.292 0 0 1 .112.033c.02.008.037.02.054.035.023.02.048.041.063.068a.3.3 0 0 1 .037.075c.012.027.013.057.02.086-.002.031.004.064-.004.095-.003.033-.018.062-.032.092-.006.019-.019.034-.029.05a.297.297 0 0 1-.076.075c-.017.015-.04.02-.059.03-.022.006-.044.016-.068.017-.006 0-.011 0-.018.002-.03 0-.061.004-.091-.002a.297.297 0 0 1-.154-.078.22.22 0 0 1-.044-.047c-.018-.02-.026-.045-.039-.068-.009-.02-.012-.042-.017-.063-.008-.027-.006-.056-.006-.084-.002-.039.01-.077.021-.113.014-.026.024-.054.043-.076.015-.024.039-.04.057-.059a.317.317 0 0 1 .066-.041c.023-.007.045-.018.069-.021a.141.141 0 0 1 .035-.006zm.047.12-.055.003h-.053l-.02.004-.019.002-.015.002-.016.001v.415h.094v-.17l.037.002.035.002.012.003.013.002.012.012.004.008.004.007.002.01.002.008.011.038.006.014.006.014h.104l-.006-.012-.008-.035-.01-.037-.006-.022-.006-.02-.007-.015-.008-.013-.01-.012-.01-.01-.015-.008-.014-.01v-.003l.012-.006.013-.006.012-.006.012-.008.01-.01.007-.013.006-.014.002-.02v-.019l-.002-.013-.002-.014-.008-.014-.008-.013-.01-.012-.01-.01-.015-.006-.015-.008-.018-.004-.018-.005-.029-.002zm-.055.07h.053l.017.005.016.006.014.012.01.01.001.007.004.01v.021l-.006.014-.005.01-.01.006-.01.01-.018.003-.013.008-.04.002h-.04v-.121l.013-.002zM4.203 10.318c-.071.004-.104.024-.104.054 0 .098-.058.102-.285.024a1.043 1.043 0 0 0-.703-.024.83.83 0 0 0-.574.825c0 .406.176.605.887 1.011.175.102.375.245.437.319.192.214.149.445-.094.547-.417.171-.863-.11-.94-.602-.024-.156-.032-.162-.157-.162h-.133v1.17h.133c.097 0 .137-.02.152-.074.02-.075.024-.075.262 0 .718.222 1.32-.048 1.445-.649.102-.48-.117-.775-.875-1.19-.57-.312-.73-.534-.52-.734a.436.436 0 0 1 .454-.117c.261.067.511.41.511.703 0 .055.032.07.137.07h.137V10.32h-.17zm15.046.584-.039.002c-.078 0-.12.023-.136.078-.024.074-.032.074-.149.012-.172-.086-.625-.106-.851-.032-.246.078-.551.364-.684.633-.086.176-.113.29-.125.555-.02.41.078.709.312.963.512.554 1.465.449 1.813-.2l.074-.144-.094-.074-.093-.078-.18.203c-.27.312-.524.379-.852.234-.32-.148-.48-.58-.398-1.088.086-.554.367-.812.797-.734.18.035.387.242.457.46.05.145.074.169.18.18l.125.012-.02-.246c-.061-.704-.058-.739-.137-.736zm-8.394.033v.14c0 .137.002.141.135.141.113 0 .144.02.176.102.023.054.039.45.039.875s-.016.818-.04.873c-.03.082-.062.101-.175.101-.129 0-.135.008-.135.137v.137h1.17v-.133c0-.129-.008-.137-.145-.148l-.148-.012-.012-.403c-.004-.218.004-.396.02-.392.015 0 .203.244.414.545l.379.543h1.523v-.137c0-.125-.012-.137-.11-.137-.19 0-.202-.043-.202-.703l.004-.603.347.779c.465 1.046.43 1.042.863.059l.329-.74.011.552c.004.305 0 .578-.008.606-.011.027-.082.05-.16.05-.129 0-.136.008-.136.137v.137h2.224v-.137c0-.125-.008-.137-.117-.137-.074 0-.129-.027-.156-.074-.043-.082-.055-1.635-.016-1.79.02-.067.055-.087.156-.087.125 0 .133-.008.133-.136v-.137h-1.865l-.34.77c-.187.425-.355.786-.37.802-.017.016-.189-.322-.384-.76l-.355-.793-.395-.011-.39-.012v.14c0 .125.008.137.117.137.094 0 .129.024.156.102.024.054.04.45.04.875s-.016.818-.04.873c-.027.082-.062.101-.164.101a.565.565 0 0 1-.254-.078c-.117-.07-.414-.432-.57-.697-.063-.11-.063-.11.078-.203.195-.129.281-.258.309-.473a.642.642 0 0 0-.329-.648c-.18-.102-.203-.106-.894-.117zm8.55 0v.137c0 .132.008.14.149.152l.145.012v1.912l-.145.012c-.14.011-.148.02-.148.148v.133h1.169v-.133c0-.129-.007-.137-.144-.148l-.149-.012-.011-.41c-.012-.488-.04-.5.453.195l.344.488.378.012.38.012v-.133c0-.125-.012-.137-.149-.156-.172-.032-.293-.149-.594-.575-.187-.265-.199-.29-.136-.33.039-.02.128-.09.199-.148.324-.277.238-.844-.157-1.055-.144-.074-.23-.086-.87-.097zm-14.876.008v.136c0 .13.008.137.133.137.086 0 .14.024.156.063.012.035.024.383.024.777 0 .937.058 1.111.449 1.318.125.067.227.082.508.082.48 0 .677-.101.86-.445.063-.117.079-.252.095-.955l.02-.82.237-.012c.223-.012.243-.004.266.078.04.149.027 1.658-.016 1.764-.027.078-.062.101-.156.101-.11 0-.117.012-.117.137v.137h1.133v-.133c0-.129-.008-.137-.145-.149l-.148-.011-.012-.38-.012-.376.23.002c.403.004.638-.127.766-.443.168-.403-.066-.844-.519-.97-.078-.019-.602-.038-1.164-.038H6.092v.133c0 .128.007.136.148.148l.145.012.011.734c.012.86-.012.947-.281 1.08-.27.129-.543.082-.676-.11-.062-.093-.07-.193-.07-.903v-.801l.148-.012c.137-.012.145-.02.145-.148v-.133h-.566Zm4.295 0v.133c0 .128.008.136.148.148l.145.012.012.933c.011 1.008.011.998-.196.998-.097 0-.11.016-.11.137v.137h1.9l.12-.39.118-.391h-.13c-.1 0-.14.027-.21.136-.156.254-.243.293-.63.293h-.347v-.78h.293c.203 0 .3.017.309.048.011.027.027.096.039.154.02.09.047.11.14.11h.118v-.975h.12c.094 0 .118-.012.098-.063a1.93 1.93 0 0 1-.023-.351v-.29H9.78Zm7.173.275c.035 0 .078.003.135.006l.246.012v1.912h-.254c-.234 0-.253-.008-.277-.098-.043-.152-.039-1.623.004-1.736.026-.073.043-.095.146-.096zm-6.353.03.352.015c.246.008.367.027.406.07a.472.472 0 0 1 .082.184c.023.117.02.129-.074.129-.078 0-.106.023-.125.105a.887.887 0 0 1-.04.157c-.007.035-.105.05-.308.05h-.293v-.355zm2.213.011a.35.35 0 0 1 .148.043c.18.082.27.363.176.543-.05.094-.238.191-.37.191h-.099v-.367c0-.367.012-.402.145-.41zm8.55 0a.35.35 0 0 1 .149.043c.113.05.215.215.215.344 0 .21-.2.39-.434.39-.066 0-.074-.035-.074-.367 0-.367.012-.402.144-.41zm-12.599.035h.133c.102 0 .16.032.238.125.09.11.106.153.09.313-.023.242-.117.344-.312.344h-.149v-.391z" }) + ] + } + ); +}); + +exports.default = SiSupermicro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.d.ts new file mode 100644 index 000000000..847345d60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#151F6D"; +declare const SiSupermicro: IconType; +export { SiSupermicro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.mjs new file mode 100644 index 000000000..c498ff2e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSupermicro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#151F6D"; +const SiSupermicro = React.forwardRef(function SiSupermicro2({ title = "Supermicro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.937 5.842c-.489-.007-.988.002-1.494.03-3.99.218-7.831 1.51-10.236 3.443-.469.379-1.18 1.133-1.453 1.543-.539.8-.754 1.444-.754 2.252 0 1.55 1.026 2.85 3.006 3.798 1.218.586 2.67.97 4.392 1.164 1.203.133 3.198.114 4.568-.046 3.963-.465 7.517-1.921 9.52-3.893.242-.242.77-.851.789-.914 0-.004.105.031.234.074.554.188 1.148-.078 1.398-.629.133-.28.121-.732-.023-1.025a1.149 1.149 0 0 0-.621-.57l-.188-.067v-.199c0-.855-.422-1.727-1.203-2.484-1.568-1.52-4.513-2.421-7.935-2.477Zm-.156.395c.638-.008 1.257.013 1.836.064 2.276.2 4.213.782 5.587 1.684.504.332 1.176 1.002 1.418 1.416.234.402.375.848.403 1.27l.02.331-.24.004a1.076 1.076 0 0 0-.823.41c-.196.25-.254.422-.25.778 0 .336.082.556.289.795l.129.144-.348.352c-.683.69-1.46 1.242-2.482 1.75-2.585 1.296-6.064 1.974-9.258 1.806-2.178-.113-3.916-.502-5.365-1.197-1.527-.73-2.478-1.723-2.72-2.82-.613-2.776 3.139-5.614 8.593-6.508a21.81 21.81 0 0 1 3.21-.28ZM23 7.784l-.01.002c-.03 0-.059 0-.088.01-.04.007-.079.026-.117.042a.44.44 0 0 0-.138.125c-.016.027-.035.052-.043.082a.35.35 0 0 0-.032.122.468.468 0 0 0 .016.152.436.436 0 0 0 .174.228.483.483 0 0 0 .187.067.456.456 0 0 0 .248-.047.408.408 0 0 0 .215-.281c.005-.035.013-.069.008-.104.001-.026-.006-.054-.01-.08a.435.435 0 0 0-.191-.26.485.485 0 0 0-.21-.058H23zm-.031.086h.06a.292.292 0 0 1 .112.033c.02.008.037.02.054.035.023.02.048.041.063.068a.3.3 0 0 1 .037.075c.012.027.013.057.02.086-.002.031.004.064-.004.095-.003.033-.018.062-.032.092-.006.019-.019.034-.029.05a.297.297 0 0 1-.076.075c-.017.015-.04.02-.059.03-.022.006-.044.016-.068.017-.006 0-.011 0-.018.002-.03 0-.061.004-.091-.002a.297.297 0 0 1-.154-.078.22.22 0 0 1-.044-.047c-.018-.02-.026-.045-.039-.068-.009-.02-.012-.042-.017-.063-.008-.027-.006-.056-.006-.084-.002-.039.01-.077.021-.113.014-.026.024-.054.043-.076.015-.024.039-.04.057-.059a.317.317 0 0 1 .066-.041c.023-.007.045-.018.069-.021a.141.141 0 0 1 .035-.006zm.047.12-.055.003h-.053l-.02.004-.019.002-.015.002-.016.001v.415h.094v-.17l.037.002.035.002.012.003.013.002.012.012.004.008.004.007.002.01.002.008.011.038.006.014.006.014h.104l-.006-.012-.008-.035-.01-.037-.006-.022-.006-.02-.007-.015-.008-.013-.01-.012-.01-.01-.015-.008-.014-.01v-.003l.012-.006.013-.006.012-.006.012-.008.01-.01.007-.013.006-.014.002-.02v-.019l-.002-.013-.002-.014-.008-.014-.008-.013-.01-.012-.01-.01-.015-.006-.015-.008-.018-.004-.018-.005-.029-.002zm-.055.07h.053l.017.005.016.006.014.012.01.01.001.007.004.01v.021l-.006.014-.005.01-.01.006-.01.01-.018.003-.013.008-.04.002h-.04v-.121l.013-.002zM4.203 10.318c-.071.004-.104.024-.104.054 0 .098-.058.102-.285.024a1.043 1.043 0 0 0-.703-.024.83.83 0 0 0-.574.825c0 .406.176.605.887 1.011.175.102.375.245.437.319.192.214.149.445-.094.547-.417.171-.863-.11-.94-.602-.024-.156-.032-.162-.157-.162h-.133v1.17h.133c.097 0 .137-.02.152-.074.02-.075.024-.075.262 0 .718.222 1.32-.048 1.445-.649.102-.48-.117-.775-.875-1.19-.57-.312-.73-.534-.52-.734a.436.436 0 0 1 .454-.117c.261.067.511.41.511.703 0 .055.032.07.137.07h.137V10.32h-.17zm15.046.584-.039.002c-.078 0-.12.023-.136.078-.024.074-.032.074-.149.012-.172-.086-.625-.106-.851-.032-.246.078-.551.364-.684.633-.086.176-.113.29-.125.555-.02.41.078.709.312.963.512.554 1.465.449 1.813-.2l.074-.144-.094-.074-.093-.078-.18.203c-.27.312-.524.379-.852.234-.32-.148-.48-.58-.398-1.088.086-.554.367-.812.797-.734.18.035.387.242.457.46.05.145.074.169.18.18l.125.012-.02-.246c-.061-.704-.058-.739-.137-.736zm-8.394.033v.14c0 .137.002.141.135.141.113 0 .144.02.176.102.023.054.039.45.039.875s-.016.818-.04.873c-.03.082-.062.101-.175.101-.129 0-.135.008-.135.137v.137h1.17v-.133c0-.129-.008-.137-.145-.148l-.148-.012-.012-.403c-.004-.218.004-.396.02-.392.015 0 .203.244.414.545l.379.543h1.523v-.137c0-.125-.012-.137-.11-.137-.19 0-.202-.043-.202-.703l.004-.603.347.779c.465 1.046.43 1.042.863.059l.329-.74.011.552c.004.305 0 .578-.008.606-.011.027-.082.05-.16.05-.129 0-.136.008-.136.137v.137h2.224v-.137c0-.125-.008-.137-.117-.137-.074 0-.129-.027-.156-.074-.043-.082-.055-1.635-.016-1.79.02-.067.055-.087.156-.087.125 0 .133-.008.133-.136v-.137h-1.865l-.34.77c-.187.425-.355.786-.37.802-.017.016-.189-.322-.384-.76l-.355-.793-.395-.011-.39-.012v.14c0 .125.008.137.117.137.094 0 .129.024.156.102.024.054.04.45.04.875s-.016.818-.04.873c-.027.082-.062.101-.164.101a.565.565 0 0 1-.254-.078c-.117-.07-.414-.432-.57-.697-.063-.11-.063-.11.078-.203.195-.129.281-.258.309-.473a.642.642 0 0 0-.329-.648c-.18-.102-.203-.106-.894-.117zm8.55 0v.137c0 .132.008.14.149.152l.145.012v1.912l-.145.012c-.14.011-.148.02-.148.148v.133h1.169v-.133c0-.129-.007-.137-.144-.148l-.149-.012-.011-.41c-.012-.488-.04-.5.453.195l.344.488.378.012.38.012v-.133c0-.125-.012-.137-.149-.156-.172-.032-.293-.149-.594-.575-.187-.265-.199-.29-.136-.33.039-.02.128-.09.199-.148.324-.277.238-.844-.157-1.055-.144-.074-.23-.086-.87-.097zm-14.876.008v.136c0 .13.008.137.133.137.086 0 .14.024.156.063.012.035.024.383.024.777 0 .937.058 1.111.449 1.318.125.067.227.082.508.082.48 0 .677-.101.86-.445.063-.117.079-.252.095-.955l.02-.82.237-.012c.223-.012.243-.004.266.078.04.149.027 1.658-.016 1.764-.027.078-.062.101-.156.101-.11 0-.117.012-.117.137v.137h1.133v-.133c0-.129-.008-.137-.145-.149l-.148-.011-.012-.38-.012-.376.23.002c.403.004.638-.127.766-.443.168-.403-.066-.844-.519-.97-.078-.019-.602-.038-1.164-.038H6.092v.133c0 .128.007.136.148.148l.145.012.011.734c.012.86-.012.947-.281 1.08-.27.129-.543.082-.676-.11-.062-.093-.07-.193-.07-.903v-.801l.148-.012c.137-.012.145-.02.145-.148v-.133h-.566Zm4.295 0v.133c0 .128.008.136.148.148l.145.012.012.933c.011 1.008.011.998-.196.998-.097 0-.11.016-.11.137v.137h1.9l.12-.39.118-.391h-.13c-.1 0-.14.027-.21.136-.156.254-.243.293-.63.293h-.347v-.78h.293c.203 0 .3.017.309.048.011.027.027.096.039.154.02.09.047.11.14.11h.118v-.975h.12c.094 0 .118-.012.098-.063a1.93 1.93 0 0 1-.023-.351v-.29H9.78Zm7.173.275c.035 0 .078.003.135.006l.246.012v1.912h-.254c-.234 0-.253-.008-.277-.098-.043-.152-.039-1.623.004-1.736.026-.073.043-.095.146-.096zm-6.353.03.352.015c.246.008.367.027.406.07a.472.472 0 0 1 .082.184c.023.117.02.129-.074.129-.078 0-.106.023-.125.105a.887.887 0 0 1-.04.157c-.007.035-.105.05-.308.05h-.293v-.355zm2.213.011a.35.35 0 0 1 .148.043c.18.082.27.363.176.543-.05.094-.238.191-.37.191h-.099v-.367c0-.367.012-.402.145-.41zm8.55 0a.35.35 0 0 1 .149.043c.113.05.215.215.215.344 0 .21-.2.39-.434.39-.066 0-.074-.035-.074-.367 0-.367.012-.402.144-.41zm-12.599.035h.133c.102 0 .16.032.238.125.09.11.106.153.09.313-.023.242-.117.344-.312.344h-.149v-.391z" }) + ] + } + ); +}); + +export { SiSupermicro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.cjs new file mode 100644 index 000000000..23767dc6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#38A1CE"; +const SiSuperuser = React__namespace.forwardRef(function SiSuperuser2({ title = "Super User", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.523 0c-.223 0-.336.111-.336.28v23.439c0 .196.113.252.336.252h5.594c.224 0 .335-.084.307-.252v-1.483c0-.167-.14-.252-.363-.252H5.543c-.252 0-.363-.083-.363-.279V2.293c0-.196.112-.307.42-.307h2.488c.224 0 .336-.056.336-.252V.28C8.424.084 8.284 0 8.06 0H2.523zm8.8.02c-.224 0-.364.083-.364.279v1.398c0 .196.112.28.336.28h.447c2.154 0 3.664 1.706 3.664 3.412v4.42c0 1.37.98 2.517 2.518 3.216.112.056.139.14.139.196 0 .056-.027.112-.14.14-1.677.616-2.517 2.294-2.517 3.496v3.916c0 1.735-1.51 1.258-3.664 1.258h-.447c-.224 0-.336.084-.336.28v1.398c0 .196.14.28.363.28h.56c3.609 0 6.516.335 6.516-2.714v-4.082c0-1.426 1.008-2.295 2.49-2.714.672-.196.95-.307.923-.56v-1.173c0-.447-.308-.477-.868-.644-1.51-.532-2.515-1.342-2.515-2.74V5.64c0-3.05-2.937-5.621-6.545-5.621h-.56zm.183 8.396c-.336 0-.645.252-.645.588v1.342c0 .307.281.588.645.588h1.482c.336 0 .643-.253.643-.588V9.004c0-.308-.28-.588-.643-.588h-1.482Z" }) + ] + } + ); +}); + +exports.default = SiSuperuser; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.d.ts new file mode 100644 index 000000000..e0d01a96f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#38A1CE"; +declare const SiSuperuser: IconType; +export { SiSuperuser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.mjs new file mode 100644 index 000000000..5a84a150a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuperuser.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#38A1CE"; +const SiSuperuser = React.forwardRef(function SiSuperuser2({ title = "Super User", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.523 0c-.223 0-.336.111-.336.28v23.439c0 .196.113.252.336.252h5.594c.224 0 .335-.084.307-.252v-1.483c0-.167-.14-.252-.363-.252H5.543c-.252 0-.363-.083-.363-.279V2.293c0-.196.112-.307.42-.307h2.488c.224 0 .336-.056.336-.252V.28C8.424.084 8.284 0 8.06 0H2.523zm8.8.02c-.224 0-.364.083-.364.279v1.398c0 .196.112.28.336.28h.447c2.154 0 3.664 1.706 3.664 3.412v4.42c0 1.37.98 2.517 2.518 3.216.112.056.139.14.139.196 0 .056-.027.112-.14.14-1.677.616-2.517 2.294-2.517 3.496v3.916c0 1.735-1.51 1.258-3.664 1.258h-.447c-.224 0-.336.084-.336.28v1.398c0 .196.14.28.363.28h.56c3.609 0 6.516.335 6.516-2.714v-4.082c0-1.426 1.008-2.295 2.49-2.714.672-.196.95-.307.923-.56v-1.173c0-.447-.308-.477-.868-.644-1.51-.532-2.515-1.342-2.515-2.74V5.64c0-3.05-2.937-5.621-6.545-5.621h-.56zm.183 8.396c-.336 0-.645.252-.645.588v1.342c0 .307.281.588.645.588h1.482c.336 0 .643-.253.643-.588V9.004c0-.308-.28-.588-.643-.588h-1.482Z" }) + ] + } + ); +}); + +export { SiSuperuser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.cjs new file mode 100644 index 000000000..9b35d72d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1EBFBF"; +const SiSurfshark = React__namespace.forwardRef(function SiSurfshark2({ title = "Surfshark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.47 0C7.815.2 6.3 2.293 5.872 3.43c-1.615 4.866-3.127 14.325-3.33 15.662-.201 1.31-.228 2.119-.228 2.119 0 .328.026.705.102 1.059.454 1.286 1.792 2.37 4.768 1.287a192.353 192.353 0 0 0 9.533-4.44c1.387-.807 3.227-2.32 4.236-4.312.404-.807.682-1.716.733-2.65v-.452c-.026-2.295-.052-4.692-.204-7.013 0 0-.125-1.488-.2-2.017-.076-.53-.177-.733-.177-.733C20.626.906 19.693.38 18.71.126 18.23.026 17.7.024 17.095 0Zm4.692 4.44h.252c.277 0 .48.2.48.452V6.53c0 .252-.203.455-.48.455h-.252c-1.589 0-2.875 1.26-2.875 2.8v2.498c0 2.976-2.472 5.37-5.498 5.37h-.254c-.277 0-.478-.2-.478-.452v-1.64c0-.253.226-.454.478-.454h.254c1.589 0 2.875-1.262 2.875-2.8V9.81c0-2.977 2.472-5.373 5.498-5.373z" }) + ] + } + ); +}); + +exports.default = SiSurfshark; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.d.ts new file mode 100644 index 000000000..0e75eeac7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1EBFBF"; +declare const SiSurfshark: IconType; +export { SiSurfshark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.mjs new file mode 100644 index 000000000..7ce49e482 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurfshark.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1EBFBF"; +const SiSurfshark = React.forwardRef(function SiSurfshark2({ title = "Surfshark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.47 0C7.815.2 6.3 2.293 5.872 3.43c-1.615 4.866-3.127 14.325-3.33 15.662-.201 1.31-.228 2.119-.228 2.119 0 .328.026.705.102 1.059.454 1.286 1.792 2.37 4.768 1.287a192.353 192.353 0 0 0 9.533-4.44c1.387-.807 3.227-2.32 4.236-4.312.404-.807.682-1.716.733-2.65v-.452c-.026-2.295-.052-4.692-.204-7.013 0 0-.125-1.488-.2-2.017-.076-.53-.177-.733-.177-.733C20.626.906 19.693.38 18.71.126 18.23.026 17.7.024 17.095 0Zm4.692 4.44h.252c.277 0 .48.2.48.452V6.53c0 .252-.203.455-.48.455h-.252c-1.589 0-2.875 1.26-2.875 2.8v2.498c0 2.976-2.472 5.37-5.498 5.37h-.254c-.277 0-.478-.2-.478-.452v-1.64c0-.253.226-.454.478-.454h.254c1.589 0 2.875-1.262 2.875-2.8V9.81c0-2.977 2.472-5.373 5.498-5.373z" }) + ] + } + ); +}); + +export { SiSurfshark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.cjs new file mode 100644 index 000000000..3a2aab1f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF00A0"; +const SiSurrealdb = React__namespace.forwardRef(function SiSurrealdb2({ title = "SurrealDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 6.314 5.714 3.165v-1.27L12 5.054c-.85.47-4.957 2.74-5.714 3.157.703.39 8.085 4.467 12.572 6.946v1.264L12 20.209c-1.71-.943-5.15-2.844-6.858-3.79v-3.788L12 16.42l1.144-.632-9.146-5.05v6.316L12 21.472l8-4.42v-2.526L8.57 8.21Zm-8.002.632v2.528l11.428 6.316-3.428 1.896-5.714-3.165v1.27l5.714 3.156c.85-.47 4.957-2.74 5.714-3.157-.703-.39-8.083-4.467-12.57-6.948V7.578L12 3.789c1.707.945 5.148 2.846 6.858 3.789v3.789L12 7.577l-1.144.633L20 13.263V6.946L12 2.526c-.791.438-7.416 4.1-8.002 4.42zM12 0 1.713 5.685v12.63L12 24l10.287-5.682V5.685Zm9.14 17.683L12 22.736l-9.143-5.053V6.317L12 1.264l9.143 5.053z" }) + ] + } + ); +}); + +exports.default = SiSurrealdb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.d.ts new file mode 100644 index 000000000..65a67726c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF00A0"; +declare const SiSurrealdb: IconType; +export { SiSurrealdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.mjs new file mode 100644 index 000000000..ad7dc182f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurrealdb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF00A0"; +const SiSurrealdb = React.forwardRef(function SiSurrealdb2({ title = "SurrealDB", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 6.314 5.714 3.165v-1.27L12 5.054c-.85.47-4.957 2.74-5.714 3.157.703.39 8.085 4.467 12.572 6.946v1.264L12 20.209c-1.71-.943-5.15-2.844-6.858-3.79v-3.788L12 16.42l1.144-.632-9.146-5.05v6.316L12 21.472l8-4.42v-2.526L8.57 8.21Zm-8.002.632v2.528l11.428 6.316-3.428 1.896-5.714-3.165v1.27l5.714 3.156c.85-.47 4.957-2.74 5.714-3.157-.703-.39-8.083-4.467-12.57-6.948V7.578L12 3.789c1.707.945 5.148 2.846 6.858 3.789v3.789L12 7.577l-1.144.633L20 13.263V6.946L12 2.526c-.791.438-7.416 4.1-8.002 4.42zM12 0 1.713 5.685v12.63L12 24l10.287-5.682V5.685Zm9.14 17.683L12 22.736l-9.143-5.053V6.317L12 1.264l9.143 5.053z" }) + ] + } + ); +}); + +export { SiSurrealdb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.cjs new file mode 100644 index 000000000..3c00d41e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00BF6F"; +const SiSurveymonkey = React__namespace.forwardRef(function SiSurveymonkey2({ title = "SurveyMonkey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.1627 13.1843a2.8517 2.8517 0 0 0-.6778.0841c-.8438-3.3181-3.5478-5.8376-6.9172-6.4452a8.3933 8.3933 0 0 0-.4407-.0668c.0259-.8255.0636-1.7791 1.2781-2.6369l-.1918-.4838s-2.3708.7349-2.6391 2.7598c-.1175-.5507-1.2209-1.2403-1.7673-1.3707l-.2717.4384s.7242.3621.9009 1.361c-3.3691.6056-6.0743 3.1229-6.9204 6.4398-1.5194-.376-3.056.5508-3.432 2.0703-.376 1.5194.5508 3.056 2.0703 3.432a2.8346 2.8346 0 0 0 1.7195-.1142 8.6821 8.6821 0 0 0 .9203 1.7123l2.3524-1.5852c-.6381-.8071-1.0206-1.9884-1.0873-3.1736-.07-1.2931.2446-2.5755 1.0701-3.3298 1.7016-1.4483 3.5561-.7877 4.7135.6002h.3114c1.1606-1.388 3.0173-2.0475 4.7135-.6002.8244.7543 1.1401 2.0378 1.0701 3.3298-.0656 1.1853-.4481 2.3664-1.0873 3.1736l2.3524 1.5852a8.6854 8.6854 0 0 0 .9224-1.7123c1.4551.5751 3.1009-.1384 3.676-1.5935s-.1384-3.1009-1.5935-3.676a2.8349 2.8349 0 0 0-1.0448-.1983zM2.7861 16.8482a.8362.8362 0 0 1 0-1.6724.8442.8442 0 0 1 .4688.1444c.0071.4391.0369.8776.0894 1.3136-.1472.1346-.3738.2329-.5582.2144zm18.4273 0a.8361.8361 0 0 1-.5582-.2155 12.679 12.679 0 0 0 .0894-1.3136.8352.8352 0 0 1 1.304.6929c.0078.4574-.3823.8581-.8352.8362z" }) + ] + } + ); +}); + +exports.default = SiSurveymonkey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.d.ts new file mode 100644 index 000000000..2e85c3e30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00BF6F"; +declare const SiSurveymonkey: IconType; +export { SiSurveymonkey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.mjs new file mode 100644 index 000000000..5c7c03f22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSurveymonkey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00BF6F"; +const SiSurveymonkey = React.forwardRef(function SiSurveymonkey2({ title = "SurveyMonkey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.1627 13.1843a2.8517 2.8517 0 0 0-.6778.0841c-.8438-3.3181-3.5478-5.8376-6.9172-6.4452a8.3933 8.3933 0 0 0-.4407-.0668c.0259-.8255.0636-1.7791 1.2781-2.6369l-.1918-.4838s-2.3708.7349-2.6391 2.7598c-.1175-.5507-1.2209-1.2403-1.7673-1.3707l-.2717.4384s.7242.3621.9009 1.361c-3.3691.6056-6.0743 3.1229-6.9204 6.4398-1.5194-.376-3.056.5508-3.432 2.0703-.376 1.5194.5508 3.056 2.0703 3.432a2.8346 2.8346 0 0 0 1.7195-.1142 8.6821 8.6821 0 0 0 .9203 1.7123l2.3524-1.5852c-.6381-.8071-1.0206-1.9884-1.0873-3.1736-.07-1.2931.2446-2.5755 1.0701-3.3298 1.7016-1.4483 3.5561-.7877 4.7135.6002h.3114c1.1606-1.388 3.0173-2.0475 4.7135-.6002.8244.7543 1.1401 2.0378 1.0701 3.3298-.0656 1.1853-.4481 2.3664-1.0873 3.1736l2.3524 1.5852a8.6854 8.6854 0 0 0 .9224-1.7123c1.4551.5751 3.1009-.1384 3.676-1.5935s-.1384-3.1009-1.5935-3.676a2.8349 2.8349 0 0 0-1.0448-.1983zM2.7861 16.8482a.8362.8362 0 0 1 0-1.6724.8442.8442 0 0 1 .4688.1444c.0071.4391.0369.8776.0894 1.3136-.1472.1346-.3738.2329-.5582.2144zm18.4273 0a.8361.8361 0 0 1-.5582-.2155 12.679 12.679 0 0 0 .0894-1.3136.8352.8352 0 0 1 1.304.6929c.0078.4574-.3823.8581-.8352.8362z" }) + ] + } + ); +}); + +export { SiSurveymonkey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.cjs new file mode 100644 index 000000000..db2816842 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C322C"; +const SiSuse = React__namespace.forwardRef(function SiSuse2({ title = "SUSE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.6691 10.2274a.392.392 0 0 1-.4295 0c-.2108-.14-.2311-.4327-.061-.602a.3828.3828 0 0 1 .5515-.0002c.1698.1695.1492.4622-.061.6022m-1.12.8819c-.5308-.1245-.952-.5457-1.0768-1.0762-.2444-1.0419.6924-1.9787 1.7346-1.7346.5305.1241.952.545 1.0768 1.0759.2451 1.0425-.692 1.98-1.7346 1.7349zm-5.0114 4.374c.0394.1174.0898.2723.2057.3346.0064.0035.012.0066.019.0085.2128.0775.7598.0645.7598.0645h1.006c.086.0013.8419-.001.8228-.0854-.091-.4041-.5584-.4765-.9142-.688-.328-.1955-.6391-.417-.78-.7984-.0737-.1968-.0302-.6508.0965-.8162.0923-.1196.2285-.199.3749-.231.1622-.0347.3305-.0048.4927.0117.2.0203.3974.0565.5968.0813a7.4343 7.4343 0 0 0 1.1613.0596c.6403-.0177 1.2822-.1197 1.8892-.3266.4238-.1423.8413-.3346 1.2016-.6023.4095-.3044.3019-.2758-.1134-.2333-.4971.0508-.9987.0584-1.4974.0289-.4654-.027-.9245-.082-1.3454-.2981-.3314-.1711-.6162-.3425-.879-.6076-.0394-.04-.0639-.1568.0082-.2314.0698-.0724.2178-.0305.2632.0082.4584.3832 1.1422.6987 1.8501.733.3829.019.7553.026 1.1384.0095.1915-.0088.4804-.0076.6724-.0095.099-.0012.3692.0273.4197-.0778.0152-.0304.014-.0657.0127-.1-.0562-1.532-.1695-3.26-1.7727-3.9923-1.1962-.547-2.9895-1.3943-3.747-1.7458-.1755-.0834-.381.0486-.381.2442 0 .5117.026 1.247.0264 1.9162-.3629-.3696-.974-.6029-1.4397-.8169-.5289-.2425-1.0749-.4482-1.6305-.6212-1.1184-.3464-2.2758-.5597-3.44-.6753-1.3203-.1317-2.6628-.0685-3.9628.2-2.141.4438-4.2454 1.4734-5.8429 2.979-.9806.924-1.7501 2.2373-1.8021 3.5703-.0743 1.8867.4543 2.8997 1.4257 3.9439 1.5492 1.664 4.8835 1.8971 6.234-.0762.6076-.8883.7394-2.093.2984-3.075-.441-.9812-1.4546-1.6904-2.5292-1.7266-.834-.0276-1.7225.3965-2.0422 1.1676-.2438.5889-.1051 1.3165.339 1.7736.173.1785.4073.3245.6632.2673.1508-.0336.2768-.147.2997-.3.0336-.2257-.1638-.372-.2854-.5453-.2194-.3127-.175-.7823.0997-1.048.2317-.2244.5749-.2908.8974-.2898.3003.0006.6073.0543.8664.2057.3641.2143.606.6067.6898 1.0213.2499 1.239-.7574 2.2457-2.1232 2.3247-.6987.0413-1.4098-.1422-1.9552-.5813-1.3813-1.111-1.7197-3.3822-.141-4.5946 1.4988-1.1508 3.3908-.8542 4.5064-.2561.8927.4784 1.558 1.2612 2.0622 2.1266.253.4353.4686.8902.6686 1.352.1924.4442.3724.8918.7575 1.2172.2549.2159.5695.2083.9034.2083h1.9064c.259 0 .1959-.1727.0841-.287-.2527-.2584-.6158-.3168-.952-.4092-.7686-.2114-.6902-1.2289-.4775-1.2289.687 0 .7086.0206 1.3105.013.8685-.012 1.1314-.0625 1.8108.1886.3631.1346.712.4895.9397.814.119.171.218.3365.2736.5019Z" }) + ] + } + ); +}); + +exports.default = SiSuse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.d.ts new file mode 100644 index 000000000..9d1f779dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C322C"; +declare const SiSuse: IconType; +export { SiSuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.mjs new file mode 100644 index 000000000..0681712dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C322C"; +const SiSuse = React.forwardRef(function SiSuse2({ title = "SUSE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.6691 10.2274a.392.392 0 0 1-.4295 0c-.2108-.14-.2311-.4327-.061-.602a.3828.3828 0 0 1 .5515-.0002c.1698.1695.1492.4622-.061.6022m-1.12.8819c-.5308-.1245-.952-.5457-1.0768-1.0762-.2444-1.0419.6924-1.9787 1.7346-1.7346.5305.1241.952.545 1.0768 1.0759.2451 1.0425-.692 1.98-1.7346 1.7349zm-5.0114 4.374c.0394.1174.0898.2723.2057.3346.0064.0035.012.0066.019.0085.2128.0775.7598.0645.7598.0645h1.006c.086.0013.8419-.001.8228-.0854-.091-.4041-.5584-.4765-.9142-.688-.328-.1955-.6391-.417-.78-.7984-.0737-.1968-.0302-.6508.0965-.8162.0923-.1196.2285-.199.3749-.231.1622-.0347.3305-.0048.4927.0117.2.0203.3974.0565.5968.0813a7.4343 7.4343 0 0 0 1.1613.0596c.6403-.0177 1.2822-.1197 1.8892-.3266.4238-.1423.8413-.3346 1.2016-.6023.4095-.3044.3019-.2758-.1134-.2333-.4971.0508-.9987.0584-1.4974.0289-.4654-.027-.9245-.082-1.3454-.2981-.3314-.1711-.6162-.3425-.879-.6076-.0394-.04-.0639-.1568.0082-.2314.0698-.0724.2178-.0305.2632.0082.4584.3832 1.1422.6987 1.8501.733.3829.019.7553.026 1.1384.0095.1915-.0088.4804-.0076.6724-.0095.099-.0012.3692.0273.4197-.0778.0152-.0304.014-.0657.0127-.1-.0562-1.532-.1695-3.26-1.7727-3.9923-1.1962-.547-2.9895-1.3943-3.747-1.7458-.1755-.0834-.381.0486-.381.2442 0 .5117.026 1.247.0264 1.9162-.3629-.3696-.974-.6029-1.4397-.8169-.5289-.2425-1.0749-.4482-1.6305-.6212-1.1184-.3464-2.2758-.5597-3.44-.6753-1.3203-.1317-2.6628-.0685-3.9628.2-2.141.4438-4.2454 1.4734-5.8429 2.979-.9806.924-1.7501 2.2373-1.8021 3.5703-.0743 1.8867.4543 2.8997 1.4257 3.9439 1.5492 1.664 4.8835 1.8971 6.234-.0762.6076-.8883.7394-2.093.2984-3.075-.441-.9812-1.4546-1.6904-2.5292-1.7266-.834-.0276-1.7225.3965-2.0422 1.1676-.2438.5889-.1051 1.3165.339 1.7736.173.1785.4073.3245.6632.2673.1508-.0336.2768-.147.2997-.3.0336-.2257-.1638-.372-.2854-.5453-.2194-.3127-.175-.7823.0997-1.048.2317-.2244.5749-.2908.8974-.2898.3003.0006.6073.0543.8664.2057.3641.2143.606.6067.6898 1.0213.2499 1.239-.7574 2.2457-2.1232 2.3247-.6987.0413-1.4098-.1422-1.9552-.5813-1.3813-1.111-1.7197-3.3822-.141-4.5946 1.4988-1.1508 3.3908-.8542 4.5064-.2561.8927.4784 1.558 1.2612 2.0622 2.1266.253.4353.4686.8902.6686 1.352.1924.4442.3724.8918.7575 1.2172.2549.2159.5695.2083.9034.2083h1.9064c.259 0 .1959-.1727.0841-.287-.2527-.2584-.6158-.3168-.952-.4092-.7686-.2114-.6902-1.2289-.4775-1.2289.687 0 .7086.0206 1.3105.013.8685-.012 1.1314-.0625 1.8108.1886.3631.1346.712.4895.9397.814.119.171.218.3365.2736.5019Z" }) + ] + } + ); +}); + +export { SiSuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.cjs new file mode 100644 index 000000000..c05fd5438 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E30613"; +const SiSuzuki = React__namespace.forwardRef(function SiSuzuki2({ title = "Suzuki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.369 19.995C13.51 22.39 12 24 12 24L.105 15.705s5.003-3.715 9.186-.87l5.61 3.882.683-.453L.106 7.321s2.226-.65 6.524-3.315C10.49 1.609 12 0 12 0l11.895 8.296s-5.003 3.715-9.187.87L9.1 5.281l-.683.454L23.893 16.68s-2.224.649-6.524 3.315Z" }) + ] + } + ); +}); + +exports.default = SiSuzuki; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.d.ts new file mode 100644 index 000000000..72466779b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E30613"; +declare const SiSuzuki: IconType; +export { SiSuzuki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.mjs new file mode 100644 index 000000000..70b94b000 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSuzuki.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E30613"; +const SiSuzuki = React.forwardRef(function SiSuzuki2({ title = "Suzuki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.369 19.995C13.51 22.39 12 24 12 24L.105 15.705s5.003-3.715 9.186-.87l5.61 3.882.683-.453L.106 7.321s2.226-.65 6.524-3.315C10.49 1.609 12 0 12 0l11.895 8.296s-5.003 3.715-9.187.87L9.1 5.281l-.683.454L23.893 16.68s-2.224.649-6.524 3.315Z" }) + ] + } + ); +}); + +export { SiSuzuki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.cjs new file mode 100644 index 000000000..96d2544c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3E00"; +const SiSvelte = React__namespace.forwardRef(function SiSvelte2({ title = "Svelte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.354 21.125a4.44 4.44 0 0 1-4.765-1.767 4.109 4.109 0 0 1-.703-3.107 3.898 3.898 0 0 1 .134-.522l.105-.321.287.21a7.21 7.21 0 0 0 2.186 1.092l.208.063-.02.208a1.253 1.253 0 0 0 .226.83 1.337 1.337 0 0 0 1.435.533 1.231 1.231 0 0 0 .343-.15l5.59-3.562a1.164 1.164 0 0 0 .524-.778 1.242 1.242 0 0 0-.211-.937 1.338 1.338 0 0 0-1.435-.533 1.23 1.23 0 0 0-.343.15l-2.133 1.36a4.078 4.078 0 0 1-1.135.499 4.44 4.44 0 0 1-4.765-1.766 4.108 4.108 0 0 1-.702-3.108 3.855 3.855 0 0 1 1.742-2.582l5.589-3.563a4.072 4.072 0 0 1 1.135-.499 4.44 4.44 0 0 1 4.765 1.767 4.109 4.109 0 0 1 .703 3.107 3.943 3.943 0 0 1-.134.522l-.105.321-.286-.21a7.204 7.204 0 0 0-2.187-1.093l-.208-.063.02-.207a1.255 1.255 0 0 0-.226-.831 1.337 1.337 0 0 0-1.435-.532 1.231 1.231 0 0 0-.343.15L8.62 9.368a1.162 1.162 0 0 0-.524.778 1.24 1.24 0 0 0 .211.937 1.338 1.338 0 0 0 1.435.533 1.235 1.235 0 0 0 .344-.151l2.132-1.36a4.067 4.067 0 0 1 1.135-.498 4.44 4.44 0 0 1 4.765 1.766 4.108 4.108 0 0 1 .702 3.108 3.857 3.857 0 0 1-1.742 2.583l-5.589 3.562a4.072 4.072 0 0 1-1.135.499m10.358-17.95C18.484-.015 14.082-.96 10.9 1.068L5.31 4.63a6.412 6.412 0 0 0-2.896 4.295 6.753 6.753 0 0 0 .666 4.336 6.43 6.43 0 0 0-.96 2.396 6.833 6.833 0 0 0 1.168 5.167c2.229 3.19 6.63 4.135 9.812 2.108l5.59-3.562a6.41 6.41 0 0 0 2.896-4.295 6.756 6.756 0 0 0-.665-4.336 6.429 6.429 0 0 0 .958-2.396 6.831 6.831 0 0 0-1.167-5.168Z" }) + ] + } + ); +}); + +exports.default = SiSvelte; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.d.ts new file mode 100644 index 000000000..8f376b465 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3E00"; +declare const SiSvelte: IconType; +export { SiSvelte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.mjs new file mode 100644 index 000000000..5c8044846 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvelte.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3E00"; +const SiSvelte = React.forwardRef(function SiSvelte2({ title = "Svelte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.354 21.125a4.44 4.44 0 0 1-4.765-1.767 4.109 4.109 0 0 1-.703-3.107 3.898 3.898 0 0 1 .134-.522l.105-.321.287.21a7.21 7.21 0 0 0 2.186 1.092l.208.063-.02.208a1.253 1.253 0 0 0 .226.83 1.337 1.337 0 0 0 1.435.533 1.231 1.231 0 0 0 .343-.15l5.59-3.562a1.164 1.164 0 0 0 .524-.778 1.242 1.242 0 0 0-.211-.937 1.338 1.338 0 0 0-1.435-.533 1.23 1.23 0 0 0-.343.15l-2.133 1.36a4.078 4.078 0 0 1-1.135.499 4.44 4.44 0 0 1-4.765-1.766 4.108 4.108 0 0 1-.702-3.108 3.855 3.855 0 0 1 1.742-2.582l5.589-3.563a4.072 4.072 0 0 1 1.135-.499 4.44 4.44 0 0 1 4.765 1.767 4.109 4.109 0 0 1 .703 3.107 3.943 3.943 0 0 1-.134.522l-.105.321-.286-.21a7.204 7.204 0 0 0-2.187-1.093l-.208-.063.02-.207a1.255 1.255 0 0 0-.226-.831 1.337 1.337 0 0 0-1.435-.532 1.231 1.231 0 0 0-.343.15L8.62 9.368a1.162 1.162 0 0 0-.524.778 1.24 1.24 0 0 0 .211.937 1.338 1.338 0 0 0 1.435.533 1.235 1.235 0 0 0 .344-.151l2.132-1.36a4.067 4.067 0 0 1 1.135-.498 4.44 4.44 0 0 1 4.765 1.766 4.108 4.108 0 0 1 .702 3.108 3.857 3.857 0 0 1-1.742 2.583l-5.589 3.562a4.072 4.072 0 0 1-1.135.499m10.358-17.95C18.484-.015 14.082-.96 10.9 1.068L5.31 4.63a6.412 6.412 0 0 0-2.896 4.295 6.753 6.753 0 0 0 .666 4.336 6.43 6.43 0 0 0-.96 2.396 6.833 6.833 0 0 0 1.168 5.167c2.229 3.19 6.63 4.135 9.812 2.108l5.59-3.562a6.41 6.41 0 0 0 2.896-4.295 6.756 6.756 0 0 0-.665-4.336 6.429 6.429 0 0 0 .958-2.396 6.831 6.831 0 0 0-1.167-5.168Z" }) + ] + } + ); +}); + +export { SiSvelte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.cjs new file mode 100644 index 000000000..6d0115212 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB13B"; +const SiSvg = React__namespace.forwardRef(function SiSvg2({ title = "SVG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0c-1.497 0-2.749.965-3.248 2.17a3.45 3.45 0 00-.238 1.416 3.459 3.459 0 00-1.168-.834 3.508 3.508 0 00-1.463-.256 3.513 3.513 0 00-2.367 1.02c-1.06 1.058-1.263 2.625-.764 3.83.179.432.47.82.82 1.154a3.49 3.49 0 00-1.402.252C.965 9.251 0 10.502 0 12c0 1.497.965 2.749 2.17 3.248.437.181.924.25 1.414.236-.357.338-.65.732-.832 1.17-.499 1.205-.295 2.772.764 3.83 1.058 1.06 2.625 1.263 3.83.764.437-.181.83-.476 1.168-.832-.014.49.057.977.238 1.414C9.251 23.035 10.502 24 12 24c1.497 0 2.749-.965 3.248-2.17a3.45 3.45 0 00.238-1.416c.338.356.73.653 1.168.834 1.205.499 2.772.295 3.83-.764 1.06-1.058 1.263-2.625.764-3.83a3.459 3.459 0 00-.834-1.168 3.45 3.45 0 001.416-.238C23.035 14.749 24 13.498 24 12c0-1.497-.965-2.749-2.17-3.248a3.455 3.455 0 00-1.414-.236c.357-.338.65-.732.832-1.17.499-1.205.295-2.772-.764-3.83a3.513 3.513 0 00-2.367-1.02 3.508 3.508 0 00-1.463.256c-.437.181-.83.475-1.168.832a3.45 3.45 0 00-.238-1.414C14.749.965 13.498 0 12 0zm-.041 1.613a1.902 1.902 0 011.387 3.246v3.893L16.098 6A1.902 1.902 0 1118 7.902l-2.752 2.752h3.893a1.902 1.902 0 110 2.692h-3.893L18 16.098A1.902 1.902 0 1116.098 18l-2.752-2.752v3.893a1.902 1.902 0 11-2.692 0v-3.893L7.902 18A1.902 1.902 0 116 16.098l2.752-2.752H4.859a1.902 1.902 0 110-2.692h3.893L6 7.902A1.902 1.902 0 117.902 6l2.752 2.752V4.859a1.902 1.902 0 011.305-3.246z" }) + ] + } + ); +}); + +exports.default = SiSvg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.d.ts new file mode 100644 index 000000000..f2a7b4983 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB13B"; +declare const SiSvg: IconType; +export { SiSvg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.mjs new file mode 100644 index 000000000..067e2693e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB13B"; +const SiSvg = React.forwardRef(function SiSvg2({ title = "SVG", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0c-1.497 0-2.749.965-3.248 2.17a3.45 3.45 0 00-.238 1.416 3.459 3.459 0 00-1.168-.834 3.508 3.508 0 00-1.463-.256 3.513 3.513 0 00-2.367 1.02c-1.06 1.058-1.263 2.625-.764 3.83.179.432.47.82.82 1.154a3.49 3.49 0 00-1.402.252C.965 9.251 0 10.502 0 12c0 1.497.965 2.749 2.17 3.248.437.181.924.25 1.414.236-.357.338-.65.732-.832 1.17-.499 1.205-.295 2.772.764 3.83 1.058 1.06 2.625 1.263 3.83.764.437-.181.83-.476 1.168-.832-.014.49.057.977.238 1.414C9.251 23.035 10.502 24 12 24c1.497 0 2.749-.965 3.248-2.17a3.45 3.45 0 00.238-1.416c.338.356.73.653 1.168.834 1.205.499 2.772.295 3.83-.764 1.06-1.058 1.263-2.625.764-3.83a3.459 3.459 0 00-.834-1.168 3.45 3.45 0 001.416-.238C23.035 14.749 24 13.498 24 12c0-1.497-.965-2.749-2.17-3.248a3.455 3.455 0 00-1.414-.236c.357-.338.65-.732.832-1.17.499-1.205.295-2.772-.764-3.83a3.513 3.513 0 00-2.367-1.02 3.508 3.508 0 00-1.463.256c-.437.181-.83.475-1.168.832a3.45 3.45 0 00-.238-1.414C14.749.965 13.498 0 12 0zm-.041 1.613a1.902 1.902 0 011.387 3.246v3.893L16.098 6A1.902 1.902 0 1118 7.902l-2.752 2.752h3.893a1.902 1.902 0 110 2.692h-3.893L18 16.098A1.902 1.902 0 1116.098 18l-2.752-2.752v3.893a1.902 1.902 0 11-2.692 0v-3.893L7.902 18A1.902 1.902 0 116 16.098l2.752-2.752H4.859a1.902 1.902 0 110-2.692h3.893L6 7.902A1.902 1.902 0 117.902 6l2.752 2.752V4.859a1.902 1.902 0 011.305-3.246z" }) + ] + } + ); +}); + +export { SiSvg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.cjs new file mode 100644 index 000000000..230522b90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0066"; +const SiSvgdotjs = React__namespace.forwardRef(function SiSvgdotjs2({ title = "SVG.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12 12 0 0 12l12 12 12-12Zm-18.569-.554 4.665-4.665c.335-.601.841-1.258 1.565-1.982a.4798.4798 0 0 1 .678 0c.187.187.187.491 0 .678-1.254 1.254-1.786 2.24-1.836 3.093-.035.59.174 1.1.49 1.573.36.536.854 1.026 1.346 1.518 1.13 1.13 2.206 2.289 2.116 3.826-.015.256-.063.525-.149.808l4.002-4.002a.6147.6147 0 0 1-.073-.293c0-.346.281-.627.627-.627s.627.281.627.627-.281.627-.627.627a.6147.6147 0 0 1-.293-.073l-4.665 4.665c-.335.601-.841 1.258-1.565 1.982a.4798.4798 0 0 1-.678 0 .4798.4798 0 0 1 0-.678c1.254-1.254 1.786-2.24 1.836-3.093.035-.59-.174-1.1-.49-1.573-.36-.536-.854-1.026-1.346-1.518-1.13-1.13-2.206-2.289-2.116-3.826.015-.256.063-.525.149-.808l-4.002 4.002c.047.087.073.187.073.293 0 .346-.281.627-.627.627A.6274.6274 0 0 1 4.511 12c0-.346.281-.627.627-.627.106 0 .206.026.293.073Zm-.293.296c.143 0 .258.115.258.258 0 .143-.115.258-.258.258A.2573.2573 0 0 1 4.88 12c0-.143.115-.258.258-.258Zm13.724 0c.143 0 .258.115.258.258 0 .143-.115.258-.258.258a.2573.2573 0 0 1-.258-.258c0-.143.115-.258.258-.258Z" }) + ] + } + ); +}); + +exports.default = SiSvgdotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.d.ts new file mode 100644 index 000000000..8fbf576bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0066"; +declare const SiSvgdotjs: IconType; +export { SiSvgdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.mjs new file mode 100644 index 000000000..99d5776f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgdotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0066"; +const SiSvgdotjs = React.forwardRef(function SiSvgdotjs2({ title = "SVG.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12 12 0 0 12l12 12 12-12Zm-18.569-.554 4.665-4.665c.335-.601.841-1.258 1.565-1.982a.4798.4798 0 0 1 .678 0c.187.187.187.491 0 .678-1.254 1.254-1.786 2.24-1.836 3.093-.035.59.174 1.1.49 1.573.36.536.854 1.026 1.346 1.518 1.13 1.13 2.206 2.289 2.116 3.826-.015.256-.063.525-.149.808l4.002-4.002a.6147.6147 0 0 1-.073-.293c0-.346.281-.627.627-.627s.627.281.627.627-.281.627-.627.627a.6147.6147 0 0 1-.293-.073l-4.665 4.665c-.335.601-.841 1.258-1.565 1.982a.4798.4798 0 0 1-.678 0 .4798.4798 0 0 1 0-.678c1.254-1.254 1.786-2.24 1.836-3.093.035-.59-.174-1.1-.49-1.573-.36-.536-.854-1.026-1.346-1.518-1.13-1.13-2.206-2.289-2.116-3.826.015-.256.063-.525.149-.808l-4.002 4.002c.047.087.073.187.073.293 0 .346-.281.627-.627.627A.6274.6274 0 0 1 4.511 12c0-.346.281-.627.627-.627.106 0 .206.026.293.073Zm-.293.296c.143 0 .258.115.258.258 0 .143-.115.258-.258.258A.2573.2573 0 0 1 4.88 12c0-.143.115-.258.258-.258Zm13.724 0c.143 0 .258.115.258.258 0 .143-.115.258-.258.258a.2573.2573 0 0 1-.258-.258c0-.143.115-.258.258-.258Z" }) + ] + } + ); +}); + +export { SiSvgdotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.cjs new file mode 100644 index 000000000..f0acf5bed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3E7FC1"; +const SiSvgo = React__namespace.forwardRef(function SiSvgo2({ title = "SVGO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.9685 9.5707a10.3841 10.3841 0 0 0-1.2419-2.851c.4116-.5796.8064-1.1723 1.1723-1.7999l-2.8271-2.8187c-.6432.3768-1.2527.7848-1.8491 1.2107a10.2604 10.2604 0 0 0-2.7599-1.1387c-.12-.72-.2676-1.4483-.4572-2.1731h-4.0054c-.1871.7104-.3275 1.4207-.4475 2.1311a10.302 10.302 0 0 0-2.845 1.1279c-.5724-.4068-1.1591-.798-1.7771-1.1579L2.1023 4.9282c.3408.582.7068 1.1375 1.0871 1.6799a10.3302 10.3302 0 0 0-1.3199 2.9878 25.065 25.065 0 0 0-1.8683.4032v4.0006c.5796.1512 1.1567.2736 1.7363.3792a10.327 10.327 0 0 0 1.2815 3.2602c-.3204.462-.6288.9372-.9168 1.4315l2.8283 2.8283c.48-.2784.9348-.5736 1.3811-.8808A10.3366 10.3366 0 0 0 9.6522 22.41c.0972.5304.2112 1.0607.348 1.5899h4.0006c.1416-.5436.2568-1.0859.36-1.6307a10.2988 10.2988 0 0 0 3.2566-1.4063c.4716.3264.96.642 1.4567.936l2.8271-2.8283c-.3144-.5364-.6528-1.0511-1.0043-1.5599a10.3406 10.3406 0 0 0 1.1999-3.109c.6336-.1116 1.2683-.24 1.9019-.4056v-3.997c-.6755-.1752-1.3534-.3132-2.0302-.4284zm-2.9147 5.1886c-.6873 1.9556-2.1612 3.5519-4.0522 4.399-1.8966.856-4.0703.8774-5.9901.0792-1.8862-.7889-3.4536-2.3813-4.1746-4.339-.7227-1.9308-.6184-4.0925.288-5.9445a7.6099 7.6099 0 0 1 3.8242-3.6466c1.9315-.8372 4.2099-.8069 6.1185.0816a7.5908 7.5908 0 0 1 3.643 3.5506c.8889 1.8067 1.0111 3.9209.3432 5.8197zm-1.6883-.1416c.069.3397.0197.6928-.1396 1.0006-.3857.7451-1.3023 1.0365-2.0474.6508-.7451-.3857-1.0365-1.3023-.6508-2.0474l-1.1999-.8964a2.076 2.076 0 0 1-2.4179.4368l-.96 1.4951c.3821.3619.5043.9206.3083 1.409-.2639.6575-1.0107.9765-1.6682.7127-.6575-.2639-.9765-1.0107-.7127-1.6682.2639-.6575 1.0107-.9765 1.6682-.7127l.96-1.4963a2.0736 2.0736 0 0 1-.7008-2.1215l-2.0627-.8087a.9598.9598 0 0 1-.873.3903c-.5275-.0534-.9118-.5243-.8583-1.0518.0534-.5275.5243-.9117 1.0518-.8583.5275.0534.9118.5243.8583 1.0518v.0204l2.0603.81c.5027-.9713 1.6739-1.3843 2.6747-.9432l.9695-1.6643a1.0355 1.0355 0 0 1-.2804-1.0488c.1638-.548.7408-.8594 1.2887-.6956.548.1638.8594.7408.6956 1.2887-.1638.548-.7408.8594-1.2887.6956l-.9731 1.6643c.8459.633 1.0815 1.8004.5472 2.7119l1.1999.8928a1.5195 1.5195 0 0 1 .7612-.404c.8222-.167 1.6241.3642 1.7911 1.1864h-.0013z" }) + ] + } + ); +}); + +exports.default = SiSvgo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.d.ts new file mode 100644 index 000000000..e82eced01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3E7FC1"; +declare const SiSvgo: IconType; +export { SiSvgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.mjs new file mode 100644 index 000000000..c6d1e476d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3E7FC1"; +const SiSvgo = React.forwardRef(function SiSvgo2({ title = "SVGO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.9685 9.5707a10.3841 10.3841 0 0 0-1.2419-2.851c.4116-.5796.8064-1.1723 1.1723-1.7999l-2.8271-2.8187c-.6432.3768-1.2527.7848-1.8491 1.2107a10.2604 10.2604 0 0 0-2.7599-1.1387c-.12-.72-.2676-1.4483-.4572-2.1731h-4.0054c-.1871.7104-.3275 1.4207-.4475 2.1311a10.302 10.302 0 0 0-2.845 1.1279c-.5724-.4068-1.1591-.798-1.7771-1.1579L2.1023 4.9282c.3408.582.7068 1.1375 1.0871 1.6799a10.3302 10.3302 0 0 0-1.3199 2.9878 25.065 25.065 0 0 0-1.8683.4032v4.0006c.5796.1512 1.1567.2736 1.7363.3792a10.327 10.327 0 0 0 1.2815 3.2602c-.3204.462-.6288.9372-.9168 1.4315l2.8283 2.8283c.48-.2784.9348-.5736 1.3811-.8808A10.3366 10.3366 0 0 0 9.6522 22.41c.0972.5304.2112 1.0607.348 1.5899h4.0006c.1416-.5436.2568-1.0859.36-1.6307a10.2988 10.2988 0 0 0 3.2566-1.4063c.4716.3264.96.642 1.4567.936l2.8271-2.8283c-.3144-.5364-.6528-1.0511-1.0043-1.5599a10.3406 10.3406 0 0 0 1.1999-3.109c.6336-.1116 1.2683-.24 1.9019-.4056v-3.997c-.6755-.1752-1.3534-.3132-2.0302-.4284zm-2.9147 5.1886c-.6873 1.9556-2.1612 3.5519-4.0522 4.399-1.8966.856-4.0703.8774-5.9901.0792-1.8862-.7889-3.4536-2.3813-4.1746-4.339-.7227-1.9308-.6184-4.0925.288-5.9445a7.6099 7.6099 0 0 1 3.8242-3.6466c1.9315-.8372 4.2099-.8069 6.1185.0816a7.5908 7.5908 0 0 1 3.643 3.5506c.8889 1.8067 1.0111 3.9209.3432 5.8197zm-1.6883-.1416c.069.3397.0197.6928-.1396 1.0006-.3857.7451-1.3023 1.0365-2.0474.6508-.7451-.3857-1.0365-1.3023-.6508-2.0474l-1.1999-.8964a2.076 2.076 0 0 1-2.4179.4368l-.96 1.4951c.3821.3619.5043.9206.3083 1.409-.2639.6575-1.0107.9765-1.6682.7127-.6575-.2639-.9765-1.0107-.7127-1.6682.2639-.6575 1.0107-.9765 1.6682-.7127l.96-1.4963a2.0736 2.0736 0 0 1-.7008-2.1215l-2.0627-.8087a.9598.9598 0 0 1-.873.3903c-.5275-.0534-.9118-.5243-.8583-1.0518.0534-.5275.5243-.9117 1.0518-.8583.5275.0534.9118.5243.8583 1.0518v.0204l2.0603.81c.5027-.9713 1.6739-1.3843 2.6747-.9432l.9695-1.6643a1.0355 1.0355 0 0 1-.2804-1.0488c.1638-.548.7408-.8594 1.2887-.6956.548.1638.8594.7408.6956 1.2887-.1638.548-.7408.8594-1.2887.6956l-.9731 1.6643c.8459.633 1.0815 1.8004.5472 2.7119l1.1999.8928a1.5195 1.5195 0 0 1 .7612-.404c.8222-.167 1.6241.3642 1.7911 1.1864h-.0013z" }) + ] + } + ); +}); + +export { SiSvgo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.cjs new file mode 100644 index 000000000..b0bc88b27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F453C4"; +const SiSvgtrace = React__namespace.forwardRef(function SiSvgtrace2({ title = "SvgTrace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.4602 2.9425c-.5626.1289-1.087.4605-1.4268.902-.1981.2576-.3965.6748-.4631.9742l-.054.2429H3.5794v-.5451c0-.6036-.0258-.7113-.1944-.811-.0858-.0505-.2419-.056-1.6282-.056H.2234l-.1116.1117L0 3.873v3.125l.0958.1073.0958.1072 1.5378.008c1.6822.009 1.6406.0134 1.775-.186.0706-.1047.0749-.1428.0749-.6644v-.5534h3.9553l-.3769.1912c-.8331.4228-1.4973.8874-2.0969 1.467-.628.607-1.088 1.2325-1.4461 1.9655-.1896.3882-.444 1.0768-.5266 1.425-.0339.143-.053.1724-.1127.1724-.1225 0-.4497.0964-.6247.1842-.822.4118-1.2305 1.3308-.9832 2.2115.2266.8072.977 1.3805 1.8066 1.3805.3291 0 .54-.0497.8615-.2032.6385-.305 1.0542-.9742 1.0542-1.6977 0-.3075-.1065-.6967-.2624-.9592-.1723-.29-.5245-.6142-.802-.7381-.118-.0527-.215-.1143-.2154-.1368s.0651-.2415.1459-.4868c.7245-2.202 2.4014-3.6894 5.14-4.5596.2077-.066.3941-.1256.4143-.1324.021-.007.074.1002.1233.2503.273.8284.919 1.419 1.794 1.6404.3813.0964.9449.0759 1.3297-.0484.7415-.2395 1.368-.8767 1.6089-1.6366l.0697-.2198.3264.1096c1.161.39 2.2134 1.0413 3.129 1.9366 1.0849 1.061 1.8142 2.2829 2.2176 3.7155l.079.2805-.1689.0756c-.7889.353-1.2652 1.2638-1.0914 2.0866.1672.7919.7946 1.396 1.5759 1.5175.8882.138 1.7792-.4011 2.0782-1.2575.3469-.9937-.2055-2.09-1.2146-2.4104-.1409-.0448-.297-.0814-.347-.0814-.0862 0-.0938-.0128-.1506-.2545-.3385-1.4397-1.2326-3.0012-2.3646-4.1292-.5791-.5772-1.4676-1.2477-2.0288-1.531-.1039-.0525-.1888-.1026-.1888-.1114 0-.009.931-.0159 2.0687-.0159h2.0688v1.1811l.0958.1073.0958.1072h3.1565l.1073-.1073.1073-.1074.009-1.5112c.0101-1.661.01-1.6647-.1871-1.781-.0858-.0506-.2419-.056-1.6282-.056h-1.5334l-.1116.1117-.1116.1116v1.1887h-5.9689l-.0223-.149c-.0615-.41-.3043-.8823-.633-1.2318-.3535-.3758-.7755-.6217-1.2647-.737-.2482-.0585-.823-.0592-1.0756-.001m-.0372 9.1302c-.0553.03-.14.1509-.2346.3352-1.723 3.3554-4.1678 8.1776-4.182 8.2486-.0436.218.1804.4549.3969.4198.0567-.009.989-.4191 2.0718-.9109s2.0056-.9086 2.0508-.9263c.0713-.0279.3408.0876 2.0523.8794 1.0836.5014 2.0274.932 2.0974.9572.1543.0554.2997.0178.418-.1082.181-.1926.2654-.003-2.0343-4.5771-1.497-2.9778-2.1337-4.2128-2.2047-4.277-.1137-.1028-.2873-.1192-.4316-.0407" }) + ] + } + ); +}); + +exports.default = SiSvgtrace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.d.ts new file mode 100644 index 000000000..b73dcd548 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F453C4"; +declare const SiSvgtrace: IconType; +export { SiSvgtrace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.mjs new file mode 100644 index 000000000..3be4480aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSvgtrace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F453C4"; +const SiSvgtrace = React.forwardRef(function SiSvgtrace2({ title = "SvgTrace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.4602 2.9425c-.5626.1289-1.087.4605-1.4268.902-.1981.2576-.3965.6748-.4631.9742l-.054.2429H3.5794v-.5451c0-.6036-.0258-.7113-.1944-.811-.0858-.0505-.2419-.056-1.6282-.056H.2234l-.1116.1117L0 3.873v3.125l.0958.1073.0958.1072 1.5378.008c1.6822.009 1.6406.0134 1.775-.186.0706-.1047.0749-.1428.0749-.6644v-.5534h3.9553l-.3769.1912c-.8331.4228-1.4973.8874-2.0969 1.467-.628.607-1.088 1.2325-1.4461 1.9655-.1896.3882-.444 1.0768-.5266 1.425-.0339.143-.053.1724-.1127.1724-.1225 0-.4497.0964-.6247.1842-.822.4118-1.2305 1.3308-.9832 2.2115.2266.8072.977 1.3805 1.8066 1.3805.3291 0 .54-.0497.8615-.2032.6385-.305 1.0542-.9742 1.0542-1.6977 0-.3075-.1065-.6967-.2624-.9592-.1723-.29-.5245-.6142-.802-.7381-.118-.0527-.215-.1143-.2154-.1368s.0651-.2415.1459-.4868c.7245-2.202 2.4014-3.6894 5.14-4.5596.2077-.066.3941-.1256.4143-.1324.021-.007.074.1002.1233.2503.273.8284.919 1.419 1.794 1.6404.3813.0964.9449.0759 1.3297-.0484.7415-.2395 1.368-.8767 1.6089-1.6366l.0697-.2198.3264.1096c1.161.39 2.2134 1.0413 3.129 1.9366 1.0849 1.061 1.8142 2.2829 2.2176 3.7155l.079.2805-.1689.0756c-.7889.353-1.2652 1.2638-1.0914 2.0866.1672.7919.7946 1.396 1.5759 1.5175.8882.138 1.7792-.4011 2.0782-1.2575.3469-.9937-.2055-2.09-1.2146-2.4104-.1409-.0448-.297-.0814-.347-.0814-.0862 0-.0938-.0128-.1506-.2545-.3385-1.4397-1.2326-3.0012-2.3646-4.1292-.5791-.5772-1.4676-1.2477-2.0288-1.531-.1039-.0525-.1888-.1026-.1888-.1114 0-.009.931-.0159 2.0687-.0159h2.0688v1.1811l.0958.1073.0958.1072h3.1565l.1073-.1073.1073-.1074.009-1.5112c.0101-1.661.01-1.6647-.1871-1.781-.0858-.0506-.2419-.056-1.6282-.056h-1.5334l-.1116.1117-.1116.1116v1.1887h-5.9689l-.0223-.149c-.0615-.41-.3043-.8823-.633-1.2318-.3535-.3758-.7755-.6217-1.2647-.737-.2482-.0585-.823-.0592-1.0756-.001m-.0372 9.1302c-.0553.03-.14.1509-.2346.3352-1.723 3.3554-4.1678 8.1776-4.182 8.2486-.0436.218.1804.4549.3969.4198.0567-.009.989-.4191 2.0718-.9109s2.0056-.9086 2.0508-.9263c.0713-.0279.3408.0876 2.0523.8794 1.0836.5014 2.0274.932 2.0974.9572.1543.0554.2997.0178.418-.1082.181-.1926.2654-.003-2.0343-4.5771-1.497-2.9778-2.1337-4.2128-2.2047-4.277-.1137-.1028-.2873-.1192-.4316-.0407" }) + ] + } + ); +}); + +export { SiSvgtrace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.cjs new file mode 100644 index 000000000..17dfa7e32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#85EA2D"; +const SiSwagger = React__namespace.forwardRef(function SiSwagger2({ title = "Swagger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c6.616 0 12-5.383 12-12S18.616 0 12 0zm0 1.144c5.995 0 10.856 4.86 10.856 10.856 0 5.995-4.86 10.856-10.856 10.856-5.996 0-10.856-4.86-10.856-10.856C1.144 6.004 6.004 1.144 12 1.144zM8.37 5.868a6.707 6.707 0 0 0-.423.005c-.983.056-1.573.517-1.735 1.472-.115.665-.096 1.348-.143 2.017-.013.35-.05.697-.115 1.038-.134.609-.397.798-1.016.83a2.65 2.65 0 0 0-.244.042v1.463c1.126.055 1.278.452 1.37 1.629.033.429-.013.858.015 1.287.018.406.073.808.156 1.2.259 1.075 1.307 1.435 2.575 1.218v-1.283c-.203 0-.383.005-.558 0-.43-.013-.591-.12-.632-.535-.056-.535-.042-1.08-.075-1.62-.064-1.001-.175-1.988-1.153-2.625.503-.37.868-.812.983-1.398.083-.41.134-.821.166-1.237.028-.415-.023-.84.014-1.25.06-.665.102-.937.9-.91.12 0 .235-.017.369-.027v-1.31c-.16 0-.31-.004-.454-.006zm7.593.009a4.247 4.247 0 0 0-.813.06v1.274c.245 0 .434 0 .623.005.328.004.577.13.61.494.032.332.031.669.064 1.006.065.669.101 1.347.217 2.007.102.544.475.95.941 1.283-.817.549-1.057 1.333-1.098 2.215-.023.604-.037 1.213-.069 1.822-.028.554-.222.734-.78.748-.157.004-.31.018-.484.028v1.305c.327 0 .627.019.927 0 .932-.055 1.495-.507 1.68-1.412.078-.498.124-1 .138-1.504.032-.461.028-.927.074-1.384.069-.715.397-1.01 1.112-1.057a.972.972 0 0 0 .199-.046v-1.463c-.12-.014-.204-.027-.291-.032-.536-.023-.804-.203-.937-.71a5.146 5.146 0 0 1-.152-.993c-.037-.618-.033-1.241-.074-1.86-.08-1.192-.794-1.753-1.887-1.786zm-6.89 5.28a.844.844 0 0 0-.083 1.684h.055a.83.83 0 0 0 .877-.78v-.046a.845.845 0 0 0-.83-.858zm2.911 0a.808.808 0 0 0-.834.78c0 .027 0 .05.004.078 0 .503.342.826.859.826.507 0 .826-.332.826-.853-.005-.503-.342-.836-.855-.831zm2.963 0a.861.861 0 0 0-.876.835c0 .47.378.849.849.849h.009c.425.074.853-.337.881-.83.023-.457-.392-.854-.863-.854z" }) + ] + } + ); +}); + +exports.default = SiSwagger; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.d.ts new file mode 100644 index 000000000..07dbfa2f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#85EA2D"; +declare const SiSwagger: IconType; +export { SiSwagger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.mjs new file mode 100644 index 000000000..37888e001 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwagger.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#85EA2D"; +const SiSwagger = React.forwardRef(function SiSwagger2({ title = "Swagger", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c6.616 0 12-5.383 12-12S18.616 0 12 0zm0 1.144c5.995 0 10.856 4.86 10.856 10.856 0 5.995-4.86 10.856-10.856 10.856-5.996 0-10.856-4.86-10.856-10.856C1.144 6.004 6.004 1.144 12 1.144zM8.37 5.868a6.707 6.707 0 0 0-.423.005c-.983.056-1.573.517-1.735 1.472-.115.665-.096 1.348-.143 2.017-.013.35-.05.697-.115 1.038-.134.609-.397.798-1.016.83a2.65 2.65 0 0 0-.244.042v1.463c1.126.055 1.278.452 1.37 1.629.033.429-.013.858.015 1.287.018.406.073.808.156 1.2.259 1.075 1.307 1.435 2.575 1.218v-1.283c-.203 0-.383.005-.558 0-.43-.013-.591-.12-.632-.535-.056-.535-.042-1.08-.075-1.62-.064-1.001-.175-1.988-1.153-2.625.503-.37.868-.812.983-1.398.083-.41.134-.821.166-1.237.028-.415-.023-.84.014-1.25.06-.665.102-.937.9-.91.12 0 .235-.017.369-.027v-1.31c-.16 0-.31-.004-.454-.006zm7.593.009a4.247 4.247 0 0 0-.813.06v1.274c.245 0 .434 0 .623.005.328.004.577.13.61.494.032.332.031.669.064 1.006.065.669.101 1.347.217 2.007.102.544.475.95.941 1.283-.817.549-1.057 1.333-1.098 2.215-.023.604-.037 1.213-.069 1.822-.028.554-.222.734-.78.748-.157.004-.31.018-.484.028v1.305c.327 0 .627.019.927 0 .932-.055 1.495-.507 1.68-1.412.078-.498.124-1 .138-1.504.032-.461.028-.927.074-1.384.069-.715.397-1.01 1.112-1.057a.972.972 0 0 0 .199-.046v-1.463c-.12-.014-.204-.027-.291-.032-.536-.023-.804-.203-.937-.71a5.146 5.146 0 0 1-.152-.993c-.037-.618-.033-1.241-.074-1.86-.08-1.192-.794-1.753-1.887-1.786zm-6.89 5.28a.844.844 0 0 0-.083 1.684h.055a.83.83 0 0 0 .877-.78v-.046a.845.845 0 0 0-.83-.858zm2.911 0a.808.808 0 0 0-.834.78c0 .027 0 .05.004.078 0 .503.342.826.859.826.507 0 .826-.332.826-.853-.005-.503-.342-.836-.855-.831zm2.963 0a.861.861 0 0 0-.876.835c0 .47.378.849.849.849h.009c.425.074.853-.337.881-.83.023-.457-.392-.854-.863-.854z" }) + ] + } + ); +}); + +export { SiSwagger as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.cjs new file mode 100644 index 000000000..a88b056a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA633"; +const SiSwarm = React__namespace.forwardRef(function SiSwarm2({ title = "Swarm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.358 1.216c-1.82.023-4.234 2.581-2.57 6.704.018.034.08.17.091.204h.003c5.172-2.298 4.45-6.287 3.112-6.8a1.71 1.71 0 0 0-.636-.108zM4.001 2.768c-1.867.027-3.392.81-3.874 2.06-.91 2.365 3.07 7.996 12.229 3.93l.004-.003a5.53 5.53 0 0 1-.16-.362C10.193 4.303 6.73 2.728 4 2.768zM15.51 9.432l-.138.034a7.08 7.08 0 0 0-2.153.951c-.949.624-1.786 1.549-2.147 2.641-.097.295-.17.618-.194.928a9.153 9.153 0 0 0 .77 4.451 9.165 9.165 0 0 0 2.681 3.46c.686.544 1.92.887 2.93.887.949 0 1.884-.282 2.725-.71.262-.133.841-.494.879-.52a3.847 3.847 0 0 1-1.378-.663c-1.447-1.107-2.594-2.595-3.409-4.423-.826-1.854-1.163-3.73-1.002-5.575a3.813 3.813 0 0 1 .436-1.46zm3.498.026c-.868 0-1.704.722-1.783 1.623-.132 1.503.166 3.033.824 4.51.648 1.453 1.567 2.683 2.749 3.586a1.73 1.73 0 0 0 1.06.346c.677 0 1.353-.36 1.621-1.002a6.74 6.74 0 0 0-.068-5.356 6.75 6.75 0 0 0-3.891-3.618 1.508 1.508 0 0 0-.512-.089zm-10.05 5.498a28.722 28.722 0 0 0-2.175 4.098c-.023.054-.378.932-.483 1.205a.676.676 0 0 0 .384.86c.273.107 1.164.43 1.22.449a28.93 28.93 0 0 0 4.453 1.12 11.15 11.15 0 0 1-2.442-3.48 11.136 11.136 0 0 1-.958-4.252z" }) + ] + } + ); +}); + +exports.default = SiSwarm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.d.ts new file mode 100644 index 000000000..6255f411f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA633"; +declare const SiSwarm: IconType; +export { SiSwarm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.mjs new file mode 100644 index 000000000..43bc1bb8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwarm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA633"; +const SiSwarm = React.forwardRef(function SiSwarm2({ title = "Swarm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.358 1.216c-1.82.023-4.234 2.581-2.57 6.704.018.034.08.17.091.204h.003c5.172-2.298 4.45-6.287 3.112-6.8a1.71 1.71 0 0 0-.636-.108zM4.001 2.768c-1.867.027-3.392.81-3.874 2.06-.91 2.365 3.07 7.996 12.229 3.93l.004-.003a5.53 5.53 0 0 1-.16-.362C10.193 4.303 6.73 2.728 4 2.768zM15.51 9.432l-.138.034a7.08 7.08 0 0 0-2.153.951c-.949.624-1.786 1.549-2.147 2.641-.097.295-.17.618-.194.928a9.153 9.153 0 0 0 .77 4.451 9.165 9.165 0 0 0 2.681 3.46c.686.544 1.92.887 2.93.887.949 0 1.884-.282 2.725-.71.262-.133.841-.494.879-.52a3.847 3.847 0 0 1-1.378-.663c-1.447-1.107-2.594-2.595-3.409-4.423-.826-1.854-1.163-3.73-1.002-5.575a3.813 3.813 0 0 1 .436-1.46zm3.498.026c-.868 0-1.704.722-1.783 1.623-.132 1.503.166 3.033.824 4.51.648 1.453 1.567 2.683 2.749 3.586a1.73 1.73 0 0 0 1.06.346c.677 0 1.353-.36 1.621-1.002a6.74 6.74 0 0 0-.068-5.356 6.75 6.75 0 0 0-3.891-3.618 1.508 1.508 0 0 0-.512-.089zm-10.05 5.498a28.722 28.722 0 0 0-2.175 4.098c-.023.054-.378.932-.483 1.205a.676.676 0 0 0 .384.86c.273.107 1.164.43 1.22.449a28.93 28.93 0 0 0 4.453 1.12 11.15 11.15 0 0 1-2.442-3.48 11.136 11.136 0 0 1-.958-4.252z" }) + ] + } + ); +}); + +export { SiSwarm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSway.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSway.cjs new file mode 100644 index 000000000..b58174415 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSway.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#68751C"; +const SiSway = React__namespace.forwardRef(function SiSway2({ title = "Sway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.785.813a2.11 2.11 0 0 0-.17.012c-.753.076-1.484.31-2.209.52-.742.221-1.459.52-2.148.888-.52.275-1.234.763-1.537 1.272-.193.31-.181.766.117.976.07.059.17.1.264.123.87.21 2.342-.794 3.002-1.115.846-.415 1.729-.732 2.587-1.117.328-.146 1.4-.484 1.407-.963.02-.521-.849-.61-1.313-.596Zm6.51.615c-.796-.006-1.606.104-2.37.162-1.395.106-2.816.584-4.048 1.168-.146.076-.297.145-.443.233-.34.193-.648.403-.881.666-.783.925-.295 1.598.54 1.988.284.132.605.231.932.297.38.076.766.109 1.102.092.11-.006.224-.018.336-.025l.004.02c.11.379.45.671.83.794.38.123.794.117 1.185.094a12.986 12.986 0 0 0 4.147-.975c.269-.105.52-.223.713-.433.175-.216.273-.52.144-.778-.157-.31-.548-.39-.886-.402-.231-.01-.458.004-.684.027.031-.02.063-.04.094-.062.438-.321 1.43-.906 1.675-1.338.328-.578-.36-1.184-.986-1.354a5.55 5.55 0 0 0-1.404-.173Zm-9.51 3.627c-.027 0-.056 0-.084.002C9.73 5.12 8.353 6.164 8.025 6.8c-.455.9.782 1.449 1.524 1.186.765-.263 1.91-1.196 2.039-2.043.04-.274-.052-.596-.297-.754a.895.895 0 0 0-.506-.133Zm-3.933.928c-.597.009-1.518.884-1.793 1.139-.485.444-.469.834.326.834.66-.012 1.349-.45 1.74-.922.146-.181.275-.403.21-.613-.074-.294-.229-.42-.427-.436a.571.571 0 0 0-.056-.002zm6.187.184c-.175.838-.77 1.52-1.504 2.076-1.185.9-2.55 1.535-3.847 2.265-2.001 1.138-4.058 2.834-4.596 5.126a5.076 5.076 0 0 0-.137 1.376c.023.307.273.46.514.46.06 0 .12-.009.176-.028a.41.41 0 0 0 .28-.431 4.605 4.605 0 0 1 .005-.489 4.36 4.36 0 0 1 .297-1.332c.237-.604.6-1.146 1.044-1.636a7.698 7.698 0 0 1 .47-.473c.163-.153.336-.3.513-.442a11.999 11.999 0 0 1 .545-.414c.372-.266.76-.514 1.148-.748.047.03.1.057.166.07 2.269.474 4.626.158 6.672-.84-.093.002-.186.005-.28.003a8.773 8.773 0 0 1-.456-.022 5.787 5.787 0 0 1-.453-.053 1.361 1.361 0 0 1-.592-.246 9.344 9.344 0 0 1-3.793.368l.426-.237c1.75-.955 3.85-2.145 4.308-4.086a5.173 5.173 0 0 1-.718-.193 4.59 4.59 0 0 1-.188-.074zm6.615 1.146c-1.57.024-3.16.415-4.527 1.21-.013.006-.024.017-.037.024a8.69 8.69 0 0 0-1.451.606c-.257.14-.543.374-.467.648.062.214.305.304.531.342.028.005.056.013.082.016a7.61 7.61 0 0 0 2.037-.037 7.736 7.736 0 0 0 1.579-.409c.257-.093.52-.221.625-.478a.502.502 0 0 0 .03-.192 7.18 7.18 0 0 0 1.91-.87c.18-.117.378-.298.349-.52-.041-.263-.38-.352-.66-.34zm.655 2.256c-1.14.03-2.77.796-3.26 1.11-.263.169-.543.426-.484.73.052.327.444.479.783.52.823.105 4.672-.316 4.058-1.835-.162-.401-.58-.539-1.097-.525Zm-5.641 4.258a6.862 6.862 0 0 0-1.375.117c-1.022.204-1.997.583-3.014.752-.876.134-1.715-.139-2.615-.127-.942.014-1.886.167-2.8.424a4.182 4.182 0 0 0-.116.24 3.913 3.913 0 0 0-.322 1.756.943.943 0 0 1-.01.18.901.901 0 0 1-.312.578c-.324.273-.819.292-1.176.074a.972.972 0 0 1-.469-.748c-.001-.026 0-.052-.002-.078a5.285 5.285 0 0 1 .01-.572c.013-.19.036-.38.068-.569-.262.098-.528.19-.795.281-.266.092-.533.183-.795.28-.152.052-.945.361-.945.361l11.992 4.566 12.002-4.564.006-.002c-.053-.023-.094-.03-.146-.053-1.759-.671-3.463-1.285-5.215-1.974a18.547 18.547 0 0 0-.97-.356c-.976-.326-1.979-.552-3.001-.566ZM0 17.31v1.3l11.992 4.577 12.002-4.578v-1.297l-12.002 4.565L0 17.31Z" }) + ] + } + ); +}); + +exports.default = SiSway; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSway.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSway.d.ts new file mode 100644 index 000000000..06bd1d9bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSway.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#68751C"; +declare const SiSway: IconType; +export { SiSway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSway.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSway.mjs new file mode 100644 index 000000000..1bffde511 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSway.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#68751C"; +const SiSway = React.forwardRef(function SiSway2({ title = "Sway", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.785.813a2.11 2.11 0 0 0-.17.012c-.753.076-1.484.31-2.209.52-.742.221-1.459.52-2.148.888-.52.275-1.234.763-1.537 1.272-.193.31-.181.766.117.976.07.059.17.1.264.123.87.21 2.342-.794 3.002-1.115.846-.415 1.729-.732 2.587-1.117.328-.146 1.4-.484 1.407-.963.02-.521-.849-.61-1.313-.596Zm6.51.615c-.796-.006-1.606.104-2.37.162-1.395.106-2.816.584-4.048 1.168-.146.076-.297.145-.443.233-.34.193-.648.403-.881.666-.783.925-.295 1.598.54 1.988.284.132.605.231.932.297.38.076.766.109 1.102.092.11-.006.224-.018.336-.025l.004.02c.11.379.45.671.83.794.38.123.794.117 1.185.094a12.986 12.986 0 0 0 4.147-.975c.269-.105.52-.223.713-.433.175-.216.273-.52.144-.778-.157-.31-.548-.39-.886-.402-.231-.01-.458.004-.684.027.031-.02.063-.04.094-.062.438-.321 1.43-.906 1.675-1.338.328-.578-.36-1.184-.986-1.354a5.55 5.55 0 0 0-1.404-.173Zm-9.51 3.627c-.027 0-.056 0-.084.002C9.73 5.12 8.353 6.164 8.025 6.8c-.455.9.782 1.449 1.524 1.186.765-.263 1.91-1.196 2.039-2.043.04-.274-.052-.596-.297-.754a.895.895 0 0 0-.506-.133Zm-3.933.928c-.597.009-1.518.884-1.793 1.139-.485.444-.469.834.326.834.66-.012 1.349-.45 1.74-.922.146-.181.275-.403.21-.613-.074-.294-.229-.42-.427-.436a.571.571 0 0 0-.056-.002zm6.187.184c-.175.838-.77 1.52-1.504 2.076-1.185.9-2.55 1.535-3.847 2.265-2.001 1.138-4.058 2.834-4.596 5.126a5.076 5.076 0 0 0-.137 1.376c.023.307.273.46.514.46.06 0 .12-.009.176-.028a.41.41 0 0 0 .28-.431 4.605 4.605 0 0 1 .005-.489 4.36 4.36 0 0 1 .297-1.332c.237-.604.6-1.146 1.044-1.636a7.698 7.698 0 0 1 .47-.473c.163-.153.336-.3.513-.442a11.999 11.999 0 0 1 .545-.414c.372-.266.76-.514 1.148-.748.047.03.1.057.166.07 2.269.474 4.626.158 6.672-.84-.093.002-.186.005-.28.003a8.773 8.773 0 0 1-.456-.022 5.787 5.787 0 0 1-.453-.053 1.361 1.361 0 0 1-.592-.246 9.344 9.344 0 0 1-3.793.368l.426-.237c1.75-.955 3.85-2.145 4.308-4.086a5.173 5.173 0 0 1-.718-.193 4.59 4.59 0 0 1-.188-.074zm6.615 1.146c-1.57.024-3.16.415-4.527 1.21-.013.006-.024.017-.037.024a8.69 8.69 0 0 0-1.451.606c-.257.14-.543.374-.467.648.062.214.305.304.531.342.028.005.056.013.082.016a7.61 7.61 0 0 0 2.037-.037 7.736 7.736 0 0 0 1.579-.409c.257-.093.52-.221.625-.478a.502.502 0 0 0 .03-.192 7.18 7.18 0 0 0 1.91-.87c.18-.117.378-.298.349-.52-.041-.263-.38-.352-.66-.34zm.655 2.256c-1.14.03-2.77.796-3.26 1.11-.263.169-.543.426-.484.73.052.327.444.479.783.52.823.105 4.672-.316 4.058-1.835-.162-.401-.58-.539-1.097-.525Zm-5.641 4.258a6.862 6.862 0 0 0-1.375.117c-1.022.204-1.997.583-3.014.752-.876.134-1.715-.139-2.615-.127-.942.014-1.886.167-2.8.424a4.182 4.182 0 0 0-.116.24 3.913 3.913 0 0 0-.322 1.756.943.943 0 0 1-.01.18.901.901 0 0 1-.312.578c-.324.273-.819.292-1.176.074a.972.972 0 0 1-.469-.748c-.001-.026 0-.052-.002-.078a5.285 5.285 0 0 1 .01-.572c.013-.19.036-.38.068-.569-.262.098-.528.19-.795.281-.266.092-.533.183-.795.28-.152.052-.945.361-.945.361l11.992 4.566 12.002-4.564.006-.002c-.053-.023-.094-.03-.146-.053-1.759-.671-3.463-1.285-5.215-1.974a18.547 18.547 0 0 0-.97-.356c-.976-.326-1.979-.552-3.001-.566ZM0 17.31v1.3l11.992 4.577 12.002-4.578v-1.297l-12.002 4.565L0 17.31Z" }) + ] + } + ); +}); + +export { SiSway as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.cjs new file mode 100644 index 000000000..33e8fb49c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F8C457"; +const SiSwc = React__namespace.forwardRef(function SiSwc2({ title = "SWC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.063 7.797a.99.99 0 0 0-.7 1.69l3.987 3.986a.42.42 0 0 1 .093.48.42.42 0 0 1-.408.272.44.44 0 0 1-.312-.13L4.135 8.509a2.405 2.405 0 0 0-1.711-.71c-.507 0-.99.152-1.395.436a2.443 2.443 0 0 0-.994 2.403c.084.487.32.934.678 1.293L2.25 13.47c.183.183.14.379.098.48a.422.422 0 0 1-.409.274h-.695a.987.987 0 1 0 0 1.976h.705c.507 0 .987-.149 1.393-.433a2.449 2.449 0 0 0 .994-2.405 2.403 2.403 0 0 0-.678-1.293l-1.54-1.54a.42.42 0 0 1-.096-.483.42.42 0 0 1 .408-.272c.116 0 .226.045.31.13l5.588 5.587a2.405 2.405 0 0 0 1.711.71 2.379 2.379 0 0 0 1.996-1.048l.342.34a2.404 2.404 0 0 0 1.71.711h.05a2.41 2.41 0 0 0 1.392-.435c.374-.265.664-.631.842-1.059.176-.43.232-.896.152-1.346a2.403 2.403 0 0 0-.677-1.293l-1.541-1.539a.42.42 0 0 1-.096-.482.422.422 0 0 1 .408-.274h1.053a2.402 2.402 0 0 0-.008.862c.084.487.32.934.678 1.293l3.562 3.562a2.406 2.406 0 0 0 1.711.711c1.316 0 2.39-1.07 2.387-2.389a.99.99 0 1 0-1.979 0 .409.409 0 0 1-.408.409.436.436 0 0 1-.31-.13l-3.563-3.562a.422.422 0 0 1-.097-.482.422.422 0 0 1 .408-.274h.593a.987.987 0 1 0 0-1.976h-4.027c-.507 0-.989.15-1.394.435a2.443 2.443 0 0 0-.994 2.403c.084.487.319.934.677 1.293l1.537 1.54a.42.42 0 0 1 .096.483.417.417 0 0 1-.406.271h-.05a.436.436 0 0 1-.311-.128l-2.022-2.02-.004-.006-3.984-3.982a.991.991 0 0 0-.7-.291zm-4.64.867c.416 0 .806.16 1.1.455l5.59 5.588c.247.247.575.383.924.383a1.29 1.29 0 0 0 1.209-.807c.205-.497.1-1.04-.281-1.422L6.976 8.875a.12.12 0 0 1 0-.174c.05-.05.127-.05.176 0l6.006 6.006c.247.247.575.383.924.383h.05a1.29 1.29 0 0 0 1.21-.807 1.288 1.288 0 0 0-.285-1.424l-1.541-1.54a1.53 1.53 0 0 1-.336-1.694 1.533 1.533 0 0 1 1.437-.959h4.027c.07 0 .124.054.124.123 0 .07-.054.123-.124.123h-.593a1.29 1.29 0 0 0-1.21.807 1.288 1.288 0 0 0 .286 1.424l3.562 3.564c.248.247.576.383.924.383.702 0 1.274-.571 1.274-1.273 0-.07.055-.124.125-.124.069 0 .123.054.123.124a1.52 1.52 0 0 1-1.522 1.519c-.415 0-.805-.16-1.1-.455l-3.562-3.563a1.53 1.53 0 0 1-.336-1.693 1.56 1.56 0 0 1 .586-.713h-2.584a1.29 1.29 0 0 0-1.209.807 1.284 1.284 0 0 0 .283 1.424l1.541 1.54a1.53 1.53 0 0 1 .336 1.694 1.53 1.53 0 0 1-1.435.959h-.051c-.415 0-.805-.16-1.1-.455l-1.422-1.42c.065.3.034.614-.09.916a1.53 1.53 0 0 1-1.435.959c-.415 0-.807-.16-1.102-.455L3.346 9.293a1.297 1.297 0 0 0-.924-.383 1.29 1.29 0 0 0-1.21.807 1.288 1.288 0 0 0 .284 1.424l1.54 1.54a1.53 1.53 0 0 1 .337 1.694 1.53 1.53 0 0 1-1.436.959h-.693c-.07 0-.123-.054-.123-.123s.054-.123.123-.123h.695a1.29 1.29 0 0 0 1.21-.807 1.284 1.284 0 0 0-.286-1.423l-1.539-1.541a1.53 1.53 0 0 1-.336-1.692c.245-.593.793-.96 1.436-.96z" }) + ] + } + ); +}); + +exports.default = SiSwc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.d.ts new file mode 100644 index 000000000..49abdfe2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F8C457"; +declare const SiSwc: IconType; +export { SiSwc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.mjs new file mode 100644 index 000000000..50f0b09c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F8C457"; +const SiSwc = React.forwardRef(function SiSwc2({ title = "SWC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.063 7.797a.99.99 0 0 0-.7 1.69l3.987 3.986a.42.42 0 0 1 .093.48.42.42 0 0 1-.408.272.44.44 0 0 1-.312-.13L4.135 8.509a2.405 2.405 0 0 0-1.711-.71c-.507 0-.99.152-1.395.436a2.443 2.443 0 0 0-.994 2.403c.084.487.32.934.678 1.293L2.25 13.47c.183.183.14.379.098.48a.422.422 0 0 1-.409.274h-.695a.987.987 0 1 0 0 1.976h.705c.507 0 .987-.149 1.393-.433a2.449 2.449 0 0 0 .994-2.405 2.403 2.403 0 0 0-.678-1.293l-1.54-1.54a.42.42 0 0 1-.096-.483.42.42 0 0 1 .408-.272c.116 0 .226.045.31.13l5.588 5.587a2.405 2.405 0 0 0 1.711.71 2.379 2.379 0 0 0 1.996-1.048l.342.34a2.404 2.404 0 0 0 1.71.711h.05a2.41 2.41 0 0 0 1.392-.435c.374-.265.664-.631.842-1.059.176-.43.232-.896.152-1.346a2.403 2.403 0 0 0-.677-1.293l-1.541-1.539a.42.42 0 0 1-.096-.482.422.422 0 0 1 .408-.274h1.053a2.402 2.402 0 0 0-.008.862c.084.487.32.934.678 1.293l3.562 3.562a2.406 2.406 0 0 0 1.711.711c1.316 0 2.39-1.07 2.387-2.389a.99.99 0 1 0-1.979 0 .409.409 0 0 1-.408.409.436.436 0 0 1-.31-.13l-3.563-3.562a.422.422 0 0 1-.097-.482.422.422 0 0 1 .408-.274h.593a.987.987 0 1 0 0-1.976h-4.027c-.507 0-.989.15-1.394.435a2.443 2.443 0 0 0-.994 2.403c.084.487.319.934.677 1.293l1.537 1.54a.42.42 0 0 1 .096.483.417.417 0 0 1-.406.271h-.05a.436.436 0 0 1-.311-.128l-2.022-2.02-.004-.006-3.984-3.982a.991.991 0 0 0-.7-.291zm-4.64.867c.416 0 .806.16 1.1.455l5.59 5.588c.247.247.575.383.924.383a1.29 1.29 0 0 0 1.209-.807c.205-.497.1-1.04-.281-1.422L6.976 8.875a.12.12 0 0 1 0-.174c.05-.05.127-.05.176 0l6.006 6.006c.247.247.575.383.924.383h.05a1.29 1.29 0 0 0 1.21-.807 1.288 1.288 0 0 0-.285-1.424l-1.541-1.54a1.53 1.53 0 0 1-.336-1.694 1.533 1.533 0 0 1 1.437-.959h4.027c.07 0 .124.054.124.123 0 .07-.054.123-.124.123h-.593a1.29 1.29 0 0 0-1.21.807 1.288 1.288 0 0 0 .286 1.424l3.562 3.564c.248.247.576.383.924.383.702 0 1.274-.571 1.274-1.273 0-.07.055-.124.125-.124.069 0 .123.054.123.124a1.52 1.52 0 0 1-1.522 1.519c-.415 0-.805-.16-1.1-.455l-3.562-3.563a1.53 1.53 0 0 1-.336-1.693 1.56 1.56 0 0 1 .586-.713h-2.584a1.29 1.29 0 0 0-1.209.807 1.284 1.284 0 0 0 .283 1.424l1.541 1.54a1.53 1.53 0 0 1 .336 1.694 1.53 1.53 0 0 1-1.435.959h-.051c-.415 0-.805-.16-1.1-.455l-1.422-1.42c.065.3.034.614-.09.916a1.53 1.53 0 0 1-1.435.959c-.415 0-.807-.16-1.102-.455L3.346 9.293a1.297 1.297 0 0 0-.924-.383 1.29 1.29 0 0 0-1.21.807 1.288 1.288 0 0 0 .284 1.424l1.54 1.54a1.53 1.53 0 0 1 .337 1.694 1.53 1.53 0 0 1-1.436.959h-.693c-.07 0-.123-.054-.123-.123s.054-.123.123-.123h.695a1.29 1.29 0 0 0 1.21-.807 1.284 1.284 0 0 0-.286-1.423l-1.539-1.541a1.53 1.53 0 0 1-.336-1.692c.245-.593.793-.96 1.436-.96z" }) + ] + } + ); +}); + +export { SiSwc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.cjs new file mode 100644 index 000000000..507a9de69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F05138"; +const SiSwift = React__namespace.forwardRef(function SiSwift2({ title = "Swift", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.508 0c-.287 0-.573 0-.86.002-.241.002-.483.003-.724.01-.132.003-.263.009-.395.015A9.154 9.154 0 0 0 4.348.15 5.492 5.492 0 0 0 2.85.645 5.04 5.04 0 0 0 .645 2.848c-.245.48-.4.972-.495 1.5-.093.52-.122 1.05-.136 1.576a35.2 35.2 0 0 0-.012.724C0 6.935 0 7.221 0 7.508v8.984c0 .287 0 .575.002.862.002.24.005.481.012.722.014.526.043 1.057.136 1.576.095.528.25 1.02.495 1.5a5.03 5.03 0 0 0 2.205 2.203c.48.244.97.4 1.498.495.52.093 1.05.124 1.576.138.241.007.483.009.724.01.287.002.573.002.86.002h8.984c.287 0 .573 0 .86-.002.241-.001.483-.003.724-.01a10.523 10.523 0 0 0 1.578-.138 5.322 5.322 0 0 0 1.498-.495 5.035 5.035 0 0 0 2.203-2.203c.245-.48.4-.972.495-1.5.093-.52.124-1.05.138-1.576.007-.241.009-.481.01-.722.002-.287.002-.575.002-.862V7.508c0-.287 0-.573-.002-.86a33.662 33.662 0 0 0-.01-.724 10.5 10.5 0 0 0-.138-1.576 5.328 5.328 0 0 0-.495-1.5A5.039 5.039 0 0 0 21.152.645 5.32 5.32 0 0 0 19.654.15a10.493 10.493 0 0 0-1.578-.138 34.98 34.98 0 0 0-.722-.01C17.067 0 16.779 0 16.492 0H7.508zm6.035 3.41c4.114 2.47 6.545 7.162 5.549 11.131-.024.093-.05.181-.076.272l.002.001c2.062 2.538 1.5 5.258 1.236 4.745-1.072-2.086-3.066-1.568-4.088-1.043a6.803 6.803 0 0 1-.281.158l-.02.012-.002.002c-2.115 1.123-4.957 1.205-7.812-.022a12.568 12.568 0 0 1-5.64-4.838c.649.48 1.35.902 2.097 1.252 3.019 1.414 6.051 1.311 8.197-.002C9.651 12.73 7.101 9.67 5.146 7.191a10.628 10.628 0 0 1-1.005-1.384c2.34 2.142 6.038 4.83 7.365 5.576C8.69 8.408 6.208 4.743 6.324 4.86c4.436 4.47 8.528 6.996 8.528 6.996.154.085.27.154.36.213.085-.215.16-.437.224-.668.708-2.588-.09-5.548-1.893-7.992z" }) + ] + } + ); +}); + +exports.default = SiSwift; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.d.ts new file mode 100644 index 000000000..2a2639632 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F05138"; +declare const SiSwift: IconType; +export { SiSwift as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.mjs new file mode 100644 index 000000000..2d9941304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwift.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F05138"; +const SiSwift = React.forwardRef(function SiSwift2({ title = "Swift", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.508 0c-.287 0-.573 0-.86.002-.241.002-.483.003-.724.01-.132.003-.263.009-.395.015A9.154 9.154 0 0 0 4.348.15 5.492 5.492 0 0 0 2.85.645 5.04 5.04 0 0 0 .645 2.848c-.245.48-.4.972-.495 1.5-.093.52-.122 1.05-.136 1.576a35.2 35.2 0 0 0-.012.724C0 6.935 0 7.221 0 7.508v8.984c0 .287 0 .575.002.862.002.24.005.481.012.722.014.526.043 1.057.136 1.576.095.528.25 1.02.495 1.5a5.03 5.03 0 0 0 2.205 2.203c.48.244.97.4 1.498.495.52.093 1.05.124 1.576.138.241.007.483.009.724.01.287.002.573.002.86.002h8.984c.287 0 .573 0 .86-.002.241-.001.483-.003.724-.01a10.523 10.523 0 0 0 1.578-.138 5.322 5.322 0 0 0 1.498-.495 5.035 5.035 0 0 0 2.203-2.203c.245-.48.4-.972.495-1.5.093-.52.124-1.05.138-1.576.007-.241.009-.481.01-.722.002-.287.002-.575.002-.862V7.508c0-.287 0-.573-.002-.86a33.662 33.662 0 0 0-.01-.724 10.5 10.5 0 0 0-.138-1.576 5.328 5.328 0 0 0-.495-1.5A5.039 5.039 0 0 0 21.152.645 5.32 5.32 0 0 0 19.654.15a10.493 10.493 0 0 0-1.578-.138 34.98 34.98 0 0 0-.722-.01C17.067 0 16.779 0 16.492 0H7.508zm6.035 3.41c4.114 2.47 6.545 7.162 5.549 11.131-.024.093-.05.181-.076.272l.002.001c2.062 2.538 1.5 5.258 1.236 4.745-1.072-2.086-3.066-1.568-4.088-1.043a6.803 6.803 0 0 1-.281.158l-.02.012-.002.002c-2.115 1.123-4.957 1.205-7.812-.022a12.568 12.568 0 0 1-5.64-4.838c.649.48 1.35.902 2.097 1.252 3.019 1.414 6.051 1.311 8.197-.002C9.651 12.73 7.101 9.67 5.146 7.191a10.628 10.628 0 0 1-1.005-1.384c2.34 2.142 6.038 4.83 7.365 5.576C8.69 8.408 6.208 4.743 6.324 4.86c4.436 4.47 8.528 6.996 8.528 6.996.154.085.27.154.36.213.085-.215.16-.437.224-.668.708-2.588-.09-5.548-1.893-7.992z" }) + ] + } + ); +}); + +export { SiSwift as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.cjs new file mode 100644 index 000000000..49151b646 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FC8019"; +const SiSwiggy = React__namespace.forwardRef(function SiSwiggy2({ title = "Swiggy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.034 24c-.376-.411-2.075-2.584-3.95-5.513-.547-.916-.901-1.63-.833-1.814.178-.48 3.355-.743 4.333-.308.298.132.29.307.29.409 0 .44-.022 1.619-.022 1.619a.441.441 0 1 0 .883-.002l-.005-2.939c0-.255-.278-.319-.331-.329-.511-.002-1.548-.006-2.661-.006-2.457 0-3.006.101-3.423-.172-.904-.591-2.383-4.577-2.417-6.819C3.849 4.964 5.723 2.225 8.362.868A8.13 8.13 0 0 1 12.026 0c4.177 0 7.617 3.153 8.075 7.209l.001.011c.084.981-5.321 1.189-6.39.904-.164-.044-.206-.212-.206-.284L13.5 4.996a.442.442 0 0 0-.884.002l.009 3.866a.33.33 0 0 0 .268.32l3.354-.001c1.79 0 2.542.207 3.042.588.333.254.461.739.349 1.37C18.633 16.755 12.273 23.71 12.034 24z" }) + ] + } + ); +}); + +exports.default = SiSwiggy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.d.ts new file mode 100644 index 000000000..32519587d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FC8019"; +declare const SiSwiggy: IconType; +export { SiSwiggy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.mjs new file mode 100644 index 000000000..a546b0b70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiggy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FC8019"; +const SiSwiggy = React.forwardRef(function SiSwiggy2({ title = "Swiggy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.034 24c-.376-.411-2.075-2.584-3.95-5.513-.547-.916-.901-1.63-.833-1.814.178-.48 3.355-.743 4.333-.308.298.132.29.307.29.409 0 .44-.022 1.619-.022 1.619a.441.441 0 1 0 .883-.002l-.005-2.939c0-.255-.278-.319-.331-.329-.511-.002-1.548-.006-2.661-.006-2.457 0-3.006.101-3.423-.172-.904-.591-2.383-4.577-2.417-6.819C3.849 4.964 5.723 2.225 8.362.868A8.13 8.13 0 0 1 12.026 0c4.177 0 7.617 3.153 8.075 7.209l.001.011c.084.981-5.321 1.189-6.39.904-.164-.044-.206-.212-.206-.284L13.5 4.996a.442.442 0 0 0-.884.002l.009 3.866a.33.33 0 0 0 .268.32l3.354-.001c1.79 0 2.542.207 3.042.588.333.254.461.739.349 1.37C18.633 16.755 12.273 23.71 12.034 24z" }) + ] + } + ); +}); + +export { SiSwiggy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.cjs new file mode 100644 index 000000000..f928b87e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6332F6"; +const SiSwiper = React__namespace.forwardRef(function SiSwiper2({ title = "Swiper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm4.884 17.908a4.328 4.328 0 0 1-1.092 1.488 4.817 4.817 0 0 1-1.644.936c-.632.216-1.308.324-2.028.324s-1.368-.1-1.944-.3c-.576-.2-1.088-.464-1.536-.792s-.832-.704-1.152-1.128a6.563 6.563 0 0 1-.768-1.284l1.68-1.008c.144.336.332.66.564.972.232.312.5.588.804.828a3.697 3.697 0 0 0 2.328.792c.4 0 .788-.056 1.164-.168.376-.112.708-.28.996-.504.288-.224.52-.5.696-.828.176-.328.264-.716.264-1.164 0-.432-.084-.804-.252-1.116a2.955 2.955 0 0 0-.684-.84 5 5 0 0 0-1.032-.672c-.4-.2-.832-.412-1.296-.636a44.725 44.725 0 0 1-1.644-.816 7.592 7.592 0 0 1-1.488-1.008 4.752 4.752 0 0 1-1.068-1.332c-.272-.504-.408-1.092-.408-1.764 0-.56.104-1.116.312-1.668a4.474 4.474 0 0 1 .912-1.476c.4-.432.9-.784 1.5-1.056s1.3-.408 2.1-.408c.592 0 1.14.076 1.644.228a5.98 5.98 0 0 1 2.412 1.38c.304.288.552.568.744.84l-1.512 1.224a4.172 4.172 0 0 0-1.284-1.188 4.204 4.204 0 0 0-.924-.408 3.634 3.634 0 0 0-1.08-.156c-.464 0-.868.072-1.212.216a2.692 2.692 0 0 0-.876.576c-.24.24-.42.516-.54.828-.12.312-.18.628-.18.948 0 .4.088.748.264 1.044.176.296.424.572.744.828s.712.504 1.176.744c.464.24.984.488 1.56.744.64.288 1.22.588 1.74.9.52.312.96.652 1.32 1.02.36.368.636.784.828 1.248.192.464.288 1.008.288 1.632 0 .736-.132 1.396-.396 1.98z" }) + ] + } + ); +}); + +exports.default = SiSwiper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.d.ts new file mode 100644 index 000000000..a0a96ca30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6332F6"; +declare const SiSwiper: IconType; +export { SiSwiper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.mjs new file mode 100644 index 000000000..7166b90ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwiper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6332F6"; +const SiSwiper = React.forwardRef(function SiSwiper2({ title = "Swiper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm4.884 17.908a4.328 4.328 0 0 1-1.092 1.488 4.817 4.817 0 0 1-1.644.936c-.632.216-1.308.324-2.028.324s-1.368-.1-1.944-.3c-.576-.2-1.088-.464-1.536-.792s-.832-.704-1.152-1.128a6.563 6.563 0 0 1-.768-1.284l1.68-1.008c.144.336.332.66.564.972.232.312.5.588.804.828a3.697 3.697 0 0 0 2.328.792c.4 0 .788-.056 1.164-.168.376-.112.708-.28.996-.504.288-.224.52-.5.696-.828.176-.328.264-.716.264-1.164 0-.432-.084-.804-.252-1.116a2.955 2.955 0 0 0-.684-.84 5 5 0 0 0-1.032-.672c-.4-.2-.832-.412-1.296-.636a44.725 44.725 0 0 1-1.644-.816 7.592 7.592 0 0 1-1.488-1.008 4.752 4.752 0 0 1-1.068-1.332c-.272-.504-.408-1.092-.408-1.764 0-.56.104-1.116.312-1.668a4.474 4.474 0 0 1 .912-1.476c.4-.432.9-.784 1.5-1.056s1.3-.408 2.1-.408c.592 0 1.14.076 1.644.228a5.98 5.98 0 0 1 2.412 1.38c.304.288.552.568.744.84l-1.512 1.224a4.172 4.172 0 0 0-1.284-1.188 4.204 4.204 0 0 0-.924-.408 3.634 3.634 0 0 0-1.08-.156c-.464 0-.868.072-1.212.216a2.692 2.692 0 0 0-.876.576c-.24.24-.42.516-.54.828-.12.312-.18.628-.18.948 0 .4.088.748.264 1.044.176.296.424.572.744.828s.712.504 1.176.744c.464.24.984.488 1.56.744.64.288 1.22.588 1.74.9.52.312.96.652 1.32 1.02.36.368.636.784.828 1.248.192.464.288 1.008.288 1.632 0 .736-.132 1.396-.396 1.98z" }) + ] + } + ); +}); + +export { SiSwiper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.cjs new file mode 100644 index 000000000..d2153e9fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSwisscows = React__namespace.forwardRef(function SiSwisscows2({ title = "Swisscows", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.591 24 .282-1.45c-.065-1.365-.279-2.682-.803-3.86.393-.62.534-1.683.647-2.793l-1.646-2.71c-.048.01-.29-.232-.414-.402l-.178.014c-2.661.191-2.711-2.508-2.336-4.563.366-1.395-1.782-.603-1.604-.69C.384 7.11.912 6.401 1.565 6.16c.243.205 1.32.383 1.023 2.016-.547.956-.069 5.358 2.807 3.28l.427-.623c1.247-.748 2.092-1.235 3.698-1.872.49-.624 1.552-1.964 1.804-2.208.06-.06.375-.321.818-.61.696-.909 1.407-2.59 1.34-3.29-.315.275-.648.576-1.059-.077-.324-.517.447-1.06 1.186-.969l.038-.044C13.133.984 14.74-.334 14.757.078c-.376.322-.737.69-.455 1.283.438-.34.823-.367 1.207-.223l.393.148c1.299.275 2.79-.919 2.818.023l.01.331c-.205.174-.46.332-.75.479.241.018.528-.06.76-.16l.008.302-.502.46c-.442.67-.985 1.327-1.641 1.783.018.101.015.291.013.527a5.747 5.747 0 0 0 2.243-.244l-.013-.022c-.212-.346.047-1.057.378-1.418.098-.108.298-.144.373-.177l1.038.95c-.024.145-.04.26-.115.343-.445.488-1.154.735-1.531.46-.635.74-1.36 1.253-2.253 1.477.016.062.035.121.056.179.125.151.225.318.292.504.092.185.166.359.227.526.632-.047 1.195-.021 2.117-.138l2.343.74 1.715.52-.994.54-.937-.46c-.73-.147-1.398.411-2.313-.13-.185.081-.397.198-.63.338.397.129.832.286 1.433.444l1.462 2.43.598 1.389-1.047-.258-.143-.904c-.685-1.147-1.351-1.054-1.98-1.493-.51.12-1.168.345-1.862.557-.367.685-.838 1.46-1.548 2.084l-2.51 1.248a1.815 1.815 0 0 1 .08.291c.352.16.722.454.395.624a.786.786 0 0 1-.415.065 2.015 2.015 0 0 1-.022.085c.265.232.465.535.146.617-.137.036-.29.01-.444-.039-.03.039-.062.076-.095.111.143.32.196.67-.125.614-.145-.025-.28-.118-.404-.233a2.155 2.155 0 0 1-.042.019c.046.371-.008.789-.313.616-.164-.093-.276-.283-.363-.481-.04 0-.079-.002-.118-.005-.27.67-.628 1.303-1.042 1.793l2.073.469.742.73-1.092.54-.396-.846c-.724.027-2.172.082-2.207.02a59.342 59.342 0 0 1-.496-1.435c-.285.242-.603.49-.958.744-.028 1.49-.382 2.68-.473 3.688.203.412.197.845.262 1.262zM17.883 5.432c-.542.068-.944.05-1.263-.02.005.227.02.47.058.706a5.206 5.206 0 0 0 1.205-.686z" }) + ] + } + ); +}); + +exports.default = SiSwisscows; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.d.ts new file mode 100644 index 000000000..331f2655a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSwisscows: IconType; +export { SiSwisscows as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.mjs new file mode 100644 index 000000000..6b83be0fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwisscows.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSwisscows = React.forwardRef(function SiSwisscows2({ title = "Swisscows", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.591 24 .282-1.45c-.065-1.365-.279-2.682-.803-3.86.393-.62.534-1.683.647-2.793l-1.646-2.71c-.048.01-.29-.232-.414-.402l-.178.014c-2.661.191-2.711-2.508-2.336-4.563.366-1.395-1.782-.603-1.604-.69C.384 7.11.912 6.401 1.565 6.16c.243.205 1.32.383 1.023 2.016-.547.956-.069 5.358 2.807 3.28l.427-.623c1.247-.748 2.092-1.235 3.698-1.872.49-.624 1.552-1.964 1.804-2.208.06-.06.375-.321.818-.61.696-.909 1.407-2.59 1.34-3.29-.315.275-.648.576-1.059-.077-.324-.517.447-1.06 1.186-.969l.038-.044C13.133.984 14.74-.334 14.757.078c-.376.322-.737.69-.455 1.283.438-.34.823-.367 1.207-.223l.393.148c1.299.275 2.79-.919 2.818.023l.01.331c-.205.174-.46.332-.75.479.241.018.528-.06.76-.16l.008.302-.502.46c-.442.67-.985 1.327-1.641 1.783.018.101.015.291.013.527a5.747 5.747 0 0 0 2.243-.244l-.013-.022c-.212-.346.047-1.057.378-1.418.098-.108.298-.144.373-.177l1.038.95c-.024.145-.04.26-.115.343-.445.488-1.154.735-1.531.46-.635.74-1.36 1.253-2.253 1.477.016.062.035.121.056.179.125.151.225.318.292.504.092.185.166.359.227.526.632-.047 1.195-.021 2.117-.138l2.343.74 1.715.52-.994.54-.937-.46c-.73-.147-1.398.411-2.313-.13-.185.081-.397.198-.63.338.397.129.832.286 1.433.444l1.462 2.43.598 1.389-1.047-.258-.143-.904c-.685-1.147-1.351-1.054-1.98-1.493-.51.12-1.168.345-1.862.557-.367.685-.838 1.46-1.548 2.084l-2.51 1.248a1.815 1.815 0 0 1 .08.291c.352.16.722.454.395.624a.786.786 0 0 1-.415.065 2.015 2.015 0 0 1-.022.085c.265.232.465.535.146.617-.137.036-.29.01-.444-.039-.03.039-.062.076-.095.111.143.32.196.67-.125.614-.145-.025-.28-.118-.404-.233a2.155 2.155 0 0 1-.042.019c.046.371-.008.789-.313.616-.164-.093-.276-.283-.363-.481-.04 0-.079-.002-.118-.005-.27.67-.628 1.303-1.042 1.793l2.073.469.742.73-1.092.54-.396-.846c-.724.027-2.172.082-2.207.02a59.342 59.342 0 0 1-.496-1.435c-.285.242-.603.49-.958.744-.028 1.49-.382 2.68-.473 3.688.203.412.197.845.262 1.262zM17.883 5.432c-.542.068-.944.05-1.263-.02.005.227.02.47.058.706a5.206 5.206 0 0 0 1.205-.686z" }) + ] + } + ); +}); + +export { SiSwisscows as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.cjs new file mode 100644 index 000000000..b85ea6142 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSwr = React__namespace.forwardRef(function SiSwr2({ title = "SWR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12.187a2.659 2.659 0 0 0 2.648 2.647 2.662 2.662 0 0 0 2.647-2.646v-.376a1.097 1.097 0 0 1 1.092-1.086c.326 0 .636.147.844.399h1.712a2.66 2.66 0 0 0-2.558-1.959 2.664 2.664 0 0 0-2.647 2.647v.374c0 .598-.493 1.09-1.091 1.09a1.096 1.096 0 0 1-1.09-1.09.314.314 0 0 0-.312-.312H.311a.313.313 0 0 0-.311.312Zm10.131 2.647a2.664 2.664 0 0 1-2.555-1.96h1.71a1.088 1.088 0 0 0 1.935-.683v-.379a2.663 2.663 0 0 1 2.648-2.646 2.65 2.65 0 0 1 2.647 2.591l.008.43a1.097 1.097 0 0 0 1.092 1.086c.326 0 .636-.146.843-.399h1.712a2.657 2.657 0 0 1-2.556 1.96 2.66 2.66 0 0 1-2.648-2.646l-.008-.389v-.017a1.096 1.096 0 0 0-1.09-1.059 1.096 1.096 0 0 0-1.09 1.09v.374a2.663 2.663 0 0 1-2.648 2.647Zm10.376-3.708a1.09 1.09 0 0 1 1.936.683v.004c0 .171.14.312.311.312h.935a.313.313 0 0 0 .311-.312 2.663 2.663 0 0 0-2.648-2.647 2.659 2.659 0 0 0-2.557 1.96h1.712Z" }) + ] + } + ); +}); + +exports.default = SiSwr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.d.ts new file mode 100644 index 000000000..c97846b8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSwr: IconType; +export { SiSwr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.mjs new file mode 100644 index 000000000..d6cad0234 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSwr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSwr = React.forwardRef(function SiSwr2({ title = "SWR", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12.187a2.659 2.659 0 0 0 2.648 2.647 2.662 2.662 0 0 0 2.647-2.646v-.376a1.097 1.097 0 0 1 1.092-1.086c.326 0 .636.147.844.399h1.712a2.66 2.66 0 0 0-2.558-1.959 2.664 2.664 0 0 0-2.647 2.647v.374c0 .598-.493 1.09-1.091 1.09a1.096 1.096 0 0 1-1.09-1.09.314.314 0 0 0-.312-.312H.311a.313.313 0 0 0-.311.312Zm10.131 2.647a2.664 2.664 0 0 1-2.555-1.96h1.71a1.088 1.088 0 0 0 1.935-.683v-.379a2.663 2.663 0 0 1 2.648-2.646 2.65 2.65 0 0 1 2.647 2.591l.008.43a1.097 1.097 0 0 0 1.092 1.086c.326 0 .636-.146.843-.399h1.712a2.657 2.657 0 0 1-2.556 1.96 2.66 2.66 0 0 1-2.648-2.646l-.008-.389v-.017a1.096 1.096 0 0 0-1.09-1.059 1.096 1.096 0 0 0-1.09 1.09v.374a2.663 2.663 0 0 1-2.648 2.647Zm10.376-3.708a1.09 1.09 0 0 1 1.936.683v.004c0 .171.14.312.311.312h.935a.313.313 0 0 0 .311-.312 2.663 2.663 0 0 0-2.648-2.647 2.659 2.659 0 0 0-2.557 1.96h1.712Z" }) + ] + } + ); +}); + +export { SiSwr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.cjs new file mode 100644 index 000000000..8cc594b24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDB511"; +const SiSymantec = React__namespace.forwardRef(function SiSymantec2({ title = "Symantec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.877 0v.738h.738V0h-.738zm0 .738h-.738v.739h.738V.738zm0 .739v.738h.738v-.738h-.738zm-.738 0h-1.477v.738h-.738V3.69h-.738v.74h-1.479v.725A10.572 10.572 0 0011 2.77C5.136 2.77.385 7.52.385 13.385.385 19.248 5.136 24 11 24s10.615-4.752 10.615-10.615c0-2.56-.904-4.906-2.412-6.739h.72v-.738h.74V4.43h.737V3.69h.739v-.738H21.4v-.738h.739v-.738zM19.186 3.69v-.738h-.74v.738h.74zM11 6.154a7.193 7.193 0 014.033 1.23h-.28v.739h-.737c-1.927 2.409-2.414 3.466-3.182 5.414-.871-1.763-1.911-2.978-3.711-3.783l-.02-.006c-.327-.083-.493-.125-.718.19-.23.322-.092.613.183.955a35.212 35.212 0 00.586.703c.547.646 1.095 1.289 1.508 2.035.408.738.877 1.772 1.242 2.574.223.49.406.894.51 1.088.22.406.752.584.955.584.985-.117 1.08-.582 1.242-1.379l.057-.264c.336-1.574.771-3.203 2.824-5.158v-.736h.738V9.6h.74v-.295a7.193 7.193 0 011.26 4.08c0 3.99-3.24 7.23-7.23 7.23s-7.2-3.24-7.2-7.23 3.21-7.23 7.2-7.23z" }) + ] + } + ); +}); + +exports.default = SiSymantec; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.d.ts new file mode 100644 index 000000000..4cc66e5e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDB511"; +declare const SiSymantec: IconType; +export { SiSymantec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.mjs new file mode 100644 index 000000000..26dea1268 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymantec.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDB511"; +const SiSymantec = React.forwardRef(function SiSymantec2({ title = "Symantec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.877 0v.738h.738V0h-.738zm0 .738h-.738v.739h.738V.738zm0 .739v.738h.738v-.738h-.738zm-.738 0h-1.477v.738h-.738V3.69h-.738v.74h-1.479v.725A10.572 10.572 0 0011 2.77C5.136 2.77.385 7.52.385 13.385.385 19.248 5.136 24 11 24s10.615-4.752 10.615-10.615c0-2.56-.904-4.906-2.412-6.739h.72v-.738h.74V4.43h.737V3.69h.739v-.738H21.4v-.738h.739v-.738zM19.186 3.69v-.738h-.74v.738h.74zM11 6.154a7.193 7.193 0 014.033 1.23h-.28v.739h-.737c-1.927 2.409-2.414 3.466-3.182 5.414-.871-1.763-1.911-2.978-3.711-3.783l-.02-.006c-.327-.083-.493-.125-.718.19-.23.322-.092.613.183.955a35.212 35.212 0 00.586.703c.547.646 1.095 1.289 1.508 2.035.408.738.877 1.772 1.242 2.574.223.49.406.894.51 1.088.22.406.752.584.955.584.985-.117 1.08-.582 1.242-1.379l.057-.264c.336-1.574.771-3.203 2.824-5.158v-.736h.738V9.6h.74v-.295a7.193 7.193 0 011.26 4.08c0 3.99-3.24 7.23-7.23 7.23s-7.2-3.24-7.2-7.23 3.21-7.23 7.2-7.23z" }) + ] + } + ); +}); + +export { SiSymantec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.cjs new file mode 100644 index 000000000..16bc0eb56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DB3F59"; +const SiSymbolab = React__namespace.forwardRef(function SiSymbolab2({ title = "Symbolab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.382 0C1.513 0 0 1.547 0 3.455v17.09C0 22.451 1.513 24 3.382 24h17.236C22.487 24 24 22.452 24 20.544V3.454C24 1.548 22.485 0 20.618 0zm4.541 6.789c.85 0 1.552.152 2.104.456s.827.68.826 1.132c0 .324-.097.578-.29.764s-.467.276-.81.276c-.192 0-.505-.063-.937-.188s-.76-.19-.98-.19c-.364 0-.653.085-.87.255a.808.808 0 0 0-.324.67c0 .437.477.806 1.431 1.107l.518.161c1.029.345 1.777.779 2.248 1.304s.708 1.177.712 1.958c-.006 1.077-.392 1.949-1.156 2.615S8.622 18.11 7.373 18.11c-.959 0-1.778-.172-2.457-.517s-1.018-.748-1.018-1.21c-.012-.3.108-.592.328-.797s.512-.302.881-.302c.182 0 .563.09 1.144.273s1.07.274 1.468.274c.318.01.627-.106.864-.319a1.03 1.03 0 0 0 .347-.789 1.04 1.04 0 0 0-.357-.82c-.237-.206-.744-.426-1.52-.663-1.127-.335-1.914-.732-2.36-1.192s-.671-1.079-.67-1.856c0-.999.361-1.816 1.085-2.452s1.662-.952 2.815-.951zm6.338 2.886c.254-.01.504.078.697.245.178.163.349.465.512.908l1.344 3.592 1.465-3.793a1.85 1.85 0 0 1 .432-.723.9.9 0 0 1 .63-.229 1.17 1.17 0 0 1 .848.307c.21.204.314.48.314.83a1.55 1.55 0 0 1-.05.374l-.004.002a3.494 3.494 0 0 1-.146.45l-3.626 8.619c-.152.363-.308.617-.465.757a.841.841 0 0 1-.577.21c-.363 0-.65-.104-.862-.31s-.32-.486-.321-.841c0-.137.017-.273.051-.405.036-.143.085-.282.148-.414l.98-2.125-2.404-5.607a1.341 1.341 0 0 1-.09-.292 2.155 2.155 0 0 1-.028-.374 1.154 1.154 0 0 1 .332-.84c.214-.223.511-.348.82-.341z" }) + ] + } + ); +}); + +exports.default = SiSymbolab; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.d.ts new file mode 100644 index 000000000..c9c3853b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DB3F59"; +declare const SiSymbolab: IconType; +export { SiSymbolab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.mjs new file mode 100644 index 000000000..5405d34ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymbolab.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DB3F59"; +const SiSymbolab = React.forwardRef(function SiSymbolab2({ title = "Symbolab", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.382 0C1.513 0 0 1.547 0 3.455v17.09C0 22.451 1.513 24 3.382 24h17.236C22.487 24 24 22.452 24 20.544V3.454C24 1.548 22.485 0 20.618 0zm4.541 6.789c.85 0 1.552.152 2.104.456s.827.68.826 1.132c0 .324-.097.578-.29.764s-.467.276-.81.276c-.192 0-.505-.063-.937-.188s-.76-.19-.98-.19c-.364 0-.653.085-.87.255a.808.808 0 0 0-.324.67c0 .437.477.806 1.431 1.107l.518.161c1.029.345 1.777.779 2.248 1.304s.708 1.177.712 1.958c-.006 1.077-.392 1.949-1.156 2.615S8.622 18.11 7.373 18.11c-.959 0-1.778-.172-2.457-.517s-1.018-.748-1.018-1.21c-.012-.3.108-.592.328-.797s.512-.302.881-.302c.182 0 .563.09 1.144.273s1.07.274 1.468.274c.318.01.627-.106.864-.319a1.03 1.03 0 0 0 .347-.789 1.04 1.04 0 0 0-.357-.82c-.237-.206-.744-.426-1.52-.663-1.127-.335-1.914-.732-2.36-1.192s-.671-1.079-.67-1.856c0-.999.361-1.816 1.085-2.452s1.662-.952 2.815-.951zm6.338 2.886c.254-.01.504.078.697.245.178.163.349.465.512.908l1.344 3.592 1.465-3.793a1.85 1.85 0 0 1 .432-.723.9.9 0 0 1 .63-.229 1.17 1.17 0 0 1 .848.307c.21.204.314.48.314.83a1.55 1.55 0 0 1-.05.374l-.004.002a3.494 3.494 0 0 1-.146.45l-3.626 8.619c-.152.363-.308.617-.465.757a.841.841 0 0 1-.577.21c-.363 0-.65-.104-.862-.31s-.32-.486-.321-.841c0-.137.017-.273.051-.405.036-.143.085-.282.148-.414l.98-2.125-2.404-5.607a1.341 1.341 0 0 1-.09-.292 2.155 2.155 0 0 1-.028-.374 1.154 1.154 0 0 1 .332-.84c.214-.223.511-.348.82-.341z" }) + ] + } + ); +}); + +export { SiSymbolab as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.cjs new file mode 100644 index 000000000..f8d09a549 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiSymfony = React__namespace.forwardRef(function SiSymfony2({ title = "Symfony", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.628-5.372 12-12 12S0 18.628 0 12 5.372 0 12 0s12 5.372 12 12zm-6.753-7.561c-1.22.042-2.283.715-3.075 1.644-.878 1.02-1.461 2.229-1.881 3.461-.753-.614-1.332-1.414-2.539-1.761-.966-.297-2.015-.105-2.813.514-.41.319-.71.757-.861 1.254-.36 1.176.381 2.225.719 2.6l.737.79c.15.154.519.56.339 1.138-.193.631-.951 1.037-1.732.799-.348-.106-.848-.366-.734-.73.045-.15.152-.263.21-.391.052-.11.077-.194.095-.242.141-.465-.053-1.07-.551-1.223-.465-.143-.939-.03-1.125.566-.209.68.117 1.913 1.86 2.449 2.04.628 3.765-.484 4.009-1.932.153-.907-.255-1.582-1.006-2.447l-.612-.677c-.371-.37-.497-1.002-.114-1.485.324-.409.785-.584 1.539-.379 1.103.3 1.594 1.063 2.412 1.68-.338 1.11-.56 2.223-.759 3.222l-.123.746c-.585 3.07-1.033 4.757-2.194 5.726-.234.166-.57.416-1.073.434-.266.005-.352-.176-.355-.257-.006-.184.15-.271.255-.353.154-.083.39-.224.372-.674-.016-.532-.456-.994-1.094-.973-.477.017-1.203.465-1.176 1.286.028.85.819 1.485 2.012 1.444.638-.021 2.062-.281 3.464-1.949 1.633-1.911 2.09-4.101 2.434-5.706l.383-2.116c.213.024.441.042.69.048 2.032.044 3.049-1.01 3.064-1.776.01-.464-.304-.921-.744-.91-.386.009-.718.278-.806.654-.094.428.646.813.068 1.189-.41.266-1.146.452-2.184.3l.188-1.042c.386-1.976.859-4.407 2.661-4.467.132-.007.612.006.623.323.003.105-.022.134-.147.375-.115.155-.174.345-.168.537.017.504.4.836.957.816.743-.023.955-.748.945-1.119-.032-.874-.952-1.424-2.17-1.386z" }) + ] + } + ); +}); + +exports.default = SiSymfony; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.d.ts new file mode 100644 index 000000000..d6ee018a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiSymfony: IconType; +export { SiSymfony as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.mjs new file mode 100644 index 000000000..d925a16d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymfony.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiSymfony = React.forwardRef(function SiSymfony2({ title = "Symfony", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.628-5.372 12-12 12S0 18.628 0 12 5.372 0 12 0s12 5.372 12 12zm-6.753-7.561c-1.22.042-2.283.715-3.075 1.644-.878 1.02-1.461 2.229-1.881 3.461-.753-.614-1.332-1.414-2.539-1.761-.966-.297-2.015-.105-2.813.514-.41.319-.71.757-.861 1.254-.36 1.176.381 2.225.719 2.6l.737.79c.15.154.519.56.339 1.138-.193.631-.951 1.037-1.732.799-.348-.106-.848-.366-.734-.73.045-.15.152-.263.21-.391.052-.11.077-.194.095-.242.141-.465-.053-1.07-.551-1.223-.465-.143-.939-.03-1.125.566-.209.68.117 1.913 1.86 2.449 2.04.628 3.765-.484 4.009-1.932.153-.907-.255-1.582-1.006-2.447l-.612-.677c-.371-.37-.497-1.002-.114-1.485.324-.409.785-.584 1.539-.379 1.103.3 1.594 1.063 2.412 1.68-.338 1.11-.56 2.223-.759 3.222l-.123.746c-.585 3.07-1.033 4.757-2.194 5.726-.234.166-.57.416-1.073.434-.266.005-.352-.176-.355-.257-.006-.184.15-.271.255-.353.154-.083.39-.224.372-.674-.016-.532-.456-.994-1.094-.973-.477.017-1.203.465-1.176 1.286.028.85.819 1.485 2.012 1.444.638-.021 2.062-.281 3.464-1.949 1.633-1.911 2.09-4.101 2.434-5.706l.383-2.116c.213.024.441.042.69.048 2.032.044 3.049-1.01 3.064-1.776.01-.464-.304-.921-.744-.91-.386.009-.718.278-.806.654-.094.428.646.813.068 1.189-.41.266-1.146.452-2.184.3l.188-1.042c.386-1.976.859-4.407 2.661-4.467.132-.007.612.006.623.323.003.105-.022.134-.147.375-.115.155-.174.345-.168.537.017.504.4.836.957.816.743-.023.955-.748.945-1.119-.032-.874-.952-1.424-2.17-1.386z" }) + ] + } + ); +}); + +export { SiSymfony as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.cjs new file mode 100644 index 000000000..130b34dae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0098FF"; +const SiSymphony = React__namespace.forwardRef(function SiSymphony2({ title = "Symphony", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.471 8.118v-4.22c0-.864-.468-1.677-1.22-2.12C18.124 1.113 15.684 0 12 0S5.876 1.113 4.75 1.777a2.476 2.476 0 0 0-1.22 2.12v6.338l13.412 3.882v2.824c0 .382-.24.65-.648.849L12 19.941l-4.315-2.162c-.386-.188-.626-.456-.626-.838v-2.118L3.53 13.764v3.177c0 1.744 1 3.228 2.588 4.001L12 24l5.86-3.047c1.61-.784 2.61-2.268 2.61-4.011v-5.294L7.059 7.765V4.542C8.017 4.08 9.651 3.529 12 3.529c2.349 0 3.983.55 4.941 1.013v2.517l3.53 1.059z" }) + ] + } + ); +}); + +exports.default = SiSymphony; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.d.ts new file mode 100644 index 000000000..85d5e1de6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0098FF"; +declare const SiSymphony: IconType; +export { SiSymphony as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.mjs new file mode 100644 index 000000000..d3914327c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSymphony.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0098FF"; +const SiSymphony = React.forwardRef(function SiSymphony2({ title = "Symphony", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.471 8.118v-4.22c0-.864-.468-1.677-1.22-2.12C18.124 1.113 15.684 0 12 0S5.876 1.113 4.75 1.777a2.476 2.476 0 0 0-1.22 2.12v6.338l13.412 3.882v2.824c0 .382-.24.65-.648.849L12 19.941l-4.315-2.162c-.386-.188-.626-.456-.626-.838v-2.118L3.53 13.764v3.177c0 1.744 1 3.228 2.588 4.001L12 24l5.86-3.047c1.61-.784 2.61-2.268 2.61-4.011v-5.294L7.059 7.765V4.542C8.017 4.08 9.651 3.529 12 3.529c2.349 0 3.983.55 4.941 1.013v2.517l3.53 1.059z" }) + ] + } + ); +}); + +export { SiSymphony as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.cjs new file mode 100644 index 000000000..7dfec714c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B5526"; +const SiSympy = React__namespace.forwardRef(function SiSympy2({ title = "SymPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.836 17.793a.55.55 0 0 0 .087-.281c.004-.11-.024-.183-.083-.221-.054-.04-.122-.044-.202-.012a.51.51 0 0 0-.216.18.542.542 0 0 0-.094.293c-.008.224.064.37.215.44.156.067.338.06.546-.025.383-.154.697-.476.943-.966.24-.466.374-.953.4-1.458.162.948-.068 1.997-.646 2.765a2.99 2.99 0 0 1-.672.39l-1 .3a7.28 7.28 0 0 1-.493.082v-5.656c.828.222 1.664.468 2.272 1.015l-.045 1.278c-.042 1.188-.293 1.875-.75 2.06-.185.074-.337.076-.456.005a.554.554 0 0 0 .194-.19zm.366-11.578c-.128-.045-.388-.114-.55-.157-.234-.062-.537-.142-.696-.157a1.46 1.46 0 0 0-.48.03c-.073.02-.26.083-.041.16.124.047.31.096.517.15.158.043.456.122.633.154.25.045.484.017.595-.012.092-.024.246-.086.022-.168zm4.53-1.354c.255.04.521.08.783.135l.995.348-2.996.9-5.066 1.52-2.7-.81c.065-.183.153-.358.26-.52l2.832.835.575-.168-.405-.12-.363.106L6.08 6.33a2.33 2.33 0 0 1 .64-.602c1.519-.953 3.292-1.206 4.98-1.172l2.794.826-.363.106.406.12.575-.168-2.93-.866c.765.04 1.507.13 2.193.232zm-4.65 1.103c-.28-.074-.967-.255-1.708-.06-.74.194-.062.376.22.45.283.075.948.25 1.69.056.737-.193.084-.37-.203-.446zm3.748-.5l-.135-.035-.43.113-1.651-.438a.264.264 0 0 0-.172-.003c-.034.01-.04.01-.048.023-.073.105-.39.188-.455.205l-.06.016.134.036.06-.016c.05-.013.216-.058.343-.12l1.482.393-.426.11.135.037c.127-.038.453-.123.603-.163.15-.04.476-.124.62-.158zM8.62 9.542c.13.034.26.07.386.11.674.153 1.37.336 2.044.58.037-.47.166-.925.387-1.36.25-.49.567-.814.95-.968.208-.084.388-.09.54-.022.155.067.23.213.221.437a.536.536 0 0 1-.102.304.467.467 0 0 1-.207.168c-.08.032-.15.032-.21 0-.054-.04-.08-.118-.076-.233a.55.55 0 0 1 .087-.28.548.548 0 0 1 .195-.19c-.12-.07-.27-.069-.455.005-.46.185-.71.87-.751 2.06l-.01.303c.721.308 1.403.7 1.99 1.217v-.796c0-.282-.03-.312-.305-.227v-.178l.563-.24v1.682c.293.293.557.622.783.995.156.252.273.516.362.79.11-.193.166-.517.21-.796l.09-.55c.035-.225.082-.52.082-.659 0-.23-.074-.34-.188-.304-.156.05-.36.337-.465.864-.02.098-.02.104-.07.12-.02.006-.06.018-.06-.04 0-.13.212-.95.603-1.072.098-.03.29-.044.375.274.04-.12.168-.443.383-.51.113-.036.34-.038.34.255 0 .224-.12.343-.192.365-.102.032-.137-.067-.137-.14 0 0 0-.219.156-.326-.063-.06-.16-.03-.172-.027-.184.057-.29.407-.344.723l-.133.83c-.03.204-.074.465-.074.603 0 .3.106.335.184.31.164-.05.36-.336.465-.863.02-.098.023-.105.07-.12.027-.01.06-.018.06.04 0 .114-.2.947-.603 1.072-.102.032-.293.028-.37-.275-.039.11-.097.24-.174.344.2.673.242 1.392.284 2.095.01.148.017.294.027.439v.007c.01.342-.003.667-.036.977l1.57-.471V5.588L8.62 8.07zM2.73 8.306l-.146-.044.15.356a4.06 4.06 0 0 1-.005-.312zM8.274 19.32v-5.79a19.334 19.334 0 0 1-.462-.13c-1.38-.314-2.726-1.096-3.894-2.26a2.85 2.85 0 0 1-.182-.164l.656 1.547c.026.058.062.132.062.194 0 0 0 .075-.08.176l-2.213 2.888 2.434.741c1.385.42 1.984.265 2.143-1.781l.22.067-.247 2.884-4.895-1.49c-.132-.04-.22-.067-.22-.205 0-.038 0-.063.088-.174l2.1-2.76-2.197-5.207c0-.288.018-.283.23-.22l.93.285c.045-.488.157-.97.322-1.414L0 5.588v11.277l8.204 2.46zm0-9.862V8.07L5.66 7.286c-.06.33-.06.785.214 1.215.566.548 1.373.728 2.154.9zM3.398 5.661L2.19 5.304l.575-.168.406.12-.363.106.644.19c.1-.19.21-.37.332-.538l-.09-.024.06-.016.073-.02a3.84 3.84 0 0 1 1.798-1.342c1.04-.456 2.195-.733 3.538-.84l-.716-.25-8.062 2.82 2.798.84a4.59 4.59 0 0 1 .214-.52zm17.455.147a.145.145 0 0 0-.145.146.145.145 0 0 0 .145.145.145.145 0 0 0 .144-.146.14.14 0 0 0-.043-.103.139.139 0 0 0-.1-.042zm-.89 1.76a.106.106 0 0 1-.038.077.16.16 0 0 1-.108.04c-.078 0-.145-.053-.145-.116 0-.037.023-.063.037-.076a.16.16 0 0 1 .108-.04c.08 0 .145.053.145.115zm3.313 1.245c-.3 0-.397-.13-.53-.31a52.78 52.78 0 0 0-.319-.409c.21-.316.174-.683-.104-1-.226-.262-.407-.606-.58-.938-.195-.368-.395-.75-.648-1.003-.212-.212-.65-.45-1.177-.642-.864.145-1.588.158-2.5-.21-1.663-.703-3.578-1.106-5.693-1.2-2.47-.138-4.366.126-5.965.83l-.015.005C4.667 4.31 3.81 5.26 3.45 6.48a.075.075 0 0 1-.005.016c-.577 1.43-.584 3.342.7 4.385a.154.154 0 0 1 .012.012c1.125 1.124 2.418 1.876 3.74 2.176a21.66 21.66 0 0 0 .668.186c1.085.29 2.207.59 2.918 1.52.008.01.014.02.02.033.573 1.243.39 2.822-.455 3.93a.206.206 0 0 1-.03.03c-.634.508-1.57.807-2.855.912-.02.002-.04 0-.06-.006a150.044 150.044 0 0 1-2.6-.748c-.867-.254-1.762-.517-2.584-.743a6.03 6.03 0 0 1-.554-.17l.144.182c.225.286.566.718.714.845l.007.006c1.33 1.274 2.46 1.73 3.967 2.09 1.894.439 3.556.56 5.506-.273 1.633-1.02 2.37-2.447 2.316-4.49-.01-.145-.02-.292-.027-.439-.058-.99-.12-2.01-.632-2.843-1.16-1.907-3.398-2.64-5.434-3.103a.057.057 0 0 1-.014-.004c-.306-.098-.623-.168-.96-.243-.833-.186-1.696-.378-2.333-1.006a.123.123 0 0 1-.023-.028C5.303 8.26 5.212 7.7 5.34 7.13a2.753 2.753 0 0 1 1.2-1.696c2.454-1.542 5.506-1.329 7.89-.97l.354.056c.82.126 1.84.283 2.462.877a.172.172 0 0 1 .053.13c-.015.48.163.723.37 1.005.133.184.285.393.387.678.33.805 1.12.905 1.955 1.01.337.044.686.088 1 .183a.275.275 0 0 1 .035.015c.433.248.91.127 1.206-.128.093.118.262.335.284.365.13.176.278.374.624.41.005.087-.001.185-.006.28a3.58 3.58 0 0 0-.008.206h.259c0-.058.004-.122.008-.19.006-.096.011-.194.007-.288h.309L24 9.07v-.258zM5.666 19.418c0 .15-.322.27-.72.27-.4 0-.722-.12-.722-.27 0-.15.323-.27.72-.27.4 0 .723.12.723.27zm2.555.997c0 .235-.315.426-.703.426-.39 0-.704-.19-.704-.425 0-.236.315-.427.703-.427.388 0 .704.19.704.426zm3.534.108c0 .283-.343.513-.767.513s-.768-.23-.768-.512c0-.284.343-.514.767-.514s.768.228.768.513zm1.21-1.177c-.353 0-.64-.3-.64-.67 0-.37.287-.67.64-.67.353 0 .64.3.64.67a.655.655 0 0 1-.64.67zm.641-4.023c.37 0 .67.368.67.823 0 .455-.3.823-.67.823-.37 0-.67-.368-.67-.823 0-.455.3-.823.67-.823zm-1.402-2.926c.404 0 .73.34.73.762 0 .42-.326.762-.73.762-.404 0-.731-.34-.731-.762 0-.42.327-.762.731-.762zm-4.206-.853c0-.438.396-.792.884-.792s.884.355.884.792c0 .438-.395.793-.883.793s-.884-.354-.885-.792zM3.853 7.23c0-.286.246-.518.55-.518.302 0 .548.232.548.518 0 .286-.247.518-.55.518-.303 0-.548-.232-.548-.518zm1.574 1.943a.72.72 0 0 1 .73.708.72.72 0 0 1-.73.708.72.72 0 0 1-.73-.708.72.72 0 0 1 .73-.708zm.68-3.937c0 .252-.231.457-.517.457-.286 0-.518-.204-.518-.457 0-.252.232-.457.518-.457.286 0 .518.204.518.457zm1.7-1.088c0 .185-.191.336-.426.337-.236 0-.427-.15-.427-.336 0-.186.19-.336.426-.337.236.001.427.151.427.336zm1.95-.475c0 .168-.162.305-.364.305-.202 0-.366-.136-.366-.304 0-.169.163-.306.365-.306.202 0 .366.136.366.305zm2.178-.078c0 .135-.15.244-.335.244-.185 0-.335-.109-.336-.243 0-.136.15-.244.335-.244.185 0 .335.107.336.243zm1.592.382c-.144 0-.26-.1-.26-.226 0-.125.116-.226.26-.226.144 0 .26.101.26.226s-.117.226-.26.226zm2.11.118c0 .118-.12.213-.273.214-.15 0-.274-.095-.275-.213 0-.119.122-.214.274-.215.152 0 .275.095.275.214zm1.565.745c-.1 0-.183-.096-.183-.213 0-.118.082-.214.183-.214.1 0 .183.097.183.214 0 .117-.082.213-.183.213zm3.02 2.73a.358.358 0 0 1-.124.268.42.42 0 0 1-.28.104c-.223 0-.404-.167-.405-.372a.36.36 0 0 1 .123-.27.42.42 0 0 1 .28-.104c.224 0 .404.167.405.373h-.13zm1.035-1.616a.404.404 0 0 1-.403.405.405.405 0 0 1-.287-.69.405.405 0 0 1 .285-.118.4.4 0 0 1 .286.118.394.394 0 0 1 .12.285z" }) + ] + } + ); +}); + +exports.default = SiSympy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.d.ts new file mode 100644 index 000000000..b0235b62c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B5526"; +declare const SiSympy: IconType; +export { SiSympy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.mjs new file mode 100644 index 000000000..8953bd944 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSympy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B5526"; +const SiSympy = React.forwardRef(function SiSympy2({ title = "SymPy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.836 17.793a.55.55 0 0 0 .087-.281c.004-.11-.024-.183-.083-.221-.054-.04-.122-.044-.202-.012a.51.51 0 0 0-.216.18.542.542 0 0 0-.094.293c-.008.224.064.37.215.44.156.067.338.06.546-.025.383-.154.697-.476.943-.966.24-.466.374-.953.4-1.458.162.948-.068 1.997-.646 2.765a2.99 2.99 0 0 1-.672.39l-1 .3a7.28 7.28 0 0 1-.493.082v-5.656c.828.222 1.664.468 2.272 1.015l-.045 1.278c-.042 1.188-.293 1.875-.75 2.06-.185.074-.337.076-.456.005a.554.554 0 0 0 .194-.19zm.366-11.578c-.128-.045-.388-.114-.55-.157-.234-.062-.537-.142-.696-.157a1.46 1.46 0 0 0-.48.03c-.073.02-.26.083-.041.16.124.047.31.096.517.15.158.043.456.122.633.154.25.045.484.017.595-.012.092-.024.246-.086.022-.168zm4.53-1.354c.255.04.521.08.783.135l.995.348-2.996.9-5.066 1.52-2.7-.81c.065-.183.153-.358.26-.52l2.832.835.575-.168-.405-.12-.363.106L6.08 6.33a2.33 2.33 0 0 1 .64-.602c1.519-.953 3.292-1.206 4.98-1.172l2.794.826-.363.106.406.12.575-.168-2.93-.866c.765.04 1.507.13 2.193.232zm-4.65 1.103c-.28-.074-.967-.255-1.708-.06-.74.194-.062.376.22.45.283.075.948.25 1.69.056.737-.193.084-.37-.203-.446zm3.748-.5l-.135-.035-.43.113-1.651-.438a.264.264 0 0 0-.172-.003c-.034.01-.04.01-.048.023-.073.105-.39.188-.455.205l-.06.016.134.036.06-.016c.05-.013.216-.058.343-.12l1.482.393-.426.11.135.037c.127-.038.453-.123.603-.163.15-.04.476-.124.62-.158zM8.62 9.542c.13.034.26.07.386.11.674.153 1.37.336 2.044.58.037-.47.166-.925.387-1.36.25-.49.567-.814.95-.968.208-.084.388-.09.54-.022.155.067.23.213.221.437a.536.536 0 0 1-.102.304.467.467 0 0 1-.207.168c-.08.032-.15.032-.21 0-.054-.04-.08-.118-.076-.233a.55.55 0 0 1 .087-.28.548.548 0 0 1 .195-.19c-.12-.07-.27-.069-.455.005-.46.185-.71.87-.751 2.06l-.01.303c.721.308 1.403.7 1.99 1.217v-.796c0-.282-.03-.312-.305-.227v-.178l.563-.24v1.682c.293.293.557.622.783.995.156.252.273.516.362.79.11-.193.166-.517.21-.796l.09-.55c.035-.225.082-.52.082-.659 0-.23-.074-.34-.188-.304-.156.05-.36.337-.465.864-.02.098-.02.104-.07.12-.02.006-.06.018-.06-.04 0-.13.212-.95.603-1.072.098-.03.29-.044.375.274.04-.12.168-.443.383-.51.113-.036.34-.038.34.255 0 .224-.12.343-.192.365-.102.032-.137-.067-.137-.14 0 0 0-.219.156-.326-.063-.06-.16-.03-.172-.027-.184.057-.29.407-.344.723l-.133.83c-.03.204-.074.465-.074.603 0 .3.106.335.184.31.164-.05.36-.336.465-.863.02-.098.023-.105.07-.12.027-.01.06-.018.06.04 0 .114-.2.947-.603 1.072-.102.032-.293.028-.37-.275-.039.11-.097.24-.174.344.2.673.242 1.392.284 2.095.01.148.017.294.027.439v.007c.01.342-.003.667-.036.977l1.57-.471V5.588L8.62 8.07zM2.73 8.306l-.146-.044.15.356a4.06 4.06 0 0 1-.005-.312zM8.274 19.32v-5.79a19.334 19.334 0 0 1-.462-.13c-1.38-.314-2.726-1.096-3.894-2.26a2.85 2.85 0 0 1-.182-.164l.656 1.547c.026.058.062.132.062.194 0 0 0 .075-.08.176l-2.213 2.888 2.434.741c1.385.42 1.984.265 2.143-1.781l.22.067-.247 2.884-4.895-1.49c-.132-.04-.22-.067-.22-.205 0-.038 0-.063.088-.174l2.1-2.76-2.197-5.207c0-.288.018-.283.23-.22l.93.285c.045-.488.157-.97.322-1.414L0 5.588v11.277l8.204 2.46zm0-9.862V8.07L5.66 7.286c-.06.33-.06.785.214 1.215.566.548 1.373.728 2.154.9zM3.398 5.661L2.19 5.304l.575-.168.406.12-.363.106.644.19c.1-.19.21-.37.332-.538l-.09-.024.06-.016.073-.02a3.84 3.84 0 0 1 1.798-1.342c1.04-.456 2.195-.733 3.538-.84l-.716-.25-8.062 2.82 2.798.84a4.59 4.59 0 0 1 .214-.52zm17.455.147a.145.145 0 0 0-.145.146.145.145 0 0 0 .145.145.145.145 0 0 0 .144-.146.14.14 0 0 0-.043-.103.139.139 0 0 0-.1-.042zm-.89 1.76a.106.106 0 0 1-.038.077.16.16 0 0 1-.108.04c-.078 0-.145-.053-.145-.116 0-.037.023-.063.037-.076a.16.16 0 0 1 .108-.04c.08 0 .145.053.145.115zm3.313 1.245c-.3 0-.397-.13-.53-.31a52.78 52.78 0 0 0-.319-.409c.21-.316.174-.683-.104-1-.226-.262-.407-.606-.58-.938-.195-.368-.395-.75-.648-1.003-.212-.212-.65-.45-1.177-.642-.864.145-1.588.158-2.5-.21-1.663-.703-3.578-1.106-5.693-1.2-2.47-.138-4.366.126-5.965.83l-.015.005C4.667 4.31 3.81 5.26 3.45 6.48a.075.075 0 0 1-.005.016c-.577 1.43-.584 3.342.7 4.385a.154.154 0 0 1 .012.012c1.125 1.124 2.418 1.876 3.74 2.176a21.66 21.66 0 0 0 .668.186c1.085.29 2.207.59 2.918 1.52.008.01.014.02.02.033.573 1.243.39 2.822-.455 3.93a.206.206 0 0 1-.03.03c-.634.508-1.57.807-2.855.912-.02.002-.04 0-.06-.006a150.044 150.044 0 0 1-2.6-.748c-.867-.254-1.762-.517-2.584-.743a6.03 6.03 0 0 1-.554-.17l.144.182c.225.286.566.718.714.845l.007.006c1.33 1.274 2.46 1.73 3.967 2.09 1.894.439 3.556.56 5.506-.273 1.633-1.02 2.37-2.447 2.316-4.49-.01-.145-.02-.292-.027-.439-.058-.99-.12-2.01-.632-2.843-1.16-1.907-3.398-2.64-5.434-3.103a.057.057 0 0 1-.014-.004c-.306-.098-.623-.168-.96-.243-.833-.186-1.696-.378-2.333-1.006a.123.123 0 0 1-.023-.028C5.303 8.26 5.212 7.7 5.34 7.13a2.753 2.753 0 0 1 1.2-1.696c2.454-1.542 5.506-1.329 7.89-.97l.354.056c.82.126 1.84.283 2.462.877a.172.172 0 0 1 .053.13c-.015.48.163.723.37 1.005.133.184.285.393.387.678.33.805 1.12.905 1.955 1.01.337.044.686.088 1 .183a.275.275 0 0 1 .035.015c.433.248.91.127 1.206-.128.093.118.262.335.284.365.13.176.278.374.624.41.005.087-.001.185-.006.28a3.58 3.58 0 0 0-.008.206h.259c0-.058.004-.122.008-.19.006-.096.011-.194.007-.288h.309L24 9.07v-.258zM5.666 19.418c0 .15-.322.27-.72.27-.4 0-.722-.12-.722-.27 0-.15.323-.27.72-.27.4 0 .723.12.723.27zm2.555.997c0 .235-.315.426-.703.426-.39 0-.704-.19-.704-.425 0-.236.315-.427.703-.427.388 0 .704.19.704.426zm3.534.108c0 .283-.343.513-.767.513s-.768-.23-.768-.512c0-.284.343-.514.767-.514s.768.228.768.513zm1.21-1.177c-.353 0-.64-.3-.64-.67 0-.37.287-.67.64-.67.353 0 .64.3.64.67a.655.655 0 0 1-.64.67zm.641-4.023c.37 0 .67.368.67.823 0 .455-.3.823-.67.823-.37 0-.67-.368-.67-.823 0-.455.3-.823.67-.823zm-1.402-2.926c.404 0 .73.34.73.762 0 .42-.326.762-.73.762-.404 0-.731-.34-.731-.762 0-.42.327-.762.731-.762zm-4.206-.853c0-.438.396-.792.884-.792s.884.355.884.792c0 .438-.395.793-.883.793s-.884-.354-.885-.792zM3.853 7.23c0-.286.246-.518.55-.518.302 0 .548.232.548.518 0 .286-.247.518-.55.518-.303 0-.548-.232-.548-.518zm1.574 1.943a.72.72 0 0 1 .73.708.72.72 0 0 1-.73.708.72.72 0 0 1-.73-.708.72.72 0 0 1 .73-.708zm.68-3.937c0 .252-.231.457-.517.457-.286 0-.518-.204-.518-.457 0-.252.232-.457.518-.457.286 0 .518.204.518.457zm1.7-1.088c0 .185-.191.336-.426.337-.236 0-.427-.15-.427-.336 0-.186.19-.336.426-.337.236.001.427.151.427.336zm1.95-.475c0 .168-.162.305-.364.305-.202 0-.366-.136-.366-.304 0-.169.163-.306.365-.306.202 0 .366.136.366.305zm2.178-.078c0 .135-.15.244-.335.244-.185 0-.335-.109-.336-.243 0-.136.15-.244.335-.244.185 0 .335.107.336.243zm1.592.382c-.144 0-.26-.1-.26-.226 0-.125.116-.226.26-.226.144 0 .26.101.26.226s-.117.226-.26.226zm2.11.118c0 .118-.12.213-.273.214-.15 0-.274-.095-.275-.213 0-.119.122-.214.274-.215.152 0 .275.095.275.214zm1.565.745c-.1 0-.183-.096-.183-.213 0-.118.082-.214.183-.214.1 0 .183.097.183.214 0 .117-.082.213-.183.213zm3.02 2.73a.358.358 0 0 1-.124.268.42.42 0 0 1-.28.104c-.223 0-.404-.167-.405-.372a.36.36 0 0 1 .123-.27.42.42 0 0 1 .28-.104c.224 0 .404.167.405.373h-.13zm1.035-1.616a.404.404 0 0 1-.403.405.405.405 0 0 1-.287-.69.405.405 0 0 1 .285-.118.4.4 0 0 1 .286.118.394.394 0 0 1 .12.285z" }) + ] + } + ); +}); + +export { SiSympy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.cjs new file mode 100644 index 000000000..b7e2055c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0891D1"; +const SiSyncthing = React__namespace.forwardRef(function SiSyncthing2({ title = "Syncthing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 2.412c3.115 0 5.885 1.5 7.629 3.815a1.834 1.834 0 0 1 1.564 3.162c.23.818.354 1.68.354 2.57a9.504 9.504 0 0 1-2.166 6.05c.128.281.189.595.162.92a1.854 1.854 0 0 1-2.004 1.678 1.86 1.86 0 0 1-.877-.322A9.486 9.486 0 0 1 12 21.505c-3.84 0-7.154-2.277-8.668-5.552-.3-.01-.601-.092-.879-.254-.858-.51-1.144-1.634-.633-2.513.164-.276.39-.493.653-.643a9.62 9.62 0 0 1-.02-.584c0-5.265 4.282-9.547 9.547-9.547zm0 1.227a8.311 8.311 0 0 0-8.31 8.683c.22.036.439.111.644.23.323.2.564.484.713.805l6.984-.644a1.78 1.78 0 0 1 .787-1.08c.288-.19.612-.286.936-.295.34-.01.68.08.978.254l3.51-2.914a1.82 1.82 0 0 1 .317-1.84A8.3 8.3 0 0 0 12 3.638zm7.027 5.98-3.502 2.91a1.829 1.829 0 0 1-.23 1.719l1.904 2.744c.212-.06.436-.085.668-.066.238.024.46.092.66.193a8.285 8.285 0 0 0 1.793-5.16 8.38 8.38 0 0 0-.265-2.092 1.835 1.835 0 0 1-1.028-.248zm-6.886 4.315-6.975.644a1.8 1.8 0 0 1-.66 1.004A8.312 8.312 0 0 0 12 20.279a8.294 8.294 0 0 0 3.938-.986 1.845 1.845 0 0 1-.075-.69c.028-.341.148-.65.332-.908L14.29 14.95a1.839 1.839 0 0 1-2.148-1.015z" }) + ] + } + ); +}); + +exports.default = SiSyncthing; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.d.ts new file mode 100644 index 000000000..971a82819 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0891D1"; +declare const SiSyncthing: IconType; +export { SiSyncthing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.mjs new file mode 100644 index 000000000..dd85498c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSyncthing.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0891D1"; +const SiSyncthing = React.forwardRef(function SiSyncthing2({ title = "Syncthing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm0 2.412c3.115 0 5.885 1.5 7.629 3.815a1.834 1.834 0 0 1 1.564 3.162c.23.818.354 1.68.354 2.57a9.504 9.504 0 0 1-2.166 6.05c.128.281.189.595.162.92a1.854 1.854 0 0 1-2.004 1.678 1.86 1.86 0 0 1-.877-.322A9.486 9.486 0 0 1 12 21.505c-3.84 0-7.154-2.277-8.668-5.552-.3-.01-.601-.092-.879-.254-.858-.51-1.144-1.634-.633-2.513.164-.276.39-.493.653-.643a9.62 9.62 0 0 1-.02-.584c0-5.265 4.282-9.547 9.547-9.547zm0 1.227a8.311 8.311 0 0 0-8.31 8.683c.22.036.439.111.644.23.323.2.564.484.713.805l6.984-.644a1.78 1.78 0 0 1 .787-1.08c.288-.19.612-.286.936-.295.34-.01.68.08.978.254l3.51-2.914a1.82 1.82 0 0 1 .317-1.84A8.3 8.3 0 0 0 12 3.638zm7.027 5.98-3.502 2.91a1.829 1.829 0 0 1-.23 1.719l1.904 2.744c.212-.06.436-.085.668-.066.238.024.46.092.66.193a8.285 8.285 0 0 0 1.793-5.16 8.38 8.38 0 0 0-.265-2.092 1.835 1.835 0 0 1-1.028-.248zm-6.886 4.315-6.975.644a1.8 1.8 0 0 1-.66 1.004A8.312 8.312 0 0 0 12 20.279a8.294 8.294 0 0 0 3.938-.986 1.845 1.845 0 0 1-.075-.69c.028-.341.148-.65.332-.908L14.29 14.95a1.839 1.839 0 0 1-2.148-1.015z" }) + ] + } + ); +}); + +export { SiSyncthing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.cjs new file mode 100644 index 000000000..7ad852000 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B5B5B6"; +const SiSynology = React__namespace.forwardRef(function SiSynology2({ title = "Synology", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.44 8.927l-.889.37.056.117a.623.623 0 0 1 .212-.054c.05 0 .093.017.126.046.033.028.058.081.072.16.015.08.022.29.022.634v2.736c0 .189-.013.316-.042.381a.295.295 0 0 1-.118.142c-.053.031-.147.045-.286.045v.12h1.481v-.12c-.154 0-.261-.017-.32-.048a.29.29 0 0 1-.126-.142c-.026-.06-.04-.187-.04-.378V8.927zm-11.722.34c-.33 0-.608.05-.84.147-.233.1-.411.246-.534.436a1.083 1.083 0 0 0-.185.612c0 .338.131.627.393.864.184.167.507.309.968.422.358.091.587.153.688.191a.7.7 0 0 1 .31.183c.058.07.088.158.088.259 0 .155-.07.291-.21.41-.142.116-.35.176-.628.176-.262 0-.47-.066-.625-.197-.154-.132-.255-.339-.307-.619L0 12.23c.056.48.228.845.517 1.096.289.252.704.378 1.244.378.371 0 .68-.054.93-.156a1.263 1.263 0 0 0 .781-1.169 1.29 1.29 0 0 0-.171-.684 1.203 1.203 0 0 0-.472-.437c-.2-.107-.508-.21-.927-.31-.418-.098-.683-.193-.79-.286a.326.326 0 0 1 .009-.524c.14-.105.336-.156.586-.156.24 0 .422.049.542.145.122.097.199.256.237.471l.864-.028c-.013-.395-.154-.71-.425-.949-.271-.235-.674-.353-1.208-.353zm21.808.33a.475.475 0 1 0-.002.95.475.475 0 0 0 .002-.95zm0 .072a.4.4 0 0 1 .401.403c0 .116-.05.22-.128.294l-.086-.135a.396.396 0 0 0-.065-.078.212.212 0 0 0-.048-.03.2.2 0 0 0 .127-.057.144.144 0 0 0 .043-.109.178.178 0 0 0-.025-.091.125.125 0 0 0-.067-.055.309.309 0 0 0-.123-.02h-.266v.606h.08v-.268h.091c.02 0 .036.001.045.003.013.004.025.007.036.014.013.01.024.023.04.043.015.019.035.049.059.083l.08.125h.043a.396.396 0 0 1-.237.08.405.405 0 0 1-.404-.405c0-.224.18-.403.404-.403zm-.157.191h.191c.044 0 .077.01.097.027a.089.089 0 0 1 .03.07.09.09 0 0 1-.016.055.076.076 0 0 1-.047.035.196.196 0 0 1-.085.013h-.17zm-15.037.6c-.41 0-.752.17-1.023.514v-.455h-.754v3.105h.814v-1.401c0-.348.022-.583.063-.713a.583.583 0 0 1 .234-.306.666.666 0 0 1 .385-.118c.11 0 .208.028.287.082.08.054.135.13.17.229.037.099.054.314.054.646v1.581h.816V11.7a2.54 2.54 0 0 0-.046-.55.925.925 0 0 0-.16-.343.83.83 0 0 0-.341-.25 1.285 1.285 0 0 0-.499-.097zm2.65 0a1.7 1.7 0 0 0-.826.2 1.39 1.39 0 0 0-.571.586 1.684 1.684 0 0 0-.202.793c0 .356.068.657.202.904.134.25.33.438.588.566.259.129.53.194.814.194.46 0 .841-.156 1.144-.463.303-.31.455-.698.455-1.167 0-.465-.15-.85-.451-1.156-.3-.305-.683-.457-1.154-.457zm7.315.05c-.351 0-.64.108-.865.323a1.02 1.02 0 0 0-.336.77c0 .194.05.371.147.534.1.162.24.285.423.379-.223.187-.366.335-.429.44a.55.55 0 0 0-.092.271c0 .068.024.13.071.184.046.056.127.116.24.187a9.626 9.626 0 0 0-.329.355c-.113.145-.19.253-.226.336a.41.41 0 0 0-.034.157c0 .12.081.232.246.343.291.19.649.284 1.071.284.55 0 .996-.16 1.337-.477.232-.216.35-.45.35-.694a.613.613 0 0 0-.183-.45.838.838 0 0 0-.49-.227 8.478 8.478 0 0 0-.878-.053 4.257 4.257 0 0 1-.46-.027c-.105-.015-.177-.04-.212-.075-.038-.037-.056-.072-.056-.112a.37.37 0 0 1 .05-.159.868.868 0 0 1 .186-.221c.156.049.309.07.459.07.36 0 .648-.1.864-.301a.956.956 0 0 0 .323-.722c0-.247-.062-.45-.187-.61h.394c.097 0 .15-.002.167-.01a.056.056 0 0 0 .035-.025.289.289 0 0 0 .018-.12.214.214 0 0 0-.02-.105.083.083 0 0 0-.033-.028.83.83 0 0 0-.166-.008h-.639a1.307 1.307 0 0 0-.746-.21zm-2.752 0c-.252 0-.49.065-.714.194a1.437 1.437 0 0 0-.546.61 1.816 1.816 0 0 0-.205.825c0 .381.114.724.34 1.03a1.29 1.29 0 0 0 1.09.543c.28 0 .532-.07.76-.211.23-.14.409-.35.54-.627.13-.276.194-.55.194-.821 0-.385-.118-.725-.354-1.022a1.344 1.344 0 0 0-1.105-.522zm-12.182.009l1.174 3.113a1.193 1.193 0 0 1-.21.431c-.09.112-.23.167-.419.167-.102 0-.218-.013-.344-.04l.067.645c.152.033.307.052.464.052.155 0 .294-.019.418-.052a1.04 1.04 0 0 0 .31-.138.862.862 0 0 0 .224-.234 2.2 2.2 0 0 0 .205-.414l.199-.545 1.085-2.985h-.844l-.722 2.204-.74-2.204zm16.631.078v.122a.84.84 0 0 1 .245.091c.035.029.08.08.136.157.072.102.125.186.158.255l1.088 2.275-.213.526c-.079.194-.158.326-.236.393-.08.068-.15.104-.217.104a.878.878 0 0 1-.167-.05.924.924 0 0 0-.3-.07c-.105 0-.19.025-.25.084a.286.286 0 0 0-.092.22c0 .098.042.183.126.257a.457.457 0 0 0 .322.112c.18 0 .366-.072.56-.223.193-.15.35-.37.469-.664l1.226-3.014a1.6 1.6 0 0 1 .113-.254.55.55 0 0 1 .145-.146.473.473 0 0 1 .188-.053v-.122h-.978v.122c.093 0 .16.008.197.023a.172.172 0 0 1 .083.057.146.146 0 0 1 .023.087c0 .091-.019.18-.056.271l-.675 1.671-.737-1.53c-.074-.15-.11-.268-.11-.356a.21.21 0 0 1 .074-.16.346.346 0 0 1 .224-.063h.068v-.122zm-1.753.08c.175 0 .316.074.43.217.15.196.224.466.224.815 0 .265-.053.46-.16.584a.516.516 0 0 1-.41.188.528.528 0 0 1-.43-.216c-.149-.19-.223-.458-.223-.802 0-.268.054-.461.163-.59a.515.515 0 0 1 .406-.197zm-2.798.054c.242 0 .44.102.598.312.23.308.346.727.346 1.263 0 .429-.07.73-.209.905a.646.646 0 0 1-.528.264c-.286 0-.516-.161-.691-.477-.174-.32-.263-.695-.263-1.135 0-.272.037-.493.11-.669a.731.731 0 0 1 .285-.361.667.667 0 0 1 .352-.102zm-4.463.395c.216 0 .396.084.543.247.144.162.216.397.216.703 0 .311-.072.55-.216.712a.695.695 0 0 1-.543.248.695.695 0 0 1-.542-.248c-.147-.161-.22-.398-.22-.708 0-.308.073-.545.22-.707a.704.704 0 0 1 .542-.247zm6.66 2.498c.265.036.647.065 1.142.08.34.007.566.034.68.083.113.048.17.13.17.241 0 .157-.094.304-.282.442-.19.138-.48.208-.874.208-.414 0-.732-.07-.951-.204-.128-.078-.19-.168-.19-.277 0-.078.024-.169.076-.26a1.51 1.51 0 0 1 .228-.313z" }) + ] + } + ); +}); + +exports.default = SiSynology; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.d.ts new file mode 100644 index 000000000..65507f9d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B5B5B6"; +declare const SiSynology: IconType; +export { SiSynology as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.mjs new file mode 100644 index 000000000..d3963ce0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSynology.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B5B5B6"; +const SiSynology = React.forwardRef(function SiSynology2({ title = "Synology", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.44 8.927l-.889.37.056.117a.623.623 0 0 1 .212-.054c.05 0 .093.017.126.046.033.028.058.081.072.16.015.08.022.29.022.634v2.736c0 .189-.013.316-.042.381a.295.295 0 0 1-.118.142c-.053.031-.147.045-.286.045v.12h1.481v-.12c-.154 0-.261-.017-.32-.048a.29.29 0 0 1-.126-.142c-.026-.06-.04-.187-.04-.378V8.927zm-11.722.34c-.33 0-.608.05-.84.147-.233.1-.411.246-.534.436a1.083 1.083 0 0 0-.185.612c0 .338.131.627.393.864.184.167.507.309.968.422.358.091.587.153.688.191a.7.7 0 0 1 .31.183c.058.07.088.158.088.259 0 .155-.07.291-.21.41-.142.116-.35.176-.628.176-.262 0-.47-.066-.625-.197-.154-.132-.255-.339-.307-.619L0 12.23c.056.48.228.845.517 1.096.289.252.704.378 1.244.378.371 0 .68-.054.93-.156a1.263 1.263 0 0 0 .781-1.169 1.29 1.29 0 0 0-.171-.684 1.203 1.203 0 0 0-.472-.437c-.2-.107-.508-.21-.927-.31-.418-.098-.683-.193-.79-.286a.326.326 0 0 1 .009-.524c.14-.105.336-.156.586-.156.24 0 .422.049.542.145.122.097.199.256.237.471l.864-.028c-.013-.395-.154-.71-.425-.949-.271-.235-.674-.353-1.208-.353zm21.808.33a.475.475 0 1 0-.002.95.475.475 0 0 0 .002-.95zm0 .072a.4.4 0 0 1 .401.403c0 .116-.05.22-.128.294l-.086-.135a.396.396 0 0 0-.065-.078.212.212 0 0 0-.048-.03.2.2 0 0 0 .127-.057.144.144 0 0 0 .043-.109.178.178 0 0 0-.025-.091.125.125 0 0 0-.067-.055.309.309 0 0 0-.123-.02h-.266v.606h.08v-.268h.091c.02 0 .036.001.045.003.013.004.025.007.036.014.013.01.024.023.04.043.015.019.035.049.059.083l.08.125h.043a.396.396 0 0 1-.237.08.405.405 0 0 1-.404-.405c0-.224.18-.403.404-.403zm-.157.191h.191c.044 0 .077.01.097.027a.089.089 0 0 1 .03.07.09.09 0 0 1-.016.055.076.076 0 0 1-.047.035.196.196 0 0 1-.085.013h-.17zm-15.037.6c-.41 0-.752.17-1.023.514v-.455h-.754v3.105h.814v-1.401c0-.348.022-.583.063-.713a.583.583 0 0 1 .234-.306.666.666 0 0 1 .385-.118c.11 0 .208.028.287.082.08.054.135.13.17.229.037.099.054.314.054.646v1.581h.816V11.7a2.54 2.54 0 0 0-.046-.55.925.925 0 0 0-.16-.343.83.83 0 0 0-.341-.25 1.285 1.285 0 0 0-.499-.097zm2.65 0a1.7 1.7 0 0 0-.826.2 1.39 1.39 0 0 0-.571.586 1.684 1.684 0 0 0-.202.793c0 .356.068.657.202.904.134.25.33.438.588.566.259.129.53.194.814.194.46 0 .841-.156 1.144-.463.303-.31.455-.698.455-1.167 0-.465-.15-.85-.451-1.156-.3-.305-.683-.457-1.154-.457zm7.315.05c-.351 0-.64.108-.865.323a1.02 1.02 0 0 0-.336.77c0 .194.05.371.147.534.1.162.24.285.423.379-.223.187-.366.335-.429.44a.55.55 0 0 0-.092.271c0 .068.024.13.071.184.046.056.127.116.24.187a9.626 9.626 0 0 0-.329.355c-.113.145-.19.253-.226.336a.41.41 0 0 0-.034.157c0 .12.081.232.246.343.291.19.649.284 1.071.284.55 0 .996-.16 1.337-.477.232-.216.35-.45.35-.694a.613.613 0 0 0-.183-.45.838.838 0 0 0-.49-.227 8.478 8.478 0 0 0-.878-.053 4.257 4.257 0 0 1-.46-.027c-.105-.015-.177-.04-.212-.075-.038-.037-.056-.072-.056-.112a.37.37 0 0 1 .05-.159.868.868 0 0 1 .186-.221c.156.049.309.07.459.07.36 0 .648-.1.864-.301a.956.956 0 0 0 .323-.722c0-.247-.062-.45-.187-.61h.394c.097 0 .15-.002.167-.01a.056.056 0 0 0 .035-.025.289.289 0 0 0 .018-.12.214.214 0 0 0-.02-.105.083.083 0 0 0-.033-.028.83.83 0 0 0-.166-.008h-.639a1.307 1.307 0 0 0-.746-.21zm-2.752 0c-.252 0-.49.065-.714.194a1.437 1.437 0 0 0-.546.61 1.816 1.816 0 0 0-.205.825c0 .381.114.724.34 1.03a1.29 1.29 0 0 0 1.09.543c.28 0 .532-.07.76-.211.23-.14.409-.35.54-.627.13-.276.194-.55.194-.821 0-.385-.118-.725-.354-1.022a1.344 1.344 0 0 0-1.105-.522zm-12.182.009l1.174 3.113a1.193 1.193 0 0 1-.21.431c-.09.112-.23.167-.419.167-.102 0-.218-.013-.344-.04l.067.645c.152.033.307.052.464.052.155 0 .294-.019.418-.052a1.04 1.04 0 0 0 .31-.138.862.862 0 0 0 .224-.234 2.2 2.2 0 0 0 .205-.414l.199-.545 1.085-2.985h-.844l-.722 2.204-.74-2.204zm16.631.078v.122a.84.84 0 0 1 .245.091c.035.029.08.08.136.157.072.102.125.186.158.255l1.088 2.275-.213.526c-.079.194-.158.326-.236.393-.08.068-.15.104-.217.104a.878.878 0 0 1-.167-.05.924.924 0 0 0-.3-.07c-.105 0-.19.025-.25.084a.286.286 0 0 0-.092.22c0 .098.042.183.126.257a.457.457 0 0 0 .322.112c.18 0 .366-.072.56-.223.193-.15.35-.37.469-.664l1.226-3.014a1.6 1.6 0 0 1 .113-.254.55.55 0 0 1 .145-.146.473.473 0 0 1 .188-.053v-.122h-.978v.122c.093 0 .16.008.197.023a.172.172 0 0 1 .083.057.146.146 0 0 1 .023.087c0 .091-.019.18-.056.271l-.675 1.671-.737-1.53c-.074-.15-.11-.268-.11-.356a.21.21 0 0 1 .074-.16.346.346 0 0 1 .224-.063h.068v-.122zm-1.753.08c.175 0 .316.074.43.217.15.196.224.466.224.815 0 .265-.053.46-.16.584a.516.516 0 0 1-.41.188.528.528 0 0 1-.43-.216c-.149-.19-.223-.458-.223-.802 0-.268.054-.461.163-.59a.515.515 0 0 1 .406-.197zm-2.798.054c.242 0 .44.102.598.312.23.308.346.727.346 1.263 0 .429-.07.73-.209.905a.646.646 0 0 1-.528.264c-.286 0-.516-.161-.691-.477-.174-.32-.263-.695-.263-1.135 0-.272.037-.493.11-.669a.731.731 0 0 1 .285-.361.667.667 0 0 1 .352-.102zm-4.463.395c.216 0 .396.084.543.247.144.162.216.397.216.703 0 .311-.072.55-.216.712a.695.695 0 0 1-.543.248.695.695 0 0 1-.542-.248c-.147-.161-.22-.398-.22-.708 0-.308.073-.545.22-.707a.704.704 0 0 1 .542-.247zm6.66 2.498c.265.036.647.065 1.142.08.34.007.566.034.68.083.113.048.17.13.17.241 0 .157-.094.304-.282.442-.19.138-.48.208-.874.208-.414 0-.732-.07-.951-.204-.128-.078-.19-.168-.19-.277 0-.078.024-.169.076-.26a1.51 1.51 0 0 1 .228-.313z" }) + ] + } + ); +}); + +export { SiSynology as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.cjs new file mode 100644 index 000000000..3f9d7fefc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#585048"; +const SiSystem76 = React__namespace.forwardRef(function SiSystem762({ title = "System76", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.575.007A11.993 11.993 0 0 0 3.52 20.481l.124.121 6.532-12.11H3.188l1.227 2.066a.632.632 0 0 1 .076.49.677.677 0 0 1-.65.506.636.636 0 0 1-.544-.298L1.474 8.188a.633.633 0 0 1-.095-.342v-.027a.648.648 0 0 1 .642-.628h9.256c.167 0 .368.06.47.14l.01.008a.733.733 0 0 1 .22.942L4.908 21.388a.733.733 0 0 1-.14.182 11.994 11.994 0 0 0 14.225.185h-5.632a.744.744 0 0 1-.744-.744v-.015a.744.744 0 0 1 .744-.744h7.352a11.994 11.994 0 0 0-.232-16.733 12.06 12.06 0 0 0-1.618-1.358l-.003.006-.033.099c-.233.433-2.941 5.33-3.838 6.951l-.329.595c-.753 1.302-1.099 2.767-.925 3.92a3.775 3.775 0 0 0 .657 1.624 3.914 3.914 0 0 0 2.55 1.593 4.058 4.058 0 0 0 .682.058 3.981 3.981 0 0 0 2.405-.798 3.792 3.792 0 0 0 1.48-2.412 3.784 3.784 0 0 0-.7-2.892 4.015 4.015 0 0 0-2.583-1.581 4.377 4.377 0 0 0-.177-.026.699.699 0 0 1-.614-.718.69.69 0 0 1 .233-.503.705.705 0 0 1 .549-.172 5.41 5.41 0 0 1 3.735 2.182 5.18 5.18 0 0 1 .942 3.943 5.18 5.18 0 0 1-2.18 3.418 5.393 5.393 0 0 1-3.088.963h-.001a5.479 5.479 0 0 1-.915-.078 5.303 5.303 0 0 1-3.472-2.174 5.583 5.583 0 0 1-.425-.706c-.717-1.416-.753-3.07-.102-4.785a18.44 18.44 0 0 1 .758-1.678l4.078-7.45.096-.117.004-.008a12.04 12.04 0 0 0-.98-.467 11.993 11.993 0 0 0-5.093-.94z" }) + ] + } + ); +}); + +exports.default = SiSystem76; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.d.ts new file mode 100644 index 000000000..2a2338c7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#585048"; +declare const SiSystem76: IconType; +export { SiSystem76 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.mjs new file mode 100644 index 000000000..5a3ee08c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiSystem76.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#585048"; +const SiSystem76 = React.forwardRef(function SiSystem762({ title = "System76", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.575.007A11.993 11.993 0 0 0 3.52 20.481l.124.121 6.532-12.11H3.188l1.227 2.066a.632.632 0 0 1 .076.49.677.677 0 0 1-.65.506.636.636 0 0 1-.544-.298L1.474 8.188a.633.633 0 0 1-.095-.342v-.027a.648.648 0 0 1 .642-.628h9.256c.167 0 .368.06.47.14l.01.008a.733.733 0 0 1 .22.942L4.908 21.388a.733.733 0 0 1-.14.182 11.994 11.994 0 0 0 14.225.185h-5.632a.744.744 0 0 1-.744-.744v-.015a.744.744 0 0 1 .744-.744h7.352a11.994 11.994 0 0 0-.232-16.733 12.06 12.06 0 0 0-1.618-1.358l-.003.006-.033.099c-.233.433-2.941 5.33-3.838 6.951l-.329.595c-.753 1.302-1.099 2.767-.925 3.92a3.775 3.775 0 0 0 .657 1.624 3.914 3.914 0 0 0 2.55 1.593 4.058 4.058 0 0 0 .682.058 3.981 3.981 0 0 0 2.405-.798 3.792 3.792 0 0 0 1.48-2.412 3.784 3.784 0 0 0-.7-2.892 4.015 4.015 0 0 0-2.583-1.581 4.377 4.377 0 0 0-.177-.026.699.699 0 0 1-.614-.718.69.69 0 0 1 .233-.503.705.705 0 0 1 .549-.172 5.41 5.41 0 0 1 3.735 2.182 5.18 5.18 0 0 1 .942 3.943 5.18 5.18 0 0 1-2.18 3.418 5.393 5.393 0 0 1-3.088.963h-.001a5.479 5.479 0 0 1-.915-.078 5.303 5.303 0 0 1-3.472-2.174 5.583 5.583 0 0 1-.425-.706c-.717-1.416-.753-3.07-.102-4.785a18.44 18.44 0 0 1 .758-1.678l4.078-7.45.096-.117.004-.008a12.04 12.04 0 0 0-.98-.467 11.993 11.993 0 0 0-5.093-.94z" }) + ] + } + ); +}); + +export { SiSystem76 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.cjs new file mode 100644 index 000000000..a4f930948 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F2CC38"; +const SiTabelog = React__namespace.forwardRef(function SiTabelog2({ title = "Tabelog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 14.4915a.183.183 0 0 0-.1398-.181l-2.2517-.5431a.1817.1817 0 0 0-.163.0401.183.183 0 0 0-.0615.1505c-.2094-.0678-.4082-.1495-.5707-.2458-.4315-.2573-.9912-.7497-1.207-1.6315-.148-.6047-.5402-1.6616-.7995-2.3615l-.1867-.5094c-.0513-.1451-.1369-.312-.2486-.4861l.905-.4252a.2412.2412 0 0 0 .1127-.3241l-.3468-.7082a.2413.2413 0 0 0-.325-.1098l-1.1905.6057c-.1727-.1466-.356-.2782-.5447-.3832-.2525-.1402-.65-.3415-1.0637-.5456l1.9654-1.1406a.2403.2403 0 0 0 .0846-.3323l-.4063-.6757a.2417.2417 0 0 0-.3338-.0813l-2.5878 1.6122c-.2027-.0962-.3415-.162-.3725-.1765-.0876-.0562-.5863-.3386-1.38-.0305-.759.294-1.4478.5084-1.4546.5108-.058.0184-.562.1838-.7623.4494-.2075.2757-.7672.9064-.9568 1.0114-.2235.1234-.5035.369-.5577.6535a.5921.5921 0 0 0-.0068.0489.451.451 0 0 0 .1045.338c.1267.1534.3086.2255.4658.2603L.1175 15.2635a.246.246 0 0 0-.0823.3367l.0755.1248a.2473.2473 0 0 0 .3357.0856l8.882-5.153c-.0092.1644-.0039.5785.2506.7981.0846.073.2249.1451.4348.1292l-9.265 4.7123a.2459.2459 0 0 0-.1108.3285l.0638.131a.247.247 0 0 0 .327.1142l9.087-4.2693c-.0938.2922-.1649.5665-.1842.775-.0078.0831-.0078.1552.0024.2147.0643.3802.2336.6414.4765.7343.119.046.298.0605.5233-.046.0494.192.1427.4349.3154.5742.1089.0876.239.1258.375.1103.293-.0329.6476-.2931.8827-.6477.1596-.2419.2535-.503.2786-.7672a1.535 1.535 0 0 0-.0005-.2752c.238.0827.582.2554.7672.5993.359.6666 1.6751 2.5008 2.4882 2.88l.4683.2322c.6975.3546 1.6523.8398 2.997 1.0908.0064.0024.0136.0053.0204.0077a.1873.1873 0 0 0-.0232.0706.1836.1836 0 0 0 .1054.1814l2.3393 1.0797a.1805.1805 0 0 0 .1282.0092c.074-.0213 1.8468-.5911 1.9242-4.9334zm-7.1953-6.7933a2.857 2.857 0 0 1 .3662.2448l-2.6324 1.3394a3.6848 3.6848 0 0 0-.3376-.1906l-.3827-.1814c-.2288-.1079-.5248-.2462-.8116-.3875l2.5317-1.4685c.4862.2375.979.4837 1.2664.6438zM9.5166 8.7014c.0237-.1238.1852-.2965.3753-.402.297-.164.9355-.9301 1.072-1.111.0981-.1302.4077-.2656.58-.3207.0057-.0015.7057-.2196 1.4767-.5186.6632-.2568 1.0434-.0082 1.0593.0024a.1997.1997 0 0 0 .0262.015c.0039.0015.0653.0305.1664.0784l-2.3703 1.4768c-.4092-.1529-.8948.0038-1.1657.2844-.1079.1113-.1848.2641-.2278.4363-.1582.3159-.4247.3096-.4572.3072-.0024 0-.0048.001-.0082.0005-.0068-.0005-.0145-.002-.0217-.0015-.0958.0024-.3686-.0208-.4852-.1616-.0203-.0246-.0266-.0498-.0198-.0856zm.3013 2.4776c-.1287-.1108-.132-.4111-.1224-.5287.0039-.0111.0387-.1127.0895-.2578l.9766-.567c.0755.104.1645.2008.2666.2893-.0416.3691-.166.6308-.1674.6337-.0005.0005 0 .0005-.0005.0005v.0005c-.0015.0029-.1557.2897-.774.4537-.1837.0489-.2476-.0058-.2684-.0242zm1.3718-.2723.0005-.001c.016-.0324.1118-.2418.1703-.5495.1615.105.3178.2066.4668.3048l-.685.3487c.0165-.0348.0324-.0701.0474-.103zm-.249 2.9424c-.1597.1243-.3014.1732-.3996.1355-.1137-.044-.2061-.2133-.2467-.4542-.0063-.0358-.0063-.0818-.001-.136.0213-.2268.1345-.6003.283-1.0095l1.1478-.5393c-.1044.2472-.1964.55-.2094.8658-.0208.505-.4992 1.0545-.5742 1.1377zm8.6792 3.8809a.2123.2123 0 0 0-.0304-.0082c-1.3027-.2404-2.2358-.715-2.9164-1.0608l-.4793-.2375c-.6985-.326-1.9707-2.0723-2.3209-2.7219-.3076-.5718-.9162-.7715-1.1745-.8325-.0507-.1717-.1557-.4914-.2824-.6593a.1833.1833 0 0 0-.256-.0358.1833.1833 0 0 0-.0362.2559c.0943.1248.2046.46.2525.6419 0 .001.0005.0015.001.0019.0004.0015.0004.0029.001.0044.1383.4624-.0514.849-.1762 1.0376-.1959.2955-.459.4682-.6186.4861-.0402.0044-.0711-.0048-.105-.032-.117-.0938-.1925-.3453-.223-.5252.1625-.1892.6008-.7503.625-1.3172.0203-.49.2776-.9708.3908-1.1377l.5544-.2607c.3937.2699.6554.4605.727.533l.1214.1152c.2588.2399.7981.7396.863 1.2571.0914.728.951 2.4022 1.9353 2.8709a.182.182 0 0 0 .2433-.0866.1822.1822 0 0 0-.0861-.2433c-.8634-.4112-1.6495-1.9445-1.7303-2.5864-.0812-.6492-.664-1.189-.977-1.4792l-.1103-.105c-.2516-.253-1.8706-1.3075-2.3615-1.6248-.4746-.3072-.5853-.7004-.609-.908-.0281-.2433.0338-.4832.1576-.6109.1858-.192.6003-.3454.8964-.133.338.2419 1.1986.6458 1.7684.9133l.3759.1784c.3502.1732.6491.4136.652.416.0416.0358 1.1218.9607 1.5054 1.2142.5156.341.951.1257 1.1091-.0353a.182.182 0 0 0-.0019-.256.1832.1832 0 0 0-.2573-.0014c-.0261.0256-.2665.2399-.6482-.0121-.1828-.121-.55-.4175-.8721-.6845l2.5119-1.1802c.1069.162.1896.3178.2365.4513l.1892.5151c.2563.6917.6443 1.737.787 2.3209.2452 1.0052.8832 1.5653 1.3747 1.8584.2225.1326.4977.237.7768.3202.018.848-.0875 2.866-1.4245 3.5186a31.0668 31.0668 0 0 0-.3584-.135zm2.4065 1.3205c-.1137-.0527-1.3631-.6293-1.8807-.8682 1.1368-.5549 1.498-1.8933 1.5958-2.9265a7.769 7.769 0 0 0 .0242-1.0744c.3584.0866 1.6393.3952 1.8638.4494-.0087.313-.0247.608-.0504.879-.2578 2.7397-1.2992 3.4154-1.5527 3.5407z" }) + ] + } + ); +}); + +exports.default = SiTabelog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.d.ts new file mode 100644 index 000000000..782492ac6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F2CC38"; +declare const SiTabelog: IconType; +export { SiTabelog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.mjs new file mode 100644 index 000000000..3e564fab7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTabelog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F2CC38"; +const SiTabelog = React.forwardRef(function SiTabelog2({ title = "Tabelog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 14.4915a.183.183 0 0 0-.1398-.181l-2.2517-.5431a.1817.1817 0 0 0-.163.0401.183.183 0 0 0-.0615.1505c-.2094-.0678-.4082-.1495-.5707-.2458-.4315-.2573-.9912-.7497-1.207-1.6315-.148-.6047-.5402-1.6616-.7995-2.3615l-.1867-.5094c-.0513-.1451-.1369-.312-.2486-.4861l.905-.4252a.2412.2412 0 0 0 .1127-.3241l-.3468-.7082a.2413.2413 0 0 0-.325-.1098l-1.1905.6057c-.1727-.1466-.356-.2782-.5447-.3832-.2525-.1402-.65-.3415-1.0637-.5456l1.9654-1.1406a.2403.2403 0 0 0 .0846-.3323l-.4063-.6757a.2417.2417 0 0 0-.3338-.0813l-2.5878 1.6122c-.2027-.0962-.3415-.162-.3725-.1765-.0876-.0562-.5863-.3386-1.38-.0305-.759.294-1.4478.5084-1.4546.5108-.058.0184-.562.1838-.7623.4494-.2075.2757-.7672.9064-.9568 1.0114-.2235.1234-.5035.369-.5577.6535a.5921.5921 0 0 0-.0068.0489.451.451 0 0 0 .1045.338c.1267.1534.3086.2255.4658.2603L.1175 15.2635a.246.246 0 0 0-.0823.3367l.0755.1248a.2473.2473 0 0 0 .3357.0856l8.882-5.153c-.0092.1644-.0039.5785.2506.7981.0846.073.2249.1451.4348.1292l-9.265 4.7123a.2459.2459 0 0 0-.1108.3285l.0638.131a.247.247 0 0 0 .327.1142l9.087-4.2693c-.0938.2922-.1649.5665-.1842.775-.0078.0831-.0078.1552.0024.2147.0643.3802.2336.6414.4765.7343.119.046.298.0605.5233-.046.0494.192.1427.4349.3154.5742.1089.0876.239.1258.375.1103.293-.0329.6476-.2931.8827-.6477.1596-.2419.2535-.503.2786-.7672a1.535 1.535 0 0 0-.0005-.2752c.238.0827.582.2554.7672.5993.359.6666 1.6751 2.5008 2.4882 2.88l.4683.2322c.6975.3546 1.6523.8398 2.997 1.0908.0064.0024.0136.0053.0204.0077a.1873.1873 0 0 0-.0232.0706.1836.1836 0 0 0 .1054.1814l2.3393 1.0797a.1805.1805 0 0 0 .1282.0092c.074-.0213 1.8468-.5911 1.9242-4.9334zm-7.1953-6.7933a2.857 2.857 0 0 1 .3662.2448l-2.6324 1.3394a3.6848 3.6848 0 0 0-.3376-.1906l-.3827-.1814c-.2288-.1079-.5248-.2462-.8116-.3875l2.5317-1.4685c.4862.2375.979.4837 1.2664.6438zM9.5166 8.7014c.0237-.1238.1852-.2965.3753-.402.297-.164.9355-.9301 1.072-1.111.0981-.1302.4077-.2656.58-.3207.0057-.0015.7057-.2196 1.4767-.5186.6632-.2568 1.0434-.0082 1.0593.0024a.1997.1997 0 0 0 .0262.015c.0039.0015.0653.0305.1664.0784l-2.3703 1.4768c-.4092-.1529-.8948.0038-1.1657.2844-.1079.1113-.1848.2641-.2278.4363-.1582.3159-.4247.3096-.4572.3072-.0024 0-.0048.001-.0082.0005-.0068-.0005-.0145-.002-.0217-.0015-.0958.0024-.3686-.0208-.4852-.1616-.0203-.0246-.0266-.0498-.0198-.0856zm.3013 2.4776c-.1287-.1108-.132-.4111-.1224-.5287.0039-.0111.0387-.1127.0895-.2578l.9766-.567c.0755.104.1645.2008.2666.2893-.0416.3691-.166.6308-.1674.6337-.0005.0005 0 .0005-.0005.0005v.0005c-.0015.0029-.1557.2897-.774.4537-.1837.0489-.2476-.0058-.2684-.0242zm1.3718-.2723.0005-.001c.016-.0324.1118-.2418.1703-.5495.1615.105.3178.2066.4668.3048l-.685.3487c.0165-.0348.0324-.0701.0474-.103zm-.249 2.9424c-.1597.1243-.3014.1732-.3996.1355-.1137-.044-.2061-.2133-.2467-.4542-.0063-.0358-.0063-.0818-.001-.136.0213-.2268.1345-.6003.283-1.0095l1.1478-.5393c-.1044.2472-.1964.55-.2094.8658-.0208.505-.4992 1.0545-.5742 1.1377zm8.6792 3.8809a.2123.2123 0 0 0-.0304-.0082c-1.3027-.2404-2.2358-.715-2.9164-1.0608l-.4793-.2375c-.6985-.326-1.9707-2.0723-2.3209-2.7219-.3076-.5718-.9162-.7715-1.1745-.8325-.0507-.1717-.1557-.4914-.2824-.6593a.1833.1833 0 0 0-.256-.0358.1833.1833 0 0 0-.0362.2559c.0943.1248.2046.46.2525.6419 0 .001.0005.0015.001.0019.0004.0015.0004.0029.001.0044.1383.4624-.0514.849-.1762 1.0376-.1959.2955-.459.4682-.6186.4861-.0402.0044-.0711-.0048-.105-.032-.117-.0938-.1925-.3453-.223-.5252.1625-.1892.6008-.7503.625-1.3172.0203-.49.2776-.9708.3908-1.1377l.5544-.2607c.3937.2699.6554.4605.727.533l.1214.1152c.2588.2399.7981.7396.863 1.2571.0914.728.951 2.4022 1.9353 2.8709a.182.182 0 0 0 .2433-.0866.1822.1822 0 0 0-.0861-.2433c-.8634-.4112-1.6495-1.9445-1.7303-2.5864-.0812-.6492-.664-1.189-.977-1.4792l-.1103-.105c-.2516-.253-1.8706-1.3075-2.3615-1.6248-.4746-.3072-.5853-.7004-.609-.908-.0281-.2433.0338-.4832.1576-.6109.1858-.192.6003-.3454.8964-.133.338.2419 1.1986.6458 1.7684.9133l.3759.1784c.3502.1732.6491.4136.652.416.0416.0358 1.1218.9607 1.5054 1.2142.5156.341.951.1257 1.1091-.0353a.182.182 0 0 0-.0019-.256.1832.1832 0 0 0-.2573-.0014c-.0261.0256-.2665.2399-.6482-.0121-.1828-.121-.55-.4175-.8721-.6845l2.5119-1.1802c.1069.162.1896.3178.2365.4513l.1892.5151c.2563.6917.6443 1.737.787 2.3209.2452 1.0052.8832 1.5653 1.3747 1.8584.2225.1326.4977.237.7768.3202.018.848-.0875 2.866-1.4245 3.5186a31.0668 31.0668 0 0 0-.3584-.135zm2.4065 1.3205c-.1137-.0527-1.3631-.6293-1.8807-.8682 1.1368-.5549 1.498-1.8933 1.5958-2.9265a7.769 7.769 0 0 0 .0242-1.0744c.3584.0866 1.6393.3952 1.8638.4494-.0087.313-.0247.608-.0504.879-.2578 2.7397-1.2992 3.4154-1.5527 3.5407z" }) + ] + } + ); +}); + +export { SiTabelog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.cjs new file mode 100644 index 000000000..d21dcf4a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7935D2"; +const SiTablecheck = React__namespace.forwardRef(function SiTablecheck2({ title = "TableCheck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.9139 3.8281 7.24817.16392C7.1253.04109 6.87835-.00105 6.71331.04109 3.75313 1.36028 1.37926 3.71815.04078 6.66865a.44898.44898 0 0 0 .12408.53464L3.8294 10.8675c.12408.124.37103.0819.41199-.1228a7.90878 7.90878 0 0 1 2.21626-4.33041 7.91452 7.91452 0 0 1 4.33216-2.21532c.1651 0 .247-.24684.1241-.37087Zm9.2661 7.0803 3.6658-3.66417c.1229-.12282.165-.36967.1228-.53463-1.3199-2.95848-3.6788-5.33089-6.6303-6.6685a.44958.44958 0 0 0-.2884-.0297.44942.44942 0 0 0-.2465.15252L13.1377 3.8281c-.1241.12282-.0819.37087.1229.41181a7.91473 7.91473 0 0 1 4.3322 2.21532 7.90904 7.90904 0 0 1 2.2162 4.33037c0 .1638.2482.2468.371.1228Zm3.6658 5.887L20.18 13.0903c-.1228-.1228-.3698-.0819-.4119.124-.5349 3.3355-3.1707 6.0099-6.5485 6.5457-.2048.041-.2879.2878-.1229.4118l3.6658 3.663c.1228.124.3698.165.5348.124 2.9486-1.3214 5.3084-3.6802 6.6304-6.6275.1241-.2059.0831-.4118-.0819-.5359ZM3.8306 13.0903.16366 16.7954c-.12408.1241-.16504.3709-.12408.5359 1.32198 2.9473 3.68175 5.3061 6.63037 6.6275a.44874.44874 0 0 0 .28924.0296.44923.44923 0 0 0 .24682-.1536l3.66569-3.663c.1229-.124.082-.3708-.124-.4118-1.64103-.2653-3.15679-1.0404-4.33223-2.2153a7.90877 7.90877 0 0 1-2.21625-4.3304c0-.1649-.24695-.2468-.37103-.124h.00241Z" }) + ] + } + ); +}); + +exports.default = SiTablecheck; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.d.ts new file mode 100644 index 000000000..9d0d14101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7935D2"; +declare const SiTablecheck: IconType; +export { SiTablecheck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.mjs new file mode 100644 index 000000000..9128d5de9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTablecheck.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7935D2"; +const SiTablecheck = React.forwardRef(function SiTablecheck2({ title = "TableCheck", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.9139 3.8281 7.24817.16392C7.1253.04109 6.87835-.00105 6.71331.04109 3.75313 1.36028 1.37926 3.71815.04078 6.66865a.44898.44898 0 0 0 .12408.53464L3.8294 10.8675c.12408.124.37103.0819.41199-.1228a7.90878 7.90878 0 0 1 2.21626-4.33041 7.91452 7.91452 0 0 1 4.33216-2.21532c.1651 0 .247-.24684.1241-.37087Zm9.2661 7.0803 3.6658-3.66417c.1229-.12282.165-.36967.1228-.53463-1.3199-2.95848-3.6788-5.33089-6.6303-6.6685a.44958.44958 0 0 0-.2884-.0297.44942.44942 0 0 0-.2465.15252L13.1377 3.8281c-.1241.12282-.0819.37087.1229.41181a7.91473 7.91473 0 0 1 4.3322 2.21532 7.90904 7.90904 0 0 1 2.2162 4.33037c0 .1638.2482.2468.371.1228Zm3.6658 5.887L20.18 13.0903c-.1228-.1228-.3698-.0819-.4119.124-.5349 3.3355-3.1707 6.0099-6.5485 6.5457-.2048.041-.2879.2878-.1229.4118l3.6658 3.663c.1228.124.3698.165.5348.124 2.9486-1.3214 5.3084-3.6802 6.6304-6.6275.1241-.2059.0831-.4118-.0819-.5359ZM3.8306 13.0903.16366 16.7954c-.12408.1241-.16504.3709-.12408.5359 1.32198 2.9473 3.68175 5.3061 6.63037 6.6275a.44874.44874 0 0 0 .28924.0296.44923.44923 0 0 0 .24682-.1536l3.66569-3.663c.1229-.124.082-.3708-.124-.4118-1.64103-.2653-3.15679-1.0404-4.33223-2.2153a7.90877 7.90877 0 0 1-2.21625-4.3304c0-.1649-.24695-.2468-.37103-.124h.00241Z" }) + ] + } + ); +}); + +export { SiTablecheck as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.cjs new file mode 100644 index 000000000..b32d78e45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#38096C"; +const SiTacobell = React__namespace.forwardRef(function SiTacobell2({ title = "Taco Bell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0786 1.1372a11.784 11.784 0 0 0-.913.0318c-1.4967.0794-2.9562.5037-4.3208 1.1086.2802-.0007.588-.0477.839.1086.3087.1709.4496.527.7445.711.4187.1627.8696.0071 1.2965-.0398 1.3661-.1587 2.7779.1102 4 .7387.788.4146 1.4997.9613 2.1525 1.5639 1.005.8835 1.831 1.9475 2.8264 2.8416.3247.2891.698.5257 1.1037.6836.9484.3725 1.9971.3434 2.9528.6917.3012.1013.571.2697.844.43-.1644-.537-.3395-1.0706-.5622-1.5858-.9824-2.3169-2.7202-4.2993-4.8793-5.5886-1.8269-1.1034-3.9525-1.6866-6.084-1.6953ZM4.988 3.4001C3.2443 4.6465 1.8497 6.3764.9985 8.3427.3013 9.93-.0243 11.6703.004 13.4009c.0008 2.9948.0057 5.9897-.0024 8.9845-.0154.163.0834.3006.1507.4407 1.158.0714 2.3218.0137 3.4823.0307-.5701-.2073-1.2237-.5473-1.3338-1.2082-.1799-.9524.2786-1.878.7702-2.6637.7888-1.2277 1.8336-2.2634 2.9106-3.2377 1.3071-1.1322 2.7534-2.0919 4.2371-2.9754.3977-.256.8553-.4575 1.1412-.8504-.26.0219-.5151.0858-.7516.196-.9872.4292-1.9234.9662-2.8458 1.5192-.8804.545-1.767 1.0845-2.5948 1.709-.579.4146-1.1191.8777-1.6796 1.3166-.1238-.9402-.3483-1.8625-.584-2.7801-.2892-1.2188-.477-2.475-.396-3.7302.06-1.2853.4697-2.5616 1.2342-3.6022.294-.4309.699-.7751.9776-1.2165.2396-.3774-.1208-.7677-.09-1.1613-.0056-.3005.1936-.5402.358-.7718zm15.5597 8.8498c-.1674-.0026-.3357.011-.498.028-1.316.161-2.5736.6137-3.7973 1.1052-2.7414 1.1517-5.3888 2.5755-7.7414 4.4042-.9378.7499-1.8651 1.5443-2.5592 2.5332-.2097.3296-.473.733-.324 1.1363.1912.2656.5474.3125.8495.353 1.056.094 2.1147-.0777 3.1456-.298 2.0806-.473 4.0946-1.257 5.9234-2.3584 1.3743-.7945 2.7032-1.6796 3.8954-2.7299.6688-.6066 1.3126-1.2602 1.7734-2.0433.213-.3758.401-.7872.392-1.2286.0025-.2486-.0236-.5595-.2648-.6971-.2394-.1514-.5155-.2003-.7946-.2046zm3.4259.0756c-.7889 1.993-2.3518 3.549-3.9691 4.8981-1.41 1.1436-2.9463 2.1275-4.5562 2.9648-2.185 1.2196-4.5369 2.177-6.999 2.6596 5.035.022 10.0706.004 15.1055.0088.226.0316.4575-.1425.4413-.3806.0066-2.8644 0-5.7288.0026-8.5933.0016-.5191.0073-1.0391-.0251-1.5573zM12.7172 15.757c.3604.7702.4009 1.6967.0543 2.4782-.3208.7686-.984 1.375-1.7687 1.6472-1.0505.362-2.276.0818-3.0656-.7014 1.4019-1.3824 3.0598-2.478 4.78-3.424z" }) + ] + } + ); +}); + +exports.default = SiTacobell; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.d.ts new file mode 100644 index 000000000..c61248300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#38096C"; +declare const SiTacobell: IconType; +export { SiTacobell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.mjs new file mode 100644 index 000000000..8eac20dab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTacobell.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#38096C"; +const SiTacobell = React.forwardRef(function SiTacobell2({ title = "Taco Bell", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0786 1.1372a11.784 11.784 0 0 0-.913.0318c-1.4967.0794-2.9562.5037-4.3208 1.1086.2802-.0007.588-.0477.839.1086.3087.1709.4496.527.7445.711.4187.1627.8696.0071 1.2965-.0398 1.3661-.1587 2.7779.1102 4 .7387.788.4146 1.4997.9613 2.1525 1.5639 1.005.8835 1.831 1.9475 2.8264 2.8416.3247.2891.698.5257 1.1037.6836.9484.3725 1.9971.3434 2.9528.6917.3012.1013.571.2697.844.43-.1644-.537-.3395-1.0706-.5622-1.5858-.9824-2.3169-2.7202-4.2993-4.8793-5.5886-1.8269-1.1034-3.9525-1.6866-6.084-1.6953ZM4.988 3.4001C3.2443 4.6465 1.8497 6.3764.9985 8.3427.3013 9.93-.0243 11.6703.004 13.4009c.0008 2.9948.0057 5.9897-.0024 8.9845-.0154.163.0834.3006.1507.4407 1.158.0714 2.3218.0137 3.4823.0307-.5701-.2073-1.2237-.5473-1.3338-1.2082-.1799-.9524.2786-1.878.7702-2.6637.7888-1.2277 1.8336-2.2634 2.9106-3.2377 1.3071-1.1322 2.7534-2.0919 4.2371-2.9754.3977-.256.8553-.4575 1.1412-.8504-.26.0219-.5151.0858-.7516.196-.9872.4292-1.9234.9662-2.8458 1.5192-.8804.545-1.767 1.0845-2.5948 1.709-.579.4146-1.1191.8777-1.6796 1.3166-.1238-.9402-.3483-1.8625-.584-2.7801-.2892-1.2188-.477-2.475-.396-3.7302.06-1.2853.4697-2.5616 1.2342-3.6022.294-.4309.699-.7751.9776-1.2165.2396-.3774-.1208-.7677-.09-1.1613-.0056-.3005.1936-.5402.358-.7718zm15.5597 8.8498c-.1674-.0026-.3357.011-.498.028-1.316.161-2.5736.6137-3.7973 1.1052-2.7414 1.1517-5.3888 2.5755-7.7414 4.4042-.9378.7499-1.8651 1.5443-2.5592 2.5332-.2097.3296-.473.733-.324 1.1363.1912.2656.5474.3125.8495.353 1.056.094 2.1147-.0777 3.1456-.298 2.0806-.473 4.0946-1.257 5.9234-2.3584 1.3743-.7945 2.7032-1.6796 3.8954-2.7299.6688-.6066 1.3126-1.2602 1.7734-2.0433.213-.3758.401-.7872.392-1.2286.0025-.2486-.0236-.5595-.2648-.6971-.2394-.1514-.5155-.2003-.7946-.2046zm3.4259.0756c-.7889 1.993-2.3518 3.549-3.9691 4.8981-1.41 1.1436-2.9463 2.1275-4.5562 2.9648-2.185 1.2196-4.5369 2.177-6.999 2.6596 5.035.022 10.0706.004 15.1055.0088.226.0316.4575-.1425.4413-.3806.0066-2.8644 0-5.7288.0026-8.5933.0016-.5191.0073-1.0391-.0251-1.5573zM12.7172 15.757c.3604.7702.4009 1.6967.0543 2.4782-.3208.7686-.984 1.375-1.7687 1.6472-1.0505.362-2.276.0818-3.0656-.7014 1.4019-1.3824 3.0598-2.478 4.78-3.424z" }) + ] + } + ); +}); + +export { SiTacobell as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTado.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTado.cjs new file mode 100644 index 000000000..080c22f14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTado.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA900"; +const SiTado = React__namespace.forwardRef(function SiTado2({ title = "tado°", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.486 7.795a1.514 1.514 0 1 0 0 3.029 1.514 1.514 0 0 0 0-3.029zm-8.504.003v2.456c-.457-.344-.945-.563-1.686-.563-1.814 0-2.833 1.364-2.833 3.267 0 1.792 1.019 3.247 2.833 3.247 1.781 0 2.817-1.46 2.82-3.247v-5.16zM1.89 7.799l-1.124.378V9.69H0v.945h.757v3.873c0 .84.67 1.51 1.518 1.51h1.128v-.943h-.946a.566.566 0 0 1-.568-.566v-3.874h3.215V9.69H1.89zm20.596.375a1.135 1.135 0 1 1 0 2.27 1.135 1.135 0 0 1 0-2.27zM5.48 9.69v.946h1.906c.354 0 .549.277.549.54v.773l-1.322-.001c-1.134 0-2.267.769-2.267 2.08 0 1.307 1.13 2.087 2.265 2.087.953 0 1.326-.57 1.326-.57v.47H9.07v-4.864c0-.784-.667-1.461-1.51-1.461zm12.861.002c-1.808 0-2.835 1.369-2.835 3.237 0 1.911 1.027 3.276 2.835 3.276 1.787 0 2.828-1.36 2.828-3.276 0-1.863-1.046-3.237-2.828-3.237zm-6.046.95c1.14 0 1.68 1.185 1.68 2.316 0 1.117-.55 2.305-1.68 2.305-1.232 0-1.697-1.188-1.697-2.305 0-1.13.56-2.316 1.697-2.316zm6.046.005c1.12 0 1.703 1.18 1.703 2.3 0 1.117-.572 2.313-1.703 2.313-1.126 0-1.707-1.165-1.707-2.307 0-1.126.57-2.306 1.707-2.306zM6.614 12.9h1.322v1.207c0 .5-.373 1.062-1.323 1.062-.367 0-1.133-.19-1.133-1.134 0-.842.758-1.135 1.134-1.135Z" }) + ] + } + ); +}); + +exports.default = SiTado; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTado.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTado.d.ts new file mode 100644 index 000000000..e526e80d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTado.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA900"; +declare const SiTado: IconType; +export { SiTado as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTado.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTado.mjs new file mode 100644 index 000000000..5cc2e085c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTado.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA900"; +const SiTado = React.forwardRef(function SiTado2({ title = "tado°", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.486 7.795a1.514 1.514 0 1 0 0 3.029 1.514 1.514 0 0 0 0-3.029zm-8.504.003v2.456c-.457-.344-.945-.563-1.686-.563-1.814 0-2.833 1.364-2.833 3.267 0 1.792 1.019 3.247 2.833 3.247 1.781 0 2.817-1.46 2.82-3.247v-5.16zM1.89 7.799l-1.124.378V9.69H0v.945h.757v3.873c0 .84.67 1.51 1.518 1.51h1.128v-.943h-.946a.566.566 0 0 1-.568-.566v-3.874h3.215V9.69H1.89zm20.596.375a1.135 1.135 0 1 1 0 2.27 1.135 1.135 0 0 1 0-2.27zM5.48 9.69v.946h1.906c.354 0 .549.277.549.54v.773l-1.322-.001c-1.134 0-2.267.769-2.267 2.08 0 1.307 1.13 2.087 2.265 2.087.953 0 1.326-.57 1.326-.57v.47H9.07v-4.864c0-.784-.667-1.461-1.51-1.461zm12.861.002c-1.808 0-2.835 1.369-2.835 3.237 0 1.911 1.027 3.276 2.835 3.276 1.787 0 2.828-1.36 2.828-3.276 0-1.863-1.046-3.237-2.828-3.237zm-6.046.95c1.14 0 1.68 1.185 1.68 2.316 0 1.117-.55 2.305-1.68 2.305-1.232 0-1.697-1.188-1.697-2.305 0-1.13.56-2.316 1.697-2.316zm6.046.005c1.12 0 1.703 1.18 1.703 2.3 0 1.117-.572 2.313-1.703 2.313-1.126 0-1.707-1.165-1.707-2.307 0-1.126.57-2.306 1.707-2.306zM6.614 12.9h1.322v1.207c0 .5-.373 1.062-1.323 1.062-.367 0-1.133-.19-1.133-1.134 0-.842.758-1.135 1.134-1.135Z" }) + ] + } + ); +}); + +export { SiTado as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.cjs new file mode 100644 index 000000000..8f38918f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTaichigraphics = React__namespace.forwardRef(function SiTaichigraphics2({ title = "Taichi Graphics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.343 20.672a1.94 1.94 0 0 0 1.94-1.94 1.94 1.94 0 1 0-3.88 0 1.94 1.94 0 0 0 1.94 1.94zM9.058 12.796a6.858 6.858 0 1 0-2.324-9.67c-.062.099-.125.198-.185.3-.06.103-.11.205-.167.31a6.858 6.858 0 0 0 2.676 9.06zm0-.003h-4.23l-2.113 3.663 2.114 3.667h4.229l2.116-3.667zm0 7.33L6.82 23.999h4.48Z" }) + ] + } + ); +}); + +exports.default = SiTaichigraphics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.d.ts new file mode 100644 index 000000000..5e8f32331 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTaichigraphics: IconType; +export { SiTaichigraphics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.mjs new file mode 100644 index 000000000..88cb7b27b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichigraphics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTaichigraphics = React.forwardRef(function SiTaichigraphics2({ title = "Taichi Graphics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.343 20.672a1.94 1.94 0 0 0 1.94-1.94 1.94 1.94 0 1 0-3.88 0 1.94 1.94 0 0 0 1.94 1.94zM9.058 12.796a6.858 6.858 0 1 0-2.324-9.67c-.062.099-.125.198-.185.3-.06.103-.11.205-.167.31a6.858 6.858 0 0 0 2.676 9.06zm0-.003h-4.23l-2.113 3.663 2.114 3.667h4.229l2.116-3.667zm0 7.33L6.82 23.999h4.48Z" }) + ] + } + ); +}); + +export { SiTaichigraphics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.cjs new file mode 100644 index 000000000..0fd9d8ab6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTaichilang = React__namespace.forwardRef(function SiTaichilang2({ title = "Taichi Lang", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.526 4.6782c-.0196 1.6052-.8167 2.8963-2.211 3.8542-1.2176.8371-2.47 1.627-3.6316 2.5398-1.8976 1.4954-3.1392 3.4337-3.1784 5.9263-.0415 2.7115 1.1753 4.7975 3.4344 6.274.0415.0276.0888.0502.1302.0756.2.123.3637.3055.2197.5237-.0698.1033-.3273.1542-.4728.115-1.2168-.2975-2.3856-.731-3.4556-1.395-3.462-2.1486-5.484-5.2623-5.9517-9.318C-.2542 7.4683 3.1934 2.0903 8.6833.3542c1.3558-.4313 2.7224-.5266 4.0731.0422 1.7223.72 2.8257 2.3806 2.7697 4.2818Zm8.1462 9.2648c-.0276 1.0699-.328 2.2693-1.4445 3.1115-1.3004.9805-2.9755.9165-3.9981-.1483a2.8359 2.8359 0 0 1-.6444-1.0809 2.9144 2.9144 0 0 1-.12-1.2546 2.8788 2.8788 0 0 1 .4334-1.1856 2.8439 2.8439 0 0 1 .8976-.8786c.1389-.0873.2807-.171.4218-.2524 1.1674-.6582 1.6925-1.6889 1.731-3.0053a1.9547 1.9547 0 0 1 .0895-.3804c.131.056.28.0836.3884.1709 1.4336 1.126 2.2453 2.8148 2.2453 4.9037z" }) + ] + } + ); +}); + +exports.default = SiTaichilang; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.d.ts new file mode 100644 index 000000000..1def773c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTaichilang: IconType; +export { SiTaichilang as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.mjs new file mode 100644 index 000000000..44ab3ea8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaichilang.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTaichilang = React.forwardRef(function SiTaichilang2({ title = "Taichi Lang", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.526 4.6782c-.0196 1.6052-.8167 2.8963-2.211 3.8542-1.2176.8371-2.47 1.627-3.6316 2.5398-1.8976 1.4954-3.1392 3.4337-3.1784 5.9263-.0415 2.7115 1.1753 4.7975 3.4344 6.274.0415.0276.0888.0502.1302.0756.2.123.3637.3055.2197.5237-.0698.1033-.3273.1542-.4728.115-1.2168-.2975-2.3856-.731-3.4556-1.395-3.462-2.1486-5.484-5.2623-5.9517-9.318C-.2542 7.4683 3.1934 2.0903 8.6833.3542c1.3558-.4313 2.7224-.5266 4.0731.0422 1.7223.72 2.8257 2.3806 2.7697 4.2818Zm8.1462 9.2648c-.0276 1.0699-.328 2.2693-1.4445 3.1115-1.3004.9805-2.9755.9165-3.9981-.1483a2.8359 2.8359 0 0 1-.6444-1.0809 2.9144 2.9144 0 0 1-.12-1.2546 2.8788 2.8788 0 0 1 .4334-1.1856 2.8439 2.8439 0 0 1 .8976-.8786c.1389-.0873.2807-.171.4218-.2524 1.1674-.6582 1.6925-1.6889 1.731-3.0053a1.9547 1.9547 0 0 1 .0895-.3804c.131.056.28.0836.3884.1709 1.4336 1.126 2.2453 2.8148 2.2453 4.9037z" }) + ] + } + ); +}); + +export { SiTaichilang as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTails.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTails.cjs new file mode 100644 index 000000000..082d5e0f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTails.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#56347C"; +const SiTails = React__namespace.forwardRef(function SiTails2({ title = "Tails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.356 11.162v3.98c0 .122-.081.154-.181.071l-2.032-1.682a.55.55 0 0 1-.181-.37v-.501l-.635-.516c-.68-.554-1.226-1.677-1.226-2.5 0-.822.549-1.036 1.226-.478l.635.516V9.18c0-.122.081-.154.181-.071l2.032 1.682c.1.082.181.248.181.37zm-2.993-1.265c-.358-.296-.648-.182-.648.253s.29 1.027.648 1.323l.599.486v-1.576l-.599-.486zM21.202 19.934l.013-.01a.334.334 0 0 0 .037-.036l.004-.004a.36.36 0 0 0 .032-.046l.007-.013a.299.299 0 0 0 .019-.042l.004-.01a.329.329 0 0 0 .013-.055v-.014l.003-.027.003-.152-5.223-4.28.022-12.91-.147-.111-.004-.003-.034-.02c-.007-.004-.014-.01-.022-.013l-.03-.01c-.01-.004-.02-.009-.03-.011l-.026-.004c-.013-.002-.026-.005-.039-.005H15.8l-.023.001c-.013 0-.025.001-.037.003l-.03.007c-.01.003-.021.005-.031.01-.01.003-.02.008-.029.012l-.029.015a.202.202 0 0 0-.014.01c-.012.004-.024.007-.035.013l-3.444 1.726.72.57.027 10.067-5.246-4.32-.003-5.241L7.623.328l-.001-.01a.283.283 0 0 0-.004-.035c-.001-.01-.002-.02-.005-.03L7.605.223C7.6.213 7.597.201 7.59.19L7.588.181l-.01-.015c-.006-.01-.012-.021-.02-.031L7.54.112A.354.354 0 0 0 7.466.05.294.294 0 0 0 7.44.035c-.01-.004-.02-.01-.03-.013a.365.365 0 0 0-.061-.016L7.314.002 7.294 0l-.009.001a.3.3 0 0 0-.036.004c-.01.001-.02.002-.03.005-.01.002-.019.006-.029.009a.286.286 0 0 0-.033.012l-.009.004L2.825 2.2l-.016.01a.336.336 0 0 0-.077.061.303.303 0 0 0-.053.078.402.402 0 0 0-.023.06.284.284 0 0 0-.01.065c-.001.006-.003.013-.002.02l.006 10.108v.02l.002.008c0 .015.003.03.006.044l.002.009.004.011a.32.32 0 0 0 .02.054v.001h.001c.009.018.02.034.031.05l.007.01.006.006a.31.31 0 0 0 .031.032l.006.006c.004.003.008.005.01.008.002 0 .003.003.005.004l4.7 3.909-.107 2.673v.038l.004.025.002.015c0 .005.002.01.004.015 0 .004.002.007.003.011l.001.005.003.01c.005.014.01.028.017.04v.002a.32.32 0 0 0 .031.049l.006.008.005.005a.342.342 0 0 0 .037.039l.005.003.003.002.003.004 5.317 4.212c.1.078.236.092.35.035l7.988-4 .004-.002a.321.321 0 0 0 .045-.029zM5.475 10.985L3.819 9.706v1.1l.844.585-1.392.698-.006-9.376 2.176-1.09.023 2.392-1.546-1.236v1.1l1.554 1.235.024 1.182L3.901 5.02v1.1l1.603 1.275-.006 1.283-1.573-1.257v1.1l1.58 1.256.01 1.187zm3.433 6.038l-5.309-4.365 3.668-1.837 5.309 4.365zM6.123 1.282l.733-.367.079 9.34-.733.366zM8.617 8.396l-.001-1.59L9.925 7.83l.001 1.591zM9.926 6.568l-1.31-1.025V3.952l1.309 1.025zM11.018 5.816c.507.646 1.026 1.907 1.026 3.073 0 1.165-.519 1.562-1.026 1.362V5.816z" }) + ] + } + ); +}); + +exports.default = SiTails; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTails.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTails.d.ts new file mode 100644 index 000000000..0075aa185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTails.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#56347C"; +declare const SiTails: IconType; +export { SiTails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTails.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTails.mjs new file mode 100644 index 000000000..c13be91b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTails.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#56347C"; +const SiTails = React.forwardRef(function SiTails2({ title = "Tails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.356 11.162v3.98c0 .122-.081.154-.181.071l-2.032-1.682a.55.55 0 0 1-.181-.37v-.501l-.635-.516c-.68-.554-1.226-1.677-1.226-2.5 0-.822.549-1.036 1.226-.478l.635.516V9.18c0-.122.081-.154.181-.071l2.032 1.682c.1.082.181.248.181.37zm-2.993-1.265c-.358-.296-.648-.182-.648.253s.29 1.027.648 1.323l.599.486v-1.576l-.599-.486zM21.202 19.934l.013-.01a.334.334 0 0 0 .037-.036l.004-.004a.36.36 0 0 0 .032-.046l.007-.013a.299.299 0 0 0 .019-.042l.004-.01a.329.329 0 0 0 .013-.055v-.014l.003-.027.003-.152-5.223-4.28.022-12.91-.147-.111-.004-.003-.034-.02c-.007-.004-.014-.01-.022-.013l-.03-.01c-.01-.004-.02-.009-.03-.011l-.026-.004c-.013-.002-.026-.005-.039-.005H15.8l-.023.001c-.013 0-.025.001-.037.003l-.03.007c-.01.003-.021.005-.031.01-.01.003-.02.008-.029.012l-.029.015a.202.202 0 0 0-.014.01c-.012.004-.024.007-.035.013l-3.444 1.726.72.57.027 10.067-5.246-4.32-.003-5.241L7.623.328l-.001-.01a.283.283 0 0 0-.004-.035c-.001-.01-.002-.02-.005-.03L7.605.223C7.6.213 7.597.201 7.59.19L7.588.181l-.01-.015c-.006-.01-.012-.021-.02-.031L7.54.112A.354.354 0 0 0 7.466.05.294.294 0 0 0 7.44.035c-.01-.004-.02-.01-.03-.013a.365.365 0 0 0-.061-.016L7.314.002 7.294 0l-.009.001a.3.3 0 0 0-.036.004c-.01.001-.02.002-.03.005-.01.002-.019.006-.029.009a.286.286 0 0 0-.033.012l-.009.004L2.825 2.2l-.016.01a.336.336 0 0 0-.077.061.303.303 0 0 0-.053.078.402.402 0 0 0-.023.06.284.284 0 0 0-.01.065c-.001.006-.003.013-.002.02l.006 10.108v.02l.002.008c0 .015.003.03.006.044l.002.009.004.011a.32.32 0 0 0 .02.054v.001h.001c.009.018.02.034.031.05l.007.01.006.006a.31.31 0 0 0 .031.032l.006.006c.004.003.008.005.01.008.002 0 .003.003.005.004l4.7 3.909-.107 2.673v.038l.004.025.002.015c0 .005.002.01.004.015 0 .004.002.007.003.011l.001.005.003.01c.005.014.01.028.017.04v.002a.32.32 0 0 0 .031.049l.006.008.005.005a.342.342 0 0 0 .037.039l.005.003.003.002.003.004 5.317 4.212c.1.078.236.092.35.035l7.988-4 .004-.002a.321.321 0 0 0 .045-.029zM5.475 10.985L3.819 9.706v1.1l.844.585-1.392.698-.006-9.376 2.176-1.09.023 2.392-1.546-1.236v1.1l1.554 1.235.024 1.182L3.901 5.02v1.1l1.603 1.275-.006 1.283-1.573-1.257v1.1l1.58 1.256.01 1.187zm3.433 6.038l-5.309-4.365 3.668-1.837 5.309 4.365zM6.123 1.282l.733-.367.079 9.34-.733.366zM8.617 8.396l-.001-1.59L9.925 7.83l.001 1.591zM9.926 6.568l-1.31-1.025V3.952l1.309 1.025zM11.018 5.816c.507.646 1.026 1.907 1.026 3.073 0 1.165-.519 1.562-1.026 1.362V5.816z" }) + ] + } + ); +}); + +export { SiTails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.cjs new file mode 100644 index 000000000..85b34e76d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#242424"; +const SiTailscale = React__namespace.forwardRef(function SiTailscale2({ title = "Tailscale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm-9 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm0-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm6-6a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM3 24a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm18 .5a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM6 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm9-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm-3 2.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM6 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM3 5.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z" }) + ] + } + ); +}); + +exports.default = SiTailscale; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.d.ts new file mode 100644 index 000000000..e9ef4e12f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#242424"; +declare const SiTailscale: IconType; +export { SiTailscale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.mjs new file mode 100644 index 000000000..2e4466cab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTailscale.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#242424"; +const SiTailscale = React.forwardRef(function SiTailscale2({ title = "Tailscale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm-9 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm0-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm6-6a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM3 24a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm18 .5a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM6 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm9-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm-3 2.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM6 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM3 5.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z" }) + ] + } + ); +}); + +export { SiTailscale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.cjs new file mode 100644 index 000000000..0c168b585 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#06B6D4"; +const SiTailwindcss = React__namespace.forwardRef(function SiTailwindcss2({ title = "Tailwind CSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z" }) + ] + } + ); +}); + +exports.default = SiTailwindcss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.d.ts new file mode 100644 index 000000000..7362a473d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#06B6D4"; +declare const SiTailwindcss: IconType; +export { SiTailwindcss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.mjs new file mode 100644 index 000000000..8fa43f665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTailwindcss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#06B6D4"; +const SiTailwindcss = React.forwardRef(function SiTailwindcss2({ title = "Tailwind CSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z" }) + ] + } + ); +}); + +export { SiTailwindcss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.cjs new file mode 100644 index 000000000..9b033d38b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF371A"; +const SiTaipy = React__namespace.forwardRef(function SiTaipy2({ title = "Taipy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.273 4.153a.971.971 0 0 1 .917-.65h21.325a.486.486 0 0 1 .458.646l-1.245 3.56a.971.971 0 0 1-.917.65H.486a.486.486 0 0 1-.459-.646Zm4.855 6.07a.971.971 0 0 1 .917-.65h8.337a.486.486 0 0 1 .458.645l-1.245 3.56a.971.971 0 0 1-.917.65H5.341a.486.486 0 0 1-.458-.646Zm2.698 6.068a.971.971 0 0 1 .917-.65h3.482a.486.486 0 0 1 .458.646l-1.246 3.56a.971.971 0 0 1-.916.65H8.039a.486.486 0 0 1-.458-.646Z" }) + ] + } + ); +}); + +exports.default = SiTaipy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.d.ts new file mode 100644 index 000000000..c8e5aeb06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF371A"; +declare const SiTaipy: IconType; +export { SiTaipy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.mjs new file mode 100644 index 000000000..15f939461 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaipy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF371A"; +const SiTaipy = React.forwardRef(function SiTaipy2({ title = "Taipy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.273 4.153a.971.971 0 0 1 .917-.65h21.325a.486.486 0 0 1 .458.646l-1.245 3.56a.971.971 0 0 1-.917.65H.486a.486.486 0 0 1-.459-.646Zm4.855 6.07a.971.971 0 0 1 .917-.65h8.337a.486.486 0 0 1 .458.645l-1.245 3.56a.971.971 0 0 1-.917.65H5.341a.486.486 0 0 1-.458-.646Zm2.698 6.068a.971.971 0 0 1 .917-.65h3.482a.486.486 0 0 1 .458.646l-1.246 3.56a.971.971 0 0 1-.916.65H8.039a.486.486 0 0 1-.458-.646Z" }) + ] + } + ); +}); + +export { SiTaipy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.cjs new file mode 100644 index 000000000..86f34ab79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTaketwointeractivesoftware = React__namespace.forwardRef(function SiTaketwointeractivesoftware2({ title = "Take-Two Interactive Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.012 16.776.417-.257 4.155-3.1c1.413-1.248 2.293-2.686 2.293-4.607-.006-3.849-3.037-5.771-6.614-5.771-1.663 0-3.122.447-4.283 1.256V2.852L0 2.86l.007 4.395 3.85-.008.016 13.886 5.355-.008-.016-13.886h1.443a7.97 7.97 0 0 0-.516 2.02l4.518.884c.076-1.376.547-3.102 2.219-3.102 1.101 0 1.753.832 1.753 1.87 0 1.557-1.305 2.653-2.4 3.592l-6.082 4.56.006 4.085 13.642-.016.205-4.371-6.988.015Z" }) + ] + } + ); +}); + +exports.default = SiTaketwointeractivesoftware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.d.ts new file mode 100644 index 000000000..2f6f00a43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTaketwointeractivesoftware: IconType; +export { SiTaketwointeractivesoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.mjs new file mode 100644 index 000000000..8586f53e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaketwointeractivesoftware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTaketwointeractivesoftware = React.forwardRef(function SiTaketwointeractivesoftware2({ title = "Take-Two Interactive Software", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.012 16.776.417-.257 4.155-3.1c1.413-1.248 2.293-2.686 2.293-4.607-.006-3.849-3.037-5.771-6.614-5.771-1.663 0-3.122.447-4.283 1.256V2.852L0 2.86l.007 4.395 3.85-.008.016 13.886 5.355-.008-.016-13.886h1.443a7.97 7.97 0 0 0-.516 2.02l4.518.884c.076-1.376.547-3.102 2.219-3.102 1.101 0 1.753.832 1.753 1.87 0 1.557-1.305 2.653-2.4 3.592l-6.082 4.56.006 4.085 13.642-.016.205-4.371-6.988.015Z" }) + ] + } + ); +}); + +export { SiTaketwointeractivesoftware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.cjs new file mode 100644 index 000000000..d994b3663 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6D70"; +const SiTalend = React__namespace.forwardRef(function SiTalend2({ title = "Talend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.875.025c-.41.043-1.233.19-1.795.324-.653.156-1.099.303-1.856.632A11.96 11.96 0 0 0 .974 7.23C.531 8.25.367 8.817.12 10.166c-.117.61-.121.722-.121 1.838s.004 1.228.121 1.838c.247 1.349.411 1.915.852 2.936a11.96 11.96 0 0 0 6.251 6.249c1.021.441 1.588.605 2.937.852.61.117.723.121 1.839.121s1.229-.004 1.839-.121c1.35-.247 1.916-.41 2.937-.852a11.96 11.96 0 0 0 6.25-6.249c.442-1.02.606-1.587.853-2.936.117-.61.121-.722.121-1.838s-.004-1.228-.121-1.838c-.247-1.35-.411-1.916-.852-2.936-1.315-3.062-3.842-5.415-7.06-6.582C15.513.483 14.764.302 13.95.15c-.645-.12-.822-.134-1.735-.147-.558-.008-1.163 0-1.34.022zm1.536 5.34.108.104v2.859h2.293l.073.117c.139.212.06.735-.134.934-.069.065-.194.073-1.155.073h-1.081l.013 3.49c.013 3.174.021 3.516.09 3.715.148.445.364.597.831.592.329 0 .597-.064 1.224-.302.381-.139.411-.143.485-.078.1.09.26.424.26.536 0 .143-.347.398-.926.68-.922.444-1.661.613-2.47.557-1.519-.104-2.367-.614-2.678-1.617-.087-.277-.09-.398-.104-3.931l-.013-3.642h-.554c-.618 0-.679-.026-.722-.311-.035-.203.1-.342.459-.467a6.057 6.057 0 0 0 2.496-1.717c.354-.415.48-.601.748-1.116.125-.237.272-.467.32-.506a.318.318 0 0 1 .437.03z" }) + ] + } + ); +}); + +exports.default = SiTalend; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.d.ts new file mode 100644 index 000000000..273659f72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6D70"; +declare const SiTalend: IconType; +export { SiTalend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.mjs new file mode 100644 index 000000000..623a9f7d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalend.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6D70"; +const SiTalend = React.forwardRef(function SiTalend2({ title = "Talend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.875.025c-.41.043-1.233.19-1.795.324-.653.156-1.099.303-1.856.632A11.96 11.96 0 0 0 .974 7.23C.531 8.25.367 8.817.12 10.166c-.117.61-.121.722-.121 1.838s.004 1.228.121 1.838c.247 1.349.411 1.915.852 2.936a11.96 11.96 0 0 0 6.251 6.249c1.021.441 1.588.605 2.937.852.61.117.723.121 1.839.121s1.229-.004 1.839-.121c1.35-.247 1.916-.41 2.937-.852a11.96 11.96 0 0 0 6.25-6.249c.442-1.02.606-1.587.853-2.936.117-.61.121-.722.121-1.838s-.004-1.228-.121-1.838c-.247-1.35-.411-1.916-.852-2.936-1.315-3.062-3.842-5.415-7.06-6.582C15.513.483 14.764.302 13.95.15c-.645-.12-.822-.134-1.735-.147-.558-.008-1.163 0-1.34.022zm1.536 5.34.108.104v2.859h2.293l.073.117c.139.212.06.735-.134.934-.069.065-.194.073-1.155.073h-1.081l.013 3.49c.013 3.174.021 3.516.09 3.715.148.445.364.597.831.592.329 0 .597-.064 1.224-.302.381-.139.411-.143.485-.078.1.09.26.424.26.536 0 .143-.347.398-.926.68-.922.444-1.661.613-2.47.557-1.519-.104-2.367-.614-2.678-1.617-.087-.277-.09-.398-.104-3.931l-.013-3.642h-.554c-.618 0-.679-.026-.722-.311-.035-.203.1-.342.459-.467a6.057 6.057 0 0 0 2.496-1.717c.354-.415.48-.601.748-1.116.125-.237.272-.467.32-.506a.318.318 0 0 1 .437.03z" }) + ] + } + ); +}); + +export { SiTalend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.cjs new file mode 100644 index 000000000..42e9f59c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTalenthouse = React__namespace.forwardRef(function SiTalenthouse2({ title = "Talenthouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.373 7.42V0H1.627v7.42h6.66V24h7.428V7.42h6.66zM12.31 0h-.623zm-.004 3.41V.618h8.865L17.652 3.41Zm-5.948 0L2.83.618h8.857V3.41H6.358zm-.608.308-3.503 2.76V.949ZM2.837 6.802l3.52-2.781h4.894L8.46 6.8H2.837Zm6.068.438 2.78-2.782v14.781l-1.602 2.046-1.183 1.51Zm.326 16.142.555-.706 2.216-2.825 2.77 3.535zm3.078-18.924 2.786 2.782v15.556l-2.786-3.556zM15.55 6.8l-2.8-2.78h4.904l3.519 2.78h-5.623Zm6.206-.322L18.25 3.71 21.744.963l.02-.015Z" }) + ] + } + ); +}); + +exports.default = SiTalenthouse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.d.ts new file mode 100644 index 000000000..2b8e1fe81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTalenthouse: IconType; +export { SiTalenthouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.mjs new file mode 100644 index 000000000..20c05d1ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalenthouse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTalenthouse = React.forwardRef(function SiTalenthouse2({ title = "Talenthouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.373 7.42V0H1.627v7.42h6.66V24h7.428V7.42h6.66zM12.31 0h-.623zm-.004 3.41V.618h8.865L17.652 3.41Zm-5.948 0L2.83.618h8.857V3.41H6.358zm-.608.308-3.503 2.76V.949ZM2.837 6.802l3.52-2.781h4.894L8.46 6.8H2.837Zm6.068.438 2.78-2.782v14.781l-1.602 2.046-1.183 1.51Zm.326 16.142.555-.706 2.216-2.825 2.77 3.535zm3.078-18.924 2.786 2.782v15.556l-2.786-3.556zM15.55 6.8l-2.8-2.78h4.904l3.519 2.78h-5.623Zm6.206-.322L18.25 3.71 21.744.963l.02-.015Z" }) + ] + } + ); +}); + +export { SiTalenthouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.cjs new file mode 100644 index 000000000..e5cc1bb8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF7300"; +const SiTalos = React__namespace.forwardRef(function SiTalos2({ title = "Talos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.678 11.98c0-2.664-1.13-6.896-2.867-10.804a12 12 0 0 0-1.585.917c1.608 3.668 2.647 7.553 2.647 9.886 0 2.254-1.08 6.145-2.735 9.865a12 12 0 0 0 1.576.93c1.79-3.976 2.964-8.229 2.964-10.795m6.442 0c0-2.336 1.042-6.22 2.646-9.89a12 12 0 0 0-1.608-.922c-1.756 3.957-2.843 8.166-2.843 10.816 0 2.564 1.177 6.819 2.965 10.797a12 12 0 0 0 1.575-.931c-1.655-3.723-2.735-7.616-2.735-9.87m5.45 6.525.31.307a12 12 0 0 0 .936-1.612c-1.866-1.893-3.457-3.938-3.47-5.233-.012-1.264 1.57-3.308 3.446-5.222a12 12 0 0 0-.945-1.603l-.259.258c-2.739 2.766-4.063 4.92-4.047 6.583.016 1.662 1.332 3.81 4.028 6.522M2.411 5.405l-.26-.259a12 12 0 0 0-.946 1.608c3.123 3.173 3.452 4.704 3.448 5.217-.012 1.3-1.603 3.34-3.47 5.229a12 12 0 0 0 .939 1.608c.106-.106.207-.204.31-.308 2.694-2.711 4.01-4.842 4.026-6.516s-1.308-3.809-4.047-6.58M12.002 24c.303 0 .602-.016.898-.037V.037A12 12 0 0 0 12 0c-.304 0-.605.015-.905.037v23.925q.448.035.903.038z" }) + ] + } + ); +}); + +exports.default = SiTalos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.d.ts new file mode 100644 index 000000000..719b03377 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF7300"; +declare const SiTalos: IconType; +export { SiTalos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.mjs new file mode 100644 index 000000000..a7835448a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTalos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF7300"; +const SiTalos = React.forwardRef(function SiTalos2({ title = "Talos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.678 11.98c0-2.664-1.13-6.896-2.867-10.804a12 12 0 0 0-1.585.917c1.608 3.668 2.647 7.553 2.647 9.886 0 2.254-1.08 6.145-2.735 9.865a12 12 0 0 0 1.576.93c1.79-3.976 2.964-8.229 2.964-10.795m6.442 0c0-2.336 1.042-6.22 2.646-9.89a12 12 0 0 0-1.608-.922c-1.756 3.957-2.843 8.166-2.843 10.816 0 2.564 1.177 6.819 2.965 10.797a12 12 0 0 0 1.575-.931c-1.655-3.723-2.735-7.616-2.735-9.87m5.45 6.525.31.307a12 12 0 0 0 .936-1.612c-1.866-1.893-3.457-3.938-3.47-5.233-.012-1.264 1.57-3.308 3.446-5.222a12 12 0 0 0-.945-1.603l-.259.258c-2.739 2.766-4.063 4.92-4.047 6.583.016 1.662 1.332 3.81 4.028 6.522M2.411 5.405l-.26-.259a12 12 0 0 0-.946 1.608c3.123 3.173 3.452 4.704 3.448 5.217-.012 1.3-1.603 3.34-3.47 5.229a12 12 0 0 0 .939 1.608c.106-.106.207-.204.31-.308 2.694-2.711 4.01-4.842 4.026-6.516s-1.308-3.809-4.047-6.58M12.002 24c.303 0 .602-.016.898-.037V.037A12 12 0 0 0 12 0c-.304 0-.605.015-.905.037v23.925q.448.035.903.038z" }) + ] + } + ); +}); + +export { SiTalos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.cjs new file mode 100644 index 000000000..e8b2239e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTamiya = React__namespace.forwardRef(function SiTamiya2({ title = "Tamiya", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6.408v4.27h4.496l1.36-4.27Zm5.856 0 1.398 4.27h4.496v-4.27Zm5.894 4.27-3.627 2.644 1.398 4.27h2.23Zm-2.23 6.914-3.664-2.645-3.627 2.645Zm-7.291 0 1.398-4.27L0 10.678v6.914zM12.25 6.408v4.27h4.496l1.36-4.27zm5.856 0 1.398 4.27H24v-4.27ZM24 10.678l-3.627 2.644 1.398 4.27H24Zm-2.23 6.914-3.664-2.645-3.627 2.645zm-7.29 0 1.397-4.27-3.627-2.644v6.914z" }) + ] + } + ); +}); + +exports.default = SiTamiya; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.d.ts new file mode 100644 index 000000000..53ad8e3fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTamiya: IconType; +export { SiTamiya as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.mjs new file mode 100644 index 000000000..c626ec8a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTamiya.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTamiya = React.forwardRef(function SiTamiya2({ title = "Tamiya", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6.408v4.27h4.496l1.36-4.27Zm5.856 0 1.398 4.27h4.496v-4.27Zm5.894 4.27-3.627 2.644 1.398 4.27h2.23Zm-2.23 6.914-3.664-2.645-3.627 2.645Zm-7.291 0 1.398-4.27L0 10.678v6.914zM12.25 6.408v4.27h4.496l1.36-4.27zm5.856 0 1.398 4.27H24v-4.27ZM24 10.678l-3.627 2.644 1.398 4.27H24Zm-2.23 6.914-3.664-2.645-3.627 2.645zm-7.29 0 1.397-4.27-3.627-2.644v6.914z" }) + ] + } + ); +}); + +export { SiTamiya as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.cjs new file mode 100644 index 000000000..ce2f85a02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00485B"; +const SiTampermonkey = React__namespace.forwardRef(function SiTampermonkey2({ title = "Tampermonkey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.955.002C3-.071.275 2.386.043 5.335c-.069 3.32-.011 6.646-.03 9.969.06 1.87-.276 3.873.715 5.573 1.083 2.076 3.456 3.288 5.77 3.105 4.003-.011 8.008.022 12.011-.017 2.953-.156 5.478-2.815 5.482-5.772-.007-4.235.023-8.473-.015-12.708C23.82 2.533 21.16.007 18.205.003c-4.083-.005-8.167 0-12.25-.002zm.447 12.683c2.333-.046 4.506 1.805 4.83 4.116.412 2.287-1.056 4.716-3.274 5.411-2.187.783-4.825-.268-5.874-2.341-1.137-2.039-.52-4.827 1.37-6.197a4.896 4.896 0 012.948-.99zm11.245 0c2.333-.046 4.505 1.805 4.829 4.116.413 2.287-1.056 4.716-3.273 5.411-2.188.783-4.825-.268-5.875-2.341-1.136-2.039-.52-4.827 1.37-6.197a4.896 4.896 0 012.949-.99z" }) + ] + } + ); +}); + +exports.default = SiTampermonkey; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.d.ts new file mode 100644 index 000000000..caf15eace --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00485B"; +declare const SiTampermonkey: IconType; +export { SiTampermonkey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.mjs new file mode 100644 index 000000000..8e2b93ba3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTampermonkey.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00485B"; +const SiTampermonkey = React.forwardRef(function SiTampermonkey2({ title = "Tampermonkey", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.955.002C3-.071.275 2.386.043 5.335c-.069 3.32-.011 6.646-.03 9.969.06 1.87-.276 3.873.715 5.573 1.083 2.076 3.456 3.288 5.77 3.105 4.003-.011 8.008.022 12.011-.017 2.953-.156 5.478-2.815 5.482-5.772-.007-4.235.023-8.473-.015-12.708C23.82 2.533 21.16.007 18.205.003c-4.083-.005-8.167 0-12.25-.002zm.447 12.683c2.333-.046 4.506 1.805 4.83 4.116.412 2.287-1.056 4.716-3.274 5.411-2.187.783-4.825-.268-5.874-2.341-1.137-2.039-.52-4.827 1.37-6.197a4.896 4.896 0 012.948-.99zm11.245 0c2.333-.046 4.505 1.805 4.829 4.116.413 2.287-1.056 4.716-3.273 5.411-2.188.783-4.825-.268-5.875-2.341-1.136-2.039-.52-4.827 1.37-6.197a4.896 4.896 0 012.949-.99z" }) + ] + } + ); +}); + +export { SiTampermonkey as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.cjs new file mode 100644 index 000000000..cd0d43dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTanstack = React__namespace.forwardRef(function SiTanstack2({ title = "TanStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.078.042c.316-.042.65-.014.97-.014 1.181 0 2.341.184 3.472.532a12.3 12.3 0 0 1 3.973 2.086 11.9 11.9 0 0 1 3.432 4.33c1.446 3.15 1.436 6.97-.046 10.107-.958 2.029-2.495 3.727-4.356 4.965-1.518 1.01-3.293 1.629-5.1 1.848-2.298.279-4.784-.129-6.85-1.188-3.88-1.99-6.518-5.994-6.57-10.382-.01-.846.003-1.697.17-2.534.273-1.365.748-2.683 1.463-3.88a12 12 0 0 1 2.966-3.36A12.3 12.3 0 0 1 9.357.3a12 12 0 0 1 1.255-.2l.133-.016zM7.064 19.99c-.535.057-1.098.154-1.557.454.103.025.222 0 .33 0 .258 0 .52-.01.778.002.647.028 1.32.131 1.945.303.8.22 1.505.65 2.275.942.813.307 1.622.402 2.484.402.435 0 .866-.001 1.287-.12-.22-.117-.534-.095-.778-.144a11 11 0 0 1-1.556-.416 12 12 0 0 1-1.093-.467l-.23-.108a15 15 0 0 0-1.012-.44c-.905-.343-1.908-.512-2.873-.408m.808-2.274c-1.059 0-2.13.187-3.083.667q-.346.177-.659.41c-.063.046-.175.106-.199.188s.061.151.11.204c.238-.127.464-.261.718-.357 1.64-.624 3.63-.493 5.268.078.817.285 1.569.712 2.365 1.046.89.374 1.798.616 2.753.74 1.127.147 2.412.028 3.442-.48.362-.179.865-.451 1.018-.847-.189.017-.36.098-.539.154a9 9 0 0 1-.868.222c-.994.2-2.052.24-3.053.06-.943-.17-1.82-.513-2.693-.873l-.111-.046-.223-.092-.112-.046a26 26 0 0 0-1.35-.527c-.89-.31-1.842-.5-2.784-.5M9.728 1.452c-1.27.28-2.407.826-3.502 1.514-.637.4-1.245.81-1.796 1.323-.82.765-1.447 1.695-1.993 2.666-.563 1-.924 2.166-1.098 3.297-.172 1.11-.2 2.277-.004 3.388.245 1.388.712 2.691 1.448 3.897.248-.116.424-.38.629-.557.414-.359.85-.691 1.317-.978a3.5 3.5 0 0 1 .539-.264c.07-.029.187-.055.22-.132.053-.124-.045-.34-.062-.468a7 7 0 0 1-.068-1.109 9.7 9.7 0 0 1 .61-3.177c.29-.76.73-1.45 1.254-2.069.177-.21.365-.405.56-.6.115-.114.258-.212.33-.359-.376 0-.751.108-1.108.218-.769.237-1.518.588-2.155 1.084-.291.226-.504.522-.779.76-.084.073-.235.17-.352.116-.176-.083-.149-.43-.169-.59-.078-.612.154-1.387.45-1.918.473-.852 1.348-1.58 2.376-1.555.444.011.833.166 1.257.266-.107-.153-.252-.264-.389-.39a5.4 5.4 0 0 0-1.107-.8c-.163-.085-.338-.136-.509-.2-.086-.03-.195-.074-.227-.17-.06-.177.26-.342.377-.417.453-.289 1.01-.527 1.556-.54.854-.021 1.688.452 2.04 1.258.123.284.16.583.184.885l.004.057.006.085.002.029.005.057.004.056c.268-.218.457-.54.718-.774.612-.547 1.45-.79 2.245-.544a2.97 2.97 0 0 1 1.71 1.378c.097.173.365.595.171.767-.152.134-.344.03-.504-.026a3 3 0 0 0-.372-.094l-.068-.014-.069-.013a3.9 3.9 0 0 0-1.377-.002c-.282.05-.557.15-.838.192v.06c.768.006 1.51.444 1.89 1.109.157.275.235.59.295.9.075.38.022.796-.082 1.168-.035.125-.098.336-.247.365-.106.02-.195-.085-.256-.155a4.6 4.6 0 0 0-.492-.522 20 20 0 0 0-1.467-1.14c-.267-.19-.56-.44-.868-.556.087.208.171.402.2.63.088.667-.192 1.296-.612 1.798a2.6 2.6 0 0 1-.426.427c-.067.05-.151.114-.24.1-.277-.044-.31-.463-.353-.677-.144-.726-.086-1.447.114-2.158-.178.09-.307.287-.418.45a5.3 5.3 0 0 0-.612 1.138c-.61 1.617-.604 3.51.186 5.066.088.174.221.15.395.15h.157a3 3 0 0 1 .472.018c.08.01.193 0 .257.06.077.072.036.194.018.282-.05.246-.066.469-.066.72.328-.051.419-.576.535-.84.131-.298.265-.597.387-.9.06-.148.14-.314.119-.479-.024-.185-.157-.381-.25-.54-.177-.298-.378-.606-.508-.929-.104-.258-.007-.58.286-.672.161-.05.334.049.439.166.22.244.363.609.523.896l1.249 2.248q.159.286.32.57c.043.074.086.188.173.219.077.028.182-.012.26-.027.198-.04.398-.083.598-.12.24-.043.605-.035.778-.222-.253-.08-.545-.075-.808-.057-.158.01-.333.067-.479-.025-.216-.137-.36-.455-.492-.667-.326-.525-.633-1.057-.945-1.59l-.05-.084-.1-.17q-.075-.126-.149-.255c-.037-.066-.092-.153-.039-.227.056-.076.179-.08.29-.081h.021q.066.001.117-.004a10 10 0 0 1 1.347-.107c-.035-.122-.135-.26-.103-.39.071-.292.49-.383.686-.174.131.14.207.334.292.504.113.223.24.44.361.66.211.383.441.757.658 1.138l.055.094.028.047c.093.156.187.314.238.489-.753-.035-1.318-.909-1.646-1.499-.027.095.016.179.05.27q.103.282.262.54c.152.244.326.495.556.673.408.315.945.317 1.436.283.315-.022.708-.165 1.018-.068s.434.438.25.7c-.138.196-.321.27-.55.3.162.346.373.667.527 1.02.064.146.13.37.283.448.102.051.248.003.358 0-.11-.292-.317-.54-.419-.839.31.015.61.176.898.28.567.202 1.128.424 1.687.648l.258.104c.23.092.462.183.689.283.083.037.198.123.29.07.074-.043.123-.146.169-.215a10.3 10.3 0 0 0 1.393-3.208c.75-2.989.106-6.287-1.695-8.783-.692-.96-1.562-1.789-2.522-2.476-2.401-1.718-5.551-2.407-8.44-1.768m4.908 14.904c-.636.166-1.292.317-1.945.401.086.293.296.577.45.84.059.101.122.237.24.281.132.05.292-.03.417-.072-.058-.158-.155-.3-.235-.45-.033-.06-.084-.133-.056-.206.05-.137.263-.13.381-.153.31-.063.617-.142.928-.204.114-.023.274-.085.389-.047.086.03.138.1.187.174l.022.033q.043.07.097.122c.125.113.313.13.472.162-.097-.219-.259-.41-.362-.63-.06-.127-.11-.315-.242-.388-.182-.102-.557.089-.743.137m-4.01-1.457c-.03.38-.147.689-.33 1.019.21.026.423.036.629.087.154.038.296.11.449.153-.082-.224-.233-.423-.35-.63-.12-.208-.226-.462-.398-.63" }) + ] + } + ); +}); + +exports.default = SiTanstack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.d.ts new file mode 100644 index 000000000..b466a71ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTanstack: IconType; +export { SiTanstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.mjs new file mode 100644 index 000000000..1cd9ad479 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTanstack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTanstack = React.forwardRef(function SiTanstack2({ title = "TanStack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.078.042c.316-.042.65-.014.97-.014 1.181 0 2.341.184 3.472.532a12.3 12.3 0 0 1 3.973 2.086 11.9 11.9 0 0 1 3.432 4.33c1.446 3.15 1.436 6.97-.046 10.107-.958 2.029-2.495 3.727-4.356 4.965-1.518 1.01-3.293 1.629-5.1 1.848-2.298.279-4.784-.129-6.85-1.188-3.88-1.99-6.518-5.994-6.57-10.382-.01-.846.003-1.697.17-2.534.273-1.365.748-2.683 1.463-3.88a12 12 0 0 1 2.966-3.36A12.3 12.3 0 0 1 9.357.3a12 12 0 0 1 1.255-.2l.133-.016zM7.064 19.99c-.535.057-1.098.154-1.557.454.103.025.222 0 .33 0 .258 0 .52-.01.778.002.647.028 1.32.131 1.945.303.8.22 1.505.65 2.275.942.813.307 1.622.402 2.484.402.435 0 .866-.001 1.287-.12-.22-.117-.534-.095-.778-.144a11 11 0 0 1-1.556-.416 12 12 0 0 1-1.093-.467l-.23-.108a15 15 0 0 0-1.012-.44c-.905-.343-1.908-.512-2.873-.408m.808-2.274c-1.059 0-2.13.187-3.083.667q-.346.177-.659.41c-.063.046-.175.106-.199.188s.061.151.11.204c.238-.127.464-.261.718-.357 1.64-.624 3.63-.493 5.268.078.817.285 1.569.712 2.365 1.046.89.374 1.798.616 2.753.74 1.127.147 2.412.028 3.442-.48.362-.179.865-.451 1.018-.847-.189.017-.36.098-.539.154a9 9 0 0 1-.868.222c-.994.2-2.052.24-3.053.06-.943-.17-1.82-.513-2.693-.873l-.111-.046-.223-.092-.112-.046a26 26 0 0 0-1.35-.527c-.89-.31-1.842-.5-2.784-.5M9.728 1.452c-1.27.28-2.407.826-3.502 1.514-.637.4-1.245.81-1.796 1.323-.82.765-1.447 1.695-1.993 2.666-.563 1-.924 2.166-1.098 3.297-.172 1.11-.2 2.277-.004 3.388.245 1.388.712 2.691 1.448 3.897.248-.116.424-.38.629-.557.414-.359.85-.691 1.317-.978a3.5 3.5 0 0 1 .539-.264c.07-.029.187-.055.22-.132.053-.124-.045-.34-.062-.468a7 7 0 0 1-.068-1.109 9.7 9.7 0 0 1 .61-3.177c.29-.76.73-1.45 1.254-2.069.177-.21.365-.405.56-.6.115-.114.258-.212.33-.359-.376 0-.751.108-1.108.218-.769.237-1.518.588-2.155 1.084-.291.226-.504.522-.779.76-.084.073-.235.17-.352.116-.176-.083-.149-.43-.169-.59-.078-.612.154-1.387.45-1.918.473-.852 1.348-1.58 2.376-1.555.444.011.833.166 1.257.266-.107-.153-.252-.264-.389-.39a5.4 5.4 0 0 0-1.107-.8c-.163-.085-.338-.136-.509-.2-.086-.03-.195-.074-.227-.17-.06-.177.26-.342.377-.417.453-.289 1.01-.527 1.556-.54.854-.021 1.688.452 2.04 1.258.123.284.16.583.184.885l.004.057.006.085.002.029.005.057.004.056c.268-.218.457-.54.718-.774.612-.547 1.45-.79 2.245-.544a2.97 2.97 0 0 1 1.71 1.378c.097.173.365.595.171.767-.152.134-.344.03-.504-.026a3 3 0 0 0-.372-.094l-.068-.014-.069-.013a3.9 3.9 0 0 0-1.377-.002c-.282.05-.557.15-.838.192v.06c.768.006 1.51.444 1.89 1.109.157.275.235.59.295.9.075.38.022.796-.082 1.168-.035.125-.098.336-.247.365-.106.02-.195-.085-.256-.155a4.6 4.6 0 0 0-.492-.522 20 20 0 0 0-1.467-1.14c-.267-.19-.56-.44-.868-.556.087.208.171.402.2.63.088.667-.192 1.296-.612 1.798a2.6 2.6 0 0 1-.426.427c-.067.05-.151.114-.24.1-.277-.044-.31-.463-.353-.677-.144-.726-.086-1.447.114-2.158-.178.09-.307.287-.418.45a5.3 5.3 0 0 0-.612 1.138c-.61 1.617-.604 3.51.186 5.066.088.174.221.15.395.15h.157a3 3 0 0 1 .472.018c.08.01.193 0 .257.06.077.072.036.194.018.282-.05.246-.066.469-.066.72.328-.051.419-.576.535-.84.131-.298.265-.597.387-.9.06-.148.14-.314.119-.479-.024-.185-.157-.381-.25-.54-.177-.298-.378-.606-.508-.929-.104-.258-.007-.58.286-.672.161-.05.334.049.439.166.22.244.363.609.523.896l1.249 2.248q.159.286.32.57c.043.074.086.188.173.219.077.028.182-.012.26-.027.198-.04.398-.083.598-.12.24-.043.605-.035.778-.222-.253-.08-.545-.075-.808-.057-.158.01-.333.067-.479-.025-.216-.137-.36-.455-.492-.667-.326-.525-.633-1.057-.945-1.59l-.05-.084-.1-.17q-.075-.126-.149-.255c-.037-.066-.092-.153-.039-.227.056-.076.179-.08.29-.081h.021q.066.001.117-.004a10 10 0 0 1 1.347-.107c-.035-.122-.135-.26-.103-.39.071-.292.49-.383.686-.174.131.14.207.334.292.504.113.223.24.44.361.66.211.383.441.757.658 1.138l.055.094.028.047c.093.156.187.314.238.489-.753-.035-1.318-.909-1.646-1.499-.027.095.016.179.05.27q.103.282.262.54c.152.244.326.495.556.673.408.315.945.317 1.436.283.315-.022.708-.165 1.018-.068s.434.438.25.7c-.138.196-.321.27-.55.3.162.346.373.667.527 1.02.064.146.13.37.283.448.102.051.248.003.358 0-.11-.292-.317-.54-.419-.839.31.015.61.176.898.28.567.202 1.128.424 1.687.648l.258.104c.23.092.462.183.689.283.083.037.198.123.29.07.074-.043.123-.146.169-.215a10.3 10.3 0 0 0 1.393-3.208c.75-2.989.106-6.287-1.695-8.783-.692-.96-1.562-1.789-2.522-2.476-2.401-1.718-5.551-2.407-8.44-1.768m4.908 14.904c-.636.166-1.292.317-1.945.401.086.293.296.577.45.84.059.101.122.237.24.281.132.05.292-.03.417-.072-.058-.158-.155-.3-.235-.45-.033-.06-.084-.133-.056-.206.05-.137.263-.13.381-.153.31-.063.617-.142.928-.204.114-.023.274-.085.389-.047.086.03.138.1.187.174l.022.033q.043.07.097.122c.125.113.313.13.472.162-.097-.219-.259-.41-.362-.63-.06-.127-.11-.315-.242-.388-.182-.102-.557.089-.743.137m-4.01-1.457c-.03.38-.147.689-.33 1.019.21.026.423.036.629.087.154.038.296.11.449.153-.082-.224-.233-.423-.35-.63-.12-.208-.226-.462-.398-.63" }) + ] + } + ); +}); + +export { SiTanstack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.cjs new file mode 100644 index 000000000..978773ed7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E94F20"; +const SiTaobao = React__namespace.forwardRef(function SiTaobao2({ title = "Taobao", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.3099 9.9008c.5285 0 .9584.4284.9584.9589 0 .5276-.4299.958-.9584.958-.5276 0-.9585-.4304-.9585-.958 0-.5305.4309-.959.9585-.959zm2.3899 3.0462h-10.408v-.9595h4.15V9.7591h-2.8869v-.768h2.8868v-.9234h-2.508v.2034h-1.6418V5.3733h1.6418v.3497c.4945-.0607 1.463-.1814 2.5175-.2956v-.8257h1.8522v.6408c.9249-.0807 1.753-.1312 2.211-.1112 1.489.0716 2.4449.2816 2.485 1.273.0356.989-1.4244 1.9043-1.4244 1.9043l-.4509-.4338v.1929h-2.8116v.9233h3.229v.768h-3.229v2.2285h4.3873v.9595zM21.5259 7.299l-.0115-.0115s1.3722-.7595.3427-1.272c-.8633-.43-5.5346.3056-6.9234.6257v.6578h6.5922zM1.8822 6.4166c.5515 0 .9985-.449.9985-1 0-.5531-.447-.9995-.9985-.9995a.9984.9984 0 00-1.001.9995c0 .551.4463 1 1.001 1zm3.4094-.8596c.252-.4364.3717-.7195.3717-.7195l-1.466-.4123S3.6068 6.3546 2.5527 7.253c0 0 1.0195.5897 1.0095.5732a9.6444 9.6444 0 00.782-.8793c.2345-.1017.4585-.198.6794-.2876-.2715.487-.7094 1.219-1.1478 1.6809l.6178.5385s.4198-.4033.8792-.8907h.5246v.8993H3.8557v.7204h2.0416v1.7235c-.025 0-.0521 0-.0782-.002-.224-.0106-.5751-.0476-.7124-.265-.1678-.2636-.044-.7496-.0346-1.0457H3.6608l-.0496.026s-.517 2.3142 1.489 2.2621c1.8793.0521 2.9544-.523 3.4725-.9178l.2064.7645 1.1583-.4825-.785-1.9183-.941.292.1764.6574c-.2415.1809-.518.3157-.8187.4134V9.6076h1.995v-.7204h-1.995v-.8993h2.003v-.72h-3.557c.2565-.3111.4589-.5982.5095-.78L5.9058 6.32c2.6603-.9519 4.1408-.7886 4.1278.773v4.1128s.1568 1.4124-1.461 1.3107l-.8757-.188-.207.8307s3.7822 1.0812 4.0913-1.8246c.3096-2.9058-.0767-4.7576-.0767-4.7576s-.3451-2.6824-6.213-1.02zM.0582 12.1534l1.5867.9905c1.0967-2.3813 1.0265-2.0657 1.302-2.92.2832-.8737.3453-1.54-.1362-2.023-.6172-.6197-.6844-.6773-1.6017-1.3582L.5487 7.8562l1.2164.7576s.8141.4153.4274 1.1903c-.3617.7375-2.1343 2.3493-2.1343 2.3493zm19.94 6.8484s-.0186.523-.6704.523c-.5892 0-.6363-.4113-.6363-.4113-.2485.2996-.6207.4549-1.0696.4549-.7606 0-1.2961-.5135-1.2961-1.2896 0-.786.5576-1.28 1.3983-1.28.3832 0 .725.1462.9258.4037.0066-.0706.0136-.1362.0136-.1968 0-.5622-.3092-.8127-1.01-.8127-.3382 0-.6659.0486-1.0136.1408.1107-.219.1924-.3793.2971-.4574.1202-.0972.4294-.1408.9419-.1408 1.269 0 1.742.4259 1.742 1.4279v1.2024c0 .3161.033.4359.3772.4359zm-1.3272-.745c0-.4815-.2555-.747-.6378-.747-.4043 0-.6668.2825-.6668.7595 0 .467.2775.7615.6533.7615.3882 0 .6513-.275.6513-.774zm5.2706-.501c0 1.1528-.6924 1.8271-1.7786 1.8271-1.0957 0-1.7766-.6743-1.7766-1.8271 0-1.1584.6809-1.8252 1.7766-1.8252 1.0862 0 1.7786.6719 1.7786 1.8252zm-1.0867 0c0-.8693-.237-1.2997-.692-1.2997-.4734 0-.6938.4304-.6938 1.2997 0 .8662.2204 1.299.6939 1.299.467 0 .6919-.4328.6919-1.299zm-7.1313-.0441c0 1.1703-.6534 1.8567-1.5767 1.8567-.4233 0-.8056-.1633-1.0466-.47 0 0-.1082.4264-.6618.4264-.6884 0-.6644-.523-.6644-.523.3868.0165.3758-.2145.3758-.436v-2.8862c0-.3552-.0742-.4795-.4269-.4865.0136-.1072.0777-.5376.6789-.5376.8156 0 .7615.9149.7615.9149v.786c.229-.268.5516-.3942.9905-.3942.9624 0 1.5697.6447 1.5697 1.7495zm-1.0937.0806c0-.8983-.2716-1.3557-.7616-1.3557-.4393 0-.74.3968-.74 1.1047v.3602c0 .7205.3152 1.1168.7631 1.1168.477 0 .7385-.4134.7385-1.226zm-3.2425-.0365c0 1.1528-.688 1.8271-1.7806 1.8271-1.0937 0-1.7726-.6743-1.7726-1.8271 0-1.1584.6789-1.8252 1.7726-1.8252 1.0927 0 1.7806.6719 1.7806 1.8252zm-1.0832 0c0-.8693-.236-1.2997-.6974-1.2997-.467 0-.6874.4304-.6874 1.2997 0 .8662.2205 1.299.6874 1.299.469 0 .6974-.4328.6974-1.299zm-5.9895-2.716c-.268.0782-.7901.0972-1.5516.0972-.925 0-1.5391-.039-1.8543-.039-.5195 0-.7254.1342-.9088.6592.3006-.1017.6729-.1087 1.1353-.1087.3512 0 .4108.0431.4108.2941V18.846c0 .2821.1178.6789.7255.6789.7104 0 .8346-.526.8346-.526-.3552-.007-.4248-.1313-.4248-.4865V15.952c0-.2675.1012-.2795.471-.2795.1252 0 .2094.007.2605.007.545 0 .6883-.1047.9018-.6398zm3.1303 3.962s-.018.523-.6664.523c-.556 0-.6403-.4113-.6403-.4113-.248.2996-.6207.4549-1.0656.4549-.7655 0-1.2996-.5135-1.2996-1.2896 0-.786.557-1.28 1.3993-1.28.3843 0 .7274.1462.9258.4037.0036-.0706.0106-.1362.0106-.1968 0-.5622-.3051-.8127-1.007-.8127-.3382 0-.6669.0486-1.015.1408.1131-.219.1923-.3793.2945-.4574.1293-.0972.4329-.1408.9469-.1408 1.265 0 1.746.4259 1.746 1.4279v1.2024c0 .3161.0276.4359.3708.4359zm-1.3262-.745c0-.4815-.2555-.747-.6378-.747-.4013 0-.6668.2825-.6668.7595 0 .467.279.7615.6513.7615.3893 0 .6533-.275.6533-.774z" }) + ] + } + ); +}); + +exports.default = SiTaobao; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.d.ts new file mode 100644 index 000000000..63e7898da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E94F20"; +declare const SiTaobao: IconType; +export { SiTaobao as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.mjs new file mode 100644 index 000000000..e031e89ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaobao.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E94F20"; +const SiTaobao = React.forwardRef(function SiTaobao2({ title = "Taobao", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.3099 9.9008c.5285 0 .9584.4284.9584.9589 0 .5276-.4299.958-.9584.958-.5276 0-.9585-.4304-.9585-.958 0-.5305.4309-.959.9585-.959zm2.3899 3.0462h-10.408v-.9595h4.15V9.7591h-2.8869v-.768h2.8868v-.9234h-2.508v.2034h-1.6418V5.3733h1.6418v.3497c.4945-.0607 1.463-.1814 2.5175-.2956v-.8257h1.8522v.6408c.9249-.0807 1.753-.1312 2.211-.1112 1.489.0716 2.4449.2816 2.485 1.273.0356.989-1.4244 1.9043-1.4244 1.9043l-.4509-.4338v.1929h-2.8116v.9233h3.229v.768h-3.229v2.2285h4.3873v.9595zM21.5259 7.299l-.0115-.0115s1.3722-.7595.3427-1.272c-.8633-.43-5.5346.3056-6.9234.6257v.6578h6.5922zM1.8822 6.4166c.5515 0 .9985-.449.9985-1 0-.5531-.447-.9995-.9985-.9995a.9984.9984 0 00-1.001.9995c0 .551.4463 1 1.001 1zm3.4094-.8596c.252-.4364.3717-.7195.3717-.7195l-1.466-.4123S3.6068 6.3546 2.5527 7.253c0 0 1.0195.5897 1.0095.5732a9.6444 9.6444 0 00.782-.8793c.2345-.1017.4585-.198.6794-.2876-.2715.487-.7094 1.219-1.1478 1.6809l.6178.5385s.4198-.4033.8792-.8907h.5246v.8993H3.8557v.7204h2.0416v1.7235c-.025 0-.0521 0-.0782-.002-.224-.0106-.5751-.0476-.7124-.265-.1678-.2636-.044-.7496-.0346-1.0457H3.6608l-.0496.026s-.517 2.3142 1.489 2.2621c1.8793.0521 2.9544-.523 3.4725-.9178l.2064.7645 1.1583-.4825-.785-1.9183-.941.292.1764.6574c-.2415.1809-.518.3157-.8187.4134V9.6076h1.995v-.7204h-1.995v-.8993h2.003v-.72h-3.557c.2565-.3111.4589-.5982.5095-.78L5.9058 6.32c2.6603-.9519 4.1408-.7886 4.1278.773v4.1128s.1568 1.4124-1.461 1.3107l-.8757-.188-.207.8307s3.7822 1.0812 4.0913-1.8246c.3096-2.9058-.0767-4.7576-.0767-4.7576s-.3451-2.6824-6.213-1.02zM.0582 12.1534l1.5867.9905c1.0967-2.3813 1.0265-2.0657 1.302-2.92.2832-.8737.3453-1.54-.1362-2.023-.6172-.6197-.6844-.6773-1.6017-1.3582L.5487 7.8562l1.2164.7576s.8141.4153.4274 1.1903c-.3617.7375-2.1343 2.3493-2.1343 2.3493zm19.94 6.8484s-.0186.523-.6704.523c-.5892 0-.6363-.4113-.6363-.4113-.2485.2996-.6207.4549-1.0696.4549-.7606 0-1.2961-.5135-1.2961-1.2896 0-.786.5576-1.28 1.3983-1.28.3832 0 .725.1462.9258.4037.0066-.0706.0136-.1362.0136-.1968 0-.5622-.3092-.8127-1.01-.8127-.3382 0-.6659.0486-1.0136.1408.1107-.219.1924-.3793.2971-.4574.1202-.0972.4294-.1408.9419-.1408 1.269 0 1.742.4259 1.742 1.4279v1.2024c0 .3161.033.4359.3772.4359zm-1.3272-.745c0-.4815-.2555-.747-.6378-.747-.4043 0-.6668.2825-.6668.7595 0 .467.2775.7615.6533.7615.3882 0 .6513-.275.6513-.774zm5.2706-.501c0 1.1528-.6924 1.8271-1.7786 1.8271-1.0957 0-1.7766-.6743-1.7766-1.8271 0-1.1584.6809-1.8252 1.7766-1.8252 1.0862 0 1.7786.6719 1.7786 1.8252zm-1.0867 0c0-.8693-.237-1.2997-.692-1.2997-.4734 0-.6938.4304-.6938 1.2997 0 .8662.2204 1.299.6939 1.299.467 0 .6919-.4328.6919-1.299zm-7.1313-.0441c0 1.1703-.6534 1.8567-1.5767 1.8567-.4233 0-.8056-.1633-1.0466-.47 0 0-.1082.4264-.6618.4264-.6884 0-.6644-.523-.6644-.523.3868.0165.3758-.2145.3758-.436v-2.8862c0-.3552-.0742-.4795-.4269-.4865.0136-.1072.0777-.5376.6789-.5376.8156 0 .7615.9149.7615.9149v.786c.229-.268.5516-.3942.9905-.3942.9624 0 1.5697.6447 1.5697 1.7495zm-1.0937.0806c0-.8983-.2716-1.3557-.7616-1.3557-.4393 0-.74.3968-.74 1.1047v.3602c0 .7205.3152 1.1168.7631 1.1168.477 0 .7385-.4134.7385-1.226zm-3.2425-.0365c0 1.1528-.688 1.8271-1.7806 1.8271-1.0937 0-1.7726-.6743-1.7726-1.8271 0-1.1584.6789-1.8252 1.7726-1.8252 1.0927 0 1.7806.6719 1.7806 1.8252zm-1.0832 0c0-.8693-.236-1.2997-.6974-1.2997-.467 0-.6874.4304-.6874 1.2997 0 .8662.2205 1.299.6874 1.299.469 0 .6974-.4328.6974-1.299zm-5.9895-2.716c-.268.0782-.7901.0972-1.5516.0972-.925 0-1.5391-.039-1.8543-.039-.5195 0-.7254.1342-.9088.6592.3006-.1017.6729-.1087 1.1353-.1087.3512 0 .4108.0431.4108.2941V18.846c0 .2821.1178.6789.7255.6789.7104 0 .8346-.526.8346-.526-.3552-.007-.4248-.1313-.4248-.4865V15.952c0-.2675.1012-.2795.471-.2795.1252 0 .2094.007.2605.007.545 0 .6883-.1047.9018-.6398zm3.1303 3.962s-.018.523-.6664.523c-.556 0-.6403-.4113-.6403-.4113-.248.2996-.6207.4549-1.0656.4549-.7655 0-1.2996-.5135-1.2996-1.2896 0-.786.557-1.28 1.3993-1.28.3843 0 .7274.1462.9258.4037.0036-.0706.0106-.1362.0106-.1968 0-.5622-.3051-.8127-1.007-.8127-.3382 0-.6669.0486-1.015.1408.1131-.219.1923-.3793.2945-.4574.1293-.0972.4329-.1408.9469-.1408 1.265 0 1.746.4259 1.746 1.4279v1.2024c0 .3161.0276.4359.3708.4359zm-1.3262-.745c0-.4815-.2555-.747-.6378-.747-.4013 0-.6668.2825-.6668.7595 0 .467.279.7615.6513.7615.3893 0 .6533-.275.6533-.774z" }) + ] + } + ); +}); + +export { SiTaobao as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.cjs new file mode 100644 index 000000000..5b5d41e81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCE00"; +const SiTapas = React__namespace.forwardRef(function SiTapas2({ title = "Tapas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.67 1.56c.282-.134.542-.338.81-.513.253-.163.54-.436.894-.33.103.296-.162.503-.331.662-.538.511-1.154.975-1.72 1.456A240.349 240.349 0 0 1 1.5 7.598a7.406 7.406 0 0 1-.612.445c-.183.118-.456.359-.71.165.071-.337.306-.567.512-.778.213-.216.414-.446.629-.66-.248-.427-.473-.821-.662-1.274-.186-.449-.378-.971-.38-1.554-.002-1.109.635-2.043 1.34-2.68C2.34.61 3.306.066 4.429.006 6.015-.078 6.933.71 7.67 1.56zm5.012 18.075v.198c-.278.01-.532-.01-.795-.016v-.198c.277-.008.535.006.795.016zm-1.59 0v.198c-.282-.012-.52.021-.792.018v-.198a9.53 9.53 0 0 1 .793-.018zm3.177.05c-.007.067.013.158-.017.199-.251-.02-.518-.024-.778-.033v-.198c.275.003.542.009.795.032zm-4.763 0v.199c-.274.002-.512.039-.795.032v-.197c.28.001.516-.036.795-.034zm5.555.034c.255.033.544.029.793.064.013.084-.014.129-.015.2-.255-.033-.544-.03-.794-.067a.703.703 0 0 0 .016-.197zm-7.142.065v.2c-.26.02-.517.046-.778.065-.022-.05-.018-.126-.017-.198.265-.024.521-.053.795-.067zm8.73.067c.269.023.537.048.793.082-.02.058-.004.148-.032.199-.25-.036-.518-.053-.778-.083-.01-.083.017-.128.017-.198zm-10.319.082c-.006.08.03.113.017.199-.259.022-.568.082-.793.082.012-.077-.02-.114-.018-.182.252-.045.529-.066.794-.099zm12.684.199c.012.084-.027.114-.017.196-.256-.044-.54-.063-.794-.114.01-.058.025-.109.017-.182.228.008.545.062.795.1zm-14.288 0c.06.022.033.133.05.196-.259.04-.517.08-.777.117a.68.68 0 0 1-.034-.197c.253-.038.515-.072.761-.116zm15.86.233a.628.628 0 0 1-.034.213c-.247-.055-.52-.083-.777-.132a.702.702 0 0 1 .034-.197c.263.032.503.09.776.116zm-17.414.016c.02.057.036.116.034.196-.263.04-.503.105-.778.133-.004-.073-.034-.12-.033-.197.275-.028.515-.092.777-.132zm18.208.132c.255.052.508.109.778.148-.004.072-.034.119-.034.197-.28-.021-.495-.11-.778-.133-.018-.041.016-.15.034-.212zM22.669 16.726c.156.092.47.098.595.246.099.115.144.486.182.744.203 1.296.287 2.808.332 4.219.008.266.016.583.016.891 0 .298.06.704 0 .91-.041.147-.24.194-.363.264a56.558 56.558 0 0 0-.065-2.843c-.124-.101-.444-.047-.464-.166-.044-.252.267-.09.447-.065-.045-1.272-.177-2.46-.33-3.623-.147-.074-.336-.105-.498-.164-.252.259-.636.939-1.223.81-.22-.047-.363-.342-.464-.545a3.243 3.243 0 0 1-.265-.744c-4.88-.936-11.589-1.016-16.502-.05-.153.655-.43 2.053-1.34 1.52a2.014 2.014 0 0 1-.81-.991 8.31 8.31 0 0 1-.547.133c-.192 1.084-.288 2.268-.346 3.489.166.01.416-.122.595-.1.004.066.028.114.033.18-.166.106-.437.105-.645.166a45.286 45.286 0 0 0-.066 2.976c-.08.022-.273-.122-.347-.213.064-2.301.179-4.553.363-6.732.28-.087.568-.17.844-.264-.04-.383-.117-.827.05-1.09.14-.224.531-.352.81-.432.99-.28 1.979-.05 2.63.413.14.102.247.239.396.299.025-.09-.094-.15-.149-.199-.567-.511-1.498-.958-2.612-.761-.348-1.09-.79-2.142-.794-3.538-.005-1.553.562-2.899 1.205-3.953.66-1.078 1.541-1.954 2.498-2.645a11.504 11.504 0 0 1 8.087-2.051c3.01.369 5.008 1.79 6.45 3.853.69.99 1.248 2.174 1.62 3.524.374 1.352.378 3.098-.05 4.53-1.383-.283-2.637.15-3.125 1.026-.004.015-.016.017-.016.033.498-.678 1.736-1.168 2.976-.86.328.082.746.2.908.43.224.317.122.989-.016 1.373zM16.22 9.382c.055.383.227.783.445.944.376.27.602.001.63-.38.035-.504-.174-1.1-.431-1.324-.105-.09-.299-.145-.412-.115-.256.065-.283.528-.232.875zm-8.649 1.092c-.033.556.16 1.277.529 1.472.43.227.633-.095.661-.495.045-.626-.273-1.714-.86-1.605-.25.047-.313.339-.33.628zm6.83 2.579c-.266.06-.633-.058-.926-.117a22.333 22.333 0 0 0-.91-.164c-.567-.088-1.344-.211-1.9.1-.198.11-.444.351-.465.662-.027.46.342.791.612.993.323.237.663.399 1.092.527.917.278 2.293.353 3.075.017.735-.316 1.706-1.062 1.72-2.05.01-.59-.272-1.119-.859-1.042-.65.085-.882.951-1.44 1.074z" }) + ] + } + ); +}); + +exports.default = SiTapas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.d.ts new file mode 100644 index 000000000..d5ddbbbd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCE00"; +declare const SiTapas: IconType; +export { SiTapas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.mjs new file mode 100644 index 000000000..573d3391e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTapas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCE00"; +const SiTapas = React.forwardRef(function SiTapas2({ title = "Tapas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.67 1.56c.282-.134.542-.338.81-.513.253-.163.54-.436.894-.33.103.296-.162.503-.331.662-.538.511-1.154.975-1.72 1.456A240.349 240.349 0 0 1 1.5 7.598a7.406 7.406 0 0 1-.612.445c-.183.118-.456.359-.71.165.071-.337.306-.567.512-.778.213-.216.414-.446.629-.66-.248-.427-.473-.821-.662-1.274-.186-.449-.378-.971-.38-1.554-.002-1.109.635-2.043 1.34-2.68C2.34.61 3.306.066 4.429.006 6.015-.078 6.933.71 7.67 1.56zm5.012 18.075v.198c-.278.01-.532-.01-.795-.016v-.198c.277-.008.535.006.795.016zm-1.59 0v.198c-.282-.012-.52.021-.792.018v-.198a9.53 9.53 0 0 1 .793-.018zm3.177.05c-.007.067.013.158-.017.199-.251-.02-.518-.024-.778-.033v-.198c.275.003.542.009.795.032zm-4.763 0v.199c-.274.002-.512.039-.795.032v-.197c.28.001.516-.036.795-.034zm5.555.034c.255.033.544.029.793.064.013.084-.014.129-.015.2-.255-.033-.544-.03-.794-.067a.703.703 0 0 0 .016-.197zm-7.142.065v.2c-.26.02-.517.046-.778.065-.022-.05-.018-.126-.017-.198.265-.024.521-.053.795-.067zm8.73.067c.269.023.537.048.793.082-.02.058-.004.148-.032.199-.25-.036-.518-.053-.778-.083-.01-.083.017-.128.017-.198zm-10.319.082c-.006.08.03.113.017.199-.259.022-.568.082-.793.082.012-.077-.02-.114-.018-.182.252-.045.529-.066.794-.099zm12.684.199c.012.084-.027.114-.017.196-.256-.044-.54-.063-.794-.114.01-.058.025-.109.017-.182.228.008.545.062.795.1zm-14.288 0c.06.022.033.133.05.196-.259.04-.517.08-.777.117a.68.68 0 0 1-.034-.197c.253-.038.515-.072.761-.116zm15.86.233a.628.628 0 0 1-.034.213c-.247-.055-.52-.083-.777-.132a.702.702 0 0 1 .034-.197c.263.032.503.09.776.116zm-17.414.016c.02.057.036.116.034.196-.263.04-.503.105-.778.133-.004-.073-.034-.12-.033-.197.275-.028.515-.092.777-.132zm18.208.132c.255.052.508.109.778.148-.004.072-.034.119-.034.197-.28-.021-.495-.11-.778-.133-.018-.041.016-.15.034-.212zM22.669 16.726c.156.092.47.098.595.246.099.115.144.486.182.744.203 1.296.287 2.808.332 4.219.008.266.016.583.016.891 0 .298.06.704 0 .91-.041.147-.24.194-.363.264a56.558 56.558 0 0 0-.065-2.843c-.124-.101-.444-.047-.464-.166-.044-.252.267-.09.447-.065-.045-1.272-.177-2.46-.33-3.623-.147-.074-.336-.105-.498-.164-.252.259-.636.939-1.223.81-.22-.047-.363-.342-.464-.545a3.243 3.243 0 0 1-.265-.744c-4.88-.936-11.589-1.016-16.502-.05-.153.655-.43 2.053-1.34 1.52a2.014 2.014 0 0 1-.81-.991 8.31 8.31 0 0 1-.547.133c-.192 1.084-.288 2.268-.346 3.489.166.01.416-.122.595-.1.004.066.028.114.033.18-.166.106-.437.105-.645.166a45.286 45.286 0 0 0-.066 2.976c-.08.022-.273-.122-.347-.213.064-2.301.179-4.553.363-6.732.28-.087.568-.17.844-.264-.04-.383-.117-.827.05-1.09.14-.224.531-.352.81-.432.99-.28 1.979-.05 2.63.413.14.102.247.239.396.299.025-.09-.094-.15-.149-.199-.567-.511-1.498-.958-2.612-.761-.348-1.09-.79-2.142-.794-3.538-.005-1.553.562-2.899 1.205-3.953.66-1.078 1.541-1.954 2.498-2.645a11.504 11.504 0 0 1 8.087-2.051c3.01.369 5.008 1.79 6.45 3.853.69.99 1.248 2.174 1.62 3.524.374 1.352.378 3.098-.05 4.53-1.383-.283-2.637.15-3.125 1.026-.004.015-.016.017-.016.033.498-.678 1.736-1.168 2.976-.86.328.082.746.2.908.43.224.317.122.989-.016 1.373zM16.22 9.382c.055.383.227.783.445.944.376.27.602.001.63-.38.035-.504-.174-1.1-.431-1.324-.105-.09-.299-.145-.412-.115-.256.065-.283.528-.232.875zm-8.649 1.092c-.033.556.16 1.277.529 1.472.43.227.633-.095.661-.495.045-.626-.273-1.714-.86-1.605-.25.047-.313.339-.33.628zm6.83 2.579c-.266.06-.633-.058-.926-.117a22.333 22.333 0 0 0-.91-.164c-.567-.088-1.344-.211-1.9.1-.198.11-.444.351-.465.662-.027.46.342.791.612.993.323.237.663.399 1.092.527.917.278 2.293.353 3.075.017.735-.316 1.706-1.062 1.72-2.05.01-.59-.272-1.119-.859-1.042-.65.085-.882.951-1.44 1.074z" }) + ] + } + ); +}); + +export { SiTapas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.cjs new file mode 100644 index 000000000..06fa313d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiTarget = React__namespace.forwardRef(function SiTarget2({ title = "Target", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0005 0C18.627 0 24 5.373 24 12.0005 24 18.627 18.627 24 11.9995 24 5.373 24 0 18.627 0 11.9995 0 5.373 5.373 0 12.0005 0zm0 19.826a7.8265 7.8265 0 10-.001-15.652C7.7133 4.2246 4.2653 7.7136 4.2653 12c0 4.2864 3.448 7.7754 7.7342 7.826h.001zm0-3.9853a3.8402 3.8402 0 110-7.6803c2.1204.0006 3.839 1.7197 3.839 3.8401s-1.7186 3.8396-3.839 3.8402z" }) + ] + } + ); +}); + +exports.default = SiTarget; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.d.ts new file mode 100644 index 000000000..524f5122a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiTarget: IconType; +export { SiTarget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.mjs new file mode 100644 index 000000000..1e894a44c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTarget.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiTarget = React.forwardRef(function SiTarget2({ title = "Target", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0005 0C18.627 0 24 5.373 24 12.0005 24 18.627 18.627 24 11.9995 24 5.373 24 0 18.627 0 11.9995 0 5.373 5.373 0 12.0005 0zm0 19.826a7.8265 7.8265 0 10-.001-15.652C7.7133 4.2246 4.2653 7.7136 4.2653 12c0 4.2864 3.448 7.7754 7.7342 7.826h.001zm0-3.9853a3.8402 3.8402 0 110-7.6803c2.1204.0006 3.839 1.7197 3.839 3.8401s-1.7186 3.8396-3.839 3.8402z" }) + ] + } + ); +}); + +export { SiTarget as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.cjs new file mode 100644 index 000000000..2d5d16ab2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003366"; +const SiTarom = React__namespace.forwardRef(function SiTarom2({ title = "TAROM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.054 0C5.424 0 .028 5.37 0 11.973 0 18.603 5.424 24 12.054 24 18.657 24 24 18.603 24 11.973 24 5.398 18.657 0 12.054 0Zm0 .877c2.603 0 5.068.96 6.986 2.52L7.178 15.123a21.416 21.416 0 0 1-.75-.101c-.55-.082-.988-.147-1.552-.089-.904.082-2.135.876-2.902 1.725a11.18 11.18 0 0 1-1.015-4.711C.959 5.864 5.917.877 12.054.877zm7.37 2.876c2.247 2.054 3.672 4.987 3.672 8.22 0 2.137-.549 4.055-1.59 5.753l-10.218-1.862ZM4.876 16.738c.795.028 1.644.084 2.521.33l9.534 4.712-5.15-4.219 9.479.547c-2 3.014-5.398 4.96-9.179 4.96-4.328 0-8.082-2.465-9.945-6.054.96-.164 1.809-.303 2.74-.276z" }) + ] + } + ); +}); + +exports.default = SiTarom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.d.ts new file mode 100644 index 000000000..0303ca21a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003366"; +declare const SiTarom: IconType; +export { SiTarom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.mjs new file mode 100644 index 000000000..93be9e404 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTarom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003366"; +const SiTarom = React.forwardRef(function SiTarom2({ title = "TAROM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.054 0C5.424 0 .028 5.37 0 11.973 0 18.603 5.424 24 12.054 24 18.657 24 24 18.603 24 11.973 24 5.398 18.657 0 12.054 0Zm0 .877c2.603 0 5.068.96 6.986 2.52L7.178 15.123a21.416 21.416 0 0 1-.75-.101c-.55-.082-.988-.147-1.552-.089-.904.082-2.135.876-2.902 1.725a11.18 11.18 0 0 1-1.015-4.711C.959 5.864 5.917.877 12.054.877zm7.37 2.876c2.247 2.054 3.672 4.987 3.672 8.22 0 2.137-.549 4.055-1.59 5.753l-10.218-1.862ZM4.876 16.738c.795.028 1.644.084 2.521.33l9.534 4.712-5.15-4.219 9.479.547c-2 3.014-5.398 4.96-9.179 4.96-4.328 0-8.082-2.465-9.945-6.054.96-.164 1.809-.303 2.74-.276z" }) + ] + } + ); +}); + +export { SiTarom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTask.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTask.cjs new file mode 100644 index 000000000..0b01108da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTask.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#29BEB0"; +const SiTask = React__namespace.forwardRef(function SiTask2({ title = "Task", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.857 18.013 11.736 24V12.456L1.857 6.468Zm20.286 0V6.468l-9.879 5.988V24Zm-.246-12.014L12 0 2.103 5.999 12 11.998Z" }) + ] + } + ); +}); + +exports.default = SiTask; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTask.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTask.d.ts new file mode 100644 index 000000000..5b56d62df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTask.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#29BEB0"; +declare const SiTask: IconType; +export { SiTask as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTask.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTask.mjs new file mode 100644 index 000000000..1c9f8a15e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTask.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#29BEB0"; +const SiTask = React.forwardRef(function SiTask2({ title = "Task", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.857 18.013 11.736 24V12.456L1.857 6.468Zm20.286 0V6.468l-9.879 5.988V24Zm-.246-12.014L12 0 2.103 5.999 12 11.998Z" }) + ] + } + ); +}); + +export { SiTask as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.cjs new file mode 100644 index 000000000..153a33783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1FA3EC"; +const SiTasmota = React__namespace.forwardRef(function SiTasmota2({ title = "Tasmota", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L0 12l1.371 1.372L12 2.743l10.629 10.629L24 12 12 0zm0 8.463a7.41 7.41 0 0 0-2.64 14.334v-2.133a5.464 5.464 0 0 1 1.671-10.17V24h1.94V10.494a5.464 5.464 0 0 1 1.669 10.171v2.133A7.41 7.41 0 0 0 12 8.463z" }) + ] + } + ); +}); + +exports.default = SiTasmota; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.d.ts new file mode 100644 index 000000000..e7995ca8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1FA3EC"; +declare const SiTasmota: IconType; +export { SiTasmota as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.mjs new file mode 100644 index 000000000..d96c0b609 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTasmota.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1FA3EC"; +const SiTasmota = React.forwardRef(function SiTasmota2({ title = "Tasmota", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L0 12l1.371 1.372L12 2.743l10.629 10.629L24 12 12 0zm0 8.463a7.41 7.41 0 0 0-2.64 14.334v-2.133a5.464 5.464 0 0 1 1.671-10.17V24h1.94V10.494a5.464 5.464 0 0 1 1.669 10.171v2.133A7.41 7.41 0 0 0 12 8.463z" }) + ] + } + ); +}); + +export { SiTasmota as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTata.cjs new file mode 100644 index 000000000..2c78fa764 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#486AAE"; +const SiTata = React__namespace.forwardRef(function SiTata2({ title = "Tata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.774 11.568c.193-1.322.168-2.013-1.768-1.906-2.223.124-4.476.265-7.849 1.027A5.63 5.63 0 0 0 0 12c0 1.52.618 2.99 1.787 4.254 1.06 1.144 2.556 2.095 4.326 2.752a15.48 15.48 0 0 0 2.014.588c.13-.527.959-3.907 1.616-7.823l.03-.202m14.07-.88c-3.372-.762-5.624-.902-7.846-1.026-1.937-.107-1.962.584-1.768 1.906l.046.298c.65 3.848 1.458 7.16 1.598 7.72C20.595 18.508 24 15.516 24 12c0-.443-.054-.88-.157-1.311m-.491-1.324a7.163 7.163 0 0 0-1.14-1.618c-1.06-1.144-2.555-2.095-4.325-2.752-1.784-.662-3.82-1.011-5.887-1.011-2.068 0-4.103.35-5.887 1.01-1.77.658-3.266 1.61-4.326 2.753A7.17 7.17 0 0 0 .648 9.366c2.304-.557 6.245-1.293 9.904-1.37.353-.008.596.105.756.307.196.248.18 1.128.175 1.522l-.104 10.18a18.507 18.507 0 0 0 1.244 0l-.104-10.18c-.005-.394-.02-1.274.175-1.522.16-.202.403-.315.756-.308 3.658.078 7.597.813 9.902 1.37z" }) + ] + } + ); +}); + +exports.default = SiTata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTata.d.ts new file mode 100644 index 000000000..76762862d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#486AAE"; +declare const SiTata: IconType; +export { SiTata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTata.mjs new file mode 100644 index 000000000..c165afa22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#486AAE"; +const SiTata = React.forwardRef(function SiTata2({ title = "Tata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.774 11.568c.193-1.322.168-2.013-1.768-1.906-2.223.124-4.476.265-7.849 1.027A5.63 5.63 0 0 0 0 12c0 1.52.618 2.99 1.787 4.254 1.06 1.144 2.556 2.095 4.326 2.752a15.48 15.48 0 0 0 2.014.588c.13-.527.959-3.907 1.616-7.823l.03-.202m14.07-.88c-3.372-.762-5.624-.902-7.846-1.026-1.937-.107-1.962.584-1.768 1.906l.046.298c.65 3.848 1.458 7.16 1.598 7.72C20.595 18.508 24 15.516 24 12c0-.443-.054-.88-.157-1.311m-.491-1.324a7.163 7.163 0 0 0-1.14-1.618c-1.06-1.144-2.555-2.095-4.325-2.752-1.784-.662-3.82-1.011-5.887-1.011-2.068 0-4.103.35-5.887 1.01-1.77.658-3.266 1.61-4.326 2.753A7.17 7.17 0 0 0 .648 9.366c2.304-.557 6.245-1.293 9.904-1.37.353-.008.596.105.756.307.196.248.18 1.128.175 1.522l-.104 10.18a18.507 18.507 0 0 0 1.244 0l-.104-10.18c-.005-.394-.02-1.274.175-1.522.16-.202.403-.315.756-.308 3.658.078 7.597.813 9.902 1.37z" }) + ] + } + ); +}); + +export { SiTata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.cjs new file mode 100644 index 000000000..52bc9f9b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24C8D8"; +const SiTauri = React__namespace.forwardRef(function SiTauri2({ title = "Tauri", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.912 0a8.72 8.72 0 0 0-8.308 6.139c1.05-.515 2.18-.845 3.342-.976 2.415-3.363 7.4-3.412 9.88-.097 2.48 3.315 1.025 8.084-2.883 9.45a6.131 6.131 0 0 1-.3 2.762 8.72 8.72 0 0 0 3.01-1.225A8.72 8.72 0 0 0 13.913 0zm.082 6.451a2.284 2.284 0 1 0-.15 4.566 2.284 2.284 0 0 0 .15-4.566zm-5.629.27a8.72 8.72 0 0 0-3.031 1.235 8.72 8.72 0 1 0 13.06 9.9131 10.173 10.174 0 0 1-3.343.965 6.125 6.125 0 1 1-7.028-9.343 6.114 6.115 0 0 1 .342-2.772zm1.713 6.27a2.284 2.284 0 0 0-2.284 2.283 2.284 2.284 0 0 0 2.284 2.284 2.284 2.284 0 0 0 2.284-2.284 2.284 2.284 0 0 0-2.284-2.284z" }) + ] + } + ); +}); + +exports.default = SiTauri; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.d.ts new file mode 100644 index 000000000..747cabe1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24C8D8"; +declare const SiTauri: IconType; +export { SiTauri as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.mjs new file mode 100644 index 000000000..c5c6b4e4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTauri.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24C8D8"; +const SiTauri = React.forwardRef(function SiTauri2({ title = "Tauri", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.912 0a8.72 8.72 0 0 0-8.308 6.139c1.05-.515 2.18-.845 3.342-.976 2.415-3.363 7.4-3.412 9.88-.097 2.48 3.315 1.025 8.084-2.883 9.45a6.131 6.131 0 0 1-.3 2.762 8.72 8.72 0 0 0 3.01-1.225A8.72 8.72 0 0 0 13.913 0zm.082 6.451a2.284 2.284 0 1 0-.15 4.566 2.284 2.284 0 0 0 .15-4.566zm-5.629.27a8.72 8.72 0 0 0-3.031 1.235 8.72 8.72 0 1 0 13.06 9.9131 10.173 10.174 0 0 1-3.343.965 6.125 6.125 0 1 1-7.028-9.343 6.114 6.115 0 0 1 .342-2.772zm1.713 6.27a2.284 2.284 0 0 0-2.284 2.283 2.284 2.284 0 0 0 2.284 2.284 2.284 2.284 0 0 0 2.284-2.284 2.284 2.284 0 0 0-2.284-2.284z" }) + ] + } + ); +}); + +export { SiTauri as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.cjs new file mode 100644 index 000000000..c0dc5e810 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED8B0B"; +const SiTaxbuzz = React__namespace.forwardRef(function SiTaxbuzz2({ title = "TaxBuzz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.79 6.255c3.939-2.066 5.753.089 5.753.089-2.289-.952-5.753-.089-5.753-.089zm6.556.089c-1.245-1.204-.595-4.787-.595-4.787-1.754 3.27.595 4.787.595 4.787zm14.821 8.8s.312.728.505 1.606l-8.548 6.452-2.343-6.373c-.704.236-2.667.723-5.506.055-3.598-.847-3.835-1.516-4.995-2.319-1.16-.803-1.962-2.497-2.156-3.152-.193-.654-.208-1.918.297-2.825.505-.907 1.903-1.501 1.903-1.501s.818-.342 2.988-.446c2.172-.104 3.614.639 3.614.639s-.788-2.601-.238-4.727S10.903.829 10.903.829s1.606.416 2.943 2.602c.885 1.445 1.177 2.263 1.274 2.654 1.535-.355 3.389-1.046 5.349-2.304 0 0 .954 2.695 3.531 10.785l-.833.578zm-11.551-7.76l.55 1.412c4.765.238 7.938-2.453 7.938-2.453l-.327-.847c-4.177 2.84-8.161 1.888-8.161 1.888zm-.776-5.66s1.182 1.691 2.096 4.62c0 0 .981.085 1.762-.227-.001 0-1.506-4.237-3.858-4.393zm-.569 6.734l.557.112-.825-2.364c2.071.228 2.341.138 2.341.138-.424-1.959-1.84-4.675-1.84-4.675-.958.144-1.136 1.293-1.136 1.293-.703 3.267.903 5.496.903 5.496zm-8.942.602c6.69 1.16 9.968 3.769 9.968 3.769L9.891 9.033S8.469 7.505 5.209 7.436c-3.244-.067-3.88 1.624-3.88 1.624zm11.016 6.657l-.728-1.951c-4.62-3.2-10.354-4.504-10.354-4.504s-.156.19-.212 1.026c-.056.836.346 1.628.948 2.598s1.762 1.594 2.564 2.099c.803.505 2.839.978 4.616 1.12 1.787.14 3.166-.388 3.166-.388zm.579-4.705c5.337-.268 7.79-2.787 7.79-2.787l-.446-1.257c-3.345 2.869-7.879 2.497-7.879 2.497l.535 1.547zm.996 2.527c4.668-.788 7.344-3.479 7.344-3.479l-.387-1.189c-3.226 2.81-7.671 2.78-7.671 2.78l.714 1.888zm.967 2.713c3.925-1.527 7.024-4.382 7.024-4.382l-.39-1.137c-3.267 2.754-7.403 3.456-7.403 3.456l.769 2.063zm7.648-2.386l-.479-1.316c-2.341 2.33-6.946 4.393-6.946 4.393l.751 1.94 6.674-5.017zm-18.01 3.077c3.687 3.062 8.08.461 8.08.461-4.72 1.085-8.08-.461-8.08-.461z" }) + ] + } + ); +}); + +exports.default = SiTaxbuzz; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.d.ts new file mode 100644 index 000000000..9153e9309 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED8B0B"; +declare const SiTaxbuzz: IconType; +export { SiTaxbuzz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.mjs new file mode 100644 index 000000000..c7051bead --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTaxbuzz.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED8B0B"; +const SiTaxbuzz = React.forwardRef(function SiTaxbuzz2({ title = "TaxBuzz", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.79 6.255c3.939-2.066 5.753.089 5.753.089-2.289-.952-5.753-.089-5.753-.089zm6.556.089c-1.245-1.204-.595-4.787-.595-4.787-1.754 3.27.595 4.787.595 4.787zm14.821 8.8s.312.728.505 1.606l-8.548 6.452-2.343-6.373c-.704.236-2.667.723-5.506.055-3.598-.847-3.835-1.516-4.995-2.319-1.16-.803-1.962-2.497-2.156-3.152-.193-.654-.208-1.918.297-2.825.505-.907 1.903-1.501 1.903-1.501s.818-.342 2.988-.446c2.172-.104 3.614.639 3.614.639s-.788-2.601-.238-4.727S10.903.829 10.903.829s1.606.416 2.943 2.602c.885 1.445 1.177 2.263 1.274 2.654 1.535-.355 3.389-1.046 5.349-2.304 0 0 .954 2.695 3.531 10.785l-.833.578zm-11.551-7.76l.55 1.412c4.765.238 7.938-2.453 7.938-2.453l-.327-.847c-4.177 2.84-8.161 1.888-8.161 1.888zm-.776-5.66s1.182 1.691 2.096 4.62c0 0 .981.085 1.762-.227-.001 0-1.506-4.237-3.858-4.393zm-.569 6.734l.557.112-.825-2.364c2.071.228 2.341.138 2.341.138-.424-1.959-1.84-4.675-1.84-4.675-.958.144-1.136 1.293-1.136 1.293-.703 3.267.903 5.496.903 5.496zm-8.942.602c6.69 1.16 9.968 3.769 9.968 3.769L9.891 9.033S8.469 7.505 5.209 7.436c-3.244-.067-3.88 1.624-3.88 1.624zm11.016 6.657l-.728-1.951c-4.62-3.2-10.354-4.504-10.354-4.504s-.156.19-.212 1.026c-.056.836.346 1.628.948 2.598s1.762 1.594 2.564 2.099c.803.505 2.839.978 4.616 1.12 1.787.14 3.166-.388 3.166-.388zm.579-4.705c5.337-.268 7.79-2.787 7.79-2.787l-.446-1.257c-3.345 2.869-7.879 2.497-7.879 2.497l.535 1.547zm.996 2.527c4.668-.788 7.344-3.479 7.344-3.479l-.387-1.189c-3.226 2.81-7.671 2.78-7.671 2.78l.714 1.888zm.967 2.713c3.925-1.527 7.024-4.382 7.024-4.382l-.39-1.137c-3.267 2.754-7.403 3.456-7.403 3.456l.769 2.063zm7.648-2.386l-.479-1.316c-2.341 2.33-6.946 4.393-6.946 4.393l.751 1.94 6.674-5.017zm-18.01 3.077c3.687 3.062 8.08.461 8.08.461-4.72 1.085-8.08-.461-8.08-.461z" }) + ] + } + ); +}); + +export { SiTaxbuzz as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.cjs new file mode 100644 index 000000000..963097f84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE3984"; +const SiTcs = React__namespace.forwardRef(function SiTcs2({ title = "Tata Consultancy Services", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 16.262c0-1.305-.522-2.174-1.827-3.088l-1.785-1.24c-.033-.022-.06-.045-.092-.068-.629-.473-.91-.912-.91-1.43 0-.696.567-1.13 1.371-1.13 1.022 0 1.503.477 2.111.477.479 0 .805-.326.805-.804 0-.348-.174-.631-.631-.848-.718-.348-1.503-.48-2.35-.48-.892 0-1.676.262-2.241.697a.984.984 0 0 0 0-.001 3.64 3.64 0 0 0-.326.283l-.008.01c-.65.695-1.19 1.714-1.623 3.145l-.501 1.652c-.893 2.912-2.306 4.304-4.504 4.304-2.415 0-3.938-1.675-3.938-4.153v.026-.025c0-2.468 1.509-4.159 3.69-4.174l.03-.002a4.857 4.857 0 0 1 2.089.457c.282.13.522.174.74.174.1 0 .192-.017.279-.041.362-.103.592-.408.592-.83 0-.326-.196-.653-.653-.87-.827-.414-1.894-.653-3.046-.653-.86 0-1.653.152-2.359.436-2.117.851-3.452 2.886-3.452 5.545l.002-.024-.001.024c0 .931.169 1.783.479 2.536-.452.985-1.143 1.509-2.046 1.509-1.087 0-1.804-.63-1.806-2.06V9.477h2.546c.588 0 .979-.348.979-.848s-.39-.848-.98-.848H2.09V5.563c0-.653-.435-1.088-1.044-1.088C.435 4.475 0 4.911 0 5.563v10.285c0 2.393 1.37 3.655 3.7 3.655.486.001.97-.08 1.43-.24h.005a3.49 3.49 0 0 0 1.81-1.514c1.034 1.117 2.565 1.775 4.48 1.775.999 0 1.868-.195 2.65-.607h.003c1.588-.827 2.72-2.502 3.503-5.068l.457-1.5a2.984 2.984 0 0 1-.162-.234c.308.492.785.953 1.468 1.43l1.631 1.13c.244.17.463.34.668.51.289.322.378.67.378 1.078 0 .935-.74 1.566-1.807 1.566-1.022 0-1.893-.522-2.371-.522s-.806.325-.806.804c0 .348.174.63.632.848.631.304 1.653.566 2.567.566 1.153 0 2.111-.348 2.785-.957a1.59 1.59 0 0 0 .156-.161A3.104 3.104 0 0 0 24 16.262z" }) + ] + } + ); +}); + +exports.default = SiTcs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.d.ts new file mode 100644 index 000000000..bb8772aa6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE3984"; +declare const SiTcs: IconType; +export { SiTcs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.mjs new file mode 100644 index 000000000..f2b953472 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTcs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE3984"; +const SiTcs = React.forwardRef(function SiTcs2({ title = "Tata Consultancy Services", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 16.262c0-1.305-.522-2.174-1.827-3.088l-1.785-1.24c-.033-.022-.06-.045-.092-.068-.629-.473-.91-.912-.91-1.43 0-.696.567-1.13 1.371-1.13 1.022 0 1.503.477 2.111.477.479 0 .805-.326.805-.804 0-.348-.174-.631-.631-.848-.718-.348-1.503-.48-2.35-.48-.892 0-1.676.262-2.241.697a.984.984 0 0 0 0-.001 3.64 3.64 0 0 0-.326.283l-.008.01c-.65.695-1.19 1.714-1.623 3.145l-.501 1.652c-.893 2.912-2.306 4.304-4.504 4.304-2.415 0-3.938-1.675-3.938-4.153v.026-.025c0-2.468 1.509-4.159 3.69-4.174l.03-.002a4.857 4.857 0 0 1 2.089.457c.282.13.522.174.74.174.1 0 .192-.017.279-.041.362-.103.592-.408.592-.83 0-.326-.196-.653-.653-.87-.827-.414-1.894-.653-3.046-.653-.86 0-1.653.152-2.359.436-2.117.851-3.452 2.886-3.452 5.545l.002-.024-.001.024c0 .931.169 1.783.479 2.536-.452.985-1.143 1.509-2.046 1.509-1.087 0-1.804-.63-1.806-2.06V9.477h2.546c.588 0 .979-.348.979-.848s-.39-.848-.98-.848H2.09V5.563c0-.653-.435-1.088-1.044-1.088C.435 4.475 0 4.911 0 5.563v10.285c0 2.393 1.37 3.655 3.7 3.655.486.001.97-.08 1.43-.24h.005a3.49 3.49 0 0 0 1.81-1.514c1.034 1.117 2.565 1.775 4.48 1.775.999 0 1.868-.195 2.65-.607h.003c1.588-.827 2.72-2.502 3.503-5.068l.457-1.5a2.984 2.984 0 0 1-.162-.234c.308.492.785.953 1.468 1.43l1.631 1.13c.244.17.463.34.668.51.289.322.378.67.378 1.078 0 .935-.74 1.566-1.807 1.566-1.022 0-1.893-.522-2.371-.522s-.806.325-.806.804c0 .348.174.63.632.848.631.304 1.653.566 2.567.566 1.153 0 2.111-.348 2.785-.957a1.59 1.59 0 0 0 .156-.161A3.104 3.104 0 0 0 24 16.262z" }) + ] + } + ); +}); + +export { SiTcs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.cjs new file mode 100644 index 000000000..8fb606f53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005149"; +const SiTeal = React__namespace.forwardRef(function SiTeal2({ title = "Teal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.069 2.334v4.129h7.897a3.168 3.168 0 0 1 2.25.947c.596.604.932 1.425.933 2.281l.008 4.244v3.61H7.253A3.17 3.17 0 0 1 5 16.598a3.251 3.251 0 0 1-.932-2.283V6.463H0v8.014c0 .944.184 1.879.541 2.752a7.193 7.193 0 0 0 1.537 2.332 7.074 7.074 0 0 0 2.301 1.558c.86.362 1.783.547 2.714.547h4.723a3.32 3.32 0 0 0 2.365-.992c.627-.636.98-1.498.98-2.397v-.732h8.824l-2.328-2.283L24 12.965h-6.309a5.802 5.802 0 0 0 2.191-2.884 5.893 5.893 0 0 0 .071-3.639 5.819 5.819 0 0 0-2.075-2.971 5.685 5.685 0 0 0-3.411-1.137H4.069Zm6.707 6.137c-1.212 0-2.194.997-2.194 2.225 0 1.229.982 2.225 2.194 2.225s2.194-.996 2.194-2.225c0-1.228-.982-2.225-2.194-2.225Z" }) + ] + } + ); +}); + +exports.default = SiTeal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.d.ts new file mode 100644 index 000000000..c39c1fb8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005149"; +declare const SiTeal: IconType; +export { SiTeal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.mjs new file mode 100644 index 000000000..63c0ed091 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005149"; +const SiTeal = React.forwardRef(function SiTeal2({ title = "Teal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.069 2.334v4.129h7.897a3.168 3.168 0 0 1 2.25.947c.596.604.932 1.425.933 2.281l.008 4.244v3.61H7.253A3.17 3.17 0 0 1 5 16.598a3.251 3.251 0 0 1-.932-2.283V6.463H0v8.014c0 .944.184 1.879.541 2.752a7.193 7.193 0 0 0 1.537 2.332 7.074 7.074 0 0 0 2.301 1.558c.86.362 1.783.547 2.714.547h4.723a3.32 3.32 0 0 0 2.365-.992c.627-.636.98-1.498.98-2.397v-.732h8.824l-2.328-2.283L24 12.965h-6.309a5.802 5.802 0 0 0 2.191-2.884 5.893 5.893 0 0 0 .071-3.639 5.819 5.819 0 0 0-2.075-2.971 5.685 5.685 0 0 0-3.411-1.137H4.069Zm6.707 6.137c-1.212 0-2.194.997-2.194 2.225 0 1.229.982 2.225 2.194 2.225s2.194-.996 2.194-2.225c0-1.228-.982-2.225-2.194-2.225Z" }) + ] + } + ); +}); + +export { SiTeal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.cjs new file mode 100644 index 000000000..d2aa7505e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTeamcity = React__namespace.forwardRef(function SiTeamcity2({ title = "TeamCity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 0v24h24v-24zm2.664 2.964h7.48v1.832h-2.748v7.196h-1.984v-7.196h-2.748zm9.328 18h-9v-1.5h9zm5.56391-9.21826a4.62 4.62 0 0 1 -2.03591.37426 4.556 4.556 0 0 1 -4.628-4.616v-.024a4.584 4.584 0 0 1 4.708-4.668 4.65561 4.65561 0 0 1 3.56 1.388l-1.264 1.456a3.33594 3.33594 0 0 0 -2.312-1.02 2.67116 2.67116 0 0 0 -2.616 2.8v.028a2.68058 2.68058 0 0 0 2.616 2.836 3.22606 3.22606 0 0 0 2.376-1.056l1.264 1.276a4.61947 4.61947 0 0 1 -1.66809 1.22573z" }) + ] + } + ); +}); + +exports.default = SiTeamcity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.d.ts new file mode 100644 index 000000000..250dd8682 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTeamcity: IconType; +export { SiTeamcity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.mjs new file mode 100644 index 000000000..a2763c486 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamcity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTeamcity = React.forwardRef(function SiTeamcity2({ title = "TeamCity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 0v24h24v-24zm2.664 2.964h7.48v1.832h-2.748v7.196h-1.984v-7.196h-2.748zm9.328 18h-9v-1.5h9zm5.56391-9.21826a4.62 4.62 0 0 1 -2.03591.37426 4.556 4.556 0 0 1 -4.628-4.616v-.024a4.584 4.584 0 0 1 4.708-4.668 4.65561 4.65561 0 0 1 3.56 1.388l-1.264 1.456a3.33594 3.33594 0 0 0 -2.312-1.02 2.67116 2.67116 0 0 0 -2.616 2.8v.028a2.68058 2.68058 0 0 0 2.616 2.836 3.22606 3.22606 0 0 0 2.376-1.056l1.264 1.276a4.61947 4.61947 0 0 1 -1.66809 1.22573z" }) + ] + } + ); +}); + +export { SiTeamcity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.cjs new file mode 100644 index 000000000..14283a0b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B69B6"; +const SiTeamspeak = React__namespace.forwardRef(function SiTeamspeak2({ title = "TeamSpeak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.005.605h-.09l-.028.001h-.064l-.03.001-.07.001-.02.001-.09.003h-.022l-.07.003-.03.001-.063.003L11.4.62l-.09.005-.09.006h-.015l-.01.001-.064.005-.03.002-.07.005-.02.002-.088.008-.02.001-.07.007-.027.003-.065.006-.025.003-.088.01-.09.01-.023.003-.066.008-.008.002-.015.002h-.003l-.073.01-.015.002-.05.007-.04.006-.014.002-.073.01-.024.005-.07.01-.02.004-.088.015-.035.006-.018.004-.035.006-.02.003-.07.013-.02.004-.08.015h-.003l-.004.001-.005.001-.087.018-.007.002H9.57l-.034.008-.043.01-.018.002L9.4.89l-.013.003-.09.02-.09.02-.01.003-.08.02-.011.003-.087.022-.092.024-.088.024-.01.002-.084.024h-.003l-.09.026-.091.027H8.56l-.073.023-.01.003-.005.002h-.003l-.028.01a6.02 6.02 0 0 0-.19.062l-.08.025-.257.091-.075.027a8.04 8.04 0 0 0-.305.12c-.02.007-.041.014-.061.023l-.144.06a12.574 12.574 0 0 0-.53.24l-.07.034-.08.04c-.17.085-.34.174-.506.267-.154.18-.304.362-.45.548l-.06.08-.036.043.005-.003c-.037.048-.072.098-.11.146-.077.103-.156.205-.231.31-.057.08-.112.162-.167.243-.081.118-.163.234-.24.355-.054.083-.105.168-.158.25-.074.12-.15.24-.22.362-.051.085-.1.172-.148.258-.07.126-.141.25-.21.38-.044.086-.09.174-.132.26a16.1 16.1 0 0 0-.187.379c-.045.096-.088.193-.132.29a16.02 16.02 0 0 0-.433 1.063l-.05.128.009-.012c-.127.357-.245.717-.348 1.084l-.107.049a4.673 4.673 0 0 0-.015.006 4.75 4.75 0 0 0-.56.307 4.673 4.673 0 0 0-.035.022 4.693 4.693 0 0 0-.493.37 4.673 4.673 0 0 0-.045.038 4.705 4.705 0 0 0-.427.427 4.673 4.673 0 0 0-.044.05 4.692 4.692 0 0 0-.366.488 4.673 4.673 0 0 0-.025.04 4.663 4.663 0 0 0-.302.553 4.673 4.673 0 0 0-.01.024 4.638 4.638 0 0 0-.227.606 4.673 4.673 0 0 0-.003.013c-.06.208-.108.42-.14.64a4.673 4.673 0 0 0 0 .01 4.7 4.7 0 0 0 0 1.318 4.673 4.673 0 0 0 0 .01c.032.218.08.432.14.64a4.673 4.673 0 0 0 .004.014c.061.208.137.41.226.605a4.673 4.673 0 0 0 .01.024c.09.192.19.377.303.554a4.673 4.673 0 0 0 .024.038c.112.172.235.336.368.49a4.673 4.673 0 0 0 .041.049c.133.15.275.293.426.426a4.673 4.673 0 0 0 .048.04c.155.134.318.256.49.367a4.673 4.673 0 0 0 .04.027c.178.113.364.215.557.304a4.673 4.673 0 0 0 .015.006c.197.09.4.166.61.228a4.673 4.673 0 0 0 .017.005c.207.06.42.107.637.138a4.673 4.673 0 0 0 .012.002 4.698 4.698 0 0 0 1.315 0 4.673 4.673 0 0 0 .012-.002c.218-.031.43-.078.637-.138a4.673 4.673 0 0 0 .017-.005 4.67 4.67 0 0 0 .609-.227 4.673 4.673 0 0 0 .017-.008c.192-.09.378-.19.555-.303a4.673 4.673 0 0 0 .042-.027c.17-.111.335-.234.49-.366a4.673 4.673 0 0 0 .045-.04c.152-.133.295-.277.429-.43a4.673 4.673 0 0 0 .039-.044c.134-.156.257-.32.37-.493a4.673 4.673 0 0 0 .02-.035 4.62 4.62 0 0 0 .306-.557 4.673 4.673 0 0 0 .01-.021c.089-.197.165-.4.227-.61a4.673 4.673 0 0 0 .002-.008c.06-.208.108-.421.14-.64a4.673 4.673 0 0 0 0-.02 4.698 4.698 0 0 0 .04-.881 4.673 4.673 0 0 0 0-.002c0-.05-.005-.098-.01-.147a4.673 4.673 0 0 0-.006-.085 4.176 4.176 0 0 0-.028-.222 4.673 4.673 0 0 0 0-.005 4.606 4.606 0 0 0-.304-1.098 4.673 4.673 0 0 0 0-.001c-.03-.07-.061-.14-.094-.21a4.673 4.673 0 0 0-.002-.003 4.528 4.528 0 0 0-.083-.165 4.673 4.673 0 0 0-.02-.04l-.07-.123a4.673 4.673 0 0 0-.05-.085l-.037-.06a4.673 4.673 0 0 0-.087-.137l-.012-.016A4.673 4.673 0 0 0 7.14 8.635c-.018-.011-.035-.023-.053-.033a4.673 4.673 0 0 0-.096-.055c-.036-.021-.072-.043-.11-.063a4.673 4.673 0 0 0-.044-.022 4.636 4.636 0 0 0-1.368-.464 13.673 13.673 0 0 1 3.39-5.233 10.301 10.301 0 0 1 3.147-.493c5.7 0 10.329 4.629 10.33 10.329v.002c0 2.13-.647 4.11-1.753 5.756l-.013.018C18.5 21.46 14.682 23.57 9.503 23.02l.02.016c5.2 1.138 9.375-.545 11.882-3.46l-.018.026a10.7 10.7 0 0 0 .308-.372c.018-.023.035-.048.054-.071.094-.122.186-.245.275-.37l.1-.146a10.726 10.726 0 0 0 .506-.816l.076-.133c.173-.32.329-.647.469-.981l.062-.158a10.68 10.68 0 0 0 .314-.901c.016-.053.033-.105.047-.157a9.7 9.7 0 0 0 .136-.527l.003-.018c.039-.17.072-.343.103-.516l.025-.16a10.6 10.6 0 0 0 .108-.95c.004-.06.01-.118.012-.177.009-.181.015-.363.015-.545C24.001 5.982 18.626.605 12.005.605zm.232 3.277c1.363 1.373 2.135 3.205 2.41 5.229.104.765-.046 1.61-.77 2.13-.058.333.115.696.267 1.055.388.92.98 1.757 1.408 2.642.384.798-.632 1.388-1.374 1.63a6.24 6.24 0 0 1-.275.084c.048.383.274.67.215 1.003a.98.98 0 0 1-.372.6s.28.878-.38 1.26c-.152.087-.33.104-.364.34-.064.468-.134.926-.504 1.307-.056.057-.115.11-.177.159 4.326-.152 7.97-3.507 8.372-7.93.435-4.794-3.104-9.04-7.9-9.476a8.865 8.865 0 0 0-.556-.034zm-1.973.17a8.68 8.68 0 0 0-2.003.672c.388.134.736.316.97.534 1.09 1.01 1.629 2.003 1.93 3.383.267 1.218.395 1.809-.245 2.253-.865.6.923 3.164 1.272 3.906-.46.592-1.062.579-1.38.743-.176.09-.103.426-.074.685.028.254.26.413.133.61-.114.175-.55.188-.737.31.182.2.585.399.53.658-.04.2-.492.166-.666.622-.093.245-.045.698-.238.927-.448.53-.917.62-1.85.517a15.94 15.94 0 0 1-.908-.127 8.61 8.61 0 0 0 2.263 1.137c.25.082.517.11.78.082.492-.046.834-.226 1.166-.62.22-.26.165-.776.27-1.054.199-.52.713-.478.76-.706.06-.296-.398-.523-.604-.75.214-.138.707-.153.838-.353.145-.223-.12-.404-.152-.693-.032-.294-.115-.676.085-.78.36-.186 1.045-.172 1.569-.844-.397-.844-2.43-3.76-1.447-4.442.728-.506.583-1.177.28-2.563-.344-1.57-.957-2.698-2.195-3.847a2.214 2.214 0 0 0-.347-.26Z" }) + ] + } + ); +}); + +exports.default = SiTeamspeak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.d.ts new file mode 100644 index 000000000..402a9030b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B69B6"; +declare const SiTeamspeak: IconType; +export { SiTeamspeak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.mjs new file mode 100644 index 000000000..ddde29677 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamspeak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B69B6"; +const SiTeamspeak = React.forwardRef(function SiTeamspeak2({ title = "TeamSpeak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.005.605h-.09l-.028.001h-.064l-.03.001-.07.001-.02.001-.09.003h-.022l-.07.003-.03.001-.063.003L11.4.62l-.09.005-.09.006h-.015l-.01.001-.064.005-.03.002-.07.005-.02.002-.088.008-.02.001-.07.007-.027.003-.065.006-.025.003-.088.01-.09.01-.023.003-.066.008-.008.002-.015.002h-.003l-.073.01-.015.002-.05.007-.04.006-.014.002-.073.01-.024.005-.07.01-.02.004-.088.015-.035.006-.018.004-.035.006-.02.003-.07.013-.02.004-.08.015h-.003l-.004.001-.005.001-.087.018-.007.002H9.57l-.034.008-.043.01-.018.002L9.4.89l-.013.003-.09.02-.09.02-.01.003-.08.02-.011.003-.087.022-.092.024-.088.024-.01.002-.084.024h-.003l-.09.026-.091.027H8.56l-.073.023-.01.003-.005.002h-.003l-.028.01a6.02 6.02 0 0 0-.19.062l-.08.025-.257.091-.075.027a8.04 8.04 0 0 0-.305.12c-.02.007-.041.014-.061.023l-.144.06a12.574 12.574 0 0 0-.53.24l-.07.034-.08.04c-.17.085-.34.174-.506.267-.154.18-.304.362-.45.548l-.06.08-.036.043.005-.003c-.037.048-.072.098-.11.146-.077.103-.156.205-.231.31-.057.08-.112.162-.167.243-.081.118-.163.234-.24.355-.054.083-.105.168-.158.25-.074.12-.15.24-.22.362-.051.085-.1.172-.148.258-.07.126-.141.25-.21.38-.044.086-.09.174-.132.26a16.1 16.1 0 0 0-.187.379c-.045.096-.088.193-.132.29a16.02 16.02 0 0 0-.433 1.063l-.05.128.009-.012c-.127.357-.245.717-.348 1.084l-.107.049a4.673 4.673 0 0 0-.015.006 4.75 4.75 0 0 0-.56.307 4.673 4.673 0 0 0-.035.022 4.693 4.693 0 0 0-.493.37 4.673 4.673 0 0 0-.045.038 4.705 4.705 0 0 0-.427.427 4.673 4.673 0 0 0-.044.05 4.692 4.692 0 0 0-.366.488 4.673 4.673 0 0 0-.025.04 4.663 4.663 0 0 0-.302.553 4.673 4.673 0 0 0-.01.024 4.638 4.638 0 0 0-.227.606 4.673 4.673 0 0 0-.003.013c-.06.208-.108.42-.14.64a4.673 4.673 0 0 0 0 .01 4.7 4.7 0 0 0 0 1.318 4.673 4.673 0 0 0 0 .01c.032.218.08.432.14.64a4.673 4.673 0 0 0 .004.014c.061.208.137.41.226.605a4.673 4.673 0 0 0 .01.024c.09.192.19.377.303.554a4.673 4.673 0 0 0 .024.038c.112.172.235.336.368.49a4.673 4.673 0 0 0 .041.049c.133.15.275.293.426.426a4.673 4.673 0 0 0 .048.04c.155.134.318.256.49.367a4.673 4.673 0 0 0 .04.027c.178.113.364.215.557.304a4.673 4.673 0 0 0 .015.006c.197.09.4.166.61.228a4.673 4.673 0 0 0 .017.005c.207.06.42.107.637.138a4.673 4.673 0 0 0 .012.002 4.698 4.698 0 0 0 1.315 0 4.673 4.673 0 0 0 .012-.002c.218-.031.43-.078.637-.138a4.673 4.673 0 0 0 .017-.005 4.67 4.67 0 0 0 .609-.227 4.673 4.673 0 0 0 .017-.008c.192-.09.378-.19.555-.303a4.673 4.673 0 0 0 .042-.027c.17-.111.335-.234.49-.366a4.673 4.673 0 0 0 .045-.04c.152-.133.295-.277.429-.43a4.673 4.673 0 0 0 .039-.044c.134-.156.257-.32.37-.493a4.673 4.673 0 0 0 .02-.035 4.62 4.62 0 0 0 .306-.557 4.673 4.673 0 0 0 .01-.021c.089-.197.165-.4.227-.61a4.673 4.673 0 0 0 .002-.008c.06-.208.108-.421.14-.64a4.673 4.673 0 0 0 0-.02 4.698 4.698 0 0 0 .04-.881 4.673 4.673 0 0 0 0-.002c0-.05-.005-.098-.01-.147a4.673 4.673 0 0 0-.006-.085 4.176 4.176 0 0 0-.028-.222 4.673 4.673 0 0 0 0-.005 4.606 4.606 0 0 0-.304-1.098 4.673 4.673 0 0 0 0-.001c-.03-.07-.061-.14-.094-.21a4.673 4.673 0 0 0-.002-.003 4.528 4.528 0 0 0-.083-.165 4.673 4.673 0 0 0-.02-.04l-.07-.123a4.673 4.673 0 0 0-.05-.085l-.037-.06a4.673 4.673 0 0 0-.087-.137l-.012-.016A4.673 4.673 0 0 0 7.14 8.635c-.018-.011-.035-.023-.053-.033a4.673 4.673 0 0 0-.096-.055c-.036-.021-.072-.043-.11-.063a4.673 4.673 0 0 0-.044-.022 4.636 4.636 0 0 0-1.368-.464 13.673 13.673 0 0 1 3.39-5.233 10.301 10.301 0 0 1 3.147-.493c5.7 0 10.329 4.629 10.33 10.329v.002c0 2.13-.647 4.11-1.753 5.756l-.013.018C18.5 21.46 14.682 23.57 9.503 23.02l.02.016c5.2 1.138 9.375-.545 11.882-3.46l-.018.026a10.7 10.7 0 0 0 .308-.372c.018-.023.035-.048.054-.071.094-.122.186-.245.275-.37l.1-.146a10.726 10.726 0 0 0 .506-.816l.076-.133c.173-.32.329-.647.469-.981l.062-.158a10.68 10.68 0 0 0 .314-.901c.016-.053.033-.105.047-.157a9.7 9.7 0 0 0 .136-.527l.003-.018c.039-.17.072-.343.103-.516l.025-.16a10.6 10.6 0 0 0 .108-.95c.004-.06.01-.118.012-.177.009-.181.015-.363.015-.545C24.001 5.982 18.626.605 12.005.605zm.232 3.277c1.363 1.373 2.135 3.205 2.41 5.229.104.765-.046 1.61-.77 2.13-.058.333.115.696.267 1.055.388.92.98 1.757 1.408 2.642.384.798-.632 1.388-1.374 1.63a6.24 6.24 0 0 1-.275.084c.048.383.274.67.215 1.003a.98.98 0 0 1-.372.6s.28.878-.38 1.26c-.152.087-.33.104-.364.34-.064.468-.134.926-.504 1.307-.056.057-.115.11-.177.159 4.326-.152 7.97-3.507 8.372-7.93.435-4.794-3.104-9.04-7.9-9.476a8.865 8.865 0 0 0-.556-.034zm-1.973.17a8.68 8.68 0 0 0-2.003.672c.388.134.736.316.97.534 1.09 1.01 1.629 2.003 1.93 3.383.267 1.218.395 1.809-.245 2.253-.865.6.923 3.164 1.272 3.906-.46.592-1.062.579-1.38.743-.176.09-.103.426-.074.685.028.254.26.413.133.61-.114.175-.55.188-.737.31.182.2.585.399.53.658-.04.2-.492.166-.666.622-.093.245-.045.698-.238.927-.448.53-.917.62-1.85.517a15.94 15.94 0 0 1-.908-.127 8.61 8.61 0 0 0 2.263 1.137c.25.082.517.11.78.082.492-.046.834-.226 1.166-.62.22-.26.165-.776.27-1.054.199-.52.713-.478.76-.706.06-.296-.398-.523-.604-.75.214-.138.707-.153.838-.353.145-.223-.12-.404-.152-.693-.032-.294-.115-.676.085-.78.36-.186 1.045-.172 1.569-.844-.397-.844-2.43-3.76-1.447-4.442.728-.506.583-1.177.28-2.563-.344-1.57-.957-2.698-2.195-3.847a2.214 2.214 0 0 0-.347-.26Z" }) + ] + } + ); +}); + +export { SiTeamspeak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.cjs new file mode 100644 index 000000000..fbd8b2861 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#050A52"; +const SiTeamviewer = React__namespace.forwardRef(function SiTeamviewer2({ title = "TeamViewer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.17 11.998-6.225-3.401.685 2.144H9.37l.684-2.145L3.829 12l6.225 3.404-.683-2.147h5.26l-.686 2.147zM20.448 0H3.553A3.553 3.553 0 0 0 .001 3.552v16.895A3.553 3.553 0 0 0 3.553 24h16.895A3.553 3.553 0 0 0 24 20.447V3.552A3.553 3.553 0 0 0 20.448 0zM12 21.646c-5.328 0-9.648-4.32-9.648-9.648 0-5.329 4.32-9.646 9.648-9.646S21.65 6.672 21.65 12s-4.32 9.648-9.649 9.648z" }) + ] + } + ); +}); + +exports.default = SiTeamviewer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.d.ts new file mode 100644 index 000000000..13b657dc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#050A52"; +declare const SiTeamviewer: IconType; +export { SiTeamviewer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.mjs new file mode 100644 index 000000000..65122785c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeamviewer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#050A52"; +const SiTeamviewer = React.forwardRef(function SiTeamviewer2({ title = "TeamViewer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m20.17 11.998-6.225-3.401.685 2.144H9.37l.684-2.145L3.829 12l6.225 3.404-.683-2.147h5.26l-.686 2.147zM20.448 0H3.553A3.553 3.553 0 0 0 .001 3.552v16.895A3.553 3.553 0 0 0 3.553 24h16.895A3.553 3.553 0 0 0 24 20.447V3.552A3.553 3.553 0 0 0 20.448 0zM12 21.646c-5.328 0-9.648-4.32-9.648-9.648 0-5.329 4.32-9.646 9.648-9.646S21.65 6.672 21.65 12s-4.32 9.648-9.649 9.648z" }) + ] + } + ); +}); + +export { SiTeamviewer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.cjs new file mode 100644 index 000000000..9dd73d65f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#029F00"; +const SiTechcrunch = React__namespace.forwardRef(function SiTechcrunch2({ title = "TechCrunch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6v4h4v8h4v-8h4V6Zm12 4v8h12v-4h-8v-4zm4 0h8V6h-8z" }) + ] + } + ); +}); + +exports.default = SiTechcrunch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.d.ts new file mode 100644 index 000000000..2e8af5296 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#029F00"; +declare const SiTechcrunch: IconType; +export { SiTechcrunch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.mjs new file mode 100644 index 000000000..18a61ec36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTechcrunch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#029F00"; +const SiTechcrunch = React.forwardRef(function SiTechcrunch2({ title = "TechCrunch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6v4h4v8h4v-8h4V6Zm12 4v8h12v-4h-8v-4zm4 0h8V6h-8z" }) + ] + } + ); +}); + +export { SiTechcrunch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTed.cjs new file mode 100644 index 000000000..5d2bdad73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E62B1E"; +const SiTed = React__namespace.forwardRef(function SiTed2({ title = "TED", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 7.664v2.223h2.43v6.449H5.1v-6.45h2.43V7.665zm7.945 0v8.672h7.31v-2.223h-4.638v-1.08h4.637v-2.066h-4.637v-1.08h4.637V7.664zm7.759 0v8.672h3.863c3.024 0 4.433-1.688 4.433-4.349 0-2.185-1.021-4.323-3.912-4.323zm2.672 2.223h.85c1.931 0 2.102 1.518 2.102 2.063 0 .815-.243 2.163-1.907 2.163h-1.045z" }) + ] + } + ); +}); + +exports.default = SiTed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTed.d.ts new file mode 100644 index 000000000..fec872d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E62B1E"; +declare const SiTed: IconType; +export { SiTed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTed.mjs new file mode 100644 index 000000000..d9f2f0ce5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E62B1E"; +const SiTed = React.forwardRef(function SiTed2({ title = "TED", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 7.664v2.223h2.43v6.449H5.1v-6.45h2.43V7.665zm7.945 0v8.672h7.31v-2.223h-4.638v-1.08h4.637v-2.066h-4.637v-1.08h4.637V7.664zm7.759 0v8.672h3.863c3.024 0 4.433-1.688 4.433-4.349 0-2.185-1.021-4.323-3.912-4.323zm2.672 2.223h.85c1.931 0 2.102 1.518 2.102 2.063 0 .815-.243 2.163-1.907 2.163h-1.045z" }) + ] + } + ); +}); + +export { SiTed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.cjs new file mode 100644 index 000000000..d296eb72a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E64DF"; +const SiTeepublic = React__namespace.forwardRef(function SiTeepublic2({ title = "TeePublic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.998.488s-.57.33-.68.982c-.097.584.138 1.114.19 1.22-.408.255-.797.539-1.165.849.506-.577.561-1.384.038-2.147 0 0-.516.41-.53 1.07-.013.6.306 1.096.365 1.183-.338.294-.657.613-.956.95.356-.63.27-1.396-.335-2.043 0 0-.448.483-.363 1.138.074.568.433.999.527 1.103-.222.263-.432.537-.628.823-.1.148-.196.298-.289.45.39-.726.232-1.569-.53-2.179 0 0-.375.543-.196 1.179.175.62.68 1.016.705 1.035-.277.456-.517.93-.718 1.42.226-.78-.098-1.562-.955-2.006 0 0-.26.605.04 1.194.28.551.821.84.89.874-.18.445-.329.902-.444 1.368.063-.763-.372-1.445-1.247-1.747 0 0-.17.636.21 1.175.346.487.894.696.997.732-.097.418-.167.843-.211 1.273-.11-.69-.63-1.226-1.476-1.382 0 0-.073.655.385 1.131.382.396.9.534 1.062.569a10.67 10.67 0 0 0-.01 1.342C1.48 11.351.881 10.872 0 10.839c0 0 .022.659.544 1.064.45.349 1.004.402 1.149.41.039.466.11.928.21 1.382-.308-.657-.984-1.032-1.864-.911 0 0 .135.645.72.953.503.265 1.059.223 1.203.205.111.448.251.887.42 1.316-.396-.623-1.128-.905-1.992-.655 0 0 .227.618.85.838.549.195 1.105.062 1.228.028.17.403.366.796.585 1.176-.487-.514-1.23-.66-2.019-.296 0 0 .318.578.966.703.554.106 1.067-.091 1.205-.151a10.27 10.27 0 0 0 .895 1.231c-.566-.568-1.4-.667-2.201-.145 0 0 .397.526 1.057.556.635.029 1.163-.318 1.202-.344.358.417.748.802 1.165 1.155-.675-.49-1.54-.44-2.245.249 0 0 .493.438 1.146.337.643-.098 1.1-.56 1.114-.574.388.327.8.625 1.231.892-.724-.35-1.545-.164-2.127.598 0 0 .551.362 1.183.169.592-.181.97-.665 1.015-.724.38.23.776.437 1.183.617-.705-.135-1.4.187-1.824.958 0 0 .599.276 1.195-.009.51-.245.806-.712.88-.84.436.179.885.329 1.344.447-.751-.069-1.43.349-1.75 1.205 0 0 .633.186 1.18-.182.494-.332.718-.872.757-.977l.153.035.081.018c.704.155 1.325.32 1.864.497-.82.315-1.6.74-1.958 1.293a.097.097 0 0 0 .081.15.098.098 0 0 0 .081-.045c.31-.478 1.012-.912 2.093-1.296 1.082.384 1.783.818 2.093 1.296.019.028.05.044.082.044a.097.097 0 0 0 .081-.15c-.359-.552-1.138-.977-1.958-1.292a19.34 19.34 0 0 1 1.863-.497l.082-.018c.05-.01.101-.023.152-.035.04.105.263.645.757.977.548.368 1.18.182 1.18.182-.32-.856-.998-1.274-1.75-1.205a10.27 10.27 0 0 0 1.345-.448c.074.129.369.596.88.841.595.285 1.195.01 1.195.01-.424-.772-1.12-1.094-1.825-.959.407-.18.802-.386 1.183-.617.046.06.424.543 1.015.724.632.193 1.183-.17 1.183-.17-.582-.761-1.402-.946-2.127-.598.431-.266.843-.564 1.232-.891.013.014.47.476 1.113.574.653.1 1.146-.337 1.146-.337-.704-.688-1.57-.739-2.245-.25.417-.352.807-.737 1.166-1.154.04.028.568.373 1.202.344.66-.03 1.057-.556 1.057-.556-.802-.521-1.635-.423-2.2.144l.13-.156c.277-.342.532-.702.763-1.074.139.06.651.257 1.205.15.649-.124.966-.702.966-.702-.79-.363-1.53-.218-2.019.295.22-.38.415-.772.585-1.175.123.034.68.167 1.229-.028.622-.22.85-.838.85-.838-.865-.25-1.596.032-1.993.655.168-.429.309-.868.42-1.316.144.018.7.06 1.203-.205.585-.308.72-.953.72-.953-.88-.121-1.556.254-1.864.912.1-.455.171-.916.21-1.383.146-.008.7-.062 1.15-.41.522-.405.543-1.064.543-1.064-.88.033-1.479.511-1.674 1.203a10.609 10.609 0 0 0-.01-1.34c.162-.036.68-.173 1.062-.569.458-.476.385-1.131.385-1.131-.846.156-1.364.693-1.476 1.381-.044-.43-.114-.854-.21-1.272.103-.036.65-.245.996-.732.38-.539.21-1.175.21-1.175-.875.302-1.31.984-1.246 1.748a10.218 10.218 0 0 0-.443-1.37c.067-.034.608-.322.89-.873.3-.589.038-1.194.038-1.194-.857.444-1.18 1.227-.954 2.006a10.36 10.36 0 0 0-.719-1.42c.025-.02.53-.415.706-1.035.178-.636-.196-1.179-.196-1.179-.763.61-.922 1.453-.532 2.178-.092-.151-.187-.301-.288-.449a10.29 10.29 0 0 0-.628-.823c.094-.104.454-.535.527-1.103.086-.655-.363-1.138-.363-1.138-.604.647-.69 1.413-.334 2.043-.3-.338-.619-.656-.957-.95.06-.087.378-.584.365-1.183-.013-.66-.53-1.07-.53-1.07-.523.763-.467 1.57.038 2.147-.368-.31-.756-.594-1.164-.85.05-.105.287-.635.19-1.219-.11-.651-.68-.982-.68-.982-.403.822-.239 1.605.33 2.103a10.37 10.37 0 0 0-1.2-.619c-.504-.813-1.318-1.082-2.1-.795 0 0 .317.603.93.892.413.193.823.127 1.049.062.401.173.787.368 1.156.585-.57-.164-1.168.043-1.588.639 0 0 .475.288 1 .104.435-.15.721-.493.808-.609.377.236.736.493 1.075.772-.54-.246-1.163-.128-1.667.401 0 0 .43.354.976.249.45-.087.782-.383.886-.485.358.31.692.644 1.001.998-.507-.376-1.175-.374-1.78.097 0 0 .371.413.927.39.482-.018.87-.287.965-.358.28.332.537.681.77 1.046-.443-.378-1.065-.44-1.691-.085 0 0 .307.463.86.522.444.046.84-.13.979-.202.227.376.43.766.607 1.17-.363-.441-.952-.615-1.624-.392 0 0 .21.513.742.68.427.132.85.036 1-.007.163.404.3.82.41 1.245-.29-.512-.858-.783-1.572-.657 0 0 .135.539.637.78.412.197.854.158.999.137.108.469.183.949.224 1.437-.172-.626-.718-1.039-1.5-1.02 0 0 .052.553.512.866.412.28.9.287 1 .286a10.758 10.758 0 0 1 .004 1.392c-.101-.615-.574-1.077-1.327-1.168 0 0-.028.554.382.931.35.32.805.406.93.424-.04.472-.112.934-.216 1.389-.004-.613-.39-1.138-1.105-1.355 0 0-.123.542.215.983.287.374.716.537.84.579-.107.427-.242.845-.402 1.251.06-.587-.248-1.138-.906-1.448 0 0-.2.518.071 1.004.221.397.602.619.735.687-.178.418-.382.823-.612 1.212.167-.583-.051-1.192-.668-1.605 0 0-.276.482-.08 1.003.163.434.517.713.63.794-.218.352-.458.69-.716 1.012.188-.525.043-1.11-.472-1.576 0 0-.343.437-.225.981.092.42.363.73.484.852-.27.314-.56.613-.866.893.263-.473.226-1.057-.177-1.6 0 0-.422.362-.412.918.007.43.214.788.308.93-.318.27-.653.522-1.003.753.36-.434.423-1.037.092-1.654 0 0-.47.297-.54.85-.057.436.106.83.175.977-.395.242-.809.458-1.239.644.505-.365.706-.995.45-1.71 0 0-.508.223-.66.758-.132.46-.002.909.038 1.026a9.93 9.93 0 0 1-1.256.423c.513-.3.776-.88.632-1.596 0 0-.536.148-.764.655-.188.416-.137.856-.114 1.002l-.15.035-.08.018c-.427.093-1.27.279-2.12.577a18.04 18.04 0 0 0-2.12-.577l-.08-.018-.15-.035c.024-.146.074-.586-.113-1.002-.228-.507-.764-.655-.764-.655-.144.717.119 1.296.632 1.596a9.966 9.966 0 0 1-1.256-.423c.039-.118.17-.566.038-1.026-.152-.535-.66-.758-.66-.758-.257.715-.055 1.345.45 1.71a9.992 9.992 0 0 1-1.24-.644c.07-.146.232-.54.176-.978-.07-.552-.54-.849-.54-.849-.332.617-.269 1.22.092 1.654-.35-.23-.685-.482-1.004-.753.094-.142.301-.5.308-.93.01-.556-.412-.918-.412-.918-.403.543-.44 1.127-.177 1.6-.306-.28-.595-.579-.865-.893.12-.122.392-.433.484-.852.118-.544-.225-.98-.225-.98-.515.465-.66 1.05-.473 1.575a10.23 10.23 0 0 1-.716-1.012c.114-.08.468-.36.63-.794.196-.52-.08-1.003-.08-1.003-.617.413-.834 1.022-.667 1.605-.23-.389-.435-.794-.612-1.212.133-.068.513-.29.734-.687.272-.486.071-1.004.071-1.004-.658.31-.965.861-.905 1.448-.16-.406-.296-.824-.403-1.251.125-.042.554-.205.84-.579.34-.441.216-.983.216-.983-.716.217-1.101.742-1.106 1.354a10.103 10.103 0 0 1-.217-1.388c.127-.018.582-.104.932-.424.41-.377.382-.931.382-.931-.753.091-1.226.553-1.328 1.167a9.665 9.665 0 0 1 .005-1.391c.1.002.588-.005.999-.286.46-.313.512-.866.512-.866-.781-.019-1.327.393-1.5 1.019.042-.488.116-.967.225-1.436.145.021.587.06 1-.137.5-.241.635-.78.635-.78-.713-.126-1.281.146-1.571.657.11-.426.247-.841.41-1.245.15.043.573.14 1 .006.53-.166.742-.68.742-.68-.673-.222-1.261-.048-1.624.393.176-.404.38-.795.607-1.17.139.072.534.248.978.202.553-.059.86-.522.86-.522-.625-.355-1.247-.293-1.691.085.234-.364.49-.714.77-1.046.096.071.483.34.965.359.556.022.927-.391.927-.391-.604-.47-1.272-.473-1.78-.097a10 10 0 0 1 1.002-.998c.103.102.436.398.886.485.546.105.975-.249.975-.249-.503-.529-1.127-.647-1.667-.4.34-.28.699-.537 1.076-.773.086.116.373.459.807.61.526.183 1-.105 1-.105-.42-.596-1.018-.803-1.588-.639.37-.217.756-.412 1.157-.585.226.065.636.13 1.048-.062.614-.289.932-.892.932-.892-.784-.287-1.597-.018-2.102.795a10.37 10.37 0 0 0-1.2.62c.57-.499.734-1.282.331-2.104zm3.935 5.19c-.045-.005-.225.052-.412.088-.187.036-.696.062-.874.102-.178.04-.607.188-.727.21-.121.023-.496.245-.79.335-.295.089-.67.308-.95.392-.282.085-.697.246-.88.304-.183.058-.504.214-.518.245-.013.032.184.545.318.834.134.29.347.763.4.91.055.148.113.282.162.295.049.013.45.098.562.116.111.018.473.023.593.014.12-.01.38 0 .487.053 0 0 .035.527.035.571 0 .045-.009.848-.026.946-.018.099-.08.946-.117 1.34-.035.392-.089 1.49-.089 1.632 0 .143-.053 1.214-.053 1.41v.955c0 .17.044.572.062.607.018.036 2.178.188 2.802.26.625.07 1.419.142 2.08.124.66-.018 1.66-.107 2.133-.107.473 0 .803 0 .839-.036.035-.035-.036-.874-.036-1.151 0-.276-.036-1.58-.036-1.91 0-.33-.027-1.196-.027-1.321s-.035-1.526-.062-1.999c-.027-.473-.098-1.285-.08-1.339.017-.053.268-.107.365-.09.099.019.572.09.679.09.107 0 .41.027.473-.017.062-.045.607-1.071.67-1.214.062-.143.303-.714.303-.759 0-.044-.813-.401-1.045-.526-.231-.125-.87-.442-1.088-.513-.219-.072-.505-.143-.643-.21s-.607-.192-.861-.25c-.254-.058-.608-.194-.738-.207-.129-.014-.343-.045-.38-.05-.035-.004-.173-.116-.209-.093-.035.022-.392.354-.642.408-.25.054-.86.075-1.164-.041-.303-.116-.472-.404-.516-.408z" }) + ] + } + ); +}); + +exports.default = SiTeepublic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.d.ts new file mode 100644 index 000000000..169bb3c36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E64DF"; +declare const SiTeepublic: IconType; +export { SiTeepublic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.mjs new file mode 100644 index 000000000..d2b6f505a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeepublic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E64DF"; +const SiTeepublic = React.forwardRef(function SiTeepublic2({ title = "TeePublic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.998.488s-.57.33-.68.982c-.097.584.138 1.114.19 1.22-.408.255-.797.539-1.165.849.506-.577.561-1.384.038-2.147 0 0-.516.41-.53 1.07-.013.6.306 1.096.365 1.183-.338.294-.657.613-.956.95.356-.63.27-1.396-.335-2.043 0 0-.448.483-.363 1.138.074.568.433.999.527 1.103-.222.263-.432.537-.628.823-.1.148-.196.298-.289.45.39-.726.232-1.569-.53-2.179 0 0-.375.543-.196 1.179.175.62.68 1.016.705 1.035-.277.456-.517.93-.718 1.42.226-.78-.098-1.562-.955-2.006 0 0-.26.605.04 1.194.28.551.821.84.89.874-.18.445-.329.902-.444 1.368.063-.763-.372-1.445-1.247-1.747 0 0-.17.636.21 1.175.346.487.894.696.997.732-.097.418-.167.843-.211 1.273-.11-.69-.63-1.226-1.476-1.382 0 0-.073.655.385 1.131.382.396.9.534 1.062.569a10.67 10.67 0 0 0-.01 1.342C1.48 11.351.881 10.872 0 10.839c0 0 .022.659.544 1.064.45.349 1.004.402 1.149.41.039.466.11.928.21 1.382-.308-.657-.984-1.032-1.864-.911 0 0 .135.645.72.953.503.265 1.059.223 1.203.205.111.448.251.887.42 1.316-.396-.623-1.128-.905-1.992-.655 0 0 .227.618.85.838.549.195 1.105.062 1.228.028.17.403.366.796.585 1.176-.487-.514-1.23-.66-2.019-.296 0 0 .318.578.966.703.554.106 1.067-.091 1.205-.151a10.27 10.27 0 0 0 .895 1.231c-.566-.568-1.4-.667-2.201-.145 0 0 .397.526 1.057.556.635.029 1.163-.318 1.202-.344.358.417.748.802 1.165 1.155-.675-.49-1.54-.44-2.245.249 0 0 .493.438 1.146.337.643-.098 1.1-.56 1.114-.574.388.327.8.625 1.231.892-.724-.35-1.545-.164-2.127.598 0 0 .551.362 1.183.169.592-.181.97-.665 1.015-.724.38.23.776.437 1.183.617-.705-.135-1.4.187-1.824.958 0 0 .599.276 1.195-.009.51-.245.806-.712.88-.84.436.179.885.329 1.344.447-.751-.069-1.43.349-1.75 1.205 0 0 .633.186 1.18-.182.494-.332.718-.872.757-.977l.153.035.081.018c.704.155 1.325.32 1.864.497-.82.315-1.6.74-1.958 1.293a.097.097 0 0 0 .081.15.098.098 0 0 0 .081-.045c.31-.478 1.012-.912 2.093-1.296 1.082.384 1.783.818 2.093 1.296.019.028.05.044.082.044a.097.097 0 0 0 .081-.15c-.359-.552-1.138-.977-1.958-1.292a19.34 19.34 0 0 1 1.863-.497l.082-.018c.05-.01.101-.023.152-.035.04.105.263.645.757.977.548.368 1.18.182 1.18.182-.32-.856-.998-1.274-1.75-1.205a10.27 10.27 0 0 0 1.345-.448c.074.129.369.596.88.841.595.285 1.195.01 1.195.01-.424-.772-1.12-1.094-1.825-.959.407-.18.802-.386 1.183-.617.046.06.424.543 1.015.724.632.193 1.183-.17 1.183-.17-.582-.761-1.402-.946-2.127-.598.431-.266.843-.564 1.232-.891.013.014.47.476 1.113.574.653.1 1.146-.337 1.146-.337-.704-.688-1.57-.739-2.245-.25.417-.352.807-.737 1.166-1.154.04.028.568.373 1.202.344.66-.03 1.057-.556 1.057-.556-.802-.521-1.635-.423-2.2.144l.13-.156c.277-.342.532-.702.763-1.074.139.06.651.257 1.205.15.649-.124.966-.702.966-.702-.79-.363-1.53-.218-2.019.295.22-.38.415-.772.585-1.175.123.034.68.167 1.229-.028.622-.22.85-.838.85-.838-.865-.25-1.596.032-1.993.655.168-.429.309-.868.42-1.316.144.018.7.06 1.203-.205.585-.308.72-.953.72-.953-.88-.121-1.556.254-1.864.912.1-.455.171-.916.21-1.383.146-.008.7-.062 1.15-.41.522-.405.543-1.064.543-1.064-.88.033-1.479.511-1.674 1.203a10.609 10.609 0 0 0-.01-1.34c.162-.036.68-.173 1.062-.569.458-.476.385-1.131.385-1.131-.846.156-1.364.693-1.476 1.381-.044-.43-.114-.854-.21-1.272.103-.036.65-.245.996-.732.38-.539.21-1.175.21-1.175-.875.302-1.31.984-1.246 1.748a10.218 10.218 0 0 0-.443-1.37c.067-.034.608-.322.89-.873.3-.589.038-1.194.038-1.194-.857.444-1.18 1.227-.954 2.006a10.36 10.36 0 0 0-.719-1.42c.025-.02.53-.415.706-1.035.178-.636-.196-1.179-.196-1.179-.763.61-.922 1.453-.532 2.178-.092-.151-.187-.301-.288-.449a10.29 10.29 0 0 0-.628-.823c.094-.104.454-.535.527-1.103.086-.655-.363-1.138-.363-1.138-.604.647-.69 1.413-.334 2.043-.3-.338-.619-.656-.957-.95.06-.087.378-.584.365-1.183-.013-.66-.53-1.07-.53-1.07-.523.763-.467 1.57.038 2.147-.368-.31-.756-.594-1.164-.85.05-.105.287-.635.19-1.219-.11-.651-.68-.982-.68-.982-.403.822-.239 1.605.33 2.103a10.37 10.37 0 0 0-1.2-.619c-.504-.813-1.318-1.082-2.1-.795 0 0 .317.603.93.892.413.193.823.127 1.049.062.401.173.787.368 1.156.585-.57-.164-1.168.043-1.588.639 0 0 .475.288 1 .104.435-.15.721-.493.808-.609.377.236.736.493 1.075.772-.54-.246-1.163-.128-1.667.401 0 0 .43.354.976.249.45-.087.782-.383.886-.485.358.31.692.644 1.001.998-.507-.376-1.175-.374-1.78.097 0 0 .371.413.927.39.482-.018.87-.287.965-.358.28.332.537.681.77 1.046-.443-.378-1.065-.44-1.691-.085 0 0 .307.463.86.522.444.046.84-.13.979-.202.227.376.43.766.607 1.17-.363-.441-.952-.615-1.624-.392 0 0 .21.513.742.68.427.132.85.036 1-.007.163.404.3.82.41 1.245-.29-.512-.858-.783-1.572-.657 0 0 .135.539.637.78.412.197.854.158.999.137.108.469.183.949.224 1.437-.172-.626-.718-1.039-1.5-1.02 0 0 .052.553.512.866.412.28.9.287 1 .286a10.758 10.758 0 0 1 .004 1.392c-.101-.615-.574-1.077-1.327-1.168 0 0-.028.554.382.931.35.32.805.406.93.424-.04.472-.112.934-.216 1.389-.004-.613-.39-1.138-1.105-1.355 0 0-.123.542.215.983.287.374.716.537.84.579-.107.427-.242.845-.402 1.251.06-.587-.248-1.138-.906-1.448 0 0-.2.518.071 1.004.221.397.602.619.735.687-.178.418-.382.823-.612 1.212.167-.583-.051-1.192-.668-1.605 0 0-.276.482-.08 1.003.163.434.517.713.63.794-.218.352-.458.69-.716 1.012.188-.525.043-1.11-.472-1.576 0 0-.343.437-.225.981.092.42.363.73.484.852-.27.314-.56.613-.866.893.263-.473.226-1.057-.177-1.6 0 0-.422.362-.412.918.007.43.214.788.308.93-.318.27-.653.522-1.003.753.36-.434.423-1.037.092-1.654 0 0-.47.297-.54.85-.057.436.106.83.175.977-.395.242-.809.458-1.239.644.505-.365.706-.995.45-1.71 0 0-.508.223-.66.758-.132.46-.002.909.038 1.026a9.93 9.93 0 0 1-1.256.423c.513-.3.776-.88.632-1.596 0 0-.536.148-.764.655-.188.416-.137.856-.114 1.002l-.15.035-.08.018c-.427.093-1.27.279-2.12.577a18.04 18.04 0 0 0-2.12-.577l-.08-.018-.15-.035c.024-.146.074-.586-.113-1.002-.228-.507-.764-.655-.764-.655-.144.717.119 1.296.632 1.596a9.966 9.966 0 0 1-1.256-.423c.039-.118.17-.566.038-1.026-.152-.535-.66-.758-.66-.758-.257.715-.055 1.345.45 1.71a9.992 9.992 0 0 1-1.24-.644c.07-.146.232-.54.176-.978-.07-.552-.54-.849-.54-.849-.332.617-.269 1.22.092 1.654-.35-.23-.685-.482-1.004-.753.094-.142.301-.5.308-.93.01-.556-.412-.918-.412-.918-.403.543-.44 1.127-.177 1.6-.306-.28-.595-.579-.865-.893.12-.122.392-.433.484-.852.118-.544-.225-.98-.225-.98-.515.465-.66 1.05-.473 1.575a10.23 10.23 0 0 1-.716-1.012c.114-.08.468-.36.63-.794.196-.52-.08-1.003-.08-1.003-.617.413-.834 1.022-.667 1.605-.23-.389-.435-.794-.612-1.212.133-.068.513-.29.734-.687.272-.486.071-1.004.071-1.004-.658.31-.965.861-.905 1.448-.16-.406-.296-.824-.403-1.251.125-.042.554-.205.84-.579.34-.441.216-.983.216-.983-.716.217-1.101.742-1.106 1.354a10.103 10.103 0 0 1-.217-1.388c.127-.018.582-.104.932-.424.41-.377.382-.931.382-.931-.753.091-1.226.553-1.328 1.167a9.665 9.665 0 0 1 .005-1.391c.1.002.588-.005.999-.286.46-.313.512-.866.512-.866-.781-.019-1.327.393-1.5 1.019.042-.488.116-.967.225-1.436.145.021.587.06 1-.137.5-.241.635-.78.635-.78-.713-.126-1.281.146-1.571.657.11-.426.247-.841.41-1.245.15.043.573.14 1 .006.53-.166.742-.68.742-.68-.673-.222-1.261-.048-1.624.393.176-.404.38-.795.607-1.17.139.072.534.248.978.202.553-.059.86-.522.86-.522-.625-.355-1.247-.293-1.691.085.234-.364.49-.714.77-1.046.096.071.483.34.965.359.556.022.927-.391.927-.391-.604-.47-1.272-.473-1.78-.097a10 10 0 0 1 1.002-.998c.103.102.436.398.886.485.546.105.975-.249.975-.249-.503-.529-1.127-.647-1.667-.4.34-.28.699-.537 1.076-.773.086.116.373.459.807.61.526.183 1-.105 1-.105-.42-.596-1.018-.803-1.588-.639.37-.217.756-.412 1.157-.585.226.065.636.13 1.048-.062.614-.289.932-.892.932-.892-.784-.287-1.597-.018-2.102.795a10.37 10.37 0 0 0-1.2.62c.57-.499.734-1.282.331-2.104zm3.935 5.19c-.045-.005-.225.052-.412.088-.187.036-.696.062-.874.102-.178.04-.607.188-.727.21-.121.023-.496.245-.79.335-.295.089-.67.308-.95.392-.282.085-.697.246-.88.304-.183.058-.504.214-.518.245-.013.032.184.545.318.834.134.29.347.763.4.91.055.148.113.282.162.295.049.013.45.098.562.116.111.018.473.023.593.014.12-.01.38 0 .487.053 0 0 .035.527.035.571 0 .045-.009.848-.026.946-.018.099-.08.946-.117 1.34-.035.392-.089 1.49-.089 1.632 0 .143-.053 1.214-.053 1.41v.955c0 .17.044.572.062.607.018.036 2.178.188 2.802.26.625.07 1.419.142 2.08.124.66-.018 1.66-.107 2.133-.107.473 0 .803 0 .839-.036.035-.035-.036-.874-.036-1.151 0-.276-.036-1.58-.036-1.91 0-.33-.027-1.196-.027-1.321s-.035-1.526-.062-1.999c-.027-.473-.098-1.285-.08-1.339.017-.053.268-.107.365-.09.099.019.572.09.679.09.107 0 .41.027.473-.017.062-.045.607-1.071.67-1.214.062-.143.303-.714.303-.759 0-.044-.813-.401-1.045-.526-.231-.125-.87-.442-1.088-.513-.219-.072-.505-.143-.643-.21s-.607-.192-.861-.25c-.254-.058-.608-.194-.738-.207-.129-.014-.343-.045-.38-.05-.035-.004-.173-.116-.209-.093-.035.022-.392.354-.642.408-.25.054-.86.075-1.164-.041-.303-.116-.472-.404-.516-.408z" }) + ] + } + ); +}); + +export { SiTeepublic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.cjs new file mode 100644 index 000000000..2b77f55cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED2761"; +const SiTeespring = React__namespace.forwardRef(function SiTeespring2({ title = "Teespring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.78 8.348c-.77 0-1.396.615-1.396 1.37 0 1.075.406 2.058 1.075 2.813.277.312.598.584.956.807a5 5 0 0 0 .736-3.874c-.005-.029-.013-.058-.02-.087a1.392 1.392 0 0 0-1.35-1.029zm-8.612 3.958c.138.366.317.712.533 1.032.356-.223.678-.495.955-.807a4.221 4.221 0 0 0 1.076-2.813c0-.755-.626-1.37-1.397-1.37-.65 0-1.195.438-1.35 1.029-.006.029-.015.057-.02.086a5.002 5.002 0 0 0 .205 2.843zm15.501-.67L24 12.29a5.873 5.873 0 0 1-5.243 3.18 5.958 5.958 0 0 1-1.926-.32 6.745 6.745 0 0 1-4.774 1.963 6.742 6.742 0 0 1-4.774-1.964 5.943 5.943 0 0 1-1.926.32A5.87 5.87 0 0 1 0 12.054l1.362-.595a4.38 4.38 0 0 0 3.995 2.549c.324 0 .641-.036.946-.102a6.45 6.45 0 0 1-.945-3.367 6.512 6.512 0 0 1 .19-1.554c.328-1.208 1.45-2.098 2.786-2.098l.079.002c.08.002.162.008.242.016 1.444.157 2.565 1.357 2.565 2.814 0 1.958-.999 3.687-2.522 4.724a5.244 5.244 0 0 0 3.36 1.21 5.247 5.247 0 0 0 3.358-1.21c-1.523-1.037-2.522-2.767-2.522-4.724 0-1.458 1.122-2.658 2.564-2.814.08-.008.16-.014.242-.016l.08-.002a2.877 2.877 0 0 1 2.832 2.286 6.478 6.478 0 0 1-.8 4.733c.305.066.62.102.945.102 1.71 0 3.191-.967 3.91-2.372z" }) + ] + } + ); +}); + +exports.default = SiTeespring; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.d.ts new file mode 100644 index 000000000..5d86d5aa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED2761"; +declare const SiTeespring: IconType; +export { SiTeespring as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.mjs new file mode 100644 index 000000000..66c7749b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeespring.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED2761"; +const SiTeespring = React.forwardRef(function SiTeespring2({ title = "Teespring", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.78 8.348c-.77 0-1.396.615-1.396 1.37 0 1.075.406 2.058 1.075 2.813.277.312.598.584.956.807a5 5 0 0 0 .736-3.874c-.005-.029-.013-.058-.02-.087a1.392 1.392 0 0 0-1.35-1.029zm-8.612 3.958c.138.366.317.712.533 1.032.356-.223.678-.495.955-.807a4.221 4.221 0 0 0 1.076-2.813c0-.755-.626-1.37-1.397-1.37-.65 0-1.195.438-1.35 1.029-.006.029-.015.057-.02.086a5.002 5.002 0 0 0 .205 2.843zm15.501-.67L24 12.29a5.873 5.873 0 0 1-5.243 3.18 5.958 5.958 0 0 1-1.926-.32 6.745 6.745 0 0 1-4.774 1.963 6.742 6.742 0 0 1-4.774-1.964 5.943 5.943 0 0 1-1.926.32A5.87 5.87 0 0 1 0 12.054l1.362-.595a4.38 4.38 0 0 0 3.995 2.549c.324 0 .641-.036.946-.102a6.45 6.45 0 0 1-.945-3.367 6.512 6.512 0 0 1 .19-1.554c.328-1.208 1.45-2.098 2.786-2.098l.079.002c.08.002.162.008.242.016 1.444.157 2.565 1.357 2.565 2.814 0 1.958-.999 3.687-2.522 4.724a5.244 5.244 0 0 0 3.36 1.21 5.247 5.247 0 0 0 3.358-1.21c-1.523-1.037-2.522-2.767-2.522-4.724 0-1.458 1.122-2.658 2.564-2.814.08-.008.16-.014.242-.016l.08-.002a2.877 2.877 0 0 1 2.832 2.286 6.478 6.478 0 0 1-.8 4.733c.305.066.62.102.945.102 1.71 0 3.191-.967 3.91-2.372z" }) + ] + } + ); +}); + +export { SiTeespring as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.cjs new file mode 100644 index 000000000..4d822d028 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FD495C"; +const SiTekton = React__namespace.forwardRef(function SiTekton2({ title = "Tekton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.8823.0002a.924.924 0 0 0-.8906.6777A6.4647 6.4647 0 0 0 .8042 3.133a6.6196 6.6196 0 0 0 .7578 2.3672 7.283 7.283 0 0 0 .9062 1.3066 9.7647 9.7647 0 0 0-.125.7852 10.1225 10.1225 0 0 0-.0722 1.3594c.003.1862.008.375.0293.5644.0428.5405.5351 1.1816.871 1.5938a7.1354 7.1354 0 0 0 2.0255 1.7168.9098.9098 0 0 0 .0332.082c.0827.1763.1864.342.3105.4922a5.9281 5.9281 0 0 0-.5058 1.6738 8.1648 8.1648 0 0 0-.1739 1.3008 2.218 2.218 0 0 0-.4629.2832 2.6568 2.6568 0 0 0-.8457 1.2305 3.252 3.252 0 0 0-.1093.4101l-.2286-.0625-.0253.1602c-.116.7298-.0639 1.3615.2324 2.0058a1.4432 1.4432 0 0 0-.6934.293 1.2313 1.2313 0 0 0-.3535.459c-.1466.3298-.293.7136-.293 1.08 0 .2719.085.5437.2989.7208a.7112.7112 0 0 0 .4492.162h2.3691c.1405.3726.4097.7205.8067.8243.112.0274.2264.0439.3418.0469.122.006.2402.0078.3593.0078.3085.0061.6174.003.9258 0 .4825-.0061.9657-.0151 1.4512-.0274a.7688.7688 0 0 0 .6777-.4433.7727.7727 0 0 0 .6817.4433c.4824.0122.9647.0213 1.4472.0274.3085 0 .6174.003.9258 0a7.143 7.143 0 0 0 .3594-.0078 1.856 1.856 0 0 0 .3398-.047c.397-.1038.6673-.4485.8047-.8241h2.3926a.7059.7059 0 0 0 .4473-.1621c.2137-.1771.3007-.449.3007-.7207-.003-.3665-.1472-.7503-.2968-1.0801-.2107-.4673-.6103-.6878-1.0684-.752.2962-.6443.3485-1.276.2324-2.0058l-.0254-.1602-.205.0567c-.002-.008-.0053-.0194-.006-.0293a.3897.3897 0 0 0 .0255-.0508 6.936 6.936 0 0 1 .4512-.8887 8.6153 8.6153 0 0 1 .7421-1.0742 5.5548 5.5548 0 0 1 .459-.5078c.2901-.281.6561-.5155 1.0684-.543.289-.0199.576.0648.8066.2402.1741.1314.2594.2812.3418.4766.1374.3329.2224.6174.4942.877.4824.455 1.1993.464 1.7734.1953.449-.2107.8282-.5963.9473-1.088a1.326 1.326 0 0 0 .0312-.451c-.0946-.9193-.6603-1.7528-1.3535-2.336-.6321-.5314-1.4495-.92-2.2832-.9414-.7848-.0214-1.5592.221-2.2402.5996-1.1604.6443-2.0822 1.6912-2.7754 2.8515a7.8763 7.8763 0 0 0-.0938-.5254 6.231 6.231 0 0 0-.2363-1.0039 4.7875 4.7875 0 0 0-.17-.455 1.898 1.898 0 0 0 .25-.3282 4.2022 4.2022 0 0 0 .2169-.3984l.037-.084a7.1704 7.1704 0 0 0 2.0235-1.7148c.3451-.4214.8223-1.0458.8711-1.6016.0214-.1863.0282-.3779.0313-.5703a9.9704 9.9704 0 0 0-.0762-1.3828 11.9494 11.9494 0 0 0-.123-.748 7.288 7.288 0 0 0 .9042-1.3087 6.6098 6.6098 0 0 0 .7579-2.3652 6.5344 6.5344 0 0 0-.1836-2.455.9163.9163 0 0 0-.8887-.6817c-1.5636 0-2.914.6384-4.166 1.4629a7.3538 7.3538 0 0 0-7.6836 0C4.7952.6386 3.4458 0 1.8823 0zm.0176.92h.0742c.8673.4763 1.6438 1.4442 2.2149 2.4062a10.47 10.47 0 0 0-.3399.4629 8.0257 8.0257 0 0 0-.9746 2.0468c-.6993-.9405-1.5874-2.6692-.998-4.8984.0091-.003.0142-.0115.0234-.0176zm15.9082 0h.0723l.0214.0214c.5894 2.2293-.2987 3.956-.998 4.8965a7.9805 7.9805 0 0 0-1.0371-2.1406 5.536 5.536 0 0 0-.2735-.3711c.5711-.962 1.3476-1.9299 2.2149-2.4063zM3.187 1.0997c.7726.2077 1.4993.5828 2.1895 1.0195a7.1749 7.1749 0 0 0-.791.7383c-.1314-.2168-.2743-.4271-.4239-.6348a7.4915 7.4915 0 0 0-.9746-1.123zm13.4082 0a7.4917 7.4917 0 0 0-.9746 1.123c-.1496.2077-.2895.4219-.4238.6387a7.2142 7.2142 0 0 0-.791-.7422c.687-.4367 1.4168-.8119 2.1894-1.0195zm-6.8867.17v2.5937c-1.3864.0305-2.7484.4153-3.582 1.1543-.965.852-1.6093 2.3259-1.5391 3.1015.061.6932 1.1732 1.1678 2.6543 1.4121a1.3476 1.3476 0 0 0-.1524.4278 1.9363 1.9363 0 0 0 .002.6367 16.41 16.41 0 0 1-1.5137-.2442 14.9847 14.9847 0 0 1-2.3242-.6953.9417.9417 0 0 1-.0605-.2207S2.8803 6.585 4.4682 4.2092c1.2704-1.8995 3.2461-2.8814 5.2403-2.9395zm.3652 0c1.9605.0549 3.904 1.006 5.1836 2.8534 1.6551 2.3911 1.336 5.3106 1.336 5.3106a.8319.8319 0 0 1-.0528.2129c-.758.298-1.5392.5337-2.336.7031-.4489.0947-.9528.18-1.5116.2441a1.9483 1.9483 0 0 0 .0039-.6386 1.3514 1.3514 0 0 0-.1543-.4278c1.481-.2443 2.5932-.7139 2.6543-1.4101.0702-.7757-.5741-2.2515-1.5391-3.1035-.8367-.736-2.1976-1.1199-3.584-1.1504zm-.8535.7128a.2137.2137 0 0 0-.2168.2168c0 .1932.2345.289.3711.1524.1366-.1366.0389-.3692-.1543-.3692zm1.3418 0a.2176.2176 0 0 0-.2168.2168c0 .1932.2326.289.3691.1524.1366-.1366.0409-.3692-.1523-.3692zm-1.3418.955a.2176.2176 0 0 0-.2168.2169c0 .1932.2345.2909.3711.1543s.0389-.3711-.1543-.3711zm1.3418 0a.2176.2176 0 0 0-.2168.2169c0 .1932.2326.2909.3691.1543.1366-.1366.0409-.3711-.1523-.3711zm-3.5117 3.756c.3303.0024.6414.151.8535.4042.2221.2618.3451.5943.3437.9375a.2196.2196 0 0 1-.2207.2188.2196.2196 0 0 1-.2207-.2188.9864.9864 0 0 0-.2304-.6484.7096.7096 0 0 0-.5293-.2539.6638.6638 0 0 0-.379.1191.8426.8426 0 0 0-.287.3457.2166.2166 0 0 1-.2891.1036c-.1088-.0515-.157-.1803-.1055-.2891a1.3353 1.3353 0 0 1 .4375-.5234 1.1044 1.1044 0 0 1 .627-.1954zm5.6855 0c.2237 0 .441.068.625.1953.1884.1332.3397.3144.4375.5234a.2183.2183 0 0 1-.1054.289.2198.2198 0 0 1-.291-.1035.8427.8427 0 0 0-.2872-.3457.6638.6638 0 0 0-.3789-.1191.7046.7046 0 0 0-.5293.254.9864.9864 0 0 0-.2304.6483.2196.2196 0 0 1-.2207.2149.2196.2196 0 0 1-.2207-.2149 1.427 1.427 0 0 1 .3457-.9375 1.1282 1.1282 0 0 1 .8554-.4043zM9.8862 8.8927h.0098c.9741-.0092 2.1613.4358 2.2773 1.1504.113.684-.2644 1.1483-.8476 1.414-.8643.3207-1.1684-.0976-1.3028-.3633-.064-.1282-.0914-.1942-.125-.1972h-.0078c-.0274.0122-.0626.0723-.1328.1914-.1374.2412-.421.6026-1.0195.4804-.736-.2382-1.2642-.7344-1.1328-1.5253.119-.7146 1.307-1.1596 2.2812-1.1504zm.004.332c-.591 0-1.3048.1726-1.375.539-.1161.6078.7855.9005 1.3808.899.5952-.0016 1.487-.2943 1.371-.899-.0702-.3664-.786-.539-1.3769-.539zm-6.3829.9102a14.973 14.973 0 0 0 1.9961.5722 16.386 16.386 0 0 0 1.707.2676.8424.8424 0 0 0 .084.1523c.2688.4612.7292.7517 1.2422.9258-.2718.113-.4824.2914-.5312.5723a.6502.6502 0 0 0 .0332.332c0 .003.0039.0087.0039.0117a9.4685 9.4685 0 0 1-1.1817-.3164c-1.2123-.4183-2.2242-1.087-3.0273-2.0703a5.1977 5.1977 0 0 1-.3262-.4472zm12.7637.0039c-.0794.1068-.1614.2176-.25.3183-.455.5466-.9397 1.0516-1.5352 1.4395-.8245.5374-1.7539.8718-2.7402 1.0703a.6467.6467 0 0 0 .0332-.3574c-.0519-.2718-.2558-.4457-.5215-.5586.513-.1741.9715-.4678 1.2402-.9258a2.3064 2.3064 0 0 0 .0762-.1504 16.5172 16.5172 0 0 0 1.707-.2676 15.187 15.187 0 0 0 1.9903-.5683zm-6.3477 2.2265c.7513.002 1.4906.1452 1.338.4414-.0703.1374-.2546.2412-.4806.3145-.293.0366-.5913.0617-.8906.08a17.0875 17.0875 0 0 1-.8867-.08c-.2413-.0794-.4322-.1941-.4902-.3438-.1039-.2733.6589-.414 1.4101-.412zm9.6524.5098c.4672.0122.9528.1766 1.3925.4453-.455.1313-.8269.5012-1.0253.9531a1.8268 1.8268 0 0 0-.1309.4453 1.8991 1.8991 0 0 0-.7852-.2226.2515.2515 0 0 0-.037-.0762c-.2657-.3603-.3026-1.0327.0058-1.3809a.7229.7229 0 0 1 .0703-.0664 1.64 1.64 0 0 1 .1035-.08 2.6015 2.6015 0 0 1 .4063-.0176zm-1.1211.17a1.6561 1.6561 0 0 0-.1328.707c.0042.2725.071.5397.1972.7812a2.2462 2.2462 0 0 0-.6894.2754.1692.1692 0 0 0-.0547-.0352c-.171-.0732-.3174-.2405-.4121-.4023-.1038-.1802-.229-.5225-.0977-.7149 0-.003.002-.0028.002-.0058.1435-.0977.2881-.1902.4316-.2696a4.4099 4.4099 0 0 1 .7559-.3359zm-11.9942.203c.1863.0672.3721.1306.5645.1856a6.0804 6.0804 0 0 0 3.246.7168 5.9745 5.9745 0 0 0 1.4415-.2715 5.7607 5.7607 0 0 0 1.0547-.4453 9.3597 9.3597 0 0 0 .5644-.1856 3.743 3.743 0 0 1-1.9824 1.3711c.7176-.0916 1.4625-.276 2.0488-.621.3268.794.5109 1.8688.3399 3.2949-.0427.342-.096.6661-.1602.9746-.7329-.4093-1.7452-.0824-2.5117.3574-.0977-1.414-.403-2.455-.5312-2.8399-.1161-.3542-.5358-.2835-.545.0372.058.1557.0953.3596.129.5214.055.284.0998.5743.1425.8614.0702.4794.1442.9862.1777 1.4687.0062.1069.0126.2174.0157.3242a5.5158 5.5158 0 0 1-1.3828.0078c.003-.1099.0075-.2181.0136-.328.0153-.1955.04-.3956.0645-.588.0366-.3023.0803-.601.123-.9004.0459-.3023.0904-.607.1485-.9062.0213-.113.0504-.2691.084-.4004.006-.3237-.1811-.3295-.291-.3203-.1039.0091-.1803.0935-.2383.2676-.1344.4122-.414 1.421-.5118 2.7617-.8489-.565-1.5345-.7417-2.5117-.2988-.0672-.3146-.1213-.6489-.164-1-.1833-1.5422.0462-2.672.4218-3.4844.5803.4031 1.3302.6326 2.0723.7578a3.7398 3.7398 0 0 1-1.8223-1.3184zm14.8985.4825a.3674.3674 0 0 1 .2597.0976c.003 0 .0067.0028.0098.0059.4886.4764.8402 1.0798.9043 1.6875.0703.6993-1.0642 1.2473-1.5742.7617-.2901-.2748-.2683-.8067-.7324-1.2617a.1822.1822 0 0 0 .0195-.0801c.0214-.5925.4964-1.2384 1.1133-1.211zm-4.5918.3144a1.602 1.602 0 0 0 .1972.5547 1.481 1.481 0 0 0 .459.5039 5.1464 5.1464 0 0 0-.1445.1309c-.1527.1496-.299.3116-.4395.4765a.2593.2593 0 0 0-.1093-.0215c-.1772.0092-.354-.0728-.4883-.1796-.1436-.113-.3512-.3577-.336-.5684a7.122 7.122 0 0 1 .8614-.8965zm-1.2031 1.3496c.0984.1851.235.3476.4003.4766.1604.1277.348.215.5489.2558a9.5353 9.5353 0 0 0-.8496 1.3809 2.3558 2.3558 0 0 0-.6094-.7344 2.1061 2.1061 0 0 0-.2246-.1543 9.9204 9.9204 0 0 1 .7344-1.2246zM14.39 17.012c.5925.2748.9664.9011 1.0488 1.6035-.4794.1405-1.0044.3915-1.4472.6113.165-.6105.2864-1.2316.3633-1.8593a6.107 6.107 0 0 0 .0351-.3555zm-9.2617.0137c.0092.116.021.2307.0332.3437.0769.6278.1982 1.2508.3633 1.8614-.4367-.2169-.9485-.462-1.4219-.6055.0794-.6962.4421-1.3187 1.0254-1.5996zm1.8965 1.666c.5202.0206 1.0323.287 1.414.621.0214 1.472.3308 2.8553.5293 3.127.2016.2688.0938.754.0938.754s-2.602.0671-2.8555 0c-.2535-.0672-.555-.8145-.1367-1.2481.1954-.2015.4753-.251.7227-.248.507.1099.8366.4235 1.1816.8632-.0733-.7543-.4965-.9515-.7988-1.1347-.0977-.058-.1356-.0859-.1875-.1836a10.8387 10.8387 0 0 1-.8828-2.2852c.292-.2027.6077-.278.9199-.2656zm5.4687 0c.3119-.0124.628.063.92.2656a11.035 11.035 0 0 1-.879 2.2852c-.055.0977-.0928.1256-.1874.1836-.3024.1832-.7256.3804-.7989 1.1347.3451-.4397.6747-.7533 1.1817-.8632.2473-.003.5302.0465.7226.248.4184.4336.1168 1.1809-.1367 1.248-.2535.0672-2.8555 0-2.8555 0s-.1058-.4851.0957-.7539c.1986-.2717.51-1.655.5313-3.127.378-.334.8865-.6004 1.4062-.621zm-8.6601.3887c.4642.1221 1.2316.477 1.9004.828.1069.3146.226.6216.3574.924.045.1025.092.2056.1406.3066a1.4131 1.4131 0 0 0-.621.3691 1.3835 1.3835 0 0 0-.379.9063H2.8296c-.2413-.2016.0279-2.03 2.3945-.9551-.5222-.4153-1.412-.9712-1.3906-2.379zm11.8496 0c.0214 1.4077-.8676 1.9636-1.3867 2.3789 2.3636-1.075 2.6349.7535 2.3906.955h-2.4453a1.324 1.324 0 0 0-1.0176-1.246 9.3621 9.3621 0 0 0 .4766-1.2149c.6901-.3695 1.503-.7478 1.9824-.873zm-5.1856.412a9.7574 9.7574 0 0 1-.1796 1.7384c-.0398.2015-.1404.689-.2442.8691a1.4439 1.4439 0 0 0-.0781.1289c-.1487.0023-.2692.0013-.42.002a1.6751 1.6751 0 0 0-.0956-.1582 1.8492 1.8492 0 0 1-.0977-.2754 7.2305 7.2305 0 0 1-.1777-.793 10.22 10.22 0 0 1-.1387-1.5 4.8903 4.8903 0 0 0 1.4316-.0117Z" }) + ] + } + ); +}); + +exports.default = SiTekton; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.d.ts new file mode 100644 index 000000000..c1c14ba62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FD495C"; +declare const SiTekton: IconType; +export { SiTekton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.mjs new file mode 100644 index 000000000..7fa68d708 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTekton.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FD495C"; +const SiTekton = React.forwardRef(function SiTekton2({ title = "Tekton", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.8823.0002a.924.924 0 0 0-.8906.6777A6.4647 6.4647 0 0 0 .8042 3.133a6.6196 6.6196 0 0 0 .7578 2.3672 7.283 7.283 0 0 0 .9062 1.3066 9.7647 9.7647 0 0 0-.125.7852 10.1225 10.1225 0 0 0-.0722 1.3594c.003.1862.008.375.0293.5644.0428.5405.5351 1.1816.871 1.5938a7.1354 7.1354 0 0 0 2.0255 1.7168.9098.9098 0 0 0 .0332.082c.0827.1763.1864.342.3105.4922a5.9281 5.9281 0 0 0-.5058 1.6738 8.1648 8.1648 0 0 0-.1739 1.3008 2.218 2.218 0 0 0-.4629.2832 2.6568 2.6568 0 0 0-.8457 1.2305 3.252 3.252 0 0 0-.1093.4101l-.2286-.0625-.0253.1602c-.116.7298-.0639 1.3615.2324 2.0058a1.4432 1.4432 0 0 0-.6934.293 1.2313 1.2313 0 0 0-.3535.459c-.1466.3298-.293.7136-.293 1.08 0 .2719.085.5437.2989.7208a.7112.7112 0 0 0 .4492.162h2.3691c.1405.3726.4097.7205.8067.8243.112.0274.2264.0439.3418.0469.122.006.2402.0078.3593.0078.3085.0061.6174.003.9258 0 .4825-.0061.9657-.0151 1.4512-.0274a.7688.7688 0 0 0 .6777-.4433.7727.7727 0 0 0 .6817.4433c.4824.0122.9647.0213 1.4472.0274.3085 0 .6174.003.9258 0a7.143 7.143 0 0 0 .3594-.0078 1.856 1.856 0 0 0 .3398-.047c.397-.1038.6673-.4485.8047-.8241h2.3926a.7059.7059 0 0 0 .4473-.1621c.2137-.1771.3007-.449.3007-.7207-.003-.3665-.1472-.7503-.2968-1.0801-.2107-.4673-.6103-.6878-1.0684-.752.2962-.6443.3485-1.276.2324-2.0058l-.0254-.1602-.205.0567c-.002-.008-.0053-.0194-.006-.0293a.3897.3897 0 0 0 .0255-.0508 6.936 6.936 0 0 1 .4512-.8887 8.6153 8.6153 0 0 1 .7421-1.0742 5.5548 5.5548 0 0 1 .459-.5078c.2901-.281.6561-.5155 1.0684-.543.289-.0199.576.0648.8066.2402.1741.1314.2594.2812.3418.4766.1374.3329.2224.6174.4942.877.4824.455 1.1993.464 1.7734.1953.449-.2107.8282-.5963.9473-1.088a1.326 1.326 0 0 0 .0312-.451c-.0946-.9193-.6603-1.7528-1.3535-2.336-.6321-.5314-1.4495-.92-2.2832-.9414-.7848-.0214-1.5592.221-2.2402.5996-1.1604.6443-2.0822 1.6912-2.7754 2.8515a7.8763 7.8763 0 0 0-.0938-.5254 6.231 6.231 0 0 0-.2363-1.0039 4.7875 4.7875 0 0 0-.17-.455 1.898 1.898 0 0 0 .25-.3282 4.2022 4.2022 0 0 0 .2169-.3984l.037-.084a7.1704 7.1704 0 0 0 2.0235-1.7148c.3451-.4214.8223-1.0458.8711-1.6016.0214-.1863.0282-.3779.0313-.5703a9.9704 9.9704 0 0 0-.0762-1.3828 11.9494 11.9494 0 0 0-.123-.748 7.288 7.288 0 0 0 .9042-1.3087 6.6098 6.6098 0 0 0 .7579-2.3652 6.5344 6.5344 0 0 0-.1836-2.455.9163.9163 0 0 0-.8887-.6817c-1.5636 0-2.914.6384-4.166 1.4629a7.3538 7.3538 0 0 0-7.6836 0C4.7952.6386 3.4458 0 1.8823 0zm.0176.92h.0742c.8673.4763 1.6438 1.4442 2.2149 2.4062a10.47 10.47 0 0 0-.3399.4629 8.0257 8.0257 0 0 0-.9746 2.0468c-.6993-.9405-1.5874-2.6692-.998-4.8984.0091-.003.0142-.0115.0234-.0176zm15.9082 0h.0723l.0214.0214c.5894 2.2293-.2987 3.956-.998 4.8965a7.9805 7.9805 0 0 0-1.0371-2.1406 5.536 5.536 0 0 0-.2735-.3711c.5711-.962 1.3476-1.9299 2.2149-2.4063zM3.187 1.0997c.7726.2077 1.4993.5828 2.1895 1.0195a7.1749 7.1749 0 0 0-.791.7383c-.1314-.2168-.2743-.4271-.4239-.6348a7.4915 7.4915 0 0 0-.9746-1.123zm13.4082 0a7.4917 7.4917 0 0 0-.9746 1.123c-.1496.2077-.2895.4219-.4238.6387a7.2142 7.2142 0 0 0-.791-.7422c.687-.4367 1.4168-.8119 2.1894-1.0195zm-6.8867.17v2.5937c-1.3864.0305-2.7484.4153-3.582 1.1543-.965.852-1.6093 2.3259-1.5391 3.1015.061.6932 1.1732 1.1678 2.6543 1.4121a1.3476 1.3476 0 0 0-.1524.4278 1.9363 1.9363 0 0 0 .002.6367 16.41 16.41 0 0 1-1.5137-.2442 14.9847 14.9847 0 0 1-2.3242-.6953.9417.9417 0 0 1-.0605-.2207S2.8803 6.585 4.4682 4.2092c1.2704-1.8995 3.2461-2.8814 5.2403-2.9395zm.3652 0c1.9605.0549 3.904 1.006 5.1836 2.8534 1.6551 2.3911 1.336 5.3106 1.336 5.3106a.8319.8319 0 0 1-.0528.2129c-.758.298-1.5392.5337-2.336.7031-.4489.0947-.9528.18-1.5116.2441a1.9483 1.9483 0 0 0 .0039-.6386 1.3514 1.3514 0 0 0-.1543-.4278c1.481-.2443 2.5932-.7139 2.6543-1.4101.0702-.7757-.5741-2.2515-1.5391-3.1035-.8367-.736-2.1976-1.1199-3.584-1.1504zm-.8535.7128a.2137.2137 0 0 0-.2168.2168c0 .1932.2345.289.3711.1524.1366-.1366.0389-.3692-.1543-.3692zm1.3418 0a.2176.2176 0 0 0-.2168.2168c0 .1932.2326.289.3691.1524.1366-.1366.0409-.3692-.1523-.3692zm-1.3418.955a.2176.2176 0 0 0-.2168.2169c0 .1932.2345.2909.3711.1543s.0389-.3711-.1543-.3711zm1.3418 0a.2176.2176 0 0 0-.2168.2169c0 .1932.2326.2909.3691.1543.1366-.1366.0409-.3711-.1523-.3711zm-3.5117 3.756c.3303.0024.6414.151.8535.4042.2221.2618.3451.5943.3437.9375a.2196.2196 0 0 1-.2207.2188.2196.2196 0 0 1-.2207-.2188.9864.9864 0 0 0-.2304-.6484.7096.7096 0 0 0-.5293-.2539.6638.6638 0 0 0-.379.1191.8426.8426 0 0 0-.287.3457.2166.2166 0 0 1-.2891.1036c-.1088-.0515-.157-.1803-.1055-.2891a1.3353 1.3353 0 0 1 .4375-.5234 1.1044 1.1044 0 0 1 .627-.1954zm5.6855 0c.2237 0 .441.068.625.1953.1884.1332.3397.3144.4375.5234a.2183.2183 0 0 1-.1054.289.2198.2198 0 0 1-.291-.1035.8427.8427 0 0 0-.2872-.3457.6638.6638 0 0 0-.3789-.1191.7046.7046 0 0 0-.5293.254.9864.9864 0 0 0-.2304.6483.2196.2196 0 0 1-.2207.2149.2196.2196 0 0 1-.2207-.2149 1.427 1.427 0 0 1 .3457-.9375 1.1282 1.1282 0 0 1 .8554-.4043zM9.8862 8.8927h.0098c.9741-.0092 2.1613.4358 2.2773 1.1504.113.684-.2644 1.1483-.8476 1.414-.8643.3207-1.1684-.0976-1.3028-.3633-.064-.1282-.0914-.1942-.125-.1972h-.0078c-.0274.0122-.0626.0723-.1328.1914-.1374.2412-.421.6026-1.0195.4804-.736-.2382-1.2642-.7344-1.1328-1.5253.119-.7146 1.307-1.1596 2.2812-1.1504zm.004.332c-.591 0-1.3048.1726-1.375.539-.1161.6078.7855.9005 1.3808.899.5952-.0016 1.487-.2943 1.371-.899-.0702-.3664-.786-.539-1.3769-.539zm-6.3829.9102a14.973 14.973 0 0 0 1.9961.5722 16.386 16.386 0 0 0 1.707.2676.8424.8424 0 0 0 .084.1523c.2688.4612.7292.7517 1.2422.9258-.2718.113-.4824.2914-.5312.5723a.6502.6502 0 0 0 .0332.332c0 .003.0039.0087.0039.0117a9.4685 9.4685 0 0 1-1.1817-.3164c-1.2123-.4183-2.2242-1.087-3.0273-2.0703a5.1977 5.1977 0 0 1-.3262-.4472zm12.7637.0039c-.0794.1068-.1614.2176-.25.3183-.455.5466-.9397 1.0516-1.5352 1.4395-.8245.5374-1.7539.8718-2.7402 1.0703a.6467.6467 0 0 0 .0332-.3574c-.0519-.2718-.2558-.4457-.5215-.5586.513-.1741.9715-.4678 1.2402-.9258a2.3064 2.3064 0 0 0 .0762-.1504 16.5172 16.5172 0 0 0 1.707-.2676 15.187 15.187 0 0 0 1.9903-.5683zm-6.3477 2.2265c.7513.002 1.4906.1452 1.338.4414-.0703.1374-.2546.2412-.4806.3145-.293.0366-.5913.0617-.8906.08a17.0875 17.0875 0 0 1-.8867-.08c-.2413-.0794-.4322-.1941-.4902-.3438-.1039-.2733.6589-.414 1.4101-.412zm9.6524.5098c.4672.0122.9528.1766 1.3925.4453-.455.1313-.8269.5012-1.0253.9531a1.8268 1.8268 0 0 0-.1309.4453 1.8991 1.8991 0 0 0-.7852-.2226.2515.2515 0 0 0-.037-.0762c-.2657-.3603-.3026-1.0327.0058-1.3809a.7229.7229 0 0 1 .0703-.0664 1.64 1.64 0 0 1 .1035-.08 2.6015 2.6015 0 0 1 .4063-.0176zm-1.1211.17a1.6561 1.6561 0 0 0-.1328.707c.0042.2725.071.5397.1972.7812a2.2462 2.2462 0 0 0-.6894.2754.1692.1692 0 0 0-.0547-.0352c-.171-.0732-.3174-.2405-.4121-.4023-.1038-.1802-.229-.5225-.0977-.7149 0-.003.002-.0028.002-.0058.1435-.0977.2881-.1902.4316-.2696a4.4099 4.4099 0 0 1 .7559-.3359zm-11.9942.203c.1863.0672.3721.1306.5645.1856a6.0804 6.0804 0 0 0 3.246.7168 5.9745 5.9745 0 0 0 1.4415-.2715 5.7607 5.7607 0 0 0 1.0547-.4453 9.3597 9.3597 0 0 0 .5644-.1856 3.743 3.743 0 0 1-1.9824 1.3711c.7176-.0916 1.4625-.276 2.0488-.621.3268.794.5109 1.8688.3399 3.2949-.0427.342-.096.6661-.1602.9746-.7329-.4093-1.7452-.0824-2.5117.3574-.0977-1.414-.403-2.455-.5312-2.8399-.1161-.3542-.5358-.2835-.545.0372.058.1557.0953.3596.129.5214.055.284.0998.5743.1425.8614.0702.4794.1442.9862.1777 1.4687.0062.1069.0126.2174.0157.3242a5.5158 5.5158 0 0 1-1.3828.0078c.003-.1099.0075-.2181.0136-.328.0153-.1955.04-.3956.0645-.588.0366-.3023.0803-.601.123-.9004.0459-.3023.0904-.607.1485-.9062.0213-.113.0504-.2691.084-.4004.006-.3237-.1811-.3295-.291-.3203-.1039.0091-.1803.0935-.2383.2676-.1344.4122-.414 1.421-.5118 2.7617-.8489-.565-1.5345-.7417-2.5117-.2988-.0672-.3146-.1213-.6489-.164-1-.1833-1.5422.0462-2.672.4218-3.4844.5803.4031 1.3302.6326 2.0723.7578a3.7398 3.7398 0 0 1-1.8223-1.3184zm14.8985.4825a.3674.3674 0 0 1 .2597.0976c.003 0 .0067.0028.0098.0059.4886.4764.8402 1.0798.9043 1.6875.0703.6993-1.0642 1.2473-1.5742.7617-.2901-.2748-.2683-.8067-.7324-1.2617a.1822.1822 0 0 0 .0195-.0801c.0214-.5925.4964-1.2384 1.1133-1.211zm-4.5918.3144a1.602 1.602 0 0 0 .1972.5547 1.481 1.481 0 0 0 .459.5039 5.1464 5.1464 0 0 0-.1445.1309c-.1527.1496-.299.3116-.4395.4765a.2593.2593 0 0 0-.1093-.0215c-.1772.0092-.354-.0728-.4883-.1796-.1436-.113-.3512-.3577-.336-.5684a7.122 7.122 0 0 1 .8614-.8965zm-1.2031 1.3496c.0984.1851.235.3476.4003.4766.1604.1277.348.215.5489.2558a9.5353 9.5353 0 0 0-.8496 1.3809 2.3558 2.3558 0 0 0-.6094-.7344 2.1061 2.1061 0 0 0-.2246-.1543 9.9204 9.9204 0 0 1 .7344-1.2246zM14.39 17.012c.5925.2748.9664.9011 1.0488 1.6035-.4794.1405-1.0044.3915-1.4472.6113.165-.6105.2864-1.2316.3633-1.8593a6.107 6.107 0 0 0 .0351-.3555zm-9.2617.0137c.0092.116.021.2307.0332.3437.0769.6278.1982 1.2508.3633 1.8614-.4367-.2169-.9485-.462-1.4219-.6055.0794-.6962.4421-1.3187 1.0254-1.5996zm1.8965 1.666c.5202.0206 1.0323.287 1.414.621.0214 1.472.3308 2.8553.5293 3.127.2016.2688.0938.754.0938.754s-2.602.0671-2.8555 0c-.2535-.0672-.555-.8145-.1367-1.2481.1954-.2015.4753-.251.7227-.248.507.1099.8366.4235 1.1816.8632-.0733-.7543-.4965-.9515-.7988-1.1347-.0977-.058-.1356-.0859-.1875-.1836a10.8387 10.8387 0 0 1-.8828-2.2852c.292-.2027.6077-.278.9199-.2656zm5.4687 0c.3119-.0124.628.063.92.2656a11.035 11.035 0 0 1-.879 2.2852c-.055.0977-.0928.1256-.1874.1836-.3024.1832-.7256.3804-.7989 1.1347.3451-.4397.6747-.7533 1.1817-.8632.2473-.003.5302.0465.7226.248.4184.4336.1168 1.1809-.1367 1.248-.2535.0672-2.8555 0-2.8555 0s-.1058-.4851.0957-.7539c.1986-.2717.51-1.655.5313-3.127.378-.334.8865-.6004 1.4062-.621zm-8.6601.3887c.4642.1221 1.2316.477 1.9004.828.1069.3146.226.6216.3574.924.045.1025.092.2056.1406.3066a1.4131 1.4131 0 0 0-.621.3691 1.3835 1.3835 0 0 0-.379.9063H2.8296c-.2413-.2016.0279-2.03 2.3945-.9551-.5222-.4153-1.412-.9712-1.3906-2.379zm11.8496 0c.0214 1.4077-.8676 1.9636-1.3867 2.3789 2.3636-1.075 2.6349.7535 2.3906.955h-2.4453a1.324 1.324 0 0 0-1.0176-1.246 9.3621 9.3621 0 0 0 .4766-1.2149c.6901-.3695 1.503-.7478 1.9824-.873zm-5.1856.412a9.7574 9.7574 0 0 1-.1796 1.7384c-.0398.2015-.1404.689-.2442.8691a1.4439 1.4439 0 0 0-.0781.1289c-.1487.0023-.2692.0013-.42.002a1.6751 1.6751 0 0 0-.0956-.1582 1.8492 1.8492 0 0 1-.0977-.2754 7.2305 7.2305 0 0 1-.1777-.793 10.22 10.22 0 0 1-.1387-1.5 4.8903 4.8903 0 0 0 1.4316-.0117Z" }) + ] + } + ); +}); + +export { SiTekton as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.cjs new file mode 100644 index 000000000..940af7ec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF00FF"; +const SiTele5 = React__namespace.forwardRef(function SiTele52({ title = "TELE 5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.006 0v5.027H3.83V0h-.685v4.18H2.23V.074h-.677V4.18h-.87V0H.007zm5.623.004v14.154h8.658V7.254h8.791V.004H5.628zM3.145 6.076v3.9H.005v.85H3.83v-4.75h-.685zM23 9.926 5.389 18.502c2.371 4.857 8.236 6.874 13.1 4.506v.002C23.352 20.64 25.372 14.783 23 9.926zM.006 12.129v5.027H3.83V12.13h-.685v4.18H2.23v-4.106h-.677v4.106h-.87v-4.18H.007zm0 6.07v5.791h.687v-2.47H3.83v-.848H.693v-2.473H.006z" }) + ] + } + ); +}); + +exports.default = SiTele5; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.d.ts new file mode 100644 index 000000000..8ec95d6e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF00FF"; +declare const SiTele5: IconType; +export { SiTele5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.mjs new file mode 100644 index 000000000..1c22a624e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTele5.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF00FF"; +const SiTele5 = React.forwardRef(function SiTele52({ title = "TELE 5", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.006 0v5.027H3.83V0h-.685v4.18H2.23V.074h-.677V4.18h-.87V0H.007zm5.623.004v14.154h8.658V7.254h8.791V.004H5.628zM3.145 6.076v3.9H.005v.85H3.83v-4.75h-.685zM23 9.926 5.389 18.502c2.371 4.857 8.236 6.874 13.1 4.506v.002C23.352 20.64 25.372 14.783 23 9.926zM.006 12.129v5.027H3.83V12.13h-.685v4.18H2.23v-4.106h-.677v4.106h-.87v-4.18H.007zm0 6.07v5.791h.687v-2.47H3.83v-.848H.693v-2.473H.006z" }) + ] + } + ); +}); + +export { SiTele5 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.cjs new file mode 100644 index 000000000..f530884d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066FF"; +const SiTelefonica = React__namespace.forwardRef(function SiTelefonica2({ title = "Telefónica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.162 3.581a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m8.419 0a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m8.419 0a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0M15.581 12a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m0 8.419a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0" }) + ] + } + ); +}); + +exports.default = SiTelefonica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.d.ts new file mode 100644 index 000000000..5ce64a7b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066FF"; +declare const SiTelefonica: IconType; +export { SiTelefonica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.mjs new file mode 100644 index 000000000..4e69cb795 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelefonica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066FF"; +const SiTelefonica = React.forwardRef(function SiTelefonica2({ title = "Telefónica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.162 3.581a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m8.419 0a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m8.419 0a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0M15.581 12a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0m0 8.419a3.581 3.581 0 1 0-7.162 0 3.581 3.581 0 0 0 7.162 0" }) + ] + } + ); +}); + +export { SiTelefonica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.cjs new file mode 100644 index 000000000..7addd922f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#26A5E4"; +const SiTelegram = React__namespace.forwardRef(function SiTelegram2({ title = "Telegram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" }) + ] + } + ); +}); + +exports.default = SiTelegram; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.d.ts new file mode 100644 index 000000000..7f23314e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#26A5E4"; +declare const SiTelegram: IconType; +export { SiTelegram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.mjs new file mode 100644 index 000000000..dff4db4c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegram.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#26A5E4"; +const SiTelegram = React.forwardRef(function SiTelegram2({ title = "Telegram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" }) + ] + } + ); +}); + +export { SiTelegram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.cjs new file mode 100644 index 000000000..11d7427a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAFAFA"; +const SiTelegraph = React__namespace.forwardRef(function SiTelegraph2({ title = "Telegraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm6 6h12v3h-4.5v9h-3V9H6V6Z" }) + ] + } + ); +}); + +exports.default = SiTelegraph; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.d.ts new file mode 100644 index 000000000..4d7a37cee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAFAFA"; +declare const SiTelegraph: IconType; +export { SiTelegraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.mjs new file mode 100644 index 000000000..644b69826 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelegraph.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAFAFA"; +const SiTelegraph = React.forwardRef(function SiTelegraph2({ title = "Telegraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm6 6h12v3h-4.5v9h-3V9H6V6Z" }) + ] + } + ); +}); + +export { SiTelegraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.cjs new file mode 100644 index 000000000..b034619c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00C8FF"; +const SiTelenor = React__namespace.forwardRef(function SiTelenor2({ title = "Telenor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.131 7.706c.343.054.412-.017.458-.343a7.754 7.754 0 0 1 .668-2.189c.45-.923 1.162-1.938 2.166-2.619a10.776 10.776 0 0 1 3.296-1.418 8.039 8.039 0 0 1 2.403-.16c1.445.13 2.245.543 2.647 1.077a1.159 1.159 0 0 1 .23.61c.012.267-.103.612-.486.952-.383.34-1.162.743-2.242 1.105-1.119.373-2.65.767-4.176 1.118a23.554 23.554 0 0 0-2.612.75c-1.01.343-1.314 1.347-.687 1.655a9.427 9.427 0 0 1 1.965 1.287 17.392 17.392 0 0 1 2.62 2.575c.949 1.16 2.504 3.374 3.062 5.524.62 2.36.234 4.596-1.102 5.221-1.31.615-3.054-.271-4.28-1.545-1.163-1.201-1.977-2.624-2.746-4.806-.662-1.888-.93-4.612-.93-6.04 0-.476 0-.577.012-1.006.045-.375-.965-.687-2.05.013-1.234.795-2.442 2.232-3.156 3.07-.311.365-.733.9-1.178 1.462-.589.738-1.237 1.507-1.83 1.936-.887.634-2.317.908-3.324.194C.3 15.731 0 14.98 0 14.214a2.903 2.903 0 0 1 .395-1.506c.343-.589.888-1.222 1.765-1.946a15.536 15.536 0 0 1 3.802-2.168c2.21-.891 4.591-1.171 6.169-.888z" }) + ] + } + ); +}); + +exports.default = SiTelenor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.d.ts new file mode 100644 index 000000000..d5078b6c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00C8FF"; +declare const SiTelenor: IconType; +export { SiTelenor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.mjs new file mode 100644 index 000000000..d469d21b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelenor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00C8FF"; +const SiTelenor = React.forwardRef(function SiTelenor2({ title = "Telenor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.131 7.706c.343.054.412-.017.458-.343a7.754 7.754 0 0 1 .668-2.189c.45-.923 1.162-1.938 2.166-2.619a10.776 10.776 0 0 1 3.296-1.418 8.039 8.039 0 0 1 2.403-.16c1.445.13 2.245.543 2.647 1.077a1.159 1.159 0 0 1 .23.61c.012.267-.103.612-.486.952-.383.34-1.162.743-2.242 1.105-1.119.373-2.65.767-4.176 1.118a23.554 23.554 0 0 0-2.612.75c-1.01.343-1.314 1.347-.687 1.655a9.427 9.427 0 0 1 1.965 1.287 17.392 17.392 0 0 1 2.62 2.575c.949 1.16 2.504 3.374 3.062 5.524.62 2.36.234 4.596-1.102 5.221-1.31.615-3.054-.271-4.28-1.545-1.163-1.201-1.977-2.624-2.746-4.806-.662-1.888-.93-4.612-.93-6.04 0-.476 0-.577.012-1.006.045-.375-.965-.687-2.05.013-1.234.795-2.442 2.232-3.156 3.07-.311.365-.733.9-1.178 1.462-.589.738-1.237 1.507-1.83 1.936-.887.634-2.317.908-3.324.194C.3 15.731 0 14.98 0 14.214a2.903 2.903 0 0 1 .395-1.506c.343-.589.888-1.222 1.765-1.946a15.536 15.536 0 0 1 3.802-2.168c2.21-.891 4.591-1.171 6.169-.888z" }) + ] + } + ); +}); + +export { SiTelenor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.cjs new file mode 100644 index 000000000..98baf6b0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1343FB"; +const SiTelequebec = React__namespace.forwardRef(function SiTelequebec2({ title = "Télé-Québec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.054 5.568c-1.105.008-1.99.05-2.655.083L4.483 9.404A42.34 42.34 0 0 1 .322 7.99c.643.665 1.93 1.394 3.646 2.059l-.43.536C2.21 10.155 1.009 9.726 0 9.297c.58.6 1.652 1.265 3.067 1.887l-1.394 1.78c1.716.322 4.482 1.094 7.57 2.253 2.382.922 4.312 1.844 5.77 2.638l.987.579 2.53-3.796c2.51.085 4.376-.172 5.105-.751-1.244.064-2.767.021-4.525-.13l.472-.707c2.166 0 3.775-.3 4.418-.857-1.072.064-2.38.064-3.84-.022l3.24-4.847c-1.352-.3-3.625-.901-6.306-1.309l-3.067-.321a51.668 51.668 0 0 0-3.973-.126zm.4 1.241c.854-.005 1.878.01 3.08.086l2.38.236c2.08.3 3.84.75 4.89.965L18.102 12c-1.866-.171-3.904-.471-6.07-.858a74.896 74.896 0 0 1-6.027-1.33l2.38-2.959c.526-.01 1.213-.037 2.068-.043zm2.72.535c-.493.004-1.03.223-1.464.645-.772.73-.9 1.844-.3 2.445.6.6 1.694.493 2.466-.258.773-.729.901-1.844.3-2.445a1.378 1.378 0 0 0-1.002-.387zm-7.79 3.24c1.951.665 4.29 1.265 6.798 1.737 1.888.343 3.646.558 5.233.665l-.385.557a75.458 75.458 0 0 1-5.384-.879 82.036 82.036 0 0 1-6.649-1.608Zm-.966 1.158c2.06.794 4.611 1.523 7.378 2.06a43.83 43.83 0 0 0 4.569.685l-1.266 1.845-.815-.386c-1.115-.6-2.616-1.287-4.46-1.974-2.381-.857-4.526-1.436-5.856-1.672Z" }) + ] + } + ); +}); + +exports.default = SiTelequebec; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.d.ts new file mode 100644 index 000000000..58360c508 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1343FB"; +declare const SiTelequebec: IconType; +export { SiTelequebec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.mjs new file mode 100644 index 000000000..3bb0d25d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTelequebec.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1343FB"; +const SiTelequebec = React.forwardRef(function SiTelequebec2({ title = "Télé-Québec", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.054 5.568c-1.105.008-1.99.05-2.655.083L4.483 9.404A42.34 42.34 0 0 1 .322 7.99c.643.665 1.93 1.394 3.646 2.059l-.43.536C2.21 10.155 1.009 9.726 0 9.297c.58.6 1.652 1.265 3.067 1.887l-1.394 1.78c1.716.322 4.482 1.094 7.57 2.253 2.382.922 4.312 1.844 5.77 2.638l.987.579 2.53-3.796c2.51.085 4.376-.172 5.105-.751-1.244.064-2.767.021-4.525-.13l.472-.707c2.166 0 3.775-.3 4.418-.857-1.072.064-2.38.064-3.84-.022l3.24-4.847c-1.352-.3-3.625-.901-6.306-1.309l-3.067-.321a51.668 51.668 0 0 0-3.973-.126zm.4 1.241c.854-.005 1.878.01 3.08.086l2.38.236c2.08.3 3.84.75 4.89.965L18.102 12c-1.866-.171-3.904-.471-6.07-.858a74.896 74.896 0 0 1-6.027-1.33l2.38-2.959c.526-.01 1.213-.037 2.068-.043zm2.72.535c-.493.004-1.03.223-1.464.645-.772.73-.9 1.844-.3 2.445.6.6 1.694.493 2.466-.258.773-.729.901-1.844.3-2.445a1.378 1.378 0 0 0-1.002-.387zm-7.79 3.24c1.951.665 4.29 1.265 6.798 1.737 1.888.343 3.646.558 5.233.665l-.385.557a75.458 75.458 0 0 1-5.384-.879 82.036 82.036 0 0 1-6.649-1.608Zm-.966 1.158c2.06.794 4.611 1.523 7.378 2.06a43.83 43.83 0 0 0 4.569.685l-1.266 1.845-.815-.386c-1.115-.6-2.616-1.287-4.46-1.974-2.381-.857-4.526-1.436-5.856-1.672Z" }) + ] + } + ); +}); + +export { SiTelequebec as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.cjs new file mode 100644 index 000000000..2713bfb15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTemporal = React__namespace.forwardRef(function SiTemporal2({ title = "Temporal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.206 7.794C15.64 3.546 14.204 0 12 0 9.796 0 8.361 3.546 7.794 7.794 3.546 8.36 0 9.796 0 12c0 2.204 3.546 3.639 7.794 4.206C8.36 20.453 9.796 24 12 24c2.204 0 3.639-3.546 4.206-7.794C20.454 15.64 24 14.204 24 12c0-2.204-3.547-3.64-7.794-4.206Zm-8.55 7.174c-4.069-.587-6.44-1.932-6.44-2.969 0-1.036 2.372-2.381 6.44-2.969-.09.98-.137 1.98-.137 2.97 0 .99.047 1.99.137 2.968zM12 1.215c1.036 0 2.381 2.372 2.969 6.44a32.718 32.718 0 0 0-5.938 0c.587-4.068 1.932-6.44 2.969-6.44Zm4.344 13.753c-.2.03-1.022.126-1.23.146-.02.209-.117 1.03-.145 1.23-.588 4.068-1.933 6.44-2.97 6.44-1.036 0-2.38-2.372-2.968-6.44-.03-.2-.126-1.022-.147-1.23a31.833 31.833 0 0 1 0-6.23 31.813 31.813 0 0 1 7.46.146c4.068.587 6.442 1.933 6.442 2.969-.001 1.036-2.374 2.382-6.442 2.97z" }) + ] + } + ); +}); + +exports.default = SiTemporal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.d.ts new file mode 100644 index 000000000..7e2762570 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTemporal: IconType; +export { SiTemporal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.mjs new file mode 100644 index 000000000..47a5a244b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTemporal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTemporal = React.forwardRef(function SiTemporal2({ title = "Temporal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.206 7.794C15.64 3.546 14.204 0 12 0 9.796 0 8.361 3.546 7.794 7.794 3.546 8.36 0 9.796 0 12c0 2.204 3.546 3.639 7.794 4.206C8.36 20.453 9.796 24 12 24c2.204 0 3.639-3.546 4.206-7.794C20.454 15.64 24 14.204 24 12c0-2.204-3.547-3.64-7.794-4.206Zm-8.55 7.174c-4.069-.587-6.44-1.932-6.44-2.969 0-1.036 2.372-2.381 6.44-2.969-.09.98-.137 1.98-.137 2.97 0 .99.047 1.99.137 2.968zM12 1.215c1.036 0 2.381 2.372 2.969 6.44a32.718 32.718 0 0 0-5.938 0c.587-4.068 1.932-6.44 2.969-6.44Zm4.344 13.753c-.2.03-1.022.126-1.23.146-.02.209-.117 1.03-.145 1.23-.588 4.068-1.933 6.44-2.97 6.44-1.036 0-2.38-2.372-2.968-6.44-.03-.2-.126-1.022-.147-1.23a31.833 31.833 0 0 1 0-6.23 31.813 31.813 0 0 1 7.46.146c4.068.587 6.442 1.933 6.442 2.969-.001 1.036-2.374 2.382-6.442 2.97z" }) + ] + } + ); +}); + +export { SiTemporal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.cjs new file mode 100644 index 000000000..4fa983342 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6F00"; +const SiTensorflow = React__namespace.forwardRef(function SiTensorflow2({ title = "TensorFlow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.292 5.856L11.54 0v24l-4.095-2.378V7.603l-6.168 3.564.015-5.31zm21.43 5.311l-.014-5.31L12.46 0v24l4.095-2.378V14.87l3.092 1.788-.018-4.618-3.074-1.756V7.603l6.168 3.564z" }) + ] + } + ); +}); + +exports.default = SiTensorflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.d.ts new file mode 100644 index 000000000..afb4edb4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6F00"; +declare const SiTensorflow: IconType; +export { SiTensorflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.mjs new file mode 100644 index 000000000..84ce267db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTensorflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6F00"; +const SiTensorflow = React.forwardRef(function SiTensorflow2({ title = "TensorFlow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.292 5.856L11.54 0v24l-4.095-2.378V7.603l-6.168 3.564.015-5.31zm21.43 5.311l-.014-5.31L12.46 0v24l4.095-2.378V14.87l3.092 1.788-.018-4.618-3.074-1.756V7.603l6.168 3.564z" }) + ] + } + ); +}); + +export { SiTensorflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.cjs new file mode 100644 index 000000000..6fcec4a11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F37440"; +const SiTeradata = React__namespace.forwardRef(function SiTeradata2({ title = "Teradata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5 0 0 5.65 0 12.08C0 18.83 5 24 12 24S24 18.83 24 12.08C24 5.65 19 0 12 0M8.47 3.44H11.97V6.7H15.55V9.56H11.97V14.78C11.97 16.36 12.74 17.05 13.9 17.05C14.32 17.05 14.88 16.93 15.41 16.73C15.79 17.73 16.46 18.63 17.18 19.35A7 7 0 0 1 13.66 20.32C10.54 20.32 8.47 18.67 8.47 15.04V3.45Z" }) + ] + } + ); +}); + +exports.default = SiTeradata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.d.ts new file mode 100644 index 000000000..cf2dcdbbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F37440"; +declare const SiTeradata: IconType; +export { SiTeradata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.mjs new file mode 100644 index 000000000..723771f63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeradata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F37440"; +const SiTeradata = React.forwardRef(function SiTeradata2({ title = "Teradata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5 0 0 5.65 0 12.08C0 18.83 5 24 12 24S24 18.83 24 12.08C24 5.65 19 0 12 0M8.47 3.44H11.97V6.7H15.55V9.56H11.97V14.78C11.97 16.36 12.74 17.05 13.9 17.05C14.32 17.05 14.88 16.93 15.41 16.73C15.79 17.73 16.46 18.63 17.18 19.35A7 7 0 0 1 13.66 20.32C10.54 20.32 8.47 18.67 8.47 15.04V3.45Z" }) + ] + } + ); +}); + +export { SiTeradata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.cjs new file mode 100644 index 000000000..47e9e447c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F4C51C"; +const SiTeratail = React__namespace.forwardRef(function SiTeratail2({ title = "teratail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.81.968h4.375L24 23.032h-5.107L12.121 6.605h-.198L5.148 23.03H0Z" }) + ] + } + ); +}); + +exports.default = SiTeratail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.d.ts new file mode 100644 index 000000000..c2b9af9fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F4C51C"; +declare const SiTeratail: IconType; +export { SiTeratail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.mjs new file mode 100644 index 000000000..0ab95ff40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTeratail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F4C51C"; +const SiTeratail = React.forwardRef(function SiTeratail2({ title = "teratail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.81.968h4.375L24 23.032h-5.107L12.121 6.605h-.198L5.148 23.03H0Z" }) + ] + } + ); +}); + +export { SiTeratail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.cjs new file mode 100644 index 000000000..3d0689ba3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTermius = React__namespace.forwardRef(function SiTermius2({ title = "Termius", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.812 19.381A6.194 6.194 0 0 0 24 13.193c0-1.7-.723-3.352-1.958-4.515a6.01 6.01 0 0 0-6.005-5.955 5.98 5.98 0 0 0-2.731.656 5.985 5.985 0 0 0-4.12-1.635 6.011 6.011 0 0 0-6 5.743A6.224 6.224 0 0 0 0 12.917a6.225 6.225 0 0 0 6.706 6.2 6.426 6.426 0 0 0 5.508 3.14 6.395 6.395 0 0 0 5.347-2.881c.084.003.167.005.25.005zm-5.598 1.242A4.792 4.792 0 0 1 7.9 17.888l-.267-.562-.613.108a4.592 4.592 0 0 1-5.387-4.516A4.59 4.59 0 0 1 4.34 8.734l.506-.228-.026-.555a4.377 4.377 0 0 1 4.367-4.574c1.297 0 2.512.566 3.347 1.56l.47.56.609-.407a4.349 4.349 0 0 1 2.425-.734 4.378 4.378 0 0 1 4.364 4.632l-.025.416.322.265a4.612 4.612 0 0 1 1.669 3.524 4.561 4.561 0 0 1-5.14 4.518l-.554-.071-.267.49a4.764 4.764 0 0 1-4.192 2.493zm3.102-6.533.016-.007c.212-.091.288-.171.288-.393v-.278c0-.244-.14-.401-.37-.401h-.013l-.046.01a4.534 4.534 0 0 1-1.502.272c-.48 0-.954-.09-1.409-.27l-.013-.005-.052-.007c-.23 0-.37.157-.37.401v.278c0 .209.078.303.261.382l.02.009.02.008a3.91 3.91 0 0 0 1.544.32c.525 0 1.071-.107 1.626-.319zm-7.081-2.285c0-.224.116-.348.272-.38l1.501-.394-1.505-.395c-.156-.041-.268-.164-.268-.38v-.473c0-.207.124-.296.266-.296.046 0 .094.01.141.028l2.68.867c.203.068.315.231.315.455v.387c0 .224-.112.388-.316.456l-2.685.868a.437.437 0 0 1-.125.02c-.168 0-.276-.12-.276-.297v-.466z" }) + ] + } + ); +}); + +exports.default = SiTermius; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.d.ts new file mode 100644 index 000000000..2cc4b7241 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTermius: IconType; +export { SiTermius as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.mjs new file mode 100644 index 000000000..f78d8886a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTermius.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTermius = React.forwardRef(function SiTermius2({ title = "Termius", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.812 19.381A6.194 6.194 0 0 0 24 13.193c0-1.7-.723-3.352-1.958-4.515a6.01 6.01 0 0 0-6.005-5.955 5.98 5.98 0 0 0-2.731.656 5.985 5.985 0 0 0-4.12-1.635 6.011 6.011 0 0 0-6 5.743A6.224 6.224 0 0 0 0 12.917a6.225 6.225 0 0 0 6.706 6.2 6.426 6.426 0 0 0 5.508 3.14 6.395 6.395 0 0 0 5.347-2.881c.084.003.167.005.25.005zm-5.598 1.242A4.792 4.792 0 0 1 7.9 17.888l-.267-.562-.613.108a4.592 4.592 0 0 1-5.387-4.516A4.59 4.59 0 0 1 4.34 8.734l.506-.228-.026-.555a4.377 4.377 0 0 1 4.367-4.574c1.297 0 2.512.566 3.347 1.56l.47.56.609-.407a4.349 4.349 0 0 1 2.425-.734 4.378 4.378 0 0 1 4.364 4.632l-.025.416.322.265a4.612 4.612 0 0 1 1.669 3.524 4.561 4.561 0 0 1-5.14 4.518l-.554-.071-.267.49a4.764 4.764 0 0 1-4.192 2.493zm3.102-6.533.016-.007c.212-.091.288-.171.288-.393v-.278c0-.244-.14-.401-.37-.401h-.013l-.046.01a4.534 4.534 0 0 1-1.502.272c-.48 0-.954-.09-1.409-.27l-.013-.005-.052-.007c-.23 0-.37.157-.37.401v.278c0 .209.078.303.261.382l.02.009.02.008a3.91 3.91 0 0 0 1.544.32c.525 0 1.071-.107 1.626-.319zm-7.081-2.285c0-.224.116-.348.272-.38l1.501-.394-1.505-.395c-.156-.041-.268-.164-.268-.38v-.473c0-.207.124-.296.266-.296.046 0 .094.01.141.028l2.68.867c.203.068.315.231.315.455v.387c0 .224-.112.388-.316.456l-2.685.868a.437.437 0 0 1-.125.02c-.168 0-.276-.12-.276-.297v-.466z" }) + ] + } + ); +}); + +export { SiTermius as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.cjs new file mode 100644 index 000000000..487d5bf32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#844FBA"; +const SiTerraform = React__namespace.forwardRef(function SiTerraform2({ title = "Terraform", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.44 0v7.575l6.561 3.79V3.787zm21.12 4.227l-6.561 3.791v7.574l6.56-3.787zM8.72 4.23v7.575l6.561 3.787V8.018zm0 8.405v7.575L15.28 24v-7.578z" }) + ] + } + ); +}); + +exports.default = SiTerraform; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.d.ts new file mode 100644 index 000000000..a57f8147b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#844FBA"; +declare const SiTerraform: IconType; +export { SiTerraform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.mjs new file mode 100644 index 000000000..a50ca9d37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTerraform.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#844FBA"; +const SiTerraform = React.forwardRef(function SiTerraform2({ title = "Terraform", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.44 0v7.575l6.561 3.79V3.787zm21.12 4.227l-6.561 3.791v7.574l6.56-3.787zM8.72 4.23v7.575l6.561 3.787V8.018zm0 8.405v7.575L15.28 24v-7.578z" }) + ] + } + ); +}); + +export { SiTerraform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.cjs new file mode 100644 index 000000000..730bf84c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00539F"; +const SiTesco = React__namespace.forwardRef(function SiTesco2({ title = "Tesco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.621 8.7913c-1.0182 0-2.0126.3081-2.0126 1.3264 0 1.7523 3.0784.8285 3.0784 1.8941 0 .3552-.5446.4976-.9709.4976-.7814 0-1.3499-.1186-2.0366-.5212v.8764c.521.1657 1.208.2602 1.9894.2602 1.0656 0 2.0602-.2841 2.0602-1.3024 0-1.847-3.0787-1.0182-3.0787-1.9181 0-.3552.4974-.4972.9236-.4972.7341 0 1.5155.2131 1.9418.6157v-.9473h-.0473c-.5446-.1657-1.3026-.2842-1.8472-.2842zm9.7329 0c-1.6103.0237-2.7233.9236-2.7233 2.226 0 1.255 1.0184 2.1075 2.5103 2.1075 1.5865 0 2.6996-.8996 2.6996-2.202 0-1.2787-.9948-2.1315-2.4866-2.1315zm-4.31.024c-1.847 0-3.0547.8758-3.0547 2.2256 0 1.2314 1.1132 2.0603 2.7945 2.0603.5447 0 1.018-.071 1.5863-.213V11.846c-.4026.4262-.876.592-1.397.592-.9945 0-1.6578-.6154-1.6578-1.5153 0-.8762.7106-1.5157 1.6815-1.5157.5447 0 .9709.1893 1.3024.5208v-.9945c-.3552-.0947-.8052-.1181-1.2551-.1181zM.16 8.9334v.9945c.3552-.2605 1.0658-.3787 1.8472-.3787v2.6996c0 .4026-.0239.4971-.2133.7103h1.563c-.1658-.2132-.213-.3314-.213-.7103V9.5256h.0472c.6868 0 1.4917.1182 1.847.4023v-.9945zm5.3044 0c.1657.2131.1894.3318.1894.7107v2.6047c0 .4026-.0237.5208-.1894.7103h3.7654v-.971c-.521.379-1.492.3793-1.8945.3556h-.545v-1.113h.4028c.2842 0 .7576.0234 1.0418.1181v-.8287c-.2842.0947-.7813.1185-1.0418.1185h-.4027V9.5728h.5449c.4973 0 1.3496.095 1.6575.3791V8.9334zm15.7474.4973c.8288 0 1.3737.6869 1.3737 1.5394.0236.8288-.5212 1.5153-1.35 1.5153-.8525 0-1.397-.6865-1.397-1.5153 0-.8525.5445-1.5394 1.3733-1.5394zm-19.3703 4.689c-.4973 0-.8763.2602-1.0658.4496 0 0-.45.45-.7578.6158-.0237 0-.0237.0236 0 .0236h2.7945c.5446 0 .805-.1895 1.1366-.4736 0 0 .4736-.4497.8288-.5918.0236 0 .0236-.0236 0-.0236zm4.8068 0c-.4973 0-.876.2602-1.0418.4496 0 0-.45.45-.7579.6158-.0236 0-.0236.0236 0 .0236H7.643c.5447 0 .8051-.1895 1.1367-.4736 0 0 .4736-.4497.8051-.5918.0237 0 .0237-.0236 0-.0236zm4.7835 0c-.4736 0-.8523.2602-1.0418.4496 0 0-.45.45-.7578.6158-.0237 0-.0237.0236 0 .0236h2.794c.5447 0 .8056-.1895 1.1371-.4736 0 0 .4736-.4497.8051-.5918.0237 0 .0237-.0236 0-.0236zm4.8071 0c-.4736 0-.8523.2602-1.0417.4496 0 0-.45.45-.7579.6158-.0237 0-.0237.0236 0 .0236h2.7941c.5447 0 .8051-.1895 1.1367-.4736 0 0 .4736-.4497.805-.5918.0238 0 .0238-.0236 0-.0236zm4.8072 0c-.4736 0-.8523.2602-1.0654.4496 0 0-.45.45-.7579.6158-.0237 0-.0237.0236 0 .0236h2.8178c.5446 0 .805-.1895 1.1366-.4736 0 0 .4736-.4497.8051-.5918.0237 0 .0237-.0236 0-.0236z" }) + ] + } + ); +}); + +exports.default = SiTesco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.d.ts new file mode 100644 index 000000000..05dfb0269 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00539F"; +declare const SiTesco: IconType; +export { SiTesco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.mjs new file mode 100644 index 000000000..bec7c36ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTesco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00539F"; +const SiTesco = React.forwardRef(function SiTesco2({ title = "Tesco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.621 8.7913c-1.0182 0-2.0126.3081-2.0126 1.3264 0 1.7523 3.0784.8285 3.0784 1.8941 0 .3552-.5446.4976-.9709.4976-.7814 0-1.3499-.1186-2.0366-.5212v.8764c.521.1657 1.208.2602 1.9894.2602 1.0656 0 2.0602-.2841 2.0602-1.3024 0-1.847-3.0787-1.0182-3.0787-1.9181 0-.3552.4974-.4972.9236-.4972.7341 0 1.5155.2131 1.9418.6157v-.9473h-.0473c-.5446-.1657-1.3026-.2842-1.8472-.2842zm9.7329 0c-1.6103.0237-2.7233.9236-2.7233 2.226 0 1.255 1.0184 2.1075 2.5103 2.1075 1.5865 0 2.6996-.8996 2.6996-2.202 0-1.2787-.9948-2.1315-2.4866-2.1315zm-4.31.024c-1.847 0-3.0547.8758-3.0547 2.2256 0 1.2314 1.1132 2.0603 2.7945 2.0603.5447 0 1.018-.071 1.5863-.213V11.846c-.4026.4262-.876.592-1.397.592-.9945 0-1.6578-.6154-1.6578-1.5153 0-.8762.7106-1.5157 1.6815-1.5157.5447 0 .9709.1893 1.3024.5208v-.9945c-.3552-.0947-.8052-.1181-1.2551-.1181zM.16 8.9334v.9945c.3552-.2605 1.0658-.3787 1.8472-.3787v2.6996c0 .4026-.0239.4971-.2133.7103h1.563c-.1658-.2132-.213-.3314-.213-.7103V9.5256h.0472c.6868 0 1.4917.1182 1.847.4023v-.9945zm5.3044 0c.1657.2131.1894.3318.1894.7107v2.6047c0 .4026-.0237.5208-.1894.7103h3.7654v-.971c-.521.379-1.492.3793-1.8945.3556h-.545v-1.113h.4028c.2842 0 .7576.0234 1.0418.1181v-.8287c-.2842.0947-.7813.1185-1.0418.1185h-.4027V9.5728h.5449c.4973 0 1.3496.095 1.6575.3791V8.9334zm15.7474.4973c.8288 0 1.3737.6869 1.3737 1.5394.0236.8288-.5212 1.5153-1.35 1.5153-.8525 0-1.397-.6865-1.397-1.5153 0-.8525.5445-1.5394 1.3733-1.5394zm-19.3703 4.689c-.4973 0-.8763.2602-1.0658.4496 0 0-.45.45-.7578.6158-.0237 0-.0237.0236 0 .0236h2.7945c.5446 0 .805-.1895 1.1366-.4736 0 0 .4736-.4497.8288-.5918.0236 0 .0236-.0236 0-.0236zm4.8068 0c-.4973 0-.876.2602-1.0418.4496 0 0-.45.45-.7579.6158-.0236 0-.0236.0236 0 .0236H7.643c.5447 0 .8051-.1895 1.1367-.4736 0 0 .4736-.4497.8051-.5918.0237 0 .0237-.0236 0-.0236zm4.7835 0c-.4736 0-.8523.2602-1.0418.4496 0 0-.45.45-.7578.6158-.0237 0-.0237.0236 0 .0236h2.794c.5447 0 .8056-.1895 1.1371-.4736 0 0 .4736-.4497.8051-.5918.0237 0 .0237-.0236 0-.0236zm4.8071 0c-.4736 0-.8523.2602-1.0417.4496 0 0-.45.45-.7579.6158-.0237 0-.0237.0236 0 .0236h2.7941c.5447 0 .8051-.1895 1.1367-.4736 0 0 .4736-.4497.805-.5918.0238 0 .0238-.0236 0-.0236zm4.8072 0c-.4736 0-.8523.2602-1.0654.4496 0 0-.45.45-.7579.6158-.0237 0-.0237.0236 0 .0236h2.8178c.5446 0 .805-.1895 1.1366-.4736 0 0 .4736-.4497.8051-.5918.0237 0 .0237-.0236 0-.0236z" }) + ] + } + ); +}); + +export { SiTesco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.cjs new file mode 100644 index 000000000..6b7f1049f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC0000"; +const SiTesla = React__namespace.forwardRef(function SiTesla2({ title = "Tesla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 5.362l2.475-3.026s4.245.09 8.471 2.054c-1.082 1.636-3.231 2.438-3.231 2.438-.146-1.439-1.154-1.79-4.354-1.79L12 24 8.619 5.034c-3.18 0-4.188.354-4.335 1.792 0 0-2.146-.795-3.229-2.43C5.28 2.431 9.525 2.34 9.525 2.34L12 5.362l-.004.002H12v-.002zm0-3.899c3.415-.03 7.326.528 11.328 2.28.535-.968.672-1.395.672-1.395C19.625.612 15.528.015 12 0 8.472.015 4.375.61 0 2.349c0 0 .195.525.672 1.396C4.674 1.989 8.585 1.435 12 1.46v.003z" }) + ] + } + ); +}); + +exports.default = SiTesla; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.d.ts new file mode 100644 index 000000000..aaa5801e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC0000"; +declare const SiTesla: IconType; +export { SiTesla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.mjs new file mode 100644 index 000000000..8e30a0abd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTesla.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC0000"; +const SiTesla = React.forwardRef(function SiTesla2({ title = "Tesla", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 5.362l2.475-3.026s4.245.09 8.471 2.054c-1.082 1.636-3.231 2.438-3.231 2.438-.146-1.439-1.154-1.79-4.354-1.79L12 24 8.619 5.034c-3.18 0-4.188.354-4.335 1.792 0 0-2.146-.795-3.229-2.43C5.28 2.431 9.525 2.34 9.525 2.34L12 5.362l-.004.002H12v-.002zm0-3.899c3.415-.03 7.326.528 11.328 2.28.535-.968.672-1.395.672-1.395C19.625.612 15.528.015 12 0 8.472.015 4.375.61 0 2.349c0 0 .195.525.672 1.396C4.674 1.989 8.585 1.435 12 1.46v.003z" }) + ] + } + ); +}); + +export { SiTesla as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.cjs new file mode 100644 index 000000000..8c294b770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#36B6E5"; +const SiTestcafe = React__namespace.forwardRef(function SiTestcafe2({ title = "TestCafe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.315 4.319-8.69 8.719-3.31-3.322-2.069 2.076 5.379 5.398 10.76-10.796zM5.849 14.689 0 19.682h24l-5.864-4.991h-3.2l-1.024.896h3.584l3.072 2.815H3.417l3.072-2.815h2.688l-.896-.896z" }) + ] + } + ); +}); + +exports.default = SiTestcafe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.d.ts new file mode 100644 index 000000000..8127622b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#36B6E5"; +declare const SiTestcafe: IconType; +export { SiTestcafe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.mjs new file mode 100644 index 000000000..de5ec8efc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestcafe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#36B6E5"; +const SiTestcafe = React.forwardRef(function SiTestcafe2({ title = "TestCafe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m20.315 4.319-8.69 8.719-3.31-3.322-2.069 2.076 5.379 5.398 10.76-10.796zM5.849 14.689 0 19.682h24l-5.864-4.991h-3.2l-1.024.896h3.584l3.072 2.815H3.417l3.072-2.815h2.688l-.896-.896z" }) + ] + } + ); +}); + +export { SiTestcafe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.cjs new file mode 100644 index 000000000..ee1730346 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007DD7"; +const SiTestin = React__namespace.forwardRef(function SiTestin2({ title = "Testin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.052 9.923H3.067v5.232H1.985V9.923H0V8.841h5.052v1.082zm3.459 1.74c.413.788.326 1.696.326 1.696H5.31c.134.391.461.718 1.182.718h2.172v1.083H6.492c-1.028 0-1.587-.451-1.874-.829-.304-.399-.471-.936-.471-1.513 0-1.165.806-2.345 2.345-2.345.897-.001 1.616.421 2.019 1.19zm-.895.659c-.152-.35-.469-.767-1.124-.767-.74 0-1.046.411-1.173.767h2.297zm4.971-.05H10.89a.344.344 0 0 1-.344-.344.4.4 0 0 1 .118-.279.322.322 0 0 1 .224-.099h2.47v-1.082h-2.44c-.429 0-.75.147-1.018.415a1.486 1.486 0 0 0-.436 1.045c0 .787.64 1.427 1.427 1.427h1.697c.212 0 .384.17.384.378 0 .19-.157.344-.35.344H9.719v1.083h2.902c.79 0 1.433-.64 1.433-1.426 0-.806-.658-1.462-1.467-1.462zm3.839-3.427h-1.083v1.624h-1.26v1.083h1.26v1.533c0 1.086 1.118 2.075 2.345 2.075v-1.083c-.68 0-1.263-.546-1.263-.992v-1.533h1.265v-1.083h-1.265V8.845zm1.981 6.31h1.083v-4.691h-1.083v4.691zm.542-6.311a.54.54 0 1 0 0 1.081.54.54 0 0 0 0-1.081zm3.112 1.617c-1.02 0-1.849.825-1.849 1.838v2.856h1.083v-2.856c0-.417.344-.755.767-.755.44 0 .857.367.857.755v2.856H24v-2.856c0-.996-.888-1.838-1.939-1.838z" }) + ] + } + ); +}); + +exports.default = SiTestin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.d.ts new file mode 100644 index 000000000..bc21a59bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007DD7"; +declare const SiTestin: IconType; +export { SiTestin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.mjs new file mode 100644 index 000000000..6081e0c6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007DD7"; +const SiTestin = React.forwardRef(function SiTestin2({ title = "Testin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.052 9.923H3.067v5.232H1.985V9.923H0V8.841h5.052v1.082zm3.459 1.74c.413.788.326 1.696.326 1.696H5.31c.134.391.461.718 1.182.718h2.172v1.083H6.492c-1.028 0-1.587-.451-1.874-.829-.304-.399-.471-.936-.471-1.513 0-1.165.806-2.345 2.345-2.345.897-.001 1.616.421 2.019 1.19zm-.895.659c-.152-.35-.469-.767-1.124-.767-.74 0-1.046.411-1.173.767h2.297zm4.971-.05H10.89a.344.344 0 0 1-.344-.344.4.4 0 0 1 .118-.279.322.322 0 0 1 .224-.099h2.47v-1.082h-2.44c-.429 0-.75.147-1.018.415a1.486 1.486 0 0 0-.436 1.045c0 .787.64 1.427 1.427 1.427h1.697c.212 0 .384.17.384.378 0 .19-.157.344-.35.344H9.719v1.083h2.902c.79 0 1.433-.64 1.433-1.426 0-.806-.658-1.462-1.467-1.462zm3.839-3.427h-1.083v1.624h-1.26v1.083h1.26v1.533c0 1.086 1.118 2.075 2.345 2.075v-1.083c-.68 0-1.263-.546-1.263-.992v-1.533h1.265v-1.083h-1.265V8.845zm1.981 6.31h1.083v-4.691h-1.083v4.691zm.542-6.311a.54.54 0 1 0 0 1.081.54.54 0 0 0 0-1.081zm3.112 1.617c-1.02 0-1.849.825-1.849 1.838v2.856h1.083v-2.856c0-.417.344-.755.767-.755.44 0 .857.367.857.755v2.856H24v-2.856c0-.996-.888-1.838-1.939-1.838z" }) + ] + } + ); +}); + +export { SiTestin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.cjs new file mode 100644 index 000000000..38e42f487 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E33332"; +const SiTestinglibrary = React__namespace.forwardRef(function SiTestinglibrary2({ title = "Testing Library", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.447 9.756c.028.05.053.113.078.186-.028-.06-.047-.129-.078-.186.592 2.304-1.95 5.003-5.13 4.239h.001c4.596-3.01 2.332-6.772.19-8.58-1.762-1.49-.721-1.95.021-1.95.237 0 .443.046.519.121l-.005-.004.006.004c-.018-1.433-5.066-1.11-.65 3.494 2.268 2.365-.408 7.596-3.596 3.618a.974.974 0 0 1-.071-.113c.515-.214.937-.795.937-1.753a2.383 2.383 0 0 0-.197-.986c.368-.75.707-1.647.707-2.77 0-2.684-1.742-5.076-4.18-5.076s-4.18 2.392-4.18 5.076c0 1.123.339 2.02.707 2.771a2.374 2.374 0 0 0-.197.988c0 .958.421 1.54.937 1.753a.985.985 0 0 1-.072.113C6.006 14.679 3.33 9.447 5.598 7.083c4.417-4.604-.633-4.926-.651-3.494l.008-.004c.078-.074.28-.12.515-.12.742 0 1.783.46.021 1.95-2.133 1.8-4.383 5.538.139 8.542.018.013.03.027.049.04-3.176.764-5.714-1.928-5.131-4.232l.004-.01c-.001.002-.002.005-.004.006l.001-.003-.003.007c-1.174 1.61-.606 5.779 3.778 6.168.019.003.035.009.054.012-4.36 1-3.048 7.02.021 6.056L4.388 22l.016-.003C2.27 21.652 2.11 19 3.176 18.087c1.172-1.006 2.519-.137 5.302-.932l.03-.004c-.03 2.446 2.352 3.76 1.103 5.16-1.316 1.473-3.112-.1-2.858-1.55l.006-.029-.004.008v-.004l-.004.012C5.65 22.598 7.044 24 8.61 24c.899 0 1.855-.462 2.429-1.567 1.214-2.337-2.385-6.432.96-6.432 3.344 0-.255 4.095.959 6.432.574 1.105 1.53 1.567 2.43 1.567 1.571 0 2.97-1.411 1.85-3.268l.005.021-.006-.017c.276 1.457-1.533 3.057-2.855 1.575-1.244-1.404 1.131-2.718 1.106-5.163 2.806.812 4.157-.072 5.334.94 1.066.911.906 3.564-1.228 3.91h.007c3.07.958 4.377-5.054.018-6.057l.005-.001c4.44-.362 5.009-4.573 3.822-6.184zm-20.238.39C3.072 7.9 5.019 6.073 5.62 5.565c.838-.707 1.165-1.272.998-1.727a.809.809 0 0 0-.656-.512 1.411 1.411 0 0 0-.573.03c.169-.082.365-.13.574-.13.475 0 .866.223.995.569.117.313.12 1.007-1.174 2.133-2.047 1.783-2.213 3.922-1.685 5.33.458 1.223 1.47 2.014 2.58 2.014.177 0 .355-.02.533-.057-.54.46-1.16.61-1.412.656-1.494-1.045-2.512-2.419-2.591-3.727zm5.208 6.873c-1.135.302-2.295.319-3.038.323-.924.006-1.655.01-2.333.593-.617.528-.873 1.594-.609 2.536.091.325.19.656.426.857.178.153.482.37.787.522l-.016-.004c.019.01.033.023.052.033-.993-.212-1.572-1.18-1.642-2.134-.088-1.205.602-2.728 2.832-3.055.354-.052.728-.083 1.101-.114.91-.076 1.85-.155 2.497-.54-.024.38-.046.788-.057.983zm.25-2.684c-.65.998-1.936 1.153-3.07 1.29-.32.038-.613.083-.883.138l-.356-.024c-1.801-.156-3.141-1.006-3.775-2.396a4.068 4.068 0 0 1-.353-2.055s.038-.376.108-.77c-.087 1.095.207 2.138.88 2.997a4.649 4.649 0 0 0 3.636 1.762c1.33 0 2.588-.59 3.545-1.663.33-.37.478-.398.516-.398.128.186.019.708-.247 1.119zm6.372-5.503c0 1.347-1.527 1.347-1.527 0s1.527-1.347 1.527 0zM13.234 3.34c0 .741-1.235.741-1.235 0 0-.74 1.235-.74 1.235 0zm-.258 8.156c0 .749-.06 1.356-.133 1.356s-.126-.605-.125-1.355c0-.75.062-1.356.133-1.356.07 0 .128.606.125 1.355zm-.952-1.614c.056 0 .1.73.1 1.631s-.044 1.631-.1 1.631-.1-.73-.1-1.63c0-.902.045-1.632.1-1.632zm-.193-8.21c0 .511-.849.511-.849 0s.85-.506.85 0zm-.587 4.22c0-.354.587-.351.587 0 0 .354-.587.354-.587 0zm.046 5.622c0 .768-.064 1.39-.137 1.39-.073 0-.132-.622-.131-1.389s.064-1.389.138-1.389c.074 0 .132.62.13 1.388zm0-7.495c0 .51-.849.51-.849 0s.849-.51.849 0zm-1.147-1.234c0 .353-.587.353-.587 0s.587-.353.587 0zm-.08 2.508c0 .255-.425.255-.425 0 0-.256.424-.256.424 0zm-1.1 3.54c0-1.347 1.528-1.347 1.528 0s-1.528 1.347-1.528 0zm5.327 9.088c-.078.74-.273 1.38-.446 1.946-.347 1.138-.622 2.036.242 3.002.363.407.829.622 1.346.622.64 0 1.278-.34 1.664-.889a1.97 1.97 0 0 0 .325-.844c.017.16.026.31.015.417a1.623 1.623 0 0 1-.197.646c-.336.595-1.063.98-1.85.98-.95 0-1.77-.532-2.253-1.459-.481-.927-.132-2.214.177-3.35.302-1.115.564-2.077.104-2.678-.263-.345-.727-.512-1.417-.512-.691 0-1.155.167-1.418.512-.46.6-.198 1.563.104 2.678.309 1.136.658 2.423.177 3.35-.482.927-1.303 1.459-2.252 1.459-.788 0-1.515-.385-1.851-.98a1.623 1.623 0 0 1-.182-1.058c.048.296.142.582.323.84.387.547 1.025.888 1.665.888.518 0 .984-.215 1.348-.622.862-.966.588-1.862.24-2.998-.173-.567-.369-1.21-.445-1.95-.1-.966.119-1.827.6-2.36.399-.441.967-.666 1.69-.666s1.293.224 1.69.665c.48.533.7 1.393.6 2.36zm3.029-4.647c1.11 0 2.122-.79 2.579-2.014.526-1.408.36-3.547-1.69-5.33-1.295-1.127-1.292-1.82-1.175-2.134.13-.345.52-.569.994-.569.193 0 .372.045.532.115l.011.004a1.466 1.466 0 0 0-.533-.018.809.809 0 0 0-.656.512c-.166.455.16 1.02.998 1.728.6.507 2.548 2.334 2.411 4.578-.08 1.308-1.097 2.682-2.591 3.727a3.072 3.072 0 0 1-1.412-.656c.177.038.356.057.532.057zm4.635 6.469c-.07.956-.65 1.922-1.645 2.134.015-.008.028-.018.042-.027.305-.153.608-.368.785-.52.235-.202.335-.533.426-.858.264-.942.008-2.008-.609-2.536-.678-.582-1.409-.587-2.333-.593-.743-.004-1.903-.021-3.04-.323-.01-.196-.03-.602-.054-.983.647.386 1.589.465 2.5.542.373.031.744.062 1.097.113 2.23.327 2.919 1.848 2.83 3.05zm-2.666-3.979c-.271-.056-.565-.1-.886-.14-1.135-.136-2.421-.291-3.07-1.29-.268-.41-.38-.93-.292-1.09a.145.145 0 0 1 .048-.009c.09 0 .238.073.511.379.957 1.073 2.217 1.663 3.546 1.663 1.414 0 2.774-.66 3.637-1.763.672-.858.965-1.9.88-2.994.07.393.107.77.107.77a4.068 4.068 0 0 1-.353 2.054c-.634 1.39-1.974 2.24-3.775 2.396l-.353.024zm-9.69-7.495a.236.236 0 0 1 .11.221.236.236 0 1 1-.47 0 .235.235 0 0 1 .36-.221zm4.295.443a.235.235 0 0 1-.11-.222.235.235 0 1 1 .469 0 .236.236 0 0 1-.359.222z" }) + ] + } + ); +}); + +exports.default = SiTestinglibrary; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.d.ts new file mode 100644 index 000000000..0ae311d14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E33332"; +declare const SiTestinglibrary: IconType; +export { SiTestinglibrary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.mjs new file mode 100644 index 000000000..2e5f8be6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestinglibrary.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E33332"; +const SiTestinglibrary = React.forwardRef(function SiTestinglibrary2({ title = "Testing Library", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.447 9.756c.028.05.053.113.078.186-.028-.06-.047-.129-.078-.186.592 2.304-1.95 5.003-5.13 4.239h.001c4.596-3.01 2.332-6.772.19-8.58-1.762-1.49-.721-1.95.021-1.95.237 0 .443.046.519.121l-.005-.004.006.004c-.018-1.433-5.066-1.11-.65 3.494 2.268 2.365-.408 7.596-3.596 3.618a.974.974 0 0 1-.071-.113c.515-.214.937-.795.937-1.753a2.383 2.383 0 0 0-.197-.986c.368-.75.707-1.647.707-2.77 0-2.684-1.742-5.076-4.18-5.076s-4.18 2.392-4.18 5.076c0 1.123.339 2.02.707 2.771a2.374 2.374 0 0 0-.197.988c0 .958.421 1.54.937 1.753a.985.985 0 0 1-.072.113C6.006 14.679 3.33 9.447 5.598 7.083c4.417-4.604-.633-4.926-.651-3.494l.008-.004c.078-.074.28-.12.515-.12.742 0 1.783.46.021 1.95-2.133 1.8-4.383 5.538.139 8.542.018.013.03.027.049.04-3.176.764-5.714-1.928-5.131-4.232l.004-.01c-.001.002-.002.005-.004.006l.001-.003-.003.007c-1.174 1.61-.606 5.779 3.778 6.168.019.003.035.009.054.012-4.36 1-3.048 7.02.021 6.056L4.388 22l.016-.003C2.27 21.652 2.11 19 3.176 18.087c1.172-1.006 2.519-.137 5.302-.932l.03-.004c-.03 2.446 2.352 3.76 1.103 5.16-1.316 1.473-3.112-.1-2.858-1.55l.006-.029-.004.008v-.004l-.004.012C5.65 22.598 7.044 24 8.61 24c.899 0 1.855-.462 2.429-1.567 1.214-2.337-2.385-6.432.96-6.432 3.344 0-.255 4.095.959 6.432.574 1.105 1.53 1.567 2.43 1.567 1.571 0 2.97-1.411 1.85-3.268l.005.021-.006-.017c.276 1.457-1.533 3.057-2.855 1.575-1.244-1.404 1.131-2.718 1.106-5.163 2.806.812 4.157-.072 5.334.94 1.066.911.906 3.564-1.228 3.91h.007c3.07.958 4.377-5.054.018-6.057l.005-.001c4.44-.362 5.009-4.573 3.822-6.184zm-20.238.39C3.072 7.9 5.019 6.073 5.62 5.565c.838-.707 1.165-1.272.998-1.727a.809.809 0 0 0-.656-.512 1.411 1.411 0 0 0-.573.03c.169-.082.365-.13.574-.13.475 0 .866.223.995.569.117.313.12 1.007-1.174 2.133-2.047 1.783-2.213 3.922-1.685 5.33.458 1.223 1.47 2.014 2.58 2.014.177 0 .355-.02.533-.057-.54.46-1.16.61-1.412.656-1.494-1.045-2.512-2.419-2.591-3.727zm5.208 6.873c-1.135.302-2.295.319-3.038.323-.924.006-1.655.01-2.333.593-.617.528-.873 1.594-.609 2.536.091.325.19.656.426.857.178.153.482.37.787.522l-.016-.004c.019.01.033.023.052.033-.993-.212-1.572-1.18-1.642-2.134-.088-1.205.602-2.728 2.832-3.055.354-.052.728-.083 1.101-.114.91-.076 1.85-.155 2.497-.54-.024.38-.046.788-.057.983zm.25-2.684c-.65.998-1.936 1.153-3.07 1.29-.32.038-.613.083-.883.138l-.356-.024c-1.801-.156-3.141-1.006-3.775-2.396a4.068 4.068 0 0 1-.353-2.055s.038-.376.108-.77c-.087 1.095.207 2.138.88 2.997a4.649 4.649 0 0 0 3.636 1.762c1.33 0 2.588-.59 3.545-1.663.33-.37.478-.398.516-.398.128.186.019.708-.247 1.119zm6.372-5.503c0 1.347-1.527 1.347-1.527 0s1.527-1.347 1.527 0zM13.234 3.34c0 .741-1.235.741-1.235 0 0-.74 1.235-.74 1.235 0zm-.258 8.156c0 .749-.06 1.356-.133 1.356s-.126-.605-.125-1.355c0-.75.062-1.356.133-1.356.07 0 .128.606.125 1.355zm-.952-1.614c.056 0 .1.73.1 1.631s-.044 1.631-.1 1.631-.1-.73-.1-1.63c0-.902.045-1.632.1-1.632zm-.193-8.21c0 .511-.849.511-.849 0s.85-.506.85 0zm-.587 4.22c0-.354.587-.351.587 0 0 .354-.587.354-.587 0zm.046 5.622c0 .768-.064 1.39-.137 1.39-.073 0-.132-.622-.131-1.389s.064-1.389.138-1.389c.074 0 .132.62.13 1.388zm0-7.495c0 .51-.849.51-.849 0s.849-.51.849 0zm-1.147-1.234c0 .353-.587.353-.587 0s.587-.353.587 0zm-.08 2.508c0 .255-.425.255-.425 0 0-.256.424-.256.424 0zm-1.1 3.54c0-1.347 1.528-1.347 1.528 0s-1.528 1.347-1.528 0zm5.327 9.088c-.078.74-.273 1.38-.446 1.946-.347 1.138-.622 2.036.242 3.002.363.407.829.622 1.346.622.64 0 1.278-.34 1.664-.889a1.97 1.97 0 0 0 .325-.844c.017.16.026.31.015.417a1.623 1.623 0 0 1-.197.646c-.336.595-1.063.98-1.85.98-.95 0-1.77-.532-2.253-1.459-.481-.927-.132-2.214.177-3.35.302-1.115.564-2.077.104-2.678-.263-.345-.727-.512-1.417-.512-.691 0-1.155.167-1.418.512-.46.6-.198 1.563.104 2.678.309 1.136.658 2.423.177 3.35-.482.927-1.303 1.459-2.252 1.459-.788 0-1.515-.385-1.851-.98a1.623 1.623 0 0 1-.182-1.058c.048.296.142.582.323.84.387.547 1.025.888 1.665.888.518 0 .984-.215 1.348-.622.862-.966.588-1.862.24-2.998-.173-.567-.369-1.21-.445-1.95-.1-.966.119-1.827.6-2.36.399-.441.967-.666 1.69-.666s1.293.224 1.69.665c.48.533.7 1.393.6 2.36zm3.029-4.647c1.11 0 2.122-.79 2.579-2.014.526-1.408.36-3.547-1.69-5.33-1.295-1.127-1.292-1.82-1.175-2.134.13-.345.52-.569.994-.569.193 0 .372.045.532.115l.011.004a1.466 1.466 0 0 0-.533-.018.809.809 0 0 0-.656.512c-.166.455.16 1.02.998 1.728.6.507 2.548 2.334 2.411 4.578-.08 1.308-1.097 2.682-2.591 3.727a3.072 3.072 0 0 1-1.412-.656c.177.038.356.057.532.057zm4.635 6.469c-.07.956-.65 1.922-1.645 2.134.015-.008.028-.018.042-.027.305-.153.608-.368.785-.52.235-.202.335-.533.426-.858.264-.942.008-2.008-.609-2.536-.678-.582-1.409-.587-2.333-.593-.743-.004-1.903-.021-3.04-.323-.01-.196-.03-.602-.054-.983.647.386 1.589.465 2.5.542.373.031.744.062 1.097.113 2.23.327 2.919 1.848 2.83 3.05zm-2.666-3.979c-.271-.056-.565-.1-.886-.14-1.135-.136-2.421-.291-3.07-1.29-.268-.41-.38-.93-.292-1.09a.145.145 0 0 1 .048-.009c.09 0 .238.073.511.379.957 1.073 2.217 1.663 3.546 1.663 1.414 0 2.774-.66 3.637-1.763.672-.858.965-1.9.88-2.994.07.393.107.77.107.77a4.068 4.068 0 0 1-.353 2.054c-.634 1.39-1.974 2.24-3.775 2.396l-.353.024zm-9.69-7.495a.236.236 0 0 1 .11.221.236.236 0 1 1-.47 0 .235.235 0 0 1 .36-.221zm4.295.443a.235.235 0 0 1-.11-.222.235.235 0 1 1 .469 0 .236.236 0 0 1-.359.222z" }) + ] + } + ); +}); + +export { SiTestinglibrary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.cjs new file mode 100644 index 000000000..c5f3e4334 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#65C179"; +const SiTestrail = React__namespace.forwardRef(function SiTestrail2({ title = "TestRail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.27 23.896 4.5 21.124a.352.352 0 0 1 0-.5l2.772-2.77a.352.352 0 0 1 .5 0l2.772 2.772a.352.352 0 0 1 0 .5l-2.772 2.77a.352.352 0 0 1-.5 0H7.27zm4.48-4.48-2.772-2.772a.352.352 0 0 1 0-.498l2.772-2.772a.352.352 0 0 1 .5 0l2.77 2.772a.352.352 0 0 1 0 .5l-2.77 2.77a.352.352 0 0 1-.499 0zm4.48-4.48-2.77-2.772a.352.352 0 0 1 0-.498l2.771-2.772a.352.352 0 0 1 .5 0l2.77 2.772a.352.352 0 0 1 0 .498l-2.772 2.772a.352.352 0 0 1-.5 0h.002zm-8.876.084-2.772-2.77a.352.352 0 0 1 0-.499l2.772-2.773a.352.352 0 0 1 .5 0l2.772 2.772a.352.352 0 0 1 0 .498l-2.772 2.774a.352.352 0 0 1-.5 0v-.002zm4.48-4.48L9.062 7.77a.352.352 0 0 1 0-.5l2.772-2.772a.352.352 0 0 1 .5 0l2.77 2.772a.352.352 0 0 1 0 .498l-2.77 2.772a.352.352 0 0 1-.499 0v-.002.001zM7.44 6.15 4.666 3.37a.352.352 0 0 1 0-.5L7.44.104a.352.352 0 0 1 .5 0l2.772 2.772a.352.352 0 0 1 0 .5L7.938 6.142a.352.352 0 0 1-.5 0l.002.006v.001z" }) + ] + } + ); +}); + +exports.default = SiTestrail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.d.ts new file mode 100644 index 000000000..9c3531ea0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#65C179"; +declare const SiTestrail: IconType; +export { SiTestrail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.mjs new file mode 100644 index 000000000..504ab16ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTestrail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#65C179"; +const SiTestrail = React.forwardRef(function SiTestrail2({ title = "TestRail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.27 23.896 4.5 21.124a.352.352 0 0 1 0-.5l2.772-2.77a.352.352 0 0 1 .5 0l2.772 2.772a.352.352 0 0 1 0 .5l-2.772 2.77a.352.352 0 0 1-.5 0H7.27zm4.48-4.48-2.772-2.772a.352.352 0 0 1 0-.498l2.772-2.772a.352.352 0 0 1 .5 0l2.77 2.772a.352.352 0 0 1 0 .5l-2.77 2.77a.352.352 0 0 1-.499 0zm4.48-4.48-2.77-2.772a.352.352 0 0 1 0-.498l2.771-2.772a.352.352 0 0 1 .5 0l2.77 2.772a.352.352 0 0 1 0 .498l-2.772 2.772a.352.352 0 0 1-.5 0h.002zm-8.876.084-2.772-2.77a.352.352 0 0 1 0-.499l2.772-2.773a.352.352 0 0 1 .5 0l2.772 2.772a.352.352 0 0 1 0 .498l-2.772 2.774a.352.352 0 0 1-.5 0v-.002zm4.48-4.48L9.062 7.77a.352.352 0 0 1 0-.5l2.772-2.772a.352.352 0 0 1 .5 0l2.77 2.772a.352.352 0 0 1 0 .498l-2.77 2.772a.352.352 0 0 1-.499 0v-.002.001zM7.44 6.15 4.666 3.37a.352.352 0 0 1 0-.5L7.44.104a.352.352 0 0 1 .5 0l2.772 2.772a.352.352 0 0 1 0 .5L7.938 6.142a.352.352 0 0 1-.5 0l.002.006v.001z" }) + ] + } + ); +}); + +export { SiTestrail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTether.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTether.cjs new file mode 100644 index 000000000..c99fb5a80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTether.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#50AF95"; +const SiTether = React__namespace.forwardRef(function SiTether2({ title = "Tether", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.7538 10.5176c0 .6251-2.2379 1.1483-5.2381 1.2812l.0028.0007c-.0848.0064-.5233.0325-1.5012.0325-.7778 0-1.33-.0233-1.5237-.0325-3.0059-.1322-5.2495-.6555-5.2495-1.2819s2.2436-1.149 5.2495-1.2834v2.0442c.1965.0142.7594.0474 1.5372.0474.9334 0 1.4008-.0389 1.4849-.0466V9.2356c2.9994.1337 5.2381.657 5.2381 1.282zm5.19.5466L12.1248 22.389a.1803.1803 0 0 1-.2496 0L.0562 11.0635a.1781.1781 0 0 1-.0382-.2079l4.3762-9.1921a.1767.1767 0 0 1 .1626-.1026h14.8878a.1768.1768 0 0 1 .1612.1032l4.3762 9.1922a.1782.1782 0 0 1-.0382.2079zm-4.478-.4038c0-.8068-2.5515-1.4799-5.9473-1.6369V7.195h4.186V4.4055H6.3076V7.195h4.1852v1.8286c-3.4018.1562-5.9601.83-5.9601 1.6376 0 .8075 2.5583 1.4806 5.9601 1.6376v5.8618h3.025v-5.8639c3.394-.1563 5.948-.8295 5.948-1.6363z" }) + ] + } + ); +}); + +exports.default = SiTether; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTether.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTether.d.ts new file mode 100644 index 000000000..b776a0d54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTether.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#50AF95"; +declare const SiTether: IconType; +export { SiTether as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTether.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTether.mjs new file mode 100644 index 000000000..f0283d7bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTether.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#50AF95"; +const SiTether = React.forwardRef(function SiTether2({ title = "Tether", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.7538 10.5176c0 .6251-2.2379 1.1483-5.2381 1.2812l.0028.0007c-.0848.0064-.5233.0325-1.5012.0325-.7778 0-1.33-.0233-1.5237-.0325-3.0059-.1322-5.2495-.6555-5.2495-1.2819s2.2436-1.149 5.2495-1.2834v2.0442c.1965.0142.7594.0474 1.5372.0474.9334 0 1.4008-.0389 1.4849-.0466V9.2356c2.9994.1337 5.2381.657 5.2381 1.282zm5.19.5466L12.1248 22.389a.1803.1803 0 0 1-.2496 0L.0562 11.0635a.1781.1781 0 0 1-.0382-.2079l4.3762-9.1921a.1767.1767 0 0 1 .1626-.1026h14.8878a.1768.1768 0 0 1 .1612.1032l4.3762 9.1922a.1782.1782 0 0 1-.0382.2079zm-4.478-.4038c0-.8068-2.5515-1.4799-5.9473-1.6369V7.195h4.186V4.4055H6.3076V7.195h4.1852v1.8286c-3.4018.1562-5.9601.83-5.9601 1.6376 0 .8075 2.5583 1.4806 5.9601 1.6376v5.8618h3.025v-5.8639c3.394-.1563 5.948-.8295 5.948-1.6363z" }) + ] + } + ); +}); + +export { SiTether as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.cjs new file mode 100644 index 000000000..43245e53b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDA44"; +const SiTextpattern = React__namespace.forwardRef(function SiTextpattern2({ title = "Textpattern", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.638 10.8h-.559s-.918-.776-1.872-1.692-1.207-1.387-1.207-1.387v-.559l7.162-7.162h.559s.744.61 1.631 1.448 1.448 1.63 1.448 1.63v.559l-2.193 2.193 4.397 4.117s2.431-2.431 3.272-3.271 1.736-2.719 1.736-2.719l2.346-2.346.61-.413 3.032 3.033-.414.611-2.344 2.344s-1.606.684-2.718 1.737-3.34 3.34-3.34 3.34 1.933 2.146 4.057 4.27c2.146 2.146 4.484 4.271 4.651 4.426.334.309-.347 1.373-.906 2.027s-.857.697-1.247.901c-.39.205-.836-.051-.836-.051s-2.056-2.261-4.082-4.304c-1.975-1.991-4.559-4.349-4.559-4.349s-6.646 6.645-7.079 7.078c-.433.434-.597 1.089-.597 1.089l-.649.65s-.701-.396-1.553-1.255-1.182-1.487-1.182-1.487l.646-.646s.598-.084 1.088-.597 7.01-7.009 7.01-7.009l-4.119-4.398zm17.267 13.04c-.02-.019-.034-.033 0 0zm-3.456-15.084.453-.453c.86-.86 3.194-1.392 3.194-1.392l2.26-2.26.258-.381-2.682-2.682-.381.258-2.261 2.261s-.942 1.925-1.802 2.784l-.423.423-.03.03-12.887 12.887c-.491.492-1.147.655-1.147.655l-.409.41s.551.787 1.004 1.24c.453.454.765.647.765.647l.462-.475s.246-.573.737-1.065zm-4.656 1.406-3.798-3.577s-.626.197-1.088.815-.488 1.125-.066 1.547c.423.422 3.085 3.082 3.085 3.082zm2.642 2.818s-.714.181-1.097.746-.359.927.052 1.339c.412.412 2.378 2.199 3.888 3.718s3.746 3.864 4.004 4.04c.26.177.26.177.26.177s.389-.303.668-.702.627-.981.462-1.132c-.166-.152-1.828-1.669-4.027-3.81s-4.21-4.376-4.21-4.376zm-15.136-5.693v.339s.369.523 1.36 1.514 1.514 1.36 1.514 1.36h.339l-.091-.257s-.766-.399-1.615-1.249c-.85-.85-1.25-1.616-1.25-1.616s2.058-2.009 3.442-3.393c1.385-1.385 3.379-3.428 3.379-3.428s.737.429 1.587 1.279 1.279 1.586 1.279 1.586l.257.091v-.339s-.369-.523-1.36-1.514-1.514-1.36-1.514-1.36h-.339z" }) + ] + } + ); +}); + +exports.default = SiTextpattern; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.d.ts new file mode 100644 index 000000000..7bad2bdfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDA44"; +declare const SiTextpattern: IconType; +export { SiTextpattern as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.mjs new file mode 100644 index 000000000..2f08a1c28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTextpattern.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDA44"; +const SiTextpattern = React.forwardRef(function SiTextpattern2({ title = "Textpattern", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.638 10.8h-.559s-.918-.776-1.872-1.692-1.207-1.387-1.207-1.387v-.559l7.162-7.162h.559s.744.61 1.631 1.448 1.448 1.63 1.448 1.63v.559l-2.193 2.193 4.397 4.117s2.431-2.431 3.272-3.271 1.736-2.719 1.736-2.719l2.346-2.346.61-.413 3.032 3.033-.414.611-2.344 2.344s-1.606.684-2.718 1.737-3.34 3.34-3.34 3.34 1.933 2.146 4.057 4.27c2.146 2.146 4.484 4.271 4.651 4.426.334.309-.347 1.373-.906 2.027s-.857.697-1.247.901c-.39.205-.836-.051-.836-.051s-2.056-2.261-4.082-4.304c-1.975-1.991-4.559-4.349-4.559-4.349s-6.646 6.645-7.079 7.078c-.433.434-.597 1.089-.597 1.089l-.649.65s-.701-.396-1.553-1.255-1.182-1.487-1.182-1.487l.646-.646s.598-.084 1.088-.597 7.01-7.009 7.01-7.009l-4.119-4.398zm17.267 13.04c-.02-.019-.034-.033 0 0zm-3.456-15.084.453-.453c.86-.86 3.194-1.392 3.194-1.392l2.26-2.26.258-.381-2.682-2.682-.381.258-2.261 2.261s-.942 1.925-1.802 2.784l-.423.423-.03.03-12.887 12.887c-.491.492-1.147.655-1.147.655l-.409.41s.551.787 1.004 1.24c.453.454.765.647.765.647l.462-.475s.246-.573.737-1.065zm-4.656 1.406-3.798-3.577s-.626.197-1.088.815-.488 1.125-.066 1.547c.423.422 3.085 3.082 3.085 3.082zm2.642 2.818s-.714.181-1.097.746-.359.927.052 1.339c.412.412 2.378 2.199 3.888 3.718s3.746 3.864 4.004 4.04c.26.177.26.177.26.177s.389-.303.668-.702.627-.981.462-1.132c-.166-.152-1.828-1.669-4.027-3.81s-4.21-4.376-4.21-4.376zm-15.136-5.693v.339s.369.523 1.36 1.514 1.514 1.36 1.514 1.36h.339l-.091-.257s-.766-.399-1.615-1.249c-.85-.85-1.25-1.616-1.25-1.616s2.058-2.009 3.442-3.393c1.385-1.385 3.379-3.428 3.379-3.428s.737.429 1.587 1.279 1.279 1.586 1.279 1.586l.257.091v-.339s-.369-.523-1.36-1.514-1.514-1.36-1.514-1.36h-.339z" }) + ] + } + ); +}); + +export { SiTextpattern as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.cjs new file mode 100644 index 000000000..8130d2437 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiTextual = React__namespace.forwardRef(function SiTextual2({ title = "Textual", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.746 2.731H24l-1.722 3.873-3.143 1.768H17l-5.182 10.552-3.128 2.345H5.283l.747-11.216H1.67L0 6.296l2.511-1.884h8.246zM2.709 5.006l-1.45 1.088h8.952l.249-1.088zM.825 6.69l1.23 2.77h4.611l-.747 11.215h.941L10.074 6.69zm7.567 13.985 5.232-12.897h5.24l1.23-2.77H11.07L7.469 20.675zm14.02-17.35h-8.508l-1.935 1.087h8.505z" }) + ] + } + ); +}); + +exports.default = SiTextual; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.d.ts new file mode 100644 index 000000000..e65b54185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiTextual: IconType; +export { SiTextual as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.mjs new file mode 100644 index 000000000..b72a5491b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTextual.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiTextual = React.forwardRef(function SiTextual2({ title = "Textual", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.746 2.731H24l-1.722 3.873-3.143 1.768H17l-5.182 10.552-3.128 2.345H5.283l.747-11.216H1.67L0 6.296l2.511-1.884h8.246zM2.709 5.006l-1.45 1.088h8.952l.249-1.088zM.825 6.69l1.23 2.77h4.611l-.747 11.215h.941L10.074 6.69zm7.567 13.985 5.232-12.897h5.24l1.23-2.77H11.07L7.469 20.675zm14.02-17.35h-8.508l-1.935 1.087h8.505z" }) + ] + } + ); +}); + +export { SiTextual as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTga.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTga.cjs new file mode 100644 index 000000000..a187b1d24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTga.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0014FF"; +const SiTga = React__namespace.forwardRef(function SiTga2({ title = "TGA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.878 12.482c-.043.03-.06.038-.074.051-.649.647-1.298 1.294-1.943 1.945-.04.04-.061.119-.061.18-.005.602-.003 1.203-.003 1.805 0 .035.007.07.013.13.303-.295.584-.575.873-.846.106-.1.18-.207.226-.346.256-.778.519-1.553.779-2.33.062-.186.12-.374.19-.589m-4.345 1.916c.068-.061.105-.092.139-.126l2.001-1.95c1.023-.994 2.047-1.987 3.068-2.982a.44.44 0 0 0 .108-.183c.234-.78.463-1.562.693-2.343.044-.148.084-.298.135-.477-.047.033-.064.041-.077.054-.588.584-1.178 1.168-1.765 1.753-.682.682-1.363 1.367-2.045 2.05-.723.724-1.448 1.446-2.169 2.172a.3.3 0 0 0-.079.19c-.008.456-.007.912-.009 1.368v.474M23.543.024 23.512 0c-.228.232-.454.465-.683.695-.946.948-1.891 1.896-2.839 2.842-1.058 1.056-2.12 2.108-3.177 3.164a1195.962 1195.962 0 0 0-3.466 3.473.3.3 0 0 0-.073.19c-.01.558-.01 1.117-.013 1.675 0 .042.006.083.01.144.04-.033.068-.05.09-.073 1.04-1.02 2.078-2.04 3.116-3.062l3.432-3.384c.898-.885 1.799-1.77 2.695-2.657a.45.45 0 0 0 .11-.181c.15-.492.293-.985.438-1.478l.39-1.324M4.148 12.48c.013.064.017.101.029.135.327.96.653 1.92.985 2.877a.633.633 0 0 0 .146.227c.3.303.607.6.914.897.11.107.227.207.355.323-.23.225-.427.423-.63.617-.06.057-.081.107-.048.19.115.287.223.578.334.868.054.143.11.285.166.427l.06.035 1.1-1.173a12206.887 12206.887 0 0 0 1.221 1.284c-.006.007-.027.033-.05.056-.515.513-1.03 1.029-1.547 1.54-.062.062-.073.111-.038.19.061.137.11.28.166.419l.352.879 2.158-2.125 1.18 1.208-2.634 2.636c.032.003.054.008.076.008.621 0 1.243.002 1.865-.003a.27.27 0 0 0 .163-.072c.16-.148.314-.303.47-.456a1578.776 1578.776 0 0 0 1.117-1.1c.042.04.078.07.112.103.488.48.974.96 1.468 1.434.055.053.15.09.227.09.544.008 1.088.005 1.632.005h.13L4.149 12.48m12.148 9.842c.031-.04.043-.05.047-.061.166-.425.327-.852.497-1.275.038-.093-.016-.133-.067-.183-1.235-1.23-2.47-2.46-3.703-3.691-1.59-1.588-3.177-3.179-4.766-4.768C6.526 10.566 4.747 8.79 2.97 7.011c-.19-.19-.374-.389-.56-.584l-.042.03c.009.045.013.091.026.135.242.824.482 1.648.73 2.47.041.134.09.287.184.383.703.71 1.418 1.41 2.13 2.113 1.056 1.043 2.112 2.088 3.17 3.13a.32.32 0 0 1 .105.255c-.007.427-.006.855-.007 1.282v.5c.015.01.031.018.047.027l.917-.992c.068.058.098.08.125.107.356.351.71.705 1.07 1.052a.35.35 0 0 1 .118.28c-.006.524-.004 1.049-.004 1.573 0 .047.004.093.008.175a2221.442 2221.442 0 0 1 .96-.928c.027.013.037.015.044.022.412.405.824.809 1.233 1.217a.222.222 0 0 1 .058.14c.002.302-.005.603-.006.903-.002.26 0 .518 0 .818l.966-.933 2.054 2.136m1.258-3.252-1.059-1.138a1624.888 1624.888 0 0 1-.942.91v-.207c0-.48.002-.96-.003-1.442 0-.063-.013-.144-.052-.185-.406-.431-.818-.856-1.242-1.295l-.984.953v-.192c0-.52.002-1.04-.003-1.559a.29.29 0 0 0-.062-.181c-.39-.42-.787-.832-1.215-1.281l-.95 1.037a6.332 6.332 0 0 0-.056-.037c-.002-.045-.007-.09-.007-.135 0-.549.006-1.098-.002-1.647a.377.377 0 0 0-.097-.238 1129.433 1129.433 0 0 0-3.293-3.275A15517.212 15517.212 0 0 0 2.77 4.38c-.451-.447-.908-.89-1.355-1.342a.67.67 0 0 1-.16-.268C.988 1.89.73 1.004.47.121.462.09.462.058.458.027L.495 0C.66.174.823.353.993.523c1.696 1.695 3.394 3.387 5.09 5.082 1.531 1.53 3.06 3.063 4.591 4.594 1.38 1.38 2.762 2.758 4.142 4.137 1.079 1.077 2.157 2.154 3.233 3.235.035.035.065.115.05.156-.16.432-.33.86-.497 1.29-.003.008-.012.014-.048.053" }) + ] + } + ); +}); + +exports.default = SiTga; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTga.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTga.d.ts new file mode 100644 index 000000000..619bddb95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTga.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0014FF"; +declare const SiTga: IconType; +export { SiTga as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTga.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTga.mjs new file mode 100644 index 000000000..6fa7c0b43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTga.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0014FF"; +const SiTga = React.forwardRef(function SiTga2({ title = "TGA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.878 12.482c-.043.03-.06.038-.074.051-.649.647-1.298 1.294-1.943 1.945-.04.04-.061.119-.061.18-.005.602-.003 1.203-.003 1.805 0 .035.007.07.013.13.303-.295.584-.575.873-.846.106-.1.18-.207.226-.346.256-.778.519-1.553.779-2.33.062-.186.12-.374.19-.589m-4.345 1.916c.068-.061.105-.092.139-.126l2.001-1.95c1.023-.994 2.047-1.987 3.068-2.982a.44.44 0 0 0 .108-.183c.234-.78.463-1.562.693-2.343.044-.148.084-.298.135-.477-.047.033-.064.041-.077.054-.588.584-1.178 1.168-1.765 1.753-.682.682-1.363 1.367-2.045 2.05-.723.724-1.448 1.446-2.169 2.172a.3.3 0 0 0-.079.19c-.008.456-.007.912-.009 1.368v.474M23.543.024 23.512 0c-.228.232-.454.465-.683.695-.946.948-1.891 1.896-2.839 2.842-1.058 1.056-2.12 2.108-3.177 3.164a1195.962 1195.962 0 0 0-3.466 3.473.3.3 0 0 0-.073.19c-.01.558-.01 1.117-.013 1.675 0 .042.006.083.01.144.04-.033.068-.05.09-.073 1.04-1.02 2.078-2.04 3.116-3.062l3.432-3.384c.898-.885 1.799-1.77 2.695-2.657a.45.45 0 0 0 .11-.181c.15-.492.293-.985.438-1.478l.39-1.324M4.148 12.48c.013.064.017.101.029.135.327.96.653 1.92.985 2.877a.633.633 0 0 0 .146.227c.3.303.607.6.914.897.11.107.227.207.355.323-.23.225-.427.423-.63.617-.06.057-.081.107-.048.19.115.287.223.578.334.868.054.143.11.285.166.427l.06.035 1.1-1.173a12206.887 12206.887 0 0 0 1.221 1.284c-.006.007-.027.033-.05.056-.515.513-1.03 1.029-1.547 1.54-.062.062-.073.111-.038.19.061.137.11.28.166.419l.352.879 2.158-2.125 1.18 1.208-2.634 2.636c.032.003.054.008.076.008.621 0 1.243.002 1.865-.003a.27.27 0 0 0 .163-.072c.16-.148.314-.303.47-.456a1578.776 1578.776 0 0 0 1.117-1.1c.042.04.078.07.112.103.488.48.974.96 1.468 1.434.055.053.15.09.227.09.544.008 1.088.005 1.632.005h.13L4.149 12.48m12.148 9.842c.031-.04.043-.05.047-.061.166-.425.327-.852.497-1.275.038-.093-.016-.133-.067-.183-1.235-1.23-2.47-2.46-3.703-3.691-1.59-1.588-3.177-3.179-4.766-4.768C6.526 10.566 4.747 8.79 2.97 7.011c-.19-.19-.374-.389-.56-.584l-.042.03c.009.045.013.091.026.135.242.824.482 1.648.73 2.47.041.134.09.287.184.383.703.71 1.418 1.41 2.13 2.113 1.056 1.043 2.112 2.088 3.17 3.13a.32.32 0 0 1 .105.255c-.007.427-.006.855-.007 1.282v.5c.015.01.031.018.047.027l.917-.992c.068.058.098.08.125.107.356.351.71.705 1.07 1.052a.35.35 0 0 1 .118.28c-.006.524-.004 1.049-.004 1.573 0 .047.004.093.008.175a2221.442 2221.442 0 0 1 .96-.928c.027.013.037.015.044.022.412.405.824.809 1.233 1.217a.222.222 0 0 1 .058.14c.002.302-.005.603-.006.903-.002.26 0 .518 0 .818l.966-.933 2.054 2.136m1.258-3.252-1.059-1.138a1624.888 1624.888 0 0 1-.942.91v-.207c0-.48.002-.96-.003-1.442 0-.063-.013-.144-.052-.185-.406-.431-.818-.856-1.242-1.295l-.984.953v-.192c0-.52.002-1.04-.003-1.559a.29.29 0 0 0-.062-.181c-.39-.42-.787-.832-1.215-1.281l-.95 1.037a6.332 6.332 0 0 0-.056-.037c-.002-.045-.007-.09-.007-.135 0-.549.006-1.098-.002-1.647a.377.377 0 0 0-.097-.238 1129.433 1129.433 0 0 0-3.293-3.275A15517.212 15517.212 0 0 0 2.77 4.38c-.451-.447-.908-.89-1.355-1.342a.67.67 0 0 1-.16-.268C.988 1.89.73 1.004.47.121.462.09.462.058.458.027L.495 0C.66.174.823.353.993.523c1.696 1.695 3.394 3.387 5.09 5.082 1.531 1.53 3.06 3.063 4.591 4.594 1.38 1.38 2.762 2.758 4.142 4.137 1.079 1.077 2.157 2.154 3.233 3.235.035.035.065.115.05.156-.16.432-.33.86-.497 1.29-.003.008-.012.014-.048.053" }) + ] + } + ); +}); + +export { SiTga as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.cjs new file mode 100644 index 000000000..4f9f7a505 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFBC00"; +const SiThangs = React__namespace.forwardRef(function SiThangs2({ title = "Thangs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.18 13.902a1.902 1.902 0 1 1 0-3.804 1.902 1.902 0 0 1 0 3.804m0-5.722A3.82 3.82 0 0 0 16.36 12v3.82h3.82a3.82 3.82 0 1 0 0-7.64m-8.656 5.722A1.907 1.907 0 0 1 9.611 12c0-1.05.857-1.902 1.913-1.902s1.913.852 1.913 1.902c0 1.05-.857 1.902-1.913 1.902m-7.683 0A1.907 1.907 0 0 1 1.928 12c0-1.05.857-1.902 1.913-1.902 1.057 0 1.913.852 1.913 1.902 0 1.05-.856 1.902-1.913 1.902m11.514-2.107-.002-.032a3.76 3.76 0 0 0-.04-.37l-.004-.019a3.693 3.693 0 0 0-.081-.373V11a3.836 3.836 0 0 0-3.704-2.82H3.84a3.833 3.833 0 0 0-3.794 3.254l-.001.008c-.018.118-.03.236-.036.357l-.002.02v.016C.006 11.89 0 11.945 0 12c0 .07.007.137.01.206l.002.032c.008.124.021.248.041.37l.003.018a3.833 3.833 0 0 0 3.786 3.194h11.523V12c0-.07-.006-.137-.01-.205" }) + ] + } + ); +}); + +exports.default = SiThangs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.d.ts new file mode 100644 index 000000000..976c2b2fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFBC00"; +declare const SiThangs: IconType; +export { SiThangs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.mjs new file mode 100644 index 000000000..34952a536 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThangs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFBC00"; +const SiThangs = React.forwardRef(function SiThangs2({ title = "Thangs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.18 13.902a1.902 1.902 0 1 1 0-3.804 1.902 1.902 0 0 1 0 3.804m0-5.722A3.82 3.82 0 0 0 16.36 12v3.82h3.82a3.82 3.82 0 1 0 0-7.64m-8.656 5.722A1.907 1.907 0 0 1 9.611 12c0-1.05.857-1.902 1.913-1.902s1.913.852 1.913 1.902c0 1.05-.857 1.902-1.913 1.902m-7.683 0A1.907 1.907 0 0 1 1.928 12c0-1.05.857-1.902 1.913-1.902 1.057 0 1.913.852 1.913 1.902 0 1.05-.856 1.902-1.913 1.902m11.514-2.107-.002-.032a3.76 3.76 0 0 0-.04-.37l-.004-.019a3.693 3.693 0 0 0-.081-.373V11a3.836 3.836 0 0 0-3.704-2.82H3.84a3.833 3.833 0 0 0-3.794 3.254l-.001.008c-.018.118-.03.236-.036.357l-.002.02v.016C.006 11.89 0 11.945 0 12c0 .07.007.137.01.206l.002.032c.008.124.021.248.041.37l.003.018a3.833 3.833 0 0 0 3.786 3.194h11.523V12c0-.07-.006-.137-.01-.205" }) + ] + } + ); +}); + +export { SiThangs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.cjs new file mode 100644 index 000000000..aa3de485f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D41FF"; +const SiThanos = React__namespace.forwardRef(function SiThanos2({ title = "Thanos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h16.998A7.002 7.002 0 0 0 24 16.998V0Zm18.707 15.129h.896v.895h-.896zm-.281-3.857h1.455v1.456h-1.455Zm-.224-3.801h1.903v1.905h-1.903Zm-3.073 11.234h.895v.896h-.896zm-.28-3.902h1.456v1.457h-1.456zm-.224-3.755h1.906v1.904h-1.904Zm.224-1.897V7.696h1.456V9.15Zm-6.874 9.554h.896v.896h-.896Zm-.28-3.856h1.456v1.454H7.695Zm.28-2.401v-.896h.896v.896zm-.28-4.752h1.456V9.15H7.695ZM4.4 18.706h.897v.895h-.897Zm0-3.577h.897v.895h-.897Zm-.28-3.857h1.455v1.456H4.12Zm-.224-3.801h1.904v1.905H3.895Zm-.837-4.413H20.94v3.577h-7.153v14.307h-3.576V6.635H3.058Z" }) + ] + } + ); +}); + +exports.default = SiThanos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.d.ts new file mode 100644 index 000000000..678b79987 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D41FF"; +declare const SiThanos: IconType; +export { SiThanos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.mjs new file mode 100644 index 000000000..68b1b0038 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThanos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D41FF"; +const SiThanos = React.forwardRef(function SiThanos2({ title = "Thanos", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h16.998A7.002 7.002 0 0 0 24 16.998V0Zm18.707 15.129h.896v.895h-.896zm-.281-3.857h1.455v1.456h-1.455Zm-.224-3.801h1.903v1.905h-1.903Zm-3.073 11.234h.895v.896h-.896zm-.28-3.902h1.456v1.457h-1.456zm-.224-3.755h1.906v1.904h-1.904Zm.224-1.897V7.696h1.456V9.15Zm-6.874 9.554h.896v.896h-.896Zm-.28-3.856h1.456v1.454H7.695Zm.28-2.401v-.896h.896v.896zm-.28-4.752h1.456V9.15H7.695ZM4.4 18.706h.897v.895h-.897Zm0-3.577h.897v.895h-.897Zm-.28-3.857h1.455v1.456H4.12Zm-.224-3.801h1.904v1.905H3.895Zm-.837-4.413H20.94v3.577h-7.153v14.307h-3.576V6.635H3.058Z" }) + ] + } + ); +}); + +export { SiThanos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.cjs new file mode 100644 index 000000000..35748eacf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00BCB4"; +const SiThealgorithms = React__namespace.forwardRef(function SiThealgorithms2({ title = "The Algorithms", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.226,19.857H1.353l1.79-4.225h4.812L13.308,3.21H7.564l-4.226,9.82h2.587c.18.3.511.51.887.51a1.04,1.04,0,0,0,1.038-1.037c0-.572-.467-1.023-1.038-1.023-.421,0-.767.24-.932.602H4.647l3.503-7.94h3.76L7.383,14.684l-4.766.03L0,20.79h8.842L10,18.263h3.835l1.278,2.526H24L15.985,3.211Zm2.27-2.586,1.384-3.023,1.503,3.023zm5.218,2.691-.872-1.759h2.737c.18.33.526.556.917.556a1.04,1.04,0,0,0,1.038-1.037,1.04,1.04,0,0,0-1.038-1.038c-.42,0-.782.256-.947.617H14.42l-2.09-4.06,1.534-3.369,1.729,3.519h.812c.165.346.526.601.932.601a1.04,1.04,0,0,0,1.038-1.037,1.04,1.04,0,0,0-1.038-1.038c-.436,0-.812.271-.962.662h-.3l-1.79-3.64,1.699-3.728,6.677,14.751Z" }) + ] + } + ); +}); + +exports.default = SiThealgorithms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.d.ts new file mode 100644 index 000000000..176f0174b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00BCB4"; +declare const SiThealgorithms: IconType; +export { SiThealgorithms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.mjs new file mode 100644 index 000000000..e912faf06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThealgorithms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00BCB4"; +const SiThealgorithms = React.forwardRef(function SiThealgorithms2({ title = "The Algorithms", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.226,19.857H1.353l1.79-4.225h4.812L13.308,3.21H7.564l-4.226,9.82h2.587c.18.3.511.51.887.51a1.04,1.04,0,0,0,1.038-1.037c0-.572-.467-1.023-1.038-1.023-.421,0-.767.24-.932.602H4.647l3.503-7.94h3.76L7.383,14.684l-4.766.03L0,20.79h8.842L10,18.263h3.835l1.278,2.526H24L15.985,3.211Zm2.27-2.586,1.384-3.023,1.503,3.023zm5.218,2.691-.872-1.759h2.737c.18.33.526.556.917.556a1.04,1.04,0,0,0,1.038-1.037,1.04,1.04,0,0,0-1.038-1.038c-.42,0-.782.256-.947.617H14.42l-2.09-4.06,1.534-3.369,1.729,3.519h.812c.165.346.526.601.932.601a1.04,1.04,0,0,0,1.038-1.037,1.04,1.04,0,0,0-1.038-1.038c-.436,0-.812.271-.962.662h-.3l-1.79-3.64,1.699-3.728,6.677,14.751Z" }) + ] + } + ); +}); + +export { SiThealgorithms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.cjs new file mode 100644 index 000000000..793d0e39b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTheboringcompany = React__namespace.forwardRef(function SiTheboringcompany2({ title = "The Boring Company", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 6.959v.463h.424v1.625h.57V7.422h.445v-.463H0zm1.643 0v2.088h.57v-.842h.742v.842h.57V6.959h-.57v.781h-.742V6.96h-.57zm2.287 0v2.088h1.199V8.54h-.621v-.295h.596v-.508h-.596v-.312h.62v-.467H3.93zm17.91 2.73c-1.31 0-2.22.902-2.22 2.217 0 1.316.932 2.211 2.208 2.211 1.522 0 2.301-1.167 2.154-2.492H21.83v.887h.867c-.071.455-.425.61-.87.61-.66 0-1.02-.462-1.02-1.21-.012-.742.427-1.236 1.025-1.236.41 0 .73.216.893.66l1.064-.457c-.345-.759-1.026-1.19-1.95-1.19zm-15.877.012c-1.375 0-2.313.99-2.313 2.21 0 1.219.974 2.206 2.313 2.206 1.339 0 2.31-.987 2.31-2.207 0-1.22-.935-2.209-2.31-2.209zm-5.875.13v4.171h1.687c1.153 0 1.516-.615 1.516-1.268 0-.494-.275-.86-.824-.986.278-.147.43-.473.43-.853 0-.57-.317-1.065-1.07-1.065H.086zm8.816 0v4.171h1.123v-1.545l.993 1.545h1.373v-.047l-1.274-1.66c.584-.133.889-.601.889-1.186 0-.688-.49-1.279-1.24-1.279H8.904zm3.909 0v4.171h1.105V9.83h-1.105zm1.931 0v4.171h1.125v-2.473l1.938 2.473h1.113V9.83h-1.113v2.465L15.869 9.83h-1.125zm-13.533.839h.187c.238 0 .457.114.457.39 0 .27-.22.391-.457.391h-.187v-.781zm8.816.021h.307c.265 0 .521.216.521.48 0 .266-.201.481-.521.481h-.307v-.96zm-8.816 1.577h.25c.414-.002.693.138.693.421 0 .271-.21.412-.513.416l-.43.006v-.843zm8.156 2.552c-.656 0-1.103.498-1.103 1.112 0 .613.464 1.109 1.103 1.109.187 0 .358-.042.508-.117v-.658h-.037a.54.54 0 0 1-.44.214.54.54 0 0 1-.548-.548c0-.304.222-.551.548-.551a.54.54 0 0 1 .444.217h.033v-.662a1.137 1.137 0 0 0-.508-.116zm1.918 0c-.692 0-1.164.498-1.164 1.112 0 .613.49 1.109 1.164 1.109.674 0 1.162-.496 1.162-1.11 0-.613-.47-1.11-1.162-1.11zm1.715.045-.352 2.117h.57l.184-1.103.422 1.103h.285l.422-1.103.182 1.103h.57l-.351-2.117-.563.004-.402 1.05-.403-1.05-.564-.004zm2.57 0v2.112h.592v-.68h.324c.504 0 .717-.317.717-.71 0-.388-.21-.722-.822-.722h-.81zm2.356 0-.81 2.117h.626l.113-.34h.75l.114.34h.629l-.81-2.117h-.612zm1.594 0v2.112h.568V15.74l.97 1.237h.561v-2.112h-.562v1.244l-.97-1.244h-.567zm2.218 0 .785 1.114v.998h.567v-.989l.79-1.123h-.689l-.38.574-.381-.574h-.692zm-5.576.485h.207c.31 0 .318.478-.014.478h-.193v-.478zm-4.877.03c.337 0 .565.248.565.552a.547.547 0 0 1-.565.548.548.548 0 0 1-.566-.548c0-.304.23-.551.566-.551zm6.945.198.211.602h-.42l.21-.602z" }) + ] + } + ); +}); + +exports.default = SiTheboringcompany; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.d.ts new file mode 100644 index 000000000..65a5897e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTheboringcompany: IconType; +export { SiTheboringcompany as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.mjs new file mode 100644 index 000000000..fb223f5cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheboringcompany.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTheboringcompany = React.forwardRef(function SiTheboringcompany2({ title = "The Boring Company", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 6.959v.463h.424v1.625h.57V7.422h.445v-.463H0zm1.643 0v2.088h.57v-.842h.742v.842h.57V6.959h-.57v.781h-.742V6.96h-.57zm2.287 0v2.088h1.199V8.54h-.621v-.295h.596v-.508h-.596v-.312h.62v-.467H3.93zm17.91 2.73c-1.31 0-2.22.902-2.22 2.217 0 1.316.932 2.211 2.208 2.211 1.522 0 2.301-1.167 2.154-2.492H21.83v.887h.867c-.071.455-.425.61-.87.61-.66 0-1.02-.462-1.02-1.21-.012-.742.427-1.236 1.025-1.236.41 0 .73.216.893.66l1.064-.457c-.345-.759-1.026-1.19-1.95-1.19zm-15.877.012c-1.375 0-2.313.99-2.313 2.21 0 1.219.974 2.206 2.313 2.206 1.339 0 2.31-.987 2.31-2.207 0-1.22-.935-2.209-2.31-2.209zm-5.875.13v4.171h1.687c1.153 0 1.516-.615 1.516-1.268 0-.494-.275-.86-.824-.986.278-.147.43-.473.43-.853 0-.57-.317-1.065-1.07-1.065H.086zm8.816 0v4.171h1.123v-1.545l.993 1.545h1.373v-.047l-1.274-1.66c.584-.133.889-.601.889-1.186 0-.688-.49-1.279-1.24-1.279H8.904zm3.909 0v4.171h1.105V9.83h-1.105zm1.931 0v4.171h1.125v-2.473l1.938 2.473h1.113V9.83h-1.113v2.465L15.869 9.83h-1.125zm-13.533.839h.187c.238 0 .457.114.457.39 0 .27-.22.391-.457.391h-.187v-.781zm8.816.021h.307c.265 0 .521.216.521.48 0 .266-.201.481-.521.481h-.307v-.96zm-8.816 1.577h.25c.414-.002.693.138.693.421 0 .271-.21.412-.513.416l-.43.006v-.843zm8.156 2.552c-.656 0-1.103.498-1.103 1.112 0 .613.464 1.109 1.103 1.109.187 0 .358-.042.508-.117v-.658h-.037a.54.54 0 0 1-.44.214.54.54 0 0 1-.548-.548c0-.304.222-.551.548-.551a.54.54 0 0 1 .444.217h.033v-.662a1.137 1.137 0 0 0-.508-.116zm1.918 0c-.692 0-1.164.498-1.164 1.112 0 .613.49 1.109 1.164 1.109.674 0 1.162-.496 1.162-1.11 0-.613-.47-1.11-1.162-1.11zm1.715.045-.352 2.117h.57l.184-1.103.422 1.103h.285l.422-1.103.182 1.103h.57l-.351-2.117-.563.004-.402 1.05-.403-1.05-.564-.004zm2.57 0v2.112h.592v-.68h.324c.504 0 .717-.317.717-.71 0-.388-.21-.722-.822-.722h-.81zm2.356 0-.81 2.117h.626l.113-.34h.75l.114.34h.629l-.81-2.117h-.612zm1.594 0v2.112h.568V15.74l.97 1.237h.561v-2.112h-.562v1.244l-.97-1.244h-.567zm2.218 0 .785 1.114v.998h.567v-.989l.79-1.123h-.689l-.38.574-.381-.574h-.692zm-5.576.485h.207c.31 0 .318.478-.014.478h-.193v-.478zm-4.877.03c.337 0 .565.248.565.552a.547.547 0 0 1-.565.548.548.548 0 0 1-.566-.548c0-.304.23-.551.566-.551zm6.945.198.211.602h-.42l.21-.602z" }) + ] + } + ); +}); + +export { SiTheboringcompany as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.cjs new file mode 100644 index 000000000..2498be6db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D8352A"; +const SiTheconversation = React__namespace.forwardRef(function SiTheconversation2({ title = "The Conversation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.996 10.543c-.131-4.91-4.289-8.773-9.2-8.773H9.005a8.997 8.997 0 0 0-5.957 15.746L1.05 22.23l4.942-2.98c.95.36 1.964.524 3.012.524h6.024c5.04 0 9.099-4.156 8.969-9.23zm-8.937 5.958H9.07c-2.587 0-5.205-2.03-5.696-4.583a5.724 5.724 0 0 1 5.63-6.874h5.99c2.586 0 5.205 2.03 5.696 4.582.688 3.667-2.095 6.875-5.63 6.875z" }) + ] + } + ); +}); + +exports.default = SiTheconversation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.d.ts new file mode 100644 index 000000000..2a87848de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D8352A"; +declare const SiTheconversation: IconType; +export { SiTheconversation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.mjs new file mode 100644 index 000000000..d2d9a887c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheconversation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D8352A"; +const SiTheconversation = React.forwardRef(function SiTheconversation2({ title = "The Conversation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.996 10.543c-.131-4.91-4.289-8.773-9.2-8.773H9.005a8.997 8.997 0 0 0-5.957 15.746L1.05 22.23l4.942-2.98c.95.36 1.964.524 3.012.524h6.024c5.04 0 9.099-4.156 8.969-9.23zm-8.937 5.958H9.07c-2.587 0-5.205-2.03-5.696-4.583a5.724 5.724 0 0 1 5.63-6.874h5.99c2.586 0 5.205 2.03 5.696 4.582.688 3.667-2.095 6.875-5.63 6.875z" }) + ] + } + ); +}); + +export { SiTheconversation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.cjs new file mode 100644 index 000000000..45ff0b766 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D31F3C"; +const SiThefinals = React__namespace.forwardRef(function SiThefinals2({ title = "THE FINALS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.523 19.319H24L14.965 6.295c-.626-.904-1.51-1.614-2.847-1.614-1.38 0-2.264.775-2.889 1.614L0 19.319h5.261l3.372-4.759 3.256 4.759h5.478l-5.934-8.712.599-.846 6.491 9.558Zm0 0" }) + ] + } + ); +}); + +exports.default = SiThefinals; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.d.ts new file mode 100644 index 000000000..5b3a1ffc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D31F3C"; +declare const SiThefinals: IconType; +export { SiThefinals as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.mjs new file mode 100644 index 000000000..e90d80301 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThefinals.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D31F3C"; +const SiThefinals = React.forwardRef(function SiThefinals2({ title = "THE FINALS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.523 19.319H24L14.965 6.295c-.626-.904-1.51-1.614-2.847-1.614-1.38 0-2.264.775-2.889 1.614L0 19.319h5.261l3.372-4.759 3.256 4.759h5.478l-5.934-8.712.599-.846 6.491 9.558Zm0 0" }) + ] + } + ); +}); + +export { SiThefinals as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.cjs new file mode 100644 index 000000000..97373ff1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#052962"; +const SiTheguardian = React__namespace.forwardRef(function SiTheguardian2({ title = "The Guardian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.272 8.129-1.16.207V8.4l.32.127v3.577l-.28.16v.103h1.52v-.103l-.264-.145V9.961a.64.64 0 0 1 .4-.129c.24 0 .368.112.368.408v1.871l-.272.145v.111h1.512v-.111l-.271-.145v-1.863c0-.536-.225-.816-.729-.816a1.54 1.54 0 0 0-.992.361l-.031.031V8.13zm-4.512.566-.047 1.121H4.8l.744-1.007h.318v3.23l-.416.217v.111H7.36v-.119l-.416-.217V8.81h.32L8 9.816h.111l-.047-1.12zm8.033.785c-.888 0-1.434.569-1.434 1.489 0 .936.505 1.478 1.48 1.478.553 0 .952-.303 1.104-.52v-.11c-.2.103-.414.24-.718.24-.632 0-.896-.457-.928-1.05h1.752v-.023c0-1.088-.432-1.504-1.256-1.504m-.033.12c.256 0 .385.488.385 1.224l-.866.047c.002-.715.218-1.271.48-1.271m2.577 1.896-1.217.217v.08l.328.111v.928c-.088-.048-.271-.088-.511-.088-.84 0-1.4.52-1.4 1.6 0 1.024.48 1.52 1.128 1.52a1.07 1.07 0 0 0 .8-.329h.032v.32l.096.016 1.201-.158v-.106l-.338-.119v-3.976zm1.367 0a.513.513 0 0 0-.527.512.51.51 0 0 0 .527.511c.288 0 .537-.215.537-.511 0-.288-.249-.512-.537-.512m-14.52.184C1.04 11.68 0 12.233 0 13.793c0 1.456.84 2.07 2.145 2.07a4 4 0 0 0 1.359-.23v-1.465l.367-.2v-.136H2.072v.12l.375.216v1.48a.8.8 0 0 1-.336.055c-.568 0-.806-.624-.814-2.008-.008-1.16.302-1.863.91-1.863.208 0 .314.016.434.072l.664 1.047h.111l-.023-1.088c-.248-.104-.721-.183-1.21-.183m20.714 1.033c-.36.016-.714.157-.954.375h-.039v-.367h-.12l-1.2.214v.122l.336.111v2.36l-.287.16v.113h1.566v-.114l-.271-.152v-2.264a.65.65 0 0 1 .408-.127c.248 0 .385.12.385.424v1.951l-.281.16v.114H24v-.113l-.28-.16v-2.008c0-.56-.231-.8-.751-.8zm-5.772.04-1.236.224v.096l.336.127v2.32l-.282.16v.114h1.56v-.113l-.27-.153v-2.76zM5 12.76l-1.2.217v.087l.329.143v1.8c0 .52.264.856.84.856a1.34 1.34 0 0 0 .902-.375h.033v.36l.12.007 1.193-.152v-.08l-.32-.135v-2.72l-.13-.008-1.199.217v.087l.328.143v2.129a.49.49 0 0 1-.392.183c-.232 0-.367-.087-.367-.375v-2.369zm3.545 0a3.5 3.5 0 0 0-1.098.191v.809h.088l.656-.88.13-.017c.367 0 .495.201.495.793v.393l-.007-.01-.649.129c-.624.12-.928.393-.928.897s.32.798.8.798c.375 0 .617-.127.777-.351h.03c.089.216.273.343.673.343.248 0 .472-.063.584-.127v-.08l-.287-.08v-1.92c0-.664-.464-.888-1.264-.888m2.879 0-.008.008-1.2.224v.08l.329.096v2.352l-.281.16v.113h1.56v-.113l-.271-.153v-1.734c.176-.08.382-.129.654-.129.088 0 .192 0 .248.016v-.897c-.032-.016-.094-.015-.15-.015-.344 0-.632.24-.76.88h-.026v-.88zm7.488 0c-.464 0-.816.103-1.096.191v.809h.088l.657-.88.127-.017c.36 0 .496.201.496.793v.393h-.008l-.64.127c-.633.12-.936.384-.936.888s.32.8.8.8c.376 0 .616-.128.776-.352h.023c.088.216.272.343.672.343.256 0 .482-.063.594-.127v-.08l-.29-.08v-1.92c0-.664-.463-.888-1.263-.888m-4.8.144c.2-.008.255.056.335.104v2.377a.42.42 0 0 1-.279.103c-.432.016-.584-.425-.584-1.209 0-.872.207-1.359.527-1.375m-5.295 1.287v1.186c-.056.064-.128.103-.248.103-.216 0-.377-.129-.377-.609 0-.44.104-.64.424-.664zm10.368 0v1.186h-.008c-.048.064-.12.103-.24.103-.225 0-.383-.129-.383-.609 0-.44.111-.64.431-.664z" }) + ] + } + ); +}); + +exports.default = SiTheguardian; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.d.ts new file mode 100644 index 000000000..2b3e7d35a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#052962"; +declare const SiTheguardian: IconType; +export { SiTheguardian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.mjs new file mode 100644 index 000000000..bdc37d486 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheguardian.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#052962"; +const SiTheguardian = React.forwardRef(function SiTheguardian2({ title = "The Guardian", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.272 8.129-1.16.207V8.4l.32.127v3.577l-.28.16v.103h1.52v-.103l-.264-.145V9.961a.64.64 0 0 1 .4-.129c.24 0 .368.112.368.408v1.871l-.272.145v.111h1.512v-.111l-.271-.145v-1.863c0-.536-.225-.816-.729-.816a1.54 1.54 0 0 0-.992.361l-.031.031V8.13zm-4.512.566-.047 1.121H4.8l.744-1.007h.318v3.23l-.416.217v.111H7.36v-.119l-.416-.217V8.81h.32L8 9.816h.111l-.047-1.12zm8.033.785c-.888 0-1.434.569-1.434 1.489 0 .936.505 1.478 1.48 1.478.553 0 .952-.303 1.104-.52v-.11c-.2.103-.414.24-.718.24-.632 0-.896-.457-.928-1.05h1.752v-.023c0-1.088-.432-1.504-1.256-1.504m-.033.12c.256 0 .385.488.385 1.224l-.866.047c.002-.715.218-1.271.48-1.271m2.577 1.896-1.217.217v.08l.328.111v.928c-.088-.048-.271-.088-.511-.088-.84 0-1.4.52-1.4 1.6 0 1.024.48 1.52 1.128 1.52a1.07 1.07 0 0 0 .8-.329h.032v.32l.096.016 1.201-.158v-.106l-.338-.119v-3.976zm1.367 0a.513.513 0 0 0-.527.512.51.51 0 0 0 .527.511c.288 0 .537-.215.537-.511 0-.288-.249-.512-.537-.512m-14.52.184C1.04 11.68 0 12.233 0 13.793c0 1.456.84 2.07 2.145 2.07a4 4 0 0 0 1.359-.23v-1.465l.367-.2v-.136H2.072v.12l.375.216v1.48a.8.8 0 0 1-.336.055c-.568 0-.806-.624-.814-2.008-.008-1.16.302-1.863.91-1.863.208 0 .314.016.434.072l.664 1.047h.111l-.023-1.088c-.248-.104-.721-.183-1.21-.183m20.714 1.033c-.36.016-.714.157-.954.375h-.039v-.367h-.12l-1.2.214v.122l.336.111v2.36l-.287.16v.113h1.566v-.114l-.271-.152v-2.264a.65.65 0 0 1 .408-.127c.248 0 .385.12.385.424v1.951l-.281.16v.114H24v-.113l-.28-.16v-2.008c0-.56-.231-.8-.751-.8zm-5.772.04-1.236.224v.096l.336.127v2.32l-.282.16v.114h1.56v-.113l-.27-.153v-2.76zM5 12.76l-1.2.217v.087l.329.143v1.8c0 .52.264.856.84.856a1.34 1.34 0 0 0 .902-.375h.033v.36l.12.007 1.193-.152v-.08l-.32-.135v-2.72l-.13-.008-1.199.217v.087l.328.143v2.129a.49.49 0 0 1-.392.183c-.232 0-.367-.087-.367-.375v-2.369zm3.545 0a3.5 3.5 0 0 0-1.098.191v.809h.088l.656-.88.13-.017c.367 0 .495.201.495.793v.393l-.007-.01-.649.129c-.624.12-.928.393-.928.897s.32.798.8.798c.375 0 .617-.127.777-.351h.03c.089.216.273.343.673.343.248 0 .472-.063.584-.127v-.08l-.287-.08v-1.92c0-.664-.464-.888-1.264-.888m2.879 0-.008.008-1.2.224v.08l.329.096v2.352l-.281.16v.113h1.56v-.113l-.271-.153v-1.734c.176-.08.382-.129.654-.129.088 0 .192 0 .248.016v-.897c-.032-.016-.094-.015-.15-.015-.344 0-.632.24-.76.88h-.026v-.88zm7.488 0c-.464 0-.816.103-1.096.191v.809h.088l.657-.88.127-.017c.36 0 .496.201.496.793v.393h-.008l-.64.127c-.633.12-.936.384-.936.888s.32.8.8.8c.376 0 .616-.128.776-.352h.023c.088.216.272.343.672.343.256 0 .482-.063.594-.127v-.08l-.29-.08v-1.92c0-.664-.463-.888-1.263-.888m-4.8.144c.2-.008.255.056.335.104v2.377a.42.42 0 0 1-.279.103c-.432.016-.584-.425-.584-1.209 0-.872.207-1.359.527-1.375m-5.295 1.287v1.186c-.056.064-.128.103-.248.103-.216 0-.377-.129-.377-.609 0-.44.104-.64.424-.664zm10.368 0v1.186h-.008c-.048.064-.12.103-.24.103-.225 0-.383-.129-.383-.609 0-.44.111-.64.431-.664z" }) + ] + } + ); +}); + +export { SiTheguardian as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.cjs new file mode 100644 index 000000000..fd3e7698a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTheirishtimes = React__namespace.forwardRef(function SiTheirishtimes2({ title = "The Irish Times", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.636 4.093V8.33h.42c.18-1.156.614-2.047 1.3-2.67.487-.448 1.27-.672 2.35-.672h1.197V17.22c0 .79-.043 1.28-.127 1.465-.116.263-.272.45-.473.557-.277.165-.642.246-1.096.246h-.518v.417h8.26v-.417h-.517c-.443 0-.793-.077-1.049-.228-.256-.15-.428-.327-.516-.528-.088-.203-.131-.706-.131-1.512V4.988h1.197c.743 0 1.264.07 1.56.208.532.254.95.595 1.256 1.023.305.427.584 1.13.834 2.11H24V4.093zM7.74 19.488c-.438 0-.787-.076-1.044-.227-.259-.15-.43-.328-.519-.529-.088-.202-.132-.705-.132-1.512V6.778c0-.79.041-1.278.127-1.464.114-.264.272-.45.472-.559.277-.162.641-.244 1.096-.244h.519v-.418H0v.418h.521c.441 0 .79.076 1.05.227.258.15.43.329.515.53.085.2.129.705.129 1.51v10.444c0 .79-.044 1.279-.128 1.465-.109.263-.264.45-.463.557-.28.164-.647.245-1.103.245H0v.418h8.26v-.418h-.52Z" }) + ] + } + ); +}); + +exports.default = SiTheirishtimes; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.d.ts new file mode 100644 index 000000000..2327b008c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTheirishtimes: IconType; +export { SiTheirishtimes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.mjs new file mode 100644 index 000000000..f54ad41ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheirishtimes.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTheirishtimes = React.forwardRef(function SiTheirishtimes2({ title = "The Irish Times", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.636 4.093V8.33h.42c.18-1.156.614-2.047 1.3-2.67.487-.448 1.27-.672 2.35-.672h1.197V17.22c0 .79-.043 1.28-.127 1.465-.116.263-.272.45-.473.557-.277.165-.642.246-1.096.246h-.518v.417h8.26v-.417h-.517c-.443 0-.793-.077-1.049-.228-.256-.15-.428-.327-.516-.528-.088-.203-.131-.706-.131-1.512V4.988h1.197c.743 0 1.264.07 1.56.208.532.254.95.595 1.256 1.023.305.427.584 1.13.834 2.11H24V4.093zM7.74 19.488c-.438 0-.787-.076-1.044-.227-.259-.15-.43-.328-.519-.529-.088-.202-.132-.705-.132-1.512V6.778c0-.79.041-1.278.127-1.464.114-.264.272-.45.472-.559.277-.162.641-.244 1.096-.244h.519v-.418H0v.418h.521c.441 0 .79.076 1.05.227.258.15.43.329.515.53.085.2.129.705.129 1.51v10.444c0 .79-.044 1.279-.128 1.465-.109.263-.264.45-.463.557-.28.164-.647.245-1.103.245H0v.418h8.26v-.418h-.52Z" }) + ] + } + ); +}); + +export { SiTheirishtimes as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.cjs new file mode 100644 index 000000000..4a48d9337 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D0072A"; +const SiThemighty = React__namespace.forwardRef(function SiThemighty2({ title = "The Mighty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.178.001h-4.432L12.05 13.988 9.309.001H4.856c.216.219.334.634.39 1.072v21.21c0 .621-.105 1.383-.425 1.717 1.014-.214 2.307-.416 3.414-.611V9.375l2.489 12.375c.07.46.135 1.084-.021 1.198.847-.129 1.694-.252 2.544-.366-.105-.16-.064-.652-.005-1.061L15.696 9.15v13.095c1.054-.123 2.366-.24 3.47-.349l.012-.008c-.324-.328-.43-1.1-.43-1.724V1.726c0-.627.105-1.396.43-1.726v.001z" }) + ] + } + ); +}); + +exports.default = SiThemighty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.d.ts new file mode 100644 index 000000000..7c87d6972 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D0072A"; +declare const SiThemighty: IconType; +export { SiThemighty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.mjs new file mode 100644 index 000000000..208fa3bfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemighty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D0072A"; +const SiThemighty = React.forwardRef(function SiThemighty2({ title = "The Mighty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.178.001h-4.432L12.05 13.988 9.309.001H4.856c.216.219.334.634.39 1.072v21.21c0 .621-.105 1.383-.425 1.717 1.014-.214 2.307-.416 3.414-.611V9.375l2.489 12.375c.07.46.135 1.084-.021 1.198.847-.129 1.694-.252 2.544-.366-.105-.16-.064-.652-.005-1.061L15.696 9.15v13.095c1.054-.123 2.366-.24 3.47-.349l.012-.008c-.324-.328-.43-1.1-.43-1.724V1.726c0-.627.105-1.396.43-1.726v.001z" }) + ] + } + ); +}); + +export { SiThemighty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.cjs new file mode 100644 index 000000000..2e85db949 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3A75BD"; +const SiThemodelsresource = React__namespace.forwardRef(function SiThemodelsresource2({ title = "The Models Resource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.25 0C.557 0 0 .557 0 1.25v21.5C0 23.442.557 24 1.25 24h21.5c.692 0 1.25-.558 1.25-1.25V1.25C24 .557 23.442 0 22.75 0h-2.734c1.667 1.037 1.521 11.428 1.68 18.734.023 1.1.616 3.805.616 3.805s-1.702.913-3.15 1.373c-.652-2.478-.633-3.488-.633-3.488l-.181-10.67-.4-4.62c-2.156 3.08-3.445 6.123-3.987 8.007-1.442.915-1.92 1.09-2.957 1.384-1.056-.552-3.91-3.216-4.961-3.921 2.096 6.826 2.238 9.642 2.238 9.642s-2.231 1.759-2.797 1.606c-.232-.064-.495-.275-.507-.516-.183-3.672-.76-5.902-1.508-8.773C2.576 9.13.32 4.07.32 4.07c.948-.641 1.52-.883 2.836-1.265L11.61 11S16.073 3.616 17.104.906c0 0 2.244-.748 2.71-.906H1.25z" }) + ] + } + ); +}); + +exports.default = SiThemodelsresource; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.d.ts new file mode 100644 index 000000000..129fcb264 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3A75BD"; +declare const SiThemodelsresource: IconType; +export { SiThemodelsresource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.mjs new file mode 100644 index 000000000..9b1d266b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemodelsresource.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3A75BD"; +const SiThemodelsresource = React.forwardRef(function SiThemodelsresource2({ title = "The Models Resource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.25 0C.557 0 0 .557 0 1.25v21.5C0 23.442.557 24 1.25 24h21.5c.692 0 1.25-.558 1.25-1.25V1.25C24 .557 23.442 0 22.75 0h-2.734c1.667 1.037 1.521 11.428 1.68 18.734.023 1.1.616 3.805.616 3.805s-1.702.913-3.15 1.373c-.652-2.478-.633-3.488-.633-3.488l-.181-10.67-.4-4.62c-2.156 3.08-3.445 6.123-3.987 8.007-1.442.915-1.92 1.09-2.957 1.384-1.056-.552-3.91-3.216-4.961-3.921 2.096 6.826 2.238 9.642 2.238 9.642s-2.231 1.759-2.797 1.606c-.232-.064-.495-.275-.507-.516-.183-3.672-.76-5.902-1.508-8.773C2.576 9.13.32 4.07.32 4.07c.948-.641 1.52-.883 2.836-1.265L11.61 11S16.073 3.616 17.104.906c0 0 2.244-.748 2.71-.906H1.25z" }) + ] + } + ); +}); + +export { SiThemodelsresource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.cjs new file mode 100644 index 000000000..74ebc231d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#01B4E4"; +const SiThemoviedatabase = React__namespace.forwardRef(function SiThemoviedatabase2({ title = "The Movie Database", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.62 12a2.291 2.291 0 0 1 2.292-2.295h-.013A2.291 2.291 0 0 1 11.189 12a2.291 2.291 0 0 1-2.29 2.291h.013A2.291 2.291 0 0 1 6.62 12zm10.72-4.062h4.266a2.291 2.291 0 0 0 2.29-2.291 2.291 2.291 0 0 0-2.29-2.296H17.34a2.291 2.291 0 0 0-2.291 2.296 2.291 2.291 0 0 0 2.29 2.29zM2.688 20.645h8.285a2.291 2.291 0 0 0 2.291-2.292 2.291 2.291 0 0 0-2.29-2.295H2.687a2.291 2.291 0 0 0-2.291 2.295 2.291 2.291 0 0 0 2.29 2.292zm10.881-6.354h.81l1.894-4.586H15.19l-1.154 3.008h-.013l-1.135-3.008h-1.154zm4.208 0h1.011V9.705h-1.011zm2.878 0h3.235v-.93h-2.223v-.933h1.99v-.934h-1.99v-.855h2.107v-.934h-3.112zM1.31 7.941h1.01V4.247h1.31v-.895H0v.895h1.31zm3.747 0h1.011V5.959h1.958v1.984h1.011v-4.59h-1.01v1.711H6.061V3.351H5.057zm5.348 0h3.242v-.933H11.41v-.934h1.99v-.933h-1.99v-.856h2.107v-.934h-3.112zM.162 14.296h1.005v-3.52h.013l1.167 3.52h.765l1.206-3.52h.013v3.52h1.011v-4.59H3.82L2.755 12.7h-.013L1.686 9.705H.156zm14.534 6.353h1.641a3.188 3.188 0 0 0 .98-.149 2.531 2.531 0 0 0 .824-.437 2.123 2.123 0 0 0 .567-.713 2.193 2.193 0 0 0 .223-.983 2.399 2.399 0 0 0-.218-1.07 1.958 1.958 0 0 0-.586-.716 2.405 2.405 0 0 0-.873-.392 4.349 4.349 0 0 0-1.046-.13h-1.519zm1.013-3.656h.596a2.26 2.26 0 0 1 .606.08 1.514 1.514 0 0 1 .503.244 1.167 1.167 0 0 1 .34.412 1.28 1.28 0 0 1 .13.587 1.546 1.546 0 0 1-.13.658 1.127 1.127 0 0 1-.347.433 1.41 1.41 0 0 1-.518.238 2.797 2.797 0 0 1-.649.07h-.538zm4.686 3.656h1.88a2.997 2.997 0 0 0 .613-.064 1.735 1.735 0 0 0 .554-.214 1.221 1.221 0 0 0 .402-.39 1.105 1.105 0 0 0 .155-.606 1.188 1.188 0 0 0-.071-.415 1.01 1.01 0 0 0-.204-.34 1.087 1.087 0 0 0-.317-.24 1.297 1.297 0 0 0-.413-.13v-.012a1.203 1.203 0 0 0 .575-.366.962.962 0 0 0 .216-.648 1.081 1.081 0 0 0-.149-.603 1.022 1.022 0 0 0-.389-.354 1.673 1.673 0 0 0-.54-.169 4.463 4.463 0 0 0-.6-.041h-1.712zm1.011-3.734h.687a1.4 1.4 0 0 1 .24.022.748.748 0 0 1 .22.075.432.432 0 0 1 .16.147.418.418 0 0 1 .061.236.47.47 0 0 1-.055.233.433.433 0 0 1-.146.156.62.62 0 0 1-.204.084 1.058 1.058 0 0 1-.23.026h-.745zm0 1.835h.765a1.96 1.96 0 0 1 .266.02 1.015 1.015 0 0 1 .26.07.519.519 0 0 1 .204.152.406.406 0 0 1 .08.26.481.481 0 0 1-.06.253.519.519 0 0 1-.16.168.62.62 0 0 1-.217.09 1.155 1.155 0 0 1-.237.027H21.4z" }) + ] + } + ); +}); + +exports.default = SiThemoviedatabase; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.d.ts new file mode 100644 index 000000000..5ab86b100 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#01B4E4"; +declare const SiThemoviedatabase: IconType; +export { SiThemoviedatabase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.mjs new file mode 100644 index 000000000..a0ec97ff2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThemoviedatabase.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#01B4E4"; +const SiThemoviedatabase = React.forwardRef(function SiThemoviedatabase2({ title = "The Movie Database", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.62 12a2.291 2.291 0 0 1 2.292-2.295h-.013A2.291 2.291 0 0 1 11.189 12a2.291 2.291 0 0 1-2.29 2.291h.013A2.291 2.291 0 0 1 6.62 12zm10.72-4.062h4.266a2.291 2.291 0 0 0 2.29-2.291 2.291 2.291 0 0 0-2.29-2.296H17.34a2.291 2.291 0 0 0-2.291 2.296 2.291 2.291 0 0 0 2.29 2.29zM2.688 20.645h8.285a2.291 2.291 0 0 0 2.291-2.292 2.291 2.291 0 0 0-2.29-2.295H2.687a2.291 2.291 0 0 0-2.291 2.295 2.291 2.291 0 0 0 2.29 2.292zm10.881-6.354h.81l1.894-4.586H15.19l-1.154 3.008h-.013l-1.135-3.008h-1.154zm4.208 0h1.011V9.705h-1.011zm2.878 0h3.235v-.93h-2.223v-.933h1.99v-.934h-1.99v-.855h2.107v-.934h-3.112zM1.31 7.941h1.01V4.247h1.31v-.895H0v.895h1.31zm3.747 0h1.011V5.959h1.958v1.984h1.011v-4.59h-1.01v1.711H6.061V3.351H5.057zm5.348 0h3.242v-.933H11.41v-.934h1.99v-.933h-1.99v-.856h2.107v-.934h-3.112zM.162 14.296h1.005v-3.52h.013l1.167 3.52h.765l1.206-3.52h.013v3.52h1.011v-4.59H3.82L2.755 12.7h-.013L1.686 9.705H.156zm14.534 6.353h1.641a3.188 3.188 0 0 0 .98-.149 2.531 2.531 0 0 0 .824-.437 2.123 2.123 0 0 0 .567-.713 2.193 2.193 0 0 0 .223-.983 2.399 2.399 0 0 0-.218-1.07 1.958 1.958 0 0 0-.586-.716 2.405 2.405 0 0 0-.873-.392 4.349 4.349 0 0 0-1.046-.13h-1.519zm1.013-3.656h.596a2.26 2.26 0 0 1 .606.08 1.514 1.514 0 0 1 .503.244 1.167 1.167 0 0 1 .34.412 1.28 1.28 0 0 1 .13.587 1.546 1.546 0 0 1-.13.658 1.127 1.127 0 0 1-.347.433 1.41 1.41 0 0 1-.518.238 2.797 2.797 0 0 1-.649.07h-.538zm4.686 3.656h1.88a2.997 2.997 0 0 0 .613-.064 1.735 1.735 0 0 0 .554-.214 1.221 1.221 0 0 0 .402-.39 1.105 1.105 0 0 0 .155-.606 1.188 1.188 0 0 0-.071-.415 1.01 1.01 0 0 0-.204-.34 1.087 1.087 0 0 0-.317-.24 1.297 1.297 0 0 0-.413-.13v-.012a1.203 1.203 0 0 0 .575-.366.962.962 0 0 0 .216-.648 1.081 1.081 0 0 0-.149-.603 1.022 1.022 0 0 0-.389-.354 1.673 1.673 0 0 0-.54-.169 4.463 4.463 0 0 0-.6-.041h-1.712zm1.011-3.734h.687a1.4 1.4 0 0 1 .24.022.748.748 0 0 1 .22.075.432.432 0 0 1 .16.147.418.418 0 0 1 .061.236.47.47 0 0 1-.055.233.433.433 0 0 1-.146.156.62.62 0 0 1-.204.084 1.058 1.058 0 0 1-.23.026h-.745zm0 1.835h.765a1.96 1.96 0 0 1 .266.02 1.015 1.015 0 0 1 .26.07.519.519 0 0 1 .204.152.406.406 0 0 1 .08.26.481.481 0 0 1-.06.253.519.519 0 0 1-.16.168.62.62 0 0 1-.217.09 1.155 1.155 0 0 1-.237.027H21.4z" }) + ] + } + ); +}); + +export { SiThemoviedatabase as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.cjs new file mode 100644 index 000000000..2381d79b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiThenorthface = React__namespace.forwardRef(function SiThenorthface2({ title = "The North Face", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.816 6.36v3.36h.228a4.847 4.847 0 0 1 4.764 4.764v3.036H24v-3.132c0-4.428-3.6-8.028-8.028-8.028H15.9Zm-9.06.012v.6h1.008V9.72h.696V6.972h1.008v-.6zm2.964 0V9.72h.696v-1.5h1.308v1.5h.696V6.372h-.696v1.272h-1.308V6.372Zm3 0V9.72h2.4v-.588h-1.752v-.876h1.548v-.588h-1.548V6.96h1.752v-.588ZM4.644 10.14c-.444 0-1.608.192-1.608 1.752s1.164 1.752 1.608 1.752c.444 0 1.608-.192 1.608-1.752S5.088 10.14 4.644 10.14zM0 10.236v3.336h.648v-2.376H.66l1.368 2.376h.696v-3.336h-.648v2.316h-.012L.732 10.236Zm6.54 0 .012 3.336h.684v-1.308h.72c.516 0 .54.18.54.636 0 .348.024.516.072.672h.768v-.084c-.144-.048-.144-.168-.144-.66 0-.624-.144-.732-.42-.852.324-.108.516-.42.516-.792 0-.288-.168-.948-1.056-.948zm2.916 0v.588h1.02v2.748h.696v-2.748h1.008v-.588zm2.976 0v3.336h.696v-1.5h1.296v1.5h.696v-3.336h-.696v1.26h-1.296v-1.26zm3.372 0v3.348h.156c1.08 0 1.944.876 1.944 1.944v1.992h2.388v-2.988c-.012-2.316-1.86-4.2-4.152-4.296h-.252Zm-11.16.504c.372 0 .9.228.9 1.164 0 .936-.528 1.164-.9 1.164s-.912-.228-.912-1.164c0-.936.54-1.164.912-1.164zm2.58.072h.864c.408 0 .492.252.492.432 0 .324-.18.456-.54.456h-.816Zm3.684 3.204c-.876 0-1.572.612-1.572 1.812 0 1.188.648 1.8 1.56 1.8.864 0 1.344-.516 1.488-1.26h-.72c-.084.42-.36.648-.756.648-.612 0-.852-.552-.852-1.164 0-.972.504-1.2.852-1.2.588 0 .696.384.756.588v-.012h.72c-.036-.504-.456-1.212-1.476-1.212zm-6.696.084v3.432h.708v-1.44h1.512v-.612H4.92v-.768h1.728V14.1Zm3.228 0-1.224 3.432h.756l.228-.708h1.284l.216.708h.78L8.268 14.1Zm5.232 0v3.432h2.46v-.612h-1.8v-.888h1.596v-.6h-1.596v-.72h1.8V14.1Zm3.144.012v3.432h1.596v-1.992c0-.792-.648-1.44-1.44-1.44zm-7.98.768h.012l.42 1.356h-.876Zm-4.92.912a.927.927 0 0 0-.936.924c0 .528.432.924.936.924a.917.917 0 0 0 .924-.924.917.917 0 0 0-.924-.924zm0 .144c.42 0 .756.336.756.78 0 .456-.324.792-.756.792s-.768-.348-.768-.792c0-.444.336-.78.768-.78zm-.36.24v1.092h.168V16.8h.18l.3.468h.18l-.312-.48c.168-.024.288-.108.288-.3 0-.216-.132-.312-.384-.312zm.168.132h.228c.12 0 .24.024.24.168 0 .168-.144.18-.288.18h-.18z" }) + ] + } + ); +}); + +exports.default = SiThenorthface; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.d.ts new file mode 100644 index 000000000..e2830566b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiThenorthface: IconType; +export { SiThenorthface as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.mjs new file mode 100644 index 000000000..a115c3c14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThenorthface.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiThenorthface = React.forwardRef(function SiThenorthface2({ title = "The North Face", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.816 6.36v3.36h.228a4.847 4.847 0 0 1 4.764 4.764v3.036H24v-3.132c0-4.428-3.6-8.028-8.028-8.028H15.9Zm-9.06.012v.6h1.008V9.72h.696V6.972h1.008v-.6zm2.964 0V9.72h.696v-1.5h1.308v1.5h.696V6.372h-.696v1.272h-1.308V6.372Zm3 0V9.72h2.4v-.588h-1.752v-.876h1.548v-.588h-1.548V6.96h1.752v-.588ZM4.644 10.14c-.444 0-1.608.192-1.608 1.752s1.164 1.752 1.608 1.752c.444 0 1.608-.192 1.608-1.752S5.088 10.14 4.644 10.14zM0 10.236v3.336h.648v-2.376H.66l1.368 2.376h.696v-3.336h-.648v2.316h-.012L.732 10.236Zm6.54 0 .012 3.336h.684v-1.308h.72c.516 0 .54.18.54.636 0 .348.024.516.072.672h.768v-.084c-.144-.048-.144-.168-.144-.66 0-.624-.144-.732-.42-.852.324-.108.516-.42.516-.792 0-.288-.168-.948-1.056-.948zm2.916 0v.588h1.02v2.748h.696v-2.748h1.008v-.588zm2.976 0v3.336h.696v-1.5h1.296v1.5h.696v-3.336h-.696v1.26h-1.296v-1.26zm3.372 0v3.348h.156c1.08 0 1.944.876 1.944 1.944v1.992h2.388v-2.988c-.012-2.316-1.86-4.2-4.152-4.296h-.252Zm-11.16.504c.372 0 .9.228.9 1.164 0 .936-.528 1.164-.9 1.164s-.912-.228-.912-1.164c0-.936.54-1.164.912-1.164zm2.58.072h.864c.408 0 .492.252.492.432 0 .324-.18.456-.54.456h-.816Zm3.684 3.204c-.876 0-1.572.612-1.572 1.812 0 1.188.648 1.8 1.56 1.8.864 0 1.344-.516 1.488-1.26h-.72c-.084.42-.36.648-.756.648-.612 0-.852-.552-.852-1.164 0-.972.504-1.2.852-1.2.588 0 .696.384.756.588v-.012h.72c-.036-.504-.456-1.212-1.476-1.212zm-6.696.084v3.432h.708v-1.44h1.512v-.612H4.92v-.768h1.728V14.1Zm3.228 0-1.224 3.432h.756l.228-.708h1.284l.216.708h.78L8.268 14.1Zm5.232 0v3.432h2.46v-.612h-1.8v-.888h1.596v-.6h-1.596v-.72h1.8V14.1Zm3.144.012v3.432h1.596v-1.992c0-.792-.648-1.44-1.44-1.44zm-7.98.768h.012l.42 1.356h-.876Zm-4.92.912a.927.927 0 0 0-.936.924c0 .528.432.924.936.924a.917.917 0 0 0 .924-.924.917.917 0 0 0-.924-.924zm0 .144c.42 0 .756.336.756.78 0 .456-.324.792-.756.792s-.768-.348-.768-.792c0-.444.336-.78.768-.78zm-.36.24v1.092h.168V16.8h.18l.3.468h.18l-.312-.48c.168-.024.288-.108.288-.3 0-.216-.132-.312-.384-.312zm.168.132h.228c.12 0 .24.024.24.168 0 .168-.144.18-.288.18h-.18z" }) + ] + } + ); +}); + +export { SiThenorthface as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.cjs new file mode 100644 index 000000000..e3558a7b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A9792B"; +const SiTheodinproject = React__namespace.forwardRef(function SiTheodinproject2({ title = "The Odin Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.002 0 1.9902 7.3867L6.5684 8.963v.5762l.9746 1.9238c.806-1.53 2.8445-2.0638 4.3125-.9688l.2011.1504.2012-.1504c1.469-1.095 3.5075-.5612 4.3145.9688l.9746-1.9258v-.6894l1.461-1.461L20.998 0l-3.6328 1.8594v3.2578c-.655-.395-2.9816-1.6914-5.3086-1.6914-2.494 0-4.9868 1.4887-5.4218 1.7617V1.8594L3.002 0zm6.1113 10.2285c-.18 0-.3262.1443-.3262.3223v.998c0 .267.2192.4844.4902.4844h.5606c.304 0 .5936-.12.8086-.332a1.115 1.115 0 0 0 .336-.7969v-.3535c0-.178-.1472-.3223-.3282-.3223h-1.541zm5.291.3926c-.285 0-.5176.2278-.5176.5098 0 .281.2326.5097.5176.5097.286 0 .5176-.2287.5176-.5097 0-.282-.2316-.5098-.5176-.5098zm-7.836.0234-1.4648 5.414 1.4961 2.9513 1.375-5.1035.1973-.0977-1.6035-3.164zm10.9786 0-1.6035 3.164.1972.0977 1.375 5.1036 1.4961-2.9512-1.4648-5.414zm-5.4903 1.8047-1.828.9024L8.58 22.1953 12.0566 24l3.4766-1.8047-1.6465-8.8437-1.83-.9024zM9.668 13.629l-1.2696.625-1.6543 6.1367 1.4688 1.0489 1.455-7.8106zm4.7793 0 1.455 7.8106 1.4668-1.0489-1.6523-6.1367-1.2695-.625zm-3.0157.084h1.2813v.4512a.623.623 0 0 1-.1875.4453.6434.6434 0 0 1-.4531.1855.6451.6451 0 0 1-.4532-.1855.623.623 0 0 1-.1875-.4453v-.4512z" }) + ] + } + ); +}); + +exports.default = SiTheodinproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.d.ts new file mode 100644 index 000000000..41868e8b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A9792B"; +declare const SiTheodinproject: IconType; +export { SiTheodinproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.mjs new file mode 100644 index 000000000..6a45bce4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheodinproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A9792B"; +const SiTheodinproject = React.forwardRef(function SiTheodinproject2({ title = "The Odin Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.002 0 1.9902 7.3867L6.5684 8.963v.5762l.9746 1.9238c.806-1.53 2.8445-2.0638 4.3125-.9688l.2011.1504.2012-.1504c1.469-1.095 3.5075-.5612 4.3145.9688l.9746-1.9258v-.6894l1.461-1.461L20.998 0l-3.6328 1.8594v3.2578c-.655-.395-2.9816-1.6914-5.3086-1.6914-2.494 0-4.9868 1.4887-5.4218 1.7617V1.8594L3.002 0zm6.1113 10.2285c-.18 0-.3262.1443-.3262.3223v.998c0 .267.2192.4844.4902.4844h.5606c.304 0 .5936-.12.8086-.332a1.115 1.115 0 0 0 .336-.7969v-.3535c0-.178-.1472-.3223-.3282-.3223h-1.541zm5.291.3926c-.285 0-.5176.2278-.5176.5098 0 .281.2326.5097.5176.5097.286 0 .5176-.2287.5176-.5097 0-.282-.2316-.5098-.5176-.5098zm-7.836.0234-1.4648 5.414 1.4961 2.9513 1.375-5.1035.1973-.0977-1.6035-3.164zm10.9786 0-1.6035 3.164.1972.0977 1.375 5.1036 1.4961-2.9512-1.4648-5.414zm-5.4903 1.8047-1.828.9024L8.58 22.1953 12.0566 24l3.4766-1.8047-1.6465-8.8437-1.83-.9024zM9.668 13.629l-1.2696.625-1.6543 6.1367 1.4688 1.0489 1.455-7.8106zm4.7793 0 1.455 7.8106 1.4668-1.0489-1.6523-6.1367-1.2695-.625zm-3.0157.084h1.2813v.4512a.623.623 0 0 1-.1875.4453.6434.6434 0 0 1-.4531.1855.6451.6451 0 0 1-.4532-.1855.623.623 0 0 1-.1875-.4453v-.4512z" }) + ] + } + ); +}); + +export { SiTheodinproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.cjs new file mode 100644 index 000000000..80f4cdc3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTheplanetarysociety = React__namespace.forwardRef(function SiTheplanetarysociety2({ title = "The Planetary Society", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.545 1.81A12.428 12.428 0 0 0 0 2.35a10.409 10.409 0 0 1 1.838-.146c5.602.048 10.114 4.543 10.16 10.075-2.263 1.066-4.976 2.147-7.986 3.158-1.258.423-2.956 1.053-3.751 1.482a2.073 2.073 0 0 1-.04.035l.257-.065c1.338-.338 2.714-.703 4.112-1.116a106.969 106.969 0 0 0 7.364-2.455c-.404 4.299-3.506 7.81-7.599 8.872 5.472-.627 9.837-4.8 10.155-9.883 6.236-2.597 9.957-5.18 9.443-6.805-.454-1.435-5.038-1.7-11.657-.554.229.226.492.512.757.826 3.3-.31 5.532-.007 5.83.934.335 1.06-1.348 2.612-4.382 4.296-.395-5.198-5.1-9.236-10.956-9.194z" }) + ] + } + ); +}); + +exports.default = SiTheplanetarysociety; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.d.ts new file mode 100644 index 000000000..cb2dfb778 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTheplanetarysociety: IconType; +export { SiTheplanetarysociety as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.mjs new file mode 100644 index 000000000..cb1f30943 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheplanetarysociety.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTheplanetarysociety = React.forwardRef(function SiTheplanetarysociety2({ title = "The Planetary Society", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.545 1.81A12.428 12.428 0 0 0 0 2.35a10.409 10.409 0 0 1 1.838-.146c5.602.048 10.114 4.543 10.16 10.075-2.263 1.066-4.976 2.147-7.986 3.158-1.258.423-2.956 1.053-3.751 1.482a2.073 2.073 0 0 1-.04.035l.257-.065c1.338-.338 2.714-.703 4.112-1.116a106.969 106.969 0 0 0 7.364-2.455c-.404 4.299-3.506 7.81-7.599 8.872 5.472-.627 9.837-4.8 10.155-9.883 6.236-2.597 9.957-5.18 9.443-6.805-.454-1.435-5.038-1.7-11.657-.554.229.226.492.512.757.826 3.3-.31 5.532-.007 5.83.934.335 1.06-1.348 2.612-4.382 4.296-.395-5.198-5.1-9.236-10.956-9.194z" }) + ] + } + ); +}); + +export { SiTheplanetarysociety as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.cjs new file mode 100644 index 000000000..4fb328bcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiTheregister = React__namespace.forwardRef(function SiTheregister2({ title = "The Register", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.368 12.858a42.543 42.543 0 0 1-2.612 1.818c-.893.568-1.683.977-2.378 1.22-.695.245-1.167.198-1.413-.132-.23-.417-.242-1.028-.028-1.826.21-.802.508-1.628.893-2.485.381-.782.711-1.58.99-2.39.277-.81.412-1.632.4-2.458-.012-.826-.266-1.648-.758-2.47-.433-.67-1.08-1.174-1.94-1.508-.863-.337-1.823-.504-2.883-.492a9.544 9.544 0 0 0-3.148.58 6.839 6.839 0 0 0-2.23 1.402c-.675.626-1.207 1.408-1.6 2.345-.134.341-.221.794-.27 1.346a17.953 17.953 0 0 0-.082 1.49c-.004.444-.008.678-.004.698-.433.298-.925.663-1.481 1.096-.556.43-1.104.95-1.64 1.552a15.423 15.423 0 0 0-1.437 1.973c-.393.655-.635 1.155-.727 1.505-.048.143-.008.532.119 1.183.127.643.457 1.386 1 2.227.545.841 1.418 1.62 2.617 2.331.012.012.044-.012.09-.067a.925.925 0 0 0 .084-.087 6.701 6.701 0 0 1-.43-.476c-.261-.302-.515-.699-.757-1.175a2.88 2.88 0 0 1-.31-1.52c.048-.732.512-1.399 1.394-2.006.885-.61 2.393-1.143 4.53-1.592.606-.155 1.131-.385 1.58-.707.448-.314.686-.492.706-.532-.167 1.703.14 3.26.901 4.653a12.107 12.107 0 0 0 2.537 3.176l9.906-9.878L24 11.6c-.472.37-1.012.79-1.632 1.258zM9.438 7.363c-.156.413-.31.826-.466 1.243-.15.417-.234.651-.246.707.028.048.127.163.282.337.163.171.254.286.282.342.012.1-.044.337-.17.707-.124.37-.374.647-.739.838-.48.18-.929.214-1.346.103-.417-.103-.75-.242-1.008-.413-.254-.175-.388-.266-.396-.286l4.032-4.39.016.142c-.008.035-.087.258-.242.67z" }) + ] + } + ); +}); + +exports.default = SiTheregister; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.d.ts new file mode 100644 index 000000000..789386a6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiTheregister: IconType; +export { SiTheregister as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.mjs new file mode 100644 index 000000000..a31687d2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheregister.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiTheregister = React.forwardRef(function SiTheregister2({ title = "The Register", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.368 12.858a42.543 42.543 0 0 1-2.612 1.818c-.893.568-1.683.977-2.378 1.22-.695.245-1.167.198-1.413-.132-.23-.417-.242-1.028-.028-1.826.21-.802.508-1.628.893-2.485.381-.782.711-1.58.99-2.39.277-.81.412-1.632.4-2.458-.012-.826-.266-1.648-.758-2.47-.433-.67-1.08-1.174-1.94-1.508-.863-.337-1.823-.504-2.883-.492a9.544 9.544 0 0 0-3.148.58 6.839 6.839 0 0 0-2.23 1.402c-.675.626-1.207 1.408-1.6 2.345-.134.341-.221.794-.27 1.346a17.953 17.953 0 0 0-.082 1.49c-.004.444-.008.678-.004.698-.433.298-.925.663-1.481 1.096-.556.43-1.104.95-1.64 1.552a15.423 15.423 0 0 0-1.437 1.973c-.393.655-.635 1.155-.727 1.505-.048.143-.008.532.119 1.183.127.643.457 1.386 1 2.227.545.841 1.418 1.62 2.617 2.331.012.012.044-.012.09-.067a.925.925 0 0 0 .084-.087 6.701 6.701 0 0 1-.43-.476c-.261-.302-.515-.699-.757-1.175a2.88 2.88 0 0 1-.31-1.52c.048-.732.512-1.399 1.394-2.006.885-.61 2.393-1.143 4.53-1.592.606-.155 1.131-.385 1.58-.707.448-.314.686-.492.706-.532-.167 1.703.14 3.26.901 4.653a12.107 12.107 0 0 0 2.537 3.176l9.906-9.878L24 11.6c-.472.37-1.012.79-1.632 1.258zM9.438 7.363c-.156.413-.31.826-.466 1.243-.15.417-.234.651-.246.707.028.048.127.163.282.337.163.171.254.286.282.342.012.1-.044.337-.17.707-.124.37-.374.647-.739.838-.48.18-.929.214-1.346.103-.417-.103-.75-.242-1.008-.413-.254-.175-.388-.266-.396-.286l4.032-4.39.016.142c-.008.035-.087.258-.242.67z" }) + ] + } + ); +}); + +export { SiTheregister as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.cjs new file mode 100644 index 000000000..668227dc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#39BE6B"; +const SiThesoundsresource = React__namespace.forwardRef(function SiThesoundsresource2({ title = "The Sounds Resource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.25 0C.557 0 0 .557 0 1.25v4.807c.003-.02.001-.04.006-.06.16-.7 1.27-1.914 3.219-3.589C4.028 1.718 6.149.275 8.348 0H1.25zm8.21 0c1.119.23 2.168 1.177 1.55 2.338-.357.67-1.87 1.872-2.947 2.156l-.708-.098c.16-.56 1.48-1.784 1.473-2.453-.004-.47-.617-.87-1.193-.841-.728.036-2.025.873-3.166 1.845-1.142.973-2.129 2.08-2.112 2.658.028.91 2.086 1.213 4.176 1.182 2.148-.032 2.382-.095 4.164.006 1.596.09 5.601 1.363 5.44 3.535a3.108 3.108 0 01-.362 1.272c.087-.004.153-.021.245-.022.558-.003 1.337.84 1.337.84l-1.955.486s-.207-.247-.332-.242c-.267.01-4.72 3.241-4.53 6.768.111 2.084 2.746 3.566 5.187 3.508 2.584-.062 6.062-1.033 6.171-4.698.057-1.885-1.71-3.145-3.529-2.95-.737.078-2.585.79-2.478 2.165.083 1.077.747 1.45.902 1.416.549-.118 1.453-.43 1.453-.43l.219.297c-.038.391-2.31 1.254-3.207 1.248-1.468-.01-1.821-1.74-1.635-2.728.34-1.808 4.57-3.007 6.322-2.961 3.288.086 4.041 2.53 4.041 2.53l.014.015V1.25C24 .557 23.442 0 22.75 0H9.46zM0 6.324V22.75C0 23.442.557 24 1.25 24h12.037l-.006-.014s-4.661-.659-4.861-3.933c-.168-2.745 2.402-5.515 2.44-5.555-2.062.668-4.418 1.118-5.292 1.104-1.717-.029-5.058-.58-5.054-2.313.002-1.322.912-3.015 2.593-3.103.262-.017.442.017.643.384-.613.607-1.081 1.068-1.045 1.918.052 1.216 1.85 1.551 2.815 1.766.727.163 2.28.508 4.748-.332 2.495-.85 3.544-1.898 3.523-3.3-.009-.558-.476-1.458-2.36-2.087-1.732-.579-2.191-.664-4.267-.633-1.954.03-1.897.019-3.504-.013-1.822-.037-2.51-.402-2.883-.582C.474 7.16.07 6.784 0 6.324zm24 13.123l-.014.01s-.199 1.26-3.314 2.916c-2.064 1.097-5.568 1.625-5.568 1.625l-.002.002h7.648c.692 0 1.25-.558 1.25-1.25v-3.303z" }) + ] + } + ); +}); + +exports.default = SiThesoundsresource; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.d.ts new file mode 100644 index 000000000..fd4a2dc64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#39BE6B"; +declare const SiThesoundsresource: IconType; +export { SiThesoundsresource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.mjs new file mode 100644 index 000000000..a45d676fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThesoundsresource.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#39BE6B"; +const SiThesoundsresource = React.forwardRef(function SiThesoundsresource2({ title = "The Sounds Resource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.25 0C.557 0 0 .557 0 1.25v4.807c.003-.02.001-.04.006-.06.16-.7 1.27-1.914 3.219-3.589C4.028 1.718 6.149.275 8.348 0H1.25zm8.21 0c1.119.23 2.168 1.177 1.55 2.338-.357.67-1.87 1.872-2.947 2.156l-.708-.098c.16-.56 1.48-1.784 1.473-2.453-.004-.47-.617-.87-1.193-.841-.728.036-2.025.873-3.166 1.845-1.142.973-2.129 2.08-2.112 2.658.028.91 2.086 1.213 4.176 1.182 2.148-.032 2.382-.095 4.164.006 1.596.09 5.601 1.363 5.44 3.535a3.108 3.108 0 01-.362 1.272c.087-.004.153-.021.245-.022.558-.003 1.337.84 1.337.84l-1.955.486s-.207-.247-.332-.242c-.267.01-4.72 3.241-4.53 6.768.111 2.084 2.746 3.566 5.187 3.508 2.584-.062 6.062-1.033 6.171-4.698.057-1.885-1.71-3.145-3.529-2.95-.737.078-2.585.79-2.478 2.165.083 1.077.747 1.45.902 1.416.549-.118 1.453-.43 1.453-.43l.219.297c-.038.391-2.31 1.254-3.207 1.248-1.468-.01-1.821-1.74-1.635-2.728.34-1.808 4.57-3.007 6.322-2.961 3.288.086 4.041 2.53 4.041 2.53l.014.015V1.25C24 .557 23.442 0 22.75 0H9.46zM0 6.324V22.75C0 23.442.557 24 1.25 24h12.037l-.006-.014s-4.661-.659-4.861-3.933c-.168-2.745 2.402-5.515 2.44-5.555-2.062.668-4.418 1.118-5.292 1.104-1.717-.029-5.058-.58-5.054-2.313.002-1.322.912-3.015 2.593-3.103.262-.017.442.017.643.384-.613.607-1.081 1.068-1.045 1.918.052 1.216 1.85 1.551 2.815 1.766.727.163 2.28.508 4.748-.332 2.495-.85 3.544-1.898 3.523-3.3-.009-.558-.476-1.458-2.36-2.087-1.732-.579-2.191-.664-4.267-.633-1.954.03-1.897.019-3.504-.013-1.822-.037-2.51-.402-2.883-.582C.474 7.16.07 6.784 0 6.324zm24 13.123l-.014.01s-.199 1.26-3.314 2.916c-2.064 1.097-5.568 1.625-5.568 1.625l-.002.002h7.648c.692 0 1.25-.558 1.25-1.25v-3.303z" }) + ] + } + ); +}); + +export { SiThesoundsresource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.cjs new file mode 100644 index 000000000..e4ea3f146 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#BE3939"; +const SiThespritersresource = React__namespace.forwardRef(function SiThespritersresource2({ title = "The Spriters Resource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.25 0C.557 0 0 .557 0 1.25v6.674C4.756 2.364 9.47.04 12.879.066c1.472.011 3.551.87 3.46 2.747-.074 1.558-3.202 3.763-4.71 4.197L10.5 6.893c.075-.687 2.257-2.77 2.246-3.79-.006-.633-.976-1.38-1.853-1.318-2.047.145-8.146 5.276-8.059 6.944.07 1.356 3.274 1.823 6.46 1.775 3.276-.05 3.634-.116 6.352.01 2.129.098 8.24 2.02 8.293 5.39.039 2.465-2.673 4.325-6.326 5.776-3.402 1.351-8.208 2.291-9.789 2.265-2.62-.043-7.763-.901-7.758-3.543.004-2.015 1.494-4.58 3.907-4.732.399-.025.74.028 1.047.588-.934.925-1.683 1.592-1.627 2.888.08 1.855 3.02 2.501 4.492 2.829.435.096 3.397.582 6.767-.489 4.035-1.28 5.742-2.996 5.71-5.134-.014-.85-.923-2.285-3.563-3.149-2.374-.776-3.476-1.012-6.64-.965-2.98.045-5.872.109-8.263-.43-1.134-.255-1.875-.804-1.875-.804L0 10.982V22.75C0 23.442.557 24 1.25 24h21.5c.692 0 1.25-.558 1.25-1.25V1.25C24 .557 23.442 0 22.75 0H1.25z" }) + ] + } + ); +}); + +exports.default = SiThespritersresource; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.d.ts new file mode 100644 index 000000000..23afe1c0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#BE3939"; +declare const SiThespritersresource: IconType; +export { SiThespritersresource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.mjs new file mode 100644 index 000000000..85c6f9819 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThespritersresource.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#BE3939"; +const SiThespritersresource = React.forwardRef(function SiThespritersresource2({ title = "The Spriters Resource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.25 0C.557 0 0 .557 0 1.25v6.674C4.756 2.364 9.47.04 12.879.066c1.472.011 3.551.87 3.46 2.747-.074 1.558-3.202 3.763-4.71 4.197L10.5 6.893c.075-.687 2.257-2.77 2.246-3.79-.006-.633-.976-1.38-1.853-1.318-2.047.145-8.146 5.276-8.059 6.944.07 1.356 3.274 1.823 6.46 1.775 3.276-.05 3.634-.116 6.352.01 2.129.098 8.24 2.02 8.293 5.39.039 2.465-2.673 4.325-6.326 5.776-3.402 1.351-8.208 2.291-9.789 2.265-2.62-.043-7.763-.901-7.758-3.543.004-2.015 1.494-4.58 3.907-4.732.399-.025.74.028 1.047.588-.934.925-1.683 1.592-1.627 2.888.08 1.855 3.02 2.501 4.492 2.829.435.096 3.397.582 6.767-.489 4.035-1.28 5.742-2.996 5.71-5.134-.014-.85-.923-2.285-3.563-3.149-2.374-.776-3.476-1.012-6.64-.965-2.98.045-5.872.109-8.263-.43-1.134-.255-1.875-.804-1.875-.804L0 10.982V22.75C0 23.442.557 24 1.25 24h21.5c.692 0 1.25-.558 1.25-1.25V1.25C24 .557 23.442 0 22.75 0H1.25z" }) + ] + } + ); +}); + +export { SiThespritersresource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.cjs new file mode 100644 index 000000000..cf8faf2e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiThestorygraph = React__namespace.forwardRef(function SiThestorygraph2({ title = "The StoryGraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.1722.6246a.6788.6788 0 0 0-.1314.0252L14.095 1.818c-.3504.1039-.545.4673-.4413.8178l5.1137 17.3544c.104.3505.4673.5452.8178.4414l3.9455-1.1553c.3504-.1038.5451-.4673.4413-.8178L18.8584 1.0911a.6522.6522 0 0 0-.6862-.4665zM.662 1.0522c-.3634 0-.6619.2986-.6619.662v18.0944c0 .3634.2985.6619.662.6619h4.1143c.3634 0 .6619-.2985.6619-.662V1.7143c0-.3634-.2985-.662-.6619-.662zm6.9438 0c-.3634 0-.662.2986-.662.662v18.0944c0 .3634.2986.6619.662.6619H11.72c.3634 0 .649-.2985.662-.662V1.7143c0-.3634-.2986-.662-.662-.662zM.3634 21.431c-.1947 0-.3634.1558-.3634.3634v1.2202c0 .1948.1558.3635.3634.3635h23.2712c.1947 0 .3635-.1558.3635-.3635v-1.2202c0-.1947-.1557-.3634-.3635-.3634z" }) + ] + } + ); +}); + +exports.default = SiThestorygraph; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.d.ts new file mode 100644 index 000000000..ca7ee1e26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiThestorygraph: IconType; +export { SiThestorygraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.mjs new file mode 100644 index 000000000..5eac29a21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThestorygraph.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiThestorygraph = React.forwardRef(function SiThestorygraph2({ title = "The StoryGraph", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.1722.6246a.6788.6788 0 0 0-.1314.0252L14.095 1.818c-.3504.1039-.545.4673-.4413.8178l5.1137 17.3544c.104.3505.4673.5452.8178.4414l3.9455-1.1553c.3504-.1038.5451-.4673.4413-.8178L18.8584 1.0911a.6522.6522 0 0 0-.6862-.4665zM.662 1.0522c-.3634 0-.6619.2986-.6619.662v18.0944c0 .3634.2985.6619.662.6619h4.1143c.3634 0 .6619-.2985.6619-.662V1.7143c0-.3634-.2985-.662-.6619-.662zm6.9438 0c-.3634 0-.662.2986-.662.662v18.0944c0 .3634.2986.6619.662.6619H11.72c.3634 0 .649-.2985.662-.662V1.7143c0-.3634-.2986-.662-.662-.662zM.3634 21.431c-.1947 0-.3634.1558-.3634.3634v1.2202c0 .1948.1558.3635.3634.3635h23.2712c.1947 0 .3635-.1558.3635-.3635v-1.2202c0-.1947-.1557-.3634-.3635-.3634z" }) + ] + } + ); +}); + +export { SiThestorygraph as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.cjs new file mode 100644 index 000000000..ae36ff7b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiThewashingtonpost = React__namespace.forwardRef(function SiThewashingtonpost2({ title = "The Washington Post", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 15.366V6.922l-2.188-1.998-2.426 2.569V5.66h-.357v2.236l-.571.595V6.589L16.65 4.924l-2.164 2.212.261.261.547-.547.69.619v2.093h-.119c-1.046 0-1.689.714-1.689 1.689 0 .5.072.737.143.904h.238a1.033 1.033 0 011.023-.833h.404v3.782c-1.26.428-1.998 1.522-2.14 3.02l.166.096c.57-.69 1.308-1.118 1.974-1.284v5.209l.048.023 2.26-2.069 1.07 1 .047-.025v-4.043c.476.142.904.475 1.213.904zm-2.426.523c-.571-.57-1.26-.88-2.165-.999V7.85l1.023-1.095 1.142 1.047zm-2.545 4.4l-.571-.523V8.825l.57-.571zm-5.78-6.017V7.04L11.06 4.9 8.8 7.255 6.399 4.9 4.115 7.302v-.785c0-2.021-1.26-1.688-1.26-2.997 0-.832.523-1.237 1.165-1.546l-.143-.142C1.927 2.522.88 3.544.88 4.662c0 1 .761 1.047.761 2.212v2.973C.214 9.847 0 11.18 0 11.703c0 .309.048.594.095.737h.19c.072-.404.31-.69.81-.69h.546v3.806l2.807 2.426 2.07-2.33 2.71 2.33zm-2.45 1.879l-1.927-1.642V7.73l.833-.832 1.094 1.094zm-4.424-.904l-.595.69-1.665-1.428V7.802l.904-.928L6.375 8.23Z" }) + ] + } + ); +}); + +exports.default = SiThewashingtonpost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.d.ts new file mode 100644 index 000000000..18005440f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiThewashingtonpost: IconType; +export { SiThewashingtonpost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.mjs new file mode 100644 index 000000000..df8019a0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThewashingtonpost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiThewashingtonpost = React.forwardRef(function SiThewashingtonpost2({ title = "The Washington Post", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 15.366V6.922l-2.188-1.998-2.426 2.569V5.66h-.357v2.236l-.571.595V6.589L16.65 4.924l-2.164 2.212.261.261.547-.547.69.619v2.093h-.119c-1.046 0-1.689.714-1.689 1.689 0 .5.072.737.143.904h.238a1.033 1.033 0 011.023-.833h.404v3.782c-1.26.428-1.998 1.522-2.14 3.02l.166.096c.57-.69 1.308-1.118 1.974-1.284v5.209l.048.023 2.26-2.069 1.07 1 .047-.025v-4.043c.476.142.904.475 1.213.904zm-2.426.523c-.571-.57-1.26-.88-2.165-.999V7.85l1.023-1.095 1.142 1.047zm-2.545 4.4l-.571-.523V8.825l.57-.571zm-5.78-6.017V7.04L11.06 4.9 8.8 7.255 6.399 4.9 4.115 7.302v-.785c0-2.021-1.26-1.688-1.26-2.997 0-.832.523-1.237 1.165-1.546l-.143-.142C1.927 2.522.88 3.544.88 4.662c0 1 .761 1.047.761 2.212v2.973C.214 9.847 0 11.18 0 11.703c0 .309.048.594.095.737h.19c.072-.404.31-.69.81-.69h.546v3.806l2.807 2.426 2.07-2.33 2.71 2.33zm-2.45 1.879l-1.927-1.642V7.73l.833-.832 1.094 1.094zm-4.424-.904l-.595.69-1.665-1.428V7.802l.904-.928L6.375 8.23Z" }) + ] + } + ); +}); + +export { SiThewashingtonpost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.cjs new file mode 100644 index 000000000..fa298f456 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003399"; +const SiTheweatherchannel = React__namespace.forwardRef(function SiTheweatherchannel2({ title = "The Weather Channel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0Zm5.7324 6.1055c.0355.1689.0528.4568.0528.752v.6152c0 .095-.0118.2237-.0118.2597.211-.199.56-.334.873-.334.392 0 .7054.1698.8028.4414.0601.1744.0781.2766.0781.5723v2.1582h-.789V8.4961c0-.3071-.0843-.42-.3145-.42-.199 0-.4583.1198-.6386.2833v2.211h-.8184V7.002c0-.2898-.0239-.5777-.0605-.7051zm-4.205.2754h3.0195l-.1387.7011h-1v3.4883h-.8574V7.082H1.5273Zm7.8906 1.037c.3546 0 .691.1213.8906.3262.2831.2898.4102.704.4102 1.3496v.1875H8.9355v.0235c0 .476.235.748.6503.748.2765 0 .5362-.1024.7832-.3086l.3145.4825c-.3564.2879-.7313.4277-1.164.4277-.8867 0-1.459-.6274-1.459-1.5957.0005-.5566.115-.924.3867-1.2246.253-.2837.5607-.416.9707-.416m.0117.5898c-.3078 0-.4824.2426-.4824.67v.0117h.9336v-.0371c0-.229-.023-.3481-.0957-.463-.0782-.1196-.1932-.1816-.3555-.1816m5.959 3.6426c.0354.1689.0547.4568.0547.752v.6132c0 .0968-.0137.2237-.0137.2598.211-.199.5606-.332.875-.332.3913 0 .704.169.8008.4394.0595.1767.0781.2791.0781.5742v2.1582h-.789V14.041c0-.306-.0855-.4219-.3145-.4219-.199 0-.457.1217-.6367.2852v2.211h-.8203v-3.5684c0-.2897-.0245-.5777-.0606-.705zm-13.8926.2754h.8926l.3613 1.6523c.1689.7838.2227 1.379.2227 1.379.0174-.1624.0911-.7603.2168-1.338l.373-1.6933h.9219l.3886 1.875c.0782.3913.1797 1.1093.1797 1.1093.0115-.1334.1438-.9846.2286-1.3945l.3437-1.5898h.8848L5.498 16.1484h-.9218l-.375-1.7031c-.1263-.5602-.1865-1.1026-.1973-1.2168 0 0-.0725.5902-.2012 1.205l-.3476 1.715h-.957Zm12.043.17c-.0301.2818-.047.6197-.047.9335h.7228l-.2051.5547h-.5176v1.5488c0 .3913.0719.4942.3496.4942.0721 0 .1448-.0191.289-.0606l.1016.4805c-.2368.0967-.4472.1406-.6582.1406-.4093 0-.7339-.1808-.83-.4531-.0482-.134-.0548-.1947-.0548-.4766V13.582h-.3066v-.5527h.3067c0-.3005-.0008-.5007.0293-.7285zm7.8828.8593c.0727.1268.1137.2663.127.4394.1153-.1556.3062-.3239.459-.3906.066-.0294.1746-.0488.2636-.0488.1214 0 .174.0117.3008.0664l-.2207.7129c-.08-.042-.1462-.0606-.2364-.0606-.1815 0-.3437.0835-.4921.2578v2.1836h-.8106v-2.0625c0-.4147-.0472-.7286-.1133-.9023zm-13.5996.0078c.3552 0 .6942.1212.8925.3262.2838.2903.4102.7058.4102 1.3496v.1855H7.3418v.0254c0 .4755.2356.7461.6504.7461.2777 0 .5355-.1023.7832-.3066l.3144.4824c-.3558.2885-.73.4277-1.164.4277-.8854-.0006-1.459-.6267-1.459-1.5957 0-.5554.1137-.924.3848-1.2246.2536-.2837.5607-.416.9707-.416zm11.1308 0c.3559 0 .693.1212.8926.3262.2825.2903.4102.7058.4102 1.3496v.1855h-1.7852v.0254c0 .4755.2364.7461.6523.7461.2771 0 .5362-.1023.7832-.3066l.3125.4824c-.3552.2885-.7281.4277-1.1621.4277-.8854 0-1.459-.6267-1.459-1.5957 0-.5554.1137-.924.3848-1.2246.2536-.2837.5613-.416.9707-.416m-8.0527.002c.5175 0 .8733.1925.9941.5351.0415.1263.0607.223.0547.5547l-.0176 1.0371v.0528c0 .3306.054.4567.2891.6328l-.4277.4941c-.187-.0787-.3555-.2169-.4336-.375-.0601.059-.1274.122-.1875.164-.1509.1083-.3667.168-.6192.168-.6882 0-1.0625-.3499-1.0625-.9648 0-.723.4995-1.0586 1.4805-1.0586.0607 0 .1161-.0015.1816.004v-.127c0-.342-.0662-.457-.3613-.457-.2584 0-.5594.1279-.8906.3515l-.3438-.58c.1635-.1029.2838-.163.502-.252.3005-.1275.5593-.1797.8418-.1797m-3.0664.5879c-.3072 0-.4805.2425-.4805.6699v.0117h.9336v-.037c0-.2291-.0242-.3488-.0957-.463-.0793-.1214-.194-.1816-.3574-.1816m11.1035 0c-.2895.0146-.455.2559-.455.6699v.0117h.9355v-.037c0-.2291-.0256-.3488-.0977-.463-.0781-.1214-.1932-.1816-.3555-.1816-.0096 0-.018-.0005-.0273 0m-7.832 1.211c-.5614.0005-.754.104-.754.4706 0 .241.1519.4043.3575.4043.1502 0 .2997-.0787.4199-.211l.0137-.664zM5.912 17.289c.0349.1695.0547.457.0547.7539v.6133c0 .0962-.0117.223-.0117.2598.2103-.1996.5598-.332.873-.332.392 0 .704.1677.8008.4394.0607.1755.0781.2779.0781.5742v2.1562h-.789v-2.0742c0-.3065-.0841-.4218-.3125-.4218-.199 0-.4584.1197-.6387.2832v2.2129h-.8203v-3.5684c0-.2903-.0245-.5777-.0606-.7051zm15.6836.0039c.03.1689.043.3706.043.8027V20.5c0 .5302.0058.6014.0527.6856.03.0534.098.084.164.084.0301 0 .0459-.001.088-.0118l.1386.4824c-.1376.0541-.3055.084-.4804.084-.3445 0-.6195-.161-.7168-.4219-.0607-.1557-.0723-.2514-.0723-.6914v-2.3008c0-.4039-.013-.6514-.043-.9297zm-18.0566.1816c.4153 0 .8309.1331 1.0605.332l-.3789.5723q-.3164-.2344-.668-.2344c-.2837 0-.5626.1378-.7129.3614-.1623.2404-.2343.5906-.2343 1.078 0 .5723.0476.8916.1738 1.1212.1689.3077.4467.4687.8086.4687.2464 0 .4697-.0711.7168-.2695l.3847.5293c-.3318.2699-.6854.3906-1.162.3906-.579 0-1.024-.1862-1.3673-.5781-.3378-.3793-.5078-.8851-.5078-1.5 0-.5241.092-.9395.2832-1.3008.327-.6083.9285-.9707 1.6035-.9707zm8.5117 1.1153c.0721.1262.1132.2585.1132.3847.1197-.083.2227-.1557.3555-.2285.1623-.0835.3724-.1308.5528-.1308.3438 0 .6466.179.7421.4453.0427.1142.0606.247.0606.4394v2.2539h-.7969V19.746c0-.3492-.0591-.4512-.2695-.4512-.1623 0-.3724.109-.5606.2774v2.1816h-.8086v-2.2363c0-.2651-.0339-.5165-.1054-.7227zm3.1445 0c.071.1262.1133.2585.1133.3847.1208-.083.2238-.1557.3554-.2285.1641-.0835.375-.1308.5547-.1308.3433 0 .6447.179.7403.4453.0445.1142.0605.247.0605.4394v2.254h-.7949V19.746c0-.3492-.0611-.4511-.2715-.4511-.1623 0-.3748.109-.5605.2773v2.1816h-.8086v-2.2363c0-.265-.036-.5165-.1074-.7226zm-5.5312.0117c.5163 0 .8725.192.9921.5371.0433.1262.0633.2247.0567.5547l-.0176 1.037v.0528c0 .3318.0534.4573.289.6328l-.4296.4942c-.1864-.0788-.3541-.2175-.4317-.375-.0607.0613-.1274.1214-.1875.164-.1508.1088-.3674.168-.621.168-.687 0-1.0606-.3498-1.0606-.9629 0-.7237.5002-1.0625 1.4824-1.0625.0601 0 .1155-.0002.1817.006v-.125c0-.3451-.067-.4571-.3633-.4571-.2597 0-.5607.1266-.8907.3496l-.3457-.5801c.1635-.1022.285-.1618.502-.252.3018-.1274.5594-.1816.8438-.1816m9.2695 0c.3546 0 .6936.1212.8926.3262.283.2885.4101.7045.4101 1.3476v.1875H18.453v.0254c0 .4749.235.7461.6504.7461.2777 0 .5362-.1042.7832-.3086l.3145.4844c-.3559.2885-.7301.4258-1.1641.4258-.886 0-1.457-.6268-1.457-1.5957 0-.5548.1142-.9221.3847-1.2227.2537-.2843.5594-.416.9688-.416m.0117.5898c-.3065 0-.4805.2414-.4805.67v.0117h.9336v-.0352c0-.2296-.0235-.3512-.0957-.4648-.0793-.1214-.1939-.1817-.3574-.1817m-9.0781 1.211c-.5596 0-.75.104-.75.4707 0 .2416.148.4043.3535.4043.1509 0 .3017-.0795.4219-.213l.0117-.662z" }) + ] + } + ); +}); + +exports.default = SiTheweatherchannel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.d.ts new file mode 100644 index 000000000..f1b30f578 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003399"; +declare const SiTheweatherchannel: IconType; +export { SiTheweatherchannel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.mjs new file mode 100644 index 000000000..097a7e1d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTheweatherchannel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003399"; +const SiTheweatherchannel = React.forwardRef(function SiTheweatherchannel2({ title = "The Weather Channel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0Zm5.7324 6.1055c.0355.1689.0528.4568.0528.752v.6152c0 .095-.0118.2237-.0118.2597.211-.199.56-.334.873-.334.392 0 .7054.1698.8028.4414.0601.1744.0781.2766.0781.5723v2.1582h-.789V8.4961c0-.3071-.0843-.42-.3145-.42-.199 0-.4583.1198-.6386.2833v2.211h-.8184V7.002c0-.2898-.0239-.5777-.0605-.7051zm-4.205.2754h3.0195l-.1387.7011h-1v3.4883h-.8574V7.082H1.5273Zm7.8906 1.037c.3546 0 .691.1213.8906.3262.2831.2898.4102.704.4102 1.3496v.1875H8.9355v.0235c0 .476.235.748.6503.748.2765 0 .5362-.1024.7832-.3086l.3145.4825c-.3564.2879-.7313.4277-1.164.4277-.8867 0-1.459-.6274-1.459-1.5957.0005-.5566.115-.924.3867-1.2246.253-.2837.5607-.416.9707-.416m.0117.5898c-.3078 0-.4824.2426-.4824.67v.0117h.9336v-.0371c0-.229-.023-.3481-.0957-.463-.0782-.1196-.1932-.1816-.3555-.1816m5.959 3.6426c.0354.1689.0547.4568.0547.752v.6132c0 .0968-.0137.2237-.0137.2598.211-.199.5606-.332.875-.332.3913 0 .704.169.8008.4394.0595.1767.0781.2791.0781.5742v2.1582h-.789V14.041c0-.306-.0855-.4219-.3145-.4219-.199 0-.457.1217-.6367.2852v2.211h-.8203v-3.5684c0-.2897-.0245-.5777-.0606-.705zm-13.8926.2754h.8926l.3613 1.6523c.1689.7838.2227 1.379.2227 1.379.0174-.1624.0911-.7603.2168-1.338l.373-1.6933h.9219l.3886 1.875c.0782.3913.1797 1.1093.1797 1.1093.0115-.1334.1438-.9846.2286-1.3945l.3437-1.5898h.8848L5.498 16.1484h-.9218l-.375-1.7031c-.1263-.5602-.1865-1.1026-.1973-1.2168 0 0-.0725.5902-.2012 1.205l-.3476 1.715h-.957Zm12.043.17c-.0301.2818-.047.6197-.047.9335h.7228l-.2051.5547h-.5176v1.5488c0 .3913.0719.4942.3496.4942.0721 0 .1448-.0191.289-.0606l.1016.4805c-.2368.0967-.4472.1406-.6582.1406-.4093 0-.7339-.1808-.83-.4531-.0482-.134-.0548-.1947-.0548-.4766V13.582h-.3066v-.5527h.3067c0-.3005-.0008-.5007.0293-.7285zm7.8828.8593c.0727.1268.1137.2663.127.4394.1153-.1556.3062-.3239.459-.3906.066-.0294.1746-.0488.2636-.0488.1214 0 .174.0117.3008.0664l-.2207.7129c-.08-.042-.1462-.0606-.2364-.0606-.1815 0-.3437.0835-.4921.2578v2.1836h-.8106v-2.0625c0-.4147-.0472-.7286-.1133-.9023zm-13.5996.0078c.3552 0 .6942.1212.8925.3262.2838.2903.4102.7058.4102 1.3496v.1855H7.3418v.0254c0 .4755.2356.7461.6504.7461.2777 0 .5355-.1023.7832-.3066l.3144.4824c-.3558.2885-.73.4277-1.164.4277-.8854-.0006-1.459-.6267-1.459-1.5957 0-.5554.1137-.924.3848-1.2246.2536-.2837.5607-.416.9707-.416zm11.1308 0c.3559 0 .693.1212.8926.3262.2825.2903.4102.7058.4102 1.3496v.1855h-1.7852v.0254c0 .4755.2364.7461.6523.7461.2771 0 .5362-.1023.7832-.3066l.3125.4824c-.3552.2885-.7281.4277-1.1621.4277-.8854 0-1.459-.6267-1.459-1.5957 0-.5554.1137-.924.3848-1.2246.2536-.2837.5613-.416.9707-.416m-8.0527.002c.5175 0 .8733.1925.9941.5351.0415.1263.0607.223.0547.5547l-.0176 1.0371v.0528c0 .3306.054.4567.2891.6328l-.4277.4941c-.187-.0787-.3555-.2169-.4336-.375-.0601.059-.1274.122-.1875.164-.1509.1083-.3667.168-.6192.168-.6882 0-1.0625-.3499-1.0625-.9648 0-.723.4995-1.0586 1.4805-1.0586.0607 0 .1161-.0015.1816.004v-.127c0-.342-.0662-.457-.3613-.457-.2584 0-.5594.1279-.8906.3515l-.3438-.58c.1635-.1029.2838-.163.502-.252.3005-.1275.5593-.1797.8418-.1797m-3.0664.5879c-.3072 0-.4805.2425-.4805.6699v.0117h.9336v-.037c0-.2291-.0242-.3488-.0957-.463-.0793-.1214-.194-.1816-.3574-.1816m11.1035 0c-.2895.0146-.455.2559-.455.6699v.0117h.9355v-.037c0-.2291-.0256-.3488-.0977-.463-.0781-.1214-.1932-.1816-.3555-.1816-.0096 0-.018-.0005-.0273 0m-7.832 1.211c-.5614.0005-.754.104-.754.4706 0 .241.1519.4043.3575.4043.1502 0 .2997-.0787.4199-.211l.0137-.664zM5.912 17.289c.0349.1695.0547.457.0547.7539v.6133c0 .0962-.0117.223-.0117.2598.2103-.1996.5598-.332.873-.332.392 0 .704.1677.8008.4394.0607.1755.0781.2779.0781.5742v2.1562h-.789v-2.0742c0-.3065-.0841-.4218-.3125-.4218-.199 0-.4584.1197-.6387.2832v2.2129h-.8203v-3.5684c0-.2903-.0245-.5777-.0606-.7051zm15.6836.0039c.03.1689.043.3706.043.8027V20.5c0 .5302.0058.6014.0527.6856.03.0534.098.084.164.084.0301 0 .0459-.001.088-.0118l.1386.4824c-.1376.0541-.3055.084-.4804.084-.3445 0-.6195-.161-.7168-.4219-.0607-.1557-.0723-.2514-.0723-.6914v-2.3008c0-.4039-.013-.6514-.043-.9297zm-18.0566.1816c.4153 0 .8309.1331 1.0605.332l-.3789.5723q-.3164-.2344-.668-.2344c-.2837 0-.5626.1378-.7129.3614-.1623.2404-.2343.5906-.2343 1.078 0 .5723.0476.8916.1738 1.1212.1689.3077.4467.4687.8086.4687.2464 0 .4697-.0711.7168-.2695l.3847.5293c-.3318.2699-.6854.3906-1.162.3906-.579 0-1.024-.1862-1.3673-.5781-.3378-.3793-.5078-.8851-.5078-1.5 0-.5241.092-.9395.2832-1.3008.327-.6083.9285-.9707 1.6035-.9707zm8.5117 1.1153c.0721.1262.1132.2585.1132.3847.1197-.083.2227-.1557.3555-.2285.1623-.0835.3724-.1308.5528-.1308.3438 0 .6466.179.7421.4453.0427.1142.0606.247.0606.4394v2.2539h-.7969V19.746c0-.3492-.0591-.4512-.2695-.4512-.1623 0-.3724.109-.5606.2774v2.1816h-.8086v-2.2363c0-.2651-.0339-.5165-.1054-.7227zm3.1445 0c.071.1262.1133.2585.1133.3847.1208-.083.2238-.1557.3554-.2285.1641-.0835.375-.1308.5547-.1308.3433 0 .6447.179.7403.4453.0445.1142.0605.247.0605.4394v2.254h-.7949V19.746c0-.3492-.0611-.4511-.2715-.4511-.1623 0-.3748.109-.5605.2773v2.1816h-.8086v-2.2363c0-.265-.036-.5165-.1074-.7226zm-5.5312.0117c.5163 0 .8725.192.9921.5371.0433.1262.0633.2247.0567.5547l-.0176 1.037v.0528c0 .3318.0534.4573.289.6328l-.4296.4942c-.1864-.0788-.3541-.2175-.4317-.375-.0607.0613-.1274.1214-.1875.164-.1508.1088-.3674.168-.621.168-.687 0-1.0606-.3498-1.0606-.9629 0-.7237.5002-1.0625 1.4824-1.0625.0601 0 .1155-.0002.1817.006v-.125c0-.3451-.067-.4571-.3633-.4571-.2597 0-.5607.1266-.8907.3496l-.3457-.5801c.1635-.1022.285-.1618.502-.252.3018-.1274.5594-.1816.8438-.1816m9.2695 0c.3546 0 .6936.1212.8926.3262.283.2885.4101.7045.4101 1.3476v.1875H18.453v.0254c0 .4749.235.7461.6504.7461.2777 0 .5362-.1042.7832-.3086l.3145.4844c-.3559.2885-.7301.4258-1.1641.4258-.886 0-1.457-.6268-1.457-1.5957 0-.5548.1142-.9221.3847-1.2227.2537-.2843.5594-.416.9688-.416m.0117.5898c-.3065 0-.4805.2414-.4805.67v.0117h.9336v-.0352c0-.2296-.0235-.3512-.0957-.4648-.0793-.1214-.1939-.1817-.3574-.1817m-9.0781 1.211c-.5596 0-.75.104-.75.4707 0 .2416.148.4043.3535.4043.1509 0 .3017-.0795.4219-.213l.0117-.662z" }) + ] + } + ); +}); + +export { SiTheweatherchannel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.cjs new file mode 100644 index 000000000..f8049beaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#248BFB"; +const SiThingiverse = React__namespace.forwardRef(function SiThingiverse2({ title = "Thingiverse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.955.005C5.425-.152-.091 5.485.007 11.805c-.235 6.756 5.537 12.25 12.052 12.196C18.621 23.9 23.912 18.595 24 12.03 24.031 5.483 18.505-.18 11.955.005zm-.047 1.701a10.276 10.276 0 0 1 7.36 17.529 10.275 10.275 0 0 1-17.556-7.287C1.71 6.308 6.268 1.728 11.907 1.706zm-5.55 4.781c-.322 0-.358.033-.358.361v2.248c0 .351.04.391.398.391h3.823c.274 0 .274.004.274.265v9.736a.176.176 0 0 0 .051.146c.04.038.093.059.148.053h2.555c.247-.003.283-.035.283-.28v-9.32c0-.124.004-.239 0-.39s.055-.21.218-.21h3.9c.319.004.35-.032.35-.344V6.855c0-.34-.024-.363-.37-.363h-5.626z" }) + ] + } + ); +}); + +exports.default = SiThingiverse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.d.ts new file mode 100644 index 000000000..0b03a3c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#248BFB"; +declare const SiThingiverse: IconType; +export { SiThingiverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.mjs new file mode 100644 index 000000000..d3f2acaf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThingiverse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#248BFB"; +const SiThingiverse = React.forwardRef(function SiThingiverse2({ title = "Thingiverse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.955.005C5.425-.152-.091 5.485.007 11.805c-.235 6.756 5.537 12.25 12.052 12.196C18.621 23.9 23.912 18.595 24 12.03 24.031 5.483 18.505-.18 11.955.005zm-.047 1.701a10.276 10.276 0 0 1 7.36 17.529 10.275 10.275 0 0 1-17.556-7.287C1.71 6.308 6.268 1.728 11.907 1.706zm-5.55 4.781c-.322 0-.358.033-.358.361v2.248c0 .351.04.391.398.391h3.823c.274 0 .274.004.274.265v9.736a.176.176 0 0 0 .051.146c.04.038.093.059.148.053h2.555c.247-.003.283-.035.283-.28v-9.32c0-.124.004-.239 0-.39s.055-.21.218-.21h3.9c.319.004.35-.032.35-.344V6.855c0-.34-.024-.363-.37-.363h-5.626z" }) + ] + } + ); +}); + +export { SiThingiverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThings.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThings.cjs new file mode 100644 index 000000000..99689d092 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThings.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2473E7"; +const SiThings = React__namespace.forwardRef(function SiThings2({ title = "Things", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.815 0 1.099.003c.492.01 1.138.013 1.856.165.713.147 1.489.49 2.086 1.04a3.94 3.94 0 0 1 1.167 1.911c.178.664.193 1.264.211 1.722l.021 1.026.016.905.047 2.685.049 2.71.016.925.016 1.055v.071c0 .338-.004.741-.062 1.193l-.636 4.978-.089.495a3.8 3.8 0 0 1-1.064 1.902c-.56.55-1.303.896-1.99 1.044-.693.153-1.32.158-1.796.167L15.698 24H8.3l-1.065-.003c-.477-.01-1.102-.014-1.795-.167-.687-.148-1.43-.494-1.991-1.044a3.8 3.8 0 0 1-1.064-1.902l-.088-.495-.637-4.978a9 9 0 0 1-.06-1.193v-.072l.015-1.054.016-.926.048-2.709.047-2.685.016-.905.02-1.026c.019-.458.034-1.059.212-1.722.173-.658.56-1.37 1.166-1.911.6-.55 1.376-.893 2.089-1.04C5.947.016 6.593.012 7.085.003L8.183 0zm1.625 4.203H6.196c-.149.003-.346.005-.566.051a1.35 1.35 0 0 0-.636.32c-.173.157-.295.36-.353.584-.055.203-.058.386-.063.526l-.005.335-.129 10.284-.003.16.018.017q.135.127.292.229l.039.025.198.105.359.139.344.084.397.064.396.049.257.031.25.035.408.076.188.046.173.052.102.036.098.037c.258.104.421.228.507.341.106.143.114.27.124.368l.011.217.012.255.038.887.039.86.009.2.005.103c.005.046.009.105.06.17s.16.138.335.19l.043.013q.276.072.561.09l.537.017h3.514l.537-.016c.19-.014.397-.044.563-.092l.039-.012c.176-.052.288-.124.337-.19.051-.065.055-.124.06-.17l.006-.104.008-.2.038-.859.038-.887.01-.255.013-.217c.01-.098.018-.225.125-.368.085-.114.25-.238.51-.342l.095-.037.102-.035.174-.052.186-.047.411-.075.247-.035.256-.03.399-.051.399-.063.341-.083.358-.138.195-.104.042-.026q.168-.11.314-.249l-.002-.159-.131-10.284-.006-.335c-.005-.141-.008-.323-.061-.526a1.2 1.2 0 0 0-.353-.584c-.18-.162-.4-.272-.636-.32-.22-.046-.418-.048-.567-.05zm-2.941 13.986-.009.182-.082 1.893h-.003l-.138.017-.023.001-.505.016h-3.485l-.504-.016-.161-.018h-.004l-.082-1.893-.01-.182zm1.427-11.177a.78.78 0 0 1 .722.093.67.67 0 0 1 .251.641c-.045.229-.232.421-.48.723a50 50 0 0 0-3.836 5.257c-.308.575-.593.808-.9.844-.308.037-.64-.123-1.087-.613l-1.824-1.755c-.29-.28-.488-.456-.57-.692a.66.66 0 0 1 .175-.72c.2-.182.512-.233.764-.16.253.074.445.27.741.539l1.546 1.417a51 51 0 0 1 3.844-4.982c.261-.293.425-.502.654-.592" }) + ] + } + ); +}); + +exports.default = SiThings; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThings.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThings.d.ts new file mode 100644 index 000000000..43eab6f6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThings.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2473E7"; +declare const SiThings: IconType; +export { SiThings as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThings.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThings.mjs new file mode 100644 index 000000000..614632800 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThings.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2473E7"; +const SiThings = React.forwardRef(function SiThings2({ title = "Things", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.815 0 1.099.003c.492.01 1.138.013 1.856.165.713.147 1.489.49 2.086 1.04a3.94 3.94 0 0 1 1.167 1.911c.178.664.193 1.264.211 1.722l.021 1.026.016.905.047 2.685.049 2.71.016.925.016 1.055v.071c0 .338-.004.741-.062 1.193l-.636 4.978-.089.495a3.8 3.8 0 0 1-1.064 1.902c-.56.55-1.303.896-1.99 1.044-.693.153-1.32.158-1.796.167L15.698 24H8.3l-1.065-.003c-.477-.01-1.102-.014-1.795-.167-.687-.148-1.43-.494-1.991-1.044a3.8 3.8 0 0 1-1.064-1.902l-.088-.495-.637-4.978a9 9 0 0 1-.06-1.193v-.072l.015-1.054.016-.926.048-2.709.047-2.685.016-.905.02-1.026c.019-.458.034-1.059.212-1.722.173-.658.56-1.37 1.166-1.911.6-.55 1.376-.893 2.089-1.04C5.947.016 6.593.012 7.085.003L8.183 0zm1.625 4.203H6.196c-.149.003-.346.005-.566.051a1.35 1.35 0 0 0-.636.32c-.173.157-.295.36-.353.584-.055.203-.058.386-.063.526l-.005.335-.129 10.284-.003.16.018.017q.135.127.292.229l.039.025.198.105.359.139.344.084.397.064.396.049.257.031.25.035.408.076.188.046.173.052.102.036.098.037c.258.104.421.228.507.341.106.143.114.27.124.368l.011.217.012.255.038.887.039.86.009.2.005.103c.005.046.009.105.06.17s.16.138.335.19l.043.013q.276.072.561.09l.537.017h3.514l.537-.016c.19-.014.397-.044.563-.092l.039-.012c.176-.052.288-.124.337-.19.051-.065.055-.124.06-.17l.006-.104.008-.2.038-.859.038-.887.01-.255.013-.217c.01-.098.018-.225.125-.368.085-.114.25-.238.51-.342l.095-.037.102-.035.174-.052.186-.047.411-.075.247-.035.256-.03.399-.051.399-.063.341-.083.358-.138.195-.104.042-.026q.168-.11.314-.249l-.002-.159-.131-10.284-.006-.335c-.005-.141-.008-.323-.061-.526a1.2 1.2 0 0 0-.353-.584c-.18-.162-.4-.272-.636-.32-.22-.046-.418-.048-.567-.05zm-2.941 13.986-.009.182-.082 1.893h-.003l-.138.017-.023.001-.505.016h-3.485l-.504-.016-.161-.018h-.004l-.082-1.893-.01-.182zm1.427-11.177a.78.78 0 0 1 .722.093.67.67 0 0 1 .251.641c-.045.229-.232.421-.48.723a50 50 0 0 0-3.836 5.257c-.308.575-.593.808-.9.844-.308.037-.64-.123-1.087-.613l-1.824-1.755c-.29-.28-.488-.456-.57-.692a.66.66 0 0 1 .175-.72c.2-.182.512-.233.764-.16.253.074.445.27.741.539l1.546 1.417a51 51 0 0 1 3.844-4.982c.261-.293.425-.502.654-.592" }) + ] + } + ); +}); + +export { SiThings as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.cjs new file mode 100644 index 000000000..b0ef0ba39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EE2624"; +const SiThinkpad = React__namespace.forwardRef(function SiThinkpad2({ title = "ThinkPad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.002 7.891a.677.677 0 0 0-.106 1.05.699.699 0 0 0 1.066-.103.675.675 0 0 0 .117-.379l.001-.001a.676.676 0 0 0-.203-.483.701.701 0 0 0-.875-.084zm10.239.403a1.268 1.268 0 0 0-.881-.342h-1.466v8.195h1.148v-3.559h.318c.675 0 1.27-.68 1.27-1.337l-.001-2.106a1.222 1.222 0 0 0-.388-.851zm-.654 3.052c0 .334-.283.334-.543.334V8.87h.158c.301 0 .384.198.384.71v1.766zm4.162 4.798l.001-.001h-.001zm-1.384-6.666c-.848 0-1.376.407-1.376 1.103v1.283h1.078v-.934c.009-.289-.023-.708.31-.708.307 0 .256.506.256.724 0 1.639-1.65 1.023-1.65 2.308v2.207c0 .498.247.763.755.763.417 0 .614-.141.859-.532h.068a.979.979 0 0 0 .065.451h1.02v-5.559c-.001-.679-.536-1.106-1.385-1.106zm.304 5.561a.315.315 0 0 1-.317.293.298.298 0 0 1-.107-.011.287.287 0 0 1-.162-.134.257.257 0 0 1-.03-.101v-1.713c.003-.328.287-.517.613-.693h.003v2.359zm3.268-7.109v2.039h-.027a1.054 1.054 0 0 0-.842-.503c-.428 0-.809.247-.809.722v5.253c-.013.551.371.782.809.782.322-.038.612-.212.798-.477h.071v.396H24V7.93h-1.063zm-.001 6.992c-.013.352-.154.411-.326.411-.158 0-.29-.102-.29-.411v-4.168c0-.259.097-.384.29-.384.158 0 .313.039.326.391v4.161zM0 8.951h1.09v7.169h1.177V8.951h1.078V7.92H0zm5.504.518a.84.84 0 0 0-.799.475h-.046V7.905H3.604v8.224h1.064v-5.388c0-.174.046-.379.317-.379.245 0 .298.165.298.389v5.379H6.35v-5.602c0-.693-.116-1.059-.846-1.059zm1.352.083h1.06v6.583h-1.06zm3.448-.069a.883.883 0 0 0-.799.465h-.044v-.389H8.404v6.581h1.054v-5.334c0-.185.014-.43.342-.43.245 0 .282.22.282.43v5.336h1.068v-5.496c.001-.693.01-1.163-.846-1.163zm4.193.079H13.43l-.611 3.033h-.101V7.928h-1.065v8.215h1.065v-3.476h.101l.622 3.476h1.091l-.676-3.604z" }) + ] + } + ); +}); + +exports.default = SiThinkpad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.d.ts new file mode 100644 index 000000000..58509a409 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EE2624"; +declare const SiThinkpad: IconType; +export { SiThinkpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.mjs new file mode 100644 index 000000000..c3e29c3ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThinkpad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EE2624"; +const SiThinkpad = React.forwardRef(function SiThinkpad2({ title = "ThinkPad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.002 7.891a.677.677 0 0 0-.106 1.05.699.699 0 0 0 1.066-.103.675.675 0 0 0 .117-.379l.001-.001a.676.676 0 0 0-.203-.483.701.701 0 0 0-.875-.084zm10.239.403a1.268 1.268 0 0 0-.881-.342h-1.466v8.195h1.148v-3.559h.318c.675 0 1.27-.68 1.27-1.337l-.001-2.106a1.222 1.222 0 0 0-.388-.851zm-.654 3.052c0 .334-.283.334-.543.334V8.87h.158c.301 0 .384.198.384.71v1.766zm4.162 4.798l.001-.001h-.001zm-1.384-6.666c-.848 0-1.376.407-1.376 1.103v1.283h1.078v-.934c.009-.289-.023-.708.31-.708.307 0 .256.506.256.724 0 1.639-1.65 1.023-1.65 2.308v2.207c0 .498.247.763.755.763.417 0 .614-.141.859-.532h.068a.979.979 0 0 0 .065.451h1.02v-5.559c-.001-.679-.536-1.106-1.385-1.106zm.304 5.561a.315.315 0 0 1-.317.293.298.298 0 0 1-.107-.011.287.287 0 0 1-.162-.134.257.257 0 0 1-.03-.101v-1.713c.003-.328.287-.517.613-.693h.003v2.359zm3.268-7.109v2.039h-.027a1.054 1.054 0 0 0-.842-.503c-.428 0-.809.247-.809.722v5.253c-.013.551.371.782.809.782.322-.038.612-.212.798-.477h.071v.396H24V7.93h-1.063zm-.001 6.992c-.013.352-.154.411-.326.411-.158 0-.29-.102-.29-.411v-4.168c0-.259.097-.384.29-.384.158 0 .313.039.326.391v4.161zM0 8.951h1.09v7.169h1.177V8.951h1.078V7.92H0zm5.504.518a.84.84 0 0 0-.799.475h-.046V7.905H3.604v8.224h1.064v-5.388c0-.174.046-.379.317-.379.245 0 .298.165.298.389v5.379H6.35v-5.602c0-.693-.116-1.059-.846-1.059zm1.352.083h1.06v6.583h-1.06zm3.448-.069a.883.883 0 0 0-.799.465h-.044v-.389H8.404v6.581h1.054v-5.334c0-.185.014-.43.342-.43.245 0 .282.22.282.43v5.336h1.068v-5.496c.001-.693.01-1.163-.846-1.163zm4.193.079H13.43l-.611 3.033h-.101V7.928h-1.065v8.215h1.065v-3.476h.101l.622 3.476h1.091l-.676-3.604z" }) + ] + } + ); +}); + +export { SiThinkpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.cjs new file mode 100644 index 000000000..7f4454494 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F213A4"; +const SiThirdweb = React__namespace.forwardRef(function SiThirdweb2({ title = "thirdweb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 13.5937c-.1163.393-.2906.7639-.4387 1.143a870.5395 870.5395 0 0 1-1.2935 3.2333c-.0994.2468-.2005.4931-.2971.7412a.9115.9115 0 0 1-.8479.5725.912.912 0 0 1-.8442-.5778c-1.9393-4.8534-3.1898-7.9705-5.1009-12.7515a.9012.9012 0 0 1 .0322-.76.898.898 0 0 1 .6024-.4628c.0174-.004.0343-.0099.0517-.0151h4.2467c.0134.004.026.0093.0395.0122a.9061.9061 0 0 1 .6613.5671c.2472.6211.4947 1.2404.7426 1.858a8310.711 8310.711 0 0 1 1.945 4.8654c.1702.4274.3597.8472.4991 1.2862zm-19.0021-8.88c.0482.0135.0965.0251.1435.0414a.8605.8605 0 0 1 .5434.506 910.6628 910.6628 0 0 1 1.2551 3.1326c.6288 1.57 1.255 3.1412 1.8857 4.7105a.9012.9012 0 0 1 0 .6987c-.6574 1.6411-1.3168 3.2814-1.9757 4.9219a.8993.8993 0 0 1-.3286.4067c-.308.2088-.7209.2057-1.0283-.0032a.9163.9163 0 0 1-.3423-.4344c-.394-.9997-.796-1.9966-1.1947-2.9946-1.078-2.727-2.17-5.4485-3.2582-8.1715-.208-.52-.4144-1.041-.6253-1.5604-.1912-.449.009-.9714.451-1.1768a1.736 1.736 0 0 1 .2376-.0768zm7.6272 0c.147.0306.2856.0924.4067.1811a.9537.9537 0 0 1 .3005.4117c.8137 2.0331 1.6242 4.0675 2.44 6.0998.2243.5613.4474 1.1232.6752 1.6833a.931.931 0 0 1 0 .7244l-1.9571 4.8823c-.1296.3231-.3643.524-.7095.5764-.4295.0646-.8136-.1473-.9687-.524-.9815-2.4381-1.9539-4.8798-2.9293-7.3203-.5451-1.3667-1.091-2.7331-1.6376-4.0991-.1813-.4536-.3568-.9095-.5462-1.3596a.9105.9105 0 0 1 .0264-.7696.9072.9072 0 0 1 .607-.4724c.0157-.0034.0308-.0093.0459-.014Z" }) + ] + } + ); +}); + +exports.default = SiThirdweb; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.d.ts new file mode 100644 index 000000000..51b5ced52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F213A4"; +declare const SiThirdweb: IconType; +export { SiThirdweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.mjs new file mode 100644 index 000000000..32fa9ae25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThirdweb.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F213A4"; +const SiThirdweb = React.forwardRef(function SiThirdweb2({ title = "thirdweb", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 13.5937c-.1163.393-.2906.7639-.4387 1.143a870.5395 870.5395 0 0 1-1.2935 3.2333c-.0994.2468-.2005.4931-.2971.7412a.9115.9115 0 0 1-.8479.5725.912.912 0 0 1-.8442-.5778c-1.9393-4.8534-3.1898-7.9705-5.1009-12.7515a.9012.9012 0 0 1 .0322-.76.898.898 0 0 1 .6024-.4628c.0174-.004.0343-.0099.0517-.0151h4.2467c.0134.004.026.0093.0395.0122a.9061.9061 0 0 1 .6613.5671c.2472.6211.4947 1.2404.7426 1.858a8310.711 8310.711 0 0 1 1.945 4.8654c.1702.4274.3597.8472.4991 1.2862zm-19.0021-8.88c.0482.0135.0965.0251.1435.0414a.8605.8605 0 0 1 .5434.506 910.6628 910.6628 0 0 1 1.2551 3.1326c.6288 1.57 1.255 3.1412 1.8857 4.7105a.9012.9012 0 0 1 0 .6987c-.6574 1.6411-1.3168 3.2814-1.9757 4.9219a.8993.8993 0 0 1-.3286.4067c-.308.2088-.7209.2057-1.0283-.0032a.9163.9163 0 0 1-.3423-.4344c-.394-.9997-.796-1.9966-1.1947-2.9946-1.078-2.727-2.17-5.4485-3.2582-8.1715-.208-.52-.4144-1.041-.6253-1.5604-.1912-.449.009-.9714.451-1.1768a1.736 1.736 0 0 1 .2376-.0768zm7.6272 0c.147.0306.2856.0924.4067.1811a.9537.9537 0 0 1 .3005.4117c.8137 2.0331 1.6242 4.0675 2.44 6.0998.2243.5613.4474 1.1232.6752 1.6833a.931.931 0 0 1 0 .7244l-1.9571 4.8823c-.1296.3231-.3643.524-.7095.5764-.4295.0646-.8136-.1473-.9687-.524-.9815-2.4381-1.9539-4.8798-2.9293-7.3203-.5451-1.3667-1.091-2.7331-1.6376-4.0991-.1813-.4536-.3568-.9095-.5462-1.3596a.9105.9105 0 0 1 .0264-.7696.9072.9072 0 0 1 .607-.4724c.0157-.0034.0308-.0093.0459-.014Z" }) + ] + } + ); +}); + +export { SiThirdweb as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.cjs new file mode 100644 index 000000000..7aa50946e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0099FF"; +const SiThreadless = React__namespace.forwardRef(function SiThreadless2({ title = "Threadless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.866 12.281c-.08-.188-.177-.734-.019-1.047.19.243.403.552.019 1.047zm-1.49-3.192c-.231.826-.262 2.255-.027 2.852.643-1.25.111-2.625.027-2.852zm-1.63 2.403c.05-1.249.05-2.138-.22-2.64-.228.678-.114 1.388.22 2.64zm.491 1.2c.422.553.654.257.716-.002-.538-2.057-.18-3.149.187-4.397 0 0-.002 0-.003-.002-.02-.014-1.055.404-1.164.448.833 1.335-.164 2.85.264 3.953zm5.03-.183c.741-.561.678-1.729.776-2.34a.024.024 0 01-.003 0s-1.154.444-1.291.498c.594.314.79.956.518 1.842zm-6.58-.155c.232.529.65.312.824.09-.231-.469-.292-.668-.41-1.041-.383.058-.674.363-.415.95zm4.882.362c.534-.533.817-1.614.836-2.18a.031.031 0 00-.003-.001s-1.085.416-1.19.458c.446.468.35 1.017-.048 1.697.117.14.3.092.405.027zm2.817-1.715c.05.496-.082.952-.225 1.179.459.053.754-.709.225-1.179zm-1.713.365c.004.366-.22.875-.22.875.462.31.673-.27.22-.875zm-2.103 1.275c-.392-.722-.262-1.492.089-2.044l-.002-.001-.492.184a4.115 4.115 0 01-.52 1.768c.094.282.796.418.925.094zm3.316.047c-.544.517-1.093.546-1.66.074-.298.423-.688.603-1.37.359-.395.311-1.159.318-1.574-.063-.419.636-1.078.551-1.497-.096-.271.516-.776.535-1.184.171-.37.452-.875.496-1.171.044-.129.437-.691.699-1.334.348-.2.36-.831.684-1.54.388-.928.883-1.681.729-1.666-1.276l-.38-.097s.046 1.276.032 1.422c-.016.455-.38.538-.498.573-.344.101-.656-.178-.7-.419-.16-.899-.332-1.924-.38-1.94-.234-.076-.45 2.15-1.068 2.647-.672.54-1.12.125-1.595-.178l-.409.433c-.169-.917-.29-1.79-.059-2.628-.3.077-.737-.055-.8-.267.214-.295.566-.288.759-.258.11-.359.138-.795.042-1.255.617.017.66.48.662.608a1.614 1.614 0 01-.093.559.683.683 0 01.644.011.41.41 0 01.216.33 1.665 1.665 0 01-.83.159c-.457 1.142.27 1.924.908 2.104.321-2.082.139-4.514.652-5.645-.001 0-.002 0-.003-.002l-2.04.804a4.19 4.19 0 00-.294 1.127c-.055.024-1.874.707-1.866.75.07.363.075.723 0 1.08l-.008.004c-.25.1-.541.177-.742.367-.164.155.22.293.328.324a.984.984 0 00.286.026.716.716 0 00.135-.02q-.025.093-.045.187a3.814 3.814 0 00-.082.759c-.014.565.085 1.13.186 1.682l.567-.223.104-.038c.145.093.295.178.461.233.358.116.739-.097 1.062-.222.451-.175.903-.351 1.35-.536a.622.622 0 00.238.214c.346.184.963-.186 1.248-.297l.222-.087a.709.709 0 00.24.244.53.53 0 00.337.052 1.002 1.002 0 00.189-.051c.327-.109.647-.244.967-.372.51.073.957-.144 1.465-.342l.05-.02c.23.055.446.033.663-.027.191-.053.384-.135.59-.218.284.244 1.006-.111 1.104-.15.366.273 1.084-.043 1.176-.097.247.274.568.426.953.292.209-.073.416-.15.623-.229.304.158.663.179 1 .091a4.515 4.515 0 00.45-.144c.178.052.354.085.542.076.318-.015.654-.198.946-.318.382.303 1.186.068 1.634-.133a2.434 2.434 0 001.401.146c.137-.026 1.687-.606 2.413-.91-.599.22-1.31.221-1.958-.13zM5.169 9.794l-.211 3.028c.318-.498.468-2.332.211-3.028zm7.725 3.156c.036.131.377.098.418-.105-.386-.557-.667-1.827.664-1.997-.207-1.118-.047-1.95.438-2.735a.015.015 0 01-.002-.002c-.016-.014-2.016.763-2.04.803a3.54 3.54 0 00-.51 1.639c.507-.028.73 1.298 1.032 2.397zm-6.095.993s.182.278.33.095c.155-.193-.116-1.998-.12-2.025h-.004c-.088.009-.226.083-.301.111l-.06.023a1.889 1.889 0 01.128.509c.058.466.027 1.287.027 1.287zm1.272-2.047c.403.5.542 1.04.346 1.724.253.356.447.314.741.023-.595-.405-.555-1.904.442-2.462a.425.425 0 00-.038.011c-.241.085-1.587.555-1.976.782-.008.003-.053.031-.077.046a1.965 1.965 0 01.352.081zm3.463 1.188c.137.08.551.031.652-.414-.21-.686-.257-.943-.354-1.385-.455.085-.697 1.565-.298 1.8zm-1.564.361c.176.105.774.153.847-.23-.205-1.618.497-2.497.941-2.642l-.033.01-.107.038-1.84.642c.765.448.8 1.629.192 2.182zm-.402-.287c.597-.633.351-1.314.076-1.35-.484.432-.396 1.128-.076 1.35zm13.072-2.192a.077.077 0 00.035-.01.03.03 0 00.01-.03c0-.014-.005-.023-.014-.026a.066.066 0 00-.038-.004l-.056.006.007.07zm1.352-.601c0-.003-.003-.005-.004-.008l-1.105.42a.33.33 0 11-.355-.093l-.556.211a1.473 1.473 0 01.088.194c.139.381.13.845-.086 1.347 1.464-.068 2.103-1.138 2.018-2.072zm-1.384.358a.275.275 0 11-.246.302.276.276 0 01.246-.303zm-.092.13l.032.307.055-.005-.013-.129.027-.004a.02.02 0 01.015.005.07.07 0 01.014.017l.076.098.064-.007-.096-.123a.02.02 0 000-.003.078.078 0 00.02-.011.081.081 0 00.03-.079.083.083 0 00-.045-.07.13.13 0 00-.067-.008z" }) + ] + } + ); +}); + +exports.default = SiThreadless; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.d.ts new file mode 100644 index 000000000..165c7c5f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0099FF"; +declare const SiThreadless: IconType; +export { SiThreadless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.mjs new file mode 100644 index 000000000..7a52f479d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreadless.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0099FF"; +const SiThreadless = React.forwardRef(function SiThreadless2({ title = "Threadless", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.866 12.281c-.08-.188-.177-.734-.019-1.047.19.243.403.552.019 1.047zm-1.49-3.192c-.231.826-.262 2.255-.027 2.852.643-1.25.111-2.625.027-2.852zm-1.63 2.403c.05-1.249.05-2.138-.22-2.64-.228.678-.114 1.388.22 2.64zm.491 1.2c.422.553.654.257.716-.002-.538-2.057-.18-3.149.187-4.397 0 0-.002 0-.003-.002-.02-.014-1.055.404-1.164.448.833 1.335-.164 2.85.264 3.953zm5.03-.183c.741-.561.678-1.729.776-2.34a.024.024 0 01-.003 0s-1.154.444-1.291.498c.594.314.79.956.518 1.842zm-6.58-.155c.232.529.65.312.824.09-.231-.469-.292-.668-.41-1.041-.383.058-.674.363-.415.95zm4.882.362c.534-.533.817-1.614.836-2.18a.031.031 0 00-.003-.001s-1.085.416-1.19.458c.446.468.35 1.017-.048 1.697.117.14.3.092.405.027zm2.817-1.715c.05.496-.082.952-.225 1.179.459.053.754-.709.225-1.179zm-1.713.365c.004.366-.22.875-.22.875.462.31.673-.27.22-.875zm-2.103 1.275c-.392-.722-.262-1.492.089-2.044l-.002-.001-.492.184a4.115 4.115 0 01-.52 1.768c.094.282.796.418.925.094zm3.316.047c-.544.517-1.093.546-1.66.074-.298.423-.688.603-1.37.359-.395.311-1.159.318-1.574-.063-.419.636-1.078.551-1.497-.096-.271.516-.776.535-1.184.171-.37.452-.875.496-1.171.044-.129.437-.691.699-1.334.348-.2.36-.831.684-1.54.388-.928.883-1.681.729-1.666-1.276l-.38-.097s.046 1.276.032 1.422c-.016.455-.38.538-.498.573-.344.101-.656-.178-.7-.419-.16-.899-.332-1.924-.38-1.94-.234-.076-.45 2.15-1.068 2.647-.672.54-1.12.125-1.595-.178l-.409.433c-.169-.917-.29-1.79-.059-2.628-.3.077-.737-.055-.8-.267.214-.295.566-.288.759-.258.11-.359.138-.795.042-1.255.617.017.66.48.662.608a1.614 1.614 0 01-.093.559.683.683 0 01.644.011.41.41 0 01.216.33 1.665 1.665 0 01-.83.159c-.457 1.142.27 1.924.908 2.104.321-2.082.139-4.514.652-5.645-.001 0-.002 0-.003-.002l-2.04.804a4.19 4.19 0 00-.294 1.127c-.055.024-1.874.707-1.866.75.07.363.075.723 0 1.08l-.008.004c-.25.1-.541.177-.742.367-.164.155.22.293.328.324a.984.984 0 00.286.026.716.716 0 00.135-.02q-.025.093-.045.187a3.814 3.814 0 00-.082.759c-.014.565.085 1.13.186 1.682l.567-.223.104-.038c.145.093.295.178.461.233.358.116.739-.097 1.062-.222.451-.175.903-.351 1.35-.536a.622.622 0 00.238.214c.346.184.963-.186 1.248-.297l.222-.087a.709.709 0 00.24.244.53.53 0 00.337.052 1.002 1.002 0 00.189-.051c.327-.109.647-.244.967-.372.51.073.957-.144 1.465-.342l.05-.02c.23.055.446.033.663-.027.191-.053.384-.135.59-.218.284.244 1.006-.111 1.104-.15.366.273 1.084-.043 1.176-.097.247.274.568.426.953.292.209-.073.416-.15.623-.229.304.158.663.179 1 .091a4.515 4.515 0 00.45-.144c.178.052.354.085.542.076.318-.015.654-.198.946-.318.382.303 1.186.068 1.634-.133a2.434 2.434 0 001.401.146c.137-.026 1.687-.606 2.413-.91-.599.22-1.31.221-1.958-.13zM5.169 9.794l-.211 3.028c.318-.498.468-2.332.211-3.028zm7.725 3.156c.036.131.377.098.418-.105-.386-.557-.667-1.827.664-1.997-.207-1.118-.047-1.95.438-2.735a.015.015 0 01-.002-.002c-.016-.014-2.016.763-2.04.803a3.54 3.54 0 00-.51 1.639c.507-.028.73 1.298 1.032 2.397zm-6.095.993s.182.278.33.095c.155-.193-.116-1.998-.12-2.025h-.004c-.088.009-.226.083-.301.111l-.06.023a1.889 1.889 0 01.128.509c.058.466.027 1.287.027 1.287zm1.272-2.047c.403.5.542 1.04.346 1.724.253.356.447.314.741.023-.595-.405-.555-1.904.442-2.462a.425.425 0 00-.038.011c-.241.085-1.587.555-1.976.782-.008.003-.053.031-.077.046a1.965 1.965 0 01.352.081zm3.463 1.188c.137.08.551.031.652-.414-.21-.686-.257-.943-.354-1.385-.455.085-.697 1.565-.298 1.8zm-1.564.361c.176.105.774.153.847-.23-.205-1.618.497-2.497.941-2.642l-.033.01-.107.038-1.84.642c.765.448.8 1.629.192 2.182zm-.402-.287c.597-.633.351-1.314.076-1.35-.484.432-.396 1.128-.076 1.35zm13.072-2.192a.077.077 0 00.035-.01.03.03 0 00.01-.03c0-.014-.005-.023-.014-.026a.066.066 0 00-.038-.004l-.056.006.007.07zm1.352-.601c0-.003-.003-.005-.004-.008l-1.105.42a.33.33 0 11-.355-.093l-.556.211a1.473 1.473 0 01.088.194c.139.381.13.845-.086 1.347 1.464-.068 2.103-1.138 2.018-2.072zm-1.384.358a.275.275 0 11-.246.302.276.276 0 01.246-.303zm-.092.13l.032.307.055-.005-.013-.129.027-.004a.02.02 0 01.015.005.07.07 0 01.014.017l.076.098.064-.007-.096-.123a.02.02 0 000-.003.078.078 0 00.02-.011.081.081 0 00.03-.079.083.083 0 00-.045-.07.13.13 0 00-.067-.008z" }) + ] + } + ); +}); + +export { SiThreadless as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.cjs new file mode 100644 index 000000000..2babeaf43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiThreads = React__namespace.forwardRef(function SiThreads2({ title = "Threads", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a13.853 13.853 0 0 1 3.02.142c-.126-.742-.375-1.332-.75-1.757-.513-.586-1.308-.883-2.359-.89h-.029c-.844 0-1.992.232-2.721 1.32L7.734 7.847c.98-1.454 2.568-2.256 4.478-2.256h.044c3.194.02 5.097 1.975 5.287 5.388.108.046.216.094.321.142 1.49.7 2.58 1.761 3.154 3.07.797 1.82.871 4.79-1.548 7.158-1.85 1.81-4.094 2.628-7.277 2.65Zm1.003-11.69c-.242 0-.487.007-.739.021-1.836.103-2.98.946-2.916 2.143.067 1.256 1.452 1.839 2.784 1.767 1.224-.065 2.818-.543 3.086-3.71a10.5 10.5 0 0 0-2.215-.221z" }) + ] + } + ); +}); + +exports.default = SiThreads; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.d.ts new file mode 100644 index 000000000..308fff2c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiThreads: IconType; +export { SiThreads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.mjs new file mode 100644 index 000000000..e5dce78aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreads.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiThreads = React.forwardRef(function SiThreads2({ title = "Threads", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a13.853 13.853 0 0 1 3.02.142c-.126-.742-.375-1.332-.75-1.757-.513-.586-1.308-.883-2.359-.89h-.029c-.844 0-1.992.232-2.721 1.32L7.734 7.847c.98-1.454 2.568-2.256 4.478-2.256h.044c3.194.02 5.097 1.975 5.287 5.388.108.046.216.094.321.142 1.49.7 2.58 1.761 3.154 3.07.797 1.82.871 4.79-1.548 7.158-1.85 1.81-4.094 2.628-7.277 2.65Zm1.003-11.69c-.242 0-.487.007-.739.021-1.836.103-2.98.946-2.916 2.143.067 1.256 1.452 1.839 2.784 1.767 1.224-.065 2.818-.543 3.086-3.71a10.5 10.5 0 0 0-2.215-.221z" }) + ] + } + ); +}); + +export { SiThreads as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.cjs new file mode 100644 index 000000000..13d15119a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiThreedotjs = React__namespace.forwardRef(function SiThreedotjs2({ title = "Three.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.38 0a.268.268 0 0 0-.256.332l2.894 11.716a.268.268 0 0 0 .01.04l2.89 11.708a.268.268 0 0 0 .447.128L23.802 7.15a.268.268 0 0 0-.112-.45l-5.784-1.667a.268.268 0 0 0-.123-.035L6.38 1.715a.268.268 0 0 0-.144-.04L.456.01A.268.268 0 0 0 .38 0zm.374.654L5.71 2.08 1.99 5.664zM6.61 2.34l4.864 1.4-3.65 3.515zm-.522.12l1.217 4.926-4.877-1.4zm6.28 1.538l4.878 1.404-3.662 3.53zm-.52.13l1.208 4.9-4.853-1.392zm6.3 1.534l4.947 1.424-3.715 3.574zm-.524.12l1.215 4.926-4.876-1.398zm-15.432.696l4.964 1.424-3.726 3.586zM8.047 8.15l4.877 1.4-3.66 3.527zm-.518.137l1.236 5.017-4.963-1.432zm6.274 1.535l4.965 1.425-3.73 3.586zm-.52.127l1.235 5.012-4.958-1.43zm-9.63 2.438l4.873 1.406-3.656 3.523zm5.854 1.687l4.863 1.403-3.648 3.51zm-.54.04l1.214 4.927-4.875-1.4zm-3.896 4.02l5.037 1.442-3.782 3.638z" }) + ] + } + ); +}); + +exports.default = SiThreedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.d.ts new file mode 100644 index 000000000..6476b2456 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiThreedotjs: IconType; +export { SiThreedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.mjs new file mode 100644 index 000000000..542e1eef8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiThreedotjs = React.forwardRef(function SiThreedotjs2({ title = "Three.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.38 0a.268.268 0 0 0-.256.332l2.894 11.716a.268.268 0 0 0 .01.04l2.89 11.708a.268.268 0 0 0 .447.128L23.802 7.15a.268.268 0 0 0-.112-.45l-5.784-1.667a.268.268 0 0 0-.123-.035L6.38 1.715a.268.268 0 0 0-.144-.04L.456.01A.268.268 0 0 0 .38 0zm.374.654L5.71 2.08 1.99 5.664zM6.61 2.34l4.864 1.4-3.65 3.515zm-.522.12l1.217 4.926-4.877-1.4zm6.28 1.538l4.878 1.404-3.662 3.53zm-.52.13l1.208 4.9-4.853-1.392zm6.3 1.534l4.947 1.424-3.715 3.574zm-.524.12l1.215 4.926-4.876-1.398zm-15.432.696l4.964 1.424-3.726 3.586zM8.047 8.15l4.877 1.4-3.66 3.527zm-.518.137l1.236 5.017-4.963-1.432zm6.274 1.535l4.965 1.425-3.73 3.586zm-.52.127l1.235 5.012-4.958-1.43zm-9.63 2.438l4.873 1.406-3.656 3.523zm5.854 1.687l4.863 1.403-3.648 3.51zm-.54.04l1.214 4.927-4.875-1.4zm-3.896 4.02l5.037 1.442-3.782 3.638z" }) + ] + } + ); +}); + +export { SiThreedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.cjs new file mode 100644 index 000000000..57534c863 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3FE669"; +const SiThreema = React__namespace.forwardRef(function SiThreema2({ title = "Threema", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.998 20.486a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514zm-6.335 0a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514zm12.671 0a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514zM12 0c5.7 0 10.322 4.066 10.322 9.082 0 5.016-4.622 9.083-10.322 9.083a11.45 11.45 0 0 1-4.523-.917l-5.171 1.293 1.105-4.42c-1.094-1.442-1.733-3.175-1.733-5.039C1.678 4.066 6.3 0 12 0zm-.001 4.235A2.926 2.926 0 0 0 9.072 7.16v1.17h-.115a.47.47 0 0 0-.47.47v4.126c0 .26.21.471.47.471h6.086c.26 0 .47-.21.47-.47V8.798a.47.47 0 0 0-.47-.47h-.115v-1.17a2.927 2.927 0 0 0-2.93-2.924zm0 1.17c.972 0 1.758.786 1.758 1.754v1.17h-3.514v-1.17c0-.968.786-1.754 1.756-1.754z" }) + ] + } + ); +}); + +exports.default = SiThreema; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.d.ts new file mode 100644 index 000000000..43d0027d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3FE669"; +declare const SiThreema: IconType; +export { SiThreema as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.mjs new file mode 100644 index 000000000..955d55969 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThreema.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3FE669"; +const SiThreema = React.forwardRef(function SiThreema2({ title = "Threema", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.998 20.486a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514zm-6.335 0a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514zm12.671 0a1.757 1.757 0 1 1 0 3.514 1.757 1.757 0 0 1 0-3.514zM12 0c5.7 0 10.322 4.066 10.322 9.082 0 5.016-4.622 9.083-10.322 9.083a11.45 11.45 0 0 1-4.523-.917l-5.171 1.293 1.105-4.42c-1.094-1.442-1.733-3.175-1.733-5.039C1.678 4.066 6.3 0 12 0zm-.001 4.235A2.926 2.926 0 0 0 9.072 7.16v1.17h-.115a.47.47 0 0 0-.47.47v4.126c0 .26.21.471.47.471h6.086c.26 0 .47-.21.47-.47V8.798a.47.47 0 0 0-.47-.47h-.115v-1.17a2.927 2.927 0 0 0-2.93-2.924zm0 1.17c.972 0 1.758.786 1.758 1.754v1.17h-3.514v-1.17c0-.968.786-1.754 1.756-1.754z" }) + ] + } + ); +}); + +export { SiThreema as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.cjs new file mode 100644 index 000000000..86f32cc4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009FD9"; +const SiThumbtack = React__namespace.forwardRef(function SiThumbtack2({ title = "Thumbtack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.18 6.38h11.69v2.68H6.17zm7.27 3.8v3.14c0 3.23-.02 3.74-.14 4.36a7.95 7.95 0 0 1-1.3 2.87c-.03 0-.78-1.35-.9-1.62-.17-.4-.3-.8-.4-1.25l-.09-.41-.02-5.78.16-.2a3.3 3.3 0 0 1 2.44-1.1zM12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiThumbtack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.d.ts new file mode 100644 index 000000000..bbe1ef912 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009FD9"; +declare const SiThumbtack: IconType; +export { SiThumbtack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.mjs new file mode 100644 index 000000000..fbeb51981 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThumbtack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009FD9"; +const SiThumbtack = React.forwardRef(function SiThumbtack2({ title = "Thumbtack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.18 6.38h11.69v2.68H6.17zm7.27 3.8v3.14c0 3.23-.02 3.74-.14 4.36a7.95 7.95 0 0 1-1.3 2.87c-.03 0-.78-1.35-.9-1.62-.17-.4-.3-.8-.4-1.25l-.09-.41-.02-5.78.16-.2a3.3 3.3 0 0 1 2.44-1.1zM12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Z" }) + ] + } + ); +}); + +export { SiThumbtack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.cjs new file mode 100644 index 000000000..faff16c0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A84FF"; +const SiThunderbird = React__namespace.forwardRef(function SiThunderbird2({ title = "Thunderbird", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.948 4.444h-.005c-1.92.788-2.126 2.55-1.817 3.499v.02C9.236 7.18 10.658 6.76 12 6.76c3.26 0 5.902 2.156 5.902 4.815 0 2.66-2.643 4.816-5.902 4.816l-.083-.002c-.155-.006-.354-.013-.435.118-.096.156.116.397.238.536 1.274 1.441 3.123 1.622 3.608 1.67l.076.008c-4.281.414-9.304-2.32-9.306-7.076 0-1.12.414-2.073 1.075-2.83l-.005-.002h-.003C7.31 6.38 6.376 3.47 4.629 2.898c-.124-.04-.246.054-.262.183-.23 1.924-.727 2.59-1.264 3.31-.805 1.08-1.39 2.328-1.365 3.698a10.99 10.99 0 0 1-.705-1.91c-.024-.09-.17-.365-.333-.272-.13.072-.227.274-.296.485A12.137 12.137 0 0 0 0 11.489c0 6.536 5.475 12 12 12 6.627 0 12-5.372 12-12 0-2.526-.781-4.87-2.115-6.805l.167-.002c.518 0 1.024.045 1.51.129-.734-.816-1.724-1.475-2.877-1.904a8.54 8.54 0 0 1 2.494-.495c-1.426-1.166-3.508-1.9-5.827-1.9-3.355 0-6.648 1.29-7.404 3.93zm.682 9.166c-.87-.905-3.473-3.91-3.473-3.91l.202.01 4.075 3.042c.305.223.74.22 1.043-.004l3.996-3.034.212-.018s-2.518 2.935-3.483 3.9c-.964.968-1.703.919-2.572.014zm2.774-10.083s.055.625-.576.824c-.722.227-1.042-.38-1.042-.38s.09-.417.676-.61c.626-.206.942.166.942.166z" }) + ] + } + ); +}); + +exports.default = SiThunderbird; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.d.ts new file mode 100644 index 000000000..96d13122f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A84FF"; +declare const SiThunderbird: IconType; +export { SiThunderbird as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.mjs new file mode 100644 index 000000000..7b2c2fb1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderbird.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A84FF"; +const SiThunderbird = React.forwardRef(function SiThunderbird2({ title = "Thunderbird", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.948 4.444h-.005c-1.92.788-2.126 2.55-1.817 3.499v.02C9.236 7.18 10.658 6.76 12 6.76c3.26 0 5.902 2.156 5.902 4.815 0 2.66-2.643 4.816-5.902 4.816l-.083-.002c-.155-.006-.354-.013-.435.118-.096.156.116.397.238.536 1.274 1.441 3.123 1.622 3.608 1.67l.076.008c-4.281.414-9.304-2.32-9.306-7.076 0-1.12.414-2.073 1.075-2.83l-.005-.002h-.003C7.31 6.38 6.376 3.47 4.629 2.898c-.124-.04-.246.054-.262.183-.23 1.924-.727 2.59-1.264 3.31-.805 1.08-1.39 2.328-1.365 3.698a10.99 10.99 0 0 1-.705-1.91c-.024-.09-.17-.365-.333-.272-.13.072-.227.274-.296.485A12.137 12.137 0 0 0 0 11.489c0 6.536 5.475 12 12 12 6.627 0 12-5.372 12-12 0-2.526-.781-4.87-2.115-6.805l.167-.002c.518 0 1.024.045 1.51.129-.734-.816-1.724-1.475-2.877-1.904a8.54 8.54 0 0 1 2.494-.495c-1.426-1.166-3.508-1.9-5.827-1.9-3.355 0-6.648 1.29-7.404 3.93zm.682 9.166c-.87-.905-3.473-3.91-3.473-3.91l.202.01 4.075 3.042c.305.223.74.22 1.043-.004l3.996-3.034.212-.018s-2.518 2.935-3.483 3.9c-.964.968-1.703.919-2.572.014zm2.774-10.083s.055.625-.576.824c-.722.227-1.042-.38-1.042-.38s.09-.417.676-.61c.626-.206.942.166.942.166z" }) + ] + } + ); +}); + +export { SiThunderbird as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.cjs new file mode 100644 index 000000000..ad3f2ef5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#23FFB0"; +const SiThunderstore = React__namespace.forwardRef(function SiThunderstore2({ title = "Thunderstore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m.322 13.174 4.706 8.192L7.2 16.855 4.824 12.72a1.416 1.416 0 0 1 0-1.444l2.965-5.16c.265-.46.718-.723 1.245-.723h1.595l-3.086 6.953h3.812L6.171 22.403 16.583 9.914h-3.201l2.184-4.52h6.052L24 1.25H7.175c-.86 0-1.598.428-2.028 1.174l-4.825 8.4a2.306 2.306 0 0 0 0 2.35m7.213 9.576h9.29a2.29 2.29 0 0 0 2.03-1.176l4.825-8.4a2.317 2.317 0 0 0 0-2.35l-1.93-3.36h-4.763l2.19 3.813c.262.46.262.987 0 1.444l-2.964 5.162a1.41 1.41 0 0 1-1.248.723h-2.154l-1.497-.017z" }) + ] + } + ); +}); + +exports.default = SiThunderstore; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.d.ts new file mode 100644 index 000000000..1a6f1849e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#23FFB0"; +declare const SiThunderstore: IconType; +export { SiThunderstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.mjs new file mode 100644 index 000000000..a78509824 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThunderstore.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#23FFB0"; +const SiThunderstore = React.forwardRef(function SiThunderstore2({ title = "Thunderstore", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m.322 13.174 4.706 8.192L7.2 16.855 4.824 12.72a1.416 1.416 0 0 1 0-1.444l2.965-5.16c.265-.46.718-.723 1.245-.723h1.595l-3.086 6.953h3.812L6.171 22.403 16.583 9.914h-3.201l2.184-4.52h6.052L24 1.25H7.175c-.86 0-1.598.428-2.028 1.174l-4.825 8.4a2.306 2.306 0 0 0 0 2.35m7.213 9.576h9.29a2.29 2.29 0 0 0 2.03-1.176l4.825-8.4a2.317 2.317 0 0 0 0-2.35l-1.93-3.36h-4.763l2.19 3.813c.262.46.262.987 0 1.444l-2.964 5.162a1.41 1.41 0 0 1-1.248.723h-2.154l-1.497-.017z" }) + ] + } + ); +}); + +export { SiThunderstore as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.cjs new file mode 100644 index 000000000..e2441fd6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006D41"; +const SiThurgauerkantonalbank = React__namespace.forwardRef(function SiThurgauerkantonalbank2({ title = "Thurgauer Kantonalbank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.872 2.262H10.775l-6.14 9.743 6.14 9.771h11.097l-6.135-9.77 6.135-9.744zM0 .297v23.406h24V.297H0zm23.057 22.486L.943 22.778V1.228h22.109l.005 21.555z" }) + ] + } + ); +}); + +exports.default = SiThurgauerkantonalbank; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.d.ts new file mode 100644 index 000000000..5a47e513c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006D41"; +declare const SiThurgauerkantonalbank: IconType; +export { SiThurgauerkantonalbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.mjs new file mode 100644 index 000000000..3502e165e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThurgauerkantonalbank.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006D41"; +const SiThurgauerkantonalbank = React.forwardRef(function SiThurgauerkantonalbank2({ title = "Thurgauer Kantonalbank", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.872 2.262H10.775l-6.14 9.743 6.14 9.771h11.097l-6.135-9.77 6.135-9.744zM0 .297v23.406h24V.297H0zm23.057 22.486L.943 22.778V1.228h22.109l.005 21.555z" }) + ] + } + ); +}); + +export { SiThurgauerkantonalbank as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.cjs new file mode 100644 index 000000000..fec61fef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005F0F"; +const SiThymeleaf = React__namespace.forwardRef(function SiThymeleaf2({ title = "Thymeleaf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.727 0C.782 0 .02.761.02 1.707v20.586C.02 23.24.782 24 1.727 24h20.546c.945 0 1.707-.761 1.707-1.707V1.707C23.98.76 23.218 0 22.273 0H1.727zm18.714 3.273c-1.861 3.694-3.3 7.627-5.674 11.046-1.064 1.574-2.329 3.163-4.16 3.86-1.31.552-2.936.337-3.98-.647-.628-.523-.54-1.43-.173-2.075.96-1.224 2.34-2.02 3.59-2.915 3.842-2.625 7.446-5.654 10.397-9.27zm-1.693 1.25c-2.503 2.751-5.381 5.16-8.452 7.269l-.003.002-.003.003c-1.327.979-2.835 1.824-3.993 3.114-.349.333-.583 1.042-.537 1.481-.622-1.043-.8-2.614-.257-3.74.526-1.19 1.742-1.807 2.876-2.292 3.757-1.353 6.695-2.926 10.369-5.836z" }) + ] + } + ); +}); + +exports.default = SiThymeleaf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.d.ts new file mode 100644 index 000000000..7f26b93a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005F0F"; +declare const SiThymeleaf: IconType; +export { SiThymeleaf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.mjs new file mode 100644 index 000000000..1f77d76dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiThymeleaf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005F0F"; +const SiThymeleaf = React.forwardRef(function SiThymeleaf2({ title = "Thymeleaf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.727 0C.782 0 .02.761.02 1.707v20.586C.02 23.24.782 24 1.727 24h20.546c.945 0 1.707-.761 1.707-1.707V1.707C23.98.76 23.218 0 22.273 0H1.727zm18.714 3.273c-1.861 3.694-3.3 7.627-5.674 11.046-1.064 1.574-2.329 3.163-4.16 3.86-1.31.552-2.936.337-3.98-.647-.628-.523-.54-1.43-.173-2.075.96-1.224 2.34-2.02 3.59-2.915 3.842-2.625 7.446-5.654 10.397-9.27zm-1.693 1.25c-2.503 2.751-5.381 5.16-8.452 7.269l-.003.002-.003.003c-1.327.979-2.835 1.824-3.993 3.114-.349.333-.583 1.042-.537 1.481-.622-1.043-.8-2.614-.257-3.74.526-1.19 1.742-1.807 2.876-2.292 3.757-1.353 6.695-2.926 10.369-5.836z" }) + ] + } + ); +}); + +export { SiThymeleaf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.cjs new file mode 100644 index 000000000..089426beb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#026CDF"; +const SiTicketmaster = React__namespace.forwardRef(function SiTicketmaster2({ title = "Ticketmaster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.5153 11.3333c-.2454 0-.4826.0464-.716.1304l-.0776.4499c.2168-.105.4499-.1681.6912-.1681.1924 0 .4214.063.4214.2817 0 .063 0 .126-.0163.185h-.1923c-.5153 0-1.2924.0546-1.2924.7697 0 .3994.2699.6181.6502.6181.3026 0 .4909-.1388.679-.3828h.0082l-.0574.3324h.4624c.0491-.408.2576-1.2576.2576-1.5477 0-.5088-.3966-.6686-.818-.6686zm-.3805 1.8546c-.139 0-.2781-.0758-.2781-.2272 0-.3658.4418-.412.7076-.412h.1922c-.0857.349-.2125.6392-.6217.6392zm-8.647-.7826l.656 1.1947h-.6391l-.563-1.1647h-.0084L4.688 13.6h-.5546l.6731-3.2h.567l-.3767 1.8007h.0085l.7915-.798h.7366L5.488 12.4053zm3.8071.746c.0947 0 .1894-.0216.2562-.0517l-.0907.4485c-.0905.0216-.193.052-.2837.052-.3587 0-.6111-.1554-.6111-.5825 0-.1725.0316-.3407.067-.5175l.1498-.7506H8.4l.0828-.4228h.3824l.0907-.4574.5677-.2026-.1301.66h.4732l-.0828.4226h-.4734l-.193.9707a.9992.9992 0 00-.0236.2156c0 .1339.0826.2157.201.2157zm-8.4 0c.0947 0 .1894-.0216.2564-.0517l-.0906.4485c-.0908.0216-.1934.052-.284.052-.3587 0-.6111-.1554-.6111-.5825 0-.1725.0316-.3407.067-.5175l.1498-.7506H0l.0827-.4228h.3826l.0907-.4574.5675-.2026-.1302.66h.4734l-.0828.4226H.9107l-.1931.9707a1.004 1.004 0 00-.0237.2156c0 .1339.0828.2157.201.2157zm2.1018-.5521c0 .2816.0937.5633.4858.5633.1406 0 .3154-.0378.4644-.1093l-.0638.4459c-.1747.084-.3623.101-.5498.101-.5668 0-.9333-.3742-.9333-.9337 0-.757.5072-1.333 1.2956-1.333.213 0 .4176.0378.571.084l-.1406.4626c-.111-.0715-.26-.1093-.4176-.1093-.456 0-.7117.4205-.7117.8285zm-.4574-1.6433h-.61l.1276-.556h.6098l-.1274.556zm-.0956.408L1.9432 13.6h-.6099l.5006-2.236h.6098zm18.3563.7937c0 .164-.0199.3236-.0515.4836h-1.2524c.001-.1027.0094-.2168.0564-.387h.7276a.9136.9136 0 00.012-.1471c0-.2314-.1152-.3616-.3373-.3616-.3133 0-.4579.1904-.56.466a1.2249 1.2249 0 00-.0864.4297h-.0004l.0001.0063-.0002.012c0 .0208.0017.04.0026.0598h.0004c.0258.3406.2243.4686.5646.4686.2182 0 .4285-.0588.627-.1558l-.0677.446c-.2061.0672-.4324.122-.6507.122-.5873 0-.9841-.3029-.9841-.9464 0-.6726.4921-1.3204 1.1627-1.3204.504 0 .8373.2732.8373.8243zm1.773-.8243c.0755 0 .156.0042.227.0215l-.1247.5635a.7823.7823 0 00-.2272-.0344c-.4233 0-.628.3656-.704.7226l-.2137.9935h-.597l.4098-1.9183c.0177-.0946.0356-.1936.0535-.2968h.5702l-.0802.4174h.0089c.107-.241.401-.469.6773-.469zm1.1433.2631c0-.1183-.0707-.1763-.2142-.1763h-.239v.6255h.1018v-.2765h.0852l.1746.2765h.1082l-.178-.2765c.098 0 .1614-.0724.1614-.1727zm-.3514.093v-.1892h.1208c.0654 0 .129.0206.129.0915 0 .0812-.0507.0976-.129.0976h-.1208zM13.2 11.9398c0 .1977-.0497.4216-.0955.602L12.8804 13.6h-.5564l.2243-1.0796c.029-.1333.0706-.3399.0706-.473 0-.1635-.1205-.2667-.2616-.2667-.3862 0-.4817.4644-.5522.7656l-.22 1.0537h-.5564l.2242-1.0796c.0291-.1333.0707-.3399.0707-.473 0-.1635-.1205-.2667-.2616-.2667-.3779 0-.4817.4688-.5523.7656l-.22 1.0537h-.5564l.3903-1.9699c.0167-.086.0332-.1764.0457-.2453h.519l-.0498.297h.0082c.1496-.228.3944-.3485.656-.3485.2533 0 .5148.1548.544.4215h.0082c.1411-.2881.4526-.4215.7514-.4215.3197 0 .5937.271.5937.6066zM23.4668 11.2h-.0001a.5343.5343 0 00-.5334.5337.534.534 0 00.5334.533.5341.5341 0 00.5333-.533.5343.5343 0 00-.5332-.5337zm.0017.9872c-.2481 0-.4333-.198-.4333-.4535 0-.2556.1852-.4537.4332-.4537.2448 0 .4297.1981.4297.4537 0 .2555-.1849.4534-.4296.4535zm-5.4177.5328a1 1 0 00-.0236.2156c0 .1339.0828.2157.201.2157.0947 0 .1894-.0216.2563-.0517l-.0906.4485c-.0907.0216-.1932.052-.284.052-.3587 0-.6111-.1554-.6111-.5825 0-.1725.0317-.3407.067-.5175l.15-.7506h-.3825l.0827-.4228h.3827l.0906-.4574.5676-.2026-.13.66H18.8l-.0828.4226h-.4733l-.1931.9707zm-1.4036-1.3867c.216 0 .4364.0379.5528.0667l-.128.4247c-.0635-.033-.2267-.0792-.3941-.0792-.1762 0-.3967.0462-.3967.2186 0 .2734.767.3744.767.9042 0 .5636-.5157.7317-1.0226.7317-.2381 0-.4763-.0336-.6923-.1303l.128-.45c.1675.0883.335.1682.5642.1682.1984 0 .4056-.0632.4056-.2396 0-.3491-.767-.383-.767-.9254 0-.5088.5156-.6896.9831-.6896zm-8.3805.8243c0 .164-.02.3236-.0516.4836H6.9628c.001-.1027.0092-.2168.0565-.387h.7275a.9136.9136 0 00.012-.1471c0-.2314-.1152-.3616-.3373-.3616-.3134 0-.4579.1904-.56.466a1.2276 1.2276 0 00-.0864.4297h-.0004l.0001.0063-.0003.012c0 .0208.0018.04.0027.0598h.0005c.0255.3406.2243.4686.5644.4686.2182 0 .4286-.0588.627-.1558l-.0676.446c-.2062.0672-.4324.122-.6507.122-.5873 0-.9841-.3028-.9841-.9464 0-.6726.492-1.3204 1.1626-1.3204.504 0 .8374.2732.8374.8243z" }) + ] + } + ); +}); + +exports.default = SiTicketmaster; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.d.ts new file mode 100644 index 000000000..84722ed39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#026CDF"; +declare const SiTicketmaster: IconType; +export { SiTicketmaster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.mjs new file mode 100644 index 000000000..13a4da8ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTicketmaster.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#026CDF"; +const SiTicketmaster = React.forwardRef(function SiTicketmaster2({ title = "Ticketmaster", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.5153 11.3333c-.2454 0-.4826.0464-.716.1304l-.0776.4499c.2168-.105.4499-.1681.6912-.1681.1924 0 .4214.063.4214.2817 0 .063 0 .126-.0163.185h-.1923c-.5153 0-1.2924.0546-1.2924.7697 0 .3994.2699.6181.6502.6181.3026 0 .4909-.1388.679-.3828h.0082l-.0574.3324h.4624c.0491-.408.2576-1.2576.2576-1.5477 0-.5088-.3966-.6686-.818-.6686zm-.3805 1.8546c-.139 0-.2781-.0758-.2781-.2272 0-.3658.4418-.412.7076-.412h.1922c-.0857.349-.2125.6392-.6217.6392zm-8.647-.7826l.656 1.1947h-.6391l-.563-1.1647h-.0084L4.688 13.6h-.5546l.6731-3.2h.567l-.3767 1.8007h.0085l.7915-.798h.7366L5.488 12.4053zm3.8071.746c.0947 0 .1894-.0216.2562-.0517l-.0907.4485c-.0905.0216-.193.052-.2837.052-.3587 0-.6111-.1554-.6111-.5825 0-.1725.0316-.3407.067-.5175l.1498-.7506H8.4l.0828-.4228h.3824l.0907-.4574.5677-.2026-.1301.66h.4732l-.0828.4226h-.4734l-.193.9707a.9992.9992 0 00-.0236.2156c0 .1339.0826.2157.201.2157zm-8.4 0c.0947 0 .1894-.0216.2564-.0517l-.0906.4485c-.0908.0216-.1934.052-.284.052-.3587 0-.6111-.1554-.6111-.5825 0-.1725.0316-.3407.067-.5175l.1498-.7506H0l.0827-.4228h.3826l.0907-.4574.5675-.2026-.1302.66h.4734l-.0828.4226H.9107l-.1931.9707a1.004 1.004 0 00-.0237.2156c0 .1339.0828.2157.201.2157zm2.1018-.5521c0 .2816.0937.5633.4858.5633.1406 0 .3154-.0378.4644-.1093l-.0638.4459c-.1747.084-.3623.101-.5498.101-.5668 0-.9333-.3742-.9333-.9337 0-.757.5072-1.333 1.2956-1.333.213 0 .4176.0378.571.084l-.1406.4626c-.111-.0715-.26-.1093-.4176-.1093-.456 0-.7117.4205-.7117.8285zm-.4574-1.6433h-.61l.1276-.556h.6098l-.1274.556zm-.0956.408L1.9432 13.6h-.6099l.5006-2.236h.6098zm18.3563.7937c0 .164-.0199.3236-.0515.4836h-1.2524c.001-.1027.0094-.2168.0564-.387h.7276a.9136.9136 0 00.012-.1471c0-.2314-.1152-.3616-.3373-.3616-.3133 0-.4579.1904-.56.466a1.2249 1.2249 0 00-.0864.4297h-.0004l.0001.0063-.0002.012c0 .0208.0017.04.0026.0598h.0004c.0258.3406.2243.4686.5646.4686.2182 0 .4285-.0588.627-.1558l-.0677.446c-.2061.0672-.4324.122-.6507.122-.5873 0-.9841-.3029-.9841-.9464 0-.6726.4921-1.3204 1.1627-1.3204.504 0 .8373.2732.8373.8243zm1.773-.8243c.0755 0 .156.0042.227.0215l-.1247.5635a.7823.7823 0 00-.2272-.0344c-.4233 0-.628.3656-.704.7226l-.2137.9935h-.597l.4098-1.9183c.0177-.0946.0356-.1936.0535-.2968h.5702l-.0802.4174h.0089c.107-.241.401-.469.6773-.469zm1.1433.2631c0-.1183-.0707-.1763-.2142-.1763h-.239v.6255h.1018v-.2765h.0852l.1746.2765h.1082l-.178-.2765c.098 0 .1614-.0724.1614-.1727zm-.3514.093v-.1892h.1208c.0654 0 .129.0206.129.0915 0 .0812-.0507.0976-.129.0976h-.1208zM13.2 11.9398c0 .1977-.0497.4216-.0955.602L12.8804 13.6h-.5564l.2243-1.0796c.029-.1333.0706-.3399.0706-.473 0-.1635-.1205-.2667-.2616-.2667-.3862 0-.4817.4644-.5522.7656l-.22 1.0537h-.5564l.2242-1.0796c.0291-.1333.0707-.3399.0707-.473 0-.1635-.1205-.2667-.2616-.2667-.3779 0-.4817.4688-.5523.7656l-.22 1.0537h-.5564l.3903-1.9699c.0167-.086.0332-.1764.0457-.2453h.519l-.0498.297h.0082c.1496-.228.3944-.3485.656-.3485.2533 0 .5148.1548.544.4215h.0082c.1411-.2881.4526-.4215.7514-.4215.3197 0 .5937.271.5937.6066zM23.4668 11.2h-.0001a.5343.5343 0 00-.5334.5337.534.534 0 00.5334.533.5341.5341 0 00.5333-.533.5343.5343 0 00-.5332-.5337zm.0017.9872c-.2481 0-.4333-.198-.4333-.4535 0-.2556.1852-.4537.4332-.4537.2448 0 .4297.1981.4297.4537 0 .2555-.1849.4534-.4296.4535zm-5.4177.5328a1 1 0 00-.0236.2156c0 .1339.0828.2157.201.2157.0947 0 .1894-.0216.2563-.0517l-.0906.4485c-.0907.0216-.1932.052-.284.052-.3587 0-.6111-.1554-.6111-.5825 0-.1725.0317-.3407.067-.5175l.15-.7506h-.3825l.0827-.4228h.3827l.0906-.4574.5676-.2026-.13.66H18.8l-.0828.4226h-.4733l-.1931.9707zm-1.4036-1.3867c.216 0 .4364.0379.5528.0667l-.128.4247c-.0635-.033-.2267-.0792-.3941-.0792-.1762 0-.3967.0462-.3967.2186 0 .2734.767.3744.767.9042 0 .5636-.5157.7317-1.0226.7317-.2381 0-.4763-.0336-.6923-.1303l.128-.45c.1675.0883.335.1682.5642.1682.1984 0 .4056-.0632.4056-.2396 0-.3491-.767-.383-.767-.9254 0-.5088.5156-.6896.9831-.6896zm-8.3805.8243c0 .164-.02.3236-.0516.4836H6.9628c.001-.1027.0092-.2168.0565-.387h.7275a.9136.9136 0 00.012-.1471c0-.2314-.1152-.3616-.3373-.3616-.3134 0-.4579.1904-.56.466a1.2276 1.2276 0 00-.0864.4297h-.0004l.0001.0063-.0003.012c0 .0208.0018.04.0027.0598h.0005c.0255.3406.2243.4686.5644.4686.2182 0 .4286-.0588.627-.1558l-.0676.446c-.2062.0672-.4324.122-.6507.122-.5873 0-.9841-.3028-.9841-.9464 0-.6726.492-1.3204 1.1626-1.3204.504 0 .8374.2732.8374.8243z" }) + ] + } + ); +}); + +export { SiTicketmaster as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.cjs new file mode 100644 index 000000000..bd7c927ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4772FA"; +const SiTicktick = React__namespace.forwardRef(function SiTicktick2({ title = "TickTick", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12h-2.7c0 5.128-4.172 9.3-9.3 9.3-5.128 0-9.3-4.172-9.3-9.3 0-5.128 4.172-9.3 9.3-9.3V0Zm7.4 2.583-7.505 9.371L8.388 9.08l-2.002 2.436 4.741 3.888a1.573 1.573 0 0 0 2.231-.233l8.504-10.617L19.4 2.583Z" }) + ] + } + ); +}); + +exports.default = SiTicktick; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.d.ts new file mode 100644 index 000000000..56d167784 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4772FA"; +declare const SiTicktick: IconType; +export { SiTicktick as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.mjs new file mode 100644 index 000000000..2ae6c9ad4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTicktick.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4772FA"; +const SiTicktick = React.forwardRef(function SiTicktick2({ title = "TickTick", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12h-2.7c0 5.128-4.172 9.3-9.3 9.3-5.128 0-9.3-4.172-9.3-9.3 0-5.128 4.172-9.3 9.3-9.3V0Zm7.4 2.583-7.505 9.371L8.388 9.08l-2.002 2.436 4.741 3.888a1.573 1.573 0 0 0 2.231-.233l8.504-10.617L19.4 2.583Z" }) + ] + } + ); +}); + +export { SiTicktick as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.cjs new file mode 100644 index 000000000..9e8036c29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTidal = React__namespace.forwardRef(function SiTidal2({ title = "TIDAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.012 3.992L8.008 7.996 4.004 3.992 0 7.996 4.004 12l4.004-4.004L12.012 12l-4.004 4.004 4.004 4.004 4.004-4.004L12.012 12l4.004-4.004-4.004-4.004zM16.042 7.996l3.979-3.979L24 7.996l-3.979 3.979z" }) + ] + } + ); +}); + +exports.default = SiTidal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.d.ts new file mode 100644 index 000000000..765f235ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTidal: IconType; +export { SiTidal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.mjs new file mode 100644 index 000000000..2f6f66640 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTidal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTidal = React.forwardRef(function SiTidal2({ title = "TIDAL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.012 3.992L8.008 7.996 4.004 3.992 0 7.996 4.004 12l4.004-4.004L12.012 12l-4.004 4.004 4.004 4.004 4.004-4.004L12.012 12l4.004-4.004-4.004-4.004zM16.042 7.996l3.979-3.979L24 7.996l-3.979 3.979z" }) + ] + } + ); +}); + +export { SiTidal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.cjs new file mode 100644 index 000000000..d6b3b7d6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111111"; +const SiTiddlywiki = React__namespace.forwardRef(function SiTiddlywiki2({ title = "TiddlyWiki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 0 10.23 6v12L12 24 1.77 18V6L12 0zm3.961 17.889.154-.02c.113-.043.22-.081.288-.19.227-.329-.357-.462-.566-.827-.209-.364-1.071-2.364-.418-2.924s1.359-.79 1.629-1.315c.117-.236.238-.475.269-.742.159.132.283.255.497.262.567.036 1.054-.658 1.307-1.315.135-.404.244-.832.218-1.226-.069-.76.013-1.582.62-2.087-.599.302-1.167.69-1.845.789-.374-.114-.75-.216-1.147-.2-.194-.253-.456-.727-.797-.782-.58.208-.597 1.105-.842 2.321a5.351 5.351 0 0 0-1.154-.193c-.54-.035-1.42.134-2.038.116-.619-.018-1.836-.562-2.849-.445-.407.05-.817.12-1.195.291-.231.105-.565.421-.733.468-1.69.473-4.442.453-3.879-2.102.044-.196.056-.373-.03-.417-.11-.055-.17.06-.234.187-.985 2.138.764 3.514 2.752 3.52.625-.048.324-.007.904-.118l-.015.082a1.87 1.87 0 0 0 .865 1.718c-.27.771-.805 1.389-1.173 2.097.138.881 1.031 2.057 1.4 2.225.326.147 1.036.149 1.2-.089.059-.111.02-.351-.044-.474.277.308.651.736 1.013.942.217.104.434.17.677.18l.31-.016c.154-.033.336-.058.44-.195.116-.2.007-.756-.476-.796-.483-.04-.795-.222-1.24-.882-.365-.638.077-1.517.226-2.145.765.123 1.535.22 2.31.222.336-.017.67-.03 1.001-.093.106.27.402 1.025.404 1.239.007.601-.219 1.205-.121 1.807.06.177.005.512.35.526l.388.018.267-.008c.341.573.637.572 1.307.591zm-7.518-1.66-.063-.056c-.184-.198-.66-.544-.572-.865.075-.238.213-.457.323-.683l-.004.023c-.02.282-.059.56.032.837.278.228.663.59.918.837-.138-.038-.4-.117-.53-.066l-.104-.026z" }) + ] + } + ); +}); + +exports.default = SiTiddlywiki; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.d.ts new file mode 100644 index 000000000..2d8479a89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111111"; +declare const SiTiddlywiki: IconType; +export { SiTiddlywiki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.mjs new file mode 100644 index 000000000..4fd822d5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTiddlywiki.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111111"; +const SiTiddlywiki = React.forwardRef(function SiTiddlywiki2({ title = "TiddlyWiki", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 0 10.23 6v12L12 24 1.77 18V6L12 0zm3.961 17.889.154-.02c.113-.043.22-.081.288-.19.227-.329-.357-.462-.566-.827-.209-.364-1.071-2.364-.418-2.924s1.359-.79 1.629-1.315c.117-.236.238-.475.269-.742.159.132.283.255.497.262.567.036 1.054-.658 1.307-1.315.135-.404.244-.832.218-1.226-.069-.76.013-1.582.62-2.087-.599.302-1.167.69-1.845.789-.374-.114-.75-.216-1.147-.2-.194-.253-.456-.727-.797-.782-.58.208-.597 1.105-.842 2.321a5.351 5.351 0 0 0-1.154-.193c-.54-.035-1.42.134-2.038.116-.619-.018-1.836-.562-2.849-.445-.407.05-.817.12-1.195.291-.231.105-.565.421-.733.468-1.69.473-4.442.453-3.879-2.102.044-.196.056-.373-.03-.417-.11-.055-.17.06-.234.187-.985 2.138.764 3.514 2.752 3.52.625-.048.324-.007.904-.118l-.015.082a1.87 1.87 0 0 0 .865 1.718c-.27.771-.805 1.389-1.173 2.097.138.881 1.031 2.057 1.4 2.225.326.147 1.036.149 1.2-.089.059-.111.02-.351-.044-.474.277.308.651.736 1.013.942.217.104.434.17.677.18l.31-.016c.154-.033.336-.058.44-.195.116-.2.007-.756-.476-.796-.483-.04-.795-.222-1.24-.882-.365-.638.077-1.517.226-2.145.765.123 1.535.22 2.31.222.336-.017.67-.03 1.001-.093.106.27.402 1.025.404 1.239.007.601-.219 1.205-.121 1.807.06.177.005.512.35.526l.388.018.267-.008c.341.573.637.572 1.307.591zm-7.518-1.66-.063-.056c-.184-.198-.66-.544-.572-.865.075-.238.213-.457.323-.683l-.004.023c-.02.282-.059.56.032.837.278.228.663.59.918.837-.138-.038-.4-.117-.53-.066l-.104-.026z" }) + ] + } + ); +}); + +export { SiTiddlywiki as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTide.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTide.cjs new file mode 100644 index 000000000..09eac776d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTide.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4050FB"; +const SiTide = React__namespace.forwardRef(function SiTide2({ title = "Tide", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.694 12.509h3.393c-.206-.846-.883-1.272-1.647-1.272-.883 0-1.5.48-1.746 1.272zm1.746 4.48c-2.238 0-3.679-1.57-3.679-3.648 0-2.024 1.501-3.662 3.693-3.662 2.211 0 3.546 1.532 3.546 3.569 0 .273-.027.626-.027.672h-5.346c.206.886.87 1.465 1.853 1.465.844 0 1.461-.366 1.853-.932l1.421.872c-.677 1.025-1.76 1.665-3.314 1.665m-6.179-3.634a1.89 1.89 0 00-1.906-1.884c-1.036 0-1.84.846-1.84 1.884 0 1.052.804 1.884 1.84 1.884 1.09 0 1.906-.832 1.906-1.884zm-.026 2.956c-.492.386-1.256.613-2.046.613a3.546 3.546 0 01-3.533-3.569c0-2.024 1.62-3.608 3.533-3.608.79 0 1.554.246 2.046.626v-2.91h1.892v9.368h-1.892v-.52M7.796 9.814H5.904v7.01h1.892v-7.01m-2.922 0v1.697H2.91v2.816c0 .626.285.872.93.872H4.88v1.625H3.706c-1.853 0-2.69-.832-2.69-2.404v-2.91H0V9.814a1.01 1.01 0 001.01-1.012V8.01h1.892v1.804h1.972m3.124-1.657c0 .632-.511 1.145-1.142 1.145-.63 0-1.142-.513-1.142-1.145 0-.633.511-1.145 1.142-1.145a1.135 1.135 0 011.142 1.145Z" }) + ] + } + ); +}); + +exports.default = SiTide; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTide.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTide.d.ts new file mode 100644 index 000000000..edb483260 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTide.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4050FB"; +declare const SiTide: IconType; +export { SiTide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTide.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTide.mjs new file mode 100644 index 000000000..ce09a7ecb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTide.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4050FB"; +const SiTide = React.forwardRef(function SiTide2({ title = "Tide", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.694 12.509h3.393c-.206-.846-.883-1.272-1.647-1.272-.883 0-1.5.48-1.746 1.272zm1.746 4.48c-2.238 0-3.679-1.57-3.679-3.648 0-2.024 1.501-3.662 3.693-3.662 2.211 0 3.546 1.532 3.546 3.569 0 .273-.027.626-.027.672h-5.346c.206.886.87 1.465 1.853 1.465.844 0 1.461-.366 1.853-.932l1.421.872c-.677 1.025-1.76 1.665-3.314 1.665m-6.179-3.634a1.89 1.89 0 00-1.906-1.884c-1.036 0-1.84.846-1.84 1.884 0 1.052.804 1.884 1.84 1.884 1.09 0 1.906-.832 1.906-1.884zm-.026 2.956c-.492.386-1.256.613-2.046.613a3.546 3.546 0 01-3.533-3.569c0-2.024 1.62-3.608 3.533-3.608.79 0 1.554.246 2.046.626v-2.91h1.892v9.368h-1.892v-.52M7.796 9.814H5.904v7.01h1.892v-7.01m-2.922 0v1.697H2.91v2.816c0 .626.285.872.93.872H4.88v1.625H3.706c-1.853 0-2.69-.832-2.69-2.404v-2.91H0V9.814a1.01 1.01 0 001.01-1.012V8.01h1.892v1.804h1.972m3.124-1.657c0 .632-.511 1.145-1.142 1.145-.63 0-1.142-.513-1.142-1.145 0-.633.511-1.145 1.142-1.145a1.135 1.135 0 011.142 1.145Z" }) + ] + } + ); +}); + +export { SiTide as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.cjs new file mode 100644 index 000000000..ea2fc6e52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A162D"; +const SiTidyverse = React__namespace.forwardRef(function SiTidyverse2({ title = "Tidyverse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.392 18V5.999l-.829-.478L13.706.984 12 0l-1.706.984-7.857 4.537-.829.478v12.002l.829.478 7.956 4.594 1.609.927 1.61-.927 7.956-4.594.824-.479Zm-19.955-.45V6.508L12 .984l9.563 5.522v11.042L12 23.072 2.437 17.55Zm10.061 4.416v.228l.197.113.193-.113v-.228l-.193-.112-.197.112Zm-1.419-.111v.17l.148.082.141-.082v-.17l-.141-.082-.148.082Zm-.757-1.072.292-.164.291.167v.333l-.291.165-.292-.167v-.334Zm1.757-.006v.207l.178.102.176-.102v-.207l-.176-.101-.178.101Zm2.788-.026v-.15l-.127-.074-.131.074v.15l.131.073.127-.073Zm-6.425-.468.291-.164.292.166v.334l-.292.164-.291-.166v-.334Zm4.898-.246v.39l.339.192.333-.192v-.39l-.333-.193-.339.193Zm-3.445.291v.133l.116.067.117-.067v-.133l-.117-.068-.116.068Zm2.289-.54.113-.065.113.065v.129l-.113.063-.113-.065v-.127Zm3.127-.149v.167l.144.082.141-.082v-.167l-.141-.082-.144.082Zm1.403-.159v.122l.105.059.104-.059v-.122l-.104-.06-.105.06Zm-9.8-.432.178-.102.182.102v.207l-.182.101-.178-.101v-.207Zm.903.149v.101l.091.054.087-.054v-.101l-.087-.051-.091.051Zm5.115-.241v.206l.179.102.175-.102v-.206l-.175-.099-.179.099Zm-2.883.196v-.108l-.091-.051-.091.051v.108l.091.05.091-.05Zm1.453-.309v.206l.178.103.176-.103v-.206l-.176-.102-.178.102Zm3.03.038.113-.062.11.062v.127l-.11.065-.113-.065v-.127Zm-5.561-.129.178-.102.181.102v.207l-.181.102-.178-.102v-.207Zm6.542-.418v.257l.223.128.218-.128v-.257l-.218-.125-.223.125Zm-5.439.008v.207l.178.101.175-.101v-.207l-.175-.101-.178.101Zm-3.869.124v.111l.097.053.093-.053v-.111l-.093-.053-.097.053Zm11.941-.576v.351l.306.172.297-.172v-.351l-.297-.175-.306.175Zm-13.076.028.288-.161.289.164v.331l-.289.161-.288-.161v-.334Zm8.941.444v-.102l-.088-.051-.09.051v.102l.09.051.088-.051Zm2.953-.192v.127l.11.062.108-.062v-.127l-.108-.062-.11.062Zm-8.811-.521v.425l.368.212.362-.212v-.425l-.362-.207-.368.207Zm-.941.21v.15l.129.076.13-.076v-.15l-.13-.077-.129.077Zm12.408-.153.125-.071.124.071v.145l-.124.07-.125-.07v-.145Zm-7.99-.011v-.461l-.391-.224-.399.224v.461l.399.226.391-.226Zm3.335-.532.319-.181.322.183v.371l-.322.179-.319-.182v-.37Zm-2.886.509a.319.319 0 0 1 .026-.026h-.009c-.003.009-.011.017-.017.026Zm4.995-.444v.206l.178.102.176-.102v-.206l-.176-.102-.178.102Zm-13.637-.207v.323l.28.161.277-.161v-.323l-.277-.161-.28.161Zm10.803.238v-.266l-.223-.13-.232.13v.266l.232.13.223-.13Zm-9.552-.283v.139l.125.07.118-.07v-.139l-.118-.07-.125.07Zm8.457 0 .12-.068.121.068v.139l-.121.068-.12-.071v-.136Zm-5.871-.105v.207l.178.105.175-.105v-.207l-.175-.099-.178.099Zm12.514.003v.131l.113.065.111-.065v-.131l-.111-.065-.113.065Zm-3.692-.136.178-.101.181.101v.207l-.181.102-.178-.102v-.207Zm-3.91-.019v.207l.179.101.175-.101v-.207l-.175-.102-.179.102Zm6.263.161v-.207l-.175-.101-.181.101v.207l.181.102.175-.102Zm-8.2-.294v-.204l-.175-.102-.179.102v.204l.179.101.175-.101Zm-4.045-.275v.136l.119.068.116-.068v-.136l-.116-.067-.119.067Zm-3.388.032.091-.051.087.051v.101l-.087.051-.091-.051v-.101Zm5.524-.187v.206l.178.102.179-.102v-.206l-.179-.099-.178.099Zm-2.823-.005v.206l.179.102.174-.102v-.206l-.174-.103-.179.103Zm2.3.067.091-.051.093.051v.105l-.093.051-.091-.051v-.105Zm13.314-.107.127-.074.127.074v.147l-.127.073-.127-.073v-.147Zm-9.795-.012.118-.067.119.067v.139l-.119.065-.118-.067v-.137Zm3.679-.22.221-.125.218.125v.252l-.218.121-.221-.121v-.252Zm-1.623.133v-.354l-.303-.175-.308.175v.354l.308.175.303-.175Zm1.026.084v-.149l-.127-.074-.13.074v.149l.13.074.127-.074Zm3.771.003v-.122l-.105-.061-.108.061v.122l.108.062.105-.062Zm1.083-.282.181-.099.178.101v.207l-.178.099-.181-.102v-.206Zm-15.356.24v-.119l-.098-.059-.103.059v.119l.103.056.098-.056Zm5.326-.105v.105l.088.051.088-.051v-.105l-.088-.05-.088.05Zm2.662-.104v.125l.11.061.105-.061v-.125l-.105-.063-.11.063Zm-7.312-.04.125-.07.124.07v.144l-.124.071-.125-.071v-.144Zm12.196-.3v.331l.289.164.283-.164v-.331l-.283-.164-.289.164Zm-9.687-.138v.319l.277.159.271-.159v-.319l-.271-.156-.277.156Zm-1.494-.119.292-.164.289.164v.333l-.289.164-.292-.164v-.333Zm5.092.396v-.206l-.176-.102-.18.102v.206l.18.101.176-.101Zm-8.075-.487v.277l.243.136.234-.136v-.277l-.234-.138-.243.138Zm11.438-.211.283-.162.28.162v.322l-.28.158-.283-.158v-.322Zm-2.472.33v-.206l-.175-.102-.178.102v.206l.178.102.175-.102Zm-4.961-.231v.135l.119.068.116-.068v-.135l-.116-.066-.119.066Zm9.229-.154.181-.099.178.102v.207l-.178.099-.181-.102v-.207Zm3.751-.045.181-.102.178.102v.207l-.178.101-.181-.101v-.207Zm-1.089-.036v.206l.178.102.175-.102v-.206l-.175-.103-.178.103Zm-8.596-.034.178-.099.181.101v.207l-.181.099-.178-.102v-.206Zm7.074.203v-.207l-.175-.101-.181.101v.207l.181.102.175-.102Zm1.027-.028v-.207l-.176-.102-.178.102v.207l.178.102.176-.102Zm-10.384-.24.178-.099.182.101v.207l-.182.099-.178-.102v-.206Zm-3.657-.028v-.324l-.274-.158-.281.158v.324l.281.16.274-.16Zm.495-.148.178-.101.181.101v.207l-.181.101-.178-.101v-.207Zm2.271.187v-.136l-.113-.065-.116.065v.136l.116.064.113-.064Zm4.147-.017.085.051.087-.051v-.099l-.087-.048-.085.048v.099Zm-5.335-.006v-.119l-.099-.059-.105.059v.119l.105.057.099-.057Zm7.258-.359.201-.113.207.116v.235l-.207.113-.201-.116v-.235Zm7.666.009v.214l.189.108.184-.108v-.214l-.184-.108-.189.108Zm-11.473-3.31.504 1.437c.053.162.11.351.147.498h.008c.042-.146.09-.33.147-.509l.455-1.426h.441l-.625 1.734c-.3.835-.504 1.262-.787 1.525a1.098 1.098 0 0 1-.512.286l-.104-.371a1.09 1.09 0 0 0 .365-.215 1.32 1.32 0 0 0 .35-.492.323.323 0 0 0 .034-.105.393.393 0 0 0-.028-.116l-.848-2.243.453-.003Zm3.182 3.46v-.136l-.113-.065-.116.065v.136l.116.064.113-.064Zm-9.373-.796v-.104l-.089-.051-.093.051v.104l.093.055.089-.055Zm5.442-.859c0 .215.005.464.019.628H7.91l-.02-.421h-.008a.842.842 0 0 1-.783.478c-.554 0-.982-.498-.982-1.236-.006-.808.47-1.306 1.03-1.306.35 0 .588.175.693.373h.008V9.91h.416v2.937Zm8.613.178c.164.107.353.17.551.176.303 0 .447-.162.447-.362 0-.212-.119-.326-.427-.447-.413-.156-.609-.396-.609-.69 0-.393.301-.713.793-.713a1.09 1.09 0 0 1 .563.15l-.105.322a.865.865 0 0 0-.47-.142c-.246 0-.385.15-.385.331 0 .201.139.291.435.413.399.162.603.374.603.735 0 .428-.314.73-.857.73-.252 0-.484-.065-.645-.166l.106-.337Zm2.073-.685c.008.599.37.846.786.846.301 0 .479-.057.637-.127l.071.317a1.78 1.78 0 0 1-.764.15c-.707 0-1.128-.493-1.128-1.228s.407-1.312 1.077-1.312c.75 0 .948.698.948 1.145 0 .067-.006.138-.014.206H18.95v.003Zm-5.521 0c.008.599.37.846.786.846.3 0 .478-.057.637-.127l.071.317a1.78 1.78 0 0 1-.764.15c-.707 0-1.128-.493-1.128-1.228s.407-1.312 1.077-1.312c.749 0 .947.698.947 1.148 0 .068-.005.138-.014.206h-1.612Zm-9.137-1.997v.699h.597v.336h-.597v1.312c0 .303.082.473.315.473a.871.871 0 0 0 .243-.031l.019.33a.993.993 0 0 1-.37.059c-.195 0-.35-.065-.45-.186-.119-.13-.161-.348-.161-.633v-1.327h-.359v-.336h.356v-.583l.407-.113ZM15.477 11.8c0-.286-.006-.532-.02-.758h.365l.014.479h.02c.105-.329.356-.535.636-.535a.41.41 0 0 1 .119.018v.418a.476.476 0 0 0-.142-.014c-.294 0-.503.238-.56.569a1.562 1.562 0 0 0-.019.206v1.299h-.413V11.8ZM5.265 13.478v-2.432h.419v2.432h-.419Zm5.954-2.436.45 1.369c.077.221.139.421.184.622h.014c.054-.201.119-.401.196-.622l.446-1.369h.436l-.902 2.432h-.399l-.874-2.432h.449Zm10.155 2.187v-.148l-.125-.073-.13.073v.148l.13.073.125-.073ZM7.845 12.032a.85.85 0 0 0-.02-.187c-.062-.282-.288-.512-.603-.512-.432 0-.687.402-.687.939 0 .493.229.9.678.9.281 0 .535-.195.611-.529a.875.875 0 0 0 .02-.192v-.419h.001Zm-5.018.424v.173l.15.088.147-.088v-.173l-.147-.085-.15.085Zm11.826-.433c.006-.282-.11-.718-.58-.718-.421 0-.608.413-.638.718h1.218Zm5.521 0c.006-.282-.11-.718-.579-.718-.422 0-.609.413-.643.718h1.222Zm-17.61-.48.108-.06.11.06v.124l-.11.062-.108-.062v-.124Zm18.555-.416.128-.071.127.074v.147l-.127.07-.128-.073v-.147Zm-18.142-.365v-.15l-.127-.076-.133.076v.15l.133.077.127-.077Zm2.752-.405a.254.254 0 0 1-.237.272h-.028c-.147 0-.252-.122-.252-.272 0-.155.111-.277.261-.277.157.004.256.122.256.277Zm14.409-.447.293-.166.295.166v.34l-.295.167-.293-.167v-.34Zm-.88-.158v.207l.178.102.175-.102v-.207l-.175-.099-.178.099Zm-2.099-.11v.207l.181.101.175-.101v-.207l-.175-.102-.181.102Zm-5.823.113v-.206l-.176-.102-.178.102v.206l.178.102.176-.102Zm1.388-.501-.339-.194-.348.194v.403l.348.194.339-.194v-.403Zm1.055.233V9.28l-.175-.102-.179.102v.207l.179.101.175-.101Zm-6.712-.074v-.207l-.175-.099-.178.099v.207l.178.102.175-.102Zm14.06.048v-.102l-.087-.048-.085.048v.102l.085.048.087-.048Zm-5.551-.314.18-.101.178.101v.207l-.178.101-.18-.101v-.207ZM2.847 9.113l.181-.102.178.102v.206l-.178.103-.181-.103v-.206Zm11.58 0v.206l.178.103.176-.103v-.206l-.176-.102-.178.102Zm5.103.107v.099l.087.051.085-.051V9.22l-.085-.05-.087.05Zm-9.923-.036v.082l.071.039.068-.039v-.082l-.068-.039-.071.039Zm8.477-.484v.396l.345.198.337-.198V8.7l-.337-.198-.345.198Zm-13.189.43v-.206l-.178-.102-.181.099v.206l.181.105.178-.102Zm12.086-.333.178-.103.181.103v.206l-.181.102-.178-.102v-.206Zm-8.387.09v-.28l-.24-.138-.243.138v.28l.243.139.24-.139Zm-2.749-.145v.128l.11.065.108-.065v-.128l-.108-.062-.11.062Zm-1.932-.228v.11l.097.054.093-.054v-.11l-.093-.055-.097.055Zm1.649-.026v-.263l-.226-.13-.229.13v.263l.229.133.226-.133Zm10.002-.017v.073l.062.034.063-.034v-.073l-.063-.036-.062.036Zm-3.015-.045.087-.051.091.051v.102l-.091.05-.087-.05v-.102Zm-4.721-.495-.343-.198-.35.198v.404l.35.199.343-.199v-.404Zm6.55.246-.174-.099-.182.099v.209l.182.102.174-.102v-.209Zm6.326-.226.305-.172.305.174v.351l-.305.173-.305-.173v-.353Zm-10.299-.003.294-.167.294.167v.339l-.294.164-.294-.166v-.337Zm9.481.195v.207l.181.101.176-.101v-.207l-.176-.099-.181.099Zm-4.885-.017.181-.102.178.102v.207l-.178.102-.181-.102v-.207ZM3.707 7.807v.31l.269.154.271-.154v-.31l-.271-.153-.269.153Zm8.103.155-.175-.102-.178.102v.206l.178.103.175-.103v-.206Zm4.978-.108v-.423l-.358-.207-.371.207v.423l.371.21.358-.21Zm-7.899.108v-.207l-.176-.101-.181.101v.207l.181.102.176-.102Zm9.509-.252.159-.091.158.091v.184l-.158.091-.159-.091V7.71ZM6.6 7.773v-.269l-.234-.133-.233.13v.268l.233.134.234-.13ZM2.94 7.6v.133l.117.065.113-.065V7.6l-.113-.065-.117.065Zm9.94.031.181.102.175-.102v-.206l-.175-.102-.181.102v.206Zm-2.981.051.09.051.088-.051V7.58l-.088-.05-.09.05v.102Zm-5.041-.043v-.104l-.087-.051-.094.051v.104l.094.055.087-.055Zm9.959-.325.178-.102.182.102v.206l-.182.103-.178-.103v-.206Zm-1.111-.045.257.147.255-.147v-.297l-.255-.147-.257.147v.297Zm4.395.073v-.146l-.127-.074-.127.074v.146l.127.074.127-.074Zm1.361-.174v.113l.099.056.095-.056v-.113l-.095-.055-.099.055ZM7.837 7.111v-.207l-.176-.102-.181.102v.207l.181.101.176-.101Zm-4.023-.37v.293l.255.144.249-.144v-.293l-.249-.145-.255.145Zm4.537.123.181-.101.179.101v.207l-.179.102-.181-.102v-.207Zm12.066-.039.179-.102.181.102v.207l-.181.101-.179-.101v-.207Zm-14.855.223v-.104l-.087-.048-.091.048v.104l.091.051.087-.051Zm11.532-.26v.206l.182.103.174-.103v-.206l-.174-.102-.182.102Zm-4.279-.252-.306-.175-.314.175v.363l.314.178.306-.178v-.363Zm-6.087.06v.139l.121.067.116-.067v-.139l-.116-.068-.121.068Zm4.415.04v-.207l-.175-.101-.182.101v.207l.182.101.175-.101Zm3.1-.36.181-.102.178.102v.206l-.178.103-.181-.103v-.206Zm-5.04-.209.288-.162.289.164v.332l-.289.164-.288-.164v-.334Zm9.206.34V6.2l-.175-.099-.179.099v.207l.179.101.175-.101Zm1.567-.049v.102l.088.048.088-.048v-.102l-.088-.048-.088.048Zm-.543.009V6.16l-.175-.101-.179.101v.207l.179.101.175-.101Zm-3.162-.199.122-.067.124.067v.142l-.124.071-.122-.071v-.142Zm-.645.089V6.05l-.175-.099-.181.099v.207l.181.104.175-.104Zm-7.21-.066v-.206l-.175-.099-.178.099v.206l.178.102.175-.102Zm-3.21-.246.178-.101.178.101v.207l-.178.101-.178-.101v-.207Zm1.279.232v-.09l-.077-.046-.079.046v.09l.079.046.077-.046Zm6.33-.486.178-.102.181.102v.206l-.181.102-.178-.102v-.206ZM6.773 5.68v-.337l-.286-.164-.291.164v.337l.291.164.286-.164Zm10.912-.085V5.19l-.342-.198-.351.198v.405l.351.197.342-.197Zm-5.538.039v-.133l-.116-.068-.116.068v.133l.116.068.116-.068Zm-2.215-.096.178.102.176-.102v-.206l-.176-.103-.178.103v.206Zm4.028.003v-.105l-.09-.053-.091.053v.105l.091.054.09-.054Zm4.922-.003v-.099l-.085-.051-.088.051v.099l.088.051.085-.051Zm-2.843-.305.178-.103.181.103v.206l-.181.102-.178-.102v-.206Zm-5.035-.419.178-.102.182.102v.207l-.182.101-.178-.101v-.207Zm6.616-.13.182-.102.178.102v.207l-.178.101-.182-.101v-.207Zm-4.019-.042.181-.099.178.101v.207l-.178.099-.181-.102v-.206Zm-.727.158v-.136l-.116-.068-.122.068V4.8l.122.067.116-.067Zm2.249-.116v-.207l-.178-.102-.179.102v.207l.179.102.178-.102Zm.554-.175.138-.079.139.079v.158l-.139.079-.138-.079v-.158Zm-4.042-.015v.102l.088.051.087-.051v-.102l-.087-.05-.088.05Zm-1.592-.082V4.07l-.292-.164-.294.164v.342l.294.167.292-.167Zm-1.941.057v-.156l-.13-.076-.135.076v.156l.135.076.13-.076Zm2.447-.003v-.153l-.13-.076-.133.076v.153l.133.077.13-.077Zm.416-.37.178.101.175-.101v-.207l-.175-.102-.178.102v.207Zm-.076-.204v-.207l-.176-.101-.178.101v.207l.178.102.176-.102Zm3.776-.201v-.43l-.366-.209-.373.209v.43l.373.215.366-.215Zm-3.171-.167.308.175.303-.175v-.353l-.303-.173-.308.173v.353Zm-1.892-.365.129-.073.128.073v.148l-.128.073-.129-.073v-.148Zm3.736-.619v.206l.178.102.176-.102V2.54l-.176-.102-.178.102Zm.871-.04.179-.102.18.102v.207l-.18.102-.179-.102V2.5Zm-2.783.124v-.206l-.175-.102-.181.102v.206l.181.102.175-.102Zm2.164-.288V2.13l-.176-.102-.178.102v.206l.178.102.176-.102Zm-2.448-.491.105-.061.108.061v.122l-.108.061-.105-.061v-.122Zm1.198-.088V1.55l-.173-.101-.181.101v.207l.181.101.173-.101Z" }) + ] + } + ); +}); + +exports.default = SiTidyverse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.d.ts new file mode 100644 index 000000000..aaa546375 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A162D"; +declare const SiTidyverse: IconType; +export { SiTidyverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.mjs new file mode 100644 index 000000000..b4f7810ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTidyverse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A162D"; +const SiTidyverse = React.forwardRef(function SiTidyverse2({ title = "Tidyverse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.392 18V5.999l-.829-.478L13.706.984 12 0l-1.706.984-7.857 4.537-.829.478v12.002l.829.478 7.956 4.594 1.609.927 1.61-.927 7.956-4.594.824-.479Zm-19.955-.45V6.508L12 .984l9.563 5.522v11.042L12 23.072 2.437 17.55Zm10.061 4.416v.228l.197.113.193-.113v-.228l-.193-.112-.197.112Zm-1.419-.111v.17l.148.082.141-.082v-.17l-.141-.082-.148.082Zm-.757-1.072.292-.164.291.167v.333l-.291.165-.292-.167v-.334Zm1.757-.006v.207l.178.102.176-.102v-.207l-.176-.101-.178.101Zm2.788-.026v-.15l-.127-.074-.131.074v.15l.131.073.127-.073Zm-6.425-.468.291-.164.292.166v.334l-.292.164-.291-.166v-.334Zm4.898-.246v.39l.339.192.333-.192v-.39l-.333-.193-.339.193Zm-3.445.291v.133l.116.067.117-.067v-.133l-.117-.068-.116.068Zm2.289-.54.113-.065.113.065v.129l-.113.063-.113-.065v-.127Zm3.127-.149v.167l.144.082.141-.082v-.167l-.141-.082-.144.082Zm1.403-.159v.122l.105.059.104-.059v-.122l-.104-.06-.105.06Zm-9.8-.432.178-.102.182.102v.207l-.182.101-.178-.101v-.207Zm.903.149v.101l.091.054.087-.054v-.101l-.087-.051-.091.051Zm5.115-.241v.206l.179.102.175-.102v-.206l-.175-.099-.179.099Zm-2.883.196v-.108l-.091-.051-.091.051v.108l.091.05.091-.05Zm1.453-.309v.206l.178.103.176-.103v-.206l-.176-.102-.178.102Zm3.03.038.113-.062.11.062v.127l-.11.065-.113-.065v-.127Zm-5.561-.129.178-.102.181.102v.207l-.181.102-.178-.102v-.207Zm6.542-.418v.257l.223.128.218-.128v-.257l-.218-.125-.223.125Zm-5.439.008v.207l.178.101.175-.101v-.207l-.175-.101-.178.101Zm-3.869.124v.111l.097.053.093-.053v-.111l-.093-.053-.097.053Zm11.941-.576v.351l.306.172.297-.172v-.351l-.297-.175-.306.175Zm-13.076.028.288-.161.289.164v.331l-.289.161-.288-.161v-.334Zm8.941.444v-.102l-.088-.051-.09.051v.102l.09.051.088-.051Zm2.953-.192v.127l.11.062.108-.062v-.127l-.108-.062-.11.062Zm-8.811-.521v.425l.368.212.362-.212v-.425l-.362-.207-.368.207Zm-.941.21v.15l.129.076.13-.076v-.15l-.13-.077-.129.077Zm12.408-.153.125-.071.124.071v.145l-.124.07-.125-.07v-.145Zm-7.99-.011v-.461l-.391-.224-.399.224v.461l.399.226.391-.226Zm3.335-.532.319-.181.322.183v.371l-.322.179-.319-.182v-.37Zm-2.886.509a.319.319 0 0 1 .026-.026h-.009c-.003.009-.011.017-.017.026Zm4.995-.444v.206l.178.102.176-.102v-.206l-.176-.102-.178.102Zm-13.637-.207v.323l.28.161.277-.161v-.323l-.277-.161-.28.161Zm10.803.238v-.266l-.223-.13-.232.13v.266l.232.13.223-.13Zm-9.552-.283v.139l.125.07.118-.07v-.139l-.118-.07-.125.07Zm8.457 0 .12-.068.121.068v.139l-.121.068-.12-.071v-.136Zm-5.871-.105v.207l.178.105.175-.105v-.207l-.175-.099-.178.099Zm12.514.003v.131l.113.065.111-.065v-.131l-.111-.065-.113.065Zm-3.692-.136.178-.101.181.101v.207l-.181.102-.178-.102v-.207Zm-3.91-.019v.207l.179.101.175-.101v-.207l-.175-.102-.179.102Zm6.263.161v-.207l-.175-.101-.181.101v.207l.181.102.175-.102Zm-8.2-.294v-.204l-.175-.102-.179.102v.204l.179.101.175-.101Zm-4.045-.275v.136l.119.068.116-.068v-.136l-.116-.067-.119.067Zm-3.388.032.091-.051.087.051v.101l-.087.051-.091-.051v-.101Zm5.524-.187v.206l.178.102.179-.102v-.206l-.179-.099-.178.099Zm-2.823-.005v.206l.179.102.174-.102v-.206l-.174-.103-.179.103Zm2.3.067.091-.051.093.051v.105l-.093.051-.091-.051v-.105Zm13.314-.107.127-.074.127.074v.147l-.127.073-.127-.073v-.147Zm-9.795-.012.118-.067.119.067v.139l-.119.065-.118-.067v-.137Zm3.679-.22.221-.125.218.125v.252l-.218.121-.221-.121v-.252Zm-1.623.133v-.354l-.303-.175-.308.175v.354l.308.175.303-.175Zm1.026.084v-.149l-.127-.074-.13.074v.149l.13.074.127-.074Zm3.771.003v-.122l-.105-.061-.108.061v.122l.108.062.105-.062Zm1.083-.282.181-.099.178.101v.207l-.178.099-.181-.102v-.206Zm-15.356.24v-.119l-.098-.059-.103.059v.119l.103.056.098-.056Zm5.326-.105v.105l.088.051.088-.051v-.105l-.088-.05-.088.05Zm2.662-.104v.125l.11.061.105-.061v-.125l-.105-.063-.11.063Zm-7.312-.04.125-.07.124.07v.144l-.124.071-.125-.071v-.144Zm12.196-.3v.331l.289.164.283-.164v-.331l-.283-.164-.289.164Zm-9.687-.138v.319l.277.159.271-.159v-.319l-.271-.156-.277.156Zm-1.494-.119.292-.164.289.164v.333l-.289.164-.292-.164v-.333Zm5.092.396v-.206l-.176-.102-.18.102v.206l.18.101.176-.101Zm-8.075-.487v.277l.243.136.234-.136v-.277l-.234-.138-.243.138Zm11.438-.211.283-.162.28.162v.322l-.28.158-.283-.158v-.322Zm-2.472.33v-.206l-.175-.102-.178.102v.206l.178.102.175-.102Zm-4.961-.231v.135l.119.068.116-.068v-.135l-.116-.066-.119.066Zm9.229-.154.181-.099.178.102v.207l-.178.099-.181-.102v-.207Zm3.751-.045.181-.102.178.102v.207l-.178.101-.181-.101v-.207Zm-1.089-.036v.206l.178.102.175-.102v-.206l-.175-.103-.178.103Zm-8.596-.034.178-.099.181.101v.207l-.181.099-.178-.102v-.206Zm7.074.203v-.207l-.175-.101-.181.101v.207l.181.102.175-.102Zm1.027-.028v-.207l-.176-.102-.178.102v.207l.178.102.176-.102Zm-10.384-.24.178-.099.182.101v.207l-.182.099-.178-.102v-.206Zm-3.657-.028v-.324l-.274-.158-.281.158v.324l.281.16.274-.16Zm.495-.148.178-.101.181.101v.207l-.181.101-.178-.101v-.207Zm2.271.187v-.136l-.113-.065-.116.065v.136l.116.064.113-.064Zm4.147-.017.085.051.087-.051v-.099l-.087-.048-.085.048v.099Zm-5.335-.006v-.119l-.099-.059-.105.059v.119l.105.057.099-.057Zm7.258-.359.201-.113.207.116v.235l-.207.113-.201-.116v-.235Zm7.666.009v.214l.189.108.184-.108v-.214l-.184-.108-.189.108Zm-11.473-3.31.504 1.437c.053.162.11.351.147.498h.008c.042-.146.09-.33.147-.509l.455-1.426h.441l-.625 1.734c-.3.835-.504 1.262-.787 1.525a1.098 1.098 0 0 1-.512.286l-.104-.371a1.09 1.09 0 0 0 .365-.215 1.32 1.32 0 0 0 .35-.492.323.323 0 0 0 .034-.105.393.393 0 0 0-.028-.116l-.848-2.243.453-.003Zm3.182 3.46v-.136l-.113-.065-.116.065v.136l.116.064.113-.064Zm-9.373-.796v-.104l-.089-.051-.093.051v.104l.093.055.089-.055Zm5.442-.859c0 .215.005.464.019.628H7.91l-.02-.421h-.008a.842.842 0 0 1-.783.478c-.554 0-.982-.498-.982-1.236-.006-.808.47-1.306 1.03-1.306.35 0 .588.175.693.373h.008V9.91h.416v2.937Zm8.613.178c.164.107.353.17.551.176.303 0 .447-.162.447-.362 0-.212-.119-.326-.427-.447-.413-.156-.609-.396-.609-.69 0-.393.301-.713.793-.713a1.09 1.09 0 0 1 .563.15l-.105.322a.865.865 0 0 0-.47-.142c-.246 0-.385.15-.385.331 0 .201.139.291.435.413.399.162.603.374.603.735 0 .428-.314.73-.857.73-.252 0-.484-.065-.645-.166l.106-.337Zm2.073-.685c.008.599.37.846.786.846.301 0 .479-.057.637-.127l.071.317a1.78 1.78 0 0 1-.764.15c-.707 0-1.128-.493-1.128-1.228s.407-1.312 1.077-1.312c.75 0 .948.698.948 1.145 0 .067-.006.138-.014.206H18.95v.003Zm-5.521 0c.008.599.37.846.786.846.3 0 .478-.057.637-.127l.071.317a1.78 1.78 0 0 1-.764.15c-.707 0-1.128-.493-1.128-1.228s.407-1.312 1.077-1.312c.749 0 .947.698.947 1.148 0 .068-.005.138-.014.206h-1.612Zm-9.137-1.997v.699h.597v.336h-.597v1.312c0 .303.082.473.315.473a.871.871 0 0 0 .243-.031l.019.33a.993.993 0 0 1-.37.059c-.195 0-.35-.065-.45-.186-.119-.13-.161-.348-.161-.633v-1.327h-.359v-.336h.356v-.583l.407-.113ZM15.477 11.8c0-.286-.006-.532-.02-.758h.365l.014.479h.02c.105-.329.356-.535.636-.535a.41.41 0 0 1 .119.018v.418a.476.476 0 0 0-.142-.014c-.294 0-.503.238-.56.569a1.562 1.562 0 0 0-.019.206v1.299h-.413V11.8ZM5.265 13.478v-2.432h.419v2.432h-.419Zm5.954-2.436.45 1.369c.077.221.139.421.184.622h.014c.054-.201.119-.401.196-.622l.446-1.369h.436l-.902 2.432h-.399l-.874-2.432h.449Zm10.155 2.187v-.148l-.125-.073-.13.073v.148l.13.073.125-.073ZM7.845 12.032a.85.85 0 0 0-.02-.187c-.062-.282-.288-.512-.603-.512-.432 0-.687.402-.687.939 0 .493.229.9.678.9.281 0 .535-.195.611-.529a.875.875 0 0 0 .02-.192v-.419h.001Zm-5.018.424v.173l.15.088.147-.088v-.173l-.147-.085-.15.085Zm11.826-.433c.006-.282-.11-.718-.58-.718-.421 0-.608.413-.638.718h1.218Zm5.521 0c.006-.282-.11-.718-.579-.718-.422 0-.609.413-.643.718h1.222Zm-17.61-.48.108-.06.11.06v.124l-.11.062-.108-.062v-.124Zm18.555-.416.128-.071.127.074v.147l-.127.07-.128-.073v-.147Zm-18.142-.365v-.15l-.127-.076-.133.076v.15l.133.077.127-.077Zm2.752-.405a.254.254 0 0 1-.237.272h-.028c-.147 0-.252-.122-.252-.272 0-.155.111-.277.261-.277.157.004.256.122.256.277Zm14.409-.447.293-.166.295.166v.34l-.295.167-.293-.167v-.34Zm-.88-.158v.207l.178.102.175-.102v-.207l-.175-.099-.178.099Zm-2.099-.11v.207l.181.101.175-.101v-.207l-.175-.102-.181.102Zm-5.823.113v-.206l-.176-.102-.178.102v.206l.178.102.176-.102Zm1.388-.501-.339-.194-.348.194v.403l.348.194.339-.194v-.403Zm1.055.233V9.28l-.175-.102-.179.102v.207l.179.101.175-.101Zm-6.712-.074v-.207l-.175-.099-.178.099v.207l.178.102.175-.102Zm14.06.048v-.102l-.087-.048-.085.048v.102l.085.048.087-.048Zm-5.551-.314.18-.101.178.101v.207l-.178.101-.18-.101v-.207ZM2.847 9.113l.181-.102.178.102v.206l-.178.103-.181-.103v-.206Zm11.58 0v.206l.178.103.176-.103v-.206l-.176-.102-.178.102Zm5.103.107v.099l.087.051.085-.051V9.22l-.085-.05-.087.05Zm-9.923-.036v.082l.071.039.068-.039v-.082l-.068-.039-.071.039Zm8.477-.484v.396l.345.198.337-.198V8.7l-.337-.198-.345.198Zm-13.189.43v-.206l-.178-.102-.181.099v.206l.181.105.178-.102Zm12.086-.333.178-.103.181.103v.206l-.181.102-.178-.102v-.206Zm-8.387.09v-.28l-.24-.138-.243.138v.28l.243.139.24-.139Zm-2.749-.145v.128l.11.065.108-.065v-.128l-.108-.062-.11.062Zm-1.932-.228v.11l.097.054.093-.054v-.11l-.093-.055-.097.055Zm1.649-.026v-.263l-.226-.13-.229.13v.263l.229.133.226-.133Zm10.002-.017v.073l.062.034.063-.034v-.073l-.063-.036-.062.036Zm-3.015-.045.087-.051.091.051v.102l-.091.05-.087-.05v-.102Zm-4.721-.495-.343-.198-.35.198v.404l.35.199.343-.199v-.404Zm6.55.246-.174-.099-.182.099v.209l.182.102.174-.102v-.209Zm6.326-.226.305-.172.305.174v.351l-.305.173-.305-.173v-.353Zm-10.299-.003.294-.167.294.167v.339l-.294.164-.294-.166v-.337Zm9.481.195v.207l.181.101.176-.101v-.207l-.176-.099-.181.099Zm-4.885-.017.181-.102.178.102v.207l-.178.102-.181-.102v-.207ZM3.707 7.807v.31l.269.154.271-.154v-.31l-.271-.153-.269.153Zm8.103.155-.175-.102-.178.102v.206l.178.103.175-.103v-.206Zm4.978-.108v-.423l-.358-.207-.371.207v.423l.371.21.358-.21Zm-7.899.108v-.207l-.176-.101-.181.101v.207l.181.102.176-.102Zm9.509-.252.159-.091.158.091v.184l-.158.091-.159-.091V7.71ZM6.6 7.773v-.269l-.234-.133-.233.13v.268l.233.134.234-.13ZM2.94 7.6v.133l.117.065.113-.065V7.6l-.113-.065-.117.065Zm9.94.031.181.102.175-.102v-.206l-.175-.102-.181.102v.206Zm-2.981.051.09.051.088-.051V7.58l-.088-.05-.09.05v.102Zm-5.041-.043v-.104l-.087-.051-.094.051v.104l.094.055.087-.055Zm9.959-.325.178-.102.182.102v.206l-.182.103-.178-.103v-.206Zm-1.111-.045.257.147.255-.147v-.297l-.255-.147-.257.147v.297Zm4.395.073v-.146l-.127-.074-.127.074v.146l.127.074.127-.074Zm1.361-.174v.113l.099.056.095-.056v-.113l-.095-.055-.099.055ZM7.837 7.111v-.207l-.176-.102-.181.102v.207l.181.101.176-.101Zm-4.023-.37v.293l.255.144.249-.144v-.293l-.249-.145-.255.145Zm4.537.123.181-.101.179.101v.207l-.179.102-.181-.102v-.207Zm12.066-.039.179-.102.181.102v.207l-.181.101-.179-.101v-.207Zm-14.855.223v-.104l-.087-.048-.091.048v.104l.091.051.087-.051Zm11.532-.26v.206l.182.103.174-.103v-.206l-.174-.102-.182.102Zm-4.279-.252-.306-.175-.314.175v.363l.314.178.306-.178v-.363Zm-6.087.06v.139l.121.067.116-.067v-.139l-.116-.068-.121.068Zm4.415.04v-.207l-.175-.101-.182.101v.207l.182.101.175-.101Zm3.1-.36.181-.102.178.102v.206l-.178.103-.181-.103v-.206Zm-5.04-.209.288-.162.289.164v.332l-.289.164-.288-.164v-.334Zm9.206.34V6.2l-.175-.099-.179.099v.207l.179.101.175-.101Zm1.567-.049v.102l.088.048.088-.048v-.102l-.088-.048-.088.048Zm-.543.009V6.16l-.175-.101-.179.101v.207l.179.101.175-.101Zm-3.162-.199.122-.067.124.067v.142l-.124.071-.122-.071v-.142Zm-.645.089V6.05l-.175-.099-.181.099v.207l.181.104.175-.104Zm-7.21-.066v-.206l-.175-.099-.178.099v.206l.178.102.175-.102Zm-3.21-.246.178-.101.178.101v.207l-.178.101-.178-.101v-.207Zm1.279.232v-.09l-.077-.046-.079.046v.09l.079.046.077-.046Zm6.33-.486.178-.102.181.102v.206l-.181.102-.178-.102v-.206ZM6.773 5.68v-.337l-.286-.164-.291.164v.337l.291.164.286-.164Zm10.912-.085V5.19l-.342-.198-.351.198v.405l.351.197.342-.197Zm-5.538.039v-.133l-.116-.068-.116.068v.133l.116.068.116-.068Zm-2.215-.096.178.102.176-.102v-.206l-.176-.103-.178.103v.206Zm4.028.003v-.105l-.09-.053-.091.053v.105l.091.054.09-.054Zm4.922-.003v-.099l-.085-.051-.088.051v.099l.088.051.085-.051Zm-2.843-.305.178-.103.181.103v.206l-.181.102-.178-.102v-.206Zm-5.035-.419.178-.102.182.102v.207l-.182.101-.178-.101v-.207Zm6.616-.13.182-.102.178.102v.207l-.178.101-.182-.101v-.207Zm-4.019-.042.181-.099.178.101v.207l-.178.099-.181-.102v-.206Zm-.727.158v-.136l-.116-.068-.122.068V4.8l.122.067.116-.067Zm2.249-.116v-.207l-.178-.102-.179.102v.207l.179.102.178-.102Zm.554-.175.138-.079.139.079v.158l-.139.079-.138-.079v-.158Zm-4.042-.015v.102l.088.051.087-.051v-.102l-.087-.05-.088.05Zm-1.592-.082V4.07l-.292-.164-.294.164v.342l.294.167.292-.167Zm-1.941.057v-.156l-.13-.076-.135.076v.156l.135.076.13-.076Zm2.447-.003v-.153l-.13-.076-.133.076v.153l.133.077.13-.077Zm.416-.37.178.101.175-.101v-.207l-.175-.102-.178.102v.207Zm-.076-.204v-.207l-.176-.101-.178.101v.207l.178.102.176-.102Zm3.776-.201v-.43l-.366-.209-.373.209v.43l.373.215.366-.215Zm-3.171-.167.308.175.303-.175v-.353l-.303-.173-.308.173v.353Zm-1.892-.365.129-.073.128.073v.148l-.128.073-.129-.073v-.148Zm3.736-.619v.206l.178.102.176-.102V2.54l-.176-.102-.178.102Zm.871-.04.179-.102.18.102v.207l-.18.102-.179-.102V2.5Zm-2.783.124v-.206l-.175-.102-.181.102v.206l.181.102.175-.102Zm2.164-.288V2.13l-.176-.102-.178.102v.206l.178.102.176-.102Zm-2.448-.491.105-.061.108.061v.122l-.108.061-.105-.061v-.122Zm1.198-.088V1.55l-.173-.101-.181.101v.207l.181.101.173-.101Z" }) + ] + } + ); +}); + +export { SiTidyverse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.cjs new file mode 100644 index 000000000..7d8b9a8b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#063752"; +const SiTietoevry = React__namespace.forwardRef(function SiTietoevry2({ title = "TietoEVRY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 1.239v1.966H0v1.282h1v2.55c0 1.641.434 2.131 2.121 2.131.36 0 .72-.047 1.084-.059V7.654c-.174 0-.351.024-.514.024-.43 0-.709-.105-.709-.582v-2.61h1.223v-1.28H2.982L2.98 1.238zm3.744 0v1.427h1.98V1.24zm9.66 0v1.966h-1v1.282h1v2.55c0 1.641.434 2.131 2.12 2.131.36 0 .72-.047 1.085-.059V7.654c-.174 0-.352.024-.514.024-.43 0-.709-.105-.709-.582v-2.61h1.223v-1.28h-1.223l-.002-1.967zm-4.201 1.814a3.129 3.129 0 00-3.111 3.088c0 1.967 1.338 3.12 3.306 3.12 1.351 0 2.642-.588 3.004-1.944H11.55a1.183 1.183 0 01-1.128.644 1.27 1.27 0 01-1.35-1.334h4.435c.094-1.989-.99-3.572-3.156-3.572a3.129 3.129 0 00-.148-.002zm10.761 0a3.044 3.044 0 00-.158.002 3.104 3.104 0 103.193 3.11 3.044 3.044 0 00-3.035-3.112zm-16.22.152V9.11h1.98V3.205zm5.588 1.15a1.287 1.287 0 01.02 0 1.206 1.206 0 011.175 1.198H9.072a1.287 1.287 0 011.26-1.197zm10.474.17c.919 0 1.21.893 1.21 1.64 0 .745-.29 1.626-1.21 1.626-.919 0-1.197-.88-1.197-1.627 0-.746.278-1.638 1.197-1.638zM4.599 10.54a2.365 2.365 0 00-1.376.428 1.494 1.494 0 00-.327.701l-.683 2.361a.98.98 0 01-.334.656c-.469.282-1.426.301-1.34 1.336a5.366 5.366 0 00.428 1.547 1.165 1.165 0 01.068.69c-.03.201-.065.401-.105.601-.034.174-.114.55.004.692.117.142.34.13.607.097a15.92 15.92 0 003.322-.994 2.974 2.974 0 00.61-.344 1.624 1.624 0 00.488-1.002.393.393 0 00-.16-.414c-.124-.07-.293-.026-.55.045-.422.115-1.469.519-1.831.63-.147.044-.437.113-.549-.028-.186-.234.08-.967.24-1.375a1.512 1.512 0 011.178-.957c.282-.081.745-.229.933-.293a.849.849 0 00.594-.672c.132-.532-.272-.614-.64-.717-.528-.146-.858-.163-.627-.675a.525.525 0 01.388-.36c.21-.055 1.983-.338 2.688-.467.395-.072.53-.285.695-.627.359-.743-.089-.79-.451-.757-.817.075-2.13.314-2.691.396-.3.045-.101-.47-.45-.494a2.365 2.365 0 00-.129-.004zm11.067 1.149a5.006 5.006 0 00-1.707 1.136c-.045-.303-.052-.637-.36-.672a1.275 1.275 0 00-.68.18 1.102 1.102 0 00-.49.47l-.718 1.659a.13.13 0 01-.108.08.72.72 0 00-.539.45.623.623 0 00.123.657c-.142.384-.52 1.28-.52 1.28-.469 1.097-.438 1.478-.27 1.71a1.305 1.305 0 00.743.35c.272.045.48-.118.707-.48.336-.535 1.01-1.948 1.01-1.948a10.646 10.646 0 004.03 2.436s-1.423 1.967-1.628 3.054c0 0-.105.714.852.711a1.787 1.787 0 00.865-.22.467.467 0 00.219-.282.221.221 0 00-.022-.152.466.466 0 00-.097-.103c-.05-.05-.043-.113-.016-.186.527-1.54 2.67-4.155 3.125-4.722 1.206-1.503 3.433-3.843 3.592-4.03.288-.371.344-.593-.127-1.056-.423-.416-.705-.17-.912.045-.035.041-.994.996-2.004 2.162-.786.907-1.467 1.752-1.467 1.752a8.91 8.91 0 01.06-1.284c.049-.406.18-1.196.221-1.447.2-1.27-.58-1.321-.87-1.34-.306-.018-.451.146-.542.534a14.45 14.45 0 00-.357 4.31c.032.362.102.734.11.758l-.184.256a7.312 7.312 0 01-2.881-1.657A5.466 5.466 0 0016 15.557a2.539 2.539 0 001.332-2.346 1.695 1.695 0 00-1.667-1.523zm-4.625.205a.538.538 0 00-.514.337c-.254.436-.93 1.679-1.541 2.641a10.35 10.35 0 01-1.07 1.52s0-2.442-.031-2.653c-.1-.7-.467-.63-.74-.582-.708.12-.7.388-.733.615a33.16 33.16 0 00.066 3.41c.026.314-.024 1.42.616 1.51.481.068.94-.375 1.289-.76a19.636 19.636 0 001.564-2.01 37.079 37.079 0 001.787-2.763c.231-.408.218-.695-.31-1.092a.538.538 0 00-.383-.173zm4.513 1.306a.353.353 0 01.24.022c.295.16-.044.85-.61 1.271a2.985 2.985 0 01-1.638.678 6.203 6.203 0 01.995-1.295c.344-.345.732-.619 1.013-.676Z" }) + ] + } + ); +}); + +exports.default = SiTietoevry; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.d.ts new file mode 100644 index 000000000..53cc3fd05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#063752"; +declare const SiTietoevry: IconType; +export { SiTietoevry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.mjs new file mode 100644 index 000000000..b74c12092 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTietoevry.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#063752"; +const SiTietoevry = React.forwardRef(function SiTietoevry2({ title = "TietoEVRY", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1 1.239v1.966H0v1.282h1v2.55c0 1.641.434 2.131 2.121 2.131.36 0 .72-.047 1.084-.059V7.654c-.174 0-.351.024-.514.024-.43 0-.709-.105-.709-.582v-2.61h1.223v-1.28H2.982L2.98 1.238zm3.744 0v1.427h1.98V1.24zm9.66 0v1.966h-1v1.282h1v2.55c0 1.641.434 2.131 2.12 2.131.36 0 .72-.047 1.085-.059V7.654c-.174 0-.352.024-.514.024-.43 0-.709-.105-.709-.582v-2.61h1.223v-1.28h-1.223l-.002-1.967zm-4.201 1.814a3.129 3.129 0 00-3.111 3.088c0 1.967 1.338 3.12 3.306 3.12 1.351 0 2.642-.588 3.004-1.944H11.55a1.183 1.183 0 01-1.128.644 1.27 1.27 0 01-1.35-1.334h4.435c.094-1.989-.99-3.572-3.156-3.572a3.129 3.129 0 00-.148-.002zm10.761 0a3.044 3.044 0 00-.158.002 3.104 3.104 0 103.193 3.11 3.044 3.044 0 00-3.035-3.112zm-16.22.152V9.11h1.98V3.205zm5.588 1.15a1.287 1.287 0 01.02 0 1.206 1.206 0 011.175 1.198H9.072a1.287 1.287 0 011.26-1.197zm10.474.17c.919 0 1.21.893 1.21 1.64 0 .745-.29 1.626-1.21 1.626-.919 0-1.197-.88-1.197-1.627 0-.746.278-1.638 1.197-1.638zM4.599 10.54a2.365 2.365 0 00-1.376.428 1.494 1.494 0 00-.327.701l-.683 2.361a.98.98 0 01-.334.656c-.469.282-1.426.301-1.34 1.336a5.366 5.366 0 00.428 1.547 1.165 1.165 0 01.068.69c-.03.201-.065.401-.105.601-.034.174-.114.55.004.692.117.142.34.13.607.097a15.92 15.92 0 003.322-.994 2.974 2.974 0 00.61-.344 1.624 1.624 0 00.488-1.002.393.393 0 00-.16-.414c-.124-.07-.293-.026-.55.045-.422.115-1.469.519-1.831.63-.147.044-.437.113-.549-.028-.186-.234.08-.967.24-1.375a1.512 1.512 0 011.178-.957c.282-.081.745-.229.933-.293a.849.849 0 00.594-.672c.132-.532-.272-.614-.64-.717-.528-.146-.858-.163-.627-.675a.525.525 0 01.388-.36c.21-.055 1.983-.338 2.688-.467.395-.072.53-.285.695-.627.359-.743-.089-.79-.451-.757-.817.075-2.13.314-2.691.396-.3.045-.101-.47-.45-.494a2.365 2.365 0 00-.129-.004zm11.067 1.149a5.006 5.006 0 00-1.707 1.136c-.045-.303-.052-.637-.36-.672a1.275 1.275 0 00-.68.18 1.102 1.102 0 00-.49.47l-.718 1.659a.13.13 0 01-.108.08.72.72 0 00-.539.45.623.623 0 00.123.657c-.142.384-.52 1.28-.52 1.28-.469 1.097-.438 1.478-.27 1.71a1.305 1.305 0 00.743.35c.272.045.48-.118.707-.48.336-.535 1.01-1.948 1.01-1.948a10.646 10.646 0 004.03 2.436s-1.423 1.967-1.628 3.054c0 0-.105.714.852.711a1.787 1.787 0 00.865-.22.467.467 0 00.219-.282.221.221 0 00-.022-.152.466.466 0 00-.097-.103c-.05-.05-.043-.113-.016-.186.527-1.54 2.67-4.155 3.125-4.722 1.206-1.503 3.433-3.843 3.592-4.03.288-.371.344-.593-.127-1.056-.423-.416-.705-.17-.912.045-.035.041-.994.996-2.004 2.162-.786.907-1.467 1.752-1.467 1.752a8.91 8.91 0 01.06-1.284c.049-.406.18-1.196.221-1.447.2-1.27-.58-1.321-.87-1.34-.306-.018-.451.146-.542.534a14.45 14.45 0 00-.357 4.31c.032.362.102.734.11.758l-.184.256a7.312 7.312 0 01-2.881-1.657A5.466 5.466 0 0016 15.557a2.539 2.539 0 001.332-2.346 1.695 1.695 0 00-1.667-1.523zm-4.625.205a.538.538 0 00-.514.337c-.254.436-.93 1.679-1.541 2.641a10.35 10.35 0 01-1.07 1.52s0-2.442-.031-2.653c-.1-.7-.467-.63-.74-.582-.708.12-.7.388-.733.615a33.16 33.16 0 00.066 3.41c.026.314-.024 1.42.616 1.51.481.068.94-.375 1.289-.76a19.636 19.636 0 001.564-2.01 37.079 37.079 0 001.787-2.763c.231-.408.218-.695-.31-1.092a.538.538 0 00-.383-.173zm4.513 1.306a.353.353 0 01.24.022c.295.16-.044.85-.61 1.271a2.985 2.985 0 01-1.638.678 6.203 6.203 0 01.995-1.295c.344-.345.732-.619 1.013-.676Z" }) + ] + } + ); +}); + +export { SiTietoevry as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.cjs new file mode 100644 index 000000000..8c079fb84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTiktok = React__namespace.forwardRef(function SiTiktok2({ title = "TikTok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z" }) + ] + } + ); +}); + +exports.default = SiTiktok; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.d.ts new file mode 100644 index 000000000..afe7e91b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTiktok: IconType; +export { SiTiktok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.mjs new file mode 100644 index 000000000..10d9530fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTiktok.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTiktok = React.forwardRef(function SiTiktok2({ title = "TikTok", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z" }) + ] + } + ); +}); + +export { SiTiktok as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.cjs new file mode 100644 index 000000000..b79b59574 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFA282"; +const SiTildapublishing = React__namespace.forwardRef(function SiTildapublishing2({ title = "Tilda Publishing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0zm0 .775C18.192.775 23.225 5.808 23.225 12c0 6.192-5.033 11.225-11.225 11.225C5.808 23.225.775 18.192.775 12 .775 5.808 5.808.775 12 .775zM8.904 6.584c-1.36 0-2.52 1.16-2.52 3.287l1.352.193c.192-1.352.576-1.935 1.352-1.935.776 0 1.167.19 2.52.967 1.351.776 1.735.968 3.095.968s2.714-.969 2.522-3.289H15.87c0 1.16-.382 1.745-1.158 1.745-.776 0-1.169-.191-2.713-.967s-1.736-.969-3.096-.969zm2.127 3.48v8.905h1.553v-8.32l-1.553-.585z" }) + ] + } + ); +}); + +exports.default = SiTildapublishing; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.d.ts new file mode 100644 index 000000000..758f42b4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFA282"; +declare const SiTildapublishing: IconType; +export { SiTildapublishing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.mjs new file mode 100644 index 000000000..d7c5d14ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTildapublishing.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFA282"; +const SiTildapublishing = React.forwardRef(function SiTildapublishing2({ title = "Tilda Publishing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0zm0 .775C18.192.775 23.225 5.808 23.225 12c0 6.192-5.033 11.225-11.225 11.225C5.808 23.225.775 18.192.775 12 .775 5.808 5.808.775 12 .775zM8.904 6.584c-1.36 0-2.52 1.16-2.52 3.287l1.352.193c.192-1.352.576-1.935 1.352-1.935.776 0 1.167.19 2.52.967 1.351.776 1.735.968 3.095.968s2.714-.969 2.522-3.289H15.87c0 1.16-.382 1.745-1.158 1.745-.776 0-1.169-.191-2.713-.967s-1.736-.969-3.096-.969zm2.127 3.48v8.905h1.553v-8.32l-1.553-.585z" }) + ] + } + ); +}); + +export { SiTildapublishing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTile.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTile.cjs new file mode 100644 index 000000000..d460888cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTile.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTile = React__namespace.forwardRef(function SiTile2({ title = "Tile", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.486 8.483h1.617a.16.16 0 0 1 .15.15v9.706a.16.16 0 0 1-.15.15H7.486a.162.162 0 0 1-.15-.15V8.633c0-.075.075-.15.15-.15zm3.536-2.972h1.617c.076 0 .151.075.151.15v12.64c0 .075-.075.15-.15.15h-1.618a.162.162 0 0 1-.15-.15V5.66c0-.075.075-.15.15-.15zM5.68 8.483H1.918V5.66a.162.162 0 0 0-.15-.15H.15a.162.162 0 0 0-.15.15v7.787c0 2.746 2.257 5.003 5.003 5.003h.677c.075 0 .15-.075.15-.15v-1.618a.162.162 0 0 0-.15-.15h-.677a3.099 3.099 0 0 1-3.085-3.085v-3.084H5.68c.075 0 .15-.076.15-.15V8.595c0-.076-.075-.113-.15-.113zM22.533 9.95a5.018 5.018 0 0 0-7.035 0c-1.956 1.918-1.918 5.078 0 7.034 1.919 1.956 5.079 1.919 7.035 0a4.48 4.48 0 0 0 .865-1.166.08.08 0 0 0-.075-.075h-2.07l-.225.075c-1.279 1.129-3.235.978-4.363-.338-.339-.414-.602-.903-.678-1.43 0-.075.038-.113.113-.113h7.75c.075 0 .15-.075.15-.15v-.301a5.013 5.013 0 0 0-1.467-3.536zm-.903 2.257h-5.266c-.076 0-.113-.038-.113-.113a3.066 3.066 0 0 1 2.708-1.655c1.129 0 2.182.64 2.709 1.655 0 .038 0 .075-.038.113zM9.404 6.602a1.09 1.09 0 0 1-1.09 1.09 1.09 1.09 0 0 1-1.091-1.09 1.09 1.09 0 0 1 1.09-1.091 1.09 1.09 0 0 1 1.091 1.09Z" }) + ] + } + ); +}); + +exports.default = SiTile; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTile.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTile.d.ts new file mode 100644 index 000000000..347d508b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTile.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTile: IconType; +export { SiTile as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTile.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTile.mjs new file mode 100644 index 000000000..b5f190d64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTile.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTile = React.forwardRef(function SiTile2({ title = "Tile", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.486 8.483h1.617a.16.16 0 0 1 .15.15v9.706a.16.16 0 0 1-.15.15H7.486a.162.162 0 0 1-.15-.15V8.633c0-.075.075-.15.15-.15zm3.536-2.972h1.617c.076 0 .151.075.151.15v12.64c0 .075-.075.15-.15.15h-1.618a.162.162 0 0 1-.15-.15V5.66c0-.075.075-.15.15-.15zM5.68 8.483H1.918V5.66a.162.162 0 0 0-.15-.15H.15a.162.162 0 0 0-.15.15v7.787c0 2.746 2.257 5.003 5.003 5.003h.677c.075 0 .15-.075.15-.15v-1.618a.162.162 0 0 0-.15-.15h-.677a3.099 3.099 0 0 1-3.085-3.085v-3.084H5.68c.075 0 .15-.076.15-.15V8.595c0-.076-.075-.113-.15-.113zM22.533 9.95a5.018 5.018 0 0 0-7.035 0c-1.956 1.918-1.918 5.078 0 7.034 1.919 1.956 5.079 1.919 7.035 0a4.48 4.48 0 0 0 .865-1.166.08.08 0 0 0-.075-.075h-2.07l-.225.075c-1.279 1.129-3.235.978-4.363-.338-.339-.414-.602-.903-.678-1.43 0-.075.038-.113.113-.113h7.75c.075 0 .15-.075.15-.15v-.301a5.013 5.013 0 0 0-1.467-3.536zm-.903 2.257h-5.266c-.076 0-.113-.038-.113-.113a3.066 3.066 0 0 1 2.708-1.655c1.129 0 2.182.64 2.709 1.655 0 .038 0 .075-.038.113zM9.404 6.602a1.09 1.09 0 0 1-1.09 1.09 1.09 1.09 0 0 1-1.091-1.09 1.09 1.09 0 0 1 1.09-1.091 1.09 1.09 0 0 1 1.091 1.09Z" }) + ] + } + ); +}); + +export { SiTile as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.cjs new file mode 100644 index 000000000..49165817e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FDB515"; +const SiTimescale = React__namespace.forwardRef(function SiTimescale2({ title = "Timescale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.537.763c-1.167.7-2.21 1.582-3.08 2.61L3.79 4.836a10.422 10.422 0 013.627-2.881zm13.028.085l-1.991 1.12a10.381 10.381 0 013.762 3.07l1.18-1.654a12.371 12.371 0 00-2.95-2.536zm-6.564.752a9.788 9.788 0 00-4.131.91l.59 1.011a8.542 8.542 0 013.541-.762c1.261 0 2.457.274 3.534.76l.59-1.012a9.81 9.81 0 00-4.124-.907zM11.4 3.535l-.55 6.626h.003l-.002.04c.003.111.013.216.033.318.01.112.043.227.097.342.114.289.298.505.516.607.05.04.105.075.158.111a.98.98 0 01.033.02v.004l6.68 3.596.348-.476-6.058-4.6c-.007 0-.01-.005-.014-.008L12 3.535zm1.423.052c.19.234.361.523.502.855 3.155.604 5.54 3.325 5.54 6.596 0 .877-.176 1.712-.484 2.48a3.7 3.7 0 01.52.76 7.314 7.314 0 00.754-3.24c0-3.868-2.99-7.05-6.832-7.45zm-2.284.095c-3.527.667-6.19 3.708-6.19 7.356 0 2.584 1.335 4.863 3.367 6.21a9.84 9.84 0 01.295-.743c-1.74-1.219-2.874-3.214-2.874-5.467 0-3.054 2.082-5.632 4.932-6.45.128-.351.289-.656.47-.906zm9.15 1.675l-.801.893a8.101 8.101 0 011.551 4.777c0 2.916-1.542 5.481-3.872 6.952.104.388.188.792.251 1.209 2.87-1.632 4.802-4.677 4.802-8.16a9.224 9.224 0 00-1.93-5.67zm-15.38.007a9.25 9.25 0 00-1.93 5.665c0 3.507 1.954 6.567 4.858 8.19.063-.418.144-.822.248-1.206-2.36-1.468-3.923-4.045-3.923-6.984 0-1.777.573-3.422 1.549-4.772zm9.314.043c.044.203.08.416.107.64a5.332 5.332 0 013.213 2.912l.577-.148a5.942 5.942 0 00-3.897-3.404zm-3.816.187a5.939 5.939 0 00-3.319 3.198l.58.148A5.324 5.324 0 019.73 6.257c.017-.227.04-.45.077-.663zM6.733 9.672l-.62.63.315.614 1.727.618.942-.618-.312-.923zm10.615 0l-2.048.321-.315.923.942.618 1.73-.618.315-.614zM6.1 11.869A5.824 5.824 0 008.42 15.7c.1-.17.204-.335.315-.493a5.252 5.252 0 01-2.038-3.34zm11.206 0c-.03.18-.071.355-.118.529.174.138.338.272.493.41.097-.302.174-.617.22-.94zm-15.679.217L0 14.158c.966 3.661 3.638 6.65 7.132 8.111a9.399 9.399 0 01-.05-1.031c0-.375.017-.747.05-1.111-3.024-1.563-5.166-4.544-5.505-8.041zm20.707.055c-.352 3.45-2.464 6.394-5.441 7.957.033.374.05.755.053 1.136 0 .377-.017.71-.05 1.005 3.506-1.488 6.175-4.522 7.104-8.223zm-6.544 2.617a5.31 5.31 0 01-.486.42c.11.158.218.322.318.493.265-.2.513-.42.74-.66a10.61 10.61 0 01-.572-.253zm1.502.559a6.9 6.9 0 01-1.25 1.156c.106.236.207.485.294.741a7.667 7.667 0 001.857-1.772 3.554 3.554 0 01-.9-.125zm-2.988.63l-2.303.913-2.307-.91-.587 1.435 2.448.946c-.134.46-.568.798-1.08.798-.034 0-.07-.004-.104-.007l-.5.686c.188.063.39.096.6.096.621 0 1.17-.289 1.52-.738a1.924 1.924 0 002.183.62l-.49-.67a1.122 1.122 0 01-1.26-.805l2.47-.926zm1.156 4.775c-1.09.377-2.256.58-3.476.58-1.17 0-2.29-.186-3.34-.534.231.88.59 1.654 1.05 2.262.743.134 1.509.207 2.294.207.835 0 1.65-.082 2.437-.236.453-.61.807-1.39 1.035-2.28z" }) + ] + } + ); +}); + +exports.default = SiTimescale; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.d.ts new file mode 100644 index 000000000..429bd63d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FDB515"; +declare const SiTimescale: IconType; +export { SiTimescale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.mjs new file mode 100644 index 000000000..92c204686 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTimescale.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FDB515"; +const SiTimescale = React.forwardRef(function SiTimescale2({ title = "Timescale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.537.763c-1.167.7-2.21 1.582-3.08 2.61L3.79 4.836a10.422 10.422 0 013.627-2.881zm13.028.085l-1.991 1.12a10.381 10.381 0 013.762 3.07l1.18-1.654a12.371 12.371 0 00-2.95-2.536zm-6.564.752a9.788 9.788 0 00-4.131.91l.59 1.011a8.542 8.542 0 013.541-.762c1.261 0 2.457.274 3.534.76l.59-1.012a9.81 9.81 0 00-4.124-.907zM11.4 3.535l-.55 6.626h.003l-.002.04c.003.111.013.216.033.318.01.112.043.227.097.342.114.289.298.505.516.607.05.04.105.075.158.111a.98.98 0 01.033.02v.004l6.68 3.596.348-.476-6.058-4.6c-.007 0-.01-.005-.014-.008L12 3.535zm1.423.052c.19.234.361.523.502.855 3.155.604 5.54 3.325 5.54 6.596 0 .877-.176 1.712-.484 2.48a3.7 3.7 0 01.52.76 7.314 7.314 0 00.754-3.24c0-3.868-2.99-7.05-6.832-7.45zm-2.284.095c-3.527.667-6.19 3.708-6.19 7.356 0 2.584 1.335 4.863 3.367 6.21a9.84 9.84 0 01.295-.743c-1.74-1.219-2.874-3.214-2.874-5.467 0-3.054 2.082-5.632 4.932-6.45.128-.351.289-.656.47-.906zm9.15 1.675l-.801.893a8.101 8.101 0 011.551 4.777c0 2.916-1.542 5.481-3.872 6.952.104.388.188.792.251 1.209 2.87-1.632 4.802-4.677 4.802-8.16a9.224 9.224 0 00-1.93-5.67zm-15.38.007a9.25 9.25 0 00-1.93 5.665c0 3.507 1.954 6.567 4.858 8.19.063-.418.144-.822.248-1.206-2.36-1.468-3.923-4.045-3.923-6.984 0-1.777.573-3.422 1.549-4.772zm9.314.043c.044.203.08.416.107.64a5.332 5.332 0 013.213 2.912l.577-.148a5.942 5.942 0 00-3.897-3.404zm-3.816.187a5.939 5.939 0 00-3.319 3.198l.58.148A5.324 5.324 0 019.73 6.257c.017-.227.04-.45.077-.663zM6.733 9.672l-.62.63.315.614 1.727.618.942-.618-.312-.923zm10.615 0l-2.048.321-.315.923.942.618 1.73-.618.315-.614zM6.1 11.869A5.824 5.824 0 008.42 15.7c.1-.17.204-.335.315-.493a5.252 5.252 0 01-2.038-3.34zm11.206 0c-.03.18-.071.355-.118.529.174.138.338.272.493.41.097-.302.174-.617.22-.94zm-15.679.217L0 14.158c.966 3.661 3.638 6.65 7.132 8.111a9.399 9.399 0 01-.05-1.031c0-.375.017-.747.05-1.111-3.024-1.563-5.166-4.544-5.505-8.041zm20.707.055c-.352 3.45-2.464 6.394-5.441 7.957.033.374.05.755.053 1.136 0 .377-.017.71-.05 1.005 3.506-1.488 6.175-4.522 7.104-8.223zm-6.544 2.617a5.31 5.31 0 01-.486.42c.11.158.218.322.318.493.265-.2.513-.42.74-.66a10.61 10.61 0 01-.572-.253zm1.502.559a6.9 6.9 0 01-1.25 1.156c.106.236.207.485.294.741a7.667 7.667 0 001.857-1.772 3.554 3.554 0 01-.9-.125zm-2.988.63l-2.303.913-2.307-.91-.587 1.435 2.448.946c-.134.46-.568.798-1.08.798-.034 0-.07-.004-.104-.007l-.5.686c.188.063.39.096.6.096.621 0 1.17-.289 1.52-.738a1.924 1.924 0 002.183.62l-.49-.67a1.122 1.122 0 01-1.26-.805l2.47-.926zm1.156 4.775c-1.09.377-2.256.58-3.476.58-1.17 0-2.29-.186-3.34-.534.231.88.59 1.654 1.05 2.262.743.134 1.509.207 2.294.207.835 0 1.65-.082 2.437-.236.453-.61.807-1.39 1.035-2.28z" }) + ] + } + ); +}); + +export { SiTimescale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTina.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTina.cjs new file mode 100644 index 000000000..e584332b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTina.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC4815"; +const SiTina = React__namespace.forwardRef(function SiTina2({ title = "Tina", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 14.46 10.662 C 15.626 9.697 16.143 3.996 16.648 1.947 C 17.153 -0.103 19.241 0.001 19.241 0.001 C 19.241 0.001 18.699 0.945 18.92 1.649 C 19.141 2.353 20.656 2.982 20.656 2.982 L 20.329 3.843 C 20.329 3.843 19.647 3.756 19.241 4.568 C 18.835 5.38 19.502 13.421 19.502 13.421 C 19.502 13.421 17.062 18.234 17.062 20.266 C 17.062 22.298 18.024 24 18.024 24 L 16.674 24 C 16.674 24 14.694 21.644 14.288 20.467 C 13.882 19.289 14.045 18.112 14.045 18.112 C 14.045 18.112 11.893 17.99 9.984 18.112 C 8.076 18.234 6.803 19.874 6.574 20.792 C 6.344 21.709 6.249 24 6.249 24 L 5.182 24 C 4.532 21.996 4.016 21.278 4.296 20.266 C 5.072 17.462 4.919 15.872 4.74 15.164 C 4.56 14.456 3.345 13.838 3.345 13.838 C 3.94 12.625 4.548 12.042 7.162 11.981 C 9.775 11.921 13.294 11.627 14.46 10.662 Z M 9.277 18.871 C 9.277 18.871 9.413 22.579 10.669 24 L 9.413 24 C 7.949 22.7 7.673 20.148 7.673 20.148 C 7.754 19.824 8.638 19.079 9.277 18.871 Z" }) + ] + } + ); +}); + +exports.default = SiTina; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTina.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTina.d.ts new file mode 100644 index 000000000..a18f6d52f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTina.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC4815"; +declare const SiTina: IconType; +export { SiTina as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTina.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTina.mjs new file mode 100644 index 000000000..7c181dd6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTina.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC4815"; +const SiTina = React.forwardRef(function SiTina2({ title = "Tina", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 14.46 10.662 C 15.626 9.697 16.143 3.996 16.648 1.947 C 17.153 -0.103 19.241 0.001 19.241 0.001 C 19.241 0.001 18.699 0.945 18.92 1.649 C 19.141 2.353 20.656 2.982 20.656 2.982 L 20.329 3.843 C 20.329 3.843 19.647 3.756 19.241 4.568 C 18.835 5.38 19.502 13.421 19.502 13.421 C 19.502 13.421 17.062 18.234 17.062 20.266 C 17.062 22.298 18.024 24 18.024 24 L 16.674 24 C 16.674 24 14.694 21.644 14.288 20.467 C 13.882 19.289 14.045 18.112 14.045 18.112 C 14.045 18.112 11.893 17.99 9.984 18.112 C 8.076 18.234 6.803 19.874 6.574 20.792 C 6.344 21.709 6.249 24 6.249 24 L 5.182 24 C 4.532 21.996 4.016 21.278 4.296 20.266 C 5.072 17.462 4.919 15.872 4.74 15.164 C 4.56 14.456 3.345 13.838 3.345 13.838 C 3.94 12.625 4.548 12.042 7.162 11.981 C 9.775 11.921 13.294 11.627 14.46 10.662 Z M 9.277 18.871 C 9.277 18.871 9.413 22.579 10.669 24 L 9.413 24 C 7.949 22.7 7.673 20.148 7.673 20.148 C 7.754 19.824 8.638 19.079 9.277 18.871 Z" }) + ] + } + ); +}); + +export { SiTina as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.cjs new file mode 100644 index 000000000..5b2aced76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6B6B"; +const SiTinder = React__namespace.forwardRef(function SiTinder2({ title = "Tinder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.317 9.451c.045.073.123.12.212.12.06 0 .116-.021.158-.057l.015-.012c.39-.325.741-.66 1.071-1.017 3.209-3.483 1.335-7.759 1.32-7.799-.09-.21-.03-.459.15-.594.195-.135.435-.12.615.033 10.875 10.114 7.995 17.818 7.785 18.337-.87 3.141-4.335 5.414-8.444 5.53-.138.008-.242.008-.363.008-4.852 0-8.977-2.989-8.977-6.807v-.06c0-5.297 4.795-10.522 5.009-10.744.136-.149.345-.195.525-.105.18.076.297.255.291.451-.043 1.036.167 1.935.631 2.7v.015l.002.001z" }) + ] + } + ); +}); + +exports.default = SiTinder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.d.ts new file mode 100644 index 000000000..9a7938023 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6B6B"; +declare const SiTinder: IconType; +export { SiTinder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.mjs new file mode 100644 index 000000000..53b1f7889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6B6B"; +const SiTinder = React.forwardRef(function SiTinder2({ title = "Tinder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.317 9.451c.045.073.123.12.212.12.06 0 .116-.021.158-.057l.015-.012c.39-.325.741-.66 1.071-1.017 3.209-3.483 1.335-7.759 1.32-7.799-.09-.21-.03-.459.15-.594.195-.135.435-.12.615.033 10.875 10.114 7.995 17.818 7.785 18.337-.87 3.141-4.335 5.414-8.444 5.53-.138.008-.242.008-.363.008-4.852 0-8.977-2.989-8.977-6.807v-.06c0-5.297 4.795-10.522 5.009-10.744.136-.149.345-.195.525-.105.18.076.297.255.291.451-.043 1.036.167 1.935.631 2.7v.015l.002.001z" }) + ] + } + ); +}); + +export { SiTinder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.cjs new file mode 100644 index 000000000..8abc66b03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#17AEB9"; +const SiTindie = React__namespace.forwardRef(function SiTindie2({ title = "Tindie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.576 1.742c-.051 0-.102.003-.152.008-1.724.137-3.14 1.095-4.098 2.773a8.284 8.284 0 0 0-.53 1.126c-.659-.396-1.624-.825-2.706-.825-.203 0-.405.016-.602.046-.729.112-2.949.453-4.497 1.938-.77.74-1.333 1.733-1.687 2.49-.861-.7-2.262-1.565-3.924-1.565-.737 0-1.459.172-2.147.513-.78.355-1.239 1.496-1.233 2.4.005.701.288 1.223.777 1.433.112.048.225.054.321.054.736 0 3.983-.568 5.928-.938l1.662 4.448.081.08c.005.005.082.081.214.212l.767.762c.29.289.625.622.974.97-.153.118-.319.25-.486.392-.914.773-1.321 1.388-1.321 1.886 0 1.016 1.629 2.313 2.955 2.313.302 0 .585-.11.841-.229l.535-.416c.415-.383.758-.935 1.027-1.484 1.002-.094 1.966-.459 2.773-.871l1.013-.584c.684-.44 1.121-.819 1.165-.857l.167-.147.269-6.285L18.1 7.202c.821-.301 1.848-.687 2.799-1.058 2.667-1.042 2.771-1.185 2.881-1.336.291-.402.293-.932.007-1.495-.394-.772-1.329-1.571-2.211-1.571Zm0 1.041c.39 0 1.025.496 1.284 1.003.084.165.107.294.095.366-.539.301-3.252 1.358-5.268 2.094.428-1.228 1.488-3.278 3.827-3.459l.022-.002c.013-.002.026-.002.04-.002ZM14.09 5.865c.967 0 1.851.461 2.385.812.197.13.348.245.436.317l.017.045.01.029.182.488 1.493 3.995-.097 2.281c-.858-.114-1.604-.115-2.285-.015-.364.054-.709.137-1.043.247a7.175 7.175 0 0 0-.206.073l-.629-1.534-.426-1.04-2.139-5.221c.794-.28 1.513-.391 1.858-.443a2.83 2.83 0 0 1 .444-.034Zm-2.727.641 2.072 5.056.426 1.041.7 1.706c-1.103.498-2.128 1.306-3.361 2.364-.34-.339-.658-.655-.925-.921-.323-.321-.571-.567-.692-.687l-.047-.126-1.475-3.948-.159-.427c.044-.121.114-.302.208-.52.297-.69.839-1.754 1.602-2.485.491-.472 1.077-.81 1.651-1.053Zm1.013.158c-.128 0-.233.104-.233.233 0 .128.105.232.233.232s.232-.104.232-.232c0-.129-.104-.233-.232-.233Zm.39.845c-.128 0-.233.105-.233.233a.233.233 0 0 0 .466 0c0-.128-.105-.233-.233-.233Zm.325.781a.233.233 0 0 0-.233.232c0 .129.105.233.233.233s.233-.104.233-.233a.233.233 0 0 0-.233-.232Zm-9.711.483c1.41 0 2.64.809 3.365 1.416-1.978.376-4.892.877-5.597.902-.057-.067-.106-.226-.108-.452-.004-.646.339-1.32.626-1.447l.021-.01c.545-.271 1.115-.409 1.693-.409Zm12.7.38c-.315 0-.622.091-.887.264-.364.238-.613.602-.703 1.028-.089.425-.007.859.23 1.222.301.462.811.737 1.363.737.315 0 .622-.091.887-.264.751-.49.963-1.499.473-2.25-.301-.462-.811-.737-1.363-.737Zm0 .91c.243 0 .468.122.6.325.216.33.123.774-.208.99a.709.709 0 0 1-.389.116.715.715 0 0 1-.702-.862c.04-.187.15-.348.31-.452a.702.702 0 0 1 .389-.117Zm-5.23.951c-.316 0-.623.091-.888.265-.364.237-.613.602-.703 1.027-.089.425-.007.859.23 1.222.301.462.811.738 1.363.738.315 0 .622-.092.887-.265.364-.237.613-.602.703-1.027.089-.425.008-.859-.23-1.223a1.6227 1.6227 0 0 0-1.362-.737Zm0 .91c.243 0 .467.122.6.325.104.16.14.351.101.538a.7148.7148 0 0 1-.699.568.7133.7133 0 0 1-.6-.324.7097.7097 0 0 1-.102-.538c.04-.187.15-.348.31-.452a.7109.7109 0 0 1 .39-.117Zm6.315 2.275c.082-.001.166-.001.251.001.339.007.697.036 1.08.089l-.123 2.881c-.092.073-.22.171-.377.285-.262.189-.608.42-1.009.65-.641.367-1.426.728-2.246.901-.318.067-.64.107-.962.107-.047 0-.095-.001-.142-.003l-.034-.034c-.224-.226-.478-.481-.748-.752-.408-.408-.85-.849-1.276-1.274-.018-.019-.037-.037-.055-.055 1.452-1.245 2.574-2.11 3.874-2.522a5.655 5.655 0 0 1 1.053-.227c.229-.028.466-.044.714-.047Zm-.237.203c-.129 0-.233.105-.233.233s.104.233.233.233c.128 0 .233-.105.233-.233s-.105-.233-.233-.233Zm.845 0a.233.233 0 0 0 0 .466c.129 0 .233-.105.233-.233s-.104-.233-.233-.233Zm-.609 1.287c-.44.069-1.343.456-2.137.826-.793.369-1.476.722-1.476.722 1.795 1.468 3.8-.765 3.613-1.548Zm-5.699 2.717c.582.581 1.149 1.149 1.572 1.577l.055.056-.028.144c-.24.399-.506.716-.777.848-.12.058-.26.087-.415.087-.897 0-1.881-.897-1.914-1.216.054-.25.714-.894 1.507-1.496Z" }) + ] + } + ); +}); + +exports.default = SiTindie; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.d.ts new file mode 100644 index 000000000..0dcddf9b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#17AEB9"; +declare const SiTindie: IconType; +export { SiTindie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.mjs new file mode 100644 index 000000000..2e3c3dc0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTindie.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#17AEB9"; +const SiTindie = React.forwardRef(function SiTindie2({ title = "Tindie", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.576 1.742c-.051 0-.102.003-.152.008-1.724.137-3.14 1.095-4.098 2.773a8.284 8.284 0 0 0-.53 1.126c-.659-.396-1.624-.825-2.706-.825-.203 0-.405.016-.602.046-.729.112-2.949.453-4.497 1.938-.77.74-1.333 1.733-1.687 2.49-.861-.7-2.262-1.565-3.924-1.565-.737 0-1.459.172-2.147.513-.78.355-1.239 1.496-1.233 2.4.005.701.288 1.223.777 1.433.112.048.225.054.321.054.736 0 3.983-.568 5.928-.938l1.662 4.448.081.08c.005.005.082.081.214.212l.767.762c.29.289.625.622.974.97-.153.118-.319.25-.486.392-.914.773-1.321 1.388-1.321 1.886 0 1.016 1.629 2.313 2.955 2.313.302 0 .585-.11.841-.229l.535-.416c.415-.383.758-.935 1.027-1.484 1.002-.094 1.966-.459 2.773-.871l1.013-.584c.684-.44 1.121-.819 1.165-.857l.167-.147.269-6.285L18.1 7.202c.821-.301 1.848-.687 2.799-1.058 2.667-1.042 2.771-1.185 2.881-1.336.291-.402.293-.932.007-1.495-.394-.772-1.329-1.571-2.211-1.571Zm0 1.041c.39 0 1.025.496 1.284 1.003.084.165.107.294.095.366-.539.301-3.252 1.358-5.268 2.094.428-1.228 1.488-3.278 3.827-3.459l.022-.002c.013-.002.026-.002.04-.002ZM14.09 5.865c.967 0 1.851.461 2.385.812.197.13.348.245.436.317l.017.045.01.029.182.488 1.493 3.995-.097 2.281c-.858-.114-1.604-.115-2.285-.015-.364.054-.709.137-1.043.247a7.175 7.175 0 0 0-.206.073l-.629-1.534-.426-1.04-2.139-5.221c.794-.28 1.513-.391 1.858-.443a2.83 2.83 0 0 1 .444-.034Zm-2.727.641 2.072 5.056.426 1.041.7 1.706c-1.103.498-2.128 1.306-3.361 2.364-.34-.339-.658-.655-.925-.921-.323-.321-.571-.567-.692-.687l-.047-.126-1.475-3.948-.159-.427c.044-.121.114-.302.208-.52.297-.69.839-1.754 1.602-2.485.491-.472 1.077-.81 1.651-1.053Zm1.013.158c-.128 0-.233.104-.233.233 0 .128.105.232.233.232s.232-.104.232-.232c0-.129-.104-.233-.232-.233Zm.39.845c-.128 0-.233.105-.233.233a.233.233 0 0 0 .466 0c0-.128-.105-.233-.233-.233Zm.325.781a.233.233 0 0 0-.233.232c0 .129.105.233.233.233s.233-.104.233-.233a.233.233 0 0 0-.233-.232Zm-9.711.483c1.41 0 2.64.809 3.365 1.416-1.978.376-4.892.877-5.597.902-.057-.067-.106-.226-.108-.452-.004-.646.339-1.32.626-1.447l.021-.01c.545-.271 1.115-.409 1.693-.409Zm12.7.38c-.315 0-.622.091-.887.264-.364.238-.613.602-.703 1.028-.089.425-.007.859.23 1.222.301.462.811.737 1.363.737.315 0 .622-.091.887-.264.751-.49.963-1.499.473-2.25-.301-.462-.811-.737-1.363-.737Zm0 .91c.243 0 .468.122.6.325.216.33.123.774-.208.99a.709.709 0 0 1-.389.116.715.715 0 0 1-.702-.862c.04-.187.15-.348.31-.452a.702.702 0 0 1 .389-.117Zm-5.23.951c-.316 0-.623.091-.888.265-.364.237-.613.602-.703 1.027-.089.425-.007.859.23 1.222.301.462.811.738 1.363.738.315 0 .622-.092.887-.265.364-.237.613-.602.703-1.027.089-.425.008-.859-.23-1.223a1.6227 1.6227 0 0 0-1.362-.737Zm0 .91c.243 0 .467.122.6.325.104.16.14.351.101.538a.7148.7148 0 0 1-.699.568.7133.7133 0 0 1-.6-.324.7097.7097 0 0 1-.102-.538c.04-.187.15-.348.31-.452a.7109.7109 0 0 1 .39-.117Zm6.315 2.275c.082-.001.166-.001.251.001.339.007.697.036 1.08.089l-.123 2.881c-.092.073-.22.171-.377.285-.262.189-.608.42-1.009.65-.641.367-1.426.728-2.246.901-.318.067-.64.107-.962.107-.047 0-.095-.001-.142-.003l-.034-.034c-.224-.226-.478-.481-.748-.752-.408-.408-.85-.849-1.276-1.274-.018-.019-.037-.037-.055-.055 1.452-1.245 2.574-2.11 3.874-2.522a5.655 5.655 0 0 1 1.053-.227c.229-.028.466-.044.714-.047Zm-.237.203c-.129 0-.233.105-.233.233s.104.233.233.233c.128 0 .233-.105.233-.233s-.105-.233-.233-.233Zm.845 0a.233.233 0 0 0 0 .466c.129 0 .233-.105.233-.233s-.104-.233-.233-.233Zm-.609 1.287c-.44.069-1.343.456-2.137.826-.793.369-1.476.722-1.476.722 1.795 1.468 3.8-.765 3.613-1.548Zm-5.699 2.717c.582.581 1.149 1.149 1.572 1.577l.055.056-.028.144c-.24.399-.506.716-.777.848-.12.058-.26.087-.415.087-.897 0-1.881-.897-1.914-1.216.054-.25.714-.894 1.507-1.496Z" }) + ] + } + ); +}); + +export { SiTindie as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.cjs new file mode 100644 index 000000000..9d6fd9e14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1477D1"; +const SiTinkercad = React__namespace.forwardRef(function SiTinkercad2({ title = "Tinkercad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v7.32h7.32V0H0zm8.34 0v7.32h7.32V0H8.34zm8.34 0v7.32H24V0h-7.32zM1.605 1.266h4.106V2.33h-1.4v3.725H3.055V2.33h-1.45V1.265zm9.77 0h1.256V6.05h-1.256V1.266zm6.814 0h1.692l1.455 3.289v-3.29h1.158v4.79H20.82l-1.47-3.26V6.05h-1.16V1.266zM0 8.34v7.32h7.32V8.34H0zm8.34 0v7.32h7.32V8.34H8.34zm8.34 0v7.32H24V8.34h-7.32zm-6.32 1.265h3.19v.965h-1.935v.92H13.5v.92h-1.885v1.065h2.03v.916h-3.286V9.605zm8.16 0h1.906c1.075 0 1.719.495 1.719 1.315 0 .535-.284.935-.8 1.135.22.14.35.37.485.705l.645 1.625h-1.35l-.006.006-.433-1.221c-.2-.535-.287-.664-.702-.664h-.254v1.885h-1.21V9.605zM1.596 9.61h1.26v1.756L4.3 9.61h1.51l-2.022 2.25 2.182 2.536H4.39l-1.541-1.94v1.94H1.596V9.609zm18.134.916v1.065h.334c.375 0 .827-.095.827-.57 0-.36-.226-.495-.801-.495h-.36zM0 16.68V24h7.32v-7.32H0zm8.34 0V24h7.32v-7.32H8.34zm8.34 0V24H24v-7.32h-7.32zm-12.42 1.2c.375 0 .815.066 1.17.17l.09.024-.055 1.022-.16-.067a2.415 2.415 0 0 0-.89-.174c-.876 0-1.466.555-1.466 1.485s.54 1.484 1.446 1.484c.35 0 .66-.06.925-.18l-.006-.003.16-.07.055.993-.08.032c-.33.13-.753.199-1.193.199-.765 0-1.411-.22-1.871-.635-.475-.43-.73-1.06-.73-1.82 0-1.425 1.095-2.46 2.605-2.46zm6.996.07h1.484l1.824 4.784H13.26l-.4-1.16H11.1l-.41 1.16H9.435l1.82-4.785zm6.965 0h1.718c1.625 0 2.522.825 2.522 2.325v.004c0 1.535-.992 2.455-2.647 2.455h-1.593V17.95zm1.26.915v2.95h.195c.975 0 1.488-.55 1.488-1.54 0-.895-.49-1.41-1.375-1.41h-.309zm-7.5.19-.596 1.6h1.17l-.575-1.6z" }) + ] + } + ); +}); + +exports.default = SiTinkercad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.d.ts new file mode 100644 index 000000000..1070547de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1477D1"; +declare const SiTinkercad: IconType; +export { SiTinkercad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.mjs new file mode 100644 index 000000000..33bde9b73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinkercad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1477D1"; +const SiTinkercad = React.forwardRef(function SiTinkercad2({ title = "Tinkercad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v7.32h7.32V0H0zm8.34 0v7.32h7.32V0H8.34zm8.34 0v7.32H24V0h-7.32zM1.605 1.266h4.106V2.33h-1.4v3.725H3.055V2.33h-1.45V1.265zm9.77 0h1.256V6.05h-1.256V1.266zm6.814 0h1.692l1.455 3.289v-3.29h1.158v4.79H20.82l-1.47-3.26V6.05h-1.16V1.266zM0 8.34v7.32h7.32V8.34H0zm8.34 0v7.32h7.32V8.34H8.34zm8.34 0v7.32H24V8.34h-7.32zm-6.32 1.265h3.19v.965h-1.935v.92H13.5v.92h-1.885v1.065h2.03v.916h-3.286V9.605zm8.16 0h1.906c1.075 0 1.719.495 1.719 1.315 0 .535-.284.935-.8 1.135.22.14.35.37.485.705l.645 1.625h-1.35l-.006.006-.433-1.221c-.2-.535-.287-.664-.702-.664h-.254v1.885h-1.21V9.605zM1.596 9.61h1.26v1.756L4.3 9.61h1.51l-2.022 2.25 2.182 2.536H4.39l-1.541-1.94v1.94H1.596V9.609zm18.134.916v1.065h.334c.375 0 .827-.095.827-.57 0-.36-.226-.495-.801-.495h-.36zM0 16.68V24h7.32v-7.32H0zm8.34 0V24h7.32v-7.32H8.34zm8.34 0V24H24v-7.32h-7.32zm-12.42 1.2c.375 0 .815.066 1.17.17l.09.024-.055 1.022-.16-.067a2.415 2.415 0 0 0-.89-.174c-.876 0-1.466.555-1.466 1.485s.54 1.484 1.446 1.484c.35 0 .66-.06.925-.18l-.006-.003.16-.07.055.993-.08.032c-.33.13-.753.199-1.193.199-.765 0-1.411-.22-1.871-.635-.475-.43-.73-1.06-.73-1.82 0-1.425 1.095-2.46 2.605-2.46zm6.996.07h1.484l1.824 4.784H13.26l-.4-1.16H11.1l-.41 1.16H9.435l1.82-4.785zm6.965 0h1.718c1.625 0 2.522.825 2.522 2.325v.004c0 1.535-.992 2.455-2.647 2.455h-1.593V17.95zm1.26.915v2.95h.195c.975 0 1.488-.55 1.488-1.54 0-.895-.49-1.41-1.375-1.41h-.309zm-7.5.19-.596 1.6h1.17l-.575-1.6z" }) + ] + } + ); +}); + +export { SiTinkercad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.cjs new file mode 100644 index 000000000..62ee3f77d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiTinygrad = React__namespace.forwardRef(function SiTinygrad2({ title = "tinygrad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.846 7.385V9.23H0v1.846h1.846v3.692h3.692v-1.846H3.692v-1.846h1.846V9.23H3.692V7.385zm5.539 0V9.23H9.23V7.385zm3.692 1.846v5.538h1.846v-3.692h1.846V9.23h-1.846zm3.692 1.846v3.692h1.846v-3.692zm3.693-1.846v3.692h3.692v1.846H24V9.231h-1.846v1.846h-1.846V9.23Zm3.692 5.538h-3.692v1.846h3.692zm-14.77-3.692v3.692h1.847v-3.692z" }) + ] + } + ); +}); + +exports.default = SiTinygrad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.d.ts new file mode 100644 index 000000000..43e966d3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiTinygrad: IconType; +export { SiTinygrad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.mjs new file mode 100644 index 000000000..51e4146e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinygrad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiTinygrad = React.forwardRef(function SiTinygrad2({ title = "tinygrad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.846 7.385V9.23H0v1.846h1.846v3.692h3.692v-1.846H3.692v-1.846h1.846V9.23H3.692V7.385zm5.539 0V9.23H9.23V7.385zm3.692 1.846v5.538h1.846v-3.692h1.846V9.23h-1.846zm3.692 1.846v3.692h1.846v-3.692zm3.693-1.846v3.692h3.692v1.846H24V9.231h-1.846v1.846h-1.846V9.23Zm3.692 5.538h-3.692v1.846h3.692zm-14.77-3.692v3.692h1.847v-3.692z" }) + ] + } + ); +}); + +export { SiTinygrad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.cjs new file mode 100644 index 000000000..2394efb48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1C24"; +const SiTinyletter = React__namespace.forwardRef(function SiTinyletter2({ title = "TinyLetter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.069 18.202h-4.913v3.207l-4.22-3.207H4.93a.643.643 0 01-.643-.642v-1.69l3.987-3.028L12 15.672l3.725-2.83 3.987 3.03v1.688a.643.643 0 01-.643.642zM7.213 12.035l-2.925 2.222V9.813zm12.499-2.222v4.444l-2.925-2.222zM4.932 5.61h2.735L12 9.128l4.338-3.518h2.73c.355 0 .644.288.644.642v1.946L12 14.058l-7.712-5.86V6.252c0-.354.289-.642.643-.642zm3.407-3.772c.356-.356.83-.553 1.335-.553.504 0 .978.197 1.334.553L12 2.83l.992-.992c.356-.356.83-.553 1.334-.553.505 0 .979.197 1.335.553.357.357.553.83.553 1.335 0 .494-.188.959-.53 1.313L12 7.473 8.317 4.486a1.89 1.89 0 01.022-2.648zm10.73 2.486h-1.787A3.167 3.167 0 0016.57.93C15.97.33 15.174 0 14.326 0c-.847 0-1.644.33-2.243.93L12 1.011 11.917.93C11.317.33 10.521 0 9.674 0 8.826 0 8.029.33 7.43.93a3.176 3.176 0 00-.711 3.394H4.93a1.93 1.93 0 00-1.928 1.928V17.56a1.93 1.93 0 001.928 1.928h4.572L15.44 24v-4.512h3.628a1.93 1.93 0 001.928-1.928V6.252a1.93 1.93 0 00-1.928-1.928" }) + ] + } + ); +}); + +exports.default = SiTinyletter; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.d.ts new file mode 100644 index 000000000..dd404253c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1C24"; +declare const SiTinyletter: IconType; +export { SiTinyletter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.mjs new file mode 100644 index 000000000..463dbc04b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTinyletter.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1C24"; +const SiTinyletter = React.forwardRef(function SiTinyletter2({ title = "TinyLetter", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.069 18.202h-4.913v3.207l-4.22-3.207H4.93a.643.643 0 01-.643-.642v-1.69l3.987-3.028L12 15.672l3.725-2.83 3.987 3.03v1.688a.643.643 0 01-.643.642zM7.213 12.035l-2.925 2.222V9.813zm12.499-2.222v4.444l-2.925-2.222zM4.932 5.61h2.735L12 9.128l4.338-3.518h2.73c.355 0 .644.288.644.642v1.946L12 14.058l-7.712-5.86V6.252c0-.354.289-.642.643-.642zm3.407-3.772c.356-.356.83-.553 1.335-.553.504 0 .978.197 1.334.553L12 2.83l.992-.992c.356-.356.83-.553 1.334-.553.505 0 .979.197 1.335.553.357.357.553.83.553 1.335 0 .494-.188.959-.53 1.313L12 7.473 8.317 4.486a1.89 1.89 0 01.022-2.648zm10.73 2.486h-1.787A3.167 3.167 0 0016.57.93C15.97.33 15.174 0 14.326 0c-.847 0-1.644.33-2.243.93L12 1.011 11.917.93C11.317.33 10.521 0 9.674 0 8.826 0 8.029.33 7.43.93a3.176 3.176 0 00-.711 3.394H4.93a1.93 1.93 0 00-1.928 1.928V17.56a1.93 1.93 0 001.928 1.928h4.572L15.44 24v-4.512h3.628a1.93 1.93 0 001.928-1.928V6.252a1.93 1.93 0 00-1.928-1.928" }) + ] + } + ); +}); + +export { SiTinyletter as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.cjs new file mode 100644 index 000000000..c5b8c0423 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTistory = React__namespace.forwardRef(function SiTistory2({ title = "Tistory", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 3a3 3 0 1 0 6 0 3 3 0 0 0-6 0m9 18a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0-9a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0-9a3 3 0 1 0 6 0 3 3 0 0 0-6 0m9 0a3 3 0 1 0 6 0 3 3 0 0 0-6 0" }) + ] + } + ); +}); + +exports.default = SiTistory; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.d.ts new file mode 100644 index 000000000..e14e9abb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTistory: IconType; +export { SiTistory as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.mjs new file mode 100644 index 000000000..f101bcbb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTistory.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTistory = React.forwardRef(function SiTistory2({ title = "Tistory", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 3a3 3 0 1 0 6 0 3 3 0 0 0-6 0m9 18a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0-9a3 3 0 1 0 6 0 3 3 0 0 0-6 0m0-9a3 3 0 1 0 6 0 3 3 0 0 0-6 0m9 0a3 3 0 1 0 6 0 3 3 0 0 0-6 0" }) + ] + } + ); +}); + +export { SiTistory as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.cjs new file mode 100644 index 000000000..42ce71684 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAFAFA"; +const SiTldraw = React__namespace.forwardRef(function SiTldraw2({ title = "tldraw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.474 0H2.526C1.131 0 0 1.18 0 2.637v18.726C0 22.819 1.131 24 2.526 24h18.948C22.869 24 24 22.82 24 21.363V2.637C24 1.181 22.869 0 21.474 0zm-11.01 5.388c.397-.405.888-.607 1.474-.607.57 0 1.052.202 1.448.607.397.404.595.896.595 1.476s-.198 1.072-.595 1.476c-.396.405-.879.607-1.448.607-.586 0-1.077-.202-1.474-.607-.396-.404-.594-.896-.594-1.476s.198-1.072.594-1.476zm3.13 11.49a4.887 4.887 0 0 1-2.018 2.136c-.483.281-.879.273-1.19-.026-.292-.281-.206-.615.26-1.002.258-.193.473-.44.646-.738.172-.299.284-.607.336-.923.017-.14-.043-.21-.181-.21-.345-.018-.698-.212-1.06-.581-.362-.37-.543-.826-.543-1.37 0-.58.198-1.073.594-1.477a2.024 2.024 0 0 1 1.5-.633c.552 0 1.034.21 1.448.633.414.404.655.86.724 1.37.138.95-.034 1.89-.517 2.822z" }) + ] + } + ); +}); + +exports.default = SiTldraw; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.d.ts new file mode 100644 index 000000000..020934a52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAFAFA"; +declare const SiTldraw: IconType; +export { SiTldraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.mjs new file mode 100644 index 000000000..80b0ec3e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTldraw.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAFAFA"; +const SiTldraw = React.forwardRef(function SiTldraw2({ title = "tldraw", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.474 0H2.526C1.131 0 0 1.18 0 2.637v18.726C0 22.819 1.131 24 2.526 24h18.948C22.869 24 24 22.82 24 21.363V2.637C24 1.181 22.869 0 21.474 0zm-11.01 5.388c.397-.405.888-.607 1.474-.607.57 0 1.052.202 1.448.607.397.404.595.896.595 1.476s-.198 1.072-.595 1.476c-.396.405-.879.607-1.448.607-.586 0-1.077-.202-1.474-.607-.396-.404-.594-.896-.594-1.476s.198-1.072.594-1.476zm3.13 11.49a4.887 4.887 0 0 1-2.018 2.136c-.483.281-.879.273-1.19-.026-.292-.281-.206-.615.26-1.002.258-.193.473-.44.646-.738.172-.299.284-.607.336-.923.017-.14-.043-.21-.181-.21-.345-.018-.698-.212-1.06-.581-.362-.37-.543-.826-.543-1.37 0-.58.198-1.073.594-1.477a2.024 2.024 0 0 1 1.5-.633c.552 0 1.034.21 1.448.633.414.404.655.86.724 1.37.138.95-.034 1.89-.517 2.822z" }) + ] + } + ); +}); + +export { SiTldraw as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.cjs new file mode 100644 index 000000000..21ed42afe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BB91F"; +const SiTmux = React__namespace.forwardRef(function SiTmux2({ title = "tmux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 2.251V10.5H12.45V0h9.3A2.251 2.251 0 0 1 24 2.251zM12.45 11.4H24v10.5h-.008A2.25 2.25 0 0 1 21.75 24H2.25a2.247 2.247 0 0 1-2.242-2.1H0V2.251A2.251 2.251 0 0 1 2.25 0h9.3v21.6h.9V11.4zm11.242 10.5H.308a1.948 1.948 0 0 0 1.942 1.8h19.5a1.95 1.95 0 0 0 1.942-1.8z" }) + ] + } + ); +}); + +exports.default = SiTmux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.d.ts new file mode 100644 index 000000000..4031ff4f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BB91F"; +declare const SiTmux: IconType; +export { SiTmux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.mjs new file mode 100644 index 000000000..336008e87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTmux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BB91F"; +const SiTmux = React.forwardRef(function SiTmux2({ title = "tmux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 2.251V10.5H12.45V0h9.3A2.251 2.251 0 0 1 24 2.251zM12.45 11.4H24v10.5h-.008A2.25 2.25 0 0 1 21.75 24H2.25a2.247 2.247 0 0 1-2.242-2.1H0V2.251A2.251 2.251 0 0 1 2.25 0h9.3v21.6h.9V11.4zm11.242 10.5H.308a1.948 1.948 0 0 0 1.942 1.8h19.5a1.95 1.95 0 0 0 1.942-1.8z" }) + ] + } + ); +}); + +export { SiTmux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.cjs new file mode 100644 index 000000000..608310a78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E44332"; +const SiTodoist = React__namespace.forwardRef(function SiTodoist2({ title = "Todoist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 0H3C1.35 0 0 1.35 0 3v3.858s3.854 2.24 4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.608 8.136-4.675.279-.161.58-.107.748-.01.164.097.606.348.84.48.232.134.221.502.013.622l-9.712 5.59c-.346.2-.69.204-1.048.002C3.478 10.907.998 9.463 0 8.882v2.02l4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.609 8.136-4.676.279-.16.58-.106.748-.008.164.096.606.347.84.48.232.133.221.5.013.62-.208.121-9.288 5.346-9.712 5.59-.346.2-.69.205-1.048.002C3.478 14.951.998 13.506 0 12.926v2.02l4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.609 8.136-4.676.279-.16.58-.106.748-.009.164.097.606.348.84.48.232.133.221.502.013.622l-9.712 5.59c-.346.199-.69.204-1.048.001C3.478 18.994.998 17.55 0 16.97V21c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3z" }) + ] + } + ); +}); + +exports.default = SiTodoist; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.d.ts new file mode 100644 index 000000000..53daa6161 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E44332"; +declare const SiTodoist: IconType; +export { SiTodoist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.mjs new file mode 100644 index 000000000..3d7163880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTodoist.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E44332"; +const SiTodoist = React.forwardRef(function SiTodoist2({ title = "Todoist", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21 0H3C1.35 0 0 1.35 0 3v3.858s3.854 2.24 4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.608 8.136-4.675.279-.161.58-.107.748-.01.164.097.606.348.84.48.232.134.221.502.013.622l-9.712 5.59c-.346.2-.69.204-1.048.002C3.478 10.907.998 9.463 0 8.882v2.02l4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.609 8.136-4.676.279-.16.58-.106.748-.008.164.096.606.347.84.48.232.133.221.5.013.62-.208.121-9.288 5.346-9.712 5.59-.346.2-.69.205-1.048.002C3.478 14.951.998 13.506 0 12.926v2.02l4.098 2.38c.31.18.694.177 1.004 0 .26-.147 8.02-4.609 8.136-4.676.279-.16.58-.106.748-.009.164.097.606.348.84.48.232.133.221.502.013.622l-9.712 5.59c-.346.199-.69.204-1.048.001C3.478 18.994.998 17.55 0 16.97V21c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3z" }) + ] + } + ); +}); + +export { SiTodoist as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.cjs new file mode 100644 index 000000000..904ad4b43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDE91"; +const SiToggl = React__namespace.forwardRef(function SiToggl2({ title = "Toggl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.356 7.446v.64c0 .711-.541 1.286-1.209 1.286-.05 0-.098-.003-.147-.009v1.58h.82v1.588c0 .625.112 1.107.338 1.434.347.501.734.83 1.676.83.546 0 1.004-.126 1.304-.293v-1.868a1.266 1.266 0 0 1-.444.074c-.363 0-.512-.112-.647-.282-.087-.112-.13-.276-.13-.489v-.994h1.22V9.161h-1.22V7.446zm19.862 0v5.04c0 .627.093 1.149.319 1.478.347.5.816.827 1.75.83a1.76 1.76 0 0 0 .713-.173v-1.92c-.441.055-.594-.256-.594-.565v-4.69zm-6.552.519-.722 1.004a2.885 2.885 0 0 0-.883-.133c-.628 0-1.258.185-1.718.617-.449.419-.658 1.005-.658 1.605 0 .6.21 1.186.658 1.605.039.038.08.071.12.104l-.084.045c-.21.12-.402.273-.568.451-.284.303-.568.756-.568 1.36 0 0-.039 1.286 1.438 1.286h1.071c.247 0 .498.157.498.403 0 .086-.025.17-.072.242h2.048c.309-.351.475-.806.466-1.274-.014-.403-.133-.831-.435-1.113-.34-.316-.831-.46-1.288-.46h-2.038c-.2 0-.379-.151-.379-.338a.338.338 0 0 1 .252-.326s.034-.008.072-.02c.371.171.776.258 1.185.254.627 0 1.256-.185 1.717-.617.449-.419.658-1.005.658-1.605 0-.6-.21-1.186-.658-1.605a2.095 2.095 0 0 0-.433-.31c.432.1.879-.023 1.186-.553zm5.182 0-.722 1.004a2.883 2.883 0 0 0-.882-.133c-.628 0-1.257.185-1.717.617-.449.419-.658 1.005-.658 1.605 0 .6.21 1.186.658 1.605.131.122.278.228.436.313a2.621 2.621 0 0 0-.32.287c-.284.303-.568.756-.568 1.36 0 0-.039 1.286 1.438 1.286h1.07c.247 0 .498.157.498.403 0 .086-.024.17-.071.242h2.048c.309-.351.475-.806.466-1.274-.015-.403-.135-.831-.439-1.113-.34-.316-.831-.46-1.288-.46l-2.362-.017c-.15 0-.263-.094-.263-.232 0-.115.057-.283.2-.311.282.088.576.132.872.13.628 0 1.257-.185 1.718-.616.448-.42.658-1.006.658-1.606 0-.6-.21-1.185-.658-1.604a2.085 2.085 0 0 0-.435-.31c.433.1.879-.024 1.186-.554zm-12.45.886c-.771 0-1.542.247-2.107.823-.552.561-.808 1.346-.808 2.149 0 .803.257 1.587.807 2.149.566.576 1.337.823 2.107.823.77 0 1.541-.247 2.106-.823.55-.562.807-1.346.807-2.149 0-.803-.257-1.588-.807-2.15-.565-.575-1.335-.822-2.106-.822zm5.74 1.622a.566.566 0 1 1-.582.565.527.527 0 0 1 .143-.378h.001a.565.565 0 0 1 .438-.187zm5.194.001a.564.564 0 1 1-.581.564.526.526 0 0 1 .144-.378.564.564 0 0 1 .437-.186zm-10.872.593a.73.73 0 1 1-.75.732.678.678 0 0 1 .186-.49.73.73 0 0 1 .564-.242z" }) + ] + } + ); +}); + +exports.default = SiToggl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.d.ts new file mode 100644 index 000000000..7cbed7091 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDE91"; +declare const SiToggl: IconType; +export { SiToggl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.mjs new file mode 100644 index 000000000..f7cd6f83c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToggl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDE91"; +const SiToggl = React.forwardRef(function SiToggl2({ title = "Toggl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.356 7.446v.64c0 .711-.541 1.286-1.209 1.286-.05 0-.098-.003-.147-.009v1.58h.82v1.588c0 .625.112 1.107.338 1.434.347.501.734.83 1.676.83.546 0 1.004-.126 1.304-.293v-1.868a1.266 1.266 0 0 1-.444.074c-.363 0-.512-.112-.647-.282-.087-.112-.13-.276-.13-.489v-.994h1.22V9.161h-1.22V7.446zm19.862 0v5.04c0 .627.093 1.149.319 1.478.347.5.816.827 1.75.83a1.76 1.76 0 0 0 .713-.173v-1.92c-.441.055-.594-.256-.594-.565v-4.69zm-6.552.519-.722 1.004a2.885 2.885 0 0 0-.883-.133c-.628 0-1.258.185-1.718.617-.449.419-.658 1.005-.658 1.605 0 .6.21 1.186.658 1.605.039.038.08.071.12.104l-.084.045c-.21.12-.402.273-.568.451-.284.303-.568.756-.568 1.36 0 0-.039 1.286 1.438 1.286h1.071c.247 0 .498.157.498.403 0 .086-.025.17-.072.242h2.048c.309-.351.475-.806.466-1.274-.014-.403-.133-.831-.435-1.113-.34-.316-.831-.46-1.288-.46h-2.038c-.2 0-.379-.151-.379-.338a.338.338 0 0 1 .252-.326s.034-.008.072-.02c.371.171.776.258 1.185.254.627 0 1.256-.185 1.717-.617.449-.419.658-1.005.658-1.605 0-.6-.21-1.186-.658-1.605a2.095 2.095 0 0 0-.433-.31c.432.1.879-.023 1.186-.553zm5.182 0-.722 1.004a2.883 2.883 0 0 0-.882-.133c-.628 0-1.257.185-1.717.617-.449.419-.658 1.005-.658 1.605 0 .6.21 1.186.658 1.605.131.122.278.228.436.313a2.621 2.621 0 0 0-.32.287c-.284.303-.568.756-.568 1.36 0 0-.039 1.286 1.438 1.286h1.07c.247 0 .498.157.498.403 0 .086-.024.17-.071.242h2.048c.309-.351.475-.806.466-1.274-.015-.403-.135-.831-.439-1.113-.34-.316-.831-.46-1.288-.46l-2.362-.017c-.15 0-.263-.094-.263-.232 0-.115.057-.283.2-.311.282.088.576.132.872.13.628 0 1.257-.185 1.718-.616.448-.42.658-1.006.658-1.606 0-.6-.21-1.185-.658-1.604a2.085 2.085 0 0 0-.435-.31c.433.1.879-.024 1.186-.554zm-12.45.886c-.771 0-1.542.247-2.107.823-.552.561-.808 1.346-.808 2.149 0 .803.257 1.587.807 2.149.566.576 1.337.823 2.107.823.77 0 1.541-.247 2.106-.823.55-.562.807-1.346.807-2.149 0-.803-.257-1.588-.807-2.15-.565-.575-1.335-.822-2.106-.822zm5.74 1.622a.566.566 0 1 1-.582.565.527.527 0 0 1 .143-.378h.001a.565.565 0 0 1 .438-.187zm5.194.001a.564.564 0 1 1-.581.564.526.526 0 0 1 .144-.378.564.564 0 0 1 .437-.186zm-10.872.593a.73.73 0 1 1-.75.732.678.678 0 0 1 .186-.49.73.73 0 0 1 .564-.242z" }) + ] + } + ); +}); + +export { SiToggl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.cjs new file mode 100644 index 000000000..4ed1d6cf4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E57CD8"; +const SiToggltrack = React__namespace.forwardRef(function SiToggltrack2({ title = "Toggl Track", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm-.883 4.322h1.766v8.757h-1.766zm-.74 2.053v1.789a4.448 4.448 0 1 0 3.247 0V6.375a6.146 6.146 0 1 1-5.669 10.552 6.145 6.145 0 0 1 2.421-10.552z" }) + ] + } + ); +}); + +exports.default = SiToggltrack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.d.ts new file mode 100644 index 000000000..faeb4e430 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E57CD8"; +declare const SiToggltrack: IconType; +export { SiToggltrack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.mjs new file mode 100644 index 000000000..7fb57464a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToggltrack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E57CD8"; +const SiToggltrack = React.forwardRef(function SiToggltrack2({ title = "Toggl Track", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm-.883 4.322h1.766v8.757h-1.766zm-.74 2.053v1.789a4.448 4.448 0 1 0 3.247 0V6.375a6.146 6.146 0 1 1-5.669 10.552 6.145 6.145 0 0 1 2.421-10.552z" }) + ] + } + ); +}); + +export { SiToggltrack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.cjs new file mode 100644 index 000000000..1c60c4862 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTokio = React__namespace.forwardRef(function SiTokio2({ title = "Tokio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6.314 1.326-.691.403.201.345L9.65 8.641l.069.117a4 4 0 0 0-.992.988L6.379 8.391l-.338-.194-.4.692.338.195 2.355 1.36a4 4 0 0 0-.312 1.198H.4l-.4.001v.8h8.021a4 4 0 0 0 .313 1.2l-2.356 1.359-.337.195.4.692.338-.193 2.347-1.358a4 4 0 0 0 .834.873l-.086.148-3.826 6.567-.2.346.69.402.202-.344 3.826-6.568.074-.127a4 4 0 0 0 1.36.387v3.021h.8v-3.021a4 4 0 0 0 1.409-.413l.066.114 3.826 6.568.201.346.692-.405-.201-.345-3.827-6.567-.084-.142a4 4 0 0 0 .791-.84l2.348 1.357.338.194.4-.692-.337-.195-2.356-1.36a4 4 0 0 0 .313-1.198H24v-.801h-8.021a4 4 0 0 0-.313-1.2l2.356-1.359.337-.195-.4-.692-.338.194-2.348 1.355a4 4 0 0 0-1.015-1.004l.058-.101 3.827-6.567.2-.345-.69-.403-.202.344-3.826 6.568-.068.12a4 4 0 0 0-1.157-.294V5.043h-.8v3.021a4 4 0 0 0-1.182.305l-.076-.13L6.516 1.67ZM12 3.043a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .602-.6.6.6 0 0 0-.602-.6M12 8.888a3.153 3.153 0 1 1 0 6.307 3.153 3.153 0 1 1 0-6.307m0 2.555a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.599.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.601.6.6 0 0 0 .6-.602.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.602.6.6 0 0 0 .602-.602.6.6 0 0 0-.602-.6M12 19.845a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6" }) + ] + } + ); +}); + +exports.default = SiTokio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.d.ts new file mode 100644 index 000000000..6f1715eba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTokio: IconType; +export { SiTokio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.mjs new file mode 100644 index 000000000..9daa7ff92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTokio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTokio = React.forwardRef(function SiTokio2({ title = "Tokio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m6.314 1.326-.691.403.201.345L9.65 8.641l.069.117a4 4 0 0 0-.992.988L6.379 8.391l-.338-.194-.4.692.338.195 2.355 1.36a4 4 0 0 0-.312 1.198H.4l-.4.001v.8h8.021a4 4 0 0 0 .313 1.2l-2.356 1.359-.337.195.4.692.338-.193 2.347-1.358a4 4 0 0 0 .834.873l-.086.148-3.826 6.567-.2.346.69.402.202-.344 3.826-6.568.074-.127a4 4 0 0 0 1.36.387v3.021h.8v-3.021a4 4 0 0 0 1.409-.413l.066.114 3.826 6.568.201.346.692-.405-.201-.345-3.827-6.567-.084-.142a4 4 0 0 0 .791-.84l2.348 1.357.338.194.4-.692-.337-.195-2.356-1.36a4 4 0 0 0 .313-1.198H24v-.801h-8.021a4 4 0 0 0-.313-1.2l2.356-1.359.337-.195-.4-.692-.338.194-2.348 1.355a4 4 0 0 0-1.015-1.004l.058-.101 3.827-6.567.2-.345-.69-.403-.202.344-3.826 6.568-.068.12a4 4 0 0 0-1.157-.294V5.043h-.8v3.021a4 4 0 0 0-1.182.305l-.076-.13L6.516 1.67ZM12 3.043a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.6.6.6 0 0 0 .602-.6.6.6 0 0 0-.602-.6M12 8.888a3.153 3.153 0 1 1 0 6.307 3.153 3.153 0 1 1 0-6.307m0 2.555a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.599.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6m-7.2 4.2a.6.6 0 0 0-.601.6.6.6 0 0 0 .602.601.6.6 0 0 0 .6-.602.6.6 0 0 0-.6-.6m14.398 0a.6.6 0 0 0-.6.6.6.6 0 0 0 .6.602.6.6 0 0 0 .602-.602.6.6 0 0 0-.602-.6M12 19.845a.6.6 0 0 0-.599.6.6.6 0 0 0 .6.6.6.6 0 0 0 .6-.6.6.6 0 0 0-.6-.6" }) + ] + } + ); +}); + +export { SiTokio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.cjs new file mode 100644 index 000000000..2230fabb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#149DD3"; +const SiTokyometro = React__namespace.forwardRef(function SiTokyometro2({ title = "Tokyo Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9832 18.2104c2.86.006 4.04-.949 4.043-2.392.003-1.7021-1.694-3.7822-2.923-5.0732 2.318-2.082 5.3251-3.622 6.5082-2.432 1.367 1.367.02 5.418-3.2131 9.8922l4.26 1.222c3.6132-6.4301 4.3802-12.7603 1.8901-14.4733-1.946-1.329-6.8521 1.337-10.5502 4.721-3.6871-3.398-8.5802-6.08-10.5323-4.759-2.5 1.704-1.748 8.0372 1.841 14.4803l4.2662-1.207C4.35 13.7033 3.02 9.6482 4.393 8.285c1.184-1.185 4.1861.365 6.5002 2.4561-1.237 1.286-2.9431 3.36-2.9451 5.0621-.003 1.444 1.176 2.402 4.035 2.408zm.004-2.34c-.947-.001-1.745-.242-1.743-1.0501 0-.748.637-1.88 1.75-3.106 1.11 1.23 1.739 2.364 1.738 3.113-.001.807-.8 1.045-1.745 1.044z" }) + ] + } + ); +}); + +exports.default = SiTokyometro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.d.ts new file mode 100644 index 000000000..190649367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#149DD3"; +declare const SiTokyometro: IconType; +export { SiTokyometro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.mjs new file mode 100644 index 000000000..3ff03a4eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTokyometro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#149DD3"; +const SiTokyometro = React.forwardRef(function SiTokyometro2({ title = "Tokyo Metro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9832 18.2104c2.86.006 4.04-.949 4.043-2.392.003-1.7021-1.694-3.7822-2.923-5.0732 2.318-2.082 5.3251-3.622 6.5082-2.432 1.367 1.367.02 5.418-3.2131 9.8922l4.26 1.222c3.6132-6.4301 4.3802-12.7603 1.8901-14.4733-1.946-1.329-6.8521 1.337-10.5502 4.721-3.6871-3.398-8.5802-6.08-10.5323-4.759-2.5 1.704-1.748 8.0372 1.841 14.4803l4.2662-1.207C4.35 13.7033 3.02 9.6482 4.393 8.285c1.184-1.185 4.1861.365 6.5002 2.4561-1.237 1.286-2.9431 3.36-2.9451 5.0621-.003 1.444 1.176 2.402 4.035 2.408zm.004-2.34c-.947-.001-1.745-.242-1.743-1.0501 0-.748.637-1.88 1.75-3.106 1.11 1.23 1.739 2.364 1.738 3.113-.001.807-.8 1.045-1.745 1.044z" }) + ] + } + ); +}); + +export { SiTokyometro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToll.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToll.cjs new file mode 100644 index 000000000..c000008c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToll.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007A68"; +const SiToll = React__namespace.forwardRef(function SiToll2({ title = "Toll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.852 13.351H24l-.645 1.455h-3.346c-.689 0-1.158-.584-.898-1.15l1.978-4.463h2.356l-1.75 3.954c-.037.088-.008.202.157.204ZM6.147 10.647l-1.843 4.159H3.303c-.601 0-1.061-.556-.852-1.045l1.379-3.114H0l.112-.252h7.375c.375 0 .955-.058 1.534-.338.155-.074.845-.473 1.503-.864h1.474c-.411.194-2.381 1.141-2.617 1.227-.618.225-1.017.227-1.526.227H6.147Zm.538-.471H.209c.195-.442.632-.983 1.933-.983h6.18c-.351.44-.704.983-1.637.983Zm10.001 2.971c-.037.088-.007.202.157.204h2.149l-.644 1.455h-3.347c-.689 0-1.157-.584-.898-1.15l1.978-4.463h2.356l-1.75 3.954h-.001Zm-1.831-3.439c.283.402.128 1-.107 1.506l-.91 2.055c-.686 1.655-3.056 1.536-3.056 1.536H8.085s-2.332.122-1.315-2.167l.785-1.774h.655c.531 0 1.182-.165 1.48-.282l3.509-1.389h.616c.497 0 .871.24 1.037.515h.003Zm-2.4 1.376c.119-.291-.054-.437-.294-.437h-1.7c-.343-.002-.512.168-.563.279-.036.074-.854 1.925-.854 1.925-.233.518.261.501.261.501h1.617s.52.002.756-.512l.777-1.757v.001Z" }) + ] + } + ); +}); + +exports.default = SiToll; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToll.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToll.d.ts new file mode 100644 index 000000000..484023759 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToll.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007A68"; +declare const SiToll: IconType; +export { SiToll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToll.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToll.mjs new file mode 100644 index 000000000..af77aeeee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToll.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007A68"; +const SiToll = React.forwardRef(function SiToll2({ title = "Toll", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.852 13.351H24l-.645 1.455h-3.346c-.689 0-1.158-.584-.898-1.15l1.978-4.463h2.356l-1.75 3.954c-.037.088-.008.202.157.204ZM6.147 10.647l-1.843 4.159H3.303c-.601 0-1.061-.556-.852-1.045l1.379-3.114H0l.112-.252h7.375c.375 0 .955-.058 1.534-.338.155-.074.845-.473 1.503-.864h1.474c-.411.194-2.381 1.141-2.617 1.227-.618.225-1.017.227-1.526.227H6.147Zm.538-.471H.209c.195-.442.632-.983 1.933-.983h6.18c-.351.44-.704.983-1.637.983Zm10.001 2.971c-.037.088-.007.202.157.204h2.149l-.644 1.455h-3.347c-.689 0-1.157-.584-.898-1.15l1.978-4.463h2.356l-1.75 3.954h-.001Zm-1.831-3.439c.283.402.128 1-.107 1.506l-.91 2.055c-.686 1.655-3.056 1.536-3.056 1.536H8.085s-2.332.122-1.315-2.167l.785-1.774h.655c.531 0 1.182-.165 1.48-.282l3.509-1.389h.616c.497 0 .871.24 1.037.515h.003Zm-2.4 1.376c.119-.291-.054-.437-.294-.437h-1.7c-.343-.002-.512.168-.563.279-.036.074-.854 1.925-.854 1.925-.233.518.261.501.261.501h1.617s.52.002.756-.512l.777-1.757v.001Z" }) + ] + } + ); +}); + +export { SiToll as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToml.cjs new file mode 100644 index 000000000..792a8db46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9C4121"; +const SiToml = React__namespace.forwardRef(function SiToml2({ title = "TOML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.014 0h5.34v2.652H2.888v18.681h2.468V24H.015V0Zm17.622 5.049v2.78h-4.274v12.935h-3.008V7.83H6.059V5.05h11.577ZM23.986 24h-5.34v-2.652h2.467V2.667h-2.468V0h5.34v24Z" }) + ] + } + ); +}); + +exports.default = SiToml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToml.d.ts new file mode 100644 index 000000000..aafd977d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9C4121"; +declare const SiToml: IconType; +export { SiToml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToml.mjs new file mode 100644 index 000000000..feda5e73c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9C4121"; +const SiToml = React.forwardRef(function SiToml2({ title = "TOML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.014 0h5.34v2.652H2.888v18.681h2.468V24H.015V0Zm17.622 5.049v2.78h-4.274v12.935h-3.008V7.83H6.059V5.05h11.577ZM23.986 24h-5.34v-2.652h2.467V2.667h-2.468V0h5.34v24Z" }) + ] + } + ); +}); + +export { SiToml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.cjs new file mode 100644 index 000000000..f64d70220 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTomorrowland = React__namespace.forwardRef(function SiTomorrowland2({ title = "Tomorrowland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.97 0c-.009.01-.35.35-.747.758-.826.835-1.504 1.271-2.524 1.62-.582.205-.836.243-1.496.204-.427-.02-.883-.067-1-.115-.194-.058-.223-.04-.223.174 0 .33-.251 1.02-.523 1.437l-.234.35.244.3c.126.175.281.311.33.311.048 0 .31-.175.592-.389.738-.563 2.039-1.212 3.048-1.513.797-.253.99-.274 2.563-.274 1.573 0 1.766.021 2.563.274 1.01.3 2.31.95 3.048 1.513.282.214.544.39.592.39.049 0 .204-.137.33-.302l.244-.31-.283-.448a4.197 4.197 0 01-.416-.98c-.107-.437-.165-.523-.31-.494-.107.02-.534.057-.971.076-.621.03-.913.001-1.408-.164-1.03-.35-1.825-.845-2.641-1.67-.417-.417-.768-.758-.777-.748zm-.284 3.328a2.38 2.38 0 00-.317.022c-1.369.213-2.504.882-3.203 1.882l-.273.39.273.388c.301.437.805.873 1.805 1.572.825.583 1.583 1.408 1.787 1.97.097.243.193.438.232.428.03 0 .175-.251.32-.552.302-.641.846-1.225 1.73-1.846.96-.68 1.512-1.164 1.794-1.572l.264-.38-.291-.427a4.434 4.434 0 00-2.32-1.66c-.45-.126-1.267-.22-1.801-.215zm-7.502.031l-.475.524C3.059 4.6 2.155 5.99 1.902 6.66c-.63 1.7-.464 3.127.536 4.486.796 1.078 2.357 2.165 4.095 2.854.447.165.807.34.807.379 0 .029-.126.088-.291.127-.456.097-1.408.766-1.66 1.174-.185.29-.233.504-.223.96.01 1.35.97 2.526 2.834 3.477.602.301 1.184.553 1.291.553.32 0 1.108-.874 1.477-1.66.699-1.437 1-3.408.912-5.912-.078-2.272-.32-3.059-1.252-4.04-.272-.29-.827-.727-1.235-.97C6 6.117 4.465 4.738 4.243 3.64l-.06-.282zm15.634.094c-.036-.003-.047.037-.05.11-.01.96-1.728 2.525-4.961 4.525-.408.243-.963.68-1.235.97-.932.981-1.174 1.768-1.252 4.04-.087 2.504.213 4.475.912 5.912.37.786 1.157 1.66 1.477 1.66.107 0 .68-.242 1.271-.543 1.874-.951 2.844-2.137 2.854-3.486.01-.457-.038-.67-.223-.961-.252-.408-1.204-1.077-1.66-1.174-.165-.039-.29-.098-.29-.127 0-.039.36-.214.806-.379 1.738-.69 3.3-1.776 4.096-2.854 1-1.359 1.166-2.787.535-4.486-.262-.699-1.176-2.088-1.827-2.787-.267-.291-.393-.415-.453-.42zm-7.994.533l.274.004c.757.03 1.018.078 1.484.291.505.233 1.621 1.165 1.621 1.35 0 .126-1.183 1.02-1.746 1.31-.476.253-.632.282-1.457.282-.883 0-.951-.02-1.602-.37a7.076 7.076 0 01-1.156-.785l-.484-.418L9 5.36c.36-.447 1-.904 1.611-1.157.425-.178.634-.221 1.213-.217zm.188.19a1.362 1.362 0 00-.692.174c-1.34.708-.844 2.728.68 2.728 1.485 0 2.01-1.951.719-2.69a1.475 1.475 0 00-.707-.212zm-.282.635c.157-.001.3.096.387.287.214.456-.476.98-.767.591-.224-.281-.224-.466.01-.699a.543.543 0 01.37-.18zm-9.943 6.46c-.039-.019-.078.563-.078 1.291 0 2.593.67 4.428 2.379 6.467 1.466 1.748 4.282 3.612 7.058 4.65l.844.321.807-.32c4.165-1.65 7.416-4.34 8.717-7.223.534-1.165.7-1.933.748-3.477.029-.786.029-1.504-.01-1.591-.049-.127-.135-.078-.436.261-.359.408-.37.457-.427 1.301-.272 4.088-3.224 7.534-7.33 8.563-1 .252-3.311.225-4.33-.047-4.03-1.107-6.856-4.477-7.118-8.516-.058-.825-.078-.893-.398-1.262-.194-.213-.377-.408-.426-.418Z" }) + ] + } + ); +}); + +exports.default = SiTomorrowland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.d.ts new file mode 100644 index 000000000..1332a7821 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTomorrowland: IconType; +export { SiTomorrowland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.mjs new file mode 100644 index 000000000..409252f4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTomorrowland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTomorrowland = React.forwardRef(function SiTomorrowland2({ title = "Tomorrowland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.97 0c-.009.01-.35.35-.747.758-.826.835-1.504 1.271-2.524 1.62-.582.205-.836.243-1.496.204-.427-.02-.883-.067-1-.115-.194-.058-.223-.04-.223.174 0 .33-.251 1.02-.523 1.437l-.234.35.244.3c.126.175.281.311.33.311.048 0 .31-.175.592-.389.738-.563 2.039-1.212 3.048-1.513.797-.253.99-.274 2.563-.274 1.573 0 1.766.021 2.563.274 1.01.3 2.31.95 3.048 1.513.282.214.544.39.592.39.049 0 .204-.137.33-.302l.244-.31-.283-.448a4.197 4.197 0 01-.416-.98c-.107-.437-.165-.523-.31-.494-.107.02-.534.057-.971.076-.621.03-.913.001-1.408-.164-1.03-.35-1.825-.845-2.641-1.67-.417-.417-.768-.758-.777-.748zm-.284 3.328a2.38 2.38 0 00-.317.022c-1.369.213-2.504.882-3.203 1.882l-.273.39.273.388c.301.437.805.873 1.805 1.572.825.583 1.583 1.408 1.787 1.97.097.243.193.438.232.428.03 0 .175-.251.32-.552.302-.641.846-1.225 1.73-1.846.96-.68 1.512-1.164 1.794-1.572l.264-.38-.291-.427a4.434 4.434 0 00-2.32-1.66c-.45-.126-1.267-.22-1.801-.215zm-7.502.031l-.475.524C3.059 4.6 2.155 5.99 1.902 6.66c-.63 1.7-.464 3.127.536 4.486.796 1.078 2.357 2.165 4.095 2.854.447.165.807.34.807.379 0 .029-.126.088-.291.127-.456.097-1.408.766-1.66 1.174-.185.29-.233.504-.223.96.01 1.35.97 2.526 2.834 3.477.602.301 1.184.553 1.291.553.32 0 1.108-.874 1.477-1.66.699-1.437 1-3.408.912-5.912-.078-2.272-.32-3.059-1.252-4.04-.272-.29-.827-.727-1.235-.97C6 6.117 4.465 4.738 4.243 3.64l-.06-.282zm15.634.094c-.036-.003-.047.037-.05.11-.01.96-1.728 2.525-4.961 4.525-.408.243-.963.68-1.235.97-.932.981-1.174 1.768-1.252 4.04-.087 2.504.213 4.475.912 5.912.37.786 1.157 1.66 1.477 1.66.107 0 .68-.242 1.271-.543 1.874-.951 2.844-2.137 2.854-3.486.01-.457-.038-.67-.223-.961-.252-.408-1.204-1.077-1.66-1.174-.165-.039-.29-.098-.29-.127 0-.039.36-.214.806-.379 1.738-.69 3.3-1.776 4.096-2.854 1-1.359 1.166-2.787.535-4.486-.262-.699-1.176-2.088-1.827-2.787-.267-.291-.393-.415-.453-.42zm-7.994.533l.274.004c.757.03 1.018.078 1.484.291.505.233 1.621 1.165 1.621 1.35 0 .126-1.183 1.02-1.746 1.31-.476.253-.632.282-1.457.282-.883 0-.951-.02-1.602-.37a7.076 7.076 0 01-1.156-.785l-.484-.418L9 5.36c.36-.447 1-.904 1.611-1.157.425-.178.634-.221 1.213-.217zm.188.19a1.362 1.362 0 00-.692.174c-1.34.708-.844 2.728.68 2.728 1.485 0 2.01-1.951.719-2.69a1.475 1.475 0 00-.707-.212zm-.282.635c.157-.001.3.096.387.287.214.456-.476.98-.767.591-.224-.281-.224-.466.01-.699a.543.543 0 01.37-.18zm-9.943 6.46c-.039-.019-.078.563-.078 1.291 0 2.593.67 4.428 2.379 6.467 1.466 1.748 4.282 3.612 7.058 4.65l.844.321.807-.32c4.165-1.65 7.416-4.34 8.717-7.223.534-1.165.7-1.933.748-3.477.029-.786.029-1.504-.01-1.591-.049-.127-.135-.078-.436.261-.359.408-.37.457-.427 1.301-.272 4.088-3.224 7.534-7.33 8.563-1 .252-3.311.225-4.33-.047-4.03-1.107-6.856-4.477-7.118-8.516-.058-.825-.078-.893-.398-1.262-.194-.213-.377-.408-.426-.418Z" }) + ] + } + ); +}); + +export { SiTomorrowland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.cjs new file mode 100644 index 000000000..67cab2969 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DF1B12"; +const SiTomtom = React__namespace.forwardRef(function SiTomtom2({ title = "TomTom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 12.584a4.325 4.325 0 0 1-4.32-4.32A4.325 4.325 0 0 1 12 3.944a4.325 4.325 0 0 1 4.32 4.32 4.325 4.325 0 0 1-4.32 4.32zM12 0C7.443 0 3.736 3.707 3.736 8.264c0 4.557 3.707 8.264 8.264 8.264 4.557 0 8.264-3.707 8.264-8.264C20.264 3.707 16.557 0 12 0m0 24 3.167-5.486H8.833Z" }) + ] + } + ); +}); + +exports.default = SiTomtom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.d.ts new file mode 100644 index 000000000..f67ea8b9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DF1B12"; +declare const SiTomtom: IconType; +export { SiTomtom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.mjs new file mode 100644 index 000000000..16e5e916b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTomtom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DF1B12"; +const SiTomtom = React.forwardRef(function SiTomtom2({ title = "TomTom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 12.584a4.325 4.325 0 0 1-4.32-4.32A4.325 4.325 0 0 1 12 3.944a4.325 4.325 0 0 1 4.32 4.32 4.325 4.325 0 0 1-4.32 4.32zM12 0C7.443 0 3.736 3.707 3.736 8.264c0 4.557 3.707 8.264 8.264 8.264 4.557 0 8.264-3.707 8.264-8.264C20.264 3.707 16.557 0 12 0m0 24 3.167-5.486H8.833Z" }) + ] + } + ); +}); + +export { SiTomtom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTon.cjs new file mode 100644 index 000000000..92fdabb1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0098EA"; +const SiTon = React__namespace.forwardRef(function SiTon2({ title = "TON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zM7.902 6.697h8.196c1.505 0 2.462 1.628 1.705 2.94l-5.059 8.765a.86.86 0 0 1-1.488 0L6.199 9.637c-.758-1.314.197-2.94 1.703-2.94zm4.844 1.496v7.58l1.102-2.128 2.656-4.756a.465.465 0 0 0-.408-.696h-3.35zM7.9 8.195a.464.464 0 0 0-.408.694l2.658 4.754 1.102 2.13V8.195H7.9z" }) + ] + } + ); +}); + +exports.default = SiTon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTon.d.ts new file mode 100644 index 000000000..e4234aba9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0098EA"; +declare const SiTon: IconType; +export { SiTon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTon.mjs new file mode 100644 index 000000000..bfea5a6cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0098EA"; +const SiTon = React.forwardRef(function SiTon2({ title = "TON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zM7.902 6.697h8.196c1.505 0 2.462 1.628 1.705 2.94l-5.059 8.765a.86.86 0 0 1-1.488 0L6.199 9.637c-.758-1.314.197-2.94 1.703-2.94zm4.844 1.496v7.58l1.102-2.128 2.656-4.756a.465.465 0 0 0-.408-.696h-3.35zM7.9 8.195a.464.464 0 0 0-.408.694l2.658 4.754 1.102 2.13V8.195H7.9z" }) + ] + } + ); +}); + +export { SiTon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.cjs new file mode 100644 index 000000000..36a0fa1b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#29A7DF"; +const SiTopcoder = React__namespace.forwardRef(function SiTopcoder2({ title = "Topcoder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.004 7.555c-1.87 0-3.88.979-5.559 2.678 1.741.384 3.587.997 5.046 1.662l.513.23c.204-.09.367-.163.513-.23 1.464-.667 3.318-1.282 5.064-1.667-1.645-1.796-3.508-2.673-5.577-2.673zm8.751 2.723c-.675.016-1.44.101-2.282.254.608.784 1.26 2 1.928 3.503a43.559 43.559 0 0 1 .981 2.4c.305-.06.58-.232.825-.542 1.393-1.761 2.038-3.366 1.708-4.349-.26-.776-1.152-1.19-2.515-1.258a8.77 8.77 0 0 0-.645-.008zm-17.506 0a8.844 8.844 0 0 0-.646.008c-1.365.068-2.258.481-2.518 1.258-.33.983.315 2.588 1.708 4.35.258.325.549.499.873.55.15-1.468 1.501-4.253 2.868-5.911a14.877 14.877 0 0 0-2.285-.254zm14.69.352c-1.184.197-3.63.971-5.15 1.638l-.036.017a10.22 10.22 0 0 1 1.798.599c1.268.55 1.504.694 5.169 3.06.206.134.37.227.587.32.194.084.383.143.566.174a42.717 42.717 0 0 0-1.316-3.092c-.46-.96-.906-1.758-1.323-2.338-.1-.14-.2-.266-.295-.378zm-11.866.004c-1.35 1.538-2.758 4.38-2.927 5.802.361-.061.79-.24 1.222-.49.317-.185.65-.394 1.054-.659.243-.16 1.153-.768 1.087-.724 1.939-1.29 3.253-1.982 4.678-2.288-1.589-.69-3.798-1.417-5.114-1.64z" }) + ] + } + ); +}); + +exports.default = SiTopcoder; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.d.ts new file mode 100644 index 000000000..119cdde29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#29A7DF"; +declare const SiTopcoder: IconType; +export { SiTopcoder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.mjs new file mode 100644 index 000000000..cbe570539 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTopcoder.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#29A7DF"; +const SiTopcoder = React.forwardRef(function SiTopcoder2({ title = "Topcoder", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.004 7.555c-1.87 0-3.88.979-5.559 2.678 1.741.384 3.587.997 5.046 1.662l.513.23c.204-.09.367-.163.513-.23 1.464-.667 3.318-1.282 5.064-1.667-1.645-1.796-3.508-2.673-5.577-2.673zm8.751 2.723c-.675.016-1.44.101-2.282.254.608.784 1.26 2 1.928 3.503a43.559 43.559 0 0 1 .981 2.4c.305-.06.58-.232.825-.542 1.393-1.761 2.038-3.366 1.708-4.349-.26-.776-1.152-1.19-2.515-1.258a8.77 8.77 0 0 0-.645-.008zm-17.506 0a8.844 8.844 0 0 0-.646.008c-1.365.068-2.258.481-2.518 1.258-.33.983.315 2.588 1.708 4.35.258.325.549.499.873.55.15-1.468 1.501-4.253 2.868-5.911a14.877 14.877 0 0 0-2.285-.254zm14.69.352c-1.184.197-3.63.971-5.15 1.638l-.036.017a10.22 10.22 0 0 1 1.798.599c1.268.55 1.504.694 5.169 3.06.206.134.37.227.587.32.194.084.383.143.566.174a42.717 42.717 0 0 0-1.316-3.092c-.46-.96-.906-1.758-1.323-2.338-.1-.14-.2-.266-.295-.378zm-11.866.004c-1.35 1.538-2.758 4.38-2.927 5.802.361-.061.79-.24 1.222-.49.317-.185.65-.394 1.054-.659.243-.16 1.153-.768 1.087-.724 1.939-1.29 3.253-1.982 4.678-2.288-1.589-.69-3.798-1.417-5.114-1.64z" }) + ] + } + ); +}); + +export { SiTopcoder as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.cjs new file mode 100644 index 000000000..11d98ea5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF3366"; +const SiTopdotgg = React__namespace.forwardRef(function SiTopdotgg2({ title = "Top.gg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.3785h7.6215V12H2.329A2.3212 2.3212 0 0 1 .0077 9.6788Zm24 0H8.757v15.243h3.1144a4.5071 4.5071 0 0 0 4.507-4.5071V12h3.1145A4.5073 4.5073 0 0 0 24 7.4929z" }) + ] + } + ); +}); + +exports.default = SiTopdotgg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.d.ts new file mode 100644 index 000000000..f6710e328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF3366"; +declare const SiTopdotgg: IconType; +export { SiTopdotgg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.mjs new file mode 100644 index 000000000..99c8d82f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTopdotgg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF3366"; +const SiTopdotgg = React.forwardRef(function SiTopdotgg2({ title = "Top.gg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.3785h7.6215V12H2.329A2.3212 2.3212 0 0 1 .0077 9.6788Zm24 0H8.757v15.243h3.1144a4.5071 4.5071 0 0 0 4.507-4.5071V12h3.1145A4.5073 4.5073 0 0 0 24 7.4929z" }) + ] + } + ); +}); + +export { SiTopdotgg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.cjs new file mode 100644 index 000000000..e2b18e548 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3863A0"; +const SiToptal = React__namespace.forwardRef(function SiToptal2({ title = "Toptal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.227 10.038L10.188 0l-2.04 2.04 3.773 3.769-8.155 8.153L13.807 24l2.039-2.039-3.772-3.771 8.16-8.152h-.007zM8.301 14.269l6.066-6.063 1.223 1.223-6.064 6.113-1.223-1.26-.002-.013z" }) + ] + } + ); +}); + +exports.default = SiToptal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.d.ts new file mode 100644 index 000000000..2d66572b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3863A0"; +declare const SiToptal: IconType; +export { SiToptal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.mjs new file mode 100644 index 000000000..17e7e5a44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToptal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3863A0"; +const SiToptal = React.forwardRef(function SiToptal2({ title = "Toptal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.227 10.038L10.188 0l-2.04 2.04 3.773 3.769-8.155 8.153L13.807 24l2.039-2.039-3.772-3.771 8.16-8.152h-.007zM8.301 14.269l6.066-6.063 1.223 1.223-6.064 6.113-1.223-1.26-.002-.013z" }) + ] + } + ); +}); + +export { SiToptal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.cjs new file mode 100644 index 000000000..23c2ca2db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7D4698"; +const SiTorbrowser = React__namespace.forwardRef(function SiTorbrowser2({ title = "Tor Browser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 21.82v-1.46A8.36 8.36 0 0020.36 12 8.36 8.36 0 0012 3.64V2.18A9.83 9.83 0 0121.82 12 9.83 9.83 0 0112 21.82zm0-5.09A4.74 4.74 0 0016.73 12 4.74 4.74 0 0012 7.27V5.82A6.17 6.17 0 0118.18 12 6.17 6.17 0 0112 18.18zm0-7.27A2.54 2.54 0 0114.55 12 2.54 2.54 0 0112 14.54zM0 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0 12 12 0 000 12z" }) + ] + } + ); +}); + +exports.default = SiTorbrowser; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.d.ts new file mode 100644 index 000000000..07d26ba91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7D4698"; +declare const SiTorbrowser: IconType; +export { SiTorbrowser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.mjs new file mode 100644 index 000000000..ed2282fc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorbrowser.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7D4698"; +const SiTorbrowser = React.forwardRef(function SiTorbrowser2({ title = "Tor Browser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 21.82v-1.46A8.36 8.36 0 0020.36 12 8.36 8.36 0 0012 3.64V2.18A9.83 9.83 0 0121.82 12 9.83 9.83 0 0112 21.82zm0-5.09A4.74 4.74 0 0016.73 12 4.74 4.74 0 0012 7.27V5.82A6.17 6.17 0 0118.18 12 6.17 6.17 0 0112 18.18zm0-7.27A2.54 2.54 0 0114.55 12 2.54 2.54 0 0112 14.54zM0 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0 12 12 0 000 12z" }) + ] + } + ); +}); + +export { SiTorbrowser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.cjs new file mode 100644 index 000000000..569a892a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAAF00"; +const SiTorizon = React__namespace.forwardRef(function SiTorizon2({ title = "Torizon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.63.349a.56.56 0 0 0-.304.09L8.719 2.132a.274.274 0 0 0 0 .457l2.607 1.693a.56.56 0 0 0 .607 0L14.54 2.59a.274.274 0 0 0 0-.457L11.933.439a.56.56 0 0 0-.303-.09M7.437 3.054a.56.56 0 0 0-.302.09L4.53 4.837a.274.274 0 0 0 0 .46L7.135 6.99a.56.56 0 0 0 .604 0l2.606-1.693a.274.274 0 0 0 0-.46L7.74 3.144a.56.56 0 0 0-.302-.09m8.852.316a.56.56 0 0 0-.302.09l-2.606 1.69a.274.274 0 0 0 0 .46l2.606 1.693a.56.56 0 0 0 .605 0l2.606-1.693a.274.274 0 0 0 0-.46l-2.606-1.69a.56.56 0 0 0-.303-.09M3.043 5.924a.56.56 0 0 0-.303.09L.134 7.707a.274.274 0 0 0 0 .46l2.606 1.69a.56.56 0 0 0 .605 0l2.606-1.69a.274.274 0 0 0 0-.46L3.345 6.014a.56.56 0 0 0-.302-.09m9.055.155a.56.56 0 0 0-.301.09l-2.6 1.689a.274.274 0 0 0 0 .46l2.6 1.693a.56.56 0 0 0 .603.003l2.607-1.692a.274.274 0 0 0 0-.46L12.4 6.167a.56.56 0 0 0-.302-.089m8.858.309a.56.56 0 0 0-.304.09L18.045 8.17a.274.274 0 0 0 0 .457l2.607 1.697a.56.56 0 0 0 .608 0l2.606-1.694a.274.274 0 0 0 0-.46L21.26 6.478a.56.56 0 0 0-.304-.09M7.702 8.945a.56.56 0 0 0-.303.09l-2.607 1.693a.274.274 0 0 0 0 .456L7.4 12.877a.56.56 0 0 0 .607 0l2.596-1.685a.274.274 0 0 0 0-.457l-2.596-1.7a.56.56 0 0 0-.304-.09m9.063.15a.56.56 0 0 0-.304.09l-2.606 1.694a.274.274 0 0 0 0 .457l2.606 1.692a.56.56 0 0 0 .608 0l2.606-1.692a.274.274 0 0 0 0-.457L17.07 9.186a.56.56 0 0 0-.304-.09M24 10.585a1.2 1.2 0 0 1-.351.611L12.973 18.13a1.83 1.83 0 0 1-1.992 0L.334 11.212a1.15 1.15 0 0 1-.333-.6v1.657a.74.74 0 0 0 .351.665l10.63 6.913a1.83 1.83 0 0 0 1.991 0l10.676-6.935a.74.74 0 0 0 .35-.643Zm-11.631 1.379a.56.56 0 0 0-.302.089L9.46 13.745a.274.274 0 0 0 0 .46l2.607 1.693a.56.56 0 0 0 .604 0l2.607-1.692a.274.274 0 0 0 0-.46l-2.607-1.694a.56.56 0 0 0-.302-.09m11.63 2.134a1.2 1.2 0 0 1-.35.607l-10.676 6.92a1.83 1.83 0 0 1-1.992 0L.334 14.722a1.15 1.15 0 0 1-.333-.597v1.654a.74.74 0 0 0 .351.66l10.63 6.917a1.83 1.83 0 0 0 1.991 0l10.676-6.934a.74.74 0 0 0 .35-.643z" }) + ] + } + ); +}); + +exports.default = SiTorizon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.d.ts new file mode 100644 index 000000000..08699d2f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAAF00"; +declare const SiTorizon: IconType; +export { SiTorizon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.mjs new file mode 100644 index 000000000..8d22fb508 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorizon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAAF00"; +const SiTorizon = React.forwardRef(function SiTorizon2({ title = "Torizon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.63.349a.56.56 0 0 0-.304.09L8.719 2.132a.274.274 0 0 0 0 .457l2.607 1.693a.56.56 0 0 0 .607 0L14.54 2.59a.274.274 0 0 0 0-.457L11.933.439a.56.56 0 0 0-.303-.09M7.437 3.054a.56.56 0 0 0-.302.09L4.53 4.837a.274.274 0 0 0 0 .46L7.135 6.99a.56.56 0 0 0 .604 0l2.606-1.693a.274.274 0 0 0 0-.46L7.74 3.144a.56.56 0 0 0-.302-.09m8.852.316a.56.56 0 0 0-.302.09l-2.606 1.69a.274.274 0 0 0 0 .46l2.606 1.693a.56.56 0 0 0 .605 0l2.606-1.693a.274.274 0 0 0 0-.46l-2.606-1.69a.56.56 0 0 0-.303-.09M3.043 5.924a.56.56 0 0 0-.303.09L.134 7.707a.274.274 0 0 0 0 .46l2.606 1.69a.56.56 0 0 0 .605 0l2.606-1.69a.274.274 0 0 0 0-.46L3.345 6.014a.56.56 0 0 0-.302-.09m9.055.155a.56.56 0 0 0-.301.09l-2.6 1.689a.274.274 0 0 0 0 .46l2.6 1.693a.56.56 0 0 0 .603.003l2.607-1.692a.274.274 0 0 0 0-.46L12.4 6.167a.56.56 0 0 0-.302-.089m8.858.309a.56.56 0 0 0-.304.09L18.045 8.17a.274.274 0 0 0 0 .457l2.607 1.697a.56.56 0 0 0 .608 0l2.606-1.694a.274.274 0 0 0 0-.46L21.26 6.478a.56.56 0 0 0-.304-.09M7.702 8.945a.56.56 0 0 0-.303.09l-2.607 1.693a.274.274 0 0 0 0 .456L7.4 12.877a.56.56 0 0 0 .607 0l2.596-1.685a.274.274 0 0 0 0-.457l-2.596-1.7a.56.56 0 0 0-.304-.09m9.063.15a.56.56 0 0 0-.304.09l-2.606 1.694a.274.274 0 0 0 0 .457l2.606 1.692a.56.56 0 0 0 .608 0l2.606-1.692a.274.274 0 0 0 0-.457L17.07 9.186a.56.56 0 0 0-.304-.09M24 10.585a1.2 1.2 0 0 1-.351.611L12.973 18.13a1.83 1.83 0 0 1-1.992 0L.334 11.212a1.15 1.15 0 0 1-.333-.6v1.657a.74.74 0 0 0 .351.665l10.63 6.913a1.83 1.83 0 0 0 1.991 0l10.676-6.935a.74.74 0 0 0 .35-.643Zm-11.631 1.379a.56.56 0 0 0-.302.089L9.46 13.745a.274.274 0 0 0 0 .46l2.607 1.693a.56.56 0 0 0 .604 0l2.607-1.692a.274.274 0 0 0 0-.46l-2.607-1.694a.56.56 0 0 0-.302-.09m11.63 2.134a1.2 1.2 0 0 1-.35.607l-10.676 6.92a1.83 1.83 0 0 1-1.992 0L.334 14.722a1.15 1.15 0 0 1-.333-.597v1.654a.74.74 0 0 0 .351.66l10.63 6.917a1.83 1.83 0 0 0 1.991 0l10.676-6.934a.74.74 0 0 0 .35-.643z" }) + ] + } + ); +}); + +export { SiTorizon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.cjs new file mode 100644 index 000000000..64e6d6402 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7D4698"; +const SiTorproject = React__namespace.forwardRef(function SiTorproject2({ title = "Tor Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9124 17.1581zM17.9817 1.14a8.419 8.419 0 00-4.4695 3.1196A21.4277 21.4277 0 0116.512 0a12.4187 12.4187 0 00-3.9996 4.3595l.64-2.5497a14.6284 14.6284 0 00-1.8998 5.3494l1.1198.48a33.1264 33.1264 0 015.6094-6.4993zm.82 13.0686c-.82-1.5199-2.9197-3.0097-5.1295-4.3896-.51-.3-.61-1.4098-.53-1.8898l-.5099-.24a6.3693 6.3693 0 00.16 2.3898c.24.75.9999 1.5998 1.5198 2.7997a18.158 18.158 0 01.72 2.9197 13.1686 13.1686 0 01-.54 6.1193 4.2595 4.2595 0 01-1.4298 1.9198l-.24.16c4.1595.13 8.829-4.6295 5.9793-9.789zm-5.3995 4.7894a6.6193 6.6193 0 00-.42-1.9997 12.4087 12.4087 0 00-.7498-1.4399 6.2293 6.2293 0 01-.16-2.0698 6.9992 6.9992 0 00.32 1.9398 11.0788 11.0788 0 01.6899 1.2999 8.999 8.999 0 01.5899 2.2697 10.4289 10.4289 0 01-.35 2.9997 5.1094 5.1094 0 01-.4 1 4.8495 4.8495 0 00.7-1.52 12.4187 12.4187 0 00.36-4.4794 11.6087 11.6087 0 00-.46-1.8898c-.44-1.2-1.0699-2.2298-1.1499-2.4698a16.2082 16.2082 0 01-.39-3.3596 14.3084 14.3084 0 00.44 3.1197c.08.24.8 1.3798 1.2999 2.5797a7.4692 7.4692 0 01.48 1.7298 10.7188 10.7188 0 01-.53 5.1594 3.9996 3.9996 0 01-.35.82 3.7196 3.7196 0 00.8-1.41 16.1382 16.1382 0 000-8.109c-.42-1.2799-1.4099-2.3998-1.6499-3.1697a7.6792 7.6792 0 01-.08-2.3897l-2.1497-1c.56 1.44.6599 2.5598.08 2.9998-2.2598 1.8698-5.9994 3.9995-5.9994 7.1092 0 3.3196 1.9998 6.9092 7.0492 7.1792a12.9986 12.9986 0 01-1.6998-.56 3.4496 3.4496 0 01-1.3098-.8998l-.13-.14A9.339 9.339 0 016.233 18.658a2.7097 2.7097 0 01-.08-1.5199 6.6793 6.6793 0 013.2797-3.9995 10.099 10.099 0 00.9999-.61c.4699-.29.7699-1.5298 1.0798-2.5297-.16.77-.34 2.2598-1.0599 2.8197-.29.22-.6099.43-.9299.64-1.2798.8798-2.5397 1.6998-3.1696 3.8095a2.8197 2.8197 0 00.08 1.3799 9.319 9.319 0 001.9498 3.5096s.13.13.13.16a2.9997 2.9997 0 001.9397 1.1499c-.29-.16-.5299-.35-.7399-.48a4.3595 4.3595 0 01-1.9998-3.5996 3.6996 3.6996 0 012.1798-3.3896 3.5796 3.5796 0 001.6798-2.3798 3.1197 3.1197 0 01-1.5898 2.4998 3.9996 3.9996 0 00-2.0998 3.1696 5.6594 5.6594 0 001.8898 3.3996 4.0796 4.0796 0 001.5898.72 2.8897 2.8897 0 01-.4799-.5 4.9995 4.9995 0 01-.45-.9999 2.9997 2.9997 0 01-.27-.9999 3.5996 3.5996 0 01.64-2.3697 2.8397 2.8397 0 00.9-1.3499 2.8697 2.8697 0 01-.72 1.5099 2.9997 2.9997 0 00-.56 2.2397 4.0596 4.0596 0 00.29.93 3.9996 3.9996 0 00.51.9998c.18.21.26.37.5499.48a6.4793 6.4793 0 00.49-2.3498 9.519 9.519 0 000-1.7598c-.13-.7999-.4-1.5998-.4-2.2397.12.5899.43 1.3798.61 2.2097a5.6294 5.6294 0 01.11 1.7298c0 .56-.08 1-.16 1.4899a1.9998 1.9998 0 01-.45.9299 3.2097 3.2097 0 001.1099-1.9998 7.8991 7.8991 0 00.32-2.3598z" }) + ] + } + ); +}); + +exports.default = SiTorproject; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.d.ts new file mode 100644 index 000000000..0507e1adb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7D4698"; +declare const SiTorproject: IconType; +export { SiTorproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.mjs new file mode 100644 index 000000000..4dbbdd644 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTorproject.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7D4698"; +const SiTorproject = React.forwardRef(function SiTorproject2({ title = "Tor Project", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9124 17.1581zM17.9817 1.14a8.419 8.419 0 00-4.4695 3.1196A21.4277 21.4277 0 0116.512 0a12.4187 12.4187 0 00-3.9996 4.3595l.64-2.5497a14.6284 14.6284 0 00-1.8998 5.3494l1.1198.48a33.1264 33.1264 0 015.6094-6.4993zm.82 13.0686c-.82-1.5199-2.9197-3.0097-5.1295-4.3896-.51-.3-.61-1.4098-.53-1.8898l-.5099-.24a6.3693 6.3693 0 00.16 2.3898c.24.75.9999 1.5998 1.5198 2.7997a18.158 18.158 0 01.72 2.9197 13.1686 13.1686 0 01-.54 6.1193 4.2595 4.2595 0 01-1.4298 1.9198l-.24.16c4.1595.13 8.829-4.6295 5.9793-9.789zm-5.3995 4.7894a6.6193 6.6193 0 00-.42-1.9997 12.4087 12.4087 0 00-.7498-1.4399 6.2293 6.2293 0 01-.16-2.0698 6.9992 6.9992 0 00.32 1.9398 11.0788 11.0788 0 01.6899 1.2999 8.999 8.999 0 01.5899 2.2697 10.4289 10.4289 0 01-.35 2.9997 5.1094 5.1094 0 01-.4 1 4.8495 4.8495 0 00.7-1.52 12.4187 12.4187 0 00.36-4.4794 11.6087 11.6087 0 00-.46-1.8898c-.44-1.2-1.0699-2.2298-1.1499-2.4698a16.2082 16.2082 0 01-.39-3.3596 14.3084 14.3084 0 00.44 3.1197c.08.24.8 1.3798 1.2999 2.5797a7.4692 7.4692 0 01.48 1.7298 10.7188 10.7188 0 01-.53 5.1594 3.9996 3.9996 0 01-.35.82 3.7196 3.7196 0 00.8-1.41 16.1382 16.1382 0 000-8.109c-.42-1.2799-1.4099-2.3998-1.6499-3.1697a7.6792 7.6792 0 01-.08-2.3897l-2.1497-1c.56 1.44.6599 2.5598.08 2.9998-2.2598 1.8698-5.9994 3.9995-5.9994 7.1092 0 3.3196 1.9998 6.9092 7.0492 7.1792a12.9986 12.9986 0 01-1.6998-.56 3.4496 3.4496 0 01-1.3098-.8998l-.13-.14A9.339 9.339 0 016.233 18.658a2.7097 2.7097 0 01-.08-1.5199 6.6793 6.6793 0 013.2797-3.9995 10.099 10.099 0 00.9999-.61c.4699-.29.7699-1.5298 1.0798-2.5297-.16.77-.34 2.2598-1.0599 2.8197-.29.22-.6099.43-.9299.64-1.2798.8798-2.5397 1.6998-3.1696 3.8095a2.8197 2.8197 0 00.08 1.3799 9.319 9.319 0 001.9498 3.5096s.13.13.13.16a2.9997 2.9997 0 001.9397 1.1499c-.29-.16-.5299-.35-.7399-.48a4.3595 4.3595 0 01-1.9998-3.5996 3.6996 3.6996 0 012.1798-3.3896 3.5796 3.5796 0 001.6798-2.3798 3.1197 3.1197 0 01-1.5898 2.4998 3.9996 3.9996 0 00-2.0998 3.1696 5.6594 5.6594 0 001.8898 3.3996 4.0796 4.0796 0 001.5898.72 2.8897 2.8897 0 01-.4799-.5 4.9995 4.9995 0 01-.45-.9999 2.9997 2.9997 0 01-.27-.9999 3.5996 3.5996 0 01.64-2.3697 2.8397 2.8397 0 00.9-1.3499 2.8697 2.8697 0 01-.72 1.5099 2.9997 2.9997 0 00-.56 2.2397 4.0596 4.0596 0 00.29.93 3.9996 3.9996 0 00.51.9998c.18.21.26.37.5499.48a6.4793 6.4793 0 00.49-2.3498 9.519 9.519 0 000-1.7598c-.13-.7999-.4-1.5998-.4-2.2397.12.5899.43 1.3798.61 2.2097a5.6294 5.6294 0 01.11 1.7298c0 .56-.08 1-.16 1.4899a1.9998 1.9998 0 01-.45.9299 3.2097 3.2097 0 001.1099-1.9998 7.8991 7.8991 0 00.32-2.3598z" }) + ] + } + ); +}); + +export { SiTorproject as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.cjs new file mode 100644 index 000000000..5a7cf1f40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiToshiba = React__namespace.forwardRef(function SiToshiba2({ title = "Toshiba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.174 10.172c-1.065 0-1.578.187-1.65 1.148a8.92 8.92 0 00-.022.68c0 .218.004.451.021.68.073.96.586 1.148 1.65 1.148 1.065 0 1.58-.188 1.653-1.148.018-.229.022-.462.022-.68 0-.217-.005-.451-.022-.68-.073-.96-.588-1.148-1.652-1.148zm3.79 0c-.41 0-.82.04-.985.121-.322.156-.545.38-.545 1.02 0 .375.1.654.293.796.281.21.553.23 1.31.27.305.016.47.078.47.34 0 .332-.294.332-.564.332-.28 0-.366-.025-.46-.096-.084-.063-.105-.176-.106-.348h-.95c0 .487.01.884.47 1.084.41.18 1.67.18 2.048.014.328-.145.563-.337.563-.994 0-.455-.091-.735-.44-.941-.248-.147-.945-.17-1.298-.192-.258-.016-.356-.11-.356-.338 0-.297.285-.308.53-.308.202 0 .34.018.439.105.038.039.086.099.088.307h.947c0-.408-.014-.848-.455-1.051-.175-.08-.587-.121-.998-.121zm2.206.062v3.532h.996v-1.362h1.156v1.362h.996v-3.532h-.996v1.29h-1.156v-1.29h-.996zm4.023 0v3.532h1.002v-3.532h-1.002zm1.891 0v3.532h1.887c.869 0 1.162-.376 1.162-.952 0-.401-.092-.755-.643-.894.444-.114.574-.379.574-.762 0-.776-.487-.924-1.181-.924h-1.799zm4.373 0l-1.068 3.532h1.037l.187-.655h1.16l.19.655H24l-1.07-3.532h-1.473zM0 10.236v.881h1.055v2.65H2.11v-2.65h1.055v-.88H0zm5.174.762c.418 0 .633.063.66.607.004.085.01.201.01.395 0 .195-.006.31-.01.395-.027.544-.242.607-.66.607-.418 0-.633-.063-.66-.607A7.674 7.674 0 014.506 12c0-.194.003-.31.008-.395.027-.544.242-.607.66-.607zm12.906.045h.69c.18 0 .293.085.293.291 0 .176-.112.285-.293.285h-.69v-.576zm4.111.064h.006l.354 1.22h-.713l.353-1.22zm-4.11 1.207h.689c.279 0 .337.124.337.323s-.11.32-.337.32h-.69v-.643z" }) + ] + } + ); +}); + +exports.default = SiToshiba; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.d.ts new file mode 100644 index 000000000..bfd87a8fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiToshiba: IconType; +export { SiToshiba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.mjs new file mode 100644 index 000000000..2a8aab6af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToshiba.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiToshiba = React.forwardRef(function SiToshiba2({ title = "Toshiba", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.174 10.172c-1.065 0-1.578.187-1.65 1.148a8.92 8.92 0 00-.022.68c0 .218.004.451.021.68.073.96.586 1.148 1.65 1.148 1.065 0 1.58-.188 1.653-1.148.018-.229.022-.462.022-.68 0-.217-.005-.451-.022-.68-.073-.96-.588-1.148-1.652-1.148zm3.79 0c-.41 0-.82.04-.985.121-.322.156-.545.38-.545 1.02 0 .375.1.654.293.796.281.21.553.23 1.31.27.305.016.47.078.47.34 0 .332-.294.332-.564.332-.28 0-.366-.025-.46-.096-.084-.063-.105-.176-.106-.348h-.95c0 .487.01.884.47 1.084.41.18 1.67.18 2.048.014.328-.145.563-.337.563-.994 0-.455-.091-.735-.44-.941-.248-.147-.945-.17-1.298-.192-.258-.016-.356-.11-.356-.338 0-.297.285-.308.53-.308.202 0 .34.018.439.105.038.039.086.099.088.307h.947c0-.408-.014-.848-.455-1.051-.175-.08-.587-.121-.998-.121zm2.206.062v3.532h.996v-1.362h1.156v1.362h.996v-3.532h-.996v1.29h-1.156v-1.29h-.996zm4.023 0v3.532h1.002v-3.532h-1.002zm1.891 0v3.532h1.887c.869 0 1.162-.376 1.162-.952 0-.401-.092-.755-.643-.894.444-.114.574-.379.574-.762 0-.776-.487-.924-1.181-.924h-1.799zm4.373 0l-1.068 3.532h1.037l.187-.655h1.16l.19.655H24l-1.07-3.532h-1.473zM0 10.236v.881h1.055v2.65H2.11v-2.65h1.055v-.88H0zm5.174.762c.418 0 .633.063.66.607.004.085.01.201.01.395 0 .195-.006.31-.01.395-.027.544-.242.607-.66.607-.418 0-.633-.063-.66-.607A7.674 7.674 0 014.506 12c0-.194.003-.31.008-.395.027-.544.242-.607.66-.607zm12.906.045h.69c.18 0 .293.085.293.291 0 .176-.112.285-.293.285h-.69v-.576zm4.111.064h.006l.354 1.22h-.713l.353-1.22zm-4.11 1.207h.689c.279 0 .337.124.337.323s-.11.32-.337.32h-.69v-.643z" }) + ] + } + ); +}); + +export { SiToshiba as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.cjs new file mode 100644 index 000000000..ea060620e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#363636"; +const SiTotvs = React__namespace.forwardRef(function SiTotvs2({ title = "TOTVS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.385 0 0 5.339 0 12c0 6.614 5.385 12 12 12 6.614 0 12-5.386 12-12S18.614 0 12 0ZM8.648 3.813c1.275-.068 10.697 2.302 11.43 2.943.614.85.614 9.118 0 9.685-.284.095-2.127-.283-4.205-.755 0 2.031-.143 3.966-.426 4.203-.756.236-10.772-2.267-11.527-2.928-.615-.85-.615-9.119 0-9.686.283-.094 2.079.284 4.205.756 0-2.031.142-3.969.425-4.205a.448.448 0 0 1 .098-.013Zm-.523 4.265c-.048 2.362.095 4.961.425 5.434.426.378 4.158 1.418 7.276 2.174.047-2.41-.095-5.008-.426-5.481-.425-.378-4.157-1.418-7.275-2.127Z" }) + ] + } + ); +}); + +exports.default = SiTotvs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.d.ts new file mode 100644 index 000000000..00f6812c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#363636"; +declare const SiTotvs: IconType; +export { SiTotvs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.mjs new file mode 100644 index 000000000..d208f1443 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTotvs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#363636"; +const SiTotvs = React.forwardRef(function SiTotvs2({ title = "TOTVS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.385 0 0 5.339 0 12c0 6.614 5.385 12 12 12 6.614 0 12-5.386 12-12S18.614 0 12 0ZM8.648 3.813c1.275-.068 10.697 2.302 11.43 2.943.614.85.614 9.118 0 9.685-.284.095-2.127-.283-4.205-.755 0 2.031-.143 3.966-.426 4.203-.756.236-10.772-2.267-11.527-2.928-.615-.85-.615-9.119 0-9.686.283-.094 2.079.284 4.205.756 0-2.031.142-3.969.425-4.205a.448.448 0 0 1 .098-.013Zm-.523 4.265c-.048 2.362.095 4.961.425 5.434.426.378 4.158 1.418 7.276 2.174.047-2.41-.095-5.008-.426-5.481-.425-.378-4.157-1.418-7.275-2.127Z" }) + ] + } + ); +}); + +export { SiTotvs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.cjs new file mode 100644 index 000000000..424386841 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#231F20"; +const SiTourbox = React__namespace.forwardRef(function SiTourbox2({ title = "TourBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.401 9.664c0-.28.3-.506.898-.668a6.73 6.73 0 0 1 1.716-.202 6.65 6.65 0 0 1 1.715.202c.605.164.904.387.904.668v1.632c0 .283-.299.506-.904.67-.5.138-1.072.204-1.715.204a6.554 6.554 0 0 1-1.716-.203c-.6-.165-.898-.388-.898-.67Zm2.614 3.417c2.368 0 3.55-.595 3.55-1.785V9.664c0-1.19-1.182-1.784-3.55-1.784-2.363 0-3.545.597-3.545 1.784v1.632c0 1.19 1.182 1.787 3.545 1.787m10.542-1.75V7.906h-.931v3.431c0 .24-.127.43-.38.557-.425.218-1.024.327-1.8.327a4.58 4.58 0 0 1-1.43-.207c-.497-.166-.747-.39-.747-.677v-3.43h-.931v3.423c0 .658.369 1.14 1.108 1.449.544.222 1.21.339 1.999.339a5.314 5.314 0 0 0 2.004-.332c.739-.303 1.108-.79 1.108-1.456m2.262-3.264h.008a.028.028 0 0 0 .02-.01zm-.637 1.592c0-.235.126-.415.384-.552.453-.238 1.106-.354 1.959-.354.37 0 .766.04 1.196.127L24 8.01a6.91 6.91 0 0 0-1.475-.13c-.64 0-1.207.063-1.696.185-1.062.296-1.594.825-1.594 1.594v3.424h.947zM5.839 14.19a7.616 7.616 0 0 0-1.46.134l.182.86a7.31 7.31 0 0 1 1.275-.134c.524 0 1.017.07 1.493.213.572.167.86.392.86.665v1.63c0 .278-.27.498-.81.658a5.552 5.552 0 0 1-1.54.192 5.516 5.516 0 0 1-1.54-.195c-.545-.16-.81-.38-.81-.658v-4.498c.21.01.42.025.65.025v-1.063a11.923 11.923 0 0 1-1.709-.25c-.875-.196-1.31-.447-1.31-.75V8.234h3.03V7.192H1.118V4.697H0v6.32c0 1.072.893 1.722 2.65 1.958v4.59c0 1.16 1.062 1.738 3.19 1.738 2.125 0 3.188-.577 3.188-1.738v-1.632c0-1.164-1.063-1.746-3.188-1.746m10.132 3.3c0 .283-.301.505-.903.67a6.762 6.762 0 0 1-1.716.202 6.73 6.73 0 0 1-1.716-.202c-.6-.165-.9-.387-.9-.67v-1.633c0-.28.3-.506.9-.668a6.58 6.58 0 0 1 1.716-.202c.64 0 1.215.065 1.716.202.602.165.903.387.903.668zm-2.62-3.417c-2.366 0-3.547.597-3.547 1.784v1.632c0 1.19 1.181 1.787 3.548 1.787 2.366 0 3.548-.598 3.548-1.787v-1.632c0-1.19-1.182-1.784-3.548-1.784m9.669.514c0 .296-.342.607-1.025.934-.564.235-.995.404-1.28.506a17.597 17.597 0 0 1-1.286-.506c-.683-.33-1.02-.638-1.02-.932v-.49h-.93v.49c0 .446.222.848.67 1.2.258.21.683.453 1.28.728-1.298.668-1.948 1.44-1.948 2.308v.45h.928v-.45c0-.354.3-.73.904-1.123a6.772 6.772 0 0 1 1.41-.704c.523.2.988.43 1.396.704.6.394.9.769.9 1.123v.45h.932v-.45c0-.868-.648-1.64-1.95-2.308.6-.275 1.026-.518 1.284-.728.443-.354.666-.754.666-1.2v-.49h-.931zm0 0" }) + ] + } + ); +}); + +exports.default = SiTourbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.d.ts new file mode 100644 index 000000000..044606d3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#231F20"; +declare const SiTourbox: IconType; +export { SiTourbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.mjs new file mode 100644 index 000000000..39d03aafc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTourbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#231F20"; +const SiTourbox = React.forwardRef(function SiTourbox2({ title = "TourBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.401 9.664c0-.28.3-.506.898-.668a6.73 6.73 0 0 1 1.716-.202 6.65 6.65 0 0 1 1.715.202c.605.164.904.387.904.668v1.632c0 .283-.299.506-.904.67-.5.138-1.072.204-1.715.204a6.554 6.554 0 0 1-1.716-.203c-.6-.165-.898-.388-.898-.67Zm2.614 3.417c2.368 0 3.55-.595 3.55-1.785V9.664c0-1.19-1.182-1.784-3.55-1.784-2.363 0-3.545.597-3.545 1.784v1.632c0 1.19 1.182 1.787 3.545 1.787m10.542-1.75V7.906h-.931v3.431c0 .24-.127.43-.38.557-.425.218-1.024.327-1.8.327a4.58 4.58 0 0 1-1.43-.207c-.497-.166-.747-.39-.747-.677v-3.43h-.931v3.423c0 .658.369 1.14 1.108 1.449.544.222 1.21.339 1.999.339a5.314 5.314 0 0 0 2.004-.332c.739-.303 1.108-.79 1.108-1.456m2.262-3.264h.008a.028.028 0 0 0 .02-.01zm-.637 1.592c0-.235.126-.415.384-.552.453-.238 1.106-.354 1.959-.354.37 0 .766.04 1.196.127L24 8.01a6.91 6.91 0 0 0-1.475-.13c-.64 0-1.207.063-1.696.185-1.062.296-1.594.825-1.594 1.594v3.424h.947zM5.839 14.19a7.616 7.616 0 0 0-1.46.134l.182.86a7.31 7.31 0 0 1 1.275-.134c.524 0 1.017.07 1.493.213.572.167.86.392.86.665v1.63c0 .278-.27.498-.81.658a5.552 5.552 0 0 1-1.54.192 5.516 5.516 0 0 1-1.54-.195c-.545-.16-.81-.38-.81-.658v-4.498c.21.01.42.025.65.025v-1.063a11.923 11.923 0 0 1-1.709-.25c-.875-.196-1.31-.447-1.31-.75V8.234h3.03V7.192H1.118V4.697H0v6.32c0 1.072.893 1.722 2.65 1.958v4.59c0 1.16 1.062 1.738 3.19 1.738 2.125 0 3.188-.577 3.188-1.738v-1.632c0-1.164-1.063-1.746-3.188-1.746m10.132 3.3c0 .283-.301.505-.903.67a6.762 6.762 0 0 1-1.716.202 6.73 6.73 0 0 1-1.716-.202c-.6-.165-.9-.387-.9-.67v-1.633c0-.28.3-.506.9-.668a6.58 6.58 0 0 1 1.716-.202c.64 0 1.215.065 1.716.202.602.165.903.387.903.668zm-2.62-3.417c-2.366 0-3.547.597-3.547 1.784v1.632c0 1.19 1.181 1.787 3.548 1.787 2.366 0 3.548-.598 3.548-1.787v-1.632c0-1.19-1.182-1.784-3.548-1.784m9.669.514c0 .296-.342.607-1.025.934-.564.235-.995.404-1.28.506a17.597 17.597 0 0 1-1.286-.506c-.683-.33-1.02-.638-1.02-.932v-.49h-.93v.49c0 .446.222.848.67 1.2.258.21.683.453 1.28.728-1.298.668-1.948 1.44-1.948 2.308v.45h.928v-.45c0-.354.3-.73.904-1.123a6.772 6.772 0 0 1 1.41-.704c.523.2.988.43 1.396.704.6.394.9.769.9 1.123v.45h.932v-.45c0-.868-.648-1.64-1.95-2.308.6-.275 1.026-.518 1.284-.728.443-.354.666-.754.666-1.2v-.49h-.931zm0 0" }) + ] + } + ); +}); + +export { SiTourbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTower.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTower.cjs new file mode 100644 index 000000000..93e7227ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTower.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00CAF4"; +const SiTower = React__namespace.forwardRef(function SiTower2({ title = "Tower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.733 11.831c.324 0 .442.028.564.084a.732.732 0 0 1 .3.249c.077.11.126.22.186.538l.265 1.415.015.081H2.937l.015-.08.265-1.416c.06-.318.109-.429.186-.538a.732.732 0 0 1 .3-.25c.122-.055.24-.083.564-.083zm1.149 3.052-1.227 1.743c-.174.246-.248.325-.343.401a.894.894 0 0 1-.315.163c-.117.034-.224.05-.525.05H5.528c-.301 0-.408-.016-.525-.05a.894.894 0 0 1-.315-.163c-.095-.076-.169-.155-.343-.401l-1.227-1.743-.007-.01h17.778a1.073 1.073 0 0 1-.007.01zM2.232 0h19.536c.482 0 .657.05.834.144a.983.983 0 0 1 .408.41c.095.176.145.35.145.833v.945c0 .482-.05.657-.145.833a.983.983 0 0 1-.408.409c-.177.094-.352.144-.834.144H2.232c-.482 0-.657-.05-.834-.144a.983.983 0 0 1-.408-.41c-.095-.175-.145-.35-.145-.832v-.945C.845.904.895.73.99.553a.983.983 0 0 1 .408-.409C1.575.05 1.75 0 2.232 0Zm5.273 4.733 1.028 6.422H4.637L2.75 4.731Zm8.651 0-1.088 6.422H9.209L8.121 4.732Zm5.094.002-1.88 6.422H15.74l1.025-6.423zM8.106 18.254a17.992 17.992 0 0 1 1.567 5.45.338.338 0 0 0 .335.296h3.972c.17 0 .313-.127.334-.296a17.993 17.993 0 0 1 1.567-5.45z" }) + ] + } + ); +}); + +exports.default = SiTower; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTower.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTower.d.ts new file mode 100644 index 000000000..aa6124c93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTower.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00CAF4"; +declare const SiTower: IconType; +export { SiTower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTower.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTower.mjs new file mode 100644 index 000000000..4fd9b2990 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTower.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00CAF4"; +const SiTower = React.forwardRef(function SiTower2({ title = "Tower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.733 11.831c.324 0 .442.028.564.084a.732.732 0 0 1 .3.249c.077.11.126.22.186.538l.265 1.415.015.081H2.937l.015-.08.265-1.416c.06-.318.109-.429.186-.538a.732.732 0 0 1 .3-.25c.122-.055.24-.083.564-.083zm1.149 3.052-1.227 1.743c-.174.246-.248.325-.343.401a.894.894 0 0 1-.315.163c-.117.034-.224.05-.525.05H5.528c-.301 0-.408-.016-.525-.05a.894.894 0 0 1-.315-.163c-.095-.076-.169-.155-.343-.401l-1.227-1.743-.007-.01h17.778a1.073 1.073 0 0 1-.007.01zM2.232 0h19.536c.482 0 .657.05.834.144a.983.983 0 0 1 .408.41c.095.176.145.35.145.833v.945c0 .482-.05.657-.145.833a.983.983 0 0 1-.408.409c-.177.094-.352.144-.834.144H2.232c-.482 0-.657-.05-.834-.144a.983.983 0 0 1-.408-.41c-.095-.175-.145-.35-.145-.832v-.945C.845.904.895.73.99.553a.983.983 0 0 1 .408-.409C1.575.05 1.75 0 2.232 0Zm5.273 4.733 1.028 6.422H4.637L2.75 4.731Zm8.651 0-1.088 6.422H9.209L8.121 4.732Zm5.094.002-1.88 6.422H15.74l1.025-6.423zM8.106 18.254a17.992 17.992 0 0 1 1.567 5.45.338.338 0 0 0 .335.296h3.972c.17 0 .313-.127.334-.296a17.993 17.993 0 0 1 1.567-5.45z" }) + ] + } + ); +}); + +export { SiTower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.cjs new file mode 100644 index 000000000..106705095 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB0A1E"; +const SiToyota = React__namespace.forwardRef(function SiToyota2({ title = "Toyota", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3.848C5.223 3.848 0 7.298 0 12c0 4.702 5.224 8.152 12 8.152S24 16.702 24 12c0-4.702-5.223-8.152-12-8.152zm7.334 3.839c0 1.08-1.725 1.913-4.488 2.246-.26-2.58-1.005-4.279-1.963-4.913 2.948.184 6.45 1.227 6.45 2.667zM12 16.401c-.96 0-1.746-1.5-1.808-4.389.577.047 1.18.072 1.808.072.628 0 1.23-.025 1.807-.072-.061 2.89-.847 4.389-1.807 4.389zm0-6.308c-.59 0-1.155-.019-1.69-.054.261-1.728.92-3.15 1.69-3.15.77 0 1.428 1.422 1.689 3.15-.535.034-1.099.054-1.689.054zm-.882-5.075c-.956.633-1.706 2.333-1.964 4.915C6.391 9.6 4.665 8.767 4.665 7.687c0-1.44 3.504-2.49 6.453-2.669zM2.037 11.68a5.265 5.265 0 011.048-3.164c.27 1.547 2.522 2.881 5.972 3.37V12c0 3.772.879 6.203 2.087 6.97-5.107-.321-9.107-3.48-9.107-7.29zm10.823 7.29c1.207-.767 2.087-3.198 2.087-6.97v-.115c3.447-.488 5.704-1.826 5.972-3.37a5.26 5.26 0 011.049 3.165c-.004 3.81-4.008 6.969-9.109 7.29z" }) + ] + } + ); +}); + +exports.default = SiToyota; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.d.ts new file mode 100644 index 000000000..84e43ab34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB0A1E"; +declare const SiToyota: IconType; +export { SiToyota as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.mjs new file mode 100644 index 000000000..0ca479a46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiToyota.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB0A1E"; +const SiToyota = React.forwardRef(function SiToyota2({ title = "Toyota", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 3.848C5.223 3.848 0 7.298 0 12c0 4.702 5.224 8.152 12 8.152S24 16.702 24 12c0-4.702-5.223-8.152-12-8.152zm7.334 3.839c0 1.08-1.725 1.913-4.488 2.246-.26-2.58-1.005-4.279-1.963-4.913 2.948.184 6.45 1.227 6.45 2.667zM12 16.401c-.96 0-1.746-1.5-1.808-4.389.577.047 1.18.072 1.808.072.628 0 1.23-.025 1.807-.072-.061 2.89-.847 4.389-1.807 4.389zm0-6.308c-.59 0-1.155-.019-1.69-.054.261-1.728.92-3.15 1.69-3.15.77 0 1.428 1.422 1.689 3.15-.535.034-1.099.054-1.689.054zm-.882-5.075c-.956.633-1.706 2.333-1.964 4.915C6.391 9.6 4.665 8.767 4.665 7.687c0-1.44 3.504-2.49 6.453-2.669zM2.037 11.68a5.265 5.265 0 011.048-3.164c.27 1.547 2.522 2.881 5.972 3.37V12c0 3.772.879 6.203 2.087 6.97-5.107-.321-9.107-3.48-9.107-7.29zm10.823 7.29c1.207-.767 2.087-3.198 2.087-6.97v-.115c3.447-.488 5.704-1.826 5.972-3.37a5.26 5.26 0 011.049 3.165c-.004 3.81-4.008 6.969-9.109 7.29z" }) + ] + } + ); +}); + +export { SiToyota as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.cjs new file mode 100644 index 000000000..4926e3ec4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4ACBD6"; +const SiTplink = React__namespace.forwardRef(function SiTplink2({ title = "TP-Link", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.185 0C10.218 0 6.25 3.984 6.25 8.903V10.8h4.99V8.903c0-2.135 1.736-3.863 3.946-3.863 2.187 0 3.708 1.536 3.708 3.815 0 2.257-1.64 3.912-3.827 3.912h-1.878v5.039h1.878c4.874 0 8.819-4.007 8.819-8.952C23.885 3.72 20.2 0 15.185 0zM.115 12.6v4.103c0 .624.523 1.248 1.236 1.248h4.753v4.801c0 .624.523 1.248 1.236 1.248h4.065V12.6Z" }) + ] + } + ); +}); + +exports.default = SiTplink; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.d.ts new file mode 100644 index 000000000..79a4673bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4ACBD6"; +declare const SiTplink: IconType; +export { SiTplink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.mjs new file mode 100644 index 000000000..da343ae64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTplink.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4ACBD6"; +const SiTplink = React.forwardRef(function SiTplink2({ title = "TP-Link", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.185 0C10.218 0 6.25 3.984 6.25 8.903V10.8h4.99V8.903c0-2.135 1.736-3.863 3.946-3.863 2.187 0 3.708 1.536 3.708 3.815 0 2.257-1.64 3.912-3.827 3.912h-1.878v5.039h1.878c4.874 0 8.819-4.007 8.819-8.952C23.885 3.72 20.2 0 15.185 0zM.115 12.6v4.103c0 .624.523 1.248 1.236 1.248h4.753v4.801c0 .624.523 1.248 1.236 1.248h4.065V12.6Z" }) + ] + } + ); +}); + +export { SiTplink as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.cjs new file mode 100644 index 000000000..8c5e2d291 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC107"; +const SiTqdm = React__namespace.forwardRef(function SiTqdm2({ title = "tqdm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 14.562a2.338 2.338 0 1 1 0-4.677 2.338 2.338 0 0 1 0 4.677zM12 0C5.392 0 .036 5.473.036 12.224c0 5.579 3.659 10.281 8.658 11.746.428.126.87-.162.962-.598l.141-.669c.086-.41-.169-.799-.57-.92-4.039-1.221-6.986-5.037-6.986-9.559 0-5.507 4.37-9.972 9.76-9.972s9.76 4.464 9.76 9.972c0 4.515-2.938 8.325-6.967 9.552-.4.122-.654.511-.567.919l.142.67c.093.437.535.723.963.596 4.986-1.474 8.633-6.169 8.633-11.738C23.964 5.473 18.608 0 12 0zm7.152 12.224c0-4.04-3.202-7.315-7.152-7.315s-7.152 3.275-7.152 7.315c0 3.191 1.999 5.903 4.786 6.902a.79.79 0 0 0 1.037-.582l.042-.199a.772.772 0 0 0-.489-.889c-2.118-.752-3.639-2.809-3.639-5.232 0-3.059 2.424-5.539 5.415-5.539s5.415 2.48 5.415 5.539c0 2.418-1.516 4.472-3.628 5.227a.772.772 0 0 0-.487.89l.042.199a.791.791 0 0 0 1.038.58c2.78-1.003 4.772-3.71 4.772-6.896z" }) + ] + } + ); +}); + +exports.default = SiTqdm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.d.ts new file mode 100644 index 000000000..a9f92bce1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC107"; +declare const SiTqdm: IconType; +export { SiTqdm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.mjs new file mode 100644 index 000000000..ca276cdfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTqdm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC107"; +const SiTqdm = React.forwardRef(function SiTqdm2({ title = "tqdm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 14.562a2.338 2.338 0 1 1 0-4.677 2.338 2.338 0 0 1 0 4.677zM12 0C5.392 0 .036 5.473.036 12.224c0 5.579 3.659 10.281 8.658 11.746.428.126.87-.162.962-.598l.141-.669c.086-.41-.169-.799-.57-.92-4.039-1.221-6.986-5.037-6.986-9.559 0-5.507 4.37-9.972 9.76-9.972s9.76 4.464 9.76 9.972c0 4.515-2.938 8.325-6.967 9.552-.4.122-.654.511-.567.919l.142.67c.093.437.535.723.963.596 4.986-1.474 8.633-6.169 8.633-11.738C23.964 5.473 18.608 0 12 0zm7.152 12.224c0-4.04-3.202-7.315-7.152-7.315s-7.152 3.275-7.152 7.315c0 3.191 1.999 5.903 4.786 6.902a.79.79 0 0 0 1.037-.582l.042-.199a.772.772 0 0 0-.489-.889c-2.118-.752-3.639-2.809-3.639-5.232 0-3.059 2.424-5.539 5.415-5.539s5.415 2.48 5.415 5.539c0 2.418-1.516 4.472-3.628 5.227a.772.772 0 0 0-.487.89l.042.199a.791.791 0 0 0 1.038.58c2.78-1.003 4.772-3.71 4.772-6.896z" }) + ] + } + ); +}); + +export { SiTqdm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.cjs new file mode 100644 index 000000000..7cc192b34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTraccar = React__namespace.forwardRef(function SiTraccar2({ title = "Traccar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.0011 1.6096C.2624 4.9226-1.7038 12.2603 1.6096 17.9989c3.313 5.7387 10.6507 7.7049 16.3893 4.3916 5.7387-3.313 7.7049-10.6507 4.3916-16.3894C19.0775.2624 11.7398-1.704 6.0011 1.6096m.7057 1.2224c5.0637-2.9233 11.538-1.1884 14.4616 3.8748 2.9232 5.0636 1.1884 11.5379-3.8748 14.4616-5.0636 2.9232-11.538 1.1884-14.4616-3.8748C-.0912 12.2299 1.6436 5.7556 6.7068 2.832m3.9141 14.3151a3.7678 3.7678 0 1 1-3.768-6.5262l1.884 3.2631Zm5.7255-11.3953-1.1763 1.495c.6649.5112 1.2792 1.1559 1.7246 1.9274s.6967 1.6258.8069 2.4573l1.8828-.2712c-.1405-1.074-.4828-2.1316-1.0581-3.128-.5753-.9965-1.3201-1.8218-2.1799-2.4805M14.074 8.7632l-1.1763 1.4949c.2745.216.5484.479.7338.8.1853.321.2761.6897.3259 1.0355l1.8828-.2713c-.0802-.5881-.2619-1.1608-.5769-1.7064-.3154-.5455-.7201-.9896-1.1892-1.353Zm-3.8317 3.708a.942.942 0 1 0 1.884 0 .942.942 0 1 0-1.884 0" }) + ] + } + ); +}); + +exports.default = SiTraccar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.d.ts new file mode 100644 index 000000000..a4cc301df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTraccar: IconType; +export { SiTraccar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.mjs new file mode 100644 index 000000000..fed50d99a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraccar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTraccar = React.forwardRef(function SiTraccar2({ title = "Traccar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.0011 1.6096C.2624 4.9226-1.7038 12.2603 1.6096 17.9989c3.313 5.7387 10.6507 7.7049 16.3893 4.3916 5.7387-3.313 7.7049-10.6507 4.3916-16.3894C19.0775.2624 11.7398-1.704 6.0011 1.6096m.7057 1.2224c5.0637-2.9233 11.538-1.1884 14.4616 3.8748 2.9232 5.0636 1.1884 11.5379-3.8748 14.4616-5.0636 2.9232-11.538 1.1884-14.4616-3.8748C-.0912 12.2299 1.6436 5.7556 6.7068 2.832m3.9141 14.3151a3.7678 3.7678 0 1 1-3.768-6.5262l1.884 3.2631Zm5.7255-11.3953-1.1763 1.495c.6649.5112 1.2792 1.1559 1.7246 1.9274s.6967 1.6258.8069 2.4573l1.8828-.2712c-.1405-1.074-.4828-2.1316-1.0581-3.128-.5753-.9965-1.3201-1.8218-2.1799-2.4805M14.074 8.7632l-1.1763 1.4949c.2745.216.5484.479.7338.8.1853.321.2761.6897.3259 1.0355l1.8828-.2713c-.0802-.5881-.2619-1.1608-.5769-1.7064-.3154-.5455-.7201-.9896-1.1892-1.353Zm-3.8317 3.708a.942.942 0 1 0 1.884 0 .942.942 0 1 0-1.884 0" }) + ] + } + ); +}); + +export { SiTraccar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.cjs new file mode 100644 index 000000000..17d7fe005 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#131622"; +const SiTradingview = React__namespace.forwardRef(function SiTradingview2({ title = "TradingView", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.8654 8.2789c0 1.3541-1.0978 2.4519-2.452 2.4519-1.354 0-2.4519-1.0978-2.4519-2.452 0-1.354 1.0978-2.4518 2.452-2.4518 1.3541 0 2.4519 1.0977 2.4519 2.4519zM9.75 6H0v4.9038h4.8462v7.2692H9.75Zm8.5962 0H24l-5.1058 12.173h-5.6538z" }) + ] + } + ); +}); + +exports.default = SiTradingview; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.d.ts new file mode 100644 index 000000000..6694be637 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#131622"; +declare const SiTradingview: IconType; +export { SiTradingview as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.mjs new file mode 100644 index 000000000..1a2f2be92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTradingview.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#131622"; +const SiTradingview = React.forwardRef(function SiTradingview2({ title = "TradingView", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.8654 8.2789c0 1.3541-1.0978 2.4519-2.452 2.4519-1.354 0-2.4519-1.0978-2.4519-2.452 0-1.354 1.0978-2.4518 2.452-2.4518 1.3541 0 2.4519 1.0977 2.4519 2.4519zM9.75 6H0v4.9038h4.8462v7.2692H9.75Zm8.5962 0H24l-5.1058 12.173h-5.6538z" }) + ] + } + ); +}); + +export { SiTradingview as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.cjs new file mode 100644 index 000000000..4f09e5bae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9D0FB0"; +const SiTraefikmesh = React__namespace.forwardRef(function SiTraefikmesh2({ title = "Traefik Mesh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m8.646 4.738.034.02 2.945 1.66a.66.66 0 0 0 .65 0l2.92-1.644a.992.992 0 0 1 1.008 1.71l-.033.02-1.688.952a.33.33 0 0 0 0 .574l4.555 2.57a.66.66 0 0 0 .65 0l2.815-1.59a.993.993 0 0 1 1.01 1.71l-.035.02-1.585.89a.33.33 0 0 0 0 .578l1.594.897a.992.993 0 0 1-.94 1.748l-.035-.02-2.826-1.591a.66.66 0 0 0-.65 0l-4.605 2.595a.33.33 0 0 0 0 .575l1.905 1.072a.993.993 0 0 1-.94 1.748l-.035-.018-3.133-1.767a.66.66 0 0 0-.65 0L8.416 19.23a.992.992 0 0 1-1.006-1.71l.033-.02 1.93-1.088a.33.33 0 0 0 0-.575l-4.564-2.572a.66.66 0 0 0-.65 0l-2.689 1.51a.993.993 0 0 1-1.005-1.711l.034-.018 1.452-.817a.33.33 0 0 0 0-.577l-1.45-.817a.992.992 0 0 1 .941-1.746l.033.018 2.685 1.515a.66.66 0 0 0 .65 0l4.607-2.596a.33.33 0 0 0 0-.576l-1.711-.963a.992.993 0 0 1 .94-1.748Zm2.977 4.324-4.609 2.59a.33.33 0 0 0 0 .58l4.563 2.57a.66.66 0 0 0 .65 0l4.606-2.595a.33.33 0 0 0 0-.577l-4.558-2.57a.66.66 0 0 0-.65 0z" }) + ] + } + ); +}); + +exports.default = SiTraefikmesh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.d.ts new file mode 100644 index 000000000..cb1667f69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9D0FB0"; +declare const SiTraefikmesh: IconType; +export { SiTraefikmesh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.mjs new file mode 100644 index 000000000..cefb64cb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikmesh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9D0FB0"; +const SiTraefikmesh = React.forwardRef(function SiTraefikmesh2({ title = "Traefik Mesh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m8.646 4.738.034.02 2.945 1.66a.66.66 0 0 0 .65 0l2.92-1.644a.992.992 0 0 1 1.008 1.71l-.033.02-1.688.952a.33.33 0 0 0 0 .574l4.555 2.57a.66.66 0 0 0 .65 0l2.815-1.59a.993.993 0 0 1 1.01 1.71l-.035.02-1.585.89a.33.33 0 0 0 0 .578l1.594.897a.992.993 0 0 1-.94 1.748l-.035-.02-2.826-1.591a.66.66 0 0 0-.65 0l-4.605 2.595a.33.33 0 0 0 0 .575l1.905 1.072a.993.993 0 0 1-.94 1.748l-.035-.018-3.133-1.767a.66.66 0 0 0-.65 0L8.416 19.23a.992.992 0 0 1-1.006-1.71l.033-.02 1.93-1.088a.33.33 0 0 0 0-.575l-4.564-2.572a.66.66 0 0 0-.65 0l-2.689 1.51a.993.993 0 0 1-1.005-1.711l.034-.018 1.452-.817a.33.33 0 0 0 0-.577l-1.45-.817a.992.992 0 0 1 .941-1.746l.033.018 2.685 1.515a.66.66 0 0 0 .65 0l4.607-2.596a.33.33 0 0 0 0-.576l-1.711-.963a.992.993 0 0 1 .94-1.748Zm2.977 4.324-4.609 2.59a.33.33 0 0 0 0 .58l4.563 2.57a.66.66 0 0 0 .65 0l4.606-2.595a.33.33 0 0 0 0-.577l-4.558-2.57a.66.66 0 0 0-.65 0z" }) + ] + } + ); +}); + +export { SiTraefikmesh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.cjs new file mode 100644 index 000000000..440e4cafc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#24A1C1"; +const SiTraefikproxy = React__namespace.forwardRef(function SiTraefikproxy2({ title = "Traefik Proxy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1.19c1.088 0 2.056.768 2.056 1.714 0 .947-.921 1.715-2.056 1.715-.13 0-.3-.022-.509-.064a.685.685 0 0 0-.475.076l-7.37 4.195a.344.344 0 0 0 .001.597l7.99 4.49c.208.116.461.116.669 0l8.034-4.468a.343.343 0 0 0 .003-.598l-2.507-1.424a.683.683 0 0 0-.67-.003l-2.647 1.468a.234.234 0 0 0-.119.18l-.001.025c0 .946-.921 1.714-2.056 1.714s-2.056-.768-2.056-1.714c0-.947.921-1.715 2.056-1.715.042 0 .09.002.145.007l.087.008.096.013a.685.685 0 0 0 .425-.08l3.913-2.173c.3-.166.662-.171.965-.017l.04.023 5.465 3.104c.686.39.693 1.368.03 1.773l-.037.021-3.656 2.033a.343.343 0 0 0 .007.604l3.62 1.906c.72.378.736 1.402.03 1.804l-10.995 6.272a1.03 1.03 0 0 1-1.019 0L.526 16.43a1.03 1.03 0 0 1 .034-1.806l3.66-1.911a.343.343 0 0 0 .01-.603L.524 10.029a1.03 1.03 0 0 1-.041-1.77l.036-.021L9.618 3.06a.688.688 0 0 0 .308-.369l.011-.036c.32-.952 1.046-1.466 2.063-1.466Zm5.076 12.63-4.492 2.586-.041.022c-.306.158-.671.152-.973-.018l-4.478-2.527a.682.682 0 0 0-.65-.01L3.86 15.224a.343.343 0 0 0-.012.602l7.887 4.515c.21.12.467.121.677 0l7.956-4.547a.343.343 0 0 0-.01-.602l-2.623-1.384a.683.683 0 0 0-.659.012z" }) + ] + } + ); +}); + +exports.default = SiTraefikproxy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.d.ts new file mode 100644 index 000000000..b200051b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#24A1C1"; +declare const SiTraefikproxy: IconType; +export { SiTraefikproxy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.mjs new file mode 100644 index 000000000..3cfe50e0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTraefikproxy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#24A1C1"; +const SiTraefikproxy = React.forwardRef(function SiTraefikproxy2({ title = "Traefik Proxy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 1.19c1.088 0 2.056.768 2.056 1.714 0 .947-.921 1.715-2.056 1.715-.13 0-.3-.022-.509-.064a.685.685 0 0 0-.475.076l-7.37 4.195a.344.344 0 0 0 .001.597l7.99 4.49c.208.116.461.116.669 0l8.034-4.468a.343.343 0 0 0 .003-.598l-2.507-1.424a.683.683 0 0 0-.67-.003l-2.647 1.468a.234.234 0 0 0-.119.18l-.001.025c0 .946-.921 1.714-2.056 1.714s-2.056-.768-2.056-1.714c0-.947.921-1.715 2.056-1.715.042 0 .09.002.145.007l.087.008.096.013a.685.685 0 0 0 .425-.08l3.913-2.173c.3-.166.662-.171.965-.017l.04.023 5.465 3.104c.686.39.693 1.368.03 1.773l-.037.021-3.656 2.033a.343.343 0 0 0 .007.604l3.62 1.906c.72.378.736 1.402.03 1.804l-10.995 6.272a1.03 1.03 0 0 1-1.019 0L.526 16.43a1.03 1.03 0 0 1 .034-1.806l3.66-1.911a.343.343 0 0 0 .01-.603L.524 10.029a1.03 1.03 0 0 1-.041-1.77l.036-.021L9.618 3.06a.688.688 0 0 0 .308-.369l.011-.036c.32-.952 1.046-1.466 2.063-1.466Zm5.076 12.63-4.492 2.586-.041.022c-.306.158-.671.152-.973-.018l-4.478-2.527a.682.682 0 0 0-.65-.01L3.86 15.224a.343.343 0 0 0-.012.602l7.887 4.515c.21.12.467.121.677 0l7.956-4.547a.343.343 0 0 0-.01-.602l-2.623-1.384a.683.683 0 0 0-.659.012z" }) + ] + } + ); +}); + +export { SiTraefikproxy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.cjs new file mode 100644 index 000000000..d259ddd86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCD00"; +const SiTrailforks = React__namespace.forwardRef(function SiTrailforks2({ title = "Trailforks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1.608 0 22.392h24zm-1.292 5.698h2.584v5.885l2.664 1.917v5.587h-2.204V16.05L12 14.788l-1.752 1.262v4.645H8.044v-5.587l2.664-1.917z" }) + ] + } + ); +}); + +exports.default = SiTrailforks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.d.ts new file mode 100644 index 000000000..f85eda9b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCD00"; +declare const SiTrailforks: IconType; +export { SiTrailforks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.mjs new file mode 100644 index 000000000..898b6050f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrailforks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCD00"; +const SiTrailforks = React.forwardRef(function SiTrailforks2({ title = "Trailforks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 1.608 0 22.392h24zm-1.292 5.698h2.584v5.885l2.664 1.917v5.587h-2.204V16.05L12 14.788l-1.752 1.262v4.645H8.044v-5.587l2.664-1.917z" }) + ] + } + ); +}); + +export { SiTrailforks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.cjs new file mode 100644 index 000000000..5c88d835b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA291C"; +const SiTrainerroad = React__namespace.forwardRef(function SiTrainerroad2({ title = "TrainerRoad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.289 14.039c.157-.064.44-.199.51-.234 1.105-.56 1.92-1.222 2.42-1.966.527-.756.8-1.658.78-2.579 0-1.253-.456-2.193-1.398-2.874-.922-.668-2.225-.971-3.874-1.012H1.357L0 8.421h5.528c.014 0 .028.005.038.016a.02.02 0 01.004.019L2.785 16.85h3.668c.063 0 .12-.041.14-.102l2.759-8.303a.043.043 0 01.042-.024l2.823.001c.014 0 .028.005.038.015a.02.02 0 01.004.019L9.473 16.85h3.669c.064 0 .12-.042.14-.103l.742-2.26a.043.043 0 01.042-.024s2.452.005 2.452.003c.864 1.363 1.807 2.878 2.616 4.16l3.844-.002c.118 0 .19-.13.125-.229l-2.832-4.321c-.01-.022.013-.025.018-.035zm-.45-3.355c-.437.412-1.185.612-2.163.612h-2.583l.952-2.874 2.353.001c1.14.017 1.826.514 1.838 1.337.007.35-.138.688-.397.924z" }) + ] + } + ); +}); + +exports.default = SiTrainerroad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.d.ts new file mode 100644 index 000000000..ed31e9bc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA291C"; +declare const SiTrainerroad: IconType; +export { SiTrainerroad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.mjs new file mode 100644 index 000000000..6fba574ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrainerroad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA291C"; +const SiTrainerroad = React.forwardRef(function SiTrainerroad2({ title = "TrainerRoad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.289 14.039c.157-.064.44-.199.51-.234 1.105-.56 1.92-1.222 2.42-1.966.527-.756.8-1.658.78-2.579 0-1.253-.456-2.193-1.398-2.874-.922-.668-2.225-.971-3.874-1.012H1.357L0 8.421h5.528c.014 0 .028.005.038.016a.02.02 0 01.004.019L2.785 16.85h3.668c.063 0 .12-.041.14-.102l2.759-8.303a.043.043 0 01.042-.024l2.823.001c.014 0 .028.005.038.015a.02.02 0 01.004.019L9.473 16.85h3.669c.064 0 .12-.042.14-.103l.742-2.26a.043.043 0 01.042-.024s2.452.005 2.452.003c.864 1.363 1.807 2.878 2.616 4.16l3.844-.002c.118 0 .19-.13.125-.229l-2.832-4.321c-.01-.022.013-.025.018-.035zm-.45-3.355c-.437.412-1.185.612-2.163.612h-2.583l.952-2.874 2.353.001c1.14.017 1.826.514 1.838 1.337.007.35-.138.688-.397.924z" }) + ] + } + ); +}); + +export { SiTrainerroad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.cjs new file mode 100644 index 000000000..156c3a52b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9F42C6"; +const SiTrakt = React__namespace.forwardRef(function SiTrakt2({ title = "Trakt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.082 15.107-.73-.73 9.578-9.583a4.499 4.499 0 0 0-.115-.575L13.662 14.382l1.08 1.08-.73.73-1.81-1.81L23.422 3.144c-.075-.15-.155-.3-.25-.44L11.508 14.377l2.154 2.155-.73.73-7.193-7.199.73-.73 4.309 4.31L22.546 1.86A5.618 5.618 0 0 0 18.362 0H5.635A5.637 5.637 0 0 0 0 5.634V18.37A5.632 5.632 0 0 0 5.635 24h12.732C21.477 24 24 21.48 24 18.37V6.19l-8.913 8.918zm-4.314-2.155L6.814 8.988l.73-.73 3.954 3.96zm1.075-1.084-3.954-3.96.73-.73 3.959 3.96zm9.853 5.688a4.141 4.141 0 0 1-4.14 4.14H6.438a4.144 4.144 0 0 1-4.139-4.14V6.438A4.141 4.141 0 0 1 6.44 2.3h10.387v1.04H6.438c-1.71 0-3.099 1.39-3.099 3.1V17.55c0 1.71 1.39 3.105 3.1 3.105h11.117c1.71 0 3.1-1.395 3.1-3.105v-1.754h1.04v1.754z" }) + ] + } + ); +}); + +exports.default = SiTrakt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.d.ts new file mode 100644 index 000000000..c87097fdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9F42C6"; +declare const SiTrakt: IconType; +export { SiTrakt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.mjs new file mode 100644 index 000000000..6e72f8121 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrakt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9F42C6"; +const SiTrakt = React.forwardRef(function SiTrakt2({ title = "Trakt", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m15.082 15.107-.73-.73 9.578-9.583a4.499 4.499 0 0 0-.115-.575L13.662 14.382l1.08 1.08-.73.73-1.81-1.81L23.422 3.144c-.075-.15-.155-.3-.25-.44L11.508 14.377l2.154 2.155-.73.73-7.193-7.199.73-.73 4.309 4.31L22.546 1.86A5.618 5.618 0 0 0 18.362 0H5.635A5.637 5.637 0 0 0 0 5.634V18.37A5.632 5.632 0 0 0 5.635 24h12.732C21.477 24 24 21.48 24 18.37V6.19l-8.913 8.918zm-4.314-2.155L6.814 8.988l.73-.73 3.954 3.96zm1.075-1.084-3.954-3.96.73-.73 3.959 3.96zm9.853 5.688a4.141 4.141 0 0 1-4.14 4.14H6.438a4.144 4.144 0 0 1-4.139-4.14V6.438A4.141 4.141 0 0 1 6.44 2.3h10.387v1.04H6.438c-1.71 0-3.099 1.39-3.099 3.1V17.55c0 1.71 1.39 3.105 3.1 3.105h11.117c1.71 0 3.1-1.395 3.1-3.105v-1.754h1.04v1.754z" }) + ] + } + ); +}); + +export { SiTrakt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.cjs new file mode 100644 index 000000000..cd05368fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0064AB"; +const SiTransifex = React__namespace.forwardRef(function SiTransifex2({ title = "Transifex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.073 12.851-2.758-2.757 3.722-3.659a.33.33 0 0 1 .467.003l2.27 2.309a.33.33 0 0 1-.004.468zm0 0h-.001zm-9.04-6.433 12.87 12.869c.129.13.129.34 0 .469l-2.289 2.289a.331.331 0 0 1-.468 0l-5.168-5.168-2.863 2.815c-.604.593-1.244 1.159-1.975 1.591a7.037 7.037 0 0 1-2.248.83c-2.191.42-4.557-.047-6.303-1.468A7.065 7.065 0 0 1 0 15.207V2.069a.33.33 0 0 1 .331-.33h3.237a.33.33 0 0 1 .331.33v4.125H6.65c.178 0 .323.145.323.323v3.617a.323.323 0 0 1-.323.323H3.899v4.75c0 1.272.808 2.429 1.988 2.893.753.295 1.617.321 2.397.131.852-.206 1.484-.717 2.097-1.319l2.839-2.792-4.945-4.945a.331.331 0 0 1 0-.468l2.289-2.289a.333.333 0 0 1 .469 0" }) + ] + } + ); +}); + +exports.default = SiTransifex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.d.ts new file mode 100644 index 000000000..728a2514a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0064AB"; +declare const SiTransifex: IconType; +export { SiTransifex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.mjs new file mode 100644 index 000000000..1ea571904 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransifex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0064AB"; +const SiTransifex = React.forwardRef(function SiTransifex2({ title = "Transifex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m20.073 12.851-2.758-2.757 3.722-3.659a.33.33 0 0 1 .467.003l2.27 2.309a.33.33 0 0 1-.004.468zm0 0h-.001zm-9.04-6.433 12.87 12.869c.129.13.129.34 0 .469l-2.289 2.289a.331.331 0 0 1-.468 0l-5.168-5.168-2.863 2.815c-.604.593-1.244 1.159-1.975 1.591a7.037 7.037 0 0 1-2.248.83c-2.191.42-4.557-.047-6.303-1.468A7.065 7.065 0 0 1 0 15.207V2.069a.33.33 0 0 1 .331-.33h3.237a.33.33 0 0 1 .331.33v4.125H6.65c.178 0 .323.145.323.323v3.617a.323.323 0 0 1-.323.323H3.899v4.75c0 1.272.808 2.429 1.988 2.893.753.295 1.617.321 2.397.131.852-.206 1.484-.717 2.097-1.319l2.839-2.792-4.945-4.945a.331.331 0 0 1 0-.468l2.289-2.289a.333.333 0 0 1 .469 0" }) + ] + } + ); +}); + +export { SiTransifex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.cjs new file mode 100644 index 000000000..81badbd94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D70008"; +const SiTransmission = React__namespace.forwardRef(function SiTransmission2({ title = "Transmission", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.6956 9.46V22.254c0 .945.8847 1.709 1.7157 1.709h17.1573c.878 0 1.7157-.6098 1.7157-1.709V9.4666c-2.3323.3753-4.6177.6233-6.863.7708v5.1471h3.4315l-6.8629 6.863-6.8628-6.863h3.4314v-5.0868c-2.339-.1207-4.6244-.3887-6.8428-.831h-.02v-.0068zM15.4214.0368v8.4177c2.2452-.1474 4.5306-.1675 6.8629-.5428C23.2226 7.7643 24 7.1008 24 6.0888v-3.8c0-1.012-.7841-1.6622-1.7157-1.8297-2.339-.429-4.6177-.2949-6.863-.4222zM8.5585.0503C6.2396.191 3.9609.077 1.7157.459.7774.6199 0 1.2767 0 2.2887v3.8001c0 1.012.7841 1.642 1.7157 1.823 2.2184.4423 4.5038.4758 6.8428.6031V.0503z" }) + ] + } + ); +}); + +exports.default = SiTransmission; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.d.ts new file mode 100644 index 000000000..e2df8f886 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D70008"; +declare const SiTransmission: IconType; +export { SiTransmission as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.mjs new file mode 100644 index 000000000..9704bb8f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransmission.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D70008"; +const SiTransmission = React.forwardRef(function SiTransmission2({ title = "Transmission", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.6956 9.46V22.254c0 .945.8847 1.709 1.7157 1.709h17.1573c.878 0 1.7157-.6098 1.7157-1.709V9.4666c-2.3323.3753-4.6177.6233-6.863.7708v5.1471h3.4315l-6.8629 6.863-6.8628-6.863h3.4314v-5.0868c-2.339-.1207-4.6244-.3887-6.8428-.831h-.02v-.0068zM15.4214.0368v8.4177c2.2452-.1474 4.5306-.1675 6.8629-.5428C23.2226 7.7643 24 7.1008 24 6.0888v-3.8c0-1.012-.7841-1.6622-1.7157-1.8297-2.339-.429-4.6177-.2949-6.863-.4222zM8.5585.0503C6.2396.191 3.9609.077 1.7157.459.7774.6199 0 1.2767 0 2.2887v3.8001c0 1.012.7841 1.642 1.7157 1.823 2.2184.4423 4.5038.4758 6.8428.6031V.0503z" }) + ] + } + ); +}); + +export { SiTransmission as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.cjs new file mode 100644 index 000000000..59b5e5f7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B274"; +const SiTransportforireland = React__namespace.forwardRef(function SiTransportforireland2({ title = "Transport for Ireland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v12c0 6.62 5.38 12 12 12h12V11.978h-.022c0-6.62-5.38-11.978-12-11.978zm3.376 8.145h6.337v1.546h-2.33v6.12H5.706v-6.12h-2.33zm8.014 0h5.837V9.67h-4.138v1.633h3.659v1.546h-3.659v2.962H11.39zm7.535 0h1.678v7.666h-1.678Z" }) + ] + } + ); +}); + +exports.default = SiTransportforireland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.d.ts new file mode 100644 index 000000000..2e3419c1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B274"; +declare const SiTransportforireland: IconType; +export { SiTransportforireland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.mjs new file mode 100644 index 000000000..ff884f7b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforireland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B274"; +const SiTransportforireland = React.forwardRef(function SiTransportforireland2({ title = "Transport for Ireland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v12c0 6.62 5.38 12 12 12h12V11.978h-.022c0-6.62-5.38-11.978-12-11.978zm3.376 8.145h6.337v1.546h-2.33v6.12H5.706v-6.12h-2.33zm8.014 0h5.837V9.67h-4.138v1.633h3.659v1.546h-3.659v2.962H11.39zm7.535 0h1.678v7.666h-1.678Z" }) + ] + } + ); +}); + +export { SiTransportforireland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.cjs new file mode 100644 index 000000000..825ee6d35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#113B92"; +const SiTransportforlondon = React__namespace.forwardRef(function SiTransportforlondon2({ title = "Transport for London", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2.25a9.73 9.73 0 0 0-9.49 7.5H0v4.5h2.51a9.73 9.73 0 0 0 9.49 7.5c4.62 0 8.48-3.2 9.49-7.5H24v-4.5h-2.51A9.73 9.73 0 0 0 12 2.25zM12 6c2.5 0 4.66 1.56 5.56 3.75H6.44A6.02 6.02 0 0 1 12 6zm-5.56 8.25h11.12A6.02 6.02 0 0 1 12 18a6.02 6.02 0 0 1-5.56-3.75Z" }) + ] + } + ); +}); + +exports.default = SiTransportforlondon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.d.ts new file mode 100644 index 000000000..96381ce09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#113B92"; +declare const SiTransportforlondon: IconType; +export { SiTransportforlondon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.mjs new file mode 100644 index 000000000..89e073f30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTransportforlondon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#113B92"; +const SiTransportforlondon = React.forwardRef(function SiTransportforlondon2({ title = "Transport for London", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 2.25a9.73 9.73 0 0 0-9.49 7.5H0v4.5h2.51a9.73 9.73 0 0 0 9.49 7.5c4.62 0 8.48-3.2 9.49-7.5H24v-4.5h-2.51A9.73 9.73 0 0 0 12 2.25zM12 6c2.5 0 4.66 1.56 5.56 3.75H6.44A6.02 6.02 0 0 1 12 6zm-5.56 8.25h11.12A6.02 6.02 0 0 1 12 18a6.02 6.02 0 0 1-5.56-3.75Z" }) + ] + } + ); +}); + +export { SiTransportforlondon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.cjs new file mode 100644 index 000000000..b0a42345e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3EAAAF"; +const SiTravisci = React__namespace.forwardRef(function SiTravisci2({ title = "Travis CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.32 13.025a.485.485 0 1 1-.97 0c0-.446-.167-.758-.406-.758-.239 0-.405.312-.405.758a.485.485 0 1 1-.97 0c0-1.187.713-1.728 1.375-1.728s1.376.541 1.376 1.728zm6.017.485a.485.485 0 0 0 .485-.485c0-.446.167-.758.405-.758s.405.312.405.758a.485.485 0 1 0 .97 0c0-1.187-.713-1.728-1.375-1.728s-1.375.541-1.375 1.728c0 .268.217.485.485.485zm7.967-4.454l-.191 2.459a.801.801 0 0 1-.367.623.852.852 0 0 1-.46.13 1.07 1.07 0 0 1-.366-.068c-.271-.101-.544-.192-.817-.285a8.978 8.978 0 0 1-.094 1.614c-.04.242-.092.471-.138.707a.485.485 0 0 1-.024.125 19.471 19.471 0 0 1-1.033 3.513l.033-.02.897-.537c.193-.137.599-.122.815.1a.645.645 0 0 1 .173.577.743.743 0 0 1-.053.159c-.061.135-.319.706-.866 1.906-.675 1.483-2.06 1.77-2.121 1.782.001.001-.907.214-1.879.44C15.458 23.419 13.87 24 12.087 24c-1.84 0-3.448-.58-4.787-1.713l-1.924-.45c-.041-.008-1.427-.294-2.103-1.778l-.87-1.914c-.005-.019-.05-.158-.053-.177-.009-.625.621-.914 1.023-.632l.858.512c.006.003.074.043.171.085a20.443 20.443 0 0 1-.982-3.444c-.063-.317-.129-.63-.183-.96a8.937 8.937 0 0 1-.09-1.7c-.357.118-.713.24-1.066.372-.292.109-.593.087-.827-.062a.802.802 0 0 1-.366-.621L.695 9.055c-.036-.475.305-.969.794-1.152l.3-.117c.225-.089.505-.198.837-.318C3.65 3.124 7.566 0 12.041 0c4.516 0 8.438 3.158 9.434 7.549.472.153.843.281 1.036.355.492.183.833.677.793 1.152zm-4.612 8.973c.369-.815.678-1.708.93-2.67l-.997.713a.952.952 0 0 1-.655.166l-4.467-.47a.96.96 0 0 1-.821-.698l-.558-1.923a2.482 2.482 0 0 0-.244 0l-.56 1.93a.955.955 0 0 1-.82.691l-4.471.471a.951.951 0 0 1-.642-.162l-.723-.503c.231.889.506 1.708.824 2.451.609-.028 1.207-.069 1.209-.069.001 0 .434-.039.788-.332l1.061-.885c.148-.165.652-.465 1.33-.271.196.055.495.146.815.243.062.019.12.05.17.092.532.445 1.832.445 2.365.002a.481.481 0 0 1 .168-.091c.337-.103.631-.192.823-.247.68-.193 1.182.108 1.374.314l1.016.843c.353.294.785.332.789.332-.001.001.658.045 1.296.073zm-6.605 5.001a6.42 6.42 0 0 0 1.949-.313c-.932-.209-1.555-1.019-1.588-1.062l-.406-.542-.407.543c-.031.043-.641.842-1.558 1.06.63.196 1.295.314 2.01.314zm6.941-4.016a63.622 63.622 0 0 1-1.701-.089 2.519 2.519 0 0 1-1.339-.554l-1.065-.888c-.055-.051-.187-.152-.442-.083-.176.05-.436.13-.717.216-.878.655-2.567.655-3.443-.003a43.693 43.693 0 0 0-.709-.212c-.258-.076-.386.03-.411.052l-1.097.918a2.523 2.523 0 0 1-1.341.553s-.872.059-1.594.085h-.002l-.106.004a2.41 2.41 0 0 1-1.341-.343l-.018-.01.453.996c.463 1.017 1.389 1.225 1.427 1.232.014.004 2.754.646 3.822.889.781.174 1.447-.696 1.454-.705l.795-1.061c.183-.245.594-.245.776 0l.796 1.061c.007.009.682.881 1.455.705 1.067-.243 3.807-.886 3.807-.886a2.193 2.193 0 0 0 1.442-1.236l.452-.993-.026.015a2.27 2.27 0 0 1-1.327.337zm1.096-7.412a28.286 28.286 0 0 0-15.998-.075 8.025 8.025 0 0 0 .067 1.845c.045.275.1.535.152.8l1.591 1.108 4.461-.476.642-2.243a.488.488 0 0 1 .395-.345 3.855 3.855 0 0 1 1.135.003.482.482 0 0 1 .394.344l.652 2.245 4.462.468 1.864-1.336c.036-.19.079-.374.111-.568a7.89 7.89 0 0 0 .072-1.77zm2.214-2.623c-.005-.034-.073-.133-.165-.167l-.004-.001c-.22-.083-.68-.242-1.256-.423l-.007-.005c-.955-.299-2.771-.823-4.267-.99a.485.485 0 0 1 .108-.964c1.192.134 2.529.466 3.637.787C19.298 3.552 15.913.97 12.041.97c-3.832 0-7.207 2.549-8.318 6.165a20.252 20.252 0 0 1 3.27-.705.484.484 0 1 1 .121.962 19.235 19.235 0 0 0-3.909.899l-.005.004c-.432.149-.785.288-1.056.394l-.315.123c-.094.035-.162.135-.167.175l.177 2.264a29.36 29.36 0 0 1 10.164-1.817c3.442 0 6.881.607 10.157 1.82l.178-2.275zm-8.534-5.986h-3.539a.485.485 0 0 0-.485.485v.811a.485.485 0 1 0 .97 0v-.326h.746v3.308h-.521a.485.485 0 1 0 0 .97h2.061a.485.485 0 1 0 0-.97h-.57V3.963h.853v.326a.485.485 0 1 0 .97 0v-.811a.485.485 0 0 0-.485-.485z" }) + ] + } + ); +}); + +exports.default = SiTravisci; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.d.ts new file mode 100644 index 000000000..13f379d49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3EAAAF"; +declare const SiTravisci: IconType; +export { SiTravisci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.mjs new file mode 100644 index 000000000..4d180881a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTravisci.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3EAAAF"; +const SiTravisci = React.forwardRef(function SiTravisci2({ title = "Travis CI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.32 13.025a.485.485 0 1 1-.97 0c0-.446-.167-.758-.406-.758-.239 0-.405.312-.405.758a.485.485 0 1 1-.97 0c0-1.187.713-1.728 1.375-1.728s1.376.541 1.376 1.728zm6.017.485a.485.485 0 0 0 .485-.485c0-.446.167-.758.405-.758s.405.312.405.758a.485.485 0 1 0 .97 0c0-1.187-.713-1.728-1.375-1.728s-1.375.541-1.375 1.728c0 .268.217.485.485.485zm7.967-4.454l-.191 2.459a.801.801 0 0 1-.367.623.852.852 0 0 1-.46.13 1.07 1.07 0 0 1-.366-.068c-.271-.101-.544-.192-.817-.285a8.978 8.978 0 0 1-.094 1.614c-.04.242-.092.471-.138.707a.485.485 0 0 1-.024.125 19.471 19.471 0 0 1-1.033 3.513l.033-.02.897-.537c.193-.137.599-.122.815.1a.645.645 0 0 1 .173.577.743.743 0 0 1-.053.159c-.061.135-.319.706-.866 1.906-.675 1.483-2.06 1.77-2.121 1.782.001.001-.907.214-1.879.44C15.458 23.419 13.87 24 12.087 24c-1.84 0-3.448-.58-4.787-1.713l-1.924-.45c-.041-.008-1.427-.294-2.103-1.778l-.87-1.914c-.005-.019-.05-.158-.053-.177-.009-.625.621-.914 1.023-.632l.858.512c.006.003.074.043.171.085a20.443 20.443 0 0 1-.982-3.444c-.063-.317-.129-.63-.183-.96a8.937 8.937 0 0 1-.09-1.7c-.357.118-.713.24-1.066.372-.292.109-.593.087-.827-.062a.802.802 0 0 1-.366-.621L.695 9.055c-.036-.475.305-.969.794-1.152l.3-.117c.225-.089.505-.198.837-.318C3.65 3.124 7.566 0 12.041 0c4.516 0 8.438 3.158 9.434 7.549.472.153.843.281 1.036.355.492.183.833.677.793 1.152zm-4.612 8.973c.369-.815.678-1.708.93-2.67l-.997.713a.952.952 0 0 1-.655.166l-4.467-.47a.96.96 0 0 1-.821-.698l-.558-1.923a2.482 2.482 0 0 0-.244 0l-.56 1.93a.955.955 0 0 1-.82.691l-4.471.471a.951.951 0 0 1-.642-.162l-.723-.503c.231.889.506 1.708.824 2.451.609-.028 1.207-.069 1.209-.069.001 0 .434-.039.788-.332l1.061-.885c.148-.165.652-.465 1.33-.271.196.055.495.146.815.243.062.019.12.05.17.092.532.445 1.832.445 2.365.002a.481.481 0 0 1 .168-.091c.337-.103.631-.192.823-.247.68-.193 1.182.108 1.374.314l1.016.843c.353.294.785.332.789.332-.001.001.658.045 1.296.073zm-6.605 5.001a6.42 6.42 0 0 0 1.949-.313c-.932-.209-1.555-1.019-1.588-1.062l-.406-.542-.407.543c-.031.043-.641.842-1.558 1.06.63.196 1.295.314 2.01.314zm6.941-4.016a63.622 63.622 0 0 1-1.701-.089 2.519 2.519 0 0 1-1.339-.554l-1.065-.888c-.055-.051-.187-.152-.442-.083-.176.05-.436.13-.717.216-.878.655-2.567.655-3.443-.003a43.693 43.693 0 0 0-.709-.212c-.258-.076-.386.03-.411.052l-1.097.918a2.523 2.523 0 0 1-1.341.553s-.872.059-1.594.085h-.002l-.106.004a2.41 2.41 0 0 1-1.341-.343l-.018-.01.453.996c.463 1.017 1.389 1.225 1.427 1.232.014.004 2.754.646 3.822.889.781.174 1.447-.696 1.454-.705l.795-1.061c.183-.245.594-.245.776 0l.796 1.061c.007.009.682.881 1.455.705 1.067-.243 3.807-.886 3.807-.886a2.193 2.193 0 0 0 1.442-1.236l.452-.993-.026.015a2.27 2.27 0 0 1-1.327.337zm1.096-7.412a28.286 28.286 0 0 0-15.998-.075 8.025 8.025 0 0 0 .067 1.845c.045.275.1.535.152.8l1.591 1.108 4.461-.476.642-2.243a.488.488 0 0 1 .395-.345 3.855 3.855 0 0 1 1.135.003.482.482 0 0 1 .394.344l.652 2.245 4.462.468 1.864-1.336c.036-.19.079-.374.111-.568a7.89 7.89 0 0 0 .072-1.77zm2.214-2.623c-.005-.034-.073-.133-.165-.167l-.004-.001c-.22-.083-.68-.242-1.256-.423l-.007-.005c-.955-.299-2.771-.823-4.267-.99a.485.485 0 0 1 .108-.964c1.192.134 2.529.466 3.637.787C19.298 3.552 15.913.97 12.041.97c-3.832 0-7.207 2.549-8.318 6.165a20.252 20.252 0 0 1 3.27-.705.484.484 0 1 1 .121.962 19.235 19.235 0 0 0-3.909.899l-.005.004c-.432.149-.785.288-1.056.394l-.315.123c-.094.035-.162.135-.167.175l.177 2.264a29.36 29.36 0 0 1 10.164-1.817c3.442 0 6.881.607 10.157 1.82l.178-2.275zm-8.534-5.986h-3.539a.485.485 0 0 0-.485.485v.811a.485.485 0 1 0 .97 0v-.326h.746v3.308h-.521a.485.485 0 1 0 0 .97h2.061a.485.485 0 1 0 0-.97h-.57V3.963h.853v.326a.485.485 0 1 0 .97 0v-.811a.485.485 0 0 0-.485-.485z" }) + ] + } + ); +}); + +export { SiTravisci as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.cjs new file mode 100644 index 000000000..fe61d9601 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5FCF80"; +const SiTreehouse = React__namespace.forwardRef(function SiTreehouse2({ title = "Treehouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.3981 4.3857c-.8211-.448-2.0902.2986-2.8367 1.6423l-1.4183 2.3888c-.5226.9704-.448 2.1648.224 3.1353l.0746.0747c.6718.8958 1.493 1.7916 1.7916 2.0902.1493.1493.2986.3732.3732.6718.224.8212-.224 1.717-1.1197 1.941-.8212.2239-1.717-.224-1.941-1.1198-.0746-.224-.0746-.448-.0746-.5972.0747-.3733-.0746-.8958-.5972-1.493-.5225-.5226-1.493.5225-1.8662 1.5676v.0747c-.2986 1.045-.5226 2.0155-.448 2.0902 0 .0746.0747.0746.0747.1493.448.8958.1493 1.9409-.7465 2.3888-.8958.4479-1.9409.1493-2.3888-.7465-.4479-.8958-.1493-1.941.7465-2.3888.0747 0 .0747-.0747.1493-.0747.0747 0 .224-.4479.448-1.0451.1492-.5225.2239-.7465.2985-.9704.0747-.2986.224-1.0451.1493-1.3437-.0746-.3733-.4479-.3733-.8211-.1493-.224.1493-.6719.5225-.8212.6718-.3732.2986-.6718.7465-.8211 1.1198-.0747.1493-.224.3732-.3733.5225-.6718.5226-1.6423.4479-2.2395-.224-.5225-.6718-.4479-1.6422.224-2.2394.224-.1494.4479-.2987.6718-.2987.3733-.0746 1.717-.8958 2.5381-1.493.1493-.0746.3733-.2986.448-.3732.2239-.2986 0-.5226-.224-.5226-.6719.0747-1.4184.1493-1.5677.3733-.0746.0746-.1493.224-.2986.2986-.5972.4479-1.493.2986-1.9409-.2986-.4479-.5972-.2986-1.493.2986-1.9409.224-.224.5972-.2986.8212-.2986.5225 0 1.8662.2986 2.9113.0746l.2986-.0746c1.1198-.224 2.4635-1.1944 2.986-2.1649 0 0 .5226-.8958 1.1198-2.0155.6718-1.1198.5972-2.3888-.0747-2.762l-1.269-.7466c-.6719-.3732-1.6423-.3732-2.3142 0L2.1835 5.207C1.5117 5.58.9891 6.4758.9891 7.2223v9.5552c0 .7465.5226 1.6423 1.1944 2.0156L10.843 23.72c.6719.3732 1.717.3732 2.3142 0l8.6594-4.927c.6718-.3732 1.1944-1.269 1.1944-2.0155V7.2224c0-.7465-.5226-1.6423-1.1944-2.0156 0 0-.5972-.3732-1.4184-.8211z" }) + ] + } + ); +}); + +exports.default = SiTreehouse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.d.ts new file mode 100644 index 000000000..fbd6fd5fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5FCF80"; +declare const SiTreehouse: IconType; +export { SiTreehouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.mjs new file mode 100644 index 000000000..0c488ec52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTreehouse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5FCF80"; +const SiTreehouse = React.forwardRef(function SiTreehouse2({ title = "Treehouse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.3981 4.3857c-.8211-.448-2.0902.2986-2.8367 1.6423l-1.4183 2.3888c-.5226.9704-.448 2.1648.224 3.1353l.0746.0747c.6718.8958 1.493 1.7916 1.7916 2.0902.1493.1493.2986.3732.3732.6718.224.8212-.224 1.717-1.1197 1.941-.8212.2239-1.717-.224-1.941-1.1198-.0746-.224-.0746-.448-.0746-.5972.0747-.3733-.0746-.8958-.5972-1.493-.5225-.5226-1.493.5225-1.8662 1.5676v.0747c-.2986 1.045-.5226 2.0155-.448 2.0902 0 .0746.0747.0746.0747.1493.448.8958.1493 1.9409-.7465 2.3888-.8958.4479-1.9409.1493-2.3888-.7465-.4479-.8958-.1493-1.941.7465-2.3888.0747 0 .0747-.0747.1493-.0747.0747 0 .224-.4479.448-1.0451.1492-.5225.2239-.7465.2985-.9704.0747-.2986.224-1.0451.1493-1.3437-.0746-.3733-.4479-.3733-.8211-.1493-.224.1493-.6719.5225-.8212.6718-.3732.2986-.6718.7465-.8211 1.1198-.0747.1493-.224.3732-.3733.5225-.6718.5226-1.6423.4479-2.2395-.224-.5225-.6718-.4479-1.6422.224-2.2394.224-.1494.4479-.2987.6718-.2987.3733-.0746 1.717-.8958 2.5381-1.493.1493-.0746.3733-.2986.448-.3732.2239-.2986 0-.5226-.224-.5226-.6719.0747-1.4184.1493-1.5677.3733-.0746.0746-.1493.224-.2986.2986-.5972.4479-1.493.2986-1.9409-.2986-.4479-.5972-.2986-1.493.2986-1.9409.224-.224.5972-.2986.8212-.2986.5225 0 1.8662.2986 2.9113.0746l.2986-.0746c1.1198-.224 2.4635-1.1944 2.986-2.1649 0 0 .5226-.8958 1.1198-2.0155.6718-1.1198.5972-2.3888-.0747-2.762l-1.269-.7466c-.6719-.3732-1.6423-.3732-2.3142 0L2.1835 5.207C1.5117 5.58.9891 6.4758.9891 7.2223v9.5552c0 .7465.5226 1.6423 1.1944 2.0156L10.843 23.72c.6719.3732 1.717.3732 2.3142 0l8.6594-4.927c.6718-.3732 1.1944-1.269 1.1944-2.0155V7.2224c0-.7465-.5226-1.6423-1.1944-2.0156 0 0-.5972-.3732-1.4184-.8211z" }) + ] + } + ); +}); + +export { SiTreehouse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.cjs new file mode 100644 index 000000000..9f94d219d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0052CC"; +const SiTrello = React__namespace.forwardRef(function SiTrello2({ title = "Trello", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.147 0H2.853A2.86 2.86 0 000 2.853v18.294A2.86 2.86 0 002.853 24h18.294A2.86 2.86 0 0024 21.147V2.853A2.86 2.86 0 0021.147 0zM10.34 17.287a.953.953 0 01-.953.953h-4a.954.954 0 01-.954-.953V5.38a.953.953 0 01.954-.953h4a.954.954 0 01.953.953zm9.233-5.467a.944.944 0 01-.953.947h-4a.947.947 0 01-.953-.947V5.38a.953.953 0 01.953-.953h4a.954.954 0 01.953.953z" }) + ] + } + ); +}); + +exports.default = SiTrello; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.d.ts new file mode 100644 index 000000000..fee374551 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0052CC"; +declare const SiTrello: IconType; +export { SiTrello as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.mjs new file mode 100644 index 000000000..cc2040a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrello.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0052CC"; +const SiTrello = React.forwardRef(function SiTrello2({ title = "Trello", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.147 0H2.853A2.86 2.86 0 000 2.853v18.294A2.86 2.86 0 002.853 24h18.294A2.86 2.86 0 0024 21.147V2.853A2.86 2.86 0 0021.147 0zM10.34 17.287a.953.953 0 01-.953.953h-4a.954.954 0 01-.954-.953V5.38a.953.953 0 01.954-.953h4a.954.954 0 01.953.953zm9.233-5.467a.944.944 0 01-.953.947h-4a.947.947 0 01-.953-.947V5.38a.953.953 0 01.953-.953h4a.954.954 0 01.953.953z" }) + ] + } + ); +}); + +export { SiTrello as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.cjs new file mode 100644 index 000000000..913863467 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D71921"; +const SiTrendmicro = React__namespace.forwardRef(function SiTrendmicro2({ title = "Trend Micro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.38 0 0 5.37 0 12C0 14.45 .734 16.72 2 18.62C1.5 17.45 1.58 15.94 2.19 14.29L2.2 14.25L2.25 14.12L2.3 14L2.32 13.95C2.54 13.4 2.82 12.83 3.16 12.26C3.21 12.16 3.25 12.07 3.3 12L1.86 12L2.21 11.21C3.4 10.88 5.38 10.22 7.27 8.39L7.32 8.39H8.32L7.03 11.14L9.1 11.14L8.72 11.96L6.66 11.96S5.69 13.9 5.36 15.28C5.11 16.82 5.36 18 6.74 18.41C7.59 18.67 8.66 18.61 9.81 18.29C12.5 17.45 15.34 15.62 17.43 13.18C20.87 9.19 20.94 5.1 17.58 4.05C15.43 3.38 12.39 4.13 9.58 5.8C13.08 3.54 16.94 2.5 19.59 3.31C20.09 3.46 20.53 3.68 20.89 3.94A11.97 11.97 0 0 0 12 0M22.17 5.63C23 7.81 21.97 11.07 19.2 14.29C15.04 19.13 8.47 22.05 4.5 20.83A4.46 4.46 0 0 1 3.24 20.21A11.96 11.96 0 0 0 12 24C18.63 24 24 18.63 24 12C24 9.66 23.33 7.5 22.17 5.63Z" }) + ] + } + ); +}); + +exports.default = SiTrendmicro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.d.ts new file mode 100644 index 000000000..b61bc1b23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D71921"; +declare const SiTrendmicro: IconType; +export { SiTrendmicro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.mjs new file mode 100644 index 000000000..86a9ff3b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrendmicro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D71921"; +const SiTrendmicro = React.forwardRef(function SiTrendmicro2({ title = "Trend Micro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.38 0 0 5.37 0 12C0 14.45 .734 16.72 2 18.62C1.5 17.45 1.58 15.94 2.19 14.29L2.2 14.25L2.25 14.12L2.3 14L2.32 13.95C2.54 13.4 2.82 12.83 3.16 12.26C3.21 12.16 3.25 12.07 3.3 12L1.86 12L2.21 11.21C3.4 10.88 5.38 10.22 7.27 8.39L7.32 8.39H8.32L7.03 11.14L9.1 11.14L8.72 11.96L6.66 11.96S5.69 13.9 5.36 15.28C5.11 16.82 5.36 18 6.74 18.41C7.59 18.67 8.66 18.61 9.81 18.29C12.5 17.45 15.34 15.62 17.43 13.18C20.87 9.19 20.94 5.1 17.58 4.05C15.43 3.38 12.39 4.13 9.58 5.8C13.08 3.54 16.94 2.5 19.59 3.31C20.09 3.46 20.53 3.68 20.89 3.94A11.97 11.97 0 0 0 12 0M22.17 5.63C23 7.81 21.97 11.07 19.2 14.29C15.04 19.13 8.47 22.05 4.5 20.83A4.46 4.46 0 0 1 3.24 20.21A11.96 11.96 0 0 0 12 24C18.63 24 24 18.63 24 12C24 9.66 23.33 7.5 22.17 5.63Z" }) + ] + } + ); +}); + +export { SiTrendmicro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.cjs new file mode 100644 index 000000000..9cb551dab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00A9E2"; +const SiTresorit = React__namespace.forwardRef(function SiTresorit2({ title = "Tresorit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0 1.636 6v12L12 24l10.364-6V6zM3.818 7.258 12 2.521l3.574 2.069-11.756 6.753zm16.364 9.484L12 21.48 3.82 16.742V13.86l13.938-8.006 2.425 1.404z" }) + ] + } + ); +}); + +exports.default = SiTresorit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.d.ts new file mode 100644 index 000000000..b7b7505a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00A9E2"; +declare const SiTresorit: IconType; +export { SiTresorit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.mjs new file mode 100644 index 000000000..365242c66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTresorit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00A9E2"; +const SiTresorit = React.forwardRef(function SiTresorit2({ title = "Tresorit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0 1.636 6v12L12 24l10.364-6V6zM3.818 7.258 12 2.521l3.574 2.069-11.756 6.753zm16.364 9.484L12 21.48 3.82 16.742V13.86l13.938-8.006 2.425 1.404z" }) + ] + } + ); +}); + +export { SiTresorit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.cjs new file mode 100644 index 000000000..d4cc830f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTreyarch = React__namespace.forwardRef(function SiTreyarch2({ title = "Treyarch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.313 23.017C.576 22.764-.232 21.704.058 20.061a6.643 6.643 0 0 1 .88-2.288c1.328-2.123 3.2-3.896 5.3-5.016.556-.297 1.881-.863 2.02-.863.03 0 .106.232.167.516.095.442.19.64.67 1.397.308.485.587.908.62.941.085.085.164-.471.164-1.153v-.572l.25.463c.294.542.588.98.743 1.109.06.05.006-.1-.122-.333-.982-1.793-1.62-4.265-1.622-6.286-.002-2.003.488-3.555 1.417-4.488.444-.446.813-.628 1.35-.667 1-.072 1.748.635 2.235 2.113.08.247.13.467.108.488-.022.023-.04-.003-.04-.058 0-.053-.133-.37-.295-.703-.332-.682-.786-1.219-1.187-1.402-.257-.118-.759-.166-.844-.082-.023.023.133.23.347.46.482.514.865 1.27 1.099 2.165.151.58.176.826.203 2.042.058 2.547-.35 4.406-1.289 5.861-.396.616-.456.554-.083-.087.154-.265.272-.564.295-.752.022-.172.026-.313.011-.313s-.11.148-.212.329c-.164.292-.21.33-.405.33h-.22l.134.215.134.217-.598.788c-.496.654-.916 1.19-1.179 1.503-.047.055-.741-1.063-1.084-1.745a6.541 6.541 0 0 0-.197-.375c-.047-.053-1.217.549-1.728.889-1.559 1.037-2.59 2.74-2.16 3.57.318.614 1.731.37 3.166-.55.181-.115.556-.393.833-.616.277-.223.568-.406.646-.406.081 0 .297-.146.502-.34.197-.186.374-.324.392-.306.06.061-1.838 1.857-2.473 2.34-1.562 1.185-2.92 1.643-3.876 1.306-.265-.094-.272-.093-.27.05.002.223.23.674.403.799.152.11.148.11-.174.067-.974-.134-1.547-.72-1.548-1.583 0-.385.213-1.165.477-1.74.595-1.298 2.396-3.08 3.694-3.653.296-.13.418-.248.824-.787.372-.496.453-.642.374-.673-.128-.049-.332.03-1.307.513-2.741 1.355-4.636 3.4-5.194 5.605-.231.916-.078 1.967.366 2.507l.153.187-.031-.814c-.026-.681-.009-.904.107-1.362.136-.539.492-1.363.7-1.622.076-.093.069-.054-.024.137-.397.82-.532 1.769-.344 2.416.305 1.051 1.716 1.562 3.24 1.173 1.04-.265 2.373-1.01 3.749-2.096.9-.71 2.84-2.689 3.375-3.44 1.631-2.296 2.48-5.781 2.15-8.84-.261-2.422-1.335-4.097-2.825-4.405a4.576 4.576 0 0 1-.62-.177c-.22-.088-.24-.11-.132-.153.335-.13 1.167-.046 1.701.175.09.038.112.03.078-.026-.094-.152-.54-.29-1.093-.338l-.56-.049.461-.01.461-.012-.259-.137c-.208-.11-.327-.128-.609-.095-.695.082-1.577.512-2.201 1.074-.431.389-.197.015.298-.476 1.1-1.088 2.587-1.296 4.117-.574.573.27 1.346 1 1.706 1.61.443.754.77 1.763.945 2.918.19 1.254.056 4-.267 5.48l-.118.54.631.208c.61.2 1.675.653 1.634.694-.01.011-.36-.11-.775-.268-.415-.159-.768-.275-.784-.258-.076.075 1.393 1.451 1.906 1.786 1.974 1.286 3.3 2.717 3.524 3.804.023.11-.032.027-.122-.184-.396-.93-1.05-1.723-2.146-2.605-1.376-1.107-2.975-2.005-3.94-2.213-.449-.097-.182.074.558.36 1.925.74 3.764 2.121 4.814 3.617.762 1.085.872 2.134.263 2.506-.325.198-1.153.183-2.036-.038-.589-.148-2.732-.934-2.679-.983.01-.008.226.038.48.103 1.368.36 2.145-.015 2.057-.994-.116-1.275-1.615-2.72-3.596-3.466-.231-.087-.427-.15-.434-.14a45.97 45.97 0 0 1-1.034 1.788l-.514.847.156.273a2 2 0 0 1 .202.602c.08.581.244.85.737 1.213 1.082.795 2.677 1.561 3.92 1.882.337.087.55.16.472.162-.188.004-1.284-.287-1.736-.462-1.087-.42-2.078-.994-3.483-2.017-.696-.506-.962-.667-1.001-.604-.064.103.116.267 1.027.938 1.96 1.444 4.675 2.543 6.282 2.543.992 0 1.62-.34 1.981-1.073a2.88 2.88 0 0 0 .256-.84l.051-.425.092.296c.099.32.13 1.549.048 1.877-.05.195-.048.195.08-.034.524-.927.54-2.254.043-3.38a9.99 9.99 0 0 0-.494-.9c-.407-.665-.165-.407.389.413.95 1.407 1.38 2.8 1.197 3.87a3.259 3.259 0 0 1-.239.774c-.31.605-.987 1.113-1.783 1.337-.483.136-1.965.121-2.657-.026-2.165-.463-4.985-2.04-6.989-3.908l-.365-.34-.658.639c-1.713 1.66-3.34 2.755-4.841 3.258-.647.216-1.636.411-2.53.499-.81.079-1.024.078-1.583-.003zM12.97 10.99c.393-1.77.336-3.854-.135-4.908-.61-1.367-1.746-.996-2.083.68-.154.766-.19 1.6-.112 2.55.063.764.213 1.789.3 2.04.02.06.277.082.98.082h.951zm6.514 9.62a.591.591 0 0 1 .23 0c.064.014.012.03-.115.03-.126 0-.178-.016-.115-.03zm2.637-2.227c0-.182.013-.248.028-.148.015.1.015.248 0 .33-.016.08-.029-.001-.028-.183zM7.786 10c-.268-1.136-.324-1.7-.288-2.866.025-.78.072-1.22.174-1.63.137-.549.468-1.535.503-1.5.01.009-.005.147-.034.303-.03.16-.024.394.012.537.051.2.034.366-.08.802-.19.72-.258 2.574-.128 3.452.048.324.078.618.067.655a4.22 4.22 0 0 0-.019.51c.001.245-.008.445-.02.445-.01 0-.095-.319-.187-.708z" }) + ] + } + ); +}); + +exports.default = SiTreyarch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.d.ts new file mode 100644 index 000000000..051580d8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTreyarch: IconType; +export { SiTreyarch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.mjs new file mode 100644 index 000000000..758c6fbf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTreyarch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTreyarch = React.forwardRef(function SiTreyarch2({ title = "Treyarch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.313 23.017C.576 22.764-.232 21.704.058 20.061a6.643 6.643 0 0 1 .88-2.288c1.328-2.123 3.2-3.896 5.3-5.016.556-.297 1.881-.863 2.02-.863.03 0 .106.232.167.516.095.442.19.64.67 1.397.308.485.587.908.62.941.085.085.164-.471.164-1.153v-.572l.25.463c.294.542.588.98.743 1.109.06.05.006-.1-.122-.333-.982-1.793-1.62-4.265-1.622-6.286-.002-2.003.488-3.555 1.417-4.488.444-.446.813-.628 1.35-.667 1-.072 1.748.635 2.235 2.113.08.247.13.467.108.488-.022.023-.04-.003-.04-.058 0-.053-.133-.37-.295-.703-.332-.682-.786-1.219-1.187-1.402-.257-.118-.759-.166-.844-.082-.023.023.133.23.347.46.482.514.865 1.27 1.099 2.165.151.58.176.826.203 2.042.058 2.547-.35 4.406-1.289 5.861-.396.616-.456.554-.083-.087.154-.265.272-.564.295-.752.022-.172.026-.313.011-.313s-.11.148-.212.329c-.164.292-.21.33-.405.33h-.22l.134.215.134.217-.598.788c-.496.654-.916 1.19-1.179 1.503-.047.055-.741-1.063-1.084-1.745a6.541 6.541 0 0 0-.197-.375c-.047-.053-1.217.549-1.728.889-1.559 1.037-2.59 2.74-2.16 3.57.318.614 1.731.37 3.166-.55.181-.115.556-.393.833-.616.277-.223.568-.406.646-.406.081 0 .297-.146.502-.34.197-.186.374-.324.392-.306.06.061-1.838 1.857-2.473 2.34-1.562 1.185-2.92 1.643-3.876 1.306-.265-.094-.272-.093-.27.05.002.223.23.674.403.799.152.11.148.11-.174.067-.974-.134-1.547-.72-1.548-1.583 0-.385.213-1.165.477-1.74.595-1.298 2.396-3.08 3.694-3.653.296-.13.418-.248.824-.787.372-.496.453-.642.374-.673-.128-.049-.332.03-1.307.513-2.741 1.355-4.636 3.4-5.194 5.605-.231.916-.078 1.967.366 2.507l.153.187-.031-.814c-.026-.681-.009-.904.107-1.362.136-.539.492-1.363.7-1.622.076-.093.069-.054-.024.137-.397.82-.532 1.769-.344 2.416.305 1.051 1.716 1.562 3.24 1.173 1.04-.265 2.373-1.01 3.749-2.096.9-.71 2.84-2.689 3.375-3.44 1.631-2.296 2.48-5.781 2.15-8.84-.261-2.422-1.335-4.097-2.825-4.405a4.576 4.576 0 0 1-.62-.177c-.22-.088-.24-.11-.132-.153.335-.13 1.167-.046 1.701.175.09.038.112.03.078-.026-.094-.152-.54-.29-1.093-.338l-.56-.049.461-.01.461-.012-.259-.137c-.208-.11-.327-.128-.609-.095-.695.082-1.577.512-2.201 1.074-.431.389-.197.015.298-.476 1.1-1.088 2.587-1.296 4.117-.574.573.27 1.346 1 1.706 1.61.443.754.77 1.763.945 2.918.19 1.254.056 4-.267 5.48l-.118.54.631.208c.61.2 1.675.653 1.634.694-.01.011-.36-.11-.775-.268-.415-.159-.768-.275-.784-.258-.076.075 1.393 1.451 1.906 1.786 1.974 1.286 3.3 2.717 3.524 3.804.023.11-.032.027-.122-.184-.396-.93-1.05-1.723-2.146-2.605-1.376-1.107-2.975-2.005-3.94-2.213-.449-.097-.182.074.558.36 1.925.74 3.764 2.121 4.814 3.617.762 1.085.872 2.134.263 2.506-.325.198-1.153.183-2.036-.038-.589-.148-2.732-.934-2.679-.983.01-.008.226.038.48.103 1.368.36 2.145-.015 2.057-.994-.116-1.275-1.615-2.72-3.596-3.466-.231-.087-.427-.15-.434-.14a45.97 45.97 0 0 1-1.034 1.788l-.514.847.156.273a2 2 0 0 1 .202.602c.08.581.244.85.737 1.213 1.082.795 2.677 1.561 3.92 1.882.337.087.55.16.472.162-.188.004-1.284-.287-1.736-.462-1.087-.42-2.078-.994-3.483-2.017-.696-.506-.962-.667-1.001-.604-.064.103.116.267 1.027.938 1.96 1.444 4.675 2.543 6.282 2.543.992 0 1.62-.34 1.981-1.073a2.88 2.88 0 0 0 .256-.84l.051-.425.092.296c.099.32.13 1.549.048 1.877-.05.195-.048.195.08-.034.524-.927.54-2.254.043-3.38a9.99 9.99 0 0 0-.494-.9c-.407-.665-.165-.407.389.413.95 1.407 1.38 2.8 1.197 3.87a3.259 3.259 0 0 1-.239.774c-.31.605-.987 1.113-1.783 1.337-.483.136-1.965.121-2.657-.026-2.165-.463-4.985-2.04-6.989-3.908l-.365-.34-.658.639c-1.713 1.66-3.34 2.755-4.841 3.258-.647.216-1.636.411-2.53.499-.81.079-1.024.078-1.583-.003zM12.97 10.99c.393-1.77.336-3.854-.135-4.908-.61-1.367-1.746-.996-2.083.68-.154.766-.19 1.6-.112 2.55.063.764.213 1.789.3 2.04.02.06.277.082.98.082h.951zm6.514 9.62a.591.591 0 0 1 .23 0c.064.014.012.03-.115.03-.126 0-.178-.016-.115-.03zm2.637-2.227c0-.182.013-.248.028-.148.015.1.015.248 0 .33-.016.08-.029-.001-.028-.183zM7.786 10c-.268-1.136-.324-1.7-.288-2.866.025-.78.072-1.22.174-1.63.137-.549.468-1.535.503-1.5.01.009-.005.147-.034.303-.03.16-.024.394.012.537.051.2.034.366-.08.802-.19.72-.258 2.574-.128 3.452.048.324.078.618.067.655a4.22 4.22 0 0 0-.019.51c.001.245-.008.445-.02.445-.01 0-.095-.319-.187-.708z" }) + ] + } + ); +}); + +export { SiTreyarch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.cjs new file mode 100644 index 000000000..f4f81ed6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#12438C"; +const SiTricentis = React__namespace.forwardRef(function SiTricentis2({ title = "Tricentis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.271 10.42 6.86 3.006 9.833.034l4.438 4.438L18.742 0l2.974 2.974ZM9.825 24l-2.973-2.974 7.445-7.445 7.412 7.412-2.974 2.973-4.438-4.437zm-4.567-4.568-2.974-2.974 4.47-4.47-4.437-4.439 2.974-2.974 7.412 7.412Z" }) + ] + } + ); +}); + +exports.default = SiTricentis; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.d.ts new file mode 100644 index 000000000..bfba0dd3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#12438C"; +declare const SiTricentis: IconType; +export { SiTricentis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.mjs new file mode 100644 index 000000000..db667b3c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTricentis.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#12438C"; +const SiTricentis = React.forwardRef(function SiTricentis2({ title = "Tricentis", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.271 10.42 6.86 3.006 9.833.034l4.438 4.438L18.742 0l2.974 2.974ZM9.825 24l-2.973-2.974 7.445-7.445 7.412 7.412-2.974 2.973-4.438-4.437zm-4.567-4.568-2.974-2.974 4.47-4.47-4.437-4.439 2.974-2.974 7.412 7.412Z" }) + ] + } + ); +}); + +export { SiTricentis as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.cjs new file mode 100644 index 000000000..6edd20fc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTrilium = React__namespace.forwardRef(function SiTrilium2({ title = "Trilium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8553 20.5137c-.7787-.7246-.812-1.4624-.8734-1.5885-.079.2466-.1253.4053-.1373.85-.7557-.7326-1.2851-1.5794-1.313-2.5942-.0372-1.3607.5749-1.8516.5707-1.8503.0006 0-.475.245-.8974.5924.3103-1.8247 1.4396-3.5312 3.095-3.9996-.5245 1.2293-.7127 2.55-.5724 3.8772-.6085.6443-.892 1.4171-.8894 2.1975.076-.781.4132-1.4228.9283-1.896.2114 1.4964.836 2.9725 1.8574 4.2653-.686-.9884-1.8304-3.2666-1.3925-5.9322.8658.4332 1.5327 1.181 1.8753 2.24-.2249-1.0598-.8289-1.972-1.8258-2.6025.1167-.755.319-1.49.5952-2.1803.4585.068 2.2125.5934 2.707 3.957-.3584-.1922-.6988-.2992-.6991-.299.009.0033.2224.1787.4469 1.0828.2056.7923.0984 1.752-.0027 2.482-.3743-.1703-.6932-.2759-.6935-.2757-.0002 0 .3761.3252.499 1.2813.1095.8529.1058 1.9282.123 1.9147.0068.0002-2.0981-.3094-3.4014-1.5219M3.19 5.8314c1.0679-.3104 1.7479.048 1.894.0597-.179-.1997-.2966-.3242-.6892-.5686 1.0626-.2857 2.1065-.3105 3.032.1982 1.2411.6822 1.3532 1.4835 1.3544 1.4792-.0002.0005.035-.5504-.0502-1.108 1.4709 1.2346 2.3966 3.1342 1.929 4.8497-.8218-1.1117-1.906-1.973-3.1722-2.5461-.2517-.8789-.7933-1.5368-1.4949-1.9447.66.478 1.0552 1.1147 1.2035 1.8207-1.4562-.5989-3.1157-.8205-4.8237-.5933 1.2549-.0895 3.9131.0923 6.07 1.8822-.8528.541-1.8817.7398-3.0156.4872 1.0716.3575 2.2141.3009 3.3145-.2528a10.3132 10.3132 0 0 1 1.6373 1.6746c-.3069.3713-1.719 1.652-5.0027.3228.3648-.217.6433-.463.6434-.4633-.008.0062-.2797.1034-1.2115-.1726-.8212-.2338-1.6249-.8337-2.2258-1.307.3535-.2426.6194-.4702.6194-.4707.0001-.0002-.4935.163-1.4173-.2305C.9602 8.597-.003 8.0284 0 8.0508c-.0038.0059 1.403-1.6999 3.19-2.2194m16.218-3.6217c-1.4072-.0435-2.1363.615-2.3124.6761.1602-.3033.2674-.4945.677-.921-1.3933-.0146-2.6853.287-3.671 1.209-1.322 1.2368-1.2193 2.2615-1.222 2.2564.0003.0006-.2085-.6682-.2712-1.3834-1.4387 1.9916-2.0068 4.6304-.916 6.5989.6771-1.6334 1.7523-3.0412 3.138-4.1513.0456-1.1648.5142-2.149 1.2549-2.8756-.6684.8-.9633 1.7114-.9336 2.63 1.6117-1.2024 3.587-2.0038 5.757-2.2667-1.571.2886-2.9944.9148-4.2385 1.7688.7787.3556 1.668.4114 2.6026.0859-.896.42-1.8908.4886-2.8971.1229-.8931.654-1.6874 1.4268-2.3702 2.2762 1.212.3962 2.5378.3143 3.8571-.3582-1.211.7823-2.634 1.0757-4.1543.7426a13.3798 13.3798 0 0 0-1.5112 2.5874c.4891.3606 2.6117 1.492 6.2525-1.1928-.5141-.152-.9307-.3668-.931-.3671.0117.0052.3753.0385 1.4387-.5985.9402-.5498 1.7489-1.5457 2.346-2.321-.508-.187-.9034-.3834-.9036-.3839-.0003-.0002.6563.0442 1.6747-.7354.9084-.6954 1.9225-1.7034 1.9256-1.675.0064.0061-2.237-1.6515-4.592-1.7242" }) + ] + } + ); +}); + +exports.default = SiTrilium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.d.ts new file mode 100644 index 000000000..9d024fc79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTrilium: IconType; +export { SiTrilium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.mjs new file mode 100644 index 000000000..950810ab8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrilium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTrilium = React.forwardRef(function SiTrilium2({ title = "Trilium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.8553 20.5137c-.7787-.7246-.812-1.4624-.8734-1.5885-.079.2466-.1253.4053-.1373.85-.7557-.7326-1.2851-1.5794-1.313-2.5942-.0372-1.3607.5749-1.8516.5707-1.8503.0006 0-.475.245-.8974.5924.3103-1.8247 1.4396-3.5312 3.095-3.9996-.5245 1.2293-.7127 2.55-.5724 3.8772-.6085.6443-.892 1.4171-.8894 2.1975.076-.781.4132-1.4228.9283-1.896.2114 1.4964.836 2.9725 1.8574 4.2653-.686-.9884-1.8304-3.2666-1.3925-5.9322.8658.4332 1.5327 1.181 1.8753 2.24-.2249-1.0598-.8289-1.972-1.8258-2.6025.1167-.755.319-1.49.5952-2.1803.4585.068 2.2125.5934 2.707 3.957-.3584-.1922-.6988-.2992-.6991-.299.009.0033.2224.1787.4469 1.0828.2056.7923.0984 1.752-.0027 2.482-.3743-.1703-.6932-.2759-.6935-.2757-.0002 0 .3761.3252.499 1.2813.1095.8529.1058 1.9282.123 1.9147.0068.0002-2.0981-.3094-3.4014-1.5219M3.19 5.8314c1.0679-.3104 1.7479.048 1.894.0597-.179-.1997-.2966-.3242-.6892-.5686 1.0626-.2857 2.1065-.3105 3.032.1982 1.2411.6822 1.3532 1.4835 1.3544 1.4792-.0002.0005.035-.5504-.0502-1.108 1.4709 1.2346 2.3966 3.1342 1.929 4.8497-.8218-1.1117-1.906-1.973-3.1722-2.5461-.2517-.8789-.7933-1.5368-1.4949-1.9447.66.478 1.0552 1.1147 1.2035 1.8207-1.4562-.5989-3.1157-.8205-4.8237-.5933 1.2549-.0895 3.9131.0923 6.07 1.8822-.8528.541-1.8817.7398-3.0156.4872 1.0716.3575 2.2141.3009 3.3145-.2528a10.3132 10.3132 0 0 1 1.6373 1.6746c-.3069.3713-1.719 1.652-5.0027.3228.3648-.217.6433-.463.6434-.4633-.008.0062-.2797.1034-1.2115-.1726-.8212-.2338-1.6249-.8337-2.2258-1.307.3535-.2426.6194-.4702.6194-.4707.0001-.0002-.4935.163-1.4173-.2305C.9602 8.597-.003 8.0284 0 8.0508c-.0038.0059 1.403-1.6999 3.19-2.2194m16.218-3.6217c-1.4072-.0435-2.1363.615-2.3124.6761.1602-.3033.2674-.4945.677-.921-1.3933-.0146-2.6853.287-3.671 1.209-1.322 1.2368-1.2193 2.2615-1.222 2.2564.0003.0006-.2085-.6682-.2712-1.3834-1.4387 1.9916-2.0068 4.6304-.916 6.5989.6771-1.6334 1.7523-3.0412 3.138-4.1513.0456-1.1648.5142-2.149 1.2549-2.8756-.6684.8-.9633 1.7114-.9336 2.63 1.6117-1.2024 3.587-2.0038 5.757-2.2667-1.571.2886-2.9944.9148-4.2385 1.7688.7787.3556 1.668.4114 2.6026.0859-.896.42-1.8908.4886-2.8971.1229-.8931.654-1.6874 1.4268-2.3702 2.2762 1.212.3962 2.5378.3143 3.8571-.3582-1.211.7823-2.634 1.0757-4.1543.7426a13.3798 13.3798 0 0 0-1.5112 2.5874c.4891.3606 2.6117 1.492 6.2525-1.1928-.5141-.152-.9307-.3668-.931-.3671.0117.0052.3753.0385 1.4387-.5985.9402-.5498 1.7489-1.5457 2.346-2.321-.508-.187-.9034-.3834-.9036-.3839-.0003-.0002.6563.0442 1.6747-.7354.9084-.6954 1.9225-1.7034 1.9256-1.675.0064.0061-2.237-1.6515-4.592-1.7242" }) + ] + } + ); +}); + +export { SiTrilium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.cjs new file mode 100644 index 000000000..f1d911297 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0089"; +const SiTriller = React__namespace.forwardRef(function SiTriller2({ title = "Triller", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.548 5.216L7.005 20.012l-.29-.167 8.54-14.788a9.365 9.365 0 0 0-6.07-.906L2.73 15.333l-.609 1.055a9.34 9.34 0 0 0 3.818 4.806l-1.522 2.64.289.166 2.303-3.987h-.002a9.367 9.367 0 0 0 6.068.905l6.321-10.945.287.167-6.168 10.683-.964 1.67a9.322 9.322 0 0 0 7.55-7.555 9.267 9.267 0 0 0-.413-4.802l2.299-3.982-.29-.167L20.14 8.68a9.343 9.343 0 0 0-3.816-4.806zm-5.842-2.64a9.324 9.324 0 0 0-7.132 12.359L8.893 3.989l.292.162L11.483.167 11.193 0z" }) + ] + } + ); +}); + +exports.default = SiTriller; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.d.ts new file mode 100644 index 000000000..8fa52e0f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0089"; +declare const SiTriller: IconType; +export { SiTriller as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.mjs new file mode 100644 index 000000000..63bafafe5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTriller.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0089"; +const SiTriller = React.forwardRef(function SiTriller2({ title = "Triller", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.548 5.216L7.005 20.012l-.29-.167 8.54-14.788a9.365 9.365 0 0 0-6.07-.906L2.73 15.333l-.609 1.055a9.34 9.34 0 0 0 3.818 4.806l-1.522 2.64.289.166 2.303-3.987h-.002a9.367 9.367 0 0 0 6.068.905l6.321-10.945.287.167-6.168 10.683-.964 1.67a9.322 9.322 0 0 0 7.55-7.555 9.267 9.267 0 0 0-.413-4.802l2.299-3.982-.29-.167L20.14 8.68a9.343 9.343 0 0 0-3.816-4.806zm-5.842-2.64a9.324 9.324 0 0 0-7.132 12.359L8.893 3.989l.292.162L11.483.167 11.193 0z" }) + ] + } + ); +}); + +export { SiTriller as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.cjs new file mode 100644 index 000000000..4411d0570 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E61414"; +const SiTrillertv = React__namespace.forwardRef(function SiTrillertv2({ title = "TrillerTV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.496.07-1.8 3.107-.868-.498c-1.269-.729-2.852.184-2.852 1.64v6.28l3.9-6.734L9.933.319a.14.14 0 0 0-.053-.19l-.19-.11a.143.143 0 0 0-.193.05Zm-.713 3.734-4.807 8.301v7.163c0 .674.338 1.23.826 1.562l-1.65 2.85a.14.14 0 0 0 .05.192l.192.109a.142.142 0 0 0 .193-.05l1.665-2.874L13.629 6.59Zm11.63 2.547-1.8 3.108-4.33-2.49-8.217 14.186a1.91 1.91 0 0 0 .764-.248l8.598-4.948 5.42-9.356a.141.141 0 0 0-.05-.193c-.065-.035-.128-.073-.192-.11-.027-.02-.14-.041-.193.051zm-.711 3.735-2.967 5.123 3.08-1.774c1.268-.731 1.268-2.556 0-3.285z" }) + ] + } + ); +}); + +exports.default = SiTrillertv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.d.ts new file mode 100644 index 000000000..76924fd82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E61414"; +declare const SiTrillertv: IconType; +export { SiTrillertv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.mjs new file mode 100644 index 000000000..1bbfc354d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrillertv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E61414"; +const SiTrillertv = React.forwardRef(function SiTrillertv2({ title = "TrillerTV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.496.07-1.8 3.107-.868-.498c-1.269-.729-2.852.184-2.852 1.64v6.28l3.9-6.734L9.933.319a.14.14 0 0 0-.053-.19l-.19-.11a.143.143 0 0 0-.193.05Zm-.713 3.734-4.807 8.301v7.163c0 .674.338 1.23.826 1.562l-1.65 2.85a.14.14 0 0 0 .05.192l.192.109a.142.142 0 0 0 .193-.05l1.665-2.874L13.629 6.59Zm11.63 2.547-1.8 3.108-4.33-2.49-8.217 14.186a1.91 1.91 0 0 0 .764-.248l8.598-4.948 5.42-9.356a.141.141 0 0 0-.05-.193c-.065-.035-.128-.073-.192-.11-.027-.02-.14-.041-.193.051zm-.711 3.735-2.967 5.123 3.08-1.774c1.268-.731 1.268-2.556 0-3.285z" }) + ] + } + ); +}); + +export { SiTrillertv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.cjs new file mode 100644 index 000000000..98640dd82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0063A3"; +const SiTrimble = React__namespace.forwardRef(function SiTrimble2({ title = "Trimble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.598 18.338a9.1 9.1 0 0 0 4.799 2.82L2.598 24zm4.764-15.52a9.14 9.14 0 0 0-4.764 2.81V0zM22.854 12l-4.811 2.851a9.65 9.65 0 0 0 .014-5.693zM5.758 4.301a9.4 9.4 0 0 1 5.297-.615 4.3 4.3 0 0 0-2.425.828c-.756-.213-2.185-.369-2.872-.213M14.9 14.602c-2.367 1.828-6.156 1.322-8.459-.605a23 23 0 0 1 2.673-3.483c1.359 1.208 3.398 1.7 5.035.936.38 1.014.633 2.073.751 3.152m-9.72-.42a15.4 15.4 0 0 0-1.621 3.751 8.5 8.5 0 0 1-2.406-5.603 8.54 8.54 0 0 1 1.939-5.79c-.651 2.393.058 5.506 2.088 7.642m8.6-3.636c-1.137.532-2.746.326-3.976-.723a19 19 0 0 1 2.339-1.865 11.4 11.4 0 0 1 1.637 2.588m-1.527-3.893a8.7 8.7 0 0 0-2.519-1.735c.909-.593 3-.629 4.301.72a8.4 8.4 0 0 0-1.782 1.015M5.922 14.88c2.399 1.937 6.253 2.59 9.051.881a7.4 7.4 0 0 1-.468 2.719 8.06 8.06 0 0 1-5.014 1.893 8.05 8.05 0 0 1-5.085-1.684c.136-.689.505-2.016 1.516-3.809m8.653-4.932a12.7 12.7 0 0 0-1.632-2.544 7 7 0 0 1 1.667-1.003c.681.945.861 2.587-.035 3.547m1.544-2.064c.837 1.87.874 4.207-.354 5.844a14 14 0 0 0-.778-2.822c.419-.367.743-.835.941-1.363a3.5 3.5 0 0 0 .191-1.659M9.14 9.096c-.758-1.049-.992-2.402-.229-3.451a7.7 7.7 0 0 1 2.53 1.581 19.5 19.5 0 0 0-2.301 1.87m6.773 5.95a6.5 6.5 0 0 0 1.609-3.749 8.65 8.65 0 0 1-1.71 5.88q.144-1.061.101-2.131M7.956 5.347c-.846 1.347-.467 3.226.487 4.443a24 24 0 0 0-2.725 3.499c-1.876-2.141-2.624-5.575-1.013-7.92a6.5 6.5 0 0 1 3.251-.022" }) + ] + } + ); +}); + +exports.default = SiTrimble; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.d.ts new file mode 100644 index 000000000..b21da2ae9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0063A3"; +declare const SiTrimble: IconType; +export { SiTrimble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.mjs new file mode 100644 index 000000000..95579a893 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrimble.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0063A3"; +const SiTrimble = React.forwardRef(function SiTrimble2({ title = "Trimble", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.598 18.338a9.1 9.1 0 0 0 4.799 2.82L2.598 24zm4.764-15.52a9.14 9.14 0 0 0-4.764 2.81V0zM22.854 12l-4.811 2.851a9.65 9.65 0 0 0 .014-5.693zM5.758 4.301a9.4 9.4 0 0 1 5.297-.615 4.3 4.3 0 0 0-2.425.828c-.756-.213-2.185-.369-2.872-.213M14.9 14.602c-2.367 1.828-6.156 1.322-8.459-.605a23 23 0 0 1 2.673-3.483c1.359 1.208 3.398 1.7 5.035.936.38 1.014.633 2.073.751 3.152m-9.72-.42a15.4 15.4 0 0 0-1.621 3.751 8.5 8.5 0 0 1-2.406-5.603 8.54 8.54 0 0 1 1.939-5.79c-.651 2.393.058 5.506 2.088 7.642m8.6-3.636c-1.137.532-2.746.326-3.976-.723a19 19 0 0 1 2.339-1.865 11.4 11.4 0 0 1 1.637 2.588m-1.527-3.893a8.7 8.7 0 0 0-2.519-1.735c.909-.593 3-.629 4.301.72a8.4 8.4 0 0 0-1.782 1.015M5.922 14.88c2.399 1.937 6.253 2.59 9.051.881a7.4 7.4 0 0 1-.468 2.719 8.06 8.06 0 0 1-5.014 1.893 8.05 8.05 0 0 1-5.085-1.684c.136-.689.505-2.016 1.516-3.809m8.653-4.932a12.7 12.7 0 0 0-1.632-2.544 7 7 0 0 1 1.667-1.003c.681.945.861 2.587-.035 3.547m1.544-2.064c.837 1.87.874 4.207-.354 5.844a14 14 0 0 0-.778-2.822c.419-.367.743-.835.941-1.363a3.5 3.5 0 0 0 .191-1.659M9.14 9.096c-.758-1.049-.992-2.402-.229-3.451a7.7 7.7 0 0 1 2.53 1.581 19.5 19.5 0 0 0-2.301 1.87m6.773 5.95a6.5 6.5 0 0 0 1.609-3.749 8.65 8.65 0 0 1-1.71 5.88q.144-1.061.101-2.131M7.956 5.347c-.846 1.347-.467 3.226.487 4.443a24 24 0 0 0-2.725 3.499c-1.876-2.141-2.624-5.575-1.013-7.92a6.5 6.5 0 0 1 3.251-.022" }) + ] + } + ); +}); + +export { SiTrimble as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.cjs new file mode 100644 index 000000000..ec9517dd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD00A1"; +const SiTrino = React__namespace.forwardRef(function SiTrino2({ title = "Trino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.124 16.8529a.1615.1615 0 1 1 .1576.1614.1577.1577 0 0 1-.1576-.1614zm-5.607-.1576a.1614.1614 0 1 0 0 .3228.1614.1614 0 0 0 0-.3228zm10.1341-.6648v1.9869c-.031.5788-.524 1.0237-1.1029.9954h-.3843a5.0596 5.0596 0 0 1-1.1298 1.7178.3192.3192 0 0 0 0 .465l.2382.2191a.3036.3036 0 0 1 .0385.4304c-1.126 1.3835-2.9669 2.1521-5.0498 2.1521a6.575 6.575 0 0 1-4.8192-1.8985c-.0029-.0032-.0059-.0063-.0087-.0096a.6302.6302 0 0 1 .0548-.8896c.137-.1265.1371-.3462 0-.4727a4.944 4.944 0 0 1-1.126-1.714h-.3497c-.5797.0284-1.0737-.416-1.1068-.9954v-1.9869c.0351-.5779.5286-1.02 1.1068-.9915h.2728a5.7648 5.7648 0 0 1 2.0791-3.0936c-.4227-1.0991-1.1529-3.2551-1.226-5.0075C6.0229 4.4705 6.2189.078 7.8253.001c1.6064-.0768 1.3719 4.0275 1.0991 6.6946a32.732 32.732 0 0 0-.123 4.4503 6.994 6.994 0 0 1 2.4826-.4304 7.2414 7.2414 0 0 1 1.7371.2075c.2614-1.2682.8762-3.574 2.0292-5.1958 1.6717-2.352 3.4357-4.7808 4.6116-4.1006 1.176.6802-.3074 3.1398-1.3297 4.4272-1.0222 1.2874-2.7862 3.2089-3.3742 4.2274-.2114.3843-.4304.8032-.5956 1.1529a5.7375 5.7375 0 0 1 2.9169 3.6125h.073v-2.3058a.3075.3075 0 0 0-.1806-.2844.9148.9148 0 0 1-.5573-.8148 1.0184 1.0184 0 0 1 .9045-.9044c.5593-.0598 1.061.3452 1.1208.9044a.9187.9187 0 0 1-.5534.8148.3074.3074 0 0 0-.1691.2844v2.1522a.3113.3113 0 0 0 .1691.2805.9724.9724 0 0 1 .5648.857zm-1.0222-3.9737a.4345.4345 0 0 0 .4612-.4151.4151.4151 0 1 0-.4612.4151zm-.4227 3.4779c.0978.4794.148.9672.1498 1.4565v.3651h.4113a.3228.3228 0 0 0 .3228-.319v-1.0069c-.0111-.2967-.2733-.5256-.5688-.4957h-.3151zm-3.7278-4.481.611.2383a36.6046 36.6046 0 0 1 2.3828-3.8661c1.2874-1.7255 2.3365-3.5817 1.8715-3.8699-.465-.2883-1.6179 1.2297-2.7708 3.109a34.8978 34.8978 0 0 0-2.0945 4.3887zm-4.0544.6726.0154 1.3335c-.0039.2007.1881.3587.3843.3152a6.4317 6.4317 0 0 1 1.4565-.1653 5.995 5.995 0 0 1 1.4527.1729c.1956.0398.3853-.1153.3843-.3151v-1.3412a.319.319 0 0 0-.2421-.3113 6.664 6.664 0 0 0-1.6026-.1845 6.7093 6.7093 0 0 0-1.6025.1845.3188.3188 0 0 0-.246.3113zm1.7063 6.8637v.3843a.6878.6878 0 0 1-.4996.269c-.3074 0-.538-.4189-.538-.4189a.073.073 0 0 0-.1-.0307l-.0024.0013a.0693.0693 0 0 0-.0245.0947c.0115.0231.2806.4957.6649.4957a.7144.7144 0 0 0 .3843-.1268.3267.3267 0 0 1 .3612 0 .8332.8332 0 0 0 .4727.1345.957.957 0 0 0 .6572-.4803.0692.0692 0 0 0-.0269-.0961.0692.0692 0 0 0-.0999.0269c0 .0231-.2191.3843-.5419.4074a.8036.8036 0 0 1-.5765-.269v-.3843a.3154.3154 0 0 1 .1268-.2537c.196-.1499.415-.3958.415-.4919a.538.538 0 0 0-.5764-.4189c-.3766 0-.6533.2498-.6533.4573 0 .1345.2536.3382.4227.4612a.3226.3226 0 0 1 .1346.2383zM7.783 11.6455l.5765-.3074c-.0192-1.126-.0346-3.1436 0-4.5425.0538-2.0368.1537-4.5732-.5226-4.5463S6.6877 4.2285 6.949 7.007a33.0562 33.0562 0 0 0 .834 4.6385zm-3.305 5.3919a.319.319 0 0 0 .319.319h.3997a3.046 3.046 0 0 1 0-.3651 7.546 7.546 0 0 1 .1461-1.4565c-.0493.0002-.34.0005-.3866-.0021a.4881.4881 0 0 0-.4781.4979v1.0068zm.9184 1.4718a5.3254 5.3254 0 0 1-.123-.5573.3228.3228 0 0 0-.319-.2728h-.4957c.0007.0163-.0015.34.0009.355a.5188.5188 0 0 0 .5526.4827l.3842-.0076zm10.1265 2.917-.0884-.0807a.3229.3229 0 0 0-.3843-.0269 6.9823 6.9823 0 0 1-3.8046 1.0068 6.995 6.995 0 0 1-3.7932-1.0068.3228.3228 0 0 0-.3843.0269l-.0884.0807a.3154.3154 0 0 0 0 .4573 6.0305 6.0305 0 0 0 4.2927 1.5988 6.0453 6.0453 0 0 0 4.2889-1.5988.315.315 0 0 0-.0384-.4573zm1.4488-4.4158c0-2.4557-1.1529-4.3273-3.0245-5.2266-.2081-.1022-.4673.0594-.465.2921v1.3297a.3269.3269 0 0 0 .2037.296c1.7332.7109 2.9284 2.1866 2.9284 3.8776 0 2.2712-2.1559 3.8085-5.3419 3.8085-3.1859 0-5.3419-1.5411-5.3419-3.8085 0-1.691 1.1952-3.1667 2.9284-3.8776a.319.319 0 0 0 .2037-.296v-1.322c.0048-.2315-.2536-.3963-.4612-.2921-1.887.8839-3.0399 2.767-3.0399 5.2073 0 2.9899 2.2866 4.996 5.7108 4.996 3.4282.0001 5.6994-2.0098 5.6994-4.9844zm-8.6084-.538h-.0038a.5842.5842 0 1 0 .0038 0zm5.1614.5919c.0063.3226.2615.5789.584.5725a.5842.5842 0 1 0-.584-.5725zm4.5692.6225h-.4996a.3227.3227 0 0 0-.3151.2728c-.0346.173-.0768.3766-.1268.5573.0163.0007.3861-.0014.4012.0009a.5188.5188 0 0 0 .5366-.5004l.0037-.3306z" }) + ] + } + ); +}); + +exports.default = SiTrino; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.d.ts new file mode 100644 index 000000000..f5404494b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD00A1"; +declare const SiTrino: IconType; +export { SiTrino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.mjs new file mode 100644 index 000000000..fa37ec5fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrino.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD00A1"; +const SiTrino = React.forwardRef(function SiTrino2({ title = "Trino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.124 16.8529a.1615.1615 0 1 1 .1576.1614.1577.1577 0 0 1-.1576-.1614zm-5.607-.1576a.1614.1614 0 1 0 0 .3228.1614.1614 0 0 0 0-.3228zm10.1341-.6648v1.9869c-.031.5788-.524 1.0237-1.1029.9954h-.3843a5.0596 5.0596 0 0 1-1.1298 1.7178.3192.3192 0 0 0 0 .465l.2382.2191a.3036.3036 0 0 1 .0385.4304c-1.126 1.3835-2.9669 2.1521-5.0498 2.1521a6.575 6.575 0 0 1-4.8192-1.8985c-.0029-.0032-.0059-.0063-.0087-.0096a.6302.6302 0 0 1 .0548-.8896c.137-.1265.1371-.3462 0-.4727a4.944 4.944 0 0 1-1.126-1.714h-.3497c-.5797.0284-1.0737-.416-1.1068-.9954v-1.9869c.0351-.5779.5286-1.02 1.1068-.9915h.2728a5.7648 5.7648 0 0 1 2.0791-3.0936c-.4227-1.0991-1.1529-3.2551-1.226-5.0075C6.0229 4.4705 6.2189.078 7.8253.001c1.6064-.0768 1.3719 4.0275 1.0991 6.6946a32.732 32.732 0 0 0-.123 4.4503 6.994 6.994 0 0 1 2.4826-.4304 7.2414 7.2414 0 0 1 1.7371.2075c.2614-1.2682.8762-3.574 2.0292-5.1958 1.6717-2.352 3.4357-4.7808 4.6116-4.1006 1.176.6802-.3074 3.1398-1.3297 4.4272-1.0222 1.2874-2.7862 3.2089-3.3742 4.2274-.2114.3843-.4304.8032-.5956 1.1529a5.7375 5.7375 0 0 1 2.9169 3.6125h.073v-2.3058a.3075.3075 0 0 0-.1806-.2844.9148.9148 0 0 1-.5573-.8148 1.0184 1.0184 0 0 1 .9045-.9044c.5593-.0598 1.061.3452 1.1208.9044a.9187.9187 0 0 1-.5534.8148.3074.3074 0 0 0-.1691.2844v2.1522a.3113.3113 0 0 0 .1691.2805.9724.9724 0 0 1 .5648.857zm-1.0222-3.9737a.4345.4345 0 0 0 .4612-.4151.4151.4151 0 1 0-.4612.4151zm-.4227 3.4779c.0978.4794.148.9672.1498 1.4565v.3651h.4113a.3228.3228 0 0 0 .3228-.319v-1.0069c-.0111-.2967-.2733-.5256-.5688-.4957h-.3151zm-3.7278-4.481.611.2383a36.6046 36.6046 0 0 1 2.3828-3.8661c1.2874-1.7255 2.3365-3.5817 1.8715-3.8699-.465-.2883-1.6179 1.2297-2.7708 3.109a34.8978 34.8978 0 0 0-2.0945 4.3887zm-4.0544.6726.0154 1.3335c-.0039.2007.1881.3587.3843.3152a6.4317 6.4317 0 0 1 1.4565-.1653 5.995 5.995 0 0 1 1.4527.1729c.1956.0398.3853-.1153.3843-.3151v-1.3412a.319.319 0 0 0-.2421-.3113 6.664 6.664 0 0 0-1.6026-.1845 6.7093 6.7093 0 0 0-1.6025.1845.3188.3188 0 0 0-.246.3113zm1.7063 6.8637v.3843a.6878.6878 0 0 1-.4996.269c-.3074 0-.538-.4189-.538-.4189a.073.073 0 0 0-.1-.0307l-.0024.0013a.0693.0693 0 0 0-.0245.0947c.0115.0231.2806.4957.6649.4957a.7144.7144 0 0 0 .3843-.1268.3267.3267 0 0 1 .3612 0 .8332.8332 0 0 0 .4727.1345.957.957 0 0 0 .6572-.4803.0692.0692 0 0 0-.0269-.0961.0692.0692 0 0 0-.0999.0269c0 .0231-.2191.3843-.5419.4074a.8036.8036 0 0 1-.5765-.269v-.3843a.3154.3154 0 0 1 .1268-.2537c.196-.1499.415-.3958.415-.4919a.538.538 0 0 0-.5764-.4189c-.3766 0-.6533.2498-.6533.4573 0 .1345.2536.3382.4227.4612a.3226.3226 0 0 1 .1346.2383zM7.783 11.6455l.5765-.3074c-.0192-1.126-.0346-3.1436 0-4.5425.0538-2.0368.1537-4.5732-.5226-4.5463S6.6877 4.2285 6.949 7.007a33.0562 33.0562 0 0 0 .834 4.6385zm-3.305 5.3919a.319.319 0 0 0 .319.319h.3997a3.046 3.046 0 0 1 0-.3651 7.546 7.546 0 0 1 .1461-1.4565c-.0493.0002-.34.0005-.3866-.0021a.4881.4881 0 0 0-.4781.4979v1.0068zm.9184 1.4718a5.3254 5.3254 0 0 1-.123-.5573.3228.3228 0 0 0-.319-.2728h-.4957c.0007.0163-.0015.34.0009.355a.5188.5188 0 0 0 .5526.4827l.3842-.0076zm10.1265 2.917-.0884-.0807a.3229.3229 0 0 0-.3843-.0269 6.9823 6.9823 0 0 1-3.8046 1.0068 6.995 6.995 0 0 1-3.7932-1.0068.3228.3228 0 0 0-.3843.0269l-.0884.0807a.3154.3154 0 0 0 0 .4573 6.0305 6.0305 0 0 0 4.2927 1.5988 6.0453 6.0453 0 0 0 4.2889-1.5988.315.315 0 0 0-.0384-.4573zm1.4488-4.4158c0-2.4557-1.1529-4.3273-3.0245-5.2266-.2081-.1022-.4673.0594-.465.2921v1.3297a.3269.3269 0 0 0 .2037.296c1.7332.7109 2.9284 2.1866 2.9284 3.8776 0 2.2712-2.1559 3.8085-5.3419 3.8085-3.1859 0-5.3419-1.5411-5.3419-3.8085 0-1.691 1.1952-3.1667 2.9284-3.8776a.319.319 0 0 0 .2037-.296v-1.322c.0048-.2315-.2536-.3963-.4612-.2921-1.887.8839-3.0399 2.767-3.0399 5.2073 0 2.9899 2.2866 4.996 5.7108 4.996 3.4282.0001 5.6994-2.0098 5.6994-4.9844zm-8.6084-.538h-.0038a.5842.5842 0 1 0 .0038 0zm5.1614.5919c.0063.3226.2615.5789.584.5725a.5842.5842 0 1 0-.584-.5725zm4.5692.6225h-.4996a.3227.3227 0 0 0-.3151.2728c-.0346.173-.0768.3766-.1268.5573.0163.0007.3861-.0014.4012.0009a.5188.5188 0 0 0 .5366-.5004l.0037-.3306z" }) + ] + } + ); +}); + +export { SiTrino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.cjs new file mode 100644 index 000000000..5609009e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#34E0A1"; +const SiTripadvisor = React__namespace.forwardRef(function SiTripadvisor2({ title = "Tripadvisor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.006 4.295c-2.67 0-5.338.784-7.645 2.353H0l1.963 2.135a5.997 5.997 0 0 0 4.04 10.43 5.976 5.976 0 0 0 4.075-1.6L12 19.705l1.922-2.09a5.972 5.972 0 0 0 4.072 1.598 6 6 0 0 0 6-5.998 5.982 5.982 0 0 0-1.957-4.432L24 6.648h-4.35a13.573 13.573 0 0 0-7.644-2.353zM12 6.255c1.531 0 3.063.303 4.504.903C13.943 8.138 12 10.43 12 13.1c0-2.671-1.942-4.962-4.504-5.942A11.72 11.72 0 0 1 12 6.256zM6.002 9.157a4.059 4.059 0 1 1 0 8.118 4.059 4.059 0 0 1 0-8.118zm11.992.002a4.057 4.057 0 1 1 .003 8.115 4.057 4.057 0 0 1-.003-8.115zm-11.992 1.93a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256zm11.992 0a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256z" }) + ] + } + ); +}); + +exports.default = SiTripadvisor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.d.ts new file mode 100644 index 000000000..48872d16f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#34E0A1"; +declare const SiTripadvisor: IconType; +export { SiTripadvisor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.mjs new file mode 100644 index 000000000..074682fa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTripadvisor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#34E0A1"; +const SiTripadvisor = React.forwardRef(function SiTripadvisor2({ title = "Tripadvisor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.006 4.295c-2.67 0-5.338.784-7.645 2.353H0l1.963 2.135a5.997 5.997 0 0 0 4.04 10.43 5.976 5.976 0 0 0 4.075-1.6L12 19.705l1.922-2.09a5.972 5.972 0 0 0 4.072 1.598 6 6 0 0 0 6-5.998 5.982 5.982 0 0 0-1.957-4.432L24 6.648h-4.35a13.573 13.573 0 0 0-7.644-2.353zM12 6.255c1.531 0 3.063.303 4.504.903C13.943 8.138 12 10.43 12 13.1c0-2.671-1.942-4.962-4.504-5.942A11.72 11.72 0 0 1 12 6.256zM6.002 9.157a4.059 4.059 0 1 1 0 8.118 4.059 4.059 0 0 1 0-8.118zm11.992.002a4.057 4.057 0 1 1 .003 8.115 4.057 4.057 0 0 1-.003-8.115zm-11.992 1.93a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256zm11.992 0a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256z" }) + ] + } + ); +}); + +export { SiTripadvisor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.cjs new file mode 100644 index 000000000..4e0e74f4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#287DFA"; +const SiTripdotcom = React__namespace.forwardRef(function SiTripdotcom2({ title = "Trip.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.834 9.002c-.68 0-1.29.31-1.707.799v-.514h-1.708v8.348h1.897v-2.923c.416.344.943.551 1.518.551 1.677 0 3.036-1.401 3.036-3.13s-1.36-3.13-3.036-3.13zm-.19 4.516c-.733 0-1.328-.62-1.328-1.385s.595-1.385 1.328-1.385c.734 0 1.328.62 1.328 1.385s-.594 1.385-1.328 1.385zm6.356.607a1.138 1.138 0 1 1-2.277 0 1.138 1.138 0 0 1 2.277 0zM13.205 7.428a1.062 1.062 0 1 1-2.125 0 1.062 1.062 0 0 1 2.125 0zm-2.011 1.859h1.897v5.692h-1.897V9.287zM6.83 8.225H4.364v6.754H2.466V8.225H0V6.63h6.83v1.594zm3.035 1.033c.13 0 .255.012.38.03v1.74a1.55 1.55 0 0 0-.297-.031c-.88 0-1.594.612-1.594 1.593v2.389H6.451V9.287h1.707v.9c.363-.558.991-.93 1.707-.93z" }) + ] + } + ); +}); + +exports.default = SiTripdotcom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.d.ts new file mode 100644 index 000000000..edd288861 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#287DFA"; +declare const SiTripdotcom: IconType; +export { SiTripdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.mjs new file mode 100644 index 000000000..7bb66a842 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTripdotcom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#287DFA"; +const SiTripdotcom = React.forwardRef(function SiTripdotcom2({ title = "Trip.com", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.834 9.002c-.68 0-1.29.31-1.707.799v-.514h-1.708v8.348h1.897v-2.923c.416.344.943.551 1.518.551 1.677 0 3.036-1.401 3.036-3.13s-1.36-3.13-3.036-3.13zm-.19 4.516c-.733 0-1.328-.62-1.328-1.385s.595-1.385 1.328-1.385c.734 0 1.328.62 1.328 1.385s-.594 1.385-1.328 1.385zm6.356.607a1.138 1.138 0 1 1-2.277 0 1.138 1.138 0 0 1 2.277 0zM13.205 7.428a1.062 1.062 0 1 1-2.125 0 1.062 1.062 0 0 1 2.125 0zm-2.011 1.859h1.897v5.692h-1.897V9.287zM6.83 8.225H4.364v6.754H2.466V8.225H0V6.63h6.83v1.594zm3.035 1.033c.13 0 .255.012.38.03v1.74a1.55 1.55 0 0 0-.297-.031c-.88 0-1.594.612-1.594 1.593v2.389H6.451V9.287h1.707v.9c.363-.558.991-.93 1.707-.93z" }) + ] + } + ); +}); + +export { SiTripdotcom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.cjs new file mode 100644 index 000000000..1bc5852ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E32851"; +const SiTrivago = React__namespace.forwardRef(function SiTrivago2({ title = "trivago", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.8112 0a.2537.2537 0 0 0-.1336.0416L2.8311 3.1804a.4265.4265 0 0 0-.1947.3579v9.285c0 .141.1144.2554.2555.2554h5.1808l10.358-5.7274a.4263.4263 0 0 0 .22-.3732V1.6774c0-.1949-.2092-.3182-.3797-.2239L8.0727 7.0923V.2563c0-.1521-.1265-.2589-.2615-.2563zm.0172 14.7072-4.9307.0002c-.1457 0-.2607.1216-.2555.2672C2.822 19.9896 6.9445 24 12.0032 24c5.059 0 9.18-4.01 9.3602-9.0246.0053-.1461-.1102-.2682-.2564-.2682h-4.9319c-.1312 0-.2442.1073-.2545.238-.1592 2.025-1.8517 3.6185-3.9173 3.6185-2.4784 0-3.4806-2.1046-3.4808-2.105-.3197-.6025-.4129-1.1898-.4394-1.5183a.255.255 0 0 0-.2547-.2332Z" }) + ] + } + ); +}); + +exports.default = SiTrivago; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.d.ts new file mode 100644 index 000000000..c30c0e73e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E32851"; +declare const SiTrivago: IconType; +export { SiTrivago as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.mjs new file mode 100644 index 000000000..81d2b13c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivago.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E32851"; +const SiTrivago = React.forwardRef(function SiTrivago2({ title = "trivago", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.8112 0a.2537.2537 0 0 0-.1336.0416L2.8311 3.1804a.4265.4265 0 0 0-.1947.3579v9.285c0 .141.1144.2554.2555.2554h5.1808l10.358-5.7274a.4263.4263 0 0 0 .22-.3732V1.6774c0-.1949-.2092-.3182-.3797-.2239L8.0727 7.0923V.2563c0-.1521-.1265-.2589-.2615-.2563zm.0172 14.7072-4.9307.0002c-.1457 0-.2607.1216-.2555.2672C2.822 19.9896 6.9445 24 12.0032 24c5.059 0 9.18-4.01 9.3602-9.0246.0053-.1461-.1102-.2682-.2564-.2682h-4.9319c-.1312 0-.2442.1073-.2545.238-.1592 2.025-1.8517 3.6185-3.9173 3.6185-2.4784 0-3.4806-2.1046-3.4808-2.105-.3197-.6025-.4129-1.1898-.4394-1.5183a.255.255 0 0 0-.2547-.2332Z" }) + ] + } + ); +}); + +export { SiTrivago as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.cjs new file mode 100644 index 000000000..d09ee1ac8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1904DA"; +const SiTrivy = React__namespace.forwardRef(function SiTrivy2({ title = "Trivy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.375 7.311 1.962 5.918a.1.1 0 0 1 0-.174L11.828.047a.343.343 0 0 1 .344 0l9.864 5.696a.1.1 0 0 1 0 .175L19.624 7.31a.962.962 0 0 1-.052-.074c-.914-1.478-2.124-2.592-3.596-3.31-4.088-1.994-9.164-.505-11.6 3.385ZM12.262 23.899v-3.14c5.693-2.087 9.01-7.766 7.588-12.985l2.436-1.42a.1.1 0 0 1 .151.088v11.645a.1.1 0 0 1-.05.087l-9.973 5.812a.1.1 0 0 1-.152-.087Zm-.559-3.141v3.14a.1.1 0 0 1-.151.086l-9.933-5.81a.114.114 0 0 1-.056-.099V6.436a.1.1 0 0 1 .15-.087l2.44 1.41c-1.455 5.307 1.846 10.993 7.55 13ZM7.013 8.834 4.807 7.561c2.306-3.665 7.094-5.066 10.95-3.186 1.385.676 2.526 1.727 3.39 3.124l.04.062-2.195 1.268a5.57 5.57 0 0 0-2.429-2.307c-2.603-1.27-5.901-.253-7.552 2.311Zm9.337 5.2c.813-1.371 1.088-2.99.798-4.685l2.255-1.314c1.245 4.86-1.864 10.169-7.14 12.192v-3.072c1.86-.67 3.272-1.747 4.087-3.12ZM4.6 8.018l2.27 1.31c-.225 1.571.112 3.204.951 4.606.919 1.536 2.225 2.629 3.881 3.25v3.045C6.327 18.25 3.297 13.042 4.601 8.017Zm5.303 2.486-2.459-1.42c1.52-2.34 4.53-3.268 6.9-2.112a5.075 5.075 0 0 1 2.216 2.108l-2.471 1.427a2.311 2.311 0 0 0-2.03-1.195c-.825 0-1.645.43-2.156 1.192Zm4.338.522 2.443-1.408c.22 1.51-.043 2.945-.765 4.162-.735 1.238-1.998 2.224-3.658 2.856v-2.631c1.25-.691 1.968-1.771 1.98-2.979ZM8.25 13.676A6.576 6.576 0 0 1 7.34 9.6l2.446 1.412c-.016 1.271.73 2.437 1.917 2.997v2.624a6.977 6.977 0 0 1-3.453-2.956Zm3.853-.148-.137.073-.157-.075c-1.023-.504-1.524-1.606-1.557-2.417a1.99 1.99 0 0 1 .004-.23 2.153 2.153 0 0 1 1.163-.957c.508-.178 1.034-.153 1.444.071.6.327.84.797.86.86.008.156.004.253.004.256-.038.981-.63 1.863-1.624 2.419Z" }) + ] + } + ); +}); + +exports.default = SiTrivy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.d.ts new file mode 100644 index 000000000..a815b97a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1904DA"; +declare const SiTrivy: IconType; +export { SiTrivy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.mjs new file mode 100644 index 000000000..589fd6368 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrivy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1904DA"; +const SiTrivy = React.forwardRef(function SiTrivy2({ title = "Trivy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.375 7.311 1.962 5.918a.1.1 0 0 1 0-.174L11.828.047a.343.343 0 0 1 .344 0l9.864 5.696a.1.1 0 0 1 0 .175L19.624 7.31a.962.962 0 0 1-.052-.074c-.914-1.478-2.124-2.592-3.596-3.31-4.088-1.994-9.164-.505-11.6 3.385ZM12.262 23.899v-3.14c5.693-2.087 9.01-7.766 7.588-12.985l2.436-1.42a.1.1 0 0 1 .151.088v11.645a.1.1 0 0 1-.05.087l-9.973 5.812a.1.1 0 0 1-.152-.087Zm-.559-3.141v3.14a.1.1 0 0 1-.151.086l-9.933-5.81a.114.114 0 0 1-.056-.099V6.436a.1.1 0 0 1 .15-.087l2.44 1.41c-1.455 5.307 1.846 10.993 7.55 13ZM7.013 8.834 4.807 7.561c2.306-3.665 7.094-5.066 10.95-3.186 1.385.676 2.526 1.727 3.39 3.124l.04.062-2.195 1.268a5.57 5.57 0 0 0-2.429-2.307c-2.603-1.27-5.901-.253-7.552 2.311Zm9.337 5.2c.813-1.371 1.088-2.99.798-4.685l2.255-1.314c1.245 4.86-1.864 10.169-7.14 12.192v-3.072c1.86-.67 3.272-1.747 4.087-3.12ZM4.6 8.018l2.27 1.31c-.225 1.571.112 3.204.951 4.606.919 1.536 2.225 2.629 3.881 3.25v3.045C6.327 18.25 3.297 13.042 4.601 8.017Zm5.303 2.486-2.459-1.42c1.52-2.34 4.53-3.268 6.9-2.112a5.075 5.075 0 0 1 2.216 2.108l-2.471 1.427a2.311 2.311 0 0 0-2.03-1.195c-.825 0-1.645.43-2.156 1.192Zm4.338.522 2.443-1.408c.22 1.51-.043 2.945-.765 4.162-.735 1.238-1.998 2.224-3.658 2.856v-2.631c1.25-.691 1.968-1.771 1.98-2.979ZM8.25 13.676A6.576 6.576 0 0 1 7.34 9.6l2.446 1.412c-.016 1.271.73 2.437 1.917 2.997v2.624a6.977 6.977 0 0 1-3.453-2.956Zm3.853-.148-.137.073-.157-.075c-1.023-.504-1.524-1.606-1.557-2.417a1.99 1.99 0 0 1 .004-.23 2.153 2.153 0 0 1 1.163-.957c.508-.178 1.034-.153 1.444.071.6.327.84.797.86.86.008.156.004.253.004.256-.038.981-.63 1.863-1.624 2.419Z" }) + ] + } + ); +}); + +export { SiTrivy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.cjs new file mode 100644 index 000000000..87a73d5d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2D004B"; +const SiTrove = React__namespace.forwardRef(function SiTrove2({ title = "Trove", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.922 8.43c-1.393.035-2.506 1.213-2.486 2.606a2.534 2.534 0 0 0 1.763 2.392l.25-1.123a1.424 1.424 0 0 1-.875-1.307c0-.883.816-1.594 1.72-1.396.56.122.994.58 1.095 1.143a1.419 1.419 0 0 1-.854 1.558l.25 1.123a2.537 2.537 0 0 0 1.764-2.428 2.557 2.557 0 0 0-2.627-2.568zM.189 8.5a.138.138 0 0 0-.136.137v.776c0 .07.058.134.136.134h1.016v3.797a.14.14 0 0 0 .135.135h.853a.141.141 0 0 0 .137-.135V9.547h1.016a.136.136 0 0 0 .136-.134v-.776a.138.138 0 0 0-.136-.137zm4.504 0a.136.136 0 0 0-.134.137v4.707c0 .071.056.137.134.137h.846a.143.143 0 0 0 .137-.137v-1.812h.49l.945 1.884a.13.13 0 0 0 .114.065h.947c.12 0 .17-.115.121-.207l-.975-1.807c.62-.249 1.053-.775 1.053-1.43 0-.846-.697-1.537-1.55-1.537zm10.356 0c-.107 0-.164.094-.121.186l2.218 4.787a.136.136 0 0 0 .122.078h.072c.057 0 .1-.035.12-.078l2.233-4.787c.043-.092-.014-.186-.12-.186h-.946a.14.14 0 0 0-.121.079l-1.174 2.597h-.043L16.115 8.58a.14.14 0 0 0-.12-.079zm5.805 0a.138.138 0 0 0-.137.137v4.707c0 .071.058.137.137.137h2.943a.136.136 0 0 0 .135-.137v-.775a.134.134 0 0 0-.135-.135h-1.97v-.96h1.622a.134.134 0 0 0 .135-.136v-.775a.14.14 0 0 0-.135-.135h-1.623v-.88h1.97a.134.134 0 0 0 .136-.135v-.776a.136.136 0 0 0-.135-.137zM5.676 9.518h1.053c.291 0 .539.242.539.541 0 .299-.248.568-.54.568H5.677zM.135 14.526A.134.134 0 0 0 0 14.66v.775c0 .071.056.135.135.135h10.588l.232-1.045zm12.896 0 .233 1.045h10.601a.134.134 0 0 0 .135-.135v-.775a.134.134 0 0 0-.135-.135z" }) + ] + } + ); +}); + +exports.default = SiTrove; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.d.ts new file mode 100644 index 000000000..99bd2b62e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2D004B"; +declare const SiTrove: IconType; +export { SiTrove as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.mjs new file mode 100644 index 000000000..4adf0557a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrove.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2D004B"; +const SiTrove = React.forwardRef(function SiTrove2({ title = "Trove", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.922 8.43c-1.393.035-2.506 1.213-2.486 2.606a2.534 2.534 0 0 0 1.763 2.392l.25-1.123a1.424 1.424 0 0 1-.875-1.307c0-.883.816-1.594 1.72-1.396.56.122.994.58 1.095 1.143a1.419 1.419 0 0 1-.854 1.558l.25 1.123a2.537 2.537 0 0 0 1.764-2.428 2.557 2.557 0 0 0-2.627-2.568zM.189 8.5a.138.138 0 0 0-.136.137v.776c0 .07.058.134.136.134h1.016v3.797a.14.14 0 0 0 .135.135h.853a.141.141 0 0 0 .137-.135V9.547h1.016a.136.136 0 0 0 .136-.134v-.776a.138.138 0 0 0-.136-.137zm4.504 0a.136.136 0 0 0-.134.137v4.707c0 .071.056.137.134.137h.846a.143.143 0 0 0 .137-.137v-1.812h.49l.945 1.884a.13.13 0 0 0 .114.065h.947c.12 0 .17-.115.121-.207l-.975-1.807c.62-.249 1.053-.775 1.053-1.43 0-.846-.697-1.537-1.55-1.537zm10.356 0c-.107 0-.164.094-.121.186l2.218 4.787a.136.136 0 0 0 .122.078h.072c.057 0 .1-.035.12-.078l2.233-4.787c.043-.092-.014-.186-.12-.186h-.946a.14.14 0 0 0-.121.079l-1.174 2.597h-.043L16.115 8.58a.14.14 0 0 0-.12-.079zm5.805 0a.138.138 0 0 0-.137.137v4.707c0 .071.058.137.137.137h2.943a.136.136 0 0 0 .135-.137v-.775a.134.134 0 0 0-.135-.135h-1.97v-.96h1.622a.134.134 0 0 0 .135-.136v-.775a.14.14 0 0 0-.135-.135h-1.623v-.88h1.97a.134.134 0 0 0 .136-.135v-.776a.136.136 0 0 0-.135-.137zM5.676 9.518h1.053c.291 0 .539.242.539.541 0 .299-.248.568-.54.568H5.677zM.135 14.526A.134.134 0 0 0 0 14.66v.775c0 .071.056.135.135.135h10.588l.232-1.045zm12.896 0 .233 1.045h10.601a.134.134 0 0 0 .135-.135v-.775a.134.134 0 0 0-.135-.135z" }) + ] + } + ); +}); + +export { SiTrove as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.cjs new file mode 100644 index 000000000..aa00aa74a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2596BE"; +const SiTrpc = React__namespace.forwardRef(function SiTrpc2({ title = "tRPC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.62-5.38 12-12 12S0 18.62 0 12 5.38 0 12 0s12 5.38 12 12ZM1.21 12A10.78 10.78 0 0 0 12 22.79 10.78 10.78 0 0 0 22.79 12 10.78 10.78 0 0 0 12 1.21 10.78 10.78 0 0 0 1.21 12Zm10.915-6.086 2.162 1.248a.25.25 0 0 1 .125.217v1.103l2.473 1.428a.25.25 0 0 1 .125.217v2.355l.955.551a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-.956-.552-2.472 1.427a.25.25 0 0 1-.25 0l-2.472-1.427-.956.552a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l.955-.551v-2.355a.25.25 0 0 1 .125-.217l2.473-1.428V7.38a.25.25 0 0 1 .125-.217l2.162-1.248a.25.25 0 0 1 .25 0Zm1.268 10.049a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l2.16-1.248a.25.25 0 0 1 .25 0l.707.408v-1.922l-2.098-1.21v.814a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V9.06L7.49 10.271v1.922l.707-.408a.25.25 0 0 1 .25 0l2.16 1.248a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-.705.408L12 17.582l2.098-1.211ZM10.088 9.73l1.662.96V8.766l-1.662-.955Zm3.824 0V7.811l-1.662.955v1.924ZM12 6.418l-1.66.96 1.66.954 1.66-.954Zm-5.59 9.184 1.66.958v-1.921l-1.66-.956Zm3.822 0v-1.92l-1.662.957v1.923Zm-1.91-3.311-1.662.96 1.661.955 1.66-.956Zm5.446 3.31 1.66.96v-1.922l-1.66-.956Zm3.822 0v-1.918l-1.662.956v1.922Zm-1.912-3.31-1.66.96 1.66.955 1.66-.956Z" }) + ] + } + ); +}); + +exports.default = SiTrpc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.d.ts new file mode 100644 index 000000000..58c334361 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2596BE"; +declare const SiTrpc: IconType; +export { SiTrpc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.mjs new file mode 100644 index 000000000..f68996a57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrpc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2596BE"; +const SiTrpc = React.forwardRef(function SiTrpc2({ title = "tRPC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.62-5.38 12-12 12S0 18.62 0 12 5.38 0 12 0s12 5.38 12 12ZM1.21 12A10.78 10.78 0 0 0 12 22.79 10.78 10.78 0 0 0 22.79 12 10.78 10.78 0 0 0 12 1.21 10.78 10.78 0 0 0 1.21 12Zm10.915-6.086 2.162 1.248a.25.25 0 0 1 .125.217v1.103l2.473 1.428a.25.25 0 0 1 .125.217v2.355l.955.551a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-.956-.552-2.472 1.427a.25.25 0 0 1-.25 0l-2.472-1.427-.956.552a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l.955-.551v-2.355a.25.25 0 0 1 .125-.217l2.473-1.428V7.38a.25.25 0 0 1 .125-.217l2.162-1.248a.25.25 0 0 1 .25 0Zm1.268 10.049a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l2.16-1.248a.25.25 0 0 1 .25 0l.707.408v-1.922l-2.098-1.21v.814a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V9.06L7.49 10.271v1.922l.707-.408a.25.25 0 0 1 .25 0l2.16 1.248a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-.705.408L12 17.582l2.098-1.211ZM10.088 9.73l1.662.96V8.766l-1.662-.955Zm3.824 0V7.811l-1.662.955v1.924ZM12 6.418l-1.66.96 1.66.954 1.66-.954Zm-5.59 9.184 1.66.958v-1.921l-1.66-.956Zm3.822 0v-1.92l-1.662.957v1.923Zm-1.91-3.311-1.662.96 1.661.955 1.66-.956Zm5.446 3.31 1.66.96v-1.922l-1.66-.956Zm3.822 0v-1.918l-1.662.956v1.922Zm-1.912-3.31-1.66.96 1.66.955 1.66-.956Z" }) + ] + } + ); +}); + +export { SiTrpc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.cjs new file mode 100644 index 000000000..c1c681de1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0095D5"; +const SiTruenas = React__namespace.forwardRef(function SiTruenas2({ title = "TrueNAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 10.049v5.114l-10.949 6.324v-5.114L24 10.049zm-24 0v5.114l10.956 6.324v-5.114L0 10.049zm12.004-.605l-4.433 2.559 4.433 2.559 4.429-2.559-4.429-2.559zm10.952-1.207l-9.905-5.723v5.118l5.473 3.164 4.432-2.559zm-12-.605V2.513L1.044 8.236l4.432 2.555 5.48-3.159z" }) + ] + } + ); +}); + +exports.default = SiTruenas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.d.ts new file mode 100644 index 000000000..b3ed54468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0095D5"; +declare const SiTruenas: IconType; +export { SiTruenas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.mjs new file mode 100644 index 000000000..f6a7eeefa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTruenas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0095D5"; +const SiTruenas = React.forwardRef(function SiTruenas2({ title = "TrueNAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 10.049v5.114l-10.949 6.324v-5.114L24 10.049zm-24 0v5.114l10.956 6.324v-5.114L0 10.049zm12.004-.605l-4.433 2.559 4.433 2.559 4.429-2.559-4.429-2.559zm10.952-1.207l-9.905-5.723v5.118l5.473 3.164 4.432-2.559zm-12-.605V2.513L1.044 8.236l4.432 2.555 5.48-3.159z" }) + ] + } + ); +}); + +export { SiTruenas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.cjs new file mode 100644 index 000000000..bb2e074f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E71DA"; +const SiTrueup = React__namespace.forwardRef(function SiTrueup2({ title = "TrueUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.17 4.8a1.2 1.2 0 1 0 .06 2.4 1.2 1.2 0 0 0-.06-2.4Zm-8.4 0a1.2 1.2 0 1 0 .06 2.4 1.2 1.2 0 0 0-.06-2.4ZM10.2 0a6.608 6.608 0 0 0-6.6 6.6v4.8A12.614 12.614 0 0 0 16.2 24h3.6a.599.599 0 0 0 .6-.6V6.6A6.608 6.608 0 0 0 13.8 0Zm0 1.2h3.6a5.33 5.33 0 0 1 2.525.656A6.146 6.146 0 0 0 12 5.631a6.146 6.146 0 0 0-4.325-3.775A5.33 5.33 0 0 1 10.2 1.2ZM6.333 2.844C9.505 3.13 11.4 5.403 11.4 9a.6.6 0 0 0 1.2 0c0-3.597 1.895-5.87 5.067-6.156A5.375 5.375 0 0 1 19.2 6.6v.6c0 3.905-4.423 7.2-7.2 7.2s-7.2-3.295-7.2-7.2v-.6c0-1.404.551-2.752 1.533-3.756ZM4.8 11.068C6.505 13.758 9.681 15.6 12 15.6c1.09 0 2.371-.413 3.6-1.124V16.2c0 2.932.782 5.138 2.316 6.6H16.2A11.413 11.413 0 0 1 4.8 11.4Zm14.4 0v11.25c-1.609-1.21-2.4-3.218-2.4-6.118v-2.523a10.32 10.32 0 0 0 2.4-2.61z" }) + ] + } + ); +}); + +exports.default = SiTrueup; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.d.ts new file mode 100644 index 000000000..da5aaf342 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E71DA"; +declare const SiTrueup: IconType; +export { SiTrueup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.mjs new file mode 100644 index 000000000..fea7ee8d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrueup.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E71DA"; +const SiTrueup = React.forwardRef(function SiTrueup2({ title = "TrueUp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.17 4.8a1.2 1.2 0 1 0 .06 2.4 1.2 1.2 0 0 0-.06-2.4Zm-8.4 0a1.2 1.2 0 1 0 .06 2.4 1.2 1.2 0 0 0-.06-2.4ZM10.2 0a6.608 6.608 0 0 0-6.6 6.6v4.8A12.614 12.614 0 0 0 16.2 24h3.6a.599.599 0 0 0 .6-.6V6.6A6.608 6.608 0 0 0 13.8 0Zm0 1.2h3.6a5.33 5.33 0 0 1 2.525.656A6.146 6.146 0 0 0 12 5.631a6.146 6.146 0 0 0-4.325-3.775A5.33 5.33 0 0 1 10.2 1.2ZM6.333 2.844C9.505 3.13 11.4 5.403 11.4 9a.6.6 0 0 0 1.2 0c0-3.597 1.895-5.87 5.067-6.156A5.375 5.375 0 0 1 19.2 6.6v.6c0 3.905-4.423 7.2-7.2 7.2s-7.2-3.295-7.2-7.2v-.6c0-1.404.551-2.752 1.533-3.756ZM4.8 11.068C6.505 13.758 9.681 15.6 12 15.6c1.09 0 2.371-.413 3.6-1.124V16.2c0 2.932.782 5.138 2.316 6.6H16.2A11.413 11.413 0 0 1 4.8 11.4Zm14.4 0v11.25c-1.609-1.21-2.4-3.218-2.4-6.118v-2.523a10.32 10.32 0 0 0 2.4-2.61z" }) + ] + } + ); +}); + +export { SiTrueup as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.cjs new file mode 100644 index 000000000..83a490361 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0B09"; +const SiTrulia = React__namespace.forwardRef(function SiTrulia2({ title = "trulia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.6958 8.9368a.6678.6678 0 0 0 .095 1.329.6678.6678 0 0 0 .6678-.668.6678.6678 0 0 0-.7628-.661zm-4.3956.2812v1.121h.7513v3.4726h-.7513v1.121h2.6262v-1.121h-.7513V9.218Zm-12.549.121v1.3814H.0001v1.1281h.7513v1.0852c0 1.1799.9502 2.1362 2.1226 2.1362a2.1126 2.1126 0 0 0 .4608-.0507v-1.115a1.1025 1.1025 0 0 1-.3837.0685c-.5958 0-1.0789-.4689-1.0789-1.047v-1.0772H3.335v-1.1281H1.872V9.339Zm20.92 1.2609c-1.1147-.005-2.0196.9806-2.019 2.1905.0005 1.21.9043 2.1952 2.019 2.1905.0292 0 .0598-.0009.0877-.002.4221-.0111.8757-.2098 1.113-.488v.4218H24v-4.2458h-1.1275l-.0005.4236c-.2385-.2791-.692-.477-1.113-.4879-.0292-.002-.0585-.002-.0878-.002zm-14.8245.0473c-.5173.003-.9275.153-1.2964.654l-.2277-.64h-1.098v1.1271h.5195v3.1444h1.118v-2.1983a.9887.9887 0 0 1 .9851-.9906h.339v-1.0966Zm9.6549.047v1.1172h.7513v3.121h1.8736v-1.117h-.7514l.001-3.1212zm-8.2605.0298v2.2125c0 1.1773.9494 2.1315 2.1195 2.1315s2.1193-.9525 2.1193-2.1298v-2.214h-1.1186v2.2539a1.0018 1.0018 0 1 1-2.001 0v-2.254zm13.5857.9717c.5932 0 1.074.5008 1.0746 1.1191.0005.6184-.4814 1.1192-1.0746 1.1192-.5933 0-1.0742-.5008-1.075-1.1192-.0008-.6183.4817-1.1191 1.075-1.1191z" }) + ] + } + ); +}); + +exports.default = SiTrulia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.d.ts new file mode 100644 index 000000000..45caf6ae0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0B09"; +declare const SiTrulia: IconType; +export { SiTrulia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.mjs new file mode 100644 index 000000000..724c05cb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrulia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0B09"; +const SiTrulia = React.forwardRef(function SiTrulia2({ title = "trulia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.6958 8.9368a.6678.6678 0 0 0 .095 1.329.6678.6678 0 0 0 .6678-.668.6678.6678 0 0 0-.7628-.661zm-4.3956.2812v1.121h.7513v3.4726h-.7513v1.121h2.6262v-1.121h-.7513V9.218Zm-12.549.121v1.3814H.0001v1.1281h.7513v1.0852c0 1.1799.9502 2.1362 2.1226 2.1362a2.1126 2.1126 0 0 0 .4608-.0507v-1.115a1.1025 1.1025 0 0 1-.3837.0685c-.5958 0-1.0789-.4689-1.0789-1.047v-1.0772H3.335v-1.1281H1.872V9.339Zm20.92 1.2609c-1.1147-.005-2.0196.9806-2.019 2.1905.0005 1.21.9043 2.1952 2.019 2.1905.0292 0 .0598-.0009.0877-.002.4221-.0111.8757-.2098 1.113-.488v.4218H24v-4.2458h-1.1275l-.0005.4236c-.2385-.2791-.692-.477-1.113-.4879-.0292-.002-.0585-.002-.0878-.002zm-14.8245.0473c-.5173.003-.9275.153-1.2964.654l-.2277-.64h-1.098v1.1271h.5195v3.1444h1.118v-2.1983a.9887.9887 0 0 1 .9851-.9906h.339v-1.0966Zm9.6549.047v1.1172h.7513v3.121h1.8736v-1.117h-.7514l.001-3.1212zm-8.2605.0298v2.2125c0 1.1773.9494 2.1315 2.1195 2.1315s2.1193-.9525 2.1193-2.1298v-2.214h-1.1186v2.2539a1.0018 1.0018 0 1 1-2.001 0v-2.254zm13.5857.9717c.5932 0 1.074.5008 1.0746 1.1191.0005.6184-.4814 1.1192-1.0746 1.1192-.5933 0-1.0742-.5008-1.075-1.1192-.0008-.6183.4817-1.1191 1.075-1.1191z" }) + ] + } + ); +}); + +export { SiTrulia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.cjs new file mode 100644 index 000000000..2af7c0280 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDC0F"; +const SiTrustedshops = React__namespace.forwardRef(function SiTrustedshops2({ title = "Trusted Shops", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.187 14.332c-1.1 1.626-2.63 3.108-4.687 3.108-2.175 0-3.442-1.362-3.442-3.562 0-3.561 2.63-7.052 6.335-7.052 1.242 0 2.916.502 2.916 2.009 0 2.7-4.231 3.609-6.311 4.135-.072.457-.143.908-.143 1.362 0 .933.501 1.793 1.53 1.793 1.338 0 2.412-1.29 3.203-2.247zm-1.148-5.808c0-.55-.31-.978-.884-.978-1.722 0-2.608 3.346-2.94 4.66 1.601-.48 3.824-1.794 3.824-3.682zM12 0a12 12 0 1 0 12 11.997A11.997 11.997 0 0 0 12 0zm-.1 19.523a7.563 7.563 0 1 1 7.564-7.563 7.563 7.563 0 0 1-7.563 7.56Z" }) + ] + } + ); +}); + +exports.default = SiTrustedshops; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.d.ts new file mode 100644 index 000000000..15a8789b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDC0F"; +declare const SiTrustedshops: IconType; +export { SiTrustedshops as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.mjs new file mode 100644 index 000000000..6a74930e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustedshops.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDC0F"; +const SiTrustedshops = React.forwardRef(function SiTrustedshops2({ title = "Trusted Shops", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.187 14.332c-1.1 1.626-2.63 3.108-4.687 3.108-2.175 0-3.442-1.362-3.442-3.562 0-3.561 2.63-7.052 6.335-7.052 1.242 0 2.916.502 2.916 2.009 0 2.7-4.231 3.609-6.311 4.135-.072.457-.143.908-.143 1.362 0 .933.501 1.793 1.53 1.793 1.338 0 2.412-1.29 3.203-2.247zm-1.148-5.808c0-.55-.31-.978-.884-.978-1.722 0-2.608 3.346-2.94 4.66 1.601-.48 3.824-1.794 3.824-3.682zM12 0a12 12 0 1 0 12 11.997A11.997 11.997 0 0 0 12 0zm-.1 19.523a7.563 7.563 0 1 1 7.564-7.563 7.563 7.563 0 0 1-7.563 7.56Z" }) + ] + } + ); +}); + +export { SiTrustedshops as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.cjs new file mode 100644 index 000000000..4db83d869 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B67A"; +const SiTrustpilot = React__namespace.forwardRef(function SiTrustpilot2({ title = "Trustpilot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.227 16.67l2.19 6.742-7.413-5.388 5.223-1.354zM24 9.31h-9.165L12.005.589l-2.84 8.723L0 9.3l7.422 5.397-2.84 8.714 7.422-5.388 4.583-3.326L24 9.311z" }) + ] + } + ); +}); + +exports.default = SiTrustpilot; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.d.ts new file mode 100644 index 000000000..a2d68e53f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B67A"; +declare const SiTrustpilot: IconType; +export { SiTrustpilot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.mjs new file mode 100644 index 000000000..ebbc2350a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTrustpilot.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B67A"; +const SiTrustpilot = React.forwardRef(function SiTrustpilot2({ title = "Trustpilot", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.227 16.67l2.19 6.742-7.413-5.388 5.223-1.354zM24 9.31h-9.165L12.005.589l-2.84 8.723L0 9.3l7.422 5.397-2.84 8.714 7.422-5.388 4.583-3.326L24 9.311z" }) + ] + } + ); +}); + +export { SiTrustpilot as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.cjs new file mode 100644 index 000000000..f901e3621 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212C42"; +const SiTryhackme = React__namespace.forwardRef(function SiTryhackme2({ title = "TryHackMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.705 0C7.54 0 4.902 2.285 4.349 5.291a4.525 4.525 0 0 0-4.107 4.5 4.525 4.525 0 0 0 4.52 4.52h6.761a.625.625 0 1 0 0-1.25H4.761a3.273 3.273 0 0 1-3.27-3.27A3.273 3.273 0 0 1 6.59 7.08a.625.625 0 0 0 .7-1.035 4.488 4.488 0 0 0-1.68-.69 5.223 5.223 0 0 1 5.096-4.104 5.221 5.221 0 0 1 5.174 4.57 4.489 4.489 0 0 0-.488.305.625.625 0 1 0 .731 1.013 3.245 3.245 0 0 1 1.912-.616 3.278 3.278 0 0 1 3.203 2.61.625.625 0 0 0 1.225-.251 4.533 4.533 0 0 0-4.428-3.61 4.54 4.54 0 0 0-.958.105C16.556 2.328 13.9 0 10.705 0zm5.192 10.64a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.054.514c0 .181.018.353.054.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .309-.296c.08-.124.137-.267.173-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.309-.291.917.917 0 0 0-.46-.108zm6.486 0a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.053.514c0 .181.017.353.053.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .31-.296c.078-.124.136-.267.172-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.308-.291.916.916 0 0 0-.461-.108zm-8.537.068l-.84.618.313.43.476-.368v1.877h.603v-2.557zm6.486 0l-.841.618.314.43.477-.368v1.877h.603v-2.557zm-4.435.445c.08 0 .143.028.193.084.05.057.087.127.114.21.026.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.028.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.248.248 0 0 1-.195-.086.584.584 0 0 1-.118-.209 1.245 1.245 0 0 1-.056-.27 2.645 2.645 0 0 1 0-.533c.01-.096.029-.186.056-.27a.583.583 0 0 1 .118-.209.25.25 0 0 1 .195-.084zm6.486 0c.08 0 .144.028.193.084.05.057.087.127.114.21.027.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.027.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.249.249 0 0 1-.195-.086.581.581 0 0 1-.117-.209 1.245 1.245 0 0 1-.056-.27 2.642 2.642 0 0 1 0-.533c.01-.096.028-.186.056-.27a.58.58 0 0 1 .117-.209.25.25 0 0 1 .195-.084zm-2.191 3.51a.93.93 0 0 0-.463.109.908.908 0 0 0-.312.291c-.08.122-.139.263-.175.426a2.383 2.383 0 0 0-.054.514c0 .18.018.353.054.516.036.164.094.308.175.432a.91.91 0 0 0 .312.296.92.92 0 0 0 .463.11c.18 0 .333-.037.46-.11a.892.892 0 0 0 .308-.296 1.32 1.32 0 0 0 .174-.432c.036-.163.054-.335.054-.516 0-.18-.018-.352-.054-.514a1.274 1.274 0 0 0-.174-.426.89.89 0 0 0-.309-.291.918.918 0 0 0-.46-.108zm-6.402.07l-.841.617.314.43.476-.369v1.878h.604v-2.557zm2.125 0l-.841.617.314.43.477-.369v1.878h.603v-2.557zm2.116 0l-.84.617.313.43.477-.369v1.878h.603v-2.557zm2.16.443c.08 0 .144.028.194.085a.605.605 0 0 1 .114.21c.026.083.044.172.053.269a2.639 2.639 0 0 1 0 .532 1.28 1.28 0 0 1-.053.27.585.585 0 0 1-.114.21.244.244 0 0 1-.193.085.25.25 0 0 1-.196-.085.589.589 0 0 1-.117-.21 1.245 1.245 0 0 1-.056-.27 2.597 2.597 0 0 1 0-.532c.01-.097.028-.186.056-.27a.589.589 0 0 1 .117-.209.249.249 0 0 1 .196-.085zm-6.729 3.073a.676.676 0 0 0-.335.078.661.661 0 0 0-.227.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.93.93 0 0 0 .127.313.65.65 0 0 0 .227.215c.092.053.204.08.335.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .225-.215c.057-.09.1-.194.125-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.931.931 0 0 0-.125-.31.658.658 0 0 0-.225-.21.667.667 0 0 0-.334-.08zm3.086 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.907.907 0 0 0-.127.31 1.69 1.69 0 0 0-.04.373c0 .131.013.256.04.375a.928.928 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.752 1.752 0 0 0 0-.748.94.94 0 0 0-.126-.31.657.657 0 0 0-.224-.21.667.667 0 0 0-.334-.08zm5.108 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.931.931 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08.13 0 .243-.027.334-.08a.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.943.943 0 0 0-.126-.31.657.657 0 0 0-.224-.21.668.668 0 0 0-.334-.08zm-6.658.05l-.61.448.227.311.346-.266v1.362h.438v-1.856zm3.068 0l-.61.448.227.311.346-.266v1.362h.438v-1.856zm5.108 0l-.611.448.228.311.346-.266v1.362h.438v-1.856zm-9.712.322c.058 0 .105.02.14.062a.421.421 0 0 1 .083.151.96.96 0 0 1 .04.196 1.932 1.932 0 0 1 0 .386.954.954 0 0 1-.04.197.421.421 0 0 1-.083.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.427.427 0 0 1-.085-.153.887.887 0 0 1-.041-.197 1.96 1.96 0 0 1 0-.386.893.893 0 0 1 .04-.196.42.42 0 0 1 .086-.151.181.181 0 0 1 .141-.062zm3.086 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.94.94 0 0 1 .04.196 1.906 1.906 0 0 1 0 .386.93.93 0 0 1-.04.197.421.421 0 0 1-.082.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.42.42 0 0 1-.086-.153.846.846 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.849.849 0 0 1 .041-.196.42.42 0 0 1 .086-.151.182.182 0 0 1 .141-.062zm5.108 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.92.92 0 0 1 .04.196 1.963 1.963 0 0 1 0 .386.943.943 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.061.18.18 0 0 1-.142-.06.437.437 0 0 1-.085-.153.95.95 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.959.959 0 0 1 .04-.196.47.47 0 0 1 .086-.151.181.181 0 0 1 .142-.062zm-1.684 1.814a.675.675 0 0 0-.336.079.66.66 0 0 0-.227.21.91.91 0 0 0-.127.31 1.731 1.731 0 0 0 0 .748.939.939 0 0 0 .127.314c.059.09.134.162.227.215.093.053.205.08.336.08a.66.66 0 0 0 .334-.08.648.648 0 0 0 .224-.215c.058-.09.1-.195.126-.314a1.737 1.737 0 0 0-.001-.747.928.928 0 0 0-.125-.31.65.65 0 0 0-.224-.211.668.668 0 0 0-.334-.079zm3.063 0a.676.676 0 0 0-.336.079.664.664 0 0 0-.227.21.906.906 0 0 0-.127.31 1.74 1.74 0 0 0 0 .748.936.936 0 0 0 .127.314.66.66 0 0 0 .227.215c.092.053.204.08.336.08a.654.654 0 0 0 .334-.08.648.648 0 0 0 .223-.215c.058-.09.1-.195.126-.314a1.74 1.74 0 0 0 0-.747.928.928 0 0 0-.126-.31.65.65 0 0 0-.223-.211.666.666 0 0 0-.334-.079zm-1.545.05l-.611.448.228.312.346-.267v1.363h.438v-1.856zm-1.518.323c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.91.91 0 0 1 .04.195 1.966 1.966 0 0 1 0 .387.951.951 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.06.18.18 0 0 1-.142-.06.428.428 0 0 1-.085-.152.914.914 0 0 1-.04-.197 1.96 1.96 0 0 1-.011-.195c0-.058.003-.122.01-.192a.923.923 0 0 1 .041-.195c.02-.06.048-.11.085-.152a.181.181 0 0 1 .142-.061zm3.063 0c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.94.94 0 0 1 .04.195 1.91 1.91 0 0 1 0 .387.93.93 0 0 1-.04.197.422.422 0 0 1-.083.152.175.175 0 0 1-.14.06.18.18 0 0 1-.141-.06.423.423 0 0 1-.085-.152.907.907 0 0 1-.04-.197 1.95 1.95 0 0 1 0-.387.915.915 0 0 1 .04-.195c.02-.06.048-.11.085-.152a.182.182 0 0 1 .142-.061zm-9.713.185a.465.465 0 0 0-.232.055.456.456 0 0 0-.157.146.627.627 0 0 0-.089.215 1.168 1.168 0 0 0-.027.259c0 .09.009.177.027.26a.648.648 0 0 0 .089.216c.04.063.093.112.157.149a.459.459 0 0 0 .232.056c.09 0 .168-.02.231-.056a.45.45 0 0 0 .156-.149.67.67 0 0 0 .087-.217 1.218 1.218 0 0 0 0-.518.647.647 0 0 0-.087-.215.448.448 0 0 0-.156-.146.458.458 0 0 0-.23-.055zm1.052.035l-.423.31.158.217.24-.185v.944h.303v-1.286zm-1.052.224c.04 0 .073.014.097.042a.284.284 0 0 1 .057.105.69.69 0 0 1 .028.136c.004.049.007.092.007.133 0 .04-.003.086-.007.135a.684.684 0 0 1-.028.136.285.285 0 0 1-.057.105.123.123 0 0 1-.097.043.125.125 0 0 1-.098-.043.298.298 0 0 1-.059-.105.612.612 0 0 1-.028-.136 1.39 1.39 0 0 1 0-.268.62.62 0 0 1 .028-.136.297.297 0 0 1 .06-.105.125.125 0 0 1 .097-.042zm3.775 1.394a.463.463 0 0 0-.232.054.452.452 0 0 0-.157.146.621.621 0 0 0-.088.214 1.19 1.19 0 0 0 0 .519.641.641 0 0 0 .088.217.46.46 0 0 0 .157.15.458.458 0 0 0 .232.054.454.454 0 0 0 .232-.055.45.45 0 0 0 .155-.149.664.664 0 0 0 .087-.217 1.189 1.189 0 0 0 0-.519.642.642 0 0 0-.087-.214.446.446 0 0 0-.155-.146.459.459 0 0 0-.232-.054zm1.052.034l-.423.31.158.216.24-.185v.945h.303V22.68zm-1.052.223c.04 0 .073.014.098.043a.3.3 0 0 1 .057.105.643.643 0 0 1 .027.135 1.31 1.31 0 0 1 0 .268.654.654 0 0 1-.027.137.307.307 0 0 1-.057.105.124.124 0 0 1-.098.042.125.125 0 0 1-.098-.042.293.293 0 0 1-.059-.105.618.618 0 0 1-.028-.137 1.364 1.364 0 0 1 0-.268.612.612 0 0 1 .028-.135.287.287 0 0 1 .06-.105.123.123 0 0 1 .097-.043z" }) + ] + } + ); +}); + +exports.default = SiTryhackme; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.d.ts new file mode 100644 index 000000000..6ea69a5ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212C42"; +declare const SiTryhackme: IconType; +export { SiTryhackme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.mjs new file mode 100644 index 000000000..c995958de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTryhackme.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212C42"; +const SiTryhackme = React.forwardRef(function SiTryhackme2({ title = "TryHackMe", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.705 0C7.54 0 4.902 2.285 4.349 5.291a4.525 4.525 0 0 0-4.107 4.5 4.525 4.525 0 0 0 4.52 4.52h6.761a.625.625 0 1 0 0-1.25H4.761a3.273 3.273 0 0 1-3.27-3.27A3.273 3.273 0 0 1 6.59 7.08a.625.625 0 0 0 .7-1.035 4.488 4.488 0 0 0-1.68-.69 5.223 5.223 0 0 1 5.096-4.104 5.221 5.221 0 0 1 5.174 4.57 4.489 4.489 0 0 0-.488.305.625.625 0 1 0 .731 1.013 3.245 3.245 0 0 1 1.912-.616 3.278 3.278 0 0 1 3.203 2.61.625.625 0 0 0 1.225-.251 4.533 4.533 0 0 0-4.428-3.61 4.54 4.54 0 0 0-.958.105C16.556 2.328 13.9 0 10.705 0zm5.192 10.64a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.054.514c0 .181.018.353.054.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .309-.296c.08-.124.137-.267.173-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.309-.291.917.917 0 0 0-.46-.108zm6.486 0a.925.925 0 0 0-.462.108.913.913 0 0 0-.313.29 1.27 1.27 0 0 0-.175.427 2.39 2.39 0 0 0-.053.514c0 .181.017.353.053.517.036.164.095.307.175.43a.899.899 0 0 0 .313.297c.127.073.281.11.462.11.18 0 .334-.037.46-.11a.897.897 0 0 0 .31-.296c.078-.124.136-.267.172-.431.036-.164.054-.336.054-.517 0-.18-.018-.352-.054-.514a1.271 1.271 0 0 0-.173-.426.901.901 0 0 0-.308-.291.916.916 0 0 0-.461-.108zm-8.537.068l-.84.618.313.43.476-.368v1.877h.603v-2.557zm6.486 0l-.841.618.314.43.477-.368v1.877h.603v-2.557zm-4.435.445c.08 0 .143.028.193.084.05.057.087.127.114.21.026.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.028.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.248.248 0 0 1-.195-.086.584.584 0 0 1-.118-.209 1.245 1.245 0 0 1-.056-.27 2.645 2.645 0 0 1 0-.533c.01-.096.029-.186.056-.27a.583.583 0 0 1 .118-.209.25.25 0 0 1 .195-.084zm6.486 0c.08 0 .144.028.193.084.05.057.087.127.114.21.027.083.044.173.054.269a2.541 2.541 0 0 1 0 .533c-.01.097-.027.187-.054.27a.584.584 0 0 1-.114.21.243.243 0 0 1-.193.085.249.249 0 0 1-.195-.086.581.581 0 0 1-.117-.209 1.245 1.245 0 0 1-.056-.27 2.642 2.642 0 0 1 0-.533c.01-.096.028-.186.056-.27a.58.58 0 0 1 .117-.209.25.25 0 0 1 .195-.084zm-2.191 3.51a.93.93 0 0 0-.463.109.908.908 0 0 0-.312.291c-.08.122-.139.263-.175.426a2.383 2.383 0 0 0-.054.514c0 .18.018.353.054.516.036.164.094.308.175.432a.91.91 0 0 0 .312.296.92.92 0 0 0 .463.11c.18 0 .333-.037.46-.11a.892.892 0 0 0 .308-.296 1.32 1.32 0 0 0 .174-.432c.036-.163.054-.335.054-.516 0-.18-.018-.352-.054-.514a1.274 1.274 0 0 0-.174-.426.89.89 0 0 0-.309-.291.918.918 0 0 0-.46-.108zm-6.402.07l-.841.617.314.43.476-.369v1.878h.604v-2.557zm2.125 0l-.841.617.314.43.477-.369v1.878h.603v-2.557zm2.116 0l-.84.617.313.43.477-.369v1.878h.603v-2.557zm2.16.443c.08 0 .144.028.194.085a.605.605 0 0 1 .114.21c.026.083.044.172.053.269a2.639 2.639 0 0 1 0 .532 1.28 1.28 0 0 1-.053.27.585.585 0 0 1-.114.21.244.244 0 0 1-.193.085.25.25 0 0 1-.196-.085.589.589 0 0 1-.117-.21 1.245 1.245 0 0 1-.056-.27 2.597 2.597 0 0 1 0-.532c.01-.097.028-.186.056-.27a.589.589 0 0 1 .117-.209.249.249 0 0 1 .196-.085zm-6.729 3.073a.676.676 0 0 0-.335.078.661.661 0 0 0-.227.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.93.93 0 0 0 .127.313.65.65 0 0 0 .227.215c.092.053.204.08.335.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .225-.215c.057-.09.1-.194.125-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.931.931 0 0 0-.125-.31.658.658 0 0 0-.225-.21.667.667 0 0 0-.334-.08zm3.086 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.907.907 0 0 0-.127.31 1.69 1.69 0 0 0-.04.373c0 .131.013.256.04.375a.928.928 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08a.655.655 0 0 0 .334-.08.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.752 1.752 0 0 0 0-.748.94.94 0 0 0-.126-.31.657.657 0 0 0-.224-.21.667.667 0 0 0-.334-.08zm5.108 0a.675.675 0 0 0-.336.078.661.661 0 0 0-.226.211.91.91 0 0 0-.127.31c-.027.118-.04.242-.04.373s.013.256.04.375a.931.931 0 0 0 .127.313c.058.09.134.162.226.215.093.053.205.08.336.08.13 0 .243-.027.334-.08a.65.65 0 0 0 .224-.215c.058-.09.1-.194.126-.313a1.75 1.75 0 0 0 .04-.375c0-.13-.014-.255-.04-.373a.943.943 0 0 0-.126-.31.657.657 0 0 0-.224-.21.668.668 0 0 0-.334-.08zm-6.658.05l-.61.448.227.311.346-.266v1.362h.438v-1.856zm3.068 0l-.61.448.227.311.346-.266v1.362h.438v-1.856zm5.108 0l-.611.448.228.311.346-.266v1.362h.438v-1.856zm-9.712.322c.058 0 .105.02.14.062a.421.421 0 0 1 .083.151.96.96 0 0 1 .04.196 1.932 1.932 0 0 1 0 .386.954.954 0 0 1-.04.197.421.421 0 0 1-.083.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.427.427 0 0 1-.085-.153.887.887 0 0 1-.041-.197 1.96 1.96 0 0 1 0-.386.893.893 0 0 1 .04-.196.42.42 0 0 1 .086-.151.181.181 0 0 1 .141-.062zm3.086 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.94.94 0 0 1 .04.196 1.906 1.906 0 0 1 0 .386.93.93 0 0 1-.04.197.421.421 0 0 1-.082.152.176.176 0 0 1-.14.061.18.18 0 0 1-.141-.06.42.42 0 0 1-.086-.153.846.846 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.849.849 0 0 1 .041-.196.42.42 0 0 1 .086-.151.182.182 0 0 1 .141-.062zm5.108 0c.058 0 .104.02.14.062a.421.421 0 0 1 .082.151.92.92 0 0 1 .04.196 1.963 1.963 0 0 1 0 .386.943.943 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.061.18.18 0 0 1-.142-.06.437.437 0 0 1-.085-.153.95.95 0 0 1-.04-.197 1.965 1.965 0 0 1-.011-.195c0-.057.004-.121.01-.191a.959.959 0 0 1 .04-.196.47.47 0 0 1 .086-.151.181.181 0 0 1 .142-.062zm-1.684 1.814a.675.675 0 0 0-.336.079.66.66 0 0 0-.227.21.91.91 0 0 0-.127.31 1.731 1.731 0 0 0 0 .748.939.939 0 0 0 .127.314c.059.09.134.162.227.215.093.053.205.08.336.08a.66.66 0 0 0 .334-.08.648.648 0 0 0 .224-.215c.058-.09.1-.195.126-.314a1.737 1.737 0 0 0-.001-.747.928.928 0 0 0-.125-.31.65.65 0 0 0-.224-.211.668.668 0 0 0-.334-.079zm3.063 0a.676.676 0 0 0-.336.079.664.664 0 0 0-.227.21.906.906 0 0 0-.127.31 1.74 1.74 0 0 0 0 .748.936.936 0 0 0 .127.314.66.66 0 0 0 .227.215c.092.053.204.08.336.08a.654.654 0 0 0 .334-.08.648.648 0 0 0 .223-.215c.058-.09.1-.195.126-.314a1.74 1.74 0 0 0 0-.747.928.928 0 0 0-.126-.31.65.65 0 0 0-.223-.211.666.666 0 0 0-.334-.079zm-1.545.05l-.611.448.228.312.346-.267v1.363h.438v-1.856zm-1.518.323c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.91.91 0 0 1 .04.195 1.966 1.966 0 0 1 0 .387.951.951 0 0 1-.04.197.421.421 0 0 1-.082.152.177.177 0 0 1-.14.06.18.18 0 0 1-.142-.06.428.428 0 0 1-.085-.152.914.914 0 0 1-.04-.197 1.96 1.96 0 0 1-.011-.195c0-.058.003-.122.01-.192a.923.923 0 0 1 .041-.195c.02-.06.048-.11.085-.152a.181.181 0 0 1 .142-.061zm3.063 0c.057 0 .104.02.14.061a.42.42 0 0 1 .082.152.94.94 0 0 1 .04.195 1.91 1.91 0 0 1 0 .387.93.93 0 0 1-.04.197.422.422 0 0 1-.083.152.175.175 0 0 1-.14.06.18.18 0 0 1-.141-.06.423.423 0 0 1-.085-.152.907.907 0 0 1-.04-.197 1.95 1.95 0 0 1 0-.387.915.915 0 0 1 .04-.195c.02-.06.048-.11.085-.152a.182.182 0 0 1 .142-.061zm-9.713.185a.465.465 0 0 0-.232.055.456.456 0 0 0-.157.146.627.627 0 0 0-.089.215 1.168 1.168 0 0 0-.027.259c0 .09.009.177.027.26a.648.648 0 0 0 .089.216c.04.063.093.112.157.149a.459.459 0 0 0 .232.056c.09 0 .168-.02.231-.056a.45.45 0 0 0 .156-.149.67.67 0 0 0 .087-.217 1.218 1.218 0 0 0 0-.518.647.647 0 0 0-.087-.215.448.448 0 0 0-.156-.146.458.458 0 0 0-.23-.055zm1.052.035l-.423.31.158.217.24-.185v.944h.303v-1.286zm-1.052.224c.04 0 .073.014.097.042a.284.284 0 0 1 .057.105.69.69 0 0 1 .028.136c.004.049.007.092.007.133 0 .04-.003.086-.007.135a.684.684 0 0 1-.028.136.285.285 0 0 1-.057.105.123.123 0 0 1-.097.043.125.125 0 0 1-.098-.043.298.298 0 0 1-.059-.105.612.612 0 0 1-.028-.136 1.39 1.39 0 0 1 0-.268.62.62 0 0 1 .028-.136.297.297 0 0 1 .06-.105.125.125 0 0 1 .097-.042zm3.775 1.394a.463.463 0 0 0-.232.054.452.452 0 0 0-.157.146.621.621 0 0 0-.088.214 1.19 1.19 0 0 0 0 .519.641.641 0 0 0 .088.217.46.46 0 0 0 .157.15.458.458 0 0 0 .232.054.454.454 0 0 0 .232-.055.45.45 0 0 0 .155-.149.664.664 0 0 0 .087-.217 1.189 1.189 0 0 0 0-.519.642.642 0 0 0-.087-.214.446.446 0 0 0-.155-.146.459.459 0 0 0-.232-.054zm1.052.034l-.423.31.158.216.24-.185v.945h.303V22.68zm-1.052.223c.04 0 .073.014.098.043a.3.3 0 0 1 .057.105.643.643 0 0 1 .027.135 1.31 1.31 0 0 1 0 .268.654.654 0 0 1-.027.137.307.307 0 0 1-.057.105.124.124 0 0 1-.098.042.125.125 0 0 1-.098-.042.293.293 0 0 1-.059-.105.618.618 0 0 1-.028-.137 1.364 1.364 0 0 1 0-.268.612.612 0 0 1 .028-.135.287.287 0 0 1 .06-.105.123.123 0 0 1 .097-.043z" }) + ] + } + ); +}); + +export { SiTryhackme as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.cjs new file mode 100644 index 000000000..df6995fe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#303030"; +const SiTryitonline = React__namespace.forwardRef(function SiTryitonline2({ title = "Try It Online", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.75 6a.75.75 0 100 1.5H4.5v9.75a.75.75 0 101.5 0V7.5h17.25a.75.75 0 100-1.5zm10.5 3a.75.75 0 00-.75.75v7.5a.75.75 0 101.5 0v-7.5a.75.75 0 00-.75-.75zm8.25 0a4.51 4.51 0 00-4.5 4.5c0 2.48 2.02 4.5 4.5 4.5s4.5-2.02 4.5-4.5S21.98 9 19.5 9zm0 1.5c1.67 0 3 1.33 3 3s-1.33 3-3 3-3-1.33-3-3 1.33-3 3-3Z" }) + ] + } + ); +}); + +exports.default = SiTryitonline; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.d.ts new file mode 100644 index 000000000..f8b498421 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#303030"; +declare const SiTryitonline: IconType; +export { SiTryitonline as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.mjs new file mode 100644 index 000000000..37e1cb7a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTryitonline.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#303030"; +const SiTryitonline = React.forwardRef(function SiTryitonline2({ title = "Try It Online", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.75 6a.75.75 0 100 1.5H4.5v9.75a.75.75 0 101.5 0V7.5h17.25a.75.75 0 100-1.5zm10.5 3a.75.75 0 00-.75.75v7.5a.75.75 0 101.5 0v-7.5a.75.75 0 00-.75-.75zm8.25 0a4.51 4.51 0 00-4.5 4.5c0 2.48 2.02 4.5 4.5 4.5s4.5-2.02 4.5-4.5S21.98 9 19.5 9zm0 1.5c1.67 0 3 1.33 3 3s-1.33 3-3 3-3-1.33-3-3 1.33-3 3-3Z" }) + ] + } + ); +}); + +export { SiTryitonline as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.cjs new file mode 100644 index 000000000..e8b4c38d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3178C6"; +const SiTsnode = React__namespace.forwardRef(function SiTsnode2({ title = "ts-node", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.999 0c-.196 0-.392.05-.568.153L2.026 5.58a1.135 1.135 0 00-.568.983V17.43c0 .406.216.781.568.984l5.787 3.344v-7.344H4.748v-1.943h8.342v1.943h-3.065v8.622l1.406.812c.351.203.784.203 1.136 0l2.317-1.338a3.958 3.958 0 01-1.195-1.413l1.801-1.042c.361.59.806 1.06 1.48 1.25l2.174-1.256c-.127-.568-.698-.823-1.584-1.21l-.553-.238c-1.596-.68-2.655-1.532-2.655-3.334 0-1.658 1.265-2.922 3.24-2.922 1.406 0 2.417.49 3.144 1.77l-1.723 1.105c-.379-.68-.79-.948-1.421-.948-.648 0-1.06.41-1.06.948 0 .663.412.932 1.36 1.343l.553.237c1.336.573 2.255 1.155 2.676 2.107l.853-.493c.352-.203.568-.578.568-.984V6.565c0-.406-.216-.782-.568-.984L12.567.153A1.134 1.134 0 0011.999 0z" }) + ] + } + ); +}); + +exports.default = SiTsnode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.d.ts new file mode 100644 index 000000000..5db68d968 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3178C6"; +declare const SiTsnode: IconType; +export { SiTsnode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.mjs new file mode 100644 index 000000000..2f73fa113 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTsnode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3178C6"; +const SiTsnode = React.forwardRef(function SiTsnode2({ title = "ts-node", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.999 0c-.196 0-.392.05-.568.153L2.026 5.58a1.135 1.135 0 00-.568.983V17.43c0 .406.216.781.568.984l5.787 3.344v-7.344H4.748v-1.943h8.342v1.943h-3.065v8.622l1.406.812c.351.203.784.203 1.136 0l2.317-1.338a3.958 3.958 0 01-1.195-1.413l1.801-1.042c.361.59.806 1.06 1.48 1.25l2.174-1.256c-.127-.568-.698-.823-1.584-1.21l-.553-.238c-1.596-.68-2.655-1.532-2.655-3.334 0-1.658 1.265-2.922 3.24-2.922 1.406 0 2.417.49 3.144 1.77l-1.723 1.105c-.379-.68-.79-.948-1.421-.948-.648 0-1.06.41-1.06.948 0 .663.412.932 1.36 1.343l.553.237c1.336.573 2.255 1.155 2.676 2.107l.853-.493c.352-.203.568-.578.568-.984V6.565c0-.406-.216-.782-.568-.984L12.567.153A1.134 1.134 0 0011.999 0z" }) + ] + } + ); +}); + +export { SiTsnode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.cjs new file mode 100644 index 000000000..bc869c1d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7408FF"; +const SiTubi = React__namespace.forwardRef(function SiTubi2({ title = "Tubi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.696 15.272v-.752c.4.548 1.107.917 1.934.917 1.475 0 2.28-.956 2.28-2.865 0-1.714-.893-2.858-2.235-2.858-.851 0-1.55.347-1.979.908v-2.06h-2.674v6.71zm1.57-2.614c0 .827-.337 1.275-.827 1.275-.486 0-.837-.452-.837-1.275s.342-1.28.837-1.28c.495 0 .828.452.828 1.28zM6.94 9.988v3.6c0 1.236.754 1.841 1.955 1.841.959 0 1.625-.396 2.028-1.064v.91h2.597V9.989h-2.675v3.14c0 .493-.346.693-.666.693-.321 0-.568-.192-.568-.655V9.989Zm14.39 0H24v5.276h-2.67ZM6.553 11.136c0 .781-.635 1.415-1.42 1.415-.783 0-1.419-.634-1.419-1.415 0-.782.636-1.415 1.42-1.415.784 0 1.42.633 1.42 1.415zM3.49 9.702v2.668c.005.653.327.924.976.924.225 0 .526-.053.672-.166v1.931c-.49.243-.869.378-1.535.378 0 0-.069 0-.18-.006l-.003.006c-1.614 0-2.51-1.035-2.482-2.686v-.47H0V9.99h.92V8.563h2.569Z" }) + ] + } + ); +}); + +exports.default = SiTubi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.d.ts new file mode 100644 index 000000000..d7c6c7505 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7408FF"; +declare const SiTubi: IconType; +export { SiTubi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.mjs new file mode 100644 index 000000000..1e1644d07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTubi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7408FF"; +const SiTubi = React.forwardRef(function SiTubi2({ title = "Tubi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.696 15.272v-.752c.4.548 1.107.917 1.934.917 1.475 0 2.28-.956 2.28-2.865 0-1.714-.893-2.858-2.235-2.858-.851 0-1.55.347-1.979.908v-2.06h-2.674v6.71zm1.57-2.614c0 .827-.337 1.275-.827 1.275-.486 0-.837-.452-.837-1.275s.342-1.28.837-1.28c.495 0 .828.452.828 1.28zM6.94 9.988v3.6c0 1.236.754 1.841 1.955 1.841.959 0 1.625-.396 2.028-1.064v.91h2.597V9.989h-2.675v3.14c0 .493-.346.693-.666.693-.321 0-.568-.192-.568-.655V9.989Zm14.39 0H24v5.276h-2.67ZM6.553 11.136c0 .781-.635 1.415-1.42 1.415-.783 0-1.419-.634-1.419-1.415 0-.782.636-1.415 1.42-1.415.784 0 1.42.633 1.42 1.415zM3.49 9.702v2.668c.005.653.327.924.976.924.225 0 .526-.053.672-.166v1.931c-.49.243-.869.378-1.535.378 0 0-.069 0-.18-.006l-.003.006c-1.614 0-2.51-1.035-2.482-2.686v-.47H0V9.99h.92V8.563h2.569Z" }) + ] + } + ); +}); + +export { SiTubi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTui.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTui.cjs new file mode 100644 index 000000000..756e9bdc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTui.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D40E14"; +const SiTui = React__namespace.forwardRef(function SiTui2({ title = "TUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 4.5167a2.117 2.117 0 01-2.117 2.117 2.117 2.117 0 01-2.117-2.117 2.117 2.117 0 012.117-2.117A2.117 2.117 0 0124 4.5168zM1.1397 7.7475h5.7055c.5642 0 .9806.1772 1.1465.9716.185.8836.1129 1.4986-.8858 1.5686l-1.7909.132c1.318 8.3303 9.0277 11.0453 13.2221 2.073.6952-1.485.922-1.7548 1.6826-1.5663 1.0314.2561 1.1724.7899.677 2.2828-3.6234 11.0566-15.8186 12.166-18.211-2.6044l-1.4546.105C.0463 10.7942 0 9.7956 0 9.2404c0-1.0992.4074-1.493 1.1397-1.493z" }) + ] + } + ); +}); + +exports.default = SiTui; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTui.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTui.d.ts new file mode 100644 index 000000000..d9a2f9700 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTui.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D40E14"; +declare const SiTui: IconType; +export { SiTui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTui.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTui.mjs new file mode 100644 index 000000000..4ada9a35a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTui.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D40E14"; +const SiTui = React.forwardRef(function SiTui2({ title = "TUI", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 4.5167a2.117 2.117 0 01-2.117 2.117 2.117 2.117 0 01-2.117-2.117 2.117 2.117 0 012.117-2.117A2.117 2.117 0 0124 4.5168zM1.1397 7.7475h5.7055c.5642 0 .9806.1772 1.1465.9716.185.8836.1129 1.4986-.8858 1.5686l-1.7909.132c1.318 8.3303 9.0277 11.0453 13.2221 2.073.6952-1.485.922-1.7548 1.6826-1.5663 1.0314.2561 1.1724.7899.677 2.2828-3.6234 11.0566-15.8186 12.166-18.211-2.6044l-1.4546.105C.0463 10.7942 0 9.7956 0 9.2404c0-1.0992.4074-1.493 1.1397-1.493z" }) + ] + } + ); +}); + +export { SiTui as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.cjs new file mode 100644 index 000000000..9c3db6fa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#36465D"; +const SiTumblr = React__namespace.forwardRef(function SiTumblr2({ title = "Tumblr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.563 24c-5.093 0-7.031-3.756-7.031-6.411V9.747H5.116V6.648c3.63-1.313 4.512-4.596 4.71-6.469C9.84.051 9.941 0 9.999 0h3.517v6.114h4.801v3.633h-4.82v7.47c.016 1.001.375 2.371 2.207 2.371h.09c.631-.02 1.486-.205 1.936-.419l1.156 3.425c-.436.636-2.4 1.374-4.156 1.404h-.178l.011.002z" }) + ] + } + ); +}); + +exports.default = SiTumblr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.d.ts new file mode 100644 index 000000000..a6d265018 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#36465D"; +declare const SiTumblr: IconType; +export { SiTumblr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.mjs new file mode 100644 index 000000000..8e8efd131 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTumblr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#36465D"; +const SiTumblr = React.forwardRef(function SiTumblr2({ title = "Tumblr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.563 24c-5.093 0-7.031-3.756-7.031-6.411V9.747H5.116V6.648c3.63-1.313 4.512-4.596 4.71-6.469C9.84.051 9.941 0 9.999 0h3.517v6.114h4.801v3.633h-4.82v7.47c.016 1.001.375 2.371 2.207 2.371h.09c.631-.02 1.486-.205 1.936-.419l1.156 3.425c-.436.636-2.4 1.374-4.156 1.404h-.178l.011.002z" }) + ] + } + ); +}); + +export { SiTumblr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.cjs new file mode 100644 index 000000000..08fd307c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5CD8E5"; +const SiTurbo = React__namespace.forwardRef(function SiTurbo2({ title = "Turbo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.26718 0H.7368A.7368.7368 0 0 0 0 .7368v3.09061h12a8.17657 8.17656 0 0 1 6.80252 12.70494h5.17757V.73681A.73282.73282 0 0 0 23.26718 0ZM3.82741 12a8.15267 8.15267 0 0 1 1.37007-4.53236H0v15.79952A.73282.73282 0 0 0 .7368 24h22.53038A.73282.73282 0 0 0 24 23.26716v-3.09458H12A8.17259 8.17258 0 0 1 3.82741 12Z M17.94225 11.7929a9.21208 9.21208 0 0 1-2.28211.5536 3.98274 3.98274 0 0 0-.0239-.92002 9.74179 9.74178 0 0 0 1.9635-2.31397.88172.88172 0 0 0-1.48955-.94391 8.76203 8.76203 0 0 1-1.21474 1.54928 3.61235 3.61234 0 0 0-.75672-.72087 7.26452 7.26452 0 0 0-.12346-1.5453 12.43412 12.43411 0 0 0-.56157-2.01129.88019.88019 0 0 0-1.1311-.52572.84036.84036 0 0 0-.3226.20312.88815.88815 0 0 0-.2071.92798c.07966.21108.14736.39827.2071.60936.08762.28277.15931.54962.21905.79655a7.5234 7.5234 0 0 1 .12745.91204 3.43312 3.43312 0 0 0-.91603.0239A9.76568 9.76568 0 0 0 9.1125 6.42018a.88417.88417 0 0 0-.9439 1.49352 8.78991 8.7899 0 0 1 1.55326 1.19483 3.72386 3.72386 0 0 0-.72486.75672 9.49884 9.49883 0 0 0-3.55659.68901.88198.88198 0 0 0 .60538 1.65682 9.27182 9.27182 0 0 1 2.31796-.56953c0 .11948-.01992.23896-.01992.35844a3.67607 3.67607 0 0 0 .04381.55759 9.66213 9.66213 0 0 0-1.96747 2.31397.88019.88019 0 0 0 .74477 1.35413.8762.8762 0 0 0 .74876-.39827 8.60272 8.60272 0 0 1 1.19482-1.54929 3.95486 3.95486 0 0 0 .75672.72486 7.01759 7.01759 0 0 0 .12745 1.54132 12.03585 12.03584 0 0 0 .56157 2.01128.8762.8762 0 0 0 .82442.56157.89612.89612 0 0 0 .3027-.05177.92001.92001 0 0 0 .31861-.2071.8762.8762 0 0 0 .2071-.924c-.07567-.21507-.14736-.39828-.2071-.61335-.08762-.28277-.15931-.54563-.21507-.79654a6.60339 6.60338 0 0 1-.14338-.87222H12a3.72785 3.72784 0 0 0 .56157-.03983 9.7139 9.7139 0 0 0 2.30999 1.96349.88172.88172 0 1 0 .9439-1.48955 8.89744 8.89744 0 0 1-1.54928-1.21473 3.73581 3.73581 0 0 0 .72486-.75672h.20312a9.95685 9.95685 0 0 0 3.34948-.68902.88417.88417 0 0 0-.60139-1.6608zM13.95951 12v.1593a1.95154 1.95154 0 0 1-.693 1.35015 1.79622 1.79622 0 0 1-.24294.17524 1.99137 1.99137 0 0 1-1.03153.29074h-.15931a1.95154 1.95154 0 0 1-1.34617-.68901 2.306 2.306 0 0 1-.17922-.24693 1.99137 1.99137 0 0 1-.29074-1.03153v-.15931a1.8679 1.8679 0 0 1 .04779-.2987 1.99137 1.99137 0 0 1 .64122-1.04747 2.78792 2.78792 0 0 1 .24693-.17922 1.99137 1.99137 0 0 1 1.03153-.29074h.1593a1.9157 1.9157 0 0 1 .3027.0478 1.99137 1.99137 0 0 1 1.04746.6452 1.79622 1.79622 0 0 1 .17524.24294A1.99137 1.99137 0 0 1 13.97544 12z" }) + ] + } + ); +}); + +exports.default = SiTurbo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.d.ts new file mode 100644 index 000000000..577bb654d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5CD8E5"; +declare const SiTurbo: IconType; +export { SiTurbo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.mjs new file mode 100644 index 000000000..879e96497 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5CD8E5"; +const SiTurbo = React.forwardRef(function SiTurbo2({ title = "Turbo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.26718 0H.7368A.7368.7368 0 0 0 0 .7368v3.09061h12a8.17657 8.17656 0 0 1 6.80252 12.70494h5.17757V.73681A.73282.73282 0 0 0 23.26718 0ZM3.82741 12a8.15267 8.15267 0 0 1 1.37007-4.53236H0v15.79952A.73282.73282 0 0 0 .7368 24h22.53038A.73282.73282 0 0 0 24 23.26716v-3.09458H12A8.17259 8.17258 0 0 1 3.82741 12Z M17.94225 11.7929a9.21208 9.21208 0 0 1-2.28211.5536 3.98274 3.98274 0 0 0-.0239-.92002 9.74179 9.74178 0 0 0 1.9635-2.31397.88172.88172 0 0 0-1.48955-.94391 8.76203 8.76203 0 0 1-1.21474 1.54928 3.61235 3.61234 0 0 0-.75672-.72087 7.26452 7.26452 0 0 0-.12346-1.5453 12.43412 12.43411 0 0 0-.56157-2.01129.88019.88019 0 0 0-1.1311-.52572.84036.84036 0 0 0-.3226.20312.88815.88815 0 0 0-.2071.92798c.07966.21108.14736.39827.2071.60936.08762.28277.15931.54962.21905.79655a7.5234 7.5234 0 0 1 .12745.91204 3.43312 3.43312 0 0 0-.91603.0239A9.76568 9.76568 0 0 0 9.1125 6.42018a.88417.88417 0 0 0-.9439 1.49352 8.78991 8.7899 0 0 1 1.55326 1.19483 3.72386 3.72386 0 0 0-.72486.75672 9.49884 9.49883 0 0 0-3.55659.68901.88198.88198 0 0 0 .60538 1.65682 9.27182 9.27182 0 0 1 2.31796-.56953c0 .11948-.01992.23896-.01992.35844a3.67607 3.67607 0 0 0 .04381.55759 9.66213 9.66213 0 0 0-1.96747 2.31397.88019.88019 0 0 0 .74477 1.35413.8762.8762 0 0 0 .74876-.39827 8.60272 8.60272 0 0 1 1.19482-1.54929 3.95486 3.95486 0 0 0 .75672.72486 7.01759 7.01759 0 0 0 .12745 1.54132 12.03585 12.03584 0 0 0 .56157 2.01128.8762.8762 0 0 0 .82442.56157.89612.89612 0 0 0 .3027-.05177.92001.92001 0 0 0 .31861-.2071.8762.8762 0 0 0 .2071-.924c-.07567-.21507-.14736-.39828-.2071-.61335-.08762-.28277-.15931-.54563-.21507-.79654a6.60339 6.60338 0 0 1-.14338-.87222H12a3.72785 3.72784 0 0 0 .56157-.03983 9.7139 9.7139 0 0 0 2.30999 1.96349.88172.88172 0 1 0 .9439-1.48955 8.89744 8.89744 0 0 1-1.54928-1.21473 3.73581 3.73581 0 0 0 .72486-.75672h.20312a9.95685 9.95685 0 0 0 3.34948-.68902.88417.88417 0 0 0-.60139-1.6608zM13.95951 12v.1593a1.95154 1.95154 0 0 1-.693 1.35015 1.79622 1.79622 0 0 1-.24294.17524 1.99137 1.99137 0 0 1-1.03153.29074h-.15931a1.95154 1.95154 0 0 1-1.34617-.68901 2.306 2.306 0 0 1-.17922-.24693 1.99137 1.99137 0 0 1-.29074-1.03153v-.15931a1.8679 1.8679 0 0 1 .04779-.2987 1.99137 1.99137 0 0 1 .64122-1.04747 2.78792 2.78792 0 0 1 .24693-.17922 1.99137 1.99137 0 0 1 1.03153-.29074h.1593a1.9157 1.9157 0 0 1 .3027.0478 1.99137 1.99137 0 0 1 1.04746.6452 1.79622 1.79622 0 0 1 .17524.24294A1.99137 1.99137 0 0 1 13.97544 12z" }) + ] + } + ); +}); + +export { SiTurbo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.cjs new file mode 100644 index 000000000..ec633474a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1E56"; +const SiTurborepo = React__namespace.forwardRef(function SiTurborepo2({ title = "Turborepo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9906 4.1957c-4.2998 0-7.7981 3.501-7.7981 7.8043s3.4983 7.8043 7.7981 7.8043c4.2999 0 7.7982-3.501 7.7982-7.8043s-3.4983-7.8043-7.7982-7.8043m0 11.843c-2.229 0-4.0356-1.8079-4.0356-4.0387s1.8065-4.0387 4.0356-4.0387S16.0262 9.7692 16.0262 12s-1.8065 4.0388-4.0356 4.0388m.6534-13.1249V0C18.9726.3386 24 5.5822 24 12s-5.0274 11.66-11.356 12v-2.9139c4.7167-.3372 8.4516-4.2814 8.4516-9.0861s-3.735-8.749-8.4516-9.0861M5.113 17.9586c-1.2502-1.4446-2.0562-3.2845-2.2-5.3046H0c.151 2.8266 1.2808 5.3917 3.051 7.3668l2.0606-2.0622zM11.3372 24v-2.9139c-2.02-.1439-3.8584-.949-5.3019-2.2018l-2.0606 2.0623c1.975 1.773 4.538 2.9022 7.361 3.0534z" }) + ] + } + ); +}); + +exports.default = SiTurborepo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.d.ts new file mode 100644 index 000000000..1d03f3374 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1E56"; +declare const SiTurborepo: IconType; +export { SiTurborepo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.mjs new file mode 100644 index 000000000..0e6d34293 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurborepo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1E56"; +const SiTurborepo = React.forwardRef(function SiTurborepo2({ title = "Turborepo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9906 4.1957c-4.2998 0-7.7981 3.501-7.7981 7.8043s3.4983 7.8043 7.7981 7.8043c4.2999 0 7.7982-3.501 7.7982-7.8043s-3.4983-7.8043-7.7982-7.8043m0 11.843c-2.229 0-4.0356-1.8079-4.0356-4.0387s1.8065-4.0387 4.0356-4.0387S16.0262 9.7692 16.0262 12s-1.8065 4.0388-4.0356 4.0388m.6534-13.1249V0C18.9726.3386 24 5.5822 24 12s-5.0274 11.66-11.356 12v-2.9139c4.7167-.3372 8.4516-4.2814 8.4516-9.0861s-3.735-8.749-8.4516-9.0861M5.113 17.9586c-1.2502-1.4446-2.0562-3.2845-2.2-5.3046H0c.151 2.8266 1.2808 5.3917 3.051 7.3668l2.0606-2.0622zM11.3372 24v-2.9139c-2.02-.1439-3.8584-.949-5.3019-2.2018l-2.0606 2.0623c1.975 1.773 4.538 2.9022 7.361 3.0534z" }) + ] + } + ); +}); + +export { SiTurborepo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.cjs new file mode 100644 index 000000000..59630d838 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8135"; +const SiTurbosquid = React__namespace.forwardRef(function SiTurbosquid2({ title = "TurboSquid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.909.01C9.832.153 7.89 1.617 7.89 1.617s4.235-1.383 5.42.752c.861 1.552-.133 3.989-1.67 6.6-1.418-1.212-5.21-4.035-8.73-3.038C-1.528 7.187.43 13.176.43 13.176S.45 8.632 2.803 8.14c1.71-.358 3.673 1.364 5.63 3.664-1.567 1.005-5.368 3.815-5.526 7.545C2.705 24.048 8.883 24 8.883 24s-4.224-1.424-3.955-3.863c.196-1.773 2.403-3.148 5.149-4.338.451 1.833 1.894 6.393 5.316 7.701 4.313 1.648 6.176-4.37 6.176-4.37s-2.627 3.662-4.816 2.647c-1.59-.737-2.189-3.308-2.448-6.343 1.845.127 6.536.137 8.811-2.785 2.867-3.681-2.158-7.353-2.158-7.353s2.597 3.687.976 5.5c-1.178 1.317-3.755 1.103-6.66.417.689-1.753 2.146-6.31.129-9.423C14.45.32 13.155-.074 11.909.01zm-1.266 2.487c-.547 0-1.097.072-1.557.162.78.292 1.413.754 1.862 1.361a3.578 3.578 0 01.646 1.524c.234-.536.407-1.024.524-1.475a1.254 1.254 0 00-.186-1.039 1.234 1.233 0 00-.93-.523c-.119-.008-.24-.01-.359-.01zm9.713 4.283c-.032.849-.263 1.606-.691 2.228a3.492 3.491 0 01-1.219 1.098 10.375 10.374 0 001.115.065c.142 0 .283-.003.418-.01a1.203 1.203 0 00.912-.502 1.283 1.283 0 00.198-1.065c-.164-.657-.459-1.302-.733-1.814zM3.362 9.626a1.23 1.23 0 00-1.143.802c-.245.629-.378 1.33-.451 1.91.785-1.018 1.825-1.582 2.967-1.582a3.438 3.438 0 01.494.036 9.569 9.569 0 00-1.211-.965 1.185 1.185 0 00-.656-.201zm12.953 8.546c.12.576.26 1.076.424 1.512a1.21 1.21 0 001.135.795 1.247 1.247 0 00.666-.202c.559-.362 1.07-.848 1.463-1.273a4.358 4.358 0 01-1.211.178 3.472 3.472 0 01-2.477-1.01zm-8.168.428a9.79 9.79 0 00-1.272.877 1.24 1.24 0 00-.449.95 1.269 1.269 0 00.451.981c.51.431 1.122.78 1.64 1.03-.465-.707-.711-1.46-.724-2.221a3.605 3.604 0 01.354-1.617z" }) + ] + } + ); +}); + +exports.default = SiTurbosquid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.d.ts new file mode 100644 index 000000000..00c3e8c28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8135"; +declare const SiTurbosquid: IconType; +export { SiTurbosquid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.mjs new file mode 100644 index 000000000..6fc7edb45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurbosquid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8135"; +const SiTurbosquid = React.forwardRef(function SiTurbosquid2({ title = "TurboSquid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.909.01C9.832.153 7.89 1.617 7.89 1.617s4.235-1.383 5.42.752c.861 1.552-.133 3.989-1.67 6.6-1.418-1.212-5.21-4.035-8.73-3.038C-1.528 7.187.43 13.176.43 13.176S.45 8.632 2.803 8.14c1.71-.358 3.673 1.364 5.63 3.664-1.567 1.005-5.368 3.815-5.526 7.545C2.705 24.048 8.883 24 8.883 24s-4.224-1.424-3.955-3.863c.196-1.773 2.403-3.148 5.149-4.338.451 1.833 1.894 6.393 5.316 7.701 4.313 1.648 6.176-4.37 6.176-4.37s-2.627 3.662-4.816 2.647c-1.59-.737-2.189-3.308-2.448-6.343 1.845.127 6.536.137 8.811-2.785 2.867-3.681-2.158-7.353-2.158-7.353s2.597 3.687.976 5.5c-1.178 1.317-3.755 1.103-6.66.417.689-1.753 2.146-6.31.129-9.423C14.45.32 13.155-.074 11.909.01zm-1.266 2.487c-.547 0-1.097.072-1.557.162.78.292 1.413.754 1.862 1.361a3.578 3.578 0 01.646 1.524c.234-.536.407-1.024.524-1.475a1.254 1.254 0 00-.186-1.039 1.234 1.233 0 00-.93-.523c-.119-.008-.24-.01-.359-.01zm9.713 4.283c-.032.849-.263 1.606-.691 2.228a3.492 3.491 0 01-1.219 1.098 10.375 10.374 0 001.115.065c.142 0 .283-.003.418-.01a1.203 1.203 0 00.912-.502 1.283 1.283 0 00.198-1.065c-.164-.657-.459-1.302-.733-1.814zM3.362 9.626a1.23 1.23 0 00-1.143.802c-.245.629-.378 1.33-.451 1.91.785-1.018 1.825-1.582 2.967-1.582a3.438 3.438 0 01.494.036 9.569 9.569 0 00-1.211-.965 1.185 1.185 0 00-.656-.201zm12.953 8.546c.12.576.26 1.076.424 1.512a1.21 1.21 0 001.135.795 1.247 1.247 0 00.666-.202c.559-.362 1.07-.848 1.463-1.273a4.358 4.358 0 01-1.211.178 3.472 3.472 0 01-2.477-1.01zm-8.168.428a9.79 9.79 0 00-1.272.877 1.24 1.24 0 00-.449.95 1.269 1.269 0 00.451.981c.51.431 1.122.78 1.64 1.03-.465-.707-.711-1.46-.724-2.221a3.605 3.604 0 01.354-1.617z" }) + ] + } + ); +}); + +export { SiTurbosquid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.cjs new file mode 100644 index 000000000..0d1133712 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C70A0C"; +const SiTurkishairlines = React__namespace.forwardRef(function SiTurkishairlines2({ title = "Turkish Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.168 13.988c.272 1.623.86 3.115 1.69 4.423 3.095-.863 5.817-2.495 6.785-6.132 1.065-4.003-.15-8.199-3.057-10.422C1.626 4.364-.657 9.077.168 13.988m23.664-3.975c1.098 6.534-3.308 12.722-9.844 13.819-1.1.185-2.19.214-3.245.103a12.023 12.023 0 0 1-8.46-4.892l19.428-5.57c.279-.08.207-.349-.024-.333l-8.145.569c1.148-1.108 2.021-2.467 1.915-4.345-.214-3.043-3.311-6.013-9.071-7.967a12.016 12.016 0 0 1 6.87-1.333c5.228.548 9.663 4.512 10.576 9.95" }) + ] + } + ); +}); + +exports.default = SiTurkishairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.d.ts new file mode 100644 index 000000000..e5faf6c99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C70A0C"; +declare const SiTurkishairlines: IconType; +export { SiTurkishairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.mjs new file mode 100644 index 000000000..2cf1be598 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurkishairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C70A0C"; +const SiTurkishairlines = React.forwardRef(function SiTurkishairlines2({ title = "Turkish Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.168 13.988c.272 1.623.86 3.115 1.69 4.423 3.095-.863 5.817-2.495 6.785-6.132 1.065-4.003-.15-8.199-3.057-10.422C1.626 4.364-.657 9.077.168 13.988m23.664-3.975c1.098 6.534-3.308 12.722-9.844 13.819-1.1.185-2.19.214-3.245.103a12.023 12.023 0 0 1-8.46-4.892l19.428-5.57c.279-.08.207-.349-.024-.333l-8.145.569c1.148-1.108 2.021-2.467 1.915-4.345-.214-3.043-3.311-6.013-9.071-7.967a12.016 12.016 0 0 1 6.87-1.333c5.228.548 9.663 4.512 10.576 9.95" }) + ] + } + ); +}); + +export { SiTurkishairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.cjs new file mode 100644 index 000000000..253f1063c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4FF8D2"; +const SiTurso = React__namespace.forwardRef(function SiTurso2({ title = "Turso", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.31.803-.563-.42-1.11 1.189-.891-1.286-.512.235.704 1.798-.326.35L18.082 0l-.574.284 2.25 4.836-2.108.741h-.05l-1.143-1.359-1.144 1.36H8.687l-1.144-1.36-1.146 1.363H6.36l-2.12-.745L6.491.284 5.919 0l-2.53 2.668-.327-.349.705-1.798-.512-.236-.89 1.287L1.253.382.69.804 2.42 3.69l-.89.939.311 2.375 2.061.787L3.9 8.817H1.947v.444l.755 1.078 1.197.433v6.971l3.057 4.55L7.657 24l1.101-1.606L9.9 24l.999-1.606L12 24l1.102-1.606L14.1 24l1.141-1.606L16.343 24l.701-1.706 3.058-4.55v-6.972l1.196-.433.756-1.078v-.444h-1.952l.003-1.03 2.054-.784.311-2.375-.89-.939zm-8.93 18.718H8.033l.793-1.615.794 1.615.793-1.083.793 1.083.794-1.083.793 1.083.794-1.083.793 1.083.793-1.615.794 1.615zm3.886-7.39-3.3 1.084-.143 3.061-2.827.627-2.826-.627-.142-3.06-3.3-1.085v-1.635l4.266 1.21-.052 4.126h4.109l-.052-4.127 4.266-1.209z" }) + ] + } + ); +}); + +exports.default = SiTurso; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.d.ts new file mode 100644 index 000000000..b8198b4b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4FF8D2"; +declare const SiTurso: IconType; +export { SiTurso as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.mjs new file mode 100644 index 000000000..fc3918619 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTurso.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4FF8D2"; +const SiTurso = React.forwardRef(function SiTurso2({ title = "Turso", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.31.803-.563-.42-1.11 1.189-.891-1.286-.512.235.704 1.798-.326.35L18.082 0l-.574.284 2.25 4.836-2.108.741h-.05l-1.143-1.359-1.144 1.36H8.687l-1.144-1.36-1.146 1.363H6.36l-2.12-.745L6.491.284 5.919 0l-2.53 2.668-.327-.349.705-1.798-.512-.236-.89 1.287L1.253.382.69.804 2.42 3.69l-.89.939.311 2.375 2.061.787L3.9 8.817H1.947v.444l.755 1.078 1.197.433v6.971l3.057 4.55L7.657 24l1.101-1.606L9.9 24l.999-1.606L12 24l1.102-1.606L14.1 24l1.141-1.606L16.343 24l.701-1.706 3.058-4.55v-6.972l1.196-.433.756-1.078v-.444h-1.952l.003-1.03 2.054-.784.311-2.375-.89-.939zm-8.93 18.718H8.033l.793-1.615.794 1.615.793-1.083.793 1.083.794-1.083.793 1.083.794-1.083.793 1.083.793-1.615.794 1.615zm3.886-7.39-3.3 1.084-.143 3.061-2.827.627-2.826-.627-.142-3.06-3.3-1.085v-1.635l4.266 1.21-.052 4.126h4.109l-.052-4.127 4.266-1.209z" }) + ] + } + ); +}); + +export { SiTurso as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.cjs new file mode 100644 index 000000000..fd42fa928 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#850122"; +const SiTuta = React__namespace.forwardRef(function SiTuta2({ title = "Tuta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.993 7.033-5.16 16.755-.043.12a.144.144 0 0 1-.11.091H1.425a.14.14 0 0 1-.13-.191L6.441 6.98a.473.473 0 0 1 .024-.076.134.134 0 0 1 .124-.091H23.82c.14 0 .202.086.173.22zM23.94 4.25 19.885.146c-.178-.173-.192-.144-.384-.144H2.007a.14.14 0 0 0-.14.14c0 .004-.004.061.044.114l.004.005L6 4.393c.096.096.192.12.336.12h17.533c.12 0 .182-.153.072-.263zM4.127 5.805.25 1.95c-.048-.043-.105-.038-.11-.038a.14.14 0 0 0-.14.14v16.975c0 .077.063.14.14.14a.14.14 0 0 0 .13-.092c.004-.005.004-.014.009-.024 0-.004.01-.038.01-.043L4.199 6.164c.048-.144.048-.24-.072-.36z" }) + ] + } + ); +}); + +exports.default = SiTuta; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.d.ts new file mode 100644 index 000000000..df08f5975 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#850122"; +declare const SiTuta: IconType; +export { SiTuta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.mjs new file mode 100644 index 000000000..e00d0634e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTuta.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#850122"; +const SiTuta = React.forwardRef(function SiTuta2({ title = "Tuta", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.993 7.033-5.16 16.755-.043.12a.144.144 0 0 1-.11.091H1.425a.14.14 0 0 1-.13-.191L6.441 6.98a.473.473 0 0 1 .024-.076.134.134 0 0 1 .124-.091H23.82c.14 0 .202.086.173.22zM23.94 4.25 19.885.146c-.178-.173-.192-.144-.384-.144H2.007a.14.14 0 0 0-.14.14c0 .004-.004.061.044.114l.004.005L6 4.393c.096.096.192.12.336.12h17.533c.12 0 .182-.153.072-.263zM4.127 5.805.25 1.95c-.048-.043-.105-.038-.11-.038a.14.14 0 0 0-.14.14v16.975c0 .077.063.14.14.14a.14.14 0 0 0 .13-.092c.004-.005.004-.014.009-.024 0-.004.01-.038.01-.043L4.199 6.164c.048-.144.048-.24-.072-.36z" }) + ] + } + ); +}); + +export { SiTuta as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.cjs new file mode 100644 index 000000000..49c4bdd86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTuxedocomputers = React__namespace.forwardRef(function SiTuxedocomputers2({ title = "TUXEDO Computers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.958 11.13 4.597 7.444h-3.509l-2.94-4.921-4.333 6.365L24 19.968c-.074.725-.144 1.45-.215 2.174-12.391.052-7.537.105-19.928.105l7.192-10.223-4.06-6.666h3.497l2.386 4.096 3.49-5.515C5.202 3.887 11.17 3.987 0 3.963L.223 1.8c12.392-.015 7.498-.046 19.889-.046z" }) + ] + } + ); +}); + +exports.default = SiTuxedocomputers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.d.ts new file mode 100644 index 000000000..88bd3af14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTuxedocomputers: IconType; +export { SiTuxedocomputers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.mjs new file mode 100644 index 000000000..87d7680c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTuxedocomputers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTuxedocomputers = React.forwardRef(function SiTuxedocomputers2({ title = "TUXEDO Computers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m13.958 11.13 4.597 7.444h-3.509l-2.94-4.921-4.333 6.365L24 19.968c-.074.725-.144 1.45-.215 2.174-12.391.052-7.537.105-19.928.105l7.192-10.223-4.06-6.666h3.497l2.386 4.096 3.49-5.515C5.202 3.887 11.17 3.987 0 3.963L.223 1.8c12.392-.015 7.498-.046 19.889-.046z" }) + ] + } + ); +}); + +export { SiTuxedocomputers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.cjs new file mode 100644 index 000000000..5df3548d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E0001C"; +const SiTv4play = React__namespace.forwardRef(function SiTv4play2({ title = "TV4 Play", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.374 15.93V3.718c0-.209-.279-.307-.402-.12L.037 18.289a.199.199 0 0 0-.006.223c.036.072.108.12.192.12h7.331v1.656c0 .113.102.215.222.215h2.376c.12 0 .222-.102.222-.215v-1.656h1.435c.12 0 .222-.096.222-.222v-2.257a.22.22 0 0 0-.224-.222zm-2.826.008H4.795l2.753-4.073zm16.313-3.744L16.704 8.06c-.078-.049-.169.035-.132.12a10.53 10.53 0 0 1 .894 4.26c0 1.512-.317 2.952-.888 4.248-.036.083.053.161.131.12l7.152-4.127a.283.283 0 0 0 0-.487z" }) + ] + } + ); +}); + +exports.default = SiTv4play; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.d.ts new file mode 100644 index 000000000..dbfbcc8b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E0001C"; +declare const SiTv4play: IconType; +export { SiTv4play as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.mjs new file mode 100644 index 000000000..03fd1617c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTv4play.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E0001C"; +const SiTv4play = React.forwardRef(function SiTv4play2({ title = "TV4 Play", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.374 15.93V3.718c0-.209-.279-.307-.402-.12L.037 18.289a.199.199 0 0 0-.006.223c.036.072.108.12.192.12h7.331v1.656c0 .113.102.215.222.215h2.376c.12 0 .222-.102.222-.215v-1.656h1.435c.12 0 .222-.096.222-.222v-2.257a.22.22 0 0 0-.224-.222zm-2.826.008H4.795l2.753-4.073zm16.313-3.744L16.704 8.06c-.078-.049-.169.035-.132.12a10.53 10.53 0 0 1 .894 4.26c0 1.512-.317 2.952-.888 4.248-.036.083.053.161.131.12l7.152-4.127a.283.283 0 0 0 0-.487z" }) + ] + } + ); +}); + +export { SiTv4play as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.cjs new file mode 100644 index 000000000..e717fd92b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD400"; +const SiTvtime = React__namespace.forwardRef(function SiTvtime2({ title = "TV Time", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm4.8 4.8h14.4v4.8h-4.8v9.6H9.6V9.6H4.8Z" }) + ] + } + ); +}); + +exports.default = SiTvtime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.d.ts new file mode 100644 index 000000000..5b5d91b79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD400"; +declare const SiTvtime: IconType; +export { SiTvtime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.mjs new file mode 100644 index 000000000..657eac240 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTvtime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD400"; +const SiTvtime = React.forwardRef(function SiTvtime2({ title = "TV Time", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm4.8 4.8h14.4v4.8h-4.8v9.6H9.6V9.6H4.8Z" }) + ] + } + ); +}); + +export { SiTvtime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.cjs new file mode 100644 index 000000000..f4c9fe4b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTwenty = React__namespace.forwardRef(function SiTwenty2({ title = "Twenty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.97 0H3.03A3.03 3.03 0 0 0 0 3.03v17.94A3.03 3.03 0 0 0 3.03 24h17.94A3.03 3.03 0 0 0 24 20.97V3.03A3.03 3.03 0 0 0 20.97 0ZM4.813 8.936a2.376 2.376 0 0 1 2.374-2.375h4.573c.067 0 .129.04.157.103a.172.172 0 0 1-.03.185l-1.002 1.088a.924.924 0 0 1-.678.299H7.2a.713.713 0 0 0-.713.713v1.796a.418.418 0 0 1-.418.419h-.836a.418.418 0 0 1-.419-.419V8.936zm14.224 6.128a2.376 2.376 0 0 1-2.374 2.375h-1.944a2.376 2.376 0 0 1-2.375-2.375v-3.401c0-.231.087-.454.243-.625l1.134-1.23a.172.172 0 0 1 .298.115v5.13c0 .393.32.713.713.713h1.92c.393 0 .713-.32.713-.713V8.949a.713.713 0 0 0-.713-.713h-2.233c-.255 0-.499.108-.674.295l-6.658 7.235h4c.232 0 .419.187.419.418v.837a.418.418 0 0 1-.419.418h-5.39a.886.886 0 0 1-.886-.886v-.443c0-.223.083-.436.234-.6l7.465-8.109a2.603 2.603 0 0 1 1.916-.84h2.235a2.376 2.376 0 0 1 2.375 2.375v6.128z" }) + ] + } + ); +}); + +exports.default = SiTwenty; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.d.ts new file mode 100644 index 000000000..94d182547 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTwenty: IconType; +export { SiTwenty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.mjs new file mode 100644 index 000000000..e4f7c63fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwenty.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTwenty = React.forwardRef(function SiTwenty2({ title = "Twenty", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.97 0H3.03A3.03 3.03 0 0 0 0 3.03v17.94A3.03 3.03 0 0 0 3.03 24h17.94A3.03 3.03 0 0 0 24 20.97V3.03A3.03 3.03 0 0 0 20.97 0ZM4.813 8.936a2.376 2.376 0 0 1 2.374-2.375h4.573c.067 0 .129.04.157.103a.172.172 0 0 1-.03.185l-1.002 1.088a.924.924 0 0 1-.678.299H7.2a.713.713 0 0 0-.713.713v1.796a.418.418 0 0 1-.418.419h-.836a.418.418 0 0 1-.419-.419V8.936zm14.224 6.128a2.376 2.376 0 0 1-2.374 2.375h-1.944a2.376 2.376 0 0 1-2.375-2.375v-3.401c0-.231.087-.454.243-.625l1.134-1.23a.172.172 0 0 1 .298.115v5.13c0 .393.32.713.713.713h1.92c.393 0 .713-.32.713-.713V8.949a.713.713 0 0 0-.713-.713h-2.233c-.255 0-.499.108-.674.295l-6.658 7.235h4c.232 0 .419.187.419.418v.837a.418.418 0 0 1-.419.418h-5.39a.886.886 0 0 1-.886-.886v-.443c0-.223.083-.436.234-.6l7.465-8.109a2.603 2.603 0 0 1 1.916-.84h2.235a2.376 2.376 0 0 1 2.375 2.375v6.128z" }) + ] + } + ); +}); + +export { SiTwenty as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.cjs new file mode 100644 index 000000000..fa66cbaf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FCC15E"; +const SiTwinkly = React__namespace.forwardRef(function SiTwinkly2({ title = "Twinkly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.0413 0H4.0304C1.8333 0 0 1.7968 0 3.9939v16.0116C0 22.2019 1.8333 24 4.0304 24h16.0109C22.2384 24 24 22.2019 24 20.0055V3.9939C24 1.7968 22.2384 0 20.0413 0zm.4101 10.3762c-.0781.343-.2058.6212-.3418.8641-.2763.4865-.5909.861-.9182 1.221-.265.2895-1.0359 1.0642-1.2763 1.3002a.1197.1197 0 0 0-.0277.1296c.1347.3355.6124 1.3934.6262 2.8007.012 1.2795-.1567 2.1631-.1932 2.3312-.1473.6879-.8541 1.0611-1.5155.9736-.0409-.0051-1.0353-.0957-3.0939-1.2871-.7093-.4103-1.4022-1.107-1.4022-1.107l-.0164.0138c-1.5898 1.6502-3.8202 2.7333-3.8202 2.7333-.854.4242-1.89.0761-2.3148-.7772-.083-.1674-.4934-1.535-.2196-3.8416.0642-.5425.4179-1.8182.4487-1.9133-.1208-.1063-1.2147-1.2449-1.5929-1.732-1.3499-1.7352-1.2952-2.469-1.2952-2.469.0629-.9465.9201-1.3694 1.0938-1.4638.3398-.1756.6683-.2946 1.0013-.389.6627-.19 1.3405-.2473 1.9994-.1989.6577.0459 1.2977.1888 1.8812.4355.5847.2404 1.1209.5551 1.5891.9346.472.3688.8779.7987 1.2373 1.2493.0529.0661.0566.163.0019.2272a.175.175 0 0 1-.2196.0403l-.0031-.0019c-.9786-.5457-1.9913-.9459-2.9844-1.0479-.4966-.0446-.9787-.044-1.4394.0428-.3575.0648-.6942.18-1.0108.3185a.0566.0566 0 0 0-.0189.09c.2127.2316.9069.9881 2.4854 1.9516.7961.4852 1.2405 1.0076.9805 1.8 0 0-.7294 2.0743-.5683 2.1228.1611.0484 2.0876-1.5042 2.0876-1.5042.6665-.4525 1.4564-.3292 2.0335.3732 1.0894 1.3254 2.2651 2.2846 2.3664 2.2191.1007-.0655-.1353-1.6867-.5564-3.1166-.146-.4966.0661-.8603.4003-1.1077.3096-.2284 2.087-1.6212 2.6037-2.3475.2379-.3342.2064-.4638-.1888-.5998-1.6445-.5652-3.3797.0277-3.3797.0277a.6343.6343 0 0 1-.8201-.3663.642.642 0 0 1-.0396-.1976c-.0403-.8635-.2158-1.7383-.5368-2.552-.2656-.6722-.6325-1.3009-1.1165-1.8233a.062.062 0 0 0-.0925.0019c-.3229.3757-.6231.7691-.8628 1.2096-.4651.8553-.5709 1.5218-.6741 1.8566-.0132.0447-.0573.0686-.1064.0812-.0919.0239-.1769-.0554-.1693-.1498.1372-1.7559 1.2745-3.323 1.715-3.8712.1252-.1548.1441-.197.304-.0818l.0365.0209c.827.601 1.4551 1.4305 1.9107 2.3198.3147.618.552 1.2707.7187 1.946a.0687.0687 0 0 0 .0875.0491c.6564-.1995 1.3424-.2807 2.0064-.2706.4897.0107.9252.0466 1.4387.1473.2757.0598.5463.1466.8434.3109.2876.163.6199.4374.81.8597.1951.4197.1843.8767.1082 1.214z" }) + ] + } + ); +}); + +exports.default = SiTwinkly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.d.ts new file mode 100644 index 000000000..375f24869 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FCC15E"; +declare const SiTwinkly: IconType; +export { SiTwinkly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.mjs new file mode 100644 index 000000000..9bbdfcd54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinkly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FCC15E"; +const SiTwinkly = React.forwardRef(function SiTwinkly2({ title = "Twinkly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.0413 0H4.0304C1.8333 0 0 1.7968 0 3.9939v16.0116C0 22.2019 1.8333 24 4.0304 24h16.0109C22.2384 24 24 22.2019 24 20.0055V3.9939C24 1.7968 22.2384 0 20.0413 0zm.4101 10.3762c-.0781.343-.2058.6212-.3418.8641-.2763.4865-.5909.861-.9182 1.221-.265.2895-1.0359 1.0642-1.2763 1.3002a.1197.1197 0 0 0-.0277.1296c.1347.3355.6124 1.3934.6262 2.8007.012 1.2795-.1567 2.1631-.1932 2.3312-.1473.6879-.8541 1.0611-1.5155.9736-.0409-.0051-1.0353-.0957-3.0939-1.2871-.7093-.4103-1.4022-1.107-1.4022-1.107l-.0164.0138c-1.5898 1.6502-3.8202 2.7333-3.8202 2.7333-.854.4242-1.89.0761-2.3148-.7772-.083-.1674-.4934-1.535-.2196-3.8416.0642-.5425.4179-1.8182.4487-1.9133-.1208-.1063-1.2147-1.2449-1.5929-1.732-1.3499-1.7352-1.2952-2.469-1.2952-2.469.0629-.9465.9201-1.3694 1.0938-1.4638.3398-.1756.6683-.2946 1.0013-.389.6627-.19 1.3405-.2473 1.9994-.1989.6577.0459 1.2977.1888 1.8812.4355.5847.2404 1.1209.5551 1.5891.9346.472.3688.8779.7987 1.2373 1.2493.0529.0661.0566.163.0019.2272a.175.175 0 0 1-.2196.0403l-.0031-.0019c-.9786-.5457-1.9913-.9459-2.9844-1.0479-.4966-.0446-.9787-.044-1.4394.0428-.3575.0648-.6942.18-1.0108.3185a.0566.0566 0 0 0-.0189.09c.2127.2316.9069.9881 2.4854 1.9516.7961.4852 1.2405 1.0076.9805 1.8 0 0-.7294 2.0743-.5683 2.1228.1611.0484 2.0876-1.5042 2.0876-1.5042.6665-.4525 1.4564-.3292 2.0335.3732 1.0894 1.3254 2.2651 2.2846 2.3664 2.2191.1007-.0655-.1353-1.6867-.5564-3.1166-.146-.4966.0661-.8603.4003-1.1077.3096-.2284 2.087-1.6212 2.6037-2.3475.2379-.3342.2064-.4638-.1888-.5998-1.6445-.5652-3.3797.0277-3.3797.0277a.6343.6343 0 0 1-.8201-.3663.642.642 0 0 1-.0396-.1976c-.0403-.8635-.2158-1.7383-.5368-2.552-.2656-.6722-.6325-1.3009-1.1165-1.8233a.062.062 0 0 0-.0925.0019c-.3229.3757-.6231.7691-.8628 1.2096-.4651.8553-.5709 1.5218-.6741 1.8566-.0132.0447-.0573.0686-.1064.0812-.0919.0239-.1769-.0554-.1693-.1498.1372-1.7559 1.2745-3.323 1.715-3.8712.1252-.1548.1441-.197.304-.0818l.0365.0209c.827.601 1.4551 1.4305 1.9107 2.3198.3147.618.552 1.2707.7187 1.946a.0687.0687 0 0 0 .0875.0491c.6564-.1995 1.3424-.2807 2.0064-.2706.4897.0107.9252.0466 1.4387.1473.2757.0598.5463.1466.8434.3109.2876.163.6199.4374.81.8597.1951.4197.1843.8767.1082 1.214z" }) + ] + } + ); +}); + +export { SiTwinkly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.cjs new file mode 100644 index 000000000..263bdc857 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTwinmotion = React__namespace.forwardRef(function SiTwinmotion2({ title = "Twinmotion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .1175C7.08.1175 2.8508 3.0792.9994 7.3172h15.7994v.0045l-2.364 16.5475C19.8947 22.7444 24 17.9096 24 12.1175h-6.261l.6875-4.8003h4.5741C21.1484 3.0784 16.9208.1175 12 .1175m-12 12c0 5.8163 4.1393 10.666 9.6331 11.765l1.681-11.765Z" }) + ] + } + ); +}); + +exports.default = SiTwinmotion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.d.ts new file mode 100644 index 000000000..11a84bba7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTwinmotion: IconType; +export { SiTwinmotion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.mjs new file mode 100644 index 000000000..8e6615d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwinmotion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTwinmotion = React.forwardRef(function SiTwinmotion2({ title = "Twinmotion", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .1175C7.08.1175 2.8508 3.0792.9994 7.3172h15.7994v.0045l-2.364 16.5475C19.8947 22.7444 24 17.9096 24 12.1175h-6.261l.6875-4.8003h4.5741C21.1484 3.0784 16.9208.1175 12 .1175m-12 12c0 5.8163 4.1393 10.666 9.6331 11.765l1.681-11.765Z" }) + ] + } + ); +}); + +export { SiTwinmotion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.cjs new file mode 100644 index 000000000..d48d9a7a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9146FF"; +const SiTwitch = React__namespace.forwardRef(function SiTwitch2({ title = "Twitch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0L1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143l-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714Z" }) + ] + } + ); +}); + +exports.default = SiTwitch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.d.ts new file mode 100644 index 000000000..d691ac82b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9146FF"; +declare const SiTwitch: IconType; +export { SiTwitch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.mjs new file mode 100644 index 000000000..07516cd2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTwitch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9146FF"; +const SiTwitch = React.forwardRef(function SiTwitch2({ title = "Twitch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0L1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143l-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714Z" }) + ] + } + ); +}); + +export { SiTwitch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.cjs new file mode 100644 index 000000000..ec15b30ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#262627"; +const SiTypeform = React__namespace.forwardRef(function SiTypeform2({ title = "Typeform", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.502 13.035c-.5 0-.756-.411-.756-.917 0-.505.252-.894.756-.894.513 0 .756.407.756.894-.004.515-.261.917-.756.917Zm-4.888-1.81c.292 0 .414.17.414.317 0 .357-.365.514-1.126.536 0-.442.253-.854.712-.854Zm-3.241 1.81c-.473 0-.67-.384-.67-.917 0-.527.202-.894.67-.894.477 0 .702.38.702.894 0 .537-.234.917-.702.917Zm-3.997-2.334h-.738l1.224 2.808c-.234.519-.36.648-.522.648-.171 0-.333-.138-.45-.259l-.324.43c.22.232.522.366.832.366.387 0 .685-.224.856-.626l1.413-3.371h-.725l-.738 2.012-.828-2.008Zm19.553.523c.36 0 .432.246.432.823v1.516H24v-1.914c0-.689-.473-.988-.91-.988-.386 0-.742.241-.94.688a.901.901 0 0 0-.891-.688c-.365 0-.73.232-.927.666v-.626h-.64v2.857h.64v-1.22c0-.617.324-1.114.765-1.114.36 0 .427.246.427.823v1.516h.64l-.005-1.225c0-.617.329-1.114.77-1.114Zm-5.1-.523h-.324v2.857h.639v-1.095c0-.693.306-1.163.76-1.163.118 0 .217.005.325.05l.099-.676c-.081-.009-.153-.018-.225-.018-.45 0-.774.309-.964.707V10.7h-.31Zm-2.327-.045c-.846 0-1.418.644-1.418 1.458 0 .845.58 1.475 1.418 1.475.85 0 1.431-.648 1.431-1.475-.004-.818-.594-1.458-1.431-1.458Zm-4.852 2.38c-.333 0-.581-.17-.685-.515.847-.036 1.675-.242 1.675-.988 0-.43-.423-.872-1.03-.872-.82 0-1.374.666-1.374 1.457 0 .828.545 1.476 1.36 1.476.567 0 .927-.228 1.21-.559l-.31-.42c-.329.335-.531.42-.846.42Zm-3.151-2.38c-.324 0-.648.188-.774.483v-.438h-.64v3.98h.64v-1.422c.135.205.445.34.72.34.85 0 1.3-.631 1.3-1.48-.004-.841-.445-1.463-1.246-1.463Zm-4.483-1.1H0v.622h1.18v3.38h.67v-3.38h1.166v-.622Zm9.502 1.145h-.383v.572h.383v2.285h.639v-2.285h.621v-.572h-.621v-.447c0-.286.117-.385.382-.385.1 0 .19.027.311.068l.144-.537c-.117-.067-.351-.094-.504-.094-.612 0-.972.367-.972 1.002v.393Z" }) + ] + } + ); +}); + +exports.default = SiTypeform; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.d.ts new file mode 100644 index 000000000..9a20dbfb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#262627"; +declare const SiTypeform: IconType; +export { SiTypeform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.mjs new file mode 100644 index 000000000..5c7e42fcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeform.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#262627"; +const SiTypeform = React.forwardRef(function SiTypeform2({ title = "Typeform", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.502 13.035c-.5 0-.756-.411-.756-.917 0-.505.252-.894.756-.894.513 0 .756.407.756.894-.004.515-.261.917-.756.917Zm-4.888-1.81c.292 0 .414.17.414.317 0 .357-.365.514-1.126.536 0-.442.253-.854.712-.854Zm-3.241 1.81c-.473 0-.67-.384-.67-.917 0-.527.202-.894.67-.894.477 0 .702.38.702.894 0 .537-.234.917-.702.917Zm-3.997-2.334h-.738l1.224 2.808c-.234.519-.36.648-.522.648-.171 0-.333-.138-.45-.259l-.324.43c.22.232.522.366.832.366.387 0 .685-.224.856-.626l1.413-3.371h-.725l-.738 2.012-.828-2.008Zm19.553.523c.36 0 .432.246.432.823v1.516H24v-1.914c0-.689-.473-.988-.91-.988-.386 0-.742.241-.94.688a.901.901 0 0 0-.891-.688c-.365 0-.73.232-.927.666v-.626h-.64v2.857h.64v-1.22c0-.617.324-1.114.765-1.114.36 0 .427.246.427.823v1.516h.64l-.005-1.225c0-.617.329-1.114.77-1.114Zm-5.1-.523h-.324v2.857h.639v-1.095c0-.693.306-1.163.76-1.163.118 0 .217.005.325.05l.099-.676c-.081-.009-.153-.018-.225-.018-.45 0-.774.309-.964.707V10.7h-.31Zm-2.327-.045c-.846 0-1.418.644-1.418 1.458 0 .845.58 1.475 1.418 1.475.85 0 1.431-.648 1.431-1.475-.004-.818-.594-1.458-1.431-1.458Zm-4.852 2.38c-.333 0-.581-.17-.685-.515.847-.036 1.675-.242 1.675-.988 0-.43-.423-.872-1.03-.872-.82 0-1.374.666-1.374 1.457 0 .828.545 1.476 1.36 1.476.567 0 .927-.228 1.21-.559l-.31-.42c-.329.335-.531.42-.846.42Zm-3.151-2.38c-.324 0-.648.188-.774.483v-.438h-.64v3.98h.64v-1.422c.135.205.445.34.72.34.85 0 1.3-.631 1.3-1.48-.004-.841-.445-1.463-1.246-1.463Zm-4.483-1.1H0v.622h1.18v3.38h.67v-3.38h1.166v-.622Zm9.502 1.145h-.383v.572h.383v2.285h.639v-2.285h.621v-.572h-.621v-.447c0-.286.117-.385.382-.385.1 0 .19.027.311.068l.144-.537c-.117-.067-.351-.094-.504-.094-.612 0-.972.367-.972 1.002v.393Z" }) + ] + } + ); +}); + +export { SiTypeform as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.cjs new file mode 100644 index 000000000..077238b26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE0803"; +const SiTypeorm = React__namespace.forwardRef(function SiTypeorm2({ title = "TypeORM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.593 6.863c0 .9-.008 1.742.004 2.583.006.355.07.708.21 1.038.133.306.35.544.652.692.153.075.314.131.47.204a.134.13 0 0 1 .066.099q.008.58 0 1.16c0 .039-.052.097-.093.11a1.818 1.82 0 0 0-1.178 1.22c-.125.387-.137.785-.137 1.187q.002 2.24-.006 4.48c0 .466-.07.926-.225 1.363-.087.241-.226.463-.347.69-.016.031-.05.052-.08.073-.185.137-.365.287-.56.407-.169.103-.354.177-.535.255-.114.048-.236.082-.352.121q-.025.01-.05.014c-.23.028-.46.062-.689.083q-.418.033-.834.052c-.061.003-.123-.02-.183-.026-.104-.01-.13-.07-.128-.168a31.962 32 0 0 0 0-1.017c0-.104.027-.15.139-.141.117.007.24.012.354-.004q.332-.047.655-.125a2.996 3 0 0 0 .44-.153.94.94 0 0 0 .456-.409c.125-.208.185-.437.236-.676.057-.263.036-.52.04-.78.007-1.485 0-2.97.008-4.456q.003-.47.078-.935a2.148 2.15 0 0 1 1.09-1.585l.25-.143c.061-.037.054-.107-.016-.144a2.797 2.8 0 0 1-.815-.646 2.097 2.1 0 0 1-.39-.711c-.18-.551-.205-1.12-.202-1.694.002-1.446-.01-2.892 0-4.337a2.996 3 0 0 0-.072-.666c-.08-.37-.24-.712-.59-.909a2.298 2.3 0 0 0-.467-.177 2.996 3 0 0 0-.503-.11 3.995 4 0 0 0-.54-.025c-.113.001-.153-.03-.15-.147.006-.364.003-.728.001-1.092 0-.089.03-.122.117-.119.196.005.39-.007.584.004.272.016.545.035.815.073a3.096 3.1 0 0 1 1.598.714c.252.215.408.479.534.772.15.346.226.71.275 1.082.13.99.03 1.986.072 2.918ZM1.421 6.715c0-.581-.006-1.163.002-1.745.006-.382.009-.77.049-1.149.027-.263.11-.52.18-.778a1.798 1.8 0 0 1 .366-.723 2.466 2.4 0 0 1 .508-.449c.194-.127.416-.208.629-.305.17-.076.348-.108.53-.141A8.29 8.3 0 0 1 5.258 1.3c.09 0 .122.027.12.117q-.004.558 0 1.118c0 .091-.028.126-.123.122a1.598 1.6 0 0 0-.321.003 7.99 8 0 0 0-.704.127c-.15.035-.291.094-.434.148a.94.94 0 0 0-.46.406c-.123.208-.183.44-.238.68-.067.3.008.588.002.882-.02 1.329-.006 2.658-.01 3.99a9.988 10 0 0 1-.051 1.098c-.08.724-.385 1.328-1.024 1.727q-.173.103-.345.209c-.023.014-.051.049-.047.068a.14.14 0 0 0 .058.084 2.897 2.9 0 0 1 .843.678c.19.23.311.494.4.78.15.496.159 1.006.164 1.516.008 1.298.002 2.597.003 3.896 0 .144.015.288.013.431 0 .072-.025.143-.027.215q-.004.126.005.253c.003.052.02.104.029.156.043.301.137.583.336.817.131.153.303.252.494.321.201.072.41.1.616.149.246.058.485.044.73.054.065.003.09.03.09.093 0 .392.002.784-.005 1.176 0 .029-.053.081-.082.081-.252.005-.503.01-.754-.002a4.994 5 0 0 1-.678-.069c-.234-.044-.46-.122-.69-.186a2.148 2.15 0 0 1-.955-.572 1.898 1.9 0 0 1-.376-.54 4.195 4.2 0 0 1-.292-.87 4.994 5 0 0 1-.103-.964c-.015-1.423-.013-2.846-.023-4.268-.002-.322-.004-.645-.039-.964-.04-.36-.12-.712-.342-1.013a1.498 1.5 0 0 0-.624-.487c-.11-.048-.226-.083-.334-.137-.037-.02-.077-.075-.077-.115q-.006-.56-.003-1.118c0-.1.088-.118.155-.141.372-.13.676-.348.891-.684a2.048 2.05 0 0 0 .344-1.087c.022-.92.03-1.841.044-2.76h-.016Zm6.035.98v-3.11c0-.295.175-.472.472-.472h5.152c.296 0 .473.177.473.472v6.2c0 .32-.17.49-.488.49-1.708 0-3.412-.002-5.12.004-.287 0-.494-.197-.49-.493.006-1.03.002-2.06.002-3.091m.245.002v3.091c0 .208.035.242.24.242h5.119c.214 0 .246-.03.246-.244V4.603c0-.213-.033-.245-.244-.245H7.945c-.21 0-.242.033-.242.247zm-.245 8.39v-3.1c0-.298.173-.474.471-.474h5.152c.3 0 .473.177.473.48v6.184q0 .499-.496.499h-5.11c-.32 0-.488-.17-.488-.489zm.245.006v3.109c0 .189.039.228.227.228h5.142c.202 0 .236-.035.236-.239v-6.197c0-.197-.038-.234-.233-.234H7.941c-.205 0-.24.035-.24.243zm8.741-4.058q-.002 2.09.002 4.184c0 .11-.03.143-.14.142a96.883 97 0 0 0-1.752 0c-.104 0-.12-.04-.12-.13 0-.093.03-.12.12-.12.5.004 1 0 1.499.004.108 0 .148-.031.148-.145q-.003-3.934 0-7.868c0-.112-.036-.147-.147-.146-.5.005-.999 0-1.498.004-.1 0-.123-.034-.123-.128 0-.09.024-.122.119-.121q.888.005 1.776 0c.096 0 .117.033.117.122q-.002 2.101 0 4.202m-5.9-6.336q-1.024 0-2.047-.002c-.04 0-.109-.01-.113-.028-.012-.061-.004-.127 0-.191 0-.01.031-.02.052-.023q.04-.004.082-.002h4.046c.133 0 .194.088.137.208-.01.024-.066.036-.1.036q-.846.002-1.691.001zm.273 1.413c-.585 0-1.17-.004-1.758.003-.13 0-.118-.068-.123-.153-.007-.102.055-.097.123-.097h3.526c.068 0 .13-.004.123.097-.005.086.006.154-.123.153-.59-.008-1.178-.003-1.766-.003Zm.005 1.307c.59 0 1.178.002 1.767-.002.103 0 .118.041.12.13 0 .093-.03.12-.12.12a737.113 738 0 0 0-3.536 0c-.092 0-.121-.029-.12-.121 0-.09.02-.13.121-.13q.886.005 1.768.003m-.009 1.797c-.585 0-1.173-.002-1.759.002-.093 0-.12-.03-.12-.122 0-.093.023-.128.123-.126q1.764.006 3.528 0c.098 0 .123.03.123.125.002.1-.03.124-.127.123q-.884-.003-1.768-.002M8.564 8.664H8.53c-.16 0-.202-.034-.147-.187.045-.129.185-.035.28-.055.027-.004.087.033.092.06.03.172.017.181-.19.181Zm.003-1.799h.034c.166 0 .206.031.148.19-.047.13-.187.034-.284.052-.023.006-.08-.038-.084-.064-.024-.177-.02-.177.185-.177Zm.002 3.351h-.051q-.206.001-.138-.2c.006-.02.038-.04.06-.042.06-.006.118-.002.176-.002.133 0 .19.086.135.208-.006.018-.041.03-.066.034-.038.006-.078.002-.117.002Zm1.973 3.638q1.025.001 2.047-.002c.092 0 .12.027.12.12 0 .09-.017.13-.119.128a878.942 880 0 0 0-4.093 0c-.096 0-.126-.027-.126-.124s.03-.125.125-.125q1.025.004 2.046.003m.272 1.658c-.585 0-1.171-.004-1.758.003-.134 0-.113-.076-.119-.156-.007-.097.051-.094.12-.094h3.533c.075 0 .126.005.12.103-.007.081.006.15-.12.148-.592-.006-1.184-.002-1.776-.002Zm0 1.551q-.88-.002-1.758.002c-.1 0-.12-.037-.121-.129 0-.091.029-.12.12-.12q1.768.004 3.535 0c.09 0 .121.027.12.12 0 .089-.016.13-.12.128q-.887-.004-1.775-.002Zm.009 1.309q.883.002 1.767-.002c.096 0 .12.033.12.122-.002.086-.015.127-.116.126a742.107 743 0 0 0-3.545 0c-.092 0-.116-.033-.113-.118.001-.08.005-.131.11-.13q.889.004 1.778.002m-2.257-3.108h.025c.177 0 .2.013.157.185-.033.13-.161.042-.246.06-.043.008-.117.033-.127-.06-.02-.179-.016-.184.192-.184Zm-.003 1.554h.046c.14 0 .19.07.141.204-.006.019-.039.036-.062.038-.062.005-.124-.003-.187.003-.1.012-.132-.026-.133-.13-.003-.187.133-.087.195-.115m.002 1.798h-.051c-.135 0-.184-.067-.136-.202.006-.018.038-.038.062-.04.054-.006.11-.002.165-.002.145 0 .192.062.146.2-.006.02-.038.038-.06.042-.042.005-.085.001-.125.001Z" }) + ] + } + ); +}); + +exports.default = SiTypeorm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.d.ts new file mode 100644 index 000000000..15db03e35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE0803"; +declare const SiTypeorm: IconType; +export { SiTypeorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.mjs new file mode 100644 index 000000000..a16d4c630 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypeorm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE0803"; +const SiTypeorm = React.forwardRef(function SiTypeorm2({ title = "TypeORM", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.593 6.863c0 .9-.008 1.742.004 2.583.006.355.07.708.21 1.038.133.306.35.544.652.692.153.075.314.131.47.204a.134.13 0 0 1 .066.099q.008.58 0 1.16c0 .039-.052.097-.093.11a1.818 1.82 0 0 0-1.178 1.22c-.125.387-.137.785-.137 1.187q.002 2.24-.006 4.48c0 .466-.07.926-.225 1.363-.087.241-.226.463-.347.69-.016.031-.05.052-.08.073-.185.137-.365.287-.56.407-.169.103-.354.177-.535.255-.114.048-.236.082-.352.121q-.025.01-.05.014c-.23.028-.46.062-.689.083q-.418.033-.834.052c-.061.003-.123-.02-.183-.026-.104-.01-.13-.07-.128-.168a31.962 32 0 0 0 0-1.017c0-.104.027-.15.139-.141.117.007.24.012.354-.004q.332-.047.655-.125a2.996 3 0 0 0 .44-.153.94.94 0 0 0 .456-.409c.125-.208.185-.437.236-.676.057-.263.036-.52.04-.78.007-1.485 0-2.97.008-4.456q.003-.47.078-.935a2.148 2.15 0 0 1 1.09-1.585l.25-.143c.061-.037.054-.107-.016-.144a2.797 2.8 0 0 1-.815-.646 2.097 2.1 0 0 1-.39-.711c-.18-.551-.205-1.12-.202-1.694.002-1.446-.01-2.892 0-4.337a2.996 3 0 0 0-.072-.666c-.08-.37-.24-.712-.59-.909a2.298 2.3 0 0 0-.467-.177 2.996 3 0 0 0-.503-.11 3.995 4 0 0 0-.54-.025c-.113.001-.153-.03-.15-.147.006-.364.003-.728.001-1.092 0-.089.03-.122.117-.119.196.005.39-.007.584.004.272.016.545.035.815.073a3.096 3.1 0 0 1 1.598.714c.252.215.408.479.534.772.15.346.226.71.275 1.082.13.99.03 1.986.072 2.918ZM1.421 6.715c0-.581-.006-1.163.002-1.745.006-.382.009-.77.049-1.149.027-.263.11-.52.18-.778a1.798 1.8 0 0 1 .366-.723 2.466 2.4 0 0 1 .508-.449c.194-.127.416-.208.629-.305.17-.076.348-.108.53-.141A8.29 8.3 0 0 1 5.258 1.3c.09 0 .122.027.12.117q-.004.558 0 1.118c0 .091-.028.126-.123.122a1.598 1.6 0 0 0-.321.003 7.99 8 0 0 0-.704.127c-.15.035-.291.094-.434.148a.94.94 0 0 0-.46.406c-.123.208-.183.44-.238.68-.067.3.008.588.002.882-.02 1.329-.006 2.658-.01 3.99a9.988 10 0 0 1-.051 1.098c-.08.724-.385 1.328-1.024 1.727q-.173.103-.345.209c-.023.014-.051.049-.047.068a.14.14 0 0 0 .058.084 2.897 2.9 0 0 1 .843.678c.19.23.311.494.4.78.15.496.159 1.006.164 1.516.008 1.298.002 2.597.003 3.896 0 .144.015.288.013.431 0 .072-.025.143-.027.215q-.004.126.005.253c.003.052.02.104.029.156.043.301.137.583.336.817.131.153.303.252.494.321.201.072.41.1.616.149.246.058.485.044.73.054.065.003.09.03.09.093 0 .392.002.784-.005 1.176 0 .029-.053.081-.082.081-.252.005-.503.01-.754-.002a4.994 5 0 0 1-.678-.069c-.234-.044-.46-.122-.69-.186a2.148 2.15 0 0 1-.955-.572 1.898 1.9 0 0 1-.376-.54 4.195 4.2 0 0 1-.292-.87 4.994 5 0 0 1-.103-.964c-.015-1.423-.013-2.846-.023-4.268-.002-.322-.004-.645-.039-.964-.04-.36-.12-.712-.342-1.013a1.498 1.5 0 0 0-.624-.487c-.11-.048-.226-.083-.334-.137-.037-.02-.077-.075-.077-.115q-.006-.56-.003-1.118c0-.1.088-.118.155-.141.372-.13.676-.348.891-.684a2.048 2.05 0 0 0 .344-1.087c.022-.92.03-1.841.044-2.76h-.016Zm6.035.98v-3.11c0-.295.175-.472.472-.472h5.152c.296 0 .473.177.473.472v6.2c0 .32-.17.49-.488.49-1.708 0-3.412-.002-5.12.004-.287 0-.494-.197-.49-.493.006-1.03.002-2.06.002-3.091m.245.002v3.091c0 .208.035.242.24.242h5.119c.214 0 .246-.03.246-.244V4.603c0-.213-.033-.245-.244-.245H7.945c-.21 0-.242.033-.242.247zm-.245 8.39v-3.1c0-.298.173-.474.471-.474h5.152c.3 0 .473.177.473.48v6.184q0 .499-.496.499h-5.11c-.32 0-.488-.17-.488-.489zm.245.006v3.109c0 .189.039.228.227.228h5.142c.202 0 .236-.035.236-.239v-6.197c0-.197-.038-.234-.233-.234H7.941c-.205 0-.24.035-.24.243zm8.741-4.058q-.002 2.09.002 4.184c0 .11-.03.143-.14.142a96.883 97 0 0 0-1.752 0c-.104 0-.12-.04-.12-.13 0-.093.03-.12.12-.12.5.004 1 0 1.499.004.108 0 .148-.031.148-.145q-.003-3.934 0-7.868c0-.112-.036-.147-.147-.146-.5.005-.999 0-1.498.004-.1 0-.123-.034-.123-.128 0-.09.024-.122.119-.121q.888.005 1.776 0c.096 0 .117.033.117.122q-.002 2.101 0 4.202m-5.9-6.336q-1.024 0-2.047-.002c-.04 0-.109-.01-.113-.028-.012-.061-.004-.127 0-.191 0-.01.031-.02.052-.023q.04-.004.082-.002h4.046c.133 0 .194.088.137.208-.01.024-.066.036-.1.036q-.846.002-1.691.001zm.273 1.413c-.585 0-1.17-.004-1.758.003-.13 0-.118-.068-.123-.153-.007-.102.055-.097.123-.097h3.526c.068 0 .13-.004.123.097-.005.086.006.154-.123.153-.59-.008-1.178-.003-1.766-.003Zm.005 1.307c.59 0 1.178.002 1.767-.002.103 0 .118.041.12.13 0 .093-.03.12-.12.12a737.113 738 0 0 0-3.536 0c-.092 0-.121-.029-.12-.121 0-.09.02-.13.121-.13q.886.005 1.768.003m-.009 1.797c-.585 0-1.173-.002-1.759.002-.093 0-.12-.03-.12-.122 0-.093.023-.128.123-.126q1.764.006 3.528 0c.098 0 .123.03.123.125.002.1-.03.124-.127.123q-.884-.003-1.768-.002M8.564 8.664H8.53c-.16 0-.202-.034-.147-.187.045-.129.185-.035.28-.055.027-.004.087.033.092.06.03.172.017.181-.19.181Zm.003-1.799h.034c.166 0 .206.031.148.19-.047.13-.187.034-.284.052-.023.006-.08-.038-.084-.064-.024-.177-.02-.177.185-.177Zm.002 3.351h-.051q-.206.001-.138-.2c.006-.02.038-.04.06-.042.06-.006.118-.002.176-.002.133 0 .19.086.135.208-.006.018-.041.03-.066.034-.038.006-.078.002-.117.002Zm1.973 3.638q1.025.001 2.047-.002c.092 0 .12.027.12.12 0 .09-.017.13-.119.128a878.942 880 0 0 0-4.093 0c-.096 0-.126-.027-.126-.124s.03-.125.125-.125q1.025.004 2.046.003m.272 1.658c-.585 0-1.171-.004-1.758.003-.134 0-.113-.076-.119-.156-.007-.097.051-.094.12-.094h3.533c.075 0 .126.005.12.103-.007.081.006.15-.12.148-.592-.006-1.184-.002-1.776-.002Zm0 1.551q-.88-.002-1.758.002c-.1 0-.12-.037-.121-.129 0-.091.029-.12.12-.12q1.768.004 3.535 0c.09 0 .121.027.12.12 0 .089-.016.13-.12.128q-.887-.004-1.775-.002Zm.009 1.309q.883.002 1.767-.002c.096 0 .12.033.12.122-.002.086-.015.127-.116.126a742.107 743 0 0 0-3.545 0c-.092 0-.116-.033-.113-.118.001-.08.005-.131.11-.13q.889.004 1.778.002m-2.257-3.108h.025c.177 0 .2.013.157.185-.033.13-.161.042-.246.06-.043.008-.117.033-.127-.06-.02-.179-.016-.184.192-.184Zm-.003 1.554h.046c.14 0 .19.07.141.204-.006.019-.039.036-.062.038-.062.005-.124-.003-.187.003-.1.012-.132-.026-.133-.13-.003-.187.133-.087.195-.115m.002 1.798h-.051c-.135 0-.184-.067-.136-.202.006-.018.038-.038.062-.04.054-.006.11-.002.165-.002.145 0 .192.062.146.2-.006.02-.038.038-.06.042-.042.005-.085.001-.125.001Z" }) + ] + } + ); +}); + +export { SiTypeorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.cjs new file mode 100644 index 000000000..8503511af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiTyper = React__namespace.forwardRef(function SiTyper2({ title = "Typer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.818 3.646H2.182C.982 3.646 0 4.483 0 5.505v3.707h2.182V5.486h19.636v13.036H2.182v-3.735H0v3.726c0 1.022.982 1.84 2.182 1.84h19.636c1.2 0 2.182-.818 2.182-1.84V5.505c0-1.032-.982-1.859-2.182-1.859Zm-10.909 12.07L15.273 12l-4.364-3.717v2.787H0v1.859h10.909v2.787Z" }) + ] + } + ); +}); + +exports.default = SiTyper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.d.ts new file mode 100644 index 000000000..2bd98f9cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiTyper: IconType; +export { SiTyper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.mjs new file mode 100644 index 000000000..8baedbf01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTyper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiTyper = React.forwardRef(function SiTyper2({ title = "Typer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.818 3.646H2.182C.982 3.646 0 4.483 0 5.505v3.707h2.182V5.486h19.636v13.036H2.182v-3.735H0v3.726c0 1.022.982 1.84 2.182 1.84h19.636c1.2 0 2.182-.818 2.182-1.84V5.505c0-1.032-.982-1.859-2.182-1.859Zm-10.909 12.07L15.273 12l-4.364-3.717v2.787H0v1.859h10.909v2.787Z" }) + ] + } + ); +}); + +export { SiTyper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.cjs new file mode 100644 index 000000000..9e6bcc149 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3178C6"; +const SiTypescript = React__namespace.forwardRef(function SiTypescript2({ title = "TypeScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.125 0C.502 0 0 .502 0 1.125v21.75C0 23.498.502 24 1.125 24h21.75c.623 0 1.125-.502 1.125-1.125V1.125C24 .502 23.498 0 22.875 0zm17.363 9.75c.612 0 1.154.037 1.627.111a6.38 6.38 0 0 1 1.306.34v2.458a3.95 3.95 0 0 0-.643-.361 5.093 5.093 0 0 0-.717-.26 5.453 5.453 0 0 0-1.426-.2c-.3 0-.573.028-.819.086a2.1 2.1 0 0 0-.623.242c-.17.104-.3.229-.393.374a.888.888 0 0 0-.14.49c0 .196.053.373.156.529.104.156.252.304.443.444s.423.276.696.41c.273.135.582.274.926.416.47.197.892.407 1.266.628.374.222.695.473.963.753.268.279.472.598.614.957.142.359.214.776.214 1.253 0 .657-.125 1.21-.373 1.656a3.033 3.033 0 0 1-1.012 1.085 4.38 4.38 0 0 1-1.487.596c-.566.12-1.163.18-1.79.18a9.916 9.916 0 0 1-1.84-.164 5.544 5.544 0 0 1-1.512-.493v-2.63a5.033 5.033 0 0 0 3.237 1.2c.333 0 .624-.03.872-.09.249-.06.456-.144.623-.25.166-.108.29-.234.373-.38a1.023 1.023 0 0 0-.074-1.089 2.12 2.12 0 0 0-.537-.5 5.597 5.597 0 0 0-.807-.444 27.72 27.72 0 0 0-1.007-.436c-.918-.383-1.602-.852-2.053-1.405-.45-.553-.676-1.222-.676-2.005 0-.614.123-1.141.369-1.582.246-.441.58-.804 1.004-1.089a4.494 4.494 0 0 1 1.47-.629 7.536 7.536 0 0 1 1.77-.201zm-15.113.188h9.563v2.166H9.506v9.646H6.789v-9.646H3.375z" }) + ] + } + ); +}); + +exports.default = SiTypescript; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.d.ts new file mode 100644 index 000000000..01e3ef82e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3178C6"; +declare const SiTypescript: IconType; +export { SiTypescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.mjs new file mode 100644 index 000000000..d2ca39a64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypescript.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3178C6"; +const SiTypescript = React.forwardRef(function SiTypescript2({ title = "TypeScript", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.125 0C.502 0 0 .502 0 1.125v21.75C0 23.498.502 24 1.125 24h21.75c.623 0 1.125-.502 1.125-1.125V1.125C24 .502 23.498 0 22.875 0zm17.363 9.75c.612 0 1.154.037 1.627.111a6.38 6.38 0 0 1 1.306.34v2.458a3.95 3.95 0 0 0-.643-.361 5.093 5.093 0 0 0-.717-.26 5.453 5.453 0 0 0-1.426-.2c-.3 0-.573.028-.819.086a2.1 2.1 0 0 0-.623.242c-.17.104-.3.229-.393.374a.888.888 0 0 0-.14.49c0 .196.053.373.156.529.104.156.252.304.443.444s.423.276.696.41c.273.135.582.274.926.416.47.197.892.407 1.266.628.374.222.695.473.963.753.268.279.472.598.614.957.142.359.214.776.214 1.253 0 .657-.125 1.21-.373 1.656a3.033 3.033 0 0 1-1.012 1.085 4.38 4.38 0 0 1-1.487.596c-.566.12-1.163.18-1.79.18a9.916 9.916 0 0 1-1.84-.164 5.544 5.544 0 0 1-1.512-.493v-2.63a5.033 5.033 0 0 0 3.237 1.2c.333 0 .624-.03.872-.09.249-.06.456-.144.623-.25.166-.108.29-.234.373-.38a1.023 1.023 0 0 0-.074-1.089 2.12 2.12 0 0 0-.537-.5 5.597 5.597 0 0 0-.807-.444 27.72 27.72 0 0 0-1.007-.436c-.918-.383-1.602-.852-2.053-1.405-.45-.553-.676-1.222-.676-2.005 0-.614.123-1.141.369-1.582.246-.441.58-.804 1.004-1.089a4.494 4.494 0 0 1 1.47-.629 7.536 7.536 0 0 1 1.77-.201zm-15.113.188h9.563v2.166H9.506v9.646H6.789v-9.646H3.375z" }) + ] + } + ); +}); + +export { SiTypescript as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.cjs new file mode 100644 index 000000000..115f26ce6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8700"; +const SiTypo3 = React__namespace.forwardRef(function SiTypo32({ title = "TYPO3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.08 16.539c-.356.105-.64.144-1.012.144-3.048 0-7.524-10.652-7.524-14.197 0-1.305.31-1.74.745-2.114C6.56.808 2.082 2.177.651 3.917c-.31.436-.497 1.12-.497 1.99C.154 11.442 6.06 24 10.228 24c1.928 0 5.178-3.168 7.852-7.46M16.134 0c3.855 0 7.713.622 7.713 2.798 0 4.415-2.8 9.765-4.23 9.765-2.549 0-5.72-7.09-5.72-10.635C13.897.31 14.518 0 16.134 0" }) + ] + } + ); +}); + +exports.default = SiTypo3; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.d.ts new file mode 100644 index 000000000..a484bb0b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8700"; +declare const SiTypo3: IconType; +export { SiTypo3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.mjs new file mode 100644 index 000000000..8553066ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypo3.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8700"; +const SiTypo3 = React.forwardRef(function SiTypo32({ title = "TYPO3", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.08 16.539c-.356.105-.64.144-1.012.144-3.048 0-7.524-10.652-7.524-14.197 0-1.305.31-1.74.745-2.114C6.56.808 2.082 2.177.651 3.917c-.31.436-.497 1.12-.497 1.99C.154 11.442 6.06 24 10.228 24c1.928 0 5.178-3.168 7.852-7.46M16.134 0c3.855 0 7.713.622 7.713 2.798 0 4.415-2.8 9.765-4.23 9.765-2.549 0-5.72-7.09-5.72-10.635C13.897.31 14.518 0 16.134 0" }) + ] + } + ); +}); + +export { SiTypo3 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.cjs new file mode 100644 index 000000000..19268f134 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#239DAD"; +const SiTypst = React__namespace.forwardRef(function SiTypst2({ title = "Typst", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.654 17.846c0 1.114.16 1.861.479 2.242.32.381.901.572 1.743.572.872 0 1.99-.44 3.356-1.319l.871 1.45C16.547 22.931 14.44 24 12.785 24c-1.656 0-2.964-.395-3.922-1.187-.959-.82-1.438-2.256-1.438-4.307V6.989H5.246l-.349-1.626 2.528-.791V2.418L12.654 0v4.835l5.142-.395-.48 2.857-4.662-.176v10.725Z" }) + ] + } + ); +}); + +exports.default = SiTypst; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.d.ts new file mode 100644 index 000000000..6bfa609b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#239DAD"; +declare const SiTypst: IconType; +export { SiTypst as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.mjs new file mode 100644 index 000000000..bb5c94cad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiTypst.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#239DAD"; +const SiTypst = React.forwardRef(function SiTypst2({ title = "Typst", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.654 17.846c0 1.114.16 1.861.479 2.242.32.381.901.572 1.743.572.872 0 1.99-.44 3.356-1.319l.871 1.45C16.547 22.931 14.44 24 12.785 24c-1.656 0-2.964-.395-3.922-1.187-.959-.82-1.438-2.256-1.438-4.307V6.989H5.246l-.349-1.626 2.528-.791V2.418L12.654 0v4.835l5.142-.395-.48 2.857-4.662-.176v10.725Z" }) + ] + } + ); +}); + +export { SiTypst as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUber.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUber.cjs new file mode 100644 index 000000000..1fcbcce9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUber.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiUber = React__namespace.forwardRef(function SiUber2({ title = "Uber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 7.97v4.958c0 1.867 1.302 3.101 3 3.101.826 0 1.562-.316 2.094-.87v.736H6.27V7.97H5.082v4.888c0 1.257-.85 2.106-1.947 2.106-1.11 0-1.946-.827-1.946-2.106V7.971H0zm7.44 0v7.925h1.13v-.725c.521.532 1.257.86 2.06.86a3.006 3.006 0 0 0 3.034-3.01 3.01 3.01 0 0 0-3.033-3.024 2.86 2.86 0 0 0-2.049.861V7.971H7.439zm9.869 2.038c-1.687 0-2.965 1.37-2.965 3 0 1.72 1.334 3.01 3.066 3.01 1.053 0 1.913-.463 2.49-1.233l-.826-.611c-.43.577-.996.847-1.664.847-.973 0-1.753-.7-1.912-1.64h4.697v-.373c0-1.72-1.222-3-2.886-3zm6.295.068c-.634 0-1.098.294-1.381.758v-.713h-1.131v5.774h1.142V12.61c0-.894.544-1.47 1.291-1.47H24v-1.065h-.396zm-6.319.928c.85 0 1.564.588 1.756 1.47H15.52c.203-.882.916-1.47 1.765-1.47zm-6.732.012c1.086 0 1.98.883 1.98 2.004a1.993 1.993 0 0 1-1.98 2.001A1.989 1.989 0 0 1 8.56 13.02a1.99 1.99 0 0 1 1.992-2.004z" }) + ] + } + ); +}); + +exports.default = SiUber; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUber.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUber.d.ts new file mode 100644 index 000000000..77725350d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUber.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiUber: IconType; +export { SiUber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUber.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUber.mjs new file mode 100644 index 000000000..291261281 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUber.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiUber = React.forwardRef(function SiUber2({ title = "Uber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 7.97v4.958c0 1.867 1.302 3.101 3 3.101.826 0 1.562-.316 2.094-.87v.736H6.27V7.97H5.082v4.888c0 1.257-.85 2.106-1.947 2.106-1.11 0-1.946-.827-1.946-2.106V7.971H0zm7.44 0v7.925h1.13v-.725c.521.532 1.257.86 2.06.86a3.006 3.006 0 0 0 3.034-3.01 3.01 3.01 0 0 0-3.033-3.024 2.86 2.86 0 0 0-2.049.861V7.971H7.439zm9.869 2.038c-1.687 0-2.965 1.37-2.965 3 0 1.72 1.334 3.01 3.066 3.01 1.053 0 1.913-.463 2.49-1.233l-.826-.611c-.43.577-.996.847-1.664.847-.973 0-1.753-.7-1.912-1.64h4.697v-.373c0-1.72-1.222-3-2.886-3zm6.295.068c-.634 0-1.098.294-1.381.758v-.713h-1.131v5.774h1.142V12.61c0-.894.544-1.47 1.291-1.47H24v-1.065h-.396zm-6.319.928c.85 0 1.564.588 1.756 1.47H15.52c.203-.882.916-1.47 1.765-1.47zm-6.732.012c1.086 0 1.98.883 1.98 2.004a1.993 1.993 0 0 1-1.98 2.001A1.989 1.989 0 0 1 8.56 13.02a1.99 1.99 0 0 1 1.992-2.004z" }) + ] + } + ); +}); + +export { SiUber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.cjs new file mode 100644 index 000000000..e471a4cde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#06C167"; +const SiUbereats = React__namespace.forwardRef(function SiUbereats2({ title = "Uber Eats", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 2.8645v4.9972c0 1.8834 1.3315 3.1297 3.0835 3.1297a2.9652 2.9652 0 0 0 2.1502-.876v.7425H6.445V2.8645H5.223v4.9339c0 1.2642-.8696 2.1198-1.9954 2.122-1.1386-.0023-1.997-.834-1.997-2.122V2.8645zm7.3625 0v7.9934h1.163v-.7318a2.9915 2.9915 0 0 0 2.1177.876c1.714.048 3.1295-1.3283 3.1295-3.0429s-1.4155-3.091-3.1295-3.0429a2.9674 2.9674 0 0 0-2.107.876V2.8645zm9.8857 2.0561c-1.6752-.0074-3.0369 1.3492-3.0356 3.0245 0 1.7366 1.3732 3.0373 3.1537 3.0373a3.123 3.123 0 0 0 2.5578-1.2438l-.8495-.6177a2.0498 2.0498 0 0 1-1.7083.8585c-.9763.0126-1.8147-.6915-1.971-1.6553h4.818v-.379c0-1.734-1.254-3.0238-2.9638-3.0245zm6.1632.0667a1.5943 1.5943 0 0 0-1.376.7657v-.7186h-1.163v5.8235h1.1741V7.5465c0-.9023.5581-1.4847 1.3268-1.4847h.4949V4.9886c-.1576.0013-.3186-.0009-.4568-.0013zm-6.2034.944a1.844 1.844 0 0 1 1.8337 1.486H15.424a1.844 1.844 0 0 1 1.784-1.486zm-6.6589.0056c1.1223-.0084 2.0365.8992 2.0364 2.0215-.0026 1.1203-.914 2.0258-2.0343 2.021a2.0151 2.0151 0 0 1-1.4159-.5987A2.0152 2.0152 0 0 1 8.55 7.9592a2.0152 2.0152 0 0 1 .5838-1.422 2.0152 2.0152 0 0 1 1.4153-.6003zM0 12.9864v7.9716h5.7222v-1.3666H1.5458v-1.971h4.0647v-1.314H1.5458v-1.9556h4.1764v-1.3644zm14.5608.4097v1.6861h-1.1519v1.338h1.1545v3.143c0 .7927.5712 1.4209 1.6005 1.4209h1.6425L17.8 19.646h-1.1412c-.3482 0-.5714-.1509-.5714-.464v-2.7683H17.8v-1.3316h-1.7062v-1.686zm-5.2974 1.5275c-1.7348-.0103-3.141 1.4035-3.1214 3.1382.0196 1.7346 1.4575 3.1163 3.1915 3.0668a2.9915 2.9915 0 0 0 1.912-.6655v.532h1.5175v-5.9129h-1.509v.5257a3.0047 3.0047 0 0 0-1.9205-.6835c-.0244-.0007-.0492-.0006-.0701-.0008zm11.771.0077c-1.5855 0-2.7002.6437-2.7002 1.8854 0 .8607.6132 1.4213 1.936 1.695l1.4478.3286c.5694.1095.7224.2585.7224.4906 0 .3701-.438.6022-1.1279.6022-.876 0-1.3774-.1907-1.5723-.8477h-1.533c.219 1.2307 1.1563 2.05 3.0484 2.05h.0022c1.752 0 2.7422-.819 2.7422-1.9534 0-.8059-.5847-1.4084-1.8089-1.6668l-1.2943-.2605c-.7511-.1358-.988-.2738-.988-.5454 0-.357.3616-.5757 1.0295-.5757.7227 0 1.2527.1925 1.406.8473h1.5175c-.0854-1.2286-.9899-2.0497-2.8273-2.0497zM9.467 16.1815c1.0092.0096 1.8188.8369 1.8067 1.8461.0014 1.0046-.8198 1.816-1.8243 1.8025-1.0075-.0048-1.8203-.8256-1.8155-1.833.0048-1.0076.8255-1.8204 1.833-1.8156z" }) + ] + } + ); +}); + +exports.default = SiUbereats; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.d.ts new file mode 100644 index 000000000..6f0881978 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#06C167"; +declare const SiUbereats: IconType; +export { SiUbereats as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.mjs new file mode 100644 index 000000000..b6bea4820 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbereats.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#06C167"; +const SiUbereats = React.forwardRef(function SiUbereats2({ title = "Uber Eats", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 2.8645v4.9972c0 1.8834 1.3315 3.1297 3.0835 3.1297a2.9652 2.9652 0 0 0 2.1502-.876v.7425H6.445V2.8645H5.223v4.9339c0 1.2642-.8696 2.1198-1.9954 2.122-1.1386-.0023-1.997-.834-1.997-2.122V2.8645zm7.3625 0v7.9934h1.163v-.7318a2.9915 2.9915 0 0 0 2.1177.876c1.714.048 3.1295-1.3283 3.1295-3.0429s-1.4155-3.091-3.1295-3.0429a2.9674 2.9674 0 0 0-2.107.876V2.8645zm9.8857 2.0561c-1.6752-.0074-3.0369 1.3492-3.0356 3.0245 0 1.7366 1.3732 3.0373 3.1537 3.0373a3.123 3.123 0 0 0 2.5578-1.2438l-.8495-.6177a2.0498 2.0498 0 0 1-1.7083.8585c-.9763.0126-1.8147-.6915-1.971-1.6553h4.818v-.379c0-1.734-1.254-3.0238-2.9638-3.0245zm6.1632.0667a1.5943 1.5943 0 0 0-1.376.7657v-.7186h-1.163v5.8235h1.1741V7.5465c0-.9023.5581-1.4847 1.3268-1.4847h.4949V4.9886c-.1576.0013-.3186-.0009-.4568-.0013zm-6.2034.944a1.844 1.844 0 0 1 1.8337 1.486H15.424a1.844 1.844 0 0 1 1.784-1.486zm-6.6589.0056c1.1223-.0084 2.0365.8992 2.0364 2.0215-.0026 1.1203-.914 2.0258-2.0343 2.021a2.0151 2.0151 0 0 1-1.4159-.5987A2.0152 2.0152 0 0 1 8.55 7.9592a2.0152 2.0152 0 0 1 .5838-1.422 2.0152 2.0152 0 0 1 1.4153-.6003zM0 12.9864v7.9716h5.7222v-1.3666H1.5458v-1.971h4.0647v-1.314H1.5458v-1.9556h4.1764v-1.3644zm14.5608.4097v1.6861h-1.1519v1.338h1.1545v3.143c0 .7927.5712 1.4209 1.6005 1.4209h1.6425L17.8 19.646h-1.1412c-.3482 0-.5714-.1509-.5714-.464v-2.7683H17.8v-1.3316h-1.7062v-1.686zm-5.2974 1.5275c-1.7348-.0103-3.141 1.4035-3.1214 3.1382.0196 1.7346 1.4575 3.1163 3.1915 3.0668a2.9915 2.9915 0 0 0 1.912-.6655v.532h1.5175v-5.9129h-1.509v.5257a3.0047 3.0047 0 0 0-1.9205-.6835c-.0244-.0007-.0492-.0006-.0701-.0008zm11.771.0077c-1.5855 0-2.7002.6437-2.7002 1.8854 0 .8607.6132 1.4213 1.936 1.695l1.4478.3286c.5694.1095.7224.2585.7224.4906 0 .3701-.438.6022-1.1279.6022-.876 0-1.3774-.1907-1.5723-.8477h-1.533c.219 1.2307 1.1563 2.05 3.0484 2.05h.0022c1.752 0 2.7422-.819 2.7422-1.9534 0-.8059-.5847-1.4084-1.8089-1.6668l-1.2943-.2605c-.7511-.1358-.988-.2738-.988-.5454 0-.357.3616-.5757 1.0295-.5757.7227 0 1.2527.1925 1.406.8473h1.5175c-.0854-1.2286-.9899-2.0497-2.8273-2.0497zM9.467 16.1815c1.0092.0096 1.8188.8369 1.8067 1.8461.0014 1.0046-.8198 1.816-1.8243 1.8025-1.0075-.0048-1.8203-.8256-1.8155-1.833.0048-1.0076.8255-1.8204 1.833-1.8156z" }) + ] + } + ); +}); + +export { SiUbereats as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.cjs new file mode 100644 index 000000000..0878dfab5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0559C9"; +const SiUbiquiti = React__namespace.forwardRef(function SiUbiquiti2({ title = "Ubiquiti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.1627 0h-1.4882v1.4882h1.4882zm-5.2072 10.4226V7.4409l.0007.001h2.9755v2.9762h2.9756v.9433c0 1.0906-.0927 2.3827-.306 3.3973-.1194.5672-.3004 1.1308-.5127 1.672-.2175.5537-.468 1.0841-.7408 1.5595a11.6795 11.6795 0 0 1-1.2456 1.7762l-.0253.0294-.0417.0488c-.1148.1347-.2283.2679-.3531.398a11.7612 11.7612 0 0 1-.4494.4492c-1.9046 1.8343-4.3861 2.98-6.9808 3.243-.3122.032-.939.0652-1.2519.0652-.3139-.001-.9397-.0331-1.252-.0651-2.5946-.263-5.0761-1.4097-6.9806-3.243a11.75 11.75 0 0 1-.4495-.4494c-.131-.1356-.249-.2748-.3683-.4154l-.0006-.0004-.0512-.0603a11.6576 11.6576 0 0 1-1.2456-1.7762c-.2727-.4763-.5233-1.0058-.7408-1.5595-.2123-.5414-.3933-1.1048-.5128-1.6718C.1854 13.743.0927 12.452.0927 11.3616V.1864h5.9518v10.2362s0 .7847.0099 1.0415l.0022.0599v.0004c.0127.332.0247.6575.0594.9812.098.919.3014 1.7913.7203 2.5288.1213.213.2443.42.3915.616.8953 1.1939 2.2577 2.0901 3.9573 2.3398.2022.0294.6108.0552.8149.0552.204 0 .6125-.0258.8149-.0552 1.6996-.2497 3.062-1.146 3.9573-2.3398.148-.196.2701-.403.3914-.616.419-.7375.6224-1.6095.7204-2.5288.0346-.3243.047-.6503.0594-.9831l.0022-.0584c.0099-.2568.0099-1.0415.0099-1.0415zm.7427-8.19h2.2326v2.2319h2.9764v2.9764h-2.9764V4.4654h-2.2326V2.2328Z" }) + ] + } + ); +}); + +exports.default = SiUbiquiti; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.d.ts new file mode 100644 index 000000000..46c6a1ed5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0559C9"; +declare const SiUbiquiti: IconType; +export { SiUbiquiti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.mjs new file mode 100644 index 000000000..825950abb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbiquiti.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0559C9"; +const SiUbiquiti = React.forwardRef(function SiUbiquiti2({ title = "Ubiquiti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.1627 0h-1.4882v1.4882h1.4882zm-5.2072 10.4226V7.4409l.0007.001h2.9755v2.9762h2.9756v.9433c0 1.0906-.0927 2.3827-.306 3.3973-.1194.5672-.3004 1.1308-.5127 1.672-.2175.5537-.468 1.0841-.7408 1.5595a11.6795 11.6795 0 0 1-1.2456 1.7762l-.0253.0294-.0417.0488c-.1148.1347-.2283.2679-.3531.398a11.7612 11.7612 0 0 1-.4494.4492c-1.9046 1.8343-4.3861 2.98-6.9808 3.243-.3122.032-.939.0652-1.2519.0652-.3139-.001-.9397-.0331-1.252-.0651-2.5946-.263-5.0761-1.4097-6.9806-3.243a11.75 11.75 0 0 1-.4495-.4494c-.131-.1356-.249-.2748-.3683-.4154l-.0006-.0004-.0512-.0603a11.6576 11.6576 0 0 1-1.2456-1.7762c-.2727-.4763-.5233-1.0058-.7408-1.5595-.2123-.5414-.3933-1.1048-.5128-1.6718C.1854 13.743.0927 12.452.0927 11.3616V.1864h5.9518v10.2362s0 .7847.0099 1.0415l.0022.0599v.0004c.0127.332.0247.6575.0594.9812.098.919.3014 1.7913.7203 2.5288.1213.213.2443.42.3915.616.8953 1.1939 2.2577 2.0901 3.9573 2.3398.2022.0294.6108.0552.8149.0552.204 0 .6125-.0258.8149-.0552 1.6996-.2497 3.062-1.146 3.9573-2.3398.148-.196.2701-.403.3914-.616.419-.7375.6224-1.6095.7204-2.5288.0346-.3243.047-.6503.0594-.9831l.0022-.0584c.0099-.2568.0099-1.0415.0099-1.0415zm.7427-8.19h2.2326v2.2319h2.9764v2.9764h-2.9764V4.4654h-2.2326V2.2328Z" }) + ] + } + ); +}); + +export { SiUbiquiti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.cjs new file mode 100644 index 000000000..54f8aa533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiUbisoft = React__namespace.forwardRef(function SiUbisoft2({ title = "Ubisoft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.561 11.988C23.301-.304 6.954-4.89.656 6.634c.282.206.661.477.943.672a11.747 11.747 0 00-.976 3.067 11.885 11.885 0 00-.184 2.071C.439 18.818 5.621 24 12.005 24c6.385 0 11.556-5.17 11.556-11.556v-.455zm-20.27 2.06c-.152 1.246-.054 1.636-.054 1.788l-.282.098c-.108-.206-.37-.932-.488-1.908C2.163 10.308 4.7 6.96 8.57 6.33c3.544-.52 6.937 1.68 7.728 4.758l-.282.098c-.087-.087-.228-.336-.77-.878-4.281-4.281-11.002-2.32-11.956 3.74zm11.002 2.081a3.145 3.145 0 01-2.59 1.355 3.15 3.15 0 01-3.155-3.155 3.159 3.159 0 012.927-3.144c1.018-.043 1.972.51 2.416 1.398a2.58 2.58 0 01-.455 2.95c.293.205.575.4.856.595zm6.58.12c-1.669 3.782-5.106 5.766-8.77 5.712-7.034-.347-9.083-8.466-4.38-11.393l.207.206c-.076.108-.358.325-.791 1.182-.51 1.041-.672 2.081-.607 2.732.369 5.67 8.314 6.83 11.045 1.214C21.057 8.217 11.822.401 3.626 6.374l-.184-.184C5.599 2.808 9.816 1.3 13.837 2.309c6.147 1.55 9.453 7.956 7.035 13.94z" }) + ] + } + ); +}); + +exports.default = SiUbisoft; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.d.ts new file mode 100644 index 000000000..593b438df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiUbisoft: IconType; +export { SiUbisoft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.mjs new file mode 100644 index 000000000..a07b5877f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbisoft.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiUbisoft = React.forwardRef(function SiUbisoft2({ title = "Ubisoft", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.561 11.988C23.301-.304 6.954-4.89.656 6.634c.282.206.661.477.943.672a11.747 11.747 0 00-.976 3.067 11.885 11.885 0 00-.184 2.071C.439 18.818 5.621 24 12.005 24c6.385 0 11.556-5.17 11.556-11.556v-.455zm-20.27 2.06c-.152 1.246-.054 1.636-.054 1.788l-.282.098c-.108-.206-.37-.932-.488-1.908C2.163 10.308 4.7 6.96 8.57 6.33c3.544-.52 6.937 1.68 7.728 4.758l-.282.098c-.087-.087-.228-.336-.77-.878-4.281-4.281-11.002-2.32-11.956 3.74zm11.002 2.081a3.145 3.145 0 01-2.59 1.355 3.15 3.15 0 01-3.155-3.155 3.159 3.159 0 012.927-3.144c1.018-.043 1.972.51 2.416 1.398a2.58 2.58 0 01-.455 2.95c.293.205.575.4.856.595zm6.58.12c-1.669 3.782-5.106 5.766-8.77 5.712-7.034-.347-9.083-8.466-4.38-11.393l.207.206c-.076.108-.358.325-.791 1.182-.51 1.041-.672 2.081-.607 2.732.369 5.67 8.314 6.83 11.045 1.214C21.057 8.217 11.822.401 3.626 6.374l-.184-.184C5.599 2.808 9.816 1.3 13.837 2.309c6.147 1.55 9.453 7.956 7.035 13.94z" }) + ] + } + ); +}); + +export { SiUbisoft as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.cjs new file mode 100644 index 000000000..4bbebe419 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#800000"; +const SiUblockorigin = React__namespace.forwardRef(function SiUblockorigin2({ title = "uBlock Origin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C7.502 3 6.002 3 1.5 3c0 15.002 0 15.002 10.5 21 10.5-5.998 10.5-5.998 10.5-21-4.498 0-5.998 0-10.5-3zM5.956 7.472h1.512v4.536c0 1.322.19 1.508 1.512 1.508 1.323 0 1.512-.19 1.512-1.512V7.472H12v.767a3.75 3.75 0 012.268-.767 3.79 3.79 0 013.776 3.78 3.79 3.79 0 01-3.78 3.775 3.765 3.764 0 01-2.684-1.133c-.464.77-1.315 1.133-2.6 1.133-2.079 0-3.024-.944-3.024-3.023zm8.308 1.512A2.254 2.254 0 0012 11.252a2.254 2.254 0 002.268 2.264 2.254 2.254 0 002.264-2.268 2.254 2.254 0 00-2.268-2.264z" }) + ] + } + ); +}); + +exports.default = SiUblockorigin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.d.ts new file mode 100644 index 000000000..7ad935e04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#800000"; +declare const SiUblockorigin: IconType; +export { SiUblockorigin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.mjs new file mode 100644 index 000000000..f122cde99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUblockorigin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#800000"; +const SiUblockorigin = React.forwardRef(function SiUblockorigin2({ title = "uBlock Origin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C7.502 3 6.002 3 1.5 3c0 15.002 0 15.002 10.5 21 10.5-5.998 10.5-5.998 10.5-21-4.498 0-5.998 0-10.5-3zM5.956 7.472h1.512v4.536c0 1.322.19 1.508 1.512 1.508 1.323 0 1.512-.19 1.512-1.512V7.472H12v.767a3.75 3.75 0 012.268-.767 3.79 3.79 0 013.776 3.78 3.79 3.79 0 01-3.78 3.775 3.765 3.764 0 01-2.684-1.133c-.464.77-1.315 1.133-2.6 1.133-2.079 0-3.024-.944-3.024-3.023zm8.308 1.512A2.254 2.254 0 0012 11.252a2.254 2.254 0 002.268 2.264 2.254 2.254 0 002.264-2.268 2.254 2.254 0 00-2.268-2.264z" }) + ] + } + ); +}); + +export { SiUblockorigin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.cjs new file mode 100644 index 000000000..bc186afe7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E95420"; +const SiUbuntu = React__namespace.forwardRef(function SiUbuntu2({ title = "Ubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.61.455a3.41 3.41 0 0 0-3.41 3.41 3.41 3.41 0 0 0 3.41 3.41 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41zM12.92.8C8.923.777 5.137 2.941 3.148 6.451a4.5 4.5 0 0 1 .26-.007 4.92 4.92 0 0 1 2.585.737A8.316 8.316 0 0 1 12.688 3.6 4.944 4.944 0 0 1 13.723.834 11.008 11.008 0 0 0 12.92.8zm9.226 4.994a4.915 4.915 0 0 1-1.918 2.246 8.36 8.36 0 0 1-.273 8.303 4.89 4.89 0 0 1 1.632 2.54 11.156 11.156 0 0 0 .559-13.089zM3.41 7.932A3.41 3.41 0 0 0 0 11.342a3.41 3.41 0 0 0 3.41 3.409 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41zm2.027 7.866a4.908 4.908 0 0 1-2.915.358 11.1 11.1 0 0 0 7.991 6.698 11.234 11.234 0 0 0 2.422.249 4.879 4.879 0 0 1-.999-2.85 8.484 8.484 0 0 1-.836-.136 8.304 8.304 0 0 1-5.663-4.32zm11.405.928a3.41 3.41 0 0 0-3.41 3.41 3.41 3.41 0 0 0 3.41 3.41 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41z" }) + ] + } + ); +}); + +exports.default = SiUbuntu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.d.ts new file mode 100644 index 000000000..00b0cde9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E95420"; +declare const SiUbuntu: IconType; +export { SiUbuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.mjs new file mode 100644 index 000000000..bf69feb9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E95420"; +const SiUbuntu = React.forwardRef(function SiUbuntu2({ title = "Ubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.61.455a3.41 3.41 0 0 0-3.41 3.41 3.41 3.41 0 0 0 3.41 3.41 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41zM12.92.8C8.923.777 5.137 2.941 3.148 6.451a4.5 4.5 0 0 1 .26-.007 4.92 4.92 0 0 1 2.585.737A8.316 8.316 0 0 1 12.688 3.6 4.944 4.944 0 0 1 13.723.834 11.008 11.008 0 0 0 12.92.8zm9.226 4.994a4.915 4.915 0 0 1-1.918 2.246 8.36 8.36 0 0 1-.273 8.303 4.89 4.89 0 0 1 1.632 2.54 11.156 11.156 0 0 0 .559-13.089zM3.41 7.932A3.41 3.41 0 0 0 0 11.342a3.41 3.41 0 0 0 3.41 3.409 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41zm2.027 7.866a4.908 4.908 0 0 1-2.915.358 11.1 11.1 0 0 0 7.991 6.698 11.234 11.234 0 0 0 2.422.249 4.879 4.879 0 0 1-.999-2.85 8.484 8.484 0 0 1-.836-.136 8.304 8.304 0 0 1-5.663-4.32zm11.405.928a3.41 3.41 0 0 0-3.41 3.41 3.41 3.41 0 0 0 3.41 3.41 3.41 3.41 0 0 0 3.41-3.41 3.41 3.41 0 0 0-3.41-3.41z" }) + ] + } + ); +}); + +export { SiUbuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.cjs new file mode 100644 index 000000000..5b4012127 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#84A454"; +const SiUbuntumate = React__namespace.forwardRef(function SiUbuntumate2({ title = "Ubuntu MATE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12zm2.005 3.245L18.667 6 14 8.755ZM12 4.66c.342 0 .676.028 1.005.073v1.021A6.327 6.327 0 0 0 6.12 9.63l-.865-.51C6.378 6.503 8.978 4.66 12 4.66Zm0 2.495c.342 0 .677.041 1 .11v1.036a3.866 3.866 0 0 0-1-.13 3.812 3.812 0 0 0-3.672 2.76l-.896-.531A4.855 4.855 0 0 1 12 7.156Zm5.885.464A7.305 7.305 0 0 1 19.34 12a7.308 7.308 0 0 1-1.5 4.437l-.87-.515A6.3 6.3 0 0 0 18.329 12a6.31 6.31 0 0 0-1.313-3.865zm-2.171 1.286a4.81 4.81 0 0 1-.047 6.25l-.891-.526A3.793 3.793 0 0 0 15.828 12c0-.996-.377-1.899-.995-2.578zm-12.209.339L8.167 12 3.5 14.755Zm4.823 3.823A3.809 3.809 0 0 0 12 15.823c.346 0 .681-.047 1-.13v1.041a4.81 4.81 0 0 1-1 .11c-2.106 0-3.906-1.362-4.568-3.25zM6.12 14.37A6.327 6.327 0 0 0 12 18.328c.34 0 .67-.027.995-.078v1.016a7.212 7.212 0 0 1-.995.073c-3.022 0-5.622-1.842-6.745-4.459zm7.88.963 4.661 2.75-4.666 2.756z" }) + ] + } + ); +}); + +exports.default = SiUbuntumate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.d.ts new file mode 100644 index 000000000..b6b912bd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#84A454"; +declare const SiUbuntumate: IconType; +export { SiUbuntumate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.mjs new file mode 100644 index 000000000..ed624ade1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUbuntumate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#84A454"; +const SiUbuntumate = React.forwardRef(function SiUbuntumate2({ title = "Ubuntu MATE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12s12-5.373 12-12c0-6.628-5.373-12-12-12zm2.005 3.245L18.667 6 14 8.755ZM12 4.66c.342 0 .676.028 1.005.073v1.021A6.327 6.327 0 0 0 6.12 9.63l-.865-.51C6.378 6.503 8.978 4.66 12 4.66Zm0 2.495c.342 0 .677.041 1 .11v1.036a3.866 3.866 0 0 0-1-.13 3.812 3.812 0 0 0-3.672 2.76l-.896-.531A4.855 4.855 0 0 1 12 7.156Zm5.885.464A7.305 7.305 0 0 1 19.34 12a7.308 7.308 0 0 1-1.5 4.437l-.87-.515A6.3 6.3 0 0 0 18.329 12a6.31 6.31 0 0 0-1.313-3.865zm-2.171 1.286a4.81 4.81 0 0 1-.047 6.25l-.891-.526A3.793 3.793 0 0 0 15.828 12c0-.996-.377-1.899-.995-2.578zm-12.209.339L8.167 12 3.5 14.755Zm4.823 3.823A3.809 3.809 0 0 0 12 15.823c.346 0 .681-.047 1-.13v1.041a4.81 4.81 0 0 1-1 .11c-2.106 0-3.906-1.362-4.568-3.25zM6.12 14.37A6.327 6.327 0 0 0 12 18.328c.34 0 .67-.027.995-.078v1.016a7.212 7.212 0 0 1-.995.073c-3.022 0-5.622-1.842-6.745-4.459zm7.88.963 4.661 2.75-4.666 2.756z" }) + ] + } + ); +}); + +export { SiUbuntumate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.cjs new file mode 100644 index 000000000..ec6f4d500 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#02B3E4"; +const SiUdacity = React__namespace.forwardRef(function SiUdacity2({ title = "Udacity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 0L0 4.8v9.6C0 20.8 4.8 24 8.8 24c1.348 0 2.786-.362 4.1-1.088l6.303-3.633C21.687 18.155 24 15.64 24 11.2V.8L22.4 0 16 4v10.4c0 1.6-.3 2.898-.785 3.948-2.002-.257-5.615-1.597-5.615-7.15V.802zm0 1.76v9.44c0 5.342 3.346 7.9 6.313 8.597-1.618 1.99-4.025 2.603-5.512 2.603-2.4 0-7.2-1.6-7.2-8V5.6zm14.4.04v9.4c0 5.45-3.482 6.84-5.504 7.132.446-1.14.704-2.45.704-3.932V4.8z" }) + ] + } + ); +}); + +exports.default = SiUdacity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.d.ts new file mode 100644 index 000000000..58d0ff0cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#02B3E4"; +declare const SiUdacity: IconType; +export { SiUdacity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.mjs new file mode 100644 index 000000000..52c5b24a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdacity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#02B3E4"; +const SiUdacity = React.forwardRef(function SiUdacity2({ title = "Udacity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8 0L0 4.8v9.6C0 20.8 4.8 24 8.8 24c1.348 0 2.786-.362 4.1-1.088l6.303-3.633C21.687 18.155 24 15.64 24 11.2V.8L22.4 0 16 4v10.4c0 1.6-.3 2.898-.785 3.948-2.002-.257-5.615-1.597-5.615-7.15V.802zm0 1.76v9.44c0 5.342 3.346 7.9 6.313 8.597-1.618 1.99-4.025 2.603-5.512 2.603-2.4 0-7.2-1.6-7.2-8V5.6zm14.4.04v9.4c0 5.45-3.482 6.84-5.504 7.132.446-1.14.704-2.45.704-3.932V4.8z" }) + ] + } + ); +}); + +export { SiUdacity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.cjs new file mode 100644 index 000000000..cb8ec4940 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A435F0"; +const SiUdemy = React__namespace.forwardRef(function SiUdemy2({ title = "Udemy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0L5.81 3.573v3.574l6.189-3.574 6.191 3.574V3.573zM5.81 10.148v8.144c0 1.85.589 3.243 1.741 4.234S10.177 24 11.973 24s3.269-.482 4.448-1.474c1.179-.991 1.768-2.439 1.768-4.314v-8.064h-3.242v7.85c0 2.036-1.509 3.055-2.948 3.055-1.428 0-2.947-.991-2.947-3.027v-7.878z" }) + ] + } + ); +}); + +exports.default = SiUdemy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.d.ts new file mode 100644 index 000000000..c09abcb21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A435F0"; +declare const SiUdemy: IconType; +export { SiUdemy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.mjs new file mode 100644 index 000000000..dedd1a9a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdemy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A435F0"; +const SiUdemy = React.forwardRef(function SiUdemy2({ title = "Udemy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0L5.81 3.573v3.574l6.189-3.574 6.191 3.574V3.573zM5.81 10.148v8.144c0 1.85.589 3.243 1.741 4.234S10.177 24 11.973 24s3.269-.482 4.448-1.474c1.179-.991 1.768-2.439 1.768-4.314v-8.064h-3.242v7.85c0 2.036-1.509 3.055-2.948 3.055-1.428 0-2.947-.991-2.947-3.027v-7.878z" }) + ] + } + ); +}); + +export { SiUdemy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.cjs new file mode 100644 index 000000000..52c185a30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005EA6"; +const SiUdotsdotnews = React__namespace.forwardRef(function SiUdotsdotnews2({ title = "U.S. News", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 9.12v4.70543h1.98926c-.48065-.1604-.79078-.50119-.79078-1.07684v-2.48285h.79359v2.41442c0 .38135.28474.60562.80344.60562.45426 0 .77554-.22432.77554-.60094v-2.4191h.79383v2.5288c0 .1311-.01976.25046-.05636.35882h.56566v.67207h.80812c-.42491-.1347-.62706-.37592-.72164-.67277-.03732-.11904-.05109-.29835-.05109-.37149h.81703c0 .06444.02297.17462.05063.22946.10104.2112.33963.30257.82125.30257.55121 0 .7439-.15096.7439-.38976 0-.29856-.15189-.40383-.73875-.51399-.10572-.01854-.37194-.06939-.5325-.10125-.7071-.13302-1.14281-.45881-1.14281-1.0602 0-.61547.49548-1.02831 1.56024-1.02831.90887 0 1.33591.31678 1.51921.77566.0462.11952.08273.25653.08273.34863h-.81703c0-.04122-.02296-.12339-.05063-.1787-.0963-.20203-.2937-.3075-.75258-.3075-.6012 0-.7207.13279-.7207.33949 0 .26627.21587.37185.80813.49113.18305.0366.42186.08722.5046.10101.7209.13782 1.09711.43618 1.09711 1.05621 0 .10908-.01562.21156-.0443.30774h.57164v.67207h.24329v-3.55969h.9225l1.39524 2.33614v-2.33614h.75727v3.55969h1.04344c-.2635-.0927-.4786-.24559-.62227-.47356-.1317-.20903-.2046-.47646-.2046-.81234 0-.30642.08295-.57858.23343-.79254.25782-.37452.7198-.5932 1.3036-.5932.6126 0 1.0313.2234 1.26913.56894.19944.29178.27226.67616.22864 1.0793h-2.2663c0 .12234.05369.21446.14579.31664.1125.12162.33095.19922.62273.19922.21888 0 .37923-.03894.49149-.08766.14064-.06324.20884-.15044.22312-.20906h.7636c-.06282.25776-.21845.5006-.48563.67148-.0824.05306-.18074.09567-.28676.13278h1.5975l-.9334-2.60836h.81211l.64196 1.98879.58828-1.9888h.86531l.60328 1.9888.62695-1.9888h.7643l-.9437 2.60837h1.44245c-.28682-.09717-.45222-.25848-.51469-.50262-.02412-.10686-.02883-.18-.02883-.26766h.7731a.403.403 0 0 0 .02413.1364c.04878.12637.25287.16032.67617.16032.4425 0 .5788-.0778.5788-.2332 0-.1512-.16082-.1849-.55477-.24328-.10176-.01452-.4228-.0633-.58313-.08766-.58854-.0825-.87058-.34011-.87059-.85137 0-.47598.4276-.78727 1.28872-.78727.7338 0 1.19646.18964 1.33242.57352.03396.10266.04863.2674.04863.32086h-.75363c0-.0291-.01034-.11159-.03422-.14555-.05364-.07266-.19455-.1364-.5639-.1364-.42823 0-.555.06865-.555.19476 0 .1167.08321.16029.46241.2189.15564.02365.53017.0776.62227.09212.6417.09738.92414.33578.92414.8366 0 .35043-.16832.59123-.52465.72152H24V9.12Zm14.87356 1.13098c.27491 0 .38835.12747.38835.37101 0 .2559-.12166.3818-.38836.3818-.26742 0-.38888-.1301-.38882-.3791 0-.2325.1193-.37371.38882-.37371m5.91257 0c.27444 0 .38813.12747.38813.37101 0 .2559-.12185.3818-.38813.3818-.2679 0-.38935-.1301-.3893-.3791 0-.2325.1193-.37371.3893-.37371m-8.10808.0056c.13872 0 .2196.08037.22476.16875.00096.0065 0 .02672 0 .03164-.0023.09234-.07324.15656-.1459.20156.03282.02676.07478.06423.11672.09867.02388-.03024.03727-.06893.03937-.11063h.20438c-.0035.09144-.04053.17038-.09891.22594a5.9 5.9 0 0 1 .15633.12023h-.27727c-.01218-.0087-.0239-.01877-.03422-.02789-.05628.02346-.13126.03516-.20062.03516-.17322 0-.32927-.03162-.33551-.16523-.00072-.01146 0-.02837 0-.03773.0019-.08298.0806-.13452.16687-.17508-.04242-.06-.05857-.10994-.05977-.15398v-.03703c.004-.08952.0919-.17438.24375-.17438zm.67558.0075h.23836s.11133.44998.11133.47296c0-.02298.10781-.47296.10781-.47296h.22922s.11063.44998.11063.47296c0-.02298.10945-.47296.10945-.47296h.21621l-.20437.72867h-.24364s-.10897-.41998-.1118-.44344c-.0012.02442-.11273.44344-.11273.44344h-.24187zm2.86149 0h.22547v.54843h.34992v.18023h-.5754zm.68672 0h.39984c.1317 0 .21375.03234.25875.09492.04476.06186.05344.12257.05344.25523 0 .1554-.01101.21233-.05133.27281-.0438.06726-.11904.1057-.25008.1057h-.41062zm1.94625 0h.61945v.17155h-.40008v.1057h.38531v.17321h-.3853v.10828h.40405v.16992h-.62343zm.76628 0h.44836c.0879 0 .15048.01959.19032.06106.04266.03678.06563.0996.06563.19007 0 .08082-.01761.1379-.05391.1766-.04194.04897-.1117.0722-.20121.07407-.02742.00042-.22453-.0012-.22453-.0012h-.00013v.22816h-.22453zm2.42731 0h.69117v.1753h-.23297v.55336h-.2271v-.55336h-.2311Zm-6.68086.00012h.46125c.09702 0 .1601.02787.19688.0764.02831.03679.04194.08566.04194.15387 0 .05862-.01267.105-.0321.13735-.02299.03888-.05582.06164-.08954.06914l.1704.2918h-.25031l-.12797-.24657h-.1507v.24668h-.21985Zm2.62406 0h.46102c.09702 0 .1601.02787.19687.0764.02832.03679.04195.08566.04195.15387 0 .05862-.0129.105-.0321.13735-.02275.03888-.05623.06164-.08977.06914l.17063.2918h-.24985l-.12867-.24657h-.15047v.24668h-.2196zm3.29063 0h.46101c.09654 0 .16033.02787.19735.0764.0279.03679.04219.08566.04219.15387 0 .05862-.01315.105-.03187.13735-.02346.03888-.05603.06164-.09023.06914l.17015.2918h-.2496l-.12845-.24657h-.1507v.24668h-.21985zm-8.59969.14823c-.03234 0-.04592.02201-.04898.04781a.072.072 0 0 0 0 .0197c.0011.02015.01147.04332.02953.06702.03726-.02202.06329-.04615.06563-.07453v-.01477c-.0012-.02412-.01263-.04523-.04617-.04523zm2.19773.01078c-.11886 0-.1613.05745-.16125.20391 0 .1545.0558.20578.16243.20578.10242 0 .16195-.04336.16195-.20578 0-.14436-.03958-.2039-.16313-.2039m5.91258 0c-.11958 0-.16154.05745-.16148.20391 0 .1545.05534.20578.16172.20578.1029 0 .16242-.04336.16242-.20578 0-.14436-.03912-.2039-.16266-.2039m-.9498.01031v.16805h.17508c.04242 0 .06327-.01406.07383-.03422.0073-.01314.009-.02675.009-.04805 0-.02268-.0031-.04149-.0098-.05133-.01242-.02316-.03353-.03445-.07031-.03445zm-2.71278.00094v.38625h.14063c.05694 0 .08695-.01197.11203-.04148.01902-.02322.0211-.10572.0211-.165 0-.05226-.0051-.11975-.02298-.14039-.02838-.03114-.05508-.03937-.11015-.03937zm-1.54078.0012v.1486h.1929c.02741 0 .05083-.0063.05905-.02439.0056-.0129.0084-.03235.0084-.04687 0-.01638-.0017-.03607-.008-.04687-.01074-.02346-.0321-.03047-.06445-.03047zm2.62383 0v.1486h.19242c.02718 0 .05131-.0063.05953-.02439.0056-.0129.008-.03235.008-.04687 0-.01638-.0014-.03607-.007-.04687-.01128-.02346-.03329-.03047-.06539-.03047zm3.29063 0v.1486h.19242c.02742 0 .05179-.0063.05977-.02439.0054-.0129.008-.03235.008-.04687 0-.01638-.0016-.03607-.0073-.04687-.01104-.02346-.03306-.03047-.06492-.03047zm-8.89688.30844c-.0333.01878-.05654.03872-.05649.0593 0 .03516.03256.04852.10852.04852.02058 0 .04569-.0026.06375-.0073-.04176-.03588-.08506-.0696-.11578-.10055zm-2.91305.69188v2.38945h1.4202Zm4.07602.34476c-.27678 0-.4812.07338-.61266.19008-.0923.0827-.1654.24264-.16546.32086h1.49742c0-.07812-.0333-.20415-.13031-.30633-.11226-.11178-.29697-.2046-.58899-.2046zm3.81094.2939s-.0286.15846-.03352.18774c-.0045.08875-.46674 1.44291-.50777 1.56305h1.08855c-.0411-.12023-.50361-1.47408-.51258-1.55812-.0052-.0342-.03469-.19266-.03469-.19266zM4.16613 13.42208c-.14058.18484-.35177.31803-.61195.40336h.61195zm3.81282.0068c-.1263.17355-.32144.30817-.58137.39656h.58137ZM0 14.08289V14.88h24v-.7971z" }) + ] + } + ); +}); + +exports.default = SiUdotsdotnews; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.d.ts new file mode 100644 index 000000000..2e00bbd65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005EA6"; +declare const SiUdotsdotnews: IconType; +export { SiUdotsdotnews as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.mjs new file mode 100644 index 000000000..d3d09a825 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUdotsdotnews.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005EA6"; +const SiUdotsdotnews = React.forwardRef(function SiUdotsdotnews2({ title = "U.S. News", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 9.12v4.70543h1.98926c-.48065-.1604-.79078-.50119-.79078-1.07684v-2.48285h.79359v2.41442c0 .38135.28474.60562.80344.60562.45426 0 .77554-.22432.77554-.60094v-2.4191h.79383v2.5288c0 .1311-.01976.25046-.05636.35882h.56566v.67207h.80812c-.42491-.1347-.62706-.37592-.72164-.67277-.03732-.11904-.05109-.29835-.05109-.37149h.81703c0 .06444.02297.17462.05063.22946.10104.2112.33963.30257.82125.30257.55121 0 .7439-.15096.7439-.38976 0-.29856-.15189-.40383-.73875-.51399-.10572-.01854-.37194-.06939-.5325-.10125-.7071-.13302-1.14281-.45881-1.14281-1.0602 0-.61547.49548-1.02831 1.56024-1.02831.90887 0 1.33591.31678 1.51921.77566.0462.11952.08273.25653.08273.34863h-.81703c0-.04122-.02296-.12339-.05063-.1787-.0963-.20203-.2937-.3075-.75258-.3075-.6012 0-.7207.13279-.7207.33949 0 .26627.21587.37185.80813.49113.18305.0366.42186.08722.5046.10101.7209.13782 1.09711.43618 1.09711 1.05621 0 .10908-.01562.21156-.0443.30774h.57164v.67207h.24329v-3.55969h.9225l1.39524 2.33614v-2.33614h.75727v3.55969h1.04344c-.2635-.0927-.4786-.24559-.62227-.47356-.1317-.20903-.2046-.47646-.2046-.81234 0-.30642.08295-.57858.23343-.79254.25782-.37452.7198-.5932 1.3036-.5932.6126 0 1.0313.2234 1.26913.56894.19944.29178.27226.67616.22864 1.0793h-2.2663c0 .12234.05369.21446.14579.31664.1125.12162.33095.19922.62273.19922.21888 0 .37923-.03894.49149-.08766.14064-.06324.20884-.15044.22312-.20906h.7636c-.06282.25776-.21845.5006-.48563.67148-.0824.05306-.18074.09567-.28676.13278h1.5975l-.9334-2.60836h.81211l.64196 1.98879.58828-1.9888h.86531l.60328 1.9888.62695-1.9888h.7643l-.9437 2.60837h1.44245c-.28682-.09717-.45222-.25848-.51469-.50262-.02412-.10686-.02883-.18-.02883-.26766h.7731a.403.403 0 0 0 .02413.1364c.04878.12637.25287.16032.67617.16032.4425 0 .5788-.0778.5788-.2332 0-.1512-.16082-.1849-.55477-.24328-.10176-.01452-.4228-.0633-.58313-.08766-.58854-.0825-.87058-.34011-.87059-.85137 0-.47598.4276-.78727 1.28872-.78727.7338 0 1.19646.18964 1.33242.57352.03396.10266.04863.2674.04863.32086h-.75363c0-.0291-.01034-.11159-.03422-.14555-.05364-.07266-.19455-.1364-.5639-.1364-.42823 0-.555.06865-.555.19476 0 .1167.08321.16029.46241.2189.15564.02365.53017.0776.62227.09212.6417.09738.92414.33578.92414.8366 0 .35043-.16832.59123-.52465.72152H24V9.12Zm14.87356 1.13098c.27491 0 .38835.12747.38835.37101 0 .2559-.12166.3818-.38836.3818-.26742 0-.38888-.1301-.38882-.3791 0-.2325.1193-.37371.38882-.37371m5.91257 0c.27444 0 .38813.12747.38813.37101 0 .2559-.12185.3818-.38813.3818-.2679 0-.38935-.1301-.3893-.3791 0-.2325.1193-.37371.3893-.37371m-8.10808.0056c.13872 0 .2196.08037.22476.16875.00096.0065 0 .02672 0 .03164-.0023.09234-.07324.15656-.1459.20156.03282.02676.07478.06423.11672.09867.02388-.03024.03727-.06893.03937-.11063h.20438c-.0035.09144-.04053.17038-.09891.22594a5.9 5.9 0 0 1 .15633.12023h-.27727c-.01218-.0087-.0239-.01877-.03422-.02789-.05628.02346-.13126.03516-.20062.03516-.17322 0-.32927-.03162-.33551-.16523-.00072-.01146 0-.02837 0-.03773.0019-.08298.0806-.13452.16687-.17508-.04242-.06-.05857-.10994-.05977-.15398v-.03703c.004-.08952.0919-.17438.24375-.17438zm.67558.0075h.23836s.11133.44998.11133.47296c0-.02298.10781-.47296.10781-.47296h.22922s.11063.44998.11063.47296c0-.02298.10945-.47296.10945-.47296h.21621l-.20437.72867h-.24364s-.10897-.41998-.1118-.44344c-.0012.02442-.11273.44344-.11273.44344h-.24187zm2.86149 0h.22547v.54843h.34992v.18023h-.5754zm.68672 0h.39984c.1317 0 .21375.03234.25875.09492.04476.06186.05344.12257.05344.25523 0 .1554-.01101.21233-.05133.27281-.0438.06726-.11904.1057-.25008.1057h-.41062zm1.94625 0h.61945v.17155h-.40008v.1057h.38531v.17321h-.3853v.10828h.40405v.16992h-.62343zm.76628 0h.44836c.0879 0 .15048.01959.19032.06106.04266.03678.06563.0996.06563.19007 0 .08082-.01761.1379-.05391.1766-.04194.04897-.1117.0722-.20121.07407-.02742.00042-.22453-.0012-.22453-.0012h-.00013v.22816h-.22453zm2.42731 0h.69117v.1753h-.23297v.55336h-.2271v-.55336h-.2311Zm-6.68086.00012h.46125c.09702 0 .1601.02787.19688.0764.02831.03679.04194.08566.04194.15387 0 .05862-.01267.105-.0321.13735-.02299.03888-.05582.06164-.08954.06914l.1704.2918h-.25031l-.12797-.24657h-.1507v.24668h-.21985Zm2.62406 0h.46102c.09702 0 .1601.02787.19687.0764.02832.03679.04195.08566.04195.15387 0 .05862-.0129.105-.0321.13735-.02275.03888-.05623.06164-.08977.06914l.17063.2918h-.24985l-.12867-.24657h-.15047v.24668h-.2196zm3.29063 0h.46101c.09654 0 .16033.02787.19735.0764.0279.03679.04219.08566.04219.15387 0 .05862-.01315.105-.03187.13735-.02346.03888-.05603.06164-.09023.06914l.17015.2918h-.2496l-.12845-.24657h-.1507v.24668h-.21985zm-8.59969.14823c-.03234 0-.04592.02201-.04898.04781a.072.072 0 0 0 0 .0197c.0011.02015.01147.04332.02953.06702.03726-.02202.06329-.04615.06563-.07453v-.01477c-.0012-.02412-.01263-.04523-.04617-.04523zm2.19773.01078c-.11886 0-.1613.05745-.16125.20391 0 .1545.0558.20578.16243.20578.10242 0 .16195-.04336.16195-.20578 0-.14436-.03958-.2039-.16313-.2039m5.91258 0c-.11958 0-.16154.05745-.16148.20391 0 .1545.05534.20578.16172.20578.1029 0 .16242-.04336.16242-.20578 0-.14436-.03912-.2039-.16266-.2039m-.9498.01031v.16805h.17508c.04242 0 .06327-.01406.07383-.03422.0073-.01314.009-.02675.009-.04805 0-.02268-.0031-.04149-.0098-.05133-.01242-.02316-.03353-.03445-.07031-.03445zm-2.71278.00094v.38625h.14063c.05694 0 .08695-.01197.11203-.04148.01902-.02322.0211-.10572.0211-.165 0-.05226-.0051-.11975-.02298-.14039-.02838-.03114-.05508-.03937-.11015-.03937zm-1.54078.0012v.1486h.1929c.02741 0 .05083-.0063.05905-.02439.0056-.0129.0084-.03235.0084-.04687 0-.01638-.0017-.03607-.008-.04687-.01074-.02346-.0321-.03047-.06445-.03047zm2.62383 0v.1486h.19242c.02718 0 .05131-.0063.05953-.02439.0056-.0129.008-.03235.008-.04687 0-.01638-.0014-.03607-.007-.04687-.01128-.02346-.03329-.03047-.06539-.03047zm3.29063 0v.1486h.19242c.02742 0 .05179-.0063.05977-.02439.0054-.0129.008-.03235.008-.04687 0-.01638-.0016-.03607-.0073-.04687-.01104-.02346-.03306-.03047-.06492-.03047zm-8.89688.30844c-.0333.01878-.05654.03872-.05649.0593 0 .03516.03256.04852.10852.04852.02058 0 .04569-.0026.06375-.0073-.04176-.03588-.08506-.0696-.11578-.10055zm-2.91305.69188v2.38945h1.4202Zm4.07602.34476c-.27678 0-.4812.07338-.61266.19008-.0923.0827-.1654.24264-.16546.32086h1.49742c0-.07812-.0333-.20415-.13031-.30633-.11226-.11178-.29697-.2046-.58899-.2046zm3.81094.2939s-.0286.15846-.03352.18774c-.0045.08875-.46674 1.44291-.50777 1.56305h1.08855c-.0411-.12023-.50361-1.47408-.51258-1.55812-.0052-.0342-.03469-.19266-.03469-.19266zM4.16613 13.42208c-.14058.18484-.35177.31803-.61195.40336h.61195zm3.81282.0068c-.1263.17355-.32144.30817-.58137.39656h.58137ZM0 14.08289V14.88h24v-.7971z" }) + ] + } + ); +}); + +export { SiUdotsdotnews as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.cjs new file mode 100644 index 000000000..0421993e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D20A0A"; +const SiUfc = React__namespace.forwardRef(function SiUfc2({ title = "UFC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.308 7.843h2.797s-1.86 6.639-1.951 6.998c-.177.69-.353 1.316-2.043 1.316-2.037 0-3.22-.007-3.777 0-.698.007-1.521-.633-1.296-1.464l1.91-6.85H4.8S3.2 13.553 3.166 13.7c-.029.148-.19.557.698.564.64.014.69-.155.803-.564.268-.922 1.64-5.857 1.64-5.857zm10.272 0l-.507 1.824H9.986l.507-1.824zm-8.404 8.314l1.459-5.244h6.086l-.507 1.823h-3.262l-.95 3.421zm11.47-5.385c-.26.957-.493 1.774-.754 2.738-.05.17-.162.416-.127.57.078.367 1.29.226 1.726.226h1.945c-.155.612-.33 1.21-.5 1.81h-4.63c-.676-.064-1.557-.353-1.472-1.226.028-.274.156-.584.24-.887a1189.7 1189.7 0 001.24-4.463c.176-.648.317-1.197.83-1.457.333-.17.861-.218 1.255-.24H24c-.162.606-.331 1.211-.5 1.81h-2.643c-.317 0-.669-.036-.845.084-.19.141-.295.775-.366 1.035z" }) + ] + } + ); +}); + +exports.default = SiUfc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.d.ts new file mode 100644 index 000000000..f8a0fc98a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D20A0A"; +declare const SiUfc: IconType; +export { SiUfc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.mjs new file mode 100644 index 000000000..79aff7ca9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUfc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D20A0A"; +const SiUfc = React.forwardRef(function SiUfc2({ title = "UFC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.308 7.843h2.797s-1.86 6.639-1.951 6.998c-.177.69-.353 1.316-2.043 1.316-2.037 0-3.22-.007-3.777 0-.698.007-1.521-.633-1.296-1.464l1.91-6.85H4.8S3.2 13.553 3.166 13.7c-.029.148-.19.557.698.564.64.014.69-.155.803-.564.268-.922 1.64-5.857 1.64-5.857zm10.272 0l-.507 1.824H9.986l.507-1.824zm-8.404 8.314l1.459-5.244h6.086l-.507 1.823h-3.262l-.95 3.421zm11.47-5.385c-.26.957-.493 1.774-.754 2.738-.05.17-.162.416-.127.57.078.367 1.29.226 1.726.226h1.945c-.155.612-.33 1.21-.5 1.81h-4.63c-.676-.064-1.557-.353-1.472-1.226.028-.274.156-.584.24-.887a1189.7 1189.7 0 001.24-4.463c.176-.648.317-1.197.83-1.457.333-.17.861-.218 1.255-.24H24c-.162.606-.331 1.211-.5 1.81h-2.643c-.317 0-.669-.036-.845.084-.19.141-.295.775-.366 1.035z" }) + ] + } + ); +}); + +export { SiUfc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.cjs new file mode 100644 index 000000000..f9128d6d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2396F3"; +const SiUikit = React__namespace.forwardRef(function SiUikit2({ title = "UIkit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.697 3.292l-4.109 2.489 4.738 2.696v7.077l-6.365 3.538-6.258-3.538v-5.485L1.596 7.956V18l10.219 6 10.589-6V6.002l-4.707-2.71zm-1.904-.989L11.813 0 7.665 2.568l4.032 2.218 4.096-2.483z" }) + ] + } + ); +}); + +exports.default = SiUikit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.d.ts new file mode 100644 index 000000000..e37997a39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2396F3"; +declare const SiUikit: IconType; +export { SiUikit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.mjs new file mode 100644 index 000000000..491b9b976 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUikit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2396F3"; +const SiUikit = React.forwardRef(function SiUikit2({ title = "UIkit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.697 3.292l-4.109 2.489 4.738 2.696v7.077l-6.365 3.538-6.258-3.538v-5.485L1.596 7.956V18l10.219 6 10.589-6V6.002l-4.707-2.71zm-1.904-.989L11.813 0 7.665 2.568l4.032 2.218 4.096-2.483z" }) + ] + } + ); +}); + +export { SiUikit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.cjs new file mode 100644 index 000000000..53f3910e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA4616"; +const SiUipath = React__namespace.forwardRef(function SiUipath2({ title = "UiPath", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 7.882v8.235h8.235V7.882H0Zm.852.852h6.53v6.53H.852v-6.53Zm22.268.695c-.514 0-.886.345-.886.873 0 .511.36.878.886.878.518 0 .88-.359.88-.878 0-.521-.359-.873-.88-.873Zm-17.023.055a.501.501 0 0 0-.522.522c0 .302.22.509.522.509.302 0 .522-.206.522-.509a.501.501 0 0 0-.522-.522Zm17.023.102c.437 0 .716.278.716.716 0 .426-.274.712-.716.712-.426 0-.719-.271-.719-.712 0-.44.278-.716.719-.716Zm-.347.213v.988h.197v-.318h.14l.176.318h.22l-.186-.347a.32.32 0 0 0 .206-.311c0-.203-.159-.33-.374-.33h-.379Zm-3.74.002v4.468h.853v-1.774c0-.571.302-.914.804-.914s.763.33.763.838v1.85h.852v-1.946c0-.88-.619-1.45-1.409-1.45-.509 0-.818.192-1.01.515V9.801h-.853Zm3.937.157h.157c.115 0 .193.064.193.171 0 .118-.078.181-.193.181h-.157v-.352Zm-21.375.049v2.495c0 1.141.625 1.808 1.684 1.808 1.079 0 1.718-.681 1.718-1.808v-2.495h-.852v2.495c0 .646-.275 1.004-.846 1.004-.591 0-.852-.378-.852-1.004v-2.495h-.852Zm7.547 0v4.262h.852v-1.375h.77c.928 0 1.533-.543 1.533-1.457 0-.88-.591-1.43-1.533-1.43H9.142Zm7.809 0v.914h-.399v.722h.399v1.45c0 .791.35 1.176 1.161 1.176h.447v-.729h-.337c-.33 0-.419-.144-.419-.44v-1.457h.749v-.722h-.749v-.914h-.852Zm-6.957.687h.681c.488 0 .756.276.756.743 0 .502-.268.776-.756.776h-.681v-1.519Zm4.138.186c-.921 0-1.546.728-1.546 1.718 0 .997.639 1.712 1.546 1.712.537 0 .887-.193 1.086-.516v.475h.853v-3.348h-.853v.523c-.206-.344-.563-.564-1.086-.564Zm-8.461.041v3.348h.852v-3.348h-.852Zm8.661.701c.543 0 .886.399.886.976 0 .585-.364.963-.886.963-.578 0-.88-.406-.88-.963 0-.598.337-.976.88-.976Z" }) + ] + } + ); +}); + +exports.default = SiUipath; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.d.ts new file mode 100644 index 000000000..287bc8d9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA4616"; +declare const SiUipath: IconType; +export { SiUipath as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.mjs new file mode 100644 index 000000000..2883c082a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUipath.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA4616"; +const SiUipath = React.forwardRef(function SiUipath2({ title = "UiPath", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 7.882v8.235h8.235V7.882H0Zm.852.852h6.53v6.53H.852v-6.53Zm22.268.695c-.514 0-.886.345-.886.873 0 .511.36.878.886.878.518 0 .88-.359.88-.878 0-.521-.359-.873-.88-.873Zm-17.023.055a.501.501 0 0 0-.522.522c0 .302.22.509.522.509.302 0 .522-.206.522-.509a.501.501 0 0 0-.522-.522Zm17.023.102c.437 0 .716.278.716.716 0 .426-.274.712-.716.712-.426 0-.719-.271-.719-.712 0-.44.278-.716.719-.716Zm-.347.213v.988h.197v-.318h.14l.176.318h.22l-.186-.347a.32.32 0 0 0 .206-.311c0-.203-.159-.33-.374-.33h-.379Zm-3.74.002v4.468h.853v-1.774c0-.571.302-.914.804-.914s.763.33.763.838v1.85h.852v-1.946c0-.88-.619-1.45-1.409-1.45-.509 0-.818.192-1.01.515V9.801h-.853Zm3.937.157h.157c.115 0 .193.064.193.171 0 .118-.078.181-.193.181h-.157v-.352Zm-21.375.049v2.495c0 1.141.625 1.808 1.684 1.808 1.079 0 1.718-.681 1.718-1.808v-2.495h-.852v2.495c0 .646-.275 1.004-.846 1.004-.591 0-.852-.378-.852-1.004v-2.495h-.852Zm7.547 0v4.262h.852v-1.375h.77c.928 0 1.533-.543 1.533-1.457 0-.88-.591-1.43-1.533-1.43H9.142Zm7.809 0v.914h-.399v.722h.399v1.45c0 .791.35 1.176 1.161 1.176h.447v-.729h-.337c-.33 0-.419-.144-.419-.44v-1.457h.749v-.722h-.749v-.914h-.852Zm-6.957.687h.681c.488 0 .756.276.756.743 0 .502-.268.776-.756.776h-.681v-1.519Zm4.138.186c-.921 0-1.546.728-1.546 1.718 0 .997.639 1.712 1.546 1.712.537 0 .887-.193 1.086-.516v.475h.853v-3.348h-.853v.523c-.206-.344-.563-.564-1.086-.564Zm-8.461.041v3.348h.852v-3.348h-.852Zm8.661.701c.543 0 .886.399.886.976 0 .585-.364.963-.886.963-.578 0-.88-.406-.88-.963 0-.598.337-.976.88-.976Z" }) + ] + } + ); +}); + +export { SiUipath as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.cjs new file mode 100644 index 000000000..d9e55b745 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiUkca = React__namespace.forwardRef(function SiUkca2({ title = "UKCA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.138 11.001H3.852C1.728 11.001 0 9.296 0 7.201V.011h2.498v7.155c0 .737.622 1.336 1.388 1.336h3.218c.766 0 1.388-.599 1.388-1.336V.011h2.498v7.19c0 2.095-1.728 3.8-3.852 3.8M24 .011h-3.23l-5.285 4.16V.011h-2.498V11h2.498V6.814l5.284 4.187h3.217l-6.952-5.508ZM10.99 23.99H3.8c-2.095 0-3.8-1.761-3.8-3.885v-3.22C0 14.762 1.705 13 3.8 13h7.19v2.498H3.834c-.737 0-1.336.622-1.336 1.388v3.219c0 .765.6 1.387 1.336 1.387h7.156zm4.495-4.995v-2.16c0-.738.622-1.337 1.387-1.337h3.22c.765 0 1.387.6 1.387 1.336v2.16zM20.125 13H16.84c-2.124 0-3.852 1.705-3.852 3.8v7.19h2.498v-2.498h5.994v2.497h2.498V16.8c0-2.094-1.728-3.799-3.852-3.799" }) + ] + } + ); +}); + +exports.default = SiUkca; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.d.ts new file mode 100644 index 000000000..c64520ef7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiUkca: IconType; +export { SiUkca as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.mjs new file mode 100644 index 000000000..4322b1676 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUkca.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiUkca = React.forwardRef(function SiUkca2({ title = "UKCA", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.138 11.001H3.852C1.728 11.001 0 9.296 0 7.201V.011h2.498v7.155c0 .737.622 1.336 1.388 1.336h3.218c.766 0 1.388-.599 1.388-1.336V.011h2.498v7.19c0 2.095-1.728 3.8-3.852 3.8M24 .011h-3.23l-5.285 4.16V.011h-2.498V11h2.498V6.814l5.284 4.187h3.217l-6.952-5.508ZM10.99 23.99H3.8c-2.095 0-3.8-1.761-3.8-3.885v-3.22C0 14.762 1.705 13 3.8 13h7.19v2.498H3.834c-.737 0-1.336.622-1.336 1.388v3.219c0 .765.6 1.387 1.336 1.387h7.156zm4.495-4.995v-2.16c0-.738.622-1.337 1.387-1.337h3.22c.765 0 1.387.6 1.387 1.336v2.16zM20.125 13H16.84c-2.124 0-3.852 1.705-3.852 3.8v7.19h2.498v-2.498h5.994v2.497h2.498V16.8c0-2.094-1.728-3.799-3.852-3.799" }) + ] + } + ); +}); + +export { SiUkca as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.cjs new file mode 100644 index 000000000..80dd22f77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111F68"; +const SiUltralytics = React__namespace.forwardRef(function SiUltralytics2({ title = "Ultralytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.736 7.341-.002 2.897c.012 3.953-3.188 7.177-7.098 7.171-1.553-.003-2.967-.48-4.112-1.313 2.056 3.725 5.999 6.24 10.48 6.245 6.511-.003 11.891-5.343 11.992-11.91l-.002-.027c.006-.151 0-2.951.006-3.075-.01-3.116-2.538-5.677-5.63-5.67-3.105-.006-5.645 2.54-5.634 5.683zM5.629 4.573C2.525 4.573 0 7.118 0 10.246s2.525 5.673 5.63 5.673c3.103 0 5.629-2.545 5.629-5.673s-2.526-5.673-5.63-5.673" }) + ] + } + ); +}); + +exports.default = SiUltralytics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.d.ts new file mode 100644 index 000000000..3357eeb36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111F68"; +declare const SiUltralytics: IconType; +export { SiUltralytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.mjs new file mode 100644 index 000000000..ad6fec431 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUltralytics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111F68"; +const SiUltralytics = React.forwardRef(function SiUltralytics2({ title = "Ultralytics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.736 7.341-.002 2.897c.012 3.953-3.188 7.177-7.098 7.171-1.553-.003-2.967-.48-4.112-1.313 2.056 3.725 5.999 6.24 10.48 6.245 6.511-.003 11.891-5.343 11.992-11.91l-.002-.027c.006-.151 0-2.951.006-3.075-.01-3.116-2.538-5.677-5.63-5.67-3.105-.006-5.645 2.54-5.634 5.683zM5.629 4.573C2.525 4.573 0 7.118 0 10.246s2.525 5.673 5.63 5.673c3.103 0 5.629-2.545 5.629-5.673s-2.526-5.673-5.63-5.673" }) + ] + } + ); +}); + +export { SiUltralytics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.cjs new file mode 100644 index 000000000..4f9a6fb99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#18A5D6"; +const SiUlule = React__namespace.forwardRef(function SiUlule2({ title = "Ulule", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A11.992 11.992 0 001.676 5.884l-.822-.822a.499.499 0 00-.707 0A.5.5 0 000 5.416V12c0 6.627 5.372 12 12 12 6.627 0 12-5.373 12-12V5.416a.5.5 0 00-.854-.354l-.823.822A11.992 11.992 0 0012 0zM6.814 7.626a5.526 5.526 0 014.971 3.095 2.739 2.739 0 00.13 3.754.122.122 0 00.17 0 2.738 2.738 0 00.13-3.754 5.526 5.526 0 015.411-3.077c2.702.214 4.876 2.41 5.064 5.113a5.528 5.528 0 01-10.419 2.944.304.304 0 00-.542 0 5.528 5.528 0 01-10.42-2.944c.189-2.703 2.363-4.9 5.064-5.113.148-.012.295-.018.44-.018zm-.42 1.22a3.501 3.496 0 00-.235.008c-.013.16-.116.262-.248.388l-.052.05c-.117.113-.335.323-.333.7a.875.875 0 00.856.858c.485-.003.88-.383.882-.85.002-.325-.137-.523-.347-.722-.143-.13-.289-.281-.308-.422a3.501 3.496 0 00-.214-.01zm11.211 0a3.501 3.495 0 00-.235.008c-.013.16-.117.262-.249.388l-.051.05c-.118.113-.336.323-.334.7a.875.875 0 00.856.858c.485-.003.88-.383.882-.85.002-.325-.136-.523-.347-.723-.143-.13-.288-.28-.307-.42a3.501 3.495 0 00-.215-.011zM6.093 8.86a3.501 3.496 0 00-3.2 3.48 3.501 3.496 0 003.502 3.496 3.501 3.496 0 003.5-3.496 3.501 3.496 0 00-3.033-3.46 2.393 2.393 0 11-2.86 2.362A2.386 2.386 0 016.093 8.86zm11.816 0a2.386 2.386 0 012.088 2.382 2.391 2.391 0 11-4.784-.033 2.393 2.393 0 011.92-2.328 3.501 3.495 0 00-3.03 3.46 3.501 3.495 0 003.502 3.495 3.501 3.495 0 003.501-3.496 3.501 3.495 0 00-3.197-3.48Z" }) + ] + } + ); +}); + +exports.default = SiUlule; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.d.ts new file mode 100644 index 000000000..a98f4e1a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#18A5D6"; +declare const SiUlule: IconType; +export { SiUlule as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.mjs new file mode 100644 index 000000000..19b195324 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUlule.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#18A5D6"; +const SiUlule = React.forwardRef(function SiUlule2({ title = "Ulule", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A11.992 11.992 0 001.676 5.884l-.822-.822a.499.499 0 00-.707 0A.5.5 0 000 5.416V12c0 6.627 5.372 12 12 12 6.627 0 12-5.373 12-12V5.416a.5.5 0 00-.854-.354l-.823.822A11.992 11.992 0 0012 0zM6.814 7.626a5.526 5.526 0 014.971 3.095 2.739 2.739 0 00.13 3.754.122.122 0 00.17 0 2.738 2.738 0 00.13-3.754 5.526 5.526 0 015.411-3.077c2.702.214 4.876 2.41 5.064 5.113a5.528 5.528 0 01-10.419 2.944.304.304 0 00-.542 0 5.528 5.528 0 01-10.42-2.944c.189-2.703 2.363-4.9 5.064-5.113.148-.012.295-.018.44-.018zm-.42 1.22a3.501 3.496 0 00-.235.008c-.013.16-.116.262-.248.388l-.052.05c-.117.113-.335.323-.333.7a.875.875 0 00.856.858c.485-.003.88-.383.882-.85.002-.325-.137-.523-.347-.722-.143-.13-.289-.281-.308-.422a3.501 3.496 0 00-.214-.01zm11.211 0a3.501 3.495 0 00-.235.008c-.013.16-.117.262-.249.388l-.051.05c-.118.113-.336.323-.334.7a.875.875 0 00.856.858c.485-.003.88-.383.882-.85.002-.325-.136-.523-.347-.723-.143-.13-.288-.28-.307-.42a3.501 3.495 0 00-.215-.011zM6.093 8.86a3.501 3.496 0 00-3.2 3.48 3.501 3.496 0 003.502 3.496 3.501 3.496 0 003.5-3.496 3.501 3.496 0 00-3.033-3.46 2.393 2.393 0 11-2.86 2.362A2.386 2.386 0 016.093 8.86zm11.816 0a2.386 2.386 0 012.088 2.382 2.391 2.391 0 11-4.784-.033 2.393 2.393 0 011.92-2.328 3.501 3.495 0 00-3.03 3.46 3.501 3.495 0 003.502 3.495 3.501 3.495 0 003.501-3.496 3.501 3.495 0 00-3.197-3.48Z" }) + ] + } + ); +}); + +export { SiUlule as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.cjs new file mode 100644 index 000000000..dbaa9e980 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiUmami = React__namespace.forwardRef(function SiUmami2({ title = "Umami", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.203 8.611H.857a.845.845 0 0 0-.841.841v.858a13.31 13.31 0 0 0-.016.6c0 6.627 5.373 12 12 12 6.527 0 11.837-5.212 11.996-11.701 0-.025.004-.05.004-.075V9.452a.845.845 0 0 0-.841-.841h-1.346c-1.159-4.329-5.112-7.521-9.805-7.521-4.692 0-8.645 3.192-9.805 7.521Zm18.444 0H3.37c1.127-3.702 4.57-6.399 8.638-6.399 4.069 0 7.512 2.697 8.639 6.399Z" }) + ] + } + ); +}); + +exports.default = SiUmami; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.d.ts new file mode 100644 index 000000000..8662b7cb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiUmami: IconType; +export { SiUmami as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.mjs new file mode 100644 index 000000000..3a8580d15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmami.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiUmami = React.forwardRef(function SiUmami2({ title = "Umami", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.203 8.611H.857a.845.845 0 0 0-.841.841v.858a13.31 13.31 0 0 0-.016.6c0 6.627 5.373 12 12 12 6.527 0 11.837-5.212 11.996-11.701 0-.025.004-.05.004-.075V9.452a.845.845 0 0 0-.841-.841h-1.346c-1.159-4.329-5.112-7.521-9.805-7.521-4.692 0-8.645 3.192-9.805 7.521Zm18.444 0H3.37c1.127-3.702 4.57-6.399 8.638-6.399 4.069 0 7.512 2.697 8.639 6.399Z" }) + ] + } + ); +}); + +export { SiUmami as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.cjs new file mode 100644 index 000000000..77476ab0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3544B1"; +const SiUmbraco = React__namespace.forwardRef(function SiUmbraco2({ title = "Umbraco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 11.982A12 12 0 1 1 12 24 12 12 0 0 1 0 11.982zm11.756 4.11a11.856 11.856 0 0 1-2.773-.25 2.12 2.12 0 0 1-1.514-1.218q-.41-.943-.396-2.895a18.419 18.419 0 0 1 .127-2.04q.118-.988.236-1.629l.082-.425a.201.201 0 0 0 0-.038.244.244 0 0 0-.201-.236l-1.544-.246H5.74a.243.243 0 0 0-.235.189 6.517 6.517 0 0 0-.089.409c-.088.455-.17.9-.26 1.548a19.99 19.99 0 0 0-.176 2.12 11.165 11.165 0 0 0 0 1.486q.05 1.977.675 3.155.626 1.179 2.106 1.695 1.482.517 4.135.506h.22q2.655.01 4.134-.506 1.478-.518 2.1-1.695.623-1.178.678-3.147a11.165 11.165 0 0 0 0-1.485 19.99 19.99 0 0 0-.176-2.121 30.014 30.014 0 0 0-.26-1.548 6.724 6.724 0 0 0-.088-.41.243.243 0 0 0-.236-.188h-.04l-1.548.242a.236.236 0 0 0-.203.236.201.201 0 0 0 0 .037l.081.426q.118.643.236 1.63a18.709 18.709 0 0 1 .126 2.039q.019 1.95-.396 2.892a2.12 2.12 0 0 1-1.502 1.22 11.82 11.82 0 0 1-2.769.247Z" }) + ] + } + ); +}); + +exports.default = SiUmbraco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.d.ts new file mode 100644 index 000000000..223741bd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3544B1"; +declare const SiUmbraco: IconType; +export { SiUmbraco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.mjs new file mode 100644 index 000000000..afdb127f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbraco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3544B1"; +const SiUmbraco = React.forwardRef(function SiUmbraco2({ title = "Umbraco", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 11.982A12 12 0 1 1 12 24 12 12 0 0 1 0 11.982zm11.756 4.11a11.856 11.856 0 0 1-2.773-.25 2.12 2.12 0 0 1-1.514-1.218q-.41-.943-.396-2.895a18.419 18.419 0 0 1 .127-2.04q.118-.988.236-1.629l.082-.425a.201.201 0 0 0 0-.038.244.244 0 0 0-.201-.236l-1.544-.246H5.74a.243.243 0 0 0-.235.189 6.517 6.517 0 0 0-.089.409c-.088.455-.17.9-.26 1.548a19.99 19.99 0 0 0-.176 2.12 11.165 11.165 0 0 0 0 1.486q.05 1.977.675 3.155.626 1.179 2.106 1.695 1.482.517 4.135.506h.22q2.655.01 4.134-.506 1.478-.518 2.1-1.695.623-1.178.678-3.147a11.165 11.165 0 0 0 0-1.485 19.99 19.99 0 0 0-.176-2.121 30.014 30.014 0 0 0-.26-1.548 6.724 6.724 0 0 0-.088-.41.243.243 0 0 0-.236-.188h-.04l-1.548.242a.236.236 0 0 0-.203.236.201.201 0 0 0 0 .037l.081.426q.118.643.236 1.63a18.709 18.709 0 0 1 .126 2.039q.019 1.95-.396 2.892a2.12 2.12 0 0 1-1.502 1.22 11.82 11.82 0 0 1-2.769.247Z" }) + ] + } + ); +}); + +export { SiUmbraco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.cjs new file mode 100644 index 000000000..1b4e51565 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5351FB"; +const SiUmbrel = React__namespace.forwardRef(function SiUmbrel2({ title = "Umbrel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.853 8.302c2.628-.05 4.698.656 6.303 2.05 1.166 1.01 2.14 2.43 2.895 4.305a7.584 7.584 0 0 0-1.818-.21c-1.345 0-2.552.31-3.558.987-1.127-.687-2.339-1.049-3.623-1.049-1.313 0-2.573.378-3.77 1.087-1.154-.726-2.456-1.087-3.875-1.087-.513 0-1.003.048-1.466.147.678-1.724 1.575-3.054 2.664-4.028 1.557-1.393 3.607-2.15 6.248-2.202zM1.842 17.616c.04-.037.078-.076.112-.119.48-.557 1.233-.91 2.453-.91 1.151 0 2.139.32 3.002.952l.035.025c.469.35 1.108.364 1.592.036 1.032-.698 2.032-1.014 3.017-1.014.967 0 1.906.304 2.836.965l.02.014a1.376 1.376 0 0 0 1.699-.078c.614-.53 1.455-.84 2.625-.84 1.232 0 2.186.344 2.94.98a1.092 1.092 0 0 0 .435.235 1.095 1.095 0 0 0 .806-.087 1.103 1.103 0 0 0 .547-1.267c-.873-3.383-2.3-6.03-4.363-7.82-2.084-1.808-4.712-2.646-7.787-2.588-3.063.06-5.653.955-7.673 2.762-2.003 1.793-3.344 4.39-4.104 7.67a1.1 1.1 0 0 0 1.807 1.083z" }) + ] + } + ); +}); + +exports.default = SiUmbrel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.d.ts new file mode 100644 index 000000000..3c6261a7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5351FB"; +declare const SiUmbrel: IconType; +export { SiUmbrel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.mjs new file mode 100644 index 000000000..3250c2d89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUmbrel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5351FB"; +const SiUmbrel = React.forwardRef(function SiUmbrel2({ title = "Umbrel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.853 8.302c2.628-.05 4.698.656 6.303 2.05 1.166 1.01 2.14 2.43 2.895 4.305a7.584 7.584 0 0 0-1.818-.21c-1.345 0-2.552.31-3.558.987-1.127-.687-2.339-1.049-3.623-1.049-1.313 0-2.573.378-3.77 1.087-1.154-.726-2.456-1.087-3.875-1.087-.513 0-1.003.048-1.466.147.678-1.724 1.575-3.054 2.664-4.028 1.557-1.393 3.607-2.15 6.248-2.202zM1.842 17.616c.04-.037.078-.076.112-.119.48-.557 1.233-.91 2.453-.91 1.151 0 2.139.32 3.002.952l.035.025c.469.35 1.108.364 1.592.036 1.032-.698 2.032-1.014 3.017-1.014.967 0 1.906.304 2.836.965l.02.014a1.376 1.376 0 0 0 1.699-.078c.614-.53 1.455-.84 2.625-.84 1.232 0 2.186.344 2.94.98a1.092 1.092 0 0 0 .435.235 1.095 1.095 0 0 0 .806-.087 1.103 1.103 0 0 0 .547-1.267c-.873-3.383-2.3-6.03-4.363-7.82-2.084-1.808-4.712-2.646-7.787-2.588-3.063.06-5.653.955-7.673 2.762-2.003 1.793-3.344 4.39-4.104 7.67a1.1 1.1 0 0 0 1.807 1.083z" }) + ] + } + ); +}); + +export { SiUmbrel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUml.cjs new file mode 100644 index 000000000..9ad318196 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FABD14"; +const SiUml = React__namespace.forwardRef(function SiUml2({ title = "UML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.768 0 7.182 1.604s6.126 2.72 6.852 3.055c.72.335 1.744.947.565 1.629-1.18.682-2.423.477-3.259.09-.835-.384-7.012-3.257-7.012-3.257L.666 4.777s6.4 2.935 7.4 3.417c1.003.482 4.753 1.784 8.48.002 3.727-1.781 3.261-2.577 3.268-2.724.006-.148-.036-.933-.632-1.467-.599-.534-2.378-1.375-3.127-1.73C15.305 1.916 10.77 0 10.77 0ZM.411 5.299v13.215l2.904 1.402v-7.963l1.585 8.6 2.58 1.243 1.66-7.154v7.826l2.916 1.38V10.643L7.629 8.628l-1.403 6.296-1.412-7.598Zm16.76 3.115-4.624 2.315L12.559 24l11.03-5.225-.025-3.613-6.393 2.92Z" }) + ] + } + ); +}); + +exports.default = SiUml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUml.d.ts new file mode 100644 index 000000000..3e888160d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FABD14"; +declare const SiUml: IconType; +export { SiUml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUml.mjs new file mode 100644 index 000000000..ab4201eaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FABD14"; +const SiUml = React.forwardRef(function SiUml2({ title = "UML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.768 0 7.182 1.604s6.126 2.72 6.852 3.055c.72.335 1.744.947.565 1.629-1.18.682-2.423.477-3.259.09-.835-.384-7.012-3.257-7.012-3.257L.666 4.777s6.4 2.935 7.4 3.417c1.003.482 4.753 1.784 8.48.002 3.727-1.781 3.261-2.577 3.268-2.724.006-.148-.036-.933-.632-1.467-.599-.534-2.378-1.375-3.127-1.73C15.305 1.916 10.77 0 10.77 0ZM.411 5.299v13.215l2.904 1.402v-7.963l1.585 8.6 2.58 1.243 1.66-7.154v7.826l2.916 1.38V10.643L7.629 8.628l-1.403 6.296-1.412-7.598Zm16.76 3.115-4.624 2.315L12.559 24l11.03-5.225-.025-3.613-6.393 2.92Z" }) + ] + } + ); +}); + +export { SiUml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.cjs new file mode 100644 index 000000000..5ab6b449c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#08BD80"; +const SiUnacademy = React__namespace.forwardRef(function SiUnacademy2({ title = "Unacademy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.715 2.188a.696.696 0 00-.711.713H0l.002.027c-.01.306.03.658.123 1.081.905 5.546 5.875 9.788 11.87 9.788 5.935 0 10.864-4.157 11.84-9.622.126-.512.177-.921.162-1.273a.696.696 0 00-.713-.714zm11.243 13.82c-2.967 0-5.432 2.079-5.92 4.81a2.287 2.287 0 00-.08.638c0 .201.15.356.355.356h11.285a.348.348 0 00.356-.356h.002v-.014a2.21 2.21 0 00-.063-.54c-.453-2.774-2.938-4.894-5.935-4.894z" }) + ] + } + ); +}); + +exports.default = SiUnacademy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.d.ts new file mode 100644 index 000000000..4e6fc9eab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#08BD80"; +declare const SiUnacademy: IconType; +export { SiUnacademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.mjs new file mode 100644 index 000000000..9f9220ece --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnacademy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#08BD80"; +const SiUnacademy = React.forwardRef(function SiUnacademy2({ title = "Unacademy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.715 2.188a.696.696 0 00-.711.713H0l.002.027c-.01.306.03.658.123 1.081.905 5.546 5.875 9.788 11.87 9.788 5.935 0 10.864-4.157 11.84-9.622.126-.512.177-.921.162-1.273a.696.696 0 00-.713-.714zm11.243 13.82c-2.967 0-5.432 2.079-5.92 4.81a2.287 2.287 0 00-.08.638c0 .201.15.356.355.356h11.285a.348.348 0 00.356-.356h.002v-.014a2.21 2.21 0 00-.063-.54c-.453-2.774-2.938-4.894-5.935-4.894z" }) + ] + } + ); +}); + +export { SiUnacademy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.cjs new file mode 100644 index 000000000..0c0d8e320 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1D1D1D"; +const SiUnderarmour = React__namespace.forwardRef(function SiUnderarmour2({ title = "Under Armour", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.954 12c-.089.066-.195.142-.324.233-.826.585-2.023.985-3.58.985h-.104c-1.556 0-2.755-.4-3.58-.985A36.43 36.43 0 018.042 12c.09-.067.196-.143.324-.234.825-.584 2.024-.985 3.58-.985h.104c1.557 0 2.756.401 3.58.985.129.09.235.167.325.234M24 7.181s-.709-.541-2.95-1.365c-1.968-.721-3.452-.883-3.452-.883l.006 4.243c0 .598-.162 1.143-.618 1.765-1.672-.61-3.254-.985-4.981-.985-1.728 0-3.308.375-4.98.985-.457-.619-.62-1.168-.62-1.765l.007-4.243s-1.494.16-3.463.883C.709 6.642 0 7.181 0 7.181c.093 1.926 1.78 3.638 4.435 4.82C1.777 13.18.09 14.887 0 16.818c0 0 .709.54 2.949 1.365 1.968.721 3.453.883 3.453.883l-.007-4.244c0-.597.164-1.143.619-1.764 1.672.61 3.252.983 4.98.983 1.727 0 3.309-.374 4.98-.983.457.62.62 1.167.62 1.764l-.006 4.244s1.484-.16 3.452-.883c2.241-.826 2.95-1.365 2.95-1.365-.093-1.927-1.78-3.64-4.435-4.819 2.657-1.182 4.343-2.888 4.435-4.82" }) + ] + } + ); +}); + +exports.default = SiUnderarmour; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.d.ts new file mode 100644 index 000000000..ba061f640 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1D1D1D"; +declare const SiUnderarmour: IconType; +export { SiUnderarmour as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.mjs new file mode 100644 index 000000000..faca53c85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderarmour.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1D1D1D"; +const SiUnderarmour = React.forwardRef(function SiUnderarmour2({ title = "Under Armour", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.954 12c-.089.066-.195.142-.324.233-.826.585-2.023.985-3.58.985h-.104c-1.556 0-2.755-.4-3.58-.985A36.43 36.43 0 018.042 12c.09-.067.196-.143.324-.234.825-.584 2.024-.985 3.58-.985h.104c1.557 0 2.756.401 3.58.985.129.09.235.167.325.234M24 7.181s-.709-.541-2.95-1.365c-1.968-.721-3.452-.883-3.452-.883l.006 4.243c0 .598-.162 1.143-.618 1.765-1.672-.61-3.254-.985-4.981-.985-1.728 0-3.308.375-4.98.985-.457-.619-.62-1.168-.62-1.765l.007-4.243s-1.494.16-3.463.883C.709 6.642 0 7.181 0 7.181c.093 1.926 1.78 3.638 4.435 4.82C1.777 13.18.09 14.887 0 16.818c0 0 .709.54 2.949 1.365 1.968.721 3.453.883 3.453.883l-.007-4.244c0-.597.164-1.143.619-1.764 1.672.61 3.252.983 4.98.983 1.727 0 3.309-.374 4.98-.983.457.62.62 1.167.62 1.764l-.006 4.244s1.484-.16 3.452-.883c2.241-.826 2.95-1.365 2.95-1.365-.093-1.927-1.78-3.64-4.435-4.819 2.657-1.182 4.343-2.888 4.435-4.82" }) + ] + } + ); +}); + +export { SiUnderarmour as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.cjs new file mode 100644 index 000000000..a56a397a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0371B5"; +const SiUnderscoredotjs = React__namespace.forwardRef(function SiUnderscoredotjs2({ title = "Underscore.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.704 9.96a1.244 1.244 0 0 0-.3.047 1.016 1.016 0 0 0-.696.586c-.074.16-.08.202-.08.613 0 .413.006.453.08.61a1.047 1.047 0 0 0 .478.508c.158.076.204.085.507.085.452 0 .564-.025.564-.125 0-.076-.003-.076-.143-.052-.277.045-.652.027-.8-.04-.286-.13-.476-.424-.512-.798-.061-.597.155-1.057.579-1.214.183-.067.545-.067.752.003.133.045.167.05.188.015.067-.107-.005-.155-.304-.21a1.545 1.545 0 0 0-.313-.026zm-2.227.01a.692.692 0 0 0-.16.017.765.765 0 0 0-.469.358.745.745 0 0 0-.033.244c0 .314.142.46.646.653.512.2.603.28.603.55 0 .42-.515.59-1.213.4-.064-.016-.07-.011-.062.068.01.08.026.093.178.125.242.05.634.047.817-.005.182-.055.362-.2.42-.34a.835.835 0 0 0 .042-.277c0-.3-.14-.453-.562-.615-.55-.212-.687-.316-.693-.537a.4.4 0 0 1 .216-.403c.116-.066.173-.08.354-.08.116 0 .296.027.393.056.183.055.228.043.23-.064 0-.074-.43-.154-.706-.15zm4.233 0a1.044 1.044 0 0 0-.226.02c-.507.106-.8.55-.8 1.201 0 .453.142.817.4 1.024.205.16.326.196.68.196.258-.004.329-.016.457-.078.383-.188.593-.59.593-1.14 0-.549-.216-.957-.593-1.13a1.39 1.39 0 0 0-.51-.094zm7.536.001a1.027 1.027 0 0 0-.257.026.707.707 0 0 0-.41.307.78.78 0 0 0 0 .563c.07.13.263.252.64.391.48.182.629.36.543.645-.069.23-.32.37-.657.37a2.087 2.087 0 0 1-.527-.076c-.094-.02-.1-.018-.1.054 0 .12.155.16.61.16.354 0 .388-.007.537-.086a.605.605 0 0 0 .29-.793c-.08-.177-.229-.277-.677-.45-.426-.162-.533-.262-.533-.5 0-.194.07-.303.248-.395.152-.08.48-.08.71-.003.16.055.166.055.206 0 .061-.085.052-.097-.12-.15a1.907 1.907 0 0 0-.503-.063Zm-18.367.04v2.39l.48-.013c.423-.012.5-.02.666-.09.48-.196.67-.559.643-1.214-.02-.506-.17-.77-.535-.95-.2-.1-.204-.1-.728-.11Zm4.08 0v2.382h.152V11.36h.593l.304.517c.296.509.305.518.405.518h.1l-.097-.176a18.403 18.403 0 0 0-.32-.537l-.216-.362.15-.076a.64.64 0 0 0 .335-.737c-.049-.204-.11-.293-.277-.39-.133-.08-.16-.08-.633-.09zm-8.958.01.009.903c.01.876.013.912.08 1.05.157.32.463.472.888.442.37-.024.583-.155.733-.449.07-.134.075-.158.083-1.043l.013-.904h-.19v.843c0 .52-.012.892-.032.968-.05.178-.254.362-.454.41-.31.077-.653-.017-.8-.217-.134-.18-.144-.264-.144-1.155v-.85H.095Zm2.44 0v2.373h.152l.005-1.054.01-1.056.7 1.052c.637.96.71 1.058.786 1.058h.083V10.02h-.154v2.084l-.693-1.04c-.67-1.014-.695-1.043-.79-1.046Zm4.657 0v2.373h1.31v-.152H7.251l.007-.513.01-.508.54-.009.54-.007v-.152h-1.1l.01-.45.01-.447.572-.008c.544-.007.568-.01.568-.067 0-.06-.02-.06-.653-.06zm10.173 0v2.373h.152V11.36h.602l.3.517c.29.5.302.516.4.518.05 0 .097-.005.097-.018 0-.008-.14-.25-.307-.535a5.972 5.972 0 0 1-.298-.525 1.248 1.248 0 0 1 .133-.073c.234-.12.35-.313.35-.594a.6.6 0 0 0-.453-.6 3.688 3.688 0 0 0-.542-.03zm1.947 0v2.373h1.31v-.152h-1.126v-1.037h1.067v-.152h-1.067v-.912h.564c.542 0 .563-.003.563-.06 0-.058-.02-.06-.653-.06zm2.59 0v1.264c0 1.079-.008 1.283-.048 1.368-.066.137-.17.183-.4.177-.172-.004-.193.003-.193.054 0 .084.133.13.33.11.206-.02.334-.097.413-.25.06-.12.064-.17.073-1.427l.01-1.297h-.091zm-12.7.11.33.021c.18.013.373.037.432.055.325.097.44.54.21.8-.129.142-.31.2-.674.2h-.295v-.538zm-3.885.013a4.267 4.267 0 0 1 .376.03c.43.047.667.197.803.498.061.133.07.204.07.52 0 .34-.006.377-.085.54a1.008 1.008 0 0 1-.21.28c-.182.16-.35.208-.775.222l-.375.016v-1.034c0-.57.01-1.043.022-1.052.013-.015.077-.02.174-.02zm12.387 0c.09 0 .213.01.346.026.295.034.432.107.503.26.12.263.036.556-.196.69-.11.06-.175.072-.483.081l-.36.012v-.515c0-.282.01-.526.023-.536.012-.013.073-.02.165-.018zm-1.858 0a1.197 1.197 0 0 1 .334.044.873.873 0 0 1 .458.472c.058.14.067.23.067.532 0 .401-.045.573-.21.79-.21.274-.703.36-1.06.188-.334-.16-.462-.44-.46-.993 0-.288.014-.38.07-.523.077-.194.296-.42.467-.472a1.14 1.14 0 0 1 .333-.036zm5.352 1.98c-.052 0-.072.018-.097.07-.048.11.01.232.11.232.098 0 .147-.066.134-.19-.01-.087-.02-.1-.107-.11a.379.379 0 0 0-.04-.001zm-9.082 1.308c-6.59 0-11.99.01-11.999.02a1.2 1.2 0 0 0-.021.305v.283H24v-.608z" }) + ] + } + ); +}); + +exports.default = SiUnderscoredotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.d.ts new file mode 100644 index 000000000..c92db07e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0371B5"; +declare const SiUnderscoredotjs: IconType; +export { SiUnderscoredotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.mjs new file mode 100644 index 000000000..426c66477 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnderscoredotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0371B5"; +const SiUnderscoredotjs = React.forwardRef(function SiUnderscoredotjs2({ title = "Underscore.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.704 9.96a1.244 1.244 0 0 0-.3.047 1.016 1.016 0 0 0-.696.586c-.074.16-.08.202-.08.613 0 .413.006.453.08.61a1.047 1.047 0 0 0 .478.508c.158.076.204.085.507.085.452 0 .564-.025.564-.125 0-.076-.003-.076-.143-.052-.277.045-.652.027-.8-.04-.286-.13-.476-.424-.512-.798-.061-.597.155-1.057.579-1.214.183-.067.545-.067.752.003.133.045.167.05.188.015.067-.107-.005-.155-.304-.21a1.545 1.545 0 0 0-.313-.026zm-2.227.01a.692.692 0 0 0-.16.017.765.765 0 0 0-.469.358.745.745 0 0 0-.033.244c0 .314.142.46.646.653.512.2.603.28.603.55 0 .42-.515.59-1.213.4-.064-.016-.07-.011-.062.068.01.08.026.093.178.125.242.05.634.047.817-.005.182-.055.362-.2.42-.34a.835.835 0 0 0 .042-.277c0-.3-.14-.453-.562-.615-.55-.212-.687-.316-.693-.537a.4.4 0 0 1 .216-.403c.116-.066.173-.08.354-.08.116 0 .296.027.393.056.183.055.228.043.23-.064 0-.074-.43-.154-.706-.15zm4.233 0a1.044 1.044 0 0 0-.226.02c-.507.106-.8.55-.8 1.201 0 .453.142.817.4 1.024.205.16.326.196.68.196.258-.004.329-.016.457-.078.383-.188.593-.59.593-1.14 0-.549-.216-.957-.593-1.13a1.39 1.39 0 0 0-.51-.094zm7.536.001a1.027 1.027 0 0 0-.257.026.707.707 0 0 0-.41.307.78.78 0 0 0 0 .563c.07.13.263.252.64.391.48.182.629.36.543.645-.069.23-.32.37-.657.37a2.087 2.087 0 0 1-.527-.076c-.094-.02-.1-.018-.1.054 0 .12.155.16.61.16.354 0 .388-.007.537-.086a.605.605 0 0 0 .29-.793c-.08-.177-.229-.277-.677-.45-.426-.162-.533-.262-.533-.5 0-.194.07-.303.248-.395.152-.08.48-.08.71-.003.16.055.166.055.206 0 .061-.085.052-.097-.12-.15a1.907 1.907 0 0 0-.503-.063Zm-18.367.04v2.39l.48-.013c.423-.012.5-.02.666-.09.48-.196.67-.559.643-1.214-.02-.506-.17-.77-.535-.95-.2-.1-.204-.1-.728-.11Zm4.08 0v2.382h.152V11.36h.593l.304.517c.296.509.305.518.405.518h.1l-.097-.176a18.403 18.403 0 0 0-.32-.537l-.216-.362.15-.076a.64.64 0 0 0 .335-.737c-.049-.204-.11-.293-.277-.39-.133-.08-.16-.08-.633-.09zm-8.958.01.009.903c.01.876.013.912.08 1.05.157.32.463.472.888.442.37-.024.583-.155.733-.449.07-.134.075-.158.083-1.043l.013-.904h-.19v.843c0 .52-.012.892-.032.968-.05.178-.254.362-.454.41-.31.077-.653-.017-.8-.217-.134-.18-.144-.264-.144-1.155v-.85H.095Zm2.44 0v2.373h.152l.005-1.054.01-1.056.7 1.052c.637.96.71 1.058.786 1.058h.083V10.02h-.154v2.084l-.693-1.04c-.67-1.014-.695-1.043-.79-1.046Zm4.657 0v2.373h1.31v-.152H7.251l.007-.513.01-.508.54-.009.54-.007v-.152h-1.1l.01-.45.01-.447.572-.008c.544-.007.568-.01.568-.067 0-.06-.02-.06-.653-.06zm10.173 0v2.373h.152V11.36h.602l.3.517c.29.5.302.516.4.518.05 0 .097-.005.097-.018 0-.008-.14-.25-.307-.535a5.972 5.972 0 0 1-.298-.525 1.248 1.248 0 0 1 .133-.073c.234-.12.35-.313.35-.594a.6.6 0 0 0-.453-.6 3.688 3.688 0 0 0-.542-.03zm1.947 0v2.373h1.31v-.152h-1.126v-1.037h1.067v-.152h-1.067v-.912h.564c.542 0 .563-.003.563-.06 0-.058-.02-.06-.653-.06zm2.59 0v1.264c0 1.079-.008 1.283-.048 1.368-.066.137-.17.183-.4.177-.172-.004-.193.003-.193.054 0 .084.133.13.33.11.206-.02.334-.097.413-.25.06-.12.064-.17.073-1.427l.01-1.297h-.091zm-12.7.11.33.021c.18.013.373.037.432.055.325.097.44.54.21.8-.129.142-.31.2-.674.2h-.295v-.538zm-3.885.013a4.267 4.267 0 0 1 .376.03c.43.047.667.197.803.498.061.133.07.204.07.52 0 .34-.006.377-.085.54a1.008 1.008 0 0 1-.21.28c-.182.16-.35.208-.775.222l-.375.016v-1.034c0-.57.01-1.043.022-1.052.013-.015.077-.02.174-.02zm12.387 0c.09 0 .213.01.346.026.295.034.432.107.503.26.12.263.036.556-.196.69-.11.06-.175.072-.483.081l-.36.012v-.515c0-.282.01-.526.023-.536.012-.013.073-.02.165-.018zm-1.858 0a1.197 1.197 0 0 1 .334.044.873.873 0 0 1 .458.472c.058.14.067.23.067.532 0 .401-.045.573-.21.79-.21.274-.703.36-1.06.188-.334-.16-.462-.44-.46-.993 0-.288.014-.38.07-.523.077-.194.296-.42.467-.472a1.14 1.14 0 0 1 .333-.036zm5.352 1.98c-.052 0-.072.018-.097.07-.048.11.01.232.11.232.098 0 .147-.066.134-.19-.01-.087-.02-.1-.107-.11a.379.379 0 0 0-.04-.001zm-9.082 1.308c-6.59 0-11.99.01-11.999.02a1.2 1.2 0 0 0-.021.305v.283H24v-.608z" }) + ] + } + ); +}); + +export { SiUnderscoredotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.cjs new file mode 100644 index 000000000..40b023c29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E71D29"; +const SiUndertale = React__namespace.forwardRef(function SiUndertale2({ title = "Undertale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 0v1.5H1.5V3H0v12h3v3h3v3h3v3h6v-3h3v-3h3v-3h3V3h-1.5V1.5H21V0h-3v1.5h-3V3h-1.5v3h-3V3H9V1.5H6V0z" }) + ] + } + ); +}); + +exports.default = SiUndertale; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.d.ts new file mode 100644 index 000000000..8491e843f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E71D29"; +declare const SiUndertale: IconType; +export { SiUndertale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.mjs new file mode 100644 index 000000000..6b4c8e8ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUndertale.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E71D29"; +const SiUndertale = React.forwardRef(function SiUndertale2({ title = "Undertale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3 0v1.5H1.5V3H0v12h3v3h3v3h3v3h6v-3h3v-3h3v-3h3V3h-1.5V1.5H21V0h-3v1.5h-3V3h-1.5v3h-3V3H9V1.5H6V0z" }) + ] + } + ); +}); + +export { SiUndertale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.cjs new file mode 100644 index 000000000..eefb0c858 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5455FE"; +const SiUnicode = React__namespace.forwardRef(function SiUnicode2({ title = "Unicode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.2 0a.2.2 0 00-.2.2v23.6c0 .11.09.2.2.2h23.6a.2.2 0 00.2-.2V.2a.2.2 0 00-.2-.2H.2zm19.488 5.27A1.312 1.312 0 0121 6.582a1.312 1.312 0 01-1.313 1.313 1.312 1.312 0 01-1.31-1.313 1.312 1.312 0 011.31-1.312zM3.15 6.05h1.996c.102 0 .153.05.153.151v7.49c0 .912.222 1.644.666 2.188.444.546 1.121.816 2.033.816.38 0 .729-.048 1.047-.15.316-.102.59-.272.824-.506.234-.236.419-.546.553-.932.134-.386.2-.869.2-1.453V6.223c0-.014.003-.024.005-.035l-.006-.004c0-.09.045-.133.133-.133h2.682c.076 0 .126.01.152.027.026.018.05.054.076.104.228.418.499.906.809 1.464.31.558.629 1.14.959 1.749l.998 1.843c.334.62.647 1.206.94 1.758.291.552.549 1.045.77 1.475.223.432.39.768.505 1.008h.02c0-.126-.005-.27-.01-.428a25.728 25.728 0 01-.02-.57c-.006-.223-.014-.493-.02-.81-.008-.315-.01-.696-.01-1.14v-3.21c0-.103.056-.153.17-.153H20.6c.114 0 .171.058.171.172v9.03c0 .113-.063.17-.189.17h-2.414c-.114 0-.198-.046-.248-.134a173.907 173.907 0 00-1.623-3.021 232.322 232.322 0 01-2.121-3.946 96.063 96.063 0 01-.883-1.718 37.59 37.59 0 01-.371-.768v4.815c0 .888-.13 1.643-.39 2.271-.26.628-.611 1.141-1.055 1.541a4.112 4.112 0 01-1.588.873 6.848 6.848 0 01-1.97.277 6.42 6.42 0 01-2.032-.304 4.196 4.196 0 01-1.559-.903c-.43-.4-.76-.903-.988-1.511-.228-.608-.342-1.325-.342-2.149v-7.64c0-.114.05-.172.152-.172Z" }) + ] + } + ); +}); + +exports.default = SiUnicode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.d.ts new file mode 100644 index 000000000..8eb6a4241 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5455FE"; +declare const SiUnicode: IconType; +export { SiUnicode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.mjs new file mode 100644 index 000000000..dc7a55c94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnicode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5455FE"; +const SiUnicode = React.forwardRef(function SiUnicode2({ title = "Unicode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.2 0a.2.2 0 00-.2.2v23.6c0 .11.09.2.2.2h23.6a.2.2 0 00.2-.2V.2a.2.2 0 00-.2-.2H.2zm19.488 5.27A1.312 1.312 0 0121 6.582a1.312 1.312 0 01-1.313 1.313 1.312 1.312 0 01-1.31-1.313 1.312 1.312 0 011.31-1.312zM3.15 6.05h1.996c.102 0 .153.05.153.151v7.49c0 .912.222 1.644.666 2.188.444.546 1.121.816 2.033.816.38 0 .729-.048 1.047-.15.316-.102.59-.272.824-.506.234-.236.419-.546.553-.932.134-.386.2-.869.2-1.453V6.223c0-.014.003-.024.005-.035l-.006-.004c0-.09.045-.133.133-.133h2.682c.076 0 .126.01.152.027.026.018.05.054.076.104.228.418.499.906.809 1.464.31.558.629 1.14.959 1.749l.998 1.843c.334.62.647 1.206.94 1.758.291.552.549 1.045.77 1.475.223.432.39.768.505 1.008h.02c0-.126-.005-.27-.01-.428a25.728 25.728 0 01-.02-.57c-.006-.223-.014-.493-.02-.81-.008-.315-.01-.696-.01-1.14v-3.21c0-.103.056-.153.17-.153H20.6c.114 0 .171.058.171.172v9.03c0 .113-.063.17-.189.17h-2.414c-.114 0-.198-.046-.248-.134a173.907 173.907 0 00-1.623-3.021 232.322 232.322 0 01-2.121-3.946 96.063 96.063 0 01-.883-1.718 37.59 37.59 0 01-.371-.768v4.815c0 .888-.13 1.643-.39 2.271-.26.628-.611 1.141-1.055 1.541a4.112 4.112 0 01-1.588.873 6.848 6.848 0 01-1.97.277 6.42 6.42 0 01-2.032-.304 4.196 4.196 0 01-1.559-.903c-.43-.4-.76-.903-.988-1.511-.228-.608-.342-1.325-.342-2.149v-7.64c0-.114.05-.172.152-.172Z" }) + ] + } + ); +}); + +export { SiUnicode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.cjs new file mode 100644 index 000000000..df4c93698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F36C7"; +const SiUnilever = React__namespace.forwardRef(function SiUnilever2({ title = "Unilever", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.436 6.6255c.1147.8467 1.392 1.99 1.746 1.9613.2344-.0191.3205-1.105.3205-1.9613 0-.488.0287-.8754-.2296-.9616-.4114.8276-1.4878.995-1.837.9616zm.0717-.378c.928 0 1.7747-.7414 1.7747-1.392 0-.3014-.1435-.555-.507-.598.0622.0813.0909.1388.0909.287 0 .4928-.7463 1.0333-1.5595 1.0333-.2966 0-.3827.2057-.3827.311-.0048.2583.2344.3588.5836.3588zm-.1962-1.0045c-.1243 0-.3013 0-.4018-.1962-.0335-.0621-.0478-.1387-.0622-.22-.0239-.1244-.0478-.2488-.1435-.3157.153.0478.3062.0478.4353.0478.4019 0 .7846-.2775 1.0811-.2775.1962 0 .2536.1244.2536.2488.0096.3923-.7893.7128-1.1529.7128h-.0096zM1.373 12.232c.3014 0 .2392-1.856.732-1.856.1148 0 .1482.1147.1482.263 0 .421-.2057 1.0333-.2057 1.373 0 .1722.0479.2296.1244.2248.2153 0 .5884-2.0427.952-2.0427.1148 0 .1722.1149.1722.2344 0 .4258-.5454 1.66-.5454 2.0044 0 .0574.024.1005.0575.1005.2248 0 .6697-.9615.8132-1.4447.0813-.2488.1866-.3827.287-.3827.0909 0 .1722.1005.1722.3062 0 .4831-.4449 1.612-.8371 2.3727-.3014.5884-.775 1.4351-.775 1.9087 0 .2392.0478.4927.3875.7893-.5693-.0335-.8037-.0909-1.0142-.5358-.952 1.8944 1.7605 1.7126.8324 3.3965-.1674-.3014-1.5069-.6123-1.5069-2.3775 0-1.526 1.3347-2.4158 1.3347-3.0473 0-.1243-.043-.2296-.1579-.33-.2966-.2488-.3013-.4545-.5358-.4545-.1674 0-.373.3923-.1626.7415.0718.1148.1387.1818.1387.2966 0 .2487-.3922.9185-.6697.9137-.2774 0-.488-.6841-.488-1.7891 0-.9807.2249-1.971.4976-1.971.0813 0 .1004.0575.1004.1244 0 .1148-.0335.3492-.0335.7415.0048.4162.0957.4497.1818.4401zm2.2723 2.612c.3731 0 .684-.2775.684-.8898v-.909c0-.3492.0288-.7414.2584-1.0141-.0287.1148-.0287.2392-.0287.354 0 .7654.421 1.2916.421 2.033 0 .2775-.0814.4258-.2918.421-.2057 0-.1866-.1865-.2344-.1865-.0335 0-.091.1148-.091.2392 0 .1817.1388.4783.5024.4831.3205 0 .5788-.2918.5788-.6219 0-.8036-.6219-1.6934-.6219-2.5497 0-.3731.1005-.6219.177-.818 0 1.77 1.5069 3.0616 1.5069 3.803 0 .1675-.1244.3014-.311.3014-.2057 0-.3013-.1626-.3013-.287 0-.0622-.0096-.0813-.0335-.0813-.0526 0-.2153.177-.2153.4114 0 .2966.2392.6506.684.6506.5072 0 .7846-.4306.7846-.8133 0-.9376-1.8274-2.3536-1.8274-3.87 0-.2583.043-.6793.2296-.9998-1.1768.7558-1.5403 1.7652-1.5403 2.6502 0 .7654-.0287 1.148-.421 1.148-.2057 0-.2583-.1865-.33-.1865-.0527 0-.0814.1627-.0814.2057.0096.3349.244.5167.488.5167h.0143v.0095zM19.8334 4.6401c-.1722 0-.4545.1866-.6793.1866-.2823-.0048-.201-.3588-.5119-.3588-.067 0-.1483.0191-.2296.0622-.6458.3253-1.1481.201-1.263.2775-.0286.0143-.0525.0382-.0621.0908 0 .6698.7128 1.703 1.8991 1.703.8133 0 1.4974-.2774 1.4974-.7319 0-.397-.3827-1.2294-.6506-1.2294zm-.7415 1.3012c-.6554 0-1.086-.354-1.0811-.5884 0-.0287.0191-.0478.0526-.0478.1052 0 .3923.1435.7654.2057.4353.0717.6697.0813.7845.0813.1148 0 .1674.0287.1674.0622 0 .11-.2965.287-.6888.287zM3.8318 18.2069c-.2918.0718-.7654.5358-.7654 1.2677 0 .8706.9376 2.2149 2.478 2.2149 1.3011 0 1.6216-.8994 1.6216-1.507 0-1.3441-.8276-2.2913-1.9087-2.2913-.5884 0-1.1146.4305-1.1146 1.062 0 .5931.4449 1.4733 1.5069 1.4733.4975 0 .794-.3587.794-.7653 0-.4019-.3635-.952-.8993-.952-.1626 0-.2774.1052-.2774.2774 0 .2153.2966.421.665.4258.0908 0 .1626-.0191.196-.0335.0192.024.024.067.024.1053 0 .2057-.1962.33-.4975.33-.4545 0-.8898-.3396-.8898-.8754 0-.3205.2775-.5501.6793-.5501.794 0 1.2677.708 1.2677 1.4064 0 .6315-.3492.9998-1.062.995-1.4351.0048-2.124-1.2868-1.8178-2.5832zm11.0552 2.8368c-.091-.1723-.0192-.4689-.287-.4689-.1818 0-.1962.1436-.2153.2584-.3875-.11-.708-.1675-.995-.1675-.2057 0-.3827.0287-.5358.0814-.1005-.1818-.5406-.5262-.9233-.6506-.1483.8036-.8706 1.435-1.9422 1.526-.0621.5262-.4736.6601-.794.6601-.2297.0048-.598-.0765-.6172-.1674-.1243-.7558-.6984-1.1816-.9471-1.282.0095.0813.019.1674.019.2487 0 .641-.44 1.0429-1.258 1.0429-.1244 0-.2966-.0096-.421-.0335.9376 1.0428 1.6073.6601 2.0427.8563C8.582 23.2059 9.046 24 10.8734 24c.665 0 1.3443-.2583 1.7891-.5453.0814.2678.3588.507.8133.507.775 0 1.2103-.2392 1.2103-.4353 0-.0526-.0048-.134-.1388-.134s-.1148.0336-.5405.0336c-.4928-.0048-1.2964-.1962-1.6743-1.0573-.067-.1435-.1722-.1435-.2057-.1435-.2488 0-.6315.885-2.2006.885-.6553.0048-.9615-.244-.9615-.3013 0-.0096 0-.0192.0335-.0192.0622 0 .3062.0287.6075.0287.9903 0 1.7892-.4544 2.2723-.9806.1674-.1866.2488-.2153.3923-.2153.1244 0 .2583.11.3205.2774.22.5693.7271 1.0238 1.282 1.0238.751 0 .7606-1.282.9376-1.3443a.344.344 0 00.1053.0192c.0909 0 .2344-.067.2344-.2344 0-.1818-.22-.2297-.2631-.3205zm-1.215.9615c-.1962-.0048-.354-.1627-.354-.3588 0-.201.1578-.3588.354-.3588.196 0 .3587.1627.3587.3588a.3583.3583 0 01-.3588.3588zm6.4245-5.1808c-1.3108 0-.9711 1.148-2.502 1.4973-.2822.0622-.3635.153-.3635.2775 0 .2344.1292.5357.2918.5357.665 0 1.703-1.3825 1.8896-1.3825v-.009c.0784.0046.1577.0117.153.1956 0 .5023-1.4446 1.1577-1.4446 1.5165 0 .2152.5118.6697 1.0094.6697.7223.0048 1.3681-1.4734 1.5212-1.4734.1196 0 .1626.086.1626.177 0 .4018-.488 1.1863-1.3442 1.526-.177.0717-.2057.153-.2057.2153 0 .1961.2248.4879.4305.4879.2488 0 1.9231-1.459 1.9231-2.6358 0-1.105-.7989-1.5978-1.5212-1.5978zm.6027 1.2677a.5738.5738 0 01-.263-.067c-.1149-.0526-.3206-.2248-.3206-.488 0-.2391.134-.3396.2583-.3396.3827 0 .7846.3397.7893.6076 0 .2152-.2057.287-.464.287zM3.7265 6.8742c0 .1962.1579.354.354.3588.1962 0 .354-.1626.354-.3588 0-.1961-.1626-.354-.354-.354-.1913.0048-.3588.1627-.3588.354h.0048zm-.464-.7989c0 .1962.1579.354.354.354.1961 0 .3588-.1626.3588-.3587 0-.1962-.1627-.3588-.3588-.3588s-.354.1722-.354.3635zm-.3205 2.435c-.2057.0526-.6315.3013-.6315.7462 0 .3205.2536.5262.5597.5262.1627 0 .2775-.0334.3493-.0909-.2488-.2391-.3397-.507-.3397-.775 0-.177.0287-.2917.0622-.4065zm-2.1862.1291c-.0095.043-.0095.091-.0095.134 0 .421.2152.6506.5118.6506.22 0 .4832-.134.7128-.4258-.0957.0191-.2153.0287-.3205.0287-.3205 0-.684-.0909-.8946-.3875zm-.311.799c0 .6744.2058.995.5694.9997.287 0 .6697-.2057 1.1241-.598-.3492.0814-.617.134-.8563.1388C.9615 9.974.7176 9.8497.445 9.4383zm2.3106-3.5688c.043-.1435.0814-.3205.0814-.5166 0-.4258-.1962-1.0763-.8037-1.0763-.3492 0-.598.2774-.598.6075 0 .708.708.9902 1.3203.9854zm.4497.8994c-.1148-.153-.0718-.2918-.1435-.3636-.043-.043-.1674-.043-.33-.0622a2.2396 2.2396 0 00-.1962-.0095c-.2918 0-.641.0382-1.0333.287-.7702.488-.6602 1.3107-.7798 1.5117-.0143.0287-.0287.0621-.0287.1004 0 .0813.091.1722.1723.1674.0717 0 .1148-.0191.153-.0191.2153 0 .4593.1483.799.153.2056 0 .4448-.0621.7462-.2152.641-.3205.8898-1.1146.8898-1.2485 0-.1675-.134-.1483-.2488-.3014zM1.9948 8.118c-.2918 0-.6123-.3636-.6123-.6936 0-.177.134-.4019.2296-.4019.0335 0 .0574.024.0574.091.0526.4352.3445.684.6076.8131.0287.024.0478.024.0478.0431 0 .0526-.1674.1435-.33.1483zm.8372-.5501c-.311 0-.5597-.4736-.5597-.7415 0-.1674.1004-.1866.2296-.1866.0622 0 .0909.0096.1387.0335.0766.043.0766.2153.177.354.0622.0813.2296.1818.2296.2535 0 .1244-.0717.287-.2152.287zm.8515.2105c-.1962.2296-.4019.6218-.4019 1.0285 0 .4783.2966.8802.7559.8802.4353 0 .641-.3732.641-.7559-.0048-.6027-.5454-1.0237-.995-1.1528zM1.7748 6.0658s-.2584.1961-.5789.1961c-.3827 0-.684-.287-.684-.684 0-.2775.1435-.5598.4735-.7033-.0095.0526-.0095.0957-.0095.1531-.0048.5023.2774.8898.7989 1.038zM17.4893 9.022c0 .2057.1722.378.378.3732.2056 0 .373-.1675.373-.3732s-.1674-.3731-.373-.3731c-.2105 0-.378.1722-.378.3731zm.024 1.1242c0 .2296.1817.421.421.421a.4216.4216 0 00.4209-.421.4216.4216 0 00-.421-.421c-.2296.0096-.421.1914-.421.421zm-1.282.7606c0 .3444.2726.6171.617.6171.3397 0 .6171-.2774.6171-.617s-.2774-.6172-.617-.6172c-.3397.0048-.6172.2775-.6172.6171zm.33-1.2629c0 .1961.1579.354.354.3588.1961 0 .3588-.1627.3588-.3588s-.1627-.3588-.3588-.3588c-.1914 0-.3492.1627-.3492.3636l-.0048-.0048zm-1.1672.7176c0 .1961.1578.354.354.354s.3587-.1579.3587-.354-.1626-.354-.3587-.354c-.1914 0-.3493.1626-.354.354zm.9184-2.0905c0 .3061.2631.5692.5693.5692s.5693-.2583.5693-.5692-.2584-.5693-.5693-.5693c-.311 0-.5693.2631-.5693.5693zm.665-1.0907c0 .1818.1483.3444.3444.3396a.341.341 0 00.3397-.3396.341.341 0 00-.3397-.3397c-.1913.0048-.3492.1531-.3444.3397zm-1.6121.8563c0 .1818.1483.3444.33.3396a.341.341 0 00.3397-.3396.341.341 0 00-.3397-.3397c-.177.0048-.33.1531-.33.3397zm-.0431 1.1624c0 .3062.2392.5502.5358.5454a.542.542 0 00.5453-.5454.542.542 0 00-.5453-.5453c-.2966-.0048-.5406.2344-.5358.5453zm-1.1242.5645c0 .2727.2296.5023.5023.507.2775 0 .507-.2295.507-.507 0-.2775-.2343-.507-.507-.507-.2679 0-.5023.2248-.5023.507zm.3014-1.2581c0 .1961.1579.354.354.354s.3588-.1627.3588-.3588-.1627-.3588-.3588-.3588c-.1914-.0048-.3492.1579-.3492.3588h-.0048v.0048zm3.1333 2.7506c0-.177.1627-.33.335-.33.196 0 .3443.1482.3443.33 0 .2057-.153.3492-.3492.3445a.3312.3312 0 01-.33-.3445zm.3014 9.3666c.0718-.0622.091-.1627.091-.2583v-.2057c0-.2584-.3924-.4114-.9281-.4114-.6506 0-.9998.2918-.9998.4161v.4114c0 .1723.3875.3445.8802.3445.3779 0 .7271-.1005.9567-.2966zm.4638.0958c-.2297.1771-.775.5787-1.674.5835-.4832 0-.6937-.1531-.7655-.1531-.0909 0-.1865.0909-.287.2057-.2105.2487-.488.7128-.488 1.2246 0 .354.2727.708.7894.7128 1.6695 0 2.9133-1.0428 2.9133-1.8896.0047-.4796-.2828-.6856-.4882-.6839zm-.8417 1.6359c-.2248.153-.5262.2774-.971.2822.0717-.2152.1243-.4353.1243-.6506 0-.0717-.0096-.1243-.0191-.2057h.1148c.6984-.0047 1.0045-.2822 1.0572-.2774.043 0 .1004.024.1004.1866 0 .196-.0909.4544-.4066.6649zm1.1529-9.1322c0 .2153.067.4784.2966.4832.1865 0 .3492-.287.3492-.598 0-.3587-.0622-.6314-.0622-.775 0-.0621.0287-.0908.0622-.0908.134.0095.2631.3779.4018.3779.1627 0 .4019-.2966.4975-.2966.0287 0 .0335.0335.0335.043 0 .134-.2057.4306-.2057.5502 0 .1004.5119.1148.5119.2057 0 .134-.5406.134-.7989.2487-.2488.1053-.4018.2392-.4018.421s.1817.2153.4353.2153c.598 0 1.0141-.3205 1.148-.3205.0288 0 .048.0239.048.043 0 .091-.3015.3827-.3015.5119 0 .1483.5502.33.5502.421-.0096.0286-.043.0334-.1053.0334-.1004 0-.2487-.0287-.3683-.0287-.0718 0-.134.0096-.1627.043-.0622.067.024.5454-.1052.5454-.1148 0-.421-1.0524-1.105-1.0524-.1005 0-.1675.0813-.1675.2153 0 .354.3444.7654.6745.9615.1483.1005.4019.1961.4019.2535 0 .1053-.5693.0096-.5693.1866 0 .1579.067.4018.067.5454 0 .043-.0096.0956-.0622.1004-.1053 0-.3684-.488-.4927-.488-.1053 0-.3397.2919-.4354.2919-.0239 0-.043-.0287-.043-.0526 0-.2057.33-.6698.33-1.1242 0-.2153-.0286-.6793-.287-.6793-.2152 0-.4544.3396-.5597.6745-.0622.1961-.0191.952-.1626.952-.134 0-.1005-.5071-.2775-.5071-.134 0-.4162.2392-.5166.2392-.0191 0-.0335-.0096-.0335-.0287 0-.1053.2583-.4545.2583-.5262 0-.134-.5884-.1531-.5884-.2584 0-.0622.2296-.1052.445-.1435.4544-.0813 1.124-.4114 1.124-.8754 0-.5166-.4974-.7415-.8275-.952-.1674-.1052-.3588-.1961-.3588-.2679 0-.0717.2153-.0717.3014-.0717.134 0 .2679-.0096.2679-.1148 0-.0813-.0191-.2392-.0191-.3636 0-.0909.0095-.1626.043-.1626.134 0 .3205.4353.4114.4353.1435 0 .3397-.3588.4736-.3588.043 0 .0574.024.0574.1053-.0048.3348-.1722.7127-.1722 1.0332zm-4.2528-2.607c.1005.7557 1.1194.3778 1.1194 1.2915 0 .134-.0334.3301-.0334.4975 0 .1962.0239.3636.1722.3636.153 0 .1865-.1053.1865-.2488s-.0335-.3205-.0335-.421c0-.3109.2249-.3826.3588-.3826.3397 0 .5932.3444 1.1099.3492-.1149.5692-1.2917.421-1.2917 1.0428 0 .3062.3062.3875.512.3875.1865 0 .2487-.0287.2487-.1865 0-.091-.0192-.1866-.0192-.2488 0-.0335.0287-.0718.0718-.0718.1961 0 1.1529.732 1.1529.952 0 .2057-1.0142.4114-1.3108.4114-.0909 0-.1052-.0622-.1052-.0957 0-.0622.153-.2487.153-.3587 0-.0814-.1339-.134-.4927-.134-.1674 0-.2966.0191-.2966.153 0 .2393.3875.5359.3875.756 0 .177-.1052.287-.3922.287-.2392 0-.6028-.1866-.6028-.4976 0-.2487.2583-.4975.2583-.6506 0-.043-.0335-.1148-.1387-.1148-.33 0-.421.8755-1.5882.9711.1866-.1674.3492-.3587.3492-.7414 0-.1866-.043-.3397-.043-.5454 0-.2679.1243-.4018.3013-.4018.3301 0 .4928.4688.708.4688.1148 0 .2392-.1053.2392-.268 0-.6792-1.3012-.5787-1.3012-1.5307-.0095-.2679.0861-.5884.3205-1.0333zm2.9947 5.5538c.0622.1005.0909.1962.0909.287 0 .2488-.1675.4832-.1675.7415 0 .2966.2296.5358.5597.5358.3636 0 .6171-.2918.6171-.641-.0048-.4784-.4353-.8802-1.1002-.9233zm-2.9516.5693c.0909.0909.1148.1818.1148.2679 0 .134-.0622.2774-.0622.4257 0 .2153.1579.4019.3875.4019.2488 0 .421-.1962.421-.4258.0048-.3348-.3397-.6697-.8563-.6697h-.0048zm.2153-1.0524c.4114.0574.5118.1961.5118.311 0 .196-.177.2582-.3492.2582-.1244 0-.2679-.0287-.421-.0287-.196 0-.3922.043-.5549.2296.1148.024.287.1005.287.2775 0 .5166-1.435.0909-1.435 1.416 0 .708.7318 1.4734 1.8417 1.4686.5692 0 .9376-.1866.9376-.4018 0-.1675-.3014-.0527-.3014-.1962 0-.0622.1053-.177.1053-.2774 0-.043-.0335-.1244-.1053-.1244-.1626 0-.464.2583-1.0811.2631-.4832 0-.952-.2775-.952-.6506 0-.0813.0335-.1244.091-.1244.0525 0 .1243.0335.1817.0335.0526 0 .0622-.0335.0622-.134s0-.373.1674-.373.4927.6266 1.727.6266c.4066 0 1.2007-.0813 1.4973-.3492-.0096.9807-.775 2.2723-2.3823 2.2723-1.6648 0-2.5593-1.3395-2.5593-2.5689 0-1.3633 1.1146-2.6023 2.6406-2.6023.3922 0 .7175.1387.7175.3013 0 .2488-.5836.1005-.6266.3732zm.971-.4688c.1244.1483.1675.311.1627.4544 0 .3827-.2918.775-.2918 1.1481 0 .5023.33.8132.7845.8132.4975 0 .7846-.421.7846-.8754 0-.6601-.5023-1.3586-1.44-1.5403zm.6794 1.4112c-.1244-.0096-.2153-.1005-.2153-.2249 0-.067.043-.177.0574-.263.0191-.1197-.0096-.225.0622-.225.1626 0 .33.2584.33.445 0 .1435-.0908.2679-.2343.2679zM8.9504 5.5109c-.4545.0095-.8755.3827-1.1625.8897a1.697 1.697 0 00.0287-.3061c0-.6937-.3731-1.3203-1.0763-1.3203-.5693 0-1.086.33-1.3012.971.0622-.067.2488-.1817.4018-.1817.177 0 .2297.153.2297.3923 0 .1626-.0383.3492-.1005.5262-.11.2918-.3062.3827-.4114.3827-.4449 0-.244-.732-.4688-.732-.1866 0-.2392.3923-.2392.5454 0 .507.33 1.0428 1.062 1.0428.775 0 1.215-.3683 1.6887-.8658.0908.5358.3827 1.4542 1.1672 1.4542.4257 0 .7319-.354.7654-.7653-.0574.0526-.134.0956-.2249.0956-.1626 0-.196-.2296-.196-.4353 0-.33.0956-.684.2487-.684.0813 0 .1243.0526.1435.2917.0143.1866 0 .3923.1148.3923s.1866-.3683.1866-.6171c0-.574-.268-1.0763-.8563-1.0763zM6.3097 7.233c-.0765 0-.0956-.0717-.1004-.134 0-.3491.3827-1.9086.6601-1.9086.067 0 .091.0526.091.1243 0 .2775-.3493 1.9183-.6507 1.9183zm1.1864-.665c-.2296.2584-.354.3636-.4544.3636-.0527.0048-.1053-.086-.1053-.1913 0-.1914.134-.9041.4018-.9041.1053 0 .177.196.177.373 0 .134 0 .244-.019.3589zm.5214.6172c-.0909.0048-.1387-.1435-.1578-.464.1435-.2392.2392-.3445.33-.3445.0383 0 .0718.0335.0718.1866v.0048h.0048c0 .311-.1483.6219-.2488.617zm.4784.5405c-.0574 0-.1004-.0813-.0957-.2679 0-.4831.311-1.3633.4975-1.3633.0527 0 .0718.1244.0718.2392 0 .5357-.2488 1.392-.4736 1.392zm-1.215.1866c-.3828 0-.4019.464-.4019 1.4016-.287-.617-.7558-1.2724-1.3107-1.2724-.3732 0-.5167.2487-.5167.684 0 .091.0096.2297.024.3014.043-.153.1865-.2153.3635-.2153.3827 0 .8467.2966 1.1529.6937-.3492-.0622-.6889-.1244-.9711-.1244-.177 0-.3397.0191-.4736.0813-.2583.1148-.6075.4975-.6075 1.0764 0 .0909.0095.1818.0239.2918.311-.6937 1.1385-1.0094 1.6743-1.0094.1052 0 .1818.0096.2535.0191-.2774.2488-.3396.6841-.3588.9807-.0095.1435-.0621.153-.1626.1483 0 .2966.2296.732.2296.952 0 .0813-.043.153-.0909.1674 0 .3875.3875.6745.3875.9233 0 .0621-.0191.1148-.043.1435.0287.1578.4592.4353.5118.5645.067.1578.1483.196.1962.196.153 0 .3922-.177.3922-.3396 0-.0526-.043-.1148-.0813-.1435-.1674-.1243-.2583-.3922-.33-.5692-.0623 0-.1436-.024-.1723-.1292-.0478-.1866-.0526-.5262-.1244-.732-.1148-.0286-.1674-.0717-.1674-.3109 0-.1148.0718-.5692.0718-.7319-.0527 0-.1244-.0334-.1244-.1435 0-.287.287-.507.3635-.8754.5071.378.6267.7558.6267 1.0955 0 .177-.0287.3492-.0622.507.3732-.1865.9376-.464.9376-1.0237 0-.33-.153-.6936-1.1576-.8371.311-.1148.7032-.177 1.0333-.177.5692 0 .904.1818.971.5836.1149-.177.2058-.3827.2058-.5693 0-.4353-.3636-.7223-.8276-.7223-.5454 0-1.0238.287-1.5404.6267.2344-.4832.3923-.7654.6793-.7654.043 0 .0909.0095.1387.0191-.0957-.3827-.5023-.7702-.7128-.7654zm15.0209 6.4246c.4449 0 .7989.5836.7989 1.258 0 .7224-.3397 1.507-.9424 2.0475-.0096-1.2007-1.483-.818-1.483-1.6934 0-.3732.2679-.622.5884-.622.287 0 .5023.0814.6745.2393-.1626-.1531-.2392-.3636-.2392-.5693-.0048-.3492.2105-.6601.6028-.6601zm-6.616-9.1178c-.0717-.1149-.3396-.177-.464-.177-.3922 0-.6601.2774-.7127.5262-.0335-.091-.0622-.1962-.0622-.3014 0-.3923.2679-.8754.9185-.8754.5692 0 .7893.2966.8706.2966.0909 0 .177-.091.2488-.091.0956 0 .1004.1484.1004.2584 0 .354-.1626.971-.5645 1.2007-.0717-.153-.2152-.3205-.4449-.4257-.0621-.0287-.0908-.0814-.0908-.134.0047-.1052.0956-.2296.2009-.2774zm-1.3442.6505c.2297.2297.4354.3206.6841.3206.1005 0 .2153-.0287.2775-.0287.0813 0 .1387.0334.1387.1004 0 .1005-.0909.2583-.1961.3492.1052.0479.2296.0574.3444.0622.507 0 1.0859-.3205 1.0859-1.1242.1052.1388.1722.4354.1722.5693 0 .9711-.7128 1.3442-1.373 1.3442-.4305 0-.641-.1435-.6983-.1435-.1675 0-.158.3397-.2775.33-.2057-.0334-.3923-.4878-.3923-.971 0-.287.0766-.598.2392-.818h-.0048v.0095zM6.7116.201c0-.0526-.268-.1052-.6315-.1052-.5788 0-.4975.4831-.9424.4783-.464 0-.3492-.4975-.9376-.4975-.3588 0-.684.0622-.684.1436 0 .1004.421.0574.421.354 0 .3109-.8994.4018-.8994.5883 0 .0575.067.091.1578.091.1962 0 .5071-.091.732-.091.1243 0 .2391.024.2391.1436 0 .2248-.4831.6218-.4831.8036 0 .0574.0478.067.0909.0718.177 0 .4831-.4545.7654-.4545.4736 0 .1578 1.0046.421 1.0094.2678 0 .153-.9902.5357-.9902.311 0 .5501.684.7558.684.0527 0 .0957-.043.0957-.1052 0-.1866-.2679-.5693-.2679-.818 0-.1531.1053-.2249.2488-.2249.2057 0 .4784.1244.6267.1244.0526 0 .1052-.0191.1052-.0813 0-.2153-.7941-.4449-.7941-.7223C6.2763.33 6.7164.33 6.7116.2009zm2.0953.909c0 .1578.5597.5022.8228.507.153 0 .196-.2057.196-.421 0-.2679-.1147-.2774-.3491-.2774-.2966.0048-.6697.086-.6697.1913zm.928 1.7651c0-.5358-1.4447-1.5069-1.4638-1.923 0-.0383.0191-.0766.0526-.11C8.5725.5787 9.601.3922 9.601.1673c0-.1148-.2153-.1148-.3206-.1148-.8275 0-2.0426.3014-2.0426.598 0 .3061 1.0859 1.038 1.0859 1.4064 0 .1005-.0622.134-.1626.1387-.3014 0-.9616-.3635-1.2725-.3635-.1435 0-.1962.0956-.1962.2392 0 .421.5023 1.2342.5023 1.4733 0 .0288-.0095.0622-.043.0622-.1627 0-.9185-.8897-1.1864-.8897-.0957 0-.1052.134-.1052.33v.3014c0 .2057-.0096.33-.1053.33-.2296 0-.3396-.6505-.5597-.6505-.2296 0-.2774 1.1577-.4975 1.1529-.2583 0-.0335-1.2725-.287-1.2725-.2775 0-.5884.8467-.7845.8467-.0718 0-.091-.0717-.091-.134 0-.2582.1532-.6792.1532-.928 0-.1243-.0335-.196-.1436-.196-.2774 0-.885.4448-1.1146.4448-.0334 0-.0813-.0191-.0813-.0526 0-.2153.9711-.8898.9711-1.196 0-.2965-1.3394-.1004-1.3394-.4353 0-.287.952-.5788.952-.8754 0-.2583-1.1338-.3731-1.5691-.3731C.8372.0096.55.0718.55.2248c0 .2297 1.2007.3062 1.2007.5023s-1.239.7224-1.239 1.0237c0 .2632 1.7461.024 1.7461.2966 0 .3014-1.526 1.6122-1.526 2.0475 0 .1004.067.1387.1722.1435.464 0 1.6648-.8802 1.9948-.8802.1149 0 .1244.1387.1244.263 0 .2345-.0813.5885-.0813.8468 0 .2057.0574.3444.2296.3492.33 0 .6315-.5597.8563-.5597.287 0 .1148 1.6456.5501 1.6504.3636 0 .5167-1.7843.7463-1.7843s.421.5118.6267.5118c.2679 0 .1435-.8993.4305-.8993.311 0 1.2007 1.0763 1.5978 1.0716.1243 0 .1674-.1005.1674-.2249 0-.4736-.6602-1.5403-.6602-1.88 0-.0909.024-.1148.1244-.1148.3492 0 1.3586.4784 1.8418.4784.1817.0191.2774-.0718.2822-.1914zm-8.142-.5166c0 .177-.6792.775-.9184.775-.0909 0-.1148-.1053-.1148-.2058 0-.177.0813-.4257.177-.507.1148-.1053.3827-.1579.5884-.1579.1292 0 .2679.024.2679.0957zm6.5538.9185c0 .3061 1.1194 1.8417 1.325 1.837.177 0 .311-.311.311-.579 0-.0717-.0191-.1434-.0526-.196-.1626-.2249-1.2916-1.1147-1.5403-1.1147-.024-.0047-.0479.0192-.0431.0527zM23.5073.1722c-.445 0-.5215-.1387-.8228-.1387-.3636 0-.622.2487-.622.6219 0 .1244.0431.3205.0431.5788 0 .3157-.0622.6075-.3396.6075-.2535 0-.354-.1674-.354-.3635 0-.354.1866-.5932.1866-.8276 0-.4258-.5262-.5501-1.0764-.5501-.6601 0-1.373.177-1.373.2678 0 .1531.952.0622 1.6218.9185-.4353.0096-1.282.2057-1.282.3205 0 .1435 1.5164.3062 1.5164.9376.0048.4162-.3301.4593-.4593.464-.5022 0-.7701-.5118-.904-.5118a.0704.0704 0 00-.0718.0718c0 .0813.0717.2918.0717.5166 0 .5693-.6314.6315-.6314.7463 0 .043.0191.0622.0909.0717a9.153 9.153 0 001.3825.1053c1.612 0 2.9324-.5023 2.9324-1.9087 0-.775-.2392-1.0238-.2392-1.4017 0-.1244.0909-.3827.33-.5262zm-2.2867 3.0473c-.1004 0-.2152 0-.33-.0096 1.0428-.1674 1.6217-.7702 1.6217-1.5643.2344.067.3779.3062.373.5597 0 .464-.4448 1.0142-1.6647 1.0142zM22.6893.794c-.1292-.0048-.2297-.0957-.2297-.22 0-.1292.1053-.2201.2297-.2249a.2246.2246 0 01.2248.2248c0 .1244-.1005.2249-.2248.2201zm.5597 11.5814c-.4162 0-.6602.732-1.0668.775.2583-1.0716 1.3203-1.6217 1.3203-2.6215 0-1.1337-.952-1.5308-1.349-1.7843-.665-.9376-1.1386-1.6791-2.2053-1.6791-.4545 0-.7415.0813-1.0524.0813-.6028-.0048-.7894-.2344-.8324-.2344-.0096 0-.0191.0096-.0191.043 0 .8276.4353 2.7268 2.3535 2.7268 1.0238 0 1.4639-.3923 1.703-.3923.2584 0 1.086.2823 1.086 1.2294 0 .5262-.4162 1.062-.5693 1.062-.1483.0048-.3062-.2344-.3062-.488 0-.2822.1531-.7988.1531-1.1193 0-.1196-.0191-.177-.0909-.177-.1626 0-.928.4784-.928 1.0955 0 .5262.775.8467 1.0668.9998-.2918.4831-.4688.794-.6124 1.239 0-.335-.3205-1.019-.421-1.306-.4927-1.3395-.6649-1.5882-1.679-1.703.153.5358 1.8991 1.8274 1.8991 3.1477 0 .0813-.0095.1961-.0191.2392-.5262-1.5404-1.4303-1.8944-1.7604-2.2723-.5358-.5884-.2296-1.1577-1.086-1.4782.0527.0718.0718.1627.0718.2583 0 .2823-.1626.641-.1626.8898 0 .928 1.0907.6506 1.7221 1.1577.622.5023.9711 1.3203 1.2294 2.2292.2488-.397.3923-.8802.8372-.8802.287 0 .3827.3588.3827.6075 0 .0526 0 .1005-.0096.134.4258-.3636.6506-.952.6506-1.3443 0-.263-.0909-.4353-.3061-.4353zm-1.66-3.4969c-.0909 0-.2631-.0478-.378-.0478-.306 0-.5213.421-.6792.421-.0574 0-.0813-.0527-.0813-.1005 0-.1722.3013-.378.3013-.4927 0-.0814-.1291-.1053-.1817-.1053-.3062 0-.732.4162-.9711.4162-.043 0-.1005-.024-.1005-.0813 0-.1148.3205-.2775.3205-.4019 0-.11-.1387-.1339-.2296-.1339-.1483 0-.4449.0813-.6315.0813-.1004 0-.1817-.0191-.1817-.1004 0-.1818.5788-.0622.5788-.2775 0-.1052-.1818-.3014-.1818-.4018 0-.0383.0478-.067.0909-.067.2057 0 .421.5597.6602.5597.1052 0 .1339-.0813.1339-.1961s-.024-.1722-.024-.2727c0-.1052.0431-.134.0766-.134.1483 0 .2823.8037.6937.8037.1817-.0048.0526-.4927.2152-.4927.1005 0 .1244.1435.134.2248.043.5262.5166.5454.5166.732 0 .019-.0287.067-.0813.067zM17.0062.0574c-.598 0-1.0333.2918-1.2677.2918-.1387.0096-.354-.3492-.464-.3492-.043 0-.091.0909-.091.2392 0 .1004 0 .4114-.1052.4114-.2152 0-1.0428-.6123-1.0428-.3923 0 .2057.5501.8324.5501.995s-.5453.311-.5453.421c0 .1961.5836.2296.5836.4832 0 .2487-.6076.4449-.6076.6266 0 .1483.6076.0479.6076.2297 0 .1865-.445.8132-.445.9902 0 .0478.0097.0478.048.0478.1674.0048.6792-.5788.7988-.5788.1435 0 .1722.3444.1961.555.0192.1004.0335.1147.0814.1147.1052 0 .2774-.4114.3922-.4114.1675 0 .6267.4688 1.3825.4736 1.0764 0 2.0953-.7558 2.0953-2.0953 0-1.2916-.9089-2.0522-2.167-2.0522zm-1.526 2.875c-.0287 0-.043-.0335-.043-.0813l-.0192-.354c0-.0335-.0192-.0717-.0622-.0717-.1053 0-.311-.0096-.3731-.0096-.043 0-.0622-.0096-.0622-.0287.0095-.067.3635-.3205.3683-.378 0-.1004-.3492-.287-.3492-.3922 0-.0191.0191-.0287.043-.0287.1005 0 .2632.0335.4019.0335.1148 0 .134-.4975.22-.4975.0622 0 .1723.4688.2631.4688.1149 0 .3301-.134.421-.134.0192 0 .0335.0096.0335.0287 0 .0622-.2248.3014-.2248.378 0 .0813.5023.1817.5023.2487 0 .0909-.5071.0813-.5071.1627 0 .0574.1818.3061.1818.3874 0 .0192-.0096.0287-.0287.0287-.0718 0-.3493-.1243-.4306-.1243-.1004 0-.2583.3635-.3348.3635zm1.5451.7702c-.6267 0-1.0333-.311-1.0333-.4736 0-.0813.0526-.134.1244-.134.1961 0 .6267.2967.7654.2967.0335 0 .0622-.0192.0622-.0718 0-.1626-.153-.4257-.153-.5597 0-.0335.0286-.0622.0812-.0622.2392 0 .5932.1005.7893.1005.0622 0 .0814-.0335.0814-.0718 0-.1961-.5789-.5788-.5789-.6936 0-.1053.7224-.2679.7224-.4353 0-.177-.9807-.0527-.9807-.2249 0-.1243.1866-.3396.1866-.4353 0-.043-.0335-.0622-.0957-.0622-.0813 0-.507.1675-.6888.1675-.091 0-.1962-.0192-.1962-.1436 0-.2057.3492-.4257.8946-.4257.8802 0 1.4064.6075 1.4064 1.6217-.0048 1.2868-.8993 1.6073-1.3873 1.6073zm-6.037 15.4228c0 .0813-.0288.1674-.1005.2583-.0957-.177-.3732-.2679-.4975-.2679-.9185 0-.5693 1.3299-1.55 1.3299-.4114 0-.4448-.0526-.598-.0526-.0621 0-.1004.0287-.1004.0813 0 .2296.33.7989 1.2438.8037.9185 0 1.7987-.5597 1.7987-1.2582 0-.1148-.0287-.2392-.0814-.3635.0335-.0527.1244-.091.2057-.091.1436 0 .2153.158.354.1627.1436 0 .2488-.1052.2488-.2487 0-.1148-.0622-.1962-.1674-.2488.0717-.0526.1243-.1435.1243-.2392 0-.153-.1052-.2918-.287-.2918-.0813 0-.134.0287-.1961.0861-.0191-.1578-.1053-.311-.2775-.311-.134 0-.2344.0958-.2344.2536.0192.1244.1148.2392.1148.397zm-2.8703-.6458c-.0622 0-.1435.0095-.2296.0095-.0813 0-.1962-.0191-.268-.0813-.1434-.1244-.1865-.794-.4544-1.196-.2918-.4448-.6123-.5692-1.0524-.5692-.311 0-.6601.1674-.6601.421 0 .153.086.2583.6505.4066.7128.1818 1.0764.5597 1.1434 1.0142.0717.4353.1578.7893.33.971.2249.2536.665.4689 1.0381.4689.3205 0 .5788-.1053.5788-.4019 0-.3205-.4353-1.0428-1.0763-1.0428zm.4736.9806c-.2679 0-.6697-.287-.6697-.4449 0-.1339.1243-.2057.2248-.2057.2248 0 .6267.2727.6267.5071-.0048.0622-.0479.1388-.1818.1435zm2.1335-3.9226c-.4114-.1483-.5932-.3875-.6745-.8563-.2009.2727-.2966.531-.2966.684 0 .6028.8276.6124.8276 1.0142-.0048.2344-.421.4736-.971.4784-.6411-.0048-1.0716-.1053-1.4735-.507-.1052-.1149-.153-.2154-.287-.2154-.153 0-.2153.268-.2153.5071 0 .8754.8324 1.9087 1.99 1.9087 1.4448-.0048 2.0045-.9998 2.0045-1.8034 0-.4688-.11-.9137-.9042-1.2103zm-.4257 2.4397c-.1148 0-.1387-.0718-.1387-.1722 0-.0814.0287-.2344.0287-.3492 0-.3158.1196-.2919.4257-.4306h-.0048c.2153-.1004.2966-.2344.3636-.2344.0813 0 .153.0526.153.177 0 .464-.507 1.0094-.8275 1.0094zM7.7736 12.519c0-.5692 1.3538-.8754 1.3538-1.5786 0-.1148-.043-.3205-.1244-.4736.4736.2631.8228.6984.8228 1.0524 0 .6171-.641.8994-.641 1.282 0 .445.684.512.684 1.0716 0 .4545-.6505.9807-.6505 1.5691 0 .4592.3205.8324.8132.8898-.1627.0335-.3014.0622-.4545.0622-.8993 0-1.8274-.7415-1.8274-1.6217 0-.4353.1866-.818.4736-1.0955.2488.2153.5023.354.665.354.1435 0 .2057-.0718.2057-.177-.0096-.3253-1.3155-.6362-1.3203-1.3347zM5.219 16.2743c-.0335-.3205-.3253-.5597-.622-.5215-.1147.0144-.2248.0574-.2965.1196-.0813-.2679-.3301-.4975-.6745-.4449-.311.0527-.5167.3158-.4832.6506.0048.0574.024.1148.0478.177 0 0-.0526.0096-.0908.0144-.2584.0478-.5454.311-.4975.6506.0382.3061.3205.5358.641.4975.1148-.0144.2248-.043.2966-.091.0717.2871.3061.4689.6266.4258.3301-.043.5502-.3013.5167-.6314-.0096-.0909-.0287-.1435-.0526-.2057 0 0 .043-.0048.0765-.0096.3205-.0622.5406-.3205.5119-.6314zm-1.2486.6697c-.1866.024-.354-.11-.378-.2966s.1101-.354.2967-.378c.1913-.0238.3588.1149.3779.2967.024.1865-.11.354-.2966.3779z" }) + ] + } + ); +}); + +exports.default = SiUnilever; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.d.ts new file mode 100644 index 000000000..e4369aa0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F36C7"; +declare const SiUnilever: IconType; +export { SiUnilever as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.mjs new file mode 100644 index 000000000..3812a505e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnilever.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F36C7"; +const SiUnilever = React.forwardRef(function SiUnilever2({ title = "Unilever", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.436 6.6255c.1147.8467 1.392 1.99 1.746 1.9613.2344-.0191.3205-1.105.3205-1.9613 0-.488.0287-.8754-.2296-.9616-.4114.8276-1.4878.995-1.837.9616zm.0717-.378c.928 0 1.7747-.7414 1.7747-1.392 0-.3014-.1435-.555-.507-.598.0622.0813.0909.1388.0909.287 0 .4928-.7463 1.0333-1.5595 1.0333-.2966 0-.3827.2057-.3827.311-.0048.2583.2344.3588.5836.3588zm-.1962-1.0045c-.1243 0-.3013 0-.4018-.1962-.0335-.0621-.0478-.1387-.0622-.22-.0239-.1244-.0478-.2488-.1435-.3157.153.0478.3062.0478.4353.0478.4019 0 .7846-.2775 1.0811-.2775.1962 0 .2536.1244.2536.2488.0096.3923-.7893.7128-1.1529.7128h-.0096zM1.373 12.232c.3014 0 .2392-1.856.732-1.856.1148 0 .1482.1147.1482.263 0 .421-.2057 1.0333-.2057 1.373 0 .1722.0479.2296.1244.2248.2153 0 .5884-2.0427.952-2.0427.1148 0 .1722.1149.1722.2344 0 .4258-.5454 1.66-.5454 2.0044 0 .0574.024.1005.0575.1005.2248 0 .6697-.9615.8132-1.4447.0813-.2488.1866-.3827.287-.3827.0909 0 .1722.1005.1722.3062 0 .4831-.4449 1.612-.8371 2.3727-.3014.5884-.775 1.4351-.775 1.9087 0 .2392.0478.4927.3875.7893-.5693-.0335-.8037-.0909-1.0142-.5358-.952 1.8944 1.7605 1.7126.8324 3.3965-.1674-.3014-1.5069-.6123-1.5069-2.3775 0-1.526 1.3347-2.4158 1.3347-3.0473 0-.1243-.043-.2296-.1579-.33-.2966-.2488-.3013-.4545-.5358-.4545-.1674 0-.373.3923-.1626.7415.0718.1148.1387.1818.1387.2966 0 .2487-.3922.9185-.6697.9137-.2774 0-.488-.6841-.488-1.7891 0-.9807.2249-1.971.4976-1.971.0813 0 .1004.0575.1004.1244 0 .1148-.0335.3492-.0335.7415.0048.4162.0957.4497.1818.4401zm2.2723 2.612c.3731 0 .684-.2775.684-.8898v-.909c0-.3492.0288-.7414.2584-1.0141-.0287.1148-.0287.2392-.0287.354 0 .7654.421 1.2916.421 2.033 0 .2775-.0814.4258-.2918.421-.2057 0-.1866-.1865-.2344-.1865-.0335 0-.091.1148-.091.2392 0 .1817.1388.4783.5024.4831.3205 0 .5788-.2918.5788-.6219 0-.8036-.6219-1.6934-.6219-2.5497 0-.3731.1005-.6219.177-.818 0 1.77 1.5069 3.0616 1.5069 3.803 0 .1675-.1244.3014-.311.3014-.2057 0-.3013-.1626-.3013-.287 0-.0622-.0096-.0813-.0335-.0813-.0526 0-.2153.177-.2153.4114 0 .2966.2392.6506.684.6506.5072 0 .7846-.4306.7846-.8133 0-.9376-1.8274-2.3536-1.8274-3.87 0-.2583.043-.6793.2296-.9998-1.1768.7558-1.5403 1.7652-1.5403 2.6502 0 .7654-.0287 1.148-.421 1.148-.2057 0-.2583-.1865-.33-.1865-.0527 0-.0814.1627-.0814.2057.0096.3349.244.5167.488.5167h.0143v.0095zM19.8334 4.6401c-.1722 0-.4545.1866-.6793.1866-.2823-.0048-.201-.3588-.5119-.3588-.067 0-.1483.0191-.2296.0622-.6458.3253-1.1481.201-1.263.2775-.0286.0143-.0525.0382-.0621.0908 0 .6698.7128 1.703 1.8991 1.703.8133 0 1.4974-.2774 1.4974-.7319 0-.397-.3827-1.2294-.6506-1.2294zm-.7415 1.3012c-.6554 0-1.086-.354-1.0811-.5884 0-.0287.0191-.0478.0526-.0478.1052 0 .3923.1435.7654.2057.4353.0717.6697.0813.7845.0813.1148 0 .1674.0287.1674.0622 0 .11-.2965.287-.6888.287zM3.8318 18.2069c-.2918.0718-.7654.5358-.7654 1.2677 0 .8706.9376 2.2149 2.478 2.2149 1.3011 0 1.6216-.8994 1.6216-1.507 0-1.3441-.8276-2.2913-1.9087-2.2913-.5884 0-1.1146.4305-1.1146 1.062 0 .5931.4449 1.4733 1.5069 1.4733.4975 0 .794-.3587.794-.7653 0-.4019-.3635-.952-.8993-.952-.1626 0-.2774.1052-.2774.2774 0 .2153.2966.421.665.4258.0908 0 .1626-.0191.196-.0335.0192.024.024.067.024.1053 0 .2057-.1962.33-.4975.33-.4545 0-.8898-.3396-.8898-.8754 0-.3205.2775-.5501.6793-.5501.794 0 1.2677.708 1.2677 1.4064 0 .6315-.3492.9998-1.062.995-1.4351.0048-2.124-1.2868-1.8178-2.5832zm11.0552 2.8368c-.091-.1723-.0192-.4689-.287-.4689-.1818 0-.1962.1436-.2153.2584-.3875-.11-.708-.1675-.995-.1675-.2057 0-.3827.0287-.5358.0814-.1005-.1818-.5406-.5262-.9233-.6506-.1483.8036-.8706 1.435-1.9422 1.526-.0621.5262-.4736.6601-.794.6601-.2297.0048-.598-.0765-.6172-.1674-.1243-.7558-.6984-1.1816-.9471-1.282.0095.0813.019.1674.019.2487 0 .641-.44 1.0429-1.258 1.0429-.1244 0-.2966-.0096-.421-.0335.9376 1.0428 1.6073.6601 2.0427.8563C8.582 23.2059 9.046 24 10.8734 24c.665 0 1.3443-.2583 1.7891-.5453.0814.2678.3588.507.8133.507.775 0 1.2103-.2392 1.2103-.4353 0-.0526-.0048-.134-.1388-.134s-.1148.0336-.5405.0336c-.4928-.0048-1.2964-.1962-1.6743-1.0573-.067-.1435-.1722-.1435-.2057-.1435-.2488 0-.6315.885-2.2006.885-.6553.0048-.9615-.244-.9615-.3013 0-.0096 0-.0192.0335-.0192.0622 0 .3062.0287.6075.0287.9903 0 1.7892-.4544 2.2723-.9806.1674-.1866.2488-.2153.3923-.2153.1244 0 .2583.11.3205.2774.22.5693.7271 1.0238 1.282 1.0238.751 0 .7606-1.282.9376-1.3443a.344.344 0 00.1053.0192c.0909 0 .2344-.067.2344-.2344 0-.1818-.22-.2297-.2631-.3205zm-1.215.9615c-.1962-.0048-.354-.1627-.354-.3588 0-.201.1578-.3588.354-.3588.196 0 .3587.1627.3587.3588a.3583.3583 0 01-.3588.3588zm6.4245-5.1808c-1.3108 0-.9711 1.148-2.502 1.4973-.2822.0622-.3635.153-.3635.2775 0 .2344.1292.5357.2918.5357.665 0 1.703-1.3825 1.8896-1.3825v-.009c.0784.0046.1577.0117.153.1956 0 .5023-1.4446 1.1577-1.4446 1.5165 0 .2152.5118.6697 1.0094.6697.7223.0048 1.3681-1.4734 1.5212-1.4734.1196 0 .1626.086.1626.177 0 .4018-.488 1.1863-1.3442 1.526-.177.0717-.2057.153-.2057.2153 0 .1961.2248.4879.4305.4879.2488 0 1.9231-1.459 1.9231-2.6358 0-1.105-.7989-1.5978-1.5212-1.5978zm.6027 1.2677a.5738.5738 0 01-.263-.067c-.1149-.0526-.3206-.2248-.3206-.488 0-.2391.134-.3396.2583-.3396.3827 0 .7846.3397.7893.6076 0 .2152-.2057.287-.464.287zM3.7265 6.8742c0 .1962.1579.354.354.3588.1962 0 .354-.1626.354-.3588 0-.1961-.1626-.354-.354-.354-.1913.0048-.3588.1627-.3588.354h.0048zm-.464-.7989c0 .1962.1579.354.354.354.1961 0 .3588-.1626.3588-.3587 0-.1962-.1627-.3588-.3588-.3588s-.354.1722-.354.3635zm-.3205 2.435c-.2057.0526-.6315.3013-.6315.7462 0 .3205.2536.5262.5597.5262.1627 0 .2775-.0334.3493-.0909-.2488-.2391-.3397-.507-.3397-.775 0-.177.0287-.2917.0622-.4065zm-2.1862.1291c-.0095.043-.0095.091-.0095.134 0 .421.2152.6506.5118.6506.22 0 .4832-.134.7128-.4258-.0957.0191-.2153.0287-.3205.0287-.3205 0-.684-.0909-.8946-.3875zm-.311.799c0 .6744.2058.995.5694.9997.287 0 .6697-.2057 1.1241-.598-.3492.0814-.617.134-.8563.1388C.9615 9.974.7176 9.8497.445 9.4383zm2.3106-3.5688c.043-.1435.0814-.3205.0814-.5166 0-.4258-.1962-1.0763-.8037-1.0763-.3492 0-.598.2774-.598.6075 0 .708.708.9902 1.3203.9854zm.4497.8994c-.1148-.153-.0718-.2918-.1435-.3636-.043-.043-.1674-.043-.33-.0622a2.2396 2.2396 0 00-.1962-.0095c-.2918 0-.641.0382-1.0333.287-.7702.488-.6602 1.3107-.7798 1.5117-.0143.0287-.0287.0621-.0287.1004 0 .0813.091.1722.1723.1674.0717 0 .1148-.0191.153-.0191.2153 0 .4593.1483.799.153.2056 0 .4448-.0621.7462-.2152.641-.3205.8898-1.1146.8898-1.2485 0-.1675-.134-.1483-.2488-.3014zM1.9948 8.118c-.2918 0-.6123-.3636-.6123-.6936 0-.177.134-.4019.2296-.4019.0335 0 .0574.024.0574.091.0526.4352.3445.684.6076.8131.0287.024.0478.024.0478.0431 0 .0526-.1674.1435-.33.1483zm.8372-.5501c-.311 0-.5597-.4736-.5597-.7415 0-.1674.1004-.1866.2296-.1866.0622 0 .0909.0096.1387.0335.0766.043.0766.2153.177.354.0622.0813.2296.1818.2296.2535 0 .1244-.0717.287-.2152.287zm.8515.2105c-.1962.2296-.4019.6218-.4019 1.0285 0 .4783.2966.8802.7559.8802.4353 0 .641-.3732.641-.7559-.0048-.6027-.5454-1.0237-.995-1.1528zM1.7748 6.0658s-.2584.1961-.5789.1961c-.3827 0-.684-.287-.684-.684 0-.2775.1435-.5598.4735-.7033-.0095.0526-.0095.0957-.0095.1531-.0048.5023.2774.8898.7989 1.038zM17.4893 9.022c0 .2057.1722.378.378.3732.2056 0 .373-.1675.373-.3732s-.1674-.3731-.373-.3731c-.2105 0-.378.1722-.378.3731zm.024 1.1242c0 .2296.1817.421.421.421a.4216.4216 0 00.4209-.421.4216.4216 0 00-.421-.421c-.2296.0096-.421.1914-.421.421zm-1.282.7606c0 .3444.2726.6171.617.6171.3397 0 .6171-.2774.6171-.617s-.2774-.6172-.617-.6172c-.3397.0048-.6172.2775-.6172.6171zm.33-1.2629c0 .1961.1579.354.354.3588.1961 0 .3588-.1627.3588-.3588s-.1627-.3588-.3588-.3588c-.1914 0-.3492.1627-.3492.3636l-.0048-.0048zm-1.1672.7176c0 .1961.1578.354.354.354s.3587-.1579.3587-.354-.1626-.354-.3587-.354c-.1914 0-.3493.1626-.354.354zm.9184-2.0905c0 .3061.2631.5692.5693.5692s.5693-.2583.5693-.5692-.2584-.5693-.5693-.5693c-.311 0-.5693.2631-.5693.5693zm.665-1.0907c0 .1818.1483.3444.3444.3396a.341.341 0 00.3397-.3396.341.341 0 00-.3397-.3397c-.1913.0048-.3492.1531-.3444.3397zm-1.6121.8563c0 .1818.1483.3444.33.3396a.341.341 0 00.3397-.3396.341.341 0 00-.3397-.3397c-.177.0048-.33.1531-.33.3397zm-.0431 1.1624c0 .3062.2392.5502.5358.5454a.542.542 0 00.5453-.5454.542.542 0 00-.5453-.5453c-.2966-.0048-.5406.2344-.5358.5453zm-1.1242.5645c0 .2727.2296.5023.5023.507.2775 0 .507-.2295.507-.507 0-.2775-.2343-.507-.507-.507-.2679 0-.5023.2248-.5023.507zm.3014-1.2581c0 .1961.1579.354.354.354s.3588-.1627.3588-.3588-.1627-.3588-.3588-.3588c-.1914-.0048-.3492.1579-.3492.3588h-.0048v.0048zm3.1333 2.7506c0-.177.1627-.33.335-.33.196 0 .3443.1482.3443.33 0 .2057-.153.3492-.3492.3445a.3312.3312 0 01-.33-.3445zm.3014 9.3666c.0718-.0622.091-.1627.091-.2583v-.2057c0-.2584-.3924-.4114-.9281-.4114-.6506 0-.9998.2918-.9998.4161v.4114c0 .1723.3875.3445.8802.3445.3779 0 .7271-.1005.9567-.2966zm.4638.0958c-.2297.1771-.775.5787-1.674.5835-.4832 0-.6937-.1531-.7655-.1531-.0909 0-.1865.0909-.287.2057-.2105.2487-.488.7128-.488 1.2246 0 .354.2727.708.7894.7128 1.6695 0 2.9133-1.0428 2.9133-1.8896.0047-.4796-.2828-.6856-.4882-.6839zm-.8417 1.6359c-.2248.153-.5262.2774-.971.2822.0717-.2152.1243-.4353.1243-.6506 0-.0717-.0096-.1243-.0191-.2057h.1148c.6984-.0047 1.0045-.2822 1.0572-.2774.043 0 .1004.024.1004.1866 0 .196-.0909.4544-.4066.6649zm1.1529-9.1322c0 .2153.067.4784.2966.4832.1865 0 .3492-.287.3492-.598 0-.3587-.0622-.6314-.0622-.775 0-.0621.0287-.0908.0622-.0908.134.0095.2631.3779.4018.3779.1627 0 .4019-.2966.4975-.2966.0287 0 .0335.0335.0335.043 0 .134-.2057.4306-.2057.5502 0 .1004.5119.1148.5119.2057 0 .134-.5406.134-.7989.2487-.2488.1053-.4018.2392-.4018.421s.1817.2153.4353.2153c.598 0 1.0141-.3205 1.148-.3205.0288 0 .048.0239.048.043 0 .091-.3015.3827-.3015.5119 0 .1483.5502.33.5502.421-.0096.0286-.043.0334-.1053.0334-.1004 0-.2487-.0287-.3683-.0287-.0718 0-.134.0096-.1627.043-.0622.067.024.5454-.1052.5454-.1148 0-.421-1.0524-1.105-1.0524-.1005 0-.1675.0813-.1675.2153 0 .354.3444.7654.6745.9615.1483.1005.4019.1961.4019.2535 0 .1053-.5693.0096-.5693.1866 0 .1579.067.4018.067.5454 0 .043-.0096.0956-.0622.1004-.1053 0-.3684-.488-.4927-.488-.1053 0-.3397.2919-.4354.2919-.0239 0-.043-.0287-.043-.0526 0-.2057.33-.6698.33-1.1242 0-.2153-.0286-.6793-.287-.6793-.2152 0-.4544.3396-.5597.6745-.0622.1961-.0191.952-.1626.952-.134 0-.1005-.5071-.2775-.5071-.134 0-.4162.2392-.5166.2392-.0191 0-.0335-.0096-.0335-.0287 0-.1053.2583-.4545.2583-.5262 0-.134-.5884-.1531-.5884-.2584 0-.0622.2296-.1052.445-.1435.4544-.0813 1.124-.4114 1.124-.8754 0-.5166-.4974-.7415-.8275-.952-.1674-.1052-.3588-.1961-.3588-.2679 0-.0717.2153-.0717.3014-.0717.134 0 .2679-.0096.2679-.1148 0-.0813-.0191-.2392-.0191-.3636 0-.0909.0095-.1626.043-.1626.134 0 .3205.4353.4114.4353.1435 0 .3397-.3588.4736-.3588.043 0 .0574.024.0574.1053-.0048.3348-.1722.7127-.1722 1.0332zm-4.2528-2.607c.1005.7557 1.1194.3778 1.1194 1.2915 0 .134-.0334.3301-.0334.4975 0 .1962.0239.3636.1722.3636.153 0 .1865-.1053.1865-.2488s-.0335-.3205-.0335-.421c0-.3109.2249-.3826.3588-.3826.3397 0 .5932.3444 1.1099.3492-.1149.5692-1.2917.421-1.2917 1.0428 0 .3062.3062.3875.512.3875.1865 0 .2487-.0287.2487-.1865 0-.091-.0192-.1866-.0192-.2488 0-.0335.0287-.0718.0718-.0718.1961 0 1.1529.732 1.1529.952 0 .2057-1.0142.4114-1.3108.4114-.0909 0-.1052-.0622-.1052-.0957 0-.0622.153-.2487.153-.3587 0-.0814-.1339-.134-.4927-.134-.1674 0-.2966.0191-.2966.153 0 .2393.3875.5359.3875.756 0 .177-.1052.287-.3922.287-.2392 0-.6028-.1866-.6028-.4976 0-.2487.2583-.4975.2583-.6506 0-.043-.0335-.1148-.1387-.1148-.33 0-.421.8755-1.5882.9711.1866-.1674.3492-.3587.3492-.7414 0-.1866-.043-.3397-.043-.5454 0-.2679.1243-.4018.3013-.4018.3301 0 .4928.4688.708.4688.1148 0 .2392-.1053.2392-.268 0-.6792-1.3012-.5787-1.3012-1.5307-.0095-.2679.0861-.5884.3205-1.0333zm2.9947 5.5538c.0622.1005.0909.1962.0909.287 0 .2488-.1675.4832-.1675.7415 0 .2966.2296.5358.5597.5358.3636 0 .6171-.2918.6171-.641-.0048-.4784-.4353-.8802-1.1002-.9233zm-2.9516.5693c.0909.0909.1148.1818.1148.2679 0 .134-.0622.2774-.0622.4257 0 .2153.1579.4019.3875.4019.2488 0 .421-.1962.421-.4258.0048-.3348-.3397-.6697-.8563-.6697h-.0048zm.2153-1.0524c.4114.0574.5118.1961.5118.311 0 .196-.177.2582-.3492.2582-.1244 0-.2679-.0287-.421-.0287-.196 0-.3922.043-.5549.2296.1148.024.287.1005.287.2775 0 .5166-1.435.0909-1.435 1.416 0 .708.7318 1.4734 1.8417 1.4686.5692 0 .9376-.1866.9376-.4018 0-.1675-.3014-.0527-.3014-.1962 0-.0622.1053-.177.1053-.2774 0-.043-.0335-.1244-.1053-.1244-.1626 0-.464.2583-1.0811.2631-.4832 0-.952-.2775-.952-.6506 0-.0813.0335-.1244.091-.1244.0525 0 .1243.0335.1817.0335.0526 0 .0622-.0335.0622-.134s0-.373.1674-.373.4927.6266 1.727.6266c.4066 0 1.2007-.0813 1.4973-.3492-.0096.9807-.775 2.2723-2.3823 2.2723-1.6648 0-2.5593-1.3395-2.5593-2.5689 0-1.3633 1.1146-2.6023 2.6406-2.6023.3922 0 .7175.1387.7175.3013 0 .2488-.5836.1005-.6266.3732zm.971-.4688c.1244.1483.1675.311.1627.4544 0 .3827-.2918.775-.2918 1.1481 0 .5023.33.8132.7845.8132.4975 0 .7846-.421.7846-.8754 0-.6601-.5023-1.3586-1.44-1.5403zm.6794 1.4112c-.1244-.0096-.2153-.1005-.2153-.2249 0-.067.043-.177.0574-.263.0191-.1197-.0096-.225.0622-.225.1626 0 .33.2584.33.445 0 .1435-.0908.2679-.2343.2679zM8.9504 5.5109c-.4545.0095-.8755.3827-1.1625.8897a1.697 1.697 0 00.0287-.3061c0-.6937-.3731-1.3203-1.0763-1.3203-.5693 0-1.086.33-1.3012.971.0622-.067.2488-.1817.4018-.1817.177 0 .2297.153.2297.3923 0 .1626-.0383.3492-.1005.5262-.11.2918-.3062.3827-.4114.3827-.4449 0-.244-.732-.4688-.732-.1866 0-.2392.3923-.2392.5454 0 .507.33 1.0428 1.062 1.0428.775 0 1.215-.3683 1.6887-.8658.0908.5358.3827 1.4542 1.1672 1.4542.4257 0 .7319-.354.7654-.7653-.0574.0526-.134.0956-.2249.0956-.1626 0-.196-.2296-.196-.4353 0-.33.0956-.684.2487-.684.0813 0 .1243.0526.1435.2917.0143.1866 0 .3923.1148.3923s.1866-.3683.1866-.6171c0-.574-.268-1.0763-.8563-1.0763zM6.3097 7.233c-.0765 0-.0956-.0717-.1004-.134 0-.3491.3827-1.9086.6601-1.9086.067 0 .091.0526.091.1243 0 .2775-.3493 1.9183-.6507 1.9183zm1.1864-.665c-.2296.2584-.354.3636-.4544.3636-.0527.0048-.1053-.086-.1053-.1913 0-.1914.134-.9041.4018-.9041.1053 0 .177.196.177.373 0 .134 0 .244-.019.3589zm.5214.6172c-.0909.0048-.1387-.1435-.1578-.464.1435-.2392.2392-.3445.33-.3445.0383 0 .0718.0335.0718.1866v.0048h.0048c0 .311-.1483.6219-.2488.617zm.4784.5405c-.0574 0-.1004-.0813-.0957-.2679 0-.4831.311-1.3633.4975-1.3633.0527 0 .0718.1244.0718.2392 0 .5357-.2488 1.392-.4736 1.392zm-1.215.1866c-.3828 0-.4019.464-.4019 1.4016-.287-.617-.7558-1.2724-1.3107-1.2724-.3732 0-.5167.2487-.5167.684 0 .091.0096.2297.024.3014.043-.153.1865-.2153.3635-.2153.3827 0 .8467.2966 1.1529.6937-.3492-.0622-.6889-.1244-.9711-.1244-.177 0-.3397.0191-.4736.0813-.2583.1148-.6075.4975-.6075 1.0764 0 .0909.0095.1818.0239.2918.311-.6937 1.1385-1.0094 1.6743-1.0094.1052 0 .1818.0096.2535.0191-.2774.2488-.3396.6841-.3588.9807-.0095.1435-.0621.153-.1626.1483 0 .2966.2296.732.2296.952 0 .0813-.043.153-.0909.1674 0 .3875.3875.6745.3875.9233 0 .0621-.0191.1148-.043.1435.0287.1578.4592.4353.5118.5645.067.1578.1483.196.1962.196.153 0 .3922-.177.3922-.3396 0-.0526-.043-.1148-.0813-.1435-.1674-.1243-.2583-.3922-.33-.5692-.0623 0-.1436-.024-.1723-.1292-.0478-.1866-.0526-.5262-.1244-.732-.1148-.0286-.1674-.0717-.1674-.3109 0-.1148.0718-.5692.0718-.7319-.0527 0-.1244-.0334-.1244-.1435 0-.287.287-.507.3635-.8754.5071.378.6267.7558.6267 1.0955 0 .177-.0287.3492-.0622.507.3732-.1865.9376-.464.9376-1.0237 0-.33-.153-.6936-1.1576-.8371.311-.1148.7032-.177 1.0333-.177.5692 0 .904.1818.971.5836.1149-.177.2058-.3827.2058-.5693 0-.4353-.3636-.7223-.8276-.7223-.5454 0-1.0238.287-1.5404.6267.2344-.4832.3923-.7654.6793-.7654.043 0 .0909.0095.1387.0191-.0957-.3827-.5023-.7702-.7128-.7654zm15.0209 6.4246c.4449 0 .7989.5836.7989 1.258 0 .7224-.3397 1.507-.9424 2.0475-.0096-1.2007-1.483-.818-1.483-1.6934 0-.3732.2679-.622.5884-.622.287 0 .5023.0814.6745.2393-.1626-.1531-.2392-.3636-.2392-.5693-.0048-.3492.2105-.6601.6028-.6601zm-6.616-9.1178c-.0717-.1149-.3396-.177-.464-.177-.3922 0-.6601.2774-.7127.5262-.0335-.091-.0622-.1962-.0622-.3014 0-.3923.2679-.8754.9185-.8754.5692 0 .7893.2966.8706.2966.0909 0 .177-.091.2488-.091.0956 0 .1004.1484.1004.2584 0 .354-.1626.971-.5645 1.2007-.0717-.153-.2152-.3205-.4449-.4257-.0621-.0287-.0908-.0814-.0908-.134.0047-.1052.0956-.2296.2009-.2774zm-1.3442.6505c.2297.2297.4354.3206.6841.3206.1005 0 .2153-.0287.2775-.0287.0813 0 .1387.0334.1387.1004 0 .1005-.0909.2583-.1961.3492.1052.0479.2296.0574.3444.0622.507 0 1.0859-.3205 1.0859-1.1242.1052.1388.1722.4354.1722.5693 0 .9711-.7128 1.3442-1.373 1.3442-.4305 0-.641-.1435-.6983-.1435-.1675 0-.158.3397-.2775.33-.2057-.0334-.3923-.4878-.3923-.971 0-.287.0766-.598.2392-.818h-.0048v.0095zM6.7116.201c0-.0526-.268-.1052-.6315-.1052-.5788 0-.4975.4831-.9424.4783-.464 0-.3492-.4975-.9376-.4975-.3588 0-.684.0622-.684.1436 0 .1004.421.0574.421.354 0 .3109-.8994.4018-.8994.5883 0 .0575.067.091.1578.091.1962 0 .5071-.091.732-.091.1243 0 .2391.024.2391.1436 0 .2248-.4831.6218-.4831.8036 0 .0574.0478.067.0909.0718.177 0 .4831-.4545.7654-.4545.4736 0 .1578 1.0046.421 1.0094.2678 0 .153-.9902.5357-.9902.311 0 .5501.684.7558.684.0527 0 .0957-.043.0957-.1052 0-.1866-.2679-.5693-.2679-.818 0-.1531.1053-.2249.2488-.2249.2057 0 .4784.1244.6267.1244.0526 0 .1052-.0191.1052-.0813 0-.2153-.7941-.4449-.7941-.7223C6.2763.33 6.7164.33 6.7116.2009zm2.0953.909c0 .1578.5597.5022.8228.507.153 0 .196-.2057.196-.421 0-.2679-.1147-.2774-.3491-.2774-.2966.0048-.6697.086-.6697.1913zm.928 1.7651c0-.5358-1.4447-1.5069-1.4638-1.923 0-.0383.0191-.0766.0526-.11C8.5725.5787 9.601.3922 9.601.1673c0-.1148-.2153-.1148-.3206-.1148-.8275 0-2.0426.3014-2.0426.598 0 .3061 1.0859 1.038 1.0859 1.4064 0 .1005-.0622.134-.1626.1387-.3014 0-.9616-.3635-1.2725-.3635-.1435 0-.1962.0956-.1962.2392 0 .421.5023 1.2342.5023 1.4733 0 .0288-.0095.0622-.043.0622-.1627 0-.9185-.8897-1.1864-.8897-.0957 0-.1052.134-.1052.33v.3014c0 .2057-.0096.33-.1053.33-.2296 0-.3396-.6505-.5597-.6505-.2296 0-.2774 1.1577-.4975 1.1529-.2583 0-.0335-1.2725-.287-1.2725-.2775 0-.5884.8467-.7845.8467-.0718 0-.091-.0717-.091-.134 0-.2582.1532-.6792.1532-.928 0-.1243-.0335-.196-.1436-.196-.2774 0-.885.4448-1.1146.4448-.0334 0-.0813-.0191-.0813-.0526 0-.2153.9711-.8898.9711-1.196 0-.2965-1.3394-.1004-1.3394-.4353 0-.287.952-.5788.952-.8754 0-.2583-1.1338-.3731-1.5691-.3731C.8372.0096.55.0718.55.2248c0 .2297 1.2007.3062 1.2007.5023s-1.239.7224-1.239 1.0237c0 .2632 1.7461.024 1.7461.2966 0 .3014-1.526 1.6122-1.526 2.0475 0 .1004.067.1387.1722.1435.464 0 1.6648-.8802 1.9948-.8802.1149 0 .1244.1387.1244.263 0 .2345-.0813.5885-.0813.8468 0 .2057.0574.3444.2296.3492.33 0 .6315-.5597.8563-.5597.287 0 .1148 1.6456.5501 1.6504.3636 0 .5167-1.7843.7463-1.7843s.421.5118.6267.5118c.2679 0 .1435-.8993.4305-.8993.311 0 1.2007 1.0763 1.5978 1.0716.1243 0 .1674-.1005.1674-.2249 0-.4736-.6602-1.5403-.6602-1.88 0-.0909.024-.1148.1244-.1148.3492 0 1.3586.4784 1.8418.4784.1817.0191.2774-.0718.2822-.1914zm-8.142-.5166c0 .177-.6792.775-.9184.775-.0909 0-.1148-.1053-.1148-.2058 0-.177.0813-.4257.177-.507.1148-.1053.3827-.1579.5884-.1579.1292 0 .2679.024.2679.0957zm6.5538.9185c0 .3061 1.1194 1.8417 1.325 1.837.177 0 .311-.311.311-.579 0-.0717-.0191-.1434-.0526-.196-.1626-.2249-1.2916-1.1147-1.5403-1.1147-.024-.0047-.0479.0192-.0431.0527zM23.5073.1722c-.445 0-.5215-.1387-.8228-.1387-.3636 0-.622.2487-.622.6219 0 .1244.0431.3205.0431.5788 0 .3157-.0622.6075-.3396.6075-.2535 0-.354-.1674-.354-.3635 0-.354.1866-.5932.1866-.8276 0-.4258-.5262-.5501-1.0764-.5501-.6601 0-1.373.177-1.373.2678 0 .1531.952.0622 1.6218.9185-.4353.0096-1.282.2057-1.282.3205 0 .1435 1.5164.3062 1.5164.9376.0048.4162-.3301.4593-.4593.464-.5022 0-.7701-.5118-.904-.5118a.0704.0704 0 00-.0718.0718c0 .0813.0717.2918.0717.5166 0 .5693-.6314.6315-.6314.7463 0 .043.0191.0622.0909.0717a9.153 9.153 0 001.3825.1053c1.612 0 2.9324-.5023 2.9324-1.9087 0-.775-.2392-1.0238-.2392-1.4017 0-.1244.0909-.3827.33-.5262zm-2.2867 3.0473c-.1004 0-.2152 0-.33-.0096 1.0428-.1674 1.6217-.7702 1.6217-1.5643.2344.067.3779.3062.373.5597 0 .464-.4448 1.0142-1.6647 1.0142zM22.6893.794c-.1292-.0048-.2297-.0957-.2297-.22 0-.1292.1053-.2201.2297-.2249a.2246.2246 0 01.2248.2248c0 .1244-.1005.2249-.2248.2201zm.5597 11.5814c-.4162 0-.6602.732-1.0668.775.2583-1.0716 1.3203-1.6217 1.3203-2.6215 0-1.1337-.952-1.5308-1.349-1.7843-.665-.9376-1.1386-1.6791-2.2053-1.6791-.4545 0-.7415.0813-1.0524.0813-.6028-.0048-.7894-.2344-.8324-.2344-.0096 0-.0191.0096-.0191.043 0 .8276.4353 2.7268 2.3535 2.7268 1.0238 0 1.4639-.3923 1.703-.3923.2584 0 1.086.2823 1.086 1.2294 0 .5262-.4162 1.062-.5693 1.062-.1483.0048-.3062-.2344-.3062-.488 0-.2822.1531-.7988.1531-1.1193 0-.1196-.0191-.177-.0909-.177-.1626 0-.928.4784-.928 1.0955 0 .5262.775.8467 1.0668.9998-.2918.4831-.4688.794-.6124 1.239 0-.335-.3205-1.019-.421-1.306-.4927-1.3395-.6649-1.5882-1.679-1.703.153.5358 1.8991 1.8274 1.8991 3.1477 0 .0813-.0095.1961-.0191.2392-.5262-1.5404-1.4303-1.8944-1.7604-2.2723-.5358-.5884-.2296-1.1577-1.086-1.4782.0527.0718.0718.1627.0718.2583 0 .2823-.1626.641-.1626.8898 0 .928 1.0907.6506 1.7221 1.1577.622.5023.9711 1.3203 1.2294 2.2292.2488-.397.3923-.8802.8372-.8802.287 0 .3827.3588.3827.6075 0 .0526 0 .1005-.0096.134.4258-.3636.6506-.952.6506-1.3443 0-.263-.0909-.4353-.3061-.4353zm-1.66-3.4969c-.0909 0-.2631-.0478-.378-.0478-.306 0-.5213.421-.6792.421-.0574 0-.0813-.0527-.0813-.1005 0-.1722.3013-.378.3013-.4927 0-.0814-.1291-.1053-.1817-.1053-.3062 0-.732.4162-.9711.4162-.043 0-.1005-.024-.1005-.0813 0-.1148.3205-.2775.3205-.4019 0-.11-.1387-.1339-.2296-.1339-.1483 0-.4449.0813-.6315.0813-.1004 0-.1817-.0191-.1817-.1004 0-.1818.5788-.0622.5788-.2775 0-.1052-.1818-.3014-.1818-.4018 0-.0383.0478-.067.0909-.067.2057 0 .421.5597.6602.5597.1052 0 .1339-.0813.1339-.1961s-.024-.1722-.024-.2727c0-.1052.0431-.134.0766-.134.1483 0 .2823.8037.6937.8037.1817-.0048.0526-.4927.2152-.4927.1005 0 .1244.1435.134.2248.043.5262.5166.5454.5166.732 0 .019-.0287.067-.0813.067zM17.0062.0574c-.598 0-1.0333.2918-1.2677.2918-.1387.0096-.354-.3492-.464-.3492-.043 0-.091.0909-.091.2392 0 .1004 0 .4114-.1052.4114-.2152 0-1.0428-.6123-1.0428-.3923 0 .2057.5501.8324.5501.995s-.5453.311-.5453.421c0 .1961.5836.2296.5836.4832 0 .2487-.6076.4449-.6076.6266 0 .1483.6076.0479.6076.2297 0 .1865-.445.8132-.445.9902 0 .0478.0097.0478.048.0478.1674.0048.6792-.5788.7988-.5788.1435 0 .1722.3444.1961.555.0192.1004.0335.1147.0814.1147.1052 0 .2774-.4114.3922-.4114.1675 0 .6267.4688 1.3825.4736 1.0764 0 2.0953-.7558 2.0953-2.0953 0-1.2916-.9089-2.0522-2.167-2.0522zm-1.526 2.875c-.0287 0-.043-.0335-.043-.0813l-.0192-.354c0-.0335-.0192-.0717-.0622-.0717-.1053 0-.311-.0096-.3731-.0096-.043 0-.0622-.0096-.0622-.0287.0095-.067.3635-.3205.3683-.378 0-.1004-.3492-.287-.3492-.3922 0-.0191.0191-.0287.043-.0287.1005 0 .2632.0335.4019.0335.1148 0 .134-.4975.22-.4975.0622 0 .1723.4688.2631.4688.1149 0 .3301-.134.421-.134.0192 0 .0335.0096.0335.0287 0 .0622-.2248.3014-.2248.378 0 .0813.5023.1817.5023.2487 0 .0909-.5071.0813-.5071.1627 0 .0574.1818.3061.1818.3874 0 .0192-.0096.0287-.0287.0287-.0718 0-.3493-.1243-.4306-.1243-.1004 0-.2583.3635-.3348.3635zm1.5451.7702c-.6267 0-1.0333-.311-1.0333-.4736 0-.0813.0526-.134.1244-.134.1961 0 .6267.2967.7654.2967.0335 0 .0622-.0192.0622-.0718 0-.1626-.153-.4257-.153-.5597 0-.0335.0286-.0622.0812-.0622.2392 0 .5932.1005.7893.1005.0622 0 .0814-.0335.0814-.0718 0-.1961-.5789-.5788-.5789-.6936 0-.1053.7224-.2679.7224-.4353 0-.177-.9807-.0527-.9807-.2249 0-.1243.1866-.3396.1866-.4353 0-.043-.0335-.0622-.0957-.0622-.0813 0-.507.1675-.6888.1675-.091 0-.1962-.0192-.1962-.1436 0-.2057.3492-.4257.8946-.4257.8802 0 1.4064.6075 1.4064 1.6217-.0048 1.2868-.8993 1.6073-1.3873 1.6073zm-6.037 15.4228c0 .0813-.0288.1674-.1005.2583-.0957-.177-.3732-.2679-.4975-.2679-.9185 0-.5693 1.3299-1.55 1.3299-.4114 0-.4448-.0526-.598-.0526-.0621 0-.1004.0287-.1004.0813 0 .2296.33.7989 1.2438.8037.9185 0 1.7987-.5597 1.7987-1.2582 0-.1148-.0287-.2392-.0814-.3635.0335-.0527.1244-.091.2057-.091.1436 0 .2153.158.354.1627.1436 0 .2488-.1052.2488-.2487 0-.1148-.0622-.1962-.1674-.2488.0717-.0526.1243-.1435.1243-.2392 0-.153-.1052-.2918-.287-.2918-.0813 0-.134.0287-.1961.0861-.0191-.1578-.1053-.311-.2775-.311-.134 0-.2344.0958-.2344.2536.0192.1244.1148.2392.1148.397zm-2.8703-.6458c-.0622 0-.1435.0095-.2296.0095-.0813 0-.1962-.0191-.268-.0813-.1434-.1244-.1865-.794-.4544-1.196-.2918-.4448-.6123-.5692-1.0524-.5692-.311 0-.6601.1674-.6601.421 0 .153.086.2583.6505.4066.7128.1818 1.0764.5597 1.1434 1.0142.0717.4353.1578.7893.33.971.2249.2536.665.4689 1.0381.4689.3205 0 .5788-.1053.5788-.4019 0-.3205-.4353-1.0428-1.0763-1.0428zm.4736.9806c-.2679 0-.6697-.287-.6697-.4449 0-.1339.1243-.2057.2248-.2057.2248 0 .6267.2727.6267.5071-.0048.0622-.0479.1388-.1818.1435zm2.1335-3.9226c-.4114-.1483-.5932-.3875-.6745-.8563-.2009.2727-.2966.531-.2966.684 0 .6028.8276.6124.8276 1.0142-.0048.2344-.421.4736-.971.4784-.6411-.0048-1.0716-.1053-1.4735-.507-.1052-.1149-.153-.2154-.287-.2154-.153 0-.2153.268-.2153.5071 0 .8754.8324 1.9087 1.99 1.9087 1.4448-.0048 2.0045-.9998 2.0045-1.8034 0-.4688-.11-.9137-.9042-1.2103zm-.4257 2.4397c-.1148 0-.1387-.0718-.1387-.1722 0-.0814.0287-.2344.0287-.3492 0-.3158.1196-.2919.4257-.4306h-.0048c.2153-.1004.2966-.2344.3636-.2344.0813 0 .153.0526.153.177 0 .464-.507 1.0094-.8275 1.0094zM7.7736 12.519c0-.5692 1.3538-.8754 1.3538-1.5786 0-.1148-.043-.3205-.1244-.4736.4736.2631.8228.6984.8228 1.0524 0 .6171-.641.8994-.641 1.282 0 .445.684.512.684 1.0716 0 .4545-.6505.9807-.6505 1.5691 0 .4592.3205.8324.8132.8898-.1627.0335-.3014.0622-.4545.0622-.8993 0-1.8274-.7415-1.8274-1.6217 0-.4353.1866-.818.4736-1.0955.2488.2153.5023.354.665.354.1435 0 .2057-.0718.2057-.177-.0096-.3253-1.3155-.6362-1.3203-1.3347zM5.219 16.2743c-.0335-.3205-.3253-.5597-.622-.5215-.1147.0144-.2248.0574-.2965.1196-.0813-.2679-.3301-.4975-.6745-.4449-.311.0527-.5167.3158-.4832.6506.0048.0574.024.1148.0478.177 0 0-.0526.0096-.0908.0144-.2584.0478-.5454.311-.4975.6506.0382.3061.3205.5358.641.4975.1148-.0144.2248-.043.2966-.091.0717.2871.3061.4689.6266.4258.3301-.043.5502-.3013.5167-.6314-.0096-.0909-.0287-.1435-.0526-.2057 0 0 .043-.0048.0765-.0096.3205-.0622.5406-.3205.5119-.6314zm-1.2486.6697c-.1866.024-.354-.11-.378-.2966s.1101-.354.2967-.378c.1913-.0238.3588.1149.3779.2967.024.1865-.11.354-.2966.3779z" }) + ] + } + ); +}); + +export { SiUnilever as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.cjs new file mode 100644 index 000000000..5449c7c41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiUniqlo = React__namespace.forwardRef(function SiUniqlo2({ title = "Uniqlo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm3.006 3.236h1.52v5.051a1.007 1.007 0 1 0 2.014 0v-5.05h1.517v5.056a2.525 2.525 0 1 1-5.051 0V3.236zm7.07 0h1.514l2.023 4.328V3.236h1.516v7.575h-1.516L11.59 6.482v4.329h-1.514V3.236zm7.569.01h1.488v7.576h-1.488V3.246zM5.533 13.078a2.526 2.526 0 0 1 2.524 2.53v2.523a2.51 2.51 0 0 1-.75 1.793l.75 2.248H6.539l-.518-1.563a2.472 2.472 0 0 1-.488.043 2.524 2.524 0 0 1-2.527-2.521v-2.524a2.527 2.527 0 0 1 2.527-2.529zm4.547 0h1.514v6.057h3.535v1.517H10.08v-7.574zm8.336 0a2.526 2.526 0 0 1 2.523 2.53v2.523a2.525 2.525 0 0 1-2.523 2.521 2.53 2.53 0 0 1-2.531-2.521v-2.524a2.533 2.533 0 0 1 2.531-2.529zm-12.88 1.52a1.007 1.007 0 0 0-1.01 1.01v2.523c0 .552.45 1.006 1.01 1.006.558 0 1.003-.454 1.003-1.006v-2.524c0-.559-.445-1.01-1.004-1.01zm12.88 0a1.01 1.01 0 0 0-1.012 1.01v2.523c0 .552.453 1.006 1.012 1.006a1.012 1.012 0 0 0 1.01-1.006v-2.524c0-.559-.455-1.01-1.01-1.01z" }) + ] + } + ); +}); + +exports.default = SiUniqlo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.d.ts new file mode 100644 index 000000000..2ffdca985 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiUniqlo: IconType; +export { SiUniqlo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.mjs new file mode 100644 index 000000000..a92297905 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqlo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiUniqlo = React.forwardRef(function SiUniqlo2({ title = "Uniqlo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm3.006 3.236h1.52v5.051a1.007 1.007 0 1 0 2.014 0v-5.05h1.517v5.056a2.525 2.525 0 1 1-5.051 0V3.236zm7.07 0h1.514l2.023 4.328V3.236h1.516v7.575h-1.516L11.59 6.482v4.329h-1.514V3.236zm7.569.01h1.488v7.576h-1.488V3.246zM5.533 13.078a2.526 2.526 0 0 1 2.524 2.53v2.523a2.51 2.51 0 0 1-.75 1.793l.75 2.248H6.539l-.518-1.563a2.472 2.472 0 0 1-.488.043 2.524 2.524 0 0 1-2.527-2.521v-2.524a2.527 2.527 0 0 1 2.527-2.529zm4.547 0h1.514v6.057h3.535v1.517H10.08v-7.574zm8.336 0a2.526 2.526 0 0 1 2.523 2.53v2.523a2.525 2.525 0 0 1-2.523 2.521 2.53 2.53 0 0 1-2.531-2.521v-2.524a2.533 2.533 0 0 1 2.531-2.529zm-12.88 1.52a1.007 1.007 0 0 0-1.01 1.01v2.523c0 .552.45 1.006 1.01 1.006.558 0 1.003-.454 1.003-1.006v-2.524c0-.559-.445-1.01-1.004-1.01zm12.88 0a1.01 1.01 0 0 0-1.012 1.01v2.523c0 .552.453 1.006 1.012 1.006a1.012 1.012 0 0 0 1.01-1.006v-2.524c0-.559-.455-1.01-1.01-1.01z" }) + ] + } + ); +}); + +export { SiUniqlo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.cjs new file mode 100644 index 000000000..c491326a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiUniqloJa = React__namespace.forwardRef(function SiUniqloJa2({ title = "Uniqlo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 .01v23.98h24V.01ZM4.291 3.29h4.553l.006 5.803h1.511v1.511h-6.82V9.094h3.783v-4.29H4.291zm10.11 0h5.302v1.514H14.4zm-.762 5.807h6.816v1.511H13.64zM4.29 13.385l6.072.002-1.513 7.322H2.777l.305-1.516h4.553l.892-4.29H5.49l-.457 2.148H3.521Zm9.348 0h6.816v7.324H13.64zm1.517 1.517v4.291h3.787v-4.29z" }) + ] + } + ); +}); + +exports.default = SiUniqloJa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.d.ts new file mode 100644 index 000000000..941ead650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiUniqloJa: IconType; +export { SiUniqloJa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.mjs new file mode 100644 index 000000000..3cfcbb01c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUniqloJa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiUniqloJa = React.forwardRef(function SiUniqloJa2({ title = "Uniqlo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 .01v23.98h24V.01ZM4.291 3.29h4.553l.006 5.803h1.511v1.511h-6.82V9.094h3.783v-4.29H4.291zm10.11 0h5.302v1.514H14.4zm-.762 5.807h6.816v1.511H13.64zM4.29 13.385l6.072.002-1.513 7.322H2.777l.305-1.516h4.553l.892-4.29H5.49l-.457 2.148H3.521Zm9.348 0h6.816v7.324H13.64zm1.517 1.517v4.291h3.787v-4.29z" }) + ] + } + ); +}); + +export { SiUniqloJa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.cjs new file mode 100644 index 000000000..f096fa178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002244"; +const SiUnitedairlines = React__namespace.forwardRef(function SiUnitedairlines2({ title = "United Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.327 3.067c8.654 0 15.695 7.068 15.695 15.754 0 1.762-.298 3.515-.875 5.179H24V0H0v4.003l.019-.007a15.569 15.569 0 0 1 5.308-.929M0 10.534c.975-1.389 1.116-2.983.26-3.761a1.56 1.56 0 0 0-.26-.19zm5.027-5.057c-.863-.99-2.3-1.33-3.969-1.092l-.135.02a7.873 7.873 0 0 0-.386.077C.28 4.542.104 4.6 0 4.64v.5a8.47 8.47 0 0 1 .505-.37c.333-.07.656-.116.968-.136C.99 4.91.434 5.283 0 5.627v.385l.015.009s1.224-.969 2.196-1.386c.234.017.458.05.672.099A14.624 14.624 0 0 0 .284 6.168c.15.088.285.199.303.213.019-.012 1.427-.892 2.977-1.42.21.096.413.216.589.351-1.688.474-3.31 1.321-3.31 1.321.092.106.172.221.242.344l.029-.011c1.727-.74 3.562-1.118 3.562-1.118.143.196.262.416.352.658 0 0-1.647.188-3.765.868.093.292.119.512.119.515 0 0 1.997-.447 3.839-.497.026.296.016.628-.026.969-1.09-.058-3.69.08-3.791.089 0 0-.01.374-.107.726 0 0 1.899.061 3.626.383a8.406 8.406 0 0 1-.507 1.22c-1.15-.346-2.897-.766-3.357-.871a5.64 5.64 0 0 1-.453.88s2.134.93 2.953 1.386h.002v.001c-.356.532-1.06 1.277-1.06 1.277a73.343 73.343 0 0 0-.58-.43L.005 11.685 0 11.68v1.765l1.107 1.292c-.364.294-.736.562-1.107.802v1.053l.041-.026a15.948 15.948 0 0 0 1.492-1.151c3.819-3.323 5.383-7.773 3.495-9.94m4.701.184C7.917 3.221 5.08 3.57 4.234 3.688c-.929.13-1.631.334-1.631.334.207.019.49.056.694.097.15-.036 1.454-.333 2.402-.209h.003c-.697.076-1.647.363-1.746.394h-.002a3.154 3.154 0 0 1 .663.3c.102-.026 1.392-.369 2.623-.393 0 0 .455.202.893.503-1.59-.006-2.907.3-2.942.308.186.165.371.364.537.603 1.744-.262 3.248-.148 3.248-.148s.204.25.296.383a5 5 0 0 1 .327.563c-1.779-.208-3.48-.059-3.482-.059.118.303.197.627.24.968.197-.002 1.704.001 3.623.346.062.44.068.912.02 1.41a25.761 25.761 0 0 0-3.622-.65c-.035.43-.116.877-.242 1.336.192.045 2.317.552 3.506 1.034a12.226 12.226 0 0 1-.707 1.76c-.958-.472-3.307-1.39-3.307-1.39a12.625 12.625 0 0 1-.858 1.588s2.014 1.15 2.984 1.786a18.19 18.19 0 0 1-1.511 1.875c-.704-.63-2.464-1.994-2.597-2.097a25.338 25.338 0 0 1-1.496 1.596l2.112 2.422-.06.053c-.458.38-.95.736-1.366 1.022-.361.245-.66.435-.762.501a302.864 302.864 0 0 1-1.615-2.596c-.152.113-.305.22-.458.326v4.539c.248-.12.497-.244.745-.376a18.882 18.882 0 0 0 3.422-2.19 21.666 21.666 0 0 0 2.125-1.93 18.942 18.942 0 0 0 2.2-2.704c2.329-3.438 2.952-7.023 1.236-9.333m3.701.829a3.523 3.523 0 0 0-.4-.468 4.523 4.523 0 0 0-.4-.344c-1.502-1.133-4.268-1.7-4.268-1.7.264.141.484.285.485.286.013.004 1.128.283 2.117.767 0 0-.9-.204-1.476-.284.238.21.465.45.664.703 0 0 1.835.335 2.64.776 0 0 .386.397.701 1.093-1.257-.51-2.682-.777-2.682-.777.19.424.325.878.408 1.35 0 0 1.566.383 2.742.948.102.559.14 1.136.118 1.72a21.613 21.613 0 0 0-2.77-1.134 9.298 9.298 0 0 1-.287 1.865s1.898.847 2.75 1.362a13.329 13.329 0 0 1-.77 2.201c-1.299-.844-2.673-1.594-2.673-1.594-.346.83-1.195 2.187-1.195 2.187.022.015 1.436.986 2.52 1.847a20.88 20.88 0 0 1-1.807 2.346 304.27 304.27 0 0 0-2.312-2.068 22.358 22.358 0 0 1-2.095 2.12l2.008 2.273c-1.302 1.074-2.601 1.887-2.601 1.887L3.17 21.47s-1.18.897-3.17 1.84V24h6.537c7.297-5.52 9.886-13.415 6.892-17.511M12.967 24c1.704-1.905 3.155-4.147 4.027-6.547.757-2.082 1.169-4.625.5-6.887a6.312 6.312 0 0 0-.155-.45 5.429 5.429 0 0 0-.794-1.415 15.18 15.18 0 0 0-2.749-2.413c.15.191.285.389.402.589 0 0 1.231.913 1.946 1.84-.917-.652-1.436-.917-1.503-.95l-.008-.004c.348.859.453 1.57.453 1.57s1.088.568 2.067 1.416c.136.627.192 1.27.183 1.913-.987-.869-2.13-1.547-2.13-1.547a11.7 11.7 0 0 1-.284 2.204s1.079.683 2.13 1.64c0 0-.302 1.358-.789 2.424a26.291 26.291 0 0 0-2.069-1.726s-.5 1.305-1.312 2.616a61.394 61.394 0 0 1 1.959 1.789 21.41 21.41 0 0 1-1.943 2.57v.001l-1.807-1.798a23.958 23.958 0 0 1-2.392 2.55c.04.046.404.45.553.615zm3.213 0h.902c2.567-3.792 2.696-7.153 2.696-7.797 0-1.216-.204-2.334-.546-3.219 0 0-.532-1.375-1.362-2.6a11.694 11.694 0 0 1 .377 1.413c.163.273.9 1.572.999 3.001v.004s-.52-.729-.907-1.19a12.068 12.068 0 0 1-.28 2.33s.772.894 1.117 1.47c0 0-.235 1.258-.738 2.462-.512-.745-1.166-1.468-1.166-1.468a19.217 19.217 0 0 1-1.406 2.778s.978 1.144 1.192 1.47c-.287.484-.567.905-.878 1.346m3.27 0c.194-.525.369-1.085.512-1.654a15.228 15.228 0 0 0 .28-5.658c-.069.998-.243 1.873-.243 1.873.041.132.114.349.147.482v.001a17.79 17.79 0 0 1-.575 2.995c-.131-.484-.307-.95-.318-.98h-.001c-.353.94-.881 2.05-1.361 2.941Z" }) + ] + } + ); +}); + +exports.default = SiUnitedairlines; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.d.ts new file mode 100644 index 000000000..a343886eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002244"; +declare const SiUnitedairlines: IconType; +export { SiUnitedairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.mjs new file mode 100644 index 000000000..88c6bba9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitedairlines.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002244"; +const SiUnitedairlines = React.forwardRef(function SiUnitedairlines2({ title = "United Airlines", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.327 3.067c8.654 0 15.695 7.068 15.695 15.754 0 1.762-.298 3.515-.875 5.179H24V0H0v4.003l.019-.007a15.569 15.569 0 0 1 5.308-.929M0 10.534c.975-1.389 1.116-2.983.26-3.761a1.56 1.56 0 0 0-.26-.19zm5.027-5.057c-.863-.99-2.3-1.33-3.969-1.092l-.135.02a7.873 7.873 0 0 0-.386.077C.28 4.542.104 4.6 0 4.64v.5a8.47 8.47 0 0 1 .505-.37c.333-.07.656-.116.968-.136C.99 4.91.434 5.283 0 5.627v.385l.015.009s1.224-.969 2.196-1.386c.234.017.458.05.672.099A14.624 14.624 0 0 0 .284 6.168c.15.088.285.199.303.213.019-.012 1.427-.892 2.977-1.42.21.096.413.216.589.351-1.688.474-3.31 1.321-3.31 1.321.092.106.172.221.242.344l.029-.011c1.727-.74 3.562-1.118 3.562-1.118.143.196.262.416.352.658 0 0-1.647.188-3.765.868.093.292.119.512.119.515 0 0 1.997-.447 3.839-.497.026.296.016.628-.026.969-1.09-.058-3.69.08-3.791.089 0 0-.01.374-.107.726 0 0 1.899.061 3.626.383a8.406 8.406 0 0 1-.507 1.22c-1.15-.346-2.897-.766-3.357-.871a5.64 5.64 0 0 1-.453.88s2.134.93 2.953 1.386h.002v.001c-.356.532-1.06 1.277-1.06 1.277a73.343 73.343 0 0 0-.58-.43L.005 11.685 0 11.68v1.765l1.107 1.292c-.364.294-.736.562-1.107.802v1.053l.041-.026a15.948 15.948 0 0 0 1.492-1.151c3.819-3.323 5.383-7.773 3.495-9.94m4.701.184C7.917 3.221 5.08 3.57 4.234 3.688c-.929.13-1.631.334-1.631.334.207.019.49.056.694.097.15-.036 1.454-.333 2.402-.209h.003c-.697.076-1.647.363-1.746.394h-.002a3.154 3.154 0 0 1 .663.3c.102-.026 1.392-.369 2.623-.393 0 0 .455.202.893.503-1.59-.006-2.907.3-2.942.308.186.165.371.364.537.603 1.744-.262 3.248-.148 3.248-.148s.204.25.296.383a5 5 0 0 1 .327.563c-1.779-.208-3.48-.059-3.482-.059.118.303.197.627.24.968.197-.002 1.704.001 3.623.346.062.44.068.912.02 1.41a25.761 25.761 0 0 0-3.622-.65c-.035.43-.116.877-.242 1.336.192.045 2.317.552 3.506 1.034a12.226 12.226 0 0 1-.707 1.76c-.958-.472-3.307-1.39-3.307-1.39a12.625 12.625 0 0 1-.858 1.588s2.014 1.15 2.984 1.786a18.19 18.19 0 0 1-1.511 1.875c-.704-.63-2.464-1.994-2.597-2.097a25.338 25.338 0 0 1-1.496 1.596l2.112 2.422-.06.053c-.458.38-.95.736-1.366 1.022-.361.245-.66.435-.762.501a302.864 302.864 0 0 1-1.615-2.596c-.152.113-.305.22-.458.326v4.539c.248-.12.497-.244.745-.376a18.882 18.882 0 0 0 3.422-2.19 21.666 21.666 0 0 0 2.125-1.93 18.942 18.942 0 0 0 2.2-2.704c2.329-3.438 2.952-7.023 1.236-9.333m3.701.829a3.523 3.523 0 0 0-.4-.468 4.523 4.523 0 0 0-.4-.344c-1.502-1.133-4.268-1.7-4.268-1.7.264.141.484.285.485.286.013.004 1.128.283 2.117.767 0 0-.9-.204-1.476-.284.238.21.465.45.664.703 0 0 1.835.335 2.64.776 0 0 .386.397.701 1.093-1.257-.51-2.682-.777-2.682-.777.19.424.325.878.408 1.35 0 0 1.566.383 2.742.948.102.559.14 1.136.118 1.72a21.613 21.613 0 0 0-2.77-1.134 9.298 9.298 0 0 1-.287 1.865s1.898.847 2.75 1.362a13.329 13.329 0 0 1-.77 2.201c-1.299-.844-2.673-1.594-2.673-1.594-.346.83-1.195 2.187-1.195 2.187.022.015 1.436.986 2.52 1.847a20.88 20.88 0 0 1-1.807 2.346 304.27 304.27 0 0 0-2.312-2.068 22.358 22.358 0 0 1-2.095 2.12l2.008 2.273c-1.302 1.074-2.601 1.887-2.601 1.887L3.17 21.47s-1.18.897-3.17 1.84V24h6.537c7.297-5.52 9.886-13.415 6.892-17.511M12.967 24c1.704-1.905 3.155-4.147 4.027-6.547.757-2.082 1.169-4.625.5-6.887a6.312 6.312 0 0 0-.155-.45 5.429 5.429 0 0 0-.794-1.415 15.18 15.18 0 0 0-2.749-2.413c.15.191.285.389.402.589 0 0 1.231.913 1.946 1.84-.917-.652-1.436-.917-1.503-.95l-.008-.004c.348.859.453 1.57.453 1.57s1.088.568 2.067 1.416c.136.627.192 1.27.183 1.913-.987-.869-2.13-1.547-2.13-1.547a11.7 11.7 0 0 1-.284 2.204s1.079.683 2.13 1.64c0 0-.302 1.358-.789 2.424a26.291 26.291 0 0 0-2.069-1.726s-.5 1.305-1.312 2.616a61.394 61.394 0 0 1 1.959 1.789 21.41 21.41 0 0 1-1.943 2.57v.001l-1.807-1.798a23.958 23.958 0 0 1-2.392 2.55c.04.046.404.45.553.615zm3.213 0h.902c2.567-3.792 2.696-7.153 2.696-7.797 0-1.216-.204-2.334-.546-3.219 0 0-.532-1.375-1.362-2.6a11.694 11.694 0 0 1 .377 1.413c.163.273.9 1.572.999 3.001v.004s-.52-.729-.907-1.19a12.068 12.068 0 0 1-.28 2.33s.772.894 1.117 1.47c0 0-.235 1.258-.738 2.462-.512-.745-1.166-1.468-1.166-1.468a19.217 19.217 0 0 1-1.406 2.778s.978 1.144 1.192 1.47c-.287.484-.567.905-.878 1.346m3.27 0c.194-.525.369-1.085.512-1.654a15.228 15.228 0 0 0 .28-5.658c-.069.998-.243 1.873-.243 1.873.041.132.114.349.147.482v.001a17.79 17.79 0 0 1-.575 2.995c-.131-.484-.307-.95-.318-.98h-.001c-.353.94-.881 2.05-1.361 2.941Z" }) + ] + } + ); +}); + +export { SiUnitedairlines as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.cjs new file mode 100644 index 000000000..d319f1e0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009EDB"; +const SiUnitednations = React__namespace.forwardRef(function SiUnitednations2({ title = "United Nations", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.024 20.255a3.123 3.123 0 0 1-2.048.242 7.117 7.117 0 0 1-1.366-.463l-.968-.396a4.736 4.736 0 0 0-2.599-.066h-.088a4.357 4.357 0 0 0-2.598.066c-.33.11-.639.264-.969.396-.44.199-.903.375-1.365.485a3.14 3.14 0 0 1-2.048-.242l-.088-.044c-.022 0-.022 0-.022.022a3.335 3.335 0 0 0 2.752.991 3.998 3.998 0 0 0 1.718-.661l.925-.617a1.57 1.57 0 0 1 1.167-.22c.22.022.044.132.022.154a8.807 8.807 0 0 0-1.564.97c-.33.241-.925.814-.925.814l.44.374.485-.528a8.741 8.741 0 0 1 2.026-1.564.165.165 0 0 1 .198 0 8.741 8.741 0 0 1 2.026 1.564l.485.528.44-.374-.925-.815a8.808 8.808 0 0 0-1.563-.969c-.044-.022-.198-.132.022-.154.396-.088.814 0 1.167.22l.925.617a3.998 3.998 0 0 0 1.717.66c.397.045.815.023 1.211-.088a3.761 3.761 0 0 0 1.542-.902s-.022-.022-.044-.022l-.088.022m2.157-1.916a3.1 3.1 0 0 1-.924.484c-.463.133-.97.22-1.454.22-.638.023-1.255.067-1.893.155-.044 0-.066 0-.044-.022.55-.22.99-.66 1.233-1.19l.616-1.254v-.045c-.044.022-.66.551-.947.815l-1.035 1.013a4.02 4.02 0 0 1-1.607.837h-.022l-.022.022 1.189.286a7.522 7.522 0 0 0 1.563.286 3.669 3.669 0 0 0 3.392-1.585c0-.022-.023-.022-.045-.022m1.938-2.95a4.643 4.643 0 0 1-1.1.968c-.353.242-.727.44-1.124.617a5.472 5.472 0 0 0-1.387.814l-.088.067c-.022 0-.022 0-.022-.023 0-.022.66-.682.859-2.07.022-.506.11-.99.22-1.475v-.044a6.42 6.42 0 0 0-1.057 1.894l-.396 1.123c-.155.506-.44.969-.815 1.343l-.044.044v.022c.044 0 .088-.022.132-.022l1.277-.264a4.454 4.454 0 0 0 1.938-.815 4.491 4.491 0 0 0 1.387-1.63c.088-.175.154-.352.22-.528.044-.044.022-.044 0-.022m.837-3.303a3.917 3.917 0 0 1-1.013 1.586 14.717 14.717 0 0 0-1.453 1.651c0 .022-.044 0-.022-.022a4.45 4.45 0 0 0 .132-1.871c-.088-.529-.308-1.101-.374-1.74l-.023-.022c0 .022-.022.044-.022.066a6.27 6.27 0 0 0-.264 1.277c-.022.529.066 1.211.022 1.74-.044.616-.088 1.255-.374 1.805v.044l1.321-.814a4.959 4.959 0 0 0 1.387-1.322A3.947 3.947 0 0 0 24 12.151v-.088c-.022 0-.044.022-.044.022m-1.41.353c.023 0 .023 0 0 0 0 .022 0 0 0 0 0-.177 0-.353-.021-.529-.044-.616-.419-1.123-.749-1.651a8.184 8.184 0 0 1-.595-1.057s-.022-.022-.044-.022c0 .044 0 .242.022.352.11.88.33 1.762.661 2.598.198.529.264 1.08.22 1.63 0 .044 0 .044.022.066.198-.286.595-.683.837-.991.242-.308 1.563-1.806.925-3.875-.022-.089-.066-.177-.11-.265l-.022.022c0 1.498-.727 2.136-1.013 3.15a4.91 4.91 0 0 0-.132.572m.022-3.083-.132-.352-.088-.199a3.062 3.062 0 0 0-.903-1.013 4.289 4.289 0 0 1-.793-.88h-.066c.022.066.22.726.352 1.035.22.418.485.836.793 1.189l.066.088c.374.506.66 1.057.859 1.651 0 .022.022.022.022.022l.374-1.145c.132-.396.242-.815.33-1.233.133-.99-.176-2.246-.748-2.95 0 0-.022.021-.022.044l.022.088.044.132c.11.528.132 1.1.022 1.63-.088.418-.11.858-.11 1.298 0 .066.044.617.044.639s-.022 0-.044 0m-1.784-5.571c.176.176.33.374.419.616.154.375.198.925.308 1.344l.198.726c0 .022-.022.044-.044.022a4.326 4.326 0 0 0-1.19-.99c-.307-.177-.55-.419-.77-.683l-.11-.154s-.022-.022-.044 0v.066c.11.484.33.947.683 1.32.286.265.594.507.88.75a9.58 9.58 0 0 1 1.057 1.057s.022.022.022 0v-.353l.022-1.057V6.14c0-.352-.066-.727-.198-1.057-.22-.55-.638-.99-1.145-1.255-.022-.022-.066-.022-.11-.044 0 0 0 .022.022.044M18.54 2.793c.308.286.573.617.815.969.22.352.462.66.77.947.199.198.793.66.947.792-.022-.176-.308-1.43-1.079-2.047a3.93 3.93 0 0 0-1.519-.75v.045l.066.044M6.208 19.946a7.118 7.118 0 0 0 1.52-.286l1.188-.286h.022s0-.022-.022-.022h-.022a4.258 4.258 0 0 1-1.63-.837l-1.034-.99-.947-.816v.045c.088.132.419.858.617 1.255.242.55.682.969 1.233 1.189.022.022 0 .022-.044.022a17.804 17.804 0 0 0-1.894-.154c-.484 0-.99-.088-1.453-.22a3.102 3.102 0 0 1-.925-.485h-.044a3.843 3.843 0 0 0 1.761 1.365 4.808 4.808 0 0 0 1.674.22m-.506-1.299c.044 0 .066.022.132.022v-.022l-.044-.044a3.502 3.502 0 0 1-.815-1.343l-.396-1.123a6.42 6.42 0 0 0-1.057-1.894v.044c.132.485.198.97.242 1.476.198 1.365.859 2.025.859 2.047 0 .022 0 .045-.022.022l-.089-.066a5.472 5.472 0 0 0-1.387-.814 6.931 6.931 0 0 1-1.123-.617 4.643 4.643 0 0 1-1.1-.969H.878c.066.176.132.353.22.529.33.638.815 1.21 1.41 1.63.572.44 1.233.726 1.937.814.419.11.837.22 1.256.308m-3.546-2.862 1.322.814s.022-.022.022-.044c-.287-.572-.33-1.189-.375-1.805-.044-.55.044-1.211.022-1.74a6.477 6.477 0 0 0-.264-1.299c0-.022-.022-.044-.022-.066l-.022.022c-.044.639-.286 1.211-.374 1.74a4.502 4.502 0 0 0 .132 1.871c.022.022-.022.044-.022.022a13 13 0 0 0-1.454-1.65 3.843 3.843 0 0 1-1.01-1.565s-.023-.022-.045-.022 0 .044 0 .088c0 .815.243 1.63.727 2.312.352.507.815.97 1.365 1.322m-.242-1.938c.022-.022.022-.022.022-.066-.044-.55.022-1.123.242-1.63.309-.836.529-1.695.661-2.598 0-.11.022-.308.022-.352-.022 0-.022 0-.022.022a8.184 8.184 0 0 1-.595 1.057c-.352.484-.704 1.013-.748 1.63a2.122 2.122 0 0 0 0 .528s0 .022-.022.022v-.022l-.154-.529C1.01 10.896.307 10.258.307 8.76l-.022-.022c-.044.088-.066.176-.11.265-.639 2.07.66 3.567.924 3.875s.617.683.815.969M.99 9.729l.375 1.145s.022 0 .022-.022c.198-.594.506-1.145.858-1.651l.066-.088c.309-.375.573-.771.793-1.19.132-.308.33-.968.353-1.034H3.39c-.22.33-.484.616-.792.88a2.991 2.991 0 0 0-.925 1.035c-.022.066-.066.132-.088.199l-.132.374s-.022.044-.022 0 .044-.55.044-.639c0-.44-.044-.88-.132-1.299a4.056 4.056 0 0 1 .022-1.63c0-.043.022-.087.044-.131 0-.022.022-.066.022-.089s0-.022-.022-.044C.835 6.25.505 7.527.637 8.496c.11.418.22.837.352 1.233m.793-3.215.022 1.057v.33h.022c.308-.396.66-.748 1.035-1.078l.88-.75a2.81 2.81 0 0 0 .683-1.32v-.066h-.022l-.11.154a2.773 2.773 0 0 1-.748.682c-.529.33-.881.573-1.19.991-.021.022-.044.022-.021-.022l.198-.726c.11-.419.154-.97.308-1.344.088-.22.242-.44.418-.616v-.044c-.044 0-.066.022-.11.044-.55.286-.947.749-1.167 1.277-.132.33-.22.683-.198 1.057v.374M2.949 5.48l.969-.792c.286-.287.55-.595.77-.947a4.88 4.88 0 0 1 .815-.969l.066-.066V2.66a3.646 3.646 0 0 0-1.519.749c-.815.638-1.079 1.893-1.1 2.07m8.851 6.826c.066-.089-.088-.155-.132 0-.044.154.066.11.132 0m1.674-3.876c-.067-.022-.309.264-.265.308a.732.732 0 0 0 .265-.308m.044-.044c.044.022.198-.066.176-.088-.022-.022-.22-.11-.22-.066 0 .088.022.132.044.154m2.972 2.73c.088-.022.066-.154 0-.154s-.154.11-.132.11c.022 0 .088.066.132.044m-1.079-2.928c-.066 0-.088.066-.022.11.066.022.11 0 .154-.022a.149.149 0 0 0 .088-.132c0-.066-.088-.154-.044-.198s.11.022.155 0 .066-.066.066-.11c0-.045-.022-.177-.11-.177s-.177.177-.177.177a.188.188 0 0 0 0 .154c.022.088 0 .198-.11.198m1.454.022c0 .044.11.33.132.396.022.066.044.308.088.286.044-.022.044-.154.022-.22a2.843 2.843 0 0 0-.11-.462c-.022-.088-.176-.419-.22-.397-.045.023.066.22.088.309.022.088-.022.044 0 .088m-.771-3.744c.066.022.066-.11-.044-.198-.11-.088-.286-.044-.242 0 .088.066.176.154.286.198m-3.303-.946c-.154-.088-.022-.22-.132-.309-.132-.044-.264-.022-.353.066-.11.133.133.088.199.133.066.044.286.198.308.176.022-.022 0-.066-.022-.066m.88-.44c-.197-.089-.924-.089-.902.11s.418 0 .528 0 .55-.023.375-.11m-2.004 8.499c-.044-.022-.11.022-.132-.022-.022-.044-.066-.022-.066 0s-.022.066.022.11a.134.134 0 0 0 .176 0 .067.067 0 0 0 0-.088m-.418-1.475c.066 0 .066-.044.088-.044s0 .044.066.044.132-.155-.066-.155c-.155 0-.133.155-.088.155m.264.176c-.11-.022-.088.044-.176.044-.133.022-.022-.088-.066-.132-.022-.022-.089.088-.11.154 0 .044 0 .132.043.154l.419.044c.088 0 0-.242-.11-.264M10.15 11.71c.044 0 .066-.132.044-.198s-.155-.022-.155.022.089.176.11.176m-1.761 0c0-.044 0-.22-.044-.264s-.044.022-.066.022-.022-.088-.044-.088 0 .132.044.22.11.22.11.11m-.044-.396c.044-.132.066-.265.066-.397 0-.11-.066-.198-.088-.198s0 .066.022.176c0 .11-.044.22-.066.33 0 .023.044.133.066.089m-2.246 4.932c3.28 3.281 8.566 3.281 11.847 0s3.28-8.566 0-11.847-8.566-3.28-11.847 0-3.281 8.588 0 11.847M4.006 10.5h1.277c.022.66.132 1.3.33 1.916a.782.782 0 0 1-.198-.088c-.088-.044-.154.022-.176.022-.088 0-.198-.066-.198 0s.088.022.088.066-.22.044-.242-.044-.066-.177-.088-.066-.11.088-.154.11c-.022.022-.044.066-.044.11s-.11.022-.11.088.066.088.088.154.088.11.044.132c-.044.022-.022-.022-.066 0s.198.683.242.66-.066-.22-.066-.308.022-.11.088-.154.242.264.308.22-.022-.088.044-.11.264.287.33.199c.044-.067.088.044.088.066.067.11.177.11.243.242s.22.374.33.374c.11 0 .044-.11.088-.11s.088.154.154.242a.32.32 0 0 0 .198.132c.154.199.33.397.507.595l-.903.903A7.735 7.735 0 0 1 4.006 10.5m7.289-1.828-.089.044a1.234 1.234 0 0 0-.33.22l-.903-.902c.529-.463 1.19-.749 1.872-.771V8.54a1.766 1.766 0 0 0-.462.11c.044-.088.132-.176.132-.176s-.154.088-.22.198m-.683 2.092s0 .022 0 0v.044c0-.044-.022-.066-.044-.11-.022-.022-.044-.044-.066-.044h-.11l-.044.022h-.309c-.044 0-.066 0-.066-.022-.022-.088.11-.022.199-.286.022-.022.022-.066.044-.088l.044-.066.022-.022c.044-.044.088-.044.132-.044h.044l.044.044.066.132c.022.022.044.022.044.044a.304.304 0 0 1 .088.066l.022.022v.022c.022.022.022.022.044.022h.088c.044-.022.044 0 .066 0v.022c0 .022 0 .022-.022.044 0 .022-.022.022-.022.044-.022.022-.044.044-.066.044-.044 0-.088-.022-.11-.022s-.044 0-.044.022v.11m-2.422 2.114a.806.806 0 0 1-.088-.396.742.742 0 0 0-.11-.375c-.022-.088-.044-.176-.044-.264 0-.154-.133-.11-.133-.154s.11 0 .11-.044-.132-.22-.242-.264c-.11-.044-.066-.11-.066-.176s0-.133-.044-.177c-.022-.088 0-.242.11-.242.044 0 .11.044.177 0 .066-.044.022-.176.022-.286h.616c0 .088.022.198.022.286-.044.022-.066.066-.044.088.022.022.044.044.066.022.11.639.396 1.233.837 1.718l-.903.903c-.066-.066-.132-.155-.198-.243v-.066c0-.154-.11-.242-.154-.374m-.793-1.497a5.11 5.11 0 0 1-.11-.837h.528c-.044.066-.154.132-.176.198s-.154.286-.066.374c.198.22-.044.309-.176.265m.11 3.259-.11.11-.154-.154c.088-.044.176-.022.264.044m1.365-5.66c-.022 0-.022.023-.044.023-.066.066-.242.044-.22.11s.485-.155.485-.11-.199.11-.33.176-.177.176-.397.176c-.11 0-.154.088-.198.154a1.64 1.64 0 0 0-.154.264.864.864 0 0 1-.088.397h-.64a4.76 4.76 0 0 1 1.256-3.04l.903.904a6.02 6.02 0 0 0-.573.946m.837-.66.793.793h-.088c-.088 0-.088-.066-.154-.066-.133.022-.155.066-.177.044a1.234 1.234 0 0 0-.33-.22.604.604 0 0 0-.44.021c-.022 0-.022.022-.044.022.154-.198.308-.396.44-.594m-1.1 1.607c0 .088-.023.177-.023.265h-.462c-.022-.066 0-.133.044-.199.044-.088.154-.132.264-.11a.68.68 0 0 1 .176.044m.396 1.035.045.066c.044.044.088.088.132.066.044-.022.154 0 .176 0 .066.022.11.066.154.11.044.067.132.023.198.067s.132.088.044.132c-.088.044.088.132.11.132s.044-.044.044-.11c0-.022.044-.11.11-.088.066.022.265.264.33.176.067-.088.023-.198.045-.242 0-.022.022-.044.044-.044.066.11.11.198.198.286l-.903.903a2.769 2.769 0 0 1-.727-1.454m.705-3.149-.88-.902a4.76 4.76 0 0 1 3.038-1.255v1.277c-.793.022-1.541.33-2.158.88M8.542 6.602 7.64 5.7a6.395 6.395 0 0 1 4.206-1.74v1.277a5.072 5.072 0 0 0-3.303 1.365m-.264.243a5.12 5.12 0 0 0-1.365 3.303H5.635a6.395 6.395 0 0 1 1.74-4.206l.903.903zM6.913 10.5c0 .242.022.462.066.705-.022 0-.022-.067-.088-.045s-.309.44-.419.617c-.088.154.044.484-.088.595a1.247 1.247 0 0 1-.396.066h-.022a6.256 6.256 0 0 1-.353-1.894l1.3-.044zm4.91 7.839a7.94 7.94 0 0 1-5.35-2.224l.902-.903a6.746 6.746 0 0 0 4.448 1.85v1.277zm0-1.63a6.395 6.395 0 0 1-4.206-1.74l.154-.153a.481.481 0 0 0 .11.066.488.488 0 0 0 .309.044c.088-.022.264-.176.374-.176.11 0 .286.044.396-.022s-.066-.287-.132-.397c-.022-.022-.022-.044-.044-.066a4.954 4.954 0 0 0 3.083 1.167l-.044 1.277zm0-1.651a4.76 4.76 0 0 1-3.039-1.255l.903-.903c.419.374.925.66 1.497.793-.198.088-.286.22-.264.33.022.11-.132.176-.132.308s.176.22.198.353c.022.066.176.176.309.264.176.044.352.066.506.044l.022.066zm-.044-1.762c-.066-.044-.11.044-.198.088a3.176 3.176 0 0 1-1.63-.748l.903-.903c.286.22.617.374.969.396 0 .044.044.088.044.177s-.066.132-.044.176.22 0 .242-.066c.022-.066-.066-.11-.088-.177-.022-.044-.022-.066-.044-.11H12c.066 0 .132 0 .198-.022a.047.047 0 0 0 .044-.044c0-.022.022-.044.022-.066s.022-.022.022-.044l.022.022c.022.044.067.176.11.154s.067-.22.045-.264a.165.165 0 0 1 0-.198c0-.022.022-.154.066-.132s0 .132 0 .176c0 .066.044.154.11.11.044-.022.088-.088.132-.066s-.11.066-.132.11c-.022.044.066.066.044.088-.022.022-.044 0-.066.022-.022.022.044.154 0 .176s-.198.066-.242.088-.089-.022-.067-.044 0-.11-.044-.11-.044.022-.044.066.044.11.044.133-.066.044-.11.066c-.044.066-.11.132-.176.176s-.198.044-.198.088.066.044.088.066c.044.066.066.154-.022.198s-.198-.066-.242-.044c-.044.022-.066.132-.088.264-.022.132.242.176.374.11.088-.044.066-.176.154-.22s.066-.132.154-.11c.088.022.066-.066.155-.066s.088.066.198.088c.176.044.176.176.198.11s.044-.11-.088-.154-.198-.198-.088-.154c.132.066.242.066.264.132s.154.044.176.11c.022.11.11 0 .044-.066s-.044-.088 0-.132.066.022.132-.066-.022-.066-.044-.11 0-.286.088-.242.176-.022.132-.044c-.044-.023.022-.155.044-.155s0 .088.022.11.243-.066.265.045-.154.176-.198.176c-.089 0-.155.088-.22.176-.067.088-.133.11-.089.198s.132.066.22.022.155-.11.199-.132c.088-.044.154.22.11.264s-.132.066-.176.11c-.133.066-.265.132-.419.132-.088.022-.088.044-.11.132-.022.089-.418.022-.506.022s.066-.198-.066-.176l-.397.066c-.022 0-.154.11-.264.022m1.167 2.048c.11.044.22.132.286.22.066.11.088.155.044.265-.11.198-.066.33.154.396.133.044.177.176.265.264a6.83 6.83 0 0 1-1.498.22v-1.277c.243-.022.507-.044.75-.088m-.75-.264v-.154c.287-.044.22.132.419.066a.171.171 0 0 1 .176.044 5.4 5.4 0 0 0-.595.044m0 3.281v-1.3a6.68 6.68 0 0 0 1.96-.352c.022.023.044.023.066.023a.462.462 0 0 0 .242-.089 2.59 2.59 0 0 0 .595-.33 6.678 6.678 0 0 0 1.585-1.123l.903.903c-1.431 1.41-3.347 2.202-5.35 2.268m3.567-11.516.308-.309a.545.545 0 0 0 .308.176c.11.023.154.067.176.177.022.11.132.154.243.176s.176.154.264.154.374.396.484.528c.066.066.154.177.22.089.066-.089.066-.067.11-.089a6.47 6.47 0 0 1 .551 2.4h-1.277c0-.286-.044-.572-.11-.858a.61.61 0 0 0 .066-.286c0-.089-.088-.133-.154-.067a3.14 3.14 0 0 0-.176-.484c-.023-.088-.045-.198-.067-.286 0-.022-.044-.044-.088-.088-.044-.088-.066-.154-.11-.22.066-.045.088-.155 0-.133-.132.022-.044-.066-.088-.11s-.044 0-.066.022a6.132 6.132 0 0 0-.572-.748v-.022c-.044 0-.044-.022-.022-.022m.77 7.464c-.044-.088-.066-.198-.11-.286-.022-.088-.198-.088-.198-.044 0 .088 0 .176-.022.264v.022l-.462-.462a5.12 5.12 0 0 0 1.365-3.303h1.277a6.295 6.295 0 0 1-1.74 4.184l-.066-.066a.528.528 0 0 0-.044-.309m-1.057.881c.066-.11.199-.308.265-.418.066-.11-.177-.264-.309-.309s-.132-.11-.132-.22c.066-.044.132-.11.198-.176l.903.903a6.325 6.325 0 0 1-.969.749c-.022-.044.132-.199.176-.265s-.176-.154-.132-.264m.55-5.263c-.11-.154.045-.176.199-.242.088-.044.198.022.198-.022s.044-.132.088-.154c.044-.022.11-.066.132-.11 0 .044.022.088.022.132a.502.502 0 0 0-.066.242c0 .066 0 .154.066 0 0-.022.022-.022.022-.044.044.154.044.286.044.419h-.946v-.022c.066-.11.308-.089.242-.199m.176-1.805s0 .022-.022.022c-.022.022-.132-.154-.132-.022s.044.176.132.198c.088.022.044.066.11.088.022 0 .066.022.088.044.11.242.176.484.242.749a.304.304 0 0 0-.088.066c-.044.044-.022.132-.066.198-.066.11-.088.176-.264.132-.11-.044-.022-.176 0-.286s.066-.088.066-.154-.22-.309-.33-.22c-.11.088-.088.176-.176.264-.044.044-.088.044-.155 0s-.088-.088-.066-.132c.022-.044-.154-.243-.22-.33a.46.46 0 0 0-.352-.177 3.461 3.461 0 0 0-.419-.572l.903-.903c.309.33.55.66.749 1.035m-1.52.616-.043.066c-.022.044-.133-.044-.155-.022-.022.022.155.243-.022.177-.176-.067-.066-.067-.066-.133s-.154-.11-.066-.154 0-.11.088-.132c.088-.022.066-.11-.044-.132-.11-.022-.088.242-.154.198-.066-.022-.132-.022-.198-.022l.308-.308a.199.199 0 0 0 .11.022c.044.176.155.308.243.44m-.353 4.47c.132.022.287.044.419.088.088.044.154.133.22.022.132-.198.22-.418.264-.66.044-.33-.022-.44-.066-.44-.044 0-.132.088-.22.088-.044 0-.044.088-.044.154s-.088.132-.11.088-.066-.022-.044.022-.176.022-.265-.022c-.132-.066.155-.066.287-.176.11-.088.22-.199.33-.309.066-.11.066-.242.176-.33s.286-.066.308-.198.044-.11.11-.088.683-.022.683-.22c0-.089-.132-.199-.264-.22-.088 0-.11-.177-.154-.265a1.642 1.642 0 0 0-.154-.264h.924a4.76 4.76 0 0 1-1.255 3.039l-.022-.022v-.088c.022-.177-.11-.463-.154-.419s0 .044-.132.242c-.044.066-.11.177-.198.177s-.088-.045-.22-.023a.948.948 0 0 1-.353 0 2.447 2.447 0 0 1-.594-.286c.022-.022.088.022.088-.044s.352.132.44.154m3.457 2.665-.902-.903a6.746 6.746 0 0 0 1.85-4.448h1.298a7.902 7.902 0 0 1-2.246 5.35m2.246-5.724h-1.299a6.556 6.556 0 0 0-.66-2.73l.022-.023c.088-.088-.419-.749-.507-.815s-.176-.176-.286-.286a3.927 3.927 0 0 1-.484-.572l.946-.947a7.878 7.878 0 0 1 2.268 5.373m-7.839-7.84a8.037 8.037 0 0 1 5.373 2.225l-.88.88c-.045-.022-.089-.044-.067-.088.044-.066-.066-.066-.088-.242a.698.698 0 0 0-.33-.418c-.11-.066-.176-.154-.286-.199-.11-.044-.33-.176-.44-.132a.782.782 0 0 1-.22.044 6.714 6.714 0 0 0-3.04-.792l-.022-1.277zm0 1.652c.947.022 1.85.264 2.709.683a.918.918 0 0 0 .176.396c.044.11.11.198.176.308.066.066.022.198.044.309 0 .044.044.088.066.132v.176c0 .022.088.022.154-.022s.11-.132.199-.11.198.198.264.308l-.419.418c-.044-.088-.088-.198-.066-.198s.066.022.088.022c.089 0-.066-.066-.066-.088-.066-.066-.066-.154-.154-.22s-.22-.022-.264-.11a1.207 1.207 0 0 0-.352-.397c-.022 0 .176.243.11.287s-.309-.154-.33-.11c-.023.044.264.154.352.242.044.044.132.176.22.286a5.124 5.124 0 0 0-2.907-1.035V3.96zm0 1.63a4.76 4.76 0 0 1 3.04 1.255l-.904.902a3.498 3.498 0 0 0-2.136-.88V5.589zm0 1.651a3.04 3.04 0 0 1 1.872.77l-.044.045-.044-.022c-.11-.044-.33.176-.286.198.044.022.132-.088.176-.066h.022l-.374.396c-.11.044-.22.132-.22.198v.022l-.133.132-.066-.066a1.117 1.117 0 0 0-.352-.198c.066-.044.088-.11.11-.198 0-.132-.044-.088-.11-.022s-.132.088-.176.154a.997.997 0 0 0-.353-.066V7.241h-.022zm-.154 1.63c.022.043 0 .088-.022.11-.044.044-.176-.11-.198.022-.044.132.088.066.088.088a.408.408 0 0 0 .264.154c.088 0 .22 0 .22.088 0 .044.11.044.133.088 0 .066.066.176.11.154s.11.022.132.066c.022.044 0 .066-.022.11-.066.066.066.044.088.176s-.11.044-.132.133c-.044.066-.088.11-.132.176-.022.022.022.066.044.044.022-.022.066-.088.132-.088s.132.242.198.264c.066.022.044.11.066.132s-.11 0-.088.044c.022.044.154.066.154.132-.022.066-.066.132-.154.132-.066 0-.176-.154-.176-.11s.044.176.11.176.22-.066.154.022-.044.22-.088.22-.066 0-.022.067c.022.066 0 .132-.044.198-.044.044-.154 0-.154-.022s.132-.022.132-.088-.066-.088-.198-.044c-.066.022-.088-.022-.132-.022s-.176.154-.176.176v.11a.372.372 0 0 1-.067.22c-.088.022-.154.022-.242.022-.352 0-.704-.154-.969-.374a.415.415 0 0 1 .177-.044c.066.022.088-.022.132-.044.044-.022.154.044.22 0s.22-.33.198-.397.154-.176.132-.198-.044.022-.044 0 .044-.022 0-.11-.11-.044-.154-.044c-.066-.044-.176-.066-.198-.044-.022.022-.088-.044-.11-.022-.022 0-.066.022-.066.066-.022.044.022.088.022.132-.022.088-.155.154-.155.22s-.066.022-.088.044 0 .066-.044.066-.11.11-.154.199c-.066-.088-.132-.199-.198-.287.044-.022.088-.044.11-.022.066.044.33-.418.286-.55s-.11-.044-.176-.022-.066-.044-.044-.066.308-.022.154-.11c-.066-.044-.242-.044-.22-.11s.11 0 .132 0c.11.044.176-.177.242-.177.11 0 .067-.22-.044-.154s-.154.044-.198.11-.154.154-.154.066c0-.044.242-.176.286-.242a.48.48 0 0 0 .11-.176c.023-.066.33-.11.397-.154.044-.044.088-.11.088-.176s-.088-.044-.11-.088.11 0 .11-.066-.11 0-.154-.044c0-.022 0-.022.022-.044.198-.067.33-.089.484-.089h.044m-.242-6.561v1.277a6.746 6.746 0 0 0-4.448 1.85l-.903-.903a7.94 7.94 0 0 1 5.351-2.224M6.208 4.797l.903.903a6.746 6.746 0 0 0-1.85 4.448H3.984a8.151 8.151 0 0 1 2.224-5.351" }) + ] + } + ); +}); + +exports.default = SiUnitednations; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.d.ts new file mode 100644 index 000000000..6487f9260 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009EDB"; +declare const SiUnitednations: IconType; +export { SiUnitednations as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.mjs new file mode 100644 index 000000000..45c453e3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnitednations.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009EDB"; +const SiUnitednations = React.forwardRef(function SiUnitednations2({ title = "United Nations", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.024 20.255a3.123 3.123 0 0 1-2.048.242 7.117 7.117 0 0 1-1.366-.463l-.968-.396a4.736 4.736 0 0 0-2.599-.066h-.088a4.357 4.357 0 0 0-2.598.066c-.33.11-.639.264-.969.396-.44.199-.903.375-1.365.485a3.14 3.14 0 0 1-2.048-.242l-.088-.044c-.022 0-.022 0-.022.022a3.335 3.335 0 0 0 2.752.991 3.998 3.998 0 0 0 1.718-.661l.925-.617a1.57 1.57 0 0 1 1.167-.22c.22.022.044.132.022.154a8.807 8.807 0 0 0-1.564.97c-.33.241-.925.814-.925.814l.44.374.485-.528a8.741 8.741 0 0 1 2.026-1.564.165.165 0 0 1 .198 0 8.741 8.741 0 0 1 2.026 1.564l.485.528.44-.374-.925-.815a8.808 8.808 0 0 0-1.563-.969c-.044-.022-.198-.132.022-.154.396-.088.814 0 1.167.22l.925.617a3.998 3.998 0 0 0 1.717.66c.397.045.815.023 1.211-.088a3.761 3.761 0 0 0 1.542-.902s-.022-.022-.044-.022l-.088.022m2.157-1.916a3.1 3.1 0 0 1-.924.484c-.463.133-.97.22-1.454.22-.638.023-1.255.067-1.893.155-.044 0-.066 0-.044-.022.55-.22.99-.66 1.233-1.19l.616-1.254v-.045c-.044.022-.66.551-.947.815l-1.035 1.013a4.02 4.02 0 0 1-1.607.837h-.022l-.022.022 1.189.286a7.522 7.522 0 0 0 1.563.286 3.669 3.669 0 0 0 3.392-1.585c0-.022-.023-.022-.045-.022m1.938-2.95a4.643 4.643 0 0 1-1.1.968c-.353.242-.727.44-1.124.617a5.472 5.472 0 0 0-1.387.814l-.088.067c-.022 0-.022 0-.022-.023 0-.022.66-.682.859-2.07.022-.506.11-.99.22-1.475v-.044a6.42 6.42 0 0 0-1.057 1.894l-.396 1.123c-.155.506-.44.969-.815 1.343l-.044.044v.022c.044 0 .088-.022.132-.022l1.277-.264a4.454 4.454 0 0 0 1.938-.815 4.491 4.491 0 0 0 1.387-1.63c.088-.175.154-.352.22-.528.044-.044.022-.044 0-.022m.837-3.303a3.917 3.917 0 0 1-1.013 1.586 14.717 14.717 0 0 0-1.453 1.651c0 .022-.044 0-.022-.022a4.45 4.45 0 0 0 .132-1.871c-.088-.529-.308-1.101-.374-1.74l-.023-.022c0 .022-.022.044-.022.066a6.27 6.27 0 0 0-.264 1.277c-.022.529.066 1.211.022 1.74-.044.616-.088 1.255-.374 1.805v.044l1.321-.814a4.959 4.959 0 0 0 1.387-1.322A3.947 3.947 0 0 0 24 12.151v-.088c-.022 0-.044.022-.044.022m-1.41.353c.023 0 .023 0 0 0 0 .022 0 0 0 0 0-.177 0-.353-.021-.529-.044-.616-.419-1.123-.749-1.651a8.184 8.184 0 0 1-.595-1.057s-.022-.022-.044-.022c0 .044 0 .242.022.352.11.88.33 1.762.661 2.598.198.529.264 1.08.22 1.63 0 .044 0 .044.022.066.198-.286.595-.683.837-.991.242-.308 1.563-1.806.925-3.875-.022-.089-.066-.177-.11-.265l-.022.022c0 1.498-.727 2.136-1.013 3.15a4.91 4.91 0 0 0-.132.572m.022-3.083-.132-.352-.088-.199a3.062 3.062 0 0 0-.903-1.013 4.289 4.289 0 0 1-.793-.88h-.066c.022.066.22.726.352 1.035.22.418.485.836.793 1.189l.066.088c.374.506.66 1.057.859 1.651 0 .022.022.022.022.022l.374-1.145c.132-.396.242-.815.33-1.233.133-.99-.176-2.246-.748-2.95 0 0-.022.021-.022.044l.022.088.044.132c.11.528.132 1.1.022 1.63-.088.418-.11.858-.11 1.298 0 .066.044.617.044.639s-.022 0-.044 0m-1.784-5.571c.176.176.33.374.419.616.154.375.198.925.308 1.344l.198.726c0 .022-.022.044-.044.022a4.326 4.326 0 0 0-1.19-.99c-.307-.177-.55-.419-.77-.683l-.11-.154s-.022-.022-.044 0v.066c.11.484.33.947.683 1.32.286.265.594.507.88.75a9.58 9.58 0 0 1 1.057 1.057s.022.022.022 0v-.353l.022-1.057V6.14c0-.352-.066-.727-.198-1.057-.22-.55-.638-.99-1.145-1.255-.022-.022-.066-.022-.11-.044 0 0 0 .022.022.044M18.54 2.793c.308.286.573.617.815.969.22.352.462.66.77.947.199.198.793.66.947.792-.022-.176-.308-1.43-1.079-2.047a3.93 3.93 0 0 0-1.519-.75v.045l.066.044M6.208 19.946a7.118 7.118 0 0 0 1.52-.286l1.188-.286h.022s0-.022-.022-.022h-.022a4.258 4.258 0 0 1-1.63-.837l-1.034-.99-.947-.816v.045c.088.132.419.858.617 1.255.242.55.682.969 1.233 1.189.022.022 0 .022-.044.022a17.804 17.804 0 0 0-1.894-.154c-.484 0-.99-.088-1.453-.22a3.102 3.102 0 0 1-.925-.485h-.044a3.843 3.843 0 0 0 1.761 1.365 4.808 4.808 0 0 0 1.674.22m-.506-1.299c.044 0 .066.022.132.022v-.022l-.044-.044a3.502 3.502 0 0 1-.815-1.343l-.396-1.123a6.42 6.42 0 0 0-1.057-1.894v.044c.132.485.198.97.242 1.476.198 1.365.859 2.025.859 2.047 0 .022 0 .045-.022.022l-.089-.066a5.472 5.472 0 0 0-1.387-.814 6.931 6.931 0 0 1-1.123-.617 4.643 4.643 0 0 1-1.1-.969H.878c.066.176.132.353.22.529.33.638.815 1.21 1.41 1.63.572.44 1.233.726 1.937.814.419.11.837.22 1.256.308m-3.546-2.862 1.322.814s.022-.022.022-.044c-.287-.572-.33-1.189-.375-1.805-.044-.55.044-1.211.022-1.74a6.477 6.477 0 0 0-.264-1.299c0-.022-.022-.044-.022-.066l-.022.022c-.044.639-.286 1.211-.374 1.74a4.502 4.502 0 0 0 .132 1.871c.022.022-.022.044-.022.022a13 13 0 0 0-1.454-1.65 3.843 3.843 0 0 1-1.01-1.565s-.023-.022-.045-.022 0 .044 0 .088c0 .815.243 1.63.727 2.312.352.507.815.97 1.365 1.322m-.242-1.938c.022-.022.022-.022.022-.066-.044-.55.022-1.123.242-1.63.309-.836.529-1.695.661-2.598 0-.11.022-.308.022-.352-.022 0-.022 0-.022.022a8.184 8.184 0 0 1-.595 1.057c-.352.484-.704 1.013-.748 1.63a2.122 2.122 0 0 0 0 .528s0 .022-.022.022v-.022l-.154-.529C1.01 10.896.307 10.258.307 8.76l-.022-.022c-.044.088-.066.176-.11.265-.639 2.07.66 3.567.924 3.875s.617.683.815.969M.99 9.729l.375 1.145s.022 0 .022-.022c.198-.594.506-1.145.858-1.651l.066-.088c.309-.375.573-.771.793-1.19.132-.308.33-.968.353-1.034H3.39c-.22.33-.484.616-.792.88a2.991 2.991 0 0 0-.925 1.035c-.022.066-.066.132-.088.199l-.132.374s-.022.044-.022 0 .044-.55.044-.639c0-.44-.044-.88-.132-1.299a4.056 4.056 0 0 1 .022-1.63c0-.043.022-.087.044-.131 0-.022.022-.066.022-.089s0-.022-.022-.044C.835 6.25.505 7.527.637 8.496c.11.418.22.837.352 1.233m.793-3.215.022 1.057v.33h.022c.308-.396.66-.748 1.035-1.078l.88-.75a2.81 2.81 0 0 0 .683-1.32v-.066h-.022l-.11.154a2.773 2.773 0 0 1-.748.682c-.529.33-.881.573-1.19.991-.021.022-.044.022-.021-.022l.198-.726c.11-.419.154-.97.308-1.344.088-.22.242-.44.418-.616v-.044c-.044 0-.066.022-.11.044-.55.286-.947.749-1.167 1.277-.132.33-.22.683-.198 1.057v.374M2.949 5.48l.969-.792c.286-.287.55-.595.77-.947a4.88 4.88 0 0 1 .815-.969l.066-.066V2.66a3.646 3.646 0 0 0-1.519.749c-.815.638-1.079 1.893-1.1 2.07m8.851 6.826c.066-.089-.088-.155-.132 0-.044.154.066.11.132 0m1.674-3.876c-.067-.022-.309.264-.265.308a.732.732 0 0 0 .265-.308m.044-.044c.044.022.198-.066.176-.088-.022-.022-.22-.11-.22-.066 0 .088.022.132.044.154m2.972 2.73c.088-.022.066-.154 0-.154s-.154.11-.132.11c.022 0 .088.066.132.044m-1.079-2.928c-.066 0-.088.066-.022.11.066.022.11 0 .154-.022a.149.149 0 0 0 .088-.132c0-.066-.088-.154-.044-.198s.11.022.155 0 .066-.066.066-.11c0-.045-.022-.177-.11-.177s-.177.177-.177.177a.188.188 0 0 0 0 .154c.022.088 0 .198-.11.198m1.454.022c0 .044.11.33.132.396.022.066.044.308.088.286.044-.022.044-.154.022-.22a2.843 2.843 0 0 0-.11-.462c-.022-.088-.176-.419-.22-.397-.045.023.066.22.088.309.022.088-.022.044 0 .088m-.771-3.744c.066.022.066-.11-.044-.198-.11-.088-.286-.044-.242 0 .088.066.176.154.286.198m-3.303-.946c-.154-.088-.022-.22-.132-.309-.132-.044-.264-.022-.353.066-.11.133.133.088.199.133.066.044.286.198.308.176.022-.022 0-.066-.022-.066m.88-.44c-.197-.089-.924-.089-.902.11s.418 0 .528 0 .55-.023.375-.11m-2.004 8.499c-.044-.022-.11.022-.132-.022-.022-.044-.066-.022-.066 0s-.022.066.022.11a.134.134 0 0 0 .176 0 .067.067 0 0 0 0-.088m-.418-1.475c.066 0 .066-.044.088-.044s0 .044.066.044.132-.155-.066-.155c-.155 0-.133.155-.088.155m.264.176c-.11-.022-.088.044-.176.044-.133.022-.022-.088-.066-.132-.022-.022-.089.088-.11.154 0 .044 0 .132.043.154l.419.044c.088 0 0-.242-.11-.264M10.15 11.71c.044 0 .066-.132.044-.198s-.155-.022-.155.022.089.176.11.176m-1.761 0c0-.044 0-.22-.044-.264s-.044.022-.066.022-.022-.088-.044-.088 0 .132.044.22.11.22.11.11m-.044-.396c.044-.132.066-.265.066-.397 0-.11-.066-.198-.088-.198s0 .066.022.176c0 .11-.044.22-.066.33 0 .023.044.133.066.089m-2.246 4.932c3.28 3.281 8.566 3.281 11.847 0s3.28-8.566 0-11.847-8.566-3.28-11.847 0-3.281 8.588 0 11.847M4.006 10.5h1.277c.022.66.132 1.3.33 1.916a.782.782 0 0 1-.198-.088c-.088-.044-.154.022-.176.022-.088 0-.198-.066-.198 0s.088.022.088.066-.22.044-.242-.044-.066-.177-.088-.066-.11.088-.154.11c-.022.022-.044.066-.044.11s-.11.022-.11.088.066.088.088.154.088.11.044.132c-.044.022-.022-.022-.066 0s.198.683.242.66-.066-.22-.066-.308.022-.11.088-.154.242.264.308.22-.022-.088.044-.11.264.287.33.199c.044-.067.088.044.088.066.067.11.177.11.243.242s.22.374.33.374c.11 0 .044-.11.088-.11s.088.154.154.242a.32.32 0 0 0 .198.132c.154.199.33.397.507.595l-.903.903A7.735 7.735 0 0 1 4.006 10.5m7.289-1.828-.089.044a1.234 1.234 0 0 0-.33.22l-.903-.902c.529-.463 1.19-.749 1.872-.771V8.54a1.766 1.766 0 0 0-.462.11c.044-.088.132-.176.132-.176s-.154.088-.22.198m-.683 2.092s0 .022 0 0v.044c0-.044-.022-.066-.044-.11-.022-.022-.044-.044-.066-.044h-.11l-.044.022h-.309c-.044 0-.066 0-.066-.022-.022-.088.11-.022.199-.286.022-.022.022-.066.044-.088l.044-.066.022-.022c.044-.044.088-.044.132-.044h.044l.044.044.066.132c.022.022.044.022.044.044a.304.304 0 0 1 .088.066l.022.022v.022c.022.022.022.022.044.022h.088c.044-.022.044 0 .066 0v.022c0 .022 0 .022-.022.044 0 .022-.022.022-.022.044-.022.022-.044.044-.066.044-.044 0-.088-.022-.11-.022s-.044 0-.044.022v.11m-2.422 2.114a.806.806 0 0 1-.088-.396.742.742 0 0 0-.11-.375c-.022-.088-.044-.176-.044-.264 0-.154-.133-.11-.133-.154s.11 0 .11-.044-.132-.22-.242-.264c-.11-.044-.066-.11-.066-.176s0-.133-.044-.177c-.022-.088 0-.242.11-.242.044 0 .11.044.177 0 .066-.044.022-.176.022-.286h.616c0 .088.022.198.022.286-.044.022-.066.066-.044.088.022.022.044.044.066.022.11.639.396 1.233.837 1.718l-.903.903c-.066-.066-.132-.155-.198-.243v-.066c0-.154-.11-.242-.154-.374m-.793-1.497a5.11 5.11 0 0 1-.11-.837h.528c-.044.066-.154.132-.176.198s-.154.286-.066.374c.198.22-.044.309-.176.265m.11 3.259-.11.11-.154-.154c.088-.044.176-.022.264.044m1.365-5.66c-.022 0-.022.023-.044.023-.066.066-.242.044-.22.11s.485-.155.485-.11-.199.11-.33.176-.177.176-.397.176c-.11 0-.154.088-.198.154a1.64 1.64 0 0 0-.154.264.864.864 0 0 1-.088.397h-.64a4.76 4.76 0 0 1 1.256-3.04l.903.904a6.02 6.02 0 0 0-.573.946m.837-.66.793.793h-.088c-.088 0-.088-.066-.154-.066-.133.022-.155.066-.177.044a1.234 1.234 0 0 0-.33-.22.604.604 0 0 0-.44.021c-.022 0-.022.022-.044.022.154-.198.308-.396.44-.594m-1.1 1.607c0 .088-.023.177-.023.265h-.462c-.022-.066 0-.133.044-.199.044-.088.154-.132.264-.11a.68.68 0 0 1 .176.044m.396 1.035.045.066c.044.044.088.088.132.066.044-.022.154 0 .176 0 .066.022.11.066.154.11.044.067.132.023.198.067s.132.088.044.132c-.088.044.088.132.11.132s.044-.044.044-.11c0-.022.044-.11.11-.088.066.022.265.264.33.176.067-.088.023-.198.045-.242 0-.022.022-.044.044-.044.066.11.11.198.198.286l-.903.903a2.769 2.769 0 0 1-.727-1.454m.705-3.149-.88-.902a4.76 4.76 0 0 1 3.038-1.255v1.277c-.793.022-1.541.33-2.158.88M8.542 6.602 7.64 5.7a6.395 6.395 0 0 1 4.206-1.74v1.277a5.072 5.072 0 0 0-3.303 1.365m-.264.243a5.12 5.12 0 0 0-1.365 3.303H5.635a6.395 6.395 0 0 1 1.74-4.206l.903.903zM6.913 10.5c0 .242.022.462.066.705-.022 0-.022-.067-.088-.045s-.309.44-.419.617c-.088.154.044.484-.088.595a1.247 1.247 0 0 1-.396.066h-.022a6.256 6.256 0 0 1-.353-1.894l1.3-.044zm4.91 7.839a7.94 7.94 0 0 1-5.35-2.224l.902-.903a6.746 6.746 0 0 0 4.448 1.85v1.277zm0-1.63a6.395 6.395 0 0 1-4.206-1.74l.154-.153a.481.481 0 0 0 .11.066.488.488 0 0 0 .309.044c.088-.022.264-.176.374-.176.11 0 .286.044.396-.022s-.066-.287-.132-.397c-.022-.022-.022-.044-.044-.066a4.954 4.954 0 0 0 3.083 1.167l-.044 1.277zm0-1.651a4.76 4.76 0 0 1-3.039-1.255l.903-.903c.419.374.925.66 1.497.793-.198.088-.286.22-.264.33.022.11-.132.176-.132.308s.176.22.198.353c.022.066.176.176.309.264.176.044.352.066.506.044l.022.066zm-.044-1.762c-.066-.044-.11.044-.198.088a3.176 3.176 0 0 1-1.63-.748l.903-.903c.286.22.617.374.969.396 0 .044.044.088.044.177s-.066.132-.044.176.22 0 .242-.066c.022-.066-.066-.11-.088-.177-.022-.044-.022-.066-.044-.11H12c.066 0 .132 0 .198-.022a.047.047 0 0 0 .044-.044c0-.022.022-.044.022-.066s.022-.022.022-.044l.022.022c.022.044.067.176.11.154s.067-.22.045-.264a.165.165 0 0 1 0-.198c0-.022.022-.154.066-.132s0 .132 0 .176c0 .066.044.154.11.11.044-.022.088-.088.132-.066s-.11.066-.132.11c-.022.044.066.066.044.088-.022.022-.044 0-.066.022-.022.022.044.154 0 .176s-.198.066-.242.088-.089-.022-.067-.044 0-.11-.044-.11-.044.022-.044.066.044.11.044.133-.066.044-.11.066c-.044.066-.11.132-.176.176s-.198.044-.198.088.066.044.088.066c.044.066.066.154-.022.198s-.198-.066-.242-.044c-.044.022-.066.132-.088.264-.022.132.242.176.374.11.088-.044.066-.176.154-.22s.066-.132.154-.11c.088.022.066-.066.155-.066s.088.066.198.088c.176.044.176.176.198.11s.044-.11-.088-.154-.198-.198-.088-.154c.132.066.242.066.264.132s.154.044.176.11c.022.11.11 0 .044-.066s-.044-.088 0-.132.066.022.132-.066-.022-.066-.044-.11 0-.286.088-.242.176-.022.132-.044c-.044-.023.022-.155.044-.155s0 .088.022.11.243-.066.265.045-.154.176-.198.176c-.089 0-.155.088-.22.176-.067.088-.133.11-.089.198s.132.066.22.022.155-.11.199-.132c.088-.044.154.22.11.264s-.132.066-.176.11c-.133.066-.265.132-.419.132-.088.022-.088.044-.11.132-.022.089-.418.022-.506.022s.066-.198-.066-.176l-.397.066c-.022 0-.154.11-.264.022m1.167 2.048c.11.044.22.132.286.22.066.11.088.155.044.265-.11.198-.066.33.154.396.133.044.177.176.265.264a6.83 6.83 0 0 1-1.498.22v-1.277c.243-.022.507-.044.75-.088m-.75-.264v-.154c.287-.044.22.132.419.066a.171.171 0 0 1 .176.044 5.4 5.4 0 0 0-.595.044m0 3.281v-1.3a6.68 6.68 0 0 0 1.96-.352c.022.023.044.023.066.023a.462.462 0 0 0 .242-.089 2.59 2.59 0 0 0 .595-.33 6.678 6.678 0 0 0 1.585-1.123l.903.903c-1.431 1.41-3.347 2.202-5.35 2.268m3.567-11.516.308-.309a.545.545 0 0 0 .308.176c.11.023.154.067.176.177.022.11.132.154.243.176s.176.154.264.154.374.396.484.528c.066.066.154.177.22.089.066-.089.066-.067.11-.089a6.47 6.47 0 0 1 .551 2.4h-1.277c0-.286-.044-.572-.11-.858a.61.61 0 0 0 .066-.286c0-.089-.088-.133-.154-.067a3.14 3.14 0 0 0-.176-.484c-.023-.088-.045-.198-.067-.286 0-.022-.044-.044-.088-.088-.044-.088-.066-.154-.11-.22.066-.045.088-.155 0-.133-.132.022-.044-.066-.088-.11s-.044 0-.066.022a6.132 6.132 0 0 0-.572-.748v-.022c-.044 0-.044-.022-.022-.022m.77 7.464c-.044-.088-.066-.198-.11-.286-.022-.088-.198-.088-.198-.044 0 .088 0 .176-.022.264v.022l-.462-.462a5.12 5.12 0 0 0 1.365-3.303h1.277a6.295 6.295 0 0 1-1.74 4.184l-.066-.066a.528.528 0 0 0-.044-.309m-1.057.881c.066-.11.199-.308.265-.418.066-.11-.177-.264-.309-.309s-.132-.11-.132-.22c.066-.044.132-.11.198-.176l.903.903a6.325 6.325 0 0 1-.969.749c-.022-.044.132-.199.176-.265s-.176-.154-.132-.264m.55-5.263c-.11-.154.045-.176.199-.242.088-.044.198.022.198-.022s.044-.132.088-.154c.044-.022.11-.066.132-.11 0 .044.022.088.022.132a.502.502 0 0 0-.066.242c0 .066 0 .154.066 0 0-.022.022-.022.022-.044.044.154.044.286.044.419h-.946v-.022c.066-.11.308-.089.242-.199m.176-1.805s0 .022-.022.022c-.022.022-.132-.154-.132-.022s.044.176.132.198c.088.022.044.066.11.088.022 0 .066.022.088.044.11.242.176.484.242.749a.304.304 0 0 0-.088.066c-.044.044-.022.132-.066.198-.066.11-.088.176-.264.132-.11-.044-.022-.176 0-.286s.066-.088.066-.154-.22-.309-.33-.22c-.11.088-.088.176-.176.264-.044.044-.088.044-.155 0s-.088-.088-.066-.132c.022-.044-.154-.243-.22-.33a.46.46 0 0 0-.352-.177 3.461 3.461 0 0 0-.419-.572l.903-.903c.309.33.55.66.749 1.035m-1.52.616-.043.066c-.022.044-.133-.044-.155-.022-.022.022.155.243-.022.177-.176-.067-.066-.067-.066-.133s-.154-.11-.066-.154 0-.11.088-.132c.088-.022.066-.11-.044-.132-.11-.022-.088.242-.154.198-.066-.022-.132-.022-.198-.022l.308-.308a.199.199 0 0 0 .11.022c.044.176.155.308.243.44m-.353 4.47c.132.022.287.044.419.088.088.044.154.133.22.022.132-.198.22-.418.264-.66.044-.33-.022-.44-.066-.44-.044 0-.132.088-.22.088-.044 0-.044.088-.044.154s-.088.132-.11.088-.066-.022-.044.022-.176.022-.265-.022c-.132-.066.155-.066.287-.176.11-.088.22-.199.33-.309.066-.11.066-.242.176-.33s.286-.066.308-.198.044-.11.11-.088.683-.022.683-.22c0-.089-.132-.199-.264-.22-.088 0-.11-.177-.154-.265a1.642 1.642 0 0 0-.154-.264h.924a4.76 4.76 0 0 1-1.255 3.039l-.022-.022v-.088c.022-.177-.11-.463-.154-.419s0 .044-.132.242c-.044.066-.11.177-.198.177s-.088-.045-.22-.023a.948.948 0 0 1-.353 0 2.447 2.447 0 0 1-.594-.286c.022-.022.088.022.088-.044s.352.132.44.154m3.457 2.665-.902-.903a6.746 6.746 0 0 0 1.85-4.448h1.298a7.902 7.902 0 0 1-2.246 5.35m2.246-5.724h-1.299a6.556 6.556 0 0 0-.66-2.73l.022-.023c.088-.088-.419-.749-.507-.815s-.176-.176-.286-.286a3.927 3.927 0 0 1-.484-.572l.946-.947a7.878 7.878 0 0 1 2.268 5.373m-7.839-7.84a8.037 8.037 0 0 1 5.373 2.225l-.88.88c-.045-.022-.089-.044-.067-.088.044-.066-.066-.066-.088-.242a.698.698 0 0 0-.33-.418c-.11-.066-.176-.154-.286-.199-.11-.044-.33-.176-.44-.132a.782.782 0 0 1-.22.044 6.714 6.714 0 0 0-3.04-.792l-.022-1.277zm0 1.652c.947.022 1.85.264 2.709.683a.918.918 0 0 0 .176.396c.044.11.11.198.176.308.066.066.022.198.044.309 0 .044.044.088.066.132v.176c0 .022.088.022.154-.022s.11-.132.199-.11.198.198.264.308l-.419.418c-.044-.088-.088-.198-.066-.198s.066.022.088.022c.089 0-.066-.066-.066-.088-.066-.066-.066-.154-.154-.22s-.22-.022-.264-.11a1.207 1.207 0 0 0-.352-.397c-.022 0 .176.243.11.287s-.309-.154-.33-.11c-.023.044.264.154.352.242.044.044.132.176.22.286a5.124 5.124 0 0 0-2.907-1.035V3.96zm0 1.63a4.76 4.76 0 0 1 3.04 1.255l-.904.902a3.498 3.498 0 0 0-2.136-.88V5.589zm0 1.651a3.04 3.04 0 0 1 1.872.77l-.044.045-.044-.022c-.11-.044-.33.176-.286.198.044.022.132-.088.176-.066h.022l-.374.396c-.11.044-.22.132-.22.198v.022l-.133.132-.066-.066a1.117 1.117 0 0 0-.352-.198c.066-.044.088-.11.11-.198 0-.132-.044-.088-.11-.022s-.132.088-.176.154a.997.997 0 0 0-.353-.066V7.241h-.022zm-.154 1.63c.022.043 0 .088-.022.11-.044.044-.176-.11-.198.022-.044.132.088.066.088.088a.408.408 0 0 0 .264.154c.088 0 .22 0 .22.088 0 .044.11.044.133.088 0 .066.066.176.11.154s.11.022.132.066c.022.044 0 .066-.022.11-.066.066.066.044.088.176s-.11.044-.132.133c-.044.066-.088.11-.132.176-.022.022.022.066.044.044.022-.022.066-.088.132-.088s.132.242.198.264c.066.022.044.11.066.132s-.11 0-.088.044c.022.044.154.066.154.132-.022.066-.066.132-.154.132-.066 0-.176-.154-.176-.11s.044.176.11.176.22-.066.154.022-.044.22-.088.22-.066 0-.022.067c.022.066 0 .132-.044.198-.044.044-.154 0-.154-.022s.132-.022.132-.088-.066-.088-.198-.044c-.066.022-.088-.022-.132-.022s-.176.154-.176.176v.11a.372.372 0 0 1-.067.22c-.088.022-.154.022-.242.022-.352 0-.704-.154-.969-.374a.415.415 0 0 1 .177-.044c.066.022.088-.022.132-.044.044-.022.154.044.22 0s.22-.33.198-.397.154-.176.132-.198-.044.022-.044 0 .044-.022 0-.11-.11-.044-.154-.044c-.066-.044-.176-.066-.198-.044-.022.022-.088-.044-.11-.022-.022 0-.066.022-.066.066-.022.044.022.088.022.132-.022.088-.155.154-.155.22s-.066.022-.088.044 0 .066-.044.066-.11.11-.154.199c-.066-.088-.132-.199-.198-.287.044-.022.088-.044.11-.022.066.044.33-.418.286-.55s-.11-.044-.176-.022-.066-.044-.044-.066.308-.022.154-.11c-.066-.044-.242-.044-.22-.11s.11 0 .132 0c.11.044.176-.177.242-.177.11 0 .067-.22-.044-.154s-.154.044-.198.11-.154.154-.154.066c0-.044.242-.176.286-.242a.48.48 0 0 0 .11-.176c.023-.066.33-.11.397-.154.044-.044.088-.11.088-.176s-.088-.044-.11-.088.11 0 .11-.066-.11 0-.154-.044c0-.022 0-.022.022-.044.198-.067.33-.089.484-.089h.044m-.242-6.561v1.277a6.746 6.746 0 0 0-4.448 1.85l-.903-.903a7.94 7.94 0 0 1 5.351-2.224M6.208 4.797l.903.903a6.746 6.746 0 0 0-1.85 4.448H3.984a8.151 8.151 0 0 1 2.224-5.351" }) + ] + } + ); +}); + +export { SiUnitednations as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.cjs new file mode 100644 index 000000000..e3c5d41a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFFFFF"; +const SiUnity = React__namespace.forwardRef(function SiUnity2({ title = "Unity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.9288 4.2939 3.7997 2.1929c.1366.077.1415.2905 0 .3675l-4.515 2.6076a.4192.4192 0 0 1-.4246 0L7.274 6.8543c-.139-.0745-.1415-.293 0-.3675l3.7972-2.193V0L1.3758 5.5977V16.793l3.7177-2.1456v-4.3858c-.0025-.1565.1813-.2682.318-.1838l4.5148 2.6076a.4252.4252 0 0 1 .2136.3676v5.2127c.0025.1565-.1813.2682-.3179.1838l-3.7996-2.1929-3.7178 2.1457L12 24l9.6954-5.5977-3.7178-2.1457-3.7996 2.1929c-.1341.082-.3229-.0248-.3179-.1838V13.053c0-.1565.087-.2956.2136-.3676l4.5149-2.6076c.134-.082.3228.0224.3179.1838v4.3858l3.7177 2.1456V5.5977L12.9288 0Z" }) + ] + } + ); +}); + +exports.default = SiUnity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.d.ts new file mode 100644 index 000000000..8656e1362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFFFFF"; +declare const SiUnity: IconType; +export { SiUnity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.mjs new file mode 100644 index 000000000..f5105c54b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFFFFF"; +const SiUnity = React.forwardRef(function SiUnity2({ title = "Unity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.9288 4.2939 3.7997 2.1929c.1366.077.1415.2905 0 .3675l-4.515 2.6076a.4192.4192 0 0 1-.4246 0L7.274 6.8543c-.139-.0745-.1415-.293 0-.3675l3.7972-2.193V0L1.3758 5.5977V16.793l3.7177-2.1456v-4.3858c-.0025-.1565.1813-.2682.318-.1838l4.5148 2.6076a.4252.4252 0 0 1 .2136.3676v5.2127c.0025.1565-.1813.2682-.3179.1838l-3.7996-2.1929-3.7178 2.1457L12 24l9.6954-5.5977-3.7178-2.1457-3.7996 2.1929c-.1341.082-.3229-.0248-.3179-.1838V13.053c0-.1565.087-.2956.2136-.3676l4.5149-2.6076c.134-.082.3228.0224.3179.1838v4.3858l3.7177 2.1456V5.5977L12.9288 0Z" }) + ] + } + ); +}); + +export { SiUnity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.cjs new file mode 100644 index 000000000..b108a1d3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ECDC5A"; +const SiUnjs = React__namespace.forwardRef(function SiUnjs2({ title = "UnJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.686 0H1.29A1.477 1.477 0 0 0 0 1.297V22.68C.085 23.43.711 24 1.484 24h21.014A1.5 1.5 0 0 0 24 22.498V1.484C24 .711 23.412.077 22.686 0zm-4.393 15.05c.52-.011 1.004.113 1.398.514.041.042.077.088.116.131.246.327.353.694.398 1.08.024.209.03.42.031.63.004.883.001 1.768.002 2.652 0 .203-.065.368-.252.468a.445.445 0 0 1-.658-.38c-.004-.214-.002-.428-.002-.641 0-.779.002-1.557-.004-2.336-.002-.282-.056-.556-.213-.799a.937.937 0 0 0-.713-.433c-.62-.071-1.131.133-1.527.617-.17.208-.238.452-.238.718v2.836a.46.46 0 0 1-.61.448c-.178-.056-.295-.232-.3-.453-.002-.086 0-.172 0-.258l-.002-4.131c0-.184.055-.342.215-.443a.43.43 0 0 1 .449-.022c.155.08.236.213.248.387.002.035 0 .072 0 .12.03-.024.053-.04.074-.06.388-.352.839-.583 1.363-.63.076-.007.15-.012.225-.014zm-7.75.151c.235.014.413.226.414.496v1.647c0 .424-.002.847.006 1.271.004.21.054.412.156.598.142.259.36.423.645.5.364.107.753.09 1.107-.047.371-.146.58-.434.649-.82.026-.146.032-.299.033-.448.003-.9.001-1.802.002-2.703 0-.25.12-.422.338-.48.052-.014.109-.01.164-.014.258.044.408.214.408.47-.001 1.024.012 2.047-.018 3.07-.02.696-.333 1.254-.95 1.613-.262.152-.55.234-.85.27-.386.054-.779.03-1.155-.071-.598-.174-1.044-.53-1.283-1.121-.126-.312-.161-.638-.162-.97-.003-.925-.001-1.85 0-2.776 0-.304.205-.502.496-.485z" }) + ] + } + ); +}); + +exports.default = SiUnjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.d.ts new file mode 100644 index 000000000..2c51cb9b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ECDC5A"; +declare const SiUnjs: IconType; +export { SiUnjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.mjs new file mode 100644 index 000000000..dabadd903 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ECDC5A"; +const SiUnjs = React.forwardRef(function SiUnjs2({ title = "UnJS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.686 0H1.29A1.477 1.477 0 0 0 0 1.297V22.68C.085 23.43.711 24 1.484 24h21.014A1.5 1.5 0 0 0 24 22.498V1.484C24 .711 23.412.077 22.686 0zm-4.393 15.05c.52-.011 1.004.113 1.398.514.041.042.077.088.116.131.246.327.353.694.398 1.08.024.209.03.42.031.63.004.883.001 1.768.002 2.652 0 .203-.065.368-.252.468a.445.445 0 0 1-.658-.38c-.004-.214-.002-.428-.002-.641 0-.779.002-1.557-.004-2.336-.002-.282-.056-.556-.213-.799a.937.937 0 0 0-.713-.433c-.62-.071-1.131.133-1.527.617-.17.208-.238.452-.238.718v2.836a.46.46 0 0 1-.61.448c-.178-.056-.295-.232-.3-.453-.002-.086 0-.172 0-.258l-.002-4.131c0-.184.055-.342.215-.443a.43.43 0 0 1 .449-.022c.155.08.236.213.248.387.002.035 0 .072 0 .12.03-.024.053-.04.074-.06.388-.352.839-.583 1.363-.63.076-.007.15-.012.225-.014zm-7.75.151c.235.014.413.226.414.496v1.647c0 .424-.002.847.006 1.271.004.21.054.412.156.598.142.259.36.423.645.5.364.107.753.09 1.107-.047.371-.146.58-.434.649-.82.026-.146.032-.299.033-.448.003-.9.001-1.802.002-2.703 0-.25.12-.422.338-.48.052-.014.109-.01.164-.014.258.044.408.214.408.47-.001 1.024.012 2.047-.018 3.07-.02.696-.333 1.254-.95 1.613-.262.152-.55.234-.85.27-.386.054-.779.03-1.155-.071-.598-.174-1.044-.53-1.283-1.121-.126-.312-.161-.638-.162-.97-.003-.925-.001-1.85 0-2.776 0-.304.205-.502.496-.485z" }) + ] + } + ); +}); + +export { SiUnjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.cjs new file mode 100644 index 000000000..211d2f22f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#808080"; +const SiUnlicense = React__namespace.forwardRef(function SiUnlicense2({ title = "Unlicense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12ZM12 2.449A9.551 9.551 0 0 0 2.449 12c0 2.09.672 4.024 1.811 5.597L17.597 4.26A9.508 9.508 0 0 0 12 2.449Zm0 19.102A9.551 9.551 0 0 0 21.551 12c0-2.09-.672-4.024-1.811-5.597L6.403 19.74A9.508 9.508 0 0 0 12 21.551Zm0-2.816a6.704 6.704 0 0 1-3.34-.885l2.32-2.32a3.674 3.674 0 0 0 4.388-2.06h3.206A6.737 6.737 0 0 1 12 18.734ZM5.265 12A6.735 6.735 0 0 1 15.34 6.15l-2.32 2.32a3.673 3.673 0 0 0-4.55 4.55l-2.32 2.32A6.704 6.704 0 0 1 5.265 12Zm13.28-1.592h-2.443L17.85 8.66c.309.54.545 1.128.695 1.748Z" }) + ] + } + ); +}); + +exports.default = SiUnlicense; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.d.ts new file mode 100644 index 000000000..48d6a8c62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#808080"; +declare const SiUnlicense: IconType; +export { SiUnlicense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.mjs new file mode 100644 index 000000000..9ca990c2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnlicense.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#808080"; +const SiUnlicense = React.forwardRef(function SiUnlicense2({ title = "Unlicense", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12ZM12 2.449A9.551 9.551 0 0 0 2.449 12c0 2.09.672 4.024 1.811 5.597L17.597 4.26A9.508 9.508 0 0 0 12 2.449Zm0 19.102A9.551 9.551 0 0 0 21.551 12c0-2.09-.672-4.024-1.811-5.597L6.403 19.74A9.508 9.508 0 0 0 12 21.551Zm0-2.816a6.704 6.704 0 0 1-3.34-.885l2.32-2.32a3.674 3.674 0 0 0 4.388-2.06h3.206A6.737 6.737 0 0 1 12 18.734ZM5.265 12A6.735 6.735 0 0 1 15.34 6.15l-2.32 2.32a3.673 3.673 0 0 0-4.55 4.55l-2.32 2.32A6.704 6.704 0 0 1 5.265 12Zm13.28-1.592h-2.443L17.85 8.66c.309.54.545 1.128.695 1.748Z" }) + ] + } + ); +}); + +export { SiUnlicense as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.cjs new file mode 100644 index 000000000..a83647179 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiUnocss = React__namespace.forwardRef(function SiUnocss2({ title = "UnoCSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.8602 18.3991c0-3.0761 2.4938-5.5699 5.5699-5.5699S24 15.323 24 18.3991c0 3.0762-2.4938 5.5699-5.5699 5.5699s-5.5699-2.4937-5.5699-5.5699ZM12.8602 5.6009c0-3.0762 2.4938-5.57 5.5699-5.57S24 2.5248 24 5.601v5.0129a.557.557 0 0 1-.557.5569H13.4172a.557.557 0 0 1-.557-.5569v-5.013ZM11.1398 18.3991c0 3.0762-2.4937 5.5699-5.5699 5.5699C2.4937 23.969 0 21.4753 0 18.3991v-5.0129a.557.557 0 0 1 .557-.557h10.0258a.557.557 0 0 1 .557.557v5.0129Z" }) + ] + } + ); +}); + +exports.default = SiUnocss; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.d.ts new file mode 100644 index 000000000..90fa8069a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiUnocss: IconType; +export { SiUnocss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.mjs new file mode 100644 index 000000000..7994a8b36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnocss.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiUnocss = React.forwardRef(function SiUnocss2({ title = "UnoCSS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.8602 18.3991c0-3.0761 2.4938-5.5699 5.5699-5.5699S24 15.323 24 18.3991c0 3.0762-2.4938 5.5699-5.5699 5.5699s-5.5699-2.4937-5.5699-5.5699ZM12.8602 5.6009c0-3.0762 2.4938-5.57 5.5699-5.57S24 2.5248 24 5.601v5.0129a.557.557 0 0 1-.557.5569H13.4172a.557.557 0 0 1-.557-.5569v-5.013ZM11.1398 18.3991c0 3.0762-2.4937 5.5699-5.5699 5.5699C2.4937 23.969 0 21.4753 0 18.3991v-5.0129a.557.557 0 0 1 .557-.557h10.0258a.557.557 0 0 1 .557.557v5.0129Z" }) + ] + } + ); +}); + +export { SiUnocss as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.cjs new file mode 100644 index 000000000..8902bc987 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiUnpkg = React__namespace.forwardRef(function SiUnpkg2({ title = "unpkg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm4.322 2.977 4.37.002a.043.043 0 0 1 .044.04 9542.6 9542.6 0 0 1 0 9.165c0 .75.029 1.403.09 1.957.038.336.134.68.287 1.03.336.769.907 1.237 1.715 1.405.626.13 1.258.127 1.893-.008 1.166-.248 1.813-1.268 1.96-2.404.067-.513.1-1.186.1-2.018-.001-3.15-.001-6.188.002-9.119 0-.033.017-.05.049-.05h4.338a.033.033 0 0 1 .033.033v9.869c0 1.465-.17 2.918-.746 4.234-.777 1.775-2.323 2.836-4.195 3.211-1.7.341-3.39.338-5.07-.013-2.226-.465-3.808-1.828-4.46-4.03-.249-.846-.389-1.708-.416-2.586a65.217 65.217 0 0 1-.029-1.88c-.002-3.037-.002-5.97 0-8.801 0-.024.011-.037.035-.037z" }) + ] + } + ); +}); + +exports.default = SiUnpkg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.d.ts new file mode 100644 index 000000000..2e09fcdde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiUnpkg: IconType; +export { SiUnpkg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.mjs new file mode 100644 index 000000000..0c87e4d68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnpkg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiUnpkg = React.forwardRef(function SiUnpkg2({ title = "unpkg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm4.322 2.977 4.37.002a.043.043 0 0 1 .044.04 9542.6 9542.6 0 0 1 0 9.165c0 .75.029 1.403.09 1.957.038.336.134.68.287 1.03.336.769.907 1.237 1.715 1.405.626.13 1.258.127 1.893-.008 1.166-.248 1.813-1.268 1.96-2.404.067-.513.1-1.186.1-2.018-.001-3.15-.001-6.188.002-9.119 0-.033.017-.05.049-.05h4.338a.033.033 0 0 1 .033.033v9.869c0 1.465-.17 2.918-.746 4.234-.777 1.775-2.323 2.836-4.195 3.211-1.7.341-3.39.338-5.07-.013-2.226-.465-3.808-1.828-4.46-4.03-.249-.846-.389-1.708-.416-2.586a65.217 65.217 0 0 1-.029-1.88c-.002-3.037-.002-5.97 0-8.801 0-.024.011-.037.035-.037z" }) + ] + } + ); +}); + +export { SiUnpkg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.cjs new file mode 100644 index 000000000..7b955604f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15A2C"; +const SiUnraid = React__namespace.forwardRef(function SiUnraid2({ title = "Unraid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.406 8.528h1.17v6.926h-1.17zM1.17 15.454H0V8.528h1.17zm4.534.828h1.17v2.645h-1.17zm-2.86-2.969h1.169v4.282h-1.17zm5.703 0h1.17v4.282h-1.17zM22.83 8.528H24v6.926h-1.17zm-4.534-.81h-1.17V5.073h1.17zm2.86 2.95h-1.169V6.406h1.17zm-5.72 0h-1.17V6.406h1.17z" }) + ] + } + ); +}); + +exports.default = SiUnraid; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.d.ts new file mode 100644 index 000000000..5291c34ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15A2C"; +declare const SiUnraid: IconType; +export { SiUnraid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.mjs new file mode 100644 index 000000000..072d6fd27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnraid.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15A2C"; +const SiUnraid = React.forwardRef(function SiUnraid2({ title = "Unraid", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.406 8.528h1.17v6.926h-1.17zM1.17 15.454H0V8.528h1.17zm4.534.828h1.17v2.645h-1.17zm-2.86-2.969h1.169v4.282h-1.17zm5.703 0h1.17v4.282h-1.17zM22.83 8.528H24v6.926h-1.17zm-4.534-.81h-1.17V5.073h1.17zm2.86 2.95h-1.169V6.406h1.17zm-5.72 0h-1.17V6.406h1.17z" }) + ] + } + ); +}); + +export { SiUnraid as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.cjs new file mode 100644 index 000000000..752ef7937 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0E1128"; +const SiUnrealengine = React__namespace.forwardRef(function SiUnrealengine2({ title = "Unreal Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1012 12A12 12 0 0012 0zm0 23.52A11.52 11.52 0 1123.52 12 11.52 11.52 0 0112 23.52zm7.13-9.791c-.206.997-1.126 3.557-4.06 4.942l-1.179-1.325-1.988 2a7.338 7.338 0 01-5.804-2.978 2.859 2.859 0 00.65.123c.326.006.678-.114.678-.66v-5.394a.89.89 0 00-1.116-.89c-.92.212-1.656 2.509-1.656 2.509a7.304 7.304 0 012.528-5.597 7.408 7.408 0 013.73-1.721c-1.006.573-1.57 1.507-1.57 2.29 0 1.262.76 1.109.984.923v7.28a1.157 1.157 0 00.148.256 1.075 1.075 0 00.88.445c.76 0 1.747-.868 1.747-.868V9.172c0-.6-.452-1.324-.905-1.572 0 0 .838-.149 1.484.346a5.537 5.537 0 01.387-.425c1.508-1.48 2.929-1.902 4.112-2.112 0 0-2.151 1.69-2.151 3.96 0 1.687.043 5.801.043 5.801.799.771 1.986-.342 3.059-1.441Z" }) + ] + } + ); +}); + +exports.default = SiUnrealengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.d.ts new file mode 100644 index 000000000..fa4a8d90a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0E1128"; +declare const SiUnrealengine: IconType; +export { SiUnrealengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.mjs new file mode 100644 index 000000000..2eb678506 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnrealengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0E1128"; +const SiUnrealengine = React.forwardRef(function SiUnrealengine2({ title = "Unreal Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1012 12A12 12 0 0012 0zm0 23.52A11.52 11.52 0 1123.52 12 11.52 11.52 0 0112 23.52zm7.13-9.791c-.206.997-1.126 3.557-4.06 4.942l-1.179-1.325-1.988 2a7.338 7.338 0 01-5.804-2.978 2.859 2.859 0 00.65.123c.326.006.678-.114.678-.66v-5.394a.89.89 0 00-1.116-.89c-.92.212-1.656 2.509-1.656 2.509a7.304 7.304 0 012.528-5.597 7.408 7.408 0 013.73-1.721c-1.006.573-1.57 1.507-1.57 2.29 0 1.262.76 1.109.984.923v7.28a1.157 1.157 0 00.148.256 1.075 1.075 0 00.88.445c.76 0 1.747-.868 1.747-.868V9.172c0-.6-.452-1.324-.905-1.572 0 0 .838-.149 1.484.346a5.537 5.537 0 01.387-.425c1.508-1.48 2.929-1.902 4.112-2.112 0 0-2.151 1.69-2.151 3.96 0 1.687.043 5.801.043 5.801.799.771 1.986-.342 3.059-1.441Z" }) + ] + } + ); +}); + +export { SiUnrealengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.cjs new file mode 100644 index 000000000..757ba3f9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiUnsplash = React__namespace.forwardRef(function SiUnsplash2({ title = "Unsplash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.5 6.75V0h9v6.75h-9zm9 3.75H24V24H0V10.5h7.5v6.75h9V10.5z" }) + ] + } + ); +}); + +exports.default = SiUnsplash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.d.ts new file mode 100644 index 000000000..f835d88dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiUnsplash: IconType; +export { SiUnsplash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.mjs new file mode 100644 index 000000000..0f49eb6bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnsplash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiUnsplash = React.forwardRef(function SiUnsplash2({ title = "Unsplash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.5 6.75V0h9v6.75h-9zm9 3.75H24V24H0V10.5h7.5v6.75h9V10.5z" }) + ] + } + ); +}); + +export { SiUnsplash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.cjs new file mode 100644 index 000000000..07615d918 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1C4980"; +const SiUnstop = React__namespace.forwardRef(function SiUnstop2({ title = "Unstop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.394 0 0 5.394 0 12s5.394 12 12 12 12-5.394 12-12S18.606 0 12 0Zm-1.2 16.86H8.303v-1.127c-.715 1.091-1.588 1.552-2.897 1.552-2.085 0-3.248-1.2-3.248-3.333V7.248h2.509v6.182c0 1.164.533 1.722 1.6 1.722 1.224 0 2.012-.752 2.012-1.891V7.236h2.509v9.625zm8.533 0v-5.939c0-1.14-.533-1.721-1.6-1.721-1.224 0-2.012.752-2.012 1.89v5.77h-2.509V7.237h2.497V8.63c.715-1.09 1.588-1.551 2.897-1.551 2.085 0 3.249 1.2 3.249 3.333v6.449z" }) + ] + } + ); +}); + +exports.default = SiUnstop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.d.ts new file mode 100644 index 000000000..5a4b13324 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1C4980"; +declare const SiUnstop: IconType; +export { SiUnstop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.mjs new file mode 100644 index 000000000..98426bd06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUnstop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1C4980"; +const SiUnstop = React.forwardRef(function SiUnstop2({ title = "Unstop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.394 0 0 5.394 0 12s5.394 12 12 12 12-5.394 12-12S18.606 0 12 0Zm-1.2 16.86H8.303v-1.127c-.715 1.091-1.588 1.552-2.897 1.552-2.085 0-3.248-1.2-3.248-3.333V7.248h2.509v6.182c0 1.164.533 1.722 1.6 1.722 1.224 0 2.012-.752 2.012-1.891V7.236h2.509v9.625zm8.533 0v-5.939c0-1.14-.533-1.721-1.6-1.721-1.224 0-2.012.752-2.012 1.89v5.77h-2.509V7.237h2.497V8.63c.715-1.09 1.588-1.551 2.897-1.551 2.085 0 3.249 1.2 3.249 3.333v6.449z" }) + ] + } + ); +}); + +export { SiUnstop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.cjs new file mode 100644 index 000000000..cef4c3167 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC000"; +const SiUntappd = React__namespace.forwardRef(function SiUntappd2({ title = "Untappd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 13.299l-5.824 8.133c-.298.416-.8.635-1.308.572-.578-.072-1.374-.289-2.195-.879S.392 19.849.139 19.323a1.402 1.402 0 0 1 .122-1.425l5.824-8.133a3.066 3.066 0 0 1 1.062-.927l1.146-.604c.23-.121.436-.283.608-.478.556-.631 2.049-2.284 4.696-4.957l.046-.212a.134.134 0 0 1 .096-.1l.146-.037a.135.135 0 0 0 .101-.141l-.015-.18a.13.13 0 0 1 .125-.142c.176-.005.518.046 1.001.393s.64.656.692.824a.13.13 0 0 1-.095.164l-.175.044a.133.133 0 0 0-.101.141l.012.15a.131.131 0 0 1-.063.123l-.186.112c-1.679 3.369-2.764 5.316-3.183 6.046a2.157 2.157 0 0 0-.257.73l-.205 1.281A3.074 3.074 0 0 1 11 13.3zm12.739 4.598l-5.824-8.133a3.066 3.066 0 0 0-1.062-.927l-1.146-.605a2.138 2.138 0 0 1-.608-.478 50.504 50.504 0 0 0-.587-.654.089.089 0 0 0-.142.018 97.261 97.261 0 0 1-1.745 3.223 1.42 1.42 0 0 0-.171.485 3.518 3.518 0 0 0 0 1.103l.01.064c.075.471.259.918.536 1.305l5.824 8.133c.296.413.79.635 1.294.574a4.759 4.759 0 0 0 2.209-.881 4.762 4.762 0 0 0 1.533-1.802 1.4 1.4 0 0 0-.122-1.425zM8.306 3.366l.175.044a.134.134 0 0 1 .101.141l-.012.15a.13.13 0 0 0 .063.123l.186.112c.311.623.599 1.194.869 1.721.026.051.091.06.129.019.437-.469.964-1.025 1.585-1.668a.137.137 0 0 0 .003-.19c-.315-.322-.645-.659-1.002-1.02l-.046-.212a.13.13 0 0 0-.096-.099l-.146-.037a.135.135 0 0 1-.101-.141l.015-.18a.13.13 0 0 0-.123-.142c-.175-.005-.518.045-1.002.393-.483.347-.64.656-.692.824a.13.13 0 0 0 .095.164z" }) + ] + } + ); +}); + +exports.default = SiUntappd; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.d.ts new file mode 100644 index 000000000..15269d217 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC000"; +declare const SiUntappd: IconType; +export { SiUntappd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.mjs new file mode 100644 index 000000000..605581a0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUntappd.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC000"; +const SiUntappd = React.forwardRef(function SiUntappd2({ title = "Untappd", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11 13.299l-5.824 8.133c-.298.416-.8.635-1.308.572-.578-.072-1.374-.289-2.195-.879S.392 19.849.139 19.323a1.402 1.402 0 0 1 .122-1.425l5.824-8.133a3.066 3.066 0 0 1 1.062-.927l1.146-.604c.23-.121.436-.283.608-.478.556-.631 2.049-2.284 4.696-4.957l.046-.212a.134.134 0 0 1 .096-.1l.146-.037a.135.135 0 0 0 .101-.141l-.015-.18a.13.13 0 0 1 .125-.142c.176-.005.518.046 1.001.393s.64.656.692.824a.13.13 0 0 1-.095.164l-.175.044a.133.133 0 0 0-.101.141l.012.15a.131.131 0 0 1-.063.123l-.186.112c-1.679 3.369-2.764 5.316-3.183 6.046a2.157 2.157 0 0 0-.257.73l-.205 1.281A3.074 3.074 0 0 1 11 13.3zm12.739 4.598l-5.824-8.133a3.066 3.066 0 0 0-1.062-.927l-1.146-.605a2.138 2.138 0 0 1-.608-.478 50.504 50.504 0 0 0-.587-.654.089.089 0 0 0-.142.018 97.261 97.261 0 0 1-1.745 3.223 1.42 1.42 0 0 0-.171.485 3.518 3.518 0 0 0 0 1.103l.01.064c.075.471.259.918.536 1.305l5.824 8.133c.296.413.79.635 1.294.574a4.759 4.759 0 0 0 2.209-.881 4.762 4.762 0 0 0 1.533-1.802 1.4 1.4 0 0 0-.122-1.425zM8.306 3.366l.175.044a.134.134 0 0 1 .101.141l-.012.15a.13.13 0 0 0 .063.123l.186.112c.311.623.599 1.194.869 1.721.026.051.091.06.129.019.437-.469.964-1.025 1.585-1.668a.137.137 0 0 0 .003-.19c-.315-.322-.645-.659-1.002-1.02l-.046-.212a.13.13 0 0 0-.096-.099l-.146-.037a.135.135 0 0 1-.101-.141l.015-.18a.13.13 0 0 0-.123-.142c-.175-.005-.518.045-1.002.393-.483.347-.64.656-.692.824a.13.13 0 0 0 .095.164z" }) + ] + } + ); +}); + +export { SiUntappd as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.cjs new file mode 100644 index 000000000..d3b92f126 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7B00FF"; +const SiUpcloud = React__namespace.forwardRef(function SiUpcloud2({ title = "UpCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.1155 12.9964a1.8845 1.8845 0 110 3.769H8.6643V11.87h.888v4.0072h12.5849a1.0078 1.0078 0 00.9964-.9964 1.0317 1.0317 0 00-1.0397-.9964H10.397v-.888zm-8.6859-5.7617H8.6643v1.9927h.888V8.1011h3.899a1.0078 1.0078 0 01.9964.9964 1.0653 1.0653 0 01-1.018 1.0397H1.8845a1.8845 1.8845 0 100 3.769h5.8917v-.8881H1.8845a.9964.9964 0 010-1.9928h11.5668a1.8999 1.8999 0 001.8844-1.8845 1.9375 1.9375 0 00-1.9061-1.9061z" }) + ] + } + ); +}); + +exports.default = SiUpcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.d.ts new file mode 100644 index 000000000..9d43b309c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7B00FF"; +declare const SiUpcloud: IconType; +export { SiUpcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.mjs new file mode 100644 index 000000000..a7fc0e321 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7B00FF"; +const SiUpcloud = React.forwardRef(function SiUpcloud2({ title = "UpCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.1155 12.9964a1.8845 1.8845 0 110 3.769H8.6643V11.87h.888v4.0072h12.5849a1.0078 1.0078 0 00.9964-.9964 1.0317 1.0317 0 00-1.0397-.9964H10.397v-.888zm-8.6859-5.7617H8.6643v1.9927h.888V8.1011h3.899a1.0078 1.0078 0 01.9964.9964 1.0653 1.0653 0 01-1.018 1.0397H1.8845a1.8845 1.8845 0 100 3.769h5.8917v-.8881H1.8845a.9964.9964 0 010-1.9928h11.5668a1.8999 1.8999 0 001.8844-1.8845 1.9375 1.9375 0 00-1.9061-1.9061z" }) + ] + } + ); +}); + +export { SiUpcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.cjs new file mode 100644 index 000000000..2648321e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#49CC68"; +const SiUphold = React__namespace.forwardRef(function SiUphold2({ title = "Uphold", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.2743 22.3319a7.8524 7.8522 0 0 1-2.2207.3336h-.1067a7.7804 7.7802 0 0 1-2.2367-.339.668.668 0 1 0-.379 1.2812A9.267 9.2668 0 0 0 11.9469 24h.1067a9.155 9.1547 0 0 0 2.5997-.3897.6673.6673 0 1 0-.379-1.2784zm5.8266-16.4224V5.8694a8.5224 8.5221 0 0 0-16.2066.0267v.016c-.7527 2.2126-.4805 5.1752.734 7.935 1.6601 3.774 4.6735 6.4056 7.3426 6.4056h.0747c2.669 0 5.6825-2.6236 7.3426-6.4056 1.1985-2.7544 1.4707-5.7224.7127-7.9377zM16.1854 2.68c-1.3506-.0508-2.8186.5338-4.1852 1.676-1.3825-1.1422-2.8505-1.7268-4.201-1.676a7.2305 7.2303 0 0 1 8.3862 0zm-3.0908 15.9953a2.597 2.597 0 0 1-2.2047 0c-2.2767-1.0489-2.7358-5.266-1.0062-9.2a11.9788 11.9785 0 0 1 2.1165-3.2776 11.888 11.8878 0 0 1 2.1113 3.2776c1.7189 3.934 1.2598 8.1511-1.017 9.2zm-7.26-5.3567c-1.089-2.4715-1.3345-5.071-.6832-6.9901.347-1.0062.9315-1.7215 1.6868-2.0712 1.1824-.5471 2.7145-.1601 4.1825 1.0276a13.2573 13.257 0 0 0-2.3568 3.6512c-1.169 2.669-1.428 5.3887-.8888 7.5053a12.6594 12.6591 0 0 1-1.9404-3.1228Zm12.3152 0a12.7262 12.7258 0 0 1-1.9404 3.1254c.5338-2.1192.2669-4.8522-.8888-7.5079a13.2573 13.257 0 0 0-2.3568-3.6512c1.468-1.1877 2.9973-1.5747 4.1798-1.0276.758.3497 1.3345 1.0676 1.6895 2.0712.6592 1.9057.403 4.5186-.694 6.9901z" }) + ] + } + ); +}); + +exports.default = SiUphold; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.d.ts new file mode 100644 index 000000000..fc79db130 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#49CC68"; +declare const SiUphold: IconType; +export { SiUphold as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.mjs new file mode 100644 index 000000000..6a5e50694 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUphold.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#49CC68"; +const SiUphold = React.forwardRef(function SiUphold2({ title = "Uphold", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.2743 22.3319a7.8524 7.8522 0 0 1-2.2207.3336h-.1067a7.7804 7.7802 0 0 1-2.2367-.339.668.668 0 1 0-.379 1.2812A9.267 9.2668 0 0 0 11.9469 24h.1067a9.155 9.1547 0 0 0 2.5997-.3897.6673.6673 0 1 0-.379-1.2784zm5.8266-16.4224V5.8694a8.5224 8.5221 0 0 0-16.2066.0267v.016c-.7527 2.2126-.4805 5.1752.734 7.935 1.6601 3.774 4.6735 6.4056 7.3426 6.4056h.0747c2.669 0 5.6825-2.6236 7.3426-6.4056 1.1985-2.7544 1.4707-5.7224.7127-7.9377zM16.1854 2.68c-1.3506-.0508-2.8186.5338-4.1852 1.676-1.3825-1.1422-2.8505-1.7268-4.201-1.676a7.2305 7.2303 0 0 1 8.3862 0zm-3.0908 15.9953a2.597 2.597 0 0 1-2.2047 0c-2.2767-1.0489-2.7358-5.266-1.0062-9.2a11.9788 11.9785 0 0 1 2.1165-3.2776 11.888 11.8878 0 0 1 2.1113 3.2776c1.7189 3.934 1.2598 8.1511-1.017 9.2zm-7.26-5.3567c-1.089-2.4715-1.3345-5.071-.6832-6.9901.347-1.0062.9315-1.7215 1.6868-2.0712 1.1824-.5471 2.7145-.1601 4.1825 1.0276a13.2573 13.257 0 0 0-2.3568 3.6512c-1.169 2.669-1.428 5.3887-.8888 7.5053a12.6594 12.6591 0 0 1-1.9404-3.1228Zm12.3152 0a12.7262 12.7258 0 0 1-1.9404 3.1254c.5338-2.1192.2669-4.8522-.8888-7.5079a13.2573 13.257 0 0 0-2.3568-3.6512c1.468-1.1877 2.9973-1.5747 4.1798-1.0276.758.3497 1.3345 1.0676 1.6895 2.0712.6592 1.9057.403 4.5186-.694 6.9901z" }) + ] + } + ); +}); + +export { SiUphold as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.cjs new file mode 100644 index 000000000..a7fa9072b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3930D8"; +const SiUplabs = React__namespace.forwardRef(function SiUplabs2({ title = "UpLabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.804 19.205c-.112-.111-.186-.26-.297-.372-.889-.894-2.259-1.34-4.11-1.34-1.816 0-3.186.446-4.075 1.34-.111.112-.185.223-.296.372zm2.88-.044V5.164h2.959V6.9c.406-.702.887-1.219 1.479-1.588a4.057 4.057 0 0 1 2.034-.517c1.516 0 2.7.517 3.55 1.514.85.997 1.294 2.4 1.294 4.173 0 1.736-.444 3.102-1.294 4.136-.85 1.034-1.997 1.551-3.402 1.551-.851 0-1.554-.147-2.145-.48-.592-.295-1.11-.812-1.516-1.477.037.259.073.554.073.886 0 .296.037.665.037 1.071v2.955h-3.069zm2.81-8.679c0 .96.222 1.699.703 2.253.481.517 1.147.812 1.96.812.85 0 1.516-.258 1.96-.812.48-.517.703-1.293.703-2.253 0-.96-.222-1.699-.703-2.253-.48-.554-1.146-.812-1.997-.812-.813 0-1.479.295-1.96.85-.444.48-.665 1.255-.665 2.215zM7.73 5.201v5.577c0 .923-.185 1.588-.555 1.994-.37.406-.961.628-1.775.628-.813 0-1.405-.185-1.775-.591-.37-.407-.555-1.071-.555-2.031V5.2H0v5.577c0 1.661.333 2.88.998 3.767.111.11.185.258.296.369.888.886 2.256 1.33 4.105 1.33 1.812 0 3.18-.444 4.068-1.33.11-.111.185-.222.296-.37.665-.886.998-2.142.998-3.766V5.2Z" }) + ] + } + ); +}); + +exports.default = SiUplabs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.d.ts new file mode 100644 index 000000000..2b471f382 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3930D8"; +declare const SiUplabs: IconType; +export { SiUplabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.mjs new file mode 100644 index 000000000..3fea14863 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUplabs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3930D8"; +const SiUplabs = React.forwardRef(function SiUplabs2({ title = "UpLabs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.804 19.205c-.112-.111-.186-.26-.297-.372-.889-.894-2.259-1.34-4.11-1.34-1.816 0-3.186.446-4.075 1.34-.111.112-.185.223-.296.372zm2.88-.044V5.164h2.959V6.9c.406-.702.887-1.219 1.479-1.588a4.057 4.057 0 0 1 2.034-.517c1.516 0 2.7.517 3.55 1.514.85.997 1.294 2.4 1.294 4.173 0 1.736-.444 3.102-1.294 4.136-.85 1.034-1.997 1.551-3.402 1.551-.851 0-1.554-.147-2.145-.48-.592-.295-1.11-.812-1.516-1.477.037.259.073.554.073.886 0 .296.037.665.037 1.071v2.955h-3.069zm2.81-8.679c0 .96.222 1.699.703 2.253.481.517 1.147.812 1.96.812.85 0 1.516-.258 1.96-.812.48-.517.703-1.293.703-2.253 0-.96-.222-1.699-.703-2.253-.48-.554-1.146-.812-1.997-.812-.813 0-1.479.295-1.96.85-.444.48-.665 1.255-.665 2.215zM7.73 5.201v5.577c0 .923-.185 1.588-.555 1.994-.37.406-.961.628-1.775.628-.813 0-1.405-.185-1.775-.591-.37-.407-.555-1.071-.555-2.031V5.2H0v5.577c0 1.661.333 2.88.998 3.767.111.11.185.258.296.369.888.886 2.256 1.33 4.105 1.33 1.812 0 3.18-.444 4.068-1.33.11-.111.185-.222.296-.37.665-.886.998-2.142.998-3.766V5.2Z" }) + ] + } + ); +}); + +export { SiUplabs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.cjs new file mode 100644 index 000000000..1dc809286 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1ABC9C"; +const SiUpptime = React__namespace.forwardRef(function SiUpptime2({ title = "Upptime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.86 15.68c1.926 0 3.489 1.526 3.489 3.406 0 1.88-1.563 3.407-3.488 3.407-1.926 0-3.489-1.526-3.489-3.407 0-1.88 1.563-3.407 3.489-3.407ZM24 14.884 12 1.507 0 14.885l3.158 3.52L12 8.548l8.842 9.857L24 14.885Z" }) + ] + } + ); +}); + +exports.default = SiUpptime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.d.ts new file mode 100644 index 000000000..d10571827 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1ABC9C"; +declare const SiUpptime: IconType; +export { SiUpptime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.mjs new file mode 100644 index 000000000..676a45cf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpptime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1ABC9C"; +const SiUpptime = React.forwardRef(function SiUpptime2({ title = "Upptime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.86 15.68c1.926 0 3.489 1.526 3.489 3.406 0 1.88-1.563 3.407-3.488 3.407-1.926 0-3.489-1.526-3.489-3.407 0-1.88 1.563-3.407 3.489-3.407ZM24 14.884 12 1.507 0 14.885l3.158 3.52L12 8.548l8.842 9.857L24 14.885Z" }) + ] + } + ); +}); + +export { SiUpptime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUps.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUps.cjs new file mode 100644 index 000000000..918dbd565 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUps.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#150400"; +const SiUps = React__namespace.forwardRef(function SiUps2({ title = "UPS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.668 14.544l-.028-5.226c.138-.055.387-.111.608-.111.995 0 1.41.774 1.41 2.682 0 1.853-.47 2.765-1.438 2.765-.22 0-.441-.055-.552-.11zM3.124 7.438c4.203-3.843 9.29-4.866 14.018-4.866 1.3 0 2.544.083 3.76.194h-.028v11.253c0 2.184-.774 3.926-2.295 5.171-1.355 1.134-5.447 2.959-6.581 3.456-1.161-.525-5.253-2.378-6.581-3.456-1.493-1.244-2.295-3.014-2.295-5.171V7.438zm12.664 2.599c.028.912.276 1.576 1.687 2.406.747.442 1.051.747 1.051 1.272 0 .581-.387.94-1.023.94-.553 0-1.189-.304-1.631-.691v1.576c.553.304 1.217.525 1.88.525 1.687 0 2.433-1.189 2.461-2.267.028-.995-.249-1.742-1.659-2.571-.608-.387-1.134-.636-1.106-1.244 0-.581.525-.802.995-.802.581 0 1.161.332 1.521.691V8.378c-.304-.221-.94-.581-1.88-.553-1.135.028-2.296.829-2.296 2.212zm-5.834 9.484h1.714l-.028-3.594c.166.028.415.083.774.083 1.908 0 2.986-1.687 2.986-4.175 0-2.461-1.106-4.009-3.152-4.009-.94 0-1.687.221-2.295.608v11.087zm-5.945-6.166c0 1.797.829 2.71 2.516 2.71 1.051 0 1.908-.249 2.571-.691V7.991H7.41v6.387c-.194.138-.47.221-.802.221-.774 0-.885-.719-.885-1.189V7.991H4.009v5.364zM22.12 2.295v11.723c0 2.516-.94 4.645-2.765 6.111-1.549 1.3-6.332 3.429-7.355 3.871-1.023-.442-5.806-2.571-7.355-3.843-1.797-1.465-2.765-3.594-2.765-6.111V2.295C4.756.747 8.074 0 12 0s7.244.747 10.12 2.295zm-.304.221c-2.71-1.465-6-2.184-9.788-2.184s-7.079.746-9.788 2.184v11.502c0 2.433.912 4.452 2.627 5.862 1.576 1.3 6.581 3.484 7.161 3.76.581-.249 5.585-2.433 7.161-3.733 1.714-1.41 2.627-3.429 2.627-5.862V2.516zm-2.433 20.295c0 .47-.387.829-.829.829a.831.831 0 0 1-.829-.829c0-.47.387-.829.829-.829.441 0 .801.359.829.829zm-.166 0a.679.679 0 0 0-.664-.691c-.359 0-.664.332-.664.691 0 .359.304.664.664.664a.673.673 0 0 0 .664-.664zm-.553.055c.028.055.304.442.304.442h-.221s-.276-.387-.276-.415h-.028v.415h-.194v-.995l.304-.028c.249 0 .332.166.332.304s-.083.25-.221.277zm.027-.276c0-.055 0-.138-.166-.138h-.083v.304h.028c.194 0 .221-.083.221-.166z" }) + ] + } + ); +}); + +exports.default = SiUps; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUps.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUps.d.ts new file mode 100644 index 000000000..69f68d06d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUps.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#150400"; +declare const SiUps: IconType; +export { SiUps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUps.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUps.mjs new file mode 100644 index 000000000..19d665715 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUps.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#150400"; +const SiUps = React.forwardRef(function SiUps2({ title = "UPS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.668 14.544l-.028-5.226c.138-.055.387-.111.608-.111.995 0 1.41.774 1.41 2.682 0 1.853-.47 2.765-1.438 2.765-.22 0-.441-.055-.552-.11zM3.124 7.438c4.203-3.843 9.29-4.866 14.018-4.866 1.3 0 2.544.083 3.76.194h-.028v11.253c0 2.184-.774 3.926-2.295 5.171-1.355 1.134-5.447 2.959-6.581 3.456-1.161-.525-5.253-2.378-6.581-3.456-1.493-1.244-2.295-3.014-2.295-5.171V7.438zm12.664 2.599c.028.912.276 1.576 1.687 2.406.747.442 1.051.747 1.051 1.272 0 .581-.387.94-1.023.94-.553 0-1.189-.304-1.631-.691v1.576c.553.304 1.217.525 1.88.525 1.687 0 2.433-1.189 2.461-2.267.028-.995-.249-1.742-1.659-2.571-.608-.387-1.134-.636-1.106-1.244 0-.581.525-.802.995-.802.581 0 1.161.332 1.521.691V8.378c-.304-.221-.94-.581-1.88-.553-1.135.028-2.296.829-2.296 2.212zm-5.834 9.484h1.714l-.028-3.594c.166.028.415.083.774.083 1.908 0 2.986-1.687 2.986-4.175 0-2.461-1.106-4.009-3.152-4.009-.94 0-1.687.221-2.295.608v11.087zm-5.945-6.166c0 1.797.829 2.71 2.516 2.71 1.051 0 1.908-.249 2.571-.691V7.991H7.41v6.387c-.194.138-.47.221-.802.221-.774 0-.885-.719-.885-1.189V7.991H4.009v5.364zM22.12 2.295v11.723c0 2.516-.94 4.645-2.765 6.111-1.549 1.3-6.332 3.429-7.355 3.871-1.023-.442-5.806-2.571-7.355-3.843-1.797-1.465-2.765-3.594-2.765-6.111V2.295C4.756.747 8.074 0 12 0s7.244.747 10.12 2.295zm-.304.221c-2.71-1.465-6-2.184-9.788-2.184s-7.079.746-9.788 2.184v11.502c0 2.433.912 4.452 2.627 5.862 1.576 1.3 6.581 3.484 7.161 3.76.581-.249 5.585-2.433 7.161-3.733 1.714-1.41 2.627-3.429 2.627-5.862V2.516zm-2.433 20.295c0 .47-.387.829-.829.829a.831.831 0 0 1-.829-.829c0-.47.387-.829.829-.829.441 0 .801.359.829.829zm-.166 0a.679.679 0 0 0-.664-.691c-.359 0-.664.332-.664.691 0 .359.304.664.664.664a.673.673 0 0 0 .664-.664zm-.553.055c.028.055.304.442.304.442h-.221s-.276-.387-.276-.415h-.028v.415h-.194v-.995l.304-.028c.249 0 .332.166.332.304s-.083.25-.221.277zm.027-.276c0-.055 0-.138-.166-.138h-.083v.304h.028c.194 0 .221-.083.221-.166z" }) + ] + } + ); +}); + +export { SiUps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.cjs new file mode 100644 index 000000000..6316f8355 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00E9A3"; +const SiUpstash = React__namespace.forwardRef(function SiUpstash2({ title = "Upstash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.8027 0C11.193 0 8.583.9952 6.5918 2.9863c-3.9823 3.9823-3.9823 10.4396 0 14.4219 1.9911 1.9911 5.2198 1.9911 7.211 0 1.991-1.9911 1.991-5.2198 0-7.211L12 12c.9956.9956.9956 2.6098 0 3.6055-.9956.9955-2.6099.9955-3.6055 0-2.9866-2.9868-2.9866-7.8297 0-10.8164 2.9868-2.9868 7.8297-2.9868 10.8164 0l1.8028-1.8028C19.0225.9952 16.4125 0 13.8027 0zM12 12c-.9956-.9956-.9956-2.6098 0-3.6055.9956-.9955 2.6098-.9955 3.6055 0 2.9867 2.9868 2.9867 7.8297 0 10.8164-2.9867 2.9868-7.8297 2.9868-10.8164 0l-1.8028 1.8028c3.9823 3.9822 10.4396 3.9822 14.4219 0 3.9823-3.9824 3.9823-10.4396 0-14.4219-.9956-.9956-2.3006-1.4922-3.6055-1.4922-1.3048 0-2.6099.4966-3.6054 1.4922-1.9912 1.9912-1.9912 5.2198 0 7.211z" }) + ] + } + ); +}); + +exports.default = SiUpstash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.d.ts new file mode 100644 index 000000000..ebc388242 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00E9A3"; +declare const SiUpstash: IconType; +export { SiUpstash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.mjs new file mode 100644 index 000000000..b7d160c47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpstash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00E9A3"; +const SiUpstash = React.forwardRef(function SiUpstash2({ title = "Upstash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.8027 0C11.193 0 8.583.9952 6.5918 2.9863c-3.9823 3.9823-3.9823 10.4396 0 14.4219 1.9911 1.9911 5.2198 1.9911 7.211 0 1.991-1.9911 1.991-5.2198 0-7.211L12 12c.9956.9956.9956 2.6098 0 3.6055-.9956.9955-2.6099.9955-3.6055 0-2.9866-2.9868-2.9866-7.8297 0-10.8164 2.9868-2.9868 7.8297-2.9868 10.8164 0l1.8028-1.8028C19.0225.9952 16.4125 0 13.8027 0zM12 12c-.9956-.9956-.9956-2.6098 0-3.6055.9956-.9955 2.6098-.9955 3.6055 0 2.9867 2.9868 2.9867 7.8297 0 10.8164-2.9867 2.9868-7.8297 2.9868-10.8164 0l-1.8028 1.8028c3.9823 3.9822 10.4396 3.9822 14.4219 0 3.9823-3.9824 3.9823-10.4396 0-14.4219-.9956-.9956-2.3006-1.4922-3.6055-1.4922-1.3048 0-2.6099.4966-3.6054 1.4922-1.9912 1.9912-1.9912 5.2198 0 7.211z" }) + ] + } + ); +}); + +export { SiUpstash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.cjs new file mode 100644 index 000000000..803feda55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5CDD8B"; +const SiUptimekuma = React__namespace.forwardRef(function SiUptimekuma2({ title = "Uptime Kuma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.759.955c-4.071 0-7.93 2.265-10.06 5.774l-.16.263-.116.284c-1.81 4.44-2.188 9.118.621 12.459 2.67 3.174 6.221 3.328 9.477 3.308 3.256-.02 6.323-.482 8.995-2.032C22.75 19.714 24 16.917 24 14.53c0-2.388-.724-4.698-1.882-7.343l-.112-.257-.148-.238C19.683 3.2 15.83.955 11.758.955Zm0 3.868c2.919 0 5.19 1.305 6.816 3.914 2.076 4.747 2.076 7.724 0 8.929-3.116 1.808-11.234 2.359-13.57-.42-1.558-1.853-1.558-4.69 0-8.51 1.584-2.608 3.835-3.913 6.754-3.913z" }) + ] + } + ); +}); + +exports.default = SiUptimekuma; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.d.ts new file mode 100644 index 000000000..2d6b493b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5CDD8B"; +declare const SiUptimekuma: IconType; +export { SiUptimekuma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.mjs new file mode 100644 index 000000000..608742e9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUptimekuma.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5CDD8B"; +const SiUptimekuma = React.forwardRef(function SiUptimekuma2({ title = "Uptime Kuma", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.759.955c-4.071 0-7.93 2.265-10.06 5.774l-.16.263-.116.284c-1.81 4.44-2.188 9.118.621 12.459 2.67 3.174 6.221 3.328 9.477 3.308 3.256-.02 6.323-.482 8.995-2.032C22.75 19.714 24 16.917 24 14.53c0-2.388-.724-4.698-1.882-7.343l-.112-.257-.148-.238C19.683 3.2 15.83.955 11.758.955Zm0 3.868c2.919 0 5.19 1.305 6.816 3.914 2.076 4.747 2.076 7.724 0 8.929-3.116 1.808-11.234 2.359-13.57-.42-1.558-1.853-1.558-4.69 0-8.51 1.584-2.608 3.835-3.913 6.754-3.913z" }) + ] + } + ); +}); + +export { SiUptimekuma as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.cjs new file mode 100644 index 000000000..99b6bfa4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6FDA44"; +const SiUpwork = React__namespace.forwardRef(function SiUpwork2({ title = "Upwork", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.561 13.158c-1.102 0-2.135-.467-3.074-1.227l.228-1.076.008-.042c.207-1.143.849-3.06 2.839-3.06 1.492 0 2.703 1.212 2.703 2.703-.001 1.489-1.212 2.702-2.704 2.702zm0-8.14c-2.539 0-4.51 1.649-5.31 4.366-1.22-1.834-2.148-4.036-2.687-5.892H7.828v7.112c-.002 1.406-1.141 2.546-2.547 2.548-1.405-.002-2.543-1.143-2.545-2.548V3.492H0v7.112c0 2.914 2.37 5.303 5.281 5.303 2.913 0 5.283-2.389 5.283-5.303v-1.19c.529 1.107 1.182 2.229 1.974 3.221l-1.673 7.873h2.797l1.213-5.71c1.063.679 2.285 1.109 3.686 1.109 3 0 5.439-2.452 5.439-5.45 0-3-2.439-5.439-5.439-5.439z" }) + ] + } + ); +}); + +exports.default = SiUpwork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.d.ts new file mode 100644 index 000000000..35922a38d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6FDA44"; +declare const SiUpwork: IconType; +export { SiUpwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.mjs new file mode 100644 index 000000000..ed9f59cce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUpwork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6FDA44"; +const SiUpwork = React.forwardRef(function SiUpwork2({ title = "Upwork", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.561 13.158c-1.102 0-2.135-.467-3.074-1.227l.228-1.076.008-.042c.207-1.143.849-3.06 2.839-3.06 1.492 0 2.703 1.212 2.703 2.703-.001 1.489-1.212 2.702-2.704 2.702zm0-8.14c-2.539 0-4.51 1.649-5.31 4.366-1.22-1.834-2.148-4.036-2.687-5.892H7.828v7.112c-.002 1.406-1.141 2.546-2.547 2.548-1.405-.002-2.543-1.143-2.545-2.548V3.492H0v7.112c0 2.914 2.37 5.303 5.281 5.303 2.913 0 5.283-2.389 5.283-5.303v-1.19c.529 1.107 1.182 2.229 1.974 3.221l-1.673 7.873h2.797l1.213-5.71c1.063.679 2.285 1.109 3.686 1.109 3 0 5.439-2.452 5.439-5.45 0-3-2.439-5.439-5.439-5.439z" }) + ] + } + ); +}); + +export { SiUpwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.cjs new file mode 100644 index 000000000..2f4ee70c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6720"; +const SiUservoice = React__namespace.forwardRef(function SiUservoice2({ title = "UserVoice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.449 0-3.892 2.672V16.8c0 1.34-.647 2.527-1.635 3.253-.937-.768-1.479-1.994-1.479-3.253V16c0-.8-.778-1.6-.778-2.4 0-.556.376-1.112.606-1.669.11-.219.172-.467.172-.73 0-.885-.696-1.601-1.556-1.601-.86 0-1.557.716-1.557 1.6 0 .264.063.512.173.731.23.557.606 1.113.606 1.67 0 .8-.78 1.6-.78 2.4v.799c0 1.442.429 2.741 1.183 3.821-1.585-.506-2.738-2.028-2.738-3.821V16c0-.8-.779-1.6-.779-2.4 0-.556.376-1.112.605-1.669.11-.219.174-.467.174-.73 0-.885-.698-1.601-1.558-1.601-.86 0-1.556.716-1.556 1.6 0 .264.063.512.174.731.229.557.604 1.113.604 1.67 0 .8-.778 1.6-.778 2.4v.799c0 3.97 3.142 7.2 7.005 7.2s7.006-3.23 7.006-7.2V4.224l.778-.528.778.528V16.64c0 2.653-.778 5.325-3.736 7.2 3.012 0 6.762-3.48 6.85-7.999V2.671zM4.216.96c-.86 0-1.556.717-1.556 1.6 0 .884.696 1.6 1.556 1.6s1.557-.716 1.557-1.6c0-.883-.697-1.6-1.557-1.6zm4.67 0c-.86 0-1.557.717-1.557 1.6 0 .884.698 1.6 1.558 1.6.86 0 1.556-.716 1.556-1.6 0-.883-.697-1.6-1.556-1.6zm-4.67 4.32c-.86 0-1.556.717-1.556 1.6s.696 1.6 1.556 1.6 1.557-.716 1.557-1.6-.697-1.6-1.557-1.6zm4.67 0c-.86 0-1.557.717-1.557 1.6s.698 1.6 1.558 1.6c.86 0 1.556-.716 1.556-1.6s-.697-1.6-1.556-1.6z" }) + ] + } + ); +}); + +exports.default = SiUservoice; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.d.ts new file mode 100644 index 000000000..1415d773a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6720"; +declare const SiUservoice: IconType; +export { SiUservoice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.mjs new file mode 100644 index 000000000..43f8aaf5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUservoice.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6720"; +const SiUservoice = React.forwardRef(function SiUservoice2({ title = "UserVoice", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m17.449 0-3.892 2.672V16.8c0 1.34-.647 2.527-1.635 3.253-.937-.768-1.479-1.994-1.479-3.253V16c0-.8-.778-1.6-.778-2.4 0-.556.376-1.112.606-1.669.11-.219.172-.467.172-.73 0-.885-.696-1.601-1.556-1.601-.86 0-1.557.716-1.557 1.6 0 .264.063.512.173.731.23.557.606 1.113.606 1.67 0 .8-.78 1.6-.78 2.4v.799c0 1.442.429 2.741 1.183 3.821-1.585-.506-2.738-2.028-2.738-3.821V16c0-.8-.779-1.6-.779-2.4 0-.556.376-1.112.605-1.669.11-.219.174-.467.174-.73 0-.885-.698-1.601-1.558-1.601-.86 0-1.556.716-1.556 1.6 0 .264.063.512.174.731.229.557.604 1.113.604 1.67 0 .8-.778 1.6-.778 2.4v.799c0 3.97 3.142 7.2 7.005 7.2s7.006-3.23 7.006-7.2V4.224l.778-.528.778.528V16.64c0 2.653-.778 5.325-3.736 7.2 3.012 0 6.762-3.48 6.85-7.999V2.671zM4.216.96c-.86 0-1.556.717-1.556 1.6 0 .884.696 1.6 1.556 1.6s1.557-.716 1.557-1.6c0-.883-.697-1.6-1.557-1.6zm4.67 0c-.86 0-1.557.717-1.557 1.6 0 .884.698 1.6 1.558 1.6.86 0 1.556-.716 1.556-1.6 0-.883-.697-1.6-1.556-1.6zm-4.67 4.32c-.86 0-1.556.717-1.556 1.6s.696 1.6 1.556 1.6 1.557-.716 1.557-1.6-.697-1.6-1.557-1.6zm4.67 0c-.86 0-1.557.717-1.557 1.6s.698 1.6 1.558 1.6c.86 0 1.556-.716 1.556-1.6s-.697-1.6-1.556-1.6z" }) + ] + } + ); +}); + +export { SiUservoice as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.cjs new file mode 100644 index 000000000..cfd06c698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333366"; +const SiUsps = React__namespace.forwardRef(function SiUsps2({ title = "USPS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.145 4.577L0 19.423h20.855L24 4.577H3.145zm-.157 3.806h9.436c.157 0 5.064 0 5.159.975H9.09l1.321 4.026c1.51-.723 5.222-2.233 7.455-2.328.944-.031 1.321.126 1.132.252-.126.063-1.038.189-1.761.377-1.258.315-1.321.315-2.642.755-1.478.503-2.705 1.069-4.53 1.919L.723 18.983l2.265-10.6zm16.483 1.698c-.535-.094-2.768.063-3.334.063-.126 0-.472.031-.472-.063 0-.063.126-.063.377-.094s1.006-.157 1.258-.283c.063-.063.22-.157.315-.252.031-.063.063-.094.157-.094h1.164c.755 0 1.195.094 1.132.723-.031.315-.472 1.132-.629 1.384-.063.094-.189.189-.157 0 .126-.503.597-1.321.189-1.384zm.88 8.902H2.076s17.363-6.794 17.552-6.92c0 0 1.541-2.076.629-2.925-.283-.283-.692-.283-2.265-.283 0 0-.063-.598-2.485-1.164-.283-.063-11.858-2.517-11.858-2.517h19.628l-2.926 13.809zm2.925-.695c0-.195-.114-.293-.358-.293h-.406v1.008h.146v-.439h.179l.276.455h.179L23 18.564c.162-.016.276-.097.276-.276zm-.455.146h-.163v-.341h.211c.114 0 .228.016.228.163 0 .162-.13.178-.276.178zm.016-.829a.868.868 0 0 0-.894.878c0 .504.406.894.894.894s.894-.39.894-.894a.878.878 0 0 0-.894-.878zm0 1.642c-.423 0-.731-.325-.731-.764 0-.423.325-.748.731-.748.406 0 .731.325.731.748 0 .439-.325.764-.731.764z" }) + ] + } + ); +}); + +exports.default = SiUsps; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.d.ts new file mode 100644 index 000000000..6066125a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333366"; +declare const SiUsps: IconType; +export { SiUsps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.mjs new file mode 100644 index 000000000..5a9438db0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUsps.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333366"; +const SiUsps = React.forwardRef(function SiUsps2({ title = "USPS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.145 4.577L0 19.423h20.855L24 4.577H3.145zm-.157 3.806h9.436c.157 0 5.064 0 5.159.975H9.09l1.321 4.026c1.51-.723 5.222-2.233 7.455-2.328.944-.031 1.321.126 1.132.252-.126.063-1.038.189-1.761.377-1.258.315-1.321.315-2.642.755-1.478.503-2.705 1.069-4.53 1.919L.723 18.983l2.265-10.6zm16.483 1.698c-.535-.094-2.768.063-3.334.063-.126 0-.472.031-.472-.063 0-.063.126-.063.377-.094s1.006-.157 1.258-.283c.063-.063.22-.157.315-.252.031-.063.063-.094.157-.094h1.164c.755 0 1.195.094 1.132.723-.031.315-.472 1.132-.629 1.384-.063.094-.189.189-.157 0 .126-.503.597-1.321.189-1.384zm.88 8.902H2.076s17.363-6.794 17.552-6.92c0 0 1.541-2.076.629-2.925-.283-.283-.692-.283-2.265-.283 0 0-.063-.598-2.485-1.164-.283-.063-11.858-2.517-11.858-2.517h19.628l-2.926 13.809zm2.925-.695c0-.195-.114-.293-.358-.293h-.406v1.008h.146v-.439h.179l.276.455h.179L23 18.564c.162-.016.276-.097.276-.276zm-.455.146h-.163v-.341h.211c.114 0 .228.016.228.163 0 .162-.13.178-.276.178zm.016-.829a.868.868 0 0 0-.894.878c0 .504.406.894.894.894s.894-.39.894-.894a.878.878 0 0 0-.894-.878zm0 1.642c-.423 0-.731-.325-.731-.764 0-.423.325-.748.731-.748.406 0 .731.325.731.748 0 .439-.325.764-.731.764z" }) + ] + } + ); +}); + +export { SiUsps as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.cjs new file mode 100644 index 000000000..67b95df0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#76B83F"; +const SiUtorrent = React__namespace.forwardRef(function SiUtorrent2({ title = "uTorrent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.684 23.94a12.013 12.013 0 0 0 9.599-7.79c-.118.044-.26.096-.432.147-2 .59-3.404-.466-3.687-.649-.283-.18-.587-.48-.643-.464-.183 1.132-1.218 2.706-3.58 3.42-1.295.391-2.687.4-3.681-.157l.328.822c.13.328.351.866.488 1.192 0 0 .858 2.044 1.608 3.48M2.723 7.153l3.54-.66c.323-.059.68.124.794.407l2.432 6.07c.332.633.399.773.615 1.043 0 0 1.68 2.398 4.24 1.812 1.726-.394 2.532-1.69 2.587-2.612.057-.296-.032-.669-.185-1.016L13.832 5.61c-.117-.266.022-.527.306-.581l2.953-.55a.69.69 0 0 1 .706.376l3.227 6.91c.13.276.394.712.588.966 0 0 .671.964 1.747.78.266 0 .569-.143.569-.143.047-.43.072-.866.072-1.31 0-6.627-5.373-12-12.002-12C5.372.06 0 5.433 0 12.06c0 5.319 3.46 9.827 8.252 11.402a24.768 24.768 0 0 1-.919-2.121L2.298 7.808c-.111-.297.083-.59.425-.654" }) + ] + } + ); +}); + +exports.default = SiUtorrent; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.d.ts new file mode 100644 index 000000000..b229cb596 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#76B83F"; +declare const SiUtorrent: IconType; +export { SiUtorrent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.mjs new file mode 100644 index 000000000..06d4c1de0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUtorrent.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#76B83F"; +const SiUtorrent = React.forwardRef(function SiUtorrent2({ title = "uTorrent", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.684 23.94a12.013 12.013 0 0 0 9.599-7.79c-.118.044-.26.096-.432.147-2 .59-3.404-.466-3.687-.649-.283-.18-.587-.48-.643-.464-.183 1.132-1.218 2.706-3.58 3.42-1.295.391-2.687.4-3.681-.157l.328.822c.13.328.351.866.488 1.192 0 0 .858 2.044 1.608 3.48M2.723 7.153l3.54-.66c.323-.059.68.124.794.407l2.432 6.07c.332.633.399.773.615 1.043 0 0 1.68 2.398 4.24 1.812 1.726-.394 2.532-1.69 2.587-2.612.057-.296-.032-.669-.185-1.016L13.832 5.61c-.117-.266.022-.527.306-.581l2.953-.55a.69.69 0 0 1 .706.376l3.227 6.91c.13.276.394.712.588.966 0 0 .671.964 1.747.78.266 0 .569-.143.569-.143.047-.43.072-.866.072-1.31 0-6.627-5.373-12-12.002-12C5.372.06 0 5.433 0 12.06c0 5.319 3.46 9.827 8.252 11.402a24.768 24.768 0 0 1-.919-2.121L2.298 7.808c-.111-.297.083-.59.425-.654" }) + ] + } + ); +}); + +export { SiUtorrent as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUv.cjs new file mode 100644 index 000000000..d88a952b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DE5FE9"; +const SiUv = React__namespace.forwardRef(function SiUv2({ title = "uv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 .1058.0504 11.9496.0403 9.5597c.0055 1.3199 1.08 2.3854 2.4 2.3798l9.5596-.0403 5.9749-.0252.6075-.0026c1.316-.0056 2.3799-1.0963 2.3799-2.4123h1.0946v2.3894L24 23.9042 23.8992.005 12.9056.0513l.0463 9.5245v5.9637h-1.9583L11.04 9.584 10.9936.0594Z" }) + ] + } + ); +}); + +exports.default = SiUv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiUv.d.ts new file mode 100644 index 000000000..e16616c20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DE5FE9"; +declare const SiUv: IconType; +export { SiUv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiUv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiUv.mjs new file mode 100644 index 000000000..f2166325f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiUv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DE5FE9"; +const SiUv = React.forwardRef(function SiUv2({ title = "uv", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 .1058.0504 11.9496.0403 9.5597c.0055 1.3199 1.08 2.3854 2.4 2.3798l9.5596-.0403 5.9749-.0252.6075-.0026c1.316-.0056 2.3799-1.0963 2.3799-2.4123h1.0946v2.3894L24 23.9042 23.8992.005 12.9056.0513l.0463 9.5245v5.9637h-1.9583L11.04 9.584 10.9936.0594Z" }) + ] + } + ); +}); + +export { SiUv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV.cjs new file mode 100644 index 000000000..f99ed96c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5D87BF"; +const SiV = React__namespace.forwardRef(function SiV2({ title = "V", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.583 23.4965c.0673.1924-.0435.3484-.2472.3484h-6.262c-.4075 0-.8502-.3113-.9881-.6947L.0426.7837C-.105.3925.149.1152.5276.1599l6.393.6158c.4056.0391.8441.383.9787.7675l7.6837 21.9533zM23.4736.1599l-6.393.6159c-.4055.0391-.8436.3832-.9775.7678l-3.8275 10.9895 3.6784 10.5098L23.9586.7837c.1378-.3834-.0795-.663-.485-.6238z" }) + ] + } + ); +}); + +exports.default = SiV; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiV.d.ts new file mode 100644 index 000000000..36cb1a224 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5D87BF"; +declare const SiV: IconType; +export { SiV as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV.mjs new file mode 100644 index 000000000..dd76392ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5D87BF"; +const SiV = React.forwardRef(function SiV2({ title = "V", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.583 23.4965c.0673.1924-.0435.3484-.2472.3484h-6.262c-.4075 0-.8502-.3113-.9881-.6947L.0426.7837C-.105.3925.149.1152.5276.1599l6.393.6158c.4056.0391.8441.383.9787.7675l7.6837 21.9533zM23.4736.1599l-6.393.6159c-.4055.0391-.8436.3832-.9775.7678l-3.8275 10.9895 3.6784 10.5098L23.9586.7837c.1378-.3834-.0795-.663-.485-.6238z" }) + ] + } + ); +}); + +export { SiV as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV0.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV0.cjs new file mode 100644 index 000000000..64e5d9e7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV0.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiV0 = React__namespace.forwardRef(function SiV02({ title = "v0", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.066 6.028v2.22h5.729q.075-.001.148.005l-5.853 5.752a2 2 0 0 1-.024-.309V8.247h-2.353v5.45c0 2.322 1.935 4.222 4.258 4.222h5.675v-2.22h-5.675q-.03 0-.059-.003l5.729-5.629q.006.082.006.166v5.465H24v-5.465a4.204 4.204 0 0 0-4.205-4.205zM0 8.245l8.28 9.266c.839.94 2.396.346 2.396-.914V8.245H8.19v5.44l-4.86-5.44Z" }) + ] + } + ); +}); + +exports.default = SiV0; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV0.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiV0.d.ts new file mode 100644 index 000000000..482b37bf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV0.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiV0: IconType; +export { SiV0 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV0.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV0.mjs new file mode 100644 index 000000000..2d5b1e536 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV0.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiV0 = React.forwardRef(function SiV02({ title = "v0", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.066 6.028v2.22h5.729q.075-.001.148.005l-5.853 5.752a2 2 0 0 1-.024-.309V8.247h-2.353v5.45c0 2.322 1.935 4.222 4.258 4.222h5.675v-2.22h-5.675q-.03 0-.059-.003l5.729-5.629q.006.082.006.166v5.465H24v-5.465a4.204 4.204 0 0 0-4.205-4.205zM0 8.245l8.28 9.266c.839.94 2.396.346 2.396-.914V8.245H8.19v5.44l-4.86-5.44Z" }) + ] + } + ); +}); + +export { SiV0 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.cjs new file mode 100644 index 000000000..62f1e4ca3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F1F1F"; +const SiV2ex = React__namespace.forwardRef(function SiV2ex2({ title = "V2EX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.671 1.933h13.821a1.342 1.342 0 0 1 .98.425l8.166 8.725a1.342 1.342 0 0 1 0 1.834l-8.166 8.724a1.342 1.342 0 0 1-.98.426H.673A.671.671 0 0 1 0 21.395v-6.878h13.19l2.276-2.28a.336.336 0 0 0 0-.474l-2.276-2.28H0V2.604a.671.671 0 0 1 .671-.671Z" }) + ] + } + ); +}); + +exports.default = SiV2ex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.d.ts new file mode 100644 index 000000000..541f68cd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F1F1F"; +declare const SiV2ex: IconType; +export { SiV2ex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.mjs new file mode 100644 index 000000000..233892f9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV2ex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F1F1F"; +const SiV2ex = React.forwardRef(function SiV2ex2({ title = "V2EX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.671 1.933h13.821a1.342 1.342 0 0 1 .98.425l8.166 8.725a1.342 1.342 0 0 1 0 1.834l-8.166 8.724a1.342 1.342 0 0 1-.98.426H.673A.671.671 0 0 1 0 21.395v-6.878h13.19l2.276-2.28a.336.336 0 0 0 0-.474l-2.276-2.28H0V2.604a.671.671 0 0 1 .671-.671Z" }) + ] + } + ); +}); + +export { SiV2ex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV8.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV8.cjs new file mode 100644 index 000000000..c3cdf4979 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV8.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B8BF5"; +const SiV8 = React__namespace.forwardRef(function SiV82({ title = "V8", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.832 6c0-.161.008-.322.023-.479.019-.207.07-.401.112-.599l-.694-1.377H0l2.182 3.818h1.527l2.097 3.98a6.534 6.534 0 0 1 1.727-2.745A5.123 5.123 0 0 1 6.832 6zM10.365 19.663L12 22.637l1.637-2.975c-.535.138-1.079.234-1.637.234s-1.101-.096-1.635-.233zM17.728 3.545l-.717 1.258c.056.238.112.476.134.726a5.148 5.148 0 0 1-.677 3.07 6.565 6.565 0 0 1 1.727 2.746l2.097-3.981h1.527L24 3.545h-6.272z M17.846 12.007a6 6 0 0 0-2.073-3.31A4.64 4.64 0 0 0 12 1.363 4.635 4.635 0 0 0 7.363 6a4.62 4.62 0 0 0 .865 2.697A5.988 5.988 0 0 0 6 13.363a6.01 6.01 0 0 0 3.814 5.592 6.02 6.02 0 0 0 4.375-.003 6.006 6.006 0 0 0 3.657-6.945zM12 4.227c1.129 0 2.046.917 2.046 2.045a2.046 2.046 0 0 1-4.092 0c0-1.128.918-2.045 2.046-2.045zm0 11.456a2.32 2.32 0 0 1 0-4.637c1.282 0 2.318 1.037 2.318 2.318S13.282 15.683 12 15.683z" }) + ] + } + ); +}); + +exports.default = SiV8; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV8.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiV8.d.ts new file mode 100644 index 000000000..0d8aea3b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV8.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B8BF5"; +declare const SiV8: IconType; +export { SiV8 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiV8.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiV8.mjs new file mode 100644 index 000000000..d826f6e45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiV8.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B8BF5"; +const SiV8 = React.forwardRef(function SiV82({ title = "V8", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.832 6c0-.161.008-.322.023-.479.019-.207.07-.401.112-.599l-.694-1.377H0l2.182 3.818h1.527l2.097 3.98a6.534 6.534 0 0 1 1.727-2.745A5.123 5.123 0 0 1 6.832 6zM10.365 19.663L12 22.637l1.637-2.975c-.535.138-1.079.234-1.637.234s-1.101-.096-1.635-.233zM17.728 3.545l-.717 1.258c.056.238.112.476.134.726a5.148 5.148 0 0 1-.677 3.07 6.565 6.565 0 0 1 1.727 2.746l2.097-3.981h1.527L24 3.545h-6.272z M17.846 12.007a6 6 0 0 0-2.073-3.31A4.64 4.64 0 0 0 12 1.363 4.635 4.635 0 0 0 7.363 6a4.62 4.62 0 0 0 .865 2.697A5.988 5.988 0 0 0 6 13.363a6.01 6.01 0 0 0 3.814 5.592 6.02 6.02 0 0 0 4.375-.003 6.006 6.006 0 0 0 3.657-6.945zM12 4.227c1.129 0 2.046.917 2.046 2.045a2.046 2.046 0 0 1-4.092 0c0-1.128.918-2.045 2.046-2.045zm0 11.456a2.32 2.32 0 0 1 0-4.637c1.282 0 2.318 1.037 2.318 2.318S13.282 15.683 12 15.683z" }) + ] + } + ); +}); + +export { SiV8 as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.cjs new file mode 100644 index 000000000..ed6980930 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B4F0"; +const SiVaadin = React__namespace.forwardRef(function SiVaadin2({ title = "Vaadin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.166.521C.506.521 0 1.055 0 1.715v1.97c0 2.316 1.054 3.473 3.502 3.473h5.43c1.623 0 1.783.685 1.783 1.35 0 .068.004.13.012.193a1.268 1.268 0 0 0 2.531-.004c.007-.062.012-.121.012-.19 0-.664.16-1.349 1.783-1.349h5.43C22.93 7.158 24 6.001 24 3.686V1.715c0-.66-.524-1.194-1.184-1.194-.66 0-1.189.534-1.189 1.194l-.004.685c0 .746-.476 1.27-1.594 1.27h-5.322c-2.422 0-2.608 1.796-2.687 2.748h-.055c-.08-.952-.266-2.748-2.688-2.748H3.955c-1.118 0-1.629-.544-1.629-1.29v-.665c0-.66-.5-1.194-1.16-1.194zm5.875 10.553a1.586 1.586 0 0 0-1.375 2.371c1.657 3.06 3.308 6.13 4.967 9.184a1.415 1.415 0 0 0 2.586.02l.033-.06 4.945-9.142a1.587 1.587 0 0 0-1.377-2.373c-.702 0-1.179.345-1.502 1.082l-3.386 6.313-3.383-6.305c-.326-.745-.805-1.09-1.508-1.09Z" }) + ] + } + ); +}); + +exports.default = SiVaadin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.d.ts new file mode 100644 index 000000000..934a05718 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B4F0"; +declare const SiVaadin: IconType; +export { SiVaadin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.mjs new file mode 100644 index 000000000..52ac19ab1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVaadin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B4F0"; +const SiVaadin = React.forwardRef(function SiVaadin2({ title = "Vaadin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.166.521C.506.521 0 1.055 0 1.715v1.97c0 2.316 1.054 3.473 3.502 3.473h5.43c1.623 0 1.783.685 1.783 1.35 0 .068.004.13.012.193a1.268 1.268 0 0 0 2.531-.004c.007-.062.012-.121.012-.19 0-.664.16-1.349 1.783-1.349h5.43C22.93 7.158 24 6.001 24 3.686V1.715c0-.66-.524-1.194-1.184-1.194-.66 0-1.189.534-1.189 1.194l-.004.685c0 .746-.476 1.27-1.594 1.27h-5.322c-2.422 0-2.608 1.796-2.687 2.748h-.055c-.08-.952-.266-2.748-2.688-2.748H3.955c-1.118 0-1.629-.544-1.629-1.29v-.665c0-.66-.5-1.194-1.16-1.194zm5.875 10.553a1.586 1.586 0 0 0-1.375 2.371c1.657 3.06 3.308 6.13 4.967 9.184a1.415 1.415 0 0 0 2.586.02l.033-.06 4.945-9.142a1.587 1.587 0 0 0-1.377-2.373c-.702 0-1.179.345-1.502 1.082l-3.386 6.313-3.383-6.305c-.326-.745-.805-1.09-1.508-1.09Z" }) + ] + } + ); +}); + +export { SiVaadin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.cjs new file mode 100644 index 000000000..375d710e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1868F2"; +const SiVagrant = React__namespace.forwardRef(function SiVagrant2({ title = "Vagrant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.556 0L.392 1.846V4.11l7.124 17.3L11.998 24l4.523-2.611 7.083-17.345V1.848l.004-.002L20.44 0l-5.274 3.087v2.111l-3.168 7.384-3.164-7.384V3.109l-.017-.008.017-.01z" }) + ] + } + ); +}); + +exports.default = SiVagrant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.d.ts new file mode 100644 index 000000000..20ec85e53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1868F2"; +declare const SiVagrant: IconType; +export { SiVagrant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.mjs new file mode 100644 index 000000000..a2fdf83cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVagrant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1868F2"; +const SiVagrant = React.forwardRef(function SiVagrant2({ title = "Vagrant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.556 0L.392 1.846V4.11l7.124 17.3L11.998 24l4.523-2.611 7.083-17.345V1.848l.004-.002L20.44 0l-5.274 3.087v2.111l-3.168 7.384-3.164-7.384V3.109l-.017-.008.017-.01z" }) + ] + } + ); +}); + +export { SiVagrant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVala.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVala.cjs new file mode 100644 index 000000000..be5a93b6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVala.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7239B3"; +const SiVala = React__namespace.forwardRef(function SiVala2({ title = "Vala", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.3836 23.9993-.5152-21.859q-2.2504.8435-3.5153 2.64-1.2509 1.7971-1.2509 4.4689 0 .6092.0629 1.0002.0776.3748.156.6092.0783.2188.1411.3438.0777.1249.0777.2188-.828 0-1.4682-.156-.641-.1723-1.0786-.5316-.4222-.3585-.6565-.9529-.2188-.593-.2188-1.4682 0-1.0624.4524-2.0937.4687-1.0306 1.2657-1.9532.8125-.9211 1.891-1.7025 1.0942-.7815 2.328-1.344Q8.3044.6409 9.6484.3289 11.0079 0 12.3519 0q.3593 0 .6565.0155.312.0156.624.0466l.2816 19.687L20.6481.1554h2.2341L13.9924 24H9.3829Z" }) + ] + } + ); +}); + +exports.default = SiVala; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVala.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVala.d.ts new file mode 100644 index 000000000..bead9a6b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVala.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7239B3"; +declare const SiVala: IconType; +export { SiVala as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVala.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVala.mjs new file mode 100644 index 000000000..b3caf039d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVala.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7239B3"; +const SiVala = React.forwardRef(function SiVala2({ title = "Vala", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.3836 23.9993-.5152-21.859q-2.2504.8435-3.5153 2.64-1.2509 1.7971-1.2509 4.4689 0 .6092.0629 1.0002.0776.3748.156.6092.0783.2188.1411.3438.0777.1249.0777.2188-.828 0-1.4682-.156-.641-.1723-1.0786-.5316-.4222-.3585-.6565-.9529-.2188-.593-.2188-1.4682 0-1.0624.4524-2.0937.4687-1.0306 1.2657-1.9532.8125-.9211 1.891-1.7025 1.0942-.7815 2.328-1.344Q8.3044.6409 9.6484.3289 11.0079 0 12.3519 0q.3593 0 .6565.0155.312.0156.624.0466l.2816 19.687L20.6481.1554h2.2341L13.9924 24H9.3829Z" }) + ] + } + ); +}); + +export { SiVala as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.cjs new file mode 100644 index 000000000..8965e7543 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA4454"; +const SiValorant = React__namespace.forwardRef(function SiValorant2({ title = "Valorant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.792 2.152a.252.252 0 0 0-.098.083c-3.384 4.23-6.769 8.46-10.15 12.69-.107.093-.025.288.119.265 2.439.003 4.877 0 7.316.001a.66.66 0 0 0 .552-.25c.774-.967 1.55-1.934 2.324-2.903a.72.72 0 0 0 .144-.49c-.002-3.077 0-6.153-.003-9.23.016-.11-.1-.206-.204-.167zM.077 2.166c-.077.038-.074.132-.076.205.002 3.074.001 6.15.001 9.225a.679.679 0 0 0 .158.463l7.64 9.55c.12.152.308.25.505.247 2.455 0 4.91.003 7.365 0 .142.02.222-.174.116-.265C10.661 15.176 5.526 8.766.4 2.35c-.08-.094-.174-.272-.322-.184z" }) + ] + } + ); +}); + +exports.default = SiValorant; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.d.ts new file mode 100644 index 000000000..9c9c0f336 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA4454"; +declare const SiValorant: IconType; +export { SiValorant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.mjs new file mode 100644 index 000000000..99f64f810 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiValorant.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA4454"; +const SiValorant = React.forwardRef(function SiValorant2({ title = "Valorant", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.792 2.152a.252.252 0 0 0-.098.083c-3.384 4.23-6.769 8.46-10.15 12.69-.107.093-.025.288.119.265 2.439.003 4.877 0 7.316.001a.66.66 0 0 0 .552-.25c.774-.967 1.55-1.934 2.324-2.903a.72.72 0 0 0 .144-.49c-.002-3.077 0-6.153-.003-9.23.016-.11-.1-.206-.204-.167zM.077 2.166c-.077.038-.074.132-.076.205.002 3.074.001 6.15.001 9.225a.679.679 0 0 0 .158.463l7.64 9.55c.12.152.308.25.505.247 2.455 0 4.91.003 7.365 0 .142.02.222-.174.116-.265C10.661 15.176 5.526 8.766.4 2.35c-.08-.094-.174-.272-.322-.184z" }) + ] + } + ); +}); + +export { SiValorant as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiValve.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiValve.cjs new file mode 100644 index 000000000..dafe85272 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiValve.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F74843"; +const SiValve = React__namespace.forwardRef(function SiValve2({ title = "Valve", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 8.579v6.842h24V8.58zm1.8 1.415h.793l.776 3.044.76-3.044h.836l-1.227 4.029H3zm5.488 0h1.084l1.145 4.034h-.814l-.27-1.007H7.228s-.21.81-.254.99c-.242.017-.83 0-.83 0zm4.184 0h.792v3.352h1.69v.677h-2.482zm3.45 0h.816l.776 3.005.754-3.005h.815l-1.222 4.034h-.716zm4.828 0h1.69v.522h-1.084v.584h.99v.523h-.99v.6h1.084v.523h-1.69zm-11.902.68l-.426 1.702h.89z" }) + ] + } + ); +}); + +exports.default = SiValve; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiValve.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiValve.d.ts new file mode 100644 index 000000000..a76d1794b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiValve.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F74843"; +declare const SiValve: IconType; +export { SiValve as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiValve.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiValve.mjs new file mode 100644 index 000000000..bc9f38b79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiValve.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F74843"; +const SiValve = React.forwardRef(function SiValve2({ title = "Valve", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 8.579v6.842h24V8.58zm1.8 1.415h.793l.776 3.044.76-3.044h.836l-1.227 4.029H3zm5.488 0h1.084l1.145 4.034h-.814l-.27-1.007H7.228s-.21.81-.254.99c-.242.017-.83 0-.83 0zm4.184 0h.792v3.352h1.69v.677h-2.482zm3.45 0h.816l.776 3.005.754-3.005h.815l-1.222 4.034h-.716zm4.828 0h1.69v.522h-1.084v.584h.99v.523h-.99v.6h1.084v.523h-1.69zm-11.902.68l-.426 1.702h.89z" }) + ] + } + ); +}); + +export { SiValve as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.cjs new file mode 100644 index 000000000..ba2eeb416 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F786AD"; +const SiVanillaextract = React__namespace.forwardRef(function SiVanillaextract2({ title = "Vanilla Extract", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.016.023a.26.26 0 0 0-.24.013.237.237 0 0 0-.106.3c.2.481.379 1.161.055 1.619-.357.502-.91.76-1.71 1.135-.432.201-.935.436-1.517.761-1.585.883-2.194 1.725-2.306 2.781-.941.1-1.495.535-1.822 1.017l-.003.002c-.36.529-.444 1.11-.464 1.348-1.146.656-.267 1.997-.143 2.175l-.01.006-.011.007s-.2.288-.215.622c-.252-.1-.532-.048-.789.186-.202.184-.328.518-.225 1.01-.322-.089-.482.067-.364.409l.2.588c-.2.003-.286.156-.198.432.35.824.604 1.714.854 2.595a45 45 0 0 0 .563 1.87c.292.932.588 1.876.971 2.766.282.652.877.996 1.513 1.283 1.82.82 3.945 1.032 5.917 1.05 1.78.019 3.627-.137 5.325-.702.571-.19 1.162-.427 1.636-.805.6-.48.847-1.354 1.057-2.095l.064-.225c.473-1.634 1.019-3.233 1.568-4.84q.12-.347.238-.697c.118-.35-.043-.505-.37-.413q.168-.519.374-1.01c.13-.404-.117-.544-.557-.325q-.07.034-.14.079c0-.245-.108-.386-.207-.516l-.06-.08a.98.98 0 0 0-.938-.439c.511-.92.474-1.884-.246-2.613a2.9 2.9 0 0 0-.627-.476h-.002l-.032.01c.081-.273.115-.548.115-.81 0-1.183-.542-1.857-.865-2.153a3 3 0 0 0-.058-.32 1.7 1.7 0 0 0-.243-.555c-.556-.85-1.743-1.201-2.092-1.289-.2-.573-.49-1.11-.85-1.498a9.4 9.4 0 0 0-3.04-2.203m-.282 17.605a.304.304 0 0 1 .604-.008l.002.03.067 5.094-.001.03a.304.304 0 0 1-.604.009l-.002-.031-.067-5.093zm-2.5-.316a.304.304 0 0 1 .603-.053l.004.03.474 5.298a.304.304 0 0 1-.6.085l-.005-.031-.474-5.297zm4.93-.209a.304.304 0 0 1 .604.054l-.474 5.298a.304.304 0 0 1-.605-.054zm-7.13-.064a.304.304 0 0 1 .6-.082l.005.03.709 5.163.002.03a.304.304 0 0 1-.598.083l-.006-.03-.709-5.163zm9.33-.235a.304.304 0 0 1 .602.082l-.709 5.162a.304.304 0 0 1-.601-.082zm2.528-.653a.304.304 0 0 1 .592.137l-1.215 5.247a.304.304 0 0 1-.591-.137zm-14.145-.244a.304.304 0 0 1 .356.197l.009.03 1.214 5.212.006.031a.304.304 0 0 1-.589.137l-.008-.03-1.215-5.212-.005-.03a.304.304 0 0 1 .232-.335m8.52-3.702a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m-7.085-.354a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m11.792-.152a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m-9.261-1.366a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m6.427-1.215a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0M6.08 8.865a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m5.263-.202a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m4.808-2.581a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0M9.168 5.88a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m3.846-1.468a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m3.56 9.994c1.322-.438 2.343-1.128 2.979-1.893.912.548 1.465 1.2 1.525 1.903-.363.238-.697.617-.794.944.115-.393-.158-.559-.61-.391-.456.168-.91.603-1.004.99.095-.387-.205-.58-.668-.45-.462.13-.905.526-.977.906.07-.379-.253-.596-.721-.505-.469.09-.897.453-.947.829.048-.375-.3-.62-.772-.568-.476.053-.887.384-.913.757.026-.373-.34-.65-.818-.636s-.87.314-.874.687c.004-.373-.383-.68-.86-.705-.475-.024-.849.244-.83.617-.021-.374-.425-.71-.9-.773-.473-.062-.825.178-.783.555-.042-.376-.461-.751-.93-.85-.47-.1-.796.111-.734.494-.064-.383-.498-.79-.96-.93-.46-.14-.762.05-.675.438-.087-.389-.533-.834-.984-1.01s-.727-.014-.617.382c-.094-.338-.437-.738-.808-.983.125-.56.565-1.085 1.248-1.544.845.551 1.868 1.012 2.979 1.371h.002c3.107 1.004 6.908 1.209 9.447.365" }) + ] + } + ); +}); + +exports.default = SiVanillaextract; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.d.ts new file mode 100644 index 000000000..56f0ef3f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F786AD"; +declare const SiVanillaextract: IconType; +export { SiVanillaextract as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.mjs new file mode 100644 index 000000000..762cdd424 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVanillaextract.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F786AD"; +const SiVanillaextract = React.forwardRef(function SiVanillaextract2({ title = "Vanilla Extract", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.016.023a.26.26 0 0 0-.24.013.237.237 0 0 0-.106.3c.2.481.379 1.161.055 1.619-.357.502-.91.76-1.71 1.135-.432.201-.935.436-1.517.761-1.585.883-2.194 1.725-2.306 2.781-.941.1-1.495.535-1.822 1.017l-.003.002c-.36.529-.444 1.11-.464 1.348-1.146.656-.267 1.997-.143 2.175l-.01.006-.011.007s-.2.288-.215.622c-.252-.1-.532-.048-.789.186-.202.184-.328.518-.225 1.01-.322-.089-.482.067-.364.409l.2.588c-.2.003-.286.156-.198.432.35.824.604 1.714.854 2.595a45 45 0 0 0 .563 1.87c.292.932.588 1.876.971 2.766.282.652.877.996 1.513 1.283 1.82.82 3.945 1.032 5.917 1.05 1.78.019 3.627-.137 5.325-.702.571-.19 1.162-.427 1.636-.805.6-.48.847-1.354 1.057-2.095l.064-.225c.473-1.634 1.019-3.233 1.568-4.84q.12-.347.238-.697c.118-.35-.043-.505-.37-.413q.168-.519.374-1.01c.13-.404-.117-.544-.557-.325q-.07.034-.14.079c0-.245-.108-.386-.207-.516l-.06-.08a.98.98 0 0 0-.938-.439c.511-.92.474-1.884-.246-2.613a2.9 2.9 0 0 0-.627-.476h-.002l-.032.01c.081-.273.115-.548.115-.81 0-1.183-.542-1.857-.865-2.153a3 3 0 0 0-.058-.32 1.7 1.7 0 0 0-.243-.555c-.556-.85-1.743-1.201-2.092-1.289-.2-.573-.49-1.11-.85-1.498a9.4 9.4 0 0 0-3.04-2.203m-.282 17.605a.304.304 0 0 1 .604-.008l.002.03.067 5.094-.001.03a.304.304 0 0 1-.604.009l-.002-.031-.067-5.093zm-2.5-.316a.304.304 0 0 1 .603-.053l.004.03.474 5.298a.304.304 0 0 1-.6.085l-.005-.031-.474-5.297zm4.93-.209a.304.304 0 0 1 .604.054l-.474 5.298a.304.304 0 0 1-.605-.054zm-7.13-.064a.304.304 0 0 1 .6-.082l.005.03.709 5.163.002.03a.304.304 0 0 1-.598.083l-.006-.03-.709-5.163zm9.33-.235a.304.304 0 0 1 .602.082l-.709 5.162a.304.304 0 0 1-.601-.082zm2.528-.653a.304.304 0 0 1 .592.137l-1.215 5.247a.304.304 0 0 1-.591-.137zm-14.145-.244a.304.304 0 0 1 .356.197l.009.03 1.214 5.212.006.031a.304.304 0 0 1-.589.137l-.008-.03-1.215-5.212-.005-.03a.304.304 0 0 1 .232-.335m8.52-3.702a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m-7.085-.354a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m11.792-.152a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m-9.261-1.366a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m6.427-1.215a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0M6.08 8.865a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m5.263-.202a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m4.808-2.581a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0M9.168 5.88a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m3.846-1.468a.405.405 0 1 1 .81 0 .405.405 0 0 1-.81 0m3.56 9.994c1.322-.438 2.343-1.128 2.979-1.893.912.548 1.465 1.2 1.525 1.903-.363.238-.697.617-.794.944.115-.393-.158-.559-.61-.391-.456.168-.91.603-1.004.99.095-.387-.205-.58-.668-.45-.462.13-.905.526-.977.906.07-.379-.253-.596-.721-.505-.469.09-.897.453-.947.829.048-.375-.3-.62-.772-.568-.476.053-.887.384-.913.757.026-.373-.34-.65-.818-.636s-.87.314-.874.687c.004-.373-.383-.68-.86-.705-.475-.024-.849.244-.83.617-.021-.374-.425-.71-.9-.773-.473-.062-.825.178-.783.555-.042-.376-.461-.751-.93-.85-.47-.1-.796.111-.734.494-.064-.383-.498-.79-.96-.93-.46-.14-.762.05-.675.438-.087-.389-.533-.834-.984-1.01s-.727-.014-.617.382c-.094-.338-.437-.738-.808-.983.125-.56.565-1.085 1.248-1.544.845.551 1.868 1.012 2.979 1.371h.002c3.107 1.004 6.908 1.209 9.447.365" }) + ] + } + ); +}); + +export { SiVanillaextract as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.cjs new file mode 100644 index 000000000..81fff54e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0D0D0D"; +const SiVapor = React__namespace.forwardRef(function SiVapor2({ title = "Vapor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.75 13.908v1.56L12 24 1.25 15.468v-1.56L12 22.44l10.75-8.532zM12 17.267L1.25 8.824 12 0l10.75 8.824L12 17.267zm.356-4.635a3.193 3.193 0 0 0 3.193-3.193 3.185 3.185 0 0 0-3.029-3.176l.001-.016-4.514-.427 1.205 4.102a3.184 3.184 0 0 0 3.144 2.71zM12 20.269L1.25 11.737v1.533L12 21.802l10.75-8.532v-1.533L12 20.269zm0-2.366L1.25 9.46v1.64L12 19.63l10.75-8.532V9.46L12 17.903z" }) + ] + } + ); +}); + +exports.default = SiVapor; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.d.ts new file mode 100644 index 000000000..3527fbd01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0D0D0D"; +declare const SiVapor: IconType; +export { SiVapor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.mjs new file mode 100644 index 000000000..88dd9f7a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVapor.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0D0D0D"; +const SiVapor = React.forwardRef(function SiVapor2({ title = "Vapor", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.75 13.908v1.56L12 24 1.25 15.468v-1.56L12 22.44l10.75-8.532zM12 17.267L1.25 8.824 12 0l10.75 8.824L12 17.267zm.356-4.635a3.193 3.193 0 0 0 3.193-3.193 3.185 3.185 0 0 0-3.029-3.176l.001-.016-4.514-.427 1.205 4.102a3.184 3.184 0 0 0 3.144 2.71zM12 20.269L1.25 11.737v1.533L12 21.802l10.75-8.532v-1.533L12 20.269zm0-2.366L1.25 9.46v1.64L12 19.63l10.75-8.532V9.46L12 17.903z" }) + ] + } + ); +}); + +export { SiVapor as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVault.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVault.cjs new file mode 100644 index 000000000..5778fbd5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVault.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFEC6E"; +const SiVault = React__namespace.forwardRef(function SiVault2({ title = "Vault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0l11.955 24L24 0zm13.366 4.827h1.393v1.38h-1.393zm-2.77 5.569H9.22V8.993h1.389zm0-2.087H9.22V6.906h1.389zm0-2.086H9.22V4.819h1.389zm2.087 6.263h-1.377V11.08h1.388zm0-2.09h-1.377V8.993h1.388zm0-2.087h-1.377V6.906h1.388zm0-2.086h-1.377V4.819h1.388zm.683.683h1.393v1.389h-1.393zm0 3.475V8.993h1.389v1.388Z" }) + ] + } + ); +}); + +exports.default = SiVault; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVault.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVault.d.ts new file mode 100644 index 000000000..ea0838876 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVault.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFEC6E"; +declare const SiVault: IconType; +export { SiVault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVault.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVault.mjs new file mode 100644 index 000000000..96e32e115 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVault.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFEC6E"; +const SiVault = React.forwardRef(function SiVault2({ title = "Vault", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0l11.955 24L24 0zm13.366 4.827h1.393v1.38h-1.393zm-2.77 5.569H9.22V8.993h1.389zm0-2.087H9.22V6.906h1.389zm0-2.086H9.22V4.819h1.389zm2.087 6.263h-1.377V11.08h1.388zm0-2.09h-1.377V8.993h1.388zm0-2.087h-1.377V6.906h1.388zm0-2.086h-1.377V4.819h1.388zm.683.683h1.393v1.389h-1.393zm0 3.475V8.993h1.389v1.388Z" }) + ] + } + ); +}); + +export { SiVault as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.cjs new file mode 100644 index 000000000..8e2066d3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiVaultwarden = React__namespace.forwardRef(function SiVaultwarden2({ title = "Vaultwarden", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.5405.4477c-.143.2381-.3334.5239-.4382.6286-.1715.181-.181.1715-.7334-.3715-.6667-.6666-.7715-.6476-1.086.2096-.1332.3524-.295.6-.4285.6762-.1905.0953-.2856.0667-.7619-.2761-.8001-.562-.9429-.4763-1.0954.619-.038.2763-.1143.4763-.2095.5144-.0762.0286-.4-.0667-.7049-.219-.781-.3716-.8953-.2858-.9048.619 0 .3715-.0476.7238-.0952.7715-.0667.0667-.3144.0476-.781-.0666-.9144-.2191-.9716-.162-.7525.7524.1142.4667.1333.7144.0666.781-.0476.0477-.4.0953-.7715.0953-.9143.0095-.9906.1238-.6095.9049.3714.781.2762 1.0096-.4477 1.1049-1.0669.1523-1.1335.2857-.543 1.0762.4763.6286.4477.724-.3429 1.0096-.8476.324-.8667.4286-.2 1.0954.543.5524.5525.562.3715.7334-.1047.1048-.3905.2953-.6286.4382-.5906.3428-.5906.5714 0 .9143.2381.143.5239.3333.6286.4381.181.1715.1715.181-.3715.7335-.6667.6667-.6476.7715.2096 1.0859.3525.1332.6.2951.6762.4285.0953.1905.0667.2857-.2761.762-.562.8-.4763.9428.6191 1.0953.2762.038.4762.1143.5143.2095.0286.0763-.0666.4-.219.705-.3716.7809-.2858.8953.619.9048.3715 0 .724.0476.7715.0951.0667.0667.0476.3144-.0666.7812-.219.9143-.162.9715.7524.7524.4667-.1143.7144-.1334.7811-.0667.0476.0476.0952.4.0952.7715.0095.9144.1239.9906.9049.6096.781-.3715 1.0096-.2762 1.1049.4476.1524 1.067.2857 1.1335 1.0762.543.6286-.4763.724-.4477 1.0097.343.3238.8476.419.8667 1.1049.1903.6666-.6476.6095-.6571 1.1619.2763.343.581.5715.581.9145 0 .5523-.9334.4952-.924 1.1619-.2763.6859.6764.781.6573 1.0954-.2.1333-.3523.2952-.6.4286-.6762.1905-.0953.2858-.0667.762.2762.8.562.943.4762 1.0953-.619.0381-.2763.1143-.4763.2096-.5144.0762-.0286.4.0666.7048.219.781.3715.8954.2857.905-.619 0-.3715.0474-.724.0951-.7716.0667-.0667.3143-.0476.781.0667.9145.219.9716.162.7525-.7524-.1143-.4668-.1333-.7145-.0667-.7812.0477-.0475.4-.0951.7715-.0951.9144-.0095.9906-.1238.6097-.905-.3715-.7809-.2763-1.0096.4476-1.1048 1.0667-.1523 1.1334-.2857.543-1.0762-.4763-.6287-.4478-.724.3428-1.0097.8477-.3238.8668-.419.1905-1.105-.6477-.6666-.6572-.6095.2762-1.1618.2953-.181.4382-.324.4382-.4573 0-.1334-.143-.2763-.4382-.4571-.9334-.5525-.924-.4954-.2762-1.1621.6763-.6858.6572-.781-.2-1.0953-.3524-.1334-.6001-.2953-.6763-.4287-.0952-.1905-.0667-.2857.2763-.7619.562-.8001.4761-.9429-.6192-1.0954-.2762-.038-.4762-.1143-.5143-.2096-.0286-.0762.0667-.4.219-.7048.3715-.781.2858-.8953-.619-.905-.3715 0-.7239-.0474-.7716-.0951-.0666-.0666-.0476-.3143.0667-.781.219-.9143.162-.9715-.7524-.7524-.4668.1142-.7144.1333-.781.0666-.0478-.0477-.0953-.4-.0953-.7715-.0095-.9144-.1238-.9906-.905-.6096-.7809.3714-1.0095.2763-1.1047-.4477-.1524-1.0667-.2858-1.1334-1.0763-.543-.6287.4764-.724.4478-1.0096-.3428-.324-.8476-.4287-.8667-1.0954-.2-.5525.543-.562.5525-.7335.3715-.1047-.1048-.2952-.3905-.438-.6286C12.2739.1429 12.1309 0 11.9976 0c-.1333 0-.2761.1429-.4571.4477zm.9334 1.9335c.1048.1048.1905.3143.1905.4762 0 .162-.0857.3715-.1905.4763-.4096.4095-1.143.1048-1.143-.4763 0-.362.3048-.6667.6667-.6667.162 0 .3715.0857.4763.1905zM11.007 4.0004c.924.8953 1.0573.8953 1.9812 0l.6858-.6667.6667.1905c.762.2095 1.9431.7143 1.9431.8382 0 .038-.8953 2.6287-1.9907 5.7434-1.0953 3.1146-2.0478 5.8386-2.105 6.0577-.0666.2286-.1524.4096-.1905.4096-.038 0-.1143-.162-.162-.3524-.057-.2-1-2.9432-2.1049-6.1054-1.1143-3.1622-2.0192-5.772-2.0192-5.791 0-.1143 2.1145-.9334 2.5622-.9811.0285-.0095.3524.2857.7333.6572zm-3.3432 9.601c1.3526 3.7908 2.4288 6.9054 2.4003 6.934-.0667.0762-1.0763-.219-1.5048-.4477-.343-.1715-.3525-.1905-.4763-1-.0763-.524-.1906-.905-.3049-1.0573-.1904-.2381-.219-.2381-.8667-.1715-1.4287.162-1.3715.181-1.9335-.5714-.6096-.8096-1.181-1.9431-1.4573-2.9051-.162-.5334-.219-1.0668-.2571-2.0954l-.0477-1.3812.8572-.4571c1.1525-.6 1.181-.7049.5905-1.8764-.4285-.8477-.4285-.8.124-1.6002.1523-.2286.3142-.381.3523-.3334.038.0381 1.1716 3.1717 2.524 6.9627Zm11.8203-6.2101.2382.4-.3906.7715c-.5905 1.181-.562 1.2858.581 1.8859l.8478.4476v1.0763c0 1.2478-.1715 2.2193-.581 3.2575-.3144.7905-.943 1.8383-1.448 2.4288l-.3237.381-.7524-.1143c-.4096-.0666-.8668-.1142-1.0096-.1142-.4 0-.6002.3523-.7335 1.2858l-.1238.8286-.5048.219c-.581.2573-1.2859.4668-1.3526.3906-.038-.038 4.01-11.5249 4.8482-13.7728l.0952-.2381.1905.2381c.1048.1238.2953.4096.419.6287zM3.7586 8.715c.4478.4382.181 1.0954-.4475 1.0954-.4 0-.6478-.2381-.6478-.6286 0-.6286.6573-.9144 1.0954-.4668zm17.221-.1332c.2761.1523.3523.2666.3523.5999 0 .381-.2477.6287-.6381.6287-.6382 0-.9144-.6477-.4573-1.0954.2572-.2666.4287-.2952.743-.1332zM7.2352 19.1543c.3429.8191-.8287 1.3239-1.2097.5144-.1429-.2953-.1429-.343.0095-.5716.3239-.4952.9906-.4666 1.2.0572zm10.563-.2572c.238.1905.3047.524.1523.8192-.3905.7619-1.524.219-1.1905-.562.1713-.4286.6667-.5524 1.0382-.2572z" }) + ] + } + ); +}); + +exports.default = SiVaultwarden; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.d.ts new file mode 100644 index 000000000..c3b4d3583 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiVaultwarden: IconType; +export { SiVaultwarden as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.mjs new file mode 100644 index 000000000..60fdf7f8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVaultwarden.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiVaultwarden = React.forwardRef(function SiVaultwarden2({ title = "Vaultwarden", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.5405.4477c-.143.2381-.3334.5239-.4382.6286-.1715.181-.181.1715-.7334-.3715-.6667-.6666-.7715-.6476-1.086.2096-.1332.3524-.295.6-.4285.6762-.1905.0953-.2856.0667-.7619-.2761-.8001-.562-.9429-.4763-1.0954.619-.038.2763-.1143.4763-.2095.5144-.0762.0286-.4-.0667-.7049-.219-.781-.3716-.8953-.2858-.9048.619 0 .3715-.0476.7238-.0952.7715-.0667.0667-.3144.0476-.781-.0666-.9144-.2191-.9716-.162-.7525.7524.1142.4667.1333.7144.0666.781-.0476.0477-.4.0953-.7715.0953-.9143.0095-.9906.1238-.6095.9049.3714.781.2762 1.0096-.4477 1.1049-1.0669.1523-1.1335.2857-.543 1.0762.4763.6286.4477.724-.3429 1.0096-.8476.324-.8667.4286-.2 1.0954.543.5524.5525.562.3715.7334-.1047.1048-.3905.2953-.6286.4382-.5906.3428-.5906.5714 0 .9143.2381.143.5239.3333.6286.4381.181.1715.1715.181-.3715.7335-.6667.6667-.6476.7715.2096 1.0859.3525.1332.6.2951.6762.4285.0953.1905.0667.2857-.2761.762-.562.8-.4763.9428.6191 1.0953.2762.038.4762.1143.5143.2095.0286.0763-.0666.4-.219.705-.3716.7809-.2858.8953.619.9048.3715 0 .724.0476.7715.0951.0667.0667.0476.3144-.0666.7812-.219.9143-.162.9715.7524.7524.4667-.1143.7144-.1334.7811-.0667.0476.0476.0952.4.0952.7715.0095.9144.1239.9906.9049.6096.781-.3715 1.0096-.2762 1.1049.4476.1524 1.067.2857 1.1335 1.0762.543.6286-.4763.724-.4477 1.0097.343.3238.8476.419.8667 1.1049.1903.6666-.6476.6095-.6571 1.1619.2763.343.581.5715.581.9145 0 .5523-.9334.4952-.924 1.1619-.2763.6859.6764.781.6573 1.0954-.2.1333-.3523.2952-.6.4286-.6762.1905-.0953.2858-.0667.762.2762.8.562.943.4762 1.0953-.619.0381-.2763.1143-.4763.2096-.5144.0762-.0286.4.0666.7048.219.781.3715.8954.2857.905-.619 0-.3715.0474-.724.0951-.7716.0667-.0667.3143-.0476.781.0667.9145.219.9716.162.7525-.7524-.1143-.4668-.1333-.7145-.0667-.7812.0477-.0475.4-.0951.7715-.0951.9144-.0095.9906-.1238.6097-.905-.3715-.7809-.2763-1.0096.4476-1.1048 1.0667-.1523 1.1334-.2857.543-1.0762-.4763-.6287-.4478-.724.3428-1.0097.8477-.3238.8668-.419.1905-1.105-.6477-.6666-.6572-.6095.2762-1.1618.2953-.181.4382-.324.4382-.4573 0-.1334-.143-.2763-.4382-.4571-.9334-.5525-.924-.4954-.2762-1.1621.6763-.6858.6572-.781-.2-1.0953-.3524-.1334-.6001-.2953-.6763-.4287-.0952-.1905-.0667-.2857.2763-.7619.562-.8001.4761-.9429-.6192-1.0954-.2762-.038-.4762-.1143-.5143-.2096-.0286-.0762.0667-.4.219-.7048.3715-.781.2858-.8953-.619-.905-.3715 0-.7239-.0474-.7716-.0951-.0666-.0666-.0476-.3143.0667-.781.219-.9143.162-.9715-.7524-.7524-.4668.1142-.7144.1333-.781.0666-.0478-.0477-.0953-.4-.0953-.7715-.0095-.9144-.1238-.9906-.905-.6096-.7809.3714-1.0095.2763-1.1047-.4477-.1524-1.0667-.2858-1.1334-1.0763-.543-.6287.4764-.724.4478-1.0096-.3428-.324-.8476-.4287-.8667-1.0954-.2-.5525.543-.562.5525-.7335.3715-.1047-.1048-.2952-.3905-.438-.6286C12.2739.1429 12.1309 0 11.9976 0c-.1333 0-.2761.1429-.4571.4477zm.9334 1.9335c.1048.1048.1905.3143.1905.4762 0 .162-.0857.3715-.1905.4763-.4096.4095-1.143.1048-1.143-.4763 0-.362.3048-.6667.6667-.6667.162 0 .3715.0857.4763.1905zM11.007 4.0004c.924.8953 1.0573.8953 1.9812 0l.6858-.6667.6667.1905c.762.2095 1.9431.7143 1.9431.8382 0 .038-.8953 2.6287-1.9907 5.7434-1.0953 3.1146-2.0478 5.8386-2.105 6.0577-.0666.2286-.1524.4096-.1905.4096-.038 0-.1143-.162-.162-.3524-.057-.2-1-2.9432-2.1049-6.1054-1.1143-3.1622-2.0192-5.772-2.0192-5.791 0-.1143 2.1145-.9334 2.5622-.9811.0285-.0095.3524.2857.7333.6572zm-3.3432 9.601c1.3526 3.7908 2.4288 6.9054 2.4003 6.934-.0667.0762-1.0763-.219-1.5048-.4477-.343-.1715-.3525-.1905-.4763-1-.0763-.524-.1906-.905-.3049-1.0573-.1904-.2381-.219-.2381-.8667-.1715-1.4287.162-1.3715.181-1.9335-.5714-.6096-.8096-1.181-1.9431-1.4573-2.9051-.162-.5334-.219-1.0668-.2571-2.0954l-.0477-1.3812.8572-.4571c1.1525-.6 1.181-.7049.5905-1.8764-.4285-.8477-.4285-.8.124-1.6002.1523-.2286.3142-.381.3523-.3334.038.0381 1.1716 3.1717 2.524 6.9627Zm11.8203-6.2101.2382.4-.3906.7715c-.5905 1.181-.562 1.2858.581 1.8859l.8478.4476v1.0763c0 1.2478-.1715 2.2193-.581 3.2575-.3144.7905-.943 1.8383-1.448 2.4288l-.3237.381-.7524-.1143c-.4096-.0666-.8668-.1142-1.0096-.1142-.4 0-.6002.3523-.7335 1.2858l-.1238.8286-.5048.219c-.581.2573-1.2859.4668-1.3526.3906-.038-.038 4.01-11.5249 4.8482-13.7728l.0952-.2381.1905.2381c.1048.1238.2953.4096.419.6287zM3.7586 8.715c.4478.4382.181 1.0954-.4475 1.0954-.4 0-.6478-.2381-.6478-.6286 0-.6286.6573-.9144 1.0954-.4668zm17.221-.1332c.2761.1523.3523.2666.3523.5999 0 .381-.2477.6287-.6381.6287-.6382 0-.9144-.6477-.4573-1.0954.2572-.2666.4287-.2952.743-.1332zM7.2352 19.1543c.3429.8191-.8287 1.3239-1.2097.5144-.1429-.2953-.1429-.343.0095-.5716.3239-.4952.9906-.4666 1.2.0572zm10.563-.2572c.238.1905.3047.524.1523.8192-.3905.7619-1.524.219-1.1905-.562.1713-.4286.6667-.5524 1.0382-.2572z" }) + ] + } + ); +}); + +export { SiVaultwarden as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.cjs new file mode 100644 index 000000000..0b0804cac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB001E"; +const SiVauxhall = React__namespace.forwardRef(function SiVauxhall2({ title = "Vauxhall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.002 24C5.375 24.001.002 18.63 0 12.002-.001 5.375 5.37.002 11.998 0s12 5.37 12.002 11.998c.007 6.621-5.375 12.007-11.998 12.002zM15.8 5.371c.338.022.658.038.978.066a4.12 4.12 0 0 1 1.496.386.774.774 0 0 1 .413.414c.05.15.074.306.076.464 0 .14.034.213.185.25.351.091.699.204 1.044.314.395.096.694.42.759.822.053.28.062.568.028.853a6.958 6.958 0 0 1-.238.962c0 .053-.066.094-.1.138a.872.872 0 0 1-.132-.132c-.054-.09-.091-.194-.141-.288a.73.73 0 0 0-.612-.417 8.532 8.532 0 0 0-2.02.038.84.84 0 0 0-.206.1c.063.04.122.085.185.12a.496.496 0 0 0 .135.03l.815.154a.79.79 0 0 1 .627.477c.072.172.035.241-.144.263h-.213c-.562.044-1.123.072-1.681.135-.41.044-.561.244-.574.658-.029.911.023 1.823.154 2.725a2.565 2.565 0 0 0 1.326 2.023 29.746 29.746 0 0 0 3.214 1.567c.107.047.166.032.217-.075.16-.313.332-.646.482-.975.5-1.063.818-2.203.941-3.37a10.38 10.38 0 0 0-.085-2.647 11.046 11.046 0 0 0-1.204-3.65 10.912 10.912 0 0 0-3.449-3.741 10.347 10.347 0 0 0-4.954-1.828 11.097 11.097 0 0 0-3.299.182 10.662 10.662 0 0 0-6.356 3.995c-.15.174.092.232.239.207h5.989c.279 0 .313.063.172.313-1.07 1.882-2.14 3.763-3.208 5.645a.558.558 0 0 1-.542.313H1.432c-.226 0-.235 0-.238.232.004.855.109 1.707.314 2.537.035.17.137.32.282.417a3.393 3.393 0 0 0 1.966.627h4.01a.176.176 0 0 0 .201-.144c.035-.144.078-.286.12-.427.07-.187-.201-.136-.286-.14-.22 0-.44-.023-.659-.045-.208.015-.181-.195-.103-.332.354-.752.7-1.511 1.063-2.26.129-.291.37-.517.668-.628.266-.097.53-.213.79-.332.06-.029.097-.104.144-.154a.627.627 0 0 0-.179-.085c-.188-.018-.379-.015-.567-.034-.188-.019-.2-.097-.12-.232.383-.627.766-1.27 1.158-1.9a1 1 0 0 1 .599-.427 4.61 4.61 0 0 0 .536-.178.94.94 0 0 0 .213-.157l-.025-.057c-.176-.025-.351-.047-.527-.075-.175-.028-.185-.106-.1-.238.085-.132.141-.213.21-.314a4.293 4.293 0 0 1 1.254-1.351c.462-.276.97-.467 1.499-.565a.683.683 0 0 0 .289-.156c.743-.662 1.44-1.38 2.2-2.032-.137.67-.238 1.31-.344 1.96zM2.56 6.604l.022.134c.314 1.314.605 2.628.9 3.945.025.107.072.135.179.132h1.687a.279.279 0 0 0 .294-.17c.728-1.298 1.46-2.593 2.195-3.885.025-.043.044-.087.079-.153H6.778a.42.42 0 0 0-.417.244c-.52.922-1.047 1.84-1.567 2.76l-.091.14c-.22-.94-.433-1.865-.646-2.78-.094-.418-.06-.358-.455-.361l-1.04-.006zm.627 11.639c.958 1.52 2.473 2.693 4.076 3.502a.176.176 0 0 0 .22-.028c.364-.299.73-.594 1.097-.887l.386-.314a15.253 15.253 0 0 1-.777-.95.483.483 0 0 0-.295-.213l-3.876-.916-.83-.194zm14.938-11.26c-.088-.019-.14-.038-.191-.044-.263-.034-.53-.05-.787-.11a.825.825 0 0 0-.724.189c-.035.025-.072.072-.066.103a.141.141 0 0 0 .09.088c.314.097.628.197.957.27a.408.408 0 0 0 .314-.066c.145-.133.28-.277.404-.43h.003z" }) + ] + } + ); +}); + +exports.default = SiVauxhall; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.d.ts new file mode 100644 index 000000000..f79fef4b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB001E"; +declare const SiVauxhall: IconType; +export { SiVauxhall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.mjs new file mode 100644 index 000000000..af094f6b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVauxhall.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB001E"; +const SiVauxhall = React.forwardRef(function SiVauxhall2({ title = "Vauxhall", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.002 24C5.375 24.001.002 18.63 0 12.002-.001 5.375 5.37.002 11.998 0s12 5.37 12.002 11.998c.007 6.621-5.375 12.007-11.998 12.002zM15.8 5.371c.338.022.658.038.978.066a4.12 4.12 0 0 1 1.496.386.774.774 0 0 1 .413.414c.05.15.074.306.076.464 0 .14.034.213.185.25.351.091.699.204 1.044.314.395.096.694.42.759.822.053.28.062.568.028.853a6.958 6.958 0 0 1-.238.962c0 .053-.066.094-.1.138a.872.872 0 0 1-.132-.132c-.054-.09-.091-.194-.141-.288a.73.73 0 0 0-.612-.417 8.532 8.532 0 0 0-2.02.038.84.84 0 0 0-.206.1c.063.04.122.085.185.12a.496.496 0 0 0 .135.03l.815.154a.79.79 0 0 1 .627.477c.072.172.035.241-.144.263h-.213c-.562.044-1.123.072-1.681.135-.41.044-.561.244-.574.658-.029.911.023 1.823.154 2.725a2.565 2.565 0 0 0 1.326 2.023 29.746 29.746 0 0 0 3.214 1.567c.107.047.166.032.217-.075.16-.313.332-.646.482-.975.5-1.063.818-2.203.941-3.37a10.38 10.38 0 0 0-.085-2.647 11.046 11.046 0 0 0-1.204-3.65 10.912 10.912 0 0 0-3.449-3.741 10.347 10.347 0 0 0-4.954-1.828 11.097 11.097 0 0 0-3.299.182 10.662 10.662 0 0 0-6.356 3.995c-.15.174.092.232.239.207h5.989c.279 0 .313.063.172.313-1.07 1.882-2.14 3.763-3.208 5.645a.558.558 0 0 1-.542.313H1.432c-.226 0-.235 0-.238.232.004.855.109 1.707.314 2.537.035.17.137.32.282.417a3.393 3.393 0 0 0 1.966.627h4.01a.176.176 0 0 0 .201-.144c.035-.144.078-.286.12-.427.07-.187-.201-.136-.286-.14-.22 0-.44-.023-.659-.045-.208.015-.181-.195-.103-.332.354-.752.7-1.511 1.063-2.26.129-.291.37-.517.668-.628.266-.097.53-.213.79-.332.06-.029.097-.104.144-.154a.627.627 0 0 0-.179-.085c-.188-.018-.379-.015-.567-.034-.188-.019-.2-.097-.12-.232.383-.627.766-1.27 1.158-1.9a1 1 0 0 1 .599-.427 4.61 4.61 0 0 0 .536-.178.94.94 0 0 0 .213-.157l-.025-.057c-.176-.025-.351-.047-.527-.075-.175-.028-.185-.106-.1-.238.085-.132.141-.213.21-.314a4.293 4.293 0 0 1 1.254-1.351c.462-.276.97-.467 1.499-.565a.683.683 0 0 0 .289-.156c.743-.662 1.44-1.38 2.2-2.032-.137.67-.238 1.31-.344 1.96zM2.56 6.604l.022.134c.314 1.314.605 2.628.9 3.945.025.107.072.135.179.132h1.687a.279.279 0 0 0 .294-.17c.728-1.298 1.46-2.593 2.195-3.885.025-.043.044-.087.079-.153H6.778a.42.42 0 0 0-.417.244c-.52.922-1.047 1.84-1.567 2.76l-.091.14c-.22-.94-.433-1.865-.646-2.78-.094-.418-.06-.358-.455-.361l-1.04-.006zm.627 11.639c.958 1.52 2.473 2.693 4.076 3.502a.176.176 0 0 0 .22-.028c.364-.299.73-.594 1.097-.887l.386-.314a15.253 15.253 0 0 1-.777-.95.483.483 0 0 0-.295-.213l-3.876-.916-.83-.194zm14.938-11.26c-.088-.019-.14-.038-.191-.044-.263-.034-.53-.05-.787-.11a.825.825 0 0 0-.724.189c-.035.025-.072.072-.066.103a.141.141 0 0 0 .09.088c.314.097.628.197.957.27a.408.408 0 0 0 .314-.066c.145-.133.28-.277.404-.43h.003z" }) + ] + } + ); +}); + +export { SiVauxhall as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.cjs new file mode 100644 index 000000000..d53adbf1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#184D66"; +const SiVbulletin = React__namespace.forwardRef(function SiVbulletin2({ title = "vBulletin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.09 10.316V24h21.82V0h-2.417l-5.461 19.613h-6.09l-3.134-9.246zm9.283-4.444l1.363 6.308L13.955 0H1.089v5.872Z" }) + ] + } + ); +}); + +exports.default = SiVbulletin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.d.ts new file mode 100644 index 000000000..e247fb784 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#184D66"; +declare const SiVbulletin: IconType; +export { SiVbulletin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.mjs new file mode 100644 index 000000000..40565b5d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVbulletin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#184D66"; +const SiVbulletin = React.forwardRef(function SiVbulletin2({ title = "vBulletin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.09 10.316V24h21.82V0h-2.417l-5.461 19.613h-6.09l-3.134-9.246zm9.283-4.444l1.363 6.308L13.955 0H1.089v5.872Z" }) + ] + } + ); +}); + +export { SiVbulletin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.cjs new file mode 100644 index 000000000..1eecbb56b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6100FF"; +const SiVectary = React__namespace.forwardRef(function SiVectary2({ title = "Vectary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.1797 2.3184a6.6198 6.6198 0 0 0-.2734.0117c-.628.017-1.2937.412-1.6094.955-.3423.5267-.395 1.3011-.127 1.8692l4.2715 9.668c.2394.5807.845 1.0623 1.4649 1.164.614.1323 1.3555-.0942 1.791-.5468 1.0385-1.0052 1.8471-2.4642 2.1425-4.0215.2956-1.5574.0788-3.2117-.5195-4.5274-.5696-1.3282-1.6479-2.603-2.998-3.4336-1.2658-.7785-2.7708-1.1679-4.1426-1.1386zm18.8574 0c-.9528.0168-1.9351.2075-2.834.5898-1.7978.7646-3.267 2.3-3.914 3.8613L8.1719 20.6211c-.0507.1103-.0512.2522-.002.3633.0459.1124.149.21.2637.25 1.5734.617 3.6982.622 5.496-.1426 1.7978-.7646 3.269-2.3 3.9161-3.8613l6.1152-13.8516c.0508-.1103.0512-.2523.002-.3633-.0458-.1124-.147-.21-.2617-.25-.7867-.3085-1.7113-.464-2.664-.4472z" }) + ] + } + ); +}); + +exports.default = SiVectary; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.d.ts new file mode 100644 index 000000000..4eab19895 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6100FF"; +declare const SiVectary: IconType; +export { SiVectary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.mjs new file mode 100644 index 000000000..b7c98dc97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectary.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6100FF"; +const SiVectary = React.forwardRef(function SiVectary2({ title = "Vectary", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.1797 2.3184a6.6198 6.6198 0 0 0-.2734.0117c-.628.017-1.2937.412-1.6094.955-.3423.5267-.395 1.3011-.127 1.8692l4.2715 9.668c.2394.5807.845 1.0623 1.4649 1.164.614.1323 1.3555-.0942 1.791-.5468 1.0385-1.0052 1.8471-2.4642 2.1425-4.0215.2956-1.5574.0788-3.2117-.5195-4.5274-.5696-1.3282-1.6479-2.603-2.998-3.4336-1.2658-.7785-2.7708-1.1679-4.1426-1.1386zm18.8574 0c-.9528.0168-1.9351.2075-2.834.5898-1.7978.7646-3.267 2.3-3.914 3.8613L8.1719 20.6211c-.0507.1103-.0512.2522-.002.3633.0459.1124.149.21.2637.25 1.5734.617 3.6982.622 5.496-.1426 1.7978-.7646 3.269-2.3 3.9161-3.8613l6.1152-13.8516c.0508-.1103.0512-.2523.002-.3633-.0458-.1124-.147-.21-.2617-.25-.7867-.3085-1.7113-.464-2.664-.4472z" }) + ] + } + ); +}); + +export { SiVectary as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.cjs new file mode 100644 index 000000000..fefef3b55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#184D66"; +const SiVectorlogozone = React__namespace.forwardRef(function SiVectorlogozone2({ title = "Vector Logo Zone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.458 0l-5.311 2.024 1.989.534-4.847 16.085-4.867-16.25H1.48L8.974 24h4.645l7.043-20.226 1.858.499Z" }) + ] + } + ); +}); + +exports.default = SiVectorlogozone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.d.ts new file mode 100644 index 000000000..d84232fb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#184D66"; +declare const SiVectorlogozone: IconType; +export { SiVectorlogozone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.mjs new file mode 100644 index 000000000..1c7beb71f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorlogozone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#184D66"; +const SiVectorlogozone = React.forwardRef(function SiVectorlogozone2({ title = "Vector Logo Zone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.458 0l-5.311 2.024 1.989.534-4.847 16.085-4.867-16.25H1.48L8.974 24h4.645l7.043-20.226 1.858.499Z" }) + ] + } + ); +}); + +export { SiVectorlogozone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.cjs new file mode 100644 index 000000000..26550e2bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiVectorworks = React__namespace.forwardRef(function SiVectorworks2({ title = "Vectorworks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm0 22.725c-5.925 0-10.725-4.8-10.725-10.725S6.075 1.275 12 1.275 22.725 6.075 22.725 12 17.925 22.725 12 22.725zM8.775 7.5h-2.25c-.15 0-.208.086-.15.225l4.425 10.65c.04.098.15.225.3.225h1.95c.15 0 .206-.086.15-.225l-4.35-10.8c-.028-.07-.035-.075-.075-.075zm8.7 0h-2.25c-.075 0-.13.023-.15.075L13.35 11.85a.6.6 0 0 0 0 .375l1.05 2.55c.075.15.225.15.3 0l2.925-7.05c.057-.139 0-.225-.15-.225z" }) + ] + } + ); +}); + +exports.default = SiVectorworks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.d.ts new file mode 100644 index 000000000..c5a202fe5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiVectorworks: IconType; +export { SiVectorworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.mjs new file mode 100644 index 000000000..517d7f048 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVectorworks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiVectorworks = React.forwardRef(function SiVectorworks2({ title = "Vectorworks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm0 22.725c-5.925 0-10.725-4.8-10.725-10.725S6.075 1.275 12 1.275 22.725 6.075 22.725 12 17.925 22.725 12 22.725zM8.775 7.5h-2.25c-.15 0-.208.086-.15.225l4.425 10.65c.04.098.15.225.3.225h1.95c.15 0 .206-.086.15-.225l-4.35-10.8c-.028-.07-.035-.075-.075-.075zm8.7 0h-2.25c-.075 0-.13.023-.15.075L13.35 11.85a.6.6 0 0 0 0 .375l1.05 2.55c.075.15.225.15.3 0l2.925-7.05c.057-.139 0-.225-.15-.225z" }) + ] + } + ); +}); + +export { SiVectorworks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.cjs new file mode 100644 index 000000000..0b36249ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B336"; +const SiVeeam = React__namespace.forwardRef(function SiVeeam2({ title = "Veeam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.63 9.842c-1.104 0-2 .945-2 2.101v.108c0 1.322.846 2.038 1.974 2.1.051.007.108.007.16.007.435 0 .794-.115 1.195-.361.04-.023.201-.132.361-.338.132-.166.138-.411 0-.543-.2-.189-.412-.086-.595.074-.292.246-.516.442-1.1.442-.55 0-1.064-.316-1.19-.94 0-.023.01-.045.034-.045H8.16a.473.473 0 0 0 .47-.504c0-1.156-.894-2.1-1.999-2.1zm4.466 0c-1.1 0-1.996.945-1.996 2.101v.108c0 1.322.846 2.038 1.974 2.1.052.007.11.007.16.007.435 0 .795-.115 1.196-.361.04-.023.2-.132.361-.338.132-.166.137-.411 0-.543-.2-.189-.413-.086-.596.074-.292.246-.515.442-1.1.442-.549 0-1.063-.316-1.189-.94-.006-.023.01-.045.028-.045h2.691a.473.473 0 0 0 .47-.504c-.007-1.156-.9-2.1-1.999-2.1zm-6.89.04a.4.4 0 0 0-.344.223l-1.42 3.063c-.034.063-.062.11-.136.11-.075 0-.105-.047-.14-.11l-1.42-3.057a.38.38 0 0 0-.53-.177.428.428 0 0 0-.172.56l1.39 2.828.16.32a.8.8 0 0 0 .712.46.791.791 0 0 0 .709-.46l.16-.32 1.385-2.834a.423.423 0 0 0-.166-.56.376.376 0 0 0-.188-.045zm11.362 0a.762.762 0 0 0-.504.188.808.808 0 0 0-.207.27l-1.59 3.137c0 .005-.007.006-.007.01v.007a.434.434 0 0 0 .03.442c0 .005.005.006.005.01 0 .007.006.005.006.01a.372.372 0 0 0 .516.077s.005 0 .005-.006a.083.083 0 0 0 .024-.017l.015-.018.006-.006a.485.485 0 0 0 .076-.103l.057-.125.332-.7c.006-.017.028-.027.045-.027h1.484c.195 0 .354-.167.354-.379 0-.206-.159-.377-.354-.377h-1.099a.033.033 0 0 1-.03-.046l.08-.172.602-1.207v-.006s0-.006.006-.006c.011-.023.04-.108.098-.125.034-.012.063-.012.086 0 .063.017.084.091.113.148l1.455 3.022a.393.393 0 0 0 .48.195s.006 0 .006-.006l.035-.017c.006 0 .007-.006.012-.006 0 0 .006 0 .006-.006.006 0 .006-.006.012-.006s.01-.004.01-.01c.006 0 .006-.006.011-.006.006-.006.012-.012.018-.012l.017-.017.006-.006a.408.408 0 0 0 .092-.498l-1.598-3.154a.79.79 0 0 0-.709-.45zm3.508 0c-.39 0-.709.332-.709.778v3.018c0 .183.104.354.264.406.263.086.486-.143.486-.412l-.058-2.938a.03.03 0 0 1 .052-.017l1.442 2.93c.137.28.367.449.625.449.257 0 .49-.167.623-.448l1.449-2.935c.01-.029.05-.019.05.016l-.056 2.955c0 .234.177.423.389.412.206-.006.367-.207.367-.43V10.66c.01-.452-.31-.77-.7-.777a.684.684 0 0 0-.61.394c-.361.739-1.426 2.93-1.426 2.936-.006.01-.03.064-.075.064-.04 0-.068-.047-.074-.064-.35-.727-1.047-2.164-1.408-2.908-.143-.287-.38-.422-.63-.422zm-12.45.647c.697 0 1.14.527 1.208 1.145 0 .023-.012.045-.035.045H5.47c-.023-.006-.033-.022-.033-.045.074-.607.49-1.145 1.19-1.145zm4.47 0h.002c.697.001 1.138.527 1.207 1.145 0 .023-.013.045-.035.045H9.94c-.023-.006-.04-.022-.034-.045.075-.606.493-1.144 1.19-1.145z" }) + ] + } + ); +}); + +exports.default = SiVeeam; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.d.ts new file mode 100644 index 000000000..78e32f271 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B336"; +declare const SiVeeam: IconType; +export { SiVeeam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.mjs new file mode 100644 index 000000000..ac4983ab5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeeam.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B336"; +const SiVeeam = React.forwardRef(function SiVeeam2({ title = "Veeam", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.63 9.842c-1.104 0-2 .945-2 2.101v.108c0 1.322.846 2.038 1.974 2.1.051.007.108.007.16.007.435 0 .794-.115 1.195-.361.04-.023.201-.132.361-.338.132-.166.138-.411 0-.543-.2-.189-.412-.086-.595.074-.292.246-.516.442-1.1.442-.55 0-1.064-.316-1.19-.94 0-.023.01-.045.034-.045H8.16a.473.473 0 0 0 .47-.504c0-1.156-.894-2.1-1.999-2.1zm4.466 0c-1.1 0-1.996.945-1.996 2.101v.108c0 1.322.846 2.038 1.974 2.1.052.007.11.007.16.007.435 0 .795-.115 1.196-.361.04-.023.2-.132.361-.338.132-.166.137-.411 0-.543-.2-.189-.413-.086-.596.074-.292.246-.515.442-1.1.442-.549 0-1.063-.316-1.189-.94-.006-.023.01-.045.028-.045h2.691a.473.473 0 0 0 .47-.504c-.007-1.156-.9-2.1-1.999-2.1zm-6.89.04a.4.4 0 0 0-.344.223l-1.42 3.063c-.034.063-.062.11-.136.11-.075 0-.105-.047-.14-.11l-1.42-3.057a.38.38 0 0 0-.53-.177.428.428 0 0 0-.172.56l1.39 2.828.16.32a.8.8 0 0 0 .712.46.791.791 0 0 0 .709-.46l.16-.32 1.385-2.834a.423.423 0 0 0-.166-.56.376.376 0 0 0-.188-.045zm11.362 0a.762.762 0 0 0-.504.188.808.808 0 0 0-.207.27l-1.59 3.137c0 .005-.007.006-.007.01v.007a.434.434 0 0 0 .03.442c0 .005.005.006.005.01 0 .007.006.005.006.01a.372.372 0 0 0 .516.077s.005 0 .005-.006a.083.083 0 0 0 .024-.017l.015-.018.006-.006a.485.485 0 0 0 .076-.103l.057-.125.332-.7c.006-.017.028-.027.045-.027h1.484c.195 0 .354-.167.354-.379 0-.206-.159-.377-.354-.377h-1.099a.033.033 0 0 1-.03-.046l.08-.172.602-1.207v-.006s0-.006.006-.006c.011-.023.04-.108.098-.125.034-.012.063-.012.086 0 .063.017.084.091.113.148l1.455 3.022a.393.393 0 0 0 .48.195s.006 0 .006-.006l.035-.017c.006 0 .007-.006.012-.006 0 0 .006 0 .006-.006.006 0 .006-.006.012-.006s.01-.004.01-.01c.006 0 .006-.006.011-.006.006-.006.012-.012.018-.012l.017-.017.006-.006a.408.408 0 0 0 .092-.498l-1.598-3.154a.79.79 0 0 0-.709-.45zm3.508 0c-.39 0-.709.332-.709.778v3.018c0 .183.104.354.264.406.263.086.486-.143.486-.412l-.058-2.938a.03.03 0 0 1 .052-.017l1.442 2.93c.137.28.367.449.625.449.257 0 .49-.167.623-.448l1.449-2.935c.01-.029.05-.019.05.016l-.056 2.955c0 .234.177.423.389.412.206-.006.367-.207.367-.43V10.66c.01-.452-.31-.77-.7-.777a.684.684 0 0 0-.61.394c-.361.739-1.426 2.93-1.426 2.936-.006.01-.03.064-.075.064-.04 0-.068-.047-.074-.064-.35-.727-1.047-2.164-1.408-2.908-.143-.287-.38-.422-.63-.422zm-12.45.647c.697 0 1.14.527 1.208 1.145 0 .023-.012.045-.035.045H5.47c-.023-.006-.033-.022-.033-.045.074-.607.49-1.145 1.19-1.145zm4.47 0h.002c.697.001 1.138.527 1.207 1.145 0 .023-.013.045-.035.045H9.94c-.023-.006-.04-.022-.034-.045.075-.606.493-1.144 1.19-1.145z" }) + ] + } + ); +}); + +export { SiVeeam as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.cjs new file mode 100644 index 000000000..ee0daea2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B6FF60"; +const SiVeed = React__namespace.forwardRef(function SiVeed2({ title = "VEED", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.9847 3.44845-6.4707 15.8711a2.41415 2.41415 0 0 1-2.23542 1.50241H8.73883a2.4138 2.4138 0 0 1-2.23388-1.5005L.01467 3.44846a.196.196 0 0 1 .18143-.27042h6.5505a.3923.3923 0 0 1 .36707.25392l4.90577 13.08297 4.8655-13.08144c.05678-.15342.20368-.25545.36708-.25545h6.55164c.13924 0 .23398.14115.18181.26965z" }) + ] + } + ); +}); + +exports.default = SiVeed; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.d.ts new file mode 100644 index 000000000..9bb26db6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B6FF60"; +declare const SiVeed: IconType; +export { SiVeed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.mjs new file mode 100644 index 000000000..201d71565 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeed.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B6FF60"; +const SiVeed = React.forwardRef(function SiVeed2({ title = "VEED", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.9847 3.44845-6.4707 15.8711a2.41415 2.41415 0 0 1-2.23542 1.50241H8.73883a2.4138 2.4138 0 0 1-2.23388-1.5005L.01467 3.44846a.196.196 0 0 1 .18143-.27042h6.5505a.3923.3923 0 0 1 .36707.25392l4.90577 13.08297 4.8655-13.08144c.05678-.15342.20368-.25545.36708-.25545h6.55164c.13924 0 .23398.14115.18181.26965z" }) + ] + } + ); +}); + +export { SiVeed as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.cjs new file mode 100644 index 000000000..876518aea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EC008C"; +const SiVeepee = React__namespace.forwardRef(function SiVeepee2({ title = "Veepee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.808 9.941a11.55 11.55 0 0 0-.872-3.51c.784-1.634 1.59-2.239 1.59-2.239s1.658 4.244.203 8.605c-.9 2.698-1.977 4.328-2.554 5.028-.129.156-.243.205-.172.11 1.36-1.834 2.109-4.749 1.805-7.994m1.317 5.143c-.672.809-1.35 1.594-2.1 2.195-.108.086-.176.08-.093-.011 2.653-2.896 5.536-9.314 1.8-15.64 0 0-1.477 1.02-2.69 3.134C15.846 2.922 14.106 1.379 11.94 0c0 0-5.479 6.107-3.056 14.954-6.99.964-4.452 6.361-3.344 7.137.052.037.096.018.025-.091-.393-.603-1.491-2.71.773-4.732 1.215-1.084 3.761-1.367 3.761-1.367-.579-4.248-.538-8.086 2.364-12.333.371.246 4.616 2.112 4.776 8.396.355 3.941-1.691 7.096-3.677 8.324-3.519 1.888-7.468 2.814-10.901 3.619-.291.069-.178.1.016.092 8.156-.343 15.407-4.011 18.195-7.512.537-.673.777-1.414.415-1.824-.361-.411-1.016.244-1.162.421" }) + ] + } + ); +}); + +exports.default = SiVeepee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.d.ts new file mode 100644 index 000000000..ccff3cba7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EC008C"; +declare const SiVeepee: IconType; +export { SiVeepee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.mjs new file mode 100644 index 000000000..84b135a45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeepee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EC008C"; +const SiVeepee = React.forwardRef(function SiVeepee2({ title = "Veepee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.808 9.941a11.55 11.55 0 0 0-.872-3.51c.784-1.634 1.59-2.239 1.59-2.239s1.658 4.244.203 8.605c-.9 2.698-1.977 4.328-2.554 5.028-.129.156-.243.205-.172.11 1.36-1.834 2.109-4.749 1.805-7.994m1.317 5.143c-.672.809-1.35 1.594-2.1 2.195-.108.086-.176.08-.093-.011 2.653-2.896 5.536-9.314 1.8-15.64 0 0-1.477 1.02-2.69 3.134C15.846 2.922 14.106 1.379 11.94 0c0 0-5.479 6.107-3.056 14.954-6.99.964-4.452 6.361-3.344 7.137.052.037.096.018.025-.091-.393-.603-1.491-2.71.773-4.732 1.215-1.084 3.761-1.367 3.761-1.367-.579-4.248-.538-8.086 2.364-12.333.371.246 4.616 2.112 4.776 8.396.355 3.941-1.691 7.096-3.677 8.324-3.519 1.888-7.468 2.814-10.901 3.619-.291.069-.178.1.016.092 8.156-.343 15.407-4.011 18.195-7.512.537-.673.777-1.414.415-1.824-.361-.411-1.016.244-1.162.421" }) + ] + } + ); +}); + +export { SiVeepee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVega.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVega.cjs new file mode 100644 index 000000000..6ad58636d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVega.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2450B2"; +const SiVega = React__namespace.forwardRef(function SiVega2({ title = "Vega", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.39 8.693H24l-3.123-6.68ZM6.68 1.987H0L7.098 22.03h.008l2.86-10.73zm14.197-.016-7.098 20.042h-6.68L14.195 1.97" }) + ] + } + ); +}); + +exports.default = SiVega; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVega.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVega.d.ts new file mode 100644 index 000000000..4e79c6f91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVega.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2450B2"; +declare const SiVega: IconType; +export { SiVega as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVega.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVega.mjs new file mode 100644 index 000000000..6336bd248 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVega.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2450B2"; +const SiVega = React.forwardRef(function SiVega2({ title = "Vega", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.39 8.693H24l-3.123-6.68ZM6.68 1.987H0L7.098 22.03h.008l2.86-10.73zm14.197-.016-7.098 20.042h-6.68L14.195 1.97" }) + ] + } + ); +}); + +export { SiVega as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.cjs new file mode 100644 index 000000000..429a5edea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1A1A"; +const SiVegas = React__namespace.forwardRef(function SiVegas2({ title = "VEGAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.2305 9.1035c-.6088 0-1.0881.0929-1.457.2774-.369.166-.627.4602-.793.8476-.166.4243-.2403.9974-.2403 1.7168 0 1.0168.1088 2.0758.7754 2.5996.2583.203.5894.2969 1.0137.2969.2952 0 .5903-.0004.83-.0742.2214-.0738.4248-.1845.5723-.332.0554-.037.13-.1292.1485-.166v.4784h.959v-3.1914h-1.0899v1.9922c-.1555.1037-.3215.1622-.5332.2227-.1291.0369-.2773.0547-.4433.0547-.2214 0-.4072-.0554-.5547-.166-.1292-.1107-.2396-.2945-.295-.5528-.1274-.595-.1062-1.58-.037-2.0293.0553-.2398.1108-.4255.203-.5547.2066-.3305.6712-.3496.9415-.3496h.5527c.1845 0 .3507.0176.5352.0176.1844 0 .3702.0011.5546.0195l.0723-.8867c-.37-.111-.5068-.1517-1.0508-.2012-.2206-.0242-.4428-.013-.664-.0195Zm9.7402 0c-.5842 0-1.1955.0965-1.5488.332-.2734.1823-.4805.4674-.4805 1.2364 0 .6867.1957 1.2693 1.1621 1.6054l1.125.3868c.1291.0369.2407.092.3145.1289.0738.0369.129.1117.166.1855.0759.1518.0788.533-.0195.664-.0554.0923-.1287.1476-.2579.166-.3046.0529-.6144.0322-.9218.0372-.166 0-.35-.0195-.5899-.0195-.2398 0-.5165-.0176-.83-.0176l-.0196.9023c.2398.0554.7754.13 1.1074.1485.332.0184.6094.037.7754.037.2767 0 .7008-.0188.959-.0741.2583-.0554.461-.1472.627-.2578.166-.1292.2758-.2952.3496-.4981.0738-.2214.1113-.4794.1113-.793 0-.4243-.0918-.7573-.2578-1.0156-.166-.2583-.4792-.4598-.9219-.6074l-1.0703-.3516c-.2214-.0738-.3687-.148-.461-.2402-.1538-.123-.1543-.4588-.0937-.7012.0185-.0553.0736-.1096.129-.1465.0737-.0184.149-.0566.2597-.0566.1107-.0185.2391-.0176.3867-.0176h.9219c.3136 0 .5902.0176.83.0176l.0196-.8477c-.5672-.1215-1.1484-.203-1.7715-.203Zm-15.293.0742c-.642 0-1.1797.4099-1.1797 1.125v3.3399c0 .332.1107.6076.332.8105.203.203.4972.3145.8477.3145h.9043c.2767 0 .7567-.0196.9043-.0196.1292-.0184.5152-.0362.7735-.0546v-.8848H7.121c-.1291 0-.2211-.0375-.295-.1113-.0553-.0738-.0937-.1854-.0937-.3145V12.295h2.2324v-.8672H6.7324v-.8672c0-.1475.02-.2387.0938-.3125.0553-.0737.1658-.1113.2949-.1113h2.1387V9.252c-.2583-.0185-.5706-.0382-.7735-.0567-.6023-.0273-1.2058-.0176-1.8086-.0176ZM0 9.2148l1.5313 5.2012c.0394.197.2115.332.4238.332H3.08c.2216 0 .3886-.146.4258-.332l1.5117-5.2012h-1.254l-1.1445 4.5196s-.0186.0176-.037.0176h-.1466c-.0184 0-.037.0008-.037-.0176l-1.125-4.5196zm16.4922 0c-.1191 0-.3802.0704-.4238.332l-1.6055 5.2208h1.2539l.4062-1.457h1.9004l.4063 1.457h1.2539L18.078 9.5469c-.0184-.0923-.0727-.1665-.1465-.2403a.4548.4548 0 0 0-.2773-.0918zm.6445.9766c.0185 0 .0371.0187.0371.0371l.5918 2.1406h-1.4023l.5898-2.1406c.0185-.0184.0187-.037.028-.037z" }) + ] + } + ); +}); + +exports.default = SiVegas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.d.ts new file mode 100644 index 000000000..5fd908d85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1A1A"; +declare const SiVegas: IconType; +export { SiVegas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.mjs new file mode 100644 index 000000000..f319c13b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVegas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1A1A"; +const SiVegas = React.forwardRef(function SiVegas2({ title = "VEGAS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.2305 9.1035c-.6088 0-1.0881.0929-1.457.2774-.369.166-.627.4602-.793.8476-.166.4243-.2403.9974-.2403 1.7168 0 1.0168.1088 2.0758.7754 2.5996.2583.203.5894.2969 1.0137.2969.2952 0 .5903-.0004.83-.0742.2214-.0738.4248-.1845.5723-.332.0554-.037.13-.1292.1485-.166v.4784h.959v-3.1914h-1.0899v1.9922c-.1555.1037-.3215.1622-.5332.2227-.1291.0369-.2773.0547-.4433.0547-.2214 0-.4072-.0554-.5547-.166-.1292-.1107-.2396-.2945-.295-.5528-.1274-.595-.1062-1.58-.037-2.0293.0553-.2398.1108-.4255.203-.5547.2066-.3305.6712-.3496.9415-.3496h.5527c.1845 0 .3507.0176.5352.0176.1844 0 .3702.0011.5546.0195l.0723-.8867c-.37-.111-.5068-.1517-1.0508-.2012-.2206-.0242-.4428-.013-.664-.0195Zm9.7402 0c-.5842 0-1.1955.0965-1.5488.332-.2734.1823-.4805.4674-.4805 1.2364 0 .6867.1957 1.2693 1.1621 1.6054l1.125.3868c.1291.0369.2407.092.3145.1289.0738.0369.129.1117.166.1855.0759.1518.0788.533-.0195.664-.0554.0923-.1287.1476-.2579.166-.3046.0529-.6144.0322-.9218.0372-.166 0-.35-.0195-.5899-.0195-.2398 0-.5165-.0176-.83-.0176l-.0196.9023c.2398.0554.7754.13 1.1074.1485.332.0184.6094.037.7754.037.2767 0 .7008-.0188.959-.0741.2583-.0554.461-.1472.627-.2578.166-.1292.2758-.2952.3496-.4981.0738-.2214.1113-.4794.1113-.793 0-.4243-.0918-.7573-.2578-1.0156-.166-.2583-.4792-.4598-.9219-.6074l-1.0703-.3516c-.2214-.0738-.3687-.148-.461-.2402-.1538-.123-.1543-.4588-.0937-.7012.0185-.0553.0736-.1096.129-.1465.0737-.0184.149-.0566.2597-.0566.1107-.0185.2391-.0176.3867-.0176h.9219c.3136 0 .5902.0176.83.0176l.0196-.8477c-.5672-.1215-1.1484-.203-1.7715-.203Zm-15.293.0742c-.642 0-1.1797.4099-1.1797 1.125v3.3399c0 .332.1107.6076.332.8105.203.203.4972.3145.8477.3145h.9043c.2767 0 .7567-.0196.9043-.0196.1292-.0184.5152-.0362.7735-.0546v-.8848H7.121c-.1291 0-.2211-.0375-.295-.1113-.0553-.0738-.0937-.1854-.0937-.3145V12.295h2.2324v-.8672H6.7324v-.8672c0-.1475.02-.2387.0938-.3125.0553-.0737.1658-.1113.2949-.1113h2.1387V9.252c-.2583-.0185-.5706-.0382-.7735-.0567-.6023-.0273-1.2058-.0176-1.8086-.0176ZM0 9.2148l1.5313 5.2012c.0394.197.2115.332.4238.332H3.08c.2216 0 .3886-.146.4258-.332l1.5117-5.2012h-1.254l-1.1445 4.5196s-.0186.0176-.037.0176h-.1466c-.0184 0-.037.0008-.037-.0176l-1.125-4.5196zm16.4922 0c-.1191 0-.3802.0704-.4238.332l-1.6055 5.2208h1.2539l.4062-1.457h1.9004l.4063 1.457h1.2539L18.078 9.5469c-.0184-.0923-.0727-.1665-.1465-.2403a.4548.4548 0 0 0-.2773-.0918zm.6445.9766c.0185 0 .0371.0187.0371.0371l.5918 2.1406h-1.4023l.5898-2.1406c.0185-.0184.0187-.037.028-.037z" }) + ] + } + ); +}); + +export { SiVegas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.cjs new file mode 100644 index 000000000..0e14c1c9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1BBAE0"; +const SiVelocity = React__namespace.forwardRef(function SiVelocity2({ title = "Velocity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.623 6.719-4.752.959a.65.65 0 0 0-.44.324L.083 12.248a.65.65 0 0 0 .045.701l2.986 4.076a.66.66 0 0 0 .657.256l4.736-.957a.65.65 0 0 0 .363-.215h11.694a.542.542 0 0 0 0-1.084h-2.95a.53.53 0 0 1-.394-.152.545.545 0 0 1 0-.78.55.55 0 0 1 .394-.152h5.875a.53.53 0 0 0 .512-.33v-.422a.53.53 0 0 0-.512-.33h-9.79a.547.547 0 0 1-.544-.543.54.54 0 0 1 .543-.54h5.85a.544.544 0 0 0 .525-.542.54.54 0 0 0-.525-.543H15.68a.54.54 0 1 1 0-1.082h5.86a.546.546 0 0 0 .524-.543.54.54 0 0 0-.525-.54H9.416L8.279 6.972a.65.65 0 0 0-.656-.254M7.576 7.77a.527.527 0 0 1 .207.715l-1.451 2.631a.88.88 0 0 0 .059.945L8.1 14.39a.528.528 0 0 1-.854.623l-1.709-2.326a.88.88 0 0 0-.88-.344l-2.897.586a.523.523 0 0 1-.621-.412.525.525 0 0 1 .41-.621l3.14-.635a.9.9 0 0 0 .596-.438l1.576-2.845a.524.524 0 0 1 .715-.206m13.608 2.92a.54.54 0 1 0-.001 1.082.54.54 0 0 0 0-1.082" }) + ] + } + ); +}); + +exports.default = SiVelocity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.d.ts new file mode 100644 index 000000000..84ecae89f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1BBAE0"; +declare const SiVelocity: IconType; +export { SiVelocity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.mjs new file mode 100644 index 000000000..01440fb8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVelocity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1BBAE0"; +const SiVelocity = React.forwardRef(function SiVelocity2({ title = "Velocity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.623 6.719-4.752.959a.65.65 0 0 0-.44.324L.083 12.248a.65.65 0 0 0 .045.701l2.986 4.076a.66.66 0 0 0 .657.256l4.736-.957a.65.65 0 0 0 .363-.215h11.694a.542.542 0 0 0 0-1.084h-2.95a.53.53 0 0 1-.394-.152.545.545 0 0 1 0-.78.55.55 0 0 1 .394-.152h5.875a.53.53 0 0 0 .512-.33v-.422a.53.53 0 0 0-.512-.33h-9.79a.547.547 0 0 1-.544-.543.54.54 0 0 1 .543-.54h5.85a.544.544 0 0 0 .525-.542.54.54 0 0 0-.525-.543H15.68a.54.54 0 1 1 0-1.082h5.86a.546.546 0 0 0 .524-.543.54.54 0 0 0-.525-.54H9.416L8.279 6.972a.65.65 0 0 0-.656-.254M7.576 7.77a.527.527 0 0 1 .207.715l-1.451 2.631a.88.88 0 0 0 .059.945L8.1 14.39a.528.528 0 0 1-.854.623l-1.709-2.326a.88.88 0 0 0-.88-.344l-2.897.586a.523.523 0 0 1-.621-.412.525.525 0 0 1 .41-.621l3.14-.635a.9.9 0 0 0 .596-.438l1.576-2.845a.524.524 0 0 1 .715-.206m13.608 2.92a.54.54 0 1 0-.001 1.082.54.54 0 0 0 0-1.082" }) + ] + } + ); +}); + +export { SiVelocity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.cjs new file mode 100644 index 000000000..22e992f64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#20C997"; +const SiVelog = React__namespace.forwardRef(function SiVelog2({ title = "Velog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 0C1.338 0 0 1.338 0 3v18c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3V3c0-1.662-1.338-3-3-3H3Zm6.883 6.25c.63 0 1.005.3 1.125.9l1.463 8.303c.465-.615.846-1.133 1.146-1.553.465-.66.893-1.418 1.283-2.273.405-.855.608-1.62.608-2.295 0-.405-.113-.727-.338-.967-.21-.255-.608-.577-1.193-.967.6-.765 1.35-1.148 2.25-1.148.48 0 .878.143 1.193.428.33.285.494.704.494 1.26 0 .93-.39 2.093-1.17 3.488-.765 1.38-2.241 3.457-4.431 6.232l-2.227.156-1.711-9.628h-2.25V7.24c.6-.195 1.305-.406 2.115-.63.81-.24 1.358-.36 1.643-.36Z" }) + ] + } + ); +}); + +exports.default = SiVelog; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.d.ts new file mode 100644 index 000000000..3eabed853 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#20C997"; +declare const SiVelog: IconType; +export { SiVelog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.mjs new file mode 100644 index 000000000..062e08747 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVelog.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#20C997"; +const SiVelog = React.forwardRef(function SiVelog2({ title = "Velog", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3 0C1.338 0 0 1.338 0 3v18c0 1.662 1.338 3 3 3h18c1.662 0 3-1.338 3-3V3c0-1.662-1.338-3-3-3H3Zm6.883 6.25c.63 0 1.005.3 1.125.9l1.463 8.303c.465-.615.846-1.133 1.146-1.553.465-.66.893-1.418 1.283-2.273.405-.855.608-1.62.608-2.295 0-.405-.113-.727-.338-.967-.21-.255-.608-.577-1.193-.967.6-.765 1.35-1.148 2.25-1.148.48 0 .878.143 1.193.428.33.285.494.704.494 1.26 0 .93-.39 2.093-1.17 3.488-.765 1.38-2.241 3.457-4.431 6.232l-2.227.156-1.711-9.628h-2.25V7.24c.6-.195 1.305-.406 2.115-.63.81-.24 1.358-.36 1.643-.36Z" }) + ] + } + ); +}); + +export { SiVelog as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.cjs new file mode 100644 index 000000000..5b5e7cacd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D3859B"; +const SiVencord = React__namespace.forwardRef(function SiVencord2({ title = "Vencord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.613.6v.587h2.4V.6h-1.2zm2.4.587v8.4H3.6v-8.4h-.293zm.587 8.4v.613h.613v-.613h-.306zm.613.613v.587H4.8V10.2h-.293zm.587.587v.613h.613v-.613h-.306zm.613.613v.587H6V11.4h-.293zm.587.587v.613h1.2v-.613h-.6zm1.2 0h.613V11.4H7.2v.293zm.613-.587H8.4V15h-.587v.587H8.4v4.8h.613v-9.6h2.4v-2.4H10.8V10.2H9.6v-.613h-.587v.613H8.4v.587h-.587v.306zM9.6 9.587h.613v-8.4H9.6v4.2zm.613-8.4h2.4V.6h-2.4v.293zm2.4 0V7.8h-1.2v.587H15.6v.32H18v-.32h.614v.32h2.106v-.32h.294V6.893h-.294v-.906h-.32v-.88h-.293V5.4h-.293v.907h-.294V6.6h.294v.587h.293v-.88h.293v.88h.32v.906h-.32v.294h-.586v-.294h.293V7.8h.293v-.613h-.293v.32h-.293V7.8h-.294v.587h-.613V7.8h-.293v-.293h-.294V7.8h-1.813v.293h1.2v.294H15.92v-.294h-1.813V7.8h-.293V6.307h-.294V7.8h-.32V1.187h-.293zm1.2 5.12h.294v-.32h-.294v.16zm.294-.32h.293V5.4h-.293v.293zM14.4 5.4h.614v-.293H14.4v.146zm.614-.293h.586V5.4h.32v-.613h-.906v.16zm.906-.32h.293v-.294h-.293v.147zm.293-.294h.294V4.2h-.294v.147zm.294-.293h.293v-.293h-.293v.146zm.293 0v.587h.32v.32h.293v-.32h.294v.32h-.294V5.4H18v-.613h.32V4.2H18v.293h-.88V4.2h-.16zm1.52 0h.294v-.293h-.294v.146zm.294-.293h.293v-.32h-.293v.16zm.293-.32h.293v-.294h-.293v.147zm.293 0v1.52h.32v-.32h.293v-.294h-.293v-.906h-.16zm.613 1.2v.32h.294v-.32h-.147zm0 .32h-.293V5.4h.293v-.147zM15.6 5.4h-.293v1.2h.293V6zm0 1.2v.587h.32V6.6h-.16zm.32.587v.32h.293v-.32h-.146zm.293.32V7.8h.294v-.293h-.147zm2.694.293h.613v-.293h-.613v.146zm.613-.293h.293v-.32h-.293v.16zm0-.907h-.613v.293h.613v-.146zm-.613.293h-.293v.294h.293V7.04zm2.107 1.494v2.4h2.4V10.2H21.6V8.387h-.293zm2.4 2.4v2.4H24v-2.4h-.293zm0 2.4h-4.8v.613h4.8v-.307zm-4.8 0v-2.4h-4.8v9.6h4.8v-2.4H18V19.8h-3.6v-8.4H18v1.787h.307zm0 4.8h4.8V17.4h-4.8v.293zm4.8 0v2.4H24v-2.4h-.293zm0 2.4h-2.4v2.4h.586V21h1.814v-.306zm-2.4 2.4h-9.6v.613h9.6v-.307zm-9.6 0v-2.4h-2.4V21H10.8v1.787h.307zm-3.6-7.2h-2.4v.613h2.4v-.307zm-2.4 0V15H4.8v.587h.307zM4.8 15v-.613h-.586V15h.293zm-.586-.613V13.8H3.6v.587h.307zM3.6 13.8v-.613h-.587v.613h.294zm-.587-.613V12.6H2.4v.587h.307zM2.4 12.6v-.613h-.587v.613h.294zm-.587-.613V11.4H1.2v.587h.307zM1.2 11.4v-.613H.614v.613h.293zm-.586-.613v-9.6H0v9.6h.307zM13.52.6v.293h1.493v.293h.293V.893h.294V.6h-1.04zm1.493.586h-.293v.32h.293v-.16zm-.293.32h-.32V1.8h.32v-.147zm0 .294v.293h.293V1.8h-.147zm-.32 0h-.294v.293h.294v-.147zm-.294.293h-.293v.293h-.293v.32h2.08v-.32h-1.494V2.24zm.294-.587v-.32h-.294v.32h.147zm2.106.294v.293h.907v.293h.293v-.293H18V1.8h-.747zm.907.586h-.293v.32h-.614V3H18v-.294h-.587v-.16zm-1.2 4.214v.293h.586V6.6h-.293zm.586.293v.293h.907v-.293h-.453zm.907.293v.32H18v-.32h-.146z" }) + ] + } + ); +}); + +exports.default = SiVencord; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.d.ts new file mode 100644 index 000000000..e64a69c43 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D3859B"; +declare const SiVencord: IconType; +export { SiVencord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.mjs new file mode 100644 index 000000000..ab517bc9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVencord.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D3859B"; +const SiVencord = React.forwardRef(function SiVencord2({ title = "Vencord", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.613.6v.587h2.4V.6h-1.2zm2.4.587v8.4H3.6v-8.4h-.293zm.587 8.4v.613h.613v-.613h-.306zm.613.613v.587H4.8V10.2h-.293zm.587.587v.613h.613v-.613h-.306zm.613.613v.587H6V11.4h-.293zm.587.587v.613h1.2v-.613h-.6zm1.2 0h.613V11.4H7.2v.293zm.613-.587H8.4V15h-.587v.587H8.4v4.8h.613v-9.6h2.4v-2.4H10.8V10.2H9.6v-.613h-.587v.613H8.4v.587h-.587v.306zM9.6 9.587h.613v-8.4H9.6v4.2zm.613-8.4h2.4V.6h-2.4v.293zm2.4 0V7.8h-1.2v.587H15.6v.32H18v-.32h.614v.32h2.106v-.32h.294V6.893h-.294v-.906h-.32v-.88h-.293V5.4h-.293v.907h-.294V6.6h.294v.587h.293v-.88h.293v.88h.32v.906h-.32v.294h-.586v-.294h.293V7.8h.293v-.613h-.293v.32h-.293V7.8h-.294v.587h-.613V7.8h-.293v-.293h-.294V7.8h-1.813v.293h1.2v.294H15.92v-.294h-1.813V7.8h-.293V6.307h-.294V7.8h-.32V1.187h-.293zm1.2 5.12h.294v-.32h-.294v.16zm.294-.32h.293V5.4h-.293v.293zM14.4 5.4h.614v-.293H14.4v.146zm.614-.293h.586V5.4h.32v-.613h-.906v.16zm.906-.32h.293v-.294h-.293v.147zm.293-.294h.294V4.2h-.294v.147zm.294-.293h.293v-.293h-.293v.146zm.293 0v.587h.32v.32h.293v-.32h.294v.32h-.294V5.4H18v-.613h.32V4.2H18v.293h-.88V4.2h-.16zm1.52 0h.294v-.293h-.294v.146zm.294-.293h.293v-.32h-.293v.16zm.293-.32h.293v-.294h-.293v.147zm.293 0v1.52h.32v-.32h.293v-.294h-.293v-.906h-.16zm.613 1.2v.32h.294v-.32h-.147zm0 .32h-.293V5.4h.293v-.147zM15.6 5.4h-.293v1.2h.293V6zm0 1.2v.587h.32V6.6h-.16zm.32.587v.32h.293v-.32h-.146zm.293.32V7.8h.294v-.293h-.147zm2.694.293h.613v-.293h-.613v.146zm.613-.293h.293v-.32h-.293v.16zm0-.907h-.613v.293h.613v-.146zm-.613.293h-.293v.294h.293V7.04zm2.107 1.494v2.4h2.4V10.2H21.6V8.387h-.293zm2.4 2.4v2.4H24v-2.4h-.293zm0 2.4h-4.8v.613h4.8v-.307zm-4.8 0v-2.4h-4.8v9.6h4.8v-2.4H18V19.8h-3.6v-8.4H18v1.787h.307zm0 4.8h4.8V17.4h-4.8v.293zm4.8 0v2.4H24v-2.4h-.293zm0 2.4h-2.4v2.4h.586V21h1.814v-.306zm-2.4 2.4h-9.6v.613h9.6v-.307zm-9.6 0v-2.4h-2.4V21H10.8v1.787h.307zm-3.6-7.2h-2.4v.613h2.4v-.307zm-2.4 0V15H4.8v.587h.307zM4.8 15v-.613h-.586V15h.293zm-.586-.613V13.8H3.6v.587h.307zM3.6 13.8v-.613h-.587v.613h.294zm-.587-.613V12.6H2.4v.587h.307zM2.4 12.6v-.613h-.587v.613h.294zm-.587-.613V11.4H1.2v.587h.307zM1.2 11.4v-.613H.614v.613h.293zm-.586-.613v-9.6H0v9.6h.307zM13.52.6v.293h1.493v.293h.293V.893h.294V.6h-1.04zm1.493.586h-.293v.32h.293v-.16zm-.293.32h-.32V1.8h.32v-.147zm0 .294v.293h.293V1.8h-.147zm-.32 0h-.294v.293h.294v-.147zm-.294.293h-.293v.293h-.293v.32h2.08v-.32h-1.494V2.24zm.294-.587v-.32h-.294v.32h.147zm2.106.294v.293h.907v.293h.293v-.293H18V1.8h-.747zm.907.586h-.293v.32h-.614V3H18v-.294h-.587v-.16zm-1.2 4.214v.293h.586V6.6h-.293zm.586.293v.293h.907v-.293h-.453zm.907.293v.32H18v-.32h-.146z" }) + ] + } + ); +}); + +export { SiVencord as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.cjs new file mode 100644 index 000000000..deff0c7b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#008CFF"; +const SiVenmo = React__namespace.forwardRef(function SiVenmo2({ title = "Venmo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.772 13.119c-.267 0-.381-.251-.38-.655 0-.533.121-1.575.712-1.575.267 0 .357.243.357.598 0 .533-.13 1.632-.689 1.632Zm.502-3.377c-1.677 0-2.405 1.285-2.405 2.658 0 1.042.421 1.874 1.693 1.874 1.717 0 2.438-1.406 2.438-2.763 0-1.025-.462-1.769-1.726-1.769Zm-3.833 0c-.558 0-.964.17-1.393.477-.154-.275-.462-.477-.932-.477-.542 0-.947.219-1.247.437l-.04-.364H13.54l-.688 4.354h1.506l.479-3.053c.129-.065.323-.154.518-.154.145 0 .267.049.267.267 0 .056-.016.145-.024.218l-.429 2.722h1.498l.478-3.053c.138-.073.324-.154.51-.154.146 0 .268.049.268.267 0 .056-.017.145-.025.218l-.429 2.722h1.499l.461-2.908c.025-.153.049-.388.049-.549 0-.582-.267-.97-1.037-.97Zm-6.871 0c-.575 0-.98.219-1.287.421l-.017-.348H8.962l-.689 4.354H9.78l.478-3.053c.13-.065.324-.154.518-.154.147 0 .268.049.268.242 0 .081-.024.227-.032.299l-.422 2.666h1.499l.462-2.908c.024-.153.049-.388.049-.549 0-.582-.268-.97-1.03-.97Zm-5.631 1.834c.041-.485.413-.824.697-.824.162 0 .299.097.299.291 0 .404-.713.533-.996.533Zm.843-1.834c-1.604 0-2.382 1.39-2.382 2.698 0 1.01.478 1.817 1.814 1.817.527 0 1.07-.113 1.418-.282l.186-1.26c-.494.25-.874.347-1.271.347-.365 0-.64-.194-.64-.687.826-.008 2.252-.347 2.252-1.453 0-.687-.494-1.18-1.377-1.18Zm-4.239.267c.089.186.146.412.146.743 0 .606-.429 1.494-.777 2.06l-.373-2.989L0 9.969l.705 4.2h1.757c.77-1.01 1.718-2.448 1.718-3.554 0-.347-.073-.622-.235-.889l-1.402.283Z" }) + ] + } + ); +}); + +exports.default = SiVenmo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.d.ts new file mode 100644 index 000000000..90e5246b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#008CFF"; +declare const SiVenmo: IconType; +export { SiVenmo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.mjs new file mode 100644 index 000000000..5017f8665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVenmo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#008CFF"; +const SiVenmo = React.forwardRef(function SiVenmo2({ title = "Venmo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.772 13.119c-.267 0-.381-.251-.38-.655 0-.533.121-1.575.712-1.575.267 0 .357.243.357.598 0 .533-.13 1.632-.689 1.632Zm.502-3.377c-1.677 0-2.405 1.285-2.405 2.658 0 1.042.421 1.874 1.693 1.874 1.717 0 2.438-1.406 2.438-2.763 0-1.025-.462-1.769-1.726-1.769Zm-3.833 0c-.558 0-.964.17-1.393.477-.154-.275-.462-.477-.932-.477-.542 0-.947.219-1.247.437l-.04-.364H13.54l-.688 4.354h1.506l.479-3.053c.129-.065.323-.154.518-.154.145 0 .267.049.267.267 0 .056-.016.145-.024.218l-.429 2.722h1.498l.478-3.053c.138-.073.324-.154.51-.154.146 0 .268.049.268.267 0 .056-.017.145-.025.218l-.429 2.722h1.499l.461-2.908c.025-.153.049-.388.049-.549 0-.582-.267-.97-1.037-.97Zm-6.871 0c-.575 0-.98.219-1.287.421l-.017-.348H8.962l-.689 4.354H9.78l.478-3.053c.13-.065.324-.154.518-.154.147 0 .268.049.268.242 0 .081-.024.227-.032.299l-.422 2.666h1.499l.462-2.908c.024-.153.049-.388.049-.549 0-.582-.268-.97-1.03-.97Zm-5.631 1.834c.041-.485.413-.824.697-.824.162 0 .299.097.299.291 0 .404-.713.533-.996.533Zm.843-1.834c-1.604 0-2.382 1.39-2.382 2.698 0 1.01.478 1.817 1.814 1.817.527 0 1.07-.113 1.418-.282l.186-1.26c-.494.25-.874.347-1.271.347-.365 0-.64-.194-.64-.687.826-.008 2.252-.347 2.252-1.453 0-.687-.494-1.18-1.377-1.18Zm-4.239.267c.089.186.146.412.146.743 0 .606-.429 1.494-.777 2.06l-.373-2.989L0 9.969l.705 4.2h1.757c.77-1.01 1.718-2.448 1.718-3.554 0-.347-.073-.622-.235-.889l-1.402.283Z" }) + ] + } + ); +}); + +export { SiVenmo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.cjs new file mode 100644 index 000000000..540cdd6dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiVercel = React__namespace.forwardRef(function SiVercel2({ title = "Vercel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12 1.608 12 20.784H0Z" }) + ] + } + ); +}); + +exports.default = SiVercel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.d.ts new file mode 100644 index 000000000..cad2de01d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiVercel: IconType; +export { SiVercel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.mjs new file mode 100644 index 000000000..7f3816d67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVercel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiVercel = React.forwardRef(function SiVercel2({ title = "Vercel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12 1.608 12 20.784H0Z" }) + ] + } + ); +}); + +export { SiVercel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.cjs new file mode 100644 index 000000000..7f696471f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B5E40"; +const SiVerdaccio = React__namespace.forwardRef(function SiVerdaccio2({ title = "Verdaccio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.376 9.84L18.72 7.2h-4.8v.566h.864l-.192.377H12.96v.566h1.344l-.288.565H12v.566h1.728zm-4.255 8.64l3.68-7.265h-3.68l-1.064 2.103L8.959 7.2H5.28l5.712 11.28zM8.88 0h6.24A8.86 8.86 0 0124 8.88v6.24A8.86 8.86 0 0115.12 24H8.88A8.86 8.86 0 010 15.12V8.88A8.86 8.86 0 018.88 0z" }) + ] + } + ); +}); + +exports.default = SiVerdaccio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.d.ts new file mode 100644 index 000000000..8be83faec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B5E40"; +declare const SiVerdaccio: IconType; +export { SiVerdaccio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.mjs new file mode 100644 index 000000000..52a879a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVerdaccio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B5E40"; +const SiVerdaccio = React.forwardRef(function SiVerdaccio2({ title = "Verdaccio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.376 9.84L18.72 7.2h-4.8v.566h.864l-.192.377H12.96v.566h1.344l-.288.565H12v.566h1.728zm-4.255 8.64l3.68-7.265h-3.68l-1.064 2.103L8.959 7.2H5.28l5.712 11.28zM8.88 0h6.24A8.86 8.86 0 0124 8.88v6.24A8.86 8.86 0 0115.12 24H8.88A8.86 8.86 0 010 15.12V8.88A8.86 8.86 0 018.88 0z" }) + ] + } + ); +}); + +export { SiVerdaccio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.cjs new file mode 100644 index 000000000..475b88843 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B1181E"; +const SiVeritas = React__namespace.forwardRef(function SiVeritas2({ title = "Veritas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 9.746l1.248 3.8712c.1053.3243.4072.5332.7344.5332a.7684.7684 0 00.7324-.5332l1.248-3.8711h-.6933L2.086 13.412a.1081.1081 0 01-.1035.0762c-.0467 0-.0881-.028-.1054-.0762L.6934 9.7461H0zm5.3125 0c-.6081 0-1.0996.4939-1.0996 1.1017v2.2011c0 .6078.4915 1.1016 1.0996 1.1016h2.0918v-.6621H5.3125a.439.439 0 01-.4395-.4395v-.7754h2.0918v-.6504H4.873v-.7753c0-.2431.1964-.4414.4395-.4414h2.0918V9.746H5.3125zm3.7598 0a.9898.9898 0 00-.9903.9903v3.414h.6602v-3.414c0-.1825.1475-.33.33-.33h1.4317a.5505.5505 0 01.5137.3535.55.55 0 01-.3164.7109l-1.1094.4082c-.4025.139-.615.578-.4766.9805a.7665.7665 0 00.4141.4531l2.0742.9414v-.7226l-1.8144-.8028a.1306.1306 0 01-.0703-.0781.1302.1302 0 01.082-.166l1.1367-.3965c.6243-.2396.9366-.9402.6973-1.5645-.1851-.4815-.6442-.7773-1.1309-.7773H9.0723zm3.3086 0v4.4044h.662V9.746h-.662zm1.2109 0v.6602h1.2773v3.7442h.6602v-3.7441h1.2773V9.746h-3.2148zm4.707 0a.7683.7683 0 00-.7324.5333l-1.25 3.871h.6953l1.1836-3.6679a.108.108 0 01.1035-.0762c.0467 0 .0882.0283.1055.0762l1.1816 3.668h.6954l-1.25-3.8711a.7702.7702 0 00-.7325-.5332zm3.334 0c-.6992 0-1.2656.5665-1.2656 1.2657 0 .6993.5664 1.2656 1.2656 1.2656l1.1016.002c.3344 0 .6054.2693.6054.6035a.6054.6054 0 01-.6054.6055h-2.1465v.662h2.1465c.6992 0 1.2656-.5683 1.2656-1.2675s-.5664-1.2656-1.2656-1.2656h-1.1016a.6054.6054 0 01-.6055-.6055c0-.3344.271-.6054.6055-.6054h2.1465V9.746h-2.1465Z" }) + ] + } + ); +}); + +exports.default = SiVeritas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.d.ts new file mode 100644 index 000000000..ee3564993 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B1181E"; +declare const SiVeritas: IconType; +export { SiVeritas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.mjs new file mode 100644 index 000000000..4f58536c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVeritas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B1181E"; +const SiVeritas = React.forwardRef(function SiVeritas2({ title = "Veritas", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 9.746l1.248 3.8712c.1053.3243.4072.5332.7344.5332a.7684.7684 0 00.7324-.5332l1.248-3.8711h-.6933L2.086 13.412a.1081.1081 0 01-.1035.0762c-.0467 0-.0881-.028-.1054-.0762L.6934 9.7461H0zm5.3125 0c-.6081 0-1.0996.4939-1.0996 1.1017v2.2011c0 .6078.4915 1.1016 1.0996 1.1016h2.0918v-.6621H5.3125a.439.439 0 01-.4395-.4395v-.7754h2.0918v-.6504H4.873v-.7753c0-.2431.1964-.4414.4395-.4414h2.0918V9.746H5.3125zm3.7598 0a.9898.9898 0 00-.9903.9903v3.414h.6602v-3.414c0-.1825.1475-.33.33-.33h1.4317a.5505.5505 0 01.5137.3535.55.55 0 01-.3164.7109l-1.1094.4082c-.4025.139-.615.578-.4766.9805a.7665.7665 0 00.4141.4531l2.0742.9414v-.7226l-1.8144-.8028a.1306.1306 0 01-.0703-.0781.1302.1302 0 01.082-.166l1.1367-.3965c.6243-.2396.9366-.9402.6973-1.5645-.1851-.4815-.6442-.7773-1.1309-.7773H9.0723zm3.3086 0v4.4044h.662V9.746h-.662zm1.2109 0v.6602h1.2773v3.7442h.6602v-3.7441h1.2773V9.746h-3.2148zm4.707 0a.7683.7683 0 00-.7324.5333l-1.25 3.871h.6953l1.1836-3.6679a.108.108 0 01.1035-.0762c.0467 0 .0882.0283.1055.0762l1.1816 3.668h.6954l-1.25-3.8711a.7702.7702 0 00-.7325-.5332zm3.334 0c-.6992 0-1.2656.5665-1.2656 1.2657 0 .6993.5664 1.2656 1.2656 1.2656l1.1016.002c.3344 0 .6054.2693.6054.6035a.6054.6054 0 01-.6054.6055h-2.1465v.662h2.1465c.6992 0 1.2656-.5683 1.2656-1.2675s-.5664-1.2656-1.2656-1.2656h-1.1016a.6054.6054 0 01-.6055-.6055c0-.3344.271-.6054.6055-.6054h2.1465V9.746h-2.1465Z" }) + ] + } + ); +}); + +export { SiVeritas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.cjs new file mode 100644 index 000000000..88fdbddad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CD040B"; +const SiVerizon = React__namespace.forwardRef(function SiVerizon2({ title = "Verizon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.302 0H22v.003L10.674 24H7.662L2 12h3.727l3.449 7.337z" }) + ] + } + ); +}); + +exports.default = SiVerizon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.d.ts new file mode 100644 index 000000000..dae2daa98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CD040B"; +declare const SiVerizon: IconType; +export { SiVerizon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.mjs new file mode 100644 index 000000000..93edc2618 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVerizon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CD040B"; +const SiVerizon = React.forwardRef(function SiVerizon2({ title = "Verizon", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.302 0H22v.003L10.674 24H7.662L2 12h3.727l3.449 7.337z" }) + ] + } + ); +}); + +export { SiVerizon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.cjs new file mode 100644 index 000000000..74831c8c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#85B09A"; +const SiVespa = React__namespace.forwardRef(function SiVespa2({ title = "Vespa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.736 11.006-.029-.008c-.127.055-.274.05-.415.067-.202-.12-.4-.248-.606-.36-.079.06-.16.141-.256.168-.11.017-.235.017-.324-.053a.463.463 0 0 1-.22-.422l.207-.93-.01-.03c-.37.025-.753.01-1.131.01-.146.021-.094.197-.168.281-.208-.118-.419-.23-.66-.28-.707-.176-1.404.125-1.84.708-.118.13-.154.305-.297.415l-.915.57c-.02.007-.052.027-.071 0a1.491 1.491 0 0 0-.92-.972c-.873-.23-1.704.1-2.347.707-.032.097-.037.204-.069.3-.498.337-.987.7-1.488 1.031-.02.017-.062.015-.077-.011a1.782 1.782 0 0 0-.66-1.128c-.088-.054-.166-.145-.275-.145l-.462.404-2.458 2.128a.932.932 0 0 1-.693.113c-.028-.014-.089-.002-.086-.048l1.18-1.029.052-.08c-.069-.138-.127-.28-.233-.405-.371-.505-1.063-.643-1.634-.473-.576.176-.997.743-1.12 1.302l-2.45 1.59c-.019.008-.053.033-.066-.004.004-.39.078-.77.221-1.114.334-.85 1.268-1.584 2.204-1.56.045-.009.057-.054.042-.093a6.912 6.912 0 0 1-.747-1.158c-.35.06-.65.263-.95.471-.982.819-1.432 1.964-1.459 3.269-.496-.637-.782-1.354-.924-2.115-.18-.805.042-1.7.542-2.31.106-.155.26-.283.352-.442-.337-.358-.65-.751-.834-1.182-.047-.103-.073-.219-.127-.314-.172.072-.33.185-.48.32-.69.648-1.085 1.468-1.03 2.466.094 1.63 1.02 3.04 2.258 4.247-.101.045-.214.052-.321.079-.352.072-.713.136-1.057.218a2.004 2.004 0 0 1-.488.856c-.012.017-.038.053-.005.066l7.79-1.515 3.459-.69c.518-.096 1.03-.212 1.572-.272.021.166-.054.316-.058.498.343-.055.68-.127 1.019-.191l.043-.021.105-.572.033-.046 4.804-.941 2.813-.562 1.984-.368.044-.039a1.514 1.514 0 0 1-.264-.401zM6.364 14.131l-2.377.46 1.728-1.14c.163.015.196.207.313.304.124.143.286.24.428.346l-.092.03zm.388-.87a.57.57 0 0 1 .029-.41.592.592 0 0 1 .648-.247c.067-.001.103.058.148.1l-.008.035-.734.612c-.036-.011-.067-.055-.083-.09zm3.669-.37c-.113.193-.462.091-.407.378.022.065.08.123.106.181-.424.104-.859.173-1.291.25l.022-.052 1.5-1.299a.083.083 0 0 1 .066.005l.085.15a.439.439 0 0 1-.081.388zm2.937-.044c-.454.098-.912.193-1.375.268.027-.097.079-.196.127-.29.08-.085.19-.12.281-.19l1.096-.7.03.003c-.043.3-.063.628-.159.91zm1.573-.272-.446.076-.027-.032c.024-.098.023-.209.074-.293l.03.002a.954.954 0 0 0 .4.22l-.031.027zm.7-.746a.442.442 0 0 1-.41.169.61.61 0 0 1-.457-.355c-.071-.18-.064-.429.093-.567.158-.119.41-.107.571-.002a.645.645 0 0 1 .242.292.5.5 0 0 1-.038.463zm.964.439c.056-.12.162-.21.19-.34l1.16-.767c.014-.003.026-.015.043-.009a.95.95 0 0 0 .485.734l-1.878.382zm3.234-1.142a.417.417 0 0 1-.417.102c-.148-.044-.304-.176-.34-.334-.05-.132-.029-.319.076-.42.127-.124.325-.138.481-.067.104.05.208.152.256.263.063.139.05.34-.056.456zm.861.371c-.012-.054.058-.082.07-.132l.077-.174c.12.035.191.175.326.184-.136.068-.307.095-.473.122z" }) + ] + } + ); +}); + +exports.default = SiVespa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.d.ts new file mode 100644 index 000000000..444f59a75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#85B09A"; +declare const SiVespa: IconType; +export { SiVespa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.mjs new file mode 100644 index 000000000..07480f9ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVespa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#85B09A"; +const SiVespa = React.forwardRef(function SiVespa2({ title = "Vespa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.736 11.006-.029-.008c-.127.055-.274.05-.415.067-.202-.12-.4-.248-.606-.36-.079.06-.16.141-.256.168-.11.017-.235.017-.324-.053a.463.463 0 0 1-.22-.422l.207-.93-.01-.03c-.37.025-.753.01-1.131.01-.146.021-.094.197-.168.281-.208-.118-.419-.23-.66-.28-.707-.176-1.404.125-1.84.708-.118.13-.154.305-.297.415l-.915.57c-.02.007-.052.027-.071 0a1.491 1.491 0 0 0-.92-.972c-.873-.23-1.704.1-2.347.707-.032.097-.037.204-.069.3-.498.337-.987.7-1.488 1.031-.02.017-.062.015-.077-.011a1.782 1.782 0 0 0-.66-1.128c-.088-.054-.166-.145-.275-.145l-.462.404-2.458 2.128a.932.932 0 0 1-.693.113c-.028-.014-.089-.002-.086-.048l1.18-1.029.052-.08c-.069-.138-.127-.28-.233-.405-.371-.505-1.063-.643-1.634-.473-.576.176-.997.743-1.12 1.302l-2.45 1.59c-.019.008-.053.033-.066-.004.004-.39.078-.77.221-1.114.334-.85 1.268-1.584 2.204-1.56.045-.009.057-.054.042-.093a6.912 6.912 0 0 1-.747-1.158c-.35.06-.65.263-.95.471-.982.819-1.432 1.964-1.459 3.269-.496-.637-.782-1.354-.924-2.115-.18-.805.042-1.7.542-2.31.106-.155.26-.283.352-.442-.337-.358-.65-.751-.834-1.182-.047-.103-.073-.219-.127-.314-.172.072-.33.185-.48.32-.69.648-1.085 1.468-1.03 2.466.094 1.63 1.02 3.04 2.258 4.247-.101.045-.214.052-.321.079-.352.072-.713.136-1.057.218a2.004 2.004 0 0 1-.488.856c-.012.017-.038.053-.005.066l7.79-1.515 3.459-.69c.518-.096 1.03-.212 1.572-.272.021.166-.054.316-.058.498.343-.055.68-.127 1.019-.191l.043-.021.105-.572.033-.046 4.804-.941 2.813-.562 1.984-.368.044-.039a1.514 1.514 0 0 1-.264-.401zM6.364 14.131l-2.377.46 1.728-1.14c.163.015.196.207.313.304.124.143.286.24.428.346l-.092.03zm.388-.87a.57.57 0 0 1 .029-.41.592.592 0 0 1 .648-.247c.067-.001.103.058.148.1l-.008.035-.734.612c-.036-.011-.067-.055-.083-.09zm3.669-.37c-.113.193-.462.091-.407.378.022.065.08.123.106.181-.424.104-.859.173-1.291.25l.022-.052 1.5-1.299a.083.083 0 0 1 .066.005l.085.15a.439.439 0 0 1-.081.388zm2.937-.044c-.454.098-.912.193-1.375.268.027-.097.079-.196.127-.29.08-.085.19-.12.281-.19l1.096-.7.03.003c-.043.3-.063.628-.159.91zm1.573-.272-.446.076-.027-.032c.024-.098.023-.209.074-.293l.03.002a.954.954 0 0 0 .4.22l-.031.027zm.7-.746a.442.442 0 0 1-.41.169.61.61 0 0 1-.457-.355c-.071-.18-.064-.429.093-.567.158-.119.41-.107.571-.002a.645.645 0 0 1 .242.292.5.5 0 0 1-.038.463zm.964.439c.056-.12.162-.21.19-.34l1.16-.767c.014-.003.026-.015.043-.009a.95.95 0 0 0 .485.734l-1.878.382zm3.234-1.142a.417.417 0 0 1-.417.102c-.148-.044-.304-.176-.34-.334-.05-.132-.029-.319.076-.42.127-.124.325-.138.481-.067.104.05.208.152.256.263.063.139.05.34-.056.456zm.861.371c-.012-.054.058-.082.07-.132l.077-.174c.12.035.191.175.326.184-.136.068-.307.095-.473.122z" }) + ] + } + ); +}); + +export { SiVespa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.cjs new file mode 100644 index 000000000..b8370f561 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD052B"; +const SiVestel = React__namespace.forwardRef(function SiVestel2({ title = "Vestel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 12.051 9.4 L 10.663 9.4 C 10.663 9.4 9.016 9.459 8.889 10.993 C 8.762 12.527 10.471 12.496 10.79 13.151 C 10.993 13.57 10.495 13.89 10.072 13.89 L 8.928 13.89 L 8.928 14.6 L 10.868 14.6 C 10.868 14.6 12.899 14.49 12.613 12.743 C 12.43 11.616 11.188 11.791 10.771 11.033 C 10.355 10.276 11.081 10.061 11.159 10.061 L 12.041 10.061 L 12.051 9.4 Z M 12.256 9.437 L 16.359 9.437 L 16.359 10.096 L 15.151 10.096 L 15.151 14.564 L 13.517 14.564 L 13.517 10.096 L 12.256 10.096 L 12.256 9.437 Z M 16.653 9.437 L 20.046 9.437 L 20.046 10.042 L 18.288 10.042 L 18.288 11.751 L 19.887 11.751 L 19.887 12.356 L 18.288 12.356 L 18.288 13.852 L 20.154 13.852 L 20.154 14.564 L 16.653 14.564 L 16.653 9.437 Z M 20.428 9.437 L 22.135 9.437 L 22.135 13.852 L 24 13.852 L 24 14.564 L 20.428 14.564 L 20.428 9.437 Z M 5.042 9.437 L 8.49 9.437 L 8.49 10.042 L 6.677 10.042 L 6.677 11.751 L 8.277 11.751 L 8.277 12.356 L 6.677 12.356 L 6.677 13.852 L 8.596 13.852 L 8.596 14.564 L 5.042 14.564 L 5.042 9.437 Z M 3.991 9.436 L 2.891 13.014 L 1.756 9.436 L 0 9.436 L 1.801 14.562 L 3.114 14.562 L 4.87 9.436 L 3.991 9.436 Z" }) + ] + } + ); +}); + +exports.default = SiVestel; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.d.ts new file mode 100644 index 000000000..00ff64c46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD052B"; +declare const SiVestel: IconType; +export { SiVestel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.mjs new file mode 100644 index 000000000..27048ff77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVestel.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD052B"; +const SiVestel = React.forwardRef(function SiVestel2({ title = "Vestel", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 12.051 9.4 L 10.663 9.4 C 10.663 9.4 9.016 9.459 8.889 10.993 C 8.762 12.527 10.471 12.496 10.79 13.151 C 10.993 13.57 10.495 13.89 10.072 13.89 L 8.928 13.89 L 8.928 14.6 L 10.868 14.6 C 10.868 14.6 12.899 14.49 12.613 12.743 C 12.43 11.616 11.188 11.791 10.771 11.033 C 10.355 10.276 11.081 10.061 11.159 10.061 L 12.041 10.061 L 12.051 9.4 Z M 12.256 9.437 L 16.359 9.437 L 16.359 10.096 L 15.151 10.096 L 15.151 14.564 L 13.517 14.564 L 13.517 10.096 L 12.256 10.096 L 12.256 9.437 Z M 16.653 9.437 L 20.046 9.437 L 20.046 10.042 L 18.288 10.042 L 18.288 11.751 L 19.887 11.751 L 19.887 12.356 L 18.288 12.356 L 18.288 13.852 L 20.154 13.852 L 20.154 14.564 L 16.653 14.564 L 16.653 9.437 Z M 20.428 9.437 L 22.135 9.437 L 22.135 13.852 L 24 13.852 L 24 14.564 L 20.428 14.564 L 20.428 9.437 Z M 5.042 9.437 L 8.49 9.437 L 8.49 10.042 L 6.677 10.042 L 6.677 11.751 L 8.277 11.751 L 8.277 12.356 L 6.677 12.356 L 6.677 13.852 L 8.596 13.852 L 8.596 14.564 L 5.042 14.564 L 5.042 9.437 Z M 3.991 9.436 L 2.891 13.014 L 1.756 9.436 L 0 9.436 L 1.801 14.562 L 3.114 14.562 L 4.87 9.436 L 3.991 9.436 Z" }) + ] + } + ); +}); + +export { SiVestel as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.cjs new file mode 100644 index 000000000..200102ea9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2A1659"; +const SiVexxhost = React__namespace.forwardRef(function SiVexxhost2({ title = "VEXXHOST", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.787 16.045a23.43 23.43 0 0 0-1.402 2.185c.16-.301.331-.6.509-.898q.569-.948 1.225-1.88c3.684-5.16 9.117-9.202 14.354-11.112l-.43-1.317c-.018-.012-.032-.02-.04-.014-7.366 2.68-14.173 9.534-16.55 17.194.116-.28.237-.559.37-.836 3.407-5.592 9.963-10.16 16.079-12.157l-.183-1.252c-5.385 1.683-10.555 5.398-13.932 10.087ZM23.04 3.023v-.014h-.03s.011.002.03.014zM7.385 18.23l.509-.898c-.178.298-.348.597-.51.898zM23.05 8.058a11.447 11.447 0 0 1 .798 4.092 11.792 11.792 0 0 1-18.604 9.683A12.084 12.084 0 0 1 4.238 2.916 11.847 11.847 0 0 1 7.908.713a11.525 11.525 0 0 1 4.196-.711 11.181 11.181 0 0 1 7.616 3.11A11.423 11.423 0 0 0 12.11.6a10.878 10.878 0 0 0-3.9.843 11.236 11.236 0 0 0-3.34 2.173A11.46 11.46 0 0 0 2.5 6.781a11.186 11.186 0 0 0 .711 11.266 11.032 11.032 0 0 0 2.72 2.827 10.9 10.9 0 0 0 3.554 1.658 11.072 11.072 0 0 0 7.7-.732 11.435 11.435 0 0 0 5.386-5.715 11.826 11.826 0 0 0 .948-3.938 12.084 12.084 0 0 0-.47-4.09zM9.173 6.873H6.79l3.504 4.872a29.78 29.78 0 0 1 1.277-1.529zm5.971 11.61h2.358l-3.98-5.551q-.764.597-1.477 1.234zm-1.01 0h.385l-2.843-3.966-.237.22zM6.182 6.873H5.76l4.01 5.563c.065-.092.137-.184.21-.274zm-.837 0h-.421L9.36 13.01c.064-.095.132-.187.199-.28zm7.957 11.61h.381l-2.516-3.509-.237.237z" }) + ] + } + ); +}); + +exports.default = SiVexxhost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.d.ts new file mode 100644 index 000000000..ad6f62220 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2A1659"; +declare const SiVexxhost: IconType; +export { SiVexxhost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.mjs new file mode 100644 index 000000000..d7ba2a26a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVexxhost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2A1659"; +const SiVexxhost = React.forwardRef(function SiVexxhost2({ title = "VEXXHOST", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.787 16.045a23.43 23.43 0 0 0-1.402 2.185c.16-.301.331-.6.509-.898q.569-.948 1.225-1.88c3.684-5.16 9.117-9.202 14.354-11.112l-.43-1.317c-.018-.012-.032-.02-.04-.014-7.366 2.68-14.173 9.534-16.55 17.194.116-.28.237-.559.37-.836 3.407-5.592 9.963-10.16 16.079-12.157l-.183-1.252c-5.385 1.683-10.555 5.398-13.932 10.087ZM23.04 3.023v-.014h-.03s.011.002.03.014zM7.385 18.23l.509-.898c-.178.298-.348.597-.51.898zM23.05 8.058a11.447 11.447 0 0 1 .798 4.092 11.792 11.792 0 0 1-18.604 9.683A12.084 12.084 0 0 1 4.238 2.916 11.847 11.847 0 0 1 7.908.713a11.525 11.525 0 0 1 4.196-.711 11.181 11.181 0 0 1 7.616 3.11A11.423 11.423 0 0 0 12.11.6a10.878 10.878 0 0 0-3.9.843 11.236 11.236 0 0 0-3.34 2.173A11.46 11.46 0 0 0 2.5 6.781a11.186 11.186 0 0 0 .711 11.266 11.032 11.032 0 0 0 2.72 2.827 10.9 10.9 0 0 0 3.554 1.658 11.072 11.072 0 0 0 7.7-.732 11.435 11.435 0 0 0 5.386-5.715 11.826 11.826 0 0 0 .948-3.938 12.084 12.084 0 0 0-.47-4.09zM9.173 6.873H6.79l3.504 4.872a29.78 29.78 0 0 1 1.277-1.529zm5.971 11.61h2.358l-3.98-5.551q-.764.597-1.477 1.234zm-1.01 0h.385l-2.843-3.966-.237.22zM6.182 6.873H5.76l4.01 5.563c.065-.092.137-.184.21-.274zm-.837 0h-.421L9.36 13.01c.064-.095.132-.187.199-.28zm7.957 11.61h.381l-2.516-3.509-.237.237z" }) + ] + } + ); +}); + +export { SiVexxhost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.cjs new file mode 100644 index 000000000..915d07428 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF4678"; +const SiVfairs = React__namespace.forwardRef(function SiVfairs2({ title = "vFairs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.316 5.923c-.01-.014-.027-.024-.04-.035a.412.412 0 0 0-.06-.047L12.223.061a.427.427 0 0 0-.08-.033C12.128.02 12.113.02 12.1.015a.41.41 0 0 0-.325.046l-9.992 5.78a.418.418 0 0 0-.143.141c-.015.014-.02.034-.028.05a.423.423 0 0 0-.048.191v11.56a.418.418 0 0 0 .007.05c.007.14.088.266.212.331l9.992 5.78a.555.555 0 0 0 .487 0l9.888-5.756a.437.437 0 0 0 .284-.406V6.223a.408.408 0 0 0-.119-.3zM2.45 17.015V6.99l8.665 5.012-8.665 5.012zm10.452-5.023l8.648-5.001v10.024c-2.905-1.676-5.634-3.268-8.648-5.023zm-.46-.757V1.211l8.666 5.012zm-.885 0L2.891 6.223l8.666-5.012zm0 1.535v10.024l-8.665-5.012zm.925.023l5.477 3.168 3.129 1.821-8.606 5.01Z" }) + ] + } + ); +}); + +exports.default = SiVfairs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.d.ts new file mode 100644 index 000000000..2f8640171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF4678"; +declare const SiVfairs: IconType; +export { SiVfairs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.mjs new file mode 100644 index 000000000..b996fceb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVfairs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF4678"; +const SiVfairs = React.forwardRef(function SiVfairs2({ title = "vFairs", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.316 5.923c-.01-.014-.027-.024-.04-.035a.412.412 0 0 0-.06-.047L12.223.061a.427.427 0 0 0-.08-.033C12.128.02 12.113.02 12.1.015a.41.41 0 0 0-.325.046l-9.992 5.78a.418.418 0 0 0-.143.141c-.015.014-.02.034-.028.05a.423.423 0 0 0-.048.191v11.56a.418.418 0 0 0 .007.05c.007.14.088.266.212.331l9.992 5.78a.555.555 0 0 0 .487 0l9.888-5.756a.437.437 0 0 0 .284-.406V6.223a.408.408 0 0 0-.119-.3zM2.45 17.015V6.99l8.665 5.012-8.665 5.012zm10.452-5.023l8.648-5.001v10.024c-2.905-1.676-5.634-3.268-8.648-5.023zm-.46-.757V1.211l8.666 5.012zm-.885 0L2.891 6.223l8.666-5.012zm0 1.535v10.024l-8.665-5.012zm.925.023l5.477 3.168 3.129 1.821-8.606 5.01Z" }) + ] + } + ); +}); + +export { SiVfairs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.cjs new file mode 100644 index 000000000..1953871a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F07355"; +const SiViadeo = React__namespace.forwardRef(function SiViadeo2({ title = "Viadeo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.2888 13.8979c.361.884.5428 1.8423.5428 2.875 0 1.9315-.6593 3.6185-1.977 5.0626C13.537 23.2796 11.8417 24 9.7697 24c-2.0819 0-3.778-.7204-5.0973-2.1645-1.3177-1.4441-1.9786-3.1311-1.9786-5.0626 0-1.9142.6213-3.5747 1.8687-4.9791C5.9381 10.2439 7.6688 9.469 9.7673 9.469c.884 0 1.7018.1388 2.4536.4131-.2453.4808-.4659 1.0698-.5262 1.7035-.599-.2503-1.2425-.3759-1.9332-.3759-1.454 0-2.7015.5453-3.7416 1.6382-1.0409 1.0921-1.5614 2.4132-1.5614 3.963 0 .9996.2396 1.9315.7105 2.7948.4792.8642 1.1153 1.53 1.9249 2.0009.8096.4701 1.6936.7047 2.6602.7047.9666 0 1.8588-.2338 2.6602-.7047.8096-.47 1.454-1.1367 1.9249-2.0009.8345-1.4971.9618-3.465.2974-5.0386.4708-.0991 1.0491-.2949 1.6522-.6692zM20.3873.4285l-.0126-.0148c-.7574 1.6151-2.1586 1.9175-2.1586 1.9175-1.4013.3613-1.8924.8997-1.8924.8997-1.4013 1.416-.295 3.1344-.295 3.1344 3.0311-.6933 4.1374-3.186 4.1374-3.186-.1327 1.6815-3.7317 3.658-3.7317 3.658 1.1947 1.1726 2.3305 1.0325 3.0828.5826.9956-.59 1.475-1.8953 1.475-1.8953.966-2.8984-.6049-5.0961-.6049-5.0961zM7.0301 20.4729s.4278.0738.9123.0516c0 0 10.3286-7.021 7.6094-14.3148l-.0405-.118v.0074c.0339.4867-4.483 13.0613-8.4812 14.3738zm8.3828-15.1895C15.0486 1.4101 12.9327 0 12.9327 0c1.4897 2.5134 2.2995 4.7694 2.4816 5.3055 0-.0132-.0014-.0221-.0014-.0221z" }) + ] + } + ); +}); + +exports.default = SiViadeo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.d.ts new file mode 100644 index 000000000..8c507cd3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F07355"; +declare const SiViadeo: IconType; +export { SiViadeo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.mjs new file mode 100644 index 000000000..dbbc15513 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViadeo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F07355"; +const SiViadeo = React.forwardRef(function SiViadeo2({ title = "Viadeo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.2888 13.8979c.361.884.5428 1.8423.5428 2.875 0 1.9315-.6593 3.6185-1.977 5.0626C13.537 23.2796 11.8417 24 9.7697 24c-2.0819 0-3.778-.7204-5.0973-2.1645-1.3177-1.4441-1.9786-3.1311-1.9786-5.0626 0-1.9142.6213-3.5747 1.8687-4.9791C5.9381 10.2439 7.6688 9.469 9.7673 9.469c.884 0 1.7018.1388 2.4536.4131-.2453.4808-.4659 1.0698-.5262 1.7035-.599-.2503-1.2425-.3759-1.9332-.3759-1.454 0-2.7015.5453-3.7416 1.6382-1.0409 1.0921-1.5614 2.4132-1.5614 3.963 0 .9996.2396 1.9315.7105 2.7948.4792.8642 1.1153 1.53 1.9249 2.0009.8096.4701 1.6936.7047 2.6602.7047.9666 0 1.8588-.2338 2.6602-.7047.8096-.47 1.454-1.1367 1.9249-2.0009.8345-1.4971.9618-3.465.2974-5.0386.4708-.0991 1.0491-.2949 1.6522-.6692zM20.3873.4285l-.0126-.0148c-.7574 1.6151-2.1586 1.9175-2.1586 1.9175-1.4013.3613-1.8924.8997-1.8924.8997-1.4013 1.416-.295 3.1344-.295 3.1344 3.0311-.6933 4.1374-3.186 4.1374-3.186-.1327 1.6815-3.7317 3.658-3.7317 3.658 1.1947 1.1726 2.3305 1.0325 3.0828.5826.9956-.59 1.475-1.8953 1.475-1.8953.966-2.8984-.6049-5.0961-.6049-5.0961zM7.0301 20.4729s.4278.0738.9123.0516c0 0 10.3286-7.021 7.6094-14.3148l-.0405-.118v.0074c.0339.4867-4.483 13.0613-8.4812 14.3738zm8.3828-15.1895C15.0486 1.4101 12.9327 0 12.9327 0c1.4897 2.5134 2.2995 4.7694 2.4816 5.3055 0-.0132-.0014-.0221-.0014-.0221z" }) + ] + } + ); +}); + +export { SiViadeo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.cjs new file mode 100644 index 000000000..9e2203384 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FE365F"; +const SiViaplay = React__namespace.forwardRef(function SiViaplay2({ title = "Viaplay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.2766 6.6383C.4742 8.2432 0 10.0669 0 12s.4742 3.7568 1.2766 5.3617L12 12ZM12 0C9.0456 0 6.3465 1.0578 4.231 2.845l12.5471 6.7477v4.8146L4.231 21.155C6.31 22.9422 9.0456 24 12 24c6.6383 0 12-5.3617 12-12S18.6383 0 12 0Z" }) + ] + } + ); +}); + +exports.default = SiViaplay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.d.ts new file mode 100644 index 000000000..fb1bbb76d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FE365F"; +declare const SiViaplay: IconType; +export { SiViaplay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.mjs new file mode 100644 index 000000000..09e4d8cd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViaplay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FE365F"; +const SiViaplay = React.forwardRef(function SiViaplay2({ title = "Viaplay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.2766 6.6383C.4742 8.2432 0 10.0669 0 12s.4742 3.7568 1.2766 5.3617L12 12ZM12 0C9.0456 0 6.3465 1.0578 4.231 2.845l12.5471 6.7477v4.8146L4.231 21.155C6.31 22.9422 9.0456 24 12 24c6.6383 0 12-5.3617 12-12S18.6383 0 12 0Z" }) + ] + } + ); +}); + +export { SiViaplay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViber.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViber.cjs new file mode 100644 index 000000000..d41f5ddbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViber.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7360F2"; +const SiViber = React__namespace.forwardRef(function SiViber2({ title = "Viber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.4 0C9.473.028 5.333.344 3.02 2.467 1.302 4.187.696 6.7.633 9.817.57 12.933.488 18.776 6.12 20.36h.003l-.004 2.416s-.037.977.61 1.177c.777.242 1.234-.5 1.98-1.302.407-.44.972-1.084 1.397-1.58 3.85.326 6.812-.416 7.15-.525.776-.252 5.176-.816 5.892-6.657.74-6.02-.36-9.83-2.34-11.546-.596-.55-3.006-2.3-8.375-2.323 0 0-.395-.025-1.037-.017zm.058 1.693c.545-.004.88.017.88.017 4.542.02 6.717 1.388 7.222 1.846 1.675 1.435 2.53 4.868 1.906 9.897v.002c-.604 4.878-4.174 5.184-4.832 5.395-.28.09-2.882.737-6.153.524 0 0-2.436 2.94-3.197 3.704-.12.12-.26.167-.352.144-.13-.033-.166-.188-.165-.414l.02-4.018c-4.762-1.32-4.485-6.292-4.43-8.895.054-2.604.543-4.738 1.996-6.173 1.96-1.773 5.474-2.018 7.11-2.03zm.38 2.602c-.167 0-.303.135-.304.302 0 .167.133.303.3.305 1.624.01 2.946.537 4.028 1.592 1.073 1.046 1.62 2.468 1.633 4.334.002.167.14.3.307.3.166-.002.3-.138.3-.304-.014-1.984-.618-3.596-1.816-4.764-1.19-1.16-2.692-1.753-4.447-1.765zm-3.96.695c-.19-.032-.4.005-.616.117l-.01.002c-.43.247-.816.562-1.146.932-.002.004-.006.004-.008.008-.267.323-.42.638-.46.948-.008.046-.01.093-.007.14 0 .136.022.27.065.4l.013.01c.135.48.473 1.276 1.205 2.604.42.768.903 1.5 1.446 2.186.27.344.56.673.87.984l.132.132c.31.308.64.6.984.87.686.543 1.418 1.027 2.186 1.447 1.328.733 2.126 1.07 2.604 1.206l.01.014c.13.042.265.064.402.063.046.002.092 0 .138-.008.31-.036.627-.19.948-.46.004 0 .003-.002.008-.005.37-.33.683-.72.93-1.148l.003-.01c.225-.432.15-.842-.18-1.12-.004 0-.698-.58-1.037-.83-.36-.255-.73-.492-1.113-.71-.51-.285-1.032-.106-1.248.174l-.447.564c-.23.283-.657.246-.657.246-3.12-.796-3.955-3.955-3.955-3.955s-.037-.426.248-.656l.563-.448c.277-.215.456-.737.17-1.248-.217-.383-.454-.756-.71-1.115-.25-.34-.826-1.033-.83-1.035-.137-.165-.31-.265-.502-.297zm4.49.88c-.158.002-.29.124-.3.282-.01.167.115.312.282.324 1.16.085 2.017.466 2.645 1.15.63.688.93 1.524.906 2.57-.002.168.13.306.3.31.166.003.305-.13.31-.297.025-1.175-.334-2.193-1.067-2.994-.74-.81-1.777-1.253-3.05-1.346h-.024zm.463 1.63c-.16.002-.29.127-.3.287-.008.167.12.31.288.32.523.028.875.175 1.113.422.24.245.388.62.416 1.164.01.167.15.295.318.287.167-.008.295-.15.287-.317-.03-.644-.215-1.178-.58-1.557-.367-.378-.893-.574-1.52-.607h-.018z" }) + ] + } + ); +}); + +exports.default = SiViber; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViber.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiViber.d.ts new file mode 100644 index 000000000..42fc24d3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViber.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7360F2"; +declare const SiViber: IconType; +export { SiViber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViber.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViber.mjs new file mode 100644 index 000000000..e05a7cb99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViber.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7360F2"; +const SiViber = React.forwardRef(function SiViber2({ title = "Viber", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.4 0C9.473.028 5.333.344 3.02 2.467 1.302 4.187.696 6.7.633 9.817.57 12.933.488 18.776 6.12 20.36h.003l-.004 2.416s-.037.977.61 1.177c.777.242 1.234-.5 1.98-1.302.407-.44.972-1.084 1.397-1.58 3.85.326 6.812-.416 7.15-.525.776-.252 5.176-.816 5.892-6.657.74-6.02-.36-9.83-2.34-11.546-.596-.55-3.006-2.3-8.375-2.323 0 0-.395-.025-1.037-.017zm.058 1.693c.545-.004.88.017.88.017 4.542.02 6.717 1.388 7.222 1.846 1.675 1.435 2.53 4.868 1.906 9.897v.002c-.604 4.878-4.174 5.184-4.832 5.395-.28.09-2.882.737-6.153.524 0 0-2.436 2.94-3.197 3.704-.12.12-.26.167-.352.144-.13-.033-.166-.188-.165-.414l.02-4.018c-4.762-1.32-4.485-6.292-4.43-8.895.054-2.604.543-4.738 1.996-6.173 1.96-1.773 5.474-2.018 7.11-2.03zm.38 2.602c-.167 0-.303.135-.304.302 0 .167.133.303.3.305 1.624.01 2.946.537 4.028 1.592 1.073 1.046 1.62 2.468 1.633 4.334.002.167.14.3.307.3.166-.002.3-.138.3-.304-.014-1.984-.618-3.596-1.816-4.764-1.19-1.16-2.692-1.753-4.447-1.765zm-3.96.695c-.19-.032-.4.005-.616.117l-.01.002c-.43.247-.816.562-1.146.932-.002.004-.006.004-.008.008-.267.323-.42.638-.46.948-.008.046-.01.093-.007.14 0 .136.022.27.065.4l.013.01c.135.48.473 1.276 1.205 2.604.42.768.903 1.5 1.446 2.186.27.344.56.673.87.984l.132.132c.31.308.64.6.984.87.686.543 1.418 1.027 2.186 1.447 1.328.733 2.126 1.07 2.604 1.206l.01.014c.13.042.265.064.402.063.046.002.092 0 .138-.008.31-.036.627-.19.948-.46.004 0 .003-.002.008-.005.37-.33.683-.72.93-1.148l.003-.01c.225-.432.15-.842-.18-1.12-.004 0-.698-.58-1.037-.83-.36-.255-.73-.492-1.113-.71-.51-.285-1.032-.106-1.248.174l-.447.564c-.23.283-.657.246-.657.246-3.12-.796-3.955-3.955-3.955-3.955s-.037-.426.248-.656l.563-.448c.277-.215.456-.737.17-1.248-.217-.383-.454-.756-.71-1.115-.25-.34-.826-1.033-.83-1.035-.137-.165-.31-.265-.502-.297zm4.49.88c-.158.002-.29.124-.3.282-.01.167.115.312.282.324 1.16.085 2.017.466 2.645 1.15.63.688.93 1.524.906 2.57-.002.168.13.306.3.31.166.003.305-.13.31-.297.025-1.175-.334-2.193-1.067-2.994-.74-.81-1.777-1.253-3.05-1.346h-.024zm.463 1.63c-.16.002-.29.127-.3.287-.008.167.12.31.288.32.523.028.875.175 1.113.422.24.245.388.62.416 1.164.01.167.15.295.318.287.167-.008.295-.15.287-.317-.03-.644-.215-1.178-.58-1.557-.367-.378-.893-.574-1.52-.607h-.018z" }) + ] + } + ); +}); + +export { SiViber as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.cjs new file mode 100644 index 000000000..aa58e5500 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5387C6"; +const SiViblo = React__namespace.forwardRef(function SiViblo2({ title = "Viblo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.569 19.68h2.904L21.621.018 18.705 0l-4.428 10.668H9.705L5.295 0H2.379l8.19 19.68zm-7.02 1.854h16.908V24H3.549v-2.466z" }) + ] + } + ); +}); + +exports.default = SiViblo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.d.ts new file mode 100644 index 000000000..7b619bed2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5387C6"; +declare const SiViblo: IconType; +export { SiViblo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.mjs new file mode 100644 index 000000000..903e1d6b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiViblo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5387C6"; +const SiViblo = React.forwardRef(function SiViblo2({ title = "Viblo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.569 19.68h2.904L21.621.018 18.705 0l-4.428 10.668H9.705L5.295 0H2.379l8.19 19.68zm-7.02 1.854h16.908V24H3.549v-2.466z" }) + ] + } + ); +}); + +export { SiViblo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.cjs new file mode 100644 index 000000000..78a75f19e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#621773"; +const SiVictoriametrics = React__namespace.forwardRef(function SiVictoriametrics2({ title = "VictoriaMetrics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.893 3.078C.239 1.537 4.846.009 11.963 0h.076c7.116.009 11.723 1.537 10.067 3.078 0 0-6.168 5.655-8.301 7.473-.404.346-1.084.607-1.766.616h-.076c-.682-.009-1.362-.271-1.767-.616-2.132-1.818-8.301-7.473-8.303-7.473Zm20.549 2.771V8.58c0 .3-.115.698-.319.885-1.332 1.222-6.47 5.925-8.319 7.502-.405.345-1.085.606-1.767.615h-.072c-.683-.009-1.362-.27-1.767-.615-1.849-1.577-6.987-6.28-8.32-7.502-.204-.187-.318-.585-.318-.885V5.849c1.96 1.788 7.163 6.505 8.638 7.764.404.346 1.084.607 1.767.616h.072c.682-.009 1.362-.271 1.767-.616 1.474-1.258 6.678-5.973 8.638-7.764Zm0 6.418v2.73c0 .301-.115.698-.319.885-1.332 1.222-6.47 5.926-8.319 7.502-.405.346-1.085.607-1.767.616h-.072c-.683-.009-1.362-.271-1.767-.616-1.849-1.576-6.987-6.28-8.32-7.502-.204-.187-.318-.585-.318-.885v-2.73c1.96 1.788 7.163 6.505 8.638 7.764.404.346 1.084.606 1.767.615h.072c.682-.009 1.362-.27 1.767-.615 1.474-1.258 6.678-5.976 8.638-7.764Z" }) + ] + } + ); +}); + +exports.default = SiVictoriametrics; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.d.ts new file mode 100644 index 000000000..2970a9df5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#621773"; +declare const SiVictoriametrics: IconType; +export { SiVictoriametrics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.mjs new file mode 100644 index 000000000..90b32a1ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVictoriametrics.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#621773"; +const SiVictoriametrics = React.forwardRef(function SiVictoriametrics2({ title = "VictoriaMetrics", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.893 3.078C.239 1.537 4.846.009 11.963 0h.076c7.116.009 11.723 1.537 10.067 3.078 0 0-6.168 5.655-8.301 7.473-.404.346-1.084.607-1.766.616h-.076c-.682-.009-1.362-.271-1.767-.616-2.132-1.818-8.301-7.473-8.303-7.473Zm20.549 2.771V8.58c0 .3-.115.698-.319.885-1.332 1.222-6.47 5.925-8.319 7.502-.405.345-1.085.606-1.767.615h-.072c-.683-.009-1.362-.27-1.767-.615-1.849-1.577-6.987-6.28-8.32-7.502-.204-.187-.318-.585-.318-.885V5.849c1.96 1.788 7.163 6.505 8.638 7.764.404.346 1.084.607 1.767.616h.072c.682-.009 1.362-.271 1.767-.616 1.474-1.258 6.678-5.973 8.638-7.764Zm0 6.418v2.73c0 .301-.115.698-.319.885-1.332 1.222-6.47 5.926-8.319 7.502-.405.346-1.085.607-1.767.616h-.072c-.683-.009-1.362-.271-1.767-.616-1.849-1.576-6.987-6.28-8.32-7.502-.204-.187-.318-.585-.318-.885v-2.73c1.96 1.788 7.163 6.505 8.638 7.764.404.346 1.084.606 1.767.615h.072c.682-.009 1.362-.27 1.767-.615 1.474-1.258 6.678-5.976 8.638-7.764Z" }) + ] + } + ); +}); + +export { SiVictoriametrics as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.cjs new file mode 100644 index 000000000..8cf9d2040 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0066B2"; +const SiVictronenergy = React__namespace.forwardRef(function SiVictronenergy2({ title = "Victron Energy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.183 4.65c-.522.001-1.295.137-2.1.751 0 0-1.7 1.039-2.096 5.166 0 0-.144 1.019-.066 1.535 0 0 .066.603.687.657 0 0 .749.058.797-.644.047-.702.063-.987.063-.987S4.586 8.384 5.7 6.993l.269.202s.38-1.441 1.874-2.465c0 0-.254-.081-.66-.08Zm2.729.023c-.635.001-1.632.167-2.437 1.042 0 0-1.279 1.14-1.656 3.973 0 0-.158 1.522-.185 2.262 0 0-.013.718.678.809 0 0 .71.044.757-.711 0 0 .046-3.468 1.329-5.055l.319.198s.555-1.603 1.826-2.461c0 0-.25-.058-.631-.057Zm2.854.016c-.057-.001-.116 0-.175.003 0 0-1.792-.073-2.844 1.733 0 0-1.216 1.771-1.211 5.397 0 0-.074.86.601.938 0 0 .798.05.798-.862 0 0 .036-3.578 1.401-5.025 0 0 1.209 1.452 1.308 4.866 0 0 .042 2.34.479 3.63 0 0 .395-1.448.475-3.452 0 0-.034-.366.284-.624 0 0 .209-.102.168-.468 0 0-.292-2.978-1.284-4.666 0 0 2.103-.136 2.52 4.071 0 0 .004.615.345.999 0 0 .25.177.275.609 0 0 .061.595-.118 2.521 0 0-.042.422.144 1.021 0 0 .52-1.438.382-2.848 0 0-.068-1.144.501-1.53 0 0-.048-3.193-1.318-4.941 0 0-.944-1.359-2.731-1.372Zm-8.559.019c-.563.005-1.316.162-2.073.771 0 0-1.8 1.208-2.13 6.299 0 0-.1.847.648.972 0 0 .753.145.853-.489.099-.636.08-3.847 1.503-5.495 0 0 .138-.208.516-.371.317-.194.567-.55.753-.832 0 0 .277-.369.867-.714 0 0-.374-.146-.937-.141ZM8.068 8.62s-.519 1.438-.383 2.847c0 0 .069 1.145-.5 1.531 0 0 .048 3.194 1.319 4.941 0 0 1.004 1.448 2.905 1.369 0 0 1.792.073 2.845-1.734 0 0 1.214-1.77 1.21-5.397 0 0 .074-.859-.601-.938 0 0-.799-.05-.799.863 0 0-.035 3.578-1.401 5.024 0 0-1.209-1.451-1.308-4.864 0 0-.041-2.34-.477-3.63 0 0-.396 1.446-.475 3.451 0 0 .033.366-.285.624 0 0-.209.102-.169.468 0 0 .293 2.979 1.286 4.666 0 0-2.104.136-2.521-4.071 0 0-.004-.615-.345-.999 0 0-.25-.177-.275-.608 0 0-.061-.596.117-2.522 0 0 .042-.422-.143-1.021Zm15.161 2.617c-.217-.011-.66.026-.734.503-.099.634-.08 3.845-1.503 5.494 0 0-.138.208-.517.37-.315.195-.565.551-.752.833 0 0-.278.369-.867.713 0 0 1.495.588 3.01-.63 0 0 1.8-1.207 2.129-6.299 0 0 .101-.847-.647-.971 0 0-.047-.01-.119-.013Zm-5.571.004c-.137.002-.687.051-.726.711 0 0-.048 3.468-1.331 5.056l-.318-.198s-.555 1.603-1.825 2.46c0 0 1.779.415 3.068-.984 0 0 1.278-1.141 1.655-3.973 0 0 .158-1.522.185-2.263 0 0 .014-.718-.677-.808l-.031-.001Zm2.701.001c-.144-.002-.723.03-.763.643l-.065.987s-.118 2.744-1.231 4.136l-.269-.202s-.38 1.44-1.874 2.464c0 0 1.329.422 2.76-.671 0 0 1.699-1.038 2.096-5.166 0 0 .145-1.019.065-1.535 0 0-.064-.603-.687-.656h-.032Z" }) + ] + } + ); +}); + +exports.default = SiVictronenergy; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.d.ts new file mode 100644 index 000000000..cabb1fc9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0066B2"; +declare const SiVictronenergy: IconType; +export { SiVictronenergy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.mjs new file mode 100644 index 000000000..45f91dd12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVictronenergy.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0066B2"; +const SiVictronenergy = React.forwardRef(function SiVictronenergy2({ title = "Victron Energy", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.183 4.65c-.522.001-1.295.137-2.1.751 0 0-1.7 1.039-2.096 5.166 0 0-.144 1.019-.066 1.535 0 0 .066.603.687.657 0 0 .749.058.797-.644.047-.702.063-.987.063-.987S4.586 8.384 5.7 6.993l.269.202s.38-1.441 1.874-2.465c0 0-.254-.081-.66-.08Zm2.729.023c-.635.001-1.632.167-2.437 1.042 0 0-1.279 1.14-1.656 3.973 0 0-.158 1.522-.185 2.262 0 0-.013.718.678.809 0 0 .71.044.757-.711 0 0 .046-3.468 1.329-5.055l.319.198s.555-1.603 1.826-2.461c0 0-.25-.058-.631-.057Zm2.854.016c-.057-.001-.116 0-.175.003 0 0-1.792-.073-2.844 1.733 0 0-1.216 1.771-1.211 5.397 0 0-.074.86.601.938 0 0 .798.05.798-.862 0 0 .036-3.578 1.401-5.025 0 0 1.209 1.452 1.308 4.866 0 0 .042 2.34.479 3.63 0 0 .395-1.448.475-3.452 0 0-.034-.366.284-.624 0 0 .209-.102.168-.468 0 0-.292-2.978-1.284-4.666 0 0 2.103-.136 2.52 4.071 0 0 .004.615.345.999 0 0 .25.177.275.609 0 0 .061.595-.118 2.521 0 0-.042.422.144 1.021 0 0 .52-1.438.382-2.848 0 0-.068-1.144.501-1.53 0 0-.048-3.193-1.318-4.941 0 0-.944-1.359-2.731-1.372Zm-8.559.019c-.563.005-1.316.162-2.073.771 0 0-1.8 1.208-2.13 6.299 0 0-.1.847.648.972 0 0 .753.145.853-.489.099-.636.08-3.847 1.503-5.495 0 0 .138-.208.516-.371.317-.194.567-.55.753-.832 0 0 .277-.369.867-.714 0 0-.374-.146-.937-.141ZM8.068 8.62s-.519 1.438-.383 2.847c0 0 .069 1.145-.5 1.531 0 0 .048 3.194 1.319 4.941 0 0 1.004 1.448 2.905 1.369 0 0 1.792.073 2.845-1.734 0 0 1.214-1.77 1.21-5.397 0 0 .074-.859-.601-.938 0 0-.799-.05-.799.863 0 0-.035 3.578-1.401 5.024 0 0-1.209-1.451-1.308-4.864 0 0-.041-2.34-.477-3.63 0 0-.396 1.446-.475 3.451 0 0 .033.366-.285.624 0 0-.209.102-.169.468 0 0 .293 2.979 1.286 4.666 0 0-2.104.136-2.521-4.071 0 0-.004-.615-.345-.999 0 0-.25-.177-.275-.608 0 0-.061-.596.117-2.522 0 0 .042-.422-.143-1.021Zm15.161 2.617c-.217-.011-.66.026-.734.503-.099.634-.08 3.845-1.503 5.494 0 0-.138.208-.517.37-.315.195-.565.551-.752.833 0 0-.278.369-.867.713 0 0 1.495.588 3.01-.63 0 0 1.8-1.207 2.129-6.299 0 0 .101-.847-.647-.971 0 0-.047-.01-.119-.013Zm-5.571.004c-.137.002-.687.051-.726.711 0 0-.048 3.468-1.331 5.056l-.318-.198s-.555 1.603-1.825 2.46c0 0 1.779.415 3.068-.984 0 0 1.278-1.141 1.655-3.973 0 0 .158-1.522.185-2.263 0 0 .014-.718-.677-.808l-.031-.001Zm2.701.001c-.144-.002-.723.03-.763.643l-.065.987s-.118 2.744-1.231 4.136l-.269-.202s-.38 1.44-1.874 2.464c0 0 1.329.422 2.76-.671 0 0 1.699-1.038 2.096-5.166 0 0 .145-1.019.065-1.535 0 0-.064-.603-.687-.656h-.032Z" }) + ] + } + ); +}); + +export { SiVictronenergy as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.cjs new file mode 100644 index 000000000..9e638a5e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#196AFF"; +const SiVikunja = React__namespace.forwardRef(function SiVikunja2({ title = "Vikunja", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .253a11.92 11.92 0 0 0-8.485 3.516A11.91 11.91 0 0 0 0 12.2541a11.922 11.922 0 0 0 3.515 8.4862 11.92 11.92 0 0 0 4.628 2.884c.1101-1.1427.3843-2.327.357-3.4952-.0338-1.655.5087-3.5564-.1388-5.0914-.215-.5074-.495-1.0112-.675-1.5062a5.66 5.66 0 0 1-.3224-1.2025c-.0288-.2287-.0513-1.1737-.03-1.4125.09-1.0175.2087-2.1724.2087-2.1724S7.2722 8.049 7.6632 7.2c-.0643-.055-.0886-.1914-.1057-.2522-.0662-.2275-.09-.4674-.1038-.7024-.0888-1.4412-.1111-4.2074 1.8926-4.8324.935-.2925.69.4475.6674 1.0725-.0212.9087-.0761 1.826-.0761 2.7535 0 .066.0157.1329.0207.1963.8099-.2266 1.6332-.2538 2.203-.2538.6795 0 1.7288.0387 2.6841.4084.1963-.7248.2844-2.9959.3084-3.5944.02-.4743.1576-.6601.3477-.67.4503-.0235 1.1948.9395 1.367 1.3912.6287 1.651.374 2.9068-.2914 4.2767.5432.9409.2278 1.752.2278 1.752s.2163 2.2436.1838 2.9499c-.0912 2.0112-.8287 2.41-1.275 3.7125-.5162 1.5075-.1325 3.1763 0 4.75.046.5189.3398 1.8736.594 3.3037a11.92 11.92 0 0 0 4.1773-2.7212A11.92 11.92 0 0 0 24 12.2541c0-2.74-.9863-5.465-2.73-7.6125v-.0011a12 12 0 0 0-.6251-.7127C18.3886 1.5591 15.3174.253 11.9999.253m4.0067 2.573c-.0266.0006-.046.0177-.0555.0557-.025.1062-.04.8886-.1038 1.2636-.08.4638-.225.9226-.225 1.3951-.0025 1.0563.3163 1.1.4413 1.34v.0011c.1287.2275.4624-1.0037.5674-1.54.1-.5037.2252-1.1723.0502-1.6735-.0795-.231-.5118-.8452-.6746-.842m-6.941.104c-.0141 0-.0298.0071-.047.023C7.7675 4.0941 8.13 6.0165 8.25 7.094v-.0013c.0325.2938.47-.0638.6988-.7438.115-.3424.2112-.3074.3312-.8699.045-.2063-.05-.4425-.0588-.8938-.005-.2387.0276-.9199-.005-1.1574-.0196-.151-.0508-.498-.1504-.4979m1.0094 4.8914c-.0341-.001-.0692.0118-.099.044-.1687.185-.2823.6087.0827.7.1937.0462.4724.0437.7099-.01-.1.3187-.12.61.29.8137.2763.1387.6562.1376.8174-.075.34.1813.8713.3587.945-.0975.0263-.1625-.255-.2312-.2812-.0687-.0412.2525-.5137-.0414-.6312-.1214-.1037-.0687-.2374-.0261-.25.0914-.0174.1587-.2313.1124-.3288.0924-.185-.0375-.3425-.1525-.3462-.325-.005-.17.1024-.3462.1574-.505.0363-.1-.1087-.2125-.215-.1437-.19.1212-1.1087.2313-.7424-.17.0871-.0956-.0063-.2222-.1086-.2252m.055 2.31c-.3473-.0082-.4943.4326-.6315.7877-.0425.0975-.0974.2562.0114.2274.225-.06.4574-.6425.625-.605.2637.0613.3762.5202.5174.5752.2588.1-.1474-.9127-.4499-.9777a.44.44 0 0 0-.0723-.0077m4.3011 0c-.3483-.0082-.4942.4326-.6313.7877h-.0011c-.0425.0975-.0963.2562.0124.2274.225-.06.4562-.6425.625-.605.2637.0613.375.5202.5162.5752.26.1-.1462-.9127-.4487-.9777a.45.45 0 0 0-.0725-.0077m-1.985 1.4427c-.5988-.015-1.0299.1675-1.3411.49-.4688.4875-.5926.775-.5939 1.6987 0 .4987.5375 1.6013.6962 1.8563.2663.45.7575.6111 1.2387.5774.4825.0337.9738-.1286 1.2388-.5774.16-.255.6888-1.3375.6876-1.9237h.0013c-.0012-.9225-.1164-1.295-.6301-1.7463-.3225-.2825-.6988-.39-1.2975-.375m.7963 1.3487c.0887.035-.0125.1037-.0487.1474a1.7 1.7 0 0 0-.0976.1352c-.0488.0712-.3663.4962-.405.5337a1.5 1.5 0 0 1-.0885.08c.0205.0764-.0106.169-.019.2438a4 4 0 0 0-.02.5586c.0058.1488.0623.3287.0482.4789.2619-.0188.528-.055.7842-.0927.2275-.0337.5063-.075.6588-.2424.0125.5625-1.1574.7388-1.6111.75-.5262.0125-1.1187-.2149-1.4874-.541l-.0015-.0003h.0013l.0002.0002c.4353.0377.8707.129 1.3086.1373-.0141-.079-.0092-.1686-.0139-.2199a4.42 4.42 0 0 1 .0339-1.0913q0-.0008.0002-.0015c-.0838-.1044-.163-.2112-.2478-.3148-.0862-.1025-.1812-.2024-.2962-.28-.0638-.04-.2-.0862-.05-.1287.2525-.0712.5575.0512.7588.185.2212-.16.4962-.325.7925-.3375m1.4319 3.7223c-.0938.0033-.1865.0673-.1619.1714.03.125.0349.55-.2001.3175-.0938-.0938-.2824-.0375-.2899.0875-.0175.2925-.3113.3-.5638.2113-.2-.07-.3074.2076-.1074.2763.3712.13.7749.0574.9336-.2226.1263.0587.2688.075.3838-.0324.2-.1875.23-.4525.1712-.6962-.0191-.081-.0926-.1154-.1655-.1128m-4.9793 1.4198c-.054-.0005-.1093.019-.1476.0667-.3625.4512.6124 1.2924 1.17 1.065.025.1124.0499.225.0999.3324.0925.2113.2988.3476.5125.4626.2888.155.8525-.1189.9375-.3789.0613-.1812-.265-.2462-.325-.065-.0275.0813-.2325.1425-.31.1663-.1862.0612-.3513-.0863-.455-.21-.145-.1713-.141-.445-.2023-.645-.0363-.1212-.2439-.1375-.3064-.025-.2075.3725-1.0137-.33-.8262-.565.0851-.1056-.0284-.203-.1474-.2041m5.5316 4.7863a.132.132 0 0 0-.1218.0778c-.0875.1788-.2474.1675-.4199.0925-.1262-.055-.2825.035-.245.1626.0775.2575-.2464.3324-.4664.2411-.1925-.0812-.36.1726-.165.2538.395.165.8964.02.9689-.3276.255.0413.4974-.0299.6174-.2787.0576-.1168-.061-.223-.1682-.2215" }) + ] + } + ); +}); + +exports.default = SiVikunja; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.d.ts new file mode 100644 index 000000000..b066451bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#196AFF"; +declare const SiVikunja: IconType; +export { SiVikunja as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.mjs new file mode 100644 index 000000000..29402f78d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVikunja.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#196AFF"; +const SiVikunja = React.forwardRef(function SiVikunja2({ title = "Vikunja", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .253a11.92 11.92 0 0 0-8.485 3.516A11.91 11.91 0 0 0 0 12.2541a11.922 11.922 0 0 0 3.515 8.4862 11.92 11.92 0 0 0 4.628 2.884c.1101-1.1427.3843-2.327.357-3.4952-.0338-1.655.5087-3.5564-.1388-5.0914-.215-.5074-.495-1.0112-.675-1.5062a5.66 5.66 0 0 1-.3224-1.2025c-.0288-.2287-.0513-1.1737-.03-1.4125.09-1.0175.2087-2.1724.2087-2.1724S7.2722 8.049 7.6632 7.2c-.0643-.055-.0886-.1914-.1057-.2522-.0662-.2275-.09-.4674-.1038-.7024-.0888-1.4412-.1111-4.2074 1.8926-4.8324.935-.2925.69.4475.6674 1.0725-.0212.9087-.0761 1.826-.0761 2.7535 0 .066.0157.1329.0207.1963.8099-.2266 1.6332-.2538 2.203-.2538.6795 0 1.7288.0387 2.6841.4084.1963-.7248.2844-2.9959.3084-3.5944.02-.4743.1576-.6601.3477-.67.4503-.0235 1.1948.9395 1.367 1.3912.6287 1.651.374 2.9068-.2914 4.2767.5432.9409.2278 1.752.2278 1.752s.2163 2.2436.1838 2.9499c-.0912 2.0112-.8287 2.41-1.275 3.7125-.5162 1.5075-.1325 3.1763 0 4.75.046.5189.3398 1.8736.594 3.3037a11.92 11.92 0 0 0 4.1773-2.7212A11.92 11.92 0 0 0 24 12.2541c0-2.74-.9863-5.465-2.73-7.6125v-.0011a12 12 0 0 0-.6251-.7127C18.3886 1.5591 15.3174.253 11.9999.253m4.0067 2.573c-.0266.0006-.046.0177-.0555.0557-.025.1062-.04.8886-.1038 1.2636-.08.4638-.225.9226-.225 1.3951-.0025 1.0563.3163 1.1.4413 1.34v.0011c.1287.2275.4624-1.0037.5674-1.54.1-.5037.2252-1.1723.0502-1.6735-.0795-.231-.5118-.8452-.6746-.842m-6.941.104c-.0141 0-.0298.0071-.047.023C7.7675 4.0941 8.13 6.0165 8.25 7.094v-.0013c.0325.2938.47-.0638.6988-.7438.115-.3424.2112-.3074.3312-.8699.045-.2063-.05-.4425-.0588-.8938-.005-.2387.0276-.9199-.005-1.1574-.0196-.151-.0508-.498-.1504-.4979m1.0094 4.8914c-.0341-.001-.0692.0118-.099.044-.1687.185-.2823.6087.0827.7.1937.0462.4724.0437.7099-.01-.1.3187-.12.61.29.8137.2763.1387.6562.1376.8174-.075.34.1813.8713.3587.945-.0975.0263-.1625-.255-.2312-.2812-.0687-.0412.2525-.5137-.0414-.6312-.1214-.1037-.0687-.2374-.0261-.25.0914-.0174.1587-.2313.1124-.3288.0924-.185-.0375-.3425-.1525-.3462-.325-.005-.17.1024-.3462.1574-.505.0363-.1-.1087-.2125-.215-.1437-.19.1212-1.1087.2313-.7424-.17.0871-.0956-.0063-.2222-.1086-.2252m.055 2.31c-.3473-.0082-.4943.4326-.6315.7877-.0425.0975-.0974.2562.0114.2274.225-.06.4574-.6425.625-.605.2637.0613.3762.5202.5174.5752.2588.1-.1474-.9127-.4499-.9777a.44.44 0 0 0-.0723-.0077m4.3011 0c-.3483-.0082-.4942.4326-.6313.7877h-.0011c-.0425.0975-.0963.2562.0124.2274.225-.06.4562-.6425.625-.605.2637.0613.375.5202.5162.5752.26.1-.1462-.9127-.4487-.9777a.45.45 0 0 0-.0725-.0077m-1.985 1.4427c-.5988-.015-1.0299.1675-1.3411.49-.4688.4875-.5926.775-.5939 1.6987 0 .4987.5375 1.6013.6962 1.8563.2663.45.7575.6111 1.2387.5774.4825.0337.9738-.1286 1.2388-.5774.16-.255.6888-1.3375.6876-1.9237h.0013c-.0012-.9225-.1164-1.295-.6301-1.7463-.3225-.2825-.6988-.39-1.2975-.375m.7963 1.3487c.0887.035-.0125.1037-.0487.1474a1.7 1.7 0 0 0-.0976.1352c-.0488.0712-.3663.4962-.405.5337a1.5 1.5 0 0 1-.0885.08c.0205.0764-.0106.169-.019.2438a4 4 0 0 0-.02.5586c.0058.1488.0623.3287.0482.4789.2619-.0188.528-.055.7842-.0927.2275-.0337.5063-.075.6588-.2424.0125.5625-1.1574.7388-1.6111.75-.5262.0125-1.1187-.2149-1.4874-.541l-.0015-.0003h.0013l.0002.0002c.4353.0377.8707.129 1.3086.1373-.0141-.079-.0092-.1686-.0139-.2199a4.42 4.42 0 0 1 .0339-1.0913q0-.0008.0002-.0015c-.0838-.1044-.163-.2112-.2478-.3148-.0862-.1025-.1812-.2024-.2962-.28-.0638-.04-.2-.0862-.05-.1287.2525-.0712.5575.0512.7588.185.2212-.16.4962-.325.7925-.3375m1.4319 3.7223c-.0938.0033-.1865.0673-.1619.1714.03.125.0349.55-.2001.3175-.0938-.0938-.2824-.0375-.2899.0875-.0175.2925-.3113.3-.5638.2113-.2-.07-.3074.2076-.1074.2763.3712.13.7749.0574.9336-.2226.1263.0587.2688.075.3838-.0324.2-.1875.23-.4525.1712-.6962-.0191-.081-.0926-.1154-.1655-.1128m-4.9793 1.4198c-.054-.0005-.1093.019-.1476.0667-.3625.4512.6124 1.2924 1.17 1.065.025.1124.0499.225.0999.3324.0925.2113.2988.3476.5125.4626.2888.155.8525-.1189.9375-.3789.0613-.1812-.265-.2462-.325-.065-.0275.0813-.2325.1425-.31.1663-.1862.0612-.3513-.0863-.455-.21-.145-.1713-.141-.445-.2023-.645-.0363-.1212-.2439-.1375-.3064-.025-.2075.3725-1.0137-.33-.8262-.565.0851-.1056-.0284-.203-.1474-.2041m5.5316 4.7863a.132.132 0 0 0-.1218.0778c-.0875.1788-.2474.1675-.4199.0925-.1262-.055-.2825.035-.245.1626.0775.2575-.2464.3324-.4664.2411-.1925-.0812-.36.1726-.165.2538.395.165.8964.02.9689-.3276.255.0413.4974-.0299.6174-.2787.0576-.1168-.061-.223-.1682-.2215" }) + ] + } + ); +}); + +export { SiVikunja as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVim.cjs new file mode 100644 index 000000000..1fa7081ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#019733"; +const SiVim = React__namespace.forwardRef(function SiVim2({ title = "Vim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 11.986h-.027l-4.318-4.318 4.303-4.414V1.461l-.649-.648h-8.198l-.66.605v1.045L12.015.027V0L12 .014 11.986 0v.027l-1.29 1.291-.538-.539H2.035l-.638.692v1.885l.616.616h.72v5.31L.027 11.987H0L.014 12 0 12.014h.027l2.706 2.706v6.467l.907.523h2.322l1.857-1.904 4.166 4.166V24l.015-.014.014.014v-.028l2.51-2.509h.485c.111 0 .211-.07.25-.179l.146-.426c.028-.084.012-.172-.037-.239l1.462-1.462-.612 1.962c-.043.141.036.289.177.332.025.008.052.012.078.012h1.824c.106-.001.201-.064.243-.163l.165-.394c.025-.065.024-.138-.004-.203-.027-.065-.08-.116-.146-.142-.029-.012-.062-.019-.097-.02h-.075l.84-2.644h1.232l-1.016 3.221c-.043.141.036.289.176.332.025.008.052.012.079.012h2.002c.11 0 .207-.066.248-.17l.164-.428c.051-.138-.021-.29-.158-.341-.029-.011-.06-.017-.091-.017h-.145l1.131-3.673c.027-.082.012-.173-.039-.24l-.375-.504-.003-.005c-.051-.064-.127-.102-.209-.102h-1.436c-.071 0-.141.03-.19.081l-.4.439h-.624l-.042-.046 4.445-4.445H24L23.986 12l.014-.014zM9.838 21.139l1.579-4.509h-.501l.297-.304h1.659l-1.563 4.555h.623l-.079.258H9.838zm3.695-7.516l.15.151-.269.922-.225.226h-.969l-.181-.181.311-.871.288-.247h.895zM5.59 20.829H3.877l-.262-.15V3.091H2.379l-.1-.1V1.815l.143-.154h7.371l.213.214v1.108l-.142.173H8.785v8.688l8.807-8.688h-2.086l-.175-.188V1.805l.121-.111h7.49l.132.133v1.07L12.979 13.25h-.373c-.015-.001-.028 0-.042.001l-.02.003c-.045.01-.086.03-.119.06l-.343.295-.004.003c-.033.031-.059.069-.073.111l-.296.83-6.119 6.276zm14.768-3.952l.474-.519h1.334l.309.415-1.265 4.107h.493l-.08.209H19.84l1.124-3.564h-2.015l-1.077 3.391h.424l-.073.174h-1.605l1.107-3.548h-2.096l-1.062 3.339h.436l-.072.209H13.27l1.514-4.46H14.198l.091-.271h1.65l.519.537h.906l.491-.554h1.061l.489.535h.953z" }) + ] + } + ); +}); + +exports.default = SiVim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVim.d.ts new file mode 100644 index 000000000..41da5543e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#019733"; +declare const SiVim: IconType; +export { SiVim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVim.mjs new file mode 100644 index 000000000..513d7c9ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#019733"; +const SiVim = React.forwardRef(function SiVim2({ title = "Vim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 11.986h-.027l-4.318-4.318 4.303-4.414V1.461l-.649-.648h-8.198l-.66.605v1.045L12.015.027V0L12 .014 11.986 0v.027l-1.29 1.291-.538-.539H2.035l-.638.692v1.885l.616.616h.72v5.31L.027 11.987H0L.014 12 0 12.014h.027l2.706 2.706v6.467l.907.523h2.322l1.857-1.904 4.166 4.166V24l.015-.014.014.014v-.028l2.51-2.509h.485c.111 0 .211-.07.25-.179l.146-.426c.028-.084.012-.172-.037-.239l1.462-1.462-.612 1.962c-.043.141.036.289.177.332.025.008.052.012.078.012h1.824c.106-.001.201-.064.243-.163l.165-.394c.025-.065.024-.138-.004-.203-.027-.065-.08-.116-.146-.142-.029-.012-.062-.019-.097-.02h-.075l.84-2.644h1.232l-1.016 3.221c-.043.141.036.289.176.332.025.008.052.012.079.012h2.002c.11 0 .207-.066.248-.17l.164-.428c.051-.138-.021-.29-.158-.341-.029-.011-.06-.017-.091-.017h-.145l1.131-3.673c.027-.082.012-.173-.039-.24l-.375-.504-.003-.005c-.051-.064-.127-.102-.209-.102h-1.436c-.071 0-.141.03-.19.081l-.4.439h-.624l-.042-.046 4.445-4.445H24L23.986 12l.014-.014zM9.838 21.139l1.579-4.509h-.501l.297-.304h1.659l-1.563 4.555h.623l-.079.258H9.838zm3.695-7.516l.15.151-.269.922-.225.226h-.969l-.181-.181.311-.871.288-.247h.895zM5.59 20.829H3.877l-.262-.15V3.091H2.379l-.1-.1V1.815l.143-.154h7.371l.213.214v1.108l-.142.173H8.785v8.688l8.807-8.688h-2.086l-.175-.188V1.805l.121-.111h7.49l.132.133v1.07L12.979 13.25h-.373c-.015-.001-.028 0-.042.001l-.02.003c-.045.01-.086.03-.119.06l-.343.295-.004.003c-.033.031-.059.069-.073.111l-.296.83-6.119 6.276zm14.768-3.952l.474-.519h1.334l.309.415-1.265 4.107h.493l-.08.209H19.84l1.124-3.564h-2.015l-1.077 3.391h.424l-.073.174h-1.605l1.107-3.548h-2.096l-1.062 3.339h.436l-.072.209H13.27l1.514-4.46H14.198l.091-.271h1.65l.519.537h.906l.491-.554h1.061l.489.535h.953z" }) + ] + } + ); +}); + +export { SiVim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.cjs new file mode 100644 index 000000000..6de61f58e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1AB7EA"; +const SiVimeo = React__namespace.forwardRef(function SiVimeo2({ title = "Vimeo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.9765 6.4168c-.105 2.338-1.739 5.5429-4.894 9.6088-3.2679 4.247-6.0258 6.3699-8.2898 6.3699-1.409 0-2.578-1.294-3.553-3.881l-1.9179-7.1138c-.719-2.584-1.488-3.878-2.312-3.878-.179 0-.806.378-1.8809 1.132l-1.129-1.457a315.06 315.06 0 003.501-3.1279c1.579-1.368 2.765-2.085 3.5539-2.159 1.867-.18 3.016 1.1 3.447 3.838.465 2.953.789 4.789.971 5.5069.5389 2.45 1.1309 3.674 1.7759 3.674.502 0 1.256-.796 2.265-2.385 1.004-1.589 1.54-2.797 1.612-3.628.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.121-1.777.391 1.186-3.8679 3.434-5.7568 6.7619-5.6368 2.4729.06 3.6279 1.664 3.4929 4.7969z" }) + ] + } + ); +}); + +exports.default = SiVimeo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.d.ts new file mode 100644 index 000000000..9b1c4cf70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1AB7EA"; +declare const SiVimeo: IconType; +export { SiVimeo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.mjs new file mode 100644 index 000000000..69a8463a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1AB7EA"; +const SiVimeo = React.forwardRef(function SiVimeo2({ title = "Vimeo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.9765 6.4168c-.105 2.338-1.739 5.5429-4.894 9.6088-3.2679 4.247-6.0258 6.3699-8.2898 6.3699-1.409 0-2.578-1.294-3.553-3.881l-1.9179-7.1138c-.719-2.584-1.488-3.878-2.312-3.878-.179 0-.806.378-1.8809 1.132l-1.129-1.457a315.06 315.06 0 003.501-3.1279c1.579-1.368 2.765-2.085 3.5539-2.159 1.867-.18 3.016 1.1 3.447 3.838.465 2.953.789 4.789.971 5.5069.5389 2.45 1.1309 3.674 1.7759 3.674.502 0 1.256-.796 2.265-2.385 1.004-1.589 1.54-2.797 1.612-3.628.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.121-1.777.391 1.186-3.8679 3.434-5.7568 6.7619-5.6368 2.4729.06 3.6279 1.664 3.4929 4.7969z" }) + ] + } + ); +}); + +export { SiVimeo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.cjs new file mode 100644 index 000000000..17ea1f6f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0A0A20"; +const SiVimeolivestream = React__namespace.forwardRef(function SiVimeolivestream2({ title = "Vimeo Livestream", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.672 10.63c-.11 0-.21.04-.3.116-.09.077-.137.157-.14.24-.007.16.078.24.252.24a.4.4 0 0 0 .293-.125.345.345 0 0 0 .115-.23.233.233 0 0 0-.06-.16.199.199 0 0 0-.16-.08zm9.127.636v1.737c0 .327.22.365.344.365a.494.494 0 0 0 .074-.006v-.181s-.023.003-.05.003c-.077 0-.166-.03-.166-.226v-1.692zm.63 0v.253h.21v-.253zm4.693.182v.431h-.199v.17h.196v.764c0 .5.347.555.519.555a.515.515 0 0 0 .085-.006v-.181s-.026.006-.068.006c-.112 0-.335-.045-.335-.395v-.744h.374v-.17h-.373v-.43zM1.745 11.5c-.283-.01-.475.158-.575.503a.367.367 0 0 1 .15-.035c.105 0 .15.062.138.184-.006.074-.052.182-.137.324-.086.142-.15.213-.193.213-.055 0-.105-.11-.151-.328a8.209 8.209 0 0 1-.083-.492c-.036-.245-.134-.359-.293-.343-.067.007-.168.071-.303.193L0 12l.096.13a.622.622 0 0 1 .16-.101c.07 0 .136.115.197.346l.165.636c.082.23.183.346.302.346.192 0 .427-.19.705-.569.195-.264.321-.487.38-.67.077-.059.124-.09.142-.09.055 0 .082.042.082.126 0 .016-.03.135-.09.356-.059.222-.09.386-.093.492a.374.374 0 0 0 .07.25.26.26 0 0 0 .218.096c.205 0 .41-.093.615-.279l.053-.051a.395.395 0 0 0 .085.177c.088.1.237.146.447.14-.028-.071-.04-.196-.033-.376.01-.2.06-.395.147-.574.088-.183.171-.274.248-.274.089 0 .13.059.124.178-.003.08-.018.172-.045.275a1.36 1.36 0 0 0-.045.308c-.006.164.029.281.105.352.085.08.235.117.448.11a.747.747 0 0 1-.039-.317 1.38 1.38 0 0 1 .19-.608c.11-.199.205-.298.285-.298.073 0 .109.06.105.183a1.83 1.83 0 0 1-.057.337 1.848 1.848 0 0 0-.057.37c-.006.232.09.347.289.347.205 0 .41-.093.614-.279l.01-.01a.568.568 0 0 0 .022.038c.107.174.285.26.533.26.333 0 .662-.097.986-.293l.104-.065a.7.7 0 0 0 .072.122c.125.164.309.246.55.246a.95.95 0 0 0 .73-.323c.195-.215.3-.47.311-.765.01-.218-.038-.396-.142-.534-.11-.151-.272-.226-.486-.226-.333 0-.61.128-.83.384-.205.232-.3.485-.284.76 0 .021.002.04.004.06l-.034.016c-.26.118-.5.177-.72.177-.11 0-.193-.04-.248-.12a1.37 1.37 0 0 0 .739-.361c.183-.173.269-.341.257-.505-.019-.256-.178-.385-.477-.385-.325 0-.606.13-.844.386-.217.235-.328.482-.33.742a.65.65 0 0 0 .006.126c-.052.036-.09.054-.117.054-.058 0-.095-.013-.11-.039-.015-.025-.021-.072-.018-.14 0-.025.019-.123.057-.294a2.25 2.25 0 0 0 .062-.392c.006-.13-.018-.232-.073-.302-.064-.087-.17-.123-.317-.11a.663.663 0 0 0-.353.144c-.067.052-.136.12-.206.207l-.069.063a.488.488 0 0 0-.073-.304c-.065-.086-.172-.123-.321-.11a.797.797 0 0 0-.473.216.875.875 0 0 0-.16.193.472.472 0 0 0-.064-.354c-.05-.075-.114-.11-.193-.103-.046.003-.133.067-.262.192-.177.174-.273.267-.289.28l.11.13c.086-.065.138-.098.156-.098.034 0 .048.029.042.087-.003.083-.017.2-.043.348a3.95 3.95 0 0 0-.033.24l-.005.003c-.11.095-.186.143-.229.143-.098 0-.145-.069-.142-.207.046-.3.089-.549.128-.744a.42.42 0 0 0-.052-.28c-.048-.073-.122-.104-.223-.095-.064.007-.162.071-.293.193l-.137.13c-.01-.227-.108-.344-.297-.35zm13.221.301c-.403 0-.735.294-.735.785 0 .461.335.782.78.782.334 0 .551-.208.551-.208l-.092-.155s-.18.182-.453.182c-.309 0-.57-.208-.578-.592h1.144s.006-.068.006-.104c0-.372-.21-.69-.623-.69zm1.334 0c-.27 0-.51.146-.51.413 0 .488.804.408.804.735 0 .157-.14.238-.3.238a.637.637 0 0 1-.444-.182l-.11.146s.19.217.552.217c.299 0 .51-.175.51-.42 0-.493-.804-.403-.804-.734 0-.166.145-.232.297-.232.246 0 .373.137.373.137l.092-.154s-.146-.164-.46-.164zm3.2 0c-.403 0-.735.294-.735.785 0 .461.335.782.78.782.334 0 .55-.208.55-.208l-.091-.155s-.181.182-.454.182c-.308 0-.569-.208-.578-.592h1.144s.006-.068.006-.104c0-.372-.21-.69-.622-.69zm1.414 0c-.335 0-.53.17-.53.17l.094.154s.175-.143.421-.143c.214 0 .37.099.37.387v.039h-.082c-.258 0-.913.012-.913.517 0 .297.258.443.507.443.373 0 .498-.324.498-.324h.006s-.006.05-.006.125v.164h.192v-.958c0-.375-.198-.574-.557-.574zm1.575.023a.61.61 0 0 0-.54.378h-.006s.006-.053.006-.119v-.223h-.199v1.495h.202v-.707c0-.067.006-.134.02-.2.063-.228.247-.44.49-.44.281 0 .314.22.314.447v.9h.201v-.707c0-.08.006-.152.027-.217.057-.22.243-.422.471-.422.273 0 .323.202.323.446v.9H24v-.95c0-.37-.133-.58-.495-.58a.606.606 0 0 0-.548.374h-.006c-.045-.247-.187-.375-.462-.375zm-3.876.021c-.234 0-.4.172-.471.398h-.006s.006-.053.006-.118v-.265h-.199v1.495h.202v-.63a.99.99 0 0 1 .041-.291c.066-.22.223-.387.433-.387.039 0 .074.006.074.006v-.199s-.038-.009-.08-.009zm-6.179.015v1.495h.202V11.86zm.371 0l.572 1.495h.22l.569-1.495h-.211l-.412 1.097c-.03.077-.053.179-.053.179h-.006s-.024-.104-.05-.179l-.416-1.097zm-4.338.052c.048 0 .086.036.112.108a.638.638 0 0 1 .034.24.947.947 0 0 1-.133.444c-.098.17-.215.256-.353.256-.061 0-.109-.036-.142-.106a.432.432 0 0 1-.041-.213.967.967 0 0 1 .137-.464c.101-.177.23-.265.386-.265zm-1.722.056c.07 0 .103.043.1.13-.003.064-.049.147-.137.249-.108.117-.24.207-.39.264a.693.693 0 0 1 .146-.444c.096-.133.189-.199.28-.199zm8.215.003c.223 0 .412.145.424.457h-.936c.047-.3.263-.457.512-.457zm4.534 0c.222 0 .412.145.424.457h-.937c.048-.3.264-.457.513-.457zm-9.031.26c-.149 0-.223.111-.223.223 0 .111.074.222.223.222.148 0 .222-.111.222-.222 0-.112-.074-.223-.222-.223zm10.72.343h.087v.066c0 .258-.172.555-.457.555-.222 0-.332-.142-.332-.282 0-.33.469-.339.703-.339z" }) + ] + } + ); +}); + +exports.default = SiVimeolivestream; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.d.ts new file mode 100644 index 000000000..466c4d491 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0A0A20"; +declare const SiVimeolivestream: IconType; +export { SiVimeolivestream as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.mjs new file mode 100644 index 000000000..b63343fc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVimeolivestream.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0A0A20"; +const SiVimeolivestream = React.forwardRef(function SiVimeolivestream2({ title = "Vimeo Livestream", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.672 10.63c-.11 0-.21.04-.3.116-.09.077-.137.157-.14.24-.007.16.078.24.252.24a.4.4 0 0 0 .293-.125.345.345 0 0 0 .115-.23.233.233 0 0 0-.06-.16.199.199 0 0 0-.16-.08zm9.127.636v1.737c0 .327.22.365.344.365a.494.494 0 0 0 .074-.006v-.181s-.023.003-.05.003c-.077 0-.166-.03-.166-.226v-1.692zm.63 0v.253h.21v-.253zm4.693.182v.431h-.199v.17h.196v.764c0 .5.347.555.519.555a.515.515 0 0 0 .085-.006v-.181s-.026.006-.068.006c-.112 0-.335-.045-.335-.395v-.744h.374v-.17h-.373v-.43zM1.745 11.5c-.283-.01-.475.158-.575.503a.367.367 0 0 1 .15-.035c.105 0 .15.062.138.184-.006.074-.052.182-.137.324-.086.142-.15.213-.193.213-.055 0-.105-.11-.151-.328a8.209 8.209 0 0 1-.083-.492c-.036-.245-.134-.359-.293-.343-.067.007-.168.071-.303.193L0 12l.096.13a.622.622 0 0 1 .16-.101c.07 0 .136.115.197.346l.165.636c.082.23.183.346.302.346.192 0 .427-.19.705-.569.195-.264.321-.487.38-.67.077-.059.124-.09.142-.09.055 0 .082.042.082.126 0 .016-.03.135-.09.356-.059.222-.09.386-.093.492a.374.374 0 0 0 .07.25.26.26 0 0 0 .218.096c.205 0 .41-.093.615-.279l.053-.051a.395.395 0 0 0 .085.177c.088.1.237.146.447.14-.028-.071-.04-.196-.033-.376.01-.2.06-.395.147-.574.088-.183.171-.274.248-.274.089 0 .13.059.124.178-.003.08-.018.172-.045.275a1.36 1.36 0 0 0-.045.308c-.006.164.029.281.105.352.085.08.235.117.448.11a.747.747 0 0 1-.039-.317 1.38 1.38 0 0 1 .19-.608c.11-.199.205-.298.285-.298.073 0 .109.06.105.183a1.83 1.83 0 0 1-.057.337 1.848 1.848 0 0 0-.057.37c-.006.232.09.347.289.347.205 0 .41-.093.614-.279l.01-.01a.568.568 0 0 0 .022.038c.107.174.285.26.533.26.333 0 .662-.097.986-.293l.104-.065a.7.7 0 0 0 .072.122c.125.164.309.246.55.246a.95.95 0 0 0 .73-.323c.195-.215.3-.47.311-.765.01-.218-.038-.396-.142-.534-.11-.151-.272-.226-.486-.226-.333 0-.61.128-.83.384-.205.232-.3.485-.284.76 0 .021.002.04.004.06l-.034.016c-.26.118-.5.177-.72.177-.11 0-.193-.04-.248-.12a1.37 1.37 0 0 0 .739-.361c.183-.173.269-.341.257-.505-.019-.256-.178-.385-.477-.385-.325 0-.606.13-.844.386-.217.235-.328.482-.33.742a.65.65 0 0 0 .006.126c-.052.036-.09.054-.117.054-.058 0-.095-.013-.11-.039-.015-.025-.021-.072-.018-.14 0-.025.019-.123.057-.294a2.25 2.25 0 0 0 .062-.392c.006-.13-.018-.232-.073-.302-.064-.087-.17-.123-.317-.11a.663.663 0 0 0-.353.144c-.067.052-.136.12-.206.207l-.069.063a.488.488 0 0 0-.073-.304c-.065-.086-.172-.123-.321-.11a.797.797 0 0 0-.473.216.875.875 0 0 0-.16.193.472.472 0 0 0-.064-.354c-.05-.075-.114-.11-.193-.103-.046.003-.133.067-.262.192-.177.174-.273.267-.289.28l.11.13c.086-.065.138-.098.156-.098.034 0 .048.029.042.087-.003.083-.017.2-.043.348a3.95 3.95 0 0 0-.033.24l-.005.003c-.11.095-.186.143-.229.143-.098 0-.145-.069-.142-.207.046-.3.089-.549.128-.744a.42.42 0 0 0-.052-.28c-.048-.073-.122-.104-.223-.095-.064.007-.162.071-.293.193l-.137.13c-.01-.227-.108-.344-.297-.35zm13.221.301c-.403 0-.735.294-.735.785 0 .461.335.782.78.782.334 0 .551-.208.551-.208l-.092-.155s-.18.182-.453.182c-.309 0-.57-.208-.578-.592h1.144s.006-.068.006-.104c0-.372-.21-.69-.623-.69zm1.334 0c-.27 0-.51.146-.51.413 0 .488.804.408.804.735 0 .157-.14.238-.3.238a.637.637 0 0 1-.444-.182l-.11.146s.19.217.552.217c.299 0 .51-.175.51-.42 0-.493-.804-.403-.804-.734 0-.166.145-.232.297-.232.246 0 .373.137.373.137l.092-.154s-.146-.164-.46-.164zm3.2 0c-.403 0-.735.294-.735.785 0 .461.335.782.78.782.334 0 .55-.208.55-.208l-.091-.155s-.181.182-.454.182c-.308 0-.569-.208-.578-.592h1.144s.006-.068.006-.104c0-.372-.21-.69-.622-.69zm1.414 0c-.335 0-.53.17-.53.17l.094.154s.175-.143.421-.143c.214 0 .37.099.37.387v.039h-.082c-.258 0-.913.012-.913.517 0 .297.258.443.507.443.373 0 .498-.324.498-.324h.006s-.006.05-.006.125v.164h.192v-.958c0-.375-.198-.574-.557-.574zm1.575.023a.61.61 0 0 0-.54.378h-.006s.006-.053.006-.119v-.223h-.199v1.495h.202v-.707c0-.067.006-.134.02-.2.063-.228.247-.44.49-.44.281 0 .314.22.314.447v.9h.201v-.707c0-.08.006-.152.027-.217.057-.22.243-.422.471-.422.273 0 .323.202.323.446v.9H24v-.95c0-.37-.133-.58-.495-.58a.606.606 0 0 0-.548.374h-.006c-.045-.247-.187-.375-.462-.375zm-3.876.021c-.234 0-.4.172-.471.398h-.006s.006-.053.006-.118v-.265h-.199v1.495h.202v-.63a.99.99 0 0 1 .041-.291c.066-.22.223-.387.433-.387.039 0 .074.006.074.006v-.199s-.038-.009-.08-.009zm-6.179.015v1.495h.202V11.86zm.371 0l.572 1.495h.22l.569-1.495h-.211l-.412 1.097c-.03.077-.053.179-.053.179h-.006s-.024-.104-.05-.179l-.416-1.097zm-4.338.052c.048 0 .086.036.112.108a.638.638 0 0 1 .034.24.947.947 0 0 1-.133.444c-.098.17-.215.256-.353.256-.061 0-.109-.036-.142-.106a.432.432 0 0 1-.041-.213.967.967 0 0 1 .137-.464c.101-.177.23-.265.386-.265zm-1.722.056c.07 0 .103.043.1.13-.003.064-.049.147-.137.249-.108.117-.24.207-.39.264a.693.693 0 0 1 .146-.444c.096-.133.189-.199.28-.199zm8.215.003c.223 0 .412.145.424.457h-.936c.047-.3.263-.457.512-.457zm4.534 0c.222 0 .412.145.424.457h-.937c.048-.3.264-.457.513-.457zm-9.031.26c-.149 0-.223.111-.223.223 0 .111.074.222.223.222.148 0 .222-.111.222-.222 0-.112-.074-.223-.222-.223zm10.72.343h.087v.066c0 .258-.172.555-.457.555-.222 0-.332-.142-.332-.282 0-.33.469-.339.703-.339z" }) + ] + } + ); +}); + +export { SiVimeolivestream as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.cjs new file mode 100644 index 000000000..3513af4c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007782"; +const SiVinted = React__namespace.forwardRef(function SiVinted2({ title = "Vinted", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.316 0c-.258 0-.571.217-1.415.953-.3.108-.627.027-1.008.613-2.15 3.09-3.825 14.648-5.255 17.984-.286-1.444-.885-10.837-1.116-13.41-.028-.477.027-1.076.027-1.43 0-2.368-.516-3.567-2.886-3.567-1.198 0-2.382.436-3.008 1.226-.299.408-.409.708-.409 1.443 0 4.915 1.171 12.973 2.478 18.228C7.132 23.688 8.603 24 9.99 24c.654 0 1.307-.081 2.233-.544 3.212-1.567 4.07-5.84 4.9-9.993.15-.749.899-4.37 1.253-6.275.476-2.6 1.02-5.54 1.347-6.617C19.833.245 19.63 0 19.317 0z" }) + ] + } + ); +}); + +exports.default = SiVinted; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.d.ts new file mode 100644 index 000000000..3023095be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007782"; +declare const SiVinted: IconType; +export { SiVinted as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.mjs new file mode 100644 index 000000000..5f3303551 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVinted.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007782"; +const SiVinted = React.forwardRef(function SiVinted2({ title = "Vinted", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.316 0c-.258 0-.571.217-1.415.953-.3.108-.627.027-1.008.613-2.15 3.09-3.825 14.648-5.255 17.984-.286-1.444-.885-10.837-1.116-13.41-.028-.477.027-1.076.027-1.43 0-2.368-.516-3.567-2.886-3.567-1.198 0-2.382.436-3.008 1.226-.299.408-.409.708-.409 1.443 0 4.915 1.171 12.973 2.478 18.228C7.132 23.688 8.603 24 9.99 24c.654 0 1.307-.081 2.233-.544 3.212-1.567 4.07-5.84 4.9-9.993.15-.749.899-4.37 1.253-6.275.476-2.6 1.02-5.54 1.347-6.617C19.833.245 19.63 0 19.317 0z" }) + ] + } + ); +}); + +export { SiVinted as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.cjs new file mode 100644 index 000000000..59face84a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E10A0A"; +const SiVirgin = React__namespace.forwardRef(function SiVirgin2({ title = "Virgin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.951 9.821.008-.004c.044-.06.105-.114.13-.18.04-.11.066-.228-.005-.34-.016-.026-.024-.056-.036-.084-.035-.09-.08-.118-.204-.116a.56.56 0 0 0-.281.086 3.11 3.11 0 0 0-.298.211c-.05.04-.09.092-.135.137-.06.06-.074.14-.11.21a.46.46 0 0 0-.053.222c.002.094.041.18.113.23.08.054.184.092.29.042a1.84 1.84 0 0 0 .216-.116c.133-.086.282-.156.365-.298M24 9.423c-.008-.01-.02-.02-.023-.033a.635.635 0 0 0-.173-.28.3.3 0 0 0-.123-.06c-.039-.01-.082.002-.122-.007a.986.986 0 0 0-.688.098c-.217.113-.43.233-.65.341a5.64 5.64 0 0 1-.448.192c-.106.042-.167.02-.234-.06-.009-.012-.02-.025-.032-.028-.05-.012-.05-.055-.063-.09-.005-.015-.01-.04-.017-.042-.068-.011-.046-.038-.016-.07.01-.01.015-.023.025-.038-.034-.032-.09-.05-.064-.11.002-.004-.008-.016-.015-.019-.044-.019-.024-.052-.021-.082.005-.057.006-.064.032-.088l-.052-.05.053-.094c-.046-.01-.063-.038-.036-.066.032-.031.027-.06.022-.096-.002-.016-.005-.037.003-.05.02-.03.016-.058.006-.09-.006-.02.006-.044.01-.07-.047-.019-.061-.054-.042-.104.005-.012.009-.03.004-.04-.025-.047.002-.081.019-.1-.013-.05-.03-.084-.03-.119a9.858 9.858 0 0 1 .002-.412c0-.022.02-.043.031-.066-.03-.053-.03-.053.014-.096-.014-.03-.032-.057-.037-.085-.008-.053.051-.034.07-.054-.008-.05-.02-.095-.022-.14 0-.041-.007-.082.01-.125.014-.038.002-.085.002-.131l-.046.004-.007-.149c-.002-.054.008-.1.066-.102v-.127c-.021-.032-.045-.061-.062-.094-.022-.043.013-.073.041-.107-.057-.027-.067-.073-.08-.123-.016-.063-.03-.142-.075-.18-.042-.036-.077-.085-.131-.109l-.033-.013c-.22-.099-.437-.061-.647.024-.114.046-.218.117-.326.178a.343.343 0 0 0-.07.052c-.078.075-.154.152-.23.228a1.096 1.096 0 0 0-.08.095.747.747 0 0 1-.338.244.362.362 0 0 1-.275-.01c-.066-.029-.117-.039-.179 0a.165.165 0 0 1-.093.018c-.273-.036-.497.075-.682.252a.927.927 0 0 0-.263.547c-.015.107-.015.217-.02.325-.01.179-.017.357-.026.536l-.036.682c-.007.138-.009.276-.016.413-.016.32-.035.64-.05.961a.932.932 0 0 0 .007.182c.023.16.08.25.22.279a.52.52 0 0 0 .331-.028c.088-.041.18-.077.26-.13.099-.066.219-.12.235-.26 0-.003.003-.005.004-.008.04-.07.08-.14.115-.213a.12.12 0 0 0 .013-.072c-.007-.032-.048-.055-.007-.099.019-.02 0-.07.007-.106.007-.039.022-.076.034-.118l-.061-.049.032-.03c-.068-.063-.013-.116.022-.17-.019-.021-.062-.004-.057-.05.012-.12-.027-.244.034-.36.002-.004.005-.013.003-.015-.047-.054-.004-.1.008-.153.03.038.048.006.067-.002l-.011-.068c-.01-.052.002-.11-.054-.148-.013-.008-.016-.051-.006-.07a.36.36 0 0 1 .074-.096c.03-.029.035-.057.02-.094a.758.758 0 0 1-.036-.106c-.005-.024-.011-.057 0-.075.012-.018.044-.022.066-.032v-.115l-.04-.026.026-.057c.055.009.055.009.044-.042-.001-.008-.004-.02 0-.024.045-.053.025-.117.033-.176.002-.017 0-.038.01-.049.049-.058.05-.128.056-.188.038-.034.09-.058.1-.093.022-.077.078-.12.134-.164a.213.213 0 0 0 .066-.078.387.387 0 0 1 .102-.137c.068-.054.148-.093.22-.143.11-.076.227-.039.342-.026.023.003.047.025.064.045.066.075.106.164.03.304a.358.358 0 0 0-.01.344c.102.188.009.359.026.538-.04.054-.02.109-.002.164a.066.066 0 0 1 0 .041.495.495 0 0 0-.015.327c.006.018.002.04 0 .061-.01.156-.039.31-.035.467.002.13 0 .258.005.387a.448.448 0 0 0 .118.286c.04.045.095.077.145.111.044.03.049.047.01.08a.368.368 0 0 1-.051.035c-.066.04-.132.079-.199.116l-.696.39-.996.558c-.196.11-.392.219-.586.33-.224.13-.446.264-.671.393-.031.018-.071.022-.106.034-.016.005-.034.01-.046.021a.766.766 0 0 1-.221.14c-.07.033-.14.064-.206.103-.12.073-.238.152-.357.227l-.557.343c-.236.145-.474.288-.709.435-.13.081-.255.169-.384.253-.023.015-.05.024-.082.04-.005-.033-.011-.053-.011-.072a5.868 5.868 0 0 1 0-.227 2.493 2.493 0 0 1 .01-.19c.007-.078.028-.152.013-.233-.013-.07.006-.144.01-.216.005-.051.024-.107.01-.154a.52.52 0 0 1-.013-.208 4.242 4.242 0 0 0 .024-.39c0-.046.014-.091.018-.137.008-.088.013-.176.02-.263.02-.201.042-.402.057-.603.016-.201.023-.403.037-.604.008-.115 0-.239.041-.342.044-.11-.008-.218.033-.32-.049-.108.04-.214.004-.321-.002-.005.013-.013.014-.02a.134.134 0 0 0 0-.045c-.003-.02-.014-.039-.014-.058 0-.059-.002-.119.005-.177a.354.354 0 0 0-.09-.284.361.361 0 0 0-.232-.114.701.701 0 0 0-.39.052c-.174.08-.304.197-.34.387a3.91 3.91 0 0 0-.05.427c-.017.22-.027.439-.042.658-.01.143-.025.286-.038.429-.007.08.005.163-.047.234a.025.025 0 0 0-.003.022c.034.078.01.158.005.235-.007.152-.036.303-.049.454-.022.254-.062.505-.103.756-.028.176-.08.34-.213.474a.785.785 0 0 1-.503.25.244.244 0 0 1-.252-.131.654.654 0 0 1-.082-.239c-.015-.156-.04-.314.003-.471.005-.02 0-.04 0-.061.002-.047.001-.094.005-.14a3.877 3.877 0 0 1 .026-.21c.005-.033.008-.07.024-.1.028-.056.024-.104-.002-.16a.218.218 0 0 1-.019-.126c.014-.085.019-.171.051-.254.032-.084.046-.175.072-.262a.248.248 0 0 1 .048-.103c.04-.042.047-.092.061-.142a.498.498 0 0 1 .044-.113c.03-.051.063-.104.086-.155.024-.052.04-.1.089-.134a.12.12 0 0 0 .036-.058.27.27 0 0 1 .102-.13c.029-.02.067-.038.081-.066.05-.095.123-.177.146-.286.012-.054.01-.111.027-.16a.246.246 0 0 0-.009-.182.186.186 0 0 0-.084-.086.344.344 0 0 0-.237-.023c-.164.047-.337.073-.468.198-.014.013-.037.018-.053.03-.104.083-.216.157-.308.25-.086.088-.15.195-.224.294-.166.224-.29.47-.376.733-.095.288-.133.587-.175.884-.026.188.001.382-.061.566-.01.027-.006.058-.004.088.006.063.018.126.02.19.003.114 0 .228-.001.343-.001.24-.018.48.036.718.026.115.056.23.13.323a.796.796 0 0 0 .602.307c.146.009.29-.011.431-.044.05-.011.099-.036.154-.013.012.005.033-.005.049-.012.02-.009.04-.022.06-.031.076-.031.149-.07.232-.077a.099.099 0 0 0 .039-.014c.109-.072.217-.146.326-.219.02-.013.05-.03.068-.024.016.006.028.04.03.064.003.06-.005.122.002.182a1.65 1.65 0 0 1-.003.344.099.099 0 0 1-.044.071c-.149.1-.298.2-.443.307-.217.16-.43.324-.644.485a23.486 23.486 0 0 1-.384.281c-.134.096-.27.189-.404.285-.15.11-.297.224-.448.332-.193.14-.39.274-.584.413-.047.035-.086.08-.131.118-.057.046-.117.09-.175.135a41.919 41.919 0 0 0-.255.203l-.353.282c-.142.114-.284.23-.426.343-.076.06-.155.116-.229.178-.114.098-.221.202-.336.298-.142.12-.29.232-.433.35a45.057 45.057 0 0 0-.515.432c-.15.128-.3.256-.447.388-.138.124-.271.253-.407.38-.164.152-.33.302-.494.455-.229.217-.467.425-.661.675l-.214.28a.328.328 0 0 0-.057.217.78.78 0 0 0 .079.322.493.493 0 0 0 .188.202c.154.093.32.111.495.105a.378.378 0 0 0 .257-.113c.076-.073.155-.143.23-.216.08-.075.156-.152.234-.228.019-.019.04-.036.058-.055a11.42 11.42 0 0 0 .123-.124 2.737 2.737 0 0 0 .073-.077l.204-.228c.025-.029.047-.06.074-.086l.596-.589c.045-.045.09-.092.133-.139a2.143 2.143 0 0 0 .087-.097c.028-.034.05-.072.08-.103.056-.056.116-.107.172-.163.096-.094.188-.193.288-.284.092-.085.194-.16.288-.243.042-.037.074-.083.112-.123l.246-.252c.006-.006.014-.01.021-.016.15-.12.3-.238.447-.36.21-.171.417-.346.627-.517.14-.114.285-.221.424-.335.203-.166.401-.337.605-.502.116-.095.24-.182.358-.274.116-.09.23-.184.347-.274a64.393 64.393 0 0 1 .489-.377c.157-.12.313-.24.473-.355.085-.06.176-.116.28-.155.004.027.01.047.009.066-.003.07-.01.139-.011.208-.002.208-.002.416-.002.625l-.001.79c0 .316 0 .632-.002.948 0 .056.022.117-.027.167-.007.007.002.027.003.041.003.037.009.075.008.112-.004.093-.014.186-.015.279 0 .082.012.163.014.245a7.293 7.293 0 0 1-.004.314l-.014.358c-.003.137-.003.275-.009.412-.006.152-.018.304-.023.456-.007.202-.004.404-.016.605-.016.277-.007.55.083.816.031.09.055.184.126.259a.7.7 0 0 0 .34.195c.023.005.044.015.066.023.07.021.132.02.203.015a.384.384 0 0 0 .16-.05c.077-.043.154-.085.226-.134a.523.523 0 0 0 .118-.13c.022-.03.025-.073.047-.103.023-.031.057-.054.087-.08l-.078-.045c.012-.026.022-.048.034-.07.006-.012.024-.023.022-.032-.01-.053.024-.085.06-.121-.03-.017-.074-.028-.077-.046-.01-.053-.051-.082-.077-.12l.042-.075-.05-.018c.094-.003.05-.098.1-.124-.02-.027-.06-.031-.036-.081.014-.03-.033-.06-.076-.06-.047 0-.072-.02-.073-.067l-.008-.129.058-.026-.002-.014-.065-.01c.077-.022.1-.084.127-.146a.394.394 0 0 1-.077-.256c.002-.026-.003-.06-.054-.053-.043.005-.079-.056-.064-.1.015-.043.031-.082-.01-.124l.057-.025c.025-.063-.03-.12-.011-.18-.044-.029-.047-.067-.02-.11l-.056-.006.048-.124-.1-.105c.03-.066.03-.066.006-.166l.051-.029c-.024-.026-.022-.073-.071-.07-.006 0-.014-.012-.017-.02-.026-.06-.001-.111.064-.135l-.023-.036c-.043-.069-.064-.136.015-.198.01-.008.012-.038.006-.054-.02-.064-.045-.127-.064-.18.02-.054.035-.102.056-.147.018-.04.028-.074-.003-.113-.007-.01.003-.032.005-.053l-.056-.074.08-.02c-.002-.014 0-.03-.007-.035-.022-.018-.046-.031-.069-.046 0-.037-.007-.076.003-.11.01-.032.037-.059.058-.09-.005-.054-.016-.116-.014-.178.001-.067.015-.133.022-.2 0-.009 0-.02-.005-.025-.025-.024-.023-.048-.017-.08.01-.044.008-.09.01-.136l.016-.473a.361.361 0 0 0-.016-.108c-.013-.039-.02-.075.023-.109.008-.006.009-.032.003-.042-.029-.043-.02-.093-.02-.138a2.898 2.898 0 0 1 .004-.356c.005-.052.03-.1-.005-.15-.006-.008-.003-.03.003-.04.029-.05.024-.094-.006-.14-.01-.016-.01-.039-.01-.041.021-.028.049-.058.046-.06-.06-.068-.013-.136.003-.199.015-.059.018-.108-.028-.148.007-.061.058-.117.004-.176-.005-.006.007-.033.017-.046.022-.029.045-.055.014-.092-.006-.007-.002-.023-.001-.034.006-.097.022-.194.016-.29-.005-.086.04-.123.103-.161.053-.033.119-.054.139-.125.002-.009.016-.016.026-.023.091-.064.182-.13.274-.191.202-.136.4-.276.618-.388.088-.045.162-.114.245-.168.19-.123.38-.248.575-.366.219-.133.442-.26.664-.39.26-.152.517-.307.78-.455a94.35 94.35 0 0 1 1.162-.639c.26-.14.522-.276.783-.414.208-.11.417-.22.627-.329.178-.092.355-.188.538-.27.27-.12.54-.237.817-.341.262-.1.53-.184.798-.27.226-.073.455-.134.66-.257.215-.128.399-.285.498-.522a.672.672 0 0 1 .073-.124c.005-.008.026-.006.039-.009v-.035c-.04-.05-.04-.05 0-.106zm-7.653-2.757a.408.408 0 0 0 .122.071c.098.039.208.054.3.013.154-.068.3-.16.39-.32a.385.385 0 0 1 .043-.06c.086-.1.17-.199.202-.34a.527.527 0 0 0 .014-.157c-.007-.091-.063-.15-.1-.218-.035-.005-.07-.003-.098-.014a.468.468 0 0 0-.297-.008.906.906 0 0 0-.464.294c-.158.18-.254.387-.17.64a.238.238 0 0 0 .058.1m-.54 5.139a.592.592 0 0 0 .281-.06 9.347 9.347 0 0 0 .335-.164.699.699 0 0 0 .255-.219c.05-.07.123-.136.12-.231-.002-.033.014-.067.017-.1.002-.025-.004-.05-.008-.076-.006-.033-.022-.067-.02-.1a18.424 18.424 0 0 1 .024-.497c.003-.054.015-.108.023-.161l.074.004c-.017-.023-.031-.038-.041-.054a.802.802 0 0 1-.031-.065l.105.018c-.021-.03-.027-.054-.043-.061-.054-.023-.055-.064-.054-.105.002-.042-.009-.097.017-.123.064-.063.068-.128.056-.203a.798.798 0 0 1-.01-.143c.003-.098.01-.196.014-.293 0-.005-.007-.01-.008-.016-.002-.028-.012-.058-.003-.083a.17.17 0 0 0 .003-.11.537.537 0 0 1-.005-.278c.014-.056.031-.112.043-.17.002-.008-.018-.02-.029-.033.053-.074.058-.151.064-.227.003-.04-.019-.078.011-.122a.242.242 0 0 0 .033-.13c0-.053.013-.106-.021-.161-.026-.041-.061-.084-.06-.14.003-.091-.051-.144-.156-.15-.139-.01-.278-.007-.403.058a.983.983 0 0 0-.552.773c-.005.06-.014.121-.022.181-.04.284-.082.567-.117.85-.039.319-.07.638-.107.957-.026.231-.055.463-.079.695-.015.148-.033.297-.028.444.005.179.108.284.322.295m-10.31 1.223a.328.328 0 0 1 .073-.282c.018-.02.034-.062.024-.08-.024-.04.014-.058.018-.087.006-.03-.028-.06 0-.093.01-.012.01-.033.012-.05.003-.038 0-.077.007-.113l.122-.521c.052-.223.098-.447.156-.669.047-.183.08-.372.166-.544.019-.037.025-.08.046-.116.032-.056.023-.13.081-.173.009-.007.013-.02.016-.032l.054-.206c.016-.061.028-.124.098-.152.012-.005.022-.02.027-.034.034-.076.07-.151.07-.237 0-.032-.007-.064-.002-.095.02-.126.051-.25.06-.377a.417.417 0 0 1 .06-.19c.066-.111.089-.235.114-.355.02-.094.068-.168.113-.247.018-.032.03-.054.009-.088a.087.087 0 0 1-.003-.093c.065-.126.095-.262.125-.399a2.69 2.69 0 0 1 .06-.23c.027-.088.062-.173.091-.26.03-.086.054-.173.083-.26.02-.062.037-.128.071-.183a.635.635 0 0 0 .08-.203 1.05 1.05 0 0 1 .064-.194c.055-.124.116-.247.175-.37.02-.04.045-.077.062-.117a.224.224 0 0 0 .022-.094.351.351 0 0 1 .034-.164c.084-.188.161-.379.249-.565.15-.32.256-.662.468-.953.049-.066.077-.146.12-.216a4.29 4.29 0 0 1 .439-.566c.053-.06.116-.113.176-.17.027.015.047.012.05-.015.01-.072.063-.094.121-.115.013-.005.03-.012.035-.023.019-.046.063-.082.053-.139-.002-.013.005-.03.013-.04.044-.064.092-.124.135-.188a.742.742 0 0 0 .133-.393 1.137 1.137 0 0 0-.043-.352.789.789 0 0 0-.568-.571 1.305 1.305 0 0 0-.246-.056 1.059 1.059 0 0 0-.19 0 .954.954 0 0 0-.492.27c-.13.123-.244.258-.335.416a3.677 3.677 0 0 0-.248.526 24.106 24.106 0 0 1-.146.375c-.037.094-.08.186-.116.281-.1.26-.195.52-.293.78-.093.248-.19.496-.281.745-.06.16-.112.322-.17.482L6.175 6.26c-.02.053-.033.111-.064.157-.048.073-.064.153-.085.234-.026.1-.052.203-.098.296-.077.157-.123.322-.172.488-.033.113-.037.237-.107.34-.011.015-.012.04-.012.06-.002.073.008.149-.049.21-.003.004-.003.012-.004.017l-.076.294-.132.465c-.04.146-.082.293-.119.44-.018.072-.021.147-.04.219-.027.094-.067.185-.092.28-.09.333-.175.668-.262 1.003-.012.045-.026.09-.037.137a88.407 88.407 0 0 0-.106.434c-.015.064-.031.128-.044.192-.06.298-.112.597-.177.894-.055.25-.107.501-.143.755-.035.236-.084.47-.126.705-.016.085-.03.17-.042.255l-.054.354c-.043.277-.089.553-.13.83-.026.171-.044.343-.07.513-.007.051-.03.1-.048.152-.032-.026-.058-.04-.074-.061a.137.137 0 0 1-.025-.07c-.003-.062 0-.124-.003-.185 0-.013-.01-.03-.021-.035-.038-.016-.033-.046-.034-.076-.003-.106 0-.213-.036-.318-.01-.031 0-.07.003-.106.003-.058.011-.117.01-.176 0-.028-.006-.066-.025-.082-.071-.06-.074-.15-.092-.226a.44.44 0 0 1 .028-.241c.027-.07.034-.129 0-.194a.399.399 0 0 1-.02-.049c-.032-.093-.077-.183-.072-.284a.563.563 0 0 0-.04-.217c-.027-.077-.063-.16-.008-.237-.02-.043-.06-.085-.054-.122.017-.137-.057-.246-.1-.364-.016-.044-.032-.081-.016-.112-.02-.039-.045-.067-.051-.097-.015-.08-.014-.16-.034-.24-.03-.116-.034-.238-.055-.357-.022-.125-.075-.246-.038-.377a.039.039 0 0 0-.003-.027c-.025-.049.016-.12-.053-.157-.006-.002.001-.027 0-.04 0-.023.004-.047-.005-.066-.036-.085-.022-.182-.066-.265-.006-.012 0-.03 0-.044-.001-.018 0-.035-.004-.052-.01-.04-.024-.08-.03-.12-.023-.14-.04-.283-.064-.424a104.342 104.342 0 0 0-.16-.923.85.85 0 0 0-.144-.345c-.17-.24-.53-.289-.772-.142a.656.656 0 0 0-.279.342c-.036.095-.06.194-.099.288-.117.287-.174.595-.31.876-.008.109-.057.205-.092.306-.029.081-.041.167-.067.25-.027.088-.063.173-.09.262-.039.13-.096.254-.127.389a.693.693 0 0 1-.116.288c-.025.033-.026.084-.037.126-.015.058-.014.128-.049.17-.053.063-.065.137-.089.208-.012.037-.01.077-.023.113-.058.168-.14.326-.187.5-.054.204-.138.4-.208.6a1.24 1.24 0 0 0-.047.163.43.43 0 0 0 .287.49c.182.063.35.022.507-.076.052-.032.093-.081.14-.122-.018-.066.042-.106.058-.163.02-.073.059-.14.084-.213.03-.083.092-.15.104-.242.005-.04.042-.075.065-.113-.022-.016-.006-.036.004-.058.03-.067.068-.133.087-.203.015-.055.02-.11.044-.166.038-.085.035-.187.088-.27-.013-.084.048-.145.08-.21a.325.325 0 0 0 .037-.201c.032-.016.077-.023.066-.077 0-.004.018-.012.025-.02.02-.02.044-.038.055-.063.024-.05.04-.105.062-.156.007-.017.033-.04.042-.037a.44.44 0 0 1 .11.053c.034.024.047.058.027.101-.005.01.001.026.003.045.031-.008.054-.049.083-.012-.006.028-.014.055-.017.083a.972.972 0 0 0-.004.127c.002.037.016.073.014.109a.119.119 0 0 0 .034.096.242.242 0 0 1 .057.098c.018.078.026.158.039.237l.11.706c.007.05.013.1.014.15.002.091-.018.185.046.267.01.012.006.034.009.052.027.186.053.372.081.557.027.177.056.353.082.53.037.24.072.482.108.722.026.18.052.359.08.538l.12.748c.017.108.052.214.016.324-.007.022-.008.046-.012.065.096.077.102.107.041.21.048 0 .063.03.07.069.025.154.041.31.08.463.005.02.008.045 0 .062a.072.072 0 0 0 .01.082.118.118 0 0 1 .02.05c.03.166.06.332.087.498.03.182.054.366.09.546.044.213.103.423.144.636.036.19.25.391.486.36.2-.025.428-.14.491-.384a6.125 6.125 0 0 0 .104-.47c.037-.204.065-.411.094-.617.039-.271.078-.542.113-.814.036-.277.066-.556.101-.833a85.361 85.361 0 0 1 .098-.754c.013-.097.02-.197.049-.29.026-.085.07-.163.057-.253.098-.037.12-.08.064-.131-.04-.037-.045-.073-.04-.118l.01-.088c.014-.103.034-.206.037-.31.002-.067.019-.134.061-.172.078-.07.07-.165.1-.248.023-.065.01-.144.014-.22-.049-.014-.084-.034-.077-.086.009-.065.012-.131.025-.195.028-.139.062-.276.092-.414a.167.167 0 0 0 0-.079c-.013-.044.003-.073.032-.103a.107.107 0 0 0 .03-.06 2.729 2.729 0 0 0 .008-.245c0-.043.011-.079.025-.119.027-.082.074-.161.048-.257-.008-.027.012-.07.033-.096.081-.098.083-.207.056-.32m2.18-.666c-.015-.065-.001-.08.065-.115-.021-.038-.06-.075-.053-.102.017-.067-.016-.12-.034-.176a.228.228 0 0 0-.2-.16.476.476 0 0 0-.195.014 1.239 1.239 0 0 0-.333.157c-.172.11-.3.248-.386.425a1.766 1.766 0 0 0-.16.569c-.019.152-.03.306-.043.459-.002.014 0 .029-.001.044-.004.109-.007.218-.013.327a52.91 52.91 0 0 1-.028.504c-.002.039.011.081-.03.113-.008.006-.004.027-.003.041 0 .072.015.146 0 .214-.035.149-.03.299-.037.448-.008.171-.021.342-.026.513-.004.183-.01.366 0 .548.008.162.114.249.288.263a.455.455 0 0 0 .241-.05 2.2 2.2 0 0 0 .391-.253c.031-.024.045-.075.104-.054.006.002.027-.012.028-.02.005-.06.06-.032.097-.044l.02-.083-.084-.005c.006-.033.011-.063.019-.093.007-.03.021-.06.026-.09.015-.086.014-.176.044-.256.046-.118.012-.235.021-.352.006-.083-.004-.166.005-.249.014-.138.036-.275.056-.413.01-.068.026-.136.037-.204a2.184 2.184 0 0 0 .024-.18c.004-.054 0-.106.025-.16a.495.495 0 0 0 .04-.184c.008-.127.005-.254.007-.381 0-.015-.002-.032.005-.043.055-.088.055-.188.07-.283a.793.793 0 0 0 .019-.18.253.253 0 0 1 .03-.143c.015-.025.031-.06.022-.08a.125.125 0 0 1 .008-.12c-.025-.063-.052-.113-.065-.166m1.132-.94a1.285 1.285 0 0 0-.12.473c-.01.155-.014.31-.021.465-.008.15-.015.298-.025.447-.007.093-.018.186-.026.278-.004.048.005.1-.012.142a.604.604 0 0 0-.04.268l-.002.008c.004.071-.021.141-.006.214.006.03.001.065-.002.097-.007.064-.037.134-.02.19.032.11.006.217.007.325 0 .094-.035.184-.024.282.012.1.004.203.005.304 0 .082.027.156.066.225.06.107.166.164.269.145.193-.036.402-.137.57-.304a.708.708 0 0 0 .206-.398 3.67 3.67 0 0 0 .042-.492c.005-.24.017-.48.028-.719.003-.06.026-.124.016-.183-.018-.102.009-.201.008-.302 0-.049.01-.106.053-.134.003-.055-.006-.102.01-.136.028-.06.027-.123.044-.184.009-.033.034-.064.034-.097a.24.24 0 0 1 .046-.133c.103-.16.21-.318.366-.433a6.662 6.662 0 0 0 .29-.228c.136-.112.273-.226.26-.431 0-.014.009-.028.008-.042-.003-.036-.001-.075-.014-.107-.028-.067-.064-.13-.097-.195-.048-.095-.13-.124-.229-.124-.096 0-.18.041-.265.081-.056.027-.11.056-.168.082-.054.024-.112.039-.163.068a.77.77 0 0 1-.3.096 1.25 1.25 0 0 0-.455.125.74.74 0 0 0-.34.327" }) + ] + } + ); +}); + +exports.default = SiVirgin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.d.ts new file mode 100644 index 000000000..97be2a6bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E10A0A"; +declare const SiVirgin: IconType; +export { SiVirgin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.mjs new file mode 100644 index 000000000..fe4b98612 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirgin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E10A0A"; +const SiVirgin = React.forwardRef(function SiVirgin2({ title = "Virgin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.951 9.821.008-.004c.044-.06.105-.114.13-.18.04-.11.066-.228-.005-.34-.016-.026-.024-.056-.036-.084-.035-.09-.08-.118-.204-.116a.56.56 0 0 0-.281.086 3.11 3.11 0 0 0-.298.211c-.05.04-.09.092-.135.137-.06.06-.074.14-.11.21a.46.46 0 0 0-.053.222c.002.094.041.18.113.23.08.054.184.092.29.042a1.84 1.84 0 0 0 .216-.116c.133-.086.282-.156.365-.298M24 9.423c-.008-.01-.02-.02-.023-.033a.635.635 0 0 0-.173-.28.3.3 0 0 0-.123-.06c-.039-.01-.082.002-.122-.007a.986.986 0 0 0-.688.098c-.217.113-.43.233-.65.341a5.64 5.64 0 0 1-.448.192c-.106.042-.167.02-.234-.06-.009-.012-.02-.025-.032-.028-.05-.012-.05-.055-.063-.09-.005-.015-.01-.04-.017-.042-.068-.011-.046-.038-.016-.07.01-.01.015-.023.025-.038-.034-.032-.09-.05-.064-.11.002-.004-.008-.016-.015-.019-.044-.019-.024-.052-.021-.082.005-.057.006-.064.032-.088l-.052-.05.053-.094c-.046-.01-.063-.038-.036-.066.032-.031.027-.06.022-.096-.002-.016-.005-.037.003-.05.02-.03.016-.058.006-.09-.006-.02.006-.044.01-.07-.047-.019-.061-.054-.042-.104.005-.012.009-.03.004-.04-.025-.047.002-.081.019-.1-.013-.05-.03-.084-.03-.119a9.858 9.858 0 0 1 .002-.412c0-.022.02-.043.031-.066-.03-.053-.03-.053.014-.096-.014-.03-.032-.057-.037-.085-.008-.053.051-.034.07-.054-.008-.05-.02-.095-.022-.14 0-.041-.007-.082.01-.125.014-.038.002-.085.002-.131l-.046.004-.007-.149c-.002-.054.008-.1.066-.102v-.127c-.021-.032-.045-.061-.062-.094-.022-.043.013-.073.041-.107-.057-.027-.067-.073-.08-.123-.016-.063-.03-.142-.075-.18-.042-.036-.077-.085-.131-.109l-.033-.013c-.22-.099-.437-.061-.647.024-.114.046-.218.117-.326.178a.343.343 0 0 0-.07.052c-.078.075-.154.152-.23.228a1.096 1.096 0 0 0-.08.095.747.747 0 0 1-.338.244.362.362 0 0 1-.275-.01c-.066-.029-.117-.039-.179 0a.165.165 0 0 1-.093.018c-.273-.036-.497.075-.682.252a.927.927 0 0 0-.263.547c-.015.107-.015.217-.02.325-.01.179-.017.357-.026.536l-.036.682c-.007.138-.009.276-.016.413-.016.32-.035.64-.05.961a.932.932 0 0 0 .007.182c.023.16.08.25.22.279a.52.52 0 0 0 .331-.028c.088-.041.18-.077.26-.13.099-.066.219-.12.235-.26 0-.003.003-.005.004-.008.04-.07.08-.14.115-.213a.12.12 0 0 0 .013-.072c-.007-.032-.048-.055-.007-.099.019-.02 0-.07.007-.106.007-.039.022-.076.034-.118l-.061-.049.032-.03c-.068-.063-.013-.116.022-.17-.019-.021-.062-.004-.057-.05.012-.12-.027-.244.034-.36.002-.004.005-.013.003-.015-.047-.054-.004-.1.008-.153.03.038.048.006.067-.002l-.011-.068c-.01-.052.002-.11-.054-.148-.013-.008-.016-.051-.006-.07a.36.36 0 0 1 .074-.096c.03-.029.035-.057.02-.094a.758.758 0 0 1-.036-.106c-.005-.024-.011-.057 0-.075.012-.018.044-.022.066-.032v-.115l-.04-.026.026-.057c.055.009.055.009.044-.042-.001-.008-.004-.02 0-.024.045-.053.025-.117.033-.176.002-.017 0-.038.01-.049.049-.058.05-.128.056-.188.038-.034.09-.058.1-.093.022-.077.078-.12.134-.164a.213.213 0 0 0 .066-.078.387.387 0 0 1 .102-.137c.068-.054.148-.093.22-.143.11-.076.227-.039.342-.026.023.003.047.025.064.045.066.075.106.164.03.304a.358.358 0 0 0-.01.344c.102.188.009.359.026.538-.04.054-.02.109-.002.164a.066.066 0 0 1 0 .041.495.495 0 0 0-.015.327c.006.018.002.04 0 .061-.01.156-.039.31-.035.467.002.13 0 .258.005.387a.448.448 0 0 0 .118.286c.04.045.095.077.145.111.044.03.049.047.01.08a.368.368 0 0 1-.051.035c-.066.04-.132.079-.199.116l-.696.39-.996.558c-.196.11-.392.219-.586.33-.224.13-.446.264-.671.393-.031.018-.071.022-.106.034-.016.005-.034.01-.046.021a.766.766 0 0 1-.221.14c-.07.033-.14.064-.206.103-.12.073-.238.152-.357.227l-.557.343c-.236.145-.474.288-.709.435-.13.081-.255.169-.384.253-.023.015-.05.024-.082.04-.005-.033-.011-.053-.011-.072a5.868 5.868 0 0 1 0-.227 2.493 2.493 0 0 1 .01-.19c.007-.078.028-.152.013-.233-.013-.07.006-.144.01-.216.005-.051.024-.107.01-.154a.52.52 0 0 1-.013-.208 4.242 4.242 0 0 0 .024-.39c0-.046.014-.091.018-.137.008-.088.013-.176.02-.263.02-.201.042-.402.057-.603.016-.201.023-.403.037-.604.008-.115 0-.239.041-.342.044-.11-.008-.218.033-.32-.049-.108.04-.214.004-.321-.002-.005.013-.013.014-.02a.134.134 0 0 0 0-.045c-.003-.02-.014-.039-.014-.058 0-.059-.002-.119.005-.177a.354.354 0 0 0-.09-.284.361.361 0 0 0-.232-.114.701.701 0 0 0-.39.052c-.174.08-.304.197-.34.387a3.91 3.91 0 0 0-.05.427c-.017.22-.027.439-.042.658-.01.143-.025.286-.038.429-.007.08.005.163-.047.234a.025.025 0 0 0-.003.022c.034.078.01.158.005.235-.007.152-.036.303-.049.454-.022.254-.062.505-.103.756-.028.176-.08.34-.213.474a.785.785 0 0 1-.503.25.244.244 0 0 1-.252-.131.654.654 0 0 1-.082-.239c-.015-.156-.04-.314.003-.471.005-.02 0-.04 0-.061.002-.047.001-.094.005-.14a3.877 3.877 0 0 1 .026-.21c.005-.033.008-.07.024-.1.028-.056.024-.104-.002-.16a.218.218 0 0 1-.019-.126c.014-.085.019-.171.051-.254.032-.084.046-.175.072-.262a.248.248 0 0 1 .048-.103c.04-.042.047-.092.061-.142a.498.498 0 0 1 .044-.113c.03-.051.063-.104.086-.155.024-.052.04-.1.089-.134a.12.12 0 0 0 .036-.058.27.27 0 0 1 .102-.13c.029-.02.067-.038.081-.066.05-.095.123-.177.146-.286.012-.054.01-.111.027-.16a.246.246 0 0 0-.009-.182.186.186 0 0 0-.084-.086.344.344 0 0 0-.237-.023c-.164.047-.337.073-.468.198-.014.013-.037.018-.053.03-.104.083-.216.157-.308.25-.086.088-.15.195-.224.294-.166.224-.29.47-.376.733-.095.288-.133.587-.175.884-.026.188.001.382-.061.566-.01.027-.006.058-.004.088.006.063.018.126.02.19.003.114 0 .228-.001.343-.001.24-.018.48.036.718.026.115.056.23.13.323a.796.796 0 0 0 .602.307c.146.009.29-.011.431-.044.05-.011.099-.036.154-.013.012.005.033-.005.049-.012.02-.009.04-.022.06-.031.076-.031.149-.07.232-.077a.099.099 0 0 0 .039-.014c.109-.072.217-.146.326-.219.02-.013.05-.03.068-.024.016.006.028.04.03.064.003.06-.005.122.002.182a1.65 1.65 0 0 1-.003.344.099.099 0 0 1-.044.071c-.149.1-.298.2-.443.307-.217.16-.43.324-.644.485a23.486 23.486 0 0 1-.384.281c-.134.096-.27.189-.404.285-.15.11-.297.224-.448.332-.193.14-.39.274-.584.413-.047.035-.086.08-.131.118-.057.046-.117.09-.175.135a41.919 41.919 0 0 0-.255.203l-.353.282c-.142.114-.284.23-.426.343-.076.06-.155.116-.229.178-.114.098-.221.202-.336.298-.142.12-.29.232-.433.35a45.057 45.057 0 0 0-.515.432c-.15.128-.3.256-.447.388-.138.124-.271.253-.407.38-.164.152-.33.302-.494.455-.229.217-.467.425-.661.675l-.214.28a.328.328 0 0 0-.057.217.78.78 0 0 0 .079.322.493.493 0 0 0 .188.202c.154.093.32.111.495.105a.378.378 0 0 0 .257-.113c.076-.073.155-.143.23-.216.08-.075.156-.152.234-.228.019-.019.04-.036.058-.055a11.42 11.42 0 0 0 .123-.124 2.737 2.737 0 0 0 .073-.077l.204-.228c.025-.029.047-.06.074-.086l.596-.589c.045-.045.09-.092.133-.139a2.143 2.143 0 0 0 .087-.097c.028-.034.05-.072.08-.103.056-.056.116-.107.172-.163.096-.094.188-.193.288-.284.092-.085.194-.16.288-.243.042-.037.074-.083.112-.123l.246-.252c.006-.006.014-.01.021-.016.15-.12.3-.238.447-.36.21-.171.417-.346.627-.517.14-.114.285-.221.424-.335.203-.166.401-.337.605-.502.116-.095.24-.182.358-.274.116-.09.23-.184.347-.274a64.393 64.393 0 0 1 .489-.377c.157-.12.313-.24.473-.355.085-.06.176-.116.28-.155.004.027.01.047.009.066-.003.07-.01.139-.011.208-.002.208-.002.416-.002.625l-.001.79c0 .316 0 .632-.002.948 0 .056.022.117-.027.167-.007.007.002.027.003.041.003.037.009.075.008.112-.004.093-.014.186-.015.279 0 .082.012.163.014.245a7.293 7.293 0 0 1-.004.314l-.014.358c-.003.137-.003.275-.009.412-.006.152-.018.304-.023.456-.007.202-.004.404-.016.605-.016.277-.007.55.083.816.031.09.055.184.126.259a.7.7 0 0 0 .34.195c.023.005.044.015.066.023.07.021.132.02.203.015a.384.384 0 0 0 .16-.05c.077-.043.154-.085.226-.134a.523.523 0 0 0 .118-.13c.022-.03.025-.073.047-.103.023-.031.057-.054.087-.08l-.078-.045c.012-.026.022-.048.034-.07.006-.012.024-.023.022-.032-.01-.053.024-.085.06-.121-.03-.017-.074-.028-.077-.046-.01-.053-.051-.082-.077-.12l.042-.075-.05-.018c.094-.003.05-.098.1-.124-.02-.027-.06-.031-.036-.081.014-.03-.033-.06-.076-.06-.047 0-.072-.02-.073-.067l-.008-.129.058-.026-.002-.014-.065-.01c.077-.022.1-.084.127-.146a.394.394 0 0 1-.077-.256c.002-.026-.003-.06-.054-.053-.043.005-.079-.056-.064-.1.015-.043.031-.082-.01-.124l.057-.025c.025-.063-.03-.12-.011-.18-.044-.029-.047-.067-.02-.11l-.056-.006.048-.124-.1-.105c.03-.066.03-.066.006-.166l.051-.029c-.024-.026-.022-.073-.071-.07-.006 0-.014-.012-.017-.02-.026-.06-.001-.111.064-.135l-.023-.036c-.043-.069-.064-.136.015-.198.01-.008.012-.038.006-.054-.02-.064-.045-.127-.064-.18.02-.054.035-.102.056-.147.018-.04.028-.074-.003-.113-.007-.01.003-.032.005-.053l-.056-.074.08-.02c-.002-.014 0-.03-.007-.035-.022-.018-.046-.031-.069-.046 0-.037-.007-.076.003-.11.01-.032.037-.059.058-.09-.005-.054-.016-.116-.014-.178.001-.067.015-.133.022-.2 0-.009 0-.02-.005-.025-.025-.024-.023-.048-.017-.08.01-.044.008-.09.01-.136l.016-.473a.361.361 0 0 0-.016-.108c-.013-.039-.02-.075.023-.109.008-.006.009-.032.003-.042-.029-.043-.02-.093-.02-.138a2.898 2.898 0 0 1 .004-.356c.005-.052.03-.1-.005-.15-.006-.008-.003-.03.003-.04.029-.05.024-.094-.006-.14-.01-.016-.01-.039-.01-.041.021-.028.049-.058.046-.06-.06-.068-.013-.136.003-.199.015-.059.018-.108-.028-.148.007-.061.058-.117.004-.176-.005-.006.007-.033.017-.046.022-.029.045-.055.014-.092-.006-.007-.002-.023-.001-.034.006-.097.022-.194.016-.29-.005-.086.04-.123.103-.161.053-.033.119-.054.139-.125.002-.009.016-.016.026-.023.091-.064.182-.13.274-.191.202-.136.4-.276.618-.388.088-.045.162-.114.245-.168.19-.123.38-.248.575-.366.219-.133.442-.26.664-.39.26-.152.517-.307.78-.455a94.35 94.35 0 0 1 1.162-.639c.26-.14.522-.276.783-.414.208-.11.417-.22.627-.329.178-.092.355-.188.538-.27.27-.12.54-.237.817-.341.262-.1.53-.184.798-.27.226-.073.455-.134.66-.257.215-.128.399-.285.498-.522a.672.672 0 0 1 .073-.124c.005-.008.026-.006.039-.009v-.035c-.04-.05-.04-.05 0-.106zm-7.653-2.757a.408.408 0 0 0 .122.071c.098.039.208.054.3.013.154-.068.3-.16.39-.32a.385.385 0 0 1 .043-.06c.086-.1.17-.199.202-.34a.527.527 0 0 0 .014-.157c-.007-.091-.063-.15-.1-.218-.035-.005-.07-.003-.098-.014a.468.468 0 0 0-.297-.008.906.906 0 0 0-.464.294c-.158.18-.254.387-.17.64a.238.238 0 0 0 .058.1m-.54 5.139a.592.592 0 0 0 .281-.06 9.347 9.347 0 0 0 .335-.164.699.699 0 0 0 .255-.219c.05-.07.123-.136.12-.231-.002-.033.014-.067.017-.1.002-.025-.004-.05-.008-.076-.006-.033-.022-.067-.02-.1a18.424 18.424 0 0 1 .024-.497c.003-.054.015-.108.023-.161l.074.004c-.017-.023-.031-.038-.041-.054a.802.802 0 0 1-.031-.065l.105.018c-.021-.03-.027-.054-.043-.061-.054-.023-.055-.064-.054-.105.002-.042-.009-.097.017-.123.064-.063.068-.128.056-.203a.798.798 0 0 1-.01-.143c.003-.098.01-.196.014-.293 0-.005-.007-.01-.008-.016-.002-.028-.012-.058-.003-.083a.17.17 0 0 0 .003-.11.537.537 0 0 1-.005-.278c.014-.056.031-.112.043-.17.002-.008-.018-.02-.029-.033.053-.074.058-.151.064-.227.003-.04-.019-.078.011-.122a.242.242 0 0 0 .033-.13c0-.053.013-.106-.021-.161-.026-.041-.061-.084-.06-.14.003-.091-.051-.144-.156-.15-.139-.01-.278-.007-.403.058a.983.983 0 0 0-.552.773c-.005.06-.014.121-.022.181-.04.284-.082.567-.117.85-.039.319-.07.638-.107.957-.026.231-.055.463-.079.695-.015.148-.033.297-.028.444.005.179.108.284.322.295m-10.31 1.223a.328.328 0 0 1 .073-.282c.018-.02.034-.062.024-.08-.024-.04.014-.058.018-.087.006-.03-.028-.06 0-.093.01-.012.01-.033.012-.05.003-.038 0-.077.007-.113l.122-.521c.052-.223.098-.447.156-.669.047-.183.08-.372.166-.544.019-.037.025-.08.046-.116.032-.056.023-.13.081-.173.009-.007.013-.02.016-.032l.054-.206c.016-.061.028-.124.098-.152.012-.005.022-.02.027-.034.034-.076.07-.151.07-.237 0-.032-.007-.064-.002-.095.02-.126.051-.25.06-.377a.417.417 0 0 1 .06-.19c.066-.111.089-.235.114-.355.02-.094.068-.168.113-.247.018-.032.03-.054.009-.088a.087.087 0 0 1-.003-.093c.065-.126.095-.262.125-.399a2.69 2.69 0 0 1 .06-.23c.027-.088.062-.173.091-.26.03-.086.054-.173.083-.26.02-.062.037-.128.071-.183a.635.635 0 0 0 .08-.203 1.05 1.05 0 0 1 .064-.194c.055-.124.116-.247.175-.37.02-.04.045-.077.062-.117a.224.224 0 0 0 .022-.094.351.351 0 0 1 .034-.164c.084-.188.161-.379.249-.565.15-.32.256-.662.468-.953.049-.066.077-.146.12-.216a4.29 4.29 0 0 1 .439-.566c.053-.06.116-.113.176-.17.027.015.047.012.05-.015.01-.072.063-.094.121-.115.013-.005.03-.012.035-.023.019-.046.063-.082.053-.139-.002-.013.005-.03.013-.04.044-.064.092-.124.135-.188a.742.742 0 0 0 .133-.393 1.137 1.137 0 0 0-.043-.352.789.789 0 0 0-.568-.571 1.305 1.305 0 0 0-.246-.056 1.059 1.059 0 0 0-.19 0 .954.954 0 0 0-.492.27c-.13.123-.244.258-.335.416a3.677 3.677 0 0 0-.248.526 24.106 24.106 0 0 1-.146.375c-.037.094-.08.186-.116.281-.1.26-.195.52-.293.78-.093.248-.19.496-.281.745-.06.16-.112.322-.17.482L6.175 6.26c-.02.053-.033.111-.064.157-.048.073-.064.153-.085.234-.026.1-.052.203-.098.296-.077.157-.123.322-.172.488-.033.113-.037.237-.107.34-.011.015-.012.04-.012.06-.002.073.008.149-.049.21-.003.004-.003.012-.004.017l-.076.294-.132.465c-.04.146-.082.293-.119.44-.018.072-.021.147-.04.219-.027.094-.067.185-.092.28-.09.333-.175.668-.262 1.003-.012.045-.026.09-.037.137a88.407 88.407 0 0 0-.106.434c-.015.064-.031.128-.044.192-.06.298-.112.597-.177.894-.055.25-.107.501-.143.755-.035.236-.084.47-.126.705-.016.085-.03.17-.042.255l-.054.354c-.043.277-.089.553-.13.83-.026.171-.044.343-.07.513-.007.051-.03.1-.048.152-.032-.026-.058-.04-.074-.061a.137.137 0 0 1-.025-.07c-.003-.062 0-.124-.003-.185 0-.013-.01-.03-.021-.035-.038-.016-.033-.046-.034-.076-.003-.106 0-.213-.036-.318-.01-.031 0-.07.003-.106.003-.058.011-.117.01-.176 0-.028-.006-.066-.025-.082-.071-.06-.074-.15-.092-.226a.44.44 0 0 1 .028-.241c.027-.07.034-.129 0-.194a.399.399 0 0 1-.02-.049c-.032-.093-.077-.183-.072-.284a.563.563 0 0 0-.04-.217c-.027-.077-.063-.16-.008-.237-.02-.043-.06-.085-.054-.122.017-.137-.057-.246-.1-.364-.016-.044-.032-.081-.016-.112-.02-.039-.045-.067-.051-.097-.015-.08-.014-.16-.034-.24-.03-.116-.034-.238-.055-.357-.022-.125-.075-.246-.038-.377a.039.039 0 0 0-.003-.027c-.025-.049.016-.12-.053-.157-.006-.002.001-.027 0-.04 0-.023.004-.047-.005-.066-.036-.085-.022-.182-.066-.265-.006-.012 0-.03 0-.044-.001-.018 0-.035-.004-.052-.01-.04-.024-.08-.03-.12-.023-.14-.04-.283-.064-.424a104.342 104.342 0 0 0-.16-.923.85.85 0 0 0-.144-.345c-.17-.24-.53-.289-.772-.142a.656.656 0 0 0-.279.342c-.036.095-.06.194-.099.288-.117.287-.174.595-.31.876-.008.109-.057.205-.092.306-.029.081-.041.167-.067.25-.027.088-.063.173-.09.262-.039.13-.096.254-.127.389a.693.693 0 0 1-.116.288c-.025.033-.026.084-.037.126-.015.058-.014.128-.049.17-.053.063-.065.137-.089.208-.012.037-.01.077-.023.113-.058.168-.14.326-.187.5-.054.204-.138.4-.208.6a1.24 1.24 0 0 0-.047.163.43.43 0 0 0 .287.49c.182.063.35.022.507-.076.052-.032.093-.081.14-.122-.018-.066.042-.106.058-.163.02-.073.059-.14.084-.213.03-.083.092-.15.104-.242.005-.04.042-.075.065-.113-.022-.016-.006-.036.004-.058.03-.067.068-.133.087-.203.015-.055.02-.11.044-.166.038-.085.035-.187.088-.27-.013-.084.048-.145.08-.21a.325.325 0 0 0 .037-.201c.032-.016.077-.023.066-.077 0-.004.018-.012.025-.02.02-.02.044-.038.055-.063.024-.05.04-.105.062-.156.007-.017.033-.04.042-.037a.44.44 0 0 1 .11.053c.034.024.047.058.027.101-.005.01.001.026.003.045.031-.008.054-.049.083-.012-.006.028-.014.055-.017.083a.972.972 0 0 0-.004.127c.002.037.016.073.014.109a.119.119 0 0 0 .034.096.242.242 0 0 1 .057.098c.018.078.026.158.039.237l.11.706c.007.05.013.1.014.15.002.091-.018.185.046.267.01.012.006.034.009.052.027.186.053.372.081.557.027.177.056.353.082.53.037.24.072.482.108.722.026.18.052.359.08.538l.12.748c.017.108.052.214.016.324-.007.022-.008.046-.012.065.096.077.102.107.041.21.048 0 .063.03.07.069.025.154.041.31.08.463.005.02.008.045 0 .062a.072.072 0 0 0 .01.082.118.118 0 0 1 .02.05c.03.166.06.332.087.498.03.182.054.366.09.546.044.213.103.423.144.636.036.19.25.391.486.36.2-.025.428-.14.491-.384a6.125 6.125 0 0 0 .104-.47c.037-.204.065-.411.094-.617.039-.271.078-.542.113-.814.036-.277.066-.556.101-.833a85.361 85.361 0 0 1 .098-.754c.013-.097.02-.197.049-.29.026-.085.07-.163.057-.253.098-.037.12-.08.064-.131-.04-.037-.045-.073-.04-.118l.01-.088c.014-.103.034-.206.037-.31.002-.067.019-.134.061-.172.078-.07.07-.165.1-.248.023-.065.01-.144.014-.22-.049-.014-.084-.034-.077-.086.009-.065.012-.131.025-.195.028-.139.062-.276.092-.414a.167.167 0 0 0 0-.079c-.013-.044.003-.073.032-.103a.107.107 0 0 0 .03-.06 2.729 2.729 0 0 0 .008-.245c0-.043.011-.079.025-.119.027-.082.074-.161.048-.257-.008-.027.012-.07.033-.096.081-.098.083-.207.056-.32m2.18-.666c-.015-.065-.001-.08.065-.115-.021-.038-.06-.075-.053-.102.017-.067-.016-.12-.034-.176a.228.228 0 0 0-.2-.16.476.476 0 0 0-.195.014 1.239 1.239 0 0 0-.333.157c-.172.11-.3.248-.386.425a1.766 1.766 0 0 0-.16.569c-.019.152-.03.306-.043.459-.002.014 0 .029-.001.044-.004.109-.007.218-.013.327a52.91 52.91 0 0 1-.028.504c-.002.039.011.081-.03.113-.008.006-.004.027-.003.041 0 .072.015.146 0 .214-.035.149-.03.299-.037.448-.008.171-.021.342-.026.513-.004.183-.01.366 0 .548.008.162.114.249.288.263a.455.455 0 0 0 .241-.05 2.2 2.2 0 0 0 .391-.253c.031-.024.045-.075.104-.054.006.002.027-.012.028-.02.005-.06.06-.032.097-.044l.02-.083-.084-.005c.006-.033.011-.063.019-.093.007-.03.021-.06.026-.09.015-.086.014-.176.044-.256.046-.118.012-.235.021-.352.006-.083-.004-.166.005-.249.014-.138.036-.275.056-.413.01-.068.026-.136.037-.204a2.184 2.184 0 0 0 .024-.18c.004-.054 0-.106.025-.16a.495.495 0 0 0 .04-.184c.008-.127.005-.254.007-.381 0-.015-.002-.032.005-.043.055-.088.055-.188.07-.283a.793.793 0 0 0 .019-.18.253.253 0 0 1 .03-.143c.015-.025.031-.06.022-.08a.125.125 0 0 1 .008-.12c-.025-.063-.052-.113-.065-.166m1.132-.94a1.285 1.285 0 0 0-.12.473c-.01.155-.014.31-.021.465-.008.15-.015.298-.025.447-.007.093-.018.186-.026.278-.004.048.005.1-.012.142a.604.604 0 0 0-.04.268l-.002.008c.004.071-.021.141-.006.214.006.03.001.065-.002.097-.007.064-.037.134-.02.19.032.11.006.217.007.325 0 .094-.035.184-.024.282.012.1.004.203.005.304 0 .082.027.156.066.225.06.107.166.164.269.145.193-.036.402-.137.57-.304a.708.708 0 0 0 .206-.398 3.67 3.67 0 0 0 .042-.492c.005-.24.017-.48.028-.719.003-.06.026-.124.016-.183-.018-.102.009-.201.008-.302 0-.049.01-.106.053-.134.003-.055-.006-.102.01-.136.028-.06.027-.123.044-.184.009-.033.034-.064.034-.097a.24.24 0 0 1 .046-.133c.103-.16.21-.318.366-.433a6.662 6.662 0 0 0 .29-.228c.136-.112.273-.226.26-.431 0-.014.009-.028.008-.042-.003-.036-.001-.075-.014-.107-.028-.067-.064-.13-.097-.195-.048-.095-.13-.124-.229-.124-.096 0-.18.041-.265.081-.056.027-.11.056-.168.082-.054.024-.112.039-.163.068a.77.77 0 0 1-.3.096 1.25 1.25 0 0 0-.455.125.74.74 0 0 0-.34.327" }) + ] + } + ); +}); + +export { SiVirgin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.cjs new file mode 100644 index 000000000..6cde6b7e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA0530"; +const SiVirginatlantic = React__namespace.forwardRef(function SiVirginatlantic2({ title = "Virgin Atlantic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 3.559c-3.102 0-3.836.489-5.06 1.877L0 15.232c7.143-.326 9.348 6.858 16.572 4.858L24 3.559H14zm-2.477 1.586a.608.608 0 0 1 .395.128c.204.164.164.409.164.409-.04.367-.408.611-.408.611-.327.286-.776 1.102-.776 1.102-.49.775-1.06 2.286-1.55 3.796-.653 2.286-1.063 4.408-1.104 4.612-.04.204-.122.449-.326.449-.286 0-.326-.367-.326-.408 0-.041-.367-4.49-.367-4.49s-.042-.204-.082-.204c0 0-.08-.04-.163.164l-.408.897c-.163.408-.449.246-.449.246-.245-.122-.082-.408-.082-.408l.898-2.246c.205-.49.53-.45.53-.45.285.041.287.327.287.45.04.122.326 3.43.326 3.43.04.367.082.244.082.244C8.858 9.517 10.94 5.6 10.94 5.6c.197-.34.408-.445.584-.455zm4.793 2.793c.126-.01.174.07.174.07.123.204-.164.449-.164.449-.245.286-.449.082-.449.082-.204-.163.123-.45.123-.45.138-.106.241-.146.316-.152zm2.178.394c.024 0 .037.002.037.002.368 0 .326.49.326.49l-.123 1.346c-.081.571.368.37.368.37 0-.042.122-.084.49-.247.326-.122.49-.04.572.082.082.122.04.245-.041.367-.082.163-.449.286-.734.367-.204.041-.37.123-.37.123-.49.123-1.06.368-1.06.368a28.677 28.677 0 0 0-3.55 1.795c-.042.163-.042.285-.042.367 0 0-.162 2.204-.203 2.531 0 0-.002.41.04.654.04.245.205.775-.122.979a.394.394 0 0 1-.572-.082c0-.041-.123-.163-.041-.776 0 0 .164-1.592.205-2.082l.082-1.142c-2.694 1.673-4.164 3.183-4.164 3.183-.163.164-.53.45-.776.123-.244-.326.409-.816.409-.816 1.428-1.225 3.102-2.285 4.572-3.143l.039-.367s.042-.122-.08-.04c0 0-.49.286-.858.122 0 0-.287-.123-.287-.572 0 0 .001-1.388.573-1.959 0 0 .325-.326.652-.326.204 0 .165.286-.08.49-.245.245-.286.529-.367.856 0 0-.206.939.12.898 0 0 .328.001.45-.57 0 0 .203-1.308.244-1.471 0-.163.043-.53.37-.53 0 0 .325 0 .284.245 0 0-.244 1.591-.367 2.734a34.2 34.2 0 0 1 3.592-1.795c.082-.04.041-.04.041-.04-.245-.082-.123-.614-.123-.614l.123-1.102c0-.285-.326-.123-.326-.123-.245.164-.408.45-.408.45-.123.204-.205 1.142-.205 1.142-.041.49-.327.572-.327.572-.326.123-.367-.082-.367-.082-.04-.122.041-.57.041-.57l.162-1.185c.041-.531.409-.612.409-.612.081-.04.203-.04.326 0 .122.041.205 0 .287 0 .122 0 .285-.164.285-.164.245-.214.421-.244.494-.246zm-2.486.897c.222.01.115.373.115.412-.04.04-.246 1.591-.246 1.591-.04.409-.408.49-.408.49-.327.082-.244-.245-.244-.245l.04-.327.286-1.51c.04-.326.408-.408.408-.408a.262.262 0 0 1 .049-.003zm-5.237.53c.083-.008.164.019.21.126 0 0 .08.163-.206.408 0 0-.327.327-.49.041 0 0-.121-.204.205-.45 0 0 .144-.11.281-.124zm1.57.829c.144.017.19.154.19.154.123.286-.328.49-.328.49-.408.245-.447.776-.447.776l-.082.734c-.041.53-.408.612-.408.612-.49.163-.286-.694-.286-.694.041-.204.163-1.224.163-1.224.04-.613.408-.612.367-.653.04 0 .326-.04.326-.04s.124-.042.328-.124a.343.343 0 0 1 .178-.031zm-2 .68c.1.001.292.057.231.455l-.246 1.345-.082.49s-.04.245-.244.368c0 0-.49.244-.45-.123l.247-1.96s.08-.488.488-.57c0 0 .024-.006.057-.005z" }) + ] + } + ); +}); + +exports.default = SiVirginatlantic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.d.ts new file mode 100644 index 000000000..f8ee7d929 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA0530"; +declare const SiVirginatlantic: IconType; +export { SiVirginatlantic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.mjs new file mode 100644 index 000000000..28570bdcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginatlantic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA0530"; +const SiVirginatlantic = React.forwardRef(function SiVirginatlantic2({ title = "Virgin Atlantic", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14 3.559c-3.102 0-3.836.489-5.06 1.877L0 15.232c7.143-.326 9.348 6.858 16.572 4.858L24 3.559H14zm-2.477 1.586a.608.608 0 0 1 .395.128c.204.164.164.409.164.409-.04.367-.408.611-.408.611-.327.286-.776 1.102-.776 1.102-.49.775-1.06 2.286-1.55 3.796-.653 2.286-1.063 4.408-1.104 4.612-.04.204-.122.449-.326.449-.286 0-.326-.367-.326-.408 0-.041-.367-4.49-.367-4.49s-.042-.204-.082-.204c0 0-.08-.04-.163.164l-.408.897c-.163.408-.449.246-.449.246-.245-.122-.082-.408-.082-.408l.898-2.246c.205-.49.53-.45.53-.45.285.041.287.327.287.45.04.122.326 3.43.326 3.43.04.367.082.244.082.244C8.858 9.517 10.94 5.6 10.94 5.6c.197-.34.408-.445.584-.455zm4.793 2.793c.126-.01.174.07.174.07.123.204-.164.449-.164.449-.245.286-.449.082-.449.082-.204-.163.123-.45.123-.45.138-.106.241-.146.316-.152zm2.178.394c.024 0 .037.002.037.002.368 0 .326.49.326.49l-.123 1.346c-.081.571.368.37.368.37 0-.042.122-.084.49-.247.326-.122.49-.04.572.082.082.122.04.245-.041.367-.082.163-.449.286-.734.367-.204.041-.37.123-.37.123-.49.123-1.06.368-1.06.368a28.677 28.677 0 0 0-3.55 1.795c-.042.163-.042.285-.042.367 0 0-.162 2.204-.203 2.531 0 0-.002.41.04.654.04.245.205.775-.122.979a.394.394 0 0 1-.572-.082c0-.041-.123-.163-.041-.776 0 0 .164-1.592.205-2.082l.082-1.142c-2.694 1.673-4.164 3.183-4.164 3.183-.163.164-.53.45-.776.123-.244-.326.409-.816.409-.816 1.428-1.225 3.102-2.285 4.572-3.143l.039-.367s.042-.122-.08-.04c0 0-.49.286-.858.122 0 0-.287-.123-.287-.572 0 0 .001-1.388.573-1.959 0 0 .325-.326.652-.326.204 0 .165.286-.08.49-.245.245-.286.529-.367.856 0 0-.206.939.12.898 0 0 .328.001.45-.57 0 0 .203-1.308.244-1.471 0-.163.043-.53.37-.53 0 0 .325 0 .284.245 0 0-.244 1.591-.367 2.734a34.2 34.2 0 0 1 3.592-1.795c.082-.04.041-.04.041-.04-.245-.082-.123-.614-.123-.614l.123-1.102c0-.285-.326-.123-.326-.123-.245.164-.408.45-.408.45-.123.204-.205 1.142-.205 1.142-.041.49-.327.572-.327.572-.326.123-.367-.082-.367-.082-.04-.122.041-.57.041-.57l.162-1.185c.041-.531.409-.612.409-.612.081-.04.203-.04.326 0 .122.041.205 0 .287 0 .122 0 .285-.164.285-.164.245-.214.421-.244.494-.246zm-2.486.897c.222.01.115.373.115.412-.04.04-.246 1.591-.246 1.591-.04.409-.408.49-.408.49-.327.082-.244-.245-.244-.245l.04-.327.286-1.51c.04-.326.408-.408.408-.408a.262.262 0 0 1 .049-.003zm-5.237.53c.083-.008.164.019.21.126 0 0 .08.163-.206.408 0 0-.327.327-.49.041 0 0-.121-.204.205-.45 0 0 .144-.11.281-.124zm1.57.829c.144.017.19.154.19.154.123.286-.328.49-.328.49-.408.245-.447.776-.447.776l-.082.734c-.041.53-.408.612-.408.612-.49.163-.286-.694-.286-.694.041-.204.163-1.224.163-1.224.04-.613.408-.612.367-.653.04 0 .326-.04.326-.04s.124-.042.328-.124a.343.343 0 0 1 .178-.031zm-2 .68c.1.001.292.057.231.455l-.246 1.345-.082.49s-.04.245-.244.368c0 0-.49.244-.45-.123l.247-1.96s.08-.488.488-.57c0 0 .024-.006.057-.005z" }) + ] + } + ); +}); + +export { SiVirginatlantic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.cjs new file mode 100644 index 000000000..0a9e6f54f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED1A37"; +const SiVirginmedia = React__namespace.forwardRef(function SiVirginmedia2({ title = "Virgin Media", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.225 5.021c-1.098 0-2.067.346-2.883 1.024C1.416 6.813 0 8.635 0 12c0 3.366 1.416 5.187 2.342 5.955.816.678 1.785 1.024 2.883 1.024 1.629 0 3.229-.75 4.271-1.401 2.828-1.769 5.082-5.143 5.082-5.143 1.093 1.502 2.081 2.494 3.199 3.21.687.419 1.723.914 2.787.914.725 0 1.371-.22 1.904-.677C23.487 15.008 24 13.658 24 12s-.513-3.008-1.532-3.882c-.532-.457-1.18-.677-1.904-.677-1.064 0-2.1.495-2.787.914-1.118.716-2.106 1.708-3.2 3.21 0 0-2.253-3.374-5.08-5.143-1.043-.651-2.643-1.401-4.272-1.401Zm0 .513c1.51 0 3.011.722 4 1.324 1.69 1.084 3.25 2.647 5.036 5.142-1.785 2.494-3.346 4.057-5.037 5.142-.988.602-2.49 1.323-3.999 1.323-.974 0-1.833-.305-2.554-.904C1.085 16.243.514 13.916.514 12s.571-4.243 2.157-5.561c.721-.6 1.58-.905 2.554-.905zm15.34 2.42c.6 0 1.13.188 1.575.558.993.828 1.347 2.273 1.347 3.488 0 1.215-.354 2.66-1.347 3.488-.444.37-.974.557-1.576.557-.945 0-1.889-.454-2.515-.835-1.067-.685-2.01-1.63-3.154-3.21 1.144-1.581 2.087-2.526 3.154-3.21.626-.381 1.57-.836 2.515-.836zm-17.6 3.505-.01.013.01-.01v-.003z" }) + ] + } + ); +}); + +exports.default = SiVirginmedia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.d.ts new file mode 100644 index 000000000..bc9dcd6f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED1A37"; +declare const SiVirginmedia: IconType; +export { SiVirginmedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.mjs new file mode 100644 index 000000000..865c49d8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirginmedia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED1A37"; +const SiVirginmedia = React.forwardRef(function SiVirginmedia2({ title = "Virgin Media", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.225 5.021c-1.098 0-2.067.346-2.883 1.024C1.416 6.813 0 8.635 0 12c0 3.366 1.416 5.187 2.342 5.955.816.678 1.785 1.024 2.883 1.024 1.629 0 3.229-.75 4.271-1.401 2.828-1.769 5.082-5.143 5.082-5.143 1.093 1.502 2.081 2.494 3.199 3.21.687.419 1.723.914 2.787.914.725 0 1.371-.22 1.904-.677C23.487 15.008 24 13.658 24 12s-.513-3.008-1.532-3.882c-.532-.457-1.18-.677-1.904-.677-1.064 0-2.1.495-2.787.914-1.118.716-2.106 1.708-3.2 3.21 0 0-2.253-3.374-5.08-5.143-1.043-.651-2.643-1.401-4.272-1.401Zm0 .513c1.51 0 3.011.722 4 1.324 1.69 1.084 3.25 2.647 5.036 5.142-1.785 2.494-3.346 4.057-5.037 5.142-.988.602-2.49 1.323-3.999 1.323-.974 0-1.833-.305-2.554-.904C1.085 16.243.514 13.916.514 12s.571-4.243 2.157-5.561c.721-.6 1.58-.905 2.554-.905zm15.34 2.42c.6 0 1.13.188 1.575.558.993.828 1.347 2.273 1.347 3.488 0 1.215-.354 2.66-1.347 3.488-.444.37-.974.557-1.576.557-.945 0-1.889-.454-2.515-.835-1.067-.685-2.01-1.63-3.154-3.21 1.144-1.581 2.087-2.526 3.154-3.21.626-.381 1.57-.836 2.515-.836zm-17.6 3.505-.01.013.01-.01v-.003z" }) + ] + } + ); +}); + +export { SiVirginmedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.cjs new file mode 100644 index 000000000..7d6b359d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F61B4"; +const SiVirtualbox = React__namespace.forwardRef(function SiVirtualbox2({ title = "VirtualBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 1.758 5.182 20c.129.455.25.691.421.945.063.092.13.179.202.264.173.204.37.378.59.525.243.163.49.286.763.371.324.1.61.137.99.137h4.327l1.918-6.615h6.798v3.699a.11.11 0 0 1-.109.11h-4.88l-.813 2.806h5.654a2.92 2.92 0 0 0 1.95-.725A2.903 2.903 0 0 0 24 19.285v-6.47H12.28l-1.919 6.614H7.937L3.715 4.564h2.922l1.546 5.444H11.1l-2.343-8.25zm15.496 0-2.4 8.25H24v-5.29a2.962 2.962 0 0 0-1.825-2.741 3.044 3.044 0 0 0-1.129-.22zm2.11 2.806h3.476a.11.11 0 0 1 .11.112V7.2h-4.354z" }) + ] + } + ); +}); + +exports.default = SiVirtualbox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.d.ts new file mode 100644 index 000000000..d630b9e4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F61B4"; +declare const SiVirtualbox: IconType; +export { SiVirtualbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.mjs new file mode 100644 index 000000000..d73263f66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirtualbox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F61B4"; +const SiVirtualbox = React.forwardRef(function SiVirtualbox2({ title = "VirtualBox", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 1.758 5.182 20c.129.455.25.691.421.945.063.092.13.179.202.264.173.204.37.378.59.525.243.163.49.286.763.371.324.1.61.137.99.137h4.327l1.918-6.615h6.798v3.699a.11.11 0 0 1-.109.11h-4.88l-.813 2.806h5.654a2.92 2.92 0 0 0 1.95-.725A2.903 2.903 0 0 0 24 19.285v-6.47H12.28l-1.919 6.614H7.937L3.715 4.564h2.922l1.546 5.444H11.1l-2.343-8.25zm15.496 0-2.4 8.25H24v-5.29a2.962 2.962 0 0 0-1.825-2.741 3.044 3.044 0 0 0-1.129-.22zm2.11 2.806h3.476a.11.11 0 0 1 .11.112V7.2h-4.354z" }) + ] + } + ); +}); + +export { SiVirtualbox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.cjs new file mode 100644 index 000000000..282b274f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#394EFF"; +const SiVirustotal = React__namespace.forwardRef(function SiVirustotal2({ title = "VirusTotal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.87 12L0 22.68h24V1.32H0zm10.73 8.52H5.28l8.637-8.448L5.28 3.48H21.6z" }) + ] + } + ); +}); + +exports.default = SiVirustotal; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.d.ts new file mode 100644 index 000000000..1e2375c0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#394EFF"; +declare const SiVirustotal: IconType; +export { SiVirustotal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.mjs new file mode 100644 index 000000000..35b2726a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVirustotal.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#394EFF"; +const SiVirustotal = React.forwardRef(function SiVirustotal2({ title = "VirusTotal", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.87 12L0 22.68h24V1.32H0zm10.73 8.52H5.28l8.637-8.448L5.28 3.48H21.6z" }) + ] + } + ); +}); + +export { SiVirustotal as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.cjs new file mode 100644 index 000000000..3b94e3b9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A1F71"; +const SiVisa = React__namespace.forwardRef(function SiVisa2({ title = "Visa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.112 8.262L5.97 15.758H3.92L2.374 9.775c-.094-.368-.175-.503-.461-.658C1.447 8.864.677 8.627 0 8.479l.046-.217h3.3a.904.904 0 01.894.764l.817 4.338 2.018-5.102zm8.033 5.049c.008-1.979-2.736-2.088-2.717-2.972.006-.269.262-.555.822-.628a3.66 3.66 0 011.913.336l.34-1.59a5.207 5.207 0 00-1.814-.333c-1.917 0-3.266 1.02-3.278 2.479-.012 1.079.963 1.68 1.698 2.04.756.367 1.01.603 1.006.931-.005.504-.602.725-1.16.734-.975.015-1.54-.263-1.992-.473l-.351 1.642c.453.208 1.289.39 2.156.398 2.037 0 3.37-1.006 3.377-2.564m5.061 2.447H24l-1.565-7.496h-1.656a.883.883 0 00-.826.55l-2.909 6.946h2.036l.405-1.12h2.488zm-2.163-2.656l1.02-2.815.588 2.815zm-8.16-4.84l-1.603 7.496H8.34l1.605-7.496z" }) + ] + } + ); +}); + +exports.default = SiVisa; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.d.ts new file mode 100644 index 000000000..59f026c41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A1F71"; +declare const SiVisa: IconType; +export { SiVisa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.mjs new file mode 100644 index 000000000..f855b2d76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisa.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A1F71"; +const SiVisa = React.forwardRef(function SiVisa2({ title = "Visa", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.112 8.262L5.97 15.758H3.92L2.374 9.775c-.094-.368-.175-.503-.461-.658C1.447 8.864.677 8.627 0 8.479l.046-.217h3.3a.904.904 0 01.894.764l.817 4.338 2.018-5.102zm8.033 5.049c.008-1.979-2.736-2.088-2.717-2.972.006-.269.262-.555.822-.628a3.66 3.66 0 011.913.336l.34-1.59a5.207 5.207 0 00-1.814-.333c-1.917 0-3.266 1.02-3.278 2.479-.012 1.079.963 1.68 1.698 2.04.756.367 1.01.603 1.006.931-.005.504-.602.725-1.16.734-.975.015-1.54-.263-1.992-.473l-.351 1.642c.453.208 1.289.39 2.156.398 2.037 0 3.37-1.006 3.377-2.564m5.061 2.447H24l-1.565-7.496h-1.656a.883.883 0 00-.826.55l-2.909 6.946h2.036l.405-1.12h2.488zm-2.163-2.656l1.02-2.815.588 2.815zm-8.16-4.84l-1.603 7.496H8.34l1.605-7.496z" }) + ] + } + ); +}); + +export { SiVisa as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.cjs new file mode 100644 index 000000000..ce7880481 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC3333"; +const SiVisualparadigm = React__namespace.forwardRef(function SiVisualparadigm2({ title = "Visual Paradigm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M 1.92 10.08 C 1.92 10.117 11.916 20.132 11.973 20.15 C 11.987 20.154 15.804 16.353 15.804 16.353 C 15.804 16.353 8.138 8.667 8.138 8.642 C 8.138 8.609 11.944 4.803 11.944 4.803 C 11.944 4.803 15.787 8.661 15.787 8.686 C 15.787 8.703 12.98 11.53 12.98 11.53 L 16.804 15.354 L 22.079 10.079 C 22.079 10.079 13.674 1.674 11.981 0 M 3.787 13.036 C 3.764 13.036 2.366 14.424 2.366 14.424 C 2.366 14.424 11.96 24 11.987 24 C 12.013 24 21.601 14.423 21.601 14.423 C 21.601 14.423 20.2 13.036 20.178 13.036 C 20.158 13.036 11.982 21.193 11.982 21.193 C 11.982 21.193 3.805 13.036 3.787 13.036 Z" }) + ] + } + ); +}); + +exports.default = SiVisualparadigm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.d.ts new file mode 100644 index 000000000..32f065498 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC3333"; +declare const SiVisualparadigm: IconType; +export { SiVisualparadigm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.mjs new file mode 100644 index 000000000..3b4563c4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisualparadigm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC3333"; +const SiVisualparadigm = React.forwardRef(function SiVisualparadigm2({ title = "Visual Paradigm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M 1.92 10.08 C 1.92 10.117 11.916 20.132 11.973 20.15 C 11.987 20.154 15.804 16.353 15.804 16.353 C 15.804 16.353 8.138 8.667 8.138 8.642 C 8.138 8.609 11.944 4.803 11.944 4.803 C 11.944 4.803 15.787 8.661 15.787 8.686 C 15.787 8.703 12.98 11.53 12.98 11.53 L 16.804 15.354 L 22.079 10.079 C 22.079 10.079 13.674 1.674 11.981 0 M 3.787 13.036 C 3.764 13.036 2.366 14.424 2.366 14.424 C 2.366 14.424 11.96 24 11.987 24 C 12.013 24 21.601 14.423 21.601 14.423 C 21.601 14.423 20.2 13.036 20.178 13.036 C 20.158 13.036 11.982 21.193 11.982 21.193 C 11.982 21.193 3.805 13.036 3.787 13.036 Z" }) + ] + } + ); +}); + +export { SiVisualparadigm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.cjs new file mode 100644 index 000000000..da297d521 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1231"; +const SiVisx = React__namespace.forwardRef(function SiVisx2({ title = "visx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.00195 0 12 11.51953 23.99805 0h-5.8711L12 6.08984 5.87305 0Zm23.9961 0L12.47852 11.99805l11.51953 11.99804V18.125l-6.08985-6.12695 6.08985-6.12696ZM.00195.0039V5.875l6.08985 6.12695-6.08985 6.12696V24l11.5039-11.99805Zm0 23.9961h5.8711L12 17.91016 18.12695 24h5.8711L12 12.4707Z" }) + ] + } + ); +}); + +exports.default = SiVisx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.d.ts new file mode 100644 index 000000000..ae8ff0bec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1231"; +declare const SiVisx: IconType; +export { SiVisx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.mjs new file mode 100644 index 000000000..e4db4010e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVisx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1231"; +const SiVisx = React.forwardRef(function SiVisx2({ title = "visx", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.00195 0 12 11.51953 23.99805 0h-5.8711L12 6.08984 5.87305 0Zm23.9961 0L12.47852 11.99805l11.51953 11.99804V18.125l-6.08985-6.12695 6.08985-6.12696ZM.00195.0039V5.875l6.08985 6.12695-6.08985 6.12696V24l11.5039-11.99805Zm0 23.9961h5.8711L12 17.91016 18.12695 24h5.8711L12 12.4707Z" }) + ] + } + ); +}); + +export { SiVisx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVite.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVite.cjs new file mode 100644 index 000000000..011eb082a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVite.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9135FF"; +const SiVite = React__namespace.forwardRef(function SiVite2({ title = "Vite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.056 23.238a.57.57 0 0 1-1.02-.355v-5.202c0-.63-.512-1.143-1.144-1.143H5.148a.57.57 0 0 1-.464-.903l3.777-5.29c.54-.753 0-1.804-.93-1.804H.57a.574.574 0 0 1-.543-.746.6.6 0 0 1 .08-.157L5.008.78a.57.57 0 0 1 .467-.24h14.589a.57.57 0 0 1 .466.903l-3.778 5.29c-.54.755 0 1.806.93 1.806h5.745c.238 0 .424.138.513.322a.56.56 0 0 1-.063.603z" }) + ] + } + ); +}); + +exports.default = SiVite; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVite.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVite.d.ts new file mode 100644 index 000000000..132ba0ab0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVite.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9135FF"; +declare const SiVite: IconType; +export { SiVite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVite.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVite.mjs new file mode 100644 index 000000000..63a561bf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVite.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9135FF"; +const SiVite = React.forwardRef(function SiVite2({ title = "Vite", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.056 23.238a.57.57 0 0 1-1.02-.355v-5.202c0-.63-.512-1.143-1.144-1.143H5.148a.57.57 0 0 1-.464-.903l3.777-5.29c.54-.753 0-1.804-.93-1.804H.57a.574.574 0 0 1-.543-.746.6.6 0 0 1 .08-.157L5.008.78a.57.57 0 0 1 .467-.24h14.589a.57.57 0 0 1 .466.903l-3.778 5.29c-.54.755 0 1.806.93 1.806h5.745c.238 0 .424.138.513.322a.56.56 0 0 1-.063.603z" }) + ] + } + ); +}); + +export { SiVite as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.cjs new file mode 100644 index 000000000..b54a1140d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5C73E7"; +const SiVitepress = React__namespace.forwardRef(function SiVitepress2({ title = "VitePress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.029.0014a1.8382 1.8382 0 0 0-.1875.0176L4.0845 1.8334C3.0779 1.9767 2.3767 2.9196 2.518 3.939l2.5604 18.457c.1415 1.0193 1.0735 1.7292 2.08 1.586l12.757-1.8165c1.0066-.1433 1.7078-1.0861 1.5664-2.1054L18.9215 1.6049C18.7889.6493 17.961-.035 17.029.0014Zm.127.9316c.4271.027.7915.3549.8534.8008l2.5604 18.457c.0707.5097-.28.9812-.7831 1.0528L7.0296 23.058c-.5033.0717-.9683-.2833-1.039-.793L3.4302 3.81c-.0707-.5097.2799-.9811.7832-1.0528L16.9704.9408A.9066.9066 0 0 1 17.156.933zm-3.6443 5.3541L9.9668 7.5215a.1364.1364 0 0 0-.0898.1406l.3183 3.8692c.0075.0911.0994.1497.1836.1171l.9824-.3789c.092-.0355.1894.0373.1836.1368l-.0898 1.539c-.006.1036.1005.1763.1933.1328l.5997-.2812c.093-.0435.1976.031.1914.1347l-.1465 2.418c-.0092.1513.195.2037.2578.0664l.041-.0918 2.123-6.4238c.0355-.1076-.0658-.2104-.1718-.1738l-1.0176.3515c-.0955.033-.1917-.0491-.1777-.1504l.3437-2.4902a.1368.1368 0 0 0-.1426-.1562c-.016-.001-.0422.0084-.037.0058zm2.8223.7988a.2717.2717 0 0 0-.0801.0137L14 7.8496l-.0762.5606.4551-.1563c.5074-.1627.973.2955.8106.8027l-2.131 6.4493-.0526.1171c-.1268.2776-.4416.4304-.7383.3516-.2904-.077-.4911-.353-.4727-.6562l.1094-1.8086c-.5057.2578-.9731-.1473-.9473-.5938l.0567-.9765-.4532.1757c-.4144.1536-.8298-.1366-.8632-.543L9.453 8.5997l-3.0625-.123c-.2294-.0093-.3635.2552-.2226.4394l6.291 8.2305c.1293.169.391.1302.4668-.0684l3.668-9.6191c.072-.1889-.0765-.377-.2598-.373z" }) + ] + } + ); +}); + +exports.default = SiVitepress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.d.ts new file mode 100644 index 000000000..00918e6b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5C73E7"; +declare const SiVitepress: IconType; +export { SiVitepress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.mjs new file mode 100644 index 000000000..9efe21859 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitepress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5C73E7"; +const SiVitepress = React.forwardRef(function SiVitepress2({ title = "VitePress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.029.0014a1.8382 1.8382 0 0 0-.1875.0176L4.0845 1.8334C3.0779 1.9767 2.3767 2.9196 2.518 3.939l2.5604 18.457c.1415 1.0193 1.0735 1.7292 2.08 1.586l12.757-1.8165c1.0066-.1433 1.7078-1.0861 1.5664-2.1054L18.9215 1.6049C18.7889.6493 17.961-.035 17.029.0014Zm.127.9316c.4271.027.7915.3549.8534.8008l2.5604 18.457c.0707.5097-.28.9812-.7831 1.0528L7.0296 23.058c-.5033.0717-.9683-.2833-1.039-.793L3.4302 3.81c-.0707-.5097.2799-.9811.7832-1.0528L16.9704.9408A.9066.9066 0 0 1 17.156.933zm-3.6443 5.3541L9.9668 7.5215a.1364.1364 0 0 0-.0898.1406l.3183 3.8692c.0075.0911.0994.1497.1836.1171l.9824-.3789c.092-.0355.1894.0373.1836.1368l-.0898 1.539c-.006.1036.1005.1763.1933.1328l.5997-.2812c.093-.0435.1976.031.1914.1347l-.1465 2.418c-.0092.1513.195.2037.2578.0664l.041-.0918 2.123-6.4238c.0355-.1076-.0658-.2104-.1718-.1738l-1.0176.3515c-.0955.033-.1917-.0491-.1777-.1504l.3437-2.4902a.1368.1368 0 0 0-.1426-.1562c-.016-.001-.0422.0084-.037.0058zm2.8223.7988a.2717.2717 0 0 0-.0801.0137L14 7.8496l-.0762.5606.4551-.1563c.5074-.1627.973.2955.8106.8027l-2.131 6.4493-.0526.1171c-.1268.2776-.4416.4304-.7383.3516-.2904-.077-.4911-.353-.4727-.6562l.1094-1.8086c-.5057.2578-.9731-.1473-.9473-.5938l.0567-.9765-.4532.1757c-.4144.1536-.8298-.1366-.8632-.543L9.453 8.5997l-3.0625-.123c-.2294-.0093-.3635.2552-.2226.4394l6.291 8.2305c.1293.169.391.1302.4668-.0684l3.668-9.6191c.072-.1889-.0765-.377-.2598-.373z" }) + ] + } + ); +}); + +export { SiVitepress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.cjs new file mode 100644 index 000000000..5fdb9148d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F16728"; +const SiVitess = React__namespace.forwardRef(function SiVitess2({ title = "Vitess", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.206 1.045-7.217 13.186L4.817 1.045H0l11.904 21.91L24 1.045h-4.794Z" }) + ] + } + ); +}); + +exports.default = SiVitess; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.d.ts new file mode 100644 index 000000000..22e1e9473 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F16728"; +declare const SiVitess: IconType; +export { SiVitess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.mjs new file mode 100644 index 000000000..d7d359ed1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitess.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F16728"; +const SiVitess = React.forwardRef(function SiVitess2({ title = "Vitess", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.206 1.045-7.217 13.186L4.817 1.045H0l11.904 21.91L24 1.045h-4.794Z" }) + ] + } + ); +}); + +export { SiVitess as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.cjs new file mode 100644 index 000000000..e9f20062d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00FF74"; +const SiVitest = React__namespace.forwardRef(function SiVitest2({ title = "Vitest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.545 23.3a.613.613 0 0 1-.895.197L.252 15.936A.61.61 0 0 1 0 15.439V6.325c0-.502.569-.792.975-.497l6.358 4.624c.594.433 1.432.25 1.793-.39L14.393.7a.62.62 0 0 1 .535-.314h8.455a.613.613 0 0 1 .537.916z" }) + ] + } + ); +}); + +exports.default = SiVitest; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.d.ts new file mode 100644 index 000000000..14abac19a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00FF74"; +declare const SiVitest: IconType; +export { SiVitest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.mjs new file mode 100644 index 000000000..ced01818e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVitest.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00FF74"; +const SiVitest = React.forwardRef(function SiVitest2({ title = "Vitest", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.545 23.3a.613.613 0 0 1-.895.197L.252 15.936A.61.61 0 0 1 0 15.439V6.325c0-.502.569-.792.975-.497l6.358 4.624c.594.433 1.432.25 1.793-.39L14.393.7a.62.62 0 0 1 .535-.314h8.455a.613.613 0 0 1 .537.916z" }) + ] + } + ); +}); + +export { SiVitest as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.cjs new file mode 100644 index 000000000..98ce6cbde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EF3939"; +const SiVivaldi = React__namespace.forwardRef(function SiVivaldi2({ title = "Vivaldi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C6.75 0 3.817 0 1.912 1.904.007 3.81 0 6.75 0 12s0 8.175 1.912 10.08C3.825 23.985 6.75 24 12 24c5.25 0 8.183 0 10.088-1.904C23.993 20.19 24 17.25 24 12s0-8.175-1.912-10.08C20.175.015 17.25 0 12 0zm-.168 3a9 9 0 016.49 2.648 9 9 0 010 12.704A9 9 0 1111.832 3zM7.568 7.496a1.433 1.433 0 00-.142.004A1.5 1.5 0 006.21 9.75l1.701 3c.93 1.582 1.839 3.202 2.791 4.822a1.417 1.417 0 001.41.75 1.5 1.5 0 001.223-.81l4.447-7.762A1.56 1.56 0 0018 8.768a1.5 1.5 0 10-2.828.914 2.513 2.513 0 01.256 1.119v.246a2.393 2.393 0 01-2.52 2.13 2.348 2.348 0 01-1.965-1.214c-.307-.51-.6-1.035-.9-1.553-.42-.72-.826-1.41-1.246-2.16a1.433 1.433 0 00-1.229-.754Z" }) + ] + } + ); +}); + +exports.default = SiVivaldi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.d.ts new file mode 100644 index 000000000..b9f3aa558 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EF3939"; +declare const SiVivaldi: IconType; +export { SiVivaldi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.mjs new file mode 100644 index 000000000..ced3d4f61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivaldi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EF3939"; +const SiVivaldi = React.forwardRef(function SiVivaldi2({ title = "Vivaldi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C6.75 0 3.817 0 1.912 1.904.007 3.81 0 6.75 0 12s0 8.175 1.912 10.08C3.825 23.985 6.75 24 12 24c5.25 0 8.183 0 10.088-1.904C23.993 20.19 24 17.25 24 12s0-8.175-1.912-10.08C20.175.015 17.25 0 12 0zm-.168 3a9 9 0 016.49 2.648 9 9 0 010 12.704A9 9 0 1111.832 3zM7.568 7.496a1.433 1.433 0 00-.142.004A1.5 1.5 0 006.21 9.75l1.701 3c.93 1.582 1.839 3.202 2.791 4.822a1.417 1.417 0 001.41.75 1.5 1.5 0 001.223-.81l4.447-7.762A1.56 1.56 0 0018 8.768a1.5 1.5 0 10-2.828.914 2.513 2.513 0 01.256 1.119v.246a2.393 2.393 0 01-2.52 2.13 2.348 2.348 0 01-1.965-1.214c-.307-.51-.6-1.035-.9-1.553-.42-.72-.826-1.41-1.246-2.16a1.433 1.433 0 00-1.229-.754Z" }) + ] + } + ); +}); + +export { SiVivaldi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.cjs new file mode 100644 index 000000000..3c3394a95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1F263A"; +const SiVivawallet = React__namespace.forwardRef(function SiVivawallet2({ title = "Viva Wallet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.275 17.428c.376.777.949 1.223 1.572 1.228h.01c.619 0 1.191-.435 1.575-1.194l.504-1.08-4.9-10.387-3.388 1.58zm6.367.033c.382.76.957 1.195 1.575 1.195h.006c.625-.004 1.2-.45 1.574-1.226l4.567-9.852-3.389-1.581-4.844 10.381zm-1.605 1.206c-.74 1.245-1.905 1.977-3.18 1.977h-.022c-1.391-.01-2.643-.89-3.353-2.355C3.657 14.397 1.828 10.507 0 6.617l6.99-3.259 5.039 10.683 4.985-10.685L24 6.613 18.592 18.29c-.709 1.465-1.962 2.345-3.353 2.355h-.022c-1.275 0-2.442-.732-3.18-1.977Z" }) + ] + } + ); +}); + +exports.default = SiVivawallet; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.d.ts new file mode 100644 index 000000000..fbf078698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1F263A"; +declare const SiVivawallet: IconType; +export { SiVivawallet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.mjs new file mode 100644 index 000000000..a4d9c1d0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivawallet.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1F263A"; +const SiVivawallet = React.forwardRef(function SiVivawallet2({ title = "Viva Wallet", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.275 17.428c.376.777.949 1.223 1.572 1.228h.01c.619 0 1.191-.435 1.575-1.194l.504-1.08-4.9-10.387-3.388 1.58zm6.367.033c.382.76.957 1.195 1.575 1.195h.006c.625-.004 1.2-.45 1.574-1.226l4.567-9.852-3.389-1.581-4.844 10.381zm-1.605 1.206c-.74 1.245-1.905 1.977-3.18 1.977h-.022c-1.391-.01-2.643-.89-3.353-2.355C3.657 14.397 1.828 10.507 0 6.617l6.99-3.259 5.039 10.683 4.985-10.685L24 6.613 18.592 18.29c-.709 1.465-1.962 2.345-3.353 2.355h-.022c-1.275 0-2.442-.732-3.18-1.977Z" }) + ] + } + ); +}); + +export { SiVivawallet as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.cjs new file mode 100644 index 000000000..c3543fea9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A61A30"; +const SiVivino = React__namespace.forwardRef(function SiVivino2({ title = "Vivino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.476 18.034c0-1.087.889-1.989 1.988-1.989 1.1 0 1.989.902 1.989 1.989 0 1.1-.89 1.989-1.989 1.989-1.1 0-1.988-.89-1.988-1.99M12.043 24c-1.1 0-1.988-.902-1.988-1.989 0-1.099.889-1.988 1.988-1.988 1.087 0 1.989.889 1.989 1.988A2.003 2.003 0 0112.043 24M5.2 14.007c0-1.087.89-1.988 1.989-1.988 1.087 0 1.989.901 1.989 1.988 0 1.1-.902 1.989-1.99 1.989-1.098 0-1.988-.89-1.988-1.989m4.385-5.892c1.1 0 1.989.902 1.989 1.989 0 1.1-.89 1.976-1.989 1.976-1.1 0-1.988-.877-1.988-1.976 0-1.087.889-1.989 1.988-1.989m2.384-4.187c1.1 0 1.989.89 1.989 1.989 0 1.087-.89 1.988-1.989 1.988A2.003 2.003 0 019.98 5.917c0-1.1.902-1.99 1.99-1.99M14.401 0c1.1 0 1.99.89 1.99 1.989 0 1.087-.89 1.988-1.99 1.988a2.003 2.003 0 01-1.988-1.988c0-1.1.901-1.989 1.988-1.989M11.6 18.034c0 1.1-.89 1.989-1.99 1.989a1.995 1.995 0 01-1.988-1.99c0-1.086.902-1.988 1.989-1.988 1.1 0 1.989.902 1.989 1.989m-1.544-4.027c0-1.087.889-1.988 1.988-1.988 1.087 0 1.989.901 1.989 1.988 0 1.1-.902 1.989-1.989 1.989-1.1 0-1.988-.89-1.988-1.989m4.385-1.927c-1.1 0-1.99-.877-1.99-1.976 0-1.087.89-1.989 1.99-1.989 1.099 0 1.988.902 1.988 1.989 0 1.1-.89 1.976-1.988 1.976m4.36 1.927c0 1.1-.89 1.989-1.989 1.989-1.1 0-1.989-.89-1.989-1.989 0-1.087.89-1.988 1.99-1.988 1.098 0 1.988.901 1.988 1.988Z" }) + ] + } + ); +}); + +exports.default = SiVivino; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.d.ts new file mode 100644 index 000000000..e85e721a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A61A30"; +declare const SiVivino: IconType; +export { SiVivino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.mjs new file mode 100644 index 000000000..6b0b28ab2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivino.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A61A30"; +const SiVivino = React.forwardRef(function SiVivino2({ title = "Vivino", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.476 18.034c0-1.087.889-1.989 1.988-1.989 1.1 0 1.989.902 1.989 1.989 0 1.1-.89 1.989-1.989 1.989-1.1 0-1.988-.89-1.988-1.99M12.043 24c-1.1 0-1.988-.902-1.988-1.989 0-1.099.889-1.988 1.988-1.988 1.087 0 1.989.889 1.989 1.988A2.003 2.003 0 0112.043 24M5.2 14.007c0-1.087.89-1.988 1.989-1.988 1.087 0 1.989.901 1.989 1.988 0 1.1-.902 1.989-1.99 1.989-1.098 0-1.988-.89-1.988-1.989m4.385-5.892c1.1 0 1.989.902 1.989 1.989 0 1.1-.89 1.976-1.989 1.976-1.1 0-1.988-.877-1.988-1.976 0-1.087.889-1.989 1.988-1.989m2.384-4.187c1.1 0 1.989.89 1.989 1.989 0 1.087-.89 1.988-1.989 1.988A2.003 2.003 0 019.98 5.917c0-1.1.902-1.99 1.99-1.99M14.401 0c1.1 0 1.99.89 1.99 1.989 0 1.087-.89 1.988-1.99 1.988a2.003 2.003 0 01-1.988-1.988c0-1.1.901-1.989 1.988-1.989M11.6 18.034c0 1.1-.89 1.989-1.99 1.989a1.995 1.995 0 01-1.988-1.99c0-1.086.902-1.988 1.989-1.988 1.1 0 1.989.902 1.989 1.989m-1.544-4.027c0-1.087.889-1.988 1.988-1.988 1.087 0 1.989.901 1.989 1.988 0 1.1-.902 1.989-1.989 1.989-1.1 0-1.988-.89-1.988-1.989m4.385-1.927c-1.1 0-1.99-.877-1.99-1.976 0-1.087.89-1.989 1.99-1.989 1.099 0 1.988.902 1.988 1.989 0 1.1-.89 1.976-1.988 1.976m4.36 1.927c0 1.1-.89 1.989-1.989 1.989-1.1 0-1.989-.89-1.989-1.989 0-1.087.89-1.988 1.99-1.988 1.098 0 1.988.901 1.988 1.988Z" }) + ] + } + ); +}); + +export { SiVivino as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.cjs new file mode 100644 index 000000000..bc897d250 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212721"; +const SiVivint = React__namespace.forwardRef(function SiVivint2({ title = "Vivint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.102 2.04a.81.81 0 0 0-.553.218L.514 9.756A1.62 1.62 0 0 0 0 10.939V21.15c0 .447.362.81.809.81h16.584a.81.81 0 0 0 .808-.81V10.94a1.62 1.62 0 0 0-.514-1.184l-8.035-7.5a.804.804 0 0 0-.55-.217zm0 4.964 5.252 4.904v6.203H3.848v-6.203l5.254-4.904zM21.648 17.35a2.305 2.305 0 0 0-2.26 2.304 2.305 2.305 0 0 0 2.307 2.307A2.305 2.305 0 0 0 24 19.654a2.305 2.305 0 0 0-2.305-2.304 2.305 2.305 0 0 0-.047 0z" }) + ] + } + ); +}); + +exports.default = SiVivint; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.d.ts new file mode 100644 index 000000000..ae695313e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212721"; +declare const SiVivint: IconType; +export { SiVivint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.mjs new file mode 100644 index 000000000..45d060ac1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivint.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212721"; +const SiVivint = React.forwardRef(function SiVivint2({ title = "Vivint", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.102 2.04a.81.81 0 0 0-.553.218L.514 9.756A1.62 1.62 0 0 0 0 10.939V21.15c0 .447.362.81.809.81h16.584a.81.81 0 0 0 .808-.81V10.94a1.62 1.62 0 0 0-.514-1.184l-8.035-7.5a.804.804 0 0 0-.55-.217zm0 4.964 5.252 4.904v6.203H3.848v-6.203l5.254-4.904zM21.648 17.35a2.305 2.305 0 0 0-2.26 2.304 2.305 2.305 0 0 0 2.307 2.307A2.305 2.305 0 0 0 24 19.654a2.305 2.305 0 0 0-2.305-2.304 2.305 2.305 0 0 0-.047 0z" }) + ] + } + ); +}); + +export { SiVivint as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.cjs new file mode 100644 index 000000000..82279e404 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#415FFF"; +const SiVivo = React__namespace.forwardRef(function SiVivo2({ title = "vivo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.604 14.101c-1.159 0-1.262-.95-1.262-1.24 0-.29.103-1.242 1.262-1.242h2.062c1.16 0 1.263.951 1.263 1.242 0 .29-.104 1.24-1.263 1.24m-2.062-3.527c-2.142 0-2.333 1.752-2.333 2.287 0 .535.19 2.286 2.333 2.286h2.062c2.143 0 2.334-1.751 2.334-2.286 0-.535-.19-2.287-2.334-2.287m-5.477.107c-.286 0-.345.05-.456.213-.11.164-2.022 3.082-2.022 3.082-.06.09-.126.126-.206.126-.08 0-.145-.036-.206-.126 0 0-1.912-2.918-2.022-3.082-.11-.164-.17-.213-.456-.213h-.668c-.154 0-.224.12-.127.267l2.283 3.467c.354.521.614.732 1.196.732s.842-.21 1.196-.732l2.284-3.467c.096-.146.026-.267-.128-.267m-8.876.284c0-.203.08-.284.283-.284h.505c.203 0 .283.08.283.283v3.9c0 .202-.08.283-.283.283h-.505c-.203 0-.283-.08-.283-.283zm-1.769-.285c-.287 0-.346.05-.456.213-.11.164-2.022 3.082-2.022 3.082-.061.09-.126.126-.206.126-.08 0-.145-.036-.206-.126 0 0-1.912-2.918-2.023-3.082-.11-.164-.169-.213-.455-.213H.175c-.171 0-.224.12-.127.267l2.283 3.467c.355.521.615.732 1.197.732.582 0 .842-.21 1.196-.732l2.283-3.467c.097-.146.044-.267-.127-.267m1.055-.893c-.165-.164-.165-.295 0-.46l.351-.351c.165-.165.296-.165.46 0l.352.351c.165.165.165.296 0 .46l-.352.352c-.164.165-.295.165-.46 0z" }) + ] + } + ); +}); + +exports.default = SiVivo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.d.ts new file mode 100644 index 000000000..baa553e82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#415FFF"; +declare const SiVivo: IconType; +export { SiVivo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.mjs new file mode 100644 index 000000000..3a03d8311 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVivo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#415FFF"; +const SiVivo = React.forwardRef(function SiVivo2({ title = "vivo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.604 14.101c-1.159 0-1.262-.95-1.262-1.24 0-.29.103-1.242 1.262-1.242h2.062c1.16 0 1.263.951 1.263 1.242 0 .29-.104 1.24-1.263 1.24m-2.062-3.527c-2.142 0-2.333 1.752-2.333 2.287 0 .535.19 2.286 2.333 2.286h2.062c2.143 0 2.334-1.751 2.334-2.286 0-.535-.19-2.287-2.334-2.287m-5.477.107c-.286 0-.345.05-.456.213-.11.164-2.022 3.082-2.022 3.082-.06.09-.126.126-.206.126-.08 0-.145-.036-.206-.126 0 0-1.912-2.918-2.022-3.082-.11-.164-.17-.213-.456-.213h-.668c-.154 0-.224.12-.127.267l2.283 3.467c.354.521.614.732 1.196.732s.842-.21 1.196-.732l2.284-3.467c.096-.146.026-.267-.128-.267m-8.876.284c0-.203.08-.284.283-.284h.505c.203 0 .283.08.283.283v3.9c0 .202-.08.283-.283.283h-.505c-.203 0-.283-.08-.283-.283zm-1.769-.285c-.287 0-.346.05-.456.213-.11.164-2.022 3.082-2.022 3.082-.061.09-.126.126-.206.126-.08 0-.145-.036-.206-.126 0 0-1.912-2.918-2.023-3.082-.11-.164-.169-.213-.455-.213H.175c-.171 0-.224.12-.127.267l2.283 3.467c.355.521.615.732 1.197.732.582 0 .842-.21 1.196-.732l2.283-3.467c.097-.146.044-.267-.127-.267m1.055-.893c-.165-.164-.165-.295 0-.46l.351-.351c.165-.165.296-.165.46 0l.352.351c.165.165.165.296 0 .46l-.352.352c-.164.165-.295.165-.46 0z" }) + ] + } + ); +}); + +export { SiVivo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVk.cjs new file mode 100644 index 000000000..044446755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0077FF"; +const SiVk = React__namespace.forwardRef(function SiVk2({ title = "VK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9.489.004.729-.003h3.564l.73.003.914.01.433.007.418.011.403.014.388.016.374.021.36.025.345.03.333.033c1.74.196 2.933.616 3.833 1.516.9.9 1.32 2.092 1.516 3.833l.034.333.029.346.025.36.02.373.025.588.012.41.013.644.009.915.004.98-.001 3.313-.003.73-.01.914-.007.433-.011.418-.014.403-.016.388-.021.374-.025.36-.03.345-.033.333c-.196 1.74-.616 2.933-1.516 3.833-.9.9-2.092 1.32-3.833 1.516l-.333.034-.346.029-.36.025-.373.02-.588.025-.41.012-.644.013-.915.009-.98.004-3.313-.001-.73-.003-.914-.01-.433-.007-.418-.011-.403-.014-.388-.016-.374-.021-.36-.025-.345-.03-.333-.033c-1.74-.196-2.933-.616-3.833-1.516-.9-.9-1.32-2.092-1.516-3.833l-.034-.333-.029-.346-.025-.36-.02-.373-.025-.588-.012-.41-.013-.644-.009-.915-.004-.98.001-3.313.003-.73.01-.914.007-.433.011-.418.014-.403.016-.388.021-.374.025-.36.03-.345.033-.333c.196-1.74.616-2.933 1.516-3.833.9-.9 2.092-1.32 3.833-1.516l.333-.034.346-.029.36-.025.373-.02.588-.025.41-.012.644-.013.915-.009ZM6.79 7.3H4.05c.13 6.24 3.25 9.99 8.72 9.99h.31v-3.57c2.01.2 3.53 1.67 4.14 3.57h2.84c-.78-2.84-2.83-4.41-4.11-5.01 1.28-.74 3.08-2.54 3.51-4.98h-2.58c-.56 1.98-2.22 3.78-3.8 3.95V7.3H10.5v6.92c-1.6-.4-3.62-2.34-3.71-6.92Z" }) + ] + } + ); +}); + +exports.default = SiVk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVk.d.ts new file mode 100644 index 000000000..6ae6963fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0077FF"; +declare const SiVk: IconType; +export { SiVk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVk.mjs new file mode 100644 index 000000000..39f5e8be0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0077FF"; +const SiVk = React.forwardRef(function SiVk2({ title = "VK", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m9.489.004.729-.003h3.564l.73.003.914.01.433.007.418.011.403.014.388.016.374.021.36.025.345.03.333.033c1.74.196 2.933.616 3.833 1.516.9.9 1.32 2.092 1.516 3.833l.034.333.029.346.025.36.02.373.025.588.012.41.013.644.009.915.004.98-.001 3.313-.003.73-.01.914-.007.433-.011.418-.014.403-.016.388-.021.374-.025.36-.03.345-.033.333c-.196 1.74-.616 2.933-1.516 3.833-.9.9-2.092 1.32-3.833 1.516l-.333.034-.346.029-.36.025-.373.02-.588.025-.41.012-.644.013-.915.009-.98.004-3.313-.001-.73-.003-.914-.01-.433-.007-.418-.011-.403-.014-.388-.016-.374-.021-.36-.025-.345-.03-.333-.033c-1.74-.196-2.933-.616-3.833-1.516-.9-.9-1.32-2.092-1.516-3.833l-.034-.333-.029-.346-.025-.36-.02-.373-.025-.588-.012-.41-.013-.644-.009-.915-.004-.98.001-3.313.003-.73.01-.914.007-.433.011-.418.014-.403.016-.388.021-.374.025-.36.03-.345.033-.333c.196-1.74.616-2.933 1.516-3.833.9-.9 2.092-1.32 3.833-1.516l.333-.034.346-.029.36-.025.373-.02.588-.025.41-.012.644-.013.915-.009ZM6.79 7.3H4.05c.13 6.24 3.25 9.99 8.72 9.99h.31v-3.57c2.01.2 3.53 1.67 4.14 3.57h2.84c-.78-2.84-2.83-4.41-4.11-5.01 1.28-.74 3.08-2.54 3.51-4.98h-2.58c-.56 1.98-2.22 3.78-3.8 3.95V7.3H10.5v6.92c-1.6-.4-3.62-2.34-3.71-6.92Z" }) + ] + } + ); +}); + +export { SiVk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.cjs new file mode 100644 index 000000000..5bcc6d01f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF8800"; +const SiVlcmediaplayer = React__namespace.forwardRef(function SiVlcmediaplayer2({ title = "VLC media player", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0319 0c-.8823 0-1.0545.136-1.0545.136-.1738.056-.3556.255-.4105.43L9.683 3.3808c.4729.1729 1.3222.4266 2.2337.4266 1.0987 0 2.017-.3494 2.3763-.5075L13.4352.566c-.055-.1755-.237-.3707-.4067-.4374 0 0-.1142-.1286-.9966-.1286zm3.5645 7.455c-.3601.34-1.3276.9373-3.6797.9373-2.2929 0-3.189-.5678-3.5213-.9113l-1.3887 4.4227c.2272.3614 1.2539 1.5594 4.8847 1.5594 3.7569 0 4.8539-1.3467 5.0649-1.6737zm-8.5897 4.4487l-1.0025 3.1922H4.3428c-.2486 0-.5097.1932-.5826.4315l-2.334 7.6317a.3962.3962 0 0 0-.0169.1537c-.0008.0053-.002.0099-.002.016 0 .0839.0233.226.0233.226.0322.2456.2612.4452.5098.4452h20.1192c.2487 0 .4768-.1994.5098-.4453 0 0 .0234-.142.0234-.226a.0245.0245 0 0 0-.0025-.01.3201.3201 0 0 0 .0024-.0313.4096.4096 0 0 0-.019-.1282l-2.3339-7.6318c-.0729-.2383-.334-.4314-.5826-.4314h-1.6636l.2005.6391c-.2407.4854-1.4886 2.38-6.3027 2.38-4.6003 0-5.8288-1.73-6.1107-2.3072z" }) + ] + } + ); +}); + +exports.default = SiVlcmediaplayer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.d.ts new file mode 100644 index 000000000..a74906cec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF8800"; +declare const SiVlcmediaplayer: IconType; +export { SiVlcmediaplayer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.mjs new file mode 100644 index 000000000..85ead0143 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVlcmediaplayer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF8800"; +const SiVlcmediaplayer = React.forwardRef(function SiVlcmediaplayer2({ title = "VLC media player", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0319 0c-.8823 0-1.0545.136-1.0545.136-.1738.056-.3556.255-.4105.43L9.683 3.3808c.4729.1729 1.3222.4266 2.2337.4266 1.0987 0 2.017-.3494 2.3763-.5075L13.4352.566c-.055-.1755-.237-.3707-.4067-.4374 0 0-.1142-.1286-.9966-.1286zm3.5645 7.455c-.3601.34-1.3276.9373-3.6797.9373-2.2929 0-3.189-.5678-3.5213-.9113l-1.3887 4.4227c.2272.3614 1.2539 1.5594 4.8847 1.5594 3.7569 0 4.8539-1.3467 5.0649-1.6737zm-8.5897 4.4487l-1.0025 3.1922H4.3428c-.2486 0-.5097.1932-.5826.4315l-2.334 7.6317a.3962.3962 0 0 0-.0169.1537c-.0008.0053-.002.0099-.002.016 0 .0839.0233.226.0233.226.0322.2456.2612.4452.5098.4452h20.1192c.2487 0 .4768-.1994.5098-.4453 0 0 .0234-.142.0234-.226a.0245.0245 0 0 0-.0025-.01.3201.3201 0 0 0 .0024-.0313.4096.4096 0 0 0-.019-.1282l-2.3339-7.6318c-.0729-.2383-.334-.4314-.5826-.4314h-1.6636l.2005.6391c-.2407.4854-1.4886 2.38-6.3027 2.38-4.6003 0-5.8288-1.73-6.1107-2.3072z" }) + ] + } + ); +}); + +export { SiVlcmediaplayer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.cjs new file mode 100644 index 000000000..4436e64ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#607078"; +const SiVmware = React__namespace.forwardRef(function SiVmware2({ title = "VMware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.5 10.1a.505.505 0 00-.197.048.497.497 0 00-.25.68l1.138 2.475c.179.38.38.592.721.592.342 0 .542-.22.72-.592l1.003-2.186a.144.144 0 01.144-.092.16.16 0 01.157.16v2.118a.535.535 0 101.066 0v-1.73a.531.531 0 01.566-.552.52.52 0 01.541.551v1.73a.531.531 0 00.53.593.539.539 0 00.535-.592v-1.73a.531.531 0 01.564-.552.52.52 0 01.543.551v1.73a.531.531 0 00.528.593.535.535 0 00.535-.592v-1.969a1.234 1.234 0 00-1.283-1.23 1.647 1.647 0 00-1.14.486 1.26 1.26 0 00-1.095-.483 1.807 1.807 0 00-1.074.483 1.287 1.287 0 00-.961-.483 1.177 1.177 0 00-1.158.786l-.729 1.716-.933-2.203.011-.004A.505.505 0 00.5 10.1zm18.43.06a.27.27 0 00-.266.274h.002v3.142a.27.27 0 10.535 0v-1.222c0-1.037.571-1.56 1.27-1.643a.266.266 0 00.238-.274.258.258 0 00-.266-.269 1.465 1.465 0 00-1.242.88v-.614a.266.266 0 00-.271-.274zm-6.735.008a.273.273 0 00-.25.217l-.912 2.627-.902-2.62a.28.28 0 00-.274-.22.266.266 0 00-.27.258.493.493 0 00.034.144l1.09 3.037.02-.007a.319.319 0 00.298.242.3.3 0 00.293-.242l.903-2.583.896 2.583a.3.3 0 00.293.242h.018a.319.319 0 00.293-.242l1.097-3.038a.512.512 0 00.033-.144.258.258 0 00-.265-.25.262.262 0 00-.258.209l-.918 2.63-.904-2.626a.285.285 0 00-.278-.217h-.025a.273.273 0 00-.012 0zm10.168.008a1.75 1.75 0 00-1.691 1.851 1.765 1.765 0 001.76 1.858l-.008.013a1.784 1.784 0 001.33-.539.228.228 0 00.082-.17.228.228 0 00-.379-.168 1.435 1.435 0 01-1.018.415 1.237 1.237 0 01-1.24-1.207h2.555a.247.247 0 00.246-.247c0-.945-.593-1.806-1.637-1.806zm-5.744.002a1.571 1.571 0 00-.158.006 2.384 2.384 0 00-1.078.205.22.22 0 00-.143.222.24.24 0 00.235.229.266.266 0 00.095-.024 1.822 1.822 0 01.834-.162c.691 0 1.07.334 1.07.979v.125a3.796 3.796 0 00-1.103-.15c-.892 0-1.52.4-1.52 1.16l-.003-.004c0 .736.671 1.117 1.34 1.117a1.575 1.575 0 001.298-.62v.343a.247.247 0 00.254.25.254.254 0 00.258-.262v-1.983a1.416 1.416 0 00-.379-1.046 1.571 1.571 0 00-1-.385zm5.719.43c.714 0 1.085.565 1.139 1.214h-2.278a1.222 1.222 0 011.139-1.215zm-5.885 1.382a3.75 3.75 0 011.057.153V12.49c0 .57-.539.973-1.2.973-.485 0-.904-.261-.904-.713 0-.467.375-.76 1.047-.76Z" }) + ] + } + ); +}); + +exports.default = SiVmware; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.d.ts new file mode 100644 index 000000000..0c77e94ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#607078"; +declare const SiVmware: IconType; +export { SiVmware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.mjs new file mode 100644 index 000000000..aa20448ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVmware.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#607078"; +const SiVmware = React.forwardRef(function SiVmware2({ title = "VMware", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.5 10.1a.505.505 0 00-.197.048.497.497 0 00-.25.68l1.138 2.475c.179.38.38.592.721.592.342 0 .542-.22.72-.592l1.003-2.186a.144.144 0 01.144-.092.16.16 0 01.157.16v2.118a.535.535 0 101.066 0v-1.73a.531.531 0 01.566-.552.52.52 0 01.541.551v1.73a.531.531 0 00.53.593.539.539 0 00.535-.592v-1.73a.531.531 0 01.564-.552.52.52 0 01.543.551v1.73a.531.531 0 00.528.593.535.535 0 00.535-.592v-1.969a1.234 1.234 0 00-1.283-1.23 1.647 1.647 0 00-1.14.486 1.26 1.26 0 00-1.095-.483 1.807 1.807 0 00-1.074.483 1.287 1.287 0 00-.961-.483 1.177 1.177 0 00-1.158.786l-.729 1.716-.933-2.203.011-.004A.505.505 0 00.5 10.1zm18.43.06a.27.27 0 00-.266.274h.002v3.142a.27.27 0 10.535 0v-1.222c0-1.037.571-1.56 1.27-1.643a.266.266 0 00.238-.274.258.258 0 00-.266-.269 1.465 1.465 0 00-1.242.88v-.614a.266.266 0 00-.271-.274zm-6.735.008a.273.273 0 00-.25.217l-.912 2.627-.902-2.62a.28.28 0 00-.274-.22.266.266 0 00-.27.258.493.493 0 00.034.144l1.09 3.037.02-.007a.319.319 0 00.298.242.3.3 0 00.293-.242l.903-2.583.896 2.583a.3.3 0 00.293.242h.018a.319.319 0 00.293-.242l1.097-3.038a.512.512 0 00.033-.144.258.258 0 00-.265-.25.262.262 0 00-.258.209l-.918 2.63-.904-2.626a.285.285 0 00-.278-.217h-.025a.273.273 0 00-.012 0zm10.168.008a1.75 1.75 0 00-1.691 1.851 1.765 1.765 0 001.76 1.858l-.008.013a1.784 1.784 0 001.33-.539.228.228 0 00.082-.17.228.228 0 00-.379-.168 1.435 1.435 0 01-1.018.415 1.237 1.237 0 01-1.24-1.207h2.555a.247.247 0 00.246-.247c0-.945-.593-1.806-1.637-1.806zm-5.744.002a1.571 1.571 0 00-.158.006 2.384 2.384 0 00-1.078.205.22.22 0 00-.143.222.24.24 0 00.235.229.266.266 0 00.095-.024 1.822 1.822 0 01.834-.162c.691 0 1.07.334 1.07.979v.125a3.796 3.796 0 00-1.103-.15c-.892 0-1.52.4-1.52 1.16l-.003-.004c0 .736.671 1.117 1.34 1.117a1.575 1.575 0 001.298-.62v.343a.247.247 0 00.254.25.254.254 0 00.258-.262v-1.983a1.416 1.416 0 00-.379-1.046 1.571 1.571 0 00-1-.385zm5.719.43c.714 0 1.085.565 1.139 1.214h-2.278a1.222 1.222 0 011.139-1.215zm-5.885 1.382a3.75 3.75 0 011.057.153V12.49c0 .57-.539.973-1.2.973-.485 0-.904-.261-.904-.713 0-.467.375-.76 1.047-.76Z" }) + ] + } + ); +}); + +export { SiVmware as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.cjs new file mode 100644 index 000000000..b7e396fcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60000"; +const SiVodafone = React__namespace.forwardRef(function SiVodafone2({ title = "Vodafone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12A12 12 0 0 0 12 24A12 12 0 0 0 24 12A12 12 0 0 0 12 0M16.25 1.12C16.57 1.12 16.9 1.15 17.11 1.22C14.94 1.67 13.21 3.69 13.22 6C13.22 6.05 13.22 6.11 13.23 6.17C16.87 7.06 18.5 9.25 18.5 12.28C18.54 15.31 16.14 18.64 12.09 18.65C8.82 18.66 5.41 15.86 5.39 11.37C5.38 8.4 7 5.54 9.04 3.85C11.04 2.19 13.77 1.13 16.25 1.12Z" }) + ] + } + ); +}); + +exports.default = SiVodafone; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.d.ts new file mode 100644 index 000000000..7bc44205e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60000"; +declare const SiVodafone: IconType; +export { SiVodafone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.mjs new file mode 100644 index 000000000..6a61c1886 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVodafone.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60000"; +const SiVodafone = React.forwardRef(function SiVodafone2({ title = "Vodafone", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12A12 12 0 0 0 12 24A12 12 0 0 0 24 12A12 12 0 0 0 12 0M16.25 1.12C16.57 1.12 16.9 1.15 17.11 1.22C14.94 1.67 13.21 3.69 13.22 6C13.22 6.05 13.22 6.11 13.23 6.17C16.87 7.06 18.5 9.25 18.5 12.28C18.54 15.31 16.14 18.64 12.09 18.65C8.82 18.66 5.41 15.86 5.39 11.37C5.38 8.4 7 5.54 9.04 3.85C11.04 2.19 13.77 1.13 16.25 1.12Z" }) + ] + } + ); +}); + +export { SiVodafone as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.cjs new file mode 100644 index 000000000..c246eb811 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#94C125"; +const SiVoelkner = React__namespace.forwardRef(function SiVoelkner2({ title = "voelkner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.4 3.502C18.093 8.84 15.018 16.05 11.964 16.05S5.841 8.827 4.552 3.502H0c.229 1.007 1.121 4.707 2.597 8.122 2.543 5.89 5.695 8.876 9.367 8.876s6.828-2.991 9.385-8.893C22.806 8.247 23.737 4.592 24 3.5h-4.6z" }) + ] + } + ); +}); + +exports.default = SiVoelkner; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.d.ts new file mode 100644 index 000000000..f6dc7ec3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#94C125"; +declare const SiVoelkner: IconType; +export { SiVoelkner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.mjs new file mode 100644 index 000000000..88b6b89b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoelkner.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#94C125"; +const SiVoelkner = React.forwardRef(function SiVoelkner2({ title = "voelkner", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.4 3.502C18.093 8.84 15.018 16.05 11.964 16.05S5.841 8.827 4.552 3.502H0c.229 1.007 1.121 4.707 2.597 8.122 2.543 5.89 5.695 8.876 9.367 8.876s6.828-2.991 9.385-8.893C22.806 8.247 23.737 4.592 24 3.5h-4.6z" }) + ] + } + ); +}); + +export { SiVoelkner as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.cjs new file mode 100644 index 000000000..6515bd187 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#478061"; +const SiVoidlinux = React__namespace.forwardRef(function SiVoidlinux2({ title = "Void Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.818 12a3.82 3.82 0 0 1-3.82 3.82A3.82 3.82 0 0 1 8.178 12a3.82 3.82 0 0 1 3.82-3.82 3.82 3.82 0 0 1 3.82 3.82Zm3.179 9.73-2.726-2.725A8.212 8.212 0 0 1 12 20.212 8.212 8.212 0 0 1 3.788 12a8.212 8.212 0 0 1 1.209-4.269l-2.73-2.73A12 12 0 0 0 0 12c0 6.627 5.373 12 12 12a12 12 0 0 0 6.997-2.27zM12 0a12 12 0 0 0-6.997 2.27L7.73 4.994A8.212 8.212 0 0 1 12 3.788 8.212 8.212 0 0 1 20.212 12a8.212 8.212 0 0 1-1.209 4.269l2.73 2.73A12 12 0 0 0 24 12c0-6.627-5.373-12-12-12Z" }) + ] + } + ); +}); + +exports.default = SiVoidlinux; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.d.ts new file mode 100644 index 000000000..f52843aea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#478061"; +declare const SiVoidlinux: IconType; +export { SiVoidlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.mjs new file mode 100644 index 000000000..e14a909a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoidlinux.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#478061"; +const SiVoidlinux = React.forwardRef(function SiVoidlinux2({ title = "Void Linux", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.818 12a3.82 3.82 0 0 1-3.82 3.82A3.82 3.82 0 0 1 8.178 12a3.82 3.82 0 0 1 3.82-3.82 3.82 3.82 0 0 1 3.82 3.82Zm3.179 9.73-2.726-2.725A8.212 8.212 0 0 1 12 20.212 8.212 8.212 0 0 1 3.788 12a8.212 8.212 0 0 1 1.209-4.269l-2.73-2.73A12 12 0 0 0 0 12c0 6.627 5.373 12 12 12a12 12 0 0 0 6.997-2.27zM12 0a12 12 0 0 0-6.997 2.27L7.73 4.994A8.212 8.212 0 0 1 12 3.788 8.212 8.212 0 0 1 20.212 12a8.212 8.212 0 0 1-1.209 4.269l2.73 2.73A12 12 0 0 0 24 12c0-6.627-5.373-12-12-12Z" }) + ] + } + ); +}); + +export { SiVoidlinux as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.cjs new file mode 100644 index 000000000..a9cf3af63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E1382D"; +const SiVoipdotms = React__namespace.forwardRef(function SiVoipdotms2({ title = "VoIP.ms", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.51 2.372c-.946 0-1.877.24-2.71.696a5.721 5.721 0 0 0-2.055 1.92l-5.177 8.047c-.928 1.446-3.076 1.656-3.92.943l4.051 6.343c.258.402.611.731 1.027.96a2.808 2.808 0 0 0 2.706 0 2.85 2.85 0 0 0 1.025-.96L24 2.371ZM0 8.309l2.228 3.521s.89 1.302 2.402 1.302c1.513 0 2.378-1.302 2.378-1.302l2.23-3.52Z" }) + ] + } + ); +}); + +exports.default = SiVoipdotms; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.d.ts new file mode 100644 index 000000000..52e48e263 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E1382D"; +declare const SiVoipdotms: IconType; +export { SiVoipdotms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.mjs new file mode 100644 index 000000000..f1110debd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVoipdotms.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E1382D"; +const SiVoipdotms = React.forwardRef(function SiVoipdotms2({ title = "VoIP.ms", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.51 2.372c-.946 0-1.877.24-2.71.696a5.721 5.721 0 0 0-2.055 1.92l-5.177 8.047c-.928 1.446-3.076 1.656-3.92.943l4.051 6.343c.258.402.611.731 1.027.96a2.808 2.808 0 0 0 2.706 0 2.85 2.85 0 0 0 1.025-.96L24 2.371ZM0 8.309l2.228 3.521s.89 1.302 2.402 1.302c1.513 0 2.378-1.302 2.378-1.302l2.23-3.52Z" }) + ] + } + ); +}); + +export { SiVoipdotms as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.cjs new file mode 100644 index 000000000..889827aed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#151F5D"; +const SiVolkswagen = React__namespace.forwardRef(function SiVolkswagen2({ title = "Volkswagen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.36 0 0 5.36 0 12S5.36 24 12 24 24 18.64 24 12 18.64 0 12 0M12 1.41C13.2 1.41 14.36 1.63 15.43 2L12.13 9.13C12.09 9.17 12.09 9.26 12 9.26S11.91 9.17 11.87 9.13L8.57 2C9.64 1.63 10.8 1.42 12 1.42M6.9 2.74L10.72 10.97C10.8 11.14 10.89 11.19 11 11.19H13C13.12 11.19 13.2 11.14 13.29 10.97L17.06 2.74C18.64 3.64 20 4.93 20.96 6.47L15.6 16.84C15.56 16.93 15.5 16.97 15.47 16.97C15.39 16.97 15.39 16.89 15.34 16.84L13.29 12.3C13.2 12.13 13.12 12.09 13 12.09H11C10.89 12.09 10.8 12.13 10.71 12.3L8.66 16.84C8.61 16.89 8.62 16.97 8.53 16.97C8.44 16.97 8.44 16.89 8.4 16.84L3 6.47C3.94 4.93 5.32 3.64 6.9 2.74M2.06 8.53L8.23 20.53C8.31 20.7 8.4 20.83 8.62 20.83C8.83 20.83 8.91 20.7 9 20.53L11.87 14.14C11.91 14.06 11.96 14 12 14C12.09 14 12.09 14.1 12.13 14.14L15.04 20.53C15.13 20.7 15.21 20.83 15.43 20.83C15.64 20.83 15.73 20.7 15.81 20.53L22 8.53C22.37 9.6 22.59 10.76 22.59 12C22.54 17.79 17.79 22.59 12 22.59C6.21 22.59 1.46 17.79 1.46 12C1.46 10.8 1.67 9.65 2.06 8.53Z" }) + ] + } + ); +}); + +exports.default = SiVolkswagen; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.d.ts new file mode 100644 index 000000000..bb76048bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#151F5D"; +declare const SiVolkswagen: IconType; +export { SiVolkswagen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.mjs new file mode 100644 index 000000000..cdbc60156 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVolkswagen.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#151F5D"; +const SiVolkswagen = React.forwardRef(function SiVolkswagen2({ title = "Volkswagen", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.36 0 0 5.36 0 12S5.36 24 12 24 24 18.64 24 12 18.64 0 12 0M12 1.41C13.2 1.41 14.36 1.63 15.43 2L12.13 9.13C12.09 9.17 12.09 9.26 12 9.26S11.91 9.17 11.87 9.13L8.57 2C9.64 1.63 10.8 1.42 12 1.42M6.9 2.74L10.72 10.97C10.8 11.14 10.89 11.19 11 11.19H13C13.12 11.19 13.2 11.14 13.29 10.97L17.06 2.74C18.64 3.64 20 4.93 20.96 6.47L15.6 16.84C15.56 16.93 15.5 16.97 15.47 16.97C15.39 16.97 15.39 16.89 15.34 16.84L13.29 12.3C13.2 12.13 13.12 12.09 13 12.09H11C10.89 12.09 10.8 12.13 10.71 12.3L8.66 16.84C8.61 16.89 8.62 16.97 8.53 16.97C8.44 16.97 8.44 16.89 8.4 16.84L3 6.47C3.94 4.93 5.32 3.64 6.9 2.74M2.06 8.53L8.23 20.53C8.31 20.7 8.4 20.83 8.62 20.83C8.83 20.83 8.91 20.7 9 20.53L11.87 14.14C11.91 14.06 11.96 14 12 14C12.09 14 12.09 14.1 12.13 14.14L15.04 20.53C15.13 20.7 15.21 20.83 15.43 20.83C15.64 20.83 15.73 20.7 15.81 20.53L22 8.53C22.37 9.6 22.59 10.76 22.59 12C22.54 17.79 17.79 22.59 12 22.59C6.21 22.59 1.46 17.79 1.46 12C1.46 10.8 1.67 9.65 2.06 8.53Z" }) + ] + } + ); +}); + +export { SiVolkswagen as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.cjs new file mode 100644 index 000000000..5df1a93b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#003057"; +const SiVolvo = React__namespace.forwardRef(function SiVolvo2({ title = "Volvo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.873 12.584h.49l-.001-1.452h-.489v-.322h1.94v.322h-.483v1.451h.449c.415 0 .687-.274.687-.646h.32v.972h-2.913v-.325zm4.313.327h1.134l.962-1.779h.482v-.322h-1.45v.322h.419l-.701 1.295-.71-1.295h.51l-.002-.322h-2.104v.322h.482l.978 1.779zM5.073 10.81H2.968v.322h.481l.98 1.779h1.133l.962-1.779h.482v-.322h-1.45v.322h.418l-.7 1.295-.71-1.295h.509v-.322zm3.707-.044c.975 0 1.498.486 1.498 1.096 0 .618-.494 1.111-1.493 1.111-.999 0-1.497-.493-1.497-1.111 0-.61.517-1.096 1.492-1.096zm.017.33c-.333-.005-.527.348-.534.753-.006.39.15.784.506.79.366.007.524-.39.53-.772.008-.405-.168-.764-.502-.77zm10.738-.33c.974 0 1.497.486 1.497 1.096 0 .618-.493 1.111-1.492 1.111-1 0-1.498-.493-1.498-1.111 0-.61.518-1.096 1.493-1.096zm-.517 1.083c-.007.39.15.784.506.79.366.007.524-.39.53-.772.008-.405-.168-.764-.502-.77-.333-.006-.527.347-.534.752zm2.857-6.667L20.656 6.4A10.26 10.26 0 0 1 22.308 12c0 5.693-4.615 10.308-10.308 10.308S1.692 17.693 1.692 12 6.307 1.692 12 1.692c2.07 0 3.996.61 5.611 1.66l1.219-1.219A11.944 11.944 0 0 0 12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12c0-2.533-.785-4.882-2.125-6.818zM18.036.472v.337c.728.394 1.413.859 2.047 1.382l-1.71 1.71a10.29 10.29 0 0 1 1.735 1.732l1.708-1.708c.524.636.989 1.322 1.384 2.038h.328V.473h-5.492z" }) + ] + } + ); +}); + +exports.default = SiVolvo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.d.ts new file mode 100644 index 000000000..d01de8c13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#003057"; +declare const SiVolvo: IconType; +export { SiVolvo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.mjs new file mode 100644 index 000000000..baa3c41e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVolvo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#003057"; +const SiVolvo = React.forwardRef(function SiVolvo2({ title = "Volvo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.873 12.584h.49l-.001-1.452h-.489v-.322h1.94v.322h-.483v1.451h.449c.415 0 .687-.274.687-.646h.32v.972h-2.913v-.325zm4.313.327h1.134l.962-1.779h.482v-.322h-1.45v.322h.419l-.701 1.295-.71-1.295h.51l-.002-.322h-2.104v.322h.482l.978 1.779zM5.073 10.81H2.968v.322h.481l.98 1.779h1.133l.962-1.779h.482v-.322h-1.45v.322h.418l-.7 1.295-.71-1.295h.509v-.322zm3.707-.044c.975 0 1.498.486 1.498 1.096 0 .618-.494 1.111-1.493 1.111-.999 0-1.497-.493-1.497-1.111 0-.61.517-1.096 1.492-1.096zm.017.33c-.333-.005-.527.348-.534.753-.006.39.15.784.506.79.366.007.524-.39.53-.772.008-.405-.168-.764-.502-.77zm10.738-.33c.974 0 1.497.486 1.497 1.096 0 .618-.493 1.111-1.492 1.111-1 0-1.498-.493-1.498-1.111 0-.61.518-1.096 1.493-1.096zm-.517 1.083c-.007.39.15.784.506.79.366.007.524-.39.53-.772.008-.405-.168-.764-.502-.77-.333-.006-.527.347-.534.752zm2.857-6.667L20.656 6.4A10.26 10.26 0 0 1 22.308 12c0 5.693-4.615 10.308-10.308 10.308S1.692 17.693 1.692 12 6.307 1.692 12 1.692c2.07 0 3.996.61 5.611 1.66l1.219-1.219A11.944 11.944 0 0 0 12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12c0-2.533-.785-4.882-2.125-6.818zM18.036.472v.337c.728.394 1.413.859 2.047 1.382l-1.71 1.71a10.29 10.29 0 0 1 1.735 1.732l1.708-1.708c.524.636.989 1.322 1.384 2.038h.328V.473h-5.492z" }) + ] + } + ); +}); + +export { SiVolvo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.cjs new file mode 100644 index 000000000..da449a61e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiVonage = React__namespace.forwardRef(function SiVonage2({ title = "Vonage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.279 11.617l-4.54-10.07H0l6.797 15.296a.084.084 0 0 0 .153 0zm9.898-10.07s-6.148 13.868-6.917 15.565c-1.838 4.056-3.2 5.07-4.588 5.289a.026.026 0 0 0 .004.052h4.34c1.911 0 3.219-1.285 5.06-5.341C17.72 15.694 24 1.547 24 1.547z" }) + ] + } + ); +}); + +exports.default = SiVonage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.d.ts new file mode 100644 index 000000000..9135f00cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiVonage: IconType; +export { SiVonage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.mjs new file mode 100644 index 000000000..7fc77d466 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVonage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiVonage = React.forwardRef(function SiVonage2({ title = "Vonage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.279 11.617l-4.54-10.07H0l6.797 15.296a.084.084 0 0 0 .153 0zm9.898-10.07s-6.148 13.868-6.917 15.565c-1.838 4.056-3.2 5.07-4.588 5.289a.026.026 0 0 0 .004.052h4.34c1.911 0 3.219-1.285 5.06-5.341C17.72 15.694 24 1.547 24 1.547z" }) + ] + } + ); +}); + +export { SiVonage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.cjs new file mode 100644 index 000000000..1bbc88ebf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED3023"; +const SiVorondesign = React__namespace.forwardRef(function SiVorondesign2({ title = "Voron Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0 1.6078 6v12L12 24l10.3922-6V6L12.0001 0zM8.3242 5.3765h3L7.5 12.0001h-3l3.8241-6.6236zm6 0h3L9.676 18.6235h-3l7.6482-13.247zm2.176 6.6236h3l-3.8242 6.6235h-3L16.5 12z" }) + ] + } + ); +}); + +exports.default = SiVorondesign; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.d.ts new file mode 100644 index 000000000..9e45981cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED3023"; +declare const SiVorondesign: IconType; +export { SiVorondesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.mjs new file mode 100644 index 000000000..e85b3787e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVorondesign.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED3023"; +const SiVorondesign = React.forwardRef(function SiVorondesign2({ title = "Voron Design", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0 1.6078 6v12L12 24l10.3922-6V6L12.0001 0zM8.3242 5.3765h3L7.5 12.0001h-3l3.8241-6.6236zm6 0h3L9.676 18.6235h-3l7.6482-13.247zm2.176 6.6236h3l-3.8242 6.6235h-3L16.5 12z" }) + ] + } + ); +}); + +export { SiVorondesign as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.cjs new file mode 100644 index 000000000..0fedfe4ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF81F9"; +const SiVowpalwabbit = React__namespace.forwardRef(function SiVowpalwabbit2({ title = "Vowpal Wabbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.872 21.356c.077.195.682 1.646 1.685 2.156 1.075.547 1.613.406 1.613.406s-.914-3.384-.108-6.076c.807-2.691 1.479-2.933 1.479-2.933s1.478.591 2.446 0c.968-.591 1.264-1.747 1.264-1.747s-.672-2.474-1.264-3.442c-.591-.967-1.227-1.48-2.016-1.828a235.34 235.34 0 0 0-1.508-.655 11.275 11.275 0 0 0-1.003-3.198C16.237 1.531 14.678 0 14.678 0s-.815.7-1.025 2.032c.56.497 1.462 1.45 2.258 2.42.4.485.906 1.227 1.31 1.846a26.053 26.053 0 0 0-2.6-2.626c-1.828-1.586-3.63-2.823-3.63-2.823s-1.29 2.016.243 4.785c1.048 1.778 3.704 3.31 3.704 3.31s-2.736.134-3.704.346c-.968.213-2.043.592-3.253 1.398-1.21.807-2.01 1.647-3.011 3.011-1 1.365-1.962 3.71-1.962 3.71s-.135-.188-1.049-.188c-.914 0-1.21.188-1.21.188s.027 2.312.592 3.441c.564 1.13 1.37 1.562 2.392 1.562.27-.002.834 0 .834 0s.699 1.1 1.129 1.369c.43.268 1.183.215 1.183.215h8.253s-.048-.619-.51-1.103c-.448-.466-.983-.608-1.117-.666a3.776 3.776 0 0 0-1.008-.167h-2.123s2.689-.095 4.274-1.936c.833-.967.914-2.15.833-2.742-.04-.292-.295-1.29-.752-1.882a5.905 5.905 0 0 0-1.183-1.129c-.516-.36-1.17-.642-1.909-.94 1.075.268 1.586.376 2.635 1.129 1.048.752 1.505 1.908 1.586 2.177.08.269.269.672.215 1.828-.108.968-.218 1.208-.484 1.72-.217.456-.427.742-.717 1.07Z" }) + ] + } + ); +}); + +exports.default = SiVowpalwabbit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.d.ts new file mode 100644 index 000000000..38292532c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF81F9"; +declare const SiVowpalwabbit: IconType; +export { SiVowpalwabbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.mjs new file mode 100644 index 000000000..524db62f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVowpalwabbit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF81F9"; +const SiVowpalwabbit = React.forwardRef(function SiVowpalwabbit2({ title = "Vowpal Wabbit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.872 21.356c.077.195.682 1.646 1.685 2.156 1.075.547 1.613.406 1.613.406s-.914-3.384-.108-6.076c.807-2.691 1.479-2.933 1.479-2.933s1.478.591 2.446 0c.968-.591 1.264-1.747 1.264-1.747s-.672-2.474-1.264-3.442c-.591-.967-1.227-1.48-2.016-1.828a235.34 235.34 0 0 0-1.508-.655 11.275 11.275 0 0 0-1.003-3.198C16.237 1.531 14.678 0 14.678 0s-.815.7-1.025 2.032c.56.497 1.462 1.45 2.258 2.42.4.485.906 1.227 1.31 1.846a26.053 26.053 0 0 0-2.6-2.626c-1.828-1.586-3.63-2.823-3.63-2.823s-1.29 2.016.243 4.785c1.048 1.778 3.704 3.31 3.704 3.31s-2.736.134-3.704.346c-.968.213-2.043.592-3.253 1.398-1.21.807-2.01 1.647-3.011 3.011-1 1.365-1.962 3.71-1.962 3.71s-.135-.188-1.049-.188c-.914 0-1.21.188-1.21.188s.027 2.312.592 3.441c.564 1.13 1.37 1.562 2.392 1.562.27-.002.834 0 .834 0s.699 1.1 1.129 1.369c.43.268 1.183.215 1.183.215h8.253s-.048-.619-.51-1.103c-.448-.466-.983-.608-1.117-.666a3.776 3.776 0 0 0-1.008-.167h-2.123s2.689-.095 4.274-1.936c.833-.967.914-2.15.833-2.742-.04-.292-.295-1.29-.752-1.882a5.905 5.905 0 0 0-1.183-1.129c-.516-.36-1.17-.642-1.909-.94 1.075.268 1.586.376 2.635 1.129 1.048.752 1.505 1.908 1.586 2.177.08.269.269.672.215 1.828-.108.968-.218 1.208-.484 1.72-.217.456-.427.742-.717 1.07Z" }) + ] + } + ); +}); + +export { SiVowpalwabbit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVox.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVox.cjs new file mode 100644 index 000000000..963231ed4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVox.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DA074A"; +const SiVox = React__namespace.forwardRef(function SiVox2({ title = "VOX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 8.198l4.182 7.604h2.442L8.15 13.07a4.276 4.276 0 0 1 2.054-4.872H7.112l-1.677 3.216-1.706-3.216zm14.342 0a4.24 4.24 0 0 1 1.923 2.206c.784 2.081-.098 4.415-2.145 5.398h2.767l1.564-1.754 1.42 1.754H24l-3.505-4.032 3.088-3.572H19.41l-.952 1.249-.931-1.249zm-2.09 1.596c-.949 0-1.913.69-2.074 1.775a2.132 2.132 0 0 0 2.064 2.483c1.268.01 2.192-1.126 2.156-2.18-.013-1.015-.877-2.08-2.146-2.078z" }) + ] + } + ); +}); + +exports.default = SiVox; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVox.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVox.d.ts new file mode 100644 index 000000000..1d4dc70e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVox.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DA074A"; +declare const SiVox: IconType; +export { SiVox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVox.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVox.mjs new file mode 100644 index 000000000..a86e826cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVox.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DA074A"; +const SiVox = React.forwardRef(function SiVox2({ title = "VOX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 8.198l4.182 7.604h2.442L8.15 13.07a4.276 4.276 0 0 1 2.054-4.872H7.112l-1.677 3.216-1.706-3.216zm14.342 0a4.24 4.24 0 0 1 1.923 2.206c.784 2.081-.098 4.415-2.145 5.398h2.767l1.564-1.754 1.42 1.754H24l-3.505-4.032 3.088-3.572H19.41l-.952 1.249-.931-1.249zm-2.09 1.596c-.949 0-1.913.69-2.074 1.775a2.132 2.132 0 0 0 2.064 2.483c1.268.01 2.192-1.126 2.156-2.18-.013-1.015-.877-2.08-2.146-2.078z" }) + ] + } + ); +}); + +export { SiVox as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.cjs new file mode 100644 index 000000000..f27735a02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiVrchat = React__namespace.forwardRef(function SiVrchat2({ title = "VRChat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.732 6.767H1.268A1.27 1.27 0 0 0 0 8.035v5.296c0 .7.57 1.268 1.268 1.268h18.594l1.725 2.22c.215.275.443.415.68.415.153 0 .296-.06.403-.167.128-.129.193-.308.193-.536l-.002-1.939A1.27 1.27 0 0 0 24 13.331V8.035c0-.7-.569-1.269-1.268-1.269Zm.8 6.564a.8.8 0 0 1-.8.801h-.34v.031l.004 2.371c0 .155-.05.233-.129.233s-.19-.079-.31-.235l-1.866-2.4H1.268a.8.8 0 0 1-.8-.8V8.064a.8.8 0 0 1 .8-.8h21.464a.8.8 0 0 1 .8.8v5.266ZM4.444 8.573c-.127 0-.225.041-.254.15l-.877 3.129-.883-3.128c-.03-.11-.127-.15-.254-.15-.202 0-.473.126-.473.311 0 .012.005.035.011.058l1.114 3.63c.058.173.265.254.485.254s.433-.08.484-.254l1.109-3.63c.005-.023.011-.04.011-.058 0-.179-.27-.312-.473-.312Zm2.925 2.36c.433-.132.757-.49.757-1.153 0-.918-.612-1.207-1.368-1.207H5.614a.234.234 0 0 0-.242.231v3.752c0 .156.184.237.374.237s.376-.081.376-.237V11.05h.484l.82 1.593c.058.115.156.179.26.179.219 0 .467-.203.467-.393a.155.155 0 0 0-.028-.092l-.756-1.403Zm-.61-.473h-.636V9.231h.635c.375 0 .618.162.618.618s-.242.612-.618.612Zm10.056.826h1.004l-.502-1.772-.502 1.772Zm4.684-3.095H9.366a.8.8 0 0 0-.8.8v3.383a.8.8 0 0 0 .8.8h12.132a.8.8 0 0 0 .8-.8V8.992a.8.8 0 0 0-.8-.801Zm-10.946 3.977c.525 0 .571-.374.589-.617.011-.179.173-.236.369-.236.26 0 .38.075.38.369 0 .698-.57 1.142-1.379 1.142-.727 0-1.327-.357-1.327-1.322v-1.61c0-.963.606-1.322 1.333-1.322.802 0 1.374.427 1.374 1.097 0 .3-.121.37-.375.37-.214 0-.37-.064-.375-.238-.012-.178-.052-.57-.6-.57-.387 0-.606.213-.606.663v1.61c0 .45.219.664.617.664Zm4.703.388c0 .156-.19.237-.375.237s-.375-.081-.375-.237V10.9h-1.299v1.656c0 .156-.19.237-.375.237s-.375-.081-.375-.237V8.804c0-.161.185-.23.375-.23s.375.069.375.23v1.507h1.299V8.804c0-.161.185-.23.375-.23s.375.069.375.23v3.752Zm3.198.236c-.127 0-.225-.04-.254-.15l-.22-.768h-1.322l-.219.768c-.029.11-.127.15-.254.15-.202 0-.473-.127-.473-.311 0-.012.006-.035.012-.058l1.114-3.63c.051-.173.265-.254.478-.254s.433.08.485.254l1.114 3.63c.006.023.012.04.012.058 0 .179-.272.311-.473.311Zm2.989-3.543h-.843v3.306c0 .156-.19.237-.375.237s-.375-.081-.375-.237V9.25h-.848c-.15 0-.237-.157-.237-.34 0-.162.075-.336.237-.336h2.44c.162 0 .238.173.238.335 0 .18-.087.34-.237.34Z" }) + ] + } + ); +}); + +exports.default = SiVrchat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.d.ts new file mode 100644 index 000000000..a772c4d0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiVrchat: IconType; +export { SiVrchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.mjs new file mode 100644 index 000000000..124f66b6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVrchat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiVrchat = React.forwardRef(function SiVrchat2({ title = "VRChat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.732 6.767H1.268A1.27 1.27 0 0 0 0 8.035v5.296c0 .7.57 1.268 1.268 1.268h18.594l1.725 2.22c.215.275.443.415.68.415.153 0 .296-.06.403-.167.128-.129.193-.308.193-.536l-.002-1.939A1.27 1.27 0 0 0 24 13.331V8.035c0-.7-.569-1.269-1.268-1.269Zm.8 6.564a.8.8 0 0 1-.8.801h-.34v.031l.004 2.371c0 .155-.05.233-.129.233s-.19-.079-.31-.235l-1.866-2.4H1.268a.8.8 0 0 1-.8-.8V8.064a.8.8 0 0 1 .8-.8h21.464a.8.8 0 0 1 .8.8v5.266ZM4.444 8.573c-.127 0-.225.041-.254.15l-.877 3.129-.883-3.128c-.03-.11-.127-.15-.254-.15-.202 0-.473.126-.473.311 0 .012.005.035.011.058l1.114 3.63c.058.173.265.254.485.254s.433-.08.484-.254l1.109-3.63c.005-.023.011-.04.011-.058 0-.179-.27-.312-.473-.312Zm2.925 2.36c.433-.132.757-.49.757-1.153 0-.918-.612-1.207-1.368-1.207H5.614a.234.234 0 0 0-.242.231v3.752c0 .156.184.237.374.237s.376-.081.376-.237V11.05h.484l.82 1.593c.058.115.156.179.26.179.219 0 .467-.203.467-.393a.155.155 0 0 0-.028-.092l-.756-1.403Zm-.61-.473h-.636V9.231h.635c.375 0 .618.162.618.618s-.242.612-.618.612Zm10.056.826h1.004l-.502-1.772-.502 1.772Zm4.684-3.095H9.366a.8.8 0 0 0-.8.8v3.383a.8.8 0 0 0 .8.8h12.132a.8.8 0 0 0 .8-.8V8.992a.8.8 0 0 0-.8-.801Zm-10.946 3.977c.525 0 .571-.374.589-.617.011-.179.173-.236.369-.236.26 0 .38.075.38.369 0 .698-.57 1.142-1.379 1.142-.727 0-1.327-.357-1.327-1.322v-1.61c0-.963.606-1.322 1.333-1.322.802 0 1.374.427 1.374 1.097 0 .3-.121.37-.375.37-.214 0-.37-.064-.375-.238-.012-.178-.052-.57-.6-.57-.387 0-.606.213-.606.663v1.61c0 .45.219.664.617.664Zm4.703.388c0 .156-.19.237-.375.237s-.375-.081-.375-.237V10.9h-1.299v1.656c0 .156-.19.237-.375.237s-.375-.081-.375-.237V8.804c0-.161.185-.23.375-.23s.375.069.375.23v1.507h1.299V8.804c0-.161.185-.23.375-.23s.375.069.375.23v3.752Zm3.198.236c-.127 0-.225-.04-.254-.15l-.22-.768h-1.322l-.219.768c-.029.11-.127.15-.254.15-.202 0-.473-.127-.473-.311 0-.012.006-.035.012-.058l1.114-3.63c.051-.173.265-.254.478-.254s.433.08.485.254l1.114 3.63c.006.023.012.04.012.058 0 .179-.272.311-.473.311Zm2.989-3.543h-.843v3.306c0 .156-.19.237-.375.237s-.375-.081-.375-.237V9.25h-.848c-.15 0-.237-.157-.237-.34 0-.162.075-.336.237-.336h2.44c.162 0 .238.173.238.335 0 .18-.087.34-.237.34Z" }) + ] + } + ); +}); + +export { SiVrchat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.cjs new file mode 100644 index 000000000..e8a38f513 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiVsco = React__namespace.forwardRef(function SiVsco2({ title = "VSCO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm11.52 12c0 .408-.023.792-.072 1.176l-2.04-.24c.024-.312.05-.624.05-.936 0-.288-.025-.6-.05-.888l2.04-.24c.072.384.072.744.072 1.128zM.479 12c0-.384.024-.769.049-1.152l2.04.24c-.024.312-.047.6-.047.912s.023.6.047.912l-2.04.24C.479 12.769.479 12.384.479 12zm20.472-3.096l1.921-.72c.264.72.433 1.464.552 2.232l-2.04.24c-.097-.6-.24-1.2-.433-1.752zM21 12c0 .6-.072 1.176-.167 1.752l-2.017-.455c.071-.409.119-.841.119-1.297s-.048-.912-.119-1.344l2.017-.457c.118.577.167 1.177.167 1.801zm-9 6.456C8.435 18.455 5.545 15.565 5.544 12 5.545 8.435 8.435 5.545 12 5.544c3.565.001 6.455 2.891 6.456 6.456.008 3.559-2.871 6.448-6.429 6.456H12zM12.216 21v-2.064c.885-.029 1.756-.224 2.568-.575l.888 1.872c-1.09.482-2.264.742-3.456.767zm-3.936-.791l.912-1.873c.792.359 1.656.575 2.568.6V21c-1.202-.023-2.386-.293-3.48-.791zM3 12c0-.624.072-1.224.192-1.824l2.016.456c-.098.45-.146.908-.144 1.368 0 .432.048.864.12 1.272l-2.016.455C3.051 13.159 2.994 12.58 3 12zm8.76-9v2.064c-.877.029-1.74.224-2.544.576l-.888-1.871C9.411 3.291 10.577 3.03 11.76 3zm3.935.792l-.911 1.872c-.809-.363-1.682-.559-2.568-.576V3.024c1.248 0 2.424.288 3.479.768zm5.088 4.656c-.231-.56-.513-1.098-.84-1.608l1.681-1.152c.407.648.768 1.32 1.056 2.04l-1.897.72zm-.07 1.296l-2.018.456c-.23-.85-.621-1.648-1.151-2.352l1.632-1.295c.72.959 1.248 2.015 1.537 3.191zm-3.457-2.256c-.572-.667-1.264-1.22-2.04-1.633l.912-1.871c1.056.549 1.993 1.299 2.76 2.208l-1.632 1.296zm-.6-3.744l.96-1.824c.672.384 1.295.816 1.896 1.32L18.145 4.8c-.461-.401-.959-.754-1.489-1.056zm-.408-.216c-.54-.266-1.102-.483-1.68-.648l.504-1.992c.744.216 1.464.48 2.159.84l-.983 1.8zm-2.16-.768c-.6-.144-1.2-.216-1.824-.239V.479c.793.024 1.584.12 2.328.289l-.504 1.992zm-2.28-.239c-.605.021-1.207.094-1.8.216L9.528.744c.72-.168 1.487-.265 2.28-.265v2.042zm-2.28.334c-.586.167-1.156.384-1.704.649l-.96-1.824c.691-.343 1.415-.616 2.16-.816l.504 1.991zm-2.112.865c-.529.294-1.027.64-1.488 1.032L4.56 3.216c.6-.504 1.224-.936 1.896-1.319l.96 1.823zm.48.264l.888 1.871c-.792.408-1.464.96-2.04 1.608L5.136 6.168c.775-.895 1.711-1.636 2.76-2.184zM4.848 6.552l1.608 1.295c-.53.705-.921 1.503-1.152 2.353l-2.016-.456c.312-1.2.84-2.28 1.56-3.192zM3.24 8.4l-1.92-.72c.287-.72.648-1.416 1.08-2.04l1.68 1.176c-.341.494-.623 1.025-.84 1.584zm-.168.455c-.192.577-.36 1.152-.432 1.776L.6 10.393c.12-.769.288-1.537.553-2.257l1.919.719zm-.456 4.513c.096.6.239 1.2.432 1.776l-1.92.72c-.271-.728-.456-1.485-.552-2.257l2.04-.239zm.624 2.208c.239.576.528 1.104.84 1.607L2.4 18.336c-.435-.629-.797-1.306-1.08-2.016l1.92-.744zm.024-1.392l2.017-.456c.216.864.624 1.681 1.128 2.376L4.8 17.4c-.725-.957-1.247-2.051-1.536-3.216zm3.432 2.28c.577.672 1.272 1.248 2.064 1.656l-.912 1.872c-1.063-.557-2.009-1.315-2.784-2.232l1.632-1.296zm.72 3.815l-.96 1.825c-.674-.376-1.31-.819-1.896-1.321l1.368-1.535c.456.407.936.744 1.488 1.031zm.408.217c.528.264 1.104.48 1.705.647l-.504 1.992c-.747-.196-1.471-.469-2.16-.815l.959-1.824zm2.16.768c.576.12 1.176.193 1.8.217v2.039c-.774-.026-1.544-.114-2.305-.264l.505-1.992zm2.28.216c.605-.021 1.207-.094 1.801-.217l.479 1.992c-.749.168-1.513.264-2.28.287V21.48zm2.257-.336c.586-.165 1.155-.382 1.703-.647l.96 1.824c-.688.35-1.412.623-2.159.815l-.504-1.992zm2.086-.865c.528-.287 1.032-.647 1.488-1.031l1.369 1.535c-.588.502-1.223.945-1.896 1.321l-.961-1.825zm-.479-.263l-.888-1.871c.788-.414 1.489-.977 2.064-1.656l1.606 1.296c-.778.91-1.722 1.668-2.782 2.231zm3.071-2.592l-1.607-1.296c.532-.708.916-1.517 1.128-2.376l2.017.456c-.311 1.157-.831 2.248-1.538 3.216zM20.76 15.6l1.92.721c-.288.72-.648 1.392-1.079 2.04l-1.682-1.177c.337-.504.624-1.032.841-1.584zm.168-.455c.192-.553.336-1.152.433-1.752l2.039.239c-.11.761-.294 1.508-.551 2.232l-1.921-.719zm.456-9.841l-1.681 1.152c-.358-.49-.76-.947-1.199-1.368l1.368-1.536c.552.552 1.056 1.128 1.512 1.752zM4.2 3.528l1.368 1.536c-.456.408-.84.864-1.2 1.368l-1.68-1.176c.431-.636.94-1.216 1.512-1.728zM2.664 18.744l1.68-1.152c.36.48.769.937 1.2 1.369l-1.368 1.535c-.548-.545-1.054-1.131-1.512-1.752zm17.16 1.729l-1.368-1.537c.432-.407.841-.863 1.199-1.344l1.682 1.176c-.457.6-.961 1.175-1.513 1.705z" }) + ] + } + ); +}); + +exports.default = SiVsco; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.d.ts new file mode 100644 index 000000000..995352956 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiVsco: IconType; +export { SiVsco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.mjs new file mode 100644 index 000000000..41205317e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVsco.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiVsco = React.forwardRef(function SiVsco2({ title = "VSCO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm11.52 12c0 .408-.023.792-.072 1.176l-2.04-.24c.024-.312.05-.624.05-.936 0-.288-.025-.6-.05-.888l2.04-.24c.072.384.072.744.072 1.128zM.479 12c0-.384.024-.769.049-1.152l2.04.24c-.024.312-.047.6-.047.912s.023.6.047.912l-2.04.24C.479 12.769.479 12.384.479 12zm20.472-3.096l1.921-.72c.264.72.433 1.464.552 2.232l-2.04.24c-.097-.6-.24-1.2-.433-1.752zM21 12c0 .6-.072 1.176-.167 1.752l-2.017-.455c.071-.409.119-.841.119-1.297s-.048-.912-.119-1.344l2.017-.457c.118.577.167 1.177.167 1.801zm-9 6.456C8.435 18.455 5.545 15.565 5.544 12 5.545 8.435 8.435 5.545 12 5.544c3.565.001 6.455 2.891 6.456 6.456.008 3.559-2.871 6.448-6.429 6.456H12zM12.216 21v-2.064c.885-.029 1.756-.224 2.568-.575l.888 1.872c-1.09.482-2.264.742-3.456.767zm-3.936-.791l.912-1.873c.792.359 1.656.575 2.568.6V21c-1.202-.023-2.386-.293-3.48-.791zM3 12c0-.624.072-1.224.192-1.824l2.016.456c-.098.45-.146.908-.144 1.368 0 .432.048.864.12 1.272l-2.016.455C3.051 13.159 2.994 12.58 3 12zm8.76-9v2.064c-.877.029-1.74.224-2.544.576l-.888-1.871C9.411 3.291 10.577 3.03 11.76 3zm3.935.792l-.911 1.872c-.809-.363-1.682-.559-2.568-.576V3.024c1.248 0 2.424.288 3.479.768zm5.088 4.656c-.231-.56-.513-1.098-.84-1.608l1.681-1.152c.407.648.768 1.32 1.056 2.04l-1.897.72zm-.07 1.296l-2.018.456c-.23-.85-.621-1.648-1.151-2.352l1.632-1.295c.72.959 1.248 2.015 1.537 3.191zm-3.457-2.256c-.572-.667-1.264-1.22-2.04-1.633l.912-1.871c1.056.549 1.993 1.299 2.76 2.208l-1.632 1.296zm-.6-3.744l.96-1.824c.672.384 1.295.816 1.896 1.32L18.145 4.8c-.461-.401-.959-.754-1.489-1.056zm-.408-.216c-.54-.266-1.102-.483-1.68-.648l.504-1.992c.744.216 1.464.48 2.159.84l-.983 1.8zm-2.16-.768c-.6-.144-1.2-.216-1.824-.239V.479c.793.024 1.584.12 2.328.289l-.504 1.992zm-2.28-.239c-.605.021-1.207.094-1.8.216L9.528.744c.72-.168 1.487-.265 2.28-.265v2.042zm-2.28.334c-.586.167-1.156.384-1.704.649l-.96-1.824c.691-.343 1.415-.616 2.16-.816l.504 1.991zm-2.112.865c-.529.294-1.027.64-1.488 1.032L4.56 3.216c.6-.504 1.224-.936 1.896-1.319l.96 1.823zm.48.264l.888 1.871c-.792.408-1.464.96-2.04 1.608L5.136 6.168c.775-.895 1.711-1.636 2.76-2.184zM4.848 6.552l1.608 1.295c-.53.705-.921 1.503-1.152 2.353l-2.016-.456c.312-1.2.84-2.28 1.56-3.192zM3.24 8.4l-1.92-.72c.287-.72.648-1.416 1.08-2.04l1.68 1.176c-.341.494-.623 1.025-.84 1.584zm-.168.455c-.192.577-.36 1.152-.432 1.776L.6 10.393c.12-.769.288-1.537.553-2.257l1.919.719zm-.456 4.513c.096.6.239 1.2.432 1.776l-1.92.72c-.271-.728-.456-1.485-.552-2.257l2.04-.239zm.624 2.208c.239.576.528 1.104.84 1.607L2.4 18.336c-.435-.629-.797-1.306-1.08-2.016l1.92-.744zm.024-1.392l2.017-.456c.216.864.624 1.681 1.128 2.376L4.8 17.4c-.725-.957-1.247-2.051-1.536-3.216zm3.432 2.28c.577.672 1.272 1.248 2.064 1.656l-.912 1.872c-1.063-.557-2.009-1.315-2.784-2.232l1.632-1.296zm.72 3.815l-.96 1.825c-.674-.376-1.31-.819-1.896-1.321l1.368-1.535c.456.407.936.744 1.488 1.031zm.408.217c.528.264 1.104.48 1.705.647l-.504 1.992c-.747-.196-1.471-.469-2.16-.815l.959-1.824zm2.16.768c.576.12 1.176.193 1.8.217v2.039c-.774-.026-1.544-.114-2.305-.264l.505-1.992zm2.28.216c.605-.021 1.207-.094 1.801-.217l.479 1.992c-.749.168-1.513.264-2.28.287V21.48zm2.257-.336c.586-.165 1.155-.382 1.703-.647l.96 1.824c-.688.35-1.412.623-2.159.815l-.504-1.992zm2.086-.865c.528-.287 1.032-.647 1.488-1.031l1.369 1.535c-.588.502-1.223.945-1.896 1.321l-.961-1.825zm-.479-.263l-.888-1.871c.788-.414 1.489-.977 2.064-1.656l1.606 1.296c-.778.91-1.722 1.668-2.782 2.231zm3.071-2.592l-1.607-1.296c.532-.708.916-1.517 1.128-2.376l2.017.456c-.311 1.157-.831 2.248-1.538 3.216zM20.76 15.6l1.92.721c-.288.72-.648 1.392-1.079 2.04l-1.682-1.177c.337-.504.624-1.032.841-1.584zm.168-.455c.192-.553.336-1.152.433-1.752l2.039.239c-.11.761-.294 1.508-.551 2.232l-1.921-.719zm.456-9.841l-1.681 1.152c-.358-.49-.76-.947-1.199-1.368l1.368-1.536c.552.552 1.056 1.128 1.512 1.752zM4.2 3.528l1.368 1.536c-.456.408-.84.864-1.2 1.368l-1.68-1.176c.431-.636.94-1.216 1.512-1.728zM2.664 18.744l1.68-1.152c.36.48.769.937 1.2 1.369l-1.368 1.535c-.548-.545-1.054-1.131-1.512-1.752zm17.16 1.729l-1.368-1.537c.432-.407.841-.863 1.199-1.344l1.682 1.176c-.457.6-.961 1.175-1.513 1.705z" }) + ] + } + ); +}); + +export { SiVsco as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.cjs new file mode 100644 index 000000000..afd6f4ff0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2F80ED"; +const SiVscodium = React__namespace.forwardRef(function SiVscodium2({ title = "VSCodium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.583.54a1.467 1.467 0 0 0-.441 2.032c2.426 3.758 2.999 6.592 2.75 9.075-1.004 4.756-3.187 5.721-5.094 5.721-1.863 0-1.364-3.065.036-3.962.836-.522 1.906-.861 2.728-.861.814 0 1.474-.658 1.474-1.47 0-.812-.66-1.47-1.474-1.47-.96 0-1.901.202-2.78.545.18-.847.246-1.762.014-2.735-.352-1.477-1.367-2.889-3.128-4.257a1.476 1.476 0 0 0-2.069.256c-.5.64-.384 1.564.259 2.063 1.435 1.114 1.908 1.939 2.07 2.618.162.679.032 1.407-.293 2.408-.416 1.349-.9 2.553-1.11 3.708-.105.568-.114 1.187-.14 1.68-1.034-1.006-1.438-2.336-1.438-4.279 0-.811-.66-1.47-1.474-1.47-.814.001-1.473.659-1.473 1.47 0 2.654.776 5.179 2.855 6.863 1.883 1.793 6.67 1.13 6.67 4.01 0 .812 1.19 1.208 2.004 1.208.834 0 1.885-.558 1.885-1.208 0-3.267 3.443-5.253 9.11-5.244A1.472 1.472 0 0 0 24 15.773 1.472 1.472 0 0 0 22.53 14.3c-.388 0-.765.013-1.138.035.634-1.49.915-3.13.857-4.903a1.473 1.473 0 0 0-1.522-1.42 1.472 1.472 0 0 0-1.425 1.517c.076 2.32-.01 4.393-1.74 5.485-.49.31-1.062.58-1.604.58.42-1.145.738-2.353.869-3.655.083-.83.091-1.818-.003-2.585-.148-1.188-.325-2.535.126-3.55.405-.874 1.313-1.24 2.645-1.24.814 0 1.473-.659 1.473-1.47 0-.811-.659-1.47-1.473-1.47-1.98 0-3.481 1.042-4.332 2.3-.445-.95-.987-1.929-1.642-2.943a1.474 1.474 0 0 0-2.037-.44z" }) + ] + } + ); +}); + +exports.default = SiVscodium; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.d.ts new file mode 100644 index 000000000..8dccf6e8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2F80ED"; +declare const SiVscodium: IconType; +export { SiVscodium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.mjs new file mode 100644 index 000000000..ae40af8e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVscodium.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2F80ED"; +const SiVscodium = React.forwardRef(function SiVscodium2({ title = "VSCodium", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.583.54a1.467 1.467 0 0 0-.441 2.032c2.426 3.758 2.999 6.592 2.75 9.075-1.004 4.756-3.187 5.721-5.094 5.721-1.863 0-1.364-3.065.036-3.962.836-.522 1.906-.861 2.728-.861.814 0 1.474-.658 1.474-1.47 0-.812-.66-1.47-1.474-1.47-.96 0-1.901.202-2.78.545.18-.847.246-1.762.014-2.735-.352-1.477-1.367-2.889-3.128-4.257a1.476 1.476 0 0 0-2.069.256c-.5.64-.384 1.564.259 2.063 1.435 1.114 1.908 1.939 2.07 2.618.162.679.032 1.407-.293 2.408-.416 1.349-.9 2.553-1.11 3.708-.105.568-.114 1.187-.14 1.68-1.034-1.006-1.438-2.336-1.438-4.279 0-.811-.66-1.47-1.474-1.47-.814.001-1.473.659-1.473 1.47 0 2.654.776 5.179 2.855 6.863 1.883 1.793 6.67 1.13 6.67 4.01 0 .812 1.19 1.208 2.004 1.208.834 0 1.885-.558 1.885-1.208 0-3.267 3.443-5.253 9.11-5.244A1.472 1.472 0 0 0 24 15.773 1.472 1.472 0 0 0 22.53 14.3c-.388 0-.765.013-1.138.035.634-1.49.915-3.13.857-4.903a1.473 1.473 0 0 0-1.522-1.42 1.472 1.472 0 0 0-1.425 1.517c.076 2.32-.01 4.393-1.74 5.485-.49.31-1.062.58-1.604.58.42-1.145.738-2.353.869-3.655.083-.83.091-1.818-.003-2.585-.148-1.188-.325-2.535.126-3.55.405-.874 1.313-1.24 2.645-1.24.814 0 1.473-.659 1.473-1.47 0-.811-.659-1.47-1.473-1.47-1.98 0-3.481 1.042-4.332 2.3-.445-.95-.987-1.929-1.642-2.943a1.474 1.474 0 0 0-2.037-.44z" }) + ] + } + ); +}); + +export { SiVscodium as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.cjs new file mode 100644 index 000000000..8bdda943c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#ED125F"; +const SiVtex = React__namespace.forwardRef(function SiVtex2({ title = "VTEX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.2027 1.7925H4.2812c-1.3897 0-2.2795 1.4698-1.6293 2.6917l1.7927 3.3773H1.1947a1.2 1.2 0 0 0-.5873.1537 1.1924 1.1924 0 0 0-.4356.421 1.1847 1.1847 0 0 0-.0342 1.1683l5.766 10.858c.1017.191.2537.3507.4399.4622a1.1996 1.1996 0 0 0 1.2326 0 1.1913 1.1913 0 0 0 .4398-.4623l1.566-2.933 1.9647 3.7006c.6914 1.3016 2.5645 1.304 3.2584.0038L23.7878 4.416c.635-1.1895-.2314-2.6235-1.5851-2.6235ZM14.1524 8.978l-3.8733 7.2533a.7932.7932 0 0 1-.2927.3074.7986.7986 0 0 1-.82 0 .7933.7933 0 0 1-.2927-.3074L5.0378 9.0086a.7883.7883 0 0 1 .0208-.7776.7933.7933 0 0 1 .2891-.281.7985.7985 0 0 1 .3906-.1033h7.7307a.7769.7769 0 0 1 .381.0998.7717.7717 0 0 1 .2823.2736.7672.7672 0 0 1 .02.758z" }) + ] + } + ); +}); + +exports.default = SiVtex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.d.ts new file mode 100644 index 000000000..55b156ed4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#ED125F"; +declare const SiVtex: IconType; +export { SiVtex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.mjs new file mode 100644 index 000000000..1eba0a985 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVtex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#ED125F"; +const SiVtex = React.forwardRef(function SiVtex2({ title = "VTEX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.2027 1.7925H4.2812c-1.3897 0-2.2795 1.4698-1.6293 2.6917l1.7927 3.3773H1.1947a1.2 1.2 0 0 0-.5873.1537 1.1924 1.1924 0 0 0-.4356.421 1.1847 1.1847 0 0 0-.0342 1.1683l5.766 10.858c.1017.191.2537.3507.4399.4622a1.1996 1.1996 0 0 0 1.2326 0 1.1913 1.1913 0 0 0 .4398-.4623l1.566-2.933 1.9647 3.7006c.6914 1.3016 2.5645 1.304 3.2584.0038L23.7878 4.416c.635-1.1895-.2314-2.6235-1.5851-2.6235ZM14.1524 8.978l-3.8733 7.2533a.7932.7932 0 0 1-.2927.3074.7986.7986 0 0 1-.82 0 .7933.7933 0 0 1-.2927-.3074L5.0378 9.0086a.7883.7883 0 0 1 .0208-.7776.7933.7933 0 0 1 .2891-.281.7985.7985 0 0 1 .3906-.1033h7.7307a.7769.7769 0 0 1 .381.0998.7717.7717 0 0 1 .2823.2736.7672.7672 0 0 1 .02.758z" }) + ] + } + ); +}); + +export { SiVtex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.cjs new file mode 100644 index 000000000..a57f467bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4FC08D"; +const SiVuedotjs = React__namespace.forwardRef(function SiVuedotjs2({ title = "Vue.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24,1.61H14.06L12,5.16,9.94,1.61H0L12,22.39ZM12,14.08,5.16,2.23H9.59L12,6.41l2.41-4.18h4.43Z" }) + ] + } + ); +}); + +exports.default = SiVuedotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.d.ts new file mode 100644 index 000000000..8edc7eb23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4FC08D"; +declare const SiVuedotjs: IconType; +export { SiVuedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.mjs new file mode 100644 index 000000000..f8f0224a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVuedotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4FC08D"; +const SiVuedotjs = React.forwardRef(function SiVuedotjs2({ title = "Vue.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24,1.61H14.06L12,5.16,9.94,1.61H0L12,22.39ZM12,14.08,5.16,2.23H9.59L12,6.41l2.41-4.18h4.43Z" }) + ] + } + ); +}); + +export { SiVuedotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.cjs new file mode 100644 index 000000000..402657dbb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1867C0"; +const SiVuetify = React__namespace.forwardRef(function SiVuetify2({ title = "Vuetify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.312 12.564 12.636 1.2H0l6.312 11.364ZM14.94 1.2 7.464 14.64 12 22.8 24 1.2h-9.06Zm4.98 2.4L12 17.856l-1.788-3.216L16.344 3.6h3.576ZM6.312 7.62 4.08 3.6h4.476L6.312 7.62Z" }) + ] + } + ); +}); + +exports.default = SiVuetify; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.d.ts new file mode 100644 index 000000000..d3bcc97c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1867C0"; +declare const SiVuetify: IconType; +export { SiVuetify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.mjs new file mode 100644 index 000000000..831cd6aa5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVuetify.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1867C0"; +const SiVuetify = React.forwardRef(function SiVuetify2({ title = "Vuetify", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.312 12.564 12.636 1.2H0l6.312 11.364ZM14.94 1.2 7.464 14.64 12 22.8 24 1.2h-9.06Zm4.98 2.4L12 17.856l-1.788-3.216L16.344 3.6h3.576ZM6.312 7.62 4.08 3.6h4.476L6.312 7.62Z" }) + ] + } + ); +}); + +export { SiVuetify as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.cjs new file mode 100644 index 000000000..58672811a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#41B883"; +const SiVueuse = React__namespace.forwardRef(function SiVueuse2({ title = "VueUse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.876.001v12.873C.876 19.018 5.856 24 12 24s11.124-4.982 11.124-11.126V0h-9.218v12.874c0 2.543-3.812 2.543-3.812 0V0Zm4.609 1.001h3.608v11.872C9.089 14.555 10.354 15.79 12 15.79s2.911-1.236 2.907-2.916V1.002h3.608v11.872a6.515 6.515 0 0 1-13.03 0z" }) + ] + } + ); +}); + +exports.default = SiVueuse; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.d.ts new file mode 100644 index 000000000..50b0ec01b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#41B883"; +declare const SiVueuse: IconType; +export { SiVueuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.mjs new file mode 100644 index 000000000..b04c0dbea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVueuse.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#41B883"; +const SiVueuse = React.forwardRef(function SiVueuse2({ title = "VueUse", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.876.001v12.873C.876 19.018 5.856 24 12 24s11.124-4.982 11.124-11.126V0h-9.218v12.874c0 2.543-3.812 2.543-3.812 0V0Zm4.609 1.001h3.608v11.872C9.089 14.555 10.354 15.79 12 15.79s2.911-1.236 2.907-2.916V1.002h3.608v11.872a6.515 6.515 0 0 1-13.03 0z" }) + ] + } + ); +}); + +export { SiVueuse as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.cjs new file mode 100644 index 000000000..292544a93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A41E22"; +const SiVulkan = React__namespace.forwardRef(function SiVulkan2({ title = "Vulkan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.411 15.12h-.875v-2.798c.28.156.649.442.875.719zm-7.383 0H4.936l-1.423-4.4h.992l.979 3.093h.013l.992-3.093h.999zm4.394 0h-.833v-.444h-.017c-.112.185-.255.319-.432.401s-.358.123-.541.123q-.3525 0-.576-.093c-.151-.063-.267-.149-.354-.261-.086-.112-.146-.25-.181-.412-.034-.162-.052-.343-.052-.539v-1.961h.876v1.799c0 .263.041.459.123.589.082.129.229.194.438.194.237 0 .41-.071.518-.214.107-.142.159-.375.159-.699v-1.669h.876zm3.134-1.918-.002-.123 1.104-1.147h1.035l-1.201 1.171 1.337 2.017h-1.061zm2.433-.289c.013-.205.065-.375.155-.511.091-.136.205-.244.345-.326.141-.082.298-.14.473-.174.174-.035.349-.052.526-.052.16 0 .324.011.487.034.164.024.315.067.451.132.136.067.246.157.332.274.087.116.13.272.13.466v1.659c0 .144.009.282.024.412.017.131.045.23.086.295h-.889c-.017-.05-.03-.099-.041-.151a1.2 1.2 0 0 1-.021-.157c-.141.144-.304.243-.494.302-.19.058-.382.086-.581.086-.151 0-.293-.02-.424-.056a.99.99 0 0 1-.346-.173c-.099-.077-.176-.177-.23-.295-.056-.119-.085-.261-.085-.425 0-.181.033-.33.095-.447.065-.116.147-.211.246-.28.102-.069.216-.123.345-.158.13-.034.259-.062.391-.084.131-.019.261-.036.388-.049s.24-.031.339-.056c.099-.024.177-.061.235-.108.058-.048.084-.117.08-.207 0-.095-.015-.171-.048-.225a.32.32 0 0 0-.123-.129.51.51 0 0 0-.179-.063c-.069-.01-.14-.015-.218-.015-.172 0-.308.037-.407.11-.1.074-.156.197-.173.369zm2.021.647c-.037.033-.084.059-.138.078a1.04 1.04 0 0 1-.179.045c-.065.013-.13.022-.201.031-.069.008-.14.019-.209.03a1.7 1.7 0 0 0-.194.049c-.065.022-.119.048-.166.084a.39.39 0 0 0-.114.132c-.029.054-.044.121-.044.203 0 .077.015.144.044.196.028.054.069.095.116.127.05.031.108.052.173.065.064.013.133.019.202.019.173 0 .307-.028.402-.086.094-.058.163-.127.209-.207.045-.08.073-.162.082-.244.011-.082.015-.148.015-.196zm1.443-1.628h.833v.444h.017c.11-.185.254-.319.431-.403s.358-.127.542-.127c.235 0 .427.032.576.094.148.065.267.154.353.266.087.112.147.25.182.412.034.162.051.343.051.539v1.961h-.875v-1.799c0-.263-.041-.46-.123-.589-.082-.13-.229-.194-.438-.194-.24 0-.41.071-.518.213-.108.143-.16.376-.16.699v1.67h-.875zm-8.451-.55c.302.149.593.31.876.483v3.253h-.876zm-8.93.159c-.261.768.203 1.635 1.156 2.408-2.122-.911-3.496-2.244-3.184-3.38.434-1.573 3.932-2.177 7.481-1.491 3.136.606 5.416 2.375 5.884 3.617-1.035-.936-2.621-1.883-4.562-2.37-3.235-.816-6.268-.27-6.775 1.216m11.341.613c-.207-.328-.502-.667-.875-1.001v-.436h.875zM24 14.652c0 .265-.207.472-.479.472-.267 0-.481-.207-.481-.472 0-.259.214-.466.481-.466.27 0 .479.207.479.466m-.839 0c0 .207.153.373.364.373.205 0 .356-.164.356-.369 0-.207-.151-.375-.358-.375-.209 0-.362.166-.362.371m.287.246h-.108v-.466c.043-.009.103-.015.179-.015.088 0 .127.015.162.034.026.02.045.056.045.104 0 .052-.039.09-.097.108v.006c.045.017.071.052.086.114.015.072.024.1.035.117h-.117c-.015-.017-.023-.061-.036-.114-.009-.052-.037-.074-.097-.074h-.052zm.002-.266h.052c.06 0 .108-.019.108-.069 0-.043-.031-.071-.1-.071-.028 0-.047.002-.06.007z" }) + ] + } + ); +}); + +exports.default = SiVulkan; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.d.ts new file mode 100644 index 000000000..0fb09deb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A41E22"; +declare const SiVulkan: IconType; +export { SiVulkan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.mjs new file mode 100644 index 000000000..0ac678ba6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVulkan.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A41E22"; +const SiVulkan = React.forwardRef(function SiVulkan2({ title = "Vulkan", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.411 15.12h-.875v-2.798c.28.156.649.442.875.719zm-7.383 0H4.936l-1.423-4.4h.992l.979 3.093h.013l.992-3.093h.999zm4.394 0h-.833v-.444h-.017c-.112.185-.255.319-.432.401s-.358.123-.541.123q-.3525 0-.576-.093c-.151-.063-.267-.149-.354-.261-.086-.112-.146-.25-.181-.412-.034-.162-.052-.343-.052-.539v-1.961h.876v1.799c0 .263.041.459.123.589.082.129.229.194.438.194.237 0 .41-.071.518-.214.107-.142.159-.375.159-.699v-1.669h.876zm3.134-1.918-.002-.123 1.104-1.147h1.035l-1.201 1.171 1.337 2.017h-1.061zm2.433-.289c.013-.205.065-.375.155-.511.091-.136.205-.244.345-.326.141-.082.298-.14.473-.174.174-.035.349-.052.526-.052.16 0 .324.011.487.034.164.024.315.067.451.132.136.067.246.157.332.274.087.116.13.272.13.466v1.659c0 .144.009.282.024.412.017.131.045.23.086.295h-.889c-.017-.05-.03-.099-.041-.151a1.2 1.2 0 0 1-.021-.157c-.141.144-.304.243-.494.302-.19.058-.382.086-.581.086-.151 0-.293-.02-.424-.056a.99.99 0 0 1-.346-.173c-.099-.077-.176-.177-.23-.295-.056-.119-.085-.261-.085-.425 0-.181.033-.33.095-.447.065-.116.147-.211.246-.28.102-.069.216-.123.345-.158.13-.034.259-.062.391-.084.131-.019.261-.036.388-.049s.24-.031.339-.056c.099-.024.177-.061.235-.108.058-.048.084-.117.08-.207 0-.095-.015-.171-.048-.225a.32.32 0 0 0-.123-.129.51.51 0 0 0-.179-.063c-.069-.01-.14-.015-.218-.015-.172 0-.308.037-.407.11-.1.074-.156.197-.173.369zm2.021.647c-.037.033-.084.059-.138.078a1.04 1.04 0 0 1-.179.045c-.065.013-.13.022-.201.031-.069.008-.14.019-.209.03a1.7 1.7 0 0 0-.194.049c-.065.022-.119.048-.166.084a.39.39 0 0 0-.114.132c-.029.054-.044.121-.044.203 0 .077.015.144.044.196.028.054.069.095.116.127.05.031.108.052.173.065.064.013.133.019.202.019.173 0 .307-.028.402-.086.094-.058.163-.127.209-.207.045-.08.073-.162.082-.244.011-.082.015-.148.015-.196zm1.443-1.628h.833v.444h.017c.11-.185.254-.319.431-.403s.358-.127.542-.127c.235 0 .427.032.576.094.148.065.267.154.353.266.087.112.147.25.182.412.034.162.051.343.051.539v1.961h-.875v-1.799c0-.263-.041-.46-.123-.589-.082-.13-.229-.194-.438-.194-.24 0-.41.071-.518.213-.108.143-.16.376-.16.699v1.67h-.875zm-8.451-.55c.302.149.593.31.876.483v3.253h-.876zm-8.93.159c-.261.768.203 1.635 1.156 2.408-2.122-.911-3.496-2.244-3.184-3.38.434-1.573 3.932-2.177 7.481-1.491 3.136.606 5.416 2.375 5.884 3.617-1.035-.936-2.621-1.883-4.562-2.37-3.235-.816-6.268-.27-6.775 1.216m11.341.613c-.207-.328-.502-.667-.875-1.001v-.436h.875zM24 14.652c0 .265-.207.472-.479.472-.267 0-.481-.207-.481-.472 0-.259.214-.466.481-.466.27 0 .479.207.479.466m-.839 0c0 .207.153.373.364.373.205 0 .356-.164.356-.369 0-.207-.151-.375-.358-.375-.209 0-.362.166-.362.371m.287.246h-.108v-.466c.043-.009.103-.015.179-.015.088 0 .127.015.162.034.026.02.045.056.045.104 0 .052-.039.09-.097.108v.006c.045.017.071.052.086.114.015.072.024.1.035.117h-.117c-.015-.017-.023-.061-.036-.114-.009-.052-.037-.074-.097-.074h-.052zm.002-.266h.052c.06 0 .108-.019.108-.069 0-.043-.031-.071-.1-.071-.028 0-.047.002-.06.007z" }) + ] + } + ); +}); + +export { SiVulkan as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.cjs new file mode 100644 index 000000000..35796881e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#007BFC"; +const SiVultr = React__namespace.forwardRef(function SiVultr2({ title = "Vultr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.36 2.172A1.194 1.194 0 007.348 1.6H1.2A1.2 1.2 0 000 2.8a1.211 1.211 0 00.182.64l11.6 18.4a1.206 1.206 0 002.035 0l3.075-4.874a1.229 1.229 0 00.182-.64 1.211 1.211 0 00-.182-.642zm10.349 8.68a1.206 1.206 0 002.035 0L21.8 9.178l2.017-3.2a1.211 1.211 0 00.183-.64 1.229 1.229 0 00-.183-.64l-1.6-2.526a1.206 1.206 0 00-1.016-.571h-6.148a1.2 1.2 0 00-1.201 1.2 1.143 1.143 0 00.188.64z" }) + ] + } + ); +}); + +exports.default = SiVultr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.d.ts new file mode 100644 index 000000000..517753d47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#007BFC"; +declare const SiVultr: IconType; +export { SiVultr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.mjs new file mode 100644 index 000000000..ebc6d1d81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVultr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#007BFC"; +const SiVultr = React.forwardRef(function SiVultr2({ title = "Vultr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.36 2.172A1.194 1.194 0 007.348 1.6H1.2A1.2 1.2 0 000 2.8a1.211 1.211 0 00.182.64l11.6 18.4a1.206 1.206 0 002.035 0l3.075-4.874a1.229 1.229 0 00.182-.64 1.211 1.211 0 00-.182-.642zm10.349 8.68a1.206 1.206 0 002.035 0L21.8 9.178l2.017-3.2a1.211 1.211 0 00.183-.64 1.229 1.229 0 00-.183-.64l-1.6-2.526a1.206 1.206 0 00-1.016-.571h-6.148a1.2 1.2 0 00-1.201 1.2 1.143 1.143 0 00.188.64z" }) + ] + } + ); +}); + +export { SiVultr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.cjs new file mode 100644 index 000000000..504492252 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D95E26"; +const SiVyond = React__namespace.forwardRef(function SiVyond2({ title = "Vyond", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.55 16.382 0 7.616h1.328l.928 6.18.932-6.18h1.328l-1.55 8.766H1.55zm5.486-7.61H6.022l1.166 3.776v2.68h.924v-2.68L9.28 8.772H8.262L7.65 11.35l-.614-2.58v.002zm5.12 1.92c0-.324-.128-.482-.372-.482s-.37.16-.37.482v2.616c0 .324.126.492.37.492s.372-.166.372-.492v-2.616zm-.344-1.256c.69 0 1.144.468 1.144 1.262v2.52c0 .872-.432 1.346-1.172 1.346s-1.162-.468-1.162-1.376v-2.52c0-.766.44-1.24 1.19-1.24m5.032-.656v4.2l-1.344-4.2h-.896v6.456h.924v-3.944l1.316 3.944h.936V8.772h-.936zm5.07 6.32c.508 0 .706-.322.706-.92v-4.22c0-.72-.336-1.044-1.08-1.044h-.31v6.184h.684zM19.89 7.616h1.924c1.504 0 2.186.784 2.186 2.408v3.912c0 1.678-.62 2.448-2.122 2.448H19.89V7.616z" }) + ] + } + ); +}); + +exports.default = SiVyond; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.d.ts new file mode 100644 index 000000000..39f6bbc4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D95E26"; +declare const SiVyond: IconType; +export { SiVyond as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.mjs new file mode 100644 index 000000000..99b35ec7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiVyond.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D95E26"; +const SiVyond = React.forwardRef(function SiVyond2({ title = "Vyond", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.55 16.382 0 7.616h1.328l.928 6.18.932-6.18h1.328l-1.55 8.766H1.55zm5.486-7.61H6.022l1.166 3.776v2.68h.924v-2.68L9.28 8.772H8.262L7.65 11.35l-.614-2.58v.002zm5.12 1.92c0-.324-.128-.482-.372-.482s-.37.16-.37.482v2.616c0 .324.126.492.37.492s.372-.166.372-.492v-2.616zm-.344-1.256c.69 0 1.144.468 1.144 1.262v2.52c0 .872-.432 1.346-1.172 1.346s-1.162-.468-1.162-1.376v-2.52c0-.766.44-1.24 1.19-1.24m5.032-.656v4.2l-1.344-4.2h-.896v6.456h.924v-3.944l1.316 3.944h.936V8.772h-.936zm5.07 6.32c.508 0 .706-.322.706-.92v-4.22c0-.72-.336-1.044-1.08-1.044h-.31v6.184h.684zM19.89 7.616h1.924c1.504 0 2.186.784 2.186 2.408v3.912c0 1.678-.62 2.448-2.122 2.448H19.89V7.616z" }) + ] + } + ); +}); + +export { SiVyond as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.cjs new file mode 100644 index 000000000..38467e8ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#04AA6D"; +const SiW3schools = React__namespace.forwardRef(function SiW3schools2({ title = "W3Schools", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.228 5.464s.605.648 1.45.648c.666 0 1.151-.403 1.151-.955 0-.677-.619-.989-1.368-.989h-.441l-.264-.595 1.17-1.387c.25-.298.462-.485.462-.485s-.188.01-.567.01h-1.905V.713h3.902v.73L22.253 3.25c.883.125 1.747.754 1.747 1.862 0 1.09-.825 2.098-2.25 2.098-1.359 0-2.112-.855-2.112-.855l.59-.892zm-7.611 1.348 5.154 9.176 2.543-4.535-4.866-8.662H9.785L7.438 6.97 5.092 2.79H0l7.41 13.197.028-.048.03.048 5.149-9.176zM.053 22.208h.753c0 .22.192.431.533.431.317 0 .528-.158.528-.37 0-.181-.14-.263-.38-.316l-.431-.11c-.73-.192-.917-.58-.917-.994 0-.504.5-.964 1.205-.964.576 0 1.228.293 1.219 1.012H1.8c0-.22-.202-.36-.432-.36-.25 0-.423.144-.423.346 0 .168.159.264.346.307l.518.14c.73.186.86.642.86.94 0 .657-.658 1.017-1.316 1.017-.638 0-1.286-.388-1.3-1.08zm3.282-.624c0-1.027.826-1.7 1.762-1.7.561 0 1.017.25 1.315.625l-.567.45a.96.96 0 0 0-.734-.326c-.561 0-.965.404-.965.95 0 .543.404.956.965.956a.96.96 0 0 0 .734-.327l.567.451a1.647 1.647 0 0 1-1.315.624c-.936 0-1.762-.676-1.762-1.703zm6.954-.197V23.2h-.806v-1.756c0-.519-.312-.797-.672-.797-.37 0-.825.216-.825.845v1.713h-.807v-5h.811v2.25c.159-.394.682-.576 1.003-.576.835.005 1.296.566 1.296 1.507zm.845.197c0-1.027.796-1.7 1.718-1.7.921 0 1.727.673 1.727 1.7s-.806 1.703-1.727 1.703c-.922 0-1.718-.676-1.718-1.703zm2.634 0c0-.557-.417-.95-.916-.95-.5 0-.907.393-.907.95 0 .566.408.955.907.955.499 0 .916-.39.916-.955zm1.498 0c0-1.027.796-1.7 1.718-1.7.921 0 1.727.673 1.727 1.7s-.806 1.703-1.727 1.703c-.917 0-1.718-.676-1.718-1.703zm2.634 0c0-.557-.417-.95-.916-.95-.5 0-.907.393-.907.95 0 .566.408.955.907.955.504 0 .916-.39.916-.955zm1.704 1.622v-5h.806v5h-.806zm1.685-.998h.753c0 .22.192.431.533.431.316 0 .528-.158.528-.37 0-.181-.14-.263-.38-.316l-.431-.11c-.73-.192-.917-.58-.917-.994 0-.504.499-.964 1.205-.964.575 0 1.228.293 1.219 1.012h-.768c0-.22-.202-.36-.432-.36-.25 0-.423.144-.423.346 0 .168.159.264.346.307l.518.14c.73.186.86.642.86.94 0 .657-.658 1.017-1.316 1.017-.638 0-1.281-.388-1.295-1.08z" }) + ] + } + ); +}); + +exports.default = SiW3schools; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.d.ts new file mode 100644 index 000000000..8aa4e12d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#04AA6D"; +declare const SiW3schools: IconType; +export { SiW3schools as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.mjs new file mode 100644 index 000000000..923b85a58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiW3schools.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#04AA6D"; +const SiW3schools = React.forwardRef(function SiW3schools2({ title = "W3Schools", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.228 5.464s.605.648 1.45.648c.666 0 1.151-.403 1.151-.955 0-.677-.619-.989-1.368-.989h-.441l-.264-.595 1.17-1.387c.25-.298.462-.485.462-.485s-.188.01-.567.01h-1.905V.713h3.902v.73L22.253 3.25c.883.125 1.747.754 1.747 1.862 0 1.09-.825 2.098-2.25 2.098-1.359 0-2.112-.855-2.112-.855l.59-.892zm-7.611 1.348 5.154 9.176 2.543-4.535-4.866-8.662H9.785L7.438 6.97 5.092 2.79H0l7.41 13.197.028-.048.03.048 5.149-9.176zM.053 22.208h.753c0 .22.192.431.533.431.317 0 .528-.158.528-.37 0-.181-.14-.263-.38-.316l-.431-.11c-.73-.192-.917-.58-.917-.994 0-.504.5-.964 1.205-.964.576 0 1.228.293 1.219 1.012H1.8c0-.22-.202-.36-.432-.36-.25 0-.423.144-.423.346 0 .168.159.264.346.307l.518.14c.73.186.86.642.86.94 0 .657-.658 1.017-1.316 1.017-.638 0-1.286-.388-1.3-1.08zm3.282-.624c0-1.027.826-1.7 1.762-1.7.561 0 1.017.25 1.315.625l-.567.45a.96.96 0 0 0-.734-.326c-.561 0-.965.404-.965.95 0 .543.404.956.965.956a.96.96 0 0 0 .734-.327l.567.451a1.647 1.647 0 0 1-1.315.624c-.936 0-1.762-.676-1.762-1.703zm6.954-.197V23.2h-.806v-1.756c0-.519-.312-.797-.672-.797-.37 0-.825.216-.825.845v1.713h-.807v-5h.811v2.25c.159-.394.682-.576 1.003-.576.835.005 1.296.566 1.296 1.507zm.845.197c0-1.027.796-1.7 1.718-1.7.921 0 1.727.673 1.727 1.7s-.806 1.703-1.727 1.703c-.922 0-1.718-.676-1.718-1.703zm2.634 0c0-.557-.417-.95-.916-.95-.5 0-.907.393-.907.95 0 .566.408.955.907.955.499 0 .916-.39.916-.955zm1.498 0c0-1.027.796-1.7 1.718-1.7.921 0 1.727.673 1.727 1.7s-.806 1.703-1.727 1.703c-.917 0-1.718-.676-1.718-1.703zm2.634 0c0-.557-.417-.95-.916-.95-.5 0-.907.393-.907.95 0 .566.408.955.907.955.504 0 .916-.39.916-.955zm1.704 1.622v-5h.806v5h-.806zm1.685-.998h.753c0 .22.192.431.533.431.316 0 .528-.158.528-.37 0-.181-.14-.263-.38-.316l-.431-.11c-.73-.192-.917-.58-.917-.994 0-.504.499-.964 1.205-.964.575 0 1.228.293 1.219 1.012h-.768c0-.22-.202-.36-.432-.36-.25 0-.423.144-.423.346 0 .168.159.264.346.307l.518.14c.73.186.86.642.86.94 0 .657-.658 1.017-1.316 1.017-.638 0-1.281-.388-1.295-1.08z" }) + ] + } + ); +}); + +export { SiW3schools as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.cjs new file mode 100644 index 000000000..3990a5be1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWacom = React__namespace.forwardRef(function SiWacom2({ title = "Wacom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.2432 9.8765c-.4754 0-.7006.05-.9445.1439l-.0438.0187.269.4754.0312-.0125c.1814-.0751.3816-.1001.7569-.1001h.4003c.588 0 .9194.294.9194.8069v1.5762c0 .5129-.3377.8069-.9194.8069h-.6568c-.6005 0-.8944-.244-.8944-.7443 0-.4942.294-.7381.8944-.7381h.9132v-.5254h-.9382c-.8882 0-1.4011.4628-1.4011 1.2697 0 .7819.538 1.2635 1.401 1.2635h.7069c.982 0 1.4324-.6567 1.4324-1.2635V11.14c0-.6067-.4504-1.2635-1.4324-1.2635zM9.7764 11.14c0-.6067.4503-1.2635 1.4324-1.2635h.6129c.5004.0063.8257.075 1.0884.2502l.0375.0188-.3065.444-.0312-.0187c-.2002-.119-.4441-.169-.857-.169H11.24c-.5942 0-.9194.2877-.9194.807v1.5762c0 .5192.3252.8069.9194.8069h.5129c.4129 0 .663-.05.857-.169l.0312-.0187.3065.4441-.0375.025c-.269.169-.5942.244-1.0946.244h-.6067c-.9821 0-1.4324-.6567-1.4324-1.2635zm6.5426 1.6513c0 .5129-.3378.8069-.9195.8069h-.6505c-.5942 0-.9194-.2878-.9194-.807V11.215c0-.513.3377-.8068.9194-.8068h.6505c.588 0 .9195.2939.9195.8068zm-.9007-2.9085h-.6943c-.9883 0-1.4386.6567-1.4386 1.2634V12.86c0 .6067.4503 1.2635 1.4323 1.2635h.7006c.982 0 1.4324-.6568 1.4324-1.2635v-1.714c.0062-.6067-.4441-1.2634-1.4324-1.2634zm3.4652.0125c.5692 0 .907.1375 1.1697.4752.2627-.3377.6067-.4753 1.1696-.4753.8444 0 1.3949.4816 1.3949 1.226v2.9898h-.5317V11.19c0-.5191-.294-.7693-.8882-.7693-.5629 0-.8757.2564-.8757.7193v2.971h-.5379V11.14c0-.463-.3127-.7193-.8757-.7193-.6004 0-.8882.2502-.8882.7693v2.921h-.5379v-2.9899c.0063-.7443.5504-1.2259 1.4011-1.2259zm4.6912.2563c.0438 0 .075.0063.0938.0188.025.0125.0313.0375.025.0625 0 .0313-.0125.0563-.0438.0688-.0187.0125-.0438.0125-.075.0125h-.0688v-.1626zm.1376-.0313c-.0313-.0125-.0688-.0187-.1251-.0187l-.1564-.0063v.4504h.0813v-.1752h.0626c.0438 0 .0688 0 .0875.0125.0313.0126.0438.0501.0438.1001v.0626h.0751v-.0063c-.0063-.0062-.0063-.0125-.0063-.025v-.0626c0-.025-.0062-.0437-.025-.0688-.0125-.025-.0375-.0375-.0751-.0437.0251 0 .0501-.0063.0626-.0188.0313-.0188.0438-.05.0438-.0876 0-.0563-.025-.0938-.0688-.1126zm-.4691.2065c0-.1.0312-.1814.1-.2502.0688-.0688.1564-.1.2502-.1064.1001 0 .1814.0376.2502.1064.0688.0688.1001.1501.1001.2502 0 .1-.0313.1813-.1001.2501-.0688.069-.1501.1064-.2502.1064-.1 0-.1814-.0375-.2502-.1064-.0688-.0688-.1-.15-.1-.25zm.3502.4065c.1126 0 .2064-.0375.2878-.1188.0813-.075.1188-.1752.1188-.294 0-.1126-.0375-.2064-.1188-.2877-.0751-.0813-.1752-.1189-.2878-.1189s-.2064.0376-.2877.119c-.0813.0812-.1188.175-.1188.2876 0 .1188.0375.2127.1188.294.0751.0813.1751.1188.2877.1188zm-18.996 2.0954v-2.921l.5379-.0063v2.99c-.0063.7442-.5505 1.2258-1.4011 1.2258-.5692 0-.907-.1376-1.1697-.4754-.2627.3378-.6005.4754-1.1697.4754C.5504 14.1172 0 13.6356 0 12.8913V9.9014l.5317.0063v2.921c0 .5192.294.7694.8882.7694.5629 0 .8756-.2565.8756-.7194v-2.971h.538v2.971c0 .463.3127.7194.8756.7194.6005 0 .8882-.2502.8882-.7694z" }) + ] + } + ); +}); + +exports.default = SiWacom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.d.ts new file mode 100644 index 000000000..5fa470101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWacom: IconType; +export { SiWacom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.mjs new file mode 100644 index 000000000..d6e6c7a89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWacom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWacom = React.forwardRef(function SiWacom2({ title = "Wacom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.2432 9.8765c-.4754 0-.7006.05-.9445.1439l-.0438.0187.269.4754.0312-.0125c.1814-.0751.3816-.1001.7569-.1001h.4003c.588 0 .9194.294.9194.8069v1.5762c0 .5129-.3377.8069-.9194.8069h-.6568c-.6005 0-.8944-.244-.8944-.7443 0-.4942.294-.7381.8944-.7381h.9132v-.5254h-.9382c-.8882 0-1.4011.4628-1.4011 1.2697 0 .7819.538 1.2635 1.401 1.2635h.7069c.982 0 1.4324-.6567 1.4324-1.2635V11.14c0-.6067-.4504-1.2635-1.4324-1.2635zM9.7764 11.14c0-.6067.4503-1.2635 1.4324-1.2635h.6129c.5004.0063.8257.075 1.0884.2502l.0375.0188-.3065.444-.0312-.0187c-.2002-.119-.4441-.169-.857-.169H11.24c-.5942 0-.9194.2877-.9194.807v1.5762c0 .5192.3252.8069.9194.8069h.5129c.4129 0 .663-.05.857-.169l.0312-.0187.3065.4441-.0375.025c-.269.169-.5942.244-1.0946.244h-.6067c-.9821 0-1.4324-.6567-1.4324-1.2635zm6.5426 1.6513c0 .5129-.3378.8069-.9195.8069h-.6505c-.5942 0-.9194-.2878-.9194-.807V11.215c0-.513.3377-.8068.9194-.8068h.6505c.588 0 .9195.2939.9195.8068zm-.9007-2.9085h-.6943c-.9883 0-1.4386.6567-1.4386 1.2634V12.86c0 .6067.4503 1.2635 1.4323 1.2635h.7006c.982 0 1.4324-.6568 1.4324-1.2635v-1.714c.0062-.6067-.4441-1.2634-1.4324-1.2634zm3.4652.0125c.5692 0 .907.1375 1.1697.4752.2627-.3377.6067-.4753 1.1696-.4753.8444 0 1.3949.4816 1.3949 1.226v2.9898h-.5317V11.19c0-.5191-.294-.7693-.8882-.7693-.5629 0-.8757.2564-.8757.7193v2.971h-.5379V11.14c0-.463-.3127-.7193-.8757-.7193-.6004 0-.8882.2502-.8882.7693v2.921h-.5379v-2.9899c.0063-.7443.5504-1.2259 1.4011-1.2259zm4.6912.2563c.0438 0 .075.0063.0938.0188.025.0125.0313.0375.025.0625 0 .0313-.0125.0563-.0438.0688-.0187.0125-.0438.0125-.075.0125h-.0688v-.1626zm.1376-.0313c-.0313-.0125-.0688-.0187-.1251-.0187l-.1564-.0063v.4504h.0813v-.1752h.0626c.0438 0 .0688 0 .0875.0125.0313.0126.0438.0501.0438.1001v.0626h.0751v-.0063c-.0063-.0062-.0063-.0125-.0063-.025v-.0626c0-.025-.0062-.0437-.025-.0688-.0125-.025-.0375-.0375-.0751-.0437.0251 0 .0501-.0063.0626-.0188.0313-.0188.0438-.05.0438-.0876 0-.0563-.025-.0938-.0688-.1126zm-.4691.2065c0-.1.0312-.1814.1-.2502.0688-.0688.1564-.1.2502-.1064.1001 0 .1814.0376.2502.1064.0688.0688.1001.1501.1001.2502 0 .1-.0313.1813-.1001.2501-.0688.069-.1501.1064-.2502.1064-.1 0-.1814-.0375-.2502-.1064-.0688-.0688-.1-.15-.1-.25zm.3502.4065c.1126 0 .2064-.0375.2878-.1188.0813-.075.1188-.1752.1188-.294 0-.1126-.0375-.2064-.1188-.2877-.0751-.0813-.1752-.1189-.2878-.1189s-.2064.0376-.2877.119c-.0813.0812-.1188.175-.1188.2876 0 .1188.0375.2127.1188.294.0751.0813.1751.1188.2877.1188zm-18.996 2.0954v-2.921l.5379-.0063v2.99c-.0063.7442-.5505 1.2258-1.4011 1.2258-.5692 0-.907-.1376-1.1697-.4754-.2627.3378-.6005.4754-1.1697.4754C.5504 14.1172 0 13.6356 0 12.8913V9.9014l.5317.0063v2.921c0 .5192.294.7694.8882.7694.5629 0 .8756-.2565.8756-.7194v-2.971h.538v2.971c0 .463.3127.7194.8756.7194.6005 0 .8882-.2502.8882-.7694z" }) + ] + } + ); +}); + +export { SiWacom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.cjs new file mode 100644 index 000000000..ccdc4cb17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWagmi = React__namespace.forwardRef(function SiWagmi2({ title = "Wagmi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.7391 13.2065c0 .7564.6132 1.3696 1.3696 1.3696h2.7391c.7564 0 1.3696-.6132 1.3696-1.3696V7.7283c0-.7564.6132-1.3696 1.3696-1.3696s1.3695.6132 1.3695 1.3696v5.4782c0 .7564.6132 1.3696 1.3696 1.3696h2.7391c.7564 0 1.3696-.6132 1.3696-1.3696V7.7283c0-.7564.6131-1.3696 1.3695-1.3696s1.3696.6132 1.3696 1.3696v8.2174c0 .7564-.6132 1.3695-1.3696 1.3695H1.3696C.6132 17.3152 0 16.7021 0 15.9457V7.7283c0-.7564.6132-1.3696 1.3696-1.3696s1.3695.6132 1.3695 1.3696zm19.4348 4.4348c1.0085 0 1.8261-.8176 1.8261-1.826 0-1.0086-.8176-1.8262-1.826-1.8262-1.0086 0-1.8262.8176-1.8262 1.8261 0 1.0085.8176 1.826 1.8261 1.826z" }) + ] + } + ); +}); + +exports.default = SiWagmi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.d.ts new file mode 100644 index 000000000..7dd66c8fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWagmi: IconType; +export { SiWagmi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.mjs new file mode 100644 index 000000000..b559575c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWagmi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWagmi = React.forwardRef(function SiWagmi2({ title = "Wagmi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.7391 13.2065c0 .7564.6132 1.3696 1.3696 1.3696h2.7391c.7564 0 1.3696-.6132 1.3696-1.3696V7.7283c0-.7564.6132-1.3696 1.3696-1.3696s1.3695.6132 1.3695 1.3696v5.4782c0 .7564.6132 1.3696 1.3696 1.3696h2.7391c.7564 0 1.3696-.6132 1.3696-1.3696V7.7283c0-.7564.6131-1.3696 1.3695-1.3696s1.3696.6132 1.3696 1.3696v8.2174c0 .7564-.6132 1.3695-1.3696 1.3695H1.3696C.6132 17.3152 0 16.7021 0 15.9457V7.7283c0-.7564.6132-1.3696 1.3696-1.3696s1.3695.6132 1.3695 1.3696zm19.4348 4.4348c1.0085 0 1.8261-.8176 1.8261-1.826 0-1.0086-.8176-1.8262-1.826-1.8262-1.0086 0-1.8262.8176-1.8262 1.8261 0 1.0085.8176 1.826 1.8261 1.826z" }) + ] + } + ); +}); + +export { SiWagmi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.cjs new file mode 100644 index 000000000..87afe10e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#43B1B0"; +const SiWagtail = React__namespace.forwardRef(function SiWagtail2({ title = "Wagtail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.1812 0c-2.641 0-4.11 1.969-4.732 3.313L4.0175 16.9734l2.0979-.3927L2.2627 24l2.688-.4822 2.0433-5.8379c5.8146 0 13.279-2.0877 12.2382-9.9063 0 0-.634-3.151-4.7436-2.3013-.4163-1.4205-.3419-2.4749.5662-3.4343 1.2487-1.3192 3.1822-.5958 3.1822-.5958l.002-1.0877C17.5596.0565 16.9059 0 16.1813 0zm2.417 2.5229a.4955.4955 0 1 0 0 .991.4955.4955 0 0 0 0-.991zm1.502 1.029l-1.2918 1.5742h2.9289zM16.374 8.3422l.3033.0105-.0407.5502-.0374.2886c-.0144.1048-.0252.2188-.051.3388l-.0737.383-.1068.4193c-.0422.1448-.0937.2935-.1428.4484a14.128 14.128 0 0 1-.1863.4678l-.1128.2374-.0574.1207-.066.1184-.1343.2399c-.0502.0778-.1008.1563-.152.2354l-.0772.119-.0853.1146c-.0578.0762-.1137.1546-.1741.2303-.1258.1472-.2494.2993-.3902.438-.1335.1453-.2843.2754-.4312.4097l-.231.19c-.0764.0644-.1598.12-.2393.1803-.3235.2336-.6618.4464-1.01.626-.3473.1805-.697.3432-1.0442.4767-.3467.1351-.686.2538-1.0122.3513-.3253.1004-.6363.1829-.9243.2547-.5762.1422-1.061.2393-1.4002.3065l-.5337.1026.531-.1155c.3374-.0754.8196-.184 1.391-.3397.2855-.0785.5935-.1682.9148-.276.3223-.1047.6567-.2308.9972-.373.3413-.1407.6833-.31 1.0217-.4962.3392-.1853.6668-.4028.9782-.6391.0764-.0611.1567-.1172.2298-.182l.2212-.191c.1401-.1346.2841-.2646.4104-.4091.1337-.138.2499-.2887.3685-.4341.0567-.0747.109-.1521.1632-.2271l.08-.1128.0719-.1168.1413-.231.1241-.2348.0609-.1155.0526-.118.1033-.2314c.061-.1552.1165-.3078.1688-.4556.0438-.1509.09-.2953.1274-.436l.0934-.4074.0623-.3721c.0223-.1163.03-.2273.0415-.3291.0108-.102.0208-.1956.0296-.2803l.0267-.5345Z" }) + ] + } + ); +}); + +exports.default = SiWagtail; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.d.ts new file mode 100644 index 000000000..63452de5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#43B1B0"; +declare const SiWagtail: IconType; +export { SiWagtail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.mjs new file mode 100644 index 000000000..ee772d023 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWagtail.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#43B1B0"; +const SiWagtail = React.forwardRef(function SiWagtail2({ title = "Wagtail", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.1812 0c-2.641 0-4.11 1.969-4.732 3.313L4.0175 16.9734l2.0979-.3927L2.2627 24l2.688-.4822 2.0433-5.8379c5.8146 0 13.279-2.0877 12.2382-9.9063 0 0-.634-3.151-4.7436-2.3013-.4163-1.4205-.3419-2.4749.5662-3.4343 1.2487-1.3192 3.1822-.5958 3.1822-.5958l.002-1.0877C17.5596.0565 16.9059 0 16.1813 0zm2.417 2.5229a.4955.4955 0 1 0 0 .991.4955.4955 0 0 0 0-.991zm1.502 1.029l-1.2918 1.5742h2.9289zM16.374 8.3422l.3033.0105-.0407.5502-.0374.2886c-.0144.1048-.0252.2188-.051.3388l-.0737.383-.1068.4193c-.0422.1448-.0937.2935-.1428.4484a14.128 14.128 0 0 1-.1863.4678l-.1128.2374-.0574.1207-.066.1184-.1343.2399c-.0502.0778-.1008.1563-.152.2354l-.0772.119-.0853.1146c-.0578.0762-.1137.1546-.1741.2303-.1258.1472-.2494.2993-.3902.438-.1335.1453-.2843.2754-.4312.4097l-.231.19c-.0764.0644-.1598.12-.2393.1803-.3235.2336-.6618.4464-1.01.626-.3473.1805-.697.3432-1.0442.4767-.3467.1351-.686.2538-1.0122.3513-.3253.1004-.6363.1829-.9243.2547-.5762.1422-1.061.2393-1.4002.3065l-.5337.1026.531-.1155c.3374-.0754.8196-.184 1.391-.3397.2855-.0785.5935-.1682.9148-.276.3223-.1047.6567-.2308.9972-.373.3413-.1407.6833-.31 1.0217-.4962.3392-.1853.6668-.4028.9782-.6391.0764-.0611.1567-.1172.2298-.182l.2212-.191c.1401-.1346.2841-.2646.4104-.4091.1337-.138.2499-.2887.3685-.4341.0567-.0747.109-.1521.1632-.2271l.08-.1128.0719-.1168.1413-.231.1241-.2348.0609-.1155.0526-.118.1033-.2314c.061-.1552.1165-.3078.1688-.4556.0438-.1509.09-.2953.1274-.436l.0934-.4074.0623-.3721c.0223-.1163.03-.2273.0415-.3291.0108-.102.0208-.1956.0296-.2803l.0267-.5345Z" }) + ] + } + ); +}); + +export { SiWagtail as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWails.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWails.cjs new file mode 100644 index 000000000..1b1508e13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWails.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DF0000"; +const SiWails = React__namespace.forwardRef(function SiWails2({ title = "Wails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19.67 5.252-7.856 5.039-.369-.459-8.69-.283 1.891 1.904 5.221.106 1.63 1.656-5.878.662 1.77 1.783 5.34-1.185.003-.006.993 1.168-3.079 3.11 7.399.001-1.582-5.002 2.209 3.14H24l-5.385-2.415h4.121l-5.384-2.418h4.117L16.297 9.73l1.088-1.443 4.09-1.076-3.467.248 1.662-2.207zm-3.635 2.322-6.039.43 1.455 1.826 1.813-.476 2.771-1.78zm-.252 2.84-.86 1.145-.001-.002.154-.205.707-.938zM0 12.2l5.615 1.033-1.017-1.027L0 12.2z" }) + ] + } + ); +}); + +exports.default = SiWails; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWails.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWails.d.ts new file mode 100644 index 000000000..ef33ae12c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWails.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DF0000"; +declare const SiWails: IconType; +export { SiWails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWails.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWails.mjs new file mode 100644 index 000000000..79a531220 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWails.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DF0000"; +const SiWails = React.forwardRef(function SiWails2({ title = "Wails", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m19.67 5.252-7.856 5.039-.369-.459-8.69-.283 1.891 1.904 5.221.106 1.63 1.656-5.878.662 1.77 1.783 5.34-1.185.003-.006.993 1.168-3.079 3.11 7.399.001-1.582-5.002 2.209 3.14H24l-5.385-2.415h4.121l-5.384-2.418h4.117L16.297 9.73l1.088-1.443 4.09-1.076-3.467.248 1.662-2.207zm-3.635 2.322-6.039.43 1.455 1.826 1.813-.476 2.771-1.78zm-.252 2.84-.86 1.145-.001-.002.154-.205.707-.938zM0 12.2l5.615 1.033-1.017-1.027L0 12.2z" }) + ] + } + ); +}); + +export { SiWails as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.cjs new file mode 100644 index 000000000..993bd79b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWakatime = React__namespace.forwardRef(function SiWakatime2({ title = "WakaTime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 2.824a9.176 9.176 0 1 1 0 18.352 9.176 9.176 0 0 1 0-18.352zm5.097 5.058c-.327 0-.61.19-.764.45-1.025 1.463-2.21 3.162-3.288 4.706l-.387-.636a.897.897 0 0 0-.759-.439.901.901 0 0 0-.788.492l-.357.581-1.992-2.943a.897.897 0 0 0-.761-.446c-.514 0-.903.452-.903.96a1 1 0 0 0 .207.61l2.719 3.96c.152.272.44.47.776.47a.91.91 0 0 0 .787-.483c.046-.071.23-.368.314-.504l.324.52c-.035-.047.076.113.087.13.024.031.054.059.078.085.019.019.04.036.058.052.036.033.08.056.115.08.025.016.052.028.076.04.029.015.06.024.088.035.058.025.122.027.18.04.031.004.064.003.092.005.29 0 .546-.149.707-.36 1.4-2 2.842-4.055 4.099-5.849A.995.995 0 0 0 18 8.842c0-.508-.389-.96-.903-.96" }) + ] + } + ); +}); + +exports.default = SiWakatime; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.d.ts new file mode 100644 index 000000000..13b1724f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWakatime: IconType; +export { SiWakatime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.mjs new file mode 100644 index 000000000..235233296 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWakatime.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWakatime = React.forwardRef(function SiWakatime2({ title = "WakaTime", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 2.824a9.176 9.176 0 1 1 0 18.352 9.176 9.176 0 0 1 0-18.352zm5.097 5.058c-.327 0-.61.19-.764.45-1.025 1.463-2.21 3.162-3.288 4.706l-.387-.636a.897.897 0 0 0-.759-.439.901.901 0 0 0-.788.492l-.357.581-1.992-2.943a.897.897 0 0 0-.761-.446c-.514 0-.903.452-.903.96a1 1 0 0 0 .207.61l2.719 3.96c.152.272.44.47.776.47a.91.91 0 0 0 .787-.483c.046-.071.23-.368.314-.504l.324.52c-.035-.047.076.113.087.13.024.031.054.059.078.085.019.019.04.036.058.052.036.033.08.056.115.08.025.016.052.028.076.04.029.015.06.024.088.035.058.025.122.027.18.04.031.004.064.003.092.005.29 0 .546-.149.707-.36 1.4-2 2.842-4.055 4.099-5.849A.995.995 0 0 0 18 8.842c0-.508-.389-.96-.903-.96" }) + ] + } + ); +}); + +export { SiWakatime as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.cjs new file mode 100644 index 000000000..f71edc242 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWalkman = React__namespace.forwardRef(function SiWalkman2({ title = "WALKMAN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.838 6.377a3.624 3.624 0 0 0-.833.086c-1.696.375-2.56 1.674-2.535 3.027.022 1.328-.592 2.51-1.911 2.663-1.28.154-1.861-.835-1.946-2.009-.083-1.159-.875-2.076-2.099-1.802-1.044.227-1.785 1.163-1.846 2.339-.065 1.22-.547 2.24-1.425 2.343-.841.097-1.261-.933-1.317-1.75-.054-.803-.453-1.822-1.497-1.59C.446 9.9.017 11.128.001 11.94c-.017.82.333 1.914 1.27 1.853.726-.048 1.275.636 1.291 1.67.014 1.008.568 2.16 1.665 2.162 1.16 0 1.799-.982 1.828-2.366.027-1.2.757-2.06 1.555-2.147.827-.087 1.588.635 1.674 1.957.091 1.344.77 2.517 2.568 2.517 1.947 0 2.457-1.477 2.421-2.889-.036-1.397 1.03-2.367 2.318-2.544 1.404-.192 2.862-1.246 2.687-3.382-.138-1.701-1.242-2.374-2.44-2.393zm3.999 5.638a3.909 3.909 0 0 0-.318.02c-1.6.16-2.762 1.27-2.644 2.893.12 1.65 1.47 2.679 3.133 2.679 1.769 0 3.165-1.154 2.975-2.992-.178-1.69-1.571-2.632-3.146-2.6Z" }) + ] + } + ); +}); + +exports.default = SiWalkman; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.d.ts new file mode 100644 index 000000000..068482b49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWalkman: IconType; +export { SiWalkman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.mjs new file mode 100644 index 000000000..ffd063d29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWalkman.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWalkman = React.forwardRef(function SiWalkman2({ title = "WALKMAN", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.838 6.377a3.624 3.624 0 0 0-.833.086c-1.696.375-2.56 1.674-2.535 3.027.022 1.328-.592 2.51-1.911 2.663-1.28.154-1.861-.835-1.946-2.009-.083-1.159-.875-2.076-2.099-1.802-1.044.227-1.785 1.163-1.846 2.339-.065 1.22-.547 2.24-1.425 2.343-.841.097-1.261-.933-1.317-1.75-.054-.803-.453-1.822-1.497-1.59C.446 9.9.017 11.128.001 11.94c-.017.82.333 1.914 1.27 1.853.726-.048 1.275.636 1.291 1.67.014 1.008.568 2.16 1.665 2.162 1.16 0 1.799-.982 1.828-2.366.027-1.2.757-2.06 1.555-2.147.827-.087 1.588.635 1.674 1.957.091 1.344.77 2.517 2.568 2.517 1.947 0 2.457-1.477 2.421-2.889-.036-1.397 1.03-2.367 2.318-2.544 1.404-.192 2.862-1.246 2.687-3.382-.138-1.701-1.242-2.374-2.44-2.393zm3.999 5.638a3.909 3.909 0 0 0-.318.02c-1.6.16-2.762 1.27-2.644 2.893.12 1.65 1.47 2.679 3.133 2.679 1.769 0 3.165-1.154 2.975-2.992-.178-1.69-1.571-2.632-3.146-2.6Z" }) + ] + } + ); +}); + +export { SiWalkman as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.cjs new file mode 100644 index 000000000..2bd4044a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3F6184"; +const SiWallabag = React__namespace.forwardRef(function SiWallabag2({ title = "Wallabag", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.376.0007c-.0433-.0046-.0911.014-.1388.0528-.1028.0835-.9982.2919-1.529.7058-.857.6687-1.3854 1.9404-1.6248 2.6435a5.6065 5.6065 0 00-.047.1408c-.1116.2692-.3343.2698-.3343.2698a3.0022 3.0022 0 00-.3246-.0176c-.097 0-.1948.0043-.2913.0137-.0022.0004-.0037-.0002-.006 0-.284.0419-.4404-.3045-.473-.3871-.332-.9534-1.2247-2.8338-3.232-3.3397 0 0-.3653-.2788-.2543.1935.1057.4514.3243.9065.2757 1.5701-.0223.3063-.2117 1.877 1.2318 2.6944.1372.0777.26.1445.3696.1995-.7266.5814-1.3884 1.39-1.9533 2.3092.287-.1764 1.836-.9975 4.3328.0332 2.5684 1.06 4.1607.139 4.3582.0137-.6209-1.0206-1.358-1.9094-2.1743-2.5066.0544-.015.1094-.0297.1681-.047 1.0826-.313 1.3577-1.2306 1.4156-2.0158.0655-.8905.1097-.9039.303-1.705.1392-.5772.0578-.8074-.0723-.8212zM13.2022 9.03c-.2261 0-.4135.0631-.5553.1877-.1458.1276-.219.2755-.219.44v2.841c0 .3573.0352.696.1037 1.005.0706.316.1934.592.3656.8231.174.2335.41.4188.702.5494.2888.1287.6495.1936 1.0733.1936.4417 0 .8113-.0828 1.099-.2444.2413-.1355.4447-.313.6062-.5299.1556.217.3546.3945.5924.53.284.1615.6595.2443 1.1165.2443.4237 0 .7841-.0666 1.0695-.1955.2878-.1305.5217-.3144.696-.5475.1726-.2319.2958-.508.3657-.8232.0685-.309.1017-.6476.1017-1.005v-2.841c0-.1637-.0699-.312-.2112-.44-.1378-.1252-.3271-.1876-.5611-.1876-.2123 0-.389.0635-.524.1896-.1366.1277-.2053.275-.2053.438v2.886c0 .3872-.068.6726-.2034.8486-.1308.17-.3403.2522-.6394.2522-.306 0-.516-.0814-.6393-.2502-.1287-.176-.1936-.4623-.1936-.8506V9.646c0-.1973-.0896-.3575-.26-.4653-.2317-.146-.4609-.1987-.741-.1056a1.1842 1.1842 0 00-.2406.1095.6958.6958 0 00-.1955.178c-.0579.0776-.088.1612-.088.2502v2.931c0 .3878-.0649.6743-.1936.8504-.1236.1688-.332.2503-.6374.2503-.3064 0-.5181-.0829-.6452-.2522-.132-.176-.1994-.461-.1994-.8486v-2.886c0-.1632-.0686-.3104-.2053-.438-.135-.1262-.3142-.1896-.5338-.1896zm-3.0521 5.774a5.613 5.613 0 00.3363 1.0324c.1197.6731.2803 2.2572-.481 3.6446-.6706 1.2223-3.981 2.8883-8.8945 1.9318 0 0-.1964-.1367-.2561-.0235-.0883.1675.272.303.6433.4008 3.4209.906 8.583.5362 10.204-.7997.7398-.609 1.0264-1.4282 1.099-2.311 0 0 .0197-.2306.309-.0568.0828.0498.3824.2452.43.4654.0417.3133.0445.6964-.1172.9659-.2314.3854-.2341.4414.0703.6589.187.1334.9515.6952 2.014 1.3335.0026.0018.0031.0025.0058.0039.2247.1353.5377.4673.5377.4673.4785.5534 1.518 1.6664 1.971 1.4566.2138-.099-.0079-.5436-.0079-.5436s.3545.4607.5456.3031c.1454-.12-.0841-.5807-.0841-.5807s.3099.2699.4947.1701c.226-.122-.0326-.8295-1.8105-1.9103-1.7787-1.0817-2.261-1.2476-2.3033-1.7304 0 0-.0014-.023 0-.0645.0138-.1066.0739-.3332.3324-.309a7.454 7.454 0 001.1889.0958 7.391 7.391 0 001.355-.1231s.0226-.0048.0293-.006c.051-.0064.1502-.0025.1506.1213-.0162.1569-.0602.3136-.1526.4516-.26.3897-.174.4438.0978.6942.1677.1544.9373.8313 1.9905 1.486.0022.0016.0014.0026.0039.0039.2245.1351.614.5064.614.5064.4364.4432 1.2384 1.1847 1.6757 1.14.2958-.0302.0547-.5397.0547-.5397s.3737.3603.5573.2542c.2052-.1184-.0841-.4947-.0841-.4947s.2407.1283.4106.086c.1704-.0424.2125-.4768-1.5564-1.572-1.769-1.0961-2.364-1.4811-2.3267-1.9005 0 0 .0002-.0682.0176-.172.043-.2223.1784-.601.612-.8174a.2517.2517 0 00.0372-.0235c1.3783-.7998 2.386-2.0874 2.7413-3.6954-.3577.8882-3.0083 1.578-6.2275 1.578-3.218 0-5.87-.6898-6.2275-1.578z" }) + ] + } + ); +}); + +exports.default = SiWallabag; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.d.ts new file mode 100644 index 000000000..ffa868c44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3F6184"; +declare const SiWallabag: IconType; +export { SiWallabag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.mjs new file mode 100644 index 000000000..8d8d92a26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWallabag.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3F6184"; +const SiWallabag = React.forwardRef(function SiWallabag2({ title = "Wallabag", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.376.0007c-.0433-.0046-.0911.014-.1388.0528-.1028.0835-.9982.2919-1.529.7058-.857.6687-1.3854 1.9404-1.6248 2.6435a5.6065 5.6065 0 00-.047.1408c-.1116.2692-.3343.2698-.3343.2698a3.0022 3.0022 0 00-.3246-.0176c-.097 0-.1948.0043-.2913.0137-.0022.0004-.0037-.0002-.006 0-.284.0419-.4404-.3045-.473-.3871-.332-.9534-1.2247-2.8338-3.232-3.3397 0 0-.3653-.2788-.2543.1935.1057.4514.3243.9065.2757 1.5701-.0223.3063-.2117 1.877 1.2318 2.6944.1372.0777.26.1445.3696.1995-.7266.5814-1.3884 1.39-1.9533 2.3092.287-.1764 1.836-.9975 4.3328.0332 2.5684 1.06 4.1607.139 4.3582.0137-.6209-1.0206-1.358-1.9094-2.1743-2.5066.0544-.015.1094-.0297.1681-.047 1.0826-.313 1.3577-1.2306 1.4156-2.0158.0655-.8905.1097-.9039.303-1.705.1392-.5772.0578-.8074-.0723-.8212zM13.2022 9.03c-.2261 0-.4135.0631-.5553.1877-.1458.1276-.219.2755-.219.44v2.841c0 .3573.0352.696.1037 1.005.0706.316.1934.592.3656.8231.174.2335.41.4188.702.5494.2888.1287.6495.1936 1.0733.1936.4417 0 .8113-.0828 1.099-.2444.2413-.1355.4447-.313.6062-.5299.1556.217.3546.3945.5924.53.284.1615.6595.2443 1.1165.2443.4237 0 .7841-.0666 1.0695-.1955.2878-.1305.5217-.3144.696-.5475.1726-.2319.2958-.508.3657-.8232.0685-.309.1017-.6476.1017-1.005v-2.841c0-.1637-.0699-.312-.2112-.44-.1378-.1252-.3271-.1876-.5611-.1876-.2123 0-.389.0635-.524.1896-.1366.1277-.2053.275-.2053.438v2.886c0 .3872-.068.6726-.2034.8486-.1308.17-.3403.2522-.6394.2522-.306 0-.516-.0814-.6393-.2502-.1287-.176-.1936-.4623-.1936-.8506V9.646c0-.1973-.0896-.3575-.26-.4653-.2317-.146-.4609-.1987-.741-.1056a1.1842 1.1842 0 00-.2406.1095.6958.6958 0 00-.1955.178c-.0579.0776-.088.1612-.088.2502v2.931c0 .3878-.0649.6743-.1936.8504-.1236.1688-.332.2503-.6374.2503-.3064 0-.5181-.0829-.6452-.2522-.132-.176-.1994-.461-.1994-.8486v-2.886c0-.1632-.0686-.3104-.2053-.438-.135-.1262-.3142-.1896-.5338-.1896zm-3.0521 5.774a5.613 5.613 0 00.3363 1.0324c.1197.6731.2803 2.2572-.481 3.6446-.6706 1.2223-3.981 2.8883-8.8945 1.9318 0 0-.1964-.1367-.2561-.0235-.0883.1675.272.303.6433.4008 3.4209.906 8.583.5362 10.204-.7997.7398-.609 1.0264-1.4282 1.099-2.311 0 0 .0197-.2306.309-.0568.0828.0498.3824.2452.43.4654.0417.3133.0445.6964-.1172.9659-.2314.3854-.2341.4414.0703.6589.187.1334.9515.6952 2.014 1.3335.0026.0018.0031.0025.0058.0039.2247.1353.5377.4673.5377.4673.4785.5534 1.518 1.6664 1.971 1.4566.2138-.099-.0079-.5436-.0079-.5436s.3545.4607.5456.3031c.1454-.12-.0841-.5807-.0841-.5807s.3099.2699.4947.1701c.226-.122-.0326-.8295-1.8105-1.9103-1.7787-1.0817-2.261-1.2476-2.3033-1.7304 0 0-.0014-.023 0-.0645.0138-.1066.0739-.3332.3324-.309a7.454 7.454 0 001.1889.0958 7.391 7.391 0 001.355-.1231s.0226-.0048.0293-.006c.051-.0064.1502-.0025.1506.1213-.0162.1569-.0602.3136-.1526.4516-.26.3897-.174.4438.0978.6942.1677.1544.9373.8313 1.9905 1.486.0022.0016.0014.0026.0039.0039.2245.1351.614.5064.614.5064.4364.4432 1.2384 1.1847 1.6757 1.14.2958-.0302.0547-.5397.0547-.5397s.3737.3603.5573.2542c.2052-.1184-.0841-.4947-.0841-.4947s.2407.1283.4106.086c.1704-.0424.2125-.4768-1.5564-1.572-1.769-1.0961-2.364-1.4811-2.3267-1.9005 0 0 .0002-.0682.0176-.172.043-.2223.1784-.601.612-.8174a.2517.2517 0 00.0372-.0235c1.3783-.7998 2.386-2.0874 2.7413-3.6954-.3577.8882-3.0083 1.578-6.2275 1.578-3.218 0-5.87-.6898-6.2275-1.578z" }) + ] + } + ); +}); + +export { SiWallabag as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.cjs new file mode 100644 index 000000000..17eff02d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3B99FC"; +const SiWalletconnect = React__namespace.forwardRef(function SiWalletconnect2({ title = "WalletConnect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.913 7.519c3.915-3.831 10.26-3.831 14.174 0l.471.461a.483.483 0 0 1 0 .694l-1.611 1.577a.252.252 0 0 1-.354 0l-.649-.634c-2.73-2.673-7.157-2.673-9.887 0l-.694.68a.255.255 0 0 1-.355 0L4.397 8.719a.482.482 0 0 1 0-.693l.516-.507Zm17.506 3.263 1.434 1.404a.483.483 0 0 1 0 .694l-6.466 6.331a.508.508 0 0 1-.709 0l-4.588-4.493a.126.126 0 0 0-.178 0l-4.589 4.493a.508.508 0 0 1-.709 0L.147 12.88a.483.483 0 0 1 0-.694l1.434-1.404a.508.508 0 0 1 .709 0l4.589 4.493c.05.048.129.048.178 0l4.589-4.493a.508.508 0 0 1 .709 0l4.589 4.493c.05.048.128.048.178 0l4.589-4.493a.507.507 0 0 1 .708 0Z" }) + ] + } + ); +}); + +exports.default = SiWalletconnect; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.d.ts new file mode 100644 index 000000000..91cd563d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3B99FC"; +declare const SiWalletconnect: IconType; +export { SiWalletconnect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.mjs new file mode 100644 index 000000000..22d04e8da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWalletconnect.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3B99FC"; +const SiWalletconnect = React.forwardRef(function SiWalletconnect2({ title = "WalletConnect", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.913 7.519c3.915-3.831 10.26-3.831 14.174 0l.471.461a.483.483 0 0 1 0 .694l-1.611 1.577a.252.252 0 0 1-.354 0l-.649-.634c-2.73-2.673-7.157-2.673-9.887 0l-.694.68a.255.255 0 0 1-.355 0L4.397 8.719a.482.482 0 0 1 0-.693l.516-.507Zm17.506 3.263 1.434 1.404a.483.483 0 0 1 0 .694l-6.466 6.331a.508.508 0 0 1-.709 0l-4.588-4.493a.126.126 0 0 0-.178 0l-4.589 4.493a.508.508 0 0 1-.709 0L.147 12.88a.483.483 0 0 1 0-.694l1.434-1.404a.508.508 0 0 1 .709 0l4.589 4.493c.05.048.129.048.178 0l4.589-4.493a.508.508 0 0 1 .709 0l4.589 4.493c.05.048.128.048.178 0l4.589-4.493a.507.507 0 0 1 .708 0Z" }) + ] + } + ); +}); + +export { SiWalletconnect as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.cjs new file mode 100644 index 000000000..4b6dac700 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21BDDB"; +const SiWantedly = React__namespace.forwardRef(function SiWantedly2({ title = "Wantedly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.453 14.555c-.171-.111-.658-.764-2.006-3.982a9.192 9.192 0 0 0-.237-.526l-.274-.664-2.362-5.702H8.85l2.362 5.702 2.362 5.706 2.181 5.267a.196.196 0 0 0 .362 0l2.373-5.682a.1.1 0 0 0-.037-.119zm-8.85 0c-.171-.111-.658-.764-2.006-3.982a8.971 8.971 0 0 0-.236-.525l-.276-.665-2.36-5.702H0l2.362 5.702 2.362 5.706 2.181 5.267a.196.196 0 0 0 .362 0l2.374-5.682a.098.098 0 0 0-.038-.119ZM24 6.375a2.851 2.851 0 0 1-2.851 2.852 2.851 2.851 0 0 1-2.852-2.852 2.851 2.851 0 0 1 2.852-2.851A2.851 2.851 0 0 1 24 6.375Z" }) + ] + } + ); +}); + +exports.default = SiWantedly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.d.ts new file mode 100644 index 000000000..9784f2198 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21BDDB"; +declare const SiWantedly: IconType; +export { SiWantedly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.mjs new file mode 100644 index 000000000..a87563e9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWantedly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21BDDB"; +const SiWantedly = React.forwardRef(function SiWantedly2({ title = "Wantedly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.453 14.555c-.171-.111-.658-.764-2.006-3.982a9.192 9.192 0 0 0-.237-.526l-.274-.664-2.362-5.702H8.85l2.362 5.702 2.362 5.706 2.181 5.267a.196.196 0 0 0 .362 0l2.373-5.682a.1.1 0 0 0-.037-.119zm-8.85 0c-.171-.111-.658-.764-2.006-3.982a8.971 8.971 0 0 0-.236-.525l-.276-.665-2.36-5.702H0l2.362 5.702 2.362 5.706 2.181 5.267a.196.196 0 0 0 .362 0l2.374-5.682a.098.098 0 0 0-.038-.119ZM24 6.375a2.851 2.851 0 0 1-2.851 2.852 2.851 2.851 0 0 1-2.852-2.852 2.851 2.851 0 0 1 2.852-2.851A2.851 2.851 0 0 1 24 6.375Z" }) + ] + } + ); +}); + +export { SiWantedly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.cjs new file mode 100644 index 000000000..dab6c3106 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4608AD"; +const SiWappalyzer = React__namespace.forwardRef(function SiWappalyzer2({ title = "Wappalyzer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 11.014v-.604L12 1.805 0 10.41v.603l12 8.606 12-8.605zM8.634 10.82l2.75 1.07.016-.01-1.526-1.967.984-.72 2.695 1.116.016-.011-1.463-2.018 1.247-.913 2.6 3.85-1.046.766-2.797-1.157-.012.008 1.593 2.038-1.048.767-5.26-1.903 1.251-.916zm14.418 1.488l.947.679v.603l-12 8.605L0 13.59v-.603l.947-.678 10.761 7.717.292.21.291-.21 10.762-7.717z" }) + ] + } + ); +}); + +exports.default = SiWappalyzer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.d.ts new file mode 100644 index 000000000..b90f4224e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4608AD"; +declare const SiWappalyzer: IconType; +export { SiWappalyzer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.mjs new file mode 100644 index 000000000..fd3504203 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWappalyzer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4608AD"; +const SiWappalyzer = React.forwardRef(function SiWappalyzer2({ title = "Wappalyzer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 11.014v-.604L12 1.805 0 10.41v.603l12 8.606 12-8.605zM8.634 10.82l2.75 1.07.016-.01-1.526-1.967.984-.72 2.695 1.116.016-.011-1.463-2.018 1.247-.913 2.6 3.85-1.046.766-2.797-1.157-.012.008 1.593 2.038-1.048.767-5.26-1.903 1.251-.916zm14.418 1.488l.947.679v.603l-12 8.605L0 13.59v-.603l.947-.678 10.761 7.717.292.21.291-.21 10.762-7.717z" }) + ] + } + ); +}); + +export { SiWappalyzer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.cjs new file mode 100644 index 000000000..bbc38f456 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#01A4FF"; +const SiWarp = React__namespace.forwardRef(function SiWarp2({ title = "Warp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.035 2.723h9.253A2.712 2.712 0 0 1 24 5.435v10.529a2.712 2.712 0 0 1-2.712 2.713H8.047Zm-1.681 2.6L6.766 19.677h5.598l-.399 1.6H2.712A2.712 2.712 0 0 1 0 18.565V8.036a2.712 2.712 0 0 1 2.712-2.712Z" }) + ] + } + ); +}); + +exports.default = SiWarp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.d.ts new file mode 100644 index 000000000..d7cb306be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#01A4FF"; +declare const SiWarp: IconType; +export { SiWarp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.mjs new file mode 100644 index 000000000..5367ae446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWarp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#01A4FF"; +const SiWarp = React.forwardRef(function SiWarp2({ title = "Warp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.035 2.723h9.253A2.712 2.712 0 0 1 24 5.435v10.529a2.712 2.712 0 0 1-2.712 2.713H8.047Zm-1.681 2.6L6.766 19.677h5.598l-.399 1.6H2.712A2.712 2.712 0 0 1 0 18.565V8.036a2.712 2.712 0 0 1 2.712-2.712Z" }) + ] + } + ); +}); + +export { SiWarp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.cjs new file mode 100644 index 000000000..ee3d8dc19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#01CD3E"; +const SiWasabi = React__namespace.forwardRef(function SiWasabi2({ title = "Wasabi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.483 3.517A11.91 11.91 0 0 0 12 0a11.91 11.91 0 0 0-8.483 3.517A11.91 11.91 0 0 0 0 12a11.91 11.91 0 0 0 3.517 8.483A11.91 11.91 0 0 0 12 24a11.91 11.91 0 0 0 8.483-3.517A11.91 11.91 0 0 0 24 12a11.91 11.91 0 0 0-3.517-8.483Zm1.29 7.387-5.16-4.683-5.285 4.984-2.774 2.615V9.932l4.206-3.994 3.146-2.969c3.163 1.379 5.478 4.365 5.867 7.935zm-.088 2.828a10.632 10.632 0 0 1-1.025 2.951l-2.952-2.668v-3.87Zm-8.183-11.47-2.227 2.103-2.739 2.598v-4.17A9.798 9.798 0 0 1 12 2.155c.513 0 1.007.035 1.502.106zM6.398 13.891l-4.083-3.658a9.744 9.744 0 0 1 1.078-2.987L6.398 9.95zm0-9.968v3.129l-1.75-1.573a8.623 8.623 0 0 1 1.75-1.556Zm-4.189 9.102 5.284 4.736 5.302-4.983 2.74-2.598v3.817l-7.423 7.016a9.823 9.823 0 0 1-5.903-7.988Zm8.306 8.695 5.02-4.754v4.206a9.833 9.833 0 0 1-3.553.654c-.495 0-.99-.035-1.467-.106zm7.176-1.714v-3.11l1.714 1.555a9.604 9.604 0 0 1-1.714 1.555z" }) + ] + } + ); +}); + +exports.default = SiWasabi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.d.ts new file mode 100644 index 000000000..cc97d4949 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#01CD3E"; +declare const SiWasabi: IconType; +export { SiWasabi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.mjs new file mode 100644 index 000000000..a76ecd607 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasabi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#01CD3E"; +const SiWasabi = React.forwardRef(function SiWasabi2({ title = "Wasabi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.483 3.517A11.91 11.91 0 0 0 12 0a11.91 11.91 0 0 0-8.483 3.517A11.91 11.91 0 0 0 0 12a11.91 11.91 0 0 0 3.517 8.483A11.91 11.91 0 0 0 12 24a11.91 11.91 0 0 0 8.483-3.517A11.91 11.91 0 0 0 24 12a11.91 11.91 0 0 0-3.517-8.483Zm1.29 7.387-5.16-4.683-5.285 4.984-2.774 2.615V9.932l4.206-3.994 3.146-2.969c3.163 1.379 5.478 4.365 5.867 7.935zm-.088 2.828a10.632 10.632 0 0 1-1.025 2.951l-2.952-2.668v-3.87Zm-8.183-11.47-2.227 2.103-2.739 2.598v-4.17A9.798 9.798 0 0 1 12 2.155c.513 0 1.007.035 1.502.106zM6.398 13.891l-4.083-3.658a9.744 9.744 0 0 1 1.078-2.987L6.398 9.95zm0-9.968v3.129l-1.75-1.573a8.623 8.623 0 0 1 1.75-1.556Zm-4.189 9.102 5.284 4.736 5.302-4.983 2.74-2.598v3.817l-7.423 7.016a9.823 9.823 0 0 1-5.903-7.988Zm8.306 8.695 5.02-4.754v4.206a9.833 9.833 0 0 1-3.553.654c-.495 0-.99-.035-1.467-.106zm7.176-1.714v-3.11l1.714 1.555a9.604 9.604 0 0 1-1.714 1.555z" }) + ] + } + ); +}); + +export { SiWasabi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.cjs new file mode 100644 index 000000000..a69f86fe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00BC8E"; +const SiWasmcloud = React__namespace.forwardRef(function SiWasmcloud2({ title = "wasmCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.805 5.477 12.797.215a1.591 1.591 0 0 0-1.6 0L2.19 5.477a1.41 1.41 0 0 0-.697 1.215v10.604a1.438 1.438 0 0 0 .715 1.243l9.023 5.251a1.553 1.553 0 0 0 1.558 0l8.998-5.25a1.438 1.438 0 0 0 .72-1.244V6.692a1.41 1.41 0 0 0-.702-1.215zm-2.001 10.428a.277.277 0 0 1-.139.238l-7.527 4.388a.277.277 0 0 1-.282 0l-7.524-4.385a.29.29 0 0 1-.14-.257v-7.8a.277.277 0 0 1 .138-.239l2.732-1.6a.284.284 0 0 1 .279 0 .277.277 0 0 1 .14.242v7.324l2.469-1.432v-7.65a.274.274 0 0 1 .138-.241l1.781-1.04a.277.277 0 0 1 .282 0l1.794 1.042a.28.28 0 0 1 .136.241v7.642l2.455 1.43V6.484a.277.277 0 0 1 .141-.24.28.28 0 0 1 .28 0l2.731 1.603a.277.277 0 0 1 .139.239z" }) + ] + } + ); +}); + +exports.default = SiWasmcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.d.ts new file mode 100644 index 000000000..7da9a3487 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00BC8E"; +declare const SiWasmcloud: IconType; +export { SiWasmcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.mjs new file mode 100644 index 000000000..563521704 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00BC8E"; +const SiWasmcloud = React.forwardRef(function SiWasmcloud2({ title = "wasmCloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.805 5.477 12.797.215a1.591 1.591 0 0 0-1.6 0L2.19 5.477a1.41 1.41 0 0 0-.697 1.215v10.604a1.438 1.438 0 0 0 .715 1.243l9.023 5.251a1.553 1.553 0 0 0 1.558 0l8.998-5.25a1.438 1.438 0 0 0 .72-1.244V6.692a1.41 1.41 0 0 0-.702-1.215zm-2.001 10.428a.277.277 0 0 1-.139.238l-7.527 4.388a.277.277 0 0 1-.282 0l-7.524-4.385a.29.29 0 0 1-.14-.257v-7.8a.277.277 0 0 1 .138-.239l2.732-1.6a.284.284 0 0 1 .279 0 .277.277 0 0 1 .14.242v7.324l2.469-1.432v-7.65a.274.274 0 0 1 .138-.241l1.781-1.04a.277.277 0 0 1 .282 0l1.794 1.042a.28.28 0 0 1 .136.241v7.642l2.455 1.43V6.484a.277.277 0 0 1 .141-.24.28.28 0 0 1 .28 0l2.731 1.603a.277.277 0 0 1 .139.239z" }) + ] + } + ); +}); + +export { SiWasmcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.cjs new file mode 100644 index 000000000..69fc07889 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4946DD"; +const SiWasmer = React__namespace.forwardRef(function SiWasmer2({ title = "Wasmer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.111 3.537c-.011.822-.5 1.208-1.111.86-.611-.353-1.106-1.307-1.111-2.146L12 0v4.651l5.561 3.222.55.32v7.763L22 18.206V5.794l-3.889-2.256Zm-5 3.034c-.011.822-.5 1.208-1.111.86-.611-.352-1.106-1.307-1.111-2.145l-3.89-2.252V7.41l5.562 3.222.55.32v8.038L17 21.241V8.828L13.11 6.57Zm-5 2.759c-.011.822-.5 1.208-1.111.86-.611-.353-1.106-1.307-1.111-2.146L2 5.794v12.413L12 24V11.586L8.111 9.33Z" }) + ] + } + ); +}); + +exports.default = SiWasmer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.d.ts new file mode 100644 index 000000000..31e1600b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4946DD"; +declare const SiWasmer: IconType; +export { SiWasmer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.mjs new file mode 100644 index 000000000..780d3cb64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWasmer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4946DD"; +const SiWasmer = React.forwardRef(function SiWasmer2({ title = "Wasmer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.111 3.537c-.011.822-.5 1.208-1.111.86-.611-.353-1.106-1.307-1.111-2.146L12 0v4.651l5.561 3.222.55.32v7.763L22 18.206V5.794l-3.889-2.256Zm-5 3.034c-.011.822-.5 1.208-1.111.86-.611-.352-1.106-1.307-1.111-2.145l-3.89-2.252V7.41l5.562 3.222.55.32v8.038L17 21.241V8.828L13.11 6.57Zm-5 2.759c-.011.822-.5 1.208-1.111.86-.611-.353-1.106-1.307-1.111-2.146L2 5.794v12.413L12 24V11.586L8.111 9.33Z" }) + ] + } + ); +}); + +export { SiWasmer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.cjs new file mode 100644 index 000000000..f00c17778 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#416271"; +const SiWatchtower = React__namespace.forwardRef(function SiWatchtower2({ title = "Watchtower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 .099C5.373.099 0 5.426 0 12c0 6.571 5.373 11.9 12 11.9S24 18.573 24 12C24 5.428 18.627.1 12 .1Zm.139 7.34 5.377 2.66v.222h-.526v.504l6.36-1.619a11.525 11.525 0 0 1-.248 6.424l-6.112-1.22v.652h2.428v1.091h.393l-.002.248-2.745 1.471.67 4.219-.203.111a11.72 11.72 0 0 1-5.506 1.367A11.68 11.68 0 0 1 6.72 22.3h-.01v-.003c-.065-.033-.131-.064-.195-.098l.685-4.31-2.765-1.473.001-.264h.413v-1.09h2.435v-.65L.961 15.675a11.464 11.464 0 0 1-.602-3.676c0-.987.125-1.947.36-2.863l6.564 1.676v-.51h-.578v-.203Zm-4.856 3.373v3.6l.33-.067v-3.451zm.33.082 2.668.68v-1.061H7.613Zm2.668.68v2.24l.328-.067v-2.09zm.328.083.452.115.039-.439h2.076l.04.453.458-.115v-1.158h-3.065zm3.065.014-.002 2.074.33.067v-2.225l2.658-.678v-.396H14v1.074zm2.986-.762v3.434l.33.066v-3.584zm0 3.434-2.658-.531v.935h2.658zm-2.988-.598-.281-.055.097 1.057h.184zm-3.063.002v1h.178l.096-1.055zm-2.996.598v.402h2.666v-.933zm-.904 7.95c.003.003.007.003.01.005l10.812-.098-.343-2.219H7.078Zm5.428-14.704-5.291 2.594h10.527Zm-.905 3.888-.298 3.268h2.408l-.299-3.268zm-3.619 3.543v.069h9.235l-.004-.069zm-2.547.32v.81h2.217v-.81zm2.547 0v.81h3.01v-.81zm3.229 0v.81h2.605v-.81zm2.824 0v.81h3.18v-.81zm3.398 0v.81H19.2v-.81Zm-12.216 1.05 2.574 1.37h9.422l2.574-1.37z" }) + ] + } + ); +}); + +exports.default = SiWatchtower; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.d.ts new file mode 100644 index 000000000..97fefa4ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#416271"; +declare const SiWatchtower: IconType; +export { SiWatchtower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.mjs new file mode 100644 index 000000000..883e09859 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWatchtower.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#416271"; +const SiWatchtower = React.forwardRef(function SiWatchtower2({ title = "Watchtower", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 .099C5.373.099 0 5.426 0 12c0 6.571 5.373 11.9 12 11.9S24 18.573 24 12C24 5.428 18.627.1 12 .1Zm.139 7.34 5.377 2.66v.222h-.526v.504l6.36-1.619a11.525 11.525 0 0 1-.248 6.424l-6.112-1.22v.652h2.428v1.091h.393l-.002.248-2.745 1.471.67 4.219-.203.111a11.72 11.72 0 0 1-5.506 1.367A11.68 11.68 0 0 1 6.72 22.3h-.01v-.003c-.065-.033-.131-.064-.195-.098l.685-4.31-2.765-1.473.001-.264h.413v-1.09h2.435v-.65L.961 15.675a11.464 11.464 0 0 1-.602-3.676c0-.987.125-1.947.36-2.863l6.564 1.676v-.51h-.578v-.203Zm-4.856 3.373v3.6l.33-.067v-3.451zm.33.082 2.668.68v-1.061H7.613Zm2.668.68v2.24l.328-.067v-2.09zm.328.083.452.115.039-.439h2.076l.04.453.458-.115v-1.158h-3.065zm3.065.014-.002 2.074.33.067v-2.225l2.658-.678v-.396H14v1.074zm2.986-.762v3.434l.33.066v-3.584zm0 3.434-2.658-.531v.935h2.658zm-2.988-.598-.281-.055.097 1.057h.184zm-3.063.002v1h.178l.096-1.055zm-2.996.598v.402h2.666v-.933zm-.904 7.95c.003.003.007.003.01.005l10.812-.098-.343-2.219H7.078Zm5.428-14.704-5.291 2.594h10.527Zm-.905 3.888-.298 3.268h2.408l-.299-3.268zm-3.619 3.543v.069h9.235l-.004-.069zm-2.547.32v.81h2.217v-.81zm2.547 0v.81h3.01v-.81zm3.229 0v.81h2.605v-.81zm2.824 0v.81h3.18v-.81zm3.398 0v.81H19.2v-.81Zm-12.216 1.05 2.574 1.37h9.422l2.574-1.37z" }) + ] + } + ); +}); + +export { SiWatchtower as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.cjs new file mode 100644 index 000000000..cb3777e81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF500A"; +const SiWattpad = React__namespace.forwardRef(function SiWattpad2({ title = "Wattpad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.034 3.09c-1.695.113-3.9 2.027-6.9 6.947.245-2.758.345-4.716-.857-5.743-.823-.702-2.764-.974-3.926.536C.18 6.349-.09 9.312.024 12.432c.238 6.518 2.544 8.487 4.59 8.487h.001c3.623 0 4.13-4.439 6.604-8.4-.09 1.416-.008 2.668.266 3.532 1.078 3.398 4.784 3.663 6.467.21 2.374-4.87 3.058-6.016 5.453-9.521 1.58-2.314-.252-3.812-2.374-2.735-1.09.554-2.86 1.935-5.065 4.867.387-2.23.28-5.996-2.932-5.782z" }) + ] + } + ); +}); + +exports.default = SiWattpad; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.d.ts new file mode 100644 index 000000000..5d45941c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF500A"; +declare const SiWattpad: IconType; +export { SiWattpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.mjs new file mode 100644 index 000000000..a4d52d8c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWattpad.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF500A"; +const SiWattpad = React.forwardRef(function SiWattpad2({ title = "Wattpad", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.034 3.09c-1.695.113-3.9 2.027-6.9 6.947.245-2.758.345-4.716-.857-5.743-.823-.702-2.764-.974-3.926.536C.18 6.349-.09 9.312.024 12.432c.238 6.518 2.544 8.487 4.59 8.487h.001c3.623 0 4.13-4.439 6.604-8.4-.09 1.416-.008 2.668.266 3.532 1.078 3.398 4.784 3.663 6.467.21 2.374-4.87 3.058-6.016 5.453-9.521 1.58-2.314-.252-3.812-2.374-2.735-1.09.554-2.86 1.935-5.065 4.867.387-2.23.28-5.996-2.932-5.782z" }) + ] + } + ); +}); + +export { SiWattpad as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.cjs new file mode 100644 index 000000000..466a3f003 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFBC00"; +const SiWayland = React__namespace.forwardRef(function SiWayland2({ title = "Wayland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.982 12c0 9.224-9.985 14.989-17.973 10.377A11.982 11.982 0 0 1 .018 12c0-3.386 1.346-6.306 3.444-8.418v.675l.553 3.413v1.07l.077 1.365c-.23 0-.344.053-.344.159v.09l.344-.09h.076v2.366c.178 1.578.509 2.981.992 4.21.05.864.146 1.297.286 1.297.229.864.394 1.297.496 1.297a5.494 5.494 0 0 0 2.422 1.865c.344 0 .63-.432.859-1.296.292-1.866.528-3.004.706-3.414.165.167.451.281.858.342v-.091c0-.152-.26-.311-.782-.478.14-.728.33-1.35.572-1.866.038-.88.49-2.1 1.354-3.663l.344.09c.05.714.146 1.305.286 1.776.521 1.061.782 2.063.782 3.003 0 .364.407 1.585 1.22 3.663.204 1.366.465 2.17.783 2.412h.152c.42 0 .916-.538 1.488-1.615.56-1.214 1.011-1.889 1.354-2.025 0-.106-.12-.16-.362-.16v-.09c.19 0 .286-.054.286-.16v-.068l-.076-.091.801-.319c0-.273-.095-.41-.286-.41v-.09h.572v-.16c-.292 0-.483-.159-.572-.477h.133v-.319l-.076-.091c.432 0 .649-.083.649-.25v-.069h-.134v-.09c.153 0 .267-.16.343-.478-.42-.137-.629-.273-.629-.41l.553-1.615c0-.82.146-1.715.439-2.685.33-.94.566-1.965.706-3.072.304-1.064.617-1.787.938-2.17A11.979 11.979 0 0 1 23.982 12Zm-5.99-10.377c.587.34 1.138.724 1.65 1.148a33.45 33.45 0 0 0-.157 1.736c-.458 1.077-.96 2.594-1.507 4.55h-1.411l-.725.07v.181h.362l.286-.09 1.202.158v.092c-.343 1.183-.553 1.774-.63 1.774-.445 2.215-.8 3.322-1.068 3.322h-.229c-.318-.288-.674-.88-1.068-1.774a.861.861 0 0 0-.21-.57L13.42 9.855c-.216-1-.502-1.752-.858-2.252-.115-.334-.305-.5-.572-.5h-.134c-.42 0-.826.295-1.22.887l.076.25c-.178.607-.465 1.312-.859 2.116-.61 1.775-1.01 2.662-1.201 2.662h-.153l-.286-.227c-.483-1.305-.814-3.224-.992-5.757h-.134v-.16h.058a1.33 1.33 0 0 1 .515-.75v-.069l-.077-.09-.076.09-.076-.09-.344.09h-.152c-.09 0-.23-.348-.42-1.046v-.183h.496v-.16h-.648c-.139-.698-.545-1.53-1.218-2.494.296-.206.601-.398.915-.577h.016l.077.068.438-.068h.783c.228 0 .464.083.705.25.115-.152.33-.235.649-.25v-.16h-2.38c3.11-1.667 6.947-1.99 10.51-.392l-.443.142v.16c.24 0 .4-.095.482-.284.368.166.734.354 1.095.562Zm3.477 3.203h-.134l.035-.295.179.23-.08.065ZM9.719 1.595h.572l.133.159.363-.16.42.069.438-.068v-.16H9.72v.16Zm3.7 1.297v.159l.21.09v-.09l.076-.091c.14 0 .21-.053.21-.16v-.068h-.21l-.286.16Zm-1.144.887h-.058l-.076-.068-.42.227v.16c.61-.137.916-.266.916-.387V3.62l-.362.159Zm-2.842.978c0 .167-.051.25-.153.25v.16c.598-.197 1.03-.417 1.297-.66V4.44l-1.144.318Zm4.482.57v.068l.153.182h.076l.134-.182v-.069l-.077-.09-.286.09Zm2.785.159v.09h.076l.134-.181v-.069h-.076l-.134.16Zm-1.354 1.206.152.25c.23 0 .37-.084.42-.25l-.286-.228c-.19.076-.286.152-.286.228Zm1.85.978v.091h.153l.057-.091v-.068l-.057-.091-.153.159Zm-3.128.978v.091h.21l.362-.34v-.07c-.382.077-.572.183-.572.32ZM2.24 12.13v.341h.153c.14-.106.305-.41.496-.91v-.068h-.076l-.573.637Zm9.328 3.413v.159l.076.091.572-.341v-.16h-.076l-.572.25Zm-7.267.887.21.82h.152l-.229-.888h-.133v.068Zm7.63 1.07.133.227h.076l.076-.068-.228-.25h-.058v.09Z" }) + ] + } + ); +}); + +exports.default = SiWayland; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.d.ts new file mode 100644 index 000000000..6d0f15337 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFBC00"; +declare const SiWayland: IconType; +export { SiWayland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.mjs new file mode 100644 index 000000000..1c6793541 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWayland.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFBC00"; +const SiWayland = React.forwardRef(function SiWayland2({ title = "Wayland", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.982 12c0 9.224-9.985 14.989-17.973 10.377A11.982 11.982 0 0 1 .018 12c0-3.386 1.346-6.306 3.444-8.418v.675l.553 3.413v1.07l.077 1.365c-.23 0-.344.053-.344.159v.09l.344-.09h.076v2.366c.178 1.578.509 2.981.992 4.21.05.864.146 1.297.286 1.297.229.864.394 1.297.496 1.297a5.494 5.494 0 0 0 2.422 1.865c.344 0 .63-.432.859-1.296.292-1.866.528-3.004.706-3.414.165.167.451.281.858.342v-.091c0-.152-.26-.311-.782-.478.14-.728.33-1.35.572-1.866.038-.88.49-2.1 1.354-3.663l.344.09c.05.714.146 1.305.286 1.776.521 1.061.782 2.063.782 3.003 0 .364.407 1.585 1.22 3.663.204 1.366.465 2.17.783 2.412h.152c.42 0 .916-.538 1.488-1.615.56-1.214 1.011-1.889 1.354-2.025 0-.106-.12-.16-.362-.16v-.09c.19 0 .286-.054.286-.16v-.068l-.076-.091.801-.319c0-.273-.095-.41-.286-.41v-.09h.572v-.16c-.292 0-.483-.159-.572-.477h.133v-.319l-.076-.091c.432 0 .649-.083.649-.25v-.069h-.134v-.09c.153 0 .267-.16.343-.478-.42-.137-.629-.273-.629-.41l.553-1.615c0-.82.146-1.715.439-2.685.33-.94.566-1.965.706-3.072.304-1.064.617-1.787.938-2.17A11.979 11.979 0 0 1 23.982 12Zm-5.99-10.377c.587.34 1.138.724 1.65 1.148a33.45 33.45 0 0 0-.157 1.736c-.458 1.077-.96 2.594-1.507 4.55h-1.411l-.725.07v.181h.362l.286-.09 1.202.158v.092c-.343 1.183-.553 1.774-.63 1.774-.445 2.215-.8 3.322-1.068 3.322h-.229c-.318-.288-.674-.88-1.068-1.774a.861.861 0 0 0-.21-.57L13.42 9.855c-.216-1-.502-1.752-.858-2.252-.115-.334-.305-.5-.572-.5h-.134c-.42 0-.826.295-1.22.887l.076.25c-.178.607-.465 1.312-.859 2.116-.61 1.775-1.01 2.662-1.201 2.662h-.153l-.286-.227c-.483-1.305-.814-3.224-.992-5.757h-.134v-.16h.058a1.33 1.33 0 0 1 .515-.75v-.069l-.077-.09-.076.09-.076-.09-.344.09h-.152c-.09 0-.23-.348-.42-1.046v-.183h.496v-.16h-.648c-.139-.698-.545-1.53-1.218-2.494.296-.206.601-.398.915-.577h.016l.077.068.438-.068h.783c.228 0 .464.083.705.25.115-.152.33-.235.649-.25v-.16h-2.38c3.11-1.667 6.947-1.99 10.51-.392l-.443.142v.16c.24 0 .4-.095.482-.284.368.166.734.354 1.095.562Zm3.477 3.203h-.134l.035-.295.179.23-.08.065ZM9.719 1.595h.572l.133.159.363-.16.42.069.438-.068v-.16H9.72v.16Zm3.7 1.297v.159l.21.09v-.09l.076-.091c.14 0 .21-.053.21-.16v-.068h-.21l-.286.16Zm-1.144.887h-.058l-.076-.068-.42.227v.16c.61-.137.916-.266.916-.387V3.62l-.362.159Zm-2.842.978c0 .167-.051.25-.153.25v.16c.598-.197 1.03-.417 1.297-.66V4.44l-1.144.318Zm4.482.57v.068l.153.182h.076l.134-.182v-.069l-.077-.09-.286.09Zm2.785.159v.09h.076l.134-.181v-.069h-.076l-.134.16Zm-1.354 1.206.152.25c.23 0 .37-.084.42-.25l-.286-.228c-.19.076-.286.152-.286.228Zm1.85.978v.091h.153l.057-.091v-.068l-.057-.091-.153.159Zm-3.128.978v.091h.21l.362-.34v-.07c-.382.077-.572.183-.572.32ZM2.24 12.13v.341h.153c.14-.106.305-.41.496-.91v-.068h-.076l-.573.637Zm9.328 3.413v.159l.076.091.572-.341v-.16h-.076l-.572.25Zm-7.267.887.21.82h.152l-.229-.888h-.133v.068Zm7.63 1.07.133.227h.076l.076-.068-.228-.25h-.058v.09Z" }) + ] + } + ); +}); + +export { SiWayland as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.cjs new file mode 100644 index 000000000..27f9445f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#33CCFF"; +const SiWaze = React__namespace.forwardRef(function SiWaze2({ title = "Waze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.218 0C9.915 0 6.835 1.49 4.723 4.148c-1.515 1.913-2.31 4.272-2.31 6.706v1.739c0 .894-.62 1.738-1.862 1.813-.298.025-.547.224-.547.522-.05.82.82 2.31 2.012 3.502.82.844 1.788 1.515 2.832 2.036a3 3 0 0 0 2.955 3.528 2.966 2.966 0 0 0 2.931-2.385h2.509c.323 1.689 2.086 2.856 3.974 2.21 1.64-.546 2.36-2.409 1.763-3.924a12.84 12.84 0 0 0 1.838-1.465 10.73 10.73 0 0 0 3.18-7.65c0-2.882-1.118-5.589-3.155-7.625A10.899 10.899 0 0 0 13.218 0zm0 1.217c2.558 0 4.967.994 6.78 2.807a9.525 9.525 0 0 1 2.807 6.78A9.526 9.526 0 0 1 20 17.585a9.647 9.647 0 0 1-6.78 2.807h-2.46a3.008 3.008 0 0 0-2.93-2.41 3.03 3.03 0 0 0-2.534 1.367v.024a8.945 8.945 0 0 1-2.41-1.788c-.844-.844-1.316-1.614-1.515-2.11a2.858 2.858 0 0 0 1.441-.846 2.959 2.959 0 0 0 .795-2.036v-1.789c0-2.11.696-4.197 2.012-5.861 1.863-2.385 4.62-3.726 7.6-3.726zm-2.41 5.986a1.192 1.192 0 0 0-1.191 1.192 1.192 1.192 0 0 0 1.192 1.193A1.192 1.192 0 0 0 12 8.395a1.192 1.192 0 0 0-1.192-1.192zm7.204 0a1.192 1.192 0 0 0-1.192 1.192 1.192 1.192 0 0 0 1.192 1.193 1.192 1.192 0 0 0 1.192-1.193 1.192 1.192 0 0 0-1.192-1.192zm-7.377 4.769a.596.596 0 0 0-.546.845 4.813 4.813 0 0 0 4.346 2.757 4.77 4.77 0 0 0 4.347-2.757.596.596 0 0 0-.547-.845h-.025a.561.561 0 0 0-.521.348 3.59 3.59 0 0 1-3.254 2.061 3.591 3.591 0 0 1-3.254-2.061.64.64 0 0 0-.546-.348z" }) + ] + } + ); +}); + +exports.default = SiWaze; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.d.ts new file mode 100644 index 000000000..1d054d318 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#33CCFF"; +declare const SiWaze: IconType; +export { SiWaze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.mjs new file mode 100644 index 000000000..f07672679 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWaze.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#33CCFF"; +const SiWaze = React.forwardRef(function SiWaze2({ title = "Waze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.218 0C9.915 0 6.835 1.49 4.723 4.148c-1.515 1.913-2.31 4.272-2.31 6.706v1.739c0 .894-.62 1.738-1.862 1.813-.298.025-.547.224-.547.522-.05.82.82 2.31 2.012 3.502.82.844 1.788 1.515 2.832 2.036a3 3 0 0 0 2.955 3.528 2.966 2.966 0 0 0 2.931-2.385h2.509c.323 1.689 2.086 2.856 3.974 2.21 1.64-.546 2.36-2.409 1.763-3.924a12.84 12.84 0 0 0 1.838-1.465 10.73 10.73 0 0 0 3.18-7.65c0-2.882-1.118-5.589-3.155-7.625A10.899 10.899 0 0 0 13.218 0zm0 1.217c2.558 0 4.967.994 6.78 2.807a9.525 9.525 0 0 1 2.807 6.78A9.526 9.526 0 0 1 20 17.585a9.647 9.647 0 0 1-6.78 2.807h-2.46a3.008 3.008 0 0 0-2.93-2.41 3.03 3.03 0 0 0-2.534 1.367v.024a8.945 8.945 0 0 1-2.41-1.788c-.844-.844-1.316-1.614-1.515-2.11a2.858 2.858 0 0 0 1.441-.846 2.959 2.959 0 0 0 .795-2.036v-1.789c0-2.11.696-4.197 2.012-5.861 1.863-2.385 4.62-3.726 7.6-3.726zm-2.41 5.986a1.192 1.192 0 0 0-1.191 1.192 1.192 1.192 0 0 0 1.192 1.193A1.192 1.192 0 0 0 12 8.395a1.192 1.192 0 0 0-1.192-1.192zm7.204 0a1.192 1.192 0 0 0-1.192 1.192 1.192 1.192 0 0 0 1.192 1.193 1.192 1.192 0 0 0 1.192-1.193 1.192 1.192 0 0 0-1.192-1.192zm-7.377 4.769a.596.596 0 0 0-.546.845 4.813 4.813 0 0 0 4.346 2.757 4.77 4.77 0 0 0 4.347-2.757.596.596 0 0 0-.547-.845h-.025a.561.561 0 0 0-.521.348 3.59 3.59 0 0 1-3.254 2.061 3.591 3.591 0 0 1-3.254-2.061.64.64 0 0 0-.546-.348z" }) + ] + } + ); +}); + +export { SiWaze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.cjs new file mode 100644 index 000000000..5d557ffd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3067F0"; +const SiWazirx = React__namespace.forwardRef(function SiWazirx2({ title = "WazirX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.965 21.964h21.924v-2.485H.965v2.485Zm6.752-3.81h15.195L24 6.343 7.717 18.155Zm9.384-8.704L5.205 18.072H1.93l6.045-9.814 3.858-6.22 5.269 7.412Zm-11.693.223L0 6.067l.994 10.762 4.414-7.156Z" }) + ] + } + ); +}); + +exports.default = SiWazirx; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.d.ts new file mode 100644 index 000000000..b4ce70704 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3067F0"; +declare const SiWazirx: IconType; +export { SiWazirx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.mjs new file mode 100644 index 000000000..8f16391a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWazirx.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3067F0"; +const SiWazirx = React.forwardRef(function SiWazirx2({ title = "WazirX", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.965 21.964h21.924v-2.485H.965v2.485Zm6.752-3.81h15.195L24 6.343 7.717 18.155Zm9.384-8.704L5.205 18.072H1.93l6.045-9.814 3.858-6.22 5.269 7.412Zm-11.693.223L0 6.067l.994 10.762 4.414-7.156Z" }) + ] + } + ); +}); + +export { SiWazirx as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.cjs new file mode 100644 index 000000000..04188bc76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4285F4"; +const SiWearos = React__namespace.forwardRef(function SiWearos2({ title = "Wear OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.416 21.1346c-.9687 0-1.8938-.56-2.3135-1.5015L.2193 6.4198C-.3488 5.1432.2248 3.6472 1.5014 3.079c1.2767-.5681 2.7727.0055 3.3408 1.2821l5.8832 13.2133c.5681 1.2767-.0055 2.7727-1.2821 3.3408a2.5254 2.5254 0 01-1.0273.2194zm7.1952.0368c-.891 0-1.7412-.515-2.1268-1.3816L7.39 6.1024C6.867 4.9279 7.3955 3.5532 8.5686 3.03c1.173-.5218 2.5492.0054 3.0724 1.1785l6.0943 13.6888c.5232 1.1745-.0054 2.5492-1.1785 3.0724a2.3111 2.3111 0 01-.9456.2017zM24 5.195a2.3271 2.3271 0 01-2.3271 2.327 2.3271 2.3271 0 01-2.3271-2.327 2.3271 2.3271 0 012.327-2.3271A2.3271 2.3271 0 0124 5.1949zm-2.6119 5.116a2.4892 2.4892 0 01-2.4892 2.4893 2.4892 2.4892 0 01-2.4893-2.4892 2.4892 2.4892 0 012.4893-2.4893 2.4892 2.4892 0 012.4892 2.4893Z" }) + ] + } + ); +}); + +exports.default = SiWearos; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.d.ts new file mode 100644 index 000000000..f4f016d5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4285F4"; +declare const SiWearos: IconType; +export { SiWearos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.mjs new file mode 100644 index 000000000..477cf2c35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWearos.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4285F4"; +const SiWearos = React.forwardRef(function SiWearos2({ title = "Wear OS", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.416 21.1346c-.9687 0-1.8938-.56-2.3135-1.5015L.2193 6.4198C-.3488 5.1432.2248 3.6472 1.5014 3.079c1.2767-.5681 2.7727.0055 3.3408 1.2821l5.8832 13.2133c.5681 1.2767-.0055 2.7727-1.2821 3.3408a2.5254 2.5254 0 01-1.0273.2194zm7.1952.0368c-.891 0-1.7412-.515-2.1268-1.3816L7.39 6.1024C6.867 4.9279 7.3955 3.5532 8.5686 3.03c1.173-.5218 2.5492.0054 3.0724 1.1785l6.0943 13.6888c.5232 1.1745-.0054 2.5492-1.1785 3.0724a2.3111 2.3111 0 01-.9456.2017zM24 5.195a2.3271 2.3271 0 01-2.3271 2.327 2.3271 2.3271 0 01-2.3271-2.327 2.3271 2.3271 0 012.327-2.3271A2.3271 2.3271 0 0124 5.1949zm-2.6119 5.116a2.4892 2.4892 0 01-2.4892 2.4893 2.4892 2.4892 0 01-2.4893-2.4892 2.4892 2.4892 0 012.4893-2.4893 2.4892 2.4892 0 012.4892 2.4893Z" }) + ] + } + ); +}); + +export { SiWearos as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.cjs new file mode 100644 index 000000000..7e6e5c2bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#990000"; +const SiWeasyl = React__namespace.forwardRef(function SiWeasyl2({ title = "Weasyl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.23 4.156a8.488 8.488 0 0 0-5.871-1.857c-3.766.243-6.324 2.662-7.364 6.481-1.28-1.224-1.892-3.238-2.093-5.54-1.02.215-1.658.702-2.233 1.237.445 2.316 1.802 4.015 3.264 5.158-2.559.317-5.99 2.442-6.771 4.904-.507 1.598.258 3.415 1.283 4.52 1.237 1.333 3.75 1.998 6.355 1.754.037.362-.104.536-.058.907 4.067-.306 7.174-1.646 10.04-3.894 1.119-.877 2.659-2.037 3.756-3.227 1.101-1.192 2.296-2.578 2.443-4.52.21-2.79-1.236-4.694-2.751-5.923zm-1.434 10.938c-1.035 1.001-2.241 1.797-3.351 2.675-1.249-1.987-2.583-3.984-3.887-5.917.017 2.63.006 5.432.04 7.957-.78.381-1.789.558-2.744.763-1.935-2.917-3.968-5.99-5.961-8.908.693-.447 1.627-.785 2.478-1.075 1.419 2.05 2.729 4.253 4.171 6.333.019-3.113-.009-6.673-.061-9.919a14.175 14.175 0 0 0 1.527-.434c1.813 2.721 3.553 5.628 5.464 8.359a547.35 547.35 0 0 1-.018-9.768c.858-.282 1.803-.535 2.669-.809.02 3.499-.338 7.128-.327 10.743z" }) + ] + } + ); +}); + +exports.default = SiWeasyl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.d.ts new file mode 100644 index 000000000..7103a4011 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#990000"; +declare const SiWeasyl: IconType; +export { SiWeasyl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.mjs new file mode 100644 index 000000000..6db664d5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeasyl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#990000"; +const SiWeasyl = React.forwardRef(function SiWeasyl2({ title = "Weasyl", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.23 4.156a8.488 8.488 0 0 0-5.871-1.857c-3.766.243-6.324 2.662-7.364 6.481-1.28-1.224-1.892-3.238-2.093-5.54-1.02.215-1.658.702-2.233 1.237.445 2.316 1.802 4.015 3.264 5.158-2.559.317-5.99 2.442-6.771 4.904-.507 1.598.258 3.415 1.283 4.52 1.237 1.333 3.75 1.998 6.355 1.754.037.362-.104.536-.058.907 4.067-.306 7.174-1.646 10.04-3.894 1.119-.877 2.659-2.037 3.756-3.227 1.101-1.192 2.296-2.578 2.443-4.52.21-2.79-1.236-4.694-2.751-5.923zm-1.434 10.938c-1.035 1.001-2.241 1.797-3.351 2.675-1.249-1.987-2.583-3.984-3.887-5.917.017 2.63.006 5.432.04 7.957-.78.381-1.789.558-2.744.763-1.935-2.917-3.968-5.99-5.961-8.908.693-.447 1.627-.785 2.478-1.075 1.419 2.05 2.729 4.253 4.171 6.333.019-3.113-.009-6.673-.061-9.919a14.175 14.175 0 0 0 1.527-.434c1.813 2.721 3.553 5.628 5.464 8.359a547.35 547.35 0 0 1-.018-9.768c.858-.282 1.803-.535 2.669-.809.02 3.499-.338 7.128-.327 10.743z" }) + ] + } + ); +}); + +export { SiWeasyl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.cjs new file mode 100644 index 000000000..d99d380f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F16822"; +const SiWeb3dotjs = React__namespace.forwardRef(function SiWeb3dotjs2({ title = "Web3.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.889.775S0 1.29 0 2.315V7.44s0 3.079 2.666 4.618c.817.472 1.384.508 1.777.334.394.628.96 1.246 1.778 1.718 2.666 1.54 2.668-1.539 2.668-1.539V7.447c0-1.027.888-1.539.888-1.539l3.557-2.054s.89-.514 1.777 0c.89.513 0 1.027 0 1.027L11.56 6.934l1.775 1.025 3.559-2.055c.052-.03.912-.495 1.773.002.89.514 0 1.026 0 1.026l-3.555 2.054s-.888.514-.888 1.54v5.124s0 1.028-.889.514c-.89-.513-.89-1.539-.89-1.539l-1.778-1.027s.001 3.08 2.668 4.619c2.667 1.539 2.666-1.54 2.666-1.54v-5.126c0-1.026.889-1.537.889-1.537l4.445-2.569s1.776-1.025-.889-2.564c-.819-.474-1.552-.704-2.177-.797-.164-.357-.565-.776-1.377-1.24-2.667-1.523-5.332-.016-5.332-.016L8.004 4.881s-.89.514-.89 1.539v5.125s0 1.027-.89.514c-.889-.514-.89-1.54-.89-1.54V5.396c0-.064.003-.127.01-.188.097-.902.879-1.353.879-1.353L4.445 2.828l-.004.002c-.052.03-.884.544-.884 1.537v5.125s-.002 1.027-.891.514c-.89-.514-.889-1.54-.889-1.54V3.343c0-1.026.889-1.54.889-1.54L.889.776zm9.78 8.735v2.053l1.778 1.025v-2.053L10.67 9.51zm8.442 2.183c-.666.005-1.332.389-1.332 1.909 0 3.039 2.666 4.619 2.666 4.619l.889.513s.89.514.89 1.54-.89.513-.89.513l-3.555-2.053v2.053l3.555 2.053S24 24.379 24 21.3c0-3.077-1.777-4.105-1.777-4.105l-1.778-1.025s-.888-.514-.888-1.54c0-1.028.888-.515.888-.515L24 16.168v-2.053l-3.555-2.05s-.667-.376-1.334-.372Z" }) + ] + } + ); +}); + +exports.default = SiWeb3dotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.d.ts new file mode 100644 index 000000000..f1d33a3fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F16822"; +declare const SiWeb3dotjs: IconType; +export { SiWeb3dotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.mjs new file mode 100644 index 000000000..f259a04f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeb3dotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F16822"; +const SiWeb3dotjs = React.forwardRef(function SiWeb3dotjs2({ title = "Web3.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.889.775S0 1.29 0 2.315V7.44s0 3.079 2.666 4.618c.817.472 1.384.508 1.777.334.394.628.96 1.246 1.778 1.718 2.666 1.54 2.668-1.539 2.668-1.539V7.447c0-1.027.888-1.539.888-1.539l3.557-2.054s.89-.514 1.777 0c.89.513 0 1.027 0 1.027L11.56 6.934l1.775 1.025 3.559-2.055c.052-.03.912-.495 1.773.002.89.514 0 1.026 0 1.026l-3.555 2.054s-.888.514-.888 1.54v5.124s0 1.028-.889.514c-.89-.513-.89-1.539-.89-1.539l-1.778-1.027s.001 3.08 2.668 4.619c2.667 1.539 2.666-1.54 2.666-1.54v-5.126c0-1.026.889-1.537.889-1.537l4.445-2.569s1.776-1.025-.889-2.564c-.819-.474-1.552-.704-2.177-.797-.164-.357-.565-.776-1.377-1.24-2.667-1.523-5.332-.016-5.332-.016L8.004 4.881s-.89.514-.89 1.539v5.125s0 1.027-.89.514c-.889-.514-.89-1.54-.89-1.54V5.396c0-.064.003-.127.01-.188.097-.902.879-1.353.879-1.353L4.445 2.828l-.004.002c-.052.03-.884.544-.884 1.537v5.125s-.002 1.027-.891.514c-.89-.514-.889-1.54-.889-1.54V3.343c0-1.026.889-1.54.889-1.54L.889.776zm9.78 8.735v2.053l1.778 1.025v-2.053L10.67 9.51zm8.442 2.183c-.666.005-1.332.389-1.332 1.909 0 3.039 2.666 4.619 2.666 4.619l.889.513s.89.514.89 1.54-.89.513-.89.513l-3.555-2.053v2.053l3.555 2.053S24 24.379 24 21.3c0-3.077-1.777-4.105-1.777-4.105l-1.778-1.025s-.888-.514-.888-1.54c0-1.028.888-.515.888-.515L24 16.168v-2.053l-3.555-2.05s-.667-.376-1.334-.372Z" }) + ] + } + ); +}); + +export { SiWeb3dotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.cjs new file mode 100644 index 000000000..fc055d9a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#654FF0"; +const SiWebassembly = React__namespace.forwardRef(function SiWebassembly2({ title = "WebAssembly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.745,0c0,0.042,0,0.085,0,0.129c0,1.52-1.232,2.752-2.752,2.752c-1.52,0-2.752-1.232-2.752-2.752 c0-0.045,0-0.087,0-0.129H0v24h24V0H14.745z M11.454,21.431l-1.169-5.783h-0.02l-1.264,5.783H7.39l-1.824-8.497h1.59l1.088,5.783 h0.02l1.311-5.783h1.487l1.177,5.854h0.02l1.242-5.854h1.561l-2.027,8.497H11.454z M20.209,21.431l-0.542-1.891h-2.861l-0.417,1.891 h-1.59l2.056-8.497h2.509l2.5,8.497H20.209z M17.812,15.028l-0.694,3.118h2.159l-0.796-3.118H17.812z" }) + ] + } + ); +}); + +exports.default = SiWebassembly; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.d.ts new file mode 100644 index 000000000..558bd7bb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#654FF0"; +declare const SiWebassembly: IconType; +export { SiWebassembly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.mjs new file mode 100644 index 000000000..aab2b625b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebassembly.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#654FF0"; +const SiWebassembly = React.forwardRef(function SiWebassembly2({ title = "WebAssembly", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.745,0c0,0.042,0,0.085,0,0.129c0,1.52-1.232,2.752-2.752,2.752c-1.52,0-2.752-1.232-2.752-2.752 c0-0.045,0-0.087,0-0.129H0v24h24V0H14.745z M11.454,21.431l-1.169-5.783h-0.02l-1.264,5.783H7.39l-1.824-8.497h1.59l1.088,5.783 h0.02l1.311-5.783h1.487l1.177,5.854h0.02l1.242-5.854h1.561l-2.027,8.497H11.454z M20.209,21.431l-0.542-1.891h-2.861l-0.417,1.891 h-1.59l2.056-8.497h2.509l2.5,8.497H20.209z M17.812,15.028l-0.694,3.118h2.159l-0.796-3.118H17.812z" }) + ] + } + ); +}); + +export { SiWebassembly as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.cjs new file mode 100644 index 000000000..5f21a60f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3423A6"; +const SiWebauthn = React__namespace.forwardRef(function SiWebauthn2({ title = "WebAuthn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.2872 3.641a8.407 8.407 0 00-8.05 7.593h.55a7.805 7.805 0 012.24-4.713 5.825 5.825 0 00.923.695c-.608 1.177-.98 2.556-1.082 4.018h.135c.105-1.467.485-2.819 1.065-3.947.745.434 1.623.754 2.577.94a27.83 27.83 0 00-.25 3.763h-.847v.135h.847c.003 1.334.09 2.617.25 3.764-.954.185-1.832.506-2.577.94a9.997 9.997 0 01-.978-3.137h-.137c.164 1.16.502 2.25.997 3.208a5.825 5.825 0 00-.924.695 7.805 7.805 0 01-2.255-4.875h-.55a8.407 8.407 0 0016.779-.675 8.398 8.398 0 00-.689-3.333 8.407 8.407 0 00-8.025-5.072zm.315.546c.155 0 .31.005.464.014.365.34.708 1.07.983 2.114a16.518 16.518 0 01.357 1.79 10.173 10.173 0 01-1.804.16 10.173 10.173 0 01-1.805-.16 16.519 16.519 0 01.357-1.79c.275-1.045.618-1.775.983-2.114a7.97 7.97 0 01.465-.014zm-.665.028c-.345.392-.658 1.093-.913 2.065a16.639 16.639 0 00-.36 1.8c-.939-.183-1.802-.498-2.533-.926.686-1.283 1.635-2.264 2.73-2.775a7.874 7.874 0 011.076-.164zm1.33 0a7.856 7.856 0 011.084.168c1.092.513 2.037 1.492 2.721 2.771-.73.428-1.594.743-2.533.927a16.64 16.64 0 00-.36-1.8c-.255-.972-.568-1.673-.912-2.066zm-2.972.314c-.655.407-1.257.989-1.776 1.73a8.166 8.166 0 00-.506.825 5.69 5.69 0 01-.89-.67 7.814 7.814 0 013.172-1.885zm4.624.006a7.862 7.862 0 013.164 1.877 5.692 5.692 0 01-.893.672 8.166 8.166 0 00-.506-.825c-.516-.738-1.115-1.318-1.765-1.724zm3.26 1.985a7.858 7.858 0 011.638 2.419 7.802 7.802 0 01.642 3.051h-2.095c-.01-1.74-.398-3.396-1.11-4.774a5.823 5.823 0 00.925-.696zm-1.044.767c.68 1.32 1.084 2.945 1.094 4.703h-3.42a27.863 27.863 0 00-.25-3.763c.953-.186 1.832-.506 2.576-.94zm-6.357.965a10.299 10.299 0 001.824.16 10.299 10.299 0 001.823-.16c.16 1.138.246 2.413.25 3.738h-1.179a1.03 1.03 0 01-.093.135h1.27a27.71 27.71 0 01-.248 3.739 10.397 10.397 0 00-3.647 0 27.733 27.733 0 01-.248-3.739h1.294a.99.99 0 01-.09-.135h-1.204c.003-1.325.088-2.6.248-3.738zm-11.22 1.129a2.585 2.585 0 00-2.547 2.35c-.142 1.541 1.064 2.842 2.566 2.842 1.26 0 2.312-.917 2.533-2.124h4.44v.972h.946v-.972h.837v1.431h.945v-2.376h-7.168a2.586 2.586 0 00-2.552-2.123zm-.058.965a1.639 1.639 0 011.707 1.637 1.64 1.64 0 01-1.639 1.638 1.639 1.639 0 01-.068-3.275zm13.09.388a.75.75 0 00-.345 1.404l-.383 1.958h1.5l-.383-1.958a.75.75 0 00.384-.654.75.75 0 00-.773-.75zm2.218 1.391h3.421c-.01 1.758-.415 3.384-1.094 4.704-.744-.434-1.623-.755-2.577-.94a27.81 27.81 0 00.25-3.764zm3.556 0h2.095a7.805 7.805 0 01-2.28 5.47 5.825 5.825 0 00-.925-.696c.712-1.378 1.1-3.033 1.11-4.774zm-5.52 3.703a10.284 10.284 0 011.562.156 16.518 16.518 0 01-.357 1.791c-.275 1.045-.618 1.774-.982 2.114a7.972 7.972 0 01-.93 0c-.365-.34-.708-1.07-.983-2.114a16.519 16.519 0 01-.357-1.79 10.284 10.284 0 012.048-.157zm1.695.181c.94.184 1.803.5 2.533.926-.686 1.284-1.635 2.265-2.73 2.776a7.874 7.874 0 01-1.075.164c.344-.393.657-1.094.913-2.065a16.64 16.64 0 00.36-1.8zm-3.874 0a16.648 16.648 0 00.36 1.8c.254.973.567 1.674.912 2.066a7.873 7.873 0 01-1.075-.164c-1.096-.511-2.045-1.492-2.73-2.775.73-.428 1.593-.743 2.533-.927zm-2.652.997a8.16 8.16 0 00.506.825c.52.741 1.121 1.323 1.776 1.73a7.814 7.814 0 01-3.174-1.884 5.694 5.694 0 01.892-.67zm9.178 0a5.694 5.694 0 01.891.67 7.814 7.814 0 01-3.173 1.885c.654-.407 1.256-.989 1.775-1.73a8.16 8.16 0 00.507-.825z" }) + ] + } + ); +}); + +exports.default = SiWebauthn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.d.ts new file mode 100644 index 000000000..9edc68514 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3423A6"; +declare const SiWebauthn: IconType; +export { SiWebauthn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.mjs new file mode 100644 index 000000000..97d7cafa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebauthn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3423A6"; +const SiWebauthn = React.forwardRef(function SiWebauthn2({ title = "WebAuthn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.2872 3.641a8.407 8.407 0 00-8.05 7.593h.55a7.805 7.805 0 012.24-4.713 5.825 5.825 0 00.923.695c-.608 1.177-.98 2.556-1.082 4.018h.135c.105-1.467.485-2.819 1.065-3.947.745.434 1.623.754 2.577.94a27.83 27.83 0 00-.25 3.763h-.847v.135h.847c.003 1.334.09 2.617.25 3.764-.954.185-1.832.506-2.577.94a9.997 9.997 0 01-.978-3.137h-.137c.164 1.16.502 2.25.997 3.208a5.825 5.825 0 00-.924.695 7.805 7.805 0 01-2.255-4.875h-.55a8.407 8.407 0 0016.779-.675 8.398 8.398 0 00-.689-3.333 8.407 8.407 0 00-8.025-5.072zm.315.546c.155 0 .31.005.464.014.365.34.708 1.07.983 2.114a16.518 16.518 0 01.357 1.79 10.173 10.173 0 01-1.804.16 10.173 10.173 0 01-1.805-.16 16.519 16.519 0 01.357-1.79c.275-1.045.618-1.775.983-2.114a7.97 7.97 0 01.465-.014zm-.665.028c-.345.392-.658 1.093-.913 2.065a16.639 16.639 0 00-.36 1.8c-.939-.183-1.802-.498-2.533-.926.686-1.283 1.635-2.264 2.73-2.775a7.874 7.874 0 011.076-.164zm1.33 0a7.856 7.856 0 011.084.168c1.092.513 2.037 1.492 2.721 2.771-.73.428-1.594.743-2.533.927a16.64 16.64 0 00-.36-1.8c-.255-.972-.568-1.673-.912-2.066zm-2.972.314c-.655.407-1.257.989-1.776 1.73a8.166 8.166 0 00-.506.825 5.69 5.69 0 01-.89-.67 7.814 7.814 0 013.172-1.885zm4.624.006a7.862 7.862 0 013.164 1.877 5.692 5.692 0 01-.893.672 8.166 8.166 0 00-.506-.825c-.516-.738-1.115-1.318-1.765-1.724zm3.26 1.985a7.858 7.858 0 011.638 2.419 7.802 7.802 0 01.642 3.051h-2.095c-.01-1.74-.398-3.396-1.11-4.774a5.823 5.823 0 00.925-.696zm-1.044.767c.68 1.32 1.084 2.945 1.094 4.703h-3.42a27.863 27.863 0 00-.25-3.763c.953-.186 1.832-.506 2.576-.94zm-6.357.965a10.299 10.299 0 001.824.16 10.299 10.299 0 001.823-.16c.16 1.138.246 2.413.25 3.738h-1.179a1.03 1.03 0 01-.093.135h1.27a27.71 27.71 0 01-.248 3.739 10.397 10.397 0 00-3.647 0 27.733 27.733 0 01-.248-3.739h1.294a.99.99 0 01-.09-.135h-1.204c.003-1.325.088-2.6.248-3.738zm-11.22 1.129a2.585 2.585 0 00-2.547 2.35c-.142 1.541 1.064 2.842 2.566 2.842 1.26 0 2.312-.917 2.533-2.124h4.44v.972h.946v-.972h.837v1.431h.945v-2.376h-7.168a2.586 2.586 0 00-2.552-2.123zm-.058.965a1.639 1.639 0 011.707 1.637 1.64 1.64 0 01-1.639 1.638 1.639 1.639 0 01-.068-3.275zm13.09.388a.75.75 0 00-.345 1.404l-.383 1.958h1.5l-.383-1.958a.75.75 0 00.384-.654.75.75 0 00-.773-.75zm2.218 1.391h3.421c-.01 1.758-.415 3.384-1.094 4.704-.744-.434-1.623-.755-2.577-.94a27.81 27.81 0 00.25-3.764zm3.556 0h2.095a7.805 7.805 0 01-2.28 5.47 5.825 5.825 0 00-.925-.696c.712-1.378 1.1-3.033 1.11-4.774zm-5.52 3.703a10.284 10.284 0 011.562.156 16.518 16.518 0 01-.357 1.791c-.275 1.045-.618 1.774-.982 2.114a7.972 7.972 0 01-.93 0c-.365-.34-.708-1.07-.983-2.114a16.519 16.519 0 01-.357-1.79 10.284 10.284 0 012.048-.157zm1.695.181c.94.184 1.803.5 2.533.926-.686 1.284-1.635 2.265-2.73 2.776a7.874 7.874 0 01-1.075.164c.344-.393.657-1.094.913-2.065a16.64 16.64 0 00.36-1.8zm-3.874 0a16.648 16.648 0 00.36 1.8c.254.973.567 1.674.912 2.066a7.873 7.873 0 01-1.075-.164c-1.096-.511-2.045-1.492-2.73-2.775.73-.428 1.593-.743 2.533-.927zm-2.652.997a8.16 8.16 0 00.506.825c.52.741 1.121 1.323 1.776 1.73a7.814 7.814 0 01-3.174-1.884 5.694 5.694 0 01.892-.67zm9.178 0a5.694 5.694 0 01.891.67 7.814 7.814 0 01-3.173 1.885c.654-.407 1.256-.989 1.775-1.73a8.16 8.16 0 00.507-.825z" }) + ] + } + ); +}); + +export { SiWebauthn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.cjs new file mode 100644 index 000000000..e6ede1755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F36944"; +const SiWebawesome = React__namespace.forwardRef(function SiWebawesome2({ title = "Web Awesome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.958 4.95c0 .783-.465 1.462-1.132 1.77L16.8 10.2l3.914-.784A1.8 1.8 0 0 1 20.4 8.4a1.8 1.8 0 1 1 1.86 1.8l-4.221 9.385A2.4 2.4 0 0 1 15.849 21H8.153c-.945 0-1.8-.555-2.19-1.414l-4.221-9.384a1.8 1.8 0 1 1 1.545-.784L7.2 10.2l3.98-3.484a1.95 1.95 0 0 1-1.125-1.766 1.95 1.95 0 0 1 3.9 0z" }) + ] + } + ); +}); + +exports.default = SiWebawesome; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.d.ts new file mode 100644 index 000000000..e3b5f981d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F36944"; +declare const SiWebawesome: IconType; +export { SiWebawesome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.mjs new file mode 100644 index 000000000..d2de42b02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebawesome.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F36944"; +const SiWebawesome = React.forwardRef(function SiWebawesome2({ title = "Web Awesome", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.958 4.95c0 .783-.465 1.462-1.132 1.77L16.8 10.2l3.914-.784A1.8 1.8 0 0 1 20.4 8.4a1.8 1.8 0 1 1 1.86 1.8l-4.221 9.385A2.4 2.4 0 0 1 15.849 21H8.153c-.945 0-1.8-.555-2.19-1.414l-4.221-9.384a1.8 1.8 0 1 1 1.545-.784L7.2 10.2l3.98-3.484a1.95 1.95 0 0 1-1.125-1.766 1.95 1.95 0 0 1 3.9 0z" }) + ] + } + ); +}); + +export { SiWebawesome as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.cjs new file mode 100644 index 000000000..bcf5c8c9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#29ABE2"; +const SiWebcomponentsdotorg = React__namespace.forwardRef(function SiWebcomponentsdotorg2({ title = "webcomponents.org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.731 2.225l-.01.016H5.618L0 11.979l5.618 9.736h12.8l.04.06 2.134-3.735.518-.893h-.008l.008-.014-.626-.75h.895l.006-.01.008.01L24 11.994l-2.607-4.39-.003.005-.011-.02h-.945l.63-.763-2.606-4.57-.006.01-.024-.04H11.73zM9.107 6.824h6.19l-.53.764h-.023l2.398 4.015h.875l-.277.328.357.435h-.956l-2.398 4.015h.027l.523.764H9.074l-2.99-5.168 3.022-5.155z" }) + ] + } + ); +}); + +exports.default = SiWebcomponentsdotorg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.d.ts new file mode 100644 index 000000000..a53645c5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#29ABE2"; +declare const SiWebcomponentsdotorg: IconType; +export { SiWebcomponentsdotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.mjs new file mode 100644 index 000000000..15506ff7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebcomponentsdotorg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#29ABE2"; +const SiWebcomponentsdotorg = React.forwardRef(function SiWebcomponentsdotorg2({ title = "webcomponents.org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.731 2.225l-.01.016H5.618L0 11.979l5.618 9.736h12.8l.04.06 2.134-3.735.518-.893h-.008l.008-.014-.626-.75h.895l.006-.01.008.01L24 11.994l-2.607-4.39-.003.005-.011-.02h-.945l.63-.763-2.606-4.57-.006.01-.024-.04H11.73zM9.107 6.824h6.19l-.53.764h-.023l2.398 4.015h.875l-.277.328.357.435h-.956l-2.398 4.015h.027l.523.764H9.074l-2.99-5.168 3.022-5.155z" }) + ] + } + ); +}); + +export { SiWebcomponentsdotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.cjs new file mode 100644 index 000000000..50f095b03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD800"; +const SiWebdotde = React__namespace.forwardRef(function SiWebdotde2({ title = "WEB.DE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 0C1.35 0 0 1.35 0 3v18c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3Zm9.732 2.19c.047 0 .086.046.118.11.063.126.097.333.108.466.064.82.318-.013.434.082.088.091.395.593.35.903-.081.545-1.477.504-1.653.489-.15-.014-.574-.073-.716-.328-.136-.246.133-.78.333-.985.01-.01.157-.159.284-.207.016-.006.023-.01.043-.015.009-.003.014.003.01.026-.029.144-.035.64.177.626.195-.012.23-.764.308-.959a.466.466 0 0 1 .127-.181.166.166 0 0 1 .077-.027zm-.86 2.411c2.35-.02 4.401.205 5.725.418 0 0 .803.102.971.393.094.159.094.38.038.524-.039.1-.185.015-.154.206.315-.061.923.038 1.09.341.219.399-.096.366-.256.552-.111.13-.014.384-.229.486-.236.112-.797-.132-1.063-.16a24.962 24.962 0 0 1-.894-.107c-1.133-.16-2.373-.112-3.526-.068-1.095.042-2.21.06-3.296.24-.978.163-2.085.22-3.052.557-.356.127-1.574.648-1.537-.135.015-.329.426-.371.682-.447.184-.054.392-.054.472-.151.143-.172-.612-.003-.796.029-.186.033-.442.162-.635.09-.509-.188-.26-.64.108-.765.3-.1.526-.183.905-.246 4.534-.538 6.462-.54 11.511-.331-.051-.396-2.216-.468-2.61-.552-.637-.151-5.585-.224-7.072.154-.301.077-1.352.247-1.948.37-.31.064-.435-.238-.402-.496.034-.182.03-.184.307-.297.627-.253 1.7-.33 2.312-.401a31.328 31.328 0 0 1 3.35-.204Zm5.419 3.408c.241.022.292.214.423.41.208.314.258.48.294.859.046.404.059 2 .043 2.618.003.346.122 1.34.008 1.88.798.097 1.512.213 2.132.348 0-.004 1.236.238 1.499.597a.529.529 0 0 1 .119.27.649.649 0 0 1 .003.156.802.802 0 0 1-.06.184.325.325 0 0 1-.166.136.586.586 0 0 1-.122.037c-.022.004-.149.03-.269.002-.048-.012-.1-.02-.156-.037a1.894 1.894 0 0 1-.356-.154c-.783-.449-2.047-.62-2.865-.782-1.884-.356-10.438-.717-13.427.475-.603.238-.943.388-1.56.326-.027-.003-.283-.024-.325-.038a.453.453 0 0 1-.306-.325 1.226 1.226 0 0 1-.017-.168.322.322 0 0 1 .043-.146c.08-.124.099-.174.438-.327.553-.248 1.366-.283 2.285-.426.378-.058.713-.107 1.045-.151-.008-.017-.005-.035-.01-.05-.062-.335-.097-.887-.074-1.129.078-.874.264-2.222.391-3.08.037-.246-.018-.465.195-.635.335-.27.498-.149.69.03.337.31.434.332.37.884-.266 2.29-.404 3.51-.308 3.806l.008.027c.572-.056 1.16-.098 1.926-.141a56.19 56.19 0 0 1 1.046-.035c-.247-.134-.483-.345-.563-.557a3.713 3.713 0 0 1-.199-1.164c-.003-.425.059-2.194.078-2.756.005-.148-.008-.415.128-.522.117-.092.554-.147.643-.167.825-.184.572.655.506 1.131-.06.43-.11 2.074-.092 2.606.01.248.037.496.08.74.024.13.106.404.165.522.022.044.053.102.05.147.195-.003 2.52.046 2.607.049-.107-.26-.047-.597-.067-.866-.016-1.285-.3-4.211-.073-4.416.23-.236.48-.173.68.033.162.167.349.293.415.511.097.28.018 2.596.121 3.412.076.51.233.978-.22 1.33l-.037.03c.947.042 1.83.101 2.643.179.005-.16.019-.35.016-.498.034-.303-.118-3.786-.174-3.897l-.135-.536c-.053-.264.062-.7.375-.73a.615.615 0 0 1 .116-.002zM3.124 17.562h.794l.405 2.722.595-2.722h.773l.585 2.732.45-2.732h.744l-.734 3.571h-.92l-.54-2.416-.533 2.416h-.92Zm4.823 0h2.233v.6H8.701v.883h1.304v.6H8.701v.889h1.529v.6H7.947Zm2.869 0h1.194c.794 0 1.179.325 1.179.924 0 .595-.48.799-.48.799s.674.085.674.85c0 .6-.399.998-1.238.998h-1.33zm4.473 0h.964c1.228 0 1.782.66 1.782 1.753 0 1.119-.629 1.818-1.857 1.818h-.89zm3.313 0h2.232v.6h-1.478v.883h1.304v.6h-1.304v.889h1.528v.6h-2.282zm-7.032.56v.944h.325c.37 0 .55-.16.55-.48 0-.315-.18-.465-.625-.465zm4.473.04v2.372h.21c.694 0 1.019-.38 1.019-1.169 0-.793-.335-1.203-1.024-1.203zM11.57 19.61v.965h.415c.445 0 .639-.175.639-.495s-.21-.47-.595-.47zm2.692.82c.22 0 .38.14.38.37a.37.37 0 0 1-.39.383c-.254 0-.384-.164-.385-.374 0-.235.165-.379.395-.379z" }) + ] + } + ); +}); + +exports.default = SiWebdotde; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.d.ts new file mode 100644 index 000000000..d2f90de5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD800"; +declare const SiWebdotde: IconType; +export { SiWebdotde as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.mjs new file mode 100644 index 000000000..247e57697 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdotde.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD800"; +const SiWebdotde = React.forwardRef(function SiWebdotde2({ title = "WEB.DE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3 0C1.35 0 0 1.35 0 3v18c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3Zm9.732 2.19c.047 0 .086.046.118.11.063.126.097.333.108.466.064.82.318-.013.434.082.088.091.395.593.35.903-.081.545-1.477.504-1.653.489-.15-.014-.574-.073-.716-.328-.136-.246.133-.78.333-.985.01-.01.157-.159.284-.207.016-.006.023-.01.043-.015.009-.003.014.003.01.026-.029.144-.035.64.177.626.195-.012.23-.764.308-.959a.466.466 0 0 1 .127-.181.166.166 0 0 1 .077-.027zm-.86 2.411c2.35-.02 4.401.205 5.725.418 0 0 .803.102.971.393.094.159.094.38.038.524-.039.1-.185.015-.154.206.315-.061.923.038 1.09.341.219.399-.096.366-.256.552-.111.13-.014.384-.229.486-.236.112-.797-.132-1.063-.16a24.962 24.962 0 0 1-.894-.107c-1.133-.16-2.373-.112-3.526-.068-1.095.042-2.21.06-3.296.24-.978.163-2.085.22-3.052.557-.356.127-1.574.648-1.537-.135.015-.329.426-.371.682-.447.184-.054.392-.054.472-.151.143-.172-.612-.003-.796.029-.186.033-.442.162-.635.09-.509-.188-.26-.64.108-.765.3-.1.526-.183.905-.246 4.534-.538 6.462-.54 11.511-.331-.051-.396-2.216-.468-2.61-.552-.637-.151-5.585-.224-7.072.154-.301.077-1.352.247-1.948.37-.31.064-.435-.238-.402-.496.034-.182.03-.184.307-.297.627-.253 1.7-.33 2.312-.401a31.328 31.328 0 0 1 3.35-.204Zm5.419 3.408c.241.022.292.214.423.41.208.314.258.48.294.859.046.404.059 2 .043 2.618.003.346.122 1.34.008 1.88.798.097 1.512.213 2.132.348 0-.004 1.236.238 1.499.597a.529.529 0 0 1 .119.27.649.649 0 0 1 .003.156.802.802 0 0 1-.06.184.325.325 0 0 1-.166.136.586.586 0 0 1-.122.037c-.022.004-.149.03-.269.002-.048-.012-.1-.02-.156-.037a1.894 1.894 0 0 1-.356-.154c-.783-.449-2.047-.62-2.865-.782-1.884-.356-10.438-.717-13.427.475-.603.238-.943.388-1.56.326-.027-.003-.283-.024-.325-.038a.453.453 0 0 1-.306-.325 1.226 1.226 0 0 1-.017-.168.322.322 0 0 1 .043-.146c.08-.124.099-.174.438-.327.553-.248 1.366-.283 2.285-.426.378-.058.713-.107 1.045-.151-.008-.017-.005-.035-.01-.05-.062-.335-.097-.887-.074-1.129.078-.874.264-2.222.391-3.08.037-.246-.018-.465.195-.635.335-.27.498-.149.69.03.337.31.434.332.37.884-.266 2.29-.404 3.51-.308 3.806l.008.027c.572-.056 1.16-.098 1.926-.141a56.19 56.19 0 0 1 1.046-.035c-.247-.134-.483-.345-.563-.557a3.713 3.713 0 0 1-.199-1.164c-.003-.425.059-2.194.078-2.756.005-.148-.008-.415.128-.522.117-.092.554-.147.643-.167.825-.184.572.655.506 1.131-.06.43-.11 2.074-.092 2.606.01.248.037.496.08.74.024.13.106.404.165.522.022.044.053.102.05.147.195-.003 2.52.046 2.607.049-.107-.26-.047-.597-.067-.866-.016-1.285-.3-4.211-.073-4.416.23-.236.48-.173.68.033.162.167.349.293.415.511.097.28.018 2.596.121 3.412.076.51.233.978-.22 1.33l-.037.03c.947.042 1.83.101 2.643.179.005-.16.019-.35.016-.498.034-.303-.118-3.786-.174-3.897l-.135-.536c-.053-.264.062-.7.375-.73a.615.615 0 0 1 .116-.002zM3.124 17.562h.794l.405 2.722.595-2.722h.773l.585 2.732.45-2.732h.744l-.734 3.571h-.92l-.54-2.416-.533 2.416h-.92Zm4.823 0h2.233v.6H8.701v.883h1.304v.6H8.701v.889h1.529v.6H7.947Zm2.869 0h1.194c.794 0 1.179.325 1.179.924 0 .595-.48.799-.48.799s.674.085.674.85c0 .6-.399.998-1.238.998h-1.33zm4.473 0h.964c1.228 0 1.782.66 1.782 1.753 0 1.119-.629 1.818-1.857 1.818h-.89zm3.313 0h2.232v.6h-1.478v.883h1.304v.6h-1.304v.889h1.528v.6h-2.282zm-7.032.56v.944h.325c.37 0 .55-.16.55-.48 0-.315-.18-.465-.625-.465zm4.473.04v2.372h.21c.694 0 1.019-.38 1.019-1.169 0-.793-.335-1.203-1.024-1.203zM11.57 19.61v.965h.415c.445 0 .639-.175.639-.495s-.21-.47-.595-.47zm2.692.82c.22 0 .38.14.38.37a.37.37 0 0 1-.39.383c-.254 0-.384-.164-.385-.374 0-.235.165-.379.395-.379z" }) + ] + } + ); +}); + +export { SiWebdotde as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.cjs new file mode 100644 index 000000000..41b99c0f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA5906"; +const SiWebdriverio = React__namespace.forwardRef(function SiWebdriverio2({ title = "WebdriverIO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1.875 0C0.836 0 0 0.836 0 1.875v20.25C0 23.164 0.836 24 1.875 24h20.25C23.164 24 24 23.164 24 22.125V1.875C24 0.836 23.164 0 22.125 0ZM2.25 6H3V18H2.25ZM9.335 6H10.125L5.29 18H4.499ZM16.125 6c3.314 0 6 2.686 6 6 0 3.314-2.686 6-6 6-3.314 0-6-2.686-6-6 0-3.314 2.686-6 6-6zm0 0.75c-2.899 0-5.25 2.351-5.25 5.25 0 2.899 2.351 5.25 5.25 5.25 2.899 0 5.25-2.351 5.25-5.25 0-2.899-2.351-5.25-5.25-5.25z" }) + ] + } + ); +}); + +exports.default = SiWebdriverio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.d.ts new file mode 100644 index 000000000..cfbf724e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA5906"; +declare const SiWebdriverio: IconType; +export { SiWebdriverio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.mjs new file mode 100644 index 000000000..d2d849ce2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebdriverio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA5906"; +const SiWebdriverio = React.forwardRef(function SiWebdriverio2({ title = "WebdriverIO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M1.875 0C0.836 0 0 0.836 0 1.875v20.25C0 23.164 0.836 24 1.875 24h20.25C23.164 24 24 23.164 24 22.125V1.875C24 0.836 23.164 0 22.125 0ZM2.25 6H3V18H2.25ZM9.335 6H10.125L5.29 18H4.499ZM16.125 6c3.314 0 6 2.686 6 6 0 3.314-2.686 6-6 6-3.314 0-6-2.686-6-6 0-3.314 2.686-6 6-6zm0 0.75c-2.899 0-5.25 2.351-5.25 5.25 0 2.899 2.351 5.25 5.25 5.25 2.899 0 5.25-2.351 5.25-5.25 0-2.899-2.351-5.25-5.25-5.25z" }) + ] + } + ); +}); + +export { SiWebdriverio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.cjs new file mode 100644 index 000000000..2623e9adb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWebex = React__namespace.forwardRef(function SiWebex2({ title = "Webex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.78 7.376c.512 1.181.032 2.644-1.11 3.106-2.157.888-3-1.295-3-1.295-.236-.55-.727-1.496-1.335-1.496-.204 0-.503 0-.94.844-.229.443-.434 1.185-.616 1.84l-.09.32c-.373-1.587-.821-3.454-1.536-4.816-.195-.38-.42-.74-.673-1.08a5.135 5.135 0 0 1 1.743-1.337 4.891 4.891 0 0 1 2.112-.463c1.045 0 2.765.338 4.227 2.227.167.206.317.424.448.654.278.441.52.904.726 1.383l.043.113zM.02 8.4C-.15 7.105.8 5.845 1.953 5.755c1.794-.157 2.36 1.385 2.455 1.89l.022.137c.07.44.29 1.838.48 2.744.078.4.244 1.013.353 1.416l.006.022.026.092c.11.4.232.799.362 1.193.185.548.399 1.085.641 1.61.47.955.93 1.45 1.367 1.45.203 0 .512 0 .96-.878.283-.59.512-1.208.684-1.845.373 1.598.811 3.128 1.495 4.456.205.406.444.794.715 1.16a5.124 5.124 0 0 1-1.742 1.338 4.88 4.88 0 0 1-2.112.461c-1.548 0-3.727-.698-5.339-4.005a22.407 22.407 0 0 1-1.078-2.824 26.848 26.848 0 0 1-.693-2.656 48.56 48.56 0 0 1-.215-1.114C.191 9.603.074 8.872.02 8.4zm22.047-2.645-.202-.022h-.052c.222.392.421.797.597 1.215l.053.113c.322.76.346 1.614.068 2.391a3.079 3.079 0 0 1-1.552 1.749 2.93 2.93 0 0 1-1.228.28 3.115 3.115 0 0 1-.854-.135c-.299 1.182-.768 2.634-1.195 3.511-.427.877-.93 1.451-1.378 1.451-.192 0-.501 0-.95-.877a10.746 10.746 0 0 1-.683-1.845 38.722 38.722 0 0 1-.396-1.575 12.67 12.67 0 0 1-.136-.598l-.002-.01c-.406-1.778-.865-3.645-1.655-5.142A8.263 8.263 0 0 0 11.52 4.8a5.136 5.136 0 0 0-1.748-1.34A4.892 4.892 0 0 0 7.654 3c-1.036 0-2.754.338-4.217 2.228.466.223.867.562 1.164.984.305.433.499.933.565 1.458.076.563.256 1.654.47 2.688l.001.007c.021.11.042.221.073.342.126-.34.25-.642.38-.955l.112-.271.128-.293c.235-.55.726-1.496 1.324-1.496.213 0 .513 0 .95.844.296.606.532 1.239.706 1.89.138.507.276 1.047.394 1.587.04.148.07.296.101.444l.006.028c.427 1.879.875 3.69 1.644 5.187.159.317.34.622.545.911.15.215.31.422.48.62 1.27 1.45 2.733 1.8 3.843 1.8 1.548 0 3.738-.698 5.35-4.006.822-1.7 1.515-4.208 1.772-5.48.256-1.27.449-2.419.534-3.115.04-.307.023-.618-.051-.918-.075-.299-.205-.579-.382-.825a2.247 2.247 0 0 0-.653-.607 2.143 2.143 0 0 0-.826-.296z" }) + ] + } + ); +}); + +exports.default = SiWebex; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.d.ts new file mode 100644 index 000000000..8a20545fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWebex: IconType; +export { SiWebex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.mjs new file mode 100644 index 000000000..fc2b45010 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebex.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWebex = React.forwardRef(function SiWebex2({ title = "Webex", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.78 7.376c.512 1.181.032 2.644-1.11 3.106-2.157.888-3-1.295-3-1.295-.236-.55-.727-1.496-1.335-1.496-.204 0-.503 0-.94.844-.229.443-.434 1.185-.616 1.84l-.09.32c-.373-1.587-.821-3.454-1.536-4.816-.195-.38-.42-.74-.673-1.08a5.135 5.135 0 0 1 1.743-1.337 4.891 4.891 0 0 1 2.112-.463c1.045 0 2.765.338 4.227 2.227.167.206.317.424.448.654.278.441.52.904.726 1.383l.043.113zM.02 8.4C-.15 7.105.8 5.845 1.953 5.755c1.794-.157 2.36 1.385 2.455 1.89l.022.137c.07.44.29 1.838.48 2.744.078.4.244 1.013.353 1.416l.006.022.026.092c.11.4.232.799.362 1.193.185.548.399 1.085.641 1.61.47.955.93 1.45 1.367 1.45.203 0 .512 0 .96-.878.283-.59.512-1.208.684-1.845.373 1.598.811 3.128 1.495 4.456.205.406.444.794.715 1.16a5.124 5.124 0 0 1-1.742 1.338 4.88 4.88 0 0 1-2.112.461c-1.548 0-3.727-.698-5.339-4.005a22.407 22.407 0 0 1-1.078-2.824 26.848 26.848 0 0 1-.693-2.656 48.56 48.56 0 0 1-.215-1.114C.191 9.603.074 8.872.02 8.4zm22.047-2.645-.202-.022h-.052c.222.392.421.797.597 1.215l.053.113c.322.76.346 1.614.068 2.391a3.079 3.079 0 0 1-1.552 1.749 2.93 2.93 0 0 1-1.228.28 3.115 3.115 0 0 1-.854-.135c-.299 1.182-.768 2.634-1.195 3.511-.427.877-.93 1.451-1.378 1.451-.192 0-.501 0-.95-.877a10.746 10.746 0 0 1-.683-1.845 38.722 38.722 0 0 1-.396-1.575 12.67 12.67 0 0 1-.136-.598l-.002-.01c-.406-1.778-.865-3.645-1.655-5.142A8.263 8.263 0 0 0 11.52 4.8a5.136 5.136 0 0 0-1.748-1.34A4.892 4.892 0 0 0 7.654 3c-1.036 0-2.754.338-4.217 2.228.466.223.867.562 1.164.984.305.433.499.933.565 1.458.076.563.256 1.654.47 2.688l.001.007c.021.11.042.221.073.342.126-.34.25-.642.38-.955l.112-.271.128-.293c.235-.55.726-1.496 1.324-1.496.213 0 .513 0 .95.844.296.606.532 1.239.706 1.89.138.507.276 1.047.394 1.587.04.148.07.296.101.444l.006.028c.427 1.879.875 3.69 1.644 5.187.159.317.34.622.545.911.15.215.31.422.48.62 1.27 1.45 2.733 1.8 3.843 1.8 1.548 0 3.738-.698 5.35-4.006.822-1.7 1.515-4.208 1.772-5.48.256-1.27.449-2.419.534-3.115.04-.307.023-.618-.051-.918-.075-.299-.205-.579-.382-.825a2.247 2.247 0 0 0-.653-.607 2.143 2.143 0 0 0-.826-.296z" }) + ] + } + ); +}); + +export { SiWebex as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.cjs new file mode 100644 index 000000000..c332b3e2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#146EF5"; +const SiWebflow = React__namespace.forwardRef(function SiWebflow2({ title = "Webflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m24 4.515-7.658 14.97H9.149l3.205-6.204h-.144C9.566 16.713 5.621 18.973 0 19.485v-6.118s3.596-.213 5.71-2.435H0V4.515h6.417v5.278l.144-.001 2.622-5.277h4.854v5.244h.144l2.72-5.244H24Z" }) + ] + } + ); +}); + +exports.default = SiWebflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.d.ts new file mode 100644 index 000000000..6c9900067 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#146EF5"; +declare const SiWebflow: IconType; +export { SiWebflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.mjs new file mode 100644 index 000000000..2f836622f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#146EF5"; +const SiWebflow = React.forwardRef(function SiWebflow2({ title = "Webflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m24 4.515-7.658 14.97H9.149l3.205-6.204h-.144C9.566 16.713 5.621 18.973 0 19.485v-6.118s3.596-.213 5.71-2.435H0V4.515h6.417v5.278l.144-.001 2.622-5.277h4.854v5.244h.144l2.72-5.244H24Z" }) + ] + } + ); +}); + +export { SiWebflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.cjs new file mode 100644 index 000000000..4595e5038 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#990000"; +const SiWebgl = React__namespace.forwardRef(function SiWebgl2({ title = "WebGL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.489 10.164c-.565.548-.885 1.172-.885 1.835 0 2.167 3.415 3.921 7.631 3.921 2.339 0 4.437-.484 5.837-1.335-1.533 1.426-4.265 2.43-7.385 2.43C3.89 17.015 0 14.769 0 11.999s3.89-5.014 8.689-5.014c3.131.002 5.872 1.009 7.398 2.444-1.399-.856-3.504-1.351-5.852-1.351-2.506 0-4.73.621-6.121 1.579l.785 3.395.971-3.481h.737l.971 3.481.805-3.481h.805L7.953 14.11h-.717l-.991-3.566L5.24 14.11h-.714zm19.839 3.48h-.162v.424h-.142v-.424h-.164v-.122h.468zm.064-.122h.209l.095.364.096-.364H24v.546h-.133v-.415h-.002l-.113.415h-.109l-.115-.415h-.003v.415h-.133zm-5.699.515c-.2.084-.399.126-.601.126-.319 0-.608-.055-.863-.166q-.3825-.1665-.645-.459c-.175-.195-.311-.424-.404-.688-.093-.263-.14-.547-.14-.851 0-.313.047-.601.14-.869.093-.269.226-.502.402-.699.175-.2.39-.355.645-.468s.541-.171.863-.171c.215 0 .421.034.621.098.199.064.381.16.543.284s.295.279.399.463.169.395.193.632h-.874c-.055-.233-.159-.408-.315-.525-.155-.118-.343-.176-.567-.176-.207 0-.382.04-.526.12s-.262.187-.35.322a1.41 1.41 0 0 0-.196.459c-.039.171-.062.348-.062.532 0 .175.02.346.062.512.04.167.107.315.196.448.088.133.206.24.35.32s.319.119.526.119c.303 0 .539-.077.705-.23s.262-.375.29-.668h-.922v-.689h1.75v2.255h-.584l-.093-.472c-.162.21-.344.357-.543.441m2.708-4.14v3.395h2.033v.774h-2.949V9.897zm-9.204 1.585c.109.151.191.337.251.557.053.21.08.452.08.716v.047H9.372c.011.41.164.876.807.876.45 0 .703-.344.719-.537l.002-.042h.592l-.007.051c-.008.075-.051.222-.135.377-.049.086-.104.166-.166.239a1.3 1.3 0 0 1-.248.218c-.071.046-.158.1-.287.139-.148.047-.326.069-.543.069-.415 0-.763-.151-1.007-.434a1.43 1.43 0 0 1-.266-.482c-.06-.182-.091-.386-.091-.601 0-.485.12-.896.348-1.186.125-.158.278-.28.457-.362.191-.086.41-.131.654-.131.218 0 .413.043.581.127.165.082.304.202.415.359m-1.064.047c-.402 0-.741.357-.765.785h1.543c-.046-.528-.302-.785-.778-.785m4.373.388c.058.182.086.381.084.588 0 .19-.022.385-.064.563-.049.206-.122.39-.22.545-.11.178-.252.318-.419.415-.186.109-.408.164-.654.164-.228 0-.426-.057-.585-.173a.89.89 0 0 1-.198-.193v.282h-.561V9.983h.59v1.393c.093-.111.202-.2.324-.262.146-.078.313-.118.497-.12.199 0 .383.04.547.118.158.075.295.184.408.324.109.135.193.297.251.481m-.53.67c0-.2-.013-.459-.111-.672-.12-.26-.335-.384-.654-.384-.3 0-.506.135-.628.417-.084.195-.126.452-.126.785 0 .696.412.942.765.942.244 0 .435-.102.565-.303.125-.191.189-.462.189-.785" }) + ] + } + ); +}); + +exports.default = SiWebgl; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.d.ts new file mode 100644 index 000000000..eae933729 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#990000"; +declare const SiWebgl: IconType; +export { SiWebgl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.mjs new file mode 100644 index 000000000..3d5b87204 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgl.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#990000"; +const SiWebgl = React.forwardRef(function SiWebgl2({ title = "WebGL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.489 10.164c-.565.548-.885 1.172-.885 1.835 0 2.167 3.415 3.921 7.631 3.921 2.339 0 4.437-.484 5.837-1.335-1.533 1.426-4.265 2.43-7.385 2.43C3.89 17.015 0 14.769 0 11.999s3.89-5.014 8.689-5.014c3.131.002 5.872 1.009 7.398 2.444-1.399-.856-3.504-1.351-5.852-1.351-2.506 0-4.73.621-6.121 1.579l.785 3.395.971-3.481h.737l.971 3.481.805-3.481h.805L7.953 14.11h-.717l-.991-3.566L5.24 14.11h-.714zm19.839 3.48h-.162v.424h-.142v-.424h-.164v-.122h.468zm.064-.122h.209l.095.364.096-.364H24v.546h-.133v-.415h-.002l-.113.415h-.109l-.115-.415h-.003v.415h-.133zm-5.699.515c-.2.084-.399.126-.601.126-.319 0-.608-.055-.863-.166q-.3825-.1665-.645-.459c-.175-.195-.311-.424-.404-.688-.093-.263-.14-.547-.14-.851 0-.313.047-.601.14-.869.093-.269.226-.502.402-.699.175-.2.39-.355.645-.468s.541-.171.863-.171c.215 0 .421.034.621.098.199.064.381.16.543.284s.295.279.399.463.169.395.193.632h-.874c-.055-.233-.159-.408-.315-.525-.155-.118-.343-.176-.567-.176-.207 0-.382.04-.526.12s-.262.187-.35.322a1.41 1.41 0 0 0-.196.459c-.039.171-.062.348-.062.532 0 .175.02.346.062.512.04.167.107.315.196.448.088.133.206.24.35.32s.319.119.526.119c.303 0 .539-.077.705-.23s.262-.375.29-.668h-.922v-.689h1.75v2.255h-.584l-.093-.472c-.162.21-.344.357-.543.441m2.708-4.14v3.395h2.033v.774h-2.949V9.897zm-9.204 1.585c.109.151.191.337.251.557.053.21.08.452.08.716v.047H9.372c.011.41.164.876.807.876.45 0 .703-.344.719-.537l.002-.042h.592l-.007.051c-.008.075-.051.222-.135.377-.049.086-.104.166-.166.239a1.3 1.3 0 0 1-.248.218c-.071.046-.158.1-.287.139-.148.047-.326.069-.543.069-.415 0-.763-.151-1.007-.434a1.43 1.43 0 0 1-.266-.482c-.06-.182-.091-.386-.091-.601 0-.485.12-.896.348-1.186.125-.158.278-.28.457-.362.191-.086.41-.131.654-.131.218 0 .413.043.581.127.165.082.304.202.415.359m-1.064.047c-.402 0-.741.357-.765.785h1.543c-.046-.528-.302-.785-.778-.785m4.373.388c.058.182.086.381.084.588 0 .19-.022.385-.064.563-.049.206-.122.39-.22.545-.11.178-.252.318-.419.415-.186.109-.408.164-.654.164-.228 0-.426-.057-.585-.173a.89.89 0 0 1-.198-.193v.282h-.561V9.983h.59v1.393c.093-.111.202-.2.324-.262.146-.078.313-.118.497-.12.199 0 .383.04.547.118.158.075.295.184.408.324.109.135.193.297.251.481m-.53.67c0-.2-.013-.459-.111-.672-.12-.26-.335-.384-.654-.384-.3 0-.506.135-.628.417-.084.195-.126.452-.126.785 0 .696.412.942.765.942.244 0 .435-.102.565-.303.125-.191.189-.462.189-.785" }) + ] + } + ); +}); + +export { SiWebgl as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.cjs new file mode 100644 index 000000000..c3163335d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005A9C"; +const SiWebgpu = React__namespace.forwardRef(function SiWebgpu2({ title = "WebGPU", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 4.784 8.652 14.432 8.652-14.432zm22.032.145L20.07 8.202H24L22.032 4.93zm-4.46 0-4.192 6.993h8.384zm2.498 3.575 1.962 3.273L24 8.504zm-6.69 3.72 4.192 6.992 4.192-6.992z" }) + ] + } + ); +}); + +exports.default = SiWebgpu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.d.ts new file mode 100644 index 000000000..49240bf4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005A9C"; +declare const SiWebgpu: IconType; +export { SiWebgpu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.mjs new file mode 100644 index 000000000..12cec2157 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebgpu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005A9C"; +const SiWebgpu = React.forwardRef(function SiWebgpu2({ title = "WebGPU", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 4.784 8.652 14.432 8.652-14.432zm22.032.145L20.07 8.202H24L22.032 4.93zm-4.46 0-4.192 6.993h8.384zm2.498 3.575 1.962 3.273L24 8.504zm-6.69 3.72 4.192 6.992 4.192-6.992z" }) + ] + } + ); +}); + +export { SiWebgpu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.cjs new file mode 100644 index 000000000..db25a27ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2ECCAA"; +const SiWeblate = React__namespace.forwardRef(function SiWeblate2({ title = "Weblate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.662 3.809c-1.875 1.19-2.81 3.515-2.83 5.795-.014 2.628.666 5.258 1.988 7.305.936 1.46 2.238 2.715 3.836 3.412a6.942 6.942 0 005.647-.07c1.997-.927 3.523-2.73 4.463-4.785 1.606-3.518 1.643-7.724.12-11.295-1.146.458-2.166-.271-2.166-.271s.003 1.122-1.083 1.685c1.115 2.612 1.088 5.717-.03 8.263-.538 1.225-1.358 2.365-2.498 3.01-.917.52-2.04.625-3.052.184-1.342-.585-2.293-1.864-2.89-3.254-.466-1.067-.782-2.447-.802-3.878-.037-1.724.728-3.193 1.635-3.218.622-.024 1.427.918 1.598 2.435.158 1.543-.177 3.72-1.174 5.49.677 1.085 1.77 1.98 2.951 1.974 1.386-2.338 1.827-4.911 1.793-6.987-.02-2.28-.955-4.603-2.83-5.795-1.437-.907-3.173-.948-4.676 0zM3.278 3.9s-1.018.73-2.163.27c-1.524 3.573-1.488 7.778.12 11.296.94 2.056 2.465 3.858 4.462 4.785a6.95 6.95 0 005.523.124 9.12 9.12 0 01-1.75-1.455 11.18 11.18 0 01-1.267-1.628c-.768-.08-1.498-.482-2.003-.913-1.447-1.213-2.453-3.478-2.632-5.9-.12-1.635.14-3.354.795-4.894C3.276 5.022 3.278 3.9 3.278 3.9z" }) + ] + } + ); +}); + +exports.default = SiWeblate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.d.ts new file mode 100644 index 000000000..250474239 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2ECCAA"; +declare const SiWeblate: IconType; +export { SiWeblate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.mjs new file mode 100644 index 000000000..5f24e4aac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeblate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2ECCAA"; +const SiWeblate = React.forwardRef(function SiWeblate2({ title = "Weblate", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.662 3.809c-1.875 1.19-2.81 3.515-2.83 5.795-.014 2.628.666 5.258 1.988 7.305.936 1.46 2.238 2.715 3.836 3.412a6.942 6.942 0 005.647-.07c1.997-.927 3.523-2.73 4.463-4.785 1.606-3.518 1.643-7.724.12-11.295-1.146.458-2.166-.271-2.166-.271s.003 1.122-1.083 1.685c1.115 2.612 1.088 5.717-.03 8.263-.538 1.225-1.358 2.365-2.498 3.01-.917.52-2.04.625-3.052.184-1.342-.585-2.293-1.864-2.89-3.254-.466-1.067-.782-2.447-.802-3.878-.037-1.724.728-3.193 1.635-3.218.622-.024 1.427.918 1.598 2.435.158 1.543-.177 3.72-1.174 5.49.677 1.085 1.77 1.98 2.951 1.974 1.386-2.338 1.827-4.911 1.793-6.987-.02-2.28-.955-4.603-2.83-5.795-1.437-.907-3.173-.948-4.676 0zM3.278 3.9s-1.018.73-2.163.27c-1.524 3.573-1.488 7.778.12 11.296.94 2.056 2.465 3.858 4.462 4.785a6.95 6.95 0 005.523.124 9.12 9.12 0 01-1.75-1.455 11.18 11.18 0 01-1.267-1.628c-.768-.08-1.498-.482-2.003-.913-1.447-1.213-2.453-3.478-2.632-5.9-.12-1.635.14-3.354.795-4.894C3.276 5.022 3.278 3.9 3.278 3.9z" }) + ] + } + ); +}); + +export { SiWeblate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.cjs new file mode 100644 index 000000000..d2d21b231 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#7DA0D0"; +const SiWebmin = React__namespace.forwardRef(function SiWebmin2({ title = "Webmin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.3006 0c-1.5504.0058-2.6602 1.1575-2.503 3.0064.1018 1.2276.2082 2.4735.3125 3.7292-1.0796.4547-2.2182.9333-3.4283 1.4455-1.2547.5358-2.1224 1.6093-2.4566 2.8852-.3401 1.3009-.1354 2.808.7228 4.143.7636 1.1953 1.8562 2.0058 3.2547 2.4454-.0804 1.0912.0302 2.0788.3407 2.954a5.464 5.464 0 0 0 .5328 1.0981c.798 1.2684 1.9783 2.029 3.183 2.2356 1.184.2028 2.3797-.13 3.294-.9992.98-.9452 1.9066-1.8373 2.7905-2.6834 1.0466.6293 2.0551 1.2355 3.0367 1.8269 1.6047.957 3.2437-.0836 3.6308-2.1144.1616-.8468.0895-1.7933-.2113-2.863.571-.3511.926-.901 1.0664-1.671.3057-1.6334-.5026-3.7813-1.8262-4.8797a944.4632 944.4632 0 0 0-2.166-1.7848c-.0034-.0188-.371-2.1056-.5514-3.1098-.306-1.7243-1.7984-3.5393-3.3736-4.0403-.7224-.2305-1.3943-.1586-2.036.2239-.7784-.8241-1.5919-1.379-2.4788-1.6628C10.0398.0586 9.6584-.0013 9.3006 0zm1.0184 2.4795a1.322 1.322 0 0 1 .3814.0473c.4661.1252.9114.4903 1.1543.9326.1987.3678.29.6704.3703 1.2978.1317 1.03.2665 2.0738.4035 3.143.0136.0984.027.1947.0384.2927.1154.8888.644 1.5284 1.3295 1.6192.6596.0878 1.0102-.4298.8898-1.2608a12.1931 12.1931 0 0 0-.0377-.2763 2387.9439 2387.9439 0 0 0-.4412-3.0057c-.0635-.425-.0843-.75-.0495-.96.0511-.4654.4213-.7077.895-.5794.4787.1313.9267.5723 1.1337 1.0982.1067.266.1547.4722.2365.9637.157.941.3118 1.89.4722 2.8674.1177.638.1772 1.202 1.0443 1.8048.7299.5736 1.442 1.1397 2.1417 1.6864.4207.3311.5725.4842.739.7176.2694.3795.382.933.2875 1.3576-.087.3928-.341.628-.6585.5905-.2603-.031-.4792-.1375-.9238-.4648-.7333-.5498-1.4835-1.113-2.2592-1.6843-.0681-.048-.144-.1008-.2136-.1522-.6455-.4757-1.2088-.384-1.424.266-.223.666.0904 1.448.7545 1.9134.0715.0492.1528.1067.2224.1574.8094.5672 1.6055 1.1207 2.3804 1.6599.3285.2293.573.444.7346.6377.3572.4094.5276 1.0814.4043 1.6429-.1325.593-.5142.9019-.9785.796-.2342-.05-.4106-.1448-.8314-.4176-.817-.5301-1.657-1.0785-2.523-1.637a5.0836 5.0836 0 0 1-.2373-.1589c-.2724-.1672-.5363-.2426-.7678-.2335h-.0022c-.2596-.017-.5308.0771-.7915.286-.0727.0594-.1459.1171-.2136.181-.8083.6649-1.6461 1.3742-2.5342 2.121-.4805.4008-.6964.5576-1.0169.6704-.6459.2463-1.359-.0303-1.8054-.7398-.4212-.692-.4027-1.5886.0332-2.1542.185-.2517.498-.539.9297-.8448.9396-.672 1.83-1.3056 2.676-1.9126a10.921 10.921 0 0 0 .2277-.1581c.6417-.4552.764-1.2606.3119-2.0117-.4409-.7492-1.1696-.976-1.861-.5587a5.3786 5.3786 0 0 0-.2335.1456c-.8948.549-1.834 1.1279-2.8238 1.739-.6383.3848-.9758.5083-1.4522.5306-.5892.0302-1.2047-.3318-1.5638-.9031-.4068-.6365-.4212-1.4274-.0303-1.9178.2194-.2883.455-.4634 1.1292-.8092a274.597 274.597 0 0 1 2.996-1.5261c.0814-.0492.1625-.083.2461-.1242a1.0729 1.0729 0 0 0 .1597-.0976c.4253-.1876.6323-.6568.566-1.2933-.0117-.1063-.019-.209-.0369-.311a375.454 375.454 0 0 0-.351-3.3161c-.0693-.66-.0626-.8925.0214-1.1544.1-.3124.39-.4922.7516-.5025zM7.1101 6.737l.0023.0252c-.0009-.0012-.0016-.001-.003-.0045v-.0051a.236.236 0 0 0-.0007-.0133s.001-.0013.0015-.0023zm.003.0414c.0025.0304.0056.0598.0081.0902-.0034-.0271-.0064-.0524-.011-.0828 0-.0016.0018-.0047.0029-.0074zm.0118.136l.0023.0251h-.0023V6.924c0-.0026.002-.005-.0007-.0081 0 0 .0006-.001.0007-.0015zm.0037.0414c.0005.0052.0003.0103.0008.0155-.0002-.0011-.0008-.0026-.0008-.0037-.0007-.0027-.003-.0047-.003-.0074.0027-.0012.0027-.0028.003-.0044z" }) + ] + } + ); +}); + +exports.default = SiWebmin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.d.ts new file mode 100644 index 000000000..98a576dfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#7DA0D0"; +declare const SiWebmin: IconType; +export { SiWebmin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.mjs new file mode 100644 index 000000000..e1c2370cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#7DA0D0"; +const SiWebmin = React.forwardRef(function SiWebmin2({ title = "Webmin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.3006 0c-1.5504.0058-2.6602 1.1575-2.503 3.0064.1018 1.2276.2082 2.4735.3125 3.7292-1.0796.4547-2.2182.9333-3.4283 1.4455-1.2547.5358-2.1224 1.6093-2.4566 2.8852-.3401 1.3009-.1354 2.808.7228 4.143.7636 1.1953 1.8562 2.0058 3.2547 2.4454-.0804 1.0912.0302 2.0788.3407 2.954a5.464 5.464 0 0 0 .5328 1.0981c.798 1.2684 1.9783 2.029 3.183 2.2356 1.184.2028 2.3797-.13 3.294-.9992.98-.9452 1.9066-1.8373 2.7905-2.6834 1.0466.6293 2.0551 1.2355 3.0367 1.8269 1.6047.957 3.2437-.0836 3.6308-2.1144.1616-.8468.0895-1.7933-.2113-2.863.571-.3511.926-.901 1.0664-1.671.3057-1.6334-.5026-3.7813-1.8262-4.8797a944.4632 944.4632 0 0 0-2.166-1.7848c-.0034-.0188-.371-2.1056-.5514-3.1098-.306-1.7243-1.7984-3.5393-3.3736-4.0403-.7224-.2305-1.3943-.1586-2.036.2239-.7784-.8241-1.5919-1.379-2.4788-1.6628C10.0398.0586 9.6584-.0013 9.3006 0zm1.0184 2.4795a1.322 1.322 0 0 1 .3814.0473c.4661.1252.9114.4903 1.1543.9326.1987.3678.29.6704.3703 1.2978.1317 1.03.2665 2.0738.4035 3.143.0136.0984.027.1947.0384.2927.1154.8888.644 1.5284 1.3295 1.6192.6596.0878 1.0102-.4298.8898-1.2608a12.1931 12.1931 0 0 0-.0377-.2763 2387.9439 2387.9439 0 0 0-.4412-3.0057c-.0635-.425-.0843-.75-.0495-.96.0511-.4654.4213-.7077.895-.5794.4787.1313.9267.5723 1.1337 1.0982.1067.266.1547.4722.2365.9637.157.941.3118 1.89.4722 2.8674.1177.638.1772 1.202 1.0443 1.8048.7299.5736 1.442 1.1397 2.1417 1.6864.4207.3311.5725.4842.739.7176.2694.3795.382.933.2875 1.3576-.087.3928-.341.628-.6585.5905-.2603-.031-.4792-.1375-.9238-.4648-.7333-.5498-1.4835-1.113-2.2592-1.6843-.0681-.048-.144-.1008-.2136-.1522-.6455-.4757-1.2088-.384-1.424.266-.223.666.0904 1.448.7545 1.9134.0715.0492.1528.1067.2224.1574.8094.5672 1.6055 1.1207 2.3804 1.6599.3285.2293.573.444.7346.6377.3572.4094.5276 1.0814.4043 1.6429-.1325.593-.5142.9019-.9785.796-.2342-.05-.4106-.1448-.8314-.4176-.817-.5301-1.657-1.0785-2.523-1.637a5.0836 5.0836 0 0 1-.2373-.1589c-.2724-.1672-.5363-.2426-.7678-.2335h-.0022c-.2596-.017-.5308.0771-.7915.286-.0727.0594-.1459.1171-.2136.181-.8083.6649-1.6461 1.3742-2.5342 2.121-.4805.4008-.6964.5576-1.0169.6704-.6459.2463-1.359-.0303-1.8054-.7398-.4212-.692-.4027-1.5886.0332-2.1542.185-.2517.498-.539.9297-.8448.9396-.672 1.83-1.3056 2.676-1.9126a10.921 10.921 0 0 0 .2277-.1581c.6417-.4552.764-1.2606.3119-2.0117-.4409-.7492-1.1696-.976-1.861-.5587a5.3786 5.3786 0 0 0-.2335.1456c-.8948.549-1.834 1.1279-2.8238 1.739-.6383.3848-.9758.5083-1.4522.5306-.5892.0302-1.2047-.3318-1.5638-.9031-.4068-.6365-.4212-1.4274-.0303-1.9178.2194-.2883.455-.4634 1.1292-.8092a274.597 274.597 0 0 1 2.996-1.5261c.0814-.0492.1625-.083.2461-.1242a1.0729 1.0729 0 0 0 .1597-.0976c.4253-.1876.6323-.6568.566-1.2933-.0117-.1063-.019-.209-.0369-.311a375.454 375.454 0 0 0-.351-3.3161c-.0693-.66-.0626-.8925.0214-1.1544.1-.3124.39-.4922.7516-.5025zM7.1101 6.737l.0023.0252c-.0009-.0012-.0016-.001-.003-.0045v-.0051a.236.236 0 0 0-.0007-.0133s.001-.0013.0015-.0023zm.003.0414c.0025.0304.0056.0598.0081.0902-.0034-.0271-.0064-.0524-.011-.0828 0-.0016.0018-.0047.0029-.0074zm.0118.136l.0023.0251h-.0023V6.924c0-.0026.002-.005-.0007-.0081 0 0 .0006-.001.0007-.0015zm.0037.0414c.0005.0052.0003.0103.0008.0155-.0002-.0011-.0008-.0026-.0008-.0037-.0007-.0027-.003-.0047-.003-.0074.0027-.0012.0027-.0028.003-.0044z" }) + ] + } + ); +}); + +export { SiWebmin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.cjs new file mode 100644 index 000000000..2f1e6265f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#036CB5"; +const SiWebmoney = React__namespace.forwardRef(function SiWebmoney2({ title = "WebMoney", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.943.1825c1.8723 0 3.6538.429 5.2524 1.1964.2507.1131.503.2485.7529.384l-1.0961.971-1.6433-1.6933-2.8315 2.483L10.71 1.74 5.5032 6.368l3.3336 3.6347-1.3014 1.1285 3.2889 3.6346-1.3015 1.128 4.7045 5.1698 2.7844-2.5285 2.4217 2.7097c-.48.3613-1.0052.7232-1.5754 1.0387a12.0418 12.0418 0 0 1-5.892 1.534C5.3657 23.8175 0 18.5135 0 11.9899-.0231 5.5104 5.3435.1825 11.943.1825zM9.7502 11.267l2.8546-2.5285 2.5582 2.8218-2.8552 2.5283zm2.033 4.8764l2.8314-2.551 2.5807 2.8216-2.8548 2.5286zM7.719 6.4587l2.8537-2.5285 2.5577 2.8217-2.8548 2.5285zm5.2284-1.355l2.124-1.8961L16.99 5.307l-2.124 1.9186zm3.7912 8.6914l2.1232-1.8963 1.9186 2.1215-2.124 1.8975zm1.8723 4.267l2.124-1.8966 1.9171 2.0995-2.1232 1.9183zm.868-9.7527l1.4156-1.2643 1.2784 1.4002-1.4155 1.2638zM17.652 4.133l1.4158-1.2864 1.2793 1.422-1.4168 1.2641zm3.6308 8.3531l1.4156-1.2642L24 12.6216l-1.4381 1.2639zm-6.3711-3.138l2.124-1.8963 1.9178 2.099-2.1231 1.8967Z" }) + ] + } + ); +}); + +exports.default = SiWebmoney; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.d.ts new file mode 100644 index 000000000..4e8f2884a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#036CB5"; +declare const SiWebmoney: IconType; +export { SiWebmoney as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.mjs new file mode 100644 index 000000000..4e24e432a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebmoney.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#036CB5"; +const SiWebmoney = React.forwardRef(function SiWebmoney2({ title = "WebMoney", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.943.1825c1.8723 0 3.6538.429 5.2524 1.1964.2507.1131.503.2485.7529.384l-1.0961.971-1.6433-1.6933-2.8315 2.483L10.71 1.74 5.5032 6.368l3.3336 3.6347-1.3014 1.1285 3.2889 3.6346-1.3015 1.128 4.7045 5.1698 2.7844-2.5285 2.4217 2.7097c-.48.3613-1.0052.7232-1.5754 1.0387a12.0418 12.0418 0 0 1-5.892 1.534C5.3657 23.8175 0 18.5135 0 11.9899-.0231 5.5104 5.3435.1825 11.943.1825zM9.7502 11.267l2.8546-2.5285 2.5582 2.8218-2.8552 2.5283zm2.033 4.8764l2.8314-2.551 2.5807 2.8216-2.8548 2.5286zM7.719 6.4587l2.8537-2.5285 2.5577 2.8217-2.8548 2.5285zm5.2284-1.355l2.124-1.8961L16.99 5.307l-2.124 1.9186zm3.7912 8.6914l2.1232-1.8963 1.9186 2.1215-2.124 1.8975zm1.8723 4.267l2.124-1.8966 1.9171 2.0995-2.1232 1.9183zm.868-9.7527l1.4156-1.2643 1.2784 1.4002-1.4155 1.2638zM17.652 4.133l1.4158-1.2864 1.2793 1.422-1.4168 1.2641zm3.6308 8.3531l1.4156-1.2642L24 12.6216l-1.4381 1.2639zm-6.3711-3.138l2.124-1.8963 1.9178 2.099-2.1231 1.8967Z" }) + ] + } + ); +}); + +export { SiWebmoney as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.cjs new file mode 100644 index 000000000..343f053dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#8DD6F9"; +const SiWebpack = React__namespace.forwardRef(function SiWebpack2({ title = "Webpack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.1987 18.498l-9.7699 5.5022v-4.2855l6.0872-3.3338 3.6826 2.117zm.6683-.6026V6.3884l-3.5752 2.0544v7.396zm-21.0657.6026l9.7699 5.5022v-4.2855L5.484 16.3809l-3.6826 2.117zm-.6683-.6026V6.3884l3.5751 2.0544v7.396zm.4183-12.2515l10.0199-5.644v4.1434L5.152 7.6586l-.0489.028zm20.8975 0l-10.02-5.644v4.1434l6.4192 3.5154.0489.028 3.5518-2.0427zm-10.8775 13.096l-6.0056-3.2873V8.9384l6.0054 3.4525v6.349zm.8575 0l6.0053-3.2873V8.9384l-6.0053 3.4525zM5.9724 8.1845l6.0287-3.3015L18.03 8.1845l-6.0288 3.4665z" }) + ] + } + ); +}); + +exports.default = SiWebpack; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.d.ts new file mode 100644 index 000000000..a3e34ea4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#8DD6F9"; +declare const SiWebpack: IconType; +export { SiWebpack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.mjs new file mode 100644 index 000000000..4acfde7de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebpack.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#8DD6F9"; +const SiWebpack = React.forwardRef(function SiWebpack2({ title = "Webpack", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.1987 18.498l-9.7699 5.5022v-4.2855l6.0872-3.3338 3.6826 2.117zm.6683-.6026V6.3884l-3.5752 2.0544v7.396zm-21.0657.6026l9.7699 5.5022v-4.2855L5.484 16.3809l-3.6826 2.117zm-.6683-.6026V6.3884l3.5751 2.0544v7.396zm.4183-12.2515l10.0199-5.644v4.1434L5.152 7.6586l-.0489.028zm20.8975 0l-10.02-5.644v4.1434l6.4192 3.5154.0489.028 3.5518-2.0427zm-10.8775 13.096l-6.0056-3.2873V8.9384l6.0054 3.4525v6.349zm.8575 0l6.0053-3.2873V8.9384l-6.0053 3.4525zM5.9724 8.1845l6.0287-3.3015L18.03 8.1845l-6.0288 3.4665z" }) + ] + } + ); +}); + +export { SiWebpack as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.cjs new file mode 100644 index 000000000..c87bd5b9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#333333"; +const SiWebrtc = React__namespace.forwardRef(function SiWebrtc2({ title = "WebRTC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.9998.3598c-2.8272 0-5.1456 2.1733-5.3793 4.94a5.4117 5.4117 0 00-1.2207-.1401C2.418 5.1597 0 7.5779 0 10.5603c0 2.2203 1.341 4.1274 3.2568 4.957a5.3734 5.3734 0 00-.7372 2.7227c0 2.9823 2.4175 5.4002 5.4002 5.4002 1.6627 0 3.1492-.7522 4.1397-1.934.9906 1.1818 2.4773 1.934 4.1398 1.934 2.983 0 5.4004-2.418 5.4004-5.4002 0-.9719-.258-1.883-.7073-2.6708C22.7283 14.7068 24 12.8418 24 10.6795c0-2.9823-2.4175-5.4006-5.3998-5.4006-.417 0-.8223.049-1.2121.1384C17.2112 2.5949 14.867.3598 11.9998.3598zm-5.717 6.8683h10.5924c.7458 0 1.352.605 1.352 1.3487v7.6463c0 .7438-.6062 1.3482-1.352 1.3482h-3.6085l-7.24 3.5491 1.1008-3.5491h-.8447c-.7458 0-1.3522-.6044-1.3522-1.3482V8.5768c0-.7438.6064-1.3487 1.3522-1.3487Z" }) + ] + } + ); +}); + +exports.default = SiWebrtc; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.d.ts new file mode 100644 index 000000000..4a3ede639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#333333"; +declare const SiWebrtc: IconType; +export { SiWebrtc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.mjs new file mode 100644 index 000000000..41e12d4d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebrtc.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#333333"; +const SiWebrtc = React.forwardRef(function SiWebrtc2({ title = "WebRTC", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.9998.3598c-2.8272 0-5.1456 2.1733-5.3793 4.94a5.4117 5.4117 0 00-1.2207-.1401C2.418 5.1597 0 7.5779 0 10.5603c0 2.2203 1.341 4.1274 3.2568 4.957a5.3734 5.3734 0 00-.7372 2.7227c0 2.9823 2.4175 5.4002 5.4002 5.4002 1.6627 0 3.1492-.7522 4.1397-1.934.9906 1.1818 2.4773 1.934 4.1398 1.934 2.983 0 5.4004-2.418 5.4004-5.4002 0-.9719-.258-1.883-.7073-2.6708C22.7283 14.7068 24 12.8418 24 10.6795c0-2.9823-2.4175-5.4006-5.3998-5.4006-.417 0-.8223.049-1.2121.1384C17.2112 2.5949 14.867.3598 11.9998.3598zm-5.717 6.8683h10.5924c.7458 0 1.352.605 1.352 1.3487v7.6463c0 .7438-.6062 1.3482-1.352 1.3482h-3.6085l-7.24 3.5491 1.1008-3.5491h-.8447c-.7458 0-1.3522-.6044-1.3522-1.3482V8.5768c0-.7438.6064-1.3487 1.3522-1.3487Z" }) + ] + } + ); +}); + +export { SiWebrtc as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.cjs new file mode 100644 index 000000000..461b31ae0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWebstorm = React__namespace.forwardRef(function SiWebstorm2({ title = "WebStorm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0H0zm17.889 2.889c1.444 0 2.667.444 3.667 1.278l-1.111 1.667c-.889-.611-1.722-1-2.556-1s-1.278.389-1.278.889v.056c0 .667.444.889 2.111 1.333 2 .556 3.111 1.278 3.111 3v.056c0 2-1.5 3.111-3.611 3.111-1.5-.056-3-.611-4.167-1.667l1.278-1.556c.889.722 1.833 1.222 2.944 1.222.889 0 1.389-.333 1.389-.944v-.056c0-.556-.333-.833-2-1.278-2-.5-3.222-1.056-3.222-3.056v-.056c0-1.833 1.444-3 3.444-3zm-16.111.222h2.278l1.5 5.778 1.722-5.778h1.667l1.667 5.778 1.5-5.778h2.333l-2.833 9.944H9.723L8.112 7.277l-1.667 5.778H4.612L1.779 3.111zm.5 16.389h9V21h-9v-1.5z" }) + ] + } + ); +}); + +exports.default = SiWebstorm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.d.ts new file mode 100644 index 000000000..cf3c1e3cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWebstorm: IconType; +export { SiWebstorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.mjs new file mode 100644 index 000000000..0496135fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebstorm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWebstorm = React.forwardRef(function SiWebstorm2({ title = "WebStorm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0H0zm17.889 2.889c1.444 0 2.667.444 3.667 1.278l-1.111 1.667c-.889-.611-1.722-1-2.556-1s-1.278.389-1.278.889v.056c0 .667.444.889 2.111 1.333 2 .556 3.111 1.278 3.111 3v.056c0 2-1.5 3.111-3.611 3.111-1.5-.056-3-.611-4.167-1.667l1.278-1.556c.889.722 1.833 1.222 2.944 1.222.889 0 1.389-.333 1.389-.944v-.056c0-.556-.333-.833-2-1.278-2-.5-3.222-1.056-3.222-3.056v-.056c0-1.833 1.444-3 3.444-3zm-16.111.222h2.278l1.5 5.778 1.722-5.778h1.667l1.667 5.778 1.5-5.778h2.333l-2.833 9.944H9.723L8.112 7.277l-1.667 5.778H4.612L1.779 3.111zm.5 16.389h9V21h-9v-1.5z" }) + ] + } + ); +}); + +export { SiWebstorm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.cjs new file mode 100644 index 000000000..09beebdaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D564"; +const SiWebtoon = React__namespace.forwardRef(function SiWebtoon2({ title = "WEBTOON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.023 15.26c.695 0 1.014-.404 1.014-1.051 0-.551-.308-1.01-.984-1.01-.58 0-.912.404-.912 1.016 0 .543.32 1.045.882 1.045zM10.135 15.447c.764 0 1.113-.443 1.113-1.154 0-.604-.338-1.109-1.082-1.109-.637 0-1.002.445-1.002 1.115 0 .597.352 1.148.971 1.148zM24 10.201l-3.15.029.83-9.686L1.958 3.605l1.686 6.248H0l3.734 11.488 8.713-1.283v3.396l10.113-4.641L24 10.201zm-9.104-3.594c0-.049.039-.092.088-.094l1.879-.125.446-.029c.524-.035 1.634.063 1.634 1.236 0 .83-.619 1.184-.619 1.184s.75.189.707 1.092c0 1.602-1.943 1.389-1.943 1.389l-.225-.006-1.908-.053a.089.089 0 0 1-.086-.09l.027-4.504zm-3.675.243c0-.047.039-.09.088-.092l3.064-.203a.08.08 0 0 1 .087.08v.943c0 .049-.039.09-.087.092l-1.9.08a.094.094 0 0 0-.088.09l-.005.394a.083.083 0 0 0 .086.084l1.646-.066a.082.082 0 0 1 .086.084l-.02 1.012a.089.089 0 0 1-.089.086h-1.63a.089.089 0 0 0-.088.088v.416c0 .047.039.088.088.088l1.87.033a.09.09 0 0 1 .087.09v.951a.084.084 0 0 1-.087.084l-3.063-.123a.09.09 0 0 1-.087-.09l.042-4.121zm-6.01.312l.975-.064a.101.101 0 0 1 .105.08l.458 2.205c.01.047.027.047.039 0l.576-2.281a.132.132 0 0 1 .108-.09l.921-.061a.108.108 0 0 1 .109.078l.564 2.342c.012.047.029.047.041 0l.6-2.424a.131.131 0 0 1 .108-.092l.996-.064c.048-.004.077.031.065.078l-1.09 4.104a.113.113 0 0 1-.109.082l-1.121-.031a.12.12 0 0 1-.109-.086l-.535-1.965c-.012-.047-.033-.047-.045 0l-.522 1.934a.12.12 0 0 1-.11.082l-1.109-.031a.123.123 0 0 1-.108-.088l-.873-3.618c-.011-.047.019-.088.066-.09zm-.288 9.623v-3.561a.089.089 0 0 0-.087-.088l-1.252-.029a.095.095 0 0 1-.091-.09l-.046-1.125a.082.082 0 0 1 .083-.086l4.047.096c.048 0 .087.041.085.088l-.022 1.088a.093.093 0 0 1-.089.088l-1.139.004a.09.09 0 0 0-.087.088v3.447c0 .049-.039.09-.087.092l-1.227.07a.08.08 0 0 1-.088-.082zm2.834-2.379c0-1.918 1.321-2.482 2.416-2.482s2.339.73 2.339 2.316c0 1.9-1.383 2.482-2.416 2.482-1.033.001-2.339-.724-2.339-2.316zm5.139-.115c0-1.746 1.166-2.238 2.162-2.238s2.129.664 2.129 2.107c0 1.729-1.259 2.26-2.198 2.26s-2.093-.68-2.093-2.129zm7.259 1.711a.175.175 0 0 1-.139-.064l-1.187-1.631c-.029-.039-.053-.031-.053.018v1.67c0 .047-.039.09-.086.092l-1.052.061a.082.082 0 0 1-.087-.082l.039-3.842c0-.047.039-.086.088-.084l.881.02a.2.2 0 0 1 .137.074l1.293 1.902c.027.041.051.033.051-.014l.032-1.846a.087.087 0 0 1 .089-.086l.963.029c.047 0 .085.041.083.09l-.138 3.555a.097.097 0 0 1-.091.092l-.823.046zM16.258 8.23l.724-.014s.47.018.47-.434c0-.357-.411-.33-.411-.33l-.782.008a.09.09 0 0 0-.088.088v.598a.083.083 0 0 0 .087.084zM16.229 10.191h.99c.024 0 .35-.051.35-.404 0-.293-.229-.402-.441-.398l-.898.029a.089.089 0 0 0-.087.09v.596a.086.086 0 0 0 .086.087z" }) + ] + } + ); +}); + +exports.default = SiWebtoon; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.d.ts new file mode 100644 index 000000000..e6a1d4fcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D564"; +declare const SiWebtoon: IconType; +export { SiWebtoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.mjs new file mode 100644 index 000000000..b918b04db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtoon.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D564"; +const SiWebtoon = React.forwardRef(function SiWebtoon2({ title = "WEBTOON", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.023 15.26c.695 0 1.014-.404 1.014-1.051 0-.551-.308-1.01-.984-1.01-.58 0-.912.404-.912 1.016 0 .543.32 1.045.882 1.045zM10.135 15.447c.764 0 1.113-.443 1.113-1.154 0-.604-.338-1.109-1.082-1.109-.637 0-1.002.445-1.002 1.115 0 .597.352 1.148.971 1.148zM24 10.201l-3.15.029.83-9.686L1.958 3.605l1.686 6.248H0l3.734 11.488 8.713-1.283v3.396l10.113-4.641L24 10.201zm-9.104-3.594c0-.049.039-.092.088-.094l1.879-.125.446-.029c.524-.035 1.634.063 1.634 1.236 0 .83-.619 1.184-.619 1.184s.75.189.707 1.092c0 1.602-1.943 1.389-1.943 1.389l-.225-.006-1.908-.053a.089.089 0 0 1-.086-.09l.027-4.504zm-3.675.243c0-.047.039-.09.088-.092l3.064-.203a.08.08 0 0 1 .087.08v.943c0 .049-.039.09-.087.092l-1.9.08a.094.094 0 0 0-.088.09l-.005.394a.083.083 0 0 0 .086.084l1.646-.066a.082.082 0 0 1 .086.084l-.02 1.012a.089.089 0 0 1-.089.086h-1.63a.089.089 0 0 0-.088.088v.416c0 .047.039.088.088.088l1.87.033a.09.09 0 0 1 .087.09v.951a.084.084 0 0 1-.087.084l-3.063-.123a.09.09 0 0 1-.087-.09l.042-4.121zm-6.01.312l.975-.064a.101.101 0 0 1 .105.08l.458 2.205c.01.047.027.047.039 0l.576-2.281a.132.132 0 0 1 .108-.09l.921-.061a.108.108 0 0 1 .109.078l.564 2.342c.012.047.029.047.041 0l.6-2.424a.131.131 0 0 1 .108-.092l.996-.064c.048-.004.077.031.065.078l-1.09 4.104a.113.113 0 0 1-.109.082l-1.121-.031a.12.12 0 0 1-.109-.086l-.535-1.965c-.012-.047-.033-.047-.045 0l-.522 1.934a.12.12 0 0 1-.11.082l-1.109-.031a.123.123 0 0 1-.108-.088l-.873-3.618c-.011-.047.019-.088.066-.09zm-.288 9.623v-3.561a.089.089 0 0 0-.087-.088l-1.252-.029a.095.095 0 0 1-.091-.09l-.046-1.125a.082.082 0 0 1 .083-.086l4.047.096c.048 0 .087.041.085.088l-.022 1.088a.093.093 0 0 1-.089.088l-1.139.004a.09.09 0 0 0-.087.088v3.447c0 .049-.039.09-.087.092l-1.227.07a.08.08 0 0 1-.088-.082zm2.834-2.379c0-1.918 1.321-2.482 2.416-2.482s2.339.73 2.339 2.316c0 1.9-1.383 2.482-2.416 2.482-1.033.001-2.339-.724-2.339-2.316zm5.139-.115c0-1.746 1.166-2.238 2.162-2.238s2.129.664 2.129 2.107c0 1.729-1.259 2.26-2.198 2.26s-2.093-.68-2.093-2.129zm7.259 1.711a.175.175 0 0 1-.139-.064l-1.187-1.631c-.029-.039-.053-.031-.053.018v1.67c0 .047-.039.09-.086.092l-1.052.061a.082.082 0 0 1-.087-.082l.039-3.842c0-.047.039-.086.088-.084l.881.02a.2.2 0 0 1 .137.074l1.293 1.902c.027.041.051.033.051-.014l.032-1.846a.087.087 0 0 1 .089-.086l.963.029c.047 0 .085.041.083.09l-.138 3.555a.097.097 0 0 1-.091.092l-.823.046zM16.258 8.23l.724-.014s.47.018.47-.434c0-.357-.411-.33-.411-.33l-.782.008a.09.09 0 0 0-.088.088v.598a.083.083 0 0 0 .087.084zM16.229 10.191h.99c.024 0 .35-.051.35-.404 0-.293-.229-.402-.441-.398l-.898.029a.089.089 0 0 0-.087.09v.596a.086.086 0 0 0 .086.087z" }) + ] + } + ); +}); + +export { SiWebtoon as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.cjs new file mode 100644 index 000000000..c0b27dfce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2694E8"; +const SiWebtrees = React__namespace.forwardRef(function SiWebtrees2({ title = "webtrees", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.957 4.34q.647 0 1.269.243.634.243 1.093.7.459.448.662 1l1.592 4.59 1.31-3.82Q9.84 4.26 11.92 4.26q.459 0 1.106.203.729.23 1.228.809.5.58.905 1.782l1.296 3.82 1.606-4.59q.189-.54.649-.998.472-.459 1.079-.703.608-.243 1.283-.243.62.04 1.241.338.783.378 1.228 1.106.459.73.459 1.66 0 .81-.364 1.54l-4.225 8.652q-1.025 2.106-3.037 2.106-.905-.04-1.634-.567-.728-.54-1.133-1.498L12 13.72l-1.606 3.955q-.243.634-.647 1.093-.406.447-.945.702-.54.257-1.134.27-1.013 0-1.755-.486-.742-.5-1.297-1.62L.392 8.983Q0 8.16 0 7.443q0-.89.46-1.632.459-.756 1.254-1.134.622-.297 1.243-.337Z" }) + ] + } + ); +}); + +exports.default = SiWebtrees; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.d.ts new file mode 100644 index 000000000..0da81315a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2694E8"; +declare const SiWebtrees: IconType; +export { SiWebtrees as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.mjs new file mode 100644 index 000000000..9d8327779 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWebtrees.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2694E8"; +const SiWebtrees = React.forwardRef(function SiWebtrees2({ title = "webtrees", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.957 4.34q.647 0 1.269.243.634.243 1.093.7.459.448.662 1l1.592 4.59 1.31-3.82Q9.84 4.26 11.92 4.26q.459 0 1.106.203.729.23 1.228.809.5.58.905 1.782l1.296 3.82 1.606-4.59q.189-.54.649-.998.472-.459 1.079-.703.608-.243 1.283-.243.62.04 1.241.338.783.378 1.228 1.106.459.73.459 1.66 0 .81-.364 1.54l-4.225 8.652q-1.025 2.106-3.037 2.106-.905-.04-1.634-.567-.728-.54-1.133-1.498L12 13.72l-1.606 3.955q-.243.634-.647 1.093-.406.447-.945.702-.54.257-1.134.27-1.013 0-1.755-.486-.742-.5-1.297-1.62L.392 8.983Q0 8.16 0 7.443q0-.89.46-1.632.459-.756 1.254-1.134.622-.297 1.243-.337Z" }) + ] + } + ); +}); + +export { SiWebtrees as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.cjs new file mode 100644 index 000000000..58d1c9b82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#07C160"; +const SiWechat = React__namespace.forwardRef(function SiWechat2({ title = "WeChat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 0 1 .213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.326.326 0 0 0 .167-.054l1.903-1.114a.864.864 0 0 1 .717-.098 10.16 10.16 0 0 0 2.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348zM5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178A1.17 1.17 0 0 1 4.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178 1.17 1.17 0 0 1-1.162-1.178c0-.651.52-1.18 1.162-1.18zm5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.722.722 0 0 1 .598.082l1.584.926a.272.272 0 0 0 .14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.327-1.233a.582.582 0 0 1-.023-.156.49.49 0 0 1 .201-.398C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.088V8.89c-.135-.01-.27-.027-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.969-.982z" }) + ] + } + ); +}); + +exports.default = SiWechat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.d.ts new file mode 100644 index 000000000..ddeb8741a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#07C160"; +declare const SiWechat: IconType; +export { SiWechat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.mjs new file mode 100644 index 000000000..9eacda1f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWechat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#07C160"; +const SiWechat = React.forwardRef(function SiWechat2({ title = "WeChat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 0 1 .213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.326.326 0 0 0 .167-.054l1.903-1.114a.864.864 0 0 1 .717-.098 10.16 10.16 0 0 0 2.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348zM5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178A1.17 1.17 0 0 1 4.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178 1.17 1.17 0 0 1-1.162-1.178c0-.651.52-1.18 1.162-1.18zm5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.722.722 0 0 1 .598.082l1.584.926a.272.272 0 0 0 .14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.327-1.233a.582.582 0 0 1-.023-.156.49.49 0 0 1 .201-.398C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.088V8.89c-.135-.01-.27-.027-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.969-.982z" }) + ] + } + ); +}); + +export { SiWechat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.cjs new file mode 100644 index 000000000..ef51da286 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FAAB00"; +const SiWegame = React__namespace.forwardRef(function SiWegame2({ title = "WeGame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.458 11.005c-.024-.179-.078-.632-.165-1.08a8.082 8.082 0 0 0-.255-1.006l-.005-.015a1.87 1.87 0 0 0-.151-.315 1.224 1.224 0 0 0-.317-.354 1.57 1.57 0 0 0-1.412-.138 2.029 2.029 0 0 0-.861 1.064c-.238.465-.475.93-.742 1.378a2.617 2.617 0 0 1-.572.7 1.33 1.33 0 0 1-.367.215c-.534.2-.91-.08-1.321-.403-.438-.342-.824-.744-1.274-1.073a1.851 1.851 0 0 0-.983-.43c-.637-.003-1.195.619-1.544 1.078-.195.258-.577.779-.775 1.033a3.403 3.403 0 0 1-.454.458 1.169 1.169 0 0 1-.196.138 1.101 1.101 0 0 1-.48.136 1.566 1.566 0 0 1-.869-.263 2.678 2.678 0 0 1-.288-.183l-.035-.027a.469.469 0 0 0-.734.428.392.392 0 0 0 .024.136c0 .003.003.005.004.008a.395.395 0 0 0 .093.14c.608.897 1.47 1.55 2.303 1.564a1.507 1.507 0 0 0 .635-.124c.646-.285 1.13-.903 1.67-1.334a1.314 1.314 0 0 1 .776-.33 1.038 1.038 0 0 1 .63.215 2.122 2.122 0 0 1 .189.144 8.916 8.916 0 0 1 .742.753 9.93 9.93 0 0 0 .9.85 2.53 2.53 0 0 0 1.146.56c.046.007.091.011.136.014a1.522 1.522 0 0 0 1.002-.314 4.176 4.176 0 0 0 .745-.689 6.13 6.13 0 0 0 .463-.664c.07-.112.143-.19.2-.308a5.769 5.769 0 0 1-.065.953 10.09 10.09 0 0 1-.212 1.288q-.062.253-.135.503-.116.397-.262.786a1.906 1.906 0 0 1-.072.188l-.003.007q-.088.23-.192.453a7.005 7.005 0 0 1-12.74-.01q-.106-.225-.195-.459l-.004-.009a10.91 10.91 0 0 1 .426-9.024 13.024 13.024 0 0 1 1.635-2.396 8.352 8.352 0 0 1 2.132-1.946c.03-.017.057-.037.086-.055a4.168 4.168 0 0 1 4.57 0l.086.055a11.285 11.285 0 0 1 1.795 1.588l.002.002.052.053a1.183 1.183 0 0 0 .296.212 1.36 1.36 0 0 0 1.493-.211 1.291 1.291 0 0 0 .137-1.672c-.041-.05-.083-.1-.121-.15a8.076 8.076 0 0 0-.722-.763A14.069 14.069 0 0 0 15.375.9a6.85 6.85 0 0 0-.118-.071A6.126 6.126 0 0 0 12.118 0a5.748 5.748 0 0 0-3.033.841 3.166 3.166 0 0 0-.117.071A12.178 12.178 0 0 0 6.003 3.39a.455.455 0 0 1-.024.025 15.477 15.477 0 0 0-3.578 9.8 16.626 16.626 0 0 0 .359 3.444 9.487 9.487 0 0 0 18.478.017l.028-.13a.097.097 0 0 0 .002-.012l.02-.103a15.856 15.856 0 0 0 .286-2.235q.026-.454.026-.91a18.254 18.254 0 0 0-.142-2.28z" }) + ] + } + ); +}); + +exports.default = SiWegame; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.d.ts new file mode 100644 index 000000000..92928b38f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FAAB00"; +declare const SiWegame: IconType; +export { SiWegame as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.mjs new file mode 100644 index 000000000..65bfd794d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWegame.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FAAB00"; +const SiWegame = React.forwardRef(function SiWegame2({ title = "WeGame", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.458 11.005c-.024-.179-.078-.632-.165-1.08a8.082 8.082 0 0 0-.255-1.006l-.005-.015a1.87 1.87 0 0 0-.151-.315 1.224 1.224 0 0 0-.317-.354 1.57 1.57 0 0 0-1.412-.138 2.029 2.029 0 0 0-.861 1.064c-.238.465-.475.93-.742 1.378a2.617 2.617 0 0 1-.572.7 1.33 1.33 0 0 1-.367.215c-.534.2-.91-.08-1.321-.403-.438-.342-.824-.744-1.274-1.073a1.851 1.851 0 0 0-.983-.43c-.637-.003-1.195.619-1.544 1.078-.195.258-.577.779-.775 1.033a3.403 3.403 0 0 1-.454.458 1.169 1.169 0 0 1-.196.138 1.101 1.101 0 0 1-.48.136 1.566 1.566 0 0 1-.869-.263 2.678 2.678 0 0 1-.288-.183l-.035-.027a.469.469 0 0 0-.734.428.392.392 0 0 0 .024.136c0 .003.003.005.004.008a.395.395 0 0 0 .093.14c.608.897 1.47 1.55 2.303 1.564a1.507 1.507 0 0 0 .635-.124c.646-.285 1.13-.903 1.67-1.334a1.314 1.314 0 0 1 .776-.33 1.038 1.038 0 0 1 .63.215 2.122 2.122 0 0 1 .189.144 8.916 8.916 0 0 1 .742.753 9.93 9.93 0 0 0 .9.85 2.53 2.53 0 0 0 1.146.56c.046.007.091.011.136.014a1.522 1.522 0 0 0 1.002-.314 4.176 4.176 0 0 0 .745-.689 6.13 6.13 0 0 0 .463-.664c.07-.112.143-.19.2-.308a5.769 5.769 0 0 1-.065.953 10.09 10.09 0 0 1-.212 1.288q-.062.253-.135.503-.116.397-.262.786a1.906 1.906 0 0 1-.072.188l-.003.007q-.088.23-.192.453a7.005 7.005 0 0 1-12.74-.01q-.106-.225-.195-.459l-.004-.009a10.91 10.91 0 0 1 .426-9.024 13.024 13.024 0 0 1 1.635-2.396 8.352 8.352 0 0 1 2.132-1.946c.03-.017.057-.037.086-.055a4.168 4.168 0 0 1 4.57 0l.086.055a11.285 11.285 0 0 1 1.795 1.588l.002.002.052.053a1.183 1.183 0 0 0 .296.212 1.36 1.36 0 0 0 1.493-.211 1.291 1.291 0 0 0 .137-1.672c-.041-.05-.083-.1-.121-.15a8.076 8.076 0 0 0-.722-.763A14.069 14.069 0 0 0 15.375.9a6.85 6.85 0 0 0-.118-.071A6.126 6.126 0 0 0 12.118 0a5.748 5.748 0 0 0-3.033.841 3.166 3.166 0 0 0-.117.071A12.178 12.178 0 0 0 6.003 3.39a.455.455 0 0 1-.024.025 15.477 15.477 0 0 0-3.578 9.8 16.626 16.626 0 0 0 .359 3.444 9.487 9.487 0 0 0 18.478.017l.028-.13a.097.097 0 0 0 .002-.012l.02-.103a15.856 15.856 0 0 0 .286-2.235q.026-.454.026-.91a18.254 18.254 0 0 0-.142-2.28z" }) + ] + } + ); +}); + +export { SiWegame as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.cjs new file mode 100644 index 000000000..cc2de769a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFBE00"; +const SiWeightsandbiases = React__namespace.forwardRef(function SiWeightsandbiases2({ title = "Weights & Biases", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.48 0a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zm19.04 0a1.55 1.55 0 1 0 0 3.101 1.55 1.55 0 0 0 0-3.101zM12 2.295a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zM2.48 5.272a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96zm19.04 0a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96zM12 8.496a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zm-9.52 3.907a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zm19.04 0a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.102zM12 13.767a2.48 2.48 0 1 0 0 4.962 2.48 2.48 0 0 0 0-4.962zm-9.52 3.907a2.48 2.48 0 1 0 .001 4.962 2.48 2.48 0 0 0 0-4.962zm19.04.93a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.101zM12 20.9a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1Z" }) + ] + } + ); +}); + +exports.default = SiWeightsandbiases; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.d.ts new file mode 100644 index 000000000..3f079424e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFBE00"; +declare const SiWeightsandbiases: IconType; +export { SiWeightsandbiases as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.mjs new file mode 100644 index 000000000..f5fb54da3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeightsandbiases.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFBE00"; +const SiWeightsandbiases = React.forwardRef(function SiWeightsandbiases2({ title = "Weights & Biases", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.48 0a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zm19.04 0a1.55 1.55 0 1 0 0 3.101 1.55 1.55 0 0 0 0-3.101zM12 2.295a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zM2.48 5.272a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96zm19.04 0a2.48 2.48 0 1 0 0 4.96 2.48 2.48 0 0 0 0-4.96zM12 8.496a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zm-9.52 3.907a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1zm19.04 0a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.102zM12 13.767a2.48 2.48 0 1 0 0 4.962 2.48 2.48 0 0 0 0-4.962zm-9.52 3.907a2.48 2.48 0 1 0 .001 4.962 2.48 2.48 0 0 0 0-4.962zm19.04.93a1.55 1.55 0 1 0 0 3.102 1.55 1.55 0 0 0 0-3.101zM12 20.9a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1Z" }) + ] + } + ); +}); + +export { SiWeightsandbiases as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.cjs new file mode 100644 index 000000000..89d7699c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFCD00"; +const SiWelcometothejungle = React__namespace.forwardRef(function SiWelcometothejungle2({ title = "Welcome to the Jungle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.62 3.783c-1.115-1.811-4.355-2.604-6.713-.265-.132.135-.306.548.218 1.104 1.097 1.149 6.819 7.046 4.702 12.196-1.028 2.504-3.953 2.073-5.052-2.076a23.184 23.184 0 0 1-.473-9.367s.105-.394-.065-.52c-.117-.087-.305-.05-.547.33-.06.096-.048.076-.106.178l-.003.002c-1.622 2.688-3.272 5.874-4.049 7.07.38-1.803-.101-4.283-.85-6.359l-.142-.375c-.692-1.776-1.524-2.974-1.776-3.245-.03-.033-.105-.094-.353-.094H.398c-.49 0-.448.412-.293.561 1.862 2.178 7.289 10.343 4.773 18.355-.194.619.11.944.612.305 2.206-2.81 4.942-7.598 6.925-11.187-.437 1.245-.822 2.63-1.028 4.083-.435 3.064.487 5.37 1.162 6.58.345.619.803.998 1.988.824 6.045-.885 8.06-6.117 8.805-8.77 1.357-4.839.363-7.568-.722-9.33" }) + ] + } + ); +}); + +exports.default = SiWelcometothejungle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.d.ts new file mode 100644 index 000000000..7e894e79e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFCD00"; +declare const SiWelcometothejungle: IconType; +export { SiWelcometothejungle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.mjs new file mode 100644 index 000000000..2292e36e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWelcometothejungle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFCD00"; +const SiWelcometothejungle = React.forwardRef(function SiWelcometothejungle2({ title = "Welcome to the Jungle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.62 3.783c-1.115-1.811-4.355-2.604-6.713-.265-.132.135-.306.548.218 1.104 1.097 1.149 6.819 7.046 4.702 12.196-1.028 2.504-3.953 2.073-5.052-2.076a23.184 23.184 0 0 1-.473-9.367s.105-.394-.065-.52c-.117-.087-.305-.05-.547.33-.06.096-.048.076-.106.178l-.003.002c-1.622 2.688-3.272 5.874-4.049 7.07.38-1.803-.101-4.283-.85-6.359l-.142-.375c-.692-1.776-1.524-2.974-1.776-3.245-.03-.033-.105-.094-.353-.094H.398c-.49 0-.448.412-.293.561 1.862 2.178 7.289 10.343 4.773 18.355-.194.619.11.944.612.305 2.206-2.81 4.942-7.598 6.925-11.187-.437 1.245-.822 2.63-1.028 4.083-.435 3.064.487 5.37 1.162 6.58.345.619.803.998 1.988.824 6.045-.885 8.06-6.117 8.805-8.77 1.357-4.839.363-7.568-.722-9.33" }) + ] + } + ); +}); + +export { SiWelcometothejungle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.cjs new file mode 100644 index 000000000..7326d3167 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWellfound = React__namespace.forwardRef(function SiWellfound2({ title = "Wellfound", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.998 8.128c.063-1.379-1.612-2.376-2.795-1.664-1.23.598-1.322 2.52-.156 3.234 1.2.862 2.995-.09 2.951-1.57zm0 7.748c.063-1.38-1.612-2.377-2.795-1.665-1.23.598-1.322 2.52-.156 3.234 1.2.863 2.995-.09 2.951-1.57zm-20.5 1.762L0 6.364h3.257l2.066 8.106 2.245-8.106h3.267l2.244 8.106 2.065-8.106h3.257l-3.54 11.274H11.39c-.73-2.713-1.46-5.426-2.188-8.14l-2.233 8.14H3.5z" }) + ] + } + ); +}); + +exports.default = SiWellfound; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.d.ts new file mode 100644 index 000000000..d61b3c861 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWellfound: IconType; +export { SiWellfound as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.mjs new file mode 100644 index 000000000..29ef255f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWellfound.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWellfound = React.forwardRef(function SiWellfound2({ title = "Wellfound", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.998 8.128c.063-1.379-1.612-2.376-2.795-1.664-1.23.598-1.322 2.52-.156 3.234 1.2.862 2.995-.09 2.951-1.57zm0 7.748c.063-1.38-1.612-2.377-2.795-1.665-1.23.598-1.322 2.52-.156 3.234 1.2.863 2.995-.09 2.951-1.57zm-20.5 1.762L0 6.364h3.257l2.066 8.106 2.245-8.106h3.267l2.244 8.106 2.065-8.106h3.257l-3.54 11.274H11.39c-.73-2.713-1.46-5.426-2.188-8.14l-2.233 8.14H3.5z" }) + ] + } + ); +}); + +export { SiWellfound as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.cjs new file mode 100644 index 000000000..933f76667 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#D71E28"; +const SiWellsfargo = React__namespace.forwardRef(function SiWellsfargo2({ title = "Wells Fargo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.136 13.949c0 .392-.245.616-.719.616h-.628v-1.226h.628c.48 0 .72.212.72.61zM6.922 15.06h1.044l-.523-1.443-.521 1.443zm12.46-1.82c-.72 0-1.109.562-1.109 1.526 0 .97.384 1.526 1.108 1.526.725 0 1.108-.556 1.108-1.526 0-.964-.389-1.526-1.108-1.526zM23.73 0v24H.269V0h23.462zm-5.548 10.652c.484.245.948.354 1.571.354.895 0 1.481-.458 1.481-1.171 0-.6-.357-1.014-1.028-1.172l-.677-.158c-.394-.092-.559-.25-.559-.517 0-.322.25-.523.74-.523s.778.18.89.604l.048.186h.383v-.943a2.927 2.927 0 0 0-1.352-.338c-.911 0-1.497.447-1.497 1.166 0 .556.34.965.996 1.112l.676.152c.432.099.592.273.592.562 0 .354-.261.55-.784.55-.59 0-.894-.24-1.027-.697l-.07-.235h-.383v1.068zm-3.378.245h3.02V9.595h-.383l-.043.19c-.106.486-.255.638-.607.638h-.74V7.557h.506v-.474h-1.753v.474h.453v2.866h-.453v.474zm-3.355 0h3.02V9.595h-.384l-.042.19c-.107.486-.256.638-.608.638h-.74V7.557h.506v-.474H11.45v.474h.452v2.866h-.452v.474zm-8.758-3.34.938 3.34h.74l.778-2.768.756 2.768h.74l.932-3.34h.736v2.866h-.453v.474h3.201V9.595h-.383l-.043.19c-.106.486-.26.638-.607.638h-.922V9.241h1.071a.58.58 0 0 0 .059-.273.55.55 0 0 0-.059-.26h-1.07v-1.15h.884c.357 0 .48.157.596.615l.038.147h.383V7.083H6.49v.474h.522l-.613 2.305-.762-2.779h-.766l-.746 2.774-.624-2.3h.501v-.474H2.266v.474h.426zm1.412 7.002v-1.22h.947c.358 0 .48.158.597.615l.038.147h.383v-1.236H2.857v.474h.453v2.866h-.453v.474h1.78v-.474h-.533v-1.112H5.2a.58.58 0 0 0 .058-.272.551.551 0 0 0-.058-.262H4.104zm9.114 1.913a.461.461 0 0 0-.048-.224.663.663 0 0 1-.112.011c-.245 0-.309-.142-.34-.458l-.022-.201c-.048-.43-.245-.708-.73-.746v-.017c.48-.022.975-.349.975-.964 0-.621-.496-1.008-1.257-1.008H9.542v.474h.453v2.866H9.26l-1.332-3.34H7.22l-1.305 3.34h-.373v.474h1.412v-.474h-.448l.245-.682h1.385l.245.682h-.437v.474h3.35v-.474h-.505v-1.16h.293c.586 0 .761.212.826.762l.02.19c.06.507.31.725.826.725.15 0 .299-.01.416-.027a.46.46 0 0 0 .048-.223zm3.633-1.788h-1.417a.52.52 0 0 0-.059.256c0 .11.016.18.059.268h.634v.964a1.598 1.598 0 0 1-.629.125c-.767 0-1.166-.56-1.166-1.53s.4-1.532 1.124-1.532c.485 0 .767.245.932.67l.058.153h.384v-.976a3.063 3.063 0 0 0-1.412-.337c-1.172 0-1.96.8-1.96 2.027 0 1.231.767 2.016 1.96 2.016.474 0 .964-.136 1.492-.404v-1.7zm4.512.082c0-1.182-.831-2.021-1.982-2.021-1.145 0-1.981.839-1.981 2.021 0 1.188.83 2.022 1.981 2.022 1.156 0 1.982-.834 1.982-2.022z" }) + ] + } + ); +}); + +exports.default = SiWellsfargo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.d.ts new file mode 100644 index 000000000..57e2efae0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#D71E28"; +declare const SiWellsfargo: IconType; +export { SiWellsfargo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.mjs new file mode 100644 index 000000000..ee3b9df80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWellsfargo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#D71E28"; +const SiWellsfargo = React.forwardRef(function SiWellsfargo2({ title = "Wells Fargo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.136 13.949c0 .392-.245.616-.719.616h-.628v-1.226h.628c.48 0 .72.212.72.61zM6.922 15.06h1.044l-.523-1.443-.521 1.443zm12.46-1.82c-.72 0-1.109.562-1.109 1.526 0 .97.384 1.526 1.108 1.526.725 0 1.108-.556 1.108-1.526 0-.964-.389-1.526-1.108-1.526zM23.73 0v24H.269V0h23.462zm-5.548 10.652c.484.245.948.354 1.571.354.895 0 1.481-.458 1.481-1.171 0-.6-.357-1.014-1.028-1.172l-.677-.158c-.394-.092-.559-.25-.559-.517 0-.322.25-.523.74-.523s.778.18.89.604l.048.186h.383v-.943a2.927 2.927 0 0 0-1.352-.338c-.911 0-1.497.447-1.497 1.166 0 .556.34.965.996 1.112l.676.152c.432.099.592.273.592.562 0 .354-.261.55-.784.55-.59 0-.894-.24-1.027-.697l-.07-.235h-.383v1.068zm-3.378.245h3.02V9.595h-.383l-.043.19c-.106.486-.255.638-.607.638h-.74V7.557h.506v-.474h-1.753v.474h.453v2.866h-.453v.474zm-3.355 0h3.02V9.595h-.384l-.042.19c-.107.486-.256.638-.608.638h-.74V7.557h.506v-.474H11.45v.474h.452v2.866h-.452v.474zm-8.758-3.34.938 3.34h.74l.778-2.768.756 2.768h.74l.932-3.34h.736v2.866h-.453v.474h3.201V9.595h-.383l-.043.19c-.106.486-.26.638-.607.638h-.922V9.241h1.071a.58.58 0 0 0 .059-.273.55.55 0 0 0-.059-.26h-1.07v-1.15h.884c.357 0 .48.157.596.615l.038.147h.383V7.083H6.49v.474h.522l-.613 2.305-.762-2.779h-.766l-.746 2.774-.624-2.3h.501v-.474H2.266v.474h.426zm1.412 7.002v-1.22h.947c.358 0 .48.158.597.615l.038.147h.383v-1.236H2.857v.474h.453v2.866h-.453v.474h1.78v-.474h-.533v-1.112H5.2a.58.58 0 0 0 .058-.272.551.551 0 0 0-.058-.262H4.104zm9.114 1.913a.461.461 0 0 0-.048-.224.663.663 0 0 1-.112.011c-.245 0-.309-.142-.34-.458l-.022-.201c-.048-.43-.245-.708-.73-.746v-.017c.48-.022.975-.349.975-.964 0-.621-.496-1.008-1.257-1.008H9.542v.474h.453v2.866H9.26l-1.332-3.34H7.22l-1.305 3.34h-.373v.474h1.412v-.474h-.448l.245-.682h1.385l.245.682h-.437v.474h3.35v-.474h-.505v-1.16h.293c.586 0 .761.212.826.762l.02.19c.06.507.31.725.826.725.15 0 .299-.01.416-.027a.46.46 0 0 0 .048-.223zm3.633-1.788h-1.417a.52.52 0 0 0-.059.256c0 .11.016.18.059.268h.634v.964a1.598 1.598 0 0 1-.629.125c-.767 0-1.166-.56-1.166-1.53s.4-1.532 1.124-1.532c.485 0 .767.245.932.67l.058.153h.384v-.976a3.063 3.063 0 0 0-1.412-.337c-1.172 0-1.96.8-1.96 2.027 0 1.231.767 2.016 1.96 2.016.474 0 .964-.136 1.492-.404v-1.7zm4.512.082c0-1.182-.831-2.021-1.982-2.021-1.145 0-1.981.839-1.981 2.021 0 1.188.83 2.022 1.981 2.022 1.156 0 1.982-.834 1.982-2.022z" }) + ] + } + ); +}); + +export { SiWellsfargo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.cjs new file mode 100644 index 000000000..9aa41ee89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#72D44C"; +const SiWemo = React__namespace.forwardRef(function SiWemo2({ title = "WEMO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.3014 0C1.925 0 0 1.9254 0 4.302v15.3965C0 22.0728 1.925 24 4.3014 24H19.697c2.3757 0 4.3026-1.9272 4.3026-4.3015H24V4.3019C24 1.9258 22.0731 0 19.6974 0zm12.912 4.1665c2.0881 0 3.7885 1.621 3.7885 3.6134 0 .0947-.004.1877-.011.2799l-.0157.1756H14.651l.1142.3244c.3537.9944 1.337 1.6628 2.4478 1.6628.8293 0 1.6137-.383 2.0992-1.0237l.109-.1462.9896.6745-.12.1603c-.7109.9427-1.8618 1.5054-3.0775 1.5054-2.0907 0-3.7912-1.6207-3.7912-3.613 0-1.9924 1.7005-3.6134 3.7912-3.6134zm-13.9374.132h1.2095V8.729c0 .7302.5934 1.3236 1.324 1.3236.7298 0 1.3243-.5934 1.3243-1.3236V4.2986h1.2069v4.4303c0 .7302.5941 1.3236 1.3247 1.3236.7298 0 1.3236-.5934 1.3236-1.3236V4.2986h1.2095v4.4303c0 1.3964-1.136 2.5319-2.5331 2.5319-.648 0-1.2892-.26-1.7604-.7137l-.1683-.1624-.168.1624c-.4712.4537-1.112.7137-1.7592.7137-1.3971 0-2.5335-1.1355-2.5335-2.532zm13.9373 1.0248c-.987 0-1.8822.5172-2.3362 1.3484l-.1946.3586h5.0588l-.1946-.3586c-.4536-.8315-1.3478-1.3484-2.3334-1.3484zm-.0015 7.2326c2.0893 0 3.7895 1.6217 3.7895 3.6137 0 1.993-1.7002 3.6138-3.7895 3.6138-2.0903 0-3.789-1.621-3.789-3.6138 0-1.992 1.699-3.6137 3.789-3.6137zm-11.403.1328c.6482 0 1.2906.2597 1.7618.7134l.1668.1624.1687-.1624c.4719-.4537 1.1125-.7134 1.7593-.7134 1.396 0 2.5323 1.1363 2.5323 2.532v4.4303h-1.208v-4.4303c0-.7302-.5945-1.3247-1.324-1.3247-.7309 0-1.3243.5945-1.3243 1.3247v4.4303H7.1338v-4.4303c0-.7302-.5934-1.3247-1.325-1.3247-.7295 0-1.323.5945-1.323 1.3247v4.4303h-1.209v-4.4303c0-1.3953 1.1367-2.532 2.532-2.532zm11.403 1.0383c-1.422 0-2.579 1.096-2.579 2.443 0 1.3466 1.157 2.4423 2.579 2.4423 1.4224 0 2.5782-1.0957 2.5782-2.4423 0-1.347-1.1561-2.443-2.5782-2.443Z" }) + ] + } + ); +}); + +exports.default = SiWemo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.d.ts new file mode 100644 index 000000000..7f158c06b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#72D44C"; +declare const SiWemo: IconType; +export { SiWemo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.mjs new file mode 100644 index 000000000..5b5f3e590 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWemo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#72D44C"; +const SiWemo = React.forwardRef(function SiWemo2({ title = "WEMO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.3014 0C1.925 0 0 1.9254 0 4.302v15.3965C0 22.0728 1.925 24 4.3014 24H19.697c2.3757 0 4.3026-1.9272 4.3026-4.3015H24V4.3019C24 1.9258 22.0731 0 19.6974 0zm12.912 4.1665c2.0881 0 3.7885 1.621 3.7885 3.6134 0 .0947-.004.1877-.011.2799l-.0157.1756H14.651l.1142.3244c.3537.9944 1.337 1.6628 2.4478 1.6628.8293 0 1.6137-.383 2.0992-1.0237l.109-.1462.9896.6745-.12.1603c-.7109.9427-1.8618 1.5054-3.0775 1.5054-2.0907 0-3.7912-1.6207-3.7912-3.613 0-1.9924 1.7005-3.6134 3.7912-3.6134zm-13.9374.132h1.2095V8.729c0 .7302.5934 1.3236 1.324 1.3236.7298 0 1.3243-.5934 1.3243-1.3236V4.2986h1.2069v4.4303c0 .7302.5941 1.3236 1.3247 1.3236.7298 0 1.3236-.5934 1.3236-1.3236V4.2986h1.2095v4.4303c0 1.3964-1.136 2.5319-2.5331 2.5319-.648 0-1.2892-.26-1.7604-.7137l-.1683-.1624-.168.1624c-.4712.4537-1.112.7137-1.7592.7137-1.3971 0-2.5335-1.1355-2.5335-2.532zm13.9373 1.0248c-.987 0-1.8822.5172-2.3362 1.3484l-.1946.3586h5.0588l-.1946-.3586c-.4536-.8315-1.3478-1.3484-2.3334-1.3484zm-.0015 7.2326c2.0893 0 3.7895 1.6217 3.7895 3.6137 0 1.993-1.7002 3.6138-3.7895 3.6138-2.0903 0-3.789-1.621-3.789-3.6138 0-1.992 1.699-3.6137 3.789-3.6137zm-11.403.1328c.6482 0 1.2906.2597 1.7618.7134l.1668.1624.1687-.1624c.4719-.4537 1.1125-.7134 1.7593-.7134 1.396 0 2.5323 1.1363 2.5323 2.532v4.4303h-1.208v-4.4303c0-.7302-.5945-1.3247-1.324-1.3247-.7309 0-1.3243.5945-1.3243 1.3247v4.4303H7.1338v-4.4303c0-.7302-.5934-1.3247-1.325-1.3247-.7295 0-1.323.5945-1.323 1.3247v4.4303h-1.209v-4.4303c0-1.3953 1.1367-2.532 2.532-2.532zm11.403 1.0383c-1.422 0-2.579 1.096-2.579 2.443 0 1.3466 1.157 2.4423 2.579 2.4423 1.4224 0 2.5782-1.0957 2.5782-2.4423 0-1.347-1.1561-2.443-2.5782-2.443Z" }) + ] + } + ); +}); + +export { SiWemo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.cjs new file mode 100644 index 000000000..41536eeff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#37A7FF"; +const SiWeread = React__namespace.forwardRef(function SiWeread2({ title = "WeRead", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.12 0A5.11 5.11 0 0 0 0 5.12v13.76A5.11 5.11 0 0 0 5.12 24h13.76A5.11 5.11 0 0 0 24 18.88V5.12A5.11 5.11 0 0 0 18.88 0Zm12.954 10.24c2.04 0 3.694 1.39 3.694 3.107 0 1.716-1.653 3.107-3.694 3.107-.43 0-.842-.063-1.226-.177a.37.37 0 0 0-.29.032l-.794.463a.123.123 0 0 1-.18-.14l.177-.668a.25.25 0 0 0-.098-.267c-.785-.57-1.284-1.41-1.284-2.35 0-1.716 1.655-3.107 3.695-3.107m-1.231 1.616a.495.495 0 0 0-.493.497c0 .274.22.497.493.497a.495.495 0 0 0 .492-.497.495.495 0 0 0-.492-.497m2.462 0a.495.495 0 0 0-.492.497c0 .274.22.497.492.497a.495.495 0 0 0 .493-.497.495.495 0 0 0-.493-.497M18.08 18.88h5.12c0 2.4-1.92 4.32-4.32 4.32H5.12C2.72 23.2.8 21.28.8 18.88h5.12c1.6 0 3.914-.012 5.28 1.28.489.462.677 1.17.798 1.17.12 0 .292-.671.802-1.17 1.305-1.275 3.215-1.28 5.28-1.28" }) + ] + } + ); +}); + +exports.default = SiWeread; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.d.ts new file mode 100644 index 000000000..e3e598342 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#37A7FF"; +declare const SiWeread: IconType; +export { SiWeread as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.mjs new file mode 100644 index 000000000..5ce64dc0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWeread.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#37A7FF"; +const SiWeread = React.forwardRef(function SiWeread2({ title = "WeRead", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.12 0A5.11 5.11 0 0 0 0 5.12v13.76A5.11 5.11 0 0 0 5.12 24h13.76A5.11 5.11 0 0 0 24 18.88V5.12A5.11 5.11 0 0 0 18.88 0Zm12.954 10.24c2.04 0 3.694 1.39 3.694 3.107 0 1.716-1.653 3.107-3.694 3.107-.43 0-.842-.063-1.226-.177a.37.37 0 0 0-.29.032l-.794.463a.123.123 0 0 1-.18-.14l.177-.668a.25.25 0 0 0-.098-.267c-.785-.57-1.284-1.41-1.284-2.35 0-1.716 1.655-3.107 3.695-3.107m-1.231 1.616a.495.495 0 0 0-.493.497c0 .274.22.497.493.497a.495.495 0 0 0 .492-.497.495.495 0 0 0-.492-.497m2.462 0a.495.495 0 0 0-.492.497c0 .274.22.497.492.497a.495.495 0 0 0 .493-.497.495.495 0 0 0-.493-.497M18.08 18.88h5.12c0 2.4-1.92 4.32-4.32 4.32H5.12C2.72 23.2.8 21.28.8 18.88h5.12c1.6 0 3.914-.012 5.28 1.28.489.462.677 1.17.798 1.17.12 0 .292-.671.802-1.17 1.305-1.275 3.215-1.28 5.28-1.28" }) + ] + } + ); +}); + +export { SiWeread as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.cjs new file mode 100644 index 000000000..73ae1f434 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFDD00"; +const SiWesternunion = React__namespace.forwardRef(function SiWesternunion2({ title = "Western Union", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.799 5.188h5.916L24 9.155l-4.643 8.043c-1.246 2.153-3.28 2.153-4.526 0L7.893 5.188h5.919l4.273 7.39a1.127 1.127 0 0 0 1.981.002l-4.267-7.392ZM0 5.188h5.921l6.237 10.802-.697 1.204c-1.246 2.153-3.285 2.153-4.531 0L0 5.188Z" }) + ] + } + ); +}); + +exports.default = SiWesternunion; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.d.ts new file mode 100644 index 000000000..7f8be4c6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFDD00"; +declare const SiWesternunion: IconType; +export { SiWesternunion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.mjs new file mode 100644 index 000000000..70160287a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWesternunion.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFDD00"; +const SiWesternunion = React.forwardRef(function SiWesternunion2({ title = "Western Union", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.799 5.188h5.916L24 9.155l-4.643 8.043c-1.246 2.153-3.28 2.153-4.526 0L7.893 5.188h5.919l4.273 7.39a1.127 1.127 0 0 0 1.981.002l-4.267-7.392ZM0 5.188h5.921l6.237 10.802-.697 1.204c-1.246 2.153-3.285 2.153-4.531 0L0 5.188Z" }) + ] + } + ); +}); + +export { SiWesternunion as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.cjs new file mode 100644 index 000000000..aea3064fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#409FFF"; +const SiWetransfer = React__namespace.forwardRef(function SiWetransfer2({ title = "WeTransfer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.855 11.891c0-3.382 2.4-5.4 5.51-5.4C22.145 6.491 24 7.91 24 9.873c0 1.855-1.582 3.055-3.328 3.055-.982 0-1.69-.164-2.182-.546-.163-.164-.272-.109-.272.055 0 .709.272 1.254.709 1.745.382.382 1.09.655 1.745.655.71 0 1.31-.164 1.855-.437.545-.272.982-.163 1.254.273.328.49-.109 1.145-.49 1.582-.71.763-2.073 1.309-3.819 1.309-3.545-.11-5.618-2.51-5.618-5.673zm-7.254 2.237c.327 0 .545.163.763.545l.982 1.582c.382.6.709 1.036 1.418 1.036.71 0 1.091-.273 1.418-1.09a21.11 21.11 0 001.31-3.873c.49-1.855.709-2.946.709-3.873s-.273-1.473-1.31-1.637c-1.363-.272-3.272-.381-5.29-.381-2.019 0-3.928.109-5.291.327C.273 6.982 0 7.528 0 8.454c0 .928.219 2.019.655 3.874a28.714 28.714 0 001.31 3.872c.381.818.708 1.091 1.417 1.091.71 0 1.037-.436 1.419-1.036l.981-1.582c.273-.327.491-.545.819-.545z" }) + ] + } + ); +}); + +exports.default = SiWetransfer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.d.ts new file mode 100644 index 000000000..c1c3d1aa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#409FFF"; +declare const SiWetransfer: IconType; +export { SiWetransfer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.mjs new file mode 100644 index 000000000..7b7ab0b6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWetransfer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#409FFF"; +const SiWetransfer = React.forwardRef(function SiWetransfer2({ title = "WeTransfer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.855 11.891c0-3.382 2.4-5.4 5.51-5.4C22.145 6.491 24 7.91 24 9.873c0 1.855-1.582 3.055-3.328 3.055-.982 0-1.69-.164-2.182-.546-.163-.164-.272-.109-.272.055 0 .709.272 1.254.709 1.745.382.382 1.09.655 1.745.655.71 0 1.31-.164 1.855-.437.545-.272.982-.163 1.254.273.328.49-.109 1.145-.49 1.582-.71.763-2.073 1.309-3.819 1.309-3.545-.11-5.618-2.51-5.618-5.673zm-7.254 2.237c.327 0 .545.163.763.545l.982 1.582c.382.6.709 1.036 1.418 1.036.71 0 1.091-.273 1.418-1.09a21.11 21.11 0 001.31-3.873c.49-1.855.709-2.946.709-3.873s-.273-1.473-1.31-1.637c-1.363-.272-3.272-.381-5.29-.381-2.019 0-3.928.109-5.291.327C.273 6.982 0 7.528 0 8.454c0 .928.219 2.019.655 3.874a28.714 28.714 0 001.31 3.872c.381.818.708 1.091 1.417 1.091.71 0 1.037-.436 1.419-1.036l.981-1.582c.273-.327.491-.545.819-.545z" }) + ] + } + ); +}); + +export { SiWetransfer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.cjs new file mode 100644 index 000000000..3d435e67f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4E49EE"; +const SiWezterm = React__namespace.forwardRef(function SiWezterm2({ title = "WezTerm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.27 8.524c0-.623.62-1.007 2.123-1.007l-.5 2.757c-.931-.623-1.624-1.199-1.624-1.75zm4.008 6.807c0 .647-.644 1.079-2.123 1.15l.524-2.924c.931.624 1.6 1.175 1.6 1.774zm-2.625 5.992.454-2.708c3.603-.336 5.01-1.798 5.01-3.404 0-1.653-2.004-2.948-3.841-4.074l.668-3.548c.764.072 1.67.216 2.744.432l.31-2.469c-.81-.12-1.575-.168-2.29-.216L8.257 2.7l-2.363-.024-.453 2.684C1.838 5.648.43 7.158.43 8.764c0 1.63 2.004 2.876 3.841 3.954l-.668 3.716c-.859-.048-1.908-.192-3.125-.408L0 18.495c1.026.12 1.98.192 2.84.216l-.525 2.588zm15.553-1.894h2.673c.334-2.804.81-8.46 1.121-14.86h-2.553c-.071 1.51-.334 10.498-.43 11.241h-.071c-.644-2.42-1.169-4.386-1.813-6.782h-1.456c-.62 2.396-1.05 4.194-1.694 6.782h-.096c-.071-.743-.477-9.73-.525-11.24h-2.648c.31 6.399.763 12.055 1.097 14.86h2.625l1.838-7.12z" }) + ] + } + ); +}); + +exports.default = SiWezterm; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.d.ts new file mode 100644 index 000000000..b4e9ba52d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4E49EE"; +declare const SiWezterm: IconType; +export { SiWezterm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.mjs new file mode 100644 index 000000000..211286084 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWezterm.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4E49EE"; +const SiWezterm = React.forwardRef(function SiWezterm2({ title = "WezTerm", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.27 8.524c0-.623.62-1.007 2.123-1.007l-.5 2.757c-.931-.623-1.624-1.199-1.624-1.75zm4.008 6.807c0 .647-.644 1.079-2.123 1.15l.524-2.924c.931.624 1.6 1.175 1.6 1.774zm-2.625 5.992.454-2.708c3.603-.336 5.01-1.798 5.01-3.404 0-1.653-2.004-2.948-3.841-4.074l.668-3.548c.764.072 1.67.216 2.744.432l.31-2.469c-.81-.12-1.575-.168-2.29-.216L8.257 2.7l-2.363-.024-.453 2.684C1.838 5.648.43 7.158.43 8.764c0 1.63 2.004 2.876 3.841 3.954l-.668 3.716c-.859-.048-1.908-.192-3.125-.408L0 18.495c1.026.12 1.98.192 2.84.216l-.525 2.588zm15.553-1.894h2.673c.334-2.804.81-8.46 1.121-14.86h-2.553c-.071 1.51-.334 10.498-.43 11.241h-.071c-.644-2.42-1.169-4.386-1.813-6.782h-1.456c-.62 2.396-1.05 4.194-1.694 6.782h-.096c-.071-.743-.477-9.73-.525-11.24h-2.648c.31 6.399.763 12.055 1.097 14.86h2.625l1.838-7.12z" }) + ] + } + ); +}); + +export { SiWezterm as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.cjs new file mode 100644 index 000000000..6cd7cabdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40E0D0"; +const SiWgpu = React__namespace.forwardRef(function SiWgpu2({ title = "wgpu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.9999 2.0001 0 22h8.0001L12 15.0002l3.9999 6.9997H24L20.0001 2l-5.0003 8L12 6 9.0002 9.9999Z" }) + ] + } + ); +}); + +exports.default = SiWgpu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.d.ts new file mode 100644 index 000000000..7f86b1150 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40E0D0"; +declare const SiWgpu: IconType; +export { SiWgpu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.mjs new file mode 100644 index 000000000..13b81b3d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWgpu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40E0D0"; +const SiWgpu = React.forwardRef(function SiWgpu2({ title = "wgpu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.9999 2.0001 0 22h8.0001L12 15.0002l3.9999 6.9997H24L20.0001 2l-5.0003 8L12 6 9.0002 9.9999Z" }) + ] + } + ); +}); + +export { SiWgpu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.cjs new file mode 100644 index 000000000..815a6ef67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E11F26"; +const SiWhat3words = React__namespace.forwardRef(function SiWhat3words2({ title = "what3words", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v24h24V0zm13.515 6.75a.75.75 0 0 1 .696.987l-3 9a.75.75 0 0 1-.711.513.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .727-.513zm-4.499.002a.75.75 0 0 1 .695.985l-3 9A.75.75 0 0 1 6 17.25a.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .728-.511zm9 0a.75.75 0 0 1 .695.985l-3 9a.75.75 0 0 1-.711.513.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .728-.511z" }) + ] + } + ); +}); + +exports.default = SiWhat3words; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.d.ts new file mode 100644 index 000000000..da69137c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E11F26"; +declare const SiWhat3words: IconType; +export { SiWhat3words as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.mjs new file mode 100644 index 000000000..726c8c1c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWhat3words.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E11F26"; +const SiWhat3words = React.forwardRef(function SiWhat3words2({ title = "what3words", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 0v24h24V0zm13.515 6.75a.75.75 0 0 1 .696.987l-3 9a.75.75 0 0 1-.711.513.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .727-.513zm-4.499.002a.75.75 0 0 1 .695.985l-3 9A.75.75 0 0 1 6 17.25a.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .728-.511zm9 0a.75.75 0 0 1 .695.985l-3 9a.75.75 0 0 1-.711.513.75.75 0 0 1-.712-.987l3-9a.75.75 0 0 1 .728-.511z" }) + ] + } + ); +}); + +export { SiWhat3words as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.cjs new file mode 100644 index 000000000..1cae2146d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#25D366"; +const SiWhatsapp = React__namespace.forwardRef(function SiWhatsapp2({ title = "WhatsApp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z" }) + ] + } + ); +}); + +exports.default = SiWhatsapp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.d.ts new file mode 100644 index 000000000..d491f2ccd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#25D366"; +declare const SiWhatsapp: IconType; +export { SiWhatsapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.mjs new file mode 100644 index 000000000..9b41d9d67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWhatsapp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#25D366"; +const SiWhatsapp = React.forwardRef(function SiWhatsapp2({ title = "WhatsApp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z" }) + ] + } + ); +}); + +export { SiWhatsapp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.cjs new file mode 100644 index 000000000..d27b0bef8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#51A33D"; +const SiWheniwork = React__namespace.forwardRef(function SiWheniwork2({ title = "When I Work", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 24C5.342 24 0 18.582 0 12 0 5.342 5.342 0 12 0s12 5.342 12 12c0 6.582-5.342 12-12 12zm0-21.986c-5.497 0-9.987 4.489-9.987 9.986 0 5.498 4.49 9.988 9.987 9.988 5.498 0 9.987-4.49 9.987-9.988 0-5.497-4.489-9.986-9.987-9.986zm5.885 11.148H9.213c-.384 0-.695-.309-.698-.691v-1.012c0-.387.311-.697.698-.697h8.748c.387 0 .697.311.697.697v1.006c-.077.387-.387.697-.773.697zm-2.246-3.871H6.891c-.383.002-.697-.307-.698-.691V7.59c0-.311.31-.621.697-.621h8.748c.31 0 .62.311.62.619v1.006c.001.386-.31.697-.619.697zm-8.748 5.418h8.748c.388 0 .696.311.696.697v1.006c.002.383-.309.695-.691.697H6.891c-.388-.076-.697-.387-.697-.773V15.33c-.001-.31.309-.621.697-.621z" }) + ] + } + ); +}); + +exports.default = SiWheniwork; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.d.ts new file mode 100644 index 000000000..2fc82cb04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#51A33D"; +declare const SiWheniwork: IconType; +export { SiWheniwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.mjs new file mode 100644 index 000000000..453e5f0f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWheniwork.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#51A33D"; +const SiWheniwork = React.forwardRef(function SiWheniwork2({ title = "When I Work", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 24C5.342 24 0 18.582 0 12 0 5.342 5.342 0 12 0s12 5.342 12 12c0 6.582-5.342 12-12 12zm0-21.986c-5.497 0-9.987 4.489-9.987 9.986 0 5.498 4.49 9.988 9.987 9.988 5.498 0 9.987-4.49 9.987-9.988 0-5.497-4.489-9.986-9.987-9.986zm5.885 11.148H9.213c-.384 0-.695-.309-.698-.691v-1.012c0-.387.311-.697.698-.697h8.748c.387 0 .697.311.697.697v1.006c-.077.387-.387.697-.773.697zm-2.246-3.871H6.891c-.383.002-.697-.307-.698-.691V7.59c0-.311.31-.621.697-.621h8.748c.31 0 .62.311.62.619v1.006c.001.386-.31.697-.619.697zm-8.748 5.418h8.748c.388 0 .696.311.696.697v1.006c.002.383-.309.695-.691.697H6.891c-.388-.076-.697-.387-.697-.773V15.33c-.001-.31.309-.621.697-.621z" }) + ] + } + ); +}); + +export { SiWheniwork as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.cjs new file mode 100644 index 000000000..408c75db0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiWikibooks = React__namespace.forwardRef(function SiWikibooks2({ title = "Wikibooks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.027.29c-.424.143-.776.418-1.106.707C.434 5.314.254 5.497.254 5.497c-.236.22-.257.537-.254.859l.021 1.819s2.07-2.013 5.164-4.99c1.665 4.337 3.405 8.651 5.116 12.974.234.653-.329 1.188-1.04 1.902-.982.958-3.034 2.93-5.136 5.561h2.107l5.067-5.554c.482-.662 1.077-1.309.824-1.909L8.145 5.806c.924-.785 1.763-1.676 2.618-2.531l5.252 13.173c.303.891-.175 1.684-1.134 2.549-1.148.922-3.508 3.073-4.58 4.712h1.631c1.71-1.758 2.017-1.994 3.964-3.68 1.308-1.334 2.488-2.022 1.871-3.731l-4.13-10.325c1.007-.99 2.013-1.875 2.98-2.852 2.113 4.643 3.559 8.384 5.33 13.33.58 1.607.458 1.682-.928 2.55-2.228 1.107-2.929 1.834-5.585 4.66h1.815c2.22-2.008 3.045-2.716 5.825-4.18.983-.569 1.116-1.285.713-2.4-1.3-3.616-4.116-11.41-6.719-16.755l-4.103 3.971-1.569-3.92C9.912 1.38 8.74 2.78 7.466 4.04z" }) + ] + } + ); +}); + +exports.default = SiWikibooks; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.d.ts new file mode 100644 index 000000000..16fbefabb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiWikibooks: IconType; +export { SiWikibooks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.mjs new file mode 100644 index 000000000..83673ee20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikibooks.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiWikibooks = React.forwardRef(function SiWikibooks2({ title = "Wikibooks", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.027.29c-.424.143-.776.418-1.106.707C.434 5.314.254 5.497.254 5.497c-.236.22-.257.537-.254.859l.021 1.819s2.07-2.013 5.164-4.99c1.665 4.337 3.405 8.651 5.116 12.974.234.653-.329 1.188-1.04 1.902-.982.958-3.034 2.93-5.136 5.561h2.107l5.067-5.554c.482-.662 1.077-1.309.824-1.909L8.145 5.806c.924-.785 1.763-1.676 2.618-2.531l5.252 13.173c.303.891-.175 1.684-1.134 2.549-1.148.922-3.508 3.073-4.58 4.712h1.631c1.71-1.758 2.017-1.994 3.964-3.68 1.308-1.334 2.488-2.022 1.871-3.731l-4.13-10.325c1.007-.99 2.013-1.875 2.98-2.852 2.113 4.643 3.559 8.384 5.33 13.33.58 1.607.458 1.682-.928 2.55-2.228 1.107-2.929 1.834-5.585 4.66h1.815c2.22-2.008 3.045-2.716 5.825-4.18.983-.569 1.116-1.285.713-2.4-1.3-3.616-4.116-11.41-6.719-16.755l-4.103 3.971-1.569-3.92C9.912 1.38 8.74 2.78 7.466 4.04z" }) + ] + } + ); +}); + +export { SiWikibooks as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.cjs new file mode 100644 index 000000000..aa07d091f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiWikidata = React__namespace.forwardRef(function SiWikidata2({ title = "Wikidata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 4.583v14.833h.865V4.583zm1.788 0v14.833h2.653V4.583zm3.518 0v14.832H7.96V4.583zm3.547 0v14.834h.866V4.583zm1.789 0v14.833h.865V4.583zm1.759 0v14.834h2.653V4.583zm3.518 0v14.834h.923V4.583zm1.788 0v14.833h2.653V4.583zm3.64 0v14.834h.865V4.583zm1.788 0v14.834H24V4.583Z" }) + ] + } + ); +}); + +exports.default = SiWikidata; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.d.ts new file mode 100644 index 000000000..f00007bb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiWikidata: IconType; +export { SiWikidata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.mjs new file mode 100644 index 000000000..2544329b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidata.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiWikidata = React.forwardRef(function SiWikidata2({ title = "Wikidata", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 4.583v14.833h.865V4.583zm1.788 0v14.833h2.653V4.583zm3.518 0v14.832H7.96V4.583zm3.547 0v14.834h.866V4.583zm1.789 0v14.833h.865V4.583zm1.759 0v14.834h2.653V4.583zm3.518 0v14.834h.923V4.583zm1.788 0v14.833h2.653V4.583zm3.64 0v14.834h.865V4.583zm1.788 0v14.834H24V4.583Z" }) + ] + } + ); +}); + +export { SiWikidata as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.cjs new file mode 100644 index 000000000..b38980b5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1985"; +const SiWikidotgg = React__namespace.forwardRef(function SiWikidotgg2({ title = "wiki.gg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.8326 3.7604c-1.2353.33-2.4875 1.3283-3.0713 2.4451-.2961.5754-2.4875 7.3356-2.699 8.334-.1354.643-.0423 1.726.203 2.4451.7277 2.0898 2.6145 3.3928 4.9243 3.3928 1.599 0 2.6313-.3892 3.892-1.4806 1.2268-1.0576 2.259-1.4638 3.5112-1.3622 1.1337.0846 1.8952.4315 2.9613 1.3622 1.506 1.3199 3.249 1.7006 5.051 1.0999 1.2523-.4146 2.276-1.2945 2.8598-2.4452.4485-.8969.5754-1.5399.5246-2.5467-.0338-.8038-.093-1.0153-1.1845-4.3573-.6261-1.9291-1.2268-3.7143-1.3199-3.9597-.4146-1.0407-1.2437-1.9544-2.276-2.496-.956-.5076-1.3283-.5668-3.4774-.5668-1.1506 0-1.8698.0338-1.8275.0761.0508.0423.5246.33 1.0576.643.533.3046 1.0407.6346 1.1253.7361.0846.1016.1438.3131.1438.5077 0 .4061-.093.4992-1.3114 1.3368l-.9307.6346 1.6668.0423c1.6076.0423 1.6668.0507 1.8783.2453.2623.2454.2284.1608 1.4976 4.0697 1.0999 3.4012 1.1422 3.6043.753 4.0189-.5161.55-1.0322.4822-1.8191-.2115-.3215-.2793-.77-.6346-1.0068-.7954-3.122-2.056-7.2256-1.8021-10.0938.6261-.956.8123-1.0153.8461-1.5652.8461-.2877 0-.6092-.0592-.753-.1269-.2877-.1523-.5839-.5838-.5839-.863 0-.1015.5077-1.7937 1.1338-3.7566.8968-2.8344 1.1845-3.6128 1.3537-3.7904.22-.22.237-.22 1.9376-.2793.9391-.0253 1.8613-.093 2.0475-.1522.4146-.127 2.1998-1.1423 2.4198-1.3792.1776-.1946.2115-.5415.0677-.846-.1016-.2285-1.6668-1.1761-2.3522-1.43-.5245-.1945-4.0273-.2114-4.738-.0168zm13.368 1.379c.33.3385.3385.753.0085 1.1169-.406.4569-1.1337.3215-1.3706-.2538-.3384-.8292.7192-1.4976 1.3622-.863z" }) + ] + } + ); +}); + +exports.default = SiWikidotgg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.d.ts new file mode 100644 index 000000000..ebb824913 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1985"; +declare const SiWikidotgg: IconType; +export { SiWikidotgg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.mjs new file mode 100644 index 000000000..8470b13df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotgg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1985"; +const SiWikidotgg = React.forwardRef(function SiWikidotgg2({ title = "wiki.gg", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.8326 3.7604c-1.2353.33-2.4875 1.3283-3.0713 2.4451-.2961.5754-2.4875 7.3356-2.699 8.334-.1354.643-.0423 1.726.203 2.4451.7277 2.0898 2.6145 3.3928 4.9243 3.3928 1.599 0 2.6313-.3892 3.892-1.4806 1.2268-1.0576 2.259-1.4638 3.5112-1.3622 1.1337.0846 1.8952.4315 2.9613 1.3622 1.506 1.3199 3.249 1.7006 5.051 1.0999 1.2523-.4146 2.276-1.2945 2.8598-2.4452.4485-.8969.5754-1.5399.5246-2.5467-.0338-.8038-.093-1.0153-1.1845-4.3573-.6261-1.9291-1.2268-3.7143-1.3199-3.9597-.4146-1.0407-1.2437-1.9544-2.276-2.496-.956-.5076-1.3283-.5668-3.4774-.5668-1.1506 0-1.8698.0338-1.8275.0761.0508.0423.5246.33 1.0576.643.533.3046 1.0407.6346 1.1253.7361.0846.1016.1438.3131.1438.5077 0 .4061-.093.4992-1.3114 1.3368l-.9307.6346 1.6668.0423c1.6076.0423 1.6668.0507 1.8783.2453.2623.2454.2284.1608 1.4976 4.0697 1.0999 3.4012 1.1422 3.6043.753 4.0189-.5161.55-1.0322.4822-1.8191-.2115-.3215-.2793-.77-.6346-1.0068-.7954-3.122-2.056-7.2256-1.8021-10.0938.6261-.956.8123-1.0153.8461-1.5652.8461-.2877 0-.6092-.0592-.753-.1269-.2877-.1523-.5839-.5838-.5839-.863 0-.1015.5077-1.7937 1.1338-3.7566.8968-2.8344 1.1845-3.6128 1.3537-3.7904.22-.22.237-.22 1.9376-.2793.9391-.0253 1.8613-.093 2.0475-.1522.4146-.127 2.1998-1.1423 2.4198-1.3792.1776-.1946.2115-.5415.0677-.846-.1016-.2285-1.6668-1.1761-2.3522-1.43-.5245-.1945-4.0273-.2114-4.738-.0168zm13.368 1.379c.33.3385.3385.753.0085 1.1169-.406.4569-1.1337.3215-1.3706-.2538-.3384-.8292.7192-1.4976 1.3622-.863z" }) + ] + } + ); +}); + +export { SiWikidotgg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.cjs new file mode 100644 index 000000000..83dfbf00d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1976D2"; +const SiWikidotjs = React__namespace.forwardRef(function SiWikidotjs2({ title = "Wiki.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.801 13.557c.148.098.288.202.417.313 1.854 1.6 3.127 4.656 2.582 7.311-1.091-.255-5.747-1.055-7.638-3.383-.91-1.12-1.366-2.081-1.569-2.885a5.65 5.65 0 0 0 .034-.219c.089.198.197.35.313.466.24.24.521.335.766.372.304.046.594-.006.806-.068l.001.001c.05-.015.433-.116.86-.342.325-.173 2.008-.931 3.428-1.566Zm-7.384 1.435C9.156 16.597 6.6 18.939.614 18.417c.219-1.492 1.31-3.019 2.51-4.11.379-.345.906-.692 1.506-1.009.286.168.598.332.939.486 2.689 1.221 3.903 1.001 4.89.573a1.3 1.3 0 0 0 .054-.025 6.156 6.156 0 0 0-.096.66Zm4.152-.462c.38-.341.877-.916 1.383-1.559-.389-.15-.866-.371-1.319-.591-.598-.29-1.305-.283-2.073-.315a4.685 4.685 0 0 1-.804-.103c.014-.123.027-.246.038-.369.062.104.673.057.871.057.354 0 1.621.034 3.074-.574 1.452-.608 2.55-1.706 3.022-3.225.474-1.52.22-3.091-.168-3.952-.169.709-1.453 2.381-1.926 2.871-.473.489-2.381 2.296-2.972 2.921-.7.74-.688.793-1.332 1.302-.202.19-.499.402-.563.53.027-.338.039-.675.027-.997a7.653 7.653 0 0 0-.032-.523c.322-.059.567-.522.567-.861 0-.224-.106-.247-.271-.229.075-.894.382-3.923 1.254-4.281.218.109.831.068.649-.295-.182-.364-.825-.074-1.081.266-.28.374-.956 2.046-.92 4.324-.113.014-.174.033-.322.033-.171 0-.321-.04-.433-.05.034-2.275-.714-3.772-.84-4.169-.12-.375-.491-.596-.781-.596-.146 0-.272.056-.333.179-.182.363.459.417.677.308.706.321 1.156 3.519 1.254 4.277-.125-.006-.199.035-.199.233 0 .311.17.756.452.843a.442.442 0 0 0-.007.03s-.287.99-.413 2.189a4.665 4.665 0 0 1-.718-.225c-.714-.286-1.355-.583-2.019-.566-.664.018-1.366.023-1.804-.036-.438-.058-.649-.15-.649-.15s-.234.365.257 1.075c.42.607 1.055 1.047 1.644 1.18.589.134 1.972.18 2.785-.377.16-.109.317-.228.459-.34a8.717 8.717 0 0 0-.013.626c-.289.753-.571 1.993-.268 3.338 0-.001.701-.842.787-2.958.006-.144.009-.271.01-.383.052-.248.103-.518.148-.799.072.135.151.277.234.413.511.842 1.791 1.37 2.383 1.49.091.019.187.032.285.038Zm-1.12.745c-.188.055-.445.1-.713.059-.21-.031-.45-.11-.655-.316-.169-.168-.312-.419-.401-.789a9.837 9.837 0 0 0 .039-.82l.049-.243c.563.855 1.865 1.398 2.476 1.522.036.008.072.014.109.02l-.013.009c-.579.415-.76.503-.891.558Zm6.333-2.818c-.257.114-4.111 1.822-5.246 2.363.98-.775 3.017-3.59 3.699-4.774 1.062.661 1.468 1.109 1.623 1.441.101.217.09.38.096.515a.57.57 0 0 1-.172.455Zm-9.213 1.62a1.606 1.606 0 0 1-.19.096c-.954.414-2.126.61-4.728-.571-2.023-.918-3.024-2.157-3.371-2.666.476.161 1.471.473 2.157.524.282.021.703.068 1.167.125.021.209.109.486.345.829l.001.001c.451.651 1.134 1.119 1.765 1.262.622.141 2.083.182 2.942-.407a3.12 3.12 0 0 0 .132-.093l.001.179a6.052 6.052 0 0 0-.221.721Zm5.512-1.271a17.49 17.49 0 0 1-1.326-.589c.437.042 1.054.083 1.692.108-.121.162-.244.323-.366.481Zm.932-1.26c-.12.17-.245.343-.373.517-.241.018-.478.03-.709.038a29.05 29.05 0 0 1-.741-.048c.608-.065 1.228-.252 1.823-.507Zm.22-.315c-.809.382-1.679.648-2.507.648-.472 0-.833.018-1.139.039v.001c-.324-.031-.665-.039-1.019-.054a3.555 3.555 0 0 1-.152-.009c.102-.002.192-.006.249-.006.363 0 1.662.034 3.151-.589 1.508-.632 2.645-1.773 3.136-3.351.37-1.186.31-2.402.086-3.312.458-.336.86-.651 1.147-.91.501-.451.743-.733.848-.869.199.206.714.864.685 2.138-.036 1.611-.606 3.187-1.501 4.154a9.099 9.099 0 0 1-1.321 1.132 11.978 11.978 0 0 0-.644-.422l-.089-.055-.051.091c-.184.332-.5.825-.879 1.374ZM4.763 5.817c-.157 1.144.113 2.323.652 3.099.539.776 2.088 2.29 3.614 2.505.991.14 2.055.134 2.055.134s-.593-.576-1.114-1.66c-.521-1.085-.948-2.104-1.734-2.786-.785-.681-1.601-1.416-2.045-1.945-.444-.53-.59-.86-.59-.86s-.656.175-.838 1.513Zm14.301 4.549a9.162 9.162 0 0 0 1.3-1.12c.326-.352.611-.782.845-1.265 1.315.145 2.399.371 2.791.434 0 0-.679 1.971-3.945 3.022l-.016-.035c-.121-.26-.385-.594-.975-1.036Zm-11.634.859a8.537 8.537 0 0 1-.598-.224c-1.657-.693-2.91-1.944-3.449-3.678-.498-1.601-.292-3.251.091-4.269.225.544.758 1.34 1.262 2.01a3.58 3.58 0 0 0-.172.726c-.163 1.197.123 2.428.687 3.24.416.599 1.417 1.62 2.555 2.193-.128.002-.253.003-.376.002Zm-1.758-.077c-.958-.341-1.901-.787-2.697-1.368C-.07 7.559 0 6.827 0 6.827s1.558-.005 3.088.179c.03.126.065.251.104.377.557 1.791 1.851 3.086 3.562 3.803l.047.019a4.254 4.254 0 0 1-.267-.026h-.001c-.401-.053-.595-.135-.595-.135l-.157-.069-.092.144-.017.029Zm6.807-1.59c.086.017.136.058.136.145 0 .197-.242.5-.597.597l-.01-.161a.887.887 0 0 0 .283-.243c.078-.099.142-.217.188-.338Zm-1.591.006c.033.1.076.197.129.282.061.097.134.18.217.24l-.021.083c-.276-.093-.424-.293-.424-.466 0-.078.035-.119.099-.139Zm-.025-.664c-.275-.816-.795-2.022-1.505-2.179-.296.072-.938.096-.691-.145.246-.24 1.085-.048 1.283.217.145.194.744.806 1.011 1.737l.032.227a.324.324 0 0 0-.13.143Zm1.454-.266c.251-.99.889-1.639 1.039-1.841.197-.265 1.036-.457 1.283-.217.247.241-.395.217-.691.145-.69.152-1.2 1.296-1.481 2.109a.364.364 0 0 0-.067-.059.37.37 0 0 0-.092-.043l.009-.094Zm4.802-2.708a9.875 9.875 0 0 1-.596.705c-.304.315-1.203 1.176-1.963 1.916.647-.955 1.303-1.806 2.184-2.376.123-.08.249-.161.375-.245Z" }) + ] + } + ); +}); + +exports.default = SiWikidotjs; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.d.ts new file mode 100644 index 000000000..a6ed59078 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1976D2"; +declare const SiWikidotjs: IconType; +export { SiWikidotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.mjs new file mode 100644 index 000000000..f811ce683 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikidotjs.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1976D2"; +const SiWikidotjs = React.forwardRef(function SiWikidotjs2({ title = "Wiki.js", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.801 13.557c.148.098.288.202.417.313 1.854 1.6 3.127 4.656 2.582 7.311-1.091-.255-5.747-1.055-7.638-3.383-.91-1.12-1.366-2.081-1.569-2.885a5.65 5.65 0 0 0 .034-.219c.089.198.197.35.313.466.24.24.521.335.766.372.304.046.594-.006.806-.068l.001.001c.05-.015.433-.116.86-.342.325-.173 2.008-.931 3.428-1.566Zm-7.384 1.435C9.156 16.597 6.6 18.939.614 18.417c.219-1.492 1.31-3.019 2.51-4.11.379-.345.906-.692 1.506-1.009.286.168.598.332.939.486 2.689 1.221 3.903 1.001 4.89.573a1.3 1.3 0 0 0 .054-.025 6.156 6.156 0 0 0-.096.66Zm4.152-.462c.38-.341.877-.916 1.383-1.559-.389-.15-.866-.371-1.319-.591-.598-.29-1.305-.283-2.073-.315a4.685 4.685 0 0 1-.804-.103c.014-.123.027-.246.038-.369.062.104.673.057.871.057.354 0 1.621.034 3.074-.574 1.452-.608 2.55-1.706 3.022-3.225.474-1.52.22-3.091-.168-3.952-.169.709-1.453 2.381-1.926 2.871-.473.489-2.381 2.296-2.972 2.921-.7.74-.688.793-1.332 1.302-.202.19-.499.402-.563.53.027-.338.039-.675.027-.997a7.653 7.653 0 0 0-.032-.523c.322-.059.567-.522.567-.861 0-.224-.106-.247-.271-.229.075-.894.382-3.923 1.254-4.281.218.109.831.068.649-.295-.182-.364-.825-.074-1.081.266-.28.374-.956 2.046-.92 4.324-.113.014-.174.033-.322.033-.171 0-.321-.04-.433-.05.034-2.275-.714-3.772-.84-4.169-.12-.375-.491-.596-.781-.596-.146 0-.272.056-.333.179-.182.363.459.417.677.308.706.321 1.156 3.519 1.254 4.277-.125-.006-.199.035-.199.233 0 .311.17.756.452.843a.442.442 0 0 0-.007.03s-.287.99-.413 2.189a4.665 4.665 0 0 1-.718-.225c-.714-.286-1.355-.583-2.019-.566-.664.018-1.366.023-1.804-.036-.438-.058-.649-.15-.649-.15s-.234.365.257 1.075c.42.607 1.055 1.047 1.644 1.18.589.134 1.972.18 2.785-.377.16-.109.317-.228.459-.34a8.717 8.717 0 0 0-.013.626c-.289.753-.571 1.993-.268 3.338 0-.001.701-.842.787-2.958.006-.144.009-.271.01-.383.052-.248.103-.518.148-.799.072.135.151.277.234.413.511.842 1.791 1.37 2.383 1.49.091.019.187.032.285.038Zm-1.12.745c-.188.055-.445.1-.713.059-.21-.031-.45-.11-.655-.316-.169-.168-.312-.419-.401-.789a9.837 9.837 0 0 0 .039-.82l.049-.243c.563.855 1.865 1.398 2.476 1.522.036.008.072.014.109.02l-.013.009c-.579.415-.76.503-.891.558Zm6.333-2.818c-.257.114-4.111 1.822-5.246 2.363.98-.775 3.017-3.59 3.699-4.774 1.062.661 1.468 1.109 1.623 1.441.101.217.09.38.096.515a.57.57 0 0 1-.172.455Zm-9.213 1.62a1.606 1.606 0 0 1-.19.096c-.954.414-2.126.61-4.728-.571-2.023-.918-3.024-2.157-3.371-2.666.476.161 1.471.473 2.157.524.282.021.703.068 1.167.125.021.209.109.486.345.829l.001.001c.451.651 1.134 1.119 1.765 1.262.622.141 2.083.182 2.942-.407a3.12 3.12 0 0 0 .132-.093l.001.179a6.052 6.052 0 0 0-.221.721Zm5.512-1.271a17.49 17.49 0 0 1-1.326-.589c.437.042 1.054.083 1.692.108-.121.162-.244.323-.366.481Zm.932-1.26c-.12.17-.245.343-.373.517-.241.018-.478.03-.709.038a29.05 29.05 0 0 1-.741-.048c.608-.065 1.228-.252 1.823-.507Zm.22-.315c-.809.382-1.679.648-2.507.648-.472 0-.833.018-1.139.039v.001c-.324-.031-.665-.039-1.019-.054a3.555 3.555 0 0 1-.152-.009c.102-.002.192-.006.249-.006.363 0 1.662.034 3.151-.589 1.508-.632 2.645-1.773 3.136-3.351.37-1.186.31-2.402.086-3.312.458-.336.86-.651 1.147-.91.501-.451.743-.733.848-.869.199.206.714.864.685 2.138-.036 1.611-.606 3.187-1.501 4.154a9.099 9.099 0 0 1-1.321 1.132 11.978 11.978 0 0 0-.644-.422l-.089-.055-.051.091c-.184.332-.5.825-.879 1.374ZM4.763 5.817c-.157 1.144.113 2.323.652 3.099.539.776 2.088 2.29 3.614 2.505.991.14 2.055.134 2.055.134s-.593-.576-1.114-1.66c-.521-1.085-.948-2.104-1.734-2.786-.785-.681-1.601-1.416-2.045-1.945-.444-.53-.59-.86-.59-.86s-.656.175-.838 1.513Zm14.301 4.549a9.162 9.162 0 0 0 1.3-1.12c.326-.352.611-.782.845-1.265 1.315.145 2.399.371 2.791.434 0 0-.679 1.971-3.945 3.022l-.016-.035c-.121-.26-.385-.594-.975-1.036Zm-11.634.859a8.537 8.537 0 0 1-.598-.224c-1.657-.693-2.91-1.944-3.449-3.678-.498-1.601-.292-3.251.091-4.269.225.544.758 1.34 1.262 2.01a3.58 3.58 0 0 0-.172.726c-.163 1.197.123 2.428.687 3.24.416.599 1.417 1.62 2.555 2.193-.128.002-.253.003-.376.002Zm-1.758-.077c-.958-.341-1.901-.787-2.697-1.368C-.07 7.559 0 6.827 0 6.827s1.558-.005 3.088.179c.03.126.065.251.104.377.557 1.791 1.851 3.086 3.562 3.803l.047.019a4.254 4.254 0 0 1-.267-.026h-.001c-.401-.053-.595-.135-.595-.135l-.157-.069-.092.144-.017.029Zm6.807-1.59c.086.017.136.058.136.145 0 .197-.242.5-.597.597l-.01-.161a.887.887 0 0 0 .283-.243c.078-.099.142-.217.188-.338Zm-1.591.006c.033.1.076.197.129.282.061.097.134.18.217.24l-.021.083c-.276-.093-.424-.293-.424-.466 0-.078.035-.119.099-.139Zm-.025-.664c-.275-.816-.795-2.022-1.505-2.179-.296.072-.938.096-.691-.145.246-.24 1.085-.048 1.283.217.145.194.744.806 1.011 1.737l.032.227a.324.324 0 0 0-.13.143Zm1.454-.266c.251-.99.889-1.639 1.039-1.841.197-.265 1.036-.457 1.283-.217.247.241-.395.217-.691.145-.69.152-1.2 1.296-1.481 2.109a.364.364 0 0 0-.067-.059.37.37 0 0 0-.092-.043l.009-.094Zm4.802-2.708a9.875 9.875 0 0 1-.596.705c-.304.315-1.203 1.176-1.963 1.916.647-.955 1.303-1.806 2.184-2.376.123-.08.249-.161.375-.245Z" }) + ] + } + ); +}); + +export { SiWikidotjs as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.cjs new file mode 100644 index 000000000..3e67845c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiWikimediacommons = React__namespace.forwardRef(function SiWikimediacommons2({ title = "Wikimedia Commons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.048 15.203a2.952 2.952 0 1 1 5.904 0 2.952 2.952 0 0 1-5.904 0zm11.749.064v-.388h-.006a8.726 8.726 0 0 0-.639-2.985 8.745 8.745 0 0 0-1.706-2.677l.004-.004-.186-.185-.044-.045-.026-.026-.204-.204-.006.007c-.848-.756-1.775-1.129-2.603-1.461-1.294-.519-2.138-.857-2.534-2.467.443.033.839.174 1.13.481C15.571 6.996 11.321 0 11.321 0s-1.063 3.985-2.362 5.461c-.654.744.22.273 1.453-.161.279 1.19.77 2.119 1.49 2.821.791.771 1.729 1.148 2.556 1.48.672.27 1.265.508 1.767.916l-.593.594-.668-.668-.668 2.463 2.463-.668-.668-.668.6-.599a6.285 6.285 0 0 1 1.614 3.906h-.844v-.944l-2.214 1.27 2.214 1.269v-.944h.844a6.283 6.283 0 0 1-1.614 3.906l-.6-.599.668-.668-2.463-.668.668 2.463.668-.668.6.6a6.263 6.263 0 0 1-3.907 1.618v-.848h.945L12 18.45l-1.27 2.214h.944v.848a6.266 6.266 0 0 1-3.906-1.618l.599-.6.668.668.668-2.463-2.463.668.668.668-.6.599a6.29 6.29 0 0 1-1.615-3.906h.844v.944l2.214-1.269-2.214-1.27v.944h-.843a6.292 6.292 0 0 1 1.615-3.906l.6.599-.668.668 2.463.668-.668-2.463-.668.668-2.359-2.358-.23.229-.044.045-.185.185.004.004a8.749 8.749 0 0 0-2.345 5.662h-.006v.649h.006a8.749 8.749 0 0 0 2.345 5.662l-.004.004.185.185.045.045.045.045.185.185.004-.004a8.73 8.73 0 0 0 2.677 1.707 8.75 8.75 0 0 0 2.985.639V24h.649v-.006a8.75 8.75 0 0 0 2.985-.639 8.717 8.717 0 0 0 2.677-1.707l.004.004.187-.187.044-.043.043-.044.187-.186-.004-.004a8.733 8.733 0 0 0 1.706-2.677 8.726 8.726 0 0 0 .639-2.985h.006v-.259z" }) + ] + } + ); +}); + +exports.default = SiWikimediacommons; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.d.ts new file mode 100644 index 000000000..767e3e91b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiWikimediacommons: IconType; +export { SiWikimediacommons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.mjs new file mode 100644 index 000000000..2c80635e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediacommons.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiWikimediacommons = React.forwardRef(function SiWikimediacommons2({ title = "Wikimedia Commons", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M9.048 15.203a2.952 2.952 0 1 1 5.904 0 2.952 2.952 0 0 1-5.904 0zm11.749.064v-.388h-.006a8.726 8.726 0 0 0-.639-2.985 8.745 8.745 0 0 0-1.706-2.677l.004-.004-.186-.185-.044-.045-.026-.026-.204-.204-.006.007c-.848-.756-1.775-1.129-2.603-1.461-1.294-.519-2.138-.857-2.534-2.467.443.033.839.174 1.13.481C15.571 6.996 11.321 0 11.321 0s-1.063 3.985-2.362 5.461c-.654.744.22.273 1.453-.161.279 1.19.77 2.119 1.49 2.821.791.771 1.729 1.148 2.556 1.48.672.27 1.265.508 1.767.916l-.593.594-.668-.668-.668 2.463 2.463-.668-.668-.668.6-.599a6.285 6.285 0 0 1 1.614 3.906h-.844v-.944l-2.214 1.27 2.214 1.269v-.944h.844a6.283 6.283 0 0 1-1.614 3.906l-.6-.599.668-.668-2.463-.668.668 2.463.668-.668.6.6a6.263 6.263 0 0 1-3.907 1.618v-.848h.945L12 18.45l-1.27 2.214h.944v.848a6.266 6.266 0 0 1-3.906-1.618l.599-.6.668.668.668-2.463-2.463.668.668.668-.6.599a6.29 6.29 0 0 1-1.615-3.906h.844v.944l2.214-1.269-2.214-1.27v.944h-.843a6.292 6.292 0 0 1 1.615-3.906l.6.599-.668.668 2.463.668-.668-2.463-.668.668-2.359-2.358-.23.229-.044.045-.185.185.004.004a8.749 8.749 0 0 0-2.345 5.662h-.006v.649h.006a8.749 8.749 0 0 0 2.345 5.662l-.004.004.185.185.045.045.045.045.185.185.004-.004a8.73 8.73 0 0 0 2.677 1.707 8.75 8.75 0 0 0 2.985.639V24h.649v-.006a8.75 8.75 0 0 0 2.985-.639 8.717 8.717 0 0 0 2.677-1.707l.004.004.187-.187.044-.043.043-.044.187-.186-.004-.004a8.733 8.733 0 0 0 1.706-2.677 8.726 8.726 0 0 0 .639-2.985h.006v-.259z" }) + ] + } + ); +}); + +export { SiWikimediacommons as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.cjs new file mode 100644 index 000000000..bd9724725 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWikimediafoundation = React__namespace.forwardRef(function SiWikimediafoundation2({ title = "Wikimedia Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.074 3.126C22.486 5.321 24 8.485 24 12c0 6.623-5.377 12-12 12S0 18.623 0 12c0-3.515 1.514-6.679 3.926-8.874l2.265 2.265C4.358 7.005 3.2 9.368 3.2 12c0 4.857 3.943 8.8 8.8 8.8s8.8-3.943 8.8-8.8c0-2.632-1.158-4.995-2.991-6.609zm-3.399 3.399C18.22 7.846 19.2 9.81 19.2 12c0 3.703-2.802 6.757-6.4 7.156V10.4zM11.2 19.156C7.602 18.757 4.8 15.703 4.8 12c0-2.19.98-4.154 2.525-5.475L11.2 10.4zM12 0c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4" }) + ] + } + ); +}); + +exports.default = SiWikimediafoundation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.d.ts new file mode 100644 index 000000000..5f2776ba2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWikimediafoundation: IconType; +export { SiWikimediafoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.mjs new file mode 100644 index 000000000..11d4053bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikimediafoundation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWikimediafoundation = React.forwardRef(function SiWikimediafoundation2({ title = "Wikimedia Foundation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.074 3.126C22.486 5.321 24 8.485 24 12c0 6.623-5.377 12-12 12S0 18.623 0 12c0-3.515 1.514-6.679 3.926-8.874l2.265 2.265C4.358 7.005 3.2 9.368 3.2 12c0 4.857 3.943 8.8 8.8 8.8s8.8-3.943 8.8-8.8c0-2.632-1.158-4.995-2.991-6.609zm-3.399 3.399C18.22 7.846 19.2 9.81 19.2 12c0 3.703-2.802 6.757-6.4 7.156V10.4zM11.2 19.156C7.602 18.757 4.8 15.703 4.8 12c0-2.19.98-4.154 2.525-5.475L11.2 10.4zM12 0c2.208 0 4 1.792 4 4s-1.792 4-4 4-4-1.792-4-4 1.792-4 4-4" }) + ] + } + ); +}); + +export { SiWikimediafoundation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.cjs new file mode 100644 index 000000000..f184e104d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWikipedia = React__namespace.forwardRef(function SiWikipedia2({ title = "Wikipedia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.09 13.119c-.936 1.932-2.217 4.548-2.853 5.728-.616 1.074-1.127.931-1.532.029-1.406-3.321-4.293-9.144-5.651-12.409-.251-.601-.441-.987-.619-1.139-.181-.15-.554-.24-1.122-.271C.103 5.033 0 4.982 0 4.898v-.455l.052-.045c.924-.005 5.401 0 5.401 0l.051.045v.434c0 .119-.075.176-.225.176l-.564.031c-.485.029-.727.164-.727.436 0 .135.053.33.166.601 1.082 2.646 4.818 10.521 4.818 10.521l.136.046 2.411-4.81-.482-1.067-1.658-3.264s-.318-.654-.428-.872c-.728-1.443-.712-1.518-1.447-1.617-.207-.023-.313-.05-.313-.149v-.468l.06-.045h4.292l.113.037v.451c0 .105-.076.15-.227.15l-.308.047c-.792.061-.661.381-.136 1.422l1.582 3.252 1.758-3.504c.293-.64.233-.801.111-.947-.07-.084-.305-.22-.812-.24l-.201-.021c-.052 0-.098-.015-.145-.051-.045-.031-.067-.076-.067-.129v-.427l.061-.045c1.247-.008 4.043 0 4.043 0l.059.045v.436c0 .121-.059.178-.193.178-.646.03-.782.095-1.023.439-.12.186-.375.589-.646 1.039l-2.301 4.273-.065.135 2.792 5.712.17.048 4.396-10.438c.154-.422.129-.722-.064-.895-.197-.172-.346-.273-.857-.295l-.42-.016c-.061 0-.105-.014-.152-.045-.043-.029-.072-.075-.072-.119v-.436l.059-.045h4.961l.041.045v.437c0 .119-.074.18-.209.18-.648.03-1.127.18-1.443.421-.314.255-.557.616-.736 1.067 0 0-4.043 9.258-5.426 12.339-.525 1.007-1.053.917-1.503-.031-.571-1.171-1.773-3.786-2.646-5.71l.053-.036z" }) + ] + } + ); +}); + +exports.default = SiWikipedia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.d.ts new file mode 100644 index 000000000..98d1c4dff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWikipedia: IconType; +export { SiWikipedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.mjs new file mode 100644 index 000000000..acd87052f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikipedia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWikipedia = React.forwardRef(function SiWikipedia2({ title = "Wikipedia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.09 13.119c-.936 1.932-2.217 4.548-2.853 5.728-.616 1.074-1.127.931-1.532.029-1.406-3.321-4.293-9.144-5.651-12.409-.251-.601-.441-.987-.619-1.139-.181-.15-.554-.24-1.122-.271C.103 5.033 0 4.982 0 4.898v-.455l.052-.045c.924-.005 5.401 0 5.401 0l.051.045v.434c0 .119-.075.176-.225.176l-.564.031c-.485.029-.727.164-.727.436 0 .135.053.33.166.601 1.082 2.646 4.818 10.521 4.818 10.521l.136.046 2.411-4.81-.482-1.067-1.658-3.264s-.318-.654-.428-.872c-.728-1.443-.712-1.518-1.447-1.617-.207-.023-.313-.05-.313-.149v-.468l.06-.045h4.292l.113.037v.451c0 .105-.076.15-.227.15l-.308.047c-.792.061-.661.381-.136 1.422l1.582 3.252 1.758-3.504c.293-.64.233-.801.111-.947-.07-.084-.305-.22-.812-.24l-.201-.021c-.052 0-.098-.015-.145-.051-.045-.031-.067-.076-.067-.129v-.427l.061-.045c1.247-.008 4.043 0 4.043 0l.059.045v.436c0 .121-.059.178-.193.178-.646.03-.782.095-1.023.439-.12.186-.375.589-.646 1.039l-2.301 4.273-.065.135 2.792 5.712.17.048 4.396-10.438c.154-.422.129-.722-.064-.895-.197-.172-.346-.273-.857-.295l-.42-.016c-.061 0-.105-.014-.152-.045-.043-.029-.072-.075-.072-.119v-.436l.059-.045h4.961l.041.045v.437c0 .119-.074.18-.209.18-.648.03-1.127.18-1.443.421-.314.255-.557.616-.736 1.067 0 0-4.043 9.258-5.426 12.339-.525 1.007-1.053.917-1.503-.031-.571-1.171-1.773-3.786-2.646-5.71l.053-.036z" }) + ] + } + ); +}); + +export { SiWikipedia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.cjs new file mode 100644 index 000000000..33ae9ebb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiWikiquote = React__namespace.forwardRef(function SiWikiquote2({ title = "Wikiquote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.152 12a4.037 4.037 0 1 1-8.075 0 4.037 4.037 0 0 1 8.075 0zM17.292.822c-.286-.287-.581-.56-.885-.822l-1.528 1.527C17.872 4.036 19.778 7.8 19.778 12s-1.906 7.964-4.899 10.473L16.407 24c.304-.262.6-.535.886-.822A15.705 15.705 0 0 0 21.923 12c0-4.223-1.644-8.192-4.63-11.178zM13.508 2.9L12.03 4.377a9.642 9.642 0 0 1 0 15.246l1.477 1.477a11.712 11.712 0 0 0 0-18.2zm-2.735 2.735L9.349 7.057c1.61 1.057 2.675 2.878 2.675 4.943s-1.065 3.886-2.675 4.943l1.423 1.422A7.884 7.884 0 0 0 14.005 12a7.884 7.884 0 0 0-3.233-6.365z" }) + ] + } + ); +}); + +exports.default = SiWikiquote; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.d.ts new file mode 100644 index 000000000..5977cd172 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiWikiquote: IconType; +export { SiWikiquote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.mjs new file mode 100644 index 000000000..c49a1c4ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiquote.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiWikiquote = React.forwardRef(function SiWikiquote2({ title = "Wikiquote", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.152 12a4.037 4.037 0 1 1-8.075 0 4.037 4.037 0 0 1 8.075 0zM17.292.822c-.286-.287-.581-.56-.885-.822l-1.528 1.527C17.872 4.036 19.778 7.8 19.778 12s-1.906 7.964-4.899 10.473L16.407 24c.304-.262.6-.535.886-.822A15.705 15.705 0 0 0 21.923 12c0-4.223-1.644-8.192-4.63-11.178zM13.508 2.9L12.03 4.377a9.642 9.642 0 0 1 0 15.246l1.477 1.477a11.712 11.712 0 0 0 0-18.2zm-2.735 2.735L9.349 7.057c1.61 1.057 2.675 2.878 2.675 4.943s-1.065 3.886-2.675 4.943l1.423 1.422A7.884 7.884 0 0 0 14.005 12a7.884 7.884 0 0 0-3.233-6.365z" }) + ] + } + ); +}); + +export { SiWikiquote as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.cjs new file mode 100644 index 000000000..dc664cebb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiWikisource = React__namespace.forwardRef(function SiWikisource2({ title = "Wikisource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.928 0a12 12 0 0 0-9.696 5.04h5.052c.072-.42.192-.864.588-1.248.24-.276.804-.24 1.2-.312.396-.084 1.044-1.104 1.68-1.404.768.396 1.608.996 2.04 1.296.744-.588 1.392-1.596 1.68-.78.24-.396.636-.648 1.08-.756.204-.048.48-.036.624-.06.168-.072.504-.324.792-.408-.456.696-.516 2.7-.528 3.672v.42c.66.144 1.5.036 1.788-.42h3.54A11.988 11.988 0 0 0 12 0zm-.432 3c.204.564.372 1.128.312 1.68-.072.36.084.336.372.192s.432-.312.864-.444c.324-.084.096-.312-.06-.48-.48-.408-.984-.672-1.488-.96zm-9.96 3.12A11.94 11.94 0 0 0 0 12a12 12 0 0 0 24 0 11.928 11.928 0 0 0-1.536-5.88H3.36c.624 1.32.972 2.04 3.12 1.752.744-.12 1.2-.192 1.2.576.096.468.456.624 1.38.456.36-.132.684-.336.948-.168h.024v.012a.048.048 0 0 1 .012.024c0 .12-.228.372.048.684.684.66 1.344 1.248 2.04 1.92.156.768.84.66 1.38.504.816-.24.456.12.756.492.168.264.552.972 1.008.72.012 1.296.336 2.22 1.008 2.724-.204.756-.396 1.8-.036 2.424-.6-.192-.36.972-.54 1.464-.312.816-.576.78-.864.852.264.288.6.588 1.104.768v.012l.024.012c0 .276.048.516.216.684-.312-.072-.684-.504-1.296-.228-.672.3-.816.096-.576-.348.312-.684-.36-.936-1.056-1.104v-.276c.144-.048.312-.096.504-.12.3-.06.504-.168.48-.6-.012-.6-.036-1.2 0-1.776a7.2 7.2 0 0 1 .216-1.452c.084-.24.528-.456.156-.768a50.4 50.4 0 0 0-4.656-4.2l-.072-.024 1.98 3.516c.24.588.696 1.2-.12 1.356v.012c-.036.564.072 1.536-.312 1.728-.432.3-.468.576-.504 1.032-.072.48-.072 1.032.072 1.416.144.06.288.096.444.12l.384.048c-.516.672-1.152.468-1.524-.156l-2.004-3.096c.096-3.012.156-5.04-.06-7.56-1.104.096-2.22.012-3.396-.672-.264-.48-.564-.432-1.068-.312.06-.444-.12-.876-.384-1.32l-.12-1.116H1.548zm17.412 1.236c1.92-.048 1.368 3.336 1.368 4.98h.012l-.156.84-.24 1.452c.084.72-.108.816-.24 1.224 0 1.584-.216 2.04-1.548 3.24a2.592 2.592 0 0 1-1.404-2.7c.048-.288.24-.612-.012-1.08a8.88 8.88 0 0 1 .168-4.02.72.72 0 0 1 .24-.024.756.756 0 0 0 .684-.888 3.96 3.96 0 0 0 .72-.24c-.972-.912-.624-2.76.408-2.784" }) + ] + } + ); +}); + +exports.default = SiWikisource; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.d.ts new file mode 100644 index 000000000..533472c85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiWikisource: IconType; +export { SiWikisource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.mjs new file mode 100644 index 000000000..135ddc4a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikisource.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiWikisource = React.forwardRef(function SiWikisource2({ title = "Wikisource", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.928 0a12 12 0 0 0-9.696 5.04h5.052c.072-.42.192-.864.588-1.248.24-.276.804-.24 1.2-.312.396-.084 1.044-1.104 1.68-1.404.768.396 1.608.996 2.04 1.296.744-.588 1.392-1.596 1.68-.78.24-.396.636-.648 1.08-.756.204-.048.48-.036.624-.06.168-.072.504-.324.792-.408-.456.696-.516 2.7-.528 3.672v.42c.66.144 1.5.036 1.788-.42h3.54A11.988 11.988 0 0 0 12 0zm-.432 3c.204.564.372 1.128.312 1.68-.072.36.084.336.372.192s.432-.312.864-.444c.324-.084.096-.312-.06-.48-.48-.408-.984-.672-1.488-.96zm-9.96 3.12A11.94 11.94 0 0 0 0 12a12 12 0 0 0 24 0 11.928 11.928 0 0 0-1.536-5.88H3.36c.624 1.32.972 2.04 3.12 1.752.744-.12 1.2-.192 1.2.576.096.468.456.624 1.38.456.36-.132.684-.336.948-.168h.024v.012a.048.048 0 0 1 .012.024c0 .12-.228.372.048.684.684.66 1.344 1.248 2.04 1.92.156.768.84.66 1.38.504.816-.24.456.12.756.492.168.264.552.972 1.008.72.012 1.296.336 2.22 1.008 2.724-.204.756-.396 1.8-.036 2.424-.6-.192-.36.972-.54 1.464-.312.816-.576.78-.864.852.264.288.6.588 1.104.768v.012l.024.012c0 .276.048.516.216.684-.312-.072-.684-.504-1.296-.228-.672.3-.816.096-.576-.348.312-.684-.36-.936-1.056-1.104v-.276c.144-.048.312-.096.504-.12.3-.06.504-.168.48-.6-.012-.6-.036-1.2 0-1.776a7.2 7.2 0 0 1 .216-1.452c.084-.24.528-.456.156-.768a50.4 50.4 0 0 0-4.656-4.2l-.072-.024 1.98 3.516c.24.588.696 1.2-.12 1.356v.012c-.036.564.072 1.536-.312 1.728-.432.3-.468.576-.504 1.032-.072.48-.072 1.032.072 1.416.144.06.288.096.444.12l.384.048c-.516.672-1.152.468-1.524-.156l-2.004-3.096c.096-3.012.156-5.04-.06-7.56-1.104.096-2.22.012-3.396-.672-.264-.48-.564-.432-1.068-.312.06-.444-.12-.876-.384-1.32l-.12-1.116H1.548zm17.412 1.236c1.92-.048 1.368 3.336 1.368 4.98h.012l-.156.84-.24 1.452c.084.72-.108.816-.24 1.224 0 1.584-.216 2.04-1.548 3.24a2.592 2.592 0 0 1-1.404-2.7c.048-.288.24-.612-.012-1.08a8.88 8.88 0 0 1 .168-4.02.72.72 0 0 1 .24-.024.756.756 0 0 0 .684-.888 3.96 3.96 0 0 0 .72-.24c-.972-.912-.624-2.76.408-2.784" }) + ] + } + ); +}); + +export { SiWikisource as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.cjs new file mode 100644 index 000000000..d9fa2b367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00649A"; +const SiWikiversity = React__namespace.forwardRef(function SiWikiversity2({ title = "Wikiversity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 20.462h24v.795H0zm19.974-8.692h3.205v8.256h-3.205zm-6.385 0h3.206v8.256h-3.206zm-6.384 0h3.205v8.256H7.205zm-6.385 0h3.205v8.256H.82zM0 10.539h24v.795H0zm7.615-6.436c1.103-.897 2.23-1.359 3.974-1.359-1.359.538-2.282 1.385-2.974 2.026-.41-.206-.692-.385-1-.667zm8.77 0c-1.103-.897-2.232-1.359-3.975-1.359 1.359.538 2.282 1.385 2.974 2.026.41-.206.693-.385 1-.667zm-4.616 1.436c-.923 0-1.744-.205-2.692-.59.948-.872 1.666-1.359 2.692-1.82zm.461 0c.924 0 1.744-.205 2.693-.59-.949-.872-1.667-1.359-2.693-1.82zm-3.897-.41A5.442 5.442 0 0 1 7.23 4.41C6.59 5 6.05 5.565 5.666 6.283c.436.384.795.64 1.334.897.359-.744.743-1.385 1.333-2.051zm7.333 0c.41-.205.77-.436 1.103-.718.641.59 1.18 1.154 1.564 1.872-.436.384-.795.64-1.333.897-.36-.744-.744-1.385-1.334-2.051zM11.77 6c-1 0-2.128-.282-3.026-.666a7.493 7.493 0 0 0-1.359 2.051c1.513.744 2.898 1.077 4.385 1.077zm.461 0c1 0 2.129-.282 3.026-.666a7.492 7.492 0 0 1 1.36 2.051c-1.514.744-2.898 1.077-4.386 1.077zm-6.82.693c.436.384.872.666 1.41.974-.256.564-.41 1.282-.513 1.975a12.27 12.27 0 0 1-1.564-.975c.129-.743.36-1.41.667-1.974zm13.179 0c-.436.384-.872.666-1.41.974.256.564.41 1.282.512 1.975a12.27 12.27 0 0 0 1.565-.975 6.396 6.396 0 0 0-.667-1.974zm-6.82 3.41H7.511C7.23 10 7 9.949 6.717 9.82a8.56 8.56 0 0 1 .487-1.974c1.41.743 2.898 1.076 4.564 1.076zm.461 0h4.256c.282-.103.513-.154.795-.282a8.56 8.56 0 0 0-.487-1.974c-1.41.743-2.897 1.076-4.564 1.076zm-7.667 0c0-.333.026-.615.077-.949.59.41.872.564 1.616.949zm14.872 0c0-.333-.025-.615-.077-.949-.59.41-.871.564-1.615.949z" }) + ] + } + ); +}); + +exports.default = SiWikiversity; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.d.ts new file mode 100644 index 000000000..352066a17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00649A"; +declare const SiWikiversity: IconType; +export { SiWikiversity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.mjs new file mode 100644 index 000000000..2235cdeeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikiversity.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00649A"; +const SiWikiversity = React.forwardRef(function SiWikiversity2({ title = "Wikiversity", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 20.462h24v.795H0zm19.974-8.692h3.205v8.256h-3.205zm-6.385 0h3.206v8.256h-3.206zm-6.384 0h3.205v8.256H7.205zm-6.385 0h3.205v8.256H.82zM0 10.539h24v.795H0zm7.615-6.436c1.103-.897 2.23-1.359 3.974-1.359-1.359.538-2.282 1.385-2.974 2.026-.41-.206-.692-.385-1-.667zm8.77 0c-1.103-.897-2.232-1.359-3.975-1.359 1.359.538 2.282 1.385 2.974 2.026.41-.206.693-.385 1-.667zm-4.616 1.436c-.923 0-1.744-.205-2.692-.59.948-.872 1.666-1.359 2.692-1.82zm.461 0c.924 0 1.744-.205 2.693-.59-.949-.872-1.667-1.359-2.693-1.82zm-3.897-.41A5.442 5.442 0 0 1 7.23 4.41C6.59 5 6.05 5.565 5.666 6.283c.436.384.795.64 1.334.897.359-.744.743-1.385 1.333-2.051zm7.333 0c.41-.205.77-.436 1.103-.718.641.59 1.18 1.154 1.564 1.872-.436.384-.795.64-1.333.897-.36-.744-.744-1.385-1.334-2.051zM11.77 6c-1 0-2.128-.282-3.026-.666a7.493 7.493 0 0 0-1.359 2.051c1.513.744 2.898 1.077 4.385 1.077zm.461 0c1 0 2.129-.282 3.026-.666a7.492 7.492 0 0 1 1.36 2.051c-1.514.744-2.898 1.077-4.386 1.077zm-6.82.693c.436.384.872.666 1.41.974-.256.564-.41 1.282-.513 1.975a12.27 12.27 0 0 1-1.564-.975c.129-.743.36-1.41.667-1.974zm13.179 0c-.436.384-.872.666-1.41.974.256.564.41 1.282.512 1.975a12.27 12.27 0 0 0 1.565-.975 6.396 6.396 0 0 0-.667-1.974zm-6.82 3.41H7.511C7.23 10 7 9.949 6.717 9.82a8.56 8.56 0 0 1 .487-1.974c1.41.743 2.898 1.076 4.564 1.076zm.461 0h4.256c.282-.103.513-.154.795-.282a8.56 8.56 0 0 0-.487-1.974c-1.41.743-2.897 1.076-4.564 1.076zm-7.667 0c0-.333.026-.615.077-.949.59.41.872.564 1.616.949zm14.872 0c0-.333-.025-.615-.077-.949-.59.41-.871.564-1.615.949z" }) + ] + } + ); +}); + +export { SiWikiversity as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.cjs new file mode 100644 index 000000000..3156f4fcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006699"; +const SiWikivoyage = React__namespace.forwardRef(function SiWikivoyage2({ title = "Wikivoyage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.9171 14.1784c-.4303 0-.782-.1366-1.0551-.4097-.2731-.2731-.4097-.6229-.4097-1.0492 0-.4253.1183-.7758.355-1.0513.2367-.2756.5425-.4133.9173-.4133.4072 0 .7216.1287.9431.3862.2215.2574.3323.6169.3323 1.0784v.1558H22.134c.0196.1606.0774.3017.1736.4233.1826.1692.3935.2537.6326.2537.1753 0 .3382-.0309.4885-.0926.1504-.0618.3407-.167.5712-.3155v.6475c-.1888.1426-.3662.2427-.532.3003-.166.0576-.3496.0864-.551.0864zm.4448-1.7748c-.0222-.133-.0706-.25-.1452-.3512-.1048-.1434-.2591-.215-.463-.215-.1808 0-.3297.0777-.4467.2334-.0802.1045-.134.2155-.1613.3328zm-3.7305 1.063c0 .036.0493.0798.148.1312.0987.0515.2261.0893.3822.1135.3783.0603.6517.1617.8203.304.1687.1424.253.3492.253.6204 0 .2661-.1247.4752-.374.6273-.2494.152-.58.2281-.9918.2281-.3867 0-.6964-.0817-.9292-.2452-.2327-.1635-.349-.3863-.349-.6686 0-.1946.0623-.3617.187-.5012.1248-.1395.2704-.218.4368-.2355-.1399-.0675-.2098-.1708-.2098-.3098 0-.1509.0928-.2761.2786-.3757.0444-.0242.0769-.0284.0973-.0125-.0726-.003-.1522-.0437-.239-.1221-.2002-.1856-.3003-.4227-.3003-.7114 0-.2898.1003-.5277.3007-.7136.2005-.1859.4573-.2788.7705-.2788.079 0 .1534.0058.2232.0176h1.099v.5445h-.3792c.0829.088.1257.2513.1284.4898 0 .2484-.1014.4669-.3042.6554-.1767.1625-.3991.253-.6674.2717l-.1795.0112a.3656.3656 0 00-.1332.0502c-.0456.029-.0684.0656-.0684.1094zm.2814-1.614c-.132 0-.24.0422-.3243.1264-.0841.0842-.1262.1942-.1262.3301 0 .1366.0419.2463.1257.3293.0838.0829.192.1244.3248.1244.1321 0 .2403-.0417.3244-.125.0842-.0832.1262-.1928.1262-.3287 0-.1353-.0424-.2454-.1273-.3304-.0841-.084-.1919-.126-.3233-.126zm-.7042 2.7277c0 .1078.0595.1972.1784.2683.119.071.2816.1066.4878.1066.2254 0 .4016-.03.5285-.09.127-.06.1904-.1347.1904-.2237 0-.0942-.0432-.1743-.1296-.2404-.0865-.0661-.2155-.1129-.387-.1402l-.0753-.0117a2.2197 2.2197 0 00-.2005-.0208c-.065-.0036-.1138-.0025-.1465.0033-.125.02-.225.0531-.3.0995-.0975.0607-.1462.1437-.1462.2492zm-2.382-.402c-.2113 0-.3806-.0667-.5076-.2002-.127-.1335-.1906-.3071-.1906-.521 0-.1895.0624-.353.1873-.4903.125-.1374.31-.25.5553-.338l.651-.2353v-.1258c0-.139-.0326-.2387-.0978-.299-.0652-.0603-.1721-.0905-.3207-.0905-.1661 0-.3145.0318-.4453.0953-.1307.0636-.2887.1698-.4742.3188v-.6237c.143-.1476.288-.2534.435-.3176.1468-.064.3103-.0961.4903-.0961.348 0 .614.0868.7981.2603.184.1736.276.4244.276.7525v1.3498c0 .022.0031.036.0093.042.0062.0063.0172.0093.0333.0093.0133 0 .0416-.0136.085-.041.0433-.0272.1262-.069.2486-.1252v.4182c-.0778.0778-.1734.1387-.2867.1828-.1134.044-.2214.066-.324.066-.119 0-.2193-.036-.3008-.1081-.0604-.0553-.0921-.1057-.0952-.1513-.0136.0453-.0612.0888-.1427.1305-.1794.0918-.374.1377-.5836.1377zm.6955-.625v-.751l-.257.1198c-.1584.0563-.2747.1243-.349.2038-.0744.0794-.1116.1724-.1116.2788 0 .0802.03.1447.09.1937.06.049.1414.0734.244.0734a.6166.6166 0 00.2578-.058 2.2801 2.2801 0 01.2-.0808zm-1.4784-2.1772L14.15 15.564h-.7242l.9329-2.1137-1.0612-2.1337h.7079l.7125 1.5336.6388-1.5336h.6868zm-4.3623 2.788c-.4608.0199-.8472-.1217-1.1267-.3951-.2795-.2734-.4192-.623-.4192-1.0488 0-.427.1399-.778.4196-1.0527.2797-.2746.6387-.412 1.0772-.412.4378 0 .7973.1375 1.0784.4125.281.275.4216.6257.4216 1.0521 0 .4254-.1404.7749-.4211 1.0485-.2808.2736-.635.3956-1.0298.3956zm-.0025-.5496c.2204-.0198.3935-.0987.547-.2603.1535-.1617.2303-.373.2303-.634 0-.263-.0768-.4759-.2304-.6384-.1536-.1626-.3514-.2439-.5935-.2439-.2426 0-.44.0812-.5924.2434-.1523.1623-.2285.3752-.2285.6388 0 .2625.076.4741.228.635.152.161.3527.2594.6395.2594zm-4.4176-2.2977H7.9537l.6612 1.656.664-1.656h.6875l-1.2286 2.8421H8.486zm9.2173-.7027V7.8232h.6733v2.8515h-.5401zm.3366-3.963c.1103 0 .2034.038.2793.1138.0759.0759.1138.167.1138.2733a.3727.3727 0 01-.1133.2735c-.0756.0756-.1688.1133-.2798.1133-.1116 0-.205-.0376-.2803-.1128-.0752-.0752-.1128-.1666-.1128-.274a.373.373 0 01.1133-.2738c.0755-.0755.1688-.1133.2798-.1133zm-2.6679-.1823v4.2063h-.6732V6.4082h.6732zm1.2855 4.1457L14.041 9.2523l1.258-1.4287H16.0557l-1.199 1.4145 1.4127 1.4369h-.7034zm-3.3006-.0004V7.8232h.6733v2.8515h-.5401zm.3366-3.963c.1103 0 .2034.038.2793.1138.0758.0759.1138.167.1138.2733a.3728.3728 0 01-.1133.2735c-.0756.0756-.1688.1133-.2798.1133-.1116 0-.205-.0376-.2803-.1128-.0752-.0752-.1128-.1666-.1128-.274a.373.373 0 01.1133-.2738c.0755-.0755.1688-.1133.2798-.1133zM8.49 10.717L7.2613 7.824h.6986l.6615 1.6798.682-1.7213h.4222l.6763 1.7124.6642-1.671h.6998l-1.242 2.893h-.2561l-.762-1.843-.7593 1.843h-.1277zm3.7676 6.3222l4.0081 6.0705.4359-7.2612a4.6007 4.6007 0 01-4.444 1.1907zM7.2613 6.4082L0 6.8441l6.0705 4.0081a4.6007 4.6007 0 011.1908-4.444zm11.705.9885L22.2197.8903l-6.5064 3.2532a4.6008 4.6008 0 013.2532 3.2532z" }) + ] + } + ); +}); + +exports.default = SiWikivoyage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.d.ts new file mode 100644 index 000000000..1ebc8e3d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006699"; +declare const SiWikivoyage: IconType; +export { SiWikivoyage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.mjs new file mode 100644 index 000000000..31d9d2042 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWikivoyage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006699"; +const SiWikivoyage = React.forwardRef(function SiWikivoyage2({ title = "Wikivoyage", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.9171 14.1784c-.4303 0-.782-.1366-1.0551-.4097-.2731-.2731-.4097-.6229-.4097-1.0492 0-.4253.1183-.7758.355-1.0513.2367-.2756.5425-.4133.9173-.4133.4072 0 .7216.1287.9431.3862.2215.2574.3323.6169.3323 1.0784v.1558H22.134c.0196.1606.0774.3017.1736.4233.1826.1692.3935.2537.6326.2537.1753 0 .3382-.0309.4885-.0926.1504-.0618.3407-.167.5712-.3155v.6475c-.1888.1426-.3662.2427-.532.3003-.166.0576-.3496.0864-.551.0864zm.4448-1.7748c-.0222-.133-.0706-.25-.1452-.3512-.1048-.1434-.2591-.215-.463-.215-.1808 0-.3297.0777-.4467.2334-.0802.1045-.134.2155-.1613.3328zm-3.7305 1.063c0 .036.0493.0798.148.1312.0987.0515.2261.0893.3822.1135.3783.0603.6517.1617.8203.304.1687.1424.253.3492.253.6204 0 .2661-.1247.4752-.374.6273-.2494.152-.58.2281-.9918.2281-.3867 0-.6964-.0817-.9292-.2452-.2327-.1635-.349-.3863-.349-.6686 0-.1946.0623-.3617.187-.5012.1248-.1395.2704-.218.4368-.2355-.1399-.0675-.2098-.1708-.2098-.3098 0-.1509.0928-.2761.2786-.3757.0444-.0242.0769-.0284.0973-.0125-.0726-.003-.1522-.0437-.239-.1221-.2002-.1856-.3003-.4227-.3003-.7114 0-.2898.1003-.5277.3007-.7136.2005-.1859.4573-.2788.7705-.2788.079 0 .1534.0058.2232.0176h1.099v.5445h-.3792c.0829.088.1257.2513.1284.4898 0 .2484-.1014.4669-.3042.6554-.1767.1625-.3991.253-.6674.2717l-.1795.0112a.3656.3656 0 00-.1332.0502c-.0456.029-.0684.0656-.0684.1094zm.2814-1.614c-.132 0-.24.0422-.3243.1264-.0841.0842-.1262.1942-.1262.3301 0 .1366.0419.2463.1257.3293.0838.0829.192.1244.3248.1244.1321 0 .2403-.0417.3244-.125.0842-.0832.1262-.1928.1262-.3287 0-.1353-.0424-.2454-.1273-.3304-.0841-.084-.1919-.126-.3233-.126zm-.7042 2.7277c0 .1078.0595.1972.1784.2683.119.071.2816.1066.4878.1066.2254 0 .4016-.03.5285-.09.127-.06.1904-.1347.1904-.2237 0-.0942-.0432-.1743-.1296-.2404-.0865-.0661-.2155-.1129-.387-.1402l-.0753-.0117a2.2197 2.2197 0 00-.2005-.0208c-.065-.0036-.1138-.0025-.1465.0033-.125.02-.225.0531-.3.0995-.0975.0607-.1462.1437-.1462.2492zm-2.382-.402c-.2113 0-.3806-.0667-.5076-.2002-.127-.1335-.1906-.3071-.1906-.521 0-.1895.0624-.353.1873-.4903.125-.1374.31-.25.5553-.338l.651-.2353v-.1258c0-.139-.0326-.2387-.0978-.299-.0652-.0603-.1721-.0905-.3207-.0905-.1661 0-.3145.0318-.4453.0953-.1307.0636-.2887.1698-.4742.3188v-.6237c.143-.1476.288-.2534.435-.3176.1468-.064.3103-.0961.4903-.0961.348 0 .614.0868.7981.2603.184.1736.276.4244.276.7525v1.3498c0 .022.0031.036.0093.042.0062.0063.0172.0093.0333.0093.0133 0 .0416-.0136.085-.041.0433-.0272.1262-.069.2486-.1252v.4182c-.0778.0778-.1734.1387-.2867.1828-.1134.044-.2214.066-.324.066-.119 0-.2193-.036-.3008-.1081-.0604-.0553-.0921-.1057-.0952-.1513-.0136.0453-.0612.0888-.1427.1305-.1794.0918-.374.1377-.5836.1377zm.6955-.625v-.751l-.257.1198c-.1584.0563-.2747.1243-.349.2038-.0744.0794-.1116.1724-.1116.2788 0 .0802.03.1447.09.1937.06.049.1414.0734.244.0734a.6166.6166 0 00.2578-.058 2.2801 2.2801 0 01.2-.0808zm-1.4784-2.1772L14.15 15.564h-.7242l.9329-2.1137-1.0612-2.1337h.7079l.7125 1.5336.6388-1.5336h.6868zm-4.3623 2.788c-.4608.0199-.8472-.1217-1.1267-.3951-.2795-.2734-.4192-.623-.4192-1.0488 0-.427.1399-.778.4196-1.0527.2797-.2746.6387-.412 1.0772-.412.4378 0 .7973.1375 1.0784.4125.281.275.4216.6257.4216 1.0521 0 .4254-.1404.7749-.4211 1.0485-.2808.2736-.635.3956-1.0298.3956zm-.0025-.5496c.2204-.0198.3935-.0987.547-.2603.1535-.1617.2303-.373.2303-.634 0-.263-.0768-.4759-.2304-.6384-.1536-.1626-.3514-.2439-.5935-.2439-.2426 0-.44.0812-.5924.2434-.1523.1623-.2285.3752-.2285.6388 0 .2625.076.4741.228.635.152.161.3527.2594.6395.2594zm-4.4176-2.2977H7.9537l.6612 1.656.664-1.656h.6875l-1.2286 2.8421H8.486zm9.2173-.7027V7.8232h.6733v2.8515h-.5401zm.3366-3.963c.1103 0 .2034.038.2793.1138.0759.0759.1138.167.1138.2733a.3727.3727 0 01-.1133.2735c-.0756.0756-.1688.1133-.2798.1133-.1116 0-.205-.0376-.2803-.1128-.0752-.0752-.1128-.1666-.1128-.274a.373.373 0 01.1133-.2738c.0755-.0755.1688-.1133.2798-.1133zm-2.6679-.1823v4.2063h-.6732V6.4082h.6732zm1.2855 4.1457L14.041 9.2523l1.258-1.4287H16.0557l-1.199 1.4145 1.4127 1.4369h-.7034zm-3.3006-.0004V7.8232h.6733v2.8515h-.5401zm.3366-3.963c.1103 0 .2034.038.2793.1138.0758.0759.1138.167.1138.2733a.3728.3728 0 01-.1133.2735c-.0756.0756-.1688.1133-.2798.1133-.1116 0-.205-.0376-.2803-.1128-.0752-.0752-.1128-.1666-.1128-.274a.373.373 0 01.1133-.2738c.0755-.0755.1688-.1133.2798-.1133zM8.49 10.717L7.2613 7.824h.6986l.6615 1.6798.682-1.7213h.4222l.6763 1.7124.6642-1.671h.6998l-1.242 2.893h-.2561l-.762-1.843-.7593 1.843h-.1277zm3.7676 6.3222l4.0081 6.0705.4359-7.2612a4.6007 4.6007 0 01-4.444 1.1907zM7.2613 6.4082L0 6.8441l6.0705 4.0081a4.6007 4.6007 0 011.1908-4.444zm11.705.9885L22.2197.8903l-6.5064 3.2532a4.6008 4.6008 0 013.2532 3.2532z" }) + ] + } + ); +}); + +export { SiWikivoyage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.cjs new file mode 100644 index 000000000..139cf8641 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F93821"; +const SiWinamp = React__namespace.forwardRef(function SiWinamp2({ title = "Winamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.902 0a.987.987 0 0 0-.91.604l-6.139 14.57c-.176.42.131.883.586.883H8.66a.987.987 0 0 0 .91-.604L15.707.883A.636.636 0 0 0 15.12 0h-3.219Zm3.438 7.943a.987.987 0 0 0-.91.604l-6.137 14.57c-.177.42.13.883.586.883h3.219a.987.987 0 0 0 .91-.604l6.138-14.57a.636.636 0 0 0-.586-.883h-3.22Z" }) + ] + } + ); +}); + +exports.default = SiWinamp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.d.ts new file mode 100644 index 000000000..a849e959e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F93821"; +declare const SiWinamp: IconType; +export { SiWinamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.mjs new file mode 100644 index 000000000..d6b7f19fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWinamp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F93821"; +const SiWinamp = React.forwardRef(function SiWinamp2({ title = "Winamp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.902 0a.987.987 0 0 0-.91.604l-6.139 14.57c-.176.42.131.883.586.883H8.66a.987.987 0 0 0 .91-.604L15.707.883A.636.636 0 0 0 15.12 0h-3.219Zm3.438 7.943a.987.987 0 0 0-.91.604l-6.137 14.57c-.177.42.13.883.586.883h3.219a.987.987 0 0 0 .91-.604l6.138-14.57a.636.636 0 0 0-.586-.883h-3.22Z" }) + ] + } + ); +}); + +export { SiWinamp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.cjs new file mode 100644 index 000000000..363b82068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B100F"; +const SiWindsurf = React__namespace.forwardRef(function SiWindsurf2({ title = "Windsurf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.55 5.067c-1.2038-.002-2.1806.973-2.1806 2.1765v4.8676c0 .972-.8035 1.7594-1.7597 1.7594-.568 0-1.1352-.286-1.4718-.7659l-4.9713-7.1003c-.4125-.5896-1.0837-.941-1.8103-.941-1.1334 0-2.1533.9635-2.1533 2.153v4.8957c0 .972-.7969 1.7594-1.7596 1.7594-.57 0-1.1363-.286-1.4728-.7658L.4076 5.1598C.2822 4.9798 0 5.0688 0 5.2882v4.2452c0 .2147.0656.4228.1884.599l5.4748 7.8183c.3234.462.8006.8052 1.3509.9298 1.3771.313 2.6446-.747 2.6446-2.0977v-4.893c0-.972.7875-1.7593 1.7596-1.7593h.003a1.798 1.798 0 0 1 1.4718.7658l4.9723 7.0994c.4135.5905 1.05.941 1.8093.941 1.1587 0 2.1515-.9645 2.1515-2.153v-4.8948c0-.972.7875-1.7594 1.7596-1.7594h.194a.22.22 0 0 0 .2204-.2202v-4.622a.22.22 0 0 0-.2203-.2203Z" }) + ] + } + ); +}); + +exports.default = SiWindsurf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.d.ts new file mode 100644 index 000000000..4cbf794c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B100F"; +declare const SiWindsurf: IconType; +export { SiWindsurf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.mjs new file mode 100644 index 000000000..6d032b2ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWindsurf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B100F"; +const SiWindsurf = React.forwardRef(function SiWindsurf2({ title = "Windsurf", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.55 5.067c-1.2038-.002-2.1806.973-2.1806 2.1765v4.8676c0 .972-.8035 1.7594-1.7597 1.7594-.568 0-1.1352-.286-1.4718-.7659l-4.9713-7.1003c-.4125-.5896-1.0837-.941-1.8103-.941-1.1334 0-2.1533.9635-2.1533 2.153v4.8957c0 .972-.7969 1.7594-1.7596 1.7594-.57 0-1.1363-.286-1.4728-.7658L.4076 5.1598C.2822 4.9798 0 5.0688 0 5.2882v4.2452c0 .2147.0656.4228.1884.599l5.4748 7.8183c.3234.462.8006.8052 1.3509.9298 1.3771.313 2.6446-.747 2.6446-2.0977v-4.893c0-.972.7875-1.7593 1.7596-1.7593h.003a1.798 1.798 0 0 1 1.4718.7658l4.9723 7.0994c.4135.5905 1.05.941 1.8093.941 1.1587 0 2.1515-.9645 2.1515-2.153v-4.8948c0-.972.7875-1.7594 1.7596-1.7594h.194a.22.22 0 0 0 .2204-.2202v-4.622a.22.22 0 0 0-.2203-.2203Z" }) + ] + } + ); +}); + +export { SiWindsurf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWine.cjs new file mode 100644 index 000000000..6a0bc47e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#800000"; +const SiWine = React__namespace.forwardRef(function SiWine2({ title = "Wine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.045 0C8.839.03 5.68 1.06 4.915 2.34c.848 3.193 2.025 9.576 4.7 12.09.6.565 1.455.785 2.27 1.768l.193.324c.6 1.676 1.371 3.814.246 5.104-1.833.54-3.08 1.253-2.976 1.78.133.676 2.42.792 5.107.26 2.687-.53 4.759-1.508 4.625-2.183-.11-.554-1.672-.73-3.715-.482-1.884-.885-1.955-3.022-2.226-4.674l.025-.4c.116-.556.689-1.793 1.035-2.393 1.605-2.779.003-8.337-1.203-13.066-.37-.338-1.088-.479-1.951-.467zm1.832 3.674c.208-.002.44.052.705.176 2.759 8.733-.429 11.097-1.217 11.816-2.55-.882-4.278-1.862-6.244-9.312 4.972 2.58 4.744-2.659 6.756-2.68z" }) + ] + } + ); +}); + +exports.default = SiWine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWine.d.ts new file mode 100644 index 000000000..c059e7584 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#800000"; +declare const SiWine: IconType; +export { SiWine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWine.mjs new file mode 100644 index 000000000..1cb9c4b4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#800000"; +const SiWine = React.forwardRef(function SiWine2({ title = "Wine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.045 0C8.839.03 5.68 1.06 4.915 2.34c.848 3.193 2.025 9.576 4.7 12.09.6.565 1.455.785 2.27 1.768l.193.324c.6 1.676 1.371 3.814.246 5.104-1.833.54-3.08 1.253-2.976 1.78.133.676 2.42.792 5.107.26 2.687-.53 4.759-1.508 4.625-2.183-.11-.554-1.672-.73-3.715-.482-1.884-.885-1.955-3.022-2.226-4.674l.025-.4c.116-.556.689-1.793 1.035-2.393 1.605-2.779.003-8.337-1.203-13.066-.37-.338-1.088-.479-1.951-.467zm1.832 3.674c.208-.002.44.052.705.176 2.759 8.733-.429 11.097-1.217 11.816-2.55-.882-4.278-1.862-6.244-9.312 4.972 2.58 4.744-2.659 6.756-2.68z" }) + ] + } + ); +}); + +export { SiWine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.cjs new file mode 100644 index 000000000..5aaa60633 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#341C53"; +const SiWipro = React__namespace.forwardRef(function SiWipro2({ title = "Wipro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.5415 12.0352c0-.8754-.69-1.5851-1.541-1.5851-.8513 0-1.5415.7097-1.5415 1.585 0 .8757.6902 1.5854 1.5416 1.5854.851 0 1.541-.7097 1.541-1.5853zm-1.541.837c-.4373 0-.7927-.3755-.7927-.837 0-.4611.3554-.8366.7928-.8366.437 0 .7923.3755.7923.8366 0 .4615-.3554.837-.7923.837zm-9.5842-2.2084l-.9272 2.8733c-.0148.046-.0665.0835-.1152.0835h-.084c-.0484 0-.1064-.0352-.1287-.078l-.95-1.8242-.9496 1.8243c-.0225.0427-.0803.0779-.1289.0779h-.0842c-.0483 0-.1002-.0374-.115-.0835L.006 10.6638c-.0222-.0693.019-.126.0915-.126h.5677c.0483 0 .1002.0379.115.084l.4688 1.452.8047-1.5458c.0223-.0428.0804-.0779.1289-.0779H2.24c.0485 0 .1063.0351.1289.0779l.805 1.5458.4685-1.452c.0148-.0461.0667-.084.1152-.084h.5672c.0727 0 .1138.0567.0915.126zm1.368 2.7367a.1323.1323 0 01-.1321.1322h-.5726a.1321.1321 0 01-.132-.1322v-2.7304c0-.0729.059-.1322.132-.1322h.5726a.1323.1323 0 01.1322.1322v2.7304zm.7409-2.7305v4.3155c0 .0733.059.1322.1321.1322h.5725a.1318.1318 0 00.132-.1322v-1.497c.2426.085.5106.132.7927.132.8024 0 1.4531-.7097 1.4531-1.5853 0-.8754-.6507-1.5851-1.4531-1.5851-.394 0-.751.171-1.0127.4487l-.0002-.0004-.1018-.2777c-.0167-.0453-.07-.0829-.1183-.0829h-.2642a.1321.1321 0 00-.1321.1322zm.8365.9c.1376-.2239.3713-.3714.6373-.3714.4235 0 .7667.3746.7667.8366 0 .4622-.3432.837-.7667.837-.2396 0-.4599-.063-.6373-.1694V11.57zm3.5755 1.9627h-.5723a.1321.1321 0 01-.1321-.1321V10.67c0-.0729.059-.1322.1321-.1322h.2642c.0483 0 .1016.0376.1183.0829l.1018.2777s.3195-.4483.87-.4483c.5507 0 .6172.1897.5712.2947-.0463.1047-.1714.3878-.197.4454-.0254.058-.0903.099-.1772.0657-.087-.0335-.5128-.1723-.8469.2329v1.9118a.1323.1323 0 01-.1321.1321zm4.6893-10.3422a.704.704 0 01.8628-.4977.7043.7043 0 11-.3647 1.3607.7046.7046 0 01-.498-.863zm1.8466 2.7892a.5286.5286 0 01.1935.722.528.528 0 01-.7218.193.5281.5281 0 01-.1935-.7215.5281.5281 0 01.7218-.1935zm.664 10.9686a.5727.5727 0 010-.8099.5722.5722 0 01.8096 0 .5727.5727 0 010 .81.573.573 0 01-.8095 0zm-2.4577-7.377a.2423.2423 0 01-.4196-.2423.2422.2422 0 11.4196.2422zm-.4196 5.1001a.2423.2423 0 01.4196-.2422.2425.2425 0 01-.0888.331.2426.2426 0 01-.3308-.0888zm3.7296-2.6713a.517.517 0 11-.5169-.5169.517.517 0 01.517.5169zM17.816 3.8893a.7485.7485 0 111.2962.749.7485.7485 0 01-1.2962-.749zm-5.43 10.5742a.154.154 0 11.2666.154.154.154 0 01-.2666-.154zm2.8037-8.7912a.4842.4842 0 11.9354.2502.4843.4843 0 01-.593.3428.4844.4844 0 01-.3424-.593zM13.993 7.8486a.308.308 0 110-.6162.308.308 0 110 .6162zm0 1.0129a.1982.1982 0 11.0002.3962.1982.1982 0 01-.0002-.3962zm0-2.84a.4404.4404 0 110-.881.4404.4404 0 010 .881zm-1.6072 3.5154a.154.154 0 11.2102.0564.1537.1537 0 01-.2102-.0564zm1.6072 5.602a.1982.1982 0 11-.0001-.3963.1982.1982 0 010 .3964zm0 1.0127a.3081.3081 0 010 .6165.3081.3081 0 110-.6165zm3.4944-2.1381a.4399.4399 0 01.6014-.161.44.44 0 01.161.6013.4402.4402 0 01-.7624-.4403zm-3.4944 3.9655a.4404.4404 0 11-.0002.8808.4404.4404 0 01.0002-.8808zm9.5772-8.5426c.1383.5164-.168 1.0476-.6848 1.186-.5165.1383-1.0478-.1684-1.1861-.6849-.1386-.5164.1682-1.0475.6847-1.186.5165-.1384 1.0476.168 1.1862.6849zm-6.694 6.0018a.3963.3963 0 01.5602-.5607.396.396 0 010 .5602.3958.3958 0 01-.5602.0005zm.9736-4.4694a.484.484 0 01.3424-.5928.4841.4841 0 11.2507.9353.484.484 0 01-.593-.3425zm1.4076-2.7157a.6165.6165 0 01.6166 1.0676.6165.6165 0 01-.6166-1.0676zm-.3108-.3913a.5722.5722 0 01-.8095 0 .5725.5725 0 010-.8097.5722.5722 0 01.8095 0 .5725.5725 0 010 .8097zm-1.0968 5.1692a.4842.4842 0 01.9355.2509.4842.4842 0 11-.9355-.251zm-3.0186-5.4263a.3303.3303 0 01.4041-.2336.3303.3303 0 01-.1706.6381.3303.3303 0 01-.2335-.4045zm6.4676-.835c.4213-.2434.96-.0992 1.2031.3218a.8806.8806 0 11-1.5254.8808c-.2429-.421-.0987-.9596.3223-1.2027zm-3.049 2.777a.4401.4401 0 11-.7624.4402.4401.4401 0 11.7624-.4402zm1.3227.9608a.6606.6606 0 01.4667-.8089.6605.6605 0 01.342 1.2758.6605.6605 0 01-.8087-.467zm0 2.9854a.6603.6603 0 111.2756.3416.6602.6602 0 11-1.2756-.3416zm.8594-.7354a.7574.7574 0 11-.0002-1.5146.7574.7574 0 01.0002 1.5146zm-.6756-6.5149a.7921.7921 0 010-1.1207c.3095-.3095.8115-.31 1.1209 0a.7926.7926 0 01-1.1209 1.1207zm-3.2223 2.068a.3522.3522 0 11-.61-.3523.3522.3522 0 01.61.3522zm-.6387 5.5862a.2642.2642 0 01.3738-.0004.2646.2646 0 010 .3738.2638.2638 0 01-.3738 0 .2637.2637 0 010-.3734zm0-4.1666a.2642.2642 0 01.3738-.0004.2642.2642 0 11-.3738.0004zm.5146 3.9917a.2868.2868 0 01-.105-.391.2862.2862 0 01.3912-.1046.2863.2863 0 01-.2862.4956zm-.486 2.3203a.352.352 0 01.129-.4811.352.352 0 01.4811.1288.352.352 0 01-.1289.4811.3521.3521 0 01-.4811-.1288zm.877-5.659a.286.286 0 01-.1048.3909.2867.2867 0 01-.3911-.1049.2862.2862 0 01.4958-.286zm-.2485.9334a.3082.3082 0 11.5955-.1596.3082.3082 0 01-.5955.1596zm0 1.3668a.3083.3083 0 11.5953.1602.3083.3083 0 01-.5953-.1602zm.4008-.3467a.3366.3366 0 11.0001-.6731.3366.3366 0 01-.0001.6731zm.4832-3.7744a.3963.3963 0 11-.5602.5608.3963.3963 0 01.5602-.5608zm-7.416 11.4507a.573.573 0 01-.782.2096.5726.5726 0 01.5725-.9916.5725.5725 0 01.2096.782zM14.814 8.945a.2202.2202 0 11-.114.4253.2202.2202 0 01.114-.4254zm-2.5387 11.8366a.6164.6164 0 11-1.1908-.3189.6164.6164 0 011.1908.319zm2.5387-5.726a.2203.2203 0 01-.1138-.4255.22.22 0 11.1138.4254zm-.1604 5.8739a.6603.6603 0 01-.6604.6602.6603.6603 0 01-.6606-.6602c0-.3649.2959-.6608.6606-.6608.3647 0 .6604.296.6604.6608zm-1.4693-5.9217a.1767.1767 0 01-.1247-.2158.1766.1766 0 01.216-.1245.1761.1761 0 01-.0913.3403zm-.0712 1.3712a.2863.2863 0 11-.5526-.1478.2863.2863 0 01.5526.1478zm-2.795-2.2726a.2202.2202 0 01-.3812.2202.2195.2195 0 01.0805-.3005.2198.2198 0 01.3007.0803zm1.6704 1.8817a.2642.2642 0 11-.4578-.2638.2642.2642 0 01.4578.2638zm.0148-1.8253a.1321.1321 0 11-.1869-.1869.1328.1328 0 01.187 0 .1325.1325 0 010 .187zm-.9966.81a.242.242 0 11-.3423.342.2418.2418 0 010-.342.2417.2417 0 01.3423 0zm.0783 2.7563a.3518.3518 0 01-.4811.1289.3522.3522 0 11.4811-.1289zm9.7924.0285a.7926.7926 0 010 1.121c-.3094.3097-.8114.3093-1.121 0-.3097-.3094-.3095-.8114 0-1.121a.793.793 0 011.121 0zm-1.6198-2.0103a.6169.6169 0 01-.2255-.8423.6168.6168 0 01.842-.2255.6165.6165 0 01-.6166 1.0678zm3.2445 1.1612c-.243.4214-.7818.5656-1.203.3223-.4211-.243-.5653-.7816-.3224-1.2026.2437-.4211.782-.5655 1.203-.3224.4213.2433.5657.7816.3224 1.2027zm-7.2666-.2796a.33.33 0 11-.1706-.638.3301.3301 0 01.1706.638zM24 12c0 .584-.4735 1.058-1.058 1.058-.5843 0-1.0578-.474-1.0578-1.058 0-.5842.4735-1.0579 1.0579-1.0579S24 11.4159 24 12.0001zm-.4297 2.564c-.1386.5164-.6697.8233-1.1862.685-.5165-.1387-.8233-.6698-.6847-1.1862.1383-.5169.6696-.8234 1.1861-.685.5169.1386.8231.6697.6848 1.1861zm-6.583 5.881a.7044.7044 0 11-1.3608.3643.7042.7042 0 01.4981-.8625.7043.7043 0 01.8628.4981zm2.1248-1.0825a.748.748 0 01-.274 1.0221.7482.7482 0 01-1.0222-.2738.748.748 0 01.2738-1.0224.7484.7484 0 011.0224.274zm-3.9225-1.0344a.4843.4843 0 11.9355-.2507.4843.4843 0 01-.9355.2507zm2.2835-.3077a.5284.5284 0 11-.5284-.9153.5284.5284 0 01.5284.9153zm-4.761.2798a.3963.3963 0 01-.7655-.205.396.396 0 01.4853-.2803.3964.3964 0 01.2802.4853zm-.8958-8.2762a.132.132 0 11.1868-.1869.132.132 0 01-.1868.1869zm.0754-1.651a.2643.2643 0 01-.2643-.4576.2642.2642 0 01.2643.4576zm-.8072-4.8355a.6164.6164 0 111.1905-.3188.6164.6164 0 01-1.1905.3188zm-.847 6.0555a.22.22 0 11-.2201.3812.2195.2195 0 01-.0806-.3004.22.22 0 01.3006-.0808zm.7691-.908a.2423.2423 0 01-.3423.3426.2423.2423 0 01.3423-.3426zm-.5319-2.0617a.3524.3524 0 01.6102-.352.3522.3522 0 01-.6102.352zm2.8578-3.5523c0-.3648.2959-.6608.6606-.6608.3647 0 .6604.296.6604.6608a.6606.6606 0 01-.6604.6607.6608.6608 0 01-.6606-.6607zm-.1483 5.9215a.1761.1761 0 11.091.3404.1761.1761 0 01-.091-.3404zm-.9575-3.5729a.3964.3964 0 01.2053.7657.3962.3962 0 01-.4854-.2802.3966.3966 0 01.28-.4855zm.5358 1.9992a.2863.2863 0 11.148.553.2863.2863 0 01-.148-.553zM9.0292 4.5596a.5724.5724 0 01.2094-.7818.5725.5725 0 01.5724.9914.572.572 0 01-.7818-.2096zm-.37 10.5048a.2643.2643 0 11-.458.264.2643.2643 0 01.458-.264zM4.9193 9.4585a.462.462 0 01.566-.3267.462.462 0 01.327.5658.4621.4621 0 01-.5661.3271.4624.4624 0 01-.327-.5662zm.9001-2.1691a.4843.4843 0 11.1772.6616.4845.4845 0 01-.1772-.6616zm2.2292 10.6412a.528.528 0 010 .7472.5286.5286 0 01-.7473 0 .5285.5285 0 010-.7472.5282.5282 0 01.7473 0zM6.676 16.2091a.4842.4842 0 11-.8386.4845.4842.4842 0 01.8386-.4845zm.6255-10.1393a.5285.5285 0 010-.7472.5286.5286 0 01.7473 0 .528.528 0 010 .7472.5282.5282 0 01-.7473 0zM9.6679 7.689a.3086.3086 0 01-.436 0 .3085.3085 0 010-.4362.3086.3086 0 01.436 0 .3085.3085 0 010 .4362zm0 8.6225a.3082.3082 0 11-.4359.4359.3082.3082 0 01.4359-.436zM8.2015 8.6719a.2642.2642 0 11.4574.2642.2642.2642 0 01-.4574-.2642z" }) + ] + } + ); +}); + +exports.default = SiWipro; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.d.ts new file mode 100644 index 000000000..12c105cf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#341C53"; +declare const SiWipro: IconType; +export { SiWipro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.mjs new file mode 100644 index 000000000..f6698de7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWipro.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#341C53"; +const SiWipro = React.forwardRef(function SiWipro2({ title = "Wipro", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.5415 12.0352c0-.8754-.69-1.5851-1.541-1.5851-.8513 0-1.5415.7097-1.5415 1.585 0 .8757.6902 1.5854 1.5416 1.5854.851 0 1.541-.7097 1.541-1.5853zm-1.541.837c-.4373 0-.7927-.3755-.7927-.837 0-.4611.3554-.8366.7928-.8366.437 0 .7923.3755.7923.8366 0 .4615-.3554.837-.7923.837zm-9.5842-2.2084l-.9272 2.8733c-.0148.046-.0665.0835-.1152.0835h-.084c-.0484 0-.1064-.0352-.1287-.078l-.95-1.8242-.9496 1.8243c-.0225.0427-.0803.0779-.1289.0779h-.0842c-.0483 0-.1002-.0374-.115-.0835L.006 10.6638c-.0222-.0693.019-.126.0915-.126h.5677c.0483 0 .1002.0379.115.084l.4688 1.452.8047-1.5458c.0223-.0428.0804-.0779.1289-.0779H2.24c.0485 0 .1063.0351.1289.0779l.805 1.5458.4685-1.452c.0148-.0461.0667-.084.1152-.084h.5672c.0727 0 .1138.0567.0915.126zm1.368 2.7367a.1323.1323 0 01-.1321.1322h-.5726a.1321.1321 0 01-.132-.1322v-2.7304c0-.0729.059-.1322.132-.1322h.5726a.1323.1323 0 01.1322.1322v2.7304zm.7409-2.7305v4.3155c0 .0733.059.1322.1321.1322h.5725a.1318.1318 0 00.132-.1322v-1.497c.2426.085.5106.132.7927.132.8024 0 1.4531-.7097 1.4531-1.5853 0-.8754-.6507-1.5851-1.4531-1.5851-.394 0-.751.171-1.0127.4487l-.0002-.0004-.1018-.2777c-.0167-.0453-.07-.0829-.1183-.0829h-.2642a.1321.1321 0 00-.1321.1322zm.8365.9c.1376-.2239.3713-.3714.6373-.3714.4235 0 .7667.3746.7667.8366 0 .4622-.3432.837-.7667.837-.2396 0-.4599-.063-.6373-.1694V11.57zm3.5755 1.9627h-.5723a.1321.1321 0 01-.1321-.1321V10.67c0-.0729.059-.1322.1321-.1322h.2642c.0483 0 .1016.0376.1183.0829l.1018.2777s.3195-.4483.87-.4483c.5507 0 .6172.1897.5712.2947-.0463.1047-.1714.3878-.197.4454-.0254.058-.0903.099-.1772.0657-.087-.0335-.5128-.1723-.8469.2329v1.9118a.1323.1323 0 01-.1321.1321zm4.6893-10.3422a.704.704 0 01.8628-.4977.7043.7043 0 11-.3647 1.3607.7046.7046 0 01-.498-.863zm1.8466 2.7892a.5286.5286 0 01.1935.722.528.528 0 01-.7218.193.5281.5281 0 01-.1935-.7215.5281.5281 0 01.7218-.1935zm.664 10.9686a.5727.5727 0 010-.8099.5722.5722 0 01.8096 0 .5727.5727 0 010 .81.573.573 0 01-.8095 0zm-2.4577-7.377a.2423.2423 0 01-.4196-.2423.2422.2422 0 11.4196.2422zm-.4196 5.1001a.2423.2423 0 01.4196-.2422.2425.2425 0 01-.0888.331.2426.2426 0 01-.3308-.0888zm3.7296-2.6713a.517.517 0 11-.5169-.5169.517.517 0 01.517.5169zM17.816 3.8893a.7485.7485 0 111.2962.749.7485.7485 0 01-1.2962-.749zm-5.43 10.5742a.154.154 0 11.2666.154.154.154 0 01-.2666-.154zm2.8037-8.7912a.4842.4842 0 11.9354.2502.4843.4843 0 01-.593.3428.4844.4844 0 01-.3424-.593zM13.993 7.8486a.308.308 0 110-.6162.308.308 0 110 .6162zm0 1.0129a.1982.1982 0 11.0002.3962.1982.1982 0 01-.0002-.3962zm0-2.84a.4404.4404 0 110-.881.4404.4404 0 010 .881zm-1.6072 3.5154a.154.154 0 11.2102.0564.1537.1537 0 01-.2102-.0564zm1.6072 5.602a.1982.1982 0 11-.0001-.3963.1982.1982 0 010 .3964zm0 1.0127a.3081.3081 0 010 .6165.3081.3081 0 110-.6165zm3.4944-2.1381a.4399.4399 0 01.6014-.161.44.44 0 01.161.6013.4402.4402 0 01-.7624-.4403zm-3.4944 3.9655a.4404.4404 0 11-.0002.8808.4404.4404 0 01.0002-.8808zm9.5772-8.5426c.1383.5164-.168 1.0476-.6848 1.186-.5165.1383-1.0478-.1684-1.1861-.6849-.1386-.5164.1682-1.0475.6847-1.186.5165-.1384 1.0476.168 1.1862.6849zm-6.694 6.0018a.3963.3963 0 01.5602-.5607.396.396 0 010 .5602.3958.3958 0 01-.5602.0005zm.9736-4.4694a.484.484 0 01.3424-.5928.4841.4841 0 11.2507.9353.484.484 0 01-.593-.3425zm1.4076-2.7157a.6165.6165 0 01.6166 1.0676.6165.6165 0 01-.6166-1.0676zm-.3108-.3913a.5722.5722 0 01-.8095 0 .5725.5725 0 010-.8097.5722.5722 0 01.8095 0 .5725.5725 0 010 .8097zm-1.0968 5.1692a.4842.4842 0 01.9355.2509.4842.4842 0 11-.9355-.251zm-3.0186-5.4263a.3303.3303 0 01.4041-.2336.3303.3303 0 01-.1706.6381.3303.3303 0 01-.2335-.4045zm6.4676-.835c.4213-.2434.96-.0992 1.2031.3218a.8806.8806 0 11-1.5254.8808c-.2429-.421-.0987-.9596.3223-1.2027zm-3.049 2.777a.4401.4401 0 11-.7624.4402.4401.4401 0 11.7624-.4402zm1.3227.9608a.6606.6606 0 01.4667-.8089.6605.6605 0 01.342 1.2758.6605.6605 0 01-.8087-.467zm0 2.9854a.6603.6603 0 111.2756.3416.6602.6602 0 11-1.2756-.3416zm.8594-.7354a.7574.7574 0 11-.0002-1.5146.7574.7574 0 01.0002 1.5146zm-.6756-6.5149a.7921.7921 0 010-1.1207c.3095-.3095.8115-.31 1.1209 0a.7926.7926 0 01-1.1209 1.1207zm-3.2223 2.068a.3522.3522 0 11-.61-.3523.3522.3522 0 01.61.3522zm-.6387 5.5862a.2642.2642 0 01.3738-.0004.2646.2646 0 010 .3738.2638.2638 0 01-.3738 0 .2637.2637 0 010-.3734zm0-4.1666a.2642.2642 0 01.3738-.0004.2642.2642 0 11-.3738.0004zm.5146 3.9917a.2868.2868 0 01-.105-.391.2862.2862 0 01.3912-.1046.2863.2863 0 01-.2862.4956zm-.486 2.3203a.352.352 0 01.129-.4811.352.352 0 01.4811.1288.352.352 0 01-.1289.4811.3521.3521 0 01-.4811-.1288zm.877-5.659a.286.286 0 01-.1048.3909.2867.2867 0 01-.3911-.1049.2862.2862 0 01.4958-.286zm-.2485.9334a.3082.3082 0 11.5955-.1596.3082.3082 0 01-.5955.1596zm0 1.3668a.3083.3083 0 11.5953.1602.3083.3083 0 01-.5953-.1602zm.4008-.3467a.3366.3366 0 11.0001-.6731.3366.3366 0 01-.0001.6731zm.4832-3.7744a.3963.3963 0 11-.5602.5608.3963.3963 0 01.5602-.5608zm-7.416 11.4507a.573.573 0 01-.782.2096.5726.5726 0 01.5725-.9916.5725.5725 0 01.2096.782zM14.814 8.945a.2202.2202 0 11-.114.4253.2202.2202 0 01.114-.4254zm-2.5387 11.8366a.6164.6164 0 11-1.1908-.3189.6164.6164 0 011.1908.319zm2.5387-5.726a.2203.2203 0 01-.1138-.4255.22.22 0 11.1138.4254zm-.1604 5.8739a.6603.6603 0 01-.6604.6602.6603.6603 0 01-.6606-.6602c0-.3649.2959-.6608.6606-.6608.3647 0 .6604.296.6604.6608zm-1.4693-5.9217a.1767.1767 0 01-.1247-.2158.1766.1766 0 01.216-.1245.1761.1761 0 01-.0913.3403zm-.0712 1.3712a.2863.2863 0 11-.5526-.1478.2863.2863 0 01.5526.1478zm-2.795-2.2726a.2202.2202 0 01-.3812.2202.2195.2195 0 01.0805-.3005.2198.2198 0 01.3007.0803zm1.6704 1.8817a.2642.2642 0 11-.4578-.2638.2642.2642 0 01.4578.2638zm.0148-1.8253a.1321.1321 0 11-.1869-.1869.1328.1328 0 01.187 0 .1325.1325 0 010 .187zm-.9966.81a.242.242 0 11-.3423.342.2418.2418 0 010-.342.2417.2417 0 01.3423 0zm.0783 2.7563a.3518.3518 0 01-.4811.1289.3522.3522 0 11.4811-.1289zm9.7924.0285a.7926.7926 0 010 1.121c-.3094.3097-.8114.3093-1.121 0-.3097-.3094-.3095-.8114 0-1.121a.793.793 0 011.121 0zm-1.6198-2.0103a.6169.6169 0 01-.2255-.8423.6168.6168 0 01.842-.2255.6165.6165 0 01-.6166 1.0678zm3.2445 1.1612c-.243.4214-.7818.5656-1.203.3223-.4211-.243-.5653-.7816-.3224-1.2026.2437-.4211.782-.5655 1.203-.3224.4213.2433.5657.7816.3224 1.2027zm-7.2666-.2796a.33.33 0 11-.1706-.638.3301.3301 0 01.1706.638zM24 12c0 .584-.4735 1.058-1.058 1.058-.5843 0-1.0578-.474-1.0578-1.058 0-.5842.4735-1.0579 1.0579-1.0579S24 11.4159 24 12.0001zm-.4297 2.564c-.1386.5164-.6697.8233-1.1862.685-.5165-.1387-.8233-.6698-.6847-1.1862.1383-.5169.6696-.8234 1.1861-.685.5169.1386.8231.6697.6848 1.1861zm-6.583 5.881a.7044.7044 0 11-1.3608.3643.7042.7042 0 01.4981-.8625.7043.7043 0 01.8628.4981zm2.1248-1.0825a.748.748 0 01-.274 1.0221.7482.7482 0 01-1.0222-.2738.748.748 0 01.2738-1.0224.7484.7484 0 011.0224.274zm-3.9225-1.0344a.4843.4843 0 11.9355-.2507.4843.4843 0 01-.9355.2507zm2.2835-.3077a.5284.5284 0 11-.5284-.9153.5284.5284 0 01.5284.9153zm-4.761.2798a.3963.3963 0 01-.7655-.205.396.396 0 01.4853-.2803.3964.3964 0 01.2802.4853zm-.8958-8.2762a.132.132 0 11.1868-.1869.132.132 0 01-.1868.1869zm.0754-1.651a.2643.2643 0 01-.2643-.4576.2642.2642 0 01.2643.4576zm-.8072-4.8355a.6164.6164 0 111.1905-.3188.6164.6164 0 01-1.1905.3188zm-.847 6.0555a.22.22 0 11-.2201.3812.2195.2195 0 01-.0806-.3004.22.22 0 01.3006-.0808zm.7691-.908a.2423.2423 0 01-.3423.3426.2423.2423 0 01.3423-.3426zm-.5319-2.0617a.3524.3524 0 01.6102-.352.3522.3522 0 01-.6102.352zm2.8578-3.5523c0-.3648.2959-.6608.6606-.6608.3647 0 .6604.296.6604.6608a.6606.6606 0 01-.6604.6607.6608.6608 0 01-.6606-.6607zm-.1483 5.9215a.1761.1761 0 11.091.3404.1761.1761 0 01-.091-.3404zm-.9575-3.5729a.3964.3964 0 01.2053.7657.3962.3962 0 01-.4854-.2802.3966.3966 0 01.28-.4855zm.5358 1.9992a.2863.2863 0 11.148.553.2863.2863 0 01-.148-.553zM9.0292 4.5596a.5724.5724 0 01.2094-.7818.5725.5725 0 01.5724.9914.572.572 0 01-.7818-.2096zm-.37 10.5048a.2643.2643 0 11-.458.264.2643.2643 0 01.458-.264zM4.9193 9.4585a.462.462 0 01.566-.3267.462.462 0 01.327.5658.4621.4621 0 01-.5661.3271.4624.4624 0 01-.327-.5662zm.9001-2.1691a.4843.4843 0 11.1772.6616.4845.4845 0 01-.1772-.6616zm2.2292 10.6412a.528.528 0 010 .7472.5286.5286 0 01-.7473 0 .5285.5285 0 010-.7472.5282.5282 0 01.7473 0zM6.676 16.2091a.4842.4842 0 11-.8386.4845.4842.4842 0 01.8386-.4845zm.6255-10.1393a.5285.5285 0 010-.7472.5286.5286 0 01.7473 0 .528.528 0 010 .7472.5282.5282 0 01-.7473 0zM9.6679 7.689a.3086.3086 0 01-.436 0 .3085.3085 0 010-.4362.3086.3086 0 01.436 0 .3085.3085 0 010 .4362zm0 8.6225a.3082.3082 0 11-.4359.4359.3082.3082 0 01.4359-.436zM8.2015 8.6719a.2642.2642 0 11.4574.2642.2642.2642 0 01-.4574-.2642z" }) + ] + } + ); +}); + +export { SiWipro as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWire.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWire.cjs new file mode 100644 index 000000000..9c2a08962 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWire.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWire = React__namespace.forwardRef(function SiWire2({ title = "Wire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 14.475c.009 4.084-3.296 7.401-7.38 7.41h-.016c-1.637-.015-3.222-.58-4.5-1.605-3.269 2.544-7.981 1.957-10.524-1.313-1-1.286-1.555-2.862-1.58-4.492V2.82h1.41v11.655c-.002 3.314 2.683 6.002 5.996 6.004 1.293.001 2.552-.416 3.589-1.189-1.163-1.335-1.806-3.043-1.815-4.814v-9.54c0-1.557 1.263-2.82 2.82-2.82s2.82 1.263 2.82 2.82v9.54c.006 1.766-.623 3.474-1.77 4.814 2.674 1.957 6.429 1.371 8.383-1.304.745-1.019 1.149-2.248 1.157-3.511V2.82H24v11.655zm-10.59-9.54c0-.778-.632-1.41-1.41-1.41-.779 0-1.41.631-1.41 1.41v9.54c.002 1.41.501 2.776 1.41 3.855.908-1.079 1.408-2.445 1.41-3.855v-9.54z" }) + ] + } + ); +}); + +exports.default = SiWire; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWire.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWire.d.ts new file mode 100644 index 000000000..6026615a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWire.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWire: IconType; +export { SiWire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWire.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWire.mjs new file mode 100644 index 000000000..e76a96949 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWire.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWire = React.forwardRef(function SiWire2({ title = "Wire", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 14.475c.009 4.084-3.296 7.401-7.38 7.41h-.016c-1.637-.015-3.222-.58-4.5-1.605-3.269 2.544-7.981 1.957-10.524-1.313-1-1.286-1.555-2.862-1.58-4.492V2.82h1.41v11.655c-.002 3.314 2.683 6.002 5.996 6.004 1.293.001 2.552-.416 3.589-1.189-1.163-1.335-1.806-3.043-1.815-4.814v-9.54c0-1.557 1.263-2.82 2.82-2.82s2.82 1.263 2.82 2.82v9.54c.006 1.766-.623 3.474-1.77 4.814 2.674 1.957 6.429 1.371 8.383-1.304.745-1.019 1.149-2.248 1.157-3.511V2.82H24v11.655zm-10.59-9.54c0-.778-.632-1.41-1.41-1.41-.779 0-1.41.631-1.41 1.41v9.54c.002 1.41.501 2.776 1.41 3.855.908-1.079 1.408-2.445 1.41-3.855v-9.54z" }) + ] + } + ); +}); + +export { SiWire as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.cjs new file mode 100644 index 000000000..685878f56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#88171A"; +const SiWireguard = React__namespace.forwardRef(function SiWireguard2({ title = "WireGuard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.98 11.645S24.533 0 11.735 0C.418 0 .064 11.17.064 11.17S-1.6 24 11.997 24C25.04 24 23.98 11.645 23.98 11.645zM8.155 7.576c2.4-1.47 5.469-.571 6.618 1.638.218.419.246 1.063.108 1.503-.477 1.516-1.601 2.366-3.145 2.728.455-.39.817-.832.933-1.442a2.112 2.112 0 0 0-.364-1.677 2.14 2.14 0 0 0-2.465-.75c-.95.36-1.47 1.228-1.377 2.294.087.99.839 1.632 2.245 1.876-.21.111-.372.193-.53.281a5.113 5.113 0 0 0-1.644 1.43c-.143.192-.24.208-.458.075-2.827-1.729-3.009-6.067.078-7.956zM6.04 18.258c-.455.116-.895.286-1.359.438.227-1.532 2.021-2.943 3.539-2.782a3.91 3.91 0 0 0-.74 2.072c-.504.093-.98.155-1.44.272zM15.703 3.3c.448.017.898.01 1.347.02a2.324 2.324 0 0 1 .334.047 3.249 3.249 0 0 1-.34.434c-.16.15-.341.296-.573.069-.055-.055-.187-.042-.283-.044-.447-.005-.894-.02-1.34-.003a8.323 8.323 0 0 0-1.154.118c-.072.013-.178.25-.146.338.078.207.191.435.359.567.619.49 1.277.928 1.9 1.413.604.472 1.167.99 1.51 1.7.446.928.46 1.9.267 2.877-.322 1.63-1.147 2.98-2.483 3.962-.538.395-1.205.62-1.821.903-.543.25-1.1.465-1.644.712-.98.446-1.53 1.51-1.369 2.615.149 1.015 1.04 1.862 2.059 2.037 1.223.21 2.486-.586 2.785-1.83.336-1.397-.423-2.646-1.845-3.024l-.256-.066c.38-.17.708-.291 1.012-.458q.793-.437 1.558-.925c.15-.096.231-.096.36.014.977.846 1.56 1.898 1.724 3.187.27 2.135-.74 4.096-2.646 5.101-2.948 1.555-6.557-.215-7.208-3.484-.558-2.8 1.418-5.34 3.797-5.83 1.023-.211 1.958-.637 2.685-1.425.47-.508.697-.944.775-1.141a3.165 3.165 0 0 0 .217-1.158 2.71 2.71 0 0 0-.237-.992c-.248-.566-1.2-1.466-1.435-1.656l-2.24-1.754c-.079-.065-.168-.06-.36-.047-.23.016-.815.048-1.067-.018.204-.155.76-.38 1-.56-.726-.49-1.554-.314-2.315-.46.176-.328 1.046-.831 1.541-.888a7.323 7.323 0 0 0-.135-.822c-.03-.111-.154-.22-.263-.283-.262-.154-.541-.281-.843-.434a1.755 1.755 0 0 1 .906-.28 3.385 3.385 0 0 1 .908.088c.54.123.97.042 1.399-.324-.338-.136-.676-.26-1.003-.407a9.843 9.843 0 0 1-.942-.493c.85.118 1.671.437 2.54.32l.022-.118-2.018-.47c1.203-.11 2.323-.128 3.384.388.299.146.61.266.897.432.14.08.233.24.348.365.09.098.164.23.276.29.424.225.89.234 1.366.223l.01-.16c.479.15 1.017.702 1.017 1.105-.776 0-1.55-.003-2.325.004-.083 0-.165.061-.247.094.078.046.155.128.235.131z M14.703 2.153a.118.118 0 0 0-.016.19.179.179 0 0 0 .246.065c.075-.038.148-.078.238-.125-.072-.062-.13-.114-.19-.163-.106-.087-.193-.032-.278.033z" }) + ] + } + ); +}); + +exports.default = SiWireguard; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.d.ts new file mode 100644 index 000000000..54f67d115 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#88171A"; +declare const SiWireguard: IconType; +export { SiWireguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.mjs new file mode 100644 index 000000000..cde9f96ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWireguard.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#88171A"; +const SiWireguard = React.forwardRef(function SiWireguard2({ title = "WireGuard", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.98 11.645S24.533 0 11.735 0C.418 0 .064 11.17.064 11.17S-1.6 24 11.997 24C25.04 24 23.98 11.645 23.98 11.645zM8.155 7.576c2.4-1.47 5.469-.571 6.618 1.638.218.419.246 1.063.108 1.503-.477 1.516-1.601 2.366-3.145 2.728.455-.39.817-.832.933-1.442a2.112 2.112 0 0 0-.364-1.677 2.14 2.14 0 0 0-2.465-.75c-.95.36-1.47 1.228-1.377 2.294.087.99.839 1.632 2.245 1.876-.21.111-.372.193-.53.281a5.113 5.113 0 0 0-1.644 1.43c-.143.192-.24.208-.458.075-2.827-1.729-3.009-6.067.078-7.956zM6.04 18.258c-.455.116-.895.286-1.359.438.227-1.532 2.021-2.943 3.539-2.782a3.91 3.91 0 0 0-.74 2.072c-.504.093-.98.155-1.44.272zM15.703 3.3c.448.017.898.01 1.347.02a2.324 2.324 0 0 1 .334.047 3.249 3.249 0 0 1-.34.434c-.16.15-.341.296-.573.069-.055-.055-.187-.042-.283-.044-.447-.005-.894-.02-1.34-.003a8.323 8.323 0 0 0-1.154.118c-.072.013-.178.25-.146.338.078.207.191.435.359.567.619.49 1.277.928 1.9 1.413.604.472 1.167.99 1.51 1.7.446.928.46 1.9.267 2.877-.322 1.63-1.147 2.98-2.483 3.962-.538.395-1.205.62-1.821.903-.543.25-1.1.465-1.644.712-.98.446-1.53 1.51-1.369 2.615.149 1.015 1.04 1.862 2.059 2.037 1.223.21 2.486-.586 2.785-1.83.336-1.397-.423-2.646-1.845-3.024l-.256-.066c.38-.17.708-.291 1.012-.458q.793-.437 1.558-.925c.15-.096.231-.096.36.014.977.846 1.56 1.898 1.724 3.187.27 2.135-.74 4.096-2.646 5.101-2.948 1.555-6.557-.215-7.208-3.484-.558-2.8 1.418-5.34 3.797-5.83 1.023-.211 1.958-.637 2.685-1.425.47-.508.697-.944.775-1.141a3.165 3.165 0 0 0 .217-1.158 2.71 2.71 0 0 0-.237-.992c-.248-.566-1.2-1.466-1.435-1.656l-2.24-1.754c-.079-.065-.168-.06-.36-.047-.23.016-.815.048-1.067-.018.204-.155.76-.38 1-.56-.726-.49-1.554-.314-2.315-.46.176-.328 1.046-.831 1.541-.888a7.323 7.323 0 0 0-.135-.822c-.03-.111-.154-.22-.263-.283-.262-.154-.541-.281-.843-.434a1.755 1.755 0 0 1 .906-.28 3.385 3.385 0 0 1 .908.088c.54.123.97.042 1.399-.324-.338-.136-.676-.26-1.003-.407a9.843 9.843 0 0 1-.942-.493c.85.118 1.671.437 2.54.32l.022-.118-2.018-.47c1.203-.11 2.323-.128 3.384.388.299.146.61.266.897.432.14.08.233.24.348.365.09.098.164.23.276.29.424.225.89.234 1.366.223l.01-.16c.479.15 1.017.702 1.017 1.105-.776 0-1.55-.003-2.325.004-.083 0-.165.061-.247.094.078.046.155.128.235.131z M14.703 2.153a.118.118 0 0 0-.016.19.179.179 0 0 0 .246.065c.075-.038.148-.078.238-.125-.072-.062-.13-.114-.19-.163-.106-.087-.193-.032-.278.033z" }) + ] + } + ); +}); + +export { SiWireguard as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.cjs new file mode 100644 index 000000000..40a3498f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1679A7"; +const SiWireshark = React__namespace.forwardRef(function SiWireshark2({ title = "Wireshark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m2.95 0c-1.62 0-2.95 1.32-2.95 2.95v18.1c0 1.63 1.32 2.95 2.95 2.95h18.1c1.62 0 2.95-1.32 2.95-2.95v-18.1c-.00024-1.63-1.32-2.95-2.95-2.95zm0 1.09h18.1c1.04 0 1.85.818 1.85 1.86v14h-5.27c-.335-.796-2.57-6.47.283-10.9a.516.517 0 0 0-.443-.794c-5.24.0827-8.2 3.19-9.74 6.21-1.35 2.64-1.63 4.91-1.69 5.53h-4.95v-14c0-1.04.817-1.86 1.85-1.86zm13.6 5.24c-2.62 5.24.248 11.4.248 11.4a.516.517 0 0 0 .469.301h5.62v3.05c0 1.04-.817 1.86-1.85 1.86h-18.1c-1.04 0-1.85-.818-1.85-1.86v-3.05h5.39a.516.517 0 0 0 .514-.477s.226-2.8 1.66-5.62c1.34-2.62 3.67-5.17 7.91-5.57z" }) + ] + } + ); +}); + +exports.default = SiWireshark; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.d.ts new file mode 100644 index 000000000..64a2360d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1679A7"; +declare const SiWireshark: IconType; +export { SiWireshark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.mjs new file mode 100644 index 000000000..701305ab7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWireshark.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1679A7"; +const SiWireshark = React.forwardRef(function SiWireshark2({ title = "Wireshark", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m2.95 0c-1.62 0-2.95 1.32-2.95 2.95v18.1c0 1.63 1.32 2.95 2.95 2.95h18.1c1.62 0 2.95-1.32 2.95-2.95v-18.1c-.00024-1.63-1.32-2.95-2.95-2.95zm0 1.09h18.1c1.04 0 1.85.818 1.85 1.86v14h-5.27c-.335-.796-2.57-6.47.283-10.9a.516.517 0 0 0-.443-.794c-5.24.0827-8.2 3.19-9.74 6.21-1.35 2.64-1.63 4.91-1.69 5.53h-4.95v-14c0-1.04.817-1.86 1.85-1.86zm13.6 5.24c-2.62 5.24.248 11.4.248 11.4a.516.517 0 0 0 .469.301h5.62v3.05c0 1.04-.817 1.86-1.85 1.86h-18.1c-1.04 0-1.85-.818-1.85-1.86v-3.05h5.39a.516.517 0 0 0 .514-.477s.226-2.8 1.66-5.62c1.34-2.62 3.67-5.17 7.91-5.57z" }) + ] + } + ); +}); + +export { SiWireshark as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWise.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWise.cjs new file mode 100644 index 000000000..6e3f9cbdd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWise.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#9FE870"; +const SiWise = React__namespace.forwardRef(function SiWise2({ title = "Wise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.488 7.469 0 15.05h11.585l1.301-3.576H7.922l3.033-3.507.01-.092L8.993 4.48h8.873l-6.878 18.925h4.706L24 .595H2.543l3.945 6.874Z" }) + ] + } + ); +}); + +exports.default = SiWise; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWise.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWise.d.ts new file mode 100644 index 000000000..ada41ea8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWise.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#9FE870"; +declare const SiWise: IconType; +export { SiWise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWise.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWise.mjs new file mode 100644 index 000000000..a290f53e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWise.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#9FE870"; +const SiWise = React.forwardRef(function SiWise2({ title = "Wise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6.488 7.469 0 15.05h11.585l1.301-3.576H7.922l3.033-3.507.01-.092L8.993 4.48h8.873l-6.878 18.925h4.706L24 .595H2.543l3.945 6.874Z" }) + ] + } + ); +}); + +export { SiWise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWish.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWish.cjs new file mode 100644 index 000000000..794405199 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWish.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#32E476"; +const SiWish = React__namespace.forwardRef(function SiWish2({ title = "Wish", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.864 19.826h-4.107l-3.227-9.393-2.28 9.39H5.143L0 4.65h4.217l4.354 13.128c1.558-4.4 2.534-8.5 1.021-13.128H13.7ZM20.57 4.174a15.705 15.705 0 0 1-3.425 4.171 17.095 17.095 0 0 1 3.425 5.56A17.116 17.116 0 0 1 24 8.345a15.734 15.734 0 0 1-3.43-4.17Z" }) + ] + } + ); +}); + +exports.default = SiWish; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWish.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWish.d.ts new file mode 100644 index 000000000..0283c27a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWish.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#32E476"; +declare const SiWish: IconType; +export { SiWish as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWish.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWish.mjs new file mode 100644 index 000000000..268a060f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWish.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#32E476"; +const SiWish = React.forwardRef(function SiWish2({ title = "Wish", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.864 19.826h-4.107l-3.227-9.393-2.28 9.39H5.143L0 4.65h4.217l4.354 13.128c1.558-4.4 2.534-8.5 1.021-13.128H13.7ZM20.57 4.174a15.705 15.705 0 0 1-3.425 4.171 17.095 17.095 0 0 1 3.425 5.56A17.116 17.116 0 0 1 24 8.345a15.734 15.734 0 0 1-3.43-4.17Z" }) + ] + } + ); +}); + +export { SiWish as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.cjs new file mode 100644 index 000000000..d73628035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#58B7FE"; +const SiWistia = React__namespace.forwardRef(function SiWistia2({ title = "Wistia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.69 6.605c.507-3.094-1.24-3.944-1.24-3.944s.073 2.519-4.555 3.053C13.787 6.188 0 5.83 0 5.83l4.43 5.081c1.2 1.378 1.838 1.537 3.187 1.633 1.349.09 4.327.058 6.345-.096 2.206-.169 5.35-.888 7.477-2.535 1.09-.843 2.039-2.016 2.25-3.308m.284 3.205s-.556 1.105-3.33 2.853c-1.182.744-3.637 1.535-6.793 1.84-1.705.166-4.842.031-6.188.031-1.354 0-1.974.285-3.187 1.652L0 21.23s1.55.008 2.72.008c1.17 0 8.488.425 11.735-.468 10.546-2.899 9.518-10.96 9.518-10.96Z" }) + ] + } + ); +}); + +exports.default = SiWistia; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.d.ts new file mode 100644 index 000000000..b8db70e5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#58B7FE"; +declare const SiWistia: IconType; +export { SiWistia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.mjs new file mode 100644 index 000000000..90a47e4e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWistia.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#58B7FE"; +const SiWistia = React.forwardRef(function SiWistia2({ title = "Wistia", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.69 6.605c.507-3.094-1.24-3.944-1.24-3.944s.073 2.519-4.555 3.053C13.787 6.188 0 5.83 0 5.83l4.43 5.081c1.2 1.378 1.838 1.537 3.187 1.633 1.349.09 4.327.058 6.345-.096 2.206-.169 5.35-.888 7.477-2.535 1.09-.843 2.039-2.016 2.25-3.308m.284 3.205s-.556 1.105-3.33 2.853c-1.182.744-3.637 1.535-6.793 1.84-1.705.166-4.842.031-6.188.031-1.354 0-1.974.285-3.187 1.652L0 21.23s1.55.008 2.72.008c1.17 0 8.488.425 11.735-.468 10.546-2.899 9.518-10.96 9.518-10.96Z" }) + ] + } + ); +}); + +export { SiWistia as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWix.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWix.cjs new file mode 100644 index 000000000..747cfc025 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWix.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0C6EFC"; +const SiWix = React__namespace.forwardRef(function SiWix2({ title = "Wix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 7.354 2.113 9.292h.801a1.54 1.54 0 0 0 1.506-1.218l1.351-6.34a.171.171 0 0 1 .167-.137c.08 0 .15.058.167.137l1.352 6.34a1.54 1.54 0 0 0 1.506 1.218h.805l2.113-9.292h-.565c-.62 0-1.159.43-1.296 1.035l-1.26 5.545-1.106-5.176a1.76 1.76 0 0 0-2.19-1.324c-.639.176-1.113.716-1.251 1.365l-1.094 5.127-1.26-5.537A1.33 1.33 0 0 0 .563 7.354H0zm13.992 0a.951.951 0 0 0-.951.95v8.342h.635a.952.952 0 0 0 .951-.95V7.353h-.635zm1.778 0 3.158 4.66-3.14 4.632h1.325c.368 0 .712-.181.918-.486l1.756-2.59a.12.12 0 0 1 .197 0l1.754 2.59c.206.305.55.486.918.486h1.326l-3.14-4.632L24 7.354h-1.326c-.368 0-.712.181-.918.486l-1.772 2.617a.12.12 0 0 1-.197 0L18.014 7.84a1.108 1.108 0 0 0-.918-.486H15.77z" }) + ] + } + ); +}); + +exports.default = SiWix; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWix.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWix.d.ts new file mode 100644 index 000000000..c09457f1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWix.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0C6EFC"; +declare const SiWix: IconType; +export { SiWix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWix.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWix.mjs new file mode 100644 index 000000000..48d6f0b80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWix.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0C6EFC"; +const SiWix = React.forwardRef(function SiWix2({ title = "Wix", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 7.354 2.113 9.292h.801a1.54 1.54 0 0 0 1.506-1.218l1.351-6.34a.171.171 0 0 1 .167-.137c.08 0 .15.058.167.137l1.352 6.34a1.54 1.54 0 0 0 1.506 1.218h.805l2.113-9.292h-.565c-.62 0-1.159.43-1.296 1.035l-1.26 5.545-1.106-5.176a1.76 1.76 0 0 0-2.19-1.324c-.639.176-1.113.716-1.251 1.365l-1.094 5.127-1.26-5.537A1.33 1.33 0 0 0 .563 7.354H0zm13.992 0a.951.951 0 0 0-.951.95v8.342h.635a.952.952 0 0 0 .951-.95V7.353h-.635zm1.778 0 3.158 4.66-3.14 4.632h1.325c.368 0 .712-.181.918-.486l1.756-2.59a.12.12 0 0 1 .197 0l1.754 2.59c.206.305.55.486.918.486h1.326l-3.14-4.632L24 7.354h-1.326c-.368 0-.712.181-.918.486l-1.772 2.617a.12.12 0 0 1-.197 0L18.014 7.84a1.108 1.108 0 0 0-.918-.486H15.77z" }) + ] + } + ); +}); + +export { SiWix as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.cjs new file mode 100644 index 000000000..0378f8c28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#C6007E"; +const SiWizzair = React__namespace.forwardRef(function SiWizzair2({ title = "Wizz Air", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.6366 10.393h2.3183l-2.7457 3.5919h-2.3195zm-.1745-.351l-2.9186 3.8194c-.0699.0911-.0812.2063-.0302.308a.2977.2977 0 0 0 .2643.1658h2.6055l2.9424-3.8484a.2817.2817 0 0 0 .0277-.2926c-.0472-.0942-.1429-.1521-.2508-.1521zM9.127 8.1753a.0859.0859 0 0 1 .074-.0421h1.5203l.2184-1.2553a.0823.0823 0 0 1 .0823-.0664l1.423-.001c.0262 0 .0472.0078.0623.0248a.0904.0904 0 0 1 .0197.0682l-.1416.8122 6.69.0049c.0361 0 .062.0218.0747.0429.0078.0156.0183.0472-.0035.0768l-.6041.7888 4.9581-.0013a.0661.0661 0 0 1 .0577.0342.0535.0535 0 0 1-.0005.0583l-4.1208 5.3952c-.047.0588-.0448.2082-.0121.2718.034.0642.1515.156.2251.156l2.8984.0031a.0795.0795 0 0 1 .0623.0278.0813.0813 0 0 1 .0189.0658l-.2203 1.2607a.0823.0823 0 0 1-.0823.066H11.2994l-.1812-.001a.915.915 0 0 1 .0188.1934c0 .567-.4595 1.0269-1.0274 1.0269-.5677 0-1.0274-.4598-1.0274-1.027 0-.5673.4597-1.0266 1.0274-1.0266a1.03 1.03 0 0 1 .9012.5318l4.4943-5.8922c.0723-.1521.0362-.2066-.0027-.2964-.0288-.0677-.1372-.1373-.2556-.136h-3.146L11.297 13.93c-.0078.0361-.0423.0612-.0809.0612H9.7922a.0828.0828 0 0 1-.0628-.0283.0787.0787 0 0 1-.0184-.0658l.8732-4.9824-3.5515 6.9628a.1814.1814 0 0 1-.1578.092l-1.2097.006c-.0432 0-.0788-.0308-.0825-.0678l-.3336-5.0579-2.6239 5.0288a.182.182 0 0 1-.157.0914l-1.227-.0008c-.042 0-.0779-.031-.0814-.071L.36 8.2208a.0874.0874 0 0 1 .0208-.0639c.0148-.0148.0364-.0232.062-.0232H2.092c.045 0 .0828.0367.0828.0847l.2473 5.0088 2.4254-5.0503a.0824.0824 0 0 1 .0733-.0432l1.5034-.0064c.0415 0 .0788.0315.0812.0682l.2443 5.0474zm1.8249-1.7154a.3501.3501 0 0 0-.3447.2896l-.1812 1.0323H9.1472c-.1306 0-.2473.0704-.3137.1923l-1.8003 3.84-.1785-3.7122a.351.351 0 0 0-.3492-.3198h-1.637a.3528.3528 0 0 0-.3135.193l-1.851 3.8544-.1826-3.6977a.3504.3504 0 0 0-.35-.3497H.3506a.3533.3533 0 0 0-.2586.1092c-.0648.0712-.0977.1702-.0912.2732l.8163 7.8411a.35.35 0 0 0 .3487.3115l1.3534.0005a.4463.4463 0 0 0 .3956-.2378l2.067-3.9601.2549 3.8862a.3508.3508 0 0 0 .3479.3115l1.3434.0005a.448.448 0 0 0 .3962-.2397l2.512-4.925-.4865 2.7779a.3553.3553 0 0 0 .076.2872.3507.3507 0 0 0 .268.1245h1.5922c.1653 0 .306-.1151.343-.2812l.7659-4.3713H15.13l-4.1332 5.4092a1.3776 1.3776 0 0 0-.8842-.3198c-.7602 0-1.3807.6194-1.3807 1.3802 0 .7612.6205 1.3804 1.3807 1.3804.6984 0 1.2928-.5337 1.3731-1.2227l10.9119-.0005a.3472.3472 0 0 0 .3444-.2902l.2497-1.4206a.3526.3526 0 0 0-.0777-.2853.348.348 0 0 0-.2678-.1235l-2.8299-.0027 4.126-5.3993c.07-.1046.0765-.2308.0183-.3395a.3309.3309 0 0 0-.2942-.1788h-4.4148l.28-.3657c.0733-.1097.0806-.2432.0188-.3597-.0617-.1144-.1798-.1872-.3085-.1872h-6.44l.0883-.495a.3605.3605 0 0 0-.0815-.2884c-.0658-.0784-.1596-.1213-.265-.1213h-1.592Z" }) + ] + } + ); +}); + +exports.default = SiWizzair; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.d.ts new file mode 100644 index 000000000..f6dce029c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#C6007E"; +declare const SiWizzair: IconType; +export { SiWizzair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.mjs new file mode 100644 index 000000000..16a0822bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWizzair.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#C6007E"; +const SiWizzair = React.forwardRef(function SiWizzair2({ title = "Wizz Air", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.6366 10.393h2.3183l-2.7457 3.5919h-2.3195zm-.1745-.351l-2.9186 3.8194c-.0699.0911-.0812.2063-.0302.308a.2977.2977 0 0 0 .2643.1658h2.6055l2.9424-3.8484a.2817.2817 0 0 0 .0277-.2926c-.0472-.0942-.1429-.1521-.2508-.1521zM9.127 8.1753a.0859.0859 0 0 1 .074-.0421h1.5203l.2184-1.2553a.0823.0823 0 0 1 .0823-.0664l1.423-.001c.0262 0 .0472.0078.0623.0248a.0904.0904 0 0 1 .0197.0682l-.1416.8122 6.69.0049c.0361 0 .062.0218.0747.0429.0078.0156.0183.0472-.0035.0768l-.6041.7888 4.9581-.0013a.0661.0661 0 0 1 .0577.0342.0535.0535 0 0 1-.0005.0583l-4.1208 5.3952c-.047.0588-.0448.2082-.0121.2718.034.0642.1515.156.2251.156l2.8984.0031a.0795.0795 0 0 1 .0623.0278.0813.0813 0 0 1 .0189.0658l-.2203 1.2607a.0823.0823 0 0 1-.0823.066H11.2994l-.1812-.001a.915.915 0 0 1 .0188.1934c0 .567-.4595 1.0269-1.0274 1.0269-.5677 0-1.0274-.4598-1.0274-1.027 0-.5673.4597-1.0266 1.0274-1.0266a1.03 1.03 0 0 1 .9012.5318l4.4943-5.8922c.0723-.1521.0362-.2066-.0027-.2964-.0288-.0677-.1372-.1373-.2556-.136h-3.146L11.297 13.93c-.0078.0361-.0423.0612-.0809.0612H9.7922a.0828.0828 0 0 1-.0628-.0283.0787.0787 0 0 1-.0184-.0658l.8732-4.9824-3.5515 6.9628a.1814.1814 0 0 1-.1578.092l-1.2097.006c-.0432 0-.0788-.0308-.0825-.0678l-.3336-5.0579-2.6239 5.0288a.182.182 0 0 1-.157.0914l-1.227-.0008c-.042 0-.0779-.031-.0814-.071L.36 8.2208a.0874.0874 0 0 1 .0208-.0639c.0148-.0148.0364-.0232.062-.0232H2.092c.045 0 .0828.0367.0828.0847l.2473 5.0088 2.4254-5.0503a.0824.0824 0 0 1 .0733-.0432l1.5034-.0064c.0415 0 .0788.0315.0812.0682l.2443 5.0474zm1.8249-1.7154a.3501.3501 0 0 0-.3447.2896l-.1812 1.0323H9.1472c-.1306 0-.2473.0704-.3137.1923l-1.8003 3.84-.1785-3.7122a.351.351 0 0 0-.3492-.3198h-1.637a.3528.3528 0 0 0-.3135.193l-1.851 3.8544-.1826-3.6977a.3504.3504 0 0 0-.35-.3497H.3506a.3533.3533 0 0 0-.2586.1092c-.0648.0712-.0977.1702-.0912.2732l.8163 7.8411a.35.35 0 0 0 .3487.3115l1.3534.0005a.4463.4463 0 0 0 .3956-.2378l2.067-3.9601.2549 3.8862a.3508.3508 0 0 0 .3479.3115l1.3434.0005a.448.448 0 0 0 .3962-.2397l2.512-4.925-.4865 2.7779a.3553.3553 0 0 0 .076.2872.3507.3507 0 0 0 .268.1245h1.5922c.1653 0 .306-.1151.343-.2812l.7659-4.3713H15.13l-4.1332 5.4092a1.3776 1.3776 0 0 0-.8842-.3198c-.7602 0-1.3807.6194-1.3807 1.3802 0 .7612.6205 1.3804 1.3807 1.3804.6984 0 1.2928-.5337 1.3731-1.2227l10.9119-.0005a.3472.3472 0 0 0 .3444-.2902l.2497-1.4206a.3526.3526 0 0 0-.0777-.2853.348.348 0 0 0-.2678-.1235l-2.8299-.0027 4.126-5.3993c.07-.1046.0765-.2308.0183-.3395a.3309.3309 0 0 0-.2942-.1788h-4.4148l.28-.3657c.0733-.1097.0806-.2432.0188-.3597-.0617-.1144-.1798-.1872-.3085-.1872h-6.44l.0883-.495a.3605.3605 0 0 0-.0815-.2884c-.0658-.0784-.1596-.1213-.265-.1213h-1.592Z" }) + ] + } + ); +}); + +export { SiWizzair as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.cjs new file mode 100644 index 000000000..3b7f97b8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD1100"; +const SiWolfram = React__namespace.forwardRef(function SiWolfram2({ title = "Wolfram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.105 12.001l3.307-3.708-4.854-1.059.495-4.944-4.55 1.996L12 0 9.495 4.287 4.947 2.291l.494 4.944L.587 8.289l3.305 3.707-3.305 3.713 4.854 1.053-.5 4.945 4.553-1.994L12 24l2.504-4.287 4.55 1.994-.495-4.938 4.854-1.06-3.308-3.708zm1.605 2.792l-2.861-.982-1.899-2.471 2.526.942 2.234 2.511zm.459-6.096l-2.602 2.918-3.066-1.141 1.844-2.612 3.824.835zm-4.288-1.324l-1.533 2.179.088-3.162 1.788-2.415-.343 3.398zm-3.304-2.399l3.091-1.354L15.9 5.998l-2.943 1.049 1.62-2.073zm1.187 1.772l-.096 3.652-3.341 1.12V7.969l3.437-1.223zM12 1.308l1.969 3.371L12 7.199l-1.971-2.521L12 1.308zM9.423 4.974l1.619 2.072-2.948-1.048L6.332 3.62l3.091 1.354zm2.245 2.995v3.549l-3.335-1.12-.102-3.652 3.437 1.223zM7.564 6.39l.086 3.162-1.532-2.179-.341-3.397L7.564 6.39zM1.83 8.692l3.824-.83 1.839 2.612-3.065 1.136L1.83 8.692zm2.694 3.585l2.526-.937-1.9 2.471-2.861.977 2.235-2.511zm-2.093 3.159l2.929-1 3.045.896-2.622.837-3.352-.733zm3.28 5.212l.392-3.896 3.111-.982.082 3.31-3.585 1.568zm3.691-5.708l-3.498-1.03 2.226-2.892 3.335 1.126-2.063 2.796zm2.266 7.191l-1.711-2.934-.066-2.771 1.777 2.597v3.108zm-1.73-6.8L12 12.532l2.063 2.799L12 18.336l-2.062-3.005zm4.104 3.866l-1.715 2.934v-3.107l1.782-2.597-.067 2.77zm-1.514-7.052l3.341-1.126 2.221 2.892-3.499 1.03-2.063-2.796zm2.175 6.935l.077-3.31 3.116.982.386 3.901-3.579-1.573zm3.514-2.912l-2.625-.837 3.049-.896 2.928 1.003-3.352.73z" }) + ] + } + ); +}); + +exports.default = SiWolfram; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.d.ts new file mode 100644 index 000000000..b51159bb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD1100"; +declare const SiWolfram: IconType; +export { SiWolfram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.mjs new file mode 100644 index 000000000..cebd4fa0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolfram.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD1100"; +const SiWolfram = React.forwardRef(function SiWolfram2({ title = "Wolfram", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.105 12.001l3.307-3.708-4.854-1.059.495-4.944-4.55 1.996L12 0 9.495 4.287 4.947 2.291l.494 4.944L.587 8.289l3.305 3.707-3.305 3.713 4.854 1.053-.5 4.945 4.553-1.994L12 24l2.504-4.287 4.55 1.994-.495-4.938 4.854-1.06-3.308-3.708zm1.605 2.792l-2.861-.982-1.899-2.471 2.526.942 2.234 2.511zm.459-6.096l-2.602 2.918-3.066-1.141 1.844-2.612 3.824.835zm-4.288-1.324l-1.533 2.179.088-3.162 1.788-2.415-.343 3.398zm-3.304-2.399l3.091-1.354L15.9 5.998l-2.943 1.049 1.62-2.073zm1.187 1.772l-.096 3.652-3.341 1.12V7.969l3.437-1.223zM12 1.308l1.969 3.371L12 7.199l-1.971-2.521L12 1.308zM9.423 4.974l1.619 2.072-2.948-1.048L6.332 3.62l3.091 1.354zm2.245 2.995v3.549l-3.335-1.12-.102-3.652 3.437 1.223zM7.564 6.39l.086 3.162-1.532-2.179-.341-3.397L7.564 6.39zM1.83 8.692l3.824-.83 1.839 2.612-3.065 1.136L1.83 8.692zm2.694 3.585l2.526-.937-1.9 2.471-2.861.977 2.235-2.511zm-2.093 3.159l2.929-1 3.045.896-2.622.837-3.352-.733zm3.28 5.212l.392-3.896 3.111-.982.082 3.31-3.585 1.568zm3.691-5.708l-3.498-1.03 2.226-2.892 3.335 1.126-2.063 2.796zm2.266 7.191l-1.711-2.934-.066-2.771 1.777 2.597v3.108zm-1.73-6.8L12 12.532l2.063 2.799L12 18.336l-2.062-3.005zm4.104 3.866l-1.715 2.934v-3.107l1.782-2.597-.067 2.77zm-1.514-7.052l3.341-1.126 2.221 2.892-3.499 1.03-2.063-2.796zm2.175 6.935l.077-3.31 3.116.982.386 3.901-3.579-1.573zm3.514-2.912l-2.625-.837 3.049-.896 2.928 1.003-3.352.73z" }) + ] + } + ); +}); + +export { SiWolfram as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.cjs new file mode 100644 index 000000000..6388a5c32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD1100"; +const SiWolframlanguage = React__namespace.forwardRef(function SiWolframlanguage2({ title = "Wolfram Language", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.335 12.431c-.552.15-.615.18-1.164.337-.589-.337-1.107-.526-1.595-.463.057-.306.151-.525.245-.8 1.036-.15 1.805.4 2.514.926zm5.308 7.201a10.795 10.795 0 0 1-1.907 1.52h-.006l-3.702-4.613 3.07.336s1.47.151 1.807 0c.308-.117 1.963-2.449 1.963-2.449s-4.76-3.009-6.384-4.666c.188-2.793-.213-6.508-.213-6.478-1.193 1.195-1.35 1.383-2.544 2.489-.52-1.688-.769-2.27-1.289-3.958-1.568 1.289-2.763 3.464-3.62 6.016a12.29 12.29 0 0 0-.55.656c-.113.157-.23.313-.345.475a16.126 16.126 0 0 0-1.101 1.819c-.063.112-.125.231-.188.35-.913 1.788-1.676 3.79-2.338 5.604A10.824 10.824 0 0 1 1.205 12c0-2.862 1.138-5.613 3.163-7.64A10.785 10.785 0 0 1 12 1.202a10.8 10.8 0 0 1 7.642 3.158A10.83 10.83 0 0 1 22.797 12a10.813 10.813 0 0 1-3.154 7.633M12 6.691c.832-.801.951-.92 1.75-1.69.064 1.533.032 2.334-.062 4.204-.463-.458-1.381-1.044-1.381-1.044S12.126 7.09 12 6.69m3.834 15.463C9.218 24.547 4.436 20.14 3.417 18.602c.006-.014.006-.027.006-.039.92-3.889 2.058-8.535 3.884-9.91.955-1.655 1.231-4.113 2.943-5.401.432 1.288 1.107 3.958 1.57 5.246 2.025 2.025 5.087 4.545 7.146 5.59.212.12.489.98.489.98l-.825 1.038-8.835-.887c-.2-.02-.394-.028-.594-.028-.569 0-1.15.073-1.833.18.432-1.07 1.35-1.936 1.35-1.936s-.855-.519-1.505-.605c.187-.432.681-.989.8-1.138-.244.087-2.026.888-2.208 1.563.857.214 1.47.487 1.47.487s-.95.957-1.132 2.612c0 0 2.82-.43 4.939-.153.063.03.094.03.125.03l1.102.031 3.509 5.84.027.046a.012.012 0 0 1-.011.006m4.652-18.64A12.02 12.02 0 0 0 12 0C8.818 0 5.768 1.27 3.516 3.515a12.025 12.025 0 0 0-3.513 8.484c0 3.183 1.27 6.235 3.512 8.478a11.98 11.98 0 0 0 16.97 0 11.966 11.966 0 0 0 3.512-8.478c0-3.181-1.26-6.233-3.511-8.484z" }) + ] + } + ); +}); + +exports.default = SiWolframlanguage; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.d.ts new file mode 100644 index 000000000..130043903 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD1100"; +declare const SiWolframlanguage: IconType; +export { SiWolframlanguage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.mjs new file mode 100644 index 000000000..0a2bab9af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframlanguage.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD1100"; +const SiWolframlanguage = React.forwardRef(function SiWolframlanguage2({ title = "Wolfram Language", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.335 12.431c-.552.15-.615.18-1.164.337-.589-.337-1.107-.526-1.595-.463.057-.306.151-.525.245-.8 1.036-.15 1.805.4 2.514.926zm5.308 7.201a10.795 10.795 0 0 1-1.907 1.52h-.006l-3.702-4.613 3.07.336s1.47.151 1.807 0c.308-.117 1.963-2.449 1.963-2.449s-4.76-3.009-6.384-4.666c.188-2.793-.213-6.508-.213-6.478-1.193 1.195-1.35 1.383-2.544 2.489-.52-1.688-.769-2.27-1.289-3.958-1.568 1.289-2.763 3.464-3.62 6.016a12.29 12.29 0 0 0-.55.656c-.113.157-.23.313-.345.475a16.126 16.126 0 0 0-1.101 1.819c-.063.112-.125.231-.188.35-.913 1.788-1.676 3.79-2.338 5.604A10.824 10.824 0 0 1 1.205 12c0-2.862 1.138-5.613 3.163-7.64A10.785 10.785 0 0 1 12 1.202a10.8 10.8 0 0 1 7.642 3.158A10.83 10.83 0 0 1 22.797 12a10.813 10.813 0 0 1-3.154 7.633M12 6.691c.832-.801.951-.92 1.75-1.69.064 1.533.032 2.334-.062 4.204-.463-.458-1.381-1.044-1.381-1.044S12.126 7.09 12 6.69m3.834 15.463C9.218 24.547 4.436 20.14 3.417 18.602c.006-.014.006-.027.006-.039.92-3.889 2.058-8.535 3.884-9.91.955-1.655 1.231-4.113 2.943-5.401.432 1.288 1.107 3.958 1.57 5.246 2.025 2.025 5.087 4.545 7.146 5.59.212.12.489.98.489.98l-.825 1.038-8.835-.887c-.2-.02-.394-.028-.594-.028-.569 0-1.15.073-1.833.18.432-1.07 1.35-1.936 1.35-1.936s-.855-.519-1.505-.605c.187-.432.681-.989.8-1.138-.244.087-2.026.888-2.208 1.563.857.214 1.47.487 1.47.487s-.95.957-1.132 2.612c0 0 2.82-.43 4.939-.153.063.03.094.03.125.03l1.102.031 3.509 5.84.027.046a.012.012 0 0 1-.011.006m4.652-18.64A12.02 12.02 0 0 0 12 0C8.818 0 5.768 1.27 3.516 3.515a12.025 12.025 0 0 0-3.513 8.484c0 3.183 1.27 6.235 3.512 8.478a11.98 11.98 0 0 0 16.97 0 11.966 11.966 0 0 0 3.512-8.478c0-3.181-1.26-6.233-3.511-8.484z" }) + ] + } + ); +}); + +export { SiWolframlanguage as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.cjs new file mode 100644 index 000000000..50a95647a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#DD1100"; +const SiWolframmathematica = React__namespace.forwardRef(function SiWolframmathematica2({ title = "Wolfram Mathematica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.74 10.7c-.53-1.53.14-4 .14-4S13.6 8.01 11.93 8 8.13 6.7 8.13 6.7s.56 2.46.07 4.04c-.48 1.58-2.47 3.34-2.47 3.34s2.58.23 3.85 1.1S12 18.64 12 18.64s.78-2.35 2.32-3.41c1.54-1.07 3.96-1.15 3.96-1.15s-2-1.84-2.54-3.37zm-2 3.69c-1.09.81-1.75 2.19-1.75 2.19s-.76-1.43-1.8-2.22c-1.05-.79-2.57-.97-2.57-.97a5.06 5.06 0 0 0 1.53-2.37c.46-1.54.18-2.73.18-2.73s.92.7 2.62.7c1.7 0 2.79-.7 2.79-.7s-.38 1.58.07 2.7c.44 1.14 1.57 2.41 1.57 2.41s-1.56.17-2.64.99zM13.73 9.6s-.95.38-1.77.37c-.82 0-1.7-.37-1.7-.37.05.58 0 1.15-.17 1.7-.27.86-.91 1.64-.91 1.64A4.23 4.23 0 0 1 12 14.95s.45-.85 1.18-1.33c.5-.31 1.05-.55 1.63-.7 0 0-.74-.78-1.02-1.57-.28-.78-.06-1.75-.06-1.75zM20.1 12l3.31-3.7-4.85-1.07.5-4.94-4.56 2L12 0 9.5 4.29l-4.55-2 .49 4.95L.59 8.29 3.89 12 .6 15.7l4.85 1.07-.5 4.94 4.55-2L12 24l2.5-4.29 4.56 2-.5-4.94 4.85-1.06-3.3-3.71zm-5.27 3.95C14 16.56 12 20.81 12 20.81S10.5 16.95 9 15.95c-1.48-1-5.38-1.22-5.38-1.22s2.99-2.37 3.57-4.47c.59-2.1-.37-5.37-.37-5.37s2.9 2.1 5.08 2.1c2.17 0 5.26-2.1 5.26-2.1s-.82 4.5-.53 5.46c.3.96 3.73 4.38 3.73 4.38s-4.7.62-5.54 1.22z" }) + ] + } + ); +}); + +exports.default = SiWolframmathematica; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.d.ts new file mode 100644 index 000000000..2a31a2708 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#DD1100"; +declare const SiWolframmathematica: IconType; +export { SiWolframmathematica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.mjs new file mode 100644 index 000000000..c057539d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWolframmathematica.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#DD1100"; +const SiWolframmathematica = React.forwardRef(function SiWolframmathematica2({ title = "Wolfram Mathematica", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.74 10.7c-.53-1.53.14-4 .14-4S13.6 8.01 11.93 8 8.13 6.7 8.13 6.7s.56 2.46.07 4.04c-.48 1.58-2.47 3.34-2.47 3.34s2.58.23 3.85 1.1S12 18.64 12 18.64s.78-2.35 2.32-3.41c1.54-1.07 3.96-1.15 3.96-1.15s-2-1.84-2.54-3.37zm-2 3.69c-1.09.81-1.75 2.19-1.75 2.19s-.76-1.43-1.8-2.22c-1.05-.79-2.57-.97-2.57-.97a5.06 5.06 0 0 0 1.53-2.37c.46-1.54.18-2.73.18-2.73s.92.7 2.62.7c1.7 0 2.79-.7 2.79-.7s-.38 1.58.07 2.7c.44 1.14 1.57 2.41 1.57 2.41s-1.56.17-2.64.99zM13.73 9.6s-.95.38-1.77.37c-.82 0-1.7-.37-1.7-.37.05.58 0 1.15-.17 1.7-.27.86-.91 1.64-.91 1.64A4.23 4.23 0 0 1 12 14.95s.45-.85 1.18-1.33c.5-.31 1.05-.55 1.63-.7 0 0-.74-.78-1.02-1.57-.28-.78-.06-1.75-.06-1.75zM20.1 12l3.31-3.7-4.85-1.07.5-4.94-4.56 2L12 0 9.5 4.29l-4.55-2 .49 4.95L.59 8.29 3.89 12 .6 15.7l4.85 1.07-.5 4.94 4.55-2L12 24l2.5-4.29 4.56 2-.5-4.94 4.85-1.06-3.3-3.71zm-5.27 3.95C14 16.56 12 20.81 12 20.81S10.5 16.95 9 15.95c-1.48-1-5.38-1.22-5.38-1.22s2.99-2.37 3.57-4.47c.59-2.1-.37-5.37-.37-5.37s2.9 2.1 5.08 2.1c2.17 0 5.26-2.1 5.26-2.1s-.82 4.5-.53 5.46c.3.96 3.73 4.38 3.73 4.38s-4.7.62-5.54 1.22z" }) + ] + } + ); +}); + +export { SiWolframmathematica as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.cjs new file mode 100644 index 000000000..ec4c4a748 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWondershare = React__namespace.forwardRef(function SiWondershare2({ title = "Wondershare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.216 17.814 7.704 9.368l.02-.02c.391.239.91.19 1.249-.147l3.041-3.016 7.241 7.184c.397.394.402 1.029.005 1.426l-3.044 3.019Zm-5.253-3.017-3.03 3.017L0 9.915l3.746-3.73 7.217 7.187a1.005 1.005 0 0 1 0 1.425ZM24 9.913l-3.725 3.727L16 9.367l.02-.021c.388.239.903.19 1.239-.146l3.014-3.015L24 9.913Z" }) + ] + } + ); +}); + +exports.default = SiWondershare; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.d.ts new file mode 100644 index 000000000..735348400 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWondershare: IconType; +export { SiWondershare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.mjs new file mode 100644 index 000000000..98c411eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWondershare.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWondershare = React.forwardRef(function SiWondershare2({ title = "Wondershare", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.216 17.814 7.704 9.368l.02-.02c.391.239.91.19 1.249-.147l3.041-3.016 7.241 7.184c.397.394.402 1.029.005 1.426l-3.044 3.019Zm-5.253-3.017-3.03 3.017L0 9.915l3.746-3.73 7.217 7.187a1.005 1.005 0 0 1 0 1.425ZM24 9.913l-3.725 3.727L16 9.367l.02-.021c.388.239.903.19 1.239-.146l3.014-3.015L24 9.913Z" }) + ] + } + ); +}); + +export { SiWondershare as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.cjs new file mode 100644 index 000000000..56dbac9f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#07273D"; +const SiWondersharefilmora = React__namespace.forwardRef(function SiWondersharefilmora2({ title = "Wondershare Filmora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.475 0A5.463 5.463 0 0 0 0 5.475v13.05A5.463 5.463 0 0 0 5.475 24h13.05A5.463 5.463 0 0 0 24 18.525V5.475A5.463 5.463 0 0 0 18.525 0H5.475Zm4.552 3.6 4.026 4.029-4.617 4.623-.022-.023a1.088 1.088 0 0 0-.158-1.339L5.999 7.63l4.028-4.03ZM14.528 8l4.027 4.03-8.528 8.536L6 16.536 14.528 8Z" }) + ] + } + ); +}); + +exports.default = SiWondersharefilmora; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.d.ts new file mode 100644 index 000000000..69751873a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#07273D"; +declare const SiWondersharefilmora: IconType; +export { SiWondersharefilmora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.mjs new file mode 100644 index 000000000..5c74391af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWondersharefilmora.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#07273D"; +const SiWondersharefilmora = React.forwardRef(function SiWondersharefilmora2({ title = "Wondershare Filmora", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.475 0A5.463 5.463 0 0 0 0 5.475v13.05A5.463 5.463 0 0 0 5.475 24h13.05A5.463 5.463 0 0 0 24 18.525V5.475A5.463 5.463 0 0 0 18.525 0H5.475Zm4.552 3.6 4.026 4.029-4.617 4.623-.022-.023a1.088 1.088 0 0 0-.158-1.339L5.999 7.63l4.028-4.03ZM14.528 8l4.027 4.03-8.528 8.536L6 16.536 14.528 8Z" }) + ] + } + ); +}); + +export { SiWondersharefilmora as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.cjs new file mode 100644 index 000000000..d6882bd98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#873EFF"; +const SiWoo = React__namespace.forwardRef(function SiWoo2({ title = "Woo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.118 8.895c-.562 0-.928.183-1.255.797l-1.49 2.811v-2.496c0-.745-.353-1.111-1.007-1.111s-.928.222-1.255.85l-1.412 2.757v-2.47c0-.797-.327-1.137-1.124-1.137H.954C.34 8.895 0 9.183 0 9.706s.327.837.928.837h.667v3.15c0 .889.601 1.412 1.464 1.412s1.255-.34 1.686-1.137l.941-1.765v1.49c0 .876.575 1.412 1.451 1.412s1.203-.301 1.699-1.137l2.17-3.66c.471-.798.144-1.413-.901-1.413zm4.078 0c-1.778 0-3.124 1.321-3.124 3.112s1.359 3.098 3.124 3.098 3.111-1.32 3.124-3.098c0-1.791-1.359-3.112-3.124-3.112m0 4.301c-.667 0-1.124-.497-1.124-1.19s.458-1.203 1.124-1.203 1.124.51 1.124 1.203-.444 1.19-1.124 1.19m6.68-4.301c-1.765 0-3.124 1.32-3.124 3.111s1.359 3.098 3.124 3.098S24 13.784 24 12.006s-1.359-3.111-3.124-3.111m0 4.301c-.68 0-1.111-.497-1.111-1.19s.444-1.203 1.111-1.203S22 11.313 22 12.006s-.444 1.19-1.124 1.19" }) + ] + } + ); +}); + +exports.default = SiWoo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.d.ts new file mode 100644 index 000000000..d22737ea2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#873EFF"; +declare const SiWoo: IconType; +export { SiWoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.mjs new file mode 100644 index 000000000..8967c55b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWoo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#873EFF"; +const SiWoo = React.forwardRef(function SiWoo2({ title = "Woo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.118 8.895c-.562 0-.928.183-1.255.797l-1.49 2.811v-2.496c0-.745-.353-1.111-1.007-1.111s-.928.222-1.255.85l-1.412 2.757v-2.47c0-.797-.327-1.137-1.124-1.137H.954C.34 8.895 0 9.183 0 9.706s.327.837.928.837h.667v3.15c0 .889.601 1.412 1.464 1.412s1.255-.34 1.686-1.137l.941-1.765v1.49c0 .876.575 1.412 1.451 1.412s1.203-.301 1.699-1.137l2.17-3.66c.471-.798.144-1.413-.901-1.413zm4.078 0c-1.778 0-3.124 1.321-3.124 3.112s1.359 3.098 3.124 3.098 3.111-1.32 3.124-3.098c0-1.791-1.359-3.112-3.124-3.112m0 4.301c-.667 0-1.124-.497-1.124-1.19s.458-1.203 1.124-1.203 1.124.51 1.124 1.203-.444 1.19-1.124 1.19m6.68-4.301c-1.765 0-3.124 1.32-3.124 3.111s1.359 3.098 3.124 3.098S24 13.784 24 12.006s-1.359-3.111-3.124-3.111m0 4.301c-.68 0-1.111-.497-1.111-1.19s.444-1.203 1.111-1.203S22 11.313 22 12.006s-.444 1.19-1.124 1.19" }) + ] + } + ); +}); + +export { SiWoo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.cjs new file mode 100644 index 000000000..56113419f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#96588A"; +const SiWoocommerce = React__namespace.forwardRef(function SiWoocommerce2({ title = "WooCommerce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.754 9.58a.754.754 0 00-.754.758v2.525c0 .42.339.758.758.758h3.135l1.431.799-.326-.799h2.373a.757.757 0 00.758-.758v-2.525a.757.757 0 00-.758-.758H.754zm2.709.445h.03c.065.001.124.023.179.067a.26.26 0 01.103.19.29.29 0 01-.033.16c-.13.239-.236.64-.322 1.199-.083.541-.114.965-.094 1.267a.392.392 0 01-.039.219.213.213 0 01-.176.12c-.086.006-.177-.034-.263-.124-.31-.316-.555-.788-.735-1.416-.216.425-.375.744-.478.957-.196.376-.363.568-.502.578-.09.007-.166-.069-.233-.228-.17-.436-.352-1.277-.548-2.524a.297.297 0 01.054-.222c.047-.064.116-.095.21-.102.169-.013.265.065.288.238.103.695.217 1.284.336 1.766l.727-1.387c.066-.126.15-.192.25-.199.146-.01.237.083.273.28.083.441.188.817.315 1.136.086-.844.233-1.453.44-1.828a.255.255 0 01.218-.147zm1.293.36c.056 0 .116.006.18.02.232.05.411.177.53.386.107.18.161.395.161.654 0 .343-.087.654-.26.94-.2.332-.459.5-.781.5a.88.88 0 01-.18-.022.763.763 0 01-.531-.384 1.287 1.287 0 01-.158-.659c0-.342.085-.655.258-.937.202-.333.462-.498.78-.498zm2.084 0c.056 0 .116.006.18.02.236.05.411.177.53.386.107.18.16.395.16.654 0 .343-.086.654-.259.94-.2.332-.459.5-.781.5a.88.88 0 01-.18-.022.763.763 0 01-.531-.384 1.287 1.287 0 01-.16-.659c0-.342.087-.655.26-.937.202-.333.462-.498.78-.498zm4.437.047c-.305 0-.546.102-.718.304-.173.203-.256.49-.256.856 0 .395.086.697.256.906.17.21.418.316.744.316.315 0 .559-.107.728-.316.17-.21.256-.504.256-.883s-.087-.673-.26-.879c-.176-.202-.424-.304-.75-.304zm-1.466.002a1.13 1.13 0 00-.84.326c-.223.22-.332.499-.332.838 0 .362.108.658.328.88.22.223.505.336.861.336.103 0 .22-.016.346-.052v-.54c-.117.034-.216.051-.303.051a.545.545 0 01-.422-.177c-.106-.12-.16-.278-.16-.48 0-.19.053-.348.156-.468a.498.498 0 01.397-.181c.103 0 .212.015.332.049v-.537a1.394 1.394 0 00-.363-.045zm12.414 0a1.135 1.135 0 00-.84.326c-.223.22-.332.499-.332.838 0 .362.108.658.328.88.22.223.506.336.861.336.103 0 .22-.016.346-.052v-.54c-.116.034-.216.051-.303.051a.545.545 0 01-.422-.177c-.106-.12-.16-.278-.16-.48 0-.19.053-.348.156-.468a.498.498 0 01.397-.181c.103 0 .212.015.332.049v-.537a1.394 1.394 0 00-.363-.045zm-9.598.06l-.29 2.264h.579l.156-1.559.395 1.559h.412l.379-1.555.164 1.555h.603l-.304-2.264h-.791l-.12.508c-.03.13-.06.264-.087.4l-.067.352a29.97 29.97 0 00-.258-1.26h-.771zm2.768 0l-.29 2.264h.579l.156-1.559.396 1.559h.412l.375-1.555.165 1.555h.603l-.305-2.264h-.789l-.119.508c-.03.13-.06.264-.086.4l-.066.352c-.063-.352-.15-.771-.26-1.26h-.771zm3.988 0v2.264h.611v-1.031h.012l.494 1.03h.645l-.489-1.019a.61.61 0 00.37-.552.598.598 0 00-.25-.506c-.167-.123-.394-.186-.68-.186h-.713zm3.377 0v2.264H24v-.483h-.63v-.414h.54v-.468h-.54v-.416h.626v-.483H22.76zm-4.793.004v2.264h1.24v-.483h-.627v-.416h.541v-.468h-.54v-.415h.622v-.482h-1.236zm2.025.432c.146.003.25.025.313.072.063.046.091.12.091.227 0 .156-.135.236-.404.24v-.54zm-15.22.011c-.104 0-.205.069-.301.211a1.078 1.078 0 00-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215.083.016.173-.02.27-.106.123-.11.205-.273.252-.492.016-.077.023-.16.023-.246 0-.097-.02-.2-.06-.303-.05-.13-.116-.198-.196-.215a.246.246 0 00-.045-.006zm2.083 0c-.103 0-.204.069-.3.211a1.078 1.078 0 00-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215.083.016.173-.02.27-.106.123-.11.205-.273.252-.492.013-.077.023-.16.023-.246 0-.097-.02-.2-.06-.303-.05-.13-.116-.198-.196-.215a.246.246 0 00-.045-.006zm4.428.006c.233 0 .354.218.354.66-.004.273-.038.46-.098.553a.293.293 0 01-.262.139.266.266 0 01-.242-.139c-.056-.093-.084-.28-.084-.562 0-.436.11-.65.332-.65Z" }) + ] + } + ); +}); + +exports.default = SiWoocommerce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.d.ts new file mode 100644 index 000000000..188605dca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#96588A"; +declare const SiWoocommerce: IconType; +export { SiWoocommerce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.mjs new file mode 100644 index 000000000..7cb9b1617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWoocommerce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#96588A"; +const SiWoocommerce = React.forwardRef(function SiWoocommerce2({ title = "WooCommerce", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.754 9.58a.754.754 0 00-.754.758v2.525c0 .42.339.758.758.758h3.135l1.431.799-.326-.799h2.373a.757.757 0 00.758-.758v-2.525a.757.757 0 00-.758-.758H.754zm2.709.445h.03c.065.001.124.023.179.067a.26.26 0 01.103.19.29.29 0 01-.033.16c-.13.239-.236.64-.322 1.199-.083.541-.114.965-.094 1.267a.392.392 0 01-.039.219.213.213 0 01-.176.12c-.086.006-.177-.034-.263-.124-.31-.316-.555-.788-.735-1.416-.216.425-.375.744-.478.957-.196.376-.363.568-.502.578-.09.007-.166-.069-.233-.228-.17-.436-.352-1.277-.548-2.524a.297.297 0 01.054-.222c.047-.064.116-.095.21-.102.169-.013.265.065.288.238.103.695.217 1.284.336 1.766l.727-1.387c.066-.126.15-.192.25-.199.146-.01.237.083.273.28.083.441.188.817.315 1.136.086-.844.233-1.453.44-1.828a.255.255 0 01.218-.147zm1.293.36c.056 0 .116.006.18.02.232.05.411.177.53.386.107.18.161.395.161.654 0 .343-.087.654-.26.94-.2.332-.459.5-.781.5a.88.88 0 01-.18-.022.763.763 0 01-.531-.384 1.287 1.287 0 01-.158-.659c0-.342.085-.655.258-.937.202-.333.462-.498.78-.498zm2.084 0c.056 0 .116.006.18.02.236.05.411.177.53.386.107.18.16.395.16.654 0 .343-.086.654-.259.94-.2.332-.459.5-.781.5a.88.88 0 01-.18-.022.763.763 0 01-.531-.384 1.287 1.287 0 01-.16-.659c0-.342.087-.655.26-.937.202-.333.462-.498.78-.498zm4.437.047c-.305 0-.546.102-.718.304-.173.203-.256.49-.256.856 0 .395.086.697.256.906.17.21.418.316.744.316.315 0 .559-.107.728-.316.17-.21.256-.504.256-.883s-.087-.673-.26-.879c-.176-.202-.424-.304-.75-.304zm-1.466.002a1.13 1.13 0 00-.84.326c-.223.22-.332.499-.332.838 0 .362.108.658.328.88.22.223.505.336.861.336.103 0 .22-.016.346-.052v-.54c-.117.034-.216.051-.303.051a.545.545 0 01-.422-.177c-.106-.12-.16-.278-.16-.48 0-.19.053-.348.156-.468a.498.498 0 01.397-.181c.103 0 .212.015.332.049v-.537a1.394 1.394 0 00-.363-.045zm12.414 0a1.135 1.135 0 00-.84.326c-.223.22-.332.499-.332.838 0 .362.108.658.328.88.22.223.506.336.861.336.103 0 .22-.016.346-.052v-.54c-.116.034-.216.051-.303.051a.545.545 0 01-.422-.177c-.106-.12-.16-.278-.16-.48 0-.19.053-.348.156-.468a.498.498 0 01.397-.181c.103 0 .212.015.332.049v-.537a1.394 1.394 0 00-.363-.045zm-9.598.06l-.29 2.264h.579l.156-1.559.395 1.559h.412l.379-1.555.164 1.555h.603l-.304-2.264h-.791l-.12.508c-.03.13-.06.264-.087.4l-.067.352a29.97 29.97 0 00-.258-1.26h-.771zm2.768 0l-.29 2.264h.579l.156-1.559.396 1.559h.412l.375-1.555.165 1.555h.603l-.305-2.264h-.789l-.119.508c-.03.13-.06.264-.086.4l-.066.352c-.063-.352-.15-.771-.26-1.26h-.771zm3.988 0v2.264h.611v-1.031h.012l.494 1.03h.645l-.489-1.019a.61.61 0 00.37-.552.598.598 0 00-.25-.506c-.167-.123-.394-.186-.68-.186h-.713zm3.377 0v2.264H24v-.483h-.63v-.414h.54v-.468h-.54v-.416h.626v-.483H22.76zm-4.793.004v2.264h1.24v-.483h-.627v-.416h.541v-.468h-.54v-.415h.622v-.482h-1.236zm2.025.432c.146.003.25.025.313.072.063.046.091.12.091.227 0 .156-.135.236-.404.24v-.54zm-15.22.011c-.104 0-.205.069-.301.211a1.078 1.078 0 00-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215.083.016.173-.02.27-.106.123-.11.205-.273.252-.492.016-.077.023-.16.023-.246 0-.097-.02-.2-.06-.303-.05-.13-.116-.198-.196-.215a.246.246 0 00-.045-.006zm2.083 0c-.103 0-.204.069-.3.211a1.078 1.078 0 00-.2.639c0 .096.02.2.06.303.049.13.117.198.196.215.083.016.173-.02.27-.106.123-.11.205-.273.252-.492.013-.077.023-.16.023-.246 0-.097-.02-.2-.06-.303-.05-.13-.116-.198-.196-.215a.246.246 0 00-.045-.006zm4.428.006c.233 0 .354.218.354.66-.004.273-.038.46-.098.553a.293.293 0 01-.262.139.266.266 0 01-.242-.139c-.056-.093-.084-.28-.084-.562 0-.436.11-.65.332-.65Z" }) + ] + } + ); +}); + +export { SiWoocommerce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.cjs new file mode 100644 index 000000000..06df068bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#21759B"; +const SiWordpress = React__namespace.forwardRef(function SiWordpress2({ title = "WordPress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.469 6.825c.84 1.537 1.318 3.3 1.318 5.175 0 3.979-2.156 7.456-5.363 9.325l3.295-9.527c.615-1.54.82-2.771.82-3.864 0-.405-.026-.78-.07-1.11m-7.981.105c.647-.03 1.232-.105 1.232-.105.582-.075.514-.93-.067-.899 0 0-1.755.135-2.88.135-1.064 0-2.85-.15-2.85-.15-.585-.03-.661.855-.075.885 0 0 .54.061 1.125.09l1.68 4.605-2.37 7.08L5.354 6.9c.649-.03 1.234-.1 1.234-.1.585-.075.516-.93-.065-.896 0 0-1.746.138-2.874.138-.2 0-.438-.008-.69-.015C4.911 3.15 8.235 1.215 12 1.215c2.809 0 5.365 1.072 7.286 2.833-.046-.003-.091-.009-.141-.009-1.06 0-1.812.923-1.812 1.914 0 .89.513 1.643 1.06 2.531.411.72.89 1.643.89 2.977 0 .915-.354 1.994-.821 3.479l-1.075 3.585-3.9-11.61.001.014zM12 22.784c-1.059 0-2.081-.153-3.048-.437l3.237-9.406 3.315 9.087c.024.053.05.101.078.149-1.12.393-2.325.609-3.582.609M1.211 12c0-1.564.336-3.05.935-4.39L7.29 21.709C3.694 19.96 1.212 16.271 1.211 12M12 0C5.385 0 0 5.385 0 12s5.385 12 12 12 12-5.385 12-12S18.615 0 12 0" }) + ] + } + ); +}); + +exports.default = SiWordpress; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.d.ts new file mode 100644 index 000000000..0ba9c16e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#21759B"; +declare const SiWordpress: IconType; +export { SiWordpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.mjs new file mode 100644 index 000000000..3c8f354f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWordpress.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#21759B"; +const SiWordpress = React.forwardRef(function SiWordpress2({ title = "WordPress", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.469 6.825c.84 1.537 1.318 3.3 1.318 5.175 0 3.979-2.156 7.456-5.363 9.325l3.295-9.527c.615-1.54.82-2.771.82-3.864 0-.405-.026-.78-.07-1.11m-7.981.105c.647-.03 1.232-.105 1.232-.105.582-.075.514-.93-.067-.899 0 0-1.755.135-2.88.135-1.064 0-2.85-.15-2.85-.15-.585-.03-.661.855-.075.885 0 0 .54.061 1.125.09l1.68 4.605-2.37 7.08L5.354 6.9c.649-.03 1.234-.1 1.234-.1.585-.075.516-.93-.065-.896 0 0-1.746.138-2.874.138-.2 0-.438-.008-.69-.015C4.911 3.15 8.235 1.215 12 1.215c2.809 0 5.365 1.072 7.286 2.833-.046-.003-.091-.009-.141-.009-1.06 0-1.812.923-1.812 1.914 0 .89.513 1.643 1.06 2.531.411.72.89 1.643.89 2.977 0 .915-.354 1.994-.821 3.479l-1.075 3.585-3.9-11.61.001.014zM12 22.784c-1.059 0-2.081-.153-3.048-.437l3.237-9.406 3.315 9.087c.024.053.05.101.078.149-1.12.393-2.325.609-3.582.609M1.211 12c0-1.564.336-3.05.935-4.39L7.29 21.709C3.694 19.96 1.212 16.271 1.211 12M12 0C5.385 0 0 5.385 0 12s5.385 12 12 12 12-5.385 12-12S18.615 0 12 0" }) + ] + } + ); +}); + +export { SiWordpress as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.cjs new file mode 100644 index 000000000..42ec97771 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4526CE"; +const SiWorkplace = React__namespace.forwardRef(function SiWorkplace2({ title = "Workplace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.268 10.541C23.268 4.715 18.544 0 12.728 0c-1.614 0-3.191.317-4.663.952a11.952 11.952 0 00-3.817 2.574 11.915 11.915 0 00-3.516 8.478 11.924 11.924 0 003.516 8.48 12.05 12.05 0 003.817 2.573c1.472.626 3.05.943 4.671.943 1.56 0 3.05-.3 4.416-.837l-.908-2.292a9.448 9.448 0 01-3.508.67 9.481 9.481 0 01-6.743-2.794A9.481 9.481 0 013.2 12.004c0-2.547.996-4.944 2.794-6.742a9.496 9.496 0 016.743-2.794 8.072 8.072 0 016.734 12.524l-2.098-5.165c-.308-.758-.679-1.895-2.071-1.895-1.393 0-1.763 1.146-2.063 1.895l-1.93 4.769-2.591-6.54H5.993l3.226 7.95c.326.802.688 1.895 2.09 1.895 1.4 0 1.753-1.093 2.08-1.895l1.912-4.724 1.921 4.724c.388.978.802 1.895 2.08 1.895.908 0 1.481-.582 1.798-.96a10.493 10.493 0 002.168-6.4Z" }) + ] + } + ); +}); + +exports.default = SiWorkplace; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.d.ts new file mode 100644 index 000000000..c98b8e2c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4526CE"; +declare const SiWorkplace: IconType; +export { SiWorkplace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.mjs new file mode 100644 index 000000000..78a5bfbc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWorkplace.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4526CE"; +const SiWorkplace = React.forwardRef(function SiWorkplace2({ title = "Workplace", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.268 10.541C23.268 4.715 18.544 0 12.728 0c-1.614 0-3.191.317-4.663.952a11.952 11.952 0 00-3.817 2.574 11.915 11.915 0 00-3.516 8.478 11.924 11.924 0 003.516 8.48 12.05 12.05 0 003.817 2.573c1.472.626 3.05.943 4.671.943 1.56 0 3.05-.3 4.416-.837l-.908-2.292a9.448 9.448 0 01-3.508.67 9.481 9.481 0 01-6.743-2.794A9.481 9.481 0 013.2 12.004c0-2.547.996-4.944 2.794-6.742a9.496 9.496 0 016.743-2.794 8.072 8.072 0 016.734 12.524l-2.098-5.165c-.308-.758-.679-1.895-2.071-1.895-1.393 0-1.763 1.146-2.063 1.895l-1.93 4.769-2.591-6.54H5.993l3.226 7.95c.326.802.688 1.895 2.09 1.895 1.4 0 1.753-1.093 2.08-1.895l1.912-4.724 1.921 4.724c.388.978.802 1.895 2.08 1.895.908 0 1.481-.582 1.798-.96a10.493 10.493 0 002.168-6.4Z" }) + ] + } + ); +}); + +export { SiWorkplace as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.cjs new file mode 100644 index 000000000..da46071a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0093D5"; +const SiWorldhealthorganization = React__namespace.forwardRef(function SiWorldhealthorganization2({ title = "World Health Organization", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0214 1.4122c-1.064 0-.6118 1.5783-.5273 2.0925 0 .025.0857 3.5707.1024 4.3789.1619-.0429.3226-.0822.4761-.119l.3214-.081c.0154-.782.094-4.1658.0964-4.1837.0702-.551.6272-2.0877-.469-2.0877zm-.3118 12.0405c.119-.0405.238-.0762.3452-.1107l.2297-.0714c0-.2274.069-3.372.0809-3.9433a7.2271 7.2271 0 0 0-.732.2107c.0083.4285.0702 3.5719.0762 3.9147zm.3928 1.1926c-.0405.0143-.144.0583-.2095.081-.0655.0226-.1571.0606-.1571.0845 0 .0238.0666 3.6195.0666 3.6992 0 .744.3785.7487.3785 0 0-.0535.0762-3.9159.0762-3.9159s-.0905.0298-.1547.0512zm-.8558-10.1468a5.4953 5.4953 0 0 0-.8332.3392c-.2975.0988-.7141.119-1.151.588a5.8905 5.8905 0 0 0-.3963.5094c-.131.188-.1369.4904-.238.6535-.1381.238-.1048.3701-.1048.3701v.0072a.632.632 0 0 1-.1595.2952.6046.6046 0 0 1-.5546.2213c.1975.0988.476-.0392.476-.0392a3.6433 3.6433 0 0 0-.1047.3927c.2214-.501.425-.6843.488-.7355.0952.0214.2928.013.6594-.1976.4142-.238 1.0367-.6249 1.2129-.87a1.6175 1.6175 0 0 1 .7332-.5535c-.0131-.3773-.0203-.7035-.0274-.9808zM9.4993 6.0637L9.284 6.11l.257-.413.3.0095zm1.2795 8.64c0 .4665.3452.714.6892.9128 0-.0785-.0143-.801-.0143-.8129.0071-.144.1464-.2309.2595-.2845a5.6 5.6 0 0 1 .5463-.2082c.1023-.0358.1892-.0703.2868-.0988.6904-.2083 1.489-.4761 1.489-1.3093 0-.8332-.6844-1.1902-1.4283-1.4438 0 .2678-.013.6594-.019.9296.3166.119.526.275.526.5142 0 .3011-.3213.476-.5486.5618a5.9252 5.9252 0 0 1-.2797.0976c-.1833.0571-.381.119-.5654.1904a2.7126 2.7126 0 0 0-.2797.119c-.3285.1643-.663.406-.6618.832zm4.5753-8.1496c0-.8534-.619-1.8009-2.1365-2.1353a3.6528 3.6528 0 0 0-.463-.0536c0 .1286-.0095.4237-.0095.4237 0 .0929-.0095.4345-.012.5083a2.1424 2.1424 0 0 1 .2917.0404c.882.2107 1.1974.7142 1.1974 1.2165 0 .8105-.6927 1.1164-1.5473 1.3473l-.2821.0738c-.2583.0643-.5237.1262-.7868.1964a10.782 10.782 0 0 0-.2797.0797c-.9438.288-1.7556.7427-1.7556 1.9044 0 1.1617.926 1.5878 1.8294 1.8663q-.0083-.4987-.019-1.0022c-.3988-.1868-.6797-.4332-.6797-.8474 0-.4142.256-.6499.6475-.8332a3.0192 3.0192 0 0 1 .2786-.1083c.225-.0762.476-.1416.7439-.2059l.282-.0678c1.2724-.2976 2.7007-.6963 2.7007-2.4031zm-2.8482 9.5362c.4284.2166.8236.5165.989 1.0843.0726-.9403-.4546-1.3474-.9771-1.6223l-.012.538zM19.5199 5.29c.4595.5475 1.2629.87 1.733 1.4188-.3368-1.6223-1.589-2.947-3.0696-3.2637.7225.544.8784 1.2998 1.3366 1.845zM1.7235 9.4023c1.02-2.2198 2.5423-1.7497 3.1862-3.8647-.357.6487-2.0234.9224-2.7982 2.5852.394-.988.1964-2.4995.863-3.3148-1.9926 1.47-1.144 3.848-1.251 4.5943zm1.8472 5.324c.1833.864-.357 2.1114.5 3.304-.8856-.9926-2.7614-1.245-3.5256-2.7542.9522 3.6898 3.4517 2.928 4.5694 3.729-.9237-1.327-.1679-2.209-1.5438-4.2789zm-.2868 2.315c-.5463-2.0603.4273-2.7745-.3166-4.7503-.0774 1.114-.8201 1.6568-.319 3.6898C1.7639 14.2597.3963 13.6169 0 12.4338c.0274 3.2351 2.6269 3.7148 3.2839 4.6075zm3.992 3.4517c-.7653-1.0594-.238-1.658-2.3923-3.5815.4546.7023-.0143 1.5854 1.4354 2.959-1.4188-.8332-3.3755-.4761-4.3194-1.5962 1.6211 3.103 4.4694 1.8366 5.2763 2.2222zm10.4051-.6225c1.4497-1.3736.9808-2.2615 1.4354-2.959-2.1495 1.9235-1.627 2.5221-2.3923 3.5815.807-.3857 3.6552.8807 5.2751-2.2187-.9427 1.1213-2.8994.763-4.3182 1.5997zm2.2484-1.8437c.8534-1.1903.3166-2.44.4999-3.3041-1.376 2.0698-.6201 2.9518-1.5473 4.2848 1.1236-.801 3.6135-.0416 4.5693-3.729-.763 1.5069-2.6364 1.7592-3.522 2.7519zm-3.435 2.6126a10.617 10.617 0 0 0-2.3508-.3571 5.6834 5.6834 0 0 0-2.1424.3642 5.687 5.687 0 0 0-2.1424-.3642 10.617 10.617 0 0 0-2.3508.357c-1.2938.344-2.4114.6106-3.3862.119.9343.8332 2.0234 1.1249 3.5981.9523 1.3093-.1405 2.3698-.7963 3.6052-.7868h.0488a6.6023 6.6023 0 0 0-2.0377 1.5842l.5952.0798s.6272-1.2605 2.0698-1.589c1.4426.3285 2.0698 1.589 2.0698 1.589l.5951-.0798a6.6213 6.6213 0 0 0-2.0377-1.5758h.0488c1.2355-.0096 2.2936.6463 3.604.7867 1.5748.1702 2.665-.1262 3.5994-.9522-.9748.4868-2.0925.2202-3.3863-.1238zM3.0553 10.0569c-.5333 1.0236-1.3617 1.2581-1.27 3.3767-.45-1.883-1.5188-2.5804-1.5057-3.7813-.7427 3.1303 1.2426 3.5016 1.752 4.8133-.075-1.8794 1.1248-2.259 1.0236-4.4087zm.745-2.4162c-.1856.2595-.3154.3702-.8105.7785a4.0194 4.0194 0 0 0-1.4426 2.353c.0512-1.1473-.6582-2.7958-.1869-3.998-1.8246 2.577.1048 4.1207.1726 5.0538.4737-1.796 1.5616-1.8103 2.2674-4.1873zm18.6511 3.1316A4.0254 4.0254 0 0 0 21.01 8.4192c-.4951-.4083-.6249-.519-.8105-.7785.7058 2.3805 1.7937 2.3912 2.2614 4.1873.0679-.9331 1.9972-2.4769.1714-5.0537.4761 1.202-.232 2.8506-.1809 3.998zm1.5473 1.6663c-.3963 1.1831-1.764 1.8258-2.6483 3.5517.5011-2.0377-.238-2.5805-.319-3.6898-.7439 1.9782.238 2.6888-.3166 4.7503.6582-.9022 3.2577-1.3819 3.2851-4.617zm-3.0506-2.3817c-.1011 2.1496 1.0998 2.5293 1.0236 4.404.5106-1.3093 2.4995-1.683 1.752-4.8134.0143 1.201-1.0545 1.9044-1.5008 3.7754.0833-2.1079-.7451-2.3424-1.2748-3.366zM4.4824 5.296c.4607-.5474.6166-1.3009 1.3379-1.8448-1.4807.3166-2.7376 1.6413-3.0697 3.2636.463-.5546 1.2677-.8772 1.727-1.4247zm14.6126.2476c.644 2.1151 2.1663 1.645 3.1851 3.8648-.106-.7463.7427-3.1244-1.2497-4.5944.6665.8165.469 2.327.8629 3.3148-.7773-1.6687-2.44-1.9424-2.803-2.5911zm-5.1692 1.195a4.9895 4.9895 0 0 0-1.2176-.3273v.2714a4.761 4.761 0 0 1 1.1188.307.7141.7141 0 0 0 .0988-.251zM13.6175 4.12l.081-.0726-.1548-.0655-.407-.0083-.106.0738-.238-.0202v.0583a4.136 4.136 0 0 1 .419.044l.1987-.0178zm-.789 8.778c0-.069-.0917-.1368-.2274-.2011h-.025c0 .056 0 .332-.0084.4666.1679-.075.2607-.156.2607-.2655zM8.1126 7.7205a1.2997 1.2997 0 0 1 .0345-.1488.6891.6891 0 0 1-.1666.0167zm3.8956 11.9738a8.3031 8.3031 0 0 0 .8463-16.5598c0 .0155 0 .0321-.0095.0476-.0167.081-.0322.1535-.044.2178a8.0163 8.0163 0 0 1 4.8359 2.2615l-.9165.9165.0345-.162-.119-.0523-.1643-.0095.0345-.106-.1106-.3749-.2286-.2511-.7141-.3773-.062.0655-.1296.038a2.1424 2.1424 0 0 1 .3785 1.2034v.163l.357.4464-.1666.038.1107.1667-.313.3118-.1262-.238a2.133 2.133 0 0 1-.238.4678l.0702.0642-.9653.9653a3.2917 3.2917 0 0 0-.181-.1607 4.5833 4.5833 0 0 1-.2832.119l.0821.0643-.0488.0488-.119.0631-.0417.119-.0702-.0702-.2035.0679.056.0892.1404-.0369.0916.0072.0072-.05.0702-.0357.0214-.0417.1262-.0357h.0988c.019.0167.0392.0345.057.0524l-.388.369-.0285-.0405-.4.0654-.0892.0893-.0869.0107.2476-.238-.088-.044-.2322.3094.0679-.0071v.119l.0845.0333.0166.119-.1392-.0273-.1452.0261-.3571-.1797-.0286 1.4164c.8332.2785 1.708.6808 1.708 1.7378a1.3093 1.3093 0 0 1-.595 1.1164l-.018.0119-.0261.0179c-.3357.2213-.7665.3404-1.1403.457l-.0107.7403c.5951.2952 1.3152.7249 1.2486 1.9544-.0084.3023-.1262.3856-.2274.413a6.2511 6.2511 0 0 1-1.0712.1702v.2702a6.6499 6.6499 0 0 0 4.1397-1.8282l.964.9641a8.0186 8.0186 0 0 1-11.1049.0226l.9641-.964a6.6451 6.6451 0 0 0 4.0814 1.8031v-.2702a6.3785 6.3785 0 0 1-3.8945-1.7222l.257-.2583.3572.0405.188-.2024.4928.0167.0726-.1702-.0179-.0726a4.999 4.999 0 0 0 2.5102 1.0033v-.2713a4.7526 4.7526 0 0 1-2.7042-1.2403l.9653-.9652a3.4338 3.4338 0 0 0 .782.5249.913.913 0 0 1 .0976-.2536 3.1208 3.1208 0 0 1-.6892-.463l.9677-.9664a1.7687 1.7687 0 0 0 .5166.2868v-.2904a1.4842 1.4842 0 0 1-.319-.1893l.2725-.2725a6.7378 6.7378 0 0 1-.288-.0929l-.1833.1833a1.4759 1.4759 0 0 1-.2309-.344 3.2815 3.2815 0 0 1-.476-.2547 1.8675 1.8675 0 0 1-.9035-1.6401 1.9687 1.9687 0 0 1 .3904-1.2498l-.9617-.9617a4.7502 4.7502 0 0 1 2.5757-1.2664c0-.0928 0-.1845-.006-.2714a5.0204 5.0204 0 0 0-2.76 1.3498l-.1631-.1595a4.504 4.504 0 0 0-.1297.2511l.1023.1036a5.0145 5.0145 0 0 0-1.364 3.3552H5.6096a6.382 6.382 0 0 1 1.7699-4.3253l.4332.4345a.5487.5487 0 0 0 .062 0 .6546.6546 0 0 0 .2463-.0715l-.551-.551a6.488 6.488 0 0 1 .9521-.7594 1.7925 1.7925 0 0 1 .0679-.2 3.2053 3.2053 0 0 1 .2083-.2797 6.6653 6.6653 0 0 0-1.4188 1.0462l-.9641-.964a7.9984 7.9984 0 0 1 4.7729-2.2377 2.1298 2.1298 0 0 1-.012-.0595c-.0118-.0631-.0261-.1333-.0392-.2071a8.3043 8.3043 0 0 0 .8665 16.5622zm1.7985-5.731v-.0071zm4.0206-8.108a8.0056 8.0056 0 0 1 2.2198 5.4561h-1.37a6.626 6.626 0 0 0-.7141-2.9137l.0119-.0238.094.05.0226-.0726-.238-.4273-.2892-.3999-.3428-.2797c-.119-.1452-.238-.2857-.3654-.4213zm-1.7437 1.7462l.3273.0143.0786.094-.0393.1392.4511.2857.0893-.0107.5832.6665.238-.0833a6.3559 6.3559 0 0 1 .5952 2.6042h-1.364a4.9728 4.9728 0 0 0-.1274-1.0378l.063-.0846.0846-.4272-.0643-.4595-.1642-.5284-.381-.557.093.0487.0463-.0464-.3059-.2071-.0202.0678.3059.4369.1726.357.119.3571.0393.238.063.4024-.119.0083s-.132-.2464-.1725-.3476l.0607-.0916-.119-.1666V9.107l-.0834-.1047-.1035.013a2.924 2.924 0 0 0-.119-.2035l.0737.037.019-.0191-.0392-.0857.0893-.05-.0405-.05-.1321.05.0488-.207-.0786-.0453-.0702.1654a5.0752 5.0752 0 0 0-.4963-.6308zm-.2737 3.1981l.2451-.1333.25-.038.0547-.119.1393-.0834.0536-.119.0428-.2012a4.071 4.071 0 0 1 .0548.2155l-.1321.394v.1332l.1916-.2559a4.611 4.611 0 0 1 .0678.7142h-1.1902l-.0274-.1036.1393-.1107.0273-.0666.0607-.0452.162-.0167.0166-.0714zm-1.6378-.9367l.119-.0285v-.0286l-.119-.0821.0416-.2571.1464-.1464a3.2327 3.2327 0 0 1 .2536.3297l-.0512.1583-.1333-.0952-.1012.0273.05.094h.05l-.056.1393-.038-.056zm.5225 4.5313l-.2952-.0833-.088.032-.1667-.1273-.1571-.056c.0774-.0559.1524-.119.225-.176l.238.1713.1857.0976.0916.0917zm-.15-5.2633l.9653-.9653a4.8121 4.8121 0 0 1 .5951.8023l-.119.0333.006.2154.357.2286a4.6657 4.6657 0 0 1 .2262.6094l-.0631.0928-.131.0833-.032.2-.0893.05-.075.088-.075-.0273h-.1333l.0774-.1048.0559-.2725.088-.0548-.2487-.2559-.194.0655-.044.182-.119.1322-.1274-.1048-.0452-.1118.0726-.0453.0404.0738.0595-.0226-.0261-.119h-.0845l-.006.05-.056.0107-.3035-.3559-.1023-.0774.0393-.0428.0904-.031-.0833-.0333s-.106.0238-.119.0238l.0607.0762h-.1524a3.2982 3.2982 0 0 0-.3047-.3928zm.4916 5.136l-.131-.131.1-.1298.1262-.257-.0488-.0715.0833-.1904-.0095-.1714-.05-.1773-.119-.0417-.044.1-.0715-.019a3.235 3.235 0 0 0 .2857-.4988l.119-.0523.069-.0929.0334.0381.0833-.1-.0666-.0833.0607-.0167.1118.0453h.2107l.1274-.0667.3332-.088-.063-.1107-.0215-.1345.1786.0785.0666-.0393-.0333-.138-.2154.0869-.238-.05-.1834-.375h1.0439a4.7514 4.7514 0 0 1-1.3176 3.1042l-.1429-.144.062-.1917-.112-.4225zm.1845 2.6625l.1285-.2762-.05-.119.1893-.1666v-.1l-.1619-.1012.1333-.2654.2-.2618-.2-.2155h-.15l-.0928-.1511a7.5411 7.5411 0 0 0 .238-.206l.9654.9653a6.4725 6.4725 0 0 1-1.1998.8987zm1.2045-1.2736l.1071-.119-.1011-.5285-.069-.0273.0428-.0893-.2285-.0714-.044.188-.0227.238-.0476.0441-.4166-.4166a5.0192 5.0192 0 0 0 1.3973-3.2934h1.3653a6.3737 6.3737 0 0 1-1.7973 4.2587zm.3761.375a6.6463 6.6463 0 0 0 1.877-4.4492h1.364a8.008 8.008 0 0 1-2.2757 5.4144zm-8.2126-1.3224a5.1601 5.1601 0 0 1-.2833-.319l.0417-.3452-.144-.3308-.0358-.5178-.1618-.3142.0333-.1952-.1952-.375-.1702-.0856.069-.1988-.0702-.1571.0702-.1798h.1869l.0654-.1083h.319l.0488.094-.0595.3298-.038.0559.119.2607-.0786.0428-.0548-.069-.0238.0262.0548.1547.094.181h.044l.031-.1762-.0452-.0596v-.1095l-.0143-.2261.0595-.3975-.0643-.1072h.2286a3.3898 3.3898 0 0 0 .939 2.1627zm-.9046-2.6673l-.1286.2023h-.2213l-.0179-.013a4.849 4.849 0 0 1-.069-.6488h.4106l-.0988.3285zm.4487-.9368l.025-.2713.1619-.094.2892.0511.044.0524a3.2136 3.2136 0 0 0-.044.469h-.3273zm1.389 1.02l.0679-.0344.1702.1345-.0774.063.2012.1334-.0048-.1429.1071-.1773.1119.119.119.1643-.219.0452.094.188.144-.0761-.0142-.0595.1071-.0727.063-.2975a1.7746 1.7746 0 0 0 .3131.476l-.964.9642a3.1196 3.1196 0 0 1-.8451-1.8116l.1975.2107h.1857zm-.9926-3.9825l.964.9653a3.441 3.441 0 0 0-.5117.7368h-.0667l-.1357.0416h-.0476l-.144.1345.182-.038.1643-.0417-.0285.063-.144.0882h-.0726l-.212.1618-.2046-.0166-.2964.5522.0583.1107-.1607.1786-.025.238h-.6046a4.7514 4.7514 0 0 1 1.2855-3.1744zM7.283 15.4202l.3059.1797.063.0428-.2213.2214q-.1548-.1607-.3-.332zm-.306-3.8386c0 .1321.0168.2643.031.394l-.1666.038-.0345.1691-.3476.4428.0084.6082-.3571.119h-.1952a6.3654 6.3654 0 0 1-.3047-1.7723zm-1.3473 1.764l-.0797-.0155-.075-.0845-.3833-.0333.119.1606-.357-.0666.0928-.0857-.0869-.0857-.2559.1119-.0916.169.0357.3892.2952.6999.1416.2213.081.0298-.2226-.4225-.0488-.2155.05-.0523-.031-.119.1345.0178.206.3118.0511.0203v-.2274l.0833.0488.0179.119.2166.0572.0905-.0643.031.0214v.1655l.0951.119.119.0262.2524.4273.1535.0428.0476-.2a6.7034 6.7034 0 0 0 .9403 1.2141l-.964.9641a8.0127 8.0127 0 0 1-2.3115-5.4287h1.3652a6.6451 6.6451 0 0 0 .288 1.764zm.5952-7.514l.964.964a6.6546 6.6546 0 0 0-1.8496 4.5158h-1.364A8.008 8.008 0 0 1 6.219 5.8316zm9.879-.4975l-.0822-.1333-.1785-.0893-.1393.106.1786.0951.1916.1464zm-.8344 3.8504v.1047l.238-.0702.0726-.144-.163-.2143.0869-.1309.2202.1571.0404-.0321-.044-.031-.05-.0952.0905-.0523-.0881-.119-.2071.1047-.069.1297-.0417.113.0916.1536-.0333.0714zm-9.8671 6.1202l.0179-.0619-.119-.2666-.1453-.0536zm5.5798-5.1276c0 .2286.1393.3904.3928.5297v-.1024l-.1595-.1594.0845-.1536.069-.019c0-.2666-.0106-.5654-.0118-.6082h-.012c-.2356.1309-.363.288-.363.513Z" }) + ] + } + ); +}); + +exports.default = SiWorldhealthorganization; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.d.ts new file mode 100644 index 000000000..a45174adf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0093D5"; +declare const SiWorldhealthorganization: IconType; +export { SiWorldhealthorganization as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.mjs new file mode 100644 index 000000000..19d2e703e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWorldhealthorganization.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0093D5"; +const SiWorldhealthorganization = React.forwardRef(function SiWorldhealthorganization2({ title = "World Health Organization", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0214 1.4122c-1.064 0-.6118 1.5783-.5273 2.0925 0 .025.0857 3.5707.1024 4.3789.1619-.0429.3226-.0822.4761-.119l.3214-.081c.0154-.782.094-4.1658.0964-4.1837.0702-.551.6272-2.0877-.469-2.0877zm-.3118 12.0405c.119-.0405.238-.0762.3452-.1107l.2297-.0714c0-.2274.069-3.372.0809-3.9433a7.2271 7.2271 0 0 0-.732.2107c.0083.4285.0702 3.5719.0762 3.9147zm.3928 1.1926c-.0405.0143-.144.0583-.2095.081-.0655.0226-.1571.0606-.1571.0845 0 .0238.0666 3.6195.0666 3.6992 0 .744.3785.7487.3785 0 0-.0535.0762-3.9159.0762-3.9159s-.0905.0298-.1547.0512zm-.8558-10.1468a5.4953 5.4953 0 0 0-.8332.3392c-.2975.0988-.7141.119-1.151.588a5.8905 5.8905 0 0 0-.3963.5094c-.131.188-.1369.4904-.238.6535-.1381.238-.1048.3701-.1048.3701v.0072a.632.632 0 0 1-.1595.2952.6046.6046 0 0 1-.5546.2213c.1975.0988.476-.0392.476-.0392a3.6433 3.6433 0 0 0-.1047.3927c.2214-.501.425-.6843.488-.7355.0952.0214.2928.013.6594-.1976.4142-.238 1.0367-.6249 1.2129-.87a1.6175 1.6175 0 0 1 .7332-.5535c-.0131-.3773-.0203-.7035-.0274-.9808zM9.4993 6.0637L9.284 6.11l.257-.413.3.0095zm1.2795 8.64c0 .4665.3452.714.6892.9128 0-.0785-.0143-.801-.0143-.8129.0071-.144.1464-.2309.2595-.2845a5.6 5.6 0 0 1 .5463-.2082c.1023-.0358.1892-.0703.2868-.0988.6904-.2083 1.489-.4761 1.489-1.3093 0-.8332-.6844-1.1902-1.4283-1.4438 0 .2678-.013.6594-.019.9296.3166.119.526.275.526.5142 0 .3011-.3213.476-.5486.5618a5.9252 5.9252 0 0 1-.2797.0976c-.1833.0571-.381.119-.5654.1904a2.7126 2.7126 0 0 0-.2797.119c-.3285.1643-.663.406-.6618.832zm4.5753-8.1496c0-.8534-.619-1.8009-2.1365-2.1353a3.6528 3.6528 0 0 0-.463-.0536c0 .1286-.0095.4237-.0095.4237 0 .0929-.0095.4345-.012.5083a2.1424 2.1424 0 0 1 .2917.0404c.882.2107 1.1974.7142 1.1974 1.2165 0 .8105-.6927 1.1164-1.5473 1.3473l-.2821.0738c-.2583.0643-.5237.1262-.7868.1964a10.782 10.782 0 0 0-.2797.0797c-.9438.288-1.7556.7427-1.7556 1.9044 0 1.1617.926 1.5878 1.8294 1.8663q-.0083-.4987-.019-1.0022c-.3988-.1868-.6797-.4332-.6797-.8474 0-.4142.256-.6499.6475-.8332a3.0192 3.0192 0 0 1 .2786-.1083c.225-.0762.476-.1416.7439-.2059l.282-.0678c1.2724-.2976 2.7007-.6963 2.7007-2.4031zm-2.8482 9.5362c.4284.2166.8236.5165.989 1.0843.0726-.9403-.4546-1.3474-.9771-1.6223l-.012.538zM19.5199 5.29c.4595.5475 1.2629.87 1.733 1.4188-.3368-1.6223-1.589-2.947-3.0696-3.2637.7225.544.8784 1.2998 1.3366 1.845zM1.7235 9.4023c1.02-2.2198 2.5423-1.7497 3.1862-3.8647-.357.6487-2.0234.9224-2.7982 2.5852.394-.988.1964-2.4995.863-3.3148-1.9926 1.47-1.144 3.848-1.251 4.5943zm1.8472 5.324c.1833.864-.357 2.1114.5 3.304-.8856-.9926-2.7614-1.245-3.5256-2.7542.9522 3.6898 3.4517 2.928 4.5694 3.729-.9237-1.327-.1679-2.209-1.5438-4.2789zm-.2868 2.315c-.5463-2.0603.4273-2.7745-.3166-4.7503-.0774 1.114-.8201 1.6568-.319 3.6898C1.7639 14.2597.3963 13.6169 0 12.4338c.0274 3.2351 2.6269 3.7148 3.2839 4.6075zm3.992 3.4517c-.7653-1.0594-.238-1.658-2.3923-3.5815.4546.7023-.0143 1.5854 1.4354 2.959-1.4188-.8332-3.3755-.4761-4.3194-1.5962 1.6211 3.103 4.4694 1.8366 5.2763 2.2222zm10.4051-.6225c1.4497-1.3736.9808-2.2615 1.4354-2.959-2.1495 1.9235-1.627 2.5221-2.3923 3.5815.807-.3857 3.6552.8807 5.2751-2.2187-.9427 1.1213-2.8994.763-4.3182 1.5997zm2.2484-1.8437c.8534-1.1903.3166-2.44.4999-3.3041-1.376 2.0698-.6201 2.9518-1.5473 4.2848 1.1236-.801 3.6135-.0416 4.5693-3.729-.763 1.5069-2.6364 1.7592-3.522 2.7519zm-3.435 2.6126a10.617 10.617 0 0 0-2.3508-.3571 5.6834 5.6834 0 0 0-2.1424.3642 5.687 5.687 0 0 0-2.1424-.3642 10.617 10.617 0 0 0-2.3508.357c-1.2938.344-2.4114.6106-3.3862.119.9343.8332 2.0234 1.1249 3.5981.9523 1.3093-.1405 2.3698-.7963 3.6052-.7868h.0488a6.6023 6.6023 0 0 0-2.0377 1.5842l.5952.0798s.6272-1.2605 2.0698-1.589c1.4426.3285 2.0698 1.589 2.0698 1.589l.5951-.0798a6.6213 6.6213 0 0 0-2.0377-1.5758h.0488c1.2355-.0096 2.2936.6463 3.604.7867 1.5748.1702 2.665-.1262 3.5994-.9522-.9748.4868-2.0925.2202-3.3863-.1238zM3.0553 10.0569c-.5333 1.0236-1.3617 1.2581-1.27 3.3767-.45-1.883-1.5188-2.5804-1.5057-3.7813-.7427 3.1303 1.2426 3.5016 1.752 4.8133-.075-1.8794 1.1248-2.259 1.0236-4.4087zm.745-2.4162c-.1856.2595-.3154.3702-.8105.7785a4.0194 4.0194 0 0 0-1.4426 2.353c.0512-1.1473-.6582-2.7958-.1869-3.998-1.8246 2.577.1048 4.1207.1726 5.0538.4737-1.796 1.5616-1.8103 2.2674-4.1873zm18.6511 3.1316A4.0254 4.0254 0 0 0 21.01 8.4192c-.4951-.4083-.6249-.519-.8105-.7785.7058 2.3805 1.7937 2.3912 2.2614 4.1873.0679-.9331 1.9972-2.4769.1714-5.0537.4761 1.202-.232 2.8506-.1809 3.998zm1.5473 1.6663c-.3963 1.1831-1.764 1.8258-2.6483 3.5517.5011-2.0377-.238-2.5805-.319-3.6898-.7439 1.9782.238 2.6888-.3166 4.7503.6582-.9022 3.2577-1.3819 3.2851-4.617zm-3.0506-2.3817c-.1011 2.1496 1.0998 2.5293 1.0236 4.404.5106-1.3093 2.4995-1.683 1.752-4.8134.0143 1.201-1.0545 1.9044-1.5008 3.7754.0833-2.1079-.7451-2.3424-1.2748-3.366zM4.4824 5.296c.4607-.5474.6166-1.3009 1.3379-1.8448-1.4807.3166-2.7376 1.6413-3.0697 3.2636.463-.5546 1.2677-.8772 1.727-1.4247zm14.6126.2476c.644 2.1151 2.1663 1.645 3.1851 3.8648-.106-.7463.7427-3.1244-1.2497-4.5944.6665.8165.469 2.327.8629 3.3148-.7773-1.6687-2.44-1.9424-2.803-2.5911zm-5.1692 1.195a4.9895 4.9895 0 0 0-1.2176-.3273v.2714a4.761 4.761 0 0 1 1.1188.307.7141.7141 0 0 0 .0988-.251zM13.6175 4.12l.081-.0726-.1548-.0655-.407-.0083-.106.0738-.238-.0202v.0583a4.136 4.136 0 0 1 .419.044l.1987-.0178zm-.789 8.778c0-.069-.0917-.1368-.2274-.2011h-.025c0 .056 0 .332-.0084.4666.1679-.075.2607-.156.2607-.2655zM8.1126 7.7205a1.2997 1.2997 0 0 1 .0345-.1488.6891.6891 0 0 1-.1666.0167zm3.8956 11.9738a8.3031 8.3031 0 0 0 .8463-16.5598c0 .0155 0 .0321-.0095.0476-.0167.081-.0322.1535-.044.2178a8.0163 8.0163 0 0 1 4.8359 2.2615l-.9165.9165.0345-.162-.119-.0523-.1643-.0095.0345-.106-.1106-.3749-.2286-.2511-.7141-.3773-.062.0655-.1296.038a2.1424 2.1424 0 0 1 .3785 1.2034v.163l.357.4464-.1666.038.1107.1667-.313.3118-.1262-.238a2.133 2.133 0 0 1-.238.4678l.0702.0642-.9653.9653a3.2917 3.2917 0 0 0-.181-.1607 4.5833 4.5833 0 0 1-.2832.119l.0821.0643-.0488.0488-.119.0631-.0417.119-.0702-.0702-.2035.0679.056.0892.1404-.0369.0916.0072.0072-.05.0702-.0357.0214-.0417.1262-.0357h.0988c.019.0167.0392.0345.057.0524l-.388.369-.0285-.0405-.4.0654-.0892.0893-.0869.0107.2476-.238-.088-.044-.2322.3094.0679-.0071v.119l.0845.0333.0166.119-.1392-.0273-.1452.0261-.3571-.1797-.0286 1.4164c.8332.2785 1.708.6808 1.708 1.7378a1.3093 1.3093 0 0 1-.595 1.1164l-.018.0119-.0261.0179c-.3357.2213-.7665.3404-1.1403.457l-.0107.7403c.5951.2952 1.3152.7249 1.2486 1.9544-.0084.3023-.1262.3856-.2274.413a6.2511 6.2511 0 0 1-1.0712.1702v.2702a6.6499 6.6499 0 0 0 4.1397-1.8282l.964.9641a8.0186 8.0186 0 0 1-11.1049.0226l.9641-.964a6.6451 6.6451 0 0 0 4.0814 1.8031v-.2702a6.3785 6.3785 0 0 1-3.8945-1.7222l.257-.2583.3572.0405.188-.2024.4928.0167.0726-.1702-.0179-.0726a4.999 4.999 0 0 0 2.5102 1.0033v-.2713a4.7526 4.7526 0 0 1-2.7042-1.2403l.9653-.9652a3.4338 3.4338 0 0 0 .782.5249.913.913 0 0 1 .0976-.2536 3.1208 3.1208 0 0 1-.6892-.463l.9677-.9664a1.7687 1.7687 0 0 0 .5166.2868v-.2904a1.4842 1.4842 0 0 1-.319-.1893l.2725-.2725a6.7378 6.7378 0 0 1-.288-.0929l-.1833.1833a1.4759 1.4759 0 0 1-.2309-.344 3.2815 3.2815 0 0 1-.476-.2547 1.8675 1.8675 0 0 1-.9035-1.6401 1.9687 1.9687 0 0 1 .3904-1.2498l-.9617-.9617a4.7502 4.7502 0 0 1 2.5757-1.2664c0-.0928 0-.1845-.006-.2714a5.0204 5.0204 0 0 0-2.76 1.3498l-.1631-.1595a4.504 4.504 0 0 0-.1297.2511l.1023.1036a5.0145 5.0145 0 0 0-1.364 3.3552H5.6096a6.382 6.382 0 0 1 1.7699-4.3253l.4332.4345a.5487.5487 0 0 0 .062 0 .6546.6546 0 0 0 .2463-.0715l-.551-.551a6.488 6.488 0 0 1 .9521-.7594 1.7925 1.7925 0 0 1 .0679-.2 3.2053 3.2053 0 0 1 .2083-.2797 6.6653 6.6653 0 0 0-1.4188 1.0462l-.9641-.964a7.9984 7.9984 0 0 1 4.7729-2.2377 2.1298 2.1298 0 0 1-.012-.0595c-.0118-.0631-.0261-.1333-.0392-.2071a8.3043 8.3043 0 0 0 .8665 16.5622zm1.7985-5.731v-.0071zm4.0206-8.108a8.0056 8.0056 0 0 1 2.2198 5.4561h-1.37a6.626 6.626 0 0 0-.7141-2.9137l.0119-.0238.094.05.0226-.0726-.238-.4273-.2892-.3999-.3428-.2797c-.119-.1452-.238-.2857-.3654-.4213zm-1.7437 1.7462l.3273.0143.0786.094-.0393.1392.4511.2857.0893-.0107.5832.6665.238-.0833a6.3559 6.3559 0 0 1 .5952 2.6042h-1.364a4.9728 4.9728 0 0 0-.1274-1.0378l.063-.0846.0846-.4272-.0643-.4595-.1642-.5284-.381-.557.093.0487.0463-.0464-.3059-.2071-.0202.0678.3059.4369.1726.357.119.3571.0393.238.063.4024-.119.0083s-.132-.2464-.1725-.3476l.0607-.0916-.119-.1666V9.107l-.0834-.1047-.1035.013a2.924 2.924 0 0 0-.119-.2035l.0737.037.019-.0191-.0392-.0857.0893-.05-.0405-.05-.1321.05.0488-.207-.0786-.0453-.0702.1654a5.0752 5.0752 0 0 0-.4963-.6308zm-.2737 3.1981l.2451-.1333.25-.038.0547-.119.1393-.0834.0536-.119.0428-.2012a4.071 4.071 0 0 1 .0548.2155l-.1321.394v.1332l.1916-.2559a4.611 4.611 0 0 1 .0678.7142h-1.1902l-.0274-.1036.1393-.1107.0273-.0666.0607-.0452.162-.0167.0166-.0714zm-1.6378-.9367l.119-.0285v-.0286l-.119-.0821.0416-.2571.1464-.1464a3.2327 3.2327 0 0 1 .2536.3297l-.0512.1583-.1333-.0952-.1012.0273.05.094h.05l-.056.1393-.038-.056zm.5225 4.5313l-.2952-.0833-.088.032-.1667-.1273-.1571-.056c.0774-.0559.1524-.119.225-.176l.238.1713.1857.0976.0916.0917zm-.15-5.2633l.9653-.9653a4.8121 4.8121 0 0 1 .5951.8023l-.119.0333.006.2154.357.2286a4.6657 4.6657 0 0 1 .2262.6094l-.0631.0928-.131.0833-.032.2-.0893.05-.075.088-.075-.0273h-.1333l.0774-.1048.0559-.2725.088-.0548-.2487-.2559-.194.0655-.044.182-.119.1322-.1274-.1048-.0452-.1118.0726-.0453.0404.0738.0595-.0226-.0261-.119h-.0845l-.006.05-.056.0107-.3035-.3559-.1023-.0774.0393-.0428.0904-.031-.0833-.0333s-.106.0238-.119.0238l.0607.0762h-.1524a3.2982 3.2982 0 0 0-.3047-.3928zm.4916 5.136l-.131-.131.1-.1298.1262-.257-.0488-.0715.0833-.1904-.0095-.1714-.05-.1773-.119-.0417-.044.1-.0715-.019a3.235 3.235 0 0 0 .2857-.4988l.119-.0523.069-.0929.0334.0381.0833-.1-.0666-.0833.0607-.0167.1118.0453h.2107l.1274-.0667.3332-.088-.063-.1107-.0215-.1345.1786.0785.0666-.0393-.0333-.138-.2154.0869-.238-.05-.1834-.375h1.0439a4.7514 4.7514 0 0 1-1.3176 3.1042l-.1429-.144.062-.1917-.112-.4225zm.1845 2.6625l.1285-.2762-.05-.119.1893-.1666v-.1l-.1619-.1012.1333-.2654.2-.2618-.2-.2155h-.15l-.0928-.1511a7.5411 7.5411 0 0 0 .238-.206l.9654.9653a6.4725 6.4725 0 0 1-1.1998.8987zm1.2045-1.2736l.1071-.119-.1011-.5285-.069-.0273.0428-.0893-.2285-.0714-.044.188-.0227.238-.0476.0441-.4166-.4166a5.0192 5.0192 0 0 0 1.3973-3.2934h1.3653a6.3737 6.3737 0 0 1-1.7973 4.2587zm.3761.375a6.6463 6.6463 0 0 0 1.877-4.4492h1.364a8.008 8.008 0 0 1-2.2757 5.4144zm-8.2126-1.3224a5.1601 5.1601 0 0 1-.2833-.319l.0417-.3452-.144-.3308-.0358-.5178-.1618-.3142.0333-.1952-.1952-.375-.1702-.0856.069-.1988-.0702-.1571.0702-.1798h.1869l.0654-.1083h.319l.0488.094-.0595.3298-.038.0559.119.2607-.0786.0428-.0548-.069-.0238.0262.0548.1547.094.181h.044l.031-.1762-.0452-.0596v-.1095l-.0143-.2261.0595-.3975-.0643-.1072h.2286a3.3898 3.3898 0 0 0 .939 2.1627zm-.9046-2.6673l-.1286.2023h-.2213l-.0179-.013a4.849 4.849 0 0 1-.069-.6488h.4106l-.0988.3285zm.4487-.9368l.025-.2713.1619-.094.2892.0511.044.0524a3.2136 3.2136 0 0 0-.044.469h-.3273zm1.389 1.02l.0679-.0344.1702.1345-.0774.063.2012.1334-.0048-.1429.1071-.1773.1119.119.119.1643-.219.0452.094.188.144-.0761-.0142-.0595.1071-.0727.063-.2975a1.7746 1.7746 0 0 0 .3131.476l-.964.9642a3.1196 3.1196 0 0 1-.8451-1.8116l.1975.2107h.1857zm-.9926-3.9825l.964.9653a3.441 3.441 0 0 0-.5117.7368h-.0667l-.1357.0416h-.0476l-.144.1345.182-.038.1643-.0417-.0285.063-.144.0882h-.0726l-.212.1618-.2046-.0166-.2964.5522.0583.1107-.1607.1786-.025.238h-.6046a4.7514 4.7514 0 0 1 1.2855-3.1744zM7.283 15.4202l.3059.1797.063.0428-.2213.2214q-.1548-.1607-.3-.332zm-.306-3.8386c0 .1321.0168.2643.031.394l-.1666.038-.0345.1691-.3476.4428.0084.6082-.3571.119h-.1952a6.3654 6.3654 0 0 1-.3047-1.7723zm-1.3473 1.764l-.0797-.0155-.075-.0845-.3833-.0333.119.1606-.357-.0666.0928-.0857-.0869-.0857-.2559.1119-.0916.169.0357.3892.2952.6999.1416.2213.081.0298-.2226-.4225-.0488-.2155.05-.0523-.031-.119.1345.0178.206.3118.0511.0203v-.2274l.0833.0488.0179.119.2166.0572.0905-.0643.031.0214v.1655l.0951.119.119.0262.2524.4273.1535.0428.0476-.2a6.7034 6.7034 0 0 0 .9403 1.2141l-.964.9641a8.0127 8.0127 0 0 1-2.3115-5.4287h1.3652a6.6451 6.6451 0 0 0 .288 1.764zm.5952-7.514l.964.964a6.6546 6.6546 0 0 0-1.8496 4.5158h-1.364A8.008 8.008 0 0 1 6.219 5.8316zm9.879-.4975l-.0822-.1333-.1785-.0893-.1393.106.1786.0951.1916.1464zm-.8344 3.8504v.1047l.238-.0702.0726-.144-.163-.2143.0869-.1309.2202.1571.0404-.0321-.044-.031-.05-.0952.0905-.0523-.0881-.119-.2071.1047-.069.1297-.0417.113.0916.1536-.0333.0714zm-9.8671 6.1202l.0179-.0619-.119-.2666-.1453-.0536zm5.5798-5.1276c0 .2286.1393.3904.3928.5297v-.1024l-.1595-.1594.0845-.1536.069-.019c0-.2666-.0106-.5654-.0118-.6082h-.012c-.2356.1309-.363.288-.363.513Z" }) + ] + } + ); +}); + +export { SiWorldhealthorganization as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.cjs new file mode 100644 index 000000000..311cc0446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0ECAD4"; +const SiWpengine = React__namespace.forwardRef(function SiWpengine2({ title = "WP Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.145 0v5.867L9.99 7.71h4.022l1.845-1.844V0zm8.145 0v5.867l1.845 1.844h5.864V.001zM1.845 0L0 1.845v5.866h7.712V0zM0 8.146v7.71h5.866l1.845-1.844V8.145zm18.133 0L16.29 9.989v4.022l1.845 1.845H24V8.145zm-6.147 2.75a1.105 1.105 0 00.014 2.21A1.105 1.105 0 0013.105 12a1.105 1.105 0 00-1.118-1.104zM0 16.29v7.71h5.866l1.845-1.842v-4.023l-1.845-1.845zm9.988 0l-1.843 1.845V24h7.71v-5.866L14.01 16.29zm6.3 0V24H24v-5.865l-1.842-1.845z" }) + ] + } + ); +}); + +exports.default = SiWpengine; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.d.ts new file mode 100644 index 000000000..8630ac0da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0ECAD4"; +declare const SiWpengine: IconType; +export { SiWpengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.mjs new file mode 100644 index 000000000..3dfa3c56c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWpengine.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0ECAD4"; +const SiWpengine = React.forwardRef(function SiWpengine2({ title = "WP Engine", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.145 0v5.867L9.99 7.71h4.022l1.845-1.844V0zm8.145 0v5.867l1.845 1.844h5.864V.001zM1.845 0L0 1.845v5.866h7.712V0zM0 8.146v7.71h5.866l1.845-1.844V8.145zm18.133 0L16.29 9.989v4.022l1.845 1.845H24V8.145zm-6.147 2.75a1.105 1.105 0 00.014 2.21A1.105 1.105 0 0013.105 12a1.105 1.105 0 00-1.118-1.104zM0 16.29v7.71h5.866l1.845-1.842v-4.023l-1.845-1.845zm9.988 0l-1.843 1.845V24h7.71v-5.866L14.01 16.29zm6.3 0V24H24v-5.865l-1.842-1.845z" }) + ] + } + ); +}); + +export { SiWpengine as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.cjs new file mode 100644 index 000000000..358feaa19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2563EB"; +const SiWpexplorer = React__namespace.forwardRef(function SiWpexplorer2({ title = "WPExplorer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12A12 12 0 1 1 12 0a12.008 12.008 0 0 1 12 12Zm-1.5 0A10.5 10.5 0 1 0 12 22.5 10.516 10.516 0 0 0 22.5 12ZM7.542 5.841l4.074 1.739-1.739 4.073L5.8 9.914l1.742-4.073Zm5.158 7.926 2.185 4.406H14.2l-2.343-4.687-2.295 4.687h-.656l2.4-5.01-1.046-.441.282-.656 3.215 1.364-.281.67Zm-.553-5.451 3.216 1.378-1.378 3.2-3.2-1.364 1.364-3.215Zm3.764 2.011 2.56 1.082-1.1 2.546-2.545-1.083 1.082-2.545Z" }) + ] + } + ); +}); + +exports.default = SiWpexplorer; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.d.ts new file mode 100644 index 000000000..823119aaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2563EB"; +declare const SiWpexplorer: IconType; +export { SiWpexplorer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.mjs new file mode 100644 index 000000000..7130b5071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWpexplorer.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2563EB"; +const SiWpexplorer = React.forwardRef(function SiWpexplorer2({ title = "WPExplorer", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12A12 12 0 1 1 12 0a12.008 12.008 0 0 1 12 12Zm-1.5 0A10.5 10.5 0 1 0 12 22.5 10.516 10.516 0 0 0 22.5 12ZM7.542 5.841l4.074 1.739-1.739 4.073L5.8 9.914l1.742-4.073Zm5.158 7.926 2.185 4.406H14.2l-2.343-4.687-2.295 4.687h-.656l2.4-5.01-1.046-.441.282-.656 3.215 1.364-.281.67Zm-.553-5.451 3.216 1.378-1.378 3.2-3.2-1.364 1.364-3.215Zm3.764 2.011 2.56 1.082-1.1 2.546-2.545-1.083 1.082-2.545Z" }) + ] + } + ); +}); + +export { SiWpexplorer as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.cjs new file mode 100644 index 000000000..45d22da23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F56640"; +const SiWprocket = React__namespace.forwardRef(function SiWprocket2({ title = "WP Rocket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.723.666c-.08-.276.08-.47.356-.47h2.283c.16 0 .31.137.356.274L8.393 7.07h.08L11.491.218A.374.374 0 0111.824 0h.356c.172 0 .287.092.333.218l3.018 6.85h.08L17.286.47a.397.397 0 01.356-.275h2.284c.275 0 .424.195.355.47l-3.683 13.082a.369.369 0 01-.356.275h-.31a.38.38 0 01-.333-.218l-3.568-7.963h-.058l-3.545 7.963a.403.403 0 01-.333.218h-.31a.379.379 0 01-.356-.275L3.723.666m8.308 7.917l-2.594 5.818a1.663 1.663 0 01-.344.448v.004a1.466 1.466 0 01-.688.34l1.4 8.687c.091.16.263.16.367 0l1.79-2.72 1.64 2.708c.104.16.265.16.368 0l1.584-8.698a1.5 1.5 0 01-.832-.618l-.02-.03a1.405 1.405 0 01-.066-.12l-.609-1.366h-.003Z" }) + ] + } + ); +}); + +exports.default = SiWprocket; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.d.ts new file mode 100644 index 000000000..65ede2333 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F56640"; +declare const SiWprocket: IconType; +export { SiWprocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.mjs new file mode 100644 index 000000000..c62abc8dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWprocket.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F56640"; +const SiWprocket = React.forwardRef(function SiWprocket2({ title = "WP Rocket", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.723.666c-.08-.276.08-.47.356-.47h2.283c.16 0 .31.137.356.274L8.393 7.07h.08L11.491.218A.374.374 0 0111.824 0h.356c.172 0 .287.092.333.218l3.018 6.85h.08L17.286.47a.397.397 0 01.356-.275h2.284c.275 0 .424.195.355.47l-3.683 13.082a.369.369 0 01-.356.275h-.31a.38.38 0 01-.333-.218l-3.568-7.963h-.058l-3.545 7.963a.403.403 0 01-.333.218h-.31a.379.379 0 01-.356-.275L3.723.666m8.308 7.917l-2.594 5.818a1.663 1.663 0 01-.344.448v.004a1.466 1.466 0 01-.688.34l1.4 8.687c.091.16.263.16.367 0l1.79-2.72 1.64 2.708c.104.16.265.16.368 0l1.584-8.698a1.5 1.5 0 01-.832-.618l-.02-.03a1.405 1.405 0 01-.066-.12l-.609-1.366h-.003Z" }) + ] + } + ); +}); + +export { SiWprocket as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.cjs new file mode 100644 index 000000000..a3af4da64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5AC4EE"; +const SiWritedotas = React__namespace.forwardRef(function SiWritedotas2({ title = "Write.as", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.812 5.139l2.179 7.509a168.085 168.085 0 01.666 2.459h.025c.054-.372.145-.772.273-1.204l.353-1.176 1.05-3.442.213-.671c.062-.199.126-.382.192-.551.068-.167.131-.327.194-.478.062-.151.132-.301.213-.451v-.028l-1.569.105V5.139h5.169V6.88c-.364 0-.682.119-.956.358a3.608 3.608 0 00-.711.85 6.325 6.325 0 00-.493.984 22.78 22.78 0 00-.286.758l-3.096 8.997h-2.884L11.47 13.02c-.053-.142-.12-.345-.199-.606a46.941 46.941 0 01-.247-.85c-.083-.307-.173-.623-.265-.95-.092-.328-.179-.638-.259-.931h-.026c-.053.381-.14.809-.26 1.283-.119.474-.243.937-.372 1.388-.128.451-.248.859-.358 1.223-.111.364-.194.62-.246.771l-1.501 4.479h-2.7L1.742 9.392a27.83 27.83 0 01-.472-1.39 3.995 3.995 0 01-.113-.418l-.094-.425L0 7.212V5.139h6.526V6.88c-.382.027-.65.141-.806.345-.155.204-.231.466-.231.784-.009.151.001.311.032.478a4.9 4.9 0 00.128.519l.916 3.322c.107.399.21.818.312 1.256.101.438.184.884.247 1.336h.026l.134-.598a39.977 39.977 0 01.331-1.429c.072-.278.155-.587.254-.922l1.993-6.832h2.95zM24 16.628a2.232 2.232 0 11-4.464 0 2.232 2.232 0 114.464 0" }) + ] + } + ); +}); + +exports.default = SiWritedotas; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.d.ts new file mode 100644 index 000000000..0b532b2a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5AC4EE"; +declare const SiWritedotas: IconType; +export { SiWritedotas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.mjs new file mode 100644 index 000000000..e5f378002 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWritedotas.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5AC4EE"; +const SiWritedotas = React.forwardRef(function SiWritedotas2({ title = "Write.as", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.812 5.139l2.179 7.509a168.085 168.085 0 01.666 2.459h.025c.054-.372.145-.772.273-1.204l.353-1.176 1.05-3.442.213-.671c.062-.199.126-.382.192-.551.068-.167.131-.327.194-.478.062-.151.132-.301.213-.451v-.028l-1.569.105V5.139h5.169V6.88c-.364 0-.682.119-.956.358a3.608 3.608 0 00-.711.85 6.325 6.325 0 00-.493.984 22.78 22.78 0 00-.286.758l-3.096 8.997h-2.884L11.47 13.02c-.053-.142-.12-.345-.199-.606a46.941 46.941 0 01-.247-.85c-.083-.307-.173-.623-.265-.95-.092-.328-.179-.638-.259-.931h-.026c-.053.381-.14.809-.26 1.283-.119.474-.243.937-.372 1.388-.128.451-.248.859-.358 1.223-.111.364-.194.62-.246.771l-1.501 4.479h-2.7L1.742 9.392a27.83 27.83 0 01-.472-1.39 3.995 3.995 0 01-.113-.418l-.094-.425L0 7.212V5.139h6.526V6.88c-.382.027-.65.141-.806.345-.155.204-.231.466-.231.784-.009.151.001.311.032.478a4.9 4.9 0 00.128.519l.916 3.322c.107.399.21.818.312 1.256.101.438.184.884.247 1.336h.026l.134-.598a39.977 39.977 0 01.331-1.429c.072-.278.155-.587.254-.922l1.993-6.832h2.95zM24 16.628a2.232 2.232 0 11-4.464 0 2.232 2.232 0 114.464 0" }) + ] + } + ); +}); + +export { SiWritedotas as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.cjs new file mode 100644 index 000000000..f81e1e208 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiWwe = React__namespace.forwardRef(function SiWwe2({ title = "WWE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 1.047L15.67 18.08l-3.474-8.53-3.474 8.53L.393 1.048l3.228 8.977 3.286 8.5C3.874 19.334 1.332 20.46 0 21.75c.443-.168 3.47-1.24 7.409-1.927l1.21 3.129 1.552-3.518a36.769 36.769 0 0 1 3.96-.204l1.644 3.722 1.4-3.62c2.132.145 3.861.426 4.675.692 0 0 .92-1.962 1.338-2.866a54.838 54.838 0 0 0-5.138-.092l2.722-7.042zm-21.84.026L8.64 13.86l3.568-9.155 3.567 9.155 6.481-12.788-6.433 8.452-3.615-8.22-3.615 8.22zm10.036 13.776l1.115 2.523a42.482 42.482 0 0 0-2.363.306Z" }) + ] + } + ); +}); + +exports.default = SiWwe; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.d.ts new file mode 100644 index 000000000..e77608ee4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiWwe: IconType; +export { SiWwe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.mjs new file mode 100644 index 000000000..58d03c6a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWwe.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiWwe = React.forwardRef(function SiWwe2({ title = "WWE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 1.047L15.67 18.08l-3.474-8.53-3.474 8.53L.393 1.048l3.228 8.977 3.286 8.5C3.874 19.334 1.332 20.46 0 21.75c.443-.168 3.47-1.24 7.409-1.927l1.21 3.129 1.552-3.518a36.769 36.769 0 0 1 3.96-.204l1.644 3.722 1.4-3.62c2.132.145 3.861.426 4.675.692 0 0 .92-1.962 1.338-2.866a54.838 54.838 0 0 0-5.138-.092l2.722-7.042zm-21.84.026L8.64 13.86l3.568-9.155 3.567 9.155 6.481-12.788-6.433 8.452-3.615-8.22-3.615 8.22zm10.036 13.776l1.115 2.523a42.482 42.482 0 0 0-2.363.306Z" }) + ] + } + ); +}); + +export { SiWwe as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.cjs new file mode 100644 index 000000000..162dfd77f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00549F"; +const SiWwise = React__namespace.forwardRef(function SiWwise2({ title = "Wwise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12c0 .7644-.6193 1.3846-1.3846 1.3846-.7645 0-1.3847-.6202-1.3847-1.3846 0-.765.6202-1.3846 1.3847-1.3846C5.3807 10.6154 6 11.2351 6 12m7.8462-5.5384c0 1.0191-.826 1.8461-1.8463 1.8461-1.0188 0-1.8461-.827-1.8461-1.8461 0-1.0197.8273-1.8462 1.8461-1.8462 1.0203 0 1.8463.8265 1.8463 1.8462M1.8462 12a.923.923 0 0 1-.9231.923C.4143 12.923 0 12.5096 0 12c0-.5102.4142-.923.923-.923.51 0 .923.4128.923.923M24 12c0 .5095-.4133.923-.923.923-.5089 0-.9231-.4135-.9231-.923 0-.5102.4142-.923.923-.923.5098 0 .923.4128.923.923m-3.2306 0c0 .7644-.6195 1.3846-1.3847 1.3846C18.6203 13.3846 18 12.7644 18 12c0-.765.6203-1.3846 1.3846-1.3846.7652 0 1.3847.6197 1.3847 1.3846m-8.2252 2.8356c.0034.535.2557 1.0139.6581 1.3139.4006.3332.6584.8409.6584 1.4048 0 1.0139-.8192 1.8303-1.8295 1.8303H12c-1.0116 0-1.8317-.8164-1.8317-1.8303 0-.564.2596-1.0716.6606-1.4048.3999-.3.6615-.7788.6577-1.314v-.1283c-.004-.5395-.2578-1.0183-.6577-1.3154-.401-.336-.6606-.8423-.6606-1.4077 0-1.0125.8201-1.8302 1.8317-1.8302h.0312c1.0103 0 1.8295.8177 1.8295 1.8302 0 .5654-.2578 1.0717-.6584 1.4077a1.6166 1.6166 0 0 0-.658 1.3154v.1284m3.6922-2.7692c.0033.535.2557 1.0139.658 1.3139.4007.3332.6585.8409.6585 1.4048 0 1.0139-.8192 1.8302-1.8295 1.8302h-.031c-1.0118 0-1.8318-.8163-1.8318-1.8302 0-.564.2597-1.0716.6606-1.4048.3999-.3.6614-.7788.6577-1.314v-.1283c-.004-.5395-.2578-1.0183-.6577-1.3154-.401-.336-.6606-.8423-.6606-1.4077 0-1.0125.82-1.8302 1.8318-1.8302h.031c1.0103 0 1.8295.8177 1.8295 1.8302 0 .5654-.2578 1.0717-.6584 1.4077a1.6166 1.6166 0 0 0-.658 1.3154v.1284m-7.3848 0c.0035.535.2559 1.0139.6582 1.3139a1.828 1.828 0 0 1 .6583 1.4048c0 1.0139-.8193 1.8302-1.8294 1.8302h-.0312c-1.0116 0-1.8317-.8163-1.8317-1.8302 0-.564.2596-1.0716.6606-1.4048.3999-.3.6615-.7788.6577-1.314v-.1283c-.004-.5395-.2578-1.0183-.6577-1.3154-.401-.336-.6606-.8423-.6606-1.4077 0-1.0125.8201-1.8302 1.8317-1.8302h.0312c1.0101 0 1.8294.8177 1.8294 1.8302 0 .5654-.2578 1.0717-.6583 1.4077a1.617 1.617 0 0 0-.6582 1.3154v.1284" }) + ] + } + ); +}); + +exports.default = SiWwise; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.d.ts new file mode 100644 index 000000000..6b3d1cebe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00549F"; +declare const SiWwise: IconType; +export { SiWwise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.mjs new file mode 100644 index 000000000..73e8979bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWwise.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00549F"; +const SiWwise = React.forwardRef(function SiWwise2({ title = "Wwise", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M6 12c0 .7644-.6193 1.3846-1.3846 1.3846-.7645 0-1.3847-.6202-1.3847-1.3846 0-.765.6202-1.3846 1.3847-1.3846C5.3807 10.6154 6 11.2351 6 12m7.8462-5.5384c0 1.0191-.826 1.8461-1.8463 1.8461-1.0188 0-1.8461-.827-1.8461-1.8461 0-1.0197.8273-1.8462 1.8461-1.8462 1.0203 0 1.8463.8265 1.8463 1.8462M1.8462 12a.923.923 0 0 1-.9231.923C.4143 12.923 0 12.5096 0 12c0-.5102.4142-.923.923-.923.51 0 .923.4128.923.923M24 12c0 .5095-.4133.923-.923.923-.5089 0-.9231-.4135-.9231-.923 0-.5102.4142-.923.923-.923.5098 0 .923.4128.923.923m-3.2306 0c0 .7644-.6195 1.3846-1.3847 1.3846C18.6203 13.3846 18 12.7644 18 12c0-.765.6203-1.3846 1.3846-1.3846.7652 0 1.3847.6197 1.3847 1.3846m-8.2252 2.8356c.0034.535.2557 1.0139.6581 1.3139.4006.3332.6584.8409.6584 1.4048 0 1.0139-.8192 1.8303-1.8295 1.8303H12c-1.0116 0-1.8317-.8164-1.8317-1.8303 0-.564.2596-1.0716.6606-1.4048.3999-.3.6615-.7788.6577-1.314v-.1283c-.004-.5395-.2578-1.0183-.6577-1.3154-.401-.336-.6606-.8423-.6606-1.4077 0-1.0125.8201-1.8302 1.8317-1.8302h.0312c1.0103 0 1.8295.8177 1.8295 1.8302 0 .5654-.2578 1.0717-.6584 1.4077a1.6166 1.6166 0 0 0-.658 1.3154v.1284m3.6922-2.7692c.0033.535.2557 1.0139.658 1.3139.4007.3332.6585.8409.6585 1.4048 0 1.0139-.8192 1.8302-1.8295 1.8302h-.031c-1.0118 0-1.8318-.8163-1.8318-1.8302 0-.564.2597-1.0716.6606-1.4048.3999-.3.6614-.7788.6577-1.314v-.1283c-.004-.5395-.2578-1.0183-.6577-1.3154-.401-.336-.6606-.8423-.6606-1.4077 0-1.0125.82-1.8302 1.8318-1.8302h.031c1.0103 0 1.8295.8177 1.8295 1.8302 0 .5654-.2578 1.0717-.6584 1.4077a1.6166 1.6166 0 0 0-.658 1.3154v.1284m-7.3848 0c.0035.535.2559 1.0139.6582 1.3139a1.828 1.828 0 0 1 .6583 1.4048c0 1.0139-.8193 1.8302-1.8294 1.8302h-.0312c-1.0116 0-1.8317-.8163-1.8317-1.8302 0-.564.2596-1.0716.6606-1.4048.3999-.3.6615-.7788.6577-1.314v-.1283c-.004-.5395-.2578-1.0183-.6577-1.3154-.401-.336-.6606-.8423-.6606-1.4077 0-1.0125.8201-1.8302 1.8317-1.8302h.0312c1.0101 0 1.8294.8177 1.8294 1.8302 0 .5654-.2578 1.0717-.6583 1.4077a1.617 1.617 0 0 0-.6582 1.3154v.1284" }) + ] + } + ); +}); + +export { SiWwise as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.cjs new file mode 100644 index 000000000..fc07ac58c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#67D55E"; +const SiWxt = React__namespace.forwardRef(function SiWxt2({ title = "WXT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143" }) + ] + } + ); +}); + +exports.default = SiWxt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.d.ts new file mode 100644 index 000000000..616f40886 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#67D55E"; +declare const SiWxt: IconType; +export { SiWxt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.mjs new file mode 100644 index 000000000..bcf4c2000 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWxt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#67D55E"; +const SiWxt = React.forwardRef(function SiWxt2({ title = "WXT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M10.18 0c-2.081 0-3.807 1.608-4 3.64H4.019A4.033 4.033 0 0 0 0 7.66v4.017h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143H0V24h8.036v-1.498a2.13 2.13 0 0 1 2.144-2.143 2.13 2.13 0 0 1 2.143 2.143V24h4.018a4.03 4.03 0 0 0 4.018-4.018v-2.163C22.392 17.627 24 15.901 24 13.821s-1.608-3.807-3.64-4V7.66a4.03 4.03 0 0 0-4.019-4.018h-2.162C13.986 1.608 12.26 0 10.179 0m0 1.875a2.13 2.13 0 0 1 2.143 2.143v1.498h4.018a2.13 2.13 0 0 1 2.143 2.143v4.018h1.498a2.13 2.13 0 0 1 2.143 2.144 2.13 2.13 0 0 1-2.143 2.143h-1.498v4.018a2.13 2.13 0 0 1-2.143 2.143h-2.162c-.193-2.033-1.919-3.64-4-3.64s-3.806 1.607-3.998 3.64H1.875V17.82c2.033-.192 3.64-1.918 3.64-3.998s-1.607-3.807-3.64-4V7.66a2.13 2.13 0 0 1 2.143-2.143h4.018V4.018a2.13 2.13 0 0 1 2.144-2.143" }) + ] + } + ); +}); + +export { SiWxt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.cjs new file mode 100644 index 000000000..c2fc66041 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#367DA9"; +const SiWykop = React__namespace.forwardRef(function SiWykop2({ title = "Wykop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.707 17.486 1.406-.68-1.406.68.69 1.384 1.407-.68-.69-1.384Zm-.69-1.384 1.407-.68-1.407.68.691 1.384 1.406-.68-.69-1.384Zm-.691-1.384 1.406-.677-1.406.677.69 1.385 1.407-.681-.691-1.381Zm-.69-1.384 1.406-.678-1.406.678.69 1.384 1.407-.677-.69-1.385Zm-.69-1.381 1.406-.68-1.406.68.69 1.383 1.406-.679-.69-1.383Zm-.692-1.384 1.406-.68-1.406.68.69 1.384 1.407-.68-.69-1.384Zm6.981 3.494 1.407-.68-1.407.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.382 1.406-.68-1.406.68.69 1.384 1.407-.68-.691-1.383zm-.691-1.383 1.406-.68-1.406.68.69 1.383 1.407-.68-.69-1.384Zm-.69-1.382 1.406-.68-1.407.68.691 1.383 1.406-.68-.69-1.383Zm-.691-1.384 1.406-.68-1.406.68.69 1.384 1.407-.68-.69-1.383Zm6.98 3.495 1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.68-1.407.68.691 1.385 1.406-.681-.69-1.385zm-.691-1.382 1.406-.68-1.406.68.69 1.383 1.407-.68-.69-1.383Zm-.69-1.385 1.406-.68-1.407.68.69 1.385 1.407-.68-.69-1.384Zm-.691-1.382 1.406-.68-1.406.68.69 1.384 1.407-.68-.691-1.385ZM5.66 9.89l1.405-.68-1.406.68.69 1.385 1.407-.68-.69-1.384Zm.69 1.385 1.406-.68-1.406.68.69 1.383 1.407-.678-.69-1.385zm.69 1.382 1.407-.678-1.407.678.691 1.385 1.406-.681-.69-1.383zm.691 1.385 1.406-.681-1.406.68.69 1.383 1.407-.679-.69-1.384Zm.69 1.38 1.407-.678-1.406.679.69 1.384 1.406-.68-.69-1.384Zm.691 1.385 1.406-.68-1.406.68.69 1.384 1.407-.681-.69-1.383zm1.406-.68 1.407-.679-1.407.68.691 1.383 1.406-.678-.69-1.385zm1.407-.679 1.406-.68-1.406.68.69 1.385 1.407-.681-.69-1.385zM9.879 7.853l1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384Zm.69 1.382 1.407-.68-1.406.68.69 1.383 1.407-.68-.691-1.383Zm.69 1.383 1.407-.68-1.407.68.69 1.384 1.407-.68-.69-1.383zm.692 1.384 1.406-.681-1.406.68.69 1.384 1.407-.679-.69-1.384zm.69 1.382 1.406-.679-1.407.679.691 1.383 1.406-.678-.69-1.384zm.69 1.383 1.406-.678-1.406.678.69 1.385 1.407-.679-.69-1.384zm1.406-.678 1.407-.679-1.407.679.69 1.384 1.407-.68-.69-1.384zm1.407-.679 1.406-.68-1.406.68.69 1.384 1.407-.68-.691-1.384zm1.405-.68 1.406-.68-1.406.68.69 1.384 1.407-.681-.69-1.383zm-.69-1.384 1.407-.68-1.407.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.677-1.406.677.69 1.385 1.407-.68-.691-1.383Zm-.69-1.38 1.405-.68-1.406.68.69 1.383 1.407-.679-.69-1.383Zm-.691-1.385 1.406-.678-1.406.678.69 1.384 1.406-.678-.69-1.384Zm-.691-1.384 1.406-.677-1.406.677.69 1.385 1.407-.678-.69-1.384Zm7.25 5.263c0-1.166-.044-2.17-.132-3.017-.089-.847-.255-1.51-.498-1.988-.31-.937-1.005-1.532-2.088-1.785-.862-.23-2.529-.342-5.003-.342h-3.182c-2.474 0-4.152.114-5.036.342-1.06.252-1.778.847-2.154 1.785-.42 1.006-.629 2.673-.629 5.005v1.887c0 2.333.21 4 .63 5.006.397.916 1.126 1.498 2.186 1.75.862.23 2.529.342 5.003.342h3.182c2.452 0 4.108-.114 4.97-.342 1.083-.25 1.79-.834 2.121-1.75.243-.48.41-1.143.498-1.987a29.54 29.54 0 0 0 .133-3.02zm2.456 5.628c-.134 1.074-.354 1.967-.663 2.676a5.589 5.589 0 0 1-1.326 1.765 5.16 5.16 0 0 1-1.955 1.081v.034c-.642.205-1.471.367-2.487.48-1.017.115-2.254.172-3.713.172h-3.215c-3.36 0-5.692-.321-6.995-.96-1.459-.664-2.443-1.888-2.952-3.672-.176-.664-.303-1.59-.381-2.78C.038 14.31 0 12.835 0 11.074 0 9.634.061 8.375.182 7.3.303 6.225.52 5.344.828 4.658a5.715 5.715 0 0 1 1.31-1.766c.542-.492 1.21-.876 2.005-1.15h.033c1.238-.434 3.327-.653 6.266-.653h3.215c3.227 0 5.547.333 6.962.996.707.319 1.31.79 1.807 1.407.497.616.867 1.383 1.11 2.297.133.64.244 1.556.332 2.744.088 1.19.132 2.665.132 4.427.001 1.421-.065 2.666-.197 3.743" }) + ] + } + ); +}); + +exports.default = SiWykop; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.d.ts new file mode 100644 index 000000000..361d48698 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#367DA9"; +declare const SiWykop: IconType; +export { SiWykop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.mjs new file mode 100644 index 000000000..ad5f1f0fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWykop.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#367DA9"; +const SiWykop = React.forwardRef(function SiWykop2({ title = "Wykop", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.707 17.486 1.406-.68-1.406.68.69 1.384 1.407-.68-.69-1.384Zm-.69-1.384 1.407-.68-1.407.68.691 1.384 1.406-.68-.69-1.384Zm-.691-1.384 1.406-.677-1.406.677.69 1.385 1.407-.681-.691-1.381Zm-.69-1.384 1.406-.678-1.406.678.69 1.384 1.407-.677-.69-1.385Zm-.69-1.381 1.406-.68-1.406.68.69 1.383 1.406-.679-.69-1.383Zm-.692-1.384 1.406-.68-1.406.68.69 1.384 1.407-.68-.69-1.384Zm6.981 3.494 1.407-.68-1.407.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.382 1.406-.68-1.406.68.69 1.384 1.407-.68-.691-1.383zm-.691-1.383 1.406-.68-1.406.68.69 1.383 1.407-.68-.69-1.384Zm-.69-1.382 1.406-.68-1.407.68.691 1.383 1.406-.68-.69-1.383Zm-.691-1.384 1.406-.68-1.406.68.69 1.384 1.407-.68-.69-1.383Zm6.98 3.495 1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.68-1.407.68.691 1.385 1.406-.681-.69-1.385zm-.691-1.382 1.406-.68-1.406.68.69 1.383 1.407-.68-.69-1.383Zm-.69-1.385 1.406-.68-1.407.68.69 1.385 1.407-.68-.69-1.384Zm-.691-1.382 1.406-.68-1.406.68.69 1.384 1.407-.68-.691-1.385ZM5.66 9.89l1.405-.68-1.406.68.69 1.385 1.407-.68-.69-1.384Zm.69 1.385 1.406-.68-1.406.68.69 1.383 1.407-.678-.69-1.385zm.69 1.382 1.407-.678-1.407.678.691 1.385 1.406-.681-.69-1.383zm.691 1.385 1.406-.681-1.406.68.69 1.383 1.407-.679-.69-1.384Zm.69 1.38 1.407-.678-1.406.679.69 1.384 1.406-.68-.69-1.384Zm.691 1.385 1.406-.68-1.406.68.69 1.384 1.407-.681-.69-1.383zm1.406-.68 1.407-.679-1.407.68.691 1.383 1.406-.678-.69-1.385zm1.407-.679 1.406-.68-1.406.68.69 1.385 1.407-.681-.69-1.385zM9.879 7.853l1.406-.681-1.406.68.69 1.384 1.407-.68-.69-1.384Zm.69 1.382 1.407-.68-1.406.68.69 1.383 1.407-.68-.691-1.383Zm.69 1.383 1.407-.68-1.407.68.69 1.384 1.407-.68-.69-1.383zm.692 1.384 1.406-.681-1.406.68.69 1.384 1.407-.679-.69-1.384zm.69 1.382 1.406-.679-1.407.679.691 1.383 1.406-.678-.69-1.384zm.69 1.383 1.406-.678-1.406.678.69 1.385 1.407-.679-.69-1.384zm1.406-.678 1.407-.679-1.407.679.69 1.384 1.407-.68-.69-1.384zm1.407-.679 1.406-.68-1.406.68.69 1.384 1.407-.68-.691-1.384zm1.405-.68 1.406-.68-1.406.68.69 1.384 1.407-.681-.69-1.383zm-.69-1.384 1.407-.68-1.407.68.69 1.384 1.407-.68-.69-1.384zm-.69-1.385 1.406-.677-1.406.677.69 1.385 1.407-.68-.691-1.383Zm-.69-1.38 1.405-.68-1.406.68.69 1.383 1.407-.679-.69-1.383Zm-.691-1.385 1.406-.678-1.406.678.69 1.384 1.406-.678-.69-1.384Zm-.691-1.384 1.406-.677-1.406.677.69 1.385 1.407-.678-.69-1.384Zm7.25 5.263c0-1.166-.044-2.17-.132-3.017-.089-.847-.255-1.51-.498-1.988-.31-.937-1.005-1.532-2.088-1.785-.862-.23-2.529-.342-5.003-.342h-3.182c-2.474 0-4.152.114-5.036.342-1.06.252-1.778.847-2.154 1.785-.42 1.006-.629 2.673-.629 5.005v1.887c0 2.333.21 4 .63 5.006.397.916 1.126 1.498 2.186 1.75.862.23 2.529.342 5.003.342h3.182c2.452 0 4.108-.114 4.97-.342 1.083-.25 1.79-.834 2.121-1.75.243-.48.41-1.143.498-1.987a29.54 29.54 0 0 0 .133-3.02zm2.456 5.628c-.134 1.074-.354 1.967-.663 2.676a5.589 5.589 0 0 1-1.326 1.765 5.16 5.16 0 0 1-1.955 1.081v.034c-.642.205-1.471.367-2.487.48-1.017.115-2.254.172-3.713.172h-3.215c-3.36 0-5.692-.321-6.995-.96-1.459-.664-2.443-1.888-2.952-3.672-.176-.664-.303-1.59-.381-2.78C.038 14.31 0 12.835 0 11.074 0 9.634.061 8.375.182 7.3.303 6.225.52 5.344.828 4.658a5.715 5.715 0 0 1 1.31-1.766c.542-.492 1.21-.876 2.005-1.15h.033c1.238-.434 3.327-.653 6.266-.653h3.215c3.227 0 5.547.333 6.962.996.707.319 1.31.79 1.807 1.407.497.616.867 1.383 1.11 2.297.133.64.244 1.556.332 2.744.088 1.19.132 2.665.132 4.427.001 1.421-.065 2.666-.197 3.743" }) + ] + } + ); +}); + +export { SiWykop as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.cjs new file mode 100644 index 000000000..6a7fc84c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1DF0BB"; +const SiWyze = React__namespace.forwardRef(function SiWyze2({ title = "Wyze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.475 13.171 7.3 9.469h.974L5.779 14.53h-.608l-1.034-2.082-1.034 2.082h-.609L0 9.469h.973l1.826 3.673.851-1.706-.973-1.967h.973l1.825 3.702Zm8.457-3.702-2.251 3.442v1.591h-.882v-1.591L8.517 9.469h1.034l1.673 2.545 1.673-2.545h1.035Zm5.444 4.194H24v.867h-4.624v-.867Zm0-4.194H24v.868h-4.624v-.868Zm0 2.083H24v.867h-4.624v-.867Zm-.273-2.083-3.438 4.223h3.133v.838H13.84l3.407-4.222h-3.042v-.839h4.898Z" }) + ] + } + ); +}); + +exports.default = SiWyze; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.d.ts new file mode 100644 index 000000000..e75f3c388 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1DF0BB"; +declare const SiWyze: IconType; +export { SiWyze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.mjs new file mode 100644 index 000000000..535240d07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiWyze.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1DF0BB"; +const SiWyze = React.forwardRef(function SiWyze2({ title = "Wyze", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.475 13.171 7.3 9.469h.974L5.779 14.53h-.608l-1.034-2.082-1.034 2.082h-.609L0 9.469h.973l1.826 3.673.851-1.706-.973-1.967h.973l1.825 3.702Zm8.457-3.702-2.251 3.442v1.591h-.882v-1.591L8.517 9.469h1.034l1.673 2.545 1.673-2.545h1.035Zm5.444 4.194H24v.867h-4.624v-.867Zm0-4.194H24v.868h-4.624v-.868Zm0 2.083H24v.867h-4.624v-.867Zm-.273-2.083-3.438 4.223h3.133v.838H13.84l3.407-4.222h-3.042v-.839h4.898Z" }) + ] + } + ); +}); + +export { SiWyze as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiX.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiX.cjs new file mode 100644 index 000000000..099d9b1d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiX.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiX = React__namespace.forwardRef(function SiX2({ title = "X", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.234 10.162 22.977 0h-2.072l-7.591 8.824L7.251 0H.258l9.168 13.343L.258 24H2.33l8.016-9.318L16.749 24h6.993zm-2.837 3.299-.929-1.329L3.076 1.56h3.182l5.965 8.532.929 1.329 7.754 11.09h-3.182z" }) + ] + } + ); +}); + +exports.default = SiX; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiX.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiX.d.ts new file mode 100644 index 000000000..9d5bba7e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiX.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiX: IconType; +export { SiX as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiX.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiX.mjs new file mode 100644 index 000000000..1a331d3c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiX.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiX = React.forwardRef(function SiX2({ title = "X", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.234 10.162 22.977 0h-2.072l-7.591 8.824L7.251 0H.258l9.168 13.343L.258 24H2.33l8.016-9.318L16.749 24h6.993zm-2.837 3.299-.929-1.329L3.076 1.56h3.182l5.965 8.532.929 1.329 7.754 11.09h-3.182z" }) + ] + } + ); +}); + +export { SiX as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.cjs new file mode 100644 index 000000000..c7ccb030b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FB7A24"; +const SiXampp = React__namespace.forwardRef(function SiXampp2({ title = "XAMPP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.792,11.923c0.113,0.043,0.226,0.079,0.334,0.128c0.45,0.203,0.715,0.553,0.748,1.044 c0.041,0.634,0.044,1.271,0.002,1.905c-0.049,0.732-0.725,1.292-1.483,1.271c-0.735-0.021-1.369-0.62-1.397-1.341 c-0.017-0.441-0.003-0.884-0.006-1.326c-0.001-0.239-0.003-0.242-0.245-0.243c-1.363-0.001-2.726,0.008-4.089-0.003 c-0.888-0.007-1.421,0.482-1.471,1.46c-0.019,0.38-0.1,0.727-0.357,1.018c-0.397,0.451-0.898,0.601-1.472,0.466 c-0.554-0.131-0.867-0.522-1.035-1.048c-0.117-0.367-0.056-0.737,0.012-1.094c0.341-1.797,1.366-3.006,3.125-3.555 c0.357-0.112,0.731-0.166,1.105-0.166c0.94,0.001,1.881,0.001,2.821-0.001c0.128,0,0.257-0.012,0.385-0.021 c0.702-0.051,1.166-0.511,1.22-1.352c0.004-0.064,0-0.129,0.001-0.193c0.011-0.788,0.605-1.396,1.393-1.425 c0.787-0.029,1.438,0.527,1.493,1.318c0.076,1.083-0.265,2.046-0.913,2.907C16.903,11.751,16.819,11.816,16.792,11.923z M8.249,10.436c-0.258-0.008-0.571,0.018-0.882-0.035c-0.536-0.09-0.876-0.39-1.02-0.916C6.19,8.912,6.25,8.388,6.698,7.96 C7.154,7.526,7.694,7.4,8.285,7.645c0.52,0.216,0.859,0.731,0.89,1.293C9.2,9.382,9.178,9.828,9.182,10.272 c0.001,0.116-0.043,0.167-0.161,0.165C8.781,10.434,8.542,10.436,8.249,10.436z M21.682,0H2.318C1.102,0,0.116,0.986,0.116,2.202 v19.317c0,1.37,1.111,2.481,2.481,2.481h18.807c1.37,0,2.481-1.111,2.481-2.481V2.202C23.884,0.986,22.898,0,21.682,0z M20.125,12.473c0.519,0.804,0.733,1.69,0.677,2.657c-0.108,1.886-1.413,3.474-3.25,3.916c-2.585,0.623-4.566-0.923-5.233-2.794 c-0.109-0.304-0.16-0.622-0.224-0.985c-0.068,0.414-0.115,0.789-0.264,1.134c-0.697,1.617-1.884,2.603-3.665,2.799 c-2.104,0.232-4.048-1.067-4.632-3.084c-0.25-0.863-0.175-1.747-0.068-2.625c0.08-0.653,0.321-1.268,0.632-1.848 c0.057-0.106,0.057-0.184-0.01-0.285c-0.561-0.845-0.779-1.777-0.7-2.784C3.43,8.035,3.56,7.52,3.805,7.038 C4.52,5.626,6.09,4.427,8.193,4.626c1.849,0.175,3.562,1.77,3.83,3.564c0.013,0.09,0.039,0.178,0.068,0.311 c0.044-0.241,0.076-0.439,0.118-0.636c0.344-1.63,1.94-3.335,4.201-3.357c2.292-0.021,3.99,1.776,4.31,3.446 c0.17,0.888,0.089,1.776-0.103,2.663c-0.112,0.517-0.31,1.008-0.524,1.492C20.034,12.245,20.043,12.345,20.125,12.473z" }) + ] + } + ); +}); + +exports.default = SiXampp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.d.ts new file mode 100644 index 000000000..3de88c66b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FB7A24"; +declare const SiXampp: IconType; +export { SiXampp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.mjs new file mode 100644 index 000000000..bb3ccbe88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXampp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FB7A24"; +const SiXampp = React.forwardRef(function SiXampp2({ title = "XAMPP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.792,11.923c0.113,0.043,0.226,0.079,0.334,0.128c0.45,0.203,0.715,0.553,0.748,1.044 c0.041,0.634,0.044,1.271,0.002,1.905c-0.049,0.732-0.725,1.292-1.483,1.271c-0.735-0.021-1.369-0.62-1.397-1.341 c-0.017-0.441-0.003-0.884-0.006-1.326c-0.001-0.239-0.003-0.242-0.245-0.243c-1.363-0.001-2.726,0.008-4.089-0.003 c-0.888-0.007-1.421,0.482-1.471,1.46c-0.019,0.38-0.1,0.727-0.357,1.018c-0.397,0.451-0.898,0.601-1.472,0.466 c-0.554-0.131-0.867-0.522-1.035-1.048c-0.117-0.367-0.056-0.737,0.012-1.094c0.341-1.797,1.366-3.006,3.125-3.555 c0.357-0.112,0.731-0.166,1.105-0.166c0.94,0.001,1.881,0.001,2.821-0.001c0.128,0,0.257-0.012,0.385-0.021 c0.702-0.051,1.166-0.511,1.22-1.352c0.004-0.064,0-0.129,0.001-0.193c0.011-0.788,0.605-1.396,1.393-1.425 c0.787-0.029,1.438,0.527,1.493,1.318c0.076,1.083-0.265,2.046-0.913,2.907C16.903,11.751,16.819,11.816,16.792,11.923z M8.249,10.436c-0.258-0.008-0.571,0.018-0.882-0.035c-0.536-0.09-0.876-0.39-1.02-0.916C6.19,8.912,6.25,8.388,6.698,7.96 C7.154,7.526,7.694,7.4,8.285,7.645c0.52,0.216,0.859,0.731,0.89,1.293C9.2,9.382,9.178,9.828,9.182,10.272 c0.001,0.116-0.043,0.167-0.161,0.165C8.781,10.434,8.542,10.436,8.249,10.436z M21.682,0H2.318C1.102,0,0.116,0.986,0.116,2.202 v19.317c0,1.37,1.111,2.481,2.481,2.481h18.807c1.37,0,2.481-1.111,2.481-2.481V2.202C23.884,0.986,22.898,0,21.682,0z M20.125,12.473c0.519,0.804,0.733,1.69,0.677,2.657c-0.108,1.886-1.413,3.474-3.25,3.916c-2.585,0.623-4.566-0.923-5.233-2.794 c-0.109-0.304-0.16-0.622-0.224-0.985c-0.068,0.414-0.115,0.789-0.264,1.134c-0.697,1.617-1.884,2.603-3.665,2.799 c-2.104,0.232-4.048-1.067-4.632-3.084c-0.25-0.863-0.175-1.747-0.068-2.625c0.08-0.653,0.321-1.268,0.632-1.848 c0.057-0.106,0.057-0.184-0.01-0.285c-0.561-0.845-0.779-1.777-0.7-2.784C3.43,8.035,3.56,7.52,3.805,7.038 C4.52,5.626,6.09,4.427,8.193,4.626c1.849,0.175,3.562,1.77,3.83,3.564c0.013,0.09,0.039,0.178,0.068,0.311 c0.044-0.241,0.076-0.439,0.118-0.636c0.344-1.63,1.94-3.335,4.201-3.357c2.292-0.021,3.99,1.776,4.31,3.446 c0.17,0.888,0.089,1.776-0.103,2.663c-0.112,0.517-0.31,1.008-0.524,1.492C20.034,12.245,20.043,12.345,20.125,12.473z" }) + ] + } + ); +}); + +export { SiXampp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.cjs new file mode 100644 index 000000000..3d3d5b7fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#147EFB"; +const SiXcode = React__namespace.forwardRef(function SiXcode2({ title = "Xcode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.06 5.3327c.4517-.1936.7744-.2581 1.097-.1936.5163.1291.7744.5163.968.7098.1936.3872.9034.7744 1.2261.8389.2581.0645.7098-.6453 1.0325-1.2906.3227-.5808.5163-1.3552.4517-1.5488-.0645-.1936-.968-.5808-1.1616-.5808-.1291 0-.3872.1291-.8389.0645-.4517-.0645-.9034-.5808-1.1616-.968-.4517-.6453-1.097-1.0325-1.6778-1.3552-.6453-.3227-1.3552-.5163-2.065-.6453-1.0325-.2581-2.065-.4517-3.0975-.3227-.5808.0645-1.2906.1291-1.8069.3227-.0645 0-.1936.1936-.0645.1936s.5808.0645.5808.0645-.5807.1292-.5807.2583c0 .1291.0645.1291.1291.1291.0645 0 1.4842-.0645 2.065 0 .6453.1291 1.3552.4517 1.8069 1.2261.7744 1.4197.4517 2.7749.2581 3.2266-.968 2.1295-8.6472 15.2294-9.0344 16.1328-.3873.9034-.5163 1.4842.5807 2.065s1.6778.3227 2.0005-.0645c.3872-.5163 7.0339-17.1654 9.2925-18.2624zm-3.6138 8.7117h1.5488c1.0325 0 1.2261.5163 1.2261.7098.0645.5163-.1936 1.1616-1.2261 1.1616h-.968l.7744 1.2906c.4517.7744.2581 1.1616 0 1.4197-.3872.3872-1.2261.3872-1.6778-.4517l-.9034-1.5488c-.6453 1.4197-1.2906 2.9684-2.065 4.7753h4.0009c1.9359 0 3.5492-1.6133 3.5492-3.5492V6.5588c-.0645-.1291-.1936-.0645-.2581 0-.3872.4517-1.4842 2.0004-4.001 7.4856zm-9.8087 8.0019h-.3227c-2.3231 0-4.1945-1.8714-4.1945-4.1945V7.0105c0-2.3231 1.8714-4.1945 4.1945-4.1945h9.3571c-.1936-.1936-.968-.5163-1.7423-.4517-.3227 0-.968.1291-1.3552-.1291-.3872-.3227-.3227-.5163-.9034-.5163H4.9277c-2.6458 0-4.7753 2.1295-4.7753 4.7753v11.7447c0 2.6458 2.1295 4.7753 4.4527 4.7108.6452 0 .8388-.5162 1.0324-.9034zM20.4152 6.9459v10.9058c0 2.3231-1.8714 4.1945-4.1945 4.1945H11.897s-.3872 1.0325.8389 1.0325h3.8719c2.6458 0 4.7753-2.1295 4.7753-4.7753V8.8173c.0646-.9034-.7098-1.4842-.9679-1.8714zm-18.5851.0646v10.8413c0 1.9359 1.6133 3.5492 3.5492 3.5492h.5808c0-.0645.7744-1.4197 2.4522-4.2591.1936-.3872.4517-.7744.7098-1.2261H4.4114c-.5808 0-.9034-.3872-.968-.7098-.1291-.5163.1936-1.1616.9034-1.1616h2.3877l3.033-5.2916s-.7098-1.2906-.9034-1.6133c-.2582-.4517-.1291-.9034.129-1.1615.3872-.3872 1.0325-.5808 1.6778.4517l.2581.3872.2581-.3872c.5808-.8389.968-.7744 1.2906-.7098.5163.1291.8389.7098.3872 1.6133L8.864 14.0444h1.3552c.4517-.7744.9034-1.5488 1.3552-2.3877-.0645-.3227-.1291-.7098-.0645-1.0325.0645-.5163.3227-.968.6453-1.3552l.3872.6453c1.2261-2.1295 2.1295-3.9364 2.3877-4.6463.1291-.3872.3227-1.1616.1291-1.8069H5.3794c-2.0005.0001-3.5493 1.6134-3.5493 3.5494zM4.605 17.7872c0-.0645.7744-1.4197.7744-1.4197 1.2261-.3227 1.8069.4517 1.8714.5163 0 0-.8389 1.4842-1.097 1.7423s-.5808.3227-.9034.2581c-.5164-.129-.839-.6453-.6454-1.097z" }) + ] + } + ); +}); + +exports.default = SiXcode; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.d.ts new file mode 100644 index 000000000..6ce495362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#147EFB"; +declare const SiXcode: IconType; +export { SiXcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.mjs new file mode 100644 index 000000000..b38a41ebe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXcode.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#147EFB"; +const SiXcode = React.forwardRef(function SiXcode2({ title = "Xcode", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.06 5.3327c.4517-.1936.7744-.2581 1.097-.1936.5163.1291.7744.5163.968.7098.1936.3872.9034.7744 1.2261.8389.2581.0645.7098-.6453 1.0325-1.2906.3227-.5808.5163-1.3552.4517-1.5488-.0645-.1936-.968-.5808-1.1616-.5808-.1291 0-.3872.1291-.8389.0645-.4517-.0645-.9034-.5808-1.1616-.968-.4517-.6453-1.097-1.0325-1.6778-1.3552-.6453-.3227-1.3552-.5163-2.065-.6453-1.0325-.2581-2.065-.4517-3.0975-.3227-.5808.0645-1.2906.1291-1.8069.3227-.0645 0-.1936.1936-.0645.1936s.5808.0645.5808.0645-.5807.1292-.5807.2583c0 .1291.0645.1291.1291.1291.0645 0 1.4842-.0645 2.065 0 .6453.1291 1.3552.4517 1.8069 1.2261.7744 1.4197.4517 2.7749.2581 3.2266-.968 2.1295-8.6472 15.2294-9.0344 16.1328-.3873.9034-.5163 1.4842.5807 2.065s1.6778.3227 2.0005-.0645c.3872-.5163 7.0339-17.1654 9.2925-18.2624zm-3.6138 8.7117h1.5488c1.0325 0 1.2261.5163 1.2261.7098.0645.5163-.1936 1.1616-1.2261 1.1616h-.968l.7744 1.2906c.4517.7744.2581 1.1616 0 1.4197-.3872.3872-1.2261.3872-1.6778-.4517l-.9034-1.5488c-.6453 1.4197-1.2906 2.9684-2.065 4.7753h4.0009c1.9359 0 3.5492-1.6133 3.5492-3.5492V6.5588c-.0645-.1291-.1936-.0645-.2581 0-.3872.4517-1.4842 2.0004-4.001 7.4856zm-9.8087 8.0019h-.3227c-2.3231 0-4.1945-1.8714-4.1945-4.1945V7.0105c0-2.3231 1.8714-4.1945 4.1945-4.1945h9.3571c-.1936-.1936-.968-.5163-1.7423-.4517-.3227 0-.968.1291-1.3552-.1291-.3872-.3227-.3227-.5163-.9034-.5163H4.9277c-2.6458 0-4.7753 2.1295-4.7753 4.7753v11.7447c0 2.6458 2.1295 4.7753 4.4527 4.7108.6452 0 .8388-.5162 1.0324-.9034zM20.4152 6.9459v10.9058c0 2.3231-1.8714 4.1945-4.1945 4.1945H11.897s-.3872 1.0325.8389 1.0325h3.8719c2.6458 0 4.7753-2.1295 4.7753-4.7753V8.8173c.0646-.9034-.7098-1.4842-.9679-1.8714zm-18.5851.0646v10.8413c0 1.9359 1.6133 3.5492 3.5492 3.5492h.5808c0-.0645.7744-1.4197 2.4522-4.2591.1936-.3872.4517-.7744.7098-1.2261H4.4114c-.5808 0-.9034-.3872-.968-.7098-.1291-.5163.1936-1.1616.9034-1.1616h2.3877l3.033-5.2916s-.7098-1.2906-.9034-1.6133c-.2582-.4517-.1291-.9034.129-1.1615.3872-.3872 1.0325-.5808 1.6778.4517l.2581.3872.2581-.3872c.5808-.8389.968-.7744 1.2906-.7098.5163.1291.8389.7098.3872 1.6133L8.864 14.0444h1.3552c.4517-.7744.9034-1.5488 1.3552-2.3877-.0645-.3227-.1291-.7098-.0645-1.0325.0645-.5163.3227-.968.6453-1.3552l.3872.6453c1.2261-2.1295 2.1295-3.9364 2.3877-4.6463.1291-.3872.3227-1.1616.1291-1.8069H5.3794c-2.0005.0001-3.5493 1.6134-3.5493 3.5494zM4.605 17.7872c0-.0645.7744-1.4197.7744-1.4197 1.2261-.3227 1.8069.4517 1.8714.5163 0 0-.8389 1.4842-1.097 1.7423s-.5808.3227-.9034.2581c-.5164-.129-.839-.6453-.6454-1.097z" }) + ] + } + ); +}); + +export { SiXcode as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.cjs new file mode 100644 index 000000000..7bd4a32a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EA7100"; +const SiXdadevelopers = React__namespace.forwardRef(function SiXdadevelopers2({ title = "XDA Developers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.84 3.052V0h7.843v17.583H13.84v-3.024h4.591V3.052zM5.569 14.53V3.024h4.592V0H2.318v17.583H6.98L10.16 24v-9.483z" }) + ] + } + ); +}); + +exports.default = SiXdadevelopers; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.d.ts new file mode 100644 index 000000000..af3a1ebcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EA7100"; +declare const SiXdadevelopers: IconType; +export { SiXdadevelopers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.mjs new file mode 100644 index 000000000..d56c4a4fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXdadevelopers.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EA7100"; +const SiXdadevelopers = React.forwardRef(function SiXdadevelopers2({ title = "XDA Developers", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.84 3.052V0h7.843v17.583H13.84v-3.024h4.591V3.052zM5.569 14.53V3.024h4.592V0H2.318v17.583H6.98L10.16 24v-9.483z" }) + ] + } + ); +}); + +export { SiXdadevelopers as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.cjs new file mode 100644 index 000000000..c4bf9b13c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F28834"; +const SiXdotorg = React__namespace.forwardRef(function SiXdotorg2({ title = "X.Org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.94 1.9l-9.092 11.874 4.598 6.392a14.29 14.29 0 0 1-2.56.228c-2.387 0-4.582-.577-6.316-1.542l6.556-8.627-6.031-8.311L2.23 1.91 9.8 12.48l-4.332 5.66c-1.692-1.266-2.729-2.965-2.729-4.832 0-2.13 1.348-4.042 3.48-5.342l-.655-.999C2.22 8.386 0 10.876 0 13.71c0 2.432 1.635 4.61 4.212 6.075l-1.765 2.307h1.661l1.299-1.709c1.892.83 4.158 1.314 6.592 1.314a17.43 17.43 0 0 0 4.188-.501l.65.903h4.865l-1.729-2.422C22.443 18.214 24 16.082 24 13.71c0-2.94-2.39-5.512-5.948-6.9l-.217.311c3.099 1.214 5.195 3.531 5.195 6.188 0 2.202-1.44 4.17-3.698 5.47l-5.153-7.22 7.382-9.658zM12 5.755c-.586 0-1.212.046-1.775.1 1.004 1.309 1.836 2.417 2.795 3.676-.538-1.157-1.644-2.268-1.261-2.839.378-.565 1.075-.47 1.128-.47 1.118 0 2.194.127 3.2.36l.235-.324C14.98 5.91 13.523 5.754 12 5.754z" }) + ] + } + ); +}); + +exports.default = SiXdotorg; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.d.ts new file mode 100644 index 000000000..351820269 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F28834"; +declare const SiXdotorg: IconType; +export { SiXdotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.mjs new file mode 100644 index 000000000..47fed7615 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXdotorg.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F28834"; +const SiXdotorg = React.forwardRef(function SiXdotorg2({ title = "X.Org", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.94 1.9l-9.092 11.874 4.598 6.392a14.29 14.29 0 0 1-2.56.228c-2.387 0-4.582-.577-6.316-1.542l6.556-8.627-6.031-8.311L2.23 1.91 9.8 12.48l-4.332 5.66c-1.692-1.266-2.729-2.965-2.729-4.832 0-2.13 1.348-4.042 3.48-5.342l-.655-.999C2.22 8.386 0 10.876 0 13.71c0 2.432 1.635 4.61 4.212 6.075l-1.765 2.307h1.661l1.299-1.709c1.892.83 4.158 1.314 6.592 1.314a17.43 17.43 0 0 0 4.188-.501l.65.903h4.865l-1.729-2.422C22.443 18.214 24 16.082 24 13.71c0-2.94-2.39-5.512-5.948-6.9l-.217.311c3.099 1.214 5.195 3.531 5.195 6.188 0 2.202-1.44 4.17-3.698 5.47l-5.153-7.22 7.382-9.658zM12 5.755c-.586 0-1.212.046-1.775.1 1.004 1.309 1.836 2.417 2.795 3.676-.538-1.157-1.644-2.268-1.261-2.839.378-.565 1.075-.47 1.128-.47 1.118 0 2.194.127 3.2.36l.235-.324C14.98 5.91 13.523 5.754 12 5.754z" }) + ] + } + ); +}); + +export { SiXdotorg as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.cjs new file mode 100644 index 000000000..bd28600d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4573FF"; +const SiXendit = React__namespace.forwardRef(function SiXendit2({ title = "Xendit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.781 2.743H7.965l-5.341 9.264 5.341 9.263-1.312 2.266L0 12.007 6.653.464h6.454l-1.326 2.279Zm-5.128 2.28 1.312-2.28L9.873 6.03 8.561 8.296 6.653 5.023Zm9.382-2.28 1.312 2.28L7.965 21.27l-1.312-2.279 9.382-16.248Zm-5.128 20.793 1.298-2.279h3.83L14.1 17.931l1.312-2.267 1.926 3.337 4.038-6.994-5.341-9.264L17.347.464 24 12.007l-6.653 11.529h-6.44Z" }) + ] + } + ); +}); + +exports.default = SiXendit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.d.ts new file mode 100644 index 000000000..0d08c83b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4573FF"; +declare const SiXendit: IconType; +export { SiXendit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.mjs new file mode 100644 index 000000000..38c875ea0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXendit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4573FF"; +const SiXendit = React.forwardRef(function SiXendit2({ title = "Xendit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.781 2.743H7.965l-5.341 9.264 5.341 9.263-1.312 2.266L0 12.007 6.653.464h6.454l-1.326 2.279Zm-5.128 2.28 1.312-2.28L9.873 6.03 8.561 8.296 6.653 5.023Zm9.382-2.28 1.312 2.28L7.965 21.27l-1.312-2.279 9.382-16.248Zm-5.128 20.793 1.298-2.279h3.83L14.1 17.931l1.312-2.267 1.926 3.337 4.038-6.994-5.341-9.264L17.347.464 24 12.007l-6.653 11.529h-6.44Z" }) + ] + } + ); +}); + +export { SiXendit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXero.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXero.cjs new file mode 100644 index 000000000..97a9e629d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXero.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#13B5EA"; +const SiXero = React__namespace.forwardRef(function SiXero2({ title = "Xero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm6.585 14.655c-1.485 0-2.69-1.206-2.69-2.689 0-1.485 1.207-2.691 2.69-2.691 1.485 0 2.69 1.207 2.69 2.691s-1.207 2.689-2.69 2.689zM7.53 14.644c-.099 0-.192-.041-.267-.116l-2.043-2.04-2.052 2.047c-.069.068-.16.108-.258.108-.202 0-.368-.166-.368-.368 0-.099.04-.191.111-.263l2.04-2.05-2.038-2.047c-.075-.069-.113-.162-.113-.261 0-.203.166-.366.368-.366.098 0 .188.037.258.105l2.055 2.048 2.048-2.045c.069-.071.162-.108.26-.108.211 0 .375.165.375.366 0 .098-.029.188-.104.258l-2.056 2.055 2.055 2.051c.068.069.104.16.104.258 0 .202-.165.368-.365.368h-.01zm8.017-4.591c-.796.101-.882.476-.882 1.404v2.787c0 .202-.165.366-.366.366-.203 0-.367-.165-.368-.366v-4.53c0-.204.16-.366.362-.366.166 0 .316.125.346.289.27-.209.6-.317.93-.317h.105c.195 0 .359.165.359.368 0 .201-.164.352-.375.359 0 0-.09 0-.164.008l.053-.002zm-3.091 2.205H8.625c0 .019.003.037.006.057.02.105.045.211.083.31.194.531.765 1.275 1.829 1.29.33-.003.631-.086.9-.229.21-.12.391-.271.525-.428.045-.058.09-.112.12-.168.18-.229.405-.186.54-.083.164.135.18.391.045.57l-.016.016c-.21.27-.435.495-.689.66-.255.164-.525.284-.811.345-.33.09-.645.104-.975.06-1.095-.135-2.01-.93-2.28-2.01-.06-.21-.09-.42-.09-.645 0-.855.421-1.695 1.125-2.205.885-.615 2.085-.66 3-.075.63.405 1.035 1.021 1.185 1.771.075.419-.21.794-.734.81l.068-.046zm6.129-2.223c-1.064 0-1.931.865-1.931 1.931 0 1.064.866 1.931 1.931 1.931s1.931-.867 1.931-1.931c0-1.065-.866-1.933-1.931-1.933v.002zm0 2.595c-.367 0-.666-.297-.666-.666 0-.367.3-.665.666-.665.367 0 .667.299.667.665 0 .369-.3.667-.667.666zm-8.04-2.603c-.91 0-1.672.623-1.886 1.466v.03h3.776c-.203-.855-.973-1.494-1.891-1.494v-.002z" }) + ] + } + ); +}); + +exports.default = SiXero; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXero.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXero.d.ts new file mode 100644 index 000000000..8375fb3ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXero.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#13B5EA"; +declare const SiXero: IconType; +export { SiXero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXero.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXero.mjs new file mode 100644 index 000000000..088c8217b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXero.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#13B5EA"; +const SiXero = React.forwardRef(function SiXero2({ title = "Xero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm6.585 14.655c-1.485 0-2.69-1.206-2.69-2.689 0-1.485 1.207-2.691 2.69-2.691 1.485 0 2.69 1.207 2.69 2.691s-1.207 2.689-2.69 2.689zM7.53 14.644c-.099 0-.192-.041-.267-.116l-2.043-2.04-2.052 2.047c-.069.068-.16.108-.258.108-.202 0-.368-.166-.368-.368 0-.099.04-.191.111-.263l2.04-2.05-2.038-2.047c-.075-.069-.113-.162-.113-.261 0-.203.166-.366.368-.366.098 0 .188.037.258.105l2.055 2.048 2.048-2.045c.069-.071.162-.108.26-.108.211 0 .375.165.375.366 0 .098-.029.188-.104.258l-2.056 2.055 2.055 2.051c.068.069.104.16.104.258 0 .202-.165.368-.365.368h-.01zm8.017-4.591c-.796.101-.882.476-.882 1.404v2.787c0 .202-.165.366-.366.366-.203 0-.367-.165-.368-.366v-4.53c0-.204.16-.366.362-.366.166 0 .316.125.346.289.27-.209.6-.317.93-.317h.105c.195 0 .359.165.359.368 0 .201-.164.352-.375.359 0 0-.09 0-.164.008l.053-.002zm-3.091 2.205H8.625c0 .019.003.037.006.057.02.105.045.211.083.31.194.531.765 1.275 1.829 1.29.33-.003.631-.086.9-.229.21-.12.391-.271.525-.428.045-.058.09-.112.12-.168.18-.229.405-.186.54-.083.164.135.18.391.045.57l-.016.016c-.21.27-.435.495-.689.66-.255.164-.525.284-.811.345-.33.09-.645.104-.975.06-1.095-.135-2.01-.93-2.28-2.01-.06-.21-.09-.42-.09-.645 0-.855.421-1.695 1.125-2.205.885-.615 2.085-.66 3-.075.63.405 1.035 1.021 1.185 1.771.075.419-.21.794-.734.81l.068-.046zm6.129-2.223c-1.064 0-1.931.865-1.931 1.931 0 1.064.866 1.931 1.931 1.931s1.931-.867 1.931-1.931c0-1.065-.866-1.933-1.931-1.933v.002zm0 2.595c-.367 0-.666-.297-.666-.666 0-.367.3-.665.666-.665.367 0 .667.299.667.665 0 .369-.3.667-.667.666zm-8.04-2.603c-.91 0-1.672.623-1.886 1.466v.03h3.776c-.203-.855-.973-1.494-1.891-1.494v-.002z" }) + ] + } + ); +}); + +export { SiXero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.cjs new file mode 100644 index 000000000..b0244eee0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2284F2"; +const SiXfce = React__namespace.forwardRef(function SiXfce2({ title = "XFCE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.121 5.7271a.104.104 0 0 0-.0344.0017v-.0003l-.0154.0024-.0138.0076a.1156.1156 0 0 0-.0486.053.1147.1147 0 0 0-.0065.067c.0073.0362.0229.0552.0392.0754.0326.0403.0783.0798.1424.1286.1282.0976.3274.2256.5973.379.5396.3065 1.3597.7126 2.4276 1.1523 1.0533.4336 2.3185 1.2056 3.2863 1.9117.4838.353.8938.6902 1.165.9572.1356.1336.2365.2504.2924.337.028.0433.0443.0791.0498.1003.0027.0106.0029.0158.003.0176-.6994.9875-1.1131 2.187-.8297 4.1959l.0003.0003v.0002c.0055.0378-.0317.1266-.1203.2349-.0886.1082-.2168.2333-.3462.3656-.1294.1324-.2604.2723-.3573.4192-.0968.1469-.1629.3058-.138.4716v.0005l.0002.0005c.0122.074.062.1403.1251.1684.0632.0281.1297.0276.1987.0184.1379-.0185.295-.0788.4534-.1449.1584-.066.3168-.1387.4379-.1832a.7913.7913 0 0 1 .1308-.0376c-.0002.021.0023.0308-.0032.0646-.0102.0611-.0291.1386-.0536.2251-.0488.173-.1194.3824-.1843.5878-.0648.2054-.1239.4059-.15.57-.013.082-.0188.155-.008.2219.0107.0669.0489.1414.1224.1683l.0027.0011.0027.0009c.0509.015.0835.0012.1164-.0117a.6625.6625 0 0 0 .1038-.054c.0748-.046.1643-.1118.2657-.1916.2027-.1596.4515-.3752.697-.5916.2455-.2164.4874-.4336.6734-.5937.093-.08.1723-.146.2292-.1892a.8072.8072 0 0 1 .0624-.044c1.4976.4462 3.2026.5014 4.5489.4407a20.9787 20.9787 0 0 0 1.6869-.144c.2111-.027.3812-.0525.5013-.0722.06-.0099.1076-.0183.1419-.0249a1.1699 1.1699 0 0 0 .033-.0068l.0002.0003c.0194.0085.049.022.087.0392l.3181.1443c.265.12.6217.28.9867.4357.365.1556.7378.3069 1.0378.4102.15.0517.2812.0913.3875.1138.0531.0112.1.0184.1427.0197.0426.0012.0828.001.1273-.0281l.0095-.0062.0078-.0084c.1755-.19.183-.4255.0992-.6327-.0839-.2072-.2455-.4023-.4127-.5864-.1672-.1841-.3415-.3571-.45-.4989-.0542-.0709-.0909-.1342-.1043-.1783-.0118-.039-.0065-.053.0057-.0711a.2403.2403 0 0 1 .0505 0c.0583.0053.1458.0236.2484.0508.2052.0544.4736.1441.7421.2324.2685.0883.5367.1751.7497.2251.1065.025.1982.0413.2764.0422.0392.0004.0754-.0023.112-.0152.0365-.0128.0778-.0424.0956-.0875l.0008-.0022.0008-.0024c.0502-.1516-.0056-.3138-.0951-.4762-.0895-.1624-.2203-.3305-.3594-.4927-.1393-.1621-.287-.3178-.4093-.449-.1217-.1307-.2194-.2425-.2494-.2922-.062-.1099-.1004-.2568-.083-.3986.0174-.142.0849-.2801.2475-.3935.032-.0223.1324-.0749.2681-.14.1358-.0651.311-.1464.5108-.24.3995-.1873.8972-.425 1.3802-.6902.4829-.2653.9507-.5574 1.2937-.8589.3427-.3013.5755-.6187.5291-.948-.0722-.5354-.425-.9433-.8964-1.2494-.4714-.3061-1.0654-.5177-1.6504-.6716-.585-.1538-1.1615-.2492-1.5953-.3167-.217-.0337-.3984-.0603-.5251-.0835a1.5818 1.5818 0 0 1-.144-.0316h-.0003a4.2196 4.2196 0 0 1-.0003-.0878c.0006-.0827.0018-.1971 0-.3308-.0035-.2674-.0186-.612-.0746-.9416-.056-.3297-.1499-.6458-.3319-.8597-.1817-.2136-.4698-.3041-.8207-.1656-.2319.0867-.3625.2882-.4175.5189-.0551.231-.0452.4976-.0095.7594.0357.2618.0984.5187.155.7248.0568.206.1093.3695.1187.4113v.0003c.006.026.0051.0173-.0049.0254-.01.008-.0423.021-.0832.0246a.4074.4074 0 0 1-.126-.0098c-.0373-.0092-.0626-.0292-.0575-.023-.0078-.0095-.0375-.0606-.0695-.1286-.0319-.068-.0701-.1557-.1137-.2548-.087-.1982-.195-.4413-.3197-.67-.1247-.2286-.2647-.4431-.4283-.587-.0818-.0719-.171-.1269-.2695-.151a.4444.4444 0 0 0-.3064.0362l-.0016.0008-.0016.0014c-.2555.1408-.3929.3651-.449.607-.056.2417-.0374.502.0033.7437.0407.2416.1046.4659.1454.6286.0204.0813.0347.1484.0381.1867.0011.0127.0005.0142.0003.0181-.1823.114-.275.2937-.346.4789-.0744.194-.1365.397-.2634.5732l-.0006.0005-.0003.0006c-.0384.055-.1194.1045-.2464.1375-.127.033-.2952.049-.4908.0495-.3912.0008-.891-.059-1.412-.1419-1.042-.1656-2.1617-.4221-2.7331-.4567-.4299-.0254-.8375.1359-1.1459.2875-.1542.0759-.2843.15-.3764.1979a.8919.8919 0 0 1-.0957.0443c-.9968-.9934-3.013-2.6882-5.2499-3.2603-.6133-.1664-1.3873-.4945-2.015-.7794-.3138-.1425-.5914-.2741-.7958-.3697a11.373 11.373 0 0 0-.2481-.1138 1.4159 1.4159 0 0 0-.0776-.0316.3291.3291 0 0 0-.0305-.01C.132 5.7309.128 5.7286.121 5.7274zm22.6994 1.8353a.0621.0621 0 0 0-.0182.0046c-.0199.0086-.0256.0186-.0313.0268a.2303.2303 0 0 0-.026.0537c-.0158.0423-.033.1017-.0516.1754-.0371.1474-.0786.3496-.1137.5565-.0352.2068-.0639.4179-.0744.5845-.0052.0834-.0062.1552-.0002.2125a.3184.3184 0 0 0 .016.0764.106.106 0 0 0 .0475.0587.0745.0745 0 0 0 .0435.013.0789.0789 0 0 0 .043-.0176c.0206-.0163.031-.0348.0418-.0565.0218-.0434.0407-.1023.0598-.1757.0382-.1468.0746-.3488.1035-.5567.0289-.2078.0501-.421.0567-.5897.0033-.0843.0031-.157-.0022-.2145a.4137.4137 0 0 0-.0127-.0757.1082.1082 0 0 0-.036-.0587c-.0063-.006-.013-.0127-.0242-.0156a.061.061 0 0 0-.0214-.0014zm1.111.2114a.104.104 0 0 0-.0428.0075c-.0233.0095-.0431.024-.0645.0422-.0429.0365-.0908.0899-.1444.157-.107.1342-.2336.3218-.35.5178-.1162.196-.222.3999-.2864.5686-.0322.0844-.0545.1597-.0616.2246-.0071.0647-.0006.1294.051.1678.0286.0211.0674.015.0898.0035.0225-.0115.0403-.0275.0597-.0475.0388-.04.0812-.0975.1284-.1687.0944-.1424.2056-.3388.311-.5402a9.6877 9.6877 0 0 0 .2754-.5673 2.732 2.732 0 0 0 .0806-.2002.522.522 0 0 0 .0191-.0673A.1276.1276 0 0 0 24 7.8419c-.0002-.0112.0007-.0282-.0191-.0479l-.002-.0019-.0015-.0016a.0757.0757 0 0 0-.046-.0167zM19.5691 9.629c.1818 0 .3346.1698.3346.3876 0 .2177-.1528.3872-.3346.3872-.1817 0-.3345-.1695-.3345-.3872 0-.2178.1528-.3876.3345-.3876zm-.8823.3395c.0791.2909.1785.5128.35.6475.1629.128.3965.1727.6894.1813-.1803.129-.3447.1912-.4803.1751-.168-.0198-.3091-.1247-.414-.2686s-.1708-.3257-.1867-.483c-.011-.1075.0095-.1888.0416-.2523zm2.0906 1.7806c.0534-.0043.083.0061.0911.0138l.0084.0081.011.0041c.0068.0024.0032.0004.0055.002-.0108.016-.0496.0531-.1124.0929-.1312.083-.3492.1845-.5792.2778-.23.0933-.473.1791-.6578.2349-.059.0178-.098.0261-.1424.037.029-.0212.0513-.0392.0894-.0646a6.3595 6.3595 0 0 1 .5192-.306c.1948-.103.3971-.1968.5602-.2513.0816-.0272.1536-.0443.207-.0486zm.2406.4714a.0686.0686 0 0 1 .0248.0022c.0265.0305.0393.0587.0349.0964-.005.0422-.0289.0957-.0708.1538-.084.1161-.2354.2477-.3984.3667-.163.1191-.3378.2268-.4702.3027-.0483.0277-.0822.0454-.1165.0635.0153-.0296.029-.0579.0562-.0983.0782-.1163.1994-.266.3319-.409.1325-.1428.2771-.2796.4005-.3702.0617-.0453.1184-.0788.1624-.0962a.1569.1569 0 0 1 .0451-.0116z" }) + ] + } + ); +}); + +exports.default = SiXfce; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.d.ts new file mode 100644 index 000000000..17fbfc1e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2284F2"; +declare const SiXfce: IconType; +export { SiXfce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.mjs new file mode 100644 index 000000000..c19b8e753 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXfce.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2284F2"; +const SiXfce = React.forwardRef(function SiXfce2({ title = "XFCE", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.121 5.7271a.104.104 0 0 0-.0344.0017v-.0003l-.0154.0024-.0138.0076a.1156.1156 0 0 0-.0486.053.1147.1147 0 0 0-.0065.067c.0073.0362.0229.0552.0392.0754.0326.0403.0783.0798.1424.1286.1282.0976.3274.2256.5973.379.5396.3065 1.3597.7126 2.4276 1.1523 1.0533.4336 2.3185 1.2056 3.2863 1.9117.4838.353.8938.6902 1.165.9572.1356.1336.2365.2504.2924.337.028.0433.0443.0791.0498.1003.0027.0106.0029.0158.003.0176-.6994.9875-1.1131 2.187-.8297 4.1959l.0003.0003v.0002c.0055.0378-.0317.1266-.1203.2349-.0886.1082-.2168.2333-.3462.3656-.1294.1324-.2604.2723-.3573.4192-.0968.1469-.1629.3058-.138.4716v.0005l.0002.0005c.0122.074.062.1403.1251.1684.0632.0281.1297.0276.1987.0184.1379-.0185.295-.0788.4534-.1449.1584-.066.3168-.1387.4379-.1832a.7913.7913 0 0 1 .1308-.0376c-.0002.021.0023.0308-.0032.0646-.0102.0611-.0291.1386-.0536.2251-.0488.173-.1194.3824-.1843.5878-.0648.2054-.1239.4059-.15.57-.013.082-.0188.155-.008.2219.0107.0669.0489.1414.1224.1683l.0027.0011.0027.0009c.0509.015.0835.0012.1164-.0117a.6625.6625 0 0 0 .1038-.054c.0748-.046.1643-.1118.2657-.1916.2027-.1596.4515-.3752.697-.5916.2455-.2164.4874-.4336.6734-.5937.093-.08.1723-.146.2292-.1892a.8072.8072 0 0 1 .0624-.044c1.4976.4462 3.2026.5014 4.5489.4407a20.9787 20.9787 0 0 0 1.6869-.144c.2111-.027.3812-.0525.5013-.0722.06-.0099.1076-.0183.1419-.0249a1.1699 1.1699 0 0 0 .033-.0068l.0002.0003c.0194.0085.049.022.087.0392l.3181.1443c.265.12.6217.28.9867.4357.365.1556.7378.3069 1.0378.4102.15.0517.2812.0913.3875.1138.0531.0112.1.0184.1427.0197.0426.0012.0828.001.1273-.0281l.0095-.0062.0078-.0084c.1755-.19.183-.4255.0992-.6327-.0839-.2072-.2455-.4023-.4127-.5864-.1672-.1841-.3415-.3571-.45-.4989-.0542-.0709-.0909-.1342-.1043-.1783-.0118-.039-.0065-.053.0057-.0711a.2403.2403 0 0 1 .0505 0c.0583.0053.1458.0236.2484.0508.2052.0544.4736.1441.7421.2324.2685.0883.5367.1751.7497.2251.1065.025.1982.0413.2764.0422.0392.0004.0754-.0023.112-.0152.0365-.0128.0778-.0424.0956-.0875l.0008-.0022.0008-.0024c.0502-.1516-.0056-.3138-.0951-.4762-.0895-.1624-.2203-.3305-.3594-.4927-.1393-.1621-.287-.3178-.4093-.449-.1217-.1307-.2194-.2425-.2494-.2922-.062-.1099-.1004-.2568-.083-.3986.0174-.142.0849-.2801.2475-.3935.032-.0223.1324-.0749.2681-.14.1358-.0651.311-.1464.5108-.24.3995-.1873.8972-.425 1.3802-.6902.4829-.2653.9507-.5574 1.2937-.8589.3427-.3013.5755-.6187.5291-.948-.0722-.5354-.425-.9433-.8964-1.2494-.4714-.3061-1.0654-.5177-1.6504-.6716-.585-.1538-1.1615-.2492-1.5953-.3167-.217-.0337-.3984-.0603-.5251-.0835a1.5818 1.5818 0 0 1-.144-.0316h-.0003a4.2196 4.2196 0 0 1-.0003-.0878c.0006-.0827.0018-.1971 0-.3308-.0035-.2674-.0186-.612-.0746-.9416-.056-.3297-.1499-.6458-.3319-.8597-.1817-.2136-.4698-.3041-.8207-.1656-.2319.0867-.3625.2882-.4175.5189-.0551.231-.0452.4976-.0095.7594.0357.2618.0984.5187.155.7248.0568.206.1093.3695.1187.4113v.0003c.006.026.0051.0173-.0049.0254-.01.008-.0423.021-.0832.0246a.4074.4074 0 0 1-.126-.0098c-.0373-.0092-.0626-.0292-.0575-.023-.0078-.0095-.0375-.0606-.0695-.1286-.0319-.068-.0701-.1557-.1137-.2548-.087-.1982-.195-.4413-.3197-.67-.1247-.2286-.2647-.4431-.4283-.587-.0818-.0719-.171-.1269-.2695-.151a.4444.4444 0 0 0-.3064.0362l-.0016.0008-.0016.0014c-.2555.1408-.3929.3651-.449.607-.056.2417-.0374.502.0033.7437.0407.2416.1046.4659.1454.6286.0204.0813.0347.1484.0381.1867.0011.0127.0005.0142.0003.0181-.1823.114-.275.2937-.346.4789-.0744.194-.1365.397-.2634.5732l-.0006.0005-.0003.0006c-.0384.055-.1194.1045-.2464.1375-.127.033-.2952.049-.4908.0495-.3912.0008-.891-.059-1.412-.1419-1.042-.1656-2.1617-.4221-2.7331-.4567-.4299-.0254-.8375.1359-1.1459.2875-.1542.0759-.2843.15-.3764.1979a.8919.8919 0 0 1-.0957.0443c-.9968-.9934-3.013-2.6882-5.2499-3.2603-.6133-.1664-1.3873-.4945-2.015-.7794-.3138-.1425-.5914-.2741-.7958-.3697a11.373 11.373 0 0 0-.2481-.1138 1.4159 1.4159 0 0 0-.0776-.0316.3291.3291 0 0 0-.0305-.01C.132 5.7309.128 5.7286.121 5.7274zm22.6994 1.8353a.0621.0621 0 0 0-.0182.0046c-.0199.0086-.0256.0186-.0313.0268a.2303.2303 0 0 0-.026.0537c-.0158.0423-.033.1017-.0516.1754-.0371.1474-.0786.3496-.1137.5565-.0352.2068-.0639.4179-.0744.5845-.0052.0834-.0062.1552-.0002.2125a.3184.3184 0 0 0 .016.0764.106.106 0 0 0 .0475.0587.0745.0745 0 0 0 .0435.013.0789.0789 0 0 0 .043-.0176c.0206-.0163.031-.0348.0418-.0565.0218-.0434.0407-.1023.0598-.1757.0382-.1468.0746-.3488.1035-.5567.0289-.2078.0501-.421.0567-.5897.0033-.0843.0031-.157-.0022-.2145a.4137.4137 0 0 0-.0127-.0757.1082.1082 0 0 0-.036-.0587c-.0063-.006-.013-.0127-.0242-.0156a.061.061 0 0 0-.0214-.0014zm1.111.2114a.104.104 0 0 0-.0428.0075c-.0233.0095-.0431.024-.0645.0422-.0429.0365-.0908.0899-.1444.157-.107.1342-.2336.3218-.35.5178-.1162.196-.222.3999-.2864.5686-.0322.0844-.0545.1597-.0616.2246-.0071.0647-.0006.1294.051.1678.0286.0211.0674.015.0898.0035.0225-.0115.0403-.0275.0597-.0475.0388-.04.0812-.0975.1284-.1687.0944-.1424.2056-.3388.311-.5402a9.6877 9.6877 0 0 0 .2754-.5673 2.732 2.732 0 0 0 .0806-.2002.522.522 0 0 0 .0191-.0673A.1276.1276 0 0 0 24 7.8419c-.0002-.0112.0007-.0282-.0191-.0479l-.002-.0019-.0015-.0016a.0757.0757 0 0 0-.046-.0167zM19.5691 9.629c.1818 0 .3346.1698.3346.3876 0 .2177-.1528.3872-.3346.3872-.1817 0-.3345-.1695-.3345-.3872 0-.2178.1528-.3876.3345-.3876zm-.8823.3395c.0791.2909.1785.5128.35.6475.1629.128.3965.1727.6894.1813-.1803.129-.3447.1912-.4803.1751-.168-.0198-.3091-.1247-.414-.2686s-.1708-.3257-.1867-.483c-.011-.1075.0095-.1888.0416-.2523zm2.0906 1.7806c.0534-.0043.083.0061.0911.0138l.0084.0081.011.0041c.0068.0024.0032.0004.0055.002-.0108.016-.0496.0531-.1124.0929-.1312.083-.3492.1845-.5792.2778-.23.0933-.473.1791-.6578.2349-.059.0178-.098.0261-.1424.037.029-.0212.0513-.0392.0894-.0646a6.3595 6.3595 0 0 1 .5192-.306c.1948-.103.3971-.1968.5602-.2513.0816-.0272.1536-.0443.207-.0486zm.2406.4714a.0686.0686 0 0 1 .0248.0022c.0265.0305.0393.0587.0349.0964-.005.0422-.0289.0957-.0708.1538-.084.1161-.2354.2477-.3984.3667-.163.1191-.3378.2268-.4702.3027-.0483.0277-.0822.0454-.1165.0635.0153-.0296.029-.0579.0562-.0983.0782-.1163.1994-.266.3319-.409.1325-.1428.2771-.2796.4005-.3702.0617-.0453.1184-.0788.1624-.0962a.1569.1569 0 0 1 .0451-.0116z" }) + ] + } + ); +}); + +export { SiXfce as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.cjs new file mode 100644 index 000000000..82536fb6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF2442"; +const SiXiaohongshu = React__namespace.forwardRef(function SiXiaohongshu2({ title = "Xiaohongshu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.405 9.879c.002.016.01.02.07.019h.725a.797.797 0 0 0 .78-.972.794.794 0 0 0-.884-.618.795.795 0 0 0-.692.794c0 .101-.002.666.001.777zm-11.509 4.808c-.203.001-1.353.004-1.685.003a2.528 2.528 0 0 1-.766-.126.025.025 0 0 0-.03.014L7.7 16.127a.025.025 0 0 0 .01.032c.111.06.336.124.495.124.66.01 1.32.002 1.981 0 .01 0 .02-.006.023-.015l.712-1.545a.025.025 0 0 0-.024-.036zM.477 9.91c-.071 0-.076.002-.076.01a.834.834 0 0 0-.01.08c-.027.397-.038.495-.234 3.06-.012.24-.034.389-.135.607-.026.057-.033.042.003.112.046.092.681 1.523.787 1.74.008.015.011.02.017.02.008 0 .033-.026.047-.044.147-.187.268-.391.371-.606.306-.635.44-1.325.486-1.706.014-.11.021-.22.03-.33l.204-2.616.022-.293c.003-.029 0-.033-.03-.034zm7.203 3.757a1.427 1.427 0 0 1-.135-.607c-.004-.084-.031-.39-.235-3.06a.443.443 0 0 0-.01-.082c-.004-.011-.052-.008-.076-.008h-1.48c-.03.001-.034.005-.03.034l.021.293c.076.982.153 1.964.233 2.946.05.4.186 1.085.487 1.706.103.215.223.419.37.606.015.018.037.051.048.049.02-.003.742-1.642.804-1.765.036-.07.03-.055.003-.112zm3.861-.913h-.872a.126.126 0 0 1-.116-.178l1.178-2.625a.025.025 0 0 0-.023-.035l-1.318-.003a.148.148 0 0 1-.135-.21l.876-1.954a.025.025 0 0 0-.023-.035h-1.56c-.01 0-.02.006-.024.015l-.926 2.068c-.085.169-.314.634-.399.938a.534.534 0 0 0-.02.191.46.46 0 0 0 .23.378.981.981 0 0 0 .46.119h.59c.041 0-.688 1.482-.834 1.972a.53.53 0 0 0-.023.172.465.465 0 0 0 .23.398c.15.092.342.12.475.12l1.66-.001c.01 0 .02-.006.023-.015l.575-1.28a.025.025 0 0 0-.024-.035zm-6.93-4.937H3.1a.032.032 0 0 0-.034.033c0 1.048-.01 2.795-.01 6.829 0 .288-.269.262-.28.262h-.74c-.04.001-.044.004-.04.047.001.037.465 1.064.555 1.263.01.02.03.033.051.033.157.003.767.009.938-.014.153-.02.3-.06.438-.132.3-.156.49-.419.595-.765.052-.172.075-.353.075-.533.002-2.33 0-4.66-.007-6.991a.032.032 0 0 0-.032-.032zm11.784 6.896c0-.014-.01-.021-.024-.022h-1.465c-.048-.001-.049-.002-.05-.049v-4.66c0-.072-.005-.07.07-.07h.863c.08 0 .075.004.075-.074V8.393c0-.082.006-.076-.08-.076h-3.5c-.064 0-.075-.006-.075.073v1.445c0 .083-.006.077.08.077h.854c.075 0 .07-.004.07.07v4.624c0 .095.008.084-.085.084-.37 0-1.11-.002-1.304 0-.048.001-.06.03-.06.03l-.697 1.519s-.014.025-.008.036c.006.01.013.008.058.008 1.748.003 3.495.002 5.243.002.03-.001.034-.006.035-.033v-1.539zm4.177-3.43c0 .013-.007.023-.02.024-.346.006-.692.004-1.037.004-.014-.002-.022-.01-.022-.024-.005-.434-.007-.869-.01-1.303 0-.072-.006-.071.07-.07l.733-.003c.041 0 .081.002.12.015.093.025.16.107.165.204.006.431.002 1.153.001 1.153zm2.67.244a1.953 1.953 0 0 0-.883-.222h-.18c-.04-.001-.04-.003-.042-.04V10.21c0-.132-.007-.263-.025-.394a1.823 1.823 0 0 0-.153-.53 1.533 1.533 0 0 0-.677-.71 2.167 2.167 0 0 0-1-.258c-.153-.003-.567 0-.72 0-.07 0-.068.004-.068-.065V7.76c0-.031-.01-.041-.046-.039H17.93s-.016 0-.023.007c-.006.006-.008.012-.008.023v.546c-.008.036-.057.015-.082.022h-.95c-.022.002-.028.008-.03.032v1.481c0 .09-.004.082.082.082h.913c.082 0 .072.128.072.128V11.19s.003.117-.06.117h-1.482c-.068 0-.06.082-.06.082v1.445s-.01.068.064.068h1.457c.082 0 .076-.006.076.079v3.225c0 .088-.007.081.082.081h1.43c.09 0 .082.007.082-.08v-3.27c0-.029.006-.035.033-.035l2.323-.003c.098 0 .191.02.28.061a.46.46 0 0 1 .274.407c.008.395.003.79.003 1.185 0 .259-.107.367-.33.367h-1.218c-.023.002-.029.008-.028.033.184.437.374.871.57 1.303a.045.045 0 0 0 .04.026c.17.005.34.002.51.003.15-.002.517.004.666-.01a2.03 2.03 0 0 0 .408-.075c.59-.18.975-.698.976-1.313v-1.981c0-.128-.01-.254-.034-.38 0 .078-.029-.641-.724-.998z" }) + ] + } + ); +}); + +exports.default = SiXiaohongshu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.d.ts new file mode 100644 index 000000000..d23e4d1e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF2442"; +declare const SiXiaohongshu: IconType; +export { SiXiaohongshu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.mjs new file mode 100644 index 000000000..9008f4966 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaohongshu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF2442"; +const SiXiaohongshu = React.forwardRef(function SiXiaohongshu2({ title = "Xiaohongshu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.405 9.879c.002.016.01.02.07.019h.725a.797.797 0 0 0 .78-.972.794.794 0 0 0-.884-.618.795.795 0 0 0-.692.794c0 .101-.002.666.001.777zm-11.509 4.808c-.203.001-1.353.004-1.685.003a2.528 2.528 0 0 1-.766-.126.025.025 0 0 0-.03.014L7.7 16.127a.025.025 0 0 0 .01.032c.111.06.336.124.495.124.66.01 1.32.002 1.981 0 .01 0 .02-.006.023-.015l.712-1.545a.025.025 0 0 0-.024-.036zM.477 9.91c-.071 0-.076.002-.076.01a.834.834 0 0 0-.01.08c-.027.397-.038.495-.234 3.06-.012.24-.034.389-.135.607-.026.057-.033.042.003.112.046.092.681 1.523.787 1.74.008.015.011.02.017.02.008 0 .033-.026.047-.044.147-.187.268-.391.371-.606.306-.635.44-1.325.486-1.706.014-.11.021-.22.03-.33l.204-2.616.022-.293c.003-.029 0-.033-.03-.034zm7.203 3.757a1.427 1.427 0 0 1-.135-.607c-.004-.084-.031-.39-.235-3.06a.443.443 0 0 0-.01-.082c-.004-.011-.052-.008-.076-.008h-1.48c-.03.001-.034.005-.03.034l.021.293c.076.982.153 1.964.233 2.946.05.4.186 1.085.487 1.706.103.215.223.419.37.606.015.018.037.051.048.049.02-.003.742-1.642.804-1.765.036-.07.03-.055.003-.112zm3.861-.913h-.872a.126.126 0 0 1-.116-.178l1.178-2.625a.025.025 0 0 0-.023-.035l-1.318-.003a.148.148 0 0 1-.135-.21l.876-1.954a.025.025 0 0 0-.023-.035h-1.56c-.01 0-.02.006-.024.015l-.926 2.068c-.085.169-.314.634-.399.938a.534.534 0 0 0-.02.191.46.46 0 0 0 .23.378.981.981 0 0 0 .46.119h.59c.041 0-.688 1.482-.834 1.972a.53.53 0 0 0-.023.172.465.465 0 0 0 .23.398c.15.092.342.12.475.12l1.66-.001c.01 0 .02-.006.023-.015l.575-1.28a.025.025 0 0 0-.024-.035zm-6.93-4.937H3.1a.032.032 0 0 0-.034.033c0 1.048-.01 2.795-.01 6.829 0 .288-.269.262-.28.262h-.74c-.04.001-.044.004-.04.047.001.037.465 1.064.555 1.263.01.02.03.033.051.033.157.003.767.009.938-.014.153-.02.3-.06.438-.132.3-.156.49-.419.595-.765.052-.172.075-.353.075-.533.002-2.33 0-4.66-.007-6.991a.032.032 0 0 0-.032-.032zm11.784 6.896c0-.014-.01-.021-.024-.022h-1.465c-.048-.001-.049-.002-.05-.049v-4.66c0-.072-.005-.07.07-.07h.863c.08 0 .075.004.075-.074V8.393c0-.082.006-.076-.08-.076h-3.5c-.064 0-.075-.006-.075.073v1.445c0 .083-.006.077.08.077h.854c.075 0 .07-.004.07.07v4.624c0 .095.008.084-.085.084-.37 0-1.11-.002-1.304 0-.048.001-.06.03-.06.03l-.697 1.519s-.014.025-.008.036c.006.01.013.008.058.008 1.748.003 3.495.002 5.243.002.03-.001.034-.006.035-.033v-1.539zm4.177-3.43c0 .013-.007.023-.02.024-.346.006-.692.004-1.037.004-.014-.002-.022-.01-.022-.024-.005-.434-.007-.869-.01-1.303 0-.072-.006-.071.07-.07l.733-.003c.041 0 .081.002.12.015.093.025.16.107.165.204.006.431.002 1.153.001 1.153zm2.67.244a1.953 1.953 0 0 0-.883-.222h-.18c-.04-.001-.04-.003-.042-.04V10.21c0-.132-.007-.263-.025-.394a1.823 1.823 0 0 0-.153-.53 1.533 1.533 0 0 0-.677-.71 2.167 2.167 0 0 0-1-.258c-.153-.003-.567 0-.72 0-.07 0-.068.004-.068-.065V7.76c0-.031-.01-.041-.046-.039H17.93s-.016 0-.023.007c-.006.006-.008.012-.008.023v.546c-.008.036-.057.015-.082.022h-.95c-.022.002-.028.008-.03.032v1.481c0 .09-.004.082.082.082h.913c.082 0 .072.128.072.128V11.19s.003.117-.06.117h-1.482c-.068 0-.06.082-.06.082v1.445s-.01.068.064.068h1.457c.082 0 .076-.006.076.079v3.225c0 .088-.007.081.082.081h1.43c.09 0 .082.007.082-.08v-3.27c0-.029.006-.035.033-.035l2.323-.003c.098 0 .191.02.28.061a.46.46 0 0 1 .274.407c.008.395.003.79.003 1.185 0 .259-.107.367-.33.367h-1.218c-.023.002-.029.008-.028.033.184.437.374.871.57 1.303a.045.045 0 0 0 .04.026c.17.005.34.002.51.003.15-.002.517.004.666-.01a2.03 2.03 0 0 0 .408-.075c.59-.18.975-.698.976-1.313v-1.981c0-.128-.01-.254-.034-.38 0 .078-.029-.641-.724-.998z" }) + ] + } + ); +}); + +export { SiXiaohongshu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.cjs new file mode 100644 index 000000000..3a20a1142 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6900"; +const SiXiaomi = React__namespace.forwardRef(function SiXiaomi2({ title = "Xiaomi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C8.016 0 4.756.255 2.493 2.516.23 4.776 0 8.033 0 12.012c0 3.98.23 7.235 2.494 9.497C4.757 23.77 8.017 24 12 24c3.983 0 7.243-.23 9.506-2.491C23.77 19.247 24 15.99 24 12.012c0-3.984-.233-7.243-2.502-9.504C19.234.252 15.978 0 12 0zM4.906 7.405h5.624c1.47 0 3.007.068 3.764.827.746.746.827 2.233.83 3.676v4.54a.15.15 0 0 1-.152.147h-1.947a.15.15 0 0 1-.152-.148V11.83c-.002-.806-.048-1.634-.464-2.051-.358-.36-1.026-.441-1.72-.458H7.158a.15.15 0 0 0-.151.147v6.98a.15.15 0 0 1-.152.148H4.906a.15.15 0 0 1-.15-.148V7.554a.15.15 0 0 1 .15-.149zm12.131 0h1.949a.15.15 0 0 1 .15.15v8.892a.15.15 0 0 1-.15.148h-1.949a.15.15 0 0 1-.151-.148V7.554a.15.15 0 0 1 .151-.149zM8.92 10.948h2.046c.083 0 .15.066.15.147v5.352a.15.15 0 0 1-.15.148H8.92a.15.15 0 0 1-.152-.148v-5.352a.15.15 0 0 1 .152-.147Z" }) + ] + } + ); +}); + +exports.default = SiXiaomi; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.d.ts new file mode 100644 index 000000000..aca999a49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6900"; +declare const SiXiaomi: IconType; +export { SiXiaomi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.mjs new file mode 100644 index 000000000..1ffc55bad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXiaomi.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6900"; +const SiXiaomi = React.forwardRef(function SiXiaomi2({ title = "Xiaomi", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C8.016 0 4.756.255 2.493 2.516.23 4.776 0 8.033 0 12.012c0 3.98.23 7.235 2.494 9.497C4.757 23.77 8.017 24 12 24c3.983 0 7.243-.23 9.506-2.491C23.77 19.247 24 15.99 24 12.012c0-3.984-.233-7.243-2.502-9.504C19.234.252 15.978 0 12 0zM4.906 7.405h5.624c1.47 0 3.007.068 3.764.827.746.746.827 2.233.83 3.676v4.54a.15.15 0 0 1-.152.147h-1.947a.15.15 0 0 1-.152-.148V11.83c-.002-.806-.048-1.634-.464-2.051-.358-.36-1.026-.441-1.72-.458H7.158a.15.15 0 0 0-.151.147v6.98a.15.15 0 0 1-.152.148H4.906a.15.15 0 0 1-.15-.148V7.554a.15.15 0 0 1 .15-.149zm12.131 0h1.949a.15.15 0 0 1 .15.15v8.892a.15.15 0 0 1-.15.148h-1.949a.15.15 0 0 1-.151-.148V7.554a.15.15 0 0 1 .151-.149zM8.92 10.948h2.046c.083 0 .15.066.15.147v5.352a.15.15 0 0 1-.15.148H8.92a.15.15 0 0 1-.152-.148v-5.352a.15.15 0 0 1 .152-.147Z" }) + ] + } + ); +}); + +export { SiXiaomi as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXing.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXing.cjs new file mode 100644 index 000000000..203260871 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXing.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006567"; +const SiXing = React__namespace.forwardRef(function SiXing2({ title = "Xing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.188 0c-.517 0-.741.325-.927.66 0 0-7.455 13.224-7.702 13.657.015.024 4.919 9.023 4.919 9.023.17.308.436.66.967.66h3.454c.211 0 .375-.078.463-.22.089-.151.089-.346-.009-.536l-4.879-8.916c-.004-.006-.004-.016 0-.022L22.139.756c.095-.191.097-.387.006-.535C22.056.078 21.894 0 21.686 0h-3.498zM3.648 4.74c-.211 0-.385.074-.473.216-.09.149-.078.339.02.531l2.34 4.05c.004.01.004.016 0 .021L1.86 16.051c-.099.188-.093.381 0 .529.085.142.239.234.45.234h3.461c.518 0 .766-.348.945-.667l3.734-6.609-2.378-4.155c-.172-.315-.434-.659-.962-.659H3.648v.016z" }) + ] + } + ); +}); + +exports.default = SiXing; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXing.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXing.d.ts new file mode 100644 index 000000000..34a6e09f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXing.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006567"; +declare const SiXing: IconType; +export { SiXing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXing.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXing.mjs new file mode 100644 index 000000000..f839525df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXing.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006567"; +const SiXing = React.forwardRef(function SiXing2({ title = "Xing", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.188 0c-.517 0-.741.325-.927.66 0 0-7.455 13.224-7.702 13.657.015.024 4.919 9.023 4.919 9.023.17.308.436.66.967.66h3.454c.211 0 .375-.078.463-.22.089-.151.089-.346-.009-.536l-4.879-8.916c-.004-.006-.004-.016 0-.022L22.139.756c.095-.191.097-.387.006-.535C22.056.078 21.894 0 21.686 0h-3.498zM3.648 4.74c-.211 0-.385.074-.473.216-.09.149-.078.339.02.531l2.34 4.05c.004.01.004.016 0 .021L1.86 16.051c-.099.188-.093.381 0 .529.085.142.239.234.45.234h3.461c.518 0 .766-.348.945-.667l3.734-6.609-2.378-4.155c-.172-.315-.434-.659-.962-.659H3.648v.016z" }) + ] + } + ); +}); + +export { SiXing as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXml.cjs new file mode 100644 index 000000000..b684980c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#005FAD"; +const SiXml = React__namespace.forwardRef(function SiXml2({ title = "XML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.345 7.053c-.495.02-.44.725-.536 1.081-.157.583-.3 1.325-.347 1.926-.046.585-.008 1.127.066 1.719.058.46.191.767.07.89-.108.11-3.216 2.962-3.466 3.123-.26.169-.08.584.069.817.157.246.23.373.557.33.306-.042.405-.409.583-.606.228-.252 2.421-2.401 2.616-2.401.077.544.367 1.064.67 1.513.15.222.314.439.505.629.175.175.4.317.587.45.44.024.795-.301.35-.67-.17-.14-.735-.971-.927-1.43-.18-.43-.574-1.076-.146-1.428 1.494-1.23 3.72-2.262 4.247-2.313-.257 1.024-1.356 3.048-1.757 4.012-.14.333-.231.732-.185 1.094.055.434.383.774.587.806.417-.023.7-.387.946-.645.343-.357.634-.685.974-1.043.339-.356.672-.731.971-1.07.184-.207.674-.713.963-.713-.11.693-.716 1.552-.839 2.254-.125.716.531 1.596 1.217.956.623-.58 1.255-1.129 1.867-1.72.217-.208.175.037.224.242.05.208.176.91.275 1.1.18.346.496.592.897.598.362.006.727-.161.982-.414.19-.187.513-.699.154-.832-.23-.086-.217-.176-.495-.129-.172.029-.362.074-.507.179-.367-.003-.381-.89-.324-1.161.068-.327.207-.659.185-.998-.026-.418-.478-.69-.582-.72-.156-.076-.253.023-.458.212-.173.161-.363.332-.535.495-.34.322-.768.813-.942.813.305-.705.708-2.652-.643-2.48-.563.071-.95.377-1.394.71-.29.28-.683.641-.936.87-.236.216-.371.404-.496.404.132-.747 1.685-3.167.885-3.853-.158-.136-.313-.325-.515-.349a4.637 4.637 0 0 0-.833.19c-.565.18-2.78 1.28-4.19 2.289-.131.094-.214-.085-.231-.29-.087-1.058.199-2.19.496-3.188.208-.696-.557-1.225-.659-1.249zm18.177.874c-.166.364-.2.894-.248 1.319a24.307 24.307 0 0 0-1.246-.115c.238.296.691.588 1.056.724-.048.366-.434.67-.599 1.021.458-.127.676-.47.989-.821.362.22.791.627 1.26.636-.177-.376-.334-.695-.658-.966.269-.175.717-.362.924-.633-.345-.074-.718-.093-1.052-.015-.258-.284-.3-.772-.426-1.15zm-2.92.079c-.23.02-.613.49-.832.773-.807 1.039-1.542 3.15-1.661 3.542-.363 1.195-.502 2.672.28 3.722.456.612 1.258.66 2.041.434.405-.116.812-.406.95-.723.114-.263.174-.753-.404-.38-.224.145-.634.304-1.37.291-.247-.004-.651-.357-.76-.722-.192-.595-.11-1.393-.11-1.393.167-1.028.642-2.146 1.061-3.076.163-.36.658-1.259.842-1.546 0 0 .239-.373.131-.77-.031-.116-.091-.16-.168-.152zm3.072 2.976c-.12.264-.144.648-.18.956-.274-.031-.63-.066-.904-.083.172.215.501.426.766.525-.034.265-.314.486-.434.741.332-.092.49-.34.717-.596.263.16.575.456.914.462-.127-.273-.242-.504-.477-.701.195-.127.52-.262.67-.46a1.77 1.77 0 0 0-.763-.01c-.187-.206-.217-.56-.309-.834zm-1.123 2.422c-.083.183-.1.449-.125.662a12.6 12.6 0 0 0-.624-.058c.119.148.346.295.53.363-.025.184-.219.336-.301.513.23-.064.339-.236.496-.413.181.11.397.316.632.32-.088-.19-.168-.349-.33-.485.135-.087.36-.181.463-.317a1.22 1.22 0 0 0-.527-.008c-.13-.142-.151-.387-.214-.576z" }) + ] + } + ); +}); + +exports.default = SiXml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXml.d.ts new file mode 100644 index 000000000..a678c9e65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#005FAD"; +declare const SiXml: IconType; +export { SiXml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXml.mjs new file mode 100644 index 000000000..0c4a2218b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#005FAD"; +const SiXml = React.forwardRef(function SiXml2({ title = "XML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.345 7.053c-.495.02-.44.725-.536 1.081-.157.583-.3 1.325-.347 1.926-.046.585-.008 1.127.066 1.719.058.46.191.767.07.89-.108.11-3.216 2.962-3.466 3.123-.26.169-.08.584.069.817.157.246.23.373.557.33.306-.042.405-.409.583-.606.228-.252 2.421-2.401 2.616-2.401.077.544.367 1.064.67 1.513.15.222.314.439.505.629.175.175.4.317.587.45.44.024.795-.301.35-.67-.17-.14-.735-.971-.927-1.43-.18-.43-.574-1.076-.146-1.428 1.494-1.23 3.72-2.262 4.247-2.313-.257 1.024-1.356 3.048-1.757 4.012-.14.333-.231.732-.185 1.094.055.434.383.774.587.806.417-.023.7-.387.946-.645.343-.357.634-.685.974-1.043.339-.356.672-.731.971-1.07.184-.207.674-.713.963-.713-.11.693-.716 1.552-.839 2.254-.125.716.531 1.596 1.217.956.623-.58 1.255-1.129 1.867-1.72.217-.208.175.037.224.242.05.208.176.91.275 1.1.18.346.496.592.897.598.362.006.727-.161.982-.414.19-.187.513-.699.154-.832-.23-.086-.217-.176-.495-.129-.172.029-.362.074-.507.179-.367-.003-.381-.89-.324-1.161.068-.327.207-.659.185-.998-.026-.418-.478-.69-.582-.72-.156-.076-.253.023-.458.212-.173.161-.363.332-.535.495-.34.322-.768.813-.942.813.305-.705.708-2.652-.643-2.48-.563.071-.95.377-1.394.71-.29.28-.683.641-.936.87-.236.216-.371.404-.496.404.132-.747 1.685-3.167.885-3.853-.158-.136-.313-.325-.515-.349a4.637 4.637 0 0 0-.833.19c-.565.18-2.78 1.28-4.19 2.289-.131.094-.214-.085-.231-.29-.087-1.058.199-2.19.496-3.188.208-.696-.557-1.225-.659-1.249zm18.177.874c-.166.364-.2.894-.248 1.319a24.307 24.307 0 0 0-1.246-.115c.238.296.691.588 1.056.724-.048.366-.434.67-.599 1.021.458-.127.676-.47.989-.821.362.22.791.627 1.26.636-.177-.376-.334-.695-.658-.966.269-.175.717-.362.924-.633-.345-.074-.718-.093-1.052-.015-.258-.284-.3-.772-.426-1.15zm-2.92.079c-.23.02-.613.49-.832.773-.807 1.039-1.542 3.15-1.661 3.542-.363 1.195-.502 2.672.28 3.722.456.612 1.258.66 2.041.434.405-.116.812-.406.95-.723.114-.263.174-.753-.404-.38-.224.145-.634.304-1.37.291-.247-.004-.651-.357-.76-.722-.192-.595-.11-1.393-.11-1.393.167-1.028.642-2.146 1.061-3.076.163-.36.658-1.259.842-1.546 0 0 .239-.373.131-.77-.031-.116-.091-.16-.168-.152zm3.072 2.976c-.12.264-.144.648-.18.956-.274-.031-.63-.066-.904-.083.172.215.501.426.766.525-.034.265-.314.486-.434.741.332-.092.49-.34.717-.596.263.16.575.456.914.462-.127-.273-.242-.504-.477-.701.195-.127.52-.262.67-.46a1.77 1.77 0 0 0-.763-.01c-.187-.206-.217-.56-.309-.834zm-1.123 2.422c-.083.183-.1.449-.125.662a12.6 12.6 0 0 0-.624-.058c.119.148.346.295.53.363-.025.184-.219.336-.301.513.23-.064.339-.236.496-.413.181.11.397.316.632.32-.088-.19-.168-.349-.33-.485.135-.087.36-.181.463-.317a1.22 1.22 0 0 0-.527-.008c-.13-.142-.151-.387-.214-.576z" }) + ] + } + ); +}); + +export { SiXml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.cjs new file mode 100644 index 000000000..a8fc97146 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#002B5C"; +const SiXmpp = React__namespace.forwardRef(function SiXmpp2({ title = "XMPP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.401 4.594 1.025.366 3.08.912c-.01.18-.016.361-.016.543 0 3.353 1.693 7.444 4.51 10.387 2.817-2.943 4.51-7.034 4.51-10.387 0-.182-.006-.363-.016-.543l3.08-.912 1.025-.366L24 3.276C23.854 8.978 19.146 14.9 13.502 18.17c1.302 1.028 2.778 1.81 4.388 2.215v.114l.004.001v.224a14.55 14.55 0 0 1-4.829-1.281A20.909 20.909 0 0 1 12 18.966c-.353.17-.708.329-1.065.477a14.55 14.55 0 0 1-4.829 1.281V20.5l.004-.001v-.113c1.61-.406 3.086-1.188 4.389-2.216C4.854 14.9.146 8.978 0 3.276l3.401 1.318Z" }) + ] + } + ); +}); + +exports.default = SiXmpp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.d.ts new file mode 100644 index 000000000..d15fc4d71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#002B5C"; +declare const SiXmpp: IconType; +export { SiXmpp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.mjs new file mode 100644 index 000000000..ea9e80dd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXmpp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#002B5C"; +const SiXmpp = React.forwardRef(function SiXmpp2({ title = "XMPP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m3.401 4.594 1.025.366 3.08.912c-.01.18-.016.361-.016.543 0 3.353 1.693 7.444 4.51 10.387 2.817-2.943 4.51-7.034 4.51-10.387 0-.182-.006-.363-.016-.543l3.08-.912 1.025-.366L24 3.276C23.854 8.978 19.146 14.9 13.502 18.17c1.302 1.028 2.778 1.81 4.388 2.215v.114l.004.001v.224a14.55 14.55 0 0 1-4.829-1.281A20.909 20.909 0 0 1 12 18.966c-.353.17-.708.329-1.065.477a14.55 14.55 0 0 1-4.829 1.281V20.5l.004-.001v-.113c1.61-.406 3.086-1.188 4.389-2.216C4.854 14.9.146 8.978 0 3.276l3.401 1.318Z" }) + ] + } + ); +}); + +export { SiXmpp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXo.cjs new file mode 100644 index 000000000..4188eb359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5ED9C7"; +const SiXo = React__namespace.forwardRef(function SiXo2({ title = "XO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m1.629 5.698 4.275 5.367 4.274-5.367h1.613l-5.089 6.384 4.958 6.219h-1.613L5.903 13.1l-4.142 5.201H.131l4.957-6.219L0 5.698h1.629Zm16.48-.082C21.423 5.616 24 8.632 24 12c0 3.425-2.613 6.331-5.883 6.383-3.301-.1-5.804-2.878-5.911-6.164L12.202 12c0-3.436 2.637-6.384 5.907-6.384Zm0 1.268c-2.59 0-4.639 2.4-4.639 5.116.078 2.736 1.983 4.996 4.444 5.111l.195.004c2.583 0 4.623-2.406 4.623-5.115 0-2.752-2.086-5.116-4.623-5.116Zm.944 3.71c.507 0 1.1.662.702 1.473-.297.605-1.373 1.192-1.609 1.315l-.045.024s-1.32-.658-1.655-1.339c-.397-.811.196-1.473.703-1.473.56 0 .952.535.952.535s.391-.535.952-.535Z" }) + ] + } + ); +}); + +exports.default = SiXo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXo.d.ts new file mode 100644 index 000000000..d33d77596 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5ED9C7"; +declare const SiXo: IconType; +export { SiXo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXo.mjs new file mode 100644 index 000000000..95bf345a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5ED9C7"; +const SiXo = React.forwardRef(function SiXo2({ title = "XO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m1.629 5.698 4.275 5.367 4.274-5.367h1.613l-5.089 6.384 4.958 6.219h-1.613L5.903 13.1l-4.142 5.201H.131l4.957-6.219L0 5.698h1.629Zm16.48-.082C21.423 5.616 24 8.632 24 12c0 3.425-2.613 6.331-5.883 6.383-3.301-.1-5.804-2.878-5.911-6.164L12.202 12c0-3.436 2.637-6.384 5.907-6.384Zm0 1.268c-2.59 0-4.639 2.4-4.639 5.116.078 2.736 1.983 4.996 4.444 5.111l.195.004c2.583 0 4.623-2.406 4.623-5.115 0-2.752-2.086-5.116-4.623-5.116Zm.944 3.71c.507 0 1.1.662.702 1.473-.297.605-1.373 1.192-1.609 1.315l-.045.024s-1.32-.658-1.655-1.339c-.397-.811.196-1.473.703-1.473.56 0 .952.535.952.535s.391-.535.952-.535Z" }) + ] + } + ); +}); + +export { SiXo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.cjs new file mode 100644 index 000000000..3a4d0510a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#25A768"; +const SiXrp = React__namespace.forwardRef(function SiXrp2({ title = "XRP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.52 2.955A3.521 3.521 0 001.996 6.48v2.558A2.12 2.12 0 010 11.157l.03.562-.03.561a2.12 2.12 0 011.996 2.121v2.948a3.69 3.69 0 003.68 3.696v-1.123a2.56 2.56 0 01-2.557-2.558v-2.963a3.239 3.239 0 00-1.42-2.682 3.26 3.26 0 001.42-2.682V6.48A2.412 2.412 0 015.52 4.078h.437V2.955zm12.538 0v1.123h.437a2.39 2.39 0 012.386 2.401v2.558a3.26 3.26 0 001.42 2.682 3.239 3.239 0 00-1.42 2.682v2.963a2.56 2.56 0 01-2.557 2.558v1.123a3.69 3.69 0 003.68-3.696V14.4A2.12 2.12 0 0124 12.281l-.03-.562.03-.561a2.12 2.12 0 01-1.996-2.12V6.478a3.518 3.518 0 00-3.509-3.524zM6.253 7.478l3.478 3.259a3.393 3.393 0 004.553 0l3.478-3.26h-1.669l-2.65 2.464a2.133 2.133 0 01-2.886 0L7.922 7.478zm5.606 4.884a3.36 3.36 0 00-2.128.886l-3.493 3.274h1.668l2.667-2.495a2.133 2.133 0 012.885 0l2.65 2.495h1.67l-3.494-3.274a3.36 3.36 0 00-2.425-.886z" }) + ] + } + ); +}); + +exports.default = SiXrp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.d.ts new file mode 100644 index 000000000..8eb20717e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#25A768"; +declare const SiXrp: IconType; +export { SiXrp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.mjs new file mode 100644 index 000000000..a0e05abf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXrp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#25A768"; +const SiXrp = React.forwardRef(function SiXrp2({ title = "XRP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.52 2.955A3.521 3.521 0 001.996 6.48v2.558A2.12 2.12 0 010 11.157l.03.562-.03.561a2.12 2.12 0 011.996 2.121v2.948a3.69 3.69 0 003.68 3.696v-1.123a2.56 2.56 0 01-2.557-2.558v-2.963a3.239 3.239 0 00-1.42-2.682 3.26 3.26 0 001.42-2.682V6.48A2.412 2.412 0 015.52 4.078h.437V2.955zm12.538 0v1.123h.437a2.39 2.39 0 012.386 2.401v2.558a3.26 3.26 0 001.42 2.682 3.239 3.239 0 00-1.42 2.682v2.963a2.56 2.56 0 01-2.557 2.558v1.123a3.69 3.69 0 003.68-3.696V14.4A2.12 2.12 0 0124 12.281l-.03-.562.03-.561a2.12 2.12 0 01-1.996-2.12V6.478a3.518 3.518 0 00-3.509-3.524zM6.253 7.478l3.478 3.259a3.393 3.393 0 004.553 0l3.478-3.26h-1.669l-2.65 2.464a2.133 2.133 0 01-2.886 0L7.922 7.478zm5.606 4.884a3.36 3.36 0 00-2.128.886l-3.493 3.274h1.668l2.667-2.495a2.133 2.133 0 012.885 0l2.65 2.495h1.67l-3.494-3.274a3.36 3.36 0 00-2.425-.886z" }) + ] + } + ); +}); + +export { SiXrp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.cjs new file mode 100644 index 000000000..682f5ab48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0095DE"; +const SiXsplit = React__namespace.forwardRef(function SiXsplit2({ title = "XSplit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 19.5c-.7-.1-2.5-.3-2.7-.3-.1 0-2.8 2.3-4 3.399l-.1.101c.1-1.3.3-2.601.399-3.9C11.7 18.1 5.9 17.4 0 16.7V1.5v-.2H.3C.9 1.4 22.9 3.9 24 4v15.5zm-2.6-2.6V6.2C15.1 5.5 8.7 4.7 2.4 4v10.6c6.3.8 12.7 1.5 19 2.3z" }) + ] + } + ); +}); + +exports.default = SiXsplit; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.d.ts new file mode 100644 index 000000000..95ef6af5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0095DE"; +declare const SiXsplit: IconType; +export { SiXsplit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.mjs new file mode 100644 index 000000000..e50e0807d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXsplit.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0095DE"; +const SiXsplit = React.forwardRef(function SiXsplit2({ title = "XSplit", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 19.5c-.7-.1-2.5-.3-2.7-.3-.1 0-2.8 2.3-4 3.399l-.1.101c.1-1.3.3-2.601.399-3.9C11.7 18.1 5.9 17.4 0 16.7V1.5v-.2H.3C.9 1.4 22.9 3.9 24 4v15.5zm-2.6-2.6V6.2C15.1 5.5 8.7 4.7 2.4 4v10.6c6.3.8 12.7 1.5 19 2.3z" }) + ] + } + ); +}); + +export { SiXsplit as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.cjs new file mode 100644 index 000000000..d043e8083 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C3E50"; +const SiXstate = React__namespace.forwardRef(function SiXstate2({ title = "XState", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.891 0h6.023l-6.085 10.563c-1.853-3.305-1.822-7.32.062-10.563zm6.055 23.999L8.078.001H2.055l6.919 12.015L2.055 24h6.023L12 17.236 15.892 24z" }) + ] + } + ); +}); + +exports.default = SiXstate; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.d.ts new file mode 100644 index 000000000..89b80d2a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C3E50"; +declare const SiXstate: IconType; +export { SiXstate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.mjs new file mode 100644 index 000000000..ed77fbbda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXstate.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C3E50"; +const SiXstate = React.forwardRef(function SiXstate2({ title = "XState", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.891 0h6.023l-6.085 10.563c-1.853-3.305-1.822-7.32.062-10.563zm6.055 23.999L8.078.001H2.055l6.919 12.015L2.055 24h6.023L12 17.236 15.892 24z" }) + ] + } + ); +}); + +export { SiXstate as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.cjs new file mode 100644 index 000000000..24af510f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0044AA"; +const SiXubuntu = React__namespace.forwardRef(function SiXubuntu2({ title = "Xubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m3.914 4.4736c.3846-.044.1454 1.6067.0528 2.598-.0811.8681-.1263 1.154-.2886 2.1122-.051.301-.2008.6867-.6687.6314-.3924-.0498-.4553-.6959-.4424-.9954.0223-.5142.3031-1.7669.3933-2.217.1158-.5778.469-1.9566.9141-2.1196a.17.17 0 0 1 .0396-.0096m3.2264.7083c.5486.0198-.4157 1.75-.8093 2.6645-.2762.6417-.474 1.1556-.832 2.004-.1188.2813-.484.686-.906.4767-.3543-.1755-.233-.6916.0234-1.2897.369-.8616.6724-1.4374 1.0627-2.0867.3027-.5056.9341-1.6977 1.4033-1.7652a.34.34 0 0 1 .0579-.0037zm-9.2842.4702c.3118.0219.5717.1591.75.375.7699.932.6074 2.532.6746 3.7478 1.2.0653 2.19.2109 3.4687.5845.9745.2847 2.3231.7615 3.1128 1.2744.7867.511 1.377 1.1725 1.5 2.0625.0764.5522-.3435 1.106-.9192 1.612-.5748.5052-1.3265.98-2.1372 1.4253-.8103.445-1.6528.8491-2.3247 1.1624-1.4662.6837-3.0161 1.3499-4.9175 1.5417-5.1549.5202-4.5923-4.1579-4.3923-5.704.1558-1.2045.8004-2.942.9075-3.2586-.1404-.4457-.2497-.8216-.3355-1.2979-.073-.4046-.1122-.8711-.019-1.2751.0918-.398.3595-.8417.8027-1.0269.3513-.1467.6092-.0887.9375.2088.2703.2449.497.6077.7163.9873.3171.5488.4463 1.1183.7178 1.6758.0525.1077.3237.1574.482.1113.0367-.0107.0773-.1032.0563-.175-.3484-1.1915-.5975-2.1766-.424-3.0374.161-.799.8422-.9737 1.3432-.9939" }) + ] + } + ); +}); + +exports.default = SiXubuntu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.d.ts new file mode 100644 index 000000000..e4b9b9f93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0044AA"; +declare const SiXubuntu: IconType; +export { SiXubuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.mjs new file mode 100644 index 000000000..30bb2431a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXubuntu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0044AA"; +const SiXubuntu = React.forwardRef(function SiXubuntu2({ title = "Xubuntu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0m3.914 4.4736c.3846-.044.1454 1.6067.0528 2.598-.0811.8681-.1263 1.154-.2886 2.1122-.051.301-.2008.6867-.6687.6314-.3924-.0498-.4553-.6959-.4424-.9954.0223-.5142.3031-1.7669.3933-2.217.1158-.5778.469-1.9566.9141-2.1196a.17.17 0 0 1 .0396-.0096m3.2264.7083c.5486.0198-.4157 1.75-.8093 2.6645-.2762.6417-.474 1.1556-.832 2.004-.1188.2813-.484.686-.906.4767-.3543-.1755-.233-.6916.0234-1.2897.369-.8616.6724-1.4374 1.0627-2.0867.3027-.5056.9341-1.6977 1.4033-1.7652a.34.34 0 0 1 .0579-.0037zm-9.2842.4702c.3118.0219.5717.1591.75.375.7699.932.6074 2.532.6746 3.7478 1.2.0653 2.19.2109 3.4687.5845.9745.2847 2.3231.7615 3.1128 1.2744.7867.511 1.377 1.1725 1.5 2.0625.0764.5522-.3435 1.106-.9192 1.612-.5748.5052-1.3265.98-2.1372 1.4253-.8103.445-1.6528.8491-2.3247 1.1624-1.4662.6837-3.0161 1.3499-4.9175 1.5417-5.1549.5202-4.5923-4.1579-4.3923-5.704.1558-1.2045.8004-2.942.9075-3.2586-.1404-.4457-.2497-.8216-.3355-1.2979-.073-.4046-.1122-.8711-.019-1.2751.0918-.398.3595-.8417.8027-1.0269.3513-.1467.6092-.0887.9375.2088.2703.2449.497.6077.7163.9873.3171.5488.4463 1.1183.7178 1.6758.0525.1077.3237.1574.482.1113.0367-.0107.0773-.1032.0563-.175-.3484-1.1915-.5975-2.1766-.424-3.0374.161-.799.8422-.9737 1.3432-.9939" }) + ] + } + ); +}); + +export { SiXubuntu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.cjs new file mode 100644 index 000000000..39681d42a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1A192B"; +const SiXyflow = React__namespace.forwardRef(function SiXyflow2({ title = "xyflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 0a2 2 0 0 0-2 2v6.667a2 2 0 0 0 2 2h6.667a2 2 0 0 0 2-2V7.22a2 2 0 0 1-1.334 0v1.447a.667.667 0 0 1-.666.666H2a.667.667 0 0 1-.667-.666V2c0-.368.299-.667.667-.667h6.667c.368 0 .666.299.666.667v1.447a2 2 0 0 1 1.334 0V2a2 2 0 0 0-2-2zm11.333 2a2 2 0 0 1 2-2H22a2 2 0 0 1 2 2v6.667a2 2 0 0 1-2 2h-1.447a2 2 0 0 0 0-1.334H22a.667.667 0 0 0 .667-.666V2A.667.667 0 0 0 22 1.333h-6.667a.667.667 0 0 0-.666.667v1.447a2 2 0 0 0-1.334 0zm3.448 7.333h-1.448a.667.667 0 0 1-.666-.666V7.22a2 2 0 0 1-1.334 0v1.447a2 2 0 0 0 2 2h1.447a2 2 0 0 1 0-1.334M0 15.333a2 2 0 0 1 2-2h6.667a2 2 0 0 1 2 2v1.447a2 2 0 0 0-1.334 0v-1.447a.667.667 0 0 0-.666-.666H2a.667.667 0 0 0-.667.666V22c0 .368.299.667.667.667h6.667A.667.667 0 0 0 9.333 22v-1.447a2 2 0 0 0 1.334 0V22a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm22-.666h-1.447a2 2 0 0 0 0-1.334H22a2 2 0 0 1 2 2V22a2 2 0 0 1-2 2h-6.667a2 2 0 0 1-2-2v-1.447a2 2 0 0 0 1.334 0V22c0 .368.298.667.666.667H22a.667.667 0 0 0 .667-.667v-6.667a.667.667 0 0 0-.667-.666m-7.333 2.114v-1.448c0-.368.298-.666.666-.666h1.447a2 2 0 0 1 0-1.334h-1.447a2 2 0 0 0-2 2v1.447a2 2 0 0 1 1.334 0M20 14a1.333 1.333 0 1 1-1.667-1.291V11.29a1.334 1.334 0 1 1 .667 0v1.418c.575.148 1 .67 1 1.291m-10 6c.621 0 1.143-.425 1.291-1h1.418a1.334 1.334 0 1 0 0-.667H11.29A1.334 1.334 0 1 0 10 20m1.291-14.333a1.334 1.334 0 1 1 0-.667h1.418a1.334 1.334 0 1 1 0 .667z" }) + ] + } + ); +}); + +exports.default = SiXyflow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.d.ts new file mode 100644 index 000000000..b16ae8700 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1A192B"; +declare const SiXyflow: IconType; +export { SiXyflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.mjs new file mode 100644 index 000000000..889170527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiXyflow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1A192B"; +const SiXyflow = React.forwardRef(function SiXyflow2({ title = "xyflow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2 0a2 2 0 0 0-2 2v6.667a2 2 0 0 0 2 2h6.667a2 2 0 0 0 2-2V7.22a2 2 0 0 1-1.334 0v1.447a.667.667 0 0 1-.666.666H2a.667.667 0 0 1-.667-.666V2c0-.368.299-.667.667-.667h6.667c.368 0 .666.299.666.667v1.447a2 2 0 0 1 1.334 0V2a2 2 0 0 0-2-2zm11.333 2a2 2 0 0 1 2-2H22a2 2 0 0 1 2 2v6.667a2 2 0 0 1-2 2h-1.447a2 2 0 0 0 0-1.334H22a.667.667 0 0 0 .667-.666V2A.667.667 0 0 0 22 1.333h-6.667a.667.667 0 0 0-.666.667v1.447a2 2 0 0 0-1.334 0zm3.448 7.333h-1.448a.667.667 0 0 1-.666-.666V7.22a2 2 0 0 1-1.334 0v1.447a2 2 0 0 0 2 2h1.447a2 2 0 0 1 0-1.334M0 15.333a2 2 0 0 1 2-2h6.667a2 2 0 0 1 2 2v1.447a2 2 0 0 0-1.334 0v-1.447a.667.667 0 0 0-.666-.666H2a.667.667 0 0 0-.667.666V22c0 .368.299.667.667.667h6.667A.667.667 0 0 0 9.333 22v-1.447a2 2 0 0 0 1.334 0V22a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm22-.666h-1.447a2 2 0 0 0 0-1.334H22a2 2 0 0 1 2 2V22a2 2 0 0 1-2 2h-6.667a2 2 0 0 1-2-2v-1.447a2 2 0 0 0 1.334 0V22c0 .368.298.667.666.667H22a.667.667 0 0 0 .667-.667v-6.667a.667.667 0 0 0-.667-.666m-7.333 2.114v-1.448c0-.368.298-.666.666-.666h1.447a2 2 0 0 1 0-1.334h-1.447a2 2 0 0 0-2 2v1.447a2 2 0 0 1 1.334 0M20 14a1.333 1.333 0 1 1-1.667-1.291V11.29a1.334 1.334 0 1 1 .667 0v1.418c.575.148 1 .67 1 1.291m-10 6c.621 0 1.143-.425 1.291-1h1.418a1.334 1.334 0 1 0 0-.667H11.29A1.334 1.334 0 1 0 10 20m1.291-14.333a1.334 1.334 0 1 1 0-.667h1.418a1.334 1.334 0 1 1 0 .667z" }) + ] + } + ); +}); + +export { SiXyflow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.cjs new file mode 100644 index 000000000..88f80387d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#814EDF"; +const SiYaak = React__namespace.forwardRef(function SiYaak2({ title = "Yaak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12c1.26 0 2.474-.194 3.615-.555-.272-.827-.485-1.57-.72-1.496C8.607 23.925 1.668 18.246 1.668 12 1.667 6.29 7.79-.043 14.7 1.779c.18.047 1.364-.405 2.19-.738A11.95 11.95 0 0 0 12 0m6.37 1.83c-1.866.712-6.182 2.136-7.332 3.731-2.676.004-3.675.532-4.069.814-.316.226-.407 2.034-.407 2.034h-.814l-.406-1.627s-3.967 4.496 1.22 4.475c.202 1.339.15 3.974.407 5.696.27 1.806 4.18 3.74 5.29 3.662.58-.04.362-1.65.406-2.441 2.345.802 3.653 1.981 4.285 4.76C21.106 21.046 24 16.858 24 12c0-4.284-2.25-8.046-5.63-10.17m-2.81 4.124c.667-.062 6.563 2.538 4.428 4.454-.572.21-1.268.195-1.782.21-2.198.065-3.007-.61-3.421-1.376-.229-.422-.62-1.084-.492-1.24.67.001 1.497-.031 2.034 0-.191-.29-1.398-1.596-.814-2.034a.1.1 0 0 1 .048-.014m-3.465 6.166a1.124 1.124 0 1 1 0 2.248 1.124 1.124 0 0 1 0-2.248" }) + ] + } + ); +}); + +exports.default = SiYaak; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.d.ts new file mode 100644 index 000000000..c501047a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#814EDF"; +declare const SiYaak: IconType; +export { SiYaak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.mjs new file mode 100644 index 000000000..94693966c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYaak.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#814EDF"; +const SiYaak = React.forwardRef(function SiYaak2({ title = "Yaak", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.377 0 0 5.377 0 12s5.377 12 12 12c1.26 0 2.474-.194 3.615-.555-.272-.827-.485-1.57-.72-1.496C8.607 23.925 1.668 18.246 1.668 12 1.667 6.29 7.79-.043 14.7 1.779c.18.047 1.364-.405 2.19-.738A11.95 11.95 0 0 0 12 0m6.37 1.83c-1.866.712-6.182 2.136-7.332 3.731-2.676.004-3.675.532-4.069.814-.316.226-.407 2.034-.407 2.034h-.814l-.406-1.627s-3.967 4.496 1.22 4.475c.202 1.339.15 3.974.407 5.696.27 1.806 4.18 3.74 5.29 3.662.58-.04.362-1.65.406-2.441 2.345.802 3.653 1.981 4.285 4.76C21.106 21.046 24 16.858 24 12c0-4.284-2.25-8.046-5.63-10.17m-2.81 4.124c.667-.062 6.563 2.538 4.428 4.454-.572.21-1.268.195-1.782.21-2.198.065-3.007-.61-3.421-1.376-.229-.422-.62-1.084-.492-1.24.67.001 1.497-.031 2.034 0-.191-.29-1.398-1.596-.814-2.034a.1.1 0 0 1 .048-.014m-3.465 6.166a1.124 1.124 0 1 1 0 2.248 1.124 1.124 0 0 1 0-2.248" }) + ] + } + ); +}); + +export { SiYaak as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.cjs new file mode 100644 index 000000000..21b35d5b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00364B"; +const SiYabai = React__namespace.forwardRef(function SiYabai2({ title = "yabai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.0752 0a3.2626 3.2626 0 0 0-2.3807.955L6.2164 4.4313l-.5312-.5293c-1.2-1.055-2.8211.5135-1.744 1.742l.5312.5313L.9765 9.6711c-1.2734 1.274-1.2734 3.339 0 4.613l3.4939 3.4958-.0684.0664-.5156.5136c-1.0704 1.2058.4712 2.8158 1.7067 1.7755l.5978-.594 3.5017 3.5017c1.2742 1.2747 3.3407 1.2747 4.6149 0l8.7141-8.7141c1.2748-1.2742 1.2748-3.3407 0-4.615l.002-.0019-3.486-3.488.58-.58c.4781-.4823.4781-1.2598 0-1.742-.4815-.4818-1.2624-.4818-1.744 0l-.5605.5604L14.3075.955A3.2626 3.2626 0 0 0 12.0752 0Zm-.0761 1.7206c.394 0 .789.1505 1.0897.4511l3.5076 3.5056-4.566 4.568L7.433 5.65l3.4783-3.4783a1.5334 1.5334 0 0 1 1.0878-.4511ZM5.691 7.394l4.5934 4.5933-4.5954 4.5778-3.4939-3.4978c-.602-.6017-.602-1.5777 0-2.1795zm12.626.0468 3.4899 3.49c.6011.6014.6011 1.5762 0 2.1776l-8.7142 8.7141c-.6016.6025-1.5779.6025-2.1795 0l-3.4997-3.4997Z" }) + ] + } + ); +}); + +exports.default = SiYabai; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.d.ts new file mode 100644 index 000000000..8dee2234c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00364B"; +declare const SiYabai: IconType; +export { SiYabai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.mjs new file mode 100644 index 000000000..5336d67f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYabai.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00364B"; +const SiYabai = React.forwardRef(function SiYabai2({ title = "yabai", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.0752 0a3.2626 3.2626 0 0 0-2.3807.955L6.2164 4.4313l-.5312-.5293c-1.2-1.055-2.8211.5135-1.744 1.742l.5312.5313L.9765 9.6711c-1.2734 1.274-1.2734 3.339 0 4.613l3.4939 3.4958-.0684.0664-.5156.5136c-1.0704 1.2058.4712 2.8158 1.7067 1.7755l.5978-.594 3.5017 3.5017c1.2742 1.2747 3.3407 1.2747 4.6149 0l8.7141-8.7141c1.2748-1.2742 1.2748-3.3407 0-4.615l.002-.0019-3.486-3.488.58-.58c.4781-.4823.4781-1.2598 0-1.742-.4815-.4818-1.2624-.4818-1.744 0l-.5605.5604L14.3075.955A3.2626 3.2626 0 0 0 12.0752 0Zm-.0761 1.7206c.394 0 .789.1505 1.0897.4511l3.5076 3.5056-4.566 4.568L7.433 5.65l3.4783-3.4783a1.5334 1.5334 0 0 1 1.0878-.4511ZM5.691 7.394l4.5934 4.5933-4.5954 4.5778-3.4939-3.4978c-.602-.6017-.602-1.5777 0-2.1795zm12.626.0468 3.4899 3.49c.6011.6014.6011 1.5762 0 2.1776l-8.7142 8.7141c-.6016.6025-1.5779.6025-2.1795 0l-3.4997-3.4997Z" }) + ] + } + ); +}); + +export { SiYabai as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYale.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYale.cjs new file mode 100644 index 000000000..bdc5b1f79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYale.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFD900"; +const SiYale = React__namespace.forwardRef(function SiYale2({ title = "Yale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.8 15.72v-1.24c-.64.04-.8-.24-.8-.76V7.6h-1.36v6.24c0 1.2.44 1.96 2.16 1.88zm4.96-5.24c-.44-.52-1.12-.88-2.08-.88-1 0-1.68.36-2.12.88-.52.64-.64 1.56-.64 2.24 0 .64.12 1.4.56 2.04.44.6 1.16 1 2.28 1 .76 0 1.36-.16 1.8-.48.44-.32.76-.84.8-1.36h-1.4c-.04.2-.16.36-.32.52-.2.16-.48.2-.88.2-.56 0-.92-.16-1.12-.48-.16-.24-.24-.64-.24-1h4.04c0-1.08-.16-2.04-.68-2.68zm-3.4 1.64c0-.32.12-.76.36-1s.56-.36.96-.36c.4 0 .72.12.96.36s.32.68.32 1zM10.4 9.64c-1.6 0-2.36.84-2.44 2h1.4c.04-.52.32-.84 1.04-.84.84 0 1.08.4 1.08 1v.36h-1.24c-.8 0-1.32.08-1.72.36-.48.32-.76.76-.76 1.44 0 .84.52 1.8 2.12 1.8.8 0 1.32-.24 1.68-.68v.6h1.32v-3.84c-.04-1.28-.72-2.2-2.48-2.2zm1.04 4.16c0 .64-.56.92-1.32.92-.84 0-1.04-.36-1.04-.8 0-.24.08-.44.28-.56.16-.08.4-.12.88-.12h1.2zM9.12 7.6H7.56l-1.92 3.6-1.92-3.6H2.16l2.76 4.96v3.08h1.44v-3.08zM24 12c0 6.64-5.36 12-12 12S0 18.64 0 12 5.36 0 12 0s12 5.36 12 12" }) + ] + } + ); +}); + +exports.default = SiYale; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYale.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYale.d.ts new file mode 100644 index 000000000..348e0acef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYale.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFD900"; +declare const SiYale: IconType; +export { SiYale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYale.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYale.mjs new file mode 100644 index 000000000..ffd4e864b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYale.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFD900"; +const SiYale = React.forwardRef(function SiYale2({ title = "Yale", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.8 15.72v-1.24c-.64.04-.8-.24-.8-.76V7.6h-1.36v6.24c0 1.2.44 1.96 2.16 1.88zm4.96-5.24c-.44-.52-1.12-.88-2.08-.88-1 0-1.68.36-2.12.88-.52.64-.64 1.56-.64 2.24 0 .64.12 1.4.56 2.04.44.6 1.16 1 2.28 1 .76 0 1.36-.16 1.8-.48.44-.32.76-.84.8-1.36h-1.4c-.04.2-.16.36-.32.52-.2.16-.48.2-.88.2-.56 0-.92-.16-1.12-.48-.16-.24-.24-.64-.24-1h4.04c0-1.08-.16-2.04-.68-2.68zm-3.4 1.64c0-.32.12-.76.36-1s.56-.36.96-.36c.4 0 .72.12.96.36s.32.68.32 1zM10.4 9.64c-1.6 0-2.36.84-2.44 2h1.4c.04-.52.32-.84 1.04-.84.84 0 1.08.4 1.08 1v.36h-1.24c-.8 0-1.32.08-1.72.36-.48.32-.76.76-.76 1.44 0 .84.52 1.8 2.12 1.8.8 0 1.32-.24 1.68-.68v.6h1.32v-3.84c-.04-1.28-.72-2.2-2.48-2.2zm1.04 4.16c0 .64-.56.92-1.32.92-.84 0-1.04-.36-1.04-.8 0-.24.08-.44.28-.56.16-.08.4-.12.88-.12h1.2zM9.12 7.6H7.56l-1.92 3.6-1.92-3.6H2.16l2.76 4.96v3.08h1.44v-3.08zM24 12c0 6.64-5.36 12-12 12S0 18.64 0 12 5.36 0 12 0s12 5.36 12 12" }) + ] + } + ); +}); + +export { SiYale as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.cjs new file mode 100644 index 000000000..36aa9b9e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#4B1E78"; +const SiYamahacorporation = React__namespace.forwardRef(function SiYamahacorporation2({ title = "Yamaha Corporation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0a12 12 0 1012 12A12 12 0 0012 0zm-.412 1.377A10.648 10.648 0 0122.664 12 10.648 10.648 0 0112 22.664a10.648 10.648 0 01-.412-21.287zM12 1.9a.184.184 0 00-.172.131l-.883 2.526a.39.39 0 000 .097.3.3 0 00.133.25.926.926 0 01.074 1.465 2.345 2.345 0 00-.82 1.79v.903L5.865 6.498l-.547.953 4.987 2.877v.692l-.602.347-4.978-2.88-.551.954L8.602 12l-.782.45a2.345 2.345 0 00-1.127 1.616.93.93 0 01-1.312.668.293.293 0 00-.277 0 .324.324 0 00-.079.063l-1.742 2.037a.188.188 0 00.176.305l2.633-.493a.36.36 0 00.09-.035.3.3 0 00.152-.238.926.926 0 011.232-.781 2.345 2.345 0 001.954-.184l.78-.451v5.104h1.098v-5.756l.598-.344.598.344v5.756h1.1v-5.123l.78.45a2.345 2.345 0 001.954.184.926.926 0 011.234.782.285.285 0 00.149.238.36.36 0 00.09.035l2.634.492a.184.184 0 00.176-.305l.004.02-1.744-2.037a.39.39 0 00-.075-.063.3.3 0 00-.28 0 .938.938 0 01-.864-.035.93.93 0 01-.434-.633 2.368 2.368 0 00-1.14-1.609l-.782-.45 4.436-2.558-.549-.955-4.98 2.873-.602-.347v-.692l4.985-2.877-.547-.953L13.7 9.062v-.904a2.345 2.345 0 00-.803-1.789.922.922 0 01.079-1.465.309.309 0 00.128-.25.27.27 0 000-.097L12.18 2.03a.184.184 0 00-.18-.13zm.021 5.512a.598.598 0 01.58.598V9.7l-.597.347-.598-.348V8.01a.598.598 0 01.615-.597zm-.017 3.818l.687.391v.781l-.687.391-.688-.39v-.782zm2.299 1.403l1.46.847a.598.598 0 01.223.817v.004a.602.602 0 01-.82.219l-1.465-.844v-.696zm-4.596.004l.602.347v.692l-1.465.844a.598.598 0 11-.598-1.036z" }) + ] + } + ); +}); + +exports.default = SiYamahacorporation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.d.ts new file mode 100644 index 000000000..41b114191 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#4B1E78"; +declare const SiYamahacorporation: IconType; +export { SiYamahacorporation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.mjs new file mode 100644 index 000000000..7950b90c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahacorporation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#4B1E78"; +const SiYamahacorporation = React.forwardRef(function SiYamahacorporation2({ title = "Yamaha Corporation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0a12 12 0 1012 12A12 12 0 0012 0zm-.412 1.377A10.648 10.648 0 0122.664 12 10.648 10.648 0 0112 22.664a10.648 10.648 0 01-.412-21.287zM12 1.9a.184.184 0 00-.172.131l-.883 2.526a.39.39 0 000 .097.3.3 0 00.133.25.926.926 0 01.074 1.465 2.345 2.345 0 00-.82 1.79v.903L5.865 6.498l-.547.953 4.987 2.877v.692l-.602.347-4.978-2.88-.551.954L8.602 12l-.782.45a2.345 2.345 0 00-1.127 1.616.93.93 0 01-1.312.668.293.293 0 00-.277 0 .324.324 0 00-.079.063l-1.742 2.037a.188.188 0 00.176.305l2.633-.493a.36.36 0 00.09-.035.3.3 0 00.152-.238.926.926 0 011.232-.781 2.345 2.345 0 001.954-.184l.78-.451v5.104h1.098v-5.756l.598-.344.598.344v5.756h1.1v-5.123l.78.45a2.345 2.345 0 001.954.184.926.926 0 011.234.782.285.285 0 00.149.238.36.36 0 00.09.035l2.634.492a.184.184 0 00.176-.305l.004.02-1.744-2.037a.39.39 0 00-.075-.063.3.3 0 00-.28 0 .938.938 0 01-.864-.035.93.93 0 01-.434-.633 2.368 2.368 0 00-1.14-1.609l-.782-.45 4.436-2.558-.549-.955-4.98 2.873-.602-.347v-.692l4.985-2.877-.547-.953L13.7 9.062v-.904a2.345 2.345 0 00-.803-1.789.922.922 0 01.079-1.465.309.309 0 00.128-.25.27.27 0 000-.097L12.18 2.03a.184.184 0 00-.18-.13zm.021 5.512a.598.598 0 01.58.598V9.7l-.597.347-.598-.348V8.01a.598.598 0 01.615-.597zm-.017 3.818l.687.391v.781l-.687.391-.688-.39v-.782zm2.299 1.403l1.46.847a.598.598 0 01.223.817v.004a.602.602 0 01-.82.219l-1.465-.844v-.696zm-4.596.004l.602.347v.692l-1.465.844a.598.598 0 11-.598-1.036z" }) + ] + } + ); +}); + +export { SiYamahacorporation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.cjs new file mode 100644 index 000000000..6048315d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E60012"; +const SiYamahamotorcorporation = React__namespace.forwardRef(function SiYamahamotorcorporation2({ title = "Yamaha Motor Corporation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zm0 .57C18.315.57 23.43 5.685 23.43 12c0 6.31-5.115 11.43-11.43 11.43C5.69 23.43.57 18.314.57 12 .57 5.69 5.69.57 12 .57zm0 .234c-.1 0-.183.06-.218.147l-.492 1.551A9.523 9.523 0 002.475 12c0 1.48.337 2.885.94 4.136l-1.1 1.206a.241.241 0 00-.015.262.246.246 0 00.238.115l1.592-.353a9.52 9.52 0 007.87 4.16c3.27 0 6.16-1.652 7.874-4.16l1.592.353a.236.236 0 00.23-.123.234.234 0 00-.016-.262l-1.1-1.198A9.431 9.431 0 0021.526 12a9.523 9.523 0 00-8.815-9.498L12.218.947A.237.237 0 0012 .804zm-.003.25c.024 0 .048.02.056.043l1.02 3.354a1.2 1.2 0 00-.48.957c0 .389.19.734.48.952h-.004c.436.326.718.846.718 1.429v1.12l4.326-2.497.476.825-4.802 2.77v.965l.834.48 4.802-2.774.476.825-4.326 2.5.972.56c.508.294.818.798.882 1.338v-.004a1.193 1.193 0 001.655.953l2.393 2.56c.02.02.02.047.008.07-.016.025-.04.033-.068.029l-3.413-.794a1.193 1.193 0 00-1.65-.957l.003-.004c-.5.215-1.091.199-1.6-.095l-.968-.56v4.994h-.952v-5.545l-.834-.48-.833.48v5.545h-.953V15.1l-.972.555c-.508.294-1.1.31-1.6.096l.004.004a1.193 1.193 0 00-1.651.957l-3.413.793a.054.054 0 01-.063-.028c-.016-.02-.012-.047.008-.067l2.397-2.56c.333.143.73.135 1.067-.064.338-.194.544-.528.588-.889v.004c.063-.54.373-1.044.88-1.337l.97-.56-4.327-2.496.477-.826 4.802 2.774.833-.484v-.964l-4.802-2.77.476-.826 4.326 2.496V7.79c0-.583.282-1.103.719-1.429h-.004c.29-.214.476-.56.476-.952 0-.393-.19-.738-.48-.957l1.02-3.353c.008-.028.031-.044.051-.044zm.004 5.902a.833.833 0 00-.833.833v1.67L12 9.94l.833-.48V7.789a.833.833 0 00-.833-.833zm0 4.084l-.833.48v.964l.833.476.833-.48v-.96zm-2.62 1.516l-1.444.833a.833.833 0 00-.306 1.14.822.822 0 00.723.412.83.83 0 00.416-.111l1.445-.834v-.96zm5.243 0l-.833.48V14l1.445.834a.834.834 0 00.833-1.445z" }) + ] + } + ); +}); + +exports.default = SiYamahamotorcorporation; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.d.ts new file mode 100644 index 000000000..4f9d3463b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E60012"; +declare const SiYamahamotorcorporation: IconType; +export { SiYamahamotorcorporation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.mjs new file mode 100644 index 000000000..23041ed56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYamahamotorcorporation.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E60012"; +const SiYamahamotorcorporation = React.forwardRef(function SiYamahamotorcorporation2({ title = "Yamaha Motor Corporation", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zm0 .57C18.315.57 23.43 5.685 23.43 12c0 6.31-5.115 11.43-11.43 11.43C5.69 23.43.57 18.314.57 12 .57 5.69 5.69.57 12 .57zm0 .234c-.1 0-.183.06-.218.147l-.492 1.551A9.523 9.523 0 002.475 12c0 1.48.337 2.885.94 4.136l-1.1 1.206a.241.241 0 00-.015.262.246.246 0 00.238.115l1.592-.353a9.52 9.52 0 007.87 4.16c3.27 0 6.16-1.652 7.874-4.16l1.592.353a.236.236 0 00.23-.123.234.234 0 00-.016-.262l-1.1-1.198A9.431 9.431 0 0021.526 12a9.523 9.523 0 00-8.815-9.498L12.218.947A.237.237 0 0012 .804zm-.003.25c.024 0 .048.02.056.043l1.02 3.354a1.2 1.2 0 00-.48.957c0 .389.19.734.48.952h-.004c.436.326.718.846.718 1.429v1.12l4.326-2.497.476.825-4.802 2.77v.965l.834.48 4.802-2.774.476.825-4.326 2.5.972.56c.508.294.818.798.882 1.338v-.004a1.193 1.193 0 001.655.953l2.393 2.56c.02.02.02.047.008.07-.016.025-.04.033-.068.029l-3.413-.794a1.193 1.193 0 00-1.65-.957l.003-.004c-.5.215-1.091.199-1.6-.095l-.968-.56v4.994h-.952v-5.545l-.834-.48-.833.48v5.545h-.953V15.1l-.972.555c-.508.294-1.1.31-1.6.096l.004.004a1.193 1.193 0 00-1.651.957l-3.413.793a.054.054 0 01-.063-.028c-.016-.02-.012-.047.008-.067l2.397-2.56c.333.143.73.135 1.067-.064.338-.194.544-.528.588-.889v.004c.063-.54.373-1.044.88-1.337l.97-.56-4.327-2.496.477-.826 4.802 2.774.833-.484v-.964l-4.802-2.77.476-.826 4.326 2.496V7.79c0-.583.282-1.103.719-1.429h-.004c.29-.214.476-.56.476-.952 0-.393-.19-.738-.48-.957l1.02-3.353c.008-.028.031-.044.051-.044zm.004 5.902a.833.833 0 00-.833.833v1.67L12 9.94l.833-.48V7.789a.833.833 0 00-.833-.833zm0 4.084l-.833.48v.964l.833.476.833-.48v-.96zm-2.62 1.516l-1.444.833a.833.833 0 00-.306 1.14.822.822 0 00.723.412.83.83 0 00.416-.111l1.445-.834v-.96zm5.243 0l-.833.48V14l1.445.834a.834.834 0 00.833-1.445z" }) + ] + } + ); +}); + +export { SiYamahamotorcorporation as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.cjs new file mode 100644 index 000000000..6d2c65a6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CB171E"; +const SiYaml = React__namespace.forwardRef(function SiYaml2({ title = "YAML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m0 .97 4.111 6.453v4.09h2.638v-4.09L11.053.969H8.214L5.58 5.125 2.965.969Zm12.093.024-4.47 10.544h2.114l.97-2.345h4.775l.804 2.345h2.26L14.255.994Zm1.133 2.225 1.463 3.87h-3.096zm3.06 9.475v10.29H24v-2.199h-5.454v-8.091zm-12.175.002v10.335h2.217v-7.129l2.32 4.792h1.746l2.4-4.96v7.295h2.127V12.696h-2.904L9.44 17.37l-2.455-4.674Z" }) + ] + } + ); +}); + +exports.default = SiYaml; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.d.ts new file mode 100644 index 000000000..3b5fc62da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CB171E"; +declare const SiYaml: IconType; +export { SiYaml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.mjs new file mode 100644 index 000000000..e4d2bce30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYaml.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CB171E"; +const SiYaml = React.forwardRef(function SiYaml2({ title = "YAML", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m0 .97 4.111 6.453v4.09h2.638v-4.09L11.053.969H8.214L5.58 5.125 2.965.969Zm12.093.024-4.47 10.544h2.114l.97-2.345h4.775l.804 2.345h2.26L14.255.994Zm1.133 2.225 1.463 3.87h-3.096zm3.06 9.475v10.29H24v-2.199h-5.454v-8.091zm-12.175.002v10.335h2.217v-7.129l2.32 4.792h1.746l2.4-4.96v7.295h2.127V12.696h-2.904L9.44 17.37l-2.455-4.674Z" }) + ] + } + ); +}); + +export { SiYaml as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.cjs new file mode 100644 index 000000000..098cafa87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5282FF"; +const SiYandexcloud = React__namespace.forwardRef(function SiYandexcloud2({ title = "Yandex Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.38 0 0 5.38 0 12s5.38 12 12 12 12-5.38 12-12S18.62 0 12 0zM7.163 20.618C4.152 18.927 2.12 15.702 2.12 12c0-5.46 4.42-9.88 9.88-9.88 1.429 0 2.496.536 3.029 1.187.534.65.684 1.715.5 3.253l-3.207.631c-2.905.532-4.506 2.148-5.06 5.065-.07.406-.15.812-.226 1.196-.031.157-.062.312-.09.46-.073.396-.143.773-.208 1.124-.093.505-.177.957-.247 1.34-.324 1.884-.06 3.276.672 4.242zm7.986-11.851c-.087.434-.167.867-.247 1.302-.081.434-.16.868-.247 1.301-.396 2.05-1.364 2.996-3.42 3.391l-2.391.474c.059-.296.119-.611.178-.927.022-.12.044-.241.067-.362.078-.421.157-.855.25-1.313.395-2.05 1.344-2.996 3.399-3.391l2.411-.475zM12 21.88c-1.429 0-2.496-.536-3.029-1.187s-.684-1.715-.5-3.253l3.18-.631c2.905-.532 4.507-2.148 5.08-5.046.069-.406.149-.812.226-1.196.031-.157.062-.311.09-.46.087-.471.171-.917.247-1.327.081-.432.154-.822.215-1.156.325-1.884.061-3.275-.671-4.242C19.848 5.073 21.88 8.298 21.88 12c0 5.46-4.42 9.88-9.88 9.88z" }) + ] + } + ); +}); + +exports.default = SiYandexcloud; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.d.ts new file mode 100644 index 000000000..b2f03a5cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5282FF"; +declare const SiYandexcloud: IconType; +export { SiYandexcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.mjs new file mode 100644 index 000000000..9346e520f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYandexcloud.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5282FF"; +const SiYandexcloud = React.forwardRef(function SiYandexcloud2({ title = "Yandex Cloud", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.38 0 0 5.38 0 12s5.38 12 12 12 12-5.38 12-12S18.62 0 12 0zM7.163 20.618C4.152 18.927 2.12 15.702 2.12 12c0-5.46 4.42-9.88 9.88-9.88 1.429 0 2.496.536 3.029 1.187.534.65.684 1.715.5 3.253l-3.207.631c-2.905.532-4.506 2.148-5.06 5.065-.07.406-.15.812-.226 1.196-.031.157-.062.312-.09.46-.073.396-.143.773-.208 1.124-.093.505-.177.957-.247 1.34-.324 1.884-.06 3.276.672 4.242zm7.986-11.851c-.087.434-.167.867-.247 1.302-.081.434-.16.868-.247 1.301-.396 2.05-1.364 2.996-3.42 3.391l-2.391.474c.059-.296.119-.611.178-.927.022-.12.044-.241.067-.362.078-.421.157-.855.25-1.313.395-2.05 1.344-2.996 3.399-3.391l2.411-.475zM12 21.88c-1.429 0-2.496-.536-3.029-1.187s-.684-1.715-.5-3.253l3.18-.631c2.905-.532 4.507-2.148 5.08-5.046.069-.406.149-.812.226-1.196.031-.157.062-.311.09-.46.087-.471.171-.917.247-1.327.081-.432.154-.822.215-1.156.325-1.884.061-3.275-.671-4.242C19.848 5.073 21.88 8.298 21.88 12c0 5.46-4.42 9.88-9.88 9.88z" }) + ] + } + ); +}); + +export { SiYandexcloud as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.cjs new file mode 100644 index 000000000..ab4d9dcd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2C8EBB"; +const SiYarn = React__namespace.forwardRef(function SiYarn2({ title = "Yarn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0zm.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a5.51 5.51 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.686 1.686 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.078 1.078 0 0 1-.58-1.153 1.243 1.243 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.522 5.522 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.418 3.418 0 0 1 2.298-1.103c.037-.093.079-.185.125-.283.31-.658.639-1.029 1.024-1.168a.94.94 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.271.271 0 0 0-.157-.046z" }) + ] + } + ); +}); + +exports.default = SiYarn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.d.ts new file mode 100644 index 000000000..ead6071fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2C8EBB"; +declare const SiYarn: IconType; +export { SiYarn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.mjs new file mode 100644 index 000000000..f76dd6ac7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYarn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2C8EBB"; +const SiYarn = React.forwardRef(function SiYarn2({ title = "Yarn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0zm.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a5.51 5.51 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.686 1.686 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.078 1.078 0 0 1-.58-1.153 1.243 1.243 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.522 5.522 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.418 3.418 0 0 1 2.298-1.103c.037-.093.079-.185.125-.283.31-.658.639-1.029 1.024-1.168a.94.94 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.271.271 0 0 0-.157-.046z" }) + ] + } + ); +}); + +export { SiYarn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.cjs new file mode 100644 index 000000000..a7e013ede --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F0652F"; +const SiYcombinator = React__namespace.forwardRef(function SiYcombinator2({ title = "Y Combinator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 24V0h24v24H0zM6.951 5.896l4.112 7.708v5.064h1.583v-4.972l4.148-7.799h-1.749l-2.457 4.875c-.372.745-.688 1.434-.688 1.434s-.297-.708-.651-1.434L8.831 5.896h-1.88z" }) + ] + } + ); +}); + +exports.default = SiYcombinator; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.d.ts new file mode 100644 index 000000000..e013aaa9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F0652F"; +declare const SiYcombinator: IconType; +export { SiYcombinator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.mjs new file mode 100644 index 000000000..c61364562 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYcombinator.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F0652F"; +const SiYcombinator = React.forwardRef(function SiYcombinator2({ title = "Y Combinator", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 24V0h24v24H0zM6.951 5.896l4.112 7.708v5.064h1.583v-4.972l4.148-7.799h-1.749l-2.457 4.875c-.372.745-.688 1.434-.688 1.434s-.297-.708-.651-1.434L8.831 5.896h-1.88z" }) + ] + } + ); +}); + +export { SiYcombinator as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.cjs new file mode 100644 index 000000000..a6d9d2096 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF1A1A"; +const SiYelp = React__namespace.forwardRef(function SiYelp2({ title = "Yelp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7.6885 15.1415-3.6715.8483c-.3769.0871-.755.183-1.1452.155-.2611-.0188-.5122-.0414-.7606-.213a1.179 1.179 0 0 1-.331-.3594c-.3486-.5519-.3656-1.3661-.3697-2.0004a6.2874 6.2874 0 0 1 .3314-2.0642 1.857 1.857 0 0 1 .1073-.2474 2.3426 2.3426 0 0 1 .1255-.2165 2.4572 2.4572 0 0 1 .1563-.1975 1.1736 1.1736 0 0 1 .399-.2831 1.082 1.082 0 0 1 .4592-.0837c.2355.0016.5139.052.91.1734.0555.0191.1237.0382.1856.0572.3277.1013.7048.2404 1.1499.3987.6863.2404 1.3663.487 2.0463.7397l1.2117.4423c.2217.0807.4363.18.6412.297.174.0984.3273.2298.4512.387a1.217 1.217 0 0 1 .192.4309 1.2205 1.2205 0 0 1-.872 1.4522c-.0468.0151-.0852.0239-.1085.0293l-1.105.2553-.0031-.001zM18.8208 7.565a1.8506 1.8506 0 0 0-.2042-.1754 2.4082 2.4082 0 0 0-.2077-.1394 2.3607 2.3607 0 0 0-.2269-.109 1.1705 1.1705 0 0 0-.482-.0796 1.0862 1.0862 0 0 0-.4498.1263c-.2107.1048-.4388.2732-.742.5551-.042.0417-.0947.0886-.142.133-.2502.2351-.5286.5252-.8599.863a114.6363 114.6363 0 0 0-1.5166 1.5629l-.8962.9293a4.1897 4.1897 0 0 0-.4466.5483 1.541 1.541 0 0 0-.2364.5459 1.2199 1.2199 0 0 0 .0107.4518l.0046.02a1.218 1.218 0 0 0 1.4184.923 1.162 1.162 0 0 0 .1105-.0213l4.7781-1.104c.3766-.087.7587-.1667 1.097-.3631.2269-.1316.4428-.262.5909-.5252a1.1793 1.1793 0 0 0 .1405-.4683c.0733-.6512-.2668-1.3908-.5403-1.963a6.2792 6.2792 0 0 0-1.2001-1.7103zM8.9703.0754a8.6724 8.6724 0 0 0-.83.1564c-.2754.066-.548.1383-.8146.2236-.868.2844-2.0884.8063-2.295 1.8065-.1165.5655.1595 1.1439.3737 1.66.2595.6254.614 1.1889.9373 1.7777.8543 1.5545 1.7245 3.0993 2.5922 4.6457.259.4617.5416 1.0464 1.043 1.2856a1.058 1.058 0 0 0 .1013.0383c.2248.0851.4699.1016.7041.0471a4.3015 4.3015 0 0 0 .0418-.0097 1.2136 1.2136 0 0 0 .5658-.3397 1.1033 1.1033 0 0 0 .079-.0822c.3463-.435.3454-1.0833.3764-1.6134.1042-1.771.2139-3.5423.3009-5.3142.0332-.6712.1055-1.3333.0655-2.0096-.0328-.5579-.0368-1.1984-.3891-1.6563-.6218-.8073-1.9476-.741-2.8523-.6158zm2.084 15.9505a1.1053 1.1053 0 0 0-1.2306-.4145 1.1398 1.1398 0 0 0-.1526.0633 1.4806 1.4806 0 0 0-.2171.1354c-.1992.1475-.3668.3392-.5196.5315-.0386.049-.074.1143-.12.1562l-.7686 1.0573a113.9168 113.9168 0 0 0-1.2913 1.789c-.278.3895-.5184.7184-.7083 1.0094-.036.0547-.0734.116-.1075.1647-.2277.3522-.3566.6092-.4228.8381a1.0945 1.0945 0 0 0-.046.4721c.0211.1655.0768.3246.1635.467.046.0715.0957.1406.1487.207a2.334 2.334 0 0 0 .1754.1825 1.843 1.843 0 0 0 .2108.1732c.5304.369 1.1112.6342 1.722.8391a6.0958 6.0958 0 0 0 1.5716.3004c.091.0046.1821.0025.2728-.006a2.3878 2.3878 0 0 0 .2506-.0351 2.3862 2.3862 0 0 0 .2447-.071 1.1927 1.1927 0 0 0 .4175-.2658c.1127-.113.1994-.249.2541-.3989.0889-.2214.1473-.5026.1857-.92.0034-.0593.0118-.1305.0177-.1958.0304-.3463.0443-.7531.0666-1.2315.0375-.7357.067-1.4681.0903-2.2026 0 0 .0495-1.3053.0494-1.306.0113-.3008.002-.6342-.0814-.9336a1.396 1.396 0 0 0-.1756-.4054zm8.6754 2.0439c-.1605-.176-.3878-.3514-.7462-.5682-.0518-.0288-.1124-.0674-.1684-.1009-.2985-.1795-.658-.3684-1.078-.5965a120.7615 120.7615 0 0 0-1.9427-1.042l-1.1515-.6107c-.0597-.0175-.1203-.0607-.1766-.0878-.2212-.1058-.4558-.2045-.6992-.2498a1.4915 1.4915 0 0 0-.2545-.0265 1.1527 1.1527 0 0 0-.1648.01 1.1077 1.1077 0 0 0-.9227.9133 1.4186 1.4186 0 0 0 .0159.439c.0563.3065.1932.6096.3346.875l.615 1.1526c.3422.65.6884 1.2963 1.0435 1.9406.229.4202.4196.7799.5982 1.078.0338.056.0721.1163.1011.1682.2173.3584.392.584.569.7458.1146.1107.252.195.4026.247.1583.0525.326.071.4919.0546a2.368 2.368 0 0 0 .251-.0435c.0817-.022.1622-.048.241-.0784a1.863 1.863 0 0 0 .2475-.1143 6.1018 6.1018 0 0 0 1.2818-.9597c.4596-.4522.8659-.9454 1.182-1.51.044-.08.0819-.163.1138-.2483a2.49 2.49 0 0 0 .0773-.2411c.0186-.083.033-.1669.0429-.2513a1.188 1.188 0 0 0-.0565-.491 1.0933 1.0933 0 0 0-.248-.4041zm2.86 3.742a.8523.8523 0 0 1-.111.4236c-.074.132-.178.2377-.3115.3172a.8428.8428 0 0 1-.4385.119.847.847 0 0 1-.4373-.1179.8526.8526 0 0 1-.3125-.3171.8548.8548 0 0 1-.111-.4248c0-.1526.038-.2958.1143-.4294a.8405.8405 0 0 1 .315-.3159.849.849 0 0 1 .4315-.1156.8514.8514 0 0 1 .4294.1144.84.84 0 0 1 .316.3148.8494.8494 0 0 1 .1156.4317zm-.1202 0c0-.1328-.0332-.256-.0996-.3698s-.1564-.2038-.2702-.2702a.7125.7125 0 0 0-.371-.1007.7204.7204 0 0 0-.3698.0996.7487.7487 0 0 0-.2713.2702.7181.7181 0 0 0-.0996.3709c0 .132.0332.2557.0996.371a.7355.7355 0 0 0 .2713.2713.7354.7354 0 0 0 .3698.0985.7205.7205 0 0 0 .3698-.0996.7423.7423 0 0 0 .2702-.2691.7186.7186 0 0 0 .1008-.3721zm-.577.0584.2724.4522h-.1922l-.237-.4052h-.1546v.4052h-.1695v-1.02h.2988c.1268 0 .2195.0247.2783.0744.0595.0496.0892.1252.0892.2267a.2785.2785 0 0 1-.0492.1625c-.032.0466-.0775.0813-.1362.1042zm-.0412-.1408a.1532.1532 0 0 0 .056-.1214c0-.0573-.0164-.0981-.0491-.1225-.0329-.0251-.0847-.0377-.1557-.0377h-.1214v.3285h.1237c.061 0 .1098-.0157.1465-.047z" }) + ] + } + ); +}); + +exports.default = SiYelp; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.d.ts new file mode 100644 index 000000000..920bfb783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF1A1A"; +declare const SiYelp: IconType; +export { SiYelp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.mjs new file mode 100644 index 000000000..22dac6221 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYelp.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF1A1A"; +const SiYelp = React.forwardRef(function SiYelp2({ title = "Yelp", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m7.6885 15.1415-3.6715.8483c-.3769.0871-.755.183-1.1452.155-.2611-.0188-.5122-.0414-.7606-.213a1.179 1.179 0 0 1-.331-.3594c-.3486-.5519-.3656-1.3661-.3697-2.0004a6.2874 6.2874 0 0 1 .3314-2.0642 1.857 1.857 0 0 1 .1073-.2474 2.3426 2.3426 0 0 1 .1255-.2165 2.4572 2.4572 0 0 1 .1563-.1975 1.1736 1.1736 0 0 1 .399-.2831 1.082 1.082 0 0 1 .4592-.0837c.2355.0016.5139.052.91.1734.0555.0191.1237.0382.1856.0572.3277.1013.7048.2404 1.1499.3987.6863.2404 1.3663.487 2.0463.7397l1.2117.4423c.2217.0807.4363.18.6412.297.174.0984.3273.2298.4512.387a1.217 1.217 0 0 1 .192.4309 1.2205 1.2205 0 0 1-.872 1.4522c-.0468.0151-.0852.0239-.1085.0293l-1.105.2553-.0031-.001zM18.8208 7.565a1.8506 1.8506 0 0 0-.2042-.1754 2.4082 2.4082 0 0 0-.2077-.1394 2.3607 2.3607 0 0 0-.2269-.109 1.1705 1.1705 0 0 0-.482-.0796 1.0862 1.0862 0 0 0-.4498.1263c-.2107.1048-.4388.2732-.742.5551-.042.0417-.0947.0886-.142.133-.2502.2351-.5286.5252-.8599.863a114.6363 114.6363 0 0 0-1.5166 1.5629l-.8962.9293a4.1897 4.1897 0 0 0-.4466.5483 1.541 1.541 0 0 0-.2364.5459 1.2199 1.2199 0 0 0 .0107.4518l.0046.02a1.218 1.218 0 0 0 1.4184.923 1.162 1.162 0 0 0 .1105-.0213l4.7781-1.104c.3766-.087.7587-.1667 1.097-.3631.2269-.1316.4428-.262.5909-.5252a1.1793 1.1793 0 0 0 .1405-.4683c.0733-.6512-.2668-1.3908-.5403-1.963a6.2792 6.2792 0 0 0-1.2001-1.7103zM8.9703.0754a8.6724 8.6724 0 0 0-.83.1564c-.2754.066-.548.1383-.8146.2236-.868.2844-2.0884.8063-2.295 1.8065-.1165.5655.1595 1.1439.3737 1.66.2595.6254.614 1.1889.9373 1.7777.8543 1.5545 1.7245 3.0993 2.5922 4.6457.259.4617.5416 1.0464 1.043 1.2856a1.058 1.058 0 0 0 .1013.0383c.2248.0851.4699.1016.7041.0471a4.3015 4.3015 0 0 0 .0418-.0097 1.2136 1.2136 0 0 0 .5658-.3397 1.1033 1.1033 0 0 0 .079-.0822c.3463-.435.3454-1.0833.3764-1.6134.1042-1.771.2139-3.5423.3009-5.3142.0332-.6712.1055-1.3333.0655-2.0096-.0328-.5579-.0368-1.1984-.3891-1.6563-.6218-.8073-1.9476-.741-2.8523-.6158zm2.084 15.9505a1.1053 1.1053 0 0 0-1.2306-.4145 1.1398 1.1398 0 0 0-.1526.0633 1.4806 1.4806 0 0 0-.2171.1354c-.1992.1475-.3668.3392-.5196.5315-.0386.049-.074.1143-.12.1562l-.7686 1.0573a113.9168 113.9168 0 0 0-1.2913 1.789c-.278.3895-.5184.7184-.7083 1.0094-.036.0547-.0734.116-.1075.1647-.2277.3522-.3566.6092-.4228.8381a1.0945 1.0945 0 0 0-.046.4721c.0211.1655.0768.3246.1635.467.046.0715.0957.1406.1487.207a2.334 2.334 0 0 0 .1754.1825 1.843 1.843 0 0 0 .2108.1732c.5304.369 1.1112.6342 1.722.8391a6.0958 6.0958 0 0 0 1.5716.3004c.091.0046.1821.0025.2728-.006a2.3878 2.3878 0 0 0 .2506-.0351 2.3862 2.3862 0 0 0 .2447-.071 1.1927 1.1927 0 0 0 .4175-.2658c.1127-.113.1994-.249.2541-.3989.0889-.2214.1473-.5026.1857-.92.0034-.0593.0118-.1305.0177-.1958.0304-.3463.0443-.7531.0666-1.2315.0375-.7357.067-1.4681.0903-2.2026 0 0 .0495-1.3053.0494-1.306.0113-.3008.002-.6342-.0814-.9336a1.396 1.396 0 0 0-.1756-.4054zm8.6754 2.0439c-.1605-.176-.3878-.3514-.7462-.5682-.0518-.0288-.1124-.0674-.1684-.1009-.2985-.1795-.658-.3684-1.078-.5965a120.7615 120.7615 0 0 0-1.9427-1.042l-1.1515-.6107c-.0597-.0175-.1203-.0607-.1766-.0878-.2212-.1058-.4558-.2045-.6992-.2498a1.4915 1.4915 0 0 0-.2545-.0265 1.1527 1.1527 0 0 0-.1648.01 1.1077 1.1077 0 0 0-.9227.9133 1.4186 1.4186 0 0 0 .0159.439c.0563.3065.1932.6096.3346.875l.615 1.1526c.3422.65.6884 1.2963 1.0435 1.9406.229.4202.4196.7799.5982 1.078.0338.056.0721.1163.1011.1682.2173.3584.392.584.569.7458.1146.1107.252.195.4026.247.1583.0525.326.071.4919.0546a2.368 2.368 0 0 0 .251-.0435c.0817-.022.1622-.048.241-.0784a1.863 1.863 0 0 0 .2475-.1143 6.1018 6.1018 0 0 0 1.2818-.9597c.4596-.4522.8659-.9454 1.182-1.51.044-.08.0819-.163.1138-.2483a2.49 2.49 0 0 0 .0773-.2411c.0186-.083.033-.1669.0429-.2513a1.188 1.188 0 0 0-.0565-.491 1.0933 1.0933 0 0 0-.248-.4041zm2.86 3.742a.8523.8523 0 0 1-.111.4236c-.074.132-.178.2377-.3115.3172a.8428.8428 0 0 1-.4385.119.847.847 0 0 1-.4373-.1179.8526.8526 0 0 1-.3125-.3171.8548.8548 0 0 1-.111-.4248c0-.1526.038-.2958.1143-.4294a.8405.8405 0 0 1 .315-.3159.849.849 0 0 1 .4315-.1156.8514.8514 0 0 1 .4294.1144.84.84 0 0 1 .316.3148.8494.8494 0 0 1 .1156.4317zm-.1202 0c0-.1328-.0332-.256-.0996-.3698s-.1564-.2038-.2702-.2702a.7125.7125 0 0 0-.371-.1007.7204.7204 0 0 0-.3698.0996.7487.7487 0 0 0-.2713.2702.7181.7181 0 0 0-.0996.3709c0 .132.0332.2557.0996.371a.7355.7355 0 0 0 .2713.2713.7354.7354 0 0 0 .3698.0985.7205.7205 0 0 0 .3698-.0996.7423.7423 0 0 0 .2702-.2691.7186.7186 0 0 0 .1008-.3721zm-.577.0584.2724.4522h-.1922l-.237-.4052h-.1546v.4052h-.1695v-1.02h.2988c.1268 0 .2195.0247.2783.0744.0595.0496.0892.1252.0892.2267a.2785.2785 0 0 1-.0492.1625c-.032.0466-.0775.0813-.1362.1042zm-.0412-.1408a.1532.1532 0 0 0 .056-.1214c0-.0573-.0164-.0981-.0491-.1225-.0329-.0251-.0847-.0377-.1557-.0377h-.1214v.3285h.1237c.061 0 .1098-.0157.1465-.047z" }) + ] + } + ); +}); + +export { SiYelp as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.cjs new file mode 100644 index 000000000..8cc5951ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00263C"; +const SiYeti = React__namespace.forwardRef(function SiYeti2({ title = "Yeti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.575 8.582v1.685h2.183v5.15h2.14v-5.15h2.183V8.583h-6.505ZM0 8.582l2.699 3.972v2.864h2.144v-2.864l2.693-3.971H5.172l-1.398 2.305-1.397-2.305zm8.022 0v6.836h5.84v-1.663h-3.694v-.974H13.3v-1.54h-3.132v-.974h3.589V8.583Zm13.832 0 .001 6.836H24V8.583Z" }) + ] + } + ); +}); + +exports.default = SiYeti; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.d.ts new file mode 100644 index 000000000..8714630ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00263C"; +declare const SiYeti: IconType; +export { SiYeti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.mjs new file mode 100644 index 000000000..b5e3c1b1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYeti.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00263C"; +const SiYeti = React.forwardRef(function SiYeti2({ title = "Yeti", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.575 8.582v1.685h2.183v5.15h2.14v-5.15h2.183V8.583h-6.505ZM0 8.582l2.699 3.972v2.864h2.144v-2.864l2.693-3.971H5.172l-1.398 2.305-1.397-2.305zm8.022 0v6.836h5.84v-1.663h-3.694v-.974H13.3v-1.54h-3.132v-.974h3.589V8.583Zm13.832 0 .001 6.836H24V8.583Z" }) + ] + } + ); +}); + +export { SiYeti as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYii.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYii.cjs new file mode 100644 index 000000000..8aede5f94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYii.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#40B3D8"; +const SiYii = React__namespace.forwardRef(function SiYii2({ title = "Yii", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.8797 0c-.8433.5448-1.8054 1.509-2.3626 2.3403-1.1685 1.7424-1.4392 2.9943-.8005 4.8628.2165.6336.5761 1.2934.8362 1.873 1.0218 2.2778 2.0625 4.3279 1.8107 7.285 2.1603-2.7611 3.0147-3.8864 3.9253-6.57C22.54 6.1032 21.282 2.1322 17.8798 0M5.6417 4.6556c-1.1433.01-2.2877.2206-3.3819.6593-.2107 2.6576 1.0216 7.2303 5.5165 8.5057 1.8172.559 3.2721.4139 5.0555.8988v.0002c-.5755 1.016-1.4105 1.988-1.9082 2.9732-.4934.9764-.585 1.9434-.5391 3.0428.0462 1.1054.3017 2.1896.547 3.2644.9242-.1994 1.7287-.5405 2.4247-.9767 1.8315-1.1483 2.9383-2.9849 3.2528-4.9635 0 0 .0085-.0674.0153-.1245 0 .0057.0005.0114.0003.0171l.0054-.0617c.0003-.0049.0007-.004.001-.009.0055-.0583.0089-.1053.0137-.1605.0108-.123.0218-.2471.03-.3564.0023-.0285.0035-.0521.0055-.0797.0085-.1166.0171-.2335.023-.3358l.0014-.0338.0003-.003c.0006-.0115.0006-.0204.0013-.0318a15 15 0 0 0 .0147-.34c.003-.1062.005-.2063.0052-.2979l-.0002-.0115v-.0058a9 9 0 0 0-.0139-.5081c-.0088-.158-.0207-.3053-.0325-.4612-.081-1.0689-.2939-1.9498-.5285-2.6617a12 12 0 0 0-.1782-.5023v-.0002c-.179-.4714-.3545-.8502-.4805-1.1447a7.4 7.4 0 0 0-.2747-.5688 10 10 0 0 0-.1423-.2573c-.233-.407-.4347-.6938-.435-.6931l-.1231-.1832c-2.0257-2.8436-5.4458-4.6194-8.8755-4.5893" }) + ] + } + ); +}); + +exports.default = SiYii; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYii.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYii.d.ts new file mode 100644 index 000000000..73a8112b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYii.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#40B3D8"; +declare const SiYii: IconType; +export { SiYii as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYii.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYii.mjs new file mode 100644 index 000000000..fe4cfeaf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYii.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#40B3D8"; +const SiYii = React.forwardRef(function SiYii2({ title = "Yii", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M17.8797 0c-.8433.5448-1.8054 1.509-2.3626 2.3403-1.1685 1.7424-1.4392 2.9943-.8005 4.8628.2165.6336.5761 1.2934.8362 1.873 1.0218 2.2778 2.0625 4.3279 1.8107 7.285 2.1603-2.7611 3.0147-3.8864 3.9253-6.57C22.54 6.1032 21.282 2.1322 17.8798 0M5.6417 4.6556c-1.1433.01-2.2877.2206-3.3819.6593-.2107 2.6576 1.0216 7.2303 5.5165 8.5057 1.8172.559 3.2721.4139 5.0555.8988v.0002c-.5755 1.016-1.4105 1.988-1.9082 2.9732-.4934.9764-.585 1.9434-.5391 3.0428.0462 1.1054.3017 2.1896.547 3.2644.9242-.1994 1.7287-.5405 2.4247-.9767 1.8315-1.1483 2.9383-2.9849 3.2528-4.9635 0 0 .0085-.0674.0153-.1245 0 .0057.0005.0114.0003.0171l.0054-.0617c.0003-.0049.0007-.004.001-.009.0055-.0583.0089-.1053.0137-.1605.0108-.123.0218-.2471.03-.3564.0023-.0285.0035-.0521.0055-.0797.0085-.1166.0171-.2335.023-.3358l.0014-.0338.0003-.003c.0006-.0115.0006-.0204.0013-.0318a15 15 0 0 0 .0147-.34c.003-.1062.005-.2063.0052-.2979l-.0002-.0115v-.0058a9 9 0 0 0-.0139-.5081c-.0088-.158-.0207-.3053-.0325-.4612-.081-1.0689-.2939-1.9498-.5285-2.6617a12 12 0 0 0-.1782-.5023v-.0002c-.179-.4714-.3545-.8502-.4805-1.1447a7.4 7.4 0 0 0-.2747-.5688 10 10 0 0 0-.1423-.2573c-.233-.407-.4347-.6938-.435-.6931l-.1231-.1832c-2.0257-2.8436-5.4458-4.6194-8.8755-4.5893" }) + ] + } + ); +}); + +export { SiYii as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.cjs new file mode 100644 index 000000000..affc971c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#A61E69"; +const SiYoast = React__namespace.forwardRef(function SiYoast2({ title = "Yoast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.61 0 11.4 14.477 8.806 6.36H5.941l3.804 9.77a4.017 4.017 0 0 1 0 2.925c-.387.993-1.073 2.158-2.96 2.505V24c1.512-.06 2.692-.562 3.694-1.57 1.032-1.036 1.919-2.655 2.79-5.091L19.739 0ZM5.357 3.274a3.706 3.706 0 0 0-3.695 3.695v10.358a3.706 3.706 0 0 0 3.695 3.694h.817l.26-.034c1.76-.237 2.37-1.224 2.733-2.158a3.4 3.4 0 0 0 0-2.475L5.035 5.738H9.26l2.174 6.81 3.339-9.274Zm13.792.08L13.853 17.55c-.502 1.403-1.015 2.54-1.559 3.47h10.044V6.97a3.706 3.706 0 0 0-3.19-3.616Z" }) + ] + } + ); +}); + +exports.default = SiYoast; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.d.ts new file mode 100644 index 000000000..a693e6cfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#A61E69"; +declare const SiYoast: IconType; +export { SiYoast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.mjs new file mode 100644 index 000000000..1e0367a5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoast.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#A61E69"; +const SiYoast = React.forwardRef(function SiYoast2({ title = "Yoast", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M16.61 0 11.4 14.477 8.806 6.36H5.941l3.804 9.77a4.017 4.017 0 0 1 0 2.925c-.387.993-1.073 2.158-2.96 2.505V24c1.512-.06 2.692-.562 3.694-1.57 1.032-1.036 1.919-2.655 2.79-5.091L19.739 0ZM5.357 3.274a3.706 3.706 0 0 0-3.695 3.695v10.358a3.706 3.706 0 0 0 3.695 3.694h.817l.26-.034c1.76-.237 2.37-1.224 2.733-2.158a3.4 3.4 0 0 0 0-2.475L5.035 5.738H9.26l2.174 6.81 3.339-9.274Zm13.792.08L13.853 17.55c-.502 1.403-1.015 2.54-1.559 3.47h10.044V6.97a3.706 3.706 0 0 0-3.19-3.616Z" }) + ] + } + ); +}); + +export { SiYoast as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.cjs new file mode 100644 index 000000000..9b25a31f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#111F68"; +const SiYolo = React__namespace.forwardRef(function SiYolo2({ title = "YOLO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.25 0c-3.05 0-5.52 2.477-5.52 5.523 0 3.842-3.125 6.967-6.972 6.967-1.506 0-2.894-.46-4.03-1.26 1.105 1.98 2.765 3.6 4.759 4.67v2.51c0 3.04 2.428 5.56 5.463 5.59 3.07 0 5.58-2.46 5.58-5.52V15.9c3.64-1.96 6.16-5.8 6.23-10.208v-.165C23.76 2.477 21.28 0 18.25 0ZM5.758.0002C2.715.0002.2399 2.477.2399 5.523c0 3.044 2.4751 5.517 5.5181 5.517 3.044 0 5.512-2.473 5.512-5.517 0-3.046-2.468-5.5228-5.512-5.5228Z" }) + ] + } + ); +}); + +exports.default = SiYolo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.d.ts new file mode 100644 index 000000000..a6f894110 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#111F68"; +declare const SiYolo: IconType; +export { SiYolo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.mjs new file mode 100644 index 000000000..c17dde260 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYolo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#111F68"; +const SiYolo = React.forwardRef(function SiYolo2({ title = "YOLO", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.25 0c-3.05 0-5.52 2.477-5.52 5.523 0 3.842-3.125 6.967-6.972 6.967-1.506 0-2.894-.46-4.03-1.26 1.105 1.98 2.765 3.6 4.759 4.67v2.51c0 3.04 2.428 5.56 5.463 5.59 3.07 0 5.58-2.46 5.58-5.52V15.9c3.64-1.96 6.16-5.8 6.23-10.208v-.165C23.76 2.477 21.28 0 18.25 0ZM5.758.0002C2.715.0002.2399 2.477.2399 5.523c0 3.044 2.4751 5.517 5.5181 5.517 3.044 0 5.512-2.473 5.512-5.517 0-3.046-2.468-5.5228-5.512-5.5228Z" }) + ] + } + ); +}); + +export { SiYolo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.cjs new file mode 100644 index 000000000..927ae636a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#546DF9"; +const SiYouhodler = React__namespace.forwardRef(function SiYouhodler2({ title = "YouHodler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.727,15.273L1.091,13.091L1.091,4.364L8.364,0L12,2.182L15.636,0L22.909,4.364L22.909,13.091L19.273,15.273L19.273,19.636L12,24L4.727,19.636L4.727,15.273ZM12,19.636L14.422,18.182L14.422,12.364L19.273,9.455L19.273,6.545L16.85,5.092L12,8L7.15,5.092L4.727,6.545L4.727,9.455L9.578,12.364L9.578,18.182L12,19.636Z" }) + ] + } + ); +}); + +exports.default = SiYouhodler; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.d.ts new file mode 100644 index 000000000..3bc61aec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#546DF9"; +declare const SiYouhodler: IconType; +export { SiYouhodler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.mjs new file mode 100644 index 000000000..e239a4e98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYouhodler.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#546DF9"; +const SiYouhodler = React.forwardRef(function SiYouhodler2({ title = "YouHodler", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.727,15.273L1.091,13.091L1.091,4.364L8.364,0L12,2.182L15.636,0L22.909,4.364L22.909,13.091L19.273,15.273L19.273,19.636L12,24L4.727,19.636L4.727,15.273ZM12,19.636L14.422,18.182L14.422,12.364L19.273,9.455L19.273,6.545L16.85,5.092L12,8L7.15,5.092L4.727,6.545L4.727,9.455L9.578,12.364L9.578,18.182L12,19.636Z" }) + ] + } + ); +}); + +export { SiYouhodler as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.cjs new file mode 100644 index 000000000..e21581100 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutube = React__namespace.forwardRef(function SiYoutube2({ title = "YouTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" }) + ] + } + ); +}); + +exports.default = SiYoutube; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.d.ts new file mode 100644 index 000000000..1494510d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutube: IconType; +export { SiYoutube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.mjs new file mode 100644 index 000000000..616f2e5d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutube.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutube = React.forwardRef(function SiYoutube2({ title = "YouTube", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" }) + ] + } + ); +}); + +export { SiYoutube as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.cjs new file mode 100644 index 000000000..ee46c3cf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutubegaming = React__namespace.forwardRef(function SiYoutubegaming2({ title = "YouTube Gaming", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 13.2v-6l-6-3.6-6 3.6-6-3.6-6 3.6v6l12 7.2zM8.4 10.8H6v2.4H4.8v-2.4H2.4V9.6h2.4V7.2H6v2.4h2.4zm7.2 2.4a1.2 1.2 0 01-1.2-1.2c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2 0 .66-.54 1.2-1.2 1.2zm3.6-2.4A1.2 1.2 0 0118 9.6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2 0 .66-.54 1.2-1.2 1.2Z" }) + ] + } + ); +}); + +exports.default = SiYoutubegaming; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.d.ts new file mode 100644 index 000000000..905e11432 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutubegaming: IconType; +export { SiYoutubegaming as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.mjs new file mode 100644 index 000000000..4d06ac6bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubegaming.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutubegaming = React.forwardRef(function SiYoutubegaming2({ title = "YouTube Gaming", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 13.2v-6l-6-3.6-6 3.6-6-3.6-6 3.6v6l12 7.2zM8.4 10.8H6v2.4H4.8v-2.4H2.4V9.6h2.4V7.2H6v2.4h2.4zm7.2 2.4a1.2 1.2 0 01-1.2-1.2c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2 0 .66-.54 1.2-1.2 1.2zm3.6-2.4A1.2 1.2 0 0118 9.6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2 0 .66-.54 1.2-1.2 1.2Z" }) + ] + } + ); +}); + +export { SiYoutubegaming as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.cjs new file mode 100644 index 000000000..98839b871 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutubekids = React__namespace.forwardRef(function SiYoutubekids2({ title = "YouTube Kids", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.99 13.543-.007-.288c-.015-1.122-.645-6.495-.999-7.457-.41-1.111-.974-1.945-1.675-2.48-1.143-.873-2.115-1.063-3.313-1.087h-.03c-.51 0-3.848.415-6.642.801-2.797.387-6.303.915-7.14 1.227-1.153.432-2.07.997-2.796 1.728C.05 7.332-.113 8.731.054 10.553c.13 1.412.875 6.975 1.302 8.248.574 1.717 1.694 2.75 3.154 2.909.36.039.704.059 1.045.059 1.28 0 2.295-.278 3.47-.598 1.848-.505 4.147-1.13 8.893-1.13h.14c1.162 0 4.008-.263 5.303-2.687.693-1.297.652-2.87.629-3.811zm-7.719-1.67-.105.066c-.274.185-.547.373-.819.563l-4.298 2.975c-.27.21-.748.521-1.016.521a.236.236 0 0 1-.107-.024c-.226-.12-.303-.94-.356-1.34l-.011-.087c-.065-.478-.594-5.035-.654-5.535-.017-.142-.105-.663.055-.781.05-.037.12-.05.2-.05.195 0 .442.083.549.118.845.272 5.083 1.774 6.4 2.448.038.02.079.04.122.057.188.08.446.192.452.51.004.304-.225.446-.412.56z" }) + ] + } + ); +}); + +exports.default = SiYoutubekids; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.d.ts new file mode 100644 index 000000000..ee77d4e8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutubekids: IconType; +export { SiYoutubekids as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.mjs new file mode 100644 index 000000000..c4013e9a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubekids.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutubekids = React.forwardRef(function SiYoutubekids2({ title = "YouTube Kids", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.99 13.543-.007-.288c-.015-1.122-.645-6.495-.999-7.457-.41-1.111-.974-1.945-1.675-2.48-1.143-.873-2.115-1.063-3.313-1.087h-.03c-.51 0-3.848.415-6.642.801-2.797.387-6.303.915-7.14 1.227-1.153.432-2.07.997-2.796 1.728C.05 7.332-.113 8.731.054 10.553c.13 1.412.875 6.975 1.302 8.248.574 1.717 1.694 2.75 3.154 2.909.36.039.704.059 1.045.059 1.28 0 2.295-.278 3.47-.598 1.848-.505 4.147-1.13 8.893-1.13h.14c1.162 0 4.008-.263 5.303-2.687.693-1.297.652-2.87.629-3.811zm-7.719-1.67-.105.066c-.274.185-.547.373-.819.563l-4.298 2.975c-.27.21-.748.521-1.016.521a.236.236 0 0 1-.107-.024c-.226-.12-.303-.94-.356-1.34l-.011-.087c-.065-.478-.594-5.035-.654-5.535-.017-.142-.105-.663.055-.781.05-.037.12-.05.2-.05.195 0 .442.083.549.118.845.272 5.083 1.774 6.4 2.448.038.02.079.04.122.057.188.08.446.192.452.51.004.304-.225.446-.412.56z" }) + ] + } + ); +}); + +export { SiYoutubekids as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.cjs new file mode 100644 index 000000000..350d0c31a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutubemusic = React__namespace.forwardRef(function SiYoutubemusic2({ title = "YouTube Music", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm0 19.104c-3.924 0-7.104-3.18-7.104-7.104S8.076 4.896 12 4.896s7.104 3.18 7.104 7.104-3.18 7.104-7.104 7.104zm0-13.332c-3.432 0-6.228 2.796-6.228 6.228S8.568 18.228 12 18.228s6.228-2.796 6.228-6.228S15.432 5.772 12 5.772zM9.684 15.54V8.46L15.816 12l-6.132 3.54z" }) + ] + } + ); +}); + +exports.default = SiYoutubemusic; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.d.ts new file mode 100644 index 000000000..16b834e7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutubemusic: IconType; +export { SiYoutubemusic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.mjs new file mode 100644 index 000000000..5c716b789 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubemusic.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutubemusic = React.forwardRef(function SiYoutubemusic2({ title = "YouTube Music", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm0 19.104c-3.924 0-7.104-3.18-7.104-7.104S8.076 4.896 12 4.896s7.104 3.18 7.104 7.104-3.18 7.104-7.104 7.104zm0-13.332c-3.432 0-6.228 2.796-6.228 6.228S8.568 18.228 12 18.228s6.228-2.796 6.228-6.228S15.432 5.772 12 5.772zM9.684 15.54V8.46L15.816 12l-6.132 3.54z" }) + ] + } + ); +}); + +export { SiYoutubemusic as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.cjs new file mode 100644 index 000000000..c96f2e72a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutubeshorts = React__namespace.forwardRef(function SiYoutubeshorts2({ title = "YouTube Shorts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.931 9.99-1.441-.601 1.717-.913a4.48 4.48 0 0 0 1.874-6.078 4.506 4.506 0 0 0-6.09-1.874L4.792 5.929a4.504 4.504 0 0 0-2.402 4.193 4.521 4.521 0 0 0 2.666 3.904c.036.012 1.442.6 1.442.6l-1.706.901a4.51 4.51 0 0 0-2.369 3.967A4.528 4.528 0 0 0 6.93 24c.725 0 1.437-.174 2.08-.508l10.21-5.406a4.494 4.494 0 0 0 2.39-4.192 4.525 4.525 0 0 0-2.678-3.904ZM9.597 15.19V8.824l6.007 3.184z" }) + ] + } + ); +}); + +exports.default = SiYoutubeshorts; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.d.ts new file mode 100644 index 000000000..4c7805d0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutubeshorts: IconType; +export { SiYoutubeshorts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.mjs new file mode 100644 index 000000000..5f7c889b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubeshorts.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutubeshorts = React.forwardRef(function SiYoutubeshorts2({ title = "YouTube Shorts", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.931 9.99-1.441-.601 1.717-.913a4.48 4.48 0 0 0 1.874-6.078 4.506 4.506 0 0 0-6.09-1.874L4.792 5.929a4.504 4.504 0 0 0-2.402 4.193 4.521 4.521 0 0 0 2.666 3.904c.036.012 1.442.6 1.442.6l-1.706.901a4.51 4.51 0 0 0-2.369 3.967A4.528 4.528 0 0 0 6.93 24c.725 0 1.437-.174 2.08-.508l10.21-5.406a4.494 4.494 0 0 0 2.39-4.192 4.525 4.525 0 0 0-2.678-3.904ZM9.597 15.19V8.824l6.007 3.184z" }) + ] + } + ); +}); + +export { SiYoutubeshorts as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.cjs new file mode 100644 index 000000000..50b76b5e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutubestudio = React__namespace.forwardRef(function SiYoutubestudio2({ title = "YouTube Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.919 13.176c.048-.384.084-.768.084-1.176s-.036-.792-.084-1.176l2.532-1.98a.605.605 0 0 0 .144-.768l-2.4-4.152a.603.603 0 0 0-.732-.264l-2.988 1.2a8.767 8.767 0 0 0-2.028-1.176l-.456-3.18A.585.585 0 0 0 14.403 0h-4.8c-.3 0-.552.216-.588.504l-.456 3.18A9.22 9.22 0 0 0 6.531 4.86l-2.988-1.2a.585.585 0 0 0-.732.264l-2.4 4.152a.592.592 0 0 0 .144.768l2.532 1.98c-.048.384-.084.78-.084 1.176s.036.792.084 1.176l-2.532 1.98a.605.605 0 0 0-.144.768l2.4 4.152c.144.264.468.36.732.264l2.988-1.2c.624.48 1.296.876 2.028 1.176l.456 3.18a.585.585 0 0 0 .588.504h4.8c.3 0 .552-.216.588-.504l.456-3.18a9.22 9.22 0 0 0 2.028-1.176l2.988 1.2c.276.108.588 0 .732-.264l2.4-4.152a.605.605 0 0 0-.144-.768l-2.532-1.98zM9.603 15.6V8.4l6 3.6-6 3.6z" }) + ] + } + ); +}); + +exports.default = SiYoutubestudio; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.d.ts new file mode 100644 index 000000000..6320cf91a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutubestudio: IconType; +export { SiYoutubestudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.mjs new file mode 100644 index 000000000..e7c8c04ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubestudio.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutubestudio = React.forwardRef(function SiYoutubestudio2({ title = "YouTube Studio", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.919 13.176c.048-.384.084-.768.084-1.176s-.036-.792-.084-1.176l2.532-1.98a.605.605 0 0 0 .144-.768l-2.4-4.152a.603.603 0 0 0-.732-.264l-2.988 1.2a8.767 8.767 0 0 0-2.028-1.176l-.456-3.18A.585.585 0 0 0 14.403 0h-4.8c-.3 0-.552.216-.588.504l-.456 3.18A9.22 9.22 0 0 0 6.531 4.86l-2.988-1.2a.585.585 0 0 0-.732.264l-2.4 4.152a.592.592 0 0 0 .144.768l2.532 1.98c-.048.384-.084.78-.084 1.176s.036.792.084 1.176l-2.532 1.98a.605.605 0 0 0-.144.768l2.4 4.152c.144.264.468.36.732.264l2.988-1.2c.624.48 1.296.876 2.028 1.176l.456 3.18a.585.585 0 0 0 .588.504h4.8c.3 0 .552-.216.588-.504l.456-3.18a9.22 9.22 0 0 0 2.028-1.176l2.988 1.2c.276.108.588 0 .732-.264l2.4-4.152a.605.605 0 0 0-.144-.768l-2.532-1.98zM9.603 15.6V8.4l6 3.6-6 3.6z" }) + ] + } + ); +}); + +export { SiYoutubestudio as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.cjs new file mode 100644 index 000000000..c4df3f972 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF0000"; +const SiYoutubetv = React__namespace.forwardRef(function SiYoutubetv2({ title = "YouTube TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.794 10.609h-.618v3.286h-.607v-3.286h-.617v-.504h1.842v.504zm.135-.504h.649l.202 1.703c.057.488.11.908.172 1.484h.026c.057-.576.114-.986.17-1.484l.208-1.703H24l-.623 3.784h-.82l-.628-3.784zm-15.758.38a.796.796 0 0 0-.555-.561c-.493-.13-2.465-.13-2.465-.13s-1.973 0-2.466.13a.787.787 0 0 0-.555.56C0 10.977 0 12 0 12s0 1.028.13 1.516a.794.794 0 0 0 .56.56c.488.13 2.46.13 2.46.13s1.973 0 2.466-.13a.806.806 0 0 0 .56-.555c.13-.493.13-1.516.13-1.516s-.005-1.028-.135-1.52zm-3.649 2.46v-1.89l1.64.945-1.64.945zm6.629.867a.652.652 0 0 1-.265-.395 2.703 2.703 0 0 1-.078-.706v-.4a2.383 2.383 0 0 1 .093-.716.724.724 0 0 1 .28-.394.943.943 0 0 1 .504-.125c.203 0 .369.042.493.125.13.098.229.233.27.394.062.234.094.472.083.716v.4c.005.239-.02.478-.083.711a.7.7 0 0 1-.27.395c-.124.083-.296.124-.508.124-.218-.005-.395-.046-.52-.13zm.7-.436c.037-.089.052-.24.052-.442v-.856a1.376 1.376 0 0 0-.052-.436.189.189 0 0 0-.181-.14.183.183 0 0 0-.177.14c-.041.14-.057.29-.052.436v.861c0 .203.016.353.052.442.02.083.094.14.182.135a.183.183 0 0 0 .176-.14zm8.88-.66v.14c0 .135.006.265.016.4a.373.373 0 0 0 .068.192.2.2 0 0 0 .156.062.2.2 0 0 0 .192-.109c.036-.072.052-.192.057-.363l.534.036a.56.56 0 0 1 .006.1c0 .253-.068.445-.208.57-.14.125-.337.187-.592.187-.306 0-.519-.099-.643-.29s-.187-.489-.187-.894v-.482c0-.416.062-.717.192-.909.13-.192.348-.285.654-.285.213 0 .379.041.493.12.12.088.207.217.244.363.052.223.078.456.067.685v.472l-1.048.005zm.079-1.162a.367.367 0 0 0-.063.192 5.48 5.48 0 0 0-.015.405v.197h.457v-.197c0-.135-.006-.27-.021-.405a.373.373 0 0 0-.068-.192.174.174 0 0 0-.145-.057.169.169 0 0 0-.145.057zm-11.175 1.11l-.706-2.559h.618l.249 1.158c.062.285.109.53.14.732h.02c.022-.146.068-.384.14-.727l.26-1.163h.618l-.716 2.56v1.23H7.64v-1.23h-.005zm4.905-1.536v2.767h-.488L12 13.557h-.016c-.13.255-.332.384-.596.384-.182 0-.317-.062-.405-.181-.089-.12-.13-.307-.13-.566v-2.066h.623v2.03a.659.659 0 0 0 .041.264.137.137 0 0 0 .135.078.28.28 0 0 0 .156-.052.281.281 0 0 0 .109-.124v-2.196h.623zm3.192 0v2.767h-.488l-.052-.338h-.016c-.13.255-.332.384-.596.384-.182 0-.317-.062-.405-.181-.089-.12-.13-.307-.13-.566v-2.066h.623v2.03a.659.659 0 0 0 .041.264.137.137 0 0 0 .135.078.28.28 0 0 0 .156-.052.281.281 0 0 0 .109-.124v-2.196h.623zm-1.5-.52h-.618v3.287h-.607v-3.286h-.618v-.504h1.843v.504zm3.56.961c-.036-.171-.098-.3-.181-.379a.508.508 0 0 0-.348-.12.56.56 0 0 0-.322.1.635.635 0 0 0-.228.254h-.005V9.965h-.597v3.93h.514l.062-.26h.015a.531.531 0 0 0 .218.223.69.69 0 0 0 .322.083.502.502 0 0 0 .467-.29c.099-.192.15-.499.15-.909v-.436a4.861 4.861 0 0 0-.067-.737zm-.57 1.127c0 .155-.006.316-.026.472a.508.508 0 0 1-.084.244.195.195 0 0 1-.155.072.257.257 0 0 1-.14-.036.3.3 0 0 1-.104-.109v-1.567a.425.425 0 0 1 .109-.187.224.224 0 0 1 .166-.073c.057 0 .114.026.145.073.042.078.068.16.073.249.015.166.02.332.02.498l-.005.364z" }) + ] + } + ); +}); + +exports.default = SiYoutubetv; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.d.ts new file mode 100644 index 000000000..6ea23c891 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF0000"; +declare const SiYoutubetv: IconType; +export { SiYoutubetv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.mjs new file mode 100644 index 000000000..fd11417ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYoutubetv.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF0000"; +const SiYoutubetv = React.forwardRef(function SiYoutubetv2({ title = "YouTube TV", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.794 10.609h-.618v3.286h-.607v-3.286h-.617v-.504h1.842v.504zm.135-.504h.649l.202 1.703c.057.488.11.908.172 1.484h.026c.057-.576.114-.986.17-1.484l.208-1.703H24l-.623 3.784h-.82l-.628-3.784zm-15.758.38a.796.796 0 0 0-.555-.561c-.493-.13-2.465-.13-2.465-.13s-1.973 0-2.466.13a.787.787 0 0 0-.555.56C0 10.977 0 12 0 12s0 1.028.13 1.516a.794.794 0 0 0 .56.56c.488.13 2.46.13 2.46.13s1.973 0 2.466-.13a.806.806 0 0 0 .56-.555c.13-.493.13-1.516.13-1.516s-.005-1.028-.135-1.52zm-3.649 2.46v-1.89l1.64.945-1.64.945zm6.629.867a.652.652 0 0 1-.265-.395 2.703 2.703 0 0 1-.078-.706v-.4a2.383 2.383 0 0 1 .093-.716.724.724 0 0 1 .28-.394.943.943 0 0 1 .504-.125c.203 0 .369.042.493.125.13.098.229.233.27.394.062.234.094.472.083.716v.4c.005.239-.02.478-.083.711a.7.7 0 0 1-.27.395c-.124.083-.296.124-.508.124-.218-.005-.395-.046-.52-.13zm.7-.436c.037-.089.052-.24.052-.442v-.856a1.376 1.376 0 0 0-.052-.436.189.189 0 0 0-.181-.14.183.183 0 0 0-.177.14c-.041.14-.057.29-.052.436v.861c0 .203.016.353.052.442.02.083.094.14.182.135a.183.183 0 0 0 .176-.14zm8.88-.66v.14c0 .135.006.265.016.4a.373.373 0 0 0 .068.192.2.2 0 0 0 .156.062.2.2 0 0 0 .192-.109c.036-.072.052-.192.057-.363l.534.036a.56.56 0 0 1 .006.1c0 .253-.068.445-.208.57-.14.125-.337.187-.592.187-.306 0-.519-.099-.643-.29s-.187-.489-.187-.894v-.482c0-.416.062-.717.192-.909.13-.192.348-.285.654-.285.213 0 .379.041.493.12.12.088.207.217.244.363.052.223.078.456.067.685v.472l-1.048.005zm.079-1.162a.367.367 0 0 0-.063.192 5.48 5.48 0 0 0-.015.405v.197h.457v-.197c0-.135-.006-.27-.021-.405a.373.373 0 0 0-.068-.192.174.174 0 0 0-.145-.057.169.169 0 0 0-.145.057zm-11.175 1.11l-.706-2.559h.618l.249 1.158c.062.285.109.53.14.732h.02c.022-.146.068-.384.14-.727l.26-1.163h.618l-.716 2.56v1.23H7.64v-1.23h-.005zm4.905-1.536v2.767h-.488L12 13.557h-.016c-.13.255-.332.384-.596.384-.182 0-.317-.062-.405-.181-.089-.12-.13-.307-.13-.566v-2.066h.623v2.03a.659.659 0 0 0 .041.264.137.137 0 0 0 .135.078.28.28 0 0 0 .156-.052.281.281 0 0 0 .109-.124v-2.196h.623zm3.192 0v2.767h-.488l-.052-.338h-.016c-.13.255-.332.384-.596.384-.182 0-.317-.062-.405-.181-.089-.12-.13-.307-.13-.566v-2.066h.623v2.03a.659.659 0 0 0 .041.264.137.137 0 0 0 .135.078.28.28 0 0 0 .156-.052.281.281 0 0 0 .109-.124v-2.196h.623zm-1.5-.52h-.618v3.287h-.607v-3.286h-.618v-.504h1.843v.504zm3.56.961c-.036-.171-.098-.3-.181-.379a.508.508 0 0 0-.348-.12.56.56 0 0 0-.322.1.635.635 0 0 0-.228.254h-.005V9.965h-.597v3.93h.514l.062-.26h.015a.531.531 0 0 0 .218.223.69.69 0 0 0 .322.083.502.502 0 0 0 .467-.29c.099-.192.15-.499.15-.909v-.436a4.861 4.861 0 0 0-.067-.737zm-.57 1.127c0 .155-.006.316-.026.472a.508.508 0 0 1-.084.244.195.195 0 0 1-.155.072.257.257 0 0 1-.14-.036.3.3 0 0 1-.104-.109v-1.567a.425.425 0 0 1 .109-.187.224.224 0 0 1 .166-.073c.057 0 .114.026.145.073.042.078.068.16.073.249.015.166.02.332.02.498l-.005.364z" }) + ] + } + ); +}); + +export { SiYoutubetv as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYr.cjs new file mode 100644 index 000000000..8c1ed5571 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00B9F1"; +const SiYr = React__namespace.forwardRef(function SiYr2({ title = "Yr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.412 9.764c.295.257.464.558.474 1.085-.003.567-.184.96-.454 1.234-.275.271-.667.452-1.234.454h-1.885c-.292.001-.573.103-.839.2l-.13.047v-2.479a.982.982 0 0 1 .97-.969h1.708c.605 0 1.09.177 1.39.428zM24 12c0 6.627-5.372 12-12 12-6.627 0-12-5.373-12-12C0 5.372 5.373 0 12 0c6.628 0 12 5.372 12 12zM11.148 7.709H9.231l-.002 3.133c-.036 1.168-1.13 1.546-2.001 1.558-.995-.014-2.044-.566-2.044-2.083V7.709H3.293v2.608c0 1.184.409 2.195 1.184 2.925.701.66 1.662 1.031 2.712 1.049h.078c.705-.013 1.741-.473 1.942-.879v.863c0 1.144-1.455 1.89-1.847 2.086l.028.034a.3059.3059 0 0 0-.01.005l-.018.009 1.218 1.473.18-.101h-.001c.797-.445 2.38-1.33 2.389-3.717V7.709zm7.14 6.621a3.427 3.427 0 0 0 1.514-.876c.664-.661 1.026-1.597 1.022-2.604.01-1.047-.45-1.988-1.176-2.578-.723-.597-1.655-.874-2.625-.875h-1.709c-1.6047.0033-2.9047 1.3033-2.908 2.908v7.176h1.938v-2.036a.982.982 0 0 1 .97-.969h.772l2.085 2.554.146.18c.158.151.365.25.596.27v.001h.042a.283.283 0 0 0 .08 0h1.147l.003-1.567s-.473.132-.826-.246c-.415-.444-1.071-1.338-1.071-1.338z" }) + ] + } + ); +}); + +exports.default = SiYr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYr.d.ts new file mode 100644 index 000000000..9f767e24f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00B9F1"; +declare const SiYr: IconType; +export { SiYr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYr.mjs new file mode 100644 index 000000000..25c0568f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00B9F1"; +const SiYr = React.forwardRef(function SiYr2({ title = "Yr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.412 9.764c.295.257.464.558.474 1.085-.003.567-.184.96-.454 1.234-.275.271-.667.452-1.234.454h-1.885c-.292.001-.573.103-.839.2l-.13.047v-2.479a.982.982 0 0 1 .97-.969h1.708c.605 0 1.09.177 1.39.428zM24 12c0 6.627-5.372 12-12 12-6.627 0-12-5.373-12-12C0 5.372 5.373 0 12 0c6.628 0 12 5.372 12 12zM11.148 7.709H9.231l-.002 3.133c-.036 1.168-1.13 1.546-2.001 1.558-.995-.014-2.044-.566-2.044-2.083V7.709H3.293v2.608c0 1.184.409 2.195 1.184 2.925.701.66 1.662 1.031 2.712 1.049h.078c.705-.013 1.741-.473 1.942-.879v.863c0 1.144-1.455 1.89-1.847 2.086l.028.034a.3059.3059 0 0 0-.01.005l-.018.009 1.218 1.473.18-.101h-.001c.797-.445 2.38-1.33 2.389-3.717V7.709zm7.14 6.621a3.427 3.427 0 0 0 1.514-.876c.664-.661 1.026-1.597 1.022-2.604.01-1.047-.45-1.988-1.176-2.578-.723-.597-1.655-.874-2.625-.875h-1.709c-1.6047.0033-2.9047 1.3033-2.908 2.908v7.176h1.938v-2.036a.982.982 0 0 1 .97-.969h.772l2.085 2.554.146.18c.158.151.365.25.596.27v.001h.042a.283.283 0 0 0 .08 0h1.147l.003-1.567s-.473.132-.826-.246c-.415-.444-1.071-1.338-1.071-1.338z" }) + ] + } + ); +}); + +export { SiYr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.cjs new file mode 100644 index 000000000..481960c2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#84BD00"; +const SiYubico = React__namespace.forwardRef(function SiYubico2({ title = "Yubico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.356 12.388 2.521-7.138h3.64l-6.135 15.093H8.539l1.755-4.136L6 5.25h3.717ZM12 0C5.381 0 0 5.381 0 12s5.381 12 12 12 12-5.381 12-12S18.619 0 12 0Zm0 1.5c5.808 0 10.5 4.692 10.5 10.5S17.808 22.5 12 22.5 1.5 17.808 1.5 12 6.192 1.5 12 1.5Z" }) + ] + } + ); +}); + +exports.default = SiYubico; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.d.ts new file mode 100644 index 000000000..8e436f59f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#84BD00"; +declare const SiYubico: IconType; +export { SiYubico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.mjs new file mode 100644 index 000000000..980106849 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYubico.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#84BD00"; +const SiYubico = React.forwardRef(function SiYubico2({ title = "Yubico", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m12.356 12.388 2.521-7.138h3.64l-6.135 15.093H8.539l1.755-4.136L6 5.25h3.717ZM12 0C5.381 0 0 5.381 0 12s5.381 12 12 12 12-5.381 12-12S18.619 0 12 0Zm0 1.5c5.808 0 10.5 4.692 10.5 10.5S17.808 22.5 12 22.5 1.5 17.808 1.5 12 6.192 1.5 12 1.5Z" }) + ] + } + ); +}); + +export { SiYubico as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.cjs new file mode 100644 index 000000000..1fc1d5673 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiYunohost = React__namespace.forwardRef(function SiYunohost2({ title = "YunoHost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.5117 22.0865c-.2242-.1506-.5262-.4987-.6711-.7734-.2797-.5304-.826-1.1104-1.382-1.4674-.3836-.2463-.5943-.985-.361-1.266.0777-.0938.4072-.242.7322-.3293.325-.0874.6448-.2073.7106-.2665.0659-.0591.1257-.4864.133-.9495.0446-2.8328.067-2.9027.9338-2.9027 1.0283 0 1.724 1.2286 1.3857 2.4472-.24.8642-.1922 1.0501.2691 1.048.7042-.0034.7425-.0844.7742-1.6375.048-2.3435.561-3.0887 1.7394-2.5268.7473.3564.8574 1.3232.3463 3.0421-.1672.5622.1641 2.8917.5112 3.594.1959.3965-.0137.9526-.3787 1.0048-.1656.0237-.4377-.0916-.6627-.281-.21-.1767-.426-.3212-.4801-.3212s-.2541-.2248-.4446-.4996c-.3314-.4783-.71-.6405-.8742-.3746-.0425.0687-.332.1891-.6435.2675-.5448.1372-.5634.1572-.4943.5308.205 1.1082.2073 1.5506.0088 1.749-.2708.2709-.6624.241-1.152-.088m12.6533-1.7342c-.2704-.1568-.7981-.7447-1.032-1.1496-.0835-.1444-.1537-.5332-.1561-.864-.0065-.884.365-1.4412.5573-.8356.1826.5753.8588.833 1.1777.4488.257-.3098-.1734-1.0344-1.2391-2.086-.9585-.9456-1-1.01-1-1.5539 0-.844.2417-1.1948 1.1089-1.6093.7205-.3444.783-.3536 1.2917-.1904.6921.2221 1.5047 1.0045 1.4493 1.3956-.0346.244-.1144.2863-.5402.2863-.2748 0-.5698.0455-.6557.101-.2554.1653-.178.5428.1561.7618.3078.2016.3123.1995.3123-.1499 0-.3438.0325-.3615 1.0928-.596l1.0928-.2418.089-.9828c.15-1.6536.6282-1.9801 1.5719-1.0733.2886.2773.5333.5724.5437.6557a7 7 0 0 1 .0316.3388c.0104.1547.2004.1798 1.0896.1441 1.037-.0416 1.0916-.03 1.4663.3122.2674.2442.3993.4895.4214.7834.027.3618-.0323.4718-.3841.7126-.2289.1565-.9735.4625-1.6548.6798-.978.312-1.2387.4437-1.2387.6256 0 .1267.0639.7923.142 1.479.1607 1.4136.0583 1.8762-.4686 2.1162-.4644.2116-.5869.179-1.0248-.2729-.5125-.5287-.6706-1.0862-.5684-2.0032.0948-.8494.0392-.9135-.7377-.8518l-.5529.044.1812.5197c.1168.335.1572.7637.1136 1.2066-.0572.5805-.1317.742-.4807 1.0421-1.035.8902-1.629 1.1126-2.1554.8072m-5.0871-.1042c-.5996-.1036-1.4703-.7774-1.9948-1.5438-.3743-.5469-.4167-.6964-.408-1.4362.0115-.9621.3114-2.081.6852-2.5562.2967-.3772 1.1997-.83 1.6553-.83.277 0 .9169.2352 1.896.6967.8448.3981.9919.6457 1.1778 1.9826l.1372.9864-.4558.9714c-.2508.5343-.5818 1.0897-.7357 1.2343-.3627.3408-1.3719.5959-1.9572.4948m.3147-2.3618c.449-.1708.6744-.9103.4034-1.3239-.1108-.1691-.2739-.3075-.3624-.3075-.4979 0-1.0237 1.1802-.6997 1.5707.174.2095.249.2164.6587.0607m-7.0488-6.2838c-.2383-.1579-.5613-.555-.7366-.9055-.2843-.5685-.3092-.7458-.2785-1.9842l.0337-1.3598-.7518-.7222c-.4136-.3972-.752-.7446-.752-.772 0-.0276-.1123-.576-.2497-1.219-.1375-.6427-.25-1.4663-.25-1.8302 0-.57.0437-.6903.3162-.8688.494-.3236 1.0344-.1065 1.5151.6086.3193.475.4119.7671.4827 1.5232.0924.986.2566 1.265.6677 1.1345.246-.078.9582-.817 1.2117-1.2572.1284-.223.1595-.2186.7082.103.4144.2429.6143.4587.7192.7764.1297.3931.1114.4978-.1727.9825-.1749.2984-.5308.7294-.791.9579s-.4797.5312-.4877.6728c-.0597 1.0595-.323 4.1595-.364 4.2853-.0753.2315-.3445.1905-.8207-.1251m4.5654-.8935c-.5802-.2527-1.3777-1.2354-1.5563-1.9175-.189-.7223-.1775-3.703.0174-4.4771.076-.3018.2028-.5488.2817-.5488.2389 0 1.0594.6106 1.2202.9079.0887.1642.1607.8888.175 1.7638.0211 1.2798.0553 1.5023.2473 1.6098.1695.0949.263.07.39-.104.092-.1257.168-.3162.1689-.4233.001-.1071.1414-.6324.3122-1.1674.1709-.535.3163-1.2375.3231-1.5612.0263-1.2432.3001-1.5217.9548-.9708.7652.6439.8054 2.0963.1369 4.941-.2668 1.1353-.5334 1.5242-1.3165 1.9207-.4785.2424-.8434.2496-1.3547.0268zm4.2926-.2652c-.6665-.347-.7896-.599-.621-1.2704.3738-1.4873.4467-3.2548.1966-4.7687-.0803-.4865-.057-.573.2093-.7778.1648-.1267.419-.2316.5648-.2332.3539-.0037 1.171.898 1.5254 1.6833.5183 1.1484.7065 1.4764.8176 1.425.0607-.0282.1249-.8949.1426-1.926.0286-1.6533.065-1.9375.3083-2.4042.1517-.2911.3537-.5293.4488-.5293s.3278.2388.517.5308c.1893.2919.3956.5676.4585.6127.063.045.0931.6913.067 1.4362-.026.745-.0392 1.8321-.0293 2.416.0595 3.5063.0399 3.7062-.38 3.8658-.398.1513-1.0262-.1558-1.7828-.8713-.3615-.3419-.7065-.6216-.7668-.6216-.0602 0-.2104.3232-.3337.7182-.3601 1.1536-.4288 1.1902-1.3423.7145m6.7039-1.0775c-1.1639-.6307-1.5592-1.2076-1.653-2.4122-.0745-.9562.3326-2.655.7755-3.2355.1735-.2275.3155-.476.3155-.552s.249-.3096.5533-.519c.71-.4886 1.3684-.5098 2.0234-.0654.9194.624 1.0533 1.1061 1.0915 3.931.0148 1.092-.012 1.2344-.3365 1.7864-.1939.3298-.4772.6472-.6295.705-.1524.058-.3458.1882-.4298.2894-.184.2218-1.344.2709-1.7104.0723m1.2382-3.0193c.4147-.8299.3596-1.362-.1486-1.4349-.2257-.0323-.3239.0643-.5126.5046-.3523.822-.4361 1.3272-.256 1.5442.2678.3227.5403.1403.9172-.614" }) + ] + } + ); +}); + +exports.default = SiYunohost; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.d.ts new file mode 100644 index 000000000..43db7af41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiYunohost: IconType; +export { SiYunohost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.mjs new file mode 100644 index 000000000..678f1ffe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiYunohost.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiYunohost = React.forwardRef(function SiYunohost2({ title = "YunoHost", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.5117 22.0865c-.2242-.1506-.5262-.4987-.6711-.7734-.2797-.5304-.826-1.1104-1.382-1.4674-.3836-.2463-.5943-.985-.361-1.266.0777-.0938.4072-.242.7322-.3293.325-.0874.6448-.2073.7106-.2665.0659-.0591.1257-.4864.133-.9495.0446-2.8328.067-2.9027.9338-2.9027 1.0283 0 1.724 1.2286 1.3857 2.4472-.24.8642-.1922 1.0501.2691 1.048.7042-.0034.7425-.0844.7742-1.6375.048-2.3435.561-3.0887 1.7394-2.5268.7473.3564.8574 1.3232.3463 3.0421-.1672.5622.1641 2.8917.5112 3.594.1959.3965-.0137.9526-.3787 1.0048-.1656.0237-.4377-.0916-.6627-.281-.21-.1767-.426-.3212-.4801-.3212s-.2541-.2248-.4446-.4996c-.3314-.4783-.71-.6405-.8742-.3746-.0425.0687-.332.1891-.6435.2675-.5448.1372-.5634.1572-.4943.5308.205 1.1082.2073 1.5506.0088 1.749-.2708.2709-.6624.241-1.152-.088m12.6533-1.7342c-.2704-.1568-.7981-.7447-1.032-1.1496-.0835-.1444-.1537-.5332-.1561-.864-.0065-.884.365-1.4412.5573-.8356.1826.5753.8588.833 1.1777.4488.257-.3098-.1734-1.0344-1.2391-2.086-.9585-.9456-1-1.01-1-1.5539 0-.844.2417-1.1948 1.1089-1.6093.7205-.3444.783-.3536 1.2917-.1904.6921.2221 1.5047 1.0045 1.4493 1.3956-.0346.244-.1144.2863-.5402.2863-.2748 0-.5698.0455-.6557.101-.2554.1653-.178.5428.1561.7618.3078.2016.3123.1995.3123-.1499 0-.3438.0325-.3615 1.0928-.596l1.0928-.2418.089-.9828c.15-1.6536.6282-1.9801 1.5719-1.0733.2886.2773.5333.5724.5437.6557a7 7 0 0 1 .0316.3388c.0104.1547.2004.1798 1.0896.1441 1.037-.0416 1.0916-.03 1.4663.3122.2674.2442.3993.4895.4214.7834.027.3618-.0323.4718-.3841.7126-.2289.1565-.9735.4625-1.6548.6798-.978.312-1.2387.4437-1.2387.6256 0 .1267.0639.7923.142 1.479.1607 1.4136.0583 1.8762-.4686 2.1162-.4644.2116-.5869.179-1.0248-.2729-.5125-.5287-.6706-1.0862-.5684-2.0032.0948-.8494.0392-.9135-.7377-.8518l-.5529.044.1812.5197c.1168.335.1572.7637.1136 1.2066-.0572.5805-.1317.742-.4807 1.0421-1.035.8902-1.629 1.1126-2.1554.8072m-5.0871-.1042c-.5996-.1036-1.4703-.7774-1.9948-1.5438-.3743-.5469-.4167-.6964-.408-1.4362.0115-.9621.3114-2.081.6852-2.5562.2967-.3772 1.1997-.83 1.6553-.83.277 0 .9169.2352 1.896.6967.8448.3981.9919.6457 1.1778 1.9826l.1372.9864-.4558.9714c-.2508.5343-.5818 1.0897-.7357 1.2343-.3627.3408-1.3719.5959-1.9572.4948m.3147-2.3618c.449-.1708.6744-.9103.4034-1.3239-.1108-.1691-.2739-.3075-.3624-.3075-.4979 0-1.0237 1.1802-.6997 1.5707.174.2095.249.2164.6587.0607m-7.0488-6.2838c-.2383-.1579-.5613-.555-.7366-.9055-.2843-.5685-.3092-.7458-.2785-1.9842l.0337-1.3598-.7518-.7222c-.4136-.3972-.752-.7446-.752-.772 0-.0276-.1123-.576-.2497-1.219-.1375-.6427-.25-1.4663-.25-1.8302 0-.57.0437-.6903.3162-.8688.494-.3236 1.0344-.1065 1.5151.6086.3193.475.4119.7671.4827 1.5232.0924.986.2566 1.265.6677 1.1345.246-.078.9582-.817 1.2117-1.2572.1284-.223.1595-.2186.7082.103.4144.2429.6143.4587.7192.7764.1297.3931.1114.4978-.1727.9825-.1749.2984-.5308.7294-.791.9579s-.4797.5312-.4877.6728c-.0597 1.0595-.323 4.1595-.364 4.2853-.0753.2315-.3445.1905-.8207-.1251m4.5654-.8935c-.5802-.2527-1.3777-1.2354-1.5563-1.9175-.189-.7223-.1775-3.703.0174-4.4771.076-.3018.2028-.5488.2817-.5488.2389 0 1.0594.6106 1.2202.9079.0887.1642.1607.8888.175 1.7638.0211 1.2798.0553 1.5023.2473 1.6098.1695.0949.263.07.39-.104.092-.1257.168-.3162.1689-.4233.001-.1071.1414-.6324.3122-1.1674.1709-.535.3163-1.2375.3231-1.5612.0263-1.2432.3001-1.5217.9548-.9708.7652.6439.8054 2.0963.1369 4.941-.2668 1.1353-.5334 1.5242-1.3165 1.9207-.4785.2424-.8434.2496-1.3547.0268zm4.2926-.2652c-.6665-.347-.7896-.599-.621-1.2704.3738-1.4873.4467-3.2548.1966-4.7687-.0803-.4865-.057-.573.2093-.7778.1648-.1267.419-.2316.5648-.2332.3539-.0037 1.171.898 1.5254 1.6833.5183 1.1484.7065 1.4764.8176 1.425.0607-.0282.1249-.8949.1426-1.926.0286-1.6533.065-1.9375.3083-2.4042.1517-.2911.3537-.5293.4488-.5293s.3278.2388.517.5308c.1893.2919.3956.5676.4585.6127.063.045.0931.6913.067 1.4362-.026.745-.0392 1.8321-.0293 2.416.0595 3.5063.0399 3.7062-.38 3.8658-.398.1513-1.0262-.1558-1.7828-.8713-.3615-.3419-.7065-.6216-.7668-.6216-.0602 0-.2104.3232-.3337.7182-.3601 1.1536-.4288 1.1902-1.3423.7145m6.7039-1.0775c-1.1639-.6307-1.5592-1.2076-1.653-2.4122-.0745-.9562.3326-2.655.7755-3.2355.1735-.2275.3155-.476.3155-.552s.249-.3096.5533-.519c.71-.4886 1.3684-.5098 2.0234-.0654.9194.624 1.0533 1.1061 1.0915 3.931.0148 1.092-.012 1.2344-.3365 1.7864-.1939.3298-.4772.6472-.6295.705-.1524.058-.3458.1882-.4298.2894-.184.2218-1.344.2709-1.7104.0723m1.2382-3.0193c.4147-.8299.3596-1.362-.1486-1.4349-.2257-.0323-.3239.0643-.5126.5046-.3523.822-.4361 1.3272-.256 1.5442.2678.3227.5403.1403.9172-.614" }) + ] + } + ); +}); + +export { SiYunohost as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.cjs new file mode 100644 index 000000000..2bb82c334 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006420"; +const SiZabka = React__namespace.forwardRef(function SiZabka2({ title = "Żabka", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m4.12 15.041.187-.967a9.424 9.424 0 0 0 10.05 0l.187.967a8.437 8.437 0 0 1-10.424 0zm12.109-4.463c.343.062.718.031 1.03-.156.25-.156.405-.406.468-.687.062-.28.094-.53.125-.811h1.186v.437a2.8 2.8 0 0 1-.281 1.03c-.125.25-.343.468-.562.624-.062.031-.125.094-.187.125.062.093.125.218.156.312.312.562.624 1.092.967 1.654l.094.187a.396.396 0 0 1 .031.188h-1.31l-1.03-1.873-.687.062v1.842h-1.28v-6.18h1.28zM3.808 8.893c0 .062-.032.124-.063.218l-.655 1.124a69.63 69.63 0 0 0-1.186 2.06c0 .03-.031.062-.031.093h1.935v1.124H0c0-.063.031-.125.062-.187.188-.344.375-.656.562-.968.187-.312.343-.593.53-.905.25-.437.5-.874.75-1.28.031-.031.031-.062.062-.125H.156V8.893zm-1.78-.437A.515.515 0 0 1 1.56 8.3c-.187-.156-.28-.437-.187-.687a.646.646 0 0 1 .53-.437c.22-.062.469.031.625.187.187.188.218.437.156.687a.6.6 0 0 1-.562.406c-.031.03-.062.03-.093 0zm12.016 1.872a2.12 2.12 0 0 0-.749-1.123 1.87 1.87 0 0 0-1.123-.375 2.512 2.512 0 0 0-1.061.156c-.032 0-.094.031-.125.031V7.332h-1.28v5.899c.187.062.375.094.562.125.312.093.624.156.967.218.5.063 1 0 1.498-.156.75-.218 1.311-.843 1.405-1.623.062-.468.062-.999-.094-1.467zm-1.217 1.53a.886.886 0 0 1-.655.624 1.96 1.96 0 0 1-1.124-.063s-.031 0-.031-.03v-2.28a1.321 1.321 0 0 1 1.467-.03c.156.124.25.28.312.468.125.406.156.874.031 1.31zM8.52 9.205a5.247 5.247 0 0 0-.999-.281c-.468-.094-.936-.125-1.404-.094a1.805 1.805 0 0 0-1.124.53c-.28.313-.499.687-.561 1.093a4.764 4.764 0 0 0-.094.936c0 .406.094.78.281 1.124.156.28.374.53.655.687a3.078 3.078 0 0 0 2.029.343c.5-.062.967-.218 1.467-.312V9.33c-.063-.032-.156-.094-.25-.125zm-.999 3.214c-.436.156-.905.188-1.342 0a.826.826 0 0 1-.468-.499 2.24 2.24 0 0 1 .032-1.498.93.93 0 0 1 .749-.562c.312-.031.655 0 .936.156.031 0 .031.031.062.031zm16.073-3.277a6.932 6.932 0 0 0-1.154-.28 3.777 3.777 0 0 0-1.186 0c-.718.124-1.28.655-1.498 1.341a3.697 3.697 0 0 0-.125 1.655c.062.499.312.967.718 1.28.093.062.218.155.312.187.25.124.561.218.842.25.344.062.687.062 1.03 0 .5-.094.999-.22 1.467-.313V9.33a5.08 5.08 0 0 0-.406-.188zm-.811 3.277c-.063.032-.094.032-.156.032-.25.062-.5.093-.78.093a.976.976 0 0 1-.78-.405 1.094 1.094 0 0 1-.188-.437c-.062-.375-.062-.75.062-1.124a.932.932 0 0 1 .812-.687c.343-.062.687 0 .999.188z" }) + ] + } + ); +}); + +exports.default = SiZabka; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.d.ts new file mode 100644 index 000000000..e672bdbb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006420"; +declare const SiZabka: IconType; +export { SiZabka as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.mjs new file mode 100644 index 000000000..9174788b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZabka.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006420"; +const SiZabka = React.forwardRef(function SiZabka2({ title = "Żabka", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m4.12 15.041.187-.967a9.424 9.424 0 0 0 10.05 0l.187.967a8.437 8.437 0 0 1-10.424 0zm12.109-4.463c.343.062.718.031 1.03-.156.25-.156.405-.406.468-.687.062-.28.094-.53.125-.811h1.186v.437a2.8 2.8 0 0 1-.281 1.03c-.125.25-.343.468-.562.624-.062.031-.125.094-.187.125.062.093.125.218.156.312.312.562.624 1.092.967 1.654l.094.187a.396.396 0 0 1 .031.188h-1.31l-1.03-1.873-.687.062v1.842h-1.28v-6.18h1.28zM3.808 8.893c0 .062-.032.124-.063.218l-.655 1.124a69.63 69.63 0 0 0-1.186 2.06c0 .03-.031.062-.031.093h1.935v1.124H0c0-.063.031-.125.062-.187.188-.344.375-.656.562-.968.187-.312.343-.593.53-.905.25-.437.5-.874.75-1.28.031-.031.031-.062.062-.125H.156V8.893zm-1.78-.437A.515.515 0 0 1 1.56 8.3c-.187-.156-.28-.437-.187-.687a.646.646 0 0 1 .53-.437c.22-.062.469.031.625.187.187.188.218.437.156.687a.6.6 0 0 1-.562.406c-.031.03-.062.03-.093 0zm12.016 1.872a2.12 2.12 0 0 0-.749-1.123 1.87 1.87 0 0 0-1.123-.375 2.512 2.512 0 0 0-1.061.156c-.032 0-.094.031-.125.031V7.332h-1.28v5.899c.187.062.375.094.562.125.312.093.624.156.967.218.5.063 1 0 1.498-.156.75-.218 1.311-.843 1.405-1.623.062-.468.062-.999-.094-1.467zm-1.217 1.53a.886.886 0 0 1-.655.624 1.96 1.96 0 0 1-1.124-.063s-.031 0-.031-.03v-2.28a1.321 1.321 0 0 1 1.467-.03c.156.124.25.28.312.468.125.406.156.874.031 1.31zM8.52 9.205a5.247 5.247 0 0 0-.999-.281c-.468-.094-.936-.125-1.404-.094a1.805 1.805 0 0 0-1.124.53c-.28.313-.499.687-.561 1.093a4.764 4.764 0 0 0-.094.936c0 .406.094.78.281 1.124.156.28.374.53.655.687a3.078 3.078 0 0 0 2.029.343c.5-.062.967-.218 1.467-.312V9.33c-.063-.032-.156-.094-.25-.125zm-.999 3.214c-.436.156-.905.188-1.342 0a.826.826 0 0 1-.468-.499 2.24 2.24 0 0 1 .032-1.498.93.93 0 0 1 .749-.562c.312-.031.655 0 .936.156.031 0 .031.031.062.031zm16.073-3.277a6.932 6.932 0 0 0-1.154-.28 3.777 3.777 0 0 0-1.186 0c-.718.124-1.28.655-1.498 1.341a3.697 3.697 0 0 0-.125 1.655c.062.499.312.967.718 1.28.093.062.218.155.312.187.25.124.561.218.842.25.344.062.687.062 1.03 0 .5-.094.999-.22 1.467-.313V9.33a5.08 5.08 0 0 0-.406-.188zm-.811 3.277c-.063.032-.094.032-.156.032-.25.062-.5.093-.78.093a.976.976 0 0 1-.78-.405 1.094 1.094 0 0 1-.188-.437c-.062-.375-.062-.75.062-1.124a.932.932 0 0 1 .812-.687c.343-.062.687 0 .999.188z" }) + ] + } + ); +}); + +export { SiZabka as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.cjs new file mode 100644 index 000000000..33a2bfbc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#50A135"; +const SiZaim = React__namespace.forwardRef(function SiZaim2({ title = "Zaim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.748.453C6.13.453 4.852.623 4 1.047c-.51.255-1.191.765-1.446 1.784-.256 1.019.17 1.782.51 2.122a8.258 8.258 0 0 0 2.212 1.613c-1.872.425-3.404.933-4.255 1.528C.512 8.434 0 9.028 0 10.13v9.426c0 1.104.51 1.697.936 2.037 1.533 1.103 5.449 1.953 9.96 1.953 4.513 0 8.429-.765 9.961-1.953.511-.34 1.022-.933 1.022-2.037v-9.426c0-.17 0-.424-.085-.594.255-.085.511-.17.682-.254.51-.255 1.19-.765 1.446-1.784.255-1.019-.17-1.781-.51-2.206-1.192-1.443-4.853-3.142-9.28-4.076C11.833.708 9.62.453 7.748.453Zm.457 1.505c1.573.023 3.548.257 5.67.703 4.853 1.103 8.514 2.887 8.259 4.075-.256 1.189-4.427 1.273-9.195.255-4.852-1.104-8.513-2.887-8.258-4.076.144-.669 1.501-.987 3.524-.957Zm-.287 5.797c1.362.425 2.895.934 4.513 1.273 2.81.68 5.447.85 7.576.765 0 1.189-4 2.208-8.939 2.208-4.937 0-8.938-1.02-8.938-2.208 0-.934 2.383-1.698 5.788-2.038zm-4.343 5.519c1.958.51 4.513.849 7.408.849 2.894 0 5.447-.34 7.406-.849.936.425 1.532.849 1.532 1.273 0 1.189-4 2.208-8.938 2.208-4.938 0-8.94-1.02-8.94-2.208 0-.51.596-.933 1.532-1.273zm0 4.754c1.958.51 4.513.85 7.408.85 2.894 0 5.447-.34 7.406-.85.936.425 1.532.85 1.532 1.275 0 1.189-4 2.206-8.938 2.206-4.938 0-8.94-1.017-8.94-2.206 0-.51.596-.935 1.532-1.275z" }) + ] + } + ); +}); + +exports.default = SiZaim; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.d.ts new file mode 100644 index 000000000..cc7150a34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#50A135"; +declare const SiZaim: IconType; +export { SiZaim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.mjs new file mode 100644 index 000000000..95cb8a4a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZaim.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#50A135"; +const SiZaim = React.forwardRef(function SiZaim2({ title = "Zaim", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.748.453C6.13.453 4.852.623 4 1.047c-.51.255-1.191.765-1.446 1.784-.256 1.019.17 1.782.51 2.122a8.258 8.258 0 0 0 2.212 1.613c-1.872.425-3.404.933-4.255 1.528C.512 8.434 0 9.028 0 10.13v9.426c0 1.104.51 1.697.936 2.037 1.533 1.103 5.449 1.953 9.96 1.953 4.513 0 8.429-.765 9.961-1.953.511-.34 1.022-.933 1.022-2.037v-9.426c0-.17 0-.424-.085-.594.255-.085.511-.17.682-.254.51-.255 1.19-.765 1.446-1.784.255-1.019-.17-1.781-.51-2.206-1.192-1.443-4.853-3.142-9.28-4.076C11.833.708 9.62.453 7.748.453Zm.457 1.505c1.573.023 3.548.257 5.67.703 4.853 1.103 8.514 2.887 8.259 4.075-.256 1.189-4.427 1.273-9.195.255-4.852-1.104-8.513-2.887-8.258-4.076.144-.669 1.501-.987 3.524-.957Zm-.287 5.797c1.362.425 2.895.934 4.513 1.273 2.81.68 5.447.85 7.576.765 0 1.189-4 2.208-8.939 2.208-4.937 0-8.938-1.02-8.938-2.208 0-.934 2.383-1.698 5.788-2.038zm-4.343 5.519c1.958.51 4.513.849 7.408.849 2.894 0 5.447-.34 7.406-.849.936.425 1.532.849 1.532 1.273 0 1.189-4 2.208-8.938 2.208-4.938 0-8.94-1.02-8.94-2.208 0-.51.596-.933 1.532-1.273zm0 4.754c1.958.51 4.513.85 7.408.85 2.894 0 5.447-.34 7.406-.85.936.425 1.532.85 1.532 1.275 0 1.189-4 2.206-8.938 2.206-4.938 0-8.94-1.017-8.94-2.206 0-.51.596-.935 1.532-1.275z" }) + ] + } + ); +}); + +export { SiZaim as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.cjs new file mode 100644 index 000000000..faf4797d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF6900"; +const SiZalando = React__namespace.forwardRef(function SiZalando2({ title = "Zalando", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.27 24c-.88 0-1.36-.2-1.62-.36-.36-.21-1.02-.75-1.62-2.33A27.06 27.06 0 01.49 12c.02-3.66.59-6.76 1.54-9.3C2.63 1.1 3.29.56 3.65.35 3.91.21 4.39 0 5.27 0c.33 0 .72.03 1.18.1a26.1 26.1 0 018.7 3.3h.01a26.4 26.4 0 017.16 6.01c1.06 1.32 1.19 2.17 1.19 2.59 0 .42-.13 1.27-1.19 2.59a26.4 26.4 0 01-7.16 6h-.01a26.03 26.03 0 01-8.7 3.3c-.46.08-.85.11-1.18.11z" }) + ] + } + ); +}); + +exports.default = SiZalando; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.d.ts new file mode 100644 index 000000000..c3e8bcdde --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF6900"; +declare const SiZalando: IconType; +export { SiZalando as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.mjs new file mode 100644 index 000000000..59a23412d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZalando.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF6900"; +const SiZalando = React.forwardRef(function SiZalando2({ title = "Zalando", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.27 24c-.88 0-1.36-.2-1.62-.36-.36-.21-1.02-.75-1.62-2.33A27.06 27.06 0 01.49 12c.02-3.66.59-6.76 1.54-9.3C2.63 1.1 3.29.56 3.65.35 3.91.21 4.39 0 5.27 0c.33 0 .72.03 1.18.1a26.1 26.1 0 018.7 3.3h.01a26.4 26.4 0 017.16 6.01c1.06 1.32 1.19 2.17 1.19 2.59 0 .42-.13 1.27-1.19 2.59a26.4 26.4 0 01-7.16 6h-.01a26.03 26.03 0 01-8.7 3.3c-.46.08-.85.11-1.18.11z" }) + ] + } + ); +}); + +export { SiZalando as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.cjs new file mode 100644 index 000000000..45c35886f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0068FF"; +const SiZalo = React__namespace.forwardRef(function SiZalo2({ title = "Zalo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.49 10.2722v-.4496h1.3467v6.3218h-.7704a.576.576 0 01-.5763-.5729l-.0006.0005a3.273 3.273 0 01-1.9372.6321c-1.8138 0-3.2844-1.4697-3.2844-3.2823 0-1.8125 1.4706-3.2822 3.2844-3.2822a3.273 3.273 0 011.9372.6321l.0006.0005zM6.9188 7.7896v.205c0 .3823-.051.6944-.2995 1.0605l-.03.0343c-.0542.0615-.1815.206-.2421.2843L2.024 14.8h4.8948v.7682a.5764.5764 0 01-.5767.5761H0v-.3622c0-.4436.1102-.6414.2495-.8476L4.8582 9.23H.1922V7.7896h6.7266zm8.5513 8.3548a.4805.4805 0 01-.4803-.4798v-7.875h1.4416v8.3548H15.47zM20.6934 9.6C22.52 9.6 24 11.0807 24 12.9044c0 1.8252-1.4801 3.306-3.3066 3.306-1.8264 0-3.3066-1.4808-3.3066-3.306 0-1.8237 1.4802-3.3044 3.3066-3.3044zm-10.1412 5.253c1.0675 0 1.9324-.8645 1.9324-1.9312 0-1.065-.865-1.9295-1.9324-1.9295s-1.9324.8644-1.9324 1.9295c0 1.0667.865 1.9312 1.9324 1.9312zm10.1412-.0033c1.0737 0 1.945-.8707 1.945-1.9453 0-1.073-.8713-1.9436-1.945-1.9436-1.0753 0-1.945.8706-1.945 1.9436 0 1.0746.8697 1.9453 1.945 1.9453z" }) + ] + } + ); +}); + +exports.default = SiZalo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.d.ts new file mode 100644 index 000000000..3eadf98d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0068FF"; +declare const SiZalo: IconType; +export { SiZalo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.mjs new file mode 100644 index 000000000..546e409fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZalo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0068FF"; +const SiZalo = React.forwardRef(function SiZalo2({ title = "Zalo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.49 10.2722v-.4496h1.3467v6.3218h-.7704a.576.576 0 01-.5763-.5729l-.0006.0005a3.273 3.273 0 01-1.9372.6321c-1.8138 0-3.2844-1.4697-3.2844-3.2823 0-1.8125 1.4706-3.2822 3.2844-3.2822a3.273 3.273 0 011.9372.6321l.0006.0005zM6.9188 7.7896v.205c0 .3823-.051.6944-.2995 1.0605l-.03.0343c-.0542.0615-.1815.206-.2421.2843L2.024 14.8h4.8948v.7682a.5764.5764 0 01-.5767.5761H0v-.3622c0-.4436.1102-.6414.2495-.8476L4.8582 9.23H.1922V7.7896h6.7266zm8.5513 8.3548a.4805.4805 0 01-.4803-.4798v-7.875h1.4416v8.3548H15.47zM20.6934 9.6C22.52 9.6 24 11.0807 24 12.9044c0 1.8252-1.4801 3.306-3.3066 3.306-1.8264 0-3.3066-1.4808-3.3066-3.306 0-1.8237 1.4802-3.3044 3.3066-3.3044zm-10.1412 5.253c1.0675 0 1.9324-.8645 1.9324-1.9312 0-1.065-.865-1.9295-1.9324-1.9295s-1.9324.8644-1.9324 1.9295c0 1.0667.865 1.9312 1.9324 1.9312zm10.1412-.0033c1.0737 0 1.945-.8707 1.945-1.9453 0-1.073-.8713-1.9436-1.945-1.9436-1.0753 0-1.945.8706-1.945 1.9436 0 1.0746.8697 1.9453 1.945 1.9453z" }) + ] + } + ); +}); + +export { SiZalo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZap.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZap.cjs new file mode 100644 index 000000000..e049fe3e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZap.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00549E"; +const SiZap = React__namespace.forwardRef(function SiZap2({ title = "ZAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.1449 14.1032a.17.17 0 0 1 .0865-.2689l1.7154-.4203c.1261-.0367.1364-.1735.1236-.2288a.1655.1655 0 0 0-.0216-.0401L13.071 8.1627c-.0727-.102-.0294-.2272.0741-.2658l1.3445-.4327a.1669.1669 0 0 0 .0804-.2565L9.5568.0804a.1545.1545 0 0 0-.1886-.068L.099 4.0304a.17.17 0 0 0-.0309.2905l5.1678 3.6718a.1607.1607 0 0 1 .068.1515c-.0015.063-.0488.1081-.0557.1144l-.0402.0247-1.2146.5316a.17.17 0 0 0-.0897.0958v.0402a.1824.1824 0 0 0 .068.1545c1.7749 1.281 3.5502 2.5614 5.3254 3.8418.109.0844.0741.243-.0402.2937l-1.5793.6181c-.1282.054-.1401.2298-.0217.2998l13.1142 7.5724c.1507.0627.2904-.1097.1978-.2442l-5.823-7.3838zm.1483-7.4024a1.0694 1.0694 0 0 1 .136.9272 1.0447 1.0447 0 0 1-.6676.6615l-.3616.1174 3.3195 4.191a1.0478 1.0478 0 0 1-.5656 1.6722l-.6182.1545 4.4816 5.6778A11.677 11.677 0 0 0 12.3168.6305c-.4142 0-.8221.0217-1.2363.0619zM7.211 14.9284a1.0509 1.0509 0 0 1 .139-1.8822l.3771-.1453L3.4587 9.81a1.0509 1.0509 0 0 1 .1916-1.8112l.0618-.0278-1.6906-1.1868a11.68 11.68 0 0 0 17.098 15.021Z" }) + ] + } + ); +}); + +exports.default = SiZap; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZap.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZap.d.ts new file mode 100644 index 000000000..6955c26d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZap.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00549E"; +declare const SiZap: IconType; +export { SiZap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZap.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZap.mjs new file mode 100644 index 000000000..3ff110996 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZap.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00549E"; +const SiZap = React.forwardRef(function SiZap2({ title = "ZAP", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.1449 14.1032a.17.17 0 0 1 .0865-.2689l1.7154-.4203c.1261-.0367.1364-.1735.1236-.2288a.1655.1655 0 0 0-.0216-.0401L13.071 8.1627c-.0727-.102-.0294-.2272.0741-.2658l1.3445-.4327a.1669.1669 0 0 0 .0804-.2565L9.5568.0804a.1545.1545 0 0 0-.1886-.068L.099 4.0304a.17.17 0 0 0-.0309.2905l5.1678 3.6718a.1607.1607 0 0 1 .068.1515c-.0015.063-.0488.1081-.0557.1144l-.0402.0247-1.2146.5316a.17.17 0 0 0-.0897.0958v.0402a.1824.1824 0 0 0 .068.1545c1.7749 1.281 3.5502 2.5614 5.3254 3.8418.109.0844.0741.243-.0402.2937l-1.5793.6181c-.1282.054-.1401.2298-.0217.2998l13.1142 7.5724c.1507.0627.2904-.1097.1978-.2442l-5.823-7.3838zm.1483-7.4024a1.0694 1.0694 0 0 1 .136.9272 1.0447 1.0447 0 0 1-.6676.6615l-.3616.1174 3.3195 4.191a1.0478 1.0478 0 0 1-.5656 1.6722l-.6182.1545 4.4816 5.6778A11.677 11.677 0 0 0 12.3168.6305c-.4142 0-.8221.0217-1.2363.0619zM7.211 14.9284a1.0509 1.0509 0 0 1 .139-1.8822l.3771-.1453L3.4587 9.81a1.0509 1.0509 0 0 1 .1916-1.8112l.0618-.0278-1.6906-1.1868a11.68 11.68 0 0 0 17.098 15.021Z" }) + ] + } + ); +}); + +export { SiZap as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.cjs new file mode 100644 index 000000000..7b576114a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FF4F00"; +const SiZapier = React__namespace.forwardRef(function SiZapier2({ title = "Zapier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.157 0A4.151 4.151 0 0 0 0 4.161v15.678A4.151 4.151 0 0 0 4.157 24h15.682A4.152 4.152 0 0 0 24 19.839V4.161A4.152 4.152 0 0 0 19.839 0H4.157Zm10.61 8.761h.03a.577.577 0 0 1 .23.038.585.585 0 0 1 .201.124.63.63 0 0 1 .162.431.612.612 0 0 1-.162.435.58.58 0 0 1-.201.128.58.58 0 0 1-.23.042.529.529 0 0 1-.235-.042.585.585 0 0 1-.332-.328.559.559 0 0 1-.038-.235.613.613 0 0 1 .17-.431.59.59 0 0 1 .405-.162Zm2.853 1.572c.03.004.061.004.095.004.325-.011.646.064.937.219.238.144.431.355.552.609.128.279.189.582.185.888v.193a2 2 0 0 1 0 .219h-2.498c.003.227.075.45.204.642a.78.78 0 0 0 .646.265.714.714 0 0 0 .484-.136.642.642 0 0 0 .23-.318l.915.257a1.398 1.398 0 0 1-.28.537c-.14.159-.321.284-.521.355a2.234 2.234 0 0 1-.836.136 1.923 1.923 0 0 1-1.001-.245 1.618 1.618 0 0 1-.665-.703 2.221 2.221 0 0 1-.227-1.036 1.95 1.95 0 0 1 .48-1.398 1.9 1.9 0 0 1 1.3-.488Zm-9.607.023c.162.004.325.026.48.079.207.065.4.174.563.314.26.302.393.692.366 1.088v2.276H8.53l-.109-.711h-.065c-.064.163-.155.31-.272.439a1.122 1.122 0 0 1-.374.264 1.023 1.023 0 0 1-.453.083 1.334 1.334 0 0 1-.866-.264.965.965 0 0 1-.329-.801.993.993 0 0 1 .076-.431 1.02 1.02 0 0 1 .242-.363 1.478 1.478 0 0 1 1.043-.303h.952v-.181a.696.696 0 0 0-.136-.454.553.553 0 0 0-.438-.154.695.695 0 0 0-.378.086.48.48 0 0 0-.193.254l-.99-.144a1.26 1.26 0 0 1 .257-.563c.14-.174.321-.302.533-.378.261-.091.54-.136.82-.129.053-.003.106-.007.163-.007Zm4.384.007c.174 0 .347.038.506.114.182.083.34.211.458.374.257.423.377.911.351 1.406a2.53 2.53 0 0 1-.355 1.448 1.148 1.148 0 0 1-1.009.517c-.204 0-.401-.045-.582-.136a1.052 1.052 0 0 1-.48-.457 1.298 1.298 0 0 1-.114-.234h-.045l.004 1.784h-1.059v-4.713h.904l.117.805h.057c.068-.208.177-.401.328-.56a1.129 1.129 0 0 1 .843-.344h.076v-.004Zm7.559.084h.903l.113.805h.053a1.37 1.37 0 0 1 .235-.484.813.813 0 0 1 .313-.242.82.82 0 0 1 .39-.076h.234v1.051h-.401a.662.662 0 0 0-.313.008.623.623 0 0 0-.272.155.663.663 0 0 0-.174.26.683.683 0 0 0-.027.314v1.875h-1.054v-3.666Zm-17.515.003h3.262v.896L3.73 13.104l.034.113h1.973l.042.9H2.4v-.9l1.931-1.754-.045-.117H2.441v-.896Zm11.815 0h1.055v3.659h-1.055V10.45Zm3.443.684.019.016a.69.69 0 0 0-.351.045.756.756 0 0 0-.287.204c-.11.155-.174.336-.189.522h1.545c-.034-.526-.257-.787-.74-.787h.003Zm-5.718.163c-.026 0-.057 0-.083.004a.78.78 0 0 0-.31.053.746.746 0 0 0-.257.189 1.016 1.016 0 0 0-.204.695v.064c-.015.257.057.507.204.711a.634.634 0 0 0 .253.196.638.638 0 0 0 .314.061.644.644 0 0 0 .578-.265c.14-.223.204-.48.189-.74a1.216 1.216 0 0 0-.181-.711.677.677 0 0 0-.503-.257Zm-4.509 1.266a.464.464 0 0 0-.268.102.373.373 0 0 0-.114.276c0 .053.008.106.027.155a.375.375 0 0 0 .087.132.576.576 0 0 0 .397.11v.004a.863.863 0 0 0 .563-.182.573.573 0 0 0 .211-.457v-.14h-.903Z" }) + ] + } + ); +}); + +exports.default = SiZapier; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.d.ts new file mode 100644 index 000000000..e4d8eff71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FF4F00"; +declare const SiZapier: IconType; +export { SiZapier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.mjs new file mode 100644 index 000000000..d24cce6b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZapier.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FF4F00"; +const SiZapier = React.forwardRef(function SiZapier2({ title = "Zapier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.157 0A4.151 4.151 0 0 0 0 4.161v15.678A4.151 4.151 0 0 0 4.157 24h15.682A4.152 4.152 0 0 0 24 19.839V4.161A4.152 4.152 0 0 0 19.839 0H4.157Zm10.61 8.761h.03a.577.577 0 0 1 .23.038.585.585 0 0 1 .201.124.63.63 0 0 1 .162.431.612.612 0 0 1-.162.435.58.58 0 0 1-.201.128.58.58 0 0 1-.23.042.529.529 0 0 1-.235-.042.585.585 0 0 1-.332-.328.559.559 0 0 1-.038-.235.613.613 0 0 1 .17-.431.59.59 0 0 1 .405-.162Zm2.853 1.572c.03.004.061.004.095.004.325-.011.646.064.937.219.238.144.431.355.552.609.128.279.189.582.185.888v.193a2 2 0 0 1 0 .219h-2.498c.003.227.075.45.204.642a.78.78 0 0 0 .646.265.714.714 0 0 0 .484-.136.642.642 0 0 0 .23-.318l.915.257a1.398 1.398 0 0 1-.28.537c-.14.159-.321.284-.521.355a2.234 2.234 0 0 1-.836.136 1.923 1.923 0 0 1-1.001-.245 1.618 1.618 0 0 1-.665-.703 2.221 2.221 0 0 1-.227-1.036 1.95 1.95 0 0 1 .48-1.398 1.9 1.9 0 0 1 1.3-.488Zm-9.607.023c.162.004.325.026.48.079.207.065.4.174.563.314.26.302.393.692.366 1.088v2.276H8.53l-.109-.711h-.065c-.064.163-.155.31-.272.439a1.122 1.122 0 0 1-.374.264 1.023 1.023 0 0 1-.453.083 1.334 1.334 0 0 1-.866-.264.965.965 0 0 1-.329-.801.993.993 0 0 1 .076-.431 1.02 1.02 0 0 1 .242-.363 1.478 1.478 0 0 1 1.043-.303h.952v-.181a.696.696 0 0 0-.136-.454.553.553 0 0 0-.438-.154.695.695 0 0 0-.378.086.48.48 0 0 0-.193.254l-.99-.144a1.26 1.26 0 0 1 .257-.563c.14-.174.321-.302.533-.378.261-.091.54-.136.82-.129.053-.003.106-.007.163-.007Zm4.384.007c.174 0 .347.038.506.114.182.083.34.211.458.374.257.423.377.911.351 1.406a2.53 2.53 0 0 1-.355 1.448 1.148 1.148 0 0 1-1.009.517c-.204 0-.401-.045-.582-.136a1.052 1.052 0 0 1-.48-.457 1.298 1.298 0 0 1-.114-.234h-.045l.004 1.784h-1.059v-4.713h.904l.117.805h.057c.068-.208.177-.401.328-.56a1.129 1.129 0 0 1 .843-.344h.076v-.004Zm7.559.084h.903l.113.805h.053a1.37 1.37 0 0 1 .235-.484.813.813 0 0 1 .313-.242.82.82 0 0 1 .39-.076h.234v1.051h-.401a.662.662 0 0 0-.313.008.623.623 0 0 0-.272.155.663.663 0 0 0-.174.26.683.683 0 0 0-.027.314v1.875h-1.054v-3.666Zm-17.515.003h3.262v.896L3.73 13.104l.034.113h1.973l.042.9H2.4v-.9l1.931-1.754-.045-.117H2.441v-.896Zm11.815 0h1.055v3.659h-1.055V10.45Zm3.443.684.019.016a.69.69 0 0 0-.351.045.756.756 0 0 0-.287.204c-.11.155-.174.336-.189.522h1.545c-.034-.526-.257-.787-.74-.787h.003Zm-5.718.163c-.026 0-.057 0-.083.004a.78.78 0 0 0-.31.053.746.746 0 0 0-.257.189 1.016 1.016 0 0 0-.204.695v.064c-.015.257.057.507.204.711a.634.634 0 0 0 .253.196.638.638 0 0 0 .314.061.644.644 0 0 0 .578-.265c.14-.223.204-.48.189-.74a1.216 1.216 0 0 0-.181-.711.677.677 0 0 0-.503-.257Zm-4.509 1.266a.464.464 0 0 0-.268.102.373.373 0 0 0-.114.276c0 .053.008.106.027.155a.375.375 0 0 0 .087.132.576.576 0 0 0 .397.11v.004a.863.863 0 0 0 .563-.182.573.573 0 0 0 .211-.457v-.14h-.903Z" }) + ] + } + ); +}); + +export { SiZapier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZara.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZara.cjs new file mode 100644 index 000000000..983cef7bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZara.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiZara = React__namespace.forwardRef(function SiZara2({ title = "Zara", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.562 7l.002.006 2.794 7.621v-7.23h-1.15v-.07h3.96c1.903 0 3.231.976 3.231 2.375 0 1.02-.91 1.868-2.263 2.109l-.249.031.25.026c.821.094 1.473.346 1.935.75l.003.003L19.141 7h.07l.002.006 3.556 9.698H24v.07h-3.918v-.07h1.154l-1.17-3.189h-2.373v.002l.013.037c.094.281.142.576.139.873v1.196c0 .615.271 1.238.79 1.238.304 0 .547-.107.837-.372l.041.038c-.314.332-.695.473-1.266.473-.43 0-.8-.104-1.096-.308l-.056-.04c-.39-.296-.644-.778-.753-1.435l-.018-.106-.018-.16-.002-.028-.654 1.78h.928v.07h-1.942v-.07h.938l.718-1.954v-.005a6.35 6.35 0 01-.013-.346v-.854c0-1.049-.78-1.65-2.14-1.65h-1.337v4.81h1.158v.07H9.433v-.07h1.154l-1.17-3.189H6.172l-1.158 3.154.048-.008c1.521-.262 2.22-1.423 2.23-2.645h.07v2.758H0l5.465-9.377H3.268c-1.822 0-2.646 1.407-2.659 2.81H.54v-2.88h6.634l-.04.07-5.425 9.307h2.854c.071 0 .141-.003.212-.009l.072-.006.09-.01L8.491 7h.07zm9.883 2.095l-1.313 3.576.007.007.067.066c.193.197.347.43.452.684l.007.017h2.375l-1.595-4.35zm-10.648 0l-1.599 4.35h3.194l-1.595-4.35zm6.026-1.698h-1.02v4.427h1.336c1.353 0 1.767-.493 1.767-2.107 0-1.517-.72-2.32-2.083-2.32z" }) + ] + } + ); +}); + +exports.default = SiZara; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZara.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZara.d.ts new file mode 100644 index 000000000..b07dced6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZara.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiZara: IconType; +export { SiZara as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZara.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZara.mjs new file mode 100644 index 000000000..4b4da7818 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZara.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiZara = React.forwardRef(function SiZara2({ title = "Zara", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.562 7l.002.006 2.794 7.621v-7.23h-1.15v-.07h3.96c1.903 0 3.231.976 3.231 2.375 0 1.02-.91 1.868-2.263 2.109l-.249.031.25.026c.821.094 1.473.346 1.935.75l.003.003L19.141 7h.07l.002.006 3.556 9.698H24v.07h-3.918v-.07h1.154l-1.17-3.189h-2.373v.002l.013.037c.094.281.142.576.139.873v1.196c0 .615.271 1.238.79 1.238.304 0 .547-.107.837-.372l.041.038c-.314.332-.695.473-1.266.473-.43 0-.8-.104-1.096-.308l-.056-.04c-.39-.296-.644-.778-.753-1.435l-.018-.106-.018-.16-.002-.028-.654 1.78h.928v.07h-1.942v-.07h.938l.718-1.954v-.005a6.35 6.35 0 01-.013-.346v-.854c0-1.049-.78-1.65-2.14-1.65h-1.337v4.81h1.158v.07H9.433v-.07h1.154l-1.17-3.189H6.172l-1.158 3.154.048-.008c1.521-.262 2.22-1.423 2.23-2.645h.07v2.758H0l5.465-9.377H3.268c-1.822 0-2.646 1.407-2.659 2.81H.54v-2.88h6.634l-.04.07-5.425 9.307h2.854c.071 0 .141-.003.212-.009l.072-.006.09-.01L8.491 7h.07zm9.883 2.095l-1.313 3.576.007.007.067.066c.193.197.347.43.452.684l.007.017h2.375l-1.595-4.35zm-10.648 0l-1.599 4.35h3.194l-1.595-4.35zm6.026-1.698h-1.02v4.427h1.336c1.353 0 1.767-.493 1.767-2.107 0-1.517-.72-2.32-2.083-2.32z" }) + ] + } + ); +}); + +export { SiZara as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.cjs new file mode 100644 index 000000000..86d841d8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#212121"; +const SiZazzle = React__namespace.forwardRef(function SiZazzle2({ title = "Zazzle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 12C0 5.382 5.382 0 12 0s12 5.382 12 12-5.382 12-12 12S0 18.618 0 12zm5.936 6.179c.134.177.422.155.665-.045.532-.42 1.042-.753 2.016-.753 1.839 0 3.301 1.152 5.495 1.152 1.684.021 2.747-.62 3.346-1.485.465-.664.686-1.573.686-2.282 0-.997-.576-1.662-1.573-1.662-.953 0-1.373.487-1.419 1.196-.021.288-.021.843-.199 1.108-.177.288-.51.377-.908.377-1.042 0-2.283-.841-3.655-.841h-.2l8.928-7.223c.155-.112.222-.377.045-.51l-1.374-1.618c-.244-.222-.421-.199-.665 0-.466.377-.908.754-1.861.754-1.552 0-3.213-.975-5.383-.975-1.55 0-2.416.576-3.014 1.197-.576.62-.974 1.617-.974 2.57 0 .975.576 1.595 1.529 1.595.864 0 1.374-.487 1.374-1.174 0-.398.021-.753.199-1.018.155-.266.554-.51 1.108-.51.864 0 2.503.597 3.523.597h.066l-9.04 7.179c-.177.133-.177.442-.066.597Z" }) + ] + } + ); +}); + +exports.default = SiZazzle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.d.ts new file mode 100644 index 000000000..3b0fae7d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#212121"; +declare const SiZazzle: IconType; +export { SiZazzle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.mjs new file mode 100644 index 000000000..7c56f4a87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZazzle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#212121"; +const SiZazzle = React.forwardRef(function SiZazzle2({ title = "Zazzle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M0 12C0 5.382 5.382 0 12 0s12 5.382 12 12-5.382 12-12 12S0 18.618 0 12zm5.936 6.179c.134.177.422.155.665-.045.532-.42 1.042-.753 2.016-.753 1.839 0 3.301 1.152 5.495 1.152 1.684.021 2.747-.62 3.346-1.485.465-.664.686-1.573.686-2.282 0-.997-.576-1.662-1.573-1.662-.953 0-1.373.487-1.419 1.196-.021.288-.021.843-.199 1.108-.177.288-.51.377-.908.377-1.042 0-2.283-.841-3.655-.841h-.2l8.928-7.223c.155-.112.222-.377.045-.51l-1.374-1.618c-.244-.222-.421-.199-.665 0-.466.377-.908.754-1.861.754-1.552 0-3.213-.975-5.383-.975-1.55 0-2.416.576-3.014 1.197-.576.62-.974 1.617-.974 2.57 0 .975.576 1.595 1.529 1.595.864 0 1.374-.487 1.374-1.174 0-.398.021-.753.199-1.018.155-.266.554-.51 1.108-.51.864 0 2.503.597 3.523.597h.066l-9.04 7.179c-.177.133-.177.442-.066.597Z" }) + ] + } + ); +}); + +export { SiZazzle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.cjs new file mode 100644 index 000000000..16802ad18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F3B724"; +const SiZcash = React__namespace.forwardRef(function SiZcash2({ title = "Zcash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12.013 12.013 0 0 0 12 12 12 12 0 1 0 0-24zm-1.008 4.418h2.014v2.014l3.275-.002v1.826l-5.08 6.889h5.08v2.423h-3.275v2.006h-2.012v-2.006H7.72v-1.826l5.074-6.888H7.719V6.432h3.273V4.418z" }) + ] + } + ); +}); + +exports.default = SiZcash; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.d.ts new file mode 100644 index 000000000..dabad2206 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F3B724"; +declare const SiZcash: IconType; +export { SiZcash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.mjs new file mode 100644 index 000000000..4ff0ad4f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZcash.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F3B724"; +const SiZcash = React.forwardRef(function SiZcash2({ title = "Zcash", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12 0A12 12 0 0 0 0 12a12.013 12.013 0 0 0 12 12 12 12 0 1 0 0-24zm-1.008 4.418h2.014v2.014l3.275-.002v1.826l-5.08 6.889h5.08v2.423h-3.275v2.006h-2.012v-2.006H7.72v-1.826l5.074-6.888H7.719V6.432h3.273V4.418z" }) + ] + } + ); +}); + +export { SiZcash as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.cjs new file mode 100644 index 000000000..1f9fdd9ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFF200"; +const SiZcool = React__namespace.forwardRef(function SiZcool2({ title = "ZCOOL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.467.438c-.096-.011-.162.03-.2.12-.58 1.397-1.603 2.45-3.067 3.157-.687.333-1.326.556-1.916.67-1.049.203-1.97.413-2.762.631C3.442 6.135.197 9.2.01 13.59c-.092 2.153.46 4.103 1.657 5.85 2.826 4.127 8.452 5.384 12.722 2.732 2.281-1.417 3.734-3.479 4.359-6.186a.146.148 84 0 1 .084-.103c.282-.128.582-.226.857-.368 2.081-1.072 3.515-2.725 4.301-4.96a.181.183 13.8 0 0-.144-.24.253.253 0 0 0-.127.011c-.937.327-1.907.549-2.909.666a.03.03 0 0 1-.028-.047c1.979-2.682 2.912-5.72 2.799-9.112-.003-.1-.052-.162-.148-.188a.175.17 28.9 0 0-.174.048c-2.14 2.292-4.711 3.686-7.715 4.185-.077.012-.098-.016-.063-.086.805-1.595.766-3.625.145-5.23a.196.196 0 0 0-.158-.123zm-2.151 13.195c.097-.013.115.057.053.209a6.621 6.621 0 0 1-1.258 2.003c-.88.963-1.967 1.343-3.265 1.139a2.952 2.952 0 0 1-1.856-1.111.088.088 0 0 1 .001-.109.15.15 0 0 1 .109-.058c2.184-.205 4.073-1.122 6.092-2.033a.462.462 0 0 1 .124-.04zm-12.231.618c.04.005.1.04.182.11.739.624 1.679 1.212 2.644 1.296a.119.119 0 0 1 .095.171c-.556 1.113-1.661.87-2.283.025a4.223 4.223 0 0 1-.665-1.358c-.049-.17-.04-.252.027-.244z" }) + ] + } + ); +}); + +exports.default = SiZcool; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.d.ts new file mode 100644 index 000000000..581f0a484 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFF200"; +declare const SiZcool: IconType; +export { SiZcool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.mjs new file mode 100644 index 000000000..85472be7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZcool.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFF200"; +const SiZcool = React.forwardRef(function SiZcool2({ title = "ZCOOL", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M15.467.438c-.096-.011-.162.03-.2.12-.58 1.397-1.603 2.45-3.067 3.157-.687.333-1.326.556-1.916.67-1.049.203-1.97.413-2.762.631C3.442 6.135.197 9.2.01 13.59c-.092 2.153.46 4.103 1.657 5.85 2.826 4.127 8.452 5.384 12.722 2.732 2.281-1.417 3.734-3.479 4.359-6.186a.146.148 84 0 1 .084-.103c.282-.128.582-.226.857-.368 2.081-1.072 3.515-2.725 4.301-4.96a.181.183 13.8 0 0-.144-.24.253.253 0 0 0-.127.011c-.937.327-1.907.549-2.909.666a.03.03 0 0 1-.028-.047c1.979-2.682 2.912-5.72 2.799-9.112-.003-.1-.052-.162-.148-.188a.175.17 28.9 0 0-.174.048c-2.14 2.292-4.711 3.686-7.715 4.185-.077.012-.098-.016-.063-.086.805-1.595.766-3.625.145-5.23a.196.196 0 0 0-.158-.123zm-2.151 13.195c.097-.013.115.057.053.209a6.621 6.621 0 0 1-1.258 2.003c-.88.963-1.967 1.343-3.265 1.139a2.952 2.952 0 0 1-1.856-1.111.088.088 0 0 1 .001-.109.15.15 0 0 1 .109-.058c2.184-.205 4.073-1.122 6.092-2.033a.462.462 0 0 1 .124-.04zm-12.231.618c.04.005.1.04.182.11.739.624 1.679 1.212 2.644 1.296a.119.119 0 0 1 .095.171c-.556 1.113-1.661.87-2.283.025a4.223 4.223 0 0 1-.665-1.358c-.049-.17-.04-.252.027-.244z" }) + ] + } + ); +}); + +export { SiZcool as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.cjs new file mode 100644 index 000000000..606236e06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FA7D19"; +const SiZdf = React__namespace.forwardRef(function SiZdf2({ title = "ZDF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.014 4.987A7.02 7.02 0 000 12.005a7.017 7.017 0 0013.271 3.174h2.915c.696 0 1.324-.044 1.962-.553.461-.365.749-.884.883-1.56v2.103h1.336v-2.473h3.153v-1.1h-3.16l.02-.445c.005-.724.226-1.162 1.277-1.162H24V8.876h-2.818c-1.517 0-2.141.85-2.141 2.18v.129c-.254-1.565-1.185-2.31-2.889-2.31h-2.855a7.018 7.018 0 00-6.283-3.888zM8.02 8.876h3.436c1.742 0 1.992 1.219 1.992 1.9 0 .725-.298 1.873-1.992 1.873h-.844c-1.056 0-1.281.38-1.281 1.104v.336h3.945v1.074H7.982v-1.558c0-1.335.625-2.123 2.137-2.123h.873c.691 0 1.1-.14 1.1-.725 0-.605-.409-.772-1.12-.772h-2.95v-1.11zm6.63 1.113h1.472c1.157 0 1.574.496 1.574 2.04 0 1.542-.412 2.036-1.574 2.036H14.65z" }) + ] + } + ); +}); + +exports.default = SiZdf; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.d.ts new file mode 100644 index 000000000..599882103 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FA7D19"; +declare const SiZdf: IconType; +export { SiZdf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.mjs new file mode 100644 index 000000000..dcc940d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZdf.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FA7D19"; +const SiZdf = React.forwardRef(function SiZdf2({ title = "ZDF", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.014 4.987A7.02 7.02 0 000 12.005a7.017 7.017 0 0013.271 3.174h2.915c.696 0 1.324-.044 1.962-.553.461-.365.749-.884.883-1.56v2.103h1.336v-2.473h3.153v-1.1h-3.16l.02-.445c.005-.724.226-1.162 1.277-1.162H24V8.876h-2.818c-1.517 0-2.141.85-2.141 2.18v.129c-.254-1.565-1.185-2.31-2.889-2.31h-2.855a7.018 7.018 0 00-6.283-3.888zM8.02 8.876h3.436c1.742 0 1.992 1.219 1.992 1.9 0 .725-.298 1.873-1.992 1.873h-.844c-1.056 0-1.281.38-1.281 1.104v.336h3.945v1.074H7.982v-1.558c0-1.335.625-2.123 2.137-2.123h.873c.691 0 1.1-.14 1.1-.725 0-.605-.409-.772-1.12-.772h-2.95v-1.11zm6.63 1.113h1.472c1.157 0 1.574.496 1.574 2.04 0 1.542-.412 2.036-1.574 2.036H14.65z" }) + ] + } + ); +}); + +export { SiZdf as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.cjs new file mode 100644 index 000000000..f6b375289 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#2072EF"; +const SiZebpay = React__namespace.forwardRef(function SiZebpay2({ title = "ZebPay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.736 10.245S17.304 21.238 16.902 20.83l.905-1.091L6.828 9.31c-.331.279-.698.592-1.092.935Zm-4.88 4.38s-.828.823-.855 1.97c-.018.52.134 1.108.604 1.713 0 0 .007.012.026.035a2.267 2.267 0 0 0 .733.51c.038.016.08.035.126.05.11.042.237.077.373.108a4.28 4.28 0 0 0 1.217.064l.222-.023c.076-.011.153-.02.232-.034.08-.012.161-.027.245-.042.007 0 .011 0 .02-.004.007 0 .015 0 .022-.004.768-.151 1.706-.467 2.836-1.022l-4.702-4.478c-.373.38-.743.767-1.1 1.156Zm8.276-7.472s-.305.236-.801.636l-.294.236 10.907 10.378.92-1.093L9.161 7.12c-.011.01-.019.022-.03.033Zm-5.91 5.07 5.126 4.882a5.421 5.421 0 0 1 1.738-.32L4.27 11.245c-.343.314-.693.64-1.047.978Zm5.529-8.885s-.414.14-.61.46L20.96 16.011l.921-1.09L9.544 3.158c-.276.04-.544.096-.793.18Zm5.959.443s-1.081-.353-2.434-.556l10.818 10.253.906-1.07-.722-.682-8.18-7.79c-.128-.05-.256-.103-.388-.155Z" }) + ] + } + ); +}); + +exports.default = SiZebpay; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.d.ts new file mode 100644 index 000000000..76f17a867 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#2072EF"; +declare const SiZebpay: IconType; +export { SiZebpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.mjs new file mode 100644 index 000000000..8bdf5d4d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZebpay.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#2072EF"; +const SiZebpay = React.forwardRef(function SiZebpay2({ title = "ZebPay", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.736 10.245S17.304 21.238 16.902 20.83l.905-1.091L6.828 9.31c-.331.279-.698.592-1.092.935Zm-4.88 4.38s-.828.823-.855 1.97c-.018.52.134 1.108.604 1.713 0 0 .007.012.026.035a2.267 2.267 0 0 0 .733.51c.038.016.08.035.126.05.11.042.237.077.373.108a4.28 4.28 0 0 0 1.217.064l.222-.023c.076-.011.153-.02.232-.034.08-.012.161-.027.245-.042.007 0 .011 0 .02-.004.007 0 .015 0 .022-.004.768-.151 1.706-.467 2.836-1.022l-4.702-4.478c-.373.38-.743.767-1.1 1.156Zm8.276-7.472s-.305.236-.801.636l-.294.236 10.907 10.378.92-1.093L9.161 7.12c-.011.01-.019.022-.03.033Zm-5.91 5.07 5.126 4.882a5.421 5.421 0 0 1 1.738-.32L4.27 11.245c-.343.314-.693.64-1.047.978Zm5.529-8.885s-.414.14-.61.46L20.96 16.011l.921-1.09L9.544 3.158c-.276.04-.544.096-.793.18Zm5.959.443s-1.081-.353-2.434-.556l10.818 10.253.906-1.07-.722-.682-8.18-7.79c-.128-.05-.256-.103-.388-.155Z" }) + ] + } + ); +}); + +export { SiZebpay as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.cjs new file mode 100644 index 000000000..fe8f63152 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiZebratechnologies = React__namespace.forwardRef(function SiZebratechnologies2({ title = "Zebra Technologies", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.145 13.109H4.6v-1.545l.545.546v.999zm-2.183-.095.546.546v.771L2.417 13.24v-3.092L1.003 8.739a2.73 2.73 0 0 1 .465-.306l1.494 1.489V8.126a.899.899 0 0 1 .084 1.793h.7l.002.003.543.543H2.962v2.549zm.546-2.545-.003 2.636h.546l.002-2.088-.545-.548zm1.873 1.095-.546-.546h-.781l.545.546h.782zm-3.51 1.162v-2.348L.616 9.125c-.118.143-.221.299-.308.464l1.016 1.016v.771L.093 10.144c-.059.217-.09.445-.093.68l1.87 1.902zM.01 11.604v.772l3.498 3.499v-.772L.01 11.605zm6.227.815h-.546v.69h-.546a.899.899 0 1 0 1.798 0l-.706-.69zm2.977.701 1.658-3.186h-2.55l-.41.78h1.469l-1.659 3.185h2.551l.41-.779H9.213zm2.95-2.407h1.307v-.779h-2.27V13.9h2.27v-.778h-1.308v-.82h1.308v-.78h-1.308v-.808zm1.78-.779V13.9h1.622c.404 0 .642-.053.838-.184.256-.173.404-.5.404-.868 0-.291-.089-.523-.267-.69-.125-.119-.232-.172-.476-.226.214-.059.303-.112.416-.231a.937.937 0 0 0 .268-.69c0-.38-.167-.72-.44-.886-.214-.136-.505-.19-1.01-.19h-1.356zm.962.72h.226c.452 0 .636.136.636.457 0 .327-.184.464-.624.464h-.238v-.921zm0 1.622h.22c.291 0 .387.012.493.072.143.077.214.214.214.404 0 .32-.172.458-.576.458h-.35v-.934zm3.239.09.868 1.533h1.153l-.874-1.456c.511-.202.767-.6.767-1.207 0-.434-.155-.79-.428-1.005-.262-.202-.642-.297-1.165-.297h-1.284V13.9h.963v-1.533zm0-.541v-1.1h.368c.34 0 .571.226.571.553 0 .344-.238.547-.63.547h-.309zm4.566 1.294h-1.285l-.245.78h-1.015l1.308-3.964h1.224L24 13.899h-1.045l-.244-.78zm-.244-.78-.398-1.269-.398 1.27h.796z" }) + ] + } + ); +}); + +exports.default = SiZebratechnologies; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.d.ts new file mode 100644 index 000000000..e81ee3e54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiZebratechnologies: IconType; +export { SiZebratechnologies as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.mjs new file mode 100644 index 000000000..dacfb4bd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZebratechnologies.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiZebratechnologies = React.forwardRef(function SiZebratechnologies2({ title = "Zebra Technologies", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.145 13.109H4.6v-1.545l.545.546v.999zm-2.183-.095.546.546v.771L2.417 13.24v-3.092L1.003 8.739a2.73 2.73 0 0 1 .465-.306l1.494 1.489V8.126a.899.899 0 0 1 .084 1.793h.7l.002.003.543.543H2.962v2.549zm.546-2.545-.003 2.636h.546l.002-2.088-.545-.548zm1.873 1.095-.546-.546h-.781l.545.546h.782zm-3.51 1.162v-2.348L.616 9.125c-.118.143-.221.299-.308.464l1.016 1.016v.771L.093 10.144c-.059.217-.09.445-.093.68l1.87 1.902zM.01 11.604v.772l3.498 3.499v-.772L.01 11.605zm6.227.815h-.546v.69h-.546a.899.899 0 1 0 1.798 0l-.706-.69zm2.977.701 1.658-3.186h-2.55l-.41.78h1.469l-1.659 3.185h2.551l.41-.779H9.213zm2.95-2.407h1.307v-.779h-2.27V13.9h2.27v-.778h-1.308v-.82h1.308v-.78h-1.308v-.808zm1.78-.779V13.9h1.622c.404 0 .642-.053.838-.184.256-.173.404-.5.404-.868 0-.291-.089-.523-.267-.69-.125-.119-.232-.172-.476-.226.214-.059.303-.112.416-.231a.937.937 0 0 0 .268-.69c0-.38-.167-.72-.44-.886-.214-.136-.505-.19-1.01-.19h-1.356zm.962.72h.226c.452 0 .636.136.636.457 0 .327-.184.464-.624.464h-.238v-.921zm0 1.622h.22c.291 0 .387.012.493.072.143.077.214.214.214.404 0 .32-.172.458-.576.458h-.35v-.934zm3.239.09.868 1.533h1.153l-.874-1.456c.511-.202.767-.6.767-1.207 0-.434-.155-.79-.428-1.005-.262-.202-.642-.297-1.165-.297h-1.284V13.9h.963v-1.533zm0-.541v-1.1h.368c.34 0 .571.226.571.553 0 .344-.238.547-.63.547h-.309zm4.566 1.294h-1.285l-.245.78h-1.015l1.308-3.964h1.224L24 13.899h-1.045l-.244-.78zm-.244-.78-.398-1.269-.398 1.27h.796z" }) + ] + } + ); +}); + +export { SiZebratechnologies as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.cjs new file mode 100644 index 000000000..0ce275e1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#084CCF"; +const SiZedindustries = React__namespace.forwardRef(function SiZedindustries2({ title = "Zed Industries", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.25 1.5a.75.75 0 0 0-.75.75v16.5H0V2.25A2.25 2.25 0 0 1 2.25 0h20.095c1.002 0 1.504 1.212.795 1.92L10.764 14.298h3.486V12.75h1.5v1.922a1.125 1.125 0 0 1-1.125 1.125H9.264l-2.578 2.578h11.689V9h1.5v9.375a1.5 1.5 0 0 1-1.5 1.5H5.185L2.562 22.5H21.75a.75.75 0 0 0 .75-.75V5.25H24v16.5A2.25 2.25 0 0 1 21.75 24H1.655C.653 24 .151 22.788.86 22.08L13.19 9.75H9.75v1.5h-1.5V9.375A1.125 1.125 0 0 1 9.375 8.25h5.314l2.625-2.625H5.625V15h-1.5V5.625a1.5 1.5 0 0 1 1.5-1.5h13.19L21.438 1.5z" }) + ] + } + ); +}); + +exports.default = SiZedindustries; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.d.ts new file mode 100644 index 000000000..099703061 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#084CCF"; +declare const SiZedindustries: IconType; +export { SiZedindustries as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.mjs new file mode 100644 index 000000000..9b9642ea4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZedindustries.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#084CCF"; +const SiZedindustries = React.forwardRef(function SiZedindustries2({ title = "Zed Industries", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.25 1.5a.75.75 0 0 0-.75.75v16.5H0V2.25A2.25 2.25 0 0 1 2.25 0h20.095c1.002 0 1.504 1.212.795 1.92L10.764 14.298h3.486V12.75h1.5v1.922a1.125 1.125 0 0 1-1.125 1.125H9.264l-2.578 2.578h11.689V9h1.5v9.375a1.5 1.5 0 0 1-1.5 1.5H5.185L2.562 22.5H21.75a.75.75 0 0 0 .75-.75V5.25H24v16.5A2.25 2.25 0 0 1 21.75 24H1.655C.653 24 .151 22.788.86 22.08L13.19 9.75H9.75v1.5h-1.5V9.375A1.125 1.125 0 0 1 9.375 8.25h5.314l2.625-2.625H5.625V15h-1.5V5.625a1.5 1.5 0 0 1 1.5-1.5h13.19L21.438 1.5z" }) + ] + } + ); +}); + +export { SiZedindustries as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.cjs new file mode 100644 index 000000000..7f7b47fa6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6D1ED4"; +const SiZelle = React__namespace.forwardRef(function SiZelle2({ title = "Zelle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.559 24h-2.841a.483.483 0 0 1-.483-.483v-2.765H5.638a.667.667 0 0 1-.666-.666v-2.234a.67.67 0 0 1 .142-.412l8.139-10.382h-7.25a.667.667 0 0 1-.667-.667V3.914c0-.367.299-.666.666-.666h4.23V.483c0-.266.217-.483.483-.483h2.841c.266 0 .483.217.483.483v2.765h4.323c.367 0 .666.299.666.666v2.137a.67.67 0 0 1-.141.41l-8.19 10.481h7.665c.367 0 .666.299.666.666v2.477a.667.667 0 0 1-.666.667h-4.32v2.765a.483.483 0 0 1-.483.483Z" }) + ] + } + ); +}); + +exports.default = SiZelle; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.d.ts new file mode 100644 index 000000000..f470afe99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6D1ED4"; +declare const SiZelle: IconType; +export { SiZelle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.mjs new file mode 100644 index 000000000..e54792235 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZelle.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6D1ED4"; +const SiZelle = React.forwardRef(function SiZelle2({ title = "Zelle", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M13.559 24h-2.841a.483.483 0 0 1-.483-.483v-2.765H5.638a.667.667 0 0 1-.666-.666v-2.234a.67.67 0 0 1 .142-.412l8.139-10.382h-7.25a.667.667 0 0 1-.667-.667V3.914c0-.367.299-.666.666-.666h4.23V.483c0-.266.217-.483.483-.483h2.841c.266 0 .483.217.483.483v2.765h4.323c.367 0 .666.299.666.666v2.137a.67.67 0 0 1-.141.41l-8.19 10.481h7.665c.367 0 .666.299.666.666v2.477a.667.667 0 0 1-.666.667h-4.32v2.765a.483.483 0 0 1-.483.483Z" }) + ] + } + ); +}); + +export { SiZelle as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.cjs new file mode 100644 index 000000000..42b1335a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F76F53"; +const SiZenbrowser = React__namespace.forwardRef(function SiZenbrowser2({ title = "Zen Browser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z" }) + ] + } + ); +}); + +exports.default = SiZenbrowser; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.d.ts new file mode 100644 index 000000000..071575e6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F76F53"; +declare const SiZenbrowser: IconType; +export { SiZenbrowser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.mjs new file mode 100644 index 000000000..d83cdac66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenbrowser.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F76F53"; +const SiZenbrowser = React.forwardRef(function SiZenbrowser2({ title = "Zen Browser", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12zm-12 9.846c5.438 0 9.846-4.408 9.846-9.846S17.438 2.154 12 2.154 2.154 6.562 2.154 12 6.562 21.846 12 21.846zM20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0zm-8 6.462a6.462 6.462 0 1 0 0-12.924 6.462 6.462 0 0 0 0 12.924zm0-1.847a4.615 4.615 0 1 0 0-9.23 4.615 4.615 0 0 0 0 9.23zM15.692 12a3.692 3.692 0 1 1-7.384 0 3.692 3.692 0 0 1 7.384 0z" }) + ] + } + ); +}); + +export { SiZenbrowser as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZend.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZend.cjs new file mode 100644 index 000000000..243dad9be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZend.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0679EA"; +const SiZend = React__namespace.forwardRef(function SiZend2({ title = "Zend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M24 .467L9.01 20.217H20.54A3.46 3.46 0 0024 16.757V.468zM3.459 3.783C1.585 3.783 0 5.153 0 7.1v16.433l15.063-19.75H3.459Z" }) + ] + } + ); +}); + +exports.default = SiZend; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZend.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZend.d.ts new file mode 100644 index 000000000..600a45a38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZend.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0679EA"; +declare const SiZend: IconType; +export { SiZend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZend.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZend.mjs new file mode 100644 index 000000000..75fb43050 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZend.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0679EA"; +const SiZend = React.forwardRef(function SiZend2({ title = "Zend", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M24 .467L9.01 20.217H20.54A3.46 3.46 0 0024 16.757V.468zM3.459 3.783C1.585 3.783 0 5.153 0 7.1v16.433l15.063-19.75H3.459Z" }) + ] + } + ); +}); + +export { SiZend as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.cjs new file mode 100644 index 000000000..431507495 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#03363D"; +const SiZendesk = React__namespace.forwardRef(function SiZendesk2({ title = "Zendesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.914 2.904V16.29L24 2.905H12.914zM0 2.906C0 5.966 2.483 8.45 5.543 8.45s5.542-2.484 5.543-5.544H0zm11.086 4.807L0 21.096h11.086V7.713zm7.37 7.84c-3.063 0-5.542 2.48-5.542 5.543H24c0-3.06-2.48-5.543-5.543-5.543z" }) + ] + } + ); +}); + +exports.default = SiZendesk; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.d.ts new file mode 100644 index 000000000..6cbb3e5ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#03363D"; +declare const SiZendesk: IconType; +export { SiZendesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.mjs new file mode 100644 index 000000000..8e1d573ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZendesk.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#03363D"; +const SiZendesk = React.forwardRef(function SiZendesk2({ title = "Zendesk", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.914 2.904V16.29L24 2.905H12.914zM0 2.906C0 5.966 2.483 8.45 5.543 8.45s5.542-2.484 5.543-5.544H0zm11.086 4.807L0 21.096h11.086V7.713zm7.37 7.84c-3.063 0-5.542 2.48-5.542 5.543H24c0-3.06-2.48-5.543-5.543-5.543z" }) + ] + } + ); +}); + +export { SiZendesk as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.cjs new file mode 100644 index 000000000..d52fba5f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#3EA8FF"; +const SiZenn = React__namespace.forwardRef(function SiZenn2({ title = "Zenn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M.264 23.771h4.984c.264 0 .498-.147.645-.352L19.614.874c.176-.293-.029-.645-.381-.645h-4.72c-.235 0-.44.117-.557.323L.03 23.361c-.088.176.029.41.234.41zM17.445 23.419l6.479-10.408c.205-.323-.029-.733-.41-.733h-4.691c-.176 0-.352.088-.44.235l-6.655 10.643c-.176.264.029.616.352.616h4.779c.234-.001.468-.118.586-.353z" }) + ] + } + ); +}); + +exports.default = SiZenn; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.d.ts new file mode 100644 index 000000000..38cfd44cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#3EA8FF"; +declare const SiZenn: IconType; +export { SiZenn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.mjs new file mode 100644 index 000000000..586d329d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenn.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#3EA8FF"; +const SiZenn = React.forwardRef(function SiZenn2({ title = "Zenn", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M.264 23.771h4.984c.264 0 .498-.147.645-.352L19.614.874c.176-.293-.029-.645-.381-.645h-4.72c-.235 0-.44.117-.557.323L.03 23.361c-.088.176.029.41.234.41zM17.445 23.419l6.479-10.408c.205-.323-.029-.733-.41-.733h-4.691c-.176 0-.352.088-.44.235l-6.655 10.643c-.176.264.029.616.352.616h4.779c.234-.001.468-.118.586-.353z" }) + ] + } + ); +}); + +export { SiZenn as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.cjs new file mode 100644 index 000000000..ce7b03232 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1682D4"; +const SiZenodo = React__namespace.forwardRef(function SiZenodo2({ title = "Zenodo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23.82698 11.163a2.2419 2.2419 0 00-.46698-.68697 2.1499 2.1499 0 00-1.52393-.62697 2.10991 2.10991 0 00-1.20695.36499 2.2469 2.2469 0 00-.49498.45398c-.06.075-.125.17499-.163.23599a2.68689 2.68689 0 00-.20498.46398c.006-.27.046-.67197.20499-.89797V8.52212a.42698.42698 0 00-.137-.32199.44298.44298 0 00-.31698-.132.43998.43998 0 00-.32299.132.43998.43998 0 00-.13.32199v1.73292a2.3699 2.3699 0 00-.59197-.29898 2.1239 2.1239 0 00-1.49994.06 2.1599 2.1599 0 00-1.15295 1.14695l-.024.06a2.2419 2.2419 0 00-.48997-.74697 2.1529 2.1529 0 00-1.52394-.62698 2.10991 2.10991 0 00-.84296.167 2.2299 2.2299 0 00-.68697.45998 2.10591 2.10591 0 00-.46598.68697l-.023.056-.023-.056a2.1549 2.1549 0 00-1.98992-1.31395c-.30098 0-.58197.056-.84196.167a2.2299 2.2299 0 00-.68597.45998c-.2.19599-.35499.42398-.46698.68697l-.02.053-.022-.053a2.2429 2.2429 0 00-.46698-.68698 2.1479 2.1479 0 00-1.52293-.62697 2.10991 2.10991 0 00-.84197.167 2.2289 2.2289 0 00-.64197.41798v-.072a.46298.46298 0 00-.46198-.46298H.53398a.46298.46298 0 000 .92596h2.54889L.091 14.84985a.46198.46198 0 00-.091.27499v.30198c0 .256.207.46298.46298.46298h3.44985a.46198.46198 0 00.46198-.42998 2.1689 2.1689 0 001.34695.47198c.44598 0 .84396-.12 1.19494-.35998.283-.192.50698-.43098.66998-.71997v.62597c0 .127.043.235.13.32199a.43598.43598 0 00.32398.132c.12 0 .22399-.044.31598-.132a.42698.42698 0 00.138-.32199V13.8579h-.002l.002-.003H7.36069a.43998.43998 0 00-.41799.28699l-.074.152a1.23395 1.23395 0 01-.45997.53197 1.23395 1.23395 0 01-.68697.197c-.168 0-.32999-.031-.48498-.095a1.17495 1.17495 0 01-.39999-.27 1.38194 1.38194 0 01-.26998-.39998 1.16495 1.16495 0 01-.1-.47698v-.40598h4.02783v-1.37494a1.23695 1.23695 0 01.36498-.87796 1.23995 1.23995 0 01.88996-.36499c.167 0 .32899.032.48398.095.155.065.289.154.39999.27.112.11499.19999.24898.26898.39997.067.151.102.311.102.47798v3.47686c0 .12799.043.23599.13.32298a.43798.43798 0 00.32398.132c.12 0 .224-.044.31599-.132a.43098.43098 0 00.137-.32299v-.62297a2.1439 2.1439 0 001.86791 1.07795c.29399 0 .57398-.056.83697-.168.26199-.11099.49298-.26398.69297-.45997a2.11191 2.11191 0 00.48398-.73297l.018.047c.111.26199.26699.48998.46598.68697.19999.195.42798.34799.68697.45998.25799.11.53997.167.84296.167a2.1469 2.1469 0 001.52294-.62698c.19499-.196.35098-.42498.46698-.68697l.024-.06.024.06c.115.26199.26998.48998.46598.68697a2.1439 2.1439 0 001.52393.62697c.29398 0 .57397-.056.83696-.168a2.2199 2.2199 0 00.69297-.45997 2.11691 2.11691 0 00.63498-1.52194v-1.78192a2.07991 2.07991 0 00-.173-.83696zM1.15995 14.96485l2.4199-3.25886c-.012.096-.02.194-.02.29399v1.77992c0 .296.058.57398.174.83797.05399.123.11799.23899.18998.34698zm5.81775-2.49989H4.4678v-.46498a1.24195 1.24195 0 01.76498-1.14695c.15199-.064.31498-.096.48998-.096.16799 0 .32998.032.48398.095.15599.065.28998.154.39998.26999.112.115.19999.24899.26999.39998.068.151.1.31099.1.47798zm8.05766 1.31594a1.24895 1.24895 0 01-1.25395 1.24295c-.168 0-.32898-.032-.48498-.096a1.16795 1.16795 0 01-.39998-.26999 1.37594 1.37594 0 01-.26899-.39998 1.15895 1.15895 0 01-.1-.47698v-1.78092a1.23995 1.23995 0 011.25495-1.24295c.16599 0 .32798.032.48198.095.15599.065.28998.154.39998.26999.112.115.201.24899.26999.39998.067.152.101.31099.101.47798zm4.02783 0c0 .167-.033.32599-.1.47798a1.37994 1.37994 0 01-.27.39999 1.15995 1.15995 0 01-.39998.26998 1.25995 1.25995 0 01-.48397.094 1.23195 1.23195 0 01-.88997-.36398 1.24195 1.24195 0 01-.36598-.87796v-1.78093c0-.16699.035-.32598.102-.47798a1.39994 1.39994 0 01.26998-.39998 1.15995 1.15995 0 01.39999-.26999 1.26995 1.26995 0 01.48398-.095 1.24995 1.24995 0 01.88996.36499 1.24995 1.24995 0 01.36398.87796zm4.02782 0a1.22395 1.22395 0 01-.36398.87797c-.116.116-.24999.20499-.39998.26998a1.24995 1.24995 0 01-.48998.094 1.26995 1.26995 0 01-.48498-.095 1.16895 1.16895 0 01-.39999-.26998 1.37994 1.37994 0 01-.26998-.39999 1.15695 1.15695 0 01-.1-.47698v-1.78092a1.23995 1.23995 0 011.25494-1.24295c.167 0 .32799.032.48298.095.156.065.29.154.39999.27.112.11499.20099.24898.26998.39997.067.152.1.311.1.47798v1.77993z" }) + ] + } + ); +}); + +exports.default = SiZenodo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.d.ts new file mode 100644 index 000000000..60b9c3896 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1682D4"; +declare const SiZenodo: IconType; +export { SiZenodo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.mjs new file mode 100644 index 000000000..78f07b8ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZenodo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1682D4"; +const SiZenodo = React.forwardRef(function SiZenodo2({ title = "Zenodo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M23.82698 11.163a2.2419 2.2419 0 00-.46698-.68697 2.1499 2.1499 0 00-1.52393-.62697 2.10991 2.10991 0 00-1.20695.36499 2.2469 2.2469 0 00-.49498.45398c-.06.075-.125.17499-.163.23599a2.68689 2.68689 0 00-.20498.46398c.006-.27.046-.67197.20499-.89797V8.52212a.42698.42698 0 00-.137-.32199.44298.44298 0 00-.31698-.132.43998.43998 0 00-.32299.132.43998.43998 0 00-.13.32199v1.73292a2.3699 2.3699 0 00-.59197-.29898 2.1239 2.1239 0 00-1.49994.06 2.1599 2.1599 0 00-1.15295 1.14695l-.024.06a2.2419 2.2419 0 00-.48997-.74697 2.1529 2.1529 0 00-1.52394-.62698 2.10991 2.10991 0 00-.84296.167 2.2299 2.2299 0 00-.68697.45998 2.10591 2.10591 0 00-.46598.68697l-.023.056-.023-.056a2.1549 2.1549 0 00-1.98992-1.31395c-.30098 0-.58197.056-.84196.167a2.2299 2.2299 0 00-.68597.45998c-.2.19599-.35499.42398-.46698.68697l-.02.053-.022-.053a2.2429 2.2429 0 00-.46698-.68698 2.1479 2.1479 0 00-1.52293-.62697 2.10991 2.10991 0 00-.84197.167 2.2289 2.2289 0 00-.64197.41798v-.072a.46298.46298 0 00-.46198-.46298H.53398a.46298.46298 0 000 .92596h2.54889L.091 14.84985a.46198.46198 0 00-.091.27499v.30198c0 .256.207.46298.46298.46298h3.44985a.46198.46198 0 00.46198-.42998 2.1689 2.1689 0 001.34695.47198c.44598 0 .84396-.12 1.19494-.35998.283-.192.50698-.43098.66998-.71997v.62597c0 .127.043.235.13.32199a.43598.43598 0 00.32398.132c.12 0 .22399-.044.31598-.132a.42698.42698 0 00.138-.32199V13.8579h-.002l.002-.003H7.36069a.43998.43998 0 00-.41799.28699l-.074.152a1.23395 1.23395 0 01-.45997.53197 1.23395 1.23395 0 01-.68697.197c-.168 0-.32999-.031-.48498-.095a1.17495 1.17495 0 01-.39999-.27 1.38194 1.38194 0 01-.26998-.39998 1.16495 1.16495 0 01-.1-.47698v-.40598h4.02783v-1.37494a1.23695 1.23695 0 01.36498-.87796 1.23995 1.23995 0 01.88996-.36499c.167 0 .32899.032.48398.095.155.065.289.154.39999.27.112.11499.19999.24898.26898.39997.067.151.102.311.102.47798v3.47686c0 .12799.043.23599.13.32298a.43798.43798 0 00.32398.132c.12 0 .224-.044.31599-.132a.43098.43098 0 00.137-.32299v-.62297a2.1439 2.1439 0 001.86791 1.07795c.29399 0 .57398-.056.83697-.168.26199-.11099.49298-.26398.69297-.45997a2.11191 2.11191 0 00.48398-.73297l.018.047c.111.26199.26699.48998.46598.68697.19999.195.42798.34799.68697.45998.25799.11.53997.167.84296.167a2.1469 2.1469 0 001.52294-.62698c.19499-.196.35098-.42498.46698-.68697l.024-.06.024.06c.115.26199.26998.48998.46598.68697a2.1439 2.1439 0 001.52393.62697c.29398 0 .57397-.056.83696-.168a2.2199 2.2199 0 00.69297-.45997 2.11691 2.11691 0 00.63498-1.52194v-1.78192a2.07991 2.07991 0 00-.173-.83696zM1.15995 14.96485l2.4199-3.25886c-.012.096-.02.194-.02.29399v1.77992c0 .296.058.57398.174.83797.05399.123.11799.23899.18998.34698zm5.81775-2.49989H4.4678v-.46498a1.24195 1.24195 0 01.76498-1.14695c.15199-.064.31498-.096.48998-.096.16799 0 .32998.032.48398.095.15599.065.28998.154.39998.26999.112.115.19999.24899.26999.39998.068.151.1.31099.1.47798zm8.05766 1.31594a1.24895 1.24895 0 01-1.25395 1.24295c-.168 0-.32898-.032-.48498-.096a1.16795 1.16795 0 01-.39998-.26999 1.37594 1.37594 0 01-.26899-.39998 1.15895 1.15895 0 01-.1-.47698v-1.78092a1.23995 1.23995 0 011.25495-1.24295c.16599 0 .32798.032.48198.095.15599.065.28998.154.39998.26999.112.115.201.24899.26999.39998.067.152.101.31099.101.47798zm4.02783 0c0 .167-.033.32599-.1.47798a1.37994 1.37994 0 01-.27.39999 1.15995 1.15995 0 01-.39998.26998 1.25995 1.25995 0 01-.48397.094 1.23195 1.23195 0 01-.88997-.36398 1.24195 1.24195 0 01-.36598-.87796v-1.78093c0-.16699.035-.32598.102-.47798a1.39994 1.39994 0 01.26998-.39998 1.15995 1.15995 0 01.39999-.26999 1.26995 1.26995 0 01.48398-.095 1.24995 1.24995 0 01.88996.36499 1.24995 1.24995 0 01.36398.87796zm4.02782 0a1.22395 1.22395 0 01-.36398.87797c-.116.116-.24999.20499-.39998.26998a1.24995 1.24995 0 01-.48998.094 1.26995 1.26995 0 01-.48498-.095 1.16895 1.16895 0 01-.39999-.26998 1.37994 1.37994 0 01-.26998-.39999 1.15695 1.15695 0 01-.1-.47698v-1.78092a1.23995 1.23995 0 011.25494-1.24295c.167 0 .32799.032.48298.095.156.065.29.154.39999.27.112.11499.20099.24898.26998.39997.067.152.1.311.1.47798v1.77993z" }) + ] + } + ); +}); + +export { SiZenodo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.cjs new file mode 100644 index 000000000..1d4c6b1c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#000000"; +const SiZensar = React__namespace.forwardRef(function SiZensar2({ title = "Zensar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.929 13.776c.28.084 1.01.205 1.662.205 1.047 0 1.64-.463 1.64-1.283 0-.683-.464-1.01-1.412-1.29-.73-.213-1.04-.319-1.04-.653 0-.38.334-.562.744-.554.561.008 1.062.425 1.336 1.131h.129v-1.131a7.835 7.835 0 0 0-1.412-.167c-1.07 0-1.678.47-1.678 1.23 0 .615.41.979 1.313 1.237.896.258 1.177.364 1.177.744 0 .341-.364.57-.82.57-.721 0-1.275-.54-1.518-1.284h-.121v1.245zm-1.911-3.72c-.4 0-.847.207-1.253.651v-.597H8.023v.144c.418 0 .6.213.6.524v3.127H9.78v-2.974c.243-.253.495-.343.66-.343.32 0 .564.205.564.623v2.694h1.166v-2.694c0-.699-.378-1.154-1.152-1.154zm-5.606 1.921v.228c0 .88.402 1.412 1.161 1.412.501 0 .88-.243 1.154-.615l.137.083c-.334.585-.934.896-1.678.896-1.427 0-2.11-.804-2.11-2.027 0-1.199.835-1.935 2.004-1.935 1.177 0 1.807.698 1.807 1.73v.228H5.412zm.463-1.768a.986.986 0 0 0-.463.107v1.464h1.192v-.767c0-.508-.243-.804-.729-.804zm14.5 1.077v2.62H19.13v-.433a1.72 1.72 0 0 1-1.214.508c-.73 0-1.185-.417-1.185-.964s.365-.804.767-.934l1.617-.53v-.57c0-.494-.25-.774-.706-.774-.15 0-.271.018-.387.05v1.08a1.497 1.497 0 0 1-.516.084c-.38 0-.623-.22-.623-.524 0-.561.79-.865 1.754-.865 1.01 0 1.738.342 1.738 1.252zm-1.822 2.194a.767.767 0 0 0 .562-.213v-1.51l-1.1.367v.711c0 .425.181.645.538.645zM3.681 10.21v-.099H.121v1.48h.13c.106-.645.645-1.328 1.54-1.328v1.746L0 13.807v.098h3.651V12.35h-.129c-.114.653-.698 1.404-1.624 1.404v-1.745l1.783-1.8zM24 10.042v1.1h-.66c-.384 0-.682.058-.866.403v2.36h-1.157v-3.127c0-.311-.182-.524-.6-.524v-.144h1.742v1.146c.37-.83.795-1.214 1.366-1.214H24z" }) + ] + } + ); +}); + +exports.default = SiZensar; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.d.ts new file mode 100644 index 000000000..60a658dec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#000000"; +declare const SiZensar: IconType; +export { SiZensar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.mjs new file mode 100644 index 000000000..5399521f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZensar.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#000000"; +const SiZensar = React.forwardRef(function SiZensar2({ title = "Zensar", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.929 13.776c.28.084 1.01.205 1.662.205 1.047 0 1.64-.463 1.64-1.283 0-.683-.464-1.01-1.412-1.29-.73-.213-1.04-.319-1.04-.653 0-.38.334-.562.744-.554.561.008 1.062.425 1.336 1.131h.129v-1.131a7.835 7.835 0 0 0-1.412-.167c-1.07 0-1.678.47-1.678 1.23 0 .615.41.979 1.313 1.237.896.258 1.177.364 1.177.744 0 .341-.364.57-.82.57-.721 0-1.275-.54-1.518-1.284h-.121v1.245zm-1.911-3.72c-.4 0-.847.207-1.253.651v-.597H8.023v.144c.418 0 .6.213.6.524v3.127H9.78v-2.974c.243-.253.495-.343.66-.343.32 0 .564.205.564.623v2.694h1.166v-2.694c0-.699-.378-1.154-1.152-1.154zm-5.606 1.921v.228c0 .88.402 1.412 1.161 1.412.501 0 .88-.243 1.154-.615l.137.083c-.334.585-.934.896-1.678.896-1.427 0-2.11-.804-2.11-2.027 0-1.199.835-1.935 2.004-1.935 1.177 0 1.807.698 1.807 1.73v.228H5.412zm.463-1.768a.986.986 0 0 0-.463.107v1.464h1.192v-.767c0-.508-.243-.804-.729-.804zm14.5 1.077v2.62H19.13v-.433a1.72 1.72 0 0 1-1.214.508c-.73 0-1.185-.417-1.185-.964s.365-.804.767-.934l1.617-.53v-.57c0-.494-.25-.774-.706-.774-.15 0-.271.018-.387.05v1.08a1.497 1.497 0 0 1-.516.084c-.38 0-.623-.22-.623-.524 0-.561.79-.865 1.754-.865 1.01 0 1.738.342 1.738 1.252zm-1.822 2.194a.767.767 0 0 0 .562-.213v-1.51l-1.1.367v.711c0 .425.181.645.538.645zM3.681 10.21v-.099H.121v1.48h.13c.106-.645.645-1.328 1.54-1.328v1.746L0 13.807v.098h3.651V12.35h-.129c-.114.653-.698 1.404-1.624 1.404v-1.745l1.783-1.8zM24 10.042v1.1h-.66c-.384 0-.682.058-.866.403v2.36h-1.157v-3.127c0-.311-.182-.524-.6-.524v-.144h1.742v1.146c.37-.83.795-1.214 1.366-1.214H24z" }) + ] + } + ); +}); + +export { SiZensar as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.cjs new file mode 100644 index 000000000..1cd852f26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#387ED1"; +const SiZerodha = React__namespace.forwardRef(function SiZerodha2({ title = "Zerodha", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.378 5.835A27.267 27.267 0 0124 12.169V0H13.666c2.486 1.343 4.763 3.308 6.712 5.835zM5.48 1.297c-1.914 0-3.755.409-5.48 1.166V24h22.944C22.766 11.44 15 1.297 5.48 1.297z" }) + ] + } + ); +}); + +exports.default = SiZerodha; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.d.ts new file mode 100644 index 000000000..1c027022f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#387ED1"; +declare const SiZerodha: IconType; +export { SiZerodha as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.mjs new file mode 100644 index 000000000..f317f2ab4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZerodha.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#387ED1"; +const SiZerodha = React.forwardRef(function SiZerodha2({ title = "Zerodha", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M20.378 5.835A27.267 27.267 0 0124 12.169V0H13.666c2.486 1.343 4.763 3.308 6.712 5.835zM5.48 1.297c-1.914 0-3.755.409-5.48 1.166V24h22.944C22.766 11.44 15 1.297 5.48 1.297z" }) + ] + } + ); +}); + +export { SiZerodha as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.cjs new file mode 100644 index 000000000..1a527756e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFB441"; +const SiZerotier = React__namespace.forwardRef(function SiZerotier2({ title = "ZeroTier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.01 0A3.999 3.999 0 0 0 .014 4v16c0 2.209 1.79 4 3.996 4h15.98a3.998 3.998 0 0 0 3.996-4V4c0-2.209-1.79-4-3.996-4zm-.672 2.834h17.326a.568.568 0 1 1 0 1.137h-8.129c.021.059.033.123.033.19v1.804A6.06 6.06 0 0 1 18.057 12c0 3.157-2.41 5.75-5.489 6.037v2.56a.568.568 0 1 1-1.136 0v-2.56A6.061 6.061 0 0 1 5.943 12a6.06 6.06 0 0 1 5.489-6.035V4.16c0-.066.012-.13.033-.19H3.338a.568.568 0 1 1 0-1.136zm8.094 4.307A4.89 4.89 0 0 0 7.113 12a4.89 4.89 0 0 0 4.319 4.86zm1.136 0v9.718A4.892 4.892 0 0 0 16.888 12a4.892 4.892 0 0 0-4.32-4.86z" }) + ] + } + ); +}); + +exports.default = SiZerotier; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.d.ts new file mode 100644 index 000000000..231be77f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFB441"; +declare const SiZerotier: IconType; +export { SiZerotier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.mjs new file mode 100644 index 000000000..8005d9ec5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZerotier.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFB441"; +const SiZerotier = React.forwardRef(function SiZerotier2({ title = "ZeroTier", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.01 0A3.999 3.999 0 0 0 .014 4v16c0 2.209 1.79 4 3.996 4h15.98a3.998 3.998 0 0 0 3.996-4V4c0-2.209-1.79-4-3.996-4zm-.672 2.834h17.326a.568.568 0 1 1 0 1.137h-8.129c.021.059.033.123.033.19v1.804A6.06 6.06 0 0 1 18.057 12c0 3.157-2.41 5.75-5.489 6.037v2.56a.568.568 0 1 1-1.136 0v-2.56A6.061 6.061 0 0 1 5.943 12a6.06 6.06 0 0 1 5.489-6.035V4.16c0-.066.012-.13.033-.19H3.338a.568.568 0 1 1 0-1.136zm8.094 4.307A4.89 4.89 0 0 0 7.113 12a4.89 4.89 0 0 0 4.319 4.86zm1.136 0v9.718A4.892 4.892 0 0 0 16.888 12a4.892 4.892 0 0 0-4.32-4.86z" }) + ] + } + ); +}); + +export { SiZerotier as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.cjs new file mode 100644 index 000000000..e7db635a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#1CB27E"; +const SiZettlr = React__namespace.forwardRef(function SiZettlr2({ title = "Zettlr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.46.188C.335.57.023 2.534.022 4.295L.02 17.325c0 1.545-.224 3.96.723 5.28 1.201 1.673 3.567 1.355 5.365 1.351l8.31.03c1.61-.003 5.626.104 7.2-.23 2.115-.448 2.326-2.31 2.328-4.082l.01-13.634c.001-1.532.311-3.425-.68-4.71C22.021-.296 19.557.025 17.744.026L13.24.043c-1.614 0-9.195-.14-10.782.145m14.249 3.665c0 .528.185 1.466-.037 1.947-.11.239-.49.384-.703.518-.496.315-.961.676-1.418 1.044-1.477 1.185-3.034 2.818-3.428 4.74-.182.895-.164 1.988.59 2.626 1.21 1.023 3.035-.024 4.317.987 1.337 1.053 1.14 3.071.37 4.39-.184.316-.417.797-.75.982-.23.13-.598.064-.853.064h-1.85c.057-.37.35-.58.575-.862.374-.47.673-.984.668-1.6-.01-1.157-1.127-1.17-1.983-1.17-1.518 0-3.296-.216-4.073-1.724-1.337-2.595.33-5.731 2.105-7.633.695-.746 1.684-1.333 2.276-2.154h-4.07V3.853z" }) + ] + } + ); +}); + +exports.default = SiZettlr; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.d.ts new file mode 100644 index 000000000..cbd3179aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#1CB27E"; +declare const SiZettlr: IconType; +export { SiZettlr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.mjs new file mode 100644 index 000000000..ce469730f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZettlr.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#1CB27E"; +const SiZettlr = React.forwardRef(function SiZettlr2({ title = "Zettlr", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.46.188C.335.57.023 2.534.022 4.295L.02 17.325c0 1.545-.224 3.96.723 5.28 1.201 1.673 3.567 1.355 5.365 1.351l8.31.03c1.61-.003 5.626.104 7.2-.23 2.115-.448 2.326-2.31 2.328-4.082l.01-13.634c.001-1.532.311-3.425-.68-4.71C22.021-.296 19.557.025 17.744.026L13.24.043c-1.614 0-9.195-.14-10.782.145m14.249 3.665c0 .528.185 1.466-.037 1.947-.11.239-.49.384-.703.518-.496.315-.961.676-1.418 1.044-1.477 1.185-3.034 2.818-3.428 4.74-.182.895-.164 1.988.59 2.626 1.21 1.023 3.035-.024 4.317.987 1.337 1.053 1.14 3.071.37 4.39-.184.316-.417.797-.75.982-.23.13-.598.064-.853.064h-1.85c.057-.37.35-.58.575-.862.374-.47.673-.984.668-1.6-.01-1.157-1.127-1.17-1.983-1.17-1.518 0-3.296-.216-4.073-1.724-1.337-2.595.33-5.731 2.105-7.633.695-.746 1.684-1.333 2.276-2.154h-4.07V3.853z" }) + ] + } + ); +}); + +export { SiZettlr as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.cjs new file mode 100644 index 000000000..5c6f1b8df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0084FF"; +const SiZhihu = React__namespace.forwardRef(function SiZhihu2({ title = "Zhihu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.721 0C2.251 0 0 2.25 0 5.719V18.28C0 21.751 2.252 24 5.721 24h12.56C21.751 24 24 21.75 24 18.281V5.72C24 2.249 21.75 0 18.281 0zm1.964 4.078c-.271.73-.5 1.434-.68 2.11h4.587c.545-.006.445 1.168.445 1.171H9.384a58.104 58.104 0 01-.112 3.797h2.712c.388.023.393 1.251.393 1.266H9.183a9.223 9.223 0 01-.408 2.102l.757-.604c.452.456 1.512 1.712 1.906 2.177.473.681.063 2.081.063 2.081l-2.794-3.382c-.653 2.518-1.845 3.607-1.845 3.607-.523.468-1.58.82-2.64.516 2.218-1.73 3.44-3.917 3.667-6.497H4.491c0-.015.197-1.243.806-1.266h2.71c.024-.32.086-3.254.086-3.797H6.598c-.136.406-.158.447-.268.753-.594 1.095-1.603 1.122-1.907 1.155.906-1.821 1.416-3.6 1.591-4.064.425-1.124 1.671-1.125 1.671-1.125zM13.078 6h6.377v11.33h-2.573l-2.184 1.373-.401-1.373h-1.219zm1.313 1.219v8.86h.623l.263.937 1.455-.938h1.456v-8.86z" }) + ] + } + ); +}); + +exports.default = SiZhihu; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.d.ts new file mode 100644 index 000000000..9df343244 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0084FF"; +declare const SiZhihu: IconType; +export { SiZhihu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.mjs new file mode 100644 index 000000000..00528613b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZhihu.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0084FF"; +const SiZhihu = React.forwardRef(function SiZhihu2({ title = "Zhihu", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.721 0C2.251 0 0 2.25 0 5.719V18.28C0 21.751 2.252 24 5.721 24h12.56C21.751 24 24 21.75 24 18.281V5.72C24 2.249 21.75 0 18.281 0zm1.964 4.078c-.271.73-.5 1.434-.68 2.11h4.587c.545-.006.445 1.168.445 1.171H9.384a58.104 58.104 0 01-.112 3.797h2.712c.388.023.393 1.251.393 1.266H9.183a9.223 9.223 0 01-.408 2.102l.757-.604c.452.456 1.512 1.712 1.906 2.177.473.681.063 2.081.063 2.081l-2.794-3.382c-.653 2.518-1.845 3.607-1.845 3.607-.523.468-1.58.82-2.64.516 2.218-1.73 3.44-3.917 3.667-6.497H4.491c0-.015.197-1.243.806-1.266h2.71c.024-.32.086-3.254.086-3.797H6.598c-.136.406-.158.447-.268.753-.594 1.095-1.603 1.122-1.907 1.155.906-1.821 1.416-3.6 1.591-4.064.425-1.124 1.671-1.125 1.671-1.125zM13.078 6h6.377v11.33h-2.573l-2.184 1.373-.401-1.373h-1.219zm1.313 1.219v8.86h.623l.263.937 1.455-.938h1.456v-8.86z" }) + ] + } + ); +}); + +export { SiZhihu as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZig.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZig.cjs new file mode 100644 index 000000000..596467ce7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZig.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F7A41D"; +const SiZig = React__namespace.forwardRef(function SiZig2({ title = "Zig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.53 1.02-7.686 3.45h-7.06l-2.98 3.452h7.173L.47 22.98l7.681-3.607h7.065v-.002l2.978-3.45-7.148-.001 12.482-14.9zM0 4.47v14.901h1.883l2.98-3.45H3.451v-8h.942l2.824-3.45H0zm22.117 0-2.98 3.608h1.412v7.844h-.942l-2.98 3.45H24V4.47h-1.883z" }) + ] + } + ); +}); + +exports.default = SiZig; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZig.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZig.d.ts new file mode 100644 index 000000000..e8477c416 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZig.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F7A41D"; +declare const SiZig: IconType; +export { SiZig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZig.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZig.mjs new file mode 100644 index 000000000..2ba20d749 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZig.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F7A41D"; +const SiZig = React.forwardRef(function SiZig2({ title = "Zig", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m23.53 1.02-7.686 3.45h-7.06l-2.98 3.452h7.173L.47 22.98l7.681-3.607h7.065v-.002l2.978-3.45-7.148-.001 12.482-14.9zM0 4.47v14.901h1.883l2.98-3.45H3.451v-8h.942l2.824-3.45H0zm22.117 0-2.98 3.608h1.412v7.844h-.942l-2.98 3.45H24V4.47h-1.883z" }) + ] + } + ); +}); + +export { SiZig as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.cjs new file mode 100644 index 000000000..532295104 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EB0443"; +const SiZigbee = React__namespace.forwardRef(function SiZigbee2({ title = "Zigbee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.988 0a11.85 11.85 0 00-8.617 3.696c7.02-.875 11.401-.583 13.289-.34 3.752.583 3.558 3.404 3.558 3.404L8.237 19.112c2.299.22 6.897.366 13.796-.631a11.86 11.86 0 001.912-6.469C23.945 5.374 18.595 0 11.988 0zm.232 4.31c-2.451-.014-5.772.146-9.963.723C.854 7.003.055 9.41.055 12.012.055 18.626 5.38 24 11.988 24c3.63 0 6.85-1.63 9.053-4.182-7.286.948-11.813.631-13.75.388-3.775-.56-3.557-3.404-3.557-3.404L15.691 4.474a38.635 38.635 0 00-3.471-.163Z" }) + ] + } + ); +}); + +exports.default = SiZigbee; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.d.ts new file mode 100644 index 000000000..e37b4997e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EB0443"; +declare const SiZigbee: IconType; +export { SiZigbee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.mjs new file mode 100644 index 000000000..966cc1c2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EB0443"; +const SiZigbee = React.forwardRef(function SiZigbee2({ title = "Zigbee", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.988 0a11.85 11.85 0 00-8.617 3.696c7.02-.875 11.401-.583 13.289-.34 3.752.583 3.558 3.404 3.558 3.404L8.237 19.112c2.299.22 6.897.366 13.796-.631a11.86 11.86 0 001.912-6.469C23.945 5.374 18.595 0 11.988 0zm.232 4.31c-2.451-.014-5.772.146-9.963.723C.854 7.003.055 9.41.055 12.012.055 18.626 5.38 24 11.988 24c3.63 0 6.85-1.63 9.053-4.182-7.286.948-11.813.631-13.75.388-3.775-.56-3.557-3.404-3.557-3.404L15.691 4.474a38.635 38.635 0 00-3.471-.163Z" }) + ] + } + ); +}); + +export { SiZigbee as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.cjs new file mode 100644 index 000000000..7eb7e6ec0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#FFC135"; +const SiZigbee2mqtt = React__namespace.forwardRef(function SiZigbee2mqtt2({ title = "Zigbee2MQTT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.044 0 .038 7.03v9.94L7.044 24h9.91l7.008-7.03V7.03L16.954 0Zm4.525 1.904c.02.001.04.011.047.03l.467.96a.765.765 0 0 1 .242 0l.467-.958a.053.053 0 0 1 .047-.032l.838-.031c.028 0 .053.02.054.049a.052.052 0 0 1-.05.053l-.805.03-.28.968c.356.164.604.543.604.986 0 .155-.03.304-.086.437.019.015.039.03.053.045 0 0 .098.144.184.338 1.641.462 5.698 1.05 5.238 2.32-.517 1.428-3.34.991-3.813.604-.64-.525-1.184-1.019-1.529-1.414a2.546 2.546 0 0 1-.064.148 5.27 5.27 0 0 1-1.97.034 2.038 2.038 0 0 1-.089-.184c-.343.4-.898.905-1.555 1.443-.472.387-3.295.824-3.812-.603-.467-1.288 3.709-1.873 5.305-2.338.084-.204.181-.35.181-.35a.322.322 0 0 1 .05-.044 1.137 1.137 0 0 1-.085-.436c0-.443.249-.822.604-.986l-.278-.967-.806-.031a.052.052 0 0 1-.051-.053c.001-.028.026-.05.054-.049zm1.63 4.92c.082.173.168.385.243.623-.743.207-1.766.164-2.472-.037.068-.21.144-.398.218-.556a5.678 5.678 0 0 0 2.01-.03zm-2.321.908c.768.219 1.84.265 2.668.038.047.203.082.418.098.636-.82.3-2.113.237-2.872-.04.018-.218.057-.432.106-.634zm-.106 1.057c.812.26 2.023.314 2.887.043a2.53 2.53 0 0 1-.12.686c-.676.236-1.88.218-2.66-.053-.066-.22-.1-.448-.107-.676zm.264 1.139c.727.182 1.613.193 2.266.05-.156.252-.376.48-.676.67a.747.747 0 0 1-.887 0c-.549-.347-.703-.751-.703-.72Zm2.858 2.136c.14-.002.162.077.164.16l.064 3.712c.002.089-.024.161-.158.164l-.65.011c-.121.002-.163-.058-.165-.158l-.064-3.713c-.002-.12.059-.162.158-.164zm-2.565.045c.14-.002.163.077.164.16l.067 3.711c.002.115-.052.163-.16.165l-.649.011c-.128.002-.164-.064-.166-.158l-.064-3.713c-.002-.114.05-.162.16-.164zm.633 6.057c.133.033.471.124.582.432a1 1 0 0 1 .055.34v1.35c0 .102-.013.196-.037.284-.095.342-.425.47-.768.516v.223c0 .1-.045.146-.147.146h-.625c-.126 0-.146-.068-.146-.146v-.223c-.314-.046-.527-.141-.637-.283a.821.821 0 0 1-.164-.518v-1.35a1 1 0 0 1 .055-.34c.11-.307.45-.398.584-.431.165-.04.373-.062.625-.062s.459.021.623.062zm-4.492 0c.068 0 .129.017.187.121l.365.662c.036.063.053.07.075.07h.035c.022 0 .039-.006.074-.07l.361-.662c.05-.089.098-.121.188-.121h.658c.078 0 .147.02.147.146v2.633c0 .101-.046.147-.147.147h-.627c-.101 0-.146-.046-.146-.147v-1.431l-.239.443a.222.222 0 0 1-.216.13h-.163a.221.221 0 0 1-.214-.13l-.24-.443v1.431c0 .101-.046.147-.147.147h-.606c-.1 0-.146-.046-.146-.147v-2.633c0-.126.068-.146.146-.146h.655zm7.75 0c.078 0 .146.02.146.146v.49c0 .127-.068.147-.146.147h-.598v1.996c0 .078-.02.147-.146.147h-.659c-.1 0-.146-.046-.146-.147V18.95h-.598c-.102 0-.144-.038-.144-.146v-.49c0-.109.043-.147.144-.147h2.147zm2.666 0c.078 0 .146.02.146.146v.49c0 .127-.068.147-.146.147h-.598v1.996c0 .078-.02.147-.146.147h-.659c-.1 0-.146-.046-.146-.147V18.95h-.598c-.102 0-.144-.038-.144-.146v-.49c0-.109.043-.147.144-.147h2.147zm-6.828.79a.173.173 0 0 0-.06.132v1.11c0 .053.019.1.06.136.083.075.479.075.562 0a.177.177 0 0 0 .06-.137v-1.11a.173.173 0 0 0-.06-.132c-.083-.075-.48-.075-.562 0z" }) + ] + } + ); +}); + +exports.default = SiZigbee2mqtt; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.d.ts new file mode 100644 index 000000000..a1b35115e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#FFC135"; +declare const SiZigbee2mqtt: IconType; +export { SiZigbee2mqtt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.mjs new file mode 100644 index 000000000..4f516f3da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZigbee2mqtt.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#FFC135"; +const SiZigbee2mqtt = React.forwardRef(function SiZigbee2mqtt2({ title = "Zigbee2MQTT", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M7.044 0 .038 7.03v9.94L7.044 24h9.91l7.008-7.03V7.03L16.954 0Zm4.525 1.904c.02.001.04.011.047.03l.467.96a.765.765 0 0 1 .242 0l.467-.958a.053.053 0 0 1 .047-.032l.838-.031c.028 0 .053.02.054.049a.052.052 0 0 1-.05.053l-.805.03-.28.968c.356.164.604.543.604.986 0 .155-.03.304-.086.437.019.015.039.03.053.045 0 0 .098.144.184.338 1.641.462 5.698 1.05 5.238 2.32-.517 1.428-3.34.991-3.813.604-.64-.525-1.184-1.019-1.529-1.414a2.546 2.546 0 0 1-.064.148 5.27 5.27 0 0 1-1.97.034 2.038 2.038 0 0 1-.089-.184c-.343.4-.898.905-1.555 1.443-.472.387-3.295.824-3.812-.603-.467-1.288 3.709-1.873 5.305-2.338.084-.204.181-.35.181-.35a.322.322 0 0 1 .05-.044 1.137 1.137 0 0 1-.085-.436c0-.443.249-.822.604-.986l-.278-.967-.806-.031a.052.052 0 0 1-.051-.053c.001-.028.026-.05.054-.049zm1.63 4.92c.082.173.168.385.243.623-.743.207-1.766.164-2.472-.037.068-.21.144-.398.218-.556a5.678 5.678 0 0 0 2.01-.03zm-2.321.908c.768.219 1.84.265 2.668.038.047.203.082.418.098.636-.82.3-2.113.237-2.872-.04.018-.218.057-.432.106-.634zm-.106 1.057c.812.26 2.023.314 2.887.043a2.53 2.53 0 0 1-.12.686c-.676.236-1.88.218-2.66-.053-.066-.22-.1-.448-.107-.676zm.264 1.139c.727.182 1.613.193 2.266.05-.156.252-.376.48-.676.67a.747.747 0 0 1-.887 0c-.549-.347-.703-.751-.703-.72Zm2.858 2.136c.14-.002.162.077.164.16l.064 3.712c.002.089-.024.161-.158.164l-.65.011c-.121.002-.163-.058-.165-.158l-.064-3.713c-.002-.12.059-.162.158-.164zm-2.565.045c.14-.002.163.077.164.16l.067 3.711c.002.115-.052.163-.16.165l-.649.011c-.128.002-.164-.064-.166-.158l-.064-3.713c-.002-.114.05-.162.16-.164zm.633 6.057c.133.033.471.124.582.432a1 1 0 0 1 .055.34v1.35c0 .102-.013.196-.037.284-.095.342-.425.47-.768.516v.223c0 .1-.045.146-.147.146h-.625c-.126 0-.146-.068-.146-.146v-.223c-.314-.046-.527-.141-.637-.283a.821.821 0 0 1-.164-.518v-1.35a1 1 0 0 1 .055-.34c.11-.307.45-.398.584-.431.165-.04.373-.062.625-.062s.459.021.623.062zm-4.492 0c.068 0 .129.017.187.121l.365.662c.036.063.053.07.075.07h.035c.022 0 .039-.006.074-.07l.361-.662c.05-.089.098-.121.188-.121h.658c.078 0 .147.02.147.146v2.633c0 .101-.046.147-.147.147h-.627c-.101 0-.146-.046-.146-.147v-1.431l-.239.443a.222.222 0 0 1-.216.13h-.163a.221.221 0 0 1-.214-.13l-.24-.443v1.431c0 .101-.046.147-.147.147h-.606c-.1 0-.146-.046-.146-.147v-2.633c0-.126.068-.146.146-.146h.655zm7.75 0c.078 0 .146.02.146.146v.49c0 .127-.068.147-.146.147h-.598v1.996c0 .078-.02.147-.146.147h-.659c-.1 0-.146-.046-.146-.147V18.95h-.598c-.102 0-.144-.038-.144-.146v-.49c0-.109.043-.147.144-.147h2.147zm2.666 0c.078 0 .146.02.146.146v.49c0 .127-.068.147-.146.147h-.598v1.996c0 .078-.02.147-.146.147h-.659c-.1 0-.146-.046-.146-.147V18.95h-.598c-.102 0-.144-.038-.144-.146v-.49c0-.109.043-.147.144-.147h2.147zm-6.828.79a.173.173 0 0 0-.06.132v1.11c0 .053.019.1.06.136.083.075.479.075.562 0a.177.177 0 0 0 .06-.137v-1.11a.173.173 0 0 0-.06-.132c-.083-.075-.48-.075-.562 0z" }) + ] + } + ); +}); + +export { SiZigbee2mqtt as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.cjs new file mode 100644 index 000000000..9b3074a34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F48C00"; +const SiZiggo = React__namespace.forwardRef(function SiZiggo2({ title = "Ziggo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.555 18.69a3 3 0 0 0-2.52-2.865h-6.3l7.26-6.945a2.145 2.145 0 0 0 .495-2.34 2.1 2.1 0 0 0-2.205-1.23h-9a2.79 2.79 0 0 0 2.19 2.895h5.175L6 15.375a2.01 2.01 0 0 0-.42 2.13 1.965 1.965 0 0 0 2.115 1.185zM2.85 18.6a2.535 2.535 0 0 0 2.55 2.535h13.2a2.536 2.537 0 0 0 2.55-2.535V7.92A2.865 2.865 0 0 1 24 5.31V18.6a5.385 5.385 0 0 1-5.4 5.4H5.4A5.385 5.385 0 0 1 0 18.6V5.4A5.385 5.385 0 0 1 5.4 0h13.2a5.595 5.595 0 0 1 2.07.405A5.235 5.235 0 0 1 22.635 1.8a1.5 1.5 0 0 1 .42 1.005 1.41 1.41 0 0 1-.42 1.02 1.5 1.5 0 0 1-2.025 0A2.685 2.685 0 0 0 19.59 3a2.43 2.43 0 0 0-.99-.195H5.4A2.505 2.505 0 0 0 2.865 5.4z" }) + ] + } + ); +}); + +exports.default = SiZiggo; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.d.ts new file mode 100644 index 000000000..230301e25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F48C00"; +declare const SiZiggo: IconType; +export { SiZiggo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.mjs new file mode 100644 index 000000000..92902d35e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZiggo.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F48C00"; +const SiZiggo = React.forwardRef(function SiZiggo2({ title = "Ziggo", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M18.555 18.69a3 3 0 0 0-2.52-2.865h-6.3l7.26-6.945a2.145 2.145 0 0 0 .495-2.34 2.1 2.1 0 0 0-2.205-1.23h-9a2.79 2.79 0 0 0 2.19 2.895h5.175L6 15.375a2.01 2.01 0 0 0-.42 2.13 1.965 1.965 0 0 0 2.115 1.185zM2.85 18.6a2.535 2.535 0 0 0 2.55 2.535h13.2a2.536 2.537 0 0 0 2.55-2.535V7.92A2.865 2.865 0 0 1 24 5.31V18.6a5.385 5.385 0 0 1-5.4 5.4H5.4A5.385 5.385 0 0 1 0 18.6V5.4A5.385 5.385 0 0 1 5.4 0h13.2a5.595 5.595 0 0 1 2.07.405A5.235 5.235 0 0 1 22.635 1.8a1.5 1.5 0 0 1 .42 1.005 1.41 1.41 0 0 1-.42 1.02 1.5 1.5 0 0 1-2.025 0A2.685 2.685 0 0 0 19.59 3a2.43 2.43 0 0 0-.99-.195H5.4A2.505 2.505 0 0 0 2.865 5.4z" }) + ] + } + ); +}); + +export { SiZiggo as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.cjs new file mode 100644 index 000000000..1abbd6b80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#00D287"; +const SiZilch = React__namespace.forwardRef(function SiZilch2({ title = "Zilch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.421 6.149c3.292-2.011 6.584-4.036 9.862-6.046a.702.702 0 0 1 .83.073c1.312 1.18 2.637 2.36 3.948 3.54a.694.694 0 0 1 .175.815 1737.248 1737.248 0 0 1-4.341 9.338.61.61 0 0 0 .408.845c1.427.335 2.855.656 4.283.991a.546.546 0 0 1 .204.976c-3.234 2.375-6.483 4.749-9.717 7.124a.986.986 0 0 1-1.136.029l-4.633-3.016a.691.691 0 0 1-.248-.888c1.326-2.812 2.666-5.623 3.992-8.421a.78.78 0 0 0-.146-.859 802.196 802.196 0 0 0-3.583-3.569c-.277-.262-.219-.729.102-.932Z" }) + ] + } + ); +}); + +exports.default = SiZilch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.d.ts new file mode 100644 index 000000000..4630ef86a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#00D287"; +declare const SiZilch: IconType; +export { SiZilch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.mjs new file mode 100644 index 000000000..d09fb9fc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZilch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#00D287"; +const SiZilch = React.forwardRef(function SiZilch2({ title = "Zilch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4.421 6.149c3.292-2.011 6.584-4.036 9.862-6.046a.702.702 0 0 1 .83.073c1.312 1.18 2.637 2.36 3.948 3.54a.694.694 0 0 1 .175.815 1737.248 1737.248 0 0 1-4.341 9.338.61.61 0 0 0 .408.845c1.427.335 2.855.656 4.283.991a.546.546 0 0 1 .204.976c-3.234 2.375-6.483 4.749-9.717 7.124a.986.986 0 0 1-1.136.029l-4.633-3.016a.691.691 0 0 1-.248-.888c1.326-2.812 2.666-5.623 3.992-8.421a.78.78 0 0 0-.146-.859 802.196 802.196 0 0 0-3.583-3.569c-.277-.262-.219-.729.102-.932Z" }) + ] + } + ); +}); + +export { SiZilch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.cjs new file mode 100644 index 000000000..bb71b7e5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#006AFF"; +const SiZillow = React__namespace.forwardRef(function SiZillow2({ title = "Zillow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.006 0L1.086 8.627v3.868c3.386-2.013 11.219-5.13 14.763-6.015.11-.024.16.005.227.078.372.427 1.586 1.899 1.916 2.301a.128.128 0 0 1-.03.195 43.607 43.607 0 0 0-6.67 6.527c-.03.037-.006.043.012.03 2.642-1.134 8.828-2.94 11.622-3.452V8.627zm-.48 11.177c-2.136.708-8.195 3.307-10.452 4.576V24h21.852v-7.936c-2.99.506-11.902 3.16-15.959 5.246a.183.183 0 0 1-.23-.036l-2.044-2.429c-.055-.061-.062-.098.011-.208 1.574-2.3 4.789-5.899 6.833-7.418.042-.03.031-.06-.012-.042Z" }) + ] + } + ); +}); + +exports.default = SiZillow; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.d.ts new file mode 100644 index 000000000..e025e8fe7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#006AFF"; +declare const SiZillow: IconType; +export { SiZillow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.mjs new file mode 100644 index 000000000..56fc14287 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZillow.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#006AFF"; +const SiZillow = React.forwardRef(function SiZillow2({ title = "Zillow", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M12.006 0L1.086 8.627v3.868c3.386-2.013 11.219-5.13 14.763-6.015.11-.024.16.005.227.078.372.427 1.586 1.899 1.916 2.301a.128.128 0 0 1-.03.195 43.607 43.607 0 0 0-6.67 6.527c-.03.037-.006.043.012.03 2.642-1.134 8.828-2.94 11.622-3.452V8.627zm-.48 11.177c-2.136.708-8.195 3.307-10.452 4.576V24h21.852v-7.936c-2.99.506-11.902 3.16-15.959 5.246a.183.183 0 0 1-.23-.036l-2.044-2.429c-.055-.061-.062-.098.011-.208 1.574-2.3 4.789-5.899 6.833-7.418.042-.03.031-.06-.012-.042Z" }) + ] + } + ); +}); + +export { SiZillow as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.cjs new file mode 100644 index 000000000..19db76d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#5BA37F"; +const SiZincsearch = React__namespace.forwardRef(function SiZincsearch2({ title = "ZincSearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m18.723 19.748-1.73 1.493H.678L0 18.77l10.63-9.343.542 6.635h8.701a3.649 3.649 0 0 1-1.15 3.686zM5.277 4.252l1.73-1.493h16.316L24 5.23l-10.63 9.343-.542-6.635H4.129a3.648 3.648 0 0 1 1.148-3.686Z" }) + ] + } + ); +}); + +exports.default = SiZincsearch; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.d.ts new file mode 100644 index 000000000..ef3694940 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#5BA37F"; +declare const SiZincsearch: IconType; +export { SiZincsearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.mjs new file mode 100644 index 000000000..b1bc73dc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZincsearch.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#5BA37F"; +const SiZincsearch = React.forwardRef(function SiZincsearch2({ title = "ZincSearch", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "m18.723 19.748-1.73 1.493H.678L0 18.77l10.63-9.343.542 6.635h8.701a3.649 3.649 0 0 1-1.15 3.686zM5.277 4.252l1.73-1.493h16.316L24 5.23l-10.63 9.343-.542-6.635H4.129a3.648 3.648 0 0 1 1.148-3.686Z" }) + ] + } + ); +}); + +export { SiZincsearch as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.cjs new file mode 100644 index 000000000..f657779b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#009CFB"; +const SiZingat = React__namespace.forwardRef(function SiZingat2({ title = "Zingat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.995 24c-.232-.287-.46-.57-.687-.856a82.547 82.547 0 0 1-4.373-6.027 38.926 38.926 0 0 1-2.498-4.335c-.44-.88-.792-1.801-1.052-2.749a6.21 6.21 0 0 1-.159-2.168 8.381 8.381 0 0 1 1.85-4.557A8.71 8.71 0 0 1 9.906.249a8.593 8.593 0 0 1 2.365-.243c1.955.07 3.715.693 5.251 1.909a8.503 8.503 0 0 1 2.944 4.336c.25.831.364 1.696.337 2.562a6.695 6.695 0 0 1-.376 1.856c-.385 1.179-.919 2.29-1.517 3.374-.302.551-.624 1.088-.938 1.628a1.055 1.055 0 0 1-.035.056.987.987 0 0 1-.904.604.985.985 0 0 1-.97-.83 1.25 1.25 0 0 1-.016-.202v-4.832a.295.295 0 0 0-.135-.275c-.526-.39-1.044-.792-1.564-1.189l-2.269-1.734a.103.103 0 0 0-.143-.006l-.006.006-3.825 2.92a.981.981 0 0 1-1.23-1.53l.025-.018c.184-.144.368-.288.562-.428a.168.168 0 0 0 .076-.152V5.737a.986.986 0 0 1 .95-1.23c.534 0 .976.437.981.971.022.086.034.174.035.263l-.001.915 1.274-.972c.211-.162.421-.325.633-.486a.966.966 0 0 1 1.168-.007c1.619 1.227 3.239 2.457 4.858 3.688.143.104.275.222.394.352a.84.84 0 0 1 .184.561v1.647c.157-.35.303-.704.437-1.065.124-.309.226-.626.304-.95.11-.486.093-.983.048-1.477a4.853 4.853 0 0 0-.086-.678 6.854 6.854 0 0 0-.276-.884 6.776 6.776 0 0 0-.926-1.71c-.954-1.237-2.208-2.045-3.694-2.494a4.382 4.382 0 0 0-.944-.164c-.45-.028-.9-.038-1.35-.031-.873 0-1.681.259-2.469.62a6.946 6.946 0 0 0-2.649 2.166c-.393.517-.656 1.108-.901 1.713a5.154 5.154 0 0 0-.329 1.642c-.028.452-.037.904.069 1.344.089.342.201.678.334 1.005.538 1.392 1.244 2.701 2.008 3.98a64.18 64.18 0 0 0 4.378 6.355c.187-.159.342-.352.488-.552.552-.751 1.101-1.502 1.648-2.256.174-.241.368-.449.675-.527a.976.976 0 0 1 1.196.804 1 1 0 0 1-.211.754c-.778 1.058-1.55 2.12-2.339 3.168-.441.586-.908 1.152-1.364 1.725l-.066.073Zm.027-13.788h.81a1.03 1.03 0 0 1 1.018 1.022v1.621c0 .56-.461 1.021-1.021 1.021h-1.607a1.03 1.03 0 0 1-1.041-1.004v-1.614a1.027 1.027 0 0 1 .997-1.046h.844Zm.869 1.837v-.778c0-.074-.026-.104-.101-.104h-1.54c-.082 0-.105.032-.105.11v1.525c0 .08.027.109.107.109h1.528c.086 0 .113-.033.112-.117-.009-.242 0-.492 0-.74l-.002-.005h.001Z" }) + ] + } + ); +}); + +exports.default = SiZingat; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.d.ts new file mode 100644 index 000000000..a7bd4c377 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#009CFB"; +declare const SiZingat: IconType; +export { SiZingat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.mjs new file mode 100644 index 000000000..f3923f716 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZingat.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#009CFB"; +const SiZingat = React.forwardRef(function SiZingat2({ title = "Zingat", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.995 24c-.232-.287-.46-.57-.687-.856a82.547 82.547 0 0 1-4.373-6.027 38.926 38.926 0 0 1-2.498-4.335c-.44-.88-.792-1.801-1.052-2.749a6.21 6.21 0 0 1-.159-2.168 8.381 8.381 0 0 1 1.85-4.557A8.71 8.71 0 0 1 9.906.249a8.593 8.593 0 0 1 2.365-.243c1.955.07 3.715.693 5.251 1.909a8.503 8.503 0 0 1 2.944 4.336c.25.831.364 1.696.337 2.562a6.695 6.695 0 0 1-.376 1.856c-.385 1.179-.919 2.29-1.517 3.374-.302.551-.624 1.088-.938 1.628a1.055 1.055 0 0 1-.035.056.987.987 0 0 1-.904.604.985.985 0 0 1-.97-.83 1.25 1.25 0 0 1-.016-.202v-4.832a.295.295 0 0 0-.135-.275c-.526-.39-1.044-.792-1.564-1.189l-2.269-1.734a.103.103 0 0 0-.143-.006l-.006.006-3.825 2.92a.981.981 0 0 1-1.23-1.53l.025-.018c.184-.144.368-.288.562-.428a.168.168 0 0 0 .076-.152V5.737a.986.986 0 0 1 .95-1.23c.534 0 .976.437.981.971.022.086.034.174.035.263l-.001.915 1.274-.972c.211-.162.421-.325.633-.486a.966.966 0 0 1 1.168-.007c1.619 1.227 3.239 2.457 4.858 3.688.143.104.275.222.394.352a.84.84 0 0 1 .184.561v1.647c.157-.35.303-.704.437-1.065.124-.309.226-.626.304-.95.11-.486.093-.983.048-1.477a4.853 4.853 0 0 0-.086-.678 6.854 6.854 0 0 0-.276-.884 6.776 6.776 0 0 0-.926-1.71c-.954-1.237-2.208-2.045-3.694-2.494a4.382 4.382 0 0 0-.944-.164c-.45-.028-.9-.038-1.35-.031-.873 0-1.681.259-2.469.62a6.946 6.946 0 0 0-2.649 2.166c-.393.517-.656 1.108-.901 1.713a5.154 5.154 0 0 0-.329 1.642c-.028.452-.037.904.069 1.344.089.342.201.678.334 1.005.538 1.392 1.244 2.701 2.008 3.98a64.18 64.18 0 0 0 4.378 6.355c.187-.159.342-.352.488-.552.552-.751 1.101-1.502 1.648-2.256.174-.241.368-.449.675-.527a.976.976 0 0 1 1.196.804 1 1 0 0 1-.211.754c-.778 1.058-1.55 2.12-2.339 3.168-.441.586-.908 1.152-1.364 1.725l-.066.073Zm.027-13.788h.81a1.03 1.03 0 0 1 1.018 1.022v1.621c0 .56-.461 1.021-1.021 1.021h-1.607a1.03 1.03 0 0 1-1.041-1.004v-1.614a1.027 1.027 0 0 1 .997-1.046h.844Zm.869 1.837v-.778c0-.074-.026-.104-.101-.104h-1.54c-.082 0-.105.032-.105.11v1.525c0 .08.027.109.107.109h1.528c.086 0 .113-.033.112-.117-.009-.242 0-.492 0-.74l-.002-.005h.001Z" }) + ] + } + ); +}); + +export { SiZingat as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZod.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZod.cjs new file mode 100644 index 000000000..8ff525f00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZod.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#408AFF"; +const SiZod = React__namespace.forwardRef(function SiZod2({ title = "Zod", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.584 3.582a2.247 2.247 0 0 1 2.112-1.479h14.617c.948 0 1.794.595 2.115 1.487l2.44 6.777a2.248 2.248 0 0 1-.624 2.443l-9.61 8.52a2.247 2.247 0 0 1-2.963.018L.776 12.773a2.248 2.248 0 0 1-.64-2.467Zm12.038 4.887-9.11 5.537 5.74 5.007c.456.399 1.139.396 1.593-.006l5.643-5.001H14.4l6.239-3.957c.488-.328.69-.947.491-1.5l-1.24-3.446a1.535 1.535 0 0 0-1.456-1.015H5.545a1.535 1.535 0 0 0-1.431 1.01l-1.228 3.37z" }) + ] + } + ); +}); + +exports.default = SiZod; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZod.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZod.d.ts new file mode 100644 index 000000000..5c53f5e2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZod.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#408AFF"; +declare const SiZod: IconType; +export { SiZod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZod.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZod.mjs new file mode 100644 index 000000000..b07bd3ae7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZod.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#408AFF"; +const SiZod = React.forwardRef(function SiZod2({ title = "Zod", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M2.584 3.582a2.247 2.247 0 0 1 2.112-1.479h14.617c.948 0 1.794.595 2.115 1.487l2.44 6.777a2.248 2.248 0 0 1-.624 2.443l-9.61 8.52a2.247 2.247 0 0 1-2.963.018L.776 12.773a2.248 2.248 0 0 1-.64-2.467Zm12.038 4.887-9.11 5.537 5.74 5.007c.456.399 1.139.396 1.593-.006l5.643-5.001H14.4l6.239-3.957c.488-.328.69-.947.491-1.5l-1.24-3.446a1.535 1.535 0 0 0-1.456-1.015H5.545a1.535 1.535 0 0 0-1.431 1.01l-1.228 3.37z" }) + ] + } + ); +}); + +export { SiZod as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.cjs new file mode 100644 index 000000000..1cca0fd9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E42527"; +const SiZoho = React__namespace.forwardRef(function SiZoho2({ title = "Zoho", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.66 6.897a1.299 1.299 0 0 0-1.205.765l-.642 1.44-.062-.385A1.291 1.291 0 0 0 5.27 7.648l-4.185.678A1.291 1.291 0 0 0 .016 9.807l.678 4.18a1.293 1.293 0 0 0 1.27 1.087c.074 0 .143-.01.216-.017l4.18-.678c.436-.07.784-.351.96-.723l2.933 1.307a1.304 1.304 0 0 0 .988.026c.321-.12.575-.365.716-.678l.28-.629.038.276a1.297 1.297 0 0 0 1.455 1.103l3.712-.501a1.29 1.29 0 0 0 1.03.514h4.236c.713 0 1.29-.58 1.291-1.291V9.545c0-.712-.58-1.291-1.291-1.291h-4.236c-.079 0-.155.008-.23.022a1.309 1.309 0 0 0-.275-.288c-.275-.21-.614-.3-.958-.253l-4.197.571c-.155.021-.3.07-.432.14L9.159 7.01a1.27 1.27 0 0 0-.499-.113zm-.025.705c.077 0 .159.013.24.052l2.971 1.324c-.128.238-.18.508-.142.782l.357 2.596h.002l-.745 1.672a.59.59 0 0 1-.777.296l-3.107-1.385-.004-.041-.41-2.526L8.1 7.95a.589.589 0 0 1 .536-.348zm-3.159.733c.125 0 .245.039.343.112.13.09.21.227.237.382l.234 1.446-.56 1.259a1.27 1.27 0 0 0-.026.987c.12.322.364.575.678.717l.295.131a.585.585 0 0 1-.428.314l-4.185.678a.59.59 0 0 1-.674-.485l-.678-4.18a.588.588 0 0 1 .485-.674l4.185-.678c.03-.004.064-.01.094-.01zm11.705.09a.59.59 0 0 1 .415.173 1.287 1.287 0 0 0-.416.947v4.237c0 .033.003.065.005.097l-3.55.482a.586.586 0 0 1-.66-.502l-.191-1.403.899-2.017a1.29 1.29 0 0 0-.333-1.5l3.754-.51c.026-.004.051-.004.077-.004zm1.3.532h4.227c.326 0 .588.266.588.588v4.237a.589.589 0 0 1-.588.588h-4.237a.564.564 0 0 1-.12-.013c.47-.246.758-.765.684-1.318zm-5.988.309.254.113c.296.133.43.48.296.777l-.432.97-.207-1.465a.58.58 0 0 1 .09-.395zm5.39.538.453 3.325a.583.583 0 0 1-.453.65zM6.496 11.545l.17 1.052a.588.588 0 0 1-.293-.776zm3.985 4.344a.588.588 0 0 0-.612.603c0 .358.244.61.601.61a.582.582 0 0 0 .607-.608c0-.35-.242-.605-.596-.605zm5.545 0a.588.588 0 0 0-.612.603c0 .358.245.61.602.61a.582.582 0 0 0 .606-.608c0-.35-.24-.605-.596-.605zm-8.537.018a.047.047 0 0 0-.048.047v.085c0 .026.021.047.048.047h.52l-.623.9a.052.052 0 0 0-.009.027v.027c0 .026.021.047.048.047h.815a.047.047 0 0 0 .047-.047v-.085a.047.047 0 0 0-.047-.047h-.55l.606-.9a.05.05 0 0 0 .008-.026v-.028a.047.047 0 0 0-.047-.047zm5.303 0a.047.047 0 0 0-.047.047v1.086c0 .026.02.047.047.047h.135a.047.047 0 0 0 .047-.047v-.454h.545v.454c0 .026.02.047.047.047h.134a.047.047 0 0 0 .047-.047v-1.086a.047.047 0 0 0-.047-.047h-.134a.047.047 0 0 0-.047.047v.453h-.545v-.453a.047.047 0 0 0-.047-.047zm-2.324.164c.25 0 .372.194.372.425 0 .219-.109.425-.358.426-.242 0-.375-.197-.375-.419 0-.235.108-.432.36-.432zm5.545 0c.25 0 .372.194.372.425 0 .219-.108.425-.358.426-.242 0-.374-.197-.374-.419 0-.235.108-.432.36-.432z" }) + ] + } + ); +}); + +exports.default = SiZoho; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.d.ts new file mode 100644 index 000000000..436ef8bbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E42527"; +declare const SiZoho: IconType; +export { SiZoho as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.mjs new file mode 100644 index 000000000..135e576df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoho.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E42527"; +const SiZoho = React.forwardRef(function SiZoho2({ title = "Zoho", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M8.66 6.897a1.299 1.299 0 0 0-1.205.765l-.642 1.44-.062-.385A1.291 1.291 0 0 0 5.27 7.648l-4.185.678A1.291 1.291 0 0 0 .016 9.807l.678 4.18a1.293 1.293 0 0 0 1.27 1.087c.074 0 .143-.01.216-.017l4.18-.678c.436-.07.784-.351.96-.723l2.933 1.307a1.304 1.304 0 0 0 .988.026c.321-.12.575-.365.716-.678l.28-.629.038.276a1.297 1.297 0 0 0 1.455 1.103l3.712-.501a1.29 1.29 0 0 0 1.03.514h4.236c.713 0 1.29-.58 1.291-1.291V9.545c0-.712-.58-1.291-1.291-1.291h-4.236c-.079 0-.155.008-.23.022a1.309 1.309 0 0 0-.275-.288c-.275-.21-.614-.3-.958-.253l-4.197.571c-.155.021-.3.07-.432.14L9.159 7.01a1.27 1.27 0 0 0-.499-.113zm-.025.705c.077 0 .159.013.24.052l2.971 1.324c-.128.238-.18.508-.142.782l.357 2.596h.002l-.745 1.672a.59.59 0 0 1-.777.296l-3.107-1.385-.004-.041-.41-2.526L8.1 7.95a.589.589 0 0 1 .536-.348zm-3.159.733c.125 0 .245.039.343.112.13.09.21.227.237.382l.234 1.446-.56 1.259a1.27 1.27 0 0 0-.026.987c.12.322.364.575.678.717l.295.131a.585.585 0 0 1-.428.314l-4.185.678a.59.59 0 0 1-.674-.485l-.678-4.18a.588.588 0 0 1 .485-.674l4.185-.678c.03-.004.064-.01.094-.01zm11.705.09a.59.59 0 0 1 .415.173 1.287 1.287 0 0 0-.416.947v4.237c0 .033.003.065.005.097l-3.55.482a.586.586 0 0 1-.66-.502l-.191-1.403.899-2.017a1.29 1.29 0 0 0-.333-1.5l3.754-.51c.026-.004.051-.004.077-.004zm1.3.532h4.227c.326 0 .588.266.588.588v4.237a.589.589 0 0 1-.588.588h-4.237a.564.564 0 0 1-.12-.013c.47-.246.758-.765.684-1.318zm-5.988.309.254.113c.296.133.43.48.296.777l-.432.97-.207-1.465a.58.58 0 0 1 .09-.395zm5.39.538.453 3.325a.583.583 0 0 1-.453.65zM6.496 11.545l.17 1.052a.588.588 0 0 1-.293-.776zm3.985 4.344a.588.588 0 0 0-.612.603c0 .358.244.61.601.61a.582.582 0 0 0 .607-.608c0-.35-.242-.605-.596-.605zm5.545 0a.588.588 0 0 0-.612.603c0 .358.245.61.602.61a.582.582 0 0 0 .606-.608c0-.35-.24-.605-.596-.605zm-8.537.018a.047.047 0 0 0-.048.047v.085c0 .026.021.047.048.047h.52l-.623.9a.052.052 0 0 0-.009.027v.027c0 .026.021.047.048.047h.815a.047.047 0 0 0 .047-.047v-.085a.047.047 0 0 0-.047-.047h-.55l.606-.9a.05.05 0 0 0 .008-.026v-.028a.047.047 0 0 0-.047-.047zm5.303 0a.047.047 0 0 0-.047.047v1.086c0 .026.02.047.047.047h.135a.047.047 0 0 0 .047-.047v-.454h.545v.454c0 .026.02.047.047.047h.134a.047.047 0 0 0 .047-.047v-1.086a.047.047 0 0 0-.047-.047h-.134a.047.047 0 0 0-.047.047v.453h-.545v-.453a.047.047 0 0 0-.047-.047zm-2.324.164c.25 0 .372.194.372.425 0 .219-.109.425-.358.426-.242 0-.375-.197-.375-.419 0-.235.108-.432.36-.432zm5.545 0c.25 0 .372.194.372.425 0 .219-.108.425-.358.426-.242 0-.374-.197-.374-.419 0-.235.108-.432.36-.432z" }) + ] + } + ); +}); + +export { SiZoho as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.cjs new file mode 100644 index 000000000..701b5261a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F47920"; +const SiZoiper = React__namespace.forwardRef(function SiZoiper2({ title = "Zoiper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.3751 13.0786c-.8624-.8624-.8624-2.9256-.0748-3.7131s3.2625-3.225 5.0621-5.0247c1.8004-1.7996 3.3755-2.0624 3.8629-2.0624H15.9c.2223 0 .5527.0322.9236.0884l-1.087 2.1664c-.8738-.0629-1.6811-.0422-2.274-.0422-2.4374 0-2.6254.5622-3.0378.9747-.4125.4125-5.0621 4.8375-5.3997 5.1752-1.0504 1.0503.5621 1.5376 2.3252 1.5376.7875 0 .8998.825.7119 1.5751-.1018.4079-.3684 1.43-.5919 2.5285h-2.139c.0834-.4237.1648-.7712.2184-.954.188-.637.2253-1.2-.1497-1.2s-1.1626-.1871-2.0249-1.0495zm18.0425-9.9195c-.1965-.1965-2.184-1.3497-2.7726-1.6201-.1614-.0739-.2993-.1047-.4172-.1047-.3126 0-.4853.2162-.5872.4193l-3.1179 6.2136c-1.564.4473-2.7104 1.8872-2.7104 3.595 0 1.4355.8088 2.6815 1.996 3.3091-.4575.5435-1.1337 1.1005-1.2919 1.2851-.2254.2628-.7875.5256-1.763.5256H4.3672c-.0298-1.1804-.9951-2.1287-2.1832-2.1287-1.206 0-2.184.978-2.184 2.184 0 1.2068.978 2.1849 2.184 2.1849.9185 0 1.7036-.5664 2.0267-1.3693h7.0394c.9747 0 1.5377-.262 1.7622-.5248.2134-.2491 1.3658-1.1728 1.6584-1.8311.2824.0689.5784.1063.8828.1063 2.0659 0 3.7404-1.6746 3.7404-3.7412a3.7288 3.7288 0 0 0-.5316-1.9221 7006.5352 7006.5352 0 0 1 2.753-5.5502c.2705-.5399.0988-.8342-.0977-1.0307zm.2867 1.7742c-.2377.4786-.6018 1.2128-.993 2.0014.697 1.0061 1.1516 2.4119 1.1516 4.4188 0 5.0995-2.7003 5.6625-3.2625 5.6625h-2.1381c-.4499 0-.7875.0748-1.6125.8998-.825.825-1.9875 1.837-2.3252 2.1746-.3368.3376-.825.563-1.6873.563h-2.662c-.3751 0-1.0503-.188-1.0503-1.7631 0-.221.0212-.4749.0488-.7374H5.0591c-.0581.6409-.0749 1.2776.0034 1.7872.2253 1.4628 1.4254 2.6254 2.4374 2.6254h3.9752c1.8378 0 5.2126-3.4121 5.2126-3.4121s1.1073.0681 1.763.0502C20.4875 19.1485 24 17.4662 24 11.8412c0-3.3144-.9952-5.4775-2.2957-6.9079z" }) + ] + } + ); +}); + +exports.default = SiZoiper; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.d.ts new file mode 100644 index 000000000..239d1c4f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F47920"; +declare const SiZoiper: IconType; +export { SiZoiper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.mjs new file mode 100644 index 000000000..d1422b953 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoiper.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F47920"; +const SiZoiper = React.forwardRef(function SiZoiper2({ title = "Zoiper", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M3.3751 13.0786c-.8624-.8624-.8624-2.9256-.0748-3.7131s3.2625-3.225 5.0621-5.0247c1.8004-1.7996 3.3755-2.0624 3.8629-2.0624H15.9c.2223 0 .5527.0322.9236.0884l-1.087 2.1664c-.8738-.0629-1.6811-.0422-2.274-.0422-2.4374 0-2.6254.5622-3.0378.9747-.4125.4125-5.0621 4.8375-5.3997 5.1752-1.0504 1.0503.5621 1.5376 2.3252 1.5376.7875 0 .8998.825.7119 1.5751-.1018.4079-.3684 1.43-.5919 2.5285h-2.139c.0834-.4237.1648-.7712.2184-.954.188-.637.2253-1.2-.1497-1.2s-1.1626-.1871-2.0249-1.0495zm18.0425-9.9195c-.1965-.1965-2.184-1.3497-2.7726-1.6201-.1614-.0739-.2993-.1047-.4172-.1047-.3126 0-.4853.2162-.5872.4193l-3.1179 6.2136c-1.564.4473-2.7104 1.8872-2.7104 3.595 0 1.4355.8088 2.6815 1.996 3.3091-.4575.5435-1.1337 1.1005-1.2919 1.2851-.2254.2628-.7875.5256-1.763.5256H4.3672c-.0298-1.1804-.9951-2.1287-2.1832-2.1287-1.206 0-2.184.978-2.184 2.184 0 1.2068.978 2.1849 2.184 2.1849.9185 0 1.7036-.5664 2.0267-1.3693h7.0394c.9747 0 1.5377-.262 1.7622-.5248.2134-.2491 1.3658-1.1728 1.6584-1.8311.2824.0689.5784.1063.8828.1063 2.0659 0 3.7404-1.6746 3.7404-3.7412a3.7288 3.7288 0 0 0-.5316-1.9221 7006.5352 7006.5352 0 0 1 2.753-5.5502c.2705-.5399.0988-.8342-.0977-1.0307zm.2867 1.7742c-.2377.4786-.6018 1.2128-.993 2.0014.697 1.0061 1.1516 2.4119 1.1516 4.4188 0 5.0995-2.7003 5.6625-3.2625 5.6625h-2.1381c-.4499 0-.7875.0748-1.6125.8998-.825.825-1.9875 1.837-2.3252 2.1746-.3368.3376-.825.563-1.6873.563h-2.662c-.3751 0-1.0503-.188-1.0503-1.7631 0-.221.0212-.4749.0488-.7374H5.0591c-.0581.6409-.0749 1.2776.0034 1.7872.2253 1.4628 1.4254 2.6254 2.4374 2.6254h3.9752c1.8378 0 5.2126-3.4121 5.2126-3.4121s1.1073.0681 1.763.0502C20.4875 19.1485 24 17.4662 24 11.8412c0-3.3144-.9952-5.4775-2.2957-6.9079z" }) + ] + } + ); +}); + +export { SiZoiper as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZola.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZola.cjs new file mode 100644 index 000000000..1d6161b70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZola.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#EAE7D6"; +const SiZola = React__namespace.forwardRef(function SiZola2({ title = "Zola", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.379 18.017 21.083 24H2.824a.566.566 0 0 1-.565-.565V23.4c0-.313.081-.62.233-.895L12.99 3.79c.841-1.5.897-2.713-1.712-2.713s-5.386.909-6.442 5.077a.565.565 0 0 1-1.112-.17L4.019 0h16.894c-1.74.798-3.273 1.813-4.565 3.038-1.578 1.497-2.699 3.125-4.876 6.451a82 82 0 0 0-3.462 5.799 81 81 0 0 0-2.743 5.566c.764-1.08 2.02-2.507 3.96-3.425.958-.453 1.703-.602 2.083-.7a6.4 6.4 0 0 0 1.366-.534l-2.251 4.015c-.842 1.5.3 2.713 2.91 2.713 2.612 0 5.875-.909 6.93-5.077a.565.565 0 0 1 1.112.17zm-13.757-.482c.694-.67 1.83-1.239 3.377-1.693l.07-.021c3.007-.9 6.723-5.328 7.952-9.478l.12-.417c.328-1.172.824-2.941 2.265-4.796q.163-.209.335-.41c-1.749.814-3.294 1.852-4.609 3.097-1.047.992-1.997 2.293-3.72 4.657-1.352 1.855-2.385 3.437-3.22 4.713-.395.602-1.126 1.744-1.998 3.148-.265.427-.627 1.02-.97 1.594.124-.124.257-.258.398-.394" }) + ] + } + ); +}); + +exports.default = SiZola; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZola.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZola.d.ts new file mode 100644 index 000000000..104443f73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZola.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#EAE7D6"; +declare const SiZola: IconType; +export { SiZola as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZola.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZola.mjs new file mode 100644 index 000000000..4b9f8b67f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZola.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#EAE7D6"; +const SiZola = React.forwardRef(function SiZola2({ title = "Zola", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.379 18.017 21.083 24H2.824a.566.566 0 0 1-.565-.565V23.4c0-.313.081-.62.233-.895L12.99 3.79c.841-1.5.897-2.713-1.712-2.713s-5.386.909-6.442 5.077a.565.565 0 0 1-1.112-.17L4.019 0h16.894c-1.74.798-3.273 1.813-4.565 3.038-1.578 1.497-2.699 3.125-4.876 6.451a82 82 0 0 0-3.462 5.799 81 81 0 0 0-2.743 5.566c.764-1.08 2.02-2.507 3.96-3.425.958-.453 1.703-.602 2.083-.7a6.4 6.4 0 0 0 1.366-.534l-2.251 4.015c-.842 1.5.3 2.713 2.91 2.713 2.612 0 5.875-.909 6.93-5.077a.565.565 0 0 1 1.112.17zm-13.757-.482c.694-.67 1.83-1.239 3.377-1.693l.07-.021c3.007-.9 6.723-5.328 7.952-9.478l.12-.417c.328-1.172.824-2.941 2.265-4.796q.163-.209.335-.41c-1.749.814-3.294 1.852-4.609 3.097-1.047.992-1.997 2.293-3.72 4.657-1.352 1.855-2.385 3.437-3.22 4.713-.395.602-1.126 1.744-1.998 3.148-.265.427-.627 1.02-.97 1.594.124-.124.257-.258.398-.394" }) + ] + } + ); +}); + +export { SiZola as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.cjs new file mode 100644 index 000000000..5fb07f63e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#E23744"; +const SiZomato = React__namespace.forwardRef(function SiZomato2({ title = "Zomato", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.615 9.45l-1.258.473-.167.71-.446.021-.115.978h.408l-.211 1.51c-.131.939.036 1.381.865 1.381.488 0 .91-.175 1.135-.297l.145-.9c-.167.083-.436.19-.618.19-.247 0-.276-.13-.225-.488l.189-1.396h.843c.03-.206.131-.877.16-1h-.865zm-3.779 1.002c-.115.002-.236.01-.361.026a3.592 3.592 0 0 0-1.347.432l.26.789c.269-.15.615-.28.978-.326.538-.066.757.1.79.375.014.109.004.199-.005.289l-.014.056a3.46 3.46 0 0 0-1.097-.036c-.518.063-.943.273-1.204.6a1.324 1.324 0 0 0-.225 1.034c.127.583.553.84 1.199.76.45-.055.812-.27 1.076-.63a2.665 2.665 0 0 1-.03.304 1.74 1.74 0 0 1-.072.29l1.244.001a3.657 3.657 0 0 1-.001-.365c.036-.459.118-1.143.247-2.051a2.397 2.397 0 0 0-.002-.59c-.08-.644-.628-.969-1.436-.958zm6.536.063c-1.194 0-2.107 1.067-2.107 2.342 0 .959.552 1.693 1.628 1.693 1.2 0 2.107-1.067 2.107-2.35 0-.95-.538-1.685-1.628-1.685zm-11.777.041c-.538 0-1.12.465-1.52 1.236.102-.504.08-1.076.051-1.198a8.964 8.964 0 0 1-1.287.122 6.9 6.9 0 0 1-.073 1.243l-.167 1.145c-.066.45-.138.969-.211 1.297h1.353c.007-.199.058-.511.094-.786l.116-.786c.095-.511.502-1.114.815-1.114.182 0 .175.176.124.504l-.131.885c-.066.45-.138.969-.211 1.297h1.367c.008-.199.051-.512.088-.786l.116-.786c.094-.512.502-1.114.814-1.114.182 0 .175.168.146.396l-.327 2.29H13l.438-2.609c.095-.649.044-1.236-.676-1.236-.523 0-1.09.443-1.49 1.182.087-.61.036-1.182-.677-1.182zm-4.88.008c-1.177 0-2.08 1.053-2.08 2.312 0 .946.546 1.67 1.608 1.67 1.185 0 2.08-1.052 2.08-2.319 0-.938-.531-1.663-1.607-1.663zm-5.126.091c-.05.39-.102.778-.175 1.13.328-.008.619-.016 1.411-.016l-1.81 1.96-.015.703c.444-.03.997-.039 1.63-.039.566 0 1.134.008 1.497.039.065-.458.13-.763.21-1.137-.275.015-.755.023-1.512.023l1.81-1.969.023-.694c-.437.023-.83.03-1.52.03-.749 0-.975-.007-1.549-.03zm4.988.927c.255 0 .408.228.408.701 0 .687-.276 1.251-.626 1.251-.261 0-.414-.236-.414-.702 0-.694.283-1.25.632-1.25zm16.629 0c.254 0 .407.228.407.701 0 .687-.276 1.251-.625 1.251-.262 0-.415-.236-.415-.702 0-.694.284-1.25.633-1.25zM15.51 12.64c.206-.003.403.024.55.058l-.013.118c-.075.44-.39.881-.848.938-.31.037-.578-.148-.608-.39a.538.538 0 0 1 .114-.41c.117-.159.336-.268.599-.3.069-.009.138-.013.206-.014Z" }) + ] + } + ); +}); + +exports.default = SiZomato; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.d.ts new file mode 100644 index 000000000..224e85d36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#E23744"; +declare const SiZomato: IconType; +export { SiZomato as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.mjs new file mode 100644 index 000000000..f68a1cf1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZomato.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#E23744"; +const SiZomato = React.forwardRef(function SiZomato2({ title = "Zomato", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M19.615 9.45l-1.258.473-.167.71-.446.021-.115.978h.408l-.211 1.51c-.131.939.036 1.381.865 1.381.488 0 .91-.175 1.135-.297l.145-.9c-.167.083-.436.19-.618.19-.247 0-.276-.13-.225-.488l.189-1.396h.843c.03-.206.131-.877.16-1h-.865zm-3.779 1.002c-.115.002-.236.01-.361.026a3.592 3.592 0 0 0-1.347.432l.26.789c.269-.15.615-.28.978-.326.538-.066.757.1.79.375.014.109.004.199-.005.289l-.014.056a3.46 3.46 0 0 0-1.097-.036c-.518.063-.943.273-1.204.6a1.324 1.324 0 0 0-.225 1.034c.127.583.553.84 1.199.76.45-.055.812-.27 1.076-.63a2.665 2.665 0 0 1-.03.304 1.74 1.74 0 0 1-.072.29l1.244.001a3.657 3.657 0 0 1-.001-.365c.036-.459.118-1.143.247-2.051a2.397 2.397 0 0 0-.002-.59c-.08-.644-.628-.969-1.436-.958zm6.536.063c-1.194 0-2.107 1.067-2.107 2.342 0 .959.552 1.693 1.628 1.693 1.2 0 2.107-1.067 2.107-2.35 0-.95-.538-1.685-1.628-1.685zm-11.777.041c-.538 0-1.12.465-1.52 1.236.102-.504.08-1.076.051-1.198a8.964 8.964 0 0 1-1.287.122 6.9 6.9 0 0 1-.073 1.243l-.167 1.145c-.066.45-.138.969-.211 1.297h1.353c.007-.199.058-.511.094-.786l.116-.786c.095-.511.502-1.114.815-1.114.182 0 .175.176.124.504l-.131.885c-.066.45-.138.969-.211 1.297h1.367c.008-.199.051-.512.088-.786l.116-.786c.094-.512.502-1.114.814-1.114.182 0 .175.168.146.396l-.327 2.29H13l.438-2.609c.095-.649.044-1.236-.676-1.236-.523 0-1.09.443-1.49 1.182.087-.61.036-1.182-.677-1.182zm-4.88.008c-1.177 0-2.08 1.053-2.08 2.312 0 .946.546 1.67 1.608 1.67 1.185 0 2.08-1.052 2.08-2.319 0-.938-.531-1.663-1.607-1.663zm-5.126.091c-.05.39-.102.778-.175 1.13.328-.008.619-.016 1.411-.016l-1.81 1.96-.015.703c.444-.03.997-.039 1.63-.039.566 0 1.134.008 1.497.039.065-.458.13-.763.21-1.137-.275.015-.755.023-1.512.023l1.81-1.969.023-.694c-.437.023-.83.03-1.52.03-.749 0-.975-.007-1.549-.03zm4.988.927c.255 0 .408.228.408.701 0 .687-.276 1.251-.626 1.251-.261 0-.414-.236-.414-.702 0-.694.283-1.25.632-1.25zm16.629 0c.254 0 .407.228.407.701 0 .687-.276 1.251-.625 1.251-.262 0-.415-.236-.415-.702 0-.694.284-1.25.633-1.25zM15.51 12.64c.206-.003.403.024.55.058l-.013.118c-.075.44-.39.881-.848.938-.31.037-.578-.148-.608-.39a.538.538 0 0 1 .114-.41c.117-.159.336-.268.599-.3.069-.009.138-.013.206-.014Z" }) + ] + } + ); +}); + +export { SiZomato as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.cjs new file mode 100644 index 000000000..e9274fbd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#0B5CFF"; +const SiZoom = React__namespace.forwardRef(function SiZoom2({ title = "Zoom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.033 14.649H.743a.74.74 0 0 1-.686-.458.74.74 0 0 1 .16-.808L3.19 10.41H1.06A1.06 1.06 0 0 1 0 9.35h3.957c.301 0 .57.18.686.458a.74.74 0 0 1-.161.808L1.51 13.59h2.464c.585 0 1.06.475 1.06 1.06zM24 11.338c0-1.14-.927-2.066-2.066-2.066-.61 0-1.158.265-1.537.686a2.061 2.061 0 0 0-1.536-.686c-1.14 0-2.066.926-2.066 2.066v3.311a1.06 1.06 0 0 0 1.06-1.06v-2.251a1.004 1.004 0 0 1 2.013 0v2.251c0 .586.474 1.06 1.06 1.06v-3.311a1.004 1.004 0 0 1 2.012 0v2.251c0 .586.475 1.06 1.06 1.06zM16.265 12a2.728 2.728 0 1 1-5.457 0 2.728 2.728 0 0 1 5.457 0zm-1.06 0a1.669 1.669 0 1 0-3.338 0 1.669 1.669 0 0 0 3.338 0zm-4.82 0a2.728 2.728 0 1 1-5.458 0 2.728 2.728 0 0 1 5.457 0zm-1.06 0a1.669 1.669 0 1 0-3.338 0 1.669 1.669 0 0 0 3.338 0z" }) + ] + } + ); +}); + +exports.default = SiZoom; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.d.ts new file mode 100644 index 000000000..91843d15b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#0B5CFF"; +declare const SiZoom: IconType; +export { SiZoom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.mjs new file mode 100644 index 000000000..0423d3bf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZoom.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#0B5CFF"; +const SiZoom = React.forwardRef(function SiZoom2({ title = "Zoom", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M5.033 14.649H.743a.74.74 0 0 1-.686-.458.74.74 0 0 1 .16-.808L3.19 10.41H1.06A1.06 1.06 0 0 1 0 9.35h3.957c.301 0 .57.18.686.458a.74.74 0 0 1-.161.808L1.51 13.59h2.464c.585 0 1.06.475 1.06 1.06zM24 11.338c0-1.14-.927-2.066-2.066-2.066-.61 0-1.158.265-1.537.686a2.061 2.061 0 0 0-1.536-.686c-1.14 0-2.066.926-2.066 2.066v3.311a1.06 1.06 0 0 0 1.06-1.06v-2.251a1.004 1.004 0 0 1 2.013 0v2.251c0 .586.474 1.06 1.06 1.06v-3.311a1.004 1.004 0 0 1 2.012 0v2.251c0 .586.475 1.06 1.06 1.06zM16.265 12a2.728 2.728 0 1 1-5.457 0 2.728 2.728 0 0 1 5.457 0zm-1.06 0a1.669 1.669 0 1 0-3.338 0 1.669 1.669 0 0 0 3.338 0zm-4.82 0a2.728 2.728 0 1 1-5.458 0 2.728 2.728 0 0 1 5.457 0zm-1.06 0a1.669 1.669 0 1 0-3.338 0 1.669 1.669 0 0 0 3.338 0z" }) + ] + } + ); +}); + +export { SiZoom as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.cjs new file mode 100644 index 000000000..79385e1fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#15A6F0"; +const SiZorin = React__namespace.forwardRef(function SiZorin2({ title = "Zorin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 18.944L5.995 22.4h12.01L20 18.944H4zM24 12l-2.013 3.488H9.216l12.771-6.976L24 12zM0 12l2.013-3.488h12.771L2.013 15.488 0 12zm4-6.944L5.995 1.6h12.01L20 5.056H4z" }) + ] + } + ); +}); + +exports.default = SiZorin; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.d.ts new file mode 100644 index 000000000..69ffbc83a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#15A6F0"; +declare const SiZorin: IconType; +export { SiZorin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.mjs new file mode 100644 index 000000000..f12be7654 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZorin.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#15A6F0"; +const SiZorin = React.forwardRef(function SiZorin2({ title = "Zorin", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M4 18.944L5.995 22.4h12.01L20 18.944H4zM24 12l-2.013 3.488H9.216l12.771-6.976L24 12zM0 12l2.013-3.488h12.771L2.013 15.488 0 12zm4-6.944L5.995 1.6h12.01L20 5.056H4z" }) + ] + } + ); +}); + +export { SiZorin as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.cjs new file mode 100644 index 000000000..dfe1c3815 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#CC2936"; +const SiZotero = React__namespace.forwardRef(function SiZotero2({ title = "Zotero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.231 2.462 7.18 20.923h14.564V24H2.256v-2.462L16.308 3.076H2.975V0h18.256v2.462z" }) + ] + } + ); +}); + +exports.default = SiZotero; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.d.ts new file mode 100644 index 000000000..7eaea7d1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#CC2936"; +declare const SiZotero: IconType; +export { SiZotero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.mjs new file mode 100644 index 000000000..596b945a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZotero.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#CC2936"; +const SiZotero = React.forwardRef(function SiZotero2({ title = "Zotero", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M21.231 2.462 7.18 20.923h14.564V24H2.256v-2.462L16.308 3.076H2.975V0h18.256v2.462z" }) + ] + } + ); +}); + +export { SiZotero as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.cjs new file mode 100644 index 000000000..5004b4063 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#F15A24"; +const SiZsh = React__namespace.forwardRef(function SiZsh2({ title = "Zsh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.415 5.038a.58.58 0 0 0-.543.197L.135 18.021a.58.58 0 0 0 .071.814.58.58 0 0 0 .815-.07L11.757 5.979a.58.58 0 0 0-.07-.815.6.6 0 0 0-.272-.126m-8.113.317a3.133 3.133 0 0 0-3.12 3.12 3.13 3.13 0 0 0 3.12 3.119A3.133 3.133 0 0 0 6.42 8.475a3.13 3.13 0 0 0-3.119-3.119m0 1.806a1.3 1.3 0 0 1 1.314 1.313 1.3 1.3 0 0 1-1.314 1.312A1.3 1.3 0 0 1 1.99 8.475a1.3 1.3 0 0 1 1.312-1.314m5.253 5.253a3.13 3.13 0 0 0-3.119 3.119 3.13 3.13 0 0 0 3.12 3.118 3.133 3.133 0 0 0 3.118-3.12 3.133 3.133 0 0 0-3.119-3.118m0 1.805a1.3 1.3 0 0 1 1.313 1.314c0 .735-.577 1.312-1.312 1.312a1.3 1.3 0 0 1-1.314-1.312 1.3 1.3 0 0 1 1.313-1.314m7.201 3.276a.58.58 0 0 0-.578.578.58.58 0 0 0 .578.578h7.666a.58.58 0 0 0 .579-.578.58.58 0 0 0-.579-.578Z" }) + ] + } + ); +}); + +exports.default = SiZsh; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.d.ts new file mode 100644 index 000000000..638a234ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#F15A24"; +declare const SiZsh: IconType; +export { SiZsh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.mjs new file mode 100644 index 000000000..e51da3508 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZsh.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#F15A24"; +const SiZsh = React.forwardRef(function SiZsh2({ title = "Zsh", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M11.415 5.038a.58.58 0 0 0-.543.197L.135 18.021a.58.58 0 0 0 .071.814.58.58 0 0 0 .815-.07L11.757 5.979a.58.58 0 0 0-.07-.815.6.6 0 0 0-.272-.126m-8.113.317a3.133 3.133 0 0 0-3.12 3.12 3.13 3.13 0 0 0 3.12 3.119A3.133 3.133 0 0 0 6.42 8.475a3.13 3.13 0 0 0-3.119-3.119m0 1.806a1.3 1.3 0 0 1 1.314 1.313 1.3 1.3 0 0 1-1.314 1.312A1.3 1.3 0 0 1 1.99 8.475a1.3 1.3 0 0 1 1.312-1.314m5.253 5.253a3.13 3.13 0 0 0-3.119 3.119 3.13 3.13 0 0 0 3.12 3.118 3.133 3.133 0 0 0 3.118-3.12 3.133 3.133 0 0 0-3.119-3.118m0 1.805a1.3 1.3 0 0 1 1.313 1.314c0 .735-.577 1.312-1.312 1.312a1.3 1.3 0 0 1-1.314-1.312 1.3 1.3 0 0 1 1.313-1.314m7.201 3.276a.58.58 0 0 0-.578.578.58.58 0 0 0 .578.578h7.666a.58.58 0 0 0 .579-.578.58.58 0 0 0-.579-.578Z" }) + ] + } + ); +}); + +export { SiZsh as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.cjs new file mode 100644 index 000000000..cd18adaed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#6492FE"; +const SiZulip = React__namespace.forwardRef(function SiZulip2({ title = "Zulip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.767 3.589c0 1.209-.543 2.283-1.37 2.934l-8.034 7.174c-.149.128-.343-.078-.235-.25l2.946-5.9c.083-.165-.024-.368-.194-.368H4.452c-1.77 0-3.219-1.615-3.219-3.59C1.233 1.616 2.682 0 4.452 0h15.096c1.77-.001 3.219 1.614 3.219 3.589zM4.452 24h15.096c1.77 0 3.219-1.616 3.219-3.59 0-1.974-1.449-3.59-3.219-3.59H8.12c-.17 0-.277-.202-.194-.367l2.946-5.9c.108-.172-.086-.378-.235-.25l-8.033 7.173c-.828.65-1.37 1.725-1.37 2.934 0 1.974 1.448 3.59 3.218 3.59z" }) + ] + } + ); +}); + +exports.default = SiZulip; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.d.ts new file mode 100644 index 000000000..2cfb00708 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#6492FE"; +declare const SiZulip: IconType; +export { SiZulip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.mjs new file mode 100644 index 000000000..a347c59a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZulip.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#6492FE"; +const SiZulip = React.forwardRef(function SiZulip2({ title = "Zulip", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M22.767 3.589c0 1.209-.543 2.283-1.37 2.934l-8.034 7.174c-.149.128-.343-.078-.235-.25l2.946-5.9c.083-.165-.024-.368-.194-.368H4.452c-1.77 0-3.219-1.615-3.219-3.59C1.233 1.616 2.682 0 4.452 0h15.096c1.77-.001 3.219 1.614 3.219 3.589zM4.452 24h15.096c1.77 0 3.219-1.616 3.219-3.59 0-1.974-1.449-3.59-3.219-3.59H8.12c-.17 0-.277-.202-.194-.367l2.946-5.9c.108-.172-.086-.378-.235-.25l-8.033 7.173c-.828.65-1.37 1.725-1.37 2.934 0 1.974 1.448 3.59 3.218 3.59z" }) + ] + } + ); +}); + +export { SiZulip as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.cjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.cjs new file mode 100644 index 000000000..ff0bbe808 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.cjs @@ -0,0 +1,51 @@ +'use strict'; + +Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); + +const jsxRuntime = require('react/jsx-runtime'); +const React = require('react'); + +function _interopNamespaceDefault(e) { + const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } }); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React); + +const defaultColor = "#B02CCE"; +const SiZyte = React__namespace.forwardRef(function SiZyte2({ title = "Zyte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxRuntime.jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }), + /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.135 6.818v1.715h-1.217V9.92h1.217v2.601c0 1.624.943 2.487 2.355 2.487.236 0 .562-.025.785-.076v-1.348c-.146.039-.312.05-.47.05-.708 0-1.205-.328-1.205-1.138V9.92h1.675V8.533h-1.671V6.818ZM20.873 8.4c-1.846 0-3.299 1.441-3.299 3.3 0 1.909 1.454 3.36 3.324 3.36 1.572 0 2.788-.89 3.024-2.238h-1.467c-.132.553-.746.918-1.531.918-1.034 0-1.688-.589-1.871-1.531h4.908c.026-.12.039-.445.039-.617 0-1.87-1.399-3.192-3.127-3.192ZM0 8.533v1.399h3.928L0 13.532v1.4h5.719v-1.4h-3.94l3.94-3.6V8.533Zm6.037 0 2.54 6.059-1.151 2.59h1.57l3.611-8.649h-1.57l-1.715 4.358-1.717-4.358Zm14.758 1.19c.875 0 1.49.511 1.623 1.244h-3.324c.21-.786.838-1.244 1.7-1.244z" }) + ] + } + ); +}); + +exports.default = SiZyte; +exports.defaultColor = defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.d.ts b/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.d.ts new file mode 100644 index 000000000..1447a6751 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.d.ts @@ -0,0 +1,4 @@ +import { IconType } from '../types'; +declare const defaultColor = "#B02CCE"; +declare const SiZyte: IconType; +export { SiZyte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.mjs b/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.mjs new file mode 100644 index 000000000..c3acc1382 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/icons/SiZyte.mjs @@ -0,0 +1,27 @@ +import { jsxs, jsx } from 'react/jsx-runtime'; +import * as React from 'react'; + +const defaultColor = "#B02CCE"; +const SiZyte = React.forwardRef(function SiZyte2({ title = "Zyte", color = "currentColor", size = 24, ...others }, ref) { + if (color === "default") { + color = defaultColor; + } + return /* @__PURE__ */ jsxs( + "svg", + { + xmlns: "http://www.w3.org/2000/svg", + width: size, + height: size, + fill: color, + viewBox: "0 0 24 24", + ref, + ...others, + children: [ + /* @__PURE__ */ jsx("title", { children: title }), + /* @__PURE__ */ jsx("path", { d: "M14.135 6.818v1.715h-1.217V9.92h1.217v2.601c0 1.624.943 2.487 2.355 2.487.236 0 .562-.025.785-.076v-1.348c-.146.039-.312.05-.47.05-.708 0-1.205-.328-1.205-1.138V9.92h1.675V8.533h-1.671V6.818ZM20.873 8.4c-1.846 0-3.299 1.441-3.299 3.3 0 1.909 1.454 3.36 3.324 3.36 1.572 0 2.788-.89 3.024-2.238h-1.467c-.132.553-.746.918-1.531.918-1.034 0-1.688-.589-1.871-1.531h4.908c.026-.12.039-.445.039-.617 0-1.87-1.399-3.192-3.127-3.192ZM0 8.533v1.399h3.928L0 13.532v1.4h5.719v-1.4h-3.94l3.94-3.6V8.533Zm6.037 0 2.54 6.059-1.151 2.59h1.57l3.611-8.649h-1.57l-1.715 4.358-1.717-4.358Zm14.758 1.19c.875 0 1.49.511 1.623 1.244h-3.324c.21-.786.838-1.244 1.7-1.244z" }) + ] + } + ); +}); + +export { SiZyte as default, defaultColor }; diff --git a/node_modules/@icons-pack/react-simple-icons/index.cjs b/node_modules/@icons-pack/react-simple-icons/index.cjs new file mode 100644 index 000000000..019dd10b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/index.cjs @@ -0,0 +1,10186 @@ +'use strict'; + +Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); + +const Si1001tracklists = require('./icons/Si1001tracklists.cjs'); +const Si1and1 = require('./icons/Si1and1.cjs'); +const Si1dot1dot1dot1 = require('./icons/Si1dot1dot1dot1.cjs'); +const Si1panel = require('./icons/Si1panel.cjs'); +const Si1password = require('./icons/Si1password.cjs'); +const Si2fas = require('./icons/Si2fas.cjs'); +const Si2k = require('./icons/Si2k.cjs'); +const Si30secondsofcode = require('./icons/Si30secondsofcode.cjs'); +const Si365datascience = require('./icons/Si365datascience.cjs'); +const Si3m = require('./icons/Si3m.cjs'); +const Si42 = require('./icons/Si42.cjs'); +const Si4chan = require('./icons/Si4chan.cjs'); +const Si4d = require('./icons/Si4d.cjs'); +const Si500px = require('./icons/Si500px.cjs'); +const Si7zip = require('./icons/Si7zip.cjs'); +const Si99designs = require('./icons/Si99designs.cjs'); +const Si9gag = require('./icons/Si9gag.cjs'); +const SiAbb = require('./icons/SiAbb.cjs'); +const SiAbbott = require('./icons/SiAbbott.cjs'); +const SiAbbvie = require('./icons/SiAbbvie.cjs'); +const SiAbdownloadmanager = require('./icons/SiAbdownloadmanager.cjs'); +const SiAboutdotme = require('./icons/SiAboutdotme.cjs'); +const SiAbstract = require('./icons/SiAbstract.cjs'); +const SiAbusedotch = require('./icons/SiAbusedotch.cjs'); +const SiAcademia = require('./icons/SiAcademia.cjs'); +const SiAccenture = require('./icons/SiAccenture.cjs'); +const SiAccusoft = require('./icons/SiAccusoft.cjs'); +const SiAccuweather = require('./icons/SiAccuweather.cjs'); +const SiAcer = require('./icons/SiAcer.cjs'); +const SiAcm = require('./icons/SiAcm.cjs'); +const SiAcode = require('./icons/SiAcode.cjs'); +const SiActigraph = require('./icons/SiActigraph.cjs'); +const SiActiveloop = require('./icons/SiActiveloop.cjs'); +const SiActivision = require('./icons/SiActivision.cjs'); +const SiActivitypub = require('./icons/SiActivitypub.cjs'); +const SiActix = require('./icons/SiActix.cjs'); +const SiActualbudget = require('./icons/SiActualbudget.cjs'); +const SiAcura = require('./icons/SiAcura.cjs'); +const SiAda = require('./icons/SiAda.cjs'); +const SiAdafruit = require('./icons/SiAdafruit.cjs'); +const SiAdaway = require('./icons/SiAdaway.cjs'); +const SiAdblock = require('./icons/SiAdblock.cjs'); +const SiAdblockplus = require('./icons/SiAdblockplus.cjs'); +const SiAddydotio = require('./icons/SiAddydotio.cjs'); +const SiAdguard = require('./icons/SiAdguard.cjs'); +const SiAdidas = require('./icons/SiAdidas.cjs'); +const SiAdminer = require('./icons/SiAdminer.cjs'); +const SiAdonisjs = require('./icons/SiAdonisjs.cjs'); +const SiAdp = require('./icons/SiAdp.cjs'); +const SiAdroll = require('./icons/SiAdroll.cjs'); +const SiAdventofcode = require('./icons/SiAdventofcode.cjs'); +const SiAdyen = require('./icons/SiAdyen.cjs'); +const SiAegisauthenticator = require('./icons/SiAegisauthenticator.cjs'); +const SiAeroflot = require('./icons/SiAeroflot.cjs'); +const SiAeromexico = require('./icons/SiAeromexico.cjs'); +const SiAfdian = require('./icons/SiAfdian.cjs'); +const SiAffine = require('./icons/SiAffine.cjs'); +const SiAframe = require('./icons/SiAframe.cjs'); +const SiAfterpay = require('./icons/SiAfterpay.cjs'); +const SiAftership = require('./icons/SiAftership.cjs'); +const SiAgora = require('./icons/SiAgora.cjs'); +const SiAib = require('./icons/SiAib.cjs'); +const SiAidungeon = require('./icons/SiAidungeon.cjs'); +const SiAiohttp = require('./icons/SiAiohttp.cjs'); +const SiAiqfome = require('./icons/SiAiqfome.cjs'); +const SiAirasia = require('./icons/SiAirasia.cjs'); +const SiAirbnb = require('./icons/SiAirbnb.cjs'); +const SiAirbrake = require('./icons/SiAirbrake.cjs'); +const SiAirbus = require('./icons/SiAirbus.cjs'); +const SiAirbyte = require('./icons/SiAirbyte.cjs'); +const SiAircall = require('./icons/SiAircall.cjs'); +const SiAircanada = require('./icons/SiAircanada.cjs'); +const SiAirchina = require('./icons/SiAirchina.cjs'); +const SiAirfrance = require('./icons/SiAirfrance.cjs'); +const SiAirindia = require('./icons/SiAirindia.cjs'); +const SiAirplayaudio = require('./icons/SiAirplayaudio.cjs'); +const SiAirplayvideo = require('./icons/SiAirplayvideo.cjs'); +const SiAirserbia = require('./icons/SiAirserbia.cjs'); +const SiAirtable = require('./icons/SiAirtable.cjs'); +const SiAirtel = require('./icons/SiAirtel.cjs'); +const SiAirtransat = require('./icons/SiAirtransat.cjs'); +const SiAjv = require('./icons/SiAjv.cjs'); +const SiAkamai = require('./icons/SiAkamai.cjs'); +const SiAkasaair = require('./icons/SiAkasaair.cjs'); +const SiAkaunting = require('./icons/SiAkaunting.cjs'); +const SiAkiflow = require('./icons/SiAkiflow.cjs'); +const SiAlacritty = require('./icons/SiAlacritty.cjs'); +const SiAlamy = require('./icons/SiAlamy.cjs'); +const SiAlbertheijn = require('./icons/SiAlbertheijn.cjs'); +const SiAlby = require('./icons/SiAlby.cjs'); +const SiAlchemy = require('./icons/SiAlchemy.cjs'); +const SiAldinord = require('./icons/SiAldinord.cjs'); +const SiAldisud = require('./icons/SiAldisud.cjs'); +const SiAlfred = require('./icons/SiAlfred.cjs'); +const SiAlgolia = require('./icons/SiAlgolia.cjs'); +const SiAlgorand = require('./icons/SiAlgorand.cjs'); +const SiAlibabacloud = require('./icons/SiAlibabacloud.cjs'); +const SiAlibabadotcom = require('./icons/SiAlibabadotcom.cjs'); +const SiAlienware = require('./icons/SiAlienware.cjs'); +const SiAliexpress = require('./icons/SiAliexpress.cjs'); +const SiAlipay = require('./icons/SiAlipay.cjs'); +const SiAlist = require('./icons/SiAlist.cjs'); +const SiAllegro = require('./icons/SiAllegro.cjs'); +const SiAlliedmodders = require('./icons/SiAlliedmodders.cjs'); +const SiAlltrails = require('./icons/SiAlltrails.cjs'); +const SiAlmalinux = require('./icons/SiAlmalinux.cjs'); +const SiAlpinedotjs = require('./icons/SiAlpinedotjs.cjs'); +const SiAlpinelinux = require('./icons/SiAlpinelinux.cjs'); +const SiAlternativeto = require('./icons/SiAlternativeto.cjs'); +const SiAlwaysdata = require('./icons/SiAlwaysdata.cjs'); +const SiAmd = require('./icons/SiAmd.cjs'); +const SiAmeba = require('./icons/SiAmeba.cjs'); +const SiAmericanairlines = require('./icons/SiAmericanairlines.cjs'); +const SiAmericanexpress = require('./icons/SiAmericanexpress.cjs'); +const SiAmg = require('./icons/SiAmg.cjs'); +const SiAmp = require('./icons/SiAmp.cjs'); +const SiAmul = require('./icons/SiAmul.cjs'); +const SiAna = require('./icons/SiAna.cjs'); +const SiAnaconda = require('./icons/SiAnaconda.cjs'); +const SiAnalogue = require('./icons/SiAnalogue.cjs'); +const SiAndela = require('./icons/SiAndela.cjs'); +const SiAndroid = require('./icons/SiAndroid.cjs'); +const SiAndroidauto = require('./icons/SiAndroidauto.cjs'); +const SiAndroidstudio = require('./icons/SiAndroidstudio.cjs'); +const SiAngular = require('./icons/SiAngular.cjs'); +const SiAnichart = require('./icons/SiAnichart.cjs'); +const SiAnilist = require('./icons/SiAnilist.cjs'); +const SiAnimalplanet = require('./icons/SiAnimalplanet.cjs'); +const SiAnimedotjs = require('./icons/SiAnimedotjs.cjs'); +const SiAnkermake = require('./icons/SiAnkermake.cjs'); +const SiAnki = require('./icons/SiAnki.cjs'); +const SiAnsible = require('./icons/SiAnsible.cjs'); +const SiAnswer = require('./icons/SiAnswer.cjs'); +const SiAnsys = require('./icons/SiAnsys.cjs'); +const SiAnta = require('./icons/SiAnta.cjs'); +const SiAntdesign = require('./icons/SiAntdesign.cjs'); +const SiAntena3 = require('./icons/SiAntena3.cjs'); +const SiAntennapod = require('./icons/SiAntennapod.cjs'); +const SiAnthropic = require('./icons/SiAnthropic.cjs'); +const SiAntv = require('./icons/SiAntv.cjs'); +const SiAnycubic = require('./icons/SiAnycubic.cjs'); +const SiAnydesk = require('./icons/SiAnydesk.cjs'); +const SiAnytype = require('./icons/SiAnytype.cjs'); +const SiApache = require('./icons/SiApache.cjs'); +const SiApacheairflow = require('./icons/SiApacheairflow.cjs'); +const SiApacheant = require('./icons/SiApacheant.cjs'); +const SiApacheavro = require('./icons/SiApacheavro.cjs'); +const SiApachecassandra = require('./icons/SiApachecassandra.cjs'); +const SiApachecloudstack = require('./icons/SiApachecloudstack.cjs'); +const SiApachecordova = require('./icons/SiApachecordova.cjs'); +const SiApachecouchdb = require('./icons/SiApachecouchdb.cjs'); +const SiApachedolphinscheduler = require('./icons/SiApachedolphinscheduler.cjs'); +const SiApachedoris = require('./icons/SiApachedoris.cjs'); +const SiApachedruid = require('./icons/SiApachedruid.cjs'); +const SiApacheecharts = require('./icons/SiApacheecharts.cjs'); +const SiApacheflink = require('./icons/SiApacheflink.cjs'); +const SiApachefreemarker = require('./icons/SiApachefreemarker.cjs'); +const SiApachegroovy = require('./icons/SiApachegroovy.cjs'); +const SiApacheguacamole = require('./icons/SiApacheguacamole.cjs'); +const SiApachehadoop = require('./icons/SiApachehadoop.cjs'); +const SiApachehbase = require('./icons/SiApachehbase.cjs'); +const SiApachehive = require('./icons/SiApachehive.cjs'); +const SiApachejmeter = require('./icons/SiApachejmeter.cjs'); +const SiApachekafka = require('./icons/SiApachekafka.cjs'); +const SiApachekylin = require('./icons/SiApachekylin.cjs'); +const SiApachelucene = require('./icons/SiApachelucene.cjs'); +const SiApachemaven = require('./icons/SiApachemaven.cjs'); +const SiApachenetbeanside = require('./icons/SiApachenetbeanside.cjs'); +const SiApachenifi = require('./icons/SiApachenifi.cjs'); +const SiApacheopenoffice = require('./icons/SiApacheopenoffice.cjs'); +const SiApacheparquet = require('./icons/SiApacheparquet.cjs'); +const SiApachepdfbox = require('./icons/SiApachepdfbox.cjs'); +const SiApachepulsar = require('./icons/SiApachepulsar.cjs'); +const SiApacherocketmq = require('./icons/SiApacherocketmq.cjs'); +const SiApachesolr = require('./icons/SiApachesolr.cjs'); +const SiApachespark = require('./icons/SiApachespark.cjs'); +const SiApachestorm = require('./icons/SiApachestorm.cjs'); +const SiApachesuperset = require('./icons/SiApachesuperset.cjs'); +const SiApachetomcat = require('./icons/SiApachetomcat.cjs'); +const SiAparat = require('./icons/SiAparat.cjs'); +const SiApifox = require('./icons/SiApifox.cjs'); +const SiApmterminals = require('./icons/SiApmterminals.cjs'); +const SiApollographql = require('./icons/SiApollographql.cjs'); +const SiApostrophe = require('./icons/SiApostrophe.cjs'); +const SiAppgallery = require('./icons/SiAppgallery.cjs'); +const SiAppian = require('./icons/SiAppian.cjs'); +const SiAppimage = require('./icons/SiAppimage.cjs'); +const SiAppium = require('./icons/SiAppium.cjs'); +const SiApple = require('./icons/SiApple.cjs'); +const SiApplearcade = require('./icons/SiApplearcade.cjs'); +const SiApplemusic = require('./icons/SiApplemusic.cjs'); +const SiApplenews = require('./icons/SiApplenews.cjs'); +const SiApplepay = require('./icons/SiApplepay.cjs'); +const SiApplepodcasts = require('./icons/SiApplepodcasts.cjs'); +const SiAppletv = require('./icons/SiAppletv.cjs'); +const SiAppmanager = require('./icons/SiAppmanager.cjs'); +const SiAppsignal = require('./icons/SiAppsignal.cjs'); +const SiAppsmith = require('./icons/SiAppsmith.cjs'); +const SiAppstore = require('./icons/SiAppstore.cjs'); +const SiAppveyor = require('./icons/SiAppveyor.cjs'); +const SiAppwrite = require('./icons/SiAppwrite.cjs'); +const SiAqua = require('./icons/SiAqua.cjs'); +const SiAral = require('./icons/SiAral.cjs'); +const SiArangodb = require('./icons/SiArangodb.cjs'); +const SiArc = require('./icons/SiArc.cjs'); +const SiArcgis = require('./icons/SiArcgis.cjs'); +const SiArchicad = require('./icons/SiArchicad.cjs'); +const SiArchiveofourown = require('./icons/SiArchiveofourown.cjs'); +const SiArchlinux = require('./icons/SiArchlinux.cjs'); +const SiArdour = require('./icons/SiArdour.cjs'); +const SiArduino = require('./icons/SiArduino.cjs'); +const SiArgo = require('./icons/SiArgo.cjs'); +const SiArgos = require('./icons/SiArgos.cjs'); +const SiAriakit = require('./icons/SiAriakit.cjs'); +const SiArkecosystem = require('./icons/SiArkecosystem.cjs'); +const SiArlo = require('./icons/SiArlo.cjs'); +const SiArm = require('./icons/SiArm.cjs'); +const SiArmkeil = require('./icons/SiArmkeil.cjs'); +const SiArstechnica = require('./icons/SiArstechnica.cjs'); +const SiArtifacthub = require('./icons/SiArtifacthub.cjs'); +const SiArtixlinux = require('./icons/SiArtixlinux.cjs'); +const SiArtstation = require('./icons/SiArtstation.cjs'); +const SiArxiv = require('./icons/SiArxiv.cjs'); +const SiAsahilinux = require('./icons/SiAsahilinux.cjs'); +const SiAsana = require('./icons/SiAsana.cjs'); +const SiAsciidoctor = require('./icons/SiAsciidoctor.cjs'); +const SiAsciinema = require('./icons/SiAsciinema.cjs'); +const SiAsda = require('./icons/SiAsda.cjs'); +const SiAseprite = require('./icons/SiAseprite.cjs'); +const SiAssemblyscript = require('./icons/SiAssemblyscript.cjs'); +const SiAsterisk = require('./icons/SiAsterisk.cjs'); +const SiAstonmartin = require('./icons/SiAstonmartin.cjs'); +const SiAstra = require('./icons/SiAstra.cjs'); +const SiAstral = require('./icons/SiAstral.cjs'); +const SiAstro = require('./icons/SiAstro.cjs'); +const SiAsus = require('./icons/SiAsus.cjs'); +const SiAtandt = require('./icons/SiAtandt.cjs'); +const SiAtari = require('./icons/SiAtari.cjs'); +const SiAtlasos = require('./icons/SiAtlasos.cjs'); +const SiAtlassian = require('./icons/SiAtlassian.cjs'); +const SiAuchan = require('./icons/SiAuchan.cjs'); +const SiAudacity = require('./icons/SiAudacity.cjs'); +const SiAudi = require('./icons/SiAudi.cjs'); +const SiAudible = require('./icons/SiAudible.cjs'); +const SiAudiobookshelf = require('./icons/SiAudiobookshelf.cjs'); +const SiAudioboom = require('./icons/SiAudioboom.cjs'); +const SiAudiomack = require('./icons/SiAudiomack.cjs'); +const SiAudiotechnica = require('./icons/SiAudiotechnica.cjs'); +const SiAurelia = require('./icons/SiAurelia.cjs'); +const SiAutentique = require('./icons/SiAutentique.cjs'); +const SiAuth0 = require('./icons/SiAuth0.cjs'); +const SiAuthelia = require('./icons/SiAuthelia.cjs'); +const SiAuthentik = require('./icons/SiAuthentik.cjs'); +const SiAutocad = require('./icons/SiAutocad.cjs'); +const SiAutocannon = require('./icons/SiAutocannon.cjs'); +const SiAutodesk = require('./icons/SiAutodesk.cjs'); +const SiAutodeskmaya = require('./icons/SiAutodeskmaya.cjs'); +const SiAutodeskrevit = require('./icons/SiAutodeskrevit.cjs'); +const SiAutohotkey = require('./icons/SiAutohotkey.cjs'); +const SiAutoit = require('./icons/SiAutoit.cjs'); +const SiAutomattic = require('./icons/SiAutomattic.cjs'); +const SiAutoprefixer = require('./icons/SiAutoprefixer.cjs'); +const SiAutozone = require('./icons/SiAutozone.cjs'); +const SiAvajs = require('./icons/SiAvajs.cjs'); +const SiAvaloniaui = require('./icons/SiAvaloniaui.cjs'); +const SiAvast = require('./icons/SiAvast.cjs'); +const SiAvianca = require('./icons/SiAvianca.cjs'); +const SiAvira = require('./icons/SiAvira.cjs'); +const SiAvm = require('./icons/SiAvm.cjs'); +const SiAwesomelists = require('./icons/SiAwesomelists.cjs'); +const SiAwesomewm = require('./icons/SiAwesomewm.cjs'); +const SiAwwwards = require('./icons/SiAwwwards.cjs'); +const SiAxios = require('./icons/SiAxios.cjs'); +const SiAxisbank = require('./icons/SiAxisbank.cjs'); +const SiB4x = require('./icons/SiB4x.cjs'); +const SiBabel = require('./icons/SiBabel.cjs'); +const SiBabelio = require('./icons/SiBabelio.cjs'); +const SiBabylondotjs = require('./icons/SiBabylondotjs.cjs'); +const SiBackblaze = require('./icons/SiBackblaze.cjs'); +const SiBackbone = require('./icons/SiBackbone.cjs'); +const SiBackbonedotjs = require('./icons/SiBackbonedotjs.cjs'); +const SiBackendless = require('./icons/SiBackendless.cjs'); +const SiBackstage = require('./icons/SiBackstage.cjs'); +const SiBackstageCasting = require('./icons/SiBackstageCasting.cjs'); +const SiBadoo = require('./icons/SiBadoo.cjs'); +const SiBaidu = require('./icons/SiBaidu.cjs'); +const SiBakalari = require('./icons/SiBakalari.cjs'); +const SiBamboo = require('./icons/SiBamboo.cjs'); +const SiBambulab = require('./icons/SiBambulab.cjs'); +const SiBandcamp = require('./icons/SiBandcamp.cjs'); +const SiBandlab = require('./icons/SiBandlab.cjs'); +const SiBandrautomation = require('./icons/SiBandrautomation.cjs'); +const SiBandsintown = require('./icons/SiBandsintown.cjs'); +const SiBankofamerica = require('./icons/SiBankofamerica.cjs'); +const SiBarclays = require('./icons/SiBarclays.cjs'); +const SiBaremetrics = require('./icons/SiBaremetrics.cjs'); +const SiBarmenia = require('./icons/SiBarmenia.cjs'); +const SiBasecamp = require('./icons/SiBasecamp.cjs'); +const SiBaserow = require('./icons/SiBaserow.cjs'); +const SiBasicattentiontoken = require('./icons/SiBasicattentiontoken.cjs'); +const SiBastyon = require('./icons/SiBastyon.cjs'); +const SiBat = require('./icons/SiBat.cjs'); +const SiBata = require('./icons/SiBata.cjs'); +const SiBattledotnet = require('./icons/SiBattledotnet.cjs'); +const SiBazel = require('./icons/SiBazel.cjs'); +const SiBeatport = require('./icons/SiBeatport.cjs'); +const SiBeats = require('./icons/SiBeats.cjs'); +const SiBeatsbydre = require('./icons/SiBeatsbydre.cjs'); +const SiBeatstars = require('./icons/SiBeatstars.cjs'); +const SiBeekeeperstudio = require('./icons/SiBeekeeperstudio.cjs'); +const SiBehance = require('./icons/SiBehance.cjs'); +const SiBeijingsubway = require('./icons/SiBeijingsubway.cjs'); +const SiBem = require('./icons/SiBem.cjs'); +const SiBentley = require('./icons/SiBentley.cjs'); +const SiBento = require('./icons/SiBento.cjs'); +const SiBentobox = require('./icons/SiBentobox.cjs'); +const SiBentoml = require('./icons/SiBentoml.cjs'); +const SiBereal = require('./icons/SiBereal.cjs'); +const SiBetfair = require('./icons/SiBetfair.cjs'); +const SiBetterauth = require('./icons/SiBetterauth.cjs'); +const SiBetterdiscord = require('./icons/SiBetterdiscord.cjs'); +const SiBetterstack = require('./icons/SiBetterstack.cjs'); +const SiBevy = require('./icons/SiBevy.cjs'); +const SiBigbasket = require('./icons/SiBigbasket.cjs'); +const SiBigbluebutton = require('./icons/SiBigbluebutton.cjs'); +const SiBigcartel = require('./icons/SiBigcartel.cjs'); +const SiBigcommerce = require('./icons/SiBigcommerce.cjs'); +const SiBilibili = require('./icons/SiBilibili.cjs'); +const SiBillboard = require('./icons/SiBillboard.cjs'); +const SiBim = require('./icons/SiBim.cjs'); +const SiBinance = require('./icons/SiBinance.cjs'); +const SiBioconductor = require('./icons/SiBioconductor.cjs'); +const SiBiolink = require('./icons/SiBiolink.cjs'); +const SiBiome = require('./icons/SiBiome.cjs'); +const SiBisecthosting = require('./icons/SiBisecthosting.cjs'); +const SiBit = require('./icons/SiBit.cjs'); +const SiBitbucket = require('./icons/SiBitbucket.cjs'); +const SiBitcoin = require('./icons/SiBitcoin.cjs'); +const SiBitcoincash = require('./icons/SiBitcoincash.cjs'); +const SiBitcoinsv = require('./icons/SiBitcoinsv.cjs'); +const SiBitcomet = require('./icons/SiBitcomet.cjs'); +const SiBitdefender = require('./icons/SiBitdefender.cjs'); +const SiBitly = require('./icons/SiBitly.cjs'); +const SiBitrise = require('./icons/SiBitrise.cjs'); +const SiBitsy = require('./icons/SiBitsy.cjs'); +const SiBittorrent = require('./icons/SiBittorrent.cjs'); +const SiBitwarden = require('./icons/SiBitwarden.cjs'); +const SiBitwig = require('./icons/SiBitwig.cjs'); +const SiBlack = require('./icons/SiBlack.cjs'); +const SiBlackberry = require('./icons/SiBlackberry.cjs'); +const SiBlackmagicdesign = require('./icons/SiBlackmagicdesign.cjs'); +const SiBlazemeter = require('./icons/SiBlazemeter.cjs'); +const SiBlazor = require('./icons/SiBlazor.cjs'); +const SiBlender = require('./icons/SiBlender.cjs'); +const SiBlibli = require('./icons/SiBlibli.cjs'); +const SiBlockbench = require('./icons/SiBlockbench.cjs'); +const SiBlockchaindotcom = require('./icons/SiBlockchaindotcom.cjs'); +const SiBlogger = require('./icons/SiBlogger.cjs'); +const SiBloglovin = require('./icons/SiBloglovin.cjs'); +const SiBlueprint = require('./icons/SiBlueprint.cjs'); +const SiBluesky = require('./icons/SiBluesky.cjs'); +const SiBluesound = require('./icons/SiBluesound.cjs'); +const SiBluetooth = require('./icons/SiBluetooth.cjs'); +const SiBmcsoftware = require('./icons/SiBmcsoftware.cjs'); +const SiBmw = require('./icons/SiBmw.cjs'); +const SiBnbchain = require('./icons/SiBnbchain.cjs'); +const SiBoardgamegeek = require('./icons/SiBoardgamegeek.cjs'); +const SiBoat = require('./icons/SiBoat.cjs'); +const SiBoehringeringelheim = require('./icons/SiBoehringeringelheim.cjs'); +const SiBoeing = require('./icons/SiBoeing.cjs'); +const SiBohemiainteractive = require('./icons/SiBohemiainteractive.cjs'); +const SiBombardier = require('./icons/SiBombardier.cjs'); +const SiBookalope = require('./icons/SiBookalope.cjs'); +const SiBookbub = require('./icons/SiBookbub.cjs'); +const SiBookingdotcom = require('./icons/SiBookingdotcom.cjs'); +const SiBookmeter = require('./icons/SiBookmeter.cjs'); +const SiBookmyshow = require('./icons/SiBookmyshow.cjs'); +const SiBookstack = require('./icons/SiBookstack.cjs'); +const SiBoost = require('./icons/SiBoost.cjs'); +const SiBoosty = require('./icons/SiBoosty.cjs'); +const SiBoots = require('./icons/SiBoots.cjs'); +const SiBootstrap = require('./icons/SiBootstrap.cjs'); +const SiBorgbackup = require('./icons/SiBorgbackup.cjs'); +const SiBosch = require('./icons/SiBosch.cjs'); +const SiBose = require('./icons/SiBose.cjs'); +const SiBotblecms = require('./icons/SiBotblecms.cjs'); +const SiBoulanger = require('./icons/SiBoulanger.cjs'); +const SiBower = require('./icons/SiBower.cjs'); +const SiBox = require('./icons/SiBox.cjs'); +const SiBoxysvg = require('./icons/SiBoxysvg.cjs'); +const SiBraintree = require('./icons/SiBraintree.cjs'); +const SiBraintrust = require('./icons/SiBraintrust.cjs'); +const SiBrandfetch = require('./icons/SiBrandfetch.cjs'); +const SiBrandfolder = require('./icons/SiBrandfolder.cjs'); +const SiBrave = require('./icons/SiBrave.cjs'); +const SiBreaker = require('./icons/SiBreaker.cjs'); +const SiBrenntag = require('./icons/SiBrenntag.cjs'); +const SiBrevo = require('./icons/SiBrevo.cjs'); +const SiBrex = require('./icons/SiBrex.cjs'); +const SiBricks = require('./icons/SiBricks.cjs'); +const SiBritishairways = require('./icons/SiBritishairways.cjs'); +const SiBroadcom = require('./icons/SiBroadcom.cjs'); +const SiBruno = require('./icons/SiBruno.cjs'); +const SiBsd = require('./icons/SiBsd.cjs'); +const SiBspwm = require('./icons/SiBspwm.cjs'); +const SiBt = require('./icons/SiBt.cjs'); +const SiBuddy = require('./icons/SiBuddy.cjs'); +const SiBudibase = require('./icons/SiBudibase.cjs'); +const SiBuefy = require('./icons/SiBuefy.cjs'); +const SiBuffer = require('./icons/SiBuffer.cjs'); +const SiBugatti = require('./icons/SiBugatti.cjs'); +const SiBugcrowd = require('./icons/SiBugcrowd.cjs'); +const SiBuhl = require('./icons/SiBuhl.cjs'); +const SiBuildkite = require('./icons/SiBuildkite.cjs'); +const SiBuiltbybit = require('./icons/SiBuiltbybit.cjs'); +const SiBukalapak = require('./icons/SiBukalapak.cjs'); +const SiBulma = require('./icons/SiBulma.cjs'); +const SiBun = require('./icons/SiBun.cjs'); +const SiBungie = require('./icons/SiBungie.cjs'); +const SiBunnydotnet = require('./icons/SiBunnydotnet.cjs'); +const SiBunq = require('./icons/SiBunq.cjs'); +const SiBurgerking = require('./icons/SiBurgerking.cjs'); +const SiBurpsuite = require('./icons/SiBurpsuite.cjs'); +const SiBurton = require('./icons/SiBurton.cjs'); +const SiBuymeacoffee = require('./icons/SiBuymeacoffee.cjs'); +const SiBuysellads = require('./icons/SiBuysellads.cjs'); +const SiBuzzfeed = require('./icons/SiBuzzfeed.cjs'); +const SiBvg = require('./icons/SiBvg.cjs'); +const SiByjus = require('./icons/SiByjus.cjs'); +const SiBytedance = require('./icons/SiBytedance.cjs'); +const SiC = require('./icons/SiC.cjs'); +const SiCachet = require('./icons/SiCachet.cjs'); +const SiCaddy = require('./icons/SiCaddy.cjs'); +const SiCadillac = require('./icons/SiCadillac.cjs'); +const SiCafepress = require('./icons/SiCafepress.cjs'); +const SiCairographics = require('./icons/SiCairographics.cjs'); +const SiCairometro = require('./icons/SiCairometro.cjs'); +const SiCaixabank = require('./icons/SiCaixabank.cjs'); +const SiCakephp = require('./icons/SiCakephp.cjs'); +const SiCaldotcom = require('./icons/SiCaldotcom.cjs'); +const SiCalendly = require('./icons/SiCalendly.cjs'); +const SiCalibreweb = require('./icons/SiCalibreweb.cjs'); +const SiCampaignmonitor = require('./icons/SiCampaignmonitor.cjs'); +const SiCamunda = require('./icons/SiCamunda.cjs'); +const SiCanonical = require('./icons/SiCanonical.cjs'); +const SiCanvas = require('./icons/SiCanvas.cjs'); +const SiCapacitor = require('./icons/SiCapacitor.cjs'); +const SiCaprover = require('./icons/SiCaprover.cjs'); +const SiCardano = require('./icons/SiCardano.cjs'); +const SiCardmarket = require('./icons/SiCardmarket.cjs'); +const SiCarlsberggroup = require('./icons/SiCarlsberggroup.cjs'); +const SiCarrd = require('./icons/SiCarrd.cjs'); +const SiCarrefour = require('./icons/SiCarrefour.cjs'); +const SiCarthrottle = require('./icons/SiCarthrottle.cjs'); +const SiCarto = require('./icons/SiCarto.cjs'); +const SiCashapp = require('./icons/SiCashapp.cjs'); +const SiCastbox = require('./icons/SiCastbox.cjs'); +const SiCastorama = require('./icons/SiCastorama.cjs'); +const SiCastro = require('./icons/SiCastro.cjs'); +const SiCaterpillar = require('./icons/SiCaterpillar.cjs'); +const SiCbc = require('./icons/SiCbc.cjs'); +const SiCbs = require('./icons/SiCbs.cjs'); +const SiCcc = require('./icons/SiCcc.cjs'); +const SiCcleaner = require('./icons/SiCcleaner.cjs'); +const SiCdprojekt = require('./icons/SiCdprojekt.cjs'); +const SiCe = require('./icons/SiCe.cjs'); +const SiCelery = require('./icons/SiCelery.cjs'); +const SiCelestron = require('./icons/SiCelestron.cjs'); +const SiCentos = require('./icons/SiCentos.cjs'); +const SiCeph = require('./icons/SiCeph.cjs'); +const SiCesium = require('./icons/SiCesium.cjs'); +const SiChai = require('./icons/SiChai.cjs'); +const SiChainguard = require('./icons/SiChainguard.cjs'); +const SiChainlink = require('./icons/SiChainlink.cjs'); +const SiChakraui = require('./icons/SiChakraui.cjs'); +const SiChangedetection = require('./icons/SiChangedetection.cjs'); +const SiChannel4 = require('./icons/SiChannel4.cjs'); +const SiCharles = require('./icons/SiCharles.cjs'); +const SiChartdotjs = require('./icons/SiChartdotjs.cjs'); +const SiChartmogul = require('./icons/SiChartmogul.cjs'); +const SiChase = require('./icons/SiChase.cjs'); +const SiChatbot = require('./icons/SiChatbot.cjs'); +const SiChatwoot = require('./icons/SiChatwoot.cjs'); +const SiCheckio = require('./icons/SiCheckio.cjs'); +const SiCheckmarx = require('./icons/SiCheckmarx.cjs'); +const SiCheckmk = require('./icons/SiCheckmk.cjs'); +const SiChedraui = require('./icons/SiChedraui.cjs'); +const SiCheerio = require('./icons/SiCheerio.cjs'); +const SiChef = require('./icons/SiChef.cjs'); +const SiChemex = require('./icons/SiChemex.cjs'); +const SiChessdotcom = require('./icons/SiChessdotcom.cjs'); +const SiChevrolet = require('./icons/SiChevrolet.cjs'); +const SiChianetwork = require('./icons/SiChianetwork.cjs'); +const SiChinaeasternairlines = require('./icons/SiChinaeasternairlines.cjs'); +const SiChinarailway = require('./icons/SiChinarailway.cjs'); +const SiChinasouthernairlines = require('./icons/SiChinasouthernairlines.cjs'); +const SiChocolatey = require('./icons/SiChocolatey.cjs'); +const SiChromatic = require('./icons/SiChromatic.cjs'); +const SiChromewebstore = require('./icons/SiChromewebstore.cjs'); +const SiChrysler = require('./icons/SiChrysler.cjs'); +const SiChupachups = require('./icons/SiChupachups.cjs'); +const SiCilium = require('./icons/SiCilium.cjs'); +const SiCinema4d = require('./icons/SiCinema4d.cjs'); +const SiCinnamon = require('./icons/SiCinnamon.cjs'); +const SiCircle = require('./icons/SiCircle.cjs'); +const SiCircleci = require('./icons/SiCircleci.cjs'); +const SiCircuitverse = require('./icons/SiCircuitverse.cjs'); +const SiCirrusci = require('./icons/SiCirrusci.cjs'); +const SiCisco = require('./icons/SiCisco.cjs'); +const SiCitrix = require('./icons/SiCitrix.cjs'); +const SiCitroen = require('./icons/SiCitroen.cjs'); +const SiCivicrm = require('./icons/SiCivicrm.cjs'); +const SiCivo = require('./icons/SiCivo.cjs'); +const SiClarifai = require('./icons/SiClarifai.cjs'); +const SiClaris = require('./icons/SiClaris.cjs'); +const SiClarivate = require('./icons/SiClarivate.cjs'); +const SiClaude = require('./icons/SiClaude.cjs'); +const SiClerk = require('./icons/SiClerk.cjs'); +const SiClevercloud = require('./icons/SiClevercloud.cjs'); +const SiClickhouse = require('./icons/SiClickhouse.cjs'); +const SiClickup = require('./icons/SiClickup.cjs'); +const SiClion = require('./icons/SiClion.cjs'); +const SiClockify = require('./icons/SiClockify.cjs'); +const SiClojure = require('./icons/SiClojure.cjs'); +const SiCloud66 = require('./icons/SiCloud66.cjs'); +const SiCloudbees = require('./icons/SiCloudbees.cjs'); +const SiCloudcannon = require('./icons/SiCloudcannon.cjs'); +const SiCloudera = require('./icons/SiCloudera.cjs'); +const SiCloudflare = require('./icons/SiCloudflare.cjs'); +const SiCloudflarepages = require('./icons/SiCloudflarepages.cjs'); +const SiCloudflareworkers = require('./icons/SiCloudflareworkers.cjs'); +const SiCloudfoundry = require('./icons/SiCloudfoundry.cjs'); +const SiCloudinary = require('./icons/SiCloudinary.cjs'); +const SiCloudnativebuild = require('./icons/SiCloudnativebuild.cjs'); +const SiCloudron = require('./icons/SiCloudron.cjs'); +const SiCloudsmith = require('./icons/SiCloudsmith.cjs'); +const SiCloudways = require('./icons/SiCloudways.cjs'); +const SiClubforce = require('./icons/SiClubforce.cjs'); +const SiClubhouse = require('./icons/SiClubhouse.cjs'); +const SiClyp = require('./icons/SiClyp.cjs'); +const SiCmake = require('./icons/SiCmake.cjs'); +const SiCncf = require('./icons/SiCncf.cjs'); +const SiCnes = require('./icons/SiCnes.cjs'); +const SiCnet = require('./icons/SiCnet.cjs'); +const SiCnn = require('./icons/SiCnn.cjs'); +const SiCobalt = require('./icons/SiCobalt.cjs'); +const SiCocacola = require('./icons/SiCocacola.cjs'); +const SiCockpit = require('./icons/SiCockpit.cjs'); +const SiCockroachlabs = require('./icons/SiCockroachlabs.cjs'); +const SiCocoapods = require('./icons/SiCocoapods.cjs'); +const SiCocos = require('./icons/SiCocos.cjs'); +const SiCoda = require('./icons/SiCoda.cjs'); +const SiCodacy = require('./icons/SiCodacy.cjs'); +const SiCodeberg = require('./icons/SiCodeberg.cjs'); +const SiCodeblocks = require('./icons/SiCodeblocks.cjs'); +const SiCodecademy = require('./icons/SiCodecademy.cjs'); +const SiCodeceptjs = require('./icons/SiCodeceptjs.cjs'); +const SiCodechef = require('./icons/SiCodechef.cjs'); +const SiCodeclimate = require('./icons/SiCodeclimate.cjs'); +const SiCodecov = require('./icons/SiCodecov.cjs'); +const SiCodecrafters = require('./icons/SiCodecrafters.cjs'); +const SiCodefactor = require('./icons/SiCodefactor.cjs'); +const SiCodeforces = require('./icons/SiCodeforces.cjs'); +const SiCodefresh = require('./icons/SiCodefresh.cjs'); +const SiCodeigniter = require('./icons/SiCodeigniter.cjs'); +const SiCodemagic = require('./icons/SiCodemagic.cjs'); +const SiCodementor = require('./icons/SiCodementor.cjs'); +const SiCodemirror = require('./icons/SiCodemirror.cjs'); +const SiCodenewbie = require('./icons/SiCodenewbie.cjs'); +const SiCodeproject = require('./icons/SiCodeproject.cjs'); +const SiCoder = require('./icons/SiCoder.cjs'); +const SiCoderabbit = require('./icons/SiCoderabbit.cjs'); +const SiCodersrank = require('./icons/SiCodersrank.cjs'); +const SiCoderwall = require('./icons/SiCoderwall.cjs'); +const SiCodesandbox = require('./icons/SiCodesandbox.cjs'); +const SiCodeship = require('./icons/SiCodeship.cjs'); +const SiCodesignal = require('./icons/SiCodesignal.cjs'); +const SiCodestream = require('./icons/SiCodestream.cjs'); +const SiCodewars = require('./icons/SiCodewars.cjs'); +const SiCodingame = require('./icons/SiCodingame.cjs'); +const SiCodingninjas = require('./icons/SiCodingninjas.cjs'); +const SiCodio = require('./icons/SiCodio.cjs'); +const SiCoffeescript = require('./icons/SiCoffeescript.cjs'); +const SiCoggle = require('./icons/SiCoggle.cjs'); +const SiCoinbase = require('./icons/SiCoinbase.cjs'); +const SiCoinmarketcap = require('./icons/SiCoinmarketcap.cjs'); +const SiCollaboraonline = require('./icons/SiCollaboraonline.cjs'); +const SiComicfury = require('./icons/SiComicfury.cjs'); +const SiComma = require('./icons/SiComma.cjs'); +const SiCommerzbank = require('./icons/SiCommerzbank.cjs'); +const SiCommitlint = require('./icons/SiCommitlint.cjs'); +const SiCommodore = require('./icons/SiCommodore.cjs'); +const SiCommonlisp = require('./icons/SiCommonlisp.cjs'); +const SiCommonworkflowlanguage = require('./icons/SiCommonworkflowlanguage.cjs'); +const SiCompilerexplorer = require('./icons/SiCompilerexplorer.cjs'); +const SiComposer = require('./icons/SiComposer.cjs'); +const SiComptia = require('./icons/SiComptia.cjs'); +const SiComsol = require('./icons/SiComsol.cjs'); +const SiConan = require('./icons/SiConan.cjs'); +const SiConcourse = require('./icons/SiConcourse.cjs'); +const SiCondaforge = require('./icons/SiCondaforge.cjs'); +const SiConekta = require('./icons/SiConekta.cjs'); +const SiConfluence = require('./icons/SiConfluence.cjs'); +const SiConstruct3 = require('./icons/SiConstruct3.cjs'); +const SiConsul = require('./icons/SiConsul.cjs'); +const SiContabo = require('./icons/SiContabo.cjs'); +const SiContactlesspayment = require('./icons/SiContactlesspayment.cjs'); +const SiContainerd = require('./icons/SiContainerd.cjs'); +const SiContao = require('./icons/SiContao.cjs'); +const SiContentful = require('./icons/SiContentful.cjs'); +const SiContentstack = require('./icons/SiContentstack.cjs'); +const SiContinente = require('./icons/SiContinente.cjs'); +const SiContributorcovenant = require('./icons/SiContributorcovenant.cjs'); +const SiConventionalcommits = require('./icons/SiConventionalcommits.cjs'); +const SiConvertio = require('./icons/SiConvertio.cjs'); +const SiConvex = require('./icons/SiConvex.cjs'); +const SiCookiecutter = require('./icons/SiCookiecutter.cjs'); +const SiCoolermaster = require('./icons/SiCoolermaster.cjs'); +const SiCoolify = require('./icons/SiCoolify.cjs'); +const SiCoop = require('./icons/SiCoop.cjs'); +const SiCopaairlines = require('./icons/SiCopaairlines.cjs'); +const SiCoppel = require('./icons/SiCoppel.cjs'); +const SiCora = require('./icons/SiCora.cjs'); +const SiCoreboot = require('./icons/SiCoreboot.cjs'); +const SiCoreldraw = require('./icons/SiCoreldraw.cjs'); +const SiCoronaengine = require('./icons/SiCoronaengine.cjs'); +const SiCoronarenderer = require('./icons/SiCoronarenderer.cjs'); +const SiCorsair = require('./icons/SiCorsair.cjs'); +const SiCouchbase = require('./icons/SiCouchbase.cjs'); +const SiCounterstrike = require('./icons/SiCounterstrike.cjs'); +const SiCountingworkspro = require('./icons/SiCountingworkspro.cjs'); +const SiCoursera = require('./icons/SiCoursera.cjs'); +const SiCoveralls = require('./icons/SiCoveralls.cjs'); +const SiCoze = require('./icons/SiCoze.cjs'); +const SiCpanel = require('./icons/SiCpanel.cjs'); +const SiCplusplus = require('./icons/SiCplusplus.cjs'); +const SiCplusplusbuilder = require('./icons/SiCplusplusbuilder.cjs'); +const SiCraftcms = require('./icons/SiCraftcms.cjs'); +const SiCraftsman = require('./icons/SiCraftsman.cjs'); +const SiCratedb = require('./icons/SiCratedb.cjs'); +const SiCrayon = require('./icons/SiCrayon.cjs'); +const SiCreality = require('./icons/SiCreality.cjs'); +const SiCreatereactapp = require('./icons/SiCreatereactapp.cjs'); +const SiCreativecommons = require('./icons/SiCreativecommons.cjs'); +const SiCreativetechnology = require('./icons/SiCreativetechnology.cjs'); +const SiCredly = require('./icons/SiCredly.cjs'); +const SiCrehana = require('./icons/SiCrehana.cjs'); +const SiCrewai = require('./icons/SiCrewai.cjs'); +const SiCrewunited = require('./icons/SiCrewunited.cjs'); +const SiCriticalrole = require('./icons/SiCriticalrole.cjs'); +const SiCrowdin = require('./icons/SiCrowdin.cjs'); +const SiCrowdsource = require('./icons/SiCrowdsource.cjs'); +const SiCrunchbase = require('./icons/SiCrunchbase.cjs'); +const SiCrunchyroll = require('./icons/SiCrunchyroll.cjs'); +const SiCryengine = require('./icons/SiCryengine.cjs'); +const SiCryptomator = require('./icons/SiCryptomator.cjs'); +const SiCryptpad = require('./icons/SiCryptpad.cjs'); +const SiCrystal = require('./icons/SiCrystal.cjs'); +const SiCsdn = require('./icons/SiCsdn.cjs'); +const SiCss = require('./icons/SiCss.cjs'); +const SiCssdesignawards = require('./icons/SiCssdesignawards.cjs'); +const SiCssmodules = require('./icons/SiCssmodules.cjs'); +const SiCsswizardry = require('./icons/SiCsswizardry.cjs'); +const SiCts = require('./icons/SiCts.cjs'); +const SiCucumber = require('./icons/SiCucumber.cjs'); +const SiCultura = require('./icons/SiCultura.cjs'); +const SiCurl = require('./icons/SiCurl.cjs'); +const SiCurseforge = require('./icons/SiCurseforge.cjs'); +const SiCursor = require('./icons/SiCursor.cjs'); +const SiCustomink = require('./icons/SiCustomink.cjs'); +const SiCyberdefenders = require('./icons/SiCyberdefenders.cjs'); +const SiCycling74 = require('./icons/SiCycling74.cjs'); +const SiCypress = require('./icons/SiCypress.cjs'); +const SiCytoscapedotjs = require('./icons/SiCytoscapedotjs.cjs'); +const SiD = require('./icons/SiD.cjs'); +const SiD3 = require('./icons/SiD3.cjs'); +const SiDacia = require('./icons/SiDacia.cjs'); +const SiDaf = require('./icons/SiDaf.cjs'); +const SiDailydotdev = require('./icons/SiDailydotdev.cjs'); +const SiDailymotion = require('./icons/SiDailymotion.cjs'); +const SiDaisyui = require('./icons/SiDaisyui.cjs'); +const SiDapr = require('./icons/SiDapr.cjs'); +const SiDarkreader = require('./icons/SiDarkreader.cjs'); +const SiDart = require('./icons/SiDart.cjs'); +const SiDarty = require('./icons/SiDarty.cjs'); +const SiDaserste = require('./icons/SiDaserste.cjs'); +const SiDash = require('./icons/SiDash.cjs'); +const SiDash0 = require('./icons/SiDash0.cjs'); +const SiDashlane = require('./icons/SiDashlane.cjs'); +const SiDask = require('./icons/SiDask.cjs'); +const SiDassaultsystemes = require('./icons/SiDassaultsystemes.cjs'); +const SiDatabricks = require('./icons/SiDatabricks.cjs'); +const SiDatacamp = require('./icons/SiDatacamp.cjs'); +const SiDatadog = require('./icons/SiDatadog.cjs'); +const SiDatadotai = require('./icons/SiDatadotai.cjs'); +const SiDatagrip = require('./icons/SiDatagrip.cjs'); +const SiDataiku = require('./icons/SiDataiku.cjs'); +const SiDatastax = require('./icons/SiDatastax.cjs'); +const SiDatefns = require('./icons/SiDatefns.cjs'); +const SiDatev = require('./icons/SiDatev.cjs'); +const SiDatocms = require('./icons/SiDatocms.cjs'); +const SiDatto = require('./icons/SiDatto.cjs'); +const SiDavinciresolve = require('./icons/SiDavinciresolve.cjs'); +const SiDazhongdianping = require('./icons/SiDazhongdianping.cjs'); +const SiDazn = require('./icons/SiDazn.cjs'); +const SiDbeaver = require('./icons/SiDbeaver.cjs'); +const SiDblp = require('./icons/SiDblp.cjs'); +const SiDcentertainment = require('./icons/SiDcentertainment.cjs'); +const SiDebian = require('./icons/SiDebian.cjs'); +const SiDebridlink = require('./icons/SiDebridlink.cjs'); +const SiDecapcms = require('./icons/SiDecapcms.cjs'); +const SiDecentraland = require('./icons/SiDecentraland.cjs'); +const SiDedge = require('./icons/SiDedge.cjs'); +const SiDeepcool = require('./icons/SiDeepcool.cjs'); +const SiDeepgram = require('./icons/SiDeepgram.cjs'); +const SiDeepin = require('./icons/SiDeepin.cjs'); +const SiDeepl = require('./icons/SiDeepl.cjs'); +const SiDeepmind = require('./icons/SiDeepmind.cjs'); +const SiDeepnote = require('./icons/SiDeepnote.cjs'); +const SiDeezer = require('./icons/SiDeezer.cjs'); +const SiDeliveroo = require('./icons/SiDeliveroo.cjs'); +const SiDell = require('./icons/SiDell.cjs'); +const SiDelonghi = require('./icons/SiDelonghi.cjs'); +const SiDelphi = require('./icons/SiDelphi.cjs'); +const SiDelta = require('./icons/SiDelta.cjs'); +const SiDeluge = require('./icons/SiDeluge.cjs'); +const SiDeno = require('./icons/SiDeno.cjs'); +const SiDenodeploy = require('./icons/SiDenodeploy.cjs'); +const SiDenon = require('./icons/SiDenon.cjs'); +const SiDependabot = require('./icons/SiDependabot.cjs'); +const SiDependencycheck = require('./icons/SiDependencycheck.cjs'); +const SiDepositphotos = require('./icons/SiDepositphotos.cjs'); +const SiDerspiegel = require('./icons/SiDerspiegel.cjs'); +const SiDeutschebahn = require('./icons/SiDeutschebahn.cjs'); +const SiDeutschebank = require('./icons/SiDeutschebank.cjs'); +const SiDeutschepost = require('./icons/SiDeutschepost.cjs'); +const SiDeutschetelekom = require('./icons/SiDeutschetelekom.cjs'); +const SiDeutschewelle = require('./icons/SiDeutschewelle.cjs'); +const SiDevbox = require('./icons/SiDevbox.cjs'); +const SiDevdotto = require('./icons/SiDevdotto.cjs'); +const SiDevelopmentcontainers = require('./icons/SiDevelopmentcontainers.cjs'); +const SiDevexpress = require('./icons/SiDevexpress.cjs'); +const SiDeviantart = require('./icons/SiDeviantart.cjs'); +const SiDevpost = require('./icons/SiDevpost.cjs'); +const SiDevrant = require('./icons/SiDevrant.cjs'); +const SiDevuan = require('./icons/SiDevuan.cjs'); +const SiDgraph = require('./icons/SiDgraph.cjs'); +const SiDhl = require('./icons/SiDhl.cjs'); +const SiDiagramsdotnet = require('./icons/SiDiagramsdotnet.cjs'); +const SiDialogflow = require('./icons/SiDialogflow.cjs'); +const SiDiaspora = require('./icons/SiDiaspora.cjs'); +const SiDictionarydotcom = require('./icons/SiDictionarydotcom.cjs'); +const SiDigg = require('./icons/SiDigg.cjs'); +const SiDigikeyelectronics = require('./icons/SiDigikeyelectronics.cjs'); +const SiDigitalocean = require('./icons/SiDigitalocean.cjs'); +const SiDinersclub = require('./icons/SiDinersclub.cjs'); +const SiDior = require('./icons/SiDior.cjs'); +const SiDirectus = require('./icons/SiDirectus.cjs'); +const SiDiscogs = require('./icons/SiDiscogs.cjs'); +const SiDiscord = require('./icons/SiDiscord.cjs'); +const SiDiscorddotjs = require('./icons/SiDiscorddotjs.cjs'); +const SiDiscourse = require('./icons/SiDiscourse.cjs'); +const SiDiscover = require('./icons/SiDiscover.cjs'); +const SiDisqus = require('./icons/SiDisqus.cjs'); +const SiDisroot = require('./icons/SiDisroot.cjs'); +const SiDistrobox = require('./icons/SiDistrobox.cjs'); +const SiDistrokid = require('./icons/SiDistrokid.cjs'); +const SiDjango = require('./icons/SiDjango.cjs'); +const SiDji = require('./icons/SiDji.cjs'); +const SiDlib = require('./icons/SiDlib.cjs'); +const SiDlna = require('./icons/SiDlna.cjs'); +const SiDm = require('./icons/SiDm.cjs'); +const SiDmm = require('./icons/SiDmm.cjs'); +const SiDocker = require('./icons/SiDocker.cjs'); +const SiDocsdotrs = require('./icons/SiDocsdotrs.cjs'); +const SiDocsify = require('./icons/SiDocsify.cjs'); +const SiDoctrine = require('./icons/SiDoctrine.cjs'); +const SiDocusaurus = require('./icons/SiDocusaurus.cjs'); +const SiDodopayments = require('./icons/SiDodopayments.cjs'); +const SiDogecoin = require('./icons/SiDogecoin.cjs'); +const SiDoi = require('./icons/SiDoi.cjs'); +const SiDolby = require('./icons/SiDolby.cjs'); +const SiDolibarr = require('./icons/SiDolibarr.cjs'); +const SiDolphin = require('./icons/SiDolphin.cjs'); +const SiDoordash = require('./icons/SiDoordash.cjs'); +const SiDota2 = require('./icons/SiDota2.cjs'); +const SiDotenv = require('./icons/SiDotenv.cjs'); +const SiDotnet = require('./icons/SiDotnet.cjs'); +const SiDouban = require('./icons/SiDouban.cjs'); +const SiDoubanread = require('./icons/SiDoubanread.cjs'); +const SiDovecot = require('./icons/SiDovecot.cjs'); +const SiDovetail = require('./icons/SiDovetail.cjs'); +const SiDowndetector = require('./icons/SiDowndetector.cjs'); +const SiDoxygen = require('./icons/SiDoxygen.cjs'); +const SiDpd = require('./icons/SiDpd.cjs'); +const SiDragonframe = require('./icons/SiDragonframe.cjs'); +const SiDraugiemdotlv = require('./icons/SiDraugiemdotlv.cjs'); +const SiDreamstime = require('./icons/SiDreamstime.cjs'); +const SiDribbble = require('./icons/SiDribbble.cjs'); +const SiDrizzle = require('./icons/SiDrizzle.cjs'); +const SiDrone = require('./icons/SiDrone.cjs'); +const SiDrooble = require('./icons/SiDrooble.cjs'); +const SiDropbox = require('./icons/SiDropbox.cjs'); +const SiDrupal = require('./icons/SiDrupal.cjs'); +const SiDsautomobiles = require('./icons/SiDsautomobiles.cjs'); +const SiDts = require('./icons/SiDts.cjs'); +const SiDtube = require('./icons/SiDtube.cjs'); +const SiDucati = require('./icons/SiDucati.cjs'); +const SiDuckdb = require('./icons/SiDuckdb.cjs'); +const SiDuckduckgo = require('./icons/SiDuckduckgo.cjs'); +const SiDungeonsanddragons = require('./icons/SiDungeonsanddragons.cjs'); +const SiDunked = require('./icons/SiDunked.cjs'); +const SiDunzo = require('./icons/SiDunzo.cjs'); +const SiDuolingo = require('./icons/SiDuolingo.cjs'); +const SiDuplicati = require('./icons/SiDuplicati.cjs'); +const SiDvc = require('./icons/SiDvc.cjs'); +const SiDwavesystems = require('./icons/SiDwavesystems.cjs'); +const SiDwm = require('./icons/SiDwm.cjs'); +const SiDynatrace = require('./icons/SiDynatrace.cjs'); +const SiE = require('./icons/SiE.cjs'); +const SiE3 = require('./icons/SiE3.cjs'); +const SiEa = require('./icons/SiEa.cjs'); +const SiEac = require('./icons/SiEac.cjs'); +const SiEagle = require('./icons/SiEagle.cjs'); +const SiEasyeda = require('./icons/SiEasyeda.cjs'); +const SiEasyjet = require('./icons/SiEasyjet.cjs'); +const SiEbay = require('./icons/SiEbay.cjs'); +const SiEbox = require('./icons/SiEbox.cjs'); +const SiEclipseadoptium = require('./icons/SiEclipseadoptium.cjs'); +const SiEclipseche = require('./icons/SiEclipseche.cjs'); +const SiEclipseide = require('./icons/SiEclipseide.cjs'); +const SiEclipsejetty = require('./icons/SiEclipsejetty.cjs'); +const SiEclipsemosquitto = require('./icons/SiEclipsemosquitto.cjs'); +const SiEclipsevertdotx = require('./icons/SiEclipsevertdotx.cjs'); +const SiEcosia = require('./icons/SiEcosia.cjs'); +const SiEcovacs = require('./icons/SiEcovacs.cjs'); +const SiEdeka = require('./icons/SiEdeka.cjs'); +const SiEdgeimpulse = require('./icons/SiEdgeimpulse.cjs'); +const SiEditorconfig = require('./icons/SiEditorconfig.cjs'); +const SiEdotleclerc = require('./icons/SiEdotleclerc.cjs'); +const SiEducative = require('./icons/SiEducative.cjs'); +const SiEdx = require('./icons/SiEdx.cjs'); +const SiEffect = require('./icons/SiEffect.cjs'); +const SiEgghead = require('./icons/SiEgghead.cjs'); +const SiEgnyte = require('./icons/SiEgnyte.cjs'); +const SiEight = require('./icons/SiEight.cjs'); +const SiEightsleep = require('./icons/SiEightsleep.cjs'); +const SiEjs = require('./icons/SiEjs.cjs'); +const SiElastic = require('./icons/SiElastic.cjs'); +const SiElasticcloud = require('./icons/SiElasticcloud.cjs'); +const SiElasticsearch = require('./icons/SiElasticsearch.cjs'); +const SiElasticstack = require('./icons/SiElasticstack.cjs'); +const SiElavon = require('./icons/SiElavon.cjs'); +const SiElectron = require('./icons/SiElectron.cjs'); +const SiElectronbuilder = require('./icons/SiElectronbuilder.cjs'); +const SiElectronfiddle = require('./icons/SiElectronfiddle.cjs'); +const SiElegoo = require('./icons/SiElegoo.cjs'); +const SiElement = require('./icons/SiElement.cjs'); +const SiElementary = require('./icons/SiElementary.cjs'); +const SiElementor = require('./icons/SiElementor.cjs'); +const SiElevenlabs = require('./icons/SiElevenlabs.cjs'); +const SiEleventy = require('./icons/SiEleventy.cjs'); +const SiElgato = require('./icons/SiElgato.cjs'); +const SiElixir = require('./icons/SiElixir.cjs'); +const SiElk = require('./icons/SiElk.cjs'); +const SiElm = require('./icons/SiElm.cjs'); +const SiElsevier = require('./icons/SiElsevier.cjs'); +const SiEmbarcadero = require('./icons/SiEmbarcadero.cjs'); +const SiEmbark = require('./icons/SiEmbark.cjs'); +const SiEmberdotjs = require('./icons/SiEmberdotjs.cjs'); +const SiEmby = require('./icons/SiEmby.cjs'); +const SiEmirates = require('./icons/SiEmirates.cjs'); +const SiEmlakjet = require('./icons/SiEmlakjet.cjs'); +const SiEndeavouros = require('./icons/SiEndeavouros.cjs'); +const SiEnpass = require('./icons/SiEnpass.cjs'); +const SiEns = require('./icons/SiEns.cjs'); +const SiEnte = require('./icons/SiEnte.cjs'); +const SiEnterprisedb = require('./icons/SiEnterprisedb.cjs'); +const SiEnvato = require('./icons/SiEnvato.cjs'); +const SiEnvoyproxy = require('./icons/SiEnvoyproxy.cjs'); +const SiEpel = require('./icons/SiEpel.cjs'); +const SiEpicgames = require('./icons/SiEpicgames.cjs'); +const SiEpson = require('./icons/SiEpson.cjs'); +const SiEquinixmetal = require('./icons/SiEquinixmetal.cjs'); +const SiEraser = require('./icons/SiEraser.cjs'); +const SiEricsson = require('./icons/SiEricsson.cjs'); +const SiErlang = require('./icons/SiErlang.cjs'); +const SiErpnext = require('./icons/SiErpnext.cjs'); +const SiEsbuild = require('./icons/SiEsbuild.cjs'); +const SiEsea = require('./icons/SiEsea.cjs'); +const SiEslgaming = require('./icons/SiEslgaming.cjs'); +const SiEslint = require('./icons/SiEslint.cjs'); +const SiEsotericsoftware = require('./icons/SiEsotericsoftware.cjs'); +const SiEsphome = require('./icons/SiEsphome.cjs'); +const SiEspressif = require('./icons/SiEspressif.cjs'); +const SiEsri = require('./icons/SiEsri.cjs'); +const SiEtcd = require('./icons/SiEtcd.cjs'); +const SiEthereum = require('./icons/SiEthereum.cjs'); +const SiEthers = require('./icons/SiEthers.cjs'); +const SiEthiopianairlines = require('./icons/SiEthiopianairlines.cjs'); +const SiEtihadairways = require('./icons/SiEtihadairways.cjs'); +const SiEtsy = require('./icons/SiEtsy.cjs'); +const SiEuropeanunion = require('./icons/SiEuropeanunion.cjs'); +const SiEventstore = require('./icons/SiEventstore.cjs'); +const SiEvernote = require('./icons/SiEvernote.cjs'); +const SiEverydotorg = require('./icons/SiEverydotorg.cjs'); +const SiExcalidraw = require('./icons/SiExcalidraw.cjs'); +const SiExercism = require('./icons/SiExercism.cjs'); +const SiExordo = require('./icons/SiExordo.cjs'); +const SiExoscale = require('./icons/SiExoscale.cjs'); +const SiExpedia = require('./icons/SiExpedia.cjs'); +const SiExpensify = require('./icons/SiExpensify.cjs'); +const SiExpertsexchange = require('./icons/SiExpertsexchange.cjs'); +const SiExpo = require('./icons/SiExpo.cjs'); +const SiExpress = require('./icons/SiExpress.cjs'); +const SiExpressdotcom = require('./icons/SiExpressdotcom.cjs'); +const SiExpressvpn = require('./icons/SiExpressvpn.cjs'); +const SiEyeem = require('./icons/SiEyeem.cjs'); +const SiF1 = require('./icons/SiF1.cjs'); +const SiF5 = require('./icons/SiF5.cjs'); +const SiFacebook = require('./icons/SiFacebook.cjs'); +const SiFacebookgaming = require('./icons/SiFacebookgaming.cjs'); +const SiFacebooklive = require('./icons/SiFacebooklive.cjs'); +const SiFaceit = require('./icons/SiFaceit.cjs'); +const SiFacepunch = require('./icons/SiFacepunch.cjs'); +const SiFairphone = require('./icons/SiFairphone.cjs'); +const SiFalco = require('./icons/SiFalco.cjs'); +const SiFalcon = require('./icons/SiFalcon.cjs'); +const SiFampay = require('./icons/SiFampay.cjs'); +const SiFandango = require('./icons/SiFandango.cjs'); +const SiFandom = require('./icons/SiFandom.cjs'); +const SiFanfou = require('./icons/SiFanfou.cjs'); +const SiFantom = require('./icons/SiFantom.cjs'); +const SiFarcaster = require('./icons/SiFarcaster.cjs'); +const SiFareharbor = require('./icons/SiFareharbor.cjs'); +const SiFarfetch = require('./icons/SiFarfetch.cjs'); +const SiFastapi = require('./icons/SiFastapi.cjs'); +const SiFastify = require('./icons/SiFastify.cjs'); +const SiFastlane = require('./icons/SiFastlane.cjs'); +const SiFastly = require('./icons/SiFastly.cjs'); +const SiFathom = require('./icons/SiFathom.cjs'); +const SiFauna = require('./icons/SiFauna.cjs'); +const SiFavro = require('./icons/SiFavro.cjs'); +const SiFcc = require('./icons/SiFcc.cjs'); +const SiFdroid = require('./icons/SiFdroid.cjs'); +const SiFedex = require('./icons/SiFedex.cjs'); +const SiFedora = require('./icons/SiFedora.cjs'); +const SiFeedly = require('./icons/SiFeedly.cjs'); +const SiFerrari = require('./icons/SiFerrari.cjs'); +const SiFerrarinv = require('./icons/SiFerrarinv.cjs'); +const SiFerretdb = require('./icons/SiFerretdb.cjs'); +const SiFfmpeg = require('./icons/SiFfmpeg.cjs'); +const SiFi = require('./icons/SiFi.cjs'); +const SiFiat = require('./icons/SiFiat.cjs'); +const SiFidoalliance = require('./icons/SiFidoalliance.cjs'); +const SiFifa = require('./icons/SiFifa.cjs'); +const SiFig = require('./icons/SiFig.cjs'); +const SiFigma = require('./icons/SiFigma.cjs'); +const SiFigshare = require('./icons/SiFigshare.cjs'); +const SiFila = require('./icons/SiFila.cjs'); +const SiFilament = require('./icons/SiFilament.cjs'); +const SiFiledotio = require('./icons/SiFiledotio.cjs'); +const SiFilen = require('./icons/SiFilen.cjs'); +const SiFiles = require('./icons/SiFiles.cjs'); +const SiFilezilla = require('./icons/SiFilezilla.cjs'); +const SiFillout = require('./icons/SiFillout.cjs'); +const SiFineco = require('./icons/SiFineco.cjs'); +const SiFing = require('./icons/SiFing.cjs'); +const SiFirebase = require('./icons/SiFirebase.cjs'); +const SiFirefish = require('./icons/SiFirefish.cjs'); +const SiFireflyiii = require('./icons/SiFireflyiii.cjs'); +const SiFirefox = require('./icons/SiFirefox.cjs'); +const SiFirefoxbrowser = require('./icons/SiFirefoxbrowser.cjs'); +const SiFireship = require('./icons/SiFireship.cjs'); +const SiFirewalla = require('./icons/SiFirewalla.cjs'); +const SiFirst = require('./icons/SiFirst.cjs'); +const SiFishaudio = require('./icons/SiFishaudio.cjs'); +const SiFishshell = require('./icons/SiFishshell.cjs'); +const SiFitbit = require('./icons/SiFitbit.cjs'); +const SiFivem = require('./icons/SiFivem.cjs'); +const SiFiverr = require('./icons/SiFiverr.cjs'); +const SiFizz = require('./icons/SiFizz.cjs'); +const SiFlashforge = require('./icons/SiFlashforge.cjs'); +const SiFlask = require('./icons/SiFlask.cjs'); +const SiFlat = require('./icons/SiFlat.cjs'); +const SiFlathub = require('./icons/SiFlathub.cjs'); +const SiFlatpak = require('./icons/SiFlatpak.cjs'); +const SiFlickr = require('./icons/SiFlickr.cjs'); +const SiFlightaware = require('./icons/SiFlightaware.cjs'); +const SiFlipboard = require('./icons/SiFlipboard.cjs'); +const SiFloatplane = require('./icons/SiFloatplane.cjs'); +const SiFlood = require('./icons/SiFlood.cjs'); +const SiFloorp = require('./icons/SiFloorp.cjs'); +const SiFlower = require('./icons/SiFlower.cjs'); +const SiFluentbit = require('./icons/SiFluentbit.cjs'); +const SiFluentd = require('./icons/SiFluentd.cjs'); +const SiFluke = require('./icons/SiFluke.cjs'); +const SiFlutter = require('./icons/SiFlutter.cjs'); +const SiFlux = require('./icons/SiFlux.cjs'); +const SiFlydotio = require('./icons/SiFlydotio.cjs'); +const SiFlyway = require('./icons/SiFlyway.cjs'); +const SiFmod = require('./icons/SiFmod.cjs'); +const SiFnac = require('./icons/SiFnac.cjs'); +const SiFolium = require('./icons/SiFolium.cjs'); +const SiFolo = require('./icons/SiFolo.cjs'); +const SiFonoma = require('./icons/SiFonoma.cjs'); +const SiFontawesome = require('./icons/SiFontawesome.cjs'); +const SiFontbase = require('./icons/SiFontbase.cjs'); +const SiFontforge = require('./icons/SiFontforge.cjs'); +const SiFoobar2000 = require('./icons/SiFoobar2000.cjs'); +const SiFoodpanda = require('./icons/SiFoodpanda.cjs'); +const SiFord = require('./icons/SiFord.cjs'); +const SiForgejo = require('./icons/SiForgejo.cjs'); +const SiFormbricks = require('./icons/SiFormbricks.cjs'); +const SiFormik = require('./icons/SiFormik.cjs'); +const SiFormspree = require('./icons/SiFormspree.cjs'); +const SiFormstack = require('./icons/SiFormstack.cjs'); +const SiFortinet = require('./icons/SiFortinet.cjs'); +const SiFortnite = require('./icons/SiFortnite.cjs'); +const SiFortran = require('./icons/SiFortran.cjs'); +const SiFossa = require('./icons/SiFossa.cjs'); +const SiFossilscm = require('./icons/SiFossilscm.cjs'); +const SiFoundryvirtualtabletop = require('./icons/SiFoundryvirtualtabletop.cjs'); +const SiFoursquare = require('./icons/SiFoursquare.cjs'); +const SiFox = require('./icons/SiFox.cjs'); +const SiFoxtel = require('./icons/SiFoxtel.cjs'); +const SiFozzy = require('./icons/SiFozzy.cjs'); +const SiFramer = require('./icons/SiFramer.cjs'); +const SiFramework = require('./icons/SiFramework.cjs'); +const SiFramework7 = require('./icons/SiFramework7.cjs'); +const SiFranprix = require('./icons/SiFranprix.cjs'); +const SiFrappe = require('./icons/SiFrappe.cjs'); +const SiFraunhofergesellschaft = require('./icons/SiFraunhofergesellschaft.cjs'); +const SiFreebsd = require('./icons/SiFreebsd.cjs'); +const SiFreecad = require('./icons/SiFreecad.cjs'); +const SiFreecodecamp = require('./icons/SiFreecodecamp.cjs'); +const SiFreedesktopdotorg = require('./icons/SiFreedesktopdotorg.cjs'); +const SiFreelancer = require('./icons/SiFreelancer.cjs'); +const SiFreelancermap = require('./icons/SiFreelancermap.cjs'); +const SiFreenas = require('./icons/SiFreenas.cjs'); +const SiFreenet = require('./icons/SiFreenet.cjs'); +const SiFreepik = require('./icons/SiFreepik.cjs'); +const SiFreetube = require('./icons/SiFreetube.cjs'); +const SiFresh = require('./icons/SiFresh.cjs'); +const SiFreshrss = require('./icons/SiFreshrss.cjs'); +const SiFrigate = require('./icons/SiFrigate.cjs'); +const SiFritz = require('./icons/SiFritz.cjs'); +const SiFrontendmentor = require('./icons/SiFrontendmentor.cjs'); +const SiFrontify = require('./icons/SiFrontify.cjs'); +const SiFsharp = require('./icons/SiFsharp.cjs'); +const SiFubo = require('./icons/SiFubo.cjs'); +const SiFueler = require('./icons/SiFueler.cjs'); +const SiFugacloud = require('./icons/SiFugacloud.cjs'); +const SiFujifilm = require('./icons/SiFujifilm.cjs'); +const SiFujitsu = require('./icons/SiFujitsu.cjs'); +const SiFuraffinity = require('./icons/SiFuraffinity.cjs'); +const SiFurrynetwork = require('./icons/SiFurrynetwork.cjs'); +const SiFusionauth = require('./icons/SiFusionauth.cjs'); +const SiFuturelearn = require('./icons/SiFuturelearn.cjs'); +const SiFyle = require('./icons/SiFyle.cjs'); +const SiG2 = require('./icons/SiG2.cjs'); +const SiG2a = require('./icons/SiG2a.cjs'); +const SiG2g = require('./icons/SiG2g.cjs'); +const SiGalaxus = require('./icons/SiGalaxus.cjs'); +const SiGamebanana = require('./icons/SiGamebanana.cjs'); +const SiGamedeveloper = require('./icons/SiGamedeveloper.cjs'); +const SiGamejolt = require('./icons/SiGamejolt.cjs'); +const SiGameloft = require('./icons/SiGameloft.cjs'); +const SiGamemaker = require('./icons/SiGamemaker.cjs'); +const SiGamescience = require('./icons/SiGamescience.cjs'); +const SiGandi = require('./icons/SiGandi.cjs'); +const SiGarmin = require('./icons/SiGarmin.cjs'); +const SiGarudalinux = require('./icons/SiGarudalinux.cjs'); +const SiGatling = require('./icons/SiGatling.cjs'); +const SiGatsby = require('./icons/SiGatsby.cjs'); +const SiGcore = require('./icons/SiGcore.cjs'); +const SiGdal = require('./icons/SiGdal.cjs'); +const SiGeeksforgeeks = require('./icons/SiGeeksforgeeks.cjs'); +const SiGeneralelectric = require('./icons/SiGeneralelectric.cjs'); +const SiGeneralmotors = require('./icons/SiGeneralmotors.cjs'); +const SiGenius = require('./icons/SiGenius.cjs'); +const SiGentoo = require('./icons/SiGentoo.cjs'); +const SiGeocaching = require('./icons/SiGeocaching.cjs'); +const SiGeode = require('./icons/SiGeode.cjs'); +const SiGeopandas = require('./icons/SiGeopandas.cjs'); +const SiGerrit = require('./icons/SiGerrit.cjs'); +const SiGetx = require('./icons/SiGetx.cjs'); +const SiGhost = require('./icons/SiGhost.cjs'); +const SiGhostery = require('./icons/SiGhostery.cjs'); +const SiGhostty = require('./icons/SiGhostty.cjs'); +const SiGimp = require('./icons/SiGimp.cjs'); +const SiGin = require('./icons/SiGin.cjs'); +const SiGiphy = require('./icons/SiGiphy.cjs'); +const SiGit = require('./icons/SiGit.cjs'); +const SiGitbook = require('./icons/SiGitbook.cjs'); +const SiGitcode = require('./icons/SiGitcode.cjs'); +const SiGitconnected = require('./icons/SiGitconnected.cjs'); +const SiGitea = require('./icons/SiGitea.cjs'); +const SiGitee = require('./icons/SiGitee.cjs'); +const SiGitextensions = require('./icons/SiGitextensions.cjs'); +const SiGitforwindows = require('./icons/SiGitforwindows.cjs'); +const SiGithub = require('./icons/SiGithub.cjs'); +const SiGithubactions = require('./icons/SiGithubactions.cjs'); +const SiGithubcopilot = require('./icons/SiGithubcopilot.cjs'); +const SiGithubpages = require('./icons/SiGithubpages.cjs'); +const SiGithubsponsors = require('./icons/SiGithubsponsors.cjs'); +const SiGitignoredotio = require('./icons/SiGitignoredotio.cjs'); +const SiGitkraken = require('./icons/SiGitkraken.cjs'); +const SiGitlab = require('./icons/SiGitlab.cjs'); +const SiGitlfs = require('./icons/SiGitlfs.cjs'); +const SiGitpod = require('./icons/SiGitpod.cjs'); +const SiGitter = require('./icons/SiGitter.cjs'); +const SiGlance = require('./icons/SiGlance.cjs'); +const SiGlassdoor = require('./icons/SiGlassdoor.cjs'); +const SiGldotinet = require('./icons/SiGldotinet.cjs'); +const SiGleam = require('./icons/SiGleam.cjs'); +const SiGlide = require('./icons/SiGlide.cjs'); +const SiGlitch = require('./icons/SiGlitch.cjs'); +const SiGlobus = require('./icons/SiGlobus.cjs'); +const SiGlovo = require('./icons/SiGlovo.cjs'); +const SiGltf = require('./icons/SiGltf.cjs'); +const SiGmail = require('./icons/SiGmail.cjs'); +const SiGmx = require('./icons/SiGmx.cjs'); +const SiGnome = require('./icons/SiGnome.cjs'); +const SiGnometerminal = require('./icons/SiGnometerminal.cjs'); +const SiGnu = require('./icons/SiGnu.cjs'); +const SiGnubash = require('./icons/SiGnubash.cjs'); +const SiGnuemacs = require('./icons/SiGnuemacs.cjs'); +const SiGnuicecat = require('./icons/SiGnuicecat.cjs'); +const SiGnuprivacyguard = require('./icons/SiGnuprivacyguard.cjs'); +const SiGnusocial = require('./icons/SiGnusocial.cjs'); +const SiGo = require('./icons/SiGo.cjs'); +const SiGocd = require('./icons/SiGocd.cjs'); +const SiGodaddy = require('./icons/SiGodaddy.cjs'); +const SiGodotengine = require('./icons/SiGodotengine.cjs'); +const SiGofundme = require('./icons/SiGofundme.cjs'); +const SiGogdotcom = require('./icons/SiGogdotcom.cjs'); +const SiGojek = require('./icons/SiGojek.cjs'); +const SiGoland = require('./icons/SiGoland.cjs'); +const SiGoldmansachs = require('./icons/SiGoldmansachs.cjs'); +const SiGoodreads = require('./icons/SiGoodreads.cjs'); +const SiGoogle = require('./icons/SiGoogle.cjs'); +const SiGoogleadmob = require('./icons/SiGoogleadmob.cjs'); +const SiGoogleads = require('./icons/SiGoogleads.cjs'); +const SiGoogleadsense = require('./icons/SiGoogleadsense.cjs'); +const SiGoogleanalytics = require('./icons/SiGoogleanalytics.cjs'); +const SiGoogleappsscript = require('./icons/SiGoogleappsscript.cjs'); +const SiGoogleassistant = require('./icons/SiGoogleassistant.cjs'); +const SiGoogleauthenticator = require('./icons/SiGoogleauthenticator.cjs'); +const SiGooglebigquery = require('./icons/SiGooglebigquery.cjs'); +const SiGooglebigtable = require('./icons/SiGooglebigtable.cjs'); +const SiGooglecalendar = require('./icons/SiGooglecalendar.cjs'); +const SiGooglecampaignmanager360 = require('./icons/SiGooglecampaignmanager360.cjs'); +const SiGooglecardboard = require('./icons/SiGooglecardboard.cjs'); +const SiGooglecast = require('./icons/SiGooglecast.cjs'); +const SiGooglechat = require('./icons/SiGooglechat.cjs'); +const SiGooglechrome = require('./icons/SiGooglechrome.cjs'); +const SiGooglechronicle = require('./icons/SiGooglechronicle.cjs'); +const SiGoogleclassroom = require('./icons/SiGoogleclassroom.cjs'); +const SiGooglecloud = require('./icons/SiGooglecloud.cjs'); +const SiGooglecloudcomposer = require('./icons/SiGooglecloudcomposer.cjs'); +const SiGooglecloudspanner = require('./icons/SiGooglecloudspanner.cjs'); +const SiGooglecloudstorage = require('./icons/SiGooglecloudstorage.cjs'); +const SiGooglecolab = require('./icons/SiGooglecolab.cjs'); +const SiGooglecontaineroptimizedos = require('./icons/SiGooglecontaineroptimizedos.cjs'); +const SiGoogledataflow = require('./icons/SiGoogledataflow.cjs'); +const SiGoogledataproc = require('./icons/SiGoogledataproc.cjs'); +const SiGoogledisplayandvideo360 = require('./icons/SiGoogledisplayandvideo360.cjs'); +const SiGoogledocs = require('./icons/SiGoogledocs.cjs'); +const SiGoogledrive = require('./icons/SiGoogledrive.cjs'); +const SiGoogleearth = require('./icons/SiGoogleearth.cjs'); +const SiGoogleearthengine = require('./icons/SiGoogleearthengine.cjs'); +const SiGooglefonts = require('./icons/SiGooglefonts.cjs'); +const SiGoogleforms = require('./icons/SiGoogleforms.cjs'); +const SiGooglegemini = require('./icons/SiGooglegemini.cjs'); +const SiGooglehome = require('./icons/SiGooglehome.cjs'); +const SiGooglejules = require('./icons/SiGooglejules.cjs'); +const SiGooglekeep = require('./icons/SiGooglekeep.cjs'); +const SiGooglelens = require('./icons/SiGooglelens.cjs'); +const SiGooglemaps = require('./icons/SiGooglemaps.cjs'); +const SiGooglemarketingplatform = require('./icons/SiGooglemarketingplatform.cjs'); +const SiGooglemeet = require('./icons/SiGooglemeet.cjs'); +const SiGooglemessages = require('./icons/SiGooglemessages.cjs'); +const SiGooglenearby = require('./icons/SiGooglenearby.cjs'); +const SiGooglenews = require('./icons/SiGooglenews.cjs'); +const SiGooglepay = require('./icons/SiGooglepay.cjs'); +const SiGooglephotos = require('./icons/SiGooglephotos.cjs'); +const SiGoogleplay = require('./icons/SiGoogleplay.cjs'); +const SiGooglepubsub = require('./icons/SiGooglepubsub.cjs'); +const SiGooglescholar = require('./icons/SiGooglescholar.cjs'); +const SiGooglesearchconsole = require('./icons/SiGooglesearchconsole.cjs'); +const SiGooglesheets = require('./icons/SiGooglesheets.cjs'); +const SiGoogleslides = require('./icons/SiGoogleslides.cjs'); +const SiGooglestreetview = require('./icons/SiGooglestreetview.cjs'); +const SiGooglesummerofcode = require('./icons/SiGooglesummerofcode.cjs'); +const SiGoogletagmanager = require('./icons/SiGoogletagmanager.cjs'); +const SiGoogletasks = require('./icons/SiGoogletasks.cjs'); +const SiGoogletranslate = require('./icons/SiGoogletranslate.cjs'); +const SiGoogletv = require('./icons/SiGoogletv.cjs'); +const SiGotomeeting = require('./icons/SiGotomeeting.cjs'); +const SiGplv3 = require('./icons/SiGplv3.cjs'); +const SiGrab = require('./icons/SiGrab.cjs'); +const SiGradio = require('./icons/SiGradio.cjs'); +const SiGradle = require('./icons/SiGradle.cjs'); +const SiGradleplaypublisher = require('./icons/SiGradleplaypublisher.cjs'); +const SiGrafana = require('./icons/SiGrafana.cjs'); +const SiGrammarly = require('./icons/SiGrammarly.cjs'); +const SiGrandfrais = require('./icons/SiGrandfrais.cjs'); +const SiGrapheneos = require('./icons/SiGrapheneos.cjs'); +const SiGraphite = require('./icons/SiGraphite.cjs'); +const SiGraphiteEditor = require('./icons/SiGraphiteEditor.cjs'); +const SiGraphql = require('./icons/SiGraphql.cjs'); +const SiGrav = require('./icons/SiGrav.cjs'); +const SiGravatar = require('./icons/SiGravatar.cjs'); +const SiGraylog = require('./icons/SiGraylog.cjs'); +const SiGreasyfork = require('./icons/SiGreasyfork.cjs'); +const SiGreatlearning = require('./icons/SiGreatlearning.cjs'); +const SiGreenhouse = require('./icons/SiGreenhouse.cjs'); +const SiGreensock = require('./icons/SiGreensock.cjs'); +const SiGreptimedb = require('./icons/SiGreptimedb.cjs'); +const SiGriddotai = require('./icons/SiGriddotai.cjs'); +const SiGridsome = require('./icons/SiGridsome.cjs'); +const SiGrocy = require('./icons/SiGrocy.cjs'); +const SiGroupme = require('./icons/SiGroupme.cjs'); +const SiGroupon = require('./icons/SiGroupon.cjs'); +const SiGrunt = require('./icons/SiGrunt.cjs'); +const SiGsap = require('./icons/SiGsap.cjs'); +const SiGsk = require('./icons/SiGsk.cjs'); +const SiGsma = require('./icons/SiGsma.cjs'); +const SiGsmarenadotcom = require('./icons/SiGsmarenadotcom.cjs'); +const SiGstreamer = require('./icons/SiGstreamer.cjs'); +const SiGtk = require('./icons/SiGtk.cjs'); +const SiGuangzhoumetro = require('./icons/SiGuangzhoumetro.cjs'); +const SiGuilded = require('./icons/SiGuilded.cjs'); +const SiGuitarpro = require('./icons/SiGuitarpro.cjs'); +const SiGulp = require('./icons/SiGulp.cjs'); +const SiGumroad = require('./icons/SiGumroad.cjs'); +const SiGumtree = require('./icons/SiGumtree.cjs'); +const SiGunicorn = require('./icons/SiGunicorn.cjs'); +const SiGurobi = require('./icons/SiGurobi.cjs'); +const SiGusto = require('./icons/SiGusto.cjs'); +const SiGutenberg = require('./icons/SiGutenberg.cjs'); +const SiH2database = require('./icons/SiH2database.cjs'); +const SiH3 = require('./icons/SiH3.cjs'); +const SiHabr = require('./icons/SiHabr.cjs'); +const SiHackaday = require('./icons/SiHackaday.cjs'); +const SiHackclub = require('./icons/SiHackclub.cjs'); +const SiHackerearth = require('./icons/SiHackerearth.cjs'); +const SiHackernoon = require('./icons/SiHackernoon.cjs'); +const SiHackerone = require('./icons/SiHackerone.cjs'); +const SiHackerrank = require('./icons/SiHackerrank.cjs'); +const SiHackmd = require('./icons/SiHackmd.cjs'); +const SiHackster = require('./icons/SiHackster.cjs'); +const SiHackthebox = require('./icons/SiHackthebox.cjs'); +const SiHal = require('./icons/SiHal.cjs'); +const SiHandlebarsdotjs = require('./icons/SiHandlebarsdotjs.cjs'); +const SiHandm = require('./icons/SiHandm.cjs'); +const SiHandshake = require('./icons/SiHandshake.cjs'); +const SiHandshakeProtocol = require('./icons/SiHandshakeProtocol.cjs'); +const SiHappycow = require('./icons/SiHappycow.cjs'); +const SiHarbor = require('./icons/SiHarbor.cjs'); +const SiHarmonyos = require('./icons/SiHarmonyos.cjs'); +const SiHashcat = require('./icons/SiHashcat.cjs'); +const SiHashicorp = require('./icons/SiHashicorp.cjs'); +const SiHashnode = require('./icons/SiHashnode.cjs'); +const SiHaskell = require('./icons/SiHaskell.cjs'); +const SiHasura = require('./icons/SiHasura.cjs'); +const SiHatenabookmark = require('./icons/SiHatenabookmark.cjs'); +const SiHaveibeenpwned = require('./icons/SiHaveibeenpwned.cjs'); +const SiHavells = require('./icons/SiHavells.cjs'); +const SiHaxe = require('./icons/SiHaxe.cjs'); +const SiHaystack = require('./icons/SiHaystack.cjs'); +const SiHbo = require('./icons/SiHbo.cjs'); +const SiHbomax = require('./icons/SiHbomax.cjs'); +const SiHcl = require('./icons/SiHcl.cjs'); +const SiHdfcbank = require('./icons/SiHdfcbank.cjs'); +const SiHeadlessui = require('./icons/SiHeadlessui.cjs'); +const SiHeadphonezone = require('./icons/SiHeadphonezone.cjs'); +const SiHeadspace = require('./icons/SiHeadspace.cjs'); +const SiHearth = require('./icons/SiHearth.cjs'); +const SiHearthisdotat = require('./icons/SiHearthisdotat.cjs'); +const SiHedera = require('./icons/SiHedera.cjs'); +const SiHedgedoc = require('./icons/SiHedgedoc.cjs'); +const SiHelium = require('./icons/SiHelium.cjs'); +const SiHelix = require('./icons/SiHelix.cjs'); +const SiHellofresh = require('./icons/SiHellofresh.cjs'); +const SiHellyhansen = require('./icons/SiHellyhansen.cjs'); +const SiHelm = require('./icons/SiHelm.cjs'); +const SiHelpdesk = require('./icons/SiHelpdesk.cjs'); +const SiHelpscout = require('./icons/SiHelpscout.cjs'); +const SiHepsiemlak = require('./icons/SiHepsiemlak.cjs'); +const SiHere = require('./icons/SiHere.cjs'); +const SiHermes = require('./icons/SiHermes.cjs'); +const SiHeroicgameslauncher = require('./icons/SiHeroicgameslauncher.cjs'); +const SiHeroui = require('./icons/SiHeroui.cjs'); +const SiHetzner = require('./icons/SiHetzner.cjs'); +const SiHevy = require('./icons/SiHevy.cjs'); +const SiHexlet = require('./icons/SiHexlet.cjs'); +const SiHexo = require('./icons/SiHexo.cjs'); +const SiHey = require('./icons/SiHey.cjs'); +const SiHibernate = require('./icons/SiHibernate.cjs'); +const SiHibob = require('./icons/SiHibob.cjs'); +const SiHilton = require('./icons/SiHilton.cjs'); +const SiHiltonhotelsandresorts = require('./icons/SiHiltonhotelsandresorts.cjs'); +const SiHitachi = require('./icons/SiHitachi.cjs'); +const SiHive = require('./icons/SiHive.cjs'); +const SiHiveBlockchain = require('./icons/SiHiveBlockchain.cjs'); +const SiHivemq = require('./icons/SiHivemq.cjs'); +const SiHomarr = require('./icons/SiHomarr.cjs'); +const SiHomeadvisor = require('./icons/SiHomeadvisor.cjs'); +const SiHomeassistant = require('./icons/SiHomeassistant.cjs'); +const SiHomeassistantcommunitystore = require('./icons/SiHomeassistantcommunitystore.cjs'); +const SiHomebrew = require('./icons/SiHomebrew.cjs'); +const SiHomebridge = require('./icons/SiHomebridge.cjs'); +const SiHomepage = require('./icons/SiHomepage.cjs'); +const SiHomify = require('./icons/SiHomify.cjs'); +const SiHonda = require('./icons/SiHonda.cjs'); +const SiHoney = require('./icons/SiHoney.cjs'); +const SiHoneybadger = require('./icons/SiHoneybadger.cjs'); +const SiHoneygain = require('./icons/SiHoneygain.cjs'); +const SiHono = require('./icons/SiHono.cjs'); +const SiHonor = require('./icons/SiHonor.cjs'); +const SiHootsuite = require('./icons/SiHootsuite.cjs'); +const SiHoppscotch = require('./icons/SiHoppscotch.cjs'); +const SiHostinger = require('./icons/SiHostinger.cjs'); +const SiHotelsdotcom = require('./icons/SiHotelsdotcom.cjs'); +const SiHotjar = require('./icons/SiHotjar.cjs'); +const SiHotwire = require('./icons/SiHotwire.cjs'); +const SiHoudini = require('./icons/SiHoudini.cjs'); +const SiHouzz = require('./icons/SiHouzz.cjs'); +const SiHp = require('./icons/SiHp.cjs'); +const SiHsbc = require('./icons/SiHsbc.cjs'); +const SiHtc = require('./icons/SiHtc.cjs'); +const SiHtcvive = require('./icons/SiHtcvive.cjs'); +const SiHtml5 = require('./icons/SiHtml5.cjs'); +const SiHtmlacademy = require('./icons/SiHtmlacademy.cjs'); +const SiHtmx = require('./icons/SiHtmx.cjs'); +const SiHtop = require('./icons/SiHtop.cjs'); +const SiHttpie = require('./icons/SiHttpie.cjs'); +const SiHuawei = require('./icons/SiHuawei.cjs'); +const SiHubspot = require('./icons/SiHubspot.cjs'); +const SiHuggingface = require('./icons/SiHuggingface.cjs'); +const SiHugo = require('./icons/SiHugo.cjs'); +const SiHumblebundle = require('./icons/SiHumblebundle.cjs'); +const SiHumhub = require('./icons/SiHumhub.cjs'); +const SiHungryjacks = require('./icons/SiHungryjacks.cjs'); +const SiHusqvarna = require('./icons/SiHusqvarna.cjs'); +const SiHyper = require('./icons/SiHyper.cjs'); +const SiHyperskill = require('./icons/SiHyperskill.cjs'); +const SiHyperx = require('./icons/SiHyperx.cjs'); +const SiHypothesis = require('./icons/SiHypothesis.cjs'); +const SiHyprland = require('./icons/SiHyprland.cjs'); +const SiHyundai = require('./icons/SiHyundai.cjs'); +const SiI18next = require('./icons/SiI18next.cjs'); +const SiI3 = require('./icons/SiI3.cjs'); +const SiIata = require('./icons/SiIata.cjs'); +const SiIbeacon = require('./icons/SiIbeacon.cjs'); +const SiIberia = require('./icons/SiIberia.cjs'); +const SiIced = require('./icons/SiIced.cjs'); +const SiIceland = require('./icons/SiIceland.cjs'); +const SiIcicibank = require('./icons/SiIcicibank.cjs'); +const SiIcinga = require('./icons/SiIcinga.cjs'); +const SiIcloud = require('./icons/SiIcloud.cjs'); +const SiIcomoon = require('./icons/SiIcomoon.cjs'); +const SiIcon = require('./icons/SiIcon.cjs'); +const SiIconfinder = require('./icons/SiIconfinder.cjs'); +const SiIconify = require('./icons/SiIconify.cjs'); +const SiIconjar = require('./icons/SiIconjar.cjs'); +const SiIcons8 = require('./icons/SiIcons8.cjs'); +const SiIcq = require('./icons/SiIcq.cjs'); +const SiIeee = require('./icons/SiIeee.cjs'); +const SiIfixit = require('./icons/SiIfixit.cjs'); +const SiIfood = require('./icons/SiIfood.cjs'); +const SiIfttt = require('./icons/SiIfttt.cjs'); +const SiIgdb = require('./icons/SiIgdb.cjs'); +const SiIgn = require('./icons/SiIgn.cjs'); +const SiIheartradio = require('./icons/SiIheartradio.cjs'); +const SiIkea = require('./icons/SiIkea.cjs'); +const SiIledefrancemobilites = require('./icons/SiIledefrancemobilites.cjs'); +const SiIlovepdf = require('./icons/SiIlovepdf.cjs'); +const SiImagedotsc = require('./icons/SiImagedotsc.cjs'); +const SiImagej = require('./icons/SiImagej.cjs'); +const SiImagetoolbox = require('./icons/SiImagetoolbox.cjs'); +const SiImdb = require('./icons/SiImdb.cjs'); +const SiImessage = require('./icons/SiImessage.cjs'); +const SiImgur = require('./icons/SiImgur.cjs'); +const SiImmer = require('./icons/SiImmer.cjs'); +const SiImmersivetranslate = require('./icons/SiImmersivetranslate.cjs'); +const SiImmich = require('./icons/SiImmich.cjs'); +const SiImou = require('./icons/SiImou.cjs'); +const SiImprovmx = require('./icons/SiImprovmx.cjs'); +const SiIndeed = require('./icons/SiIndeed.cjs'); +const SiIndiansuperleague = require('./icons/SiIndiansuperleague.cjs'); +const SiIndiehackers = require('./icons/SiIndiehackers.cjs'); +const SiIndigo = require('./icons/SiIndigo.cjs'); +const SiInductiveautomation = require('./icons/SiInductiveautomation.cjs'); +const SiInertia = require('./icons/SiInertia.cjs'); +const SiInfiniti = require('./icons/SiInfiniti.cjs'); +const SiInfinityfree = require('./icons/SiInfinityfree.cjs'); +const SiInfluxdb = require('./icons/SiInfluxdb.cjs'); +const SiInfomaniak = require('./icons/SiInfomaniak.cjs'); +const SiInfoq = require('./icons/SiInfoq.cjs'); +const SiInfosys = require('./icons/SiInfosys.cjs'); +const SiInfracost = require('./icons/SiInfracost.cjs'); +const SiInfuse = require('./icons/SiInfuse.cjs'); +const SiIngress = require('./icons/SiIngress.cjs'); +const SiInkdrop = require('./icons/SiInkdrop.cjs'); +const SiInkscape = require('./icons/SiInkscape.cjs'); +const SiInoreader = require('./icons/SiInoreader.cjs'); +const SiInquirer = require('./icons/SiInquirer.cjs'); +const SiInsomnia = require('./icons/SiInsomnia.cjs'); +const SiInspire = require('./icons/SiInspire.cjs'); +const SiInsta360 = require('./icons/SiInsta360.cjs'); +const SiInstacart = require('./icons/SiInstacart.cjs'); +const SiInstagram = require('./icons/SiInstagram.cjs'); +const SiInstapaper = require('./icons/SiInstapaper.cjs'); +const SiInstatus = require('./icons/SiInstatus.cjs'); +const SiInstructables = require('./icons/SiInstructables.cjs'); +const SiInstructure = require('./icons/SiInstructure.cjs'); +const SiIntel = require('./icons/SiIntel.cjs'); +const SiIntellijidea = require('./icons/SiIntellijidea.cjs'); +const SiInteractiondesignfoundation = require('./icons/SiInteractiondesignfoundation.cjs'); +const SiInteractjs = require('./icons/SiInteractjs.cjs'); +const SiInterbase = require('./icons/SiInterbase.cjs'); +const SiIntercom = require('./icons/SiIntercom.cjs'); +const SiIntermarche = require('./icons/SiIntermarche.cjs'); +const SiInternetarchive = require('./icons/SiInternetarchive.cjs'); +const SiInternetcomputer = require('./icons/SiInternetcomputer.cjs'); +const SiIntigriti = require('./icons/SiIntigriti.cjs'); +const SiIntuit = require('./icons/SiIntuit.cjs'); +const SiInvidious = require('./icons/SiInvidious.cjs'); +const SiInvoiceninja = require('./icons/SiInvoiceninja.cjs'); +const SiIobroker = require('./icons/SiIobroker.cjs'); +const SiIonic = require('./icons/SiIonic.cjs'); +const SiIonos = require('./icons/SiIonos.cjs'); +const SiIos = require('./icons/SiIos.cjs'); +const SiIota = require('./icons/SiIota.cjs'); +const SiIpfs = require('./icons/SiIpfs.cjs'); +const SiIris = require('./icons/SiIris.cjs'); +const SiIrobot = require('./icons/SiIrobot.cjs'); +const SiIsc2 = require('./icons/SiIsc2.cjs'); +const SiIsro = require('./icons/SiIsro.cjs'); +const SiIssuu = require('./icons/SiIssuu.cjs'); +const SiIstio = require('./icons/SiIstio.cjs'); +const SiItchdotio = require('./icons/SiItchdotio.cjs'); +const SiIterm2 = require('./icons/SiIterm2.cjs'); +const SiItunes = require('./icons/SiItunes.cjs'); +const SiItvx = require('./icons/SiItvx.cjs'); +const SiIveco = require('./icons/SiIveco.cjs'); +const SiJabber = require('./icons/SiJabber.cjs'); +const SiJaeger = require('./icons/SiJaeger.cjs'); +const SiJameson = require('./icons/SiJameson.cjs'); +const SiJamstack = require('./icons/SiJamstack.cjs'); +const SiJapanairlines = require('./icons/SiJapanairlines.cjs'); +const SiJasmine = require('./icons/SiJasmine.cjs'); +const SiJavascript = require('./icons/SiJavascript.cjs'); +const SiJbl = require('./icons/SiJbl.cjs'); +const SiJcb = require('./icons/SiJcb.cjs'); +const SiJdoodle = require('./icons/SiJdoodle.cjs'); +const SiJeep = require('./icons/SiJeep.cjs'); +const SiJekyll = require('./icons/SiJekyll.cjs'); +const SiJellyfin = require('./icons/SiJellyfin.cjs'); +const SiJenkins = require('./icons/SiJenkins.cjs'); +const SiJest = require('./icons/SiJest.cjs'); +const SiJet = require('./icons/SiJet.cjs'); +const SiJetblue = require('./icons/SiJetblue.cjs'); +const SiJetbrains = require('./icons/SiJetbrains.cjs'); +const SiJetpackcompose = require('./icons/SiJetpackcompose.cjs'); +const SiJfrog = require('./icons/SiJfrog.cjs'); +const SiJfrogpipelines = require('./icons/SiJfrogpipelines.cjs'); +const SiJhipster = require('./icons/SiJhipster.cjs'); +const SiJinja = require('./icons/SiJinja.cjs'); +const SiJio = require('./icons/SiJio.cjs'); +const SiJira = require('./icons/SiJira.cjs'); +const SiJirasoftware = require('./icons/SiJirasoftware.cjs'); +const SiJitpack = require('./icons/SiJitpack.cjs'); +const SiJitsi = require('./icons/SiJitsi.cjs'); +const SiJohndeere = require('./icons/SiJohndeere.cjs'); +const SiJoomla = require('./icons/SiJoomla.cjs'); +const SiJoplin = require('./icons/SiJoplin.cjs'); +const SiJordan = require('./icons/SiJordan.cjs'); +const SiJouav = require('./icons/SiJouav.cjs'); +const SiJovian = require('./icons/SiJovian.cjs'); +const SiJpeg = require('./icons/SiJpeg.cjs'); +const SiJquery = require('./icons/SiJquery.cjs'); +const SiJrgroup = require('./icons/SiJrgroup.cjs'); +const SiJsdelivr = require('./icons/SiJsdelivr.cjs'); +const SiJsfiddle = require('./icons/SiJsfiddle.cjs'); +const SiJson = require('./icons/SiJson.cjs'); +const SiJsonwebtokens = require('./icons/SiJsonwebtokens.cjs'); +const SiJsr = require('./icons/SiJsr.cjs'); +const SiJss = require('./icons/SiJss.cjs'); +const SiJuce = require('./icons/SiJuce.cjs'); +const SiJuejin = require('./icons/SiJuejin.cjs'); +const SiJuke = require('./icons/SiJuke.cjs'); +const SiJulia = require('./icons/SiJulia.cjs'); +const SiJunipernetworks = require('./icons/SiJunipernetworks.cjs'); +const SiJunit5 = require('./icons/SiJunit5.cjs'); +const SiJupyter = require('./icons/SiJupyter.cjs'); +const SiJust = require('./icons/SiJust.cjs'); +const SiJusteat = require('./icons/SiJusteat.cjs'); +const SiJustgiving = require('./icons/SiJustgiving.cjs'); +const SiK3s = require('./icons/SiK3s.cjs'); +const SiK6 = require('./icons/SiK6.cjs'); +const SiKaggle = require('./icons/SiKaggle.cjs'); +const SiKagi = require('./icons/SiKagi.cjs'); +const SiKahoot = require('./icons/SiKahoot.cjs'); +const SiKaios = require('./icons/SiKaios.cjs'); +const SiKakao = require('./icons/SiKakao.cjs'); +const SiKakaotalk = require('./icons/SiKakaotalk.cjs'); +const SiKalilinux = require('./icons/SiKalilinux.cjs'); +const SiKamailio = require('./icons/SiKamailio.cjs'); +const SiKando = require('./icons/SiKando.cjs'); +const SiKaniko = require('./icons/SiKaniko.cjs'); +const SiKarlsruherverkehrsverbund = require('./icons/SiKarlsruherverkehrsverbund.cjs'); +const SiKasasmart = require('./icons/SiKasasmart.cjs'); +const SiKashflow = require('./icons/SiKashflow.cjs'); +const SiKaspersky = require('./icons/SiKaspersky.cjs'); +const SiKatana = require('./icons/SiKatana.cjs'); +const SiKaufland = require('./icons/SiKaufland.cjs'); +const SiKde = require('./icons/SiKde.cjs'); +const SiKdeneon = require('./icons/SiKdeneon.cjs'); +const SiKdenlive = require('./icons/SiKdenlive.cjs'); +const SiKdeplasma = require('./icons/SiKdeplasma.cjs'); +const SiKedro = require('./icons/SiKedro.cjs'); +const SiKeenetic = require('./icons/SiKeenetic.cjs'); +const SiKeepachangelog = require('./icons/SiKeepachangelog.cjs'); +const SiKeepassxc = require('./icons/SiKeepassxc.cjs'); +const SiKeeper = require('./icons/SiKeeper.cjs'); +const SiKeeweb = require('./icons/SiKeeweb.cjs'); +const SiKenmei = require('./icons/SiKenmei.cjs'); +const SiKentico = require('./icons/SiKentico.cjs'); +const SiKeploy = require('./icons/SiKeploy.cjs'); +const SiKeras = require('./icons/SiKeras.cjs'); +const SiKeybase = require('./icons/SiKeybase.cjs'); +const SiKeycdn = require('./icons/SiKeycdn.cjs'); +const SiKeycloak = require('./icons/SiKeycloak.cjs'); +const SiKeystone = require('./icons/SiKeystone.cjs'); +const SiKfc = require('./icons/SiKfc.cjs'); +const SiKhanacademy = require('./icons/SiKhanacademy.cjs'); +const SiKhronosgroup = require('./icons/SiKhronosgroup.cjs'); +const SiKia = require('./icons/SiKia.cjs'); +const SiKibana = require('./icons/SiKibana.cjs'); +const SiKicad = require('./icons/SiKicad.cjs'); +const SiKick = require('./icons/SiKick.cjs'); +const SiKickstarter = require('./icons/SiKickstarter.cjs'); +const SiKik = require('./icons/SiKik.cjs'); +const SiKingstontechnology = require('./icons/SiKingstontechnology.cjs'); +const SiKinopoisk = require('./icons/SiKinopoisk.cjs'); +const SiKinsta = require('./icons/SiKinsta.cjs'); +const SiKirby = require('./icons/SiKirby.cjs'); +const SiKit = require('./icons/SiKit.cjs'); +const SiKitsu = require('./icons/SiKitsu.cjs'); +const SiKiwix = require('./icons/SiKiwix.cjs'); +const SiKlarna = require('./icons/SiKlarna.cjs'); +const SiKleinanzeigen = require('./icons/SiKleinanzeigen.cjs'); +const SiKlm = require('./icons/SiKlm.cjs'); +const SiKlook = require('./icons/SiKlook.cjs'); +const SiKnative = require('./icons/SiKnative.cjs'); +const SiKnexdotjs = require('./icons/SiKnexdotjs.cjs'); +const SiKnime = require('./icons/SiKnime.cjs'); +const SiKnip = require('./icons/SiKnip.cjs'); +const SiKnowledgebase = require('./icons/SiKnowledgebase.cjs'); +const SiKnown = require('./icons/SiKnown.cjs'); +const SiKoa = require('./icons/SiKoa.cjs'); +const SiKoc = require('./icons/SiKoc.cjs'); +const SiKodak = require('./icons/SiKodak.cjs'); +const SiKodi = require('./icons/SiKodi.cjs'); +const SiKodular = require('./icons/SiKodular.cjs'); +const SiKoenigsegg = require('./icons/SiKoenigsegg.cjs'); +const SiKofax = require('./icons/SiKofax.cjs'); +const SiKofi = require('./icons/SiKofi.cjs'); +const SiKomoot = require('./icons/SiKomoot.cjs'); +const SiKonami = require('./icons/SiKonami.cjs'); +const SiKong = require('./icons/SiKong.cjs'); +const SiKongregate = require('./icons/SiKongregate.cjs'); +const SiKonva = require('./icons/SiKonva.cjs'); +const SiKoreader = require('./icons/SiKoreader.cjs'); +const SiKotlin = require('./icons/SiKotlin.cjs'); +const SiKoyeb = require('./icons/SiKoyeb.cjs'); +const SiKred = require('./icons/SiKred.cjs'); +const SiKrita = require('./icons/SiKrita.cjs'); +const SiKtm = require('./icons/SiKtm.cjs'); +const SiKtor = require('./icons/SiKtor.cjs'); +const SiKuaishou = require('./icons/SiKuaishou.cjs'); +const SiKubernetes = require('./icons/SiKubernetes.cjs'); +const SiKubespray = require('./icons/SiKubespray.cjs'); +const SiKubuntu = require('./icons/SiKubuntu.cjs'); +const SiKucoin = require('./icons/SiKucoin.cjs'); +const SiKueski = require('./icons/SiKueski.cjs'); +const SiKuma = require('./icons/SiKuma.cjs'); +const SiKununu = require('./icons/SiKununu.cjs'); +const SiKuula = require('./icons/SiKuula.cjs'); +const SiKx = require('./icons/SiKx.cjs'); +const SiKyocera = require('./icons/SiKyocera.cjs'); +const SiLabex = require('./icons/SiLabex.cjs'); +const SiLabview = require('./icons/SiLabview.cjs'); +const SiLada = require('./icons/SiLada.cjs'); +const SiLamborghini = require('./icons/SiLamborghini.cjs'); +const SiLangchain = require('./icons/SiLangchain.cjs'); +const SiLangflow = require('./icons/SiLangflow.cjs'); +const SiLanggraph = require('./icons/SiLanggraph.cjs'); +const SiLanguagetool = require('./icons/SiLanguagetool.cjs'); +const SiLapce = require('./icons/SiLapce.cjs'); +const SiLaragon = require('./icons/SiLaragon.cjs'); +const SiLaravel = require('./icons/SiLaravel.cjs'); +const SiLaravelhorizon = require('./icons/SiLaravelhorizon.cjs'); +const SiLaravelnova = require('./icons/SiLaravelnova.cjs'); +const SiLastdotfm = require('./icons/SiLastdotfm.cjs'); +const SiLastpass = require('./icons/SiLastpass.cjs'); +const SiLatex = require('./icons/SiLatex.cjs'); +const SiLaunchpad = require('./icons/SiLaunchpad.cjs'); +const SiLazarus = require('./icons/SiLazarus.cjs'); +const SiLazyvim = require('./icons/SiLazyvim.cjs'); +const SiLbry = require('./icons/SiLbry.cjs'); +const SiLeaderprice = require('./icons/SiLeaderprice.cjs'); +const SiLeaflet = require('./icons/SiLeaflet.cjs'); +const SiLeagueoflegends = require('./icons/SiLeagueoflegends.cjs'); +const SiLeanpub = require('./icons/SiLeanpub.cjs'); +const SiLeetcode = require('./icons/SiLeetcode.cjs'); +const SiLefthook = require('./icons/SiLefthook.cjs'); +const SiLegacygames = require('./icons/SiLegacygames.cjs'); +const SiLeica = require('./icons/SiLeica.cjs'); +const SiLemmy = require('./icons/SiLemmy.cjs'); +const SiLemonsqueezy = require('./icons/SiLemonsqueezy.cjs'); +const SiLenovo = require('./icons/SiLenovo.cjs'); +const SiLens = require('./icons/SiLens.cjs'); +const SiLeptos = require('./icons/SiLeptos.cjs'); +const SiLequipe = require('./icons/SiLequipe.cjs'); +const SiLerna = require('./icons/SiLerna.cjs'); +const SiLeroymerlin = require('./icons/SiLeroymerlin.cjs'); +const SiLeslibraires = require('./icons/SiLeslibraires.cjs'); +const SiLess = require('./icons/SiLess.cjs'); +const SiLetsencrypt = require('./icons/SiLetsencrypt.cjs'); +const SiLetterboxd = require('./icons/SiLetterboxd.cjs'); +const SiLevelsdotfyi = require('./icons/SiLevelsdotfyi.cjs'); +const SiLg = require('./icons/SiLg.cjs'); +const SiLiberadotchat = require('./icons/SiLiberadotchat.cjs'); +const SiLiberapay = require('./icons/SiLiberapay.cjs'); +const SiLibrariesdotio = require('./icons/SiLibrariesdotio.cjs'); +const SiLibrarything = require('./icons/SiLibrarything.cjs'); +const SiLibreoffice = require('./icons/SiLibreoffice.cjs'); +const SiLibreofficebase = require('./icons/SiLibreofficebase.cjs'); +const SiLibreofficecalc = require('./icons/SiLibreofficecalc.cjs'); +const SiLibreofficedraw = require('./icons/SiLibreofficedraw.cjs'); +const SiLibreofficeimpress = require('./icons/SiLibreofficeimpress.cjs'); +const SiLibreofficemath = require('./icons/SiLibreofficemath.cjs'); +const SiLibreofficewriter = require('./icons/SiLibreofficewriter.cjs'); +const SiLibretranslate = require('./icons/SiLibretranslate.cjs'); +const SiLibretube = require('./icons/SiLibretube.cjs'); +const SiLibrewolf = require('./icons/SiLibrewolf.cjs'); +const SiLibuv = require('./icons/SiLibuv.cjs'); +const SiLichess = require('./icons/SiLichess.cjs'); +const SiLidl = require('./icons/SiLidl.cjs'); +const SiLifx = require('./icons/SiLifx.cjs'); +const SiLightburn = require('./icons/SiLightburn.cjs'); +const SiLighthouse = require('./icons/SiLighthouse.cjs'); +const SiLightning = require('./icons/SiLightning.cjs'); +const SiLimesurvey = require('./icons/SiLimesurvey.cjs'); +const SiLine = require('./icons/SiLine.cjs'); +const SiLineageos = require('./icons/SiLineageos.cjs'); +const SiLinear = require('./icons/SiLinear.cjs'); +const SiLining = require('./icons/SiLining.cjs'); +const SiLinkerd = require('./icons/SiLinkerd.cjs'); +const SiLinkfire = require('./icons/SiLinkfire.cjs'); +const SiLinksys = require('./icons/SiLinksys.cjs'); +const SiLinktree = require('./icons/SiLinktree.cjs'); +const SiLinphone = require('./icons/SiLinphone.cjs'); +const SiLintcode = require('./icons/SiLintcode.cjs'); +const SiLinux = require('./icons/SiLinux.cjs'); +const SiLinuxcontainers = require('./icons/SiLinuxcontainers.cjs'); +const SiLinuxfoundation = require('./icons/SiLinuxfoundation.cjs'); +const SiLinuxmint = require('./icons/SiLinuxmint.cjs'); +const SiLinuxprofessionalinstitute = require('./icons/SiLinuxprofessionalinstitute.cjs'); +const SiLinuxserver = require('./icons/SiLinuxserver.cjs'); +const SiLionair = require('./icons/SiLionair.cjs'); +const SiLiquibase = require('./icons/SiLiquibase.cjs'); +const SiListenhub = require('./icons/SiListenhub.cjs'); +const SiListmonk = require('./icons/SiListmonk.cjs'); +const SiLit = require('./icons/SiLit.cjs'); +const SiLitecoin = require('./icons/SiLitecoin.cjs'); +const SiLiteral = require('./icons/SiLiteral.cjs'); +const SiLitiengine = require('./icons/SiLitiengine.cjs'); +const SiLivechat = require('./icons/SiLivechat.cjs'); +const SiLivejournal = require('./icons/SiLivejournal.cjs'); +const SiLivekit = require('./icons/SiLivekit.cjs'); +const SiLivewire = require('./icons/SiLivewire.cjs'); +const SiLlvm = require('./icons/SiLlvm.cjs'); +const SiLmms = require('./icons/SiLmms.cjs'); +const SiLobsters = require('./icons/SiLobsters.cjs'); +const SiLocal = require('./icons/SiLocal.cjs'); +const SiLocalsend = require('./icons/SiLocalsend.cjs'); +const SiLocalxpose = require('./icons/SiLocalxpose.cjs'); +const SiLodash = require('./icons/SiLodash.cjs'); +const SiLogmein = require('./icons/SiLogmein.cjs'); +const SiLogseq = require('./icons/SiLogseq.cjs'); +const SiLogstash = require('./icons/SiLogstash.cjs'); +const SiLooker = require('./icons/SiLooker.cjs'); +const SiLoom = require('./icons/SiLoom.cjs'); +const SiLoop = require('./icons/SiLoop.cjs'); +const SiLoopback = require('./icons/SiLoopback.cjs'); +const SiLootcrate = require('./icons/SiLootcrate.cjs'); +const SiLospec = require('./icons/SiLospec.cjs'); +const SiLotpolishairlines = require('./icons/SiLotpolishairlines.cjs'); +const SiLottiefiles = require('./icons/SiLottiefiles.cjs'); +const SiLtspice = require('./icons/SiLtspice.cjs'); +const SiLua = require('./icons/SiLua.cjs'); +const SiLuanti = require('./icons/SiLuanti.cjs'); +const SiLuau = require('./icons/SiLuau.cjs'); +const SiLubuntu = require('./icons/SiLubuntu.cjs'); +const SiLucia = require('./icons/SiLucia.cjs'); +const SiLucid = require('./icons/SiLucid.cjs'); +const SiLucide = require('./icons/SiLucide.cjs'); +const SiLudwig = require('./icons/SiLudwig.cjs'); +const SiLufthansa = require('./icons/SiLufthansa.cjs'); +const SiLumen = require('./icons/SiLumen.cjs'); +const SiLunacy = require('./icons/SiLunacy.cjs'); +const SiLuogu = require('./icons/SiLuogu.cjs'); +const SiLutris = require('./icons/SiLutris.cjs'); +const SiLvgl = require('./icons/SiLvgl.cjs'); +const SiLydia = require('./icons/SiLydia.cjs'); +const SiLyft = require('./icons/SiLyft.cjs'); +const SiMaas = require('./icons/SiMaas.cjs'); +const SiMacos = require('./icons/SiMacos.cjs'); +const SiMacpaw = require('./icons/SiMacpaw.cjs'); +const SiMacports = require('./icons/SiMacports.cjs'); +const SiMacys = require('./icons/SiMacys.cjs'); +const SiMagasinsu = require('./icons/SiMagasinsu.cjs'); +const SiMagic = require('./icons/SiMagic.cjs'); +const SiMagisk = require('./icons/SiMagisk.cjs'); +const SiMahindra = require('./icons/SiMahindra.cjs'); +const SiMailbox = require('./icons/SiMailbox.cjs'); +const SiMailchimp = require('./icons/SiMailchimp.cjs'); +const SiMaildotcom = require('./icons/SiMaildotcom.cjs'); +const SiMaildotru = require('./icons/SiMaildotru.cjs'); +const SiMailgun = require('./icons/SiMailgun.cjs'); +const SiMailtrap = require('./icons/SiMailtrap.cjs'); +const SiMainwp = require('./icons/SiMainwp.cjs'); +const SiMajorleaguehacking = require('./icons/SiMajorleaguehacking.cjs'); +const SiMake = require('./icons/SiMake.cjs'); +const SiMakerbot = require('./icons/SiMakerbot.cjs'); +const SiMalt = require('./icons/SiMalt.cjs'); +const SiMalwarebytes = require('./icons/SiMalwarebytes.cjs'); +const SiMambaui = require('./icons/SiMambaui.cjs'); +const SiMamp = require('./icons/SiMamp.cjs'); +const SiMan = require('./icons/SiMan.cjs'); +const SiManageiq = require('./icons/SiManageiq.cjs'); +const SiMangacollec = require('./icons/SiMangacollec.cjs'); +const SiMangaupdates = require('./icons/SiMangaupdates.cjs'); +const SiManjaro = require('./icons/SiManjaro.cjs'); +const SiMantine = require('./icons/SiMantine.cjs'); +const SiMapbox = require('./icons/SiMapbox.cjs'); +const SiMapillary = require('./icons/SiMapillary.cjs'); +const SiMaplibre = require('./icons/SiMaplibre.cjs'); +const SiMaptiler = require('./icons/SiMaptiler.cjs'); +const SiMariadb = require('./icons/SiMariadb.cjs'); +const SiMariadbfoundation = require('./icons/SiMariadbfoundation.cjs'); +const SiMarkdown = require('./icons/SiMarkdown.cjs'); +const SiMarko = require('./icons/SiMarko.cjs'); +const SiMarriott = require('./icons/SiMarriott.cjs'); +const SiMarvelapp = require('./icons/SiMarvelapp.cjs'); +const SiMaserati = require('./icons/SiMaserati.cjs'); +const SiMastercard = require('./icons/SiMastercard.cjs'); +const SiMastercomfig = require('./icons/SiMastercomfig.cjs'); +const SiMastodon = require('./icons/SiMastodon.cjs'); +const SiMaterialdesign = require('./icons/SiMaterialdesign.cjs'); +const SiMaterialdesignicons = require('./icons/SiMaterialdesignicons.cjs'); +const SiMaterialformkdocs = require('./icons/SiMaterialformkdocs.cjs'); +const SiMatillion = require('./icons/SiMatillion.cjs'); +const SiMatomo = require('./icons/SiMatomo.cjs'); +const SiMatrix = require('./icons/SiMatrix.cjs'); +const SiMatterdotjs = require('./icons/SiMatterdotjs.cjs'); +const SiMattermost = require('./icons/SiMattermost.cjs'); +const SiMatternet = require('./icons/SiMatternet.cjs'); +const SiMautic = require('./icons/SiMautic.cjs'); +const SiMax = require('./icons/SiMax.cjs'); +const SiMaxplanckgesellschaft = require('./icons/SiMaxplanckgesellschaft.cjs'); +const SiMaytag = require('./icons/SiMaytag.cjs'); +const SiMazda = require('./icons/SiMazda.cjs'); +const SiMaze = require('./icons/SiMaze.cjs'); +const SiMcafee = require('./icons/SiMcafee.cjs'); +const SiMcdonalds = require('./icons/SiMcdonalds.cjs'); +const SiMclaren = require('./icons/SiMclaren.cjs'); +const SiMdblist = require('./icons/SiMdblist.cjs'); +const SiMdbook = require('./icons/SiMdbook.cjs'); +const SiMdnwebdocs = require('./icons/SiMdnwebdocs.cjs'); +const SiMdx = require('./icons/SiMdx.cjs'); +const SiMealie = require('./icons/SiMealie.cjs'); +const SiMediafire = require('./icons/SiMediafire.cjs'); +const SiMediamarkt = require('./icons/SiMediamarkt.cjs'); +const SiMediapipe = require('./icons/SiMediapipe.cjs'); +const SiMediatek = require('./icons/SiMediatek.cjs'); +const SiMedibangpaint = require('./icons/SiMedibangpaint.cjs'); +const SiMedium = require('./icons/SiMedium.cjs'); +const SiMedusa = require('./icons/SiMedusa.cjs'); +const SiMeetup = require('./icons/SiMeetup.cjs'); +const SiMega = require('./icons/SiMega.cjs'); +const SiMeilisearch = require('./icons/SiMeilisearch.cjs'); +const SiMeituan = require('./icons/SiMeituan.cjs'); +const SiMeizu = require('./icons/SiMeizu.cjs'); +const SiMendeley = require('./icons/SiMendeley.cjs'); +const SiMentorcruise = require('./icons/SiMentorcruise.cjs'); +const SiMercadopago = require('./icons/SiMercadopago.cjs'); +const SiMerck = require('./icons/SiMerck.cjs'); +const SiMercurial = require('./icons/SiMercurial.cjs'); +const SiMermaid = require('./icons/SiMermaid.cjs'); +const SiMessenger = require('./icons/SiMessenger.cjs'); +const SiMeta = require('./icons/SiMeta.cjs'); +const SiMetabase = require('./icons/SiMetabase.cjs'); +const SiMetacritic = require('./icons/SiMetacritic.cjs'); +const SiMetafilter = require('./icons/SiMetafilter.cjs'); +const SiMetager = require('./icons/SiMetager.cjs'); +const SiMetasploit = require('./icons/SiMetasploit.cjs'); +const SiMeteor = require('./icons/SiMeteor.cjs'); +const SiMetro = require('./icons/SiMetro.cjs'); +const SiMetrodelaciudaddemexico = require('./icons/SiMetrodelaciudaddemexico.cjs'); +const SiMetrodemadrid = require('./icons/SiMetrodemadrid.cjs'); +const SiMetrodeparis = require('./icons/SiMetrodeparis.cjs'); +const SiMewe = require('./icons/SiMewe.cjs'); +const SiMezmo = require('./icons/SiMezmo.cjs'); +const SiMg = require('./icons/SiMg.cjs'); +const SiMicrobit = require('./icons/SiMicrobit.cjs'); +const SiMicrodotblog = require('./icons/SiMicrodotblog.cjs'); +const SiMicroeditor = require('./icons/SiMicroeditor.cjs'); +const SiMicropython = require('./icons/SiMicropython.cjs'); +const SiMicrostation = require('./icons/SiMicrostation.cjs'); +const SiMicrostrategy = require('./icons/SiMicrostrategy.cjs'); +const SiMidi = require('./icons/SiMidi.cjs'); +const SiMigadu = require('./icons/SiMigadu.cjs'); +const SiMihon = require('./icons/SiMihon.cjs'); +const SiMihoyo = require('./icons/SiMihoyo.cjs'); +const SiMikrotik = require('./icons/SiMikrotik.cjs'); +const SiMilanote = require('./icons/SiMilanote.cjs'); +const SiMilvus = require('./icons/SiMilvus.cjs'); +const SiMinds = require('./icons/SiMinds.cjs'); +const SiMingww64 = require('./icons/SiMingww64.cjs'); +const SiMini = require('./icons/SiMini.cjs'); +const SiMinimax = require('./icons/SiMinimax.cjs'); +const SiMinio = require('./icons/SiMinio.cjs'); +const SiMintlify = require('./icons/SiMintlify.cjs'); +const SiMinutemailer = require('./icons/SiMinutemailer.cjs'); +const SiMiraheze = require('./icons/SiMiraheze.cjs'); +const SiMiro = require('./icons/SiMiro.cjs'); +const SiMisskey = require('./icons/SiMisskey.cjs'); +const SiMistralai = require('./icons/SiMistralai.cjs'); +const SiMitsubishi = require('./icons/SiMitsubishi.cjs'); +const SiMix = require('./icons/SiMix.cjs'); +const SiMixcloud = require('./icons/SiMixcloud.cjs'); +const SiMixpanel = require('./icons/SiMixpanel.cjs'); +const SiMlb = require('./icons/SiMlb.cjs'); +const SiMlflow = require('./icons/SiMlflow.cjs'); +const SiMobx = require('./icons/SiMobx.cjs'); +const SiMobxstatetree = require('./icons/SiMobxstatetree.cjs'); +const SiMocha = require('./icons/SiMocha.cjs'); +const SiMockserviceworker = require('./icons/SiMockserviceworker.cjs'); +const SiModal = require('./icons/SiModal.cjs'); +const SiModelcontextprotocol = require('./icons/SiModelcontextprotocol.cjs'); +const SiModelscope = require('./icons/SiModelscope.cjs'); +const SiModin = require('./icons/SiModin.cjs'); +const SiModrinth = require('./icons/SiModrinth.cjs'); +const SiModx = require('./icons/SiModx.cjs'); +const SiMojeek = require('./icons/SiMojeek.cjs'); +const SiMoleculer = require('./icons/SiMoleculer.cjs'); +const SiMomenteo = require('./icons/SiMomenteo.cjs'); +const SiMonero = require('./icons/SiMonero.cjs'); +const SiMoneygram = require('./icons/SiMoneygram.cjs'); +const SiMongodb = require('./icons/SiMongodb.cjs'); +const SiMongoose = require('./icons/SiMongoose.cjs'); +const SiMongoosedotws = require('./icons/SiMongoosedotws.cjs'); +const SiMonica = require('./icons/SiMonica.cjs'); +const SiMonkeytie = require('./icons/SiMonkeytie.cjs'); +const SiMonkeytype = require('./icons/SiMonkeytype.cjs'); +const SiMonogame = require('./icons/SiMonogame.cjs'); +const SiMonoprix = require('./icons/SiMonoprix.cjs'); +const SiMonster = require('./icons/SiMonster.cjs'); +const SiMonzo = require('./icons/SiMonzo.cjs'); +const SiMoo = require('./icons/SiMoo.cjs'); +const SiMoodle = require('./icons/SiMoodle.cjs'); +const SiMoonrepo = require('./icons/SiMoonrepo.cjs'); +const SiMoq = require('./icons/SiMoq.cjs'); +const SiMoqups = require('./icons/SiMoqups.cjs'); +const SiMorrisons = require('./icons/SiMorrisons.cjs'); +const SiMoscowmetro = require('./icons/SiMoscowmetro.cjs'); +const SiMotorola = require('./icons/SiMotorola.cjs'); +const SiMovistar = require('./icons/SiMovistar.cjs'); +const SiMozilla = require('./icons/SiMozilla.cjs'); +const SiMpv = require('./icons/SiMpv.cjs'); +const SiMqtt = require('./icons/SiMqtt.cjs'); +const SiMsi = require('./icons/SiMsi.cjs'); +const SiMsibusiness = require('./icons/SiMsibusiness.cjs'); +const SiMta = require('./icons/SiMta.cjs'); +const SiMtr = require('./icons/SiMtr.cjs'); +const SiMubi = require('./icons/SiMubi.cjs'); +const SiMui = require('./icons/SiMui.cjs'); +const SiMuller = require('./icons/SiMuller.cjs'); +const SiMullvad = require('./icons/SiMullvad.cjs'); +const SiMultisim = require('./icons/SiMultisim.cjs'); +const SiMumble = require('./icons/SiMumble.cjs'); +const SiMuo = require('./icons/SiMuo.cjs'); +const SiMural = require('./icons/SiMural.cjs'); +const SiMusicbrainz = require('./icons/SiMusicbrainz.cjs'); +const SiMxlinux = require('./icons/SiMxlinux.cjs'); +const SiMyanimelist = require('./icons/SiMyanimelist.cjs'); +const SiMyget = require('./icons/SiMyget.cjs'); +const SiMyob = require('./icons/SiMyob.cjs'); +const SiMyshows = require('./icons/SiMyshows.cjs'); +const SiMyspace = require('./icons/SiMyspace.cjs'); +const SiMysql = require('./icons/SiMysql.cjs'); +const SiN26 = require('./icons/SiN26.cjs'); +const SiN8n = require('./icons/SiN8n.cjs'); +const SiNamebase = require('./icons/SiNamebase.cjs'); +const SiNamecheap = require('./icons/SiNamecheap.cjs'); +const SiNamemc = require('./icons/SiNamemc.cjs'); +const SiNamesilo = require('./icons/SiNamesilo.cjs'); +const SiNamuwiki = require('./icons/SiNamuwiki.cjs'); +const SiNano = require('./icons/SiNano.cjs'); +const SiNanostores = require('./icons/SiNanostores.cjs'); +const SiNapster = require('./icons/SiNapster.cjs'); +const SiNasa = require('./icons/SiNasa.cjs'); +const SiNationalgrid = require('./icons/SiNationalgrid.cjs'); +const SiNationalrail = require('./icons/SiNationalrail.cjs'); +const SiNativescript = require('./icons/SiNativescript.cjs'); +const SiNatsdotio = require('./icons/SiNatsdotio.cjs'); +const SiNaver = require('./icons/SiNaver.cjs'); +const SiNba = require('./icons/SiNba.cjs'); +const SiNbb = require('./icons/SiNbb.cjs'); +const SiNbc = require('./icons/SiNbc.cjs'); +const SiNdi = require('./icons/SiNdi.cjs'); +const SiNdr = require('./icons/SiNdr.cjs'); +const SiNear = require('./icons/SiNear.cjs'); +const SiNebula = require('./icons/SiNebula.cjs'); +const SiNec = require('./icons/SiNec.cjs'); +const SiNederlandsespoorwegen = require('./icons/SiNederlandsespoorwegen.cjs'); +const SiNeo4j = require('./icons/SiNeo4j.cjs'); +const SiNeovim = require('./icons/SiNeovim.cjs'); +const SiNeptune = require('./icons/SiNeptune.cjs'); +const SiNestjs = require('./icons/SiNestjs.cjs'); +const SiNetapp = require('./icons/SiNetapp.cjs'); +const SiNetbsd = require('./icons/SiNetbsd.cjs'); +const SiNetcup = require('./icons/SiNetcup.cjs'); +const SiNetdata = require('./icons/SiNetdata.cjs'); +const SiNeteasecloudmusic = require('./icons/SiNeteasecloudmusic.cjs'); +const SiNetflix = require('./icons/SiNetflix.cjs'); +const SiNetgear = require('./icons/SiNetgear.cjs'); +const SiNetim = require('./icons/SiNetim.cjs'); +const SiNetlify = require('./icons/SiNetlify.cjs'); +const SiNette = require('./icons/SiNette.cjs'); +const SiNetto = require('./icons/SiNetto.cjs'); +const SiNeutralinojs = require('./icons/SiNeutralinojs.cjs'); +const SiNewbalance = require('./icons/SiNewbalance.cjs'); +const SiNewegg = require('./icons/SiNewegg.cjs'); +const SiNewgrounds = require('./icons/SiNewgrounds.cjs'); +const SiNewjapanprowrestling = require('./icons/SiNewjapanprowrestling.cjs'); +const SiNewpipe = require('./icons/SiNewpipe.cjs'); +const SiNewrelic = require('./icons/SiNewrelic.cjs'); +const SiNewyorktimes = require('./icons/SiNewyorktimes.cjs'); +const SiNexon = require('./icons/SiNexon.cjs'); +const SiNextbike = require('./icons/SiNextbike.cjs'); +const SiNextbilliondotai = require('./icons/SiNextbilliondotai.cjs'); +const SiNextcloud = require('./icons/SiNextcloud.cjs'); +const SiNextdns = require('./icons/SiNextdns.cjs'); +const SiNextdoor = require('./icons/SiNextdoor.cjs'); +const SiNextdotjs = require('./icons/SiNextdotjs.cjs'); +const SiNextflow = require('./icons/SiNextflow.cjs'); +const SiNextra = require('./icons/SiNextra.cjs'); +const SiNfc = require('./icons/SiNfc.cjs'); +const SiNfcore = require('./icons/SiNfcore.cjs'); +const SiNginx = require('./icons/SiNginx.cjs'); +const SiNginxproxymanager = require('./icons/SiNginxproxymanager.cjs'); +const SiNgrok = require('./icons/SiNgrok.cjs'); +const SiNgrx = require('./icons/SiNgrx.cjs'); +const SiNhl = require('./icons/SiNhl.cjs'); +const SiNhost = require('./icons/SiNhost.cjs'); +const SiNicehash = require('./icons/SiNicehash.cjs'); +const SiNiconico = require('./icons/SiNiconico.cjs'); +const SiNike = require('./icons/SiNike.cjs'); +const SiNikon = require('./icons/SiNikon.cjs'); +const SiNim = require('./icons/SiNim.cjs'); +const SiNiri = require('./icons/SiNiri.cjs'); +const SiNissan = require('./icons/SiNissan.cjs'); +const SiNixos = require('./icons/SiNixos.cjs'); +const SiNobaralinux = require('./icons/SiNobaralinux.cjs'); +const SiNodebb = require('./icons/SiNodebb.cjs'); +const SiNodedotjs = require('./icons/SiNodedotjs.cjs'); +const SiNodegui = require('./icons/SiNodegui.cjs'); +const SiNodemon = require('./icons/SiNodemon.cjs'); +const SiNodered = require('./icons/SiNodered.cjs'); +const SiNokia = require('./icons/SiNokia.cjs'); +const SiNomad = require('./icons/SiNomad.cjs'); +const SiNorco = require('./icons/SiNorco.cjs'); +const SiNordicsemiconductor = require('./icons/SiNordicsemiconductor.cjs'); +const SiNordvpn = require('./icons/SiNordvpn.cjs'); +const SiNormalizedotcss = require('./icons/SiNormalizedotcss.cjs'); +const SiNorton = require('./icons/SiNorton.cjs'); +const SiNorwegian = require('./icons/SiNorwegian.cjs'); +const SiNote = require('./icons/SiNote.cjs'); +const SiNotebooklm = require('./icons/SiNotebooklm.cjs'); +const SiNotepadplusplus = require('./icons/SiNotepadplusplus.cjs'); +const SiNotion = require('./icons/SiNotion.cjs'); +const SiNotist = require('./icons/SiNotist.cjs'); +const SiNounproject = require('./icons/SiNounproject.cjs'); +const SiNovu = require('./icons/SiNovu.cjs'); +const SiNow = require('./icons/SiNow.cjs'); +const SiNpm = require('./icons/SiNpm.cjs'); +const SiNrwl = require('./icons/SiNrwl.cjs'); +const SiNsis = require('./icons/SiNsis.cjs'); +const SiNtfy = require('./icons/SiNtfy.cjs'); +const SiNubank = require('./icons/SiNubank.cjs'); +const SiNucleo = require('./icons/SiNucleo.cjs'); +const SiNuget = require('./icons/SiNuget.cjs'); +const SiNuke = require('./icons/SiNuke.cjs'); +const SiNumba = require('./icons/SiNumba.cjs'); +const SiNumpy = require('./icons/SiNumpy.cjs'); +const SiNunjucks = require('./icons/SiNunjucks.cjs'); +const SiNushell = require('./icons/SiNushell.cjs'); +const SiNutanix = require('./icons/SiNutanix.cjs'); +const SiNuxt = require('./icons/SiNuxt.cjs'); +const SiNvidia = require('./icons/SiNvidia.cjs'); +const SiNvm = require('./icons/SiNvm.cjs'); +const SiNx = require('./icons/SiNx.cjs'); +const SiNxp = require('./icons/SiNxp.cjs'); +const SiNzxt = require('./icons/SiNzxt.cjs'); +const SiO2 = require('./icons/SiO2.cjs'); +const SiObb = require('./icons/SiObb.cjs'); +const SiObservable = require('./icons/SiObservable.cjs'); +const SiObsidian = require('./icons/SiObsidian.cjs'); +const SiObsstudio = require('./icons/SiObsstudio.cjs'); +const SiObtainium = require('./icons/SiObtainium.cjs'); +const SiOcaml = require('./icons/SiOcaml.cjs'); +const SiOclc = require('./icons/SiOclc.cjs'); +const SiOclif = require('./icons/SiOclif.cjs'); +const SiOctanerender = require('./icons/SiOctanerender.cjs'); +const SiOctave = require('./icons/SiOctave.cjs'); +const SiOctobercms = require('./icons/SiOctobercms.cjs'); +const SiOctoprint = require('./icons/SiOctoprint.cjs'); +const SiOctopusdeploy = require('./icons/SiOctopusdeploy.cjs'); +const SiOculus = require('./icons/SiOculus.cjs'); +const SiOdido = require('./icons/SiOdido.cjs'); +const SiOdin = require('./icons/SiOdin.cjs'); +const SiOdnoklassniki = require('./icons/SiOdnoklassniki.cjs'); +const SiOdoo = require('./icons/SiOdoo.cjs'); +const SiOdysee = require('./icons/SiOdysee.cjs'); +const SiOhdear = require('./icons/SiOhdear.cjs'); +const SiOkcupid = require('./icons/SiOkcupid.cjs'); +const SiOkta = require('./icons/SiOkta.cjs'); +const SiOkx = require('./icons/SiOkx.cjs'); +const SiOllama = require('./icons/SiOllama.cjs'); +const SiOmadacloud = require('./icons/SiOmadacloud.cjs'); +const SiOmarchy = require('./icons/SiOmarchy.cjs'); +const SiOneplus = require('./icons/SiOneplus.cjs'); +const SiOnestream = require('./icons/SiOnestream.cjs'); +const SiOnlyfans = require('./icons/SiOnlyfans.cjs'); +const SiOnlyoffice = require('./icons/SiOnlyoffice.cjs'); +const SiOnnx = require('./icons/SiOnnx.cjs'); +const SiOnstar = require('./icons/SiOnstar.cjs'); +const SiOpel = require('./icons/SiOpel.cjs'); +const SiOpen3d = require('./icons/SiOpen3d.cjs'); +const SiOpenaccess = require('./icons/SiOpenaccess.cjs'); +const SiOpenaigym = require('./icons/SiOpenaigym.cjs'); +const SiOpenapiinitiative = require('./icons/SiOpenapiinitiative.cjs'); +const SiOpenbadges = require('./icons/SiOpenbadges.cjs'); +const SiOpenbsd = require('./icons/SiOpenbsd.cjs'); +const SiOpenbugbounty = require('./icons/SiOpenbugbounty.cjs'); +const SiOpencage = require('./icons/SiOpencage.cjs'); +const SiOpencollective = require('./icons/SiOpencollective.cjs'); +const SiOpencontainersinitiative = require('./icons/SiOpencontainersinitiative.cjs'); +const SiOpencritic = require('./icons/SiOpencritic.cjs'); +const SiOpencv = require('./icons/SiOpencv.cjs'); +const SiOpenfaas = require('./icons/SiOpenfaas.cjs'); +const SiOpengl = require('./icons/SiOpengl.cjs'); +const SiOpenhab = require('./icons/SiOpenhab.cjs'); +const SiOpenid = require('./icons/SiOpenid.cjs'); +const SiOpenjdk = require('./icons/SiOpenjdk.cjs'); +const SiOpenjsfoundation = require('./icons/SiOpenjsfoundation.cjs'); +const SiOpenlayers = require('./icons/SiOpenlayers.cjs'); +const SiOpenmediavault = require('./icons/SiOpenmediavault.cjs'); +const SiOpenmined = require('./icons/SiOpenmined.cjs'); +const SiOpennebula = require('./icons/SiOpennebula.cjs'); +const SiOpenproject = require('./icons/SiOpenproject.cjs'); +const SiOpenrouter = require('./icons/SiOpenrouter.cjs'); +const SiOpenscad = require('./icons/SiOpenscad.cjs'); +const SiOpensea = require('./icons/SiOpensea.cjs'); +const SiOpensearch = require('./icons/SiOpensearch.cjs'); +const SiOpensourcehardware = require('./icons/SiOpensourcehardware.cjs'); +const SiOpensourceinitiative = require('./icons/SiOpensourceinitiative.cjs'); +const SiOpenssl = require('./icons/SiOpenssl.cjs'); +const SiOpenstack = require('./icons/SiOpenstack.cjs'); +const SiOpenstreetmap = require('./icons/SiOpenstreetmap.cjs'); +const SiOpensuse = require('./icons/SiOpensuse.cjs'); +const SiOpentelemetry = require('./icons/SiOpentelemetry.cjs'); +const SiOpentext = require('./icons/SiOpentext.cjs'); +const SiOpentofu = require('./icons/SiOpentofu.cjs'); +const SiOpenverse = require('./icons/SiOpenverse.cjs'); +const SiOpenvpn = require('./icons/SiOpenvpn.cjs'); +const SiOpenwrt = require('./icons/SiOpenwrt.cjs'); +const SiOpenzeppelin = require('./icons/SiOpenzeppelin.cjs'); +const SiOpenzfs = require('./icons/SiOpenzfs.cjs'); +const SiOpera = require('./icons/SiOpera.cjs'); +const SiOperagx = require('./icons/SiOperagx.cjs'); +const SiOpnsense = require('./icons/SiOpnsense.cjs'); +const SiOppo = require('./icons/SiOppo.cjs'); +const SiOpsgenie = require('./icons/SiOpsgenie.cjs'); +const SiOpslevel = require('./icons/SiOpslevel.cjs'); +const SiOptimism = require('./icons/SiOptimism.cjs'); +const SiOptuna = require('./icons/SiOptuna.cjs'); +const SiOrange = require('./icons/SiOrange.cjs'); +const SiOrcid = require('./icons/SiOrcid.cjs'); +const SiOreilly = require('./icons/SiOreilly.cjs'); +const SiOrg = require('./icons/SiOrg.cjs'); +const SiOrganicmaps = require('./icons/SiOrganicmaps.cjs'); +const SiOrigin = require('./icons/SiOrigin.cjs'); +const SiOry = require('./icons/SiOry.cjs'); +const SiOsano = require('./icons/SiOsano.cjs'); +const SiOsf = require('./icons/SiOsf.cjs'); +const SiOsgeo = require('./icons/SiOsgeo.cjs'); +const SiOshkosh = require('./icons/SiOshkosh.cjs'); +const SiOsmand = require('./icons/SiOsmand.cjs'); +const SiOsmc = require('./icons/SiOsmc.cjs'); +const SiOsu = require('./icons/SiOsu.cjs'); +const SiOtto = require('./icons/SiOtto.cjs'); +const SiOutline = require('./icons/SiOutline.cjs'); +const SiOvercast = require('./icons/SiOvercast.cjs'); +const SiOverleaf = require('./icons/SiOverleaf.cjs'); +const SiOvh = require('./icons/SiOvh.cjs'); +const SiOwasp = require('./icons/SiOwasp.cjs'); +const SiOwncloud = require('./icons/SiOwncloud.cjs'); +const SiOxc = require('./icons/SiOxc.cjs'); +const SiOxygen = require('./icons/SiOxygen.cjs'); +const SiOyo = require('./icons/SiOyo.cjs'); +const SiP5dotjs = require('./icons/SiP5dotjs.cjs'); +const SiPackagist = require('./icons/SiPackagist.cjs'); +const SiPacker = require('./icons/SiPacker.cjs'); +const SiPackt = require('./icons/SiPackt.cjs'); +const SiPaddle = require('./icons/SiPaddle.cjs'); +const SiPaddlepaddle = require('./icons/SiPaddlepaddle.cjs'); +const SiPaddypower = require('./icons/SiPaddypower.cjs'); +const SiPadlet = require('./icons/SiPadlet.cjs'); +const SiPagekit = require('./icons/SiPagekit.cjs'); +const SiPagerduty = require('./icons/SiPagerduty.cjs'); +const SiPagespeedinsights = require('./icons/SiPagespeedinsights.cjs'); +const SiPagseguro = require('./icons/SiPagseguro.cjs'); +const SiPalantir = require('./icons/SiPalantir.cjs'); +const SiPaloaltonetworks = require('./icons/SiPaloaltonetworks.cjs'); +const SiPaloaltosoftware = require('./icons/SiPaloaltosoftware.cjs'); +const SiPanasonic = require('./icons/SiPanasonic.cjs'); +const SiPandas = require('./icons/SiPandas.cjs'); +const SiPandoc = require('./icons/SiPandoc.cjs'); +const SiPandora = require('./icons/SiPandora.cjs'); +const SiPantheon = require('./icons/SiPantheon.cjs'); +const SiPaperlessngx = require('./icons/SiPaperlessngx.cjs'); +const SiPaperspace = require('./icons/SiPaperspace.cjs'); +const SiPaperswithcode = require('./icons/SiPaperswithcode.cjs'); +const SiParadoxinteractive = require('./icons/SiParadoxinteractive.cjs'); +const SiParamountplus = require('./icons/SiParamountplus.cjs'); +const SiParitysubstrate = require('./icons/SiParitysubstrate.cjs'); +const SiParrotsecurity = require('./icons/SiParrotsecurity.cjs'); +const SiParsedotly = require('./icons/SiParsedotly.cjs'); +const SiPassbolt = require('./icons/SiPassbolt.cjs'); +const SiPassport = require('./icons/SiPassport.cjs'); +const SiPastebin = require('./icons/SiPastebin.cjs'); +const SiPatreon = require('./icons/SiPatreon.cjs'); +const SiPayback = require('./icons/SiPayback.cjs'); +const SiPaychex = require('./icons/SiPaychex.cjs'); +const SiPayhip = require('./icons/SiPayhip.cjs'); +const SiPayloadcms = require('./icons/SiPayloadcms.cjs'); +const SiPayoneer = require('./icons/SiPayoneer.cjs'); +const SiPaypal = require('./icons/SiPaypal.cjs'); +const SiPaysafe = require('./icons/SiPaysafe.cjs'); +const SiPaytm = require('./icons/SiPaytm.cjs'); +const SiPcgamingwiki = require('./icons/SiPcgamingwiki.cjs'); +const SiPdm = require('./icons/SiPdm.cjs'); +const SiPdq = require('./icons/SiPdq.cjs'); +const SiPeakdesign = require('./icons/SiPeakdesign.cjs'); +const SiPearson = require('./icons/SiPearson.cjs'); +const SiPeerlist = require('./icons/SiPeerlist.cjs'); +const SiPeertube = require('./icons/SiPeertube.cjs'); +const SiPegasusairlines = require('./icons/SiPegasusairlines.cjs'); +const SiPelican = require('./icons/SiPelican.cjs'); +const SiPeloton = require('./icons/SiPeloton.cjs'); +const SiPenny = require('./icons/SiPenny.cjs'); +const SiPenpot = require('./icons/SiPenpot.cjs'); +const SiPercy = require('./icons/SiPercy.cjs'); +const SiPerforce = require('./icons/SiPerforce.cjs'); +const SiPerl = require('./icons/SiPerl.cjs'); +const SiPerplexity = require('./icons/SiPerplexity.cjs'); +const SiPersistent = require('./icons/SiPersistent.cjs'); +const SiPersonio = require('./icons/SiPersonio.cjs'); +const SiPetsathome = require('./icons/SiPetsathome.cjs'); +const SiPeugeot = require('./icons/SiPeugeot.cjs'); +const SiPexels = require('./icons/SiPexels.cjs'); +const SiPfsense = require('./icons/SiPfsense.cjs'); +const SiPhabricator = require('./icons/SiPhabricator.cjs'); +const SiPhilipshue = require('./icons/SiPhilipshue.cjs'); +const SiPhoenixframework = require('./icons/SiPhoenixframework.cjs'); +const SiPhonepe = require('./icons/SiPhonepe.cjs'); +const SiPhosphoricons = require('./icons/SiPhosphoricons.cjs'); +const SiPhotobucket = require('./icons/SiPhotobucket.cjs'); +const SiPhotocrowd = require('./icons/SiPhotocrowd.cjs'); +const SiPhoton = require('./icons/SiPhoton.cjs'); +const SiPhotopea = require('./icons/SiPhotopea.cjs'); +const SiPhp = require('./icons/SiPhp.cjs'); +const SiPhpbb = require('./icons/SiPhpbb.cjs'); +const SiPhpmyadmin = require('./icons/SiPhpmyadmin.cjs'); +const SiPhpstorm = require('./icons/SiPhpstorm.cjs'); +const SiPiaggiogroup = require('./icons/SiPiaggiogroup.cjs'); +const SiPiapro = require('./icons/SiPiapro.cjs'); +const SiPicardsurgeles = require('./icons/SiPicardsurgeles.cjs'); +const SiPicartodottv = require('./icons/SiPicartodottv.cjs'); +const SiPicnic = require('./icons/SiPicnic.cjs'); +const SiPicpay = require('./icons/SiPicpay.cjs'); +const SiPicrew = require('./icons/SiPicrew.cjs'); +const SiPicsart = require('./icons/SiPicsart.cjs'); +const SiPicxy = require('./icons/SiPicxy.cjs'); +const SiPihole = require('./icons/SiPihole.cjs'); +const SiPimcore = require('./icons/SiPimcore.cjs'); +const SiPinboard = require('./icons/SiPinboard.cjs'); +const SiPinescript = require('./icons/SiPinescript.cjs'); +const SiPinetwork = require('./icons/SiPinetwork.cjs'); +const SiPingdom = require('./icons/SiPingdom.cjs'); +const SiPinia = require('./icons/SiPinia.cjs'); +const SiPino = require('./icons/SiPino.cjs'); +const SiPinterest = require('./icons/SiPinterest.cjs'); +const SiPioneerdj = require('./icons/SiPioneerdj.cjs'); +const SiPipecat = require('./icons/SiPipecat.cjs'); +const SiPiped = require('./icons/SiPiped.cjs'); +const SiPipx = require('./icons/SiPipx.cjs'); +const SiPivotaltracker = require('./icons/SiPivotaltracker.cjs'); +const SiPiwigo = require('./icons/SiPiwigo.cjs'); +const SiPix = require('./icons/SiPix.cjs'); +const SiPixabay = require('./icons/SiPixabay.cjs'); +const SiPixelfed = require('./icons/SiPixelfed.cjs'); +const SiPixiv = require('./icons/SiPixiv.cjs'); +const SiPixlr = require('./icons/SiPixlr.cjs'); +const SiPkgsrc = require('./icons/SiPkgsrc.cjs'); +const SiPlane = require('./icons/SiPlane.cjs'); +const SiPlanet = require('./icons/SiPlanet.cjs'); +const SiPlanetscale = require('./icons/SiPlanetscale.cjs'); +const SiPlangrid = require('./icons/SiPlangrid.cjs'); +const SiPlatformdotsh = require('./icons/SiPlatformdotsh.cjs'); +const SiPlatformio = require('./icons/SiPlatformio.cjs'); +const SiPlatzi = require('./icons/SiPlatzi.cjs'); +const SiPlausibleanalytics = require('./icons/SiPlausibleanalytics.cjs'); +const SiPlaycanvas = require('./icons/SiPlaycanvas.cjs'); +const SiPlayerdotme = require('./icons/SiPlayerdotme.cjs'); +const SiPlayerfm = require('./icons/SiPlayerfm.cjs'); +const SiPlaystation = require('./icons/SiPlaystation.cjs'); +const SiPlaystation2 = require('./icons/SiPlaystation2.cjs'); +const SiPlaystation3 = require('./icons/SiPlaystation3.cjs'); +const SiPlaystation4 = require('./icons/SiPlaystation4.cjs'); +const SiPlaystation5 = require('./icons/SiPlaystation5.cjs'); +const SiPlaystationportable = require('./icons/SiPlaystationportable.cjs'); +const SiPlaystationvita = require('./icons/SiPlaystationvita.cjs'); +const SiPleroma = require('./icons/SiPleroma.cjs'); +const SiPlesk = require('./icons/SiPlesk.cjs'); +const SiPlex = require('./icons/SiPlex.cjs'); +const SiPlotly = require('./icons/SiPlotly.cjs'); +const SiPlume = require('./icons/SiPlume.cjs'); +const SiPluralsight = require('./icons/SiPluralsight.cjs'); +const SiPlurk = require('./icons/SiPlurk.cjs'); +const SiPm2 = require('./icons/SiPm2.cjs'); +const SiPnpm = require('./icons/SiPnpm.cjs'); +const SiPocketbase = require('./icons/SiPocketbase.cjs'); +const SiPocketcasts = require('./icons/SiPocketcasts.cjs'); +const SiPodcastaddict = require('./icons/SiPodcastaddict.cjs'); +const SiPodcastindex = require('./icons/SiPodcastindex.cjs'); +const SiPodman = require('./icons/SiPodman.cjs'); +const SiPoe = require('./icons/SiPoe.cjs'); +const SiPoetry = require('./icons/SiPoetry.cjs'); +const SiPolars = require('./icons/SiPolars.cjs'); +const SiPolestar = require('./icons/SiPolestar.cjs'); +const SiPolkadot = require('./icons/SiPolkadot.cjs'); +const SiPoly = require('./icons/SiPoly.cjs'); +const SiPolygon = require('./icons/SiPolygon.cjs'); +const SiPolymerproject = require('./icons/SiPolymerproject.cjs'); +const SiPolywork = require('./icons/SiPolywork.cjs'); +const SiPomerium = require('./icons/SiPomerium.cjs'); +const SiPond5 = require('./icons/SiPond5.cjs'); +const SiPopos = require('./icons/SiPopos.cjs'); +const SiPorkbun = require('./icons/SiPorkbun.cjs'); +const SiPorsche = require('./icons/SiPorsche.cjs'); +const SiPortableappsdotcom = require('./icons/SiPortableappsdotcom.cjs'); +const SiPortainer = require('./icons/SiPortainer.cjs'); +const SiPortswigger = require('./icons/SiPortswigger.cjs'); +const SiPosit = require('./icons/SiPosit.cjs'); +const SiPostcss = require('./icons/SiPostcss.cjs'); +const SiPostgresql = require('./icons/SiPostgresql.cjs'); +const SiPosthog = require('./icons/SiPosthog.cjs'); +const SiPostiz = require('./icons/SiPostiz.cjs'); +const SiPostman = require('./icons/SiPostman.cjs'); +const SiPostmates = require('./icons/SiPostmates.cjs'); +const SiPowers = require('./icons/SiPowers.cjs'); +const SiPrdotco = require('./icons/SiPrdotco.cjs'); +const SiPreact = require('./icons/SiPreact.cjs'); +const SiPrecommit = require('./icons/SiPrecommit.cjs'); +const SiPrefect = require('./icons/SiPrefect.cjs'); +const SiPrek = require('./icons/SiPrek.cjs'); +const SiPremid = require('./icons/SiPremid.cjs'); +const SiPremierleague = require('./icons/SiPremierleague.cjs'); +const SiPrepbytes = require('./icons/SiPrepbytes.cjs'); +const SiPrestashop = require('./icons/SiPrestashop.cjs'); +const SiPresto = require('./icons/SiPresto.cjs'); +const SiPrettier = require('./icons/SiPrettier.cjs'); +const SiPretzel = require('./icons/SiPretzel.cjs'); +const SiPrevention = require('./icons/SiPrevention.cjs'); +const SiPrezi = require('./icons/SiPrezi.cjs'); +const SiPrimefaces = require('./icons/SiPrimefaces.cjs'); +const SiPrimeng = require('./icons/SiPrimeng.cjs'); +const SiPrimereact = require('./icons/SiPrimereact.cjs'); +const SiPrimevue = require('./icons/SiPrimevue.cjs'); +const SiPrintables = require('./icons/SiPrintables.cjs'); +const SiPrisma = require('./icons/SiPrisma.cjs'); +const SiPrismic = require('./icons/SiPrismic.cjs'); +const SiPrivatedivision = require('./icons/SiPrivatedivision.cjs'); +const SiPrivateinternetaccess = require('./icons/SiPrivateinternetaccess.cjs'); +const SiProbot = require('./icons/SiProbot.cjs'); +const SiProcessingfoundation = require('./icons/SiProcessingfoundation.cjs'); +const SiProcesson = require('./icons/SiProcesson.cjs'); +const SiProcesswire = require('./icons/SiProcesswire.cjs'); +const SiProducthunt = require('./icons/SiProducthunt.cjs'); +const SiProgate = require('./icons/SiProgate.cjs'); +const SiProgress = require('./icons/SiProgress.cjs'); +const SiPrometheus = require('./icons/SiPrometheus.cjs'); +const SiPronounsdotpage = require('./icons/SiPronounsdotpage.cjs'); +const SiProsieben = require('./icons/SiProsieben.cjs'); +const SiProteus = require('./icons/SiProteus.cjs'); +const SiProtocolsdotio = require('./icons/SiProtocolsdotio.cjs'); +const SiProtodotio = require('./icons/SiProtodotio.cjs'); +const SiProton = require('./icons/SiProton.cjs'); +const SiProtoncalendar = require('./icons/SiProtoncalendar.cjs'); +const SiProtondb = require('./icons/SiProtondb.cjs'); +const SiProtondrive = require('./icons/SiProtondrive.cjs'); +const SiProtonmail = require('./icons/SiProtonmail.cjs'); +const SiProtonvpn = require('./icons/SiProtonvpn.cjs'); +const SiProtools = require('./icons/SiProtools.cjs'); +const SiProtractor = require('./icons/SiProtractor.cjs'); +const SiProxmox = require('./icons/SiProxmox.cjs'); +const SiPterodactyl = require('./icons/SiPterodactyl.cjs'); +const SiPubg = require('./icons/SiPubg.cjs'); +const SiPublons = require('./icons/SiPublons.cjs'); +const SiPubmed = require('./icons/SiPubmed.cjs'); +const SiPug = require('./icons/SiPug.cjs'); +const SiPulumi = require('./icons/SiPulumi.cjs'); +const SiPuma = require('./icons/SiPuma.cjs'); +const SiPuppet = require('./icons/SiPuppet.cjs'); +const SiPuppeteer = require('./icons/SiPuppeteer.cjs'); +const SiPurescript = require('./icons/SiPurescript.cjs'); +const SiPurgecss = require('./icons/SiPurgecss.cjs'); +const SiPurism = require('./icons/SiPurism.cjs'); +const SiPushbullet = require('./icons/SiPushbullet.cjs'); +const SiPusher = require('./icons/SiPusher.cjs'); +const SiPwa = require('./icons/SiPwa.cjs'); +const SiPycharm = require('./icons/SiPycharm.cjs'); +const SiPycqa = require('./icons/SiPycqa.cjs'); +const SiPydantic = require('./icons/SiPydantic.cjs'); +const SiPyg = require('./icons/SiPyg.cjs'); +const SiPypi = require('./icons/SiPypi.cjs'); +const SiPypy = require('./icons/SiPypy.cjs'); +const SiPyscaffold = require('./icons/SiPyscaffold.cjs'); +const SiPysyft = require('./icons/SiPysyft.cjs'); +const SiPytest = require('./icons/SiPytest.cjs'); +const SiPython = require('./icons/SiPython.cjs'); +const SiPythonanywhere = require('./icons/SiPythonanywhere.cjs'); +const SiPytorch = require('./icons/SiPytorch.cjs'); +const SiPyup = require('./icons/SiPyup.cjs'); +const SiQantas = require('./icons/SiQantas.cjs'); +const SiQase = require('./icons/SiQase.cjs'); +const SiQatarairways = require('./icons/SiQatarairways.cjs'); +const SiQbittorrent = require('./icons/SiQbittorrent.cjs'); +const SiQemu = require('./icons/SiQemu.cjs'); +const SiQgis = require('./icons/SiQgis.cjs'); +const SiQi = require('./icons/SiQi.cjs'); +const SiQiita = require('./icons/SiQiita.cjs'); +const SiQiskit = require('./icons/SiQiskit.cjs'); +const SiQiwi = require('./icons/SiQiwi.cjs'); +const SiQlik = require('./icons/SiQlik.cjs'); +const SiQlty = require('./icons/SiQlty.cjs'); +const SiQmk = require('./icons/SiQmk.cjs'); +const SiQnap = require('./icons/SiQnap.cjs'); +const SiQodo = require('./icons/SiQodo.cjs'); +const SiQq = require('./icons/SiQq.cjs'); +const SiQt = require('./icons/SiQt.cjs'); +const SiQuad9 = require('./icons/SiQuad9.cjs'); +const SiQualcomm = require('./icons/SiQualcomm.cjs'); +const SiQualtrics = require('./icons/SiQualtrics.cjs'); +const SiQualys = require('./icons/SiQualys.cjs'); +const SiQuantcast = require('./icons/SiQuantcast.cjs'); +const SiQuantconnect = require('./icons/SiQuantconnect.cjs'); +const SiQuarkus = require('./icons/SiQuarkus.cjs'); +const SiQuarto = require('./icons/SiQuarto.cjs'); +const SiQuasar = require('./icons/SiQuasar.cjs'); +const SiQubesos = require('./icons/SiQubesos.cjs'); +const SiQuest = require('./icons/SiQuest.cjs'); +const SiQuickbooks = require('./icons/SiQuickbooks.cjs'); +const SiQuicklook = require('./icons/SiQuicklook.cjs'); +const SiQuicktime = require('./icons/SiQuicktime.cjs'); +const SiQuicktype = require('./icons/SiQuicktype.cjs'); +const SiQuizlet = require('./icons/SiQuizlet.cjs'); +const SiQuora = require('./icons/SiQuora.cjs'); +const SiQwant = require('./icons/SiQwant.cjs'); +const SiQwik = require('./icons/SiQwik.cjs'); +const SiQwiklabs = require('./icons/SiQwiklabs.cjs'); +const SiQzone = require('./icons/SiQzone.cjs'); +const SiR = require('./icons/SiR.cjs'); +const SiR3 = require('./icons/SiR3.cjs'); +const SiRabbitmq = require('./icons/SiRabbitmq.cjs'); +const SiRacket = require('./icons/SiRacket.cjs'); +const SiRadar = require('./icons/SiRadar.cjs'); +const SiRadarr = require('./icons/SiRadarr.cjs'); +const SiRadiofrance = require('./icons/SiRadiofrance.cjs'); +const SiRadixui = require('./icons/SiRadixui.cjs'); +const SiRadstudio = require('./icons/SiRadstudio.cjs'); +const SiRailway = require('./icons/SiRailway.cjs'); +const SiRainmeter = require('./icons/SiRainmeter.cjs'); +const SiRainyun = require('./icons/SiRainyun.cjs'); +const SiRakuten = require('./icons/SiRakuten.cjs'); +const SiRakutenkobo = require('./icons/SiRakutenkobo.cjs'); +const SiRam = require('./icons/SiRam.cjs'); +const SiRancher = require('./icons/SiRancher.cjs'); +const SiRapid = require('./icons/SiRapid.cjs'); +const SiRarible = require('./icons/SiRarible.cjs'); +const SiRasa = require('./icons/SiRasa.cjs'); +const SiRaspberrypi = require('./icons/SiRaspberrypi.cjs'); +const SiRatatui = require('./icons/SiRatatui.cjs'); +const SiRavelry = require('./icons/SiRavelry.cjs'); +const SiRay = require('./icons/SiRay.cjs'); +const SiRaycast = require('./icons/SiRaycast.cjs'); +const SiRaylib = require('./icons/SiRaylib.cjs'); +const SiRazer = require('./icons/SiRazer.cjs'); +const SiRazorpay = require('./icons/SiRazorpay.cjs'); +const SiRclone = require('./icons/SiRclone.cjs'); +const SiReact = require('./icons/SiReact.cjs'); +const SiReactbootstrap = require('./icons/SiReactbootstrap.cjs'); +const SiReacthookform = require('./icons/SiReacthookform.cjs'); +const SiReactiveresume = require('./icons/SiReactiveresume.cjs'); +const SiReactivex = require('./icons/SiReactivex.cjs'); +const SiReactos = require('./icons/SiReactos.cjs'); +const SiReactquery = require('./icons/SiReactquery.cjs'); +const SiReactrouter = require('./icons/SiReactrouter.cjs'); +const SiReacttable = require('./icons/SiReacttable.cjs'); +const SiReaddotcv = require('./icons/SiReaddotcv.cjs'); +const SiReadme = require('./icons/SiReadme.cjs'); +const SiReadthedocs = require('./icons/SiReadthedocs.cjs'); +const SiReason = require('./icons/SiReason.cjs'); +const SiReasonstudios = require('./icons/SiReasonstudios.cjs'); +const SiRecoil = require('./icons/SiRecoil.cjs'); +const SiRed = require('./icons/SiRed.cjs'); +const SiRedash = require('./icons/SiRedash.cjs'); +const SiRedbubble = require('./icons/SiRedbubble.cjs'); +const SiRedbull = require('./icons/SiRedbull.cjs'); +const SiRedcandlegames = require('./icons/SiRedcandlegames.cjs'); +const SiReddit = require('./icons/SiReddit.cjs'); +const SiRedhat = require('./icons/SiRedhat.cjs'); +const SiRedhatopenshift = require('./icons/SiRedhatopenshift.cjs'); +const SiRedis = require('./icons/SiRedis.cjs'); +const SiRedmine = require('./icons/SiRedmine.cjs'); +const SiRedox = require('./icons/SiRedox.cjs'); +const SiRedragon = require('./icons/SiRedragon.cjs'); +const SiRedsys = require('./icons/SiRedsys.cjs'); +const SiRedux = require('./icons/SiRedux.cjs'); +const SiReduxsaga = require('./icons/SiReduxsaga.cjs'); +const SiRedwoodjs = require('./icons/SiRedwoodjs.cjs'); +const SiReebok = require('./icons/SiReebok.cjs'); +const SiRefine = require('./icons/SiRefine.cjs'); +const SiRefinedgithub = require('./icons/SiRefinedgithub.cjs'); +const SiReflex = require('./icons/SiReflex.cjs'); +const SiRekaui = require('./icons/SiRekaui.cjs'); +const SiRelay = require('./icons/SiRelay.cjs'); +const SiRelianceindustrieslimited = require('./icons/SiRelianceindustrieslimited.cjs'); +const SiRemark = require('./icons/SiRemark.cjs'); +const SiRemedyentertainment = require('./icons/SiRemedyentertainment.cjs'); +const SiRemix = require('./icons/SiRemix.cjs'); +const SiRemovedotbg = require('./icons/SiRemovedotbg.cjs'); +const SiRenault = require('./icons/SiRenault.cjs'); +const SiRender = require('./icons/SiRender.cjs'); +const SiRenovate = require('./icons/SiRenovate.cjs'); +const SiRenpy = require('./icons/SiRenpy.cjs'); +const SiRenren = require('./icons/SiRenren.cjs'); +const SiReplicate = require('./icons/SiReplicate.cjs'); +const SiReplit = require('./icons/SiReplit.cjs'); +const SiRepublicofgamers = require('./icons/SiRepublicofgamers.cjs'); +const SiRescript = require('./icons/SiRescript.cjs'); +const SiRescuetime = require('./icons/SiRescuetime.cjs'); +const SiResearchgate = require('./icons/SiResearchgate.cjs'); +const SiResend = require('./icons/SiResend.cjs'); +const SiResharper = require('./icons/SiResharper.cjs'); +const SiResurrectionremixos = require('./icons/SiResurrectionremixos.cjs'); +const SiRetool = require('./icons/SiRetool.cjs'); +const SiRetroachievements = require('./icons/SiRetroachievements.cjs'); +const SiRetroarch = require('./icons/SiRetroarch.cjs'); +const SiRetropie = require('./icons/SiRetropie.cjs'); +const SiRevanced = require('./icons/SiRevanced.cjs'); +const SiRevealdotjs = require('./icons/SiRevealdotjs.cjs'); +const SiRevenuecat = require('./icons/SiRevenuecat.cjs'); +const SiReverbnation = require('./icons/SiReverbnation.cjs'); +const SiRevoltdotchat = require('./icons/SiRevoltdotchat.cjs'); +const SiRevolut = require('./icons/SiRevolut.cjs'); +const SiRewe = require('./icons/SiRewe.cjs'); +const SiRezgo = require('./icons/SiRezgo.cjs'); +const SiRhinoceros = require('./icons/SiRhinoceros.cjs'); +const SiRich = require('./icons/SiRich.cjs'); +const SiRider = require('./icons/SiRider.cjs'); +const SiRimacautomobili = require('./icons/SiRimacautomobili.cjs'); +const SiRime = require('./icons/SiRime.cjs'); +const SiRing = require('./icons/SiRing.cjs'); +const SiRiotgames = require('./icons/SiRiotgames.cjs'); +const SiRipple = require('./icons/SiRipple.cjs'); +const SiRiscv = require('./icons/SiRiscv.cjs'); +const SiRiseup = require('./icons/SiRiseup.cjs'); +const SiRitzcarlton = require('./icons/SiRitzcarlton.cjs'); +const SiRive = require('./icons/SiRive.cjs'); +const SiRoadmapdotsh = require('./icons/SiRoadmapdotsh.cjs'); +const SiRoamresearch = require('./icons/SiRoamresearch.cjs'); +const SiRobinhood = require('./icons/SiRobinhood.cjs'); +const SiRoblox = require('./icons/SiRoblox.cjs'); +const SiRobloxstudio = require('./icons/SiRobloxstudio.cjs'); +const SiRoboflow = require('./icons/SiRoboflow.cjs'); +const SiRobotframework = require('./icons/SiRobotframework.cjs'); +const SiRocket = require('./icons/SiRocket.cjs'); +const SiRocketdotchat = require('./icons/SiRocketdotchat.cjs'); +const SiRocksdb = require('./icons/SiRocksdb.cjs'); +const SiRockstargames = require('./icons/SiRockstargames.cjs'); +const SiRockwellautomation = require('./icons/SiRockwellautomation.cjs'); +const SiRockylinux = require('./icons/SiRockylinux.cjs'); +const SiRoku = require('./icons/SiRoku.cjs'); +const SiRoll20 = require('./icons/SiRoll20.cjs'); +const SiRollbar = require('./icons/SiRollbar.cjs'); +const SiRolldown = require('./icons/SiRolldown.cjs'); +const SiRollsroyce = require('./icons/SiRollsroyce.cjs'); +const SiRollupdotjs = require('./icons/SiRollupdotjs.cjs'); +const SiRook = require('./icons/SiRook.cjs'); +const SiRoon = require('./icons/SiRoon.cjs'); +const SiRoot = require('./icons/SiRoot.cjs'); +const SiRootme = require('./icons/SiRootme.cjs'); +const SiRoots = require('./icons/SiRoots.cjs'); +const SiRootsbedrock = require('./icons/SiRootsbedrock.cjs'); +const SiRootssage = require('./icons/SiRootssage.cjs'); +const SiRos = require('./icons/SiRos.cjs'); +const SiRossmann = require('./icons/SiRossmann.cjs'); +const SiRotaryinternational = require('./icons/SiRotaryinternational.cjs'); +const SiRottentomatoes = require('./icons/SiRottentomatoes.cjs'); +const SiRoundcube = require('./icons/SiRoundcube.cjs'); +const SiRsocket = require('./icons/SiRsocket.cjs'); +const SiRss = require('./icons/SiRss.cjs'); +const SiRstudioide = require('./icons/SiRstudioide.cjs'); +const SiRte = require('./icons/SiRte.cjs'); +const SiRtl = require('./icons/SiRtl.cjs'); +const SiRtlzwei = require('./icons/SiRtlzwei.cjs'); +const SiRtm = require('./icons/SiRtm.cjs'); +const SiRubocop = require('./icons/SiRubocop.cjs'); +const SiRuby = require('./icons/SiRuby.cjs'); +const SiRubygems = require('./icons/SiRubygems.cjs'); +const SiRubymine = require('./icons/SiRubymine.cjs'); +const SiRubyonrails = require('./icons/SiRubyonrails.cjs'); +const SiRubysinatra = require('./icons/SiRubysinatra.cjs'); +const SiRuff = require('./icons/SiRuff.cjs'); +const SiRumahweb = require('./icons/SiRumahweb.cjs'); +const SiRumble = require('./icons/SiRumble.cjs'); +const SiRundeck = require('./icons/SiRundeck.cjs'); +const SiRunkeeper = require('./icons/SiRunkeeper.cjs'); +const SiRunkit = require('./icons/SiRunkit.cjs'); +const SiRunrundotit = require('./icons/SiRunrundotit.cjs'); +const SiRust = require('./icons/SiRust.cjs'); +const SiRustdesk = require('./icons/SiRustdesk.cjs'); +const SiRxdb = require('./icons/SiRxdb.cjs'); +const SiRyanair = require('./icons/SiRyanair.cjs'); +const SiRye = require('./icons/SiRye.cjs'); +const SiS7airlines = require('./icons/SiS7airlines.cjs'); +const SiSabanci = require('./icons/SiSabanci.cjs'); +const SiSafari = require('./icons/SiSafari.cjs'); +const SiSage = require('./icons/SiSage.cjs'); +const SiSagemath = require('./icons/SiSagemath.cjs'); +const SiSahibinden = require('./icons/SiSahibinden.cjs'); +const SiSailfishos = require('./icons/SiSailfishos.cjs'); +const SiSailsdotjs = require('./icons/SiSailsdotjs.cjs'); +const SiSalla = require('./icons/SiSalla.cjs'); +const SiSaltproject = require('./icons/SiSaltproject.cjs'); +const SiSamsclub = require('./icons/SiSamsclub.cjs'); +const SiSamsung = require('./icons/SiSamsung.cjs'); +const SiSamsungpay = require('./icons/SiSamsungpay.cjs'); +const SiSanfranciscomunicipalrailway = require('./icons/SiSanfranciscomunicipalrailway.cjs'); +const SiSanic = require('./icons/SiSanic.cjs'); +const SiSanity = require('./icons/SiSanity.cjs'); +const SiSaopaulometro = require('./icons/SiSaopaulometro.cjs'); +const SiSap = require('./icons/SiSap.cjs'); +const SiSartorius = require('./icons/SiSartorius.cjs'); +const SiSass = require('./icons/SiSass.cjs'); +const SiSat1 = require('./icons/SiSat1.cjs'); +const SiSatellite = require('./icons/SiSatellite.cjs'); +const SiSaturn = require('./icons/SiSaturn.cjs'); +const SiSaucelabs = require('./icons/SiSaucelabs.cjs'); +const SiSaudia = require('./icons/SiSaudia.cjs'); +const SiScala = require('./icons/SiScala.cjs'); +const SiScalar = require('./icons/SiScalar.cjs'); +const SiScaleway = require('./icons/SiScaleway.cjs'); +const SiScan = require('./icons/SiScan.cjs'); +const SiScania = require('./icons/SiScania.cjs'); +const SiSchneiderelectric = require('./icons/SiSchneiderelectric.cjs'); +const SiScikitlearn = require('./icons/SiScikitlearn.cjs'); +const SiScilab = require('./icons/SiScilab.cjs'); +const SiScipy = require('./icons/SiScipy.cjs'); +const SiScopus = require('./icons/SiScopus.cjs'); +const SiScpfoundation = require('./icons/SiScpfoundation.cjs'); +const SiScrapbox = require('./icons/SiScrapbox.cjs'); +const SiScrapy = require('./icons/SiScrapy.cjs'); +const SiScratch = require('./icons/SiScratch.cjs'); +const SiScreencastify = require('./icons/SiScreencastify.cjs'); +const SiScrimba = require('./icons/SiScrimba.cjs'); +const SiScrollreveal = require('./icons/SiScrollreveal.cjs'); +const SiScrumalliance = require('./icons/SiScrumalliance.cjs'); +const SiScrutinizerci = require('./icons/SiScrutinizerci.cjs'); +const SiScylladb = require('./icons/SiScylladb.cjs'); +const SiSeafile = require('./icons/SiSeafile.cjs'); +const SiSeagate = require('./icons/SiSeagate.cjs'); +const SiSearxng = require('./icons/SiSearxng.cjs'); +const SiSeat = require('./icons/SiSeat.cjs'); +const SiSeatgeek = require('./icons/SiSeatgeek.cjs'); +const SiSecurityscorecard = require('./icons/SiSecurityscorecard.cjs'); +const SiSefaria = require('./icons/SiSefaria.cjs'); +const SiSega = require('./icons/SiSega.cjs'); +const SiSelenium = require('./icons/SiSelenium.cjs'); +const SiSellfy = require('./icons/SiSellfy.cjs'); +const SiSemanticrelease = require('./icons/SiSemanticrelease.cjs'); +const SiSemanticscholar = require('./icons/SiSemanticscholar.cjs'); +const SiSemanticui = require('./icons/SiSemanticui.cjs'); +const SiSemanticuireact = require('./icons/SiSemanticuireact.cjs'); +const SiSemanticweb = require('./icons/SiSemanticweb.cjs'); +const SiSemaphoreci = require('./icons/SiSemaphoreci.cjs'); +const SiSemrush = require('./icons/SiSemrush.cjs'); +const SiSemver = require('./icons/SiSemver.cjs'); +const SiSencha = require('./icons/SiSencha.cjs'); +const SiSennheiser = require('./icons/SiSennheiser.cjs'); +const SiSensu = require('./icons/SiSensu.cjs'); +const SiSentry = require('./icons/SiSentry.cjs'); +const SiSepa = require('./icons/SiSepa.cjs'); +const SiSequelize = require('./icons/SiSequelize.cjs'); +const SiServbay = require('./icons/SiServbay.cjs'); +const SiServerfault = require('./icons/SiServerfault.cjs'); +const SiServerless = require('./icons/SiServerless.cjs'); +const SiSession = require('./icons/SiSession.cjs'); +const SiSessionize = require('./icons/SiSessionize.cjs'); +const SiSetapp = require('./icons/SiSetapp.cjs'); +const SiSetuptools = require('./icons/SiSetuptools.cjs'); +const SiSfml = require('./icons/SiSfml.cjs'); +const SiShadcnui = require('./icons/SiShadcnui.cjs'); +const SiShadow = require('./icons/SiShadow.cjs'); +const SiShanghaimetro = require('./icons/SiShanghaimetro.cjs'); +const SiSharex = require('./icons/SiSharex.cjs'); +const SiSharp = require('./icons/SiSharp.cjs'); +const SiShazam = require('./icons/SiShazam.cjs'); +const SiShell = require('./icons/SiShell.cjs'); +const SiShelly = require('./icons/SiShelly.cjs'); +const SiShenzhenmetro = require('./icons/SiShenzhenmetro.cjs'); +const SiShieldsdotio = require('./icons/SiShieldsdotio.cjs'); +const SiShikimori = require('./icons/SiShikimori.cjs'); +const SiShopee = require('./icons/SiShopee.cjs'); +const SiShopify = require('./icons/SiShopify.cjs'); +const SiShopware = require('./icons/SiShopware.cjs'); +const SiShortcut = require('./icons/SiShortcut.cjs'); +const SiShowpad = require('./icons/SiShowpad.cjs'); +const SiShowtime = require('./icons/SiShowtime.cjs'); +const SiShowwcase = require('./icons/SiShowwcase.cjs'); +const SiSidekiq = require('./icons/SiSidekiq.cjs'); +const SiSidequest = require('./icons/SiSidequest.cjs'); +const SiSiemens = require('./icons/SiSiemens.cjs'); +const SiSifive = require('./icons/SiSifive.cjs'); +const SiSignal = require('./icons/SiSignal.cjs'); +const SiSilverairways = require('./icons/SiSilverairways.cjs'); +const SiSimilarweb = require('./icons/SiSimilarweb.cjs'); +const SiSimkl = require('./icons/SiSimkl.cjs'); +const SiSimpleanalytics = require('./icons/SiSimpleanalytics.cjs'); +const SiSimpleicons = require('./icons/SiSimpleicons.cjs'); +const SiSimplelocalize = require('./icons/SiSimplelocalize.cjs'); +const SiSimplelogin = require('./icons/SiSimplelogin.cjs'); +const SiSimplenote = require('./icons/SiSimplenote.cjs'); +const SiSimplex = require('./icons/SiSimplex.cjs'); +const SiSinaweibo = require('./icons/SiSinaweibo.cjs'); +const SiSingaporeairlines = require('./icons/SiSingaporeairlines.cjs'); +const SiSinglestore = require('./icons/SiSinglestore.cjs'); +const SiSitecore = require('./icons/SiSitecore.cjs'); +const SiSitepoint = require('./icons/SiSitepoint.cjs'); +const SiSiyuan = require('./icons/SiSiyuan.cjs'); +const SiSkaffold = require('./icons/SiSkaffold.cjs'); +const SiSkeleton = require('./icons/SiSkeleton.cjs'); +const SiSketch = require('./icons/SiSketch.cjs'); +const SiSketchfab = require('./icons/SiSketchfab.cjs'); +const SiSketchup = require('./icons/SiSketchup.cjs'); +const SiSkillshare = require('./icons/SiSkillshare.cjs'); +const SiSkoda = require('./icons/SiSkoda.cjs'); +const SiSky = require('./icons/SiSky.cjs'); +const SiSkypack = require('./icons/SiSkypack.cjs'); +const SiSlackware = require('./icons/SiSlackware.cjs'); +const SiSlashdot = require('./icons/SiSlashdot.cjs'); +const SiSlickpic = require('./icons/SiSlickpic.cjs'); +const SiSlides = require('./icons/SiSlides.cjs'); +const SiSlideshare = require('./icons/SiSlideshare.cjs'); +const SiSlint = require('./icons/SiSlint.cjs'); +const SiSmart = require('./icons/SiSmart.cjs'); +const SiSmartthings = require('./icons/SiSmartthings.cjs'); +const SiSmashingmagazine = require('./icons/SiSmashingmagazine.cjs'); +const SiSmoothcomp = require('./icons/SiSmoothcomp.cjs'); +const SiSmrt = require('./icons/SiSmrt.cjs'); +const SiSmugmug = require('./icons/SiSmugmug.cjs'); +const SiSnapchat = require('./icons/SiSnapchat.cjs'); +const SiSnapcraft = require('./icons/SiSnapcraft.cjs'); +const SiSnapdragon = require('./icons/SiSnapdragon.cjs'); +const SiSncf = require('./icons/SiSncf.cjs'); +const SiSnort = require('./icons/SiSnort.cjs'); +const SiSnowflake = require('./icons/SiSnowflake.cjs'); +const SiSnowpack = require('./icons/SiSnowpack.cjs'); +const SiSnyk = require('./icons/SiSnyk.cjs'); +const SiSocialblade = require('./icons/SiSocialblade.cjs'); +const SiSociety6 = require('./icons/SiSociety6.cjs'); +const SiSocket = require('./icons/SiSocket.cjs'); +const SiSocketdotio = require('./icons/SiSocketdotio.cjs'); +const SiSoftcatala = require('./icons/SiSoftcatala.cjs'); +const SiSoftpedia = require('./icons/SiSoftpedia.cjs'); +const SiSogou = require('./icons/SiSogou.cjs'); +const SiSolana = require('./icons/SiSolana.cjs'); +const SiSolid = require('./icons/SiSolid.cjs'); +const SiSolidity = require('./icons/SiSolidity.cjs'); +const SiSololearn = require('./icons/SiSololearn.cjs'); +const SiSolus = require('./icons/SiSolus.cjs'); +const SiSonar = require('./icons/SiSonar.cjs'); +const SiSonarqubecloud = require('./icons/SiSonarqubecloud.cjs'); +const SiSonarqubeforide = require('./icons/SiSonarqubeforide.cjs'); +const SiSonarqubeserver = require('./icons/SiSonarqubeserver.cjs'); +const SiSonarr = require('./icons/SiSonarr.cjs'); +const SiSonatype = require('./icons/SiSonatype.cjs'); +const SiSongkick = require('./icons/SiSongkick.cjs'); +const SiSongoda = require('./icons/SiSongoda.cjs'); +const SiSonicwall = require('./icons/SiSonicwall.cjs'); +const SiSonos = require('./icons/SiSonos.cjs'); +const SiSony = require('./icons/SiSony.cjs'); +const SiSoriana = require('./icons/SiSoriana.cjs'); +const SiSoundcharts = require('./icons/SiSoundcharts.cjs'); +const SiSoundcloud = require('./icons/SiSoundcloud.cjs'); +const SiSourceengine = require('./icons/SiSourceengine.cjs'); +const SiSourceforge = require('./icons/SiSourceforge.cjs'); +const SiSourcehut = require('./icons/SiSourcehut.cjs'); +const SiSourcetree = require('./icons/SiSourcetree.cjs'); +const SiSouthwestairlines = require('./icons/SiSouthwestairlines.cjs'); +const SiSpacemacs = require('./icons/SiSpacemacs.cjs'); +const SiSpaceship = require('./icons/SiSpaceship.cjs'); +const SiSpacex = require('./icons/SiSpacex.cjs'); +const SiSpacy = require('./icons/SiSpacy.cjs'); +const SiSparkar = require('./icons/SiSparkar.cjs'); +const SiSparkasse = require('./icons/SiSparkasse.cjs'); +const SiSparkfun = require('./icons/SiSparkfun.cjs'); +const SiSparkpost = require('./icons/SiSparkpost.cjs'); +const SiSpdx = require('./icons/SiSpdx.cjs'); +const SiSpeakerdeck = require('./icons/SiSpeakerdeck.cjs'); +const SiSpectrum = require('./icons/SiSpectrum.cjs'); +const SiSpeedtest = require('./icons/SiSpeedtest.cjs'); +const SiSpeedypage = require('./icons/SiSpeedypage.cjs'); +const SiSphinx = require('./icons/SiSphinx.cjs'); +const SiSpigotmc = require('./icons/SiSpigotmc.cjs'); +const SiSpine = require('./icons/SiSpine.cjs'); +const SiSpinnaker = require('./icons/SiSpinnaker.cjs'); +const SiSplunk = require('./icons/SiSplunk.cjs'); +const SiSpoj = require('./icons/SiSpoj.cjs'); +const SiSpond = require('./icons/SiSpond.cjs'); +const SiSpotify = require('./icons/SiSpotify.cjs'); +const SiSpotlight = require('./icons/SiSpotlight.cjs'); +const SiSpreadshirt = require('./icons/SiSpreadshirt.cjs'); +const SiSpreaker = require('./icons/SiSpreaker.cjs'); +const SiSpring = require('./icons/SiSpring.cjs'); +const SiSpringCreators = require('./icons/SiSpringCreators.cjs'); +const SiSpringboot = require('./icons/SiSpringboot.cjs'); +const SiSpringsecurity = require('./icons/SiSpringsecurity.cjs'); +const SiSpyderide = require('./icons/SiSpyderide.cjs'); +const SiSqlalchemy = require('./icons/SiSqlalchemy.cjs'); +const SiSqlite = require('./icons/SiSqlite.cjs'); +const SiSquare = require('./icons/SiSquare.cjs'); +const SiSquareenix = require('./icons/SiSquareenix.cjs'); +const SiSquarespace = require('./icons/SiSquarespace.cjs'); +const SiSrgssr = require('./icons/SiSrgssr.cjs'); +const SiSsrn = require('./icons/SiSsrn.cjs'); +const SiSst = require('./icons/SiSst.cjs'); +const SiStackbit = require('./icons/SiStackbit.cjs'); +const SiStackblitz = require('./icons/SiStackblitz.cjs'); +const SiStackedit = require('./icons/SiStackedit.cjs'); +const SiStackexchange = require('./icons/SiStackexchange.cjs'); +const SiStackhawk = require('./icons/SiStackhawk.cjs'); +const SiStackoverflow = require('./icons/SiStackoverflow.cjs'); +const SiStackshare = require('./icons/SiStackshare.cjs'); +const SiStadia = require('./icons/SiStadia.cjs'); +const SiStaffbase = require('./icons/SiStaffbase.cjs'); +const SiStagetimer = require('./icons/SiStagetimer.cjs'); +const SiStandardjs = require('./icons/SiStandardjs.cjs'); +const SiStandardresume = require('./icons/SiStandardresume.cjs'); +const SiStarbucks = require('./icons/SiStarbucks.cjs'); +const SiStardock = require('./icons/SiStardock.cjs'); +const SiStarlingbank = require('./icons/SiStarlingbank.cjs'); +const SiStarship = require('./icons/SiStarship.cjs'); +const SiStartdotgg = require('./icons/SiStartdotgg.cjs'); +const SiStartpage = require('./icons/SiStartpage.cjs'); +const SiStartrek = require('./icons/SiStartrek.cjs'); +const SiStarz = require('./icons/SiStarz.cjs'); +const SiStatamic = require('./icons/SiStatamic.cjs'); +const SiStatista = require('./icons/SiStatista.cjs'); +const SiStatuspage = require('./icons/SiStatuspage.cjs'); +const SiStatuspal = require('./icons/SiStatuspal.cjs'); +const SiSteam = require('./icons/SiSteam.cjs'); +const SiSteamdb = require('./icons/SiSteamdb.cjs'); +const SiSteamdeck = require('./icons/SiSteamdeck.cjs'); +const SiSteamworks = require('./icons/SiSteamworks.cjs'); +const SiSteelseries = require('./icons/SiSteelseries.cjs'); +const SiSteem = require('./icons/SiSteem.cjs'); +const SiSteemit = require('./icons/SiSteemit.cjs'); +const SiSteinberg = require('./icons/SiSteinberg.cjs'); +const SiStellar = require('./icons/SiStellar.cjs'); +const SiStencil = require('./icons/SiStencil.cjs'); +const SiStencyl = require('./icons/SiStencyl.cjs'); +const SiStimulus = require('./icons/SiStimulus.cjs'); +const SiStmicroelectronics = require('./icons/SiStmicroelectronics.cjs'); +const SiStockx = require('./icons/SiStockx.cjs'); +const SiStopstalk = require('./icons/SiStopstalk.cjs'); +const SiStoryblok = require('./icons/SiStoryblok.cjs'); +const SiStorybook = require('./icons/SiStorybook.cjs'); +const SiStrapi = require('./icons/SiStrapi.cjs'); +const SiStrava = require('./icons/SiStrava.cjs'); +const SiStreamlabs = require('./icons/SiStreamlabs.cjs'); +const SiStreamlit = require('./icons/SiStreamlit.cjs'); +const SiStreamrunners = require('./icons/SiStreamrunners.cjs'); +const SiStremio = require('./icons/SiStremio.cjs'); +const SiStripe = require('./icons/SiStripe.cjs'); +const SiStrongswan = require('./icons/SiStrongswan.cjs'); +const SiStryker = require('./icons/SiStryker.cjs'); +const SiStubhub = require('./icons/SiStubhub.cjs'); +const SiStudio3t = require('./icons/SiStudio3t.cjs'); +const SiStyledcomponents = require('./icons/SiStyledcomponents.cjs'); +const SiStylelint = require('./icons/SiStylelint.cjs'); +const SiStyleshare = require('./icons/SiStyleshare.cjs'); +const SiStylus = require('./icons/SiStylus.cjs'); +const SiSubaru = require('./icons/SiSubaru.cjs'); +const SiSublimetext = require('./icons/SiSublimetext.cjs'); +const SiSubstack = require('./icons/SiSubstack.cjs'); +const SiSubtitleedit = require('./icons/SiSubtitleedit.cjs'); +const SiSubversion = require('./icons/SiSubversion.cjs'); +const SiSuckless = require('./icons/SiSuckless.cjs'); +const SiSui = require('./icons/SiSui.cjs'); +const SiSuitest = require('./icons/SiSuitest.cjs'); +const SiSumologic = require('./icons/SiSumologic.cjs'); +const SiSuno = require('./icons/SiSuno.cjs'); +const SiSunrise = require('./icons/SiSunrise.cjs'); +const SiSupabase = require('./icons/SiSupabase.cjs'); +const SiSupercrease = require('./icons/SiSupercrease.cjs'); +const SiSupermicro = require('./icons/SiSupermicro.cjs'); +const SiSuperuser = require('./icons/SiSuperuser.cjs'); +const SiSurfshark = require('./icons/SiSurfshark.cjs'); +const SiSurrealdb = require('./icons/SiSurrealdb.cjs'); +const SiSurveymonkey = require('./icons/SiSurveymonkey.cjs'); +const SiSuse = require('./icons/SiSuse.cjs'); +const SiSuzuki = require('./icons/SiSuzuki.cjs'); +const SiSvelte = require('./icons/SiSvelte.cjs'); +const SiSvg = require('./icons/SiSvg.cjs'); +const SiSvgdotjs = require('./icons/SiSvgdotjs.cjs'); +const SiSvgo = require('./icons/SiSvgo.cjs'); +const SiSvgtrace = require('./icons/SiSvgtrace.cjs'); +const SiSwagger = require('./icons/SiSwagger.cjs'); +const SiSwarm = require('./icons/SiSwarm.cjs'); +const SiSway = require('./icons/SiSway.cjs'); +const SiSwc = require('./icons/SiSwc.cjs'); +const SiSwift = require('./icons/SiSwift.cjs'); +const SiSwiggy = require('./icons/SiSwiggy.cjs'); +const SiSwiper = require('./icons/SiSwiper.cjs'); +const SiSwisscows = require('./icons/SiSwisscows.cjs'); +const SiSwr = require('./icons/SiSwr.cjs'); +const SiSymantec = require('./icons/SiSymantec.cjs'); +const SiSymbolab = require('./icons/SiSymbolab.cjs'); +const SiSymfony = require('./icons/SiSymfony.cjs'); +const SiSymphony = require('./icons/SiSymphony.cjs'); +const SiSympy = require('./icons/SiSympy.cjs'); +const SiSyncthing = require('./icons/SiSyncthing.cjs'); +const SiSynology = require('./icons/SiSynology.cjs'); +const SiSystem76 = require('./icons/SiSystem76.cjs'); +const SiTabelog = require('./icons/SiTabelog.cjs'); +const SiTablecheck = require('./icons/SiTablecheck.cjs'); +const SiTacobell = require('./icons/SiTacobell.cjs'); +const SiTado = require('./icons/SiTado.cjs'); +const SiTaichigraphics = require('./icons/SiTaichigraphics.cjs'); +const SiTaichilang = require('./icons/SiTaichilang.cjs'); +const SiTails = require('./icons/SiTails.cjs'); +const SiTailscale = require('./icons/SiTailscale.cjs'); +const SiTailwindcss = require('./icons/SiTailwindcss.cjs'); +const SiTaipy = require('./icons/SiTaipy.cjs'); +const SiTaketwointeractivesoftware = require('./icons/SiTaketwointeractivesoftware.cjs'); +const SiTalend = require('./icons/SiTalend.cjs'); +const SiTalenthouse = require('./icons/SiTalenthouse.cjs'); +const SiTalos = require('./icons/SiTalos.cjs'); +const SiTamiya = require('./icons/SiTamiya.cjs'); +const SiTampermonkey = require('./icons/SiTampermonkey.cjs'); +const SiTanstack = require('./icons/SiTanstack.cjs'); +const SiTaobao = require('./icons/SiTaobao.cjs'); +const SiTapas = require('./icons/SiTapas.cjs'); +const SiTarget = require('./icons/SiTarget.cjs'); +const SiTarom = require('./icons/SiTarom.cjs'); +const SiTask = require('./icons/SiTask.cjs'); +const SiTasmota = require('./icons/SiTasmota.cjs'); +const SiTata = require('./icons/SiTata.cjs'); +const SiTauri = require('./icons/SiTauri.cjs'); +const SiTaxbuzz = require('./icons/SiTaxbuzz.cjs'); +const SiTcs = require('./icons/SiTcs.cjs'); +const SiTeal = require('./icons/SiTeal.cjs'); +const SiTeamcity = require('./icons/SiTeamcity.cjs'); +const SiTeamspeak = require('./icons/SiTeamspeak.cjs'); +const SiTeamviewer = require('./icons/SiTeamviewer.cjs'); +const SiTechcrunch = require('./icons/SiTechcrunch.cjs'); +const SiTed = require('./icons/SiTed.cjs'); +const SiTeepublic = require('./icons/SiTeepublic.cjs'); +const SiTeespring = require('./icons/SiTeespring.cjs'); +const SiTekton = require('./icons/SiTekton.cjs'); +const SiTele5 = require('./icons/SiTele5.cjs'); +const SiTelefonica = require('./icons/SiTelefonica.cjs'); +const SiTelegram = require('./icons/SiTelegram.cjs'); +const SiTelegraph = require('./icons/SiTelegraph.cjs'); +const SiTelenor = require('./icons/SiTelenor.cjs'); +const SiTelequebec = require('./icons/SiTelequebec.cjs'); +const SiTemporal = require('./icons/SiTemporal.cjs'); +const SiTensorflow = require('./icons/SiTensorflow.cjs'); +const SiTeradata = require('./icons/SiTeradata.cjs'); +const SiTeratail = require('./icons/SiTeratail.cjs'); +const SiTermius = require('./icons/SiTermius.cjs'); +const SiTerraform = require('./icons/SiTerraform.cjs'); +const SiTesco = require('./icons/SiTesco.cjs'); +const SiTesla = require('./icons/SiTesla.cjs'); +const SiTestcafe = require('./icons/SiTestcafe.cjs'); +const SiTestin = require('./icons/SiTestin.cjs'); +const SiTestinglibrary = require('./icons/SiTestinglibrary.cjs'); +const SiTestrail = require('./icons/SiTestrail.cjs'); +const SiTether = require('./icons/SiTether.cjs'); +const SiTextpattern = require('./icons/SiTextpattern.cjs'); +const SiTextual = require('./icons/SiTextual.cjs'); +const SiTga = require('./icons/SiTga.cjs'); +const SiThangs = require('./icons/SiThangs.cjs'); +const SiThanos = require('./icons/SiThanos.cjs'); +const SiThealgorithms = require('./icons/SiThealgorithms.cjs'); +const SiTheboringcompany = require('./icons/SiTheboringcompany.cjs'); +const SiTheconversation = require('./icons/SiTheconversation.cjs'); +const SiThefinals = require('./icons/SiThefinals.cjs'); +const SiTheguardian = require('./icons/SiTheguardian.cjs'); +const SiTheirishtimes = require('./icons/SiTheirishtimes.cjs'); +const SiThemighty = require('./icons/SiThemighty.cjs'); +const SiThemodelsresource = require('./icons/SiThemodelsresource.cjs'); +const SiThemoviedatabase = require('./icons/SiThemoviedatabase.cjs'); +const SiThenorthface = require('./icons/SiThenorthface.cjs'); +const SiTheodinproject = require('./icons/SiTheodinproject.cjs'); +const SiTheplanetarysociety = require('./icons/SiTheplanetarysociety.cjs'); +const SiTheregister = require('./icons/SiTheregister.cjs'); +const SiThesoundsresource = require('./icons/SiThesoundsresource.cjs'); +const SiThespritersresource = require('./icons/SiThespritersresource.cjs'); +const SiThestorygraph = require('./icons/SiThestorygraph.cjs'); +const SiThewashingtonpost = require('./icons/SiThewashingtonpost.cjs'); +const SiTheweatherchannel = require('./icons/SiTheweatherchannel.cjs'); +const SiThingiverse = require('./icons/SiThingiverse.cjs'); +const SiThings = require('./icons/SiThings.cjs'); +const SiThinkpad = require('./icons/SiThinkpad.cjs'); +const SiThirdweb = require('./icons/SiThirdweb.cjs'); +const SiThreadless = require('./icons/SiThreadless.cjs'); +const SiThreads = require('./icons/SiThreads.cjs'); +const SiThreedotjs = require('./icons/SiThreedotjs.cjs'); +const SiThreema = require('./icons/SiThreema.cjs'); +const SiThumbtack = require('./icons/SiThumbtack.cjs'); +const SiThunderbird = require('./icons/SiThunderbird.cjs'); +const SiThunderstore = require('./icons/SiThunderstore.cjs'); +const SiThurgauerkantonalbank = require('./icons/SiThurgauerkantonalbank.cjs'); +const SiThymeleaf = require('./icons/SiThymeleaf.cjs'); +const SiTicketmaster = require('./icons/SiTicketmaster.cjs'); +const SiTicktick = require('./icons/SiTicktick.cjs'); +const SiTidal = require('./icons/SiTidal.cjs'); +const SiTiddlywiki = require('./icons/SiTiddlywiki.cjs'); +const SiTide = require('./icons/SiTide.cjs'); +const SiTidyverse = require('./icons/SiTidyverse.cjs'); +const SiTietoevry = require('./icons/SiTietoevry.cjs'); +const SiTiktok = require('./icons/SiTiktok.cjs'); +const SiTildapublishing = require('./icons/SiTildapublishing.cjs'); +const SiTile = require('./icons/SiTile.cjs'); +const SiTimescale = require('./icons/SiTimescale.cjs'); +const SiTina = require('./icons/SiTina.cjs'); +const SiTinder = require('./icons/SiTinder.cjs'); +const SiTindie = require('./icons/SiTindie.cjs'); +const SiTinkercad = require('./icons/SiTinkercad.cjs'); +const SiTinygrad = require('./icons/SiTinygrad.cjs'); +const SiTinyletter = require('./icons/SiTinyletter.cjs'); +const SiTistory = require('./icons/SiTistory.cjs'); +const SiTldraw = require('./icons/SiTldraw.cjs'); +const SiTmux = require('./icons/SiTmux.cjs'); +const SiTodoist = require('./icons/SiTodoist.cjs'); +const SiToggl = require('./icons/SiToggl.cjs'); +const SiToggltrack = require('./icons/SiToggltrack.cjs'); +const SiTokio = require('./icons/SiTokio.cjs'); +const SiTokyometro = require('./icons/SiTokyometro.cjs'); +const SiToll = require('./icons/SiToll.cjs'); +const SiToml = require('./icons/SiToml.cjs'); +const SiTomorrowland = require('./icons/SiTomorrowland.cjs'); +const SiTomtom = require('./icons/SiTomtom.cjs'); +const SiTon = require('./icons/SiTon.cjs'); +const SiTopcoder = require('./icons/SiTopcoder.cjs'); +const SiTopdotgg = require('./icons/SiTopdotgg.cjs'); +const SiToptal = require('./icons/SiToptal.cjs'); +const SiTorbrowser = require('./icons/SiTorbrowser.cjs'); +const SiTorizon = require('./icons/SiTorizon.cjs'); +const SiTorproject = require('./icons/SiTorproject.cjs'); +const SiToshiba = require('./icons/SiToshiba.cjs'); +const SiTotvs = require('./icons/SiTotvs.cjs'); +const SiTourbox = require('./icons/SiTourbox.cjs'); +const SiTower = require('./icons/SiTower.cjs'); +const SiToyota = require('./icons/SiToyota.cjs'); +const SiTplink = require('./icons/SiTplink.cjs'); +const SiTqdm = require('./icons/SiTqdm.cjs'); +const SiTraccar = require('./icons/SiTraccar.cjs'); +const SiTradingview = require('./icons/SiTradingview.cjs'); +const SiTraefikmesh = require('./icons/SiTraefikmesh.cjs'); +const SiTraefikproxy = require('./icons/SiTraefikproxy.cjs'); +const SiTrailforks = require('./icons/SiTrailforks.cjs'); +const SiTrainerroad = require('./icons/SiTrainerroad.cjs'); +const SiTrakt = require('./icons/SiTrakt.cjs'); +const SiTransifex = require('./icons/SiTransifex.cjs'); +const SiTransmission = require('./icons/SiTransmission.cjs'); +const SiTransportforireland = require('./icons/SiTransportforireland.cjs'); +const SiTransportforlondon = require('./icons/SiTransportforlondon.cjs'); +const SiTravisci = require('./icons/SiTravisci.cjs'); +const SiTreehouse = require('./icons/SiTreehouse.cjs'); +const SiTrello = require('./icons/SiTrello.cjs'); +const SiTrendmicro = require('./icons/SiTrendmicro.cjs'); +const SiTresorit = require('./icons/SiTresorit.cjs'); +const SiTreyarch = require('./icons/SiTreyarch.cjs'); +const SiTricentis = require('./icons/SiTricentis.cjs'); +const SiTrilium = require('./icons/SiTrilium.cjs'); +const SiTriller = require('./icons/SiTriller.cjs'); +const SiTrillertv = require('./icons/SiTrillertv.cjs'); +const SiTrimble = require('./icons/SiTrimble.cjs'); +const SiTrino = require('./icons/SiTrino.cjs'); +const SiTripadvisor = require('./icons/SiTripadvisor.cjs'); +const SiTripdotcom = require('./icons/SiTripdotcom.cjs'); +const SiTrivago = require('./icons/SiTrivago.cjs'); +const SiTrivy = require('./icons/SiTrivy.cjs'); +const SiTrove = require('./icons/SiTrove.cjs'); +const SiTrpc = require('./icons/SiTrpc.cjs'); +const SiTruenas = require('./icons/SiTruenas.cjs'); +const SiTrueup = require('./icons/SiTrueup.cjs'); +const SiTrulia = require('./icons/SiTrulia.cjs'); +const SiTrustedshops = require('./icons/SiTrustedshops.cjs'); +const SiTrustpilot = require('./icons/SiTrustpilot.cjs'); +const SiTryhackme = require('./icons/SiTryhackme.cjs'); +const SiTryitonline = require('./icons/SiTryitonline.cjs'); +const SiTsnode = require('./icons/SiTsnode.cjs'); +const SiTubi = require('./icons/SiTubi.cjs'); +const SiTui = require('./icons/SiTui.cjs'); +const SiTumblr = require('./icons/SiTumblr.cjs'); +const SiTurbo = require('./icons/SiTurbo.cjs'); +const SiTurborepo = require('./icons/SiTurborepo.cjs'); +const SiTurbosquid = require('./icons/SiTurbosquid.cjs'); +const SiTurkishairlines = require('./icons/SiTurkishairlines.cjs'); +const SiTurso = require('./icons/SiTurso.cjs'); +const SiTuta = require('./icons/SiTuta.cjs'); +const SiTuxedocomputers = require('./icons/SiTuxedocomputers.cjs'); +const SiTv4play = require('./icons/SiTv4play.cjs'); +const SiTvtime = require('./icons/SiTvtime.cjs'); +const SiTwenty = require('./icons/SiTwenty.cjs'); +const SiTwinkly = require('./icons/SiTwinkly.cjs'); +const SiTwinmotion = require('./icons/SiTwinmotion.cjs'); +const SiTwitch = require('./icons/SiTwitch.cjs'); +const SiTypeform = require('./icons/SiTypeform.cjs'); +const SiTypeorm = require('./icons/SiTypeorm.cjs'); +const SiTyper = require('./icons/SiTyper.cjs'); +const SiTypescript = require('./icons/SiTypescript.cjs'); +const SiTypo3 = require('./icons/SiTypo3.cjs'); +const SiTypst = require('./icons/SiTypst.cjs'); +const SiUber = require('./icons/SiUber.cjs'); +const SiUbereats = require('./icons/SiUbereats.cjs'); +const SiUbiquiti = require('./icons/SiUbiquiti.cjs'); +const SiUbisoft = require('./icons/SiUbisoft.cjs'); +const SiUblockorigin = require('./icons/SiUblockorigin.cjs'); +const SiUbuntu = require('./icons/SiUbuntu.cjs'); +const SiUbuntumate = require('./icons/SiUbuntumate.cjs'); +const SiUdacity = require('./icons/SiUdacity.cjs'); +const SiUdemy = require('./icons/SiUdemy.cjs'); +const SiUdotsdotnews = require('./icons/SiUdotsdotnews.cjs'); +const SiUfc = require('./icons/SiUfc.cjs'); +const SiUikit = require('./icons/SiUikit.cjs'); +const SiUipath = require('./icons/SiUipath.cjs'); +const SiUkca = require('./icons/SiUkca.cjs'); +const SiUltralytics = require('./icons/SiUltralytics.cjs'); +const SiUlule = require('./icons/SiUlule.cjs'); +const SiUmami = require('./icons/SiUmami.cjs'); +const SiUmbraco = require('./icons/SiUmbraco.cjs'); +const SiUmbrel = require('./icons/SiUmbrel.cjs'); +const SiUml = require('./icons/SiUml.cjs'); +const SiUnacademy = require('./icons/SiUnacademy.cjs'); +const SiUnderarmour = require('./icons/SiUnderarmour.cjs'); +const SiUnderscoredotjs = require('./icons/SiUnderscoredotjs.cjs'); +const SiUndertale = require('./icons/SiUndertale.cjs'); +const SiUnicode = require('./icons/SiUnicode.cjs'); +const SiUnilever = require('./icons/SiUnilever.cjs'); +const SiUniqlo = require('./icons/SiUniqlo.cjs'); +const SiUniqloJa = require('./icons/SiUniqloJa.cjs'); +const SiUnitedairlines = require('./icons/SiUnitedairlines.cjs'); +const SiUnitednations = require('./icons/SiUnitednations.cjs'); +const SiUnity = require('./icons/SiUnity.cjs'); +const SiUnjs = require('./icons/SiUnjs.cjs'); +const SiUnlicense = require('./icons/SiUnlicense.cjs'); +const SiUnocss = require('./icons/SiUnocss.cjs'); +const SiUnpkg = require('./icons/SiUnpkg.cjs'); +const SiUnraid = require('./icons/SiUnraid.cjs'); +const SiUnrealengine = require('./icons/SiUnrealengine.cjs'); +const SiUnsplash = require('./icons/SiUnsplash.cjs'); +const SiUnstop = require('./icons/SiUnstop.cjs'); +const SiUntappd = require('./icons/SiUntappd.cjs'); +const SiUpcloud = require('./icons/SiUpcloud.cjs'); +const SiUphold = require('./icons/SiUphold.cjs'); +const SiUplabs = require('./icons/SiUplabs.cjs'); +const SiUpptime = require('./icons/SiUpptime.cjs'); +const SiUps = require('./icons/SiUps.cjs'); +const SiUpstash = require('./icons/SiUpstash.cjs'); +const SiUptimekuma = require('./icons/SiUptimekuma.cjs'); +const SiUpwork = require('./icons/SiUpwork.cjs'); +const SiUservoice = require('./icons/SiUservoice.cjs'); +const SiUsps = require('./icons/SiUsps.cjs'); +const SiUtorrent = require('./icons/SiUtorrent.cjs'); +const SiUv = require('./icons/SiUv.cjs'); +const SiV = require('./icons/SiV.cjs'); +const SiV0 = require('./icons/SiV0.cjs'); +const SiV2ex = require('./icons/SiV2ex.cjs'); +const SiV8 = require('./icons/SiV8.cjs'); +const SiVaadin = require('./icons/SiVaadin.cjs'); +const SiVagrant = require('./icons/SiVagrant.cjs'); +const SiVala = require('./icons/SiVala.cjs'); +const SiValorant = require('./icons/SiValorant.cjs'); +const SiValve = require('./icons/SiValve.cjs'); +const SiVanillaextract = require('./icons/SiVanillaextract.cjs'); +const SiVapor = require('./icons/SiVapor.cjs'); +const SiVault = require('./icons/SiVault.cjs'); +const SiVaultwarden = require('./icons/SiVaultwarden.cjs'); +const SiVauxhall = require('./icons/SiVauxhall.cjs'); +const SiVbulletin = require('./icons/SiVbulletin.cjs'); +const SiVectary = require('./icons/SiVectary.cjs'); +const SiVectorlogozone = require('./icons/SiVectorlogozone.cjs'); +const SiVectorworks = require('./icons/SiVectorworks.cjs'); +const SiVeeam = require('./icons/SiVeeam.cjs'); +const SiVeed = require('./icons/SiVeed.cjs'); +const SiVeepee = require('./icons/SiVeepee.cjs'); +const SiVega = require('./icons/SiVega.cjs'); +const SiVegas = require('./icons/SiVegas.cjs'); +const SiVelocity = require('./icons/SiVelocity.cjs'); +const SiVelog = require('./icons/SiVelog.cjs'); +const SiVencord = require('./icons/SiVencord.cjs'); +const SiVenmo = require('./icons/SiVenmo.cjs'); +const SiVercel = require('./icons/SiVercel.cjs'); +const SiVerdaccio = require('./icons/SiVerdaccio.cjs'); +const SiVeritas = require('./icons/SiVeritas.cjs'); +const SiVerizon = require('./icons/SiVerizon.cjs'); +const SiVespa = require('./icons/SiVespa.cjs'); +const SiVestel = require('./icons/SiVestel.cjs'); +const SiVexxhost = require('./icons/SiVexxhost.cjs'); +const SiVfairs = require('./icons/SiVfairs.cjs'); +const SiViadeo = require('./icons/SiViadeo.cjs'); +const SiViaplay = require('./icons/SiViaplay.cjs'); +const SiViber = require('./icons/SiViber.cjs'); +const SiViblo = require('./icons/SiViblo.cjs'); +const SiVictoriametrics = require('./icons/SiVictoriametrics.cjs'); +const SiVictronenergy = require('./icons/SiVictronenergy.cjs'); +const SiVikunja = require('./icons/SiVikunja.cjs'); +const SiVim = require('./icons/SiVim.cjs'); +const SiVimeo = require('./icons/SiVimeo.cjs'); +const SiVimeolivestream = require('./icons/SiVimeolivestream.cjs'); +const SiVinted = require('./icons/SiVinted.cjs'); +const SiVirgin = require('./icons/SiVirgin.cjs'); +const SiVirginatlantic = require('./icons/SiVirginatlantic.cjs'); +const SiVirginmedia = require('./icons/SiVirginmedia.cjs'); +const SiVirtualbox = require('./icons/SiVirtualbox.cjs'); +const SiVirustotal = require('./icons/SiVirustotal.cjs'); +const SiVisa = require('./icons/SiVisa.cjs'); +const SiVisualparadigm = require('./icons/SiVisualparadigm.cjs'); +const SiVisx = require('./icons/SiVisx.cjs'); +const SiVite = require('./icons/SiVite.cjs'); +const SiVitepress = require('./icons/SiVitepress.cjs'); +const SiVitess = require('./icons/SiVitess.cjs'); +const SiVitest = require('./icons/SiVitest.cjs'); +const SiVivaldi = require('./icons/SiVivaldi.cjs'); +const SiVivawallet = require('./icons/SiVivawallet.cjs'); +const SiVivino = require('./icons/SiVivino.cjs'); +const SiVivint = require('./icons/SiVivint.cjs'); +const SiVivo = require('./icons/SiVivo.cjs'); +const SiVk = require('./icons/SiVk.cjs'); +const SiVlcmediaplayer = require('./icons/SiVlcmediaplayer.cjs'); +const SiVmware = require('./icons/SiVmware.cjs'); +const SiVodafone = require('./icons/SiVodafone.cjs'); +const SiVoelkner = require('./icons/SiVoelkner.cjs'); +const SiVoidlinux = require('./icons/SiVoidlinux.cjs'); +const SiVoipdotms = require('./icons/SiVoipdotms.cjs'); +const SiVolkswagen = require('./icons/SiVolkswagen.cjs'); +const SiVolvo = require('./icons/SiVolvo.cjs'); +const SiVonage = require('./icons/SiVonage.cjs'); +const SiVorondesign = require('./icons/SiVorondesign.cjs'); +const SiVowpalwabbit = require('./icons/SiVowpalwabbit.cjs'); +const SiVox = require('./icons/SiVox.cjs'); +const SiVrchat = require('./icons/SiVrchat.cjs'); +const SiVsco = require('./icons/SiVsco.cjs'); +const SiVscodium = require('./icons/SiVscodium.cjs'); +const SiVtex = require('./icons/SiVtex.cjs'); +const SiVuedotjs = require('./icons/SiVuedotjs.cjs'); +const SiVuetify = require('./icons/SiVuetify.cjs'); +const SiVueuse = require('./icons/SiVueuse.cjs'); +const SiVulkan = require('./icons/SiVulkan.cjs'); +const SiVultr = require('./icons/SiVultr.cjs'); +const SiVyond = require('./icons/SiVyond.cjs'); +const SiW3schools = require('./icons/SiW3schools.cjs'); +const SiWacom = require('./icons/SiWacom.cjs'); +const SiWagmi = require('./icons/SiWagmi.cjs'); +const SiWagtail = require('./icons/SiWagtail.cjs'); +const SiWails = require('./icons/SiWails.cjs'); +const SiWakatime = require('./icons/SiWakatime.cjs'); +const SiWalkman = require('./icons/SiWalkman.cjs'); +const SiWallabag = require('./icons/SiWallabag.cjs'); +const SiWalletconnect = require('./icons/SiWalletconnect.cjs'); +const SiWantedly = require('./icons/SiWantedly.cjs'); +const SiWappalyzer = require('./icons/SiWappalyzer.cjs'); +const SiWarp = require('./icons/SiWarp.cjs'); +const SiWasabi = require('./icons/SiWasabi.cjs'); +const SiWasmcloud = require('./icons/SiWasmcloud.cjs'); +const SiWasmer = require('./icons/SiWasmer.cjs'); +const SiWatchtower = require('./icons/SiWatchtower.cjs'); +const SiWattpad = require('./icons/SiWattpad.cjs'); +const SiWayland = require('./icons/SiWayland.cjs'); +const SiWaze = require('./icons/SiWaze.cjs'); +const SiWazirx = require('./icons/SiWazirx.cjs'); +const SiWearos = require('./icons/SiWearos.cjs'); +const SiWeasyl = require('./icons/SiWeasyl.cjs'); +const SiWeb3dotjs = require('./icons/SiWeb3dotjs.cjs'); +const SiWebassembly = require('./icons/SiWebassembly.cjs'); +const SiWebauthn = require('./icons/SiWebauthn.cjs'); +const SiWebawesome = require('./icons/SiWebawesome.cjs'); +const SiWebcomponentsdotorg = require('./icons/SiWebcomponentsdotorg.cjs'); +const SiWebdotde = require('./icons/SiWebdotde.cjs'); +const SiWebdriverio = require('./icons/SiWebdriverio.cjs'); +const SiWebex = require('./icons/SiWebex.cjs'); +const SiWebflow = require('./icons/SiWebflow.cjs'); +const SiWebgl = require('./icons/SiWebgl.cjs'); +const SiWebgpu = require('./icons/SiWebgpu.cjs'); +const SiWeblate = require('./icons/SiWeblate.cjs'); +const SiWebmin = require('./icons/SiWebmin.cjs'); +const SiWebmoney = require('./icons/SiWebmoney.cjs'); +const SiWebpack = require('./icons/SiWebpack.cjs'); +const SiWebrtc = require('./icons/SiWebrtc.cjs'); +const SiWebstorm = require('./icons/SiWebstorm.cjs'); +const SiWebtoon = require('./icons/SiWebtoon.cjs'); +const SiWebtrees = require('./icons/SiWebtrees.cjs'); +const SiWechat = require('./icons/SiWechat.cjs'); +const SiWegame = require('./icons/SiWegame.cjs'); +const SiWeightsandbiases = require('./icons/SiWeightsandbiases.cjs'); +const SiWelcometothejungle = require('./icons/SiWelcometothejungle.cjs'); +const SiWellfound = require('./icons/SiWellfound.cjs'); +const SiWellsfargo = require('./icons/SiWellsfargo.cjs'); +const SiWemo = require('./icons/SiWemo.cjs'); +const SiWeread = require('./icons/SiWeread.cjs'); +const SiWesternunion = require('./icons/SiWesternunion.cjs'); +const SiWetransfer = require('./icons/SiWetransfer.cjs'); +const SiWezterm = require('./icons/SiWezterm.cjs'); +const SiWgpu = require('./icons/SiWgpu.cjs'); +const SiWhat3words = require('./icons/SiWhat3words.cjs'); +const SiWhatsapp = require('./icons/SiWhatsapp.cjs'); +const SiWheniwork = require('./icons/SiWheniwork.cjs'); +const SiWikibooks = require('./icons/SiWikibooks.cjs'); +const SiWikidata = require('./icons/SiWikidata.cjs'); +const SiWikidotgg = require('./icons/SiWikidotgg.cjs'); +const SiWikidotjs = require('./icons/SiWikidotjs.cjs'); +const SiWikimediacommons = require('./icons/SiWikimediacommons.cjs'); +const SiWikimediafoundation = require('./icons/SiWikimediafoundation.cjs'); +const SiWikipedia = require('./icons/SiWikipedia.cjs'); +const SiWikiquote = require('./icons/SiWikiquote.cjs'); +const SiWikisource = require('./icons/SiWikisource.cjs'); +const SiWikiversity = require('./icons/SiWikiversity.cjs'); +const SiWikivoyage = require('./icons/SiWikivoyage.cjs'); +const SiWinamp = require('./icons/SiWinamp.cjs'); +const SiWindsurf = require('./icons/SiWindsurf.cjs'); +const SiWine = require('./icons/SiWine.cjs'); +const SiWipro = require('./icons/SiWipro.cjs'); +const SiWire = require('./icons/SiWire.cjs'); +const SiWireguard = require('./icons/SiWireguard.cjs'); +const SiWireshark = require('./icons/SiWireshark.cjs'); +const SiWise = require('./icons/SiWise.cjs'); +const SiWish = require('./icons/SiWish.cjs'); +const SiWistia = require('./icons/SiWistia.cjs'); +const SiWix = require('./icons/SiWix.cjs'); +const SiWizzair = require('./icons/SiWizzair.cjs'); +const SiWolfram = require('./icons/SiWolfram.cjs'); +const SiWolframlanguage = require('./icons/SiWolframlanguage.cjs'); +const SiWolframmathematica = require('./icons/SiWolframmathematica.cjs'); +const SiWondershare = require('./icons/SiWondershare.cjs'); +const SiWondersharefilmora = require('./icons/SiWondersharefilmora.cjs'); +const SiWoo = require('./icons/SiWoo.cjs'); +const SiWoocommerce = require('./icons/SiWoocommerce.cjs'); +const SiWordpress = require('./icons/SiWordpress.cjs'); +const SiWorkplace = require('./icons/SiWorkplace.cjs'); +const SiWorldhealthorganization = require('./icons/SiWorldhealthorganization.cjs'); +const SiWpengine = require('./icons/SiWpengine.cjs'); +const SiWpexplorer = require('./icons/SiWpexplorer.cjs'); +const SiWprocket = require('./icons/SiWprocket.cjs'); +const SiWritedotas = require('./icons/SiWritedotas.cjs'); +const SiWwe = require('./icons/SiWwe.cjs'); +const SiWwise = require('./icons/SiWwise.cjs'); +const SiWxt = require('./icons/SiWxt.cjs'); +const SiWykop = require('./icons/SiWykop.cjs'); +const SiWyze = require('./icons/SiWyze.cjs'); +const SiX = require('./icons/SiX.cjs'); +const SiXampp = require('./icons/SiXampp.cjs'); +const SiXcode = require('./icons/SiXcode.cjs'); +const SiXdadevelopers = require('./icons/SiXdadevelopers.cjs'); +const SiXdotorg = require('./icons/SiXdotorg.cjs'); +const SiXendit = require('./icons/SiXendit.cjs'); +const SiXero = require('./icons/SiXero.cjs'); +const SiXfce = require('./icons/SiXfce.cjs'); +const SiXiaohongshu = require('./icons/SiXiaohongshu.cjs'); +const SiXiaomi = require('./icons/SiXiaomi.cjs'); +const SiXing = require('./icons/SiXing.cjs'); +const SiXml = require('./icons/SiXml.cjs'); +const SiXmpp = require('./icons/SiXmpp.cjs'); +const SiXo = require('./icons/SiXo.cjs'); +const SiXrp = require('./icons/SiXrp.cjs'); +const SiXsplit = require('./icons/SiXsplit.cjs'); +const SiXstate = require('./icons/SiXstate.cjs'); +const SiXubuntu = require('./icons/SiXubuntu.cjs'); +const SiXyflow = require('./icons/SiXyflow.cjs'); +const SiYaak = require('./icons/SiYaak.cjs'); +const SiYabai = require('./icons/SiYabai.cjs'); +const SiYale = require('./icons/SiYale.cjs'); +const SiYamahacorporation = require('./icons/SiYamahacorporation.cjs'); +const SiYamahamotorcorporation = require('./icons/SiYamahamotorcorporation.cjs'); +const SiYaml = require('./icons/SiYaml.cjs'); +const SiYandexcloud = require('./icons/SiYandexcloud.cjs'); +const SiYarn = require('./icons/SiYarn.cjs'); +const SiYcombinator = require('./icons/SiYcombinator.cjs'); +const SiYelp = require('./icons/SiYelp.cjs'); +const SiYeti = require('./icons/SiYeti.cjs'); +const SiYii = require('./icons/SiYii.cjs'); +const SiYoast = require('./icons/SiYoast.cjs'); +const SiYolo = require('./icons/SiYolo.cjs'); +const SiYouhodler = require('./icons/SiYouhodler.cjs'); +const SiYoutube = require('./icons/SiYoutube.cjs'); +const SiYoutubegaming = require('./icons/SiYoutubegaming.cjs'); +const SiYoutubekids = require('./icons/SiYoutubekids.cjs'); +const SiYoutubemusic = require('./icons/SiYoutubemusic.cjs'); +const SiYoutubeshorts = require('./icons/SiYoutubeshorts.cjs'); +const SiYoutubestudio = require('./icons/SiYoutubestudio.cjs'); +const SiYoutubetv = require('./icons/SiYoutubetv.cjs'); +const SiYr = require('./icons/SiYr.cjs'); +const SiYubico = require('./icons/SiYubico.cjs'); +const SiYunohost = require('./icons/SiYunohost.cjs'); +const SiZabka = require('./icons/SiZabka.cjs'); +const SiZaim = require('./icons/SiZaim.cjs'); +const SiZalando = require('./icons/SiZalando.cjs'); +const SiZalo = require('./icons/SiZalo.cjs'); +const SiZap = require('./icons/SiZap.cjs'); +const SiZapier = require('./icons/SiZapier.cjs'); +const SiZara = require('./icons/SiZara.cjs'); +const SiZazzle = require('./icons/SiZazzle.cjs'); +const SiZcash = require('./icons/SiZcash.cjs'); +const SiZcool = require('./icons/SiZcool.cjs'); +const SiZdf = require('./icons/SiZdf.cjs'); +const SiZebpay = require('./icons/SiZebpay.cjs'); +const SiZebratechnologies = require('./icons/SiZebratechnologies.cjs'); +const SiZedindustries = require('./icons/SiZedindustries.cjs'); +const SiZelle = require('./icons/SiZelle.cjs'); +const SiZenbrowser = require('./icons/SiZenbrowser.cjs'); +const SiZend = require('./icons/SiZend.cjs'); +const SiZendesk = require('./icons/SiZendesk.cjs'); +const SiZenn = require('./icons/SiZenn.cjs'); +const SiZenodo = require('./icons/SiZenodo.cjs'); +const SiZensar = require('./icons/SiZensar.cjs'); +const SiZerodha = require('./icons/SiZerodha.cjs'); +const SiZerotier = require('./icons/SiZerotier.cjs'); +const SiZettlr = require('./icons/SiZettlr.cjs'); +const SiZhihu = require('./icons/SiZhihu.cjs'); +const SiZig = require('./icons/SiZig.cjs'); +const SiZigbee = require('./icons/SiZigbee.cjs'); +const SiZigbee2mqtt = require('./icons/SiZigbee2mqtt.cjs'); +const SiZiggo = require('./icons/SiZiggo.cjs'); +const SiZilch = require('./icons/SiZilch.cjs'); +const SiZillow = require('./icons/SiZillow.cjs'); +const SiZincsearch = require('./icons/SiZincsearch.cjs'); +const SiZingat = require('./icons/SiZingat.cjs'); +const SiZod = require('./icons/SiZod.cjs'); +const SiZoho = require('./icons/SiZoho.cjs'); +const SiZoiper = require('./icons/SiZoiper.cjs'); +const SiZola = require('./icons/SiZola.cjs'); +const SiZomato = require('./icons/SiZomato.cjs'); +const SiZoom = require('./icons/SiZoom.cjs'); +const SiZorin = require('./icons/SiZorin.cjs'); +const SiZotero = require('./icons/SiZotero.cjs'); +const SiZsh = require('./icons/SiZsh.cjs'); +const SiZulip = require('./icons/SiZulip.cjs'); +const SiZyte = require('./icons/SiZyte.cjs'); + + + +exports.Si1001tracklists = Si1001tracklists.default; +exports.Si1001tracklistsHex = Si1001tracklists.defaultColor; +exports.Si1and1 = Si1and1.default; +exports.Si1and1Hex = Si1and1.defaultColor; +exports.Si1dot1dot1dot1 = Si1dot1dot1dot1.default; +exports.Si1dot1dot1dot1Hex = Si1dot1dot1dot1.defaultColor; +exports.Si1panel = Si1panel.default; +exports.Si1panelHex = Si1panel.defaultColor; +exports.Si1password = Si1password.default; +exports.Si1passwordHex = Si1password.defaultColor; +exports.Si2fas = Si2fas.default; +exports.Si2fasHex = Si2fas.defaultColor; +exports.Si2k = Si2k.default; +exports.Si2kHex = Si2k.defaultColor; +exports.Si30secondsofcode = Si30secondsofcode.default; +exports.Si30secondsofcodeHex = Si30secondsofcode.defaultColor; +exports.Si365datascience = Si365datascience.default; +exports.Si365datascienceHex = Si365datascience.defaultColor; +exports.Si3m = Si3m.default; +exports.Si3mHex = Si3m.defaultColor; +exports.Si42 = Si42.default; +exports.Si42Hex = Si42.defaultColor; +exports.Si4chan = Si4chan.default; +exports.Si4chanHex = Si4chan.defaultColor; +exports.Si4d = Si4d.default; +exports.Si4dHex = Si4d.defaultColor; +exports.Si500px = Si500px.default; +exports.Si500pxHex = Si500px.defaultColor; +exports.Si7zip = Si7zip.default; +exports.Si7zipHex = Si7zip.defaultColor; +exports.Si99designs = Si99designs.default; +exports.Si99designsHex = Si99designs.defaultColor; +exports.Si9gag = Si9gag.default; +exports.Si9gagHex = Si9gag.defaultColor; +exports.SiAbb = SiAbb.default; +exports.SiAbbHex = SiAbb.defaultColor; +exports.SiAbbott = SiAbbott.default; +exports.SiAbbottHex = SiAbbott.defaultColor; +exports.SiAbbvie = SiAbbvie.default; +exports.SiAbbvieHex = SiAbbvie.defaultColor; +exports.SiAbdownloadmanager = SiAbdownloadmanager.default; +exports.SiAbdownloadmanagerHex = SiAbdownloadmanager.defaultColor; +exports.SiAboutdotme = SiAboutdotme.default; +exports.SiAboutdotmeHex = SiAboutdotme.defaultColor; +exports.SiAbstract = SiAbstract.default; +exports.SiAbstractHex = SiAbstract.defaultColor; +exports.SiAbusedotch = SiAbusedotch.default; +exports.SiAbusedotchHex = SiAbusedotch.defaultColor; +exports.SiAcademia = SiAcademia.default; +exports.SiAcademiaHex = SiAcademia.defaultColor; +exports.SiAccenture = SiAccenture.default; +exports.SiAccentureHex = SiAccenture.defaultColor; +exports.SiAccusoft = SiAccusoft.default; +exports.SiAccusoftHex = SiAccusoft.defaultColor; +exports.SiAccuweather = SiAccuweather.default; +exports.SiAccuweatherHex = SiAccuweather.defaultColor; +exports.SiAcer = SiAcer.default; +exports.SiAcerHex = SiAcer.defaultColor; +exports.SiAcm = SiAcm.default; +exports.SiAcmHex = SiAcm.defaultColor; +exports.SiAcode = SiAcode.default; +exports.SiAcodeHex = SiAcode.defaultColor; +exports.SiActigraph = SiActigraph.default; +exports.SiActigraphHex = SiActigraph.defaultColor; +exports.SiActiveloop = SiActiveloop.default; +exports.SiActiveloopHex = SiActiveloop.defaultColor; +exports.SiActivision = SiActivision.default; +exports.SiActivisionHex = SiActivision.defaultColor; +exports.SiActivitypub = SiActivitypub.default; +exports.SiActivitypubHex = SiActivitypub.defaultColor; +exports.SiActix = SiActix.default; +exports.SiActixHex = SiActix.defaultColor; +exports.SiActualbudget = SiActualbudget.default; +exports.SiActualbudgetHex = SiActualbudget.defaultColor; +exports.SiAcura = SiAcura.default; +exports.SiAcuraHex = SiAcura.defaultColor; +exports.SiAda = SiAda.default; +exports.SiAdaHex = SiAda.defaultColor; +exports.SiAdafruit = SiAdafruit.default; +exports.SiAdafruitHex = SiAdafruit.defaultColor; +exports.SiAdaway = SiAdaway.default; +exports.SiAdawayHex = SiAdaway.defaultColor; +exports.SiAdblock = SiAdblock.default; +exports.SiAdblockHex = SiAdblock.defaultColor; +exports.SiAdblockplus = SiAdblockplus.default; +exports.SiAdblockplusHex = SiAdblockplus.defaultColor; +exports.SiAddydotio = SiAddydotio.default; +exports.SiAddydotioHex = SiAddydotio.defaultColor; +exports.SiAdguard = SiAdguard.default; +exports.SiAdguardHex = SiAdguard.defaultColor; +exports.SiAdidas = SiAdidas.default; +exports.SiAdidasHex = SiAdidas.defaultColor; +exports.SiAdminer = SiAdminer.default; +exports.SiAdminerHex = SiAdminer.defaultColor; +exports.SiAdonisjs = SiAdonisjs.default; +exports.SiAdonisjsHex = SiAdonisjs.defaultColor; +exports.SiAdp = SiAdp.default; +exports.SiAdpHex = SiAdp.defaultColor; +exports.SiAdroll = SiAdroll.default; +exports.SiAdrollHex = SiAdroll.defaultColor; +exports.SiAdventofcode = SiAdventofcode.default; +exports.SiAdventofcodeHex = SiAdventofcode.defaultColor; +exports.SiAdyen = SiAdyen.default; +exports.SiAdyenHex = SiAdyen.defaultColor; +exports.SiAegisauthenticator = SiAegisauthenticator.default; +exports.SiAegisauthenticatorHex = SiAegisauthenticator.defaultColor; +exports.SiAeroflot = SiAeroflot.default; +exports.SiAeroflotHex = SiAeroflot.defaultColor; +exports.SiAeromexico = SiAeromexico.default; +exports.SiAeromexicoHex = SiAeromexico.defaultColor; +exports.SiAfdian = SiAfdian.default; +exports.SiAfdianHex = SiAfdian.defaultColor; +exports.SiAffine = SiAffine.default; +exports.SiAffineHex = SiAffine.defaultColor; +exports.SiAframe = SiAframe.default; +exports.SiAframeHex = SiAframe.defaultColor; +exports.SiAfterpay = SiAfterpay.default; +exports.SiAfterpayHex = SiAfterpay.defaultColor; +exports.SiAftership = SiAftership.default; +exports.SiAftershipHex = SiAftership.defaultColor; +exports.SiAgora = SiAgora.default; +exports.SiAgoraHex = SiAgora.defaultColor; +exports.SiAib = SiAib.default; +exports.SiAibHex = SiAib.defaultColor; +exports.SiAidungeon = SiAidungeon.default; +exports.SiAidungeonHex = SiAidungeon.defaultColor; +exports.SiAiohttp = SiAiohttp.default; +exports.SiAiohttpHex = SiAiohttp.defaultColor; +exports.SiAiqfome = SiAiqfome.default; +exports.SiAiqfomeHex = SiAiqfome.defaultColor; +exports.SiAirasia = SiAirasia.default; +exports.SiAirasiaHex = SiAirasia.defaultColor; +exports.SiAirbnb = SiAirbnb.default; +exports.SiAirbnbHex = SiAirbnb.defaultColor; +exports.SiAirbrake = SiAirbrake.default; +exports.SiAirbrakeHex = SiAirbrake.defaultColor; +exports.SiAirbus = SiAirbus.default; +exports.SiAirbusHex = SiAirbus.defaultColor; +exports.SiAirbyte = SiAirbyte.default; +exports.SiAirbyteHex = SiAirbyte.defaultColor; +exports.SiAircall = SiAircall.default; +exports.SiAircallHex = SiAircall.defaultColor; +exports.SiAircanada = SiAircanada.default; +exports.SiAircanadaHex = SiAircanada.defaultColor; +exports.SiAirchina = SiAirchina.default; +exports.SiAirchinaHex = SiAirchina.defaultColor; +exports.SiAirfrance = SiAirfrance.default; +exports.SiAirfranceHex = SiAirfrance.defaultColor; +exports.SiAirindia = SiAirindia.default; +exports.SiAirindiaHex = SiAirindia.defaultColor; +exports.SiAirplayaudio = SiAirplayaudio.default; +exports.SiAirplayaudioHex = SiAirplayaudio.defaultColor; +exports.SiAirplayvideo = SiAirplayvideo.default; +exports.SiAirplayvideoHex = SiAirplayvideo.defaultColor; +exports.SiAirserbia = SiAirserbia.default; +exports.SiAirserbiaHex = SiAirserbia.defaultColor; +exports.SiAirtable = SiAirtable.default; +exports.SiAirtableHex = SiAirtable.defaultColor; +exports.SiAirtel = SiAirtel.default; +exports.SiAirtelHex = SiAirtel.defaultColor; +exports.SiAirtransat = SiAirtransat.default; +exports.SiAirtransatHex = SiAirtransat.defaultColor; +exports.SiAjv = SiAjv.default; +exports.SiAjvHex = SiAjv.defaultColor; +exports.SiAkamai = SiAkamai.default; +exports.SiAkamaiHex = SiAkamai.defaultColor; +exports.SiAkasaair = SiAkasaair.default; +exports.SiAkasaairHex = SiAkasaair.defaultColor; +exports.SiAkaunting = SiAkaunting.default; +exports.SiAkauntingHex = SiAkaunting.defaultColor; +exports.SiAkiflow = SiAkiflow.default; +exports.SiAkiflowHex = SiAkiflow.defaultColor; +exports.SiAlacritty = SiAlacritty.default; +exports.SiAlacrittyHex = SiAlacritty.defaultColor; +exports.SiAlamy = SiAlamy.default; +exports.SiAlamyHex = SiAlamy.defaultColor; +exports.SiAlbertheijn = SiAlbertheijn.default; +exports.SiAlbertheijnHex = SiAlbertheijn.defaultColor; +exports.SiAlby = SiAlby.default; +exports.SiAlbyHex = SiAlby.defaultColor; +exports.SiAlchemy = SiAlchemy.default; +exports.SiAlchemyHex = SiAlchemy.defaultColor; +exports.SiAldinord = SiAldinord.default; +exports.SiAldinordHex = SiAldinord.defaultColor; +exports.SiAldisud = SiAldisud.default; +exports.SiAldisudHex = SiAldisud.defaultColor; +exports.SiAlfred = SiAlfred.default; +exports.SiAlfredHex = SiAlfred.defaultColor; +exports.SiAlgolia = SiAlgolia.default; +exports.SiAlgoliaHex = SiAlgolia.defaultColor; +exports.SiAlgorand = SiAlgorand.default; +exports.SiAlgorandHex = SiAlgorand.defaultColor; +exports.SiAlibabacloud = SiAlibabacloud.default; +exports.SiAlibabacloudHex = SiAlibabacloud.defaultColor; +exports.SiAlibabadotcom = SiAlibabadotcom.default; +exports.SiAlibabadotcomHex = SiAlibabadotcom.defaultColor; +exports.SiAlienware = SiAlienware.default; +exports.SiAlienwareHex = SiAlienware.defaultColor; +exports.SiAliexpress = SiAliexpress.default; +exports.SiAliexpressHex = SiAliexpress.defaultColor; +exports.SiAlipay = SiAlipay.default; +exports.SiAlipayHex = SiAlipay.defaultColor; +exports.SiAlist = SiAlist.default; +exports.SiAlistHex = SiAlist.defaultColor; +exports.SiAllegro = SiAllegro.default; +exports.SiAllegroHex = SiAllegro.defaultColor; +exports.SiAlliedmodders = SiAlliedmodders.default; +exports.SiAlliedmoddersHex = SiAlliedmodders.defaultColor; +exports.SiAlltrails = SiAlltrails.default; +exports.SiAlltrailsHex = SiAlltrails.defaultColor; +exports.SiAlmalinux = SiAlmalinux.default; +exports.SiAlmalinuxHex = SiAlmalinux.defaultColor; +exports.SiAlpinedotjs = SiAlpinedotjs.default; +exports.SiAlpinedotjsHex = SiAlpinedotjs.defaultColor; +exports.SiAlpinelinux = SiAlpinelinux.default; +exports.SiAlpinelinuxHex = SiAlpinelinux.defaultColor; +exports.SiAlternativeto = SiAlternativeto.default; +exports.SiAlternativetoHex = SiAlternativeto.defaultColor; +exports.SiAlwaysdata = SiAlwaysdata.default; +exports.SiAlwaysdataHex = SiAlwaysdata.defaultColor; +exports.SiAmd = SiAmd.default; +exports.SiAmdHex = SiAmd.defaultColor; +exports.SiAmeba = SiAmeba.default; +exports.SiAmebaHex = SiAmeba.defaultColor; +exports.SiAmericanairlines = SiAmericanairlines.default; +exports.SiAmericanairlinesHex = SiAmericanairlines.defaultColor; +exports.SiAmericanexpress = SiAmericanexpress.default; +exports.SiAmericanexpressHex = SiAmericanexpress.defaultColor; +exports.SiAmg = SiAmg.default; +exports.SiAmgHex = SiAmg.defaultColor; +exports.SiAmp = SiAmp.default; +exports.SiAmpHex = SiAmp.defaultColor; +exports.SiAmul = SiAmul.default; +exports.SiAmulHex = SiAmul.defaultColor; +exports.SiAna = SiAna.default; +exports.SiAnaHex = SiAna.defaultColor; +exports.SiAnaconda = SiAnaconda.default; +exports.SiAnacondaHex = SiAnaconda.defaultColor; +exports.SiAnalogue = SiAnalogue.default; +exports.SiAnalogueHex = SiAnalogue.defaultColor; +exports.SiAndela = SiAndela.default; +exports.SiAndelaHex = SiAndela.defaultColor; +exports.SiAndroid = SiAndroid.default; +exports.SiAndroidHex = SiAndroid.defaultColor; +exports.SiAndroidauto = SiAndroidauto.default; +exports.SiAndroidautoHex = SiAndroidauto.defaultColor; +exports.SiAndroidstudio = SiAndroidstudio.default; +exports.SiAndroidstudioHex = SiAndroidstudio.defaultColor; +exports.SiAngular = SiAngular.default; +exports.SiAngularHex = SiAngular.defaultColor; +exports.SiAnichart = SiAnichart.default; +exports.SiAnichartHex = SiAnichart.defaultColor; +exports.SiAnilist = SiAnilist.default; +exports.SiAnilistHex = SiAnilist.defaultColor; +exports.SiAnimalplanet = SiAnimalplanet.default; +exports.SiAnimalplanetHex = SiAnimalplanet.defaultColor; +exports.SiAnimedotjs = SiAnimedotjs.default; +exports.SiAnimedotjsHex = SiAnimedotjs.defaultColor; +exports.SiAnkermake = SiAnkermake.default; +exports.SiAnkermakeHex = SiAnkermake.defaultColor; +exports.SiAnki = SiAnki.default; +exports.SiAnkiHex = SiAnki.defaultColor; +exports.SiAnsible = SiAnsible.default; +exports.SiAnsibleHex = SiAnsible.defaultColor; +exports.SiAnswer = SiAnswer.default; +exports.SiAnswerHex = SiAnswer.defaultColor; +exports.SiAnsys = SiAnsys.default; +exports.SiAnsysHex = SiAnsys.defaultColor; +exports.SiAnta = SiAnta.default; +exports.SiAntaHex = SiAnta.defaultColor; +exports.SiAntdesign = SiAntdesign.default; +exports.SiAntdesignHex = SiAntdesign.defaultColor; +exports.SiAntena3 = SiAntena3.default; +exports.SiAntena3Hex = SiAntena3.defaultColor; +exports.SiAntennapod = SiAntennapod.default; +exports.SiAntennapodHex = SiAntennapod.defaultColor; +exports.SiAnthropic = SiAnthropic.default; +exports.SiAnthropicHex = SiAnthropic.defaultColor; +exports.SiAntv = SiAntv.default; +exports.SiAntvHex = SiAntv.defaultColor; +exports.SiAnycubic = SiAnycubic.default; +exports.SiAnycubicHex = SiAnycubic.defaultColor; +exports.SiAnydesk = SiAnydesk.default; +exports.SiAnydeskHex = SiAnydesk.defaultColor; +exports.SiAnytype = SiAnytype.default; +exports.SiAnytypeHex = SiAnytype.defaultColor; +exports.SiApache = SiApache.default; +exports.SiApacheHex = SiApache.defaultColor; +exports.SiApacheairflow = SiApacheairflow.default; +exports.SiApacheairflowHex = SiApacheairflow.defaultColor; +exports.SiApacheant = SiApacheant.default; +exports.SiApacheantHex = SiApacheant.defaultColor; +exports.SiApacheavro = SiApacheavro.default; +exports.SiApacheavroHex = SiApacheavro.defaultColor; +exports.SiApachecassandra = SiApachecassandra.default; +exports.SiApachecassandraHex = SiApachecassandra.defaultColor; +exports.SiApachecloudstack = SiApachecloudstack.default; +exports.SiApachecloudstackHex = SiApachecloudstack.defaultColor; +exports.SiApachecordova = SiApachecordova.default; +exports.SiApachecordovaHex = SiApachecordova.defaultColor; +exports.SiApachecouchdb = SiApachecouchdb.default; +exports.SiApachecouchdbHex = SiApachecouchdb.defaultColor; +exports.SiApachedolphinscheduler = SiApachedolphinscheduler.default; +exports.SiApachedolphinschedulerHex = SiApachedolphinscheduler.defaultColor; +exports.SiApachedoris = SiApachedoris.default; +exports.SiApachedorisHex = SiApachedoris.defaultColor; +exports.SiApachedruid = SiApachedruid.default; +exports.SiApachedruidHex = SiApachedruid.defaultColor; +exports.SiApacheecharts = SiApacheecharts.default; +exports.SiApacheechartsHex = SiApacheecharts.defaultColor; +exports.SiApacheflink = SiApacheflink.default; +exports.SiApacheflinkHex = SiApacheflink.defaultColor; +exports.SiApachefreemarker = SiApachefreemarker.default; +exports.SiApachefreemarkerHex = SiApachefreemarker.defaultColor; +exports.SiApachegroovy = SiApachegroovy.default; +exports.SiApachegroovyHex = SiApachegroovy.defaultColor; +exports.SiApacheguacamole = SiApacheguacamole.default; +exports.SiApacheguacamoleHex = SiApacheguacamole.defaultColor; +exports.SiApachehadoop = SiApachehadoop.default; +exports.SiApachehadoopHex = SiApachehadoop.defaultColor; +exports.SiApachehbase = SiApachehbase.default; +exports.SiApachehbaseHex = SiApachehbase.defaultColor; +exports.SiApachehive = SiApachehive.default; +exports.SiApachehiveHex = SiApachehive.defaultColor; +exports.SiApachejmeter = SiApachejmeter.default; +exports.SiApachejmeterHex = SiApachejmeter.defaultColor; +exports.SiApachekafka = SiApachekafka.default; +exports.SiApachekafkaHex = SiApachekafka.defaultColor; +exports.SiApachekylin = SiApachekylin.default; +exports.SiApachekylinHex = SiApachekylin.defaultColor; +exports.SiApachelucene = SiApachelucene.default; +exports.SiApacheluceneHex = SiApachelucene.defaultColor; +exports.SiApachemaven = SiApachemaven.default; +exports.SiApachemavenHex = SiApachemaven.defaultColor; +exports.SiApachenetbeanside = SiApachenetbeanside.default; +exports.SiApachenetbeansideHex = SiApachenetbeanside.defaultColor; +exports.SiApachenifi = SiApachenifi.default; +exports.SiApachenifiHex = SiApachenifi.defaultColor; +exports.SiApacheopenoffice = SiApacheopenoffice.default; +exports.SiApacheopenofficeHex = SiApacheopenoffice.defaultColor; +exports.SiApacheparquet = SiApacheparquet.default; +exports.SiApacheparquetHex = SiApacheparquet.defaultColor; +exports.SiApachepdfbox = SiApachepdfbox.default; +exports.SiApachepdfboxHex = SiApachepdfbox.defaultColor; +exports.SiApachepulsar = SiApachepulsar.default; +exports.SiApachepulsarHex = SiApachepulsar.defaultColor; +exports.SiApacherocketmq = SiApacherocketmq.default; +exports.SiApacherocketmqHex = SiApacherocketmq.defaultColor; +exports.SiApachesolr = SiApachesolr.default; +exports.SiApachesolrHex = SiApachesolr.defaultColor; +exports.SiApachespark = SiApachespark.default; +exports.SiApachesparkHex = SiApachespark.defaultColor; +exports.SiApachestorm = SiApachestorm.default; +exports.SiApachestormHex = SiApachestorm.defaultColor; +exports.SiApachesuperset = SiApachesuperset.default; +exports.SiApachesupersetHex = SiApachesuperset.defaultColor; +exports.SiApachetomcat = SiApachetomcat.default; +exports.SiApachetomcatHex = SiApachetomcat.defaultColor; +exports.SiAparat = SiAparat.default; +exports.SiAparatHex = SiAparat.defaultColor; +exports.SiApifox = SiApifox.default; +exports.SiApifoxHex = SiApifox.defaultColor; +exports.SiApmterminals = SiApmterminals.default; +exports.SiApmterminalsHex = SiApmterminals.defaultColor; +exports.SiApollographql = SiApollographql.default; +exports.SiApollographqlHex = SiApollographql.defaultColor; +exports.SiApostrophe = SiApostrophe.default; +exports.SiApostropheHex = SiApostrophe.defaultColor; +exports.SiAppgallery = SiAppgallery.default; +exports.SiAppgalleryHex = SiAppgallery.defaultColor; +exports.SiAppian = SiAppian.default; +exports.SiAppianHex = SiAppian.defaultColor; +exports.SiAppimage = SiAppimage.default; +exports.SiAppimageHex = SiAppimage.defaultColor; +exports.SiAppium = SiAppium.default; +exports.SiAppiumHex = SiAppium.defaultColor; +exports.SiApple = SiApple.default; +exports.SiAppleHex = SiApple.defaultColor; +exports.SiApplearcade = SiApplearcade.default; +exports.SiApplearcadeHex = SiApplearcade.defaultColor; +exports.SiApplemusic = SiApplemusic.default; +exports.SiApplemusicHex = SiApplemusic.defaultColor; +exports.SiApplenews = SiApplenews.default; +exports.SiApplenewsHex = SiApplenews.defaultColor; +exports.SiApplepay = SiApplepay.default; +exports.SiApplepayHex = SiApplepay.defaultColor; +exports.SiApplepodcasts = SiApplepodcasts.default; +exports.SiApplepodcastsHex = SiApplepodcasts.defaultColor; +exports.SiAppletv = SiAppletv.default; +exports.SiAppletvHex = SiAppletv.defaultColor; +exports.SiAppmanager = SiAppmanager.default; +exports.SiAppmanagerHex = SiAppmanager.defaultColor; +exports.SiAppsignal = SiAppsignal.default; +exports.SiAppsignalHex = SiAppsignal.defaultColor; +exports.SiAppsmith = SiAppsmith.default; +exports.SiAppsmithHex = SiAppsmith.defaultColor; +exports.SiAppstore = SiAppstore.default; +exports.SiAppstoreHex = SiAppstore.defaultColor; +exports.SiAppveyor = SiAppveyor.default; +exports.SiAppveyorHex = SiAppveyor.defaultColor; +exports.SiAppwrite = SiAppwrite.default; +exports.SiAppwriteHex = SiAppwrite.defaultColor; +exports.SiAqua = SiAqua.default; +exports.SiAquaHex = SiAqua.defaultColor; +exports.SiAral = SiAral.default; +exports.SiAralHex = SiAral.defaultColor; +exports.SiArangodb = SiArangodb.default; +exports.SiArangodbHex = SiArangodb.defaultColor; +exports.SiArc = SiArc.default; +exports.SiArcHex = SiArc.defaultColor; +exports.SiArcgis = SiArcgis.default; +exports.SiArcgisHex = SiArcgis.defaultColor; +exports.SiArchicad = SiArchicad.default; +exports.SiArchicadHex = SiArchicad.defaultColor; +exports.SiArchiveofourown = SiArchiveofourown.default; +exports.SiArchiveofourownHex = SiArchiveofourown.defaultColor; +exports.SiArchlinux = SiArchlinux.default; +exports.SiArchlinuxHex = SiArchlinux.defaultColor; +exports.SiArdour = SiArdour.default; +exports.SiArdourHex = SiArdour.defaultColor; +exports.SiArduino = SiArduino.default; +exports.SiArduinoHex = SiArduino.defaultColor; +exports.SiArgo = SiArgo.default; +exports.SiArgoHex = SiArgo.defaultColor; +exports.SiArgos = SiArgos.default; +exports.SiArgosHex = SiArgos.defaultColor; +exports.SiAriakit = SiAriakit.default; +exports.SiAriakitHex = SiAriakit.defaultColor; +exports.SiArkecosystem = SiArkecosystem.default; +exports.SiArkecosystemHex = SiArkecosystem.defaultColor; +exports.SiArlo = SiArlo.default; +exports.SiArloHex = SiArlo.defaultColor; +exports.SiArm = SiArm.default; +exports.SiArmHex = SiArm.defaultColor; +exports.SiArmkeil = SiArmkeil.default; +exports.SiArmkeilHex = SiArmkeil.defaultColor; +exports.SiArstechnica = SiArstechnica.default; +exports.SiArstechnicaHex = SiArstechnica.defaultColor; +exports.SiArtifacthub = SiArtifacthub.default; +exports.SiArtifacthubHex = SiArtifacthub.defaultColor; +exports.SiArtixlinux = SiArtixlinux.default; +exports.SiArtixlinuxHex = SiArtixlinux.defaultColor; +exports.SiArtstation = SiArtstation.default; +exports.SiArtstationHex = SiArtstation.defaultColor; +exports.SiArxiv = SiArxiv.default; +exports.SiArxivHex = SiArxiv.defaultColor; +exports.SiAsahilinux = SiAsahilinux.default; +exports.SiAsahilinuxHex = SiAsahilinux.defaultColor; +exports.SiAsana = SiAsana.default; +exports.SiAsanaHex = SiAsana.defaultColor; +exports.SiAsciidoctor = SiAsciidoctor.default; +exports.SiAsciidoctorHex = SiAsciidoctor.defaultColor; +exports.SiAsciinema = SiAsciinema.default; +exports.SiAsciinemaHex = SiAsciinema.defaultColor; +exports.SiAsda = SiAsda.default; +exports.SiAsdaHex = SiAsda.defaultColor; +exports.SiAseprite = SiAseprite.default; +exports.SiAsepriteHex = SiAseprite.defaultColor; +exports.SiAssemblyscript = SiAssemblyscript.default; +exports.SiAssemblyscriptHex = SiAssemblyscript.defaultColor; +exports.SiAsterisk = SiAsterisk.default; +exports.SiAsteriskHex = SiAsterisk.defaultColor; +exports.SiAstonmartin = SiAstonmartin.default; +exports.SiAstonmartinHex = SiAstonmartin.defaultColor; +exports.SiAstra = SiAstra.default; +exports.SiAstraHex = SiAstra.defaultColor; +exports.SiAstral = SiAstral.default; +exports.SiAstralHex = SiAstral.defaultColor; +exports.SiAstro = SiAstro.default; +exports.SiAstroHex = SiAstro.defaultColor; +exports.SiAsus = SiAsus.default; +exports.SiAsusHex = SiAsus.defaultColor; +exports.SiAtandt = SiAtandt.default; +exports.SiAtandtHex = SiAtandt.defaultColor; +exports.SiAtari = SiAtari.default; +exports.SiAtariHex = SiAtari.defaultColor; +exports.SiAtlasos = SiAtlasos.default; +exports.SiAtlasosHex = SiAtlasos.defaultColor; +exports.SiAtlassian = SiAtlassian.default; +exports.SiAtlassianHex = SiAtlassian.defaultColor; +exports.SiAuchan = SiAuchan.default; +exports.SiAuchanHex = SiAuchan.defaultColor; +exports.SiAudacity = SiAudacity.default; +exports.SiAudacityHex = SiAudacity.defaultColor; +exports.SiAudi = SiAudi.default; +exports.SiAudiHex = SiAudi.defaultColor; +exports.SiAudible = SiAudible.default; +exports.SiAudibleHex = SiAudible.defaultColor; +exports.SiAudiobookshelf = SiAudiobookshelf.default; +exports.SiAudiobookshelfHex = SiAudiobookshelf.defaultColor; +exports.SiAudioboom = SiAudioboom.default; +exports.SiAudioboomHex = SiAudioboom.defaultColor; +exports.SiAudiomack = SiAudiomack.default; +exports.SiAudiomackHex = SiAudiomack.defaultColor; +exports.SiAudiotechnica = SiAudiotechnica.default; +exports.SiAudiotechnicaHex = SiAudiotechnica.defaultColor; +exports.SiAurelia = SiAurelia.default; +exports.SiAureliaHex = SiAurelia.defaultColor; +exports.SiAutentique = SiAutentique.default; +exports.SiAutentiqueHex = SiAutentique.defaultColor; +exports.SiAuth0 = SiAuth0.default; +exports.SiAuth0Hex = SiAuth0.defaultColor; +exports.SiAuthelia = SiAuthelia.default; +exports.SiAutheliaHex = SiAuthelia.defaultColor; +exports.SiAuthentik = SiAuthentik.default; +exports.SiAuthentikHex = SiAuthentik.defaultColor; +exports.SiAutocad = SiAutocad.default; +exports.SiAutocadHex = SiAutocad.defaultColor; +exports.SiAutocannon = SiAutocannon.default; +exports.SiAutocannonHex = SiAutocannon.defaultColor; +exports.SiAutodesk = SiAutodesk.default; +exports.SiAutodeskHex = SiAutodesk.defaultColor; +exports.SiAutodeskmaya = SiAutodeskmaya.default; +exports.SiAutodeskmayaHex = SiAutodeskmaya.defaultColor; +exports.SiAutodeskrevit = SiAutodeskrevit.default; +exports.SiAutodeskrevitHex = SiAutodeskrevit.defaultColor; +exports.SiAutohotkey = SiAutohotkey.default; +exports.SiAutohotkeyHex = SiAutohotkey.defaultColor; +exports.SiAutoit = SiAutoit.default; +exports.SiAutoitHex = SiAutoit.defaultColor; +exports.SiAutomattic = SiAutomattic.default; +exports.SiAutomatticHex = SiAutomattic.defaultColor; +exports.SiAutoprefixer = SiAutoprefixer.default; +exports.SiAutoprefixerHex = SiAutoprefixer.defaultColor; +exports.SiAutozone = SiAutozone.default; +exports.SiAutozoneHex = SiAutozone.defaultColor; +exports.SiAvajs = SiAvajs.default; +exports.SiAvajsHex = SiAvajs.defaultColor; +exports.SiAvaloniaui = SiAvaloniaui.default; +exports.SiAvaloniauiHex = SiAvaloniaui.defaultColor; +exports.SiAvast = SiAvast.default; +exports.SiAvastHex = SiAvast.defaultColor; +exports.SiAvianca = SiAvianca.default; +exports.SiAviancaHex = SiAvianca.defaultColor; +exports.SiAvira = SiAvira.default; +exports.SiAviraHex = SiAvira.defaultColor; +exports.SiAvm = SiAvm.default; +exports.SiAvmHex = SiAvm.defaultColor; +exports.SiAwesomelists = SiAwesomelists.default; +exports.SiAwesomelistsHex = SiAwesomelists.defaultColor; +exports.SiAwesomewm = SiAwesomewm.default; +exports.SiAwesomewmHex = SiAwesomewm.defaultColor; +exports.SiAwwwards = SiAwwwards.default; +exports.SiAwwwardsHex = SiAwwwards.defaultColor; +exports.SiAxios = SiAxios.default; +exports.SiAxiosHex = SiAxios.defaultColor; +exports.SiAxisbank = SiAxisbank.default; +exports.SiAxisbankHex = SiAxisbank.defaultColor; +exports.SiB4x = SiB4x.default; +exports.SiB4xHex = SiB4x.defaultColor; +exports.SiBabel = SiBabel.default; +exports.SiBabelHex = SiBabel.defaultColor; +exports.SiBabelio = SiBabelio.default; +exports.SiBabelioHex = SiBabelio.defaultColor; +exports.SiBabylondotjs = SiBabylondotjs.default; +exports.SiBabylondotjsHex = SiBabylondotjs.defaultColor; +exports.SiBackblaze = SiBackblaze.default; +exports.SiBackblazeHex = SiBackblaze.defaultColor; +exports.SiBackbone = SiBackbone.default; +exports.SiBackboneHex = SiBackbone.defaultColor; +exports.SiBackbonedotjs = SiBackbonedotjs.default; +exports.SiBackbonedotjsHex = SiBackbonedotjs.defaultColor; +exports.SiBackendless = SiBackendless.default; +exports.SiBackendlessHex = SiBackendless.defaultColor; +exports.SiBackstage = SiBackstage.default; +exports.SiBackstageHex = SiBackstage.defaultColor; +exports.SiBackstageCasting = SiBackstageCasting.default; +exports.SiBackstageCastingHex = SiBackstageCasting.defaultColor; +exports.SiBadoo = SiBadoo.default; +exports.SiBadooHex = SiBadoo.defaultColor; +exports.SiBaidu = SiBaidu.default; +exports.SiBaiduHex = SiBaidu.defaultColor; +exports.SiBakalari = SiBakalari.default; +exports.SiBakalariHex = SiBakalari.defaultColor; +exports.SiBamboo = SiBamboo.default; +exports.SiBambooHex = SiBamboo.defaultColor; +exports.SiBambulab = SiBambulab.default; +exports.SiBambulabHex = SiBambulab.defaultColor; +exports.SiBandcamp = SiBandcamp.default; +exports.SiBandcampHex = SiBandcamp.defaultColor; +exports.SiBandlab = SiBandlab.default; +exports.SiBandlabHex = SiBandlab.defaultColor; +exports.SiBandrautomation = SiBandrautomation.default; +exports.SiBandrautomationHex = SiBandrautomation.defaultColor; +exports.SiBandsintown = SiBandsintown.default; +exports.SiBandsintownHex = SiBandsintown.defaultColor; +exports.SiBankofamerica = SiBankofamerica.default; +exports.SiBankofamericaHex = SiBankofamerica.defaultColor; +exports.SiBarclays = SiBarclays.default; +exports.SiBarclaysHex = SiBarclays.defaultColor; +exports.SiBaremetrics = SiBaremetrics.default; +exports.SiBaremetricsHex = SiBaremetrics.defaultColor; +exports.SiBarmenia = SiBarmenia.default; +exports.SiBarmeniaHex = SiBarmenia.defaultColor; +exports.SiBasecamp = SiBasecamp.default; +exports.SiBasecampHex = SiBasecamp.defaultColor; +exports.SiBaserow = SiBaserow.default; +exports.SiBaserowHex = SiBaserow.defaultColor; +exports.SiBasicattentiontoken = SiBasicattentiontoken.default; +exports.SiBasicattentiontokenHex = SiBasicattentiontoken.defaultColor; +exports.SiBastyon = SiBastyon.default; +exports.SiBastyonHex = SiBastyon.defaultColor; +exports.SiBat = SiBat.default; +exports.SiBatHex = SiBat.defaultColor; +exports.SiBata = SiBata.default; +exports.SiBataHex = SiBata.defaultColor; +exports.SiBattledotnet = SiBattledotnet.default; +exports.SiBattledotnetHex = SiBattledotnet.defaultColor; +exports.SiBazel = SiBazel.default; +exports.SiBazelHex = SiBazel.defaultColor; +exports.SiBeatport = SiBeatport.default; +exports.SiBeatportHex = SiBeatport.defaultColor; +exports.SiBeats = SiBeats.default; +exports.SiBeatsHex = SiBeats.defaultColor; +exports.SiBeatsbydre = SiBeatsbydre.default; +exports.SiBeatsbydreHex = SiBeatsbydre.defaultColor; +exports.SiBeatstars = SiBeatstars.default; +exports.SiBeatstarsHex = SiBeatstars.defaultColor; +exports.SiBeekeeperstudio = SiBeekeeperstudio.default; +exports.SiBeekeeperstudioHex = SiBeekeeperstudio.defaultColor; +exports.SiBehance = SiBehance.default; +exports.SiBehanceHex = SiBehance.defaultColor; +exports.SiBeijingsubway = SiBeijingsubway.default; +exports.SiBeijingsubwayHex = SiBeijingsubway.defaultColor; +exports.SiBem = SiBem.default; +exports.SiBemHex = SiBem.defaultColor; +exports.SiBentley = SiBentley.default; +exports.SiBentleyHex = SiBentley.defaultColor; +exports.SiBento = SiBento.default; +exports.SiBentoHex = SiBento.defaultColor; +exports.SiBentobox = SiBentobox.default; +exports.SiBentoboxHex = SiBentobox.defaultColor; +exports.SiBentoml = SiBentoml.default; +exports.SiBentomlHex = SiBentoml.defaultColor; +exports.SiBereal = SiBereal.default; +exports.SiBerealHex = SiBereal.defaultColor; +exports.SiBetfair = SiBetfair.default; +exports.SiBetfairHex = SiBetfair.defaultColor; +exports.SiBetterauth = SiBetterauth.default; +exports.SiBetterauthHex = SiBetterauth.defaultColor; +exports.SiBetterdiscord = SiBetterdiscord.default; +exports.SiBetterdiscordHex = SiBetterdiscord.defaultColor; +exports.SiBetterstack = SiBetterstack.default; +exports.SiBetterstackHex = SiBetterstack.defaultColor; +exports.SiBevy = SiBevy.default; +exports.SiBevyHex = SiBevy.defaultColor; +exports.SiBigbasket = SiBigbasket.default; +exports.SiBigbasketHex = SiBigbasket.defaultColor; +exports.SiBigbluebutton = SiBigbluebutton.default; +exports.SiBigbluebuttonHex = SiBigbluebutton.defaultColor; +exports.SiBigcartel = SiBigcartel.default; +exports.SiBigcartelHex = SiBigcartel.defaultColor; +exports.SiBigcommerce = SiBigcommerce.default; +exports.SiBigcommerceHex = SiBigcommerce.defaultColor; +exports.SiBilibili = SiBilibili.default; +exports.SiBilibiliHex = SiBilibili.defaultColor; +exports.SiBillboard = SiBillboard.default; +exports.SiBillboardHex = SiBillboard.defaultColor; +exports.SiBim = SiBim.default; +exports.SiBimHex = SiBim.defaultColor; +exports.SiBinance = SiBinance.default; +exports.SiBinanceHex = SiBinance.defaultColor; +exports.SiBioconductor = SiBioconductor.default; +exports.SiBioconductorHex = SiBioconductor.defaultColor; +exports.SiBiolink = SiBiolink.default; +exports.SiBiolinkHex = SiBiolink.defaultColor; +exports.SiBiome = SiBiome.default; +exports.SiBiomeHex = SiBiome.defaultColor; +exports.SiBisecthosting = SiBisecthosting.default; +exports.SiBisecthostingHex = SiBisecthosting.defaultColor; +exports.SiBit = SiBit.default; +exports.SiBitHex = SiBit.defaultColor; +exports.SiBitbucket = SiBitbucket.default; +exports.SiBitbucketHex = SiBitbucket.defaultColor; +exports.SiBitcoin = SiBitcoin.default; +exports.SiBitcoinHex = SiBitcoin.defaultColor; +exports.SiBitcoincash = SiBitcoincash.default; +exports.SiBitcoincashHex = SiBitcoincash.defaultColor; +exports.SiBitcoinsv = SiBitcoinsv.default; +exports.SiBitcoinsvHex = SiBitcoinsv.defaultColor; +exports.SiBitcomet = SiBitcomet.default; +exports.SiBitcometHex = SiBitcomet.defaultColor; +exports.SiBitdefender = SiBitdefender.default; +exports.SiBitdefenderHex = SiBitdefender.defaultColor; +exports.SiBitly = SiBitly.default; +exports.SiBitlyHex = SiBitly.defaultColor; +exports.SiBitrise = SiBitrise.default; +exports.SiBitriseHex = SiBitrise.defaultColor; +exports.SiBitsy = SiBitsy.default; +exports.SiBitsyHex = SiBitsy.defaultColor; +exports.SiBittorrent = SiBittorrent.default; +exports.SiBittorrentHex = SiBittorrent.defaultColor; +exports.SiBitwarden = SiBitwarden.default; +exports.SiBitwardenHex = SiBitwarden.defaultColor; +exports.SiBitwig = SiBitwig.default; +exports.SiBitwigHex = SiBitwig.defaultColor; +exports.SiBlack = SiBlack.default; +exports.SiBlackHex = SiBlack.defaultColor; +exports.SiBlackberry = SiBlackberry.default; +exports.SiBlackberryHex = SiBlackberry.defaultColor; +exports.SiBlackmagicdesign = SiBlackmagicdesign.default; +exports.SiBlackmagicdesignHex = SiBlackmagicdesign.defaultColor; +exports.SiBlazemeter = SiBlazemeter.default; +exports.SiBlazemeterHex = SiBlazemeter.defaultColor; +exports.SiBlazor = SiBlazor.default; +exports.SiBlazorHex = SiBlazor.defaultColor; +exports.SiBlender = SiBlender.default; +exports.SiBlenderHex = SiBlender.defaultColor; +exports.SiBlibli = SiBlibli.default; +exports.SiBlibliHex = SiBlibli.defaultColor; +exports.SiBlockbench = SiBlockbench.default; +exports.SiBlockbenchHex = SiBlockbench.defaultColor; +exports.SiBlockchaindotcom = SiBlockchaindotcom.default; +exports.SiBlockchaindotcomHex = SiBlockchaindotcom.defaultColor; +exports.SiBlogger = SiBlogger.default; +exports.SiBloggerHex = SiBlogger.defaultColor; +exports.SiBloglovin = SiBloglovin.default; +exports.SiBloglovinHex = SiBloglovin.defaultColor; +exports.SiBlueprint = SiBlueprint.default; +exports.SiBlueprintHex = SiBlueprint.defaultColor; +exports.SiBluesky = SiBluesky.default; +exports.SiBlueskyHex = SiBluesky.defaultColor; +exports.SiBluesound = SiBluesound.default; +exports.SiBluesoundHex = SiBluesound.defaultColor; +exports.SiBluetooth = SiBluetooth.default; +exports.SiBluetoothHex = SiBluetooth.defaultColor; +exports.SiBmcsoftware = SiBmcsoftware.default; +exports.SiBmcsoftwareHex = SiBmcsoftware.defaultColor; +exports.SiBmw = SiBmw.default; +exports.SiBmwHex = SiBmw.defaultColor; +exports.SiBnbchain = SiBnbchain.default; +exports.SiBnbchainHex = SiBnbchain.defaultColor; +exports.SiBoardgamegeek = SiBoardgamegeek.default; +exports.SiBoardgamegeekHex = SiBoardgamegeek.defaultColor; +exports.SiBoat = SiBoat.default; +exports.SiBoatHex = SiBoat.defaultColor; +exports.SiBoehringeringelheim = SiBoehringeringelheim.default; +exports.SiBoehringeringelheimHex = SiBoehringeringelheim.defaultColor; +exports.SiBoeing = SiBoeing.default; +exports.SiBoeingHex = SiBoeing.defaultColor; +exports.SiBohemiainteractive = SiBohemiainteractive.default; +exports.SiBohemiainteractiveHex = SiBohemiainteractive.defaultColor; +exports.SiBombardier = SiBombardier.default; +exports.SiBombardierHex = SiBombardier.defaultColor; +exports.SiBookalope = SiBookalope.default; +exports.SiBookalopeHex = SiBookalope.defaultColor; +exports.SiBookbub = SiBookbub.default; +exports.SiBookbubHex = SiBookbub.defaultColor; +exports.SiBookingdotcom = SiBookingdotcom.default; +exports.SiBookingdotcomHex = SiBookingdotcom.defaultColor; +exports.SiBookmeter = SiBookmeter.default; +exports.SiBookmeterHex = SiBookmeter.defaultColor; +exports.SiBookmyshow = SiBookmyshow.default; +exports.SiBookmyshowHex = SiBookmyshow.defaultColor; +exports.SiBookstack = SiBookstack.default; +exports.SiBookstackHex = SiBookstack.defaultColor; +exports.SiBoost = SiBoost.default; +exports.SiBoostHex = SiBoost.defaultColor; +exports.SiBoosty = SiBoosty.default; +exports.SiBoostyHex = SiBoosty.defaultColor; +exports.SiBoots = SiBoots.default; +exports.SiBootsHex = SiBoots.defaultColor; +exports.SiBootstrap = SiBootstrap.default; +exports.SiBootstrapHex = SiBootstrap.defaultColor; +exports.SiBorgbackup = SiBorgbackup.default; +exports.SiBorgbackupHex = SiBorgbackup.defaultColor; +exports.SiBosch = SiBosch.default; +exports.SiBoschHex = SiBosch.defaultColor; +exports.SiBose = SiBose.default; +exports.SiBoseHex = SiBose.defaultColor; +exports.SiBotblecms = SiBotblecms.default; +exports.SiBotblecmsHex = SiBotblecms.defaultColor; +exports.SiBoulanger = SiBoulanger.default; +exports.SiBoulangerHex = SiBoulanger.defaultColor; +exports.SiBower = SiBower.default; +exports.SiBowerHex = SiBower.defaultColor; +exports.SiBox = SiBox.default; +exports.SiBoxHex = SiBox.defaultColor; +exports.SiBoxysvg = SiBoxysvg.default; +exports.SiBoxysvgHex = SiBoxysvg.defaultColor; +exports.SiBraintree = SiBraintree.default; +exports.SiBraintreeHex = SiBraintree.defaultColor; +exports.SiBraintrust = SiBraintrust.default; +exports.SiBraintrustHex = SiBraintrust.defaultColor; +exports.SiBrandfetch = SiBrandfetch.default; +exports.SiBrandfetchHex = SiBrandfetch.defaultColor; +exports.SiBrandfolder = SiBrandfolder.default; +exports.SiBrandfolderHex = SiBrandfolder.defaultColor; +exports.SiBrave = SiBrave.default; +exports.SiBraveHex = SiBrave.defaultColor; +exports.SiBreaker = SiBreaker.default; +exports.SiBreakerHex = SiBreaker.defaultColor; +exports.SiBrenntag = SiBrenntag.default; +exports.SiBrenntagHex = SiBrenntag.defaultColor; +exports.SiBrevo = SiBrevo.default; +exports.SiBrevoHex = SiBrevo.defaultColor; +exports.SiBrex = SiBrex.default; +exports.SiBrexHex = SiBrex.defaultColor; +exports.SiBricks = SiBricks.default; +exports.SiBricksHex = SiBricks.defaultColor; +exports.SiBritishairways = SiBritishairways.default; +exports.SiBritishairwaysHex = SiBritishairways.defaultColor; +exports.SiBroadcom = SiBroadcom.default; +exports.SiBroadcomHex = SiBroadcom.defaultColor; +exports.SiBruno = SiBruno.default; +exports.SiBrunoHex = SiBruno.defaultColor; +exports.SiBsd = SiBsd.default; +exports.SiBsdHex = SiBsd.defaultColor; +exports.SiBspwm = SiBspwm.default; +exports.SiBspwmHex = SiBspwm.defaultColor; +exports.SiBt = SiBt.default; +exports.SiBtHex = SiBt.defaultColor; +exports.SiBuddy = SiBuddy.default; +exports.SiBuddyHex = SiBuddy.defaultColor; +exports.SiBudibase = SiBudibase.default; +exports.SiBudibaseHex = SiBudibase.defaultColor; +exports.SiBuefy = SiBuefy.default; +exports.SiBuefyHex = SiBuefy.defaultColor; +exports.SiBuffer = SiBuffer.default; +exports.SiBufferHex = SiBuffer.defaultColor; +exports.SiBugatti = SiBugatti.default; +exports.SiBugattiHex = SiBugatti.defaultColor; +exports.SiBugcrowd = SiBugcrowd.default; +exports.SiBugcrowdHex = SiBugcrowd.defaultColor; +exports.SiBuhl = SiBuhl.default; +exports.SiBuhlHex = SiBuhl.defaultColor; +exports.SiBuildkite = SiBuildkite.default; +exports.SiBuildkiteHex = SiBuildkite.defaultColor; +exports.SiBuiltbybit = SiBuiltbybit.default; +exports.SiBuiltbybitHex = SiBuiltbybit.defaultColor; +exports.SiBukalapak = SiBukalapak.default; +exports.SiBukalapakHex = SiBukalapak.defaultColor; +exports.SiBulma = SiBulma.default; +exports.SiBulmaHex = SiBulma.defaultColor; +exports.SiBun = SiBun.default; +exports.SiBunHex = SiBun.defaultColor; +exports.SiBungie = SiBungie.default; +exports.SiBungieHex = SiBungie.defaultColor; +exports.SiBunnydotnet = SiBunnydotnet.default; +exports.SiBunnydotnetHex = SiBunnydotnet.defaultColor; +exports.SiBunq = SiBunq.default; +exports.SiBunqHex = SiBunq.defaultColor; +exports.SiBurgerking = SiBurgerking.default; +exports.SiBurgerkingHex = SiBurgerking.defaultColor; +exports.SiBurpsuite = SiBurpsuite.default; +exports.SiBurpsuiteHex = SiBurpsuite.defaultColor; +exports.SiBurton = SiBurton.default; +exports.SiBurtonHex = SiBurton.defaultColor; +exports.SiBuymeacoffee = SiBuymeacoffee.default; +exports.SiBuymeacoffeeHex = SiBuymeacoffee.defaultColor; +exports.SiBuysellads = SiBuysellads.default; +exports.SiBuyselladsHex = SiBuysellads.defaultColor; +exports.SiBuzzfeed = SiBuzzfeed.default; +exports.SiBuzzfeedHex = SiBuzzfeed.defaultColor; +exports.SiBvg = SiBvg.default; +exports.SiBvgHex = SiBvg.defaultColor; +exports.SiByjus = SiByjus.default; +exports.SiByjusHex = SiByjus.defaultColor; +exports.SiBytedance = SiBytedance.default; +exports.SiBytedanceHex = SiBytedance.defaultColor; +exports.SiC = SiC.default; +exports.SiCHex = SiC.defaultColor; +exports.SiCachet = SiCachet.default; +exports.SiCachetHex = SiCachet.defaultColor; +exports.SiCaddy = SiCaddy.default; +exports.SiCaddyHex = SiCaddy.defaultColor; +exports.SiCadillac = SiCadillac.default; +exports.SiCadillacHex = SiCadillac.defaultColor; +exports.SiCafepress = SiCafepress.default; +exports.SiCafepressHex = SiCafepress.defaultColor; +exports.SiCairographics = SiCairographics.default; +exports.SiCairographicsHex = SiCairographics.defaultColor; +exports.SiCairometro = SiCairometro.default; +exports.SiCairometroHex = SiCairometro.defaultColor; +exports.SiCaixabank = SiCaixabank.default; +exports.SiCaixabankHex = SiCaixabank.defaultColor; +exports.SiCakephp = SiCakephp.default; +exports.SiCakephpHex = SiCakephp.defaultColor; +exports.SiCaldotcom = SiCaldotcom.default; +exports.SiCaldotcomHex = SiCaldotcom.defaultColor; +exports.SiCalendly = SiCalendly.default; +exports.SiCalendlyHex = SiCalendly.defaultColor; +exports.SiCalibreweb = SiCalibreweb.default; +exports.SiCalibrewebHex = SiCalibreweb.defaultColor; +exports.SiCampaignmonitor = SiCampaignmonitor.default; +exports.SiCampaignmonitorHex = SiCampaignmonitor.defaultColor; +exports.SiCamunda = SiCamunda.default; +exports.SiCamundaHex = SiCamunda.defaultColor; +exports.SiCanonical = SiCanonical.default; +exports.SiCanonicalHex = SiCanonical.defaultColor; +exports.SiCanvas = SiCanvas.default; +exports.SiCanvasHex = SiCanvas.defaultColor; +exports.SiCapacitor = SiCapacitor.default; +exports.SiCapacitorHex = SiCapacitor.defaultColor; +exports.SiCaprover = SiCaprover.default; +exports.SiCaproverHex = SiCaprover.defaultColor; +exports.SiCardano = SiCardano.default; +exports.SiCardanoHex = SiCardano.defaultColor; +exports.SiCardmarket = SiCardmarket.default; +exports.SiCardmarketHex = SiCardmarket.defaultColor; +exports.SiCarlsberggroup = SiCarlsberggroup.default; +exports.SiCarlsberggroupHex = SiCarlsberggroup.defaultColor; +exports.SiCarrd = SiCarrd.default; +exports.SiCarrdHex = SiCarrd.defaultColor; +exports.SiCarrefour = SiCarrefour.default; +exports.SiCarrefourHex = SiCarrefour.defaultColor; +exports.SiCarthrottle = SiCarthrottle.default; +exports.SiCarthrottleHex = SiCarthrottle.defaultColor; +exports.SiCarto = SiCarto.default; +exports.SiCartoHex = SiCarto.defaultColor; +exports.SiCashapp = SiCashapp.default; +exports.SiCashappHex = SiCashapp.defaultColor; +exports.SiCastbox = SiCastbox.default; +exports.SiCastboxHex = SiCastbox.defaultColor; +exports.SiCastorama = SiCastorama.default; +exports.SiCastoramaHex = SiCastorama.defaultColor; +exports.SiCastro = SiCastro.default; +exports.SiCastroHex = SiCastro.defaultColor; +exports.SiCaterpillar = SiCaterpillar.default; +exports.SiCaterpillarHex = SiCaterpillar.defaultColor; +exports.SiCbc = SiCbc.default; +exports.SiCbcHex = SiCbc.defaultColor; +exports.SiCbs = SiCbs.default; +exports.SiCbsHex = SiCbs.defaultColor; +exports.SiCcc = SiCcc.default; +exports.SiCccHex = SiCcc.defaultColor; +exports.SiCcleaner = SiCcleaner.default; +exports.SiCcleanerHex = SiCcleaner.defaultColor; +exports.SiCdprojekt = SiCdprojekt.default; +exports.SiCdprojektHex = SiCdprojekt.defaultColor; +exports.SiCe = SiCe.default; +exports.SiCeHex = SiCe.defaultColor; +exports.SiCelery = SiCelery.default; +exports.SiCeleryHex = SiCelery.defaultColor; +exports.SiCelestron = SiCelestron.default; +exports.SiCelestronHex = SiCelestron.defaultColor; +exports.SiCentos = SiCentos.default; +exports.SiCentosHex = SiCentos.defaultColor; +exports.SiCeph = SiCeph.default; +exports.SiCephHex = SiCeph.defaultColor; +exports.SiCesium = SiCesium.default; +exports.SiCesiumHex = SiCesium.defaultColor; +exports.SiChai = SiChai.default; +exports.SiChaiHex = SiChai.defaultColor; +exports.SiChainguard = SiChainguard.default; +exports.SiChainguardHex = SiChainguard.defaultColor; +exports.SiChainlink = SiChainlink.default; +exports.SiChainlinkHex = SiChainlink.defaultColor; +exports.SiChakraui = SiChakraui.default; +exports.SiChakrauiHex = SiChakraui.defaultColor; +exports.SiChangedetection = SiChangedetection.default; +exports.SiChangedetectionHex = SiChangedetection.defaultColor; +exports.SiChannel4 = SiChannel4.default; +exports.SiChannel4Hex = SiChannel4.defaultColor; +exports.SiCharles = SiCharles.default; +exports.SiCharlesHex = SiCharles.defaultColor; +exports.SiChartdotjs = SiChartdotjs.default; +exports.SiChartdotjsHex = SiChartdotjs.defaultColor; +exports.SiChartmogul = SiChartmogul.default; +exports.SiChartmogulHex = SiChartmogul.defaultColor; +exports.SiChase = SiChase.default; +exports.SiChaseHex = SiChase.defaultColor; +exports.SiChatbot = SiChatbot.default; +exports.SiChatbotHex = SiChatbot.defaultColor; +exports.SiChatwoot = SiChatwoot.default; +exports.SiChatwootHex = SiChatwoot.defaultColor; +exports.SiCheckio = SiCheckio.default; +exports.SiCheckioHex = SiCheckio.defaultColor; +exports.SiCheckmarx = SiCheckmarx.default; +exports.SiCheckmarxHex = SiCheckmarx.defaultColor; +exports.SiCheckmk = SiCheckmk.default; +exports.SiCheckmkHex = SiCheckmk.defaultColor; +exports.SiChedraui = SiChedraui.default; +exports.SiChedrauiHex = SiChedraui.defaultColor; +exports.SiCheerio = SiCheerio.default; +exports.SiCheerioHex = SiCheerio.defaultColor; +exports.SiChef = SiChef.default; +exports.SiChefHex = SiChef.defaultColor; +exports.SiChemex = SiChemex.default; +exports.SiChemexHex = SiChemex.defaultColor; +exports.SiChessdotcom = SiChessdotcom.default; +exports.SiChessdotcomHex = SiChessdotcom.defaultColor; +exports.SiChevrolet = SiChevrolet.default; +exports.SiChevroletHex = SiChevrolet.defaultColor; +exports.SiChianetwork = SiChianetwork.default; +exports.SiChianetworkHex = SiChianetwork.defaultColor; +exports.SiChinaeasternairlines = SiChinaeasternairlines.default; +exports.SiChinaeasternairlinesHex = SiChinaeasternairlines.defaultColor; +exports.SiChinarailway = SiChinarailway.default; +exports.SiChinarailwayHex = SiChinarailway.defaultColor; +exports.SiChinasouthernairlines = SiChinasouthernairlines.default; +exports.SiChinasouthernairlinesHex = SiChinasouthernairlines.defaultColor; +exports.SiChocolatey = SiChocolatey.default; +exports.SiChocolateyHex = SiChocolatey.defaultColor; +exports.SiChromatic = SiChromatic.default; +exports.SiChromaticHex = SiChromatic.defaultColor; +exports.SiChromewebstore = SiChromewebstore.default; +exports.SiChromewebstoreHex = SiChromewebstore.defaultColor; +exports.SiChrysler = SiChrysler.default; +exports.SiChryslerHex = SiChrysler.defaultColor; +exports.SiChupachups = SiChupachups.default; +exports.SiChupachupsHex = SiChupachups.defaultColor; +exports.SiCilium = SiCilium.default; +exports.SiCiliumHex = SiCilium.defaultColor; +exports.SiCinema4d = SiCinema4d.default; +exports.SiCinema4dHex = SiCinema4d.defaultColor; +exports.SiCinnamon = SiCinnamon.default; +exports.SiCinnamonHex = SiCinnamon.defaultColor; +exports.SiCircle = SiCircle.default; +exports.SiCircleHex = SiCircle.defaultColor; +exports.SiCircleci = SiCircleci.default; +exports.SiCircleciHex = SiCircleci.defaultColor; +exports.SiCircuitverse = SiCircuitverse.default; +exports.SiCircuitverseHex = SiCircuitverse.defaultColor; +exports.SiCirrusci = SiCirrusci.default; +exports.SiCirrusciHex = SiCirrusci.defaultColor; +exports.SiCisco = SiCisco.default; +exports.SiCiscoHex = SiCisco.defaultColor; +exports.SiCitrix = SiCitrix.default; +exports.SiCitrixHex = SiCitrix.defaultColor; +exports.SiCitroen = SiCitroen.default; +exports.SiCitroenHex = SiCitroen.defaultColor; +exports.SiCivicrm = SiCivicrm.default; +exports.SiCivicrmHex = SiCivicrm.defaultColor; +exports.SiCivo = SiCivo.default; +exports.SiCivoHex = SiCivo.defaultColor; +exports.SiClarifai = SiClarifai.default; +exports.SiClarifaiHex = SiClarifai.defaultColor; +exports.SiClaris = SiClaris.default; +exports.SiClarisHex = SiClaris.defaultColor; +exports.SiClarivate = SiClarivate.default; +exports.SiClarivateHex = SiClarivate.defaultColor; +exports.SiClaude = SiClaude.default; +exports.SiClaudeHex = SiClaude.defaultColor; +exports.SiClerk = SiClerk.default; +exports.SiClerkHex = SiClerk.defaultColor; +exports.SiClevercloud = SiClevercloud.default; +exports.SiClevercloudHex = SiClevercloud.defaultColor; +exports.SiClickhouse = SiClickhouse.default; +exports.SiClickhouseHex = SiClickhouse.defaultColor; +exports.SiClickup = SiClickup.default; +exports.SiClickupHex = SiClickup.defaultColor; +exports.SiClion = SiClion.default; +exports.SiClionHex = SiClion.defaultColor; +exports.SiClockify = SiClockify.default; +exports.SiClockifyHex = SiClockify.defaultColor; +exports.SiClojure = SiClojure.default; +exports.SiClojureHex = SiClojure.defaultColor; +exports.SiCloud66 = SiCloud66.default; +exports.SiCloud66Hex = SiCloud66.defaultColor; +exports.SiCloudbees = SiCloudbees.default; +exports.SiCloudbeesHex = SiCloudbees.defaultColor; +exports.SiCloudcannon = SiCloudcannon.default; +exports.SiCloudcannonHex = SiCloudcannon.defaultColor; +exports.SiCloudera = SiCloudera.default; +exports.SiClouderaHex = SiCloudera.defaultColor; +exports.SiCloudflare = SiCloudflare.default; +exports.SiCloudflareHex = SiCloudflare.defaultColor; +exports.SiCloudflarepages = SiCloudflarepages.default; +exports.SiCloudflarepagesHex = SiCloudflarepages.defaultColor; +exports.SiCloudflareworkers = SiCloudflareworkers.default; +exports.SiCloudflareworkersHex = SiCloudflareworkers.defaultColor; +exports.SiCloudfoundry = SiCloudfoundry.default; +exports.SiCloudfoundryHex = SiCloudfoundry.defaultColor; +exports.SiCloudinary = SiCloudinary.default; +exports.SiCloudinaryHex = SiCloudinary.defaultColor; +exports.SiCloudnativebuild = SiCloudnativebuild.default; +exports.SiCloudnativebuildHex = SiCloudnativebuild.defaultColor; +exports.SiCloudron = SiCloudron.default; +exports.SiCloudronHex = SiCloudron.defaultColor; +exports.SiCloudsmith = SiCloudsmith.default; +exports.SiCloudsmithHex = SiCloudsmith.defaultColor; +exports.SiCloudways = SiCloudways.default; +exports.SiCloudwaysHex = SiCloudways.defaultColor; +exports.SiClubforce = SiClubforce.default; +exports.SiClubforceHex = SiClubforce.defaultColor; +exports.SiClubhouse = SiClubhouse.default; +exports.SiClubhouseHex = SiClubhouse.defaultColor; +exports.SiClyp = SiClyp.default; +exports.SiClypHex = SiClyp.defaultColor; +exports.SiCmake = SiCmake.default; +exports.SiCmakeHex = SiCmake.defaultColor; +exports.SiCncf = SiCncf.default; +exports.SiCncfHex = SiCncf.defaultColor; +exports.SiCnes = SiCnes.default; +exports.SiCnesHex = SiCnes.defaultColor; +exports.SiCnet = SiCnet.default; +exports.SiCnetHex = SiCnet.defaultColor; +exports.SiCnn = SiCnn.default; +exports.SiCnnHex = SiCnn.defaultColor; +exports.SiCobalt = SiCobalt.default; +exports.SiCobaltHex = SiCobalt.defaultColor; +exports.SiCocacola = SiCocacola.default; +exports.SiCocacolaHex = SiCocacola.defaultColor; +exports.SiCockpit = SiCockpit.default; +exports.SiCockpitHex = SiCockpit.defaultColor; +exports.SiCockroachlabs = SiCockroachlabs.default; +exports.SiCockroachlabsHex = SiCockroachlabs.defaultColor; +exports.SiCocoapods = SiCocoapods.default; +exports.SiCocoapodsHex = SiCocoapods.defaultColor; +exports.SiCocos = SiCocos.default; +exports.SiCocosHex = SiCocos.defaultColor; +exports.SiCoda = SiCoda.default; +exports.SiCodaHex = SiCoda.defaultColor; +exports.SiCodacy = SiCodacy.default; +exports.SiCodacyHex = SiCodacy.defaultColor; +exports.SiCodeberg = SiCodeberg.default; +exports.SiCodebergHex = SiCodeberg.defaultColor; +exports.SiCodeblocks = SiCodeblocks.default; +exports.SiCodeblocksHex = SiCodeblocks.defaultColor; +exports.SiCodecademy = SiCodecademy.default; +exports.SiCodecademyHex = SiCodecademy.defaultColor; +exports.SiCodeceptjs = SiCodeceptjs.default; +exports.SiCodeceptjsHex = SiCodeceptjs.defaultColor; +exports.SiCodechef = SiCodechef.default; +exports.SiCodechefHex = SiCodechef.defaultColor; +exports.SiCodeclimate = SiCodeclimate.default; +exports.SiCodeclimateHex = SiCodeclimate.defaultColor; +exports.SiCodecov = SiCodecov.default; +exports.SiCodecovHex = SiCodecov.defaultColor; +exports.SiCodecrafters = SiCodecrafters.default; +exports.SiCodecraftersHex = SiCodecrafters.defaultColor; +exports.SiCodefactor = SiCodefactor.default; +exports.SiCodefactorHex = SiCodefactor.defaultColor; +exports.SiCodeforces = SiCodeforces.default; +exports.SiCodeforcesHex = SiCodeforces.defaultColor; +exports.SiCodefresh = SiCodefresh.default; +exports.SiCodefreshHex = SiCodefresh.defaultColor; +exports.SiCodeigniter = SiCodeigniter.default; +exports.SiCodeigniterHex = SiCodeigniter.defaultColor; +exports.SiCodemagic = SiCodemagic.default; +exports.SiCodemagicHex = SiCodemagic.defaultColor; +exports.SiCodementor = SiCodementor.default; +exports.SiCodementorHex = SiCodementor.defaultColor; +exports.SiCodemirror = SiCodemirror.default; +exports.SiCodemirrorHex = SiCodemirror.defaultColor; +exports.SiCodenewbie = SiCodenewbie.default; +exports.SiCodenewbieHex = SiCodenewbie.defaultColor; +exports.SiCodeproject = SiCodeproject.default; +exports.SiCodeprojectHex = SiCodeproject.defaultColor; +exports.SiCoder = SiCoder.default; +exports.SiCoderHex = SiCoder.defaultColor; +exports.SiCoderabbit = SiCoderabbit.default; +exports.SiCoderabbitHex = SiCoderabbit.defaultColor; +exports.SiCodersrank = SiCodersrank.default; +exports.SiCodersrankHex = SiCodersrank.defaultColor; +exports.SiCoderwall = SiCoderwall.default; +exports.SiCoderwallHex = SiCoderwall.defaultColor; +exports.SiCodesandbox = SiCodesandbox.default; +exports.SiCodesandboxHex = SiCodesandbox.defaultColor; +exports.SiCodeship = SiCodeship.default; +exports.SiCodeshipHex = SiCodeship.defaultColor; +exports.SiCodesignal = SiCodesignal.default; +exports.SiCodesignalHex = SiCodesignal.defaultColor; +exports.SiCodestream = SiCodestream.default; +exports.SiCodestreamHex = SiCodestream.defaultColor; +exports.SiCodewars = SiCodewars.default; +exports.SiCodewarsHex = SiCodewars.defaultColor; +exports.SiCodingame = SiCodingame.default; +exports.SiCodingameHex = SiCodingame.defaultColor; +exports.SiCodingninjas = SiCodingninjas.default; +exports.SiCodingninjasHex = SiCodingninjas.defaultColor; +exports.SiCodio = SiCodio.default; +exports.SiCodioHex = SiCodio.defaultColor; +exports.SiCoffeescript = SiCoffeescript.default; +exports.SiCoffeescriptHex = SiCoffeescript.defaultColor; +exports.SiCoggle = SiCoggle.default; +exports.SiCoggleHex = SiCoggle.defaultColor; +exports.SiCoinbase = SiCoinbase.default; +exports.SiCoinbaseHex = SiCoinbase.defaultColor; +exports.SiCoinmarketcap = SiCoinmarketcap.default; +exports.SiCoinmarketcapHex = SiCoinmarketcap.defaultColor; +exports.SiCollaboraonline = SiCollaboraonline.default; +exports.SiCollaboraonlineHex = SiCollaboraonline.defaultColor; +exports.SiComicfury = SiComicfury.default; +exports.SiComicfuryHex = SiComicfury.defaultColor; +exports.SiComma = SiComma.default; +exports.SiCommaHex = SiComma.defaultColor; +exports.SiCommerzbank = SiCommerzbank.default; +exports.SiCommerzbankHex = SiCommerzbank.defaultColor; +exports.SiCommitlint = SiCommitlint.default; +exports.SiCommitlintHex = SiCommitlint.defaultColor; +exports.SiCommodore = SiCommodore.default; +exports.SiCommodoreHex = SiCommodore.defaultColor; +exports.SiCommonlisp = SiCommonlisp.default; +exports.SiCommonlispHex = SiCommonlisp.defaultColor; +exports.SiCommonworkflowlanguage = SiCommonworkflowlanguage.default; +exports.SiCommonworkflowlanguageHex = SiCommonworkflowlanguage.defaultColor; +exports.SiCompilerexplorer = SiCompilerexplorer.default; +exports.SiCompilerexplorerHex = SiCompilerexplorer.defaultColor; +exports.SiComposer = SiComposer.default; +exports.SiComposerHex = SiComposer.defaultColor; +exports.SiComptia = SiComptia.default; +exports.SiComptiaHex = SiComptia.defaultColor; +exports.SiComsol = SiComsol.default; +exports.SiComsolHex = SiComsol.defaultColor; +exports.SiConan = SiConan.default; +exports.SiConanHex = SiConan.defaultColor; +exports.SiConcourse = SiConcourse.default; +exports.SiConcourseHex = SiConcourse.defaultColor; +exports.SiCondaforge = SiCondaforge.default; +exports.SiCondaforgeHex = SiCondaforge.defaultColor; +exports.SiConekta = SiConekta.default; +exports.SiConektaHex = SiConekta.defaultColor; +exports.SiConfluence = SiConfluence.default; +exports.SiConfluenceHex = SiConfluence.defaultColor; +exports.SiConstruct3 = SiConstruct3.default; +exports.SiConstruct3Hex = SiConstruct3.defaultColor; +exports.SiConsul = SiConsul.default; +exports.SiConsulHex = SiConsul.defaultColor; +exports.SiContabo = SiContabo.default; +exports.SiContaboHex = SiContabo.defaultColor; +exports.SiContactlesspayment = SiContactlesspayment.default; +exports.SiContactlesspaymentHex = SiContactlesspayment.defaultColor; +exports.SiContainerd = SiContainerd.default; +exports.SiContainerdHex = SiContainerd.defaultColor; +exports.SiContao = SiContao.default; +exports.SiContaoHex = SiContao.defaultColor; +exports.SiContentful = SiContentful.default; +exports.SiContentfulHex = SiContentful.defaultColor; +exports.SiContentstack = SiContentstack.default; +exports.SiContentstackHex = SiContentstack.defaultColor; +exports.SiContinente = SiContinente.default; +exports.SiContinenteHex = SiContinente.defaultColor; +exports.SiContributorcovenant = SiContributorcovenant.default; +exports.SiContributorcovenantHex = SiContributorcovenant.defaultColor; +exports.SiConventionalcommits = SiConventionalcommits.default; +exports.SiConventionalcommitsHex = SiConventionalcommits.defaultColor; +exports.SiConvertio = SiConvertio.default; +exports.SiConvertioHex = SiConvertio.defaultColor; +exports.SiConvex = SiConvex.default; +exports.SiConvexHex = SiConvex.defaultColor; +exports.SiCookiecutter = SiCookiecutter.default; +exports.SiCookiecutterHex = SiCookiecutter.defaultColor; +exports.SiCoolermaster = SiCoolermaster.default; +exports.SiCoolermasterHex = SiCoolermaster.defaultColor; +exports.SiCoolify = SiCoolify.default; +exports.SiCoolifyHex = SiCoolify.defaultColor; +exports.SiCoop = SiCoop.default; +exports.SiCoopHex = SiCoop.defaultColor; +exports.SiCopaairlines = SiCopaairlines.default; +exports.SiCopaairlinesHex = SiCopaairlines.defaultColor; +exports.SiCoppel = SiCoppel.default; +exports.SiCoppelHex = SiCoppel.defaultColor; +exports.SiCora = SiCora.default; +exports.SiCoraHex = SiCora.defaultColor; +exports.SiCoreboot = SiCoreboot.default; +exports.SiCorebootHex = SiCoreboot.defaultColor; +exports.SiCoreldraw = SiCoreldraw.default; +exports.SiCoreldrawHex = SiCoreldraw.defaultColor; +exports.SiCoronaengine = SiCoronaengine.default; +exports.SiCoronaengineHex = SiCoronaengine.defaultColor; +exports.SiCoronarenderer = SiCoronarenderer.default; +exports.SiCoronarendererHex = SiCoronarenderer.defaultColor; +exports.SiCorsair = SiCorsair.default; +exports.SiCorsairHex = SiCorsair.defaultColor; +exports.SiCouchbase = SiCouchbase.default; +exports.SiCouchbaseHex = SiCouchbase.defaultColor; +exports.SiCounterstrike = SiCounterstrike.default; +exports.SiCounterstrikeHex = SiCounterstrike.defaultColor; +exports.SiCountingworkspro = SiCountingworkspro.default; +exports.SiCountingworksproHex = SiCountingworkspro.defaultColor; +exports.SiCoursera = SiCoursera.default; +exports.SiCourseraHex = SiCoursera.defaultColor; +exports.SiCoveralls = SiCoveralls.default; +exports.SiCoverallsHex = SiCoveralls.defaultColor; +exports.SiCoze = SiCoze.default; +exports.SiCozeHex = SiCoze.defaultColor; +exports.SiCpanel = SiCpanel.default; +exports.SiCpanelHex = SiCpanel.defaultColor; +exports.SiCplusplus = SiCplusplus.default; +exports.SiCplusplusHex = SiCplusplus.defaultColor; +exports.SiCplusplusbuilder = SiCplusplusbuilder.default; +exports.SiCplusplusbuilderHex = SiCplusplusbuilder.defaultColor; +exports.SiCraftcms = SiCraftcms.default; +exports.SiCraftcmsHex = SiCraftcms.defaultColor; +exports.SiCraftsman = SiCraftsman.default; +exports.SiCraftsmanHex = SiCraftsman.defaultColor; +exports.SiCratedb = SiCratedb.default; +exports.SiCratedbHex = SiCratedb.defaultColor; +exports.SiCrayon = SiCrayon.default; +exports.SiCrayonHex = SiCrayon.defaultColor; +exports.SiCreality = SiCreality.default; +exports.SiCrealityHex = SiCreality.defaultColor; +exports.SiCreatereactapp = SiCreatereactapp.default; +exports.SiCreatereactappHex = SiCreatereactapp.defaultColor; +exports.SiCreativecommons = SiCreativecommons.default; +exports.SiCreativecommonsHex = SiCreativecommons.defaultColor; +exports.SiCreativetechnology = SiCreativetechnology.default; +exports.SiCreativetechnologyHex = SiCreativetechnology.defaultColor; +exports.SiCredly = SiCredly.default; +exports.SiCredlyHex = SiCredly.defaultColor; +exports.SiCrehana = SiCrehana.default; +exports.SiCrehanaHex = SiCrehana.defaultColor; +exports.SiCrewai = SiCrewai.default; +exports.SiCrewaiHex = SiCrewai.defaultColor; +exports.SiCrewunited = SiCrewunited.default; +exports.SiCrewunitedHex = SiCrewunited.defaultColor; +exports.SiCriticalrole = SiCriticalrole.default; +exports.SiCriticalroleHex = SiCriticalrole.defaultColor; +exports.SiCrowdin = SiCrowdin.default; +exports.SiCrowdinHex = SiCrowdin.defaultColor; +exports.SiCrowdsource = SiCrowdsource.default; +exports.SiCrowdsourceHex = SiCrowdsource.defaultColor; +exports.SiCrunchbase = SiCrunchbase.default; +exports.SiCrunchbaseHex = SiCrunchbase.defaultColor; +exports.SiCrunchyroll = SiCrunchyroll.default; +exports.SiCrunchyrollHex = SiCrunchyroll.defaultColor; +exports.SiCryengine = SiCryengine.default; +exports.SiCryengineHex = SiCryengine.defaultColor; +exports.SiCryptomator = SiCryptomator.default; +exports.SiCryptomatorHex = SiCryptomator.defaultColor; +exports.SiCryptpad = SiCryptpad.default; +exports.SiCryptpadHex = SiCryptpad.defaultColor; +exports.SiCrystal = SiCrystal.default; +exports.SiCrystalHex = SiCrystal.defaultColor; +exports.SiCsdn = SiCsdn.default; +exports.SiCsdnHex = SiCsdn.defaultColor; +exports.SiCss = SiCss.default; +exports.SiCssHex = SiCss.defaultColor; +exports.SiCssdesignawards = SiCssdesignawards.default; +exports.SiCssdesignawardsHex = SiCssdesignawards.defaultColor; +exports.SiCssmodules = SiCssmodules.default; +exports.SiCssmodulesHex = SiCssmodules.defaultColor; +exports.SiCsswizardry = SiCsswizardry.default; +exports.SiCsswizardryHex = SiCsswizardry.defaultColor; +exports.SiCts = SiCts.default; +exports.SiCtsHex = SiCts.defaultColor; +exports.SiCucumber = SiCucumber.default; +exports.SiCucumberHex = SiCucumber.defaultColor; +exports.SiCultura = SiCultura.default; +exports.SiCulturaHex = SiCultura.defaultColor; +exports.SiCurl = SiCurl.default; +exports.SiCurlHex = SiCurl.defaultColor; +exports.SiCurseforge = SiCurseforge.default; +exports.SiCurseforgeHex = SiCurseforge.defaultColor; +exports.SiCursor = SiCursor.default; +exports.SiCursorHex = SiCursor.defaultColor; +exports.SiCustomink = SiCustomink.default; +exports.SiCustominkHex = SiCustomink.defaultColor; +exports.SiCyberdefenders = SiCyberdefenders.default; +exports.SiCyberdefendersHex = SiCyberdefenders.defaultColor; +exports.SiCycling74 = SiCycling74.default; +exports.SiCycling74Hex = SiCycling74.defaultColor; +exports.SiCypress = SiCypress.default; +exports.SiCypressHex = SiCypress.defaultColor; +exports.SiCytoscapedotjs = SiCytoscapedotjs.default; +exports.SiCytoscapedotjsHex = SiCytoscapedotjs.defaultColor; +exports.SiD = SiD.default; +exports.SiDHex = SiD.defaultColor; +exports.SiD3 = SiD3.default; +exports.SiD3Hex = SiD3.defaultColor; +exports.SiDacia = SiDacia.default; +exports.SiDaciaHex = SiDacia.defaultColor; +exports.SiDaf = SiDaf.default; +exports.SiDafHex = SiDaf.defaultColor; +exports.SiDailydotdev = SiDailydotdev.default; +exports.SiDailydotdevHex = SiDailydotdev.defaultColor; +exports.SiDailymotion = SiDailymotion.default; +exports.SiDailymotionHex = SiDailymotion.defaultColor; +exports.SiDaisyui = SiDaisyui.default; +exports.SiDaisyuiHex = SiDaisyui.defaultColor; +exports.SiDapr = SiDapr.default; +exports.SiDaprHex = SiDapr.defaultColor; +exports.SiDarkreader = SiDarkreader.default; +exports.SiDarkreaderHex = SiDarkreader.defaultColor; +exports.SiDart = SiDart.default; +exports.SiDartHex = SiDart.defaultColor; +exports.SiDarty = SiDarty.default; +exports.SiDartyHex = SiDarty.defaultColor; +exports.SiDaserste = SiDaserste.default; +exports.SiDasersteHex = SiDaserste.defaultColor; +exports.SiDash = SiDash.default; +exports.SiDashHex = SiDash.defaultColor; +exports.SiDash0 = SiDash0.default; +exports.SiDash0Hex = SiDash0.defaultColor; +exports.SiDashlane = SiDashlane.default; +exports.SiDashlaneHex = SiDashlane.defaultColor; +exports.SiDask = SiDask.default; +exports.SiDaskHex = SiDask.defaultColor; +exports.SiDassaultsystemes = SiDassaultsystemes.default; +exports.SiDassaultsystemesHex = SiDassaultsystemes.defaultColor; +exports.SiDatabricks = SiDatabricks.default; +exports.SiDatabricksHex = SiDatabricks.defaultColor; +exports.SiDatacamp = SiDatacamp.default; +exports.SiDatacampHex = SiDatacamp.defaultColor; +exports.SiDatadog = SiDatadog.default; +exports.SiDatadogHex = SiDatadog.defaultColor; +exports.SiDatadotai = SiDatadotai.default; +exports.SiDatadotaiHex = SiDatadotai.defaultColor; +exports.SiDatagrip = SiDatagrip.default; +exports.SiDatagripHex = SiDatagrip.defaultColor; +exports.SiDataiku = SiDataiku.default; +exports.SiDataikuHex = SiDataiku.defaultColor; +exports.SiDatastax = SiDatastax.default; +exports.SiDatastaxHex = SiDatastax.defaultColor; +exports.SiDatefns = SiDatefns.default; +exports.SiDatefnsHex = SiDatefns.defaultColor; +exports.SiDatev = SiDatev.default; +exports.SiDatevHex = SiDatev.defaultColor; +exports.SiDatocms = SiDatocms.default; +exports.SiDatocmsHex = SiDatocms.defaultColor; +exports.SiDatto = SiDatto.default; +exports.SiDattoHex = SiDatto.defaultColor; +exports.SiDavinciresolve = SiDavinciresolve.default; +exports.SiDavinciresolveHex = SiDavinciresolve.defaultColor; +exports.SiDazhongdianping = SiDazhongdianping.default; +exports.SiDazhongdianpingHex = SiDazhongdianping.defaultColor; +exports.SiDazn = SiDazn.default; +exports.SiDaznHex = SiDazn.defaultColor; +exports.SiDbeaver = SiDbeaver.default; +exports.SiDbeaverHex = SiDbeaver.defaultColor; +exports.SiDblp = SiDblp.default; +exports.SiDblpHex = SiDblp.defaultColor; +exports.SiDcentertainment = SiDcentertainment.default; +exports.SiDcentertainmentHex = SiDcentertainment.defaultColor; +exports.SiDebian = SiDebian.default; +exports.SiDebianHex = SiDebian.defaultColor; +exports.SiDebridlink = SiDebridlink.default; +exports.SiDebridlinkHex = SiDebridlink.defaultColor; +exports.SiDecapcms = SiDecapcms.default; +exports.SiDecapcmsHex = SiDecapcms.defaultColor; +exports.SiDecentraland = SiDecentraland.default; +exports.SiDecentralandHex = SiDecentraland.defaultColor; +exports.SiDedge = SiDedge.default; +exports.SiDedgeHex = SiDedge.defaultColor; +exports.SiDeepcool = SiDeepcool.default; +exports.SiDeepcoolHex = SiDeepcool.defaultColor; +exports.SiDeepgram = SiDeepgram.default; +exports.SiDeepgramHex = SiDeepgram.defaultColor; +exports.SiDeepin = SiDeepin.default; +exports.SiDeepinHex = SiDeepin.defaultColor; +exports.SiDeepl = SiDeepl.default; +exports.SiDeeplHex = SiDeepl.defaultColor; +exports.SiDeepmind = SiDeepmind.default; +exports.SiDeepmindHex = SiDeepmind.defaultColor; +exports.SiDeepnote = SiDeepnote.default; +exports.SiDeepnoteHex = SiDeepnote.defaultColor; +exports.SiDeezer = SiDeezer.default; +exports.SiDeezerHex = SiDeezer.defaultColor; +exports.SiDeliveroo = SiDeliveroo.default; +exports.SiDeliverooHex = SiDeliveroo.defaultColor; +exports.SiDell = SiDell.default; +exports.SiDellHex = SiDell.defaultColor; +exports.SiDelonghi = SiDelonghi.default; +exports.SiDelonghiHex = SiDelonghi.defaultColor; +exports.SiDelphi = SiDelphi.default; +exports.SiDelphiHex = SiDelphi.defaultColor; +exports.SiDelta = SiDelta.default; +exports.SiDeltaHex = SiDelta.defaultColor; +exports.SiDeluge = SiDeluge.default; +exports.SiDelugeHex = SiDeluge.defaultColor; +exports.SiDeno = SiDeno.default; +exports.SiDenoHex = SiDeno.defaultColor; +exports.SiDenodeploy = SiDenodeploy.default; +exports.SiDenodeployHex = SiDenodeploy.defaultColor; +exports.SiDenon = SiDenon.default; +exports.SiDenonHex = SiDenon.defaultColor; +exports.SiDependabot = SiDependabot.default; +exports.SiDependabotHex = SiDependabot.defaultColor; +exports.SiDependencycheck = SiDependencycheck.default; +exports.SiDependencycheckHex = SiDependencycheck.defaultColor; +exports.SiDepositphotos = SiDepositphotos.default; +exports.SiDepositphotosHex = SiDepositphotos.defaultColor; +exports.SiDerspiegel = SiDerspiegel.default; +exports.SiDerspiegelHex = SiDerspiegel.defaultColor; +exports.SiDeutschebahn = SiDeutschebahn.default; +exports.SiDeutschebahnHex = SiDeutschebahn.defaultColor; +exports.SiDeutschebank = SiDeutschebank.default; +exports.SiDeutschebankHex = SiDeutschebank.defaultColor; +exports.SiDeutschepost = SiDeutschepost.default; +exports.SiDeutschepostHex = SiDeutschepost.defaultColor; +exports.SiDeutschetelekom = SiDeutschetelekom.default; +exports.SiDeutschetelekomHex = SiDeutschetelekom.defaultColor; +exports.SiDeutschewelle = SiDeutschewelle.default; +exports.SiDeutschewelleHex = SiDeutschewelle.defaultColor; +exports.SiDevbox = SiDevbox.default; +exports.SiDevboxHex = SiDevbox.defaultColor; +exports.SiDevdotto = SiDevdotto.default; +exports.SiDevdottoHex = SiDevdotto.defaultColor; +exports.SiDevelopmentcontainers = SiDevelopmentcontainers.default; +exports.SiDevelopmentcontainersHex = SiDevelopmentcontainers.defaultColor; +exports.SiDevexpress = SiDevexpress.default; +exports.SiDevexpressHex = SiDevexpress.defaultColor; +exports.SiDeviantart = SiDeviantart.default; +exports.SiDeviantartHex = SiDeviantart.defaultColor; +exports.SiDevpost = SiDevpost.default; +exports.SiDevpostHex = SiDevpost.defaultColor; +exports.SiDevrant = SiDevrant.default; +exports.SiDevrantHex = SiDevrant.defaultColor; +exports.SiDevuan = SiDevuan.default; +exports.SiDevuanHex = SiDevuan.defaultColor; +exports.SiDgraph = SiDgraph.default; +exports.SiDgraphHex = SiDgraph.defaultColor; +exports.SiDhl = SiDhl.default; +exports.SiDhlHex = SiDhl.defaultColor; +exports.SiDiagramsdotnet = SiDiagramsdotnet.default; +exports.SiDiagramsdotnetHex = SiDiagramsdotnet.defaultColor; +exports.SiDialogflow = SiDialogflow.default; +exports.SiDialogflowHex = SiDialogflow.defaultColor; +exports.SiDiaspora = SiDiaspora.default; +exports.SiDiasporaHex = SiDiaspora.defaultColor; +exports.SiDictionarydotcom = SiDictionarydotcom.default; +exports.SiDictionarydotcomHex = SiDictionarydotcom.defaultColor; +exports.SiDigg = SiDigg.default; +exports.SiDiggHex = SiDigg.defaultColor; +exports.SiDigikeyelectronics = SiDigikeyelectronics.default; +exports.SiDigikeyelectronicsHex = SiDigikeyelectronics.defaultColor; +exports.SiDigitalocean = SiDigitalocean.default; +exports.SiDigitaloceanHex = SiDigitalocean.defaultColor; +exports.SiDinersclub = SiDinersclub.default; +exports.SiDinersclubHex = SiDinersclub.defaultColor; +exports.SiDior = SiDior.default; +exports.SiDiorHex = SiDior.defaultColor; +exports.SiDirectus = SiDirectus.default; +exports.SiDirectusHex = SiDirectus.defaultColor; +exports.SiDiscogs = SiDiscogs.default; +exports.SiDiscogsHex = SiDiscogs.defaultColor; +exports.SiDiscord = SiDiscord.default; +exports.SiDiscordHex = SiDiscord.defaultColor; +exports.SiDiscorddotjs = SiDiscorddotjs.default; +exports.SiDiscorddotjsHex = SiDiscorddotjs.defaultColor; +exports.SiDiscourse = SiDiscourse.default; +exports.SiDiscourseHex = SiDiscourse.defaultColor; +exports.SiDiscover = SiDiscover.default; +exports.SiDiscoverHex = SiDiscover.defaultColor; +exports.SiDisqus = SiDisqus.default; +exports.SiDisqusHex = SiDisqus.defaultColor; +exports.SiDisroot = SiDisroot.default; +exports.SiDisrootHex = SiDisroot.defaultColor; +exports.SiDistrobox = SiDistrobox.default; +exports.SiDistroboxHex = SiDistrobox.defaultColor; +exports.SiDistrokid = SiDistrokid.default; +exports.SiDistrokidHex = SiDistrokid.defaultColor; +exports.SiDjango = SiDjango.default; +exports.SiDjangoHex = SiDjango.defaultColor; +exports.SiDji = SiDji.default; +exports.SiDjiHex = SiDji.defaultColor; +exports.SiDlib = SiDlib.default; +exports.SiDlibHex = SiDlib.defaultColor; +exports.SiDlna = SiDlna.default; +exports.SiDlnaHex = SiDlna.defaultColor; +exports.SiDm = SiDm.default; +exports.SiDmHex = SiDm.defaultColor; +exports.SiDmm = SiDmm.default; +exports.SiDmmHex = SiDmm.defaultColor; +exports.SiDocker = SiDocker.default; +exports.SiDockerHex = SiDocker.defaultColor; +exports.SiDocsdotrs = SiDocsdotrs.default; +exports.SiDocsdotrsHex = SiDocsdotrs.defaultColor; +exports.SiDocsify = SiDocsify.default; +exports.SiDocsifyHex = SiDocsify.defaultColor; +exports.SiDoctrine = SiDoctrine.default; +exports.SiDoctrineHex = SiDoctrine.defaultColor; +exports.SiDocusaurus = SiDocusaurus.default; +exports.SiDocusaurusHex = SiDocusaurus.defaultColor; +exports.SiDodopayments = SiDodopayments.default; +exports.SiDodopaymentsHex = SiDodopayments.defaultColor; +exports.SiDogecoin = SiDogecoin.default; +exports.SiDogecoinHex = SiDogecoin.defaultColor; +exports.SiDoi = SiDoi.default; +exports.SiDoiHex = SiDoi.defaultColor; +exports.SiDolby = SiDolby.default; +exports.SiDolbyHex = SiDolby.defaultColor; +exports.SiDolibarr = SiDolibarr.default; +exports.SiDolibarrHex = SiDolibarr.defaultColor; +exports.SiDolphin = SiDolphin.default; +exports.SiDolphinHex = SiDolphin.defaultColor; +exports.SiDoordash = SiDoordash.default; +exports.SiDoordashHex = SiDoordash.defaultColor; +exports.SiDota2 = SiDota2.default; +exports.SiDota2Hex = SiDota2.defaultColor; +exports.SiDotenv = SiDotenv.default; +exports.SiDotenvHex = SiDotenv.defaultColor; +exports.SiDotnet = SiDotnet.default; +exports.SiDotnetHex = SiDotnet.defaultColor; +exports.SiDouban = SiDouban.default; +exports.SiDoubanHex = SiDouban.defaultColor; +exports.SiDoubanread = SiDoubanread.default; +exports.SiDoubanreadHex = SiDoubanread.defaultColor; +exports.SiDovecot = SiDovecot.default; +exports.SiDovecotHex = SiDovecot.defaultColor; +exports.SiDovetail = SiDovetail.default; +exports.SiDovetailHex = SiDovetail.defaultColor; +exports.SiDowndetector = SiDowndetector.default; +exports.SiDowndetectorHex = SiDowndetector.defaultColor; +exports.SiDoxygen = SiDoxygen.default; +exports.SiDoxygenHex = SiDoxygen.defaultColor; +exports.SiDpd = SiDpd.default; +exports.SiDpdHex = SiDpd.defaultColor; +exports.SiDragonframe = SiDragonframe.default; +exports.SiDragonframeHex = SiDragonframe.defaultColor; +exports.SiDraugiemdotlv = SiDraugiemdotlv.default; +exports.SiDraugiemdotlvHex = SiDraugiemdotlv.defaultColor; +exports.SiDreamstime = SiDreamstime.default; +exports.SiDreamstimeHex = SiDreamstime.defaultColor; +exports.SiDribbble = SiDribbble.default; +exports.SiDribbbleHex = SiDribbble.defaultColor; +exports.SiDrizzle = SiDrizzle.default; +exports.SiDrizzleHex = SiDrizzle.defaultColor; +exports.SiDrone = SiDrone.default; +exports.SiDroneHex = SiDrone.defaultColor; +exports.SiDrooble = SiDrooble.default; +exports.SiDroobleHex = SiDrooble.defaultColor; +exports.SiDropbox = SiDropbox.default; +exports.SiDropboxHex = SiDropbox.defaultColor; +exports.SiDrupal = SiDrupal.default; +exports.SiDrupalHex = SiDrupal.defaultColor; +exports.SiDsautomobiles = SiDsautomobiles.default; +exports.SiDsautomobilesHex = SiDsautomobiles.defaultColor; +exports.SiDts = SiDts.default; +exports.SiDtsHex = SiDts.defaultColor; +exports.SiDtube = SiDtube.default; +exports.SiDtubeHex = SiDtube.defaultColor; +exports.SiDucati = SiDucati.default; +exports.SiDucatiHex = SiDucati.defaultColor; +exports.SiDuckdb = SiDuckdb.default; +exports.SiDuckdbHex = SiDuckdb.defaultColor; +exports.SiDuckduckgo = SiDuckduckgo.default; +exports.SiDuckduckgoHex = SiDuckduckgo.defaultColor; +exports.SiDungeonsanddragons = SiDungeonsanddragons.default; +exports.SiDungeonsanddragonsHex = SiDungeonsanddragons.defaultColor; +exports.SiDunked = SiDunked.default; +exports.SiDunkedHex = SiDunked.defaultColor; +exports.SiDunzo = SiDunzo.default; +exports.SiDunzoHex = SiDunzo.defaultColor; +exports.SiDuolingo = SiDuolingo.default; +exports.SiDuolingoHex = SiDuolingo.defaultColor; +exports.SiDuplicati = SiDuplicati.default; +exports.SiDuplicatiHex = SiDuplicati.defaultColor; +exports.SiDvc = SiDvc.default; +exports.SiDvcHex = SiDvc.defaultColor; +exports.SiDwavesystems = SiDwavesystems.default; +exports.SiDwavesystemsHex = SiDwavesystems.defaultColor; +exports.SiDwm = SiDwm.default; +exports.SiDwmHex = SiDwm.defaultColor; +exports.SiDynatrace = SiDynatrace.default; +exports.SiDynatraceHex = SiDynatrace.defaultColor; +exports.SiE = SiE.default; +exports.SiEHex = SiE.defaultColor; +exports.SiE3 = SiE3.default; +exports.SiE3Hex = SiE3.defaultColor; +exports.SiEa = SiEa.default; +exports.SiEaHex = SiEa.defaultColor; +exports.SiEac = SiEac.default; +exports.SiEacHex = SiEac.defaultColor; +exports.SiEagle = SiEagle.default; +exports.SiEagleHex = SiEagle.defaultColor; +exports.SiEasyeda = SiEasyeda.default; +exports.SiEasyedaHex = SiEasyeda.defaultColor; +exports.SiEasyjet = SiEasyjet.default; +exports.SiEasyjetHex = SiEasyjet.defaultColor; +exports.SiEbay = SiEbay.default; +exports.SiEbayHex = SiEbay.defaultColor; +exports.SiEbox = SiEbox.default; +exports.SiEboxHex = SiEbox.defaultColor; +exports.SiEclipseadoptium = SiEclipseadoptium.default; +exports.SiEclipseadoptiumHex = SiEclipseadoptium.defaultColor; +exports.SiEclipseche = SiEclipseche.default; +exports.SiEclipsecheHex = SiEclipseche.defaultColor; +exports.SiEclipseide = SiEclipseide.default; +exports.SiEclipseideHex = SiEclipseide.defaultColor; +exports.SiEclipsejetty = SiEclipsejetty.default; +exports.SiEclipsejettyHex = SiEclipsejetty.defaultColor; +exports.SiEclipsemosquitto = SiEclipsemosquitto.default; +exports.SiEclipsemosquittoHex = SiEclipsemosquitto.defaultColor; +exports.SiEclipsevertdotx = SiEclipsevertdotx.default; +exports.SiEclipsevertdotxHex = SiEclipsevertdotx.defaultColor; +exports.SiEcosia = SiEcosia.default; +exports.SiEcosiaHex = SiEcosia.defaultColor; +exports.SiEcovacs = SiEcovacs.default; +exports.SiEcovacsHex = SiEcovacs.defaultColor; +exports.SiEdeka = SiEdeka.default; +exports.SiEdekaHex = SiEdeka.defaultColor; +exports.SiEdgeimpulse = SiEdgeimpulse.default; +exports.SiEdgeimpulseHex = SiEdgeimpulse.defaultColor; +exports.SiEditorconfig = SiEditorconfig.default; +exports.SiEditorconfigHex = SiEditorconfig.defaultColor; +exports.SiEdotleclerc = SiEdotleclerc.default; +exports.SiEdotleclercHex = SiEdotleclerc.defaultColor; +exports.SiEducative = SiEducative.default; +exports.SiEducativeHex = SiEducative.defaultColor; +exports.SiEdx = SiEdx.default; +exports.SiEdxHex = SiEdx.defaultColor; +exports.SiEffect = SiEffect.default; +exports.SiEffectHex = SiEffect.defaultColor; +exports.SiEgghead = SiEgghead.default; +exports.SiEggheadHex = SiEgghead.defaultColor; +exports.SiEgnyte = SiEgnyte.default; +exports.SiEgnyteHex = SiEgnyte.defaultColor; +exports.SiEight = SiEight.default; +exports.SiEightHex = SiEight.defaultColor; +exports.SiEightsleep = SiEightsleep.default; +exports.SiEightsleepHex = SiEightsleep.defaultColor; +exports.SiEjs = SiEjs.default; +exports.SiEjsHex = SiEjs.defaultColor; +exports.SiElastic = SiElastic.default; +exports.SiElasticHex = SiElastic.defaultColor; +exports.SiElasticcloud = SiElasticcloud.default; +exports.SiElasticcloudHex = SiElasticcloud.defaultColor; +exports.SiElasticsearch = SiElasticsearch.default; +exports.SiElasticsearchHex = SiElasticsearch.defaultColor; +exports.SiElasticstack = SiElasticstack.default; +exports.SiElasticstackHex = SiElasticstack.defaultColor; +exports.SiElavon = SiElavon.default; +exports.SiElavonHex = SiElavon.defaultColor; +exports.SiElectron = SiElectron.default; +exports.SiElectronHex = SiElectron.defaultColor; +exports.SiElectronbuilder = SiElectronbuilder.default; +exports.SiElectronbuilderHex = SiElectronbuilder.defaultColor; +exports.SiElectronfiddle = SiElectronfiddle.default; +exports.SiElectronfiddleHex = SiElectronfiddle.defaultColor; +exports.SiElegoo = SiElegoo.default; +exports.SiElegooHex = SiElegoo.defaultColor; +exports.SiElement = SiElement.default; +exports.SiElementHex = SiElement.defaultColor; +exports.SiElementary = SiElementary.default; +exports.SiElementaryHex = SiElementary.defaultColor; +exports.SiElementor = SiElementor.default; +exports.SiElementorHex = SiElementor.defaultColor; +exports.SiElevenlabs = SiElevenlabs.default; +exports.SiElevenlabsHex = SiElevenlabs.defaultColor; +exports.SiEleventy = SiEleventy.default; +exports.SiEleventyHex = SiEleventy.defaultColor; +exports.SiElgato = SiElgato.default; +exports.SiElgatoHex = SiElgato.defaultColor; +exports.SiElixir = SiElixir.default; +exports.SiElixirHex = SiElixir.defaultColor; +exports.SiElk = SiElk.default; +exports.SiElkHex = SiElk.defaultColor; +exports.SiElm = SiElm.default; +exports.SiElmHex = SiElm.defaultColor; +exports.SiElsevier = SiElsevier.default; +exports.SiElsevierHex = SiElsevier.defaultColor; +exports.SiEmbarcadero = SiEmbarcadero.default; +exports.SiEmbarcaderoHex = SiEmbarcadero.defaultColor; +exports.SiEmbark = SiEmbark.default; +exports.SiEmbarkHex = SiEmbark.defaultColor; +exports.SiEmberdotjs = SiEmberdotjs.default; +exports.SiEmberdotjsHex = SiEmberdotjs.defaultColor; +exports.SiEmby = SiEmby.default; +exports.SiEmbyHex = SiEmby.defaultColor; +exports.SiEmirates = SiEmirates.default; +exports.SiEmiratesHex = SiEmirates.defaultColor; +exports.SiEmlakjet = SiEmlakjet.default; +exports.SiEmlakjetHex = SiEmlakjet.defaultColor; +exports.SiEndeavouros = SiEndeavouros.default; +exports.SiEndeavourosHex = SiEndeavouros.defaultColor; +exports.SiEnpass = SiEnpass.default; +exports.SiEnpassHex = SiEnpass.defaultColor; +exports.SiEns = SiEns.default; +exports.SiEnsHex = SiEns.defaultColor; +exports.SiEnte = SiEnte.default; +exports.SiEnteHex = SiEnte.defaultColor; +exports.SiEnterprisedb = SiEnterprisedb.default; +exports.SiEnterprisedbHex = SiEnterprisedb.defaultColor; +exports.SiEnvato = SiEnvato.default; +exports.SiEnvatoHex = SiEnvato.defaultColor; +exports.SiEnvoyproxy = SiEnvoyproxy.default; +exports.SiEnvoyproxyHex = SiEnvoyproxy.defaultColor; +exports.SiEpel = SiEpel.default; +exports.SiEpelHex = SiEpel.defaultColor; +exports.SiEpicgames = SiEpicgames.default; +exports.SiEpicgamesHex = SiEpicgames.defaultColor; +exports.SiEpson = SiEpson.default; +exports.SiEpsonHex = SiEpson.defaultColor; +exports.SiEquinixmetal = SiEquinixmetal.default; +exports.SiEquinixmetalHex = SiEquinixmetal.defaultColor; +exports.SiEraser = SiEraser.default; +exports.SiEraserHex = SiEraser.defaultColor; +exports.SiEricsson = SiEricsson.default; +exports.SiEricssonHex = SiEricsson.defaultColor; +exports.SiErlang = SiErlang.default; +exports.SiErlangHex = SiErlang.defaultColor; +exports.SiErpnext = SiErpnext.default; +exports.SiErpnextHex = SiErpnext.defaultColor; +exports.SiEsbuild = SiEsbuild.default; +exports.SiEsbuildHex = SiEsbuild.defaultColor; +exports.SiEsea = SiEsea.default; +exports.SiEseaHex = SiEsea.defaultColor; +exports.SiEslgaming = SiEslgaming.default; +exports.SiEslgamingHex = SiEslgaming.defaultColor; +exports.SiEslint = SiEslint.default; +exports.SiEslintHex = SiEslint.defaultColor; +exports.SiEsotericsoftware = SiEsotericsoftware.default; +exports.SiEsotericsoftwareHex = SiEsotericsoftware.defaultColor; +exports.SiEsphome = SiEsphome.default; +exports.SiEsphomeHex = SiEsphome.defaultColor; +exports.SiEspressif = SiEspressif.default; +exports.SiEspressifHex = SiEspressif.defaultColor; +exports.SiEsri = SiEsri.default; +exports.SiEsriHex = SiEsri.defaultColor; +exports.SiEtcd = SiEtcd.default; +exports.SiEtcdHex = SiEtcd.defaultColor; +exports.SiEthereum = SiEthereum.default; +exports.SiEthereumHex = SiEthereum.defaultColor; +exports.SiEthers = SiEthers.default; +exports.SiEthersHex = SiEthers.defaultColor; +exports.SiEthiopianairlines = SiEthiopianairlines.default; +exports.SiEthiopianairlinesHex = SiEthiopianairlines.defaultColor; +exports.SiEtihadairways = SiEtihadairways.default; +exports.SiEtihadairwaysHex = SiEtihadairways.defaultColor; +exports.SiEtsy = SiEtsy.default; +exports.SiEtsyHex = SiEtsy.defaultColor; +exports.SiEuropeanunion = SiEuropeanunion.default; +exports.SiEuropeanunionHex = SiEuropeanunion.defaultColor; +exports.SiEventstore = SiEventstore.default; +exports.SiEventstoreHex = SiEventstore.defaultColor; +exports.SiEvernote = SiEvernote.default; +exports.SiEvernoteHex = SiEvernote.defaultColor; +exports.SiEverydotorg = SiEverydotorg.default; +exports.SiEverydotorgHex = SiEverydotorg.defaultColor; +exports.SiExcalidraw = SiExcalidraw.default; +exports.SiExcalidrawHex = SiExcalidraw.defaultColor; +exports.SiExercism = SiExercism.default; +exports.SiExercismHex = SiExercism.defaultColor; +exports.SiExordo = SiExordo.default; +exports.SiExordoHex = SiExordo.defaultColor; +exports.SiExoscale = SiExoscale.default; +exports.SiExoscaleHex = SiExoscale.defaultColor; +exports.SiExpedia = SiExpedia.default; +exports.SiExpediaHex = SiExpedia.defaultColor; +exports.SiExpensify = SiExpensify.default; +exports.SiExpensifyHex = SiExpensify.defaultColor; +exports.SiExpertsexchange = SiExpertsexchange.default; +exports.SiExpertsexchangeHex = SiExpertsexchange.defaultColor; +exports.SiExpo = SiExpo.default; +exports.SiExpoHex = SiExpo.defaultColor; +exports.SiExpress = SiExpress.default; +exports.SiExpressHex = SiExpress.defaultColor; +exports.SiExpressdotcom = SiExpressdotcom.default; +exports.SiExpressdotcomHex = SiExpressdotcom.defaultColor; +exports.SiExpressvpn = SiExpressvpn.default; +exports.SiExpressvpnHex = SiExpressvpn.defaultColor; +exports.SiEyeem = SiEyeem.default; +exports.SiEyeemHex = SiEyeem.defaultColor; +exports.SiF1 = SiF1.default; +exports.SiF1Hex = SiF1.defaultColor; +exports.SiF5 = SiF5.default; +exports.SiF5Hex = SiF5.defaultColor; +exports.SiFacebook = SiFacebook.default; +exports.SiFacebookHex = SiFacebook.defaultColor; +exports.SiFacebookgaming = SiFacebookgaming.default; +exports.SiFacebookgamingHex = SiFacebookgaming.defaultColor; +exports.SiFacebooklive = SiFacebooklive.default; +exports.SiFacebookliveHex = SiFacebooklive.defaultColor; +exports.SiFaceit = SiFaceit.default; +exports.SiFaceitHex = SiFaceit.defaultColor; +exports.SiFacepunch = SiFacepunch.default; +exports.SiFacepunchHex = SiFacepunch.defaultColor; +exports.SiFairphone = SiFairphone.default; +exports.SiFairphoneHex = SiFairphone.defaultColor; +exports.SiFalco = SiFalco.default; +exports.SiFalcoHex = SiFalco.defaultColor; +exports.SiFalcon = SiFalcon.default; +exports.SiFalconHex = SiFalcon.defaultColor; +exports.SiFampay = SiFampay.default; +exports.SiFampayHex = SiFampay.defaultColor; +exports.SiFandango = SiFandango.default; +exports.SiFandangoHex = SiFandango.defaultColor; +exports.SiFandom = SiFandom.default; +exports.SiFandomHex = SiFandom.defaultColor; +exports.SiFanfou = SiFanfou.default; +exports.SiFanfouHex = SiFanfou.defaultColor; +exports.SiFantom = SiFantom.default; +exports.SiFantomHex = SiFantom.defaultColor; +exports.SiFarcaster = SiFarcaster.default; +exports.SiFarcasterHex = SiFarcaster.defaultColor; +exports.SiFareharbor = SiFareharbor.default; +exports.SiFareharborHex = SiFareharbor.defaultColor; +exports.SiFarfetch = SiFarfetch.default; +exports.SiFarfetchHex = SiFarfetch.defaultColor; +exports.SiFastapi = SiFastapi.default; +exports.SiFastapiHex = SiFastapi.defaultColor; +exports.SiFastify = SiFastify.default; +exports.SiFastifyHex = SiFastify.defaultColor; +exports.SiFastlane = SiFastlane.default; +exports.SiFastlaneHex = SiFastlane.defaultColor; +exports.SiFastly = SiFastly.default; +exports.SiFastlyHex = SiFastly.defaultColor; +exports.SiFathom = SiFathom.default; +exports.SiFathomHex = SiFathom.defaultColor; +exports.SiFauna = SiFauna.default; +exports.SiFaunaHex = SiFauna.defaultColor; +exports.SiFavro = SiFavro.default; +exports.SiFavroHex = SiFavro.defaultColor; +exports.SiFcc = SiFcc.default; +exports.SiFccHex = SiFcc.defaultColor; +exports.SiFdroid = SiFdroid.default; +exports.SiFdroidHex = SiFdroid.defaultColor; +exports.SiFedex = SiFedex.default; +exports.SiFedexHex = SiFedex.defaultColor; +exports.SiFedora = SiFedora.default; +exports.SiFedoraHex = SiFedora.defaultColor; +exports.SiFeedly = SiFeedly.default; +exports.SiFeedlyHex = SiFeedly.defaultColor; +exports.SiFerrari = SiFerrari.default; +exports.SiFerrariHex = SiFerrari.defaultColor; +exports.SiFerrarinv = SiFerrarinv.default; +exports.SiFerrarinvHex = SiFerrarinv.defaultColor; +exports.SiFerretdb = SiFerretdb.default; +exports.SiFerretdbHex = SiFerretdb.defaultColor; +exports.SiFfmpeg = SiFfmpeg.default; +exports.SiFfmpegHex = SiFfmpeg.defaultColor; +exports.SiFi = SiFi.default; +exports.SiFiHex = SiFi.defaultColor; +exports.SiFiat = SiFiat.default; +exports.SiFiatHex = SiFiat.defaultColor; +exports.SiFidoalliance = SiFidoalliance.default; +exports.SiFidoallianceHex = SiFidoalliance.defaultColor; +exports.SiFifa = SiFifa.default; +exports.SiFifaHex = SiFifa.defaultColor; +exports.SiFig = SiFig.default; +exports.SiFigHex = SiFig.defaultColor; +exports.SiFigma = SiFigma.default; +exports.SiFigmaHex = SiFigma.defaultColor; +exports.SiFigshare = SiFigshare.default; +exports.SiFigshareHex = SiFigshare.defaultColor; +exports.SiFila = SiFila.default; +exports.SiFilaHex = SiFila.defaultColor; +exports.SiFilament = SiFilament.default; +exports.SiFilamentHex = SiFilament.defaultColor; +exports.SiFiledotio = SiFiledotio.default; +exports.SiFiledotioHex = SiFiledotio.defaultColor; +exports.SiFilen = SiFilen.default; +exports.SiFilenHex = SiFilen.defaultColor; +exports.SiFiles = SiFiles.default; +exports.SiFilesHex = SiFiles.defaultColor; +exports.SiFilezilla = SiFilezilla.default; +exports.SiFilezillaHex = SiFilezilla.defaultColor; +exports.SiFillout = SiFillout.default; +exports.SiFilloutHex = SiFillout.defaultColor; +exports.SiFineco = SiFineco.default; +exports.SiFinecoHex = SiFineco.defaultColor; +exports.SiFing = SiFing.default; +exports.SiFingHex = SiFing.defaultColor; +exports.SiFirebase = SiFirebase.default; +exports.SiFirebaseHex = SiFirebase.defaultColor; +exports.SiFirefish = SiFirefish.default; +exports.SiFirefishHex = SiFirefish.defaultColor; +exports.SiFireflyiii = SiFireflyiii.default; +exports.SiFireflyiiiHex = SiFireflyiii.defaultColor; +exports.SiFirefox = SiFirefox.default; +exports.SiFirefoxHex = SiFirefox.defaultColor; +exports.SiFirefoxbrowser = SiFirefoxbrowser.default; +exports.SiFirefoxbrowserHex = SiFirefoxbrowser.defaultColor; +exports.SiFireship = SiFireship.default; +exports.SiFireshipHex = SiFireship.defaultColor; +exports.SiFirewalla = SiFirewalla.default; +exports.SiFirewallaHex = SiFirewalla.defaultColor; +exports.SiFirst = SiFirst.default; +exports.SiFirstHex = SiFirst.defaultColor; +exports.SiFishaudio = SiFishaudio.default; +exports.SiFishaudioHex = SiFishaudio.defaultColor; +exports.SiFishshell = SiFishshell.default; +exports.SiFishshellHex = SiFishshell.defaultColor; +exports.SiFitbit = SiFitbit.default; +exports.SiFitbitHex = SiFitbit.defaultColor; +exports.SiFivem = SiFivem.default; +exports.SiFivemHex = SiFivem.defaultColor; +exports.SiFiverr = SiFiverr.default; +exports.SiFiverrHex = SiFiverr.defaultColor; +exports.SiFizz = SiFizz.default; +exports.SiFizzHex = SiFizz.defaultColor; +exports.SiFlashforge = SiFlashforge.default; +exports.SiFlashforgeHex = SiFlashforge.defaultColor; +exports.SiFlask = SiFlask.default; +exports.SiFlaskHex = SiFlask.defaultColor; +exports.SiFlat = SiFlat.default; +exports.SiFlatHex = SiFlat.defaultColor; +exports.SiFlathub = SiFlathub.default; +exports.SiFlathubHex = SiFlathub.defaultColor; +exports.SiFlatpak = SiFlatpak.default; +exports.SiFlatpakHex = SiFlatpak.defaultColor; +exports.SiFlickr = SiFlickr.default; +exports.SiFlickrHex = SiFlickr.defaultColor; +exports.SiFlightaware = SiFlightaware.default; +exports.SiFlightawareHex = SiFlightaware.defaultColor; +exports.SiFlipboard = SiFlipboard.default; +exports.SiFlipboardHex = SiFlipboard.defaultColor; +exports.SiFloatplane = SiFloatplane.default; +exports.SiFloatplaneHex = SiFloatplane.defaultColor; +exports.SiFlood = SiFlood.default; +exports.SiFloodHex = SiFlood.defaultColor; +exports.SiFloorp = SiFloorp.default; +exports.SiFloorpHex = SiFloorp.defaultColor; +exports.SiFlower = SiFlower.default; +exports.SiFlowerHex = SiFlower.defaultColor; +exports.SiFluentbit = SiFluentbit.default; +exports.SiFluentbitHex = SiFluentbit.defaultColor; +exports.SiFluentd = SiFluentd.default; +exports.SiFluentdHex = SiFluentd.defaultColor; +exports.SiFluke = SiFluke.default; +exports.SiFlukeHex = SiFluke.defaultColor; +exports.SiFlutter = SiFlutter.default; +exports.SiFlutterHex = SiFlutter.defaultColor; +exports.SiFlux = SiFlux.default; +exports.SiFluxHex = SiFlux.defaultColor; +exports.SiFlydotio = SiFlydotio.default; +exports.SiFlydotioHex = SiFlydotio.defaultColor; +exports.SiFlyway = SiFlyway.default; +exports.SiFlywayHex = SiFlyway.defaultColor; +exports.SiFmod = SiFmod.default; +exports.SiFmodHex = SiFmod.defaultColor; +exports.SiFnac = SiFnac.default; +exports.SiFnacHex = SiFnac.defaultColor; +exports.SiFolium = SiFolium.default; +exports.SiFoliumHex = SiFolium.defaultColor; +exports.SiFolo = SiFolo.default; +exports.SiFoloHex = SiFolo.defaultColor; +exports.SiFonoma = SiFonoma.default; +exports.SiFonomaHex = SiFonoma.defaultColor; +exports.SiFontawesome = SiFontawesome.default; +exports.SiFontawesomeHex = SiFontawesome.defaultColor; +exports.SiFontbase = SiFontbase.default; +exports.SiFontbaseHex = SiFontbase.defaultColor; +exports.SiFontforge = SiFontforge.default; +exports.SiFontforgeHex = SiFontforge.defaultColor; +exports.SiFoobar2000 = SiFoobar2000.default; +exports.SiFoobar2000Hex = SiFoobar2000.defaultColor; +exports.SiFoodpanda = SiFoodpanda.default; +exports.SiFoodpandaHex = SiFoodpanda.defaultColor; +exports.SiFord = SiFord.default; +exports.SiFordHex = SiFord.defaultColor; +exports.SiForgejo = SiForgejo.default; +exports.SiForgejoHex = SiForgejo.defaultColor; +exports.SiFormbricks = SiFormbricks.default; +exports.SiFormbricksHex = SiFormbricks.defaultColor; +exports.SiFormik = SiFormik.default; +exports.SiFormikHex = SiFormik.defaultColor; +exports.SiFormspree = SiFormspree.default; +exports.SiFormspreeHex = SiFormspree.defaultColor; +exports.SiFormstack = SiFormstack.default; +exports.SiFormstackHex = SiFormstack.defaultColor; +exports.SiFortinet = SiFortinet.default; +exports.SiFortinetHex = SiFortinet.defaultColor; +exports.SiFortnite = SiFortnite.default; +exports.SiFortniteHex = SiFortnite.defaultColor; +exports.SiFortran = SiFortran.default; +exports.SiFortranHex = SiFortran.defaultColor; +exports.SiFossa = SiFossa.default; +exports.SiFossaHex = SiFossa.defaultColor; +exports.SiFossilscm = SiFossilscm.default; +exports.SiFossilscmHex = SiFossilscm.defaultColor; +exports.SiFoundryvirtualtabletop = SiFoundryvirtualtabletop.default; +exports.SiFoundryvirtualtabletopHex = SiFoundryvirtualtabletop.defaultColor; +exports.SiFoursquare = SiFoursquare.default; +exports.SiFoursquareHex = SiFoursquare.defaultColor; +exports.SiFox = SiFox.default; +exports.SiFoxHex = SiFox.defaultColor; +exports.SiFoxtel = SiFoxtel.default; +exports.SiFoxtelHex = SiFoxtel.defaultColor; +exports.SiFozzy = SiFozzy.default; +exports.SiFozzyHex = SiFozzy.defaultColor; +exports.SiFramer = SiFramer.default; +exports.SiFramerHex = SiFramer.defaultColor; +exports.SiFramework = SiFramework.default; +exports.SiFrameworkHex = SiFramework.defaultColor; +exports.SiFramework7 = SiFramework7.default; +exports.SiFramework7Hex = SiFramework7.defaultColor; +exports.SiFranprix = SiFranprix.default; +exports.SiFranprixHex = SiFranprix.defaultColor; +exports.SiFrappe = SiFrappe.default; +exports.SiFrappeHex = SiFrappe.defaultColor; +exports.SiFraunhofergesellschaft = SiFraunhofergesellschaft.default; +exports.SiFraunhofergesellschaftHex = SiFraunhofergesellschaft.defaultColor; +exports.SiFreebsd = SiFreebsd.default; +exports.SiFreebsdHex = SiFreebsd.defaultColor; +exports.SiFreecad = SiFreecad.default; +exports.SiFreecadHex = SiFreecad.defaultColor; +exports.SiFreecodecamp = SiFreecodecamp.default; +exports.SiFreecodecampHex = SiFreecodecamp.defaultColor; +exports.SiFreedesktopdotorg = SiFreedesktopdotorg.default; +exports.SiFreedesktopdotorgHex = SiFreedesktopdotorg.defaultColor; +exports.SiFreelancer = SiFreelancer.default; +exports.SiFreelancerHex = SiFreelancer.defaultColor; +exports.SiFreelancermap = SiFreelancermap.default; +exports.SiFreelancermapHex = SiFreelancermap.defaultColor; +exports.SiFreenas = SiFreenas.default; +exports.SiFreenasHex = SiFreenas.defaultColor; +exports.SiFreenet = SiFreenet.default; +exports.SiFreenetHex = SiFreenet.defaultColor; +exports.SiFreepik = SiFreepik.default; +exports.SiFreepikHex = SiFreepik.defaultColor; +exports.SiFreetube = SiFreetube.default; +exports.SiFreetubeHex = SiFreetube.defaultColor; +exports.SiFresh = SiFresh.default; +exports.SiFreshHex = SiFresh.defaultColor; +exports.SiFreshrss = SiFreshrss.default; +exports.SiFreshrssHex = SiFreshrss.defaultColor; +exports.SiFrigate = SiFrigate.default; +exports.SiFrigateHex = SiFrigate.defaultColor; +exports.SiFritz = SiFritz.default; +exports.SiFritzHex = SiFritz.defaultColor; +exports.SiFrontendmentor = SiFrontendmentor.default; +exports.SiFrontendmentorHex = SiFrontendmentor.defaultColor; +exports.SiFrontify = SiFrontify.default; +exports.SiFrontifyHex = SiFrontify.defaultColor; +exports.SiFsharp = SiFsharp.default; +exports.SiFsharpHex = SiFsharp.defaultColor; +exports.SiFubo = SiFubo.default; +exports.SiFuboHex = SiFubo.defaultColor; +exports.SiFueler = SiFueler.default; +exports.SiFuelerHex = SiFueler.defaultColor; +exports.SiFugacloud = SiFugacloud.default; +exports.SiFugacloudHex = SiFugacloud.defaultColor; +exports.SiFujifilm = SiFujifilm.default; +exports.SiFujifilmHex = SiFujifilm.defaultColor; +exports.SiFujitsu = SiFujitsu.default; +exports.SiFujitsuHex = SiFujitsu.defaultColor; +exports.SiFuraffinity = SiFuraffinity.default; +exports.SiFuraffinityHex = SiFuraffinity.defaultColor; +exports.SiFurrynetwork = SiFurrynetwork.default; +exports.SiFurrynetworkHex = SiFurrynetwork.defaultColor; +exports.SiFusionauth = SiFusionauth.default; +exports.SiFusionauthHex = SiFusionauth.defaultColor; +exports.SiFuturelearn = SiFuturelearn.default; +exports.SiFuturelearnHex = SiFuturelearn.defaultColor; +exports.SiFyle = SiFyle.default; +exports.SiFyleHex = SiFyle.defaultColor; +exports.SiG2 = SiG2.default; +exports.SiG2Hex = SiG2.defaultColor; +exports.SiG2a = SiG2a.default; +exports.SiG2aHex = SiG2a.defaultColor; +exports.SiG2g = SiG2g.default; +exports.SiG2gHex = SiG2g.defaultColor; +exports.SiGalaxus = SiGalaxus.default; +exports.SiGalaxusHex = SiGalaxus.defaultColor; +exports.SiGamebanana = SiGamebanana.default; +exports.SiGamebananaHex = SiGamebanana.defaultColor; +exports.SiGamedeveloper = SiGamedeveloper.default; +exports.SiGamedeveloperHex = SiGamedeveloper.defaultColor; +exports.SiGamejolt = SiGamejolt.default; +exports.SiGamejoltHex = SiGamejolt.defaultColor; +exports.SiGameloft = SiGameloft.default; +exports.SiGameloftHex = SiGameloft.defaultColor; +exports.SiGamemaker = SiGamemaker.default; +exports.SiGamemakerHex = SiGamemaker.defaultColor; +exports.SiGamescience = SiGamescience.default; +exports.SiGamescienceHex = SiGamescience.defaultColor; +exports.SiGandi = SiGandi.default; +exports.SiGandiHex = SiGandi.defaultColor; +exports.SiGarmin = SiGarmin.default; +exports.SiGarminHex = SiGarmin.defaultColor; +exports.SiGarudalinux = SiGarudalinux.default; +exports.SiGarudalinuxHex = SiGarudalinux.defaultColor; +exports.SiGatling = SiGatling.default; +exports.SiGatlingHex = SiGatling.defaultColor; +exports.SiGatsby = SiGatsby.default; +exports.SiGatsbyHex = SiGatsby.defaultColor; +exports.SiGcore = SiGcore.default; +exports.SiGcoreHex = SiGcore.defaultColor; +exports.SiGdal = SiGdal.default; +exports.SiGdalHex = SiGdal.defaultColor; +exports.SiGeeksforgeeks = SiGeeksforgeeks.default; +exports.SiGeeksforgeeksHex = SiGeeksforgeeks.defaultColor; +exports.SiGeneralelectric = SiGeneralelectric.default; +exports.SiGeneralelectricHex = SiGeneralelectric.defaultColor; +exports.SiGeneralmotors = SiGeneralmotors.default; +exports.SiGeneralmotorsHex = SiGeneralmotors.defaultColor; +exports.SiGenius = SiGenius.default; +exports.SiGeniusHex = SiGenius.defaultColor; +exports.SiGentoo = SiGentoo.default; +exports.SiGentooHex = SiGentoo.defaultColor; +exports.SiGeocaching = SiGeocaching.default; +exports.SiGeocachingHex = SiGeocaching.defaultColor; +exports.SiGeode = SiGeode.default; +exports.SiGeodeHex = SiGeode.defaultColor; +exports.SiGeopandas = SiGeopandas.default; +exports.SiGeopandasHex = SiGeopandas.defaultColor; +exports.SiGerrit = SiGerrit.default; +exports.SiGerritHex = SiGerrit.defaultColor; +exports.SiGetx = SiGetx.default; +exports.SiGetxHex = SiGetx.defaultColor; +exports.SiGhost = SiGhost.default; +exports.SiGhostHex = SiGhost.defaultColor; +exports.SiGhostery = SiGhostery.default; +exports.SiGhosteryHex = SiGhostery.defaultColor; +exports.SiGhostty = SiGhostty.default; +exports.SiGhosttyHex = SiGhostty.defaultColor; +exports.SiGimp = SiGimp.default; +exports.SiGimpHex = SiGimp.defaultColor; +exports.SiGin = SiGin.default; +exports.SiGinHex = SiGin.defaultColor; +exports.SiGiphy = SiGiphy.default; +exports.SiGiphyHex = SiGiphy.defaultColor; +exports.SiGit = SiGit.default; +exports.SiGitHex = SiGit.defaultColor; +exports.SiGitbook = SiGitbook.default; +exports.SiGitbookHex = SiGitbook.defaultColor; +exports.SiGitcode = SiGitcode.default; +exports.SiGitcodeHex = SiGitcode.defaultColor; +exports.SiGitconnected = SiGitconnected.default; +exports.SiGitconnectedHex = SiGitconnected.defaultColor; +exports.SiGitea = SiGitea.default; +exports.SiGiteaHex = SiGitea.defaultColor; +exports.SiGitee = SiGitee.default; +exports.SiGiteeHex = SiGitee.defaultColor; +exports.SiGitextensions = SiGitextensions.default; +exports.SiGitextensionsHex = SiGitextensions.defaultColor; +exports.SiGitforwindows = SiGitforwindows.default; +exports.SiGitforwindowsHex = SiGitforwindows.defaultColor; +exports.SiGithub = SiGithub.default; +exports.SiGithubHex = SiGithub.defaultColor; +exports.SiGithubactions = SiGithubactions.default; +exports.SiGithubactionsHex = SiGithubactions.defaultColor; +exports.SiGithubcopilot = SiGithubcopilot.default; +exports.SiGithubcopilotHex = SiGithubcopilot.defaultColor; +exports.SiGithubpages = SiGithubpages.default; +exports.SiGithubpagesHex = SiGithubpages.defaultColor; +exports.SiGithubsponsors = SiGithubsponsors.default; +exports.SiGithubsponsorsHex = SiGithubsponsors.defaultColor; +exports.SiGitignoredotio = SiGitignoredotio.default; +exports.SiGitignoredotioHex = SiGitignoredotio.defaultColor; +exports.SiGitkraken = SiGitkraken.default; +exports.SiGitkrakenHex = SiGitkraken.defaultColor; +exports.SiGitlab = SiGitlab.default; +exports.SiGitlabHex = SiGitlab.defaultColor; +exports.SiGitlfs = SiGitlfs.default; +exports.SiGitlfsHex = SiGitlfs.defaultColor; +exports.SiGitpod = SiGitpod.default; +exports.SiGitpodHex = SiGitpod.defaultColor; +exports.SiGitter = SiGitter.default; +exports.SiGitterHex = SiGitter.defaultColor; +exports.SiGlance = SiGlance.default; +exports.SiGlanceHex = SiGlance.defaultColor; +exports.SiGlassdoor = SiGlassdoor.default; +exports.SiGlassdoorHex = SiGlassdoor.defaultColor; +exports.SiGldotinet = SiGldotinet.default; +exports.SiGldotinetHex = SiGldotinet.defaultColor; +exports.SiGleam = SiGleam.default; +exports.SiGleamHex = SiGleam.defaultColor; +exports.SiGlide = SiGlide.default; +exports.SiGlideHex = SiGlide.defaultColor; +exports.SiGlitch = SiGlitch.default; +exports.SiGlitchHex = SiGlitch.defaultColor; +exports.SiGlobus = SiGlobus.default; +exports.SiGlobusHex = SiGlobus.defaultColor; +exports.SiGlovo = SiGlovo.default; +exports.SiGlovoHex = SiGlovo.defaultColor; +exports.SiGltf = SiGltf.default; +exports.SiGltfHex = SiGltf.defaultColor; +exports.SiGmail = SiGmail.default; +exports.SiGmailHex = SiGmail.defaultColor; +exports.SiGmx = SiGmx.default; +exports.SiGmxHex = SiGmx.defaultColor; +exports.SiGnome = SiGnome.default; +exports.SiGnomeHex = SiGnome.defaultColor; +exports.SiGnometerminal = SiGnometerminal.default; +exports.SiGnometerminalHex = SiGnometerminal.defaultColor; +exports.SiGnu = SiGnu.default; +exports.SiGnuHex = SiGnu.defaultColor; +exports.SiGnubash = SiGnubash.default; +exports.SiGnubashHex = SiGnubash.defaultColor; +exports.SiGnuemacs = SiGnuemacs.default; +exports.SiGnuemacsHex = SiGnuemacs.defaultColor; +exports.SiGnuicecat = SiGnuicecat.default; +exports.SiGnuicecatHex = SiGnuicecat.defaultColor; +exports.SiGnuprivacyguard = SiGnuprivacyguard.default; +exports.SiGnuprivacyguardHex = SiGnuprivacyguard.defaultColor; +exports.SiGnusocial = SiGnusocial.default; +exports.SiGnusocialHex = SiGnusocial.defaultColor; +exports.SiGo = SiGo.default; +exports.SiGoHex = SiGo.defaultColor; +exports.SiGocd = SiGocd.default; +exports.SiGocdHex = SiGocd.defaultColor; +exports.SiGodaddy = SiGodaddy.default; +exports.SiGodaddyHex = SiGodaddy.defaultColor; +exports.SiGodotengine = SiGodotengine.default; +exports.SiGodotengineHex = SiGodotengine.defaultColor; +exports.SiGofundme = SiGofundme.default; +exports.SiGofundmeHex = SiGofundme.defaultColor; +exports.SiGogdotcom = SiGogdotcom.default; +exports.SiGogdotcomHex = SiGogdotcom.defaultColor; +exports.SiGojek = SiGojek.default; +exports.SiGojekHex = SiGojek.defaultColor; +exports.SiGoland = SiGoland.default; +exports.SiGolandHex = SiGoland.defaultColor; +exports.SiGoldmansachs = SiGoldmansachs.default; +exports.SiGoldmansachsHex = SiGoldmansachs.defaultColor; +exports.SiGoodreads = SiGoodreads.default; +exports.SiGoodreadsHex = SiGoodreads.defaultColor; +exports.SiGoogle = SiGoogle.default; +exports.SiGoogleHex = SiGoogle.defaultColor; +exports.SiGoogleadmob = SiGoogleadmob.default; +exports.SiGoogleadmobHex = SiGoogleadmob.defaultColor; +exports.SiGoogleads = SiGoogleads.default; +exports.SiGoogleadsHex = SiGoogleads.defaultColor; +exports.SiGoogleadsense = SiGoogleadsense.default; +exports.SiGoogleadsenseHex = SiGoogleadsense.defaultColor; +exports.SiGoogleanalytics = SiGoogleanalytics.default; +exports.SiGoogleanalyticsHex = SiGoogleanalytics.defaultColor; +exports.SiGoogleappsscript = SiGoogleappsscript.default; +exports.SiGoogleappsscriptHex = SiGoogleappsscript.defaultColor; +exports.SiGoogleassistant = SiGoogleassistant.default; +exports.SiGoogleassistantHex = SiGoogleassistant.defaultColor; +exports.SiGoogleauthenticator = SiGoogleauthenticator.default; +exports.SiGoogleauthenticatorHex = SiGoogleauthenticator.defaultColor; +exports.SiGooglebigquery = SiGooglebigquery.default; +exports.SiGooglebigqueryHex = SiGooglebigquery.defaultColor; +exports.SiGooglebigtable = SiGooglebigtable.default; +exports.SiGooglebigtableHex = SiGooglebigtable.defaultColor; +exports.SiGooglecalendar = SiGooglecalendar.default; +exports.SiGooglecalendarHex = SiGooglecalendar.defaultColor; +exports.SiGooglecampaignmanager360 = SiGooglecampaignmanager360.default; +exports.SiGooglecampaignmanager360Hex = SiGooglecampaignmanager360.defaultColor; +exports.SiGooglecardboard = SiGooglecardboard.default; +exports.SiGooglecardboardHex = SiGooglecardboard.defaultColor; +exports.SiGooglecast = SiGooglecast.default; +exports.SiGooglecastHex = SiGooglecast.defaultColor; +exports.SiGooglechat = SiGooglechat.default; +exports.SiGooglechatHex = SiGooglechat.defaultColor; +exports.SiGooglechrome = SiGooglechrome.default; +exports.SiGooglechromeHex = SiGooglechrome.defaultColor; +exports.SiGooglechronicle = SiGooglechronicle.default; +exports.SiGooglechronicleHex = SiGooglechronicle.defaultColor; +exports.SiGoogleclassroom = SiGoogleclassroom.default; +exports.SiGoogleclassroomHex = SiGoogleclassroom.defaultColor; +exports.SiGooglecloud = SiGooglecloud.default; +exports.SiGooglecloudHex = SiGooglecloud.defaultColor; +exports.SiGooglecloudcomposer = SiGooglecloudcomposer.default; +exports.SiGooglecloudcomposerHex = SiGooglecloudcomposer.defaultColor; +exports.SiGooglecloudspanner = SiGooglecloudspanner.default; +exports.SiGooglecloudspannerHex = SiGooglecloudspanner.defaultColor; +exports.SiGooglecloudstorage = SiGooglecloudstorage.default; +exports.SiGooglecloudstorageHex = SiGooglecloudstorage.defaultColor; +exports.SiGooglecolab = SiGooglecolab.default; +exports.SiGooglecolabHex = SiGooglecolab.defaultColor; +exports.SiGooglecontaineroptimizedos = SiGooglecontaineroptimizedos.default; +exports.SiGooglecontaineroptimizedosHex = SiGooglecontaineroptimizedos.defaultColor; +exports.SiGoogledataflow = SiGoogledataflow.default; +exports.SiGoogledataflowHex = SiGoogledataflow.defaultColor; +exports.SiGoogledataproc = SiGoogledataproc.default; +exports.SiGoogledataprocHex = SiGoogledataproc.defaultColor; +exports.SiGoogledisplayandvideo360 = SiGoogledisplayandvideo360.default; +exports.SiGoogledisplayandvideo360Hex = SiGoogledisplayandvideo360.defaultColor; +exports.SiGoogledocs = SiGoogledocs.default; +exports.SiGoogledocsHex = SiGoogledocs.defaultColor; +exports.SiGoogledrive = SiGoogledrive.default; +exports.SiGoogledriveHex = SiGoogledrive.defaultColor; +exports.SiGoogleearth = SiGoogleearth.default; +exports.SiGoogleearthHex = SiGoogleearth.defaultColor; +exports.SiGoogleearthengine = SiGoogleearthengine.default; +exports.SiGoogleearthengineHex = SiGoogleearthengine.defaultColor; +exports.SiGooglefonts = SiGooglefonts.default; +exports.SiGooglefontsHex = SiGooglefonts.defaultColor; +exports.SiGoogleforms = SiGoogleforms.default; +exports.SiGoogleformsHex = SiGoogleforms.defaultColor; +exports.SiGooglegemini = SiGooglegemini.default; +exports.SiGooglegeminiHex = SiGooglegemini.defaultColor; +exports.SiGooglehome = SiGooglehome.default; +exports.SiGooglehomeHex = SiGooglehome.defaultColor; +exports.SiGooglejules = SiGooglejules.default; +exports.SiGooglejulesHex = SiGooglejules.defaultColor; +exports.SiGooglekeep = SiGooglekeep.default; +exports.SiGooglekeepHex = SiGooglekeep.defaultColor; +exports.SiGooglelens = SiGooglelens.default; +exports.SiGooglelensHex = SiGooglelens.defaultColor; +exports.SiGooglemaps = SiGooglemaps.default; +exports.SiGooglemapsHex = SiGooglemaps.defaultColor; +exports.SiGooglemarketingplatform = SiGooglemarketingplatform.default; +exports.SiGooglemarketingplatformHex = SiGooglemarketingplatform.defaultColor; +exports.SiGooglemeet = SiGooglemeet.default; +exports.SiGooglemeetHex = SiGooglemeet.defaultColor; +exports.SiGooglemessages = SiGooglemessages.default; +exports.SiGooglemessagesHex = SiGooglemessages.defaultColor; +exports.SiGooglenearby = SiGooglenearby.default; +exports.SiGooglenearbyHex = SiGooglenearby.defaultColor; +exports.SiGooglenews = SiGooglenews.default; +exports.SiGooglenewsHex = SiGooglenews.defaultColor; +exports.SiGooglepay = SiGooglepay.default; +exports.SiGooglepayHex = SiGooglepay.defaultColor; +exports.SiGooglephotos = SiGooglephotos.default; +exports.SiGooglephotosHex = SiGooglephotos.defaultColor; +exports.SiGoogleplay = SiGoogleplay.default; +exports.SiGoogleplayHex = SiGoogleplay.defaultColor; +exports.SiGooglepubsub = SiGooglepubsub.default; +exports.SiGooglepubsubHex = SiGooglepubsub.defaultColor; +exports.SiGooglescholar = SiGooglescholar.default; +exports.SiGooglescholarHex = SiGooglescholar.defaultColor; +exports.SiGooglesearchconsole = SiGooglesearchconsole.default; +exports.SiGooglesearchconsoleHex = SiGooglesearchconsole.defaultColor; +exports.SiGooglesheets = SiGooglesheets.default; +exports.SiGooglesheetsHex = SiGooglesheets.defaultColor; +exports.SiGoogleslides = SiGoogleslides.default; +exports.SiGoogleslidesHex = SiGoogleslides.defaultColor; +exports.SiGooglestreetview = SiGooglestreetview.default; +exports.SiGooglestreetviewHex = SiGooglestreetview.defaultColor; +exports.SiGooglesummerofcode = SiGooglesummerofcode.default; +exports.SiGooglesummerofcodeHex = SiGooglesummerofcode.defaultColor; +exports.SiGoogletagmanager = SiGoogletagmanager.default; +exports.SiGoogletagmanagerHex = SiGoogletagmanager.defaultColor; +exports.SiGoogletasks = SiGoogletasks.default; +exports.SiGoogletasksHex = SiGoogletasks.defaultColor; +exports.SiGoogletranslate = SiGoogletranslate.default; +exports.SiGoogletranslateHex = SiGoogletranslate.defaultColor; +exports.SiGoogletv = SiGoogletv.default; +exports.SiGoogletvHex = SiGoogletv.defaultColor; +exports.SiGotomeeting = SiGotomeeting.default; +exports.SiGotomeetingHex = SiGotomeeting.defaultColor; +exports.SiGplv3 = SiGplv3.default; +exports.SiGplv3Hex = SiGplv3.defaultColor; +exports.SiGrab = SiGrab.default; +exports.SiGrabHex = SiGrab.defaultColor; +exports.SiGradio = SiGradio.default; +exports.SiGradioHex = SiGradio.defaultColor; +exports.SiGradle = SiGradle.default; +exports.SiGradleHex = SiGradle.defaultColor; +exports.SiGradleplaypublisher = SiGradleplaypublisher.default; +exports.SiGradleplaypublisherHex = SiGradleplaypublisher.defaultColor; +exports.SiGrafana = SiGrafana.default; +exports.SiGrafanaHex = SiGrafana.defaultColor; +exports.SiGrammarly = SiGrammarly.default; +exports.SiGrammarlyHex = SiGrammarly.defaultColor; +exports.SiGrandfrais = SiGrandfrais.default; +exports.SiGrandfraisHex = SiGrandfrais.defaultColor; +exports.SiGrapheneos = SiGrapheneos.default; +exports.SiGrapheneosHex = SiGrapheneos.defaultColor; +exports.SiGraphite = SiGraphite.default; +exports.SiGraphiteHex = SiGraphite.defaultColor; +exports.SiGraphiteEditor = SiGraphiteEditor.default; +exports.SiGraphiteEditorHex = SiGraphiteEditor.defaultColor; +exports.SiGraphql = SiGraphql.default; +exports.SiGraphqlHex = SiGraphql.defaultColor; +exports.SiGrav = SiGrav.default; +exports.SiGravHex = SiGrav.defaultColor; +exports.SiGravatar = SiGravatar.default; +exports.SiGravatarHex = SiGravatar.defaultColor; +exports.SiGraylog = SiGraylog.default; +exports.SiGraylogHex = SiGraylog.defaultColor; +exports.SiGreasyfork = SiGreasyfork.default; +exports.SiGreasyforkHex = SiGreasyfork.defaultColor; +exports.SiGreatlearning = SiGreatlearning.default; +exports.SiGreatlearningHex = SiGreatlearning.defaultColor; +exports.SiGreenhouse = SiGreenhouse.default; +exports.SiGreenhouseHex = SiGreenhouse.defaultColor; +exports.SiGreensock = SiGreensock.default; +exports.SiGreensockHex = SiGreensock.defaultColor; +exports.SiGreptimedb = SiGreptimedb.default; +exports.SiGreptimedbHex = SiGreptimedb.defaultColor; +exports.SiGriddotai = SiGriddotai.default; +exports.SiGriddotaiHex = SiGriddotai.defaultColor; +exports.SiGridsome = SiGridsome.default; +exports.SiGridsomeHex = SiGridsome.defaultColor; +exports.SiGrocy = SiGrocy.default; +exports.SiGrocyHex = SiGrocy.defaultColor; +exports.SiGroupme = SiGroupme.default; +exports.SiGroupmeHex = SiGroupme.defaultColor; +exports.SiGroupon = SiGroupon.default; +exports.SiGrouponHex = SiGroupon.defaultColor; +exports.SiGrunt = SiGrunt.default; +exports.SiGruntHex = SiGrunt.defaultColor; +exports.SiGsap = SiGsap.default; +exports.SiGsapHex = SiGsap.defaultColor; +exports.SiGsk = SiGsk.default; +exports.SiGskHex = SiGsk.defaultColor; +exports.SiGsma = SiGsma.default; +exports.SiGsmaHex = SiGsma.defaultColor; +exports.SiGsmarenadotcom = SiGsmarenadotcom.default; +exports.SiGsmarenadotcomHex = SiGsmarenadotcom.defaultColor; +exports.SiGstreamer = SiGstreamer.default; +exports.SiGstreamerHex = SiGstreamer.defaultColor; +exports.SiGtk = SiGtk.default; +exports.SiGtkHex = SiGtk.defaultColor; +exports.SiGuangzhoumetro = SiGuangzhoumetro.default; +exports.SiGuangzhoumetroHex = SiGuangzhoumetro.defaultColor; +exports.SiGuilded = SiGuilded.default; +exports.SiGuildedHex = SiGuilded.defaultColor; +exports.SiGuitarpro = SiGuitarpro.default; +exports.SiGuitarproHex = SiGuitarpro.defaultColor; +exports.SiGulp = SiGulp.default; +exports.SiGulpHex = SiGulp.defaultColor; +exports.SiGumroad = SiGumroad.default; +exports.SiGumroadHex = SiGumroad.defaultColor; +exports.SiGumtree = SiGumtree.default; +exports.SiGumtreeHex = SiGumtree.defaultColor; +exports.SiGunicorn = SiGunicorn.default; +exports.SiGunicornHex = SiGunicorn.defaultColor; +exports.SiGurobi = SiGurobi.default; +exports.SiGurobiHex = SiGurobi.defaultColor; +exports.SiGusto = SiGusto.default; +exports.SiGustoHex = SiGusto.defaultColor; +exports.SiGutenberg = SiGutenberg.default; +exports.SiGutenbergHex = SiGutenberg.defaultColor; +exports.SiH2database = SiH2database.default; +exports.SiH2databaseHex = SiH2database.defaultColor; +exports.SiH3 = SiH3.default; +exports.SiH3Hex = SiH3.defaultColor; +exports.SiHabr = SiHabr.default; +exports.SiHabrHex = SiHabr.defaultColor; +exports.SiHackaday = SiHackaday.default; +exports.SiHackadayHex = SiHackaday.defaultColor; +exports.SiHackclub = SiHackclub.default; +exports.SiHackclubHex = SiHackclub.defaultColor; +exports.SiHackerearth = SiHackerearth.default; +exports.SiHackerearthHex = SiHackerearth.defaultColor; +exports.SiHackernoon = SiHackernoon.default; +exports.SiHackernoonHex = SiHackernoon.defaultColor; +exports.SiHackerone = SiHackerone.default; +exports.SiHackeroneHex = SiHackerone.defaultColor; +exports.SiHackerrank = SiHackerrank.default; +exports.SiHackerrankHex = SiHackerrank.defaultColor; +exports.SiHackmd = SiHackmd.default; +exports.SiHackmdHex = SiHackmd.defaultColor; +exports.SiHackster = SiHackster.default; +exports.SiHacksterHex = SiHackster.defaultColor; +exports.SiHackthebox = SiHackthebox.default; +exports.SiHacktheboxHex = SiHackthebox.defaultColor; +exports.SiHal = SiHal.default; +exports.SiHalHex = SiHal.defaultColor; +exports.SiHandlebarsdotjs = SiHandlebarsdotjs.default; +exports.SiHandlebarsdotjsHex = SiHandlebarsdotjs.defaultColor; +exports.SiHandm = SiHandm.default; +exports.SiHandmHex = SiHandm.defaultColor; +exports.SiHandshake = SiHandshake.default; +exports.SiHandshakeHex = SiHandshake.defaultColor; +exports.SiHandshakeProtocol = SiHandshakeProtocol.default; +exports.SiHandshakeProtocolHex = SiHandshakeProtocol.defaultColor; +exports.SiHappycow = SiHappycow.default; +exports.SiHappycowHex = SiHappycow.defaultColor; +exports.SiHarbor = SiHarbor.default; +exports.SiHarborHex = SiHarbor.defaultColor; +exports.SiHarmonyos = SiHarmonyos.default; +exports.SiHarmonyosHex = SiHarmonyos.defaultColor; +exports.SiHashcat = SiHashcat.default; +exports.SiHashcatHex = SiHashcat.defaultColor; +exports.SiHashicorp = SiHashicorp.default; +exports.SiHashicorpHex = SiHashicorp.defaultColor; +exports.SiHashnode = SiHashnode.default; +exports.SiHashnodeHex = SiHashnode.defaultColor; +exports.SiHaskell = SiHaskell.default; +exports.SiHaskellHex = SiHaskell.defaultColor; +exports.SiHasura = SiHasura.default; +exports.SiHasuraHex = SiHasura.defaultColor; +exports.SiHatenabookmark = SiHatenabookmark.default; +exports.SiHatenabookmarkHex = SiHatenabookmark.defaultColor; +exports.SiHaveibeenpwned = SiHaveibeenpwned.default; +exports.SiHaveibeenpwnedHex = SiHaveibeenpwned.defaultColor; +exports.SiHavells = SiHavells.default; +exports.SiHavellsHex = SiHavells.defaultColor; +exports.SiHaxe = SiHaxe.default; +exports.SiHaxeHex = SiHaxe.defaultColor; +exports.SiHaystack = SiHaystack.default; +exports.SiHaystackHex = SiHaystack.defaultColor; +exports.SiHbo = SiHbo.default; +exports.SiHboHex = SiHbo.defaultColor; +exports.SiHbomax = SiHbomax.default; +exports.SiHbomaxHex = SiHbomax.defaultColor; +exports.SiHcl = SiHcl.default; +exports.SiHclHex = SiHcl.defaultColor; +exports.SiHdfcbank = SiHdfcbank.default; +exports.SiHdfcbankHex = SiHdfcbank.defaultColor; +exports.SiHeadlessui = SiHeadlessui.default; +exports.SiHeadlessuiHex = SiHeadlessui.defaultColor; +exports.SiHeadphonezone = SiHeadphonezone.default; +exports.SiHeadphonezoneHex = SiHeadphonezone.defaultColor; +exports.SiHeadspace = SiHeadspace.default; +exports.SiHeadspaceHex = SiHeadspace.defaultColor; +exports.SiHearth = SiHearth.default; +exports.SiHearthHex = SiHearth.defaultColor; +exports.SiHearthisdotat = SiHearthisdotat.default; +exports.SiHearthisdotatHex = SiHearthisdotat.defaultColor; +exports.SiHedera = SiHedera.default; +exports.SiHederaHex = SiHedera.defaultColor; +exports.SiHedgedoc = SiHedgedoc.default; +exports.SiHedgedocHex = SiHedgedoc.defaultColor; +exports.SiHelium = SiHelium.default; +exports.SiHeliumHex = SiHelium.defaultColor; +exports.SiHelix = SiHelix.default; +exports.SiHelixHex = SiHelix.defaultColor; +exports.SiHellofresh = SiHellofresh.default; +exports.SiHellofreshHex = SiHellofresh.defaultColor; +exports.SiHellyhansen = SiHellyhansen.default; +exports.SiHellyhansenHex = SiHellyhansen.defaultColor; +exports.SiHelm = SiHelm.default; +exports.SiHelmHex = SiHelm.defaultColor; +exports.SiHelpdesk = SiHelpdesk.default; +exports.SiHelpdeskHex = SiHelpdesk.defaultColor; +exports.SiHelpscout = SiHelpscout.default; +exports.SiHelpscoutHex = SiHelpscout.defaultColor; +exports.SiHepsiemlak = SiHepsiemlak.default; +exports.SiHepsiemlakHex = SiHepsiemlak.defaultColor; +exports.SiHere = SiHere.default; +exports.SiHereHex = SiHere.defaultColor; +exports.SiHermes = SiHermes.default; +exports.SiHermesHex = SiHermes.defaultColor; +exports.SiHeroicgameslauncher = SiHeroicgameslauncher.default; +exports.SiHeroicgameslauncherHex = SiHeroicgameslauncher.defaultColor; +exports.SiHeroui = SiHeroui.default; +exports.SiHerouiHex = SiHeroui.defaultColor; +exports.SiHetzner = SiHetzner.default; +exports.SiHetznerHex = SiHetzner.defaultColor; +exports.SiHevy = SiHevy.default; +exports.SiHevyHex = SiHevy.defaultColor; +exports.SiHexlet = SiHexlet.default; +exports.SiHexletHex = SiHexlet.defaultColor; +exports.SiHexo = SiHexo.default; +exports.SiHexoHex = SiHexo.defaultColor; +exports.SiHey = SiHey.default; +exports.SiHeyHex = SiHey.defaultColor; +exports.SiHibernate = SiHibernate.default; +exports.SiHibernateHex = SiHibernate.defaultColor; +exports.SiHibob = SiHibob.default; +exports.SiHibobHex = SiHibob.defaultColor; +exports.SiHilton = SiHilton.default; +exports.SiHiltonHex = SiHilton.defaultColor; +exports.SiHiltonhotelsandresorts = SiHiltonhotelsandresorts.default; +exports.SiHiltonhotelsandresortsHex = SiHiltonhotelsandresorts.defaultColor; +exports.SiHitachi = SiHitachi.default; +exports.SiHitachiHex = SiHitachi.defaultColor; +exports.SiHive = SiHive.default; +exports.SiHiveHex = SiHive.defaultColor; +exports.SiHiveBlockchain = SiHiveBlockchain.default; +exports.SiHiveBlockchainHex = SiHiveBlockchain.defaultColor; +exports.SiHivemq = SiHivemq.default; +exports.SiHivemqHex = SiHivemq.defaultColor; +exports.SiHomarr = SiHomarr.default; +exports.SiHomarrHex = SiHomarr.defaultColor; +exports.SiHomeadvisor = SiHomeadvisor.default; +exports.SiHomeadvisorHex = SiHomeadvisor.defaultColor; +exports.SiHomeassistant = SiHomeassistant.default; +exports.SiHomeassistantHex = SiHomeassistant.defaultColor; +exports.SiHomeassistantcommunitystore = SiHomeassistantcommunitystore.default; +exports.SiHomeassistantcommunitystoreHex = SiHomeassistantcommunitystore.defaultColor; +exports.SiHomebrew = SiHomebrew.default; +exports.SiHomebrewHex = SiHomebrew.defaultColor; +exports.SiHomebridge = SiHomebridge.default; +exports.SiHomebridgeHex = SiHomebridge.defaultColor; +exports.SiHomepage = SiHomepage.default; +exports.SiHomepageHex = SiHomepage.defaultColor; +exports.SiHomify = SiHomify.default; +exports.SiHomifyHex = SiHomify.defaultColor; +exports.SiHonda = SiHonda.default; +exports.SiHondaHex = SiHonda.defaultColor; +exports.SiHoney = SiHoney.default; +exports.SiHoneyHex = SiHoney.defaultColor; +exports.SiHoneybadger = SiHoneybadger.default; +exports.SiHoneybadgerHex = SiHoneybadger.defaultColor; +exports.SiHoneygain = SiHoneygain.default; +exports.SiHoneygainHex = SiHoneygain.defaultColor; +exports.SiHono = SiHono.default; +exports.SiHonoHex = SiHono.defaultColor; +exports.SiHonor = SiHonor.default; +exports.SiHonorHex = SiHonor.defaultColor; +exports.SiHootsuite = SiHootsuite.default; +exports.SiHootsuiteHex = SiHootsuite.defaultColor; +exports.SiHoppscotch = SiHoppscotch.default; +exports.SiHoppscotchHex = SiHoppscotch.defaultColor; +exports.SiHostinger = SiHostinger.default; +exports.SiHostingerHex = SiHostinger.defaultColor; +exports.SiHotelsdotcom = SiHotelsdotcom.default; +exports.SiHotelsdotcomHex = SiHotelsdotcom.defaultColor; +exports.SiHotjar = SiHotjar.default; +exports.SiHotjarHex = SiHotjar.defaultColor; +exports.SiHotwire = SiHotwire.default; +exports.SiHotwireHex = SiHotwire.defaultColor; +exports.SiHoudini = SiHoudini.default; +exports.SiHoudiniHex = SiHoudini.defaultColor; +exports.SiHouzz = SiHouzz.default; +exports.SiHouzzHex = SiHouzz.defaultColor; +exports.SiHp = SiHp.default; +exports.SiHpHex = SiHp.defaultColor; +exports.SiHsbc = SiHsbc.default; +exports.SiHsbcHex = SiHsbc.defaultColor; +exports.SiHtc = SiHtc.default; +exports.SiHtcHex = SiHtc.defaultColor; +exports.SiHtcvive = SiHtcvive.default; +exports.SiHtcviveHex = SiHtcvive.defaultColor; +exports.SiHtml5 = SiHtml5.default; +exports.SiHtml5Hex = SiHtml5.defaultColor; +exports.SiHtmlacademy = SiHtmlacademy.default; +exports.SiHtmlacademyHex = SiHtmlacademy.defaultColor; +exports.SiHtmx = SiHtmx.default; +exports.SiHtmxHex = SiHtmx.defaultColor; +exports.SiHtop = SiHtop.default; +exports.SiHtopHex = SiHtop.defaultColor; +exports.SiHttpie = SiHttpie.default; +exports.SiHttpieHex = SiHttpie.defaultColor; +exports.SiHuawei = SiHuawei.default; +exports.SiHuaweiHex = SiHuawei.defaultColor; +exports.SiHubspot = SiHubspot.default; +exports.SiHubspotHex = SiHubspot.defaultColor; +exports.SiHuggingface = SiHuggingface.default; +exports.SiHuggingfaceHex = SiHuggingface.defaultColor; +exports.SiHugo = SiHugo.default; +exports.SiHugoHex = SiHugo.defaultColor; +exports.SiHumblebundle = SiHumblebundle.default; +exports.SiHumblebundleHex = SiHumblebundle.defaultColor; +exports.SiHumhub = SiHumhub.default; +exports.SiHumhubHex = SiHumhub.defaultColor; +exports.SiHungryjacks = SiHungryjacks.default; +exports.SiHungryjacksHex = SiHungryjacks.defaultColor; +exports.SiHusqvarna = SiHusqvarna.default; +exports.SiHusqvarnaHex = SiHusqvarna.defaultColor; +exports.SiHyper = SiHyper.default; +exports.SiHyperHex = SiHyper.defaultColor; +exports.SiHyperskill = SiHyperskill.default; +exports.SiHyperskillHex = SiHyperskill.defaultColor; +exports.SiHyperx = SiHyperx.default; +exports.SiHyperxHex = SiHyperx.defaultColor; +exports.SiHypothesis = SiHypothesis.default; +exports.SiHypothesisHex = SiHypothesis.defaultColor; +exports.SiHyprland = SiHyprland.default; +exports.SiHyprlandHex = SiHyprland.defaultColor; +exports.SiHyundai = SiHyundai.default; +exports.SiHyundaiHex = SiHyundai.defaultColor; +exports.SiI18next = SiI18next.default; +exports.SiI18nextHex = SiI18next.defaultColor; +exports.SiI3 = SiI3.default; +exports.SiI3Hex = SiI3.defaultColor; +exports.SiIata = SiIata.default; +exports.SiIataHex = SiIata.defaultColor; +exports.SiIbeacon = SiIbeacon.default; +exports.SiIbeaconHex = SiIbeacon.defaultColor; +exports.SiIberia = SiIberia.default; +exports.SiIberiaHex = SiIberia.defaultColor; +exports.SiIced = SiIced.default; +exports.SiIcedHex = SiIced.defaultColor; +exports.SiIceland = SiIceland.default; +exports.SiIcelandHex = SiIceland.defaultColor; +exports.SiIcicibank = SiIcicibank.default; +exports.SiIcicibankHex = SiIcicibank.defaultColor; +exports.SiIcinga = SiIcinga.default; +exports.SiIcingaHex = SiIcinga.defaultColor; +exports.SiIcloud = SiIcloud.default; +exports.SiIcloudHex = SiIcloud.defaultColor; +exports.SiIcomoon = SiIcomoon.default; +exports.SiIcomoonHex = SiIcomoon.defaultColor; +exports.SiIcon = SiIcon.default; +exports.SiIconHex = SiIcon.defaultColor; +exports.SiIconfinder = SiIconfinder.default; +exports.SiIconfinderHex = SiIconfinder.defaultColor; +exports.SiIconify = SiIconify.default; +exports.SiIconifyHex = SiIconify.defaultColor; +exports.SiIconjar = SiIconjar.default; +exports.SiIconjarHex = SiIconjar.defaultColor; +exports.SiIcons8 = SiIcons8.default; +exports.SiIcons8Hex = SiIcons8.defaultColor; +exports.SiIcq = SiIcq.default; +exports.SiIcqHex = SiIcq.defaultColor; +exports.SiIeee = SiIeee.default; +exports.SiIeeeHex = SiIeee.defaultColor; +exports.SiIfixit = SiIfixit.default; +exports.SiIfixitHex = SiIfixit.defaultColor; +exports.SiIfood = SiIfood.default; +exports.SiIfoodHex = SiIfood.defaultColor; +exports.SiIfttt = SiIfttt.default; +exports.SiIftttHex = SiIfttt.defaultColor; +exports.SiIgdb = SiIgdb.default; +exports.SiIgdbHex = SiIgdb.defaultColor; +exports.SiIgn = SiIgn.default; +exports.SiIgnHex = SiIgn.defaultColor; +exports.SiIheartradio = SiIheartradio.default; +exports.SiIheartradioHex = SiIheartradio.defaultColor; +exports.SiIkea = SiIkea.default; +exports.SiIkeaHex = SiIkea.defaultColor; +exports.SiIledefrancemobilites = SiIledefrancemobilites.default; +exports.SiIledefrancemobilitesHex = SiIledefrancemobilites.defaultColor; +exports.SiIlovepdf = SiIlovepdf.default; +exports.SiIlovepdfHex = SiIlovepdf.defaultColor; +exports.SiImagedotsc = SiImagedotsc.default; +exports.SiImagedotscHex = SiImagedotsc.defaultColor; +exports.SiImagej = SiImagej.default; +exports.SiImagejHex = SiImagej.defaultColor; +exports.SiImagetoolbox = SiImagetoolbox.default; +exports.SiImagetoolboxHex = SiImagetoolbox.defaultColor; +exports.SiImdb = SiImdb.default; +exports.SiImdbHex = SiImdb.defaultColor; +exports.SiImessage = SiImessage.default; +exports.SiImessageHex = SiImessage.defaultColor; +exports.SiImgur = SiImgur.default; +exports.SiImgurHex = SiImgur.defaultColor; +exports.SiImmer = SiImmer.default; +exports.SiImmerHex = SiImmer.defaultColor; +exports.SiImmersivetranslate = SiImmersivetranslate.default; +exports.SiImmersivetranslateHex = SiImmersivetranslate.defaultColor; +exports.SiImmich = SiImmich.default; +exports.SiImmichHex = SiImmich.defaultColor; +exports.SiImou = SiImou.default; +exports.SiImouHex = SiImou.defaultColor; +exports.SiImprovmx = SiImprovmx.default; +exports.SiImprovmxHex = SiImprovmx.defaultColor; +exports.SiIndeed = SiIndeed.default; +exports.SiIndeedHex = SiIndeed.defaultColor; +exports.SiIndiansuperleague = SiIndiansuperleague.default; +exports.SiIndiansuperleagueHex = SiIndiansuperleague.defaultColor; +exports.SiIndiehackers = SiIndiehackers.default; +exports.SiIndiehackersHex = SiIndiehackers.defaultColor; +exports.SiIndigo = SiIndigo.default; +exports.SiIndigoHex = SiIndigo.defaultColor; +exports.SiInductiveautomation = SiInductiveautomation.default; +exports.SiInductiveautomationHex = SiInductiveautomation.defaultColor; +exports.SiInertia = SiInertia.default; +exports.SiInertiaHex = SiInertia.defaultColor; +exports.SiInfiniti = SiInfiniti.default; +exports.SiInfinitiHex = SiInfiniti.defaultColor; +exports.SiInfinityfree = SiInfinityfree.default; +exports.SiInfinityfreeHex = SiInfinityfree.defaultColor; +exports.SiInfluxdb = SiInfluxdb.default; +exports.SiInfluxdbHex = SiInfluxdb.defaultColor; +exports.SiInfomaniak = SiInfomaniak.default; +exports.SiInfomaniakHex = SiInfomaniak.defaultColor; +exports.SiInfoq = SiInfoq.default; +exports.SiInfoqHex = SiInfoq.defaultColor; +exports.SiInfosys = SiInfosys.default; +exports.SiInfosysHex = SiInfosys.defaultColor; +exports.SiInfracost = SiInfracost.default; +exports.SiInfracostHex = SiInfracost.defaultColor; +exports.SiInfuse = SiInfuse.default; +exports.SiInfuseHex = SiInfuse.defaultColor; +exports.SiIngress = SiIngress.default; +exports.SiIngressHex = SiIngress.defaultColor; +exports.SiInkdrop = SiInkdrop.default; +exports.SiInkdropHex = SiInkdrop.defaultColor; +exports.SiInkscape = SiInkscape.default; +exports.SiInkscapeHex = SiInkscape.defaultColor; +exports.SiInoreader = SiInoreader.default; +exports.SiInoreaderHex = SiInoreader.defaultColor; +exports.SiInquirer = SiInquirer.default; +exports.SiInquirerHex = SiInquirer.defaultColor; +exports.SiInsomnia = SiInsomnia.default; +exports.SiInsomniaHex = SiInsomnia.defaultColor; +exports.SiInspire = SiInspire.default; +exports.SiInspireHex = SiInspire.defaultColor; +exports.SiInsta360 = SiInsta360.default; +exports.SiInsta360Hex = SiInsta360.defaultColor; +exports.SiInstacart = SiInstacart.default; +exports.SiInstacartHex = SiInstacart.defaultColor; +exports.SiInstagram = SiInstagram.default; +exports.SiInstagramHex = SiInstagram.defaultColor; +exports.SiInstapaper = SiInstapaper.default; +exports.SiInstapaperHex = SiInstapaper.defaultColor; +exports.SiInstatus = SiInstatus.default; +exports.SiInstatusHex = SiInstatus.defaultColor; +exports.SiInstructables = SiInstructables.default; +exports.SiInstructablesHex = SiInstructables.defaultColor; +exports.SiInstructure = SiInstructure.default; +exports.SiInstructureHex = SiInstructure.defaultColor; +exports.SiIntel = SiIntel.default; +exports.SiIntelHex = SiIntel.defaultColor; +exports.SiIntellijidea = SiIntellijidea.default; +exports.SiIntellijideaHex = SiIntellijidea.defaultColor; +exports.SiInteractiondesignfoundation = SiInteractiondesignfoundation.default; +exports.SiInteractiondesignfoundationHex = SiInteractiondesignfoundation.defaultColor; +exports.SiInteractjs = SiInteractjs.default; +exports.SiInteractjsHex = SiInteractjs.defaultColor; +exports.SiInterbase = SiInterbase.default; +exports.SiInterbaseHex = SiInterbase.defaultColor; +exports.SiIntercom = SiIntercom.default; +exports.SiIntercomHex = SiIntercom.defaultColor; +exports.SiIntermarche = SiIntermarche.default; +exports.SiIntermarcheHex = SiIntermarche.defaultColor; +exports.SiInternetarchive = SiInternetarchive.default; +exports.SiInternetarchiveHex = SiInternetarchive.defaultColor; +exports.SiInternetcomputer = SiInternetcomputer.default; +exports.SiInternetcomputerHex = SiInternetcomputer.defaultColor; +exports.SiIntigriti = SiIntigriti.default; +exports.SiIntigritiHex = SiIntigriti.defaultColor; +exports.SiIntuit = SiIntuit.default; +exports.SiIntuitHex = SiIntuit.defaultColor; +exports.SiInvidious = SiInvidious.default; +exports.SiInvidiousHex = SiInvidious.defaultColor; +exports.SiInvoiceninja = SiInvoiceninja.default; +exports.SiInvoiceninjaHex = SiInvoiceninja.defaultColor; +exports.SiIobroker = SiIobroker.default; +exports.SiIobrokerHex = SiIobroker.defaultColor; +exports.SiIonic = SiIonic.default; +exports.SiIonicHex = SiIonic.defaultColor; +exports.SiIonos = SiIonos.default; +exports.SiIonosHex = SiIonos.defaultColor; +exports.SiIos = SiIos.default; +exports.SiIosHex = SiIos.defaultColor; +exports.SiIota = SiIota.default; +exports.SiIotaHex = SiIota.defaultColor; +exports.SiIpfs = SiIpfs.default; +exports.SiIpfsHex = SiIpfs.defaultColor; +exports.SiIris = SiIris.default; +exports.SiIrisHex = SiIris.defaultColor; +exports.SiIrobot = SiIrobot.default; +exports.SiIrobotHex = SiIrobot.defaultColor; +exports.SiIsc2 = SiIsc2.default; +exports.SiIsc2Hex = SiIsc2.defaultColor; +exports.SiIsro = SiIsro.default; +exports.SiIsroHex = SiIsro.defaultColor; +exports.SiIssuu = SiIssuu.default; +exports.SiIssuuHex = SiIssuu.defaultColor; +exports.SiIstio = SiIstio.default; +exports.SiIstioHex = SiIstio.defaultColor; +exports.SiItchdotio = SiItchdotio.default; +exports.SiItchdotioHex = SiItchdotio.defaultColor; +exports.SiIterm2 = SiIterm2.default; +exports.SiIterm2Hex = SiIterm2.defaultColor; +exports.SiItunes = SiItunes.default; +exports.SiItunesHex = SiItunes.defaultColor; +exports.SiItvx = SiItvx.default; +exports.SiItvxHex = SiItvx.defaultColor; +exports.SiIveco = SiIveco.default; +exports.SiIvecoHex = SiIveco.defaultColor; +exports.SiJabber = SiJabber.default; +exports.SiJabberHex = SiJabber.defaultColor; +exports.SiJaeger = SiJaeger.default; +exports.SiJaegerHex = SiJaeger.defaultColor; +exports.SiJameson = SiJameson.default; +exports.SiJamesonHex = SiJameson.defaultColor; +exports.SiJamstack = SiJamstack.default; +exports.SiJamstackHex = SiJamstack.defaultColor; +exports.SiJapanairlines = SiJapanairlines.default; +exports.SiJapanairlinesHex = SiJapanairlines.defaultColor; +exports.SiJasmine = SiJasmine.default; +exports.SiJasmineHex = SiJasmine.defaultColor; +exports.SiJavascript = SiJavascript.default; +exports.SiJavascriptHex = SiJavascript.defaultColor; +exports.SiJbl = SiJbl.default; +exports.SiJblHex = SiJbl.defaultColor; +exports.SiJcb = SiJcb.default; +exports.SiJcbHex = SiJcb.defaultColor; +exports.SiJdoodle = SiJdoodle.default; +exports.SiJdoodleHex = SiJdoodle.defaultColor; +exports.SiJeep = SiJeep.default; +exports.SiJeepHex = SiJeep.defaultColor; +exports.SiJekyll = SiJekyll.default; +exports.SiJekyllHex = SiJekyll.defaultColor; +exports.SiJellyfin = SiJellyfin.default; +exports.SiJellyfinHex = SiJellyfin.defaultColor; +exports.SiJenkins = SiJenkins.default; +exports.SiJenkinsHex = SiJenkins.defaultColor; +exports.SiJest = SiJest.default; +exports.SiJestHex = SiJest.defaultColor; +exports.SiJet = SiJet.default; +exports.SiJetHex = SiJet.defaultColor; +exports.SiJetblue = SiJetblue.default; +exports.SiJetblueHex = SiJetblue.defaultColor; +exports.SiJetbrains = SiJetbrains.default; +exports.SiJetbrainsHex = SiJetbrains.defaultColor; +exports.SiJetpackcompose = SiJetpackcompose.default; +exports.SiJetpackcomposeHex = SiJetpackcompose.defaultColor; +exports.SiJfrog = SiJfrog.default; +exports.SiJfrogHex = SiJfrog.defaultColor; +exports.SiJfrogpipelines = SiJfrogpipelines.default; +exports.SiJfrogpipelinesHex = SiJfrogpipelines.defaultColor; +exports.SiJhipster = SiJhipster.default; +exports.SiJhipsterHex = SiJhipster.defaultColor; +exports.SiJinja = SiJinja.default; +exports.SiJinjaHex = SiJinja.defaultColor; +exports.SiJio = SiJio.default; +exports.SiJioHex = SiJio.defaultColor; +exports.SiJira = SiJira.default; +exports.SiJiraHex = SiJira.defaultColor; +exports.SiJirasoftware = SiJirasoftware.default; +exports.SiJirasoftwareHex = SiJirasoftware.defaultColor; +exports.SiJitpack = SiJitpack.default; +exports.SiJitpackHex = SiJitpack.defaultColor; +exports.SiJitsi = SiJitsi.default; +exports.SiJitsiHex = SiJitsi.defaultColor; +exports.SiJohndeere = SiJohndeere.default; +exports.SiJohndeereHex = SiJohndeere.defaultColor; +exports.SiJoomla = SiJoomla.default; +exports.SiJoomlaHex = SiJoomla.defaultColor; +exports.SiJoplin = SiJoplin.default; +exports.SiJoplinHex = SiJoplin.defaultColor; +exports.SiJordan = SiJordan.default; +exports.SiJordanHex = SiJordan.defaultColor; +exports.SiJouav = SiJouav.default; +exports.SiJouavHex = SiJouav.defaultColor; +exports.SiJovian = SiJovian.default; +exports.SiJovianHex = SiJovian.defaultColor; +exports.SiJpeg = SiJpeg.default; +exports.SiJpegHex = SiJpeg.defaultColor; +exports.SiJquery = SiJquery.default; +exports.SiJqueryHex = SiJquery.defaultColor; +exports.SiJrgroup = SiJrgroup.default; +exports.SiJrgroupHex = SiJrgroup.defaultColor; +exports.SiJsdelivr = SiJsdelivr.default; +exports.SiJsdelivrHex = SiJsdelivr.defaultColor; +exports.SiJsfiddle = SiJsfiddle.default; +exports.SiJsfiddleHex = SiJsfiddle.defaultColor; +exports.SiJson = SiJson.default; +exports.SiJsonHex = SiJson.defaultColor; +exports.SiJsonwebtokens = SiJsonwebtokens.default; +exports.SiJsonwebtokensHex = SiJsonwebtokens.defaultColor; +exports.SiJsr = SiJsr.default; +exports.SiJsrHex = SiJsr.defaultColor; +exports.SiJss = SiJss.default; +exports.SiJssHex = SiJss.defaultColor; +exports.SiJuce = SiJuce.default; +exports.SiJuceHex = SiJuce.defaultColor; +exports.SiJuejin = SiJuejin.default; +exports.SiJuejinHex = SiJuejin.defaultColor; +exports.SiJuke = SiJuke.default; +exports.SiJukeHex = SiJuke.defaultColor; +exports.SiJulia = SiJulia.default; +exports.SiJuliaHex = SiJulia.defaultColor; +exports.SiJunipernetworks = SiJunipernetworks.default; +exports.SiJunipernetworksHex = SiJunipernetworks.defaultColor; +exports.SiJunit5 = SiJunit5.default; +exports.SiJunit5Hex = SiJunit5.defaultColor; +exports.SiJupyter = SiJupyter.default; +exports.SiJupyterHex = SiJupyter.defaultColor; +exports.SiJust = SiJust.default; +exports.SiJustHex = SiJust.defaultColor; +exports.SiJusteat = SiJusteat.default; +exports.SiJusteatHex = SiJusteat.defaultColor; +exports.SiJustgiving = SiJustgiving.default; +exports.SiJustgivingHex = SiJustgiving.defaultColor; +exports.SiK3s = SiK3s.default; +exports.SiK3sHex = SiK3s.defaultColor; +exports.SiK6 = SiK6.default; +exports.SiK6Hex = SiK6.defaultColor; +exports.SiKaggle = SiKaggle.default; +exports.SiKaggleHex = SiKaggle.defaultColor; +exports.SiKagi = SiKagi.default; +exports.SiKagiHex = SiKagi.defaultColor; +exports.SiKahoot = SiKahoot.default; +exports.SiKahootHex = SiKahoot.defaultColor; +exports.SiKaios = SiKaios.default; +exports.SiKaiosHex = SiKaios.defaultColor; +exports.SiKakao = SiKakao.default; +exports.SiKakaoHex = SiKakao.defaultColor; +exports.SiKakaotalk = SiKakaotalk.default; +exports.SiKakaotalkHex = SiKakaotalk.defaultColor; +exports.SiKalilinux = SiKalilinux.default; +exports.SiKalilinuxHex = SiKalilinux.defaultColor; +exports.SiKamailio = SiKamailio.default; +exports.SiKamailioHex = SiKamailio.defaultColor; +exports.SiKando = SiKando.default; +exports.SiKandoHex = SiKando.defaultColor; +exports.SiKaniko = SiKaniko.default; +exports.SiKanikoHex = SiKaniko.defaultColor; +exports.SiKarlsruherverkehrsverbund = SiKarlsruherverkehrsverbund.default; +exports.SiKarlsruherverkehrsverbundHex = SiKarlsruherverkehrsverbund.defaultColor; +exports.SiKasasmart = SiKasasmart.default; +exports.SiKasasmartHex = SiKasasmart.defaultColor; +exports.SiKashflow = SiKashflow.default; +exports.SiKashflowHex = SiKashflow.defaultColor; +exports.SiKaspersky = SiKaspersky.default; +exports.SiKasperskyHex = SiKaspersky.defaultColor; +exports.SiKatana = SiKatana.default; +exports.SiKatanaHex = SiKatana.defaultColor; +exports.SiKaufland = SiKaufland.default; +exports.SiKauflandHex = SiKaufland.defaultColor; +exports.SiKde = SiKde.default; +exports.SiKdeHex = SiKde.defaultColor; +exports.SiKdeneon = SiKdeneon.default; +exports.SiKdeneonHex = SiKdeneon.defaultColor; +exports.SiKdenlive = SiKdenlive.default; +exports.SiKdenliveHex = SiKdenlive.defaultColor; +exports.SiKdeplasma = SiKdeplasma.default; +exports.SiKdeplasmaHex = SiKdeplasma.defaultColor; +exports.SiKedro = SiKedro.default; +exports.SiKedroHex = SiKedro.defaultColor; +exports.SiKeenetic = SiKeenetic.default; +exports.SiKeeneticHex = SiKeenetic.defaultColor; +exports.SiKeepachangelog = SiKeepachangelog.default; +exports.SiKeepachangelogHex = SiKeepachangelog.defaultColor; +exports.SiKeepassxc = SiKeepassxc.default; +exports.SiKeepassxcHex = SiKeepassxc.defaultColor; +exports.SiKeeper = SiKeeper.default; +exports.SiKeeperHex = SiKeeper.defaultColor; +exports.SiKeeweb = SiKeeweb.default; +exports.SiKeewebHex = SiKeeweb.defaultColor; +exports.SiKenmei = SiKenmei.default; +exports.SiKenmeiHex = SiKenmei.defaultColor; +exports.SiKentico = SiKentico.default; +exports.SiKenticoHex = SiKentico.defaultColor; +exports.SiKeploy = SiKeploy.default; +exports.SiKeployHex = SiKeploy.defaultColor; +exports.SiKeras = SiKeras.default; +exports.SiKerasHex = SiKeras.defaultColor; +exports.SiKeybase = SiKeybase.default; +exports.SiKeybaseHex = SiKeybase.defaultColor; +exports.SiKeycdn = SiKeycdn.default; +exports.SiKeycdnHex = SiKeycdn.defaultColor; +exports.SiKeycloak = SiKeycloak.default; +exports.SiKeycloakHex = SiKeycloak.defaultColor; +exports.SiKeystone = SiKeystone.default; +exports.SiKeystoneHex = SiKeystone.defaultColor; +exports.SiKfc = SiKfc.default; +exports.SiKfcHex = SiKfc.defaultColor; +exports.SiKhanacademy = SiKhanacademy.default; +exports.SiKhanacademyHex = SiKhanacademy.defaultColor; +exports.SiKhronosgroup = SiKhronosgroup.default; +exports.SiKhronosgroupHex = SiKhronosgroup.defaultColor; +exports.SiKia = SiKia.default; +exports.SiKiaHex = SiKia.defaultColor; +exports.SiKibana = SiKibana.default; +exports.SiKibanaHex = SiKibana.defaultColor; +exports.SiKicad = SiKicad.default; +exports.SiKicadHex = SiKicad.defaultColor; +exports.SiKick = SiKick.default; +exports.SiKickHex = SiKick.defaultColor; +exports.SiKickstarter = SiKickstarter.default; +exports.SiKickstarterHex = SiKickstarter.defaultColor; +exports.SiKik = SiKik.default; +exports.SiKikHex = SiKik.defaultColor; +exports.SiKingstontechnology = SiKingstontechnology.default; +exports.SiKingstontechnologyHex = SiKingstontechnology.defaultColor; +exports.SiKinopoisk = SiKinopoisk.default; +exports.SiKinopoiskHex = SiKinopoisk.defaultColor; +exports.SiKinsta = SiKinsta.default; +exports.SiKinstaHex = SiKinsta.defaultColor; +exports.SiKirby = SiKirby.default; +exports.SiKirbyHex = SiKirby.defaultColor; +exports.SiKit = SiKit.default; +exports.SiKitHex = SiKit.defaultColor; +exports.SiKitsu = SiKitsu.default; +exports.SiKitsuHex = SiKitsu.defaultColor; +exports.SiKiwix = SiKiwix.default; +exports.SiKiwixHex = SiKiwix.defaultColor; +exports.SiKlarna = SiKlarna.default; +exports.SiKlarnaHex = SiKlarna.defaultColor; +exports.SiKleinanzeigen = SiKleinanzeigen.default; +exports.SiKleinanzeigenHex = SiKleinanzeigen.defaultColor; +exports.SiKlm = SiKlm.default; +exports.SiKlmHex = SiKlm.defaultColor; +exports.SiKlook = SiKlook.default; +exports.SiKlookHex = SiKlook.defaultColor; +exports.SiKnative = SiKnative.default; +exports.SiKnativeHex = SiKnative.defaultColor; +exports.SiKnexdotjs = SiKnexdotjs.default; +exports.SiKnexdotjsHex = SiKnexdotjs.defaultColor; +exports.SiKnime = SiKnime.default; +exports.SiKnimeHex = SiKnime.defaultColor; +exports.SiKnip = SiKnip.default; +exports.SiKnipHex = SiKnip.defaultColor; +exports.SiKnowledgebase = SiKnowledgebase.default; +exports.SiKnowledgebaseHex = SiKnowledgebase.defaultColor; +exports.SiKnown = SiKnown.default; +exports.SiKnownHex = SiKnown.defaultColor; +exports.SiKoa = SiKoa.default; +exports.SiKoaHex = SiKoa.defaultColor; +exports.SiKoc = SiKoc.default; +exports.SiKocHex = SiKoc.defaultColor; +exports.SiKodak = SiKodak.default; +exports.SiKodakHex = SiKodak.defaultColor; +exports.SiKodi = SiKodi.default; +exports.SiKodiHex = SiKodi.defaultColor; +exports.SiKodular = SiKodular.default; +exports.SiKodularHex = SiKodular.defaultColor; +exports.SiKoenigsegg = SiKoenigsegg.default; +exports.SiKoenigseggHex = SiKoenigsegg.defaultColor; +exports.SiKofax = SiKofax.default; +exports.SiKofaxHex = SiKofax.defaultColor; +exports.SiKofi = SiKofi.default; +exports.SiKofiHex = SiKofi.defaultColor; +exports.SiKomoot = SiKomoot.default; +exports.SiKomootHex = SiKomoot.defaultColor; +exports.SiKonami = SiKonami.default; +exports.SiKonamiHex = SiKonami.defaultColor; +exports.SiKong = SiKong.default; +exports.SiKongHex = SiKong.defaultColor; +exports.SiKongregate = SiKongregate.default; +exports.SiKongregateHex = SiKongregate.defaultColor; +exports.SiKonva = SiKonva.default; +exports.SiKonvaHex = SiKonva.defaultColor; +exports.SiKoreader = SiKoreader.default; +exports.SiKoreaderHex = SiKoreader.defaultColor; +exports.SiKotlin = SiKotlin.default; +exports.SiKotlinHex = SiKotlin.defaultColor; +exports.SiKoyeb = SiKoyeb.default; +exports.SiKoyebHex = SiKoyeb.defaultColor; +exports.SiKred = SiKred.default; +exports.SiKredHex = SiKred.defaultColor; +exports.SiKrita = SiKrita.default; +exports.SiKritaHex = SiKrita.defaultColor; +exports.SiKtm = SiKtm.default; +exports.SiKtmHex = SiKtm.defaultColor; +exports.SiKtor = SiKtor.default; +exports.SiKtorHex = SiKtor.defaultColor; +exports.SiKuaishou = SiKuaishou.default; +exports.SiKuaishouHex = SiKuaishou.defaultColor; +exports.SiKubernetes = SiKubernetes.default; +exports.SiKubernetesHex = SiKubernetes.defaultColor; +exports.SiKubespray = SiKubespray.default; +exports.SiKubesprayHex = SiKubespray.defaultColor; +exports.SiKubuntu = SiKubuntu.default; +exports.SiKubuntuHex = SiKubuntu.defaultColor; +exports.SiKucoin = SiKucoin.default; +exports.SiKucoinHex = SiKucoin.defaultColor; +exports.SiKueski = SiKueski.default; +exports.SiKueskiHex = SiKueski.defaultColor; +exports.SiKuma = SiKuma.default; +exports.SiKumaHex = SiKuma.defaultColor; +exports.SiKununu = SiKununu.default; +exports.SiKununuHex = SiKununu.defaultColor; +exports.SiKuula = SiKuula.default; +exports.SiKuulaHex = SiKuula.defaultColor; +exports.SiKx = SiKx.default; +exports.SiKxHex = SiKx.defaultColor; +exports.SiKyocera = SiKyocera.default; +exports.SiKyoceraHex = SiKyocera.defaultColor; +exports.SiLabex = SiLabex.default; +exports.SiLabexHex = SiLabex.defaultColor; +exports.SiLabview = SiLabview.default; +exports.SiLabviewHex = SiLabview.defaultColor; +exports.SiLada = SiLada.default; +exports.SiLadaHex = SiLada.defaultColor; +exports.SiLamborghini = SiLamborghini.default; +exports.SiLamborghiniHex = SiLamborghini.defaultColor; +exports.SiLangchain = SiLangchain.default; +exports.SiLangchainHex = SiLangchain.defaultColor; +exports.SiLangflow = SiLangflow.default; +exports.SiLangflowHex = SiLangflow.defaultColor; +exports.SiLanggraph = SiLanggraph.default; +exports.SiLanggraphHex = SiLanggraph.defaultColor; +exports.SiLanguagetool = SiLanguagetool.default; +exports.SiLanguagetoolHex = SiLanguagetool.defaultColor; +exports.SiLapce = SiLapce.default; +exports.SiLapceHex = SiLapce.defaultColor; +exports.SiLaragon = SiLaragon.default; +exports.SiLaragonHex = SiLaragon.defaultColor; +exports.SiLaravel = SiLaravel.default; +exports.SiLaravelHex = SiLaravel.defaultColor; +exports.SiLaravelhorizon = SiLaravelhorizon.default; +exports.SiLaravelhorizonHex = SiLaravelhorizon.defaultColor; +exports.SiLaravelnova = SiLaravelnova.default; +exports.SiLaravelnovaHex = SiLaravelnova.defaultColor; +exports.SiLastdotfm = SiLastdotfm.default; +exports.SiLastdotfmHex = SiLastdotfm.defaultColor; +exports.SiLastpass = SiLastpass.default; +exports.SiLastpassHex = SiLastpass.defaultColor; +exports.SiLatex = SiLatex.default; +exports.SiLatexHex = SiLatex.defaultColor; +exports.SiLaunchpad = SiLaunchpad.default; +exports.SiLaunchpadHex = SiLaunchpad.defaultColor; +exports.SiLazarus = SiLazarus.default; +exports.SiLazarusHex = SiLazarus.defaultColor; +exports.SiLazyvim = SiLazyvim.default; +exports.SiLazyvimHex = SiLazyvim.defaultColor; +exports.SiLbry = SiLbry.default; +exports.SiLbryHex = SiLbry.defaultColor; +exports.SiLeaderprice = SiLeaderprice.default; +exports.SiLeaderpriceHex = SiLeaderprice.defaultColor; +exports.SiLeaflet = SiLeaflet.default; +exports.SiLeafletHex = SiLeaflet.defaultColor; +exports.SiLeagueoflegends = SiLeagueoflegends.default; +exports.SiLeagueoflegendsHex = SiLeagueoflegends.defaultColor; +exports.SiLeanpub = SiLeanpub.default; +exports.SiLeanpubHex = SiLeanpub.defaultColor; +exports.SiLeetcode = SiLeetcode.default; +exports.SiLeetcodeHex = SiLeetcode.defaultColor; +exports.SiLefthook = SiLefthook.default; +exports.SiLefthookHex = SiLefthook.defaultColor; +exports.SiLegacygames = SiLegacygames.default; +exports.SiLegacygamesHex = SiLegacygames.defaultColor; +exports.SiLeica = SiLeica.default; +exports.SiLeicaHex = SiLeica.defaultColor; +exports.SiLemmy = SiLemmy.default; +exports.SiLemmyHex = SiLemmy.defaultColor; +exports.SiLemonsqueezy = SiLemonsqueezy.default; +exports.SiLemonsqueezyHex = SiLemonsqueezy.defaultColor; +exports.SiLenovo = SiLenovo.default; +exports.SiLenovoHex = SiLenovo.defaultColor; +exports.SiLens = SiLens.default; +exports.SiLensHex = SiLens.defaultColor; +exports.SiLeptos = SiLeptos.default; +exports.SiLeptosHex = SiLeptos.defaultColor; +exports.SiLequipe = SiLequipe.default; +exports.SiLequipeHex = SiLequipe.defaultColor; +exports.SiLerna = SiLerna.default; +exports.SiLernaHex = SiLerna.defaultColor; +exports.SiLeroymerlin = SiLeroymerlin.default; +exports.SiLeroymerlinHex = SiLeroymerlin.defaultColor; +exports.SiLeslibraires = SiLeslibraires.default; +exports.SiLeslibrairesHex = SiLeslibraires.defaultColor; +exports.SiLess = SiLess.default; +exports.SiLessHex = SiLess.defaultColor; +exports.SiLetsencrypt = SiLetsencrypt.default; +exports.SiLetsencryptHex = SiLetsencrypt.defaultColor; +exports.SiLetterboxd = SiLetterboxd.default; +exports.SiLetterboxdHex = SiLetterboxd.defaultColor; +exports.SiLevelsdotfyi = SiLevelsdotfyi.default; +exports.SiLevelsdotfyiHex = SiLevelsdotfyi.defaultColor; +exports.SiLg = SiLg.default; +exports.SiLgHex = SiLg.defaultColor; +exports.SiLiberadotchat = SiLiberadotchat.default; +exports.SiLiberadotchatHex = SiLiberadotchat.defaultColor; +exports.SiLiberapay = SiLiberapay.default; +exports.SiLiberapayHex = SiLiberapay.defaultColor; +exports.SiLibrariesdotio = SiLibrariesdotio.default; +exports.SiLibrariesdotioHex = SiLibrariesdotio.defaultColor; +exports.SiLibrarything = SiLibrarything.default; +exports.SiLibrarythingHex = SiLibrarything.defaultColor; +exports.SiLibreoffice = SiLibreoffice.default; +exports.SiLibreofficeHex = SiLibreoffice.defaultColor; +exports.SiLibreofficebase = SiLibreofficebase.default; +exports.SiLibreofficebaseHex = SiLibreofficebase.defaultColor; +exports.SiLibreofficecalc = SiLibreofficecalc.default; +exports.SiLibreofficecalcHex = SiLibreofficecalc.defaultColor; +exports.SiLibreofficedraw = SiLibreofficedraw.default; +exports.SiLibreofficedrawHex = SiLibreofficedraw.defaultColor; +exports.SiLibreofficeimpress = SiLibreofficeimpress.default; +exports.SiLibreofficeimpressHex = SiLibreofficeimpress.defaultColor; +exports.SiLibreofficemath = SiLibreofficemath.default; +exports.SiLibreofficemathHex = SiLibreofficemath.defaultColor; +exports.SiLibreofficewriter = SiLibreofficewriter.default; +exports.SiLibreofficewriterHex = SiLibreofficewriter.defaultColor; +exports.SiLibretranslate = SiLibretranslate.default; +exports.SiLibretranslateHex = SiLibretranslate.defaultColor; +exports.SiLibretube = SiLibretube.default; +exports.SiLibretubeHex = SiLibretube.defaultColor; +exports.SiLibrewolf = SiLibrewolf.default; +exports.SiLibrewolfHex = SiLibrewolf.defaultColor; +exports.SiLibuv = SiLibuv.default; +exports.SiLibuvHex = SiLibuv.defaultColor; +exports.SiLichess = SiLichess.default; +exports.SiLichessHex = SiLichess.defaultColor; +exports.SiLidl = SiLidl.default; +exports.SiLidlHex = SiLidl.defaultColor; +exports.SiLifx = SiLifx.default; +exports.SiLifxHex = SiLifx.defaultColor; +exports.SiLightburn = SiLightburn.default; +exports.SiLightburnHex = SiLightburn.defaultColor; +exports.SiLighthouse = SiLighthouse.default; +exports.SiLighthouseHex = SiLighthouse.defaultColor; +exports.SiLightning = SiLightning.default; +exports.SiLightningHex = SiLightning.defaultColor; +exports.SiLimesurvey = SiLimesurvey.default; +exports.SiLimesurveyHex = SiLimesurvey.defaultColor; +exports.SiLine = SiLine.default; +exports.SiLineHex = SiLine.defaultColor; +exports.SiLineageos = SiLineageos.default; +exports.SiLineageosHex = SiLineageos.defaultColor; +exports.SiLinear = SiLinear.default; +exports.SiLinearHex = SiLinear.defaultColor; +exports.SiLining = SiLining.default; +exports.SiLiningHex = SiLining.defaultColor; +exports.SiLinkerd = SiLinkerd.default; +exports.SiLinkerdHex = SiLinkerd.defaultColor; +exports.SiLinkfire = SiLinkfire.default; +exports.SiLinkfireHex = SiLinkfire.defaultColor; +exports.SiLinksys = SiLinksys.default; +exports.SiLinksysHex = SiLinksys.defaultColor; +exports.SiLinktree = SiLinktree.default; +exports.SiLinktreeHex = SiLinktree.defaultColor; +exports.SiLinphone = SiLinphone.default; +exports.SiLinphoneHex = SiLinphone.defaultColor; +exports.SiLintcode = SiLintcode.default; +exports.SiLintcodeHex = SiLintcode.defaultColor; +exports.SiLinux = SiLinux.default; +exports.SiLinuxHex = SiLinux.defaultColor; +exports.SiLinuxcontainers = SiLinuxcontainers.default; +exports.SiLinuxcontainersHex = SiLinuxcontainers.defaultColor; +exports.SiLinuxfoundation = SiLinuxfoundation.default; +exports.SiLinuxfoundationHex = SiLinuxfoundation.defaultColor; +exports.SiLinuxmint = SiLinuxmint.default; +exports.SiLinuxmintHex = SiLinuxmint.defaultColor; +exports.SiLinuxprofessionalinstitute = SiLinuxprofessionalinstitute.default; +exports.SiLinuxprofessionalinstituteHex = SiLinuxprofessionalinstitute.defaultColor; +exports.SiLinuxserver = SiLinuxserver.default; +exports.SiLinuxserverHex = SiLinuxserver.defaultColor; +exports.SiLionair = SiLionair.default; +exports.SiLionairHex = SiLionair.defaultColor; +exports.SiLiquibase = SiLiquibase.default; +exports.SiLiquibaseHex = SiLiquibase.defaultColor; +exports.SiListenhub = SiListenhub.default; +exports.SiListenhubHex = SiListenhub.defaultColor; +exports.SiListmonk = SiListmonk.default; +exports.SiListmonkHex = SiListmonk.defaultColor; +exports.SiLit = SiLit.default; +exports.SiLitHex = SiLit.defaultColor; +exports.SiLitecoin = SiLitecoin.default; +exports.SiLitecoinHex = SiLitecoin.defaultColor; +exports.SiLiteral = SiLiteral.default; +exports.SiLiteralHex = SiLiteral.defaultColor; +exports.SiLitiengine = SiLitiengine.default; +exports.SiLitiengineHex = SiLitiengine.defaultColor; +exports.SiLivechat = SiLivechat.default; +exports.SiLivechatHex = SiLivechat.defaultColor; +exports.SiLivejournal = SiLivejournal.default; +exports.SiLivejournalHex = SiLivejournal.defaultColor; +exports.SiLivekit = SiLivekit.default; +exports.SiLivekitHex = SiLivekit.defaultColor; +exports.SiLivewire = SiLivewire.default; +exports.SiLivewireHex = SiLivewire.defaultColor; +exports.SiLlvm = SiLlvm.default; +exports.SiLlvmHex = SiLlvm.defaultColor; +exports.SiLmms = SiLmms.default; +exports.SiLmmsHex = SiLmms.defaultColor; +exports.SiLobsters = SiLobsters.default; +exports.SiLobstersHex = SiLobsters.defaultColor; +exports.SiLocal = SiLocal.default; +exports.SiLocalHex = SiLocal.defaultColor; +exports.SiLocalsend = SiLocalsend.default; +exports.SiLocalsendHex = SiLocalsend.defaultColor; +exports.SiLocalxpose = SiLocalxpose.default; +exports.SiLocalxposeHex = SiLocalxpose.defaultColor; +exports.SiLodash = SiLodash.default; +exports.SiLodashHex = SiLodash.defaultColor; +exports.SiLogmein = SiLogmein.default; +exports.SiLogmeinHex = SiLogmein.defaultColor; +exports.SiLogseq = SiLogseq.default; +exports.SiLogseqHex = SiLogseq.defaultColor; +exports.SiLogstash = SiLogstash.default; +exports.SiLogstashHex = SiLogstash.defaultColor; +exports.SiLooker = SiLooker.default; +exports.SiLookerHex = SiLooker.defaultColor; +exports.SiLoom = SiLoom.default; +exports.SiLoomHex = SiLoom.defaultColor; +exports.SiLoop = SiLoop.default; +exports.SiLoopHex = SiLoop.defaultColor; +exports.SiLoopback = SiLoopback.default; +exports.SiLoopbackHex = SiLoopback.defaultColor; +exports.SiLootcrate = SiLootcrate.default; +exports.SiLootcrateHex = SiLootcrate.defaultColor; +exports.SiLospec = SiLospec.default; +exports.SiLospecHex = SiLospec.defaultColor; +exports.SiLotpolishairlines = SiLotpolishairlines.default; +exports.SiLotpolishairlinesHex = SiLotpolishairlines.defaultColor; +exports.SiLottiefiles = SiLottiefiles.default; +exports.SiLottiefilesHex = SiLottiefiles.defaultColor; +exports.SiLtspice = SiLtspice.default; +exports.SiLtspiceHex = SiLtspice.defaultColor; +exports.SiLua = SiLua.default; +exports.SiLuaHex = SiLua.defaultColor; +exports.SiLuanti = SiLuanti.default; +exports.SiLuantiHex = SiLuanti.defaultColor; +exports.SiLuau = SiLuau.default; +exports.SiLuauHex = SiLuau.defaultColor; +exports.SiLubuntu = SiLubuntu.default; +exports.SiLubuntuHex = SiLubuntu.defaultColor; +exports.SiLucia = SiLucia.default; +exports.SiLuciaHex = SiLucia.defaultColor; +exports.SiLucid = SiLucid.default; +exports.SiLucidHex = SiLucid.defaultColor; +exports.SiLucide = SiLucide.default; +exports.SiLucideHex = SiLucide.defaultColor; +exports.SiLudwig = SiLudwig.default; +exports.SiLudwigHex = SiLudwig.defaultColor; +exports.SiLufthansa = SiLufthansa.default; +exports.SiLufthansaHex = SiLufthansa.defaultColor; +exports.SiLumen = SiLumen.default; +exports.SiLumenHex = SiLumen.defaultColor; +exports.SiLunacy = SiLunacy.default; +exports.SiLunacyHex = SiLunacy.defaultColor; +exports.SiLuogu = SiLuogu.default; +exports.SiLuoguHex = SiLuogu.defaultColor; +exports.SiLutris = SiLutris.default; +exports.SiLutrisHex = SiLutris.defaultColor; +exports.SiLvgl = SiLvgl.default; +exports.SiLvglHex = SiLvgl.defaultColor; +exports.SiLydia = SiLydia.default; +exports.SiLydiaHex = SiLydia.defaultColor; +exports.SiLyft = SiLyft.default; +exports.SiLyftHex = SiLyft.defaultColor; +exports.SiMaas = SiMaas.default; +exports.SiMaasHex = SiMaas.defaultColor; +exports.SiMacos = SiMacos.default; +exports.SiMacosHex = SiMacos.defaultColor; +exports.SiMacpaw = SiMacpaw.default; +exports.SiMacpawHex = SiMacpaw.defaultColor; +exports.SiMacports = SiMacports.default; +exports.SiMacportsHex = SiMacports.defaultColor; +exports.SiMacys = SiMacys.default; +exports.SiMacysHex = SiMacys.defaultColor; +exports.SiMagasinsu = SiMagasinsu.default; +exports.SiMagasinsuHex = SiMagasinsu.defaultColor; +exports.SiMagic = SiMagic.default; +exports.SiMagicHex = SiMagic.defaultColor; +exports.SiMagisk = SiMagisk.default; +exports.SiMagiskHex = SiMagisk.defaultColor; +exports.SiMahindra = SiMahindra.default; +exports.SiMahindraHex = SiMahindra.defaultColor; +exports.SiMailbox = SiMailbox.default; +exports.SiMailboxHex = SiMailbox.defaultColor; +exports.SiMailchimp = SiMailchimp.default; +exports.SiMailchimpHex = SiMailchimp.defaultColor; +exports.SiMaildotcom = SiMaildotcom.default; +exports.SiMaildotcomHex = SiMaildotcom.defaultColor; +exports.SiMaildotru = SiMaildotru.default; +exports.SiMaildotruHex = SiMaildotru.defaultColor; +exports.SiMailgun = SiMailgun.default; +exports.SiMailgunHex = SiMailgun.defaultColor; +exports.SiMailtrap = SiMailtrap.default; +exports.SiMailtrapHex = SiMailtrap.defaultColor; +exports.SiMainwp = SiMainwp.default; +exports.SiMainwpHex = SiMainwp.defaultColor; +exports.SiMajorleaguehacking = SiMajorleaguehacking.default; +exports.SiMajorleaguehackingHex = SiMajorleaguehacking.defaultColor; +exports.SiMake = SiMake.default; +exports.SiMakeHex = SiMake.defaultColor; +exports.SiMakerbot = SiMakerbot.default; +exports.SiMakerbotHex = SiMakerbot.defaultColor; +exports.SiMalt = SiMalt.default; +exports.SiMaltHex = SiMalt.defaultColor; +exports.SiMalwarebytes = SiMalwarebytes.default; +exports.SiMalwarebytesHex = SiMalwarebytes.defaultColor; +exports.SiMambaui = SiMambaui.default; +exports.SiMambauiHex = SiMambaui.defaultColor; +exports.SiMamp = SiMamp.default; +exports.SiMampHex = SiMamp.defaultColor; +exports.SiMan = SiMan.default; +exports.SiManHex = SiMan.defaultColor; +exports.SiManageiq = SiManageiq.default; +exports.SiManageiqHex = SiManageiq.defaultColor; +exports.SiMangacollec = SiMangacollec.default; +exports.SiMangacollecHex = SiMangacollec.defaultColor; +exports.SiMangaupdates = SiMangaupdates.default; +exports.SiMangaupdatesHex = SiMangaupdates.defaultColor; +exports.SiManjaro = SiManjaro.default; +exports.SiManjaroHex = SiManjaro.defaultColor; +exports.SiMantine = SiMantine.default; +exports.SiMantineHex = SiMantine.defaultColor; +exports.SiMapbox = SiMapbox.default; +exports.SiMapboxHex = SiMapbox.defaultColor; +exports.SiMapillary = SiMapillary.default; +exports.SiMapillaryHex = SiMapillary.defaultColor; +exports.SiMaplibre = SiMaplibre.default; +exports.SiMaplibreHex = SiMaplibre.defaultColor; +exports.SiMaptiler = SiMaptiler.default; +exports.SiMaptilerHex = SiMaptiler.defaultColor; +exports.SiMariadb = SiMariadb.default; +exports.SiMariadbHex = SiMariadb.defaultColor; +exports.SiMariadbfoundation = SiMariadbfoundation.default; +exports.SiMariadbfoundationHex = SiMariadbfoundation.defaultColor; +exports.SiMarkdown = SiMarkdown.default; +exports.SiMarkdownHex = SiMarkdown.defaultColor; +exports.SiMarko = SiMarko.default; +exports.SiMarkoHex = SiMarko.defaultColor; +exports.SiMarriott = SiMarriott.default; +exports.SiMarriottHex = SiMarriott.defaultColor; +exports.SiMarvelapp = SiMarvelapp.default; +exports.SiMarvelappHex = SiMarvelapp.defaultColor; +exports.SiMaserati = SiMaserati.default; +exports.SiMaseratiHex = SiMaserati.defaultColor; +exports.SiMastercard = SiMastercard.default; +exports.SiMastercardHex = SiMastercard.defaultColor; +exports.SiMastercomfig = SiMastercomfig.default; +exports.SiMastercomfigHex = SiMastercomfig.defaultColor; +exports.SiMastodon = SiMastodon.default; +exports.SiMastodonHex = SiMastodon.defaultColor; +exports.SiMaterialdesign = SiMaterialdesign.default; +exports.SiMaterialdesignHex = SiMaterialdesign.defaultColor; +exports.SiMaterialdesignicons = SiMaterialdesignicons.default; +exports.SiMaterialdesigniconsHex = SiMaterialdesignicons.defaultColor; +exports.SiMaterialformkdocs = SiMaterialformkdocs.default; +exports.SiMaterialformkdocsHex = SiMaterialformkdocs.defaultColor; +exports.SiMatillion = SiMatillion.default; +exports.SiMatillionHex = SiMatillion.defaultColor; +exports.SiMatomo = SiMatomo.default; +exports.SiMatomoHex = SiMatomo.defaultColor; +exports.SiMatrix = SiMatrix.default; +exports.SiMatrixHex = SiMatrix.defaultColor; +exports.SiMatterdotjs = SiMatterdotjs.default; +exports.SiMatterdotjsHex = SiMatterdotjs.defaultColor; +exports.SiMattermost = SiMattermost.default; +exports.SiMattermostHex = SiMattermost.defaultColor; +exports.SiMatternet = SiMatternet.default; +exports.SiMatternetHex = SiMatternet.defaultColor; +exports.SiMautic = SiMautic.default; +exports.SiMauticHex = SiMautic.defaultColor; +exports.SiMax = SiMax.default; +exports.SiMaxHex = SiMax.defaultColor; +exports.SiMaxplanckgesellschaft = SiMaxplanckgesellschaft.default; +exports.SiMaxplanckgesellschaftHex = SiMaxplanckgesellschaft.defaultColor; +exports.SiMaytag = SiMaytag.default; +exports.SiMaytagHex = SiMaytag.defaultColor; +exports.SiMazda = SiMazda.default; +exports.SiMazdaHex = SiMazda.defaultColor; +exports.SiMaze = SiMaze.default; +exports.SiMazeHex = SiMaze.defaultColor; +exports.SiMcafee = SiMcafee.default; +exports.SiMcafeeHex = SiMcafee.defaultColor; +exports.SiMcdonalds = SiMcdonalds.default; +exports.SiMcdonaldsHex = SiMcdonalds.defaultColor; +exports.SiMclaren = SiMclaren.default; +exports.SiMclarenHex = SiMclaren.defaultColor; +exports.SiMdblist = SiMdblist.default; +exports.SiMdblistHex = SiMdblist.defaultColor; +exports.SiMdbook = SiMdbook.default; +exports.SiMdbookHex = SiMdbook.defaultColor; +exports.SiMdnwebdocs = SiMdnwebdocs.default; +exports.SiMdnwebdocsHex = SiMdnwebdocs.defaultColor; +exports.SiMdx = SiMdx.default; +exports.SiMdxHex = SiMdx.defaultColor; +exports.SiMealie = SiMealie.default; +exports.SiMealieHex = SiMealie.defaultColor; +exports.SiMediafire = SiMediafire.default; +exports.SiMediafireHex = SiMediafire.defaultColor; +exports.SiMediamarkt = SiMediamarkt.default; +exports.SiMediamarktHex = SiMediamarkt.defaultColor; +exports.SiMediapipe = SiMediapipe.default; +exports.SiMediapipeHex = SiMediapipe.defaultColor; +exports.SiMediatek = SiMediatek.default; +exports.SiMediatekHex = SiMediatek.defaultColor; +exports.SiMedibangpaint = SiMedibangpaint.default; +exports.SiMedibangpaintHex = SiMedibangpaint.defaultColor; +exports.SiMedium = SiMedium.default; +exports.SiMediumHex = SiMedium.defaultColor; +exports.SiMedusa = SiMedusa.default; +exports.SiMedusaHex = SiMedusa.defaultColor; +exports.SiMeetup = SiMeetup.default; +exports.SiMeetupHex = SiMeetup.defaultColor; +exports.SiMega = SiMega.default; +exports.SiMegaHex = SiMega.defaultColor; +exports.SiMeilisearch = SiMeilisearch.default; +exports.SiMeilisearchHex = SiMeilisearch.defaultColor; +exports.SiMeituan = SiMeituan.default; +exports.SiMeituanHex = SiMeituan.defaultColor; +exports.SiMeizu = SiMeizu.default; +exports.SiMeizuHex = SiMeizu.defaultColor; +exports.SiMendeley = SiMendeley.default; +exports.SiMendeleyHex = SiMendeley.defaultColor; +exports.SiMentorcruise = SiMentorcruise.default; +exports.SiMentorcruiseHex = SiMentorcruise.defaultColor; +exports.SiMercadopago = SiMercadopago.default; +exports.SiMercadopagoHex = SiMercadopago.defaultColor; +exports.SiMerck = SiMerck.default; +exports.SiMerckHex = SiMerck.defaultColor; +exports.SiMercurial = SiMercurial.default; +exports.SiMercurialHex = SiMercurial.defaultColor; +exports.SiMermaid = SiMermaid.default; +exports.SiMermaidHex = SiMermaid.defaultColor; +exports.SiMessenger = SiMessenger.default; +exports.SiMessengerHex = SiMessenger.defaultColor; +exports.SiMeta = SiMeta.default; +exports.SiMetaHex = SiMeta.defaultColor; +exports.SiMetabase = SiMetabase.default; +exports.SiMetabaseHex = SiMetabase.defaultColor; +exports.SiMetacritic = SiMetacritic.default; +exports.SiMetacriticHex = SiMetacritic.defaultColor; +exports.SiMetafilter = SiMetafilter.default; +exports.SiMetafilterHex = SiMetafilter.defaultColor; +exports.SiMetager = SiMetager.default; +exports.SiMetagerHex = SiMetager.defaultColor; +exports.SiMetasploit = SiMetasploit.default; +exports.SiMetasploitHex = SiMetasploit.defaultColor; +exports.SiMeteor = SiMeteor.default; +exports.SiMeteorHex = SiMeteor.defaultColor; +exports.SiMetro = SiMetro.default; +exports.SiMetroHex = SiMetro.defaultColor; +exports.SiMetrodelaciudaddemexico = SiMetrodelaciudaddemexico.default; +exports.SiMetrodelaciudaddemexicoHex = SiMetrodelaciudaddemexico.defaultColor; +exports.SiMetrodemadrid = SiMetrodemadrid.default; +exports.SiMetrodemadridHex = SiMetrodemadrid.defaultColor; +exports.SiMetrodeparis = SiMetrodeparis.default; +exports.SiMetrodeparisHex = SiMetrodeparis.defaultColor; +exports.SiMewe = SiMewe.default; +exports.SiMeweHex = SiMewe.defaultColor; +exports.SiMezmo = SiMezmo.default; +exports.SiMezmoHex = SiMezmo.defaultColor; +exports.SiMg = SiMg.default; +exports.SiMgHex = SiMg.defaultColor; +exports.SiMicrobit = SiMicrobit.default; +exports.SiMicrobitHex = SiMicrobit.defaultColor; +exports.SiMicrodotblog = SiMicrodotblog.default; +exports.SiMicrodotblogHex = SiMicrodotblog.defaultColor; +exports.SiMicroeditor = SiMicroeditor.default; +exports.SiMicroeditorHex = SiMicroeditor.defaultColor; +exports.SiMicropython = SiMicropython.default; +exports.SiMicropythonHex = SiMicropython.defaultColor; +exports.SiMicrostation = SiMicrostation.default; +exports.SiMicrostationHex = SiMicrostation.defaultColor; +exports.SiMicrostrategy = SiMicrostrategy.default; +exports.SiMicrostrategyHex = SiMicrostrategy.defaultColor; +exports.SiMidi = SiMidi.default; +exports.SiMidiHex = SiMidi.defaultColor; +exports.SiMigadu = SiMigadu.default; +exports.SiMigaduHex = SiMigadu.defaultColor; +exports.SiMihon = SiMihon.default; +exports.SiMihonHex = SiMihon.defaultColor; +exports.SiMihoyo = SiMihoyo.default; +exports.SiMihoyoHex = SiMihoyo.defaultColor; +exports.SiMikrotik = SiMikrotik.default; +exports.SiMikrotikHex = SiMikrotik.defaultColor; +exports.SiMilanote = SiMilanote.default; +exports.SiMilanoteHex = SiMilanote.defaultColor; +exports.SiMilvus = SiMilvus.default; +exports.SiMilvusHex = SiMilvus.defaultColor; +exports.SiMinds = SiMinds.default; +exports.SiMindsHex = SiMinds.defaultColor; +exports.SiMingww64 = SiMingww64.default; +exports.SiMingww64Hex = SiMingww64.defaultColor; +exports.SiMini = SiMini.default; +exports.SiMiniHex = SiMini.defaultColor; +exports.SiMinimax = SiMinimax.default; +exports.SiMinimaxHex = SiMinimax.defaultColor; +exports.SiMinio = SiMinio.default; +exports.SiMinioHex = SiMinio.defaultColor; +exports.SiMintlify = SiMintlify.default; +exports.SiMintlifyHex = SiMintlify.defaultColor; +exports.SiMinutemailer = SiMinutemailer.default; +exports.SiMinutemailerHex = SiMinutemailer.defaultColor; +exports.SiMiraheze = SiMiraheze.default; +exports.SiMirahezeHex = SiMiraheze.defaultColor; +exports.SiMiro = SiMiro.default; +exports.SiMiroHex = SiMiro.defaultColor; +exports.SiMisskey = SiMisskey.default; +exports.SiMisskeyHex = SiMisskey.defaultColor; +exports.SiMistralai = SiMistralai.default; +exports.SiMistralaiHex = SiMistralai.defaultColor; +exports.SiMitsubishi = SiMitsubishi.default; +exports.SiMitsubishiHex = SiMitsubishi.defaultColor; +exports.SiMix = SiMix.default; +exports.SiMixHex = SiMix.defaultColor; +exports.SiMixcloud = SiMixcloud.default; +exports.SiMixcloudHex = SiMixcloud.defaultColor; +exports.SiMixpanel = SiMixpanel.default; +exports.SiMixpanelHex = SiMixpanel.defaultColor; +exports.SiMlb = SiMlb.default; +exports.SiMlbHex = SiMlb.defaultColor; +exports.SiMlflow = SiMlflow.default; +exports.SiMlflowHex = SiMlflow.defaultColor; +exports.SiMobx = SiMobx.default; +exports.SiMobxHex = SiMobx.defaultColor; +exports.SiMobxstatetree = SiMobxstatetree.default; +exports.SiMobxstatetreeHex = SiMobxstatetree.defaultColor; +exports.SiMocha = SiMocha.default; +exports.SiMochaHex = SiMocha.defaultColor; +exports.SiMockserviceworker = SiMockserviceworker.default; +exports.SiMockserviceworkerHex = SiMockserviceworker.defaultColor; +exports.SiModal = SiModal.default; +exports.SiModalHex = SiModal.defaultColor; +exports.SiModelcontextprotocol = SiModelcontextprotocol.default; +exports.SiModelcontextprotocolHex = SiModelcontextprotocol.defaultColor; +exports.SiModelscope = SiModelscope.default; +exports.SiModelscopeHex = SiModelscope.defaultColor; +exports.SiModin = SiModin.default; +exports.SiModinHex = SiModin.defaultColor; +exports.SiModrinth = SiModrinth.default; +exports.SiModrinthHex = SiModrinth.defaultColor; +exports.SiModx = SiModx.default; +exports.SiModxHex = SiModx.defaultColor; +exports.SiMojeek = SiMojeek.default; +exports.SiMojeekHex = SiMojeek.defaultColor; +exports.SiMoleculer = SiMoleculer.default; +exports.SiMoleculerHex = SiMoleculer.defaultColor; +exports.SiMomenteo = SiMomenteo.default; +exports.SiMomenteoHex = SiMomenteo.defaultColor; +exports.SiMonero = SiMonero.default; +exports.SiMoneroHex = SiMonero.defaultColor; +exports.SiMoneygram = SiMoneygram.default; +exports.SiMoneygramHex = SiMoneygram.defaultColor; +exports.SiMongodb = SiMongodb.default; +exports.SiMongodbHex = SiMongodb.defaultColor; +exports.SiMongoose = SiMongoose.default; +exports.SiMongooseHex = SiMongoose.defaultColor; +exports.SiMongoosedotws = SiMongoosedotws.default; +exports.SiMongoosedotwsHex = SiMongoosedotws.defaultColor; +exports.SiMonica = SiMonica.default; +exports.SiMonicaHex = SiMonica.defaultColor; +exports.SiMonkeytie = SiMonkeytie.default; +exports.SiMonkeytieHex = SiMonkeytie.defaultColor; +exports.SiMonkeytype = SiMonkeytype.default; +exports.SiMonkeytypeHex = SiMonkeytype.defaultColor; +exports.SiMonogame = SiMonogame.default; +exports.SiMonogameHex = SiMonogame.defaultColor; +exports.SiMonoprix = SiMonoprix.default; +exports.SiMonoprixHex = SiMonoprix.defaultColor; +exports.SiMonster = SiMonster.default; +exports.SiMonsterHex = SiMonster.defaultColor; +exports.SiMonzo = SiMonzo.default; +exports.SiMonzoHex = SiMonzo.defaultColor; +exports.SiMoo = SiMoo.default; +exports.SiMooHex = SiMoo.defaultColor; +exports.SiMoodle = SiMoodle.default; +exports.SiMoodleHex = SiMoodle.defaultColor; +exports.SiMoonrepo = SiMoonrepo.default; +exports.SiMoonrepoHex = SiMoonrepo.defaultColor; +exports.SiMoq = SiMoq.default; +exports.SiMoqHex = SiMoq.defaultColor; +exports.SiMoqups = SiMoqups.default; +exports.SiMoqupsHex = SiMoqups.defaultColor; +exports.SiMorrisons = SiMorrisons.default; +exports.SiMorrisonsHex = SiMorrisons.defaultColor; +exports.SiMoscowmetro = SiMoscowmetro.default; +exports.SiMoscowmetroHex = SiMoscowmetro.defaultColor; +exports.SiMotorola = SiMotorola.default; +exports.SiMotorolaHex = SiMotorola.defaultColor; +exports.SiMovistar = SiMovistar.default; +exports.SiMovistarHex = SiMovistar.defaultColor; +exports.SiMozilla = SiMozilla.default; +exports.SiMozillaHex = SiMozilla.defaultColor; +exports.SiMpv = SiMpv.default; +exports.SiMpvHex = SiMpv.defaultColor; +exports.SiMqtt = SiMqtt.default; +exports.SiMqttHex = SiMqtt.defaultColor; +exports.SiMsi = SiMsi.default; +exports.SiMsiHex = SiMsi.defaultColor; +exports.SiMsibusiness = SiMsibusiness.default; +exports.SiMsibusinessHex = SiMsibusiness.defaultColor; +exports.SiMta = SiMta.default; +exports.SiMtaHex = SiMta.defaultColor; +exports.SiMtr = SiMtr.default; +exports.SiMtrHex = SiMtr.defaultColor; +exports.SiMubi = SiMubi.default; +exports.SiMubiHex = SiMubi.defaultColor; +exports.SiMui = SiMui.default; +exports.SiMuiHex = SiMui.defaultColor; +exports.SiMuller = SiMuller.default; +exports.SiMullerHex = SiMuller.defaultColor; +exports.SiMullvad = SiMullvad.default; +exports.SiMullvadHex = SiMullvad.defaultColor; +exports.SiMultisim = SiMultisim.default; +exports.SiMultisimHex = SiMultisim.defaultColor; +exports.SiMumble = SiMumble.default; +exports.SiMumbleHex = SiMumble.defaultColor; +exports.SiMuo = SiMuo.default; +exports.SiMuoHex = SiMuo.defaultColor; +exports.SiMural = SiMural.default; +exports.SiMuralHex = SiMural.defaultColor; +exports.SiMusicbrainz = SiMusicbrainz.default; +exports.SiMusicbrainzHex = SiMusicbrainz.defaultColor; +exports.SiMxlinux = SiMxlinux.default; +exports.SiMxlinuxHex = SiMxlinux.defaultColor; +exports.SiMyanimelist = SiMyanimelist.default; +exports.SiMyanimelistHex = SiMyanimelist.defaultColor; +exports.SiMyget = SiMyget.default; +exports.SiMygetHex = SiMyget.defaultColor; +exports.SiMyob = SiMyob.default; +exports.SiMyobHex = SiMyob.defaultColor; +exports.SiMyshows = SiMyshows.default; +exports.SiMyshowsHex = SiMyshows.defaultColor; +exports.SiMyspace = SiMyspace.default; +exports.SiMyspaceHex = SiMyspace.defaultColor; +exports.SiMysql = SiMysql.default; +exports.SiMysqlHex = SiMysql.defaultColor; +exports.SiN26 = SiN26.default; +exports.SiN26Hex = SiN26.defaultColor; +exports.SiN8n = SiN8n.default; +exports.SiN8nHex = SiN8n.defaultColor; +exports.SiNamebase = SiNamebase.default; +exports.SiNamebaseHex = SiNamebase.defaultColor; +exports.SiNamecheap = SiNamecheap.default; +exports.SiNamecheapHex = SiNamecheap.defaultColor; +exports.SiNamemc = SiNamemc.default; +exports.SiNamemcHex = SiNamemc.defaultColor; +exports.SiNamesilo = SiNamesilo.default; +exports.SiNamesiloHex = SiNamesilo.defaultColor; +exports.SiNamuwiki = SiNamuwiki.default; +exports.SiNamuwikiHex = SiNamuwiki.defaultColor; +exports.SiNano = SiNano.default; +exports.SiNanoHex = SiNano.defaultColor; +exports.SiNanostores = SiNanostores.default; +exports.SiNanostoresHex = SiNanostores.defaultColor; +exports.SiNapster = SiNapster.default; +exports.SiNapsterHex = SiNapster.defaultColor; +exports.SiNasa = SiNasa.default; +exports.SiNasaHex = SiNasa.defaultColor; +exports.SiNationalgrid = SiNationalgrid.default; +exports.SiNationalgridHex = SiNationalgrid.defaultColor; +exports.SiNationalrail = SiNationalrail.default; +exports.SiNationalrailHex = SiNationalrail.defaultColor; +exports.SiNativescript = SiNativescript.default; +exports.SiNativescriptHex = SiNativescript.defaultColor; +exports.SiNatsdotio = SiNatsdotio.default; +exports.SiNatsdotioHex = SiNatsdotio.defaultColor; +exports.SiNaver = SiNaver.default; +exports.SiNaverHex = SiNaver.defaultColor; +exports.SiNba = SiNba.default; +exports.SiNbaHex = SiNba.defaultColor; +exports.SiNbb = SiNbb.default; +exports.SiNbbHex = SiNbb.defaultColor; +exports.SiNbc = SiNbc.default; +exports.SiNbcHex = SiNbc.defaultColor; +exports.SiNdi = SiNdi.default; +exports.SiNdiHex = SiNdi.defaultColor; +exports.SiNdr = SiNdr.default; +exports.SiNdrHex = SiNdr.defaultColor; +exports.SiNear = SiNear.default; +exports.SiNearHex = SiNear.defaultColor; +exports.SiNebula = SiNebula.default; +exports.SiNebulaHex = SiNebula.defaultColor; +exports.SiNec = SiNec.default; +exports.SiNecHex = SiNec.defaultColor; +exports.SiNederlandsespoorwegen = SiNederlandsespoorwegen.default; +exports.SiNederlandsespoorwegenHex = SiNederlandsespoorwegen.defaultColor; +exports.SiNeo4j = SiNeo4j.default; +exports.SiNeo4jHex = SiNeo4j.defaultColor; +exports.SiNeovim = SiNeovim.default; +exports.SiNeovimHex = SiNeovim.defaultColor; +exports.SiNeptune = SiNeptune.default; +exports.SiNeptuneHex = SiNeptune.defaultColor; +exports.SiNestjs = SiNestjs.default; +exports.SiNestjsHex = SiNestjs.defaultColor; +exports.SiNetapp = SiNetapp.default; +exports.SiNetappHex = SiNetapp.defaultColor; +exports.SiNetbsd = SiNetbsd.default; +exports.SiNetbsdHex = SiNetbsd.defaultColor; +exports.SiNetcup = SiNetcup.default; +exports.SiNetcupHex = SiNetcup.defaultColor; +exports.SiNetdata = SiNetdata.default; +exports.SiNetdataHex = SiNetdata.defaultColor; +exports.SiNeteasecloudmusic = SiNeteasecloudmusic.default; +exports.SiNeteasecloudmusicHex = SiNeteasecloudmusic.defaultColor; +exports.SiNetflix = SiNetflix.default; +exports.SiNetflixHex = SiNetflix.defaultColor; +exports.SiNetgear = SiNetgear.default; +exports.SiNetgearHex = SiNetgear.defaultColor; +exports.SiNetim = SiNetim.default; +exports.SiNetimHex = SiNetim.defaultColor; +exports.SiNetlify = SiNetlify.default; +exports.SiNetlifyHex = SiNetlify.defaultColor; +exports.SiNette = SiNette.default; +exports.SiNetteHex = SiNette.defaultColor; +exports.SiNetto = SiNetto.default; +exports.SiNettoHex = SiNetto.defaultColor; +exports.SiNeutralinojs = SiNeutralinojs.default; +exports.SiNeutralinojsHex = SiNeutralinojs.defaultColor; +exports.SiNewbalance = SiNewbalance.default; +exports.SiNewbalanceHex = SiNewbalance.defaultColor; +exports.SiNewegg = SiNewegg.default; +exports.SiNeweggHex = SiNewegg.defaultColor; +exports.SiNewgrounds = SiNewgrounds.default; +exports.SiNewgroundsHex = SiNewgrounds.defaultColor; +exports.SiNewjapanprowrestling = SiNewjapanprowrestling.default; +exports.SiNewjapanprowrestlingHex = SiNewjapanprowrestling.defaultColor; +exports.SiNewpipe = SiNewpipe.default; +exports.SiNewpipeHex = SiNewpipe.defaultColor; +exports.SiNewrelic = SiNewrelic.default; +exports.SiNewrelicHex = SiNewrelic.defaultColor; +exports.SiNewyorktimes = SiNewyorktimes.default; +exports.SiNewyorktimesHex = SiNewyorktimes.defaultColor; +exports.SiNexon = SiNexon.default; +exports.SiNexonHex = SiNexon.defaultColor; +exports.SiNextbike = SiNextbike.default; +exports.SiNextbikeHex = SiNextbike.defaultColor; +exports.SiNextbilliondotai = SiNextbilliondotai.default; +exports.SiNextbilliondotaiHex = SiNextbilliondotai.defaultColor; +exports.SiNextcloud = SiNextcloud.default; +exports.SiNextcloudHex = SiNextcloud.defaultColor; +exports.SiNextdns = SiNextdns.default; +exports.SiNextdnsHex = SiNextdns.defaultColor; +exports.SiNextdoor = SiNextdoor.default; +exports.SiNextdoorHex = SiNextdoor.defaultColor; +exports.SiNextdotjs = SiNextdotjs.default; +exports.SiNextdotjsHex = SiNextdotjs.defaultColor; +exports.SiNextflow = SiNextflow.default; +exports.SiNextflowHex = SiNextflow.defaultColor; +exports.SiNextra = SiNextra.default; +exports.SiNextraHex = SiNextra.defaultColor; +exports.SiNfc = SiNfc.default; +exports.SiNfcHex = SiNfc.defaultColor; +exports.SiNfcore = SiNfcore.default; +exports.SiNfcoreHex = SiNfcore.defaultColor; +exports.SiNginx = SiNginx.default; +exports.SiNginxHex = SiNginx.defaultColor; +exports.SiNginxproxymanager = SiNginxproxymanager.default; +exports.SiNginxproxymanagerHex = SiNginxproxymanager.defaultColor; +exports.SiNgrok = SiNgrok.default; +exports.SiNgrokHex = SiNgrok.defaultColor; +exports.SiNgrx = SiNgrx.default; +exports.SiNgrxHex = SiNgrx.defaultColor; +exports.SiNhl = SiNhl.default; +exports.SiNhlHex = SiNhl.defaultColor; +exports.SiNhost = SiNhost.default; +exports.SiNhostHex = SiNhost.defaultColor; +exports.SiNicehash = SiNicehash.default; +exports.SiNicehashHex = SiNicehash.defaultColor; +exports.SiNiconico = SiNiconico.default; +exports.SiNiconicoHex = SiNiconico.defaultColor; +exports.SiNike = SiNike.default; +exports.SiNikeHex = SiNike.defaultColor; +exports.SiNikon = SiNikon.default; +exports.SiNikonHex = SiNikon.defaultColor; +exports.SiNim = SiNim.default; +exports.SiNimHex = SiNim.defaultColor; +exports.SiNiri = SiNiri.default; +exports.SiNiriHex = SiNiri.defaultColor; +exports.SiNissan = SiNissan.default; +exports.SiNissanHex = SiNissan.defaultColor; +exports.SiNixos = SiNixos.default; +exports.SiNixosHex = SiNixos.defaultColor; +exports.SiNobaralinux = SiNobaralinux.default; +exports.SiNobaralinuxHex = SiNobaralinux.defaultColor; +exports.SiNodebb = SiNodebb.default; +exports.SiNodebbHex = SiNodebb.defaultColor; +exports.SiNodedotjs = SiNodedotjs.default; +exports.SiNodedotjsHex = SiNodedotjs.defaultColor; +exports.SiNodegui = SiNodegui.default; +exports.SiNodeguiHex = SiNodegui.defaultColor; +exports.SiNodemon = SiNodemon.default; +exports.SiNodemonHex = SiNodemon.defaultColor; +exports.SiNodered = SiNodered.default; +exports.SiNoderedHex = SiNodered.defaultColor; +exports.SiNokia = SiNokia.default; +exports.SiNokiaHex = SiNokia.defaultColor; +exports.SiNomad = SiNomad.default; +exports.SiNomadHex = SiNomad.defaultColor; +exports.SiNorco = SiNorco.default; +exports.SiNorcoHex = SiNorco.defaultColor; +exports.SiNordicsemiconductor = SiNordicsemiconductor.default; +exports.SiNordicsemiconductorHex = SiNordicsemiconductor.defaultColor; +exports.SiNordvpn = SiNordvpn.default; +exports.SiNordvpnHex = SiNordvpn.defaultColor; +exports.SiNormalizedotcss = SiNormalizedotcss.default; +exports.SiNormalizedotcssHex = SiNormalizedotcss.defaultColor; +exports.SiNorton = SiNorton.default; +exports.SiNortonHex = SiNorton.defaultColor; +exports.SiNorwegian = SiNorwegian.default; +exports.SiNorwegianHex = SiNorwegian.defaultColor; +exports.SiNote = SiNote.default; +exports.SiNoteHex = SiNote.defaultColor; +exports.SiNotebooklm = SiNotebooklm.default; +exports.SiNotebooklmHex = SiNotebooklm.defaultColor; +exports.SiNotepadplusplus = SiNotepadplusplus.default; +exports.SiNotepadplusplusHex = SiNotepadplusplus.defaultColor; +exports.SiNotion = SiNotion.default; +exports.SiNotionHex = SiNotion.defaultColor; +exports.SiNotist = SiNotist.default; +exports.SiNotistHex = SiNotist.defaultColor; +exports.SiNounproject = SiNounproject.default; +exports.SiNounprojectHex = SiNounproject.defaultColor; +exports.SiNovu = SiNovu.default; +exports.SiNovuHex = SiNovu.defaultColor; +exports.SiNow = SiNow.default; +exports.SiNowHex = SiNow.defaultColor; +exports.SiNpm = SiNpm.default; +exports.SiNpmHex = SiNpm.defaultColor; +exports.SiNrwl = SiNrwl.default; +exports.SiNrwlHex = SiNrwl.defaultColor; +exports.SiNsis = SiNsis.default; +exports.SiNsisHex = SiNsis.defaultColor; +exports.SiNtfy = SiNtfy.default; +exports.SiNtfyHex = SiNtfy.defaultColor; +exports.SiNubank = SiNubank.default; +exports.SiNubankHex = SiNubank.defaultColor; +exports.SiNucleo = SiNucleo.default; +exports.SiNucleoHex = SiNucleo.defaultColor; +exports.SiNuget = SiNuget.default; +exports.SiNugetHex = SiNuget.defaultColor; +exports.SiNuke = SiNuke.default; +exports.SiNukeHex = SiNuke.defaultColor; +exports.SiNumba = SiNumba.default; +exports.SiNumbaHex = SiNumba.defaultColor; +exports.SiNumpy = SiNumpy.default; +exports.SiNumpyHex = SiNumpy.defaultColor; +exports.SiNunjucks = SiNunjucks.default; +exports.SiNunjucksHex = SiNunjucks.defaultColor; +exports.SiNushell = SiNushell.default; +exports.SiNushellHex = SiNushell.defaultColor; +exports.SiNutanix = SiNutanix.default; +exports.SiNutanixHex = SiNutanix.defaultColor; +exports.SiNuxt = SiNuxt.default; +exports.SiNuxtHex = SiNuxt.defaultColor; +exports.SiNvidia = SiNvidia.default; +exports.SiNvidiaHex = SiNvidia.defaultColor; +exports.SiNvm = SiNvm.default; +exports.SiNvmHex = SiNvm.defaultColor; +exports.SiNx = SiNx.default; +exports.SiNxHex = SiNx.defaultColor; +exports.SiNxp = SiNxp.default; +exports.SiNxpHex = SiNxp.defaultColor; +exports.SiNzxt = SiNzxt.default; +exports.SiNzxtHex = SiNzxt.defaultColor; +exports.SiO2 = SiO2.default; +exports.SiO2Hex = SiO2.defaultColor; +exports.SiObb = SiObb.default; +exports.SiObbHex = SiObb.defaultColor; +exports.SiObservable = SiObservable.default; +exports.SiObservableHex = SiObservable.defaultColor; +exports.SiObsidian = SiObsidian.default; +exports.SiObsidianHex = SiObsidian.defaultColor; +exports.SiObsstudio = SiObsstudio.default; +exports.SiObsstudioHex = SiObsstudio.defaultColor; +exports.SiObtainium = SiObtainium.default; +exports.SiObtainiumHex = SiObtainium.defaultColor; +exports.SiOcaml = SiOcaml.default; +exports.SiOcamlHex = SiOcaml.defaultColor; +exports.SiOclc = SiOclc.default; +exports.SiOclcHex = SiOclc.defaultColor; +exports.SiOclif = SiOclif.default; +exports.SiOclifHex = SiOclif.defaultColor; +exports.SiOctanerender = SiOctanerender.default; +exports.SiOctanerenderHex = SiOctanerender.defaultColor; +exports.SiOctave = SiOctave.default; +exports.SiOctaveHex = SiOctave.defaultColor; +exports.SiOctobercms = SiOctobercms.default; +exports.SiOctobercmsHex = SiOctobercms.defaultColor; +exports.SiOctoprint = SiOctoprint.default; +exports.SiOctoprintHex = SiOctoprint.defaultColor; +exports.SiOctopusdeploy = SiOctopusdeploy.default; +exports.SiOctopusdeployHex = SiOctopusdeploy.defaultColor; +exports.SiOculus = SiOculus.default; +exports.SiOculusHex = SiOculus.defaultColor; +exports.SiOdido = SiOdido.default; +exports.SiOdidoHex = SiOdido.defaultColor; +exports.SiOdin = SiOdin.default; +exports.SiOdinHex = SiOdin.defaultColor; +exports.SiOdnoklassniki = SiOdnoklassniki.default; +exports.SiOdnoklassnikiHex = SiOdnoklassniki.defaultColor; +exports.SiOdoo = SiOdoo.default; +exports.SiOdooHex = SiOdoo.defaultColor; +exports.SiOdysee = SiOdysee.default; +exports.SiOdyseeHex = SiOdysee.defaultColor; +exports.SiOhdear = SiOhdear.default; +exports.SiOhdearHex = SiOhdear.defaultColor; +exports.SiOkcupid = SiOkcupid.default; +exports.SiOkcupidHex = SiOkcupid.defaultColor; +exports.SiOkta = SiOkta.default; +exports.SiOktaHex = SiOkta.defaultColor; +exports.SiOkx = SiOkx.default; +exports.SiOkxHex = SiOkx.defaultColor; +exports.SiOllama = SiOllama.default; +exports.SiOllamaHex = SiOllama.defaultColor; +exports.SiOmadacloud = SiOmadacloud.default; +exports.SiOmadacloudHex = SiOmadacloud.defaultColor; +exports.SiOmarchy = SiOmarchy.default; +exports.SiOmarchyHex = SiOmarchy.defaultColor; +exports.SiOneplus = SiOneplus.default; +exports.SiOneplusHex = SiOneplus.defaultColor; +exports.SiOnestream = SiOnestream.default; +exports.SiOnestreamHex = SiOnestream.defaultColor; +exports.SiOnlyfans = SiOnlyfans.default; +exports.SiOnlyfansHex = SiOnlyfans.defaultColor; +exports.SiOnlyoffice = SiOnlyoffice.default; +exports.SiOnlyofficeHex = SiOnlyoffice.defaultColor; +exports.SiOnnx = SiOnnx.default; +exports.SiOnnxHex = SiOnnx.defaultColor; +exports.SiOnstar = SiOnstar.default; +exports.SiOnstarHex = SiOnstar.defaultColor; +exports.SiOpel = SiOpel.default; +exports.SiOpelHex = SiOpel.defaultColor; +exports.SiOpen3d = SiOpen3d.default; +exports.SiOpen3dHex = SiOpen3d.defaultColor; +exports.SiOpenaccess = SiOpenaccess.default; +exports.SiOpenaccessHex = SiOpenaccess.defaultColor; +exports.SiOpenaigym = SiOpenaigym.default; +exports.SiOpenaigymHex = SiOpenaigym.defaultColor; +exports.SiOpenapiinitiative = SiOpenapiinitiative.default; +exports.SiOpenapiinitiativeHex = SiOpenapiinitiative.defaultColor; +exports.SiOpenbadges = SiOpenbadges.default; +exports.SiOpenbadgesHex = SiOpenbadges.defaultColor; +exports.SiOpenbsd = SiOpenbsd.default; +exports.SiOpenbsdHex = SiOpenbsd.defaultColor; +exports.SiOpenbugbounty = SiOpenbugbounty.default; +exports.SiOpenbugbountyHex = SiOpenbugbounty.defaultColor; +exports.SiOpencage = SiOpencage.default; +exports.SiOpencageHex = SiOpencage.defaultColor; +exports.SiOpencollective = SiOpencollective.default; +exports.SiOpencollectiveHex = SiOpencollective.defaultColor; +exports.SiOpencontainersinitiative = SiOpencontainersinitiative.default; +exports.SiOpencontainersinitiativeHex = SiOpencontainersinitiative.defaultColor; +exports.SiOpencritic = SiOpencritic.default; +exports.SiOpencriticHex = SiOpencritic.defaultColor; +exports.SiOpencv = SiOpencv.default; +exports.SiOpencvHex = SiOpencv.defaultColor; +exports.SiOpenfaas = SiOpenfaas.default; +exports.SiOpenfaasHex = SiOpenfaas.defaultColor; +exports.SiOpengl = SiOpengl.default; +exports.SiOpenglHex = SiOpengl.defaultColor; +exports.SiOpenhab = SiOpenhab.default; +exports.SiOpenhabHex = SiOpenhab.defaultColor; +exports.SiOpenid = SiOpenid.default; +exports.SiOpenidHex = SiOpenid.defaultColor; +exports.SiOpenjdk = SiOpenjdk.default; +exports.SiOpenjdkHex = SiOpenjdk.defaultColor; +exports.SiOpenjsfoundation = SiOpenjsfoundation.default; +exports.SiOpenjsfoundationHex = SiOpenjsfoundation.defaultColor; +exports.SiOpenlayers = SiOpenlayers.default; +exports.SiOpenlayersHex = SiOpenlayers.defaultColor; +exports.SiOpenmediavault = SiOpenmediavault.default; +exports.SiOpenmediavaultHex = SiOpenmediavault.defaultColor; +exports.SiOpenmined = SiOpenmined.default; +exports.SiOpenminedHex = SiOpenmined.defaultColor; +exports.SiOpennebula = SiOpennebula.default; +exports.SiOpennebulaHex = SiOpennebula.defaultColor; +exports.SiOpenproject = SiOpenproject.default; +exports.SiOpenprojectHex = SiOpenproject.defaultColor; +exports.SiOpenrouter = SiOpenrouter.default; +exports.SiOpenrouterHex = SiOpenrouter.defaultColor; +exports.SiOpenscad = SiOpenscad.default; +exports.SiOpenscadHex = SiOpenscad.defaultColor; +exports.SiOpensea = SiOpensea.default; +exports.SiOpenseaHex = SiOpensea.defaultColor; +exports.SiOpensearch = SiOpensearch.default; +exports.SiOpensearchHex = SiOpensearch.defaultColor; +exports.SiOpensourcehardware = SiOpensourcehardware.default; +exports.SiOpensourcehardwareHex = SiOpensourcehardware.defaultColor; +exports.SiOpensourceinitiative = SiOpensourceinitiative.default; +exports.SiOpensourceinitiativeHex = SiOpensourceinitiative.defaultColor; +exports.SiOpenssl = SiOpenssl.default; +exports.SiOpensslHex = SiOpenssl.defaultColor; +exports.SiOpenstack = SiOpenstack.default; +exports.SiOpenstackHex = SiOpenstack.defaultColor; +exports.SiOpenstreetmap = SiOpenstreetmap.default; +exports.SiOpenstreetmapHex = SiOpenstreetmap.defaultColor; +exports.SiOpensuse = SiOpensuse.default; +exports.SiOpensuseHex = SiOpensuse.defaultColor; +exports.SiOpentelemetry = SiOpentelemetry.default; +exports.SiOpentelemetryHex = SiOpentelemetry.defaultColor; +exports.SiOpentext = SiOpentext.default; +exports.SiOpentextHex = SiOpentext.defaultColor; +exports.SiOpentofu = SiOpentofu.default; +exports.SiOpentofuHex = SiOpentofu.defaultColor; +exports.SiOpenverse = SiOpenverse.default; +exports.SiOpenverseHex = SiOpenverse.defaultColor; +exports.SiOpenvpn = SiOpenvpn.default; +exports.SiOpenvpnHex = SiOpenvpn.defaultColor; +exports.SiOpenwrt = SiOpenwrt.default; +exports.SiOpenwrtHex = SiOpenwrt.defaultColor; +exports.SiOpenzeppelin = SiOpenzeppelin.default; +exports.SiOpenzeppelinHex = SiOpenzeppelin.defaultColor; +exports.SiOpenzfs = SiOpenzfs.default; +exports.SiOpenzfsHex = SiOpenzfs.defaultColor; +exports.SiOpera = SiOpera.default; +exports.SiOperaHex = SiOpera.defaultColor; +exports.SiOperagx = SiOperagx.default; +exports.SiOperagxHex = SiOperagx.defaultColor; +exports.SiOpnsense = SiOpnsense.default; +exports.SiOpnsenseHex = SiOpnsense.defaultColor; +exports.SiOppo = SiOppo.default; +exports.SiOppoHex = SiOppo.defaultColor; +exports.SiOpsgenie = SiOpsgenie.default; +exports.SiOpsgenieHex = SiOpsgenie.defaultColor; +exports.SiOpslevel = SiOpslevel.default; +exports.SiOpslevelHex = SiOpslevel.defaultColor; +exports.SiOptimism = SiOptimism.default; +exports.SiOptimismHex = SiOptimism.defaultColor; +exports.SiOptuna = SiOptuna.default; +exports.SiOptunaHex = SiOptuna.defaultColor; +exports.SiOrange = SiOrange.default; +exports.SiOrangeHex = SiOrange.defaultColor; +exports.SiOrcid = SiOrcid.default; +exports.SiOrcidHex = SiOrcid.defaultColor; +exports.SiOreilly = SiOreilly.default; +exports.SiOreillyHex = SiOreilly.defaultColor; +exports.SiOrg = SiOrg.default; +exports.SiOrgHex = SiOrg.defaultColor; +exports.SiOrganicmaps = SiOrganicmaps.default; +exports.SiOrganicmapsHex = SiOrganicmaps.defaultColor; +exports.SiOrigin = SiOrigin.default; +exports.SiOriginHex = SiOrigin.defaultColor; +exports.SiOry = SiOry.default; +exports.SiOryHex = SiOry.defaultColor; +exports.SiOsano = SiOsano.default; +exports.SiOsanoHex = SiOsano.defaultColor; +exports.SiOsf = SiOsf.default; +exports.SiOsfHex = SiOsf.defaultColor; +exports.SiOsgeo = SiOsgeo.default; +exports.SiOsgeoHex = SiOsgeo.defaultColor; +exports.SiOshkosh = SiOshkosh.default; +exports.SiOshkoshHex = SiOshkosh.defaultColor; +exports.SiOsmand = SiOsmand.default; +exports.SiOsmandHex = SiOsmand.defaultColor; +exports.SiOsmc = SiOsmc.default; +exports.SiOsmcHex = SiOsmc.defaultColor; +exports.SiOsu = SiOsu.default; +exports.SiOsuHex = SiOsu.defaultColor; +exports.SiOtto = SiOtto.default; +exports.SiOttoHex = SiOtto.defaultColor; +exports.SiOutline = SiOutline.default; +exports.SiOutlineHex = SiOutline.defaultColor; +exports.SiOvercast = SiOvercast.default; +exports.SiOvercastHex = SiOvercast.defaultColor; +exports.SiOverleaf = SiOverleaf.default; +exports.SiOverleafHex = SiOverleaf.defaultColor; +exports.SiOvh = SiOvh.default; +exports.SiOvhHex = SiOvh.defaultColor; +exports.SiOwasp = SiOwasp.default; +exports.SiOwaspHex = SiOwasp.defaultColor; +exports.SiOwncloud = SiOwncloud.default; +exports.SiOwncloudHex = SiOwncloud.defaultColor; +exports.SiOxc = SiOxc.default; +exports.SiOxcHex = SiOxc.defaultColor; +exports.SiOxygen = SiOxygen.default; +exports.SiOxygenHex = SiOxygen.defaultColor; +exports.SiOyo = SiOyo.default; +exports.SiOyoHex = SiOyo.defaultColor; +exports.SiP5dotjs = SiP5dotjs.default; +exports.SiP5dotjsHex = SiP5dotjs.defaultColor; +exports.SiPackagist = SiPackagist.default; +exports.SiPackagistHex = SiPackagist.defaultColor; +exports.SiPacker = SiPacker.default; +exports.SiPackerHex = SiPacker.defaultColor; +exports.SiPackt = SiPackt.default; +exports.SiPacktHex = SiPackt.defaultColor; +exports.SiPaddle = SiPaddle.default; +exports.SiPaddleHex = SiPaddle.defaultColor; +exports.SiPaddlepaddle = SiPaddlepaddle.default; +exports.SiPaddlepaddleHex = SiPaddlepaddle.defaultColor; +exports.SiPaddypower = SiPaddypower.default; +exports.SiPaddypowerHex = SiPaddypower.defaultColor; +exports.SiPadlet = SiPadlet.default; +exports.SiPadletHex = SiPadlet.defaultColor; +exports.SiPagekit = SiPagekit.default; +exports.SiPagekitHex = SiPagekit.defaultColor; +exports.SiPagerduty = SiPagerduty.default; +exports.SiPagerdutyHex = SiPagerduty.defaultColor; +exports.SiPagespeedinsights = SiPagespeedinsights.default; +exports.SiPagespeedinsightsHex = SiPagespeedinsights.defaultColor; +exports.SiPagseguro = SiPagseguro.default; +exports.SiPagseguroHex = SiPagseguro.defaultColor; +exports.SiPalantir = SiPalantir.default; +exports.SiPalantirHex = SiPalantir.defaultColor; +exports.SiPaloaltonetworks = SiPaloaltonetworks.default; +exports.SiPaloaltonetworksHex = SiPaloaltonetworks.defaultColor; +exports.SiPaloaltosoftware = SiPaloaltosoftware.default; +exports.SiPaloaltosoftwareHex = SiPaloaltosoftware.defaultColor; +exports.SiPanasonic = SiPanasonic.default; +exports.SiPanasonicHex = SiPanasonic.defaultColor; +exports.SiPandas = SiPandas.default; +exports.SiPandasHex = SiPandas.defaultColor; +exports.SiPandoc = SiPandoc.default; +exports.SiPandocHex = SiPandoc.defaultColor; +exports.SiPandora = SiPandora.default; +exports.SiPandoraHex = SiPandora.defaultColor; +exports.SiPantheon = SiPantheon.default; +exports.SiPantheonHex = SiPantheon.defaultColor; +exports.SiPaperlessngx = SiPaperlessngx.default; +exports.SiPaperlessngxHex = SiPaperlessngx.defaultColor; +exports.SiPaperspace = SiPaperspace.default; +exports.SiPaperspaceHex = SiPaperspace.defaultColor; +exports.SiPaperswithcode = SiPaperswithcode.default; +exports.SiPaperswithcodeHex = SiPaperswithcode.defaultColor; +exports.SiParadoxinteractive = SiParadoxinteractive.default; +exports.SiParadoxinteractiveHex = SiParadoxinteractive.defaultColor; +exports.SiParamountplus = SiParamountplus.default; +exports.SiParamountplusHex = SiParamountplus.defaultColor; +exports.SiParitysubstrate = SiParitysubstrate.default; +exports.SiParitysubstrateHex = SiParitysubstrate.defaultColor; +exports.SiParrotsecurity = SiParrotsecurity.default; +exports.SiParrotsecurityHex = SiParrotsecurity.defaultColor; +exports.SiParsedotly = SiParsedotly.default; +exports.SiParsedotlyHex = SiParsedotly.defaultColor; +exports.SiPassbolt = SiPassbolt.default; +exports.SiPassboltHex = SiPassbolt.defaultColor; +exports.SiPassport = SiPassport.default; +exports.SiPassportHex = SiPassport.defaultColor; +exports.SiPastebin = SiPastebin.default; +exports.SiPastebinHex = SiPastebin.defaultColor; +exports.SiPatreon = SiPatreon.default; +exports.SiPatreonHex = SiPatreon.defaultColor; +exports.SiPayback = SiPayback.default; +exports.SiPaybackHex = SiPayback.defaultColor; +exports.SiPaychex = SiPaychex.default; +exports.SiPaychexHex = SiPaychex.defaultColor; +exports.SiPayhip = SiPayhip.default; +exports.SiPayhipHex = SiPayhip.defaultColor; +exports.SiPayloadcms = SiPayloadcms.default; +exports.SiPayloadcmsHex = SiPayloadcms.defaultColor; +exports.SiPayoneer = SiPayoneer.default; +exports.SiPayoneerHex = SiPayoneer.defaultColor; +exports.SiPaypal = SiPaypal.default; +exports.SiPaypalHex = SiPaypal.defaultColor; +exports.SiPaysafe = SiPaysafe.default; +exports.SiPaysafeHex = SiPaysafe.defaultColor; +exports.SiPaytm = SiPaytm.default; +exports.SiPaytmHex = SiPaytm.defaultColor; +exports.SiPcgamingwiki = SiPcgamingwiki.default; +exports.SiPcgamingwikiHex = SiPcgamingwiki.defaultColor; +exports.SiPdm = SiPdm.default; +exports.SiPdmHex = SiPdm.defaultColor; +exports.SiPdq = SiPdq.default; +exports.SiPdqHex = SiPdq.defaultColor; +exports.SiPeakdesign = SiPeakdesign.default; +exports.SiPeakdesignHex = SiPeakdesign.defaultColor; +exports.SiPearson = SiPearson.default; +exports.SiPearsonHex = SiPearson.defaultColor; +exports.SiPeerlist = SiPeerlist.default; +exports.SiPeerlistHex = SiPeerlist.defaultColor; +exports.SiPeertube = SiPeertube.default; +exports.SiPeertubeHex = SiPeertube.defaultColor; +exports.SiPegasusairlines = SiPegasusairlines.default; +exports.SiPegasusairlinesHex = SiPegasusairlines.defaultColor; +exports.SiPelican = SiPelican.default; +exports.SiPelicanHex = SiPelican.defaultColor; +exports.SiPeloton = SiPeloton.default; +exports.SiPelotonHex = SiPeloton.defaultColor; +exports.SiPenny = SiPenny.default; +exports.SiPennyHex = SiPenny.defaultColor; +exports.SiPenpot = SiPenpot.default; +exports.SiPenpotHex = SiPenpot.defaultColor; +exports.SiPercy = SiPercy.default; +exports.SiPercyHex = SiPercy.defaultColor; +exports.SiPerforce = SiPerforce.default; +exports.SiPerforceHex = SiPerforce.defaultColor; +exports.SiPerl = SiPerl.default; +exports.SiPerlHex = SiPerl.defaultColor; +exports.SiPerplexity = SiPerplexity.default; +exports.SiPerplexityHex = SiPerplexity.defaultColor; +exports.SiPersistent = SiPersistent.default; +exports.SiPersistentHex = SiPersistent.defaultColor; +exports.SiPersonio = SiPersonio.default; +exports.SiPersonioHex = SiPersonio.defaultColor; +exports.SiPetsathome = SiPetsathome.default; +exports.SiPetsathomeHex = SiPetsathome.defaultColor; +exports.SiPeugeot = SiPeugeot.default; +exports.SiPeugeotHex = SiPeugeot.defaultColor; +exports.SiPexels = SiPexels.default; +exports.SiPexelsHex = SiPexels.defaultColor; +exports.SiPfsense = SiPfsense.default; +exports.SiPfsenseHex = SiPfsense.defaultColor; +exports.SiPhabricator = SiPhabricator.default; +exports.SiPhabricatorHex = SiPhabricator.defaultColor; +exports.SiPhilipshue = SiPhilipshue.default; +exports.SiPhilipshueHex = SiPhilipshue.defaultColor; +exports.SiPhoenixframework = SiPhoenixframework.default; +exports.SiPhoenixframeworkHex = SiPhoenixframework.defaultColor; +exports.SiPhonepe = SiPhonepe.default; +exports.SiPhonepeHex = SiPhonepe.defaultColor; +exports.SiPhosphoricons = SiPhosphoricons.default; +exports.SiPhosphoriconsHex = SiPhosphoricons.defaultColor; +exports.SiPhotobucket = SiPhotobucket.default; +exports.SiPhotobucketHex = SiPhotobucket.defaultColor; +exports.SiPhotocrowd = SiPhotocrowd.default; +exports.SiPhotocrowdHex = SiPhotocrowd.defaultColor; +exports.SiPhoton = SiPhoton.default; +exports.SiPhotonHex = SiPhoton.defaultColor; +exports.SiPhotopea = SiPhotopea.default; +exports.SiPhotopeaHex = SiPhotopea.defaultColor; +exports.SiPhp = SiPhp.default; +exports.SiPhpHex = SiPhp.defaultColor; +exports.SiPhpbb = SiPhpbb.default; +exports.SiPhpbbHex = SiPhpbb.defaultColor; +exports.SiPhpmyadmin = SiPhpmyadmin.default; +exports.SiPhpmyadminHex = SiPhpmyadmin.defaultColor; +exports.SiPhpstorm = SiPhpstorm.default; +exports.SiPhpstormHex = SiPhpstorm.defaultColor; +exports.SiPiaggiogroup = SiPiaggiogroup.default; +exports.SiPiaggiogroupHex = SiPiaggiogroup.defaultColor; +exports.SiPiapro = SiPiapro.default; +exports.SiPiaproHex = SiPiapro.defaultColor; +exports.SiPicardsurgeles = SiPicardsurgeles.default; +exports.SiPicardsurgelesHex = SiPicardsurgeles.defaultColor; +exports.SiPicartodottv = SiPicartodottv.default; +exports.SiPicartodottvHex = SiPicartodottv.defaultColor; +exports.SiPicnic = SiPicnic.default; +exports.SiPicnicHex = SiPicnic.defaultColor; +exports.SiPicpay = SiPicpay.default; +exports.SiPicpayHex = SiPicpay.defaultColor; +exports.SiPicrew = SiPicrew.default; +exports.SiPicrewHex = SiPicrew.defaultColor; +exports.SiPicsart = SiPicsart.default; +exports.SiPicsartHex = SiPicsart.defaultColor; +exports.SiPicxy = SiPicxy.default; +exports.SiPicxyHex = SiPicxy.defaultColor; +exports.SiPihole = SiPihole.default; +exports.SiPiholeHex = SiPihole.defaultColor; +exports.SiPimcore = SiPimcore.default; +exports.SiPimcoreHex = SiPimcore.defaultColor; +exports.SiPinboard = SiPinboard.default; +exports.SiPinboardHex = SiPinboard.defaultColor; +exports.SiPinescript = SiPinescript.default; +exports.SiPinescriptHex = SiPinescript.defaultColor; +exports.SiPinetwork = SiPinetwork.default; +exports.SiPinetworkHex = SiPinetwork.defaultColor; +exports.SiPingdom = SiPingdom.default; +exports.SiPingdomHex = SiPingdom.defaultColor; +exports.SiPinia = SiPinia.default; +exports.SiPiniaHex = SiPinia.defaultColor; +exports.SiPino = SiPino.default; +exports.SiPinoHex = SiPino.defaultColor; +exports.SiPinterest = SiPinterest.default; +exports.SiPinterestHex = SiPinterest.defaultColor; +exports.SiPioneerdj = SiPioneerdj.default; +exports.SiPioneerdjHex = SiPioneerdj.defaultColor; +exports.SiPipecat = SiPipecat.default; +exports.SiPipecatHex = SiPipecat.defaultColor; +exports.SiPiped = SiPiped.default; +exports.SiPipedHex = SiPiped.defaultColor; +exports.SiPipx = SiPipx.default; +exports.SiPipxHex = SiPipx.defaultColor; +exports.SiPivotaltracker = SiPivotaltracker.default; +exports.SiPivotaltrackerHex = SiPivotaltracker.defaultColor; +exports.SiPiwigo = SiPiwigo.default; +exports.SiPiwigoHex = SiPiwigo.defaultColor; +exports.SiPix = SiPix.default; +exports.SiPixHex = SiPix.defaultColor; +exports.SiPixabay = SiPixabay.default; +exports.SiPixabayHex = SiPixabay.defaultColor; +exports.SiPixelfed = SiPixelfed.default; +exports.SiPixelfedHex = SiPixelfed.defaultColor; +exports.SiPixiv = SiPixiv.default; +exports.SiPixivHex = SiPixiv.defaultColor; +exports.SiPixlr = SiPixlr.default; +exports.SiPixlrHex = SiPixlr.defaultColor; +exports.SiPkgsrc = SiPkgsrc.default; +exports.SiPkgsrcHex = SiPkgsrc.defaultColor; +exports.SiPlane = SiPlane.default; +exports.SiPlaneHex = SiPlane.defaultColor; +exports.SiPlanet = SiPlanet.default; +exports.SiPlanetHex = SiPlanet.defaultColor; +exports.SiPlanetscale = SiPlanetscale.default; +exports.SiPlanetscaleHex = SiPlanetscale.defaultColor; +exports.SiPlangrid = SiPlangrid.default; +exports.SiPlangridHex = SiPlangrid.defaultColor; +exports.SiPlatformdotsh = SiPlatformdotsh.default; +exports.SiPlatformdotshHex = SiPlatformdotsh.defaultColor; +exports.SiPlatformio = SiPlatformio.default; +exports.SiPlatformioHex = SiPlatformio.defaultColor; +exports.SiPlatzi = SiPlatzi.default; +exports.SiPlatziHex = SiPlatzi.defaultColor; +exports.SiPlausibleanalytics = SiPlausibleanalytics.default; +exports.SiPlausibleanalyticsHex = SiPlausibleanalytics.defaultColor; +exports.SiPlaycanvas = SiPlaycanvas.default; +exports.SiPlaycanvasHex = SiPlaycanvas.defaultColor; +exports.SiPlayerdotme = SiPlayerdotme.default; +exports.SiPlayerdotmeHex = SiPlayerdotme.defaultColor; +exports.SiPlayerfm = SiPlayerfm.default; +exports.SiPlayerfmHex = SiPlayerfm.defaultColor; +exports.SiPlaystation = SiPlaystation.default; +exports.SiPlaystationHex = SiPlaystation.defaultColor; +exports.SiPlaystation2 = SiPlaystation2.default; +exports.SiPlaystation2Hex = SiPlaystation2.defaultColor; +exports.SiPlaystation3 = SiPlaystation3.default; +exports.SiPlaystation3Hex = SiPlaystation3.defaultColor; +exports.SiPlaystation4 = SiPlaystation4.default; +exports.SiPlaystation4Hex = SiPlaystation4.defaultColor; +exports.SiPlaystation5 = SiPlaystation5.default; +exports.SiPlaystation5Hex = SiPlaystation5.defaultColor; +exports.SiPlaystationportable = SiPlaystationportable.default; +exports.SiPlaystationportableHex = SiPlaystationportable.defaultColor; +exports.SiPlaystationvita = SiPlaystationvita.default; +exports.SiPlaystationvitaHex = SiPlaystationvita.defaultColor; +exports.SiPleroma = SiPleroma.default; +exports.SiPleromaHex = SiPleroma.defaultColor; +exports.SiPlesk = SiPlesk.default; +exports.SiPleskHex = SiPlesk.defaultColor; +exports.SiPlex = SiPlex.default; +exports.SiPlexHex = SiPlex.defaultColor; +exports.SiPlotly = SiPlotly.default; +exports.SiPlotlyHex = SiPlotly.defaultColor; +exports.SiPlume = SiPlume.default; +exports.SiPlumeHex = SiPlume.defaultColor; +exports.SiPluralsight = SiPluralsight.default; +exports.SiPluralsightHex = SiPluralsight.defaultColor; +exports.SiPlurk = SiPlurk.default; +exports.SiPlurkHex = SiPlurk.defaultColor; +exports.SiPm2 = SiPm2.default; +exports.SiPm2Hex = SiPm2.defaultColor; +exports.SiPnpm = SiPnpm.default; +exports.SiPnpmHex = SiPnpm.defaultColor; +exports.SiPocketbase = SiPocketbase.default; +exports.SiPocketbaseHex = SiPocketbase.defaultColor; +exports.SiPocketcasts = SiPocketcasts.default; +exports.SiPocketcastsHex = SiPocketcasts.defaultColor; +exports.SiPodcastaddict = SiPodcastaddict.default; +exports.SiPodcastaddictHex = SiPodcastaddict.defaultColor; +exports.SiPodcastindex = SiPodcastindex.default; +exports.SiPodcastindexHex = SiPodcastindex.defaultColor; +exports.SiPodman = SiPodman.default; +exports.SiPodmanHex = SiPodman.defaultColor; +exports.SiPoe = SiPoe.default; +exports.SiPoeHex = SiPoe.defaultColor; +exports.SiPoetry = SiPoetry.default; +exports.SiPoetryHex = SiPoetry.defaultColor; +exports.SiPolars = SiPolars.default; +exports.SiPolarsHex = SiPolars.defaultColor; +exports.SiPolestar = SiPolestar.default; +exports.SiPolestarHex = SiPolestar.defaultColor; +exports.SiPolkadot = SiPolkadot.default; +exports.SiPolkadotHex = SiPolkadot.defaultColor; +exports.SiPoly = SiPoly.default; +exports.SiPolyHex = SiPoly.defaultColor; +exports.SiPolygon = SiPolygon.default; +exports.SiPolygonHex = SiPolygon.defaultColor; +exports.SiPolymerproject = SiPolymerproject.default; +exports.SiPolymerprojectHex = SiPolymerproject.defaultColor; +exports.SiPolywork = SiPolywork.default; +exports.SiPolyworkHex = SiPolywork.defaultColor; +exports.SiPomerium = SiPomerium.default; +exports.SiPomeriumHex = SiPomerium.defaultColor; +exports.SiPond5 = SiPond5.default; +exports.SiPond5Hex = SiPond5.defaultColor; +exports.SiPopos = SiPopos.default; +exports.SiPoposHex = SiPopos.defaultColor; +exports.SiPorkbun = SiPorkbun.default; +exports.SiPorkbunHex = SiPorkbun.defaultColor; +exports.SiPorsche = SiPorsche.default; +exports.SiPorscheHex = SiPorsche.defaultColor; +exports.SiPortableappsdotcom = SiPortableappsdotcom.default; +exports.SiPortableappsdotcomHex = SiPortableappsdotcom.defaultColor; +exports.SiPortainer = SiPortainer.default; +exports.SiPortainerHex = SiPortainer.defaultColor; +exports.SiPortswigger = SiPortswigger.default; +exports.SiPortswiggerHex = SiPortswigger.defaultColor; +exports.SiPosit = SiPosit.default; +exports.SiPositHex = SiPosit.defaultColor; +exports.SiPostcss = SiPostcss.default; +exports.SiPostcssHex = SiPostcss.defaultColor; +exports.SiPostgresql = SiPostgresql.default; +exports.SiPostgresqlHex = SiPostgresql.defaultColor; +exports.SiPosthog = SiPosthog.default; +exports.SiPosthogHex = SiPosthog.defaultColor; +exports.SiPostiz = SiPostiz.default; +exports.SiPostizHex = SiPostiz.defaultColor; +exports.SiPostman = SiPostman.default; +exports.SiPostmanHex = SiPostman.defaultColor; +exports.SiPostmates = SiPostmates.default; +exports.SiPostmatesHex = SiPostmates.defaultColor; +exports.SiPowers = SiPowers.default; +exports.SiPowersHex = SiPowers.defaultColor; +exports.SiPrdotco = SiPrdotco.default; +exports.SiPrdotcoHex = SiPrdotco.defaultColor; +exports.SiPreact = SiPreact.default; +exports.SiPreactHex = SiPreact.defaultColor; +exports.SiPrecommit = SiPrecommit.default; +exports.SiPrecommitHex = SiPrecommit.defaultColor; +exports.SiPrefect = SiPrefect.default; +exports.SiPrefectHex = SiPrefect.defaultColor; +exports.SiPrek = SiPrek.default; +exports.SiPrekHex = SiPrek.defaultColor; +exports.SiPremid = SiPremid.default; +exports.SiPremidHex = SiPremid.defaultColor; +exports.SiPremierleague = SiPremierleague.default; +exports.SiPremierleagueHex = SiPremierleague.defaultColor; +exports.SiPrepbytes = SiPrepbytes.default; +exports.SiPrepbytesHex = SiPrepbytes.defaultColor; +exports.SiPrestashop = SiPrestashop.default; +exports.SiPrestashopHex = SiPrestashop.defaultColor; +exports.SiPresto = SiPresto.default; +exports.SiPrestoHex = SiPresto.defaultColor; +exports.SiPrettier = SiPrettier.default; +exports.SiPrettierHex = SiPrettier.defaultColor; +exports.SiPretzel = SiPretzel.default; +exports.SiPretzelHex = SiPretzel.defaultColor; +exports.SiPrevention = SiPrevention.default; +exports.SiPreventionHex = SiPrevention.defaultColor; +exports.SiPrezi = SiPrezi.default; +exports.SiPreziHex = SiPrezi.defaultColor; +exports.SiPrimefaces = SiPrimefaces.default; +exports.SiPrimefacesHex = SiPrimefaces.defaultColor; +exports.SiPrimeng = SiPrimeng.default; +exports.SiPrimengHex = SiPrimeng.defaultColor; +exports.SiPrimereact = SiPrimereact.default; +exports.SiPrimereactHex = SiPrimereact.defaultColor; +exports.SiPrimevue = SiPrimevue.default; +exports.SiPrimevueHex = SiPrimevue.defaultColor; +exports.SiPrintables = SiPrintables.default; +exports.SiPrintablesHex = SiPrintables.defaultColor; +exports.SiPrisma = SiPrisma.default; +exports.SiPrismaHex = SiPrisma.defaultColor; +exports.SiPrismic = SiPrismic.default; +exports.SiPrismicHex = SiPrismic.defaultColor; +exports.SiPrivatedivision = SiPrivatedivision.default; +exports.SiPrivatedivisionHex = SiPrivatedivision.defaultColor; +exports.SiPrivateinternetaccess = SiPrivateinternetaccess.default; +exports.SiPrivateinternetaccessHex = SiPrivateinternetaccess.defaultColor; +exports.SiProbot = SiProbot.default; +exports.SiProbotHex = SiProbot.defaultColor; +exports.SiProcessingfoundation = SiProcessingfoundation.default; +exports.SiProcessingfoundationHex = SiProcessingfoundation.defaultColor; +exports.SiProcesson = SiProcesson.default; +exports.SiProcessonHex = SiProcesson.defaultColor; +exports.SiProcesswire = SiProcesswire.default; +exports.SiProcesswireHex = SiProcesswire.defaultColor; +exports.SiProducthunt = SiProducthunt.default; +exports.SiProducthuntHex = SiProducthunt.defaultColor; +exports.SiProgate = SiProgate.default; +exports.SiProgateHex = SiProgate.defaultColor; +exports.SiProgress = SiProgress.default; +exports.SiProgressHex = SiProgress.defaultColor; +exports.SiPrometheus = SiPrometheus.default; +exports.SiPrometheusHex = SiPrometheus.defaultColor; +exports.SiPronounsdotpage = SiPronounsdotpage.default; +exports.SiPronounsdotpageHex = SiPronounsdotpage.defaultColor; +exports.SiProsieben = SiProsieben.default; +exports.SiProsiebenHex = SiProsieben.defaultColor; +exports.SiProteus = SiProteus.default; +exports.SiProteusHex = SiProteus.defaultColor; +exports.SiProtocolsdotio = SiProtocolsdotio.default; +exports.SiProtocolsdotioHex = SiProtocolsdotio.defaultColor; +exports.SiProtodotio = SiProtodotio.default; +exports.SiProtodotioHex = SiProtodotio.defaultColor; +exports.SiProton = SiProton.default; +exports.SiProtonHex = SiProton.defaultColor; +exports.SiProtoncalendar = SiProtoncalendar.default; +exports.SiProtoncalendarHex = SiProtoncalendar.defaultColor; +exports.SiProtondb = SiProtondb.default; +exports.SiProtondbHex = SiProtondb.defaultColor; +exports.SiProtondrive = SiProtondrive.default; +exports.SiProtondriveHex = SiProtondrive.defaultColor; +exports.SiProtonmail = SiProtonmail.default; +exports.SiProtonmailHex = SiProtonmail.defaultColor; +exports.SiProtonvpn = SiProtonvpn.default; +exports.SiProtonvpnHex = SiProtonvpn.defaultColor; +exports.SiProtools = SiProtools.default; +exports.SiProtoolsHex = SiProtools.defaultColor; +exports.SiProtractor = SiProtractor.default; +exports.SiProtractorHex = SiProtractor.defaultColor; +exports.SiProxmox = SiProxmox.default; +exports.SiProxmoxHex = SiProxmox.defaultColor; +exports.SiPterodactyl = SiPterodactyl.default; +exports.SiPterodactylHex = SiPterodactyl.defaultColor; +exports.SiPubg = SiPubg.default; +exports.SiPubgHex = SiPubg.defaultColor; +exports.SiPublons = SiPublons.default; +exports.SiPublonsHex = SiPublons.defaultColor; +exports.SiPubmed = SiPubmed.default; +exports.SiPubmedHex = SiPubmed.defaultColor; +exports.SiPug = SiPug.default; +exports.SiPugHex = SiPug.defaultColor; +exports.SiPulumi = SiPulumi.default; +exports.SiPulumiHex = SiPulumi.defaultColor; +exports.SiPuma = SiPuma.default; +exports.SiPumaHex = SiPuma.defaultColor; +exports.SiPuppet = SiPuppet.default; +exports.SiPuppetHex = SiPuppet.defaultColor; +exports.SiPuppeteer = SiPuppeteer.default; +exports.SiPuppeteerHex = SiPuppeteer.defaultColor; +exports.SiPurescript = SiPurescript.default; +exports.SiPurescriptHex = SiPurescript.defaultColor; +exports.SiPurgecss = SiPurgecss.default; +exports.SiPurgecssHex = SiPurgecss.defaultColor; +exports.SiPurism = SiPurism.default; +exports.SiPurismHex = SiPurism.defaultColor; +exports.SiPushbullet = SiPushbullet.default; +exports.SiPushbulletHex = SiPushbullet.defaultColor; +exports.SiPusher = SiPusher.default; +exports.SiPusherHex = SiPusher.defaultColor; +exports.SiPwa = SiPwa.default; +exports.SiPwaHex = SiPwa.defaultColor; +exports.SiPycharm = SiPycharm.default; +exports.SiPycharmHex = SiPycharm.defaultColor; +exports.SiPycqa = SiPycqa.default; +exports.SiPycqaHex = SiPycqa.defaultColor; +exports.SiPydantic = SiPydantic.default; +exports.SiPydanticHex = SiPydantic.defaultColor; +exports.SiPyg = SiPyg.default; +exports.SiPygHex = SiPyg.defaultColor; +exports.SiPypi = SiPypi.default; +exports.SiPypiHex = SiPypi.defaultColor; +exports.SiPypy = SiPypy.default; +exports.SiPypyHex = SiPypy.defaultColor; +exports.SiPyscaffold = SiPyscaffold.default; +exports.SiPyscaffoldHex = SiPyscaffold.defaultColor; +exports.SiPysyft = SiPysyft.default; +exports.SiPysyftHex = SiPysyft.defaultColor; +exports.SiPytest = SiPytest.default; +exports.SiPytestHex = SiPytest.defaultColor; +exports.SiPython = SiPython.default; +exports.SiPythonHex = SiPython.defaultColor; +exports.SiPythonanywhere = SiPythonanywhere.default; +exports.SiPythonanywhereHex = SiPythonanywhere.defaultColor; +exports.SiPytorch = SiPytorch.default; +exports.SiPytorchHex = SiPytorch.defaultColor; +exports.SiPyup = SiPyup.default; +exports.SiPyupHex = SiPyup.defaultColor; +exports.SiQantas = SiQantas.default; +exports.SiQantasHex = SiQantas.defaultColor; +exports.SiQase = SiQase.default; +exports.SiQaseHex = SiQase.defaultColor; +exports.SiQatarairways = SiQatarairways.default; +exports.SiQatarairwaysHex = SiQatarairways.defaultColor; +exports.SiQbittorrent = SiQbittorrent.default; +exports.SiQbittorrentHex = SiQbittorrent.defaultColor; +exports.SiQemu = SiQemu.default; +exports.SiQemuHex = SiQemu.defaultColor; +exports.SiQgis = SiQgis.default; +exports.SiQgisHex = SiQgis.defaultColor; +exports.SiQi = SiQi.default; +exports.SiQiHex = SiQi.defaultColor; +exports.SiQiita = SiQiita.default; +exports.SiQiitaHex = SiQiita.defaultColor; +exports.SiQiskit = SiQiskit.default; +exports.SiQiskitHex = SiQiskit.defaultColor; +exports.SiQiwi = SiQiwi.default; +exports.SiQiwiHex = SiQiwi.defaultColor; +exports.SiQlik = SiQlik.default; +exports.SiQlikHex = SiQlik.defaultColor; +exports.SiQlty = SiQlty.default; +exports.SiQltyHex = SiQlty.defaultColor; +exports.SiQmk = SiQmk.default; +exports.SiQmkHex = SiQmk.defaultColor; +exports.SiQnap = SiQnap.default; +exports.SiQnapHex = SiQnap.defaultColor; +exports.SiQodo = SiQodo.default; +exports.SiQodoHex = SiQodo.defaultColor; +exports.SiQq = SiQq.default; +exports.SiQqHex = SiQq.defaultColor; +exports.SiQt = SiQt.default; +exports.SiQtHex = SiQt.defaultColor; +exports.SiQuad9 = SiQuad9.default; +exports.SiQuad9Hex = SiQuad9.defaultColor; +exports.SiQualcomm = SiQualcomm.default; +exports.SiQualcommHex = SiQualcomm.defaultColor; +exports.SiQualtrics = SiQualtrics.default; +exports.SiQualtricsHex = SiQualtrics.defaultColor; +exports.SiQualys = SiQualys.default; +exports.SiQualysHex = SiQualys.defaultColor; +exports.SiQuantcast = SiQuantcast.default; +exports.SiQuantcastHex = SiQuantcast.defaultColor; +exports.SiQuantconnect = SiQuantconnect.default; +exports.SiQuantconnectHex = SiQuantconnect.defaultColor; +exports.SiQuarkus = SiQuarkus.default; +exports.SiQuarkusHex = SiQuarkus.defaultColor; +exports.SiQuarto = SiQuarto.default; +exports.SiQuartoHex = SiQuarto.defaultColor; +exports.SiQuasar = SiQuasar.default; +exports.SiQuasarHex = SiQuasar.defaultColor; +exports.SiQubesos = SiQubesos.default; +exports.SiQubesosHex = SiQubesos.defaultColor; +exports.SiQuest = SiQuest.default; +exports.SiQuestHex = SiQuest.defaultColor; +exports.SiQuickbooks = SiQuickbooks.default; +exports.SiQuickbooksHex = SiQuickbooks.defaultColor; +exports.SiQuicklook = SiQuicklook.default; +exports.SiQuicklookHex = SiQuicklook.defaultColor; +exports.SiQuicktime = SiQuicktime.default; +exports.SiQuicktimeHex = SiQuicktime.defaultColor; +exports.SiQuicktype = SiQuicktype.default; +exports.SiQuicktypeHex = SiQuicktype.defaultColor; +exports.SiQuizlet = SiQuizlet.default; +exports.SiQuizletHex = SiQuizlet.defaultColor; +exports.SiQuora = SiQuora.default; +exports.SiQuoraHex = SiQuora.defaultColor; +exports.SiQwant = SiQwant.default; +exports.SiQwantHex = SiQwant.defaultColor; +exports.SiQwik = SiQwik.default; +exports.SiQwikHex = SiQwik.defaultColor; +exports.SiQwiklabs = SiQwiklabs.default; +exports.SiQwiklabsHex = SiQwiklabs.defaultColor; +exports.SiQzone = SiQzone.default; +exports.SiQzoneHex = SiQzone.defaultColor; +exports.SiR = SiR.default; +exports.SiRHex = SiR.defaultColor; +exports.SiR3 = SiR3.default; +exports.SiR3Hex = SiR3.defaultColor; +exports.SiRabbitmq = SiRabbitmq.default; +exports.SiRabbitmqHex = SiRabbitmq.defaultColor; +exports.SiRacket = SiRacket.default; +exports.SiRacketHex = SiRacket.defaultColor; +exports.SiRadar = SiRadar.default; +exports.SiRadarHex = SiRadar.defaultColor; +exports.SiRadarr = SiRadarr.default; +exports.SiRadarrHex = SiRadarr.defaultColor; +exports.SiRadiofrance = SiRadiofrance.default; +exports.SiRadiofranceHex = SiRadiofrance.defaultColor; +exports.SiRadixui = SiRadixui.default; +exports.SiRadixuiHex = SiRadixui.defaultColor; +exports.SiRadstudio = SiRadstudio.default; +exports.SiRadstudioHex = SiRadstudio.defaultColor; +exports.SiRailway = SiRailway.default; +exports.SiRailwayHex = SiRailway.defaultColor; +exports.SiRainmeter = SiRainmeter.default; +exports.SiRainmeterHex = SiRainmeter.defaultColor; +exports.SiRainyun = SiRainyun.default; +exports.SiRainyunHex = SiRainyun.defaultColor; +exports.SiRakuten = SiRakuten.default; +exports.SiRakutenHex = SiRakuten.defaultColor; +exports.SiRakutenkobo = SiRakutenkobo.default; +exports.SiRakutenkoboHex = SiRakutenkobo.defaultColor; +exports.SiRam = SiRam.default; +exports.SiRamHex = SiRam.defaultColor; +exports.SiRancher = SiRancher.default; +exports.SiRancherHex = SiRancher.defaultColor; +exports.SiRapid = SiRapid.default; +exports.SiRapidHex = SiRapid.defaultColor; +exports.SiRarible = SiRarible.default; +exports.SiRaribleHex = SiRarible.defaultColor; +exports.SiRasa = SiRasa.default; +exports.SiRasaHex = SiRasa.defaultColor; +exports.SiRaspberrypi = SiRaspberrypi.default; +exports.SiRaspberrypiHex = SiRaspberrypi.defaultColor; +exports.SiRatatui = SiRatatui.default; +exports.SiRatatuiHex = SiRatatui.defaultColor; +exports.SiRavelry = SiRavelry.default; +exports.SiRavelryHex = SiRavelry.defaultColor; +exports.SiRay = SiRay.default; +exports.SiRayHex = SiRay.defaultColor; +exports.SiRaycast = SiRaycast.default; +exports.SiRaycastHex = SiRaycast.defaultColor; +exports.SiRaylib = SiRaylib.default; +exports.SiRaylibHex = SiRaylib.defaultColor; +exports.SiRazer = SiRazer.default; +exports.SiRazerHex = SiRazer.defaultColor; +exports.SiRazorpay = SiRazorpay.default; +exports.SiRazorpayHex = SiRazorpay.defaultColor; +exports.SiRclone = SiRclone.default; +exports.SiRcloneHex = SiRclone.defaultColor; +exports.SiReact = SiReact.default; +exports.SiReactHex = SiReact.defaultColor; +exports.SiReactbootstrap = SiReactbootstrap.default; +exports.SiReactbootstrapHex = SiReactbootstrap.defaultColor; +exports.SiReacthookform = SiReacthookform.default; +exports.SiReacthookformHex = SiReacthookform.defaultColor; +exports.SiReactiveresume = SiReactiveresume.default; +exports.SiReactiveresumeHex = SiReactiveresume.defaultColor; +exports.SiReactivex = SiReactivex.default; +exports.SiReactivexHex = SiReactivex.defaultColor; +exports.SiReactos = SiReactos.default; +exports.SiReactosHex = SiReactos.defaultColor; +exports.SiReactquery = SiReactquery.default; +exports.SiReactqueryHex = SiReactquery.defaultColor; +exports.SiReactrouter = SiReactrouter.default; +exports.SiReactrouterHex = SiReactrouter.defaultColor; +exports.SiReacttable = SiReacttable.default; +exports.SiReacttableHex = SiReacttable.defaultColor; +exports.SiReaddotcv = SiReaddotcv.default; +exports.SiReaddotcvHex = SiReaddotcv.defaultColor; +exports.SiReadme = SiReadme.default; +exports.SiReadmeHex = SiReadme.defaultColor; +exports.SiReadthedocs = SiReadthedocs.default; +exports.SiReadthedocsHex = SiReadthedocs.defaultColor; +exports.SiReason = SiReason.default; +exports.SiReasonHex = SiReason.defaultColor; +exports.SiReasonstudios = SiReasonstudios.default; +exports.SiReasonstudiosHex = SiReasonstudios.defaultColor; +exports.SiRecoil = SiRecoil.default; +exports.SiRecoilHex = SiRecoil.defaultColor; +exports.SiRed = SiRed.default; +exports.SiRedHex = SiRed.defaultColor; +exports.SiRedash = SiRedash.default; +exports.SiRedashHex = SiRedash.defaultColor; +exports.SiRedbubble = SiRedbubble.default; +exports.SiRedbubbleHex = SiRedbubble.defaultColor; +exports.SiRedbull = SiRedbull.default; +exports.SiRedbullHex = SiRedbull.defaultColor; +exports.SiRedcandlegames = SiRedcandlegames.default; +exports.SiRedcandlegamesHex = SiRedcandlegames.defaultColor; +exports.SiReddit = SiReddit.default; +exports.SiRedditHex = SiReddit.defaultColor; +exports.SiRedhat = SiRedhat.default; +exports.SiRedhatHex = SiRedhat.defaultColor; +exports.SiRedhatopenshift = SiRedhatopenshift.default; +exports.SiRedhatopenshiftHex = SiRedhatopenshift.defaultColor; +exports.SiRedis = SiRedis.default; +exports.SiRedisHex = SiRedis.defaultColor; +exports.SiRedmine = SiRedmine.default; +exports.SiRedmineHex = SiRedmine.defaultColor; +exports.SiRedox = SiRedox.default; +exports.SiRedoxHex = SiRedox.defaultColor; +exports.SiRedragon = SiRedragon.default; +exports.SiRedragonHex = SiRedragon.defaultColor; +exports.SiRedsys = SiRedsys.default; +exports.SiRedsysHex = SiRedsys.defaultColor; +exports.SiRedux = SiRedux.default; +exports.SiReduxHex = SiRedux.defaultColor; +exports.SiReduxsaga = SiReduxsaga.default; +exports.SiReduxsagaHex = SiReduxsaga.defaultColor; +exports.SiRedwoodjs = SiRedwoodjs.default; +exports.SiRedwoodjsHex = SiRedwoodjs.defaultColor; +exports.SiReebok = SiReebok.default; +exports.SiReebokHex = SiReebok.defaultColor; +exports.SiRefine = SiRefine.default; +exports.SiRefineHex = SiRefine.defaultColor; +exports.SiRefinedgithub = SiRefinedgithub.default; +exports.SiRefinedgithubHex = SiRefinedgithub.defaultColor; +exports.SiReflex = SiReflex.default; +exports.SiReflexHex = SiReflex.defaultColor; +exports.SiRekaui = SiRekaui.default; +exports.SiRekauiHex = SiRekaui.defaultColor; +exports.SiRelay = SiRelay.default; +exports.SiRelayHex = SiRelay.defaultColor; +exports.SiRelianceindustrieslimited = SiRelianceindustrieslimited.default; +exports.SiRelianceindustrieslimitedHex = SiRelianceindustrieslimited.defaultColor; +exports.SiRemark = SiRemark.default; +exports.SiRemarkHex = SiRemark.defaultColor; +exports.SiRemedyentertainment = SiRemedyentertainment.default; +exports.SiRemedyentertainmentHex = SiRemedyentertainment.defaultColor; +exports.SiRemix = SiRemix.default; +exports.SiRemixHex = SiRemix.defaultColor; +exports.SiRemovedotbg = SiRemovedotbg.default; +exports.SiRemovedotbgHex = SiRemovedotbg.defaultColor; +exports.SiRenault = SiRenault.default; +exports.SiRenaultHex = SiRenault.defaultColor; +exports.SiRender = SiRender.default; +exports.SiRenderHex = SiRender.defaultColor; +exports.SiRenovate = SiRenovate.default; +exports.SiRenovateHex = SiRenovate.defaultColor; +exports.SiRenpy = SiRenpy.default; +exports.SiRenpyHex = SiRenpy.defaultColor; +exports.SiRenren = SiRenren.default; +exports.SiRenrenHex = SiRenren.defaultColor; +exports.SiReplicate = SiReplicate.default; +exports.SiReplicateHex = SiReplicate.defaultColor; +exports.SiReplit = SiReplit.default; +exports.SiReplitHex = SiReplit.defaultColor; +exports.SiRepublicofgamers = SiRepublicofgamers.default; +exports.SiRepublicofgamersHex = SiRepublicofgamers.defaultColor; +exports.SiRescript = SiRescript.default; +exports.SiRescriptHex = SiRescript.defaultColor; +exports.SiRescuetime = SiRescuetime.default; +exports.SiRescuetimeHex = SiRescuetime.defaultColor; +exports.SiResearchgate = SiResearchgate.default; +exports.SiResearchgateHex = SiResearchgate.defaultColor; +exports.SiResend = SiResend.default; +exports.SiResendHex = SiResend.defaultColor; +exports.SiResharper = SiResharper.default; +exports.SiResharperHex = SiResharper.defaultColor; +exports.SiResurrectionremixos = SiResurrectionremixos.default; +exports.SiResurrectionremixosHex = SiResurrectionremixos.defaultColor; +exports.SiRetool = SiRetool.default; +exports.SiRetoolHex = SiRetool.defaultColor; +exports.SiRetroachievements = SiRetroachievements.default; +exports.SiRetroachievementsHex = SiRetroachievements.defaultColor; +exports.SiRetroarch = SiRetroarch.default; +exports.SiRetroarchHex = SiRetroarch.defaultColor; +exports.SiRetropie = SiRetropie.default; +exports.SiRetropieHex = SiRetropie.defaultColor; +exports.SiRevanced = SiRevanced.default; +exports.SiRevancedHex = SiRevanced.defaultColor; +exports.SiRevealdotjs = SiRevealdotjs.default; +exports.SiRevealdotjsHex = SiRevealdotjs.defaultColor; +exports.SiRevenuecat = SiRevenuecat.default; +exports.SiRevenuecatHex = SiRevenuecat.defaultColor; +exports.SiReverbnation = SiReverbnation.default; +exports.SiReverbnationHex = SiReverbnation.defaultColor; +exports.SiRevoltdotchat = SiRevoltdotchat.default; +exports.SiRevoltdotchatHex = SiRevoltdotchat.defaultColor; +exports.SiRevolut = SiRevolut.default; +exports.SiRevolutHex = SiRevolut.defaultColor; +exports.SiRewe = SiRewe.default; +exports.SiReweHex = SiRewe.defaultColor; +exports.SiRezgo = SiRezgo.default; +exports.SiRezgoHex = SiRezgo.defaultColor; +exports.SiRhinoceros = SiRhinoceros.default; +exports.SiRhinocerosHex = SiRhinoceros.defaultColor; +exports.SiRich = SiRich.default; +exports.SiRichHex = SiRich.defaultColor; +exports.SiRider = SiRider.default; +exports.SiRiderHex = SiRider.defaultColor; +exports.SiRimacautomobili = SiRimacautomobili.default; +exports.SiRimacautomobiliHex = SiRimacautomobili.defaultColor; +exports.SiRime = SiRime.default; +exports.SiRimeHex = SiRime.defaultColor; +exports.SiRing = SiRing.default; +exports.SiRingHex = SiRing.defaultColor; +exports.SiRiotgames = SiRiotgames.default; +exports.SiRiotgamesHex = SiRiotgames.defaultColor; +exports.SiRipple = SiRipple.default; +exports.SiRippleHex = SiRipple.defaultColor; +exports.SiRiscv = SiRiscv.default; +exports.SiRiscvHex = SiRiscv.defaultColor; +exports.SiRiseup = SiRiseup.default; +exports.SiRiseupHex = SiRiseup.defaultColor; +exports.SiRitzcarlton = SiRitzcarlton.default; +exports.SiRitzcarltonHex = SiRitzcarlton.defaultColor; +exports.SiRive = SiRive.default; +exports.SiRiveHex = SiRive.defaultColor; +exports.SiRoadmapdotsh = SiRoadmapdotsh.default; +exports.SiRoadmapdotshHex = SiRoadmapdotsh.defaultColor; +exports.SiRoamresearch = SiRoamresearch.default; +exports.SiRoamresearchHex = SiRoamresearch.defaultColor; +exports.SiRobinhood = SiRobinhood.default; +exports.SiRobinhoodHex = SiRobinhood.defaultColor; +exports.SiRoblox = SiRoblox.default; +exports.SiRobloxHex = SiRoblox.defaultColor; +exports.SiRobloxstudio = SiRobloxstudio.default; +exports.SiRobloxstudioHex = SiRobloxstudio.defaultColor; +exports.SiRoboflow = SiRoboflow.default; +exports.SiRoboflowHex = SiRoboflow.defaultColor; +exports.SiRobotframework = SiRobotframework.default; +exports.SiRobotframeworkHex = SiRobotframework.defaultColor; +exports.SiRocket = SiRocket.default; +exports.SiRocketHex = SiRocket.defaultColor; +exports.SiRocketdotchat = SiRocketdotchat.default; +exports.SiRocketdotchatHex = SiRocketdotchat.defaultColor; +exports.SiRocksdb = SiRocksdb.default; +exports.SiRocksdbHex = SiRocksdb.defaultColor; +exports.SiRockstargames = SiRockstargames.default; +exports.SiRockstargamesHex = SiRockstargames.defaultColor; +exports.SiRockwellautomation = SiRockwellautomation.default; +exports.SiRockwellautomationHex = SiRockwellautomation.defaultColor; +exports.SiRockylinux = SiRockylinux.default; +exports.SiRockylinuxHex = SiRockylinux.defaultColor; +exports.SiRoku = SiRoku.default; +exports.SiRokuHex = SiRoku.defaultColor; +exports.SiRoll20 = SiRoll20.default; +exports.SiRoll20Hex = SiRoll20.defaultColor; +exports.SiRollbar = SiRollbar.default; +exports.SiRollbarHex = SiRollbar.defaultColor; +exports.SiRolldown = SiRolldown.default; +exports.SiRolldownHex = SiRolldown.defaultColor; +exports.SiRollsroyce = SiRollsroyce.default; +exports.SiRollsroyceHex = SiRollsroyce.defaultColor; +exports.SiRollupdotjs = SiRollupdotjs.default; +exports.SiRollupdotjsHex = SiRollupdotjs.defaultColor; +exports.SiRook = SiRook.default; +exports.SiRookHex = SiRook.defaultColor; +exports.SiRoon = SiRoon.default; +exports.SiRoonHex = SiRoon.defaultColor; +exports.SiRoot = SiRoot.default; +exports.SiRootHex = SiRoot.defaultColor; +exports.SiRootme = SiRootme.default; +exports.SiRootmeHex = SiRootme.defaultColor; +exports.SiRoots = SiRoots.default; +exports.SiRootsHex = SiRoots.defaultColor; +exports.SiRootsbedrock = SiRootsbedrock.default; +exports.SiRootsbedrockHex = SiRootsbedrock.defaultColor; +exports.SiRootssage = SiRootssage.default; +exports.SiRootssageHex = SiRootssage.defaultColor; +exports.SiRos = SiRos.default; +exports.SiRosHex = SiRos.defaultColor; +exports.SiRossmann = SiRossmann.default; +exports.SiRossmannHex = SiRossmann.defaultColor; +exports.SiRotaryinternational = SiRotaryinternational.default; +exports.SiRotaryinternationalHex = SiRotaryinternational.defaultColor; +exports.SiRottentomatoes = SiRottentomatoes.default; +exports.SiRottentomatoesHex = SiRottentomatoes.defaultColor; +exports.SiRoundcube = SiRoundcube.default; +exports.SiRoundcubeHex = SiRoundcube.defaultColor; +exports.SiRsocket = SiRsocket.default; +exports.SiRsocketHex = SiRsocket.defaultColor; +exports.SiRss = SiRss.default; +exports.SiRssHex = SiRss.defaultColor; +exports.SiRstudioide = SiRstudioide.default; +exports.SiRstudioideHex = SiRstudioide.defaultColor; +exports.SiRte = SiRte.default; +exports.SiRteHex = SiRte.defaultColor; +exports.SiRtl = SiRtl.default; +exports.SiRtlHex = SiRtl.defaultColor; +exports.SiRtlzwei = SiRtlzwei.default; +exports.SiRtlzweiHex = SiRtlzwei.defaultColor; +exports.SiRtm = SiRtm.default; +exports.SiRtmHex = SiRtm.defaultColor; +exports.SiRubocop = SiRubocop.default; +exports.SiRubocopHex = SiRubocop.defaultColor; +exports.SiRuby = SiRuby.default; +exports.SiRubyHex = SiRuby.defaultColor; +exports.SiRubygems = SiRubygems.default; +exports.SiRubygemsHex = SiRubygems.defaultColor; +exports.SiRubymine = SiRubymine.default; +exports.SiRubymineHex = SiRubymine.defaultColor; +exports.SiRubyonrails = SiRubyonrails.default; +exports.SiRubyonrailsHex = SiRubyonrails.defaultColor; +exports.SiRubysinatra = SiRubysinatra.default; +exports.SiRubysinatraHex = SiRubysinatra.defaultColor; +exports.SiRuff = SiRuff.default; +exports.SiRuffHex = SiRuff.defaultColor; +exports.SiRumahweb = SiRumahweb.default; +exports.SiRumahwebHex = SiRumahweb.defaultColor; +exports.SiRumble = SiRumble.default; +exports.SiRumbleHex = SiRumble.defaultColor; +exports.SiRundeck = SiRundeck.default; +exports.SiRundeckHex = SiRundeck.defaultColor; +exports.SiRunkeeper = SiRunkeeper.default; +exports.SiRunkeeperHex = SiRunkeeper.defaultColor; +exports.SiRunkit = SiRunkit.default; +exports.SiRunkitHex = SiRunkit.defaultColor; +exports.SiRunrundotit = SiRunrundotit.default; +exports.SiRunrundotitHex = SiRunrundotit.defaultColor; +exports.SiRust = SiRust.default; +exports.SiRustHex = SiRust.defaultColor; +exports.SiRustdesk = SiRustdesk.default; +exports.SiRustdeskHex = SiRustdesk.defaultColor; +exports.SiRxdb = SiRxdb.default; +exports.SiRxdbHex = SiRxdb.defaultColor; +exports.SiRyanair = SiRyanair.default; +exports.SiRyanairHex = SiRyanair.defaultColor; +exports.SiRye = SiRye.default; +exports.SiRyeHex = SiRye.defaultColor; +exports.SiS7airlines = SiS7airlines.default; +exports.SiS7airlinesHex = SiS7airlines.defaultColor; +exports.SiSabanci = SiSabanci.default; +exports.SiSabanciHex = SiSabanci.defaultColor; +exports.SiSafari = SiSafari.default; +exports.SiSafariHex = SiSafari.defaultColor; +exports.SiSage = SiSage.default; +exports.SiSageHex = SiSage.defaultColor; +exports.SiSagemath = SiSagemath.default; +exports.SiSagemathHex = SiSagemath.defaultColor; +exports.SiSahibinden = SiSahibinden.default; +exports.SiSahibindenHex = SiSahibinden.defaultColor; +exports.SiSailfishos = SiSailfishos.default; +exports.SiSailfishosHex = SiSailfishos.defaultColor; +exports.SiSailsdotjs = SiSailsdotjs.default; +exports.SiSailsdotjsHex = SiSailsdotjs.defaultColor; +exports.SiSalla = SiSalla.default; +exports.SiSallaHex = SiSalla.defaultColor; +exports.SiSaltproject = SiSaltproject.default; +exports.SiSaltprojectHex = SiSaltproject.defaultColor; +exports.SiSamsclub = SiSamsclub.default; +exports.SiSamsclubHex = SiSamsclub.defaultColor; +exports.SiSamsung = SiSamsung.default; +exports.SiSamsungHex = SiSamsung.defaultColor; +exports.SiSamsungpay = SiSamsungpay.default; +exports.SiSamsungpayHex = SiSamsungpay.defaultColor; +exports.SiSanfranciscomunicipalrailway = SiSanfranciscomunicipalrailway.default; +exports.SiSanfranciscomunicipalrailwayHex = SiSanfranciscomunicipalrailway.defaultColor; +exports.SiSanic = SiSanic.default; +exports.SiSanicHex = SiSanic.defaultColor; +exports.SiSanity = SiSanity.default; +exports.SiSanityHex = SiSanity.defaultColor; +exports.SiSaopaulometro = SiSaopaulometro.default; +exports.SiSaopaulometroHex = SiSaopaulometro.defaultColor; +exports.SiSap = SiSap.default; +exports.SiSapHex = SiSap.defaultColor; +exports.SiSartorius = SiSartorius.default; +exports.SiSartoriusHex = SiSartorius.defaultColor; +exports.SiSass = SiSass.default; +exports.SiSassHex = SiSass.defaultColor; +exports.SiSat1 = SiSat1.default; +exports.SiSat1Hex = SiSat1.defaultColor; +exports.SiSatellite = SiSatellite.default; +exports.SiSatelliteHex = SiSatellite.defaultColor; +exports.SiSaturn = SiSaturn.default; +exports.SiSaturnHex = SiSaturn.defaultColor; +exports.SiSaucelabs = SiSaucelabs.default; +exports.SiSaucelabsHex = SiSaucelabs.defaultColor; +exports.SiSaudia = SiSaudia.default; +exports.SiSaudiaHex = SiSaudia.defaultColor; +exports.SiScala = SiScala.default; +exports.SiScalaHex = SiScala.defaultColor; +exports.SiScalar = SiScalar.default; +exports.SiScalarHex = SiScalar.defaultColor; +exports.SiScaleway = SiScaleway.default; +exports.SiScalewayHex = SiScaleway.defaultColor; +exports.SiScan = SiScan.default; +exports.SiScanHex = SiScan.defaultColor; +exports.SiScania = SiScania.default; +exports.SiScaniaHex = SiScania.defaultColor; +exports.SiSchneiderelectric = SiSchneiderelectric.default; +exports.SiSchneiderelectricHex = SiSchneiderelectric.defaultColor; +exports.SiScikitlearn = SiScikitlearn.default; +exports.SiScikitlearnHex = SiScikitlearn.defaultColor; +exports.SiScilab = SiScilab.default; +exports.SiScilabHex = SiScilab.defaultColor; +exports.SiScipy = SiScipy.default; +exports.SiScipyHex = SiScipy.defaultColor; +exports.SiScopus = SiScopus.default; +exports.SiScopusHex = SiScopus.defaultColor; +exports.SiScpfoundation = SiScpfoundation.default; +exports.SiScpfoundationHex = SiScpfoundation.defaultColor; +exports.SiScrapbox = SiScrapbox.default; +exports.SiScrapboxHex = SiScrapbox.defaultColor; +exports.SiScrapy = SiScrapy.default; +exports.SiScrapyHex = SiScrapy.defaultColor; +exports.SiScratch = SiScratch.default; +exports.SiScratchHex = SiScratch.defaultColor; +exports.SiScreencastify = SiScreencastify.default; +exports.SiScreencastifyHex = SiScreencastify.defaultColor; +exports.SiScrimba = SiScrimba.default; +exports.SiScrimbaHex = SiScrimba.defaultColor; +exports.SiScrollreveal = SiScrollreveal.default; +exports.SiScrollrevealHex = SiScrollreveal.defaultColor; +exports.SiScrumalliance = SiScrumalliance.default; +exports.SiScrumallianceHex = SiScrumalliance.defaultColor; +exports.SiScrutinizerci = SiScrutinizerci.default; +exports.SiScrutinizerciHex = SiScrutinizerci.defaultColor; +exports.SiScylladb = SiScylladb.default; +exports.SiScylladbHex = SiScylladb.defaultColor; +exports.SiSeafile = SiSeafile.default; +exports.SiSeafileHex = SiSeafile.defaultColor; +exports.SiSeagate = SiSeagate.default; +exports.SiSeagateHex = SiSeagate.defaultColor; +exports.SiSearxng = SiSearxng.default; +exports.SiSearxngHex = SiSearxng.defaultColor; +exports.SiSeat = SiSeat.default; +exports.SiSeatHex = SiSeat.defaultColor; +exports.SiSeatgeek = SiSeatgeek.default; +exports.SiSeatgeekHex = SiSeatgeek.defaultColor; +exports.SiSecurityscorecard = SiSecurityscorecard.default; +exports.SiSecurityscorecardHex = SiSecurityscorecard.defaultColor; +exports.SiSefaria = SiSefaria.default; +exports.SiSefariaHex = SiSefaria.defaultColor; +exports.SiSega = SiSega.default; +exports.SiSegaHex = SiSega.defaultColor; +exports.SiSelenium = SiSelenium.default; +exports.SiSeleniumHex = SiSelenium.defaultColor; +exports.SiSellfy = SiSellfy.default; +exports.SiSellfyHex = SiSellfy.defaultColor; +exports.SiSemanticrelease = SiSemanticrelease.default; +exports.SiSemanticreleaseHex = SiSemanticrelease.defaultColor; +exports.SiSemanticscholar = SiSemanticscholar.default; +exports.SiSemanticscholarHex = SiSemanticscholar.defaultColor; +exports.SiSemanticui = SiSemanticui.default; +exports.SiSemanticuiHex = SiSemanticui.defaultColor; +exports.SiSemanticuireact = SiSemanticuireact.default; +exports.SiSemanticuireactHex = SiSemanticuireact.defaultColor; +exports.SiSemanticweb = SiSemanticweb.default; +exports.SiSemanticwebHex = SiSemanticweb.defaultColor; +exports.SiSemaphoreci = SiSemaphoreci.default; +exports.SiSemaphoreciHex = SiSemaphoreci.defaultColor; +exports.SiSemrush = SiSemrush.default; +exports.SiSemrushHex = SiSemrush.defaultColor; +exports.SiSemver = SiSemver.default; +exports.SiSemverHex = SiSemver.defaultColor; +exports.SiSencha = SiSencha.default; +exports.SiSenchaHex = SiSencha.defaultColor; +exports.SiSennheiser = SiSennheiser.default; +exports.SiSennheiserHex = SiSennheiser.defaultColor; +exports.SiSensu = SiSensu.default; +exports.SiSensuHex = SiSensu.defaultColor; +exports.SiSentry = SiSentry.default; +exports.SiSentryHex = SiSentry.defaultColor; +exports.SiSepa = SiSepa.default; +exports.SiSepaHex = SiSepa.defaultColor; +exports.SiSequelize = SiSequelize.default; +exports.SiSequelizeHex = SiSequelize.defaultColor; +exports.SiServbay = SiServbay.default; +exports.SiServbayHex = SiServbay.defaultColor; +exports.SiServerfault = SiServerfault.default; +exports.SiServerfaultHex = SiServerfault.defaultColor; +exports.SiServerless = SiServerless.default; +exports.SiServerlessHex = SiServerless.defaultColor; +exports.SiSession = SiSession.default; +exports.SiSessionHex = SiSession.defaultColor; +exports.SiSessionize = SiSessionize.default; +exports.SiSessionizeHex = SiSessionize.defaultColor; +exports.SiSetapp = SiSetapp.default; +exports.SiSetappHex = SiSetapp.defaultColor; +exports.SiSetuptools = SiSetuptools.default; +exports.SiSetuptoolsHex = SiSetuptools.defaultColor; +exports.SiSfml = SiSfml.default; +exports.SiSfmlHex = SiSfml.defaultColor; +exports.SiShadcnui = SiShadcnui.default; +exports.SiShadcnuiHex = SiShadcnui.defaultColor; +exports.SiShadow = SiShadow.default; +exports.SiShadowHex = SiShadow.defaultColor; +exports.SiShanghaimetro = SiShanghaimetro.default; +exports.SiShanghaimetroHex = SiShanghaimetro.defaultColor; +exports.SiSharex = SiSharex.default; +exports.SiSharexHex = SiSharex.defaultColor; +exports.SiSharp = SiSharp.default; +exports.SiSharpHex = SiSharp.defaultColor; +exports.SiShazam = SiShazam.default; +exports.SiShazamHex = SiShazam.defaultColor; +exports.SiShell = SiShell.default; +exports.SiShellHex = SiShell.defaultColor; +exports.SiShelly = SiShelly.default; +exports.SiShellyHex = SiShelly.defaultColor; +exports.SiShenzhenmetro = SiShenzhenmetro.default; +exports.SiShenzhenmetroHex = SiShenzhenmetro.defaultColor; +exports.SiShieldsdotio = SiShieldsdotio.default; +exports.SiShieldsdotioHex = SiShieldsdotio.defaultColor; +exports.SiShikimori = SiShikimori.default; +exports.SiShikimoriHex = SiShikimori.defaultColor; +exports.SiShopee = SiShopee.default; +exports.SiShopeeHex = SiShopee.defaultColor; +exports.SiShopify = SiShopify.default; +exports.SiShopifyHex = SiShopify.defaultColor; +exports.SiShopware = SiShopware.default; +exports.SiShopwareHex = SiShopware.defaultColor; +exports.SiShortcut = SiShortcut.default; +exports.SiShortcutHex = SiShortcut.defaultColor; +exports.SiShowpad = SiShowpad.default; +exports.SiShowpadHex = SiShowpad.defaultColor; +exports.SiShowtime = SiShowtime.default; +exports.SiShowtimeHex = SiShowtime.defaultColor; +exports.SiShowwcase = SiShowwcase.default; +exports.SiShowwcaseHex = SiShowwcase.defaultColor; +exports.SiSidekiq = SiSidekiq.default; +exports.SiSidekiqHex = SiSidekiq.defaultColor; +exports.SiSidequest = SiSidequest.default; +exports.SiSidequestHex = SiSidequest.defaultColor; +exports.SiSiemens = SiSiemens.default; +exports.SiSiemensHex = SiSiemens.defaultColor; +exports.SiSifive = SiSifive.default; +exports.SiSifiveHex = SiSifive.defaultColor; +exports.SiSignal = SiSignal.default; +exports.SiSignalHex = SiSignal.defaultColor; +exports.SiSilverairways = SiSilverairways.default; +exports.SiSilverairwaysHex = SiSilverairways.defaultColor; +exports.SiSimilarweb = SiSimilarweb.default; +exports.SiSimilarwebHex = SiSimilarweb.defaultColor; +exports.SiSimkl = SiSimkl.default; +exports.SiSimklHex = SiSimkl.defaultColor; +exports.SiSimpleanalytics = SiSimpleanalytics.default; +exports.SiSimpleanalyticsHex = SiSimpleanalytics.defaultColor; +exports.SiSimpleicons = SiSimpleicons.default; +exports.SiSimpleiconsHex = SiSimpleicons.defaultColor; +exports.SiSimplelocalize = SiSimplelocalize.default; +exports.SiSimplelocalizeHex = SiSimplelocalize.defaultColor; +exports.SiSimplelogin = SiSimplelogin.default; +exports.SiSimpleloginHex = SiSimplelogin.defaultColor; +exports.SiSimplenote = SiSimplenote.default; +exports.SiSimplenoteHex = SiSimplenote.defaultColor; +exports.SiSimplex = SiSimplex.default; +exports.SiSimplexHex = SiSimplex.defaultColor; +exports.SiSinaweibo = SiSinaweibo.default; +exports.SiSinaweiboHex = SiSinaweibo.defaultColor; +exports.SiSingaporeairlines = SiSingaporeairlines.default; +exports.SiSingaporeairlinesHex = SiSingaporeairlines.defaultColor; +exports.SiSinglestore = SiSinglestore.default; +exports.SiSinglestoreHex = SiSinglestore.defaultColor; +exports.SiSitecore = SiSitecore.default; +exports.SiSitecoreHex = SiSitecore.defaultColor; +exports.SiSitepoint = SiSitepoint.default; +exports.SiSitepointHex = SiSitepoint.defaultColor; +exports.SiSiyuan = SiSiyuan.default; +exports.SiSiyuanHex = SiSiyuan.defaultColor; +exports.SiSkaffold = SiSkaffold.default; +exports.SiSkaffoldHex = SiSkaffold.defaultColor; +exports.SiSkeleton = SiSkeleton.default; +exports.SiSkeletonHex = SiSkeleton.defaultColor; +exports.SiSketch = SiSketch.default; +exports.SiSketchHex = SiSketch.defaultColor; +exports.SiSketchfab = SiSketchfab.default; +exports.SiSketchfabHex = SiSketchfab.defaultColor; +exports.SiSketchup = SiSketchup.default; +exports.SiSketchupHex = SiSketchup.defaultColor; +exports.SiSkillshare = SiSkillshare.default; +exports.SiSkillshareHex = SiSkillshare.defaultColor; +exports.SiSkoda = SiSkoda.default; +exports.SiSkodaHex = SiSkoda.defaultColor; +exports.SiSky = SiSky.default; +exports.SiSkyHex = SiSky.defaultColor; +exports.SiSkypack = SiSkypack.default; +exports.SiSkypackHex = SiSkypack.defaultColor; +exports.SiSlackware = SiSlackware.default; +exports.SiSlackwareHex = SiSlackware.defaultColor; +exports.SiSlashdot = SiSlashdot.default; +exports.SiSlashdotHex = SiSlashdot.defaultColor; +exports.SiSlickpic = SiSlickpic.default; +exports.SiSlickpicHex = SiSlickpic.defaultColor; +exports.SiSlides = SiSlides.default; +exports.SiSlidesHex = SiSlides.defaultColor; +exports.SiSlideshare = SiSlideshare.default; +exports.SiSlideshareHex = SiSlideshare.defaultColor; +exports.SiSlint = SiSlint.default; +exports.SiSlintHex = SiSlint.defaultColor; +exports.SiSmart = SiSmart.default; +exports.SiSmartHex = SiSmart.defaultColor; +exports.SiSmartthings = SiSmartthings.default; +exports.SiSmartthingsHex = SiSmartthings.defaultColor; +exports.SiSmashingmagazine = SiSmashingmagazine.default; +exports.SiSmashingmagazineHex = SiSmashingmagazine.defaultColor; +exports.SiSmoothcomp = SiSmoothcomp.default; +exports.SiSmoothcompHex = SiSmoothcomp.defaultColor; +exports.SiSmrt = SiSmrt.default; +exports.SiSmrtHex = SiSmrt.defaultColor; +exports.SiSmugmug = SiSmugmug.default; +exports.SiSmugmugHex = SiSmugmug.defaultColor; +exports.SiSnapchat = SiSnapchat.default; +exports.SiSnapchatHex = SiSnapchat.defaultColor; +exports.SiSnapcraft = SiSnapcraft.default; +exports.SiSnapcraftHex = SiSnapcraft.defaultColor; +exports.SiSnapdragon = SiSnapdragon.default; +exports.SiSnapdragonHex = SiSnapdragon.defaultColor; +exports.SiSncf = SiSncf.default; +exports.SiSncfHex = SiSncf.defaultColor; +exports.SiSnort = SiSnort.default; +exports.SiSnortHex = SiSnort.defaultColor; +exports.SiSnowflake = SiSnowflake.default; +exports.SiSnowflakeHex = SiSnowflake.defaultColor; +exports.SiSnowpack = SiSnowpack.default; +exports.SiSnowpackHex = SiSnowpack.defaultColor; +exports.SiSnyk = SiSnyk.default; +exports.SiSnykHex = SiSnyk.defaultColor; +exports.SiSocialblade = SiSocialblade.default; +exports.SiSocialbladeHex = SiSocialblade.defaultColor; +exports.SiSociety6 = SiSociety6.default; +exports.SiSociety6Hex = SiSociety6.defaultColor; +exports.SiSocket = SiSocket.default; +exports.SiSocketHex = SiSocket.defaultColor; +exports.SiSocketdotio = SiSocketdotio.default; +exports.SiSocketdotioHex = SiSocketdotio.defaultColor; +exports.SiSoftcatala = SiSoftcatala.default; +exports.SiSoftcatalaHex = SiSoftcatala.defaultColor; +exports.SiSoftpedia = SiSoftpedia.default; +exports.SiSoftpediaHex = SiSoftpedia.defaultColor; +exports.SiSogou = SiSogou.default; +exports.SiSogouHex = SiSogou.defaultColor; +exports.SiSolana = SiSolana.default; +exports.SiSolanaHex = SiSolana.defaultColor; +exports.SiSolid = SiSolid.default; +exports.SiSolidHex = SiSolid.defaultColor; +exports.SiSolidity = SiSolidity.default; +exports.SiSolidityHex = SiSolidity.defaultColor; +exports.SiSololearn = SiSololearn.default; +exports.SiSololearnHex = SiSololearn.defaultColor; +exports.SiSolus = SiSolus.default; +exports.SiSolusHex = SiSolus.defaultColor; +exports.SiSonar = SiSonar.default; +exports.SiSonarHex = SiSonar.defaultColor; +exports.SiSonarqubecloud = SiSonarqubecloud.default; +exports.SiSonarqubecloudHex = SiSonarqubecloud.defaultColor; +exports.SiSonarqubeforide = SiSonarqubeforide.default; +exports.SiSonarqubeforideHex = SiSonarqubeforide.defaultColor; +exports.SiSonarqubeserver = SiSonarqubeserver.default; +exports.SiSonarqubeserverHex = SiSonarqubeserver.defaultColor; +exports.SiSonarr = SiSonarr.default; +exports.SiSonarrHex = SiSonarr.defaultColor; +exports.SiSonatype = SiSonatype.default; +exports.SiSonatypeHex = SiSonatype.defaultColor; +exports.SiSongkick = SiSongkick.default; +exports.SiSongkickHex = SiSongkick.defaultColor; +exports.SiSongoda = SiSongoda.default; +exports.SiSongodaHex = SiSongoda.defaultColor; +exports.SiSonicwall = SiSonicwall.default; +exports.SiSonicwallHex = SiSonicwall.defaultColor; +exports.SiSonos = SiSonos.default; +exports.SiSonosHex = SiSonos.defaultColor; +exports.SiSony = SiSony.default; +exports.SiSonyHex = SiSony.defaultColor; +exports.SiSoriana = SiSoriana.default; +exports.SiSorianaHex = SiSoriana.defaultColor; +exports.SiSoundcharts = SiSoundcharts.default; +exports.SiSoundchartsHex = SiSoundcharts.defaultColor; +exports.SiSoundcloud = SiSoundcloud.default; +exports.SiSoundcloudHex = SiSoundcloud.defaultColor; +exports.SiSourceengine = SiSourceengine.default; +exports.SiSourceengineHex = SiSourceengine.defaultColor; +exports.SiSourceforge = SiSourceforge.default; +exports.SiSourceforgeHex = SiSourceforge.defaultColor; +exports.SiSourcehut = SiSourcehut.default; +exports.SiSourcehutHex = SiSourcehut.defaultColor; +exports.SiSourcetree = SiSourcetree.default; +exports.SiSourcetreeHex = SiSourcetree.defaultColor; +exports.SiSouthwestairlines = SiSouthwestairlines.default; +exports.SiSouthwestairlinesHex = SiSouthwestairlines.defaultColor; +exports.SiSpacemacs = SiSpacemacs.default; +exports.SiSpacemacsHex = SiSpacemacs.defaultColor; +exports.SiSpaceship = SiSpaceship.default; +exports.SiSpaceshipHex = SiSpaceship.defaultColor; +exports.SiSpacex = SiSpacex.default; +exports.SiSpacexHex = SiSpacex.defaultColor; +exports.SiSpacy = SiSpacy.default; +exports.SiSpacyHex = SiSpacy.defaultColor; +exports.SiSparkar = SiSparkar.default; +exports.SiSparkarHex = SiSparkar.defaultColor; +exports.SiSparkasse = SiSparkasse.default; +exports.SiSparkasseHex = SiSparkasse.defaultColor; +exports.SiSparkfun = SiSparkfun.default; +exports.SiSparkfunHex = SiSparkfun.defaultColor; +exports.SiSparkpost = SiSparkpost.default; +exports.SiSparkpostHex = SiSparkpost.defaultColor; +exports.SiSpdx = SiSpdx.default; +exports.SiSpdxHex = SiSpdx.defaultColor; +exports.SiSpeakerdeck = SiSpeakerdeck.default; +exports.SiSpeakerdeckHex = SiSpeakerdeck.defaultColor; +exports.SiSpectrum = SiSpectrum.default; +exports.SiSpectrumHex = SiSpectrum.defaultColor; +exports.SiSpeedtest = SiSpeedtest.default; +exports.SiSpeedtestHex = SiSpeedtest.defaultColor; +exports.SiSpeedypage = SiSpeedypage.default; +exports.SiSpeedypageHex = SiSpeedypage.defaultColor; +exports.SiSphinx = SiSphinx.default; +exports.SiSphinxHex = SiSphinx.defaultColor; +exports.SiSpigotmc = SiSpigotmc.default; +exports.SiSpigotmcHex = SiSpigotmc.defaultColor; +exports.SiSpine = SiSpine.default; +exports.SiSpineHex = SiSpine.defaultColor; +exports.SiSpinnaker = SiSpinnaker.default; +exports.SiSpinnakerHex = SiSpinnaker.defaultColor; +exports.SiSplunk = SiSplunk.default; +exports.SiSplunkHex = SiSplunk.defaultColor; +exports.SiSpoj = SiSpoj.default; +exports.SiSpojHex = SiSpoj.defaultColor; +exports.SiSpond = SiSpond.default; +exports.SiSpondHex = SiSpond.defaultColor; +exports.SiSpotify = SiSpotify.default; +exports.SiSpotifyHex = SiSpotify.defaultColor; +exports.SiSpotlight = SiSpotlight.default; +exports.SiSpotlightHex = SiSpotlight.defaultColor; +exports.SiSpreadshirt = SiSpreadshirt.default; +exports.SiSpreadshirtHex = SiSpreadshirt.defaultColor; +exports.SiSpreaker = SiSpreaker.default; +exports.SiSpreakerHex = SiSpreaker.defaultColor; +exports.SiSpring = SiSpring.default; +exports.SiSpringHex = SiSpring.defaultColor; +exports.SiSpringCreators = SiSpringCreators.default; +exports.SiSpringCreatorsHex = SiSpringCreators.defaultColor; +exports.SiSpringboot = SiSpringboot.default; +exports.SiSpringbootHex = SiSpringboot.defaultColor; +exports.SiSpringsecurity = SiSpringsecurity.default; +exports.SiSpringsecurityHex = SiSpringsecurity.defaultColor; +exports.SiSpyderide = SiSpyderide.default; +exports.SiSpyderideHex = SiSpyderide.defaultColor; +exports.SiSqlalchemy = SiSqlalchemy.default; +exports.SiSqlalchemyHex = SiSqlalchemy.defaultColor; +exports.SiSqlite = SiSqlite.default; +exports.SiSqliteHex = SiSqlite.defaultColor; +exports.SiSquare = SiSquare.default; +exports.SiSquareHex = SiSquare.defaultColor; +exports.SiSquareenix = SiSquareenix.default; +exports.SiSquareenixHex = SiSquareenix.defaultColor; +exports.SiSquarespace = SiSquarespace.default; +exports.SiSquarespaceHex = SiSquarespace.defaultColor; +exports.SiSrgssr = SiSrgssr.default; +exports.SiSrgssrHex = SiSrgssr.defaultColor; +exports.SiSsrn = SiSsrn.default; +exports.SiSsrnHex = SiSsrn.defaultColor; +exports.SiSst = SiSst.default; +exports.SiSstHex = SiSst.defaultColor; +exports.SiStackbit = SiStackbit.default; +exports.SiStackbitHex = SiStackbit.defaultColor; +exports.SiStackblitz = SiStackblitz.default; +exports.SiStackblitzHex = SiStackblitz.defaultColor; +exports.SiStackedit = SiStackedit.default; +exports.SiStackeditHex = SiStackedit.defaultColor; +exports.SiStackexchange = SiStackexchange.default; +exports.SiStackexchangeHex = SiStackexchange.defaultColor; +exports.SiStackhawk = SiStackhawk.default; +exports.SiStackhawkHex = SiStackhawk.defaultColor; +exports.SiStackoverflow = SiStackoverflow.default; +exports.SiStackoverflowHex = SiStackoverflow.defaultColor; +exports.SiStackshare = SiStackshare.default; +exports.SiStackshareHex = SiStackshare.defaultColor; +exports.SiStadia = SiStadia.default; +exports.SiStadiaHex = SiStadia.defaultColor; +exports.SiStaffbase = SiStaffbase.default; +exports.SiStaffbaseHex = SiStaffbase.defaultColor; +exports.SiStagetimer = SiStagetimer.default; +exports.SiStagetimerHex = SiStagetimer.defaultColor; +exports.SiStandardjs = SiStandardjs.default; +exports.SiStandardjsHex = SiStandardjs.defaultColor; +exports.SiStandardresume = SiStandardresume.default; +exports.SiStandardresumeHex = SiStandardresume.defaultColor; +exports.SiStarbucks = SiStarbucks.default; +exports.SiStarbucksHex = SiStarbucks.defaultColor; +exports.SiStardock = SiStardock.default; +exports.SiStardockHex = SiStardock.defaultColor; +exports.SiStarlingbank = SiStarlingbank.default; +exports.SiStarlingbankHex = SiStarlingbank.defaultColor; +exports.SiStarship = SiStarship.default; +exports.SiStarshipHex = SiStarship.defaultColor; +exports.SiStartdotgg = SiStartdotgg.default; +exports.SiStartdotggHex = SiStartdotgg.defaultColor; +exports.SiStartpage = SiStartpage.default; +exports.SiStartpageHex = SiStartpage.defaultColor; +exports.SiStartrek = SiStartrek.default; +exports.SiStartrekHex = SiStartrek.defaultColor; +exports.SiStarz = SiStarz.default; +exports.SiStarzHex = SiStarz.defaultColor; +exports.SiStatamic = SiStatamic.default; +exports.SiStatamicHex = SiStatamic.defaultColor; +exports.SiStatista = SiStatista.default; +exports.SiStatistaHex = SiStatista.defaultColor; +exports.SiStatuspage = SiStatuspage.default; +exports.SiStatuspageHex = SiStatuspage.defaultColor; +exports.SiStatuspal = SiStatuspal.default; +exports.SiStatuspalHex = SiStatuspal.defaultColor; +exports.SiSteam = SiSteam.default; +exports.SiSteamHex = SiSteam.defaultColor; +exports.SiSteamdb = SiSteamdb.default; +exports.SiSteamdbHex = SiSteamdb.defaultColor; +exports.SiSteamdeck = SiSteamdeck.default; +exports.SiSteamdeckHex = SiSteamdeck.defaultColor; +exports.SiSteamworks = SiSteamworks.default; +exports.SiSteamworksHex = SiSteamworks.defaultColor; +exports.SiSteelseries = SiSteelseries.default; +exports.SiSteelseriesHex = SiSteelseries.defaultColor; +exports.SiSteem = SiSteem.default; +exports.SiSteemHex = SiSteem.defaultColor; +exports.SiSteemit = SiSteemit.default; +exports.SiSteemitHex = SiSteemit.defaultColor; +exports.SiSteinberg = SiSteinberg.default; +exports.SiSteinbergHex = SiSteinberg.defaultColor; +exports.SiStellar = SiStellar.default; +exports.SiStellarHex = SiStellar.defaultColor; +exports.SiStencil = SiStencil.default; +exports.SiStencilHex = SiStencil.defaultColor; +exports.SiStencyl = SiStencyl.default; +exports.SiStencylHex = SiStencyl.defaultColor; +exports.SiStimulus = SiStimulus.default; +exports.SiStimulusHex = SiStimulus.defaultColor; +exports.SiStmicroelectronics = SiStmicroelectronics.default; +exports.SiStmicroelectronicsHex = SiStmicroelectronics.defaultColor; +exports.SiStockx = SiStockx.default; +exports.SiStockxHex = SiStockx.defaultColor; +exports.SiStopstalk = SiStopstalk.default; +exports.SiStopstalkHex = SiStopstalk.defaultColor; +exports.SiStoryblok = SiStoryblok.default; +exports.SiStoryblokHex = SiStoryblok.defaultColor; +exports.SiStorybook = SiStorybook.default; +exports.SiStorybookHex = SiStorybook.defaultColor; +exports.SiStrapi = SiStrapi.default; +exports.SiStrapiHex = SiStrapi.defaultColor; +exports.SiStrava = SiStrava.default; +exports.SiStravaHex = SiStrava.defaultColor; +exports.SiStreamlabs = SiStreamlabs.default; +exports.SiStreamlabsHex = SiStreamlabs.defaultColor; +exports.SiStreamlit = SiStreamlit.default; +exports.SiStreamlitHex = SiStreamlit.defaultColor; +exports.SiStreamrunners = SiStreamrunners.default; +exports.SiStreamrunnersHex = SiStreamrunners.defaultColor; +exports.SiStremio = SiStremio.default; +exports.SiStremioHex = SiStremio.defaultColor; +exports.SiStripe = SiStripe.default; +exports.SiStripeHex = SiStripe.defaultColor; +exports.SiStrongswan = SiStrongswan.default; +exports.SiStrongswanHex = SiStrongswan.defaultColor; +exports.SiStryker = SiStryker.default; +exports.SiStrykerHex = SiStryker.defaultColor; +exports.SiStubhub = SiStubhub.default; +exports.SiStubhubHex = SiStubhub.defaultColor; +exports.SiStudio3t = SiStudio3t.default; +exports.SiStudio3tHex = SiStudio3t.defaultColor; +exports.SiStyledcomponents = SiStyledcomponents.default; +exports.SiStyledcomponentsHex = SiStyledcomponents.defaultColor; +exports.SiStylelint = SiStylelint.default; +exports.SiStylelintHex = SiStylelint.defaultColor; +exports.SiStyleshare = SiStyleshare.default; +exports.SiStyleshareHex = SiStyleshare.defaultColor; +exports.SiStylus = SiStylus.default; +exports.SiStylusHex = SiStylus.defaultColor; +exports.SiSubaru = SiSubaru.default; +exports.SiSubaruHex = SiSubaru.defaultColor; +exports.SiSublimetext = SiSublimetext.default; +exports.SiSublimetextHex = SiSublimetext.defaultColor; +exports.SiSubstack = SiSubstack.default; +exports.SiSubstackHex = SiSubstack.defaultColor; +exports.SiSubtitleedit = SiSubtitleedit.default; +exports.SiSubtitleeditHex = SiSubtitleedit.defaultColor; +exports.SiSubversion = SiSubversion.default; +exports.SiSubversionHex = SiSubversion.defaultColor; +exports.SiSuckless = SiSuckless.default; +exports.SiSucklessHex = SiSuckless.defaultColor; +exports.SiSui = SiSui.default; +exports.SiSuiHex = SiSui.defaultColor; +exports.SiSuitest = SiSuitest.default; +exports.SiSuitestHex = SiSuitest.defaultColor; +exports.SiSumologic = SiSumologic.default; +exports.SiSumologicHex = SiSumologic.defaultColor; +exports.SiSuno = SiSuno.default; +exports.SiSunoHex = SiSuno.defaultColor; +exports.SiSunrise = SiSunrise.default; +exports.SiSunriseHex = SiSunrise.defaultColor; +exports.SiSupabase = SiSupabase.default; +exports.SiSupabaseHex = SiSupabase.defaultColor; +exports.SiSupercrease = SiSupercrease.default; +exports.SiSupercreaseHex = SiSupercrease.defaultColor; +exports.SiSupermicro = SiSupermicro.default; +exports.SiSupermicroHex = SiSupermicro.defaultColor; +exports.SiSuperuser = SiSuperuser.default; +exports.SiSuperuserHex = SiSuperuser.defaultColor; +exports.SiSurfshark = SiSurfshark.default; +exports.SiSurfsharkHex = SiSurfshark.defaultColor; +exports.SiSurrealdb = SiSurrealdb.default; +exports.SiSurrealdbHex = SiSurrealdb.defaultColor; +exports.SiSurveymonkey = SiSurveymonkey.default; +exports.SiSurveymonkeyHex = SiSurveymonkey.defaultColor; +exports.SiSuse = SiSuse.default; +exports.SiSuseHex = SiSuse.defaultColor; +exports.SiSuzuki = SiSuzuki.default; +exports.SiSuzukiHex = SiSuzuki.defaultColor; +exports.SiSvelte = SiSvelte.default; +exports.SiSvelteHex = SiSvelte.defaultColor; +exports.SiSvg = SiSvg.default; +exports.SiSvgHex = SiSvg.defaultColor; +exports.SiSvgdotjs = SiSvgdotjs.default; +exports.SiSvgdotjsHex = SiSvgdotjs.defaultColor; +exports.SiSvgo = SiSvgo.default; +exports.SiSvgoHex = SiSvgo.defaultColor; +exports.SiSvgtrace = SiSvgtrace.default; +exports.SiSvgtraceHex = SiSvgtrace.defaultColor; +exports.SiSwagger = SiSwagger.default; +exports.SiSwaggerHex = SiSwagger.defaultColor; +exports.SiSwarm = SiSwarm.default; +exports.SiSwarmHex = SiSwarm.defaultColor; +exports.SiSway = SiSway.default; +exports.SiSwayHex = SiSway.defaultColor; +exports.SiSwc = SiSwc.default; +exports.SiSwcHex = SiSwc.defaultColor; +exports.SiSwift = SiSwift.default; +exports.SiSwiftHex = SiSwift.defaultColor; +exports.SiSwiggy = SiSwiggy.default; +exports.SiSwiggyHex = SiSwiggy.defaultColor; +exports.SiSwiper = SiSwiper.default; +exports.SiSwiperHex = SiSwiper.defaultColor; +exports.SiSwisscows = SiSwisscows.default; +exports.SiSwisscowsHex = SiSwisscows.defaultColor; +exports.SiSwr = SiSwr.default; +exports.SiSwrHex = SiSwr.defaultColor; +exports.SiSymantec = SiSymantec.default; +exports.SiSymantecHex = SiSymantec.defaultColor; +exports.SiSymbolab = SiSymbolab.default; +exports.SiSymbolabHex = SiSymbolab.defaultColor; +exports.SiSymfony = SiSymfony.default; +exports.SiSymfonyHex = SiSymfony.defaultColor; +exports.SiSymphony = SiSymphony.default; +exports.SiSymphonyHex = SiSymphony.defaultColor; +exports.SiSympy = SiSympy.default; +exports.SiSympyHex = SiSympy.defaultColor; +exports.SiSyncthing = SiSyncthing.default; +exports.SiSyncthingHex = SiSyncthing.defaultColor; +exports.SiSynology = SiSynology.default; +exports.SiSynologyHex = SiSynology.defaultColor; +exports.SiSystem76 = SiSystem76.default; +exports.SiSystem76Hex = SiSystem76.defaultColor; +exports.SiTabelog = SiTabelog.default; +exports.SiTabelogHex = SiTabelog.defaultColor; +exports.SiTablecheck = SiTablecheck.default; +exports.SiTablecheckHex = SiTablecheck.defaultColor; +exports.SiTacobell = SiTacobell.default; +exports.SiTacobellHex = SiTacobell.defaultColor; +exports.SiTado = SiTado.default; +exports.SiTadoHex = SiTado.defaultColor; +exports.SiTaichigraphics = SiTaichigraphics.default; +exports.SiTaichigraphicsHex = SiTaichigraphics.defaultColor; +exports.SiTaichilang = SiTaichilang.default; +exports.SiTaichilangHex = SiTaichilang.defaultColor; +exports.SiTails = SiTails.default; +exports.SiTailsHex = SiTails.defaultColor; +exports.SiTailscale = SiTailscale.default; +exports.SiTailscaleHex = SiTailscale.defaultColor; +exports.SiTailwindcss = SiTailwindcss.default; +exports.SiTailwindcssHex = SiTailwindcss.defaultColor; +exports.SiTaipy = SiTaipy.default; +exports.SiTaipyHex = SiTaipy.defaultColor; +exports.SiTaketwointeractivesoftware = SiTaketwointeractivesoftware.default; +exports.SiTaketwointeractivesoftwareHex = SiTaketwointeractivesoftware.defaultColor; +exports.SiTalend = SiTalend.default; +exports.SiTalendHex = SiTalend.defaultColor; +exports.SiTalenthouse = SiTalenthouse.default; +exports.SiTalenthouseHex = SiTalenthouse.defaultColor; +exports.SiTalos = SiTalos.default; +exports.SiTalosHex = SiTalos.defaultColor; +exports.SiTamiya = SiTamiya.default; +exports.SiTamiyaHex = SiTamiya.defaultColor; +exports.SiTampermonkey = SiTampermonkey.default; +exports.SiTampermonkeyHex = SiTampermonkey.defaultColor; +exports.SiTanstack = SiTanstack.default; +exports.SiTanstackHex = SiTanstack.defaultColor; +exports.SiTaobao = SiTaobao.default; +exports.SiTaobaoHex = SiTaobao.defaultColor; +exports.SiTapas = SiTapas.default; +exports.SiTapasHex = SiTapas.defaultColor; +exports.SiTarget = SiTarget.default; +exports.SiTargetHex = SiTarget.defaultColor; +exports.SiTarom = SiTarom.default; +exports.SiTaromHex = SiTarom.defaultColor; +exports.SiTask = SiTask.default; +exports.SiTaskHex = SiTask.defaultColor; +exports.SiTasmota = SiTasmota.default; +exports.SiTasmotaHex = SiTasmota.defaultColor; +exports.SiTata = SiTata.default; +exports.SiTataHex = SiTata.defaultColor; +exports.SiTauri = SiTauri.default; +exports.SiTauriHex = SiTauri.defaultColor; +exports.SiTaxbuzz = SiTaxbuzz.default; +exports.SiTaxbuzzHex = SiTaxbuzz.defaultColor; +exports.SiTcs = SiTcs.default; +exports.SiTcsHex = SiTcs.defaultColor; +exports.SiTeal = SiTeal.default; +exports.SiTealHex = SiTeal.defaultColor; +exports.SiTeamcity = SiTeamcity.default; +exports.SiTeamcityHex = SiTeamcity.defaultColor; +exports.SiTeamspeak = SiTeamspeak.default; +exports.SiTeamspeakHex = SiTeamspeak.defaultColor; +exports.SiTeamviewer = SiTeamviewer.default; +exports.SiTeamviewerHex = SiTeamviewer.defaultColor; +exports.SiTechcrunch = SiTechcrunch.default; +exports.SiTechcrunchHex = SiTechcrunch.defaultColor; +exports.SiTed = SiTed.default; +exports.SiTedHex = SiTed.defaultColor; +exports.SiTeepublic = SiTeepublic.default; +exports.SiTeepublicHex = SiTeepublic.defaultColor; +exports.SiTeespring = SiTeespring.default; +exports.SiTeespringHex = SiTeespring.defaultColor; +exports.SiTekton = SiTekton.default; +exports.SiTektonHex = SiTekton.defaultColor; +exports.SiTele5 = SiTele5.default; +exports.SiTele5Hex = SiTele5.defaultColor; +exports.SiTelefonica = SiTelefonica.default; +exports.SiTelefonicaHex = SiTelefonica.defaultColor; +exports.SiTelegram = SiTelegram.default; +exports.SiTelegramHex = SiTelegram.defaultColor; +exports.SiTelegraph = SiTelegraph.default; +exports.SiTelegraphHex = SiTelegraph.defaultColor; +exports.SiTelenor = SiTelenor.default; +exports.SiTelenorHex = SiTelenor.defaultColor; +exports.SiTelequebec = SiTelequebec.default; +exports.SiTelequebecHex = SiTelequebec.defaultColor; +exports.SiTemporal = SiTemporal.default; +exports.SiTemporalHex = SiTemporal.defaultColor; +exports.SiTensorflow = SiTensorflow.default; +exports.SiTensorflowHex = SiTensorflow.defaultColor; +exports.SiTeradata = SiTeradata.default; +exports.SiTeradataHex = SiTeradata.defaultColor; +exports.SiTeratail = SiTeratail.default; +exports.SiTeratailHex = SiTeratail.defaultColor; +exports.SiTermius = SiTermius.default; +exports.SiTermiusHex = SiTermius.defaultColor; +exports.SiTerraform = SiTerraform.default; +exports.SiTerraformHex = SiTerraform.defaultColor; +exports.SiTesco = SiTesco.default; +exports.SiTescoHex = SiTesco.defaultColor; +exports.SiTesla = SiTesla.default; +exports.SiTeslaHex = SiTesla.defaultColor; +exports.SiTestcafe = SiTestcafe.default; +exports.SiTestcafeHex = SiTestcafe.defaultColor; +exports.SiTestin = SiTestin.default; +exports.SiTestinHex = SiTestin.defaultColor; +exports.SiTestinglibrary = SiTestinglibrary.default; +exports.SiTestinglibraryHex = SiTestinglibrary.defaultColor; +exports.SiTestrail = SiTestrail.default; +exports.SiTestrailHex = SiTestrail.defaultColor; +exports.SiTether = SiTether.default; +exports.SiTetherHex = SiTether.defaultColor; +exports.SiTextpattern = SiTextpattern.default; +exports.SiTextpatternHex = SiTextpattern.defaultColor; +exports.SiTextual = SiTextual.default; +exports.SiTextualHex = SiTextual.defaultColor; +exports.SiTga = SiTga.default; +exports.SiTgaHex = SiTga.defaultColor; +exports.SiThangs = SiThangs.default; +exports.SiThangsHex = SiThangs.defaultColor; +exports.SiThanos = SiThanos.default; +exports.SiThanosHex = SiThanos.defaultColor; +exports.SiThealgorithms = SiThealgorithms.default; +exports.SiThealgorithmsHex = SiThealgorithms.defaultColor; +exports.SiTheboringcompany = SiTheboringcompany.default; +exports.SiTheboringcompanyHex = SiTheboringcompany.defaultColor; +exports.SiTheconversation = SiTheconversation.default; +exports.SiTheconversationHex = SiTheconversation.defaultColor; +exports.SiThefinals = SiThefinals.default; +exports.SiThefinalsHex = SiThefinals.defaultColor; +exports.SiTheguardian = SiTheguardian.default; +exports.SiTheguardianHex = SiTheguardian.defaultColor; +exports.SiTheirishtimes = SiTheirishtimes.default; +exports.SiTheirishtimesHex = SiTheirishtimes.defaultColor; +exports.SiThemighty = SiThemighty.default; +exports.SiThemightyHex = SiThemighty.defaultColor; +exports.SiThemodelsresource = SiThemodelsresource.default; +exports.SiThemodelsresourceHex = SiThemodelsresource.defaultColor; +exports.SiThemoviedatabase = SiThemoviedatabase.default; +exports.SiThemoviedatabaseHex = SiThemoviedatabase.defaultColor; +exports.SiThenorthface = SiThenorthface.default; +exports.SiThenorthfaceHex = SiThenorthface.defaultColor; +exports.SiTheodinproject = SiTheodinproject.default; +exports.SiTheodinprojectHex = SiTheodinproject.defaultColor; +exports.SiTheplanetarysociety = SiTheplanetarysociety.default; +exports.SiTheplanetarysocietyHex = SiTheplanetarysociety.defaultColor; +exports.SiTheregister = SiTheregister.default; +exports.SiTheregisterHex = SiTheregister.defaultColor; +exports.SiThesoundsresource = SiThesoundsresource.default; +exports.SiThesoundsresourceHex = SiThesoundsresource.defaultColor; +exports.SiThespritersresource = SiThespritersresource.default; +exports.SiThespritersresourceHex = SiThespritersresource.defaultColor; +exports.SiThestorygraph = SiThestorygraph.default; +exports.SiThestorygraphHex = SiThestorygraph.defaultColor; +exports.SiThewashingtonpost = SiThewashingtonpost.default; +exports.SiThewashingtonpostHex = SiThewashingtonpost.defaultColor; +exports.SiTheweatherchannel = SiTheweatherchannel.default; +exports.SiTheweatherchannelHex = SiTheweatherchannel.defaultColor; +exports.SiThingiverse = SiThingiverse.default; +exports.SiThingiverseHex = SiThingiverse.defaultColor; +exports.SiThings = SiThings.default; +exports.SiThingsHex = SiThings.defaultColor; +exports.SiThinkpad = SiThinkpad.default; +exports.SiThinkpadHex = SiThinkpad.defaultColor; +exports.SiThirdweb = SiThirdweb.default; +exports.SiThirdwebHex = SiThirdweb.defaultColor; +exports.SiThreadless = SiThreadless.default; +exports.SiThreadlessHex = SiThreadless.defaultColor; +exports.SiThreads = SiThreads.default; +exports.SiThreadsHex = SiThreads.defaultColor; +exports.SiThreedotjs = SiThreedotjs.default; +exports.SiThreedotjsHex = SiThreedotjs.defaultColor; +exports.SiThreema = SiThreema.default; +exports.SiThreemaHex = SiThreema.defaultColor; +exports.SiThumbtack = SiThumbtack.default; +exports.SiThumbtackHex = SiThumbtack.defaultColor; +exports.SiThunderbird = SiThunderbird.default; +exports.SiThunderbirdHex = SiThunderbird.defaultColor; +exports.SiThunderstore = SiThunderstore.default; +exports.SiThunderstoreHex = SiThunderstore.defaultColor; +exports.SiThurgauerkantonalbank = SiThurgauerkantonalbank.default; +exports.SiThurgauerkantonalbankHex = SiThurgauerkantonalbank.defaultColor; +exports.SiThymeleaf = SiThymeleaf.default; +exports.SiThymeleafHex = SiThymeleaf.defaultColor; +exports.SiTicketmaster = SiTicketmaster.default; +exports.SiTicketmasterHex = SiTicketmaster.defaultColor; +exports.SiTicktick = SiTicktick.default; +exports.SiTicktickHex = SiTicktick.defaultColor; +exports.SiTidal = SiTidal.default; +exports.SiTidalHex = SiTidal.defaultColor; +exports.SiTiddlywiki = SiTiddlywiki.default; +exports.SiTiddlywikiHex = SiTiddlywiki.defaultColor; +exports.SiTide = SiTide.default; +exports.SiTideHex = SiTide.defaultColor; +exports.SiTidyverse = SiTidyverse.default; +exports.SiTidyverseHex = SiTidyverse.defaultColor; +exports.SiTietoevry = SiTietoevry.default; +exports.SiTietoevryHex = SiTietoevry.defaultColor; +exports.SiTiktok = SiTiktok.default; +exports.SiTiktokHex = SiTiktok.defaultColor; +exports.SiTildapublishing = SiTildapublishing.default; +exports.SiTildapublishingHex = SiTildapublishing.defaultColor; +exports.SiTile = SiTile.default; +exports.SiTileHex = SiTile.defaultColor; +exports.SiTimescale = SiTimescale.default; +exports.SiTimescaleHex = SiTimescale.defaultColor; +exports.SiTina = SiTina.default; +exports.SiTinaHex = SiTina.defaultColor; +exports.SiTinder = SiTinder.default; +exports.SiTinderHex = SiTinder.defaultColor; +exports.SiTindie = SiTindie.default; +exports.SiTindieHex = SiTindie.defaultColor; +exports.SiTinkercad = SiTinkercad.default; +exports.SiTinkercadHex = SiTinkercad.defaultColor; +exports.SiTinygrad = SiTinygrad.default; +exports.SiTinygradHex = SiTinygrad.defaultColor; +exports.SiTinyletter = SiTinyletter.default; +exports.SiTinyletterHex = SiTinyletter.defaultColor; +exports.SiTistory = SiTistory.default; +exports.SiTistoryHex = SiTistory.defaultColor; +exports.SiTldraw = SiTldraw.default; +exports.SiTldrawHex = SiTldraw.defaultColor; +exports.SiTmux = SiTmux.default; +exports.SiTmuxHex = SiTmux.defaultColor; +exports.SiTodoist = SiTodoist.default; +exports.SiTodoistHex = SiTodoist.defaultColor; +exports.SiToggl = SiToggl.default; +exports.SiTogglHex = SiToggl.defaultColor; +exports.SiToggltrack = SiToggltrack.default; +exports.SiToggltrackHex = SiToggltrack.defaultColor; +exports.SiTokio = SiTokio.default; +exports.SiTokioHex = SiTokio.defaultColor; +exports.SiTokyometro = SiTokyometro.default; +exports.SiTokyometroHex = SiTokyometro.defaultColor; +exports.SiToll = SiToll.default; +exports.SiTollHex = SiToll.defaultColor; +exports.SiToml = SiToml.default; +exports.SiTomlHex = SiToml.defaultColor; +exports.SiTomorrowland = SiTomorrowland.default; +exports.SiTomorrowlandHex = SiTomorrowland.defaultColor; +exports.SiTomtom = SiTomtom.default; +exports.SiTomtomHex = SiTomtom.defaultColor; +exports.SiTon = SiTon.default; +exports.SiTonHex = SiTon.defaultColor; +exports.SiTopcoder = SiTopcoder.default; +exports.SiTopcoderHex = SiTopcoder.defaultColor; +exports.SiTopdotgg = SiTopdotgg.default; +exports.SiTopdotggHex = SiTopdotgg.defaultColor; +exports.SiToptal = SiToptal.default; +exports.SiToptalHex = SiToptal.defaultColor; +exports.SiTorbrowser = SiTorbrowser.default; +exports.SiTorbrowserHex = SiTorbrowser.defaultColor; +exports.SiTorizon = SiTorizon.default; +exports.SiTorizonHex = SiTorizon.defaultColor; +exports.SiTorproject = SiTorproject.default; +exports.SiTorprojectHex = SiTorproject.defaultColor; +exports.SiToshiba = SiToshiba.default; +exports.SiToshibaHex = SiToshiba.defaultColor; +exports.SiTotvs = SiTotvs.default; +exports.SiTotvsHex = SiTotvs.defaultColor; +exports.SiTourbox = SiTourbox.default; +exports.SiTourboxHex = SiTourbox.defaultColor; +exports.SiTower = SiTower.default; +exports.SiTowerHex = SiTower.defaultColor; +exports.SiToyota = SiToyota.default; +exports.SiToyotaHex = SiToyota.defaultColor; +exports.SiTplink = SiTplink.default; +exports.SiTplinkHex = SiTplink.defaultColor; +exports.SiTqdm = SiTqdm.default; +exports.SiTqdmHex = SiTqdm.defaultColor; +exports.SiTraccar = SiTraccar.default; +exports.SiTraccarHex = SiTraccar.defaultColor; +exports.SiTradingview = SiTradingview.default; +exports.SiTradingviewHex = SiTradingview.defaultColor; +exports.SiTraefikmesh = SiTraefikmesh.default; +exports.SiTraefikmeshHex = SiTraefikmesh.defaultColor; +exports.SiTraefikproxy = SiTraefikproxy.default; +exports.SiTraefikproxyHex = SiTraefikproxy.defaultColor; +exports.SiTrailforks = SiTrailforks.default; +exports.SiTrailforksHex = SiTrailforks.defaultColor; +exports.SiTrainerroad = SiTrainerroad.default; +exports.SiTrainerroadHex = SiTrainerroad.defaultColor; +exports.SiTrakt = SiTrakt.default; +exports.SiTraktHex = SiTrakt.defaultColor; +exports.SiTransifex = SiTransifex.default; +exports.SiTransifexHex = SiTransifex.defaultColor; +exports.SiTransmission = SiTransmission.default; +exports.SiTransmissionHex = SiTransmission.defaultColor; +exports.SiTransportforireland = SiTransportforireland.default; +exports.SiTransportforirelandHex = SiTransportforireland.defaultColor; +exports.SiTransportforlondon = SiTransportforlondon.default; +exports.SiTransportforlondonHex = SiTransportforlondon.defaultColor; +exports.SiTravisci = SiTravisci.default; +exports.SiTravisciHex = SiTravisci.defaultColor; +exports.SiTreehouse = SiTreehouse.default; +exports.SiTreehouseHex = SiTreehouse.defaultColor; +exports.SiTrello = SiTrello.default; +exports.SiTrelloHex = SiTrello.defaultColor; +exports.SiTrendmicro = SiTrendmicro.default; +exports.SiTrendmicroHex = SiTrendmicro.defaultColor; +exports.SiTresorit = SiTresorit.default; +exports.SiTresoritHex = SiTresorit.defaultColor; +exports.SiTreyarch = SiTreyarch.default; +exports.SiTreyarchHex = SiTreyarch.defaultColor; +exports.SiTricentis = SiTricentis.default; +exports.SiTricentisHex = SiTricentis.defaultColor; +exports.SiTrilium = SiTrilium.default; +exports.SiTriliumHex = SiTrilium.defaultColor; +exports.SiTriller = SiTriller.default; +exports.SiTrillerHex = SiTriller.defaultColor; +exports.SiTrillertv = SiTrillertv.default; +exports.SiTrillertvHex = SiTrillertv.defaultColor; +exports.SiTrimble = SiTrimble.default; +exports.SiTrimbleHex = SiTrimble.defaultColor; +exports.SiTrino = SiTrino.default; +exports.SiTrinoHex = SiTrino.defaultColor; +exports.SiTripadvisor = SiTripadvisor.default; +exports.SiTripadvisorHex = SiTripadvisor.defaultColor; +exports.SiTripdotcom = SiTripdotcom.default; +exports.SiTripdotcomHex = SiTripdotcom.defaultColor; +exports.SiTrivago = SiTrivago.default; +exports.SiTrivagoHex = SiTrivago.defaultColor; +exports.SiTrivy = SiTrivy.default; +exports.SiTrivyHex = SiTrivy.defaultColor; +exports.SiTrove = SiTrove.default; +exports.SiTroveHex = SiTrove.defaultColor; +exports.SiTrpc = SiTrpc.default; +exports.SiTrpcHex = SiTrpc.defaultColor; +exports.SiTruenas = SiTruenas.default; +exports.SiTruenasHex = SiTruenas.defaultColor; +exports.SiTrueup = SiTrueup.default; +exports.SiTrueupHex = SiTrueup.defaultColor; +exports.SiTrulia = SiTrulia.default; +exports.SiTruliaHex = SiTrulia.defaultColor; +exports.SiTrustedshops = SiTrustedshops.default; +exports.SiTrustedshopsHex = SiTrustedshops.defaultColor; +exports.SiTrustpilot = SiTrustpilot.default; +exports.SiTrustpilotHex = SiTrustpilot.defaultColor; +exports.SiTryhackme = SiTryhackme.default; +exports.SiTryhackmeHex = SiTryhackme.defaultColor; +exports.SiTryitonline = SiTryitonline.default; +exports.SiTryitonlineHex = SiTryitonline.defaultColor; +exports.SiTsnode = SiTsnode.default; +exports.SiTsnodeHex = SiTsnode.defaultColor; +exports.SiTubi = SiTubi.default; +exports.SiTubiHex = SiTubi.defaultColor; +exports.SiTui = SiTui.default; +exports.SiTuiHex = SiTui.defaultColor; +exports.SiTumblr = SiTumblr.default; +exports.SiTumblrHex = SiTumblr.defaultColor; +exports.SiTurbo = SiTurbo.default; +exports.SiTurboHex = SiTurbo.defaultColor; +exports.SiTurborepo = SiTurborepo.default; +exports.SiTurborepoHex = SiTurborepo.defaultColor; +exports.SiTurbosquid = SiTurbosquid.default; +exports.SiTurbosquidHex = SiTurbosquid.defaultColor; +exports.SiTurkishairlines = SiTurkishairlines.default; +exports.SiTurkishairlinesHex = SiTurkishairlines.defaultColor; +exports.SiTurso = SiTurso.default; +exports.SiTursoHex = SiTurso.defaultColor; +exports.SiTuta = SiTuta.default; +exports.SiTutaHex = SiTuta.defaultColor; +exports.SiTuxedocomputers = SiTuxedocomputers.default; +exports.SiTuxedocomputersHex = SiTuxedocomputers.defaultColor; +exports.SiTv4play = SiTv4play.default; +exports.SiTv4playHex = SiTv4play.defaultColor; +exports.SiTvtime = SiTvtime.default; +exports.SiTvtimeHex = SiTvtime.defaultColor; +exports.SiTwenty = SiTwenty.default; +exports.SiTwentyHex = SiTwenty.defaultColor; +exports.SiTwinkly = SiTwinkly.default; +exports.SiTwinklyHex = SiTwinkly.defaultColor; +exports.SiTwinmotion = SiTwinmotion.default; +exports.SiTwinmotionHex = SiTwinmotion.defaultColor; +exports.SiTwitch = SiTwitch.default; +exports.SiTwitchHex = SiTwitch.defaultColor; +exports.SiTypeform = SiTypeform.default; +exports.SiTypeformHex = SiTypeform.defaultColor; +exports.SiTypeorm = SiTypeorm.default; +exports.SiTypeormHex = SiTypeorm.defaultColor; +exports.SiTyper = SiTyper.default; +exports.SiTyperHex = SiTyper.defaultColor; +exports.SiTypescript = SiTypescript.default; +exports.SiTypescriptHex = SiTypescript.defaultColor; +exports.SiTypo3 = SiTypo3.default; +exports.SiTypo3Hex = SiTypo3.defaultColor; +exports.SiTypst = SiTypst.default; +exports.SiTypstHex = SiTypst.defaultColor; +exports.SiUber = SiUber.default; +exports.SiUberHex = SiUber.defaultColor; +exports.SiUbereats = SiUbereats.default; +exports.SiUbereatsHex = SiUbereats.defaultColor; +exports.SiUbiquiti = SiUbiquiti.default; +exports.SiUbiquitiHex = SiUbiquiti.defaultColor; +exports.SiUbisoft = SiUbisoft.default; +exports.SiUbisoftHex = SiUbisoft.defaultColor; +exports.SiUblockorigin = SiUblockorigin.default; +exports.SiUblockoriginHex = SiUblockorigin.defaultColor; +exports.SiUbuntu = SiUbuntu.default; +exports.SiUbuntuHex = SiUbuntu.defaultColor; +exports.SiUbuntumate = SiUbuntumate.default; +exports.SiUbuntumateHex = SiUbuntumate.defaultColor; +exports.SiUdacity = SiUdacity.default; +exports.SiUdacityHex = SiUdacity.defaultColor; +exports.SiUdemy = SiUdemy.default; +exports.SiUdemyHex = SiUdemy.defaultColor; +exports.SiUdotsdotnews = SiUdotsdotnews.default; +exports.SiUdotsdotnewsHex = SiUdotsdotnews.defaultColor; +exports.SiUfc = SiUfc.default; +exports.SiUfcHex = SiUfc.defaultColor; +exports.SiUikit = SiUikit.default; +exports.SiUikitHex = SiUikit.defaultColor; +exports.SiUipath = SiUipath.default; +exports.SiUipathHex = SiUipath.defaultColor; +exports.SiUkca = SiUkca.default; +exports.SiUkcaHex = SiUkca.defaultColor; +exports.SiUltralytics = SiUltralytics.default; +exports.SiUltralyticsHex = SiUltralytics.defaultColor; +exports.SiUlule = SiUlule.default; +exports.SiUluleHex = SiUlule.defaultColor; +exports.SiUmami = SiUmami.default; +exports.SiUmamiHex = SiUmami.defaultColor; +exports.SiUmbraco = SiUmbraco.default; +exports.SiUmbracoHex = SiUmbraco.defaultColor; +exports.SiUmbrel = SiUmbrel.default; +exports.SiUmbrelHex = SiUmbrel.defaultColor; +exports.SiUml = SiUml.default; +exports.SiUmlHex = SiUml.defaultColor; +exports.SiUnacademy = SiUnacademy.default; +exports.SiUnacademyHex = SiUnacademy.defaultColor; +exports.SiUnderarmour = SiUnderarmour.default; +exports.SiUnderarmourHex = SiUnderarmour.defaultColor; +exports.SiUnderscoredotjs = SiUnderscoredotjs.default; +exports.SiUnderscoredotjsHex = SiUnderscoredotjs.defaultColor; +exports.SiUndertale = SiUndertale.default; +exports.SiUndertaleHex = SiUndertale.defaultColor; +exports.SiUnicode = SiUnicode.default; +exports.SiUnicodeHex = SiUnicode.defaultColor; +exports.SiUnilever = SiUnilever.default; +exports.SiUnileverHex = SiUnilever.defaultColor; +exports.SiUniqlo = SiUniqlo.default; +exports.SiUniqloHex = SiUniqlo.defaultColor; +exports.SiUniqloJa = SiUniqloJa.default; +exports.SiUniqloJaHex = SiUniqloJa.defaultColor; +exports.SiUnitedairlines = SiUnitedairlines.default; +exports.SiUnitedairlinesHex = SiUnitedairlines.defaultColor; +exports.SiUnitednations = SiUnitednations.default; +exports.SiUnitednationsHex = SiUnitednations.defaultColor; +exports.SiUnity = SiUnity.default; +exports.SiUnityHex = SiUnity.defaultColor; +exports.SiUnjs = SiUnjs.default; +exports.SiUnjsHex = SiUnjs.defaultColor; +exports.SiUnlicense = SiUnlicense.default; +exports.SiUnlicenseHex = SiUnlicense.defaultColor; +exports.SiUnocss = SiUnocss.default; +exports.SiUnocssHex = SiUnocss.defaultColor; +exports.SiUnpkg = SiUnpkg.default; +exports.SiUnpkgHex = SiUnpkg.defaultColor; +exports.SiUnraid = SiUnraid.default; +exports.SiUnraidHex = SiUnraid.defaultColor; +exports.SiUnrealengine = SiUnrealengine.default; +exports.SiUnrealengineHex = SiUnrealengine.defaultColor; +exports.SiUnsplash = SiUnsplash.default; +exports.SiUnsplashHex = SiUnsplash.defaultColor; +exports.SiUnstop = SiUnstop.default; +exports.SiUnstopHex = SiUnstop.defaultColor; +exports.SiUntappd = SiUntappd.default; +exports.SiUntappdHex = SiUntappd.defaultColor; +exports.SiUpcloud = SiUpcloud.default; +exports.SiUpcloudHex = SiUpcloud.defaultColor; +exports.SiUphold = SiUphold.default; +exports.SiUpholdHex = SiUphold.defaultColor; +exports.SiUplabs = SiUplabs.default; +exports.SiUplabsHex = SiUplabs.defaultColor; +exports.SiUpptime = SiUpptime.default; +exports.SiUpptimeHex = SiUpptime.defaultColor; +exports.SiUps = SiUps.default; +exports.SiUpsHex = SiUps.defaultColor; +exports.SiUpstash = SiUpstash.default; +exports.SiUpstashHex = SiUpstash.defaultColor; +exports.SiUptimekuma = SiUptimekuma.default; +exports.SiUptimekumaHex = SiUptimekuma.defaultColor; +exports.SiUpwork = SiUpwork.default; +exports.SiUpworkHex = SiUpwork.defaultColor; +exports.SiUservoice = SiUservoice.default; +exports.SiUservoiceHex = SiUservoice.defaultColor; +exports.SiUsps = SiUsps.default; +exports.SiUspsHex = SiUsps.defaultColor; +exports.SiUtorrent = SiUtorrent.default; +exports.SiUtorrentHex = SiUtorrent.defaultColor; +exports.SiUv = SiUv.default; +exports.SiUvHex = SiUv.defaultColor; +exports.SiV = SiV.default; +exports.SiVHex = SiV.defaultColor; +exports.SiV0 = SiV0.default; +exports.SiV0Hex = SiV0.defaultColor; +exports.SiV2ex = SiV2ex.default; +exports.SiV2exHex = SiV2ex.defaultColor; +exports.SiV8 = SiV8.default; +exports.SiV8Hex = SiV8.defaultColor; +exports.SiVaadin = SiVaadin.default; +exports.SiVaadinHex = SiVaadin.defaultColor; +exports.SiVagrant = SiVagrant.default; +exports.SiVagrantHex = SiVagrant.defaultColor; +exports.SiVala = SiVala.default; +exports.SiValaHex = SiVala.defaultColor; +exports.SiValorant = SiValorant.default; +exports.SiValorantHex = SiValorant.defaultColor; +exports.SiValve = SiValve.default; +exports.SiValveHex = SiValve.defaultColor; +exports.SiVanillaextract = SiVanillaextract.default; +exports.SiVanillaextractHex = SiVanillaextract.defaultColor; +exports.SiVapor = SiVapor.default; +exports.SiVaporHex = SiVapor.defaultColor; +exports.SiVault = SiVault.default; +exports.SiVaultHex = SiVault.defaultColor; +exports.SiVaultwarden = SiVaultwarden.default; +exports.SiVaultwardenHex = SiVaultwarden.defaultColor; +exports.SiVauxhall = SiVauxhall.default; +exports.SiVauxhallHex = SiVauxhall.defaultColor; +exports.SiVbulletin = SiVbulletin.default; +exports.SiVbulletinHex = SiVbulletin.defaultColor; +exports.SiVectary = SiVectary.default; +exports.SiVectaryHex = SiVectary.defaultColor; +exports.SiVectorlogozone = SiVectorlogozone.default; +exports.SiVectorlogozoneHex = SiVectorlogozone.defaultColor; +exports.SiVectorworks = SiVectorworks.default; +exports.SiVectorworksHex = SiVectorworks.defaultColor; +exports.SiVeeam = SiVeeam.default; +exports.SiVeeamHex = SiVeeam.defaultColor; +exports.SiVeed = SiVeed.default; +exports.SiVeedHex = SiVeed.defaultColor; +exports.SiVeepee = SiVeepee.default; +exports.SiVeepeeHex = SiVeepee.defaultColor; +exports.SiVega = SiVega.default; +exports.SiVegaHex = SiVega.defaultColor; +exports.SiVegas = SiVegas.default; +exports.SiVegasHex = SiVegas.defaultColor; +exports.SiVelocity = SiVelocity.default; +exports.SiVelocityHex = SiVelocity.defaultColor; +exports.SiVelog = SiVelog.default; +exports.SiVelogHex = SiVelog.defaultColor; +exports.SiVencord = SiVencord.default; +exports.SiVencordHex = SiVencord.defaultColor; +exports.SiVenmo = SiVenmo.default; +exports.SiVenmoHex = SiVenmo.defaultColor; +exports.SiVercel = SiVercel.default; +exports.SiVercelHex = SiVercel.defaultColor; +exports.SiVerdaccio = SiVerdaccio.default; +exports.SiVerdaccioHex = SiVerdaccio.defaultColor; +exports.SiVeritas = SiVeritas.default; +exports.SiVeritasHex = SiVeritas.defaultColor; +exports.SiVerizon = SiVerizon.default; +exports.SiVerizonHex = SiVerizon.defaultColor; +exports.SiVespa = SiVespa.default; +exports.SiVespaHex = SiVespa.defaultColor; +exports.SiVestel = SiVestel.default; +exports.SiVestelHex = SiVestel.defaultColor; +exports.SiVexxhost = SiVexxhost.default; +exports.SiVexxhostHex = SiVexxhost.defaultColor; +exports.SiVfairs = SiVfairs.default; +exports.SiVfairsHex = SiVfairs.defaultColor; +exports.SiViadeo = SiViadeo.default; +exports.SiViadeoHex = SiViadeo.defaultColor; +exports.SiViaplay = SiViaplay.default; +exports.SiViaplayHex = SiViaplay.defaultColor; +exports.SiViber = SiViber.default; +exports.SiViberHex = SiViber.defaultColor; +exports.SiViblo = SiViblo.default; +exports.SiVibloHex = SiViblo.defaultColor; +exports.SiVictoriametrics = SiVictoriametrics.default; +exports.SiVictoriametricsHex = SiVictoriametrics.defaultColor; +exports.SiVictronenergy = SiVictronenergy.default; +exports.SiVictronenergyHex = SiVictronenergy.defaultColor; +exports.SiVikunja = SiVikunja.default; +exports.SiVikunjaHex = SiVikunja.defaultColor; +exports.SiVim = SiVim.default; +exports.SiVimHex = SiVim.defaultColor; +exports.SiVimeo = SiVimeo.default; +exports.SiVimeoHex = SiVimeo.defaultColor; +exports.SiVimeolivestream = SiVimeolivestream.default; +exports.SiVimeolivestreamHex = SiVimeolivestream.defaultColor; +exports.SiVinted = SiVinted.default; +exports.SiVintedHex = SiVinted.defaultColor; +exports.SiVirgin = SiVirgin.default; +exports.SiVirginHex = SiVirgin.defaultColor; +exports.SiVirginatlantic = SiVirginatlantic.default; +exports.SiVirginatlanticHex = SiVirginatlantic.defaultColor; +exports.SiVirginmedia = SiVirginmedia.default; +exports.SiVirginmediaHex = SiVirginmedia.defaultColor; +exports.SiVirtualbox = SiVirtualbox.default; +exports.SiVirtualboxHex = SiVirtualbox.defaultColor; +exports.SiVirustotal = SiVirustotal.default; +exports.SiVirustotalHex = SiVirustotal.defaultColor; +exports.SiVisa = SiVisa.default; +exports.SiVisaHex = SiVisa.defaultColor; +exports.SiVisualparadigm = SiVisualparadigm.default; +exports.SiVisualparadigmHex = SiVisualparadigm.defaultColor; +exports.SiVisx = SiVisx.default; +exports.SiVisxHex = SiVisx.defaultColor; +exports.SiVite = SiVite.default; +exports.SiViteHex = SiVite.defaultColor; +exports.SiVitepress = SiVitepress.default; +exports.SiVitepressHex = SiVitepress.defaultColor; +exports.SiVitess = SiVitess.default; +exports.SiVitessHex = SiVitess.defaultColor; +exports.SiVitest = SiVitest.default; +exports.SiVitestHex = SiVitest.defaultColor; +exports.SiVivaldi = SiVivaldi.default; +exports.SiVivaldiHex = SiVivaldi.defaultColor; +exports.SiVivawallet = SiVivawallet.default; +exports.SiVivawalletHex = SiVivawallet.defaultColor; +exports.SiVivino = SiVivino.default; +exports.SiVivinoHex = SiVivino.defaultColor; +exports.SiVivint = SiVivint.default; +exports.SiVivintHex = SiVivint.defaultColor; +exports.SiVivo = SiVivo.default; +exports.SiVivoHex = SiVivo.defaultColor; +exports.SiVk = SiVk.default; +exports.SiVkHex = SiVk.defaultColor; +exports.SiVlcmediaplayer = SiVlcmediaplayer.default; +exports.SiVlcmediaplayerHex = SiVlcmediaplayer.defaultColor; +exports.SiVmware = SiVmware.default; +exports.SiVmwareHex = SiVmware.defaultColor; +exports.SiVodafone = SiVodafone.default; +exports.SiVodafoneHex = SiVodafone.defaultColor; +exports.SiVoelkner = SiVoelkner.default; +exports.SiVoelknerHex = SiVoelkner.defaultColor; +exports.SiVoidlinux = SiVoidlinux.default; +exports.SiVoidlinuxHex = SiVoidlinux.defaultColor; +exports.SiVoipdotms = SiVoipdotms.default; +exports.SiVoipdotmsHex = SiVoipdotms.defaultColor; +exports.SiVolkswagen = SiVolkswagen.default; +exports.SiVolkswagenHex = SiVolkswagen.defaultColor; +exports.SiVolvo = SiVolvo.default; +exports.SiVolvoHex = SiVolvo.defaultColor; +exports.SiVonage = SiVonage.default; +exports.SiVonageHex = SiVonage.defaultColor; +exports.SiVorondesign = SiVorondesign.default; +exports.SiVorondesignHex = SiVorondesign.defaultColor; +exports.SiVowpalwabbit = SiVowpalwabbit.default; +exports.SiVowpalwabbitHex = SiVowpalwabbit.defaultColor; +exports.SiVox = SiVox.default; +exports.SiVoxHex = SiVox.defaultColor; +exports.SiVrchat = SiVrchat.default; +exports.SiVrchatHex = SiVrchat.defaultColor; +exports.SiVsco = SiVsco.default; +exports.SiVscoHex = SiVsco.defaultColor; +exports.SiVscodium = SiVscodium.default; +exports.SiVscodiumHex = SiVscodium.defaultColor; +exports.SiVtex = SiVtex.default; +exports.SiVtexHex = SiVtex.defaultColor; +exports.SiVuedotjs = SiVuedotjs.default; +exports.SiVuedotjsHex = SiVuedotjs.defaultColor; +exports.SiVuetify = SiVuetify.default; +exports.SiVuetifyHex = SiVuetify.defaultColor; +exports.SiVueuse = SiVueuse.default; +exports.SiVueuseHex = SiVueuse.defaultColor; +exports.SiVulkan = SiVulkan.default; +exports.SiVulkanHex = SiVulkan.defaultColor; +exports.SiVultr = SiVultr.default; +exports.SiVultrHex = SiVultr.defaultColor; +exports.SiVyond = SiVyond.default; +exports.SiVyondHex = SiVyond.defaultColor; +exports.SiW3schools = SiW3schools.default; +exports.SiW3schoolsHex = SiW3schools.defaultColor; +exports.SiWacom = SiWacom.default; +exports.SiWacomHex = SiWacom.defaultColor; +exports.SiWagmi = SiWagmi.default; +exports.SiWagmiHex = SiWagmi.defaultColor; +exports.SiWagtail = SiWagtail.default; +exports.SiWagtailHex = SiWagtail.defaultColor; +exports.SiWails = SiWails.default; +exports.SiWailsHex = SiWails.defaultColor; +exports.SiWakatime = SiWakatime.default; +exports.SiWakatimeHex = SiWakatime.defaultColor; +exports.SiWalkman = SiWalkman.default; +exports.SiWalkmanHex = SiWalkman.defaultColor; +exports.SiWallabag = SiWallabag.default; +exports.SiWallabagHex = SiWallabag.defaultColor; +exports.SiWalletconnect = SiWalletconnect.default; +exports.SiWalletconnectHex = SiWalletconnect.defaultColor; +exports.SiWantedly = SiWantedly.default; +exports.SiWantedlyHex = SiWantedly.defaultColor; +exports.SiWappalyzer = SiWappalyzer.default; +exports.SiWappalyzerHex = SiWappalyzer.defaultColor; +exports.SiWarp = SiWarp.default; +exports.SiWarpHex = SiWarp.defaultColor; +exports.SiWasabi = SiWasabi.default; +exports.SiWasabiHex = SiWasabi.defaultColor; +exports.SiWasmcloud = SiWasmcloud.default; +exports.SiWasmcloudHex = SiWasmcloud.defaultColor; +exports.SiWasmer = SiWasmer.default; +exports.SiWasmerHex = SiWasmer.defaultColor; +exports.SiWatchtower = SiWatchtower.default; +exports.SiWatchtowerHex = SiWatchtower.defaultColor; +exports.SiWattpad = SiWattpad.default; +exports.SiWattpadHex = SiWattpad.defaultColor; +exports.SiWayland = SiWayland.default; +exports.SiWaylandHex = SiWayland.defaultColor; +exports.SiWaze = SiWaze.default; +exports.SiWazeHex = SiWaze.defaultColor; +exports.SiWazirx = SiWazirx.default; +exports.SiWazirxHex = SiWazirx.defaultColor; +exports.SiWearos = SiWearos.default; +exports.SiWearosHex = SiWearos.defaultColor; +exports.SiWeasyl = SiWeasyl.default; +exports.SiWeasylHex = SiWeasyl.defaultColor; +exports.SiWeb3dotjs = SiWeb3dotjs.default; +exports.SiWeb3dotjsHex = SiWeb3dotjs.defaultColor; +exports.SiWebassembly = SiWebassembly.default; +exports.SiWebassemblyHex = SiWebassembly.defaultColor; +exports.SiWebauthn = SiWebauthn.default; +exports.SiWebauthnHex = SiWebauthn.defaultColor; +exports.SiWebawesome = SiWebawesome.default; +exports.SiWebawesomeHex = SiWebawesome.defaultColor; +exports.SiWebcomponentsdotorg = SiWebcomponentsdotorg.default; +exports.SiWebcomponentsdotorgHex = SiWebcomponentsdotorg.defaultColor; +exports.SiWebdotde = SiWebdotde.default; +exports.SiWebdotdeHex = SiWebdotde.defaultColor; +exports.SiWebdriverio = SiWebdriverio.default; +exports.SiWebdriverioHex = SiWebdriverio.defaultColor; +exports.SiWebex = SiWebex.default; +exports.SiWebexHex = SiWebex.defaultColor; +exports.SiWebflow = SiWebflow.default; +exports.SiWebflowHex = SiWebflow.defaultColor; +exports.SiWebgl = SiWebgl.default; +exports.SiWebglHex = SiWebgl.defaultColor; +exports.SiWebgpu = SiWebgpu.default; +exports.SiWebgpuHex = SiWebgpu.defaultColor; +exports.SiWeblate = SiWeblate.default; +exports.SiWeblateHex = SiWeblate.defaultColor; +exports.SiWebmin = SiWebmin.default; +exports.SiWebminHex = SiWebmin.defaultColor; +exports.SiWebmoney = SiWebmoney.default; +exports.SiWebmoneyHex = SiWebmoney.defaultColor; +exports.SiWebpack = SiWebpack.default; +exports.SiWebpackHex = SiWebpack.defaultColor; +exports.SiWebrtc = SiWebrtc.default; +exports.SiWebrtcHex = SiWebrtc.defaultColor; +exports.SiWebstorm = SiWebstorm.default; +exports.SiWebstormHex = SiWebstorm.defaultColor; +exports.SiWebtoon = SiWebtoon.default; +exports.SiWebtoonHex = SiWebtoon.defaultColor; +exports.SiWebtrees = SiWebtrees.default; +exports.SiWebtreesHex = SiWebtrees.defaultColor; +exports.SiWechat = SiWechat.default; +exports.SiWechatHex = SiWechat.defaultColor; +exports.SiWegame = SiWegame.default; +exports.SiWegameHex = SiWegame.defaultColor; +exports.SiWeightsandbiases = SiWeightsandbiases.default; +exports.SiWeightsandbiasesHex = SiWeightsandbiases.defaultColor; +exports.SiWelcometothejungle = SiWelcometothejungle.default; +exports.SiWelcometothejungleHex = SiWelcometothejungle.defaultColor; +exports.SiWellfound = SiWellfound.default; +exports.SiWellfoundHex = SiWellfound.defaultColor; +exports.SiWellsfargo = SiWellsfargo.default; +exports.SiWellsfargoHex = SiWellsfargo.defaultColor; +exports.SiWemo = SiWemo.default; +exports.SiWemoHex = SiWemo.defaultColor; +exports.SiWeread = SiWeread.default; +exports.SiWereadHex = SiWeread.defaultColor; +exports.SiWesternunion = SiWesternunion.default; +exports.SiWesternunionHex = SiWesternunion.defaultColor; +exports.SiWetransfer = SiWetransfer.default; +exports.SiWetransferHex = SiWetransfer.defaultColor; +exports.SiWezterm = SiWezterm.default; +exports.SiWeztermHex = SiWezterm.defaultColor; +exports.SiWgpu = SiWgpu.default; +exports.SiWgpuHex = SiWgpu.defaultColor; +exports.SiWhat3words = SiWhat3words.default; +exports.SiWhat3wordsHex = SiWhat3words.defaultColor; +exports.SiWhatsapp = SiWhatsapp.default; +exports.SiWhatsappHex = SiWhatsapp.defaultColor; +exports.SiWheniwork = SiWheniwork.default; +exports.SiWheniworkHex = SiWheniwork.defaultColor; +exports.SiWikibooks = SiWikibooks.default; +exports.SiWikibooksHex = SiWikibooks.defaultColor; +exports.SiWikidata = SiWikidata.default; +exports.SiWikidataHex = SiWikidata.defaultColor; +exports.SiWikidotgg = SiWikidotgg.default; +exports.SiWikidotggHex = SiWikidotgg.defaultColor; +exports.SiWikidotjs = SiWikidotjs.default; +exports.SiWikidotjsHex = SiWikidotjs.defaultColor; +exports.SiWikimediacommons = SiWikimediacommons.default; +exports.SiWikimediacommonsHex = SiWikimediacommons.defaultColor; +exports.SiWikimediafoundation = SiWikimediafoundation.default; +exports.SiWikimediafoundationHex = SiWikimediafoundation.defaultColor; +exports.SiWikipedia = SiWikipedia.default; +exports.SiWikipediaHex = SiWikipedia.defaultColor; +exports.SiWikiquote = SiWikiquote.default; +exports.SiWikiquoteHex = SiWikiquote.defaultColor; +exports.SiWikisource = SiWikisource.default; +exports.SiWikisourceHex = SiWikisource.defaultColor; +exports.SiWikiversity = SiWikiversity.default; +exports.SiWikiversityHex = SiWikiversity.defaultColor; +exports.SiWikivoyage = SiWikivoyage.default; +exports.SiWikivoyageHex = SiWikivoyage.defaultColor; +exports.SiWinamp = SiWinamp.default; +exports.SiWinampHex = SiWinamp.defaultColor; +exports.SiWindsurf = SiWindsurf.default; +exports.SiWindsurfHex = SiWindsurf.defaultColor; +exports.SiWine = SiWine.default; +exports.SiWineHex = SiWine.defaultColor; +exports.SiWipro = SiWipro.default; +exports.SiWiproHex = SiWipro.defaultColor; +exports.SiWire = SiWire.default; +exports.SiWireHex = SiWire.defaultColor; +exports.SiWireguard = SiWireguard.default; +exports.SiWireguardHex = SiWireguard.defaultColor; +exports.SiWireshark = SiWireshark.default; +exports.SiWiresharkHex = SiWireshark.defaultColor; +exports.SiWise = SiWise.default; +exports.SiWiseHex = SiWise.defaultColor; +exports.SiWish = SiWish.default; +exports.SiWishHex = SiWish.defaultColor; +exports.SiWistia = SiWistia.default; +exports.SiWistiaHex = SiWistia.defaultColor; +exports.SiWix = SiWix.default; +exports.SiWixHex = SiWix.defaultColor; +exports.SiWizzair = SiWizzair.default; +exports.SiWizzairHex = SiWizzair.defaultColor; +exports.SiWolfram = SiWolfram.default; +exports.SiWolframHex = SiWolfram.defaultColor; +exports.SiWolframlanguage = SiWolframlanguage.default; +exports.SiWolframlanguageHex = SiWolframlanguage.defaultColor; +exports.SiWolframmathematica = SiWolframmathematica.default; +exports.SiWolframmathematicaHex = SiWolframmathematica.defaultColor; +exports.SiWondershare = SiWondershare.default; +exports.SiWondershareHex = SiWondershare.defaultColor; +exports.SiWondersharefilmora = SiWondersharefilmora.default; +exports.SiWondersharefilmoraHex = SiWondersharefilmora.defaultColor; +exports.SiWoo = SiWoo.default; +exports.SiWooHex = SiWoo.defaultColor; +exports.SiWoocommerce = SiWoocommerce.default; +exports.SiWoocommerceHex = SiWoocommerce.defaultColor; +exports.SiWordpress = SiWordpress.default; +exports.SiWordpressHex = SiWordpress.defaultColor; +exports.SiWorkplace = SiWorkplace.default; +exports.SiWorkplaceHex = SiWorkplace.defaultColor; +exports.SiWorldhealthorganization = SiWorldhealthorganization.default; +exports.SiWorldhealthorganizationHex = SiWorldhealthorganization.defaultColor; +exports.SiWpengine = SiWpengine.default; +exports.SiWpengineHex = SiWpengine.defaultColor; +exports.SiWpexplorer = SiWpexplorer.default; +exports.SiWpexplorerHex = SiWpexplorer.defaultColor; +exports.SiWprocket = SiWprocket.default; +exports.SiWprocketHex = SiWprocket.defaultColor; +exports.SiWritedotas = SiWritedotas.default; +exports.SiWritedotasHex = SiWritedotas.defaultColor; +exports.SiWwe = SiWwe.default; +exports.SiWweHex = SiWwe.defaultColor; +exports.SiWwise = SiWwise.default; +exports.SiWwiseHex = SiWwise.defaultColor; +exports.SiWxt = SiWxt.default; +exports.SiWxtHex = SiWxt.defaultColor; +exports.SiWykop = SiWykop.default; +exports.SiWykopHex = SiWykop.defaultColor; +exports.SiWyze = SiWyze.default; +exports.SiWyzeHex = SiWyze.defaultColor; +exports.SiX = SiX.default; +exports.SiXHex = SiX.defaultColor; +exports.SiXampp = SiXampp.default; +exports.SiXamppHex = SiXampp.defaultColor; +exports.SiXcode = SiXcode.default; +exports.SiXcodeHex = SiXcode.defaultColor; +exports.SiXdadevelopers = SiXdadevelopers.default; +exports.SiXdadevelopersHex = SiXdadevelopers.defaultColor; +exports.SiXdotorg = SiXdotorg.default; +exports.SiXdotorgHex = SiXdotorg.defaultColor; +exports.SiXendit = SiXendit.default; +exports.SiXenditHex = SiXendit.defaultColor; +exports.SiXero = SiXero.default; +exports.SiXeroHex = SiXero.defaultColor; +exports.SiXfce = SiXfce.default; +exports.SiXfceHex = SiXfce.defaultColor; +exports.SiXiaohongshu = SiXiaohongshu.default; +exports.SiXiaohongshuHex = SiXiaohongshu.defaultColor; +exports.SiXiaomi = SiXiaomi.default; +exports.SiXiaomiHex = SiXiaomi.defaultColor; +exports.SiXing = SiXing.default; +exports.SiXingHex = SiXing.defaultColor; +exports.SiXml = SiXml.default; +exports.SiXmlHex = SiXml.defaultColor; +exports.SiXmpp = SiXmpp.default; +exports.SiXmppHex = SiXmpp.defaultColor; +exports.SiXo = SiXo.default; +exports.SiXoHex = SiXo.defaultColor; +exports.SiXrp = SiXrp.default; +exports.SiXrpHex = SiXrp.defaultColor; +exports.SiXsplit = SiXsplit.default; +exports.SiXsplitHex = SiXsplit.defaultColor; +exports.SiXstate = SiXstate.default; +exports.SiXstateHex = SiXstate.defaultColor; +exports.SiXubuntu = SiXubuntu.default; +exports.SiXubuntuHex = SiXubuntu.defaultColor; +exports.SiXyflow = SiXyflow.default; +exports.SiXyflowHex = SiXyflow.defaultColor; +exports.SiYaak = SiYaak.default; +exports.SiYaakHex = SiYaak.defaultColor; +exports.SiYabai = SiYabai.default; +exports.SiYabaiHex = SiYabai.defaultColor; +exports.SiYale = SiYale.default; +exports.SiYaleHex = SiYale.defaultColor; +exports.SiYamahacorporation = SiYamahacorporation.default; +exports.SiYamahacorporationHex = SiYamahacorporation.defaultColor; +exports.SiYamahamotorcorporation = SiYamahamotorcorporation.default; +exports.SiYamahamotorcorporationHex = SiYamahamotorcorporation.defaultColor; +exports.SiYaml = SiYaml.default; +exports.SiYamlHex = SiYaml.defaultColor; +exports.SiYandexcloud = SiYandexcloud.default; +exports.SiYandexcloudHex = SiYandexcloud.defaultColor; +exports.SiYarn = SiYarn.default; +exports.SiYarnHex = SiYarn.defaultColor; +exports.SiYcombinator = SiYcombinator.default; +exports.SiYcombinatorHex = SiYcombinator.defaultColor; +exports.SiYelp = SiYelp.default; +exports.SiYelpHex = SiYelp.defaultColor; +exports.SiYeti = SiYeti.default; +exports.SiYetiHex = SiYeti.defaultColor; +exports.SiYii = SiYii.default; +exports.SiYiiHex = SiYii.defaultColor; +exports.SiYoast = SiYoast.default; +exports.SiYoastHex = SiYoast.defaultColor; +exports.SiYolo = SiYolo.default; +exports.SiYoloHex = SiYolo.defaultColor; +exports.SiYouhodler = SiYouhodler.default; +exports.SiYouhodlerHex = SiYouhodler.defaultColor; +exports.SiYoutube = SiYoutube.default; +exports.SiYoutubeHex = SiYoutube.defaultColor; +exports.SiYoutubegaming = SiYoutubegaming.default; +exports.SiYoutubegamingHex = SiYoutubegaming.defaultColor; +exports.SiYoutubekids = SiYoutubekids.default; +exports.SiYoutubekidsHex = SiYoutubekids.defaultColor; +exports.SiYoutubemusic = SiYoutubemusic.default; +exports.SiYoutubemusicHex = SiYoutubemusic.defaultColor; +exports.SiYoutubeshorts = SiYoutubeshorts.default; +exports.SiYoutubeshortsHex = SiYoutubeshorts.defaultColor; +exports.SiYoutubestudio = SiYoutubestudio.default; +exports.SiYoutubestudioHex = SiYoutubestudio.defaultColor; +exports.SiYoutubetv = SiYoutubetv.default; +exports.SiYoutubetvHex = SiYoutubetv.defaultColor; +exports.SiYr = SiYr.default; +exports.SiYrHex = SiYr.defaultColor; +exports.SiYubico = SiYubico.default; +exports.SiYubicoHex = SiYubico.defaultColor; +exports.SiYunohost = SiYunohost.default; +exports.SiYunohostHex = SiYunohost.defaultColor; +exports.SiZabka = SiZabka.default; +exports.SiZabkaHex = SiZabka.defaultColor; +exports.SiZaim = SiZaim.default; +exports.SiZaimHex = SiZaim.defaultColor; +exports.SiZalando = SiZalando.default; +exports.SiZalandoHex = SiZalando.defaultColor; +exports.SiZalo = SiZalo.default; +exports.SiZaloHex = SiZalo.defaultColor; +exports.SiZap = SiZap.default; +exports.SiZapHex = SiZap.defaultColor; +exports.SiZapier = SiZapier.default; +exports.SiZapierHex = SiZapier.defaultColor; +exports.SiZara = SiZara.default; +exports.SiZaraHex = SiZara.defaultColor; +exports.SiZazzle = SiZazzle.default; +exports.SiZazzleHex = SiZazzle.defaultColor; +exports.SiZcash = SiZcash.default; +exports.SiZcashHex = SiZcash.defaultColor; +exports.SiZcool = SiZcool.default; +exports.SiZcoolHex = SiZcool.defaultColor; +exports.SiZdf = SiZdf.default; +exports.SiZdfHex = SiZdf.defaultColor; +exports.SiZebpay = SiZebpay.default; +exports.SiZebpayHex = SiZebpay.defaultColor; +exports.SiZebratechnologies = SiZebratechnologies.default; +exports.SiZebratechnologiesHex = SiZebratechnologies.defaultColor; +exports.SiZedindustries = SiZedindustries.default; +exports.SiZedindustriesHex = SiZedindustries.defaultColor; +exports.SiZelle = SiZelle.default; +exports.SiZelleHex = SiZelle.defaultColor; +exports.SiZenbrowser = SiZenbrowser.default; +exports.SiZenbrowserHex = SiZenbrowser.defaultColor; +exports.SiZend = SiZend.default; +exports.SiZendHex = SiZend.defaultColor; +exports.SiZendesk = SiZendesk.default; +exports.SiZendeskHex = SiZendesk.defaultColor; +exports.SiZenn = SiZenn.default; +exports.SiZennHex = SiZenn.defaultColor; +exports.SiZenodo = SiZenodo.default; +exports.SiZenodoHex = SiZenodo.defaultColor; +exports.SiZensar = SiZensar.default; +exports.SiZensarHex = SiZensar.defaultColor; +exports.SiZerodha = SiZerodha.default; +exports.SiZerodhaHex = SiZerodha.defaultColor; +exports.SiZerotier = SiZerotier.default; +exports.SiZerotierHex = SiZerotier.defaultColor; +exports.SiZettlr = SiZettlr.default; +exports.SiZettlrHex = SiZettlr.defaultColor; +exports.SiZhihu = SiZhihu.default; +exports.SiZhihuHex = SiZhihu.defaultColor; +exports.SiZig = SiZig.default; +exports.SiZigHex = SiZig.defaultColor; +exports.SiZigbee = SiZigbee.default; +exports.SiZigbeeHex = SiZigbee.defaultColor; +exports.SiZigbee2mqtt = SiZigbee2mqtt.default; +exports.SiZigbee2mqttHex = SiZigbee2mqtt.defaultColor; +exports.SiZiggo = SiZiggo.default; +exports.SiZiggoHex = SiZiggo.defaultColor; +exports.SiZilch = SiZilch.default; +exports.SiZilchHex = SiZilch.defaultColor; +exports.SiZillow = SiZillow.default; +exports.SiZillowHex = SiZillow.defaultColor; +exports.SiZincsearch = SiZincsearch.default; +exports.SiZincsearchHex = SiZincsearch.defaultColor; +exports.SiZingat = SiZingat.default; +exports.SiZingatHex = SiZingat.defaultColor; +exports.SiZod = SiZod.default; +exports.SiZodHex = SiZod.defaultColor; +exports.SiZoho = SiZoho.default; +exports.SiZohoHex = SiZoho.defaultColor; +exports.SiZoiper = SiZoiper.default; +exports.SiZoiperHex = SiZoiper.defaultColor; +exports.SiZola = SiZola.default; +exports.SiZolaHex = SiZola.defaultColor; +exports.SiZomato = SiZomato.default; +exports.SiZomatoHex = SiZomato.defaultColor; +exports.SiZoom = SiZoom.default; +exports.SiZoomHex = SiZoom.defaultColor; +exports.SiZorin = SiZorin.default; +exports.SiZorinHex = SiZorin.defaultColor; +exports.SiZotero = SiZotero.default; +exports.SiZoteroHex = SiZotero.defaultColor; +exports.SiZsh = SiZsh.default; +exports.SiZshHex = SiZsh.defaultColor; +exports.SiZulip = SiZulip.default; +exports.SiZulipHex = SiZulip.defaultColor; +exports.SiZyte = SiZyte.default; +exports.SiZyteHex = SiZyte.defaultColor; diff --git a/node_modules/@icons-pack/react-simple-icons/index.d.ts b/node_modules/@icons-pack/react-simple-icons/index.d.ts new file mode 100644 index 000000000..ac1e35e1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/index.d.ts @@ -0,0 +1,3394 @@ +export { default as Si1001tracklists, defaultColor as Si1001tracklistsHex } from './icons/Si1001tracklists'; +export { default as Si1and1, defaultColor as Si1and1Hex } from './icons/Si1and1'; +export { default as Si1dot1dot1dot1, defaultColor as Si1dot1dot1dot1Hex } from './icons/Si1dot1dot1dot1'; +export { default as Si1panel, defaultColor as Si1panelHex } from './icons/Si1panel'; +export { default as Si1password, defaultColor as Si1passwordHex } from './icons/Si1password'; +export { default as Si2fas, defaultColor as Si2fasHex } from './icons/Si2fas'; +export { default as Si2k, defaultColor as Si2kHex } from './icons/Si2k'; +export { default as Si30secondsofcode, defaultColor as Si30secondsofcodeHex } from './icons/Si30secondsofcode'; +export { default as Si365datascience, defaultColor as Si365datascienceHex } from './icons/Si365datascience'; +export { default as Si3m, defaultColor as Si3mHex } from './icons/Si3m'; +export { default as Si42, defaultColor as Si42Hex } from './icons/Si42'; +export { default as Si4chan, defaultColor as Si4chanHex } from './icons/Si4chan'; +export { default as Si4d, defaultColor as Si4dHex } from './icons/Si4d'; +export { default as Si500px, defaultColor as Si500pxHex } from './icons/Si500px'; +export { default as Si7zip, defaultColor as Si7zipHex } from './icons/Si7zip'; +export { default as Si99designs, defaultColor as Si99designsHex } from './icons/Si99designs'; +export { default as Si9gag, defaultColor as Si9gagHex } from './icons/Si9gag'; +export { default as SiAbb, defaultColor as SiAbbHex } from './icons/SiAbb'; +export { default as SiAbbott, defaultColor as SiAbbottHex } from './icons/SiAbbott'; +export { default as SiAbbvie, defaultColor as SiAbbvieHex } from './icons/SiAbbvie'; +export { default as SiAbdownloadmanager, defaultColor as SiAbdownloadmanagerHex } from './icons/SiAbdownloadmanager'; +export { default as SiAboutdotme, defaultColor as SiAboutdotmeHex } from './icons/SiAboutdotme'; +export { default as SiAbstract, defaultColor as SiAbstractHex } from './icons/SiAbstract'; +export { default as SiAbusedotch, defaultColor as SiAbusedotchHex } from './icons/SiAbusedotch'; +export { default as SiAcademia, defaultColor as SiAcademiaHex } from './icons/SiAcademia'; +export { default as SiAccenture, defaultColor as SiAccentureHex } from './icons/SiAccenture'; +export { default as SiAccusoft, defaultColor as SiAccusoftHex } from './icons/SiAccusoft'; +export { default as SiAccuweather, defaultColor as SiAccuweatherHex } from './icons/SiAccuweather'; +export { default as SiAcer, defaultColor as SiAcerHex } from './icons/SiAcer'; +export { default as SiAcm, defaultColor as SiAcmHex } from './icons/SiAcm'; +export { default as SiAcode, defaultColor as SiAcodeHex } from './icons/SiAcode'; +export { default as SiActigraph, defaultColor as SiActigraphHex } from './icons/SiActigraph'; +export { default as SiActiveloop, defaultColor as SiActiveloopHex } from './icons/SiActiveloop'; +export { default as SiActivision, defaultColor as SiActivisionHex } from './icons/SiActivision'; +export { default as SiActivitypub, defaultColor as SiActivitypubHex } from './icons/SiActivitypub'; +export { default as SiActix, defaultColor as SiActixHex } from './icons/SiActix'; +export { default as SiActualbudget, defaultColor as SiActualbudgetHex } from './icons/SiActualbudget'; +export { default as SiAcura, defaultColor as SiAcuraHex } from './icons/SiAcura'; +export { default as SiAda, defaultColor as SiAdaHex } from './icons/SiAda'; +export { default as SiAdafruit, defaultColor as SiAdafruitHex } from './icons/SiAdafruit'; +export { default as SiAdaway, defaultColor as SiAdawayHex } from './icons/SiAdaway'; +export { default as SiAdblock, defaultColor as SiAdblockHex } from './icons/SiAdblock'; +export { default as SiAdblockplus, defaultColor as SiAdblockplusHex } from './icons/SiAdblockplus'; +export { default as SiAddydotio, defaultColor as SiAddydotioHex } from './icons/SiAddydotio'; +export { default as SiAdguard, defaultColor as SiAdguardHex } from './icons/SiAdguard'; +export { default as SiAdidas, defaultColor as SiAdidasHex } from './icons/SiAdidas'; +export { default as SiAdminer, defaultColor as SiAdminerHex } from './icons/SiAdminer'; +export { default as SiAdonisjs, defaultColor as SiAdonisjsHex } from './icons/SiAdonisjs'; +export { default as SiAdp, defaultColor as SiAdpHex } from './icons/SiAdp'; +export { default as SiAdroll, defaultColor as SiAdrollHex } from './icons/SiAdroll'; +export { default as SiAdventofcode, defaultColor as SiAdventofcodeHex } from './icons/SiAdventofcode'; +export { default as SiAdyen, defaultColor as SiAdyenHex } from './icons/SiAdyen'; +export { default as SiAegisauthenticator, defaultColor as SiAegisauthenticatorHex } from './icons/SiAegisauthenticator'; +export { default as SiAeroflot, defaultColor as SiAeroflotHex } from './icons/SiAeroflot'; +export { default as SiAeromexico, defaultColor as SiAeromexicoHex } from './icons/SiAeromexico'; +export { default as SiAfdian, defaultColor as SiAfdianHex } from './icons/SiAfdian'; +export { default as SiAffine, defaultColor as SiAffineHex } from './icons/SiAffine'; +export { default as SiAframe, defaultColor as SiAframeHex } from './icons/SiAframe'; +export { default as SiAfterpay, defaultColor as SiAfterpayHex } from './icons/SiAfterpay'; +export { default as SiAftership, defaultColor as SiAftershipHex } from './icons/SiAftership'; +export { default as SiAgora, defaultColor as SiAgoraHex } from './icons/SiAgora'; +export { default as SiAib, defaultColor as SiAibHex } from './icons/SiAib'; +export { default as SiAidungeon, defaultColor as SiAidungeonHex } from './icons/SiAidungeon'; +export { default as SiAiohttp, defaultColor as SiAiohttpHex } from './icons/SiAiohttp'; +export { default as SiAiqfome, defaultColor as SiAiqfomeHex } from './icons/SiAiqfome'; +export { default as SiAirasia, defaultColor as SiAirasiaHex } from './icons/SiAirasia'; +export { default as SiAirbnb, defaultColor as SiAirbnbHex } from './icons/SiAirbnb'; +export { default as SiAirbrake, defaultColor as SiAirbrakeHex } from './icons/SiAirbrake'; +export { default as SiAirbus, defaultColor as SiAirbusHex } from './icons/SiAirbus'; +export { default as SiAirbyte, defaultColor as SiAirbyteHex } from './icons/SiAirbyte'; +export { default as SiAircall, defaultColor as SiAircallHex } from './icons/SiAircall'; +export { default as SiAircanada, defaultColor as SiAircanadaHex } from './icons/SiAircanada'; +export { default as SiAirchina, defaultColor as SiAirchinaHex } from './icons/SiAirchina'; +export { default as SiAirfrance, defaultColor as SiAirfranceHex } from './icons/SiAirfrance'; +export { default as SiAirindia, defaultColor as SiAirindiaHex } from './icons/SiAirindia'; +export { default as SiAirplayaudio, defaultColor as SiAirplayaudioHex } from './icons/SiAirplayaudio'; +export { default as SiAirplayvideo, defaultColor as SiAirplayvideoHex } from './icons/SiAirplayvideo'; +export { default as SiAirserbia, defaultColor as SiAirserbiaHex } from './icons/SiAirserbia'; +export { default as SiAirtable, defaultColor as SiAirtableHex } from './icons/SiAirtable'; +export { default as SiAirtel, defaultColor as SiAirtelHex } from './icons/SiAirtel'; +export { default as SiAirtransat, defaultColor as SiAirtransatHex } from './icons/SiAirtransat'; +export { default as SiAjv, defaultColor as SiAjvHex } from './icons/SiAjv'; +export { default as SiAkamai, defaultColor as SiAkamaiHex } from './icons/SiAkamai'; +export { default as SiAkasaair, defaultColor as SiAkasaairHex } from './icons/SiAkasaair'; +export { default as SiAkaunting, defaultColor as SiAkauntingHex } from './icons/SiAkaunting'; +export { default as SiAkiflow, defaultColor as SiAkiflowHex } from './icons/SiAkiflow'; +export { default as SiAlacritty, defaultColor as SiAlacrittyHex } from './icons/SiAlacritty'; +export { default as SiAlamy, defaultColor as SiAlamyHex } from './icons/SiAlamy'; +export { default as SiAlbertheijn, defaultColor as SiAlbertheijnHex } from './icons/SiAlbertheijn'; +export { default as SiAlby, defaultColor as SiAlbyHex } from './icons/SiAlby'; +export { default as SiAlchemy, defaultColor as SiAlchemyHex } from './icons/SiAlchemy'; +export { default as SiAldinord, defaultColor as SiAldinordHex } from './icons/SiAldinord'; +export { default as SiAldisud, defaultColor as SiAldisudHex } from './icons/SiAldisud'; +export { default as SiAlfred, defaultColor as SiAlfredHex } from './icons/SiAlfred'; +export { default as SiAlgolia, defaultColor as SiAlgoliaHex } from './icons/SiAlgolia'; +export { default as SiAlgorand, defaultColor as SiAlgorandHex } from './icons/SiAlgorand'; +export { default as SiAlibabacloud, defaultColor as SiAlibabacloudHex } from './icons/SiAlibabacloud'; +export { default as SiAlibabadotcom, defaultColor as SiAlibabadotcomHex } from './icons/SiAlibabadotcom'; +export { default as SiAlienware, defaultColor as SiAlienwareHex } from './icons/SiAlienware'; +export { default as SiAliexpress, defaultColor as SiAliexpressHex } from './icons/SiAliexpress'; +export { default as SiAlipay, defaultColor as SiAlipayHex } from './icons/SiAlipay'; +export { default as SiAlist, defaultColor as SiAlistHex } from './icons/SiAlist'; +export { default as SiAllegro, defaultColor as SiAllegroHex } from './icons/SiAllegro'; +export { default as SiAlliedmodders, defaultColor as SiAlliedmoddersHex } from './icons/SiAlliedmodders'; +export { default as SiAlltrails, defaultColor as SiAlltrailsHex } from './icons/SiAlltrails'; +export { default as SiAlmalinux, defaultColor as SiAlmalinuxHex } from './icons/SiAlmalinux'; +export { default as SiAlpinedotjs, defaultColor as SiAlpinedotjsHex } from './icons/SiAlpinedotjs'; +export { default as SiAlpinelinux, defaultColor as SiAlpinelinuxHex } from './icons/SiAlpinelinux'; +export { default as SiAlternativeto, defaultColor as SiAlternativetoHex } from './icons/SiAlternativeto'; +export { default as SiAlwaysdata, defaultColor as SiAlwaysdataHex } from './icons/SiAlwaysdata'; +export { default as SiAmd, defaultColor as SiAmdHex } from './icons/SiAmd'; +export { default as SiAmeba, defaultColor as SiAmebaHex } from './icons/SiAmeba'; +export { default as SiAmericanairlines, defaultColor as SiAmericanairlinesHex } from './icons/SiAmericanairlines'; +export { default as SiAmericanexpress, defaultColor as SiAmericanexpressHex } from './icons/SiAmericanexpress'; +export { default as SiAmg, defaultColor as SiAmgHex } from './icons/SiAmg'; +export { default as SiAmp, defaultColor as SiAmpHex } from './icons/SiAmp'; +export { default as SiAmul, defaultColor as SiAmulHex } from './icons/SiAmul'; +export { default as SiAna, defaultColor as SiAnaHex } from './icons/SiAna'; +export { default as SiAnaconda, defaultColor as SiAnacondaHex } from './icons/SiAnaconda'; +export { default as SiAnalogue, defaultColor as SiAnalogueHex } from './icons/SiAnalogue'; +export { default as SiAndela, defaultColor as SiAndelaHex } from './icons/SiAndela'; +export { default as SiAndroid, defaultColor as SiAndroidHex } from './icons/SiAndroid'; +export { default as SiAndroidauto, defaultColor as SiAndroidautoHex } from './icons/SiAndroidauto'; +export { default as SiAndroidstudio, defaultColor as SiAndroidstudioHex } from './icons/SiAndroidstudio'; +export { default as SiAngular, defaultColor as SiAngularHex } from './icons/SiAngular'; +export { default as SiAnichart, defaultColor as SiAnichartHex } from './icons/SiAnichart'; +export { default as SiAnilist, defaultColor as SiAnilistHex } from './icons/SiAnilist'; +export { default as SiAnimalplanet, defaultColor as SiAnimalplanetHex } from './icons/SiAnimalplanet'; +export { default as SiAnimedotjs, defaultColor as SiAnimedotjsHex } from './icons/SiAnimedotjs'; +export { default as SiAnkermake, defaultColor as SiAnkermakeHex } from './icons/SiAnkermake'; +export { default as SiAnki, defaultColor as SiAnkiHex } from './icons/SiAnki'; +export { default as SiAnsible, defaultColor as SiAnsibleHex } from './icons/SiAnsible'; +export { default as SiAnswer, defaultColor as SiAnswerHex } from './icons/SiAnswer'; +export { default as SiAnsys, defaultColor as SiAnsysHex } from './icons/SiAnsys'; +export { default as SiAnta, defaultColor as SiAntaHex } from './icons/SiAnta'; +export { default as SiAntdesign, defaultColor as SiAntdesignHex } from './icons/SiAntdesign'; +export { default as SiAntena3, defaultColor as SiAntena3Hex } from './icons/SiAntena3'; +export { default as SiAntennapod, defaultColor as SiAntennapodHex } from './icons/SiAntennapod'; +export { default as SiAnthropic, defaultColor as SiAnthropicHex } from './icons/SiAnthropic'; +export { default as SiAntv, defaultColor as SiAntvHex } from './icons/SiAntv'; +export { default as SiAnycubic, defaultColor as SiAnycubicHex } from './icons/SiAnycubic'; +export { default as SiAnydesk, defaultColor as SiAnydeskHex } from './icons/SiAnydesk'; +export { default as SiAnytype, defaultColor as SiAnytypeHex } from './icons/SiAnytype'; +export { default as SiApache, defaultColor as SiApacheHex } from './icons/SiApache'; +export { default as SiApacheairflow, defaultColor as SiApacheairflowHex } from './icons/SiApacheairflow'; +export { default as SiApacheant, defaultColor as SiApacheantHex } from './icons/SiApacheant'; +export { default as SiApacheavro, defaultColor as SiApacheavroHex } from './icons/SiApacheavro'; +export { default as SiApachecassandra, defaultColor as SiApachecassandraHex } from './icons/SiApachecassandra'; +export { default as SiApachecloudstack, defaultColor as SiApachecloudstackHex } from './icons/SiApachecloudstack'; +export { default as SiApachecordova, defaultColor as SiApachecordovaHex } from './icons/SiApachecordova'; +export { default as SiApachecouchdb, defaultColor as SiApachecouchdbHex } from './icons/SiApachecouchdb'; +export { default as SiApachedolphinscheduler, defaultColor as SiApachedolphinschedulerHex } from './icons/SiApachedolphinscheduler'; +export { default as SiApachedoris, defaultColor as SiApachedorisHex } from './icons/SiApachedoris'; +export { default as SiApachedruid, defaultColor as SiApachedruidHex } from './icons/SiApachedruid'; +export { default as SiApacheecharts, defaultColor as SiApacheechartsHex } from './icons/SiApacheecharts'; +export { default as SiApacheflink, defaultColor as SiApacheflinkHex } from './icons/SiApacheflink'; +export { default as SiApachefreemarker, defaultColor as SiApachefreemarkerHex } from './icons/SiApachefreemarker'; +export { default as SiApachegroovy, defaultColor as SiApachegroovyHex } from './icons/SiApachegroovy'; +export { default as SiApacheguacamole, defaultColor as SiApacheguacamoleHex } from './icons/SiApacheguacamole'; +export { default as SiApachehadoop, defaultColor as SiApachehadoopHex } from './icons/SiApachehadoop'; +export { default as SiApachehbase, defaultColor as SiApachehbaseHex } from './icons/SiApachehbase'; +export { default as SiApachehive, defaultColor as SiApachehiveHex } from './icons/SiApachehive'; +export { default as SiApachejmeter, defaultColor as SiApachejmeterHex } from './icons/SiApachejmeter'; +export { default as SiApachekafka, defaultColor as SiApachekafkaHex } from './icons/SiApachekafka'; +export { default as SiApachekylin, defaultColor as SiApachekylinHex } from './icons/SiApachekylin'; +export { default as SiApachelucene, defaultColor as SiApacheluceneHex } from './icons/SiApachelucene'; +export { default as SiApachemaven, defaultColor as SiApachemavenHex } from './icons/SiApachemaven'; +export { default as SiApachenetbeanside, defaultColor as SiApachenetbeansideHex } from './icons/SiApachenetbeanside'; +export { default as SiApachenifi, defaultColor as SiApachenifiHex } from './icons/SiApachenifi'; +export { default as SiApacheopenoffice, defaultColor as SiApacheopenofficeHex } from './icons/SiApacheopenoffice'; +export { default as SiApacheparquet, defaultColor as SiApacheparquetHex } from './icons/SiApacheparquet'; +export { default as SiApachepdfbox, defaultColor as SiApachepdfboxHex } from './icons/SiApachepdfbox'; +export { default as SiApachepulsar, defaultColor as SiApachepulsarHex } from './icons/SiApachepulsar'; +export { default as SiApacherocketmq, defaultColor as SiApacherocketmqHex } from './icons/SiApacherocketmq'; +export { default as SiApachesolr, defaultColor as SiApachesolrHex } from './icons/SiApachesolr'; +export { default as SiApachespark, defaultColor as SiApachesparkHex } from './icons/SiApachespark'; +export { default as SiApachestorm, defaultColor as SiApachestormHex } from './icons/SiApachestorm'; +export { default as SiApachesuperset, defaultColor as SiApachesupersetHex } from './icons/SiApachesuperset'; +export { default as SiApachetomcat, defaultColor as SiApachetomcatHex } from './icons/SiApachetomcat'; +export { default as SiAparat, defaultColor as SiAparatHex } from './icons/SiAparat'; +export { default as SiApifox, defaultColor as SiApifoxHex } from './icons/SiApifox'; +export { default as SiApmterminals, defaultColor as SiApmterminalsHex } from './icons/SiApmterminals'; +export { default as SiApollographql, defaultColor as SiApollographqlHex } from './icons/SiApollographql'; +export { default as SiApostrophe, defaultColor as SiApostropheHex } from './icons/SiApostrophe'; +export { default as SiAppgallery, defaultColor as SiAppgalleryHex } from './icons/SiAppgallery'; +export { default as SiAppian, defaultColor as SiAppianHex } from './icons/SiAppian'; +export { default as SiAppimage, defaultColor as SiAppimageHex } from './icons/SiAppimage'; +export { default as SiAppium, defaultColor as SiAppiumHex } from './icons/SiAppium'; +export { default as SiApple, defaultColor as SiAppleHex } from './icons/SiApple'; +export { default as SiApplearcade, defaultColor as SiApplearcadeHex } from './icons/SiApplearcade'; +export { default as SiApplemusic, defaultColor as SiApplemusicHex } from './icons/SiApplemusic'; +export { default as SiApplenews, defaultColor as SiApplenewsHex } from './icons/SiApplenews'; +export { default as SiApplepay, defaultColor as SiApplepayHex } from './icons/SiApplepay'; +export { default as SiApplepodcasts, defaultColor as SiApplepodcastsHex } from './icons/SiApplepodcasts'; +export { default as SiAppletv, defaultColor as SiAppletvHex } from './icons/SiAppletv'; +export { default as SiAppmanager, defaultColor as SiAppmanagerHex } from './icons/SiAppmanager'; +export { default as SiAppsignal, defaultColor as SiAppsignalHex } from './icons/SiAppsignal'; +export { default as SiAppsmith, defaultColor as SiAppsmithHex } from './icons/SiAppsmith'; +export { default as SiAppstore, defaultColor as SiAppstoreHex } from './icons/SiAppstore'; +export { default as SiAppveyor, defaultColor as SiAppveyorHex } from './icons/SiAppveyor'; +export { default as SiAppwrite, defaultColor as SiAppwriteHex } from './icons/SiAppwrite'; +export { default as SiAqua, defaultColor as SiAquaHex } from './icons/SiAqua'; +export { default as SiAral, defaultColor as SiAralHex } from './icons/SiAral'; +export { default as SiArangodb, defaultColor as SiArangodbHex } from './icons/SiArangodb'; +export { default as SiArc, defaultColor as SiArcHex } from './icons/SiArc'; +export { default as SiArcgis, defaultColor as SiArcgisHex } from './icons/SiArcgis'; +export { default as SiArchicad, defaultColor as SiArchicadHex } from './icons/SiArchicad'; +export { default as SiArchiveofourown, defaultColor as SiArchiveofourownHex } from './icons/SiArchiveofourown'; +export { default as SiArchlinux, defaultColor as SiArchlinuxHex } from './icons/SiArchlinux'; +export { default as SiArdour, defaultColor as SiArdourHex } from './icons/SiArdour'; +export { default as SiArduino, defaultColor as SiArduinoHex } from './icons/SiArduino'; +export { default as SiArgo, defaultColor as SiArgoHex } from './icons/SiArgo'; +export { default as SiArgos, defaultColor as SiArgosHex } from './icons/SiArgos'; +export { default as SiAriakit, defaultColor as SiAriakitHex } from './icons/SiAriakit'; +export { default as SiArkecosystem, defaultColor as SiArkecosystemHex } from './icons/SiArkecosystem'; +export { default as SiArlo, defaultColor as SiArloHex } from './icons/SiArlo'; +export { default as SiArm, defaultColor as SiArmHex } from './icons/SiArm'; +export { default as SiArmkeil, defaultColor as SiArmkeilHex } from './icons/SiArmkeil'; +export { default as SiArstechnica, defaultColor as SiArstechnicaHex } from './icons/SiArstechnica'; +export { default as SiArtifacthub, defaultColor as SiArtifacthubHex } from './icons/SiArtifacthub'; +export { default as SiArtixlinux, defaultColor as SiArtixlinuxHex } from './icons/SiArtixlinux'; +export { default as SiArtstation, defaultColor as SiArtstationHex } from './icons/SiArtstation'; +export { default as SiArxiv, defaultColor as SiArxivHex } from './icons/SiArxiv'; +export { default as SiAsahilinux, defaultColor as SiAsahilinuxHex } from './icons/SiAsahilinux'; +export { default as SiAsana, defaultColor as SiAsanaHex } from './icons/SiAsana'; +export { default as SiAsciidoctor, defaultColor as SiAsciidoctorHex } from './icons/SiAsciidoctor'; +export { default as SiAsciinema, defaultColor as SiAsciinemaHex } from './icons/SiAsciinema'; +export { default as SiAsda, defaultColor as SiAsdaHex } from './icons/SiAsda'; +export { default as SiAseprite, defaultColor as SiAsepriteHex } from './icons/SiAseprite'; +export { default as SiAssemblyscript, defaultColor as SiAssemblyscriptHex } from './icons/SiAssemblyscript'; +export { default as SiAsterisk, defaultColor as SiAsteriskHex } from './icons/SiAsterisk'; +export { default as SiAstonmartin, defaultColor as SiAstonmartinHex } from './icons/SiAstonmartin'; +export { default as SiAstra, defaultColor as SiAstraHex } from './icons/SiAstra'; +export { default as SiAstral, defaultColor as SiAstralHex } from './icons/SiAstral'; +export { default as SiAstro, defaultColor as SiAstroHex } from './icons/SiAstro'; +export { default as SiAsus, defaultColor as SiAsusHex } from './icons/SiAsus'; +export { default as SiAtandt, defaultColor as SiAtandtHex } from './icons/SiAtandt'; +export { default as SiAtari, defaultColor as SiAtariHex } from './icons/SiAtari'; +export { default as SiAtlasos, defaultColor as SiAtlasosHex } from './icons/SiAtlasos'; +export { default as SiAtlassian, defaultColor as SiAtlassianHex } from './icons/SiAtlassian'; +export { default as SiAuchan, defaultColor as SiAuchanHex } from './icons/SiAuchan'; +export { default as SiAudacity, defaultColor as SiAudacityHex } from './icons/SiAudacity'; +export { default as SiAudi, defaultColor as SiAudiHex } from './icons/SiAudi'; +export { default as SiAudible, defaultColor as SiAudibleHex } from './icons/SiAudible'; +export { default as SiAudiobookshelf, defaultColor as SiAudiobookshelfHex } from './icons/SiAudiobookshelf'; +export { default as SiAudioboom, defaultColor as SiAudioboomHex } from './icons/SiAudioboom'; +export { default as SiAudiomack, defaultColor as SiAudiomackHex } from './icons/SiAudiomack'; +export { default as SiAudiotechnica, defaultColor as SiAudiotechnicaHex } from './icons/SiAudiotechnica'; +export { default as SiAurelia, defaultColor as SiAureliaHex } from './icons/SiAurelia'; +export { default as SiAutentique, defaultColor as SiAutentiqueHex } from './icons/SiAutentique'; +export { default as SiAuth0, defaultColor as SiAuth0Hex } from './icons/SiAuth0'; +export { default as SiAuthelia, defaultColor as SiAutheliaHex } from './icons/SiAuthelia'; +export { default as SiAuthentik, defaultColor as SiAuthentikHex } from './icons/SiAuthentik'; +export { default as SiAutocad, defaultColor as SiAutocadHex } from './icons/SiAutocad'; +export { default as SiAutocannon, defaultColor as SiAutocannonHex } from './icons/SiAutocannon'; +export { default as SiAutodesk, defaultColor as SiAutodeskHex } from './icons/SiAutodesk'; +export { default as SiAutodeskmaya, defaultColor as SiAutodeskmayaHex } from './icons/SiAutodeskmaya'; +export { default as SiAutodeskrevit, defaultColor as SiAutodeskrevitHex } from './icons/SiAutodeskrevit'; +export { default as SiAutohotkey, defaultColor as SiAutohotkeyHex } from './icons/SiAutohotkey'; +export { default as SiAutoit, defaultColor as SiAutoitHex } from './icons/SiAutoit'; +export { default as SiAutomattic, defaultColor as SiAutomatticHex } from './icons/SiAutomattic'; +export { default as SiAutoprefixer, defaultColor as SiAutoprefixerHex } from './icons/SiAutoprefixer'; +export { default as SiAutozone, defaultColor as SiAutozoneHex } from './icons/SiAutozone'; +export { default as SiAvajs, defaultColor as SiAvajsHex } from './icons/SiAvajs'; +export { default as SiAvaloniaui, defaultColor as SiAvaloniauiHex } from './icons/SiAvaloniaui'; +export { default as SiAvast, defaultColor as SiAvastHex } from './icons/SiAvast'; +export { default as SiAvianca, defaultColor as SiAviancaHex } from './icons/SiAvianca'; +export { default as SiAvira, defaultColor as SiAviraHex } from './icons/SiAvira'; +export { default as SiAvm, defaultColor as SiAvmHex } from './icons/SiAvm'; +export { default as SiAwesomelists, defaultColor as SiAwesomelistsHex } from './icons/SiAwesomelists'; +export { default as SiAwesomewm, defaultColor as SiAwesomewmHex } from './icons/SiAwesomewm'; +export { default as SiAwwwards, defaultColor as SiAwwwardsHex } from './icons/SiAwwwards'; +export { default as SiAxios, defaultColor as SiAxiosHex } from './icons/SiAxios'; +export { default as SiAxisbank, defaultColor as SiAxisbankHex } from './icons/SiAxisbank'; +export { default as SiB4x, defaultColor as SiB4xHex } from './icons/SiB4x'; +export { default as SiBabel, defaultColor as SiBabelHex } from './icons/SiBabel'; +export { default as SiBabelio, defaultColor as SiBabelioHex } from './icons/SiBabelio'; +export { default as SiBabylondotjs, defaultColor as SiBabylondotjsHex } from './icons/SiBabylondotjs'; +export { default as SiBackblaze, defaultColor as SiBackblazeHex } from './icons/SiBackblaze'; +export { default as SiBackbone, defaultColor as SiBackboneHex } from './icons/SiBackbone'; +export { default as SiBackbonedotjs, defaultColor as SiBackbonedotjsHex } from './icons/SiBackbonedotjs'; +export { default as SiBackendless, defaultColor as SiBackendlessHex } from './icons/SiBackendless'; +export { default as SiBackstage, defaultColor as SiBackstageHex } from './icons/SiBackstage'; +export { default as SiBackstageCasting, defaultColor as SiBackstageCastingHex } from './icons/SiBackstageCasting'; +export { default as SiBadoo, defaultColor as SiBadooHex } from './icons/SiBadoo'; +export { default as SiBaidu, defaultColor as SiBaiduHex } from './icons/SiBaidu'; +export { default as SiBakalari, defaultColor as SiBakalariHex } from './icons/SiBakalari'; +export { default as SiBamboo, defaultColor as SiBambooHex } from './icons/SiBamboo'; +export { default as SiBambulab, defaultColor as SiBambulabHex } from './icons/SiBambulab'; +export { default as SiBandcamp, defaultColor as SiBandcampHex } from './icons/SiBandcamp'; +export { default as SiBandlab, defaultColor as SiBandlabHex } from './icons/SiBandlab'; +export { default as SiBandrautomation, defaultColor as SiBandrautomationHex } from './icons/SiBandrautomation'; +export { default as SiBandsintown, defaultColor as SiBandsintownHex } from './icons/SiBandsintown'; +export { default as SiBankofamerica, defaultColor as SiBankofamericaHex } from './icons/SiBankofamerica'; +export { default as SiBarclays, defaultColor as SiBarclaysHex } from './icons/SiBarclays'; +export { default as SiBaremetrics, defaultColor as SiBaremetricsHex } from './icons/SiBaremetrics'; +export { default as SiBarmenia, defaultColor as SiBarmeniaHex } from './icons/SiBarmenia'; +export { default as SiBasecamp, defaultColor as SiBasecampHex } from './icons/SiBasecamp'; +export { default as SiBaserow, defaultColor as SiBaserowHex } from './icons/SiBaserow'; +export { default as SiBasicattentiontoken, defaultColor as SiBasicattentiontokenHex } from './icons/SiBasicattentiontoken'; +export { default as SiBastyon, defaultColor as SiBastyonHex } from './icons/SiBastyon'; +export { default as SiBat, defaultColor as SiBatHex } from './icons/SiBat'; +export { default as SiBata, defaultColor as SiBataHex } from './icons/SiBata'; +export { default as SiBattledotnet, defaultColor as SiBattledotnetHex } from './icons/SiBattledotnet'; +export { default as SiBazel, defaultColor as SiBazelHex } from './icons/SiBazel'; +export { default as SiBeatport, defaultColor as SiBeatportHex } from './icons/SiBeatport'; +export { default as SiBeats, defaultColor as SiBeatsHex } from './icons/SiBeats'; +export { default as SiBeatsbydre, defaultColor as SiBeatsbydreHex } from './icons/SiBeatsbydre'; +export { default as SiBeatstars, defaultColor as SiBeatstarsHex } from './icons/SiBeatstars'; +export { default as SiBeekeeperstudio, defaultColor as SiBeekeeperstudioHex } from './icons/SiBeekeeperstudio'; +export { default as SiBehance, defaultColor as SiBehanceHex } from './icons/SiBehance'; +export { default as SiBeijingsubway, defaultColor as SiBeijingsubwayHex } from './icons/SiBeijingsubway'; +export { default as SiBem, defaultColor as SiBemHex } from './icons/SiBem'; +export { default as SiBentley, defaultColor as SiBentleyHex } from './icons/SiBentley'; +export { default as SiBento, defaultColor as SiBentoHex } from './icons/SiBento'; +export { default as SiBentobox, defaultColor as SiBentoboxHex } from './icons/SiBentobox'; +export { default as SiBentoml, defaultColor as SiBentomlHex } from './icons/SiBentoml'; +export { default as SiBereal, defaultColor as SiBerealHex } from './icons/SiBereal'; +export { default as SiBetfair, defaultColor as SiBetfairHex } from './icons/SiBetfair'; +export { default as SiBetterauth, defaultColor as SiBetterauthHex } from './icons/SiBetterauth'; +export { default as SiBetterdiscord, defaultColor as SiBetterdiscordHex } from './icons/SiBetterdiscord'; +export { default as SiBetterstack, defaultColor as SiBetterstackHex } from './icons/SiBetterstack'; +export { default as SiBevy, defaultColor as SiBevyHex } from './icons/SiBevy'; +export { default as SiBigbasket, defaultColor as SiBigbasketHex } from './icons/SiBigbasket'; +export { default as SiBigbluebutton, defaultColor as SiBigbluebuttonHex } from './icons/SiBigbluebutton'; +export { default as SiBigcartel, defaultColor as SiBigcartelHex } from './icons/SiBigcartel'; +export { default as SiBigcommerce, defaultColor as SiBigcommerceHex } from './icons/SiBigcommerce'; +export { default as SiBilibili, defaultColor as SiBilibiliHex } from './icons/SiBilibili'; +export { default as SiBillboard, defaultColor as SiBillboardHex } from './icons/SiBillboard'; +export { default as SiBim, defaultColor as SiBimHex } from './icons/SiBim'; +export { default as SiBinance, defaultColor as SiBinanceHex } from './icons/SiBinance'; +export { default as SiBioconductor, defaultColor as SiBioconductorHex } from './icons/SiBioconductor'; +export { default as SiBiolink, defaultColor as SiBiolinkHex } from './icons/SiBiolink'; +export { default as SiBiome, defaultColor as SiBiomeHex } from './icons/SiBiome'; +export { default as SiBisecthosting, defaultColor as SiBisecthostingHex } from './icons/SiBisecthosting'; +export { default as SiBit, defaultColor as SiBitHex } from './icons/SiBit'; +export { default as SiBitbucket, defaultColor as SiBitbucketHex } from './icons/SiBitbucket'; +export { default as SiBitcoin, defaultColor as SiBitcoinHex } from './icons/SiBitcoin'; +export { default as SiBitcoincash, defaultColor as SiBitcoincashHex } from './icons/SiBitcoincash'; +export { default as SiBitcoinsv, defaultColor as SiBitcoinsvHex } from './icons/SiBitcoinsv'; +export { default as SiBitcomet, defaultColor as SiBitcometHex } from './icons/SiBitcomet'; +export { default as SiBitdefender, defaultColor as SiBitdefenderHex } from './icons/SiBitdefender'; +export { default as SiBitly, defaultColor as SiBitlyHex } from './icons/SiBitly'; +export { default as SiBitrise, defaultColor as SiBitriseHex } from './icons/SiBitrise'; +export { default as SiBitsy, defaultColor as SiBitsyHex } from './icons/SiBitsy'; +export { default as SiBittorrent, defaultColor as SiBittorrentHex } from './icons/SiBittorrent'; +export { default as SiBitwarden, defaultColor as SiBitwardenHex } from './icons/SiBitwarden'; +export { default as SiBitwig, defaultColor as SiBitwigHex } from './icons/SiBitwig'; +export { default as SiBlack, defaultColor as SiBlackHex } from './icons/SiBlack'; +export { default as SiBlackberry, defaultColor as SiBlackberryHex } from './icons/SiBlackberry'; +export { default as SiBlackmagicdesign, defaultColor as SiBlackmagicdesignHex } from './icons/SiBlackmagicdesign'; +export { default as SiBlazemeter, defaultColor as SiBlazemeterHex } from './icons/SiBlazemeter'; +export { default as SiBlazor, defaultColor as SiBlazorHex } from './icons/SiBlazor'; +export { default as SiBlender, defaultColor as SiBlenderHex } from './icons/SiBlender'; +export { default as SiBlibli, defaultColor as SiBlibliHex } from './icons/SiBlibli'; +export { default as SiBlockbench, defaultColor as SiBlockbenchHex } from './icons/SiBlockbench'; +export { default as SiBlockchaindotcom, defaultColor as SiBlockchaindotcomHex } from './icons/SiBlockchaindotcom'; +export { default as SiBlogger, defaultColor as SiBloggerHex } from './icons/SiBlogger'; +export { default as SiBloglovin, defaultColor as SiBloglovinHex } from './icons/SiBloglovin'; +export { default as SiBlueprint, defaultColor as SiBlueprintHex } from './icons/SiBlueprint'; +export { default as SiBluesky, defaultColor as SiBlueskyHex } from './icons/SiBluesky'; +export { default as SiBluesound, defaultColor as SiBluesoundHex } from './icons/SiBluesound'; +export { default as SiBluetooth, defaultColor as SiBluetoothHex } from './icons/SiBluetooth'; +export { default as SiBmcsoftware, defaultColor as SiBmcsoftwareHex } from './icons/SiBmcsoftware'; +export { default as SiBmw, defaultColor as SiBmwHex } from './icons/SiBmw'; +export { default as SiBnbchain, defaultColor as SiBnbchainHex } from './icons/SiBnbchain'; +export { default as SiBoardgamegeek, defaultColor as SiBoardgamegeekHex } from './icons/SiBoardgamegeek'; +export { default as SiBoat, defaultColor as SiBoatHex } from './icons/SiBoat'; +export { default as SiBoehringeringelheim, defaultColor as SiBoehringeringelheimHex } from './icons/SiBoehringeringelheim'; +export { default as SiBoeing, defaultColor as SiBoeingHex } from './icons/SiBoeing'; +export { default as SiBohemiainteractive, defaultColor as SiBohemiainteractiveHex } from './icons/SiBohemiainteractive'; +export { default as SiBombardier, defaultColor as SiBombardierHex } from './icons/SiBombardier'; +export { default as SiBookalope, defaultColor as SiBookalopeHex } from './icons/SiBookalope'; +export { default as SiBookbub, defaultColor as SiBookbubHex } from './icons/SiBookbub'; +export { default as SiBookingdotcom, defaultColor as SiBookingdotcomHex } from './icons/SiBookingdotcom'; +export { default as SiBookmeter, defaultColor as SiBookmeterHex } from './icons/SiBookmeter'; +export { default as SiBookmyshow, defaultColor as SiBookmyshowHex } from './icons/SiBookmyshow'; +export { default as SiBookstack, defaultColor as SiBookstackHex } from './icons/SiBookstack'; +export { default as SiBoost, defaultColor as SiBoostHex } from './icons/SiBoost'; +export { default as SiBoosty, defaultColor as SiBoostyHex } from './icons/SiBoosty'; +export { default as SiBoots, defaultColor as SiBootsHex } from './icons/SiBoots'; +export { default as SiBootstrap, defaultColor as SiBootstrapHex } from './icons/SiBootstrap'; +export { default as SiBorgbackup, defaultColor as SiBorgbackupHex } from './icons/SiBorgbackup'; +export { default as SiBosch, defaultColor as SiBoschHex } from './icons/SiBosch'; +export { default as SiBose, defaultColor as SiBoseHex } from './icons/SiBose'; +export { default as SiBotblecms, defaultColor as SiBotblecmsHex } from './icons/SiBotblecms'; +export { default as SiBoulanger, defaultColor as SiBoulangerHex } from './icons/SiBoulanger'; +export { default as SiBower, defaultColor as SiBowerHex } from './icons/SiBower'; +export { default as SiBox, defaultColor as SiBoxHex } from './icons/SiBox'; +export { default as SiBoxysvg, defaultColor as SiBoxysvgHex } from './icons/SiBoxysvg'; +export { default as SiBraintree, defaultColor as SiBraintreeHex } from './icons/SiBraintree'; +export { default as SiBraintrust, defaultColor as SiBraintrustHex } from './icons/SiBraintrust'; +export { default as SiBrandfetch, defaultColor as SiBrandfetchHex } from './icons/SiBrandfetch'; +export { default as SiBrandfolder, defaultColor as SiBrandfolderHex } from './icons/SiBrandfolder'; +export { default as SiBrave, defaultColor as SiBraveHex } from './icons/SiBrave'; +export { default as SiBreaker, defaultColor as SiBreakerHex } from './icons/SiBreaker'; +export { default as SiBrenntag, defaultColor as SiBrenntagHex } from './icons/SiBrenntag'; +export { default as SiBrevo, defaultColor as SiBrevoHex } from './icons/SiBrevo'; +export { default as SiBrex, defaultColor as SiBrexHex } from './icons/SiBrex'; +export { default as SiBricks, defaultColor as SiBricksHex } from './icons/SiBricks'; +export { default as SiBritishairways, defaultColor as SiBritishairwaysHex } from './icons/SiBritishairways'; +export { default as SiBroadcom, defaultColor as SiBroadcomHex } from './icons/SiBroadcom'; +export { default as SiBruno, defaultColor as SiBrunoHex } from './icons/SiBruno'; +export { default as SiBsd, defaultColor as SiBsdHex } from './icons/SiBsd'; +export { default as SiBspwm, defaultColor as SiBspwmHex } from './icons/SiBspwm'; +export { default as SiBt, defaultColor as SiBtHex } from './icons/SiBt'; +export { default as SiBuddy, defaultColor as SiBuddyHex } from './icons/SiBuddy'; +export { default as SiBudibase, defaultColor as SiBudibaseHex } from './icons/SiBudibase'; +export { default as SiBuefy, defaultColor as SiBuefyHex } from './icons/SiBuefy'; +export { default as SiBuffer, defaultColor as SiBufferHex } from './icons/SiBuffer'; +export { default as SiBugatti, defaultColor as SiBugattiHex } from './icons/SiBugatti'; +export { default as SiBugcrowd, defaultColor as SiBugcrowdHex } from './icons/SiBugcrowd'; +export { default as SiBuhl, defaultColor as SiBuhlHex } from './icons/SiBuhl'; +export { default as SiBuildkite, defaultColor as SiBuildkiteHex } from './icons/SiBuildkite'; +export { default as SiBuiltbybit, defaultColor as SiBuiltbybitHex } from './icons/SiBuiltbybit'; +export { default as SiBukalapak, defaultColor as SiBukalapakHex } from './icons/SiBukalapak'; +export { default as SiBulma, defaultColor as SiBulmaHex } from './icons/SiBulma'; +export { default as SiBun, defaultColor as SiBunHex } from './icons/SiBun'; +export { default as SiBungie, defaultColor as SiBungieHex } from './icons/SiBungie'; +export { default as SiBunnydotnet, defaultColor as SiBunnydotnetHex } from './icons/SiBunnydotnet'; +export { default as SiBunq, defaultColor as SiBunqHex } from './icons/SiBunq'; +export { default as SiBurgerking, defaultColor as SiBurgerkingHex } from './icons/SiBurgerking'; +export { default as SiBurpsuite, defaultColor as SiBurpsuiteHex } from './icons/SiBurpsuite'; +export { default as SiBurton, defaultColor as SiBurtonHex } from './icons/SiBurton'; +export { default as SiBuymeacoffee, defaultColor as SiBuymeacoffeeHex } from './icons/SiBuymeacoffee'; +export { default as SiBuysellads, defaultColor as SiBuyselladsHex } from './icons/SiBuysellads'; +export { default as SiBuzzfeed, defaultColor as SiBuzzfeedHex } from './icons/SiBuzzfeed'; +export { default as SiBvg, defaultColor as SiBvgHex } from './icons/SiBvg'; +export { default as SiByjus, defaultColor as SiByjusHex } from './icons/SiByjus'; +export { default as SiBytedance, defaultColor as SiBytedanceHex } from './icons/SiBytedance'; +export { default as SiC, defaultColor as SiCHex } from './icons/SiC'; +export { default as SiCachet, defaultColor as SiCachetHex } from './icons/SiCachet'; +export { default as SiCaddy, defaultColor as SiCaddyHex } from './icons/SiCaddy'; +export { default as SiCadillac, defaultColor as SiCadillacHex } from './icons/SiCadillac'; +export { default as SiCafepress, defaultColor as SiCafepressHex } from './icons/SiCafepress'; +export { default as SiCairographics, defaultColor as SiCairographicsHex } from './icons/SiCairographics'; +export { default as SiCairometro, defaultColor as SiCairometroHex } from './icons/SiCairometro'; +export { default as SiCaixabank, defaultColor as SiCaixabankHex } from './icons/SiCaixabank'; +export { default as SiCakephp, defaultColor as SiCakephpHex } from './icons/SiCakephp'; +export { default as SiCaldotcom, defaultColor as SiCaldotcomHex } from './icons/SiCaldotcom'; +export { default as SiCalendly, defaultColor as SiCalendlyHex } from './icons/SiCalendly'; +export { default as SiCalibreweb, defaultColor as SiCalibrewebHex } from './icons/SiCalibreweb'; +export { default as SiCampaignmonitor, defaultColor as SiCampaignmonitorHex } from './icons/SiCampaignmonitor'; +export { default as SiCamunda, defaultColor as SiCamundaHex } from './icons/SiCamunda'; +export { default as SiCanonical, defaultColor as SiCanonicalHex } from './icons/SiCanonical'; +export { default as SiCanvas, defaultColor as SiCanvasHex } from './icons/SiCanvas'; +export { default as SiCapacitor, defaultColor as SiCapacitorHex } from './icons/SiCapacitor'; +export { default as SiCaprover, defaultColor as SiCaproverHex } from './icons/SiCaprover'; +export { default as SiCardano, defaultColor as SiCardanoHex } from './icons/SiCardano'; +export { default as SiCardmarket, defaultColor as SiCardmarketHex } from './icons/SiCardmarket'; +export { default as SiCarlsberggroup, defaultColor as SiCarlsberggroupHex } from './icons/SiCarlsberggroup'; +export { default as SiCarrd, defaultColor as SiCarrdHex } from './icons/SiCarrd'; +export { default as SiCarrefour, defaultColor as SiCarrefourHex } from './icons/SiCarrefour'; +export { default as SiCarthrottle, defaultColor as SiCarthrottleHex } from './icons/SiCarthrottle'; +export { default as SiCarto, defaultColor as SiCartoHex } from './icons/SiCarto'; +export { default as SiCashapp, defaultColor as SiCashappHex } from './icons/SiCashapp'; +export { default as SiCastbox, defaultColor as SiCastboxHex } from './icons/SiCastbox'; +export { default as SiCastorama, defaultColor as SiCastoramaHex } from './icons/SiCastorama'; +export { default as SiCastro, defaultColor as SiCastroHex } from './icons/SiCastro'; +export { default as SiCaterpillar, defaultColor as SiCaterpillarHex } from './icons/SiCaterpillar'; +export { default as SiCbc, defaultColor as SiCbcHex } from './icons/SiCbc'; +export { default as SiCbs, defaultColor as SiCbsHex } from './icons/SiCbs'; +export { default as SiCcc, defaultColor as SiCccHex } from './icons/SiCcc'; +export { default as SiCcleaner, defaultColor as SiCcleanerHex } from './icons/SiCcleaner'; +export { default as SiCdprojekt, defaultColor as SiCdprojektHex } from './icons/SiCdprojekt'; +export { default as SiCe, defaultColor as SiCeHex } from './icons/SiCe'; +export { default as SiCelery, defaultColor as SiCeleryHex } from './icons/SiCelery'; +export { default as SiCelestron, defaultColor as SiCelestronHex } from './icons/SiCelestron'; +export { default as SiCentos, defaultColor as SiCentosHex } from './icons/SiCentos'; +export { default as SiCeph, defaultColor as SiCephHex } from './icons/SiCeph'; +export { default as SiCesium, defaultColor as SiCesiumHex } from './icons/SiCesium'; +export { default as SiChai, defaultColor as SiChaiHex } from './icons/SiChai'; +export { default as SiChainguard, defaultColor as SiChainguardHex } from './icons/SiChainguard'; +export { default as SiChainlink, defaultColor as SiChainlinkHex } from './icons/SiChainlink'; +export { default as SiChakraui, defaultColor as SiChakrauiHex } from './icons/SiChakraui'; +export { default as SiChangedetection, defaultColor as SiChangedetectionHex } from './icons/SiChangedetection'; +export { default as SiChannel4, defaultColor as SiChannel4Hex } from './icons/SiChannel4'; +export { default as SiCharles, defaultColor as SiCharlesHex } from './icons/SiCharles'; +export { default as SiChartdotjs, defaultColor as SiChartdotjsHex } from './icons/SiChartdotjs'; +export { default as SiChartmogul, defaultColor as SiChartmogulHex } from './icons/SiChartmogul'; +export { default as SiChase, defaultColor as SiChaseHex } from './icons/SiChase'; +export { default as SiChatbot, defaultColor as SiChatbotHex } from './icons/SiChatbot'; +export { default as SiChatwoot, defaultColor as SiChatwootHex } from './icons/SiChatwoot'; +export { default as SiCheckio, defaultColor as SiCheckioHex } from './icons/SiCheckio'; +export { default as SiCheckmarx, defaultColor as SiCheckmarxHex } from './icons/SiCheckmarx'; +export { default as SiCheckmk, defaultColor as SiCheckmkHex } from './icons/SiCheckmk'; +export { default as SiChedraui, defaultColor as SiChedrauiHex } from './icons/SiChedraui'; +export { default as SiCheerio, defaultColor as SiCheerioHex } from './icons/SiCheerio'; +export { default as SiChef, defaultColor as SiChefHex } from './icons/SiChef'; +export { default as SiChemex, defaultColor as SiChemexHex } from './icons/SiChemex'; +export { default as SiChessdotcom, defaultColor as SiChessdotcomHex } from './icons/SiChessdotcom'; +export { default as SiChevrolet, defaultColor as SiChevroletHex } from './icons/SiChevrolet'; +export { default as SiChianetwork, defaultColor as SiChianetworkHex } from './icons/SiChianetwork'; +export { default as SiChinaeasternairlines, defaultColor as SiChinaeasternairlinesHex } from './icons/SiChinaeasternairlines'; +export { default as SiChinarailway, defaultColor as SiChinarailwayHex } from './icons/SiChinarailway'; +export { default as SiChinasouthernairlines, defaultColor as SiChinasouthernairlinesHex } from './icons/SiChinasouthernairlines'; +export { default as SiChocolatey, defaultColor as SiChocolateyHex } from './icons/SiChocolatey'; +export { default as SiChromatic, defaultColor as SiChromaticHex } from './icons/SiChromatic'; +export { default as SiChromewebstore, defaultColor as SiChromewebstoreHex } from './icons/SiChromewebstore'; +export { default as SiChrysler, defaultColor as SiChryslerHex } from './icons/SiChrysler'; +export { default as SiChupachups, defaultColor as SiChupachupsHex } from './icons/SiChupachups'; +export { default as SiCilium, defaultColor as SiCiliumHex } from './icons/SiCilium'; +export { default as SiCinema4d, defaultColor as SiCinema4dHex } from './icons/SiCinema4d'; +export { default as SiCinnamon, defaultColor as SiCinnamonHex } from './icons/SiCinnamon'; +export { default as SiCircle, defaultColor as SiCircleHex } from './icons/SiCircle'; +export { default as SiCircleci, defaultColor as SiCircleciHex } from './icons/SiCircleci'; +export { default as SiCircuitverse, defaultColor as SiCircuitverseHex } from './icons/SiCircuitverse'; +export { default as SiCirrusci, defaultColor as SiCirrusciHex } from './icons/SiCirrusci'; +export { default as SiCisco, defaultColor as SiCiscoHex } from './icons/SiCisco'; +export { default as SiCitrix, defaultColor as SiCitrixHex } from './icons/SiCitrix'; +export { default as SiCitroen, defaultColor as SiCitroenHex } from './icons/SiCitroen'; +export { default as SiCivicrm, defaultColor as SiCivicrmHex } from './icons/SiCivicrm'; +export { default as SiCivo, defaultColor as SiCivoHex } from './icons/SiCivo'; +export { default as SiClarifai, defaultColor as SiClarifaiHex } from './icons/SiClarifai'; +export { default as SiClaris, defaultColor as SiClarisHex } from './icons/SiClaris'; +export { default as SiClarivate, defaultColor as SiClarivateHex } from './icons/SiClarivate'; +export { default as SiClaude, defaultColor as SiClaudeHex } from './icons/SiClaude'; +export { default as SiClerk, defaultColor as SiClerkHex } from './icons/SiClerk'; +export { default as SiClevercloud, defaultColor as SiClevercloudHex } from './icons/SiClevercloud'; +export { default as SiClickhouse, defaultColor as SiClickhouseHex } from './icons/SiClickhouse'; +export { default as SiClickup, defaultColor as SiClickupHex } from './icons/SiClickup'; +export { default as SiClion, defaultColor as SiClionHex } from './icons/SiClion'; +export { default as SiClockify, defaultColor as SiClockifyHex } from './icons/SiClockify'; +export { default as SiClojure, defaultColor as SiClojureHex } from './icons/SiClojure'; +export { default as SiCloud66, defaultColor as SiCloud66Hex } from './icons/SiCloud66'; +export { default as SiCloudbees, defaultColor as SiCloudbeesHex } from './icons/SiCloudbees'; +export { default as SiCloudcannon, defaultColor as SiCloudcannonHex } from './icons/SiCloudcannon'; +export { default as SiCloudera, defaultColor as SiClouderaHex } from './icons/SiCloudera'; +export { default as SiCloudflare, defaultColor as SiCloudflareHex } from './icons/SiCloudflare'; +export { default as SiCloudflarepages, defaultColor as SiCloudflarepagesHex } from './icons/SiCloudflarepages'; +export { default as SiCloudflareworkers, defaultColor as SiCloudflareworkersHex } from './icons/SiCloudflareworkers'; +export { default as SiCloudfoundry, defaultColor as SiCloudfoundryHex } from './icons/SiCloudfoundry'; +export { default as SiCloudinary, defaultColor as SiCloudinaryHex } from './icons/SiCloudinary'; +export { default as SiCloudnativebuild, defaultColor as SiCloudnativebuildHex } from './icons/SiCloudnativebuild'; +export { default as SiCloudron, defaultColor as SiCloudronHex } from './icons/SiCloudron'; +export { default as SiCloudsmith, defaultColor as SiCloudsmithHex } from './icons/SiCloudsmith'; +export { default as SiCloudways, defaultColor as SiCloudwaysHex } from './icons/SiCloudways'; +export { default as SiClubforce, defaultColor as SiClubforceHex } from './icons/SiClubforce'; +export { default as SiClubhouse, defaultColor as SiClubhouseHex } from './icons/SiClubhouse'; +export { default as SiClyp, defaultColor as SiClypHex } from './icons/SiClyp'; +export { default as SiCmake, defaultColor as SiCmakeHex } from './icons/SiCmake'; +export { default as SiCncf, defaultColor as SiCncfHex } from './icons/SiCncf'; +export { default as SiCnes, defaultColor as SiCnesHex } from './icons/SiCnes'; +export { default as SiCnet, defaultColor as SiCnetHex } from './icons/SiCnet'; +export { default as SiCnn, defaultColor as SiCnnHex } from './icons/SiCnn'; +export { default as SiCobalt, defaultColor as SiCobaltHex } from './icons/SiCobalt'; +export { default as SiCocacola, defaultColor as SiCocacolaHex } from './icons/SiCocacola'; +export { default as SiCockpit, defaultColor as SiCockpitHex } from './icons/SiCockpit'; +export { default as SiCockroachlabs, defaultColor as SiCockroachlabsHex } from './icons/SiCockroachlabs'; +export { default as SiCocoapods, defaultColor as SiCocoapodsHex } from './icons/SiCocoapods'; +export { default as SiCocos, defaultColor as SiCocosHex } from './icons/SiCocos'; +export { default as SiCoda, defaultColor as SiCodaHex } from './icons/SiCoda'; +export { default as SiCodacy, defaultColor as SiCodacyHex } from './icons/SiCodacy'; +export { default as SiCodeberg, defaultColor as SiCodebergHex } from './icons/SiCodeberg'; +export { default as SiCodeblocks, defaultColor as SiCodeblocksHex } from './icons/SiCodeblocks'; +export { default as SiCodecademy, defaultColor as SiCodecademyHex } from './icons/SiCodecademy'; +export { default as SiCodeceptjs, defaultColor as SiCodeceptjsHex } from './icons/SiCodeceptjs'; +export { default as SiCodechef, defaultColor as SiCodechefHex } from './icons/SiCodechef'; +export { default as SiCodeclimate, defaultColor as SiCodeclimateHex } from './icons/SiCodeclimate'; +export { default as SiCodecov, defaultColor as SiCodecovHex } from './icons/SiCodecov'; +export { default as SiCodecrafters, defaultColor as SiCodecraftersHex } from './icons/SiCodecrafters'; +export { default as SiCodefactor, defaultColor as SiCodefactorHex } from './icons/SiCodefactor'; +export { default as SiCodeforces, defaultColor as SiCodeforcesHex } from './icons/SiCodeforces'; +export { default as SiCodefresh, defaultColor as SiCodefreshHex } from './icons/SiCodefresh'; +export { default as SiCodeigniter, defaultColor as SiCodeigniterHex } from './icons/SiCodeigniter'; +export { default as SiCodemagic, defaultColor as SiCodemagicHex } from './icons/SiCodemagic'; +export { default as SiCodementor, defaultColor as SiCodementorHex } from './icons/SiCodementor'; +export { default as SiCodemirror, defaultColor as SiCodemirrorHex } from './icons/SiCodemirror'; +export { default as SiCodenewbie, defaultColor as SiCodenewbieHex } from './icons/SiCodenewbie'; +export { default as SiCodeproject, defaultColor as SiCodeprojectHex } from './icons/SiCodeproject'; +export { default as SiCoder, defaultColor as SiCoderHex } from './icons/SiCoder'; +export { default as SiCoderabbit, defaultColor as SiCoderabbitHex } from './icons/SiCoderabbit'; +export { default as SiCodersrank, defaultColor as SiCodersrankHex } from './icons/SiCodersrank'; +export { default as SiCoderwall, defaultColor as SiCoderwallHex } from './icons/SiCoderwall'; +export { default as SiCodesandbox, defaultColor as SiCodesandboxHex } from './icons/SiCodesandbox'; +export { default as SiCodeship, defaultColor as SiCodeshipHex } from './icons/SiCodeship'; +export { default as SiCodesignal, defaultColor as SiCodesignalHex } from './icons/SiCodesignal'; +export { default as SiCodestream, defaultColor as SiCodestreamHex } from './icons/SiCodestream'; +export { default as SiCodewars, defaultColor as SiCodewarsHex } from './icons/SiCodewars'; +export { default as SiCodingame, defaultColor as SiCodingameHex } from './icons/SiCodingame'; +export { default as SiCodingninjas, defaultColor as SiCodingninjasHex } from './icons/SiCodingninjas'; +export { default as SiCodio, defaultColor as SiCodioHex } from './icons/SiCodio'; +export { default as SiCoffeescript, defaultColor as SiCoffeescriptHex } from './icons/SiCoffeescript'; +export { default as SiCoggle, defaultColor as SiCoggleHex } from './icons/SiCoggle'; +export { default as SiCoinbase, defaultColor as SiCoinbaseHex } from './icons/SiCoinbase'; +export { default as SiCoinmarketcap, defaultColor as SiCoinmarketcapHex } from './icons/SiCoinmarketcap'; +export { default as SiCollaboraonline, defaultColor as SiCollaboraonlineHex } from './icons/SiCollaboraonline'; +export { default as SiComicfury, defaultColor as SiComicfuryHex } from './icons/SiComicfury'; +export { default as SiComma, defaultColor as SiCommaHex } from './icons/SiComma'; +export { default as SiCommerzbank, defaultColor as SiCommerzbankHex } from './icons/SiCommerzbank'; +export { default as SiCommitlint, defaultColor as SiCommitlintHex } from './icons/SiCommitlint'; +export { default as SiCommodore, defaultColor as SiCommodoreHex } from './icons/SiCommodore'; +export { default as SiCommonlisp, defaultColor as SiCommonlispHex } from './icons/SiCommonlisp'; +export { default as SiCommonworkflowlanguage, defaultColor as SiCommonworkflowlanguageHex } from './icons/SiCommonworkflowlanguage'; +export { default as SiCompilerexplorer, defaultColor as SiCompilerexplorerHex } from './icons/SiCompilerexplorer'; +export { default as SiComposer, defaultColor as SiComposerHex } from './icons/SiComposer'; +export { default as SiComptia, defaultColor as SiComptiaHex } from './icons/SiComptia'; +export { default as SiComsol, defaultColor as SiComsolHex } from './icons/SiComsol'; +export { default as SiConan, defaultColor as SiConanHex } from './icons/SiConan'; +export { default as SiConcourse, defaultColor as SiConcourseHex } from './icons/SiConcourse'; +export { default as SiCondaforge, defaultColor as SiCondaforgeHex } from './icons/SiCondaforge'; +export { default as SiConekta, defaultColor as SiConektaHex } from './icons/SiConekta'; +export { default as SiConfluence, defaultColor as SiConfluenceHex } from './icons/SiConfluence'; +export { default as SiConstruct3, defaultColor as SiConstruct3Hex } from './icons/SiConstruct3'; +export { default as SiConsul, defaultColor as SiConsulHex } from './icons/SiConsul'; +export { default as SiContabo, defaultColor as SiContaboHex } from './icons/SiContabo'; +export { default as SiContactlesspayment, defaultColor as SiContactlesspaymentHex } from './icons/SiContactlesspayment'; +export { default as SiContainerd, defaultColor as SiContainerdHex } from './icons/SiContainerd'; +export { default as SiContao, defaultColor as SiContaoHex } from './icons/SiContao'; +export { default as SiContentful, defaultColor as SiContentfulHex } from './icons/SiContentful'; +export { default as SiContentstack, defaultColor as SiContentstackHex } from './icons/SiContentstack'; +export { default as SiContinente, defaultColor as SiContinenteHex } from './icons/SiContinente'; +export { default as SiContributorcovenant, defaultColor as SiContributorcovenantHex } from './icons/SiContributorcovenant'; +export { default as SiConventionalcommits, defaultColor as SiConventionalcommitsHex } from './icons/SiConventionalcommits'; +export { default as SiConvertio, defaultColor as SiConvertioHex } from './icons/SiConvertio'; +export { default as SiConvex, defaultColor as SiConvexHex } from './icons/SiConvex'; +export { default as SiCookiecutter, defaultColor as SiCookiecutterHex } from './icons/SiCookiecutter'; +export { default as SiCoolermaster, defaultColor as SiCoolermasterHex } from './icons/SiCoolermaster'; +export { default as SiCoolify, defaultColor as SiCoolifyHex } from './icons/SiCoolify'; +export { default as SiCoop, defaultColor as SiCoopHex } from './icons/SiCoop'; +export { default as SiCopaairlines, defaultColor as SiCopaairlinesHex } from './icons/SiCopaairlines'; +export { default as SiCoppel, defaultColor as SiCoppelHex } from './icons/SiCoppel'; +export { default as SiCora, defaultColor as SiCoraHex } from './icons/SiCora'; +export { default as SiCoreboot, defaultColor as SiCorebootHex } from './icons/SiCoreboot'; +export { default as SiCoreldraw, defaultColor as SiCoreldrawHex } from './icons/SiCoreldraw'; +export { default as SiCoronaengine, defaultColor as SiCoronaengineHex } from './icons/SiCoronaengine'; +export { default as SiCoronarenderer, defaultColor as SiCoronarendererHex } from './icons/SiCoronarenderer'; +export { default as SiCorsair, defaultColor as SiCorsairHex } from './icons/SiCorsair'; +export { default as SiCouchbase, defaultColor as SiCouchbaseHex } from './icons/SiCouchbase'; +export { default as SiCounterstrike, defaultColor as SiCounterstrikeHex } from './icons/SiCounterstrike'; +export { default as SiCountingworkspro, defaultColor as SiCountingworksproHex } from './icons/SiCountingworkspro'; +export { default as SiCoursera, defaultColor as SiCourseraHex } from './icons/SiCoursera'; +export { default as SiCoveralls, defaultColor as SiCoverallsHex } from './icons/SiCoveralls'; +export { default as SiCoze, defaultColor as SiCozeHex } from './icons/SiCoze'; +export { default as SiCpanel, defaultColor as SiCpanelHex } from './icons/SiCpanel'; +export { default as SiCplusplus, defaultColor as SiCplusplusHex } from './icons/SiCplusplus'; +export { default as SiCplusplusbuilder, defaultColor as SiCplusplusbuilderHex } from './icons/SiCplusplusbuilder'; +export { default as SiCraftcms, defaultColor as SiCraftcmsHex } from './icons/SiCraftcms'; +export { default as SiCraftsman, defaultColor as SiCraftsmanHex } from './icons/SiCraftsman'; +export { default as SiCratedb, defaultColor as SiCratedbHex } from './icons/SiCratedb'; +export { default as SiCrayon, defaultColor as SiCrayonHex } from './icons/SiCrayon'; +export { default as SiCreality, defaultColor as SiCrealityHex } from './icons/SiCreality'; +export { default as SiCreatereactapp, defaultColor as SiCreatereactappHex } from './icons/SiCreatereactapp'; +export { default as SiCreativecommons, defaultColor as SiCreativecommonsHex } from './icons/SiCreativecommons'; +export { default as SiCreativetechnology, defaultColor as SiCreativetechnologyHex } from './icons/SiCreativetechnology'; +export { default as SiCredly, defaultColor as SiCredlyHex } from './icons/SiCredly'; +export { default as SiCrehana, defaultColor as SiCrehanaHex } from './icons/SiCrehana'; +export { default as SiCrewai, defaultColor as SiCrewaiHex } from './icons/SiCrewai'; +export { default as SiCrewunited, defaultColor as SiCrewunitedHex } from './icons/SiCrewunited'; +export { default as SiCriticalrole, defaultColor as SiCriticalroleHex } from './icons/SiCriticalrole'; +export { default as SiCrowdin, defaultColor as SiCrowdinHex } from './icons/SiCrowdin'; +export { default as SiCrowdsource, defaultColor as SiCrowdsourceHex } from './icons/SiCrowdsource'; +export { default as SiCrunchbase, defaultColor as SiCrunchbaseHex } from './icons/SiCrunchbase'; +export { default as SiCrunchyroll, defaultColor as SiCrunchyrollHex } from './icons/SiCrunchyroll'; +export { default as SiCryengine, defaultColor as SiCryengineHex } from './icons/SiCryengine'; +export { default as SiCryptomator, defaultColor as SiCryptomatorHex } from './icons/SiCryptomator'; +export { default as SiCryptpad, defaultColor as SiCryptpadHex } from './icons/SiCryptpad'; +export { default as SiCrystal, defaultColor as SiCrystalHex } from './icons/SiCrystal'; +export { default as SiCsdn, defaultColor as SiCsdnHex } from './icons/SiCsdn'; +export { default as SiCss, defaultColor as SiCssHex } from './icons/SiCss'; +export { default as SiCssdesignawards, defaultColor as SiCssdesignawardsHex } from './icons/SiCssdesignawards'; +export { default as SiCssmodules, defaultColor as SiCssmodulesHex } from './icons/SiCssmodules'; +export { default as SiCsswizardry, defaultColor as SiCsswizardryHex } from './icons/SiCsswizardry'; +export { default as SiCts, defaultColor as SiCtsHex } from './icons/SiCts'; +export { default as SiCucumber, defaultColor as SiCucumberHex } from './icons/SiCucumber'; +export { default as SiCultura, defaultColor as SiCulturaHex } from './icons/SiCultura'; +export { default as SiCurl, defaultColor as SiCurlHex } from './icons/SiCurl'; +export { default as SiCurseforge, defaultColor as SiCurseforgeHex } from './icons/SiCurseforge'; +export { default as SiCursor, defaultColor as SiCursorHex } from './icons/SiCursor'; +export { default as SiCustomink, defaultColor as SiCustominkHex } from './icons/SiCustomink'; +export { default as SiCyberdefenders, defaultColor as SiCyberdefendersHex } from './icons/SiCyberdefenders'; +export { default as SiCycling74, defaultColor as SiCycling74Hex } from './icons/SiCycling74'; +export { default as SiCypress, defaultColor as SiCypressHex } from './icons/SiCypress'; +export { default as SiCytoscapedotjs, defaultColor as SiCytoscapedotjsHex } from './icons/SiCytoscapedotjs'; +export { default as SiD, defaultColor as SiDHex } from './icons/SiD'; +export { default as SiD3, defaultColor as SiD3Hex } from './icons/SiD3'; +export { default as SiDacia, defaultColor as SiDaciaHex } from './icons/SiDacia'; +export { default as SiDaf, defaultColor as SiDafHex } from './icons/SiDaf'; +export { default as SiDailydotdev, defaultColor as SiDailydotdevHex } from './icons/SiDailydotdev'; +export { default as SiDailymotion, defaultColor as SiDailymotionHex } from './icons/SiDailymotion'; +export { default as SiDaisyui, defaultColor as SiDaisyuiHex } from './icons/SiDaisyui'; +export { default as SiDapr, defaultColor as SiDaprHex } from './icons/SiDapr'; +export { default as SiDarkreader, defaultColor as SiDarkreaderHex } from './icons/SiDarkreader'; +export { default as SiDart, defaultColor as SiDartHex } from './icons/SiDart'; +export { default as SiDarty, defaultColor as SiDartyHex } from './icons/SiDarty'; +export { default as SiDaserste, defaultColor as SiDasersteHex } from './icons/SiDaserste'; +export { default as SiDash, defaultColor as SiDashHex } from './icons/SiDash'; +export { default as SiDash0, defaultColor as SiDash0Hex } from './icons/SiDash0'; +export { default as SiDashlane, defaultColor as SiDashlaneHex } from './icons/SiDashlane'; +export { default as SiDask, defaultColor as SiDaskHex } from './icons/SiDask'; +export { default as SiDassaultsystemes, defaultColor as SiDassaultsystemesHex } from './icons/SiDassaultsystemes'; +export { default as SiDatabricks, defaultColor as SiDatabricksHex } from './icons/SiDatabricks'; +export { default as SiDatacamp, defaultColor as SiDatacampHex } from './icons/SiDatacamp'; +export { default as SiDatadog, defaultColor as SiDatadogHex } from './icons/SiDatadog'; +export { default as SiDatadotai, defaultColor as SiDatadotaiHex } from './icons/SiDatadotai'; +export { default as SiDatagrip, defaultColor as SiDatagripHex } from './icons/SiDatagrip'; +export { default as SiDataiku, defaultColor as SiDataikuHex } from './icons/SiDataiku'; +export { default as SiDatastax, defaultColor as SiDatastaxHex } from './icons/SiDatastax'; +export { default as SiDatefns, defaultColor as SiDatefnsHex } from './icons/SiDatefns'; +export { default as SiDatev, defaultColor as SiDatevHex } from './icons/SiDatev'; +export { default as SiDatocms, defaultColor as SiDatocmsHex } from './icons/SiDatocms'; +export { default as SiDatto, defaultColor as SiDattoHex } from './icons/SiDatto'; +export { default as SiDavinciresolve, defaultColor as SiDavinciresolveHex } from './icons/SiDavinciresolve'; +export { default as SiDazhongdianping, defaultColor as SiDazhongdianpingHex } from './icons/SiDazhongdianping'; +export { default as SiDazn, defaultColor as SiDaznHex } from './icons/SiDazn'; +export { default as SiDbeaver, defaultColor as SiDbeaverHex } from './icons/SiDbeaver'; +export { default as SiDblp, defaultColor as SiDblpHex } from './icons/SiDblp'; +export { default as SiDcentertainment, defaultColor as SiDcentertainmentHex } from './icons/SiDcentertainment'; +export { default as SiDebian, defaultColor as SiDebianHex } from './icons/SiDebian'; +export { default as SiDebridlink, defaultColor as SiDebridlinkHex } from './icons/SiDebridlink'; +export { default as SiDecapcms, defaultColor as SiDecapcmsHex } from './icons/SiDecapcms'; +export { default as SiDecentraland, defaultColor as SiDecentralandHex } from './icons/SiDecentraland'; +export { default as SiDedge, defaultColor as SiDedgeHex } from './icons/SiDedge'; +export { default as SiDeepcool, defaultColor as SiDeepcoolHex } from './icons/SiDeepcool'; +export { default as SiDeepgram, defaultColor as SiDeepgramHex } from './icons/SiDeepgram'; +export { default as SiDeepin, defaultColor as SiDeepinHex } from './icons/SiDeepin'; +export { default as SiDeepl, defaultColor as SiDeeplHex } from './icons/SiDeepl'; +export { default as SiDeepmind, defaultColor as SiDeepmindHex } from './icons/SiDeepmind'; +export { default as SiDeepnote, defaultColor as SiDeepnoteHex } from './icons/SiDeepnote'; +export { default as SiDeezer, defaultColor as SiDeezerHex } from './icons/SiDeezer'; +export { default as SiDeliveroo, defaultColor as SiDeliverooHex } from './icons/SiDeliveroo'; +export { default as SiDell, defaultColor as SiDellHex } from './icons/SiDell'; +export { default as SiDelonghi, defaultColor as SiDelonghiHex } from './icons/SiDelonghi'; +export { default as SiDelphi, defaultColor as SiDelphiHex } from './icons/SiDelphi'; +export { default as SiDelta, defaultColor as SiDeltaHex } from './icons/SiDelta'; +export { default as SiDeluge, defaultColor as SiDelugeHex } from './icons/SiDeluge'; +export { default as SiDeno, defaultColor as SiDenoHex } from './icons/SiDeno'; +export { default as SiDenodeploy, defaultColor as SiDenodeployHex } from './icons/SiDenodeploy'; +export { default as SiDenon, defaultColor as SiDenonHex } from './icons/SiDenon'; +export { default as SiDependabot, defaultColor as SiDependabotHex } from './icons/SiDependabot'; +export { default as SiDependencycheck, defaultColor as SiDependencycheckHex } from './icons/SiDependencycheck'; +export { default as SiDepositphotos, defaultColor as SiDepositphotosHex } from './icons/SiDepositphotos'; +export { default as SiDerspiegel, defaultColor as SiDerspiegelHex } from './icons/SiDerspiegel'; +export { default as SiDeutschebahn, defaultColor as SiDeutschebahnHex } from './icons/SiDeutschebahn'; +export { default as SiDeutschebank, defaultColor as SiDeutschebankHex } from './icons/SiDeutschebank'; +export { default as SiDeutschepost, defaultColor as SiDeutschepostHex } from './icons/SiDeutschepost'; +export { default as SiDeutschetelekom, defaultColor as SiDeutschetelekomHex } from './icons/SiDeutschetelekom'; +export { default as SiDeutschewelle, defaultColor as SiDeutschewelleHex } from './icons/SiDeutschewelle'; +export { default as SiDevbox, defaultColor as SiDevboxHex } from './icons/SiDevbox'; +export { default as SiDevdotto, defaultColor as SiDevdottoHex } from './icons/SiDevdotto'; +export { default as SiDevelopmentcontainers, defaultColor as SiDevelopmentcontainersHex } from './icons/SiDevelopmentcontainers'; +export { default as SiDevexpress, defaultColor as SiDevexpressHex } from './icons/SiDevexpress'; +export { default as SiDeviantart, defaultColor as SiDeviantartHex } from './icons/SiDeviantart'; +export { default as SiDevpost, defaultColor as SiDevpostHex } from './icons/SiDevpost'; +export { default as SiDevrant, defaultColor as SiDevrantHex } from './icons/SiDevrant'; +export { default as SiDevuan, defaultColor as SiDevuanHex } from './icons/SiDevuan'; +export { default as SiDgraph, defaultColor as SiDgraphHex } from './icons/SiDgraph'; +export { default as SiDhl, defaultColor as SiDhlHex } from './icons/SiDhl'; +export { default as SiDiagramsdotnet, defaultColor as SiDiagramsdotnetHex } from './icons/SiDiagramsdotnet'; +export { default as SiDialogflow, defaultColor as SiDialogflowHex } from './icons/SiDialogflow'; +export { default as SiDiaspora, defaultColor as SiDiasporaHex } from './icons/SiDiaspora'; +export { default as SiDictionarydotcom, defaultColor as SiDictionarydotcomHex } from './icons/SiDictionarydotcom'; +export { default as SiDigg, defaultColor as SiDiggHex } from './icons/SiDigg'; +export { default as SiDigikeyelectronics, defaultColor as SiDigikeyelectronicsHex } from './icons/SiDigikeyelectronics'; +export { default as SiDigitalocean, defaultColor as SiDigitaloceanHex } from './icons/SiDigitalocean'; +export { default as SiDinersclub, defaultColor as SiDinersclubHex } from './icons/SiDinersclub'; +export { default as SiDior, defaultColor as SiDiorHex } from './icons/SiDior'; +export { default as SiDirectus, defaultColor as SiDirectusHex } from './icons/SiDirectus'; +export { default as SiDiscogs, defaultColor as SiDiscogsHex } from './icons/SiDiscogs'; +export { default as SiDiscord, defaultColor as SiDiscordHex } from './icons/SiDiscord'; +export { default as SiDiscorddotjs, defaultColor as SiDiscorddotjsHex } from './icons/SiDiscorddotjs'; +export { default as SiDiscourse, defaultColor as SiDiscourseHex } from './icons/SiDiscourse'; +export { default as SiDiscover, defaultColor as SiDiscoverHex } from './icons/SiDiscover'; +export { default as SiDisqus, defaultColor as SiDisqusHex } from './icons/SiDisqus'; +export { default as SiDisroot, defaultColor as SiDisrootHex } from './icons/SiDisroot'; +export { default as SiDistrobox, defaultColor as SiDistroboxHex } from './icons/SiDistrobox'; +export { default as SiDistrokid, defaultColor as SiDistrokidHex } from './icons/SiDistrokid'; +export { default as SiDjango, defaultColor as SiDjangoHex } from './icons/SiDjango'; +export { default as SiDji, defaultColor as SiDjiHex } from './icons/SiDji'; +export { default as SiDlib, defaultColor as SiDlibHex } from './icons/SiDlib'; +export { default as SiDlna, defaultColor as SiDlnaHex } from './icons/SiDlna'; +export { default as SiDm, defaultColor as SiDmHex } from './icons/SiDm'; +export { default as SiDmm, defaultColor as SiDmmHex } from './icons/SiDmm'; +export { default as SiDocker, defaultColor as SiDockerHex } from './icons/SiDocker'; +export { default as SiDocsdotrs, defaultColor as SiDocsdotrsHex } from './icons/SiDocsdotrs'; +export { default as SiDocsify, defaultColor as SiDocsifyHex } from './icons/SiDocsify'; +export { default as SiDoctrine, defaultColor as SiDoctrineHex } from './icons/SiDoctrine'; +export { default as SiDocusaurus, defaultColor as SiDocusaurusHex } from './icons/SiDocusaurus'; +export { default as SiDodopayments, defaultColor as SiDodopaymentsHex } from './icons/SiDodopayments'; +export { default as SiDogecoin, defaultColor as SiDogecoinHex } from './icons/SiDogecoin'; +export { default as SiDoi, defaultColor as SiDoiHex } from './icons/SiDoi'; +export { default as SiDolby, defaultColor as SiDolbyHex } from './icons/SiDolby'; +export { default as SiDolibarr, defaultColor as SiDolibarrHex } from './icons/SiDolibarr'; +export { default as SiDolphin, defaultColor as SiDolphinHex } from './icons/SiDolphin'; +export { default as SiDoordash, defaultColor as SiDoordashHex } from './icons/SiDoordash'; +export { default as SiDota2, defaultColor as SiDota2Hex } from './icons/SiDota2'; +export { default as SiDotenv, defaultColor as SiDotenvHex } from './icons/SiDotenv'; +export { default as SiDotnet, defaultColor as SiDotnetHex } from './icons/SiDotnet'; +export { default as SiDouban, defaultColor as SiDoubanHex } from './icons/SiDouban'; +export { default as SiDoubanread, defaultColor as SiDoubanreadHex } from './icons/SiDoubanread'; +export { default as SiDovecot, defaultColor as SiDovecotHex } from './icons/SiDovecot'; +export { default as SiDovetail, defaultColor as SiDovetailHex } from './icons/SiDovetail'; +export { default as SiDowndetector, defaultColor as SiDowndetectorHex } from './icons/SiDowndetector'; +export { default as SiDoxygen, defaultColor as SiDoxygenHex } from './icons/SiDoxygen'; +export { default as SiDpd, defaultColor as SiDpdHex } from './icons/SiDpd'; +export { default as SiDragonframe, defaultColor as SiDragonframeHex } from './icons/SiDragonframe'; +export { default as SiDraugiemdotlv, defaultColor as SiDraugiemdotlvHex } from './icons/SiDraugiemdotlv'; +export { default as SiDreamstime, defaultColor as SiDreamstimeHex } from './icons/SiDreamstime'; +export { default as SiDribbble, defaultColor as SiDribbbleHex } from './icons/SiDribbble'; +export { default as SiDrizzle, defaultColor as SiDrizzleHex } from './icons/SiDrizzle'; +export { default as SiDrone, defaultColor as SiDroneHex } from './icons/SiDrone'; +export { default as SiDrooble, defaultColor as SiDroobleHex } from './icons/SiDrooble'; +export { default as SiDropbox, defaultColor as SiDropboxHex } from './icons/SiDropbox'; +export { default as SiDrupal, defaultColor as SiDrupalHex } from './icons/SiDrupal'; +export { default as SiDsautomobiles, defaultColor as SiDsautomobilesHex } from './icons/SiDsautomobiles'; +export { default as SiDts, defaultColor as SiDtsHex } from './icons/SiDts'; +export { default as SiDtube, defaultColor as SiDtubeHex } from './icons/SiDtube'; +export { default as SiDucati, defaultColor as SiDucatiHex } from './icons/SiDucati'; +export { default as SiDuckdb, defaultColor as SiDuckdbHex } from './icons/SiDuckdb'; +export { default as SiDuckduckgo, defaultColor as SiDuckduckgoHex } from './icons/SiDuckduckgo'; +export { default as SiDungeonsanddragons, defaultColor as SiDungeonsanddragonsHex } from './icons/SiDungeonsanddragons'; +export { default as SiDunked, defaultColor as SiDunkedHex } from './icons/SiDunked'; +export { default as SiDunzo, defaultColor as SiDunzoHex } from './icons/SiDunzo'; +export { default as SiDuolingo, defaultColor as SiDuolingoHex } from './icons/SiDuolingo'; +export { default as SiDuplicati, defaultColor as SiDuplicatiHex } from './icons/SiDuplicati'; +export { default as SiDvc, defaultColor as SiDvcHex } from './icons/SiDvc'; +export { default as SiDwavesystems, defaultColor as SiDwavesystemsHex } from './icons/SiDwavesystems'; +export { default as SiDwm, defaultColor as SiDwmHex } from './icons/SiDwm'; +export { default as SiDynatrace, defaultColor as SiDynatraceHex } from './icons/SiDynatrace'; +export { default as SiE, defaultColor as SiEHex } from './icons/SiE'; +export { default as SiE3, defaultColor as SiE3Hex } from './icons/SiE3'; +export { default as SiEa, defaultColor as SiEaHex } from './icons/SiEa'; +export { default as SiEac, defaultColor as SiEacHex } from './icons/SiEac'; +export { default as SiEagle, defaultColor as SiEagleHex } from './icons/SiEagle'; +export { default as SiEasyeda, defaultColor as SiEasyedaHex } from './icons/SiEasyeda'; +export { default as SiEasyjet, defaultColor as SiEasyjetHex } from './icons/SiEasyjet'; +export { default as SiEbay, defaultColor as SiEbayHex } from './icons/SiEbay'; +export { default as SiEbox, defaultColor as SiEboxHex } from './icons/SiEbox'; +export { default as SiEclipseadoptium, defaultColor as SiEclipseadoptiumHex } from './icons/SiEclipseadoptium'; +export { default as SiEclipseche, defaultColor as SiEclipsecheHex } from './icons/SiEclipseche'; +export { default as SiEclipseide, defaultColor as SiEclipseideHex } from './icons/SiEclipseide'; +export { default as SiEclipsejetty, defaultColor as SiEclipsejettyHex } from './icons/SiEclipsejetty'; +export { default as SiEclipsemosquitto, defaultColor as SiEclipsemosquittoHex } from './icons/SiEclipsemosquitto'; +export { default as SiEclipsevertdotx, defaultColor as SiEclipsevertdotxHex } from './icons/SiEclipsevertdotx'; +export { default as SiEcosia, defaultColor as SiEcosiaHex } from './icons/SiEcosia'; +export { default as SiEcovacs, defaultColor as SiEcovacsHex } from './icons/SiEcovacs'; +export { default as SiEdeka, defaultColor as SiEdekaHex } from './icons/SiEdeka'; +export { default as SiEdgeimpulse, defaultColor as SiEdgeimpulseHex } from './icons/SiEdgeimpulse'; +export { default as SiEditorconfig, defaultColor as SiEditorconfigHex } from './icons/SiEditorconfig'; +export { default as SiEdotleclerc, defaultColor as SiEdotleclercHex } from './icons/SiEdotleclerc'; +export { default as SiEducative, defaultColor as SiEducativeHex } from './icons/SiEducative'; +export { default as SiEdx, defaultColor as SiEdxHex } from './icons/SiEdx'; +export { default as SiEffect, defaultColor as SiEffectHex } from './icons/SiEffect'; +export { default as SiEgghead, defaultColor as SiEggheadHex } from './icons/SiEgghead'; +export { default as SiEgnyte, defaultColor as SiEgnyteHex } from './icons/SiEgnyte'; +export { default as SiEight, defaultColor as SiEightHex } from './icons/SiEight'; +export { default as SiEightsleep, defaultColor as SiEightsleepHex } from './icons/SiEightsleep'; +export { default as SiEjs, defaultColor as SiEjsHex } from './icons/SiEjs'; +export { default as SiElastic, defaultColor as SiElasticHex } from './icons/SiElastic'; +export { default as SiElasticcloud, defaultColor as SiElasticcloudHex } from './icons/SiElasticcloud'; +export { default as SiElasticsearch, defaultColor as SiElasticsearchHex } from './icons/SiElasticsearch'; +export { default as SiElasticstack, defaultColor as SiElasticstackHex } from './icons/SiElasticstack'; +export { default as SiElavon, defaultColor as SiElavonHex } from './icons/SiElavon'; +export { default as SiElectron, defaultColor as SiElectronHex } from './icons/SiElectron'; +export { default as SiElectronbuilder, defaultColor as SiElectronbuilderHex } from './icons/SiElectronbuilder'; +export { default as SiElectronfiddle, defaultColor as SiElectronfiddleHex } from './icons/SiElectronfiddle'; +export { default as SiElegoo, defaultColor as SiElegooHex } from './icons/SiElegoo'; +export { default as SiElement, defaultColor as SiElementHex } from './icons/SiElement'; +export { default as SiElementary, defaultColor as SiElementaryHex } from './icons/SiElementary'; +export { default as SiElementor, defaultColor as SiElementorHex } from './icons/SiElementor'; +export { default as SiElevenlabs, defaultColor as SiElevenlabsHex } from './icons/SiElevenlabs'; +export { default as SiEleventy, defaultColor as SiEleventyHex } from './icons/SiEleventy'; +export { default as SiElgato, defaultColor as SiElgatoHex } from './icons/SiElgato'; +export { default as SiElixir, defaultColor as SiElixirHex } from './icons/SiElixir'; +export { default as SiElk, defaultColor as SiElkHex } from './icons/SiElk'; +export { default as SiElm, defaultColor as SiElmHex } from './icons/SiElm'; +export { default as SiElsevier, defaultColor as SiElsevierHex } from './icons/SiElsevier'; +export { default as SiEmbarcadero, defaultColor as SiEmbarcaderoHex } from './icons/SiEmbarcadero'; +export { default as SiEmbark, defaultColor as SiEmbarkHex } from './icons/SiEmbark'; +export { default as SiEmberdotjs, defaultColor as SiEmberdotjsHex } from './icons/SiEmberdotjs'; +export { default as SiEmby, defaultColor as SiEmbyHex } from './icons/SiEmby'; +export { default as SiEmirates, defaultColor as SiEmiratesHex } from './icons/SiEmirates'; +export { default as SiEmlakjet, defaultColor as SiEmlakjetHex } from './icons/SiEmlakjet'; +export { default as SiEndeavouros, defaultColor as SiEndeavourosHex } from './icons/SiEndeavouros'; +export { default as SiEnpass, defaultColor as SiEnpassHex } from './icons/SiEnpass'; +export { default as SiEns, defaultColor as SiEnsHex } from './icons/SiEns'; +export { default as SiEnte, defaultColor as SiEnteHex } from './icons/SiEnte'; +export { default as SiEnterprisedb, defaultColor as SiEnterprisedbHex } from './icons/SiEnterprisedb'; +export { default as SiEnvato, defaultColor as SiEnvatoHex } from './icons/SiEnvato'; +export { default as SiEnvoyproxy, defaultColor as SiEnvoyproxyHex } from './icons/SiEnvoyproxy'; +export { default as SiEpel, defaultColor as SiEpelHex } from './icons/SiEpel'; +export { default as SiEpicgames, defaultColor as SiEpicgamesHex } from './icons/SiEpicgames'; +export { default as SiEpson, defaultColor as SiEpsonHex } from './icons/SiEpson'; +export { default as SiEquinixmetal, defaultColor as SiEquinixmetalHex } from './icons/SiEquinixmetal'; +export { default as SiEraser, defaultColor as SiEraserHex } from './icons/SiEraser'; +export { default as SiEricsson, defaultColor as SiEricssonHex } from './icons/SiEricsson'; +export { default as SiErlang, defaultColor as SiErlangHex } from './icons/SiErlang'; +export { default as SiErpnext, defaultColor as SiErpnextHex } from './icons/SiErpnext'; +export { default as SiEsbuild, defaultColor as SiEsbuildHex } from './icons/SiEsbuild'; +export { default as SiEsea, defaultColor as SiEseaHex } from './icons/SiEsea'; +export { default as SiEslgaming, defaultColor as SiEslgamingHex } from './icons/SiEslgaming'; +export { default as SiEslint, defaultColor as SiEslintHex } from './icons/SiEslint'; +export { default as SiEsotericsoftware, defaultColor as SiEsotericsoftwareHex } from './icons/SiEsotericsoftware'; +export { default as SiEsphome, defaultColor as SiEsphomeHex } from './icons/SiEsphome'; +export { default as SiEspressif, defaultColor as SiEspressifHex } from './icons/SiEspressif'; +export { default as SiEsri, defaultColor as SiEsriHex } from './icons/SiEsri'; +export { default as SiEtcd, defaultColor as SiEtcdHex } from './icons/SiEtcd'; +export { default as SiEthereum, defaultColor as SiEthereumHex } from './icons/SiEthereum'; +export { default as SiEthers, defaultColor as SiEthersHex } from './icons/SiEthers'; +export { default as SiEthiopianairlines, defaultColor as SiEthiopianairlinesHex } from './icons/SiEthiopianairlines'; +export { default as SiEtihadairways, defaultColor as SiEtihadairwaysHex } from './icons/SiEtihadairways'; +export { default as SiEtsy, defaultColor as SiEtsyHex } from './icons/SiEtsy'; +export { default as SiEuropeanunion, defaultColor as SiEuropeanunionHex } from './icons/SiEuropeanunion'; +export { default as SiEventstore, defaultColor as SiEventstoreHex } from './icons/SiEventstore'; +export { default as SiEvernote, defaultColor as SiEvernoteHex } from './icons/SiEvernote'; +export { default as SiEverydotorg, defaultColor as SiEverydotorgHex } from './icons/SiEverydotorg'; +export { default as SiExcalidraw, defaultColor as SiExcalidrawHex } from './icons/SiExcalidraw'; +export { default as SiExercism, defaultColor as SiExercismHex } from './icons/SiExercism'; +export { default as SiExordo, defaultColor as SiExordoHex } from './icons/SiExordo'; +export { default as SiExoscale, defaultColor as SiExoscaleHex } from './icons/SiExoscale'; +export { default as SiExpedia, defaultColor as SiExpediaHex } from './icons/SiExpedia'; +export { default as SiExpensify, defaultColor as SiExpensifyHex } from './icons/SiExpensify'; +export { default as SiExpertsexchange, defaultColor as SiExpertsexchangeHex } from './icons/SiExpertsexchange'; +export { default as SiExpo, defaultColor as SiExpoHex } from './icons/SiExpo'; +export { default as SiExpress, defaultColor as SiExpressHex } from './icons/SiExpress'; +export { default as SiExpressdotcom, defaultColor as SiExpressdotcomHex } from './icons/SiExpressdotcom'; +export { default as SiExpressvpn, defaultColor as SiExpressvpnHex } from './icons/SiExpressvpn'; +export { default as SiEyeem, defaultColor as SiEyeemHex } from './icons/SiEyeem'; +export { default as SiF1, defaultColor as SiF1Hex } from './icons/SiF1'; +export { default as SiF5, defaultColor as SiF5Hex } from './icons/SiF5'; +export { default as SiFacebook, defaultColor as SiFacebookHex } from './icons/SiFacebook'; +export { default as SiFacebookgaming, defaultColor as SiFacebookgamingHex } from './icons/SiFacebookgaming'; +export { default as SiFacebooklive, defaultColor as SiFacebookliveHex } from './icons/SiFacebooklive'; +export { default as SiFaceit, defaultColor as SiFaceitHex } from './icons/SiFaceit'; +export { default as SiFacepunch, defaultColor as SiFacepunchHex } from './icons/SiFacepunch'; +export { default as SiFairphone, defaultColor as SiFairphoneHex } from './icons/SiFairphone'; +export { default as SiFalco, defaultColor as SiFalcoHex } from './icons/SiFalco'; +export { default as SiFalcon, defaultColor as SiFalconHex } from './icons/SiFalcon'; +export { default as SiFampay, defaultColor as SiFampayHex } from './icons/SiFampay'; +export { default as SiFandango, defaultColor as SiFandangoHex } from './icons/SiFandango'; +export { default as SiFandom, defaultColor as SiFandomHex } from './icons/SiFandom'; +export { default as SiFanfou, defaultColor as SiFanfouHex } from './icons/SiFanfou'; +export { default as SiFantom, defaultColor as SiFantomHex } from './icons/SiFantom'; +export { default as SiFarcaster, defaultColor as SiFarcasterHex } from './icons/SiFarcaster'; +export { default as SiFareharbor, defaultColor as SiFareharborHex } from './icons/SiFareharbor'; +export { default as SiFarfetch, defaultColor as SiFarfetchHex } from './icons/SiFarfetch'; +export { default as SiFastapi, defaultColor as SiFastapiHex } from './icons/SiFastapi'; +export { default as SiFastify, defaultColor as SiFastifyHex } from './icons/SiFastify'; +export { default as SiFastlane, defaultColor as SiFastlaneHex } from './icons/SiFastlane'; +export { default as SiFastly, defaultColor as SiFastlyHex } from './icons/SiFastly'; +export { default as SiFathom, defaultColor as SiFathomHex } from './icons/SiFathom'; +export { default as SiFauna, defaultColor as SiFaunaHex } from './icons/SiFauna'; +export { default as SiFavro, defaultColor as SiFavroHex } from './icons/SiFavro'; +export { default as SiFcc, defaultColor as SiFccHex } from './icons/SiFcc'; +export { default as SiFdroid, defaultColor as SiFdroidHex } from './icons/SiFdroid'; +export { default as SiFedex, defaultColor as SiFedexHex } from './icons/SiFedex'; +export { default as SiFedora, defaultColor as SiFedoraHex } from './icons/SiFedora'; +export { default as SiFeedly, defaultColor as SiFeedlyHex } from './icons/SiFeedly'; +export { default as SiFerrari, defaultColor as SiFerrariHex } from './icons/SiFerrari'; +export { default as SiFerrarinv, defaultColor as SiFerrarinvHex } from './icons/SiFerrarinv'; +export { default as SiFerretdb, defaultColor as SiFerretdbHex } from './icons/SiFerretdb'; +export { default as SiFfmpeg, defaultColor as SiFfmpegHex } from './icons/SiFfmpeg'; +export { default as SiFi, defaultColor as SiFiHex } from './icons/SiFi'; +export { default as SiFiat, defaultColor as SiFiatHex } from './icons/SiFiat'; +export { default as SiFidoalliance, defaultColor as SiFidoallianceHex } from './icons/SiFidoalliance'; +export { default as SiFifa, defaultColor as SiFifaHex } from './icons/SiFifa'; +export { default as SiFig, defaultColor as SiFigHex } from './icons/SiFig'; +export { default as SiFigma, defaultColor as SiFigmaHex } from './icons/SiFigma'; +export { default as SiFigshare, defaultColor as SiFigshareHex } from './icons/SiFigshare'; +export { default as SiFila, defaultColor as SiFilaHex } from './icons/SiFila'; +export { default as SiFilament, defaultColor as SiFilamentHex } from './icons/SiFilament'; +export { default as SiFiledotio, defaultColor as SiFiledotioHex } from './icons/SiFiledotio'; +export { default as SiFilen, defaultColor as SiFilenHex } from './icons/SiFilen'; +export { default as SiFiles, defaultColor as SiFilesHex } from './icons/SiFiles'; +export { default as SiFilezilla, defaultColor as SiFilezillaHex } from './icons/SiFilezilla'; +export { default as SiFillout, defaultColor as SiFilloutHex } from './icons/SiFillout'; +export { default as SiFineco, defaultColor as SiFinecoHex } from './icons/SiFineco'; +export { default as SiFing, defaultColor as SiFingHex } from './icons/SiFing'; +export { default as SiFirebase, defaultColor as SiFirebaseHex } from './icons/SiFirebase'; +export { default as SiFirefish, defaultColor as SiFirefishHex } from './icons/SiFirefish'; +export { default as SiFireflyiii, defaultColor as SiFireflyiiiHex } from './icons/SiFireflyiii'; +export { default as SiFirefox, defaultColor as SiFirefoxHex } from './icons/SiFirefox'; +export { default as SiFirefoxbrowser, defaultColor as SiFirefoxbrowserHex } from './icons/SiFirefoxbrowser'; +export { default as SiFireship, defaultColor as SiFireshipHex } from './icons/SiFireship'; +export { default as SiFirewalla, defaultColor as SiFirewallaHex } from './icons/SiFirewalla'; +export { default as SiFirst, defaultColor as SiFirstHex } from './icons/SiFirst'; +export { default as SiFishaudio, defaultColor as SiFishaudioHex } from './icons/SiFishaudio'; +export { default as SiFishshell, defaultColor as SiFishshellHex } from './icons/SiFishshell'; +export { default as SiFitbit, defaultColor as SiFitbitHex } from './icons/SiFitbit'; +export { default as SiFivem, defaultColor as SiFivemHex } from './icons/SiFivem'; +export { default as SiFiverr, defaultColor as SiFiverrHex } from './icons/SiFiverr'; +export { default as SiFizz, defaultColor as SiFizzHex } from './icons/SiFizz'; +export { default as SiFlashforge, defaultColor as SiFlashforgeHex } from './icons/SiFlashforge'; +export { default as SiFlask, defaultColor as SiFlaskHex } from './icons/SiFlask'; +export { default as SiFlat, defaultColor as SiFlatHex } from './icons/SiFlat'; +export { default as SiFlathub, defaultColor as SiFlathubHex } from './icons/SiFlathub'; +export { default as SiFlatpak, defaultColor as SiFlatpakHex } from './icons/SiFlatpak'; +export { default as SiFlickr, defaultColor as SiFlickrHex } from './icons/SiFlickr'; +export { default as SiFlightaware, defaultColor as SiFlightawareHex } from './icons/SiFlightaware'; +export { default as SiFlipboard, defaultColor as SiFlipboardHex } from './icons/SiFlipboard'; +export { default as SiFloatplane, defaultColor as SiFloatplaneHex } from './icons/SiFloatplane'; +export { default as SiFlood, defaultColor as SiFloodHex } from './icons/SiFlood'; +export { default as SiFloorp, defaultColor as SiFloorpHex } from './icons/SiFloorp'; +export { default as SiFlower, defaultColor as SiFlowerHex } from './icons/SiFlower'; +export { default as SiFluentbit, defaultColor as SiFluentbitHex } from './icons/SiFluentbit'; +export { default as SiFluentd, defaultColor as SiFluentdHex } from './icons/SiFluentd'; +export { default as SiFluke, defaultColor as SiFlukeHex } from './icons/SiFluke'; +export { default as SiFlutter, defaultColor as SiFlutterHex } from './icons/SiFlutter'; +export { default as SiFlux, defaultColor as SiFluxHex } from './icons/SiFlux'; +export { default as SiFlydotio, defaultColor as SiFlydotioHex } from './icons/SiFlydotio'; +export { default as SiFlyway, defaultColor as SiFlywayHex } from './icons/SiFlyway'; +export { default as SiFmod, defaultColor as SiFmodHex } from './icons/SiFmod'; +export { default as SiFnac, defaultColor as SiFnacHex } from './icons/SiFnac'; +export { default as SiFolium, defaultColor as SiFoliumHex } from './icons/SiFolium'; +export { default as SiFolo, defaultColor as SiFoloHex } from './icons/SiFolo'; +export { default as SiFonoma, defaultColor as SiFonomaHex } from './icons/SiFonoma'; +export { default as SiFontawesome, defaultColor as SiFontawesomeHex } from './icons/SiFontawesome'; +export { default as SiFontbase, defaultColor as SiFontbaseHex } from './icons/SiFontbase'; +export { default as SiFontforge, defaultColor as SiFontforgeHex } from './icons/SiFontforge'; +export { default as SiFoobar2000, defaultColor as SiFoobar2000Hex } from './icons/SiFoobar2000'; +export { default as SiFoodpanda, defaultColor as SiFoodpandaHex } from './icons/SiFoodpanda'; +export { default as SiFord, defaultColor as SiFordHex } from './icons/SiFord'; +export { default as SiForgejo, defaultColor as SiForgejoHex } from './icons/SiForgejo'; +export { default as SiFormbricks, defaultColor as SiFormbricksHex } from './icons/SiFormbricks'; +export { default as SiFormik, defaultColor as SiFormikHex } from './icons/SiFormik'; +export { default as SiFormspree, defaultColor as SiFormspreeHex } from './icons/SiFormspree'; +export { default as SiFormstack, defaultColor as SiFormstackHex } from './icons/SiFormstack'; +export { default as SiFortinet, defaultColor as SiFortinetHex } from './icons/SiFortinet'; +export { default as SiFortnite, defaultColor as SiFortniteHex } from './icons/SiFortnite'; +export { default as SiFortran, defaultColor as SiFortranHex } from './icons/SiFortran'; +export { default as SiFossa, defaultColor as SiFossaHex } from './icons/SiFossa'; +export { default as SiFossilscm, defaultColor as SiFossilscmHex } from './icons/SiFossilscm'; +export { default as SiFoundryvirtualtabletop, defaultColor as SiFoundryvirtualtabletopHex } from './icons/SiFoundryvirtualtabletop'; +export { default as SiFoursquare, defaultColor as SiFoursquareHex } from './icons/SiFoursquare'; +export { default as SiFox, defaultColor as SiFoxHex } from './icons/SiFox'; +export { default as SiFoxtel, defaultColor as SiFoxtelHex } from './icons/SiFoxtel'; +export { default as SiFozzy, defaultColor as SiFozzyHex } from './icons/SiFozzy'; +export { default as SiFramer, defaultColor as SiFramerHex } from './icons/SiFramer'; +export { default as SiFramework, defaultColor as SiFrameworkHex } from './icons/SiFramework'; +export { default as SiFramework7, defaultColor as SiFramework7Hex } from './icons/SiFramework7'; +export { default as SiFranprix, defaultColor as SiFranprixHex } from './icons/SiFranprix'; +export { default as SiFrappe, defaultColor as SiFrappeHex } from './icons/SiFrappe'; +export { default as SiFraunhofergesellschaft, defaultColor as SiFraunhofergesellschaftHex } from './icons/SiFraunhofergesellschaft'; +export { default as SiFreebsd, defaultColor as SiFreebsdHex } from './icons/SiFreebsd'; +export { default as SiFreecad, defaultColor as SiFreecadHex } from './icons/SiFreecad'; +export { default as SiFreecodecamp, defaultColor as SiFreecodecampHex } from './icons/SiFreecodecamp'; +export { default as SiFreedesktopdotorg, defaultColor as SiFreedesktopdotorgHex } from './icons/SiFreedesktopdotorg'; +export { default as SiFreelancer, defaultColor as SiFreelancerHex } from './icons/SiFreelancer'; +export { default as SiFreelancermap, defaultColor as SiFreelancermapHex } from './icons/SiFreelancermap'; +export { default as SiFreenas, defaultColor as SiFreenasHex } from './icons/SiFreenas'; +export { default as SiFreenet, defaultColor as SiFreenetHex } from './icons/SiFreenet'; +export { default as SiFreepik, defaultColor as SiFreepikHex } from './icons/SiFreepik'; +export { default as SiFreetube, defaultColor as SiFreetubeHex } from './icons/SiFreetube'; +export { default as SiFresh, defaultColor as SiFreshHex } from './icons/SiFresh'; +export { default as SiFreshrss, defaultColor as SiFreshrssHex } from './icons/SiFreshrss'; +export { default as SiFrigate, defaultColor as SiFrigateHex } from './icons/SiFrigate'; +export { default as SiFritz, defaultColor as SiFritzHex } from './icons/SiFritz'; +export { default as SiFrontendmentor, defaultColor as SiFrontendmentorHex } from './icons/SiFrontendmentor'; +export { default as SiFrontify, defaultColor as SiFrontifyHex } from './icons/SiFrontify'; +export { default as SiFsharp, defaultColor as SiFsharpHex } from './icons/SiFsharp'; +export { default as SiFubo, defaultColor as SiFuboHex } from './icons/SiFubo'; +export { default as SiFueler, defaultColor as SiFuelerHex } from './icons/SiFueler'; +export { default as SiFugacloud, defaultColor as SiFugacloudHex } from './icons/SiFugacloud'; +export { default as SiFujifilm, defaultColor as SiFujifilmHex } from './icons/SiFujifilm'; +export { default as SiFujitsu, defaultColor as SiFujitsuHex } from './icons/SiFujitsu'; +export { default as SiFuraffinity, defaultColor as SiFuraffinityHex } from './icons/SiFuraffinity'; +export { default as SiFurrynetwork, defaultColor as SiFurrynetworkHex } from './icons/SiFurrynetwork'; +export { default as SiFusionauth, defaultColor as SiFusionauthHex } from './icons/SiFusionauth'; +export { default as SiFuturelearn, defaultColor as SiFuturelearnHex } from './icons/SiFuturelearn'; +export { default as SiFyle, defaultColor as SiFyleHex } from './icons/SiFyle'; +export { default as SiG2, defaultColor as SiG2Hex } from './icons/SiG2'; +export { default as SiG2a, defaultColor as SiG2aHex } from './icons/SiG2a'; +export { default as SiG2g, defaultColor as SiG2gHex } from './icons/SiG2g'; +export { default as SiGalaxus, defaultColor as SiGalaxusHex } from './icons/SiGalaxus'; +export { default as SiGamebanana, defaultColor as SiGamebananaHex } from './icons/SiGamebanana'; +export { default as SiGamedeveloper, defaultColor as SiGamedeveloperHex } from './icons/SiGamedeveloper'; +export { default as SiGamejolt, defaultColor as SiGamejoltHex } from './icons/SiGamejolt'; +export { default as SiGameloft, defaultColor as SiGameloftHex } from './icons/SiGameloft'; +export { default as SiGamemaker, defaultColor as SiGamemakerHex } from './icons/SiGamemaker'; +export { default as SiGamescience, defaultColor as SiGamescienceHex } from './icons/SiGamescience'; +export { default as SiGandi, defaultColor as SiGandiHex } from './icons/SiGandi'; +export { default as SiGarmin, defaultColor as SiGarminHex } from './icons/SiGarmin'; +export { default as SiGarudalinux, defaultColor as SiGarudalinuxHex } from './icons/SiGarudalinux'; +export { default as SiGatling, defaultColor as SiGatlingHex } from './icons/SiGatling'; +export { default as SiGatsby, defaultColor as SiGatsbyHex } from './icons/SiGatsby'; +export { default as SiGcore, defaultColor as SiGcoreHex } from './icons/SiGcore'; +export { default as SiGdal, defaultColor as SiGdalHex } from './icons/SiGdal'; +export { default as SiGeeksforgeeks, defaultColor as SiGeeksforgeeksHex } from './icons/SiGeeksforgeeks'; +export { default as SiGeneralelectric, defaultColor as SiGeneralelectricHex } from './icons/SiGeneralelectric'; +export { default as SiGeneralmotors, defaultColor as SiGeneralmotorsHex } from './icons/SiGeneralmotors'; +export { default as SiGenius, defaultColor as SiGeniusHex } from './icons/SiGenius'; +export { default as SiGentoo, defaultColor as SiGentooHex } from './icons/SiGentoo'; +export { default as SiGeocaching, defaultColor as SiGeocachingHex } from './icons/SiGeocaching'; +export { default as SiGeode, defaultColor as SiGeodeHex } from './icons/SiGeode'; +export { default as SiGeopandas, defaultColor as SiGeopandasHex } from './icons/SiGeopandas'; +export { default as SiGerrit, defaultColor as SiGerritHex } from './icons/SiGerrit'; +export { default as SiGetx, defaultColor as SiGetxHex } from './icons/SiGetx'; +export { default as SiGhost, defaultColor as SiGhostHex } from './icons/SiGhost'; +export { default as SiGhostery, defaultColor as SiGhosteryHex } from './icons/SiGhostery'; +export { default as SiGhostty, defaultColor as SiGhosttyHex } from './icons/SiGhostty'; +export { default as SiGimp, defaultColor as SiGimpHex } from './icons/SiGimp'; +export { default as SiGin, defaultColor as SiGinHex } from './icons/SiGin'; +export { default as SiGiphy, defaultColor as SiGiphyHex } from './icons/SiGiphy'; +export { default as SiGit, defaultColor as SiGitHex } from './icons/SiGit'; +export { default as SiGitbook, defaultColor as SiGitbookHex } from './icons/SiGitbook'; +export { default as SiGitcode, defaultColor as SiGitcodeHex } from './icons/SiGitcode'; +export { default as SiGitconnected, defaultColor as SiGitconnectedHex } from './icons/SiGitconnected'; +export { default as SiGitea, defaultColor as SiGiteaHex } from './icons/SiGitea'; +export { default as SiGitee, defaultColor as SiGiteeHex } from './icons/SiGitee'; +export { default as SiGitextensions, defaultColor as SiGitextensionsHex } from './icons/SiGitextensions'; +export { default as SiGitforwindows, defaultColor as SiGitforwindowsHex } from './icons/SiGitforwindows'; +export { default as SiGithub, defaultColor as SiGithubHex } from './icons/SiGithub'; +export { default as SiGithubactions, defaultColor as SiGithubactionsHex } from './icons/SiGithubactions'; +export { default as SiGithubcopilot, defaultColor as SiGithubcopilotHex } from './icons/SiGithubcopilot'; +export { default as SiGithubpages, defaultColor as SiGithubpagesHex } from './icons/SiGithubpages'; +export { default as SiGithubsponsors, defaultColor as SiGithubsponsorsHex } from './icons/SiGithubsponsors'; +export { default as SiGitignoredotio, defaultColor as SiGitignoredotioHex } from './icons/SiGitignoredotio'; +export { default as SiGitkraken, defaultColor as SiGitkrakenHex } from './icons/SiGitkraken'; +export { default as SiGitlab, defaultColor as SiGitlabHex } from './icons/SiGitlab'; +export { default as SiGitlfs, defaultColor as SiGitlfsHex } from './icons/SiGitlfs'; +export { default as SiGitpod, defaultColor as SiGitpodHex } from './icons/SiGitpod'; +export { default as SiGitter, defaultColor as SiGitterHex } from './icons/SiGitter'; +export { default as SiGlance, defaultColor as SiGlanceHex } from './icons/SiGlance'; +export { default as SiGlassdoor, defaultColor as SiGlassdoorHex } from './icons/SiGlassdoor'; +export { default as SiGldotinet, defaultColor as SiGldotinetHex } from './icons/SiGldotinet'; +export { default as SiGleam, defaultColor as SiGleamHex } from './icons/SiGleam'; +export { default as SiGlide, defaultColor as SiGlideHex } from './icons/SiGlide'; +export { default as SiGlitch, defaultColor as SiGlitchHex } from './icons/SiGlitch'; +export { default as SiGlobus, defaultColor as SiGlobusHex } from './icons/SiGlobus'; +export { default as SiGlovo, defaultColor as SiGlovoHex } from './icons/SiGlovo'; +export { default as SiGltf, defaultColor as SiGltfHex } from './icons/SiGltf'; +export { default as SiGmail, defaultColor as SiGmailHex } from './icons/SiGmail'; +export { default as SiGmx, defaultColor as SiGmxHex } from './icons/SiGmx'; +export { default as SiGnome, defaultColor as SiGnomeHex } from './icons/SiGnome'; +export { default as SiGnometerminal, defaultColor as SiGnometerminalHex } from './icons/SiGnometerminal'; +export { default as SiGnu, defaultColor as SiGnuHex } from './icons/SiGnu'; +export { default as SiGnubash, defaultColor as SiGnubashHex } from './icons/SiGnubash'; +export { default as SiGnuemacs, defaultColor as SiGnuemacsHex } from './icons/SiGnuemacs'; +export { default as SiGnuicecat, defaultColor as SiGnuicecatHex } from './icons/SiGnuicecat'; +export { default as SiGnuprivacyguard, defaultColor as SiGnuprivacyguardHex } from './icons/SiGnuprivacyguard'; +export { default as SiGnusocial, defaultColor as SiGnusocialHex } from './icons/SiGnusocial'; +export { default as SiGo, defaultColor as SiGoHex } from './icons/SiGo'; +export { default as SiGocd, defaultColor as SiGocdHex } from './icons/SiGocd'; +export { default as SiGodaddy, defaultColor as SiGodaddyHex } from './icons/SiGodaddy'; +export { default as SiGodotengine, defaultColor as SiGodotengineHex } from './icons/SiGodotengine'; +export { default as SiGofundme, defaultColor as SiGofundmeHex } from './icons/SiGofundme'; +export { default as SiGogdotcom, defaultColor as SiGogdotcomHex } from './icons/SiGogdotcom'; +export { default as SiGojek, defaultColor as SiGojekHex } from './icons/SiGojek'; +export { default as SiGoland, defaultColor as SiGolandHex } from './icons/SiGoland'; +export { default as SiGoldmansachs, defaultColor as SiGoldmansachsHex } from './icons/SiGoldmansachs'; +export { default as SiGoodreads, defaultColor as SiGoodreadsHex } from './icons/SiGoodreads'; +export { default as SiGoogle, defaultColor as SiGoogleHex } from './icons/SiGoogle'; +export { default as SiGoogleadmob, defaultColor as SiGoogleadmobHex } from './icons/SiGoogleadmob'; +export { default as SiGoogleads, defaultColor as SiGoogleadsHex } from './icons/SiGoogleads'; +export { default as SiGoogleadsense, defaultColor as SiGoogleadsenseHex } from './icons/SiGoogleadsense'; +export { default as SiGoogleanalytics, defaultColor as SiGoogleanalyticsHex } from './icons/SiGoogleanalytics'; +export { default as SiGoogleappsscript, defaultColor as SiGoogleappsscriptHex } from './icons/SiGoogleappsscript'; +export { default as SiGoogleassistant, defaultColor as SiGoogleassistantHex } from './icons/SiGoogleassistant'; +export { default as SiGoogleauthenticator, defaultColor as SiGoogleauthenticatorHex } from './icons/SiGoogleauthenticator'; +export { default as SiGooglebigquery, defaultColor as SiGooglebigqueryHex } from './icons/SiGooglebigquery'; +export { default as SiGooglebigtable, defaultColor as SiGooglebigtableHex } from './icons/SiGooglebigtable'; +export { default as SiGooglecalendar, defaultColor as SiGooglecalendarHex } from './icons/SiGooglecalendar'; +export { default as SiGooglecampaignmanager360, defaultColor as SiGooglecampaignmanager360Hex } from './icons/SiGooglecampaignmanager360'; +export { default as SiGooglecardboard, defaultColor as SiGooglecardboardHex } from './icons/SiGooglecardboard'; +export { default as SiGooglecast, defaultColor as SiGooglecastHex } from './icons/SiGooglecast'; +export { default as SiGooglechat, defaultColor as SiGooglechatHex } from './icons/SiGooglechat'; +export { default as SiGooglechrome, defaultColor as SiGooglechromeHex } from './icons/SiGooglechrome'; +export { default as SiGooglechronicle, defaultColor as SiGooglechronicleHex } from './icons/SiGooglechronicle'; +export { default as SiGoogleclassroom, defaultColor as SiGoogleclassroomHex } from './icons/SiGoogleclassroom'; +export { default as SiGooglecloud, defaultColor as SiGooglecloudHex } from './icons/SiGooglecloud'; +export { default as SiGooglecloudcomposer, defaultColor as SiGooglecloudcomposerHex } from './icons/SiGooglecloudcomposer'; +export { default as SiGooglecloudspanner, defaultColor as SiGooglecloudspannerHex } from './icons/SiGooglecloudspanner'; +export { default as SiGooglecloudstorage, defaultColor as SiGooglecloudstorageHex } from './icons/SiGooglecloudstorage'; +export { default as SiGooglecolab, defaultColor as SiGooglecolabHex } from './icons/SiGooglecolab'; +export { default as SiGooglecontaineroptimizedos, defaultColor as SiGooglecontaineroptimizedosHex } from './icons/SiGooglecontaineroptimizedos'; +export { default as SiGoogledataflow, defaultColor as SiGoogledataflowHex } from './icons/SiGoogledataflow'; +export { default as SiGoogledataproc, defaultColor as SiGoogledataprocHex } from './icons/SiGoogledataproc'; +export { default as SiGoogledisplayandvideo360, defaultColor as SiGoogledisplayandvideo360Hex } from './icons/SiGoogledisplayandvideo360'; +export { default as SiGoogledocs, defaultColor as SiGoogledocsHex } from './icons/SiGoogledocs'; +export { default as SiGoogledrive, defaultColor as SiGoogledriveHex } from './icons/SiGoogledrive'; +export { default as SiGoogleearth, defaultColor as SiGoogleearthHex } from './icons/SiGoogleearth'; +export { default as SiGoogleearthengine, defaultColor as SiGoogleearthengineHex } from './icons/SiGoogleearthengine'; +export { default as SiGooglefonts, defaultColor as SiGooglefontsHex } from './icons/SiGooglefonts'; +export { default as SiGoogleforms, defaultColor as SiGoogleformsHex } from './icons/SiGoogleforms'; +export { default as SiGooglegemini, defaultColor as SiGooglegeminiHex } from './icons/SiGooglegemini'; +export { default as SiGooglehome, defaultColor as SiGooglehomeHex } from './icons/SiGooglehome'; +export { default as SiGooglejules, defaultColor as SiGooglejulesHex } from './icons/SiGooglejules'; +export { default as SiGooglekeep, defaultColor as SiGooglekeepHex } from './icons/SiGooglekeep'; +export { default as SiGooglelens, defaultColor as SiGooglelensHex } from './icons/SiGooglelens'; +export { default as SiGooglemaps, defaultColor as SiGooglemapsHex } from './icons/SiGooglemaps'; +export { default as SiGooglemarketingplatform, defaultColor as SiGooglemarketingplatformHex } from './icons/SiGooglemarketingplatform'; +export { default as SiGooglemeet, defaultColor as SiGooglemeetHex } from './icons/SiGooglemeet'; +export { default as SiGooglemessages, defaultColor as SiGooglemessagesHex } from './icons/SiGooglemessages'; +export { default as SiGooglenearby, defaultColor as SiGooglenearbyHex } from './icons/SiGooglenearby'; +export { default as SiGooglenews, defaultColor as SiGooglenewsHex } from './icons/SiGooglenews'; +export { default as SiGooglepay, defaultColor as SiGooglepayHex } from './icons/SiGooglepay'; +export { default as SiGooglephotos, defaultColor as SiGooglephotosHex } from './icons/SiGooglephotos'; +export { default as SiGoogleplay, defaultColor as SiGoogleplayHex } from './icons/SiGoogleplay'; +export { default as SiGooglepubsub, defaultColor as SiGooglepubsubHex } from './icons/SiGooglepubsub'; +export { default as SiGooglescholar, defaultColor as SiGooglescholarHex } from './icons/SiGooglescholar'; +export { default as SiGooglesearchconsole, defaultColor as SiGooglesearchconsoleHex } from './icons/SiGooglesearchconsole'; +export { default as SiGooglesheets, defaultColor as SiGooglesheetsHex } from './icons/SiGooglesheets'; +export { default as SiGoogleslides, defaultColor as SiGoogleslidesHex } from './icons/SiGoogleslides'; +export { default as SiGooglestreetview, defaultColor as SiGooglestreetviewHex } from './icons/SiGooglestreetview'; +export { default as SiGooglesummerofcode, defaultColor as SiGooglesummerofcodeHex } from './icons/SiGooglesummerofcode'; +export { default as SiGoogletagmanager, defaultColor as SiGoogletagmanagerHex } from './icons/SiGoogletagmanager'; +export { default as SiGoogletasks, defaultColor as SiGoogletasksHex } from './icons/SiGoogletasks'; +export { default as SiGoogletranslate, defaultColor as SiGoogletranslateHex } from './icons/SiGoogletranslate'; +export { default as SiGoogletv, defaultColor as SiGoogletvHex } from './icons/SiGoogletv'; +export { default as SiGotomeeting, defaultColor as SiGotomeetingHex } from './icons/SiGotomeeting'; +export { default as SiGplv3, defaultColor as SiGplv3Hex } from './icons/SiGplv3'; +export { default as SiGrab, defaultColor as SiGrabHex } from './icons/SiGrab'; +export { default as SiGradio, defaultColor as SiGradioHex } from './icons/SiGradio'; +export { default as SiGradle, defaultColor as SiGradleHex } from './icons/SiGradle'; +export { default as SiGradleplaypublisher, defaultColor as SiGradleplaypublisherHex } from './icons/SiGradleplaypublisher'; +export { default as SiGrafana, defaultColor as SiGrafanaHex } from './icons/SiGrafana'; +export { default as SiGrammarly, defaultColor as SiGrammarlyHex } from './icons/SiGrammarly'; +export { default as SiGrandfrais, defaultColor as SiGrandfraisHex } from './icons/SiGrandfrais'; +export { default as SiGrapheneos, defaultColor as SiGrapheneosHex } from './icons/SiGrapheneos'; +export { default as SiGraphite, defaultColor as SiGraphiteHex } from './icons/SiGraphite'; +export { default as SiGraphiteEditor, defaultColor as SiGraphiteEditorHex } from './icons/SiGraphiteEditor'; +export { default as SiGraphql, defaultColor as SiGraphqlHex } from './icons/SiGraphql'; +export { default as SiGrav, defaultColor as SiGravHex } from './icons/SiGrav'; +export { default as SiGravatar, defaultColor as SiGravatarHex } from './icons/SiGravatar'; +export { default as SiGraylog, defaultColor as SiGraylogHex } from './icons/SiGraylog'; +export { default as SiGreasyfork, defaultColor as SiGreasyforkHex } from './icons/SiGreasyfork'; +export { default as SiGreatlearning, defaultColor as SiGreatlearningHex } from './icons/SiGreatlearning'; +export { default as SiGreenhouse, defaultColor as SiGreenhouseHex } from './icons/SiGreenhouse'; +export { default as SiGreensock, defaultColor as SiGreensockHex } from './icons/SiGreensock'; +export { default as SiGreptimedb, defaultColor as SiGreptimedbHex } from './icons/SiGreptimedb'; +export { default as SiGriddotai, defaultColor as SiGriddotaiHex } from './icons/SiGriddotai'; +export { default as SiGridsome, defaultColor as SiGridsomeHex } from './icons/SiGridsome'; +export { default as SiGrocy, defaultColor as SiGrocyHex } from './icons/SiGrocy'; +export { default as SiGroupme, defaultColor as SiGroupmeHex } from './icons/SiGroupme'; +export { default as SiGroupon, defaultColor as SiGrouponHex } from './icons/SiGroupon'; +export { default as SiGrunt, defaultColor as SiGruntHex } from './icons/SiGrunt'; +export { default as SiGsap, defaultColor as SiGsapHex } from './icons/SiGsap'; +export { default as SiGsk, defaultColor as SiGskHex } from './icons/SiGsk'; +export { default as SiGsma, defaultColor as SiGsmaHex } from './icons/SiGsma'; +export { default as SiGsmarenadotcom, defaultColor as SiGsmarenadotcomHex } from './icons/SiGsmarenadotcom'; +export { default as SiGstreamer, defaultColor as SiGstreamerHex } from './icons/SiGstreamer'; +export { default as SiGtk, defaultColor as SiGtkHex } from './icons/SiGtk'; +export { default as SiGuangzhoumetro, defaultColor as SiGuangzhoumetroHex } from './icons/SiGuangzhoumetro'; +export { default as SiGuilded, defaultColor as SiGuildedHex } from './icons/SiGuilded'; +export { default as SiGuitarpro, defaultColor as SiGuitarproHex } from './icons/SiGuitarpro'; +export { default as SiGulp, defaultColor as SiGulpHex } from './icons/SiGulp'; +export { default as SiGumroad, defaultColor as SiGumroadHex } from './icons/SiGumroad'; +export { default as SiGumtree, defaultColor as SiGumtreeHex } from './icons/SiGumtree'; +export { default as SiGunicorn, defaultColor as SiGunicornHex } from './icons/SiGunicorn'; +export { default as SiGurobi, defaultColor as SiGurobiHex } from './icons/SiGurobi'; +export { default as SiGusto, defaultColor as SiGustoHex } from './icons/SiGusto'; +export { default as SiGutenberg, defaultColor as SiGutenbergHex } from './icons/SiGutenberg'; +export { default as SiH2database, defaultColor as SiH2databaseHex } from './icons/SiH2database'; +export { default as SiH3, defaultColor as SiH3Hex } from './icons/SiH3'; +export { default as SiHabr, defaultColor as SiHabrHex } from './icons/SiHabr'; +export { default as SiHackaday, defaultColor as SiHackadayHex } from './icons/SiHackaday'; +export { default as SiHackclub, defaultColor as SiHackclubHex } from './icons/SiHackclub'; +export { default as SiHackerearth, defaultColor as SiHackerearthHex } from './icons/SiHackerearth'; +export { default as SiHackernoon, defaultColor as SiHackernoonHex } from './icons/SiHackernoon'; +export { default as SiHackerone, defaultColor as SiHackeroneHex } from './icons/SiHackerone'; +export { default as SiHackerrank, defaultColor as SiHackerrankHex } from './icons/SiHackerrank'; +export { default as SiHackmd, defaultColor as SiHackmdHex } from './icons/SiHackmd'; +export { default as SiHackster, defaultColor as SiHacksterHex } from './icons/SiHackster'; +export { default as SiHackthebox, defaultColor as SiHacktheboxHex } from './icons/SiHackthebox'; +export { default as SiHal, defaultColor as SiHalHex } from './icons/SiHal'; +export { default as SiHandlebarsdotjs, defaultColor as SiHandlebarsdotjsHex } from './icons/SiHandlebarsdotjs'; +export { default as SiHandm, defaultColor as SiHandmHex } from './icons/SiHandm'; +export { default as SiHandshake, defaultColor as SiHandshakeHex } from './icons/SiHandshake'; +export { default as SiHandshakeProtocol, defaultColor as SiHandshakeProtocolHex } from './icons/SiHandshakeProtocol'; +export { default as SiHappycow, defaultColor as SiHappycowHex } from './icons/SiHappycow'; +export { default as SiHarbor, defaultColor as SiHarborHex } from './icons/SiHarbor'; +export { default as SiHarmonyos, defaultColor as SiHarmonyosHex } from './icons/SiHarmonyos'; +export { default as SiHashcat, defaultColor as SiHashcatHex } from './icons/SiHashcat'; +export { default as SiHashicorp, defaultColor as SiHashicorpHex } from './icons/SiHashicorp'; +export { default as SiHashnode, defaultColor as SiHashnodeHex } from './icons/SiHashnode'; +export { default as SiHaskell, defaultColor as SiHaskellHex } from './icons/SiHaskell'; +export { default as SiHasura, defaultColor as SiHasuraHex } from './icons/SiHasura'; +export { default as SiHatenabookmark, defaultColor as SiHatenabookmarkHex } from './icons/SiHatenabookmark'; +export { default as SiHaveibeenpwned, defaultColor as SiHaveibeenpwnedHex } from './icons/SiHaveibeenpwned'; +export { default as SiHavells, defaultColor as SiHavellsHex } from './icons/SiHavells'; +export { default as SiHaxe, defaultColor as SiHaxeHex } from './icons/SiHaxe'; +export { default as SiHaystack, defaultColor as SiHaystackHex } from './icons/SiHaystack'; +export { default as SiHbo, defaultColor as SiHboHex } from './icons/SiHbo'; +export { default as SiHbomax, defaultColor as SiHbomaxHex } from './icons/SiHbomax'; +export { default as SiHcl, defaultColor as SiHclHex } from './icons/SiHcl'; +export { default as SiHdfcbank, defaultColor as SiHdfcbankHex } from './icons/SiHdfcbank'; +export { default as SiHeadlessui, defaultColor as SiHeadlessuiHex } from './icons/SiHeadlessui'; +export { default as SiHeadphonezone, defaultColor as SiHeadphonezoneHex } from './icons/SiHeadphonezone'; +export { default as SiHeadspace, defaultColor as SiHeadspaceHex } from './icons/SiHeadspace'; +export { default as SiHearth, defaultColor as SiHearthHex } from './icons/SiHearth'; +export { default as SiHearthisdotat, defaultColor as SiHearthisdotatHex } from './icons/SiHearthisdotat'; +export { default as SiHedera, defaultColor as SiHederaHex } from './icons/SiHedera'; +export { default as SiHedgedoc, defaultColor as SiHedgedocHex } from './icons/SiHedgedoc'; +export { default as SiHelium, defaultColor as SiHeliumHex } from './icons/SiHelium'; +export { default as SiHelix, defaultColor as SiHelixHex } from './icons/SiHelix'; +export { default as SiHellofresh, defaultColor as SiHellofreshHex } from './icons/SiHellofresh'; +export { default as SiHellyhansen, defaultColor as SiHellyhansenHex } from './icons/SiHellyhansen'; +export { default as SiHelm, defaultColor as SiHelmHex } from './icons/SiHelm'; +export { default as SiHelpdesk, defaultColor as SiHelpdeskHex } from './icons/SiHelpdesk'; +export { default as SiHelpscout, defaultColor as SiHelpscoutHex } from './icons/SiHelpscout'; +export { default as SiHepsiemlak, defaultColor as SiHepsiemlakHex } from './icons/SiHepsiemlak'; +export { default as SiHere, defaultColor as SiHereHex } from './icons/SiHere'; +export { default as SiHermes, defaultColor as SiHermesHex } from './icons/SiHermes'; +export { default as SiHeroicgameslauncher, defaultColor as SiHeroicgameslauncherHex } from './icons/SiHeroicgameslauncher'; +export { default as SiHeroui, defaultColor as SiHerouiHex } from './icons/SiHeroui'; +export { default as SiHetzner, defaultColor as SiHetznerHex } from './icons/SiHetzner'; +export { default as SiHevy, defaultColor as SiHevyHex } from './icons/SiHevy'; +export { default as SiHexlet, defaultColor as SiHexletHex } from './icons/SiHexlet'; +export { default as SiHexo, defaultColor as SiHexoHex } from './icons/SiHexo'; +export { default as SiHey, defaultColor as SiHeyHex } from './icons/SiHey'; +export { default as SiHibernate, defaultColor as SiHibernateHex } from './icons/SiHibernate'; +export { default as SiHibob, defaultColor as SiHibobHex } from './icons/SiHibob'; +export { default as SiHilton, defaultColor as SiHiltonHex } from './icons/SiHilton'; +export { default as SiHiltonhotelsandresorts, defaultColor as SiHiltonhotelsandresortsHex } from './icons/SiHiltonhotelsandresorts'; +export { default as SiHitachi, defaultColor as SiHitachiHex } from './icons/SiHitachi'; +export { default as SiHive, defaultColor as SiHiveHex } from './icons/SiHive'; +export { default as SiHiveBlockchain, defaultColor as SiHiveBlockchainHex } from './icons/SiHiveBlockchain'; +export { default as SiHivemq, defaultColor as SiHivemqHex } from './icons/SiHivemq'; +export { default as SiHomarr, defaultColor as SiHomarrHex } from './icons/SiHomarr'; +export { default as SiHomeadvisor, defaultColor as SiHomeadvisorHex } from './icons/SiHomeadvisor'; +export { default as SiHomeassistant, defaultColor as SiHomeassistantHex } from './icons/SiHomeassistant'; +export { default as SiHomeassistantcommunitystore, defaultColor as SiHomeassistantcommunitystoreHex } from './icons/SiHomeassistantcommunitystore'; +export { default as SiHomebrew, defaultColor as SiHomebrewHex } from './icons/SiHomebrew'; +export { default as SiHomebridge, defaultColor as SiHomebridgeHex } from './icons/SiHomebridge'; +export { default as SiHomepage, defaultColor as SiHomepageHex } from './icons/SiHomepage'; +export { default as SiHomify, defaultColor as SiHomifyHex } from './icons/SiHomify'; +export { default as SiHonda, defaultColor as SiHondaHex } from './icons/SiHonda'; +export { default as SiHoney, defaultColor as SiHoneyHex } from './icons/SiHoney'; +export { default as SiHoneybadger, defaultColor as SiHoneybadgerHex } from './icons/SiHoneybadger'; +export { default as SiHoneygain, defaultColor as SiHoneygainHex } from './icons/SiHoneygain'; +export { default as SiHono, defaultColor as SiHonoHex } from './icons/SiHono'; +export { default as SiHonor, defaultColor as SiHonorHex } from './icons/SiHonor'; +export { default as SiHootsuite, defaultColor as SiHootsuiteHex } from './icons/SiHootsuite'; +export { default as SiHoppscotch, defaultColor as SiHoppscotchHex } from './icons/SiHoppscotch'; +export { default as SiHostinger, defaultColor as SiHostingerHex } from './icons/SiHostinger'; +export { default as SiHotelsdotcom, defaultColor as SiHotelsdotcomHex } from './icons/SiHotelsdotcom'; +export { default as SiHotjar, defaultColor as SiHotjarHex } from './icons/SiHotjar'; +export { default as SiHotwire, defaultColor as SiHotwireHex } from './icons/SiHotwire'; +export { default as SiHoudini, defaultColor as SiHoudiniHex } from './icons/SiHoudini'; +export { default as SiHouzz, defaultColor as SiHouzzHex } from './icons/SiHouzz'; +export { default as SiHp, defaultColor as SiHpHex } from './icons/SiHp'; +export { default as SiHsbc, defaultColor as SiHsbcHex } from './icons/SiHsbc'; +export { default as SiHtc, defaultColor as SiHtcHex } from './icons/SiHtc'; +export { default as SiHtcvive, defaultColor as SiHtcviveHex } from './icons/SiHtcvive'; +export { default as SiHtml5, defaultColor as SiHtml5Hex } from './icons/SiHtml5'; +export { default as SiHtmlacademy, defaultColor as SiHtmlacademyHex } from './icons/SiHtmlacademy'; +export { default as SiHtmx, defaultColor as SiHtmxHex } from './icons/SiHtmx'; +export { default as SiHtop, defaultColor as SiHtopHex } from './icons/SiHtop'; +export { default as SiHttpie, defaultColor as SiHttpieHex } from './icons/SiHttpie'; +export { default as SiHuawei, defaultColor as SiHuaweiHex } from './icons/SiHuawei'; +export { default as SiHubspot, defaultColor as SiHubspotHex } from './icons/SiHubspot'; +export { default as SiHuggingface, defaultColor as SiHuggingfaceHex } from './icons/SiHuggingface'; +export { default as SiHugo, defaultColor as SiHugoHex } from './icons/SiHugo'; +export { default as SiHumblebundle, defaultColor as SiHumblebundleHex } from './icons/SiHumblebundle'; +export { default as SiHumhub, defaultColor as SiHumhubHex } from './icons/SiHumhub'; +export { default as SiHungryjacks, defaultColor as SiHungryjacksHex } from './icons/SiHungryjacks'; +export { default as SiHusqvarna, defaultColor as SiHusqvarnaHex } from './icons/SiHusqvarna'; +export { default as SiHyper, defaultColor as SiHyperHex } from './icons/SiHyper'; +export { default as SiHyperskill, defaultColor as SiHyperskillHex } from './icons/SiHyperskill'; +export { default as SiHyperx, defaultColor as SiHyperxHex } from './icons/SiHyperx'; +export { default as SiHypothesis, defaultColor as SiHypothesisHex } from './icons/SiHypothesis'; +export { default as SiHyprland, defaultColor as SiHyprlandHex } from './icons/SiHyprland'; +export { default as SiHyundai, defaultColor as SiHyundaiHex } from './icons/SiHyundai'; +export { default as SiI18next, defaultColor as SiI18nextHex } from './icons/SiI18next'; +export { default as SiI3, defaultColor as SiI3Hex } from './icons/SiI3'; +export { default as SiIata, defaultColor as SiIataHex } from './icons/SiIata'; +export { default as SiIbeacon, defaultColor as SiIbeaconHex } from './icons/SiIbeacon'; +export { default as SiIberia, defaultColor as SiIberiaHex } from './icons/SiIberia'; +export { default as SiIced, defaultColor as SiIcedHex } from './icons/SiIced'; +export { default as SiIceland, defaultColor as SiIcelandHex } from './icons/SiIceland'; +export { default as SiIcicibank, defaultColor as SiIcicibankHex } from './icons/SiIcicibank'; +export { default as SiIcinga, defaultColor as SiIcingaHex } from './icons/SiIcinga'; +export { default as SiIcloud, defaultColor as SiIcloudHex } from './icons/SiIcloud'; +export { default as SiIcomoon, defaultColor as SiIcomoonHex } from './icons/SiIcomoon'; +export { default as SiIcon, defaultColor as SiIconHex } from './icons/SiIcon'; +export { default as SiIconfinder, defaultColor as SiIconfinderHex } from './icons/SiIconfinder'; +export { default as SiIconify, defaultColor as SiIconifyHex } from './icons/SiIconify'; +export { default as SiIconjar, defaultColor as SiIconjarHex } from './icons/SiIconjar'; +export { default as SiIcons8, defaultColor as SiIcons8Hex } from './icons/SiIcons8'; +export { default as SiIcq, defaultColor as SiIcqHex } from './icons/SiIcq'; +export { default as SiIeee, defaultColor as SiIeeeHex } from './icons/SiIeee'; +export { default as SiIfixit, defaultColor as SiIfixitHex } from './icons/SiIfixit'; +export { default as SiIfood, defaultColor as SiIfoodHex } from './icons/SiIfood'; +export { default as SiIfttt, defaultColor as SiIftttHex } from './icons/SiIfttt'; +export { default as SiIgdb, defaultColor as SiIgdbHex } from './icons/SiIgdb'; +export { default as SiIgn, defaultColor as SiIgnHex } from './icons/SiIgn'; +export { default as SiIheartradio, defaultColor as SiIheartradioHex } from './icons/SiIheartradio'; +export { default as SiIkea, defaultColor as SiIkeaHex } from './icons/SiIkea'; +export { default as SiIledefrancemobilites, defaultColor as SiIledefrancemobilitesHex } from './icons/SiIledefrancemobilites'; +export { default as SiIlovepdf, defaultColor as SiIlovepdfHex } from './icons/SiIlovepdf'; +export { default as SiImagedotsc, defaultColor as SiImagedotscHex } from './icons/SiImagedotsc'; +export { default as SiImagej, defaultColor as SiImagejHex } from './icons/SiImagej'; +export { default as SiImagetoolbox, defaultColor as SiImagetoolboxHex } from './icons/SiImagetoolbox'; +export { default as SiImdb, defaultColor as SiImdbHex } from './icons/SiImdb'; +export { default as SiImessage, defaultColor as SiImessageHex } from './icons/SiImessage'; +export { default as SiImgur, defaultColor as SiImgurHex } from './icons/SiImgur'; +export { default as SiImmer, defaultColor as SiImmerHex } from './icons/SiImmer'; +export { default as SiImmersivetranslate, defaultColor as SiImmersivetranslateHex } from './icons/SiImmersivetranslate'; +export { default as SiImmich, defaultColor as SiImmichHex } from './icons/SiImmich'; +export { default as SiImou, defaultColor as SiImouHex } from './icons/SiImou'; +export { default as SiImprovmx, defaultColor as SiImprovmxHex } from './icons/SiImprovmx'; +export { default as SiIndeed, defaultColor as SiIndeedHex } from './icons/SiIndeed'; +export { default as SiIndiansuperleague, defaultColor as SiIndiansuperleagueHex } from './icons/SiIndiansuperleague'; +export { default as SiIndiehackers, defaultColor as SiIndiehackersHex } from './icons/SiIndiehackers'; +export { default as SiIndigo, defaultColor as SiIndigoHex } from './icons/SiIndigo'; +export { default as SiInductiveautomation, defaultColor as SiInductiveautomationHex } from './icons/SiInductiveautomation'; +export { default as SiInertia, defaultColor as SiInertiaHex } from './icons/SiInertia'; +export { default as SiInfiniti, defaultColor as SiInfinitiHex } from './icons/SiInfiniti'; +export { default as SiInfinityfree, defaultColor as SiInfinityfreeHex } from './icons/SiInfinityfree'; +export { default as SiInfluxdb, defaultColor as SiInfluxdbHex } from './icons/SiInfluxdb'; +export { default as SiInfomaniak, defaultColor as SiInfomaniakHex } from './icons/SiInfomaniak'; +export { default as SiInfoq, defaultColor as SiInfoqHex } from './icons/SiInfoq'; +export { default as SiInfosys, defaultColor as SiInfosysHex } from './icons/SiInfosys'; +export { default as SiInfracost, defaultColor as SiInfracostHex } from './icons/SiInfracost'; +export { default as SiInfuse, defaultColor as SiInfuseHex } from './icons/SiInfuse'; +export { default as SiIngress, defaultColor as SiIngressHex } from './icons/SiIngress'; +export { default as SiInkdrop, defaultColor as SiInkdropHex } from './icons/SiInkdrop'; +export { default as SiInkscape, defaultColor as SiInkscapeHex } from './icons/SiInkscape'; +export { default as SiInoreader, defaultColor as SiInoreaderHex } from './icons/SiInoreader'; +export { default as SiInquirer, defaultColor as SiInquirerHex } from './icons/SiInquirer'; +export { default as SiInsomnia, defaultColor as SiInsomniaHex } from './icons/SiInsomnia'; +export { default as SiInspire, defaultColor as SiInspireHex } from './icons/SiInspire'; +export { default as SiInsta360, defaultColor as SiInsta360Hex } from './icons/SiInsta360'; +export { default as SiInstacart, defaultColor as SiInstacartHex } from './icons/SiInstacart'; +export { default as SiInstagram, defaultColor as SiInstagramHex } from './icons/SiInstagram'; +export { default as SiInstapaper, defaultColor as SiInstapaperHex } from './icons/SiInstapaper'; +export { default as SiInstatus, defaultColor as SiInstatusHex } from './icons/SiInstatus'; +export { default as SiInstructables, defaultColor as SiInstructablesHex } from './icons/SiInstructables'; +export { default as SiInstructure, defaultColor as SiInstructureHex } from './icons/SiInstructure'; +export { default as SiIntel, defaultColor as SiIntelHex } from './icons/SiIntel'; +export { default as SiIntellijidea, defaultColor as SiIntellijideaHex } from './icons/SiIntellijidea'; +export { default as SiInteractiondesignfoundation, defaultColor as SiInteractiondesignfoundationHex } from './icons/SiInteractiondesignfoundation'; +export { default as SiInteractjs, defaultColor as SiInteractjsHex } from './icons/SiInteractjs'; +export { default as SiInterbase, defaultColor as SiInterbaseHex } from './icons/SiInterbase'; +export { default as SiIntercom, defaultColor as SiIntercomHex } from './icons/SiIntercom'; +export { default as SiIntermarche, defaultColor as SiIntermarcheHex } from './icons/SiIntermarche'; +export { default as SiInternetarchive, defaultColor as SiInternetarchiveHex } from './icons/SiInternetarchive'; +export { default as SiInternetcomputer, defaultColor as SiInternetcomputerHex } from './icons/SiInternetcomputer'; +export { default as SiIntigriti, defaultColor as SiIntigritiHex } from './icons/SiIntigriti'; +export { default as SiIntuit, defaultColor as SiIntuitHex } from './icons/SiIntuit'; +export { default as SiInvidious, defaultColor as SiInvidiousHex } from './icons/SiInvidious'; +export { default as SiInvoiceninja, defaultColor as SiInvoiceninjaHex } from './icons/SiInvoiceninja'; +export { default as SiIobroker, defaultColor as SiIobrokerHex } from './icons/SiIobroker'; +export { default as SiIonic, defaultColor as SiIonicHex } from './icons/SiIonic'; +export { default as SiIonos, defaultColor as SiIonosHex } from './icons/SiIonos'; +export { default as SiIos, defaultColor as SiIosHex } from './icons/SiIos'; +export { default as SiIota, defaultColor as SiIotaHex } from './icons/SiIota'; +export { default as SiIpfs, defaultColor as SiIpfsHex } from './icons/SiIpfs'; +export { default as SiIris, defaultColor as SiIrisHex } from './icons/SiIris'; +export { default as SiIrobot, defaultColor as SiIrobotHex } from './icons/SiIrobot'; +export { default as SiIsc2, defaultColor as SiIsc2Hex } from './icons/SiIsc2'; +export { default as SiIsro, defaultColor as SiIsroHex } from './icons/SiIsro'; +export { default as SiIssuu, defaultColor as SiIssuuHex } from './icons/SiIssuu'; +export { default as SiIstio, defaultColor as SiIstioHex } from './icons/SiIstio'; +export { default as SiItchdotio, defaultColor as SiItchdotioHex } from './icons/SiItchdotio'; +export { default as SiIterm2, defaultColor as SiIterm2Hex } from './icons/SiIterm2'; +export { default as SiItunes, defaultColor as SiItunesHex } from './icons/SiItunes'; +export { default as SiItvx, defaultColor as SiItvxHex } from './icons/SiItvx'; +export { default as SiIveco, defaultColor as SiIvecoHex } from './icons/SiIveco'; +export { default as SiJabber, defaultColor as SiJabberHex } from './icons/SiJabber'; +export { default as SiJaeger, defaultColor as SiJaegerHex } from './icons/SiJaeger'; +export { default as SiJameson, defaultColor as SiJamesonHex } from './icons/SiJameson'; +export { default as SiJamstack, defaultColor as SiJamstackHex } from './icons/SiJamstack'; +export { default as SiJapanairlines, defaultColor as SiJapanairlinesHex } from './icons/SiJapanairlines'; +export { default as SiJasmine, defaultColor as SiJasmineHex } from './icons/SiJasmine'; +export { default as SiJavascript, defaultColor as SiJavascriptHex } from './icons/SiJavascript'; +export { default as SiJbl, defaultColor as SiJblHex } from './icons/SiJbl'; +export { default as SiJcb, defaultColor as SiJcbHex } from './icons/SiJcb'; +export { default as SiJdoodle, defaultColor as SiJdoodleHex } from './icons/SiJdoodle'; +export { default as SiJeep, defaultColor as SiJeepHex } from './icons/SiJeep'; +export { default as SiJekyll, defaultColor as SiJekyllHex } from './icons/SiJekyll'; +export { default as SiJellyfin, defaultColor as SiJellyfinHex } from './icons/SiJellyfin'; +export { default as SiJenkins, defaultColor as SiJenkinsHex } from './icons/SiJenkins'; +export { default as SiJest, defaultColor as SiJestHex } from './icons/SiJest'; +export { default as SiJet, defaultColor as SiJetHex } from './icons/SiJet'; +export { default as SiJetblue, defaultColor as SiJetblueHex } from './icons/SiJetblue'; +export { default as SiJetbrains, defaultColor as SiJetbrainsHex } from './icons/SiJetbrains'; +export { default as SiJetpackcompose, defaultColor as SiJetpackcomposeHex } from './icons/SiJetpackcompose'; +export { default as SiJfrog, defaultColor as SiJfrogHex } from './icons/SiJfrog'; +export { default as SiJfrogpipelines, defaultColor as SiJfrogpipelinesHex } from './icons/SiJfrogpipelines'; +export { default as SiJhipster, defaultColor as SiJhipsterHex } from './icons/SiJhipster'; +export { default as SiJinja, defaultColor as SiJinjaHex } from './icons/SiJinja'; +export { default as SiJio, defaultColor as SiJioHex } from './icons/SiJio'; +export { default as SiJira, defaultColor as SiJiraHex } from './icons/SiJira'; +export { default as SiJirasoftware, defaultColor as SiJirasoftwareHex } from './icons/SiJirasoftware'; +export { default as SiJitpack, defaultColor as SiJitpackHex } from './icons/SiJitpack'; +export { default as SiJitsi, defaultColor as SiJitsiHex } from './icons/SiJitsi'; +export { default as SiJohndeere, defaultColor as SiJohndeereHex } from './icons/SiJohndeere'; +export { default as SiJoomla, defaultColor as SiJoomlaHex } from './icons/SiJoomla'; +export { default as SiJoplin, defaultColor as SiJoplinHex } from './icons/SiJoplin'; +export { default as SiJordan, defaultColor as SiJordanHex } from './icons/SiJordan'; +export { default as SiJouav, defaultColor as SiJouavHex } from './icons/SiJouav'; +export { default as SiJovian, defaultColor as SiJovianHex } from './icons/SiJovian'; +export { default as SiJpeg, defaultColor as SiJpegHex } from './icons/SiJpeg'; +export { default as SiJquery, defaultColor as SiJqueryHex } from './icons/SiJquery'; +export { default as SiJrgroup, defaultColor as SiJrgroupHex } from './icons/SiJrgroup'; +export { default as SiJsdelivr, defaultColor as SiJsdelivrHex } from './icons/SiJsdelivr'; +export { default as SiJsfiddle, defaultColor as SiJsfiddleHex } from './icons/SiJsfiddle'; +export { default as SiJson, defaultColor as SiJsonHex } from './icons/SiJson'; +export { default as SiJsonwebtokens, defaultColor as SiJsonwebtokensHex } from './icons/SiJsonwebtokens'; +export { default as SiJsr, defaultColor as SiJsrHex } from './icons/SiJsr'; +export { default as SiJss, defaultColor as SiJssHex } from './icons/SiJss'; +export { default as SiJuce, defaultColor as SiJuceHex } from './icons/SiJuce'; +export { default as SiJuejin, defaultColor as SiJuejinHex } from './icons/SiJuejin'; +export { default as SiJuke, defaultColor as SiJukeHex } from './icons/SiJuke'; +export { default as SiJulia, defaultColor as SiJuliaHex } from './icons/SiJulia'; +export { default as SiJunipernetworks, defaultColor as SiJunipernetworksHex } from './icons/SiJunipernetworks'; +export { default as SiJunit5, defaultColor as SiJunit5Hex } from './icons/SiJunit5'; +export { default as SiJupyter, defaultColor as SiJupyterHex } from './icons/SiJupyter'; +export { default as SiJust, defaultColor as SiJustHex } from './icons/SiJust'; +export { default as SiJusteat, defaultColor as SiJusteatHex } from './icons/SiJusteat'; +export { default as SiJustgiving, defaultColor as SiJustgivingHex } from './icons/SiJustgiving'; +export { default as SiK3s, defaultColor as SiK3sHex } from './icons/SiK3s'; +export { default as SiK6, defaultColor as SiK6Hex } from './icons/SiK6'; +export { default as SiKaggle, defaultColor as SiKaggleHex } from './icons/SiKaggle'; +export { default as SiKagi, defaultColor as SiKagiHex } from './icons/SiKagi'; +export { default as SiKahoot, defaultColor as SiKahootHex } from './icons/SiKahoot'; +export { default as SiKaios, defaultColor as SiKaiosHex } from './icons/SiKaios'; +export { default as SiKakao, defaultColor as SiKakaoHex } from './icons/SiKakao'; +export { default as SiKakaotalk, defaultColor as SiKakaotalkHex } from './icons/SiKakaotalk'; +export { default as SiKalilinux, defaultColor as SiKalilinuxHex } from './icons/SiKalilinux'; +export { default as SiKamailio, defaultColor as SiKamailioHex } from './icons/SiKamailio'; +export { default as SiKando, defaultColor as SiKandoHex } from './icons/SiKando'; +export { default as SiKaniko, defaultColor as SiKanikoHex } from './icons/SiKaniko'; +export { default as SiKarlsruherverkehrsverbund, defaultColor as SiKarlsruherverkehrsverbundHex } from './icons/SiKarlsruherverkehrsverbund'; +export { default as SiKasasmart, defaultColor as SiKasasmartHex } from './icons/SiKasasmart'; +export { default as SiKashflow, defaultColor as SiKashflowHex } from './icons/SiKashflow'; +export { default as SiKaspersky, defaultColor as SiKasperskyHex } from './icons/SiKaspersky'; +export { default as SiKatana, defaultColor as SiKatanaHex } from './icons/SiKatana'; +export { default as SiKaufland, defaultColor as SiKauflandHex } from './icons/SiKaufland'; +export { default as SiKde, defaultColor as SiKdeHex } from './icons/SiKde'; +export { default as SiKdeneon, defaultColor as SiKdeneonHex } from './icons/SiKdeneon'; +export { default as SiKdenlive, defaultColor as SiKdenliveHex } from './icons/SiKdenlive'; +export { default as SiKdeplasma, defaultColor as SiKdeplasmaHex } from './icons/SiKdeplasma'; +export { default as SiKedro, defaultColor as SiKedroHex } from './icons/SiKedro'; +export { default as SiKeenetic, defaultColor as SiKeeneticHex } from './icons/SiKeenetic'; +export { default as SiKeepachangelog, defaultColor as SiKeepachangelogHex } from './icons/SiKeepachangelog'; +export { default as SiKeepassxc, defaultColor as SiKeepassxcHex } from './icons/SiKeepassxc'; +export { default as SiKeeper, defaultColor as SiKeeperHex } from './icons/SiKeeper'; +export { default as SiKeeweb, defaultColor as SiKeewebHex } from './icons/SiKeeweb'; +export { default as SiKenmei, defaultColor as SiKenmeiHex } from './icons/SiKenmei'; +export { default as SiKentico, defaultColor as SiKenticoHex } from './icons/SiKentico'; +export { default as SiKeploy, defaultColor as SiKeployHex } from './icons/SiKeploy'; +export { default as SiKeras, defaultColor as SiKerasHex } from './icons/SiKeras'; +export { default as SiKeybase, defaultColor as SiKeybaseHex } from './icons/SiKeybase'; +export { default as SiKeycdn, defaultColor as SiKeycdnHex } from './icons/SiKeycdn'; +export { default as SiKeycloak, defaultColor as SiKeycloakHex } from './icons/SiKeycloak'; +export { default as SiKeystone, defaultColor as SiKeystoneHex } from './icons/SiKeystone'; +export { default as SiKfc, defaultColor as SiKfcHex } from './icons/SiKfc'; +export { default as SiKhanacademy, defaultColor as SiKhanacademyHex } from './icons/SiKhanacademy'; +export { default as SiKhronosgroup, defaultColor as SiKhronosgroupHex } from './icons/SiKhronosgroup'; +export { default as SiKia, defaultColor as SiKiaHex } from './icons/SiKia'; +export { default as SiKibana, defaultColor as SiKibanaHex } from './icons/SiKibana'; +export { default as SiKicad, defaultColor as SiKicadHex } from './icons/SiKicad'; +export { default as SiKick, defaultColor as SiKickHex } from './icons/SiKick'; +export { default as SiKickstarter, defaultColor as SiKickstarterHex } from './icons/SiKickstarter'; +export { default as SiKik, defaultColor as SiKikHex } from './icons/SiKik'; +export { default as SiKingstontechnology, defaultColor as SiKingstontechnologyHex } from './icons/SiKingstontechnology'; +export { default as SiKinopoisk, defaultColor as SiKinopoiskHex } from './icons/SiKinopoisk'; +export { default as SiKinsta, defaultColor as SiKinstaHex } from './icons/SiKinsta'; +export { default as SiKirby, defaultColor as SiKirbyHex } from './icons/SiKirby'; +export { default as SiKit, defaultColor as SiKitHex } from './icons/SiKit'; +export { default as SiKitsu, defaultColor as SiKitsuHex } from './icons/SiKitsu'; +export { default as SiKiwix, defaultColor as SiKiwixHex } from './icons/SiKiwix'; +export { default as SiKlarna, defaultColor as SiKlarnaHex } from './icons/SiKlarna'; +export { default as SiKleinanzeigen, defaultColor as SiKleinanzeigenHex } from './icons/SiKleinanzeigen'; +export { default as SiKlm, defaultColor as SiKlmHex } from './icons/SiKlm'; +export { default as SiKlook, defaultColor as SiKlookHex } from './icons/SiKlook'; +export { default as SiKnative, defaultColor as SiKnativeHex } from './icons/SiKnative'; +export { default as SiKnexdotjs, defaultColor as SiKnexdotjsHex } from './icons/SiKnexdotjs'; +export { default as SiKnime, defaultColor as SiKnimeHex } from './icons/SiKnime'; +export { default as SiKnip, defaultColor as SiKnipHex } from './icons/SiKnip'; +export { default as SiKnowledgebase, defaultColor as SiKnowledgebaseHex } from './icons/SiKnowledgebase'; +export { default as SiKnown, defaultColor as SiKnownHex } from './icons/SiKnown'; +export { default as SiKoa, defaultColor as SiKoaHex } from './icons/SiKoa'; +export { default as SiKoc, defaultColor as SiKocHex } from './icons/SiKoc'; +export { default as SiKodak, defaultColor as SiKodakHex } from './icons/SiKodak'; +export { default as SiKodi, defaultColor as SiKodiHex } from './icons/SiKodi'; +export { default as SiKodular, defaultColor as SiKodularHex } from './icons/SiKodular'; +export { default as SiKoenigsegg, defaultColor as SiKoenigseggHex } from './icons/SiKoenigsegg'; +export { default as SiKofax, defaultColor as SiKofaxHex } from './icons/SiKofax'; +export { default as SiKofi, defaultColor as SiKofiHex } from './icons/SiKofi'; +export { default as SiKomoot, defaultColor as SiKomootHex } from './icons/SiKomoot'; +export { default as SiKonami, defaultColor as SiKonamiHex } from './icons/SiKonami'; +export { default as SiKong, defaultColor as SiKongHex } from './icons/SiKong'; +export { default as SiKongregate, defaultColor as SiKongregateHex } from './icons/SiKongregate'; +export { default as SiKonva, defaultColor as SiKonvaHex } from './icons/SiKonva'; +export { default as SiKoreader, defaultColor as SiKoreaderHex } from './icons/SiKoreader'; +export { default as SiKotlin, defaultColor as SiKotlinHex } from './icons/SiKotlin'; +export { default as SiKoyeb, defaultColor as SiKoyebHex } from './icons/SiKoyeb'; +export { default as SiKred, defaultColor as SiKredHex } from './icons/SiKred'; +export { default as SiKrita, defaultColor as SiKritaHex } from './icons/SiKrita'; +export { default as SiKtm, defaultColor as SiKtmHex } from './icons/SiKtm'; +export { default as SiKtor, defaultColor as SiKtorHex } from './icons/SiKtor'; +export { default as SiKuaishou, defaultColor as SiKuaishouHex } from './icons/SiKuaishou'; +export { default as SiKubernetes, defaultColor as SiKubernetesHex } from './icons/SiKubernetes'; +export { default as SiKubespray, defaultColor as SiKubesprayHex } from './icons/SiKubespray'; +export { default as SiKubuntu, defaultColor as SiKubuntuHex } from './icons/SiKubuntu'; +export { default as SiKucoin, defaultColor as SiKucoinHex } from './icons/SiKucoin'; +export { default as SiKueski, defaultColor as SiKueskiHex } from './icons/SiKueski'; +export { default as SiKuma, defaultColor as SiKumaHex } from './icons/SiKuma'; +export { default as SiKununu, defaultColor as SiKununuHex } from './icons/SiKununu'; +export { default as SiKuula, defaultColor as SiKuulaHex } from './icons/SiKuula'; +export { default as SiKx, defaultColor as SiKxHex } from './icons/SiKx'; +export { default as SiKyocera, defaultColor as SiKyoceraHex } from './icons/SiKyocera'; +export { default as SiLabex, defaultColor as SiLabexHex } from './icons/SiLabex'; +export { default as SiLabview, defaultColor as SiLabviewHex } from './icons/SiLabview'; +export { default as SiLada, defaultColor as SiLadaHex } from './icons/SiLada'; +export { default as SiLamborghini, defaultColor as SiLamborghiniHex } from './icons/SiLamborghini'; +export { default as SiLangchain, defaultColor as SiLangchainHex } from './icons/SiLangchain'; +export { default as SiLangflow, defaultColor as SiLangflowHex } from './icons/SiLangflow'; +export { default as SiLanggraph, defaultColor as SiLanggraphHex } from './icons/SiLanggraph'; +export { default as SiLanguagetool, defaultColor as SiLanguagetoolHex } from './icons/SiLanguagetool'; +export { default as SiLapce, defaultColor as SiLapceHex } from './icons/SiLapce'; +export { default as SiLaragon, defaultColor as SiLaragonHex } from './icons/SiLaragon'; +export { default as SiLaravel, defaultColor as SiLaravelHex } from './icons/SiLaravel'; +export { default as SiLaravelhorizon, defaultColor as SiLaravelhorizonHex } from './icons/SiLaravelhorizon'; +export { default as SiLaravelnova, defaultColor as SiLaravelnovaHex } from './icons/SiLaravelnova'; +export { default as SiLastdotfm, defaultColor as SiLastdotfmHex } from './icons/SiLastdotfm'; +export { default as SiLastpass, defaultColor as SiLastpassHex } from './icons/SiLastpass'; +export { default as SiLatex, defaultColor as SiLatexHex } from './icons/SiLatex'; +export { default as SiLaunchpad, defaultColor as SiLaunchpadHex } from './icons/SiLaunchpad'; +export { default as SiLazarus, defaultColor as SiLazarusHex } from './icons/SiLazarus'; +export { default as SiLazyvim, defaultColor as SiLazyvimHex } from './icons/SiLazyvim'; +export { default as SiLbry, defaultColor as SiLbryHex } from './icons/SiLbry'; +export { default as SiLeaderprice, defaultColor as SiLeaderpriceHex } from './icons/SiLeaderprice'; +export { default as SiLeaflet, defaultColor as SiLeafletHex } from './icons/SiLeaflet'; +export { default as SiLeagueoflegends, defaultColor as SiLeagueoflegendsHex } from './icons/SiLeagueoflegends'; +export { default as SiLeanpub, defaultColor as SiLeanpubHex } from './icons/SiLeanpub'; +export { default as SiLeetcode, defaultColor as SiLeetcodeHex } from './icons/SiLeetcode'; +export { default as SiLefthook, defaultColor as SiLefthookHex } from './icons/SiLefthook'; +export { default as SiLegacygames, defaultColor as SiLegacygamesHex } from './icons/SiLegacygames'; +export { default as SiLeica, defaultColor as SiLeicaHex } from './icons/SiLeica'; +export { default as SiLemmy, defaultColor as SiLemmyHex } from './icons/SiLemmy'; +export { default as SiLemonsqueezy, defaultColor as SiLemonsqueezyHex } from './icons/SiLemonsqueezy'; +export { default as SiLenovo, defaultColor as SiLenovoHex } from './icons/SiLenovo'; +export { default as SiLens, defaultColor as SiLensHex } from './icons/SiLens'; +export { default as SiLeptos, defaultColor as SiLeptosHex } from './icons/SiLeptos'; +export { default as SiLequipe, defaultColor as SiLequipeHex } from './icons/SiLequipe'; +export { default as SiLerna, defaultColor as SiLernaHex } from './icons/SiLerna'; +export { default as SiLeroymerlin, defaultColor as SiLeroymerlinHex } from './icons/SiLeroymerlin'; +export { default as SiLeslibraires, defaultColor as SiLeslibrairesHex } from './icons/SiLeslibraires'; +export { default as SiLess, defaultColor as SiLessHex } from './icons/SiLess'; +export { default as SiLetsencrypt, defaultColor as SiLetsencryptHex } from './icons/SiLetsencrypt'; +export { default as SiLetterboxd, defaultColor as SiLetterboxdHex } from './icons/SiLetterboxd'; +export { default as SiLevelsdotfyi, defaultColor as SiLevelsdotfyiHex } from './icons/SiLevelsdotfyi'; +export { default as SiLg, defaultColor as SiLgHex } from './icons/SiLg'; +export { default as SiLiberadotchat, defaultColor as SiLiberadotchatHex } from './icons/SiLiberadotchat'; +export { default as SiLiberapay, defaultColor as SiLiberapayHex } from './icons/SiLiberapay'; +export { default as SiLibrariesdotio, defaultColor as SiLibrariesdotioHex } from './icons/SiLibrariesdotio'; +export { default as SiLibrarything, defaultColor as SiLibrarythingHex } from './icons/SiLibrarything'; +export { default as SiLibreoffice, defaultColor as SiLibreofficeHex } from './icons/SiLibreoffice'; +export { default as SiLibreofficebase, defaultColor as SiLibreofficebaseHex } from './icons/SiLibreofficebase'; +export { default as SiLibreofficecalc, defaultColor as SiLibreofficecalcHex } from './icons/SiLibreofficecalc'; +export { default as SiLibreofficedraw, defaultColor as SiLibreofficedrawHex } from './icons/SiLibreofficedraw'; +export { default as SiLibreofficeimpress, defaultColor as SiLibreofficeimpressHex } from './icons/SiLibreofficeimpress'; +export { default as SiLibreofficemath, defaultColor as SiLibreofficemathHex } from './icons/SiLibreofficemath'; +export { default as SiLibreofficewriter, defaultColor as SiLibreofficewriterHex } from './icons/SiLibreofficewriter'; +export { default as SiLibretranslate, defaultColor as SiLibretranslateHex } from './icons/SiLibretranslate'; +export { default as SiLibretube, defaultColor as SiLibretubeHex } from './icons/SiLibretube'; +export { default as SiLibrewolf, defaultColor as SiLibrewolfHex } from './icons/SiLibrewolf'; +export { default as SiLibuv, defaultColor as SiLibuvHex } from './icons/SiLibuv'; +export { default as SiLichess, defaultColor as SiLichessHex } from './icons/SiLichess'; +export { default as SiLidl, defaultColor as SiLidlHex } from './icons/SiLidl'; +export { default as SiLifx, defaultColor as SiLifxHex } from './icons/SiLifx'; +export { default as SiLightburn, defaultColor as SiLightburnHex } from './icons/SiLightburn'; +export { default as SiLighthouse, defaultColor as SiLighthouseHex } from './icons/SiLighthouse'; +export { default as SiLightning, defaultColor as SiLightningHex } from './icons/SiLightning'; +export { default as SiLimesurvey, defaultColor as SiLimesurveyHex } from './icons/SiLimesurvey'; +export { default as SiLine, defaultColor as SiLineHex } from './icons/SiLine'; +export { default as SiLineageos, defaultColor as SiLineageosHex } from './icons/SiLineageos'; +export { default as SiLinear, defaultColor as SiLinearHex } from './icons/SiLinear'; +export { default as SiLining, defaultColor as SiLiningHex } from './icons/SiLining'; +export { default as SiLinkerd, defaultColor as SiLinkerdHex } from './icons/SiLinkerd'; +export { default as SiLinkfire, defaultColor as SiLinkfireHex } from './icons/SiLinkfire'; +export { default as SiLinksys, defaultColor as SiLinksysHex } from './icons/SiLinksys'; +export { default as SiLinktree, defaultColor as SiLinktreeHex } from './icons/SiLinktree'; +export { default as SiLinphone, defaultColor as SiLinphoneHex } from './icons/SiLinphone'; +export { default as SiLintcode, defaultColor as SiLintcodeHex } from './icons/SiLintcode'; +export { default as SiLinux, defaultColor as SiLinuxHex } from './icons/SiLinux'; +export { default as SiLinuxcontainers, defaultColor as SiLinuxcontainersHex } from './icons/SiLinuxcontainers'; +export { default as SiLinuxfoundation, defaultColor as SiLinuxfoundationHex } from './icons/SiLinuxfoundation'; +export { default as SiLinuxmint, defaultColor as SiLinuxmintHex } from './icons/SiLinuxmint'; +export { default as SiLinuxprofessionalinstitute, defaultColor as SiLinuxprofessionalinstituteHex } from './icons/SiLinuxprofessionalinstitute'; +export { default as SiLinuxserver, defaultColor as SiLinuxserverHex } from './icons/SiLinuxserver'; +export { default as SiLionair, defaultColor as SiLionairHex } from './icons/SiLionair'; +export { default as SiLiquibase, defaultColor as SiLiquibaseHex } from './icons/SiLiquibase'; +export { default as SiListenhub, defaultColor as SiListenhubHex } from './icons/SiListenhub'; +export { default as SiListmonk, defaultColor as SiListmonkHex } from './icons/SiListmonk'; +export { default as SiLit, defaultColor as SiLitHex } from './icons/SiLit'; +export { default as SiLitecoin, defaultColor as SiLitecoinHex } from './icons/SiLitecoin'; +export { default as SiLiteral, defaultColor as SiLiteralHex } from './icons/SiLiteral'; +export { default as SiLitiengine, defaultColor as SiLitiengineHex } from './icons/SiLitiengine'; +export { default as SiLivechat, defaultColor as SiLivechatHex } from './icons/SiLivechat'; +export { default as SiLivejournal, defaultColor as SiLivejournalHex } from './icons/SiLivejournal'; +export { default as SiLivekit, defaultColor as SiLivekitHex } from './icons/SiLivekit'; +export { default as SiLivewire, defaultColor as SiLivewireHex } from './icons/SiLivewire'; +export { default as SiLlvm, defaultColor as SiLlvmHex } from './icons/SiLlvm'; +export { default as SiLmms, defaultColor as SiLmmsHex } from './icons/SiLmms'; +export { default as SiLobsters, defaultColor as SiLobstersHex } from './icons/SiLobsters'; +export { default as SiLocal, defaultColor as SiLocalHex } from './icons/SiLocal'; +export { default as SiLocalsend, defaultColor as SiLocalsendHex } from './icons/SiLocalsend'; +export { default as SiLocalxpose, defaultColor as SiLocalxposeHex } from './icons/SiLocalxpose'; +export { default as SiLodash, defaultColor as SiLodashHex } from './icons/SiLodash'; +export { default as SiLogmein, defaultColor as SiLogmeinHex } from './icons/SiLogmein'; +export { default as SiLogseq, defaultColor as SiLogseqHex } from './icons/SiLogseq'; +export { default as SiLogstash, defaultColor as SiLogstashHex } from './icons/SiLogstash'; +export { default as SiLooker, defaultColor as SiLookerHex } from './icons/SiLooker'; +export { default as SiLoom, defaultColor as SiLoomHex } from './icons/SiLoom'; +export { default as SiLoop, defaultColor as SiLoopHex } from './icons/SiLoop'; +export { default as SiLoopback, defaultColor as SiLoopbackHex } from './icons/SiLoopback'; +export { default as SiLootcrate, defaultColor as SiLootcrateHex } from './icons/SiLootcrate'; +export { default as SiLospec, defaultColor as SiLospecHex } from './icons/SiLospec'; +export { default as SiLotpolishairlines, defaultColor as SiLotpolishairlinesHex } from './icons/SiLotpolishairlines'; +export { default as SiLottiefiles, defaultColor as SiLottiefilesHex } from './icons/SiLottiefiles'; +export { default as SiLtspice, defaultColor as SiLtspiceHex } from './icons/SiLtspice'; +export { default as SiLua, defaultColor as SiLuaHex } from './icons/SiLua'; +export { default as SiLuanti, defaultColor as SiLuantiHex } from './icons/SiLuanti'; +export { default as SiLuau, defaultColor as SiLuauHex } from './icons/SiLuau'; +export { default as SiLubuntu, defaultColor as SiLubuntuHex } from './icons/SiLubuntu'; +export { default as SiLucia, defaultColor as SiLuciaHex } from './icons/SiLucia'; +export { default as SiLucid, defaultColor as SiLucidHex } from './icons/SiLucid'; +export { default as SiLucide, defaultColor as SiLucideHex } from './icons/SiLucide'; +export { default as SiLudwig, defaultColor as SiLudwigHex } from './icons/SiLudwig'; +export { default as SiLufthansa, defaultColor as SiLufthansaHex } from './icons/SiLufthansa'; +export { default as SiLumen, defaultColor as SiLumenHex } from './icons/SiLumen'; +export { default as SiLunacy, defaultColor as SiLunacyHex } from './icons/SiLunacy'; +export { default as SiLuogu, defaultColor as SiLuoguHex } from './icons/SiLuogu'; +export { default as SiLutris, defaultColor as SiLutrisHex } from './icons/SiLutris'; +export { default as SiLvgl, defaultColor as SiLvglHex } from './icons/SiLvgl'; +export { default as SiLydia, defaultColor as SiLydiaHex } from './icons/SiLydia'; +export { default as SiLyft, defaultColor as SiLyftHex } from './icons/SiLyft'; +export { default as SiMaas, defaultColor as SiMaasHex } from './icons/SiMaas'; +export { default as SiMacos, defaultColor as SiMacosHex } from './icons/SiMacos'; +export { default as SiMacpaw, defaultColor as SiMacpawHex } from './icons/SiMacpaw'; +export { default as SiMacports, defaultColor as SiMacportsHex } from './icons/SiMacports'; +export { default as SiMacys, defaultColor as SiMacysHex } from './icons/SiMacys'; +export { default as SiMagasinsu, defaultColor as SiMagasinsuHex } from './icons/SiMagasinsu'; +export { default as SiMagic, defaultColor as SiMagicHex } from './icons/SiMagic'; +export { default as SiMagisk, defaultColor as SiMagiskHex } from './icons/SiMagisk'; +export { default as SiMahindra, defaultColor as SiMahindraHex } from './icons/SiMahindra'; +export { default as SiMailbox, defaultColor as SiMailboxHex } from './icons/SiMailbox'; +export { default as SiMailchimp, defaultColor as SiMailchimpHex } from './icons/SiMailchimp'; +export { default as SiMaildotcom, defaultColor as SiMaildotcomHex } from './icons/SiMaildotcom'; +export { default as SiMaildotru, defaultColor as SiMaildotruHex } from './icons/SiMaildotru'; +export { default as SiMailgun, defaultColor as SiMailgunHex } from './icons/SiMailgun'; +export { default as SiMailtrap, defaultColor as SiMailtrapHex } from './icons/SiMailtrap'; +export { default as SiMainwp, defaultColor as SiMainwpHex } from './icons/SiMainwp'; +export { default as SiMajorleaguehacking, defaultColor as SiMajorleaguehackingHex } from './icons/SiMajorleaguehacking'; +export { default as SiMake, defaultColor as SiMakeHex } from './icons/SiMake'; +export { default as SiMakerbot, defaultColor as SiMakerbotHex } from './icons/SiMakerbot'; +export { default as SiMalt, defaultColor as SiMaltHex } from './icons/SiMalt'; +export { default as SiMalwarebytes, defaultColor as SiMalwarebytesHex } from './icons/SiMalwarebytes'; +export { default as SiMambaui, defaultColor as SiMambauiHex } from './icons/SiMambaui'; +export { default as SiMamp, defaultColor as SiMampHex } from './icons/SiMamp'; +export { default as SiMan, defaultColor as SiManHex } from './icons/SiMan'; +export { default as SiManageiq, defaultColor as SiManageiqHex } from './icons/SiManageiq'; +export { default as SiMangacollec, defaultColor as SiMangacollecHex } from './icons/SiMangacollec'; +export { default as SiMangaupdates, defaultColor as SiMangaupdatesHex } from './icons/SiMangaupdates'; +export { default as SiManjaro, defaultColor as SiManjaroHex } from './icons/SiManjaro'; +export { default as SiMantine, defaultColor as SiMantineHex } from './icons/SiMantine'; +export { default as SiMapbox, defaultColor as SiMapboxHex } from './icons/SiMapbox'; +export { default as SiMapillary, defaultColor as SiMapillaryHex } from './icons/SiMapillary'; +export { default as SiMaplibre, defaultColor as SiMaplibreHex } from './icons/SiMaplibre'; +export { default as SiMaptiler, defaultColor as SiMaptilerHex } from './icons/SiMaptiler'; +export { default as SiMariadb, defaultColor as SiMariadbHex } from './icons/SiMariadb'; +export { default as SiMariadbfoundation, defaultColor as SiMariadbfoundationHex } from './icons/SiMariadbfoundation'; +export { default as SiMarkdown, defaultColor as SiMarkdownHex } from './icons/SiMarkdown'; +export { default as SiMarko, defaultColor as SiMarkoHex } from './icons/SiMarko'; +export { default as SiMarriott, defaultColor as SiMarriottHex } from './icons/SiMarriott'; +export { default as SiMarvelapp, defaultColor as SiMarvelappHex } from './icons/SiMarvelapp'; +export { default as SiMaserati, defaultColor as SiMaseratiHex } from './icons/SiMaserati'; +export { default as SiMastercard, defaultColor as SiMastercardHex } from './icons/SiMastercard'; +export { default as SiMastercomfig, defaultColor as SiMastercomfigHex } from './icons/SiMastercomfig'; +export { default as SiMastodon, defaultColor as SiMastodonHex } from './icons/SiMastodon'; +export { default as SiMaterialdesign, defaultColor as SiMaterialdesignHex } from './icons/SiMaterialdesign'; +export { default as SiMaterialdesignicons, defaultColor as SiMaterialdesigniconsHex } from './icons/SiMaterialdesignicons'; +export { default as SiMaterialformkdocs, defaultColor as SiMaterialformkdocsHex } from './icons/SiMaterialformkdocs'; +export { default as SiMatillion, defaultColor as SiMatillionHex } from './icons/SiMatillion'; +export { default as SiMatomo, defaultColor as SiMatomoHex } from './icons/SiMatomo'; +export { default as SiMatrix, defaultColor as SiMatrixHex } from './icons/SiMatrix'; +export { default as SiMatterdotjs, defaultColor as SiMatterdotjsHex } from './icons/SiMatterdotjs'; +export { default as SiMattermost, defaultColor as SiMattermostHex } from './icons/SiMattermost'; +export { default as SiMatternet, defaultColor as SiMatternetHex } from './icons/SiMatternet'; +export { default as SiMautic, defaultColor as SiMauticHex } from './icons/SiMautic'; +export { default as SiMax, defaultColor as SiMaxHex } from './icons/SiMax'; +export { default as SiMaxplanckgesellschaft, defaultColor as SiMaxplanckgesellschaftHex } from './icons/SiMaxplanckgesellschaft'; +export { default as SiMaytag, defaultColor as SiMaytagHex } from './icons/SiMaytag'; +export { default as SiMazda, defaultColor as SiMazdaHex } from './icons/SiMazda'; +export { default as SiMaze, defaultColor as SiMazeHex } from './icons/SiMaze'; +export { default as SiMcafee, defaultColor as SiMcafeeHex } from './icons/SiMcafee'; +export { default as SiMcdonalds, defaultColor as SiMcdonaldsHex } from './icons/SiMcdonalds'; +export { default as SiMclaren, defaultColor as SiMclarenHex } from './icons/SiMclaren'; +export { default as SiMdblist, defaultColor as SiMdblistHex } from './icons/SiMdblist'; +export { default as SiMdbook, defaultColor as SiMdbookHex } from './icons/SiMdbook'; +export { default as SiMdnwebdocs, defaultColor as SiMdnwebdocsHex } from './icons/SiMdnwebdocs'; +export { default as SiMdx, defaultColor as SiMdxHex } from './icons/SiMdx'; +export { default as SiMealie, defaultColor as SiMealieHex } from './icons/SiMealie'; +export { default as SiMediafire, defaultColor as SiMediafireHex } from './icons/SiMediafire'; +export { default as SiMediamarkt, defaultColor as SiMediamarktHex } from './icons/SiMediamarkt'; +export { default as SiMediapipe, defaultColor as SiMediapipeHex } from './icons/SiMediapipe'; +export { default as SiMediatek, defaultColor as SiMediatekHex } from './icons/SiMediatek'; +export { default as SiMedibangpaint, defaultColor as SiMedibangpaintHex } from './icons/SiMedibangpaint'; +export { default as SiMedium, defaultColor as SiMediumHex } from './icons/SiMedium'; +export { default as SiMedusa, defaultColor as SiMedusaHex } from './icons/SiMedusa'; +export { default as SiMeetup, defaultColor as SiMeetupHex } from './icons/SiMeetup'; +export { default as SiMega, defaultColor as SiMegaHex } from './icons/SiMega'; +export { default as SiMeilisearch, defaultColor as SiMeilisearchHex } from './icons/SiMeilisearch'; +export { default as SiMeituan, defaultColor as SiMeituanHex } from './icons/SiMeituan'; +export { default as SiMeizu, defaultColor as SiMeizuHex } from './icons/SiMeizu'; +export { default as SiMendeley, defaultColor as SiMendeleyHex } from './icons/SiMendeley'; +export { default as SiMentorcruise, defaultColor as SiMentorcruiseHex } from './icons/SiMentorcruise'; +export { default as SiMercadopago, defaultColor as SiMercadopagoHex } from './icons/SiMercadopago'; +export { default as SiMerck, defaultColor as SiMerckHex } from './icons/SiMerck'; +export { default as SiMercurial, defaultColor as SiMercurialHex } from './icons/SiMercurial'; +export { default as SiMermaid, defaultColor as SiMermaidHex } from './icons/SiMermaid'; +export { default as SiMessenger, defaultColor as SiMessengerHex } from './icons/SiMessenger'; +export { default as SiMeta, defaultColor as SiMetaHex } from './icons/SiMeta'; +export { default as SiMetabase, defaultColor as SiMetabaseHex } from './icons/SiMetabase'; +export { default as SiMetacritic, defaultColor as SiMetacriticHex } from './icons/SiMetacritic'; +export { default as SiMetafilter, defaultColor as SiMetafilterHex } from './icons/SiMetafilter'; +export { default as SiMetager, defaultColor as SiMetagerHex } from './icons/SiMetager'; +export { default as SiMetasploit, defaultColor as SiMetasploitHex } from './icons/SiMetasploit'; +export { default as SiMeteor, defaultColor as SiMeteorHex } from './icons/SiMeteor'; +export { default as SiMetro, defaultColor as SiMetroHex } from './icons/SiMetro'; +export { default as SiMetrodelaciudaddemexico, defaultColor as SiMetrodelaciudaddemexicoHex } from './icons/SiMetrodelaciudaddemexico'; +export { default as SiMetrodemadrid, defaultColor as SiMetrodemadridHex } from './icons/SiMetrodemadrid'; +export { default as SiMetrodeparis, defaultColor as SiMetrodeparisHex } from './icons/SiMetrodeparis'; +export { default as SiMewe, defaultColor as SiMeweHex } from './icons/SiMewe'; +export { default as SiMezmo, defaultColor as SiMezmoHex } from './icons/SiMezmo'; +export { default as SiMg, defaultColor as SiMgHex } from './icons/SiMg'; +export { default as SiMicrobit, defaultColor as SiMicrobitHex } from './icons/SiMicrobit'; +export { default as SiMicrodotblog, defaultColor as SiMicrodotblogHex } from './icons/SiMicrodotblog'; +export { default as SiMicroeditor, defaultColor as SiMicroeditorHex } from './icons/SiMicroeditor'; +export { default as SiMicropython, defaultColor as SiMicropythonHex } from './icons/SiMicropython'; +export { default as SiMicrostation, defaultColor as SiMicrostationHex } from './icons/SiMicrostation'; +export { default as SiMicrostrategy, defaultColor as SiMicrostrategyHex } from './icons/SiMicrostrategy'; +export { default as SiMidi, defaultColor as SiMidiHex } from './icons/SiMidi'; +export { default as SiMigadu, defaultColor as SiMigaduHex } from './icons/SiMigadu'; +export { default as SiMihon, defaultColor as SiMihonHex } from './icons/SiMihon'; +export { default as SiMihoyo, defaultColor as SiMihoyoHex } from './icons/SiMihoyo'; +export { default as SiMikrotik, defaultColor as SiMikrotikHex } from './icons/SiMikrotik'; +export { default as SiMilanote, defaultColor as SiMilanoteHex } from './icons/SiMilanote'; +export { default as SiMilvus, defaultColor as SiMilvusHex } from './icons/SiMilvus'; +export { default as SiMinds, defaultColor as SiMindsHex } from './icons/SiMinds'; +export { default as SiMingww64, defaultColor as SiMingww64Hex } from './icons/SiMingww64'; +export { default as SiMini, defaultColor as SiMiniHex } from './icons/SiMini'; +export { default as SiMinimax, defaultColor as SiMinimaxHex } from './icons/SiMinimax'; +export { default as SiMinio, defaultColor as SiMinioHex } from './icons/SiMinio'; +export { default as SiMintlify, defaultColor as SiMintlifyHex } from './icons/SiMintlify'; +export { default as SiMinutemailer, defaultColor as SiMinutemailerHex } from './icons/SiMinutemailer'; +export { default as SiMiraheze, defaultColor as SiMirahezeHex } from './icons/SiMiraheze'; +export { default as SiMiro, defaultColor as SiMiroHex } from './icons/SiMiro'; +export { default as SiMisskey, defaultColor as SiMisskeyHex } from './icons/SiMisskey'; +export { default as SiMistralai, defaultColor as SiMistralaiHex } from './icons/SiMistralai'; +export { default as SiMitsubishi, defaultColor as SiMitsubishiHex } from './icons/SiMitsubishi'; +export { default as SiMix, defaultColor as SiMixHex } from './icons/SiMix'; +export { default as SiMixcloud, defaultColor as SiMixcloudHex } from './icons/SiMixcloud'; +export { default as SiMixpanel, defaultColor as SiMixpanelHex } from './icons/SiMixpanel'; +export { default as SiMlb, defaultColor as SiMlbHex } from './icons/SiMlb'; +export { default as SiMlflow, defaultColor as SiMlflowHex } from './icons/SiMlflow'; +export { default as SiMobx, defaultColor as SiMobxHex } from './icons/SiMobx'; +export { default as SiMobxstatetree, defaultColor as SiMobxstatetreeHex } from './icons/SiMobxstatetree'; +export { default as SiMocha, defaultColor as SiMochaHex } from './icons/SiMocha'; +export { default as SiMockserviceworker, defaultColor as SiMockserviceworkerHex } from './icons/SiMockserviceworker'; +export { default as SiModal, defaultColor as SiModalHex } from './icons/SiModal'; +export { default as SiModelcontextprotocol, defaultColor as SiModelcontextprotocolHex } from './icons/SiModelcontextprotocol'; +export { default as SiModelscope, defaultColor as SiModelscopeHex } from './icons/SiModelscope'; +export { default as SiModin, defaultColor as SiModinHex } from './icons/SiModin'; +export { default as SiModrinth, defaultColor as SiModrinthHex } from './icons/SiModrinth'; +export { default as SiModx, defaultColor as SiModxHex } from './icons/SiModx'; +export { default as SiMojeek, defaultColor as SiMojeekHex } from './icons/SiMojeek'; +export { default as SiMoleculer, defaultColor as SiMoleculerHex } from './icons/SiMoleculer'; +export { default as SiMomenteo, defaultColor as SiMomenteoHex } from './icons/SiMomenteo'; +export { default as SiMonero, defaultColor as SiMoneroHex } from './icons/SiMonero'; +export { default as SiMoneygram, defaultColor as SiMoneygramHex } from './icons/SiMoneygram'; +export { default as SiMongodb, defaultColor as SiMongodbHex } from './icons/SiMongodb'; +export { default as SiMongoose, defaultColor as SiMongooseHex } from './icons/SiMongoose'; +export { default as SiMongoosedotws, defaultColor as SiMongoosedotwsHex } from './icons/SiMongoosedotws'; +export { default as SiMonica, defaultColor as SiMonicaHex } from './icons/SiMonica'; +export { default as SiMonkeytie, defaultColor as SiMonkeytieHex } from './icons/SiMonkeytie'; +export { default as SiMonkeytype, defaultColor as SiMonkeytypeHex } from './icons/SiMonkeytype'; +export { default as SiMonogame, defaultColor as SiMonogameHex } from './icons/SiMonogame'; +export { default as SiMonoprix, defaultColor as SiMonoprixHex } from './icons/SiMonoprix'; +export { default as SiMonster, defaultColor as SiMonsterHex } from './icons/SiMonster'; +export { default as SiMonzo, defaultColor as SiMonzoHex } from './icons/SiMonzo'; +export { default as SiMoo, defaultColor as SiMooHex } from './icons/SiMoo'; +export { default as SiMoodle, defaultColor as SiMoodleHex } from './icons/SiMoodle'; +export { default as SiMoonrepo, defaultColor as SiMoonrepoHex } from './icons/SiMoonrepo'; +export { default as SiMoq, defaultColor as SiMoqHex } from './icons/SiMoq'; +export { default as SiMoqups, defaultColor as SiMoqupsHex } from './icons/SiMoqups'; +export { default as SiMorrisons, defaultColor as SiMorrisonsHex } from './icons/SiMorrisons'; +export { default as SiMoscowmetro, defaultColor as SiMoscowmetroHex } from './icons/SiMoscowmetro'; +export { default as SiMotorola, defaultColor as SiMotorolaHex } from './icons/SiMotorola'; +export { default as SiMovistar, defaultColor as SiMovistarHex } from './icons/SiMovistar'; +export { default as SiMozilla, defaultColor as SiMozillaHex } from './icons/SiMozilla'; +export { default as SiMpv, defaultColor as SiMpvHex } from './icons/SiMpv'; +export { default as SiMqtt, defaultColor as SiMqttHex } from './icons/SiMqtt'; +export { default as SiMsi, defaultColor as SiMsiHex } from './icons/SiMsi'; +export { default as SiMsibusiness, defaultColor as SiMsibusinessHex } from './icons/SiMsibusiness'; +export { default as SiMta, defaultColor as SiMtaHex } from './icons/SiMta'; +export { default as SiMtr, defaultColor as SiMtrHex } from './icons/SiMtr'; +export { default as SiMubi, defaultColor as SiMubiHex } from './icons/SiMubi'; +export { default as SiMui, defaultColor as SiMuiHex } from './icons/SiMui'; +export { default as SiMuller, defaultColor as SiMullerHex } from './icons/SiMuller'; +export { default as SiMullvad, defaultColor as SiMullvadHex } from './icons/SiMullvad'; +export { default as SiMultisim, defaultColor as SiMultisimHex } from './icons/SiMultisim'; +export { default as SiMumble, defaultColor as SiMumbleHex } from './icons/SiMumble'; +export { default as SiMuo, defaultColor as SiMuoHex } from './icons/SiMuo'; +export { default as SiMural, defaultColor as SiMuralHex } from './icons/SiMural'; +export { default as SiMusicbrainz, defaultColor as SiMusicbrainzHex } from './icons/SiMusicbrainz'; +export { default as SiMxlinux, defaultColor as SiMxlinuxHex } from './icons/SiMxlinux'; +export { default as SiMyanimelist, defaultColor as SiMyanimelistHex } from './icons/SiMyanimelist'; +export { default as SiMyget, defaultColor as SiMygetHex } from './icons/SiMyget'; +export { default as SiMyob, defaultColor as SiMyobHex } from './icons/SiMyob'; +export { default as SiMyshows, defaultColor as SiMyshowsHex } from './icons/SiMyshows'; +export { default as SiMyspace, defaultColor as SiMyspaceHex } from './icons/SiMyspace'; +export { default as SiMysql, defaultColor as SiMysqlHex } from './icons/SiMysql'; +export { default as SiN26, defaultColor as SiN26Hex } from './icons/SiN26'; +export { default as SiN8n, defaultColor as SiN8nHex } from './icons/SiN8n'; +export { default as SiNamebase, defaultColor as SiNamebaseHex } from './icons/SiNamebase'; +export { default as SiNamecheap, defaultColor as SiNamecheapHex } from './icons/SiNamecheap'; +export { default as SiNamemc, defaultColor as SiNamemcHex } from './icons/SiNamemc'; +export { default as SiNamesilo, defaultColor as SiNamesiloHex } from './icons/SiNamesilo'; +export { default as SiNamuwiki, defaultColor as SiNamuwikiHex } from './icons/SiNamuwiki'; +export { default as SiNano, defaultColor as SiNanoHex } from './icons/SiNano'; +export { default as SiNanostores, defaultColor as SiNanostoresHex } from './icons/SiNanostores'; +export { default as SiNapster, defaultColor as SiNapsterHex } from './icons/SiNapster'; +export { default as SiNasa, defaultColor as SiNasaHex } from './icons/SiNasa'; +export { default as SiNationalgrid, defaultColor as SiNationalgridHex } from './icons/SiNationalgrid'; +export { default as SiNationalrail, defaultColor as SiNationalrailHex } from './icons/SiNationalrail'; +export { default as SiNativescript, defaultColor as SiNativescriptHex } from './icons/SiNativescript'; +export { default as SiNatsdotio, defaultColor as SiNatsdotioHex } from './icons/SiNatsdotio'; +export { default as SiNaver, defaultColor as SiNaverHex } from './icons/SiNaver'; +export { default as SiNba, defaultColor as SiNbaHex } from './icons/SiNba'; +export { default as SiNbb, defaultColor as SiNbbHex } from './icons/SiNbb'; +export { default as SiNbc, defaultColor as SiNbcHex } from './icons/SiNbc'; +export { default as SiNdi, defaultColor as SiNdiHex } from './icons/SiNdi'; +export { default as SiNdr, defaultColor as SiNdrHex } from './icons/SiNdr'; +export { default as SiNear, defaultColor as SiNearHex } from './icons/SiNear'; +export { default as SiNebula, defaultColor as SiNebulaHex } from './icons/SiNebula'; +export { default as SiNec, defaultColor as SiNecHex } from './icons/SiNec'; +export { default as SiNederlandsespoorwegen, defaultColor as SiNederlandsespoorwegenHex } from './icons/SiNederlandsespoorwegen'; +export { default as SiNeo4j, defaultColor as SiNeo4jHex } from './icons/SiNeo4j'; +export { default as SiNeovim, defaultColor as SiNeovimHex } from './icons/SiNeovim'; +export { default as SiNeptune, defaultColor as SiNeptuneHex } from './icons/SiNeptune'; +export { default as SiNestjs, defaultColor as SiNestjsHex } from './icons/SiNestjs'; +export { default as SiNetapp, defaultColor as SiNetappHex } from './icons/SiNetapp'; +export { default as SiNetbsd, defaultColor as SiNetbsdHex } from './icons/SiNetbsd'; +export { default as SiNetcup, defaultColor as SiNetcupHex } from './icons/SiNetcup'; +export { default as SiNetdata, defaultColor as SiNetdataHex } from './icons/SiNetdata'; +export { default as SiNeteasecloudmusic, defaultColor as SiNeteasecloudmusicHex } from './icons/SiNeteasecloudmusic'; +export { default as SiNetflix, defaultColor as SiNetflixHex } from './icons/SiNetflix'; +export { default as SiNetgear, defaultColor as SiNetgearHex } from './icons/SiNetgear'; +export { default as SiNetim, defaultColor as SiNetimHex } from './icons/SiNetim'; +export { default as SiNetlify, defaultColor as SiNetlifyHex } from './icons/SiNetlify'; +export { default as SiNette, defaultColor as SiNetteHex } from './icons/SiNette'; +export { default as SiNetto, defaultColor as SiNettoHex } from './icons/SiNetto'; +export { default as SiNeutralinojs, defaultColor as SiNeutralinojsHex } from './icons/SiNeutralinojs'; +export { default as SiNewbalance, defaultColor as SiNewbalanceHex } from './icons/SiNewbalance'; +export { default as SiNewegg, defaultColor as SiNeweggHex } from './icons/SiNewegg'; +export { default as SiNewgrounds, defaultColor as SiNewgroundsHex } from './icons/SiNewgrounds'; +export { default as SiNewjapanprowrestling, defaultColor as SiNewjapanprowrestlingHex } from './icons/SiNewjapanprowrestling'; +export { default as SiNewpipe, defaultColor as SiNewpipeHex } from './icons/SiNewpipe'; +export { default as SiNewrelic, defaultColor as SiNewrelicHex } from './icons/SiNewrelic'; +export { default as SiNewyorktimes, defaultColor as SiNewyorktimesHex } from './icons/SiNewyorktimes'; +export { default as SiNexon, defaultColor as SiNexonHex } from './icons/SiNexon'; +export { default as SiNextbike, defaultColor as SiNextbikeHex } from './icons/SiNextbike'; +export { default as SiNextbilliondotai, defaultColor as SiNextbilliondotaiHex } from './icons/SiNextbilliondotai'; +export { default as SiNextcloud, defaultColor as SiNextcloudHex } from './icons/SiNextcloud'; +export { default as SiNextdns, defaultColor as SiNextdnsHex } from './icons/SiNextdns'; +export { default as SiNextdoor, defaultColor as SiNextdoorHex } from './icons/SiNextdoor'; +export { default as SiNextdotjs, defaultColor as SiNextdotjsHex } from './icons/SiNextdotjs'; +export { default as SiNextflow, defaultColor as SiNextflowHex } from './icons/SiNextflow'; +export { default as SiNextra, defaultColor as SiNextraHex } from './icons/SiNextra'; +export { default as SiNfc, defaultColor as SiNfcHex } from './icons/SiNfc'; +export { default as SiNfcore, defaultColor as SiNfcoreHex } from './icons/SiNfcore'; +export { default as SiNginx, defaultColor as SiNginxHex } from './icons/SiNginx'; +export { default as SiNginxproxymanager, defaultColor as SiNginxproxymanagerHex } from './icons/SiNginxproxymanager'; +export { default as SiNgrok, defaultColor as SiNgrokHex } from './icons/SiNgrok'; +export { default as SiNgrx, defaultColor as SiNgrxHex } from './icons/SiNgrx'; +export { default as SiNhl, defaultColor as SiNhlHex } from './icons/SiNhl'; +export { default as SiNhost, defaultColor as SiNhostHex } from './icons/SiNhost'; +export { default as SiNicehash, defaultColor as SiNicehashHex } from './icons/SiNicehash'; +export { default as SiNiconico, defaultColor as SiNiconicoHex } from './icons/SiNiconico'; +export { default as SiNike, defaultColor as SiNikeHex } from './icons/SiNike'; +export { default as SiNikon, defaultColor as SiNikonHex } from './icons/SiNikon'; +export { default as SiNim, defaultColor as SiNimHex } from './icons/SiNim'; +export { default as SiNiri, defaultColor as SiNiriHex } from './icons/SiNiri'; +export { default as SiNissan, defaultColor as SiNissanHex } from './icons/SiNissan'; +export { default as SiNixos, defaultColor as SiNixosHex } from './icons/SiNixos'; +export { default as SiNobaralinux, defaultColor as SiNobaralinuxHex } from './icons/SiNobaralinux'; +export { default as SiNodebb, defaultColor as SiNodebbHex } from './icons/SiNodebb'; +export { default as SiNodedotjs, defaultColor as SiNodedotjsHex } from './icons/SiNodedotjs'; +export { default as SiNodegui, defaultColor as SiNodeguiHex } from './icons/SiNodegui'; +export { default as SiNodemon, defaultColor as SiNodemonHex } from './icons/SiNodemon'; +export { default as SiNodered, defaultColor as SiNoderedHex } from './icons/SiNodered'; +export { default as SiNokia, defaultColor as SiNokiaHex } from './icons/SiNokia'; +export { default as SiNomad, defaultColor as SiNomadHex } from './icons/SiNomad'; +export { default as SiNorco, defaultColor as SiNorcoHex } from './icons/SiNorco'; +export { default as SiNordicsemiconductor, defaultColor as SiNordicsemiconductorHex } from './icons/SiNordicsemiconductor'; +export { default as SiNordvpn, defaultColor as SiNordvpnHex } from './icons/SiNordvpn'; +export { default as SiNormalizedotcss, defaultColor as SiNormalizedotcssHex } from './icons/SiNormalizedotcss'; +export { default as SiNorton, defaultColor as SiNortonHex } from './icons/SiNorton'; +export { default as SiNorwegian, defaultColor as SiNorwegianHex } from './icons/SiNorwegian'; +export { default as SiNote, defaultColor as SiNoteHex } from './icons/SiNote'; +export { default as SiNotebooklm, defaultColor as SiNotebooklmHex } from './icons/SiNotebooklm'; +export { default as SiNotepadplusplus, defaultColor as SiNotepadplusplusHex } from './icons/SiNotepadplusplus'; +export { default as SiNotion, defaultColor as SiNotionHex } from './icons/SiNotion'; +export { default as SiNotist, defaultColor as SiNotistHex } from './icons/SiNotist'; +export { default as SiNounproject, defaultColor as SiNounprojectHex } from './icons/SiNounproject'; +export { default as SiNovu, defaultColor as SiNovuHex } from './icons/SiNovu'; +export { default as SiNow, defaultColor as SiNowHex } from './icons/SiNow'; +export { default as SiNpm, defaultColor as SiNpmHex } from './icons/SiNpm'; +export { default as SiNrwl, defaultColor as SiNrwlHex } from './icons/SiNrwl'; +export { default as SiNsis, defaultColor as SiNsisHex } from './icons/SiNsis'; +export { default as SiNtfy, defaultColor as SiNtfyHex } from './icons/SiNtfy'; +export { default as SiNubank, defaultColor as SiNubankHex } from './icons/SiNubank'; +export { default as SiNucleo, defaultColor as SiNucleoHex } from './icons/SiNucleo'; +export { default as SiNuget, defaultColor as SiNugetHex } from './icons/SiNuget'; +export { default as SiNuke, defaultColor as SiNukeHex } from './icons/SiNuke'; +export { default as SiNumba, defaultColor as SiNumbaHex } from './icons/SiNumba'; +export { default as SiNumpy, defaultColor as SiNumpyHex } from './icons/SiNumpy'; +export { default as SiNunjucks, defaultColor as SiNunjucksHex } from './icons/SiNunjucks'; +export { default as SiNushell, defaultColor as SiNushellHex } from './icons/SiNushell'; +export { default as SiNutanix, defaultColor as SiNutanixHex } from './icons/SiNutanix'; +export { default as SiNuxt, defaultColor as SiNuxtHex } from './icons/SiNuxt'; +export { default as SiNvidia, defaultColor as SiNvidiaHex } from './icons/SiNvidia'; +export { default as SiNvm, defaultColor as SiNvmHex } from './icons/SiNvm'; +export { default as SiNx, defaultColor as SiNxHex } from './icons/SiNx'; +export { default as SiNxp, defaultColor as SiNxpHex } from './icons/SiNxp'; +export { default as SiNzxt, defaultColor as SiNzxtHex } from './icons/SiNzxt'; +export { default as SiO2, defaultColor as SiO2Hex } from './icons/SiO2'; +export { default as SiObb, defaultColor as SiObbHex } from './icons/SiObb'; +export { default as SiObservable, defaultColor as SiObservableHex } from './icons/SiObservable'; +export { default as SiObsidian, defaultColor as SiObsidianHex } from './icons/SiObsidian'; +export { default as SiObsstudio, defaultColor as SiObsstudioHex } from './icons/SiObsstudio'; +export { default as SiObtainium, defaultColor as SiObtainiumHex } from './icons/SiObtainium'; +export { default as SiOcaml, defaultColor as SiOcamlHex } from './icons/SiOcaml'; +export { default as SiOclc, defaultColor as SiOclcHex } from './icons/SiOclc'; +export { default as SiOclif, defaultColor as SiOclifHex } from './icons/SiOclif'; +export { default as SiOctanerender, defaultColor as SiOctanerenderHex } from './icons/SiOctanerender'; +export { default as SiOctave, defaultColor as SiOctaveHex } from './icons/SiOctave'; +export { default as SiOctobercms, defaultColor as SiOctobercmsHex } from './icons/SiOctobercms'; +export { default as SiOctoprint, defaultColor as SiOctoprintHex } from './icons/SiOctoprint'; +export { default as SiOctopusdeploy, defaultColor as SiOctopusdeployHex } from './icons/SiOctopusdeploy'; +export { default as SiOculus, defaultColor as SiOculusHex } from './icons/SiOculus'; +export { default as SiOdido, defaultColor as SiOdidoHex } from './icons/SiOdido'; +export { default as SiOdin, defaultColor as SiOdinHex } from './icons/SiOdin'; +export { default as SiOdnoklassniki, defaultColor as SiOdnoklassnikiHex } from './icons/SiOdnoklassniki'; +export { default as SiOdoo, defaultColor as SiOdooHex } from './icons/SiOdoo'; +export { default as SiOdysee, defaultColor as SiOdyseeHex } from './icons/SiOdysee'; +export { default as SiOhdear, defaultColor as SiOhdearHex } from './icons/SiOhdear'; +export { default as SiOkcupid, defaultColor as SiOkcupidHex } from './icons/SiOkcupid'; +export { default as SiOkta, defaultColor as SiOktaHex } from './icons/SiOkta'; +export { default as SiOkx, defaultColor as SiOkxHex } from './icons/SiOkx'; +export { default as SiOllama, defaultColor as SiOllamaHex } from './icons/SiOllama'; +export { default as SiOmadacloud, defaultColor as SiOmadacloudHex } from './icons/SiOmadacloud'; +export { default as SiOmarchy, defaultColor as SiOmarchyHex } from './icons/SiOmarchy'; +export { default as SiOneplus, defaultColor as SiOneplusHex } from './icons/SiOneplus'; +export { default as SiOnestream, defaultColor as SiOnestreamHex } from './icons/SiOnestream'; +export { default as SiOnlyfans, defaultColor as SiOnlyfansHex } from './icons/SiOnlyfans'; +export { default as SiOnlyoffice, defaultColor as SiOnlyofficeHex } from './icons/SiOnlyoffice'; +export { default as SiOnnx, defaultColor as SiOnnxHex } from './icons/SiOnnx'; +export { default as SiOnstar, defaultColor as SiOnstarHex } from './icons/SiOnstar'; +export { default as SiOpel, defaultColor as SiOpelHex } from './icons/SiOpel'; +export { default as SiOpen3d, defaultColor as SiOpen3dHex } from './icons/SiOpen3d'; +export { default as SiOpenaccess, defaultColor as SiOpenaccessHex } from './icons/SiOpenaccess'; +export { default as SiOpenaigym, defaultColor as SiOpenaigymHex } from './icons/SiOpenaigym'; +export { default as SiOpenapiinitiative, defaultColor as SiOpenapiinitiativeHex } from './icons/SiOpenapiinitiative'; +export { default as SiOpenbadges, defaultColor as SiOpenbadgesHex } from './icons/SiOpenbadges'; +export { default as SiOpenbsd, defaultColor as SiOpenbsdHex } from './icons/SiOpenbsd'; +export { default as SiOpenbugbounty, defaultColor as SiOpenbugbountyHex } from './icons/SiOpenbugbounty'; +export { default as SiOpencage, defaultColor as SiOpencageHex } from './icons/SiOpencage'; +export { default as SiOpencollective, defaultColor as SiOpencollectiveHex } from './icons/SiOpencollective'; +export { default as SiOpencontainersinitiative, defaultColor as SiOpencontainersinitiativeHex } from './icons/SiOpencontainersinitiative'; +export { default as SiOpencritic, defaultColor as SiOpencriticHex } from './icons/SiOpencritic'; +export { default as SiOpencv, defaultColor as SiOpencvHex } from './icons/SiOpencv'; +export { default as SiOpenfaas, defaultColor as SiOpenfaasHex } from './icons/SiOpenfaas'; +export { default as SiOpengl, defaultColor as SiOpenglHex } from './icons/SiOpengl'; +export { default as SiOpenhab, defaultColor as SiOpenhabHex } from './icons/SiOpenhab'; +export { default as SiOpenid, defaultColor as SiOpenidHex } from './icons/SiOpenid'; +export { default as SiOpenjdk, defaultColor as SiOpenjdkHex } from './icons/SiOpenjdk'; +export { default as SiOpenjsfoundation, defaultColor as SiOpenjsfoundationHex } from './icons/SiOpenjsfoundation'; +export { default as SiOpenlayers, defaultColor as SiOpenlayersHex } from './icons/SiOpenlayers'; +export { default as SiOpenmediavault, defaultColor as SiOpenmediavaultHex } from './icons/SiOpenmediavault'; +export { default as SiOpenmined, defaultColor as SiOpenminedHex } from './icons/SiOpenmined'; +export { default as SiOpennebula, defaultColor as SiOpennebulaHex } from './icons/SiOpennebula'; +export { default as SiOpenproject, defaultColor as SiOpenprojectHex } from './icons/SiOpenproject'; +export { default as SiOpenrouter, defaultColor as SiOpenrouterHex } from './icons/SiOpenrouter'; +export { default as SiOpenscad, defaultColor as SiOpenscadHex } from './icons/SiOpenscad'; +export { default as SiOpensea, defaultColor as SiOpenseaHex } from './icons/SiOpensea'; +export { default as SiOpensearch, defaultColor as SiOpensearchHex } from './icons/SiOpensearch'; +export { default as SiOpensourcehardware, defaultColor as SiOpensourcehardwareHex } from './icons/SiOpensourcehardware'; +export { default as SiOpensourceinitiative, defaultColor as SiOpensourceinitiativeHex } from './icons/SiOpensourceinitiative'; +export { default as SiOpenssl, defaultColor as SiOpensslHex } from './icons/SiOpenssl'; +export { default as SiOpenstack, defaultColor as SiOpenstackHex } from './icons/SiOpenstack'; +export { default as SiOpenstreetmap, defaultColor as SiOpenstreetmapHex } from './icons/SiOpenstreetmap'; +export { default as SiOpensuse, defaultColor as SiOpensuseHex } from './icons/SiOpensuse'; +export { default as SiOpentelemetry, defaultColor as SiOpentelemetryHex } from './icons/SiOpentelemetry'; +export { default as SiOpentext, defaultColor as SiOpentextHex } from './icons/SiOpentext'; +export { default as SiOpentofu, defaultColor as SiOpentofuHex } from './icons/SiOpentofu'; +export { default as SiOpenverse, defaultColor as SiOpenverseHex } from './icons/SiOpenverse'; +export { default as SiOpenvpn, defaultColor as SiOpenvpnHex } from './icons/SiOpenvpn'; +export { default as SiOpenwrt, defaultColor as SiOpenwrtHex } from './icons/SiOpenwrt'; +export { default as SiOpenzeppelin, defaultColor as SiOpenzeppelinHex } from './icons/SiOpenzeppelin'; +export { default as SiOpenzfs, defaultColor as SiOpenzfsHex } from './icons/SiOpenzfs'; +export { default as SiOpera, defaultColor as SiOperaHex } from './icons/SiOpera'; +export { default as SiOperagx, defaultColor as SiOperagxHex } from './icons/SiOperagx'; +export { default as SiOpnsense, defaultColor as SiOpnsenseHex } from './icons/SiOpnsense'; +export { default as SiOppo, defaultColor as SiOppoHex } from './icons/SiOppo'; +export { default as SiOpsgenie, defaultColor as SiOpsgenieHex } from './icons/SiOpsgenie'; +export { default as SiOpslevel, defaultColor as SiOpslevelHex } from './icons/SiOpslevel'; +export { default as SiOptimism, defaultColor as SiOptimismHex } from './icons/SiOptimism'; +export { default as SiOptuna, defaultColor as SiOptunaHex } from './icons/SiOptuna'; +export { default as SiOrange, defaultColor as SiOrangeHex } from './icons/SiOrange'; +export { default as SiOrcid, defaultColor as SiOrcidHex } from './icons/SiOrcid'; +export { default as SiOreilly, defaultColor as SiOreillyHex } from './icons/SiOreilly'; +export { default as SiOrg, defaultColor as SiOrgHex } from './icons/SiOrg'; +export { default as SiOrganicmaps, defaultColor as SiOrganicmapsHex } from './icons/SiOrganicmaps'; +export { default as SiOrigin, defaultColor as SiOriginHex } from './icons/SiOrigin'; +export { default as SiOry, defaultColor as SiOryHex } from './icons/SiOry'; +export { default as SiOsano, defaultColor as SiOsanoHex } from './icons/SiOsano'; +export { default as SiOsf, defaultColor as SiOsfHex } from './icons/SiOsf'; +export { default as SiOsgeo, defaultColor as SiOsgeoHex } from './icons/SiOsgeo'; +export { default as SiOshkosh, defaultColor as SiOshkoshHex } from './icons/SiOshkosh'; +export { default as SiOsmand, defaultColor as SiOsmandHex } from './icons/SiOsmand'; +export { default as SiOsmc, defaultColor as SiOsmcHex } from './icons/SiOsmc'; +export { default as SiOsu, defaultColor as SiOsuHex } from './icons/SiOsu'; +export { default as SiOtto, defaultColor as SiOttoHex } from './icons/SiOtto'; +export { default as SiOutline, defaultColor as SiOutlineHex } from './icons/SiOutline'; +export { default as SiOvercast, defaultColor as SiOvercastHex } from './icons/SiOvercast'; +export { default as SiOverleaf, defaultColor as SiOverleafHex } from './icons/SiOverleaf'; +export { default as SiOvh, defaultColor as SiOvhHex } from './icons/SiOvh'; +export { default as SiOwasp, defaultColor as SiOwaspHex } from './icons/SiOwasp'; +export { default as SiOwncloud, defaultColor as SiOwncloudHex } from './icons/SiOwncloud'; +export { default as SiOxc, defaultColor as SiOxcHex } from './icons/SiOxc'; +export { default as SiOxygen, defaultColor as SiOxygenHex } from './icons/SiOxygen'; +export { default as SiOyo, defaultColor as SiOyoHex } from './icons/SiOyo'; +export { default as SiP5dotjs, defaultColor as SiP5dotjsHex } from './icons/SiP5dotjs'; +export { default as SiPackagist, defaultColor as SiPackagistHex } from './icons/SiPackagist'; +export { default as SiPacker, defaultColor as SiPackerHex } from './icons/SiPacker'; +export { default as SiPackt, defaultColor as SiPacktHex } from './icons/SiPackt'; +export { default as SiPaddle, defaultColor as SiPaddleHex } from './icons/SiPaddle'; +export { default as SiPaddlepaddle, defaultColor as SiPaddlepaddleHex } from './icons/SiPaddlepaddle'; +export { default as SiPaddypower, defaultColor as SiPaddypowerHex } from './icons/SiPaddypower'; +export { default as SiPadlet, defaultColor as SiPadletHex } from './icons/SiPadlet'; +export { default as SiPagekit, defaultColor as SiPagekitHex } from './icons/SiPagekit'; +export { default as SiPagerduty, defaultColor as SiPagerdutyHex } from './icons/SiPagerduty'; +export { default as SiPagespeedinsights, defaultColor as SiPagespeedinsightsHex } from './icons/SiPagespeedinsights'; +export { default as SiPagseguro, defaultColor as SiPagseguroHex } from './icons/SiPagseguro'; +export { default as SiPalantir, defaultColor as SiPalantirHex } from './icons/SiPalantir'; +export { default as SiPaloaltonetworks, defaultColor as SiPaloaltonetworksHex } from './icons/SiPaloaltonetworks'; +export { default as SiPaloaltosoftware, defaultColor as SiPaloaltosoftwareHex } from './icons/SiPaloaltosoftware'; +export { default as SiPanasonic, defaultColor as SiPanasonicHex } from './icons/SiPanasonic'; +export { default as SiPandas, defaultColor as SiPandasHex } from './icons/SiPandas'; +export { default as SiPandoc, defaultColor as SiPandocHex } from './icons/SiPandoc'; +export { default as SiPandora, defaultColor as SiPandoraHex } from './icons/SiPandora'; +export { default as SiPantheon, defaultColor as SiPantheonHex } from './icons/SiPantheon'; +export { default as SiPaperlessngx, defaultColor as SiPaperlessngxHex } from './icons/SiPaperlessngx'; +export { default as SiPaperspace, defaultColor as SiPaperspaceHex } from './icons/SiPaperspace'; +export { default as SiPaperswithcode, defaultColor as SiPaperswithcodeHex } from './icons/SiPaperswithcode'; +export { default as SiParadoxinteractive, defaultColor as SiParadoxinteractiveHex } from './icons/SiParadoxinteractive'; +export { default as SiParamountplus, defaultColor as SiParamountplusHex } from './icons/SiParamountplus'; +export { default as SiParitysubstrate, defaultColor as SiParitysubstrateHex } from './icons/SiParitysubstrate'; +export { default as SiParrotsecurity, defaultColor as SiParrotsecurityHex } from './icons/SiParrotsecurity'; +export { default as SiParsedotly, defaultColor as SiParsedotlyHex } from './icons/SiParsedotly'; +export { default as SiPassbolt, defaultColor as SiPassboltHex } from './icons/SiPassbolt'; +export { default as SiPassport, defaultColor as SiPassportHex } from './icons/SiPassport'; +export { default as SiPastebin, defaultColor as SiPastebinHex } from './icons/SiPastebin'; +export { default as SiPatreon, defaultColor as SiPatreonHex } from './icons/SiPatreon'; +export { default as SiPayback, defaultColor as SiPaybackHex } from './icons/SiPayback'; +export { default as SiPaychex, defaultColor as SiPaychexHex } from './icons/SiPaychex'; +export { default as SiPayhip, defaultColor as SiPayhipHex } from './icons/SiPayhip'; +export { default as SiPayloadcms, defaultColor as SiPayloadcmsHex } from './icons/SiPayloadcms'; +export { default as SiPayoneer, defaultColor as SiPayoneerHex } from './icons/SiPayoneer'; +export { default as SiPaypal, defaultColor as SiPaypalHex } from './icons/SiPaypal'; +export { default as SiPaysafe, defaultColor as SiPaysafeHex } from './icons/SiPaysafe'; +export { default as SiPaytm, defaultColor as SiPaytmHex } from './icons/SiPaytm'; +export { default as SiPcgamingwiki, defaultColor as SiPcgamingwikiHex } from './icons/SiPcgamingwiki'; +export { default as SiPdm, defaultColor as SiPdmHex } from './icons/SiPdm'; +export { default as SiPdq, defaultColor as SiPdqHex } from './icons/SiPdq'; +export { default as SiPeakdesign, defaultColor as SiPeakdesignHex } from './icons/SiPeakdesign'; +export { default as SiPearson, defaultColor as SiPearsonHex } from './icons/SiPearson'; +export { default as SiPeerlist, defaultColor as SiPeerlistHex } from './icons/SiPeerlist'; +export { default as SiPeertube, defaultColor as SiPeertubeHex } from './icons/SiPeertube'; +export { default as SiPegasusairlines, defaultColor as SiPegasusairlinesHex } from './icons/SiPegasusairlines'; +export { default as SiPelican, defaultColor as SiPelicanHex } from './icons/SiPelican'; +export { default as SiPeloton, defaultColor as SiPelotonHex } from './icons/SiPeloton'; +export { default as SiPenny, defaultColor as SiPennyHex } from './icons/SiPenny'; +export { default as SiPenpot, defaultColor as SiPenpotHex } from './icons/SiPenpot'; +export { default as SiPercy, defaultColor as SiPercyHex } from './icons/SiPercy'; +export { default as SiPerforce, defaultColor as SiPerforceHex } from './icons/SiPerforce'; +export { default as SiPerl, defaultColor as SiPerlHex } from './icons/SiPerl'; +export { default as SiPerplexity, defaultColor as SiPerplexityHex } from './icons/SiPerplexity'; +export { default as SiPersistent, defaultColor as SiPersistentHex } from './icons/SiPersistent'; +export { default as SiPersonio, defaultColor as SiPersonioHex } from './icons/SiPersonio'; +export { default as SiPetsathome, defaultColor as SiPetsathomeHex } from './icons/SiPetsathome'; +export { default as SiPeugeot, defaultColor as SiPeugeotHex } from './icons/SiPeugeot'; +export { default as SiPexels, defaultColor as SiPexelsHex } from './icons/SiPexels'; +export { default as SiPfsense, defaultColor as SiPfsenseHex } from './icons/SiPfsense'; +export { default as SiPhabricator, defaultColor as SiPhabricatorHex } from './icons/SiPhabricator'; +export { default as SiPhilipshue, defaultColor as SiPhilipshueHex } from './icons/SiPhilipshue'; +export { default as SiPhoenixframework, defaultColor as SiPhoenixframeworkHex } from './icons/SiPhoenixframework'; +export { default as SiPhonepe, defaultColor as SiPhonepeHex } from './icons/SiPhonepe'; +export { default as SiPhosphoricons, defaultColor as SiPhosphoriconsHex } from './icons/SiPhosphoricons'; +export { default as SiPhotobucket, defaultColor as SiPhotobucketHex } from './icons/SiPhotobucket'; +export { default as SiPhotocrowd, defaultColor as SiPhotocrowdHex } from './icons/SiPhotocrowd'; +export { default as SiPhoton, defaultColor as SiPhotonHex } from './icons/SiPhoton'; +export { default as SiPhotopea, defaultColor as SiPhotopeaHex } from './icons/SiPhotopea'; +export { default as SiPhp, defaultColor as SiPhpHex } from './icons/SiPhp'; +export { default as SiPhpbb, defaultColor as SiPhpbbHex } from './icons/SiPhpbb'; +export { default as SiPhpmyadmin, defaultColor as SiPhpmyadminHex } from './icons/SiPhpmyadmin'; +export { default as SiPhpstorm, defaultColor as SiPhpstormHex } from './icons/SiPhpstorm'; +export { default as SiPiaggiogroup, defaultColor as SiPiaggiogroupHex } from './icons/SiPiaggiogroup'; +export { default as SiPiapro, defaultColor as SiPiaproHex } from './icons/SiPiapro'; +export { default as SiPicardsurgeles, defaultColor as SiPicardsurgelesHex } from './icons/SiPicardsurgeles'; +export { default as SiPicartodottv, defaultColor as SiPicartodottvHex } from './icons/SiPicartodottv'; +export { default as SiPicnic, defaultColor as SiPicnicHex } from './icons/SiPicnic'; +export { default as SiPicpay, defaultColor as SiPicpayHex } from './icons/SiPicpay'; +export { default as SiPicrew, defaultColor as SiPicrewHex } from './icons/SiPicrew'; +export { default as SiPicsart, defaultColor as SiPicsartHex } from './icons/SiPicsart'; +export { default as SiPicxy, defaultColor as SiPicxyHex } from './icons/SiPicxy'; +export { default as SiPihole, defaultColor as SiPiholeHex } from './icons/SiPihole'; +export { default as SiPimcore, defaultColor as SiPimcoreHex } from './icons/SiPimcore'; +export { default as SiPinboard, defaultColor as SiPinboardHex } from './icons/SiPinboard'; +export { default as SiPinescript, defaultColor as SiPinescriptHex } from './icons/SiPinescript'; +export { default as SiPinetwork, defaultColor as SiPinetworkHex } from './icons/SiPinetwork'; +export { default as SiPingdom, defaultColor as SiPingdomHex } from './icons/SiPingdom'; +export { default as SiPinia, defaultColor as SiPiniaHex } from './icons/SiPinia'; +export { default as SiPino, defaultColor as SiPinoHex } from './icons/SiPino'; +export { default as SiPinterest, defaultColor as SiPinterestHex } from './icons/SiPinterest'; +export { default as SiPioneerdj, defaultColor as SiPioneerdjHex } from './icons/SiPioneerdj'; +export { default as SiPipecat, defaultColor as SiPipecatHex } from './icons/SiPipecat'; +export { default as SiPiped, defaultColor as SiPipedHex } from './icons/SiPiped'; +export { default as SiPipx, defaultColor as SiPipxHex } from './icons/SiPipx'; +export { default as SiPivotaltracker, defaultColor as SiPivotaltrackerHex } from './icons/SiPivotaltracker'; +export { default as SiPiwigo, defaultColor as SiPiwigoHex } from './icons/SiPiwigo'; +export { default as SiPix, defaultColor as SiPixHex } from './icons/SiPix'; +export { default as SiPixabay, defaultColor as SiPixabayHex } from './icons/SiPixabay'; +export { default as SiPixelfed, defaultColor as SiPixelfedHex } from './icons/SiPixelfed'; +export { default as SiPixiv, defaultColor as SiPixivHex } from './icons/SiPixiv'; +export { default as SiPixlr, defaultColor as SiPixlrHex } from './icons/SiPixlr'; +export { default as SiPkgsrc, defaultColor as SiPkgsrcHex } from './icons/SiPkgsrc'; +export { default as SiPlane, defaultColor as SiPlaneHex } from './icons/SiPlane'; +export { default as SiPlanet, defaultColor as SiPlanetHex } from './icons/SiPlanet'; +export { default as SiPlanetscale, defaultColor as SiPlanetscaleHex } from './icons/SiPlanetscale'; +export { default as SiPlangrid, defaultColor as SiPlangridHex } from './icons/SiPlangrid'; +export { default as SiPlatformdotsh, defaultColor as SiPlatformdotshHex } from './icons/SiPlatformdotsh'; +export { default as SiPlatformio, defaultColor as SiPlatformioHex } from './icons/SiPlatformio'; +export { default as SiPlatzi, defaultColor as SiPlatziHex } from './icons/SiPlatzi'; +export { default as SiPlausibleanalytics, defaultColor as SiPlausibleanalyticsHex } from './icons/SiPlausibleanalytics'; +export { default as SiPlaycanvas, defaultColor as SiPlaycanvasHex } from './icons/SiPlaycanvas'; +export { default as SiPlayerdotme, defaultColor as SiPlayerdotmeHex } from './icons/SiPlayerdotme'; +export { default as SiPlayerfm, defaultColor as SiPlayerfmHex } from './icons/SiPlayerfm'; +export { default as SiPlaystation, defaultColor as SiPlaystationHex } from './icons/SiPlaystation'; +export { default as SiPlaystation2, defaultColor as SiPlaystation2Hex } from './icons/SiPlaystation2'; +export { default as SiPlaystation3, defaultColor as SiPlaystation3Hex } from './icons/SiPlaystation3'; +export { default as SiPlaystation4, defaultColor as SiPlaystation4Hex } from './icons/SiPlaystation4'; +export { default as SiPlaystation5, defaultColor as SiPlaystation5Hex } from './icons/SiPlaystation5'; +export { default as SiPlaystationportable, defaultColor as SiPlaystationportableHex } from './icons/SiPlaystationportable'; +export { default as SiPlaystationvita, defaultColor as SiPlaystationvitaHex } from './icons/SiPlaystationvita'; +export { default as SiPleroma, defaultColor as SiPleromaHex } from './icons/SiPleroma'; +export { default as SiPlesk, defaultColor as SiPleskHex } from './icons/SiPlesk'; +export { default as SiPlex, defaultColor as SiPlexHex } from './icons/SiPlex'; +export { default as SiPlotly, defaultColor as SiPlotlyHex } from './icons/SiPlotly'; +export { default as SiPlume, defaultColor as SiPlumeHex } from './icons/SiPlume'; +export { default as SiPluralsight, defaultColor as SiPluralsightHex } from './icons/SiPluralsight'; +export { default as SiPlurk, defaultColor as SiPlurkHex } from './icons/SiPlurk'; +export { default as SiPm2, defaultColor as SiPm2Hex } from './icons/SiPm2'; +export { default as SiPnpm, defaultColor as SiPnpmHex } from './icons/SiPnpm'; +export { default as SiPocketbase, defaultColor as SiPocketbaseHex } from './icons/SiPocketbase'; +export { default as SiPocketcasts, defaultColor as SiPocketcastsHex } from './icons/SiPocketcasts'; +export { default as SiPodcastaddict, defaultColor as SiPodcastaddictHex } from './icons/SiPodcastaddict'; +export { default as SiPodcastindex, defaultColor as SiPodcastindexHex } from './icons/SiPodcastindex'; +export { default as SiPodman, defaultColor as SiPodmanHex } from './icons/SiPodman'; +export { default as SiPoe, defaultColor as SiPoeHex } from './icons/SiPoe'; +export { default as SiPoetry, defaultColor as SiPoetryHex } from './icons/SiPoetry'; +export { default as SiPolars, defaultColor as SiPolarsHex } from './icons/SiPolars'; +export { default as SiPolestar, defaultColor as SiPolestarHex } from './icons/SiPolestar'; +export { default as SiPolkadot, defaultColor as SiPolkadotHex } from './icons/SiPolkadot'; +export { default as SiPoly, defaultColor as SiPolyHex } from './icons/SiPoly'; +export { default as SiPolygon, defaultColor as SiPolygonHex } from './icons/SiPolygon'; +export { default as SiPolymerproject, defaultColor as SiPolymerprojectHex } from './icons/SiPolymerproject'; +export { default as SiPolywork, defaultColor as SiPolyworkHex } from './icons/SiPolywork'; +export { default as SiPomerium, defaultColor as SiPomeriumHex } from './icons/SiPomerium'; +export { default as SiPond5, defaultColor as SiPond5Hex } from './icons/SiPond5'; +export { default as SiPopos, defaultColor as SiPoposHex } from './icons/SiPopos'; +export { default as SiPorkbun, defaultColor as SiPorkbunHex } from './icons/SiPorkbun'; +export { default as SiPorsche, defaultColor as SiPorscheHex } from './icons/SiPorsche'; +export { default as SiPortableappsdotcom, defaultColor as SiPortableappsdotcomHex } from './icons/SiPortableappsdotcom'; +export { default as SiPortainer, defaultColor as SiPortainerHex } from './icons/SiPortainer'; +export { default as SiPortswigger, defaultColor as SiPortswiggerHex } from './icons/SiPortswigger'; +export { default as SiPosit, defaultColor as SiPositHex } from './icons/SiPosit'; +export { default as SiPostcss, defaultColor as SiPostcssHex } from './icons/SiPostcss'; +export { default as SiPostgresql, defaultColor as SiPostgresqlHex } from './icons/SiPostgresql'; +export { default as SiPosthog, defaultColor as SiPosthogHex } from './icons/SiPosthog'; +export { default as SiPostiz, defaultColor as SiPostizHex } from './icons/SiPostiz'; +export { default as SiPostman, defaultColor as SiPostmanHex } from './icons/SiPostman'; +export { default as SiPostmates, defaultColor as SiPostmatesHex } from './icons/SiPostmates'; +export { default as SiPowers, defaultColor as SiPowersHex } from './icons/SiPowers'; +export { default as SiPrdotco, defaultColor as SiPrdotcoHex } from './icons/SiPrdotco'; +export { default as SiPreact, defaultColor as SiPreactHex } from './icons/SiPreact'; +export { default as SiPrecommit, defaultColor as SiPrecommitHex } from './icons/SiPrecommit'; +export { default as SiPrefect, defaultColor as SiPrefectHex } from './icons/SiPrefect'; +export { default as SiPrek, defaultColor as SiPrekHex } from './icons/SiPrek'; +export { default as SiPremid, defaultColor as SiPremidHex } from './icons/SiPremid'; +export { default as SiPremierleague, defaultColor as SiPremierleagueHex } from './icons/SiPremierleague'; +export { default as SiPrepbytes, defaultColor as SiPrepbytesHex } from './icons/SiPrepbytes'; +export { default as SiPrestashop, defaultColor as SiPrestashopHex } from './icons/SiPrestashop'; +export { default as SiPresto, defaultColor as SiPrestoHex } from './icons/SiPresto'; +export { default as SiPrettier, defaultColor as SiPrettierHex } from './icons/SiPrettier'; +export { default as SiPretzel, defaultColor as SiPretzelHex } from './icons/SiPretzel'; +export { default as SiPrevention, defaultColor as SiPreventionHex } from './icons/SiPrevention'; +export { default as SiPrezi, defaultColor as SiPreziHex } from './icons/SiPrezi'; +export { default as SiPrimefaces, defaultColor as SiPrimefacesHex } from './icons/SiPrimefaces'; +export { default as SiPrimeng, defaultColor as SiPrimengHex } from './icons/SiPrimeng'; +export { default as SiPrimereact, defaultColor as SiPrimereactHex } from './icons/SiPrimereact'; +export { default as SiPrimevue, defaultColor as SiPrimevueHex } from './icons/SiPrimevue'; +export { default as SiPrintables, defaultColor as SiPrintablesHex } from './icons/SiPrintables'; +export { default as SiPrisma, defaultColor as SiPrismaHex } from './icons/SiPrisma'; +export { default as SiPrismic, defaultColor as SiPrismicHex } from './icons/SiPrismic'; +export { default as SiPrivatedivision, defaultColor as SiPrivatedivisionHex } from './icons/SiPrivatedivision'; +export { default as SiPrivateinternetaccess, defaultColor as SiPrivateinternetaccessHex } from './icons/SiPrivateinternetaccess'; +export { default as SiProbot, defaultColor as SiProbotHex } from './icons/SiProbot'; +export { default as SiProcessingfoundation, defaultColor as SiProcessingfoundationHex } from './icons/SiProcessingfoundation'; +export { default as SiProcesson, defaultColor as SiProcessonHex } from './icons/SiProcesson'; +export { default as SiProcesswire, defaultColor as SiProcesswireHex } from './icons/SiProcesswire'; +export { default as SiProducthunt, defaultColor as SiProducthuntHex } from './icons/SiProducthunt'; +export { default as SiProgate, defaultColor as SiProgateHex } from './icons/SiProgate'; +export { default as SiProgress, defaultColor as SiProgressHex } from './icons/SiProgress'; +export { default as SiPrometheus, defaultColor as SiPrometheusHex } from './icons/SiPrometheus'; +export { default as SiPronounsdotpage, defaultColor as SiPronounsdotpageHex } from './icons/SiPronounsdotpage'; +export { default as SiProsieben, defaultColor as SiProsiebenHex } from './icons/SiProsieben'; +export { default as SiProteus, defaultColor as SiProteusHex } from './icons/SiProteus'; +export { default as SiProtocolsdotio, defaultColor as SiProtocolsdotioHex } from './icons/SiProtocolsdotio'; +export { default as SiProtodotio, defaultColor as SiProtodotioHex } from './icons/SiProtodotio'; +export { default as SiProton, defaultColor as SiProtonHex } from './icons/SiProton'; +export { default as SiProtoncalendar, defaultColor as SiProtoncalendarHex } from './icons/SiProtoncalendar'; +export { default as SiProtondb, defaultColor as SiProtondbHex } from './icons/SiProtondb'; +export { default as SiProtondrive, defaultColor as SiProtondriveHex } from './icons/SiProtondrive'; +export { default as SiProtonmail, defaultColor as SiProtonmailHex } from './icons/SiProtonmail'; +export { default as SiProtonvpn, defaultColor as SiProtonvpnHex } from './icons/SiProtonvpn'; +export { default as SiProtools, defaultColor as SiProtoolsHex } from './icons/SiProtools'; +export { default as SiProtractor, defaultColor as SiProtractorHex } from './icons/SiProtractor'; +export { default as SiProxmox, defaultColor as SiProxmoxHex } from './icons/SiProxmox'; +export { default as SiPterodactyl, defaultColor as SiPterodactylHex } from './icons/SiPterodactyl'; +export { default as SiPubg, defaultColor as SiPubgHex } from './icons/SiPubg'; +export { default as SiPublons, defaultColor as SiPublonsHex } from './icons/SiPublons'; +export { default as SiPubmed, defaultColor as SiPubmedHex } from './icons/SiPubmed'; +export { default as SiPug, defaultColor as SiPugHex } from './icons/SiPug'; +export { default as SiPulumi, defaultColor as SiPulumiHex } from './icons/SiPulumi'; +export { default as SiPuma, defaultColor as SiPumaHex } from './icons/SiPuma'; +export { default as SiPuppet, defaultColor as SiPuppetHex } from './icons/SiPuppet'; +export { default as SiPuppeteer, defaultColor as SiPuppeteerHex } from './icons/SiPuppeteer'; +export { default as SiPurescript, defaultColor as SiPurescriptHex } from './icons/SiPurescript'; +export { default as SiPurgecss, defaultColor as SiPurgecssHex } from './icons/SiPurgecss'; +export { default as SiPurism, defaultColor as SiPurismHex } from './icons/SiPurism'; +export { default as SiPushbullet, defaultColor as SiPushbulletHex } from './icons/SiPushbullet'; +export { default as SiPusher, defaultColor as SiPusherHex } from './icons/SiPusher'; +export { default as SiPwa, defaultColor as SiPwaHex } from './icons/SiPwa'; +export { default as SiPycharm, defaultColor as SiPycharmHex } from './icons/SiPycharm'; +export { default as SiPycqa, defaultColor as SiPycqaHex } from './icons/SiPycqa'; +export { default as SiPydantic, defaultColor as SiPydanticHex } from './icons/SiPydantic'; +export { default as SiPyg, defaultColor as SiPygHex } from './icons/SiPyg'; +export { default as SiPypi, defaultColor as SiPypiHex } from './icons/SiPypi'; +export { default as SiPypy, defaultColor as SiPypyHex } from './icons/SiPypy'; +export { default as SiPyscaffold, defaultColor as SiPyscaffoldHex } from './icons/SiPyscaffold'; +export { default as SiPysyft, defaultColor as SiPysyftHex } from './icons/SiPysyft'; +export { default as SiPytest, defaultColor as SiPytestHex } from './icons/SiPytest'; +export { default as SiPython, defaultColor as SiPythonHex } from './icons/SiPython'; +export { default as SiPythonanywhere, defaultColor as SiPythonanywhereHex } from './icons/SiPythonanywhere'; +export { default as SiPytorch, defaultColor as SiPytorchHex } from './icons/SiPytorch'; +export { default as SiPyup, defaultColor as SiPyupHex } from './icons/SiPyup'; +export { default as SiQantas, defaultColor as SiQantasHex } from './icons/SiQantas'; +export { default as SiQase, defaultColor as SiQaseHex } from './icons/SiQase'; +export { default as SiQatarairways, defaultColor as SiQatarairwaysHex } from './icons/SiQatarairways'; +export { default as SiQbittorrent, defaultColor as SiQbittorrentHex } from './icons/SiQbittorrent'; +export { default as SiQemu, defaultColor as SiQemuHex } from './icons/SiQemu'; +export { default as SiQgis, defaultColor as SiQgisHex } from './icons/SiQgis'; +export { default as SiQi, defaultColor as SiQiHex } from './icons/SiQi'; +export { default as SiQiita, defaultColor as SiQiitaHex } from './icons/SiQiita'; +export { default as SiQiskit, defaultColor as SiQiskitHex } from './icons/SiQiskit'; +export { default as SiQiwi, defaultColor as SiQiwiHex } from './icons/SiQiwi'; +export { default as SiQlik, defaultColor as SiQlikHex } from './icons/SiQlik'; +export { default as SiQlty, defaultColor as SiQltyHex } from './icons/SiQlty'; +export { default as SiQmk, defaultColor as SiQmkHex } from './icons/SiQmk'; +export { default as SiQnap, defaultColor as SiQnapHex } from './icons/SiQnap'; +export { default as SiQodo, defaultColor as SiQodoHex } from './icons/SiQodo'; +export { default as SiQq, defaultColor as SiQqHex } from './icons/SiQq'; +export { default as SiQt, defaultColor as SiQtHex } from './icons/SiQt'; +export { default as SiQuad9, defaultColor as SiQuad9Hex } from './icons/SiQuad9'; +export { default as SiQualcomm, defaultColor as SiQualcommHex } from './icons/SiQualcomm'; +export { default as SiQualtrics, defaultColor as SiQualtricsHex } from './icons/SiQualtrics'; +export { default as SiQualys, defaultColor as SiQualysHex } from './icons/SiQualys'; +export { default as SiQuantcast, defaultColor as SiQuantcastHex } from './icons/SiQuantcast'; +export { default as SiQuantconnect, defaultColor as SiQuantconnectHex } from './icons/SiQuantconnect'; +export { default as SiQuarkus, defaultColor as SiQuarkusHex } from './icons/SiQuarkus'; +export { default as SiQuarto, defaultColor as SiQuartoHex } from './icons/SiQuarto'; +export { default as SiQuasar, defaultColor as SiQuasarHex } from './icons/SiQuasar'; +export { default as SiQubesos, defaultColor as SiQubesosHex } from './icons/SiQubesos'; +export { default as SiQuest, defaultColor as SiQuestHex } from './icons/SiQuest'; +export { default as SiQuickbooks, defaultColor as SiQuickbooksHex } from './icons/SiQuickbooks'; +export { default as SiQuicklook, defaultColor as SiQuicklookHex } from './icons/SiQuicklook'; +export { default as SiQuicktime, defaultColor as SiQuicktimeHex } from './icons/SiQuicktime'; +export { default as SiQuicktype, defaultColor as SiQuicktypeHex } from './icons/SiQuicktype'; +export { default as SiQuizlet, defaultColor as SiQuizletHex } from './icons/SiQuizlet'; +export { default as SiQuora, defaultColor as SiQuoraHex } from './icons/SiQuora'; +export { default as SiQwant, defaultColor as SiQwantHex } from './icons/SiQwant'; +export { default as SiQwik, defaultColor as SiQwikHex } from './icons/SiQwik'; +export { default as SiQwiklabs, defaultColor as SiQwiklabsHex } from './icons/SiQwiklabs'; +export { default as SiQzone, defaultColor as SiQzoneHex } from './icons/SiQzone'; +export { default as SiR, defaultColor as SiRHex } from './icons/SiR'; +export { default as SiR3, defaultColor as SiR3Hex } from './icons/SiR3'; +export { default as SiRabbitmq, defaultColor as SiRabbitmqHex } from './icons/SiRabbitmq'; +export { default as SiRacket, defaultColor as SiRacketHex } from './icons/SiRacket'; +export { default as SiRadar, defaultColor as SiRadarHex } from './icons/SiRadar'; +export { default as SiRadarr, defaultColor as SiRadarrHex } from './icons/SiRadarr'; +export { default as SiRadiofrance, defaultColor as SiRadiofranceHex } from './icons/SiRadiofrance'; +export { default as SiRadixui, defaultColor as SiRadixuiHex } from './icons/SiRadixui'; +export { default as SiRadstudio, defaultColor as SiRadstudioHex } from './icons/SiRadstudio'; +export { default as SiRailway, defaultColor as SiRailwayHex } from './icons/SiRailway'; +export { default as SiRainmeter, defaultColor as SiRainmeterHex } from './icons/SiRainmeter'; +export { default as SiRainyun, defaultColor as SiRainyunHex } from './icons/SiRainyun'; +export { default as SiRakuten, defaultColor as SiRakutenHex } from './icons/SiRakuten'; +export { default as SiRakutenkobo, defaultColor as SiRakutenkoboHex } from './icons/SiRakutenkobo'; +export { default as SiRam, defaultColor as SiRamHex } from './icons/SiRam'; +export { default as SiRancher, defaultColor as SiRancherHex } from './icons/SiRancher'; +export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid'; +export { default as SiRarible, defaultColor as SiRaribleHex } from './icons/SiRarible'; +export { default as SiRasa, defaultColor as SiRasaHex } from './icons/SiRasa'; +export { default as SiRaspberrypi, defaultColor as SiRaspberrypiHex } from './icons/SiRaspberrypi'; +export { default as SiRatatui, defaultColor as SiRatatuiHex } from './icons/SiRatatui'; +export { default as SiRavelry, defaultColor as SiRavelryHex } from './icons/SiRavelry'; +export { default as SiRay, defaultColor as SiRayHex } from './icons/SiRay'; +export { default as SiRaycast, defaultColor as SiRaycastHex } from './icons/SiRaycast'; +export { default as SiRaylib, defaultColor as SiRaylibHex } from './icons/SiRaylib'; +export { default as SiRazer, defaultColor as SiRazerHex } from './icons/SiRazer'; +export { default as SiRazorpay, defaultColor as SiRazorpayHex } from './icons/SiRazorpay'; +export { default as SiRclone, defaultColor as SiRcloneHex } from './icons/SiRclone'; +export { default as SiReact, defaultColor as SiReactHex } from './icons/SiReact'; +export { default as SiReactbootstrap, defaultColor as SiReactbootstrapHex } from './icons/SiReactbootstrap'; +export { default as SiReacthookform, defaultColor as SiReacthookformHex } from './icons/SiReacthookform'; +export { default as SiReactiveresume, defaultColor as SiReactiveresumeHex } from './icons/SiReactiveresume'; +export { default as SiReactivex, defaultColor as SiReactivexHex } from './icons/SiReactivex'; +export { default as SiReactos, defaultColor as SiReactosHex } from './icons/SiReactos'; +export { default as SiReactquery, defaultColor as SiReactqueryHex } from './icons/SiReactquery'; +export { default as SiReactrouter, defaultColor as SiReactrouterHex } from './icons/SiReactrouter'; +export { default as SiReacttable, defaultColor as SiReacttableHex } from './icons/SiReacttable'; +export { default as SiReaddotcv, defaultColor as SiReaddotcvHex } from './icons/SiReaddotcv'; +export { default as SiReadme, defaultColor as SiReadmeHex } from './icons/SiReadme'; +export { default as SiReadthedocs, defaultColor as SiReadthedocsHex } from './icons/SiReadthedocs'; +export { default as SiReason, defaultColor as SiReasonHex } from './icons/SiReason'; +export { default as SiReasonstudios, defaultColor as SiReasonstudiosHex } from './icons/SiReasonstudios'; +export { default as SiRecoil, defaultColor as SiRecoilHex } from './icons/SiRecoil'; +export { default as SiRed, defaultColor as SiRedHex } from './icons/SiRed'; +export { default as SiRedash, defaultColor as SiRedashHex } from './icons/SiRedash'; +export { default as SiRedbubble, defaultColor as SiRedbubbleHex } from './icons/SiRedbubble'; +export { default as SiRedbull, defaultColor as SiRedbullHex } from './icons/SiRedbull'; +export { default as SiRedcandlegames, defaultColor as SiRedcandlegamesHex } from './icons/SiRedcandlegames'; +export { default as SiReddit, defaultColor as SiRedditHex } from './icons/SiReddit'; +export { default as SiRedhat, defaultColor as SiRedhatHex } from './icons/SiRedhat'; +export { default as SiRedhatopenshift, defaultColor as SiRedhatopenshiftHex } from './icons/SiRedhatopenshift'; +export { default as SiRedis, defaultColor as SiRedisHex } from './icons/SiRedis'; +export { default as SiRedmine, defaultColor as SiRedmineHex } from './icons/SiRedmine'; +export { default as SiRedox, defaultColor as SiRedoxHex } from './icons/SiRedox'; +export { default as SiRedragon, defaultColor as SiRedragonHex } from './icons/SiRedragon'; +export { default as SiRedsys, defaultColor as SiRedsysHex } from './icons/SiRedsys'; +export { default as SiRedux, defaultColor as SiReduxHex } from './icons/SiRedux'; +export { default as SiReduxsaga, defaultColor as SiReduxsagaHex } from './icons/SiReduxsaga'; +export { default as SiRedwoodjs, defaultColor as SiRedwoodjsHex } from './icons/SiRedwoodjs'; +export { default as SiReebok, defaultColor as SiReebokHex } from './icons/SiReebok'; +export { default as SiRefine, defaultColor as SiRefineHex } from './icons/SiRefine'; +export { default as SiRefinedgithub, defaultColor as SiRefinedgithubHex } from './icons/SiRefinedgithub'; +export { default as SiReflex, defaultColor as SiReflexHex } from './icons/SiReflex'; +export { default as SiRekaui, defaultColor as SiRekauiHex } from './icons/SiRekaui'; +export { default as SiRelay, defaultColor as SiRelayHex } from './icons/SiRelay'; +export { default as SiRelianceindustrieslimited, defaultColor as SiRelianceindustrieslimitedHex } from './icons/SiRelianceindustrieslimited'; +export { default as SiRemark, defaultColor as SiRemarkHex } from './icons/SiRemark'; +export { default as SiRemedyentertainment, defaultColor as SiRemedyentertainmentHex } from './icons/SiRemedyentertainment'; +export { default as SiRemix, defaultColor as SiRemixHex } from './icons/SiRemix'; +export { default as SiRemovedotbg, defaultColor as SiRemovedotbgHex } from './icons/SiRemovedotbg'; +export { default as SiRenault, defaultColor as SiRenaultHex } from './icons/SiRenault'; +export { default as SiRender, defaultColor as SiRenderHex } from './icons/SiRender'; +export { default as SiRenovate, defaultColor as SiRenovateHex } from './icons/SiRenovate'; +export { default as SiRenpy, defaultColor as SiRenpyHex } from './icons/SiRenpy'; +export { default as SiRenren, defaultColor as SiRenrenHex } from './icons/SiRenren'; +export { default as SiReplicate, defaultColor as SiReplicateHex } from './icons/SiReplicate'; +export { default as SiReplit, defaultColor as SiReplitHex } from './icons/SiReplit'; +export { default as SiRepublicofgamers, defaultColor as SiRepublicofgamersHex } from './icons/SiRepublicofgamers'; +export { default as SiRescript, defaultColor as SiRescriptHex } from './icons/SiRescript'; +export { default as SiRescuetime, defaultColor as SiRescuetimeHex } from './icons/SiRescuetime'; +export { default as SiResearchgate, defaultColor as SiResearchgateHex } from './icons/SiResearchgate'; +export { default as SiResend, defaultColor as SiResendHex } from './icons/SiResend'; +export { default as SiResharper, defaultColor as SiResharperHex } from './icons/SiResharper'; +export { default as SiResurrectionremixos, defaultColor as SiResurrectionremixosHex } from './icons/SiResurrectionremixos'; +export { default as SiRetool, defaultColor as SiRetoolHex } from './icons/SiRetool'; +export { default as SiRetroachievements, defaultColor as SiRetroachievementsHex } from './icons/SiRetroachievements'; +export { default as SiRetroarch, defaultColor as SiRetroarchHex } from './icons/SiRetroarch'; +export { default as SiRetropie, defaultColor as SiRetropieHex } from './icons/SiRetropie'; +export { default as SiRevanced, defaultColor as SiRevancedHex } from './icons/SiRevanced'; +export { default as SiRevealdotjs, defaultColor as SiRevealdotjsHex } from './icons/SiRevealdotjs'; +export { default as SiRevenuecat, defaultColor as SiRevenuecatHex } from './icons/SiRevenuecat'; +export { default as SiReverbnation, defaultColor as SiReverbnationHex } from './icons/SiReverbnation'; +export { default as SiRevoltdotchat, defaultColor as SiRevoltdotchatHex } from './icons/SiRevoltdotchat'; +export { default as SiRevolut, defaultColor as SiRevolutHex } from './icons/SiRevolut'; +export { default as SiRewe, defaultColor as SiReweHex } from './icons/SiRewe'; +export { default as SiRezgo, defaultColor as SiRezgoHex } from './icons/SiRezgo'; +export { default as SiRhinoceros, defaultColor as SiRhinocerosHex } from './icons/SiRhinoceros'; +export { default as SiRich, defaultColor as SiRichHex } from './icons/SiRich'; +export { default as SiRider, defaultColor as SiRiderHex } from './icons/SiRider'; +export { default as SiRimacautomobili, defaultColor as SiRimacautomobiliHex } from './icons/SiRimacautomobili'; +export { default as SiRime, defaultColor as SiRimeHex } from './icons/SiRime'; +export { default as SiRing, defaultColor as SiRingHex } from './icons/SiRing'; +export { default as SiRiotgames, defaultColor as SiRiotgamesHex } from './icons/SiRiotgames'; +export { default as SiRipple, defaultColor as SiRippleHex } from './icons/SiRipple'; +export { default as SiRiscv, defaultColor as SiRiscvHex } from './icons/SiRiscv'; +export { default as SiRiseup, defaultColor as SiRiseupHex } from './icons/SiRiseup'; +export { default as SiRitzcarlton, defaultColor as SiRitzcarltonHex } from './icons/SiRitzcarlton'; +export { default as SiRive, defaultColor as SiRiveHex } from './icons/SiRive'; +export { default as SiRoadmapdotsh, defaultColor as SiRoadmapdotshHex } from './icons/SiRoadmapdotsh'; +export { default as SiRoamresearch, defaultColor as SiRoamresearchHex } from './icons/SiRoamresearch'; +export { default as SiRobinhood, defaultColor as SiRobinhoodHex } from './icons/SiRobinhood'; +export { default as SiRoblox, defaultColor as SiRobloxHex } from './icons/SiRoblox'; +export { default as SiRobloxstudio, defaultColor as SiRobloxstudioHex } from './icons/SiRobloxstudio'; +export { default as SiRoboflow, defaultColor as SiRoboflowHex } from './icons/SiRoboflow'; +export { default as SiRobotframework, defaultColor as SiRobotframeworkHex } from './icons/SiRobotframework'; +export { default as SiRocket, defaultColor as SiRocketHex } from './icons/SiRocket'; +export { default as SiRocketdotchat, defaultColor as SiRocketdotchatHex } from './icons/SiRocketdotchat'; +export { default as SiRocksdb, defaultColor as SiRocksdbHex } from './icons/SiRocksdb'; +export { default as SiRockstargames, defaultColor as SiRockstargamesHex } from './icons/SiRockstargames'; +export { default as SiRockwellautomation, defaultColor as SiRockwellautomationHex } from './icons/SiRockwellautomation'; +export { default as SiRockylinux, defaultColor as SiRockylinuxHex } from './icons/SiRockylinux'; +export { default as SiRoku, defaultColor as SiRokuHex } from './icons/SiRoku'; +export { default as SiRoll20, defaultColor as SiRoll20Hex } from './icons/SiRoll20'; +export { default as SiRollbar, defaultColor as SiRollbarHex } from './icons/SiRollbar'; +export { default as SiRolldown, defaultColor as SiRolldownHex } from './icons/SiRolldown'; +export { default as SiRollsroyce, defaultColor as SiRollsroyceHex } from './icons/SiRollsroyce'; +export { default as SiRollupdotjs, defaultColor as SiRollupdotjsHex } from './icons/SiRollupdotjs'; +export { default as SiRook, defaultColor as SiRookHex } from './icons/SiRook'; +export { default as SiRoon, defaultColor as SiRoonHex } from './icons/SiRoon'; +export { default as SiRoot, defaultColor as SiRootHex } from './icons/SiRoot'; +export { default as SiRootme, defaultColor as SiRootmeHex } from './icons/SiRootme'; +export { default as SiRoots, defaultColor as SiRootsHex } from './icons/SiRoots'; +export { default as SiRootsbedrock, defaultColor as SiRootsbedrockHex } from './icons/SiRootsbedrock'; +export { default as SiRootssage, defaultColor as SiRootssageHex } from './icons/SiRootssage'; +export { default as SiRos, defaultColor as SiRosHex } from './icons/SiRos'; +export { default as SiRossmann, defaultColor as SiRossmannHex } from './icons/SiRossmann'; +export { default as SiRotaryinternational, defaultColor as SiRotaryinternationalHex } from './icons/SiRotaryinternational'; +export { default as SiRottentomatoes, defaultColor as SiRottentomatoesHex } from './icons/SiRottentomatoes'; +export { default as SiRoundcube, defaultColor as SiRoundcubeHex } from './icons/SiRoundcube'; +export { default as SiRsocket, defaultColor as SiRsocketHex } from './icons/SiRsocket'; +export { default as SiRss, defaultColor as SiRssHex } from './icons/SiRss'; +export { default as SiRstudioide, defaultColor as SiRstudioideHex } from './icons/SiRstudioide'; +export { default as SiRte, defaultColor as SiRteHex } from './icons/SiRte'; +export { default as SiRtl, defaultColor as SiRtlHex } from './icons/SiRtl'; +export { default as SiRtlzwei, defaultColor as SiRtlzweiHex } from './icons/SiRtlzwei'; +export { default as SiRtm, defaultColor as SiRtmHex } from './icons/SiRtm'; +export { default as SiRubocop, defaultColor as SiRubocopHex } from './icons/SiRubocop'; +export { default as SiRuby, defaultColor as SiRubyHex } from './icons/SiRuby'; +export { default as SiRubygems, defaultColor as SiRubygemsHex } from './icons/SiRubygems'; +export { default as SiRubymine, defaultColor as SiRubymineHex } from './icons/SiRubymine'; +export { default as SiRubyonrails, defaultColor as SiRubyonrailsHex } from './icons/SiRubyonrails'; +export { default as SiRubysinatra, defaultColor as SiRubysinatraHex } from './icons/SiRubysinatra'; +export { default as SiRuff, defaultColor as SiRuffHex } from './icons/SiRuff'; +export { default as SiRumahweb, defaultColor as SiRumahwebHex } from './icons/SiRumahweb'; +export { default as SiRumble, defaultColor as SiRumbleHex } from './icons/SiRumble'; +export { default as SiRundeck, defaultColor as SiRundeckHex } from './icons/SiRundeck'; +export { default as SiRunkeeper, defaultColor as SiRunkeeperHex } from './icons/SiRunkeeper'; +export { default as SiRunkit, defaultColor as SiRunkitHex } from './icons/SiRunkit'; +export { default as SiRunrundotit, defaultColor as SiRunrundotitHex } from './icons/SiRunrundotit'; +export { default as SiRust, defaultColor as SiRustHex } from './icons/SiRust'; +export { default as SiRustdesk, defaultColor as SiRustdeskHex } from './icons/SiRustdesk'; +export { default as SiRxdb, defaultColor as SiRxdbHex } from './icons/SiRxdb'; +export { default as SiRyanair, defaultColor as SiRyanairHex } from './icons/SiRyanair'; +export { default as SiRye, defaultColor as SiRyeHex } from './icons/SiRye'; +export { default as SiS7airlines, defaultColor as SiS7airlinesHex } from './icons/SiS7airlines'; +export { default as SiSabanci, defaultColor as SiSabanciHex } from './icons/SiSabanci'; +export { default as SiSafari, defaultColor as SiSafariHex } from './icons/SiSafari'; +export { default as SiSage, defaultColor as SiSageHex } from './icons/SiSage'; +export { default as SiSagemath, defaultColor as SiSagemathHex } from './icons/SiSagemath'; +export { default as SiSahibinden, defaultColor as SiSahibindenHex } from './icons/SiSahibinden'; +export { default as SiSailfishos, defaultColor as SiSailfishosHex } from './icons/SiSailfishos'; +export { default as SiSailsdotjs, defaultColor as SiSailsdotjsHex } from './icons/SiSailsdotjs'; +export { default as SiSalla, defaultColor as SiSallaHex } from './icons/SiSalla'; +export { default as SiSaltproject, defaultColor as SiSaltprojectHex } from './icons/SiSaltproject'; +export { default as SiSamsclub, defaultColor as SiSamsclubHex } from './icons/SiSamsclub'; +export { default as SiSamsung, defaultColor as SiSamsungHex } from './icons/SiSamsung'; +export { default as SiSamsungpay, defaultColor as SiSamsungpayHex } from './icons/SiSamsungpay'; +export { default as SiSanfranciscomunicipalrailway, defaultColor as SiSanfranciscomunicipalrailwayHex } from './icons/SiSanfranciscomunicipalrailway'; +export { default as SiSanic, defaultColor as SiSanicHex } from './icons/SiSanic'; +export { default as SiSanity, defaultColor as SiSanityHex } from './icons/SiSanity'; +export { default as SiSaopaulometro, defaultColor as SiSaopaulometroHex } from './icons/SiSaopaulometro'; +export { default as SiSap, defaultColor as SiSapHex } from './icons/SiSap'; +export { default as SiSartorius, defaultColor as SiSartoriusHex } from './icons/SiSartorius'; +export { default as SiSass, defaultColor as SiSassHex } from './icons/SiSass'; +export { default as SiSat1, defaultColor as SiSat1Hex } from './icons/SiSat1'; +export { default as SiSatellite, defaultColor as SiSatelliteHex } from './icons/SiSatellite'; +export { default as SiSaturn, defaultColor as SiSaturnHex } from './icons/SiSaturn'; +export { default as SiSaucelabs, defaultColor as SiSaucelabsHex } from './icons/SiSaucelabs'; +export { default as SiSaudia, defaultColor as SiSaudiaHex } from './icons/SiSaudia'; +export { default as SiScala, defaultColor as SiScalaHex } from './icons/SiScala'; +export { default as SiScalar, defaultColor as SiScalarHex } from './icons/SiScalar'; +export { default as SiScaleway, defaultColor as SiScalewayHex } from './icons/SiScaleway'; +export { default as SiScan, defaultColor as SiScanHex } from './icons/SiScan'; +export { default as SiScania, defaultColor as SiScaniaHex } from './icons/SiScania'; +export { default as SiSchneiderelectric, defaultColor as SiSchneiderelectricHex } from './icons/SiSchneiderelectric'; +export { default as SiScikitlearn, defaultColor as SiScikitlearnHex } from './icons/SiScikitlearn'; +export { default as SiScilab, defaultColor as SiScilabHex } from './icons/SiScilab'; +export { default as SiScipy, defaultColor as SiScipyHex } from './icons/SiScipy'; +export { default as SiScopus, defaultColor as SiScopusHex } from './icons/SiScopus'; +export { default as SiScpfoundation, defaultColor as SiScpfoundationHex } from './icons/SiScpfoundation'; +export { default as SiScrapbox, defaultColor as SiScrapboxHex } from './icons/SiScrapbox'; +export { default as SiScrapy, defaultColor as SiScrapyHex } from './icons/SiScrapy'; +export { default as SiScratch, defaultColor as SiScratchHex } from './icons/SiScratch'; +export { default as SiScreencastify, defaultColor as SiScreencastifyHex } from './icons/SiScreencastify'; +export { default as SiScrimba, defaultColor as SiScrimbaHex } from './icons/SiScrimba'; +export { default as SiScrollreveal, defaultColor as SiScrollrevealHex } from './icons/SiScrollreveal'; +export { default as SiScrumalliance, defaultColor as SiScrumallianceHex } from './icons/SiScrumalliance'; +export { default as SiScrutinizerci, defaultColor as SiScrutinizerciHex } from './icons/SiScrutinizerci'; +export { default as SiScylladb, defaultColor as SiScylladbHex } from './icons/SiScylladb'; +export { default as SiSeafile, defaultColor as SiSeafileHex } from './icons/SiSeafile'; +export { default as SiSeagate, defaultColor as SiSeagateHex } from './icons/SiSeagate'; +export { default as SiSearxng, defaultColor as SiSearxngHex } from './icons/SiSearxng'; +export { default as SiSeat, defaultColor as SiSeatHex } from './icons/SiSeat'; +export { default as SiSeatgeek, defaultColor as SiSeatgeekHex } from './icons/SiSeatgeek'; +export { default as SiSecurityscorecard, defaultColor as SiSecurityscorecardHex } from './icons/SiSecurityscorecard'; +export { default as SiSefaria, defaultColor as SiSefariaHex } from './icons/SiSefaria'; +export { default as SiSega, defaultColor as SiSegaHex } from './icons/SiSega'; +export { default as SiSelenium, defaultColor as SiSeleniumHex } from './icons/SiSelenium'; +export { default as SiSellfy, defaultColor as SiSellfyHex } from './icons/SiSellfy'; +export { default as SiSemanticrelease, defaultColor as SiSemanticreleaseHex } from './icons/SiSemanticrelease'; +export { default as SiSemanticscholar, defaultColor as SiSemanticscholarHex } from './icons/SiSemanticscholar'; +export { default as SiSemanticui, defaultColor as SiSemanticuiHex } from './icons/SiSemanticui'; +export { default as SiSemanticuireact, defaultColor as SiSemanticuireactHex } from './icons/SiSemanticuireact'; +export { default as SiSemanticweb, defaultColor as SiSemanticwebHex } from './icons/SiSemanticweb'; +export { default as SiSemaphoreci, defaultColor as SiSemaphoreciHex } from './icons/SiSemaphoreci'; +export { default as SiSemrush, defaultColor as SiSemrushHex } from './icons/SiSemrush'; +export { default as SiSemver, defaultColor as SiSemverHex } from './icons/SiSemver'; +export { default as SiSencha, defaultColor as SiSenchaHex } from './icons/SiSencha'; +export { default as SiSennheiser, defaultColor as SiSennheiserHex } from './icons/SiSennheiser'; +export { default as SiSensu, defaultColor as SiSensuHex } from './icons/SiSensu'; +export { default as SiSentry, defaultColor as SiSentryHex } from './icons/SiSentry'; +export { default as SiSepa, defaultColor as SiSepaHex } from './icons/SiSepa'; +export { default as SiSequelize, defaultColor as SiSequelizeHex } from './icons/SiSequelize'; +export { default as SiServbay, defaultColor as SiServbayHex } from './icons/SiServbay'; +export { default as SiServerfault, defaultColor as SiServerfaultHex } from './icons/SiServerfault'; +export { default as SiServerless, defaultColor as SiServerlessHex } from './icons/SiServerless'; +export { default as SiSession, defaultColor as SiSessionHex } from './icons/SiSession'; +export { default as SiSessionize, defaultColor as SiSessionizeHex } from './icons/SiSessionize'; +export { default as SiSetapp, defaultColor as SiSetappHex } from './icons/SiSetapp'; +export { default as SiSetuptools, defaultColor as SiSetuptoolsHex } from './icons/SiSetuptools'; +export { default as SiSfml, defaultColor as SiSfmlHex } from './icons/SiSfml'; +export { default as SiShadcnui, defaultColor as SiShadcnuiHex } from './icons/SiShadcnui'; +export { default as SiShadow, defaultColor as SiShadowHex } from './icons/SiShadow'; +export { default as SiShanghaimetro, defaultColor as SiShanghaimetroHex } from './icons/SiShanghaimetro'; +export { default as SiSharex, defaultColor as SiSharexHex } from './icons/SiSharex'; +export { default as SiSharp, defaultColor as SiSharpHex } from './icons/SiSharp'; +export { default as SiShazam, defaultColor as SiShazamHex } from './icons/SiShazam'; +export { default as SiShell, defaultColor as SiShellHex } from './icons/SiShell'; +export { default as SiShelly, defaultColor as SiShellyHex } from './icons/SiShelly'; +export { default as SiShenzhenmetro, defaultColor as SiShenzhenmetroHex } from './icons/SiShenzhenmetro'; +export { default as SiShieldsdotio, defaultColor as SiShieldsdotioHex } from './icons/SiShieldsdotio'; +export { default as SiShikimori, defaultColor as SiShikimoriHex } from './icons/SiShikimori'; +export { default as SiShopee, defaultColor as SiShopeeHex } from './icons/SiShopee'; +export { default as SiShopify, defaultColor as SiShopifyHex } from './icons/SiShopify'; +export { default as SiShopware, defaultColor as SiShopwareHex } from './icons/SiShopware'; +export { default as SiShortcut, defaultColor as SiShortcutHex } from './icons/SiShortcut'; +export { default as SiShowpad, defaultColor as SiShowpadHex } from './icons/SiShowpad'; +export { default as SiShowtime, defaultColor as SiShowtimeHex } from './icons/SiShowtime'; +export { default as SiShowwcase, defaultColor as SiShowwcaseHex } from './icons/SiShowwcase'; +export { default as SiSidekiq, defaultColor as SiSidekiqHex } from './icons/SiSidekiq'; +export { default as SiSidequest, defaultColor as SiSidequestHex } from './icons/SiSidequest'; +export { default as SiSiemens, defaultColor as SiSiemensHex } from './icons/SiSiemens'; +export { default as SiSifive, defaultColor as SiSifiveHex } from './icons/SiSifive'; +export { default as SiSignal, defaultColor as SiSignalHex } from './icons/SiSignal'; +export { default as SiSilverairways, defaultColor as SiSilverairwaysHex } from './icons/SiSilverairways'; +export { default as SiSimilarweb, defaultColor as SiSimilarwebHex } from './icons/SiSimilarweb'; +export { default as SiSimkl, defaultColor as SiSimklHex } from './icons/SiSimkl'; +export { default as SiSimpleanalytics, defaultColor as SiSimpleanalyticsHex } from './icons/SiSimpleanalytics'; +export { default as SiSimpleicons, defaultColor as SiSimpleiconsHex } from './icons/SiSimpleicons'; +export { default as SiSimplelocalize, defaultColor as SiSimplelocalizeHex } from './icons/SiSimplelocalize'; +export { default as SiSimplelogin, defaultColor as SiSimpleloginHex } from './icons/SiSimplelogin'; +export { default as SiSimplenote, defaultColor as SiSimplenoteHex } from './icons/SiSimplenote'; +export { default as SiSimplex, defaultColor as SiSimplexHex } from './icons/SiSimplex'; +export { default as SiSinaweibo, defaultColor as SiSinaweiboHex } from './icons/SiSinaweibo'; +export { default as SiSingaporeairlines, defaultColor as SiSingaporeairlinesHex } from './icons/SiSingaporeairlines'; +export { default as SiSinglestore, defaultColor as SiSinglestoreHex } from './icons/SiSinglestore'; +export { default as SiSitecore, defaultColor as SiSitecoreHex } from './icons/SiSitecore'; +export { default as SiSitepoint, defaultColor as SiSitepointHex } from './icons/SiSitepoint'; +export { default as SiSiyuan, defaultColor as SiSiyuanHex } from './icons/SiSiyuan'; +export { default as SiSkaffold, defaultColor as SiSkaffoldHex } from './icons/SiSkaffold'; +export { default as SiSkeleton, defaultColor as SiSkeletonHex } from './icons/SiSkeleton'; +export { default as SiSketch, defaultColor as SiSketchHex } from './icons/SiSketch'; +export { default as SiSketchfab, defaultColor as SiSketchfabHex } from './icons/SiSketchfab'; +export { default as SiSketchup, defaultColor as SiSketchupHex } from './icons/SiSketchup'; +export { default as SiSkillshare, defaultColor as SiSkillshareHex } from './icons/SiSkillshare'; +export { default as SiSkoda, defaultColor as SiSkodaHex } from './icons/SiSkoda'; +export { default as SiSky, defaultColor as SiSkyHex } from './icons/SiSky'; +export { default as SiSkypack, defaultColor as SiSkypackHex } from './icons/SiSkypack'; +export { default as SiSlackware, defaultColor as SiSlackwareHex } from './icons/SiSlackware'; +export { default as SiSlashdot, defaultColor as SiSlashdotHex } from './icons/SiSlashdot'; +export { default as SiSlickpic, defaultColor as SiSlickpicHex } from './icons/SiSlickpic'; +export { default as SiSlides, defaultColor as SiSlidesHex } from './icons/SiSlides'; +export { default as SiSlideshare, defaultColor as SiSlideshareHex } from './icons/SiSlideshare'; +export { default as SiSlint, defaultColor as SiSlintHex } from './icons/SiSlint'; +export { default as SiSmart, defaultColor as SiSmartHex } from './icons/SiSmart'; +export { default as SiSmartthings, defaultColor as SiSmartthingsHex } from './icons/SiSmartthings'; +export { default as SiSmashingmagazine, defaultColor as SiSmashingmagazineHex } from './icons/SiSmashingmagazine'; +export { default as SiSmoothcomp, defaultColor as SiSmoothcompHex } from './icons/SiSmoothcomp'; +export { default as SiSmrt, defaultColor as SiSmrtHex } from './icons/SiSmrt'; +export { default as SiSmugmug, defaultColor as SiSmugmugHex } from './icons/SiSmugmug'; +export { default as SiSnapchat, defaultColor as SiSnapchatHex } from './icons/SiSnapchat'; +export { default as SiSnapcraft, defaultColor as SiSnapcraftHex } from './icons/SiSnapcraft'; +export { default as SiSnapdragon, defaultColor as SiSnapdragonHex } from './icons/SiSnapdragon'; +export { default as SiSncf, defaultColor as SiSncfHex } from './icons/SiSncf'; +export { default as SiSnort, defaultColor as SiSnortHex } from './icons/SiSnort'; +export { default as SiSnowflake, defaultColor as SiSnowflakeHex } from './icons/SiSnowflake'; +export { default as SiSnowpack, defaultColor as SiSnowpackHex } from './icons/SiSnowpack'; +export { default as SiSnyk, defaultColor as SiSnykHex } from './icons/SiSnyk'; +export { default as SiSocialblade, defaultColor as SiSocialbladeHex } from './icons/SiSocialblade'; +export { default as SiSociety6, defaultColor as SiSociety6Hex } from './icons/SiSociety6'; +export { default as SiSocket, defaultColor as SiSocketHex } from './icons/SiSocket'; +export { default as SiSocketdotio, defaultColor as SiSocketdotioHex } from './icons/SiSocketdotio'; +export { default as SiSoftcatala, defaultColor as SiSoftcatalaHex } from './icons/SiSoftcatala'; +export { default as SiSoftpedia, defaultColor as SiSoftpediaHex } from './icons/SiSoftpedia'; +export { default as SiSogou, defaultColor as SiSogouHex } from './icons/SiSogou'; +export { default as SiSolana, defaultColor as SiSolanaHex } from './icons/SiSolana'; +export { default as SiSolid, defaultColor as SiSolidHex } from './icons/SiSolid'; +export { default as SiSolidity, defaultColor as SiSolidityHex } from './icons/SiSolidity'; +export { default as SiSololearn, defaultColor as SiSololearnHex } from './icons/SiSololearn'; +export { default as SiSolus, defaultColor as SiSolusHex } from './icons/SiSolus'; +export { default as SiSonar, defaultColor as SiSonarHex } from './icons/SiSonar'; +export { default as SiSonarqubecloud, defaultColor as SiSonarqubecloudHex } from './icons/SiSonarqubecloud'; +export { default as SiSonarqubeforide, defaultColor as SiSonarqubeforideHex } from './icons/SiSonarqubeforide'; +export { default as SiSonarqubeserver, defaultColor as SiSonarqubeserverHex } from './icons/SiSonarqubeserver'; +export { default as SiSonarr, defaultColor as SiSonarrHex } from './icons/SiSonarr'; +export { default as SiSonatype, defaultColor as SiSonatypeHex } from './icons/SiSonatype'; +export { default as SiSongkick, defaultColor as SiSongkickHex } from './icons/SiSongkick'; +export { default as SiSongoda, defaultColor as SiSongodaHex } from './icons/SiSongoda'; +export { default as SiSonicwall, defaultColor as SiSonicwallHex } from './icons/SiSonicwall'; +export { default as SiSonos, defaultColor as SiSonosHex } from './icons/SiSonos'; +export { default as SiSony, defaultColor as SiSonyHex } from './icons/SiSony'; +export { default as SiSoriana, defaultColor as SiSorianaHex } from './icons/SiSoriana'; +export { default as SiSoundcharts, defaultColor as SiSoundchartsHex } from './icons/SiSoundcharts'; +export { default as SiSoundcloud, defaultColor as SiSoundcloudHex } from './icons/SiSoundcloud'; +export { default as SiSourceengine, defaultColor as SiSourceengineHex } from './icons/SiSourceengine'; +export { default as SiSourceforge, defaultColor as SiSourceforgeHex } from './icons/SiSourceforge'; +export { default as SiSourcehut, defaultColor as SiSourcehutHex } from './icons/SiSourcehut'; +export { default as SiSourcetree, defaultColor as SiSourcetreeHex } from './icons/SiSourcetree'; +export { default as SiSouthwestairlines, defaultColor as SiSouthwestairlinesHex } from './icons/SiSouthwestairlines'; +export { default as SiSpacemacs, defaultColor as SiSpacemacsHex } from './icons/SiSpacemacs'; +export { default as SiSpaceship, defaultColor as SiSpaceshipHex } from './icons/SiSpaceship'; +export { default as SiSpacex, defaultColor as SiSpacexHex } from './icons/SiSpacex'; +export { default as SiSpacy, defaultColor as SiSpacyHex } from './icons/SiSpacy'; +export { default as SiSparkar, defaultColor as SiSparkarHex } from './icons/SiSparkar'; +export { default as SiSparkasse, defaultColor as SiSparkasseHex } from './icons/SiSparkasse'; +export { default as SiSparkfun, defaultColor as SiSparkfunHex } from './icons/SiSparkfun'; +export { default as SiSparkpost, defaultColor as SiSparkpostHex } from './icons/SiSparkpost'; +export { default as SiSpdx, defaultColor as SiSpdxHex } from './icons/SiSpdx'; +export { default as SiSpeakerdeck, defaultColor as SiSpeakerdeckHex } from './icons/SiSpeakerdeck'; +export { default as SiSpectrum, defaultColor as SiSpectrumHex } from './icons/SiSpectrum'; +export { default as SiSpeedtest, defaultColor as SiSpeedtestHex } from './icons/SiSpeedtest'; +export { default as SiSpeedypage, defaultColor as SiSpeedypageHex } from './icons/SiSpeedypage'; +export { default as SiSphinx, defaultColor as SiSphinxHex } from './icons/SiSphinx'; +export { default as SiSpigotmc, defaultColor as SiSpigotmcHex } from './icons/SiSpigotmc'; +export { default as SiSpine, defaultColor as SiSpineHex } from './icons/SiSpine'; +export { default as SiSpinnaker, defaultColor as SiSpinnakerHex } from './icons/SiSpinnaker'; +export { default as SiSplunk, defaultColor as SiSplunkHex } from './icons/SiSplunk'; +export { default as SiSpoj, defaultColor as SiSpojHex } from './icons/SiSpoj'; +export { default as SiSpond, defaultColor as SiSpondHex } from './icons/SiSpond'; +export { default as SiSpotify, defaultColor as SiSpotifyHex } from './icons/SiSpotify'; +export { default as SiSpotlight, defaultColor as SiSpotlightHex } from './icons/SiSpotlight'; +export { default as SiSpreadshirt, defaultColor as SiSpreadshirtHex } from './icons/SiSpreadshirt'; +export { default as SiSpreaker, defaultColor as SiSpreakerHex } from './icons/SiSpreaker'; +export { default as SiSpring, defaultColor as SiSpringHex } from './icons/SiSpring'; +export { default as SiSpringCreators, defaultColor as SiSpringCreatorsHex } from './icons/SiSpringCreators'; +export { default as SiSpringboot, defaultColor as SiSpringbootHex } from './icons/SiSpringboot'; +export { default as SiSpringsecurity, defaultColor as SiSpringsecurityHex } from './icons/SiSpringsecurity'; +export { default as SiSpyderide, defaultColor as SiSpyderideHex } from './icons/SiSpyderide'; +export { default as SiSqlalchemy, defaultColor as SiSqlalchemyHex } from './icons/SiSqlalchemy'; +export { default as SiSqlite, defaultColor as SiSqliteHex } from './icons/SiSqlite'; +export { default as SiSquare, defaultColor as SiSquareHex } from './icons/SiSquare'; +export { default as SiSquareenix, defaultColor as SiSquareenixHex } from './icons/SiSquareenix'; +export { default as SiSquarespace, defaultColor as SiSquarespaceHex } from './icons/SiSquarespace'; +export { default as SiSrgssr, defaultColor as SiSrgssrHex } from './icons/SiSrgssr'; +export { default as SiSsrn, defaultColor as SiSsrnHex } from './icons/SiSsrn'; +export { default as SiSst, defaultColor as SiSstHex } from './icons/SiSst'; +export { default as SiStackbit, defaultColor as SiStackbitHex } from './icons/SiStackbit'; +export { default as SiStackblitz, defaultColor as SiStackblitzHex } from './icons/SiStackblitz'; +export { default as SiStackedit, defaultColor as SiStackeditHex } from './icons/SiStackedit'; +export { default as SiStackexchange, defaultColor as SiStackexchangeHex } from './icons/SiStackexchange'; +export { default as SiStackhawk, defaultColor as SiStackhawkHex } from './icons/SiStackhawk'; +export { default as SiStackoverflow, defaultColor as SiStackoverflowHex } from './icons/SiStackoverflow'; +export { default as SiStackshare, defaultColor as SiStackshareHex } from './icons/SiStackshare'; +export { default as SiStadia, defaultColor as SiStadiaHex } from './icons/SiStadia'; +export { default as SiStaffbase, defaultColor as SiStaffbaseHex } from './icons/SiStaffbase'; +export { default as SiStagetimer, defaultColor as SiStagetimerHex } from './icons/SiStagetimer'; +export { default as SiStandardjs, defaultColor as SiStandardjsHex } from './icons/SiStandardjs'; +export { default as SiStandardresume, defaultColor as SiStandardresumeHex } from './icons/SiStandardresume'; +export { default as SiStarbucks, defaultColor as SiStarbucksHex } from './icons/SiStarbucks'; +export { default as SiStardock, defaultColor as SiStardockHex } from './icons/SiStardock'; +export { default as SiStarlingbank, defaultColor as SiStarlingbankHex } from './icons/SiStarlingbank'; +export { default as SiStarship, defaultColor as SiStarshipHex } from './icons/SiStarship'; +export { default as SiStartdotgg, defaultColor as SiStartdotggHex } from './icons/SiStartdotgg'; +export { default as SiStartpage, defaultColor as SiStartpageHex } from './icons/SiStartpage'; +export { default as SiStartrek, defaultColor as SiStartrekHex } from './icons/SiStartrek'; +export { default as SiStarz, defaultColor as SiStarzHex } from './icons/SiStarz'; +export { default as SiStatamic, defaultColor as SiStatamicHex } from './icons/SiStatamic'; +export { default as SiStatista, defaultColor as SiStatistaHex } from './icons/SiStatista'; +export { default as SiStatuspage, defaultColor as SiStatuspageHex } from './icons/SiStatuspage'; +export { default as SiStatuspal, defaultColor as SiStatuspalHex } from './icons/SiStatuspal'; +export { default as SiSteam, defaultColor as SiSteamHex } from './icons/SiSteam'; +export { default as SiSteamdb, defaultColor as SiSteamdbHex } from './icons/SiSteamdb'; +export { default as SiSteamdeck, defaultColor as SiSteamdeckHex } from './icons/SiSteamdeck'; +export { default as SiSteamworks, defaultColor as SiSteamworksHex } from './icons/SiSteamworks'; +export { default as SiSteelseries, defaultColor as SiSteelseriesHex } from './icons/SiSteelseries'; +export { default as SiSteem, defaultColor as SiSteemHex } from './icons/SiSteem'; +export { default as SiSteemit, defaultColor as SiSteemitHex } from './icons/SiSteemit'; +export { default as SiSteinberg, defaultColor as SiSteinbergHex } from './icons/SiSteinberg'; +export { default as SiStellar, defaultColor as SiStellarHex } from './icons/SiStellar'; +export { default as SiStencil, defaultColor as SiStencilHex } from './icons/SiStencil'; +export { default as SiStencyl, defaultColor as SiStencylHex } from './icons/SiStencyl'; +export { default as SiStimulus, defaultColor as SiStimulusHex } from './icons/SiStimulus'; +export { default as SiStmicroelectronics, defaultColor as SiStmicroelectronicsHex } from './icons/SiStmicroelectronics'; +export { default as SiStockx, defaultColor as SiStockxHex } from './icons/SiStockx'; +export { default as SiStopstalk, defaultColor as SiStopstalkHex } from './icons/SiStopstalk'; +export { default as SiStoryblok, defaultColor as SiStoryblokHex } from './icons/SiStoryblok'; +export { default as SiStorybook, defaultColor as SiStorybookHex } from './icons/SiStorybook'; +export { default as SiStrapi, defaultColor as SiStrapiHex } from './icons/SiStrapi'; +export { default as SiStrava, defaultColor as SiStravaHex } from './icons/SiStrava'; +export { default as SiStreamlabs, defaultColor as SiStreamlabsHex } from './icons/SiStreamlabs'; +export { default as SiStreamlit, defaultColor as SiStreamlitHex } from './icons/SiStreamlit'; +export { default as SiStreamrunners, defaultColor as SiStreamrunnersHex } from './icons/SiStreamrunners'; +export { default as SiStremio, defaultColor as SiStremioHex } from './icons/SiStremio'; +export { default as SiStripe, defaultColor as SiStripeHex } from './icons/SiStripe'; +export { default as SiStrongswan, defaultColor as SiStrongswanHex } from './icons/SiStrongswan'; +export { default as SiStryker, defaultColor as SiStrykerHex } from './icons/SiStryker'; +export { default as SiStubhub, defaultColor as SiStubhubHex } from './icons/SiStubhub'; +export { default as SiStudio3t, defaultColor as SiStudio3tHex } from './icons/SiStudio3t'; +export { default as SiStyledcomponents, defaultColor as SiStyledcomponentsHex } from './icons/SiStyledcomponents'; +export { default as SiStylelint, defaultColor as SiStylelintHex } from './icons/SiStylelint'; +export { default as SiStyleshare, defaultColor as SiStyleshareHex } from './icons/SiStyleshare'; +export { default as SiStylus, defaultColor as SiStylusHex } from './icons/SiStylus'; +export { default as SiSubaru, defaultColor as SiSubaruHex } from './icons/SiSubaru'; +export { default as SiSublimetext, defaultColor as SiSublimetextHex } from './icons/SiSublimetext'; +export { default as SiSubstack, defaultColor as SiSubstackHex } from './icons/SiSubstack'; +export { default as SiSubtitleedit, defaultColor as SiSubtitleeditHex } from './icons/SiSubtitleedit'; +export { default as SiSubversion, defaultColor as SiSubversionHex } from './icons/SiSubversion'; +export { default as SiSuckless, defaultColor as SiSucklessHex } from './icons/SiSuckless'; +export { default as SiSui, defaultColor as SiSuiHex } from './icons/SiSui'; +export { default as SiSuitest, defaultColor as SiSuitestHex } from './icons/SiSuitest'; +export { default as SiSumologic, defaultColor as SiSumologicHex } from './icons/SiSumologic'; +export { default as SiSuno, defaultColor as SiSunoHex } from './icons/SiSuno'; +export { default as SiSunrise, defaultColor as SiSunriseHex } from './icons/SiSunrise'; +export { default as SiSupabase, defaultColor as SiSupabaseHex } from './icons/SiSupabase'; +export { default as SiSupercrease, defaultColor as SiSupercreaseHex } from './icons/SiSupercrease'; +export { default as SiSupermicro, defaultColor as SiSupermicroHex } from './icons/SiSupermicro'; +export { default as SiSuperuser, defaultColor as SiSuperuserHex } from './icons/SiSuperuser'; +export { default as SiSurfshark, defaultColor as SiSurfsharkHex } from './icons/SiSurfshark'; +export { default as SiSurrealdb, defaultColor as SiSurrealdbHex } from './icons/SiSurrealdb'; +export { default as SiSurveymonkey, defaultColor as SiSurveymonkeyHex } from './icons/SiSurveymonkey'; +export { default as SiSuse, defaultColor as SiSuseHex } from './icons/SiSuse'; +export { default as SiSuzuki, defaultColor as SiSuzukiHex } from './icons/SiSuzuki'; +export { default as SiSvelte, defaultColor as SiSvelteHex } from './icons/SiSvelte'; +export { default as SiSvg, defaultColor as SiSvgHex } from './icons/SiSvg'; +export { default as SiSvgdotjs, defaultColor as SiSvgdotjsHex } from './icons/SiSvgdotjs'; +export { default as SiSvgo, defaultColor as SiSvgoHex } from './icons/SiSvgo'; +export { default as SiSvgtrace, defaultColor as SiSvgtraceHex } from './icons/SiSvgtrace'; +export { default as SiSwagger, defaultColor as SiSwaggerHex } from './icons/SiSwagger'; +export { default as SiSwarm, defaultColor as SiSwarmHex } from './icons/SiSwarm'; +export { default as SiSway, defaultColor as SiSwayHex } from './icons/SiSway'; +export { default as SiSwc, defaultColor as SiSwcHex } from './icons/SiSwc'; +export { default as SiSwift, defaultColor as SiSwiftHex } from './icons/SiSwift'; +export { default as SiSwiggy, defaultColor as SiSwiggyHex } from './icons/SiSwiggy'; +export { default as SiSwiper, defaultColor as SiSwiperHex } from './icons/SiSwiper'; +export { default as SiSwisscows, defaultColor as SiSwisscowsHex } from './icons/SiSwisscows'; +export { default as SiSwr, defaultColor as SiSwrHex } from './icons/SiSwr'; +export { default as SiSymantec, defaultColor as SiSymantecHex } from './icons/SiSymantec'; +export { default as SiSymbolab, defaultColor as SiSymbolabHex } from './icons/SiSymbolab'; +export { default as SiSymfony, defaultColor as SiSymfonyHex } from './icons/SiSymfony'; +export { default as SiSymphony, defaultColor as SiSymphonyHex } from './icons/SiSymphony'; +export { default as SiSympy, defaultColor as SiSympyHex } from './icons/SiSympy'; +export { default as SiSyncthing, defaultColor as SiSyncthingHex } from './icons/SiSyncthing'; +export { default as SiSynology, defaultColor as SiSynologyHex } from './icons/SiSynology'; +export { default as SiSystem76, defaultColor as SiSystem76Hex } from './icons/SiSystem76'; +export { default as SiTabelog, defaultColor as SiTabelogHex } from './icons/SiTabelog'; +export { default as SiTablecheck, defaultColor as SiTablecheckHex } from './icons/SiTablecheck'; +export { default as SiTacobell, defaultColor as SiTacobellHex } from './icons/SiTacobell'; +export { default as SiTado, defaultColor as SiTadoHex } from './icons/SiTado'; +export { default as SiTaichigraphics, defaultColor as SiTaichigraphicsHex } from './icons/SiTaichigraphics'; +export { default as SiTaichilang, defaultColor as SiTaichilangHex } from './icons/SiTaichilang'; +export { default as SiTails, defaultColor as SiTailsHex } from './icons/SiTails'; +export { default as SiTailscale, defaultColor as SiTailscaleHex } from './icons/SiTailscale'; +export { default as SiTailwindcss, defaultColor as SiTailwindcssHex } from './icons/SiTailwindcss'; +export { default as SiTaipy, defaultColor as SiTaipyHex } from './icons/SiTaipy'; +export { default as SiTaketwointeractivesoftware, defaultColor as SiTaketwointeractivesoftwareHex } from './icons/SiTaketwointeractivesoftware'; +export { default as SiTalend, defaultColor as SiTalendHex } from './icons/SiTalend'; +export { default as SiTalenthouse, defaultColor as SiTalenthouseHex } from './icons/SiTalenthouse'; +export { default as SiTalos, defaultColor as SiTalosHex } from './icons/SiTalos'; +export { default as SiTamiya, defaultColor as SiTamiyaHex } from './icons/SiTamiya'; +export { default as SiTampermonkey, defaultColor as SiTampermonkeyHex } from './icons/SiTampermonkey'; +export { default as SiTanstack, defaultColor as SiTanstackHex } from './icons/SiTanstack'; +export { default as SiTaobao, defaultColor as SiTaobaoHex } from './icons/SiTaobao'; +export { default as SiTapas, defaultColor as SiTapasHex } from './icons/SiTapas'; +export { default as SiTarget, defaultColor as SiTargetHex } from './icons/SiTarget'; +export { default as SiTarom, defaultColor as SiTaromHex } from './icons/SiTarom'; +export { default as SiTask, defaultColor as SiTaskHex } from './icons/SiTask'; +export { default as SiTasmota, defaultColor as SiTasmotaHex } from './icons/SiTasmota'; +export { default as SiTata, defaultColor as SiTataHex } from './icons/SiTata'; +export { default as SiTauri, defaultColor as SiTauriHex } from './icons/SiTauri'; +export { default as SiTaxbuzz, defaultColor as SiTaxbuzzHex } from './icons/SiTaxbuzz'; +export { default as SiTcs, defaultColor as SiTcsHex } from './icons/SiTcs'; +export { default as SiTeal, defaultColor as SiTealHex } from './icons/SiTeal'; +export { default as SiTeamcity, defaultColor as SiTeamcityHex } from './icons/SiTeamcity'; +export { default as SiTeamspeak, defaultColor as SiTeamspeakHex } from './icons/SiTeamspeak'; +export { default as SiTeamviewer, defaultColor as SiTeamviewerHex } from './icons/SiTeamviewer'; +export { default as SiTechcrunch, defaultColor as SiTechcrunchHex } from './icons/SiTechcrunch'; +export { default as SiTed, defaultColor as SiTedHex } from './icons/SiTed'; +export { default as SiTeepublic, defaultColor as SiTeepublicHex } from './icons/SiTeepublic'; +export { default as SiTeespring, defaultColor as SiTeespringHex } from './icons/SiTeespring'; +export { default as SiTekton, defaultColor as SiTektonHex } from './icons/SiTekton'; +export { default as SiTele5, defaultColor as SiTele5Hex } from './icons/SiTele5'; +export { default as SiTelefonica, defaultColor as SiTelefonicaHex } from './icons/SiTelefonica'; +export { default as SiTelegram, defaultColor as SiTelegramHex } from './icons/SiTelegram'; +export { default as SiTelegraph, defaultColor as SiTelegraphHex } from './icons/SiTelegraph'; +export { default as SiTelenor, defaultColor as SiTelenorHex } from './icons/SiTelenor'; +export { default as SiTelequebec, defaultColor as SiTelequebecHex } from './icons/SiTelequebec'; +export { default as SiTemporal, defaultColor as SiTemporalHex } from './icons/SiTemporal'; +export { default as SiTensorflow, defaultColor as SiTensorflowHex } from './icons/SiTensorflow'; +export { default as SiTeradata, defaultColor as SiTeradataHex } from './icons/SiTeradata'; +export { default as SiTeratail, defaultColor as SiTeratailHex } from './icons/SiTeratail'; +export { default as SiTermius, defaultColor as SiTermiusHex } from './icons/SiTermius'; +export { default as SiTerraform, defaultColor as SiTerraformHex } from './icons/SiTerraform'; +export { default as SiTesco, defaultColor as SiTescoHex } from './icons/SiTesco'; +export { default as SiTesla, defaultColor as SiTeslaHex } from './icons/SiTesla'; +export { default as SiTestcafe, defaultColor as SiTestcafeHex } from './icons/SiTestcafe'; +export { default as SiTestin, defaultColor as SiTestinHex } from './icons/SiTestin'; +export { default as SiTestinglibrary, defaultColor as SiTestinglibraryHex } from './icons/SiTestinglibrary'; +export { default as SiTestrail, defaultColor as SiTestrailHex } from './icons/SiTestrail'; +export { default as SiTether, defaultColor as SiTetherHex } from './icons/SiTether'; +export { default as SiTextpattern, defaultColor as SiTextpatternHex } from './icons/SiTextpattern'; +export { default as SiTextual, defaultColor as SiTextualHex } from './icons/SiTextual'; +export { default as SiTga, defaultColor as SiTgaHex } from './icons/SiTga'; +export { default as SiThangs, defaultColor as SiThangsHex } from './icons/SiThangs'; +export { default as SiThanos, defaultColor as SiThanosHex } from './icons/SiThanos'; +export { default as SiThealgorithms, defaultColor as SiThealgorithmsHex } from './icons/SiThealgorithms'; +export { default as SiTheboringcompany, defaultColor as SiTheboringcompanyHex } from './icons/SiTheboringcompany'; +export { default as SiTheconversation, defaultColor as SiTheconversationHex } from './icons/SiTheconversation'; +export { default as SiThefinals, defaultColor as SiThefinalsHex } from './icons/SiThefinals'; +export { default as SiTheguardian, defaultColor as SiTheguardianHex } from './icons/SiTheguardian'; +export { default as SiTheirishtimes, defaultColor as SiTheirishtimesHex } from './icons/SiTheirishtimes'; +export { default as SiThemighty, defaultColor as SiThemightyHex } from './icons/SiThemighty'; +export { default as SiThemodelsresource, defaultColor as SiThemodelsresourceHex } from './icons/SiThemodelsresource'; +export { default as SiThemoviedatabase, defaultColor as SiThemoviedatabaseHex } from './icons/SiThemoviedatabase'; +export { default as SiThenorthface, defaultColor as SiThenorthfaceHex } from './icons/SiThenorthface'; +export { default as SiTheodinproject, defaultColor as SiTheodinprojectHex } from './icons/SiTheodinproject'; +export { default as SiTheplanetarysociety, defaultColor as SiTheplanetarysocietyHex } from './icons/SiTheplanetarysociety'; +export { default as SiTheregister, defaultColor as SiTheregisterHex } from './icons/SiTheregister'; +export { default as SiThesoundsresource, defaultColor as SiThesoundsresourceHex } from './icons/SiThesoundsresource'; +export { default as SiThespritersresource, defaultColor as SiThespritersresourceHex } from './icons/SiThespritersresource'; +export { default as SiThestorygraph, defaultColor as SiThestorygraphHex } from './icons/SiThestorygraph'; +export { default as SiThewashingtonpost, defaultColor as SiThewashingtonpostHex } from './icons/SiThewashingtonpost'; +export { default as SiTheweatherchannel, defaultColor as SiTheweatherchannelHex } from './icons/SiTheweatherchannel'; +export { default as SiThingiverse, defaultColor as SiThingiverseHex } from './icons/SiThingiverse'; +export { default as SiThings, defaultColor as SiThingsHex } from './icons/SiThings'; +export { default as SiThinkpad, defaultColor as SiThinkpadHex } from './icons/SiThinkpad'; +export { default as SiThirdweb, defaultColor as SiThirdwebHex } from './icons/SiThirdweb'; +export { default as SiThreadless, defaultColor as SiThreadlessHex } from './icons/SiThreadless'; +export { default as SiThreads, defaultColor as SiThreadsHex } from './icons/SiThreads'; +export { default as SiThreedotjs, defaultColor as SiThreedotjsHex } from './icons/SiThreedotjs'; +export { default as SiThreema, defaultColor as SiThreemaHex } from './icons/SiThreema'; +export { default as SiThumbtack, defaultColor as SiThumbtackHex } from './icons/SiThumbtack'; +export { default as SiThunderbird, defaultColor as SiThunderbirdHex } from './icons/SiThunderbird'; +export { default as SiThunderstore, defaultColor as SiThunderstoreHex } from './icons/SiThunderstore'; +export { default as SiThurgauerkantonalbank, defaultColor as SiThurgauerkantonalbankHex } from './icons/SiThurgauerkantonalbank'; +export { default as SiThymeleaf, defaultColor as SiThymeleafHex } from './icons/SiThymeleaf'; +export { default as SiTicketmaster, defaultColor as SiTicketmasterHex } from './icons/SiTicketmaster'; +export { default as SiTicktick, defaultColor as SiTicktickHex } from './icons/SiTicktick'; +export { default as SiTidal, defaultColor as SiTidalHex } from './icons/SiTidal'; +export { default as SiTiddlywiki, defaultColor as SiTiddlywikiHex } from './icons/SiTiddlywiki'; +export { default as SiTide, defaultColor as SiTideHex } from './icons/SiTide'; +export { default as SiTidyverse, defaultColor as SiTidyverseHex } from './icons/SiTidyverse'; +export { default as SiTietoevry, defaultColor as SiTietoevryHex } from './icons/SiTietoevry'; +export { default as SiTiktok, defaultColor as SiTiktokHex } from './icons/SiTiktok'; +export { default as SiTildapublishing, defaultColor as SiTildapublishingHex } from './icons/SiTildapublishing'; +export { default as SiTile, defaultColor as SiTileHex } from './icons/SiTile'; +export { default as SiTimescale, defaultColor as SiTimescaleHex } from './icons/SiTimescale'; +export { default as SiTina, defaultColor as SiTinaHex } from './icons/SiTina'; +export { default as SiTinder, defaultColor as SiTinderHex } from './icons/SiTinder'; +export { default as SiTindie, defaultColor as SiTindieHex } from './icons/SiTindie'; +export { default as SiTinkercad, defaultColor as SiTinkercadHex } from './icons/SiTinkercad'; +export { default as SiTinygrad, defaultColor as SiTinygradHex } from './icons/SiTinygrad'; +export { default as SiTinyletter, defaultColor as SiTinyletterHex } from './icons/SiTinyletter'; +export { default as SiTistory, defaultColor as SiTistoryHex } from './icons/SiTistory'; +export { default as SiTldraw, defaultColor as SiTldrawHex } from './icons/SiTldraw'; +export { default as SiTmux, defaultColor as SiTmuxHex } from './icons/SiTmux'; +export { default as SiTodoist, defaultColor as SiTodoistHex } from './icons/SiTodoist'; +export { default as SiToggl, defaultColor as SiTogglHex } from './icons/SiToggl'; +export { default as SiToggltrack, defaultColor as SiToggltrackHex } from './icons/SiToggltrack'; +export { default as SiTokio, defaultColor as SiTokioHex } from './icons/SiTokio'; +export { default as SiTokyometro, defaultColor as SiTokyometroHex } from './icons/SiTokyometro'; +export { default as SiToll, defaultColor as SiTollHex } from './icons/SiToll'; +export { default as SiToml, defaultColor as SiTomlHex } from './icons/SiToml'; +export { default as SiTomorrowland, defaultColor as SiTomorrowlandHex } from './icons/SiTomorrowland'; +export { default as SiTomtom, defaultColor as SiTomtomHex } from './icons/SiTomtom'; +export { default as SiTon, defaultColor as SiTonHex } from './icons/SiTon'; +export { default as SiTopcoder, defaultColor as SiTopcoderHex } from './icons/SiTopcoder'; +export { default as SiTopdotgg, defaultColor as SiTopdotggHex } from './icons/SiTopdotgg'; +export { default as SiToptal, defaultColor as SiToptalHex } from './icons/SiToptal'; +export { default as SiTorbrowser, defaultColor as SiTorbrowserHex } from './icons/SiTorbrowser'; +export { default as SiTorizon, defaultColor as SiTorizonHex } from './icons/SiTorizon'; +export { default as SiTorproject, defaultColor as SiTorprojectHex } from './icons/SiTorproject'; +export { default as SiToshiba, defaultColor as SiToshibaHex } from './icons/SiToshiba'; +export { default as SiTotvs, defaultColor as SiTotvsHex } from './icons/SiTotvs'; +export { default as SiTourbox, defaultColor as SiTourboxHex } from './icons/SiTourbox'; +export { default as SiTower, defaultColor as SiTowerHex } from './icons/SiTower'; +export { default as SiToyota, defaultColor as SiToyotaHex } from './icons/SiToyota'; +export { default as SiTplink, defaultColor as SiTplinkHex } from './icons/SiTplink'; +export { default as SiTqdm, defaultColor as SiTqdmHex } from './icons/SiTqdm'; +export { default as SiTraccar, defaultColor as SiTraccarHex } from './icons/SiTraccar'; +export { default as SiTradingview, defaultColor as SiTradingviewHex } from './icons/SiTradingview'; +export { default as SiTraefikmesh, defaultColor as SiTraefikmeshHex } from './icons/SiTraefikmesh'; +export { default as SiTraefikproxy, defaultColor as SiTraefikproxyHex } from './icons/SiTraefikproxy'; +export { default as SiTrailforks, defaultColor as SiTrailforksHex } from './icons/SiTrailforks'; +export { default as SiTrainerroad, defaultColor as SiTrainerroadHex } from './icons/SiTrainerroad'; +export { default as SiTrakt, defaultColor as SiTraktHex } from './icons/SiTrakt'; +export { default as SiTransifex, defaultColor as SiTransifexHex } from './icons/SiTransifex'; +export { default as SiTransmission, defaultColor as SiTransmissionHex } from './icons/SiTransmission'; +export { default as SiTransportforireland, defaultColor as SiTransportforirelandHex } from './icons/SiTransportforireland'; +export { default as SiTransportforlondon, defaultColor as SiTransportforlondonHex } from './icons/SiTransportforlondon'; +export { default as SiTravisci, defaultColor as SiTravisciHex } from './icons/SiTravisci'; +export { default as SiTreehouse, defaultColor as SiTreehouseHex } from './icons/SiTreehouse'; +export { default as SiTrello, defaultColor as SiTrelloHex } from './icons/SiTrello'; +export { default as SiTrendmicro, defaultColor as SiTrendmicroHex } from './icons/SiTrendmicro'; +export { default as SiTresorit, defaultColor as SiTresoritHex } from './icons/SiTresorit'; +export { default as SiTreyarch, defaultColor as SiTreyarchHex } from './icons/SiTreyarch'; +export { default as SiTricentis, defaultColor as SiTricentisHex } from './icons/SiTricentis'; +export { default as SiTrilium, defaultColor as SiTriliumHex } from './icons/SiTrilium'; +export { default as SiTriller, defaultColor as SiTrillerHex } from './icons/SiTriller'; +export { default as SiTrillertv, defaultColor as SiTrillertvHex } from './icons/SiTrillertv'; +export { default as SiTrimble, defaultColor as SiTrimbleHex } from './icons/SiTrimble'; +export { default as SiTrino, defaultColor as SiTrinoHex } from './icons/SiTrino'; +export { default as SiTripadvisor, defaultColor as SiTripadvisorHex } from './icons/SiTripadvisor'; +export { default as SiTripdotcom, defaultColor as SiTripdotcomHex } from './icons/SiTripdotcom'; +export { default as SiTrivago, defaultColor as SiTrivagoHex } from './icons/SiTrivago'; +export { default as SiTrivy, defaultColor as SiTrivyHex } from './icons/SiTrivy'; +export { default as SiTrove, defaultColor as SiTroveHex } from './icons/SiTrove'; +export { default as SiTrpc, defaultColor as SiTrpcHex } from './icons/SiTrpc'; +export { default as SiTruenas, defaultColor as SiTruenasHex } from './icons/SiTruenas'; +export { default as SiTrueup, defaultColor as SiTrueupHex } from './icons/SiTrueup'; +export { default as SiTrulia, defaultColor as SiTruliaHex } from './icons/SiTrulia'; +export { default as SiTrustedshops, defaultColor as SiTrustedshopsHex } from './icons/SiTrustedshops'; +export { default as SiTrustpilot, defaultColor as SiTrustpilotHex } from './icons/SiTrustpilot'; +export { default as SiTryhackme, defaultColor as SiTryhackmeHex } from './icons/SiTryhackme'; +export { default as SiTryitonline, defaultColor as SiTryitonlineHex } from './icons/SiTryitonline'; +export { default as SiTsnode, defaultColor as SiTsnodeHex } from './icons/SiTsnode'; +export { default as SiTubi, defaultColor as SiTubiHex } from './icons/SiTubi'; +export { default as SiTui, defaultColor as SiTuiHex } from './icons/SiTui'; +export { default as SiTumblr, defaultColor as SiTumblrHex } from './icons/SiTumblr'; +export { default as SiTurbo, defaultColor as SiTurboHex } from './icons/SiTurbo'; +export { default as SiTurborepo, defaultColor as SiTurborepoHex } from './icons/SiTurborepo'; +export { default as SiTurbosquid, defaultColor as SiTurbosquidHex } from './icons/SiTurbosquid'; +export { default as SiTurkishairlines, defaultColor as SiTurkishairlinesHex } from './icons/SiTurkishairlines'; +export { default as SiTurso, defaultColor as SiTursoHex } from './icons/SiTurso'; +export { default as SiTuta, defaultColor as SiTutaHex } from './icons/SiTuta'; +export { default as SiTuxedocomputers, defaultColor as SiTuxedocomputersHex } from './icons/SiTuxedocomputers'; +export { default as SiTv4play, defaultColor as SiTv4playHex } from './icons/SiTv4play'; +export { default as SiTvtime, defaultColor as SiTvtimeHex } from './icons/SiTvtime'; +export { default as SiTwenty, defaultColor as SiTwentyHex } from './icons/SiTwenty'; +export { default as SiTwinkly, defaultColor as SiTwinklyHex } from './icons/SiTwinkly'; +export { default as SiTwinmotion, defaultColor as SiTwinmotionHex } from './icons/SiTwinmotion'; +export { default as SiTwitch, defaultColor as SiTwitchHex } from './icons/SiTwitch'; +export { default as SiTypeform, defaultColor as SiTypeformHex } from './icons/SiTypeform'; +export { default as SiTypeorm, defaultColor as SiTypeormHex } from './icons/SiTypeorm'; +export { default as SiTyper, defaultColor as SiTyperHex } from './icons/SiTyper'; +export { default as SiTypescript, defaultColor as SiTypescriptHex } from './icons/SiTypescript'; +export { default as SiTypo3, defaultColor as SiTypo3Hex } from './icons/SiTypo3'; +export { default as SiTypst, defaultColor as SiTypstHex } from './icons/SiTypst'; +export { default as SiUber, defaultColor as SiUberHex } from './icons/SiUber'; +export { default as SiUbereats, defaultColor as SiUbereatsHex } from './icons/SiUbereats'; +export { default as SiUbiquiti, defaultColor as SiUbiquitiHex } from './icons/SiUbiquiti'; +export { default as SiUbisoft, defaultColor as SiUbisoftHex } from './icons/SiUbisoft'; +export { default as SiUblockorigin, defaultColor as SiUblockoriginHex } from './icons/SiUblockorigin'; +export { default as SiUbuntu, defaultColor as SiUbuntuHex } from './icons/SiUbuntu'; +export { default as SiUbuntumate, defaultColor as SiUbuntumateHex } from './icons/SiUbuntumate'; +export { default as SiUdacity, defaultColor as SiUdacityHex } from './icons/SiUdacity'; +export { default as SiUdemy, defaultColor as SiUdemyHex } from './icons/SiUdemy'; +export { default as SiUdotsdotnews, defaultColor as SiUdotsdotnewsHex } from './icons/SiUdotsdotnews'; +export { default as SiUfc, defaultColor as SiUfcHex } from './icons/SiUfc'; +export { default as SiUikit, defaultColor as SiUikitHex } from './icons/SiUikit'; +export { default as SiUipath, defaultColor as SiUipathHex } from './icons/SiUipath'; +export { default as SiUkca, defaultColor as SiUkcaHex } from './icons/SiUkca'; +export { default as SiUltralytics, defaultColor as SiUltralyticsHex } from './icons/SiUltralytics'; +export { default as SiUlule, defaultColor as SiUluleHex } from './icons/SiUlule'; +export { default as SiUmami, defaultColor as SiUmamiHex } from './icons/SiUmami'; +export { default as SiUmbraco, defaultColor as SiUmbracoHex } from './icons/SiUmbraco'; +export { default as SiUmbrel, defaultColor as SiUmbrelHex } from './icons/SiUmbrel'; +export { default as SiUml, defaultColor as SiUmlHex } from './icons/SiUml'; +export { default as SiUnacademy, defaultColor as SiUnacademyHex } from './icons/SiUnacademy'; +export { default as SiUnderarmour, defaultColor as SiUnderarmourHex } from './icons/SiUnderarmour'; +export { default as SiUnderscoredotjs, defaultColor as SiUnderscoredotjsHex } from './icons/SiUnderscoredotjs'; +export { default as SiUndertale, defaultColor as SiUndertaleHex } from './icons/SiUndertale'; +export { default as SiUnicode, defaultColor as SiUnicodeHex } from './icons/SiUnicode'; +export { default as SiUnilever, defaultColor as SiUnileverHex } from './icons/SiUnilever'; +export { default as SiUniqlo, defaultColor as SiUniqloHex } from './icons/SiUniqlo'; +export { default as SiUniqloJa, defaultColor as SiUniqloJaHex } from './icons/SiUniqloJa'; +export { default as SiUnitedairlines, defaultColor as SiUnitedairlinesHex } from './icons/SiUnitedairlines'; +export { default as SiUnitednations, defaultColor as SiUnitednationsHex } from './icons/SiUnitednations'; +export { default as SiUnity, defaultColor as SiUnityHex } from './icons/SiUnity'; +export { default as SiUnjs, defaultColor as SiUnjsHex } from './icons/SiUnjs'; +export { default as SiUnlicense, defaultColor as SiUnlicenseHex } from './icons/SiUnlicense'; +export { default as SiUnocss, defaultColor as SiUnocssHex } from './icons/SiUnocss'; +export { default as SiUnpkg, defaultColor as SiUnpkgHex } from './icons/SiUnpkg'; +export { default as SiUnraid, defaultColor as SiUnraidHex } from './icons/SiUnraid'; +export { default as SiUnrealengine, defaultColor as SiUnrealengineHex } from './icons/SiUnrealengine'; +export { default as SiUnsplash, defaultColor as SiUnsplashHex } from './icons/SiUnsplash'; +export { default as SiUnstop, defaultColor as SiUnstopHex } from './icons/SiUnstop'; +export { default as SiUntappd, defaultColor as SiUntappdHex } from './icons/SiUntappd'; +export { default as SiUpcloud, defaultColor as SiUpcloudHex } from './icons/SiUpcloud'; +export { default as SiUphold, defaultColor as SiUpholdHex } from './icons/SiUphold'; +export { default as SiUplabs, defaultColor as SiUplabsHex } from './icons/SiUplabs'; +export { default as SiUpptime, defaultColor as SiUpptimeHex } from './icons/SiUpptime'; +export { default as SiUps, defaultColor as SiUpsHex } from './icons/SiUps'; +export { default as SiUpstash, defaultColor as SiUpstashHex } from './icons/SiUpstash'; +export { default as SiUptimekuma, defaultColor as SiUptimekumaHex } from './icons/SiUptimekuma'; +export { default as SiUpwork, defaultColor as SiUpworkHex } from './icons/SiUpwork'; +export { default as SiUservoice, defaultColor as SiUservoiceHex } from './icons/SiUservoice'; +export { default as SiUsps, defaultColor as SiUspsHex } from './icons/SiUsps'; +export { default as SiUtorrent, defaultColor as SiUtorrentHex } from './icons/SiUtorrent'; +export { default as SiUv, defaultColor as SiUvHex } from './icons/SiUv'; +export { default as SiV, defaultColor as SiVHex } from './icons/SiV'; +export { default as SiV0, defaultColor as SiV0Hex } from './icons/SiV0'; +export { default as SiV2ex, defaultColor as SiV2exHex } from './icons/SiV2ex'; +export { default as SiV8, defaultColor as SiV8Hex } from './icons/SiV8'; +export { default as SiVaadin, defaultColor as SiVaadinHex } from './icons/SiVaadin'; +export { default as SiVagrant, defaultColor as SiVagrantHex } from './icons/SiVagrant'; +export { default as SiVala, defaultColor as SiValaHex } from './icons/SiVala'; +export { default as SiValorant, defaultColor as SiValorantHex } from './icons/SiValorant'; +export { default as SiValve, defaultColor as SiValveHex } from './icons/SiValve'; +export { default as SiVanillaextract, defaultColor as SiVanillaextractHex } from './icons/SiVanillaextract'; +export { default as SiVapor, defaultColor as SiVaporHex } from './icons/SiVapor'; +export { default as SiVault, defaultColor as SiVaultHex } from './icons/SiVault'; +export { default as SiVaultwarden, defaultColor as SiVaultwardenHex } from './icons/SiVaultwarden'; +export { default as SiVauxhall, defaultColor as SiVauxhallHex } from './icons/SiVauxhall'; +export { default as SiVbulletin, defaultColor as SiVbulletinHex } from './icons/SiVbulletin'; +export { default as SiVectary, defaultColor as SiVectaryHex } from './icons/SiVectary'; +export { default as SiVectorlogozone, defaultColor as SiVectorlogozoneHex } from './icons/SiVectorlogozone'; +export { default as SiVectorworks, defaultColor as SiVectorworksHex } from './icons/SiVectorworks'; +export { default as SiVeeam, defaultColor as SiVeeamHex } from './icons/SiVeeam'; +export { default as SiVeed, defaultColor as SiVeedHex } from './icons/SiVeed'; +export { default as SiVeepee, defaultColor as SiVeepeeHex } from './icons/SiVeepee'; +export { default as SiVega, defaultColor as SiVegaHex } from './icons/SiVega'; +export { default as SiVegas, defaultColor as SiVegasHex } from './icons/SiVegas'; +export { default as SiVelocity, defaultColor as SiVelocityHex } from './icons/SiVelocity'; +export { default as SiVelog, defaultColor as SiVelogHex } from './icons/SiVelog'; +export { default as SiVencord, defaultColor as SiVencordHex } from './icons/SiVencord'; +export { default as SiVenmo, defaultColor as SiVenmoHex } from './icons/SiVenmo'; +export { default as SiVercel, defaultColor as SiVercelHex } from './icons/SiVercel'; +export { default as SiVerdaccio, defaultColor as SiVerdaccioHex } from './icons/SiVerdaccio'; +export { default as SiVeritas, defaultColor as SiVeritasHex } from './icons/SiVeritas'; +export { default as SiVerizon, defaultColor as SiVerizonHex } from './icons/SiVerizon'; +export { default as SiVespa, defaultColor as SiVespaHex } from './icons/SiVespa'; +export { default as SiVestel, defaultColor as SiVestelHex } from './icons/SiVestel'; +export { default as SiVexxhost, defaultColor as SiVexxhostHex } from './icons/SiVexxhost'; +export { default as SiVfairs, defaultColor as SiVfairsHex } from './icons/SiVfairs'; +export { default as SiViadeo, defaultColor as SiViadeoHex } from './icons/SiViadeo'; +export { default as SiViaplay, defaultColor as SiViaplayHex } from './icons/SiViaplay'; +export { default as SiViber, defaultColor as SiViberHex } from './icons/SiViber'; +export { default as SiViblo, defaultColor as SiVibloHex } from './icons/SiViblo'; +export { default as SiVictoriametrics, defaultColor as SiVictoriametricsHex } from './icons/SiVictoriametrics'; +export { default as SiVictronenergy, defaultColor as SiVictronenergyHex } from './icons/SiVictronenergy'; +export { default as SiVikunja, defaultColor as SiVikunjaHex } from './icons/SiVikunja'; +export { default as SiVim, defaultColor as SiVimHex } from './icons/SiVim'; +export { default as SiVimeo, defaultColor as SiVimeoHex } from './icons/SiVimeo'; +export { default as SiVimeolivestream, defaultColor as SiVimeolivestreamHex } from './icons/SiVimeolivestream'; +export { default as SiVinted, defaultColor as SiVintedHex } from './icons/SiVinted'; +export { default as SiVirgin, defaultColor as SiVirginHex } from './icons/SiVirgin'; +export { default as SiVirginatlantic, defaultColor as SiVirginatlanticHex } from './icons/SiVirginatlantic'; +export { default as SiVirginmedia, defaultColor as SiVirginmediaHex } from './icons/SiVirginmedia'; +export { default as SiVirtualbox, defaultColor as SiVirtualboxHex } from './icons/SiVirtualbox'; +export { default as SiVirustotal, defaultColor as SiVirustotalHex } from './icons/SiVirustotal'; +export { default as SiVisa, defaultColor as SiVisaHex } from './icons/SiVisa'; +export { default as SiVisualparadigm, defaultColor as SiVisualparadigmHex } from './icons/SiVisualparadigm'; +export { default as SiVisx, defaultColor as SiVisxHex } from './icons/SiVisx'; +export { default as SiVite, defaultColor as SiViteHex } from './icons/SiVite'; +export { default as SiVitepress, defaultColor as SiVitepressHex } from './icons/SiVitepress'; +export { default as SiVitess, defaultColor as SiVitessHex } from './icons/SiVitess'; +export { default as SiVitest, defaultColor as SiVitestHex } from './icons/SiVitest'; +export { default as SiVivaldi, defaultColor as SiVivaldiHex } from './icons/SiVivaldi'; +export { default as SiVivawallet, defaultColor as SiVivawalletHex } from './icons/SiVivawallet'; +export { default as SiVivino, defaultColor as SiVivinoHex } from './icons/SiVivino'; +export { default as SiVivint, defaultColor as SiVivintHex } from './icons/SiVivint'; +export { default as SiVivo, defaultColor as SiVivoHex } from './icons/SiVivo'; +export { default as SiVk, defaultColor as SiVkHex } from './icons/SiVk'; +export { default as SiVlcmediaplayer, defaultColor as SiVlcmediaplayerHex } from './icons/SiVlcmediaplayer'; +export { default as SiVmware, defaultColor as SiVmwareHex } from './icons/SiVmware'; +export { default as SiVodafone, defaultColor as SiVodafoneHex } from './icons/SiVodafone'; +export { default as SiVoelkner, defaultColor as SiVoelknerHex } from './icons/SiVoelkner'; +export { default as SiVoidlinux, defaultColor as SiVoidlinuxHex } from './icons/SiVoidlinux'; +export { default as SiVoipdotms, defaultColor as SiVoipdotmsHex } from './icons/SiVoipdotms'; +export { default as SiVolkswagen, defaultColor as SiVolkswagenHex } from './icons/SiVolkswagen'; +export { default as SiVolvo, defaultColor as SiVolvoHex } from './icons/SiVolvo'; +export { default as SiVonage, defaultColor as SiVonageHex } from './icons/SiVonage'; +export { default as SiVorondesign, defaultColor as SiVorondesignHex } from './icons/SiVorondesign'; +export { default as SiVowpalwabbit, defaultColor as SiVowpalwabbitHex } from './icons/SiVowpalwabbit'; +export { default as SiVox, defaultColor as SiVoxHex } from './icons/SiVox'; +export { default as SiVrchat, defaultColor as SiVrchatHex } from './icons/SiVrchat'; +export { default as SiVsco, defaultColor as SiVscoHex } from './icons/SiVsco'; +export { default as SiVscodium, defaultColor as SiVscodiumHex } from './icons/SiVscodium'; +export { default as SiVtex, defaultColor as SiVtexHex } from './icons/SiVtex'; +export { default as SiVuedotjs, defaultColor as SiVuedotjsHex } from './icons/SiVuedotjs'; +export { default as SiVuetify, defaultColor as SiVuetifyHex } from './icons/SiVuetify'; +export { default as SiVueuse, defaultColor as SiVueuseHex } from './icons/SiVueuse'; +export { default as SiVulkan, defaultColor as SiVulkanHex } from './icons/SiVulkan'; +export { default as SiVultr, defaultColor as SiVultrHex } from './icons/SiVultr'; +export { default as SiVyond, defaultColor as SiVyondHex } from './icons/SiVyond'; +export { default as SiW3schools, defaultColor as SiW3schoolsHex } from './icons/SiW3schools'; +export { default as SiWacom, defaultColor as SiWacomHex } from './icons/SiWacom'; +export { default as SiWagmi, defaultColor as SiWagmiHex } from './icons/SiWagmi'; +export { default as SiWagtail, defaultColor as SiWagtailHex } from './icons/SiWagtail'; +export { default as SiWails, defaultColor as SiWailsHex } from './icons/SiWails'; +export { default as SiWakatime, defaultColor as SiWakatimeHex } from './icons/SiWakatime'; +export { default as SiWalkman, defaultColor as SiWalkmanHex } from './icons/SiWalkman'; +export { default as SiWallabag, defaultColor as SiWallabagHex } from './icons/SiWallabag'; +export { default as SiWalletconnect, defaultColor as SiWalletconnectHex } from './icons/SiWalletconnect'; +export { default as SiWantedly, defaultColor as SiWantedlyHex } from './icons/SiWantedly'; +export { default as SiWappalyzer, defaultColor as SiWappalyzerHex } from './icons/SiWappalyzer'; +export { default as SiWarp, defaultColor as SiWarpHex } from './icons/SiWarp'; +export { default as SiWasabi, defaultColor as SiWasabiHex } from './icons/SiWasabi'; +export { default as SiWasmcloud, defaultColor as SiWasmcloudHex } from './icons/SiWasmcloud'; +export { default as SiWasmer, defaultColor as SiWasmerHex } from './icons/SiWasmer'; +export { default as SiWatchtower, defaultColor as SiWatchtowerHex } from './icons/SiWatchtower'; +export { default as SiWattpad, defaultColor as SiWattpadHex } from './icons/SiWattpad'; +export { default as SiWayland, defaultColor as SiWaylandHex } from './icons/SiWayland'; +export { default as SiWaze, defaultColor as SiWazeHex } from './icons/SiWaze'; +export { default as SiWazirx, defaultColor as SiWazirxHex } from './icons/SiWazirx'; +export { default as SiWearos, defaultColor as SiWearosHex } from './icons/SiWearos'; +export { default as SiWeasyl, defaultColor as SiWeasylHex } from './icons/SiWeasyl'; +export { default as SiWeb3dotjs, defaultColor as SiWeb3dotjsHex } from './icons/SiWeb3dotjs'; +export { default as SiWebassembly, defaultColor as SiWebassemblyHex } from './icons/SiWebassembly'; +export { default as SiWebauthn, defaultColor as SiWebauthnHex } from './icons/SiWebauthn'; +export { default as SiWebawesome, defaultColor as SiWebawesomeHex } from './icons/SiWebawesome'; +export { default as SiWebcomponentsdotorg, defaultColor as SiWebcomponentsdotorgHex } from './icons/SiWebcomponentsdotorg'; +export { default as SiWebdotde, defaultColor as SiWebdotdeHex } from './icons/SiWebdotde'; +export { default as SiWebdriverio, defaultColor as SiWebdriverioHex } from './icons/SiWebdriverio'; +export { default as SiWebex, defaultColor as SiWebexHex } from './icons/SiWebex'; +export { default as SiWebflow, defaultColor as SiWebflowHex } from './icons/SiWebflow'; +export { default as SiWebgl, defaultColor as SiWebglHex } from './icons/SiWebgl'; +export { default as SiWebgpu, defaultColor as SiWebgpuHex } from './icons/SiWebgpu'; +export { default as SiWeblate, defaultColor as SiWeblateHex } from './icons/SiWeblate'; +export { default as SiWebmin, defaultColor as SiWebminHex } from './icons/SiWebmin'; +export { default as SiWebmoney, defaultColor as SiWebmoneyHex } from './icons/SiWebmoney'; +export { default as SiWebpack, defaultColor as SiWebpackHex } from './icons/SiWebpack'; +export { default as SiWebrtc, defaultColor as SiWebrtcHex } from './icons/SiWebrtc'; +export { default as SiWebstorm, defaultColor as SiWebstormHex } from './icons/SiWebstorm'; +export { default as SiWebtoon, defaultColor as SiWebtoonHex } from './icons/SiWebtoon'; +export { default as SiWebtrees, defaultColor as SiWebtreesHex } from './icons/SiWebtrees'; +export { default as SiWechat, defaultColor as SiWechatHex } from './icons/SiWechat'; +export { default as SiWegame, defaultColor as SiWegameHex } from './icons/SiWegame'; +export { default as SiWeightsandbiases, defaultColor as SiWeightsandbiasesHex } from './icons/SiWeightsandbiases'; +export { default as SiWelcometothejungle, defaultColor as SiWelcometothejungleHex } from './icons/SiWelcometothejungle'; +export { default as SiWellfound, defaultColor as SiWellfoundHex } from './icons/SiWellfound'; +export { default as SiWellsfargo, defaultColor as SiWellsfargoHex } from './icons/SiWellsfargo'; +export { default as SiWemo, defaultColor as SiWemoHex } from './icons/SiWemo'; +export { default as SiWeread, defaultColor as SiWereadHex } from './icons/SiWeread'; +export { default as SiWesternunion, defaultColor as SiWesternunionHex } from './icons/SiWesternunion'; +export { default as SiWetransfer, defaultColor as SiWetransferHex } from './icons/SiWetransfer'; +export { default as SiWezterm, defaultColor as SiWeztermHex } from './icons/SiWezterm'; +export { default as SiWgpu, defaultColor as SiWgpuHex } from './icons/SiWgpu'; +export { default as SiWhat3words, defaultColor as SiWhat3wordsHex } from './icons/SiWhat3words'; +export { default as SiWhatsapp, defaultColor as SiWhatsappHex } from './icons/SiWhatsapp'; +export { default as SiWheniwork, defaultColor as SiWheniworkHex } from './icons/SiWheniwork'; +export { default as SiWikibooks, defaultColor as SiWikibooksHex } from './icons/SiWikibooks'; +export { default as SiWikidata, defaultColor as SiWikidataHex } from './icons/SiWikidata'; +export { default as SiWikidotgg, defaultColor as SiWikidotggHex } from './icons/SiWikidotgg'; +export { default as SiWikidotjs, defaultColor as SiWikidotjsHex } from './icons/SiWikidotjs'; +export { default as SiWikimediacommons, defaultColor as SiWikimediacommonsHex } from './icons/SiWikimediacommons'; +export { default as SiWikimediafoundation, defaultColor as SiWikimediafoundationHex } from './icons/SiWikimediafoundation'; +export { default as SiWikipedia, defaultColor as SiWikipediaHex } from './icons/SiWikipedia'; +export { default as SiWikiquote, defaultColor as SiWikiquoteHex } from './icons/SiWikiquote'; +export { default as SiWikisource, defaultColor as SiWikisourceHex } from './icons/SiWikisource'; +export { default as SiWikiversity, defaultColor as SiWikiversityHex } from './icons/SiWikiversity'; +export { default as SiWikivoyage, defaultColor as SiWikivoyageHex } from './icons/SiWikivoyage'; +export { default as SiWinamp, defaultColor as SiWinampHex } from './icons/SiWinamp'; +export { default as SiWindsurf, defaultColor as SiWindsurfHex } from './icons/SiWindsurf'; +export { default as SiWine, defaultColor as SiWineHex } from './icons/SiWine'; +export { default as SiWipro, defaultColor as SiWiproHex } from './icons/SiWipro'; +export { default as SiWire, defaultColor as SiWireHex } from './icons/SiWire'; +export { default as SiWireguard, defaultColor as SiWireguardHex } from './icons/SiWireguard'; +export { default as SiWireshark, defaultColor as SiWiresharkHex } from './icons/SiWireshark'; +export { default as SiWise, defaultColor as SiWiseHex } from './icons/SiWise'; +export { default as SiWish, defaultColor as SiWishHex } from './icons/SiWish'; +export { default as SiWistia, defaultColor as SiWistiaHex } from './icons/SiWistia'; +export { default as SiWix, defaultColor as SiWixHex } from './icons/SiWix'; +export { default as SiWizzair, defaultColor as SiWizzairHex } from './icons/SiWizzair'; +export { default as SiWolfram, defaultColor as SiWolframHex } from './icons/SiWolfram'; +export { default as SiWolframlanguage, defaultColor as SiWolframlanguageHex } from './icons/SiWolframlanguage'; +export { default as SiWolframmathematica, defaultColor as SiWolframmathematicaHex } from './icons/SiWolframmathematica'; +export { default as SiWondershare, defaultColor as SiWondershareHex } from './icons/SiWondershare'; +export { default as SiWondersharefilmora, defaultColor as SiWondersharefilmoraHex } from './icons/SiWondersharefilmora'; +export { default as SiWoo, defaultColor as SiWooHex } from './icons/SiWoo'; +export { default as SiWoocommerce, defaultColor as SiWoocommerceHex } from './icons/SiWoocommerce'; +export { default as SiWordpress, defaultColor as SiWordpressHex } from './icons/SiWordpress'; +export { default as SiWorkplace, defaultColor as SiWorkplaceHex } from './icons/SiWorkplace'; +export { default as SiWorldhealthorganization, defaultColor as SiWorldhealthorganizationHex } from './icons/SiWorldhealthorganization'; +export { default as SiWpengine, defaultColor as SiWpengineHex } from './icons/SiWpengine'; +export { default as SiWpexplorer, defaultColor as SiWpexplorerHex } from './icons/SiWpexplorer'; +export { default as SiWprocket, defaultColor as SiWprocketHex } from './icons/SiWprocket'; +export { default as SiWritedotas, defaultColor as SiWritedotasHex } from './icons/SiWritedotas'; +export { default as SiWwe, defaultColor as SiWweHex } from './icons/SiWwe'; +export { default as SiWwise, defaultColor as SiWwiseHex } from './icons/SiWwise'; +export { default as SiWxt, defaultColor as SiWxtHex } from './icons/SiWxt'; +export { default as SiWykop, defaultColor as SiWykopHex } from './icons/SiWykop'; +export { default as SiWyze, defaultColor as SiWyzeHex } from './icons/SiWyze'; +export { default as SiX, defaultColor as SiXHex } from './icons/SiX'; +export { default as SiXampp, defaultColor as SiXamppHex } from './icons/SiXampp'; +export { default as SiXcode, defaultColor as SiXcodeHex } from './icons/SiXcode'; +export { default as SiXdadevelopers, defaultColor as SiXdadevelopersHex } from './icons/SiXdadevelopers'; +export { default as SiXdotorg, defaultColor as SiXdotorgHex } from './icons/SiXdotorg'; +export { default as SiXendit, defaultColor as SiXenditHex } from './icons/SiXendit'; +export { default as SiXero, defaultColor as SiXeroHex } from './icons/SiXero'; +export { default as SiXfce, defaultColor as SiXfceHex } from './icons/SiXfce'; +export { default as SiXiaohongshu, defaultColor as SiXiaohongshuHex } from './icons/SiXiaohongshu'; +export { default as SiXiaomi, defaultColor as SiXiaomiHex } from './icons/SiXiaomi'; +export { default as SiXing, defaultColor as SiXingHex } from './icons/SiXing'; +export { default as SiXml, defaultColor as SiXmlHex } from './icons/SiXml'; +export { default as SiXmpp, defaultColor as SiXmppHex } from './icons/SiXmpp'; +export { default as SiXo, defaultColor as SiXoHex } from './icons/SiXo'; +export { default as SiXrp, defaultColor as SiXrpHex } from './icons/SiXrp'; +export { default as SiXsplit, defaultColor as SiXsplitHex } from './icons/SiXsplit'; +export { default as SiXstate, defaultColor as SiXstateHex } from './icons/SiXstate'; +export { default as SiXubuntu, defaultColor as SiXubuntuHex } from './icons/SiXubuntu'; +export { default as SiXyflow, defaultColor as SiXyflowHex } from './icons/SiXyflow'; +export { default as SiYaak, defaultColor as SiYaakHex } from './icons/SiYaak'; +export { default as SiYabai, defaultColor as SiYabaiHex } from './icons/SiYabai'; +export { default as SiYale, defaultColor as SiYaleHex } from './icons/SiYale'; +export { default as SiYamahacorporation, defaultColor as SiYamahacorporationHex } from './icons/SiYamahacorporation'; +export { default as SiYamahamotorcorporation, defaultColor as SiYamahamotorcorporationHex } from './icons/SiYamahamotorcorporation'; +export { default as SiYaml, defaultColor as SiYamlHex } from './icons/SiYaml'; +export { default as SiYandexcloud, defaultColor as SiYandexcloudHex } from './icons/SiYandexcloud'; +export { default as SiYarn, defaultColor as SiYarnHex } from './icons/SiYarn'; +export { default as SiYcombinator, defaultColor as SiYcombinatorHex } from './icons/SiYcombinator'; +export { default as SiYelp, defaultColor as SiYelpHex } from './icons/SiYelp'; +export { default as SiYeti, defaultColor as SiYetiHex } from './icons/SiYeti'; +export { default as SiYii, defaultColor as SiYiiHex } from './icons/SiYii'; +export { default as SiYoast, defaultColor as SiYoastHex } from './icons/SiYoast'; +export { default as SiYolo, defaultColor as SiYoloHex } from './icons/SiYolo'; +export { default as SiYouhodler, defaultColor as SiYouhodlerHex } from './icons/SiYouhodler'; +export { default as SiYoutube, defaultColor as SiYoutubeHex } from './icons/SiYoutube'; +export { default as SiYoutubegaming, defaultColor as SiYoutubegamingHex } from './icons/SiYoutubegaming'; +export { default as SiYoutubekids, defaultColor as SiYoutubekidsHex } from './icons/SiYoutubekids'; +export { default as SiYoutubemusic, defaultColor as SiYoutubemusicHex } from './icons/SiYoutubemusic'; +export { default as SiYoutubeshorts, defaultColor as SiYoutubeshortsHex } from './icons/SiYoutubeshorts'; +export { default as SiYoutubestudio, defaultColor as SiYoutubestudioHex } from './icons/SiYoutubestudio'; +export { default as SiYoutubetv, defaultColor as SiYoutubetvHex } from './icons/SiYoutubetv'; +export { default as SiYr, defaultColor as SiYrHex } from './icons/SiYr'; +export { default as SiYubico, defaultColor as SiYubicoHex } from './icons/SiYubico'; +export { default as SiYunohost, defaultColor as SiYunohostHex } from './icons/SiYunohost'; +export { default as SiZabka, defaultColor as SiZabkaHex } from './icons/SiZabka'; +export { default as SiZaim, defaultColor as SiZaimHex } from './icons/SiZaim'; +export { default as SiZalando, defaultColor as SiZalandoHex } from './icons/SiZalando'; +export { default as SiZalo, defaultColor as SiZaloHex } from './icons/SiZalo'; +export { default as SiZap, defaultColor as SiZapHex } from './icons/SiZap'; +export { default as SiZapier, defaultColor as SiZapierHex } from './icons/SiZapier'; +export { default as SiZara, defaultColor as SiZaraHex } from './icons/SiZara'; +export { default as SiZazzle, defaultColor as SiZazzleHex } from './icons/SiZazzle'; +export { default as SiZcash, defaultColor as SiZcashHex } from './icons/SiZcash'; +export { default as SiZcool, defaultColor as SiZcoolHex } from './icons/SiZcool'; +export { default as SiZdf, defaultColor as SiZdfHex } from './icons/SiZdf'; +export { default as SiZebpay, defaultColor as SiZebpayHex } from './icons/SiZebpay'; +export { default as SiZebratechnologies, defaultColor as SiZebratechnologiesHex } from './icons/SiZebratechnologies'; +export { default as SiZedindustries, defaultColor as SiZedindustriesHex } from './icons/SiZedindustries'; +export { default as SiZelle, defaultColor as SiZelleHex } from './icons/SiZelle'; +export { default as SiZenbrowser, defaultColor as SiZenbrowserHex } from './icons/SiZenbrowser'; +export { default as SiZend, defaultColor as SiZendHex } from './icons/SiZend'; +export { default as SiZendesk, defaultColor as SiZendeskHex } from './icons/SiZendesk'; +export { default as SiZenn, defaultColor as SiZennHex } from './icons/SiZenn'; +export { default as SiZenodo, defaultColor as SiZenodoHex } from './icons/SiZenodo'; +export { default as SiZensar, defaultColor as SiZensarHex } from './icons/SiZensar'; +export { default as SiZerodha, defaultColor as SiZerodhaHex } from './icons/SiZerodha'; +export { default as SiZerotier, defaultColor as SiZerotierHex } from './icons/SiZerotier'; +export { default as SiZettlr, defaultColor as SiZettlrHex } from './icons/SiZettlr'; +export { default as SiZhihu, defaultColor as SiZhihuHex } from './icons/SiZhihu'; +export { default as SiZig, defaultColor as SiZigHex } from './icons/SiZig'; +export { default as SiZigbee, defaultColor as SiZigbeeHex } from './icons/SiZigbee'; +export { default as SiZigbee2mqtt, defaultColor as SiZigbee2mqttHex } from './icons/SiZigbee2mqtt'; +export { default as SiZiggo, defaultColor as SiZiggoHex } from './icons/SiZiggo'; +export { default as SiZilch, defaultColor as SiZilchHex } from './icons/SiZilch'; +export { default as SiZillow, defaultColor as SiZillowHex } from './icons/SiZillow'; +export { default as SiZincsearch, defaultColor as SiZincsearchHex } from './icons/SiZincsearch'; +export { default as SiZingat, defaultColor as SiZingatHex } from './icons/SiZingat'; +export { default as SiZod, defaultColor as SiZodHex } from './icons/SiZod'; +export { default as SiZoho, defaultColor as SiZohoHex } from './icons/SiZoho'; +export { default as SiZoiper, defaultColor as SiZoiperHex } from './icons/SiZoiper'; +export { default as SiZola, defaultColor as SiZolaHex } from './icons/SiZola'; +export { default as SiZomato, defaultColor as SiZomatoHex } from './icons/SiZomato'; +export { default as SiZoom, defaultColor as SiZoomHex } from './icons/SiZoom'; +export { default as SiZorin, defaultColor as SiZorinHex } from './icons/SiZorin'; +export { default as SiZotero, defaultColor as SiZoteroHex } from './icons/SiZotero'; +export { default as SiZsh, defaultColor as SiZshHex } from './icons/SiZsh'; +export { default as SiZulip, defaultColor as SiZulipHex } from './icons/SiZulip'; +export { default as SiZyte, defaultColor as SiZyteHex } from './icons/SiZyte'; +export type * from './types'; diff --git a/node_modules/@icons-pack/react-simple-icons/index.mjs b/node_modules/@icons-pack/react-simple-icons/index.mjs new file mode 100644 index 000000000..191984672 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/index.mjs @@ -0,0 +1,3393 @@ +export { default as Si1001tracklists, defaultColor as Si1001tracklistsHex } from './icons/Si1001tracklists.mjs'; +export { default as Si1and1, defaultColor as Si1and1Hex } from './icons/Si1and1.mjs'; +export { default as Si1dot1dot1dot1, defaultColor as Si1dot1dot1dot1Hex } from './icons/Si1dot1dot1dot1.mjs'; +export { default as Si1panel, defaultColor as Si1panelHex } from './icons/Si1panel.mjs'; +export { default as Si1password, defaultColor as Si1passwordHex } from './icons/Si1password.mjs'; +export { default as Si2fas, defaultColor as Si2fasHex } from './icons/Si2fas.mjs'; +export { default as Si2k, defaultColor as Si2kHex } from './icons/Si2k.mjs'; +export { default as Si30secondsofcode, defaultColor as Si30secondsofcodeHex } from './icons/Si30secondsofcode.mjs'; +export { default as Si365datascience, defaultColor as Si365datascienceHex } from './icons/Si365datascience.mjs'; +export { default as Si3m, defaultColor as Si3mHex } from './icons/Si3m.mjs'; +export { default as Si42, defaultColor as Si42Hex } from './icons/Si42.mjs'; +export { default as Si4chan, defaultColor as Si4chanHex } from './icons/Si4chan.mjs'; +export { default as Si4d, defaultColor as Si4dHex } from './icons/Si4d.mjs'; +export { default as Si500px, defaultColor as Si500pxHex } from './icons/Si500px.mjs'; +export { default as Si7zip, defaultColor as Si7zipHex } from './icons/Si7zip.mjs'; +export { default as Si99designs, defaultColor as Si99designsHex } from './icons/Si99designs.mjs'; +export { default as Si9gag, defaultColor as Si9gagHex } from './icons/Si9gag.mjs'; +export { default as SiAbb, defaultColor as SiAbbHex } from './icons/SiAbb.mjs'; +export { default as SiAbbott, defaultColor as SiAbbottHex } from './icons/SiAbbott.mjs'; +export { default as SiAbbvie, defaultColor as SiAbbvieHex } from './icons/SiAbbvie.mjs'; +export { default as SiAbdownloadmanager, defaultColor as SiAbdownloadmanagerHex } from './icons/SiAbdownloadmanager.mjs'; +export { default as SiAboutdotme, defaultColor as SiAboutdotmeHex } from './icons/SiAboutdotme.mjs'; +export { default as SiAbstract, defaultColor as SiAbstractHex } from './icons/SiAbstract.mjs'; +export { default as SiAbusedotch, defaultColor as SiAbusedotchHex } from './icons/SiAbusedotch.mjs'; +export { default as SiAcademia, defaultColor as SiAcademiaHex } from './icons/SiAcademia.mjs'; +export { default as SiAccenture, defaultColor as SiAccentureHex } from './icons/SiAccenture.mjs'; +export { default as SiAccusoft, defaultColor as SiAccusoftHex } from './icons/SiAccusoft.mjs'; +export { default as SiAccuweather, defaultColor as SiAccuweatherHex } from './icons/SiAccuweather.mjs'; +export { default as SiAcer, defaultColor as SiAcerHex } from './icons/SiAcer.mjs'; +export { default as SiAcm, defaultColor as SiAcmHex } from './icons/SiAcm.mjs'; +export { default as SiAcode, defaultColor as SiAcodeHex } from './icons/SiAcode.mjs'; +export { default as SiActigraph, defaultColor as SiActigraphHex } from './icons/SiActigraph.mjs'; +export { default as SiActiveloop, defaultColor as SiActiveloopHex } from './icons/SiActiveloop.mjs'; +export { default as SiActivision, defaultColor as SiActivisionHex } from './icons/SiActivision.mjs'; +export { default as SiActivitypub, defaultColor as SiActivitypubHex } from './icons/SiActivitypub.mjs'; +export { default as SiActix, defaultColor as SiActixHex } from './icons/SiActix.mjs'; +export { default as SiActualbudget, defaultColor as SiActualbudgetHex } from './icons/SiActualbudget.mjs'; +export { default as SiAcura, defaultColor as SiAcuraHex } from './icons/SiAcura.mjs'; +export { default as SiAda, defaultColor as SiAdaHex } from './icons/SiAda.mjs'; +export { default as SiAdafruit, defaultColor as SiAdafruitHex } from './icons/SiAdafruit.mjs'; +export { default as SiAdaway, defaultColor as SiAdawayHex } from './icons/SiAdaway.mjs'; +export { default as SiAdblock, defaultColor as SiAdblockHex } from './icons/SiAdblock.mjs'; +export { default as SiAdblockplus, defaultColor as SiAdblockplusHex } from './icons/SiAdblockplus.mjs'; +export { default as SiAddydotio, defaultColor as SiAddydotioHex } from './icons/SiAddydotio.mjs'; +export { default as SiAdguard, defaultColor as SiAdguardHex } from './icons/SiAdguard.mjs'; +export { default as SiAdidas, defaultColor as SiAdidasHex } from './icons/SiAdidas.mjs'; +export { default as SiAdminer, defaultColor as SiAdminerHex } from './icons/SiAdminer.mjs'; +export { default as SiAdonisjs, defaultColor as SiAdonisjsHex } from './icons/SiAdonisjs.mjs'; +export { default as SiAdp, defaultColor as SiAdpHex } from './icons/SiAdp.mjs'; +export { default as SiAdroll, defaultColor as SiAdrollHex } from './icons/SiAdroll.mjs'; +export { default as SiAdventofcode, defaultColor as SiAdventofcodeHex } from './icons/SiAdventofcode.mjs'; +export { default as SiAdyen, defaultColor as SiAdyenHex } from './icons/SiAdyen.mjs'; +export { default as SiAegisauthenticator, defaultColor as SiAegisauthenticatorHex } from './icons/SiAegisauthenticator.mjs'; +export { default as SiAeroflot, defaultColor as SiAeroflotHex } from './icons/SiAeroflot.mjs'; +export { default as SiAeromexico, defaultColor as SiAeromexicoHex } from './icons/SiAeromexico.mjs'; +export { default as SiAfdian, defaultColor as SiAfdianHex } from './icons/SiAfdian.mjs'; +export { default as SiAffine, defaultColor as SiAffineHex } from './icons/SiAffine.mjs'; +export { default as SiAframe, defaultColor as SiAframeHex } from './icons/SiAframe.mjs'; +export { default as SiAfterpay, defaultColor as SiAfterpayHex } from './icons/SiAfterpay.mjs'; +export { default as SiAftership, defaultColor as SiAftershipHex } from './icons/SiAftership.mjs'; +export { default as SiAgora, defaultColor as SiAgoraHex } from './icons/SiAgora.mjs'; +export { default as SiAib, defaultColor as SiAibHex } from './icons/SiAib.mjs'; +export { default as SiAidungeon, defaultColor as SiAidungeonHex } from './icons/SiAidungeon.mjs'; +export { default as SiAiohttp, defaultColor as SiAiohttpHex } from './icons/SiAiohttp.mjs'; +export { default as SiAiqfome, defaultColor as SiAiqfomeHex } from './icons/SiAiqfome.mjs'; +export { default as SiAirasia, defaultColor as SiAirasiaHex } from './icons/SiAirasia.mjs'; +export { default as SiAirbnb, defaultColor as SiAirbnbHex } from './icons/SiAirbnb.mjs'; +export { default as SiAirbrake, defaultColor as SiAirbrakeHex } from './icons/SiAirbrake.mjs'; +export { default as SiAirbus, defaultColor as SiAirbusHex } from './icons/SiAirbus.mjs'; +export { default as SiAirbyte, defaultColor as SiAirbyteHex } from './icons/SiAirbyte.mjs'; +export { default as SiAircall, defaultColor as SiAircallHex } from './icons/SiAircall.mjs'; +export { default as SiAircanada, defaultColor as SiAircanadaHex } from './icons/SiAircanada.mjs'; +export { default as SiAirchina, defaultColor as SiAirchinaHex } from './icons/SiAirchina.mjs'; +export { default as SiAirfrance, defaultColor as SiAirfranceHex } from './icons/SiAirfrance.mjs'; +export { default as SiAirindia, defaultColor as SiAirindiaHex } from './icons/SiAirindia.mjs'; +export { default as SiAirplayaudio, defaultColor as SiAirplayaudioHex } from './icons/SiAirplayaudio.mjs'; +export { default as SiAirplayvideo, defaultColor as SiAirplayvideoHex } from './icons/SiAirplayvideo.mjs'; +export { default as SiAirserbia, defaultColor as SiAirserbiaHex } from './icons/SiAirserbia.mjs'; +export { default as SiAirtable, defaultColor as SiAirtableHex } from './icons/SiAirtable.mjs'; +export { default as SiAirtel, defaultColor as SiAirtelHex } from './icons/SiAirtel.mjs'; +export { default as SiAirtransat, defaultColor as SiAirtransatHex } from './icons/SiAirtransat.mjs'; +export { default as SiAjv, defaultColor as SiAjvHex } from './icons/SiAjv.mjs'; +export { default as SiAkamai, defaultColor as SiAkamaiHex } from './icons/SiAkamai.mjs'; +export { default as SiAkasaair, defaultColor as SiAkasaairHex } from './icons/SiAkasaair.mjs'; +export { default as SiAkaunting, defaultColor as SiAkauntingHex } from './icons/SiAkaunting.mjs'; +export { default as SiAkiflow, defaultColor as SiAkiflowHex } from './icons/SiAkiflow.mjs'; +export { default as SiAlacritty, defaultColor as SiAlacrittyHex } from './icons/SiAlacritty.mjs'; +export { default as SiAlamy, defaultColor as SiAlamyHex } from './icons/SiAlamy.mjs'; +export { default as SiAlbertheijn, defaultColor as SiAlbertheijnHex } from './icons/SiAlbertheijn.mjs'; +export { default as SiAlby, defaultColor as SiAlbyHex } from './icons/SiAlby.mjs'; +export { default as SiAlchemy, defaultColor as SiAlchemyHex } from './icons/SiAlchemy.mjs'; +export { default as SiAldinord, defaultColor as SiAldinordHex } from './icons/SiAldinord.mjs'; +export { default as SiAldisud, defaultColor as SiAldisudHex } from './icons/SiAldisud.mjs'; +export { default as SiAlfred, defaultColor as SiAlfredHex } from './icons/SiAlfred.mjs'; +export { default as SiAlgolia, defaultColor as SiAlgoliaHex } from './icons/SiAlgolia.mjs'; +export { default as SiAlgorand, defaultColor as SiAlgorandHex } from './icons/SiAlgorand.mjs'; +export { default as SiAlibabacloud, defaultColor as SiAlibabacloudHex } from './icons/SiAlibabacloud.mjs'; +export { default as SiAlibabadotcom, defaultColor as SiAlibabadotcomHex } from './icons/SiAlibabadotcom.mjs'; +export { default as SiAlienware, defaultColor as SiAlienwareHex } from './icons/SiAlienware.mjs'; +export { default as SiAliexpress, defaultColor as SiAliexpressHex } from './icons/SiAliexpress.mjs'; +export { default as SiAlipay, defaultColor as SiAlipayHex } from './icons/SiAlipay.mjs'; +export { default as SiAlist, defaultColor as SiAlistHex } from './icons/SiAlist.mjs'; +export { default as SiAllegro, defaultColor as SiAllegroHex } from './icons/SiAllegro.mjs'; +export { default as SiAlliedmodders, defaultColor as SiAlliedmoddersHex } from './icons/SiAlliedmodders.mjs'; +export { default as SiAlltrails, defaultColor as SiAlltrailsHex } from './icons/SiAlltrails.mjs'; +export { default as SiAlmalinux, defaultColor as SiAlmalinuxHex } from './icons/SiAlmalinux.mjs'; +export { default as SiAlpinedotjs, defaultColor as SiAlpinedotjsHex } from './icons/SiAlpinedotjs.mjs'; +export { default as SiAlpinelinux, defaultColor as SiAlpinelinuxHex } from './icons/SiAlpinelinux.mjs'; +export { default as SiAlternativeto, defaultColor as SiAlternativetoHex } from './icons/SiAlternativeto.mjs'; +export { default as SiAlwaysdata, defaultColor as SiAlwaysdataHex } from './icons/SiAlwaysdata.mjs'; +export { default as SiAmd, defaultColor as SiAmdHex } from './icons/SiAmd.mjs'; +export { default as SiAmeba, defaultColor as SiAmebaHex } from './icons/SiAmeba.mjs'; +export { default as SiAmericanairlines, defaultColor as SiAmericanairlinesHex } from './icons/SiAmericanairlines.mjs'; +export { default as SiAmericanexpress, defaultColor as SiAmericanexpressHex } from './icons/SiAmericanexpress.mjs'; +export { default as SiAmg, defaultColor as SiAmgHex } from './icons/SiAmg.mjs'; +export { default as SiAmp, defaultColor as SiAmpHex } from './icons/SiAmp.mjs'; +export { default as SiAmul, defaultColor as SiAmulHex } from './icons/SiAmul.mjs'; +export { default as SiAna, defaultColor as SiAnaHex } from './icons/SiAna.mjs'; +export { default as SiAnaconda, defaultColor as SiAnacondaHex } from './icons/SiAnaconda.mjs'; +export { default as SiAnalogue, defaultColor as SiAnalogueHex } from './icons/SiAnalogue.mjs'; +export { default as SiAndela, defaultColor as SiAndelaHex } from './icons/SiAndela.mjs'; +export { default as SiAndroid, defaultColor as SiAndroidHex } from './icons/SiAndroid.mjs'; +export { default as SiAndroidauto, defaultColor as SiAndroidautoHex } from './icons/SiAndroidauto.mjs'; +export { default as SiAndroidstudio, defaultColor as SiAndroidstudioHex } from './icons/SiAndroidstudio.mjs'; +export { default as SiAngular, defaultColor as SiAngularHex } from './icons/SiAngular.mjs'; +export { default as SiAnichart, defaultColor as SiAnichartHex } from './icons/SiAnichart.mjs'; +export { default as SiAnilist, defaultColor as SiAnilistHex } from './icons/SiAnilist.mjs'; +export { default as SiAnimalplanet, defaultColor as SiAnimalplanetHex } from './icons/SiAnimalplanet.mjs'; +export { default as SiAnimedotjs, defaultColor as SiAnimedotjsHex } from './icons/SiAnimedotjs.mjs'; +export { default as SiAnkermake, defaultColor as SiAnkermakeHex } from './icons/SiAnkermake.mjs'; +export { default as SiAnki, defaultColor as SiAnkiHex } from './icons/SiAnki.mjs'; +export { default as SiAnsible, defaultColor as SiAnsibleHex } from './icons/SiAnsible.mjs'; +export { default as SiAnswer, defaultColor as SiAnswerHex } from './icons/SiAnswer.mjs'; +export { default as SiAnsys, defaultColor as SiAnsysHex } from './icons/SiAnsys.mjs'; +export { default as SiAnta, defaultColor as SiAntaHex } from './icons/SiAnta.mjs'; +export { default as SiAntdesign, defaultColor as SiAntdesignHex } from './icons/SiAntdesign.mjs'; +export { default as SiAntena3, defaultColor as SiAntena3Hex } from './icons/SiAntena3.mjs'; +export { default as SiAntennapod, defaultColor as SiAntennapodHex } from './icons/SiAntennapod.mjs'; +export { default as SiAnthropic, defaultColor as SiAnthropicHex } from './icons/SiAnthropic.mjs'; +export { default as SiAntv, defaultColor as SiAntvHex } from './icons/SiAntv.mjs'; +export { default as SiAnycubic, defaultColor as SiAnycubicHex } from './icons/SiAnycubic.mjs'; +export { default as SiAnydesk, defaultColor as SiAnydeskHex } from './icons/SiAnydesk.mjs'; +export { default as SiAnytype, defaultColor as SiAnytypeHex } from './icons/SiAnytype.mjs'; +export { default as SiApache, defaultColor as SiApacheHex } from './icons/SiApache.mjs'; +export { default as SiApacheairflow, defaultColor as SiApacheairflowHex } from './icons/SiApacheairflow.mjs'; +export { default as SiApacheant, defaultColor as SiApacheantHex } from './icons/SiApacheant.mjs'; +export { default as SiApacheavro, defaultColor as SiApacheavroHex } from './icons/SiApacheavro.mjs'; +export { default as SiApachecassandra, defaultColor as SiApachecassandraHex } from './icons/SiApachecassandra.mjs'; +export { default as SiApachecloudstack, defaultColor as SiApachecloudstackHex } from './icons/SiApachecloudstack.mjs'; +export { default as SiApachecordova, defaultColor as SiApachecordovaHex } from './icons/SiApachecordova.mjs'; +export { default as SiApachecouchdb, defaultColor as SiApachecouchdbHex } from './icons/SiApachecouchdb.mjs'; +export { default as SiApachedolphinscheduler, defaultColor as SiApachedolphinschedulerHex } from './icons/SiApachedolphinscheduler.mjs'; +export { default as SiApachedoris, defaultColor as SiApachedorisHex } from './icons/SiApachedoris.mjs'; +export { default as SiApachedruid, defaultColor as SiApachedruidHex } from './icons/SiApachedruid.mjs'; +export { default as SiApacheecharts, defaultColor as SiApacheechartsHex } from './icons/SiApacheecharts.mjs'; +export { default as SiApacheflink, defaultColor as SiApacheflinkHex } from './icons/SiApacheflink.mjs'; +export { default as SiApachefreemarker, defaultColor as SiApachefreemarkerHex } from './icons/SiApachefreemarker.mjs'; +export { default as SiApachegroovy, defaultColor as SiApachegroovyHex } from './icons/SiApachegroovy.mjs'; +export { default as SiApacheguacamole, defaultColor as SiApacheguacamoleHex } from './icons/SiApacheguacamole.mjs'; +export { default as SiApachehadoop, defaultColor as SiApachehadoopHex } from './icons/SiApachehadoop.mjs'; +export { default as SiApachehbase, defaultColor as SiApachehbaseHex } from './icons/SiApachehbase.mjs'; +export { default as SiApachehive, defaultColor as SiApachehiveHex } from './icons/SiApachehive.mjs'; +export { default as SiApachejmeter, defaultColor as SiApachejmeterHex } from './icons/SiApachejmeter.mjs'; +export { default as SiApachekafka, defaultColor as SiApachekafkaHex } from './icons/SiApachekafka.mjs'; +export { default as SiApachekylin, defaultColor as SiApachekylinHex } from './icons/SiApachekylin.mjs'; +export { default as SiApachelucene, defaultColor as SiApacheluceneHex } from './icons/SiApachelucene.mjs'; +export { default as SiApachemaven, defaultColor as SiApachemavenHex } from './icons/SiApachemaven.mjs'; +export { default as SiApachenetbeanside, defaultColor as SiApachenetbeansideHex } from './icons/SiApachenetbeanside.mjs'; +export { default as SiApachenifi, defaultColor as SiApachenifiHex } from './icons/SiApachenifi.mjs'; +export { default as SiApacheopenoffice, defaultColor as SiApacheopenofficeHex } from './icons/SiApacheopenoffice.mjs'; +export { default as SiApacheparquet, defaultColor as SiApacheparquetHex } from './icons/SiApacheparquet.mjs'; +export { default as SiApachepdfbox, defaultColor as SiApachepdfboxHex } from './icons/SiApachepdfbox.mjs'; +export { default as SiApachepulsar, defaultColor as SiApachepulsarHex } from './icons/SiApachepulsar.mjs'; +export { default as SiApacherocketmq, defaultColor as SiApacherocketmqHex } from './icons/SiApacherocketmq.mjs'; +export { default as SiApachesolr, defaultColor as SiApachesolrHex } from './icons/SiApachesolr.mjs'; +export { default as SiApachespark, defaultColor as SiApachesparkHex } from './icons/SiApachespark.mjs'; +export { default as SiApachestorm, defaultColor as SiApachestormHex } from './icons/SiApachestorm.mjs'; +export { default as SiApachesuperset, defaultColor as SiApachesupersetHex } from './icons/SiApachesuperset.mjs'; +export { default as SiApachetomcat, defaultColor as SiApachetomcatHex } from './icons/SiApachetomcat.mjs'; +export { default as SiAparat, defaultColor as SiAparatHex } from './icons/SiAparat.mjs'; +export { default as SiApifox, defaultColor as SiApifoxHex } from './icons/SiApifox.mjs'; +export { default as SiApmterminals, defaultColor as SiApmterminalsHex } from './icons/SiApmterminals.mjs'; +export { default as SiApollographql, defaultColor as SiApollographqlHex } from './icons/SiApollographql.mjs'; +export { default as SiApostrophe, defaultColor as SiApostropheHex } from './icons/SiApostrophe.mjs'; +export { default as SiAppgallery, defaultColor as SiAppgalleryHex } from './icons/SiAppgallery.mjs'; +export { default as SiAppian, defaultColor as SiAppianHex } from './icons/SiAppian.mjs'; +export { default as SiAppimage, defaultColor as SiAppimageHex } from './icons/SiAppimage.mjs'; +export { default as SiAppium, defaultColor as SiAppiumHex } from './icons/SiAppium.mjs'; +export { default as SiApple, defaultColor as SiAppleHex } from './icons/SiApple.mjs'; +export { default as SiApplearcade, defaultColor as SiApplearcadeHex } from './icons/SiApplearcade.mjs'; +export { default as SiApplemusic, defaultColor as SiApplemusicHex } from './icons/SiApplemusic.mjs'; +export { default as SiApplenews, defaultColor as SiApplenewsHex } from './icons/SiApplenews.mjs'; +export { default as SiApplepay, defaultColor as SiApplepayHex } from './icons/SiApplepay.mjs'; +export { default as SiApplepodcasts, defaultColor as SiApplepodcastsHex } from './icons/SiApplepodcasts.mjs'; +export { default as SiAppletv, defaultColor as SiAppletvHex } from './icons/SiAppletv.mjs'; +export { default as SiAppmanager, defaultColor as SiAppmanagerHex } from './icons/SiAppmanager.mjs'; +export { default as SiAppsignal, defaultColor as SiAppsignalHex } from './icons/SiAppsignal.mjs'; +export { default as SiAppsmith, defaultColor as SiAppsmithHex } from './icons/SiAppsmith.mjs'; +export { default as SiAppstore, defaultColor as SiAppstoreHex } from './icons/SiAppstore.mjs'; +export { default as SiAppveyor, defaultColor as SiAppveyorHex } from './icons/SiAppveyor.mjs'; +export { default as SiAppwrite, defaultColor as SiAppwriteHex } from './icons/SiAppwrite.mjs'; +export { default as SiAqua, defaultColor as SiAquaHex } from './icons/SiAqua.mjs'; +export { default as SiAral, defaultColor as SiAralHex } from './icons/SiAral.mjs'; +export { default as SiArangodb, defaultColor as SiArangodbHex } from './icons/SiArangodb.mjs'; +export { default as SiArc, defaultColor as SiArcHex } from './icons/SiArc.mjs'; +export { default as SiArcgis, defaultColor as SiArcgisHex } from './icons/SiArcgis.mjs'; +export { default as SiArchicad, defaultColor as SiArchicadHex } from './icons/SiArchicad.mjs'; +export { default as SiArchiveofourown, defaultColor as SiArchiveofourownHex } from './icons/SiArchiveofourown.mjs'; +export { default as SiArchlinux, defaultColor as SiArchlinuxHex } from './icons/SiArchlinux.mjs'; +export { default as SiArdour, defaultColor as SiArdourHex } from './icons/SiArdour.mjs'; +export { default as SiArduino, defaultColor as SiArduinoHex } from './icons/SiArduino.mjs'; +export { default as SiArgo, defaultColor as SiArgoHex } from './icons/SiArgo.mjs'; +export { default as SiArgos, defaultColor as SiArgosHex } from './icons/SiArgos.mjs'; +export { default as SiAriakit, defaultColor as SiAriakitHex } from './icons/SiAriakit.mjs'; +export { default as SiArkecosystem, defaultColor as SiArkecosystemHex } from './icons/SiArkecosystem.mjs'; +export { default as SiArlo, defaultColor as SiArloHex } from './icons/SiArlo.mjs'; +export { default as SiArm, defaultColor as SiArmHex } from './icons/SiArm.mjs'; +export { default as SiArmkeil, defaultColor as SiArmkeilHex } from './icons/SiArmkeil.mjs'; +export { default as SiArstechnica, defaultColor as SiArstechnicaHex } from './icons/SiArstechnica.mjs'; +export { default as SiArtifacthub, defaultColor as SiArtifacthubHex } from './icons/SiArtifacthub.mjs'; +export { default as SiArtixlinux, defaultColor as SiArtixlinuxHex } from './icons/SiArtixlinux.mjs'; +export { default as SiArtstation, defaultColor as SiArtstationHex } from './icons/SiArtstation.mjs'; +export { default as SiArxiv, defaultColor as SiArxivHex } from './icons/SiArxiv.mjs'; +export { default as SiAsahilinux, defaultColor as SiAsahilinuxHex } from './icons/SiAsahilinux.mjs'; +export { default as SiAsana, defaultColor as SiAsanaHex } from './icons/SiAsana.mjs'; +export { default as SiAsciidoctor, defaultColor as SiAsciidoctorHex } from './icons/SiAsciidoctor.mjs'; +export { default as SiAsciinema, defaultColor as SiAsciinemaHex } from './icons/SiAsciinema.mjs'; +export { default as SiAsda, defaultColor as SiAsdaHex } from './icons/SiAsda.mjs'; +export { default as SiAseprite, defaultColor as SiAsepriteHex } from './icons/SiAseprite.mjs'; +export { default as SiAssemblyscript, defaultColor as SiAssemblyscriptHex } from './icons/SiAssemblyscript.mjs'; +export { default as SiAsterisk, defaultColor as SiAsteriskHex } from './icons/SiAsterisk.mjs'; +export { default as SiAstonmartin, defaultColor as SiAstonmartinHex } from './icons/SiAstonmartin.mjs'; +export { default as SiAstra, defaultColor as SiAstraHex } from './icons/SiAstra.mjs'; +export { default as SiAstral, defaultColor as SiAstralHex } from './icons/SiAstral.mjs'; +export { default as SiAstro, defaultColor as SiAstroHex } from './icons/SiAstro.mjs'; +export { default as SiAsus, defaultColor as SiAsusHex } from './icons/SiAsus.mjs'; +export { default as SiAtandt, defaultColor as SiAtandtHex } from './icons/SiAtandt.mjs'; +export { default as SiAtari, defaultColor as SiAtariHex } from './icons/SiAtari.mjs'; +export { default as SiAtlasos, defaultColor as SiAtlasosHex } from './icons/SiAtlasos.mjs'; +export { default as SiAtlassian, defaultColor as SiAtlassianHex } from './icons/SiAtlassian.mjs'; +export { default as SiAuchan, defaultColor as SiAuchanHex } from './icons/SiAuchan.mjs'; +export { default as SiAudacity, defaultColor as SiAudacityHex } from './icons/SiAudacity.mjs'; +export { default as SiAudi, defaultColor as SiAudiHex } from './icons/SiAudi.mjs'; +export { default as SiAudible, defaultColor as SiAudibleHex } from './icons/SiAudible.mjs'; +export { default as SiAudiobookshelf, defaultColor as SiAudiobookshelfHex } from './icons/SiAudiobookshelf.mjs'; +export { default as SiAudioboom, defaultColor as SiAudioboomHex } from './icons/SiAudioboom.mjs'; +export { default as SiAudiomack, defaultColor as SiAudiomackHex } from './icons/SiAudiomack.mjs'; +export { default as SiAudiotechnica, defaultColor as SiAudiotechnicaHex } from './icons/SiAudiotechnica.mjs'; +export { default as SiAurelia, defaultColor as SiAureliaHex } from './icons/SiAurelia.mjs'; +export { default as SiAutentique, defaultColor as SiAutentiqueHex } from './icons/SiAutentique.mjs'; +export { default as SiAuth0, defaultColor as SiAuth0Hex } from './icons/SiAuth0.mjs'; +export { default as SiAuthelia, defaultColor as SiAutheliaHex } from './icons/SiAuthelia.mjs'; +export { default as SiAuthentik, defaultColor as SiAuthentikHex } from './icons/SiAuthentik.mjs'; +export { default as SiAutocad, defaultColor as SiAutocadHex } from './icons/SiAutocad.mjs'; +export { default as SiAutocannon, defaultColor as SiAutocannonHex } from './icons/SiAutocannon.mjs'; +export { default as SiAutodesk, defaultColor as SiAutodeskHex } from './icons/SiAutodesk.mjs'; +export { default as SiAutodeskmaya, defaultColor as SiAutodeskmayaHex } from './icons/SiAutodeskmaya.mjs'; +export { default as SiAutodeskrevit, defaultColor as SiAutodeskrevitHex } from './icons/SiAutodeskrevit.mjs'; +export { default as SiAutohotkey, defaultColor as SiAutohotkeyHex } from './icons/SiAutohotkey.mjs'; +export { default as SiAutoit, defaultColor as SiAutoitHex } from './icons/SiAutoit.mjs'; +export { default as SiAutomattic, defaultColor as SiAutomatticHex } from './icons/SiAutomattic.mjs'; +export { default as SiAutoprefixer, defaultColor as SiAutoprefixerHex } from './icons/SiAutoprefixer.mjs'; +export { default as SiAutozone, defaultColor as SiAutozoneHex } from './icons/SiAutozone.mjs'; +export { default as SiAvajs, defaultColor as SiAvajsHex } from './icons/SiAvajs.mjs'; +export { default as SiAvaloniaui, defaultColor as SiAvaloniauiHex } from './icons/SiAvaloniaui.mjs'; +export { default as SiAvast, defaultColor as SiAvastHex } from './icons/SiAvast.mjs'; +export { default as SiAvianca, defaultColor as SiAviancaHex } from './icons/SiAvianca.mjs'; +export { default as SiAvira, defaultColor as SiAviraHex } from './icons/SiAvira.mjs'; +export { default as SiAvm, defaultColor as SiAvmHex } from './icons/SiAvm.mjs'; +export { default as SiAwesomelists, defaultColor as SiAwesomelistsHex } from './icons/SiAwesomelists.mjs'; +export { default as SiAwesomewm, defaultColor as SiAwesomewmHex } from './icons/SiAwesomewm.mjs'; +export { default as SiAwwwards, defaultColor as SiAwwwardsHex } from './icons/SiAwwwards.mjs'; +export { default as SiAxios, defaultColor as SiAxiosHex } from './icons/SiAxios.mjs'; +export { default as SiAxisbank, defaultColor as SiAxisbankHex } from './icons/SiAxisbank.mjs'; +export { default as SiB4x, defaultColor as SiB4xHex } from './icons/SiB4x.mjs'; +export { default as SiBabel, defaultColor as SiBabelHex } from './icons/SiBabel.mjs'; +export { default as SiBabelio, defaultColor as SiBabelioHex } from './icons/SiBabelio.mjs'; +export { default as SiBabylondotjs, defaultColor as SiBabylondotjsHex } from './icons/SiBabylondotjs.mjs'; +export { default as SiBackblaze, defaultColor as SiBackblazeHex } from './icons/SiBackblaze.mjs'; +export { default as SiBackbone, defaultColor as SiBackboneHex } from './icons/SiBackbone.mjs'; +export { default as SiBackbonedotjs, defaultColor as SiBackbonedotjsHex } from './icons/SiBackbonedotjs.mjs'; +export { default as SiBackendless, defaultColor as SiBackendlessHex } from './icons/SiBackendless.mjs'; +export { default as SiBackstage, defaultColor as SiBackstageHex } from './icons/SiBackstage.mjs'; +export { default as SiBackstageCasting, defaultColor as SiBackstageCastingHex } from './icons/SiBackstageCasting.mjs'; +export { default as SiBadoo, defaultColor as SiBadooHex } from './icons/SiBadoo.mjs'; +export { default as SiBaidu, defaultColor as SiBaiduHex } from './icons/SiBaidu.mjs'; +export { default as SiBakalari, defaultColor as SiBakalariHex } from './icons/SiBakalari.mjs'; +export { default as SiBamboo, defaultColor as SiBambooHex } from './icons/SiBamboo.mjs'; +export { default as SiBambulab, defaultColor as SiBambulabHex } from './icons/SiBambulab.mjs'; +export { default as SiBandcamp, defaultColor as SiBandcampHex } from './icons/SiBandcamp.mjs'; +export { default as SiBandlab, defaultColor as SiBandlabHex } from './icons/SiBandlab.mjs'; +export { default as SiBandrautomation, defaultColor as SiBandrautomationHex } from './icons/SiBandrautomation.mjs'; +export { default as SiBandsintown, defaultColor as SiBandsintownHex } from './icons/SiBandsintown.mjs'; +export { default as SiBankofamerica, defaultColor as SiBankofamericaHex } from './icons/SiBankofamerica.mjs'; +export { default as SiBarclays, defaultColor as SiBarclaysHex } from './icons/SiBarclays.mjs'; +export { default as SiBaremetrics, defaultColor as SiBaremetricsHex } from './icons/SiBaremetrics.mjs'; +export { default as SiBarmenia, defaultColor as SiBarmeniaHex } from './icons/SiBarmenia.mjs'; +export { default as SiBasecamp, defaultColor as SiBasecampHex } from './icons/SiBasecamp.mjs'; +export { default as SiBaserow, defaultColor as SiBaserowHex } from './icons/SiBaserow.mjs'; +export { default as SiBasicattentiontoken, defaultColor as SiBasicattentiontokenHex } from './icons/SiBasicattentiontoken.mjs'; +export { default as SiBastyon, defaultColor as SiBastyonHex } from './icons/SiBastyon.mjs'; +export { default as SiBat, defaultColor as SiBatHex } from './icons/SiBat.mjs'; +export { default as SiBata, defaultColor as SiBataHex } from './icons/SiBata.mjs'; +export { default as SiBattledotnet, defaultColor as SiBattledotnetHex } from './icons/SiBattledotnet.mjs'; +export { default as SiBazel, defaultColor as SiBazelHex } from './icons/SiBazel.mjs'; +export { default as SiBeatport, defaultColor as SiBeatportHex } from './icons/SiBeatport.mjs'; +export { default as SiBeats, defaultColor as SiBeatsHex } from './icons/SiBeats.mjs'; +export { default as SiBeatsbydre, defaultColor as SiBeatsbydreHex } from './icons/SiBeatsbydre.mjs'; +export { default as SiBeatstars, defaultColor as SiBeatstarsHex } from './icons/SiBeatstars.mjs'; +export { default as SiBeekeeperstudio, defaultColor as SiBeekeeperstudioHex } from './icons/SiBeekeeperstudio.mjs'; +export { default as SiBehance, defaultColor as SiBehanceHex } from './icons/SiBehance.mjs'; +export { default as SiBeijingsubway, defaultColor as SiBeijingsubwayHex } from './icons/SiBeijingsubway.mjs'; +export { default as SiBem, defaultColor as SiBemHex } from './icons/SiBem.mjs'; +export { default as SiBentley, defaultColor as SiBentleyHex } from './icons/SiBentley.mjs'; +export { default as SiBento, defaultColor as SiBentoHex } from './icons/SiBento.mjs'; +export { default as SiBentobox, defaultColor as SiBentoboxHex } from './icons/SiBentobox.mjs'; +export { default as SiBentoml, defaultColor as SiBentomlHex } from './icons/SiBentoml.mjs'; +export { default as SiBereal, defaultColor as SiBerealHex } from './icons/SiBereal.mjs'; +export { default as SiBetfair, defaultColor as SiBetfairHex } from './icons/SiBetfair.mjs'; +export { default as SiBetterauth, defaultColor as SiBetterauthHex } from './icons/SiBetterauth.mjs'; +export { default as SiBetterdiscord, defaultColor as SiBetterdiscordHex } from './icons/SiBetterdiscord.mjs'; +export { default as SiBetterstack, defaultColor as SiBetterstackHex } from './icons/SiBetterstack.mjs'; +export { default as SiBevy, defaultColor as SiBevyHex } from './icons/SiBevy.mjs'; +export { default as SiBigbasket, defaultColor as SiBigbasketHex } from './icons/SiBigbasket.mjs'; +export { default as SiBigbluebutton, defaultColor as SiBigbluebuttonHex } from './icons/SiBigbluebutton.mjs'; +export { default as SiBigcartel, defaultColor as SiBigcartelHex } from './icons/SiBigcartel.mjs'; +export { default as SiBigcommerce, defaultColor as SiBigcommerceHex } from './icons/SiBigcommerce.mjs'; +export { default as SiBilibili, defaultColor as SiBilibiliHex } from './icons/SiBilibili.mjs'; +export { default as SiBillboard, defaultColor as SiBillboardHex } from './icons/SiBillboard.mjs'; +export { default as SiBim, defaultColor as SiBimHex } from './icons/SiBim.mjs'; +export { default as SiBinance, defaultColor as SiBinanceHex } from './icons/SiBinance.mjs'; +export { default as SiBioconductor, defaultColor as SiBioconductorHex } from './icons/SiBioconductor.mjs'; +export { default as SiBiolink, defaultColor as SiBiolinkHex } from './icons/SiBiolink.mjs'; +export { default as SiBiome, defaultColor as SiBiomeHex } from './icons/SiBiome.mjs'; +export { default as SiBisecthosting, defaultColor as SiBisecthostingHex } from './icons/SiBisecthosting.mjs'; +export { default as SiBit, defaultColor as SiBitHex } from './icons/SiBit.mjs'; +export { default as SiBitbucket, defaultColor as SiBitbucketHex } from './icons/SiBitbucket.mjs'; +export { default as SiBitcoin, defaultColor as SiBitcoinHex } from './icons/SiBitcoin.mjs'; +export { default as SiBitcoincash, defaultColor as SiBitcoincashHex } from './icons/SiBitcoincash.mjs'; +export { default as SiBitcoinsv, defaultColor as SiBitcoinsvHex } from './icons/SiBitcoinsv.mjs'; +export { default as SiBitcomet, defaultColor as SiBitcometHex } from './icons/SiBitcomet.mjs'; +export { default as SiBitdefender, defaultColor as SiBitdefenderHex } from './icons/SiBitdefender.mjs'; +export { default as SiBitly, defaultColor as SiBitlyHex } from './icons/SiBitly.mjs'; +export { default as SiBitrise, defaultColor as SiBitriseHex } from './icons/SiBitrise.mjs'; +export { default as SiBitsy, defaultColor as SiBitsyHex } from './icons/SiBitsy.mjs'; +export { default as SiBittorrent, defaultColor as SiBittorrentHex } from './icons/SiBittorrent.mjs'; +export { default as SiBitwarden, defaultColor as SiBitwardenHex } from './icons/SiBitwarden.mjs'; +export { default as SiBitwig, defaultColor as SiBitwigHex } from './icons/SiBitwig.mjs'; +export { default as SiBlack, defaultColor as SiBlackHex } from './icons/SiBlack.mjs'; +export { default as SiBlackberry, defaultColor as SiBlackberryHex } from './icons/SiBlackberry.mjs'; +export { default as SiBlackmagicdesign, defaultColor as SiBlackmagicdesignHex } from './icons/SiBlackmagicdesign.mjs'; +export { default as SiBlazemeter, defaultColor as SiBlazemeterHex } from './icons/SiBlazemeter.mjs'; +export { default as SiBlazor, defaultColor as SiBlazorHex } from './icons/SiBlazor.mjs'; +export { default as SiBlender, defaultColor as SiBlenderHex } from './icons/SiBlender.mjs'; +export { default as SiBlibli, defaultColor as SiBlibliHex } from './icons/SiBlibli.mjs'; +export { default as SiBlockbench, defaultColor as SiBlockbenchHex } from './icons/SiBlockbench.mjs'; +export { default as SiBlockchaindotcom, defaultColor as SiBlockchaindotcomHex } from './icons/SiBlockchaindotcom.mjs'; +export { default as SiBlogger, defaultColor as SiBloggerHex } from './icons/SiBlogger.mjs'; +export { default as SiBloglovin, defaultColor as SiBloglovinHex } from './icons/SiBloglovin.mjs'; +export { default as SiBlueprint, defaultColor as SiBlueprintHex } from './icons/SiBlueprint.mjs'; +export { default as SiBluesky, defaultColor as SiBlueskyHex } from './icons/SiBluesky.mjs'; +export { default as SiBluesound, defaultColor as SiBluesoundHex } from './icons/SiBluesound.mjs'; +export { default as SiBluetooth, defaultColor as SiBluetoothHex } from './icons/SiBluetooth.mjs'; +export { default as SiBmcsoftware, defaultColor as SiBmcsoftwareHex } from './icons/SiBmcsoftware.mjs'; +export { default as SiBmw, defaultColor as SiBmwHex } from './icons/SiBmw.mjs'; +export { default as SiBnbchain, defaultColor as SiBnbchainHex } from './icons/SiBnbchain.mjs'; +export { default as SiBoardgamegeek, defaultColor as SiBoardgamegeekHex } from './icons/SiBoardgamegeek.mjs'; +export { default as SiBoat, defaultColor as SiBoatHex } from './icons/SiBoat.mjs'; +export { default as SiBoehringeringelheim, defaultColor as SiBoehringeringelheimHex } from './icons/SiBoehringeringelheim.mjs'; +export { default as SiBoeing, defaultColor as SiBoeingHex } from './icons/SiBoeing.mjs'; +export { default as SiBohemiainteractive, defaultColor as SiBohemiainteractiveHex } from './icons/SiBohemiainteractive.mjs'; +export { default as SiBombardier, defaultColor as SiBombardierHex } from './icons/SiBombardier.mjs'; +export { default as SiBookalope, defaultColor as SiBookalopeHex } from './icons/SiBookalope.mjs'; +export { default as SiBookbub, defaultColor as SiBookbubHex } from './icons/SiBookbub.mjs'; +export { default as SiBookingdotcom, defaultColor as SiBookingdotcomHex } from './icons/SiBookingdotcom.mjs'; +export { default as SiBookmeter, defaultColor as SiBookmeterHex } from './icons/SiBookmeter.mjs'; +export { default as SiBookmyshow, defaultColor as SiBookmyshowHex } from './icons/SiBookmyshow.mjs'; +export { default as SiBookstack, defaultColor as SiBookstackHex } from './icons/SiBookstack.mjs'; +export { default as SiBoost, defaultColor as SiBoostHex } from './icons/SiBoost.mjs'; +export { default as SiBoosty, defaultColor as SiBoostyHex } from './icons/SiBoosty.mjs'; +export { default as SiBoots, defaultColor as SiBootsHex } from './icons/SiBoots.mjs'; +export { default as SiBootstrap, defaultColor as SiBootstrapHex } from './icons/SiBootstrap.mjs'; +export { default as SiBorgbackup, defaultColor as SiBorgbackupHex } from './icons/SiBorgbackup.mjs'; +export { default as SiBosch, defaultColor as SiBoschHex } from './icons/SiBosch.mjs'; +export { default as SiBose, defaultColor as SiBoseHex } from './icons/SiBose.mjs'; +export { default as SiBotblecms, defaultColor as SiBotblecmsHex } from './icons/SiBotblecms.mjs'; +export { default as SiBoulanger, defaultColor as SiBoulangerHex } from './icons/SiBoulanger.mjs'; +export { default as SiBower, defaultColor as SiBowerHex } from './icons/SiBower.mjs'; +export { default as SiBox, defaultColor as SiBoxHex } from './icons/SiBox.mjs'; +export { default as SiBoxysvg, defaultColor as SiBoxysvgHex } from './icons/SiBoxysvg.mjs'; +export { default as SiBraintree, defaultColor as SiBraintreeHex } from './icons/SiBraintree.mjs'; +export { default as SiBraintrust, defaultColor as SiBraintrustHex } from './icons/SiBraintrust.mjs'; +export { default as SiBrandfetch, defaultColor as SiBrandfetchHex } from './icons/SiBrandfetch.mjs'; +export { default as SiBrandfolder, defaultColor as SiBrandfolderHex } from './icons/SiBrandfolder.mjs'; +export { default as SiBrave, defaultColor as SiBraveHex } from './icons/SiBrave.mjs'; +export { default as SiBreaker, defaultColor as SiBreakerHex } from './icons/SiBreaker.mjs'; +export { default as SiBrenntag, defaultColor as SiBrenntagHex } from './icons/SiBrenntag.mjs'; +export { default as SiBrevo, defaultColor as SiBrevoHex } from './icons/SiBrevo.mjs'; +export { default as SiBrex, defaultColor as SiBrexHex } from './icons/SiBrex.mjs'; +export { default as SiBricks, defaultColor as SiBricksHex } from './icons/SiBricks.mjs'; +export { default as SiBritishairways, defaultColor as SiBritishairwaysHex } from './icons/SiBritishairways.mjs'; +export { default as SiBroadcom, defaultColor as SiBroadcomHex } from './icons/SiBroadcom.mjs'; +export { default as SiBruno, defaultColor as SiBrunoHex } from './icons/SiBruno.mjs'; +export { default as SiBsd, defaultColor as SiBsdHex } from './icons/SiBsd.mjs'; +export { default as SiBspwm, defaultColor as SiBspwmHex } from './icons/SiBspwm.mjs'; +export { default as SiBt, defaultColor as SiBtHex } from './icons/SiBt.mjs'; +export { default as SiBuddy, defaultColor as SiBuddyHex } from './icons/SiBuddy.mjs'; +export { default as SiBudibase, defaultColor as SiBudibaseHex } from './icons/SiBudibase.mjs'; +export { default as SiBuefy, defaultColor as SiBuefyHex } from './icons/SiBuefy.mjs'; +export { default as SiBuffer, defaultColor as SiBufferHex } from './icons/SiBuffer.mjs'; +export { default as SiBugatti, defaultColor as SiBugattiHex } from './icons/SiBugatti.mjs'; +export { default as SiBugcrowd, defaultColor as SiBugcrowdHex } from './icons/SiBugcrowd.mjs'; +export { default as SiBuhl, defaultColor as SiBuhlHex } from './icons/SiBuhl.mjs'; +export { default as SiBuildkite, defaultColor as SiBuildkiteHex } from './icons/SiBuildkite.mjs'; +export { default as SiBuiltbybit, defaultColor as SiBuiltbybitHex } from './icons/SiBuiltbybit.mjs'; +export { default as SiBukalapak, defaultColor as SiBukalapakHex } from './icons/SiBukalapak.mjs'; +export { default as SiBulma, defaultColor as SiBulmaHex } from './icons/SiBulma.mjs'; +export { default as SiBun, defaultColor as SiBunHex } from './icons/SiBun.mjs'; +export { default as SiBungie, defaultColor as SiBungieHex } from './icons/SiBungie.mjs'; +export { default as SiBunnydotnet, defaultColor as SiBunnydotnetHex } from './icons/SiBunnydotnet.mjs'; +export { default as SiBunq, defaultColor as SiBunqHex } from './icons/SiBunq.mjs'; +export { default as SiBurgerking, defaultColor as SiBurgerkingHex } from './icons/SiBurgerking.mjs'; +export { default as SiBurpsuite, defaultColor as SiBurpsuiteHex } from './icons/SiBurpsuite.mjs'; +export { default as SiBurton, defaultColor as SiBurtonHex } from './icons/SiBurton.mjs'; +export { default as SiBuymeacoffee, defaultColor as SiBuymeacoffeeHex } from './icons/SiBuymeacoffee.mjs'; +export { default as SiBuysellads, defaultColor as SiBuyselladsHex } from './icons/SiBuysellads.mjs'; +export { default as SiBuzzfeed, defaultColor as SiBuzzfeedHex } from './icons/SiBuzzfeed.mjs'; +export { default as SiBvg, defaultColor as SiBvgHex } from './icons/SiBvg.mjs'; +export { default as SiByjus, defaultColor as SiByjusHex } from './icons/SiByjus.mjs'; +export { default as SiBytedance, defaultColor as SiBytedanceHex } from './icons/SiBytedance.mjs'; +export { default as SiC, defaultColor as SiCHex } from './icons/SiC.mjs'; +export { default as SiCachet, defaultColor as SiCachetHex } from './icons/SiCachet.mjs'; +export { default as SiCaddy, defaultColor as SiCaddyHex } from './icons/SiCaddy.mjs'; +export { default as SiCadillac, defaultColor as SiCadillacHex } from './icons/SiCadillac.mjs'; +export { default as SiCafepress, defaultColor as SiCafepressHex } from './icons/SiCafepress.mjs'; +export { default as SiCairographics, defaultColor as SiCairographicsHex } from './icons/SiCairographics.mjs'; +export { default as SiCairometro, defaultColor as SiCairometroHex } from './icons/SiCairometro.mjs'; +export { default as SiCaixabank, defaultColor as SiCaixabankHex } from './icons/SiCaixabank.mjs'; +export { default as SiCakephp, defaultColor as SiCakephpHex } from './icons/SiCakephp.mjs'; +export { default as SiCaldotcom, defaultColor as SiCaldotcomHex } from './icons/SiCaldotcom.mjs'; +export { default as SiCalendly, defaultColor as SiCalendlyHex } from './icons/SiCalendly.mjs'; +export { default as SiCalibreweb, defaultColor as SiCalibrewebHex } from './icons/SiCalibreweb.mjs'; +export { default as SiCampaignmonitor, defaultColor as SiCampaignmonitorHex } from './icons/SiCampaignmonitor.mjs'; +export { default as SiCamunda, defaultColor as SiCamundaHex } from './icons/SiCamunda.mjs'; +export { default as SiCanonical, defaultColor as SiCanonicalHex } from './icons/SiCanonical.mjs'; +export { default as SiCanvas, defaultColor as SiCanvasHex } from './icons/SiCanvas.mjs'; +export { default as SiCapacitor, defaultColor as SiCapacitorHex } from './icons/SiCapacitor.mjs'; +export { default as SiCaprover, defaultColor as SiCaproverHex } from './icons/SiCaprover.mjs'; +export { default as SiCardano, defaultColor as SiCardanoHex } from './icons/SiCardano.mjs'; +export { default as SiCardmarket, defaultColor as SiCardmarketHex } from './icons/SiCardmarket.mjs'; +export { default as SiCarlsberggroup, defaultColor as SiCarlsberggroupHex } from './icons/SiCarlsberggroup.mjs'; +export { default as SiCarrd, defaultColor as SiCarrdHex } from './icons/SiCarrd.mjs'; +export { default as SiCarrefour, defaultColor as SiCarrefourHex } from './icons/SiCarrefour.mjs'; +export { default as SiCarthrottle, defaultColor as SiCarthrottleHex } from './icons/SiCarthrottle.mjs'; +export { default as SiCarto, defaultColor as SiCartoHex } from './icons/SiCarto.mjs'; +export { default as SiCashapp, defaultColor as SiCashappHex } from './icons/SiCashapp.mjs'; +export { default as SiCastbox, defaultColor as SiCastboxHex } from './icons/SiCastbox.mjs'; +export { default as SiCastorama, defaultColor as SiCastoramaHex } from './icons/SiCastorama.mjs'; +export { default as SiCastro, defaultColor as SiCastroHex } from './icons/SiCastro.mjs'; +export { default as SiCaterpillar, defaultColor as SiCaterpillarHex } from './icons/SiCaterpillar.mjs'; +export { default as SiCbc, defaultColor as SiCbcHex } from './icons/SiCbc.mjs'; +export { default as SiCbs, defaultColor as SiCbsHex } from './icons/SiCbs.mjs'; +export { default as SiCcc, defaultColor as SiCccHex } from './icons/SiCcc.mjs'; +export { default as SiCcleaner, defaultColor as SiCcleanerHex } from './icons/SiCcleaner.mjs'; +export { default as SiCdprojekt, defaultColor as SiCdprojektHex } from './icons/SiCdprojekt.mjs'; +export { default as SiCe, defaultColor as SiCeHex } from './icons/SiCe.mjs'; +export { default as SiCelery, defaultColor as SiCeleryHex } from './icons/SiCelery.mjs'; +export { default as SiCelestron, defaultColor as SiCelestronHex } from './icons/SiCelestron.mjs'; +export { default as SiCentos, defaultColor as SiCentosHex } from './icons/SiCentos.mjs'; +export { default as SiCeph, defaultColor as SiCephHex } from './icons/SiCeph.mjs'; +export { default as SiCesium, defaultColor as SiCesiumHex } from './icons/SiCesium.mjs'; +export { default as SiChai, defaultColor as SiChaiHex } from './icons/SiChai.mjs'; +export { default as SiChainguard, defaultColor as SiChainguardHex } from './icons/SiChainguard.mjs'; +export { default as SiChainlink, defaultColor as SiChainlinkHex } from './icons/SiChainlink.mjs'; +export { default as SiChakraui, defaultColor as SiChakrauiHex } from './icons/SiChakraui.mjs'; +export { default as SiChangedetection, defaultColor as SiChangedetectionHex } from './icons/SiChangedetection.mjs'; +export { default as SiChannel4, defaultColor as SiChannel4Hex } from './icons/SiChannel4.mjs'; +export { default as SiCharles, defaultColor as SiCharlesHex } from './icons/SiCharles.mjs'; +export { default as SiChartdotjs, defaultColor as SiChartdotjsHex } from './icons/SiChartdotjs.mjs'; +export { default as SiChartmogul, defaultColor as SiChartmogulHex } from './icons/SiChartmogul.mjs'; +export { default as SiChase, defaultColor as SiChaseHex } from './icons/SiChase.mjs'; +export { default as SiChatbot, defaultColor as SiChatbotHex } from './icons/SiChatbot.mjs'; +export { default as SiChatwoot, defaultColor as SiChatwootHex } from './icons/SiChatwoot.mjs'; +export { default as SiCheckio, defaultColor as SiCheckioHex } from './icons/SiCheckio.mjs'; +export { default as SiCheckmarx, defaultColor as SiCheckmarxHex } from './icons/SiCheckmarx.mjs'; +export { default as SiCheckmk, defaultColor as SiCheckmkHex } from './icons/SiCheckmk.mjs'; +export { default as SiChedraui, defaultColor as SiChedrauiHex } from './icons/SiChedraui.mjs'; +export { default as SiCheerio, defaultColor as SiCheerioHex } from './icons/SiCheerio.mjs'; +export { default as SiChef, defaultColor as SiChefHex } from './icons/SiChef.mjs'; +export { default as SiChemex, defaultColor as SiChemexHex } from './icons/SiChemex.mjs'; +export { default as SiChessdotcom, defaultColor as SiChessdotcomHex } from './icons/SiChessdotcom.mjs'; +export { default as SiChevrolet, defaultColor as SiChevroletHex } from './icons/SiChevrolet.mjs'; +export { default as SiChianetwork, defaultColor as SiChianetworkHex } from './icons/SiChianetwork.mjs'; +export { default as SiChinaeasternairlines, defaultColor as SiChinaeasternairlinesHex } from './icons/SiChinaeasternairlines.mjs'; +export { default as SiChinarailway, defaultColor as SiChinarailwayHex } from './icons/SiChinarailway.mjs'; +export { default as SiChinasouthernairlines, defaultColor as SiChinasouthernairlinesHex } from './icons/SiChinasouthernairlines.mjs'; +export { default as SiChocolatey, defaultColor as SiChocolateyHex } from './icons/SiChocolatey.mjs'; +export { default as SiChromatic, defaultColor as SiChromaticHex } from './icons/SiChromatic.mjs'; +export { default as SiChromewebstore, defaultColor as SiChromewebstoreHex } from './icons/SiChromewebstore.mjs'; +export { default as SiChrysler, defaultColor as SiChryslerHex } from './icons/SiChrysler.mjs'; +export { default as SiChupachups, defaultColor as SiChupachupsHex } from './icons/SiChupachups.mjs'; +export { default as SiCilium, defaultColor as SiCiliumHex } from './icons/SiCilium.mjs'; +export { default as SiCinema4d, defaultColor as SiCinema4dHex } from './icons/SiCinema4d.mjs'; +export { default as SiCinnamon, defaultColor as SiCinnamonHex } from './icons/SiCinnamon.mjs'; +export { default as SiCircle, defaultColor as SiCircleHex } from './icons/SiCircle.mjs'; +export { default as SiCircleci, defaultColor as SiCircleciHex } from './icons/SiCircleci.mjs'; +export { default as SiCircuitverse, defaultColor as SiCircuitverseHex } from './icons/SiCircuitverse.mjs'; +export { default as SiCirrusci, defaultColor as SiCirrusciHex } from './icons/SiCirrusci.mjs'; +export { default as SiCisco, defaultColor as SiCiscoHex } from './icons/SiCisco.mjs'; +export { default as SiCitrix, defaultColor as SiCitrixHex } from './icons/SiCitrix.mjs'; +export { default as SiCitroen, defaultColor as SiCitroenHex } from './icons/SiCitroen.mjs'; +export { default as SiCivicrm, defaultColor as SiCivicrmHex } from './icons/SiCivicrm.mjs'; +export { default as SiCivo, defaultColor as SiCivoHex } from './icons/SiCivo.mjs'; +export { default as SiClarifai, defaultColor as SiClarifaiHex } from './icons/SiClarifai.mjs'; +export { default as SiClaris, defaultColor as SiClarisHex } from './icons/SiClaris.mjs'; +export { default as SiClarivate, defaultColor as SiClarivateHex } from './icons/SiClarivate.mjs'; +export { default as SiClaude, defaultColor as SiClaudeHex } from './icons/SiClaude.mjs'; +export { default as SiClerk, defaultColor as SiClerkHex } from './icons/SiClerk.mjs'; +export { default as SiClevercloud, defaultColor as SiClevercloudHex } from './icons/SiClevercloud.mjs'; +export { default as SiClickhouse, defaultColor as SiClickhouseHex } from './icons/SiClickhouse.mjs'; +export { default as SiClickup, defaultColor as SiClickupHex } from './icons/SiClickup.mjs'; +export { default as SiClion, defaultColor as SiClionHex } from './icons/SiClion.mjs'; +export { default as SiClockify, defaultColor as SiClockifyHex } from './icons/SiClockify.mjs'; +export { default as SiClojure, defaultColor as SiClojureHex } from './icons/SiClojure.mjs'; +export { default as SiCloud66, defaultColor as SiCloud66Hex } from './icons/SiCloud66.mjs'; +export { default as SiCloudbees, defaultColor as SiCloudbeesHex } from './icons/SiCloudbees.mjs'; +export { default as SiCloudcannon, defaultColor as SiCloudcannonHex } from './icons/SiCloudcannon.mjs'; +export { default as SiCloudera, defaultColor as SiClouderaHex } from './icons/SiCloudera.mjs'; +export { default as SiCloudflare, defaultColor as SiCloudflareHex } from './icons/SiCloudflare.mjs'; +export { default as SiCloudflarepages, defaultColor as SiCloudflarepagesHex } from './icons/SiCloudflarepages.mjs'; +export { default as SiCloudflareworkers, defaultColor as SiCloudflareworkersHex } from './icons/SiCloudflareworkers.mjs'; +export { default as SiCloudfoundry, defaultColor as SiCloudfoundryHex } from './icons/SiCloudfoundry.mjs'; +export { default as SiCloudinary, defaultColor as SiCloudinaryHex } from './icons/SiCloudinary.mjs'; +export { default as SiCloudnativebuild, defaultColor as SiCloudnativebuildHex } from './icons/SiCloudnativebuild.mjs'; +export { default as SiCloudron, defaultColor as SiCloudronHex } from './icons/SiCloudron.mjs'; +export { default as SiCloudsmith, defaultColor as SiCloudsmithHex } from './icons/SiCloudsmith.mjs'; +export { default as SiCloudways, defaultColor as SiCloudwaysHex } from './icons/SiCloudways.mjs'; +export { default as SiClubforce, defaultColor as SiClubforceHex } from './icons/SiClubforce.mjs'; +export { default as SiClubhouse, defaultColor as SiClubhouseHex } from './icons/SiClubhouse.mjs'; +export { default as SiClyp, defaultColor as SiClypHex } from './icons/SiClyp.mjs'; +export { default as SiCmake, defaultColor as SiCmakeHex } from './icons/SiCmake.mjs'; +export { default as SiCncf, defaultColor as SiCncfHex } from './icons/SiCncf.mjs'; +export { default as SiCnes, defaultColor as SiCnesHex } from './icons/SiCnes.mjs'; +export { default as SiCnet, defaultColor as SiCnetHex } from './icons/SiCnet.mjs'; +export { default as SiCnn, defaultColor as SiCnnHex } from './icons/SiCnn.mjs'; +export { default as SiCobalt, defaultColor as SiCobaltHex } from './icons/SiCobalt.mjs'; +export { default as SiCocacola, defaultColor as SiCocacolaHex } from './icons/SiCocacola.mjs'; +export { default as SiCockpit, defaultColor as SiCockpitHex } from './icons/SiCockpit.mjs'; +export { default as SiCockroachlabs, defaultColor as SiCockroachlabsHex } from './icons/SiCockroachlabs.mjs'; +export { default as SiCocoapods, defaultColor as SiCocoapodsHex } from './icons/SiCocoapods.mjs'; +export { default as SiCocos, defaultColor as SiCocosHex } from './icons/SiCocos.mjs'; +export { default as SiCoda, defaultColor as SiCodaHex } from './icons/SiCoda.mjs'; +export { default as SiCodacy, defaultColor as SiCodacyHex } from './icons/SiCodacy.mjs'; +export { default as SiCodeberg, defaultColor as SiCodebergHex } from './icons/SiCodeberg.mjs'; +export { default as SiCodeblocks, defaultColor as SiCodeblocksHex } from './icons/SiCodeblocks.mjs'; +export { default as SiCodecademy, defaultColor as SiCodecademyHex } from './icons/SiCodecademy.mjs'; +export { default as SiCodeceptjs, defaultColor as SiCodeceptjsHex } from './icons/SiCodeceptjs.mjs'; +export { default as SiCodechef, defaultColor as SiCodechefHex } from './icons/SiCodechef.mjs'; +export { default as SiCodeclimate, defaultColor as SiCodeclimateHex } from './icons/SiCodeclimate.mjs'; +export { default as SiCodecov, defaultColor as SiCodecovHex } from './icons/SiCodecov.mjs'; +export { default as SiCodecrafters, defaultColor as SiCodecraftersHex } from './icons/SiCodecrafters.mjs'; +export { default as SiCodefactor, defaultColor as SiCodefactorHex } from './icons/SiCodefactor.mjs'; +export { default as SiCodeforces, defaultColor as SiCodeforcesHex } from './icons/SiCodeforces.mjs'; +export { default as SiCodefresh, defaultColor as SiCodefreshHex } from './icons/SiCodefresh.mjs'; +export { default as SiCodeigniter, defaultColor as SiCodeigniterHex } from './icons/SiCodeigniter.mjs'; +export { default as SiCodemagic, defaultColor as SiCodemagicHex } from './icons/SiCodemagic.mjs'; +export { default as SiCodementor, defaultColor as SiCodementorHex } from './icons/SiCodementor.mjs'; +export { default as SiCodemirror, defaultColor as SiCodemirrorHex } from './icons/SiCodemirror.mjs'; +export { default as SiCodenewbie, defaultColor as SiCodenewbieHex } from './icons/SiCodenewbie.mjs'; +export { default as SiCodeproject, defaultColor as SiCodeprojectHex } from './icons/SiCodeproject.mjs'; +export { default as SiCoder, defaultColor as SiCoderHex } from './icons/SiCoder.mjs'; +export { default as SiCoderabbit, defaultColor as SiCoderabbitHex } from './icons/SiCoderabbit.mjs'; +export { default as SiCodersrank, defaultColor as SiCodersrankHex } from './icons/SiCodersrank.mjs'; +export { default as SiCoderwall, defaultColor as SiCoderwallHex } from './icons/SiCoderwall.mjs'; +export { default as SiCodesandbox, defaultColor as SiCodesandboxHex } from './icons/SiCodesandbox.mjs'; +export { default as SiCodeship, defaultColor as SiCodeshipHex } from './icons/SiCodeship.mjs'; +export { default as SiCodesignal, defaultColor as SiCodesignalHex } from './icons/SiCodesignal.mjs'; +export { default as SiCodestream, defaultColor as SiCodestreamHex } from './icons/SiCodestream.mjs'; +export { default as SiCodewars, defaultColor as SiCodewarsHex } from './icons/SiCodewars.mjs'; +export { default as SiCodingame, defaultColor as SiCodingameHex } from './icons/SiCodingame.mjs'; +export { default as SiCodingninjas, defaultColor as SiCodingninjasHex } from './icons/SiCodingninjas.mjs'; +export { default as SiCodio, defaultColor as SiCodioHex } from './icons/SiCodio.mjs'; +export { default as SiCoffeescript, defaultColor as SiCoffeescriptHex } from './icons/SiCoffeescript.mjs'; +export { default as SiCoggle, defaultColor as SiCoggleHex } from './icons/SiCoggle.mjs'; +export { default as SiCoinbase, defaultColor as SiCoinbaseHex } from './icons/SiCoinbase.mjs'; +export { default as SiCoinmarketcap, defaultColor as SiCoinmarketcapHex } from './icons/SiCoinmarketcap.mjs'; +export { default as SiCollaboraonline, defaultColor as SiCollaboraonlineHex } from './icons/SiCollaboraonline.mjs'; +export { default as SiComicfury, defaultColor as SiComicfuryHex } from './icons/SiComicfury.mjs'; +export { default as SiComma, defaultColor as SiCommaHex } from './icons/SiComma.mjs'; +export { default as SiCommerzbank, defaultColor as SiCommerzbankHex } from './icons/SiCommerzbank.mjs'; +export { default as SiCommitlint, defaultColor as SiCommitlintHex } from './icons/SiCommitlint.mjs'; +export { default as SiCommodore, defaultColor as SiCommodoreHex } from './icons/SiCommodore.mjs'; +export { default as SiCommonlisp, defaultColor as SiCommonlispHex } from './icons/SiCommonlisp.mjs'; +export { default as SiCommonworkflowlanguage, defaultColor as SiCommonworkflowlanguageHex } from './icons/SiCommonworkflowlanguage.mjs'; +export { default as SiCompilerexplorer, defaultColor as SiCompilerexplorerHex } from './icons/SiCompilerexplorer.mjs'; +export { default as SiComposer, defaultColor as SiComposerHex } from './icons/SiComposer.mjs'; +export { default as SiComptia, defaultColor as SiComptiaHex } from './icons/SiComptia.mjs'; +export { default as SiComsol, defaultColor as SiComsolHex } from './icons/SiComsol.mjs'; +export { default as SiConan, defaultColor as SiConanHex } from './icons/SiConan.mjs'; +export { default as SiConcourse, defaultColor as SiConcourseHex } from './icons/SiConcourse.mjs'; +export { default as SiCondaforge, defaultColor as SiCondaforgeHex } from './icons/SiCondaforge.mjs'; +export { default as SiConekta, defaultColor as SiConektaHex } from './icons/SiConekta.mjs'; +export { default as SiConfluence, defaultColor as SiConfluenceHex } from './icons/SiConfluence.mjs'; +export { default as SiConstruct3, defaultColor as SiConstruct3Hex } from './icons/SiConstruct3.mjs'; +export { default as SiConsul, defaultColor as SiConsulHex } from './icons/SiConsul.mjs'; +export { default as SiContabo, defaultColor as SiContaboHex } from './icons/SiContabo.mjs'; +export { default as SiContactlesspayment, defaultColor as SiContactlesspaymentHex } from './icons/SiContactlesspayment.mjs'; +export { default as SiContainerd, defaultColor as SiContainerdHex } from './icons/SiContainerd.mjs'; +export { default as SiContao, defaultColor as SiContaoHex } from './icons/SiContao.mjs'; +export { default as SiContentful, defaultColor as SiContentfulHex } from './icons/SiContentful.mjs'; +export { default as SiContentstack, defaultColor as SiContentstackHex } from './icons/SiContentstack.mjs'; +export { default as SiContinente, defaultColor as SiContinenteHex } from './icons/SiContinente.mjs'; +export { default as SiContributorcovenant, defaultColor as SiContributorcovenantHex } from './icons/SiContributorcovenant.mjs'; +export { default as SiConventionalcommits, defaultColor as SiConventionalcommitsHex } from './icons/SiConventionalcommits.mjs'; +export { default as SiConvertio, defaultColor as SiConvertioHex } from './icons/SiConvertio.mjs'; +export { default as SiConvex, defaultColor as SiConvexHex } from './icons/SiConvex.mjs'; +export { default as SiCookiecutter, defaultColor as SiCookiecutterHex } from './icons/SiCookiecutter.mjs'; +export { default as SiCoolermaster, defaultColor as SiCoolermasterHex } from './icons/SiCoolermaster.mjs'; +export { default as SiCoolify, defaultColor as SiCoolifyHex } from './icons/SiCoolify.mjs'; +export { default as SiCoop, defaultColor as SiCoopHex } from './icons/SiCoop.mjs'; +export { default as SiCopaairlines, defaultColor as SiCopaairlinesHex } from './icons/SiCopaairlines.mjs'; +export { default as SiCoppel, defaultColor as SiCoppelHex } from './icons/SiCoppel.mjs'; +export { default as SiCora, defaultColor as SiCoraHex } from './icons/SiCora.mjs'; +export { default as SiCoreboot, defaultColor as SiCorebootHex } from './icons/SiCoreboot.mjs'; +export { default as SiCoreldraw, defaultColor as SiCoreldrawHex } from './icons/SiCoreldraw.mjs'; +export { default as SiCoronaengine, defaultColor as SiCoronaengineHex } from './icons/SiCoronaengine.mjs'; +export { default as SiCoronarenderer, defaultColor as SiCoronarendererHex } from './icons/SiCoronarenderer.mjs'; +export { default as SiCorsair, defaultColor as SiCorsairHex } from './icons/SiCorsair.mjs'; +export { default as SiCouchbase, defaultColor as SiCouchbaseHex } from './icons/SiCouchbase.mjs'; +export { default as SiCounterstrike, defaultColor as SiCounterstrikeHex } from './icons/SiCounterstrike.mjs'; +export { default as SiCountingworkspro, defaultColor as SiCountingworksproHex } from './icons/SiCountingworkspro.mjs'; +export { default as SiCoursera, defaultColor as SiCourseraHex } from './icons/SiCoursera.mjs'; +export { default as SiCoveralls, defaultColor as SiCoverallsHex } from './icons/SiCoveralls.mjs'; +export { default as SiCoze, defaultColor as SiCozeHex } from './icons/SiCoze.mjs'; +export { default as SiCpanel, defaultColor as SiCpanelHex } from './icons/SiCpanel.mjs'; +export { default as SiCplusplus, defaultColor as SiCplusplusHex } from './icons/SiCplusplus.mjs'; +export { default as SiCplusplusbuilder, defaultColor as SiCplusplusbuilderHex } from './icons/SiCplusplusbuilder.mjs'; +export { default as SiCraftcms, defaultColor as SiCraftcmsHex } from './icons/SiCraftcms.mjs'; +export { default as SiCraftsman, defaultColor as SiCraftsmanHex } from './icons/SiCraftsman.mjs'; +export { default as SiCratedb, defaultColor as SiCratedbHex } from './icons/SiCratedb.mjs'; +export { default as SiCrayon, defaultColor as SiCrayonHex } from './icons/SiCrayon.mjs'; +export { default as SiCreality, defaultColor as SiCrealityHex } from './icons/SiCreality.mjs'; +export { default as SiCreatereactapp, defaultColor as SiCreatereactappHex } from './icons/SiCreatereactapp.mjs'; +export { default as SiCreativecommons, defaultColor as SiCreativecommonsHex } from './icons/SiCreativecommons.mjs'; +export { default as SiCreativetechnology, defaultColor as SiCreativetechnologyHex } from './icons/SiCreativetechnology.mjs'; +export { default as SiCredly, defaultColor as SiCredlyHex } from './icons/SiCredly.mjs'; +export { default as SiCrehana, defaultColor as SiCrehanaHex } from './icons/SiCrehana.mjs'; +export { default as SiCrewai, defaultColor as SiCrewaiHex } from './icons/SiCrewai.mjs'; +export { default as SiCrewunited, defaultColor as SiCrewunitedHex } from './icons/SiCrewunited.mjs'; +export { default as SiCriticalrole, defaultColor as SiCriticalroleHex } from './icons/SiCriticalrole.mjs'; +export { default as SiCrowdin, defaultColor as SiCrowdinHex } from './icons/SiCrowdin.mjs'; +export { default as SiCrowdsource, defaultColor as SiCrowdsourceHex } from './icons/SiCrowdsource.mjs'; +export { default as SiCrunchbase, defaultColor as SiCrunchbaseHex } from './icons/SiCrunchbase.mjs'; +export { default as SiCrunchyroll, defaultColor as SiCrunchyrollHex } from './icons/SiCrunchyroll.mjs'; +export { default as SiCryengine, defaultColor as SiCryengineHex } from './icons/SiCryengine.mjs'; +export { default as SiCryptomator, defaultColor as SiCryptomatorHex } from './icons/SiCryptomator.mjs'; +export { default as SiCryptpad, defaultColor as SiCryptpadHex } from './icons/SiCryptpad.mjs'; +export { default as SiCrystal, defaultColor as SiCrystalHex } from './icons/SiCrystal.mjs'; +export { default as SiCsdn, defaultColor as SiCsdnHex } from './icons/SiCsdn.mjs'; +export { default as SiCss, defaultColor as SiCssHex } from './icons/SiCss.mjs'; +export { default as SiCssdesignawards, defaultColor as SiCssdesignawardsHex } from './icons/SiCssdesignawards.mjs'; +export { default as SiCssmodules, defaultColor as SiCssmodulesHex } from './icons/SiCssmodules.mjs'; +export { default as SiCsswizardry, defaultColor as SiCsswizardryHex } from './icons/SiCsswizardry.mjs'; +export { default as SiCts, defaultColor as SiCtsHex } from './icons/SiCts.mjs'; +export { default as SiCucumber, defaultColor as SiCucumberHex } from './icons/SiCucumber.mjs'; +export { default as SiCultura, defaultColor as SiCulturaHex } from './icons/SiCultura.mjs'; +export { default as SiCurl, defaultColor as SiCurlHex } from './icons/SiCurl.mjs'; +export { default as SiCurseforge, defaultColor as SiCurseforgeHex } from './icons/SiCurseforge.mjs'; +export { default as SiCursor, defaultColor as SiCursorHex } from './icons/SiCursor.mjs'; +export { default as SiCustomink, defaultColor as SiCustominkHex } from './icons/SiCustomink.mjs'; +export { default as SiCyberdefenders, defaultColor as SiCyberdefendersHex } from './icons/SiCyberdefenders.mjs'; +export { default as SiCycling74, defaultColor as SiCycling74Hex } from './icons/SiCycling74.mjs'; +export { default as SiCypress, defaultColor as SiCypressHex } from './icons/SiCypress.mjs'; +export { default as SiCytoscapedotjs, defaultColor as SiCytoscapedotjsHex } from './icons/SiCytoscapedotjs.mjs'; +export { default as SiD, defaultColor as SiDHex } from './icons/SiD.mjs'; +export { default as SiD3, defaultColor as SiD3Hex } from './icons/SiD3.mjs'; +export { default as SiDacia, defaultColor as SiDaciaHex } from './icons/SiDacia.mjs'; +export { default as SiDaf, defaultColor as SiDafHex } from './icons/SiDaf.mjs'; +export { default as SiDailydotdev, defaultColor as SiDailydotdevHex } from './icons/SiDailydotdev.mjs'; +export { default as SiDailymotion, defaultColor as SiDailymotionHex } from './icons/SiDailymotion.mjs'; +export { default as SiDaisyui, defaultColor as SiDaisyuiHex } from './icons/SiDaisyui.mjs'; +export { default as SiDapr, defaultColor as SiDaprHex } from './icons/SiDapr.mjs'; +export { default as SiDarkreader, defaultColor as SiDarkreaderHex } from './icons/SiDarkreader.mjs'; +export { default as SiDart, defaultColor as SiDartHex } from './icons/SiDart.mjs'; +export { default as SiDarty, defaultColor as SiDartyHex } from './icons/SiDarty.mjs'; +export { default as SiDaserste, defaultColor as SiDasersteHex } from './icons/SiDaserste.mjs'; +export { default as SiDash, defaultColor as SiDashHex } from './icons/SiDash.mjs'; +export { default as SiDash0, defaultColor as SiDash0Hex } from './icons/SiDash0.mjs'; +export { default as SiDashlane, defaultColor as SiDashlaneHex } from './icons/SiDashlane.mjs'; +export { default as SiDask, defaultColor as SiDaskHex } from './icons/SiDask.mjs'; +export { default as SiDassaultsystemes, defaultColor as SiDassaultsystemesHex } from './icons/SiDassaultsystemes.mjs'; +export { default as SiDatabricks, defaultColor as SiDatabricksHex } from './icons/SiDatabricks.mjs'; +export { default as SiDatacamp, defaultColor as SiDatacampHex } from './icons/SiDatacamp.mjs'; +export { default as SiDatadog, defaultColor as SiDatadogHex } from './icons/SiDatadog.mjs'; +export { default as SiDatadotai, defaultColor as SiDatadotaiHex } from './icons/SiDatadotai.mjs'; +export { default as SiDatagrip, defaultColor as SiDatagripHex } from './icons/SiDatagrip.mjs'; +export { default as SiDataiku, defaultColor as SiDataikuHex } from './icons/SiDataiku.mjs'; +export { default as SiDatastax, defaultColor as SiDatastaxHex } from './icons/SiDatastax.mjs'; +export { default as SiDatefns, defaultColor as SiDatefnsHex } from './icons/SiDatefns.mjs'; +export { default as SiDatev, defaultColor as SiDatevHex } from './icons/SiDatev.mjs'; +export { default as SiDatocms, defaultColor as SiDatocmsHex } from './icons/SiDatocms.mjs'; +export { default as SiDatto, defaultColor as SiDattoHex } from './icons/SiDatto.mjs'; +export { default as SiDavinciresolve, defaultColor as SiDavinciresolveHex } from './icons/SiDavinciresolve.mjs'; +export { default as SiDazhongdianping, defaultColor as SiDazhongdianpingHex } from './icons/SiDazhongdianping.mjs'; +export { default as SiDazn, defaultColor as SiDaznHex } from './icons/SiDazn.mjs'; +export { default as SiDbeaver, defaultColor as SiDbeaverHex } from './icons/SiDbeaver.mjs'; +export { default as SiDblp, defaultColor as SiDblpHex } from './icons/SiDblp.mjs'; +export { default as SiDcentertainment, defaultColor as SiDcentertainmentHex } from './icons/SiDcentertainment.mjs'; +export { default as SiDebian, defaultColor as SiDebianHex } from './icons/SiDebian.mjs'; +export { default as SiDebridlink, defaultColor as SiDebridlinkHex } from './icons/SiDebridlink.mjs'; +export { default as SiDecapcms, defaultColor as SiDecapcmsHex } from './icons/SiDecapcms.mjs'; +export { default as SiDecentraland, defaultColor as SiDecentralandHex } from './icons/SiDecentraland.mjs'; +export { default as SiDedge, defaultColor as SiDedgeHex } from './icons/SiDedge.mjs'; +export { default as SiDeepcool, defaultColor as SiDeepcoolHex } from './icons/SiDeepcool.mjs'; +export { default as SiDeepgram, defaultColor as SiDeepgramHex } from './icons/SiDeepgram.mjs'; +export { default as SiDeepin, defaultColor as SiDeepinHex } from './icons/SiDeepin.mjs'; +export { default as SiDeepl, defaultColor as SiDeeplHex } from './icons/SiDeepl.mjs'; +export { default as SiDeepmind, defaultColor as SiDeepmindHex } from './icons/SiDeepmind.mjs'; +export { default as SiDeepnote, defaultColor as SiDeepnoteHex } from './icons/SiDeepnote.mjs'; +export { default as SiDeezer, defaultColor as SiDeezerHex } from './icons/SiDeezer.mjs'; +export { default as SiDeliveroo, defaultColor as SiDeliverooHex } from './icons/SiDeliveroo.mjs'; +export { default as SiDell, defaultColor as SiDellHex } from './icons/SiDell.mjs'; +export { default as SiDelonghi, defaultColor as SiDelonghiHex } from './icons/SiDelonghi.mjs'; +export { default as SiDelphi, defaultColor as SiDelphiHex } from './icons/SiDelphi.mjs'; +export { default as SiDelta, defaultColor as SiDeltaHex } from './icons/SiDelta.mjs'; +export { default as SiDeluge, defaultColor as SiDelugeHex } from './icons/SiDeluge.mjs'; +export { default as SiDeno, defaultColor as SiDenoHex } from './icons/SiDeno.mjs'; +export { default as SiDenodeploy, defaultColor as SiDenodeployHex } from './icons/SiDenodeploy.mjs'; +export { default as SiDenon, defaultColor as SiDenonHex } from './icons/SiDenon.mjs'; +export { default as SiDependabot, defaultColor as SiDependabotHex } from './icons/SiDependabot.mjs'; +export { default as SiDependencycheck, defaultColor as SiDependencycheckHex } from './icons/SiDependencycheck.mjs'; +export { default as SiDepositphotos, defaultColor as SiDepositphotosHex } from './icons/SiDepositphotos.mjs'; +export { default as SiDerspiegel, defaultColor as SiDerspiegelHex } from './icons/SiDerspiegel.mjs'; +export { default as SiDeutschebahn, defaultColor as SiDeutschebahnHex } from './icons/SiDeutschebahn.mjs'; +export { default as SiDeutschebank, defaultColor as SiDeutschebankHex } from './icons/SiDeutschebank.mjs'; +export { default as SiDeutschepost, defaultColor as SiDeutschepostHex } from './icons/SiDeutschepost.mjs'; +export { default as SiDeutschetelekom, defaultColor as SiDeutschetelekomHex } from './icons/SiDeutschetelekom.mjs'; +export { default as SiDeutschewelle, defaultColor as SiDeutschewelleHex } from './icons/SiDeutschewelle.mjs'; +export { default as SiDevbox, defaultColor as SiDevboxHex } from './icons/SiDevbox.mjs'; +export { default as SiDevdotto, defaultColor as SiDevdottoHex } from './icons/SiDevdotto.mjs'; +export { default as SiDevelopmentcontainers, defaultColor as SiDevelopmentcontainersHex } from './icons/SiDevelopmentcontainers.mjs'; +export { default as SiDevexpress, defaultColor as SiDevexpressHex } from './icons/SiDevexpress.mjs'; +export { default as SiDeviantart, defaultColor as SiDeviantartHex } from './icons/SiDeviantart.mjs'; +export { default as SiDevpost, defaultColor as SiDevpostHex } from './icons/SiDevpost.mjs'; +export { default as SiDevrant, defaultColor as SiDevrantHex } from './icons/SiDevrant.mjs'; +export { default as SiDevuan, defaultColor as SiDevuanHex } from './icons/SiDevuan.mjs'; +export { default as SiDgraph, defaultColor as SiDgraphHex } from './icons/SiDgraph.mjs'; +export { default as SiDhl, defaultColor as SiDhlHex } from './icons/SiDhl.mjs'; +export { default as SiDiagramsdotnet, defaultColor as SiDiagramsdotnetHex } from './icons/SiDiagramsdotnet.mjs'; +export { default as SiDialogflow, defaultColor as SiDialogflowHex } from './icons/SiDialogflow.mjs'; +export { default as SiDiaspora, defaultColor as SiDiasporaHex } from './icons/SiDiaspora.mjs'; +export { default as SiDictionarydotcom, defaultColor as SiDictionarydotcomHex } from './icons/SiDictionarydotcom.mjs'; +export { default as SiDigg, defaultColor as SiDiggHex } from './icons/SiDigg.mjs'; +export { default as SiDigikeyelectronics, defaultColor as SiDigikeyelectronicsHex } from './icons/SiDigikeyelectronics.mjs'; +export { default as SiDigitalocean, defaultColor as SiDigitaloceanHex } from './icons/SiDigitalocean.mjs'; +export { default as SiDinersclub, defaultColor as SiDinersclubHex } from './icons/SiDinersclub.mjs'; +export { default as SiDior, defaultColor as SiDiorHex } from './icons/SiDior.mjs'; +export { default as SiDirectus, defaultColor as SiDirectusHex } from './icons/SiDirectus.mjs'; +export { default as SiDiscogs, defaultColor as SiDiscogsHex } from './icons/SiDiscogs.mjs'; +export { default as SiDiscord, defaultColor as SiDiscordHex } from './icons/SiDiscord.mjs'; +export { default as SiDiscorddotjs, defaultColor as SiDiscorddotjsHex } from './icons/SiDiscorddotjs.mjs'; +export { default as SiDiscourse, defaultColor as SiDiscourseHex } from './icons/SiDiscourse.mjs'; +export { default as SiDiscover, defaultColor as SiDiscoverHex } from './icons/SiDiscover.mjs'; +export { default as SiDisqus, defaultColor as SiDisqusHex } from './icons/SiDisqus.mjs'; +export { default as SiDisroot, defaultColor as SiDisrootHex } from './icons/SiDisroot.mjs'; +export { default as SiDistrobox, defaultColor as SiDistroboxHex } from './icons/SiDistrobox.mjs'; +export { default as SiDistrokid, defaultColor as SiDistrokidHex } from './icons/SiDistrokid.mjs'; +export { default as SiDjango, defaultColor as SiDjangoHex } from './icons/SiDjango.mjs'; +export { default as SiDji, defaultColor as SiDjiHex } from './icons/SiDji.mjs'; +export { default as SiDlib, defaultColor as SiDlibHex } from './icons/SiDlib.mjs'; +export { default as SiDlna, defaultColor as SiDlnaHex } from './icons/SiDlna.mjs'; +export { default as SiDm, defaultColor as SiDmHex } from './icons/SiDm.mjs'; +export { default as SiDmm, defaultColor as SiDmmHex } from './icons/SiDmm.mjs'; +export { default as SiDocker, defaultColor as SiDockerHex } from './icons/SiDocker.mjs'; +export { default as SiDocsdotrs, defaultColor as SiDocsdotrsHex } from './icons/SiDocsdotrs.mjs'; +export { default as SiDocsify, defaultColor as SiDocsifyHex } from './icons/SiDocsify.mjs'; +export { default as SiDoctrine, defaultColor as SiDoctrineHex } from './icons/SiDoctrine.mjs'; +export { default as SiDocusaurus, defaultColor as SiDocusaurusHex } from './icons/SiDocusaurus.mjs'; +export { default as SiDodopayments, defaultColor as SiDodopaymentsHex } from './icons/SiDodopayments.mjs'; +export { default as SiDogecoin, defaultColor as SiDogecoinHex } from './icons/SiDogecoin.mjs'; +export { default as SiDoi, defaultColor as SiDoiHex } from './icons/SiDoi.mjs'; +export { default as SiDolby, defaultColor as SiDolbyHex } from './icons/SiDolby.mjs'; +export { default as SiDolibarr, defaultColor as SiDolibarrHex } from './icons/SiDolibarr.mjs'; +export { default as SiDolphin, defaultColor as SiDolphinHex } from './icons/SiDolphin.mjs'; +export { default as SiDoordash, defaultColor as SiDoordashHex } from './icons/SiDoordash.mjs'; +export { default as SiDota2, defaultColor as SiDota2Hex } from './icons/SiDota2.mjs'; +export { default as SiDotenv, defaultColor as SiDotenvHex } from './icons/SiDotenv.mjs'; +export { default as SiDotnet, defaultColor as SiDotnetHex } from './icons/SiDotnet.mjs'; +export { default as SiDouban, defaultColor as SiDoubanHex } from './icons/SiDouban.mjs'; +export { default as SiDoubanread, defaultColor as SiDoubanreadHex } from './icons/SiDoubanread.mjs'; +export { default as SiDovecot, defaultColor as SiDovecotHex } from './icons/SiDovecot.mjs'; +export { default as SiDovetail, defaultColor as SiDovetailHex } from './icons/SiDovetail.mjs'; +export { default as SiDowndetector, defaultColor as SiDowndetectorHex } from './icons/SiDowndetector.mjs'; +export { default as SiDoxygen, defaultColor as SiDoxygenHex } from './icons/SiDoxygen.mjs'; +export { default as SiDpd, defaultColor as SiDpdHex } from './icons/SiDpd.mjs'; +export { default as SiDragonframe, defaultColor as SiDragonframeHex } from './icons/SiDragonframe.mjs'; +export { default as SiDraugiemdotlv, defaultColor as SiDraugiemdotlvHex } from './icons/SiDraugiemdotlv.mjs'; +export { default as SiDreamstime, defaultColor as SiDreamstimeHex } from './icons/SiDreamstime.mjs'; +export { default as SiDribbble, defaultColor as SiDribbbleHex } from './icons/SiDribbble.mjs'; +export { default as SiDrizzle, defaultColor as SiDrizzleHex } from './icons/SiDrizzle.mjs'; +export { default as SiDrone, defaultColor as SiDroneHex } from './icons/SiDrone.mjs'; +export { default as SiDrooble, defaultColor as SiDroobleHex } from './icons/SiDrooble.mjs'; +export { default as SiDropbox, defaultColor as SiDropboxHex } from './icons/SiDropbox.mjs'; +export { default as SiDrupal, defaultColor as SiDrupalHex } from './icons/SiDrupal.mjs'; +export { default as SiDsautomobiles, defaultColor as SiDsautomobilesHex } from './icons/SiDsautomobiles.mjs'; +export { default as SiDts, defaultColor as SiDtsHex } from './icons/SiDts.mjs'; +export { default as SiDtube, defaultColor as SiDtubeHex } from './icons/SiDtube.mjs'; +export { default as SiDucati, defaultColor as SiDucatiHex } from './icons/SiDucati.mjs'; +export { default as SiDuckdb, defaultColor as SiDuckdbHex } from './icons/SiDuckdb.mjs'; +export { default as SiDuckduckgo, defaultColor as SiDuckduckgoHex } from './icons/SiDuckduckgo.mjs'; +export { default as SiDungeonsanddragons, defaultColor as SiDungeonsanddragonsHex } from './icons/SiDungeonsanddragons.mjs'; +export { default as SiDunked, defaultColor as SiDunkedHex } from './icons/SiDunked.mjs'; +export { default as SiDunzo, defaultColor as SiDunzoHex } from './icons/SiDunzo.mjs'; +export { default as SiDuolingo, defaultColor as SiDuolingoHex } from './icons/SiDuolingo.mjs'; +export { default as SiDuplicati, defaultColor as SiDuplicatiHex } from './icons/SiDuplicati.mjs'; +export { default as SiDvc, defaultColor as SiDvcHex } from './icons/SiDvc.mjs'; +export { default as SiDwavesystems, defaultColor as SiDwavesystemsHex } from './icons/SiDwavesystems.mjs'; +export { default as SiDwm, defaultColor as SiDwmHex } from './icons/SiDwm.mjs'; +export { default as SiDynatrace, defaultColor as SiDynatraceHex } from './icons/SiDynatrace.mjs'; +export { default as SiE, defaultColor as SiEHex } from './icons/SiE.mjs'; +export { default as SiE3, defaultColor as SiE3Hex } from './icons/SiE3.mjs'; +export { default as SiEa, defaultColor as SiEaHex } from './icons/SiEa.mjs'; +export { default as SiEac, defaultColor as SiEacHex } from './icons/SiEac.mjs'; +export { default as SiEagle, defaultColor as SiEagleHex } from './icons/SiEagle.mjs'; +export { default as SiEasyeda, defaultColor as SiEasyedaHex } from './icons/SiEasyeda.mjs'; +export { default as SiEasyjet, defaultColor as SiEasyjetHex } from './icons/SiEasyjet.mjs'; +export { default as SiEbay, defaultColor as SiEbayHex } from './icons/SiEbay.mjs'; +export { default as SiEbox, defaultColor as SiEboxHex } from './icons/SiEbox.mjs'; +export { default as SiEclipseadoptium, defaultColor as SiEclipseadoptiumHex } from './icons/SiEclipseadoptium.mjs'; +export { default as SiEclipseche, defaultColor as SiEclipsecheHex } from './icons/SiEclipseche.mjs'; +export { default as SiEclipseide, defaultColor as SiEclipseideHex } from './icons/SiEclipseide.mjs'; +export { default as SiEclipsejetty, defaultColor as SiEclipsejettyHex } from './icons/SiEclipsejetty.mjs'; +export { default as SiEclipsemosquitto, defaultColor as SiEclipsemosquittoHex } from './icons/SiEclipsemosquitto.mjs'; +export { default as SiEclipsevertdotx, defaultColor as SiEclipsevertdotxHex } from './icons/SiEclipsevertdotx.mjs'; +export { default as SiEcosia, defaultColor as SiEcosiaHex } from './icons/SiEcosia.mjs'; +export { default as SiEcovacs, defaultColor as SiEcovacsHex } from './icons/SiEcovacs.mjs'; +export { default as SiEdeka, defaultColor as SiEdekaHex } from './icons/SiEdeka.mjs'; +export { default as SiEdgeimpulse, defaultColor as SiEdgeimpulseHex } from './icons/SiEdgeimpulse.mjs'; +export { default as SiEditorconfig, defaultColor as SiEditorconfigHex } from './icons/SiEditorconfig.mjs'; +export { default as SiEdotleclerc, defaultColor as SiEdotleclercHex } from './icons/SiEdotleclerc.mjs'; +export { default as SiEducative, defaultColor as SiEducativeHex } from './icons/SiEducative.mjs'; +export { default as SiEdx, defaultColor as SiEdxHex } from './icons/SiEdx.mjs'; +export { default as SiEffect, defaultColor as SiEffectHex } from './icons/SiEffect.mjs'; +export { default as SiEgghead, defaultColor as SiEggheadHex } from './icons/SiEgghead.mjs'; +export { default as SiEgnyte, defaultColor as SiEgnyteHex } from './icons/SiEgnyte.mjs'; +export { default as SiEight, defaultColor as SiEightHex } from './icons/SiEight.mjs'; +export { default as SiEightsleep, defaultColor as SiEightsleepHex } from './icons/SiEightsleep.mjs'; +export { default as SiEjs, defaultColor as SiEjsHex } from './icons/SiEjs.mjs'; +export { default as SiElastic, defaultColor as SiElasticHex } from './icons/SiElastic.mjs'; +export { default as SiElasticcloud, defaultColor as SiElasticcloudHex } from './icons/SiElasticcloud.mjs'; +export { default as SiElasticsearch, defaultColor as SiElasticsearchHex } from './icons/SiElasticsearch.mjs'; +export { default as SiElasticstack, defaultColor as SiElasticstackHex } from './icons/SiElasticstack.mjs'; +export { default as SiElavon, defaultColor as SiElavonHex } from './icons/SiElavon.mjs'; +export { default as SiElectron, defaultColor as SiElectronHex } from './icons/SiElectron.mjs'; +export { default as SiElectronbuilder, defaultColor as SiElectronbuilderHex } from './icons/SiElectronbuilder.mjs'; +export { default as SiElectronfiddle, defaultColor as SiElectronfiddleHex } from './icons/SiElectronfiddle.mjs'; +export { default as SiElegoo, defaultColor as SiElegooHex } from './icons/SiElegoo.mjs'; +export { default as SiElement, defaultColor as SiElementHex } from './icons/SiElement.mjs'; +export { default as SiElementary, defaultColor as SiElementaryHex } from './icons/SiElementary.mjs'; +export { default as SiElementor, defaultColor as SiElementorHex } from './icons/SiElementor.mjs'; +export { default as SiElevenlabs, defaultColor as SiElevenlabsHex } from './icons/SiElevenlabs.mjs'; +export { default as SiEleventy, defaultColor as SiEleventyHex } from './icons/SiEleventy.mjs'; +export { default as SiElgato, defaultColor as SiElgatoHex } from './icons/SiElgato.mjs'; +export { default as SiElixir, defaultColor as SiElixirHex } from './icons/SiElixir.mjs'; +export { default as SiElk, defaultColor as SiElkHex } from './icons/SiElk.mjs'; +export { default as SiElm, defaultColor as SiElmHex } from './icons/SiElm.mjs'; +export { default as SiElsevier, defaultColor as SiElsevierHex } from './icons/SiElsevier.mjs'; +export { default as SiEmbarcadero, defaultColor as SiEmbarcaderoHex } from './icons/SiEmbarcadero.mjs'; +export { default as SiEmbark, defaultColor as SiEmbarkHex } from './icons/SiEmbark.mjs'; +export { default as SiEmberdotjs, defaultColor as SiEmberdotjsHex } from './icons/SiEmberdotjs.mjs'; +export { default as SiEmby, defaultColor as SiEmbyHex } from './icons/SiEmby.mjs'; +export { default as SiEmirates, defaultColor as SiEmiratesHex } from './icons/SiEmirates.mjs'; +export { default as SiEmlakjet, defaultColor as SiEmlakjetHex } from './icons/SiEmlakjet.mjs'; +export { default as SiEndeavouros, defaultColor as SiEndeavourosHex } from './icons/SiEndeavouros.mjs'; +export { default as SiEnpass, defaultColor as SiEnpassHex } from './icons/SiEnpass.mjs'; +export { default as SiEns, defaultColor as SiEnsHex } from './icons/SiEns.mjs'; +export { default as SiEnte, defaultColor as SiEnteHex } from './icons/SiEnte.mjs'; +export { default as SiEnterprisedb, defaultColor as SiEnterprisedbHex } from './icons/SiEnterprisedb.mjs'; +export { default as SiEnvato, defaultColor as SiEnvatoHex } from './icons/SiEnvato.mjs'; +export { default as SiEnvoyproxy, defaultColor as SiEnvoyproxyHex } from './icons/SiEnvoyproxy.mjs'; +export { default as SiEpel, defaultColor as SiEpelHex } from './icons/SiEpel.mjs'; +export { default as SiEpicgames, defaultColor as SiEpicgamesHex } from './icons/SiEpicgames.mjs'; +export { default as SiEpson, defaultColor as SiEpsonHex } from './icons/SiEpson.mjs'; +export { default as SiEquinixmetal, defaultColor as SiEquinixmetalHex } from './icons/SiEquinixmetal.mjs'; +export { default as SiEraser, defaultColor as SiEraserHex } from './icons/SiEraser.mjs'; +export { default as SiEricsson, defaultColor as SiEricssonHex } from './icons/SiEricsson.mjs'; +export { default as SiErlang, defaultColor as SiErlangHex } from './icons/SiErlang.mjs'; +export { default as SiErpnext, defaultColor as SiErpnextHex } from './icons/SiErpnext.mjs'; +export { default as SiEsbuild, defaultColor as SiEsbuildHex } from './icons/SiEsbuild.mjs'; +export { default as SiEsea, defaultColor as SiEseaHex } from './icons/SiEsea.mjs'; +export { default as SiEslgaming, defaultColor as SiEslgamingHex } from './icons/SiEslgaming.mjs'; +export { default as SiEslint, defaultColor as SiEslintHex } from './icons/SiEslint.mjs'; +export { default as SiEsotericsoftware, defaultColor as SiEsotericsoftwareHex } from './icons/SiEsotericsoftware.mjs'; +export { default as SiEsphome, defaultColor as SiEsphomeHex } from './icons/SiEsphome.mjs'; +export { default as SiEspressif, defaultColor as SiEspressifHex } from './icons/SiEspressif.mjs'; +export { default as SiEsri, defaultColor as SiEsriHex } from './icons/SiEsri.mjs'; +export { default as SiEtcd, defaultColor as SiEtcdHex } from './icons/SiEtcd.mjs'; +export { default as SiEthereum, defaultColor as SiEthereumHex } from './icons/SiEthereum.mjs'; +export { default as SiEthers, defaultColor as SiEthersHex } from './icons/SiEthers.mjs'; +export { default as SiEthiopianairlines, defaultColor as SiEthiopianairlinesHex } from './icons/SiEthiopianairlines.mjs'; +export { default as SiEtihadairways, defaultColor as SiEtihadairwaysHex } from './icons/SiEtihadairways.mjs'; +export { default as SiEtsy, defaultColor as SiEtsyHex } from './icons/SiEtsy.mjs'; +export { default as SiEuropeanunion, defaultColor as SiEuropeanunionHex } from './icons/SiEuropeanunion.mjs'; +export { default as SiEventstore, defaultColor as SiEventstoreHex } from './icons/SiEventstore.mjs'; +export { default as SiEvernote, defaultColor as SiEvernoteHex } from './icons/SiEvernote.mjs'; +export { default as SiEverydotorg, defaultColor as SiEverydotorgHex } from './icons/SiEverydotorg.mjs'; +export { default as SiExcalidraw, defaultColor as SiExcalidrawHex } from './icons/SiExcalidraw.mjs'; +export { default as SiExercism, defaultColor as SiExercismHex } from './icons/SiExercism.mjs'; +export { default as SiExordo, defaultColor as SiExordoHex } from './icons/SiExordo.mjs'; +export { default as SiExoscale, defaultColor as SiExoscaleHex } from './icons/SiExoscale.mjs'; +export { default as SiExpedia, defaultColor as SiExpediaHex } from './icons/SiExpedia.mjs'; +export { default as SiExpensify, defaultColor as SiExpensifyHex } from './icons/SiExpensify.mjs'; +export { default as SiExpertsexchange, defaultColor as SiExpertsexchangeHex } from './icons/SiExpertsexchange.mjs'; +export { default as SiExpo, defaultColor as SiExpoHex } from './icons/SiExpo.mjs'; +export { default as SiExpress, defaultColor as SiExpressHex } from './icons/SiExpress.mjs'; +export { default as SiExpressdotcom, defaultColor as SiExpressdotcomHex } from './icons/SiExpressdotcom.mjs'; +export { default as SiExpressvpn, defaultColor as SiExpressvpnHex } from './icons/SiExpressvpn.mjs'; +export { default as SiEyeem, defaultColor as SiEyeemHex } from './icons/SiEyeem.mjs'; +export { default as SiF1, defaultColor as SiF1Hex } from './icons/SiF1.mjs'; +export { default as SiF5, defaultColor as SiF5Hex } from './icons/SiF5.mjs'; +export { default as SiFacebook, defaultColor as SiFacebookHex } from './icons/SiFacebook.mjs'; +export { default as SiFacebookgaming, defaultColor as SiFacebookgamingHex } from './icons/SiFacebookgaming.mjs'; +export { default as SiFacebooklive, defaultColor as SiFacebookliveHex } from './icons/SiFacebooklive.mjs'; +export { default as SiFaceit, defaultColor as SiFaceitHex } from './icons/SiFaceit.mjs'; +export { default as SiFacepunch, defaultColor as SiFacepunchHex } from './icons/SiFacepunch.mjs'; +export { default as SiFairphone, defaultColor as SiFairphoneHex } from './icons/SiFairphone.mjs'; +export { default as SiFalco, defaultColor as SiFalcoHex } from './icons/SiFalco.mjs'; +export { default as SiFalcon, defaultColor as SiFalconHex } from './icons/SiFalcon.mjs'; +export { default as SiFampay, defaultColor as SiFampayHex } from './icons/SiFampay.mjs'; +export { default as SiFandango, defaultColor as SiFandangoHex } from './icons/SiFandango.mjs'; +export { default as SiFandom, defaultColor as SiFandomHex } from './icons/SiFandom.mjs'; +export { default as SiFanfou, defaultColor as SiFanfouHex } from './icons/SiFanfou.mjs'; +export { default as SiFantom, defaultColor as SiFantomHex } from './icons/SiFantom.mjs'; +export { default as SiFarcaster, defaultColor as SiFarcasterHex } from './icons/SiFarcaster.mjs'; +export { default as SiFareharbor, defaultColor as SiFareharborHex } from './icons/SiFareharbor.mjs'; +export { default as SiFarfetch, defaultColor as SiFarfetchHex } from './icons/SiFarfetch.mjs'; +export { default as SiFastapi, defaultColor as SiFastapiHex } from './icons/SiFastapi.mjs'; +export { default as SiFastify, defaultColor as SiFastifyHex } from './icons/SiFastify.mjs'; +export { default as SiFastlane, defaultColor as SiFastlaneHex } from './icons/SiFastlane.mjs'; +export { default as SiFastly, defaultColor as SiFastlyHex } from './icons/SiFastly.mjs'; +export { default as SiFathom, defaultColor as SiFathomHex } from './icons/SiFathom.mjs'; +export { default as SiFauna, defaultColor as SiFaunaHex } from './icons/SiFauna.mjs'; +export { default as SiFavro, defaultColor as SiFavroHex } from './icons/SiFavro.mjs'; +export { default as SiFcc, defaultColor as SiFccHex } from './icons/SiFcc.mjs'; +export { default as SiFdroid, defaultColor as SiFdroidHex } from './icons/SiFdroid.mjs'; +export { default as SiFedex, defaultColor as SiFedexHex } from './icons/SiFedex.mjs'; +export { default as SiFedora, defaultColor as SiFedoraHex } from './icons/SiFedora.mjs'; +export { default as SiFeedly, defaultColor as SiFeedlyHex } from './icons/SiFeedly.mjs'; +export { default as SiFerrari, defaultColor as SiFerrariHex } from './icons/SiFerrari.mjs'; +export { default as SiFerrarinv, defaultColor as SiFerrarinvHex } from './icons/SiFerrarinv.mjs'; +export { default as SiFerretdb, defaultColor as SiFerretdbHex } from './icons/SiFerretdb.mjs'; +export { default as SiFfmpeg, defaultColor as SiFfmpegHex } from './icons/SiFfmpeg.mjs'; +export { default as SiFi, defaultColor as SiFiHex } from './icons/SiFi.mjs'; +export { default as SiFiat, defaultColor as SiFiatHex } from './icons/SiFiat.mjs'; +export { default as SiFidoalliance, defaultColor as SiFidoallianceHex } from './icons/SiFidoalliance.mjs'; +export { default as SiFifa, defaultColor as SiFifaHex } from './icons/SiFifa.mjs'; +export { default as SiFig, defaultColor as SiFigHex } from './icons/SiFig.mjs'; +export { default as SiFigma, defaultColor as SiFigmaHex } from './icons/SiFigma.mjs'; +export { default as SiFigshare, defaultColor as SiFigshareHex } from './icons/SiFigshare.mjs'; +export { default as SiFila, defaultColor as SiFilaHex } from './icons/SiFila.mjs'; +export { default as SiFilament, defaultColor as SiFilamentHex } from './icons/SiFilament.mjs'; +export { default as SiFiledotio, defaultColor as SiFiledotioHex } from './icons/SiFiledotio.mjs'; +export { default as SiFilen, defaultColor as SiFilenHex } from './icons/SiFilen.mjs'; +export { default as SiFiles, defaultColor as SiFilesHex } from './icons/SiFiles.mjs'; +export { default as SiFilezilla, defaultColor as SiFilezillaHex } from './icons/SiFilezilla.mjs'; +export { default as SiFillout, defaultColor as SiFilloutHex } from './icons/SiFillout.mjs'; +export { default as SiFineco, defaultColor as SiFinecoHex } from './icons/SiFineco.mjs'; +export { default as SiFing, defaultColor as SiFingHex } from './icons/SiFing.mjs'; +export { default as SiFirebase, defaultColor as SiFirebaseHex } from './icons/SiFirebase.mjs'; +export { default as SiFirefish, defaultColor as SiFirefishHex } from './icons/SiFirefish.mjs'; +export { default as SiFireflyiii, defaultColor as SiFireflyiiiHex } from './icons/SiFireflyiii.mjs'; +export { default as SiFirefox, defaultColor as SiFirefoxHex } from './icons/SiFirefox.mjs'; +export { default as SiFirefoxbrowser, defaultColor as SiFirefoxbrowserHex } from './icons/SiFirefoxbrowser.mjs'; +export { default as SiFireship, defaultColor as SiFireshipHex } from './icons/SiFireship.mjs'; +export { default as SiFirewalla, defaultColor as SiFirewallaHex } from './icons/SiFirewalla.mjs'; +export { default as SiFirst, defaultColor as SiFirstHex } from './icons/SiFirst.mjs'; +export { default as SiFishaudio, defaultColor as SiFishaudioHex } from './icons/SiFishaudio.mjs'; +export { default as SiFishshell, defaultColor as SiFishshellHex } from './icons/SiFishshell.mjs'; +export { default as SiFitbit, defaultColor as SiFitbitHex } from './icons/SiFitbit.mjs'; +export { default as SiFivem, defaultColor as SiFivemHex } from './icons/SiFivem.mjs'; +export { default as SiFiverr, defaultColor as SiFiverrHex } from './icons/SiFiverr.mjs'; +export { default as SiFizz, defaultColor as SiFizzHex } from './icons/SiFizz.mjs'; +export { default as SiFlashforge, defaultColor as SiFlashforgeHex } from './icons/SiFlashforge.mjs'; +export { default as SiFlask, defaultColor as SiFlaskHex } from './icons/SiFlask.mjs'; +export { default as SiFlat, defaultColor as SiFlatHex } from './icons/SiFlat.mjs'; +export { default as SiFlathub, defaultColor as SiFlathubHex } from './icons/SiFlathub.mjs'; +export { default as SiFlatpak, defaultColor as SiFlatpakHex } from './icons/SiFlatpak.mjs'; +export { default as SiFlickr, defaultColor as SiFlickrHex } from './icons/SiFlickr.mjs'; +export { default as SiFlightaware, defaultColor as SiFlightawareHex } from './icons/SiFlightaware.mjs'; +export { default as SiFlipboard, defaultColor as SiFlipboardHex } from './icons/SiFlipboard.mjs'; +export { default as SiFloatplane, defaultColor as SiFloatplaneHex } from './icons/SiFloatplane.mjs'; +export { default as SiFlood, defaultColor as SiFloodHex } from './icons/SiFlood.mjs'; +export { default as SiFloorp, defaultColor as SiFloorpHex } from './icons/SiFloorp.mjs'; +export { default as SiFlower, defaultColor as SiFlowerHex } from './icons/SiFlower.mjs'; +export { default as SiFluentbit, defaultColor as SiFluentbitHex } from './icons/SiFluentbit.mjs'; +export { default as SiFluentd, defaultColor as SiFluentdHex } from './icons/SiFluentd.mjs'; +export { default as SiFluke, defaultColor as SiFlukeHex } from './icons/SiFluke.mjs'; +export { default as SiFlutter, defaultColor as SiFlutterHex } from './icons/SiFlutter.mjs'; +export { default as SiFlux, defaultColor as SiFluxHex } from './icons/SiFlux.mjs'; +export { default as SiFlydotio, defaultColor as SiFlydotioHex } from './icons/SiFlydotio.mjs'; +export { default as SiFlyway, defaultColor as SiFlywayHex } from './icons/SiFlyway.mjs'; +export { default as SiFmod, defaultColor as SiFmodHex } from './icons/SiFmod.mjs'; +export { default as SiFnac, defaultColor as SiFnacHex } from './icons/SiFnac.mjs'; +export { default as SiFolium, defaultColor as SiFoliumHex } from './icons/SiFolium.mjs'; +export { default as SiFolo, defaultColor as SiFoloHex } from './icons/SiFolo.mjs'; +export { default as SiFonoma, defaultColor as SiFonomaHex } from './icons/SiFonoma.mjs'; +export { default as SiFontawesome, defaultColor as SiFontawesomeHex } from './icons/SiFontawesome.mjs'; +export { default as SiFontbase, defaultColor as SiFontbaseHex } from './icons/SiFontbase.mjs'; +export { default as SiFontforge, defaultColor as SiFontforgeHex } from './icons/SiFontforge.mjs'; +export { default as SiFoobar2000, defaultColor as SiFoobar2000Hex } from './icons/SiFoobar2000.mjs'; +export { default as SiFoodpanda, defaultColor as SiFoodpandaHex } from './icons/SiFoodpanda.mjs'; +export { default as SiFord, defaultColor as SiFordHex } from './icons/SiFord.mjs'; +export { default as SiForgejo, defaultColor as SiForgejoHex } from './icons/SiForgejo.mjs'; +export { default as SiFormbricks, defaultColor as SiFormbricksHex } from './icons/SiFormbricks.mjs'; +export { default as SiFormik, defaultColor as SiFormikHex } from './icons/SiFormik.mjs'; +export { default as SiFormspree, defaultColor as SiFormspreeHex } from './icons/SiFormspree.mjs'; +export { default as SiFormstack, defaultColor as SiFormstackHex } from './icons/SiFormstack.mjs'; +export { default as SiFortinet, defaultColor as SiFortinetHex } from './icons/SiFortinet.mjs'; +export { default as SiFortnite, defaultColor as SiFortniteHex } from './icons/SiFortnite.mjs'; +export { default as SiFortran, defaultColor as SiFortranHex } from './icons/SiFortran.mjs'; +export { default as SiFossa, defaultColor as SiFossaHex } from './icons/SiFossa.mjs'; +export { default as SiFossilscm, defaultColor as SiFossilscmHex } from './icons/SiFossilscm.mjs'; +export { default as SiFoundryvirtualtabletop, defaultColor as SiFoundryvirtualtabletopHex } from './icons/SiFoundryvirtualtabletop.mjs'; +export { default as SiFoursquare, defaultColor as SiFoursquareHex } from './icons/SiFoursquare.mjs'; +export { default as SiFox, defaultColor as SiFoxHex } from './icons/SiFox.mjs'; +export { default as SiFoxtel, defaultColor as SiFoxtelHex } from './icons/SiFoxtel.mjs'; +export { default as SiFozzy, defaultColor as SiFozzyHex } from './icons/SiFozzy.mjs'; +export { default as SiFramer, defaultColor as SiFramerHex } from './icons/SiFramer.mjs'; +export { default as SiFramework, defaultColor as SiFrameworkHex } from './icons/SiFramework.mjs'; +export { default as SiFramework7, defaultColor as SiFramework7Hex } from './icons/SiFramework7.mjs'; +export { default as SiFranprix, defaultColor as SiFranprixHex } from './icons/SiFranprix.mjs'; +export { default as SiFrappe, defaultColor as SiFrappeHex } from './icons/SiFrappe.mjs'; +export { default as SiFraunhofergesellschaft, defaultColor as SiFraunhofergesellschaftHex } from './icons/SiFraunhofergesellschaft.mjs'; +export { default as SiFreebsd, defaultColor as SiFreebsdHex } from './icons/SiFreebsd.mjs'; +export { default as SiFreecad, defaultColor as SiFreecadHex } from './icons/SiFreecad.mjs'; +export { default as SiFreecodecamp, defaultColor as SiFreecodecampHex } from './icons/SiFreecodecamp.mjs'; +export { default as SiFreedesktopdotorg, defaultColor as SiFreedesktopdotorgHex } from './icons/SiFreedesktopdotorg.mjs'; +export { default as SiFreelancer, defaultColor as SiFreelancerHex } from './icons/SiFreelancer.mjs'; +export { default as SiFreelancermap, defaultColor as SiFreelancermapHex } from './icons/SiFreelancermap.mjs'; +export { default as SiFreenas, defaultColor as SiFreenasHex } from './icons/SiFreenas.mjs'; +export { default as SiFreenet, defaultColor as SiFreenetHex } from './icons/SiFreenet.mjs'; +export { default as SiFreepik, defaultColor as SiFreepikHex } from './icons/SiFreepik.mjs'; +export { default as SiFreetube, defaultColor as SiFreetubeHex } from './icons/SiFreetube.mjs'; +export { default as SiFresh, defaultColor as SiFreshHex } from './icons/SiFresh.mjs'; +export { default as SiFreshrss, defaultColor as SiFreshrssHex } from './icons/SiFreshrss.mjs'; +export { default as SiFrigate, defaultColor as SiFrigateHex } from './icons/SiFrigate.mjs'; +export { default as SiFritz, defaultColor as SiFritzHex } from './icons/SiFritz.mjs'; +export { default as SiFrontendmentor, defaultColor as SiFrontendmentorHex } from './icons/SiFrontendmentor.mjs'; +export { default as SiFrontify, defaultColor as SiFrontifyHex } from './icons/SiFrontify.mjs'; +export { default as SiFsharp, defaultColor as SiFsharpHex } from './icons/SiFsharp.mjs'; +export { default as SiFubo, defaultColor as SiFuboHex } from './icons/SiFubo.mjs'; +export { default as SiFueler, defaultColor as SiFuelerHex } from './icons/SiFueler.mjs'; +export { default as SiFugacloud, defaultColor as SiFugacloudHex } from './icons/SiFugacloud.mjs'; +export { default as SiFujifilm, defaultColor as SiFujifilmHex } from './icons/SiFujifilm.mjs'; +export { default as SiFujitsu, defaultColor as SiFujitsuHex } from './icons/SiFujitsu.mjs'; +export { default as SiFuraffinity, defaultColor as SiFuraffinityHex } from './icons/SiFuraffinity.mjs'; +export { default as SiFurrynetwork, defaultColor as SiFurrynetworkHex } from './icons/SiFurrynetwork.mjs'; +export { default as SiFusionauth, defaultColor as SiFusionauthHex } from './icons/SiFusionauth.mjs'; +export { default as SiFuturelearn, defaultColor as SiFuturelearnHex } from './icons/SiFuturelearn.mjs'; +export { default as SiFyle, defaultColor as SiFyleHex } from './icons/SiFyle.mjs'; +export { default as SiG2, defaultColor as SiG2Hex } from './icons/SiG2.mjs'; +export { default as SiG2a, defaultColor as SiG2aHex } from './icons/SiG2a.mjs'; +export { default as SiG2g, defaultColor as SiG2gHex } from './icons/SiG2g.mjs'; +export { default as SiGalaxus, defaultColor as SiGalaxusHex } from './icons/SiGalaxus.mjs'; +export { default as SiGamebanana, defaultColor as SiGamebananaHex } from './icons/SiGamebanana.mjs'; +export { default as SiGamedeveloper, defaultColor as SiGamedeveloperHex } from './icons/SiGamedeveloper.mjs'; +export { default as SiGamejolt, defaultColor as SiGamejoltHex } from './icons/SiGamejolt.mjs'; +export { default as SiGameloft, defaultColor as SiGameloftHex } from './icons/SiGameloft.mjs'; +export { default as SiGamemaker, defaultColor as SiGamemakerHex } from './icons/SiGamemaker.mjs'; +export { default as SiGamescience, defaultColor as SiGamescienceHex } from './icons/SiGamescience.mjs'; +export { default as SiGandi, defaultColor as SiGandiHex } from './icons/SiGandi.mjs'; +export { default as SiGarmin, defaultColor as SiGarminHex } from './icons/SiGarmin.mjs'; +export { default as SiGarudalinux, defaultColor as SiGarudalinuxHex } from './icons/SiGarudalinux.mjs'; +export { default as SiGatling, defaultColor as SiGatlingHex } from './icons/SiGatling.mjs'; +export { default as SiGatsby, defaultColor as SiGatsbyHex } from './icons/SiGatsby.mjs'; +export { default as SiGcore, defaultColor as SiGcoreHex } from './icons/SiGcore.mjs'; +export { default as SiGdal, defaultColor as SiGdalHex } from './icons/SiGdal.mjs'; +export { default as SiGeeksforgeeks, defaultColor as SiGeeksforgeeksHex } from './icons/SiGeeksforgeeks.mjs'; +export { default as SiGeneralelectric, defaultColor as SiGeneralelectricHex } from './icons/SiGeneralelectric.mjs'; +export { default as SiGeneralmotors, defaultColor as SiGeneralmotorsHex } from './icons/SiGeneralmotors.mjs'; +export { default as SiGenius, defaultColor as SiGeniusHex } from './icons/SiGenius.mjs'; +export { default as SiGentoo, defaultColor as SiGentooHex } from './icons/SiGentoo.mjs'; +export { default as SiGeocaching, defaultColor as SiGeocachingHex } from './icons/SiGeocaching.mjs'; +export { default as SiGeode, defaultColor as SiGeodeHex } from './icons/SiGeode.mjs'; +export { default as SiGeopandas, defaultColor as SiGeopandasHex } from './icons/SiGeopandas.mjs'; +export { default as SiGerrit, defaultColor as SiGerritHex } from './icons/SiGerrit.mjs'; +export { default as SiGetx, defaultColor as SiGetxHex } from './icons/SiGetx.mjs'; +export { default as SiGhost, defaultColor as SiGhostHex } from './icons/SiGhost.mjs'; +export { default as SiGhostery, defaultColor as SiGhosteryHex } from './icons/SiGhostery.mjs'; +export { default as SiGhostty, defaultColor as SiGhosttyHex } from './icons/SiGhostty.mjs'; +export { default as SiGimp, defaultColor as SiGimpHex } from './icons/SiGimp.mjs'; +export { default as SiGin, defaultColor as SiGinHex } from './icons/SiGin.mjs'; +export { default as SiGiphy, defaultColor as SiGiphyHex } from './icons/SiGiphy.mjs'; +export { default as SiGit, defaultColor as SiGitHex } from './icons/SiGit.mjs'; +export { default as SiGitbook, defaultColor as SiGitbookHex } from './icons/SiGitbook.mjs'; +export { default as SiGitcode, defaultColor as SiGitcodeHex } from './icons/SiGitcode.mjs'; +export { default as SiGitconnected, defaultColor as SiGitconnectedHex } from './icons/SiGitconnected.mjs'; +export { default as SiGitea, defaultColor as SiGiteaHex } from './icons/SiGitea.mjs'; +export { default as SiGitee, defaultColor as SiGiteeHex } from './icons/SiGitee.mjs'; +export { default as SiGitextensions, defaultColor as SiGitextensionsHex } from './icons/SiGitextensions.mjs'; +export { default as SiGitforwindows, defaultColor as SiGitforwindowsHex } from './icons/SiGitforwindows.mjs'; +export { default as SiGithub, defaultColor as SiGithubHex } from './icons/SiGithub.mjs'; +export { default as SiGithubactions, defaultColor as SiGithubactionsHex } from './icons/SiGithubactions.mjs'; +export { default as SiGithubcopilot, defaultColor as SiGithubcopilotHex } from './icons/SiGithubcopilot.mjs'; +export { default as SiGithubpages, defaultColor as SiGithubpagesHex } from './icons/SiGithubpages.mjs'; +export { default as SiGithubsponsors, defaultColor as SiGithubsponsorsHex } from './icons/SiGithubsponsors.mjs'; +export { default as SiGitignoredotio, defaultColor as SiGitignoredotioHex } from './icons/SiGitignoredotio.mjs'; +export { default as SiGitkraken, defaultColor as SiGitkrakenHex } from './icons/SiGitkraken.mjs'; +export { default as SiGitlab, defaultColor as SiGitlabHex } from './icons/SiGitlab.mjs'; +export { default as SiGitlfs, defaultColor as SiGitlfsHex } from './icons/SiGitlfs.mjs'; +export { default as SiGitpod, defaultColor as SiGitpodHex } from './icons/SiGitpod.mjs'; +export { default as SiGitter, defaultColor as SiGitterHex } from './icons/SiGitter.mjs'; +export { default as SiGlance, defaultColor as SiGlanceHex } from './icons/SiGlance.mjs'; +export { default as SiGlassdoor, defaultColor as SiGlassdoorHex } from './icons/SiGlassdoor.mjs'; +export { default as SiGldotinet, defaultColor as SiGldotinetHex } from './icons/SiGldotinet.mjs'; +export { default as SiGleam, defaultColor as SiGleamHex } from './icons/SiGleam.mjs'; +export { default as SiGlide, defaultColor as SiGlideHex } from './icons/SiGlide.mjs'; +export { default as SiGlitch, defaultColor as SiGlitchHex } from './icons/SiGlitch.mjs'; +export { default as SiGlobus, defaultColor as SiGlobusHex } from './icons/SiGlobus.mjs'; +export { default as SiGlovo, defaultColor as SiGlovoHex } from './icons/SiGlovo.mjs'; +export { default as SiGltf, defaultColor as SiGltfHex } from './icons/SiGltf.mjs'; +export { default as SiGmail, defaultColor as SiGmailHex } from './icons/SiGmail.mjs'; +export { default as SiGmx, defaultColor as SiGmxHex } from './icons/SiGmx.mjs'; +export { default as SiGnome, defaultColor as SiGnomeHex } from './icons/SiGnome.mjs'; +export { default as SiGnometerminal, defaultColor as SiGnometerminalHex } from './icons/SiGnometerminal.mjs'; +export { default as SiGnu, defaultColor as SiGnuHex } from './icons/SiGnu.mjs'; +export { default as SiGnubash, defaultColor as SiGnubashHex } from './icons/SiGnubash.mjs'; +export { default as SiGnuemacs, defaultColor as SiGnuemacsHex } from './icons/SiGnuemacs.mjs'; +export { default as SiGnuicecat, defaultColor as SiGnuicecatHex } from './icons/SiGnuicecat.mjs'; +export { default as SiGnuprivacyguard, defaultColor as SiGnuprivacyguardHex } from './icons/SiGnuprivacyguard.mjs'; +export { default as SiGnusocial, defaultColor as SiGnusocialHex } from './icons/SiGnusocial.mjs'; +export { default as SiGo, defaultColor as SiGoHex } from './icons/SiGo.mjs'; +export { default as SiGocd, defaultColor as SiGocdHex } from './icons/SiGocd.mjs'; +export { default as SiGodaddy, defaultColor as SiGodaddyHex } from './icons/SiGodaddy.mjs'; +export { default as SiGodotengine, defaultColor as SiGodotengineHex } from './icons/SiGodotengine.mjs'; +export { default as SiGofundme, defaultColor as SiGofundmeHex } from './icons/SiGofundme.mjs'; +export { default as SiGogdotcom, defaultColor as SiGogdotcomHex } from './icons/SiGogdotcom.mjs'; +export { default as SiGojek, defaultColor as SiGojekHex } from './icons/SiGojek.mjs'; +export { default as SiGoland, defaultColor as SiGolandHex } from './icons/SiGoland.mjs'; +export { default as SiGoldmansachs, defaultColor as SiGoldmansachsHex } from './icons/SiGoldmansachs.mjs'; +export { default as SiGoodreads, defaultColor as SiGoodreadsHex } from './icons/SiGoodreads.mjs'; +export { default as SiGoogle, defaultColor as SiGoogleHex } from './icons/SiGoogle.mjs'; +export { default as SiGoogleadmob, defaultColor as SiGoogleadmobHex } from './icons/SiGoogleadmob.mjs'; +export { default as SiGoogleads, defaultColor as SiGoogleadsHex } from './icons/SiGoogleads.mjs'; +export { default as SiGoogleadsense, defaultColor as SiGoogleadsenseHex } from './icons/SiGoogleadsense.mjs'; +export { default as SiGoogleanalytics, defaultColor as SiGoogleanalyticsHex } from './icons/SiGoogleanalytics.mjs'; +export { default as SiGoogleappsscript, defaultColor as SiGoogleappsscriptHex } from './icons/SiGoogleappsscript.mjs'; +export { default as SiGoogleassistant, defaultColor as SiGoogleassistantHex } from './icons/SiGoogleassistant.mjs'; +export { default as SiGoogleauthenticator, defaultColor as SiGoogleauthenticatorHex } from './icons/SiGoogleauthenticator.mjs'; +export { default as SiGooglebigquery, defaultColor as SiGooglebigqueryHex } from './icons/SiGooglebigquery.mjs'; +export { default as SiGooglebigtable, defaultColor as SiGooglebigtableHex } from './icons/SiGooglebigtable.mjs'; +export { default as SiGooglecalendar, defaultColor as SiGooglecalendarHex } from './icons/SiGooglecalendar.mjs'; +export { default as SiGooglecampaignmanager360, defaultColor as SiGooglecampaignmanager360Hex } from './icons/SiGooglecampaignmanager360.mjs'; +export { default as SiGooglecardboard, defaultColor as SiGooglecardboardHex } from './icons/SiGooglecardboard.mjs'; +export { default as SiGooglecast, defaultColor as SiGooglecastHex } from './icons/SiGooglecast.mjs'; +export { default as SiGooglechat, defaultColor as SiGooglechatHex } from './icons/SiGooglechat.mjs'; +export { default as SiGooglechrome, defaultColor as SiGooglechromeHex } from './icons/SiGooglechrome.mjs'; +export { default as SiGooglechronicle, defaultColor as SiGooglechronicleHex } from './icons/SiGooglechronicle.mjs'; +export { default as SiGoogleclassroom, defaultColor as SiGoogleclassroomHex } from './icons/SiGoogleclassroom.mjs'; +export { default as SiGooglecloud, defaultColor as SiGooglecloudHex } from './icons/SiGooglecloud.mjs'; +export { default as SiGooglecloudcomposer, defaultColor as SiGooglecloudcomposerHex } from './icons/SiGooglecloudcomposer.mjs'; +export { default as SiGooglecloudspanner, defaultColor as SiGooglecloudspannerHex } from './icons/SiGooglecloudspanner.mjs'; +export { default as SiGooglecloudstorage, defaultColor as SiGooglecloudstorageHex } from './icons/SiGooglecloudstorage.mjs'; +export { default as SiGooglecolab, defaultColor as SiGooglecolabHex } from './icons/SiGooglecolab.mjs'; +export { default as SiGooglecontaineroptimizedos, defaultColor as SiGooglecontaineroptimizedosHex } from './icons/SiGooglecontaineroptimizedos.mjs'; +export { default as SiGoogledataflow, defaultColor as SiGoogledataflowHex } from './icons/SiGoogledataflow.mjs'; +export { default as SiGoogledataproc, defaultColor as SiGoogledataprocHex } from './icons/SiGoogledataproc.mjs'; +export { default as SiGoogledisplayandvideo360, defaultColor as SiGoogledisplayandvideo360Hex } from './icons/SiGoogledisplayandvideo360.mjs'; +export { default as SiGoogledocs, defaultColor as SiGoogledocsHex } from './icons/SiGoogledocs.mjs'; +export { default as SiGoogledrive, defaultColor as SiGoogledriveHex } from './icons/SiGoogledrive.mjs'; +export { default as SiGoogleearth, defaultColor as SiGoogleearthHex } from './icons/SiGoogleearth.mjs'; +export { default as SiGoogleearthengine, defaultColor as SiGoogleearthengineHex } from './icons/SiGoogleearthengine.mjs'; +export { default as SiGooglefonts, defaultColor as SiGooglefontsHex } from './icons/SiGooglefonts.mjs'; +export { default as SiGoogleforms, defaultColor as SiGoogleformsHex } from './icons/SiGoogleforms.mjs'; +export { default as SiGooglegemini, defaultColor as SiGooglegeminiHex } from './icons/SiGooglegemini.mjs'; +export { default as SiGooglehome, defaultColor as SiGooglehomeHex } from './icons/SiGooglehome.mjs'; +export { default as SiGooglejules, defaultColor as SiGooglejulesHex } from './icons/SiGooglejules.mjs'; +export { default as SiGooglekeep, defaultColor as SiGooglekeepHex } from './icons/SiGooglekeep.mjs'; +export { default as SiGooglelens, defaultColor as SiGooglelensHex } from './icons/SiGooglelens.mjs'; +export { default as SiGooglemaps, defaultColor as SiGooglemapsHex } from './icons/SiGooglemaps.mjs'; +export { default as SiGooglemarketingplatform, defaultColor as SiGooglemarketingplatformHex } from './icons/SiGooglemarketingplatform.mjs'; +export { default as SiGooglemeet, defaultColor as SiGooglemeetHex } from './icons/SiGooglemeet.mjs'; +export { default as SiGooglemessages, defaultColor as SiGooglemessagesHex } from './icons/SiGooglemessages.mjs'; +export { default as SiGooglenearby, defaultColor as SiGooglenearbyHex } from './icons/SiGooglenearby.mjs'; +export { default as SiGooglenews, defaultColor as SiGooglenewsHex } from './icons/SiGooglenews.mjs'; +export { default as SiGooglepay, defaultColor as SiGooglepayHex } from './icons/SiGooglepay.mjs'; +export { default as SiGooglephotos, defaultColor as SiGooglephotosHex } from './icons/SiGooglephotos.mjs'; +export { default as SiGoogleplay, defaultColor as SiGoogleplayHex } from './icons/SiGoogleplay.mjs'; +export { default as SiGooglepubsub, defaultColor as SiGooglepubsubHex } from './icons/SiGooglepubsub.mjs'; +export { default as SiGooglescholar, defaultColor as SiGooglescholarHex } from './icons/SiGooglescholar.mjs'; +export { default as SiGooglesearchconsole, defaultColor as SiGooglesearchconsoleHex } from './icons/SiGooglesearchconsole.mjs'; +export { default as SiGooglesheets, defaultColor as SiGooglesheetsHex } from './icons/SiGooglesheets.mjs'; +export { default as SiGoogleslides, defaultColor as SiGoogleslidesHex } from './icons/SiGoogleslides.mjs'; +export { default as SiGooglestreetview, defaultColor as SiGooglestreetviewHex } from './icons/SiGooglestreetview.mjs'; +export { default as SiGooglesummerofcode, defaultColor as SiGooglesummerofcodeHex } from './icons/SiGooglesummerofcode.mjs'; +export { default as SiGoogletagmanager, defaultColor as SiGoogletagmanagerHex } from './icons/SiGoogletagmanager.mjs'; +export { default as SiGoogletasks, defaultColor as SiGoogletasksHex } from './icons/SiGoogletasks.mjs'; +export { default as SiGoogletranslate, defaultColor as SiGoogletranslateHex } from './icons/SiGoogletranslate.mjs'; +export { default as SiGoogletv, defaultColor as SiGoogletvHex } from './icons/SiGoogletv.mjs'; +export { default as SiGotomeeting, defaultColor as SiGotomeetingHex } from './icons/SiGotomeeting.mjs'; +export { default as SiGplv3, defaultColor as SiGplv3Hex } from './icons/SiGplv3.mjs'; +export { default as SiGrab, defaultColor as SiGrabHex } from './icons/SiGrab.mjs'; +export { default as SiGradio, defaultColor as SiGradioHex } from './icons/SiGradio.mjs'; +export { default as SiGradle, defaultColor as SiGradleHex } from './icons/SiGradle.mjs'; +export { default as SiGradleplaypublisher, defaultColor as SiGradleplaypublisherHex } from './icons/SiGradleplaypublisher.mjs'; +export { default as SiGrafana, defaultColor as SiGrafanaHex } from './icons/SiGrafana.mjs'; +export { default as SiGrammarly, defaultColor as SiGrammarlyHex } from './icons/SiGrammarly.mjs'; +export { default as SiGrandfrais, defaultColor as SiGrandfraisHex } from './icons/SiGrandfrais.mjs'; +export { default as SiGrapheneos, defaultColor as SiGrapheneosHex } from './icons/SiGrapheneos.mjs'; +export { default as SiGraphite, defaultColor as SiGraphiteHex } from './icons/SiGraphite.mjs'; +export { default as SiGraphiteEditor, defaultColor as SiGraphiteEditorHex } from './icons/SiGraphiteEditor.mjs'; +export { default as SiGraphql, defaultColor as SiGraphqlHex } from './icons/SiGraphql.mjs'; +export { default as SiGrav, defaultColor as SiGravHex } from './icons/SiGrav.mjs'; +export { default as SiGravatar, defaultColor as SiGravatarHex } from './icons/SiGravatar.mjs'; +export { default as SiGraylog, defaultColor as SiGraylogHex } from './icons/SiGraylog.mjs'; +export { default as SiGreasyfork, defaultColor as SiGreasyforkHex } from './icons/SiGreasyfork.mjs'; +export { default as SiGreatlearning, defaultColor as SiGreatlearningHex } from './icons/SiGreatlearning.mjs'; +export { default as SiGreenhouse, defaultColor as SiGreenhouseHex } from './icons/SiGreenhouse.mjs'; +export { default as SiGreensock, defaultColor as SiGreensockHex } from './icons/SiGreensock.mjs'; +export { default as SiGreptimedb, defaultColor as SiGreptimedbHex } from './icons/SiGreptimedb.mjs'; +export { default as SiGriddotai, defaultColor as SiGriddotaiHex } from './icons/SiGriddotai.mjs'; +export { default as SiGridsome, defaultColor as SiGridsomeHex } from './icons/SiGridsome.mjs'; +export { default as SiGrocy, defaultColor as SiGrocyHex } from './icons/SiGrocy.mjs'; +export { default as SiGroupme, defaultColor as SiGroupmeHex } from './icons/SiGroupme.mjs'; +export { default as SiGroupon, defaultColor as SiGrouponHex } from './icons/SiGroupon.mjs'; +export { default as SiGrunt, defaultColor as SiGruntHex } from './icons/SiGrunt.mjs'; +export { default as SiGsap, defaultColor as SiGsapHex } from './icons/SiGsap.mjs'; +export { default as SiGsk, defaultColor as SiGskHex } from './icons/SiGsk.mjs'; +export { default as SiGsma, defaultColor as SiGsmaHex } from './icons/SiGsma.mjs'; +export { default as SiGsmarenadotcom, defaultColor as SiGsmarenadotcomHex } from './icons/SiGsmarenadotcom.mjs'; +export { default as SiGstreamer, defaultColor as SiGstreamerHex } from './icons/SiGstreamer.mjs'; +export { default as SiGtk, defaultColor as SiGtkHex } from './icons/SiGtk.mjs'; +export { default as SiGuangzhoumetro, defaultColor as SiGuangzhoumetroHex } from './icons/SiGuangzhoumetro.mjs'; +export { default as SiGuilded, defaultColor as SiGuildedHex } from './icons/SiGuilded.mjs'; +export { default as SiGuitarpro, defaultColor as SiGuitarproHex } from './icons/SiGuitarpro.mjs'; +export { default as SiGulp, defaultColor as SiGulpHex } from './icons/SiGulp.mjs'; +export { default as SiGumroad, defaultColor as SiGumroadHex } from './icons/SiGumroad.mjs'; +export { default as SiGumtree, defaultColor as SiGumtreeHex } from './icons/SiGumtree.mjs'; +export { default as SiGunicorn, defaultColor as SiGunicornHex } from './icons/SiGunicorn.mjs'; +export { default as SiGurobi, defaultColor as SiGurobiHex } from './icons/SiGurobi.mjs'; +export { default as SiGusto, defaultColor as SiGustoHex } from './icons/SiGusto.mjs'; +export { default as SiGutenberg, defaultColor as SiGutenbergHex } from './icons/SiGutenberg.mjs'; +export { default as SiH2database, defaultColor as SiH2databaseHex } from './icons/SiH2database.mjs'; +export { default as SiH3, defaultColor as SiH3Hex } from './icons/SiH3.mjs'; +export { default as SiHabr, defaultColor as SiHabrHex } from './icons/SiHabr.mjs'; +export { default as SiHackaday, defaultColor as SiHackadayHex } from './icons/SiHackaday.mjs'; +export { default as SiHackclub, defaultColor as SiHackclubHex } from './icons/SiHackclub.mjs'; +export { default as SiHackerearth, defaultColor as SiHackerearthHex } from './icons/SiHackerearth.mjs'; +export { default as SiHackernoon, defaultColor as SiHackernoonHex } from './icons/SiHackernoon.mjs'; +export { default as SiHackerone, defaultColor as SiHackeroneHex } from './icons/SiHackerone.mjs'; +export { default as SiHackerrank, defaultColor as SiHackerrankHex } from './icons/SiHackerrank.mjs'; +export { default as SiHackmd, defaultColor as SiHackmdHex } from './icons/SiHackmd.mjs'; +export { default as SiHackster, defaultColor as SiHacksterHex } from './icons/SiHackster.mjs'; +export { default as SiHackthebox, defaultColor as SiHacktheboxHex } from './icons/SiHackthebox.mjs'; +export { default as SiHal, defaultColor as SiHalHex } from './icons/SiHal.mjs'; +export { default as SiHandlebarsdotjs, defaultColor as SiHandlebarsdotjsHex } from './icons/SiHandlebarsdotjs.mjs'; +export { default as SiHandm, defaultColor as SiHandmHex } from './icons/SiHandm.mjs'; +export { default as SiHandshake, defaultColor as SiHandshakeHex } from './icons/SiHandshake.mjs'; +export { default as SiHandshakeProtocol, defaultColor as SiHandshakeProtocolHex } from './icons/SiHandshakeProtocol.mjs'; +export { default as SiHappycow, defaultColor as SiHappycowHex } from './icons/SiHappycow.mjs'; +export { default as SiHarbor, defaultColor as SiHarborHex } from './icons/SiHarbor.mjs'; +export { default as SiHarmonyos, defaultColor as SiHarmonyosHex } from './icons/SiHarmonyos.mjs'; +export { default as SiHashcat, defaultColor as SiHashcatHex } from './icons/SiHashcat.mjs'; +export { default as SiHashicorp, defaultColor as SiHashicorpHex } from './icons/SiHashicorp.mjs'; +export { default as SiHashnode, defaultColor as SiHashnodeHex } from './icons/SiHashnode.mjs'; +export { default as SiHaskell, defaultColor as SiHaskellHex } from './icons/SiHaskell.mjs'; +export { default as SiHasura, defaultColor as SiHasuraHex } from './icons/SiHasura.mjs'; +export { default as SiHatenabookmark, defaultColor as SiHatenabookmarkHex } from './icons/SiHatenabookmark.mjs'; +export { default as SiHaveibeenpwned, defaultColor as SiHaveibeenpwnedHex } from './icons/SiHaveibeenpwned.mjs'; +export { default as SiHavells, defaultColor as SiHavellsHex } from './icons/SiHavells.mjs'; +export { default as SiHaxe, defaultColor as SiHaxeHex } from './icons/SiHaxe.mjs'; +export { default as SiHaystack, defaultColor as SiHaystackHex } from './icons/SiHaystack.mjs'; +export { default as SiHbo, defaultColor as SiHboHex } from './icons/SiHbo.mjs'; +export { default as SiHbomax, defaultColor as SiHbomaxHex } from './icons/SiHbomax.mjs'; +export { default as SiHcl, defaultColor as SiHclHex } from './icons/SiHcl.mjs'; +export { default as SiHdfcbank, defaultColor as SiHdfcbankHex } from './icons/SiHdfcbank.mjs'; +export { default as SiHeadlessui, defaultColor as SiHeadlessuiHex } from './icons/SiHeadlessui.mjs'; +export { default as SiHeadphonezone, defaultColor as SiHeadphonezoneHex } from './icons/SiHeadphonezone.mjs'; +export { default as SiHeadspace, defaultColor as SiHeadspaceHex } from './icons/SiHeadspace.mjs'; +export { default as SiHearth, defaultColor as SiHearthHex } from './icons/SiHearth.mjs'; +export { default as SiHearthisdotat, defaultColor as SiHearthisdotatHex } from './icons/SiHearthisdotat.mjs'; +export { default as SiHedera, defaultColor as SiHederaHex } from './icons/SiHedera.mjs'; +export { default as SiHedgedoc, defaultColor as SiHedgedocHex } from './icons/SiHedgedoc.mjs'; +export { default as SiHelium, defaultColor as SiHeliumHex } from './icons/SiHelium.mjs'; +export { default as SiHelix, defaultColor as SiHelixHex } from './icons/SiHelix.mjs'; +export { default as SiHellofresh, defaultColor as SiHellofreshHex } from './icons/SiHellofresh.mjs'; +export { default as SiHellyhansen, defaultColor as SiHellyhansenHex } from './icons/SiHellyhansen.mjs'; +export { default as SiHelm, defaultColor as SiHelmHex } from './icons/SiHelm.mjs'; +export { default as SiHelpdesk, defaultColor as SiHelpdeskHex } from './icons/SiHelpdesk.mjs'; +export { default as SiHelpscout, defaultColor as SiHelpscoutHex } from './icons/SiHelpscout.mjs'; +export { default as SiHepsiemlak, defaultColor as SiHepsiemlakHex } from './icons/SiHepsiemlak.mjs'; +export { default as SiHere, defaultColor as SiHereHex } from './icons/SiHere.mjs'; +export { default as SiHermes, defaultColor as SiHermesHex } from './icons/SiHermes.mjs'; +export { default as SiHeroicgameslauncher, defaultColor as SiHeroicgameslauncherHex } from './icons/SiHeroicgameslauncher.mjs'; +export { default as SiHeroui, defaultColor as SiHerouiHex } from './icons/SiHeroui.mjs'; +export { default as SiHetzner, defaultColor as SiHetznerHex } from './icons/SiHetzner.mjs'; +export { default as SiHevy, defaultColor as SiHevyHex } from './icons/SiHevy.mjs'; +export { default as SiHexlet, defaultColor as SiHexletHex } from './icons/SiHexlet.mjs'; +export { default as SiHexo, defaultColor as SiHexoHex } from './icons/SiHexo.mjs'; +export { default as SiHey, defaultColor as SiHeyHex } from './icons/SiHey.mjs'; +export { default as SiHibernate, defaultColor as SiHibernateHex } from './icons/SiHibernate.mjs'; +export { default as SiHibob, defaultColor as SiHibobHex } from './icons/SiHibob.mjs'; +export { default as SiHilton, defaultColor as SiHiltonHex } from './icons/SiHilton.mjs'; +export { default as SiHiltonhotelsandresorts, defaultColor as SiHiltonhotelsandresortsHex } from './icons/SiHiltonhotelsandresorts.mjs'; +export { default as SiHitachi, defaultColor as SiHitachiHex } from './icons/SiHitachi.mjs'; +export { default as SiHive, defaultColor as SiHiveHex } from './icons/SiHive.mjs'; +export { default as SiHiveBlockchain, defaultColor as SiHiveBlockchainHex } from './icons/SiHiveBlockchain.mjs'; +export { default as SiHivemq, defaultColor as SiHivemqHex } from './icons/SiHivemq.mjs'; +export { default as SiHomarr, defaultColor as SiHomarrHex } from './icons/SiHomarr.mjs'; +export { default as SiHomeadvisor, defaultColor as SiHomeadvisorHex } from './icons/SiHomeadvisor.mjs'; +export { default as SiHomeassistant, defaultColor as SiHomeassistantHex } from './icons/SiHomeassistant.mjs'; +export { default as SiHomeassistantcommunitystore, defaultColor as SiHomeassistantcommunitystoreHex } from './icons/SiHomeassistantcommunitystore.mjs'; +export { default as SiHomebrew, defaultColor as SiHomebrewHex } from './icons/SiHomebrew.mjs'; +export { default as SiHomebridge, defaultColor as SiHomebridgeHex } from './icons/SiHomebridge.mjs'; +export { default as SiHomepage, defaultColor as SiHomepageHex } from './icons/SiHomepage.mjs'; +export { default as SiHomify, defaultColor as SiHomifyHex } from './icons/SiHomify.mjs'; +export { default as SiHonda, defaultColor as SiHondaHex } from './icons/SiHonda.mjs'; +export { default as SiHoney, defaultColor as SiHoneyHex } from './icons/SiHoney.mjs'; +export { default as SiHoneybadger, defaultColor as SiHoneybadgerHex } from './icons/SiHoneybadger.mjs'; +export { default as SiHoneygain, defaultColor as SiHoneygainHex } from './icons/SiHoneygain.mjs'; +export { default as SiHono, defaultColor as SiHonoHex } from './icons/SiHono.mjs'; +export { default as SiHonor, defaultColor as SiHonorHex } from './icons/SiHonor.mjs'; +export { default as SiHootsuite, defaultColor as SiHootsuiteHex } from './icons/SiHootsuite.mjs'; +export { default as SiHoppscotch, defaultColor as SiHoppscotchHex } from './icons/SiHoppscotch.mjs'; +export { default as SiHostinger, defaultColor as SiHostingerHex } from './icons/SiHostinger.mjs'; +export { default as SiHotelsdotcom, defaultColor as SiHotelsdotcomHex } from './icons/SiHotelsdotcom.mjs'; +export { default as SiHotjar, defaultColor as SiHotjarHex } from './icons/SiHotjar.mjs'; +export { default as SiHotwire, defaultColor as SiHotwireHex } from './icons/SiHotwire.mjs'; +export { default as SiHoudini, defaultColor as SiHoudiniHex } from './icons/SiHoudini.mjs'; +export { default as SiHouzz, defaultColor as SiHouzzHex } from './icons/SiHouzz.mjs'; +export { default as SiHp, defaultColor as SiHpHex } from './icons/SiHp.mjs'; +export { default as SiHsbc, defaultColor as SiHsbcHex } from './icons/SiHsbc.mjs'; +export { default as SiHtc, defaultColor as SiHtcHex } from './icons/SiHtc.mjs'; +export { default as SiHtcvive, defaultColor as SiHtcviveHex } from './icons/SiHtcvive.mjs'; +export { default as SiHtml5, defaultColor as SiHtml5Hex } from './icons/SiHtml5.mjs'; +export { default as SiHtmlacademy, defaultColor as SiHtmlacademyHex } from './icons/SiHtmlacademy.mjs'; +export { default as SiHtmx, defaultColor as SiHtmxHex } from './icons/SiHtmx.mjs'; +export { default as SiHtop, defaultColor as SiHtopHex } from './icons/SiHtop.mjs'; +export { default as SiHttpie, defaultColor as SiHttpieHex } from './icons/SiHttpie.mjs'; +export { default as SiHuawei, defaultColor as SiHuaweiHex } from './icons/SiHuawei.mjs'; +export { default as SiHubspot, defaultColor as SiHubspotHex } from './icons/SiHubspot.mjs'; +export { default as SiHuggingface, defaultColor as SiHuggingfaceHex } from './icons/SiHuggingface.mjs'; +export { default as SiHugo, defaultColor as SiHugoHex } from './icons/SiHugo.mjs'; +export { default as SiHumblebundle, defaultColor as SiHumblebundleHex } from './icons/SiHumblebundle.mjs'; +export { default as SiHumhub, defaultColor as SiHumhubHex } from './icons/SiHumhub.mjs'; +export { default as SiHungryjacks, defaultColor as SiHungryjacksHex } from './icons/SiHungryjacks.mjs'; +export { default as SiHusqvarna, defaultColor as SiHusqvarnaHex } from './icons/SiHusqvarna.mjs'; +export { default as SiHyper, defaultColor as SiHyperHex } from './icons/SiHyper.mjs'; +export { default as SiHyperskill, defaultColor as SiHyperskillHex } from './icons/SiHyperskill.mjs'; +export { default as SiHyperx, defaultColor as SiHyperxHex } from './icons/SiHyperx.mjs'; +export { default as SiHypothesis, defaultColor as SiHypothesisHex } from './icons/SiHypothesis.mjs'; +export { default as SiHyprland, defaultColor as SiHyprlandHex } from './icons/SiHyprland.mjs'; +export { default as SiHyundai, defaultColor as SiHyundaiHex } from './icons/SiHyundai.mjs'; +export { default as SiI18next, defaultColor as SiI18nextHex } from './icons/SiI18next.mjs'; +export { default as SiI3, defaultColor as SiI3Hex } from './icons/SiI3.mjs'; +export { default as SiIata, defaultColor as SiIataHex } from './icons/SiIata.mjs'; +export { default as SiIbeacon, defaultColor as SiIbeaconHex } from './icons/SiIbeacon.mjs'; +export { default as SiIberia, defaultColor as SiIberiaHex } from './icons/SiIberia.mjs'; +export { default as SiIced, defaultColor as SiIcedHex } from './icons/SiIced.mjs'; +export { default as SiIceland, defaultColor as SiIcelandHex } from './icons/SiIceland.mjs'; +export { default as SiIcicibank, defaultColor as SiIcicibankHex } from './icons/SiIcicibank.mjs'; +export { default as SiIcinga, defaultColor as SiIcingaHex } from './icons/SiIcinga.mjs'; +export { default as SiIcloud, defaultColor as SiIcloudHex } from './icons/SiIcloud.mjs'; +export { default as SiIcomoon, defaultColor as SiIcomoonHex } from './icons/SiIcomoon.mjs'; +export { default as SiIcon, defaultColor as SiIconHex } from './icons/SiIcon.mjs'; +export { default as SiIconfinder, defaultColor as SiIconfinderHex } from './icons/SiIconfinder.mjs'; +export { default as SiIconify, defaultColor as SiIconifyHex } from './icons/SiIconify.mjs'; +export { default as SiIconjar, defaultColor as SiIconjarHex } from './icons/SiIconjar.mjs'; +export { default as SiIcons8, defaultColor as SiIcons8Hex } from './icons/SiIcons8.mjs'; +export { default as SiIcq, defaultColor as SiIcqHex } from './icons/SiIcq.mjs'; +export { default as SiIeee, defaultColor as SiIeeeHex } from './icons/SiIeee.mjs'; +export { default as SiIfixit, defaultColor as SiIfixitHex } from './icons/SiIfixit.mjs'; +export { default as SiIfood, defaultColor as SiIfoodHex } from './icons/SiIfood.mjs'; +export { default as SiIfttt, defaultColor as SiIftttHex } from './icons/SiIfttt.mjs'; +export { default as SiIgdb, defaultColor as SiIgdbHex } from './icons/SiIgdb.mjs'; +export { default as SiIgn, defaultColor as SiIgnHex } from './icons/SiIgn.mjs'; +export { default as SiIheartradio, defaultColor as SiIheartradioHex } from './icons/SiIheartradio.mjs'; +export { default as SiIkea, defaultColor as SiIkeaHex } from './icons/SiIkea.mjs'; +export { default as SiIledefrancemobilites, defaultColor as SiIledefrancemobilitesHex } from './icons/SiIledefrancemobilites.mjs'; +export { default as SiIlovepdf, defaultColor as SiIlovepdfHex } from './icons/SiIlovepdf.mjs'; +export { default as SiImagedotsc, defaultColor as SiImagedotscHex } from './icons/SiImagedotsc.mjs'; +export { default as SiImagej, defaultColor as SiImagejHex } from './icons/SiImagej.mjs'; +export { default as SiImagetoolbox, defaultColor as SiImagetoolboxHex } from './icons/SiImagetoolbox.mjs'; +export { default as SiImdb, defaultColor as SiImdbHex } from './icons/SiImdb.mjs'; +export { default as SiImessage, defaultColor as SiImessageHex } from './icons/SiImessage.mjs'; +export { default as SiImgur, defaultColor as SiImgurHex } from './icons/SiImgur.mjs'; +export { default as SiImmer, defaultColor as SiImmerHex } from './icons/SiImmer.mjs'; +export { default as SiImmersivetranslate, defaultColor as SiImmersivetranslateHex } from './icons/SiImmersivetranslate.mjs'; +export { default as SiImmich, defaultColor as SiImmichHex } from './icons/SiImmich.mjs'; +export { default as SiImou, defaultColor as SiImouHex } from './icons/SiImou.mjs'; +export { default as SiImprovmx, defaultColor as SiImprovmxHex } from './icons/SiImprovmx.mjs'; +export { default as SiIndeed, defaultColor as SiIndeedHex } from './icons/SiIndeed.mjs'; +export { default as SiIndiansuperleague, defaultColor as SiIndiansuperleagueHex } from './icons/SiIndiansuperleague.mjs'; +export { default as SiIndiehackers, defaultColor as SiIndiehackersHex } from './icons/SiIndiehackers.mjs'; +export { default as SiIndigo, defaultColor as SiIndigoHex } from './icons/SiIndigo.mjs'; +export { default as SiInductiveautomation, defaultColor as SiInductiveautomationHex } from './icons/SiInductiveautomation.mjs'; +export { default as SiInertia, defaultColor as SiInertiaHex } from './icons/SiInertia.mjs'; +export { default as SiInfiniti, defaultColor as SiInfinitiHex } from './icons/SiInfiniti.mjs'; +export { default as SiInfinityfree, defaultColor as SiInfinityfreeHex } from './icons/SiInfinityfree.mjs'; +export { default as SiInfluxdb, defaultColor as SiInfluxdbHex } from './icons/SiInfluxdb.mjs'; +export { default as SiInfomaniak, defaultColor as SiInfomaniakHex } from './icons/SiInfomaniak.mjs'; +export { default as SiInfoq, defaultColor as SiInfoqHex } from './icons/SiInfoq.mjs'; +export { default as SiInfosys, defaultColor as SiInfosysHex } from './icons/SiInfosys.mjs'; +export { default as SiInfracost, defaultColor as SiInfracostHex } from './icons/SiInfracost.mjs'; +export { default as SiInfuse, defaultColor as SiInfuseHex } from './icons/SiInfuse.mjs'; +export { default as SiIngress, defaultColor as SiIngressHex } from './icons/SiIngress.mjs'; +export { default as SiInkdrop, defaultColor as SiInkdropHex } from './icons/SiInkdrop.mjs'; +export { default as SiInkscape, defaultColor as SiInkscapeHex } from './icons/SiInkscape.mjs'; +export { default as SiInoreader, defaultColor as SiInoreaderHex } from './icons/SiInoreader.mjs'; +export { default as SiInquirer, defaultColor as SiInquirerHex } from './icons/SiInquirer.mjs'; +export { default as SiInsomnia, defaultColor as SiInsomniaHex } from './icons/SiInsomnia.mjs'; +export { default as SiInspire, defaultColor as SiInspireHex } from './icons/SiInspire.mjs'; +export { default as SiInsta360, defaultColor as SiInsta360Hex } from './icons/SiInsta360.mjs'; +export { default as SiInstacart, defaultColor as SiInstacartHex } from './icons/SiInstacart.mjs'; +export { default as SiInstagram, defaultColor as SiInstagramHex } from './icons/SiInstagram.mjs'; +export { default as SiInstapaper, defaultColor as SiInstapaperHex } from './icons/SiInstapaper.mjs'; +export { default as SiInstatus, defaultColor as SiInstatusHex } from './icons/SiInstatus.mjs'; +export { default as SiInstructables, defaultColor as SiInstructablesHex } from './icons/SiInstructables.mjs'; +export { default as SiInstructure, defaultColor as SiInstructureHex } from './icons/SiInstructure.mjs'; +export { default as SiIntel, defaultColor as SiIntelHex } from './icons/SiIntel.mjs'; +export { default as SiIntellijidea, defaultColor as SiIntellijideaHex } from './icons/SiIntellijidea.mjs'; +export { default as SiInteractiondesignfoundation, defaultColor as SiInteractiondesignfoundationHex } from './icons/SiInteractiondesignfoundation.mjs'; +export { default as SiInteractjs, defaultColor as SiInteractjsHex } from './icons/SiInteractjs.mjs'; +export { default as SiInterbase, defaultColor as SiInterbaseHex } from './icons/SiInterbase.mjs'; +export { default as SiIntercom, defaultColor as SiIntercomHex } from './icons/SiIntercom.mjs'; +export { default as SiIntermarche, defaultColor as SiIntermarcheHex } from './icons/SiIntermarche.mjs'; +export { default as SiInternetarchive, defaultColor as SiInternetarchiveHex } from './icons/SiInternetarchive.mjs'; +export { default as SiInternetcomputer, defaultColor as SiInternetcomputerHex } from './icons/SiInternetcomputer.mjs'; +export { default as SiIntigriti, defaultColor as SiIntigritiHex } from './icons/SiIntigriti.mjs'; +export { default as SiIntuit, defaultColor as SiIntuitHex } from './icons/SiIntuit.mjs'; +export { default as SiInvidious, defaultColor as SiInvidiousHex } from './icons/SiInvidious.mjs'; +export { default as SiInvoiceninja, defaultColor as SiInvoiceninjaHex } from './icons/SiInvoiceninja.mjs'; +export { default as SiIobroker, defaultColor as SiIobrokerHex } from './icons/SiIobroker.mjs'; +export { default as SiIonic, defaultColor as SiIonicHex } from './icons/SiIonic.mjs'; +export { default as SiIonos, defaultColor as SiIonosHex } from './icons/SiIonos.mjs'; +export { default as SiIos, defaultColor as SiIosHex } from './icons/SiIos.mjs'; +export { default as SiIota, defaultColor as SiIotaHex } from './icons/SiIota.mjs'; +export { default as SiIpfs, defaultColor as SiIpfsHex } from './icons/SiIpfs.mjs'; +export { default as SiIris, defaultColor as SiIrisHex } from './icons/SiIris.mjs'; +export { default as SiIrobot, defaultColor as SiIrobotHex } from './icons/SiIrobot.mjs'; +export { default as SiIsc2, defaultColor as SiIsc2Hex } from './icons/SiIsc2.mjs'; +export { default as SiIsro, defaultColor as SiIsroHex } from './icons/SiIsro.mjs'; +export { default as SiIssuu, defaultColor as SiIssuuHex } from './icons/SiIssuu.mjs'; +export { default as SiIstio, defaultColor as SiIstioHex } from './icons/SiIstio.mjs'; +export { default as SiItchdotio, defaultColor as SiItchdotioHex } from './icons/SiItchdotio.mjs'; +export { default as SiIterm2, defaultColor as SiIterm2Hex } from './icons/SiIterm2.mjs'; +export { default as SiItunes, defaultColor as SiItunesHex } from './icons/SiItunes.mjs'; +export { default as SiItvx, defaultColor as SiItvxHex } from './icons/SiItvx.mjs'; +export { default as SiIveco, defaultColor as SiIvecoHex } from './icons/SiIveco.mjs'; +export { default as SiJabber, defaultColor as SiJabberHex } from './icons/SiJabber.mjs'; +export { default as SiJaeger, defaultColor as SiJaegerHex } from './icons/SiJaeger.mjs'; +export { default as SiJameson, defaultColor as SiJamesonHex } from './icons/SiJameson.mjs'; +export { default as SiJamstack, defaultColor as SiJamstackHex } from './icons/SiJamstack.mjs'; +export { default as SiJapanairlines, defaultColor as SiJapanairlinesHex } from './icons/SiJapanairlines.mjs'; +export { default as SiJasmine, defaultColor as SiJasmineHex } from './icons/SiJasmine.mjs'; +export { default as SiJavascript, defaultColor as SiJavascriptHex } from './icons/SiJavascript.mjs'; +export { default as SiJbl, defaultColor as SiJblHex } from './icons/SiJbl.mjs'; +export { default as SiJcb, defaultColor as SiJcbHex } from './icons/SiJcb.mjs'; +export { default as SiJdoodle, defaultColor as SiJdoodleHex } from './icons/SiJdoodle.mjs'; +export { default as SiJeep, defaultColor as SiJeepHex } from './icons/SiJeep.mjs'; +export { default as SiJekyll, defaultColor as SiJekyllHex } from './icons/SiJekyll.mjs'; +export { default as SiJellyfin, defaultColor as SiJellyfinHex } from './icons/SiJellyfin.mjs'; +export { default as SiJenkins, defaultColor as SiJenkinsHex } from './icons/SiJenkins.mjs'; +export { default as SiJest, defaultColor as SiJestHex } from './icons/SiJest.mjs'; +export { default as SiJet, defaultColor as SiJetHex } from './icons/SiJet.mjs'; +export { default as SiJetblue, defaultColor as SiJetblueHex } from './icons/SiJetblue.mjs'; +export { default as SiJetbrains, defaultColor as SiJetbrainsHex } from './icons/SiJetbrains.mjs'; +export { default as SiJetpackcompose, defaultColor as SiJetpackcomposeHex } from './icons/SiJetpackcompose.mjs'; +export { default as SiJfrog, defaultColor as SiJfrogHex } from './icons/SiJfrog.mjs'; +export { default as SiJfrogpipelines, defaultColor as SiJfrogpipelinesHex } from './icons/SiJfrogpipelines.mjs'; +export { default as SiJhipster, defaultColor as SiJhipsterHex } from './icons/SiJhipster.mjs'; +export { default as SiJinja, defaultColor as SiJinjaHex } from './icons/SiJinja.mjs'; +export { default as SiJio, defaultColor as SiJioHex } from './icons/SiJio.mjs'; +export { default as SiJira, defaultColor as SiJiraHex } from './icons/SiJira.mjs'; +export { default as SiJirasoftware, defaultColor as SiJirasoftwareHex } from './icons/SiJirasoftware.mjs'; +export { default as SiJitpack, defaultColor as SiJitpackHex } from './icons/SiJitpack.mjs'; +export { default as SiJitsi, defaultColor as SiJitsiHex } from './icons/SiJitsi.mjs'; +export { default as SiJohndeere, defaultColor as SiJohndeereHex } from './icons/SiJohndeere.mjs'; +export { default as SiJoomla, defaultColor as SiJoomlaHex } from './icons/SiJoomla.mjs'; +export { default as SiJoplin, defaultColor as SiJoplinHex } from './icons/SiJoplin.mjs'; +export { default as SiJordan, defaultColor as SiJordanHex } from './icons/SiJordan.mjs'; +export { default as SiJouav, defaultColor as SiJouavHex } from './icons/SiJouav.mjs'; +export { default as SiJovian, defaultColor as SiJovianHex } from './icons/SiJovian.mjs'; +export { default as SiJpeg, defaultColor as SiJpegHex } from './icons/SiJpeg.mjs'; +export { default as SiJquery, defaultColor as SiJqueryHex } from './icons/SiJquery.mjs'; +export { default as SiJrgroup, defaultColor as SiJrgroupHex } from './icons/SiJrgroup.mjs'; +export { default as SiJsdelivr, defaultColor as SiJsdelivrHex } from './icons/SiJsdelivr.mjs'; +export { default as SiJsfiddle, defaultColor as SiJsfiddleHex } from './icons/SiJsfiddle.mjs'; +export { default as SiJson, defaultColor as SiJsonHex } from './icons/SiJson.mjs'; +export { default as SiJsonwebtokens, defaultColor as SiJsonwebtokensHex } from './icons/SiJsonwebtokens.mjs'; +export { default as SiJsr, defaultColor as SiJsrHex } from './icons/SiJsr.mjs'; +export { default as SiJss, defaultColor as SiJssHex } from './icons/SiJss.mjs'; +export { default as SiJuce, defaultColor as SiJuceHex } from './icons/SiJuce.mjs'; +export { default as SiJuejin, defaultColor as SiJuejinHex } from './icons/SiJuejin.mjs'; +export { default as SiJuke, defaultColor as SiJukeHex } from './icons/SiJuke.mjs'; +export { default as SiJulia, defaultColor as SiJuliaHex } from './icons/SiJulia.mjs'; +export { default as SiJunipernetworks, defaultColor as SiJunipernetworksHex } from './icons/SiJunipernetworks.mjs'; +export { default as SiJunit5, defaultColor as SiJunit5Hex } from './icons/SiJunit5.mjs'; +export { default as SiJupyter, defaultColor as SiJupyterHex } from './icons/SiJupyter.mjs'; +export { default as SiJust, defaultColor as SiJustHex } from './icons/SiJust.mjs'; +export { default as SiJusteat, defaultColor as SiJusteatHex } from './icons/SiJusteat.mjs'; +export { default as SiJustgiving, defaultColor as SiJustgivingHex } from './icons/SiJustgiving.mjs'; +export { default as SiK3s, defaultColor as SiK3sHex } from './icons/SiK3s.mjs'; +export { default as SiK6, defaultColor as SiK6Hex } from './icons/SiK6.mjs'; +export { default as SiKaggle, defaultColor as SiKaggleHex } from './icons/SiKaggle.mjs'; +export { default as SiKagi, defaultColor as SiKagiHex } from './icons/SiKagi.mjs'; +export { default as SiKahoot, defaultColor as SiKahootHex } from './icons/SiKahoot.mjs'; +export { default as SiKaios, defaultColor as SiKaiosHex } from './icons/SiKaios.mjs'; +export { default as SiKakao, defaultColor as SiKakaoHex } from './icons/SiKakao.mjs'; +export { default as SiKakaotalk, defaultColor as SiKakaotalkHex } from './icons/SiKakaotalk.mjs'; +export { default as SiKalilinux, defaultColor as SiKalilinuxHex } from './icons/SiKalilinux.mjs'; +export { default as SiKamailio, defaultColor as SiKamailioHex } from './icons/SiKamailio.mjs'; +export { default as SiKando, defaultColor as SiKandoHex } from './icons/SiKando.mjs'; +export { default as SiKaniko, defaultColor as SiKanikoHex } from './icons/SiKaniko.mjs'; +export { default as SiKarlsruherverkehrsverbund, defaultColor as SiKarlsruherverkehrsverbundHex } from './icons/SiKarlsruherverkehrsverbund.mjs'; +export { default as SiKasasmart, defaultColor as SiKasasmartHex } from './icons/SiKasasmart.mjs'; +export { default as SiKashflow, defaultColor as SiKashflowHex } from './icons/SiKashflow.mjs'; +export { default as SiKaspersky, defaultColor as SiKasperskyHex } from './icons/SiKaspersky.mjs'; +export { default as SiKatana, defaultColor as SiKatanaHex } from './icons/SiKatana.mjs'; +export { default as SiKaufland, defaultColor as SiKauflandHex } from './icons/SiKaufland.mjs'; +export { default as SiKde, defaultColor as SiKdeHex } from './icons/SiKde.mjs'; +export { default as SiKdeneon, defaultColor as SiKdeneonHex } from './icons/SiKdeneon.mjs'; +export { default as SiKdenlive, defaultColor as SiKdenliveHex } from './icons/SiKdenlive.mjs'; +export { default as SiKdeplasma, defaultColor as SiKdeplasmaHex } from './icons/SiKdeplasma.mjs'; +export { default as SiKedro, defaultColor as SiKedroHex } from './icons/SiKedro.mjs'; +export { default as SiKeenetic, defaultColor as SiKeeneticHex } from './icons/SiKeenetic.mjs'; +export { default as SiKeepachangelog, defaultColor as SiKeepachangelogHex } from './icons/SiKeepachangelog.mjs'; +export { default as SiKeepassxc, defaultColor as SiKeepassxcHex } from './icons/SiKeepassxc.mjs'; +export { default as SiKeeper, defaultColor as SiKeeperHex } from './icons/SiKeeper.mjs'; +export { default as SiKeeweb, defaultColor as SiKeewebHex } from './icons/SiKeeweb.mjs'; +export { default as SiKenmei, defaultColor as SiKenmeiHex } from './icons/SiKenmei.mjs'; +export { default as SiKentico, defaultColor as SiKenticoHex } from './icons/SiKentico.mjs'; +export { default as SiKeploy, defaultColor as SiKeployHex } from './icons/SiKeploy.mjs'; +export { default as SiKeras, defaultColor as SiKerasHex } from './icons/SiKeras.mjs'; +export { default as SiKeybase, defaultColor as SiKeybaseHex } from './icons/SiKeybase.mjs'; +export { default as SiKeycdn, defaultColor as SiKeycdnHex } from './icons/SiKeycdn.mjs'; +export { default as SiKeycloak, defaultColor as SiKeycloakHex } from './icons/SiKeycloak.mjs'; +export { default as SiKeystone, defaultColor as SiKeystoneHex } from './icons/SiKeystone.mjs'; +export { default as SiKfc, defaultColor as SiKfcHex } from './icons/SiKfc.mjs'; +export { default as SiKhanacademy, defaultColor as SiKhanacademyHex } from './icons/SiKhanacademy.mjs'; +export { default as SiKhronosgroup, defaultColor as SiKhronosgroupHex } from './icons/SiKhronosgroup.mjs'; +export { default as SiKia, defaultColor as SiKiaHex } from './icons/SiKia.mjs'; +export { default as SiKibana, defaultColor as SiKibanaHex } from './icons/SiKibana.mjs'; +export { default as SiKicad, defaultColor as SiKicadHex } from './icons/SiKicad.mjs'; +export { default as SiKick, defaultColor as SiKickHex } from './icons/SiKick.mjs'; +export { default as SiKickstarter, defaultColor as SiKickstarterHex } from './icons/SiKickstarter.mjs'; +export { default as SiKik, defaultColor as SiKikHex } from './icons/SiKik.mjs'; +export { default as SiKingstontechnology, defaultColor as SiKingstontechnologyHex } from './icons/SiKingstontechnology.mjs'; +export { default as SiKinopoisk, defaultColor as SiKinopoiskHex } from './icons/SiKinopoisk.mjs'; +export { default as SiKinsta, defaultColor as SiKinstaHex } from './icons/SiKinsta.mjs'; +export { default as SiKirby, defaultColor as SiKirbyHex } from './icons/SiKirby.mjs'; +export { default as SiKit, defaultColor as SiKitHex } from './icons/SiKit.mjs'; +export { default as SiKitsu, defaultColor as SiKitsuHex } from './icons/SiKitsu.mjs'; +export { default as SiKiwix, defaultColor as SiKiwixHex } from './icons/SiKiwix.mjs'; +export { default as SiKlarna, defaultColor as SiKlarnaHex } from './icons/SiKlarna.mjs'; +export { default as SiKleinanzeigen, defaultColor as SiKleinanzeigenHex } from './icons/SiKleinanzeigen.mjs'; +export { default as SiKlm, defaultColor as SiKlmHex } from './icons/SiKlm.mjs'; +export { default as SiKlook, defaultColor as SiKlookHex } from './icons/SiKlook.mjs'; +export { default as SiKnative, defaultColor as SiKnativeHex } from './icons/SiKnative.mjs'; +export { default as SiKnexdotjs, defaultColor as SiKnexdotjsHex } from './icons/SiKnexdotjs.mjs'; +export { default as SiKnime, defaultColor as SiKnimeHex } from './icons/SiKnime.mjs'; +export { default as SiKnip, defaultColor as SiKnipHex } from './icons/SiKnip.mjs'; +export { default as SiKnowledgebase, defaultColor as SiKnowledgebaseHex } from './icons/SiKnowledgebase.mjs'; +export { default as SiKnown, defaultColor as SiKnownHex } from './icons/SiKnown.mjs'; +export { default as SiKoa, defaultColor as SiKoaHex } from './icons/SiKoa.mjs'; +export { default as SiKoc, defaultColor as SiKocHex } from './icons/SiKoc.mjs'; +export { default as SiKodak, defaultColor as SiKodakHex } from './icons/SiKodak.mjs'; +export { default as SiKodi, defaultColor as SiKodiHex } from './icons/SiKodi.mjs'; +export { default as SiKodular, defaultColor as SiKodularHex } from './icons/SiKodular.mjs'; +export { default as SiKoenigsegg, defaultColor as SiKoenigseggHex } from './icons/SiKoenigsegg.mjs'; +export { default as SiKofax, defaultColor as SiKofaxHex } from './icons/SiKofax.mjs'; +export { default as SiKofi, defaultColor as SiKofiHex } from './icons/SiKofi.mjs'; +export { default as SiKomoot, defaultColor as SiKomootHex } from './icons/SiKomoot.mjs'; +export { default as SiKonami, defaultColor as SiKonamiHex } from './icons/SiKonami.mjs'; +export { default as SiKong, defaultColor as SiKongHex } from './icons/SiKong.mjs'; +export { default as SiKongregate, defaultColor as SiKongregateHex } from './icons/SiKongregate.mjs'; +export { default as SiKonva, defaultColor as SiKonvaHex } from './icons/SiKonva.mjs'; +export { default as SiKoreader, defaultColor as SiKoreaderHex } from './icons/SiKoreader.mjs'; +export { default as SiKotlin, defaultColor as SiKotlinHex } from './icons/SiKotlin.mjs'; +export { default as SiKoyeb, defaultColor as SiKoyebHex } from './icons/SiKoyeb.mjs'; +export { default as SiKred, defaultColor as SiKredHex } from './icons/SiKred.mjs'; +export { default as SiKrita, defaultColor as SiKritaHex } from './icons/SiKrita.mjs'; +export { default as SiKtm, defaultColor as SiKtmHex } from './icons/SiKtm.mjs'; +export { default as SiKtor, defaultColor as SiKtorHex } from './icons/SiKtor.mjs'; +export { default as SiKuaishou, defaultColor as SiKuaishouHex } from './icons/SiKuaishou.mjs'; +export { default as SiKubernetes, defaultColor as SiKubernetesHex } from './icons/SiKubernetes.mjs'; +export { default as SiKubespray, defaultColor as SiKubesprayHex } from './icons/SiKubespray.mjs'; +export { default as SiKubuntu, defaultColor as SiKubuntuHex } from './icons/SiKubuntu.mjs'; +export { default as SiKucoin, defaultColor as SiKucoinHex } from './icons/SiKucoin.mjs'; +export { default as SiKueski, defaultColor as SiKueskiHex } from './icons/SiKueski.mjs'; +export { default as SiKuma, defaultColor as SiKumaHex } from './icons/SiKuma.mjs'; +export { default as SiKununu, defaultColor as SiKununuHex } from './icons/SiKununu.mjs'; +export { default as SiKuula, defaultColor as SiKuulaHex } from './icons/SiKuula.mjs'; +export { default as SiKx, defaultColor as SiKxHex } from './icons/SiKx.mjs'; +export { default as SiKyocera, defaultColor as SiKyoceraHex } from './icons/SiKyocera.mjs'; +export { default as SiLabex, defaultColor as SiLabexHex } from './icons/SiLabex.mjs'; +export { default as SiLabview, defaultColor as SiLabviewHex } from './icons/SiLabview.mjs'; +export { default as SiLada, defaultColor as SiLadaHex } from './icons/SiLada.mjs'; +export { default as SiLamborghini, defaultColor as SiLamborghiniHex } from './icons/SiLamborghini.mjs'; +export { default as SiLangchain, defaultColor as SiLangchainHex } from './icons/SiLangchain.mjs'; +export { default as SiLangflow, defaultColor as SiLangflowHex } from './icons/SiLangflow.mjs'; +export { default as SiLanggraph, defaultColor as SiLanggraphHex } from './icons/SiLanggraph.mjs'; +export { default as SiLanguagetool, defaultColor as SiLanguagetoolHex } from './icons/SiLanguagetool.mjs'; +export { default as SiLapce, defaultColor as SiLapceHex } from './icons/SiLapce.mjs'; +export { default as SiLaragon, defaultColor as SiLaragonHex } from './icons/SiLaragon.mjs'; +export { default as SiLaravel, defaultColor as SiLaravelHex } from './icons/SiLaravel.mjs'; +export { default as SiLaravelhorizon, defaultColor as SiLaravelhorizonHex } from './icons/SiLaravelhorizon.mjs'; +export { default as SiLaravelnova, defaultColor as SiLaravelnovaHex } from './icons/SiLaravelnova.mjs'; +export { default as SiLastdotfm, defaultColor as SiLastdotfmHex } from './icons/SiLastdotfm.mjs'; +export { default as SiLastpass, defaultColor as SiLastpassHex } from './icons/SiLastpass.mjs'; +export { default as SiLatex, defaultColor as SiLatexHex } from './icons/SiLatex.mjs'; +export { default as SiLaunchpad, defaultColor as SiLaunchpadHex } from './icons/SiLaunchpad.mjs'; +export { default as SiLazarus, defaultColor as SiLazarusHex } from './icons/SiLazarus.mjs'; +export { default as SiLazyvim, defaultColor as SiLazyvimHex } from './icons/SiLazyvim.mjs'; +export { default as SiLbry, defaultColor as SiLbryHex } from './icons/SiLbry.mjs'; +export { default as SiLeaderprice, defaultColor as SiLeaderpriceHex } from './icons/SiLeaderprice.mjs'; +export { default as SiLeaflet, defaultColor as SiLeafletHex } from './icons/SiLeaflet.mjs'; +export { default as SiLeagueoflegends, defaultColor as SiLeagueoflegendsHex } from './icons/SiLeagueoflegends.mjs'; +export { default as SiLeanpub, defaultColor as SiLeanpubHex } from './icons/SiLeanpub.mjs'; +export { default as SiLeetcode, defaultColor as SiLeetcodeHex } from './icons/SiLeetcode.mjs'; +export { default as SiLefthook, defaultColor as SiLefthookHex } from './icons/SiLefthook.mjs'; +export { default as SiLegacygames, defaultColor as SiLegacygamesHex } from './icons/SiLegacygames.mjs'; +export { default as SiLeica, defaultColor as SiLeicaHex } from './icons/SiLeica.mjs'; +export { default as SiLemmy, defaultColor as SiLemmyHex } from './icons/SiLemmy.mjs'; +export { default as SiLemonsqueezy, defaultColor as SiLemonsqueezyHex } from './icons/SiLemonsqueezy.mjs'; +export { default as SiLenovo, defaultColor as SiLenovoHex } from './icons/SiLenovo.mjs'; +export { default as SiLens, defaultColor as SiLensHex } from './icons/SiLens.mjs'; +export { default as SiLeptos, defaultColor as SiLeptosHex } from './icons/SiLeptos.mjs'; +export { default as SiLequipe, defaultColor as SiLequipeHex } from './icons/SiLequipe.mjs'; +export { default as SiLerna, defaultColor as SiLernaHex } from './icons/SiLerna.mjs'; +export { default as SiLeroymerlin, defaultColor as SiLeroymerlinHex } from './icons/SiLeroymerlin.mjs'; +export { default as SiLeslibraires, defaultColor as SiLeslibrairesHex } from './icons/SiLeslibraires.mjs'; +export { default as SiLess, defaultColor as SiLessHex } from './icons/SiLess.mjs'; +export { default as SiLetsencrypt, defaultColor as SiLetsencryptHex } from './icons/SiLetsencrypt.mjs'; +export { default as SiLetterboxd, defaultColor as SiLetterboxdHex } from './icons/SiLetterboxd.mjs'; +export { default as SiLevelsdotfyi, defaultColor as SiLevelsdotfyiHex } from './icons/SiLevelsdotfyi.mjs'; +export { default as SiLg, defaultColor as SiLgHex } from './icons/SiLg.mjs'; +export { default as SiLiberadotchat, defaultColor as SiLiberadotchatHex } from './icons/SiLiberadotchat.mjs'; +export { default as SiLiberapay, defaultColor as SiLiberapayHex } from './icons/SiLiberapay.mjs'; +export { default as SiLibrariesdotio, defaultColor as SiLibrariesdotioHex } from './icons/SiLibrariesdotio.mjs'; +export { default as SiLibrarything, defaultColor as SiLibrarythingHex } from './icons/SiLibrarything.mjs'; +export { default as SiLibreoffice, defaultColor as SiLibreofficeHex } from './icons/SiLibreoffice.mjs'; +export { default as SiLibreofficebase, defaultColor as SiLibreofficebaseHex } from './icons/SiLibreofficebase.mjs'; +export { default as SiLibreofficecalc, defaultColor as SiLibreofficecalcHex } from './icons/SiLibreofficecalc.mjs'; +export { default as SiLibreofficedraw, defaultColor as SiLibreofficedrawHex } from './icons/SiLibreofficedraw.mjs'; +export { default as SiLibreofficeimpress, defaultColor as SiLibreofficeimpressHex } from './icons/SiLibreofficeimpress.mjs'; +export { default as SiLibreofficemath, defaultColor as SiLibreofficemathHex } from './icons/SiLibreofficemath.mjs'; +export { default as SiLibreofficewriter, defaultColor as SiLibreofficewriterHex } from './icons/SiLibreofficewriter.mjs'; +export { default as SiLibretranslate, defaultColor as SiLibretranslateHex } from './icons/SiLibretranslate.mjs'; +export { default as SiLibretube, defaultColor as SiLibretubeHex } from './icons/SiLibretube.mjs'; +export { default as SiLibrewolf, defaultColor as SiLibrewolfHex } from './icons/SiLibrewolf.mjs'; +export { default as SiLibuv, defaultColor as SiLibuvHex } from './icons/SiLibuv.mjs'; +export { default as SiLichess, defaultColor as SiLichessHex } from './icons/SiLichess.mjs'; +export { default as SiLidl, defaultColor as SiLidlHex } from './icons/SiLidl.mjs'; +export { default as SiLifx, defaultColor as SiLifxHex } from './icons/SiLifx.mjs'; +export { default as SiLightburn, defaultColor as SiLightburnHex } from './icons/SiLightburn.mjs'; +export { default as SiLighthouse, defaultColor as SiLighthouseHex } from './icons/SiLighthouse.mjs'; +export { default as SiLightning, defaultColor as SiLightningHex } from './icons/SiLightning.mjs'; +export { default as SiLimesurvey, defaultColor as SiLimesurveyHex } from './icons/SiLimesurvey.mjs'; +export { default as SiLine, defaultColor as SiLineHex } from './icons/SiLine.mjs'; +export { default as SiLineageos, defaultColor as SiLineageosHex } from './icons/SiLineageos.mjs'; +export { default as SiLinear, defaultColor as SiLinearHex } from './icons/SiLinear.mjs'; +export { default as SiLining, defaultColor as SiLiningHex } from './icons/SiLining.mjs'; +export { default as SiLinkerd, defaultColor as SiLinkerdHex } from './icons/SiLinkerd.mjs'; +export { default as SiLinkfire, defaultColor as SiLinkfireHex } from './icons/SiLinkfire.mjs'; +export { default as SiLinksys, defaultColor as SiLinksysHex } from './icons/SiLinksys.mjs'; +export { default as SiLinktree, defaultColor as SiLinktreeHex } from './icons/SiLinktree.mjs'; +export { default as SiLinphone, defaultColor as SiLinphoneHex } from './icons/SiLinphone.mjs'; +export { default as SiLintcode, defaultColor as SiLintcodeHex } from './icons/SiLintcode.mjs'; +export { default as SiLinux, defaultColor as SiLinuxHex } from './icons/SiLinux.mjs'; +export { default as SiLinuxcontainers, defaultColor as SiLinuxcontainersHex } from './icons/SiLinuxcontainers.mjs'; +export { default as SiLinuxfoundation, defaultColor as SiLinuxfoundationHex } from './icons/SiLinuxfoundation.mjs'; +export { default as SiLinuxmint, defaultColor as SiLinuxmintHex } from './icons/SiLinuxmint.mjs'; +export { default as SiLinuxprofessionalinstitute, defaultColor as SiLinuxprofessionalinstituteHex } from './icons/SiLinuxprofessionalinstitute.mjs'; +export { default as SiLinuxserver, defaultColor as SiLinuxserverHex } from './icons/SiLinuxserver.mjs'; +export { default as SiLionair, defaultColor as SiLionairHex } from './icons/SiLionair.mjs'; +export { default as SiLiquibase, defaultColor as SiLiquibaseHex } from './icons/SiLiquibase.mjs'; +export { default as SiListenhub, defaultColor as SiListenhubHex } from './icons/SiListenhub.mjs'; +export { default as SiListmonk, defaultColor as SiListmonkHex } from './icons/SiListmonk.mjs'; +export { default as SiLit, defaultColor as SiLitHex } from './icons/SiLit.mjs'; +export { default as SiLitecoin, defaultColor as SiLitecoinHex } from './icons/SiLitecoin.mjs'; +export { default as SiLiteral, defaultColor as SiLiteralHex } from './icons/SiLiteral.mjs'; +export { default as SiLitiengine, defaultColor as SiLitiengineHex } from './icons/SiLitiengine.mjs'; +export { default as SiLivechat, defaultColor as SiLivechatHex } from './icons/SiLivechat.mjs'; +export { default as SiLivejournal, defaultColor as SiLivejournalHex } from './icons/SiLivejournal.mjs'; +export { default as SiLivekit, defaultColor as SiLivekitHex } from './icons/SiLivekit.mjs'; +export { default as SiLivewire, defaultColor as SiLivewireHex } from './icons/SiLivewire.mjs'; +export { default as SiLlvm, defaultColor as SiLlvmHex } from './icons/SiLlvm.mjs'; +export { default as SiLmms, defaultColor as SiLmmsHex } from './icons/SiLmms.mjs'; +export { default as SiLobsters, defaultColor as SiLobstersHex } from './icons/SiLobsters.mjs'; +export { default as SiLocal, defaultColor as SiLocalHex } from './icons/SiLocal.mjs'; +export { default as SiLocalsend, defaultColor as SiLocalsendHex } from './icons/SiLocalsend.mjs'; +export { default as SiLocalxpose, defaultColor as SiLocalxposeHex } from './icons/SiLocalxpose.mjs'; +export { default as SiLodash, defaultColor as SiLodashHex } from './icons/SiLodash.mjs'; +export { default as SiLogmein, defaultColor as SiLogmeinHex } from './icons/SiLogmein.mjs'; +export { default as SiLogseq, defaultColor as SiLogseqHex } from './icons/SiLogseq.mjs'; +export { default as SiLogstash, defaultColor as SiLogstashHex } from './icons/SiLogstash.mjs'; +export { default as SiLooker, defaultColor as SiLookerHex } from './icons/SiLooker.mjs'; +export { default as SiLoom, defaultColor as SiLoomHex } from './icons/SiLoom.mjs'; +export { default as SiLoop, defaultColor as SiLoopHex } from './icons/SiLoop.mjs'; +export { default as SiLoopback, defaultColor as SiLoopbackHex } from './icons/SiLoopback.mjs'; +export { default as SiLootcrate, defaultColor as SiLootcrateHex } from './icons/SiLootcrate.mjs'; +export { default as SiLospec, defaultColor as SiLospecHex } from './icons/SiLospec.mjs'; +export { default as SiLotpolishairlines, defaultColor as SiLotpolishairlinesHex } from './icons/SiLotpolishairlines.mjs'; +export { default as SiLottiefiles, defaultColor as SiLottiefilesHex } from './icons/SiLottiefiles.mjs'; +export { default as SiLtspice, defaultColor as SiLtspiceHex } from './icons/SiLtspice.mjs'; +export { default as SiLua, defaultColor as SiLuaHex } from './icons/SiLua.mjs'; +export { default as SiLuanti, defaultColor as SiLuantiHex } from './icons/SiLuanti.mjs'; +export { default as SiLuau, defaultColor as SiLuauHex } from './icons/SiLuau.mjs'; +export { default as SiLubuntu, defaultColor as SiLubuntuHex } from './icons/SiLubuntu.mjs'; +export { default as SiLucia, defaultColor as SiLuciaHex } from './icons/SiLucia.mjs'; +export { default as SiLucid, defaultColor as SiLucidHex } from './icons/SiLucid.mjs'; +export { default as SiLucide, defaultColor as SiLucideHex } from './icons/SiLucide.mjs'; +export { default as SiLudwig, defaultColor as SiLudwigHex } from './icons/SiLudwig.mjs'; +export { default as SiLufthansa, defaultColor as SiLufthansaHex } from './icons/SiLufthansa.mjs'; +export { default as SiLumen, defaultColor as SiLumenHex } from './icons/SiLumen.mjs'; +export { default as SiLunacy, defaultColor as SiLunacyHex } from './icons/SiLunacy.mjs'; +export { default as SiLuogu, defaultColor as SiLuoguHex } from './icons/SiLuogu.mjs'; +export { default as SiLutris, defaultColor as SiLutrisHex } from './icons/SiLutris.mjs'; +export { default as SiLvgl, defaultColor as SiLvglHex } from './icons/SiLvgl.mjs'; +export { default as SiLydia, defaultColor as SiLydiaHex } from './icons/SiLydia.mjs'; +export { default as SiLyft, defaultColor as SiLyftHex } from './icons/SiLyft.mjs'; +export { default as SiMaas, defaultColor as SiMaasHex } from './icons/SiMaas.mjs'; +export { default as SiMacos, defaultColor as SiMacosHex } from './icons/SiMacos.mjs'; +export { default as SiMacpaw, defaultColor as SiMacpawHex } from './icons/SiMacpaw.mjs'; +export { default as SiMacports, defaultColor as SiMacportsHex } from './icons/SiMacports.mjs'; +export { default as SiMacys, defaultColor as SiMacysHex } from './icons/SiMacys.mjs'; +export { default as SiMagasinsu, defaultColor as SiMagasinsuHex } from './icons/SiMagasinsu.mjs'; +export { default as SiMagic, defaultColor as SiMagicHex } from './icons/SiMagic.mjs'; +export { default as SiMagisk, defaultColor as SiMagiskHex } from './icons/SiMagisk.mjs'; +export { default as SiMahindra, defaultColor as SiMahindraHex } from './icons/SiMahindra.mjs'; +export { default as SiMailbox, defaultColor as SiMailboxHex } from './icons/SiMailbox.mjs'; +export { default as SiMailchimp, defaultColor as SiMailchimpHex } from './icons/SiMailchimp.mjs'; +export { default as SiMaildotcom, defaultColor as SiMaildotcomHex } from './icons/SiMaildotcom.mjs'; +export { default as SiMaildotru, defaultColor as SiMaildotruHex } from './icons/SiMaildotru.mjs'; +export { default as SiMailgun, defaultColor as SiMailgunHex } from './icons/SiMailgun.mjs'; +export { default as SiMailtrap, defaultColor as SiMailtrapHex } from './icons/SiMailtrap.mjs'; +export { default as SiMainwp, defaultColor as SiMainwpHex } from './icons/SiMainwp.mjs'; +export { default as SiMajorleaguehacking, defaultColor as SiMajorleaguehackingHex } from './icons/SiMajorleaguehacking.mjs'; +export { default as SiMake, defaultColor as SiMakeHex } from './icons/SiMake.mjs'; +export { default as SiMakerbot, defaultColor as SiMakerbotHex } from './icons/SiMakerbot.mjs'; +export { default as SiMalt, defaultColor as SiMaltHex } from './icons/SiMalt.mjs'; +export { default as SiMalwarebytes, defaultColor as SiMalwarebytesHex } from './icons/SiMalwarebytes.mjs'; +export { default as SiMambaui, defaultColor as SiMambauiHex } from './icons/SiMambaui.mjs'; +export { default as SiMamp, defaultColor as SiMampHex } from './icons/SiMamp.mjs'; +export { default as SiMan, defaultColor as SiManHex } from './icons/SiMan.mjs'; +export { default as SiManageiq, defaultColor as SiManageiqHex } from './icons/SiManageiq.mjs'; +export { default as SiMangacollec, defaultColor as SiMangacollecHex } from './icons/SiMangacollec.mjs'; +export { default as SiMangaupdates, defaultColor as SiMangaupdatesHex } from './icons/SiMangaupdates.mjs'; +export { default as SiManjaro, defaultColor as SiManjaroHex } from './icons/SiManjaro.mjs'; +export { default as SiMantine, defaultColor as SiMantineHex } from './icons/SiMantine.mjs'; +export { default as SiMapbox, defaultColor as SiMapboxHex } from './icons/SiMapbox.mjs'; +export { default as SiMapillary, defaultColor as SiMapillaryHex } from './icons/SiMapillary.mjs'; +export { default as SiMaplibre, defaultColor as SiMaplibreHex } from './icons/SiMaplibre.mjs'; +export { default as SiMaptiler, defaultColor as SiMaptilerHex } from './icons/SiMaptiler.mjs'; +export { default as SiMariadb, defaultColor as SiMariadbHex } from './icons/SiMariadb.mjs'; +export { default as SiMariadbfoundation, defaultColor as SiMariadbfoundationHex } from './icons/SiMariadbfoundation.mjs'; +export { default as SiMarkdown, defaultColor as SiMarkdownHex } from './icons/SiMarkdown.mjs'; +export { default as SiMarko, defaultColor as SiMarkoHex } from './icons/SiMarko.mjs'; +export { default as SiMarriott, defaultColor as SiMarriottHex } from './icons/SiMarriott.mjs'; +export { default as SiMarvelapp, defaultColor as SiMarvelappHex } from './icons/SiMarvelapp.mjs'; +export { default as SiMaserati, defaultColor as SiMaseratiHex } from './icons/SiMaserati.mjs'; +export { default as SiMastercard, defaultColor as SiMastercardHex } from './icons/SiMastercard.mjs'; +export { default as SiMastercomfig, defaultColor as SiMastercomfigHex } from './icons/SiMastercomfig.mjs'; +export { default as SiMastodon, defaultColor as SiMastodonHex } from './icons/SiMastodon.mjs'; +export { default as SiMaterialdesign, defaultColor as SiMaterialdesignHex } from './icons/SiMaterialdesign.mjs'; +export { default as SiMaterialdesignicons, defaultColor as SiMaterialdesigniconsHex } from './icons/SiMaterialdesignicons.mjs'; +export { default as SiMaterialformkdocs, defaultColor as SiMaterialformkdocsHex } from './icons/SiMaterialformkdocs.mjs'; +export { default as SiMatillion, defaultColor as SiMatillionHex } from './icons/SiMatillion.mjs'; +export { default as SiMatomo, defaultColor as SiMatomoHex } from './icons/SiMatomo.mjs'; +export { default as SiMatrix, defaultColor as SiMatrixHex } from './icons/SiMatrix.mjs'; +export { default as SiMatterdotjs, defaultColor as SiMatterdotjsHex } from './icons/SiMatterdotjs.mjs'; +export { default as SiMattermost, defaultColor as SiMattermostHex } from './icons/SiMattermost.mjs'; +export { default as SiMatternet, defaultColor as SiMatternetHex } from './icons/SiMatternet.mjs'; +export { default as SiMautic, defaultColor as SiMauticHex } from './icons/SiMautic.mjs'; +export { default as SiMax, defaultColor as SiMaxHex } from './icons/SiMax.mjs'; +export { default as SiMaxplanckgesellschaft, defaultColor as SiMaxplanckgesellschaftHex } from './icons/SiMaxplanckgesellschaft.mjs'; +export { default as SiMaytag, defaultColor as SiMaytagHex } from './icons/SiMaytag.mjs'; +export { default as SiMazda, defaultColor as SiMazdaHex } from './icons/SiMazda.mjs'; +export { default as SiMaze, defaultColor as SiMazeHex } from './icons/SiMaze.mjs'; +export { default as SiMcafee, defaultColor as SiMcafeeHex } from './icons/SiMcafee.mjs'; +export { default as SiMcdonalds, defaultColor as SiMcdonaldsHex } from './icons/SiMcdonalds.mjs'; +export { default as SiMclaren, defaultColor as SiMclarenHex } from './icons/SiMclaren.mjs'; +export { default as SiMdblist, defaultColor as SiMdblistHex } from './icons/SiMdblist.mjs'; +export { default as SiMdbook, defaultColor as SiMdbookHex } from './icons/SiMdbook.mjs'; +export { default as SiMdnwebdocs, defaultColor as SiMdnwebdocsHex } from './icons/SiMdnwebdocs.mjs'; +export { default as SiMdx, defaultColor as SiMdxHex } from './icons/SiMdx.mjs'; +export { default as SiMealie, defaultColor as SiMealieHex } from './icons/SiMealie.mjs'; +export { default as SiMediafire, defaultColor as SiMediafireHex } from './icons/SiMediafire.mjs'; +export { default as SiMediamarkt, defaultColor as SiMediamarktHex } from './icons/SiMediamarkt.mjs'; +export { default as SiMediapipe, defaultColor as SiMediapipeHex } from './icons/SiMediapipe.mjs'; +export { default as SiMediatek, defaultColor as SiMediatekHex } from './icons/SiMediatek.mjs'; +export { default as SiMedibangpaint, defaultColor as SiMedibangpaintHex } from './icons/SiMedibangpaint.mjs'; +export { default as SiMedium, defaultColor as SiMediumHex } from './icons/SiMedium.mjs'; +export { default as SiMedusa, defaultColor as SiMedusaHex } from './icons/SiMedusa.mjs'; +export { default as SiMeetup, defaultColor as SiMeetupHex } from './icons/SiMeetup.mjs'; +export { default as SiMega, defaultColor as SiMegaHex } from './icons/SiMega.mjs'; +export { default as SiMeilisearch, defaultColor as SiMeilisearchHex } from './icons/SiMeilisearch.mjs'; +export { default as SiMeituan, defaultColor as SiMeituanHex } from './icons/SiMeituan.mjs'; +export { default as SiMeizu, defaultColor as SiMeizuHex } from './icons/SiMeizu.mjs'; +export { default as SiMendeley, defaultColor as SiMendeleyHex } from './icons/SiMendeley.mjs'; +export { default as SiMentorcruise, defaultColor as SiMentorcruiseHex } from './icons/SiMentorcruise.mjs'; +export { default as SiMercadopago, defaultColor as SiMercadopagoHex } from './icons/SiMercadopago.mjs'; +export { default as SiMerck, defaultColor as SiMerckHex } from './icons/SiMerck.mjs'; +export { default as SiMercurial, defaultColor as SiMercurialHex } from './icons/SiMercurial.mjs'; +export { default as SiMermaid, defaultColor as SiMermaidHex } from './icons/SiMermaid.mjs'; +export { default as SiMessenger, defaultColor as SiMessengerHex } from './icons/SiMessenger.mjs'; +export { default as SiMeta, defaultColor as SiMetaHex } from './icons/SiMeta.mjs'; +export { default as SiMetabase, defaultColor as SiMetabaseHex } from './icons/SiMetabase.mjs'; +export { default as SiMetacritic, defaultColor as SiMetacriticHex } from './icons/SiMetacritic.mjs'; +export { default as SiMetafilter, defaultColor as SiMetafilterHex } from './icons/SiMetafilter.mjs'; +export { default as SiMetager, defaultColor as SiMetagerHex } from './icons/SiMetager.mjs'; +export { default as SiMetasploit, defaultColor as SiMetasploitHex } from './icons/SiMetasploit.mjs'; +export { default as SiMeteor, defaultColor as SiMeteorHex } from './icons/SiMeteor.mjs'; +export { default as SiMetro, defaultColor as SiMetroHex } from './icons/SiMetro.mjs'; +export { default as SiMetrodelaciudaddemexico, defaultColor as SiMetrodelaciudaddemexicoHex } from './icons/SiMetrodelaciudaddemexico.mjs'; +export { default as SiMetrodemadrid, defaultColor as SiMetrodemadridHex } from './icons/SiMetrodemadrid.mjs'; +export { default as SiMetrodeparis, defaultColor as SiMetrodeparisHex } from './icons/SiMetrodeparis.mjs'; +export { default as SiMewe, defaultColor as SiMeweHex } from './icons/SiMewe.mjs'; +export { default as SiMezmo, defaultColor as SiMezmoHex } from './icons/SiMezmo.mjs'; +export { default as SiMg, defaultColor as SiMgHex } from './icons/SiMg.mjs'; +export { default as SiMicrobit, defaultColor as SiMicrobitHex } from './icons/SiMicrobit.mjs'; +export { default as SiMicrodotblog, defaultColor as SiMicrodotblogHex } from './icons/SiMicrodotblog.mjs'; +export { default as SiMicroeditor, defaultColor as SiMicroeditorHex } from './icons/SiMicroeditor.mjs'; +export { default as SiMicropython, defaultColor as SiMicropythonHex } from './icons/SiMicropython.mjs'; +export { default as SiMicrostation, defaultColor as SiMicrostationHex } from './icons/SiMicrostation.mjs'; +export { default as SiMicrostrategy, defaultColor as SiMicrostrategyHex } from './icons/SiMicrostrategy.mjs'; +export { default as SiMidi, defaultColor as SiMidiHex } from './icons/SiMidi.mjs'; +export { default as SiMigadu, defaultColor as SiMigaduHex } from './icons/SiMigadu.mjs'; +export { default as SiMihon, defaultColor as SiMihonHex } from './icons/SiMihon.mjs'; +export { default as SiMihoyo, defaultColor as SiMihoyoHex } from './icons/SiMihoyo.mjs'; +export { default as SiMikrotik, defaultColor as SiMikrotikHex } from './icons/SiMikrotik.mjs'; +export { default as SiMilanote, defaultColor as SiMilanoteHex } from './icons/SiMilanote.mjs'; +export { default as SiMilvus, defaultColor as SiMilvusHex } from './icons/SiMilvus.mjs'; +export { default as SiMinds, defaultColor as SiMindsHex } from './icons/SiMinds.mjs'; +export { default as SiMingww64, defaultColor as SiMingww64Hex } from './icons/SiMingww64.mjs'; +export { default as SiMini, defaultColor as SiMiniHex } from './icons/SiMini.mjs'; +export { default as SiMinimax, defaultColor as SiMinimaxHex } from './icons/SiMinimax.mjs'; +export { default as SiMinio, defaultColor as SiMinioHex } from './icons/SiMinio.mjs'; +export { default as SiMintlify, defaultColor as SiMintlifyHex } from './icons/SiMintlify.mjs'; +export { default as SiMinutemailer, defaultColor as SiMinutemailerHex } from './icons/SiMinutemailer.mjs'; +export { default as SiMiraheze, defaultColor as SiMirahezeHex } from './icons/SiMiraheze.mjs'; +export { default as SiMiro, defaultColor as SiMiroHex } from './icons/SiMiro.mjs'; +export { default as SiMisskey, defaultColor as SiMisskeyHex } from './icons/SiMisskey.mjs'; +export { default as SiMistralai, defaultColor as SiMistralaiHex } from './icons/SiMistralai.mjs'; +export { default as SiMitsubishi, defaultColor as SiMitsubishiHex } from './icons/SiMitsubishi.mjs'; +export { default as SiMix, defaultColor as SiMixHex } from './icons/SiMix.mjs'; +export { default as SiMixcloud, defaultColor as SiMixcloudHex } from './icons/SiMixcloud.mjs'; +export { default as SiMixpanel, defaultColor as SiMixpanelHex } from './icons/SiMixpanel.mjs'; +export { default as SiMlb, defaultColor as SiMlbHex } from './icons/SiMlb.mjs'; +export { default as SiMlflow, defaultColor as SiMlflowHex } from './icons/SiMlflow.mjs'; +export { default as SiMobx, defaultColor as SiMobxHex } from './icons/SiMobx.mjs'; +export { default as SiMobxstatetree, defaultColor as SiMobxstatetreeHex } from './icons/SiMobxstatetree.mjs'; +export { default as SiMocha, defaultColor as SiMochaHex } from './icons/SiMocha.mjs'; +export { default as SiMockserviceworker, defaultColor as SiMockserviceworkerHex } from './icons/SiMockserviceworker.mjs'; +export { default as SiModal, defaultColor as SiModalHex } from './icons/SiModal.mjs'; +export { default as SiModelcontextprotocol, defaultColor as SiModelcontextprotocolHex } from './icons/SiModelcontextprotocol.mjs'; +export { default as SiModelscope, defaultColor as SiModelscopeHex } from './icons/SiModelscope.mjs'; +export { default as SiModin, defaultColor as SiModinHex } from './icons/SiModin.mjs'; +export { default as SiModrinth, defaultColor as SiModrinthHex } from './icons/SiModrinth.mjs'; +export { default as SiModx, defaultColor as SiModxHex } from './icons/SiModx.mjs'; +export { default as SiMojeek, defaultColor as SiMojeekHex } from './icons/SiMojeek.mjs'; +export { default as SiMoleculer, defaultColor as SiMoleculerHex } from './icons/SiMoleculer.mjs'; +export { default as SiMomenteo, defaultColor as SiMomenteoHex } from './icons/SiMomenteo.mjs'; +export { default as SiMonero, defaultColor as SiMoneroHex } from './icons/SiMonero.mjs'; +export { default as SiMoneygram, defaultColor as SiMoneygramHex } from './icons/SiMoneygram.mjs'; +export { default as SiMongodb, defaultColor as SiMongodbHex } from './icons/SiMongodb.mjs'; +export { default as SiMongoose, defaultColor as SiMongooseHex } from './icons/SiMongoose.mjs'; +export { default as SiMongoosedotws, defaultColor as SiMongoosedotwsHex } from './icons/SiMongoosedotws.mjs'; +export { default as SiMonica, defaultColor as SiMonicaHex } from './icons/SiMonica.mjs'; +export { default as SiMonkeytie, defaultColor as SiMonkeytieHex } from './icons/SiMonkeytie.mjs'; +export { default as SiMonkeytype, defaultColor as SiMonkeytypeHex } from './icons/SiMonkeytype.mjs'; +export { default as SiMonogame, defaultColor as SiMonogameHex } from './icons/SiMonogame.mjs'; +export { default as SiMonoprix, defaultColor as SiMonoprixHex } from './icons/SiMonoprix.mjs'; +export { default as SiMonster, defaultColor as SiMonsterHex } from './icons/SiMonster.mjs'; +export { default as SiMonzo, defaultColor as SiMonzoHex } from './icons/SiMonzo.mjs'; +export { default as SiMoo, defaultColor as SiMooHex } from './icons/SiMoo.mjs'; +export { default as SiMoodle, defaultColor as SiMoodleHex } from './icons/SiMoodle.mjs'; +export { default as SiMoonrepo, defaultColor as SiMoonrepoHex } from './icons/SiMoonrepo.mjs'; +export { default as SiMoq, defaultColor as SiMoqHex } from './icons/SiMoq.mjs'; +export { default as SiMoqups, defaultColor as SiMoqupsHex } from './icons/SiMoqups.mjs'; +export { default as SiMorrisons, defaultColor as SiMorrisonsHex } from './icons/SiMorrisons.mjs'; +export { default as SiMoscowmetro, defaultColor as SiMoscowmetroHex } from './icons/SiMoscowmetro.mjs'; +export { default as SiMotorola, defaultColor as SiMotorolaHex } from './icons/SiMotorola.mjs'; +export { default as SiMovistar, defaultColor as SiMovistarHex } from './icons/SiMovistar.mjs'; +export { default as SiMozilla, defaultColor as SiMozillaHex } from './icons/SiMozilla.mjs'; +export { default as SiMpv, defaultColor as SiMpvHex } from './icons/SiMpv.mjs'; +export { default as SiMqtt, defaultColor as SiMqttHex } from './icons/SiMqtt.mjs'; +export { default as SiMsi, defaultColor as SiMsiHex } from './icons/SiMsi.mjs'; +export { default as SiMsibusiness, defaultColor as SiMsibusinessHex } from './icons/SiMsibusiness.mjs'; +export { default as SiMta, defaultColor as SiMtaHex } from './icons/SiMta.mjs'; +export { default as SiMtr, defaultColor as SiMtrHex } from './icons/SiMtr.mjs'; +export { default as SiMubi, defaultColor as SiMubiHex } from './icons/SiMubi.mjs'; +export { default as SiMui, defaultColor as SiMuiHex } from './icons/SiMui.mjs'; +export { default as SiMuller, defaultColor as SiMullerHex } from './icons/SiMuller.mjs'; +export { default as SiMullvad, defaultColor as SiMullvadHex } from './icons/SiMullvad.mjs'; +export { default as SiMultisim, defaultColor as SiMultisimHex } from './icons/SiMultisim.mjs'; +export { default as SiMumble, defaultColor as SiMumbleHex } from './icons/SiMumble.mjs'; +export { default as SiMuo, defaultColor as SiMuoHex } from './icons/SiMuo.mjs'; +export { default as SiMural, defaultColor as SiMuralHex } from './icons/SiMural.mjs'; +export { default as SiMusicbrainz, defaultColor as SiMusicbrainzHex } from './icons/SiMusicbrainz.mjs'; +export { default as SiMxlinux, defaultColor as SiMxlinuxHex } from './icons/SiMxlinux.mjs'; +export { default as SiMyanimelist, defaultColor as SiMyanimelistHex } from './icons/SiMyanimelist.mjs'; +export { default as SiMyget, defaultColor as SiMygetHex } from './icons/SiMyget.mjs'; +export { default as SiMyob, defaultColor as SiMyobHex } from './icons/SiMyob.mjs'; +export { default as SiMyshows, defaultColor as SiMyshowsHex } from './icons/SiMyshows.mjs'; +export { default as SiMyspace, defaultColor as SiMyspaceHex } from './icons/SiMyspace.mjs'; +export { default as SiMysql, defaultColor as SiMysqlHex } from './icons/SiMysql.mjs'; +export { default as SiN26, defaultColor as SiN26Hex } from './icons/SiN26.mjs'; +export { default as SiN8n, defaultColor as SiN8nHex } from './icons/SiN8n.mjs'; +export { default as SiNamebase, defaultColor as SiNamebaseHex } from './icons/SiNamebase.mjs'; +export { default as SiNamecheap, defaultColor as SiNamecheapHex } from './icons/SiNamecheap.mjs'; +export { default as SiNamemc, defaultColor as SiNamemcHex } from './icons/SiNamemc.mjs'; +export { default as SiNamesilo, defaultColor as SiNamesiloHex } from './icons/SiNamesilo.mjs'; +export { default as SiNamuwiki, defaultColor as SiNamuwikiHex } from './icons/SiNamuwiki.mjs'; +export { default as SiNano, defaultColor as SiNanoHex } from './icons/SiNano.mjs'; +export { default as SiNanostores, defaultColor as SiNanostoresHex } from './icons/SiNanostores.mjs'; +export { default as SiNapster, defaultColor as SiNapsterHex } from './icons/SiNapster.mjs'; +export { default as SiNasa, defaultColor as SiNasaHex } from './icons/SiNasa.mjs'; +export { default as SiNationalgrid, defaultColor as SiNationalgridHex } from './icons/SiNationalgrid.mjs'; +export { default as SiNationalrail, defaultColor as SiNationalrailHex } from './icons/SiNationalrail.mjs'; +export { default as SiNativescript, defaultColor as SiNativescriptHex } from './icons/SiNativescript.mjs'; +export { default as SiNatsdotio, defaultColor as SiNatsdotioHex } from './icons/SiNatsdotio.mjs'; +export { default as SiNaver, defaultColor as SiNaverHex } from './icons/SiNaver.mjs'; +export { default as SiNba, defaultColor as SiNbaHex } from './icons/SiNba.mjs'; +export { default as SiNbb, defaultColor as SiNbbHex } from './icons/SiNbb.mjs'; +export { default as SiNbc, defaultColor as SiNbcHex } from './icons/SiNbc.mjs'; +export { default as SiNdi, defaultColor as SiNdiHex } from './icons/SiNdi.mjs'; +export { default as SiNdr, defaultColor as SiNdrHex } from './icons/SiNdr.mjs'; +export { default as SiNear, defaultColor as SiNearHex } from './icons/SiNear.mjs'; +export { default as SiNebula, defaultColor as SiNebulaHex } from './icons/SiNebula.mjs'; +export { default as SiNec, defaultColor as SiNecHex } from './icons/SiNec.mjs'; +export { default as SiNederlandsespoorwegen, defaultColor as SiNederlandsespoorwegenHex } from './icons/SiNederlandsespoorwegen.mjs'; +export { default as SiNeo4j, defaultColor as SiNeo4jHex } from './icons/SiNeo4j.mjs'; +export { default as SiNeovim, defaultColor as SiNeovimHex } from './icons/SiNeovim.mjs'; +export { default as SiNeptune, defaultColor as SiNeptuneHex } from './icons/SiNeptune.mjs'; +export { default as SiNestjs, defaultColor as SiNestjsHex } from './icons/SiNestjs.mjs'; +export { default as SiNetapp, defaultColor as SiNetappHex } from './icons/SiNetapp.mjs'; +export { default as SiNetbsd, defaultColor as SiNetbsdHex } from './icons/SiNetbsd.mjs'; +export { default as SiNetcup, defaultColor as SiNetcupHex } from './icons/SiNetcup.mjs'; +export { default as SiNetdata, defaultColor as SiNetdataHex } from './icons/SiNetdata.mjs'; +export { default as SiNeteasecloudmusic, defaultColor as SiNeteasecloudmusicHex } from './icons/SiNeteasecloudmusic.mjs'; +export { default as SiNetflix, defaultColor as SiNetflixHex } from './icons/SiNetflix.mjs'; +export { default as SiNetgear, defaultColor as SiNetgearHex } from './icons/SiNetgear.mjs'; +export { default as SiNetim, defaultColor as SiNetimHex } from './icons/SiNetim.mjs'; +export { default as SiNetlify, defaultColor as SiNetlifyHex } from './icons/SiNetlify.mjs'; +export { default as SiNette, defaultColor as SiNetteHex } from './icons/SiNette.mjs'; +export { default as SiNetto, defaultColor as SiNettoHex } from './icons/SiNetto.mjs'; +export { default as SiNeutralinojs, defaultColor as SiNeutralinojsHex } from './icons/SiNeutralinojs.mjs'; +export { default as SiNewbalance, defaultColor as SiNewbalanceHex } from './icons/SiNewbalance.mjs'; +export { default as SiNewegg, defaultColor as SiNeweggHex } from './icons/SiNewegg.mjs'; +export { default as SiNewgrounds, defaultColor as SiNewgroundsHex } from './icons/SiNewgrounds.mjs'; +export { default as SiNewjapanprowrestling, defaultColor as SiNewjapanprowrestlingHex } from './icons/SiNewjapanprowrestling.mjs'; +export { default as SiNewpipe, defaultColor as SiNewpipeHex } from './icons/SiNewpipe.mjs'; +export { default as SiNewrelic, defaultColor as SiNewrelicHex } from './icons/SiNewrelic.mjs'; +export { default as SiNewyorktimes, defaultColor as SiNewyorktimesHex } from './icons/SiNewyorktimes.mjs'; +export { default as SiNexon, defaultColor as SiNexonHex } from './icons/SiNexon.mjs'; +export { default as SiNextbike, defaultColor as SiNextbikeHex } from './icons/SiNextbike.mjs'; +export { default as SiNextbilliondotai, defaultColor as SiNextbilliondotaiHex } from './icons/SiNextbilliondotai.mjs'; +export { default as SiNextcloud, defaultColor as SiNextcloudHex } from './icons/SiNextcloud.mjs'; +export { default as SiNextdns, defaultColor as SiNextdnsHex } from './icons/SiNextdns.mjs'; +export { default as SiNextdoor, defaultColor as SiNextdoorHex } from './icons/SiNextdoor.mjs'; +export { default as SiNextdotjs, defaultColor as SiNextdotjsHex } from './icons/SiNextdotjs.mjs'; +export { default as SiNextflow, defaultColor as SiNextflowHex } from './icons/SiNextflow.mjs'; +export { default as SiNextra, defaultColor as SiNextraHex } from './icons/SiNextra.mjs'; +export { default as SiNfc, defaultColor as SiNfcHex } from './icons/SiNfc.mjs'; +export { default as SiNfcore, defaultColor as SiNfcoreHex } from './icons/SiNfcore.mjs'; +export { default as SiNginx, defaultColor as SiNginxHex } from './icons/SiNginx.mjs'; +export { default as SiNginxproxymanager, defaultColor as SiNginxproxymanagerHex } from './icons/SiNginxproxymanager.mjs'; +export { default as SiNgrok, defaultColor as SiNgrokHex } from './icons/SiNgrok.mjs'; +export { default as SiNgrx, defaultColor as SiNgrxHex } from './icons/SiNgrx.mjs'; +export { default as SiNhl, defaultColor as SiNhlHex } from './icons/SiNhl.mjs'; +export { default as SiNhost, defaultColor as SiNhostHex } from './icons/SiNhost.mjs'; +export { default as SiNicehash, defaultColor as SiNicehashHex } from './icons/SiNicehash.mjs'; +export { default as SiNiconico, defaultColor as SiNiconicoHex } from './icons/SiNiconico.mjs'; +export { default as SiNike, defaultColor as SiNikeHex } from './icons/SiNike.mjs'; +export { default as SiNikon, defaultColor as SiNikonHex } from './icons/SiNikon.mjs'; +export { default as SiNim, defaultColor as SiNimHex } from './icons/SiNim.mjs'; +export { default as SiNiri, defaultColor as SiNiriHex } from './icons/SiNiri.mjs'; +export { default as SiNissan, defaultColor as SiNissanHex } from './icons/SiNissan.mjs'; +export { default as SiNixos, defaultColor as SiNixosHex } from './icons/SiNixos.mjs'; +export { default as SiNobaralinux, defaultColor as SiNobaralinuxHex } from './icons/SiNobaralinux.mjs'; +export { default as SiNodebb, defaultColor as SiNodebbHex } from './icons/SiNodebb.mjs'; +export { default as SiNodedotjs, defaultColor as SiNodedotjsHex } from './icons/SiNodedotjs.mjs'; +export { default as SiNodegui, defaultColor as SiNodeguiHex } from './icons/SiNodegui.mjs'; +export { default as SiNodemon, defaultColor as SiNodemonHex } from './icons/SiNodemon.mjs'; +export { default as SiNodered, defaultColor as SiNoderedHex } from './icons/SiNodered.mjs'; +export { default as SiNokia, defaultColor as SiNokiaHex } from './icons/SiNokia.mjs'; +export { default as SiNomad, defaultColor as SiNomadHex } from './icons/SiNomad.mjs'; +export { default as SiNorco, defaultColor as SiNorcoHex } from './icons/SiNorco.mjs'; +export { default as SiNordicsemiconductor, defaultColor as SiNordicsemiconductorHex } from './icons/SiNordicsemiconductor.mjs'; +export { default as SiNordvpn, defaultColor as SiNordvpnHex } from './icons/SiNordvpn.mjs'; +export { default as SiNormalizedotcss, defaultColor as SiNormalizedotcssHex } from './icons/SiNormalizedotcss.mjs'; +export { default as SiNorton, defaultColor as SiNortonHex } from './icons/SiNorton.mjs'; +export { default as SiNorwegian, defaultColor as SiNorwegianHex } from './icons/SiNorwegian.mjs'; +export { default as SiNote, defaultColor as SiNoteHex } from './icons/SiNote.mjs'; +export { default as SiNotebooklm, defaultColor as SiNotebooklmHex } from './icons/SiNotebooklm.mjs'; +export { default as SiNotepadplusplus, defaultColor as SiNotepadplusplusHex } from './icons/SiNotepadplusplus.mjs'; +export { default as SiNotion, defaultColor as SiNotionHex } from './icons/SiNotion.mjs'; +export { default as SiNotist, defaultColor as SiNotistHex } from './icons/SiNotist.mjs'; +export { default as SiNounproject, defaultColor as SiNounprojectHex } from './icons/SiNounproject.mjs'; +export { default as SiNovu, defaultColor as SiNovuHex } from './icons/SiNovu.mjs'; +export { default as SiNow, defaultColor as SiNowHex } from './icons/SiNow.mjs'; +export { default as SiNpm, defaultColor as SiNpmHex } from './icons/SiNpm.mjs'; +export { default as SiNrwl, defaultColor as SiNrwlHex } from './icons/SiNrwl.mjs'; +export { default as SiNsis, defaultColor as SiNsisHex } from './icons/SiNsis.mjs'; +export { default as SiNtfy, defaultColor as SiNtfyHex } from './icons/SiNtfy.mjs'; +export { default as SiNubank, defaultColor as SiNubankHex } from './icons/SiNubank.mjs'; +export { default as SiNucleo, defaultColor as SiNucleoHex } from './icons/SiNucleo.mjs'; +export { default as SiNuget, defaultColor as SiNugetHex } from './icons/SiNuget.mjs'; +export { default as SiNuke, defaultColor as SiNukeHex } from './icons/SiNuke.mjs'; +export { default as SiNumba, defaultColor as SiNumbaHex } from './icons/SiNumba.mjs'; +export { default as SiNumpy, defaultColor as SiNumpyHex } from './icons/SiNumpy.mjs'; +export { default as SiNunjucks, defaultColor as SiNunjucksHex } from './icons/SiNunjucks.mjs'; +export { default as SiNushell, defaultColor as SiNushellHex } from './icons/SiNushell.mjs'; +export { default as SiNutanix, defaultColor as SiNutanixHex } from './icons/SiNutanix.mjs'; +export { default as SiNuxt, defaultColor as SiNuxtHex } from './icons/SiNuxt.mjs'; +export { default as SiNvidia, defaultColor as SiNvidiaHex } from './icons/SiNvidia.mjs'; +export { default as SiNvm, defaultColor as SiNvmHex } from './icons/SiNvm.mjs'; +export { default as SiNx, defaultColor as SiNxHex } from './icons/SiNx.mjs'; +export { default as SiNxp, defaultColor as SiNxpHex } from './icons/SiNxp.mjs'; +export { default as SiNzxt, defaultColor as SiNzxtHex } from './icons/SiNzxt.mjs'; +export { default as SiO2, defaultColor as SiO2Hex } from './icons/SiO2.mjs'; +export { default as SiObb, defaultColor as SiObbHex } from './icons/SiObb.mjs'; +export { default as SiObservable, defaultColor as SiObservableHex } from './icons/SiObservable.mjs'; +export { default as SiObsidian, defaultColor as SiObsidianHex } from './icons/SiObsidian.mjs'; +export { default as SiObsstudio, defaultColor as SiObsstudioHex } from './icons/SiObsstudio.mjs'; +export { default as SiObtainium, defaultColor as SiObtainiumHex } from './icons/SiObtainium.mjs'; +export { default as SiOcaml, defaultColor as SiOcamlHex } from './icons/SiOcaml.mjs'; +export { default as SiOclc, defaultColor as SiOclcHex } from './icons/SiOclc.mjs'; +export { default as SiOclif, defaultColor as SiOclifHex } from './icons/SiOclif.mjs'; +export { default as SiOctanerender, defaultColor as SiOctanerenderHex } from './icons/SiOctanerender.mjs'; +export { default as SiOctave, defaultColor as SiOctaveHex } from './icons/SiOctave.mjs'; +export { default as SiOctobercms, defaultColor as SiOctobercmsHex } from './icons/SiOctobercms.mjs'; +export { default as SiOctoprint, defaultColor as SiOctoprintHex } from './icons/SiOctoprint.mjs'; +export { default as SiOctopusdeploy, defaultColor as SiOctopusdeployHex } from './icons/SiOctopusdeploy.mjs'; +export { default as SiOculus, defaultColor as SiOculusHex } from './icons/SiOculus.mjs'; +export { default as SiOdido, defaultColor as SiOdidoHex } from './icons/SiOdido.mjs'; +export { default as SiOdin, defaultColor as SiOdinHex } from './icons/SiOdin.mjs'; +export { default as SiOdnoklassniki, defaultColor as SiOdnoklassnikiHex } from './icons/SiOdnoklassniki.mjs'; +export { default as SiOdoo, defaultColor as SiOdooHex } from './icons/SiOdoo.mjs'; +export { default as SiOdysee, defaultColor as SiOdyseeHex } from './icons/SiOdysee.mjs'; +export { default as SiOhdear, defaultColor as SiOhdearHex } from './icons/SiOhdear.mjs'; +export { default as SiOkcupid, defaultColor as SiOkcupidHex } from './icons/SiOkcupid.mjs'; +export { default as SiOkta, defaultColor as SiOktaHex } from './icons/SiOkta.mjs'; +export { default as SiOkx, defaultColor as SiOkxHex } from './icons/SiOkx.mjs'; +export { default as SiOllama, defaultColor as SiOllamaHex } from './icons/SiOllama.mjs'; +export { default as SiOmadacloud, defaultColor as SiOmadacloudHex } from './icons/SiOmadacloud.mjs'; +export { default as SiOmarchy, defaultColor as SiOmarchyHex } from './icons/SiOmarchy.mjs'; +export { default as SiOneplus, defaultColor as SiOneplusHex } from './icons/SiOneplus.mjs'; +export { default as SiOnestream, defaultColor as SiOnestreamHex } from './icons/SiOnestream.mjs'; +export { default as SiOnlyfans, defaultColor as SiOnlyfansHex } from './icons/SiOnlyfans.mjs'; +export { default as SiOnlyoffice, defaultColor as SiOnlyofficeHex } from './icons/SiOnlyoffice.mjs'; +export { default as SiOnnx, defaultColor as SiOnnxHex } from './icons/SiOnnx.mjs'; +export { default as SiOnstar, defaultColor as SiOnstarHex } from './icons/SiOnstar.mjs'; +export { default as SiOpel, defaultColor as SiOpelHex } from './icons/SiOpel.mjs'; +export { default as SiOpen3d, defaultColor as SiOpen3dHex } from './icons/SiOpen3d.mjs'; +export { default as SiOpenaccess, defaultColor as SiOpenaccessHex } from './icons/SiOpenaccess.mjs'; +export { default as SiOpenaigym, defaultColor as SiOpenaigymHex } from './icons/SiOpenaigym.mjs'; +export { default as SiOpenapiinitiative, defaultColor as SiOpenapiinitiativeHex } from './icons/SiOpenapiinitiative.mjs'; +export { default as SiOpenbadges, defaultColor as SiOpenbadgesHex } from './icons/SiOpenbadges.mjs'; +export { default as SiOpenbsd, defaultColor as SiOpenbsdHex } from './icons/SiOpenbsd.mjs'; +export { default as SiOpenbugbounty, defaultColor as SiOpenbugbountyHex } from './icons/SiOpenbugbounty.mjs'; +export { default as SiOpencage, defaultColor as SiOpencageHex } from './icons/SiOpencage.mjs'; +export { default as SiOpencollective, defaultColor as SiOpencollectiveHex } from './icons/SiOpencollective.mjs'; +export { default as SiOpencontainersinitiative, defaultColor as SiOpencontainersinitiativeHex } from './icons/SiOpencontainersinitiative.mjs'; +export { default as SiOpencritic, defaultColor as SiOpencriticHex } from './icons/SiOpencritic.mjs'; +export { default as SiOpencv, defaultColor as SiOpencvHex } from './icons/SiOpencv.mjs'; +export { default as SiOpenfaas, defaultColor as SiOpenfaasHex } from './icons/SiOpenfaas.mjs'; +export { default as SiOpengl, defaultColor as SiOpenglHex } from './icons/SiOpengl.mjs'; +export { default as SiOpenhab, defaultColor as SiOpenhabHex } from './icons/SiOpenhab.mjs'; +export { default as SiOpenid, defaultColor as SiOpenidHex } from './icons/SiOpenid.mjs'; +export { default as SiOpenjdk, defaultColor as SiOpenjdkHex } from './icons/SiOpenjdk.mjs'; +export { default as SiOpenjsfoundation, defaultColor as SiOpenjsfoundationHex } from './icons/SiOpenjsfoundation.mjs'; +export { default as SiOpenlayers, defaultColor as SiOpenlayersHex } from './icons/SiOpenlayers.mjs'; +export { default as SiOpenmediavault, defaultColor as SiOpenmediavaultHex } from './icons/SiOpenmediavault.mjs'; +export { default as SiOpenmined, defaultColor as SiOpenminedHex } from './icons/SiOpenmined.mjs'; +export { default as SiOpennebula, defaultColor as SiOpennebulaHex } from './icons/SiOpennebula.mjs'; +export { default as SiOpenproject, defaultColor as SiOpenprojectHex } from './icons/SiOpenproject.mjs'; +export { default as SiOpenrouter, defaultColor as SiOpenrouterHex } from './icons/SiOpenrouter.mjs'; +export { default as SiOpenscad, defaultColor as SiOpenscadHex } from './icons/SiOpenscad.mjs'; +export { default as SiOpensea, defaultColor as SiOpenseaHex } from './icons/SiOpensea.mjs'; +export { default as SiOpensearch, defaultColor as SiOpensearchHex } from './icons/SiOpensearch.mjs'; +export { default as SiOpensourcehardware, defaultColor as SiOpensourcehardwareHex } from './icons/SiOpensourcehardware.mjs'; +export { default as SiOpensourceinitiative, defaultColor as SiOpensourceinitiativeHex } from './icons/SiOpensourceinitiative.mjs'; +export { default as SiOpenssl, defaultColor as SiOpensslHex } from './icons/SiOpenssl.mjs'; +export { default as SiOpenstack, defaultColor as SiOpenstackHex } from './icons/SiOpenstack.mjs'; +export { default as SiOpenstreetmap, defaultColor as SiOpenstreetmapHex } from './icons/SiOpenstreetmap.mjs'; +export { default as SiOpensuse, defaultColor as SiOpensuseHex } from './icons/SiOpensuse.mjs'; +export { default as SiOpentelemetry, defaultColor as SiOpentelemetryHex } from './icons/SiOpentelemetry.mjs'; +export { default as SiOpentext, defaultColor as SiOpentextHex } from './icons/SiOpentext.mjs'; +export { default as SiOpentofu, defaultColor as SiOpentofuHex } from './icons/SiOpentofu.mjs'; +export { default as SiOpenverse, defaultColor as SiOpenverseHex } from './icons/SiOpenverse.mjs'; +export { default as SiOpenvpn, defaultColor as SiOpenvpnHex } from './icons/SiOpenvpn.mjs'; +export { default as SiOpenwrt, defaultColor as SiOpenwrtHex } from './icons/SiOpenwrt.mjs'; +export { default as SiOpenzeppelin, defaultColor as SiOpenzeppelinHex } from './icons/SiOpenzeppelin.mjs'; +export { default as SiOpenzfs, defaultColor as SiOpenzfsHex } from './icons/SiOpenzfs.mjs'; +export { default as SiOpera, defaultColor as SiOperaHex } from './icons/SiOpera.mjs'; +export { default as SiOperagx, defaultColor as SiOperagxHex } from './icons/SiOperagx.mjs'; +export { default as SiOpnsense, defaultColor as SiOpnsenseHex } from './icons/SiOpnsense.mjs'; +export { default as SiOppo, defaultColor as SiOppoHex } from './icons/SiOppo.mjs'; +export { default as SiOpsgenie, defaultColor as SiOpsgenieHex } from './icons/SiOpsgenie.mjs'; +export { default as SiOpslevel, defaultColor as SiOpslevelHex } from './icons/SiOpslevel.mjs'; +export { default as SiOptimism, defaultColor as SiOptimismHex } from './icons/SiOptimism.mjs'; +export { default as SiOptuna, defaultColor as SiOptunaHex } from './icons/SiOptuna.mjs'; +export { default as SiOrange, defaultColor as SiOrangeHex } from './icons/SiOrange.mjs'; +export { default as SiOrcid, defaultColor as SiOrcidHex } from './icons/SiOrcid.mjs'; +export { default as SiOreilly, defaultColor as SiOreillyHex } from './icons/SiOreilly.mjs'; +export { default as SiOrg, defaultColor as SiOrgHex } from './icons/SiOrg.mjs'; +export { default as SiOrganicmaps, defaultColor as SiOrganicmapsHex } from './icons/SiOrganicmaps.mjs'; +export { default as SiOrigin, defaultColor as SiOriginHex } from './icons/SiOrigin.mjs'; +export { default as SiOry, defaultColor as SiOryHex } from './icons/SiOry.mjs'; +export { default as SiOsano, defaultColor as SiOsanoHex } from './icons/SiOsano.mjs'; +export { default as SiOsf, defaultColor as SiOsfHex } from './icons/SiOsf.mjs'; +export { default as SiOsgeo, defaultColor as SiOsgeoHex } from './icons/SiOsgeo.mjs'; +export { default as SiOshkosh, defaultColor as SiOshkoshHex } from './icons/SiOshkosh.mjs'; +export { default as SiOsmand, defaultColor as SiOsmandHex } from './icons/SiOsmand.mjs'; +export { default as SiOsmc, defaultColor as SiOsmcHex } from './icons/SiOsmc.mjs'; +export { default as SiOsu, defaultColor as SiOsuHex } from './icons/SiOsu.mjs'; +export { default as SiOtto, defaultColor as SiOttoHex } from './icons/SiOtto.mjs'; +export { default as SiOutline, defaultColor as SiOutlineHex } from './icons/SiOutline.mjs'; +export { default as SiOvercast, defaultColor as SiOvercastHex } from './icons/SiOvercast.mjs'; +export { default as SiOverleaf, defaultColor as SiOverleafHex } from './icons/SiOverleaf.mjs'; +export { default as SiOvh, defaultColor as SiOvhHex } from './icons/SiOvh.mjs'; +export { default as SiOwasp, defaultColor as SiOwaspHex } from './icons/SiOwasp.mjs'; +export { default as SiOwncloud, defaultColor as SiOwncloudHex } from './icons/SiOwncloud.mjs'; +export { default as SiOxc, defaultColor as SiOxcHex } from './icons/SiOxc.mjs'; +export { default as SiOxygen, defaultColor as SiOxygenHex } from './icons/SiOxygen.mjs'; +export { default as SiOyo, defaultColor as SiOyoHex } from './icons/SiOyo.mjs'; +export { default as SiP5dotjs, defaultColor as SiP5dotjsHex } from './icons/SiP5dotjs.mjs'; +export { default as SiPackagist, defaultColor as SiPackagistHex } from './icons/SiPackagist.mjs'; +export { default as SiPacker, defaultColor as SiPackerHex } from './icons/SiPacker.mjs'; +export { default as SiPackt, defaultColor as SiPacktHex } from './icons/SiPackt.mjs'; +export { default as SiPaddle, defaultColor as SiPaddleHex } from './icons/SiPaddle.mjs'; +export { default as SiPaddlepaddle, defaultColor as SiPaddlepaddleHex } from './icons/SiPaddlepaddle.mjs'; +export { default as SiPaddypower, defaultColor as SiPaddypowerHex } from './icons/SiPaddypower.mjs'; +export { default as SiPadlet, defaultColor as SiPadletHex } from './icons/SiPadlet.mjs'; +export { default as SiPagekit, defaultColor as SiPagekitHex } from './icons/SiPagekit.mjs'; +export { default as SiPagerduty, defaultColor as SiPagerdutyHex } from './icons/SiPagerduty.mjs'; +export { default as SiPagespeedinsights, defaultColor as SiPagespeedinsightsHex } from './icons/SiPagespeedinsights.mjs'; +export { default as SiPagseguro, defaultColor as SiPagseguroHex } from './icons/SiPagseguro.mjs'; +export { default as SiPalantir, defaultColor as SiPalantirHex } from './icons/SiPalantir.mjs'; +export { default as SiPaloaltonetworks, defaultColor as SiPaloaltonetworksHex } from './icons/SiPaloaltonetworks.mjs'; +export { default as SiPaloaltosoftware, defaultColor as SiPaloaltosoftwareHex } from './icons/SiPaloaltosoftware.mjs'; +export { default as SiPanasonic, defaultColor as SiPanasonicHex } from './icons/SiPanasonic.mjs'; +export { default as SiPandas, defaultColor as SiPandasHex } from './icons/SiPandas.mjs'; +export { default as SiPandoc, defaultColor as SiPandocHex } from './icons/SiPandoc.mjs'; +export { default as SiPandora, defaultColor as SiPandoraHex } from './icons/SiPandora.mjs'; +export { default as SiPantheon, defaultColor as SiPantheonHex } from './icons/SiPantheon.mjs'; +export { default as SiPaperlessngx, defaultColor as SiPaperlessngxHex } from './icons/SiPaperlessngx.mjs'; +export { default as SiPaperspace, defaultColor as SiPaperspaceHex } from './icons/SiPaperspace.mjs'; +export { default as SiPaperswithcode, defaultColor as SiPaperswithcodeHex } from './icons/SiPaperswithcode.mjs'; +export { default as SiParadoxinteractive, defaultColor as SiParadoxinteractiveHex } from './icons/SiParadoxinteractive.mjs'; +export { default as SiParamountplus, defaultColor as SiParamountplusHex } from './icons/SiParamountplus.mjs'; +export { default as SiParitysubstrate, defaultColor as SiParitysubstrateHex } from './icons/SiParitysubstrate.mjs'; +export { default as SiParrotsecurity, defaultColor as SiParrotsecurityHex } from './icons/SiParrotsecurity.mjs'; +export { default as SiParsedotly, defaultColor as SiParsedotlyHex } from './icons/SiParsedotly.mjs'; +export { default as SiPassbolt, defaultColor as SiPassboltHex } from './icons/SiPassbolt.mjs'; +export { default as SiPassport, defaultColor as SiPassportHex } from './icons/SiPassport.mjs'; +export { default as SiPastebin, defaultColor as SiPastebinHex } from './icons/SiPastebin.mjs'; +export { default as SiPatreon, defaultColor as SiPatreonHex } from './icons/SiPatreon.mjs'; +export { default as SiPayback, defaultColor as SiPaybackHex } from './icons/SiPayback.mjs'; +export { default as SiPaychex, defaultColor as SiPaychexHex } from './icons/SiPaychex.mjs'; +export { default as SiPayhip, defaultColor as SiPayhipHex } from './icons/SiPayhip.mjs'; +export { default as SiPayloadcms, defaultColor as SiPayloadcmsHex } from './icons/SiPayloadcms.mjs'; +export { default as SiPayoneer, defaultColor as SiPayoneerHex } from './icons/SiPayoneer.mjs'; +export { default as SiPaypal, defaultColor as SiPaypalHex } from './icons/SiPaypal.mjs'; +export { default as SiPaysafe, defaultColor as SiPaysafeHex } from './icons/SiPaysafe.mjs'; +export { default as SiPaytm, defaultColor as SiPaytmHex } from './icons/SiPaytm.mjs'; +export { default as SiPcgamingwiki, defaultColor as SiPcgamingwikiHex } from './icons/SiPcgamingwiki.mjs'; +export { default as SiPdm, defaultColor as SiPdmHex } from './icons/SiPdm.mjs'; +export { default as SiPdq, defaultColor as SiPdqHex } from './icons/SiPdq.mjs'; +export { default as SiPeakdesign, defaultColor as SiPeakdesignHex } from './icons/SiPeakdesign.mjs'; +export { default as SiPearson, defaultColor as SiPearsonHex } from './icons/SiPearson.mjs'; +export { default as SiPeerlist, defaultColor as SiPeerlistHex } from './icons/SiPeerlist.mjs'; +export { default as SiPeertube, defaultColor as SiPeertubeHex } from './icons/SiPeertube.mjs'; +export { default as SiPegasusairlines, defaultColor as SiPegasusairlinesHex } from './icons/SiPegasusairlines.mjs'; +export { default as SiPelican, defaultColor as SiPelicanHex } from './icons/SiPelican.mjs'; +export { default as SiPeloton, defaultColor as SiPelotonHex } from './icons/SiPeloton.mjs'; +export { default as SiPenny, defaultColor as SiPennyHex } from './icons/SiPenny.mjs'; +export { default as SiPenpot, defaultColor as SiPenpotHex } from './icons/SiPenpot.mjs'; +export { default as SiPercy, defaultColor as SiPercyHex } from './icons/SiPercy.mjs'; +export { default as SiPerforce, defaultColor as SiPerforceHex } from './icons/SiPerforce.mjs'; +export { default as SiPerl, defaultColor as SiPerlHex } from './icons/SiPerl.mjs'; +export { default as SiPerplexity, defaultColor as SiPerplexityHex } from './icons/SiPerplexity.mjs'; +export { default as SiPersistent, defaultColor as SiPersistentHex } from './icons/SiPersistent.mjs'; +export { default as SiPersonio, defaultColor as SiPersonioHex } from './icons/SiPersonio.mjs'; +export { default as SiPetsathome, defaultColor as SiPetsathomeHex } from './icons/SiPetsathome.mjs'; +export { default as SiPeugeot, defaultColor as SiPeugeotHex } from './icons/SiPeugeot.mjs'; +export { default as SiPexels, defaultColor as SiPexelsHex } from './icons/SiPexels.mjs'; +export { default as SiPfsense, defaultColor as SiPfsenseHex } from './icons/SiPfsense.mjs'; +export { default as SiPhabricator, defaultColor as SiPhabricatorHex } from './icons/SiPhabricator.mjs'; +export { default as SiPhilipshue, defaultColor as SiPhilipshueHex } from './icons/SiPhilipshue.mjs'; +export { default as SiPhoenixframework, defaultColor as SiPhoenixframeworkHex } from './icons/SiPhoenixframework.mjs'; +export { default as SiPhonepe, defaultColor as SiPhonepeHex } from './icons/SiPhonepe.mjs'; +export { default as SiPhosphoricons, defaultColor as SiPhosphoriconsHex } from './icons/SiPhosphoricons.mjs'; +export { default as SiPhotobucket, defaultColor as SiPhotobucketHex } from './icons/SiPhotobucket.mjs'; +export { default as SiPhotocrowd, defaultColor as SiPhotocrowdHex } from './icons/SiPhotocrowd.mjs'; +export { default as SiPhoton, defaultColor as SiPhotonHex } from './icons/SiPhoton.mjs'; +export { default as SiPhotopea, defaultColor as SiPhotopeaHex } from './icons/SiPhotopea.mjs'; +export { default as SiPhp, defaultColor as SiPhpHex } from './icons/SiPhp.mjs'; +export { default as SiPhpbb, defaultColor as SiPhpbbHex } from './icons/SiPhpbb.mjs'; +export { default as SiPhpmyadmin, defaultColor as SiPhpmyadminHex } from './icons/SiPhpmyadmin.mjs'; +export { default as SiPhpstorm, defaultColor as SiPhpstormHex } from './icons/SiPhpstorm.mjs'; +export { default as SiPiaggiogroup, defaultColor as SiPiaggiogroupHex } from './icons/SiPiaggiogroup.mjs'; +export { default as SiPiapro, defaultColor as SiPiaproHex } from './icons/SiPiapro.mjs'; +export { default as SiPicardsurgeles, defaultColor as SiPicardsurgelesHex } from './icons/SiPicardsurgeles.mjs'; +export { default as SiPicartodottv, defaultColor as SiPicartodottvHex } from './icons/SiPicartodottv.mjs'; +export { default as SiPicnic, defaultColor as SiPicnicHex } from './icons/SiPicnic.mjs'; +export { default as SiPicpay, defaultColor as SiPicpayHex } from './icons/SiPicpay.mjs'; +export { default as SiPicrew, defaultColor as SiPicrewHex } from './icons/SiPicrew.mjs'; +export { default as SiPicsart, defaultColor as SiPicsartHex } from './icons/SiPicsart.mjs'; +export { default as SiPicxy, defaultColor as SiPicxyHex } from './icons/SiPicxy.mjs'; +export { default as SiPihole, defaultColor as SiPiholeHex } from './icons/SiPihole.mjs'; +export { default as SiPimcore, defaultColor as SiPimcoreHex } from './icons/SiPimcore.mjs'; +export { default as SiPinboard, defaultColor as SiPinboardHex } from './icons/SiPinboard.mjs'; +export { default as SiPinescript, defaultColor as SiPinescriptHex } from './icons/SiPinescript.mjs'; +export { default as SiPinetwork, defaultColor as SiPinetworkHex } from './icons/SiPinetwork.mjs'; +export { default as SiPingdom, defaultColor as SiPingdomHex } from './icons/SiPingdom.mjs'; +export { default as SiPinia, defaultColor as SiPiniaHex } from './icons/SiPinia.mjs'; +export { default as SiPino, defaultColor as SiPinoHex } from './icons/SiPino.mjs'; +export { default as SiPinterest, defaultColor as SiPinterestHex } from './icons/SiPinterest.mjs'; +export { default as SiPioneerdj, defaultColor as SiPioneerdjHex } from './icons/SiPioneerdj.mjs'; +export { default as SiPipecat, defaultColor as SiPipecatHex } from './icons/SiPipecat.mjs'; +export { default as SiPiped, defaultColor as SiPipedHex } from './icons/SiPiped.mjs'; +export { default as SiPipx, defaultColor as SiPipxHex } from './icons/SiPipx.mjs'; +export { default as SiPivotaltracker, defaultColor as SiPivotaltrackerHex } from './icons/SiPivotaltracker.mjs'; +export { default as SiPiwigo, defaultColor as SiPiwigoHex } from './icons/SiPiwigo.mjs'; +export { default as SiPix, defaultColor as SiPixHex } from './icons/SiPix.mjs'; +export { default as SiPixabay, defaultColor as SiPixabayHex } from './icons/SiPixabay.mjs'; +export { default as SiPixelfed, defaultColor as SiPixelfedHex } from './icons/SiPixelfed.mjs'; +export { default as SiPixiv, defaultColor as SiPixivHex } from './icons/SiPixiv.mjs'; +export { default as SiPixlr, defaultColor as SiPixlrHex } from './icons/SiPixlr.mjs'; +export { default as SiPkgsrc, defaultColor as SiPkgsrcHex } from './icons/SiPkgsrc.mjs'; +export { default as SiPlane, defaultColor as SiPlaneHex } from './icons/SiPlane.mjs'; +export { default as SiPlanet, defaultColor as SiPlanetHex } from './icons/SiPlanet.mjs'; +export { default as SiPlanetscale, defaultColor as SiPlanetscaleHex } from './icons/SiPlanetscale.mjs'; +export { default as SiPlangrid, defaultColor as SiPlangridHex } from './icons/SiPlangrid.mjs'; +export { default as SiPlatformdotsh, defaultColor as SiPlatformdotshHex } from './icons/SiPlatformdotsh.mjs'; +export { default as SiPlatformio, defaultColor as SiPlatformioHex } from './icons/SiPlatformio.mjs'; +export { default as SiPlatzi, defaultColor as SiPlatziHex } from './icons/SiPlatzi.mjs'; +export { default as SiPlausibleanalytics, defaultColor as SiPlausibleanalyticsHex } from './icons/SiPlausibleanalytics.mjs'; +export { default as SiPlaycanvas, defaultColor as SiPlaycanvasHex } from './icons/SiPlaycanvas.mjs'; +export { default as SiPlayerdotme, defaultColor as SiPlayerdotmeHex } from './icons/SiPlayerdotme.mjs'; +export { default as SiPlayerfm, defaultColor as SiPlayerfmHex } from './icons/SiPlayerfm.mjs'; +export { default as SiPlaystation, defaultColor as SiPlaystationHex } from './icons/SiPlaystation.mjs'; +export { default as SiPlaystation2, defaultColor as SiPlaystation2Hex } from './icons/SiPlaystation2.mjs'; +export { default as SiPlaystation3, defaultColor as SiPlaystation3Hex } from './icons/SiPlaystation3.mjs'; +export { default as SiPlaystation4, defaultColor as SiPlaystation4Hex } from './icons/SiPlaystation4.mjs'; +export { default as SiPlaystation5, defaultColor as SiPlaystation5Hex } from './icons/SiPlaystation5.mjs'; +export { default as SiPlaystationportable, defaultColor as SiPlaystationportableHex } from './icons/SiPlaystationportable.mjs'; +export { default as SiPlaystationvita, defaultColor as SiPlaystationvitaHex } from './icons/SiPlaystationvita.mjs'; +export { default as SiPleroma, defaultColor as SiPleromaHex } from './icons/SiPleroma.mjs'; +export { default as SiPlesk, defaultColor as SiPleskHex } from './icons/SiPlesk.mjs'; +export { default as SiPlex, defaultColor as SiPlexHex } from './icons/SiPlex.mjs'; +export { default as SiPlotly, defaultColor as SiPlotlyHex } from './icons/SiPlotly.mjs'; +export { default as SiPlume, defaultColor as SiPlumeHex } from './icons/SiPlume.mjs'; +export { default as SiPluralsight, defaultColor as SiPluralsightHex } from './icons/SiPluralsight.mjs'; +export { default as SiPlurk, defaultColor as SiPlurkHex } from './icons/SiPlurk.mjs'; +export { default as SiPm2, defaultColor as SiPm2Hex } from './icons/SiPm2.mjs'; +export { default as SiPnpm, defaultColor as SiPnpmHex } from './icons/SiPnpm.mjs'; +export { default as SiPocketbase, defaultColor as SiPocketbaseHex } from './icons/SiPocketbase.mjs'; +export { default as SiPocketcasts, defaultColor as SiPocketcastsHex } from './icons/SiPocketcasts.mjs'; +export { default as SiPodcastaddict, defaultColor as SiPodcastaddictHex } from './icons/SiPodcastaddict.mjs'; +export { default as SiPodcastindex, defaultColor as SiPodcastindexHex } from './icons/SiPodcastindex.mjs'; +export { default as SiPodman, defaultColor as SiPodmanHex } from './icons/SiPodman.mjs'; +export { default as SiPoe, defaultColor as SiPoeHex } from './icons/SiPoe.mjs'; +export { default as SiPoetry, defaultColor as SiPoetryHex } from './icons/SiPoetry.mjs'; +export { default as SiPolars, defaultColor as SiPolarsHex } from './icons/SiPolars.mjs'; +export { default as SiPolestar, defaultColor as SiPolestarHex } from './icons/SiPolestar.mjs'; +export { default as SiPolkadot, defaultColor as SiPolkadotHex } from './icons/SiPolkadot.mjs'; +export { default as SiPoly, defaultColor as SiPolyHex } from './icons/SiPoly.mjs'; +export { default as SiPolygon, defaultColor as SiPolygonHex } from './icons/SiPolygon.mjs'; +export { default as SiPolymerproject, defaultColor as SiPolymerprojectHex } from './icons/SiPolymerproject.mjs'; +export { default as SiPolywork, defaultColor as SiPolyworkHex } from './icons/SiPolywork.mjs'; +export { default as SiPomerium, defaultColor as SiPomeriumHex } from './icons/SiPomerium.mjs'; +export { default as SiPond5, defaultColor as SiPond5Hex } from './icons/SiPond5.mjs'; +export { default as SiPopos, defaultColor as SiPoposHex } from './icons/SiPopos.mjs'; +export { default as SiPorkbun, defaultColor as SiPorkbunHex } from './icons/SiPorkbun.mjs'; +export { default as SiPorsche, defaultColor as SiPorscheHex } from './icons/SiPorsche.mjs'; +export { default as SiPortableappsdotcom, defaultColor as SiPortableappsdotcomHex } from './icons/SiPortableappsdotcom.mjs'; +export { default as SiPortainer, defaultColor as SiPortainerHex } from './icons/SiPortainer.mjs'; +export { default as SiPortswigger, defaultColor as SiPortswiggerHex } from './icons/SiPortswigger.mjs'; +export { default as SiPosit, defaultColor as SiPositHex } from './icons/SiPosit.mjs'; +export { default as SiPostcss, defaultColor as SiPostcssHex } from './icons/SiPostcss.mjs'; +export { default as SiPostgresql, defaultColor as SiPostgresqlHex } from './icons/SiPostgresql.mjs'; +export { default as SiPosthog, defaultColor as SiPosthogHex } from './icons/SiPosthog.mjs'; +export { default as SiPostiz, defaultColor as SiPostizHex } from './icons/SiPostiz.mjs'; +export { default as SiPostman, defaultColor as SiPostmanHex } from './icons/SiPostman.mjs'; +export { default as SiPostmates, defaultColor as SiPostmatesHex } from './icons/SiPostmates.mjs'; +export { default as SiPowers, defaultColor as SiPowersHex } from './icons/SiPowers.mjs'; +export { default as SiPrdotco, defaultColor as SiPrdotcoHex } from './icons/SiPrdotco.mjs'; +export { default as SiPreact, defaultColor as SiPreactHex } from './icons/SiPreact.mjs'; +export { default as SiPrecommit, defaultColor as SiPrecommitHex } from './icons/SiPrecommit.mjs'; +export { default as SiPrefect, defaultColor as SiPrefectHex } from './icons/SiPrefect.mjs'; +export { default as SiPrek, defaultColor as SiPrekHex } from './icons/SiPrek.mjs'; +export { default as SiPremid, defaultColor as SiPremidHex } from './icons/SiPremid.mjs'; +export { default as SiPremierleague, defaultColor as SiPremierleagueHex } from './icons/SiPremierleague.mjs'; +export { default as SiPrepbytes, defaultColor as SiPrepbytesHex } from './icons/SiPrepbytes.mjs'; +export { default as SiPrestashop, defaultColor as SiPrestashopHex } from './icons/SiPrestashop.mjs'; +export { default as SiPresto, defaultColor as SiPrestoHex } from './icons/SiPresto.mjs'; +export { default as SiPrettier, defaultColor as SiPrettierHex } from './icons/SiPrettier.mjs'; +export { default as SiPretzel, defaultColor as SiPretzelHex } from './icons/SiPretzel.mjs'; +export { default as SiPrevention, defaultColor as SiPreventionHex } from './icons/SiPrevention.mjs'; +export { default as SiPrezi, defaultColor as SiPreziHex } from './icons/SiPrezi.mjs'; +export { default as SiPrimefaces, defaultColor as SiPrimefacesHex } from './icons/SiPrimefaces.mjs'; +export { default as SiPrimeng, defaultColor as SiPrimengHex } from './icons/SiPrimeng.mjs'; +export { default as SiPrimereact, defaultColor as SiPrimereactHex } from './icons/SiPrimereact.mjs'; +export { default as SiPrimevue, defaultColor as SiPrimevueHex } from './icons/SiPrimevue.mjs'; +export { default as SiPrintables, defaultColor as SiPrintablesHex } from './icons/SiPrintables.mjs'; +export { default as SiPrisma, defaultColor as SiPrismaHex } from './icons/SiPrisma.mjs'; +export { default as SiPrismic, defaultColor as SiPrismicHex } from './icons/SiPrismic.mjs'; +export { default as SiPrivatedivision, defaultColor as SiPrivatedivisionHex } from './icons/SiPrivatedivision.mjs'; +export { default as SiPrivateinternetaccess, defaultColor as SiPrivateinternetaccessHex } from './icons/SiPrivateinternetaccess.mjs'; +export { default as SiProbot, defaultColor as SiProbotHex } from './icons/SiProbot.mjs'; +export { default as SiProcessingfoundation, defaultColor as SiProcessingfoundationHex } from './icons/SiProcessingfoundation.mjs'; +export { default as SiProcesson, defaultColor as SiProcessonHex } from './icons/SiProcesson.mjs'; +export { default as SiProcesswire, defaultColor as SiProcesswireHex } from './icons/SiProcesswire.mjs'; +export { default as SiProducthunt, defaultColor as SiProducthuntHex } from './icons/SiProducthunt.mjs'; +export { default as SiProgate, defaultColor as SiProgateHex } from './icons/SiProgate.mjs'; +export { default as SiProgress, defaultColor as SiProgressHex } from './icons/SiProgress.mjs'; +export { default as SiPrometheus, defaultColor as SiPrometheusHex } from './icons/SiPrometheus.mjs'; +export { default as SiPronounsdotpage, defaultColor as SiPronounsdotpageHex } from './icons/SiPronounsdotpage.mjs'; +export { default as SiProsieben, defaultColor as SiProsiebenHex } from './icons/SiProsieben.mjs'; +export { default as SiProteus, defaultColor as SiProteusHex } from './icons/SiProteus.mjs'; +export { default as SiProtocolsdotio, defaultColor as SiProtocolsdotioHex } from './icons/SiProtocolsdotio.mjs'; +export { default as SiProtodotio, defaultColor as SiProtodotioHex } from './icons/SiProtodotio.mjs'; +export { default as SiProton, defaultColor as SiProtonHex } from './icons/SiProton.mjs'; +export { default as SiProtoncalendar, defaultColor as SiProtoncalendarHex } from './icons/SiProtoncalendar.mjs'; +export { default as SiProtondb, defaultColor as SiProtondbHex } from './icons/SiProtondb.mjs'; +export { default as SiProtondrive, defaultColor as SiProtondriveHex } from './icons/SiProtondrive.mjs'; +export { default as SiProtonmail, defaultColor as SiProtonmailHex } from './icons/SiProtonmail.mjs'; +export { default as SiProtonvpn, defaultColor as SiProtonvpnHex } from './icons/SiProtonvpn.mjs'; +export { default as SiProtools, defaultColor as SiProtoolsHex } from './icons/SiProtools.mjs'; +export { default as SiProtractor, defaultColor as SiProtractorHex } from './icons/SiProtractor.mjs'; +export { default as SiProxmox, defaultColor as SiProxmoxHex } from './icons/SiProxmox.mjs'; +export { default as SiPterodactyl, defaultColor as SiPterodactylHex } from './icons/SiPterodactyl.mjs'; +export { default as SiPubg, defaultColor as SiPubgHex } from './icons/SiPubg.mjs'; +export { default as SiPublons, defaultColor as SiPublonsHex } from './icons/SiPublons.mjs'; +export { default as SiPubmed, defaultColor as SiPubmedHex } from './icons/SiPubmed.mjs'; +export { default as SiPug, defaultColor as SiPugHex } from './icons/SiPug.mjs'; +export { default as SiPulumi, defaultColor as SiPulumiHex } from './icons/SiPulumi.mjs'; +export { default as SiPuma, defaultColor as SiPumaHex } from './icons/SiPuma.mjs'; +export { default as SiPuppet, defaultColor as SiPuppetHex } from './icons/SiPuppet.mjs'; +export { default as SiPuppeteer, defaultColor as SiPuppeteerHex } from './icons/SiPuppeteer.mjs'; +export { default as SiPurescript, defaultColor as SiPurescriptHex } from './icons/SiPurescript.mjs'; +export { default as SiPurgecss, defaultColor as SiPurgecssHex } from './icons/SiPurgecss.mjs'; +export { default as SiPurism, defaultColor as SiPurismHex } from './icons/SiPurism.mjs'; +export { default as SiPushbullet, defaultColor as SiPushbulletHex } from './icons/SiPushbullet.mjs'; +export { default as SiPusher, defaultColor as SiPusherHex } from './icons/SiPusher.mjs'; +export { default as SiPwa, defaultColor as SiPwaHex } from './icons/SiPwa.mjs'; +export { default as SiPycharm, defaultColor as SiPycharmHex } from './icons/SiPycharm.mjs'; +export { default as SiPycqa, defaultColor as SiPycqaHex } from './icons/SiPycqa.mjs'; +export { default as SiPydantic, defaultColor as SiPydanticHex } from './icons/SiPydantic.mjs'; +export { default as SiPyg, defaultColor as SiPygHex } from './icons/SiPyg.mjs'; +export { default as SiPypi, defaultColor as SiPypiHex } from './icons/SiPypi.mjs'; +export { default as SiPypy, defaultColor as SiPypyHex } from './icons/SiPypy.mjs'; +export { default as SiPyscaffold, defaultColor as SiPyscaffoldHex } from './icons/SiPyscaffold.mjs'; +export { default as SiPysyft, defaultColor as SiPysyftHex } from './icons/SiPysyft.mjs'; +export { default as SiPytest, defaultColor as SiPytestHex } from './icons/SiPytest.mjs'; +export { default as SiPython, defaultColor as SiPythonHex } from './icons/SiPython.mjs'; +export { default as SiPythonanywhere, defaultColor as SiPythonanywhereHex } from './icons/SiPythonanywhere.mjs'; +export { default as SiPytorch, defaultColor as SiPytorchHex } from './icons/SiPytorch.mjs'; +export { default as SiPyup, defaultColor as SiPyupHex } from './icons/SiPyup.mjs'; +export { default as SiQantas, defaultColor as SiQantasHex } from './icons/SiQantas.mjs'; +export { default as SiQase, defaultColor as SiQaseHex } from './icons/SiQase.mjs'; +export { default as SiQatarairways, defaultColor as SiQatarairwaysHex } from './icons/SiQatarairways.mjs'; +export { default as SiQbittorrent, defaultColor as SiQbittorrentHex } from './icons/SiQbittorrent.mjs'; +export { default as SiQemu, defaultColor as SiQemuHex } from './icons/SiQemu.mjs'; +export { default as SiQgis, defaultColor as SiQgisHex } from './icons/SiQgis.mjs'; +export { default as SiQi, defaultColor as SiQiHex } from './icons/SiQi.mjs'; +export { default as SiQiita, defaultColor as SiQiitaHex } from './icons/SiQiita.mjs'; +export { default as SiQiskit, defaultColor as SiQiskitHex } from './icons/SiQiskit.mjs'; +export { default as SiQiwi, defaultColor as SiQiwiHex } from './icons/SiQiwi.mjs'; +export { default as SiQlik, defaultColor as SiQlikHex } from './icons/SiQlik.mjs'; +export { default as SiQlty, defaultColor as SiQltyHex } from './icons/SiQlty.mjs'; +export { default as SiQmk, defaultColor as SiQmkHex } from './icons/SiQmk.mjs'; +export { default as SiQnap, defaultColor as SiQnapHex } from './icons/SiQnap.mjs'; +export { default as SiQodo, defaultColor as SiQodoHex } from './icons/SiQodo.mjs'; +export { default as SiQq, defaultColor as SiQqHex } from './icons/SiQq.mjs'; +export { default as SiQt, defaultColor as SiQtHex } from './icons/SiQt.mjs'; +export { default as SiQuad9, defaultColor as SiQuad9Hex } from './icons/SiQuad9.mjs'; +export { default as SiQualcomm, defaultColor as SiQualcommHex } from './icons/SiQualcomm.mjs'; +export { default as SiQualtrics, defaultColor as SiQualtricsHex } from './icons/SiQualtrics.mjs'; +export { default as SiQualys, defaultColor as SiQualysHex } from './icons/SiQualys.mjs'; +export { default as SiQuantcast, defaultColor as SiQuantcastHex } from './icons/SiQuantcast.mjs'; +export { default as SiQuantconnect, defaultColor as SiQuantconnectHex } from './icons/SiQuantconnect.mjs'; +export { default as SiQuarkus, defaultColor as SiQuarkusHex } from './icons/SiQuarkus.mjs'; +export { default as SiQuarto, defaultColor as SiQuartoHex } from './icons/SiQuarto.mjs'; +export { default as SiQuasar, defaultColor as SiQuasarHex } from './icons/SiQuasar.mjs'; +export { default as SiQubesos, defaultColor as SiQubesosHex } from './icons/SiQubesos.mjs'; +export { default as SiQuest, defaultColor as SiQuestHex } from './icons/SiQuest.mjs'; +export { default as SiQuickbooks, defaultColor as SiQuickbooksHex } from './icons/SiQuickbooks.mjs'; +export { default as SiQuicklook, defaultColor as SiQuicklookHex } from './icons/SiQuicklook.mjs'; +export { default as SiQuicktime, defaultColor as SiQuicktimeHex } from './icons/SiQuicktime.mjs'; +export { default as SiQuicktype, defaultColor as SiQuicktypeHex } from './icons/SiQuicktype.mjs'; +export { default as SiQuizlet, defaultColor as SiQuizletHex } from './icons/SiQuizlet.mjs'; +export { default as SiQuora, defaultColor as SiQuoraHex } from './icons/SiQuora.mjs'; +export { default as SiQwant, defaultColor as SiQwantHex } from './icons/SiQwant.mjs'; +export { default as SiQwik, defaultColor as SiQwikHex } from './icons/SiQwik.mjs'; +export { default as SiQwiklabs, defaultColor as SiQwiklabsHex } from './icons/SiQwiklabs.mjs'; +export { default as SiQzone, defaultColor as SiQzoneHex } from './icons/SiQzone.mjs'; +export { default as SiR, defaultColor as SiRHex } from './icons/SiR.mjs'; +export { default as SiR3, defaultColor as SiR3Hex } from './icons/SiR3.mjs'; +export { default as SiRabbitmq, defaultColor as SiRabbitmqHex } from './icons/SiRabbitmq.mjs'; +export { default as SiRacket, defaultColor as SiRacketHex } from './icons/SiRacket.mjs'; +export { default as SiRadar, defaultColor as SiRadarHex } from './icons/SiRadar.mjs'; +export { default as SiRadarr, defaultColor as SiRadarrHex } from './icons/SiRadarr.mjs'; +export { default as SiRadiofrance, defaultColor as SiRadiofranceHex } from './icons/SiRadiofrance.mjs'; +export { default as SiRadixui, defaultColor as SiRadixuiHex } from './icons/SiRadixui.mjs'; +export { default as SiRadstudio, defaultColor as SiRadstudioHex } from './icons/SiRadstudio.mjs'; +export { default as SiRailway, defaultColor as SiRailwayHex } from './icons/SiRailway.mjs'; +export { default as SiRainmeter, defaultColor as SiRainmeterHex } from './icons/SiRainmeter.mjs'; +export { default as SiRainyun, defaultColor as SiRainyunHex } from './icons/SiRainyun.mjs'; +export { default as SiRakuten, defaultColor as SiRakutenHex } from './icons/SiRakuten.mjs'; +export { default as SiRakutenkobo, defaultColor as SiRakutenkoboHex } from './icons/SiRakutenkobo.mjs'; +export { default as SiRam, defaultColor as SiRamHex } from './icons/SiRam.mjs'; +export { default as SiRancher, defaultColor as SiRancherHex } from './icons/SiRancher.mjs'; +export { default as SiRapid, defaultColor as SiRapidHex } from './icons/SiRapid.mjs'; +export { default as SiRarible, defaultColor as SiRaribleHex } from './icons/SiRarible.mjs'; +export { default as SiRasa, defaultColor as SiRasaHex } from './icons/SiRasa.mjs'; +export { default as SiRaspberrypi, defaultColor as SiRaspberrypiHex } from './icons/SiRaspberrypi.mjs'; +export { default as SiRatatui, defaultColor as SiRatatuiHex } from './icons/SiRatatui.mjs'; +export { default as SiRavelry, defaultColor as SiRavelryHex } from './icons/SiRavelry.mjs'; +export { default as SiRay, defaultColor as SiRayHex } from './icons/SiRay.mjs'; +export { default as SiRaycast, defaultColor as SiRaycastHex } from './icons/SiRaycast.mjs'; +export { default as SiRaylib, defaultColor as SiRaylibHex } from './icons/SiRaylib.mjs'; +export { default as SiRazer, defaultColor as SiRazerHex } from './icons/SiRazer.mjs'; +export { default as SiRazorpay, defaultColor as SiRazorpayHex } from './icons/SiRazorpay.mjs'; +export { default as SiRclone, defaultColor as SiRcloneHex } from './icons/SiRclone.mjs'; +export { default as SiReact, defaultColor as SiReactHex } from './icons/SiReact.mjs'; +export { default as SiReactbootstrap, defaultColor as SiReactbootstrapHex } from './icons/SiReactbootstrap.mjs'; +export { default as SiReacthookform, defaultColor as SiReacthookformHex } from './icons/SiReacthookform.mjs'; +export { default as SiReactiveresume, defaultColor as SiReactiveresumeHex } from './icons/SiReactiveresume.mjs'; +export { default as SiReactivex, defaultColor as SiReactivexHex } from './icons/SiReactivex.mjs'; +export { default as SiReactos, defaultColor as SiReactosHex } from './icons/SiReactos.mjs'; +export { default as SiReactquery, defaultColor as SiReactqueryHex } from './icons/SiReactquery.mjs'; +export { default as SiReactrouter, defaultColor as SiReactrouterHex } from './icons/SiReactrouter.mjs'; +export { default as SiReacttable, defaultColor as SiReacttableHex } from './icons/SiReacttable.mjs'; +export { default as SiReaddotcv, defaultColor as SiReaddotcvHex } from './icons/SiReaddotcv.mjs'; +export { default as SiReadme, defaultColor as SiReadmeHex } from './icons/SiReadme.mjs'; +export { default as SiReadthedocs, defaultColor as SiReadthedocsHex } from './icons/SiReadthedocs.mjs'; +export { default as SiReason, defaultColor as SiReasonHex } from './icons/SiReason.mjs'; +export { default as SiReasonstudios, defaultColor as SiReasonstudiosHex } from './icons/SiReasonstudios.mjs'; +export { default as SiRecoil, defaultColor as SiRecoilHex } from './icons/SiRecoil.mjs'; +export { default as SiRed, defaultColor as SiRedHex } from './icons/SiRed.mjs'; +export { default as SiRedash, defaultColor as SiRedashHex } from './icons/SiRedash.mjs'; +export { default as SiRedbubble, defaultColor as SiRedbubbleHex } from './icons/SiRedbubble.mjs'; +export { default as SiRedbull, defaultColor as SiRedbullHex } from './icons/SiRedbull.mjs'; +export { default as SiRedcandlegames, defaultColor as SiRedcandlegamesHex } from './icons/SiRedcandlegames.mjs'; +export { default as SiReddit, defaultColor as SiRedditHex } from './icons/SiReddit.mjs'; +export { default as SiRedhat, defaultColor as SiRedhatHex } from './icons/SiRedhat.mjs'; +export { default as SiRedhatopenshift, defaultColor as SiRedhatopenshiftHex } from './icons/SiRedhatopenshift.mjs'; +export { default as SiRedis, defaultColor as SiRedisHex } from './icons/SiRedis.mjs'; +export { default as SiRedmine, defaultColor as SiRedmineHex } from './icons/SiRedmine.mjs'; +export { default as SiRedox, defaultColor as SiRedoxHex } from './icons/SiRedox.mjs'; +export { default as SiRedragon, defaultColor as SiRedragonHex } from './icons/SiRedragon.mjs'; +export { default as SiRedsys, defaultColor as SiRedsysHex } from './icons/SiRedsys.mjs'; +export { default as SiRedux, defaultColor as SiReduxHex } from './icons/SiRedux.mjs'; +export { default as SiReduxsaga, defaultColor as SiReduxsagaHex } from './icons/SiReduxsaga.mjs'; +export { default as SiRedwoodjs, defaultColor as SiRedwoodjsHex } from './icons/SiRedwoodjs.mjs'; +export { default as SiReebok, defaultColor as SiReebokHex } from './icons/SiReebok.mjs'; +export { default as SiRefine, defaultColor as SiRefineHex } from './icons/SiRefine.mjs'; +export { default as SiRefinedgithub, defaultColor as SiRefinedgithubHex } from './icons/SiRefinedgithub.mjs'; +export { default as SiReflex, defaultColor as SiReflexHex } from './icons/SiReflex.mjs'; +export { default as SiRekaui, defaultColor as SiRekauiHex } from './icons/SiRekaui.mjs'; +export { default as SiRelay, defaultColor as SiRelayHex } from './icons/SiRelay.mjs'; +export { default as SiRelianceindustrieslimited, defaultColor as SiRelianceindustrieslimitedHex } from './icons/SiRelianceindustrieslimited.mjs'; +export { default as SiRemark, defaultColor as SiRemarkHex } from './icons/SiRemark.mjs'; +export { default as SiRemedyentertainment, defaultColor as SiRemedyentertainmentHex } from './icons/SiRemedyentertainment.mjs'; +export { default as SiRemix, defaultColor as SiRemixHex } from './icons/SiRemix.mjs'; +export { default as SiRemovedotbg, defaultColor as SiRemovedotbgHex } from './icons/SiRemovedotbg.mjs'; +export { default as SiRenault, defaultColor as SiRenaultHex } from './icons/SiRenault.mjs'; +export { default as SiRender, defaultColor as SiRenderHex } from './icons/SiRender.mjs'; +export { default as SiRenovate, defaultColor as SiRenovateHex } from './icons/SiRenovate.mjs'; +export { default as SiRenpy, defaultColor as SiRenpyHex } from './icons/SiRenpy.mjs'; +export { default as SiRenren, defaultColor as SiRenrenHex } from './icons/SiRenren.mjs'; +export { default as SiReplicate, defaultColor as SiReplicateHex } from './icons/SiReplicate.mjs'; +export { default as SiReplit, defaultColor as SiReplitHex } from './icons/SiReplit.mjs'; +export { default as SiRepublicofgamers, defaultColor as SiRepublicofgamersHex } from './icons/SiRepublicofgamers.mjs'; +export { default as SiRescript, defaultColor as SiRescriptHex } from './icons/SiRescript.mjs'; +export { default as SiRescuetime, defaultColor as SiRescuetimeHex } from './icons/SiRescuetime.mjs'; +export { default as SiResearchgate, defaultColor as SiResearchgateHex } from './icons/SiResearchgate.mjs'; +export { default as SiResend, defaultColor as SiResendHex } from './icons/SiResend.mjs'; +export { default as SiResharper, defaultColor as SiResharperHex } from './icons/SiResharper.mjs'; +export { default as SiResurrectionremixos, defaultColor as SiResurrectionremixosHex } from './icons/SiResurrectionremixos.mjs'; +export { default as SiRetool, defaultColor as SiRetoolHex } from './icons/SiRetool.mjs'; +export { default as SiRetroachievements, defaultColor as SiRetroachievementsHex } from './icons/SiRetroachievements.mjs'; +export { default as SiRetroarch, defaultColor as SiRetroarchHex } from './icons/SiRetroarch.mjs'; +export { default as SiRetropie, defaultColor as SiRetropieHex } from './icons/SiRetropie.mjs'; +export { default as SiRevanced, defaultColor as SiRevancedHex } from './icons/SiRevanced.mjs'; +export { default as SiRevealdotjs, defaultColor as SiRevealdotjsHex } from './icons/SiRevealdotjs.mjs'; +export { default as SiRevenuecat, defaultColor as SiRevenuecatHex } from './icons/SiRevenuecat.mjs'; +export { default as SiReverbnation, defaultColor as SiReverbnationHex } from './icons/SiReverbnation.mjs'; +export { default as SiRevoltdotchat, defaultColor as SiRevoltdotchatHex } from './icons/SiRevoltdotchat.mjs'; +export { default as SiRevolut, defaultColor as SiRevolutHex } from './icons/SiRevolut.mjs'; +export { default as SiRewe, defaultColor as SiReweHex } from './icons/SiRewe.mjs'; +export { default as SiRezgo, defaultColor as SiRezgoHex } from './icons/SiRezgo.mjs'; +export { default as SiRhinoceros, defaultColor as SiRhinocerosHex } from './icons/SiRhinoceros.mjs'; +export { default as SiRich, defaultColor as SiRichHex } from './icons/SiRich.mjs'; +export { default as SiRider, defaultColor as SiRiderHex } from './icons/SiRider.mjs'; +export { default as SiRimacautomobili, defaultColor as SiRimacautomobiliHex } from './icons/SiRimacautomobili.mjs'; +export { default as SiRime, defaultColor as SiRimeHex } from './icons/SiRime.mjs'; +export { default as SiRing, defaultColor as SiRingHex } from './icons/SiRing.mjs'; +export { default as SiRiotgames, defaultColor as SiRiotgamesHex } from './icons/SiRiotgames.mjs'; +export { default as SiRipple, defaultColor as SiRippleHex } from './icons/SiRipple.mjs'; +export { default as SiRiscv, defaultColor as SiRiscvHex } from './icons/SiRiscv.mjs'; +export { default as SiRiseup, defaultColor as SiRiseupHex } from './icons/SiRiseup.mjs'; +export { default as SiRitzcarlton, defaultColor as SiRitzcarltonHex } from './icons/SiRitzcarlton.mjs'; +export { default as SiRive, defaultColor as SiRiveHex } from './icons/SiRive.mjs'; +export { default as SiRoadmapdotsh, defaultColor as SiRoadmapdotshHex } from './icons/SiRoadmapdotsh.mjs'; +export { default as SiRoamresearch, defaultColor as SiRoamresearchHex } from './icons/SiRoamresearch.mjs'; +export { default as SiRobinhood, defaultColor as SiRobinhoodHex } from './icons/SiRobinhood.mjs'; +export { default as SiRoblox, defaultColor as SiRobloxHex } from './icons/SiRoblox.mjs'; +export { default as SiRobloxstudio, defaultColor as SiRobloxstudioHex } from './icons/SiRobloxstudio.mjs'; +export { default as SiRoboflow, defaultColor as SiRoboflowHex } from './icons/SiRoboflow.mjs'; +export { default as SiRobotframework, defaultColor as SiRobotframeworkHex } from './icons/SiRobotframework.mjs'; +export { default as SiRocket, defaultColor as SiRocketHex } from './icons/SiRocket.mjs'; +export { default as SiRocketdotchat, defaultColor as SiRocketdotchatHex } from './icons/SiRocketdotchat.mjs'; +export { default as SiRocksdb, defaultColor as SiRocksdbHex } from './icons/SiRocksdb.mjs'; +export { default as SiRockstargames, defaultColor as SiRockstargamesHex } from './icons/SiRockstargames.mjs'; +export { default as SiRockwellautomation, defaultColor as SiRockwellautomationHex } from './icons/SiRockwellautomation.mjs'; +export { default as SiRockylinux, defaultColor as SiRockylinuxHex } from './icons/SiRockylinux.mjs'; +export { default as SiRoku, defaultColor as SiRokuHex } from './icons/SiRoku.mjs'; +export { default as SiRoll20, defaultColor as SiRoll20Hex } from './icons/SiRoll20.mjs'; +export { default as SiRollbar, defaultColor as SiRollbarHex } from './icons/SiRollbar.mjs'; +export { default as SiRolldown, defaultColor as SiRolldownHex } from './icons/SiRolldown.mjs'; +export { default as SiRollsroyce, defaultColor as SiRollsroyceHex } from './icons/SiRollsroyce.mjs'; +export { default as SiRollupdotjs, defaultColor as SiRollupdotjsHex } from './icons/SiRollupdotjs.mjs'; +export { default as SiRook, defaultColor as SiRookHex } from './icons/SiRook.mjs'; +export { default as SiRoon, defaultColor as SiRoonHex } from './icons/SiRoon.mjs'; +export { default as SiRoot, defaultColor as SiRootHex } from './icons/SiRoot.mjs'; +export { default as SiRootme, defaultColor as SiRootmeHex } from './icons/SiRootme.mjs'; +export { default as SiRoots, defaultColor as SiRootsHex } from './icons/SiRoots.mjs'; +export { default as SiRootsbedrock, defaultColor as SiRootsbedrockHex } from './icons/SiRootsbedrock.mjs'; +export { default as SiRootssage, defaultColor as SiRootssageHex } from './icons/SiRootssage.mjs'; +export { default as SiRos, defaultColor as SiRosHex } from './icons/SiRos.mjs'; +export { default as SiRossmann, defaultColor as SiRossmannHex } from './icons/SiRossmann.mjs'; +export { default as SiRotaryinternational, defaultColor as SiRotaryinternationalHex } from './icons/SiRotaryinternational.mjs'; +export { default as SiRottentomatoes, defaultColor as SiRottentomatoesHex } from './icons/SiRottentomatoes.mjs'; +export { default as SiRoundcube, defaultColor as SiRoundcubeHex } from './icons/SiRoundcube.mjs'; +export { default as SiRsocket, defaultColor as SiRsocketHex } from './icons/SiRsocket.mjs'; +export { default as SiRss, defaultColor as SiRssHex } from './icons/SiRss.mjs'; +export { default as SiRstudioide, defaultColor as SiRstudioideHex } from './icons/SiRstudioide.mjs'; +export { default as SiRte, defaultColor as SiRteHex } from './icons/SiRte.mjs'; +export { default as SiRtl, defaultColor as SiRtlHex } from './icons/SiRtl.mjs'; +export { default as SiRtlzwei, defaultColor as SiRtlzweiHex } from './icons/SiRtlzwei.mjs'; +export { default as SiRtm, defaultColor as SiRtmHex } from './icons/SiRtm.mjs'; +export { default as SiRubocop, defaultColor as SiRubocopHex } from './icons/SiRubocop.mjs'; +export { default as SiRuby, defaultColor as SiRubyHex } from './icons/SiRuby.mjs'; +export { default as SiRubygems, defaultColor as SiRubygemsHex } from './icons/SiRubygems.mjs'; +export { default as SiRubymine, defaultColor as SiRubymineHex } from './icons/SiRubymine.mjs'; +export { default as SiRubyonrails, defaultColor as SiRubyonrailsHex } from './icons/SiRubyonrails.mjs'; +export { default as SiRubysinatra, defaultColor as SiRubysinatraHex } from './icons/SiRubysinatra.mjs'; +export { default as SiRuff, defaultColor as SiRuffHex } from './icons/SiRuff.mjs'; +export { default as SiRumahweb, defaultColor as SiRumahwebHex } from './icons/SiRumahweb.mjs'; +export { default as SiRumble, defaultColor as SiRumbleHex } from './icons/SiRumble.mjs'; +export { default as SiRundeck, defaultColor as SiRundeckHex } from './icons/SiRundeck.mjs'; +export { default as SiRunkeeper, defaultColor as SiRunkeeperHex } from './icons/SiRunkeeper.mjs'; +export { default as SiRunkit, defaultColor as SiRunkitHex } from './icons/SiRunkit.mjs'; +export { default as SiRunrundotit, defaultColor as SiRunrundotitHex } from './icons/SiRunrundotit.mjs'; +export { default as SiRust, defaultColor as SiRustHex } from './icons/SiRust.mjs'; +export { default as SiRustdesk, defaultColor as SiRustdeskHex } from './icons/SiRustdesk.mjs'; +export { default as SiRxdb, defaultColor as SiRxdbHex } from './icons/SiRxdb.mjs'; +export { default as SiRyanair, defaultColor as SiRyanairHex } from './icons/SiRyanair.mjs'; +export { default as SiRye, defaultColor as SiRyeHex } from './icons/SiRye.mjs'; +export { default as SiS7airlines, defaultColor as SiS7airlinesHex } from './icons/SiS7airlines.mjs'; +export { default as SiSabanci, defaultColor as SiSabanciHex } from './icons/SiSabanci.mjs'; +export { default as SiSafari, defaultColor as SiSafariHex } from './icons/SiSafari.mjs'; +export { default as SiSage, defaultColor as SiSageHex } from './icons/SiSage.mjs'; +export { default as SiSagemath, defaultColor as SiSagemathHex } from './icons/SiSagemath.mjs'; +export { default as SiSahibinden, defaultColor as SiSahibindenHex } from './icons/SiSahibinden.mjs'; +export { default as SiSailfishos, defaultColor as SiSailfishosHex } from './icons/SiSailfishos.mjs'; +export { default as SiSailsdotjs, defaultColor as SiSailsdotjsHex } from './icons/SiSailsdotjs.mjs'; +export { default as SiSalla, defaultColor as SiSallaHex } from './icons/SiSalla.mjs'; +export { default as SiSaltproject, defaultColor as SiSaltprojectHex } from './icons/SiSaltproject.mjs'; +export { default as SiSamsclub, defaultColor as SiSamsclubHex } from './icons/SiSamsclub.mjs'; +export { default as SiSamsung, defaultColor as SiSamsungHex } from './icons/SiSamsung.mjs'; +export { default as SiSamsungpay, defaultColor as SiSamsungpayHex } from './icons/SiSamsungpay.mjs'; +export { default as SiSanfranciscomunicipalrailway, defaultColor as SiSanfranciscomunicipalrailwayHex } from './icons/SiSanfranciscomunicipalrailway.mjs'; +export { default as SiSanic, defaultColor as SiSanicHex } from './icons/SiSanic.mjs'; +export { default as SiSanity, defaultColor as SiSanityHex } from './icons/SiSanity.mjs'; +export { default as SiSaopaulometro, defaultColor as SiSaopaulometroHex } from './icons/SiSaopaulometro.mjs'; +export { default as SiSap, defaultColor as SiSapHex } from './icons/SiSap.mjs'; +export { default as SiSartorius, defaultColor as SiSartoriusHex } from './icons/SiSartorius.mjs'; +export { default as SiSass, defaultColor as SiSassHex } from './icons/SiSass.mjs'; +export { default as SiSat1, defaultColor as SiSat1Hex } from './icons/SiSat1.mjs'; +export { default as SiSatellite, defaultColor as SiSatelliteHex } from './icons/SiSatellite.mjs'; +export { default as SiSaturn, defaultColor as SiSaturnHex } from './icons/SiSaturn.mjs'; +export { default as SiSaucelabs, defaultColor as SiSaucelabsHex } from './icons/SiSaucelabs.mjs'; +export { default as SiSaudia, defaultColor as SiSaudiaHex } from './icons/SiSaudia.mjs'; +export { default as SiScala, defaultColor as SiScalaHex } from './icons/SiScala.mjs'; +export { default as SiScalar, defaultColor as SiScalarHex } from './icons/SiScalar.mjs'; +export { default as SiScaleway, defaultColor as SiScalewayHex } from './icons/SiScaleway.mjs'; +export { default as SiScan, defaultColor as SiScanHex } from './icons/SiScan.mjs'; +export { default as SiScania, defaultColor as SiScaniaHex } from './icons/SiScania.mjs'; +export { default as SiSchneiderelectric, defaultColor as SiSchneiderelectricHex } from './icons/SiSchneiderelectric.mjs'; +export { default as SiScikitlearn, defaultColor as SiScikitlearnHex } from './icons/SiScikitlearn.mjs'; +export { default as SiScilab, defaultColor as SiScilabHex } from './icons/SiScilab.mjs'; +export { default as SiScipy, defaultColor as SiScipyHex } from './icons/SiScipy.mjs'; +export { default as SiScopus, defaultColor as SiScopusHex } from './icons/SiScopus.mjs'; +export { default as SiScpfoundation, defaultColor as SiScpfoundationHex } from './icons/SiScpfoundation.mjs'; +export { default as SiScrapbox, defaultColor as SiScrapboxHex } from './icons/SiScrapbox.mjs'; +export { default as SiScrapy, defaultColor as SiScrapyHex } from './icons/SiScrapy.mjs'; +export { default as SiScratch, defaultColor as SiScratchHex } from './icons/SiScratch.mjs'; +export { default as SiScreencastify, defaultColor as SiScreencastifyHex } from './icons/SiScreencastify.mjs'; +export { default as SiScrimba, defaultColor as SiScrimbaHex } from './icons/SiScrimba.mjs'; +export { default as SiScrollreveal, defaultColor as SiScrollrevealHex } from './icons/SiScrollreveal.mjs'; +export { default as SiScrumalliance, defaultColor as SiScrumallianceHex } from './icons/SiScrumalliance.mjs'; +export { default as SiScrutinizerci, defaultColor as SiScrutinizerciHex } from './icons/SiScrutinizerci.mjs'; +export { default as SiScylladb, defaultColor as SiScylladbHex } from './icons/SiScylladb.mjs'; +export { default as SiSeafile, defaultColor as SiSeafileHex } from './icons/SiSeafile.mjs'; +export { default as SiSeagate, defaultColor as SiSeagateHex } from './icons/SiSeagate.mjs'; +export { default as SiSearxng, defaultColor as SiSearxngHex } from './icons/SiSearxng.mjs'; +export { default as SiSeat, defaultColor as SiSeatHex } from './icons/SiSeat.mjs'; +export { default as SiSeatgeek, defaultColor as SiSeatgeekHex } from './icons/SiSeatgeek.mjs'; +export { default as SiSecurityscorecard, defaultColor as SiSecurityscorecardHex } from './icons/SiSecurityscorecard.mjs'; +export { default as SiSefaria, defaultColor as SiSefariaHex } from './icons/SiSefaria.mjs'; +export { default as SiSega, defaultColor as SiSegaHex } from './icons/SiSega.mjs'; +export { default as SiSelenium, defaultColor as SiSeleniumHex } from './icons/SiSelenium.mjs'; +export { default as SiSellfy, defaultColor as SiSellfyHex } from './icons/SiSellfy.mjs'; +export { default as SiSemanticrelease, defaultColor as SiSemanticreleaseHex } from './icons/SiSemanticrelease.mjs'; +export { default as SiSemanticscholar, defaultColor as SiSemanticscholarHex } from './icons/SiSemanticscholar.mjs'; +export { default as SiSemanticui, defaultColor as SiSemanticuiHex } from './icons/SiSemanticui.mjs'; +export { default as SiSemanticuireact, defaultColor as SiSemanticuireactHex } from './icons/SiSemanticuireact.mjs'; +export { default as SiSemanticweb, defaultColor as SiSemanticwebHex } from './icons/SiSemanticweb.mjs'; +export { default as SiSemaphoreci, defaultColor as SiSemaphoreciHex } from './icons/SiSemaphoreci.mjs'; +export { default as SiSemrush, defaultColor as SiSemrushHex } from './icons/SiSemrush.mjs'; +export { default as SiSemver, defaultColor as SiSemverHex } from './icons/SiSemver.mjs'; +export { default as SiSencha, defaultColor as SiSenchaHex } from './icons/SiSencha.mjs'; +export { default as SiSennheiser, defaultColor as SiSennheiserHex } from './icons/SiSennheiser.mjs'; +export { default as SiSensu, defaultColor as SiSensuHex } from './icons/SiSensu.mjs'; +export { default as SiSentry, defaultColor as SiSentryHex } from './icons/SiSentry.mjs'; +export { default as SiSepa, defaultColor as SiSepaHex } from './icons/SiSepa.mjs'; +export { default as SiSequelize, defaultColor as SiSequelizeHex } from './icons/SiSequelize.mjs'; +export { default as SiServbay, defaultColor as SiServbayHex } from './icons/SiServbay.mjs'; +export { default as SiServerfault, defaultColor as SiServerfaultHex } from './icons/SiServerfault.mjs'; +export { default as SiServerless, defaultColor as SiServerlessHex } from './icons/SiServerless.mjs'; +export { default as SiSession, defaultColor as SiSessionHex } from './icons/SiSession.mjs'; +export { default as SiSessionize, defaultColor as SiSessionizeHex } from './icons/SiSessionize.mjs'; +export { default as SiSetapp, defaultColor as SiSetappHex } from './icons/SiSetapp.mjs'; +export { default as SiSetuptools, defaultColor as SiSetuptoolsHex } from './icons/SiSetuptools.mjs'; +export { default as SiSfml, defaultColor as SiSfmlHex } from './icons/SiSfml.mjs'; +export { default as SiShadcnui, defaultColor as SiShadcnuiHex } from './icons/SiShadcnui.mjs'; +export { default as SiShadow, defaultColor as SiShadowHex } from './icons/SiShadow.mjs'; +export { default as SiShanghaimetro, defaultColor as SiShanghaimetroHex } from './icons/SiShanghaimetro.mjs'; +export { default as SiSharex, defaultColor as SiSharexHex } from './icons/SiSharex.mjs'; +export { default as SiSharp, defaultColor as SiSharpHex } from './icons/SiSharp.mjs'; +export { default as SiShazam, defaultColor as SiShazamHex } from './icons/SiShazam.mjs'; +export { default as SiShell, defaultColor as SiShellHex } from './icons/SiShell.mjs'; +export { default as SiShelly, defaultColor as SiShellyHex } from './icons/SiShelly.mjs'; +export { default as SiShenzhenmetro, defaultColor as SiShenzhenmetroHex } from './icons/SiShenzhenmetro.mjs'; +export { default as SiShieldsdotio, defaultColor as SiShieldsdotioHex } from './icons/SiShieldsdotio.mjs'; +export { default as SiShikimori, defaultColor as SiShikimoriHex } from './icons/SiShikimori.mjs'; +export { default as SiShopee, defaultColor as SiShopeeHex } from './icons/SiShopee.mjs'; +export { default as SiShopify, defaultColor as SiShopifyHex } from './icons/SiShopify.mjs'; +export { default as SiShopware, defaultColor as SiShopwareHex } from './icons/SiShopware.mjs'; +export { default as SiShortcut, defaultColor as SiShortcutHex } from './icons/SiShortcut.mjs'; +export { default as SiShowpad, defaultColor as SiShowpadHex } from './icons/SiShowpad.mjs'; +export { default as SiShowtime, defaultColor as SiShowtimeHex } from './icons/SiShowtime.mjs'; +export { default as SiShowwcase, defaultColor as SiShowwcaseHex } from './icons/SiShowwcase.mjs'; +export { default as SiSidekiq, defaultColor as SiSidekiqHex } from './icons/SiSidekiq.mjs'; +export { default as SiSidequest, defaultColor as SiSidequestHex } from './icons/SiSidequest.mjs'; +export { default as SiSiemens, defaultColor as SiSiemensHex } from './icons/SiSiemens.mjs'; +export { default as SiSifive, defaultColor as SiSifiveHex } from './icons/SiSifive.mjs'; +export { default as SiSignal, defaultColor as SiSignalHex } from './icons/SiSignal.mjs'; +export { default as SiSilverairways, defaultColor as SiSilverairwaysHex } from './icons/SiSilverairways.mjs'; +export { default as SiSimilarweb, defaultColor as SiSimilarwebHex } from './icons/SiSimilarweb.mjs'; +export { default as SiSimkl, defaultColor as SiSimklHex } from './icons/SiSimkl.mjs'; +export { default as SiSimpleanalytics, defaultColor as SiSimpleanalyticsHex } from './icons/SiSimpleanalytics.mjs'; +export { default as SiSimpleicons, defaultColor as SiSimpleiconsHex } from './icons/SiSimpleicons.mjs'; +export { default as SiSimplelocalize, defaultColor as SiSimplelocalizeHex } from './icons/SiSimplelocalize.mjs'; +export { default as SiSimplelogin, defaultColor as SiSimpleloginHex } from './icons/SiSimplelogin.mjs'; +export { default as SiSimplenote, defaultColor as SiSimplenoteHex } from './icons/SiSimplenote.mjs'; +export { default as SiSimplex, defaultColor as SiSimplexHex } from './icons/SiSimplex.mjs'; +export { default as SiSinaweibo, defaultColor as SiSinaweiboHex } from './icons/SiSinaweibo.mjs'; +export { default as SiSingaporeairlines, defaultColor as SiSingaporeairlinesHex } from './icons/SiSingaporeairlines.mjs'; +export { default as SiSinglestore, defaultColor as SiSinglestoreHex } from './icons/SiSinglestore.mjs'; +export { default as SiSitecore, defaultColor as SiSitecoreHex } from './icons/SiSitecore.mjs'; +export { default as SiSitepoint, defaultColor as SiSitepointHex } from './icons/SiSitepoint.mjs'; +export { default as SiSiyuan, defaultColor as SiSiyuanHex } from './icons/SiSiyuan.mjs'; +export { default as SiSkaffold, defaultColor as SiSkaffoldHex } from './icons/SiSkaffold.mjs'; +export { default as SiSkeleton, defaultColor as SiSkeletonHex } from './icons/SiSkeleton.mjs'; +export { default as SiSketch, defaultColor as SiSketchHex } from './icons/SiSketch.mjs'; +export { default as SiSketchfab, defaultColor as SiSketchfabHex } from './icons/SiSketchfab.mjs'; +export { default as SiSketchup, defaultColor as SiSketchupHex } from './icons/SiSketchup.mjs'; +export { default as SiSkillshare, defaultColor as SiSkillshareHex } from './icons/SiSkillshare.mjs'; +export { default as SiSkoda, defaultColor as SiSkodaHex } from './icons/SiSkoda.mjs'; +export { default as SiSky, defaultColor as SiSkyHex } from './icons/SiSky.mjs'; +export { default as SiSkypack, defaultColor as SiSkypackHex } from './icons/SiSkypack.mjs'; +export { default as SiSlackware, defaultColor as SiSlackwareHex } from './icons/SiSlackware.mjs'; +export { default as SiSlashdot, defaultColor as SiSlashdotHex } from './icons/SiSlashdot.mjs'; +export { default as SiSlickpic, defaultColor as SiSlickpicHex } from './icons/SiSlickpic.mjs'; +export { default as SiSlides, defaultColor as SiSlidesHex } from './icons/SiSlides.mjs'; +export { default as SiSlideshare, defaultColor as SiSlideshareHex } from './icons/SiSlideshare.mjs'; +export { default as SiSlint, defaultColor as SiSlintHex } from './icons/SiSlint.mjs'; +export { default as SiSmart, defaultColor as SiSmartHex } from './icons/SiSmart.mjs'; +export { default as SiSmartthings, defaultColor as SiSmartthingsHex } from './icons/SiSmartthings.mjs'; +export { default as SiSmashingmagazine, defaultColor as SiSmashingmagazineHex } from './icons/SiSmashingmagazine.mjs'; +export { default as SiSmoothcomp, defaultColor as SiSmoothcompHex } from './icons/SiSmoothcomp.mjs'; +export { default as SiSmrt, defaultColor as SiSmrtHex } from './icons/SiSmrt.mjs'; +export { default as SiSmugmug, defaultColor as SiSmugmugHex } from './icons/SiSmugmug.mjs'; +export { default as SiSnapchat, defaultColor as SiSnapchatHex } from './icons/SiSnapchat.mjs'; +export { default as SiSnapcraft, defaultColor as SiSnapcraftHex } from './icons/SiSnapcraft.mjs'; +export { default as SiSnapdragon, defaultColor as SiSnapdragonHex } from './icons/SiSnapdragon.mjs'; +export { default as SiSncf, defaultColor as SiSncfHex } from './icons/SiSncf.mjs'; +export { default as SiSnort, defaultColor as SiSnortHex } from './icons/SiSnort.mjs'; +export { default as SiSnowflake, defaultColor as SiSnowflakeHex } from './icons/SiSnowflake.mjs'; +export { default as SiSnowpack, defaultColor as SiSnowpackHex } from './icons/SiSnowpack.mjs'; +export { default as SiSnyk, defaultColor as SiSnykHex } from './icons/SiSnyk.mjs'; +export { default as SiSocialblade, defaultColor as SiSocialbladeHex } from './icons/SiSocialblade.mjs'; +export { default as SiSociety6, defaultColor as SiSociety6Hex } from './icons/SiSociety6.mjs'; +export { default as SiSocket, defaultColor as SiSocketHex } from './icons/SiSocket.mjs'; +export { default as SiSocketdotio, defaultColor as SiSocketdotioHex } from './icons/SiSocketdotio.mjs'; +export { default as SiSoftcatala, defaultColor as SiSoftcatalaHex } from './icons/SiSoftcatala.mjs'; +export { default as SiSoftpedia, defaultColor as SiSoftpediaHex } from './icons/SiSoftpedia.mjs'; +export { default as SiSogou, defaultColor as SiSogouHex } from './icons/SiSogou.mjs'; +export { default as SiSolana, defaultColor as SiSolanaHex } from './icons/SiSolana.mjs'; +export { default as SiSolid, defaultColor as SiSolidHex } from './icons/SiSolid.mjs'; +export { default as SiSolidity, defaultColor as SiSolidityHex } from './icons/SiSolidity.mjs'; +export { default as SiSololearn, defaultColor as SiSololearnHex } from './icons/SiSololearn.mjs'; +export { default as SiSolus, defaultColor as SiSolusHex } from './icons/SiSolus.mjs'; +export { default as SiSonar, defaultColor as SiSonarHex } from './icons/SiSonar.mjs'; +export { default as SiSonarqubecloud, defaultColor as SiSonarqubecloudHex } from './icons/SiSonarqubecloud.mjs'; +export { default as SiSonarqubeforide, defaultColor as SiSonarqubeforideHex } from './icons/SiSonarqubeforide.mjs'; +export { default as SiSonarqubeserver, defaultColor as SiSonarqubeserverHex } from './icons/SiSonarqubeserver.mjs'; +export { default as SiSonarr, defaultColor as SiSonarrHex } from './icons/SiSonarr.mjs'; +export { default as SiSonatype, defaultColor as SiSonatypeHex } from './icons/SiSonatype.mjs'; +export { default as SiSongkick, defaultColor as SiSongkickHex } from './icons/SiSongkick.mjs'; +export { default as SiSongoda, defaultColor as SiSongodaHex } from './icons/SiSongoda.mjs'; +export { default as SiSonicwall, defaultColor as SiSonicwallHex } from './icons/SiSonicwall.mjs'; +export { default as SiSonos, defaultColor as SiSonosHex } from './icons/SiSonos.mjs'; +export { default as SiSony, defaultColor as SiSonyHex } from './icons/SiSony.mjs'; +export { default as SiSoriana, defaultColor as SiSorianaHex } from './icons/SiSoriana.mjs'; +export { default as SiSoundcharts, defaultColor as SiSoundchartsHex } from './icons/SiSoundcharts.mjs'; +export { default as SiSoundcloud, defaultColor as SiSoundcloudHex } from './icons/SiSoundcloud.mjs'; +export { default as SiSourceengine, defaultColor as SiSourceengineHex } from './icons/SiSourceengine.mjs'; +export { default as SiSourceforge, defaultColor as SiSourceforgeHex } from './icons/SiSourceforge.mjs'; +export { default as SiSourcehut, defaultColor as SiSourcehutHex } from './icons/SiSourcehut.mjs'; +export { default as SiSourcetree, defaultColor as SiSourcetreeHex } from './icons/SiSourcetree.mjs'; +export { default as SiSouthwestairlines, defaultColor as SiSouthwestairlinesHex } from './icons/SiSouthwestairlines.mjs'; +export { default as SiSpacemacs, defaultColor as SiSpacemacsHex } from './icons/SiSpacemacs.mjs'; +export { default as SiSpaceship, defaultColor as SiSpaceshipHex } from './icons/SiSpaceship.mjs'; +export { default as SiSpacex, defaultColor as SiSpacexHex } from './icons/SiSpacex.mjs'; +export { default as SiSpacy, defaultColor as SiSpacyHex } from './icons/SiSpacy.mjs'; +export { default as SiSparkar, defaultColor as SiSparkarHex } from './icons/SiSparkar.mjs'; +export { default as SiSparkasse, defaultColor as SiSparkasseHex } from './icons/SiSparkasse.mjs'; +export { default as SiSparkfun, defaultColor as SiSparkfunHex } from './icons/SiSparkfun.mjs'; +export { default as SiSparkpost, defaultColor as SiSparkpostHex } from './icons/SiSparkpost.mjs'; +export { default as SiSpdx, defaultColor as SiSpdxHex } from './icons/SiSpdx.mjs'; +export { default as SiSpeakerdeck, defaultColor as SiSpeakerdeckHex } from './icons/SiSpeakerdeck.mjs'; +export { default as SiSpectrum, defaultColor as SiSpectrumHex } from './icons/SiSpectrum.mjs'; +export { default as SiSpeedtest, defaultColor as SiSpeedtestHex } from './icons/SiSpeedtest.mjs'; +export { default as SiSpeedypage, defaultColor as SiSpeedypageHex } from './icons/SiSpeedypage.mjs'; +export { default as SiSphinx, defaultColor as SiSphinxHex } from './icons/SiSphinx.mjs'; +export { default as SiSpigotmc, defaultColor as SiSpigotmcHex } from './icons/SiSpigotmc.mjs'; +export { default as SiSpine, defaultColor as SiSpineHex } from './icons/SiSpine.mjs'; +export { default as SiSpinnaker, defaultColor as SiSpinnakerHex } from './icons/SiSpinnaker.mjs'; +export { default as SiSplunk, defaultColor as SiSplunkHex } from './icons/SiSplunk.mjs'; +export { default as SiSpoj, defaultColor as SiSpojHex } from './icons/SiSpoj.mjs'; +export { default as SiSpond, defaultColor as SiSpondHex } from './icons/SiSpond.mjs'; +export { default as SiSpotify, defaultColor as SiSpotifyHex } from './icons/SiSpotify.mjs'; +export { default as SiSpotlight, defaultColor as SiSpotlightHex } from './icons/SiSpotlight.mjs'; +export { default as SiSpreadshirt, defaultColor as SiSpreadshirtHex } from './icons/SiSpreadshirt.mjs'; +export { default as SiSpreaker, defaultColor as SiSpreakerHex } from './icons/SiSpreaker.mjs'; +export { default as SiSpring, defaultColor as SiSpringHex } from './icons/SiSpring.mjs'; +export { default as SiSpringCreators, defaultColor as SiSpringCreatorsHex } from './icons/SiSpringCreators.mjs'; +export { default as SiSpringboot, defaultColor as SiSpringbootHex } from './icons/SiSpringboot.mjs'; +export { default as SiSpringsecurity, defaultColor as SiSpringsecurityHex } from './icons/SiSpringsecurity.mjs'; +export { default as SiSpyderide, defaultColor as SiSpyderideHex } from './icons/SiSpyderide.mjs'; +export { default as SiSqlalchemy, defaultColor as SiSqlalchemyHex } from './icons/SiSqlalchemy.mjs'; +export { default as SiSqlite, defaultColor as SiSqliteHex } from './icons/SiSqlite.mjs'; +export { default as SiSquare, defaultColor as SiSquareHex } from './icons/SiSquare.mjs'; +export { default as SiSquareenix, defaultColor as SiSquareenixHex } from './icons/SiSquareenix.mjs'; +export { default as SiSquarespace, defaultColor as SiSquarespaceHex } from './icons/SiSquarespace.mjs'; +export { default as SiSrgssr, defaultColor as SiSrgssrHex } from './icons/SiSrgssr.mjs'; +export { default as SiSsrn, defaultColor as SiSsrnHex } from './icons/SiSsrn.mjs'; +export { default as SiSst, defaultColor as SiSstHex } from './icons/SiSst.mjs'; +export { default as SiStackbit, defaultColor as SiStackbitHex } from './icons/SiStackbit.mjs'; +export { default as SiStackblitz, defaultColor as SiStackblitzHex } from './icons/SiStackblitz.mjs'; +export { default as SiStackedit, defaultColor as SiStackeditHex } from './icons/SiStackedit.mjs'; +export { default as SiStackexchange, defaultColor as SiStackexchangeHex } from './icons/SiStackexchange.mjs'; +export { default as SiStackhawk, defaultColor as SiStackhawkHex } from './icons/SiStackhawk.mjs'; +export { default as SiStackoverflow, defaultColor as SiStackoverflowHex } from './icons/SiStackoverflow.mjs'; +export { default as SiStackshare, defaultColor as SiStackshareHex } from './icons/SiStackshare.mjs'; +export { default as SiStadia, defaultColor as SiStadiaHex } from './icons/SiStadia.mjs'; +export { default as SiStaffbase, defaultColor as SiStaffbaseHex } from './icons/SiStaffbase.mjs'; +export { default as SiStagetimer, defaultColor as SiStagetimerHex } from './icons/SiStagetimer.mjs'; +export { default as SiStandardjs, defaultColor as SiStandardjsHex } from './icons/SiStandardjs.mjs'; +export { default as SiStandardresume, defaultColor as SiStandardresumeHex } from './icons/SiStandardresume.mjs'; +export { default as SiStarbucks, defaultColor as SiStarbucksHex } from './icons/SiStarbucks.mjs'; +export { default as SiStardock, defaultColor as SiStardockHex } from './icons/SiStardock.mjs'; +export { default as SiStarlingbank, defaultColor as SiStarlingbankHex } from './icons/SiStarlingbank.mjs'; +export { default as SiStarship, defaultColor as SiStarshipHex } from './icons/SiStarship.mjs'; +export { default as SiStartdotgg, defaultColor as SiStartdotggHex } from './icons/SiStartdotgg.mjs'; +export { default as SiStartpage, defaultColor as SiStartpageHex } from './icons/SiStartpage.mjs'; +export { default as SiStartrek, defaultColor as SiStartrekHex } from './icons/SiStartrek.mjs'; +export { default as SiStarz, defaultColor as SiStarzHex } from './icons/SiStarz.mjs'; +export { default as SiStatamic, defaultColor as SiStatamicHex } from './icons/SiStatamic.mjs'; +export { default as SiStatista, defaultColor as SiStatistaHex } from './icons/SiStatista.mjs'; +export { default as SiStatuspage, defaultColor as SiStatuspageHex } from './icons/SiStatuspage.mjs'; +export { default as SiStatuspal, defaultColor as SiStatuspalHex } from './icons/SiStatuspal.mjs'; +export { default as SiSteam, defaultColor as SiSteamHex } from './icons/SiSteam.mjs'; +export { default as SiSteamdb, defaultColor as SiSteamdbHex } from './icons/SiSteamdb.mjs'; +export { default as SiSteamdeck, defaultColor as SiSteamdeckHex } from './icons/SiSteamdeck.mjs'; +export { default as SiSteamworks, defaultColor as SiSteamworksHex } from './icons/SiSteamworks.mjs'; +export { default as SiSteelseries, defaultColor as SiSteelseriesHex } from './icons/SiSteelseries.mjs'; +export { default as SiSteem, defaultColor as SiSteemHex } from './icons/SiSteem.mjs'; +export { default as SiSteemit, defaultColor as SiSteemitHex } from './icons/SiSteemit.mjs'; +export { default as SiSteinberg, defaultColor as SiSteinbergHex } from './icons/SiSteinberg.mjs'; +export { default as SiStellar, defaultColor as SiStellarHex } from './icons/SiStellar.mjs'; +export { default as SiStencil, defaultColor as SiStencilHex } from './icons/SiStencil.mjs'; +export { default as SiStencyl, defaultColor as SiStencylHex } from './icons/SiStencyl.mjs'; +export { default as SiStimulus, defaultColor as SiStimulusHex } from './icons/SiStimulus.mjs'; +export { default as SiStmicroelectronics, defaultColor as SiStmicroelectronicsHex } from './icons/SiStmicroelectronics.mjs'; +export { default as SiStockx, defaultColor as SiStockxHex } from './icons/SiStockx.mjs'; +export { default as SiStopstalk, defaultColor as SiStopstalkHex } from './icons/SiStopstalk.mjs'; +export { default as SiStoryblok, defaultColor as SiStoryblokHex } from './icons/SiStoryblok.mjs'; +export { default as SiStorybook, defaultColor as SiStorybookHex } from './icons/SiStorybook.mjs'; +export { default as SiStrapi, defaultColor as SiStrapiHex } from './icons/SiStrapi.mjs'; +export { default as SiStrava, defaultColor as SiStravaHex } from './icons/SiStrava.mjs'; +export { default as SiStreamlabs, defaultColor as SiStreamlabsHex } from './icons/SiStreamlabs.mjs'; +export { default as SiStreamlit, defaultColor as SiStreamlitHex } from './icons/SiStreamlit.mjs'; +export { default as SiStreamrunners, defaultColor as SiStreamrunnersHex } from './icons/SiStreamrunners.mjs'; +export { default as SiStremio, defaultColor as SiStremioHex } from './icons/SiStremio.mjs'; +export { default as SiStripe, defaultColor as SiStripeHex } from './icons/SiStripe.mjs'; +export { default as SiStrongswan, defaultColor as SiStrongswanHex } from './icons/SiStrongswan.mjs'; +export { default as SiStryker, defaultColor as SiStrykerHex } from './icons/SiStryker.mjs'; +export { default as SiStubhub, defaultColor as SiStubhubHex } from './icons/SiStubhub.mjs'; +export { default as SiStudio3t, defaultColor as SiStudio3tHex } from './icons/SiStudio3t.mjs'; +export { default as SiStyledcomponents, defaultColor as SiStyledcomponentsHex } from './icons/SiStyledcomponents.mjs'; +export { default as SiStylelint, defaultColor as SiStylelintHex } from './icons/SiStylelint.mjs'; +export { default as SiStyleshare, defaultColor as SiStyleshareHex } from './icons/SiStyleshare.mjs'; +export { default as SiStylus, defaultColor as SiStylusHex } from './icons/SiStylus.mjs'; +export { default as SiSubaru, defaultColor as SiSubaruHex } from './icons/SiSubaru.mjs'; +export { default as SiSublimetext, defaultColor as SiSublimetextHex } from './icons/SiSublimetext.mjs'; +export { default as SiSubstack, defaultColor as SiSubstackHex } from './icons/SiSubstack.mjs'; +export { default as SiSubtitleedit, defaultColor as SiSubtitleeditHex } from './icons/SiSubtitleedit.mjs'; +export { default as SiSubversion, defaultColor as SiSubversionHex } from './icons/SiSubversion.mjs'; +export { default as SiSuckless, defaultColor as SiSucklessHex } from './icons/SiSuckless.mjs'; +export { default as SiSui, defaultColor as SiSuiHex } from './icons/SiSui.mjs'; +export { default as SiSuitest, defaultColor as SiSuitestHex } from './icons/SiSuitest.mjs'; +export { default as SiSumologic, defaultColor as SiSumologicHex } from './icons/SiSumologic.mjs'; +export { default as SiSuno, defaultColor as SiSunoHex } from './icons/SiSuno.mjs'; +export { default as SiSunrise, defaultColor as SiSunriseHex } from './icons/SiSunrise.mjs'; +export { default as SiSupabase, defaultColor as SiSupabaseHex } from './icons/SiSupabase.mjs'; +export { default as SiSupercrease, defaultColor as SiSupercreaseHex } from './icons/SiSupercrease.mjs'; +export { default as SiSupermicro, defaultColor as SiSupermicroHex } from './icons/SiSupermicro.mjs'; +export { default as SiSuperuser, defaultColor as SiSuperuserHex } from './icons/SiSuperuser.mjs'; +export { default as SiSurfshark, defaultColor as SiSurfsharkHex } from './icons/SiSurfshark.mjs'; +export { default as SiSurrealdb, defaultColor as SiSurrealdbHex } from './icons/SiSurrealdb.mjs'; +export { default as SiSurveymonkey, defaultColor as SiSurveymonkeyHex } from './icons/SiSurveymonkey.mjs'; +export { default as SiSuse, defaultColor as SiSuseHex } from './icons/SiSuse.mjs'; +export { default as SiSuzuki, defaultColor as SiSuzukiHex } from './icons/SiSuzuki.mjs'; +export { default as SiSvelte, defaultColor as SiSvelteHex } from './icons/SiSvelte.mjs'; +export { default as SiSvg, defaultColor as SiSvgHex } from './icons/SiSvg.mjs'; +export { default as SiSvgdotjs, defaultColor as SiSvgdotjsHex } from './icons/SiSvgdotjs.mjs'; +export { default as SiSvgo, defaultColor as SiSvgoHex } from './icons/SiSvgo.mjs'; +export { default as SiSvgtrace, defaultColor as SiSvgtraceHex } from './icons/SiSvgtrace.mjs'; +export { default as SiSwagger, defaultColor as SiSwaggerHex } from './icons/SiSwagger.mjs'; +export { default as SiSwarm, defaultColor as SiSwarmHex } from './icons/SiSwarm.mjs'; +export { default as SiSway, defaultColor as SiSwayHex } from './icons/SiSway.mjs'; +export { default as SiSwc, defaultColor as SiSwcHex } from './icons/SiSwc.mjs'; +export { default as SiSwift, defaultColor as SiSwiftHex } from './icons/SiSwift.mjs'; +export { default as SiSwiggy, defaultColor as SiSwiggyHex } from './icons/SiSwiggy.mjs'; +export { default as SiSwiper, defaultColor as SiSwiperHex } from './icons/SiSwiper.mjs'; +export { default as SiSwisscows, defaultColor as SiSwisscowsHex } from './icons/SiSwisscows.mjs'; +export { default as SiSwr, defaultColor as SiSwrHex } from './icons/SiSwr.mjs'; +export { default as SiSymantec, defaultColor as SiSymantecHex } from './icons/SiSymantec.mjs'; +export { default as SiSymbolab, defaultColor as SiSymbolabHex } from './icons/SiSymbolab.mjs'; +export { default as SiSymfony, defaultColor as SiSymfonyHex } from './icons/SiSymfony.mjs'; +export { default as SiSymphony, defaultColor as SiSymphonyHex } from './icons/SiSymphony.mjs'; +export { default as SiSympy, defaultColor as SiSympyHex } from './icons/SiSympy.mjs'; +export { default as SiSyncthing, defaultColor as SiSyncthingHex } from './icons/SiSyncthing.mjs'; +export { default as SiSynology, defaultColor as SiSynologyHex } from './icons/SiSynology.mjs'; +export { default as SiSystem76, defaultColor as SiSystem76Hex } from './icons/SiSystem76.mjs'; +export { default as SiTabelog, defaultColor as SiTabelogHex } from './icons/SiTabelog.mjs'; +export { default as SiTablecheck, defaultColor as SiTablecheckHex } from './icons/SiTablecheck.mjs'; +export { default as SiTacobell, defaultColor as SiTacobellHex } from './icons/SiTacobell.mjs'; +export { default as SiTado, defaultColor as SiTadoHex } from './icons/SiTado.mjs'; +export { default as SiTaichigraphics, defaultColor as SiTaichigraphicsHex } from './icons/SiTaichigraphics.mjs'; +export { default as SiTaichilang, defaultColor as SiTaichilangHex } from './icons/SiTaichilang.mjs'; +export { default as SiTails, defaultColor as SiTailsHex } from './icons/SiTails.mjs'; +export { default as SiTailscale, defaultColor as SiTailscaleHex } from './icons/SiTailscale.mjs'; +export { default as SiTailwindcss, defaultColor as SiTailwindcssHex } from './icons/SiTailwindcss.mjs'; +export { default as SiTaipy, defaultColor as SiTaipyHex } from './icons/SiTaipy.mjs'; +export { default as SiTaketwointeractivesoftware, defaultColor as SiTaketwointeractivesoftwareHex } from './icons/SiTaketwointeractivesoftware.mjs'; +export { default as SiTalend, defaultColor as SiTalendHex } from './icons/SiTalend.mjs'; +export { default as SiTalenthouse, defaultColor as SiTalenthouseHex } from './icons/SiTalenthouse.mjs'; +export { default as SiTalos, defaultColor as SiTalosHex } from './icons/SiTalos.mjs'; +export { default as SiTamiya, defaultColor as SiTamiyaHex } from './icons/SiTamiya.mjs'; +export { default as SiTampermonkey, defaultColor as SiTampermonkeyHex } from './icons/SiTampermonkey.mjs'; +export { default as SiTanstack, defaultColor as SiTanstackHex } from './icons/SiTanstack.mjs'; +export { default as SiTaobao, defaultColor as SiTaobaoHex } from './icons/SiTaobao.mjs'; +export { default as SiTapas, defaultColor as SiTapasHex } from './icons/SiTapas.mjs'; +export { default as SiTarget, defaultColor as SiTargetHex } from './icons/SiTarget.mjs'; +export { default as SiTarom, defaultColor as SiTaromHex } from './icons/SiTarom.mjs'; +export { default as SiTask, defaultColor as SiTaskHex } from './icons/SiTask.mjs'; +export { default as SiTasmota, defaultColor as SiTasmotaHex } from './icons/SiTasmota.mjs'; +export { default as SiTata, defaultColor as SiTataHex } from './icons/SiTata.mjs'; +export { default as SiTauri, defaultColor as SiTauriHex } from './icons/SiTauri.mjs'; +export { default as SiTaxbuzz, defaultColor as SiTaxbuzzHex } from './icons/SiTaxbuzz.mjs'; +export { default as SiTcs, defaultColor as SiTcsHex } from './icons/SiTcs.mjs'; +export { default as SiTeal, defaultColor as SiTealHex } from './icons/SiTeal.mjs'; +export { default as SiTeamcity, defaultColor as SiTeamcityHex } from './icons/SiTeamcity.mjs'; +export { default as SiTeamspeak, defaultColor as SiTeamspeakHex } from './icons/SiTeamspeak.mjs'; +export { default as SiTeamviewer, defaultColor as SiTeamviewerHex } from './icons/SiTeamviewer.mjs'; +export { default as SiTechcrunch, defaultColor as SiTechcrunchHex } from './icons/SiTechcrunch.mjs'; +export { default as SiTed, defaultColor as SiTedHex } from './icons/SiTed.mjs'; +export { default as SiTeepublic, defaultColor as SiTeepublicHex } from './icons/SiTeepublic.mjs'; +export { default as SiTeespring, defaultColor as SiTeespringHex } from './icons/SiTeespring.mjs'; +export { default as SiTekton, defaultColor as SiTektonHex } from './icons/SiTekton.mjs'; +export { default as SiTele5, defaultColor as SiTele5Hex } from './icons/SiTele5.mjs'; +export { default as SiTelefonica, defaultColor as SiTelefonicaHex } from './icons/SiTelefonica.mjs'; +export { default as SiTelegram, defaultColor as SiTelegramHex } from './icons/SiTelegram.mjs'; +export { default as SiTelegraph, defaultColor as SiTelegraphHex } from './icons/SiTelegraph.mjs'; +export { default as SiTelenor, defaultColor as SiTelenorHex } from './icons/SiTelenor.mjs'; +export { default as SiTelequebec, defaultColor as SiTelequebecHex } from './icons/SiTelequebec.mjs'; +export { default as SiTemporal, defaultColor as SiTemporalHex } from './icons/SiTemporal.mjs'; +export { default as SiTensorflow, defaultColor as SiTensorflowHex } from './icons/SiTensorflow.mjs'; +export { default as SiTeradata, defaultColor as SiTeradataHex } from './icons/SiTeradata.mjs'; +export { default as SiTeratail, defaultColor as SiTeratailHex } from './icons/SiTeratail.mjs'; +export { default as SiTermius, defaultColor as SiTermiusHex } from './icons/SiTermius.mjs'; +export { default as SiTerraform, defaultColor as SiTerraformHex } from './icons/SiTerraform.mjs'; +export { default as SiTesco, defaultColor as SiTescoHex } from './icons/SiTesco.mjs'; +export { default as SiTesla, defaultColor as SiTeslaHex } from './icons/SiTesla.mjs'; +export { default as SiTestcafe, defaultColor as SiTestcafeHex } from './icons/SiTestcafe.mjs'; +export { default as SiTestin, defaultColor as SiTestinHex } from './icons/SiTestin.mjs'; +export { default as SiTestinglibrary, defaultColor as SiTestinglibraryHex } from './icons/SiTestinglibrary.mjs'; +export { default as SiTestrail, defaultColor as SiTestrailHex } from './icons/SiTestrail.mjs'; +export { default as SiTether, defaultColor as SiTetherHex } from './icons/SiTether.mjs'; +export { default as SiTextpattern, defaultColor as SiTextpatternHex } from './icons/SiTextpattern.mjs'; +export { default as SiTextual, defaultColor as SiTextualHex } from './icons/SiTextual.mjs'; +export { default as SiTga, defaultColor as SiTgaHex } from './icons/SiTga.mjs'; +export { default as SiThangs, defaultColor as SiThangsHex } from './icons/SiThangs.mjs'; +export { default as SiThanos, defaultColor as SiThanosHex } from './icons/SiThanos.mjs'; +export { default as SiThealgorithms, defaultColor as SiThealgorithmsHex } from './icons/SiThealgorithms.mjs'; +export { default as SiTheboringcompany, defaultColor as SiTheboringcompanyHex } from './icons/SiTheboringcompany.mjs'; +export { default as SiTheconversation, defaultColor as SiTheconversationHex } from './icons/SiTheconversation.mjs'; +export { default as SiThefinals, defaultColor as SiThefinalsHex } from './icons/SiThefinals.mjs'; +export { default as SiTheguardian, defaultColor as SiTheguardianHex } from './icons/SiTheguardian.mjs'; +export { default as SiTheirishtimes, defaultColor as SiTheirishtimesHex } from './icons/SiTheirishtimes.mjs'; +export { default as SiThemighty, defaultColor as SiThemightyHex } from './icons/SiThemighty.mjs'; +export { default as SiThemodelsresource, defaultColor as SiThemodelsresourceHex } from './icons/SiThemodelsresource.mjs'; +export { default as SiThemoviedatabase, defaultColor as SiThemoviedatabaseHex } from './icons/SiThemoviedatabase.mjs'; +export { default as SiThenorthface, defaultColor as SiThenorthfaceHex } from './icons/SiThenorthface.mjs'; +export { default as SiTheodinproject, defaultColor as SiTheodinprojectHex } from './icons/SiTheodinproject.mjs'; +export { default as SiTheplanetarysociety, defaultColor as SiTheplanetarysocietyHex } from './icons/SiTheplanetarysociety.mjs'; +export { default as SiTheregister, defaultColor as SiTheregisterHex } from './icons/SiTheregister.mjs'; +export { default as SiThesoundsresource, defaultColor as SiThesoundsresourceHex } from './icons/SiThesoundsresource.mjs'; +export { default as SiThespritersresource, defaultColor as SiThespritersresourceHex } from './icons/SiThespritersresource.mjs'; +export { default as SiThestorygraph, defaultColor as SiThestorygraphHex } from './icons/SiThestorygraph.mjs'; +export { default as SiThewashingtonpost, defaultColor as SiThewashingtonpostHex } from './icons/SiThewashingtonpost.mjs'; +export { default as SiTheweatherchannel, defaultColor as SiTheweatherchannelHex } from './icons/SiTheweatherchannel.mjs'; +export { default as SiThingiverse, defaultColor as SiThingiverseHex } from './icons/SiThingiverse.mjs'; +export { default as SiThings, defaultColor as SiThingsHex } from './icons/SiThings.mjs'; +export { default as SiThinkpad, defaultColor as SiThinkpadHex } from './icons/SiThinkpad.mjs'; +export { default as SiThirdweb, defaultColor as SiThirdwebHex } from './icons/SiThirdweb.mjs'; +export { default as SiThreadless, defaultColor as SiThreadlessHex } from './icons/SiThreadless.mjs'; +export { default as SiThreads, defaultColor as SiThreadsHex } from './icons/SiThreads.mjs'; +export { default as SiThreedotjs, defaultColor as SiThreedotjsHex } from './icons/SiThreedotjs.mjs'; +export { default as SiThreema, defaultColor as SiThreemaHex } from './icons/SiThreema.mjs'; +export { default as SiThumbtack, defaultColor as SiThumbtackHex } from './icons/SiThumbtack.mjs'; +export { default as SiThunderbird, defaultColor as SiThunderbirdHex } from './icons/SiThunderbird.mjs'; +export { default as SiThunderstore, defaultColor as SiThunderstoreHex } from './icons/SiThunderstore.mjs'; +export { default as SiThurgauerkantonalbank, defaultColor as SiThurgauerkantonalbankHex } from './icons/SiThurgauerkantonalbank.mjs'; +export { default as SiThymeleaf, defaultColor as SiThymeleafHex } from './icons/SiThymeleaf.mjs'; +export { default as SiTicketmaster, defaultColor as SiTicketmasterHex } from './icons/SiTicketmaster.mjs'; +export { default as SiTicktick, defaultColor as SiTicktickHex } from './icons/SiTicktick.mjs'; +export { default as SiTidal, defaultColor as SiTidalHex } from './icons/SiTidal.mjs'; +export { default as SiTiddlywiki, defaultColor as SiTiddlywikiHex } from './icons/SiTiddlywiki.mjs'; +export { default as SiTide, defaultColor as SiTideHex } from './icons/SiTide.mjs'; +export { default as SiTidyverse, defaultColor as SiTidyverseHex } from './icons/SiTidyverse.mjs'; +export { default as SiTietoevry, defaultColor as SiTietoevryHex } from './icons/SiTietoevry.mjs'; +export { default as SiTiktok, defaultColor as SiTiktokHex } from './icons/SiTiktok.mjs'; +export { default as SiTildapublishing, defaultColor as SiTildapublishingHex } from './icons/SiTildapublishing.mjs'; +export { default as SiTile, defaultColor as SiTileHex } from './icons/SiTile.mjs'; +export { default as SiTimescale, defaultColor as SiTimescaleHex } from './icons/SiTimescale.mjs'; +export { default as SiTina, defaultColor as SiTinaHex } from './icons/SiTina.mjs'; +export { default as SiTinder, defaultColor as SiTinderHex } from './icons/SiTinder.mjs'; +export { default as SiTindie, defaultColor as SiTindieHex } from './icons/SiTindie.mjs'; +export { default as SiTinkercad, defaultColor as SiTinkercadHex } from './icons/SiTinkercad.mjs'; +export { default as SiTinygrad, defaultColor as SiTinygradHex } from './icons/SiTinygrad.mjs'; +export { default as SiTinyletter, defaultColor as SiTinyletterHex } from './icons/SiTinyletter.mjs'; +export { default as SiTistory, defaultColor as SiTistoryHex } from './icons/SiTistory.mjs'; +export { default as SiTldraw, defaultColor as SiTldrawHex } from './icons/SiTldraw.mjs'; +export { default as SiTmux, defaultColor as SiTmuxHex } from './icons/SiTmux.mjs'; +export { default as SiTodoist, defaultColor as SiTodoistHex } from './icons/SiTodoist.mjs'; +export { default as SiToggl, defaultColor as SiTogglHex } from './icons/SiToggl.mjs'; +export { default as SiToggltrack, defaultColor as SiToggltrackHex } from './icons/SiToggltrack.mjs'; +export { default as SiTokio, defaultColor as SiTokioHex } from './icons/SiTokio.mjs'; +export { default as SiTokyometro, defaultColor as SiTokyometroHex } from './icons/SiTokyometro.mjs'; +export { default as SiToll, defaultColor as SiTollHex } from './icons/SiToll.mjs'; +export { default as SiToml, defaultColor as SiTomlHex } from './icons/SiToml.mjs'; +export { default as SiTomorrowland, defaultColor as SiTomorrowlandHex } from './icons/SiTomorrowland.mjs'; +export { default as SiTomtom, defaultColor as SiTomtomHex } from './icons/SiTomtom.mjs'; +export { default as SiTon, defaultColor as SiTonHex } from './icons/SiTon.mjs'; +export { default as SiTopcoder, defaultColor as SiTopcoderHex } from './icons/SiTopcoder.mjs'; +export { default as SiTopdotgg, defaultColor as SiTopdotggHex } from './icons/SiTopdotgg.mjs'; +export { default as SiToptal, defaultColor as SiToptalHex } from './icons/SiToptal.mjs'; +export { default as SiTorbrowser, defaultColor as SiTorbrowserHex } from './icons/SiTorbrowser.mjs'; +export { default as SiTorizon, defaultColor as SiTorizonHex } from './icons/SiTorizon.mjs'; +export { default as SiTorproject, defaultColor as SiTorprojectHex } from './icons/SiTorproject.mjs'; +export { default as SiToshiba, defaultColor as SiToshibaHex } from './icons/SiToshiba.mjs'; +export { default as SiTotvs, defaultColor as SiTotvsHex } from './icons/SiTotvs.mjs'; +export { default as SiTourbox, defaultColor as SiTourboxHex } from './icons/SiTourbox.mjs'; +export { default as SiTower, defaultColor as SiTowerHex } from './icons/SiTower.mjs'; +export { default as SiToyota, defaultColor as SiToyotaHex } from './icons/SiToyota.mjs'; +export { default as SiTplink, defaultColor as SiTplinkHex } from './icons/SiTplink.mjs'; +export { default as SiTqdm, defaultColor as SiTqdmHex } from './icons/SiTqdm.mjs'; +export { default as SiTraccar, defaultColor as SiTraccarHex } from './icons/SiTraccar.mjs'; +export { default as SiTradingview, defaultColor as SiTradingviewHex } from './icons/SiTradingview.mjs'; +export { default as SiTraefikmesh, defaultColor as SiTraefikmeshHex } from './icons/SiTraefikmesh.mjs'; +export { default as SiTraefikproxy, defaultColor as SiTraefikproxyHex } from './icons/SiTraefikproxy.mjs'; +export { default as SiTrailforks, defaultColor as SiTrailforksHex } from './icons/SiTrailforks.mjs'; +export { default as SiTrainerroad, defaultColor as SiTrainerroadHex } from './icons/SiTrainerroad.mjs'; +export { default as SiTrakt, defaultColor as SiTraktHex } from './icons/SiTrakt.mjs'; +export { default as SiTransifex, defaultColor as SiTransifexHex } from './icons/SiTransifex.mjs'; +export { default as SiTransmission, defaultColor as SiTransmissionHex } from './icons/SiTransmission.mjs'; +export { default as SiTransportforireland, defaultColor as SiTransportforirelandHex } from './icons/SiTransportforireland.mjs'; +export { default as SiTransportforlondon, defaultColor as SiTransportforlondonHex } from './icons/SiTransportforlondon.mjs'; +export { default as SiTravisci, defaultColor as SiTravisciHex } from './icons/SiTravisci.mjs'; +export { default as SiTreehouse, defaultColor as SiTreehouseHex } from './icons/SiTreehouse.mjs'; +export { default as SiTrello, defaultColor as SiTrelloHex } from './icons/SiTrello.mjs'; +export { default as SiTrendmicro, defaultColor as SiTrendmicroHex } from './icons/SiTrendmicro.mjs'; +export { default as SiTresorit, defaultColor as SiTresoritHex } from './icons/SiTresorit.mjs'; +export { default as SiTreyarch, defaultColor as SiTreyarchHex } from './icons/SiTreyarch.mjs'; +export { default as SiTricentis, defaultColor as SiTricentisHex } from './icons/SiTricentis.mjs'; +export { default as SiTrilium, defaultColor as SiTriliumHex } from './icons/SiTrilium.mjs'; +export { default as SiTriller, defaultColor as SiTrillerHex } from './icons/SiTriller.mjs'; +export { default as SiTrillertv, defaultColor as SiTrillertvHex } from './icons/SiTrillertv.mjs'; +export { default as SiTrimble, defaultColor as SiTrimbleHex } from './icons/SiTrimble.mjs'; +export { default as SiTrino, defaultColor as SiTrinoHex } from './icons/SiTrino.mjs'; +export { default as SiTripadvisor, defaultColor as SiTripadvisorHex } from './icons/SiTripadvisor.mjs'; +export { default as SiTripdotcom, defaultColor as SiTripdotcomHex } from './icons/SiTripdotcom.mjs'; +export { default as SiTrivago, defaultColor as SiTrivagoHex } from './icons/SiTrivago.mjs'; +export { default as SiTrivy, defaultColor as SiTrivyHex } from './icons/SiTrivy.mjs'; +export { default as SiTrove, defaultColor as SiTroveHex } from './icons/SiTrove.mjs'; +export { default as SiTrpc, defaultColor as SiTrpcHex } from './icons/SiTrpc.mjs'; +export { default as SiTruenas, defaultColor as SiTruenasHex } from './icons/SiTruenas.mjs'; +export { default as SiTrueup, defaultColor as SiTrueupHex } from './icons/SiTrueup.mjs'; +export { default as SiTrulia, defaultColor as SiTruliaHex } from './icons/SiTrulia.mjs'; +export { default as SiTrustedshops, defaultColor as SiTrustedshopsHex } from './icons/SiTrustedshops.mjs'; +export { default as SiTrustpilot, defaultColor as SiTrustpilotHex } from './icons/SiTrustpilot.mjs'; +export { default as SiTryhackme, defaultColor as SiTryhackmeHex } from './icons/SiTryhackme.mjs'; +export { default as SiTryitonline, defaultColor as SiTryitonlineHex } from './icons/SiTryitonline.mjs'; +export { default as SiTsnode, defaultColor as SiTsnodeHex } from './icons/SiTsnode.mjs'; +export { default as SiTubi, defaultColor as SiTubiHex } from './icons/SiTubi.mjs'; +export { default as SiTui, defaultColor as SiTuiHex } from './icons/SiTui.mjs'; +export { default as SiTumblr, defaultColor as SiTumblrHex } from './icons/SiTumblr.mjs'; +export { default as SiTurbo, defaultColor as SiTurboHex } from './icons/SiTurbo.mjs'; +export { default as SiTurborepo, defaultColor as SiTurborepoHex } from './icons/SiTurborepo.mjs'; +export { default as SiTurbosquid, defaultColor as SiTurbosquidHex } from './icons/SiTurbosquid.mjs'; +export { default as SiTurkishairlines, defaultColor as SiTurkishairlinesHex } from './icons/SiTurkishairlines.mjs'; +export { default as SiTurso, defaultColor as SiTursoHex } from './icons/SiTurso.mjs'; +export { default as SiTuta, defaultColor as SiTutaHex } from './icons/SiTuta.mjs'; +export { default as SiTuxedocomputers, defaultColor as SiTuxedocomputersHex } from './icons/SiTuxedocomputers.mjs'; +export { default as SiTv4play, defaultColor as SiTv4playHex } from './icons/SiTv4play.mjs'; +export { default as SiTvtime, defaultColor as SiTvtimeHex } from './icons/SiTvtime.mjs'; +export { default as SiTwenty, defaultColor as SiTwentyHex } from './icons/SiTwenty.mjs'; +export { default as SiTwinkly, defaultColor as SiTwinklyHex } from './icons/SiTwinkly.mjs'; +export { default as SiTwinmotion, defaultColor as SiTwinmotionHex } from './icons/SiTwinmotion.mjs'; +export { default as SiTwitch, defaultColor as SiTwitchHex } from './icons/SiTwitch.mjs'; +export { default as SiTypeform, defaultColor as SiTypeformHex } from './icons/SiTypeform.mjs'; +export { default as SiTypeorm, defaultColor as SiTypeormHex } from './icons/SiTypeorm.mjs'; +export { default as SiTyper, defaultColor as SiTyperHex } from './icons/SiTyper.mjs'; +export { default as SiTypescript, defaultColor as SiTypescriptHex } from './icons/SiTypescript.mjs'; +export { default as SiTypo3, defaultColor as SiTypo3Hex } from './icons/SiTypo3.mjs'; +export { default as SiTypst, defaultColor as SiTypstHex } from './icons/SiTypst.mjs'; +export { default as SiUber, defaultColor as SiUberHex } from './icons/SiUber.mjs'; +export { default as SiUbereats, defaultColor as SiUbereatsHex } from './icons/SiUbereats.mjs'; +export { default as SiUbiquiti, defaultColor as SiUbiquitiHex } from './icons/SiUbiquiti.mjs'; +export { default as SiUbisoft, defaultColor as SiUbisoftHex } from './icons/SiUbisoft.mjs'; +export { default as SiUblockorigin, defaultColor as SiUblockoriginHex } from './icons/SiUblockorigin.mjs'; +export { default as SiUbuntu, defaultColor as SiUbuntuHex } from './icons/SiUbuntu.mjs'; +export { default as SiUbuntumate, defaultColor as SiUbuntumateHex } from './icons/SiUbuntumate.mjs'; +export { default as SiUdacity, defaultColor as SiUdacityHex } from './icons/SiUdacity.mjs'; +export { default as SiUdemy, defaultColor as SiUdemyHex } from './icons/SiUdemy.mjs'; +export { default as SiUdotsdotnews, defaultColor as SiUdotsdotnewsHex } from './icons/SiUdotsdotnews.mjs'; +export { default as SiUfc, defaultColor as SiUfcHex } from './icons/SiUfc.mjs'; +export { default as SiUikit, defaultColor as SiUikitHex } from './icons/SiUikit.mjs'; +export { default as SiUipath, defaultColor as SiUipathHex } from './icons/SiUipath.mjs'; +export { default as SiUkca, defaultColor as SiUkcaHex } from './icons/SiUkca.mjs'; +export { default as SiUltralytics, defaultColor as SiUltralyticsHex } from './icons/SiUltralytics.mjs'; +export { default as SiUlule, defaultColor as SiUluleHex } from './icons/SiUlule.mjs'; +export { default as SiUmami, defaultColor as SiUmamiHex } from './icons/SiUmami.mjs'; +export { default as SiUmbraco, defaultColor as SiUmbracoHex } from './icons/SiUmbraco.mjs'; +export { default as SiUmbrel, defaultColor as SiUmbrelHex } from './icons/SiUmbrel.mjs'; +export { default as SiUml, defaultColor as SiUmlHex } from './icons/SiUml.mjs'; +export { default as SiUnacademy, defaultColor as SiUnacademyHex } from './icons/SiUnacademy.mjs'; +export { default as SiUnderarmour, defaultColor as SiUnderarmourHex } from './icons/SiUnderarmour.mjs'; +export { default as SiUnderscoredotjs, defaultColor as SiUnderscoredotjsHex } from './icons/SiUnderscoredotjs.mjs'; +export { default as SiUndertale, defaultColor as SiUndertaleHex } from './icons/SiUndertale.mjs'; +export { default as SiUnicode, defaultColor as SiUnicodeHex } from './icons/SiUnicode.mjs'; +export { default as SiUnilever, defaultColor as SiUnileverHex } from './icons/SiUnilever.mjs'; +export { default as SiUniqlo, defaultColor as SiUniqloHex } from './icons/SiUniqlo.mjs'; +export { default as SiUniqloJa, defaultColor as SiUniqloJaHex } from './icons/SiUniqloJa.mjs'; +export { default as SiUnitedairlines, defaultColor as SiUnitedairlinesHex } from './icons/SiUnitedairlines.mjs'; +export { default as SiUnitednations, defaultColor as SiUnitednationsHex } from './icons/SiUnitednations.mjs'; +export { default as SiUnity, defaultColor as SiUnityHex } from './icons/SiUnity.mjs'; +export { default as SiUnjs, defaultColor as SiUnjsHex } from './icons/SiUnjs.mjs'; +export { default as SiUnlicense, defaultColor as SiUnlicenseHex } from './icons/SiUnlicense.mjs'; +export { default as SiUnocss, defaultColor as SiUnocssHex } from './icons/SiUnocss.mjs'; +export { default as SiUnpkg, defaultColor as SiUnpkgHex } from './icons/SiUnpkg.mjs'; +export { default as SiUnraid, defaultColor as SiUnraidHex } from './icons/SiUnraid.mjs'; +export { default as SiUnrealengine, defaultColor as SiUnrealengineHex } from './icons/SiUnrealengine.mjs'; +export { default as SiUnsplash, defaultColor as SiUnsplashHex } from './icons/SiUnsplash.mjs'; +export { default as SiUnstop, defaultColor as SiUnstopHex } from './icons/SiUnstop.mjs'; +export { default as SiUntappd, defaultColor as SiUntappdHex } from './icons/SiUntappd.mjs'; +export { default as SiUpcloud, defaultColor as SiUpcloudHex } from './icons/SiUpcloud.mjs'; +export { default as SiUphold, defaultColor as SiUpholdHex } from './icons/SiUphold.mjs'; +export { default as SiUplabs, defaultColor as SiUplabsHex } from './icons/SiUplabs.mjs'; +export { default as SiUpptime, defaultColor as SiUpptimeHex } from './icons/SiUpptime.mjs'; +export { default as SiUps, defaultColor as SiUpsHex } from './icons/SiUps.mjs'; +export { default as SiUpstash, defaultColor as SiUpstashHex } from './icons/SiUpstash.mjs'; +export { default as SiUptimekuma, defaultColor as SiUptimekumaHex } from './icons/SiUptimekuma.mjs'; +export { default as SiUpwork, defaultColor as SiUpworkHex } from './icons/SiUpwork.mjs'; +export { default as SiUservoice, defaultColor as SiUservoiceHex } from './icons/SiUservoice.mjs'; +export { default as SiUsps, defaultColor as SiUspsHex } from './icons/SiUsps.mjs'; +export { default as SiUtorrent, defaultColor as SiUtorrentHex } from './icons/SiUtorrent.mjs'; +export { default as SiUv, defaultColor as SiUvHex } from './icons/SiUv.mjs'; +export { default as SiV, defaultColor as SiVHex } from './icons/SiV.mjs'; +export { default as SiV0, defaultColor as SiV0Hex } from './icons/SiV0.mjs'; +export { default as SiV2ex, defaultColor as SiV2exHex } from './icons/SiV2ex.mjs'; +export { default as SiV8, defaultColor as SiV8Hex } from './icons/SiV8.mjs'; +export { default as SiVaadin, defaultColor as SiVaadinHex } from './icons/SiVaadin.mjs'; +export { default as SiVagrant, defaultColor as SiVagrantHex } from './icons/SiVagrant.mjs'; +export { default as SiVala, defaultColor as SiValaHex } from './icons/SiVala.mjs'; +export { default as SiValorant, defaultColor as SiValorantHex } from './icons/SiValorant.mjs'; +export { default as SiValve, defaultColor as SiValveHex } from './icons/SiValve.mjs'; +export { default as SiVanillaextract, defaultColor as SiVanillaextractHex } from './icons/SiVanillaextract.mjs'; +export { default as SiVapor, defaultColor as SiVaporHex } from './icons/SiVapor.mjs'; +export { default as SiVault, defaultColor as SiVaultHex } from './icons/SiVault.mjs'; +export { default as SiVaultwarden, defaultColor as SiVaultwardenHex } from './icons/SiVaultwarden.mjs'; +export { default as SiVauxhall, defaultColor as SiVauxhallHex } from './icons/SiVauxhall.mjs'; +export { default as SiVbulletin, defaultColor as SiVbulletinHex } from './icons/SiVbulletin.mjs'; +export { default as SiVectary, defaultColor as SiVectaryHex } from './icons/SiVectary.mjs'; +export { default as SiVectorlogozone, defaultColor as SiVectorlogozoneHex } from './icons/SiVectorlogozone.mjs'; +export { default as SiVectorworks, defaultColor as SiVectorworksHex } from './icons/SiVectorworks.mjs'; +export { default as SiVeeam, defaultColor as SiVeeamHex } from './icons/SiVeeam.mjs'; +export { default as SiVeed, defaultColor as SiVeedHex } from './icons/SiVeed.mjs'; +export { default as SiVeepee, defaultColor as SiVeepeeHex } from './icons/SiVeepee.mjs'; +export { default as SiVega, defaultColor as SiVegaHex } from './icons/SiVega.mjs'; +export { default as SiVegas, defaultColor as SiVegasHex } from './icons/SiVegas.mjs'; +export { default as SiVelocity, defaultColor as SiVelocityHex } from './icons/SiVelocity.mjs'; +export { default as SiVelog, defaultColor as SiVelogHex } from './icons/SiVelog.mjs'; +export { default as SiVencord, defaultColor as SiVencordHex } from './icons/SiVencord.mjs'; +export { default as SiVenmo, defaultColor as SiVenmoHex } from './icons/SiVenmo.mjs'; +export { default as SiVercel, defaultColor as SiVercelHex } from './icons/SiVercel.mjs'; +export { default as SiVerdaccio, defaultColor as SiVerdaccioHex } from './icons/SiVerdaccio.mjs'; +export { default as SiVeritas, defaultColor as SiVeritasHex } from './icons/SiVeritas.mjs'; +export { default as SiVerizon, defaultColor as SiVerizonHex } from './icons/SiVerizon.mjs'; +export { default as SiVespa, defaultColor as SiVespaHex } from './icons/SiVespa.mjs'; +export { default as SiVestel, defaultColor as SiVestelHex } from './icons/SiVestel.mjs'; +export { default as SiVexxhost, defaultColor as SiVexxhostHex } from './icons/SiVexxhost.mjs'; +export { default as SiVfairs, defaultColor as SiVfairsHex } from './icons/SiVfairs.mjs'; +export { default as SiViadeo, defaultColor as SiViadeoHex } from './icons/SiViadeo.mjs'; +export { default as SiViaplay, defaultColor as SiViaplayHex } from './icons/SiViaplay.mjs'; +export { default as SiViber, defaultColor as SiViberHex } from './icons/SiViber.mjs'; +export { default as SiViblo, defaultColor as SiVibloHex } from './icons/SiViblo.mjs'; +export { default as SiVictoriametrics, defaultColor as SiVictoriametricsHex } from './icons/SiVictoriametrics.mjs'; +export { default as SiVictronenergy, defaultColor as SiVictronenergyHex } from './icons/SiVictronenergy.mjs'; +export { default as SiVikunja, defaultColor as SiVikunjaHex } from './icons/SiVikunja.mjs'; +export { default as SiVim, defaultColor as SiVimHex } from './icons/SiVim.mjs'; +export { default as SiVimeo, defaultColor as SiVimeoHex } from './icons/SiVimeo.mjs'; +export { default as SiVimeolivestream, defaultColor as SiVimeolivestreamHex } from './icons/SiVimeolivestream.mjs'; +export { default as SiVinted, defaultColor as SiVintedHex } from './icons/SiVinted.mjs'; +export { default as SiVirgin, defaultColor as SiVirginHex } from './icons/SiVirgin.mjs'; +export { default as SiVirginatlantic, defaultColor as SiVirginatlanticHex } from './icons/SiVirginatlantic.mjs'; +export { default as SiVirginmedia, defaultColor as SiVirginmediaHex } from './icons/SiVirginmedia.mjs'; +export { default as SiVirtualbox, defaultColor as SiVirtualboxHex } from './icons/SiVirtualbox.mjs'; +export { default as SiVirustotal, defaultColor as SiVirustotalHex } from './icons/SiVirustotal.mjs'; +export { default as SiVisa, defaultColor as SiVisaHex } from './icons/SiVisa.mjs'; +export { default as SiVisualparadigm, defaultColor as SiVisualparadigmHex } from './icons/SiVisualparadigm.mjs'; +export { default as SiVisx, defaultColor as SiVisxHex } from './icons/SiVisx.mjs'; +export { default as SiVite, defaultColor as SiViteHex } from './icons/SiVite.mjs'; +export { default as SiVitepress, defaultColor as SiVitepressHex } from './icons/SiVitepress.mjs'; +export { default as SiVitess, defaultColor as SiVitessHex } from './icons/SiVitess.mjs'; +export { default as SiVitest, defaultColor as SiVitestHex } from './icons/SiVitest.mjs'; +export { default as SiVivaldi, defaultColor as SiVivaldiHex } from './icons/SiVivaldi.mjs'; +export { default as SiVivawallet, defaultColor as SiVivawalletHex } from './icons/SiVivawallet.mjs'; +export { default as SiVivino, defaultColor as SiVivinoHex } from './icons/SiVivino.mjs'; +export { default as SiVivint, defaultColor as SiVivintHex } from './icons/SiVivint.mjs'; +export { default as SiVivo, defaultColor as SiVivoHex } from './icons/SiVivo.mjs'; +export { default as SiVk, defaultColor as SiVkHex } from './icons/SiVk.mjs'; +export { default as SiVlcmediaplayer, defaultColor as SiVlcmediaplayerHex } from './icons/SiVlcmediaplayer.mjs'; +export { default as SiVmware, defaultColor as SiVmwareHex } from './icons/SiVmware.mjs'; +export { default as SiVodafone, defaultColor as SiVodafoneHex } from './icons/SiVodafone.mjs'; +export { default as SiVoelkner, defaultColor as SiVoelknerHex } from './icons/SiVoelkner.mjs'; +export { default as SiVoidlinux, defaultColor as SiVoidlinuxHex } from './icons/SiVoidlinux.mjs'; +export { default as SiVoipdotms, defaultColor as SiVoipdotmsHex } from './icons/SiVoipdotms.mjs'; +export { default as SiVolkswagen, defaultColor as SiVolkswagenHex } from './icons/SiVolkswagen.mjs'; +export { default as SiVolvo, defaultColor as SiVolvoHex } from './icons/SiVolvo.mjs'; +export { default as SiVonage, defaultColor as SiVonageHex } from './icons/SiVonage.mjs'; +export { default as SiVorondesign, defaultColor as SiVorondesignHex } from './icons/SiVorondesign.mjs'; +export { default as SiVowpalwabbit, defaultColor as SiVowpalwabbitHex } from './icons/SiVowpalwabbit.mjs'; +export { default as SiVox, defaultColor as SiVoxHex } from './icons/SiVox.mjs'; +export { default as SiVrchat, defaultColor as SiVrchatHex } from './icons/SiVrchat.mjs'; +export { default as SiVsco, defaultColor as SiVscoHex } from './icons/SiVsco.mjs'; +export { default as SiVscodium, defaultColor as SiVscodiumHex } from './icons/SiVscodium.mjs'; +export { default as SiVtex, defaultColor as SiVtexHex } from './icons/SiVtex.mjs'; +export { default as SiVuedotjs, defaultColor as SiVuedotjsHex } from './icons/SiVuedotjs.mjs'; +export { default as SiVuetify, defaultColor as SiVuetifyHex } from './icons/SiVuetify.mjs'; +export { default as SiVueuse, defaultColor as SiVueuseHex } from './icons/SiVueuse.mjs'; +export { default as SiVulkan, defaultColor as SiVulkanHex } from './icons/SiVulkan.mjs'; +export { default as SiVultr, defaultColor as SiVultrHex } from './icons/SiVultr.mjs'; +export { default as SiVyond, defaultColor as SiVyondHex } from './icons/SiVyond.mjs'; +export { default as SiW3schools, defaultColor as SiW3schoolsHex } from './icons/SiW3schools.mjs'; +export { default as SiWacom, defaultColor as SiWacomHex } from './icons/SiWacom.mjs'; +export { default as SiWagmi, defaultColor as SiWagmiHex } from './icons/SiWagmi.mjs'; +export { default as SiWagtail, defaultColor as SiWagtailHex } from './icons/SiWagtail.mjs'; +export { default as SiWails, defaultColor as SiWailsHex } from './icons/SiWails.mjs'; +export { default as SiWakatime, defaultColor as SiWakatimeHex } from './icons/SiWakatime.mjs'; +export { default as SiWalkman, defaultColor as SiWalkmanHex } from './icons/SiWalkman.mjs'; +export { default as SiWallabag, defaultColor as SiWallabagHex } from './icons/SiWallabag.mjs'; +export { default as SiWalletconnect, defaultColor as SiWalletconnectHex } from './icons/SiWalletconnect.mjs'; +export { default as SiWantedly, defaultColor as SiWantedlyHex } from './icons/SiWantedly.mjs'; +export { default as SiWappalyzer, defaultColor as SiWappalyzerHex } from './icons/SiWappalyzer.mjs'; +export { default as SiWarp, defaultColor as SiWarpHex } from './icons/SiWarp.mjs'; +export { default as SiWasabi, defaultColor as SiWasabiHex } from './icons/SiWasabi.mjs'; +export { default as SiWasmcloud, defaultColor as SiWasmcloudHex } from './icons/SiWasmcloud.mjs'; +export { default as SiWasmer, defaultColor as SiWasmerHex } from './icons/SiWasmer.mjs'; +export { default as SiWatchtower, defaultColor as SiWatchtowerHex } from './icons/SiWatchtower.mjs'; +export { default as SiWattpad, defaultColor as SiWattpadHex } from './icons/SiWattpad.mjs'; +export { default as SiWayland, defaultColor as SiWaylandHex } from './icons/SiWayland.mjs'; +export { default as SiWaze, defaultColor as SiWazeHex } from './icons/SiWaze.mjs'; +export { default as SiWazirx, defaultColor as SiWazirxHex } from './icons/SiWazirx.mjs'; +export { default as SiWearos, defaultColor as SiWearosHex } from './icons/SiWearos.mjs'; +export { default as SiWeasyl, defaultColor as SiWeasylHex } from './icons/SiWeasyl.mjs'; +export { default as SiWeb3dotjs, defaultColor as SiWeb3dotjsHex } from './icons/SiWeb3dotjs.mjs'; +export { default as SiWebassembly, defaultColor as SiWebassemblyHex } from './icons/SiWebassembly.mjs'; +export { default as SiWebauthn, defaultColor as SiWebauthnHex } from './icons/SiWebauthn.mjs'; +export { default as SiWebawesome, defaultColor as SiWebawesomeHex } from './icons/SiWebawesome.mjs'; +export { default as SiWebcomponentsdotorg, defaultColor as SiWebcomponentsdotorgHex } from './icons/SiWebcomponentsdotorg.mjs'; +export { default as SiWebdotde, defaultColor as SiWebdotdeHex } from './icons/SiWebdotde.mjs'; +export { default as SiWebdriverio, defaultColor as SiWebdriverioHex } from './icons/SiWebdriverio.mjs'; +export { default as SiWebex, defaultColor as SiWebexHex } from './icons/SiWebex.mjs'; +export { default as SiWebflow, defaultColor as SiWebflowHex } from './icons/SiWebflow.mjs'; +export { default as SiWebgl, defaultColor as SiWebglHex } from './icons/SiWebgl.mjs'; +export { default as SiWebgpu, defaultColor as SiWebgpuHex } from './icons/SiWebgpu.mjs'; +export { default as SiWeblate, defaultColor as SiWeblateHex } from './icons/SiWeblate.mjs'; +export { default as SiWebmin, defaultColor as SiWebminHex } from './icons/SiWebmin.mjs'; +export { default as SiWebmoney, defaultColor as SiWebmoneyHex } from './icons/SiWebmoney.mjs'; +export { default as SiWebpack, defaultColor as SiWebpackHex } from './icons/SiWebpack.mjs'; +export { default as SiWebrtc, defaultColor as SiWebrtcHex } from './icons/SiWebrtc.mjs'; +export { default as SiWebstorm, defaultColor as SiWebstormHex } from './icons/SiWebstorm.mjs'; +export { default as SiWebtoon, defaultColor as SiWebtoonHex } from './icons/SiWebtoon.mjs'; +export { default as SiWebtrees, defaultColor as SiWebtreesHex } from './icons/SiWebtrees.mjs'; +export { default as SiWechat, defaultColor as SiWechatHex } from './icons/SiWechat.mjs'; +export { default as SiWegame, defaultColor as SiWegameHex } from './icons/SiWegame.mjs'; +export { default as SiWeightsandbiases, defaultColor as SiWeightsandbiasesHex } from './icons/SiWeightsandbiases.mjs'; +export { default as SiWelcometothejungle, defaultColor as SiWelcometothejungleHex } from './icons/SiWelcometothejungle.mjs'; +export { default as SiWellfound, defaultColor as SiWellfoundHex } from './icons/SiWellfound.mjs'; +export { default as SiWellsfargo, defaultColor as SiWellsfargoHex } from './icons/SiWellsfargo.mjs'; +export { default as SiWemo, defaultColor as SiWemoHex } from './icons/SiWemo.mjs'; +export { default as SiWeread, defaultColor as SiWereadHex } from './icons/SiWeread.mjs'; +export { default as SiWesternunion, defaultColor as SiWesternunionHex } from './icons/SiWesternunion.mjs'; +export { default as SiWetransfer, defaultColor as SiWetransferHex } from './icons/SiWetransfer.mjs'; +export { default as SiWezterm, defaultColor as SiWeztermHex } from './icons/SiWezterm.mjs'; +export { default as SiWgpu, defaultColor as SiWgpuHex } from './icons/SiWgpu.mjs'; +export { default as SiWhat3words, defaultColor as SiWhat3wordsHex } from './icons/SiWhat3words.mjs'; +export { default as SiWhatsapp, defaultColor as SiWhatsappHex } from './icons/SiWhatsapp.mjs'; +export { default as SiWheniwork, defaultColor as SiWheniworkHex } from './icons/SiWheniwork.mjs'; +export { default as SiWikibooks, defaultColor as SiWikibooksHex } from './icons/SiWikibooks.mjs'; +export { default as SiWikidata, defaultColor as SiWikidataHex } from './icons/SiWikidata.mjs'; +export { default as SiWikidotgg, defaultColor as SiWikidotggHex } from './icons/SiWikidotgg.mjs'; +export { default as SiWikidotjs, defaultColor as SiWikidotjsHex } from './icons/SiWikidotjs.mjs'; +export { default as SiWikimediacommons, defaultColor as SiWikimediacommonsHex } from './icons/SiWikimediacommons.mjs'; +export { default as SiWikimediafoundation, defaultColor as SiWikimediafoundationHex } from './icons/SiWikimediafoundation.mjs'; +export { default as SiWikipedia, defaultColor as SiWikipediaHex } from './icons/SiWikipedia.mjs'; +export { default as SiWikiquote, defaultColor as SiWikiquoteHex } from './icons/SiWikiquote.mjs'; +export { default as SiWikisource, defaultColor as SiWikisourceHex } from './icons/SiWikisource.mjs'; +export { default as SiWikiversity, defaultColor as SiWikiversityHex } from './icons/SiWikiversity.mjs'; +export { default as SiWikivoyage, defaultColor as SiWikivoyageHex } from './icons/SiWikivoyage.mjs'; +export { default as SiWinamp, defaultColor as SiWinampHex } from './icons/SiWinamp.mjs'; +export { default as SiWindsurf, defaultColor as SiWindsurfHex } from './icons/SiWindsurf.mjs'; +export { default as SiWine, defaultColor as SiWineHex } from './icons/SiWine.mjs'; +export { default as SiWipro, defaultColor as SiWiproHex } from './icons/SiWipro.mjs'; +export { default as SiWire, defaultColor as SiWireHex } from './icons/SiWire.mjs'; +export { default as SiWireguard, defaultColor as SiWireguardHex } from './icons/SiWireguard.mjs'; +export { default as SiWireshark, defaultColor as SiWiresharkHex } from './icons/SiWireshark.mjs'; +export { default as SiWise, defaultColor as SiWiseHex } from './icons/SiWise.mjs'; +export { default as SiWish, defaultColor as SiWishHex } from './icons/SiWish.mjs'; +export { default as SiWistia, defaultColor as SiWistiaHex } from './icons/SiWistia.mjs'; +export { default as SiWix, defaultColor as SiWixHex } from './icons/SiWix.mjs'; +export { default as SiWizzair, defaultColor as SiWizzairHex } from './icons/SiWizzair.mjs'; +export { default as SiWolfram, defaultColor as SiWolframHex } from './icons/SiWolfram.mjs'; +export { default as SiWolframlanguage, defaultColor as SiWolframlanguageHex } from './icons/SiWolframlanguage.mjs'; +export { default as SiWolframmathematica, defaultColor as SiWolframmathematicaHex } from './icons/SiWolframmathematica.mjs'; +export { default as SiWondershare, defaultColor as SiWondershareHex } from './icons/SiWondershare.mjs'; +export { default as SiWondersharefilmora, defaultColor as SiWondersharefilmoraHex } from './icons/SiWondersharefilmora.mjs'; +export { default as SiWoo, defaultColor as SiWooHex } from './icons/SiWoo.mjs'; +export { default as SiWoocommerce, defaultColor as SiWoocommerceHex } from './icons/SiWoocommerce.mjs'; +export { default as SiWordpress, defaultColor as SiWordpressHex } from './icons/SiWordpress.mjs'; +export { default as SiWorkplace, defaultColor as SiWorkplaceHex } from './icons/SiWorkplace.mjs'; +export { default as SiWorldhealthorganization, defaultColor as SiWorldhealthorganizationHex } from './icons/SiWorldhealthorganization.mjs'; +export { default as SiWpengine, defaultColor as SiWpengineHex } from './icons/SiWpengine.mjs'; +export { default as SiWpexplorer, defaultColor as SiWpexplorerHex } from './icons/SiWpexplorer.mjs'; +export { default as SiWprocket, defaultColor as SiWprocketHex } from './icons/SiWprocket.mjs'; +export { default as SiWritedotas, defaultColor as SiWritedotasHex } from './icons/SiWritedotas.mjs'; +export { default as SiWwe, defaultColor as SiWweHex } from './icons/SiWwe.mjs'; +export { default as SiWwise, defaultColor as SiWwiseHex } from './icons/SiWwise.mjs'; +export { default as SiWxt, defaultColor as SiWxtHex } from './icons/SiWxt.mjs'; +export { default as SiWykop, defaultColor as SiWykopHex } from './icons/SiWykop.mjs'; +export { default as SiWyze, defaultColor as SiWyzeHex } from './icons/SiWyze.mjs'; +export { default as SiX, defaultColor as SiXHex } from './icons/SiX.mjs'; +export { default as SiXampp, defaultColor as SiXamppHex } from './icons/SiXampp.mjs'; +export { default as SiXcode, defaultColor as SiXcodeHex } from './icons/SiXcode.mjs'; +export { default as SiXdadevelopers, defaultColor as SiXdadevelopersHex } from './icons/SiXdadevelopers.mjs'; +export { default as SiXdotorg, defaultColor as SiXdotorgHex } from './icons/SiXdotorg.mjs'; +export { default as SiXendit, defaultColor as SiXenditHex } from './icons/SiXendit.mjs'; +export { default as SiXero, defaultColor as SiXeroHex } from './icons/SiXero.mjs'; +export { default as SiXfce, defaultColor as SiXfceHex } from './icons/SiXfce.mjs'; +export { default as SiXiaohongshu, defaultColor as SiXiaohongshuHex } from './icons/SiXiaohongshu.mjs'; +export { default as SiXiaomi, defaultColor as SiXiaomiHex } from './icons/SiXiaomi.mjs'; +export { default as SiXing, defaultColor as SiXingHex } from './icons/SiXing.mjs'; +export { default as SiXml, defaultColor as SiXmlHex } from './icons/SiXml.mjs'; +export { default as SiXmpp, defaultColor as SiXmppHex } from './icons/SiXmpp.mjs'; +export { default as SiXo, defaultColor as SiXoHex } from './icons/SiXo.mjs'; +export { default as SiXrp, defaultColor as SiXrpHex } from './icons/SiXrp.mjs'; +export { default as SiXsplit, defaultColor as SiXsplitHex } from './icons/SiXsplit.mjs'; +export { default as SiXstate, defaultColor as SiXstateHex } from './icons/SiXstate.mjs'; +export { default as SiXubuntu, defaultColor as SiXubuntuHex } from './icons/SiXubuntu.mjs'; +export { default as SiXyflow, defaultColor as SiXyflowHex } from './icons/SiXyflow.mjs'; +export { default as SiYaak, defaultColor as SiYaakHex } from './icons/SiYaak.mjs'; +export { default as SiYabai, defaultColor as SiYabaiHex } from './icons/SiYabai.mjs'; +export { default as SiYale, defaultColor as SiYaleHex } from './icons/SiYale.mjs'; +export { default as SiYamahacorporation, defaultColor as SiYamahacorporationHex } from './icons/SiYamahacorporation.mjs'; +export { default as SiYamahamotorcorporation, defaultColor as SiYamahamotorcorporationHex } from './icons/SiYamahamotorcorporation.mjs'; +export { default as SiYaml, defaultColor as SiYamlHex } from './icons/SiYaml.mjs'; +export { default as SiYandexcloud, defaultColor as SiYandexcloudHex } from './icons/SiYandexcloud.mjs'; +export { default as SiYarn, defaultColor as SiYarnHex } from './icons/SiYarn.mjs'; +export { default as SiYcombinator, defaultColor as SiYcombinatorHex } from './icons/SiYcombinator.mjs'; +export { default as SiYelp, defaultColor as SiYelpHex } from './icons/SiYelp.mjs'; +export { default as SiYeti, defaultColor as SiYetiHex } from './icons/SiYeti.mjs'; +export { default as SiYii, defaultColor as SiYiiHex } from './icons/SiYii.mjs'; +export { default as SiYoast, defaultColor as SiYoastHex } from './icons/SiYoast.mjs'; +export { default as SiYolo, defaultColor as SiYoloHex } from './icons/SiYolo.mjs'; +export { default as SiYouhodler, defaultColor as SiYouhodlerHex } from './icons/SiYouhodler.mjs'; +export { default as SiYoutube, defaultColor as SiYoutubeHex } from './icons/SiYoutube.mjs'; +export { default as SiYoutubegaming, defaultColor as SiYoutubegamingHex } from './icons/SiYoutubegaming.mjs'; +export { default as SiYoutubekids, defaultColor as SiYoutubekidsHex } from './icons/SiYoutubekids.mjs'; +export { default as SiYoutubemusic, defaultColor as SiYoutubemusicHex } from './icons/SiYoutubemusic.mjs'; +export { default as SiYoutubeshorts, defaultColor as SiYoutubeshortsHex } from './icons/SiYoutubeshorts.mjs'; +export { default as SiYoutubestudio, defaultColor as SiYoutubestudioHex } from './icons/SiYoutubestudio.mjs'; +export { default as SiYoutubetv, defaultColor as SiYoutubetvHex } from './icons/SiYoutubetv.mjs'; +export { default as SiYr, defaultColor as SiYrHex } from './icons/SiYr.mjs'; +export { default as SiYubico, defaultColor as SiYubicoHex } from './icons/SiYubico.mjs'; +export { default as SiYunohost, defaultColor as SiYunohostHex } from './icons/SiYunohost.mjs'; +export { default as SiZabka, defaultColor as SiZabkaHex } from './icons/SiZabka.mjs'; +export { default as SiZaim, defaultColor as SiZaimHex } from './icons/SiZaim.mjs'; +export { default as SiZalando, defaultColor as SiZalandoHex } from './icons/SiZalando.mjs'; +export { default as SiZalo, defaultColor as SiZaloHex } from './icons/SiZalo.mjs'; +export { default as SiZap, defaultColor as SiZapHex } from './icons/SiZap.mjs'; +export { default as SiZapier, defaultColor as SiZapierHex } from './icons/SiZapier.mjs'; +export { default as SiZara, defaultColor as SiZaraHex } from './icons/SiZara.mjs'; +export { default as SiZazzle, defaultColor as SiZazzleHex } from './icons/SiZazzle.mjs'; +export { default as SiZcash, defaultColor as SiZcashHex } from './icons/SiZcash.mjs'; +export { default as SiZcool, defaultColor as SiZcoolHex } from './icons/SiZcool.mjs'; +export { default as SiZdf, defaultColor as SiZdfHex } from './icons/SiZdf.mjs'; +export { default as SiZebpay, defaultColor as SiZebpayHex } from './icons/SiZebpay.mjs'; +export { default as SiZebratechnologies, defaultColor as SiZebratechnologiesHex } from './icons/SiZebratechnologies.mjs'; +export { default as SiZedindustries, defaultColor as SiZedindustriesHex } from './icons/SiZedindustries.mjs'; +export { default as SiZelle, defaultColor as SiZelleHex } from './icons/SiZelle.mjs'; +export { default as SiZenbrowser, defaultColor as SiZenbrowserHex } from './icons/SiZenbrowser.mjs'; +export { default as SiZend, defaultColor as SiZendHex } from './icons/SiZend.mjs'; +export { default as SiZendesk, defaultColor as SiZendeskHex } from './icons/SiZendesk.mjs'; +export { default as SiZenn, defaultColor as SiZennHex } from './icons/SiZenn.mjs'; +export { default as SiZenodo, defaultColor as SiZenodoHex } from './icons/SiZenodo.mjs'; +export { default as SiZensar, defaultColor as SiZensarHex } from './icons/SiZensar.mjs'; +export { default as SiZerodha, defaultColor as SiZerodhaHex } from './icons/SiZerodha.mjs'; +export { default as SiZerotier, defaultColor as SiZerotierHex } from './icons/SiZerotier.mjs'; +export { default as SiZettlr, defaultColor as SiZettlrHex } from './icons/SiZettlr.mjs'; +export { default as SiZhihu, defaultColor as SiZhihuHex } from './icons/SiZhihu.mjs'; +export { default as SiZig, defaultColor as SiZigHex } from './icons/SiZig.mjs'; +export { default as SiZigbee, defaultColor as SiZigbeeHex } from './icons/SiZigbee.mjs'; +export { default as SiZigbee2mqtt, defaultColor as SiZigbee2mqttHex } from './icons/SiZigbee2mqtt.mjs'; +export { default as SiZiggo, defaultColor as SiZiggoHex } from './icons/SiZiggo.mjs'; +export { default as SiZilch, defaultColor as SiZilchHex } from './icons/SiZilch.mjs'; +export { default as SiZillow, defaultColor as SiZillowHex } from './icons/SiZillow.mjs'; +export { default as SiZincsearch, defaultColor as SiZincsearchHex } from './icons/SiZincsearch.mjs'; +export { default as SiZingat, defaultColor as SiZingatHex } from './icons/SiZingat.mjs'; +export { default as SiZod, defaultColor as SiZodHex } from './icons/SiZod.mjs'; +export { default as SiZoho, defaultColor as SiZohoHex } from './icons/SiZoho.mjs'; +export { default as SiZoiper, defaultColor as SiZoiperHex } from './icons/SiZoiper.mjs'; +export { default as SiZola, defaultColor as SiZolaHex } from './icons/SiZola.mjs'; +export { default as SiZomato, defaultColor as SiZomatoHex } from './icons/SiZomato.mjs'; +export { default as SiZoom, defaultColor as SiZoomHex } from './icons/SiZoom.mjs'; +export { default as SiZorin, defaultColor as SiZorinHex } from './icons/SiZorin.mjs'; +export { default as SiZotero, defaultColor as SiZoteroHex } from './icons/SiZotero.mjs'; +export { default as SiZsh, defaultColor as SiZshHex } from './icons/SiZsh.mjs'; +export { default as SiZulip, defaultColor as SiZulipHex } from './icons/SiZulip.mjs'; +export { default as SiZyte, defaultColor as SiZyteHex } from './icons/SiZyte.mjs'; diff --git a/node_modules/@icons-pack/react-simple-icons/package.json b/node_modules/@icons-pack/react-simple-icons/package.json new file mode 100644 index 000000000..a49f7352c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/package.json @@ -0,0 +1,97 @@ +{ + "name": "@icons-pack/react-simple-icons", + "version": "13.11.1", + "description": "This package provides the Simple Icons packaged as a set of React components.", + "keywords": [ + "react", + "simple-icons", + "brands", + "icons", + "svg", + "inline", + "design", + "component", + "codea", + "wootsbot" + ], + "homepage": "https://github.com/icons-pack/react-simple-icons#readme", + "bugs": { + "url": "https://github.com/icons-pack/react-simple-icons/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/icons-pack/react-simple-icons.git", + "directory": "react-simple-icons" + }, + "license": "MIT", + "author": "Jorge Luis Calleja <jorge.calleja@wootsbot.dev>", + "main": "./index.cjs", + "module": "./index.mjs", + "types": "./index.d.ts", + "exports": { + ".": { + "types": "./index.d.ts", + "import": "./index.mjs", + "require": "./index.cjs" + }, + "./package.json": "./package.json", + "./icons/*": "./icons/*" + }, + "sideEffects": false, + "files": [ + "./src/icons", + "icons", + "index.d.ts", + "types.d.ts", + "*.d.ts", + "*.js", + "*.mjs", + "*.cjs" + ], + "lint-staged": { + "./**/*.+(js|json)": [ + "prettier --write" + ] + }, + "devDependencies": { + "@changesets/changelog-github": "0.5.2", + "@changesets/cli": "2.29.8", + "@commitlint/cli": "19.4.0", + "@commitlint/config-conventional": "19.2.2", + "@types/node": "22.3.0", + "@types/react": "^18", + "@vitejs/plugin-react": "4.3.1", + "husky": "9.1.4", + "lint-staged": "15.2.9", + "prettier": "3.3.3", + "prettier-eslint": "16.3.0", + "react": "^18", + "rimraf": "6.0.1", + "signale": "1.4.0", + "simple-icons": "16.8.0", + "turbo": "2.0.14", + "typescript": "5.5.4", + "uppercamelcase": "3.0.0", + "vite": "5.4.1", + "vite-plugin-dts": "4.0.3" + }, + "peerDependencies": { + "react": "^16.13 || ^17 || ^18 || ^19" + }, + "publishConfig": { + "access": "public" + }, + "scripts": { + "clean": "rimraf -rf icons base.cjs base.d.ts base.mjs index.cjs index.d.ts index.mjs types.d.ts", + "build": "pnpm clean && vite build", + "lint:types": "tsc --noEmit", + "clean:icons": "rimraf -rf ./src/icons/**", + "clean:files": "rimraf -rf ./src/index.ts", + "bump": "pnpm install -D simple-icons@latest && node scripts/update-readme.mjs", + "generate:icons": "pnpm clean:icons && pnpm clean:files && node scripts/generate-icons.mjs", + "prettier:format": "prettier --config .prettierrc \"./**/*.+(js|json|ts|tsx)\" --write", + "changeset": "changeset", + "version": "changeset version", + "release": "changeset publish" + } +} \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si1001tracklists.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1001tracklists.tsx new file mode 100644 index 000000000..8d5e12aae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1001tracklists.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si1001tracklistsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40AEF0'; + + const Si1001tracklists: IconType = React.forwardRef<SVGSVGElement, Si1001tracklistsProps>(function Si1001tracklists({title = '1001Tracklists', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + <svg + xmlns='http://www.w3.org/2000/svg' + width={size} + height={size} + fill={color} + viewBox='0 0 24 24' + ref={ref} + {...others} + > + <title>{title} + + + ); + }); + + export { Si1001tracklists as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si1and1.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1and1.tsx new file mode 100644 index 000000000..ad9e7669c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1and1.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si1and1Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003D8F'; + + const Si1and1: IconType = React.forwardRef(function Si1and1({title = '1&1', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si1and1 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si1dot1dot1dot1.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1dot1dot1dot1.tsx new file mode 100644 index 000000000..0cccd87d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1dot1dot1dot1.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si1dot1dot1dot1Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#221E68'; + + const Si1dot1dot1dot1: IconType = React.forwardRef(function Si1dot1dot1dot1({title = '1.1.1.1', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si1dot1dot1dot1 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si1panel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1panel.tsx new file mode 100644 index 000000000..3886089ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1panel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si1panelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0854C1'; + + const Si1panel: IconType = React.forwardRef(function Si1panel({title = '1Panel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si1panel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si1password.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1password.tsx new file mode 100644 index 000000000..f309cc975 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si1password.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si1passwordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B66BC'; + + const Si1password: IconType = React.forwardRef(function Si1password({title = '1Password', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si1password as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si2fas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si2fas.tsx new file mode 100644 index 000000000..5ef1dcd1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si2fas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si2fasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC1C24'; + + const Si2fas: IconType = React.forwardRef(function Si2fas({title = '2FAS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si2fas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si2k.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si2k.tsx new file mode 100644 index 000000000..7a622ad21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si2k.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si2kProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD0700'; + + const Si2k: IconType = React.forwardRef(function Si2k({title = '2K', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si2k as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si30secondsofcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si30secondsofcode.tsx new file mode 100644 index 000000000..a075ea367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si30secondsofcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si30secondsofcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5395FD'; + + const Si30secondsofcode: IconType = React.forwardRef(function Si30secondsofcode({title = '30 seconds of code', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si30secondsofcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si365datascience.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si365datascience.tsx new file mode 100644 index 000000000..e9d6dcdb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si365datascience.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si365datascienceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000C1F'; + + const Si365datascience: IconType = React.forwardRef(function Si365datascience({title = '365 Data Science', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si365datascience as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si3m.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si3m.tsx new file mode 100644 index 000000000..c31ff41ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si3m.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si3mProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const Si3m: IconType = React.forwardRef(function Si3m({title = '3M', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si3m as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si42.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si42.tsx new file mode 100644 index 000000000..fdca83059 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si42.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si42Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const Si42: IconType = React.forwardRef(function Si42({title = '42', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si42 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si4chan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si4chan.tsx new file mode 100644 index 000000000..9d8944117 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si4chan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si4chanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006600'; + + const Si4chan: IconType = React.forwardRef(function Si4chan({title = '4chan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si4chan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si4d.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si4d.tsx new file mode 100644 index 000000000..d5b8cadfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si4d.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si4dProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004088'; + + const Si4d: IconType = React.forwardRef(function Si4d({title = '4D', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si4d as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si500px.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si500px.tsx new file mode 100644 index 000000000..a56beee1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si500px.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si500pxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const Si500px: IconType = React.forwardRef(function Si500px({title = '500px', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si500px as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si7zip.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si7zip.tsx new file mode 100644 index 000000000..11df56993 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si7zip.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si7zipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const Si7zip: IconType = React.forwardRef(function Si7zip({title = '7Zip', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si7zip as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si99designs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si99designs.tsx new file mode 100644 index 000000000..6a8c019a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si99designs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si99designsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE5F50'; + + const Si99designs: IconType = React.forwardRef(function Si99designs({title = '99designs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si99designs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/Si9gag.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/Si9gag.tsx new file mode 100644 index 000000000..2c014d6a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/Si9gag.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type Si9gagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const Si9gag: IconType = React.forwardRef(function Si9gag({title = '9GAG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { Si9gag as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbb.tsx new file mode 100644 index 000000000..4a22234b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAbbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF000F'; + + const SiAbb: IconType = React.forwardRef(function SiAbb({title = 'ABB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAbb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbbott.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbbott.tsx new file mode 100644 index 000000000..809b7886e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbbott.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAbbottProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008FC7'; + + const SiAbbott: IconType = React.forwardRef(function SiAbbott({title = 'Abbott', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAbbott as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbbvie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbbvie.tsx new file mode 100644 index 000000000..a0375dd8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbbvie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAbbvieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#071D49'; + + const SiAbbvie: IconType = React.forwardRef(function SiAbbvie({title = 'Abbvie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAbbvie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbdownloadmanager.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbdownloadmanager.tsx new file mode 100644 index 000000000..6bb9e80f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbdownloadmanager.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAbdownloadmanagerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#897BFF'; + + const SiAbdownloadmanager: IconType = React.forwardRef(function SiAbdownloadmanager({title = 'AB Download Manager', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAbdownloadmanager as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAboutdotme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAboutdotme.tsx new file mode 100644 index 000000000..aecaed24a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAboutdotme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAboutdotmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiAboutdotme: IconType = React.forwardRef(function SiAboutdotme({title = 'about.me', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAboutdotme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbstract.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbstract.tsx new file mode 100644 index 000000000..510d51c61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbstract.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAbstractProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#191A1B'; + + const SiAbstract: IconType = React.forwardRef(function SiAbstract({title = 'Abstract', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAbstract as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbusedotch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbusedotch.tsx new file mode 100644 index 000000000..495fee34d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAbusedotch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAbusedotchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00465B'; + + const SiAbusedotch: IconType = React.forwardRef(function SiAbusedotch({title = 'abuse.ch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAbusedotch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcademia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcademia.tsx new file mode 100644 index 000000000..2187903c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcademia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAcademiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41454A'; + + const SiAcademia: IconType = React.forwardRef(function SiAcademia({title = 'Academia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAcademia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccenture.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccenture.tsx new file mode 100644 index 000000000..06511d7f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccenture.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAccentureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A100FF'; + + const SiAccenture: IconType = React.forwardRef(function SiAccenture({title = 'Accenture', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAccenture as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccusoft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccusoft.tsx new file mode 100644 index 000000000..01aea3e39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccusoft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAccusoftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A9225C'; + + const SiAccusoft: IconType = React.forwardRef(function SiAccusoft({title = 'Accusoft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAccusoft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccuweather.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccuweather.tsx new file mode 100644 index 000000000..a87db2984 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAccuweather.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAccuweatherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiAccuweather: IconType = React.forwardRef(function SiAccuweather({title = 'AccuWeather', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAccuweather as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcer.tsx new file mode 100644 index 000000000..da299e3f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAcerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#83B81A'; + + const SiAcer: IconType = React.forwardRef(function SiAcer({title = 'Acer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAcer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcm.tsx new file mode 100644 index 000000000..93787b362 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAcmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0085CA'; + + const SiAcm: IconType = React.forwardRef(function SiAcm({title = 'ACM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAcm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcode.tsx new file mode 100644 index 000000000..3404fceee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3499FE'; + + const SiAcode: IconType = React.forwardRef(function SiAcode({title = 'Acode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiActigraph.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActigraph.tsx new file mode 100644 index 000000000..d42d1d75d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActigraph.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiActigraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3A4259'; + + const SiActigraph: IconType = React.forwardRef(function SiActigraph({title = 'ActiGraph', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiActigraph as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiActiveloop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActiveloop.tsx new file mode 100644 index 000000000..7f27711e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActiveloop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiActiveloopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB746'; + + const SiActiveloop: IconType = React.forwardRef(function SiActiveloop({title = 'Activeloop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiActiveloop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiActivision.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActivision.tsx new file mode 100644 index 000000000..d7ff6ae85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActivision.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiActivisionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiActivision: IconType = React.forwardRef(function SiActivision({title = 'Activision', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiActivision as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiActivitypub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActivitypub.tsx new file mode 100644 index 000000000..7ba99550e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActivitypub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiActivitypubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F1007E'; + + const SiActivitypub: IconType = React.forwardRef(function SiActivitypub({title = 'ActivityPub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiActivitypub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiActix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActix.tsx new file mode 100644 index 000000000..c96bec85b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiActixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiActix: IconType = React.forwardRef(function SiActix({title = 'Actix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiActix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiActualbudget.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActualbudget.tsx new file mode 100644 index 000000000..4590693ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiActualbudget.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiActualbudgetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6B46C1'; + + const SiActualbudget: IconType = React.forwardRef(function SiActualbudget({title = 'Actual Budget', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiActualbudget as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcura.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcura.tsx new file mode 100644 index 000000000..5addb23c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAcura.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAcuraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAcura: IconType = React.forwardRef(function SiAcura({title = 'Acura', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAcura as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAda.tsx new file mode 100644 index 000000000..f9ef8ab5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAda: IconType = React.forwardRef(function SiAda({title = 'Ada', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdafruit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdafruit.tsx new file mode 100644 index 000000000..88059a045 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdafruit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdafruitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAdafruit: IconType = React.forwardRef(function SiAdafruit({title = 'Adafruit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdafruit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdaway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdaway.tsx new file mode 100644 index 000000000..9864922f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdaway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdawayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B71C1C'; + + const SiAdaway: IconType = React.forwardRef(function SiAdaway({title = 'AdAway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdaway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdblock.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdblock.tsx new file mode 100644 index 000000000..264df33fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdblock.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdblockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F40D12'; + + const SiAdblock: IconType = React.forwardRef(function SiAdblock({title = 'AdBlock', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdblock as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdblockplus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdblockplus.tsx new file mode 100644 index 000000000..907692283 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdblockplus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdblockplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C70D2C'; + + const SiAdblockplus: IconType = React.forwardRef(function SiAdblockplus({title = 'Adblock Plus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdblockplus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAddydotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAddydotio.tsx new file mode 100644 index 000000000..cba9888ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAddydotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAddydotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#19216C'; + + const SiAddydotio: IconType = React.forwardRef(function SiAddydotio({title = 'addy.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAddydotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdguard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdguard.tsx new file mode 100644 index 000000000..bcb2690ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdguard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#68BC71'; + + const SiAdguard: IconType = React.forwardRef(function SiAdguard({title = 'AdGuard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdguard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdidas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdidas.tsx new file mode 100644 index 000000000..9977c23cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdidas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdidasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAdidas: IconType = React.forwardRef(function SiAdidas({title = 'Adidas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdidas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdminer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdminer.tsx new file mode 100644 index 000000000..420abf0ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdminer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdminerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34567C'; + + const SiAdminer: IconType = React.forwardRef(function SiAdminer({title = 'Adminer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdminer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdonisjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdonisjs.tsx new file mode 100644 index 000000000..8cf9ade76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdonisjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdonisjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A45FF'; + + const SiAdonisjs: IconType = React.forwardRef(function SiAdonisjs({title = 'AdonisJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdonisjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdp.tsx new file mode 100644 index 000000000..20191cb2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D0271D'; + + const SiAdp: IconType = React.forwardRef(function SiAdp({title = 'ADP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdroll.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdroll.tsx new file mode 100644 index 000000000..15e265b0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdroll.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdrollProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0DBDFF'; + + const SiAdroll: IconType = React.forwardRef(function SiAdroll({title = 'Adroll', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdroll as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdventofcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdventofcode.tsx new file mode 100644 index 000000000..cbcda53d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdventofcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdventofcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFF66'; + + const SiAdventofcode: IconType = React.forwardRef(function SiAdventofcode({title = 'Advent Of Code', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdventofcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdyen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdyen.tsx new file mode 100644 index 000000000..dee17ea3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAdyen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAdyenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0ABF53'; + + const SiAdyen: IconType = React.forwardRef(function SiAdyen({title = 'Adyen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAdyen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAegisauthenticator.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAegisauthenticator.tsx new file mode 100644 index 000000000..597eccb5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAegisauthenticator.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAegisauthenticatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005E9D'; + + const SiAegisauthenticator: IconType = React.forwardRef(function SiAegisauthenticator({title = 'Aegis Authenticator', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAegisauthenticator as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAeroflot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAeroflot.tsx new file mode 100644 index 000000000..b8e969dc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAeroflot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAeroflotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02458D'; + + const SiAeroflot: IconType = React.forwardRef(function SiAeroflot({title = 'Aeroflot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAeroflot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAeromexico.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAeromexico.tsx new file mode 100644 index 000000000..9fbf13b20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAeromexico.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAeromexicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B2343'; + + const SiAeromexico: IconType = React.forwardRef(function SiAeromexico({title = 'Aeroméxico', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAeromexico as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAfdian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAfdian.tsx new file mode 100644 index 000000000..130c55c65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAfdian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAfdianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#946CE6'; + + const SiAfdian: IconType = React.forwardRef(function SiAfdian({title = 'AFDIAN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAfdian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAffine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAffine.tsx new file mode 100644 index 000000000..7950a8db5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAffine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAffineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E96EB'; + + const SiAffine: IconType = React.forwardRef(function SiAffine({title = 'AFFiNE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAffine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAframe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAframe.tsx new file mode 100644 index 000000000..ee33e465c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAframe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAframeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF2D5E'; + + const SiAframe: IconType = React.forwardRef(function SiAframe({title = 'A-Frame', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAframe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAfterpay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAfterpay.tsx new file mode 100644 index 000000000..fc5abac6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAfterpay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAfterpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B2FCE4'; + + const SiAfterpay: IconType = React.forwardRef(function SiAfterpay({title = 'Afterpay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAfterpay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAftership.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAftership.tsx new file mode 100644 index 000000000..b0151b2af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAftership.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAftershipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6B2B'; + + const SiAftership: IconType = React.forwardRef(function SiAftership({title = 'AfterShip', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAftership as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAgora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAgora.tsx new file mode 100644 index 000000000..c75859cef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAgora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAgoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#099DFD'; + + const SiAgora: IconType = React.forwardRef(function SiAgora({title = 'Agora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAgora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAib.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAib.tsx new file mode 100644 index 000000000..b2e74b7b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAib.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAibProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7F2B7B'; + + const SiAib: IconType = React.forwardRef(function SiAib({title = 'AIB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAib as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAidungeon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAidungeon.tsx new file mode 100644 index 000000000..3eeeb7d34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAidungeon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAidungeonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAidungeon: IconType = React.forwardRef(function SiAidungeon({title = 'AI Dungeon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAidungeon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAiohttp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAiohttp.tsx new file mode 100644 index 000000000..7b2c800ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAiohttp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAiohttpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C5BB4'; + + const SiAiohttp: IconType = React.forwardRef(function SiAiohttp({title = 'AIOHTTP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAiohttp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAiqfome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAiqfome.tsx new file mode 100644 index 000000000..1871977db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAiqfome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAiqfomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7A1FA2'; + + const SiAiqfome: IconType = React.forwardRef(function SiAiqfome({title = 'Aiqfome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAiqfome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirasia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirasia.tsx new file mode 100644 index 000000000..8414d2a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirasia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirasiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiAirasia: IconType = React.forwardRef(function SiAirasia({title = 'AirAsia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirasia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbnb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbnb.tsx new file mode 100644 index 000000000..f1a240d97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbnb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirbnbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5A5F'; + + const SiAirbnb: IconType = React.forwardRef(function SiAirbnb({title = 'Airbnb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirbnb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbrake.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbrake.tsx new file mode 100644 index 000000000..b5e7b182f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbrake.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirbrakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA500'; + + const SiAirbrake: IconType = React.forwardRef(function SiAirbrake({title = 'Airbrake', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirbrake as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbus.tsx new file mode 100644 index 000000000..81b818e01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirbusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00205B'; + + const SiAirbus: IconType = React.forwardRef(function SiAirbus({title = 'Airbus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirbus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbyte.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbyte.tsx new file mode 100644 index 000000000..51b93a891 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirbyte.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirbyteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#615EFF'; + + const SiAirbyte: IconType = React.forwardRef(function SiAirbyte({title = 'Airbyte', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirbyte as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAircall.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAircall.tsx new file mode 100644 index 000000000..57d290b11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAircall.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAircallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B388'; + + const SiAircall: IconType = React.forwardRef(function SiAircall({title = 'Aircall', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAircall as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAircanada.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAircanada.tsx new file mode 100644 index 000000000..3c3163c0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAircanada.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAircanadaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F01428'; + + const SiAircanada: IconType = React.forwardRef(function SiAircanada({title = 'Air Canada', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAircanada as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirchina.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirchina.tsx new file mode 100644 index 000000000..ee683e0d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirchina.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirchinaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E30E17'; + + const SiAirchina: IconType = React.forwardRef(function SiAirchina({title = 'Air China', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirchina as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirfrance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirfrance.tsx new file mode 100644 index 000000000..03e848cee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirfrance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirfranceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002157'; + + const SiAirfrance: IconType = React.forwardRef(function SiAirfrance({title = 'Air France', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirfrance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirindia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirindia.tsx new file mode 100644 index 000000000..11a974bf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirindia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirindiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA0E29'; + + const SiAirindia: IconType = React.forwardRef(function SiAirindia({title = 'Air India', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirindia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirplayaudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirplayaudio.tsx new file mode 100644 index 000000000..ea3eaafb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirplayaudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirplayaudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAirplayaudio: IconType = React.forwardRef(function SiAirplayaudio({title = 'AirPlay Audio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirplayaudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirplayvideo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirplayvideo.tsx new file mode 100644 index 000000000..516b9a295 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirplayvideo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirplayvideoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAirplayvideo: IconType = React.forwardRef(function SiAirplayvideo({title = 'AirPlay Video', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirplayvideo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirserbia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirserbia.tsx new file mode 100644 index 000000000..1dcc4e213 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirserbia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirserbiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E203F'; + + const SiAirserbia: IconType = React.forwardRef(function SiAirserbia({title = 'Air Serbia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirserbia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtable.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtable.tsx new file mode 100644 index 000000000..57bfb08b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtable.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirtableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18BFFF'; + + const SiAirtable: IconType = React.forwardRef(function SiAirtable({title = 'Airtable', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirtable as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtel.tsx new file mode 100644 index 000000000..14033c391 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirtelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E40000'; + + const SiAirtel: IconType = React.forwardRef(function SiAirtel({title = 'Airtel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirtel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtransat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtransat.tsx new file mode 100644 index 000000000..19b31f271 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAirtransat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAirtransatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#172B54'; + + const SiAirtransat: IconType = React.forwardRef(function SiAirtransat({title = 'Air Transat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAirtransat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAjv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAjv.tsx new file mode 100644 index 000000000..94779ac31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAjv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAjvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#23C8D2'; + + const SiAjv: IconType = React.forwardRef(function SiAjv({title = 'Ajv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAjv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkamai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkamai.tsx new file mode 100644 index 000000000..ac4a6e9e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkamai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAkamaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0096D6'; + + const SiAkamai: IconType = React.forwardRef(function SiAkamai({title = 'Akamai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAkamai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkasaair.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkasaair.tsx new file mode 100644 index 000000000..6da294b40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkasaair.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAkasaairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6300'; + + const SiAkasaair: IconType = React.forwardRef(function SiAkasaair({title = 'Akasa Air', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAkasaair as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkaunting.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkaunting.tsx new file mode 100644 index 000000000..2e9bdb182 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkaunting.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAkauntingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6DA252'; + + const SiAkaunting: IconType = React.forwardRef(function SiAkaunting({title = 'Akaunting', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAkaunting as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkiflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkiflow.tsx new file mode 100644 index 000000000..ca477413e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAkiflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAkiflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AF38F9'; + + const SiAkiflow: IconType = React.forwardRef(function SiAkiflow({title = 'Akiflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAkiflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlacritty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlacritty.tsx new file mode 100644 index 000000000..3f07f1af4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlacritty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlacrittyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F46D01'; + + const SiAlacritty: IconType = React.forwardRef(function SiAlacritty({title = 'Alacritty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlacritty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlamy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlamy.tsx new file mode 100644 index 000000000..69ef7aceb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlamy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlamyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FF7B'; + + const SiAlamy: IconType = React.forwardRef(function SiAlamy({title = 'Alamy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlamy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlbertheijn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlbertheijn.tsx new file mode 100644 index 000000000..49677c842 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlbertheijn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlbertheijnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#04ACE6'; + + const SiAlbertheijn: IconType = React.forwardRef(function SiAlbertheijn({title = 'Albert Heijn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlbertheijn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlby.tsx new file mode 100644 index 000000000..210440171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDF6F'; + + const SiAlby: IconType = React.forwardRef(function SiAlby({title = 'Alby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlchemy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlchemy.tsx new file mode 100644 index 000000000..3ccfd6d59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlchemy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlchemyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C0C0E'; + + const SiAlchemy: IconType = React.forwardRef(function SiAlchemy({title = 'Alchemy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlchemy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAldinord.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAldinord.tsx new file mode 100644 index 000000000..c400f87b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAldinord.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAldinordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2490D7'; + + const SiAldinord: IconType = React.forwardRef(function SiAldinord({title = 'Aldi Nord', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAldinord as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAldisud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAldisud.tsx new file mode 100644 index 000000000..4b72ff337 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAldisud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAldisudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00005F'; + + const SiAldisud: IconType = React.forwardRef(function SiAldisud({title = 'Aldi Süd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAldisud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlfred.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlfred.tsx new file mode 100644 index 000000000..86eaa301c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlfred.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlfredProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C1F87'; + + const SiAlfred: IconType = React.forwardRef(function SiAlfred({title = 'Alfred', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlfred as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlgolia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlgolia.tsx new file mode 100644 index 000000000..e85fb22d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlgolia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlgoliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003DFF'; + + const SiAlgolia: IconType = React.forwardRef(function SiAlgolia({title = 'Algolia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlgolia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlgorand.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlgorand.tsx new file mode 100644 index 000000000..8cc7280bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlgorand.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlgorandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAlgorand: IconType = React.forwardRef(function SiAlgorand({title = 'Algorand', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlgorand as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlibabacloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlibabacloud.tsx new file mode 100644 index 000000000..70c6ec27f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlibabacloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlibabacloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6A00'; + + const SiAlibabacloud: IconType = React.forwardRef(function SiAlibabacloud({title = 'Alibaba Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlibabacloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlibabadotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlibabadotcom.tsx new file mode 100644 index 000000000..23e34b37a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlibabadotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlibabadotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6A00'; + + const SiAlibabadotcom: IconType = React.forwardRef(function SiAlibabadotcom({title = 'Alibaba.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlibabadotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlienware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlienware.tsx new file mode 100644 index 000000000..b5bd656f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlienware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlienwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#541BAE'; + + const SiAlienware: IconType = React.forwardRef(function SiAlienware({title = 'Alienware', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlienware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAliexpress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAliexpress.tsx new file mode 100644 index 000000000..2d8c4a4cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAliexpress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAliexpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4747'; + + const SiAliexpress: IconType = React.forwardRef(function SiAliexpress({title = 'AliExpress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAliexpress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlipay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlipay.tsx new file mode 100644 index 000000000..1871a6fd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlipay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlipayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1677FF'; + + const SiAlipay: IconType = React.forwardRef(function SiAlipay({title = 'Alipay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlipay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlist.tsx new file mode 100644 index 000000000..f0dcb3e4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#70C6BE'; + + const SiAlist: IconType = React.forwardRef(function SiAlist({title = 'AList', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAllegro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAllegro.tsx new file mode 100644 index 000000000..ec9285861 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAllegro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAllegroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5A00'; + + const SiAllegro: IconType = React.forwardRef(function SiAllegro({title = 'Allegro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAllegro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlliedmodders.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlliedmodders.tsx new file mode 100644 index 000000000..e4a994eed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlliedmodders.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlliedmoddersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1578D3'; + + const SiAlliedmodders: IconType = React.forwardRef(function SiAlliedmodders({title = 'AlliedModders', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlliedmodders as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlltrails.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlltrails.tsx new file mode 100644 index 000000000..a6e5b3fc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlltrails.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlltrailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#142800'; + + const SiAlltrails: IconType = React.forwardRef(function SiAlltrails({title = 'AllTrails', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlltrails as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlmalinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlmalinux.tsx new file mode 100644 index 000000000..37254b8b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlmalinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlmalinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAlmalinux: IconType = React.forwardRef(function SiAlmalinux({title = 'AlmaLinux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlmalinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlpinedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlpinedotjs.tsx new file mode 100644 index 000000000..3a15929cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlpinedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlpinedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8BC0D0'; + + const SiAlpinedotjs: IconType = React.forwardRef(function SiAlpinedotjs({title = 'Alpine.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlpinedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlpinelinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlpinelinux.tsx new file mode 100644 index 000000000..2b7722726 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlpinelinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlpinelinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D597F'; + + const SiAlpinelinux: IconType = React.forwardRef(function SiAlpinelinux({title = 'Alpine Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlpinelinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlternativeto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlternativeto.tsx new file mode 100644 index 000000000..803e54750 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlternativeto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlternativetoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0289D5'; + + const SiAlternativeto: IconType = React.forwardRef(function SiAlternativeto({title = 'AlternativeTo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlternativeto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlwaysdata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlwaysdata.tsx new file mode 100644 index 000000000..f88e2ce34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAlwaysdata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAlwaysdataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E9568E'; + + const SiAlwaysdata: IconType = React.forwardRef(function SiAlwaysdata({title = 'Alwaysdata', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAlwaysdata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmd.tsx new file mode 100644 index 000000000..b21dc49e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiAmd: IconType = React.forwardRef(function SiAmd({title = 'AMD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmeba.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmeba.tsx new file mode 100644 index 000000000..e968711f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmeba.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmebaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D8C3C'; + + const SiAmeba: IconType = React.forwardRef(function SiAmeba({title = 'Ameba', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmeba as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmericanairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmericanairlines.tsx new file mode 100644 index 000000000..ea45b47b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmericanairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmericanairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0078D2'; + + const SiAmericanairlines: IconType = React.forwardRef(function SiAmericanairlines({title = 'American Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmericanairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmericanexpress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmericanexpress.tsx new file mode 100644 index 000000000..0d9e26a6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmericanexpress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmericanexpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E77BC'; + + const SiAmericanexpress: IconType = React.forwardRef(function SiAmericanexpress({title = 'American Express', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmericanexpress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmg.tsx new file mode 100644 index 000000000..8942d505a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAmg: IconType = React.forwardRef(function SiAmg({title = 'AMG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmp.tsx new file mode 100644 index 000000000..730729fbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005AF0'; + + const SiAmp: IconType = React.forwardRef(function SiAmp({title = 'AMP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmul.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmul.tsx new file mode 100644 index 000000000..dc6c081e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAmul.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAmulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1D24'; + + const SiAmul: IconType = React.forwardRef(function SiAmul({title = 'Amul', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAmul as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAna.tsx new file mode 100644 index 000000000..b89b8519c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13448F'; + + const SiAna: IconType = React.forwardRef(function SiAna({title = 'ANA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnaconda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnaconda.tsx new file mode 100644 index 000000000..12da09a17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnaconda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnacondaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#44A833'; + + const SiAnaconda: IconType = React.forwardRef(function SiAnaconda({title = 'Anaconda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnaconda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnalogue.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnalogue.tsx new file mode 100644 index 000000000..466fd2cbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnalogue.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnalogueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1A1A'; + + const SiAnalogue: IconType = React.forwardRef(function SiAnalogue({title = 'Analogue', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnalogue as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndela.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndela.tsx new file mode 100644 index 000000000..89695826f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndela.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAndelaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#173B3F'; + + const SiAndela: IconType = React.forwardRef(function SiAndela({title = 'Andela', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAndela as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroid.tsx new file mode 100644 index 000000000..491d6e471 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAndroidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DDC84'; + + const SiAndroid: IconType = React.forwardRef(function SiAndroid({title = 'Android', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAndroid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroidauto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroidauto.tsx new file mode 100644 index 000000000..712f1bf7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroidauto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAndroidautoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DDC84'; + + const SiAndroidauto: IconType = React.forwardRef(function SiAndroidauto({title = 'Android Auto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAndroidauto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroidstudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroidstudio.tsx new file mode 100644 index 000000000..8cc8c2b38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAndroidstudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAndroidstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DDC84'; + + const SiAndroidstudio: IconType = React.forwardRef(function SiAndroidstudio({title = 'Android Studio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAndroidstudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAngular.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAngular.tsx new file mode 100644 index 000000000..dc1debe5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAngular.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAngularProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0F0F11'; + + const SiAngular: IconType = React.forwardRef(function SiAngular({title = 'Angular', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAngular as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnichart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnichart.tsx new file mode 100644 index 000000000..32718b92f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnichart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnichartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41B1EA'; + + const SiAnichart: IconType = React.forwardRef(function SiAnichart({title = 'AniChart', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnichart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnilist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnilist.tsx new file mode 100644 index 000000000..798d4f0e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnilist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnilistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02A9FF'; + + const SiAnilist: IconType = React.forwardRef(function SiAnilist({title = 'AniList', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnilist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnimalplanet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnimalplanet.tsx new file mode 100644 index 000000000..65095baf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnimalplanet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnimalplanetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0073FF'; + + const SiAnimalplanet: IconType = React.forwardRef(function SiAnimalplanet({title = 'Animal Planet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnimalplanet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnimedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnimedotjs.tsx new file mode 100644 index 000000000..3b3fad2a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnimedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnimedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAnimedotjs: IconType = React.forwardRef(function SiAnimedotjs({title = 'Anime.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnimedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnkermake.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnkermake.tsx new file mode 100644 index 000000000..4b362b1da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnkermake.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnkermakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#88F387'; + + const SiAnkermake: IconType = React.forwardRef(function SiAnkermake({title = 'AnkerMake', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnkermake as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnki.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnki.tsx new file mode 100644 index 000000000..99708d7d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnki.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnkiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#80C2EE'; + + const SiAnki: IconType = React.forwardRef(function SiAnki({title = 'Anki', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnki as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnsible.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnsible.tsx new file mode 100644 index 000000000..96d9bc4f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnsible.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnsibleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE0000'; + + const SiAnsible: IconType = React.forwardRef(function SiAnsible({title = 'Ansible', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnsible as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnswer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnswer.tsx new file mode 100644 index 000000000..c1a9ba0f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnswer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnswerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0033FF'; + + const SiAnswer: IconType = React.forwardRef(function SiAnswer({title = 'Answer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnswer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnsys.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnsys.tsx new file mode 100644 index 000000000..d18bb11bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnsys.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnsysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB71B'; + + const SiAnsys: IconType = React.forwardRef(function SiAnsys({title = 'Ansys', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnsys as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnta.tsx new file mode 100644 index 000000000..55718887c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAntaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D70010'; + + const SiAnta: IconType = React.forwardRef(function SiAnta({title = 'Anta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntdesign.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntdesign.tsx new file mode 100644 index 000000000..5020d3bfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntdesign.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAntdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0170FE'; + + const SiAntdesign: IconType = React.forwardRef(function SiAntdesign({title = 'Ant Design', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAntdesign as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntena3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntena3.tsx new file mode 100644 index 000000000..4bda02e21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntena3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAntena3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7328'; + + const SiAntena3: IconType = React.forwardRef(function SiAntena3({title = 'Antena 3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAntena3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntennapod.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntennapod.tsx new file mode 100644 index 000000000..477bf0444 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntennapod.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAntennapodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#364FF3'; + + const SiAntennapod: IconType = React.forwardRef(function SiAntennapod({title = 'AntennaPod', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAntennapod as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnthropic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnthropic.tsx new file mode 100644 index 000000000..41bbd297e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnthropic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnthropicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#191919'; + + const SiAnthropic: IconType = React.forwardRef(function SiAnthropic({title = 'Anthropic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnthropic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntv.tsx new file mode 100644 index 000000000..66db5a2db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAntv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAntvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8B5DFF'; + + const SiAntv: IconType = React.forwardRef(function SiAntv({title = 'AntV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAntv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnycubic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnycubic.tsx new file mode 100644 index 000000000..21e2a78ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnycubic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnycubicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#476695'; + + const SiAnycubic: IconType = React.forwardRef(function SiAnycubic({title = 'Anycubic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnycubic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnydesk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnydesk.tsx new file mode 100644 index 000000000..06cb0870f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnydesk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnydeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF443B'; + + const SiAnydesk: IconType = React.forwardRef(function SiAnydesk({title = 'AnyDesk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnydesk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnytype.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnytype.tsx new file mode 100644 index 000000000..111e24de4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAnytype.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAnytypeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6A7B'; + + const SiAnytype: IconType = React.forwardRef(function SiAnytype({title = 'Anytype', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAnytype as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApache.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApache.tsx new file mode 100644 index 000000000..6ac95f24c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApache.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D22128'; + + const SiApache: IconType = React.forwardRef(function SiApache({title = 'Apache', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApache as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheairflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheairflow.tsx new file mode 100644 index 000000000..086d6bada --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheairflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheairflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#017CEE'; + + const SiApacheairflow: IconType = React.forwardRef(function SiApacheairflow({title = 'Apache Airflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheairflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheant.tsx new file mode 100644 index 000000000..9e898b79f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A81C7D'; + + const SiApacheant: IconType = React.forwardRef(function SiApacheant({title = 'Apache Ant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheavro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheavro.tsx new file mode 100644 index 000000000..a047169ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheavro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheavroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#30638E'; + + const SiApacheavro: IconType = React.forwardRef(function SiApacheavro({title = 'Apache Avro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheavro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecassandra.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecassandra.tsx new file mode 100644 index 000000000..0afbc67c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecassandra.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachecassandraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1287B1'; + + const SiApachecassandra: IconType = React.forwardRef(function SiApachecassandra({title = 'Apache Cassandra', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachecassandra as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecloudstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecloudstack.tsx new file mode 100644 index 000000000..2c97841e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecloudstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachecloudstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2AA5DC'; + + const SiApachecloudstack: IconType = React.forwardRef(function SiApachecloudstack({title = 'Apache CloudStack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachecloudstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecordova.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecordova.tsx new file mode 100644 index 000000000..b77eaa9ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecordova.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachecordovaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E8E8E8'; + + const SiApachecordova: IconType = React.forwardRef(function SiApachecordova({title = 'Apache Cordova', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachecordova as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecouchdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecouchdb.tsx new file mode 100644 index 000000000..a05443c65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachecouchdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachecouchdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E42528'; + + const SiApachecouchdb: IconType = React.forwardRef(function SiApachecouchdb({title = 'Apache CouchDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachecouchdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedolphinscheduler.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedolphinscheduler.tsx new file mode 100644 index 000000000..1f9da99b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedolphinscheduler.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachedolphinschedulerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#85CDF0'; + + const SiApachedolphinscheduler: IconType = React.forwardRef(function SiApachedolphinscheduler({title = 'Apache DolphinScheduler', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachedolphinscheduler as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedoris.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedoris.tsx new file mode 100644 index 000000000..d4a5b2d4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedoris.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachedorisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#444FD9'; + + const SiApachedoris: IconType = React.forwardRef(function SiApachedoris({title = 'Apache Doris', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachedoris as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedruid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedruid.tsx new file mode 100644 index 000000000..6af49cadd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachedruid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachedruidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#29F1FB'; + + const SiApachedruid: IconType = React.forwardRef(function SiApachedruid({title = 'Apache Druid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachedruid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheecharts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheecharts.tsx new file mode 100644 index 000000000..78b3031b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheecharts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheechartsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AA344D'; + + const SiApacheecharts: IconType = React.forwardRef(function SiApacheecharts({title = 'Apache ECharts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheecharts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheflink.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheflink.tsx new file mode 100644 index 000000000..72d7a7495 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheflink.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheflinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6526F'; + + const SiApacheflink: IconType = React.forwardRef(function SiApacheflink({title = 'Apache Flink', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheflink as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachefreemarker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachefreemarker.tsx new file mode 100644 index 000000000..4148dca6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachefreemarker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachefreemarkerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#326CAC'; + + const SiApachefreemarker: IconType = React.forwardRef(function SiApachefreemarker({title = 'Apache FreeMarker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachefreemarker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachegroovy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachegroovy.tsx new file mode 100644 index 000000000..eb62270ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachegroovy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachegroovyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4298B8'; + + const SiApachegroovy: IconType = React.forwardRef(function SiApachegroovy({title = 'Apache Groovy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachegroovy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheguacamole.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheguacamole.tsx new file mode 100644 index 000000000..036561170 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheguacamole.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheguacamoleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#578B34'; + + const SiApacheguacamole: IconType = React.forwardRef(function SiApacheguacamole({title = 'Apache Guacamole', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheguacamole as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehadoop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehadoop.tsx new file mode 100644 index 000000000..338f2d00f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehadoop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachehadoopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#66CCFF'; + + const SiApachehadoop: IconType = React.forwardRef(function SiApachehadoop({title = 'Apache Hadoop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachehadoop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehbase.tsx new file mode 100644 index 000000000..d14ecfec7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachehbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BE160C'; + + const SiApachehbase: IconType = React.forwardRef(function SiApachehbase({title = 'Apache HBase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachehbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehive.tsx new file mode 100644 index 000000000..f980be0b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachehive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachehiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDEE21'; + + const SiApachehive: IconType = React.forwardRef(function SiApachehive({title = 'Apache Hive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachehive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachejmeter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachejmeter.tsx new file mode 100644 index 000000000..c7d6c71e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachejmeter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachejmeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D22128'; + + const SiApachejmeter: IconType = React.forwardRef(function SiApachejmeter({title = 'Apache JMeter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachejmeter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachekafka.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachekafka.tsx new file mode 100644 index 000000000..2a7d71dcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachekafka.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachekafkaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiApachekafka: IconType = React.forwardRef(function SiApachekafka({title = 'Apache Kafka', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachekafka as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachekylin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachekylin.tsx new file mode 100644 index 000000000..b04895ef2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachekylin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachekylinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F09D13'; + + const SiApachekylin: IconType = React.forwardRef(function SiApachekylin({title = 'Apache Kylin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachekylin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachelucene.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachelucene.tsx new file mode 100644 index 000000000..6a44a37cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachelucene.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheluceneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#019B8F'; + + const SiApachelucene: IconType = React.forwardRef(function SiApachelucene({title = 'Apache Lucene', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachelucene as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachemaven.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachemaven.tsx new file mode 100644 index 000000000..b78cc299a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachemaven.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachemavenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C71A36'; + + const SiApachemaven: IconType = React.forwardRef(function SiApachemaven({title = 'Apache Maven', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachemaven as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachenetbeanside.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachenetbeanside.tsx new file mode 100644 index 000000000..351df354b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachenetbeanside.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachenetbeansideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1B6AC6'; + + const SiApachenetbeanside: IconType = React.forwardRef(function SiApachenetbeanside({title = 'Apache NetBeans IDE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachenetbeanside as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachenifi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachenifi.tsx new file mode 100644 index 000000000..61830dc03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachenifi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachenifiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#728E9B'; + + const SiApachenifi: IconType = React.forwardRef(function SiApachenifi({title = 'Apache NiFi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachenifi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheopenoffice.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheopenoffice.tsx new file mode 100644 index 000000000..e30518b1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheopenoffice.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheopenofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E85CD'; + + const SiApacheopenoffice: IconType = React.forwardRef(function SiApacheopenoffice({title = 'Apache OpenOffice', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheopenoffice as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheparquet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheparquet.tsx new file mode 100644 index 000000000..e62c57ca9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacheparquet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacheparquetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#50ABF1'; + + const SiApacheparquet: IconType = React.forwardRef(function SiApacheparquet({title = 'Apache Parquet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacheparquet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachepdfbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachepdfbox.tsx new file mode 100644 index 000000000..598cc63ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachepdfbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachepdfboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34A5DA'; + + const SiApachepdfbox: IconType = React.forwardRef(function SiApachepdfbox({title = 'Apache PDFBox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachepdfbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachepulsar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachepulsar.tsx new file mode 100644 index 000000000..5329d9749 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachepulsar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachepulsarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#188FFF'; + + const SiApachepulsar: IconType = React.forwardRef(function SiApachepulsar({title = 'Apache Pulsar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachepulsar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacherocketmq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacherocketmq.tsx new file mode 100644 index 000000000..3e34c9a68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApacherocketmq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApacherocketmqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D77310'; + + const SiApacherocketmq: IconType = React.forwardRef(function SiApacherocketmq({title = 'Apache RocketMQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApacherocketmq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachesolr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachesolr.tsx new file mode 100644 index 000000000..bfb7239ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachesolr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachesolrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D9411E'; + + const SiApachesolr: IconType = React.forwardRef(function SiApachesolr({title = 'Apache Solr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachesolr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachespark.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachespark.tsx new file mode 100644 index 000000000..b0498f23d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachespark.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachesparkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E25A1C'; + + const SiApachespark: IconType = React.forwardRef(function SiApachespark({title = 'Apache Spark', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachespark as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachestorm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachestorm.tsx new file mode 100644 index 000000000..bc8b223c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachestorm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachestormProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#225593'; + + const SiApachestorm: IconType = React.forwardRef(function SiApachestorm({title = 'Apache Storm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachestorm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachesuperset.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachesuperset.tsx new file mode 100644 index 000000000..9a0f6692f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachesuperset.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachesupersetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#20A6C9'; + + const SiApachesuperset: IconType = React.forwardRef(function SiApachesuperset({title = 'Apache Superset', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachesuperset as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachetomcat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachetomcat.tsx new file mode 100644 index 000000000..a1f9c092f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApachetomcat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApachetomcatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F8DC75'; + + const SiApachetomcat: IconType = React.forwardRef(function SiApachetomcat({title = 'Apache Tomcat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApachetomcat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAparat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAparat.tsx new file mode 100644 index 000000000..2437c6a8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAparat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAparatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED145B'; + + const SiAparat: IconType = React.forwardRef(function SiAparat({title = 'Aparat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAparat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApifox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApifox.tsx new file mode 100644 index 000000000..893e7e996 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApifox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApifoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F44A53'; + + const SiApifox: IconType = React.forwardRef(function SiApifox({title = 'Apifox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApifox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApmterminals.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApmterminals.tsx new file mode 100644 index 000000000..dec75fbf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApmterminals.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApmterminalsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6441'; + + const SiApmterminals: IconType = React.forwardRef(function SiApmterminals({title = 'APM Terminals', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApmterminals as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApollographql.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApollographql.tsx new file mode 100644 index 000000000..0b5924af2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApollographql.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApollographqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#311C87'; + + const SiApollographql: IconType = React.forwardRef(function SiApollographql({title = 'Apollo GraphQL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApollographql as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApostrophe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApostrophe.tsx new file mode 100644 index 000000000..0e31a5181 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApostrophe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApostropheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6236FF'; + + const SiApostrophe: IconType = React.forwardRef(function SiApostrophe({title = 'Apostrophe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApostrophe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppgallery.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppgallery.tsx new file mode 100644 index 000000000..23d3d02e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppgallery.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppgalleryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiAppgallery: IconType = React.forwardRef(function SiAppgallery({title = 'AppGallery', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppgallery as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppian.tsx new file mode 100644 index 000000000..5add6df0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2322F0'; + + const SiAppian: IconType = React.forwardRef(function SiAppian({title = 'Appian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppimage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppimage.tsx new file mode 100644 index 000000000..0c729b823 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppimage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppimageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#739FB9'; + + const SiAppimage: IconType = React.forwardRef(function SiAppimage({title = 'AppImage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppimage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppium.tsx new file mode 100644 index 000000000..ee781db17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE376D'; + + const SiAppium: IconType = React.forwardRef(function SiAppium({title = 'Appium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApple.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApple.tsx new file mode 100644 index 000000000..e28d8eb4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApple.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiApple: IconType = React.forwardRef(function SiApple({title = 'Apple', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApple as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplearcade.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplearcade.tsx new file mode 100644 index 000000000..b93c1a294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplearcade.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApplearcadeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiApplearcade: IconType = React.forwardRef(function SiApplearcade({title = 'Apple Arcade', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApplearcade as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplemusic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplemusic.tsx new file mode 100644 index 000000000..f4269361d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplemusic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApplemusicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA243C'; + + const SiApplemusic: IconType = React.forwardRef(function SiApplemusic({title = 'Apple Music', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApplemusic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplenews.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplenews.tsx new file mode 100644 index 000000000..1373b81cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplenews.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApplenewsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD415E'; + + const SiApplenews: IconType = React.forwardRef(function SiApplenews({title = 'Apple News', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApplenews as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplepay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplepay.tsx new file mode 100644 index 000000000..612f6d5cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplepay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApplepayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiApplepay: IconType = React.forwardRef(function SiApplepay({title = 'Apple Pay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApplepay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplepodcasts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplepodcasts.tsx new file mode 100644 index 000000000..e54ed3799 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiApplepodcasts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiApplepodcastsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9933CC'; + + const SiApplepodcasts: IconType = React.forwardRef(function SiApplepodcasts({title = 'Apple Podcasts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiApplepodcasts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppletv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppletv.tsx new file mode 100644 index 000000000..57f94aaec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppletv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppletvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAppletv: IconType = React.forwardRef(function SiAppletv({title = 'Apple TV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppletv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppmanager.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppmanager.tsx new file mode 100644 index 000000000..d1c09e136 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppmanager.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppmanagerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DCAF74'; + + const SiAppmanager: IconType = React.forwardRef(function SiAppmanager({title = 'AppManager', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppmanager as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppsignal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppsignal.tsx new file mode 100644 index 000000000..bba658af8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppsignal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppsignalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21375A'; + + const SiAppsignal: IconType = React.forwardRef(function SiAppsignal({title = 'AppSignal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppsignal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppsmith.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppsmith.tsx new file mode 100644 index 000000000..ffd8b991c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppsmith.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppsmithProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A2F3D'; + + const SiAppsmith: IconType = React.forwardRef(function SiAppsmith({title = 'Appsmith', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppsmith as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppstore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppstore.tsx new file mode 100644 index 000000000..7880538d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppstore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppstoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D96F6'; + + const SiAppstore: IconType = React.forwardRef(function SiAppstore({title = 'App Store', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppstore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppveyor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppveyor.tsx new file mode 100644 index 000000000..4b35bcc1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppveyor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppveyorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B3E0'; + + const SiAppveyor: IconType = React.forwardRef(function SiAppveyor({title = 'AppVeyor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppveyor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppwrite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppwrite.tsx new file mode 100644 index 000000000..c88caf60b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAppwrite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAppwriteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD366E'; + + const SiAppwrite: IconType = React.forwardRef(function SiAppwrite({title = 'Appwrite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAppwrite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAqua.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAqua.tsx new file mode 100644 index 000000000..1e947094a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAqua.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAquaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1904DA'; + + const SiAqua: IconType = React.forwardRef(function SiAqua({title = 'Aqua', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAqua as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAral.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAral.tsx new file mode 100644 index 000000000..97f725e63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAral.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAralProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0063CB'; + + const SiAral: IconType = React.forwardRef(function SiAral({title = 'ARAL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAral as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArangodb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArangodb.tsx new file mode 100644 index 000000000..a0d54002f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArangodb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArangodbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DDDF72'; + + const SiArangodb: IconType = React.forwardRef(function SiArangodb({title = 'ArangoDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArangodb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArc.tsx new file mode 100644 index 000000000..1a9dd6203 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FCBFBD'; + + const SiArc: IconType = React.forwardRef(function SiArc({title = 'Arc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArcgis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArcgis.tsx new file mode 100644 index 000000000..3e73da252 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArcgis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArcgisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C7AC3'; + + const SiArcgis: IconType = React.forwardRef(function SiArcgis({title = 'ArcGIS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArcgis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchicad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchicad.tsx new file mode 100644 index 000000000..09642a342 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchicad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArchicadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D50A5'; + + const SiArchicad: IconType = React.forwardRef(function SiArchicad({title = 'Archicad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArchicad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchiveofourown.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchiveofourown.tsx new file mode 100644 index 000000000..084ceb251 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchiveofourown.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArchiveofourownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#990000'; + + const SiArchiveofourown: IconType = React.forwardRef(function SiArchiveofourown({title = 'Archive of Our Own', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArchiveofourown as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchlinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchlinux.tsx new file mode 100644 index 000000000..5ea9811f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArchlinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArchlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1793D1'; + + const SiArchlinux: IconType = React.forwardRef(function SiArchlinux({title = 'Arch Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArchlinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArdour.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArdour.tsx new file mode 100644 index 000000000..aa848de24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArdour.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArdourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C61C3E'; + + const SiArdour: IconType = React.forwardRef(function SiArdour({title = 'Ardour', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArdour as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArduino.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArduino.tsx new file mode 100644 index 000000000..71a298f72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArduino.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArduinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00878F'; + + const SiArduino: IconType = React.forwardRef(function SiArduino({title = 'Arduino', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArduino as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArgo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArgo.tsx new file mode 100644 index 000000000..ac4304696 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArgo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF7B4D'; + + const SiArgo: IconType = React.forwardRef(function SiArgo({title = 'Argo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArgo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArgos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArgos.tsx new file mode 100644 index 000000000..bcdd81f64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArgos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArgosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA291C'; + + const SiArgos: IconType = React.forwardRef(function SiArgos({title = 'Argos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArgos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAriakit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAriakit.tsx new file mode 100644 index 000000000..505e5b90b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAriakit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAriakitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007ACC'; + + const SiAriakit: IconType = React.forwardRef(function SiAriakit({title = 'Ariakit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAriakit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArkecosystem.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArkecosystem.tsx new file mode 100644 index 000000000..2c8646814 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArkecosystem.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArkecosystemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C9292C'; + + const SiArkecosystem: IconType = React.forwardRef(function SiArkecosystem({title = 'ARK Ecosystem', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArkecosystem as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArlo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArlo.tsx new file mode 100644 index 000000000..76869548b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArlo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#49B48A'; + + const SiArlo: IconType = React.forwardRef(function SiArlo({title = 'Arlo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArlo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArm.tsx new file mode 100644 index 000000000..062250da8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0091BD'; + + const SiArm: IconType = React.forwardRef(function SiArm({title = 'Arm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArmkeil.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArmkeil.tsx new file mode 100644 index 000000000..56237145a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArmkeil.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArmkeilProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#394049'; + + const SiArmkeil: IconType = React.forwardRef(function SiArmkeil({title = 'Arm Keil', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArmkeil as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArstechnica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArstechnica.tsx new file mode 100644 index 000000000..7a81d13a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArstechnica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArstechnicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4E00'; + + const SiArstechnica: IconType = React.forwardRef(function SiArstechnica({title = 'Ars Technica', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArstechnica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtifacthub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtifacthub.tsx new file mode 100644 index 000000000..befef5e9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtifacthub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArtifacthubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#417598'; + + const SiArtifacthub: IconType = React.forwardRef(function SiArtifacthub({title = 'Artifact Hub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArtifacthub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtixlinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtixlinux.tsx new file mode 100644 index 000000000..39fc1b785 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtixlinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArtixlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#10A0CC'; + + const SiArtixlinux: IconType = React.forwardRef(function SiArtixlinux({title = 'Artix Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArtixlinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtstation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtstation.tsx new file mode 100644 index 000000000..d35521e28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArtstation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArtstationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13AFF0'; + + const SiArtstation: IconType = React.forwardRef(function SiArtstation({title = 'ArtStation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArtstation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiArxiv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArxiv.tsx new file mode 100644 index 000000000..261b7b64e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiArxiv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiArxivProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B31B1B'; + + const SiArxiv: IconType = React.forwardRef(function SiArxiv({title = 'arXiv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiArxiv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsahilinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsahilinux.tsx new file mode 100644 index 000000000..cb69497f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsahilinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsahilinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A61200'; + + const SiAsahilinux: IconType = React.forwardRef(function SiAsahilinux({title = 'Asahi Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsahilinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsana.tsx new file mode 100644 index 000000000..90a7ccd18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F06A6A'; + + const SiAsana: IconType = React.forwardRef(function SiAsana({title = 'Asana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsciidoctor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsciidoctor.tsx new file mode 100644 index 000000000..99be4e568 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsciidoctor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsciidoctorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E40046'; + + const SiAsciidoctor: IconType = React.forwardRef(function SiAsciidoctor({title = 'Asciidoctor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsciidoctor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsciinema.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsciinema.tsx new file mode 100644 index 000000000..114be26e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsciinema.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsciinemaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D40000'; + + const SiAsciinema: IconType = React.forwardRef(function SiAsciinema({title = 'asciinema', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsciinema as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsda.tsx new file mode 100644 index 000000000..6426024ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsdaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#68A51C'; + + const SiAsda: IconType = React.forwardRef(function SiAsda({title = 'ASDA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAseprite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAseprite.tsx new file mode 100644 index 000000000..ba57a0211 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAseprite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsepriteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7D929E'; + + const SiAseprite: IconType = React.forwardRef(function SiAseprite({title = 'Aseprite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAseprite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAssemblyscript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAssemblyscript.tsx new file mode 100644 index 000000000..74dee0fb6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAssemblyscript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAssemblyscriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007ACC'; + + const SiAssemblyscript: IconType = React.forwardRef(function SiAssemblyscript({title = 'AssemblyScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAssemblyscript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsterisk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsterisk.tsx new file mode 100644 index 000000000..f83fe0c65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsterisk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsteriskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F68F1E'; + + const SiAsterisk: IconType = React.forwardRef(function SiAsterisk({title = 'Asterisk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsterisk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstonmartin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstonmartin.tsx new file mode 100644 index 000000000..cba187eee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstonmartin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAstonmartinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00665E'; + + const SiAstonmartin: IconType = React.forwardRef(function SiAstonmartin({title = 'Aston Martin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAstonmartin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstra.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstra.tsx new file mode 100644 index 000000000..9c2cae816 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstra.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAstraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C2EDE'; + + const SiAstra: IconType = React.forwardRef(function SiAstra({title = 'Astra', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAstra as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstral.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstral.tsx new file mode 100644 index 000000000..d3b5471fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstral.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAstralProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#261230'; + + const SiAstral: IconType = React.forwardRef(function SiAstral({title = 'Astral', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAstral as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstro.tsx new file mode 100644 index 000000000..f18113591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAstro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAstroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BC52EE'; + + const SiAstro: IconType = React.forwardRef(function SiAstro({title = 'Astro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAstro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsus.tsx new file mode 100644 index 000000000..1e892e2e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAsus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAsusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAsus: IconType = React.forwardRef(function SiAsus({title = 'ASUS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAsus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtandt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtandt.tsx new file mode 100644 index 000000000..c9811c564 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtandt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAtandtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009FDB'; + + const SiAtandt: IconType = React.forwardRef(function SiAtandt({title = 'AT&T', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAtandt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtari.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtari.tsx new file mode 100644 index 000000000..1bfe97141 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtari.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAtariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E4202E'; + + const SiAtari: IconType = React.forwardRef(function SiAtari({title = 'Atari', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAtari as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtlasos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtlasos.tsx new file mode 100644 index 000000000..f9002b35c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtlasos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAtlasosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A91FF'; + + const SiAtlasos: IconType = React.forwardRef(function SiAtlasos({title = 'AtlasOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAtlasos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtlassian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtlassian.tsx new file mode 100644 index 000000000..d1bde214f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAtlassian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAtlassianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiAtlassian: IconType = React.forwardRef(function SiAtlassian({title = 'Atlassian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAtlassian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuchan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuchan.tsx new file mode 100644 index 000000000..4e83a17fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuchan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAuchanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D6180B'; + + const SiAuchan: IconType = React.forwardRef(function SiAuchan({title = 'Auchan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAuchan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudacity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudacity.tsx new file mode 100644 index 000000000..abac8a1a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudacity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudacityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0000CC'; + + const SiAudacity: IconType = React.forwardRef(function SiAudacity({title = 'Audacity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudacity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudi.tsx new file mode 100644 index 000000000..00620ab44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BB0A30'; + + const SiAudi: IconType = React.forwardRef(function SiAudi({title = 'Audi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudible.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudible.tsx new file mode 100644 index 000000000..a19d1427b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudible.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudibleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F8991C'; + + const SiAudible: IconType = React.forwardRef(function SiAudible({title = 'Audible', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudible as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiobookshelf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiobookshelf.tsx new file mode 100644 index 000000000..4bcc87d42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiobookshelf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudiobookshelfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#82612C'; + + const SiAudiobookshelf: IconType = React.forwardRef(function SiAudiobookshelf({title = 'Audiobookshelf', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudiobookshelf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudioboom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudioboom.tsx new file mode 100644 index 000000000..23266ff9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudioboom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudioboomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007CE2'; + + const SiAudioboom: IconType = React.forwardRef(function SiAudioboom({title = 'Audioboom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudioboom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiomack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiomack.tsx new file mode 100644 index 000000000..3f49781ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiomack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudiomackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA200'; + + const SiAudiomack: IconType = React.forwardRef(function SiAudiomack({title = 'Audiomack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudiomack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiotechnica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiotechnica.tsx new file mode 100644 index 000000000..abadc9e19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAudiotechnica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAudiotechnicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAudiotechnica: IconType = React.forwardRef(function SiAudiotechnica({title = 'Audio-Technica', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAudiotechnica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAurelia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAurelia.tsx new file mode 100644 index 000000000..bbc6fea10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAurelia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAureliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED2B88'; + + const SiAurelia: IconType = React.forwardRef(function SiAurelia({title = 'Aurelia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAurelia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutentique.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutentique.tsx new file mode 100644 index 000000000..70314852d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutentique.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutentiqueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3379F2'; + + const SiAutentique: IconType = React.forwardRef(function SiAutentique({title = 'Autentique', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutentique as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuth0.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuth0.tsx new file mode 100644 index 000000000..f31f30e79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuth0.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAuth0Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB5424'; + + const SiAuth0: IconType = React.forwardRef(function SiAuth0({title = 'Auth0', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAuth0 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuthelia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuthelia.tsx new file mode 100644 index 000000000..65961b4be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuthelia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutheliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#113155'; + + const SiAuthelia: IconType = React.forwardRef(function SiAuthelia({title = 'Authelia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAuthelia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuthentik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuthentik.tsx new file mode 100644 index 000000000..4a110ac0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAuthentik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAuthentikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD4B2D'; + + const SiAuthentik: IconType = React.forwardRef(function SiAuthentik({title = 'Authentik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAuthentik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutocad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutocad.tsx new file mode 100644 index 000000000..02fb63451 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutocad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutocadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E51050'; + + const SiAutocad: IconType = React.forwardRef(function SiAutocad({title = 'AutoCAD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutocad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutocannon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutocannon.tsx new file mode 100644 index 000000000..5b2a4f939 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutocannon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutocannonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3BA4B7'; + + const SiAutocannon: IconType = React.forwardRef(function SiAutocannon({title = 'AutoCannon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutocannon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodesk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodesk.tsx new file mode 100644 index 000000000..6aeb6f1d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodesk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutodeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiAutodesk: IconType = React.forwardRef(function SiAutodesk({title = 'Autodesk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutodesk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodeskmaya.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodeskmaya.tsx new file mode 100644 index 000000000..25a07bc11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodeskmaya.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutodeskmayaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#37A5CC'; + + const SiAutodeskmaya: IconType = React.forwardRef(function SiAutodeskmaya({title = 'Autodesk Maya', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutodeskmaya as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodeskrevit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodeskrevit.tsx new file mode 100644 index 000000000..695066a31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutodeskrevit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutodeskrevitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#186BFF'; + + const SiAutodeskrevit: IconType = React.forwardRef(function SiAutodeskrevit({title = 'Autodesk Revit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutodeskrevit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutohotkey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutohotkey.tsx new file mode 100644 index 000000000..8a2159bc8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutohotkey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutohotkeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#334455'; + + const SiAutohotkey: IconType = React.forwardRef(function SiAutohotkey({title = 'AutoHotkey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutohotkey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutoit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutoit.tsx new file mode 100644 index 000000000..2d3f40662 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutoit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutoitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5D83AC'; + + const SiAutoit: IconType = React.forwardRef(function SiAutoit({title = 'AutoIt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutoit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutomattic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutomattic.tsx new file mode 100644 index 000000000..ccb2579df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutomattic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutomatticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3499CD'; + + const SiAutomattic: IconType = React.forwardRef(function SiAutomattic({title = 'Automattic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutomattic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutoprefixer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutoprefixer.tsx new file mode 100644 index 000000000..ec69ac92e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutoprefixer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutoprefixerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD3735'; + + const SiAutoprefixer: IconType = React.forwardRef(function SiAutoprefixer({title = 'Autoprefixer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutoprefixer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutozone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutozone.tsx new file mode 100644 index 000000000..7df9a570f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAutozone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAutozoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D52B1E'; + + const SiAutozone: IconType = React.forwardRef(function SiAutozone({title = 'AutoZone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAutozone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvajs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvajs.tsx new file mode 100644 index 000000000..3d8966559 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvajs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAvajsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B4B77'; + + const SiAvajs: IconType = React.forwardRef(function SiAvajs({title = 'avajs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAvajs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvaloniaui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvaloniaui.tsx new file mode 100644 index 000000000..f95ebb854 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvaloniaui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAvaloniauiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#165BFF'; + + const SiAvaloniaui: IconType = React.forwardRef(function SiAvaloniaui({title = 'AvaloniaUI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAvaloniaui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvast.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvast.tsx new file mode 100644 index 000000000..2c7c7acfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvast.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAvastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7800'; + + const SiAvast: IconType = React.forwardRef(function SiAvast({title = 'Avast', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAvast as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvianca.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvianca.tsx new file mode 100644 index 000000000..19721c104 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvianca.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAviancaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiAvianca: IconType = React.forwardRef(function SiAvianca({title = 'avianca', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAvianca as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvira.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvira.tsx new file mode 100644 index 000000000..d5a9fd45c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvira.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAviraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E02027'; + + const SiAvira: IconType = React.forwardRef(function SiAvira({title = 'Avira', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAvira as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvm.tsx new file mode 100644 index 000000000..89b71ef41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAvm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAvmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E2001A'; + + const SiAvm: IconType = React.forwardRef(function SiAvm({title = 'AVM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAvm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwesomelists.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwesomelists.tsx new file mode 100644 index 000000000..cdb21e7d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwesomelists.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAwesomelistsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC60A8'; + + const SiAwesomelists: IconType = React.forwardRef(function SiAwesomelists({title = 'Awesome Lists', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAwesomelists as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwesomewm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwesomewm.tsx new file mode 100644 index 000000000..0a9494e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwesomewm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAwesomewmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#535D6C'; + + const SiAwesomewm: IconType = React.forwardRef(function SiAwesomewm({title = 'awesomeWM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAwesomewm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwwwards.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwwwards.tsx new file mode 100644 index 000000000..5a7e6ea86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAwwwards.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAwwwardsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const SiAwwwards: IconType = React.forwardRef(function SiAwwwards({title = 'Awwwards', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAwwwards as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAxios.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAxios.tsx new file mode 100644 index 000000000..18c3ac313 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAxios.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAxiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A29E4'; + + const SiAxios: IconType = React.forwardRef(function SiAxios({title = 'Axios', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAxios as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiAxisbank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAxisbank.tsx new file mode 100644 index 000000000..f4970ac50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiAxisbank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiAxisbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#971A4D'; + + const SiAxisbank: IconType = React.forwardRef(function SiAxisbank({title = 'Axis Bank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiAxisbank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiB4x.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiB4x.tsx new file mode 100644 index 000000000..b9f9fe59b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiB4x.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiB4xProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14AECB'; + + const SiB4x: IconType = React.forwardRef(function SiB4x({title = 'B4X', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiB4x as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabel.tsx new file mode 100644 index 000000000..9dc72c85c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBabelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9DC3E'; + + const SiBabel: IconType = React.forwardRef(function SiBabel({title = 'Babel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBabel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabelio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabelio.tsx new file mode 100644 index 000000000..750266d52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabelio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBabelioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBB91E'; + + const SiBabelio: IconType = React.forwardRef(function SiBabelio({title = 'Babelio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBabelio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabylondotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabylondotjs.tsx new file mode 100644 index 000000000..40a70f188 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBabylondotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBabylondotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BB464B'; + + const SiBabylondotjs: IconType = React.forwardRef(function SiBabylondotjs({title = 'Babylon.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBabylondotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackblaze.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackblaze.tsx new file mode 100644 index 000000000..90d112b4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackblaze.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBackblazeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E21E29'; + + const SiBackblaze: IconType = React.forwardRef(function SiBackblaze({title = 'Backblaze', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBackblaze as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackbone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackbone.tsx new file mode 100644 index 000000000..5a3ba691b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackbone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBackboneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBackbone: IconType = React.forwardRef(function SiBackbone({title = 'Backbone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBackbone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackbonedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackbonedotjs.tsx new file mode 100644 index 000000000..3fd37d142 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackbonedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBackbonedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0071B5'; + + const SiBackbonedotjs: IconType = React.forwardRef(function SiBackbonedotjs({title = 'Backbone.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBackbonedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackendless.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackendless.tsx new file mode 100644 index 000000000..c530e8f25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackendless.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBackendlessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D77BD'; + + const SiBackendless: IconType = React.forwardRef(function SiBackendless({title = 'Backendless', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBackendless as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackstage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackstage.tsx new file mode 100644 index 000000000..d8b525270 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackstage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBackstageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9BF0E1'; + + const SiBackstage: IconType = React.forwardRef(function SiBackstage({title = 'Backstage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBackstage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackstageCasting.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackstageCasting.tsx new file mode 100644 index 000000000..13140acb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBackstageCasting.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBackstageCastingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBackstageCasting: IconType = React.forwardRef(function SiBackstageCasting({title = 'Backstage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBackstageCasting as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBadoo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBadoo.tsx new file mode 100644 index 000000000..8bd2c6075 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBadoo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBadooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#783BF9'; + + const SiBadoo: IconType = React.forwardRef(function SiBadoo({title = 'Badoo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBadoo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaidu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaidu.tsx new file mode 100644 index 000000000..0606f48e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaidu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBaiduProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2932E1'; + + const SiBaidu: IconType = React.forwardRef(function SiBaidu({title = 'Baidu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBaidu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBakalari.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBakalari.tsx new file mode 100644 index 000000000..76824dc89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBakalari.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBakalariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A2E2'; + + const SiBakalari: IconType = React.forwardRef(function SiBakalari({title = 'Bakaláři', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBakalari as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBamboo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBamboo.tsx new file mode 100644 index 000000000..f41307dff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBamboo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBambooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiBamboo: IconType = React.forwardRef(function SiBamboo({title = 'Bamboo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBamboo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBambulab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBambulab.tsx new file mode 100644 index 000000000..c42db213d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBambulab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBambulabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AE42'; + + const SiBambulab: IconType = React.forwardRef(function SiBambulab({title = 'Bambu Lab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBambulab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandcamp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandcamp.tsx new file mode 100644 index 000000000..344dec726 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandcamp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBandcampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#408294'; + + const SiBandcamp: IconType = React.forwardRef(function SiBandcamp({title = 'Bandcamp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBandcamp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandlab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandlab.tsx new file mode 100644 index 000000000..973528798 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandlab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBandlabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F12C18'; + + const SiBandlab: IconType = React.forwardRef(function SiBandlab({title = 'BandLab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBandlab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandrautomation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandrautomation.tsx new file mode 100644 index 000000000..b49d82bb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandrautomation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBandrautomationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8800'; + + const SiBandrautomation: IconType = React.forwardRef(function SiBandrautomation({title = 'B&R Automation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBandrautomation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandsintown.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandsintown.tsx new file mode 100644 index 000000000..f76094cdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBandsintown.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBandsintownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CEC8'; + + const SiBandsintown: IconType = React.forwardRef(function SiBandsintown({title = 'Bandsintown', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBandsintown as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBankofamerica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBankofamerica.tsx new file mode 100644 index 000000000..49145cb61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBankofamerica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBankofamericaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#012169'; + + const SiBankofamerica: IconType = React.forwardRef(function SiBankofamerica({title = 'Bank of America', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBankofamerica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBarclays.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBarclays.tsx new file mode 100644 index 000000000..8bf2f17c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBarclays.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBarclaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AEEF'; + + const SiBarclays: IconType = React.forwardRef(function SiBarclays({title = 'Barclays', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBarclays as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaremetrics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaremetrics.tsx new file mode 100644 index 000000000..4212895ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaremetrics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBaremetricsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6078FF'; + + const SiBaremetrics: IconType = React.forwardRef(function SiBaremetrics({title = 'Baremetrics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBaremetrics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBarmenia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBarmenia.tsx new file mode 100644 index 000000000..f2e1b6eff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBarmenia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBarmeniaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009FE3'; + + const SiBarmenia: IconType = React.forwardRef(function SiBarmenia({title = 'Barmenia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBarmenia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBasecamp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBasecamp.tsx new file mode 100644 index 000000000..d6dd930c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBasecamp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBasecampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D2D35'; + + const SiBasecamp: IconType = React.forwardRef(function SiBasecamp({title = 'Basecamp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBasecamp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaserow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaserow.tsx new file mode 100644 index 000000000..784897398 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBaserow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBaserowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5190EF'; + + const SiBaserow: IconType = React.forwardRef(function SiBaserow({title = 'Baserow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBaserow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBasicattentiontoken.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBasicattentiontoken.tsx new file mode 100644 index 000000000..0f04ecd2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBasicattentiontoken.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBasicattentiontokenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#80247B'; + + const SiBasicattentiontoken: IconType = React.forwardRef(function SiBasicattentiontoken({title = 'Basic Attention Token', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBasicattentiontoken as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBastyon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBastyon.tsx new file mode 100644 index 000000000..49b770deb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBastyon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBastyonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A4FF'; + + const SiBastyon: IconType = React.forwardRef(function SiBastyon({title = 'Bastyon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBastyon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBat.tsx new file mode 100644 index 000000000..5cbf51a04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#31369E'; + + const SiBat: IconType = React.forwardRef(function SiBat({title = 'bat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBata.tsx new file mode 100644 index 000000000..2a1985e89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD282E'; + + const SiBata: IconType = React.forwardRef(function SiBata({title = 'Bata', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBattledotnet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBattledotnet.tsx new file mode 100644 index 000000000..13c4ce970 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBattledotnet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBattledotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4381C3'; + + const SiBattledotnet: IconType = React.forwardRef(function SiBattledotnet({title = 'Battle.net', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBattledotnet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBazel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBazel.tsx new file mode 100644 index 000000000..b008a0fa3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBazel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBazelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#43A047'; + + const SiBazel: IconType = React.forwardRef(function SiBazel({title = 'Bazel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBazel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatport.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatport.tsx new file mode 100644 index 000000000..5a86bc639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatport.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBeatportProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#01FF95'; + + const SiBeatport: IconType = React.forwardRef(function SiBeatport({title = 'Beatport', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBeatport as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeats.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeats.tsx new file mode 100644 index 000000000..426f5e8e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeats.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBeatsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiBeats: IconType = React.forwardRef(function SiBeats({title = 'Beats', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBeats as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatsbydre.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatsbydre.tsx new file mode 100644 index 000000000..4bf4331c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatsbydre.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBeatsbydreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E01F3D'; + + const SiBeatsbydre: IconType = React.forwardRef(function SiBeatsbydre({title = 'Beats by Dre', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBeatsbydre as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatstars.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatstars.tsx new file mode 100644 index 000000000..70cffd538 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeatstars.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBeatstarsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB0000'; + + const SiBeatstars: IconType = React.forwardRef(function SiBeatstars({title = 'BeatStars', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBeatstars as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeekeeperstudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeekeeperstudio.tsx new file mode 100644 index 000000000..01fb9cf32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeekeeperstudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBeekeeperstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAD83B'; + + const SiBeekeeperstudio: IconType = React.forwardRef(function SiBeekeeperstudio({title = 'Beekeeper Studio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBeekeeperstudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBehance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBehance.tsx new file mode 100644 index 000000000..d0cab3b86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBehance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBehanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1769FF'; + + const SiBehance: IconType = React.forwardRef(function SiBehance({title = 'Behance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBehance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeijingsubway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeijingsubway.tsx new file mode 100644 index 000000000..f4951cb15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBeijingsubway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBeijingsubwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004A9D'; + + const SiBeijingsubway: IconType = React.forwardRef(function SiBeijingsubway({title = 'Beijing Subway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBeijingsubway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBem.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBem.tsx new file mode 100644 index 000000000..c8ba45171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBem.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBem: IconType = React.forwardRef(function SiBem({title = 'BEM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBem as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentley.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentley.tsx new file mode 100644 index 000000000..5276c0f63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentley.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBentleyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiBentley: IconType = React.forwardRef(function SiBentley({title = 'Bentley', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBentley as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBento.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBento.tsx new file mode 100644 index 000000000..e6b30e431 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBento.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBentoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#768CFF'; + + const SiBento: IconType = React.forwardRef(function SiBento({title = 'Bento', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBento as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentobox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentobox.tsx new file mode 100644 index 000000000..0d00c3348 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentobox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBentoboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15541'; + + const SiBentobox: IconType = React.forwardRef(function SiBentobox({title = 'BentoBox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBentobox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentoml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentoml.tsx new file mode 100644 index 000000000..fc6c65565 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBentoml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBentomlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBentoml: IconType = React.forwardRef(function SiBentoml({title = 'BentoML', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBentoml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBereal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBereal.tsx new file mode 100644 index 000000000..3069a0411 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBereal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBerealProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBereal: IconType = React.forwardRef(function SiBereal({title = 'BeReal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBereal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetfair.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetfair.tsx new file mode 100644 index 000000000..93e617171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetfair.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBetfairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB80B'; + + const SiBetfair: IconType = React.forwardRef(function SiBetfair({title = 'Betfair', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBetfair as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterauth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterauth.tsx new file mode 100644 index 000000000..8d013596f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterauth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBetterauthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiBetterauth: IconType = React.forwardRef(function SiBetterauth({title = 'Better Auth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBetterauth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterdiscord.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterdiscord.tsx new file mode 100644 index 000000000..71855be4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterdiscord.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBetterdiscordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3E82E5'; + + const SiBetterdiscord: IconType = React.forwardRef(function SiBetterdiscord({title = 'BetterDiscord', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBetterdiscord as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterstack.tsx new file mode 100644 index 000000000..4151ff311 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBetterstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBetterstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBetterstack: IconType = React.forwardRef(function SiBetterstack({title = 'Better Stack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBetterstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBevy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBevy.tsx new file mode 100644 index 000000000..a48ce374a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBevy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBevyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#232326'; + + const SiBevy: IconType = React.forwardRef(function SiBevy({title = 'Bevy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBevy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigbasket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigbasket.tsx new file mode 100644 index 000000000..71c5d0c9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigbasket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBigbasketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A5CD39'; + + const SiBigbasket: IconType = React.forwardRef(function SiBigbasket({title = 'bigbasket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBigbasket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigbluebutton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigbluebutton.tsx new file mode 100644 index 000000000..7ec9e1cab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigbluebutton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBigbluebuttonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#283274'; + + const SiBigbluebutton: IconType = React.forwardRef(function SiBigbluebutton({title = 'BigBlueButton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBigbluebutton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigcartel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigcartel.tsx new file mode 100644 index 000000000..8da189d29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigcartel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBigcartelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const SiBigcartel: IconType = React.forwardRef(function SiBigcartel({title = 'Big Cartel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBigcartel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigcommerce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigcommerce.tsx new file mode 100644 index 000000000..5101599c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBigcommerce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBigcommerceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#121118'; + + const SiBigcommerce: IconType = React.forwardRef(function SiBigcommerce({title = 'BigCommerce', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBigcommerce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBilibili.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBilibili.tsx new file mode 100644 index 000000000..f91395e76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBilibili.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBilibiliProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A1D6'; + + const SiBilibili: IconType = React.forwardRef(function SiBilibili({title = 'Bilibili', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBilibili as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBillboard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBillboard.tsx new file mode 100644 index 000000000..ce9222bee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBillboard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBillboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBillboard: IconType = React.forwardRef(function SiBillboard({title = 'Billboard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBillboard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBim.tsx new file mode 100644 index 000000000..13c949f8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB1928'; + + const SiBim: IconType = React.forwardRef(function SiBim({title = 'BIM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBinance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBinance.tsx new file mode 100644 index 000000000..5057dd7ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBinance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBinanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0B90B'; + + const SiBinance: IconType = React.forwardRef(function SiBinance({title = 'Binance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBinance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBioconductor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBioconductor.tsx new file mode 100644 index 000000000..67a5e5fa1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBioconductor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBioconductorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A81C2'; + + const SiBioconductor: IconType = React.forwardRef(function SiBioconductor({title = 'Bioconductor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBioconductor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBiolink.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBiolink.tsx new file mode 100644 index 000000000..ca3d3cfc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBiolink.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBiolinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBiolink: IconType = React.forwardRef(function SiBiolink({title = 'Bio Link', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBiolink as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBiome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBiome.tsx new file mode 100644 index 000000000..8ffd527e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBiome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBiomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#60A5FA'; + + const SiBiome: IconType = React.forwardRef(function SiBiome({title = 'Biome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBiome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBisecthosting.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBisecthosting.tsx new file mode 100644 index 000000000..e1b88db96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBisecthosting.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBisecthostingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D1129'; + + const SiBisecthosting: IconType = React.forwardRef(function SiBisecthosting({title = 'BisectHosting', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBisecthosting as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBit.tsx new file mode 100644 index 000000000..f8ce962c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#592EC1'; + + const SiBit: IconType = React.forwardRef(function SiBit({title = 'Bit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitbucket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitbucket.tsx new file mode 100644 index 000000000..827a6ba94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitbucket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitbucketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiBitbucket: IconType = React.forwardRef(function SiBitbucket({title = 'Bitbucket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitbucket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoin.tsx new file mode 100644 index 000000000..dfa6748ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitcoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7931A'; + + const SiBitcoin: IconType = React.forwardRef(function SiBitcoin({title = 'Bitcoin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitcoin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoincash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoincash.tsx new file mode 100644 index 000000000..b28ef5c74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoincash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitcoincashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0AC18E'; + + const SiBitcoincash: IconType = React.forwardRef(function SiBitcoincash({title = 'Bitcoin Cash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitcoincash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoinsv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoinsv.tsx new file mode 100644 index 000000000..6d22ddf65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcoinsv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitcoinsvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EAB300'; + + const SiBitcoinsv: IconType = React.forwardRef(function SiBitcoinsv({title = 'Bitcoin SV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitcoinsv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcomet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcomet.tsx new file mode 100644 index 000000000..185abf7e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitcomet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitcometProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F49923'; + + const SiBitcomet: IconType = React.forwardRef(function SiBitcomet({title = 'BitComet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitcomet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitdefender.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitdefender.tsx new file mode 100644 index 000000000..4bce5f160 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitdefender.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitdefenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiBitdefender: IconType = React.forwardRef(function SiBitdefender({title = 'Bitdefender', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitdefender as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitly.tsx new file mode 100644 index 000000000..290006e4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE6123'; + + const SiBitly: IconType = React.forwardRef(function SiBitly({title = 'Bitly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitrise.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitrise.tsx new file mode 100644 index 000000000..e87e9a1b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitrise.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitriseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#683D87'; + + const SiBitrise: IconType = React.forwardRef(function SiBitrise({title = 'Bitrise', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitrise as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitsy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitsy.tsx new file mode 100644 index 000000000..bffcacb9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitsy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitsyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6767B2'; + + const SiBitsy: IconType = React.forwardRef(function SiBitsy({title = 'Bitsy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitsy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBittorrent.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBittorrent.tsx new file mode 100644 index 000000000..bb47c8b74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBittorrent.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBittorrentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#050505'; + + const SiBittorrent: IconType = React.forwardRef(function SiBittorrent({title = 'BitTorrent', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBittorrent as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitwarden.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitwarden.tsx new file mode 100644 index 000000000..a1badd63d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitwarden.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitwardenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#175DDC'; + + const SiBitwarden: IconType = React.forwardRef(function SiBitwarden({title = 'Bitwarden', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitwarden as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitwig.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitwig.tsx new file mode 100644 index 000000000..3b86c6092 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBitwig.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBitwigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5A00'; + + const SiBitwig: IconType = React.forwardRef(function SiBitwig({title = 'Bitwig', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBitwig as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlack.tsx new file mode 100644 index 000000000..e4b70b1d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBlack: IconType = React.forwardRef(function SiBlack({title = 'Black', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlackberry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlackberry.tsx new file mode 100644 index 000000000..0ee4b2202 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlackberry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlackberryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBlackberry: IconType = React.forwardRef(function SiBlackberry({title = 'Blackberry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlackberry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlackmagicdesign.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlackmagicdesign.tsx new file mode 100644 index 000000000..8c3d8e40a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlackmagicdesign.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlackmagicdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA200'; + + const SiBlackmagicdesign: IconType = React.forwardRef(function SiBlackmagicdesign({title = 'Blackmagic Design', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlackmagicdesign as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlazemeter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlazemeter.tsx new file mode 100644 index 000000000..661a9a81e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlazemeter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlazemeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CA2133'; + + const SiBlazemeter: IconType = React.forwardRef(function SiBlazemeter({title = 'Blazemeter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlazemeter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlazor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlazor.tsx new file mode 100644 index 000000000..846e6ffe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlazor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlazorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#512BD4'; + + const SiBlazor: IconType = React.forwardRef(function SiBlazor({title = 'Blazor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlazor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlender.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlender.tsx new file mode 100644 index 000000000..8e11929b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlender.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E87D0D'; + + const SiBlender: IconType = React.forwardRef(function SiBlender({title = 'Blender', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlender as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlibli.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlibli.tsx new file mode 100644 index 000000000..4cc1ac93d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlibli.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlibliProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0072FF'; + + const SiBlibli: IconType = React.forwardRef(function SiBlibli({title = 'Blibli', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlibli as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlockbench.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlockbench.tsx new file mode 100644 index 000000000..11bb5a951 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlockbench.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlockbenchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E93D9'; + + const SiBlockbench: IconType = React.forwardRef(function SiBlockbench({title = 'Blockbench', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlockbench as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlockchaindotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlockchaindotcom.tsx new file mode 100644 index 000000000..89ed54fd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlockchaindotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlockchaindotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#121D33'; + + const SiBlockchaindotcom: IconType = React.forwardRef(function SiBlockchaindotcom({title = 'Blockchain.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlockchaindotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlogger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlogger.tsx new file mode 100644 index 000000000..af2151af5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlogger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBloggerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5722'; + + const SiBlogger: IconType = React.forwardRef(function SiBlogger({title = 'Blogger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlogger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBloglovin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBloglovin.tsx new file mode 100644 index 000000000..878b3b82c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBloglovin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBloglovinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBloglovin: IconType = React.forwardRef(function SiBloglovin({title = 'Bloglovin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBloglovin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlueprint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlueprint.tsx new file mode 100644 index 000000000..471406c92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBlueprint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlueprintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#137CBD'; + + const SiBlueprint: IconType = React.forwardRef(function SiBlueprint({title = 'Blueprint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBlueprint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluesky.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluesky.tsx new file mode 100644 index 000000000..8af76a646 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluesky.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBlueskyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1185FE'; + + const SiBluesky: IconType = React.forwardRef(function SiBluesky({title = 'Bluesky', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBluesky as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluesound.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluesound.tsx new file mode 100644 index 000000000..d464278eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluesound.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBluesoundProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0F131E'; + + const SiBluesound: IconType = React.forwardRef(function SiBluesound({title = 'Bluesound', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBluesound as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluetooth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluetooth.tsx new file mode 100644 index 000000000..4d7036f73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBluetooth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBluetoothProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0082FC'; + + const SiBluetooth: IconType = React.forwardRef(function SiBluetooth({title = 'Bluetooth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBluetooth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBmcsoftware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBmcsoftware.tsx new file mode 100644 index 000000000..9f0fca4aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBmcsoftware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBmcsoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE5000'; + + const SiBmcsoftware: IconType = React.forwardRef(function SiBmcsoftware({title = 'BMC Software', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBmcsoftware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBmw.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBmw.tsx new file mode 100644 index 000000000..76f47cd4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBmw.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBmwProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066B1'; + + const SiBmw: IconType = React.forwardRef(function SiBmw({title = 'BMW', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBmw as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBnbchain.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBnbchain.tsx new file mode 100644 index 000000000..c0dcbb671 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBnbchain.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBnbchainProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0B90B'; + + const SiBnbchain: IconType = React.forwardRef(function SiBnbchain({title = 'BNB Chain', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBnbchain as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoardgamegeek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoardgamegeek.tsx new file mode 100644 index 000000000..b78b7c222 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoardgamegeek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoardgamegeekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5100'; + + const SiBoardgamegeek: IconType = React.forwardRef(function SiBoardgamegeek({title = 'BoardGameGeek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoardgamegeek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoat.tsx new file mode 100644 index 000000000..13096e5b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E20722'; + + const SiBoat: IconType = React.forwardRef(function SiBoat({title = 'boAt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoehringeringelheim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoehringeringelheim.tsx new file mode 100644 index 000000000..f4041e329 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoehringeringelheim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoehringeringelheimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00E47C'; + + const SiBoehringeringelheim: IconType = React.forwardRef(function SiBoehringeringelheim({title = 'Boehringer Ingelheim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoehringeringelheim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoeing.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoeing.tsx new file mode 100644 index 000000000..57ff2e3e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoeing.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoeingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D439C'; + + const SiBoeing: IconType = React.forwardRef(function SiBoeing({title = 'Boeing', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoeing as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBohemiainteractive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBohemiainteractive.tsx new file mode 100644 index 000000000..07e32bbab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBohemiainteractive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBohemiainteractiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6BA539'; + + const SiBohemiainteractive: IconType = React.forwardRef(function SiBohemiainteractive({title = 'Bohemia Interactive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBohemiainteractive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBombardier.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBombardier.tsx new file mode 100644 index 000000000..c775597e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBombardier.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBombardierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBombardier: IconType = React.forwardRef(function SiBombardier({title = 'Bombardier', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBombardier as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookalope.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookalope.tsx new file mode 100644 index 000000000..112cd7e82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookalope.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBookalopeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC2829'; + + const SiBookalope: IconType = React.forwardRef(function SiBookalope({title = 'Bookalope', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBookalope as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookbub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookbub.tsx new file mode 100644 index 000000000..395c14a3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookbub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBookbubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F44336'; + + const SiBookbub: IconType = React.forwardRef(function SiBookbub({title = 'BookBub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBookbub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookingdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookingdotcom.tsx new file mode 100644 index 000000000..b02c1e6c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookingdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBookingdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003A9A'; + + const SiBookingdotcom: IconType = React.forwardRef(function SiBookingdotcom({title = 'Booking.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBookingdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookmeter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookmeter.tsx new file mode 100644 index 000000000..80dcd4d8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookmeter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBookmeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#64BC4B'; + + const SiBookmeter: IconType = React.forwardRef(function SiBookmeter({title = 'Bookmeter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBookmeter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookmyshow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookmyshow.tsx new file mode 100644 index 000000000..f37dc1f9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookmyshow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBookmyshowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C4242B'; + + const SiBookmyshow: IconType = React.forwardRef(function SiBookmyshow({title = 'BookMyShow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBookmyshow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookstack.tsx new file mode 100644 index 000000000..e697d1d87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBookstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBookstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0288D1'; + + const SiBookstack: IconType = React.forwardRef(function SiBookstack({title = 'BookStack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBookstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoost.tsx new file mode 100644 index 000000000..aa41ffdaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7901E'; + + const SiBoost: IconType = React.forwardRef(function SiBoost({title = 'Boost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoosty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoosty.tsx new file mode 100644 index 000000000..9fb170ce8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoosty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoostyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15F2C'; + + const SiBoosty: IconType = React.forwardRef(function SiBoosty({title = 'Boosty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoosty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoots.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoots.tsx new file mode 100644 index 000000000..2da63d19b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoots.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBootsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05054B'; + + const SiBoots: IconType = React.forwardRef(function SiBoots({title = 'Boots', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoots as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBootstrap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBootstrap.tsx new file mode 100644 index 000000000..4e26405f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBootstrap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBootstrapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7952B3'; + + const SiBootstrap: IconType = React.forwardRef(function SiBootstrap({title = 'Bootstrap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBootstrap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBorgbackup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBorgbackup.tsx new file mode 100644 index 000000000..22b5ef806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBorgbackup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBorgbackupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00DD00'; + + const SiBorgbackup: IconType = React.forwardRef(function SiBorgbackup({title = 'BorgBackup', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBorgbackup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBosch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBosch.tsx new file mode 100644 index 000000000..cad1dd335 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBosch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoschProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA0016'; + + const SiBosch: IconType = React.forwardRef(function SiBosch({title = 'Bosch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBosch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBose.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBose.tsx new file mode 100644 index 000000000..70797a1d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBose.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBose: IconType = React.forwardRef(function SiBose({title = 'Bose', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBose as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBotblecms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBotblecms.tsx new file mode 100644 index 000000000..88b25cb79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBotblecms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBotblecmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#205081'; + + const SiBotblecms: IconType = React.forwardRef(function SiBotblecms({title = 'Botble CMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBotblecms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoulanger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoulanger.tsx new file mode 100644 index 000000000..96a909917 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoulanger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoulangerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD5300'; + + const SiBoulanger: IconType = React.forwardRef(function SiBoulanger({title = 'boulanger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoulanger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBower.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBower.tsx new file mode 100644 index 000000000..18eb40762 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBower.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF5734'; + + const SiBower: IconType = React.forwardRef(function SiBower({title = 'Bower', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBower as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBox.tsx new file mode 100644 index 000000000..3c12ac884 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0061D5'; + + const SiBox: IconType = React.forwardRef(function SiBox({title = 'Box', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoxysvg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoxysvg.tsx new file mode 100644 index 000000000..f16e5de79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBoxysvg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBoxysvgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3584E3'; + + const SiBoxysvg: IconType = React.forwardRef(function SiBoxysvg({title = 'Boxy SVG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBoxysvg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBraintree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBraintree.tsx new file mode 100644 index 000000000..467d8f50d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBraintree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBraintreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBraintree: IconType = React.forwardRef(function SiBraintree({title = 'Braintree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBraintree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBraintrust.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBraintrust.tsx new file mode 100644 index 000000000..a1d03d51d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBraintrust.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBraintrustProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBraintrust: IconType = React.forwardRef(function SiBraintrust({title = 'Braintrust', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBraintrust as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrandfetch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrandfetch.tsx new file mode 100644 index 000000000..620ab2a71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrandfetch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBrandfetchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0084FF'; + + const SiBrandfetch: IconType = React.forwardRef(function SiBrandfetch({title = 'Brandfetch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBrandfetch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrandfolder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrandfolder.tsx new file mode 100644 index 000000000..f4400e562 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrandfolder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBrandfolderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40D1F5'; + + const SiBrandfolder: IconType = React.forwardRef(function SiBrandfolder({title = 'Brandfolder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBrandfolder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrave.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrave.tsx new file mode 100644 index 000000000..b86afc834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrave.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBraveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB542B'; + + const SiBrave: IconType = React.forwardRef(function SiBrave({title = 'Brave', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBrave as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBreaker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBreaker.tsx new file mode 100644 index 000000000..2b285c0fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBreaker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBreakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003DAD'; + + const SiBreaker: IconType = React.forwardRef(function SiBreaker({title = 'Breaker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBreaker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrenntag.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrenntag.tsx new file mode 100644 index 000000000..407154f09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrenntag.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBrenntagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A0033'; + + const SiBrenntag: IconType = React.forwardRef(function SiBrenntag({title = 'Brenntag', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBrenntag as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrevo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrevo.tsx new file mode 100644 index 000000000..486132b90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrevo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBrevoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B996E'; + + const SiBrevo: IconType = React.forwardRef(function SiBrevo({title = 'Brevo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBrevo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrex.tsx new file mode 100644 index 000000000..af65ee604 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBrex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBrexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiBrex: IconType = React.forwardRef(function SiBrex({title = 'Brex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBrex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBricks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBricks.tsx new file mode 100644 index 000000000..97ebfddab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBricks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBricksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD54D'; + + const SiBricks: IconType = React.forwardRef(function SiBricks({title = 'Bricks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBricks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBritishairways.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBritishairways.tsx new file mode 100644 index 000000000..9facaa371 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBritishairways.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBritishairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E5C99'; + + const SiBritishairways: IconType = React.forwardRef(function SiBritishairways({title = 'British Airways', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBritishairways as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBroadcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBroadcom.tsx new file mode 100644 index 000000000..de2232553 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBroadcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBroadcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E31837'; + + const SiBroadcom: IconType = React.forwardRef(function SiBroadcom({title = 'Broadcom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBroadcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBruno.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBruno.tsx new file mode 100644 index 000000000..ec68494fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBruno.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBrunoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4AA41'; + + const SiBruno: IconType = React.forwardRef(function SiBruno({title = 'Bruno', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBruno as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBsd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBsd.tsx new file mode 100644 index 000000000..60e00242a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBsd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AB2B28'; + + const SiBsd: IconType = React.forwardRef(function SiBsd({title = 'BSD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBsd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBspwm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBspwm.tsx new file mode 100644 index 000000000..223d435c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBspwm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBspwmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E2E2E'; + + const SiBspwm: IconType = React.forwardRef(function SiBspwm({title = 'bspwm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBspwm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBt.tsx new file mode 100644 index 000000000..a7e2409b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6400AA'; + + const SiBt: IconType = React.forwardRef(function SiBt({title = 'BT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuddy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuddy.tsx new file mode 100644 index 000000000..fe55256e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuddy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuddyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A86FD'; + + const SiBuddy: IconType = React.forwardRef(function SiBuddy({title = 'Buddy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuddy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBudibase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBudibase.tsx new file mode 100644 index 000000000..55ce03355 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBudibase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBudibaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBudibase: IconType = React.forwardRef(function SiBudibase({title = 'Budibase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBudibase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuefy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuefy.tsx new file mode 100644 index 000000000..84078e804 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuefy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuefyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7957D5'; + + const SiBuefy: IconType = React.forwardRef(function SiBuefy({title = 'Buefy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuefy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuffer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuffer.tsx new file mode 100644 index 000000000..f3f883212 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuffer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBufferProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiBuffer: IconType = React.forwardRef(function SiBuffer({title = 'Buffer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuffer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBugatti.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBugatti.tsx new file mode 100644 index 000000000..74176535b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBugatti.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBugattiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBugatti: IconType = React.forwardRef(function SiBugatti({title = 'Bugatti', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBugatti as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBugcrowd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBugcrowd.tsx new file mode 100644 index 000000000..cfdb81294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBugcrowd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBugcrowdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F26822'; + + const SiBugcrowd: IconType = React.forwardRef(function SiBugcrowd({title = 'Bugcrowd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBugcrowd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuhl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuhl.tsx new file mode 100644 index 000000000..5ff1013bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuhl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuhlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#023E84'; + + const SiBuhl: IconType = React.forwardRef(function SiBuhl({title = 'Buhl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuhl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuildkite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuildkite.tsx new file mode 100644 index 000000000..9da5834e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuildkite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuildkiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14CC80'; + + const SiBuildkite: IconType = React.forwardRef(function SiBuildkite({title = 'Buildkite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuildkite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuiltbybit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuiltbybit.tsx new file mode 100644 index 000000000..a7dad4ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuiltbybit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuiltbybitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D87C3'; + + const SiBuiltbybit: IconType = React.forwardRef(function SiBuiltbybit({title = 'BuiltByBit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuiltbybit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBukalapak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBukalapak.tsx new file mode 100644 index 000000000..958a28c33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBukalapak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBukalapakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E31E52'; + + const SiBukalapak: IconType = React.forwardRef(function SiBukalapak({title = 'Bukalapak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBukalapak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBulma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBulma.tsx new file mode 100644 index 000000000..4171cea56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBulma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBulmaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D1B2'; + + const SiBulma: IconType = React.forwardRef(function SiBulma({title = 'Bulma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBulma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBun.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBun.tsx new file mode 100644 index 000000000..a091d52a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBun.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBun: IconType = React.forwardRef(function SiBun({title = 'Bun', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBun as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBungie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBungie.tsx new file mode 100644 index 000000000..c699068e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBungie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBungieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0075BB'; + + const SiBungie: IconType = React.forwardRef(function SiBungie({title = 'Bungie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBungie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBunnydotnet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBunnydotnet.tsx new file mode 100644 index 000000000..c9cdba0f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBunnydotnet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBunnydotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFAA49'; + + const SiBunnydotnet: IconType = React.forwardRef(function SiBunnydotnet({title = 'bunny.net', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBunnydotnet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBunq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBunq.tsx new file mode 100644 index 000000000..132a3a7da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBunq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBunqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3394D7'; + + const SiBunq: IconType = React.forwardRef(function SiBunq({title = 'bunq', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBunq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurgerking.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurgerking.tsx new file mode 100644 index 000000000..c322f73d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurgerking.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBurgerkingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D62300'; + + const SiBurgerking: IconType = React.forwardRef(function SiBurgerking({title = 'Burger King', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBurgerking as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurpsuite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurpsuite.tsx new file mode 100644 index 000000000..fd26f2707 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurpsuite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBurpsuiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6633'; + + const SiBurpsuite: IconType = React.forwardRef(function SiBurpsuite({title = 'Burp Suite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBurpsuite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurton.tsx new file mode 100644 index 000000000..30ee291d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBurton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBurtonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiBurton: IconType = React.forwardRef(function SiBurton({title = 'Burton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBurton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuymeacoffee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuymeacoffee.tsx new file mode 100644 index 000000000..e2df3cd69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuymeacoffee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuymeacoffeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDD00'; + + const SiBuymeacoffee: IconType = React.forwardRef(function SiBuymeacoffee({title = 'Buy Me A Coffee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuymeacoffee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuysellads.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuysellads.tsx new file mode 100644 index 000000000..e0a1688e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuysellads.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuyselladsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB4714'; + + const SiBuysellads: IconType = React.forwardRef(function SiBuysellads({title = 'BuySellAds', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuysellads as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuzzfeed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuzzfeed.tsx new file mode 100644 index 000000000..c7bb0eeaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBuzzfeed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBuzzfeedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE3322'; + + const SiBuzzfeed: IconType = React.forwardRef(function SiBuzzfeed({title = 'BuzzFeed', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBuzzfeed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBvg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBvg.tsx new file mode 100644 index 000000000..8d57a05a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBvg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBvgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0D722'; + + const SiBvg: IconType = React.forwardRef(function SiBvg({title = 'BVG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBvg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiByjus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiByjus.tsx new file mode 100644 index 000000000..e5f564316 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiByjus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiByjusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#813588'; + + const SiByjus: IconType = React.forwardRef(function SiByjus({title = 'Byjus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiByjus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiBytedance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBytedance.tsx new file mode 100644 index 000000000..ba715953b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiBytedance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiBytedanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C8CFF'; + + const SiBytedance: IconType = React.forwardRef(function SiBytedance({title = 'ByteDance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiBytedance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiC.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiC.tsx new file mode 100644 index 000000000..2bd7fe883 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiC.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A8B9CC'; + + const SiC: IconType = React.forwardRef(function SiC({title = 'C', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiC as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCachet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCachet.tsx new file mode 100644 index 000000000..2ad2f695f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCachet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCachetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7ED321'; + + const SiCachet: IconType = React.forwardRef(function SiCachet({title = 'Cachet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCachet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaddy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaddy.tsx new file mode 100644 index 000000000..7911109af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaddy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCaddyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F88C0'; + + const SiCaddy: IconType = React.forwardRef(function SiCaddy({title = 'Caddy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCaddy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCadillac.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCadillac.tsx new file mode 100644 index 000000000..921df599e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCadillac.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCadillacProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCadillac: IconType = React.forwardRef(function SiCadillac({title = 'Cadillac', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCadillac as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCafepress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCafepress.tsx new file mode 100644 index 000000000..4c8a99611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCafepress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCafepressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#58A616'; + + const SiCafepress: IconType = React.forwardRef(function SiCafepress({title = 'CafePress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCafepress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCairographics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCairographics.tsx new file mode 100644 index 000000000..98a6a494b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCairographics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCairographicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F39914'; + + const SiCairographics: IconType = React.forwardRef(function SiCairographics({title = 'Cairo Graphics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCairographics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCairometro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCairometro.tsx new file mode 100644 index 000000000..6c41c2d74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCairometro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCairometroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C10C0C'; + + const SiCairometro: IconType = React.forwardRef(function SiCairometro({title = 'Cairo Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCairometro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaixabank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaixabank.tsx new file mode 100644 index 000000000..b9cc91ae3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaixabank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCaixabankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007EAE'; + + const SiCaixabank: IconType = React.forwardRef(function SiCaixabank({title = 'CaixaBank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCaixabank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCakephp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCakephp.tsx new file mode 100644 index 000000000..4c51e9aa9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCakephp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCakephpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D33C43'; + + const SiCakephp: IconType = React.forwardRef(function SiCakephp({title = 'CakePHP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCakephp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaldotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaldotcom.tsx new file mode 100644 index 000000000..9cb5d1538 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaldotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCaldotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#292929'; + + const SiCaldotcom: IconType = React.forwardRef(function SiCaldotcom({title = 'Cal.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCaldotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCalendly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCalendly.tsx new file mode 100644 index 000000000..f729f88dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCalendly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCalendlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006BFF'; + + const SiCalendly: IconType = React.forwardRef(function SiCalendly({title = 'Calendly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCalendly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCalibreweb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCalibreweb.tsx new file mode 100644 index 000000000..cfdbd666c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCalibreweb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCalibrewebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#45B29D'; + + const SiCalibreweb: IconType = React.forwardRef(function SiCalibreweb({title = 'Calibre-Web', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCalibreweb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCampaignmonitor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCampaignmonitor.tsx new file mode 100644 index 000000000..a7e7dcdc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCampaignmonitor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCampaignmonitorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111324'; + + const SiCampaignmonitor: IconType = React.forwardRef(function SiCampaignmonitor({title = 'Campaign Monitor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCampaignmonitor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCamunda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCamunda.tsx new file mode 100644 index 000000000..560ab8ae4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCamunda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCamundaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC5D0D'; + + const SiCamunda: IconType = React.forwardRef(function SiCamunda({title = 'Camunda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCamunda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCanonical.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCanonical.tsx new file mode 100644 index 000000000..fc9143023 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCanonical.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCanonicalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E95420'; + + const SiCanonical: IconType = React.forwardRef(function SiCanonical({title = 'Canonical', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCanonical as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCanvas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCanvas.tsx new file mode 100644 index 000000000..7022da687 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCanvas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCanvasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E72429'; + + const SiCanvas: IconType = React.forwardRef(function SiCanvas({title = 'Canvas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCanvas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCapacitor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCapacitor.tsx new file mode 100644 index 000000000..77c45b8bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCapacitor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCapacitorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#119EFF'; + + const SiCapacitor: IconType = React.forwardRef(function SiCapacitor({title = 'Capacitor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCapacitor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaprover.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaprover.tsx new file mode 100644 index 000000000..157ff79e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaprover.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCaproverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED5B26'; + + const SiCaprover: IconType = React.forwardRef(function SiCaprover({title = 'CapRover', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCaprover as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCardano.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCardano.tsx new file mode 100644 index 000000000..a48f1b4f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCardano.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCardanoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0133AD'; + + const SiCardano: IconType = React.forwardRef(function SiCardano({title = 'Cardano', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCardano as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCardmarket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCardmarket.tsx new file mode 100644 index 000000000..84f2fe248 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCardmarket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCardmarketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#012169'; + + const SiCardmarket: IconType = React.forwardRef(function SiCardmarket({title = 'Cardmarket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCardmarket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarlsberggroup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarlsberggroup.tsx new file mode 100644 index 000000000..50be7e6a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarlsberggroup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCarlsberggroupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00321E'; + + const SiCarlsberggroup: IconType = React.forwardRef(function SiCarlsberggroup({title = 'Carlsberg Group', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCarlsberggroup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarrd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarrd.tsx new file mode 100644 index 000000000..91964ccb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarrd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCarrdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#596CAF'; + + const SiCarrd: IconType = React.forwardRef(function SiCarrd({title = 'Carrd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCarrd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarrefour.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarrefour.tsx new file mode 100644 index 000000000..a84a920ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarrefour.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCarrefourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004E9F'; + + const SiCarrefour: IconType = React.forwardRef(function SiCarrefour({title = 'Carrefour', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCarrefour as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarthrottle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarthrottle.tsx new file mode 100644 index 000000000..bbdecf096 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarthrottle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCarthrottleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9C42'; + + const SiCarthrottle: IconType = React.forwardRef(function SiCarthrottle({title = 'Car Throttle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCarthrottle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarto.tsx new file mode 100644 index 000000000..74277ee95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCarto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCartoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB1510'; + + const SiCarto: IconType = React.forwardRef(function SiCarto({title = 'Carto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCarto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCashapp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCashapp.tsx new file mode 100644 index 000000000..0cc197ba4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCashapp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCashappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00C244'; + + const SiCashapp: IconType = React.forwardRef(function SiCashapp({title = 'Cash App', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCashapp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastbox.tsx new file mode 100644 index 000000000..1f4be757c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCastboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F55B23'; + + const SiCastbox: IconType = React.forwardRef(function SiCastbox({title = 'Castbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCastbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastorama.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastorama.tsx new file mode 100644 index 000000000..c66c50e3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastorama.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCastoramaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0078D7'; + + const SiCastorama: IconType = React.forwardRef(function SiCastorama({title = 'Castorama', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCastorama as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastro.tsx new file mode 100644 index 000000000..cbccb70bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCastro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCastroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B265'; + + const SiCastro: IconType = React.forwardRef(function SiCastro({title = 'Castro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCastro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaterpillar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaterpillar.tsx new file mode 100644 index 000000000..5d0707f74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCaterpillar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCaterpillarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCD11'; + + const SiCaterpillar: IconType = React.forwardRef(function SiCaterpillar({title = 'Caterpillar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCaterpillar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCbc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCbc.tsx new file mode 100644 index 000000000..145a0d606 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCbc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCbcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60505'; + + const SiCbc: IconType = React.forwardRef(function SiCbc({title = 'CBC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCbc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCbs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCbs.tsx new file mode 100644 index 000000000..7ee052485 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCbs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCbsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#033963'; + + const SiCbs: IconType = React.forwardRef(function SiCbs({title = 'CBS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCbs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCcc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCcc.tsx new file mode 100644 index 000000000..87f0b0c27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCcc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCccProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCcc: IconType = React.forwardRef(function SiCcc({title = 'CCC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCcc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCcleaner.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCcleaner.tsx new file mode 100644 index 000000000..8c5b53a1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCcleaner.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCcleanerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CB2D29'; + + const SiCcleaner: IconType = React.forwardRef(function SiCcleaner({title = 'CCleaner', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCcleaner as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCdprojekt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCdprojekt.tsx new file mode 100644 index 000000000..fb45cdfe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCdprojekt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCdprojektProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC0D15'; + + const SiCdprojekt: IconType = React.forwardRef(function SiCdprojekt({title = 'CD Projekt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCdprojekt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCe.tsx new file mode 100644 index 000000000..ae4332f22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCe: IconType = React.forwardRef(function SiCe({title = 'CE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCelery.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCelery.tsx new file mode 100644 index 000000000..b72a758e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCelery.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCeleryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#37814A'; + + const SiCelery: IconType = React.forwardRef(function SiCelery({title = 'Celery', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCelery as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCelestron.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCelestron.tsx new file mode 100644 index 000000000..7bd7736ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCelestron.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCelestronProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F47216'; + + const SiCelestron: IconType = React.forwardRef(function SiCelestron({title = 'Celestron', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCelestron as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCentos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCentos.tsx new file mode 100644 index 000000000..3869b440e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCentos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCentosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#262577'; + + const SiCentos: IconType = React.forwardRef(function SiCentos({title = 'CentOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCentos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCeph.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCeph.tsx new file mode 100644 index 000000000..55698271a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCeph.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCephProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF5C55'; + + const SiCeph: IconType = React.forwardRef(function SiCeph({title = 'Ceph', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCeph as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCesium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCesium.tsx new file mode 100644 index 000000000..6f4d0c49a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCesium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCesiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6CADDF'; + + const SiCesium: IconType = React.forwardRef(function SiCesium({title = 'Cesium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCesium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChai.tsx new file mode 100644 index 000000000..bfba6a191 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A30701'; + + const SiChai: IconType = React.forwardRef(function SiChai({title = 'Chai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChainguard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChainguard.tsx new file mode 100644 index 000000000..298afd927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChainguard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChainguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4445E7'; + + const SiChainguard: IconType = React.forwardRef(function SiChainguard({title = 'Chainguard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChainguard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChainlink.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChainlink.tsx new file mode 100644 index 000000000..acb07c0f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChainlink.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChainlinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#375BD2'; + + const SiChainlink: IconType = React.forwardRef(function SiChainlink({title = 'Chainlink', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChainlink as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChakraui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChakraui.tsx new file mode 100644 index 000000000..515f45f4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChakraui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChakrauiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BB2A9'; + + const SiChakraui: IconType = React.forwardRef(function SiChakraui({title = 'Chakra UI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChakraui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChangedetection.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChangedetection.tsx new file mode 100644 index 000000000..0394952ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChangedetection.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChangedetectionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3056D3'; + + const SiChangedetection: IconType = React.forwardRef(function SiChangedetection({title = 'Change Detection', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChangedetection as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChannel4.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChannel4.tsx new file mode 100644 index 000000000..09e02696c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChannel4.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChannel4Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AAFF89'; + + const SiChannel4: IconType = React.forwardRef(function SiChannel4({title = 'Channel 4', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChannel4 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCharles.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCharles.tsx new file mode 100644 index 000000000..92aaf68f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCharles.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCharlesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F3F5F5'; + + const SiCharles: IconType = React.forwardRef(function SiCharles({title = 'Charles', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCharles as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChartdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChartdotjs.tsx new file mode 100644 index 000000000..93f16cbf5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChartdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChartdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6384'; + + const SiChartdotjs: IconType = React.forwardRef(function SiChartdotjs({title = 'Chart.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChartdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChartmogul.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChartmogul.tsx new file mode 100644 index 000000000..9fd1b9644 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChartmogul.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChartmogulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13324B'; + + const SiChartmogul: IconType = React.forwardRef(function SiChartmogul({title = 'ChartMogul', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChartmogul as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChase.tsx new file mode 100644 index 000000000..732ee382a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#117ACA'; + + const SiChase: IconType = React.forwardRef(function SiChase({title = 'Chase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChatbot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChatbot.tsx new file mode 100644 index 000000000..8ce7df7ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChatbot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChatbotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066FF'; + + const SiChatbot: IconType = React.forwardRef(function SiChatbot({title = 'ChatBot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChatbot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChatwoot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChatwoot.tsx new file mode 100644 index 000000000..59559269c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChatwoot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChatwootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F93FF'; + + const SiChatwoot: IconType = React.forwardRef(function SiChatwoot({title = 'Chatwoot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChatwoot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckio.tsx new file mode 100644 index 000000000..ec5d31880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCheckioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008DB6'; + + const SiCheckio: IconType = React.forwardRef(function SiCheckio({title = 'CheckiO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCheckio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckmarx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckmarx.tsx new file mode 100644 index 000000000..0bd06122f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckmarx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCheckmarxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#54B848'; + + const SiCheckmarx: IconType = React.forwardRef(function SiCheckmarx({title = 'Checkmarx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCheckmarx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckmk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckmk.tsx new file mode 100644 index 000000000..a8938e2d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheckmk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCheckmkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#15D1A0'; + + const SiCheckmk: IconType = React.forwardRef(function SiCheckmk({title = 'Checkmk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCheckmk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChedraui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChedraui.tsx new file mode 100644 index 000000000..a8c3f8485 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChedraui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChedrauiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E0832F'; + + const SiChedraui: IconType = React.forwardRef(function SiChedraui({title = 'Chedraui', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChedraui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheerio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheerio.tsx new file mode 100644 index 000000000..3b3f3518e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCheerio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCheerioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E88C1F'; + + const SiCheerio: IconType = React.forwardRef(function SiCheerio({title = 'Cheerio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCheerio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChef.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChef.tsx new file mode 100644 index 000000000..a9056dc0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChef.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChefProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F09820'; + + const SiChef: IconType = React.forwardRef(function SiChef({title = 'Chef', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChef as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChemex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChemex.tsx new file mode 100644 index 000000000..7b3450866 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChemex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChemexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4D2B1A'; + + const SiChemex: IconType = React.forwardRef(function SiChemex({title = 'Chemex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChemex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChessdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChessdotcom.tsx new file mode 100644 index 000000000..5b9b53912 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChessdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChessdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#81B64C'; + + const SiChessdotcom: IconType = React.forwardRef(function SiChessdotcom({title = 'Chess.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChessdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChevrolet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChevrolet.tsx new file mode 100644 index 000000000..c1298bab3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChevrolet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChevroletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD9834'; + + const SiChevrolet: IconType = React.forwardRef(function SiChevrolet({title = 'Chevrolet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChevrolet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChianetwork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChianetwork.tsx new file mode 100644 index 000000000..c80592a79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChianetwork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChianetworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5ECE71'; + + const SiChianetwork: IconType = React.forwardRef(function SiChianetwork({title = 'Chia Network', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChianetwork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinaeasternairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinaeasternairlines.tsx new file mode 100644 index 000000000..12302f5e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinaeasternairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChinaeasternairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A2477'; + + const SiChinaeasternairlines: IconType = React.forwardRef(function SiChinaeasternairlines({title = 'China Eastern Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChinaeasternairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinarailway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinarailway.tsx new file mode 100644 index 000000000..f38c40a3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinarailway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChinarailwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF2600'; + + const SiChinarailway: IconType = React.forwardRef(function SiChinarailway({title = 'China Railway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChinarailway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinasouthernairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinasouthernairlines.tsx new file mode 100644 index 000000000..b44dde56f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChinasouthernairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChinasouthernairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008BCB'; + + const SiChinasouthernairlines: IconType = React.forwardRef(function SiChinasouthernairlines({title = 'China Southern Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChinasouthernairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChocolatey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChocolatey.tsx new file mode 100644 index 000000000..04d6fcf3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChocolatey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChocolateyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#80B5E3'; + + const SiChocolatey: IconType = React.forwardRef(function SiChocolatey({title = 'Chocolatey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChocolatey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChromatic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChromatic.tsx new file mode 100644 index 000000000..09344c1e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChromatic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChromaticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC521F'; + + const SiChromatic: IconType = React.forwardRef(function SiChromatic({title = 'Chromatic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChromatic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChromewebstore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChromewebstore.tsx new file mode 100644 index 000000000..e256334d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChromewebstore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChromewebstoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiChromewebstore: IconType = React.forwardRef(function SiChromewebstore({title = 'Chrome Web Store', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChromewebstore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChrysler.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChrysler.tsx new file mode 100644 index 000000000..986111266 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChrysler.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChryslerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiChrysler: IconType = React.forwardRef(function SiChrysler({title = 'Chrysler', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChrysler as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiChupachups.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChupachups.tsx new file mode 100644 index 000000000..52dbae420 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiChupachups.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiChupachupsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CF103E'; + + const SiChupachups: IconType = React.forwardRef(function SiChupachups({title = 'Chupa Chups', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiChupachups as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCilium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCilium.tsx new file mode 100644 index 000000000..21ae7e463 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCilium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCiliumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F8C517'; + + const SiCilium: IconType = React.forwardRef(function SiCilium({title = 'Cilium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCilium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCinema4d.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCinema4d.tsx new file mode 100644 index 000000000..8eb2cce64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCinema4d.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCinema4dProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#011A6A'; + + const SiCinema4d: IconType = React.forwardRef(function SiCinema4d({title = 'Cinema 4D', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCinema4d as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCinnamon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCinnamon.tsx new file mode 100644 index 000000000..18a2aa0bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCinnamon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCinnamonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC682E'; + + const SiCinnamon: IconType = React.forwardRef(function SiCinnamon({title = 'Cinnamon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCinnamon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircle.tsx new file mode 100644 index 000000000..6694b6dac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCircleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8669AE'; + + const SiCircle: IconType = React.forwardRef(function SiCircle({title = 'Circle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCircle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircleci.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircleci.tsx new file mode 100644 index 000000000..696d09f71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircleci.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCircleciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#343434'; + + const SiCircleci: IconType = React.forwardRef(function SiCircleci({title = 'CircleCI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCircleci as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircuitverse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircuitverse.tsx new file mode 100644 index 000000000..fd1f6e393 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCircuitverse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCircuitverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#42B883'; + + const SiCircuitverse: IconType = React.forwardRef(function SiCircuitverse({title = 'CircuitVerse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCircuitverse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCirrusci.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCirrusci.tsx new file mode 100644 index 000000000..52a2ccacf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCirrusci.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCirrusciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4051B5'; + + const SiCirrusci: IconType = React.forwardRef(function SiCirrusci({title = 'Cirrus CI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCirrusci as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCisco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCisco.tsx new file mode 100644 index 000000000..fc44d7cdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCisco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCiscoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BA0D7'; + + const SiCisco: IconType = React.forwardRef(function SiCisco({title = 'Cisco', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCisco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCitrix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCitrix.tsx new file mode 100644 index 000000000..4fbe2f738 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCitrix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCitrixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#452170'; + + const SiCitrix: IconType = React.forwardRef(function SiCitrix({title = 'Citrix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCitrix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCitroen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCitroen.tsx new file mode 100644 index 000000000..42f74d155 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCitroen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCitroenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA291C'; + + const SiCitroen: IconType = React.forwardRef(function SiCitroen({title = 'Citroën', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCitroen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCivicrm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCivicrm.tsx new file mode 100644 index 000000000..4149f9eed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCivicrm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCivicrmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#81C459'; + + const SiCivicrm: IconType = React.forwardRef(function SiCivicrm({title = 'CiviCRM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCivicrm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCivo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCivo.tsx new file mode 100644 index 000000000..e67b73e69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCivo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCivoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#239DFF'; + + const SiCivo: IconType = React.forwardRef(function SiCivo({title = 'Civo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCivo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClarifai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClarifai.tsx new file mode 100644 index 000000000..73d6c1be1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClarifai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClarifaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1955FF'; + + const SiClarifai: IconType = React.forwardRef(function SiClarifai({title = 'Clarifai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClarifai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClaris.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClaris.tsx new file mode 100644 index 000000000..ecfb5ed39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClaris.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClarisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiClaris: IconType = React.forwardRef(function SiClaris({title = 'Claris', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClaris as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClarivate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClarivate.tsx new file mode 100644 index 000000000..27a832df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClarivate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClarivateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#93FF9E'; + + const SiClarivate: IconType = React.forwardRef(function SiClarivate({title = 'Clarivate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClarivate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClaude.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClaude.tsx new file mode 100644 index 000000000..ce903995c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClaude.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClaudeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D97757'; + + const SiClaude: IconType = React.forwardRef(function SiClaude({title = 'Claude', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClaude as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClerk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClerk.tsx new file mode 100644 index 000000000..33369960d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClerk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClerkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6C47FF'; + + const SiClerk: IconType = React.forwardRef(function SiClerk({title = 'Clerk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClerk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClevercloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClevercloud.tsx new file mode 100644 index 000000000..ddfe4a1f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClevercloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClevercloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#171C36'; + + const SiClevercloud: IconType = React.forwardRef(function SiClevercloud({title = 'Clever Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClevercloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClickhouse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClickhouse.tsx new file mode 100644 index 000000000..783178a5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClickhouse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClickhouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCC01'; + + const SiClickhouse: IconType = React.forwardRef(function SiClickhouse({title = 'ClickHouse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClickhouse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClickup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClickup.tsx new file mode 100644 index 000000000..7155803b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClickup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClickupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7B68EE'; + + const SiClickup: IconType = React.forwardRef(function SiClickup({title = 'ClickUp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClickup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClion.tsx new file mode 100644 index 000000000..621135ba8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiClion: IconType = React.forwardRef(function SiClion({title = 'CLion', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClockify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClockify.tsx new file mode 100644 index 000000000..00cc00309 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClockify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClockifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03A9F4'; + + const SiClockify: IconType = React.forwardRef(function SiClockify({title = 'Clockify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClockify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClojure.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClojure.tsx new file mode 100644 index 000000000..35c155dda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClojure.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClojureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5881D8'; + + const SiClojure: IconType = React.forwardRef(function SiClojure({title = 'Clojure', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClojure as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloud66.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloud66.tsx new file mode 100644 index 000000000..418e5b064 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloud66.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloud66Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C72B9'; + + const SiCloud66: IconType = React.forwardRef(function SiCloud66({title = 'Cloud 66', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloud66 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudbees.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudbees.tsx new file mode 100644 index 000000000..c9af34e0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudbees.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudbeesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1997B5'; + + const SiCloudbees: IconType = React.forwardRef(function SiCloudbees({title = 'CloudBees', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudbees as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudcannon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudcannon.tsx new file mode 100644 index 000000000..795875d7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudcannon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudcannonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#407AFC'; + + const SiCloudcannon: IconType = React.forwardRef(function SiCloudcannon({title = 'CloudCannon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudcannon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudera.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudera.tsx new file mode 100644 index 000000000..c579663fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudera.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClouderaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F96702'; + + const SiCloudera: IconType = React.forwardRef(function SiCloudera({title = 'Cloudera', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudera as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflare.tsx new file mode 100644 index 000000000..f50aca2cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudflareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F38020'; + + const SiCloudflare: IconType = React.forwardRef(function SiCloudflare({title = 'Cloudflare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudflare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflarepages.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflarepages.tsx new file mode 100644 index 000000000..3e8d8ebb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflarepages.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudflarepagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F38020'; + + const SiCloudflarepages: IconType = React.forwardRef(function SiCloudflarepages({title = 'Cloudflare Pages', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudflarepages as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflareworkers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflareworkers.tsx new file mode 100644 index 000000000..9f1330fc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudflareworkers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudflareworkersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F38020'; + + const SiCloudflareworkers: IconType = React.forwardRef(function SiCloudflareworkers({title = 'Cloudflare Workers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudflareworkers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudfoundry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudfoundry.tsx new file mode 100644 index 000000000..7187e18c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudfoundry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudfoundryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C9ED5'; + + const SiCloudfoundry: IconType = React.forwardRef(function SiCloudfoundry({title = 'Cloud Foundry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudfoundry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudinary.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudinary.tsx new file mode 100644 index 000000000..20667a6bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudinary.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudinaryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3448C5'; + + const SiCloudinary: IconType = React.forwardRef(function SiCloudinary({title = 'Cloudinary', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudinary as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudnativebuild.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudnativebuild.tsx new file mode 100644 index 000000000..4c2ca432f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudnativebuild.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudnativebuildProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F76945'; + + const SiCloudnativebuild: IconType = React.forwardRef(function SiCloudnativebuild({title = 'Cloud Native Build', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudnativebuild as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudron.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudron.tsx new file mode 100644 index 000000000..b25d5a56a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudron.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudronProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03A9F4'; + + const SiCloudron: IconType = React.forwardRef(function SiCloudron({title = 'Cloudron', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudron as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudsmith.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudsmith.tsx new file mode 100644 index 000000000..739cdd00e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudsmith.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudsmithProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A6FE1'; + + const SiCloudsmith: IconType = React.forwardRef(function SiCloudsmith({title = 'Cloudsmith', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudsmith as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudways.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudways.tsx new file mode 100644 index 000000000..4392c4c0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCloudways.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCloudwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C39BD'; + + const SiCloudways: IconType = React.forwardRef(function SiCloudways({title = 'Cloudways', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCloudways as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClubforce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClubforce.tsx new file mode 100644 index 000000000..14735d823 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClubforce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClubforceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#191176'; + + const SiClubforce: IconType = React.forwardRef(function SiClubforce({title = 'Clubforce', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClubforce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClubhouse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClubhouse.tsx new file mode 100644 index 000000000..9efaf5047 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClubhouse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClubhouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE450'; + + const SiClubhouse: IconType = React.forwardRef(function SiClubhouse({title = 'Clubhouse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClubhouse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiClyp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClyp.tsx new file mode 100644 index 000000000..da0d6f9bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiClyp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiClypProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3CBDB1'; + + const SiClyp: IconType = React.forwardRef(function SiClyp({title = 'Clyp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiClyp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCmake.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCmake.tsx new file mode 100644 index 000000000..fe2b27b63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCmake.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCmakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#064F8C'; + + const SiCmake: IconType = React.forwardRef(function SiCmake({title = 'CMake', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCmake as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCncf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCncf.tsx new file mode 100644 index 000000000..1db596e19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCncf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCncfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiCncf: IconType = React.forwardRef(function SiCncf({title = 'CNCF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCncf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnes.tsx new file mode 100644 index 000000000..18e0c1c63 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCnesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#204F8C'; + + const SiCnes: IconType = React.forwardRef(function SiCnes({title = 'CNES', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCnes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnet.tsx new file mode 100644 index 000000000..4572c8196 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E71D1D'; + + const SiCnet: IconType = React.forwardRef(function SiCnet({title = 'CNET', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCnet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnn.tsx new file mode 100644 index 000000000..a5d5d906c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCnn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCnnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiCnn: IconType = React.forwardRef(function SiCnn({title = 'CNN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCnn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCobalt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCobalt.tsx new file mode 100644 index 000000000..45b5d6308 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCobalt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCobaltProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiCobalt: IconType = React.forwardRef(function SiCobalt({title = 'cobalt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCobalt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocacola.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocacola.tsx new file mode 100644 index 000000000..e0aabab78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocacola.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCocacolaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D00013'; + + const SiCocacola: IconType = React.forwardRef(function SiCocacola({title = 'Coca-Cola', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCocacola as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCockpit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCockpit.tsx new file mode 100644 index 000000000..e593367d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCockpit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCockpitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066CC'; + + const SiCockpit: IconType = React.forwardRef(function SiCockpit({title = 'Cockpit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCockpit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCockroachlabs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCockroachlabs.tsx new file mode 100644 index 000000000..2dd441242 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCockroachlabs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCockroachlabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6933FF'; + + const SiCockroachlabs: IconType = React.forwardRef(function SiCockroachlabs({title = 'Cockroach Labs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCockroachlabs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocoapods.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocoapods.tsx new file mode 100644 index 000000000..c2c047289 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocoapods.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCocoapodsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE3322'; + + const SiCocoapods: IconType = React.forwardRef(function SiCocoapods({title = 'CocoaPods', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCocoapods as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocos.tsx new file mode 100644 index 000000000..63dd3adb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCocos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCocosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#55C2E1'; + + const SiCocos: IconType = React.forwardRef(function SiCocos({title = 'Cocos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCocos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoda.tsx new file mode 100644 index 000000000..e2fe65558 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F46A54'; + + const SiCoda: IconType = React.forwardRef(function SiCoda({title = 'Coda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodacy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodacy.tsx new file mode 100644 index 000000000..174932d3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodacy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodacyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222F29'; + + const SiCodacy: IconType = React.forwardRef(function SiCodacy({title = 'Codacy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodacy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeberg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeberg.tsx new file mode 100644 index 000000000..3b79b388b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeberg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodebergProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2185D0'; + + const SiCodeberg: IconType = React.forwardRef(function SiCodeberg({title = 'Codeberg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeberg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeblocks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeblocks.tsx new file mode 100644 index 000000000..b9a2b0a12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeblocks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeblocksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41AD48'; + + const SiCodeblocks: IconType = React.forwardRef(function SiCodeblocks({title = 'Code::Blocks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeblocks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecademy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecademy.tsx new file mode 100644 index 000000000..36e9d2497 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecademy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodecademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F4056'; + + const SiCodecademy: IconType = React.forwardRef(function SiCodecademy({title = 'Codecademy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodecademy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeceptjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeceptjs.tsx new file mode 100644 index 000000000..c3adc9142 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeceptjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeceptjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F6E05E'; + + const SiCodeceptjs: IconType = React.forwardRef(function SiCodeceptjs({title = 'CodeceptJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeceptjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodechef.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodechef.tsx new file mode 100644 index 000000000..a7fcadd17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodechef.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodechefProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5B4638'; + + const SiCodechef: IconType = React.forwardRef(function SiCodechef({title = 'CodeChef', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodechef as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeclimate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeclimate.tsx new file mode 100644 index 000000000..3a5c74a9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeclimate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeclimateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCodeclimate: IconType = React.forwardRef(function SiCodeclimate({title = 'Code Climate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeclimate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecov.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecov.tsx new file mode 100644 index 000000000..679ea1e7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecov.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodecovProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F01F7A'; + + const SiCodecov: IconType = React.forwardRef(function SiCodecov({title = 'Codecov', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodecov as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecrafters.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecrafters.tsx new file mode 100644 index 000000000..eb9bdd029 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodecrafters.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodecraftersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#171920'; + + const SiCodecrafters: IconType = React.forwardRef(function SiCodecrafters({title = 'CodeCrafters', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodecrafters as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodefactor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodefactor.tsx new file mode 100644 index 000000000..d26de762f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodefactor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodefactorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F44A6A'; + + const SiCodefactor: IconType = React.forwardRef(function SiCodefactor({title = 'CodeFactor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodefactor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeforces.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeforces.tsx new file mode 100644 index 000000000..a0caef830 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeforces.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeforcesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F8ACB'; + + const SiCodeforces: IconType = React.forwardRef(function SiCodeforces({title = 'Codeforces', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeforces as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodefresh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodefresh.tsx new file mode 100644 index 000000000..a2e439fbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodefresh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodefreshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#08B1AB'; + + const SiCodefresh: IconType = React.forwardRef(function SiCodefresh({title = 'Codefresh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodefresh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeigniter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeigniter.tsx new file mode 100644 index 000000000..f45b7a282 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeigniter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeigniterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF4223'; + + const SiCodeigniter: IconType = React.forwardRef(function SiCodeigniter({title = 'CodeIgniter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeigniter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodemagic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodemagic.tsx new file mode 100644 index 000000000..bbb83b3f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodemagic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodemagicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F45E3F'; + + const SiCodemagic: IconType = React.forwardRef(function SiCodemagic({title = 'Codemagic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodemagic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodementor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodementor.tsx new file mode 100644 index 000000000..14b36c5cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodementor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodementorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003648'; + + const SiCodementor: IconType = React.forwardRef(function SiCodementor({title = 'Codementor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodementor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodemirror.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodemirror.tsx new file mode 100644 index 000000000..3074f6e42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodemirror.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodemirrorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D30707'; + + const SiCodemirror: IconType = React.forwardRef(function SiCodemirror({title = 'CodeMirror', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodemirror as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodenewbie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodenewbie.tsx new file mode 100644 index 000000000..85e08dd62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodenewbie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodenewbieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9013FE'; + + const SiCodenewbie: IconType = React.forwardRef(function SiCodenewbie({title = 'CodeNewbie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodenewbie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeproject.tsx new file mode 100644 index 000000000..864e3ede7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9900'; + + const SiCodeproject: IconType = React.forwardRef(function SiCodeproject({title = 'CodeProject', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoder.tsx new file mode 100644 index 000000000..30ea6cfa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#090B0B'; + + const SiCoder: IconType = React.forwardRef(function SiCoder({title = 'Coder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoderabbit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoderabbit.tsx new file mode 100644 index 000000000..11e0f0470 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoderabbit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoderabbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF570A'; + + const SiCoderabbit: IconType = React.forwardRef(function SiCoderabbit({title = 'CodeRabbit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoderabbit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodersrank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodersrank.tsx new file mode 100644 index 000000000..4bbe378cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodersrank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodersrankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#67A4AC'; + + const SiCodersrank: IconType = React.forwardRef(function SiCodersrank({title = 'CodersRank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodersrank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoderwall.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoderwall.tsx new file mode 100644 index 000000000..c8f9712e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoderwall.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoderwallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3E8DCC'; + + const SiCoderwall: IconType = React.forwardRef(function SiCoderwall({title = 'Coderwall', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoderwall as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodesandbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodesandbox.tsx new file mode 100644 index 000000000..41327ea97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodesandbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodesandboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#151515'; + + const SiCodesandbox: IconType = React.forwardRef(function SiCodesandbox({title = 'CodeSandbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodesandbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeship.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeship.tsx new file mode 100644 index 000000000..be36291a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodeship.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodeshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004466'; + + const SiCodeship: IconType = React.forwardRef(function SiCodeship({title = 'Codeship', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodeship as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodesignal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodesignal.tsx new file mode 100644 index 000000000..d72989b81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodesignal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodesignalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1062FB'; + + const SiCodesignal: IconType = React.forwardRef(function SiCodesignal({title = 'CodeSignal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodesignal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodestream.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodestream.tsx new file mode 100644 index 000000000..75199b483 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodestream.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodestreamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008C99'; + + const SiCodestream: IconType = React.forwardRef(function SiCodestream({title = 'CodeStream', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodestream as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodewars.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodewars.tsx new file mode 100644 index 000000000..2b5eeaeb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodewars.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodewarsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B1361E'; + + const SiCodewars: IconType = React.forwardRef(function SiCodewars({title = 'Codewars', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodewars as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodingame.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodingame.tsx new file mode 100644 index 000000000..8d29d7f01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodingame.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodingameProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2BB13'; + + const SiCodingame: IconType = React.forwardRef(function SiCodingame({title = 'CodinGame', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodingame as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodingninjas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodingninjas.tsx new file mode 100644 index 000000000..d8bd019be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodingninjas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodingninjasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD6620'; + + const SiCodingninjas: IconType = React.forwardRef(function SiCodingninjas({title = 'Coding Ninjas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodingninjas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodio.tsx new file mode 100644 index 000000000..a0cb224e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCodio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCodioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4574E0'; + + const SiCodio: IconType = React.forwardRef(function SiCodio({title = 'Codio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCodio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoffeescript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoffeescript.tsx new file mode 100644 index 000000000..946e2d2bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoffeescript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoffeescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F2625'; + + const SiCoffeescript: IconType = React.forwardRef(function SiCoffeescript({title = 'CoffeeScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoffeescript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoggle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoggle.tsx new file mode 100644 index 000000000..2d9ffbd33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoggle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoggleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9ED56B'; + + const SiCoggle: IconType = React.forwardRef(function SiCoggle({title = 'Coggle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoggle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoinbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoinbase.tsx new file mode 100644 index 000000000..7b66d61ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoinbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoinbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052FF'; + + const SiCoinbase: IconType = React.forwardRef(function SiCoinbase({title = 'Coinbase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoinbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoinmarketcap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoinmarketcap.tsx new file mode 100644 index 000000000..d8962a3c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoinmarketcap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoinmarketcapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17181B'; + + const SiCoinmarketcap: IconType = React.forwardRef(function SiCoinmarketcap({title = 'CoinMarketCap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoinmarketcap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCollaboraonline.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCollaboraonline.tsx new file mode 100644 index 000000000..3cbf71c3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCollaboraonline.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCollaboraonlineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C2983'; + + const SiCollaboraonline: IconType = React.forwardRef(function SiCollaboraonline({title = 'Collabora Online', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCollaboraonline as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiComicfury.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComicfury.tsx new file mode 100644 index 000000000..3ac459c2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComicfury.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiComicfuryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#79BD42'; + + const SiComicfury: IconType = React.forwardRef(function SiComicfury({title = 'ComicFury', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiComicfury as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiComma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComma.tsx new file mode 100644 index 000000000..2e3609b6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCommaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#51FF00'; + + const SiComma: IconType = React.forwardRef(function SiComma({title = 'comma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiComma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommerzbank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommerzbank.tsx new file mode 100644 index 000000000..e53c664b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommerzbank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCommerzbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCC33'; + + const SiCommerzbank: IconType = React.forwardRef(function SiCommerzbank({title = 'Commerzbank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCommerzbank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommitlint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommitlint.tsx new file mode 100644 index 000000000..9ff5f1308 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommitlint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCommitlintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCommitlint: IconType = React.forwardRef(function SiCommitlint({title = 'commitlint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCommitlint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommodore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommodore.tsx new file mode 100644 index 000000000..c56b99bee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommodore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCommodoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E2A4E'; + + const SiCommodore: IconType = React.forwardRef(function SiCommodore({title = 'Commodore', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCommodore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommonlisp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommonlisp.tsx new file mode 100644 index 000000000..23e8da730 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommonlisp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCommonlispProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCommonlisp: IconType = React.forwardRef(function SiCommonlisp({title = 'Common Lisp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCommonlisp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommonworkflowlanguage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommonworkflowlanguage.tsx new file mode 100644 index 000000000..a7465360b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCommonworkflowlanguage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCommonworkflowlanguageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B5314C'; + + const SiCommonworkflowlanguage: IconType = React.forwardRef(function SiCommonworkflowlanguage({title = 'Common Workflow Language', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCommonworkflowlanguage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCompilerexplorer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCompilerexplorer.tsx new file mode 100644 index 000000000..1ed3dd0b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCompilerexplorer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCompilerexplorerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#67C52A'; + + const SiCompilerexplorer: IconType = React.forwardRef(function SiCompilerexplorer({title = 'Compiler Explorer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCompilerexplorer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiComposer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComposer.tsx new file mode 100644 index 000000000..e4bdf863e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComposer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiComposerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#885630'; + + const SiComposer: IconType = React.forwardRef(function SiComposer({title = 'Composer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiComposer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiComptia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComptia.tsx new file mode 100644 index 000000000..74e29768d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComptia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiComptiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C8202F'; + + const SiComptia: IconType = React.forwardRef(function SiComptia({title = 'CompTIA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiComptia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiComsol.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComsol.tsx new file mode 100644 index 000000000..da7f9bef6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiComsol.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiComsolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#368CCB'; + + const SiComsol: IconType = React.forwardRef(function SiComsol({title = 'Comsol', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiComsol as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConan.tsx new file mode 100644 index 000000000..c4f72f89c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6699CB'; + + const SiConan: IconType = React.forwardRef(function SiConan({title = 'Conan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConcourse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConcourse.tsx new file mode 100644 index 000000000..61a11931a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConcourse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConcourseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3398DC'; + + const SiConcourse: IconType = React.forwardRef(function SiConcourse({title = 'Concourse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConcourse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCondaforge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCondaforge.tsx new file mode 100644 index 000000000..3f99066a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCondaforge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCondaforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCondaforge: IconType = React.forwardRef(function SiCondaforge({title = 'Conda-Forge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCondaforge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConekta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConekta.tsx new file mode 100644 index 000000000..63c34a241 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConekta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConektaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A1837'; + + const SiConekta: IconType = React.forwardRef(function SiConekta({title = 'Conekta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConekta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConfluence.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConfluence.tsx new file mode 100644 index 000000000..c31fafd12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConfluence.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConfluenceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#172B4D'; + + const SiConfluence: IconType = React.forwardRef(function SiConfluence({title = 'Confluence', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConfluence as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConstruct3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConstruct3.tsx new file mode 100644 index 000000000..1bcd970e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConstruct3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConstruct3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FFDA'; + + const SiConstruct3: IconType = React.forwardRef(function SiConstruct3({title = 'Construct 3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConstruct3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConsul.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConsul.tsx new file mode 100644 index 000000000..a4f92dcda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConsul.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConsulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F24C53'; + + const SiConsul: IconType = React.forwardRef(function SiConsul({title = 'Consul', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConsul as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContabo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContabo.tsx new file mode 100644 index 000000000..daa54df57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContabo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContaboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AAEB'; + + const SiContabo: IconType = React.forwardRef(function SiContabo({title = 'Contabo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContabo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContactlesspayment.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContactlesspayment.tsx new file mode 100644 index 000000000..ba9f6e6f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContactlesspayment.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContactlesspaymentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiContactlesspayment: IconType = React.forwardRef(function SiContactlesspayment({title = 'Contactless Payment', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContactlesspayment as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContainerd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContainerd.tsx new file mode 100644 index 000000000..03614c2e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContainerd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContainerdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#575757'; + + const SiContainerd: IconType = React.forwardRef(function SiContainerd({title = 'containerd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContainerd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContao.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContao.tsx new file mode 100644 index 000000000..d8c9c1c3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContao.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContaoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F47C00'; + + const SiContao: IconType = React.forwardRef(function SiContao({title = 'Contao', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContao as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContentful.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContentful.tsx new file mode 100644 index 000000000..8b918b839 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContentful.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContentfulProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2478CC'; + + const SiContentful: IconType = React.forwardRef(function SiContentful({title = 'Contentful', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContentful as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContentstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContentstack.tsx new file mode 100644 index 000000000..cca3271f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContentstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContentstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E74C3D'; + + const SiContentstack: IconType = React.forwardRef(function SiContentstack({title = 'Contentstack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContentstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContinente.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContinente.tsx new file mode 100644 index 000000000..58671f617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContinente.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContinenteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E31E24'; + + const SiContinente: IconType = React.forwardRef(function SiContinente({title = 'Continente', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContinente as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiContributorcovenant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContributorcovenant.tsx new file mode 100644 index 000000000..5b88d50fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiContributorcovenant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiContributorcovenantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5E0D73'; + + const SiContributorcovenant: IconType = React.forwardRef(function SiContributorcovenant({title = 'Contributor Covenant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiContributorcovenant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConventionalcommits.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConventionalcommits.tsx new file mode 100644 index 000000000..dde17064c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConventionalcommits.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConventionalcommitsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE5196'; + + const SiConventionalcommits: IconType = React.forwardRef(function SiConventionalcommits({title = 'Conventional Commits', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConventionalcommits as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConvertio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConvertio.tsx new file mode 100644 index 000000000..3277a9e0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConvertio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConvertioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3333'; + + const SiConvertio: IconType = React.forwardRef(function SiConvertio({title = 'Convertio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConvertio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiConvex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConvex.tsx new file mode 100644 index 000000000..3c19a4a66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiConvex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiConvexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE342F'; + + const SiConvex: IconType = React.forwardRef(function SiConvex({title = 'Convex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiConvex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCookiecutter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCookiecutter.tsx new file mode 100644 index 000000000..d512a109b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCookiecutter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCookiecutterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D4AA00'; + + const SiCookiecutter: IconType = React.forwardRef(function SiCookiecutter({title = 'Cookiecutter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCookiecutter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoolermaster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoolermaster.tsx new file mode 100644 index 000000000..ab173538a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoolermaster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoolermasterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E1E28'; + + const SiCoolermaster: IconType = React.forwardRef(function SiCoolermaster({title = 'Cooler Master', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoolermaster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoolify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoolify.tsx new file mode 100644 index 000000000..8ee5e44c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoolify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoolifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6B16ED'; + + const SiCoolify: IconType = React.forwardRef(function SiCoolify({title = 'Coolify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoolify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoop.tsx new file mode 100644 index 000000000..0e8721657 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B1E7'; + + const SiCoop: IconType = React.forwardRef(function SiCoop({title = 'Co-op', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCopaairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCopaairlines.tsx new file mode 100644 index 000000000..1a53a1750 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCopaairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCopaairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0032A0'; + + const SiCopaairlines: IconType = React.forwardRef(function SiCopaairlines({title = 'Copa Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCopaairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoppel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoppel.tsx new file mode 100644 index 000000000..3260b952e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoppel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoppelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0266AE'; + + const SiCoppel: IconType = React.forwardRef(function SiCoppel({title = 'Coppel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoppel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCora.tsx new file mode 100644 index 000000000..85a5905c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E61845'; + + const SiCora: IconType = React.forwardRef(function SiCora({title = 'Cora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoreboot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoreboot.tsx new file mode 100644 index 000000000..921d035ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoreboot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCorebootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCoreboot: IconType = React.forwardRef(function SiCoreboot({title = 'Coreboot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoreboot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoreldraw.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoreldraw.tsx new file mode 100644 index 000000000..dc245af1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoreldraw.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoreldrawProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCoreldraw: IconType = React.forwardRef(function SiCoreldraw({title = 'CorelDRAW', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoreldraw as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoronaengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoronaengine.tsx new file mode 100644 index 000000000..c33acae79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoronaengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoronaengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F96F29'; + + const SiCoronaengine: IconType = React.forwardRef(function SiCoronaengine({title = 'Corona Engine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoronaengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoronarenderer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoronarenderer.tsx new file mode 100644 index 000000000..725e6d39b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoronarenderer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoronarendererProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6502A'; + + const SiCoronarenderer: IconType = React.forwardRef(function SiCoronarenderer({title = 'Corona Renderer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoronarenderer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCorsair.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCorsair.tsx new file mode 100644 index 000000000..19dc631f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCorsair.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCorsairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCorsair: IconType = React.forwardRef(function SiCorsair({title = 'Corsair', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCorsair as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCouchbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCouchbase.tsx new file mode 100644 index 000000000..b1c638b18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCouchbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCouchbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA2328'; + + const SiCouchbase: IconType = React.forwardRef(function SiCouchbase({title = 'Couchbase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCouchbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCounterstrike.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCounterstrike.tsx new file mode 100644 index 000000000..d9b69abe6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCounterstrike.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCounterstrikeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCounterstrike: IconType = React.forwardRef(function SiCounterstrike({title = 'Counter-Strike', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCounterstrike as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCountingworkspro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCountingworkspro.tsx new file mode 100644 index 000000000..9e0c6cbaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCountingworkspro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCountingworksproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E3084'; + + const SiCountingworkspro: IconType = React.forwardRef(function SiCountingworkspro({title = 'CountingWorks PRO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCountingworkspro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoursera.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoursera.tsx new file mode 100644 index 000000000..b381a9070 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoursera.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCourseraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0056D2'; + + const SiCoursera: IconType = React.forwardRef(function SiCoursera({title = 'Coursera', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoursera as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoveralls.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoveralls.tsx new file mode 100644 index 000000000..bd0c57ee4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoveralls.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCoverallsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3F5767'; + + const SiCoveralls: IconType = React.forwardRef(function SiCoveralls({title = 'Coveralls', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoveralls as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoze.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoze.tsx new file mode 100644 index 000000000..e4431b6f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCoze.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCozeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4D53E8'; + + const SiCoze: IconType = React.forwardRef(function SiCoze({title = 'Coze', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCoze as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCpanel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCpanel.tsx new file mode 100644 index 000000000..498bb7e90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCpanel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCpanelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6C2C'; + + const SiCpanel: IconType = React.forwardRef(function SiCpanel({title = 'cPanel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCpanel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCplusplus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCplusplus.tsx new file mode 100644 index 000000000..389bef185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCplusplus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCplusplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00599C'; + + const SiCplusplus: IconType = React.forwardRef(function SiCplusplus({title = 'C++', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCplusplus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCplusplusbuilder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCplusplusbuilder.tsx new file mode 100644 index 000000000..b6bc75025 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCplusplusbuilder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCplusplusbuilderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E62431'; + + const SiCplusplusbuilder: IconType = React.forwardRef(function SiCplusplusbuilder({title = 'C++ Builder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCplusplusbuilder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCraftcms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCraftcms.tsx new file mode 100644 index 000000000..19c9bbf62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCraftcms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCraftcmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E5422B'; + + const SiCraftcms: IconType = React.forwardRef(function SiCraftcms({title = 'Craft CMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCraftcms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCraftsman.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCraftsman.tsx new file mode 100644 index 000000000..28b445e91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCraftsman.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCraftsmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D6001C'; + + const SiCraftsman: IconType = React.forwardRef(function SiCraftsman({title = 'Craftsman', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCraftsman as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCratedb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCratedb.tsx new file mode 100644 index 000000000..487badeb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCratedb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCratedbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009DC7'; + + const SiCratedb: IconType = React.forwardRef(function SiCratedb({title = 'CrateDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCratedb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrayon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrayon.tsx new file mode 100644 index 000000000..30293d801 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrayon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrayonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6A4C'; + + const SiCrayon: IconType = React.forwardRef(function SiCrayon({title = 'Crayon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrayon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreality.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreality.tsx new file mode 100644 index 000000000..468432d84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreality.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrealityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCreality: IconType = React.forwardRef(function SiCreality({title = 'Creality', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCreality as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreatereactapp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreatereactapp.tsx new file mode 100644 index 000000000..fa6a914d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreatereactapp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCreatereactappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09D3AC'; + + const SiCreatereactapp: IconType = React.forwardRef(function SiCreatereactapp({title = 'Create React App', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCreatereactapp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreativecommons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreativecommons.tsx new file mode 100644 index 000000000..18903557b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreativecommons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCreativecommonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED592F'; + + const SiCreativecommons: IconType = React.forwardRef(function SiCreativecommons({title = 'Creative Commons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCreativecommons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreativetechnology.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreativetechnology.tsx new file mode 100644 index 000000000..470d98294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCreativetechnology.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCreativetechnologyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCreativetechnology: IconType = React.forwardRef(function SiCreativetechnology({title = 'Creative Technology', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCreativetechnology as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCredly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCredly.tsx new file mode 100644 index 000000000..928769e26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCredly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCredlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6B00'; + + const SiCredly: IconType = React.forwardRef(function SiCredly({title = 'Credly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCredly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrehana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrehana.tsx new file mode 100644 index 000000000..39ebd6827 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrehana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrehanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B22F4'; + + const SiCrehana: IconType = React.forwardRef(function SiCrehana({title = 'Crehana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrehana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrewai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrewai.tsx new file mode 100644 index 000000000..49e48b5f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrewai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrewaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5A50'; + + const SiCrewai: IconType = React.forwardRef(function SiCrewai({title = 'CrewAI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrewai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrewunited.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrewunited.tsx new file mode 100644 index 000000000..37d04d103 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrewunited.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrewunitedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCrewunited: IconType = React.forwardRef(function SiCrewunited({title = 'Crew United', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrewunited as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCriticalrole.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCriticalrole.tsx new file mode 100644 index 000000000..3db2e1cc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCriticalrole.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCriticalroleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCriticalrole: IconType = React.forwardRef(function SiCriticalrole({title = 'Critical Role', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCriticalrole as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrowdin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrowdin.tsx new file mode 100644 index 000000000..c22234b8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrowdin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrowdinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E3340'; + + const SiCrowdin: IconType = React.forwardRef(function SiCrowdin({title = 'Crowdin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrowdin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrowdsource.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrowdsource.tsx new file mode 100644 index 000000000..ddfa85071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrowdsource.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrowdsourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiCrowdsource: IconType = React.forwardRef(function SiCrowdsource({title = 'Crowdsource', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrowdsource as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrunchbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrunchbase.tsx new file mode 100644 index 000000000..6c4166232 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrunchbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrunchbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0288D1'; + + const SiCrunchbase: IconType = React.forwardRef(function SiCrunchbase({title = 'Crunchbase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrunchbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrunchyroll.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrunchyroll.tsx new file mode 100644 index 000000000..5dfc9c62e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrunchyroll.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrunchyrollProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5E00'; + + const SiCrunchyroll: IconType = React.forwardRef(function SiCrunchyroll({title = 'Crunchyroll', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrunchyroll as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryengine.tsx new file mode 100644 index 000000000..539f62345 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCryengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCryengine: IconType = React.forwardRef(function SiCryengine({title = 'CRYENGINE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCryengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryptomator.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryptomator.tsx new file mode 100644 index 000000000..f65f78f3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryptomator.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCryptomatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#49B04A'; + + const SiCryptomator: IconType = React.forwardRef(function SiCryptomator({title = 'Cryptomator', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCryptomator as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryptpad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryptpad.tsx new file mode 100644 index 000000000..4a5b9a3ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCryptpad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCryptpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0087FF'; + + const SiCryptpad: IconType = React.forwardRef(function SiCryptpad({title = 'CryptPad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCryptpad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrystal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrystal.tsx new file mode 100644 index 000000000..70f7fb300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCrystal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCrystalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCrystal: IconType = React.forwardRef(function SiCrystal({title = 'Crystal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCrystal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCsdn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCsdn.tsx new file mode 100644 index 000000000..1c751221c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCsdn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCsdnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC5531'; + + const SiCsdn: IconType = React.forwardRef(function SiCsdn({title = 'CSDN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCsdn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCss.tsx new file mode 100644 index 000000000..3f8985431 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#663399'; + + const SiCss: IconType = React.forwardRef(function SiCss({title = 'CSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCssdesignawards.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCssdesignawards.tsx new file mode 100644 index 000000000..d8e24afe8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCssdesignawards.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCssdesignawardsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#280FEE'; + + const SiCssdesignawards: IconType = React.forwardRef(function SiCssdesignawards({title = 'CSS Design Awards', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCssdesignawards as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCssmodules.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCssmodules.tsx new file mode 100644 index 000000000..3940bb032 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCssmodules.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCssmodulesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCssmodules: IconType = React.forwardRef(function SiCssmodules({title = 'CSS Modules', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCssmodules as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCsswizardry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCsswizardry.tsx new file mode 100644 index 000000000..ebf418ad1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCsswizardry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCsswizardryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F43059'; + + const SiCsswizardry: IconType = React.forwardRef(function SiCsswizardry({title = 'CSS Wizardry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCsswizardry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCts.tsx new file mode 100644 index 000000000..37cecbc84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCtsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E53236'; + + const SiCts: IconType = React.forwardRef(function SiCts({title = 'CTS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCucumber.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCucumber.tsx new file mode 100644 index 000000000..9442a65b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCucumber.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCucumberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#23D96C'; + + const SiCucumber: IconType = React.forwardRef(function SiCucumber({title = 'Cucumber', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCucumber as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCultura.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCultura.tsx new file mode 100644 index 000000000..e978c94a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCultura.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCulturaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D2C54'; + + const SiCultura: IconType = React.forwardRef(function SiCultura({title = 'Cultura', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCultura as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCurl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCurl.tsx new file mode 100644 index 000000000..0860e8f91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCurl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCurlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#073551'; + + const SiCurl: IconType = React.forwardRef(function SiCurl({title = 'curl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCurl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCurseforge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCurseforge.tsx new file mode 100644 index 000000000..169a0949a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCurseforge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCurseforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F16436'; + + const SiCurseforge: IconType = React.forwardRef(function SiCurseforge({title = 'CurseForge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCurseforge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCursor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCursor.tsx new file mode 100644 index 000000000..155eda468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCursor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCursorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiCursor: IconType = React.forwardRef(function SiCursor({title = 'Cursor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCursor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCustomink.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCustomink.tsx new file mode 100644 index 000000000..a07d33c7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCustomink.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCustominkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA3C00'; + + const SiCustomink: IconType = React.forwardRef(function SiCustomink({title = 'Custom Ink', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCustomink as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCyberdefenders.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCyberdefenders.tsx new file mode 100644 index 000000000..dcbc18e2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCyberdefenders.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCyberdefendersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#335EEA'; + + const SiCyberdefenders: IconType = React.forwardRef(function SiCyberdefenders({title = 'CyberDefenders', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCyberdefenders as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCycling74.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCycling74.tsx new file mode 100644 index 000000000..2f06d2315 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCycling74.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCycling74Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111111'; + + const SiCycling74: IconType = React.forwardRef(function SiCycling74({title = 'Cycling 74', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCycling74 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCypress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCypress.tsx new file mode 100644 index 000000000..6676bc024 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCypress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCypressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#69D3A7'; + + const SiCypress: IconType = React.forwardRef(function SiCypress({title = 'Cypress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCypress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiCytoscapedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCytoscapedotjs.tsx new file mode 100644 index 000000000..1e3b3d3d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiCytoscapedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiCytoscapedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7DF1E'; + + const SiCytoscapedotjs: IconType = React.forwardRef(function SiCytoscapedotjs({title = 'Cytoscape.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiCytoscapedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiD.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiD.tsx new file mode 100644 index 000000000..799c4918a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiD.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B03931'; + + const SiD: IconType = React.forwardRef(function SiD({title = 'D', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiD as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiD3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiD3.tsx new file mode 100644 index 000000000..404291904 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiD3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiD3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9A03C'; + + const SiD3: IconType = React.forwardRef(function SiD3({title = 'D3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiD3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDacia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDacia.tsx new file mode 100644 index 000000000..a434d550b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDacia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDaciaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#646B52'; + + const SiDacia: IconType = React.forwardRef(function SiDacia({title = 'Dacia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDacia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaf.tsx new file mode 100644 index 000000000..1ce57ec1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDafProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00529B'; + + const SiDaf: IconType = React.forwardRef(function SiDaf({title = 'DAF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDaf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDailydotdev.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDailydotdev.tsx new file mode 100644 index 000000000..89d892825 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDailydotdev.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDailydotdevProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CE3DF3'; + + const SiDailydotdev: IconType = React.forwardRef(function SiDailydotdev({title = 'daily.dev', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDailydotdev as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDailymotion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDailymotion.tsx new file mode 100644 index 000000000..25ca250d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDailymotion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDailymotionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0A0A'; + + const SiDailymotion: IconType = React.forwardRef(function SiDailymotion({title = 'Dailymotion', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDailymotion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaisyui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaisyui.tsx new file mode 100644 index 000000000..525952713 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaisyui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDaisyuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC63A'; + + const SiDaisyui: IconType = React.forwardRef(function SiDaisyui({title = 'daisyUI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDaisyui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDapr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDapr.tsx new file mode 100644 index 000000000..93e1447f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDapr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDaprProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D2192'; + + const SiDapr: IconType = React.forwardRef(function SiDapr({title = 'Dapr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDapr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDarkreader.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDarkreader.tsx new file mode 100644 index 000000000..0ccd30085 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDarkreader.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDarkreaderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#141E24'; + + const SiDarkreader: IconType = React.forwardRef(function SiDarkreader({title = 'Dark Reader', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDarkreader as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDart.tsx new file mode 100644 index 000000000..4248c9eb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0175C2'; + + const SiDart: IconType = React.forwardRef(function SiDart({title = 'Dart', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDarty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDarty.tsx new file mode 100644 index 000000000..76a0e74c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDarty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDartyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB1B23'; + + const SiDarty: IconType = React.forwardRef(function SiDarty({title = 'Darty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDarty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaserste.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaserste.tsx new file mode 100644 index 000000000..a4ea47b38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDaserste.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDasersteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#001A4B'; + + const SiDaserste: IconType = React.forwardRef(function SiDaserste({title = 'Das Erste', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDaserste as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDash.tsx new file mode 100644 index 000000000..1d89ee144 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008DE4'; + + const SiDash: IconType = React.forwardRef(function SiDash({title = 'Dash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDash0.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDash0.tsx new file mode 100644 index 000000000..bf7ff560c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDash0.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDash0Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA3D3B'; + + const SiDash0: IconType = React.forwardRef(function SiDash0({title = 'Dash0', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDash0 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDashlane.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDashlane.tsx new file mode 100644 index 000000000..ca99635d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDashlane.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDashlaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E353D'; + + const SiDashlane: IconType = React.forwardRef(function SiDashlane({title = 'Dashlane', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDashlane as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDask.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDask.tsx new file mode 100644 index 000000000..a1c6bbae8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDask.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDaskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC6E6B'; + + const SiDask: IconType = React.forwardRef(function SiDask({title = 'Dask', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDask as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDassaultsystemes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDassaultsystemes.tsx new file mode 100644 index 000000000..8ab218776 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDassaultsystemes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDassaultsystemesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005386'; + + const SiDassaultsystemes: IconType = React.forwardRef(function SiDassaultsystemes({title = 'Dassault Systèmes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDassaultsystemes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatabricks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatabricks.tsx new file mode 100644 index 000000000..b54cf14b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatabricks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatabricksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3621'; + + const SiDatabricks: IconType = React.forwardRef(function SiDatabricks({title = 'Databricks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatabricks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatacamp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatacamp.tsx new file mode 100644 index 000000000..3633b5f42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatacamp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatacampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03EF62'; + + const SiDatacamp: IconType = React.forwardRef(function SiDatacamp({title = 'DataCamp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatacamp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatadog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatadog.tsx new file mode 100644 index 000000000..330d7098b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatadog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatadogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#632CA6'; + + const SiDatadog: IconType = React.forwardRef(function SiDatadog({title = 'Datadog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatadog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatadotai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatadotai.tsx new file mode 100644 index 000000000..8f367b3ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatadotai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatadotaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDatadotai: IconType = React.forwardRef(function SiDatadotai({title = 'data.ai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatadotai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatagrip.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatagrip.tsx new file mode 100644 index 000000000..8ddeb78cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatagrip.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatagripProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDatagrip: IconType = React.forwardRef(function SiDatagrip({title = 'DataGrip', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatagrip as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDataiku.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDataiku.tsx new file mode 100644 index 000000000..2cf15911b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDataiku.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDataikuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2AB1AC'; + + const SiDataiku: IconType = React.forwardRef(function SiDataiku({title = 'Dataiku', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDataiku as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatastax.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatastax.tsx new file mode 100644 index 000000000..360311444 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatastax.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatastaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDatastax: IconType = React.forwardRef(function SiDatastax({title = 'DataStax', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatastax as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatefns.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatefns.tsx new file mode 100644 index 000000000..87dd62bae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatefns.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatefnsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#770C56'; + + const SiDatefns: IconType = React.forwardRef(function SiDatefns({title = 'date-fns', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatefns as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatev.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatev.tsx new file mode 100644 index 000000000..7b761a557 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatev.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatevProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9BD547'; + + const SiDatev: IconType = React.forwardRef(function SiDatev({title = 'DATEV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatev as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatocms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatocms.tsx new file mode 100644 index 000000000..420938f8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatocms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDatocmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7751'; + + const SiDatocms: IconType = React.forwardRef(function SiDatocms({title = 'DatoCMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatocms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatto.tsx new file mode 100644 index 000000000..2908a9be1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDatto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDattoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#199ED9'; + + const SiDatto: IconType = React.forwardRef(function SiDatto({title = 'Datto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDatto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDavinciresolve.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDavinciresolve.tsx new file mode 100644 index 000000000..cf3d921d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDavinciresolve.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDavinciresolveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#233A51'; + + const SiDavinciresolve: IconType = React.forwardRef(function SiDavinciresolve({title = 'DaVinci Resolve', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDavinciresolve as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDazhongdianping.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDazhongdianping.tsx new file mode 100644 index 000000000..bff677556 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDazhongdianping.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDazhongdianpingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6633'; + + const SiDazhongdianping: IconType = React.forwardRef(function SiDazhongdianping({title = 'Dazhong Dianping', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDazhongdianping as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDazn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDazn.tsx new file mode 100644 index 000000000..3ee2f3777 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDazn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDaznProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F8F8F5'; + + const SiDazn: IconType = React.forwardRef(function SiDazn({title = 'DAZN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDazn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDbeaver.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDbeaver.tsx new file mode 100644 index 000000000..3db86af41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDbeaver.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDbeaverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#382923'; + + const SiDbeaver: IconType = React.forwardRef(function SiDbeaver({title = 'DBeaver', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDbeaver as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDblp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDblp.tsx new file mode 100644 index 000000000..200171253 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDblp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDblpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004F9F'; + + const SiDblp: IconType = React.forwardRef(function SiDblp({title = 'dblp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDblp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDcentertainment.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDcentertainment.tsx new file mode 100644 index 000000000..24ee630a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDcentertainment.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDcentertainmentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0078F0'; + + const SiDcentertainment: IconType = React.forwardRef(function SiDcentertainment({title = 'DC Entertainment', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDcentertainment as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDebian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDebian.tsx new file mode 100644 index 000000000..81996b5a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDebian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDebianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A81D33'; + + const SiDebian: IconType = React.forwardRef(function SiDebian({title = 'Debian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDebian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDebridlink.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDebridlink.tsx new file mode 100644 index 000000000..9601ff50e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDebridlink.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDebridlinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#264E70'; + + const SiDebridlink: IconType = React.forwardRef(function SiDebridlink({title = 'Debrid-Link', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDebridlink as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDecapcms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDecapcms.tsx new file mode 100644 index 000000000..c703c2765 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDecapcms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDecapcmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0082'; + + const SiDecapcms: IconType = React.forwardRef(function SiDecapcms({title = 'Decap CMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDecapcms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDecentraland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDecentraland.tsx new file mode 100644 index 000000000..5ad13237f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDecentraland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDecentralandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF2D55'; + + const SiDecentraland: IconType = React.forwardRef(function SiDecentraland({title = 'Decentraland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDecentraland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDedge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDedge.tsx new file mode 100644 index 000000000..a30e80390 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDedge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDedgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#432975'; + + const SiDedge: IconType = React.forwardRef(function SiDedge({title = 'D-EDGE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDedge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepcool.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepcool.tsx new file mode 100644 index 000000000..5a9fc4e78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepcool.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeepcoolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#068584'; + + const SiDeepcool: IconType = React.forwardRef(function SiDeepcool({title = 'DeepCool', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeepcool as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepgram.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepgram.tsx new file mode 100644 index 000000000..a017a0ab0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepgram.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeepgramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13EF93'; + + const SiDeepgram: IconType = React.forwardRef(function SiDeepgram({title = 'Deepgram', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeepgram as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepin.tsx new file mode 100644 index 000000000..e86e35794 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeepinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007CFF'; + + const SiDeepin: IconType = React.forwardRef(function SiDeepin({title = 'deepin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeepin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepl.tsx new file mode 100644 index 000000000..0a56ef834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeeplProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0F2B46'; + + const SiDeepl: IconType = React.forwardRef(function SiDeepl({title = 'DeepL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeepl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepmind.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepmind.tsx new file mode 100644 index 000000000..873f40b50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepmind.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeepmindProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiDeepmind: IconType = React.forwardRef(function SiDeepmind({title = 'DeepMind', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeepmind as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepnote.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepnote.tsx new file mode 100644 index 000000000..5e50e5dfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeepnote.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeepnoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3793EF'; + + const SiDeepnote: IconType = React.forwardRef(function SiDeepnote({title = 'Deepnote', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeepnote as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeezer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeezer.tsx new file mode 100644 index 000000000..9c04211a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeezer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeezerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A238FF'; + + const SiDeezer: IconType = React.forwardRef(function SiDeezer({title = 'Deezer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeezer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeliveroo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeliveroo.tsx new file mode 100644 index 000000000..78a11c93b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeliveroo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeliverooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CCBC'; + + const SiDeliveroo: IconType = React.forwardRef(function SiDeliveroo({title = 'Deliveroo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeliveroo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDell.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDell.tsx new file mode 100644 index 000000000..199e902a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDell.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007DB8'; + + const SiDell: IconType = React.forwardRef(function SiDell({title = 'Dell', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDell as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelonghi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelonghi.tsx new file mode 100644 index 000000000..cd6518f2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelonghi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDelonghiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#072240'; + + const SiDelonghi: IconType = React.forwardRef(function SiDelonghi({title = 'DeLonghi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDelonghi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelphi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelphi.tsx new file mode 100644 index 000000000..ab0a150db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelphi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDelphiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E62431'; + + const SiDelphi: IconType = React.forwardRef(function SiDelphi({title = 'Delphi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDelphi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelta.tsx new file mode 100644 index 000000000..3ed5c57e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDelta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeltaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003366'; + + const SiDelta: IconType = React.forwardRef(function SiDelta({title = 'Delta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDelta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeluge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeluge.tsx new file mode 100644 index 000000000..41a028890 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeluge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDelugeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#094491'; + + const SiDeluge: IconType = React.forwardRef(function SiDeluge({title = 'Deluge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeluge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeno.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeno.tsx new file mode 100644 index 000000000..21379dc6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeno.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDenoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDeno: IconType = React.forwardRef(function SiDeno({title = 'Deno', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeno as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDenodeploy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDenodeploy.tsx new file mode 100644 index 000000000..eee1d0508 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDenodeploy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDenodeployProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002633'; + + const SiDenodeploy: IconType = React.forwardRef(function SiDenodeploy({title = 'Deno Deploy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDenodeploy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDenon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDenon.tsx new file mode 100644 index 000000000..e04489332 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDenon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDenonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B131A'; + + const SiDenon: IconType = React.forwardRef(function SiDenon({title = 'Denon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDenon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDependabot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDependabot.tsx new file mode 100644 index 000000000..f0835f2e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDependabot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDependabotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#025E8C'; + + const SiDependabot: IconType = React.forwardRef(function SiDependabot({title = 'Dependabot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDependabot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDependencycheck.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDependencycheck.tsx new file mode 100644 index 000000000..4a246f61c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDependencycheck.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDependencycheckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F78D0A'; + + const SiDependencycheck: IconType = React.forwardRef(function SiDependencycheck({title = 'OWASP Dependency-Check', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDependencycheck as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDepositphotos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDepositphotos.tsx new file mode 100644 index 000000000..53762a38a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDepositphotos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDepositphotosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDepositphotos: IconType = React.forwardRef(function SiDepositphotos({title = 'Depositphotos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDepositphotos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDerspiegel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDerspiegel.tsx new file mode 100644 index 000000000..8256b1f49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDerspiegel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDerspiegelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E64415'; + + const SiDerspiegel: IconType = React.forwardRef(function SiDerspiegel({title = 'Der Spiegel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDerspiegel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschebahn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschebahn.tsx new file mode 100644 index 000000000..413664a46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschebahn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeutschebahnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F01414'; + + const SiDeutschebahn: IconType = React.forwardRef(function SiDeutschebahn({title = 'Deutsche Bahn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeutschebahn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschebank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschebank.tsx new file mode 100644 index 000000000..d2e15fcd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschebank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeutschebankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0018A8'; + + const SiDeutschebank: IconType = React.forwardRef(function SiDeutschebank({title = 'Deutsche Bank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeutschebank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschepost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschepost.tsx new file mode 100644 index 000000000..3bc89512f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschepost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeutschepostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCC00'; + + const SiDeutschepost: IconType = React.forwardRef(function SiDeutschepost({title = 'Deutsche Post', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeutschepost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschetelekom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschetelekom.tsx new file mode 100644 index 000000000..c3ff2194b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschetelekom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeutschetelekomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E20074'; + + const SiDeutschetelekom: IconType = React.forwardRef(function SiDeutschetelekom({title = 'Deutsche Telekom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeutschetelekom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschewelle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschewelle.tsx new file mode 100644 index 000000000..3c1d248c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeutschewelle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeutschewelleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05B2FC'; + + const SiDeutschewelle: IconType = React.forwardRef(function SiDeutschewelle({title = 'Deutsche Welle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeutschewelle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevbox.tsx new file mode 100644 index 000000000..8bd56605d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#280459'; + + const SiDevbox: IconType = React.forwardRef(function SiDevbox({title = 'Devbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevdotto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevdotto.tsx new file mode 100644 index 000000000..8a7bfb77f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevdotto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevdottoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0A0A'; + + const SiDevdotto: IconType = React.forwardRef(function SiDevdotto({title = 'dev.to', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevdotto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevelopmentcontainers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevelopmentcontainers.tsx new file mode 100644 index 000000000..f421076ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevelopmentcontainers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevelopmentcontainersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2753E3'; + + const SiDevelopmentcontainers: IconType = React.forwardRef(function SiDevelopmentcontainers({title = 'Development Containers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevelopmentcontainers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevexpress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevexpress.tsx new file mode 100644 index 000000000..cc6cb0261 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevexpress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevexpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7200'; + + const SiDevexpress: IconType = React.forwardRef(function SiDevexpress({title = 'DevExpress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevexpress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeviantart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeviantart.tsx new file mode 100644 index 000000000..523e2c171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDeviantart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDeviantartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05CC47'; + + const SiDeviantart: IconType = React.forwardRef(function SiDeviantart({title = 'DeviantArt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDeviantart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevpost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevpost.tsx new file mode 100644 index 000000000..f52f8c528 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevpost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevpostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003E54'; + + const SiDevpost: IconType = React.forwardRef(function SiDevpost({title = 'Devpost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevpost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevrant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevrant.tsx new file mode 100644 index 000000000..0f3a7e95f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevrant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevrantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F99A66'; + + const SiDevrant: IconType = React.forwardRef(function SiDevrant({title = 'devRant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevrant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevuan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevuan.tsx new file mode 100644 index 000000000..5dd9756c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDevuan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDevuanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004489'; + + const SiDevuan: IconType = React.forwardRef(function SiDevuan({title = 'Devuan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDevuan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDgraph.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDgraph.tsx new file mode 100644 index 000000000..b3db792f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDgraph.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDgraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E50695'; + + const SiDgraph: IconType = React.forwardRef(function SiDgraph({title = 'Dgraph', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDgraph as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDhl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDhl.tsx new file mode 100644 index 000000000..71c790c8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDhl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDhlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCC00'; + + const SiDhl: IconType = React.forwardRef(function SiDhl({title = 'DHL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDhl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiagramsdotnet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiagramsdotnet.tsx new file mode 100644 index 000000000..d382c2f3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiagramsdotnet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiagramsdotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F08705'; + + const SiDiagramsdotnet: IconType = React.forwardRef(function SiDiagramsdotnet({title = 'diagrams.net', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiagramsdotnet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDialogflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDialogflow.tsx new file mode 100644 index 000000000..407700cab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDialogflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDialogflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9800'; + + const SiDialogflow: IconType = React.forwardRef(function SiDialogflow({title = 'Dialogflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDialogflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiaspora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiaspora.tsx new file mode 100644 index 000000000..c81bc579b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiaspora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiasporaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDiaspora: IconType = React.forwardRef(function SiDiaspora({title = 'Diaspora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiaspora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDictionarydotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDictionarydotcom.tsx new file mode 100644 index 000000000..da966c6da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDictionarydotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDictionarydotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0049D7'; + + const SiDictionarydotcom: IconType = React.forwardRef(function SiDictionarydotcom({title = 'Dictionary.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDictionarydotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigg.tsx new file mode 100644 index 000000000..af7b61be5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDigg: IconType = React.forwardRef(function SiDigg({title = 'Digg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDigg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigikeyelectronics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigikeyelectronics.tsx new file mode 100644 index 000000000..51efeb1e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigikeyelectronics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDigikeyelectronicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiDigikeyelectronics: IconType = React.forwardRef(function SiDigikeyelectronics({title = 'Digi-Key Electronics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDigikeyelectronics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigitalocean.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigitalocean.tsx new file mode 100644 index 000000000..08a28ebc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDigitalocean.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDigitaloceanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0080FF'; + + const SiDigitalocean: IconType = React.forwardRef(function SiDigitalocean({title = 'DigitalOcean', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDigitalocean as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDinersclub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDinersclub.tsx new file mode 100644 index 000000000..abe1c0ed7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDinersclub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDinersclubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004C97'; + + const SiDinersclub: IconType = React.forwardRef(function SiDinersclub({title = 'Diners Club', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDinersclub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDior.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDior.tsx new file mode 100644 index 000000000..51c3596c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDior.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDior: IconType = React.forwardRef(function SiDior({title = 'Dior', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDior as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDirectus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDirectus.tsx new file mode 100644 index 000000000..91d6d86ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDirectus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDirectusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#263238'; + + const SiDirectus: IconType = React.forwardRef(function SiDirectus({title = 'Directus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDirectus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscogs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscogs.tsx new file mode 100644 index 000000000..2369e0be0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscogs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiscogsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiDiscogs: IconType = React.forwardRef(function SiDiscogs({title = 'Discogs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiscogs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscord.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscord.tsx new file mode 100644 index 000000000..f5fcdae0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscord.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiscordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5865F2'; + + const SiDiscord: IconType = React.forwardRef(function SiDiscord({title = 'Discord', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiscord as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscorddotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscorddotjs.tsx new file mode 100644 index 000000000..e8fc9dac9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscorddotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiscorddotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5865F2'; + + const SiDiscorddotjs: IconType = React.forwardRef(function SiDiscorddotjs({title = 'discord.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiscorddotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscourse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscourse.tsx new file mode 100644 index 000000000..e3955eb30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscourse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiscourseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDiscourse: IconType = React.forwardRef(function SiDiscourse({title = 'Discourse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiscourse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscover.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscover.tsx new file mode 100644 index 000000000..cc1959078 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDiscover.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDiscoverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6000'; + + const SiDiscover: IconType = React.forwardRef(function SiDiscover({title = 'Discover', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDiscover as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDisqus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDisqus.tsx new file mode 100644 index 000000000..ca2f84a9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDisqus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDisqusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E9FFF'; + + const SiDisqus: IconType = React.forwardRef(function SiDisqus({title = 'Disqus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDisqus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDisroot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDisroot.tsx new file mode 100644 index 000000000..a9895a111 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDisroot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDisrootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#50162D'; + + const SiDisroot: IconType = React.forwardRef(function SiDisroot({title = 'Disroot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDisroot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDistrobox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDistrobox.tsx new file mode 100644 index 000000000..5e9ad32b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDistrobox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDistroboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4F433C'; + + const SiDistrobox: IconType = React.forwardRef(function SiDistrobox({title = 'Distrobox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDistrobox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDistrokid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDistrokid.tsx new file mode 100644 index 000000000..4ca66e7f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDistrokid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDistrokidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiDistrokid: IconType = React.forwardRef(function SiDistrokid({title = 'Distrokid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDistrokid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDjango.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDjango.tsx new file mode 100644 index 000000000..72d2f5934 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDjango.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDjangoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#092E20'; + + const SiDjango: IconType = React.forwardRef(function SiDjango({title = 'Django', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDjango as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDji.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDji.tsx new file mode 100644 index 000000000..be3537c9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDji.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDjiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDji: IconType = React.forwardRef(function SiDji({title = 'DJI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDji as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDlib.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDlib.tsx new file mode 100644 index 000000000..96b492cac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDlib.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDlibProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008000'; + + const SiDlib: IconType = React.forwardRef(function SiDlib({title = 'Dlib', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDlib as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDlna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDlna.tsx new file mode 100644 index 000000000..ecbd515da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDlna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDlnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#48A842'; + + const SiDlna: IconType = React.forwardRef(function SiDlna({title = 'DLNA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDlna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDm.tsx new file mode 100644 index 000000000..79b88ff3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002878'; + + const SiDm: IconType = React.forwardRef(function SiDm({title = 'dm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDmm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDmm.tsx new file mode 100644 index 000000000..777c6907b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDmm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDmmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDmm: IconType = React.forwardRef(function SiDmm({title = 'DMM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDmm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocker.tsx new file mode 100644 index 000000000..71dab29bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDockerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2496ED'; + + const SiDocker: IconType = React.forwardRef(function SiDocker({title = 'Docker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDocker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocsdotrs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocsdotrs.tsx new file mode 100644 index 000000000..90cea94f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocsdotrs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDocsdotrsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDocsdotrs: IconType = React.forwardRef(function SiDocsdotrs({title = 'Docs.rs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDocsdotrs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocsify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocsify.tsx new file mode 100644 index 000000000..271b7db86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocsify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDocsifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2ECE53'; + + const SiDocsify: IconType = React.forwardRef(function SiDocsify({title = 'Docsify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDocsify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoctrine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoctrine.tsx new file mode 100644 index 000000000..239a89fda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoctrine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDoctrineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC6A31'; + + const SiDoctrine: IconType = React.forwardRef(function SiDoctrine({title = 'Doctrine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDoctrine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocusaurus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocusaurus.tsx new file mode 100644 index 000000000..8ffe166c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDocusaurus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDocusaurusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3ECC5F'; + + const SiDocusaurus: IconType = React.forwardRef(function SiDocusaurus({title = 'Docusaurus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDocusaurus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDodopayments.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDodopayments.tsx new file mode 100644 index 000000000..18ae405b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDodopayments.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDodopaymentsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C6FE1E'; + + const SiDodopayments: IconType = React.forwardRef(function SiDodopayments({title = 'Dodo Payments', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDodopayments as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDogecoin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDogecoin.tsx new file mode 100644 index 000000000..0643112b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDogecoin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDogecoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C2A633'; + + const SiDogecoin: IconType = React.forwardRef(function SiDogecoin({title = 'Dogecoin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDogecoin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoi.tsx new file mode 100644 index 000000000..446cc48cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDoiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAB70C'; + + const SiDoi: IconType = React.forwardRef(function SiDoi({title = 'DOI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDoi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolby.tsx new file mode 100644 index 000000000..132c04e62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDolbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiDolby: IconType = React.forwardRef(function SiDolby({title = 'Dolby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDolby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolibarr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolibarr.tsx new file mode 100644 index 000000000..fba732068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolibarr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDolibarrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#263C5C'; + + const SiDolibarr: IconType = React.forwardRef(function SiDolibarr({title = 'Dolibarr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDolibarr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolphin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolphin.tsx new file mode 100644 index 000000000..7a6ff462f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDolphin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDolphinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AAFF'; + + const SiDolphin: IconType = React.forwardRef(function SiDolphin({title = 'Dolphin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDolphin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoordash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoordash.tsx new file mode 100644 index 000000000..f9efe86c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoordash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDoordashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3008'; + + const SiDoordash: IconType = React.forwardRef(function SiDoordash({title = 'DoorDash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDoordash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDota2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDota2.tsx new file mode 100644 index 000000000..3912b6aae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDota2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDota2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BF2E1A'; + + const SiDota2: IconType = React.forwardRef(function SiDota2({title = 'Dota 2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDota2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDotenv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDotenv.tsx new file mode 100644 index 000000000..fdf6274c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDotenv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDotenvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ECD53F'; + + const SiDotenv: IconType = React.forwardRef(function SiDotenv({title = '.ENV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDotenv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDotnet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDotnet.tsx new file mode 100644 index 000000000..9764c77a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDotnet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDotnetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#512BD4'; + + const SiDotnet: IconType = React.forwardRef(function SiDotnet({title = '.NET', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDotnet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDouban.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDouban.tsx new file mode 100644 index 000000000..efa2b6bf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDouban.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDoubanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D963D'; + + const SiDouban: IconType = React.forwardRef(function SiDouban({title = 'Douban', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDouban as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoubanread.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoubanread.tsx new file mode 100644 index 000000000..f823f59d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoubanread.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDoubanreadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24D2C8'; + + const SiDoubanread: IconType = React.forwardRef(function SiDoubanread({title = 'Douban Read', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDoubanread as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDovecot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDovecot.tsx new file mode 100644 index 000000000..26f1e51bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDovecot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDovecotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#54BCAB'; + + const SiDovecot: IconType = React.forwardRef(function SiDovecot({title = 'Dovecot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDovecot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDovetail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDovetail.tsx new file mode 100644 index 000000000..0a1d09277 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDovetail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDovetailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#190041'; + + const SiDovetail: IconType = React.forwardRef(function SiDovetail({title = 'Dovetail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDovetail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDowndetector.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDowndetector.tsx new file mode 100644 index 000000000..b117715ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDowndetector.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDowndetectorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF160A'; + + const SiDowndetector: IconType = React.forwardRef(function SiDowndetector({title = 'Downdetector', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDowndetector as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoxygen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoxygen.tsx new file mode 100644 index 000000000..f55577e11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDoxygen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDoxygenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C4AA8'; + + const SiDoxygen: IconType = React.forwardRef(function SiDoxygen({title = 'Doxygen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDoxygen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDpd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDpd.tsx new file mode 100644 index 000000000..6de34469c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDpd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDpdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC0032'; + + const SiDpd: IconType = React.forwardRef(function SiDpd({title = 'DPD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDpd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDragonframe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDragonframe.tsx new file mode 100644 index 000000000..0ec8bd029 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDragonframe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDragonframeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D4911E'; + + const SiDragonframe: IconType = React.forwardRef(function SiDragonframe({title = 'Dragonframe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDragonframe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDraugiemdotlv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDraugiemdotlv.tsx new file mode 100644 index 000000000..b1ff106df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDraugiemdotlv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDraugiemdotlvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiDraugiemdotlv: IconType = React.forwardRef(function SiDraugiemdotlv({title = 'Draugiem.lv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDraugiemdotlv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDreamstime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDreamstime.tsx new file mode 100644 index 000000000..c77c8c833 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDreamstime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDreamstimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#50A901'; + + const SiDreamstime: IconType = React.forwardRef(function SiDreamstime({title = 'Dreamstime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDreamstime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDribbble.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDribbble.tsx new file mode 100644 index 000000000..380c665b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDribbble.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDribbbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA4C89'; + + const SiDribbble: IconType = React.forwardRef(function SiDribbble({title = 'Dribbble', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDribbble as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrizzle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrizzle.tsx new file mode 100644 index 000000000..2d656c5e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrizzle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDrizzleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C5F74F'; + + const SiDrizzle: IconType = React.forwardRef(function SiDrizzle({title = 'Drizzle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDrizzle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrone.tsx new file mode 100644 index 000000000..27320ca01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDroneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiDrone: IconType = React.forwardRef(function SiDrone({title = 'Drone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDrone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrooble.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrooble.tsx new file mode 100644 index 000000000..4362b3f2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrooble.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDroobleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#19C4BE'; + + const SiDrooble: IconType = React.forwardRef(function SiDrooble({title = 'Drooble', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDrooble as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDropbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDropbox.tsx new file mode 100644 index 000000000..ce37b383d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDropbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDropboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0061FF'; + + const SiDropbox: IconType = React.forwardRef(function SiDropbox({title = 'Dropbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDropbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrupal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrupal.tsx new file mode 100644 index 000000000..88efa9742 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDrupal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDrupalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0678BE'; + + const SiDrupal: IconType = React.forwardRef(function SiDrupal({title = 'Drupal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDrupal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDsautomobiles.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDsautomobiles.tsx new file mode 100644 index 000000000..a3847f1ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDsautomobiles.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDsautomobilesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D1717'; + + const SiDsautomobiles: IconType = React.forwardRef(function SiDsautomobiles({title = 'DS Automobiles', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDsautomobiles as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDts.tsx new file mode 100644 index 000000000..77c5a4987 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDtsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F98B2B'; + + const SiDts: IconType = React.forwardRef(function SiDts({title = 'DTS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDtube.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDtube.tsx new file mode 100644 index 000000000..242f86f4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDtube.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDtubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F01A30'; + + const SiDtube: IconType = React.forwardRef(function SiDtube({title = 'DTube', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDtube as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDucati.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDucati.tsx new file mode 100644 index 000000000..726421a2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDucati.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDucatiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiDucati: IconType = React.forwardRef(function SiDucati({title = 'Ducati', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDucati as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuckdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuckdb.tsx new file mode 100644 index 000000000..3d8f26fc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuckdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDuckdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFF000'; + + const SiDuckdb: IconType = React.forwardRef(function SiDuckdb({title = 'DuckDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDuckdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuckduckgo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuckduckgo.tsx new file mode 100644 index 000000000..d6e2c006a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuckduckgo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDuckduckgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DE5833'; + + const SiDuckduckgo: IconType = React.forwardRef(function SiDuckduckgo({title = 'DuckDuckGo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDuckduckgo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDungeonsanddragons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDungeonsanddragons.tsx new file mode 100644 index 000000000..64bcbe88b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDungeonsanddragons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDungeonsanddragonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiDungeonsanddragons: IconType = React.forwardRef(function SiDungeonsanddragons({title = 'Dungeons & Dragons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDungeonsanddragons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDunked.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDunked.tsx new file mode 100644 index 000000000..4ac99e312 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDunked.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDunkedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2DA9D7'; + + const SiDunked: IconType = React.forwardRef(function SiDunked({title = 'Dunked', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDunked as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDunzo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDunzo.tsx new file mode 100644 index 000000000..04a018f23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDunzo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDunzoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D290'; + + const SiDunzo: IconType = React.forwardRef(function SiDunzo({title = 'Dunzo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDunzo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuolingo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuolingo.tsx new file mode 100644 index 000000000..92b2674ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuolingo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDuolingoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#58CC02'; + + const SiDuolingo: IconType = React.forwardRef(function SiDuolingo({title = 'Duolingo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDuolingo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuplicati.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuplicati.tsx new file mode 100644 index 000000000..38cf348a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDuplicati.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDuplicatiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E3A8A'; + + const SiDuplicati: IconType = React.forwardRef(function SiDuplicati({title = 'Duplicati', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDuplicati as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDvc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDvc.tsx new file mode 100644 index 000000000..70db770a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDvc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDvcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13ADC7'; + + const SiDvc: IconType = React.forwardRef(function SiDvc({title = 'DVC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDvc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDwavesystems.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDwavesystems.tsx new file mode 100644 index 000000000..34254e56a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDwavesystems.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDwavesystemsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008CD7'; + + const SiDwavesystems: IconType = React.forwardRef(function SiDwavesystems({title = 'D-Wave Systems', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDwavesystems as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDwm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDwm.tsx new file mode 100644 index 000000000..e91ee85ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDwm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDwmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1177AA'; + + const SiDwm: IconType = React.forwardRef(function SiDwm({title = 'dwm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDwm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiDynatrace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDynatrace.tsx new file mode 100644 index 000000000..061637678 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiDynatrace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiDynatraceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1496FF'; + + const SiDynatrace: IconType = React.forwardRef(function SiDynatrace({title = 'Dynatrace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiDynatrace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiE.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiE.tsx new file mode 100644 index 000000000..d01189b07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiE.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiE: IconType = React.forwardRef(function SiE({title = '/e/', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiE as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiE3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiE3.tsx new file mode 100644 index 000000000..ea713262d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiE3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiE3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E73D2F'; + + const SiE3: IconType = React.forwardRef(function SiE3({title = 'E3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiE3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEa.tsx new file mode 100644 index 000000000..9e9bcd784 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiEa: IconType = React.forwardRef(function SiEa({title = 'EA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEac.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEac.tsx new file mode 100644 index 000000000..d4a3b7927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEac.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEacProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiEac: IconType = React.forwardRef(function SiEac({title = 'EAC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEac as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEagle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEagle.tsx new file mode 100644 index 000000000..5a4924879 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEagle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEagleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0072EF'; + + const SiEagle: IconType = React.forwardRef(function SiEagle({title = 'Eagle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEagle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEasyeda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEasyeda.tsx new file mode 100644 index 000000000..f58548cfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEasyeda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEasyedaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1765F6'; + + const SiEasyeda: IconType = React.forwardRef(function SiEasyeda({title = 'EasyEDA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEasyeda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEasyjet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEasyjet.tsx new file mode 100644 index 000000000..d4ca0f4b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEasyjet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEasyjetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiEasyjet: IconType = React.forwardRef(function SiEasyjet({title = 'easyJet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEasyjet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEbay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEbay.tsx new file mode 100644 index 000000000..b5f954ece --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEbay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEbayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E53238'; + + const SiEbay: IconType = React.forwardRef(function SiEbay({title = 'eBay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEbay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEbox.tsx new file mode 100644 index 000000000..a4f4d43a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BE2323'; + + const SiEbox: IconType = React.forwardRef(function SiEbox({title = 'EBOX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseadoptium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseadoptium.tsx new file mode 100644 index 000000000..7360c29f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseadoptium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEclipseadoptiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1464'; + + const SiEclipseadoptium: IconType = React.forwardRef(function SiEclipseadoptium({title = 'Eclipse Adoptium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEclipseadoptium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseche.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseche.tsx new file mode 100644 index 000000000..b56906b4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseche.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEclipsecheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#525C86'; + + const SiEclipseche: IconType = React.forwardRef(function SiEclipseche({title = 'Eclipse Che', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEclipseche as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseide.tsx new file mode 100644 index 000000000..a16bfa447 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipseide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEclipseideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C2255'; + + const SiEclipseide: IconType = React.forwardRef(function SiEclipseide({title = 'Eclipse IDE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEclipseide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsejetty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsejetty.tsx new file mode 100644 index 000000000..29bcf4ed9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsejetty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEclipsejettyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC390E'; + + const SiEclipsejetty: IconType = React.forwardRef(function SiEclipsejetty({title = 'Eclipse Jetty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEclipsejetty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsemosquitto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsemosquitto.tsx new file mode 100644 index 000000000..ff8191892 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsemosquitto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEclipsemosquittoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C5280'; + + const SiEclipsemosquitto: IconType = React.forwardRef(function SiEclipsemosquitto({title = 'Eclipse Mosquitto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEclipsemosquitto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsevertdotx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsevertdotx.tsx new file mode 100644 index 000000000..b80fd2eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEclipsevertdotx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEclipsevertdotxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#782A90'; + + const SiEclipsevertdotx: IconType = React.forwardRef(function SiEclipsevertdotx({title = 'Eclipse Vert.x', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEclipsevertdotx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEcosia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEcosia.tsx new file mode 100644 index 000000000..789bf847f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEcosia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEcosiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008009'; + + const SiEcosia: IconType = React.forwardRef(function SiEcosia({title = 'Ecosia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEcosia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEcovacs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEcovacs.tsx new file mode 100644 index 000000000..f089f3dbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEcovacs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEcovacsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E384B'; + + const SiEcovacs: IconType = React.forwardRef(function SiEcovacs({title = 'Ecovacs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEcovacs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdeka.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdeka.tsx new file mode 100644 index 000000000..ac8fba101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdeka.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEdekaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1B66B3'; + + const SiEdeka: IconType = React.forwardRef(function SiEdeka({title = 'EDEKA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEdeka as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdgeimpulse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdgeimpulse.tsx new file mode 100644 index 000000000..7cb5b6f61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdgeimpulse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEdgeimpulseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B47C2'; + + const SiEdgeimpulse: IconType = React.forwardRef(function SiEdgeimpulse({title = 'Edge Impulse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEdgeimpulse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEditorconfig.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEditorconfig.tsx new file mode 100644 index 000000000..ae7de12cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEditorconfig.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEditorconfigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FEFEFE'; + + const SiEditorconfig: IconType = React.forwardRef(function SiEditorconfig({title = 'EditorConfig', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEditorconfig as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdotleclerc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdotleclerc.tsx new file mode 100644 index 000000000..438d81c7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdotleclerc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEdotleclercProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066CC'; + + const SiEdotleclerc: IconType = React.forwardRef(function SiEdotleclerc({title = 'E.Leclerc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEdotleclerc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEducative.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEducative.tsx new file mode 100644 index 000000000..f47eab935 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEducative.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEducativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4951F5'; + + const SiEducative: IconType = React.forwardRef(function SiEducative({title = 'Educative', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEducative as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdx.tsx new file mode 100644 index 000000000..17f192967 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEdx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEdxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02262B'; + + const SiEdx: IconType = React.forwardRef(function SiEdx({title = 'edX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEdx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEffect.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEffect.tsx new file mode 100644 index 000000000..32f30d998 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEffect.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEffectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiEffect: IconType = React.forwardRef(function SiEffect({title = 'Effect', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEffect as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEgghead.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEgghead.tsx new file mode 100644 index 000000000..2efac4cd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEgghead.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEggheadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FCFBFA'; + + const SiEgghead: IconType = React.forwardRef(function SiEgghead({title = 'egghead', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEgghead as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEgnyte.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEgnyte.tsx new file mode 100644 index 000000000..5dfb76417 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEgnyte.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEgnyteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00968F'; + + const SiEgnyte: IconType = React.forwardRef(function SiEgnyte({title = 'Egnyte', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEgnyte as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEight.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEight.tsx new file mode 100644 index 000000000..0092b0893 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEight.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEightProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0054FF'; + + const SiEight: IconType = React.forwardRef(function SiEight({title = 'Eight', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEight as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEightsleep.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEightsleep.tsx new file mode 100644 index 000000000..a4c6e92ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEightsleep.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEightsleepProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#262729'; + + const SiEightsleep: IconType = React.forwardRef(function SiEightsleep({title = 'Eight Sleep', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEightsleep as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEjs.tsx new file mode 100644 index 000000000..02177eef1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B4CA65'; + + const SiEjs: IconType = React.forwardRef(function SiEjs({title = 'EJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElastic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElastic.tsx new file mode 100644 index 000000000..2cc806acf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElastic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElasticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiElastic: IconType = React.forwardRef(function SiElastic({title = 'Elastic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElastic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticcloud.tsx new file mode 100644 index 000000000..c4a7da17e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElasticcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiElasticcloud: IconType = React.forwardRef(function SiElasticcloud({title = 'Elastic Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElasticcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticsearch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticsearch.tsx new file mode 100644 index 000000000..220221bc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticsearch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElasticsearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiElasticsearch: IconType = React.forwardRef(function SiElasticsearch({title = 'Elasticsearch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElasticsearch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticstack.tsx new file mode 100644 index 000000000..77d9829ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElasticstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElasticstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiElasticstack: IconType = React.forwardRef(function SiElasticstack({title = 'Elastic Stack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElasticstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElavon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElavon.tsx new file mode 100644 index 000000000..90e3ecff7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElavon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElavonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C2074'; + + const SiElavon: IconType = React.forwardRef(function SiElavon({title = 'Elavon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElavon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectron.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectron.tsx new file mode 100644 index 000000000..cb32d7230 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectron.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElectronProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#47848F'; + + const SiElectron: IconType = React.forwardRef(function SiElectron({title = 'Electron', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElectron as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectronbuilder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectronbuilder.tsx new file mode 100644 index 000000000..5b62454c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectronbuilder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElectronbuilderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiElectronbuilder: IconType = React.forwardRef(function SiElectronbuilder({title = 'electron-builder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElectronbuilder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectronfiddle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectronfiddle.tsx new file mode 100644 index 000000000..f57d82ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElectronfiddle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElectronfiddleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E79537'; + + const SiElectronfiddle: IconType = React.forwardRef(function SiElectronfiddle({title = 'Electron Fiddle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElectronfiddle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElegoo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElegoo.tsx new file mode 100644 index 000000000..d07a728c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElegoo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElegooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C3A83'; + + const SiElegoo: IconType = React.forwardRef(function SiElegoo({title = 'Elegoo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElegoo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElement.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElement.tsx new file mode 100644 index 000000000..588ab65c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElement.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElementProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0DBD8B'; + + const SiElement: IconType = React.forwardRef(function SiElement({title = 'Element', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElement as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElementary.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElementary.tsx new file mode 100644 index 000000000..08e7cc9e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElementary.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElementaryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#64BAFF'; + + const SiElementary: IconType = React.forwardRef(function SiElementary({title = 'elementary', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElementary as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElementor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElementor.tsx new file mode 100644 index 000000000..334deedb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElementor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElementorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#92003B'; + + const SiElementor: IconType = React.forwardRef(function SiElementor({title = 'Elementor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElementor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElevenlabs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElevenlabs.tsx new file mode 100644 index 000000000..c1e04d923 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElevenlabs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElevenlabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiElevenlabs: IconType = React.forwardRef(function SiElevenlabs({title = 'ElevenLabs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElevenlabs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEleventy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEleventy.tsx new file mode 100644 index 000000000..b9f9671a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEleventy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEleventyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const SiEleventy: IconType = React.forwardRef(function SiEleventy({title = 'Eleventy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEleventy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElgato.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElgato.tsx new file mode 100644 index 000000000..2af2e3a16 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElgato.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElgatoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#101010'; + + const SiElgato: IconType = React.forwardRef(function SiElgato({title = 'Elgato', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElgato as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElixir.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElixir.tsx new file mode 100644 index 000000000..ae17a5b37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElixir.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElixirProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B275F'; + + const SiElixir: IconType = React.forwardRef(function SiElixir({title = 'Elixir', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElixir as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElk.tsx new file mode 100644 index 000000000..45cb1d42d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA9E44'; + + const SiElk: IconType = React.forwardRef(function SiElk({title = 'Elk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElm.tsx new file mode 100644 index 000000000..14b38fa20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1293D8'; + + const SiElm: IconType = React.forwardRef(function SiElm({title = 'Elm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiElsevier.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElsevier.tsx new file mode 100644 index 000000000..7c83df709 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiElsevier.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiElsevierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6C00'; + + const SiElsevier: IconType = React.forwardRef(function SiElsevier({title = 'Elsevier', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiElsevier as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmbarcadero.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmbarcadero.tsx new file mode 100644 index 000000000..6fc288c46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmbarcadero.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEmbarcaderoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1F35'; + + const SiEmbarcadero: IconType = React.forwardRef(function SiEmbarcadero({title = 'Embarcadero', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEmbarcadero as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmbark.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmbark.tsx new file mode 100644 index 000000000..78de7602f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmbark.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEmbarkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiEmbark: IconType = React.forwardRef(function SiEmbark({title = 'Embark', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEmbark as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmberdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmberdotjs.tsx new file mode 100644 index 000000000..137381875 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmberdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEmberdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E04E39'; + + const SiEmberdotjs: IconType = React.forwardRef(function SiEmberdotjs({title = 'Ember.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEmberdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmby.tsx new file mode 100644 index 000000000..e67ac8834 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEmbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#52B54B'; + + const SiEmby: IconType = React.forwardRef(function SiEmby({title = 'Emby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEmby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmirates.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmirates.tsx new file mode 100644 index 000000000..f0895bf8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmirates.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEmiratesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D71921'; + + const SiEmirates: IconType = React.forwardRef(function SiEmirates({title = 'Emirates', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEmirates as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmlakjet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmlakjet.tsx new file mode 100644 index 000000000..0033ee953 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEmlakjet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEmlakjetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0AE524'; + + const SiEmlakjet: IconType = React.forwardRef(function SiEmlakjet({title = 'Emlakjet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEmlakjet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEndeavouros.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEndeavouros.tsx new file mode 100644 index 000000000..8bc123ae2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEndeavouros.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEndeavourosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7F7FFF'; + + const SiEndeavouros: IconType = React.forwardRef(function SiEndeavouros({title = 'EndeavourOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEndeavouros as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnpass.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnpass.tsx new file mode 100644 index 000000000..a89489f12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnpass.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEnpassProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D47A1'; + + const SiEnpass: IconType = React.forwardRef(function SiEnpass({title = 'Enpass', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEnpass as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEns.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEns.tsx new file mode 100644 index 000000000..8bdaf7104 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEns.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEnsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0080BC'; + + const SiEns: IconType = React.forwardRef(function SiEns({title = 'ENS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEns as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnte.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnte.tsx new file mode 100644 index 000000000..45c5882b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnte.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEnteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00BC45'; + + const SiEnte: IconType = React.forwardRef(function SiEnte({title = 'Ente', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEnte as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnterprisedb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnterprisedb.tsx new file mode 100644 index 000000000..c31ddc69a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnterprisedb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEnterprisedbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3E00'; + + const SiEnterprisedb: IconType = React.forwardRef(function SiEnterprisedb({title = 'EnterpriseDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEnterprisedb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnvato.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnvato.tsx new file mode 100644 index 000000000..8c303b34f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnvato.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEnvatoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#87E64B'; + + const SiEnvato: IconType = React.forwardRef(function SiEnvato({title = 'Envato', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEnvato as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnvoyproxy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnvoyproxy.tsx new file mode 100644 index 000000000..e78bfc706 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEnvoyproxy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEnvoyproxyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AC6199'; + + const SiEnvoyproxy: IconType = React.forwardRef(function SiEnvoyproxy({title = 'Envoy Proxy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEnvoyproxy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpel.tsx new file mode 100644 index 000000000..9feda1bda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEpelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC0000'; + + const SiEpel: IconType = React.forwardRef(function SiEpel({title = 'EPEL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEpel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpicgames.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpicgames.tsx new file mode 100644 index 000000000..e4d073a6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpicgames.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEpicgamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#313131'; + + const SiEpicgames: IconType = React.forwardRef(function SiEpicgames({title = 'Epic Games', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEpicgames as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpson.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpson.tsx new file mode 100644 index 000000000..5fb120fd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEpson.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEpsonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003399'; + + const SiEpson: IconType = React.forwardRef(function SiEpson({title = 'Epson', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEpson as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEquinixmetal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEquinixmetal.tsx new file mode 100644 index 000000000..7d916e86f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEquinixmetal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEquinixmetalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED2224'; + + const SiEquinixmetal: IconType = React.forwardRef(function SiEquinixmetal({title = 'Equinix Metal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEquinixmetal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEraser.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEraser.tsx new file mode 100644 index 000000000..49a2ea264 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEraser.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEraserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC2C40'; + + const SiEraser: IconType = React.forwardRef(function SiEraser({title = 'Eraser', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEraser as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEricsson.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEricsson.tsx new file mode 100644 index 000000000..36049b1ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEricsson.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEricssonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0082F0'; + + const SiEricsson: IconType = React.forwardRef(function SiEricsson({title = 'Ericsson', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEricsson as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiErlang.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiErlang.tsx new file mode 100644 index 000000000..8bfb086a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiErlang.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiErlangProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A90533'; + + const SiErlang: IconType = React.forwardRef(function SiErlang({title = 'Erlang', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiErlang as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiErpnext.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiErpnext.tsx new file mode 100644 index 000000000..6914be7c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiErpnext.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiErpnextProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0089FF'; + + const SiErpnext: IconType = React.forwardRef(function SiErpnext({title = 'ERPNext', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiErpnext as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsbuild.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsbuild.tsx new file mode 100644 index 000000000..1f5d52a95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsbuild.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEsbuildProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCF00'; + + const SiEsbuild: IconType = React.forwardRef(function SiEsbuild({title = 'esbuild', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEsbuild as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsea.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsea.tsx new file mode 100644 index 000000000..850a17ace --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsea.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEseaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E9648'; + + const SiEsea: IconType = React.forwardRef(function SiEsea({title = 'ESEA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEsea as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEslgaming.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEslgaming.tsx new file mode 100644 index 000000000..64276887e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEslgaming.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEslgamingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFF09'; + + const SiEslgaming: IconType = React.forwardRef(function SiEslgaming({title = 'ESLGaming', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEslgaming as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEslint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEslint.tsx new file mode 100644 index 000000000..078fbc6b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEslint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEslintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B32C3'; + + const SiEslint: IconType = React.forwardRef(function SiEslint({title = 'ESLint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEslint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsotericsoftware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsotericsoftware.tsx new file mode 100644 index 000000000..dd705ed15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsotericsoftware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEsotericsoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3FA9F5'; + + const SiEsotericsoftware: IconType = React.forwardRef(function SiEsotericsoftware({title = 'Esoteric Software', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEsotericsoftware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsphome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsphome.tsx new file mode 100644 index 000000000..bcea342a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsphome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEsphomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiEsphome: IconType = React.forwardRef(function SiEsphome({title = 'ESPHome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEsphome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEspressif.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEspressif.tsx new file mode 100644 index 000000000..c13f3e119 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEspressif.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEspressifProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E7352C'; + + const SiEspressif: IconType = React.forwardRef(function SiEspressif({title = 'Espressif', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEspressif as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsri.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsri.tsx new file mode 100644 index 000000000..bb5f24823 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEsri.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEsriProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiEsri: IconType = React.forwardRef(function SiEsri({title = 'ESRI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEsri as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtcd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtcd.tsx new file mode 100644 index 000000000..2c0b2d612 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtcd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEtcdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#419EDA'; + + const SiEtcd: IconType = React.forwardRef(function SiEtcd({title = 'etcd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEtcd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthereum.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthereum.tsx new file mode 100644 index 000000000..cf97c43ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthereum.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEthereumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C3C3D'; + + const SiEthereum: IconType = React.forwardRef(function SiEthereum({title = 'Ethereum', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEthereum as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthers.tsx new file mode 100644 index 000000000..ad9568d32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEthersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2535A0'; + + const SiEthers: IconType = React.forwardRef(function SiEthers({title = 'Ethers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEthers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthiopianairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthiopianairlines.tsx new file mode 100644 index 000000000..486dd8865 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEthiopianairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEthiopianairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#648B1A'; + + const SiEthiopianairlines: IconType = React.forwardRef(function SiEthiopianairlines({title = 'Ethiopian Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEthiopianairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtihadairways.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtihadairways.tsx new file mode 100644 index 000000000..879dc4f66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtihadairways.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEtihadairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BD8B13'; + + const SiEtihadairways: IconType = React.forwardRef(function SiEtihadairways({title = 'Etihad Airways', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEtihadairways as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtsy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtsy.tsx new file mode 100644 index 000000000..d0e405d1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEtsy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEtsyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F16521'; + + const SiEtsy: IconType = React.forwardRef(function SiEtsy({title = 'Etsy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEtsy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEuropeanunion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEuropeanunion.tsx new file mode 100644 index 000000000..99c671c58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEuropeanunion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEuropeanunionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003399'; + + const SiEuropeanunion: IconType = React.forwardRef(function SiEuropeanunion({title = 'European Union', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEuropeanunion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEventstore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEventstore.tsx new file mode 100644 index 000000000..b1997e081 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEventstore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEventstoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5AB552'; + + const SiEventstore: IconType = React.forwardRef(function SiEventstore({title = 'Event Store', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEventstore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEvernote.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEvernote.tsx new file mode 100644 index 000000000..c74280045 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEvernote.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEvernoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A82D'; + + const SiEvernote: IconType = React.forwardRef(function SiEvernote({title = 'Evernote', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEvernote as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEverydotorg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEverydotorg.tsx new file mode 100644 index 000000000..fc2898b17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEverydotorg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEverydotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2BD7B0'; + + const SiEverydotorg: IconType = React.forwardRef(function SiEverydotorg({title = 'Every.org', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEverydotorg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExcalidraw.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExcalidraw.tsx new file mode 100644 index 000000000..bfd61f6a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExcalidraw.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExcalidrawProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6965DB'; + + const SiExcalidraw: IconType = React.forwardRef(function SiExcalidraw({title = 'Excalidraw', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExcalidraw as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExercism.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExercism.tsx new file mode 100644 index 000000000..c8d8c4a2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExercism.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExercismProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009CAB'; + + const SiExercism: IconType = React.forwardRef(function SiExercism({title = 'Exercism', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExercism as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExordo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExordo.tsx new file mode 100644 index 000000000..1c324efb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExordo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExordoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DAA449'; + + const SiExordo: IconType = React.forwardRef(function SiExordo({title = 'Exordo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExordo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExoscale.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExoscale.tsx new file mode 100644 index 000000000..b4e14f790 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExoscale.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExoscaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA291C'; + + const SiExoscale: IconType = React.forwardRef(function SiExoscale({title = 'Exoscale', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExoscale as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpedia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpedia.tsx new file mode 100644 index 000000000..18bdc6719 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpedia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpediaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#191E3B'; + + const SiExpedia: IconType = React.forwardRef(function SiExpedia({title = 'Expedia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpedia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpensify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpensify.tsx new file mode 100644 index 000000000..4714049b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpensify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpensifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0185FF'; + + const SiExpensify: IconType = React.forwardRef(function SiExpensify({title = 'Expensify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpensify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpertsexchange.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpertsexchange.tsx new file mode 100644 index 000000000..d3ba31a5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpertsexchange.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpertsexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AAE7'; + + const SiExpertsexchange: IconType = React.forwardRef(function SiExpertsexchange({title = 'Experts Exchange', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpertsexchange as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpo.tsx new file mode 100644 index 000000000..d359dae95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C2024'; + + const SiExpo: IconType = React.forwardRef(function SiExpo({title = 'Expo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpress.tsx new file mode 100644 index 000000000..badd615da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiExpress: IconType = React.forwardRef(function SiExpress({title = 'Express', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpressdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpressdotcom.tsx new file mode 100644 index 000000000..3465ef2f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpressdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpressdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiExpressdotcom: IconType = React.forwardRef(function SiExpressdotcom({title = 'Express.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpressdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpressvpn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpressvpn.tsx new file mode 100644 index 000000000..a8f370d23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiExpressvpn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiExpressvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA3940'; + + const SiExpressvpn: IconType = React.forwardRef(function SiExpressvpn({title = 'ExpressVPN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiExpressvpn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiEyeem.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEyeem.tsx new file mode 100644 index 000000000..f1500d2d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiEyeem.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiEyeemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiEyeem: IconType = React.forwardRef(function SiEyeem({title = 'EyeEm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiEyeem as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiF1.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiF1.tsx new file mode 100644 index 000000000..27d04d6fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiF1.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiF1Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E10600'; + + const SiF1: IconType = React.forwardRef(function SiF1({title = 'F1', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiF1 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiF5.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiF5.tsx new file mode 100644 index 000000000..b3fba48ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiF5.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiF5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E4002B'; + + const SiF5: IconType = React.forwardRef(function SiF5({title = 'F5', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiF5 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebook.tsx new file mode 100644 index 000000000..80b4eac89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFacebookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0866FF'; + + const SiFacebook: IconType = React.forwardRef(function SiFacebook({title = 'Facebook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFacebook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebookgaming.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebookgaming.tsx new file mode 100644 index 000000000..3a1058253 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebookgaming.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFacebookgamingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005FED'; + + const SiFacebookgaming: IconType = React.forwardRef(function SiFacebookgaming({title = 'Facebook Gaming', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFacebookgaming as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebooklive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebooklive.tsx new file mode 100644 index 000000000..93b8656ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacebooklive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFacebookliveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED4242'; + + const SiFacebooklive: IconType = React.forwardRef(function SiFacebooklive({title = 'Facebook Live', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFacebooklive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFaceit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFaceit.tsx new file mode 100644 index 000000000..077cf2592 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFaceit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFaceitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5500'; + + const SiFaceit: IconType = React.forwardRef(function SiFaceit({title = 'FACEIT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFaceit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacepunch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacepunch.tsx new file mode 100644 index 000000000..a8fe8f6a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFacepunch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFacepunchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC1C24'; + + const SiFacepunch: IconType = React.forwardRef(function SiFacepunch({title = 'Facepunch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFacepunch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFairphone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFairphone.tsx new file mode 100644 index 000000000..8c14c55fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFairphone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFairphoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4495D1'; + + const SiFairphone: IconType = React.forwardRef(function SiFairphone({title = 'Fairphone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFairphone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFalco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFalco.tsx new file mode 100644 index 000000000..657d1e989 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFalco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFalcoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AEC7'; + + const SiFalco: IconType = React.forwardRef(function SiFalco({title = 'Falco', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFalco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFalcon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFalcon.tsx new file mode 100644 index 000000000..8ea7811f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFalcon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFalconProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0AD4E'; + + const SiFalcon: IconType = React.forwardRef(function SiFalcon({title = 'Falcon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFalcon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFampay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFampay.tsx new file mode 100644 index 000000000..8f732d05e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFampay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFampayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFAD00'; + + const SiFampay: IconType = React.forwardRef(function SiFampay({title = 'FamPay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFampay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFandango.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFandango.tsx new file mode 100644 index 000000000..187c321b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFandango.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFandangoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7300'; + + const SiFandango: IconType = React.forwardRef(function SiFandango({title = 'Fandango', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFandango as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFandom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFandom.tsx new file mode 100644 index 000000000..997de77d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFandom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFandomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA005A'; + + const SiFandom: IconType = React.forwardRef(function SiFandom({title = 'Fandom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFandom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFanfou.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFanfou.tsx new file mode 100644 index 000000000..31ddacce5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFanfou.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFanfouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CCFF'; + + const SiFanfou: IconType = React.forwardRef(function SiFanfou({title = 'Fanfou', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFanfou as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFantom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFantom.tsx new file mode 100644 index 000000000..fd2fdd345 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFantom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFantomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0928FF'; + + const SiFantom: IconType = React.forwardRef(function SiFantom({title = 'Fantom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFantom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFarcaster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFarcaster.tsx new file mode 100644 index 000000000..d91e4b410 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFarcaster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFarcasterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#855DCD'; + + const SiFarcaster: IconType = React.forwardRef(function SiFarcaster({title = 'Farcaster', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFarcaster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFareharbor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFareharbor.tsx new file mode 100644 index 000000000..d8bf1a6bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFareharbor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFareharborProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A6ECE'; + + const SiFareharbor: IconType = React.forwardRef(function SiFareharbor({title = 'FareHarbor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFareharbor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFarfetch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFarfetch.tsx new file mode 100644 index 000000000..4ca2c9dce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFarfetch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFarfetchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFarfetch: IconType = React.forwardRef(function SiFarfetch({title = 'FARFETCH', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFarfetch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastapi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastapi.tsx new file mode 100644 index 000000000..aa44c3f85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastapi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFastapiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009688'; + + const SiFastapi: IconType = React.forwardRef(function SiFastapi({title = 'FastAPI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFastapi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastify.tsx new file mode 100644 index 000000000..a732310f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFastifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFastify: IconType = React.forwardRef(function SiFastify({title = 'Fastify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFastify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastlane.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastlane.tsx new file mode 100644 index 000000000..1b279c907 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastlane.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFastlaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00F200'; + + const SiFastlane: IconType = React.forwardRef(function SiFastlane({title = 'Fastlane', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFastlane as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastly.tsx new file mode 100644 index 000000000..85b28a52a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFastly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFastlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF282D'; + + const SiFastly: IconType = React.forwardRef(function SiFastly({title = 'Fastly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFastly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFathom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFathom.tsx new file mode 100644 index 000000000..143410aaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFathom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFathomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9187FF'; + + const SiFathom: IconType = React.forwardRef(function SiFathom({title = 'Fathom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFathom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFauna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFauna.tsx new file mode 100644 index 000000000..34d620369 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFauna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFaunaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3A1AB6'; + + const SiFauna: IconType = React.forwardRef(function SiFauna({title = 'Fauna', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFauna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFavro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFavro.tsx new file mode 100644 index 000000000..58c073e1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFavro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFavroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#512DA8'; + + const SiFavro: IconType = React.forwardRef(function SiFavro({title = 'Favro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFavro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFcc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFcc.tsx new file mode 100644 index 000000000..05c8ba947 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFcc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFccProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C3664'; + + const SiFcc: IconType = React.forwardRef(function SiFcc({title = 'FCC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFcc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFdroid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFdroid.tsx new file mode 100644 index 000000000..db20a8171 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFdroid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFdroidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1976D2'; + + const SiFdroid: IconType = React.forwardRef(function SiFdroid({title = 'F-Droid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFdroid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFedex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFedex.tsx new file mode 100644 index 000000000..f5263b1eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFedex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFedexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4D148C'; + + const SiFedex: IconType = React.forwardRef(function SiFedex({title = 'FedEx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFedex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFedora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFedora.tsx new file mode 100644 index 000000000..9fb56c26e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFedora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFedoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#51A2DA'; + + const SiFedora: IconType = React.forwardRef(function SiFedora({title = 'Fedora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFedora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFeedly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFeedly.tsx new file mode 100644 index 000000000..bc5f7de88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFeedly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFeedlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2BB24C'; + + const SiFeedly: IconType = React.forwardRef(function SiFeedly({title = 'Feedly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFeedly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerrari.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerrari.tsx new file mode 100644 index 000000000..925b68dc9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerrari.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFerrariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D40000'; + + const SiFerrari: IconType = React.forwardRef(function SiFerrari({title = 'Ferrari', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFerrari as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerrarinv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerrarinv.tsx new file mode 100644 index 000000000..839bfa313 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerrarinv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFerrarinvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB2E2C'; + + const SiFerrarinv: IconType = React.forwardRef(function SiFerrarinv({title = 'Ferrari N.V.', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFerrarinv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerretdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerretdb.tsx new file mode 100644 index 000000000..5f0ae84b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFerretdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFerretdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#042133'; + + const SiFerretdb: IconType = React.forwardRef(function SiFerretdb({title = 'FerretDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFerretdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFfmpeg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFfmpeg.tsx new file mode 100644 index 000000000..c4173a9a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFfmpeg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFfmpegProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007808'; + + const SiFfmpeg: IconType = React.forwardRef(function SiFfmpeg({title = 'FFmpeg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFfmpeg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFi.tsx new file mode 100644 index 000000000..c0ae711cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B899'; + + const SiFi: IconType = React.forwardRef(function SiFi({title = 'Fi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiat.tsx new file mode 100644 index 000000000..e0af4bfac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFiatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#941711'; + + const SiFiat: IconType = React.forwardRef(function SiFiat({title = 'Fiat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFiat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFidoalliance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFidoalliance.tsx new file mode 100644 index 000000000..6edfbe228 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFidoalliance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFidoallianceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFBF3B'; + + const SiFidoalliance: IconType = React.forwardRef(function SiFidoalliance({title = 'Fido Alliance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFidoalliance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFifa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFifa.tsx new file mode 100644 index 000000000..e29e0cd6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFifa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFifaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#326295'; + + const SiFifa: IconType = React.forwardRef(function SiFifa({title = 'FIFA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFifa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFig.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFig.tsx new file mode 100644 index 000000000..53f715c00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFig.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFig: IconType = React.forwardRef(function SiFig({title = 'Fig', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFig as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFigma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFigma.tsx new file mode 100644 index 000000000..f39dc5391 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFigma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFigmaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F24E1E'; + + const SiFigma: IconType = React.forwardRef(function SiFigma({title = 'Figma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFigma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFigshare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFigshare.tsx new file mode 100644 index 000000000..7afe80dbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFigshare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFigshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#556472'; + + const SiFigshare: IconType = React.forwardRef(function SiFigshare({title = 'figshare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFigshare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFila.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFila.tsx new file mode 100644 index 000000000..e0410ac1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFila.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFilaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002D62'; + + const SiFila: IconType = React.forwardRef(function SiFila({title = 'Fila', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFila as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilament.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilament.tsx new file mode 100644 index 000000000..db09ae7a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilament.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFilamentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDAE4B'; + + const SiFilament: IconType = React.forwardRef(function SiFilament({title = 'Filament', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFilament as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiledotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiledotio.tsx new file mode 100644 index 000000000..995001336 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiledotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFiledotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3D3C9D'; + + const SiFiledotio: IconType = React.forwardRef(function SiFiledotio({title = 'File.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFiledotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilen.tsx new file mode 100644 index 000000000..e73e13219 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFilenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFilen: IconType = React.forwardRef(function SiFilen({title = 'Filen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFilen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiles.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiles.tsx new file mode 100644 index 000000000..6322f6740 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiles.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFilesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiFiles: IconType = React.forwardRef(function SiFiles({title = 'Files', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFiles as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilezilla.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilezilla.tsx new file mode 100644 index 000000000..7d34bd254 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFilezilla.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFilezillaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BF0000'; + + const SiFilezilla: IconType = React.forwardRef(function SiFilezilla({title = 'FileZilla', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFilezilla as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFillout.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFillout.tsx new file mode 100644 index 000000000..d402cce89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFillout.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFilloutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC738'; + + const SiFillout: IconType = React.forwardRef(function SiFillout({title = 'Fillout', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFillout as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFineco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFineco.tsx new file mode 100644 index 000000000..925e81336 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFineco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFinecoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00549F'; + + const SiFineco: IconType = React.forwardRef(function SiFineco({title = 'Fineco', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFineco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFing.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFing.tsx new file mode 100644 index 000000000..eb1652bfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFing.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009AEE'; + + const SiFing: IconType = React.forwardRef(function SiFing({title = 'Fing', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFing as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirebase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirebase.tsx new file mode 100644 index 000000000..514229be1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirebase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFirebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD2C00'; + + const SiFirebase: IconType = React.forwardRef(function SiFirebase({title = 'Firebase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFirebase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefish.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefish.tsx new file mode 100644 index 000000000..650e8eedd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefish.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFirefishProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F07A5B'; + + const SiFirefish: IconType = React.forwardRef(function SiFirefish({title = 'Firefish', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFirefish as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFireflyiii.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFireflyiii.tsx new file mode 100644 index 000000000..612ebd7fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFireflyiii.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFireflyiiiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD5029'; + + const SiFireflyiii: IconType = React.forwardRef(function SiFireflyiii({title = 'Firefly III', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFireflyiii as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefox.tsx new file mode 100644 index 000000000..afdad3d9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFirefoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7139'; + + const SiFirefox: IconType = React.forwardRef(function SiFirefox({title = 'Firefox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFirefox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefoxbrowser.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefoxbrowser.tsx new file mode 100644 index 000000000..c30b30ae8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirefoxbrowser.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFirefoxbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7139'; + + const SiFirefoxbrowser: IconType = React.forwardRef(function SiFirefoxbrowser({title = 'Firefox Browser', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFirefoxbrowser as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFireship.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFireship.tsx new file mode 100644 index 000000000..e32ad703d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFireship.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFireshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB844E'; + + const SiFireship: IconType = React.forwardRef(function SiFireship({title = 'Fireship', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFireship as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirewalla.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirewalla.tsx new file mode 100644 index 000000000..eb594758b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirewalla.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFirewallaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C8332D'; + + const SiFirewalla: IconType = React.forwardRef(function SiFirewalla({title = 'Firewalla', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFirewalla as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirst.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirst.tsx new file mode 100644 index 000000000..829ddf8cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFirst.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFirstProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066B3'; + + const SiFirst: IconType = React.forwardRef(function SiFirst({title = 'FIRST', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFirst as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFishaudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFishaudio.tsx new file mode 100644 index 000000000..11e0bcf33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFishaudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFishaudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9B90E8'; + + const SiFishaudio: IconType = React.forwardRef(function SiFishaudio({title = 'Fish Audio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFishaudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFishshell.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFishshell.tsx new file mode 100644 index 000000000..ae5b3a494 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFishshell.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFishshellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34C534'; + + const SiFishshell: IconType = React.forwardRef(function SiFishshell({title = 'fish shell', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFishshell as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFitbit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFitbit.tsx new file mode 100644 index 000000000..24b06efa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFitbit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFitbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B0B9'; + + const SiFitbit: IconType = React.forwardRef(function SiFitbit({title = 'Fitbit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFitbit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFivem.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFivem.tsx new file mode 100644 index 000000000..436962fdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFivem.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFivemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F40552'; + + const SiFivem: IconType = React.forwardRef(function SiFivem({title = 'FiveM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFivem as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiverr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiverr.tsx new file mode 100644 index 000000000..a5d1626dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFiverr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFiverrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1DBF73'; + + const SiFiverr: IconType = React.forwardRef(function SiFiverr({title = 'Fiverr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFiverr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFizz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFizz.tsx new file mode 100644 index 000000000..f92c84777 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFizz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFizzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D672'; + + const SiFizz: IconType = React.forwardRef(function SiFizz({title = 'Fizz', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFizz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlashforge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlashforge.tsx new file mode 100644 index 000000000..b452dea78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlashforge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlashforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFlashforge: IconType = React.forwardRef(function SiFlashforge({title = 'Flashforge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlashforge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlask.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlask.tsx new file mode 100644 index 000000000..795a20945 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlask.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlaskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3BABC3'; + + const SiFlask: IconType = React.forwardRef(function SiFlask({title = 'Flask', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlask as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlat.tsx new file mode 100644 index 000000000..d3f9f39f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3481FE'; + + const SiFlat: IconType = React.forwardRef(function SiFlat({title = 'Flat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlathub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlathub.tsx new file mode 100644 index 000000000..6c00c20b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlathub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlathubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFlathub: IconType = React.forwardRef(function SiFlathub({title = 'Flathub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlathub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlatpak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlatpak.tsx new file mode 100644 index 000000000..e17c6ff57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlatpak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlatpakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4A90D9'; + + const SiFlatpak: IconType = React.forwardRef(function SiFlatpak({title = 'Flatpak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlatpak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlickr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlickr.tsx new file mode 100644 index 000000000..7d700ffbc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlickr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlickrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0063DC'; + + const SiFlickr: IconType = React.forwardRef(function SiFlickr({title = 'Flickr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlickr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlightaware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlightaware.tsx new file mode 100644 index 000000000..446b7ebd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlightaware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlightawareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#19315B'; + + const SiFlightaware: IconType = React.forwardRef(function SiFlightaware({title = 'Flightaware', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlightaware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlipboard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlipboard.tsx new file mode 100644 index 000000000..db9d74e56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlipboard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlipboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E12828'; + + const SiFlipboard: IconType = React.forwardRef(function SiFlipboard({title = 'Flipboard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlipboard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFloatplane.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFloatplane.tsx new file mode 100644 index 000000000..82b3216ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFloatplane.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFloatplaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AEEF'; + + const SiFloatplane: IconType = React.forwardRef(function SiFloatplane({title = 'Floatplane', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFloatplane as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlood.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlood.tsx new file mode 100644 index 000000000..673427123 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlood.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFloodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiFlood: IconType = React.forwardRef(function SiFlood({title = 'Flood', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlood as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFloorp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFloorp.tsx new file mode 100644 index 000000000..8637a2a9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFloorp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFloorpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5309E8'; + + const SiFloorp: IconType = React.forwardRef(function SiFloorp({title = 'Floorp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFloorp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlower.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlower.tsx new file mode 100644 index 000000000..50eda9872 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlower.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2B705'; + + const SiFlower: IconType = React.forwardRef(function SiFlower({title = 'Flower', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlower as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluentbit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluentbit.tsx new file mode 100644 index 000000000..22786934b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluentbit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFluentbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#49BDA5'; + + const SiFluentbit: IconType = React.forwardRef(function SiFluentbit({title = 'Fluent Bit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFluentbit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluentd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluentd.tsx new file mode 100644 index 000000000..ff4d093be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluentd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFluentdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E83C8'; + + const SiFluentd: IconType = React.forwardRef(function SiFluentd({title = 'Fluentd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFluentd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluke.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluke.tsx new file mode 100644 index 000000000..a9d13442a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFluke.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlukeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC20E'; + + const SiFluke: IconType = React.forwardRef(function SiFluke({title = 'Fluke', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFluke as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlutter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlutter.tsx new file mode 100644 index 000000000..af4067949 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlutter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlutterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02569B'; + + const SiFlutter: IconType = React.forwardRef(function SiFlutter({title = 'Flutter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlutter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlux.tsx new file mode 100644 index 000000000..c98dc35e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFluxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5468FF'; + + const SiFlux: IconType = React.forwardRef(function SiFlux({title = 'Flux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlydotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlydotio.tsx new file mode 100644 index 000000000..cfd9e23bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlydotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlydotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24175B'; + + const SiFlydotio: IconType = React.forwardRef(function SiFlydotio({title = 'Fly.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlydotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlyway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlyway.tsx new file mode 100644 index 000000000..c8b86db4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFlyway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFlywayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0200'; + + const SiFlyway: IconType = React.forwardRef(function SiFlyway({title = 'Flyway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFlyway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFmod.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFmod.tsx new file mode 100644 index 000000000..25f4689dc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFmod.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFmodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFmod: IconType = React.forwardRef(function SiFmod({title = 'FMOD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFmod as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFnac.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFnac.tsx new file mode 100644 index 000000000..7f796bf30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFnac.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFnacProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E1A925'; + + const SiFnac: IconType = React.forwardRef(function SiFnac({title = 'Fnac', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFnac as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFolium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFolium.tsx new file mode 100644 index 000000000..ce3245149 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFolium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoliumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#77B829'; + + const SiFolium: IconType = React.forwardRef(function SiFolium({title = 'Folium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFolium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFolo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFolo.tsx new file mode 100644 index 000000000..458c7500e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFolo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5C00'; + + const SiFolo: IconType = React.forwardRef(function SiFolo({title = 'Folo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFolo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFonoma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFonoma.tsx new file mode 100644 index 000000000..440963477 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFonoma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFonomaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02B78F'; + + const SiFonoma: IconType = React.forwardRef(function SiFonoma({title = 'Fonoma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFonoma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontawesome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontawesome.tsx new file mode 100644 index 000000000..98e8f0ab8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontawesome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFontawesomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#538DD7'; + + const SiFontawesome: IconType = React.forwardRef(function SiFontawesome({title = 'Font Awesome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFontawesome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontbase.tsx new file mode 100644 index 000000000..f4926951a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFontbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3D03A7'; + + const SiFontbase: IconType = React.forwardRef(function SiFontbase({title = 'FontBase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFontbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontforge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontforge.tsx new file mode 100644 index 000000000..724ec2077 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFontforge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFontforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2712B'; + + const SiFontforge: IconType = React.forwardRef(function SiFontforge({title = 'FontForge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFontforge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoobar2000.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoobar2000.tsx new file mode 100644 index 000000000..4a1d98f77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoobar2000.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoobar2000Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFoobar2000: IconType = React.forwardRef(function SiFoobar2000({title = 'foobar2000', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFoobar2000 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoodpanda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoodpanda.tsx new file mode 100644 index 000000000..450b8110d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoodpanda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoodpandaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D70F64'; + + const SiFoodpanda: IconType = React.forwardRef(function SiFoodpanda({title = 'foodpanda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFoodpanda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFord.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFord.tsx new file mode 100644 index 000000000..096e3ae59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFord.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00274E'; + + const SiFord: IconType = React.forwardRef(function SiFord({title = 'Ford', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFord as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiForgejo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiForgejo.tsx new file mode 100644 index 000000000..018a9c606 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiForgejo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiForgejoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB923C'; + + const SiForgejo: IconType = React.forwardRef(function SiForgejo({title = 'Forgejo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiForgejo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormbricks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormbricks.tsx new file mode 100644 index 000000000..bda25caba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormbricks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFormbricksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00C4B8'; + + const SiFormbricks: IconType = React.forwardRef(function SiFormbricks({title = 'Formbricks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFormbricks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormik.tsx new file mode 100644 index 000000000..7a6d25e12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFormikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2563EB'; + + const SiFormik: IconType = React.forwardRef(function SiFormik({title = 'Formik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFormik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormspree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormspree.tsx new file mode 100644 index 000000000..b4914839e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormspree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFormspreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E5122E'; + + const SiFormspree: IconType = React.forwardRef(function SiFormspree({title = 'Formspree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFormspree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormstack.tsx new file mode 100644 index 000000000..70b80776a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFormstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFormstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21B573'; + + const SiFormstack: IconType = React.forwardRef(function SiFormstack({title = 'Formstack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFormstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortinet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortinet.tsx new file mode 100644 index 000000000..86e8bfb91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortinet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFortinetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE3124'; + + const SiFortinet: IconType = React.forwardRef(function SiFortinet({title = 'Fortinet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFortinet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortnite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortnite.tsx new file mode 100644 index 000000000..1d0712210 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortnite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFortniteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFortnite: IconType = React.forwardRef(function SiFortnite({title = 'Fortnite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFortnite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortran.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortran.tsx new file mode 100644 index 000000000..9e6efbe09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFortran.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFortranProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#734F96'; + + const SiFortran: IconType = React.forwardRef(function SiFortran({title = 'Fortran', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFortran as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFossa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFossa.tsx new file mode 100644 index 000000000..52940ab7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFossa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFossaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#289E6D'; + + const SiFossa: IconType = React.forwardRef(function SiFossa({title = 'Fossa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFossa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFossilscm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFossilscm.tsx new file mode 100644 index 000000000..a88738cfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFossilscm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFossilscmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#548294'; + + const SiFossilscm: IconType = React.forwardRef(function SiFossilscm({title = 'Fossil SCM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFossilscm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoundryvirtualtabletop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoundryvirtualtabletop.tsx new file mode 100644 index 000000000..e2b13baaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoundryvirtualtabletop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoundryvirtualtabletopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE6A1F'; + + const SiFoundryvirtualtabletop: IconType = React.forwardRef(function SiFoundryvirtualtabletop({title = 'Foundry Virtual Tabletop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFoundryvirtualtabletop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoursquare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoursquare.tsx new file mode 100644 index 000000000..2e3c0c7b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoursquare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoursquareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3333FF'; + + const SiFoursquare: IconType = React.forwardRef(function SiFoursquare({title = 'Foursquare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFoursquare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFox.tsx new file mode 100644 index 000000000..fb472b4bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFox: IconType = React.forwardRef(function SiFox({title = 'FOX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoxtel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoxtel.tsx new file mode 100644 index 000000000..64672ec01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFoxtel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFoxtelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB5205'; + + const SiFoxtel: IconType = React.forwardRef(function SiFoxtel({title = 'Foxtel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFoxtel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFozzy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFozzy.tsx new file mode 100644 index 000000000..3e118f659 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFozzy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFozzyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15B29'; + + const SiFozzy: IconType = React.forwardRef(function SiFozzy({title = 'Fozzy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFozzy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramer.tsx new file mode 100644 index 000000000..6b8ae26d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFramerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0055FF'; + + const SiFramer: IconType = React.forwardRef(function SiFramer({title = 'Framer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFramer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramework.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramework.tsx new file mode 100644 index 000000000..dd7773831 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramework.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFrameworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFramework: IconType = React.forwardRef(function SiFramework({title = 'Framework', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFramework as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramework7.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramework7.tsx new file mode 100644 index 000000000..5ce679a17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFramework7.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFramework7Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE350F'; + + const SiFramework7: IconType = React.forwardRef(function SiFramework7({title = 'Framework7', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFramework7 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFranprix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFranprix.tsx new file mode 100644 index 000000000..4913ba3e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFranprix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFranprixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC6237'; + + const SiFranprix: IconType = React.forwardRef(function SiFranprix({title = 'Franprix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFranprix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrappe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrappe.tsx new file mode 100644 index 000000000..09c158178 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrappe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFrappeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0089FF'; + + const SiFrappe: IconType = React.forwardRef(function SiFrappe({title = 'Frappe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFrappe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFraunhofergesellschaft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFraunhofergesellschaft.tsx new file mode 100644 index 000000000..70b830a61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFraunhofergesellschaft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFraunhofergesellschaftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#179C7D'; + + const SiFraunhofergesellschaft: IconType = React.forwardRef(function SiFraunhofergesellschaft({title = 'Fraunhofer-Gesellschaft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFraunhofergesellschaft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreebsd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreebsd.tsx new file mode 100644 index 000000000..7e74c6da2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreebsd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreebsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AB2B28'; + + const SiFreebsd: IconType = React.forwardRef(function SiFreebsd({title = 'FreeBSD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreebsd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreecad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreecad.tsx new file mode 100644 index 000000000..24735174f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreecad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreecadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#418FDE'; + + const SiFreecad: IconType = React.forwardRef(function SiFreecad({title = 'FreeCAD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreecad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreecodecamp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreecodecamp.tsx new file mode 100644 index 000000000..fb57d261b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreecodecamp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreecodecampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0A23'; + + const SiFreecodecamp: IconType = React.forwardRef(function SiFreecodecamp({title = 'freeCodeCamp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreecodecamp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreedesktopdotorg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreedesktopdotorg.tsx new file mode 100644 index 000000000..495c11ff8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreedesktopdotorg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreedesktopdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B80AE'; + + const SiFreedesktopdotorg: IconType = React.forwardRef(function SiFreedesktopdotorg({title = 'freedesktop.org', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreedesktopdotorg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreelancer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreelancer.tsx new file mode 100644 index 000000000..8677d9266 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreelancer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreelancerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#29B2FE'; + + const SiFreelancer: IconType = React.forwardRef(function SiFreelancer({title = 'Freelancer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreelancer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreelancermap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreelancermap.tsx new file mode 100644 index 000000000..4df23fea8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreelancermap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreelancermapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CFD6'; + + const SiFreelancermap: IconType = React.forwardRef(function SiFreelancermap({title = 'freelancermap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreelancermap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreenas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreenas.tsx new file mode 100644 index 000000000..5ef5f51ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreenas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreenasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#343434'; + + const SiFreenas: IconType = React.forwardRef(function SiFreenas({title = 'FreeNAS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreenas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreenet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreenet.tsx new file mode 100644 index 000000000..e94a8325e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreenet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreenetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#84BC34'; + + const SiFreenet: IconType = React.forwardRef(function SiFreenet({title = 'freenet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreenet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreepik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreepik.tsx new file mode 100644 index 000000000..3c375c636 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreepik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreepikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1273EB'; + + const SiFreepik: IconType = React.forwardRef(function SiFreepik({title = 'Freepik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreepik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreetube.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreetube.tsx new file mode 100644 index 000000000..922bc6605 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreetube.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreetubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F04242'; + + const SiFreetube: IconType = React.forwardRef(function SiFreetube({title = 'FreeTube', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreetube as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFresh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFresh.tsx new file mode 100644 index 000000000..f16a98bb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFresh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDB1E'; + + const SiFresh: IconType = React.forwardRef(function SiFresh({title = 'Fresh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFresh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreshrss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreshrss.tsx new file mode 100644 index 000000000..9b245061b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFreshrss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFreshrssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0062BE'; + + const SiFreshrss: IconType = React.forwardRef(function SiFreshrss({title = 'FreshRSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFreshrss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrigate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrigate.tsx new file mode 100644 index 000000000..219c7df9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrigate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFrigateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiFrigate: IconType = React.forwardRef(function SiFrigate({title = 'Frigate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFrigate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFritz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFritz.tsx new file mode 100644 index 000000000..cffb3fab8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFritz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFritzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E2001A'; + + const SiFritz: IconType = React.forwardRef(function SiFritz({title = 'FRITZ!', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFritz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrontendmentor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrontendmentor.tsx new file mode 100644 index 000000000..e77fdd7c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrontendmentor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFrontendmentorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3F54A3'; + + const SiFrontendmentor: IconType = React.forwardRef(function SiFrontendmentor({title = 'Frontend Mentor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFrontendmentor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrontify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrontify.tsx new file mode 100644 index 000000000..7b347835a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFrontify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFrontifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D3232'; + + const SiFrontify: IconType = React.forwardRef(function SiFrontify({title = 'Frontify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFrontify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFsharp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFsharp.tsx new file mode 100644 index 000000000..48198fff6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFsharp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFsharpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#378BBA'; + + const SiFsharp: IconType = React.forwardRef(function SiFsharp({title = 'F#', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFsharp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFubo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFubo.tsx new file mode 100644 index 000000000..084568632 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFubo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFuboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C83D1E'; + + const SiFubo: IconType = React.forwardRef(function SiFubo({title = 'Fubo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFubo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFueler.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFueler.tsx new file mode 100644 index 000000000..adb75434d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFueler.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFuelerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09C9E3'; + + const SiFueler: IconType = React.forwardRef(function SiFueler({title = 'Fueler', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFueler as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFugacloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFugacloud.tsx new file mode 100644 index 000000000..993388b0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFugacloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFugacloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#242F4B'; + + const SiFugacloud: IconType = React.forwardRef(function SiFugacloud({title = 'Fuga Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFugacloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFujifilm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFujifilm.tsx new file mode 100644 index 000000000..880dffe1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFujifilm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFujifilmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB0020'; + + const SiFujifilm: IconType = React.forwardRef(function SiFujifilm({title = 'Fujifilm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFujifilm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFujitsu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFujitsu.tsx new file mode 100644 index 000000000..d8955d51b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFujitsu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFujitsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiFujitsu: IconType = React.forwardRef(function SiFujitsu({title = 'Fujitsu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFujitsu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFuraffinity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFuraffinity.tsx new file mode 100644 index 000000000..5714191b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFuraffinity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFuraffinityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#36566F'; + + const SiFuraffinity: IconType = React.forwardRef(function SiFuraffinity({title = 'Fur Affinity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFuraffinity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFurrynetwork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFurrynetwork.tsx new file mode 100644 index 000000000..51f8f3c13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFurrynetwork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFurrynetworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E75B4'; + + const SiFurrynetwork: IconType = React.forwardRef(function SiFurrynetwork({title = 'Furry Network', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFurrynetwork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFusionauth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFusionauth.tsx new file mode 100644 index 000000000..3f00fe544 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFusionauth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFusionauthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F58320'; + + const SiFusionauth: IconType = React.forwardRef(function SiFusionauth({title = 'FusionAuth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFusionauth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFuturelearn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFuturelearn.tsx new file mode 100644 index 000000000..27cb356f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFuturelearn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFuturelearnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DE00A5'; + + const SiFuturelearn: IconType = React.forwardRef(function SiFuturelearn({title = 'FutureLearn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFuturelearn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiFyle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFyle.tsx new file mode 100644 index 000000000..0e1697249 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiFyle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiFyleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF2E63'; + + const SiFyle: IconType = React.forwardRef(function SiFyle({title = 'Fyle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiFyle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2.tsx new file mode 100644 index 000000000..8e8ff06f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiG2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF492C'; + + const SiG2: IconType = React.forwardRef(function SiG2({title = 'G2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiG2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2a.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2a.tsx new file mode 100644 index 000000000..40a45e468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2a.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiG2aProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F05F00'; + + const SiG2a: IconType = React.forwardRef(function SiG2a({title = 'G2A', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiG2a as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2g.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2g.tsx new file mode 100644 index 000000000..247592433 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiG2g.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiG2gProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiG2g: IconType = React.forwardRef(function SiG2g({title = 'G2G', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiG2g as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGalaxus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGalaxus.tsx new file mode 100644 index 000000000..cab8879eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGalaxus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGalaxusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGalaxus: IconType = React.forwardRef(function SiGalaxus({title = 'Galaxus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGalaxus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamebanana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamebanana.tsx new file mode 100644 index 000000000..279aab877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamebanana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGamebananaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FCEF40'; + + const SiGamebanana: IconType = React.forwardRef(function SiGamebanana({title = 'GameBanana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGamebanana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamedeveloper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamedeveloper.tsx new file mode 100644 index 000000000..5d1db6f4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamedeveloper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGamedeveloperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60012'; + + const SiGamedeveloper: IconType = React.forwardRef(function SiGamedeveloper({title = 'Game Developer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGamedeveloper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamejolt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamejolt.tsx new file mode 100644 index 000000000..64a8a5715 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamejolt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGamejoltProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CCFF00'; + + const SiGamejolt: IconType = React.forwardRef(function SiGamejolt({title = 'Game Jolt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGamejolt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGameloft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGameloft.tsx new file mode 100644 index 000000000..48d1811a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGameloft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGameloftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGameloft: IconType = React.forwardRef(function SiGameloft({title = 'Gameloft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGameloft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamemaker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamemaker.tsx new file mode 100644 index 000000000..447e2cb3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamemaker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGamemakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGamemaker: IconType = React.forwardRef(function SiGamemaker({title = 'Gamemaker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGamemaker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamescience.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamescience.tsx new file mode 100644 index 000000000..20cf49e88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGamescience.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGamescienceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGamescience: IconType = React.forwardRef(function SiGamescience({title = 'Game Science', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGamescience as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGandi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGandi.tsx new file mode 100644 index 000000000..76ee8c838 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGandi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGandiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6640FE'; + + const SiGandi: IconType = React.forwardRef(function SiGandi({title = 'Gandi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGandi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGarmin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGarmin.tsx new file mode 100644 index 000000000..5e7c1aa37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGarmin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGarminProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGarmin: IconType = React.forwardRef(function SiGarmin({title = 'Garmin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGarmin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGarudalinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGarudalinux.tsx new file mode 100644 index 000000000..78079eb34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGarudalinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGarudalinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8839EF'; + + const SiGarudalinux: IconType = React.forwardRef(function SiGarudalinux({title = 'Garuda Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGarudalinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGatling.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGatling.tsx new file mode 100644 index 000000000..291f30099 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGatling.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGatlingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9E2A'; + + const SiGatling: IconType = React.forwardRef(function SiGatling({title = 'Gatling', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGatling as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGatsby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGatsby.tsx new file mode 100644 index 000000000..d90dfb5c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGatsby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGatsbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#663399'; + + const SiGatsby: IconType = React.forwardRef(function SiGatsby({title = 'Gatsby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGatsby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGcore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGcore.tsx new file mode 100644 index 000000000..51676e90e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGcore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGcoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4C00'; + + const SiGcore: IconType = React.forwardRef(function SiGcore({title = 'Gcore', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGcore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGdal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGdal.tsx new file mode 100644 index 000000000..99c3e11a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGdal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGdalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5CAE58'; + + const SiGdal: IconType = React.forwardRef(function SiGdal({title = 'GDAL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGdal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeeksforgeeks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeeksforgeeks.tsx new file mode 100644 index 000000000..027290e3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeeksforgeeks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeeksforgeeksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F8D46'; + + const SiGeeksforgeeks: IconType = React.forwardRef(function SiGeeksforgeeks({title = 'GeeksforGeeks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGeeksforgeeks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeneralelectric.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeneralelectric.tsx new file mode 100644 index 000000000..8aa684537 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeneralelectric.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeneralelectricProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0870D8'; + + const SiGeneralelectric: IconType = React.forwardRef(function SiGeneralelectric({title = 'General Electric', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGeneralelectric as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeneralmotors.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeneralmotors.tsx new file mode 100644 index 000000000..e0984c9ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeneralmotors.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeneralmotorsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0170CE'; + + const SiGeneralmotors: IconType = React.forwardRef(function SiGeneralmotors({title = 'General Motors', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGeneralmotors as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGenius.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGenius.tsx new file mode 100644 index 000000000..b2a439d30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGenius.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeniusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFF64'; + + const SiGenius: IconType = React.forwardRef(function SiGenius({title = 'Genius', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGenius as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGentoo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGentoo.tsx new file mode 100644 index 000000000..b062b2bf9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGentoo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGentooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#54487A'; + + const SiGentoo: IconType = React.forwardRef(function SiGentoo({title = 'Gentoo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGentoo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeocaching.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeocaching.tsx new file mode 100644 index 000000000..644ffa392 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeocaching.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeocachingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00874D'; + + const SiGeocaching: IconType = React.forwardRef(function SiGeocaching({title = 'Geocaching', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGeocaching as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeode.tsx new file mode 100644 index 000000000..e3b9ebf9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8D7ACF'; + + const SiGeode: IconType = React.forwardRef(function SiGeode({title = 'Geode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGeode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeopandas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeopandas.tsx new file mode 100644 index 000000000..cf3c95230 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGeopandas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGeopandasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#139C5A'; + + const SiGeopandas: IconType = React.forwardRef(function SiGeopandas({title = 'GeoPandas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGeopandas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGerrit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGerrit.tsx new file mode 100644 index 000000000..df3c378e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGerrit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGerritProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EEEEEE'; + + const SiGerrit: IconType = React.forwardRef(function SiGerrit({title = 'Gerrit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGerrit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGetx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGetx.tsx new file mode 100644 index 000000000..65e0d4db6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGetx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGetxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8A2BE2'; + + const SiGetx: IconType = React.forwardRef(function SiGetx({title = 'GetX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGetx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhost.tsx new file mode 100644 index 000000000..c7c2a4a73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGhostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#15171A'; + + const SiGhost: IconType = React.forwardRef(function SiGhost({title = 'Ghost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGhost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhostery.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhostery.tsx new file mode 100644 index 000000000..9bd5bd40d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhostery.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGhosteryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AEF0'; + + const SiGhostery: IconType = React.forwardRef(function SiGhostery({title = 'Ghostery', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGhostery as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhostty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhostty.tsx new file mode 100644 index 000000000..1108994ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGhostty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGhosttyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3551F3'; + + const SiGhostty: IconType = React.forwardRef(function SiGhostty({title = 'Ghostty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGhostty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGimp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGimp.tsx new file mode 100644 index 000000000..2a29769c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGimp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGimpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8C8073'; + + const SiGimp: IconType = React.forwardRef(function SiGimp({title = 'GIMP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGimp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGin.tsx new file mode 100644 index 000000000..6d7a9efe5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008ECF'; + + const SiGin: IconType = React.forwardRef(function SiGin({title = 'Gin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGiphy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGiphy.tsx new file mode 100644 index 000000000..78c713ef6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGiphy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGiphyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6666'; + + const SiGiphy: IconType = React.forwardRef(function SiGiphy({title = 'GIPHY', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGiphy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGit.tsx new file mode 100644 index 000000000..fe92db35f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F05032'; + + const SiGit: IconType = React.forwardRef(function SiGit({title = 'Git', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitbook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitbook.tsx new file mode 100644 index 000000000..7378eb3b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitbook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitbookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BBDDE5'; + + const SiGitbook: IconType = React.forwardRef(function SiGitbook({title = 'GitBook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitbook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitcode.tsx new file mode 100644 index 000000000..cdd87664e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA203E'; + + const SiGitcode: IconType = React.forwardRef(function SiGitcode({title = 'GitCode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitconnected.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitconnected.tsx new file mode 100644 index 000000000..300a16090 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitconnected.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitconnectedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E69AE'; + + const SiGitconnected: IconType = React.forwardRef(function SiGitconnected({title = 'Gitconnected', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitconnected as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitea.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitea.tsx new file mode 100644 index 000000000..fbed8ce45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitea.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGiteaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#609926'; + + const SiGitea: IconType = React.forwardRef(function SiGitea({title = 'Gitea', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitea as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitee.tsx new file mode 100644 index 000000000..c203e7cae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGiteeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C71D23'; + + const SiGitee: IconType = React.forwardRef(function SiGitee({title = 'Gitee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitextensions.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitextensions.tsx new file mode 100644 index 000000000..e237d10f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitextensions.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitextensionsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiGitextensions: IconType = React.forwardRef(function SiGitextensions({title = 'Git Extensions', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitextensions as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitforwindows.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitforwindows.tsx new file mode 100644 index 000000000..6589e71c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitforwindows.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitforwindowsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#80B3FF'; + + const SiGitforwindows: IconType = React.forwardRef(function SiGitforwindows({title = 'Git for Windows', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitforwindows as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithub.tsx new file mode 100644 index 000000000..e650abf44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGithubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#181717'; + + const SiGithub: IconType = React.forwardRef(function SiGithub({title = 'GitHub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGithub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubactions.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubactions.tsx new file mode 100644 index 000000000..830b8a261 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubactions.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGithubactionsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2088FF'; + + const SiGithubactions: IconType = React.forwardRef(function SiGithubactions({title = 'GitHub Actions', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGithubactions as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubcopilot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubcopilot.tsx new file mode 100644 index 000000000..1d12d6b2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubcopilot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGithubcopilotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGithubcopilot: IconType = React.forwardRef(function SiGithubcopilot({title = 'GitHub Copilot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGithubcopilot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubpages.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubpages.tsx new file mode 100644 index 000000000..faf1aa527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubpages.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGithubpagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const SiGithubpages: IconType = React.forwardRef(function SiGithubpages({title = 'GitHub Pages', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGithubpages as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubsponsors.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubsponsors.tsx new file mode 100644 index 000000000..49d4056e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGithubsponsors.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGithubsponsorsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA4AAA'; + + const SiGithubsponsors: IconType = React.forwardRef(function SiGithubsponsors({title = 'GitHub Sponsors', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGithubsponsors as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitignoredotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitignoredotio.tsx new file mode 100644 index 000000000..84f63dc19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitignoredotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitignoredotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#204ECF'; + + const SiGitignoredotio: IconType = React.forwardRef(function SiGitignoredotio({title = 'gitignore.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitignoredotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitkraken.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitkraken.tsx new file mode 100644 index 000000000..d76693a7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitkraken.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitkrakenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#179287'; + + const SiGitkraken: IconType = React.forwardRef(function SiGitkraken({title = 'GitKraken', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitkraken as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitlab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitlab.tsx new file mode 100644 index 000000000..5f2615659 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitlab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitlabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC6D26'; + + const SiGitlab: IconType = React.forwardRef(function SiGitlab({title = 'GitLab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitlab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitlfs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitlfs.tsx new file mode 100644 index 000000000..8e2c794e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitlfs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitlfsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F64935'; + + const SiGitlfs: IconType = React.forwardRef(function SiGitlfs({title = 'Git LFS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitlfs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitpod.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitpod.tsx new file mode 100644 index 000000000..201d02d4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitpod.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitpodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFAE33'; + + const SiGitpod: IconType = React.forwardRef(function SiGitpod({title = 'Gitpod', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitpod as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitter.tsx new file mode 100644 index 000000000..8680f57fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGitter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGitterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1965'; + + const SiGitter: IconType = React.forwardRef(function SiGitter({title = 'Gitter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGitter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlance.tsx new file mode 100644 index 000000000..8957e291a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGlanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D9C38C'; + + const SiGlance: IconType = React.forwardRef(function SiGlance({title = 'Glance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGlance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlassdoor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlassdoor.tsx new file mode 100644 index 000000000..c46e71088 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlassdoor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGlassdoorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A162'; + + const SiGlassdoor: IconType = React.forwardRef(function SiGlassdoor({title = 'Glassdoor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGlassdoor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGldotinet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGldotinet.tsx new file mode 100644 index 000000000..2332d101a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGldotinet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGldotinetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#636363'; + + const SiGldotinet: IconType = React.forwardRef(function SiGldotinet({title = 'GL.iNet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGldotinet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGleam.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGleam.tsx new file mode 100644 index 000000000..24bf67e36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGleam.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGleamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFAFF3'; + + const SiGleam: IconType = React.forwardRef(function SiGleam({title = 'Gleam', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGleam as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlide.tsx new file mode 100644 index 000000000..fee9cf82d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGlideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18BED4'; + + const SiGlide: IconType = React.forwardRef(function SiGlide({title = 'Glide', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGlide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlitch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlitch.tsx new file mode 100644 index 000000000..0d7e1d51c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlitch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGlitchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3333FF'; + + const SiGlitch: IconType = React.forwardRef(function SiGlitch({title = 'Glitch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGlitch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlobus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlobus.tsx new file mode 100644 index 000000000..4cc38fc32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlobus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGlobusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CA6201'; + + const SiGlobus: IconType = React.forwardRef(function SiGlobus({title = 'Globus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGlobus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlovo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlovo.tsx new file mode 100644 index 000000000..187b2a20a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGlovo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGlovoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2CC38'; + + const SiGlovo: IconType = React.forwardRef(function SiGlovo({title = 'Glovo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGlovo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGltf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGltf.tsx new file mode 100644 index 000000000..7fe9ce97c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGltf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGltfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#87C540'; + + const SiGltf: IconType = React.forwardRef(function SiGltf({title = 'glTF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGltf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGmail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGmail.tsx new file mode 100644 index 000000000..26bcaa4e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGmail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGmailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA4335'; + + const SiGmail: IconType = React.forwardRef(function SiGmail({title = 'Gmail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGmail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGmx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGmx.tsx new file mode 100644 index 000000000..4893d0e8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGmx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGmxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C449B'; + + const SiGmx: IconType = React.forwardRef(function SiGmx({title = 'GMX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGmx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnome.tsx new file mode 100644 index 000000000..94b28ac0d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4A86CF'; + + const SiGnome: IconType = React.forwardRef(function SiGnome({title = 'GNOME', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnometerminal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnometerminal.tsx new file mode 100644 index 000000000..1b8cebd37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnometerminal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnometerminalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#241F31'; + + const SiGnometerminal: IconType = React.forwardRef(function SiGnometerminal({title = 'GNOME Terminal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnometerminal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnu.tsx new file mode 100644 index 000000000..0c48f835d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A42E2B'; + + const SiGnu: IconType = React.forwardRef(function SiGnu({title = 'GNU', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnubash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnubash.tsx new file mode 100644 index 000000000..0ddd27cb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnubash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnubashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4EAA25'; + + const SiGnubash: IconType = React.forwardRef(function SiGnubash({title = 'GNU Bash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnubash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuemacs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuemacs.tsx new file mode 100644 index 000000000..a85220111 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuemacs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnuemacsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7F5AB6'; + + const SiGnuemacs: IconType = React.forwardRef(function SiGnuemacs({title = 'GNU Emacs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnuemacs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuicecat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuicecat.tsx new file mode 100644 index 000000000..c46dfed8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuicecat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnuicecatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002F5B'; + + const SiGnuicecat: IconType = React.forwardRef(function SiGnuicecat({title = 'GNU IceCat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnuicecat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuprivacyguard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuprivacyguard.tsx new file mode 100644 index 000000000..cc762fdea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnuprivacyguard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnuprivacyguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0093DD'; + + const SiGnuprivacyguard: IconType = React.forwardRef(function SiGnuprivacyguard({title = 'GNU Privacy Guard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnuprivacyguard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnusocial.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnusocial.tsx new file mode 100644 index 000000000..c313af597 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGnusocial.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGnusocialProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A22430'; + + const SiGnusocial: IconType = React.forwardRef(function SiGnusocial({title = 'GNU social', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGnusocial as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGo.tsx new file mode 100644 index 000000000..d15734195 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00ADD8'; + + const SiGo: IconType = React.forwardRef(function SiGo({title = 'Go', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGocd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGocd.tsx new file mode 100644 index 000000000..d341144d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGocd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGocdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#94399E'; + + const SiGocd: IconType = React.forwardRef(function SiGocd({title = 'GoCD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGocd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGodaddy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGodaddy.tsx new file mode 100644 index 000000000..0eb517fc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGodaddy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGodaddyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BDBDB'; + + const SiGodaddy: IconType = React.forwardRef(function SiGodaddy({title = 'GoDaddy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGodaddy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGodotengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGodotengine.tsx new file mode 100644 index 000000000..8758a6b1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGodotengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGodotengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#478CBF'; + + const SiGodotengine: IconType = React.forwardRef(function SiGodotengine({title = 'Godot Engine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGodotengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGofundme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGofundme.tsx new file mode 100644 index 000000000..05b37555f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGofundme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGofundmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B964'; + + const SiGofundme: IconType = React.forwardRef(function SiGofundme({title = 'GoFundMe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGofundme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGogdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGogdotcom.tsx new file mode 100644 index 000000000..fbcd40418 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGogdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGogdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#86328A'; + + const SiGogdotcom: IconType = React.forwardRef(function SiGogdotcom({title = 'GOG.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGogdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGojek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGojek.tsx new file mode 100644 index 000000000..2ed223ee7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGojek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGojekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AA13'; + + const SiGojek: IconType = React.forwardRef(function SiGojek({title = 'Gojek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGojek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoland.tsx new file mode 100644 index 000000000..b20f38cc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGolandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGoland: IconType = React.forwardRef(function SiGoland({title = 'GoLand', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoldmansachs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoldmansachs.tsx new file mode 100644 index 000000000..9dcc30371 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoldmansachs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoldmansachsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7399C6'; + + const SiGoldmansachs: IconType = React.forwardRef(function SiGoldmansachs({title = 'Goldman Sachs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoldmansachs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoodreads.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoodreads.tsx new file mode 100644 index 000000000..c35ed3f4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoodreads.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoodreadsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E1914'; + + const SiGoodreads: IconType = React.forwardRef(function SiGoodreads({title = 'Goodreads', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoodreads as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogle.tsx new file mode 100644 index 000000000..d3c89a07b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogle: IconType = React.forwardRef(function SiGoogle({title = 'Google', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleadmob.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleadmob.tsx new file mode 100644 index 000000000..2d41b4859 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleadmob.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleadmobProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA4335'; + + const SiGoogleadmob: IconType = React.forwardRef(function SiGoogleadmob({title = 'Google AdMob', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleadmob as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleads.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleads.tsx new file mode 100644 index 000000000..6861e5802 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleads.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleadsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleads: IconType = React.forwardRef(function SiGoogleads({title = 'Google Ads', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleads as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleadsense.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleadsense.tsx new file mode 100644 index 000000000..18b79036e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleadsense.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleadsenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleadsense: IconType = React.forwardRef(function SiGoogleadsense({title = 'Google AdSense', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleadsense as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleanalytics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleanalytics.tsx new file mode 100644 index 000000000..88616306c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleanalytics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E37400'; + + const SiGoogleanalytics: IconType = React.forwardRef(function SiGoogleanalytics({title = 'Google Analytics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleanalytics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleappsscript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleappsscript.tsx new file mode 100644 index 000000000..b1f3a91af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleappsscript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleappsscriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleappsscript: IconType = React.forwardRef(function SiGoogleappsscript({title = 'Google Apps Script', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleappsscript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleassistant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleassistant.tsx new file mode 100644 index 000000000..bbdc7d1e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleassistant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleassistantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleassistant: IconType = React.forwardRef(function SiGoogleassistant({title = 'Google Assistant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleassistant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleauthenticator.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleauthenticator.tsx new file mode 100644 index 000000000..538b8018c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleauthenticator.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleauthenticatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleauthenticator: IconType = React.forwardRef(function SiGoogleauthenticator({title = 'Google Authenticator', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleauthenticator as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglebigquery.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglebigquery.tsx new file mode 100644 index 000000000..881350564 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglebigquery.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglebigqueryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#669DF6'; + + const SiGooglebigquery: IconType = React.forwardRef(function SiGooglebigquery({title = 'Google BigQuery', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglebigquery as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglebigtable.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglebigtable.tsx new file mode 100644 index 000000000..e6b1b6347 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglebigtable.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglebigtableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#669DF6'; + + const SiGooglebigtable: IconType = React.forwardRef(function SiGooglebigtable({title = 'Google Bigtable', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglebigtable as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecalendar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecalendar.tsx new file mode 100644 index 000000000..6865180bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecalendar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecalendarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglecalendar: IconType = React.forwardRef(function SiGooglecalendar({title = 'Google Calendar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecalendar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecampaignmanager360.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecampaignmanager360.tsx new file mode 100644 index 000000000..39c9b12d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecampaignmanager360.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecampaignmanager360Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E8E3E'; + + const SiGooglecampaignmanager360: IconType = React.forwardRef(function SiGooglecampaignmanager360({title = 'Google Campaign Manager 360', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecampaignmanager360 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecardboard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecardboard.tsx new file mode 100644 index 000000000..e765164df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecardboard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecardboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7143'; + + const SiGooglecardboard: IconType = React.forwardRef(function SiGooglecardboard({title = 'Google Cardboard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecardboard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecast.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecast.tsx new file mode 100644 index 000000000..dce9b399e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecast.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglecast: IconType = React.forwardRef(function SiGooglecast({title = 'Google Cast', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecast as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechat.tsx new file mode 100644 index 000000000..78604bb07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglechatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34A853'; + + const SiGooglechat: IconType = React.forwardRef(function SiGooglechat({title = 'Google Chat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglechat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechrome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechrome.tsx new file mode 100644 index 000000000..e1cdcf576 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechrome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglechromeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglechrome: IconType = React.forwardRef(function SiGooglechrome({title = 'Google Chrome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglechrome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechronicle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechronicle.tsx new file mode 100644 index 000000000..c76619f45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglechronicle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglechronicleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglechronicle: IconType = React.forwardRef(function SiGooglechronicle({title = 'Google Chronicle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglechronicle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleclassroom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleclassroom.tsx new file mode 100644 index 000000000..a8cf1438c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleclassroom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleclassroomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0F9D58'; + + const SiGoogleclassroom: IconType = React.forwardRef(function SiGoogleclassroom({title = 'Google Classroom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleclassroom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloud.tsx new file mode 100644 index 000000000..c7ad6b700 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglecloud: IconType = React.forwardRef(function SiGooglecloud({title = 'Google Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudcomposer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudcomposer.tsx new file mode 100644 index 000000000..09c5218e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudcomposer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecloudcomposerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglecloudcomposer: IconType = React.forwardRef(function SiGooglecloudcomposer({title = 'Google Cloud Composer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecloudcomposer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudspanner.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudspanner.tsx new file mode 100644 index 000000000..1c8db26b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudspanner.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecloudspannerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglecloudspanner: IconType = React.forwardRef(function SiGooglecloudspanner({title = 'Google Cloud Spanner', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecloudspanner as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudstorage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudstorage.tsx new file mode 100644 index 000000000..5f9ef7393 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecloudstorage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecloudstorageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AECBFA'; + + const SiGooglecloudstorage: IconType = React.forwardRef(function SiGooglecloudstorage({title = 'Google Cloud Storage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecloudstorage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecolab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecolab.tsx new file mode 100644 index 000000000..edacc628b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecolab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecolabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9AB00'; + + const SiGooglecolab: IconType = React.forwardRef(function SiGooglecolab({title = 'Google Colab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecolab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecontaineroptimizedos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecontaineroptimizedos.tsx new file mode 100644 index 000000000..c0f97871f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglecontaineroptimizedos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglecontaineroptimizedosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglecontaineroptimizedos: IconType = React.forwardRef(function SiGooglecontaineroptimizedos({title = 'Google Container Optimized OS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglecontaineroptimizedos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledataflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledataflow.tsx new file mode 100644 index 000000000..644ee8a10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledataflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogledataflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AECBFA'; + + const SiGoogledataflow: IconType = React.forwardRef(function SiGoogledataflow({title = 'Google Dataflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogledataflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledataproc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledataproc.tsx new file mode 100644 index 000000000..62abde0cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledataproc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogledataprocProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AECBFA'; + + const SiGoogledataproc: IconType = React.forwardRef(function SiGoogledataproc({title = 'Google Dataproc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogledataproc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledisplayandvideo360.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledisplayandvideo360.tsx new file mode 100644 index 000000000..6e9e5833f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledisplayandvideo360.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogledisplayandvideo360Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34A853'; + + const SiGoogledisplayandvideo360: IconType = React.forwardRef(function SiGoogledisplayandvideo360({title = 'Google Display & Video 360', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogledisplayandvideo360 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledocs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledocs.tsx new file mode 100644 index 000000000..0b9ca8175 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledocs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogledocsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogledocs: IconType = React.forwardRef(function SiGoogledocs({title = 'Google Docs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogledocs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledrive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledrive.tsx new file mode 100644 index 000000000..eebb195d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogledrive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogledriveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogledrive: IconType = React.forwardRef(function SiGoogledrive({title = 'Google Drive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogledrive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleearth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleearth.tsx new file mode 100644 index 000000000..11c7df1f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleearth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleearthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleearth: IconType = React.forwardRef(function SiGoogleearth({title = 'Google Earth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleearth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleearthengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleearthengine.tsx new file mode 100644 index 000000000..291309da6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleearthengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleearthengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogleearthengine: IconType = React.forwardRef(function SiGoogleearthengine({title = 'Google Earth Engine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleearthengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglefonts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglefonts.tsx new file mode 100644 index 000000000..61d348373 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglefonts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglefontsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglefonts: IconType = React.forwardRef(function SiGooglefonts({title = 'Google Fonts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglefonts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleforms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleforms.tsx new file mode 100644 index 000000000..144d8ec9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleforms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleformsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7248B9'; + + const SiGoogleforms: IconType = React.forwardRef(function SiGoogleforms({title = 'Google Forms', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleforms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglegemini.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglegemini.tsx new file mode 100644 index 000000000..dc6b878d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglegemini.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglegeminiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8E75B2'; + + const SiGooglegemini: IconType = React.forwardRef(function SiGooglegemini({title = 'Google Gemini', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglegemini as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglehome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglehome.tsx new file mode 100644 index 000000000..8c7600cfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglehome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglehomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglehome: IconType = React.forwardRef(function SiGooglehome({title = 'Google Home', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglehome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglejules.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglejules.tsx new file mode 100644 index 000000000..af2e64560 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglejules.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglejulesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#715CD7'; + + const SiGooglejules: IconType = React.forwardRef(function SiGooglejules({title = 'Google Jules', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglejules as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglekeep.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglekeep.tsx new file mode 100644 index 000000000..4f6d78715 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglekeep.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglekeepProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFBB00'; + + const SiGooglekeep: IconType = React.forwardRef(function SiGooglekeep({title = 'Google Keep', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglekeep as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglelens.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglelens.tsx new file mode 100644 index 000000000..2706ea97e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglelens.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglelensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglelens: IconType = React.forwardRef(function SiGooglelens({title = 'Google Lens', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglelens as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemaps.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemaps.tsx new file mode 100644 index 000000000..856279064 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemaps.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglemapsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglemaps: IconType = React.forwardRef(function SiGooglemaps({title = 'Google Maps', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglemaps as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemarketingplatform.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemarketingplatform.tsx new file mode 100644 index 000000000..747efabf0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemarketingplatform.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglemarketingplatformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglemarketingplatform: IconType = React.forwardRef(function SiGooglemarketingplatform({title = 'Google Marketing Platform', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglemarketingplatform as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemeet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemeet.tsx new file mode 100644 index 000000000..a6381e479 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemeet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglemeetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00897B'; + + const SiGooglemeet: IconType = React.forwardRef(function SiGooglemeet({title = 'Google Meet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglemeet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemessages.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemessages.tsx new file mode 100644 index 000000000..812a8ccc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglemessages.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglemessagesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A73E8'; + + const SiGooglemessages: IconType = React.forwardRef(function SiGooglemessages({title = 'Google Messages', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglemessages as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglenearby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglenearby.tsx new file mode 100644 index 000000000..2b79dbdbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglenearby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglenearbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglenearby: IconType = React.forwardRef(function SiGooglenearby({title = 'Google Nearby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglenearby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglenews.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglenews.tsx new file mode 100644 index 000000000..dba8d01f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglenews.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglenewsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#174EA6'; + + const SiGooglenews: IconType = React.forwardRef(function SiGooglenews({title = 'Google News', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglenews as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglepay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglepay.tsx new file mode 100644 index 000000000..c7a3fa12d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglepay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglepayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglepay: IconType = React.forwardRef(function SiGooglepay({title = 'Google Pay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglepay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglephotos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglephotos.tsx new file mode 100644 index 000000000..541026032 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglephotos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglephotosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglephotos: IconType = React.forwardRef(function SiGooglephotos({title = 'Google Photos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglephotos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleplay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleplay.tsx new file mode 100644 index 000000000..3c1a2935e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleplay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleplayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#414141'; + + const SiGoogleplay: IconType = React.forwardRef(function SiGoogleplay({title = 'Google Play', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleplay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglepubsub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglepubsub.tsx new file mode 100644 index 000000000..ecd25035f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglepubsub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglepubsubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AECBFA'; + + const SiGooglepubsub: IconType = React.forwardRef(function SiGooglepubsub({title = 'Google Pub/Sub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglepubsub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglescholar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglescholar.tsx new file mode 100644 index 000000000..632dc10bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglescholar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglescholarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGooglescholar: IconType = React.forwardRef(function SiGooglescholar({title = 'Google Scholar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglescholar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesearchconsole.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesearchconsole.tsx new file mode 100644 index 000000000..aa4a194af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesearchconsole.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglesearchconsoleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#458CF5'; + + const SiGooglesearchconsole: IconType = React.forwardRef(function SiGooglesearchconsole({title = 'Google Search Console', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglesearchconsole as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesheets.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesheets.tsx new file mode 100644 index 000000000..0f5ca9ed4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesheets.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglesheetsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34A853'; + + const SiGooglesheets: IconType = React.forwardRef(function SiGooglesheets({title = 'Google Sheets', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglesheets as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleslides.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleslides.tsx new file mode 100644 index 000000000..a710ac314 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogleslides.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogleslidesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBBC04'; + + const SiGoogleslides: IconType = React.forwardRef(function SiGoogleslides({title = 'Google Slides', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogleslides as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglestreetview.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglestreetview.tsx new file mode 100644 index 000000000..80574d33e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglestreetview.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglestreetviewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FEC111'; + + const SiGooglestreetview: IconType = React.forwardRef(function SiGooglestreetview({title = 'Google Street View', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglestreetview as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesummerofcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesummerofcode.tsx new file mode 100644 index 000000000..695a88f30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGooglesummerofcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGooglesummerofcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9AB00'; + + const SiGooglesummerofcode: IconType = React.forwardRef(function SiGooglesummerofcode({title = 'Google Summer of Code', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGooglesummerofcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletagmanager.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletagmanager.tsx new file mode 100644 index 000000000..01c2310ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletagmanager.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogletagmanagerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#246FDB'; + + const SiGoogletagmanager: IconType = React.forwardRef(function SiGoogletagmanager({title = 'Google Tag Manager', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogletagmanager as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletasks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletasks.tsx new file mode 100644 index 000000000..85d51eb34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletasks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogletasksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2684FC'; + + const SiGoogletasks: IconType = React.forwardRef(function SiGoogletasks({title = 'Google Tasks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogletasks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletranslate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletranslate.tsx new file mode 100644 index 000000000..3f7a4f1c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletranslate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogletranslateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogletranslate: IconType = React.forwardRef(function SiGoogletranslate({title = 'Google Translate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogletranslate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletv.tsx new file mode 100644 index 000000000..55547949f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGoogletv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGoogletvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiGoogletv: IconType = React.forwardRef(function SiGoogletv({title = 'Google TV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGoogletv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGotomeeting.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGotomeeting.tsx new file mode 100644 index 000000000..0f36b5d04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGotomeeting.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGotomeetingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F68D2E'; + + const SiGotomeeting: IconType = React.forwardRef(function SiGotomeeting({title = 'GoToMeeting', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGotomeeting as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGplv3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGplv3.tsx new file mode 100644 index 000000000..a546736c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGplv3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGplv3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BD0000'; + + const SiGplv3: IconType = React.forwardRef(function SiGplv3({title = 'GPLv3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGplv3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrab.tsx new file mode 100644 index 000000000..8758981a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B14F'; + + const SiGrab: IconType = React.forwardRef(function SiGrab({title = 'Grab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradio.tsx new file mode 100644 index 000000000..f5fe1e22f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGradioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F97316'; + + const SiGradio: IconType = React.forwardRef(function SiGradio({title = 'Gradio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGradio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradle.tsx new file mode 100644 index 000000000..7ab78b506 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGradleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02303A'; + + const SiGradle: IconType = React.forwardRef(function SiGradle({title = 'Gradle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGradle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradleplaypublisher.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradleplaypublisher.tsx new file mode 100644 index 000000000..a8cfed772 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGradleplaypublisher.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGradleplaypublisherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#82B816'; + + const SiGradleplaypublisher: IconType = React.forwardRef(function SiGradleplaypublisher({title = 'Gradle Play Publisher', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGradleplaypublisher as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrafana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrafana.tsx new file mode 100644 index 000000000..cdf67ec22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrafana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrafanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F46800'; + + const SiGrafana: IconType = React.forwardRef(function SiGrafana({title = 'Grafana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrafana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrammarly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrammarly.tsx new file mode 100644 index 000000000..091862a4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrammarly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrammarlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#027E6F'; + + const SiGrammarly: IconType = React.forwardRef(function SiGrammarly({title = 'Grammarly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrammarly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrandfrais.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrandfrais.tsx new file mode 100644 index 000000000..72baaff26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrandfrais.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrandfraisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED2D2F'; + + const SiGrandfrais: IconType = React.forwardRef(function SiGrandfrais({title = 'Grand Frais', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrandfrais as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrapheneos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrapheneos.tsx new file mode 100644 index 000000000..f35b24204 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrapheneos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrapheneosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0053A3'; + + const SiGrapheneos: IconType = React.forwardRef(function SiGrapheneos({title = 'GrapheneOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrapheneos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphite.tsx new file mode 100644 index 000000000..800351f07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGraphiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGraphite: IconType = React.forwardRef(function SiGraphite({title = 'Graphite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGraphite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphiteEditor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphiteEditor.tsx new file mode 100644 index 000000000..c7eff1e51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphiteEditor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGraphiteEditorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#473A3A'; + + const SiGraphiteEditor: IconType = React.forwardRef(function SiGraphiteEditor({title = 'Graphite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGraphiteEditor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphql.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphql.tsx new file mode 100644 index 000000000..45003db9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraphql.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGraphqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E10098'; + + const SiGraphql: IconType = React.forwardRef(function SiGraphql({title = 'GraphQL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGraphql as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrav.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrav.tsx new file mode 100644 index 000000000..f72ec9aa4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrav.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGravProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#221E1F'; + + const SiGrav: IconType = React.forwardRef(function SiGrav({title = 'Grav', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrav as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGravatar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGravatar.tsx new file mode 100644 index 000000000..ea7854b39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGravatar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGravatarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E8CBE'; + + const SiGravatar: IconType = React.forwardRef(function SiGravatar({title = 'Gravatar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGravatar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraylog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraylog.tsx new file mode 100644 index 000000000..a930f87a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGraylog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGraylogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3633'; + + const SiGraylog: IconType = React.forwardRef(function SiGraylog({title = 'Graylog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGraylog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreasyfork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreasyfork.tsx new file mode 100644 index 000000000..369e917a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreasyfork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGreasyforkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#670000'; + + const SiGreasyfork: IconType = React.forwardRef(function SiGreasyfork({title = 'Greasy Fork', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGreasyfork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreatlearning.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreatlearning.tsx new file mode 100644 index 000000000..5d11c0f3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreatlearning.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGreatlearningProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E39A9'; + + const SiGreatlearning: IconType = React.forwardRef(function SiGreatlearning({title = 'Great Learning', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGreatlearning as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreenhouse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreenhouse.tsx new file mode 100644 index 000000000..e0e2477a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreenhouse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGreenhouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24A47F'; + + const SiGreenhouse: IconType = React.forwardRef(function SiGreenhouse({title = 'Greenhouse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGreenhouse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreensock.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreensock.tsx new file mode 100644 index 000000000..c0036642a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreensock.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGreensockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#88CE02'; + + const SiGreensock: IconType = React.forwardRef(function SiGreensock({title = 'GreenSock', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGreensock as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreptimedb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreptimedb.tsx new file mode 100644 index 000000000..c555046e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGreptimedb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGreptimedbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8322FF'; + + const SiGreptimedb: IconType = React.forwardRef(function SiGreptimedb({title = 'GreptimeDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGreptimedb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGriddotai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGriddotai.tsx new file mode 100644 index 000000000..93c07fe56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGriddotai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGriddotaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#78FF96'; + + const SiGriddotai: IconType = React.forwardRef(function SiGriddotai({title = 'Grid.ai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGriddotai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGridsome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGridsome.tsx new file mode 100644 index 000000000..09c5bcabe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGridsome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGridsomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A672'; + + const SiGridsome: IconType = React.forwardRef(function SiGridsome({title = 'Gridsome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGridsome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrocy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrocy.tsx new file mode 100644 index 000000000..b5941e3b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrocy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrocyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#337AB7'; + + const SiGrocy: IconType = React.forwardRef(function SiGrocy({title = 'Grocy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrocy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGroupme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGroupme.tsx new file mode 100644 index 000000000..35d9432c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGroupme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGroupmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AFF0'; + + const SiGroupme: IconType = React.forwardRef(function SiGroupme({title = 'GroupMe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGroupme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGroupon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGroupon.tsx new file mode 100644 index 000000000..ac7b66919 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGroupon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGrouponProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#53A318'; + + const SiGroupon: IconType = React.forwardRef(function SiGroupon({title = 'Groupon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGroupon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrunt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrunt.tsx new file mode 100644 index 000000000..b713ed4e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGrunt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGruntProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAA918'; + + const SiGrunt: IconType = React.forwardRef(function SiGrunt({title = 'Grunt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGrunt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsap.tsx new file mode 100644 index 000000000..009fc4dc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGsapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0AE448'; + + const SiGsap: IconType = React.forwardRef(function SiGsap({title = 'GSAP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGsap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsk.tsx new file mode 100644 index 000000000..fce54a132 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F36633'; + + const SiGsk: IconType = React.forwardRef(function SiGsk({title = 'GSK', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGsk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsma.tsx new file mode 100644 index 000000000..4210bcb0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGsmaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC002B'; + + const SiGsma: IconType = React.forwardRef(function SiGsma({title = 'GSMA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGsma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsmarenadotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsmarenadotcom.tsx new file mode 100644 index 000000000..2b2a7e53e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGsmarenadotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGsmarenadotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D50000'; + + const SiGsmarenadotcom: IconType = React.forwardRef(function SiGsmarenadotcom({title = 'GSMArena.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGsmarenadotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGstreamer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGstreamer.tsx new file mode 100644 index 000000000..76e3912ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGstreamer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGstreamerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3131'; + + const SiGstreamer: IconType = React.forwardRef(function SiGstreamer({title = 'GStreamer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGstreamer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGtk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGtk.tsx new file mode 100644 index 000000000..257e18654 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGtk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGtkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7FE719'; + + const SiGtk: IconType = React.forwardRef(function SiGtk({title = 'GTK', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGtk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuangzhoumetro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuangzhoumetro.tsx new file mode 100644 index 000000000..affcdb5d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuangzhoumetro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGuangzhoumetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C51935'; + + const SiGuangzhoumetro: IconType = React.forwardRef(function SiGuangzhoumetro({title = 'Guangzhou Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGuangzhoumetro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuilded.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuilded.tsx new file mode 100644 index 000000000..b96c91d8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuilded.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGuildedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5C400'; + + const SiGuilded: IconType = React.forwardRef(function SiGuilded({title = 'Guilded', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGuilded as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuitarpro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuitarpro.tsx new file mode 100644 index 000000000..d4829a037 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGuitarpro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGuitarproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#569FFF'; + + const SiGuitarpro: IconType = React.forwardRef(function SiGuitarpro({title = 'Guitar Pro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGuitarpro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGulp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGulp.tsx new file mode 100644 index 000000000..6d78ed0bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGulp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGulpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CF4647'; + + const SiGulp: IconType = React.forwardRef(function SiGulp({title = 'gulp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGulp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGumroad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGumroad.tsx new file mode 100644 index 000000000..f98f032e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGumroad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGumroadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF90E8'; + + const SiGumroad: IconType = React.forwardRef(function SiGumroad({title = 'Gumroad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGumroad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGumtree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGumtree.tsx new file mode 100644 index 000000000..cf3903e5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGumtree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGumtreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#72EF36'; + + const SiGumtree: IconType = React.forwardRef(function SiGumtree({title = 'Gumtree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGumtree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGunicorn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGunicorn.tsx new file mode 100644 index 000000000..58b4fc5fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGunicorn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGunicornProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#499848'; + + const SiGunicorn: IconType = React.forwardRef(function SiGunicorn({title = 'Gunicorn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGunicorn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGurobi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGurobi.tsx new file mode 100644 index 000000000..ce7d19e9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGurobi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGurobiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE3524'; + + const SiGurobi: IconType = React.forwardRef(function SiGurobi({title = 'Gurobi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGurobi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGusto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGusto.tsx new file mode 100644 index 000000000..24c6838c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGusto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGustoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F45D48'; + + const SiGusto: IconType = React.forwardRef(function SiGusto({title = 'Gusto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGusto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiGutenberg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGutenberg.tsx new file mode 100644 index 000000000..716408fae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiGutenberg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiGutenbergProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiGutenberg: IconType = React.forwardRef(function SiGutenberg({title = 'Gutenberg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiGutenberg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiH2database.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiH2database.tsx new file mode 100644 index 000000000..7f8309598 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiH2database.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiH2databaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09476B'; + + const SiH2database: IconType = React.forwardRef(function SiH2database({title = 'H2 Database', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiH2database as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiH3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiH3.tsx new file mode 100644 index 000000000..042ed7dea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiH3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiH3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E54B7'; + + const SiH3: IconType = React.forwardRef(function SiH3({title = 'H3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiH3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHabr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHabr.tsx new file mode 100644 index 000000000..bc1b87e02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHabr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHabrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#65A3BE'; + + const SiHabr: IconType = React.forwardRef(function SiHabr({title = 'Habr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHabr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackaday.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackaday.tsx new file mode 100644 index 000000000..9c9a97302 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackaday.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackadayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1A1A'; + + const SiHackaday: IconType = React.forwardRef(function SiHackaday({title = 'Hackaday', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackaday as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackclub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackclub.tsx new file mode 100644 index 000000000..ab45416a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackclub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackclubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC3750'; + + const SiHackclub: IconType = React.forwardRef(function SiHackclub({title = 'Hack Club', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackclub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerearth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerearth.tsx new file mode 100644 index 000000000..818e06928 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerearth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackerearthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C3454'; + + const SiHackerearth: IconType = React.forwardRef(function SiHackerearth({title = 'HackerEarth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackerearth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackernoon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackernoon.tsx new file mode 100644 index 000000000..bad6783d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackernoon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackernoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FE00'; + + const SiHackernoon: IconType = React.forwardRef(function SiHackernoon({title = 'Hacker Noon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackernoon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerone.tsx new file mode 100644 index 000000000..015a85a5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackeroneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#494649'; + + const SiHackerone: IconType = React.forwardRef(function SiHackerone({title = 'HackerOne', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackerone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerrank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerrank.tsx new file mode 100644 index 000000000..2f2c9539e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackerrank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackerrankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00EA64'; + + const SiHackerrank: IconType = React.forwardRef(function SiHackerrank({title = 'HackerRank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackerrank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackmd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackmd.tsx new file mode 100644 index 000000000..c28b34749 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackmd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHackmdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#453AFF'; + + const SiHackmd: IconType = React.forwardRef(function SiHackmd({title = 'HackMD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackmd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackster.tsx new file mode 100644 index 000000000..cc3d0aa0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHacksterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E9FE6'; + + const SiHackster: IconType = React.forwardRef(function SiHackster({title = 'Hackster', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackthebox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackthebox.tsx new file mode 100644 index 000000000..5338b4206 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHackthebox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHacktheboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9FEF00'; + + const SiHackthebox: IconType = React.forwardRef(function SiHackthebox({title = 'Hack The Box', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHackthebox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHal.tsx new file mode 100644 index 000000000..4c9c83bfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B03532'; + + const SiHal: IconType = React.forwardRef(function SiHal({title = 'HAL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandlebarsdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandlebarsdotjs.tsx new file mode 100644 index 000000000..9bbe9cfd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandlebarsdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHandlebarsdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHandlebarsdotjs: IconType = React.forwardRef(function SiHandlebarsdotjs({title = 'Handlebars.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHandlebarsdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandm.tsx new file mode 100644 index 000000000..3b481f48a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHandmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E50010'; + + const SiHandm: IconType = React.forwardRef(function SiHandm({title = 'H&M', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHandm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandshake.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandshake.tsx new file mode 100644 index 000000000..e28d13838 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandshake.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHandshakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D3FB52'; + + const SiHandshake: IconType = React.forwardRef(function SiHandshake({title = 'Handshake', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHandshake as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandshakeProtocol.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandshakeProtocol.tsx new file mode 100644 index 000000000..9569aba15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHandshakeProtocol.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHandshakeProtocolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHandshakeProtocol: IconType = React.forwardRef(function SiHandshakeProtocol({title = 'Handshake', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHandshakeProtocol as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHappycow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHappycow.tsx new file mode 100644 index 000000000..b4b8078ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHappycow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHappycowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7C4EC4'; + + const SiHappycow: IconType = React.forwardRef(function SiHappycow({title = 'HappyCow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHappycow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHarbor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHarbor.tsx new file mode 100644 index 000000000..7b959cd40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHarbor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHarborProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#60B932'; + + const SiHarbor: IconType = React.forwardRef(function SiHarbor({title = 'Harbor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHarbor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHarmonyos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHarmonyos.tsx new file mode 100644 index 000000000..2de8b90c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHarmonyos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHarmonyosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHarmonyos: IconType = React.forwardRef(function SiHarmonyos({title = 'HarmonyOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHarmonyos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashcat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashcat.tsx new file mode 100644 index 000000000..738f6803c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashcat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHashcatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiHashcat: IconType = React.forwardRef(function SiHashcat({title = 'Hashcat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHashcat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashicorp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashicorp.tsx new file mode 100644 index 000000000..573a67541 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashicorp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHashicorpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHashicorp: IconType = React.forwardRef(function SiHashicorp({title = 'HashiCorp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHashicorp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashnode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashnode.tsx new file mode 100644 index 000000000..a9438d64f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHashnode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHashnodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2962FF'; + + const SiHashnode: IconType = React.forwardRef(function SiHashnode({title = 'Hashnode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHashnode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaskell.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaskell.tsx new file mode 100644 index 000000000..b6f39e46f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaskell.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHaskellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5D4F85'; + + const SiHaskell: IconType = React.forwardRef(function SiHaskell({title = 'Haskell', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHaskell as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHasura.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHasura.tsx new file mode 100644 index 000000000..1308e3fe9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHasura.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHasuraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1EB4D4'; + + const SiHasura: IconType = React.forwardRef(function SiHasura({title = 'Hasura', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHasura as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHatenabookmark.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHatenabookmark.tsx new file mode 100644 index 000000000..1996072bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHatenabookmark.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHatenabookmarkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A4DE'; + + const SiHatenabookmark: IconType = React.forwardRef(function SiHatenabookmark({title = 'Hatena Bookmark', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHatenabookmark as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaveibeenpwned.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaveibeenpwned.tsx new file mode 100644 index 000000000..8b0b6e946 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaveibeenpwned.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHaveibeenpwnedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#030304'; + + const SiHaveibeenpwned: IconType = React.forwardRef(function SiHaveibeenpwned({title = 'Have I Been Pwned', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHaveibeenpwned as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHavells.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHavells.tsx new file mode 100644 index 000000000..28aa784dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHavells.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHavellsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiHavells: IconType = React.forwardRef(function SiHavells({title = 'Havells', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHavells as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaxe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaxe.tsx new file mode 100644 index 000000000..2830e084d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaxe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHaxeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA8220'; + + const SiHaxe: IconType = React.forwardRef(function SiHaxe({title = 'Haxe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHaxe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaystack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaystack.tsx new file mode 100644 index 000000000..6185b1726 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHaystack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHaystackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0EAF9C'; + + const SiHaystack: IconType = React.forwardRef(function SiHaystack({title = 'Haystack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHaystack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHbo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHbo.tsx new file mode 100644 index 000000000..a70fe9ce4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHbo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHbo: IconType = React.forwardRef(function SiHbo({title = 'HBO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHbo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHbomax.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHbomax.tsx new file mode 100644 index 000000000..91b03a039 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHbomax.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHbomaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHbomax: IconType = React.forwardRef(function SiHbomax({title = 'HBO Max', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHbomax as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHcl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHcl.tsx new file mode 100644 index 000000000..152c57393 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHcl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHclProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006BB6'; + + const SiHcl: IconType = React.forwardRef(function SiHcl({title = 'HCL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHcl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHdfcbank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHdfcbank.tsx new file mode 100644 index 000000000..6e84898de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHdfcbank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHdfcbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004B8D'; + + const SiHdfcbank: IconType = React.forwardRef(function SiHdfcbank({title = 'HDFC Bank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHdfcbank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadlessui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadlessui.tsx new file mode 100644 index 000000000..4db8e7690 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadlessui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHeadlessuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#66E3FF'; + + const SiHeadlessui: IconType = React.forwardRef(function SiHeadlessui({title = 'Headless UI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHeadlessui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadphonezone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadphonezone.tsx new file mode 100644 index 000000000..908c788c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadphonezone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHeadphonezoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C07FF'; + + const SiHeadphonezone: IconType = React.forwardRef(function SiHeadphonezone({title = 'Headphone Zone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHeadphonezone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadspace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadspace.tsx new file mode 100644 index 000000000..d10380e6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeadspace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHeadspaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F47D31'; + + const SiHeadspace: IconType = React.forwardRef(function SiHeadspace({title = 'Headspace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHeadspace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHearth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHearth.tsx new file mode 100644 index 000000000..d69186806 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHearth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHearthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A33035'; + + const SiHearth: IconType = React.forwardRef(function SiHearth({title = 'Hearth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHearth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHearthisdotat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHearthisdotat.tsx new file mode 100644 index 000000000..d6d73f275 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHearthisdotat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHearthisdotatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHearthisdotat: IconType = React.forwardRef(function SiHearthisdotat({title = 'hearthis.at', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHearthisdotat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHedera.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHedera.tsx new file mode 100644 index 000000000..6c3e8b6b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHedera.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHederaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const SiHedera: IconType = React.forwardRef(function SiHedera({title = 'Hedera', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHedera as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHedgedoc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHedgedoc.tsx new file mode 100644 index 000000000..f4a04c584 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHedgedoc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHedgedocProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B51F08'; + + const SiHedgedoc: IconType = React.forwardRef(function SiHedgedoc({title = 'HedgeDoc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHedgedoc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelium.tsx new file mode 100644 index 000000000..cce90f95c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHeliumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0ACF83'; + + const SiHelium: IconType = React.forwardRef(function SiHelium({title = 'Helium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHelium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelix.tsx new file mode 100644 index 000000000..9936fc4b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHelixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#281733'; + + const SiHelix: IconType = React.forwardRef(function SiHelix({title = 'Helix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHelix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHellofresh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHellofresh.tsx new file mode 100644 index 000000000..169fc7840 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHellofresh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHellofreshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#99CC33'; + + const SiHellofresh: IconType = React.forwardRef(function SiHellofresh({title = 'HelloFresh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHellofresh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHellyhansen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHellyhansen.tsx new file mode 100644 index 000000000..eea0c9587 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHellyhansen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHellyhansenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA2128'; + + const SiHellyhansen: IconType = React.forwardRef(function SiHellyhansen({title = 'Helly Hansen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHellyhansen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelm.tsx new file mode 100644 index 000000000..a432963a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHelmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0F1689'; + + const SiHelm: IconType = React.forwardRef(function SiHelm({title = 'Helm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHelm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelpdesk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelpdesk.tsx new file mode 100644 index 000000000..c7c02130a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelpdesk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHelpdeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2FC774'; + + const SiHelpdesk: IconType = React.forwardRef(function SiHelpdesk({title = 'HelpDesk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHelpdesk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelpscout.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelpscout.tsx new file mode 100644 index 000000000..cc529dd31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHelpscout.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHelpscoutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1292EE'; + + const SiHelpscout: IconType = React.forwardRef(function SiHelpscout({title = 'Help Scout', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHelpscout as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHepsiemlak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHepsiemlak.tsx new file mode 100644 index 000000000..12bf24202 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHepsiemlak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHepsiemlakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E1251B'; + + const SiHepsiemlak: IconType = React.forwardRef(function SiHepsiemlak({title = 'Hepsiemlak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHepsiemlak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHere.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHere.tsx new file mode 100644 index 000000000..20be21eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHere.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHereProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AFAA'; + + const SiHere: IconType = React.forwardRef(function SiHere({title = 'HERE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHere as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHermes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHermes.tsx new file mode 100644 index 000000000..daade2149 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHermes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHermesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0091CD'; + + const SiHermes: IconType = React.forwardRef(function SiHermes({title = 'Hermes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHermes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeroicgameslauncher.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeroicgameslauncher.tsx new file mode 100644 index 000000000..a6e06e3e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeroicgameslauncher.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHeroicgameslauncherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B93FF'; + + const SiHeroicgameslauncher: IconType = React.forwardRef(function SiHeroicgameslauncher({title = 'Heroic Games Launcher', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHeroicgameslauncher as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeroui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeroui.tsx new file mode 100644 index 000000000..1d7aa7f58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHeroui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHerouiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHeroui: IconType = React.forwardRef(function SiHeroui({title = 'HeroUI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHeroui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHetzner.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHetzner.tsx new file mode 100644 index 000000000..e1d3ae82d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHetzner.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHetznerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D50C2D'; + + const SiHetzner: IconType = React.forwardRef(function SiHetzner({title = 'Hetzner', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHetzner as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHevy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHevy.tsx new file mode 100644 index 000000000..7981a5ec7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHevy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHevyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHevy: IconType = React.forwardRef(function SiHevy({title = 'Hevy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHevy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHexlet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHexlet.tsx new file mode 100644 index 000000000..3a6dce4c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHexlet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHexletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#116EF5'; + + const SiHexlet: IconType = React.forwardRef(function SiHexlet({title = 'Hexlet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHexlet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHexo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHexo.tsx new file mode 100644 index 000000000..8ebab609a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHexo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHexoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E83CD'; + + const SiHexo: IconType = React.forwardRef(function SiHexo({title = 'Hexo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHexo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHey.tsx new file mode 100644 index 000000000..11657be0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5522FA'; + + const SiHey: IconType = React.forwardRef(function SiHey({title = 'HEY', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHibernate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHibernate.tsx new file mode 100644 index 000000000..8bb964a6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHibernate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHibernateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#59666C'; + + const SiHibernate: IconType = React.forwardRef(function SiHibernate({title = 'Hibernate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHibernate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHibob.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHibob.tsx new file mode 100644 index 000000000..8fb223fc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHibob.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHibobProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E42C51'; + + const SiHibob: IconType = React.forwardRef(function SiHibob({title = 'Hi Bob', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHibob as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHilton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHilton.tsx new file mode 100644 index 000000000..aef025058 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHilton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHiltonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiHilton: IconType = React.forwardRef(function SiHilton({title = 'Hilton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHilton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHiltonhotelsandresorts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHiltonhotelsandresorts.tsx new file mode 100644 index 000000000..3b4076dc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHiltonhotelsandresorts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHiltonhotelsandresortsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E4380'; + + const SiHiltonhotelsandresorts: IconType = React.forwardRef(function SiHiltonhotelsandresorts({title = 'Hilton Hotels & Resorts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHiltonhotelsandresorts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHitachi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHitachi.tsx new file mode 100644 index 000000000..49e15a8f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHitachi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHitachiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60027'; + + const SiHitachi: IconType = React.forwardRef(function SiHitachi({title = 'Hitachi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHitachi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHive.tsx new file mode 100644 index 000000000..616cb2c97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7A00'; + + const SiHive: IconType = React.forwardRef(function SiHive({title = 'Hive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHiveBlockchain.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHiveBlockchain.tsx new file mode 100644 index 000000000..cb1256ea9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHiveBlockchain.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHiveBlockchainProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E31337'; + + const SiHiveBlockchain: IconType = React.forwardRef(function SiHiveBlockchain({title = 'Hive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHiveBlockchain as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHivemq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHivemq.tsx new file mode 100644 index 000000000..957cd2156 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHivemq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHivemqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC000'; + + const SiHivemq: IconType = React.forwardRef(function SiHivemq({title = 'HiveMQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHivemq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomarr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomarr.tsx new file mode 100644 index 000000000..bb14a4e70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomarr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomarrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA5252'; + + const SiHomarr: IconType = React.forwardRef(function SiHomarr({title = 'Homarr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomarr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeadvisor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeadvisor.tsx new file mode 100644 index 000000000..d88e1aaf3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeadvisor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomeadvisorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F68315'; + + const SiHomeadvisor: IconType = React.forwardRef(function SiHomeadvisor({title = 'HomeAdvisor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomeadvisor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeassistant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeassistant.tsx new file mode 100644 index 000000000..5e1b1868e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeassistant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomeassistantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18BCF2'; + + const SiHomeassistant: IconType = React.forwardRef(function SiHomeassistant({title = 'Home Assistant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomeassistant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeassistantcommunitystore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeassistantcommunitystore.tsx new file mode 100644 index 000000000..764e1fba9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomeassistantcommunitystore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomeassistantcommunitystoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41BDF5'; + + const SiHomeassistantcommunitystore: IconType = React.forwardRef(function SiHomeassistantcommunitystore({title = 'Home Assistant Community Store', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomeassistantcommunitystore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomebrew.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomebrew.tsx new file mode 100644 index 000000000..ecbfc407e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomebrew.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomebrewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBB040'; + + const SiHomebrew: IconType = React.forwardRef(function SiHomebrew({title = 'Homebrew', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomebrew as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomebridge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomebridge.tsx new file mode 100644 index 000000000..fd80b99b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomebridge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomebridgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#491F59'; + + const SiHomebridge: IconType = React.forwardRef(function SiHomebridge({title = 'Homebridge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomebridge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomepage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomepage.tsx new file mode 100644 index 000000000..89691d3c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomepage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomepageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009BD5'; + + const SiHomepage: IconType = React.forwardRef(function SiHomepage({title = 'Homepage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomepage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomify.tsx new file mode 100644 index 000000000..64bd8a433 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHomify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHomifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7DCDA3'; + + const SiHomify: IconType = React.forwardRef(function SiHomify({title = 'homify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHomify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHonda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHonda.tsx new file mode 100644 index 000000000..db49f0ad6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHonda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHondaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E40521'; + + const SiHonda: IconType = React.forwardRef(function SiHonda({title = 'Honda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHonda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoney.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoney.tsx new file mode 100644 index 000000000..f3f5068e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoney.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHoneyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6801'; + + const SiHoney: IconType = React.forwardRef(function SiHoney({title = 'Honey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHoney as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoneybadger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoneybadger.tsx new file mode 100644 index 000000000..1048b4da8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoneybadger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHoneybadgerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA5937'; + + const SiHoneybadger: IconType = React.forwardRef(function SiHoneybadger({title = 'Honeybadger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHoneybadger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoneygain.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoneygain.tsx new file mode 100644 index 000000000..2dd6b2528 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoneygain.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHoneygainProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9C900'; + + const SiHoneygain: IconType = React.forwardRef(function SiHoneygain({title = 'Honeygain', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHoneygain as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHono.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHono.tsx new file mode 100644 index 000000000..e3a9e595a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHono.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHonoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E36002'; + + const SiHono: IconType = React.forwardRef(function SiHono({title = 'Hono', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHono as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHonor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHonor.tsx new file mode 100644 index 000000000..490d8cb8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHonor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHonorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHonor: IconType = React.forwardRef(function SiHonor({title = 'Honor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHonor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHootsuite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHootsuite.tsx new file mode 100644 index 000000000..ac6265223 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHootsuite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHootsuiteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4C46'; + + const SiHootsuite: IconType = React.forwardRef(function SiHootsuite({title = 'Hootsuite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHootsuite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoppscotch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoppscotch.tsx new file mode 100644 index 000000000..f2fe7eec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoppscotch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHoppscotchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09090B'; + + const SiHoppscotch: IconType = React.forwardRef(function SiHoppscotch({title = 'Hoppscotch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHoppscotch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHostinger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHostinger.tsx new file mode 100644 index 000000000..69251420e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHostinger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHostingerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#673DE6'; + + const SiHostinger: IconType = React.forwardRef(function SiHostinger({title = 'Hostinger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHostinger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotelsdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotelsdotcom.tsx new file mode 100644 index 000000000..3634ce4d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotelsdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHotelsdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF3346'; + + const SiHotelsdotcom: IconType = React.forwardRef(function SiHotelsdotcom({title = 'Hotels.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHotelsdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotjar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotjar.tsx new file mode 100644 index 000000000..a898accb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotjar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHotjarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3C00'; + + const SiHotjar: IconType = React.forwardRef(function SiHotjar({title = 'Hotjar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHotjar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotwire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotwire.tsx new file mode 100644 index 000000000..b93a2c67b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHotwire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHotwireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE801'; + + const SiHotwire: IconType = React.forwardRef(function SiHotwire({title = 'Hotwire', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHotwire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoudini.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoudini.tsx new file mode 100644 index 000000000..667ada0ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHoudini.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHoudiniProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4713'; + + const SiHoudini: IconType = React.forwardRef(function SiHoudini({title = 'Houdini', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHoudini as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHouzz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHouzz.tsx new file mode 100644 index 000000000..4e2fa92e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHouzz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHouzzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4DBC15'; + + const SiHouzz: IconType = React.forwardRef(function SiHouzz({title = 'Houzz', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHouzz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHp.tsx new file mode 100644 index 000000000..b4a28813d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0096D6'; + + const SiHp: IconType = React.forwardRef(function SiHp({title = 'HP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHsbc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHsbc.tsx new file mode 100644 index 000000000..791adf068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHsbc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHsbcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB0011'; + + const SiHsbc: IconType = React.forwardRef(function SiHsbc({title = 'HSBC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHsbc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtc.tsx new file mode 100644 index 000000000..274de7577 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHtcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A5CF4C'; + + const SiHtc: IconType = React.forwardRef(function SiHtc({title = 'HTC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHtc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtcvive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtcvive.tsx new file mode 100644 index 000000000..3babc8d9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtcvive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHtcviveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B2E3'; + + const SiHtcvive: IconType = React.forwardRef(function SiHtcvive({title = 'HTC Vive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHtcvive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtml5.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtml5.tsx new file mode 100644 index 000000000..4e399d7da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtml5.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHtml5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E34F26'; + + const SiHtml5: IconType = React.forwardRef(function SiHtml5({title = 'HTML5', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHtml5 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtmlacademy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtmlacademy.tsx new file mode 100644 index 000000000..afbc5e300 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtmlacademy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHtmlacademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#302683'; + + const SiHtmlacademy: IconType = React.forwardRef(function SiHtmlacademy({title = 'HTML Academy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHtmlacademy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtmx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtmx.tsx new file mode 100644 index 000000000..ea8671d2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtmx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHtmxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3366CC'; + + const SiHtmx: IconType = React.forwardRef(function SiHtmx({title = 'htmx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHtmx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtop.tsx new file mode 100644 index 000000000..07e6fe220 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHtop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHtopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009020'; + + const SiHtop: IconType = React.forwardRef(function SiHtop({title = 'htop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHtop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHttpie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHttpie.tsx new file mode 100644 index 000000000..f57f983b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHttpie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHttpieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#73DC8C'; + + const SiHttpie: IconType = React.forwardRef(function SiHttpie({title = 'HTTPie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHttpie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHuawei.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHuawei.tsx new file mode 100644 index 000000000..85f025e17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHuawei.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHuaweiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiHuawei: IconType = React.forwardRef(function SiHuawei({title = 'Huawei', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHuawei as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHubspot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHubspot.tsx new file mode 100644 index 000000000..0baaa30a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHubspot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHubspotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7A59'; + + const SiHubspot: IconType = React.forwardRef(function SiHubspot({title = 'HubSpot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHubspot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHuggingface.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHuggingface.tsx new file mode 100644 index 000000000..827136e29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHuggingface.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHuggingfaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD21E'; + + const SiHuggingface: IconType = React.forwardRef(function SiHuggingface({title = 'Hugging Face', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHuggingface as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHugo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHugo.tsx new file mode 100644 index 000000000..4e7cfe15b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHugo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHugoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4088'; + + const SiHugo: IconType = React.forwardRef(function SiHugo({title = 'Hugo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHugo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHumblebundle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHumblebundle.tsx new file mode 100644 index 000000000..927e02d27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHumblebundle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHumblebundleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC2929'; + + const SiHumblebundle: IconType = React.forwardRef(function SiHumblebundle({title = 'Humble Bundle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHumblebundle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHumhub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHumhub.tsx new file mode 100644 index 000000000..74e5ad033 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHumhub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHumhubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1B8291'; + + const SiHumhub: IconType = React.forwardRef(function SiHumhub({title = 'HumHub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHumhub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHungryjacks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHungryjacks.tsx new file mode 100644 index 000000000..6ddb52019 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHungryjacks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHungryjacksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D0021B'; + + const SiHungryjacks: IconType = React.forwardRef(function SiHungryjacks({title = 'Hungry Jacks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHungryjacks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHusqvarna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHusqvarna.tsx new file mode 100644 index 000000000..cd1739b18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHusqvarna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHusqvarnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#273A60'; + + const SiHusqvarna: IconType = React.forwardRef(function SiHusqvarna({title = 'Husqvarna', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHusqvarna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyper.tsx new file mode 100644 index 000000000..564753390 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHyperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiHyper: IconType = React.forwardRef(function SiHyper({title = 'Hyper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHyper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyperskill.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyperskill.tsx new file mode 100644 index 000000000..608753114 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyperskill.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHyperskillProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8C5AFF'; + + const SiHyperskill: IconType = React.forwardRef(function SiHyperskill({title = 'Hyperskill', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHyperskill as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyperx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyperx.tsx new file mode 100644 index 000000000..7418ab5b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyperx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHyperxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E21836'; + + const SiHyperx: IconType = React.forwardRef(function SiHyperx({title = 'HyperX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHyperx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHypothesis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHypothesis.tsx new file mode 100644 index 000000000..560120a7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHypothesis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHypothesisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BD1C2B'; + + const SiHypothesis: IconType = React.forwardRef(function SiHypothesis({title = 'Hypothesis', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHypothesis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyprland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyprland.tsx new file mode 100644 index 000000000..6c6df8667 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyprland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHyprlandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#58E1FF'; + + const SiHyprland: IconType = React.forwardRef(function SiHyprland({title = 'Hyprland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHyprland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyundai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyundai.tsx new file mode 100644 index 000000000..e89a340c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiHyundai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiHyundaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002C5E'; + + const SiHyundai: IconType = React.forwardRef(function SiHyundai({title = 'Hyundai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiHyundai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiI18next.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiI18next.tsx new file mode 100644 index 000000000..5fa82869b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiI18next.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiI18nextProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#26A69A'; + + const SiI18next: IconType = React.forwardRef(function SiI18next({title = 'i18next', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiI18next as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiI3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiI3.tsx new file mode 100644 index 000000000..b73c4c473 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiI3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiI3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#52C0FF'; + + const SiI3: IconType = React.forwardRef(function SiI3({title = 'i3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiI3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIata.tsx new file mode 100644 index 000000000..990ead4e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004E81'; + + const SiIata: IconType = React.forwardRef(function SiIata({title = 'IATA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIbeacon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIbeacon.tsx new file mode 100644 index 000000000..a981e73eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIbeacon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIbeaconProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3D7EBB'; + + const SiIbeacon: IconType = React.forwardRef(function SiIbeacon({title = 'iBeacon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIbeacon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIberia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIberia.tsx new file mode 100644 index 000000000..221153465 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIberia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIberiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D7192D'; + + const SiIberia: IconType = React.forwardRef(function SiIberia({title = 'Iberia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIberia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIced.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIced.tsx new file mode 100644 index 000000000..83cdf46e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIced.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3645FF'; + + const SiIced: IconType = React.forwardRef(function SiIced({title = 'Iced', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIced as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIceland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIceland.tsx new file mode 100644 index 000000000..30b117da3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIceland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcelandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC092F'; + + const SiIceland: IconType = React.forwardRef(function SiIceland({title = 'Iceland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIceland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcicibank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcicibank.tsx new file mode 100644 index 000000000..978371a60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcicibank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcicibankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AE282E'; + + const SiIcicibank: IconType = React.forwardRef(function SiIcicibank({title = 'ICICI Bank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcicibank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcinga.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcinga.tsx new file mode 100644 index 000000000..34fe9b20a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcinga.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcingaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#06062C'; + + const SiIcinga: IconType = React.forwardRef(function SiIcinga({title = 'Icinga', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcinga as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcloud.tsx new file mode 100644 index 000000000..7dc9af0a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3693F3'; + + const SiIcloud: IconType = React.forwardRef(function SiIcloud({title = 'iCloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcomoon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcomoon.tsx new file mode 100644 index 000000000..8578a64eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcomoon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcomoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#825794'; + + const SiIcomoon: IconType = React.forwardRef(function SiIcomoon({title = 'IcoMoon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcomoon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcon.tsx new file mode 100644 index 000000000..df1e39ed8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIconProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#31B8BB'; + + const SiIcon: IconType = React.forwardRef(function SiIcon({title = 'ICON', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconfinder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconfinder.tsx new file mode 100644 index 000000000..899480b54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconfinder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIconfinderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1B1F'; + + const SiIconfinder: IconType = React.forwardRef(function SiIconfinder({title = 'Iconfinder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIconfinder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconify.tsx new file mode 100644 index 000000000..25b678b39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIconifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#026C9C'; + + const SiIconify: IconType = React.forwardRef(function SiIconify({title = 'Iconify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIconify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconjar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconjar.tsx new file mode 100644 index 000000000..689d22486 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIconjar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIconjarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#16A5F3'; + + const SiIconjar: IconType = React.forwardRef(function SiIconjar({title = 'IconJar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIconjar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcons8.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcons8.tsx new file mode 100644 index 000000000..08820a5d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcons8.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcons8Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1FB141'; + + const SiIcons8: IconType = React.forwardRef(function SiIcons8({title = 'Icons8', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcons8 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcq.tsx new file mode 100644 index 000000000..c32c27f8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIcq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIcqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24FF00'; + + const SiIcq: IconType = React.forwardRef(function SiIcq({title = 'ICQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIcq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIeee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIeee.tsx new file mode 100644 index 000000000..b2bf67b49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIeee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIeeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00629B'; + + const SiIeee: IconType = React.forwardRef(function SiIeee({title = 'IEEE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIeee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfixit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfixit.tsx new file mode 100644 index 000000000..7c55ff22e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfixit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIfixitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0071CE'; + + const SiIfixit: IconType = React.forwardRef(function SiIfixit({title = 'iFixit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIfixit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfood.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfood.tsx new file mode 100644 index 000000000..c010554ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfood.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIfoodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA1D2C'; + + const SiIfood: IconType = React.forwardRef(function SiIfood({title = 'iFood', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIfood as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfttt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfttt.tsx new file mode 100644 index 000000000..e6901aee6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIfttt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIftttProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiIfttt: IconType = React.forwardRef(function SiIfttt({title = 'IFTTT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIfttt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIgdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIgdb.tsx new file mode 100644 index 000000000..f9f4fd9c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIgdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIgdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9147FF'; + + const SiIgdb: IconType = React.forwardRef(function SiIgdb({title = 'IGDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIgdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIgn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIgn.tsx new file mode 100644 index 000000000..9e8dbf8c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIgn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIgnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BF1313'; + + const SiIgn: IconType = React.forwardRef(function SiIgn({title = 'IGN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIgn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIheartradio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIheartradio.tsx new file mode 100644 index 000000000..3c6373ff1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIheartradio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIheartradioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C6002B'; + + const SiIheartradio: IconType = React.forwardRef(function SiIheartradio({title = 'iHeartRadio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIheartradio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIkea.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIkea.tsx new file mode 100644 index 000000000..b59d49f1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIkea.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIkeaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0058A3'; + + const SiIkea: IconType = React.forwardRef(function SiIkea({title = 'IKEA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIkea as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIledefrancemobilites.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIledefrancemobilites.tsx new file mode 100644 index 000000000..1deded321 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIledefrancemobilites.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIledefrancemobilitesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#67B4E7'; + + const SiIledefrancemobilites: IconType = React.forwardRef(function SiIledefrancemobilites({title = 'Île-de-France Mobilités', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIledefrancemobilites as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIlovepdf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIlovepdf.tsx new file mode 100644 index 000000000..786118289 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIlovepdf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIlovepdfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E5322D'; + + const SiIlovepdf: IconType = React.forwardRef(function SiIlovepdf({title = 'iLovePDF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIlovepdf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagedotsc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagedotsc.tsx new file mode 100644 index 000000000..eeb72ff12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagedotsc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImagedotscProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#039CB2'; + + const SiImagedotsc: IconType = React.forwardRef(function SiImagedotsc({title = 'Image.sc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImagedotsc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagej.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagej.tsx new file mode 100644 index 000000000..3837d8a24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagej.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImagejProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D8E0'; + + const SiImagej: IconType = React.forwardRef(function SiImagej({title = 'ImageJ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImagej as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagetoolbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagetoolbox.tsx new file mode 100644 index 000000000..e75e39f19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImagetoolbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImagetoolboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#60EA78'; + + const SiImagetoolbox: IconType = React.forwardRef(function SiImagetoolbox({title = 'Image Toolbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImagetoolbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImdb.tsx new file mode 100644 index 000000000..2d6a2b47a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5C518'; + + const SiImdb: IconType = React.forwardRef(function SiImdb({title = 'IMDb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImessage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImessage.tsx new file mode 100644 index 000000000..39df1e283 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImessage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImessageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34DA50'; + + const SiImessage: IconType = React.forwardRef(function SiImessage({title = 'iMessage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImessage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImgur.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImgur.tsx new file mode 100644 index 000000000..7ab81b801 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImgur.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImgurProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BB76E'; + + const SiImgur: IconType = React.forwardRef(function SiImgur({title = 'Imgur', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImgur as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmer.tsx new file mode 100644 index 000000000..5405e351c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImmerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00E7C3'; + + const SiImmer: IconType = React.forwardRef(function SiImmer({title = 'Immer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImmer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmersivetranslate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmersivetranslate.tsx new file mode 100644 index 000000000..064674d26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmersivetranslate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImmersivetranslateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA4C89'; + + const SiImmersivetranslate: IconType = React.forwardRef(function SiImmersivetranslate({title = 'Immersive Translate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImmersivetranslate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmich.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmich.tsx new file mode 100644 index 000000000..ff9b40a5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImmich.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImmichProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4250AF'; + + const SiImmich: IconType = React.forwardRef(function SiImmich({title = 'Immich', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImmich as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImou.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImou.tsx new file mode 100644 index 000000000..e93fa3d75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImou.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E89313'; + + const SiImou: IconType = React.forwardRef(function SiImou({title = 'Imou', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImou as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiImprovmx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImprovmx.tsx new file mode 100644 index 000000000..09e55f5d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiImprovmx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiImprovmxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2FBEFF'; + + const SiImprovmx: IconType = React.forwardRef(function SiImprovmx({title = 'ImprovMX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiImprovmx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndeed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndeed.tsx new file mode 100644 index 000000000..db578ac66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndeed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIndeedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003A9B'; + + const SiIndeed: IconType = React.forwardRef(function SiIndeed({title = 'Indeed', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIndeed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndiansuperleague.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndiansuperleague.tsx new file mode 100644 index 000000000..ad9f2663e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndiansuperleague.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIndiansuperleagueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED2F21'; + + const SiIndiansuperleague: IconType = React.forwardRef(function SiIndiansuperleague({title = 'Indian Super League', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIndiansuperleague as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndiehackers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndiehackers.tsx new file mode 100644 index 000000000..273f5db99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndiehackers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIndiehackersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E2439'; + + const SiIndiehackers: IconType = React.forwardRef(function SiIndiehackers({title = 'Indie Hackers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIndiehackers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndigo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndigo.tsx new file mode 100644 index 000000000..40894ffd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIndigo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIndigoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09009B'; + + const SiIndigo: IconType = React.forwardRef(function SiIndigo({title = 'IndiGo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIndigo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInductiveautomation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInductiveautomation.tsx new file mode 100644 index 000000000..1c17057e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInductiveautomation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInductiveautomationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#445C6D'; + + const SiInductiveautomation: IconType = React.forwardRef(function SiInductiveautomation({title = 'Inductive Automation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInductiveautomation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInertia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInertia.tsx new file mode 100644 index 000000000..7bf4403bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInertia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInertiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9553E9'; + + const SiInertia: IconType = React.forwardRef(function SiInertia({title = 'Inertia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInertia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfiniti.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfiniti.tsx new file mode 100644 index 000000000..c9fe953e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfiniti.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfinitiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#020B24'; + + const SiInfiniti: IconType = React.forwardRef(function SiInfiniti({title = 'INFINITI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfiniti as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfinityfree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfinityfree.tsx new file mode 100644 index 000000000..7b31783bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfinityfree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfinityfreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7738C8'; + + const SiInfinityfree: IconType = React.forwardRef(function SiInfinityfree({title = 'InfinityFree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfinityfree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfluxdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfluxdb.tsx new file mode 100644 index 000000000..9ab14903e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfluxdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfluxdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#22ADF6'; + + const SiInfluxdb: IconType = React.forwardRef(function SiInfluxdb({title = 'InfluxDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfluxdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfomaniak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfomaniak.tsx new file mode 100644 index 000000000..3b35e58ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfomaniak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfomaniakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0098FF'; + + const SiInfomaniak: IconType = React.forwardRef(function SiInfomaniak({title = 'Infomaniak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfomaniak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfoq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfoq.tsx new file mode 100644 index 000000000..9351d6098 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfoq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfoqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C6CAF'; + + const SiInfoq: IconType = React.forwardRef(function SiInfoq({title = 'InfoQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfoq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfosys.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfosys.tsx new file mode 100644 index 000000000..699f93044 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfosys.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfosysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007CC3'; + + const SiInfosys: IconType = React.forwardRef(function SiInfosys({title = 'Infosys', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfosys as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfracost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfracost.tsx new file mode 100644 index 000000000..1b1883b0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfracost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfracostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB44B8'; + + const SiInfracost: IconType = React.forwardRef(function SiInfracost({title = 'Infracost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfracost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfuse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfuse.tsx new file mode 100644 index 000000000..23c21ff7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInfuse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInfuseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8000'; + + const SiInfuse: IconType = React.forwardRef(function SiInfuse({title = 'Infuse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInfuse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIngress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIngress.tsx new file mode 100644 index 000000000..65a472502 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIngress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIngressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#783CBD'; + + const SiIngress: IconType = React.forwardRef(function SiIngress({title = 'Ingress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIngress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInkdrop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInkdrop.tsx new file mode 100644 index 000000000..ee968be15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInkdrop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInkdropProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7A78D7'; + + const SiInkdrop: IconType = React.forwardRef(function SiInkdrop({title = 'Inkdrop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInkdrop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInkscape.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInkscape.tsx new file mode 100644 index 000000000..f7c1402d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInkscape.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInkscapeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiInkscape: IconType = React.forwardRef(function SiInkscape({title = 'Inkscape', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInkscape as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInoreader.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInoreader.tsx new file mode 100644 index 000000000..ec63ce16d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInoreader.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInoreaderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1875F3'; + + const SiInoreader: IconType = React.forwardRef(function SiInoreader({title = 'Inoreader', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInoreader as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInquirer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInquirer.tsx new file mode 100644 index 000000000..9acda65e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInquirer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInquirerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0DB4F'; + + const SiInquirer: IconType = React.forwardRef(function SiInquirer({title = 'Inquirer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInquirer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInsomnia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInsomnia.tsx new file mode 100644 index 000000000..45b88ff6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInsomnia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInsomniaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4000BF'; + + const SiInsomnia: IconType = React.forwardRef(function SiInsomnia({title = 'Insomnia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInsomnia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInspire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInspire.tsx new file mode 100644 index 000000000..5fd945c38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInspire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInspireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00E5FF'; + + const SiInspire: IconType = React.forwardRef(function SiInspire({title = 'INSPIRE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInspire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInsta360.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInsta360.tsx new file mode 100644 index 000000000..b1c12615c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInsta360.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInsta360Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFEE00'; + + const SiInsta360: IconType = React.forwardRef(function SiInsta360({title = 'Insta360', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInsta360 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstacart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstacart.tsx new file mode 100644 index 000000000..99547b4a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstacart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInstacartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#43B02A'; + + const SiInstacart: IconType = React.forwardRef(function SiInstacart({title = 'Instacart', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInstacart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstagram.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstagram.tsx new file mode 100644 index 000000000..d08f83b01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstagram.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInstagramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0069'; + + const SiInstagram: IconType = React.forwardRef(function SiInstagram({title = 'Instagram', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInstagram as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstapaper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstapaper.tsx new file mode 100644 index 000000000..ecf99b649 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstapaper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInstapaperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F1F1F'; + + const SiInstapaper: IconType = React.forwardRef(function SiInstapaper({title = 'Instapaper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInstapaper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstatus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstatus.tsx new file mode 100644 index 000000000..61cd25059 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstatus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInstatusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4EE3C2'; + + const SiInstatus: IconType = React.forwardRef(function SiInstatus({title = 'Instatus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInstatus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstructables.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstructables.tsx new file mode 100644 index 000000000..09f8f10cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstructables.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInstructablesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FABF15'; + + const SiInstructables: IconType = React.forwardRef(function SiInstructables({title = 'Instructables', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInstructables as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstructure.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstructure.tsx new file mode 100644 index 000000000..cdb993104 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInstructure.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInstructureProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A7BA0'; + + const SiInstructure: IconType = React.forwardRef(function SiInstructure({title = 'Instructure', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInstructure as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntel.tsx new file mode 100644 index 000000000..912bc9fe7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIntelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0071C5'; + + const SiIntel: IconType = React.forwardRef(function SiIntel({title = 'Intel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIntel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntellijidea.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntellijidea.tsx new file mode 100644 index 000000000..b35b714b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntellijidea.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIntellijideaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiIntellijidea: IconType = React.forwardRef(function SiIntellijidea({title = 'IntelliJ IDEA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIntellijidea as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInteractiondesignfoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInteractiondesignfoundation.tsx new file mode 100644 index 000000000..20047bb5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInteractiondesignfoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInteractiondesignfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2B2B2B'; + + const SiInteractiondesignfoundation: IconType = React.forwardRef(function SiInteractiondesignfoundation({title = 'Interaction Design Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInteractiondesignfoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInteractjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInteractjs.tsx new file mode 100644 index 000000000..050300298 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInteractjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInteractjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2599ED'; + + const SiInteractjs: IconType = React.forwardRef(function SiInteractjs({title = 'InteractJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInteractjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInterbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInterbase.tsx new file mode 100644 index 000000000..192eeefc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInterbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInterbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E62431'; + + const SiInterbase: IconType = React.forwardRef(function SiInterbase({title = 'Interbase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInterbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntercom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntercom.tsx new file mode 100644 index 000000000..e51a5984e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntercom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIntercomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6AFDEF'; + + const SiIntercom: IconType = React.forwardRef(function SiIntercom({title = 'Intercom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIntercom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntermarche.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntermarche.tsx new file mode 100644 index 000000000..4b09b4b68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntermarche.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIntermarcheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E2001A'; + + const SiIntermarche: IconType = React.forwardRef(function SiIntermarche({title = 'Intermarche', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIntermarche as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInternetarchive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInternetarchive.tsx new file mode 100644 index 000000000..0cc7087b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInternetarchive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInternetarchiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#666666'; + + const SiInternetarchive: IconType = React.forwardRef(function SiInternetarchive({title = 'Internet Archive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInternetarchive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInternetcomputer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInternetcomputer.tsx new file mode 100644 index 000000000..38badf2c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInternetcomputer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInternetcomputerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B00B9'; + + const SiInternetcomputer: IconType = React.forwardRef(function SiInternetcomputer({title = 'Internet Computer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInternetcomputer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntigriti.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntigriti.tsx new file mode 100644 index 000000000..34424e599 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntigriti.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIntigritiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#161A36'; + + const SiIntigriti: IconType = React.forwardRef(function SiIntigriti({title = 'Intigriti', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIntigriti as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntuit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntuit.tsx new file mode 100644 index 000000000..1742bbd62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIntuit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIntuitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#236CFF'; + + const SiIntuit: IconType = React.forwardRef(function SiIntuit({title = 'Intuit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIntuit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInvidious.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInvidious.tsx new file mode 100644 index 000000000..bc3392736 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInvidious.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInvidiousProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B6F0'; + + const SiInvidious: IconType = React.forwardRef(function SiInvidious({title = 'Invidious', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInvidious as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiInvoiceninja.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInvoiceninja.tsx new file mode 100644 index 000000000..9111827a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiInvoiceninja.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiInvoiceninjaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiInvoiceninja: IconType = React.forwardRef(function SiInvoiceninja({title = 'Invoice Ninja', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiInvoiceninja as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIobroker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIobroker.tsx new file mode 100644 index 000000000..52cb92341 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIobroker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIobrokerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3399CC'; + + const SiIobroker: IconType = React.forwardRef(function SiIobroker({title = 'ioBroker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIobroker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIonic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIonic.tsx new file mode 100644 index 000000000..f8a5ff271 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIonic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIonicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3880FF'; + + const SiIonic: IconType = React.forwardRef(function SiIonic({title = 'Ionic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIonic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIonos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIonos.tsx new file mode 100644 index 000000000..6c78e38e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIonos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIonosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003D8F'; + + const SiIonos: IconType = React.forwardRef(function SiIonos({title = 'Ionos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIonos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIos.tsx new file mode 100644 index 000000000..a551730d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiIos: IconType = React.forwardRef(function SiIos({title = 'iOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIota.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIota.tsx new file mode 100644 index 000000000..fd7fb7770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIota.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#131F37'; + + const SiIota: IconType = React.forwardRef(function SiIota({title = 'IOTA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIota as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIpfs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIpfs.tsx new file mode 100644 index 000000000..c0359e73f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIpfs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIpfsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#65C2CB'; + + const SiIpfs: IconType = React.forwardRef(function SiIpfs({title = 'IPFS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIpfs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIris.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIris.tsx new file mode 100644 index 000000000..99b71df1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIris.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIrisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#25313C'; + + const SiIris: IconType = React.forwardRef(function SiIris({title = 'IRIS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIris as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIrobot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIrobot.tsx new file mode 100644 index 000000000..00f986e80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIrobot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIrobotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6CB86A'; + + const SiIrobot: IconType = React.forwardRef(function SiIrobot({title = 'iRobot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIrobot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIsc2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIsc2.tsx new file mode 100644 index 000000000..9aec8b643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIsc2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIsc2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#468145'; + + const SiIsc2: IconType = React.forwardRef(function SiIsc2({title = 'ISC2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIsc2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIsro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIsro.tsx new file mode 100644 index 000000000..59471a61d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIsro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIsroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F58220'; + + const SiIsro: IconType = React.forwardRef(function SiIsro({title = 'ISRO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIsro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIssuu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIssuu.tsx new file mode 100644 index 000000000..9cdf37c4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIssuu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIssuuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F36D5D'; + + const SiIssuu: IconType = React.forwardRef(function SiIssuu({title = 'Issuu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIssuu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIstio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIstio.tsx new file mode 100644 index 000000000..e7ea06414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIstio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIstioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#466BB0'; + + const SiIstio: IconType = React.forwardRef(function SiIstio({title = 'Istio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIstio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiItchdotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiItchdotio.tsx new file mode 100644 index 000000000..e941a18bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiItchdotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiItchdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA5C5C'; + + const SiItchdotio: IconType = React.forwardRef(function SiItchdotio({title = 'Itch.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiItchdotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIterm2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIterm2.tsx new file mode 100644 index 000000000..c4ee0fc45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIterm2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIterm2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiIterm2: IconType = React.forwardRef(function SiIterm2({title = 'iTerm2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIterm2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiItunes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiItunes.tsx new file mode 100644 index 000000000..9fa894956 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiItunes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiItunesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB5BC5'; + + const SiItunes: IconType = React.forwardRef(function SiItunes({title = 'iTunes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiItunes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiItvx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiItvx.tsx new file mode 100644 index 000000000..554b95b4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiItvx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiItvxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DEEB52'; + + const SiItvx: IconType = React.forwardRef(function SiItvx({title = 'ITVx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiItvx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiIveco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIveco.tsx new file mode 100644 index 000000000..3dd0105b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiIveco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiIvecoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1554FF'; + + const SiIveco: IconType = React.forwardRef(function SiIveco({title = 'IVECO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiIveco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJabber.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJabber.tsx new file mode 100644 index 000000000..5aebe0bd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJabber.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJabberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiJabber: IconType = React.forwardRef(function SiJabber({title = 'Jabber', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJabber as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJaeger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJaeger.tsx new file mode 100644 index 000000000..80adebcd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJaeger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJaegerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#66CFE3'; + + const SiJaeger: IconType = React.forwardRef(function SiJaeger({title = 'Jaeger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJaeger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJameson.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJameson.tsx new file mode 100644 index 000000000..2757993f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJameson.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJamesonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004027'; + + const SiJameson: IconType = React.forwardRef(function SiJameson({title = 'Jameson', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJameson as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJamstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJamstack.tsx new file mode 100644 index 000000000..9cfe709a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJamstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJamstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0047F'; + + const SiJamstack: IconType = React.forwardRef(function SiJamstack({title = 'Jamstack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJamstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJapanairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJapanairlines.tsx new file mode 100644 index 000000000..4ec0f048b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJapanairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJapanairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C00000'; + + const SiJapanairlines: IconType = React.forwardRef(function SiJapanairlines({title = 'Japan Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJapanairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJasmine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJasmine.tsx new file mode 100644 index 000000000..44eb56dc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJasmine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJasmineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8A4182'; + + const SiJasmine: IconType = React.forwardRef(function SiJasmine({title = 'Jasmine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJasmine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJavascript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJavascript.tsx new file mode 100644 index 000000000..60c5a349b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJavascript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJavascriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7DF1E'; + + const SiJavascript: IconType = React.forwardRef(function SiJavascript({title = 'JavaScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJavascript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJbl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJbl.tsx new file mode 100644 index 000000000..42d549e80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJbl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJblProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3300'; + + const SiJbl: IconType = React.forwardRef(function SiJbl({title = 'JBL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJbl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJcb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJcb.tsx new file mode 100644 index 000000000..5211c5046 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJcb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJcbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B4EA2'; + + const SiJcb: IconType = React.forwardRef(function SiJcb({title = 'JCB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJcb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJdoodle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJdoodle.tsx new file mode 100644 index 000000000..0eba6c0da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJdoodle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJdoodleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD5200'; + + const SiJdoodle: IconType = React.forwardRef(function SiJdoodle({title = 'JDoodle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJdoodle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJeep.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJeep.tsx new file mode 100644 index 000000000..a6cee9df7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJeep.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJeepProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJeep: IconType = React.forwardRef(function SiJeep({title = 'Jeep', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJeep as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJekyll.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJekyll.tsx new file mode 100644 index 000000000..4115d9bbe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJekyll.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJekyllProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiJekyll: IconType = React.forwardRef(function SiJekyll({title = 'Jekyll', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJekyll as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJellyfin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJellyfin.tsx new file mode 100644 index 000000000..da70884ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJellyfin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJellyfinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A4DC'; + + const SiJellyfin: IconType = React.forwardRef(function SiJellyfin({title = 'Jellyfin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJellyfin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJenkins.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJenkins.tsx new file mode 100644 index 000000000..11fe8a756 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJenkins.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJenkinsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D24939'; + + const SiJenkins: IconType = React.forwardRef(function SiJenkins({title = 'Jenkins', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJenkins as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJest.tsx new file mode 100644 index 000000000..f9b4a4aa5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C21325'; + + const SiJest: IconType = React.forwardRef(function SiJest({title = 'Jest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJet.tsx new file mode 100644 index 000000000..360543d27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBBA00'; + + const SiJet: IconType = React.forwardRef(function SiJet({title = 'JET', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetblue.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetblue.tsx new file mode 100644 index 000000000..dddcd5583 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetblue.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJetblueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#001E59'; + + const SiJetblue: IconType = React.forwardRef(function SiJetblue({title = 'JetBlue', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJetblue as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetbrains.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetbrains.tsx new file mode 100644 index 000000000..028c2d6e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetbrains.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJetbrainsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJetbrains: IconType = React.forwardRef(function SiJetbrains({title = 'JetBrains', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJetbrains as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetpackcompose.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetpackcompose.tsx new file mode 100644 index 000000000..42fbbe05a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJetpackcompose.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJetpackcomposeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiJetpackcompose: IconType = React.forwardRef(function SiJetpackcompose({title = 'Jetpack Compose', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJetpackcompose as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJfrog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJfrog.tsx new file mode 100644 index 000000000..572cefff2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJfrog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJfrogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40BE46'; + + const SiJfrog: IconType = React.forwardRef(function SiJfrog({title = 'JFrog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJfrog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJfrogpipelines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJfrogpipelines.tsx new file mode 100644 index 000000000..bf6338be4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJfrogpipelines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJfrogpipelinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40BE46'; + + const SiJfrogpipelines: IconType = React.forwardRef(function SiJfrogpipelines({title = 'JFrog Pipelines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJfrogpipelines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJhipster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJhipster.tsx new file mode 100644 index 000000000..3412542d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJhipster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJhipsterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3E8ACC'; + + const SiJhipster: IconType = React.forwardRef(function SiJhipster({title = 'JHipster', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJhipster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJinja.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJinja.tsx new file mode 100644 index 000000000..a29a8e1de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJinja.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJinjaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7E0C1B'; + + const SiJinja: IconType = React.forwardRef(function SiJinja({title = 'Jinja', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJinja as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJio.tsx new file mode 100644 index 000000000..b4ee18a95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A2885'; + + const SiJio: IconType = React.forwardRef(function SiJio({title = 'Jio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJira.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJira.tsx new file mode 100644 index 000000000..ed06ea838 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJira.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJiraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiJira: IconType = React.forwardRef(function SiJira({title = 'Jira', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJira as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJirasoftware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJirasoftware.tsx new file mode 100644 index 000000000..45bd037cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJirasoftware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJirasoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiJirasoftware: IconType = React.forwardRef(function SiJirasoftware({title = 'Jira Software', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJirasoftware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJitpack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJitpack.tsx new file mode 100644 index 000000000..523b66f06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJitpack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJitpackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJitpack: IconType = React.forwardRef(function SiJitpack({title = 'JitPack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJitpack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJitsi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJitsi.tsx new file mode 100644 index 000000000..cae20162a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJitsi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJitsiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#97979A'; + + const SiJitsi: IconType = React.forwardRef(function SiJitsi({title = 'Jitsi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJitsi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJohndeere.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJohndeere.tsx new file mode 100644 index 000000000..6ed1d0ff6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJohndeere.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJohndeereProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#367C2B'; + + const SiJohndeere: IconType = React.forwardRef(function SiJohndeere({title = 'John Deere', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJohndeere as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJoomla.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJoomla.tsx new file mode 100644 index 000000000..1f1f6a1ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJoomla.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJoomlaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5091CD'; + + const SiJoomla: IconType = React.forwardRef(function SiJoomla({title = 'Joomla', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJoomla as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJoplin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJoplin.tsx new file mode 100644 index 000000000..554593192 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJoplin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJoplinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1071D3'; + + const SiJoplin: IconType = React.forwardRef(function SiJoplin({title = 'Joplin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJoplin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJordan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJordan.tsx new file mode 100644 index 000000000..52e1fda81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJordan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJordanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJordan: IconType = React.forwardRef(function SiJordan({title = 'Jordan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJordan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJouav.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJouav.tsx new file mode 100644 index 000000000..98d362ded --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJouav.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJouavProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E1B133'; + + const SiJouav: IconType = React.forwardRef(function SiJouav({title = 'JOUAV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJouav as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJovian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJovian.tsx new file mode 100644 index 000000000..8e7c2944c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJovian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJovianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D61FF'; + + const SiJovian: IconType = React.forwardRef(function SiJovian({title = 'Jovian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJovian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJpeg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJpeg.tsx new file mode 100644 index 000000000..f6aad6abc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJpeg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJpegProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8A8A8A'; + + const SiJpeg: IconType = React.forwardRef(function SiJpeg({title = 'JPEG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJpeg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJquery.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJquery.tsx new file mode 100644 index 000000000..3c4836bcd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJquery.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJqueryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0769AD'; + + const SiJquery: IconType = React.forwardRef(function SiJquery({title = 'jQuery', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJquery as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJrgroup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJrgroup.tsx new file mode 100644 index 000000000..aaf8416b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJrgroup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJrgroupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#44AF35'; + + const SiJrgroup: IconType = React.forwardRef(function SiJrgroup({title = 'JR Group', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJrgroup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsdelivr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsdelivr.tsx new file mode 100644 index 000000000..7f8458a57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsdelivr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJsdelivrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E84D3D'; + + const SiJsdelivr: IconType = React.forwardRef(function SiJsdelivr({title = 'jsDelivr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJsdelivr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsfiddle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsfiddle.tsx new file mode 100644 index 000000000..92e695a8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsfiddle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJsfiddleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0084FF'; + + const SiJsfiddle: IconType = React.forwardRef(function SiJsfiddle({title = 'JSFiddle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJsfiddle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJson.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJson.tsx new file mode 100644 index 000000000..a962f870a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJson.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJsonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJson: IconType = React.forwardRef(function SiJson({title = 'JSON', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJson as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsonwebtokens.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsonwebtokens.tsx new file mode 100644 index 000000000..36c2d638b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsonwebtokens.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJsonwebtokensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJsonwebtokens: IconType = React.forwardRef(function SiJsonwebtokens({title = 'JSON Web Tokens', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJsonwebtokens as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsr.tsx new file mode 100644 index 000000000..3bf9c6725 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJsr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJsrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7DF1E'; + + const SiJsr: IconType = React.forwardRef(function SiJsr({title = 'JSR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJsr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJss.tsx new file mode 100644 index 000000000..faaf8251c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7DF1E'; + + const SiJss: IconType = React.forwardRef(function SiJss({title = 'JSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuce.tsx new file mode 100644 index 000000000..15fba2ba2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJuceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8DC63F'; + + const SiJuce: IconType = React.forwardRef(function SiJuce({title = 'JUCE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJuce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuejin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuejin.tsx new file mode 100644 index 000000000..70e2472da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuejin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJuejinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007FFF'; + + const SiJuejin: IconType = React.forwardRef(function SiJuejin({title = 'Juejin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJuejin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuke.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuke.tsx new file mode 100644 index 000000000..b5cc39b62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJuke.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJukeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6CD74A'; + + const SiJuke: IconType = React.forwardRef(function SiJuke({title = 'JUKE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJuke as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJulia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJulia.tsx new file mode 100644 index 000000000..9b7a5cf26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJulia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJuliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9558B2'; + + const SiJulia: IconType = React.forwardRef(function SiJulia({title = 'Julia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJulia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJunipernetworks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJunipernetworks.tsx new file mode 100644 index 000000000..ededdf61c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJunipernetworks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJunipernetworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#84B135'; + + const SiJunipernetworks: IconType = React.forwardRef(function SiJunipernetworks({title = 'Juniper Networks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJunipernetworks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJunit5.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJunit5.tsx new file mode 100644 index 000000000..d2e517eb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJunit5.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJunit5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#25A162'; + + const SiJunit5: IconType = React.forwardRef(function SiJunit5({title = 'JUnit5', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJunit5 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJupyter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJupyter.tsx new file mode 100644 index 000000000..1483aec73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJupyter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJupyterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F37626'; + + const SiJupyter: IconType = React.forwardRef(function SiJupyter({title = 'Jupyter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJupyter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJust.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJust.tsx new file mode 100644 index 000000000..f9fa19e08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJust.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJustProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiJust: IconType = React.forwardRef(function SiJust({title = 'Just', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJust as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJusteat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJusteat.tsx new file mode 100644 index 000000000..fae66c6ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJusteat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJusteatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8000'; + + const SiJusteat: IconType = React.forwardRef(function SiJusteat({title = 'Just Eat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJusteat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiJustgiving.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJustgiving.tsx new file mode 100644 index 000000000..f72d2a19d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiJustgiving.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiJustgivingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AD29B6'; + + const SiJustgiving: IconType = React.forwardRef(function SiJustgiving({title = 'JustGiving', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiJustgiving as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiK3s.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiK3s.tsx new file mode 100644 index 000000000..423d2fc65 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiK3s.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiK3sProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC61C'; + + const SiK3s: IconType = React.forwardRef(function SiK3s({title = 'K3s', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiK3s as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiK6.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiK6.tsx new file mode 100644 index 000000000..2300ffb46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiK6.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiK6Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7D64FF'; + + const SiK6: IconType = React.forwardRef(function SiK6({title = 'k6', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiK6 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaggle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaggle.tsx new file mode 100644 index 000000000..bb1640639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaggle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKaggleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#20BEFF'; + + const SiKaggle: IconType = React.forwardRef(function SiKaggle({title = 'Kaggle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKaggle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKagi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKagi.tsx new file mode 100644 index 000000000..90040b0fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKagi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKagiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB319'; + + const SiKagi: IconType = React.forwardRef(function SiKagi({title = 'Kagi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKagi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKahoot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKahoot.tsx new file mode 100644 index 000000000..88679fa02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKahoot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKahootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#46178F'; + + const SiKahoot: IconType = React.forwardRef(function SiKahoot({title = 'Kahoot!', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKahoot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaios.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaios.tsx new file mode 100644 index 000000000..73a822d9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaios.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKaiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6F02B5'; + + const SiKaios: IconType = React.forwardRef(function SiKaios({title = 'KaiOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKaios as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKakao.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKakao.tsx new file mode 100644 index 000000000..94d9188b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKakao.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKakaoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCD00'; + + const SiKakao: IconType = React.forwardRef(function SiKakao({title = 'Kakao', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKakao as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKakaotalk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKakaotalk.tsx new file mode 100644 index 000000000..8d0cfa304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKakaotalk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKakaotalkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCD00'; + + const SiKakaotalk: IconType = React.forwardRef(function SiKakaotalk({title = 'KakaoTalk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKakaotalk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKalilinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKalilinux.tsx new file mode 100644 index 000000000..5ad902c55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKalilinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKalilinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#557C94'; + + const SiKalilinux: IconType = React.forwardRef(function SiKalilinux({title = 'Kali Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKalilinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKamailio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKamailio.tsx new file mode 100644 index 000000000..7f1cf2e1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKamailio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKamailioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#506365'; + + const SiKamailio: IconType = React.forwardRef(function SiKamailio({title = 'Kamailio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKamailio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKando.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKando.tsx new file mode 100644 index 000000000..874b81c9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKando.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKandoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EACFCF'; + + const SiKando: IconType = React.forwardRef(function SiKando({title = 'Kando', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKando as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaniko.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaniko.tsx new file mode 100644 index 000000000..6fdd196ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaniko.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKanikoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA600'; + + const SiKaniko: IconType = React.forwardRef(function SiKaniko({title = 'Kaniko', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKaniko as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKarlsruherverkehrsverbund.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKarlsruherverkehrsverbund.tsx new file mode 100644 index 000000000..bed8690e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKarlsruherverkehrsverbund.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKarlsruherverkehrsverbundProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9B2321'; + + const SiKarlsruherverkehrsverbund: IconType = React.forwardRef(function SiKarlsruherverkehrsverbund({title = 'Karlsruher Verkehrsverbund', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKarlsruherverkehrsverbund as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKasasmart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKasasmart.tsx new file mode 100644 index 000000000..bce6d24ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKasasmart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKasasmartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4ACBD6'; + + const SiKasasmart: IconType = React.forwardRef(function SiKasasmart({title = 'Kasa Smart', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKasasmart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKashflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKashflow.tsx new file mode 100644 index 000000000..19254d458 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKashflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKashflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E5426E'; + + const SiKashflow: IconType = React.forwardRef(function SiKashflow({title = 'KashFlow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKashflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaspersky.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaspersky.tsx new file mode 100644 index 000000000..926b102a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaspersky.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKasperskyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006D5C'; + + const SiKaspersky: IconType = React.forwardRef(function SiKaspersky({title = 'Kaspersky', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKaspersky as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKatana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKatana.tsx new file mode 100644 index 000000000..c77b640c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKatana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKatanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiKatana: IconType = React.forwardRef(function SiKatana({title = 'Katana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKatana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaufland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaufland.tsx new file mode 100644 index 000000000..3b9e268d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKaufland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKauflandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E10915'; + + const SiKaufland: IconType = React.forwardRef(function SiKaufland({title = 'Kaufland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKaufland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKde.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKde.tsx new file mode 100644 index 000000000..6565654f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKde.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKdeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D99F3'; + + const SiKde: IconType = React.forwardRef(function SiKde({title = 'KDE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKde as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdeneon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdeneon.tsx new file mode 100644 index 000000000..7c477ea9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdeneon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKdeneonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DC08D'; + + const SiKdeneon: IconType = React.forwardRef(function SiKdeneon({title = 'KDE neon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKdeneon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdenlive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdenlive.tsx new file mode 100644 index 000000000..4bfb76550 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdenlive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKdenliveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#527EB2'; + + const SiKdenlive: IconType = React.forwardRef(function SiKdenlive({title = 'Kdenlive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKdenlive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdeplasma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdeplasma.tsx new file mode 100644 index 000000000..65992664e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKdeplasma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKdeplasmaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D99F3'; + + const SiKdeplasma: IconType = React.forwardRef(function SiKdeplasma({title = 'KDE Plasma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKdeplasma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKedro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKedro.tsx new file mode 100644 index 000000000..b65e971ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKedro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKedroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC900'; + + const SiKedro: IconType = React.forwardRef(function SiKedro({title = 'Kedro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKedro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeenetic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeenetic.tsx new file mode 100644 index 000000000..f7c53599d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeenetic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeeneticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009EE2'; + + const SiKeenetic: IconType = React.forwardRef(function SiKeenetic({title = 'Keenetic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeenetic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeepachangelog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeepachangelog.tsx new file mode 100644 index 000000000..6b81986d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeepachangelog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeepachangelogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E05735'; + + const SiKeepachangelog: IconType = React.forwardRef(function SiKeepachangelog({title = 'Keep a Changelog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeepachangelog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeepassxc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeepassxc.tsx new file mode 100644 index 000000000..81c5ec3f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeepassxc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeepassxcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6CAC4D'; + + const SiKeepassxc: IconType = React.forwardRef(function SiKeepassxc({title = 'KeePassXC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeepassxc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeeper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeeper.tsx new file mode 100644 index 000000000..1feb75af7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeeper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeeperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC700'; + + const SiKeeper: IconType = React.forwardRef(function SiKeeper({title = 'Keeper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeeper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeeweb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeeweb.tsx new file mode 100644 index 000000000..1ec0477e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeeweb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeewebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#528BFF'; + + const SiKeeweb: IconType = React.forwardRef(function SiKeeweb({title = 'KeeWeb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeeweb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKenmei.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKenmei.tsx new file mode 100644 index 000000000..eb9d897ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKenmei.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKenmeiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#545C64'; + + const SiKenmei: IconType = React.forwardRef(function SiKenmei({title = 'Kenmei', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKenmei as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKentico.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKentico.tsx new file mode 100644 index 000000000..c14237b4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKentico.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKenticoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F05A22'; + + const SiKentico: IconType = React.forwardRef(function SiKentico({title = 'Kentico', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKentico as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeploy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeploy.tsx new file mode 100644 index 000000000..79f01b5c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeploy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeployProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF914D'; + + const SiKeploy: IconType = React.forwardRef(function SiKeploy({title = 'Keploy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeploy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeras.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeras.tsx new file mode 100644 index 000000000..4e185c90d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeras.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKerasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D00000'; + + const SiKeras: IconType = React.forwardRef(function SiKeras({title = 'Keras', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeras as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeybase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeybase.tsx new file mode 100644 index 000000000..c4afdfb51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeybase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeybaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#33A0FF'; + + const SiKeybase: IconType = React.forwardRef(function SiKeybase({title = 'Keybase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeybase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeycdn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeycdn.tsx new file mode 100644 index 000000000..8b416c70b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeycdn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeycdnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#047AED'; + + const SiKeycdn: IconType = React.forwardRef(function SiKeycdn({title = 'KeyCDN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeycdn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeycloak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeycloak.tsx new file mode 100644 index 000000000..d4327b51b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeycloak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeycloakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4D4D4D'; + + const SiKeycloak: IconType = React.forwardRef(function SiKeycloak({title = 'Keycloak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeycloak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeystone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeystone.tsx new file mode 100644 index 000000000..f81a68342 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKeystone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKeystoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#166BFF'; + + const SiKeystone: IconType = React.forwardRef(function SiKeystone({title = 'Keystone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKeystone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKfc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKfc.tsx new file mode 100644 index 000000000..ff4a14bcb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKfc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKfcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F40027'; + + const SiKfc: IconType = React.forwardRef(function SiKfc({title = 'KFC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKfc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKhanacademy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKhanacademy.tsx new file mode 100644 index 000000000..fcedb71bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKhanacademy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKhanacademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14BF96'; + + const SiKhanacademy: IconType = React.forwardRef(function SiKhanacademy({title = 'Khan Academy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKhanacademy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKhronosgroup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKhronosgroup.tsx new file mode 100644 index 000000000..59ff25845 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKhronosgroup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKhronosgroupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC3333'; + + const SiKhronosgroup: IconType = React.forwardRef(function SiKhronosgroup({title = 'Khronos Group', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKhronosgroup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKia.tsx new file mode 100644 index 000000000..05f40c97a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05141F'; + + const SiKia: IconType = React.forwardRef(function SiKia({title = 'Kia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKibana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKibana.tsx new file mode 100644 index 000000000..b7c7bca33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKibana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKibanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiKibana: IconType = React.forwardRef(function SiKibana({title = 'Kibana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKibana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKicad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKicad.tsx new file mode 100644 index 000000000..309f4d126 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKicad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKicadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#314CB0'; + + const SiKicad: IconType = React.forwardRef(function SiKicad({title = 'KiCad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKicad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKick.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKick.tsx new file mode 100644 index 000000000..cd970d6ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKick.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKickProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#53FC19'; + + const SiKick: IconType = React.forwardRef(function SiKick({title = 'Kick', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKick as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKickstarter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKickstarter.tsx new file mode 100644 index 000000000..283e63b73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKickstarter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKickstarterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05CE78'; + + const SiKickstarter: IconType = React.forwardRef(function SiKickstarter({title = 'Kickstarter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKickstarter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKik.tsx new file mode 100644 index 000000000..dc04ae36f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#82BC23'; + + const SiKik: IconType = React.forwardRef(function SiKik({title = 'Kik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKingstontechnology.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKingstontechnology.tsx new file mode 100644 index 000000000..451cacc3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKingstontechnology.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKingstontechnologyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiKingstontechnology: IconType = React.forwardRef(function SiKingstontechnology({title = 'Kingston Technology', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKingstontechnology as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKinopoisk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKinopoisk.tsx new file mode 100644 index 000000000..b6d64db75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKinopoisk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKinopoiskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5500'; + + const SiKinopoisk: IconType = React.forwardRef(function SiKinopoisk({title = 'Kinopoisk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKinopoisk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKinsta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKinsta.tsx new file mode 100644 index 000000000..b4dcf09ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKinsta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKinstaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5333ED'; + + const SiKinsta: IconType = React.forwardRef(function SiKinsta({title = 'Kinsta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKinsta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKirby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKirby.tsx new file mode 100644 index 000000000..9b4fea187 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKirby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKirbyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiKirby: IconType = React.forwardRef(function SiKirby({title = 'Kirby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKirby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKit.tsx new file mode 100644 index 000000000..fa12d033b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiKit: IconType = React.forwardRef(function SiKit({title = 'Kit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKitsu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKitsu.tsx new file mode 100644 index 000000000..bc528f758 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKitsu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKitsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD755C'; + + const SiKitsu: IconType = React.forwardRef(function SiKitsu({title = 'Kitsu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKitsu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKiwix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKiwix.tsx new file mode 100644 index 000000000..b9f650bbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKiwix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKiwixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiKiwix: IconType = React.forwardRef(function SiKiwix({title = 'Kiwix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKiwix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlarna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlarna.tsx new file mode 100644 index 000000000..17d49f36d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlarna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKlarnaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB3C7'; + + const SiKlarna: IconType = React.forwardRef(function SiKlarna({title = 'Klarna', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKlarna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKleinanzeigen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKleinanzeigen.tsx new file mode 100644 index 000000000..d73d25fc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKleinanzeigen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKleinanzeigenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D4B00'; + + const SiKleinanzeigen: IconType = React.forwardRef(function SiKleinanzeigen({title = 'Kleinanzeigen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKleinanzeigen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlm.tsx new file mode 100644 index 000000000..e59f3af98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKlmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A1DE'; + + const SiKlm: IconType = React.forwardRef(function SiKlm({title = 'KLM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKlm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlook.tsx new file mode 100644 index 000000000..8d912246b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKlook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKlookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5722'; + + const SiKlook: IconType = React.forwardRef(function SiKlook({title = 'Klook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKlook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnative.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnative.tsx new file mode 100644 index 000000000..e80c60301 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnative.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKnativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0865AD'; + + const SiKnative: IconType = React.forwardRef(function SiKnative({title = 'Knative', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKnative as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnexdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnexdotjs.tsx new file mode 100644 index 000000000..f42db0dfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnexdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKnexdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D26B38'; + + const SiKnexdotjs: IconType = React.forwardRef(function SiKnexdotjs({title = 'Knex.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKnexdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnime.tsx new file mode 100644 index 000000000..8c7e761d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKnimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDD800'; + + const SiKnime: IconType = React.forwardRef(function SiKnime({title = 'KNIME', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKnime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnip.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnip.tsx new file mode 100644 index 000000000..d8b572057 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnip.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKnipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F56E0F'; + + const SiKnip: IconType = React.forwardRef(function SiKnip({title = 'Knip', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKnip as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnowledgebase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnowledgebase.tsx new file mode 100644 index 000000000..792c4e85b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnowledgebase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKnowledgebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9146FF'; + + const SiKnowledgebase: IconType = React.forwardRef(function SiKnowledgebase({title = 'KnowledgeBase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKnowledgebase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnown.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnown.tsx new file mode 100644 index 000000000..1e07aaee6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKnown.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKnownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiKnown: IconType = React.forwardRef(function SiKnown({title = 'Known', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKnown as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoa.tsx new file mode 100644 index 000000000..30053c1c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKoaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#33333D'; + + const SiKoa: IconType = React.forwardRef(function SiKoa({title = 'Koa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKoa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoc.tsx new file mode 100644 index 000000000..3569860a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKocProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9423A'; + + const SiKoc: IconType = React.forwardRef(function SiKoc({title = 'Koc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKoc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodak.tsx new file mode 100644 index 000000000..edc586de3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKodakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED0000'; + + const SiKodak: IconType = React.forwardRef(function SiKodak({title = 'Kodak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKodak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodi.tsx new file mode 100644 index 000000000..9dc9333e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKodiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17B2E7'; + + const SiKodi: IconType = React.forwardRef(function SiKodi({title = 'Kodi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKodi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodular.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodular.tsx new file mode 100644 index 000000000..1f5197a6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKodular.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKodularProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4527A0'; + + const SiKodular: IconType = React.forwardRef(function SiKodular({title = 'Kodular', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKodular as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoenigsegg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoenigsegg.tsx new file mode 100644 index 000000000..d1e332ed8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoenigsegg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKoenigseggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiKoenigsegg: IconType = React.forwardRef(function SiKoenigsegg({title = 'Koenigsegg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKoenigsegg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKofax.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKofax.tsx new file mode 100644 index 000000000..d22b2020d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKofax.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKofaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00558C'; + + const SiKofax: IconType = React.forwardRef(function SiKofax({title = 'Kofax', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKofax as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKofi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKofi.tsx new file mode 100644 index 000000000..d35183b7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKofi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKofiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6433'; + + const SiKofi: IconType = React.forwardRef(function SiKofi({title = 'Ko-fi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKofi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKomoot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKomoot.tsx new file mode 100644 index 000000000..cac3d53d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKomoot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKomootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6AA127'; + + const SiKomoot: IconType = React.forwardRef(function SiKomoot({title = 'Komoot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKomoot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKonami.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKonami.tsx new file mode 100644 index 000000000..e0a8111b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKonami.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKonamiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B60014'; + + const SiKonami: IconType = React.forwardRef(function SiKonami({title = 'Konami', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKonami as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKong.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKong.tsx new file mode 100644 index 000000000..6891a5ee5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKong.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKongProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003459'; + + const SiKong: IconType = React.forwardRef(function SiKong({title = 'Kong', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKong as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKongregate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKongregate.tsx new file mode 100644 index 000000000..2fb22395f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKongregate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKongregateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F04438'; + + const SiKongregate: IconType = React.forwardRef(function SiKongregate({title = 'Kongregate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKongregate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKonva.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKonva.tsx new file mode 100644 index 000000000..211d6945f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKonva.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKonvaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D83CD'; + + const SiKonva: IconType = React.forwardRef(function SiKonva({title = 'Konva', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKonva as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoreader.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoreader.tsx new file mode 100644 index 000000000..78f139f6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoreader.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKoreaderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A89C'; + + const SiKoreader: IconType = React.forwardRef(function SiKoreader({title = 'KOReader', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKoreader as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKotlin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKotlin.tsx new file mode 100644 index 000000000..c90510833 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKotlin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKotlinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7F52FF'; + + const SiKotlin: IconType = React.forwardRef(function SiKotlin({title = 'Kotlin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKotlin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoyeb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoyeb.tsx new file mode 100644 index 000000000..d9ac47880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKoyeb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKoyebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#121212'; + + const SiKoyeb: IconType = React.forwardRef(function SiKoyeb({title = 'Koyeb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKoyeb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKred.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKred.tsx new file mode 100644 index 000000000..9a4e322d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKred.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKredProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#72BE50'; + + const SiKred: IconType = React.forwardRef(function SiKred({title = 'Kred', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKred as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKrita.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKrita.tsx new file mode 100644 index 000000000..7bc040035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKrita.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKritaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3BABFF'; + + const SiKrita: IconType = React.forwardRef(function SiKrita({title = 'Krita', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKrita as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKtm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKtm.tsx new file mode 100644 index 000000000..68fd377e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKtm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKtmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiKtm: IconType = React.forwardRef(function SiKtm({title = 'KTM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKtm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKtor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKtor.tsx new file mode 100644 index 000000000..5a16e112c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKtor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKtorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#087CFA'; + + const SiKtor: IconType = React.forwardRef(function SiKtor({title = 'Ktor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKtor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuaishou.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuaishou.tsx new file mode 100644 index 000000000..ef05cf8b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuaishou.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKuaishouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4906'; + + const SiKuaishou: IconType = React.forwardRef(function SiKuaishou({title = 'Kuaishou', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKuaishou as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubernetes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubernetes.tsx new file mode 100644 index 000000000..d65cafc58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubernetes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKubernetesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#326CE5'; + + const SiKubernetes: IconType = React.forwardRef(function SiKubernetes({title = 'Kubernetes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKubernetes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubespray.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubespray.tsx new file mode 100644 index 000000000..0576b9fca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubespray.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKubesprayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3D647F'; + + const SiKubespray: IconType = React.forwardRef(function SiKubespray({title = 'Kubespray', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKubespray as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubuntu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubuntu.tsx new file mode 100644 index 000000000..e652a896f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKubuntu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0079C1'; + + const SiKubuntu: IconType = React.forwardRef(function SiKubuntu({title = 'Kubuntu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKubuntu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKucoin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKucoin.tsx new file mode 100644 index 000000000..45fedc7a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKucoin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKucoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#01BC8D'; + + const SiKucoin: IconType = React.forwardRef(function SiKucoin({title = 'KuCoin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKucoin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKueski.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKueski.tsx new file mode 100644 index 000000000..eff9cfd89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKueski.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKueskiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0075FF'; + + const SiKueski: IconType = React.forwardRef(function SiKueski({title = 'Kueski', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKueski as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuma.tsx new file mode 100644 index 000000000..18a0482cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKumaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#290B53'; + + const SiKuma: IconType = React.forwardRef(function SiKuma({title = 'Kuma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKuma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKununu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKununu.tsx new file mode 100644 index 000000000..2c14df167 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKununu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKununuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC62E'; + + const SiKununu: IconType = React.forwardRef(function SiKununu({title = 'Kununu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKununu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuula.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuula.tsx new file mode 100644 index 000000000..9573ead6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKuula.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKuulaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4092B4'; + + const SiKuula: IconType = React.forwardRef(function SiKuula({title = 'Kuula', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKuula as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKx.tsx new file mode 100644 index 000000000..d92f0c060 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#101820'; + + const SiKx: IconType = React.forwardRef(function SiKx({title = 'KX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiKyocera.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKyocera.tsx new file mode 100644 index 000000000..84c1a0daf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiKyocera.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiKyoceraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DF0522'; + + const SiKyocera: IconType = React.forwardRef(function SiKyocera({title = 'Kyocera', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiKyocera as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLabex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLabex.tsx new file mode 100644 index 000000000..75286ffbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLabex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLabexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E7EEE'; + + const SiLabex: IconType = React.forwardRef(function SiLabex({title = 'LabEx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLabex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLabview.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLabview.tsx new file mode 100644 index 000000000..74dd2522d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLabview.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLabviewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDB00'; + + const SiLabview: IconType = React.forwardRef(function SiLabview({title = 'LabVIEW', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLabview as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLada.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLada.tsx new file mode 100644 index 000000000..4460f1b55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLada.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLadaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED6B21'; + + const SiLada: IconType = React.forwardRef(function SiLada({title = 'LADA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLada as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLamborghini.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLamborghini.tsx new file mode 100644 index 000000000..e85fbcd4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLamborghini.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLamborghiniProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B6A272'; + + const SiLamborghini: IconType = React.forwardRef(function SiLamborghini({title = 'Lamborghini', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLamborghini as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLangchain.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLangchain.tsx new file mode 100644 index 000000000..2674694db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLangchain.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLangchainProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C3C3C'; + + const SiLangchain: IconType = React.forwardRef(function SiLangchain({title = 'LangChain', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLangchain as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLangflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLangflow.tsx new file mode 100644 index 000000000..3fda0c15c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLangflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLangflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLangflow: IconType = React.forwardRef(function SiLangflow({title = 'Langflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLangflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLanggraph.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLanggraph.tsx new file mode 100644 index 000000000..349380eb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLanggraph.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLanggraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C3C3C'; + + const SiLanggraph: IconType = React.forwardRef(function SiLanggraph({title = 'LangGraph', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLanggraph as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLanguagetool.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLanguagetool.tsx new file mode 100644 index 000000000..f2c08c905 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLanguagetool.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLanguagetoolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#45A1FC'; + + const SiLanguagetool: IconType = React.forwardRef(function SiLanguagetool({title = 'LanguageTool', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLanguagetool as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLapce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLapce.tsx new file mode 100644 index 000000000..6a340eca8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLapce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLapceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B82F6'; + + const SiLapce: IconType = React.forwardRef(function SiLapce({title = 'Lapce', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLapce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaragon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaragon.tsx new file mode 100644 index 000000000..83853c069 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaragon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLaragonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E83CD'; + + const SiLaragon: IconType = React.forwardRef(function SiLaragon({title = 'Laragon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLaragon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravel.tsx new file mode 100644 index 000000000..9c763d69b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLaravelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF2D20'; + + const SiLaravel: IconType = React.forwardRef(function SiLaravel({title = 'Laravel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLaravel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravelhorizon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravelhorizon.tsx new file mode 100644 index 000000000..71bad8037 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravelhorizon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLaravelhorizonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#405263'; + + const SiLaravelhorizon: IconType = React.forwardRef(function SiLaravelhorizon({title = 'Laravel Horizon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLaravelhorizon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravelnova.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravelnova.tsx new file mode 100644 index 000000000..7af7de54c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaravelnova.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLaravelnovaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#252D37'; + + const SiLaravelnova: IconType = React.forwardRef(function SiLaravelnova({title = 'Laravel Nova', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLaravelnova as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLastdotfm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLastdotfm.tsx new file mode 100644 index 000000000..3654303dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLastdotfm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLastdotfmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D51007'; + + const SiLastdotfm: IconType = React.forwardRef(function SiLastdotfm({title = 'Last.fm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLastdotfm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLastpass.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLastpass.tsx new file mode 100644 index 000000000..512a59e27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLastpass.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLastpassProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D32D27'; + + const SiLastpass: IconType = React.forwardRef(function SiLastpass({title = 'LastPass', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLastpass as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLatex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLatex.tsx new file mode 100644 index 000000000..5c75759df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLatex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLatexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008080'; + + const SiLatex: IconType = React.forwardRef(function SiLatex({title = 'LaTeX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLatex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaunchpad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaunchpad.tsx new file mode 100644 index 000000000..0a7c63a88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLaunchpad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLaunchpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E95420'; + + const SiLaunchpad: IconType = React.forwardRef(function SiLaunchpad({title = 'Launchpad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLaunchpad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLazarus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLazarus.tsx new file mode 100644 index 000000000..2075ac32c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLazarus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLazarusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLazarus: IconType = React.forwardRef(function SiLazarus({title = 'Lazarus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLazarus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLazyvim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLazyvim.tsx new file mode 100644 index 000000000..cc55ff36e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLazyvim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLazyvimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E7DE9'; + + const SiLazyvim: IconType = React.forwardRef(function SiLazyvim({title = 'LazyVim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLazyvim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLbry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLbry.tsx new file mode 100644 index 000000000..d2f7a7f82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLbry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLbryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F9176'; + + const SiLbry: IconType = React.forwardRef(function SiLbry({title = 'LBRY', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLbry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeaderprice.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeaderprice.tsx new file mode 100644 index 000000000..2c820f4f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeaderprice.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeaderpriceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E50005'; + + const SiLeaderprice: IconType = React.forwardRef(function SiLeaderprice({title = 'Leader Price', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeaderprice as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeaflet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeaflet.tsx new file mode 100644 index 000000000..96b3a593a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeaflet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeafletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#199900'; + + const SiLeaflet: IconType = React.forwardRef(function SiLeaflet({title = 'Leaflet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeaflet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeagueoflegends.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeagueoflegends.tsx new file mode 100644 index 000000000..759daf275 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeagueoflegends.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeagueoflegendsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C28F2C'; + + const SiLeagueoflegends: IconType = React.forwardRef(function SiLeagueoflegends({title = 'League of Legends', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeagueoflegends as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeanpub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeanpub.tsx new file mode 100644 index 000000000..c82efdaed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeanpub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeanpubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#262425'; + + const SiLeanpub: IconType = React.forwardRef(function SiLeanpub({title = 'Leanpub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeanpub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeetcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeetcode.tsx new file mode 100644 index 000000000..8dcce3353 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeetcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeetcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA116'; + + const SiLeetcode: IconType = React.forwardRef(function SiLeetcode({title = 'LeetCode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeetcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLefthook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLefthook.tsx new file mode 100644 index 000000000..51cb3d37e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLefthook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLefthookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1E1E'; + + const SiLefthook: IconType = React.forwardRef(function SiLefthook({title = 'Lefthook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLefthook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLegacygames.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLegacygames.tsx new file mode 100644 index 000000000..867355981 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLegacygames.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLegacygamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#144B9E'; + + const SiLegacygames: IconType = React.forwardRef(function SiLegacygames({title = 'Legacy Games', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLegacygames as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeica.tsx new file mode 100644 index 000000000..41de09dca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E20612'; + + const SiLeica: IconType = React.forwardRef(function SiLeica({title = 'Leica', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLemmy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLemmy.tsx new file mode 100644 index 000000000..5fddc6e4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLemmy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLemmyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLemmy: IconType = React.forwardRef(function SiLemmy({title = 'Lemmy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLemmy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLemonsqueezy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLemonsqueezy.tsx new file mode 100644 index 000000000..827b83bc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLemonsqueezy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLemonsqueezyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC233'; + + const SiLemonsqueezy: IconType = React.forwardRef(function SiLemonsqueezy({title = 'Lemon Squeezy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLemonsqueezy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLenovo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLenovo.tsx new file mode 100644 index 000000000..55ea51eb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLenovo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLenovoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E2231A'; + + const SiLenovo: IconType = React.forwardRef(function SiLenovo({title = 'Lenovo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLenovo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLens.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLens.tsx new file mode 100644 index 000000000..347dff74c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLens.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3D90CE'; + + const SiLens: IconType = React.forwardRef(function SiLens({title = 'Lens', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLens as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeptos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeptos.tsx new file mode 100644 index 000000000..d0587af5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeptos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeptosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF3939'; + + const SiLeptos: IconType = React.forwardRef(function SiLeptos({title = 'Leptos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeptos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLequipe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLequipe.tsx new file mode 100644 index 000000000..0737b6b31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLequipe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLequipeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E42829'; + + const SiLequipe: IconType = React.forwardRef(function SiLequipe({title = 'LÉquipe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLequipe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLerna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLerna.tsx new file mode 100644 index 000000000..42237ed8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLerna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLernaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C084FC'; + + const SiLerna: IconType = React.forwardRef(function SiLerna({title = 'Lerna', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLerna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeroymerlin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeroymerlin.tsx new file mode 100644 index 000000000..5dbf4cace --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeroymerlin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeroymerlinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#78BE20'; + + const SiLeroymerlin: IconType = React.forwardRef(function SiLeroymerlin({title = 'Leroy Merlin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeroymerlin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeslibraires.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeslibraires.tsx new file mode 100644 index 000000000..734cc3497 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLeslibraires.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLeslibrairesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CF4A0C'; + + const SiLeslibraires: IconType = React.forwardRef(function SiLeslibraires({title = 'Les libraires', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLeslibraires as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLess.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLess.tsx new file mode 100644 index 000000000..df547732c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLess.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D365D'; + + const SiLess: IconType = React.forwardRef(function SiLess({title = 'Less', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLess as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLetsencrypt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLetsencrypt.tsx new file mode 100644 index 000000000..e2812dba6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLetsencrypt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLetsencryptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003A70'; + + const SiLetsencrypt: IconType = React.forwardRef(function SiLetsencrypt({title = 'Lets Encrypt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLetsencrypt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLetterboxd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLetterboxd.tsx new file mode 100644 index 000000000..568d640db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLetterboxd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLetterboxdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#202830'; + + const SiLetterboxd: IconType = React.forwardRef(function SiLetterboxd({title = 'Letterboxd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLetterboxd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLevelsdotfyi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLevelsdotfyi.tsx new file mode 100644 index 000000000..ff961a8ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLevelsdotfyi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLevelsdotfyiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#788B95'; + + const SiLevelsdotfyi: IconType = React.forwardRef(function SiLevelsdotfyi({title = 'levels.fyi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLevelsdotfyi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLg.tsx new file mode 100644 index 000000000..fc05325fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A50034'; + + const SiLg: IconType = React.forwardRef(function SiLg({title = 'LG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiberadotchat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiberadotchat.tsx new file mode 100644 index 000000000..16bf3403e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiberadotchat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLiberadotchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF55DD'; + + const SiLiberadotchat: IconType = React.forwardRef(function SiLiberadotchat({title = 'Libera.Chat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLiberadotchat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiberapay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiberapay.tsx new file mode 100644 index 000000000..001fca86d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiberapay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLiberapayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F6C915'; + + const SiLiberapay: IconType = React.forwardRef(function SiLiberapay({title = 'Liberapay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLiberapay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrariesdotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrariesdotio.tsx new file mode 100644 index 000000000..1919b6f74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrariesdotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibrariesdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#337AB7'; + + const SiLibrariesdotio: IconType = React.forwardRef(function SiLibrariesdotio({title = 'Libraries.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibrariesdotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrarything.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrarything.tsx new file mode 100644 index 000000000..3c6e3386a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrarything.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibrarythingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#251A15'; + + const SiLibrarything: IconType = React.forwardRef(function SiLibrarything({title = 'LibraryThing', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibrarything as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreoffice.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreoffice.tsx new file mode 100644 index 000000000..70f7a5b0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreoffice.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18A303'; + + const SiLibreoffice: IconType = React.forwardRef(function SiLibreoffice({title = 'LibreOffice', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreoffice as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficebase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficebase.tsx new file mode 100644 index 000000000..1508f74f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficebase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7324A9'; + + const SiLibreofficebase: IconType = React.forwardRef(function SiLibreofficebase({title = 'LibreOffice Base', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreofficebase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficecalc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficecalc.tsx new file mode 100644 index 000000000..3b52ab560 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficecalc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficecalcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007C3C'; + + const SiLibreofficecalc: IconType = React.forwardRef(function SiLibreofficecalc({title = 'LibreOffice Calc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreofficecalc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficedraw.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficedraw.tsx new file mode 100644 index 000000000..a681f433e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficedraw.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficedrawProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CB6D30'; + + const SiLibreofficedraw: IconType = React.forwardRef(function SiLibreofficedraw({title = 'LibreOffice Draw', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreofficedraw as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficeimpress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficeimpress.tsx new file mode 100644 index 000000000..cb589072f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficeimpress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficeimpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D0120D'; + + const SiLibreofficeimpress: IconType = React.forwardRef(function SiLibreofficeimpress({title = 'LibreOffice Impress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreofficeimpress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficemath.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficemath.tsx new file mode 100644 index 000000000..599ef2f48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficemath.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficemathProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C10018'; + + const SiLibreofficemath: IconType = React.forwardRef(function SiLibreofficemath({title = 'LibreOffice Math', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreofficemath as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficewriter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficewriter.tsx new file mode 100644 index 000000000..f3bcc7b24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibreofficewriter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibreofficewriterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#083FA6'; + + const SiLibreofficewriter: IconType = React.forwardRef(function SiLibreofficewriter({title = 'LibreOffice Writer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibreofficewriter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibretranslate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibretranslate.tsx new file mode 100644 index 000000000..063039c9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibretranslate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibretranslateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1565C0'; + + const SiLibretranslate: IconType = React.forwardRef(function SiLibretranslate({title = 'LibreTranslate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibretranslate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibretube.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibretube.tsx new file mode 100644 index 000000000..ec8368d27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibretube.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibretubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9699'; + + const SiLibretube: IconType = React.forwardRef(function SiLibretube({title = 'LibreTube', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibretube as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrewolf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrewolf.tsx new file mode 100644 index 000000000..28cbaf1ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibrewolf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibrewolfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00ACFF'; + + const SiLibrewolf: IconType = React.forwardRef(function SiLibrewolf({title = 'LibreWolf', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibrewolf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibuv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibuv.tsx new file mode 100644 index 000000000..ff77cfdd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLibuv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLibuvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#403C3D'; + + const SiLibuv: IconType = React.forwardRef(function SiLibuv({title = 'libuv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLibuv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLichess.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLichess.tsx new file mode 100644 index 000000000..f1ea8812b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLichess.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLichessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLichess: IconType = React.forwardRef(function SiLichess({title = 'Lichess', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLichess as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLidl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLidl.tsx new file mode 100644 index 000000000..095c561bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLidl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLidlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0050AA'; + + const SiLidl: IconType = React.forwardRef(function SiLidl({title = 'Lidl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLidl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLifx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLifx.tsx new file mode 100644 index 000000000..b001133ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLifx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLifxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLifx: IconType = React.forwardRef(function SiLifx({title = 'LIFX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLifx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLightburn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLightburn.tsx new file mode 100644 index 000000000..b9ccaf69b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLightburn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLightburnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#57182D'; + + const SiLightburn: IconType = React.forwardRef(function SiLightburn({title = 'LightBurn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLightburn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLighthouse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLighthouse.tsx new file mode 100644 index 000000000..48fe273e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLighthouse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLighthouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F44B21'; + + const SiLighthouse: IconType = React.forwardRef(function SiLighthouse({title = 'Lighthouse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLighthouse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLightning.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLightning.tsx new file mode 100644 index 000000000..35db44161 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLightning.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLightningProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#792EE5'; + + const SiLightning: IconType = React.forwardRef(function SiLightning({title = 'Lightning', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLightning as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLimesurvey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLimesurvey.tsx new file mode 100644 index 000000000..f5c54400f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLimesurvey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLimesurveyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14AE5C'; + + const SiLimesurvey: IconType = React.forwardRef(function SiLimesurvey({title = 'LimeSurvey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLimesurvey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLine.tsx new file mode 100644 index 000000000..2ba72f7a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00C300'; + + const SiLine: IconType = React.forwardRef(function SiLine({title = 'LINE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLineageos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLineageos.tsx new file mode 100644 index 000000000..9d1f8a566 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLineageos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLineageosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#167C80'; + + const SiLineageos: IconType = React.forwardRef(function SiLineageos({title = 'LineageOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLineageos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinear.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinear.tsx new file mode 100644 index 000000000..78962bb91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinear.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinearProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5E6AD2'; + + const SiLinear: IconType = React.forwardRef(function SiLinear({title = 'Linear', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinear as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLining.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLining.tsx new file mode 100644 index 000000000..86607fe28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLining.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLiningProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C5242C'; + + const SiLining: IconType = React.forwardRef(function SiLining({title = 'Li-Ning', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLining as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinkerd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinkerd.tsx new file mode 100644 index 000000000..67be550e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinkerd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinkerdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2BEDA7'; + + const SiLinkerd: IconType = React.forwardRef(function SiLinkerd({title = 'Linkerd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinkerd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinkfire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinkfire.tsx new file mode 100644 index 000000000..7cdcdca27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinkfire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinkfireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3850'; + + const SiLinkfire: IconType = React.forwardRef(function SiLinkfire({title = 'Linkfire', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinkfire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinksys.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinksys.tsx new file mode 100644 index 000000000..3d43a5260 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinksys.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinksysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLinksys: IconType = React.forwardRef(function SiLinksys({title = 'Linksys', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinksys as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinktree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinktree.tsx new file mode 100644 index 000000000..0d832b54a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinktree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinktreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#43E55E'; + + const SiLinktree: IconType = React.forwardRef(function SiLinktree({title = 'Linktree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinktree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinphone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinphone.tsx new file mode 100644 index 000000000..aeb3e170e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinphone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinphoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5E00'; + + const SiLinphone: IconType = React.forwardRef(function SiLinphone({title = 'Linphone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinphone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLintcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLintcode.tsx new file mode 100644 index 000000000..f5b827bc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLintcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLintcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13B4FF'; + + const SiLintcode: IconType = React.forwardRef(function SiLintcode({title = 'LintCode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLintcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinux.tsx new file mode 100644 index 000000000..3bc1b2365 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FCC624'; + + const SiLinux: IconType = React.forwardRef(function SiLinux({title = 'Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxcontainers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxcontainers.tsx new file mode 100644 index 000000000..36994f9fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxcontainers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinuxcontainersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiLinuxcontainers: IconType = React.forwardRef(function SiLinuxcontainers({title = 'Linux Containers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinuxcontainers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxfoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxfoundation.tsx new file mode 100644 index 000000000..7c3478144 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxfoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinuxfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003778'; + + const SiLinuxfoundation: IconType = React.forwardRef(function SiLinuxfoundation({title = 'Linux Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinuxfoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxmint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxmint.tsx new file mode 100644 index 000000000..bad688175 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxmint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinuxmintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#86BE43'; + + const SiLinuxmint: IconType = React.forwardRef(function SiLinuxmint({title = 'Linux Mint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinuxmint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxprofessionalinstitute.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxprofessionalinstitute.tsx new file mode 100644 index 000000000..ca9c01cc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxprofessionalinstitute.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinuxprofessionalinstituteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDC300'; + + const SiLinuxprofessionalinstitute: IconType = React.forwardRef(function SiLinuxprofessionalinstitute({title = 'Linux Professional Institute', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinuxprofessionalinstitute as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxserver.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxserver.tsx new file mode 100644 index 000000000..eed63144b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLinuxserver.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLinuxserverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA3B8A'; + + const SiLinuxserver: IconType = React.forwardRef(function SiLinuxserver({title = 'LinuxServer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLinuxserver as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLionair.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLionair.tsx new file mode 100644 index 000000000..6ad1b482e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLionair.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLionairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED3237'; + + const SiLionair: IconType = React.forwardRef(function SiLionair({title = 'Lion Air', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLionair as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiquibase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiquibase.tsx new file mode 100644 index 000000000..d24deff07 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiquibase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLiquibaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2962FF'; + + const SiLiquibase: IconType = React.forwardRef(function SiLiquibase({title = 'Liquibase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLiquibase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiListenhub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiListenhub.tsx new file mode 100644 index 000000000..1cb81107e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiListenhub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiListenhubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiListenhub: IconType = React.forwardRef(function SiListenhub({title = 'ListenHub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiListenhub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiListmonk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiListmonk.tsx new file mode 100644 index 000000000..204a49f17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiListmonk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiListmonkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0055D4'; + + const SiListmonk: IconType = React.forwardRef(function SiListmonk({title = 'listmonk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiListmonk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLit.tsx new file mode 100644 index 000000000..4a894ad47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#324FFF'; + + const SiLit: IconType = React.forwardRef(function SiLit({title = 'Lit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLitecoin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLitecoin.tsx new file mode 100644 index 000000000..d05037a06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLitecoin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLitecoinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A6A9AA'; + + const SiLitecoin: IconType = React.forwardRef(function SiLitecoin({title = 'Litecoin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLitecoin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiteral.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiteral.tsx new file mode 100644 index 000000000..8c424f4db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLiteral.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLiteralProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiLiteral: IconType = React.forwardRef(function SiLiteral({title = 'Literal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLiteral as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLitiengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLitiengine.tsx new file mode 100644 index 000000000..c9ecf89ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLitiengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLitiengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A5BC'; + + const SiLitiengine: IconType = React.forwardRef(function SiLitiengine({title = 'LITIENGINE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLitiengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivechat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivechat.tsx new file mode 100644 index 000000000..28d909319 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivechat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLivechatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5100'; + + const SiLivechat: IconType = React.forwardRef(function SiLivechat({title = 'LiveChat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLivechat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivejournal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivejournal.tsx new file mode 100644 index 000000000..6092c5bf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivejournal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLivejournalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B0EA'; + + const SiLivejournal: IconType = React.forwardRef(function SiLivejournal({title = 'LiveJournal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLivejournal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivekit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivekit.tsx new file mode 100644 index 000000000..0d20c57f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivekit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLivekitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiLivekit: IconType = React.forwardRef(function SiLivekit({title = 'LiveKit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLivekit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivewire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivewire.tsx new file mode 100644 index 000000000..1846386c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLivewire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLivewireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E56A6'; + + const SiLivewire: IconType = React.forwardRef(function SiLivewire({title = 'Livewire', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLivewire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLlvm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLlvm.tsx new file mode 100644 index 000000000..139e205f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLlvm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLlvmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#262D3A'; + + const SiLlvm: IconType = React.forwardRef(function SiLlvm({title = 'LLVM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLlvm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLmms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLmms.tsx new file mode 100644 index 000000000..15f65689a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLmms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLmmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#10B146'; + + const SiLmms: IconType = React.forwardRef(function SiLmms({title = 'LMMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLmms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLobsters.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLobsters.tsx new file mode 100644 index 000000000..795af0fd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLobsters.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLobstersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AC130D'; + + const SiLobsters: IconType = React.forwardRef(function SiLobsters({title = 'Lobsters', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLobsters as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocal.tsx new file mode 100644 index 000000000..6b12ba915 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLocalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#51BB7B'; + + const SiLocal: IconType = React.forwardRef(function SiLocal({title = 'Local', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLocal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocalsend.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocalsend.tsx new file mode 100644 index 000000000..ecb78f3d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocalsend.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLocalsendProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008080'; + + const SiLocalsend: IconType = React.forwardRef(function SiLocalsend({title = 'LocalSend', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLocalsend as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocalxpose.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocalxpose.tsx new file mode 100644 index 000000000..4d98ed0b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLocalxpose.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLocalxposeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6023C0'; + + const SiLocalxpose: IconType = React.forwardRef(function SiLocalxpose({title = 'LocalXpose', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLocalxpose as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLodash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLodash.tsx new file mode 100644 index 000000000..06884c7dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLodash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLodashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3492FF'; + + const SiLodash: IconType = React.forwardRef(function SiLodash({title = 'Lodash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLodash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogmein.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogmein.tsx new file mode 100644 index 000000000..7f51f5e8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogmein.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLogmeinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#45B6F2'; + + const SiLogmein: IconType = React.forwardRef(function SiLogmein({title = 'LogMeIn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLogmein as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogseq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogseq.tsx new file mode 100644 index 000000000..fb5ca3ca7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogseq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLogseqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#85C8C8'; + + const SiLogseq: IconType = React.forwardRef(function SiLogseq({title = 'Logseq', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLogseq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogstash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogstash.tsx new file mode 100644 index 000000000..3ed76fcc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLogstash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLogstashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005571'; + + const SiLogstash: IconType = React.forwardRef(function SiLogstash({title = 'Logstash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLogstash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLooker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLooker.tsx new file mode 100644 index 000000000..3a996d4bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLooker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLookerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiLooker: IconType = React.forwardRef(function SiLooker({title = 'Looker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLooker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoom.tsx new file mode 100644 index 000000000..3d96f02cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLoomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#625DF5'; + + const SiLoom: IconType = React.forwardRef(function SiLoom({title = 'Loom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLoom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoop.tsx new file mode 100644 index 000000000..e81a77e4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLoopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F29400'; + + const SiLoop: IconType = React.forwardRef(function SiLoop({title = 'Loop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLoop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoopback.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoopback.tsx new file mode 100644 index 000000000..1c185ea9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLoopback.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLoopbackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3F5DFF'; + + const SiLoopback: IconType = React.forwardRef(function SiLoopback({title = 'LoopBack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLoopback as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLootcrate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLootcrate.tsx new file mode 100644 index 000000000..4e7b922c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLootcrate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLootcrateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E1E1E'; + + const SiLootcrate: IconType = React.forwardRef(function SiLootcrate({title = 'Loot Crate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLootcrate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLospec.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLospec.tsx new file mode 100644 index 000000000..90d359ec4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLospec.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLospecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EAEAEA'; + + const SiLospec: IconType = React.forwardRef(function SiLospec({title = 'Lospec', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLospec as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLotpolishairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLotpolishairlines.tsx new file mode 100644 index 000000000..00874266b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLotpolishairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLotpolishairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#11397E'; + + const SiLotpolishairlines: IconType = React.forwardRef(function SiLotpolishairlines({title = 'LOT Polish Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLotpolishairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLottiefiles.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLottiefiles.tsx new file mode 100644 index 000000000..8f58fd891 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLottiefiles.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLottiefilesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00DDB3'; + + const SiLottiefiles: IconType = React.forwardRef(function SiLottiefiles({title = 'LottieFiles', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLottiefiles as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLtspice.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLtspice.tsx new file mode 100644 index 000000000..f3f63d346 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLtspice.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLtspiceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#900028'; + + const SiLtspice: IconType = React.forwardRef(function SiLtspice({title = 'LTspice', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLtspice as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLua.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLua.tsx new file mode 100644 index 000000000..7705d83e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLua.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLuaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000080'; + + const SiLua: IconType = React.forwardRef(function SiLua({title = 'Lua', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLua as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuanti.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuanti.tsx new file mode 100644 index 000000000..d6d098748 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuanti.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLuantiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#53AC56'; + + const SiLuanti: IconType = React.forwardRef(function SiLuanti({title = 'Luanti', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLuanti as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuau.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuau.tsx new file mode 100644 index 000000000..3e85b1336 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuau.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLuauProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A2FF'; + + const SiLuau: IconType = React.forwardRef(function SiLuau({title = 'Luau', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLuau as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLubuntu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLubuntu.tsx new file mode 100644 index 000000000..09649f3c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLubuntu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0068C8'; + + const SiLubuntu: IconType = React.forwardRef(function SiLubuntu({title = 'Lubuntu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLubuntu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucia.tsx new file mode 100644 index 000000000..9e39f68cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLuciaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5F57FF'; + + const SiLucia: IconType = React.forwardRef(function SiLucia({title = 'Lucia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLucia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucid.tsx new file mode 100644 index 000000000..ea38fbc6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLucidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#282C33'; + + const SiLucid: IconType = React.forwardRef(function SiLucid({title = 'Lucid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLucid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucide.tsx new file mode 100644 index 000000000..40da72ead --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLucide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLucideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F56565'; + + const SiLucide: IconType = React.forwardRef(function SiLucide({title = 'Lucide', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLucide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLudwig.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLudwig.tsx new file mode 100644 index 000000000..34541d5a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLudwig.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLudwigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiLudwig: IconType = React.forwardRef(function SiLudwig({title = 'Ludwig', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLudwig as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLufthansa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLufthansa.tsx new file mode 100644 index 000000000..15abd5451 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLufthansa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLufthansaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05164D'; + + const SiLufthansa: IconType = React.forwardRef(function SiLufthansa({title = 'Lufthansa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLufthansa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLumen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLumen.tsx new file mode 100644 index 000000000..286a28f25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLumen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLumenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E74430'; + + const SiLumen: IconType = React.forwardRef(function SiLumen({title = 'Lumen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLumen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLunacy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLunacy.tsx new file mode 100644 index 000000000..7fbbd6021 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLunacy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLunacyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#179DE3'; + + const SiLunacy: IconType = React.forwardRef(function SiLunacy({title = 'Lunacy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLunacy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuogu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuogu.tsx new file mode 100644 index 000000000..8ef916e6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLuogu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLuoguProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5B9BD5'; + + const SiLuogu: IconType = React.forwardRef(function SiLuogu({title = 'Luogu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLuogu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLutris.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLutris.tsx new file mode 100644 index 000000000..6ed75b0ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLutris.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLutrisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9900'; + + const SiLutris: IconType = React.forwardRef(function SiLutris({title = 'Lutris', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLutris as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLvgl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLvgl.tsx new file mode 100644 index 000000000..7fb35a403 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLvgl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLvglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#343839'; + + const SiLvgl: IconType = React.forwardRef(function SiLvgl({title = 'LVGL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLvgl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLydia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLydia.tsx new file mode 100644 index 000000000..5894f9057 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLydia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLydiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0180FF'; + + const SiLydia: IconType = React.forwardRef(function SiLydia({title = 'Lydia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLydia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiLyft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLyft.tsx new file mode 100644 index 000000000..2a257d04d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiLyft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiLyftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF00BF'; + + const SiLyft: IconType = React.forwardRef(function SiLyft({title = 'Lyft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiLyft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaas.tsx new file mode 100644 index 000000000..a940b9d31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E95420'; + + const SiMaas: IconType = React.forwardRef(function SiMaas({title = 'MAAS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacos.tsx new file mode 100644 index 000000000..3d8785dda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMacosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMacos: IconType = React.forwardRef(function SiMacos({title = 'macOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMacos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacpaw.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacpaw.tsx new file mode 100644 index 000000000..8dc534926 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacpaw.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMacpawProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMacpaw: IconType = React.forwardRef(function SiMacpaw({title = 'MacPaw', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMacpaw as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacports.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacports.tsx new file mode 100644 index 000000000..fba6aff44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacports.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMacportsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E79E9'; + + const SiMacports: IconType = React.forwardRef(function SiMacports({title = 'MacPorts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMacports as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacys.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacys.tsx new file mode 100644 index 000000000..b74176f51 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMacys.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMacysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E21A2C'; + + const SiMacys: IconType = React.forwardRef(function SiMacys({title = 'Macys', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMacys as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagasinsu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagasinsu.tsx new file mode 100644 index 000000000..054e8f07d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagasinsu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMagasinsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E71B34'; + + const SiMagasinsu: IconType = React.forwardRef(function SiMagasinsu({title = 'Magasins U', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMagasinsu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagic.tsx new file mode 100644 index 000000000..362e85fb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMagicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6851FF'; + + const SiMagic: IconType = React.forwardRef(function SiMagic({title = 'Magic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMagic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagisk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagisk.tsx new file mode 100644 index 000000000..bab74778f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMagisk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMagiskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AF9C'; + + const SiMagisk: IconType = React.forwardRef(function SiMagisk({title = 'Magisk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMagisk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMahindra.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMahindra.tsx new file mode 100644 index 000000000..5363bcd9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMahindra.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMahindraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD052B'; + + const SiMahindra: IconType = React.forwardRef(function SiMahindra({title = 'Mahindra', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMahindra as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailbox.tsx new file mode 100644 index 000000000..eff058ae1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMailboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ABE659'; + + const SiMailbox: IconType = React.forwardRef(function SiMailbox({title = 'mailbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMailbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailchimp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailchimp.tsx new file mode 100644 index 000000000..67b6cf9b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailchimp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMailchimpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE01B'; + + const SiMailchimp: IconType = React.forwardRef(function SiMailchimp({title = 'MailChimp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMailchimp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaildotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaildotcom.tsx new file mode 100644 index 000000000..2ae44f51d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaildotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaildotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004788'; + + const SiMaildotcom: IconType = React.forwardRef(function SiMaildotcom({title = 'mail.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaildotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaildotru.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaildotru.tsx new file mode 100644 index 000000000..9df13fdeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaildotru.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaildotruProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005FF9'; + + const SiMaildotru: IconType = React.forwardRef(function SiMaildotru({title = 'Mail.Ru', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaildotru as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailgun.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailgun.tsx new file mode 100644 index 000000000..d2e5ef979 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailgun.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMailgunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F06B66'; + + const SiMailgun: IconType = React.forwardRef(function SiMailgun({title = 'Mailgun', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMailgun as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailtrap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailtrap.tsx new file mode 100644 index 000000000..1e193c2a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMailtrap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMailtrapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#22D172'; + + const SiMailtrap: IconType = React.forwardRef(function SiMailtrap({title = 'Mailtrap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMailtrap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMainwp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMainwp.tsx new file mode 100644 index 000000000..a768be516 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMainwp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMainwpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7FB100'; + + const SiMainwp: IconType = React.forwardRef(function SiMainwp({title = 'MainWP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMainwp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMajorleaguehacking.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMajorleaguehacking.tsx new file mode 100644 index 000000000..363f72f4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMajorleaguehacking.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMajorleaguehackingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#265A8F'; + + const SiMajorleaguehacking: IconType = React.forwardRef(function SiMajorleaguehacking({title = 'Major League Hacking', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMajorleaguehacking as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMake.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMake.tsx new file mode 100644 index 000000000..7940e120d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMake.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D00CC'; + + const SiMake: IconType = React.forwardRef(function SiMake({title = 'Make', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMake as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMakerbot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMakerbot.tsx new file mode 100644 index 000000000..fbc99798c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMakerbot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMakerbotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1E0D'; + + const SiMakerbot: IconType = React.forwardRef(function SiMakerbot({title = 'MakerBot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMakerbot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMalt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMalt.tsx new file mode 100644 index 000000000..f8ce71abc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMalt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaltProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC5757'; + + const SiMalt: IconType = React.forwardRef(function SiMalt({title = 'Malt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMalt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMalwarebytes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMalwarebytes.tsx new file mode 100644 index 000000000..80e190069 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMalwarebytes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMalwarebytesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D3ECC'; + + const SiMalwarebytes: IconType = React.forwardRef(function SiMalwarebytes({title = 'Malwarebytes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMalwarebytes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMambaui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMambaui.tsx new file mode 100644 index 000000000..d2b776f3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMambaui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMambauiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D28D9'; + + const SiMambaui: IconType = React.forwardRef(function SiMambaui({title = 'Mamba UI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMambaui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMamp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMamp.tsx new file mode 100644 index 000000000..1624a478d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMamp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02749C'; + + const SiMamp: IconType = React.forwardRef(function SiMamp({title = 'MAMP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMamp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMan.tsx new file mode 100644 index 000000000..9cf176774 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiManProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E40045'; + + const SiMan: IconType = React.forwardRef(function SiMan({title = 'MAN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiManageiq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiManageiq.tsx new file mode 100644 index 000000000..32983050d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiManageiq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiManageiqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF2929'; + + const SiManageiq: IconType = React.forwardRef(function SiManageiq({title = 'ManageIQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiManageiq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMangacollec.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMangacollec.tsx new file mode 100644 index 000000000..9d8cc4927 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMangacollec.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMangacollecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA1F05'; + + const SiMangacollec: IconType = React.forwardRef(function SiMangacollec({title = 'Mangacollec', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMangacollec as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMangaupdates.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMangaupdates.tsx new file mode 100644 index 000000000..110347ca5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMangaupdates.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMangaupdatesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8C15'; + + const SiMangaupdates: IconType = React.forwardRef(function SiMangaupdates({title = 'MangaUpdates', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMangaupdates as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiManjaro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiManjaro.tsx new file mode 100644 index 000000000..5bc4759d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiManjaro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiManjaroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#35BFA4'; + + const SiManjaro: IconType = React.forwardRef(function SiManjaro({title = 'Manjaro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiManjaro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMantine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMantine.tsx new file mode 100644 index 000000000..2295b3ee9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMantine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMantineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#339AF0'; + + const SiMantine: IconType = React.forwardRef(function SiMantine({title = 'Mantine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMantine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMapbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMapbox.tsx new file mode 100644 index 000000000..873dc9b86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMapbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMapboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMapbox: IconType = React.forwardRef(function SiMapbox({title = 'Mapbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMapbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMapillary.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMapillary.tsx new file mode 100644 index 000000000..a5b0e51a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMapillary.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMapillaryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AF66'; + + const SiMapillary: IconType = React.forwardRef(function SiMapillary({title = 'Mapillary', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMapillary as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaplibre.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaplibre.tsx new file mode 100644 index 000000000..c259d33ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaplibre.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaplibreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#396CB2'; + + const SiMaplibre: IconType = React.forwardRef(function SiMaplibre({title = 'MapLibre', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaplibre as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaptiler.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaptiler.tsx new file mode 100644 index 000000000..95584977a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaptiler.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaptilerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#323357'; + + const SiMaptiler: IconType = React.forwardRef(function SiMaptiler({title = 'MapTiler', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaptiler as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMariadb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMariadb.tsx new file mode 100644 index 000000000..3b9478564 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMariadb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMariadbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003545'; + + const SiMariadb: IconType = React.forwardRef(function SiMariadb({title = 'MariaDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMariadb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMariadbfoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMariadbfoundation.tsx new file mode 100644 index 000000000..f64c0c06e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMariadbfoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMariadbfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F305F'; + + const SiMariadbfoundation: IconType = React.forwardRef(function SiMariadbfoundation({title = 'MariaDB Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMariadbfoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarkdown.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarkdown.tsx new file mode 100644 index 000000000..4667c88a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarkdown.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMarkdownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMarkdown: IconType = React.forwardRef(function SiMarkdown({title = 'Markdown', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMarkdown as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarko.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarko.tsx new file mode 100644 index 000000000..85318e330 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarko.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMarkoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2596BE'; + + const SiMarko: IconType = React.forwardRef(function SiMarko({title = 'Marko', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMarko as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarriott.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarriott.tsx new file mode 100644 index 000000000..f50a85ff5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarriott.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMarriottProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A70023'; + + const SiMarriott: IconType = React.forwardRef(function SiMarriott({title = 'Marriott', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMarriott as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarvelapp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarvelapp.tsx new file mode 100644 index 000000000..667c90213 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMarvelapp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMarvelappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1FB6FF'; + + const SiMarvelapp: IconType = React.forwardRef(function SiMarvelapp({title = 'MarvelApp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMarvelapp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaserati.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaserati.tsx new file mode 100644 index 000000000..5c6ad16f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaserati.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaseratiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C2340'; + + const SiMaserati: IconType = React.forwardRef(function SiMaserati({title = 'Maserati', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaserati as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastercard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastercard.tsx new file mode 100644 index 000000000..544ed8f27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastercard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMastercardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB001B'; + + const SiMastercard: IconType = React.forwardRef(function SiMastercard({title = 'MasterCard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMastercard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastercomfig.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastercomfig.tsx new file mode 100644 index 000000000..c71f6afc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastercomfig.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMastercomfigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009688'; + + const SiMastercomfig: IconType = React.forwardRef(function SiMastercomfig({title = 'mastercomfig', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMastercomfig as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastodon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastodon.tsx new file mode 100644 index 000000000..749b1d6ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMastodon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMastodonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6364FF'; + + const SiMastodon: IconType = React.forwardRef(function SiMastodon({title = 'Mastodon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMastodon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialdesign.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialdesign.tsx new file mode 100644 index 000000000..86af3d6a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialdesign.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaterialdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6750A4'; + + const SiMaterialdesign: IconType = React.forwardRef(function SiMaterialdesign({title = 'Material Design', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaterialdesign as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialdesignicons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialdesignicons.tsx new file mode 100644 index 000000000..dc61a18b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialdesignicons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaterialdesigniconsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2196F3'; + + const SiMaterialdesignicons: IconType = React.forwardRef(function SiMaterialdesignicons({title = 'Material Design Icons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaterialdesignicons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialformkdocs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialformkdocs.tsx new file mode 100644 index 000000000..7389ec6f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaterialformkdocs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaterialformkdocsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#526CFE'; + + const SiMaterialformkdocs: IconType = React.forwardRef(function SiMaterialformkdocs({title = 'Material for MkDocs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaterialformkdocs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatillion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatillion.tsx new file mode 100644 index 000000000..342de54e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatillion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMatillionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#19E57F'; + + const SiMatillion: IconType = React.forwardRef(function SiMatillion({title = 'Matillion', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMatillion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatomo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatomo.tsx new file mode 100644 index 000000000..29290a366 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatomo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMatomoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3152A0'; + + const SiMatomo: IconType = React.forwardRef(function SiMatomo({title = 'Matomo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMatomo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatrix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatrix.tsx new file mode 100644 index 000000000..bdc3e9858 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatrix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMatrixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMatrix: IconType = React.forwardRef(function SiMatrix({title = 'Matrix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMatrix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatterdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatterdotjs.tsx new file mode 100644 index 000000000..442eea6c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatterdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMatterdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B5562'; + + const SiMatterdotjs: IconType = React.forwardRef(function SiMatterdotjs({title = 'Matter.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMatterdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMattermost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMattermost.tsx new file mode 100644 index 000000000..843cec49d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMattermost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMattermostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0058CC'; + + const SiMattermost: IconType = React.forwardRef(function SiMattermost({title = 'Mattermost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMattermost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatternet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatternet.tsx new file mode 100644 index 000000000..773a956ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMatternet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMatternetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#261C29'; + + const SiMatternet: IconType = React.forwardRef(function SiMatternet({title = 'Matternet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMatternet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMautic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMautic.tsx new file mode 100644 index 000000000..b07115068 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMautic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMauticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E5E9E'; + + const SiMautic: IconType = React.forwardRef(function SiMautic({title = 'Mautic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMautic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMax.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMax.tsx new file mode 100644 index 000000000..52d893f19 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMax.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#525252'; + + const SiMax: IconType = React.forwardRef(function SiMax({title = 'Max', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMax as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaxplanckgesellschaft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaxplanckgesellschaft.tsx new file mode 100644 index 000000000..7fb373c94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaxplanckgesellschaft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaxplanckgesellschaftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006C66'; + + const SiMaxplanckgesellschaft: IconType = React.forwardRef(function SiMaxplanckgesellschaft({title = 'Max-Planck-Gesellschaft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaxplanckgesellschaft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaytag.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaytag.tsx new file mode 100644 index 000000000..dcdebaf1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaytag.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMaytagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002E5F'; + + const SiMaytag: IconType = React.forwardRef(function SiMaytag({title = 'Maytag', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaytag as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMazda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMazda.tsx new file mode 100644 index 000000000..dea3817f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMazda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMazdaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#101010'; + + const SiMazda: IconType = React.forwardRef(function SiMazda({title = 'Mazda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMazda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaze.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaze.tsx new file mode 100644 index 000000000..6d760784b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMaze.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMazeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMaze: IconType = React.forwardRef(function SiMaze({title = 'Maze', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMaze as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMcafee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMcafee.tsx new file mode 100644 index 000000000..cf624a116 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMcafee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMcafeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C01818'; + + const SiMcafee: IconType = React.forwardRef(function SiMcafee({title = 'McAfee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMcafee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMcdonalds.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMcdonalds.tsx new file mode 100644 index 000000000..fac0bfc83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMcdonalds.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMcdonaldsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBC817'; + + const SiMcdonalds: IconType = React.forwardRef(function SiMcdonalds({title = 'McDonalds', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMcdonalds as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMclaren.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMclaren.tsx new file mode 100644 index 000000000..20503d369 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMclaren.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMclarenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiMclaren: IconType = React.forwardRef(function SiMclaren({title = 'McLaren', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMclaren as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdblist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdblist.tsx new file mode 100644 index 000000000..4317d7249 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdblist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMdblistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4284CA'; + + const SiMdblist: IconType = React.forwardRef(function SiMdblist({title = 'MDBList', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMdblist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdbook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdbook.tsx new file mode 100644 index 000000000..42db317b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdbook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMdbookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMdbook: IconType = React.forwardRef(function SiMdbook({title = 'mdBook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMdbook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdnwebdocs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdnwebdocs.tsx new file mode 100644 index 000000000..15e9fbde5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdnwebdocs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMdnwebdocsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMdnwebdocs: IconType = React.forwardRef(function SiMdnwebdocs({title = 'MDN Web Docs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMdnwebdocs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdx.tsx new file mode 100644 index 000000000..84809b1b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMdx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMdxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1B1F24'; + + const SiMdx: IconType = React.forwardRef(function SiMdx({title = 'MDX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMdx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMealie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMealie.tsx new file mode 100644 index 000000000..5de05c030 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMealie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMealieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E58325'; + + const SiMealie: IconType = React.forwardRef(function SiMealie({title = 'Mealie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMealie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediafire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediafire.tsx new file mode 100644 index 000000000..1e8edd18d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediafire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMediafireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1299F3'; + + const SiMediafire: IconType = React.forwardRef(function SiMediafire({title = 'MediaFire', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMediafire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediamarkt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediamarkt.tsx new file mode 100644 index 000000000..5aafaebcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediamarkt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMediamarktProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DF0000'; + + const SiMediamarkt: IconType = React.forwardRef(function SiMediamarkt({title = 'MediaMarkt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMediamarkt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediapipe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediapipe.tsx new file mode 100644 index 000000000..0c07b010e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediapipe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMediapipeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0097A7'; + + const SiMediapipe: IconType = React.forwardRef(function SiMediapipe({title = 'MediaPipe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMediapipe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediatek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediatek.tsx new file mode 100644 index 000000000..357b7707f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMediatek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMediatekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC9430'; + + const SiMediatek: IconType = React.forwardRef(function SiMediatek({title = 'MediaTek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMediatek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedibangpaint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedibangpaint.tsx new file mode 100644 index 000000000..ba3400650 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedibangpaint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMedibangpaintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00DBDE'; + + const SiMedibangpaint: IconType = React.forwardRef(function SiMedibangpaint({title = 'MediBang Paint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMedibangpaint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedium.tsx new file mode 100644 index 000000000..bb553c498 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMediumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMedium: IconType = React.forwardRef(function SiMedium({title = 'Medium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMedium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedusa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedusa.tsx new file mode 100644 index 000000000..3afc9e46b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMedusa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMedusaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMedusa: IconType = React.forwardRef(function SiMedusa({title = 'Medusa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMedusa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeetup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeetup.tsx new file mode 100644 index 000000000..a7991b9d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeetup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMeetupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C40'; + + const SiMeetup: IconType = React.forwardRef(function SiMeetup({title = 'Meetup', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMeetup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMega.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMega.tsx new file mode 100644 index 000000000..a0c61b1b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMega.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMegaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D9272E'; + + const SiMega: IconType = React.forwardRef(function SiMega({title = 'MEGA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMega as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeilisearch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeilisearch.tsx new file mode 100644 index 000000000..3a9ae3f6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeilisearch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMeilisearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5CAA'; + + const SiMeilisearch: IconType = React.forwardRef(function SiMeilisearch({title = 'Meilisearch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMeilisearch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeituan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeituan.tsx new file mode 100644 index 000000000..f10c2022b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeituan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMeituanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD100'; + + const SiMeituan: IconType = React.forwardRef(function SiMeituan({title = 'Meituan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMeituan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeizu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeizu.tsx new file mode 100644 index 000000000..c48f4bcdb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeizu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMeizuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4132'; + + const SiMeizu: IconType = React.forwardRef(function SiMeizu({title = 'Meizu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMeizu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMendeley.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMendeley.tsx new file mode 100644 index 000000000..b7ae8ab74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMendeley.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMendeleyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9D1620'; + + const SiMendeley: IconType = React.forwardRef(function SiMendeley({title = 'Mendeley', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMendeley as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMentorcruise.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMentorcruise.tsx new file mode 100644 index 000000000..d6006197f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMentorcruise.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMentorcruiseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#172E59'; + + const SiMentorcruise: IconType = React.forwardRef(function SiMentorcruise({title = 'MentorCruise', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMentorcruise as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMercadopago.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMercadopago.tsx new file mode 100644 index 000000000..fe0481186 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMercadopago.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMercadopagoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B1EA'; + + const SiMercadopago: IconType = React.forwardRef(function SiMercadopago({title = 'Mercado Pago', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMercadopago as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMerck.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMerck.tsx new file mode 100644 index 000000000..39187c4f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMerck.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMerckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007A73'; + + const SiMerck: IconType = React.forwardRef(function SiMerck({title = 'Merck', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMerck as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMercurial.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMercurial.tsx new file mode 100644 index 000000000..bc2a61e00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMercurial.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMercurialProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#999999'; + + const SiMercurial: IconType = React.forwardRef(function SiMercurial({title = 'Mercurial', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMercurial as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMermaid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMermaid.tsx new file mode 100644 index 000000000..1af335e8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMermaid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMermaidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3670'; + + const SiMermaid: IconType = React.forwardRef(function SiMermaid({title = 'Mermaid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMermaid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMessenger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMessenger.tsx new file mode 100644 index 000000000..0eda99a2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMessenger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMessengerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0866FF'; + + const SiMessenger: IconType = React.forwardRef(function SiMessenger({title = 'Messenger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMessenger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeta.tsx new file mode 100644 index 000000000..b28787723 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0467DF'; + + const SiMeta: IconType = React.forwardRef(function SiMeta({title = 'Meta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMeta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetabase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetabase.tsx new file mode 100644 index 000000000..ae62e4101 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetabase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetabaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#509EE3'; + + const SiMetabase: IconType = React.forwardRef(function SiMetabase({title = 'Metabase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetabase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetacritic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetacritic.tsx new file mode 100644 index 000000000..fbc4da850 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetacritic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetacriticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMetacritic: IconType = React.forwardRef(function SiMetacritic({title = 'Metacritic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetacritic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetafilter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetafilter.tsx new file mode 100644 index 000000000..eb3800620 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetafilter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetafilterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#065A8F'; + + const SiMetafilter: IconType = React.forwardRef(function SiMetafilter({title = 'MetaFilter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetafilter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetager.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetager.tsx new file mode 100644 index 000000000..4214ceb1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetager.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetagerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F47216'; + + const SiMetager: IconType = React.forwardRef(function SiMetager({title = 'MetaGer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetager as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetasploit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetasploit.tsx new file mode 100644 index 000000000..a7a3ea934 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetasploit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetasploitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2596CD'; + + const SiMetasploit: IconType = React.forwardRef(function SiMetasploit({title = 'Metasploit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetasploit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeteor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeteor.tsx new file mode 100644 index 000000000..5f6aa1522 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMeteor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMeteorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DE4F4F'; + + const SiMeteor: IconType = React.forwardRef(function SiMeteor({title = 'Meteor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMeteor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetro.tsx new file mode 100644 index 000000000..38cbcdba1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF4242'; + + const SiMetro: IconType = React.forwardRef(function SiMetro({title = 'Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodelaciudaddemexico.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodelaciudaddemexico.tsx new file mode 100644 index 000000000..96d134cf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodelaciudaddemexico.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetrodelaciudaddemexicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F77E1C'; + + const SiMetrodelaciudaddemexico: IconType = React.forwardRef(function SiMetrodelaciudaddemexico({title = 'Metro de la Ciudad de México', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetrodelaciudaddemexico as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodemadrid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodemadrid.tsx new file mode 100644 index 000000000..3e981eb41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodemadrid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetrodemadridProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#255E9C'; + + const SiMetrodemadrid: IconType = React.forwardRef(function SiMetrodemadrid({title = 'Metro de Madrid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetrodemadrid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodeparis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodeparis.tsx new file mode 100644 index 000000000..8ab6fb60b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMetrodeparis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMetrodeparisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003E95'; + + const SiMetrodeparis: IconType = React.forwardRef(function SiMetrodeparis({title = 'Métro de Paris', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMetrodeparis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMewe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMewe.tsx new file mode 100644 index 000000000..ebdba2663 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMewe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMeweProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17377F'; + + const SiMewe: IconType = React.forwardRef(function SiMewe({title = 'MeWe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMewe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMezmo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMezmo.tsx new file mode 100644 index 000000000..021d57311 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMezmo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMezmoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E9FF92'; + + const SiMezmo: IconType = React.forwardRef(function SiMezmo({title = 'Mezmo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMezmo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMg.tsx new file mode 100644 index 000000000..3ebdbf549 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiMg: IconType = React.forwardRef(function SiMg({title = 'MG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrobit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrobit.tsx new file mode 100644 index 000000000..f9297e367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrobit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMicrobitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00ED00'; + + const SiMicrobit: IconType = React.forwardRef(function SiMicrobit({title = 'micro:bit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMicrobit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrodotblog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrodotblog.tsx new file mode 100644 index 000000000..a6b142381 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrodotblog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMicrodotblogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8800'; + + const SiMicrodotblog: IconType = React.forwardRef(function SiMicrodotblog({title = 'Micro.blog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMicrodotblog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicroeditor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicroeditor.tsx new file mode 100644 index 000000000..125101d6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicroeditor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMicroeditorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E3192'; + + const SiMicroeditor: IconType = React.forwardRef(function SiMicroeditor({title = 'Micro Editor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMicroeditor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicropython.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicropython.tsx new file mode 100644 index 000000000..fb39d5f38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicropython.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMicropythonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2B2728'; + + const SiMicropython: IconType = React.forwardRef(function SiMicropython({title = 'MicroPython', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMicropython as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrostation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrostation.tsx new file mode 100644 index 000000000..0f21433c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrostation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMicrostationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#62BB47'; + + const SiMicrostation: IconType = React.forwardRef(function SiMicrostation({title = 'Microstation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMicrostation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrostrategy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrostrategy.tsx new file mode 100644 index 000000000..18189c47e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMicrostrategy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMicrostrategyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D9232E'; + + const SiMicrostrategy: IconType = React.forwardRef(function SiMicrostrategy({title = 'MicroStrategy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMicrostrategy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMidi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMidi.tsx new file mode 100644 index 000000000..4f4651fb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMidi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMidiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMidi: IconType = React.forwardRef(function SiMidi({title = 'MIDI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMidi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMigadu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMigadu.tsx new file mode 100644 index 000000000..5f00cb902 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMigadu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMigaduProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0043CE'; + + const SiMigadu: IconType = React.forwardRef(function SiMigadu({title = 'Migadu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMigadu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMihon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMihon.tsx new file mode 100644 index 000000000..4d744aea6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMihon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMihonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0058A0'; + + const SiMihon: IconType = React.forwardRef(function SiMihon({title = 'Mihon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMihon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMihoyo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMihoyo.tsx new file mode 100644 index 000000000..5e2544ded --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMihoyo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMihoyoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4EA4DD'; + + const SiMihoyo: IconType = React.forwardRef(function SiMihoyo({title = 'miHoYo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMihoyo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMikrotik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMikrotik.tsx new file mode 100644 index 000000000..16a1b5324 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMikrotik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMikrotikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#293239'; + + const SiMikrotik: IconType = React.forwardRef(function SiMikrotik({title = 'MikroTik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMikrotik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMilanote.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMilanote.tsx new file mode 100644 index 000000000..aaa0661a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMilanote.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMilanoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#31303A'; + + const SiMilanote: IconType = React.forwardRef(function SiMilanote({title = 'Milanote', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMilanote as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMilvus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMilvus.tsx new file mode 100644 index 000000000..238bcd149 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMilvus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMilvusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A1EA'; + + const SiMilvus: IconType = React.forwardRef(function SiMilvus({title = 'Milvus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMilvus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinds.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinds.tsx new file mode 100644 index 000000000..1e48f14eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinds.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMindsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FED12F'; + + const SiMinds: IconType = React.forwardRef(function SiMinds({title = 'Minds', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMinds as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMingww64.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMingww64.tsx new file mode 100644 index 000000000..310846fb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMingww64.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMingww64Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMingww64: IconType = React.forwardRef(function SiMingww64({title = 'MinGW-w64', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMingww64 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMini.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMini.tsx new file mode 100644 index 000000000..df334b313 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMini.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMiniProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMini: IconType = React.forwardRef(function SiMini({title = 'Mini', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMini as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinimax.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinimax.tsx new file mode 100644 index 000000000..ae7c7fadd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinimax.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMinimaxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E73562'; + + const SiMinimax: IconType = React.forwardRef(function SiMinimax({title = 'MiniMax', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMinimax as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinio.tsx new file mode 100644 index 000000000..0f755996b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMinioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C72E49'; + + const SiMinio: IconType = React.forwardRef(function SiMinio({title = 'MinIO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMinio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMintlify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMintlify.tsx new file mode 100644 index 000000000..7ec80e526 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMintlify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMintlifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18E299'; + + const SiMintlify: IconType = React.forwardRef(function SiMintlify({title = 'Mintlify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMintlify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinutemailer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinutemailer.tsx new file mode 100644 index 000000000..3f54404cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMinutemailer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMinutemailerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#30B980'; + + const SiMinutemailer: IconType = React.forwardRef(function SiMinutemailer({title = 'Minutemailer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMinutemailer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMiraheze.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMiraheze.tsx new file mode 100644 index 000000000..5613c293d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMiraheze.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMirahezeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFC00'; + + const SiMiraheze: IconType = React.forwardRef(function SiMiraheze({title = 'Miraheze', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMiraheze as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMiro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMiro.tsx new file mode 100644 index 000000000..226aae8fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMiro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMiroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#050038'; + + const SiMiro: IconType = React.forwardRef(function SiMiro({title = 'Miro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMiro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMisskey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMisskey.tsx new file mode 100644 index 000000000..05d3b9bc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMisskey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMisskeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A1CA03'; + + const SiMisskey: IconType = React.forwardRef(function SiMisskey({title = 'Misskey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMisskey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMistralai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMistralai.tsx new file mode 100644 index 000000000..0871dc917 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMistralai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMistralaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA520F'; + + const SiMistralai: IconType = React.forwardRef(function SiMistralai({title = 'Mistral AI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMistralai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMitsubishi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMitsubishi.tsx new file mode 100644 index 000000000..7fcae3e57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMitsubishi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMitsubishiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60012'; + + const SiMitsubishi: IconType = React.forwardRef(function SiMitsubishi({title = 'Mitsubishi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMitsubishi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMix.tsx new file mode 100644 index 000000000..ccc1ca8a3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8126'; + + const SiMix: IconType = React.forwardRef(function SiMix({title = 'Mix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMixcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMixcloud.tsx new file mode 100644 index 000000000..bb17bc14e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMixcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMixcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5000FF'; + + const SiMixcloud: IconType = React.forwardRef(function SiMixcloud({title = 'Mixcloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMixcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMixpanel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMixpanel.tsx new file mode 100644 index 000000000..c8064600b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMixpanel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMixpanelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7856FF'; + + const SiMixpanel: IconType = React.forwardRef(function SiMixpanel({title = 'Mixpanel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMixpanel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMlb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMlb.tsx new file mode 100644 index 000000000..ceda2f34b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMlb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMlbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#041E42'; + + const SiMlb: IconType = React.forwardRef(function SiMlb({title = 'MLB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMlb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMlflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMlflow.tsx new file mode 100644 index 000000000..218bc6f66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMlflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMlflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0194E2'; + + const SiMlflow: IconType = React.forwardRef(function SiMlflow({title = 'MLflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMlflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMobx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMobx.tsx new file mode 100644 index 000000000..3eefa2614 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMobx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMobxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9955'; + + const SiMobx: IconType = React.forwardRef(function SiMobx({title = 'MobX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMobx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMobxstatetree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMobxstatetree.tsx new file mode 100644 index 000000000..45b21507f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMobxstatetree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMobxstatetreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7102'; + + const SiMobxstatetree: IconType = React.forwardRef(function SiMobxstatetree({title = 'MobX-State-Tree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMobxstatetree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMocha.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMocha.tsx new file mode 100644 index 000000000..066438b13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMocha.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMochaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8D6748'; + + const SiMocha: IconType = React.forwardRef(function SiMocha({title = 'Mocha', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMocha as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMockserviceworker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMockserviceworker.tsx new file mode 100644 index 000000000..8aa5b893a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMockserviceworker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMockserviceworkerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6A33'; + + const SiMockserviceworker: IconType = React.forwardRef(function SiMockserviceworker({title = 'Mock Service Worker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMockserviceworker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiModal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModal.tsx new file mode 100644 index 000000000..7975dad48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiModalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7FEE64'; + + const SiModal: IconType = React.forwardRef(function SiModal({title = 'Modal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiModal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiModelcontextprotocol.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModelcontextprotocol.tsx new file mode 100644 index 000000000..dcdb9b3bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModelcontextprotocol.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiModelcontextprotocolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiModelcontextprotocol: IconType = React.forwardRef(function SiModelcontextprotocol({title = 'Model Context Protocol', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiModelcontextprotocol as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiModelscope.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModelscope.tsx new file mode 100644 index 000000000..92b4c9c5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModelscope.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiModelscopeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#624AFF'; + + const SiModelscope: IconType = React.forwardRef(function SiModelscope({title = 'ModelScope', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiModelscope as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiModin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModin.tsx new file mode 100644 index 000000000..c7c74bcd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiModinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#001729'; + + const SiModin: IconType = React.forwardRef(function SiModin({title = 'Modin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiModin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiModrinth.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModrinth.tsx new file mode 100644 index 000000000..4f25beada --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModrinth.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiModrinthProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AF5C'; + + const SiModrinth: IconType = React.forwardRef(function SiModrinth({title = 'Modrinth', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiModrinth as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiModx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModx.tsx new file mode 100644 index 000000000..2d67d886d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiModx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiModxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#102C53'; + + const SiModx: IconType = React.forwardRef(function SiModx({title = 'MODX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiModx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMojeek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMojeek.tsx new file mode 100644 index 000000000..b599e9aa8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMojeek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMojeekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7AB93C'; + + const SiMojeek: IconType = React.forwardRef(function SiMojeek({title = 'Mojeek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMojeek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoleculer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoleculer.tsx new file mode 100644 index 000000000..99490972f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoleculer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoleculerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3CAFCE'; + + const SiMoleculer: IconType = React.forwardRef(function SiMoleculer({title = 'Moleculer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoleculer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMomenteo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMomenteo.tsx new file mode 100644 index 000000000..a9749bfb1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMomenteo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMomenteoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A6AB1'; + + const SiMomenteo: IconType = React.forwardRef(function SiMomenteo({title = 'Momenteo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMomenteo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonero.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonero.tsx new file mode 100644 index 000000000..ec311f37d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonero.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoneroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiMonero: IconType = React.forwardRef(function SiMonero({title = 'Monero', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonero as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoneygram.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoneygram.tsx new file mode 100644 index 000000000..27e56c705 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoneygram.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoneygramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA291C'; + + const SiMoneygram: IconType = React.forwardRef(function SiMoneygram({title = 'MoneyGram', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoneygram as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongodb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongodb.tsx new file mode 100644 index 000000000..55d3fe947 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongodb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMongodbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#47A248'; + + const SiMongodb: IconType = React.forwardRef(function SiMongodb({title = 'MongoDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMongodb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongoose.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongoose.tsx new file mode 100644 index 000000000..73a35f3aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongoose.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMongooseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#880000'; + + const SiMongoose: IconType = React.forwardRef(function SiMongoose({title = 'Mongoose', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMongoose as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongoosedotws.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongoosedotws.tsx new file mode 100644 index 000000000..5f823a08c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMongoosedotws.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMongoosedotwsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F04D35'; + + const SiMongoosedotws: IconType = React.forwardRef(function SiMongoosedotws({title = 'Mongoose', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMongoosedotws as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonica.tsx new file mode 100644 index 000000000..6a416f9af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C2B29'; + + const SiMonica: IconType = React.forwardRef(function SiMonica({title = 'Monica', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonkeytie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonkeytie.tsx new file mode 100644 index 000000000..cff299e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonkeytie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonkeytieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A52C2'; + + const SiMonkeytie: IconType = React.forwardRef(function SiMonkeytie({title = 'monkey tie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonkeytie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonkeytype.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonkeytype.tsx new file mode 100644 index 000000000..292a4abe4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonkeytype.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonkeytypeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E2B714'; + + const SiMonkeytype: IconType = React.forwardRef(function SiMonkeytype({title = 'Monkeytype', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonkeytype as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonogame.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonogame.tsx new file mode 100644 index 000000000..b38e32df4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonogame.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonogameProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E73C00'; + + const SiMonogame: IconType = React.forwardRef(function SiMonogame({title = 'MonoGame', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonogame as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonoprix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonoprix.tsx new file mode 100644 index 000000000..795962baa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonoprix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonoprixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB1911'; + + const SiMonoprix: IconType = React.forwardRef(function SiMonoprix({title = 'Monoprix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonoprix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonster.tsx new file mode 100644 index 000000000..83972f62d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonsterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D4C9F'; + + const SiMonster: IconType = React.forwardRef(function SiMonster({title = 'Monster', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonzo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonzo.tsx new file mode 100644 index 000000000..7b3ebf001 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMonzo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMonzoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14233C'; + + const SiMonzo: IconType = React.forwardRef(function SiMonzo({title = 'Monzo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMonzo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoo.tsx new file mode 100644 index 000000000..8f124e0b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00945E'; + + const SiMoo: IconType = React.forwardRef(function SiMoo({title = 'Moo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoodle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoodle.tsx new file mode 100644 index 000000000..959d570d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoodle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoodleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F98012'; + + const SiMoodle: IconType = React.forwardRef(function SiMoodle({title = 'Moodle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoodle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoonrepo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoonrepo.tsx new file mode 100644 index 000000000..5af800e7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoonrepo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoonrepoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6F53F3'; + + const SiMoonrepo: IconType = React.forwardRef(function SiMoonrepo({title = 'Moonrepo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoonrepo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoq.tsx new file mode 100644 index 000000000..9eb8a83ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4BE00'; + + const SiMoq: IconType = React.forwardRef(function SiMoq({title = 'Moq', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoqups.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoqups.tsx new file mode 100644 index 000000000..72dc33318 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoqups.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoqupsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006BE5'; + + const SiMoqups: IconType = React.forwardRef(function SiMoqups({title = 'Moqups', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoqups as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMorrisons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMorrisons.tsx new file mode 100644 index 000000000..7926f8561 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMorrisons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMorrisonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007531'; + + const SiMorrisons: IconType = React.forwardRef(function SiMorrisons({title = 'Morrisons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMorrisons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoscowmetro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoscowmetro.tsx new file mode 100644 index 000000000..44c57c86d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMoscowmetro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMoscowmetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D9232E'; + + const SiMoscowmetro: IconType = React.forwardRef(function SiMoscowmetro({title = 'Moscow Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMoscowmetro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMotorola.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMotorola.tsx new file mode 100644 index 000000000..8f9716167 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMotorola.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMotorolaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E1140A'; + + const SiMotorola: IconType = React.forwardRef(function SiMotorola({title = 'Motorola', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMotorola as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMovistar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMovistar.tsx new file mode 100644 index 000000000..bf8f3a4cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMovistar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMovistarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#019DF4'; + + const SiMovistar: IconType = React.forwardRef(function SiMovistar({title = 'Movistar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMovistar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMozilla.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMozilla.tsx new file mode 100644 index 000000000..5e82066c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMozilla.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMozillaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#161616'; + + const SiMozilla: IconType = React.forwardRef(function SiMozilla({title = 'Mozilla', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMozilla as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMpv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMpv.tsx new file mode 100644 index 000000000..11e641755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMpv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMpvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#691F69'; + + const SiMpv: IconType = React.forwardRef(function SiMpv({title = 'mpv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMpv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMqtt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMqtt.tsx new file mode 100644 index 000000000..1e14e4e69 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMqtt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMqttProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#660066'; + + const SiMqtt: IconType = React.forwardRef(function SiMqtt({title = 'MQTT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMqtt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMsi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMsi.tsx new file mode 100644 index 000000000..32daf79ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMsi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMsiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiMsi: IconType = React.forwardRef(function SiMsi({title = 'MSI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMsi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMsibusiness.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMsibusiness.tsx new file mode 100644 index 000000000..24aedfa37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMsibusiness.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMsibusinessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9A8555'; + + const SiMsibusiness: IconType = React.forwardRef(function SiMsibusiness({title = 'MSI Business', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMsibusiness as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMta.tsx new file mode 100644 index 000000000..dbab7e96e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMtaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0039A6'; + + const SiMta: IconType = React.forwardRef(function SiMta({title = 'MTA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMtr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMtr.tsx new file mode 100644 index 000000000..60d6b475f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMtr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMtrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AC2E45'; + + const SiMtr: IconType = React.forwardRef(function SiMtr({title = 'MTR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMtr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMubi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMubi.tsx new file mode 100644 index 000000000..8917d658b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMubi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMubiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMubi: IconType = React.forwardRef(function SiMubi({title = 'MUBI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMubi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMui.tsx new file mode 100644 index 000000000..6fbaf776d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007FFF'; + + const SiMui: IconType = React.forwardRef(function SiMui({title = 'MUI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMuller.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMuller.tsx new file mode 100644 index 000000000..b1ecf3596 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMuller.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMullerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F46519'; + + const SiMuller: IconType = React.forwardRef(function SiMuller({title = 'Müller', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMuller as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMullvad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMullvad.tsx new file mode 100644 index 000000000..c224ff9de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMullvad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMullvadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#294D73'; + + const SiMullvad: IconType = React.forwardRef(function SiMullvad({title = 'Mullvad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMullvad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMultisim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMultisim.tsx new file mode 100644 index 000000000..4f19b26eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMultisim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMultisimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#57B685'; + + const SiMultisim: IconType = React.forwardRef(function SiMultisim({title = 'Multisim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMultisim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMumble.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMumble.tsx new file mode 100644 index 000000000..0034f8347 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMumble.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMumbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMumble: IconType = React.forwardRef(function SiMumble({title = 'Mumble', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMumble as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMuo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMuo.tsx new file mode 100644 index 000000000..30a7f4826 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMuo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMuoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C60D0D'; + + const SiMuo: IconType = React.forwardRef(function SiMuo({title = 'MUO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMuo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMural.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMural.tsx new file mode 100644 index 000000000..1d1a2946d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMural.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMuralProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4B4B'; + + const SiMural: IconType = React.forwardRef(function SiMural({title = 'Mural', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMural as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMusicbrainz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMusicbrainz.tsx new file mode 100644 index 000000000..40b0a880d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMusicbrainz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMusicbrainzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BA478F'; + + const SiMusicbrainz: IconType = React.forwardRef(function SiMusicbrainz({title = 'MusicBrainz', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMusicbrainz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMxlinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMxlinux.tsx new file mode 100644 index 000000000..db4934d6b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMxlinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMxlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiMxlinux: IconType = React.forwardRef(function SiMxlinux({title = 'MX Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMxlinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyanimelist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyanimelist.tsx new file mode 100644 index 000000000..0d126ff14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyanimelist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMyanimelistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E51A2'; + + const SiMyanimelist: IconType = React.forwardRef(function SiMyanimelist({title = 'MyAnimeList', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMyanimelist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyget.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyget.tsx new file mode 100644 index 000000000..6cad03a9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyget.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMygetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C79CE'; + + const SiMyget: IconType = React.forwardRef(function SiMyget({title = 'MyGet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMyget as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyob.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyob.tsx new file mode 100644 index 000000000..4583d29ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyob.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMyobProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7B14EF'; + + const SiMyob: IconType = React.forwardRef(function SiMyob({title = 'MYOB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMyob as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyshows.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyshows.tsx new file mode 100644 index 000000000..8bd2001ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyshows.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMyshowsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiMyshows: IconType = React.forwardRef(function SiMyshows({title = 'MyShows', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMyshows as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyspace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyspace.tsx new file mode 100644 index 000000000..d0c157f14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMyspace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMyspaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#030303'; + + const SiMyspace: IconType = React.forwardRef(function SiMyspace({title = 'Myspace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMyspace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiMysql.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMysql.tsx new file mode 100644 index 000000000..7d39e8da9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiMysql.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiMysqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4479A1'; + + const SiMysql: IconType = React.forwardRef(function SiMysql({title = 'MySQL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiMysql as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiN26.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiN26.tsx new file mode 100644 index 000000000..3ce0cd6b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiN26.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiN26Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#48AC98'; + + const SiN26: IconType = React.forwardRef(function SiN26({title = 'N26', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiN26 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiN8n.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiN8n.tsx new file mode 100644 index 000000000..2317f5f01 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiN8n.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiN8nProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA4B71'; + + const SiN8n: IconType = React.forwardRef(function SiN8n({title = 'n8n', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiN8n as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamebase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamebase.tsx new file mode 100644 index 000000000..9ca549d86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamebase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNamebaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0068FF'; + + const SiNamebase: IconType = React.forwardRef(function SiNamebase({title = 'Namebase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNamebase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamecheap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamecheap.tsx new file mode 100644 index 000000000..09f8fc03c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamecheap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNamecheapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DE3723'; + + const SiNamecheap: IconType = React.forwardRef(function SiNamecheap({title = 'Namecheap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNamecheap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamemc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamemc.tsx new file mode 100644 index 000000000..0a57f4da1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamemc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNamemcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#12161A'; + + const SiNamemc: IconType = React.forwardRef(function SiNamemc({title = 'NameMC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNamemc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamesilo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamesilo.tsx new file mode 100644 index 000000000..b890e6755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamesilo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNamesiloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#031B4E'; + + const SiNamesilo: IconType = React.forwardRef(function SiNamesilo({title = 'NameSilo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNamesilo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamuwiki.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamuwiki.tsx new file mode 100644 index 000000000..1694f6d57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNamuwiki.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNamuwikiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008275'; + + const SiNamuwiki: IconType = React.forwardRef(function SiNamuwiki({title = 'Namu Wiki', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNamuwiki as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNano.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNano.tsx new file mode 100644 index 000000000..09f808b10 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNano.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNanoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#209CE9'; + + const SiNano: IconType = React.forwardRef(function SiNano({title = 'Nano', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNano as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNanostores.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNanostores.tsx new file mode 100644 index 000000000..aa35116fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNanostores.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNanostoresProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNanostores: IconType = React.forwardRef(function SiNanostores({title = 'Nano Stores', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNanostores as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNapster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNapster.tsx new file mode 100644 index 000000000..d53659acc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNapster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNapsterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2259FF'; + + const SiNapster: IconType = React.forwardRef(function SiNapster({title = 'Napster', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNapster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNasa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNasa.tsx new file mode 100644 index 000000000..a90b2d91c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNasa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNasaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E03C31'; + + const SiNasa: IconType = React.forwardRef(function SiNasa({title = 'NASA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNasa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNationalgrid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNationalgrid.tsx new file mode 100644 index 000000000..c9516481d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNationalgrid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNationalgridProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00148C'; + + const SiNationalgrid: IconType = React.forwardRef(function SiNationalgrid({title = 'National Grid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNationalgrid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNationalrail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNationalrail.tsx new file mode 100644 index 000000000..bf9ba5b13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNationalrail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNationalrailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003366'; + + const SiNationalrail: IconType = React.forwardRef(function SiNationalrail({title = 'National Rail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNationalrail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNativescript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNativescript.tsx new file mode 100644 index 000000000..274c5329d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNativescript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNativescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#65ADF1'; + + const SiNativescript: IconType = React.forwardRef(function SiNativescript({title = 'NativeScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNativescript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNatsdotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNatsdotio.tsx new file mode 100644 index 000000000..4f5c36890 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNatsdotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNatsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#27AAE1'; + + const SiNatsdotio: IconType = React.forwardRef(function SiNatsdotio({title = 'NATS.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNatsdotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNaver.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNaver.tsx new file mode 100644 index 000000000..e7600af8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNaver.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNaverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03C75A'; + + const SiNaver: IconType = React.forwardRef(function SiNaver({title = 'Naver', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNaver as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNba.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNba.tsx new file mode 100644 index 000000000..ae63e7fca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNba.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNbaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#253B73'; + + const SiNba: IconType = React.forwardRef(function SiNba({title = 'NBA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNba as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNbb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNbb.tsx new file mode 100644 index 000000000..ac1159c25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNbb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNbbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7100'; + + const SiNbb: IconType = React.forwardRef(function SiNbb({title = 'NBB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNbb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNbc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNbc.tsx new file mode 100644 index 000000000..5a4fefb6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNbc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNbcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222222'; + + const SiNbc: IconType = React.forwardRef(function SiNbc({title = 'NBC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNbc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNdi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNdi.tsx new file mode 100644 index 000000000..f9a70bcfc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNdi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNdiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNdi: IconType = React.forwardRef(function SiNdi({title = 'NDI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNdi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNdr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNdr.tsx new file mode 100644 index 000000000..1a32ab83a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNdr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNdrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C1754'; + + const SiNdr: IconType = React.forwardRef(function SiNdr({title = 'NDR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNdr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNear.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNear.tsx new file mode 100644 index 000000000..9b068e254 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNear.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNearProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNear: IconType = React.forwardRef(function SiNear({title = 'NEAR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNear as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNebula.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNebula.tsx new file mode 100644 index 000000000..aa316174d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNebula.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNebulaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2CADFE'; + + const SiNebula: IconType = React.forwardRef(function SiNebula({title = 'Nebula', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNebula as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNec.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNec.tsx new file mode 100644 index 000000000..dfbe3cc83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNec.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1414A0'; + + const SiNec: IconType = React.forwardRef(function SiNec({title = 'NEC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNec as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNederlandsespoorwegen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNederlandsespoorwegen.tsx new file mode 100644 index 000000000..ce14df054 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNederlandsespoorwegen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNederlandsespoorwegenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003082'; + + const SiNederlandsespoorwegen: IconType = React.forwardRef(function SiNederlandsespoorwegen({title = 'Nederlandse Spoorwegen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNederlandsespoorwegen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeo4j.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeo4j.tsx new file mode 100644 index 000000000..f2bc01605 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeo4j.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNeo4jProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4581C3'; + + const SiNeo4j: IconType = React.forwardRef(function SiNeo4j({title = 'Neo4j', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNeo4j as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeovim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeovim.tsx new file mode 100644 index 000000000..4ece137be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeovim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNeovimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#57A143'; + + const SiNeovim: IconType = React.forwardRef(function SiNeovim({title = 'Neovim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNeovim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeptune.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeptune.tsx new file mode 100644 index 000000000..25b37db93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeptune.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNeptuneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5B69C2'; + + const SiNeptune: IconType = React.forwardRef(function SiNeptune({title = 'Neptune', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNeptune as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNestjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNestjs.tsx new file mode 100644 index 000000000..c7d05be98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNestjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNestjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E0234E'; + + const SiNestjs: IconType = React.forwardRef(function SiNestjs({title = 'NestJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNestjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetapp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetapp.tsx new file mode 100644 index 000000000..d332795eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetapp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0067C5'; + + const SiNetapp: IconType = React.forwardRef(function SiNetapp({title = 'NetApp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetapp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetbsd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetbsd.tsx new file mode 100644 index 000000000..6fc881015 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetbsd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetbsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiNetbsd: IconType = React.forwardRef(function SiNetbsd({title = 'NetBSD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetbsd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetcup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetcup.tsx new file mode 100644 index 000000000..7e6cac813 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetcup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetcupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#056473'; + + const SiNetcup: IconType = React.forwardRef(function SiNetcup({title = 'netcup', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetcup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetdata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetdata.tsx new file mode 100644 index 000000000..00aba98db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetdata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetdataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AB44'; + + const SiNetdata: IconType = React.forwardRef(function SiNetdata({title = 'Netdata', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetdata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeteasecloudmusic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeteasecloudmusic.tsx new file mode 100644 index 000000000..8c95a6086 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeteasecloudmusic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNeteasecloudmusicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D43C33'; + + const SiNeteasecloudmusic: IconType = React.forwardRef(function SiNeteasecloudmusic({title = 'NetEase Cloud Music', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNeteasecloudmusic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetflix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetflix.tsx new file mode 100644 index 000000000..76d4a526c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetflix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetflixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E50914'; + + const SiNetflix: IconType = React.forwardRef(function SiNetflix({title = 'Netflix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetflix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetgear.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetgear.tsx new file mode 100644 index 000000000..ab1b8f380 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetgear.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetgearProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C262D'; + + const SiNetgear: IconType = React.forwardRef(function SiNetgear({title = 'NETGEAR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetgear as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetim.tsx new file mode 100644 index 000000000..8d42895e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE8427'; + + const SiNetim: IconType = React.forwardRef(function SiNetim({title = 'Netim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetlify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetlify.tsx new file mode 100644 index 000000000..acf346a8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetlify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetlifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00C7B7'; + + const SiNetlify: IconType = React.forwardRef(function SiNetlify({title = 'Netlify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetlify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNette.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNette.tsx new file mode 100644 index 000000000..faa361875 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNette.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNetteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3484D2'; + + const SiNette: IconType = React.forwardRef(function SiNette({title = 'Nette', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNette as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetto.tsx new file mode 100644 index 000000000..383b8aa05 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNetto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNettoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE500'; + + const SiNetto: IconType = React.forwardRef(function SiNetto({title = 'Netto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNetto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeutralinojs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeutralinojs.tsx new file mode 100644 index 000000000..c26e3285d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNeutralinojs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNeutralinojsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F89901'; + + const SiNeutralinojs: IconType = React.forwardRef(function SiNeutralinojs({title = 'Neutralinojs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNeutralinojs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewbalance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewbalance.tsx new file mode 100644 index 000000000..9369c8872 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewbalance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNewbalanceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CF0A2C'; + + const SiNewbalance: IconType = React.forwardRef(function SiNewbalance({title = 'New Balance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewbalance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewegg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewegg.tsx new file mode 100644 index 000000000..3e496345e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewegg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNeweggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E05E00'; + + const SiNewegg: IconType = React.forwardRef(function SiNewegg({title = 'Newegg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewegg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewgrounds.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewgrounds.tsx new file mode 100644 index 000000000..2212cd59f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewgrounds.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNewgroundsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDA238'; + + const SiNewgrounds: IconType = React.forwardRef(function SiNewgrounds({title = 'Newgrounds', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewgrounds as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewjapanprowrestling.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewjapanprowrestling.tsx new file mode 100644 index 000000000..349b97b6e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewjapanprowrestling.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNewjapanprowrestlingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF160B'; + + const SiNewjapanprowrestling: IconType = React.forwardRef(function SiNewjapanprowrestling({title = 'New Japan Pro-Wrestling', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewjapanprowrestling as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewpipe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewpipe.tsx new file mode 100644 index 000000000..dd16d5d3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewpipe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNewpipeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD201F'; + + const SiNewpipe: IconType = React.forwardRef(function SiNewpipe({title = 'NewPipe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewpipe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewrelic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewrelic.tsx new file mode 100644 index 000000000..d02619895 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewrelic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNewrelicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1CE783'; + + const SiNewrelic: IconType = React.forwardRef(function SiNewrelic({title = 'New Relic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewrelic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewyorktimes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewyorktimes.tsx new file mode 100644 index 000000000..056dc13a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNewyorktimes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNewyorktimesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNewyorktimes: IconType = React.forwardRef(function SiNewyorktimes({title = 'New York Times', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNewyorktimes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNexon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNexon.tsx new file mode 100644 index 000000000..436ea98df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNexon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNexonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNexon: IconType = React.forwardRef(function SiNexon({title = 'NEXON', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNexon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextbike.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextbike.tsx new file mode 100644 index 000000000..8ba54b2e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextbike.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextbikeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0046D7'; + + const SiNextbike: IconType = React.forwardRef(function SiNextbike({title = 'nextbike', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextbike as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextbilliondotai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextbilliondotai.tsx new file mode 100644 index 000000000..b91555b25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextbilliondotai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextbilliondotaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8D5A9E'; + + const SiNextbilliondotai: IconType = React.forwardRef(function SiNextbilliondotai({title = 'NextBillion.ai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextbilliondotai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextcloud.tsx new file mode 100644 index 000000000..61522595d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0082C9'; + + const SiNextcloud: IconType = React.forwardRef(function SiNextcloud({title = 'Nextcloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdns.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdns.tsx new file mode 100644 index 000000000..f9e79a1cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdns.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextdnsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007BFF'; + + const SiNextdns: IconType = React.forwardRef(function SiNextdns({title = 'NextDNS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextdns as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdoor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdoor.tsx new file mode 100644 index 000000000..b8fd623a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdoor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextdoorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8ED500'; + + const SiNextdoor: IconType = React.forwardRef(function SiNextdoor({title = 'Nextdoor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextdoor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdotjs.tsx new file mode 100644 index 000000000..5922ccf62 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNextdotjs: IconType = React.forwardRef(function SiNextdotjs({title = 'Next.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextflow.tsx new file mode 100644 index 000000000..4fabe7cd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0DC09D'; + + const SiNextflow: IconType = React.forwardRef(function SiNextflow({title = 'Nextflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextra.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextra.tsx new file mode 100644 index 000000000..9fd8ddfa0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNextra.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNextraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNextra: IconType = React.forwardRef(function SiNextra({title = 'Nextra', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNextra as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNfc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNfc.tsx new file mode 100644 index 000000000..60f020c3f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNfc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNfcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002E5F'; + + const SiNfc: IconType = React.forwardRef(function SiNfc({title = 'NFC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNfc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNfcore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNfcore.tsx new file mode 100644 index 000000000..59b752eae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNfcore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNfcoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24B064'; + + const SiNfcore: IconType = React.forwardRef(function SiNfcore({title = 'nf-core', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNfcore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNginx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNginx.tsx new file mode 100644 index 000000000..14ca322a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNginx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNginxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009639'; + + const SiNginx: IconType = React.forwardRef(function SiNginx({title = 'NGINX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNginx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNginxproxymanager.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNginxproxymanager.tsx new file mode 100644 index 000000000..f27f6f617 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNginxproxymanager.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNginxproxymanagerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15833'; + + const SiNginxproxymanager: IconType = React.forwardRef(function SiNginxproxymanager({title = 'Nginx Proxy Manager', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNginxproxymanager as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNgrok.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNgrok.tsx new file mode 100644 index 000000000..544fb9fe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNgrok.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNgrokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F1E37'; + + const SiNgrok: IconType = React.forwardRef(function SiNgrok({title = 'ngrok', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNgrok as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNgrx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNgrx.tsx new file mode 100644 index 000000000..d717abe44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNgrx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNgrxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BA2BD2'; + + const SiNgrx: IconType = React.forwardRef(function SiNgrx({title = 'NgRx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNgrx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNhl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNhl.tsx new file mode 100644 index 000000000..1f5fb325d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNhl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNhlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNhl: IconType = React.forwardRef(function SiNhl({title = 'NHL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNhl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNhost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNhost.tsx new file mode 100644 index 000000000..bfe269643 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNhost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNhostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CD'; + + const SiNhost: IconType = React.forwardRef(function SiNhost({title = 'Nhost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNhost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNicehash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNicehash.tsx new file mode 100644 index 000000000..afdd1df25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNicehash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNicehashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBC342'; + + const SiNicehash: IconType = React.forwardRef(function SiNicehash({title = 'NiceHash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNicehash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNiconico.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNiconico.tsx new file mode 100644 index 000000000..bc24a717a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNiconico.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNiconicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231815'; + + const SiNiconico: IconType = React.forwardRef(function SiNiconico({title = 'niconico', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNiconico as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNike.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNike.tsx new file mode 100644 index 000000000..5c5cdc7b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNike.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNikeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111111'; + + const SiNike: IconType = React.forwardRef(function SiNike({title = 'Nike', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNike as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNikon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNikon.tsx new file mode 100644 index 000000000..58f6b0274 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNikon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNikonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE100'; + + const SiNikon: IconType = React.forwardRef(function SiNikon({title = 'Nikon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNikon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNim.tsx new file mode 100644 index 000000000..bac189ac9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE953'; + + const SiNim: IconType = React.forwardRef(function SiNim({title = 'Nim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNiri.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNiri.tsx new file mode 100644 index 000000000..f0d19b1ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNiri.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNiriProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D55C44'; + + const SiNiri: IconType = React.forwardRef(function SiNiri({title = 'niri', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNiri as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNissan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNissan.tsx new file mode 100644 index 000000000..9fec6015d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNissan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNissanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C3002F'; + + const SiNissan: IconType = React.forwardRef(function SiNissan({title = 'Nissan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNissan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNixos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNixos.tsx new file mode 100644 index 000000000..154c39b44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNixos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNixosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5277C3'; + + const SiNixos: IconType = React.forwardRef(function SiNixos({title = 'NixOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNixos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNobaralinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNobaralinux.tsx new file mode 100644 index 000000000..f218101e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNobaralinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNobaralinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNobaralinux: IconType = React.forwardRef(function SiNobaralinux({title = 'Nobara Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNobaralinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodebb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodebb.tsx new file mode 100644 index 000000000..62e71f188 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodebb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNodebbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E5EBC'; + + const SiNodebb: IconType = React.forwardRef(function SiNodebb({title = 'NodeBB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNodebb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodedotjs.tsx new file mode 100644 index 000000000..df6b5a438 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNodedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5FA04E'; + + const SiNodedotjs: IconType = React.forwardRef(function SiNodedotjs({title = 'Node.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNodedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodegui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodegui.tsx new file mode 100644 index 000000000..af20d6ea2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodegui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNodeguiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNodegui: IconType = React.forwardRef(function SiNodegui({title = 'NodeGui', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNodegui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodemon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodemon.tsx new file mode 100644 index 000000000..f2b1b3824 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodemon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNodemonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#76D04B'; + + const SiNodemon: IconType = React.forwardRef(function SiNodemon({title = 'Nodemon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNodemon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodered.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodered.tsx new file mode 100644 index 000000000..01c1ed17f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNodered.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNoderedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8F0000'; + + const SiNodered: IconType = React.forwardRef(function SiNodered({title = 'Node-RED', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNodered as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNokia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNokia.tsx new file mode 100644 index 000000000..863382405 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNokia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNokiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005AFF'; + + const SiNokia: IconType = React.forwardRef(function SiNokia({title = 'Nokia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNokia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNomad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNomad.tsx new file mode 100644 index 000000000..eb467dd0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNomad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNomadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CA8E'; + + const SiNomad: IconType = React.forwardRef(function SiNomad({title = 'Nomad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNomad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorco.tsx new file mode 100644 index 000000000..6a6021119 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNorcoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FF00'; + + const SiNorco: IconType = React.forwardRef(function SiNorco({title = 'Norco', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNorco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNordicsemiconductor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNordicsemiconductor.tsx new file mode 100644 index 000000000..23c1fca90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNordicsemiconductor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNordicsemiconductorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A9CE'; + + const SiNordicsemiconductor: IconType = React.forwardRef(function SiNordicsemiconductor({title = 'Nordic Semiconductor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNordicsemiconductor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNordvpn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNordvpn.tsx new file mode 100644 index 000000000..94e7702ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNordvpn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNordvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4687FF'; + + const SiNordvpn: IconType = React.forwardRef(function SiNordvpn({title = 'NordVPN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNordvpn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNormalizedotcss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNormalizedotcss.tsx new file mode 100644 index 000000000..73363639c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNormalizedotcss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNormalizedotcssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E3695F'; + + const SiNormalizedotcss: IconType = React.forwardRef(function SiNormalizedotcss({title = 'Normalize.css', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNormalizedotcss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorton.tsx new file mode 100644 index 000000000..9dd285217 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNortonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE01A'; + + const SiNorton: IconType = React.forwardRef(function SiNorton({title = 'Norton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNorton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorwegian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorwegian.tsx new file mode 100644 index 000000000..744052b79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNorwegian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNorwegianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D81939'; + + const SiNorwegian: IconType = React.forwardRef(function SiNorwegian({title = 'Norwegian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNorwegian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNote.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNote.tsx new file mode 100644 index 000000000..17110dcca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNote.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNote: IconType = React.forwardRef(function SiNote({title = 'Note', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNote as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotebooklm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotebooklm.tsx new file mode 100644 index 000000000..d0b4cea90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotebooklm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNotebooklmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNotebooklm: IconType = React.forwardRef(function SiNotebooklm({title = 'NotebookLM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNotebooklm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotepadplusplus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotepadplusplus.tsx new file mode 100644 index 000000000..e6a164c67 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotepadplusplus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNotepadplusplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#90E59A'; + + const SiNotepadplusplus: IconType = React.forwardRef(function SiNotepadplusplus({title = 'Notepad++', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNotepadplusplus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotion.tsx new file mode 100644 index 000000000..0b737c30b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNotionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNotion: IconType = React.forwardRef(function SiNotion({title = 'Notion', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNotion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotist.tsx new file mode 100644 index 000000000..6c0b4bdc4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNotist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNotistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiNotist: IconType = React.forwardRef(function SiNotist({title = 'Notist', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNotist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNounproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNounproject.tsx new file mode 100644 index 000000000..dde5ff921 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNounproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNounprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNounproject: IconType = React.forwardRef(function SiNounproject({title = 'Noun Project', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNounproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNovu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNovu.tsx new file mode 100644 index 000000000..252cc5085 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNovu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNovuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNovu: IconType = React.forwardRef(function SiNovu({title = 'Novu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNovu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNow.tsx new file mode 100644 index 000000000..d3eeacb54 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#001211'; + + const SiNow: IconType = React.forwardRef(function SiNow({title = 'NOW', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNpm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNpm.tsx new file mode 100644 index 000000000..1f14f7f64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNpm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNpmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CB3837'; + + const SiNpm: IconType = React.forwardRef(function SiNpm({title = 'npm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNpm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNrwl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNrwl.tsx new file mode 100644 index 000000000..1b963f6fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNrwl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNrwlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#96D7E8'; + + const SiNrwl: IconType = React.forwardRef(function SiNrwl({title = 'Nrwl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNrwl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNsis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNsis.tsx new file mode 100644 index 000000000..f2ee9a11e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNsis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNsisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#01B0F0'; + + const SiNsis: IconType = React.forwardRef(function SiNsis({title = 'NSIS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNsis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNtfy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNtfy.tsx new file mode 100644 index 000000000..50a87482b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNtfy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNtfyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#317F6F'; + + const SiNtfy: IconType = React.forwardRef(function SiNtfy({title = 'ntfy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNtfy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNubank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNubank.tsx new file mode 100644 index 000000000..4e9b3c233 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNubank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNubankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#820AD1'; + + const SiNubank: IconType = React.forwardRef(function SiNubank({title = 'Nubank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNubank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNucleo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNucleo.tsx new file mode 100644 index 000000000..d5987e1b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNucleo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNucleoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#252B2D'; + + const SiNucleo: IconType = React.forwardRef(function SiNucleo({title = 'Nucleo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNucleo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuget.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuget.tsx new file mode 100644 index 000000000..dd32c1134 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuget.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNugetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004880'; + + const SiNuget: IconType = React.forwardRef(function SiNuget({title = 'NuGet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNuget as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuke.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuke.tsx new file mode 100644 index 000000000..a1e663a7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuke.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNukeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNuke: IconType = React.forwardRef(function SiNuke({title = 'Nuke', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNuke as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNumba.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNumba.tsx new file mode 100644 index 000000000..5deeb66b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNumba.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNumbaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A3E0'; + + const SiNumba: IconType = React.forwardRef(function SiNumba({title = 'Numba', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNumba as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNumpy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNumpy.tsx new file mode 100644 index 000000000..bad6fd48b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNumpy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNumpyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#013243'; + + const SiNumpy: IconType = React.forwardRef(function SiNumpy({title = 'NumPy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNumpy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNunjucks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNunjucks.tsx new file mode 100644 index 000000000..90dda4e44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNunjucks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNunjucksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C4913'; + + const SiNunjucks: IconType = React.forwardRef(function SiNunjucks({title = 'Nunjucks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNunjucks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNushell.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNushell.tsx new file mode 100644 index 000000000..cbe27d129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNushell.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNushellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E9A06'; + + const SiNushell: IconType = React.forwardRef(function SiNushell({title = 'Nushell', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNushell as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNutanix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNutanix.tsx new file mode 100644 index 000000000..ced69695c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNutanix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNutanixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#024DA1'; + + const SiNutanix: IconType = React.forwardRef(function SiNutanix({title = 'Nutanix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNutanix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuxt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuxt.tsx new file mode 100644 index 000000000..05c46d54d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNuxt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNuxtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00DC82'; + + const SiNuxt: IconType = React.forwardRef(function SiNuxt({title = 'Nuxt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNuxt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNvidia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNvidia.tsx new file mode 100644 index 000000000..07accd881 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNvidia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNvidiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#76B900'; + + const SiNvidia: IconType = React.forwardRef(function SiNvidia({title = 'NVIDIA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNvidia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNvm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNvm.tsx new file mode 100644 index 000000000..24bdd8ead --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNvm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNvmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4DD4B'; + + const SiNvm: IconType = React.forwardRef(function SiNvm({title = 'nvm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNvm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNx.tsx new file mode 100644 index 000000000..d265efe72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#143055'; + + const SiNx: IconType = React.forwardRef(function SiNx({title = 'Nx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNxp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNxp.tsx new file mode 100644 index 000000000..d5862db7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNxp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNxpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNxp: IconType = React.forwardRef(function SiNxp({title = 'NXP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNxp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiNzxt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNzxt.tsx new file mode 100644 index 000000000..d292ca42f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiNzxt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiNzxtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiNzxt: IconType = React.forwardRef(function SiNzxt({title = 'NZXT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiNzxt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiO2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiO2.tsx new file mode 100644 index 000000000..165f719f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiO2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiO2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0050FF'; + + const SiO2: IconType = React.forwardRef(function SiO2({title = 'O2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiO2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiObb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObb.tsx new file mode 100644 index 000000000..2d0086970 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiObbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E40327'; + + const SiObb: IconType = React.forwardRef(function SiObb({title = 'ÖBB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiObb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiObservable.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObservable.tsx new file mode 100644 index 000000000..906f5704c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObservable.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiObservableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#353E58'; + + const SiObservable: IconType = React.forwardRef(function SiObservable({title = 'Observable', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiObservable as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiObsidian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObsidian.tsx new file mode 100644 index 000000000..933847b78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObsidian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiObsidianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7C3AED'; + + const SiObsidian: IconType = React.forwardRef(function SiObsidian({title = 'Obsidian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiObsidian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiObsstudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObsstudio.tsx new file mode 100644 index 000000000..e379b1f23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObsstudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiObsstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#302E31'; + + const SiObsstudio: IconType = React.forwardRef(function SiObsstudio({title = 'OBS Studio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiObsstudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiObtainium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObtainium.tsx new file mode 100644 index 000000000..f5d93bd5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiObtainium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiObtainiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D2BCFD'; + + const SiObtainium: IconType = React.forwardRef(function SiObtainium({title = 'Obtainium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiObtainium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOcaml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOcaml.tsx new file mode 100644 index 000000000..bf6285261 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOcaml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOcamlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC6813'; + + const SiOcaml: IconType = React.forwardRef(function SiOcaml({title = 'OCaml', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOcaml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOclc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOclc.tsx new file mode 100644 index 000000000..a352c18d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOclc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOclcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007DBA'; + + const SiOclc: IconType = React.forwardRef(function SiOclc({title = 'OCLC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOclc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOclif.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOclif.tsx new file mode 100644 index 000000000..277c309fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOclif.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOclifProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOclif: IconType = React.forwardRef(function SiOclif({title = 'oclif', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOclif as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctanerender.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctanerender.tsx new file mode 100644 index 000000000..e66b7dcd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctanerender.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOctanerenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOctanerender: IconType = React.forwardRef(function SiOctanerender({title = 'Octane Render', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOctanerender as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctave.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctave.tsx new file mode 100644 index 000000000..1acb41e9a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctave.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOctaveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0790C0'; + + const SiOctave: IconType = React.forwardRef(function SiOctave({title = 'Octave', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOctave as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctobercms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctobercms.tsx new file mode 100644 index 000000000..3e4e3143e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctobercms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOctobercmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB6A26'; + + const SiOctobercms: IconType = React.forwardRef(function SiOctobercms({title = 'October CMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOctobercms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctoprint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctoprint.tsx new file mode 100644 index 000000000..9ca9778d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctoprint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOctoprintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13C100'; + + const SiOctoprint: IconType = React.forwardRef(function SiOctoprint({title = 'OctoPrint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOctoprint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctopusdeploy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctopusdeploy.tsx new file mode 100644 index 000000000..558bfdd4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOctopusdeploy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOctopusdeployProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F93E0'; + + const SiOctopusdeploy: IconType = React.forwardRef(function SiOctopusdeploy({title = 'Octopus Deploy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOctopusdeploy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOculus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOculus.tsx new file mode 100644 index 000000000..fdf26017f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOculus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOculusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C1E20'; + + const SiOculus: IconType = React.forwardRef(function SiOculus({title = 'Oculus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOculus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdido.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdido.tsx new file mode 100644 index 000000000..d4a8ffab2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdido.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOdidoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C72FF'; + + const SiOdido: IconType = React.forwardRef(function SiOdido({title = 'Odido', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOdido as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdin.tsx new file mode 100644 index 000000000..5ab17ebc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOdinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3882D2'; + + const SiOdin: IconType = React.forwardRef(function SiOdin({title = 'Odin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOdin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdnoklassniki.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdnoklassniki.tsx new file mode 100644 index 000000000..d58b74b64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdnoklassniki.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOdnoklassnikiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE8208'; + + const SiOdnoklassniki: IconType = React.forwardRef(function SiOdnoklassniki({title = 'Odnoklassniki', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOdnoklassniki as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdoo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdoo.tsx new file mode 100644 index 000000000..a767012a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdoo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOdooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#714B67'; + + const SiOdoo: IconType = React.forwardRef(function SiOdoo({title = 'Odoo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOdoo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdysee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdysee.tsx new file mode 100644 index 000000000..82e206622 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOdysee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOdyseeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF1970'; + + const SiOdysee: IconType = React.forwardRef(function SiOdysee({title = 'Odysee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOdysee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOhdear.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOhdear.tsx new file mode 100644 index 000000000..612532aeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOhdear.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOhdearProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3900'; + + const SiOhdear: IconType = React.forwardRef(function SiOhdear({title = 'Oh Dear', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOhdear as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkcupid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkcupid.tsx new file mode 100644 index 000000000..da86db833 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkcupid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOkcupidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0500BE'; + + const SiOkcupid: IconType = React.forwardRef(function SiOkcupid({title = 'okcupid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOkcupid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkta.tsx new file mode 100644 index 000000000..3b880df1b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOktaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007DC1'; + + const SiOkta: IconType = React.forwardRef(function SiOkta({title = 'Okta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOkta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkx.tsx new file mode 100644 index 000000000..ec0e7f118 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOkx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOkxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOkx: IconType = React.forwardRef(function SiOkx({title = 'OKX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOkx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOllama.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOllama.tsx new file mode 100644 index 000000000..42f1c9626 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOllama.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOllamaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOllama: IconType = React.forwardRef(function SiOllama({title = 'Ollama', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOllama as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOmadacloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOmadacloud.tsx new file mode 100644 index 000000000..01b1086f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOmadacloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOmadacloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#10C1D0'; + + const SiOmadacloud: IconType = React.forwardRef(function SiOmadacloud({title = 'Omada Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOmadacloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOmarchy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOmarchy.tsx new file mode 100644 index 000000000..7ba851008 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOmarchy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOmarchyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9ECE6A'; + + const SiOmarchy: IconType = React.forwardRef(function SiOmarchy({title = 'Omarchy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOmarchy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOneplus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOneplus.tsx new file mode 100644 index 000000000..b0646ee0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOneplus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOneplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5010C'; + + const SiOneplus: IconType = React.forwardRef(function SiOneplus({title = 'OnePlus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOneplus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnestream.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnestream.tsx new file mode 100644 index 000000000..7ddad775f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnestream.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOnestreamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOnestream: IconType = React.forwardRef(function SiOnestream({title = 'OneStream', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOnestream as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnlyfans.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnlyfans.tsx new file mode 100644 index 000000000..ff0b5f4e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnlyfans.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOnlyfansProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AFF0'; + + const SiOnlyfans: IconType = React.forwardRef(function SiOnlyfans({title = 'OnlyFans', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOnlyfans as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnlyoffice.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnlyoffice.tsx new file mode 100644 index 000000000..15b5bb49c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnlyoffice.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOnlyofficeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#444444'; + + const SiOnlyoffice: IconType = React.forwardRef(function SiOnlyoffice({title = 'ONLYOFFICE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOnlyoffice as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnnx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnnx.tsx new file mode 100644 index 000000000..1e4fa1f7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnnx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOnnxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005CED'; + + const SiOnnx: IconType = React.forwardRef(function SiOnnx({title = 'ONNX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOnnx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnstar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnstar.tsx new file mode 100644 index 000000000..539b55047 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOnstar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOnstarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003D7D'; + + const SiOnstar: IconType = React.forwardRef(function SiOnstar({title = 'OnStar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOnstar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpel.tsx new file mode 100644 index 000000000..b8e5e46e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7FF14'; + + const SiOpel: IconType = React.forwardRef(function SiOpel({title = 'Opel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpen3d.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpen3d.tsx new file mode 100644 index 000000000..d5e638428 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpen3d.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpen3dProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOpen3d: IconType = React.forwardRef(function SiOpen3d({title = 'Open3D', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpen3d as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenaccess.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenaccess.tsx new file mode 100644 index 000000000..b6de81027 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenaccess.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenaccessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F68212'; + + const SiOpenaccess: IconType = React.forwardRef(function SiOpenaccess({title = 'Open Access', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenaccess as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenaigym.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenaigym.tsx new file mode 100644 index 000000000..4afd96129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenaigym.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenaigymProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0081A5'; + + const SiOpenaigym: IconType = React.forwardRef(function SiOpenaigym({title = 'OpenAI Gym', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenaigym as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenapiinitiative.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenapiinitiative.tsx new file mode 100644 index 000000000..3e8bda038 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenapiinitiative.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenapiinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6BA539'; + + const SiOpenapiinitiative: IconType = React.forwardRef(function SiOpenapiinitiative({title = 'OpenAPI Initiative', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenapiinitiative as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbadges.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbadges.tsx new file mode 100644 index 000000000..9bae5bd06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbadges.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenbadgesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#073B5A'; + + const SiOpenbadges: IconType = React.forwardRef(function SiOpenbadges({title = 'Open Badges', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenbadges as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbsd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbsd.tsx new file mode 100644 index 000000000..c4817c7da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbsd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenbsdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2CA30'; + + const SiOpenbsd: IconType = React.forwardRef(function SiOpenbsd({title = 'OpenBSD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenbsd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbugbounty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbugbounty.tsx new file mode 100644 index 000000000..80be712b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenbugbounty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenbugbountyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F67909'; + + const SiOpenbugbounty: IconType = React.forwardRef(function SiOpenbugbounty({title = 'Open Bug Bounty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenbugbounty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencage.tsx new file mode 100644 index 000000000..8fc2c216a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpencageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A8865'; + + const SiOpencage: IconType = React.forwardRef(function SiOpencage({title = 'OpenCage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpencage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencollective.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencollective.tsx new file mode 100644 index 000000000..9c1d7a316 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencollective.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpencollectiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7FADF2'; + + const SiOpencollective: IconType = React.forwardRef(function SiOpencollective({title = 'Open Collective', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpencollective as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencontainersinitiative.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencontainersinitiative.tsx new file mode 100644 index 000000000..96bccd01f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencontainersinitiative.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpencontainersinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#262261'; + + const SiOpencontainersinitiative: IconType = React.forwardRef(function SiOpencontainersinitiative({title = 'Open Containers Initiative', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpencontainersinitiative as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencritic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencritic.tsx new file mode 100644 index 000000000..29f4fc044 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencritic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpencriticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC3E04'; + + const SiOpencritic: IconType = React.forwardRef(function SiOpencritic({title = 'OpenCritic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpencritic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencv.tsx new file mode 100644 index 000000000..fc416762f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpencv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpencvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C3EE8'; + + const SiOpencv: IconType = React.forwardRef(function SiOpencv({title = 'OpenCV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpencv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenfaas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenfaas.tsx new file mode 100644 index 000000000..ee188a4cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenfaas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenfaasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B5EE9'; + + const SiOpenfaas: IconType = React.forwardRef(function SiOpenfaas({title = 'OpenFaaS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenfaas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpengl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpengl.tsx new file mode 100644 index 000000000..35b034359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpengl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5586A4'; + + const SiOpengl: IconType = React.forwardRef(function SiOpengl({title = 'OpenGL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpengl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenhab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenhab.tsx new file mode 100644 index 000000000..54faa70a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenhab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenhabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E64A19'; + + const SiOpenhab: IconType = React.forwardRef(function SiOpenhab({title = 'openHAB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenhab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenid.tsx new file mode 100644 index 000000000..78a9bbea4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F78C40'; + + const SiOpenid: IconType = React.forwardRef(function SiOpenid({title = 'OpenID', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenjdk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenjdk.tsx new file mode 100644 index 000000000..4e95e962a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenjdk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenjdkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOpenjdk: IconType = React.forwardRef(function SiOpenjdk({title = 'OpenJDK', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenjdk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenjsfoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenjsfoundation.tsx new file mode 100644 index 000000000..0e09efdc3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenjsfoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenjsfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0075C9'; + + const SiOpenjsfoundation: IconType = React.forwardRef(function SiOpenjsfoundation({title = 'OpenJS Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenjsfoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenlayers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenlayers.tsx new file mode 100644 index 000000000..594567a37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenlayers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenlayersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F6B75'; + + const SiOpenlayers: IconType = React.forwardRef(function SiOpenlayers({title = 'Openlayers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenlayers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenmediavault.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenmediavault.tsx new file mode 100644 index 000000000..4b4d068db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenmediavault.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenmediavaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5DACDF'; + + const SiOpenmediavault: IconType = React.forwardRef(function SiOpenmediavault({title = 'openmediavault', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenmediavault as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenmined.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenmined.tsx new file mode 100644 index 000000000..43fa7cbcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenmined.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenminedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED986C'; + + const SiOpenmined: IconType = React.forwardRef(function SiOpenmined({title = 'OpenMined', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenmined as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpennebula.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpennebula.tsx new file mode 100644 index 000000000..a71dcc692 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpennebula.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpennebulaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0097C2'; + + const SiOpennebula: IconType = React.forwardRef(function SiOpennebula({title = 'OpenNebula', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpennebula as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenproject.tsx new file mode 100644 index 000000000..d2436bce3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0770B8'; + + const SiOpenproject: IconType = React.forwardRef(function SiOpenproject({title = 'OpenProject', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenrouter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenrouter.tsx new file mode 100644 index 000000000..d2591ef03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenrouter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenrouterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#94A3B8'; + + const SiOpenrouter: IconType = React.forwardRef(function SiOpenrouter({title = 'OpenRouter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenrouter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenscad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenscad.tsx new file mode 100644 index 000000000..79d54e964 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenscad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenscadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F9D72C'; + + const SiOpenscad: IconType = React.forwardRef(function SiOpenscad({title = 'OpenSCAD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenscad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensea.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensea.tsx new file mode 100644 index 000000000..ecae548f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensea.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenseaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2081E2'; + + const SiOpensea: IconType = React.forwardRef(function SiOpensea({title = 'OpenSea', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpensea as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensearch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensearch.tsx new file mode 100644 index 000000000..e9b88c864 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensearch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpensearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005EB8'; + + const SiOpensearch: IconType = React.forwardRef(function SiOpensearch({title = 'OpenSearch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpensearch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensourcehardware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensourcehardware.tsx new file mode 100644 index 000000000..26994c9ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensourcehardware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpensourcehardwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0099B0'; + + const SiOpensourcehardware: IconType = React.forwardRef(function SiOpensourcehardware({title = 'Open Source Hardware', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpensourcehardware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensourceinitiative.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensourceinitiative.tsx new file mode 100644 index 000000000..f6583885d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensourceinitiative.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpensourceinitiativeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DA639'; + + const SiOpensourceinitiative: IconType = React.forwardRef(function SiOpensourceinitiative({title = 'Open Source Initiative', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpensourceinitiative as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenssl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenssl.tsx new file mode 100644 index 000000000..04b02085e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenssl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpensslProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#721412'; + + const SiOpenssl: IconType = React.forwardRef(function SiOpenssl({title = 'OpenSSL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenssl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenstack.tsx new file mode 100644 index 000000000..df047be0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1944'; + + const SiOpenstack: IconType = React.forwardRef(function SiOpenstack({title = 'OpenStack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenstreetmap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenstreetmap.tsx new file mode 100644 index 000000000..9a68322aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenstreetmap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenstreetmapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7EBC6F'; + + const SiOpenstreetmap: IconType = React.forwardRef(function SiOpenstreetmap({title = 'OpenStreetMap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenstreetmap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensuse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensuse.tsx new file mode 100644 index 000000000..1ce9e2ed9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpensuse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpensuseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#73BA25'; + + const SiOpensuse: IconType = React.forwardRef(function SiOpensuse({title = 'openSUSE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpensuse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentelemetry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentelemetry.tsx new file mode 100644 index 000000000..1c6c63464 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentelemetry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpentelemetryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOpentelemetry: IconType = React.forwardRef(function SiOpentelemetry({title = 'OpenTelemetry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpentelemetry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentext.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentext.tsx new file mode 100644 index 000000000..ddb0f9427 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentext.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpentextProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOpentext: IconType = React.forwardRef(function SiOpentext({title = 'OpenText', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpentext as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentofu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentofu.tsx new file mode 100644 index 000000000..db6a2c246 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpentofu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpentofuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDA18'; + + const SiOpentofu: IconType = React.forwardRef(function SiOpentofu({title = 'OpenTofu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpentofu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenverse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenverse.tsx new file mode 100644 index 000000000..5727dc4ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenverse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE033'; + + const SiOpenverse: IconType = React.forwardRef(function SiOpenverse({title = 'Openverse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenverse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenvpn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenvpn.tsx new file mode 100644 index 000000000..cb034624d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenvpn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA7E20'; + + const SiOpenvpn: IconType = React.forwardRef(function SiOpenvpn({title = 'OpenVPN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenvpn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenwrt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenwrt.tsx new file mode 100644 index 000000000..bc9763db0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenwrt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenwrtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B5E2'; + + const SiOpenwrt: IconType = React.forwardRef(function SiOpenwrt({title = 'OpenWrt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenwrt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenzeppelin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenzeppelin.tsx new file mode 100644 index 000000000..71b9590bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenzeppelin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenzeppelinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E5EE4'; + + const SiOpenzeppelin: IconType = React.forwardRef(function SiOpenzeppelin({title = 'OpenZeppelin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenzeppelin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenzfs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenzfs.tsx new file mode 100644 index 000000000..95e8387d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpenzfs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpenzfsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A667F'; + + const SiOpenzfs: IconType = React.forwardRef(function SiOpenzfs({title = 'OpenZFS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpenzfs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpera.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpera.tsx new file mode 100644 index 000000000..35c31f207 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpera.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOperaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1B2D'; + + const SiOpera: IconType = React.forwardRef(function SiOpera({title = 'Opera', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpera as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOperagx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOperagx.tsx new file mode 100644 index 000000000..01111e56b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOperagx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOperagxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE2950'; + + const SiOperagx: IconType = React.forwardRef(function SiOperagx({title = 'Opera GX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOperagx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpnsense.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpnsense.tsx new file mode 100644 index 000000000..254a19359 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpnsense.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpnsenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E44A20'; + + const SiOpnsense: IconType = React.forwardRef(function SiOpnsense({title = 'OPNsense', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpnsense as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOppo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOppo.tsx new file mode 100644 index 000000000..e32d9d1ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOppo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOppoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D683D'; + + const SiOppo: IconType = React.forwardRef(function SiOppo({title = 'OPPO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOppo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpsgenie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpsgenie.tsx new file mode 100644 index 000000000..4bf616614 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpsgenie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpsgenieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#172B4D'; + + const SiOpsgenie: IconType = React.forwardRef(function SiOpsgenie({title = 'Opsgenie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpsgenie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpslevel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpslevel.tsx new file mode 100644 index 000000000..dca70466f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOpslevel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOpslevelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A53E0'; + + const SiOpslevel: IconType = React.forwardRef(function SiOpslevel({title = 'OpsLevel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOpslevel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOptimism.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOptimism.tsx new file mode 100644 index 000000000..c1b6e5400 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOptimism.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOptimismProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0420'; + + const SiOptimism: IconType = React.forwardRef(function SiOptimism({title = 'Optimism', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOptimism as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOptuna.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOptuna.tsx new file mode 100644 index 000000000..8d17a4a4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOptuna.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOptunaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002C76'; + + const SiOptuna: IconType = React.forwardRef(function SiOptuna({title = 'Optuna', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOptuna as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrange.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrange.tsx new file mode 100644 index 000000000..acafcc93d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrange.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOrangeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7900'; + + const SiOrange: IconType = React.forwardRef(function SiOrange({title = 'Orange', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOrange as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrcid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrcid.tsx new file mode 100644 index 000000000..06fa13c88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrcid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOrcidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A6CE39'; + + const SiOrcid: IconType = React.forwardRef(function SiOrcid({title = 'ORCID', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOrcid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOreilly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOreilly.tsx new file mode 100644 index 000000000..b1ed57cfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOreilly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOreillyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D3002D'; + + const SiOreilly: IconType = React.forwardRef(function SiOreilly({title = 'OReilly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOreilly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrg.tsx new file mode 100644 index 000000000..9f40df2b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOrgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#77AA99'; + + const SiOrg: IconType = React.forwardRef(function SiOrg({title = 'Org', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOrg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrganicmaps.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrganicmaps.tsx new file mode 100644 index 000000000..d18b49b76 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrganicmaps.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOrganicmapsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006C35'; + + const SiOrganicmaps: IconType = React.forwardRef(function SiOrganicmaps({title = 'Organic Maps', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOrganicmaps as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrigin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrigin.tsx new file mode 100644 index 000000000..8f0d1052e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOrigin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOriginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F56C2D'; + + const SiOrigin: IconType = React.forwardRef(function SiOrigin({title = 'Origin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOrigin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOry.tsx new file mode 100644 index 000000000..46f716f83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4F46E5'; + + const SiOry: IconType = React.forwardRef(function SiOry({title = 'Ory', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsano.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsano.tsx new file mode 100644 index 000000000..75767c0e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsano.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOsanoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7764FA'; + + const SiOsano: IconType = React.forwardRef(function SiOsano({title = 'Osano', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOsano as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsf.tsx new file mode 100644 index 000000000..436fded3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOsfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2CB9F1'; + + const SiOsf: IconType = React.forwardRef(function SiOsf({title = 'OSF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOsf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsgeo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsgeo.tsx new file mode 100644 index 000000000..3c983a792 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsgeo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOsgeoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4CB05B'; + + const SiOsgeo: IconType = React.forwardRef(function SiOsgeo({title = 'OSGeo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOsgeo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOshkosh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOshkosh.tsx new file mode 100644 index 000000000..d80b246c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOshkosh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOshkoshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6830F'; + + const SiOshkosh: IconType = React.forwardRef(function SiOshkosh({title = 'Oshkosh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOshkosh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsmand.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsmand.tsx new file mode 100644 index 000000000..814f3ed7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsmand.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOsmandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8800'; + + const SiOsmand: IconType = React.forwardRef(function SiOsmand({title = 'OsmAnd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOsmand as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsmc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsmc.tsx new file mode 100644 index 000000000..623e5fc7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsmc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOsmcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17394A'; + + const SiOsmc: IconType = React.forwardRef(function SiOsmc({title = 'OSMC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOsmc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsu.tsx new file mode 100644 index 000000000..8cde81ffd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOsu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOsuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF66AA'; + + const SiOsu: IconType = React.forwardRef(function SiOsu({title = 'osu!', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOsu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOtto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOtto.tsx new file mode 100644 index 000000000..9078288c2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOtto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOttoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D4021D'; + + const SiOtto: IconType = React.forwardRef(function SiOtto({title = 'Otto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOtto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOutline.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOutline.tsx new file mode 100644 index 000000000..86e27c246 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOutline.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOutlineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOutline: IconType = React.forwardRef(function SiOutline({title = 'Outline', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOutline as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOvercast.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOvercast.tsx new file mode 100644 index 000000000..7620a41b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOvercast.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOvercastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC7E0F'; + + const SiOvercast: IconType = React.forwardRef(function SiOvercast({title = 'Overcast', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOvercast as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOverleaf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOverleaf.tsx new file mode 100644 index 000000000..70e7538c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOverleaf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOverleafProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#47A141'; + + const SiOverleaf: IconType = React.forwardRef(function SiOverleaf({title = 'Overleaf', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOverleaf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOvh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOvh.tsx new file mode 100644 index 000000000..e458d8c40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOvh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOvhProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#123F6D'; + + const SiOvh: IconType = React.forwardRef(function SiOvh({title = 'OVH', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOvh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOwasp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOwasp.tsx new file mode 100644 index 000000000..cd6a508ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOwasp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOwaspProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiOwasp: IconType = React.forwardRef(function SiOwasp({title = 'OWASP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOwasp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOwncloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOwncloud.tsx new file mode 100644 index 000000000..3e1c68a06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOwncloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOwncloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#041E42'; + + const SiOwncloud: IconType = React.forwardRef(function SiOwncloud({title = 'ownCloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOwncloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOxc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOxc.tsx new file mode 100644 index 000000000..11cc53d29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOxc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOxcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00F7F1'; + + const SiOxc: IconType = React.forwardRef(function SiOxc({title = 'Oxc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOxc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOxygen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOxygen.tsx new file mode 100644 index 000000000..202f9bfbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOxygen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOxygenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3A209E'; + + const SiOxygen: IconType = React.forwardRef(function SiOxygen({title = 'Oxygen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOxygen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiOyo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOyo.tsx new file mode 100644 index 000000000..321f329f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiOyo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiOyoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE2E24'; + + const SiOyo: IconType = React.forwardRef(function SiOyo({title = 'OYO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiOyo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiP5dotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiP5dotjs.tsx new file mode 100644 index 000000000..9f965c2a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiP5dotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiP5dotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED225D'; + + const SiP5dotjs: IconType = React.forwardRef(function SiP5dotjs({title = 'p5.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiP5dotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPackagist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPackagist.tsx new file mode 100644 index 000000000..d51b6256d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPackagist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPackagistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F28D1A'; + + const SiPackagist: IconType = React.forwardRef(function SiPackagist({title = 'Packagist', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPackagist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPacker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPacker.tsx new file mode 100644 index 000000000..4c4b53a7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPacker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPackerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02A8EF'; + + const SiPacker: IconType = React.forwardRef(function SiPacker({title = 'Packer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPacker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPackt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPackt.tsx new file mode 100644 index 000000000..e82e7f5d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPackt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPacktProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F37143'; + + const SiPackt: IconType = React.forwardRef(function SiPackt({title = 'Packt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPackt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddle.tsx new file mode 100644 index 000000000..3baef9755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaddleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDDD35'; + + const SiPaddle: IconType = React.forwardRef(function SiPaddle({title = 'Paddle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaddle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddlepaddle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddlepaddle.tsx new file mode 100644 index 000000000..4e3c20dac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddlepaddle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaddlepaddleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0062B0'; + + const SiPaddlepaddle: IconType = React.forwardRef(function SiPaddlepaddle({title = 'PaddlePaddle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaddlepaddle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddypower.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddypower.tsx new file mode 100644 index 000000000..fc223bd20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaddypower.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaddypowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004833'; + + const SiPaddypower: IconType = React.forwardRef(function SiPaddypower({title = 'Paddy Power', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaddypower as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPadlet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPadlet.tsx new file mode 100644 index 000000000..09b279a85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPadlet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPadletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4081'; + + const SiPadlet: IconType = React.forwardRef(function SiPadlet({title = 'Padlet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPadlet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagekit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagekit.tsx new file mode 100644 index 000000000..01d09c856 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagekit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPagekitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiPagekit: IconType = React.forwardRef(function SiPagekit({title = 'Pagekit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPagekit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagerduty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagerduty.tsx new file mode 100644 index 000000000..04d7e7323 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagerduty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPagerdutyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#06AC38'; + + const SiPagerduty: IconType = React.forwardRef(function SiPagerduty({title = 'PagerDuty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPagerduty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagespeedinsights.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagespeedinsights.tsx new file mode 100644 index 000000000..a1c250fd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagespeedinsights.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPagespeedinsightsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiPagespeedinsights: IconType = React.forwardRef(function SiPagespeedinsights({title = 'PageSpeed Insights', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPagespeedinsights as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagseguro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagseguro.tsx new file mode 100644 index 000000000..08c4ecc20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPagseguro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPagseguroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC801'; + + const SiPagseguro: IconType = React.forwardRef(function SiPagseguro({title = 'PagSeguro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPagseguro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPalantir.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPalantir.tsx new file mode 100644 index 000000000..0771a7aef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPalantir.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPalantirProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#101113'; + + const SiPalantir: IconType = React.forwardRef(function SiPalantir({title = 'Palantir', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPalantir as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaloaltonetworks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaloaltonetworks.tsx new file mode 100644 index 000000000..2a8c0ef93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaloaltonetworks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaloaltonetworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F04E23'; + + const SiPaloaltonetworks: IconType = React.forwardRef(function SiPaloaltonetworks({title = 'Palo Alto Networks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaloaltonetworks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaloaltosoftware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaloaltosoftware.tsx new file mode 100644 index 000000000..551cc07e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaloaltosoftware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaloaltosoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#83DA77'; + + const SiPaloaltosoftware: IconType = React.forwardRef(function SiPaloaltosoftware({title = 'Palo Alto Software', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaloaltosoftware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPanasonic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPanasonic.tsx new file mode 100644 index 000000000..2551b760b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPanasonic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPanasonicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0049AB'; + + const SiPanasonic: IconType = React.forwardRef(function SiPanasonic({title = 'Panasonic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPanasonic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandas.tsx new file mode 100644 index 000000000..0c556791e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPandasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#150458'; + + const SiPandas: IconType = React.forwardRef(function SiPandas({title = 'pandas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPandas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandoc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandoc.tsx new file mode 100644 index 000000000..e14fe03d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandoc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPandocProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4093DA'; + + const SiPandoc: IconType = React.forwardRef(function SiPandoc({title = 'Pandoc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPandoc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandora.tsx new file mode 100644 index 000000000..611b81686 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPandora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPandoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#224099'; + + const SiPandora: IconType = React.forwardRef(function SiPandora({title = 'Pandora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPandora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPantheon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPantheon.tsx new file mode 100644 index 000000000..cdf9d0e84 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPantheon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPantheonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDC28'; + + const SiPantheon: IconType = React.forwardRef(function SiPantheon({title = 'Pantheon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPantheon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperlessngx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperlessngx.tsx new file mode 100644 index 000000000..5abdbfa6c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperlessngx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaperlessngxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17541F'; + + const SiPaperlessngx: IconType = React.forwardRef(function SiPaperlessngx({title = 'Paperless-ngx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaperlessngx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperspace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperspace.tsx new file mode 100644 index 000000000..72a6c70e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperspace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaperspaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPaperspace: IconType = React.forwardRef(function SiPaperspace({title = 'Paperspace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaperspace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperswithcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperswithcode.tsx new file mode 100644 index 000000000..16b2be80b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaperswithcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaperswithcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21CBCE'; + + const SiPaperswithcode: IconType = React.forwardRef(function SiPaperswithcode({title = 'Papers With Code', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaperswithcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiParadoxinteractive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParadoxinteractive.tsx new file mode 100644 index 000000000..d03c188df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParadoxinteractive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiParadoxinteractiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#101010'; + + const SiParadoxinteractive: IconType = React.forwardRef(function SiParadoxinteractive({title = 'Paradox Interactive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiParadoxinteractive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiParamountplus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParamountplus.tsx new file mode 100644 index 000000000..4ee158891 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParamountplus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiParamountplusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0064FF'; + + const SiParamountplus: IconType = React.forwardRef(function SiParamountplus({title = 'Paramount+', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiParamountplus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiParitysubstrate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParitysubstrate.tsx new file mode 100644 index 000000000..900a0499c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParitysubstrate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiParitysubstrateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#282828'; + + const SiParitysubstrate: IconType = React.forwardRef(function SiParitysubstrate({title = 'Parity Substrate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiParitysubstrate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiParrotsecurity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParrotsecurity.tsx new file mode 100644 index 000000000..e3dcdcc89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParrotsecurity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiParrotsecurityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#15E0ED'; + + const SiParrotsecurity: IconType = React.forwardRef(function SiParrotsecurity({title = 'Parrot Security', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiParrotsecurity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiParsedotly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParsedotly.tsx new file mode 100644 index 000000000..070f20d9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiParsedotly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiParsedotlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5BA745'; + + const SiParsedotly: IconType = React.forwardRef(function SiParsedotly({title = 'Parse.ly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiParsedotly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPassbolt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPassbolt.tsx new file mode 100644 index 000000000..d8aeb5123 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPassbolt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPassboltProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D40101'; + + const SiPassbolt: IconType = React.forwardRef(function SiPassbolt({title = 'Passbolt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPassbolt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPassport.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPassport.tsx new file mode 100644 index 000000000..2333a72f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPassport.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPassportProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34E27A'; + + const SiPassport: IconType = React.forwardRef(function SiPassport({title = 'Passport', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPassport as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPastebin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPastebin.tsx new file mode 100644 index 000000000..db03ad3bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPastebin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPastebinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02456C'; + + const SiPastebin: IconType = React.forwardRef(function SiPastebin({title = 'Pastebin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPastebin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPatreon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPatreon.tsx new file mode 100644 index 000000000..0dde81b02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPatreon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPatreonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPatreon: IconType = React.forwardRef(function SiPatreon({title = 'Patreon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPatreon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayback.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayback.tsx new file mode 100644 index 000000000..85ee6371d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayback.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaybackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003EB0'; + + const SiPayback: IconType = React.forwardRef(function SiPayback({title = 'PAYBACK', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPayback as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaychex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaychex.tsx new file mode 100644 index 000000000..11b2e4cea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaychex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaychexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004B8D'; + + const SiPaychex: IconType = React.forwardRef(function SiPaychex({title = 'Paychex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaychex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayhip.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayhip.tsx new file mode 100644 index 000000000..740d3a1cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayhip.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPayhipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C6AC4'; + + const SiPayhip: IconType = React.forwardRef(function SiPayhip({title = 'Payhip', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPayhip as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayloadcms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayloadcms.tsx new file mode 100644 index 000000000..e2c8233b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayloadcms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPayloadcmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPayloadcms: IconType = React.forwardRef(function SiPayloadcms({title = 'Payload CMS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPayloadcms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayoneer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayoneer.tsx new file mode 100644 index 000000000..c28b78414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPayoneer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPayoneerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4800'; + + const SiPayoneer: IconType = React.forwardRef(function SiPayoneer({title = 'Payoneer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPayoneer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaypal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaypal.tsx new file mode 100644 index 000000000..3df807ebc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaypal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaypalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002991'; + + const SiPaypal: IconType = React.forwardRef(function SiPaypal({title = 'PayPal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaypal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaysafe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaysafe.tsx new file mode 100644 index 000000000..04eef2e42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaysafe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaysafeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A28FF'; + + const SiPaysafe: IconType = React.forwardRef(function SiPaysafe({title = 'Paysafe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaysafe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaytm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaytm.tsx new file mode 100644 index 000000000..63bc1dfc6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPaytm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPaytmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#20336B'; + + const SiPaytm: IconType = React.forwardRef(function SiPaytm({title = 'Paytm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPaytm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPcgamingwiki.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPcgamingwiki.tsx new file mode 100644 index 000000000..684dcc77b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPcgamingwiki.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPcgamingwikiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#556DB3'; + + const SiPcgamingwiki: IconType = React.forwardRef(function SiPcgamingwiki({title = 'PCGamingWiki', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPcgamingwiki as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPdm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPdm.tsx new file mode 100644 index 000000000..294fc8912 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPdm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPdmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AC75D7'; + + const SiPdm: IconType = React.forwardRef(function SiPdm({title = 'PDM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPdm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPdq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPdq.tsx new file mode 100644 index 000000000..66667bbce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPdq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPdqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiPdq: IconType = React.forwardRef(function SiPdq({title = 'PDQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPdq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeakdesign.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeakdesign.tsx new file mode 100644 index 000000000..667a07d7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeakdesign.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPeakdesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C1B1C'; + + const SiPeakdesign: IconType = React.forwardRef(function SiPeakdesign({title = 'Peak Design', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPeakdesign as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPearson.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPearson.tsx new file mode 100644 index 000000000..5038a7437 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPearson.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPearsonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPearson: IconType = React.forwardRef(function SiPearson({title = 'Pearson', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPearson as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeerlist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeerlist.tsx new file mode 100644 index 000000000..033b2de88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeerlist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPeerlistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AA45'; + + const SiPeerlist: IconType = React.forwardRef(function SiPeerlist({title = 'Peerlist', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPeerlist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeertube.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeertube.tsx new file mode 100644 index 000000000..03bdfbbad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeertube.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPeertubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F1680D'; + + const SiPeertube: IconType = React.forwardRef(function SiPeertube({title = 'PeerTube', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPeertube as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPegasusairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPegasusairlines.tsx new file mode 100644 index 000000000..863eeecae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPegasusairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPegasusairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDC43E'; + + const SiPegasusairlines: IconType = React.forwardRef(function SiPegasusairlines({title = 'Pegasus Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPegasusairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPelican.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPelican.tsx new file mode 100644 index 000000000..32bd81522 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPelican.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPelicanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14A0C4'; + + const SiPelican: IconType = React.forwardRef(function SiPelican({title = 'Pelican', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPelican as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeloton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeloton.tsx new file mode 100644 index 000000000..16954e3c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeloton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPelotonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#181A1D'; + + const SiPeloton: IconType = React.forwardRef(function SiPeloton({title = 'Peloton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPeloton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPenny.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPenny.tsx new file mode 100644 index 000000000..277162f49 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPenny.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPennyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD1414'; + + const SiPenny: IconType = React.forwardRef(function SiPenny({title = 'Penny', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPenny as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPenpot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPenpot.tsx new file mode 100644 index 000000000..40222e97a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPenpot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPenpotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPenpot: IconType = React.forwardRef(function SiPenpot({title = 'Penpot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPenpot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPercy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPercy.tsx new file mode 100644 index 000000000..106ab24c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPercy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPercyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9E66BF'; + + const SiPercy: IconType = React.forwardRef(function SiPercy({title = 'Percy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPercy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerforce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerforce.tsx new file mode 100644 index 000000000..51ff6f50b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerforce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPerforceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4C00FF'; + + const SiPerforce: IconType = React.forwardRef(function SiPerforce({title = 'Perforce', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPerforce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerl.tsx new file mode 100644 index 000000000..bf7415953 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPerlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0073A1'; + + const SiPerl: IconType = React.forwardRef(function SiPerl({title = 'Perl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPerl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerplexity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerplexity.tsx new file mode 100644 index 000000000..9d6f77a6a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPerplexity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPerplexityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1FB8CD'; + + const SiPerplexity: IconType = React.forwardRef(function SiPerplexity({title = 'Perplexity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPerplexity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPersistent.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPersistent.tsx new file mode 100644 index 000000000..e07e74c3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPersistent.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPersistentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD5F07'; + + const SiPersistent: IconType = React.forwardRef(function SiPersistent({title = 'Persistent', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPersistent as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPersonio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPersonio.tsx new file mode 100644 index 000000000..ed702939a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPersonio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPersonioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPersonio: IconType = React.forwardRef(function SiPersonio({title = 'Personio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPersonio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPetsathome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPetsathome.tsx new file mode 100644 index 000000000..bb30a02f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPetsathome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPetsathomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00AA28'; + + const SiPetsathome: IconType = React.forwardRef(function SiPetsathome({title = 'Pets at Home', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPetsathome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeugeot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeugeot.tsx new file mode 100644 index 000000000..021a166bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPeugeot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPeugeotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPeugeot: IconType = React.forwardRef(function SiPeugeot({title = 'Peugeot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPeugeot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPexels.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPexels.tsx new file mode 100644 index 000000000..09f596d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPexels.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPexelsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#05A081'; + + const SiPexels: IconType = React.forwardRef(function SiPexels({title = 'Pexels', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPexels as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPfsense.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPfsense.tsx new file mode 100644 index 000000000..1c27ecaea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPfsense.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPfsenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiPfsense: IconType = React.forwardRef(function SiPfsense({title = 'pfSense', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPfsense as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhabricator.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhabricator.tsx new file mode 100644 index 000000000..293fea6b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhabricator.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhabricatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4A5F88'; + + const SiPhabricator: IconType = React.forwardRef(function SiPhabricator({title = 'Phabricator', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhabricator as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhilipshue.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhilipshue.tsx new file mode 100644 index 000000000..603e8f616 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhilipshue.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhilipshueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0065D3'; + + const SiPhilipshue: IconType = React.forwardRef(function SiPhilipshue({title = 'Philips Hue', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhilipshue as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhoenixframework.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhoenixframework.tsx new file mode 100644 index 000000000..932193884 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhoenixframework.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhoenixframeworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD4F00'; + + const SiPhoenixframework: IconType = React.forwardRef(function SiPhoenixframework({title = 'Phoenix Framework', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhoenixframework as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhonepe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhonepe.tsx new file mode 100644 index 000000000..fdee0073d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhonepe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhonepeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5F259F'; + + const SiPhonepe: IconType = React.forwardRef(function SiPhonepe({title = 'PhonePe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhonepe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhosphoricons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhosphoricons.tsx new file mode 100644 index 000000000..091530d56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhosphoricons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhosphoriconsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C402B'; + + const SiPhosphoricons: IconType = React.forwardRef(function SiPhosphoricons({title = 'Phosphor Icons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhosphoricons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotobucket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotobucket.tsx new file mode 100644 index 000000000..ecd801ece --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotobucket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhotobucketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C47CB'; + + const SiPhotobucket: IconType = React.forwardRef(function SiPhotobucket({title = 'Photobucket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhotobucket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotocrowd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotocrowd.tsx new file mode 100644 index 000000000..18043475c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotocrowd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhotocrowdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DAD4B'; + + const SiPhotocrowd: IconType = React.forwardRef(function SiPhotocrowd({title = 'Photocrowd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhotocrowd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhoton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhoton.tsx new file mode 100644 index 000000000..92d55667d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhoton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhotonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004480'; + + const SiPhoton: IconType = React.forwardRef(function SiPhoton({title = 'Photon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhoton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotopea.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotopea.tsx new file mode 100644 index 000000000..466b13565 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhotopea.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhotopeaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18A497'; + + const SiPhotopea: IconType = React.forwardRef(function SiPhotopea({title = 'Photopea', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhotopea as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhp.tsx new file mode 100644 index 000000000..536051c7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#777BB4'; + + const SiPhp: IconType = React.forwardRef(function SiPhp({title = 'PHP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpbb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpbb.tsx new file mode 100644 index 000000000..6ea62d7a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpbb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhpbbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009BDF'; + + const SiPhpbb: IconType = React.forwardRef(function SiPhpbb({title = 'phpBB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhpbb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpmyadmin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpmyadmin.tsx new file mode 100644 index 000000000..9b2561ce3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpmyadmin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhpmyadminProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6C78AF'; + + const SiPhpmyadmin: IconType = React.forwardRef(function SiPhpmyadmin({title = 'phpMyAdmin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhpmyadmin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpstorm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpstorm.tsx new file mode 100644 index 000000000..ddd6d47dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPhpstorm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPhpstormProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPhpstorm: IconType = React.forwardRef(function SiPhpstorm({title = 'PhpStorm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPhpstorm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiaggiogroup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiaggiogroup.tsx new file mode 100644 index 000000000..23c87b783 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiaggiogroup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPiaggiogroupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPiaggiogroup: IconType = React.forwardRef(function SiPiaggiogroup({title = 'Piaggio Group', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPiaggiogroup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiapro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiapro.tsx new file mode 100644 index 000000000..7fe71181c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiapro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPiaproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E4007B'; + + const SiPiapro: IconType = React.forwardRef(function SiPiapro({title = 'Piapro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPiapro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicardsurgeles.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicardsurgeles.tsx new file mode 100644 index 000000000..4b9946b11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicardsurgeles.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicardsurgelesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D4999'; + + const SiPicardsurgeles: IconType = React.forwardRef(function SiPicardsurgeles({title = 'Picard Surgelés', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicardsurgeles as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicartodottv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicartodottv.tsx new file mode 100644 index 000000000..30c712340 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicartodottv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicartodottvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1DA456'; + + const SiPicartodottv: IconType = React.forwardRef(function SiPicartodottv({title = 'Picarto.TV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicartodottv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicnic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicnic.tsx new file mode 100644 index 000000000..8328056c3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicnic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicnicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E1171E'; + + const SiPicnic: IconType = React.forwardRef(function SiPicnic({title = 'Picnic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicnic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicpay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicpay.tsx new file mode 100644 index 000000000..fac822e5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicpay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21C25E'; + + const SiPicpay: IconType = React.forwardRef(function SiPicpay({title = 'PicPay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicpay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicrew.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicrew.tsx new file mode 100644 index 000000000..ea91a6c5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicrew.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicrewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFBD16'; + + const SiPicrew: IconType = React.forwardRef(function SiPicrew({title = 'Picrew', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicrew as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicsart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicsart.tsx new file mode 100644 index 000000000..b78caaed5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicsart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicsartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C209C1'; + + const SiPicsart: IconType = React.forwardRef(function SiPicsart({title = 'Picsart', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicsart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicxy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicxy.tsx new file mode 100644 index 000000000..3f2e1b3a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPicxy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPicxyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E3192'; + + const SiPicxy: IconType = React.forwardRef(function SiPicxy({title = 'Picxy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPicxy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPihole.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPihole.tsx new file mode 100644 index 000000000..e761a76e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPihole.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPiholeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#96060C'; + + const SiPihole: IconType = React.forwardRef(function SiPihole({title = 'Pi-hole', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPihole as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPimcore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPimcore.tsx new file mode 100644 index 000000000..149d7a382 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPimcore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPimcoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6428B4'; + + const SiPimcore: IconType = React.forwardRef(function SiPimcore({title = 'Pimcore', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPimcore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinboard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinboard.tsx new file mode 100644 index 000000000..80d32f016 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinboard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPinboardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0000FF'; + + const SiPinboard: IconType = React.forwardRef(function SiPinboard({title = 'Pinboard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPinboard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinescript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinescript.tsx new file mode 100644 index 000000000..7b7d12d5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinescript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPinescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B453'; + + const SiPinescript: IconType = React.forwardRef(function SiPinescript({title = 'Pine Script', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPinescript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinetwork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinetwork.tsx new file mode 100644 index 000000000..7fc01f7ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinetwork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPinetworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4AF47'; + + const SiPinetwork: IconType = React.forwardRef(function SiPinetwork({title = 'Pi Network', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPinetwork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPingdom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPingdom.tsx new file mode 100644 index 000000000..4b9cded6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPingdom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPingdomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFF000'; + + const SiPingdom: IconType = React.forwardRef(function SiPingdom({title = 'Pingdom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPingdom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinia.tsx new file mode 100644 index 000000000..a2ff23418 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPiniaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD859'; + + const SiPinia: IconType = React.forwardRef(function SiPinia({title = 'Pinia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPinia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPino.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPino.tsx new file mode 100644 index 000000000..dde2b4b2b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPino.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#687634'; + + const SiPino: IconType = React.forwardRef(function SiPino({title = 'pino', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPino as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinterest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinterest.tsx new file mode 100644 index 000000000..6edd73572 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPinterest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPinterestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BD081C'; + + const SiPinterest: IconType = React.forwardRef(function SiPinterest({title = 'Pinterest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPinterest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPioneerdj.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPioneerdj.tsx new file mode 100644 index 000000000..b3185f79d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPioneerdj.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPioneerdjProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1928'; + + const SiPioneerdj: IconType = React.forwardRef(function SiPioneerdj({title = 'Pioneer DJ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPioneerdj as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPipecat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPipecat.tsx new file mode 100644 index 000000000..ae2c713f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPipecat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPipecatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPipecat: IconType = React.forwardRef(function SiPipecat({title = 'Pipecat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPipecat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiped.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiped.tsx new file mode 100644 index 000000000..1e77da7c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiped.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPipedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F84330'; + + const SiPiped: IconType = React.forwardRef(function SiPiped({title = 'Piped', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPiped as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPipx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPipx.tsx new file mode 100644 index 000000000..c6be6f7d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPipx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPipxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2CFFAA'; + + const SiPipx: IconType = React.forwardRef(function SiPipx({title = 'pipx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPipx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPivotaltracker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPivotaltracker.tsx new file mode 100644 index 000000000..47f290e3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPivotaltracker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPivotaltrackerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#517A9E'; + + const SiPivotaltracker: IconType = React.forwardRef(function SiPivotaltracker({title = 'Pivotal Tracker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPivotaltracker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiwigo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiwigo.tsx new file mode 100644 index 000000000..bbf9c6431 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPiwigo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPiwigoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7700'; + + const SiPiwigo: IconType = React.forwardRef(function SiPiwigo({title = 'Piwigo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPiwigo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPix.tsx new file mode 100644 index 000000000..8656e19cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#77B6A8'; + + const SiPix: IconType = React.forwardRef(function SiPix({title = 'Pix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixabay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixabay.tsx new file mode 100644 index 000000000..4c0381d70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixabay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPixabayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#191B26'; + + const SiPixabay: IconType = React.forwardRef(function SiPixabay({title = 'Pixabay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPixabay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixelfed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixelfed.tsx new file mode 100644 index 000000000..c5021d435 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixelfed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPixelfedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6366F1'; + + const SiPixelfed: IconType = React.forwardRef(function SiPixelfed({title = 'Pixelfed', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPixelfed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixiv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixiv.tsx new file mode 100644 index 000000000..24f6fcb2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixiv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPixivProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0096FA'; + + const SiPixiv: IconType = React.forwardRef(function SiPixiv({title = 'pixiv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPixiv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixlr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixlr.tsx new file mode 100644 index 000000000..995adfe5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPixlr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPixlrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3EBBDF'; + + const SiPixlr: IconType = React.forwardRef(function SiPixlr({title = 'Pixlr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPixlr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPkgsrc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPkgsrc.tsx new file mode 100644 index 000000000..8ecd559fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPkgsrc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPkgsrcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiPkgsrc: IconType = React.forwardRef(function SiPkgsrc({title = 'pkgsrc', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPkgsrc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlane.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlane.tsx new file mode 100644 index 000000000..041e4f709 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlane.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#121212'; + + const SiPlane: IconType = React.forwardRef(function SiPlane({title = 'Plane', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlane as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlanet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlanet.tsx new file mode 100644 index 000000000..971a6dd4a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlanet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlanetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009DB1'; + + const SiPlanet: IconType = React.forwardRef(function SiPlanet({title = 'Planet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlanet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlanetscale.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlanetscale.tsx new file mode 100644 index 000000000..3b0670c74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlanetscale.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlanetscaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPlanetscale: IconType = React.forwardRef(function SiPlanetscale({title = 'PlanetScale', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlanetscale as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlangrid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlangrid.tsx new file mode 100644 index 000000000..c0e272c5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlangrid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlangridProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0085DE'; + + const SiPlangrid: IconType = React.forwardRef(function SiPlangrid({title = 'PlanGrid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlangrid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatformdotsh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatformdotsh.tsx new file mode 100644 index 000000000..6f7a73a79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatformdotsh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlatformdotshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A182A'; + + const SiPlatformdotsh: IconType = React.forwardRef(function SiPlatformdotsh({title = 'Platform.sh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlatformdotsh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatformio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatformio.tsx new file mode 100644 index 000000000..57ccd75e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatformio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlatformioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5822A'; + + const SiPlatformio: IconType = React.forwardRef(function SiPlatformio({title = 'PlatformIO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlatformio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatzi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatzi.tsx new file mode 100644 index 000000000..78e7f4dcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlatzi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlatziProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#98CA3F'; + + const SiPlatzi: IconType = React.forwardRef(function SiPlatzi({title = 'Platzi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlatzi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlausibleanalytics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlausibleanalytics.tsx new file mode 100644 index 000000000..44e798dee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlausibleanalytics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlausibleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5850EC'; + + const SiPlausibleanalytics: IconType = React.forwardRef(function SiPlausibleanalytics({title = 'Plausible Analytics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlausibleanalytics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaycanvas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaycanvas.tsx new file mode 100644 index 000000000..0728ebb8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaycanvas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaycanvasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E05F2C'; + + const SiPlaycanvas: IconType = React.forwardRef(function SiPlaycanvas({title = 'PlayCanvas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaycanvas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlayerdotme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlayerdotme.tsx new file mode 100644 index 000000000..134ac1696 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlayerdotme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlayerdotmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C0379A'; + + const SiPlayerdotme: IconType = React.forwardRef(function SiPlayerdotme({title = 'Player.me', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlayerdotme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlayerfm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlayerfm.tsx new file mode 100644 index 000000000..cd5508c93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlayerfm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlayerfmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C8122A'; + + const SiPlayerfm: IconType = React.forwardRef(function SiPlayerfm({title = 'Player FM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlayerfm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation.tsx new file mode 100644 index 000000000..c2f6a9a29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0070D1'; + + const SiPlaystation: IconType = React.forwardRef(function SiPlaystation({title = 'PlayStation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation2.tsx new file mode 100644 index 000000000..12b2cc45f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystation2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003791'; + + const SiPlaystation2: IconType = React.forwardRef(function SiPlaystation2({title = 'PlayStation 2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystation2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation3.tsx new file mode 100644 index 000000000..868caddfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystation3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003791'; + + const SiPlaystation3: IconType = React.forwardRef(function SiPlaystation3({title = 'PlayStation 3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystation3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation4.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation4.tsx new file mode 100644 index 000000000..21aaee3fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation4.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystation4Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003791'; + + const SiPlaystation4: IconType = React.forwardRef(function SiPlaystation4({title = 'PlayStation 4', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystation4 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation5.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation5.tsx new file mode 100644 index 000000000..22bf2fc57 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystation5.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystation5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003791'; + + const SiPlaystation5: IconType = React.forwardRef(function SiPlaystation5({title = 'PlayStation 5', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystation5 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystationportable.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystationportable.tsx new file mode 100644 index 000000000..c5317ba20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystationportable.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystationportableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003791'; + + const SiPlaystationportable: IconType = React.forwardRef(function SiPlaystationportable({title = 'PlayStation Portable', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystationportable as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystationvita.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystationvita.tsx new file mode 100644 index 000000000..d9d572623 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlaystationvita.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlaystationvitaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003791'; + + const SiPlaystationvita: IconType = React.forwardRef(function SiPlaystationvita({title = 'PlayStation Vita', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlaystationvita as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPleroma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPleroma.tsx new file mode 100644 index 000000000..f06931e9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPleroma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPleromaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FBA457'; + + const SiPleroma: IconType = React.forwardRef(function SiPleroma({title = 'Pleroma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPleroma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlesk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlesk.tsx new file mode 100644 index 000000000..ab6867a5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlesk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPleskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#52BBE6'; + + const SiPlesk: IconType = React.forwardRef(function SiPlesk({title = 'Plesk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlesk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlex.tsx new file mode 100644 index 000000000..783c41619 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EBAF00'; + + const SiPlex: IconType = React.forwardRef(function SiPlex({title = 'Plex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlotly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlotly.tsx new file mode 100644 index 000000000..b59424450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlotly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlotlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7A76FF'; + + const SiPlotly: IconType = React.forwardRef(function SiPlotly({title = 'Plotly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlotly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlume.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlume.tsx new file mode 100644 index 000000000..e7bf80f94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlume.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlumeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7C5CDF'; + + const SiPlume: IconType = React.forwardRef(function SiPlume({title = 'Plume', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlume as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPluralsight.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPluralsight.tsx new file mode 100644 index 000000000..cc3d8b907 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPluralsight.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPluralsightProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15B2A'; + + const SiPluralsight: IconType = React.forwardRef(function SiPluralsight({title = 'Pluralsight', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPluralsight as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlurk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlurk.tsx new file mode 100644 index 000000000..aa3779fd1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPlurk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPlurkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF574D'; + + const SiPlurk: IconType = React.forwardRef(function SiPlurk({title = 'Plurk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPlurk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPm2.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPm2.tsx new file mode 100644 index 000000000..778e7670b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPm2.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPm2Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2B037A'; + + const SiPm2: IconType = React.forwardRef(function SiPm2({title = 'PM2', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPm2 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPnpm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPnpm.tsx new file mode 100644 index 000000000..6338d49c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPnpm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPnpmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F69220'; + + const SiPnpm: IconType = React.forwardRef(function SiPnpm({title = 'pnpm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPnpm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPocketbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPocketbase.tsx new file mode 100644 index 000000000..700535ca1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPocketbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPocketbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B8DBE4'; + + const SiPocketbase: IconType = React.forwardRef(function SiPocketbase({title = 'PocketBase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPocketbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPocketcasts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPocketcasts.tsx new file mode 100644 index 000000000..ec26d567c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPocketcasts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPocketcastsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F43E37'; + + const SiPocketcasts: IconType = React.forwardRef(function SiPocketcasts({title = 'Pocket Casts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPocketcasts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodcastaddict.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodcastaddict.tsx new file mode 100644 index 000000000..de58da6a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodcastaddict.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPodcastaddictProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4842D'; + + const SiPodcastaddict: IconType = React.forwardRef(function SiPodcastaddict({title = 'Podcast Addict', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPodcastaddict as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodcastindex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodcastindex.tsx new file mode 100644 index 000000000..9f24f39b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodcastindex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPodcastindexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F90000'; + + const SiPodcastindex: IconType = React.forwardRef(function SiPodcastindex({title = 'Podcast Index', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPodcastindex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodman.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodman.tsx new file mode 100644 index 000000000..386f3194a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPodman.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPodmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#892CA0'; + + const SiPodman: IconType = React.forwardRef(function SiPodman({title = 'Podman', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPodman as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoe.tsx new file mode 100644 index 000000000..06283076f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPoeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5D5CDE'; + + const SiPoe: IconType = React.forwardRef(function SiPoe({title = 'Poe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPoe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoetry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoetry.tsx new file mode 100644 index 000000000..c4f313f36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoetry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPoetryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#60A5FA'; + + const SiPoetry: IconType = React.forwardRef(function SiPoetry({title = 'Poetry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPoetry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolars.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolars.tsx new file mode 100644 index 000000000..d8c254d5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolars.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolarsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0075FF'; + + const SiPolars: IconType = React.forwardRef(function SiPolars({title = 'Polars', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPolars as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolestar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolestar.tsx new file mode 100644 index 000000000..d03732ed6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolestar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolestarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPolestar: IconType = React.forwardRef(function SiPolestar({title = 'Polestar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPolestar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolkadot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolkadot.tsx new file mode 100644 index 000000000..6efbe3237 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolkadot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolkadotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6007A'; + + const SiPolkadot: IconType = React.forwardRef(function SiPolkadot({title = 'Polkadot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPolkadot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoly.tsx new file mode 100644 index 000000000..2f4d993c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPoly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB3C00'; + + const SiPoly: IconType = React.forwardRef(function SiPoly({title = 'Poly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPoly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolygon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolygon.tsx new file mode 100644 index 000000000..208328605 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolygon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolygonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7B3FE4'; + + const SiPolygon: IconType = React.forwardRef(function SiPolygon({title = 'Polygon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPolygon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolymerproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolymerproject.tsx new file mode 100644 index 000000000..2c4ac6c8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolymerproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolymerprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4470'; + + const SiPolymerproject: IconType = React.forwardRef(function SiPolymerproject({title = 'Polymer Project', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPolymerproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolywork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolywork.tsx new file mode 100644 index 000000000..11118719a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPolywork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPolyworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#543DE0'; + + const SiPolywork: IconType = React.forwardRef(function SiPolywork({title = 'Polywork', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPolywork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPomerium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPomerium.tsx new file mode 100644 index 000000000..8c3e4bccb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPomerium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPomeriumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6F43E7'; + + const SiPomerium: IconType = React.forwardRef(function SiPomerium({title = 'Pomerium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPomerium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPond5.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPond5.tsx new file mode 100644 index 000000000..8b2d8efb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPond5.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPond5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPond5: IconType = React.forwardRef(function SiPond5({title = 'Pond5', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPond5 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPopos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPopos.tsx new file mode 100644 index 000000000..982df2169 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPopos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPoposProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#48B9C7'; + + const SiPopos: IconType = React.forwardRef(function SiPopos({title = 'Pop!_OS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPopos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPorkbun.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPorkbun.tsx new file mode 100644 index 000000000..8c2bad8e9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPorkbun.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPorkbunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF7878'; + + const SiPorkbun: IconType = React.forwardRef(function SiPorkbun({title = 'Porkbun', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPorkbun as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPorsche.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPorsche.tsx new file mode 100644 index 000000000..2c797848e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPorsche.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPorscheProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B12B28'; + + const SiPorsche: IconType = React.forwardRef(function SiPorsche({title = 'Porsche', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPorsche as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortableappsdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortableappsdotcom.tsx new file mode 100644 index 000000000..58884c0a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortableappsdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPortableappsdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#818F95'; + + const SiPortableappsdotcom: IconType = React.forwardRef(function SiPortableappsdotcom({title = 'PortableApps.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPortableappsdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortainer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortainer.tsx new file mode 100644 index 000000000..762f79dcc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortainer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPortainerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13BEF9'; + + const SiPortainer: IconType = React.forwardRef(function SiPortainer({title = 'Portainer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPortainer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortswigger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortswigger.tsx new file mode 100644 index 000000000..3dea63259 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPortswigger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPortswiggerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6633'; + + const SiPortswigger: IconType = React.forwardRef(function SiPortswigger({title = 'PortSwigger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPortswigger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPosit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPosit.tsx new file mode 100644 index 000000000..2428c46f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPosit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPositProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#447099'; + + const SiPosit: IconType = React.forwardRef(function SiPosit({title = 'Posit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPosit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostcss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostcss.tsx new file mode 100644 index 000000000..0681408c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostcss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPostcssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD3A0A'; + + const SiPostcss: IconType = React.forwardRef(function SiPostcss({title = 'PostCSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPostcss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostgresql.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostgresql.tsx new file mode 100644 index 000000000..50bfc57db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostgresql.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPostgresqlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4169E1'; + + const SiPostgresql: IconType = React.forwardRef(function SiPostgresql({title = 'PostgreSQL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPostgresql as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPosthog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPosthog.tsx new file mode 100644 index 000000000..6615fb35f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPosthog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPosthogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPosthog: IconType = React.forwardRef(function SiPosthog({title = 'PostHog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPosthog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostiz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostiz.tsx new file mode 100644 index 000000000..bb8ecf0e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostiz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPostizProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#612BD3'; + + const SiPostiz: IconType = React.forwardRef(function SiPostiz({title = 'Postiz', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPostiz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostman.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostman.tsx new file mode 100644 index 000000000..07c60e350 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostman.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPostmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6C37'; + + const SiPostman: IconType = React.forwardRef(function SiPostman({title = 'Postman', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPostman as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostmates.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostmates.tsx new file mode 100644 index 000000000..6bbbc0b92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPostmates.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPostmatesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDF18'; + + const SiPostmates: IconType = React.forwardRef(function SiPostmates({title = 'Postmates', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPostmates as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPowers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPowers.tsx new file mode 100644 index 000000000..475aa0334 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPowers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPowersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E74536'; + + const SiPowers: IconType = React.forwardRef(function SiPowers({title = 'POWERS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPowers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrdotco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrdotco.tsx new file mode 100644 index 000000000..52616895b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrdotco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrdotcoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0080FF'; + + const SiPrdotco: IconType = React.forwardRef(function SiPrdotco({title = 'pr.co', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrdotco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPreact.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPreact.tsx new file mode 100644 index 000000000..2ec88da23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPreact.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPreactProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#673AB8'; + + const SiPreact: IconType = React.forwardRef(function SiPreact({title = 'Preact', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPreact as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrecommit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrecommit.tsx new file mode 100644 index 000000000..f5df7ef4c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrecommit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrecommitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAB040'; + + const SiPrecommit: IconType = React.forwardRef(function SiPrecommit({title = 'pre-commit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrecommit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrefect.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrefect.tsx new file mode 100644 index 000000000..8ab8ec34f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrefect.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrefectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#070E10'; + + const SiPrefect: IconType = React.forwardRef(function SiPrefect({title = 'Prefect', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrefect as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrek.tsx new file mode 100644 index 000000000..4c205dea9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F54327'; + + const SiPrek: IconType = React.forwardRef(function SiPrek({title = 'prek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPremid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPremid.tsx new file mode 100644 index 000000000..6dc017d03 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPremid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPremidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7289DA'; + + const SiPremid: IconType = React.forwardRef(function SiPremid({title = 'PreMiD', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPremid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPremierleague.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPremierleague.tsx new file mode 100644 index 000000000..a1930254b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPremierleague.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPremierleagueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#360D3A'; + + const SiPremierleague: IconType = React.forwardRef(function SiPremierleague({title = 'Premier League', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPremierleague as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrepbytes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrepbytes.tsx new file mode 100644 index 000000000..f6de1ab48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrepbytes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrepbytesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A87C6'; + + const SiPrepbytes: IconType = React.forwardRef(function SiPrepbytes({title = 'PrepBytes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrepbytes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrestashop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrestashop.tsx new file mode 100644 index 000000000..7d444d2cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrestashop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrestashopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DF0067'; + + const SiPrestashop: IconType = React.forwardRef(function SiPrestashop({title = 'PrestaShop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrestashop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPresto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPresto.tsx new file mode 100644 index 000000000..d58b636d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPresto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrestoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5890FF'; + + const SiPresto: IconType = React.forwardRef(function SiPresto({title = 'Presto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPresto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrettier.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrettier.tsx new file mode 100644 index 000000000..e2128e50e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrettier.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrettierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7B93E'; + + const SiPrettier: IconType = React.forwardRef(function SiPrettier({title = 'Prettier', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrettier as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPretzel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPretzel.tsx new file mode 100644 index 000000000..ffcc9b00e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPretzel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPretzelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BB3A4'; + + const SiPretzel: IconType = React.forwardRef(function SiPretzel({title = 'Pretzel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPretzel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrevention.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrevention.tsx new file mode 100644 index 000000000..5897d05f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrevention.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPreventionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#44C1C5'; + + const SiPrevention: IconType = React.forwardRef(function SiPrevention({title = 'Prevention', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrevention as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrezi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrezi.tsx new file mode 100644 index 000000000..228b13936 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrezi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPreziProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3181FF'; + + const SiPrezi: IconType = React.forwardRef(function SiPrezi({title = 'Prezi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrezi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimefaces.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimefaces.tsx new file mode 100644 index 000000000..e48b58ed3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimefaces.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrimefacesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#263238'; + + const SiPrimefaces: IconType = React.forwardRef(function SiPrimefaces({title = 'PrimeFaces', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrimefaces as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimeng.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimeng.tsx new file mode 100644 index 000000000..88a35be2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimeng.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrimengProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD0031'; + + const SiPrimeng: IconType = React.forwardRef(function SiPrimeng({title = 'PrimeNG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrimeng as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimereact.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimereact.tsx new file mode 100644 index 000000000..b89e0ed44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimereact.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrimereactProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03C4E8'; + + const SiPrimereact: IconType = React.forwardRef(function SiPrimereact({title = 'PrimeReact', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrimereact as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimevue.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimevue.tsx new file mode 100644 index 000000000..4dfb9f468 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrimevue.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrimevueProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41B883'; + + const SiPrimevue: IconType = React.forwardRef(function SiPrimevue({title = 'PrimeVue', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrimevue as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrintables.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrintables.tsx new file mode 100644 index 000000000..f410e4121 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrintables.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrintablesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA6831'; + + const SiPrintables: IconType = React.forwardRef(function SiPrintables({title = 'Printables', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrintables as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrisma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrisma.tsx new file mode 100644 index 000000000..874714a83 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrisma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrismaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D3748'; + + const SiPrisma: IconType = React.forwardRef(function SiPrisma({title = 'Prisma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrisma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrismic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrismic.tsx new file mode 100644 index 000000000..554625757 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrismic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrismicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5163BA'; + + const SiPrismic: IconType = React.forwardRef(function SiPrismic({title = 'Prismic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrismic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrivatedivision.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrivatedivision.tsx new file mode 100644 index 000000000..c221bbfad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrivatedivision.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrivatedivisionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPrivatedivision: IconType = React.forwardRef(function SiPrivatedivision({title = 'Private Division', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrivatedivision as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrivateinternetaccess.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrivateinternetaccess.tsx new file mode 100644 index 000000000..32c86e43c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrivateinternetaccess.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrivateinternetaccessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E811F'; + + const SiPrivateinternetaccess: IconType = React.forwardRef(function SiPrivateinternetaccess({title = 'Private Internet Access', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrivateinternetaccess as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProbot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProbot.tsx new file mode 100644 index 000000000..272ea725e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProbot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProbotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B0D8'; + + const SiProbot: IconType = React.forwardRef(function SiProbot({title = 'Probot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProbot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcessingfoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcessingfoundation.tsx new file mode 100644 index 000000000..f78e1474e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcessingfoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProcessingfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiProcessingfoundation: IconType = React.forwardRef(function SiProcessingfoundation({title = 'Processing Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProcessingfoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcesson.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcesson.tsx new file mode 100644 index 000000000..a4224b7fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcesson.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProcessonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#067BEF'; + + const SiProcesson: IconType = React.forwardRef(function SiProcesson({title = 'ProcessOn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProcesson as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcesswire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcesswire.tsx new file mode 100644 index 000000000..2f3b8e649 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProcesswire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProcesswireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2480E6'; + + const SiProcesswire: IconType = React.forwardRef(function SiProcesswire({title = 'ProcessWire', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProcesswire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProducthunt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProducthunt.tsx new file mode 100644 index 000000000..4fbf5470c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProducthunt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProducthuntProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA552F'; + + const SiProducthunt: IconType = React.forwardRef(function SiProducthunt({title = 'Product Hunt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProducthunt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProgate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProgate.tsx new file mode 100644 index 000000000..c0cd24562 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProgate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProgateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#380953'; + + const SiProgate: IconType = React.forwardRef(function SiProgate({title = 'Progate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProgate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProgress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProgress.tsx new file mode 100644 index 000000000..1d700358d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProgress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProgressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5CE500'; + + const SiProgress: IconType = React.forwardRef(function SiProgress({title = 'Progress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProgress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrometheus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrometheus.tsx new file mode 100644 index 000000000..adf33498c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPrometheus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPrometheusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6522C'; + + const SiPrometheus: IconType = React.forwardRef(function SiPrometheus({title = 'Prometheus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPrometheus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPronounsdotpage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPronounsdotpage.tsx new file mode 100644 index 000000000..bf2282b11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPronounsdotpage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPronounsdotpageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C71585'; + + const SiPronounsdotpage: IconType = React.forwardRef(function SiPronounsdotpage({title = 'Pronouns.page', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPronounsdotpage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProsieben.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProsieben.tsx new file mode 100644 index 000000000..aeabacd72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProsieben.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProsiebenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6000F'; + + const SiProsieben: IconType = React.forwardRef(function SiProsieben({title = 'ProSieben', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProsieben as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProteus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProteus.tsx new file mode 100644 index 000000000..67a9fe515 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProteus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProteusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C79B3'; + + const SiProteus: IconType = React.forwardRef(function SiProteus({title = 'Proteus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProteus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtocolsdotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtocolsdotio.tsx new file mode 100644 index 000000000..40c07b5ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtocolsdotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtocolsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4D9FE7'; + + const SiProtocolsdotio: IconType = React.forwardRef(function SiProtocolsdotio({title = 'protocols.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtocolsdotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtodotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtodotio.tsx new file mode 100644 index 000000000..bbbfffd79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtodotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtodotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34A7C1'; + + const SiProtodotio: IconType = React.forwardRef(function SiProtodotio({title = 'Proto.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtodotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProton.tsx new file mode 100644 index 000000000..fc70deb78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D4AFF'; + + const SiProton: IconType = React.forwardRef(function SiProton({title = 'Proton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtoncalendar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtoncalendar.tsx new file mode 100644 index 000000000..042115b4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtoncalendar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtoncalendarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#50B0E9'; + + const SiProtoncalendar: IconType = React.forwardRef(function SiProtoncalendar({title = 'Proton Calendar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtoncalendar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtondb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtondb.tsx new file mode 100644 index 000000000..c6dff237a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtondb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtondbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F50057'; + + const SiProtondb: IconType = React.forwardRef(function SiProtondb({title = 'ProtonDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtondb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtondrive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtondrive.tsx new file mode 100644 index 000000000..b68813cd7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtondrive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtondriveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB508D'; + + const SiProtondrive: IconType = React.forwardRef(function SiProtondrive({title = 'Proton Drive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtondrive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtonmail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtonmail.tsx new file mode 100644 index 000000000..123314a5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtonmail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtonmailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D4AFF'; + + const SiProtonmail: IconType = React.forwardRef(function SiProtonmail({title = 'Proton Mail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtonmail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtonvpn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtonvpn.tsx new file mode 100644 index 000000000..8f46a6e7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtonvpn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtonvpnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#66DEB1'; + + const SiProtonvpn: IconType = React.forwardRef(function SiProtonvpn({title = 'Proton VPN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtonvpn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtools.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtools.tsx new file mode 100644 index 000000000..78e2c8724 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtools.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtoolsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7ACB10'; + + const SiProtools: IconType = React.forwardRef(function SiProtools({title = 'Pro Tools', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtools as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtractor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtractor.tsx new file mode 100644 index 000000000..97bcc4d94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProtractor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProtractorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED163A'; + + const SiProtractor: IconType = React.forwardRef(function SiProtractor({title = 'Protractor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProtractor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiProxmox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProxmox.tsx new file mode 100644 index 000000000..41442e8d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiProxmox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiProxmoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E57000'; + + const SiProxmox: IconType = React.forwardRef(function SiProxmox({title = 'Proxmox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiProxmox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPterodactyl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPterodactyl.tsx new file mode 100644 index 000000000..c22d1da17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPterodactyl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPterodactylProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#10539F'; + + const SiPterodactyl: IconType = React.forwardRef(function SiPterodactyl({title = 'Pterodactyl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPterodactyl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPubg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPubg.tsx new file mode 100644 index 000000000..301c479f1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPubg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPubgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4B942'; + + const SiPubg: IconType = React.forwardRef(function SiPubg({title = 'PUBG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPubg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPublons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPublons.tsx new file mode 100644 index 000000000..1bdd33611 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPublons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPublonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#336699'; + + const SiPublons: IconType = React.forwardRef(function SiPublons({title = 'Publons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPublons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPubmed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPubmed.tsx new file mode 100644 index 000000000..ae33b6429 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPubmed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPubmedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#326599'; + + const SiPubmed: IconType = React.forwardRef(function SiPubmed({title = 'PubMed', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPubmed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPug.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPug.tsx new file mode 100644 index 000000000..e6046ceaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPug.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPugProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A86454'; + + const SiPug: IconType = React.forwardRef(function SiPug({title = 'Pug', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPug as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPulumi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPulumi.tsx new file mode 100644 index 000000000..4f2c8eced --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPulumi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPulumiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8A3391'; + + const SiPulumi: IconType = React.forwardRef(function SiPulumi({title = 'Pulumi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPulumi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuma.tsx new file mode 100644 index 000000000..084452df3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPumaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#242B2F'; + + const SiPuma: IconType = React.forwardRef(function SiPuma({title = 'Puma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPuma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuppet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuppet.tsx new file mode 100644 index 000000000..777e41591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuppet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPuppetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFAE1A'; + + const SiPuppet: IconType = React.forwardRef(function SiPuppet({title = 'Puppet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPuppet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuppeteer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuppeteer.tsx new file mode 100644 index 000000000..54e4e40dd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPuppeteer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPuppeteerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40B5A4'; + + const SiPuppeteer: IconType = React.forwardRef(function SiPuppeteer({title = 'Puppeteer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPuppeteer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurescript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurescript.tsx new file mode 100644 index 000000000..1b6c287ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurescript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPurescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14161A'; + + const SiPurescript: IconType = React.forwardRef(function SiPurescript({title = 'PureScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPurescript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurgecss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurgecss.tsx new file mode 100644 index 000000000..2b64c49a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurgecss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPurgecssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14161A'; + + const SiPurgecss: IconType = React.forwardRef(function SiPurgecss({title = 'PurgeCSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPurgecss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurism.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurism.tsx new file mode 100644 index 000000000..a5cca6f33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPurism.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPurismProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D2D2D'; + + const SiPurism: IconType = React.forwardRef(function SiPurism({title = 'Purism', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPurism as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPushbullet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPushbullet.tsx new file mode 100644 index 000000000..f13123b75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPushbullet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPushbulletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4AB367'; + + const SiPushbullet: IconType = React.forwardRef(function SiPushbullet({title = 'Pushbullet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPushbullet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPusher.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPusher.tsx new file mode 100644 index 000000000..2f546e54c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPusher.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPusherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#300D4F'; + + const SiPusher: IconType = React.forwardRef(function SiPusher({title = 'Pusher', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPusher as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPwa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPwa.tsx new file mode 100644 index 000000000..ccce840b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPwa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPwaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A0FC8'; + + const SiPwa: IconType = React.forwardRef(function SiPwa({title = 'PWA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPwa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPycharm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPycharm.tsx new file mode 100644 index 000000000..83333f0a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPycharm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPycharmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiPycharm: IconType = React.forwardRef(function SiPycharm({title = 'PyCharm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPycharm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPycqa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPycqa.tsx new file mode 100644 index 000000000..fb3fd6064 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPycqa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPycqaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#201B44'; + + const SiPycqa: IconType = React.forwardRef(function SiPycqa({title = 'PyCQA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPycqa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPydantic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPydantic.tsx new file mode 100644 index 000000000..80dab0186 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPydantic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPydanticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E92063'; + + const SiPydantic: IconType = React.forwardRef(function SiPydantic({title = 'Pydantic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPydantic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyg.tsx new file mode 100644 index 000000000..80672c229 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPygProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3C2179'; + + const SiPyg: IconType = React.forwardRef(function SiPyg({title = 'PyG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPyg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPypi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPypi.tsx new file mode 100644 index 000000000..0fa7e3811 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPypi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPypiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3775A9'; + + const SiPypi: IconType = React.forwardRef(function SiPypi({title = 'PyPI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPypi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPypy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPypy.tsx new file mode 100644 index 000000000..216419ea6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPypy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPypyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#193440'; + + const SiPypy: IconType = React.forwardRef(function SiPypy({title = 'PyPy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPypy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyscaffold.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyscaffold.tsx new file mode 100644 index 000000000..73c76a433 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyscaffold.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPyscaffoldProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005CA0'; + + const SiPyscaffold: IconType = React.forwardRef(function SiPyscaffold({title = 'PyScaffold', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPyscaffold as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPysyft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPysyft.tsx new file mode 100644 index 000000000..24e32c351 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPysyft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPysyftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F1BF7A'; + + const SiPysyft: IconType = React.forwardRef(function SiPysyft({title = 'PySyft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPysyft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPytest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPytest.tsx new file mode 100644 index 000000000..bae5aa034 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPytest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPytestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A9EDC'; + + const SiPytest: IconType = React.forwardRef(function SiPytest({title = 'Pytest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPytest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPython.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPython.tsx new file mode 100644 index 000000000..8b86e50f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPython.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPythonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3776AB'; + + const SiPython: IconType = React.forwardRef(function SiPython({title = 'Python', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPython as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPythonanywhere.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPythonanywhere.tsx new file mode 100644 index 000000000..25d8bffd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPythonanywhere.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPythonanywhereProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D9FD7'; + + const SiPythonanywhere: IconType = React.forwardRef(function SiPythonanywhere({title = 'PythonAnywhere', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPythonanywhere as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPytorch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPytorch.tsx new file mode 100644 index 000000000..fa343c964 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPytorch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPytorchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE4C2C'; + + const SiPytorch: IconType = React.forwardRef(function SiPytorch({title = 'PyTorch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPytorch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyup.tsx new file mode 100644 index 000000000..bf9efdd3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiPyup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiPyupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9F55FF'; + + const SiPyup: IconType = React.forwardRef(function SiPyup({title = 'PyUp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiPyup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQantas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQantas.tsx new file mode 100644 index 000000000..6f9d00aec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQantas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQantasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E40000'; + + const SiQantas: IconType = React.forwardRef(function SiQantas({title = 'Qantas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQantas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQase.tsx new file mode 100644 index 000000000..9ea9fc518 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4F46DC'; + + const SiQase: IconType = React.forwardRef(function SiQase({title = 'Qase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQatarairways.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQatarairways.tsx new file mode 100644 index 000000000..1431a900a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQatarairways.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQatarairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C0D34'; + + const SiQatarairways: IconType = React.forwardRef(function SiQatarairways({title = 'Qatar Airways', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQatarairways as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQbittorrent.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQbittorrent.tsx new file mode 100644 index 000000000..000ed9333 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQbittorrent.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQbittorrentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F67BA'; + + const SiQbittorrent: IconType = React.forwardRef(function SiQbittorrent({title = 'qbittorrent', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQbittorrent as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQemu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQemu.tsx new file mode 100644 index 000000000..660349852 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQemu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQemuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiQemu: IconType = React.forwardRef(function SiQemu({title = 'QEMU', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQemu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQgis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQgis.tsx new file mode 100644 index 000000000..4526d22ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQgis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQgisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#589632'; + + const SiQgis: IconType = React.forwardRef(function SiQgis({title = 'Qgis', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQgis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQi.tsx new file mode 100644 index 000000000..29f348904 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiQi: IconType = React.forwardRef(function SiQi({title = 'Qi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiita.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiita.tsx new file mode 100644 index 000000000..25b834527 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiita.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQiitaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#55C500'; + + const SiQiita: IconType = React.forwardRef(function SiQiita({title = 'Qiita', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQiita as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiskit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiskit.tsx new file mode 100644 index 000000000..62bb79bf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiskit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQiskitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6929C4'; + + const SiQiskit: IconType = React.forwardRef(function SiQiskit({title = 'Qiskit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQiskit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiwi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiwi.tsx new file mode 100644 index 000000000..797117127 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQiwi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQiwiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8C00'; + + const SiQiwi: IconType = React.forwardRef(function SiQiwi({title = 'QIWI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQiwi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQlik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQlik.tsx new file mode 100644 index 000000000..b294e9049 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQlik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQlikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009848'; + + const SiQlik: IconType = React.forwardRef(function SiQlik({title = 'Qlik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQlik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQlty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQlty.tsx new file mode 100644 index 000000000..fb3daa9aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQlty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQltyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#66FAEC'; + + const SiQlty: IconType = React.forwardRef(function SiQlty({title = 'Qlty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQlty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQmk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQmk.tsx new file mode 100644 index 000000000..086799c20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQmk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQmkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiQmk: IconType = React.forwardRef(function SiQmk({title = 'QMK', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQmk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQnap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQnap.tsx new file mode 100644 index 000000000..3bfebf4d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQnap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQnapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C2E82'; + + const SiQnap: IconType = React.forwardRef(function SiQnap({title = 'QNAP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQnap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQodo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQodo.tsx new file mode 100644 index 000000000..e0dc1bc13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQodo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQodoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7968FA'; + + const SiQodo: IconType = React.forwardRef(function SiQodo({title = 'Qodo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQodo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQq.tsx new file mode 100644 index 000000000..0e8b8b852 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1EBAFC'; + + const SiQq: IconType = React.forwardRef(function SiQq({title = 'QQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQt.tsx new file mode 100644 index 000000000..d2f176898 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41CD52'; + + const SiQt: IconType = React.forwardRef(function SiQt({title = 'Qt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuad9.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuad9.tsx new file mode 100644 index 000000000..f55a62db5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuad9.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuad9Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC205E'; + + const SiQuad9: IconType = React.forwardRef(function SiQuad9({title = 'Quad9', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuad9 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualcomm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualcomm.tsx new file mode 100644 index 000000000..27678f24a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualcomm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQualcommProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3253DC'; + + const SiQualcomm: IconType = React.forwardRef(function SiQualcomm({title = 'Qualcomm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQualcomm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualtrics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualtrics.tsx new file mode 100644 index 000000000..48b7817d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualtrics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQualtricsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B4EF'; + + const SiQualtrics: IconType = React.forwardRef(function SiQualtrics({title = 'Qualtrics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQualtrics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualys.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualys.tsx new file mode 100644 index 000000000..f95524e25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQualys.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQualysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED2E26'; + + const SiQualys: IconType = React.forwardRef(function SiQualys({title = 'Qualys', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQualys as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuantcast.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuantcast.tsx new file mode 100644 index 000000000..ebabf950b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuantcast.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuantcastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiQuantcast: IconType = React.forwardRef(function SiQuantcast({title = 'Quantcast', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuantcast as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuantconnect.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuantconnect.tsx new file mode 100644 index 000000000..617616aae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuantconnect.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuantconnectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F98309'; + + const SiQuantconnect: IconType = React.forwardRef(function SiQuantconnect({title = 'QuantConnect', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuantconnect as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuarkus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuarkus.tsx new file mode 100644 index 000000000..3f08346fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuarkus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuarkusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4695EB'; + + const SiQuarkus: IconType = React.forwardRef(function SiQuarkus({title = 'Quarkus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuarkus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuarto.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuarto.tsx new file mode 100644 index 000000000..cd1c1ef8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuarto.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuartoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#39729E'; + + const SiQuarto: IconType = React.forwardRef(function SiQuarto({title = 'Quarto', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuarto as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuasar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuasar.tsx new file mode 100644 index 000000000..4ef322450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuasar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuasarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#050A14'; + + const SiQuasar: IconType = React.forwardRef(function SiQuasar({title = 'Quasar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuasar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQubesos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQubesos.tsx new file mode 100644 index 000000000..cd3957105 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQubesos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQubesosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3874D8'; + + const SiQubesos: IconType = React.forwardRef(function SiQubesos({title = 'Qubes OS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQubesos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuest.tsx new file mode 100644 index 000000000..37684d204 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB4F14'; + + const SiQuest: IconType = React.forwardRef(function SiQuest({title = 'Quest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuickbooks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuickbooks.tsx new file mode 100644 index 000000000..ba31ce9de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuickbooks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuickbooksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2CA01C'; + + const SiQuickbooks: IconType = React.forwardRef(function SiQuickbooks({title = 'QuickBooks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuickbooks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicklook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicklook.tsx new file mode 100644 index 000000000..89d1943ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicklook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuicklookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0078D3'; + + const SiQuicklook: IconType = React.forwardRef(function SiQuicklook({title = 'QuickLook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuicklook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicktime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicktime.tsx new file mode 100644 index 000000000..6a0510a89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicktime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuicktimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C69F0'; + + const SiQuicktime: IconType = React.forwardRef(function SiQuicktime({title = 'QuickTime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuicktime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicktype.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicktype.tsx new file mode 100644 index 000000000..d2982e7d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuicktype.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuicktypeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#159588'; + + const SiQuicktype: IconType = React.forwardRef(function SiQuicktype({title = 'quicktype', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuicktype as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuizlet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuizlet.tsx new file mode 100644 index 000000000..b7e05a03f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuizlet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuizletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4255FF'; + + const SiQuizlet: IconType = React.forwardRef(function SiQuizlet({title = 'Quizlet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuizlet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuora.tsx new file mode 100644 index 000000000..ec934e3fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQuora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQuoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B92B27'; + + const SiQuora: IconType = React.forwardRef(function SiQuora({title = 'Quora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQuora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwant.tsx new file mode 100644 index 000000000..189b0d17d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQwantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#282B2F'; + + const SiQwant: IconType = React.forwardRef(function SiQwant({title = 'Qwant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQwant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwik.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwik.tsx new file mode 100644 index 000000000..afecc244a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwik.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQwikProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AC7EF4'; + + const SiQwik: IconType = React.forwardRef(function SiQwik({title = 'Qwik', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQwik as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwiklabs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwiklabs.tsx new file mode 100644 index 000000000..929f880cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQwiklabs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQwiklabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5CD0E'; + + const SiQwiklabs: IconType = React.forwardRef(function SiQwiklabs({title = 'Qwiklabs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQwiklabs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiQzone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQzone.tsx new file mode 100644 index 000000000..f979c4048 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiQzone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiQzoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FECE00'; + + const SiQzone: IconType = React.forwardRef(function SiQzone({title = 'Qzone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiQzone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiR.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiR.tsx new file mode 100644 index 000000000..9bfa7ca64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiR.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#276DC3'; + + const SiR: IconType = React.forwardRef(function SiR({title = 'R', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiR as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiR3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiR3.tsx new file mode 100644 index 000000000..36bd08a61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiR3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiR3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC1D24'; + + const SiR3: IconType = React.forwardRef(function SiR3({title = 'R3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiR3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRabbitmq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRabbitmq.tsx new file mode 100644 index 000000000..3f9af0753 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRabbitmq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRabbitmqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiRabbitmq: IconType = React.forwardRef(function SiRabbitmq({title = 'RabbitMQ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRabbitmq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRacket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRacket.tsx new file mode 100644 index 000000000..e24843a78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRacket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRacketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9F1D20'; + + const SiRacket: IconType = React.forwardRef(function SiRacket({title = 'Racket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRacket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadar.tsx new file mode 100644 index 000000000..8a490b2df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRadarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007AFF'; + + const SiRadar: IconType = React.forwardRef(function SiRadar({title = 'Radar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRadar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadarr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadarr.tsx new file mode 100644 index 000000000..98ef60c45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadarr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRadarrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCB3D'; + + const SiRadarr: IconType = React.forwardRef(function SiRadarr({title = 'radarr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRadarr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadiofrance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadiofrance.tsx new file mode 100644 index 000000000..901cebd64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadiofrance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRadiofranceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2B00E7'; + + const SiRadiofrance: IconType = React.forwardRef(function SiRadiofrance({title = 'Radio France', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRadiofrance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadixui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadixui.tsx new file mode 100644 index 000000000..fc7695232 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadixui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRadixuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#161618'; + + const SiRadixui: IconType = React.forwardRef(function SiRadixui({title = 'Radix UI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRadixui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadstudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadstudio.tsx new file mode 100644 index 000000000..53d4e824a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRadstudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRadstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E62431'; + + const SiRadstudio: IconType = React.forwardRef(function SiRadstudio({title = 'RAD Studio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRadstudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRailway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRailway.tsx new file mode 100644 index 000000000..1d28bd8db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRailway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRailwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B0D0E'; + + const SiRailway: IconType = React.forwardRef(function SiRailway({title = 'Railway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRailway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRainmeter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRainmeter.tsx new file mode 100644 index 000000000..4967f02cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRainmeter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRainmeterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#19519B'; + + const SiRainmeter: IconType = React.forwardRef(function SiRainmeter({title = 'Rainmeter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRainmeter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRainyun.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRainyun.tsx new file mode 100644 index 000000000..56c10fd92 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRainyun.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRainyunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DAD9D9'; + + const SiRainyun: IconType = React.forwardRef(function SiRainyun({title = 'RainYun', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRainyun as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRakuten.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRakuten.tsx new file mode 100644 index 000000000..160b52c53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRakuten.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRakutenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BF0000'; + + const SiRakuten: IconType = React.forwardRef(function SiRakuten({title = 'Rakuten', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRakuten as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRakutenkobo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRakutenkobo.tsx new file mode 100644 index 000000000..1294cbe06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRakutenkobo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRakutenkoboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BF0000'; + + const SiRakutenkobo: IconType = React.forwardRef(function SiRakutenkobo({title = 'Rakuten Kobo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRakutenkobo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRam.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRam.tsx new file mode 100644 index 000000000..88f582f60 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRam.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRam: IconType = React.forwardRef(function SiRam({title = 'Ram', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRam as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRancher.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRancher.tsx new file mode 100644 index 000000000..4cd93cf95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRancher.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRancherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0075A8'; + + const SiRancher: IconType = React.forwardRef(function SiRancher({title = 'Rancher', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRancher as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRapid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRapid.tsx new file mode 100644 index 000000000..402d5fd74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRapid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRapidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0055DA'; + + const SiRapid: IconType = React.forwardRef(function SiRapid({title = 'Rapid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRapid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRarible.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRarible.tsx new file mode 100644 index 000000000..6df9a2054 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRarible.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRaribleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FEDA03'; + + const SiRarible: IconType = React.forwardRef(function SiRarible({title = 'Rarible', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRarible as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRasa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRasa.tsx new file mode 100644 index 000000000..7c544f5b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRasa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRasaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5A17EE'; + + const SiRasa: IconType = React.forwardRef(function SiRasa({title = 'Rasa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRasa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaspberrypi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaspberrypi.tsx new file mode 100644 index 000000000..6c508c504 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaspberrypi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRaspberrypiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A22846'; + + const SiRaspberrypi: IconType = React.forwardRef(function SiRaspberrypi({title = 'Raspberry Pi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRaspberrypi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRatatui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRatatui.tsx new file mode 100644 index 000000000..a78357d59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRatatui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRatatuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRatatui: IconType = React.forwardRef(function SiRatatui({title = 'Ratatui', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRatatui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRavelry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRavelry.tsx new file mode 100644 index 000000000..7dd921a25 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRavelry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRavelryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE6E62'; + + const SiRavelry: IconType = React.forwardRef(function SiRavelry({title = 'Ravelry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRavelry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRay.tsx new file mode 100644 index 000000000..1b8ba4bb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#028CF0'; + + const SiRay: IconType = React.forwardRef(function SiRay({title = 'Ray', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaycast.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaycast.tsx new file mode 100644 index 000000000..91e074fd9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaycast.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRaycastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6363'; + + const SiRaycast: IconType = React.forwardRef(function SiRaycast({title = 'Raycast', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRaycast as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaylib.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaylib.tsx new file mode 100644 index 000000000..40c36a185 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRaylib.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRaylibProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRaylib: IconType = React.forwardRef(function SiRaylib({title = 'Raylib', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRaylib as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRazer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRazer.tsx new file mode 100644 index 000000000..fceaa0adf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRazer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRazerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FF00'; + + const SiRazer: IconType = React.forwardRef(function SiRazer({title = 'Razer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRazer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRazorpay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRazorpay.tsx new file mode 100644 index 000000000..14e9f4770 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRazorpay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRazorpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C2451'; + + const SiRazorpay: IconType = React.forwardRef(function SiRazorpay({title = 'Razorpay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRazorpay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRclone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRclone.tsx new file mode 100644 index 000000000..2facae510 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRclone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRcloneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3F79AD'; + + const SiRclone: IconType = React.forwardRef(function SiRclone({title = 'Rclone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRclone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReact.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReact.tsx new file mode 100644 index 000000000..ce1ecd30d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReact.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#61DAFB'; + + const SiReact: IconType = React.forwardRef(function SiReact({title = 'React', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReact as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactbootstrap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactbootstrap.tsx new file mode 100644 index 000000000..3de5a2741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactbootstrap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactbootstrapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41E0FD'; + + const SiReactbootstrap: IconType = React.forwardRef(function SiReactbootstrap({title = 'React Bootstrap', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReactbootstrap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReacthookform.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReacthookform.tsx new file mode 100644 index 000000000..301d905cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReacthookform.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReacthookformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC5990'; + + const SiReacthookform: IconType = React.forwardRef(function SiReacthookform({title = 'React Hook Form', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReacthookform as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactiveresume.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactiveresume.tsx new file mode 100644 index 000000000..c25fd0a7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactiveresume.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactiveresumeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiReactiveresume: IconType = React.forwardRef(function SiReactiveresume({title = 'Reactive Resume', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReactiveresume as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactivex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactivex.tsx new file mode 100644 index 000000000..dd038e5ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactivex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactivexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B7178C'; + + const SiReactivex: IconType = React.forwardRef(function SiReactivex({title = 'ReactiveX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReactivex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactos.tsx new file mode 100644 index 000000000..098d0deb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0088CC'; + + const SiReactos: IconType = React.forwardRef(function SiReactos({title = 'ReactOS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReactos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactquery.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactquery.tsx new file mode 100644 index 000000000..8928f221e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactquery.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactqueryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4154'; + + const SiReactquery: IconType = React.forwardRef(function SiReactquery({title = 'React Query', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReactquery as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactrouter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactrouter.tsx new file mode 100644 index 000000000..0da488a1f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReactrouter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReactrouterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CA4245'; + + const SiReactrouter: IconType = React.forwardRef(function SiReactrouter({title = 'React Router', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReactrouter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReacttable.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReacttable.tsx new file mode 100644 index 000000000..9d38f5a56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReacttable.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReacttableProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4154'; + + const SiReacttable: IconType = React.forwardRef(function SiReacttable({title = 'React Table', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReacttable as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReaddotcv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReaddotcv.tsx new file mode 100644 index 000000000..7ad18933b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReaddotcv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReaddotcvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111111'; + + const SiReaddotcv: IconType = React.forwardRef(function SiReaddotcv({title = 'Read.cv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReaddotcv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReadme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReadme.tsx new file mode 100644 index 000000000..debd59579 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReadme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReadmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#018EF5'; + + const SiReadme: IconType = React.forwardRef(function SiReadme({title = 'ReadMe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReadme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReadthedocs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReadthedocs.tsx new file mode 100644 index 000000000..c3b9e9b6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReadthedocs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReadthedocsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiReadthedocs: IconType = React.forwardRef(function SiReadthedocs({title = 'Read the Docs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReadthedocs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReason.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReason.tsx new file mode 100644 index 000000000..14c2e2363 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReason.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReasonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD4B39'; + + const SiReason: IconType = React.forwardRef(function SiReason({title = 'Reason', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReason as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReasonstudios.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReasonstudios.tsx new file mode 100644 index 000000000..1d4e60aaa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReasonstudios.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReasonstudiosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiReasonstudios: IconType = React.forwardRef(function SiReasonstudios({title = 'Reason Studios', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReasonstudios as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRecoil.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRecoil.tsx new file mode 100644 index 000000000..19605de73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRecoil.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRecoilProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3578E5'; + + const SiRecoil: IconType = React.forwardRef(function SiRecoil({title = 'Recoil', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRecoil as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRed.tsx new file mode 100644 index 000000000..478e98483 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B32629'; + + const SiRed: IconType = React.forwardRef(function SiRed({title = 'Red', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedash.tsx new file mode 100644 index 000000000..6b1936ee3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7964'; + + const SiRedash: IconType = React.forwardRef(function SiRedash({title = 'Redash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedbubble.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedbubble.tsx new file mode 100644 index 000000000..0acfe3b2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedbubble.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedbubbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E41321'; + + const SiRedbubble: IconType = React.forwardRef(function SiRedbubble({title = 'Redbubble', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedbubble as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedbull.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedbull.tsx new file mode 100644 index 000000000..144a2b57c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedbull.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedbullProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB0A40'; + + const SiRedbull: IconType = React.forwardRef(function SiRedbull({title = 'Red Bull', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedbull as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedcandlegames.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedcandlegames.tsx new file mode 100644 index 000000000..61d9d0e8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedcandlegames.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedcandlegamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D23735'; + + const SiRedcandlegames: IconType = React.forwardRef(function SiRedcandlegames({title = 'Red Candle Games', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedcandlegames as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReddit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReddit.tsx new file mode 100644 index 000000000..cf505ceec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReddit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedditProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4500'; + + const SiReddit: IconType = React.forwardRef(function SiReddit({title = 'Reddit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReddit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedhat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedhat.tsx new file mode 100644 index 000000000..67294aa7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedhat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedhatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE0000'; + + const SiRedhat: IconType = React.forwardRef(function SiRedhat({title = 'Red Hat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedhat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedhatopenshift.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedhatopenshift.tsx new file mode 100644 index 000000000..2e798d4bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedhatopenshift.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedhatopenshiftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE0000'; + + const SiRedhatopenshift: IconType = React.forwardRef(function SiRedhatopenshift({title = 'Red Hat Open Shift', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedhatopenshift as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedis.tsx new file mode 100644 index 000000000..00b4edda8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4438'; + + const SiRedis: IconType = React.forwardRef(function SiRedis({title = 'Redis', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedmine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedmine.tsx new file mode 100644 index 000000000..cd80e9aa2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedmine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedmineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B32024'; + + const SiRedmine: IconType = React.forwardRef(function SiRedmine({title = 'Redmine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedmine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedox.tsx new file mode 100644 index 000000000..073aa41fc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRedox: IconType = React.forwardRef(function SiRedox({title = 'Redox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedragon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedragon.tsx new file mode 100644 index 000000000..06fc9e74c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedragon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedragonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60012'; + + const SiRedragon: IconType = React.forwardRef(function SiRedragon({title = 'Redragon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedragon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedsys.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedsys.tsx new file mode 100644 index 000000000..bc03093de --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedsys.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedsysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC7C26'; + + const SiRedsys: IconType = React.forwardRef(function SiRedsys({title = 'Redsys', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedsys as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedux.tsx new file mode 100644 index 000000000..c7938571e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReduxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#764ABC'; + + const SiRedux: IconType = React.forwardRef(function SiRedux({title = 'Redux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReduxsaga.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReduxsaga.tsx new file mode 100644 index 000000000..8d76de9c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReduxsaga.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReduxsagaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#999999'; + + const SiReduxsaga: IconType = React.forwardRef(function SiReduxsaga({title = 'Redux-Saga', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReduxsaga as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedwoodjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedwoodjs.tsx new file mode 100644 index 000000000..ca1ea9bab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRedwoodjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRedwoodjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BF4722'; + + const SiRedwoodjs: IconType = React.forwardRef(function SiRedwoodjs({title = 'RedwoodJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRedwoodjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReebok.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReebok.tsx new file mode 100644 index 000000000..e85ce2f2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReebok.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReebokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E41D1B'; + + const SiReebok: IconType = React.forwardRef(function SiReebok({title = 'Reebok', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReebok as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRefine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRefine.tsx new file mode 100644 index 000000000..8da04895f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRefine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRefineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14141F'; + + const SiRefine: IconType = React.forwardRef(function SiRefine({title = 'Refine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRefine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRefinedgithub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRefinedgithub.tsx new file mode 100644 index 000000000..d0afab2f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRefinedgithub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRefinedgithubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9E95B7'; + + const SiRefinedgithub: IconType = React.forwardRef(function SiRefinedgithub({title = 'Refined GitHub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRefinedgithub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReflex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReflex.tsx new file mode 100644 index 000000000..b93cdd126 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReflex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReflexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6E56CF'; + + const SiReflex: IconType = React.forwardRef(function SiReflex({title = 'Reflex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReflex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRekaui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRekaui.tsx new file mode 100644 index 000000000..f96a25eb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRekaui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRekauiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#16A353'; + + const SiRekaui: IconType = React.forwardRef(function SiRekaui({title = 'Reka UI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRekaui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRelay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRelay.tsx new file mode 100644 index 000000000..e83b873f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRelay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRelayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F26B00'; + + const SiRelay: IconType = React.forwardRef(function SiRelay({title = 'Relay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRelay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRelianceindustrieslimited.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRelianceindustrieslimited.tsx new file mode 100644 index 000000000..f3f3908db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRelianceindustrieslimited.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRelianceindustrieslimitedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D1AB66'; + + const SiRelianceindustrieslimited: IconType = React.forwardRef(function SiRelianceindustrieslimited({title = 'Reliance Industries Limited', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRelianceindustrieslimited as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemark.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemark.tsx new file mode 100644 index 000000000..6782cd587 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemark.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRemarkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRemark: IconType = React.forwardRef(function SiRemark({title = 'remark', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRemark as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemedyentertainment.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemedyentertainment.tsx new file mode 100644 index 000000000..014c43f52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemedyentertainment.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRemedyentertainmentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D6001C'; + + const SiRemedyentertainment: IconType = React.forwardRef(function SiRemedyentertainment({title = 'Remedy Entertainment', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRemedyentertainment as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemix.tsx new file mode 100644 index 000000000..8bb650bda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRemixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRemix: IconType = React.forwardRef(function SiRemix({title = 'Remix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRemix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemovedotbg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemovedotbg.tsx new file mode 100644 index 000000000..c8bd8dd8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRemovedotbg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRemovedotbgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#54616C'; + + const SiRemovedotbg: IconType = React.forwardRef(function SiRemovedotbg({title = 'remove.bg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRemovedotbg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenault.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenault.tsx new file mode 100644 index 000000000..a8a8bce7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenault.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRenaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCC33'; + + const SiRenault: IconType = React.forwardRef(function SiRenault({title = 'Renault', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRenault as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRender.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRender.tsx new file mode 100644 index 000000000..b25cdfe4e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRender.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRenderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRender: IconType = React.forwardRef(function SiRender({title = 'Render', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRender as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenovate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenovate.tsx new file mode 100644 index 000000000..caf15e88f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenovate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRenovateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#308BE3'; + + const SiRenovate: IconType = React.forwardRef(function SiRenovate({title = 'Renovate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRenovate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenpy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenpy.tsx new file mode 100644 index 000000000..8e2bb96a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenpy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRenpyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7F7F'; + + const SiRenpy: IconType = React.forwardRef(function SiRenpy({title = 'RenPy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRenpy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenren.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenren.tsx new file mode 100644 index 000000000..3ce03e28a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRenren.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRenrenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#217DC6'; + + const SiRenren: IconType = React.forwardRef(function SiRenren({title = 'Renren', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRenren as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReplicate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReplicate.tsx new file mode 100644 index 000000000..45d6d49bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReplicate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReplicateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiReplicate: IconType = React.forwardRef(function SiReplicate({title = 'Replicate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReplicate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReplit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReplit.tsx new file mode 100644 index 000000000..a18e544be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReplit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReplitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F26207'; + + const SiReplit: IconType = React.forwardRef(function SiReplit({title = 'Replit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReplit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRepublicofgamers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRepublicofgamers.tsx new file mode 100644 index 000000000..5bd3fea56 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRepublicofgamers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRepublicofgamersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0029'; + + const SiRepublicofgamers: IconType = React.forwardRef(function SiRepublicofgamers({title = 'Republic of Gamers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRepublicofgamers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRescript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRescript.tsx new file mode 100644 index 000000000..3c1b4dd14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRescript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6484F'; + + const SiRescript: IconType = React.forwardRef(function SiRescript({title = 'ReScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRescript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRescuetime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRescuetime.tsx new file mode 100644 index 000000000..632378fcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRescuetime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRescuetimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#161A3B'; + + const SiRescuetime: IconType = React.forwardRef(function SiRescuetime({title = 'RescueTime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRescuetime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiResearchgate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResearchgate.tsx new file mode 100644 index 000000000..c9784ddc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResearchgate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiResearchgateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CCBB'; + + const SiResearchgate: IconType = React.forwardRef(function SiResearchgate({title = 'ResearchGate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiResearchgate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiResend.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResend.tsx new file mode 100644 index 000000000..743a350eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResend.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiResendProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiResend: IconType = React.forwardRef(function SiResend({title = 'Resend', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiResend as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiResharper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResharper.tsx new file mode 100644 index 000000000..0a3b7c8f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResharper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiResharperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiResharper: IconType = React.forwardRef(function SiResharper({title = 'ReSharper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiResharper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiResurrectionremixos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResurrectionremixos.tsx new file mode 100644 index 000000000..a54385f37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiResurrectionremixos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiResurrectionremixosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiResurrectionremixos: IconType = React.forwardRef(function SiResurrectionremixos({title = 'Resurrection Remix OS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiResurrectionremixos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetool.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetool.tsx new file mode 100644 index 000000000..94e00cb21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetool.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRetoolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3D3D3D'; + + const SiRetool: IconType = React.forwardRef(function SiRetool({title = 'Retool', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRetool as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetroachievements.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetroachievements.tsx new file mode 100644 index 000000000..417494952 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetroachievements.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRetroachievementsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1065DF'; + + const SiRetroachievements: IconType = React.forwardRef(function SiRetroachievements({title = 'Retro Achievements', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRetroachievements as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetroarch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetroarch.tsx new file mode 100644 index 000000000..fab59acf6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetroarch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRetroarchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRetroarch: IconType = React.forwardRef(function SiRetroarch({title = 'RetroArch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRetroarch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetropie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetropie.tsx new file mode 100644 index 000000000..bcd13300d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRetropie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRetropieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiRetropie: IconType = React.forwardRef(function SiRetropie({title = 'RetroPie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRetropie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevanced.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevanced.tsx new file mode 100644 index 000000000..d24122f1a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevanced.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRevancedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9ED5FF'; + + const SiRevanced: IconType = React.forwardRef(function SiRevanced({title = 'ReVanced', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRevanced as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevealdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevealdotjs.tsx new file mode 100644 index 000000000..d165282c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevealdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRevealdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2E142'; + + const SiRevealdotjs: IconType = React.forwardRef(function SiRevealdotjs({title = 'reveal.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRevealdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevenuecat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevenuecat.tsx new file mode 100644 index 000000000..64cfb0f45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevenuecat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRevenuecatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2545B'; + + const SiRevenuecat: IconType = React.forwardRef(function SiRevenuecat({title = 'RevenueCat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRevenuecat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiReverbnation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReverbnation.tsx new file mode 100644 index 000000000..25cdce7fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiReverbnation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReverbnationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E43526'; + + const SiReverbnation: IconType = React.forwardRef(function SiReverbnation({title = 'ReverbNation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiReverbnation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevoltdotchat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevoltdotchat.tsx new file mode 100644 index 000000000..03d1cb6cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevoltdotchat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRevoltdotchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4655'; + + const SiRevoltdotchat: IconType = React.forwardRef(function SiRevoltdotchat({title = 'Revolt.chat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRevoltdotchat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevolut.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevolut.tsx new file mode 100644 index 000000000..f9446e397 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRevolut.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRevolutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#191C1F'; + + const SiRevolut: IconType = React.forwardRef(function SiRevolut({title = 'Revolut', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRevolut as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRewe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRewe.tsx new file mode 100644 index 000000000..5eb54886d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRewe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiReweProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC071E'; + + const SiRewe: IconType = React.forwardRef(function SiRewe({title = 'REWE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRewe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRezgo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRezgo.tsx new file mode 100644 index 000000000..a6313bf20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRezgo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRezgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F76C00'; + + const SiRezgo: IconType = React.forwardRef(function SiRezgo({title = 'Rezgo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRezgo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRhinoceros.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRhinoceros.tsx new file mode 100644 index 000000000..cf0d1604a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRhinoceros.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRhinocerosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#801010'; + + const SiRhinoceros: IconType = React.forwardRef(function SiRhinoceros({title = 'Rhinoceros', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRhinoceros as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRich.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRich.tsx new file mode 100644 index 000000000..09e393ab2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRich.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRichProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAE742'; + + const SiRich: IconType = React.forwardRef(function SiRich({title = 'Rich', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRich as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRider.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRider.tsx new file mode 100644 index 000000000..df66067b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRider.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRiderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRider: IconType = React.forwardRef(function SiRider({title = 'Rider', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRider as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRimacautomobili.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRimacautomobili.tsx new file mode 100644 index 000000000..01a08564f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRimacautomobili.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRimacautomobiliProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A222E'; + + const SiRimacautomobili: IconType = React.forwardRef(function SiRimacautomobili({title = 'Rimac Automobili', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRimacautomobili as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRime.tsx new file mode 100644 index 000000000..271b1d328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRime: IconType = React.forwardRef(function SiRime({title = 'Rime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRing.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRing.tsx new file mode 100644 index 000000000..695ad9591 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRing.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C9AD6'; + + const SiRing: IconType = React.forwardRef(function SiRing({title = 'Ring', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRing as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiotgames.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiotgames.tsx new file mode 100644 index 000000000..af6a2d8b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiotgames.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRiotgamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB0029'; + + const SiRiotgames: IconType = React.forwardRef(function SiRiotgames({title = 'Riot Games', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRiotgames as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRipple.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRipple.tsx new file mode 100644 index 000000000..954d1b871 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRipple.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRippleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0085C0'; + + const SiRipple: IconType = React.forwardRef(function SiRipple({title = 'Ripple', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRipple as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiscv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiscv.tsx new file mode 100644 index 000000000..f20213141 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiscv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRiscvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#283272'; + + const SiRiscv: IconType = React.forwardRef(function SiRiscv({title = 'RISC-V', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRiscv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiseup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiseup.tsx new file mode 100644 index 000000000..a6f0ba83d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRiseup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRiseupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiRiseup: IconType = React.forwardRef(function SiRiseup({title = 'Riseup', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRiseup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRitzcarlton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRitzcarlton.tsx new file mode 100644 index 000000000..a525734b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRitzcarlton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRitzcarltonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRitzcarlton: IconType = React.forwardRef(function SiRitzcarlton({title = 'Ritz Carlton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRitzcarlton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRive.tsx new file mode 100644 index 000000000..31f5bbf8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D1D1D'; + + const SiRive: IconType = React.forwardRef(function SiRive({title = 'Rive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoadmapdotsh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoadmapdotsh.tsx new file mode 100644 index 000000000..d34608512 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoadmapdotsh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRoadmapdotshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRoadmapdotsh: IconType = React.forwardRef(function SiRoadmapdotsh({title = 'roadmap.sh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoadmapdotsh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoamresearch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoamresearch.tsx new file mode 100644 index 000000000..e0f285078 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoamresearch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRoamresearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#343A40'; + + const SiRoamresearch: IconType = React.forwardRef(function SiRoamresearch({title = 'Roam Research', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoamresearch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobinhood.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobinhood.tsx new file mode 100644 index 000000000..a48643eca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobinhood.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRobinhoodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CCFF00'; + + const SiRobinhood: IconType = React.forwardRef(function SiRobinhood({title = 'Robinhood', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRobinhood as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoblox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoblox.tsx new file mode 100644 index 000000000..01c13bd7c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoblox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRobloxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRoblox: IconType = React.forwardRef(function SiRoblox({title = 'Roblox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoblox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobloxstudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobloxstudio.tsx new file mode 100644 index 000000000..2f7c7fe91 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobloxstudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRobloxstudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A2FF'; + + const SiRobloxstudio: IconType = React.forwardRef(function SiRobloxstudio({title = 'Roblox Studio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRobloxstudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoboflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoboflow.tsx new file mode 100644 index 000000000..7da235511 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoboflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRoboflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6706CE'; + + const SiRoboflow: IconType = React.forwardRef(function SiRoboflow({title = 'Roboflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoboflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobotframework.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobotframework.tsx new file mode 100644 index 000000000..9259646ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRobotframework.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRobotframeworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRobotframework: IconType = React.forwardRef(function SiRobotframework({title = 'Robot Framework', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRobotframework as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocket.tsx new file mode 100644 index 000000000..9f4c371af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D33847'; + + const SiRocket: IconType = React.forwardRef(function SiRocket({title = 'Rocket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRocket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocketdotchat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocketdotchat.tsx new file mode 100644 index 000000000..13e419b0f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocketdotchat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRocketdotchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5455C'; + + const SiRocketdotchat: IconType = React.forwardRef(function SiRocketdotchat({title = 'Rocket.Chat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRocketdotchat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocksdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocksdb.tsx new file mode 100644 index 000000000..027d240a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRocksdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRocksdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A2A2A'; + + const SiRocksdb: IconType = React.forwardRef(function SiRocksdb({title = 'RocksDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRocksdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockstargames.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockstargames.tsx new file mode 100644 index 000000000..646890f5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockstargames.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRockstargamesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FCAF17'; + + const SiRockstargames: IconType = React.forwardRef(function SiRockstargames({title = 'Rockstar Games', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRockstargames as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockwellautomation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockwellautomation.tsx new file mode 100644 index 000000000..80139b111 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockwellautomation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRockwellautomationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD163F'; + + const SiRockwellautomation: IconType = React.forwardRef(function SiRockwellautomation({title = 'Rockwell Automation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRockwellautomation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockylinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockylinux.tsx new file mode 100644 index 000000000..39fcb2a74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRockylinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRockylinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#10B981'; + + const SiRockylinux: IconType = React.forwardRef(function SiRockylinux({title = 'Rocky Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRockylinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoku.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoku.tsx new file mode 100644 index 000000000..95b60aec7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoku.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRokuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#662D91'; + + const SiRoku: IconType = React.forwardRef(function SiRoku({title = 'Roku', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoku as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoll20.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoll20.tsx new file mode 100644 index 000000000..d650fb533 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoll20.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRoll20Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E10085'; + + const SiRoll20: IconType = React.forwardRef(function SiRoll20({title = 'Roll20', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoll20 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollbar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollbar.tsx new file mode 100644 index 000000000..ed4fa6306 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollbar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRollbarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3569F3'; + + const SiRollbar: IconType = React.forwardRef(function SiRollbar({title = 'Rollbar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRollbar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRolldown.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRolldown.tsx new file mode 100644 index 000000000..9fa7fe322 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRolldown.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRolldownProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4100'; + + const SiRolldown: IconType = React.forwardRef(function SiRolldown({title = 'Rolldown', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRolldown as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollsroyce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollsroyce.tsx new file mode 100644 index 000000000..6e34686b4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollsroyce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRollsroyceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#281432'; + + const SiRollsroyce: IconType = React.forwardRef(function SiRollsroyce({title = 'Rolls-Royce', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRollsroyce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollupdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollupdotjs.tsx new file mode 100644 index 000000000..a4c83e462 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRollupdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRollupdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC4A3F'; + + const SiRollupdotjs: IconType = React.forwardRef(function SiRollupdotjs({title = 'rollup.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRollupdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRook.tsx new file mode 100644 index 000000000..ebac560eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2AC6EA'; + + const SiRook: IconType = React.forwardRef(function SiRook({title = 'Rook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoon.tsx new file mode 100644 index 000000000..a86ce1d3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2039F3'; + + const SiRoon: IconType = React.forwardRef(function SiRoon({title = 'Roon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoot.tsx new file mode 100644 index 000000000..4d6f263ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1ED3E4'; + + const SiRoot: IconType = React.forwardRef(function SiRoot({title = 'ROOT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootme.tsx new file mode 100644 index 000000000..cf560e135 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRootmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRootme: IconType = React.forwardRef(function SiRootme({title = 'Root Me', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRootme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoots.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoots.tsx new file mode 100644 index 000000000..ecd868ae1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoots.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRootsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#525DDC'; + + const SiRoots: IconType = React.forwardRef(function SiRoots({title = 'Roots', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoots as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootsbedrock.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootsbedrock.tsx new file mode 100644 index 000000000..081257eba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootsbedrock.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRootsbedrockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#525DDC'; + + const SiRootsbedrock: IconType = React.forwardRef(function SiRootsbedrock({title = 'Roots Bedrock', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRootsbedrock as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootssage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootssage.tsx new file mode 100644 index 000000000..bf8ccc3f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRootssage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRootssageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#525DDC'; + + const SiRootssage: IconType = React.forwardRef(function SiRootssage({title = 'Roots Sage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRootssage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRos.tsx new file mode 100644 index 000000000..7a1e1a54c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#22314E'; + + const SiRos: IconType = React.forwardRef(function SiRos({title = 'ROS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRossmann.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRossmann.tsx new file mode 100644 index 000000000..a70940e09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRossmann.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRossmannProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C3002D'; + + const SiRossmann: IconType = React.forwardRef(function SiRossmann({title = 'Rossmann', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRossmann as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRotaryinternational.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRotaryinternational.tsx new file mode 100644 index 000000000..103fd128e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRotaryinternational.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRotaryinternationalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7A81B'; + + const SiRotaryinternational: IconType = React.forwardRef(function SiRotaryinternational({title = 'Rotary International', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRotaryinternational as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRottentomatoes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRottentomatoes.tsx new file mode 100644 index 000000000..93480bd3b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRottentomatoes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRottentomatoesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA320A'; + + const SiRottentomatoes: IconType = React.forwardRef(function SiRottentomatoes({title = 'Rotten Tomatoes', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRottentomatoes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoundcube.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoundcube.tsx new file mode 100644 index 000000000..e44c5cd44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRoundcube.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRoundcubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#37BEFF'; + + const SiRoundcube: IconType = React.forwardRef(function SiRoundcube({title = 'Roundcube', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRoundcube as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRsocket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRsocket.tsx new file mode 100644 index 000000000..bf2bcff27 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRsocket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRsocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF0092'; + + const SiRsocket: IconType = React.forwardRef(function SiRsocket({title = 'RSocket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRsocket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRss.tsx new file mode 100644 index 000000000..f33d65a1d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA500'; + + const SiRss: IconType = React.forwardRef(function SiRss({title = 'RSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRstudioide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRstudioide.tsx new file mode 100644 index 000000000..784837cdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRstudioide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRstudioideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#75AADB'; + + const SiRstudioide: IconType = React.forwardRef(function SiRstudioide({title = 'RStudio IDE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRstudioide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRte.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRte.tsx new file mode 100644 index 000000000..2f47a44af --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRte.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A7B3'; + + const SiRte: IconType = React.forwardRef(function SiRte({title = 'RTÉ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRte as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtl.tsx new file mode 100644 index 000000000..3299180ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRtlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA002E'; + + const SiRtl: IconType = React.forwardRef(function SiRtl({title = 'RTL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRtl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtlzwei.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtlzwei.tsx new file mode 100644 index 000000000..86b52649c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtlzwei.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRtlzweiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00BCF6'; + + const SiRtlzwei: IconType = React.forwardRef(function SiRtlzwei({title = 'RTLZWEI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRtlzwei as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtm.tsx new file mode 100644 index 000000000..e7404e2c9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRtm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRtmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#36474F'; + + const SiRtm: IconType = React.forwardRef(function SiRtm({title = 'RTM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRtm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubocop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubocop.tsx new file mode 100644 index 000000000..48d8c887f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubocop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRubocopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRubocop: IconType = React.forwardRef(function SiRubocop({title = 'RuboCop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRubocop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRuby.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRuby.tsx new file mode 100644 index 000000000..ea4cd2d75 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRuby.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRubyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC342D'; + + const SiRuby: IconType = React.forwardRef(function SiRuby({title = 'Ruby', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRuby as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubygems.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubygems.tsx new file mode 100644 index 000000000..5f26b10ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubygems.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRubygemsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E9573F'; + + const SiRubygems: IconType = React.forwardRef(function SiRubygems({title = 'RubyGems', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRubygems as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubymine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubymine.tsx new file mode 100644 index 000000000..2d46d3bd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubymine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRubymineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRubymine: IconType = React.forwardRef(function SiRubymine({title = 'RubyMine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRubymine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubyonrails.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubyonrails.tsx new file mode 100644 index 000000000..15e75f25d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubyonrails.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRubyonrailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D30001'; + + const SiRubyonrails: IconType = React.forwardRef(function SiRubyonrails({title = 'Ruby on Rails', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRubyonrails as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubysinatra.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubysinatra.tsx new file mode 100644 index 000000000..72fea6937 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRubysinatra.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRubysinatraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRubysinatra: IconType = React.forwardRef(function SiRubysinatra({title = 'Ruby Sinatra', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRubysinatra as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRuff.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRuff.tsx new file mode 100644 index 000000000..8d30ea13d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRuff.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRuffProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D7FF64'; + + const SiRuff: IconType = React.forwardRef(function SiRuff({title = 'Ruff', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRuff as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRumahweb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRumahweb.tsx new file mode 100644 index 000000000..feacf5262 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRumahweb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRumahwebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2EB4E3'; + + const SiRumahweb: IconType = React.forwardRef(function SiRumahweb({title = 'Rumahweb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRumahweb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRumble.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRumble.tsx new file mode 100644 index 000000000..4a2afa4ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRumble.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRumbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#85C742'; + + const SiRumble: IconType = React.forwardRef(function SiRumble({title = 'Rumble', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRumble as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRundeck.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRundeck.tsx new file mode 100644 index 000000000..5a54acec2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRundeck.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRundeckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F73F39'; + + const SiRundeck: IconType = React.forwardRef(function SiRundeck({title = 'Rundeck', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRundeck as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunkeeper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunkeeper.tsx new file mode 100644 index 000000000..72577075b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunkeeper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRunkeeperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#001E62'; + + const SiRunkeeper: IconType = React.forwardRef(function SiRunkeeper({title = 'Runkeeper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRunkeeper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunkit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunkit.tsx new file mode 100644 index 000000000..a161c8294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunkit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRunkitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#491757'; + + const SiRunkit: IconType = React.forwardRef(function SiRunkit({title = 'RunKit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRunkit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunrundotit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunrundotit.tsx new file mode 100644 index 000000000..65eb65c30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRunrundotit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRunrundotitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB3729'; + + const SiRunrundotit: IconType = React.forwardRef(function SiRunrundotit({title = 'Runrun.it', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRunrundotit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRust.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRust.tsx new file mode 100644 index 000000000..c3f55d715 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRust.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRustProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRust: IconType = React.forwardRef(function SiRust({title = 'Rust', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRust as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRustdesk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRustdesk.tsx new file mode 100644 index 000000000..a2e6add30 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRustdesk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRustdeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#024EFF'; + + const SiRustdesk: IconType = React.forwardRef(function SiRustdesk({title = 'RustDesk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRustdesk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRxdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRxdb.tsx new file mode 100644 index 000000000..32c59052b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRxdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRxdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8D1F89'; + + const SiRxdb: IconType = React.forwardRef(function SiRxdb({title = 'RxDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRxdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRyanair.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRyanair.tsx new file mode 100644 index 000000000..3665af7fe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRyanair.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRyanairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#073590'; + + const SiRyanair: IconType = React.forwardRef(function SiRyanair({title = 'Ryanair', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRyanair as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiRye.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRye.tsx new file mode 100644 index 000000000..ffbd23ebf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiRye.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiRyeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiRye: IconType = React.forwardRef(function SiRye({title = 'Rye', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiRye as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiS7airlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiS7airlines.tsx new file mode 100644 index 000000000..17eabf090 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiS7airlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiS7airlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C4D600'; + + const SiS7airlines: IconType = React.forwardRef(function SiS7airlines({title = 'S7 Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiS7airlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSabanci.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSabanci.tsx new file mode 100644 index 000000000..f4170c41c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSabanci.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSabanciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004B93'; + + const SiSabanci: IconType = React.forwardRef(function SiSabanci({title = 'Sabanci', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSabanci as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSafari.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSafari.tsx new file mode 100644 index 000000000..6ae5f0abd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSafari.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSafariProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006CFF'; + + const SiSafari: IconType = React.forwardRef(function SiSafari({title = 'Safari', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSafari as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSage.tsx new file mode 100644 index 000000000..4d6a54b33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D639'; + + const SiSage: IconType = React.forwardRef(function SiSage({title = 'Sage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSagemath.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSagemath.tsx new file mode 100644 index 000000000..b4d0eb24e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSagemath.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSagemathProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3333FF'; + + const SiSagemath: IconType = React.forwardRef(function SiSagemath({title = 'SageMath', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSagemath as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSahibinden.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSahibinden.tsx new file mode 100644 index 000000000..9fadb9a7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSahibinden.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSahibindenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE800'; + + const SiSahibinden: IconType = React.forwardRef(function SiSahibinden({title = 'Sahibinden', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSahibinden as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSailfishos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSailfishos.tsx new file mode 100644 index 000000000..9d7f44932 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSailfishos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSailfishosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#053766'; + + const SiSailfishos: IconType = React.forwardRef(function SiSailfishos({title = 'Sailfish OS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSailfishos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSailsdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSailsdotjs.tsx new file mode 100644 index 000000000..2ff58afae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSailsdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSailsdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#14ACC2'; + + const SiSailsdotjs: IconType = React.forwardRef(function SiSailsdotjs({title = 'Sails.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSailsdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSalla.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSalla.tsx new file mode 100644 index 000000000..fdcaaec48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSalla.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSallaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BAF3E6'; + + const SiSalla: IconType = React.forwardRef(function SiSalla({title = 'Salla', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSalla as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaltproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaltproject.tsx new file mode 100644 index 000000000..1cd148c8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaltproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSaltprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#57BCAD'; + + const SiSaltproject: IconType = React.forwardRef(function SiSaltproject({title = 'Salt Project', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSaltproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsclub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsclub.tsx new file mode 100644 index 000000000..5c62809d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsclub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSamsclubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0067A0'; + + const SiSamsclub: IconType = React.forwardRef(function SiSamsclub({title = 'Sams Club', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSamsclub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsung.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsung.tsx new file mode 100644 index 000000000..6040b0ea6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsung.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSamsungProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1428A0'; + + const SiSamsung: IconType = React.forwardRef(function SiSamsung({title = 'Samsung', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSamsung as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsungpay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsungpay.tsx new file mode 100644 index 000000000..540a969df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSamsungpay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSamsungpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1428A0'; + + const SiSamsungpay: IconType = React.forwardRef(function SiSamsungpay({title = 'Samsung Pay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSamsungpay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanfranciscomunicipalrailway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanfranciscomunicipalrailway.tsx new file mode 100644 index 000000000..746c732bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanfranciscomunicipalrailway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSanfranciscomunicipalrailwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BA0C2F'; + + const SiSanfranciscomunicipalrailway: IconType = React.forwardRef(function SiSanfranciscomunicipalrailway({title = 'San Francisco Municipal Railway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSanfranciscomunicipalrailway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanic.tsx new file mode 100644 index 000000000..17a790752 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSanicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0D68'; + + const SiSanic: IconType = React.forwardRef(function SiSanic({title = 'Sanic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSanic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanity.tsx new file mode 100644 index 000000000..0524ea194 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSanity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSanityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D0E12'; + + const SiSanity: IconType = React.forwardRef(function SiSanity({title = 'Sanity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSanity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaopaulometro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaopaulometro.tsx new file mode 100644 index 000000000..2ac6792c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaopaulometro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSaopaulometroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004382'; + + const SiSaopaulometro: IconType = React.forwardRef(function SiSaopaulometro({title = 'São Paulo Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSaopaulometro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSap.tsx new file mode 100644 index 000000000..38f36b7d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0FAAFF'; + + const SiSap: IconType = React.forwardRef(function SiSap({title = 'SAP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSartorius.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSartorius.tsx new file mode 100644 index 000000000..24b5bc7ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSartorius.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSartoriusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFED00'; + + const SiSartorius: IconType = React.forwardRef(function SiSartorius({title = 'Sartorius', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSartorius as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSass.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSass.tsx new file mode 100644 index 000000000..db4ec8a44 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSass.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSassProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC6699'; + + const SiSass: IconType = React.forwardRef(function SiSass({title = 'Sass', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSass as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSat1.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSat1.tsx new file mode 100644 index 000000000..022984f5f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSat1.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSat1Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#047DA3'; + + const SiSat1: IconType = React.forwardRef(function SiSat1({title = 'Sat.1', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSat1 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSatellite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSatellite.tsx new file mode 100644 index 000000000..2ebc83df4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSatellite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSatelliteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSatellite: IconType = React.forwardRef(function SiSatellite({title = 'Satellite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSatellite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaturn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaturn.tsx new file mode 100644 index 000000000..9ebf88f42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaturn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSaturnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB680B'; + + const SiSaturn: IconType = React.forwardRef(function SiSaturn({title = 'Saturn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSaturn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaucelabs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaucelabs.tsx new file mode 100644 index 000000000..598f4d28a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaucelabs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSaucelabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DDC91'; + + const SiSaucelabs: IconType = React.forwardRef(function SiSaucelabs({title = 'Sauce Labs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSaucelabs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaudia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaudia.tsx new file mode 100644 index 000000000..aa8c886ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSaudia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSaudiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#026938'; + + const SiSaudia: IconType = React.forwardRef(function SiSaudia({title = 'Saudia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSaudia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScala.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScala.tsx new file mode 100644 index 000000000..ebe002e8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScala.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScalaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DC322F'; + + const SiScala: IconType = React.forwardRef(function SiScala({title = 'Scala', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScala as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScalar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScalar.tsx new file mode 100644 index 000000000..e79420d64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScalar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScalarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1A1A'; + + const SiScalar: IconType = React.forwardRef(function SiScalar({title = 'Scalar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScalar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScaleway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScaleway.tsx new file mode 100644 index 000000000..1c2dfa9b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScaleway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScalewayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4F0599'; + + const SiScaleway: IconType = React.forwardRef(function SiScaleway({title = 'Scaleway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScaleway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScan.tsx new file mode 100644 index 000000000..ad9f86929 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004C97'; + + const SiScan: IconType = React.forwardRef(function SiScan({title = 'Scan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScania.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScania.tsx new file mode 100644 index 000000000..0cb62e247 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScania.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScaniaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#041E42'; + + const SiScania: IconType = React.forwardRef(function SiScania({title = 'Scania', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScania as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSchneiderelectric.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSchneiderelectric.tsx new file mode 100644 index 000000000..a4cec1307 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSchneiderelectric.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSchneiderelectricProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3DCD58'; + + const SiSchneiderelectric: IconType = React.forwardRef(function SiSchneiderelectric({title = 'Schneider Electric', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSchneiderelectric as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScikitlearn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScikitlearn.tsx new file mode 100644 index 000000000..3f293f635 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScikitlearn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScikitlearnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7931E'; + + const SiScikitlearn: IconType = React.forwardRef(function SiScikitlearn({title = 'scikit-learn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScikitlearn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScilab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScilab.tsx new file mode 100644 index 000000000..2206c578b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScilab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScilabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD1925'; + + const SiScilab: IconType = React.forwardRef(function SiScilab({title = 'Scilab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScilab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScipy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScipy.tsx new file mode 100644 index 000000000..aa7f46cb5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScipy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScipyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8CAAE6'; + + const SiScipy: IconType = React.forwardRef(function SiScipy({title = 'SciPy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScipy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScopus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScopus.tsx new file mode 100644 index 000000000..8f52c3862 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScopus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScopusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E9711C'; + + const SiScopus: IconType = React.forwardRef(function SiScopus({title = 'Scopus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScopus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScpfoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScpfoundation.tsx new file mode 100644 index 000000000..2bc9b831f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScpfoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScpfoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiScpfoundation: IconType = React.forwardRef(function SiScpfoundation({title = 'SCP Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScpfoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrapbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrapbox.tsx new file mode 100644 index 000000000..69c0adb3d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrapbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScrapboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#06B632'; + + const SiScrapbox: IconType = React.forwardRef(function SiScrapbox({title = 'Scrapbox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScrapbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrapy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrapy.tsx new file mode 100644 index 000000000..2747bfd64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrapy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScrapyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#60A839'; + + const SiScrapy: IconType = React.forwardRef(function SiScrapy({title = 'Scrapy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScrapy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScratch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScratch.tsx new file mode 100644 index 000000000..a5a6ef703 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScratch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScratchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#855CD6'; + + const SiScratch: IconType = React.forwardRef(function SiScratch({title = 'Scratch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScratch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScreencastify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScreencastify.tsx new file mode 100644 index 000000000..6744793e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScreencastify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScreencastifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8282'; + + const SiScreencastify: IconType = React.forwardRef(function SiScreencastify({title = 'Screencastify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScreencastify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrimba.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrimba.tsx new file mode 100644 index 000000000..29386f987 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrimba.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScrimbaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2B283A'; + + const SiScrimba: IconType = React.forwardRef(function SiScrimba({title = 'Scrimba', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScrimba as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrollreveal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrollreveal.tsx new file mode 100644 index 000000000..765ba5350 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrollreveal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScrollrevealProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCB36'; + + const SiScrollreveal: IconType = React.forwardRef(function SiScrollreveal({title = 'ScrollReveal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScrollreveal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrumalliance.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrumalliance.tsx new file mode 100644 index 000000000..6a91bba36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrumalliance.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScrumallianceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009FDA'; + + const SiScrumalliance: IconType = React.forwardRef(function SiScrumalliance({title = 'Scrum Alliance', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScrumalliance as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrutinizerci.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrutinizerci.tsx new file mode 100644 index 000000000..8d59e130b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScrutinizerci.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScrutinizerciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8A9296'; + + const SiScrutinizerci: IconType = React.forwardRef(function SiScrutinizerci({title = 'Scrutinizer CI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScrutinizerci as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiScylladb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScylladb.tsx new file mode 100644 index 000000000..ec17c79ba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiScylladb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiScylladbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6CD5E7'; + + const SiScylladb: IconType = React.forwardRef(function SiScylladb({title = 'ScyllaDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiScylladb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeafile.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeafile.tsx new file mode 100644 index 000000000..51cb2a2ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeafile.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSeafileProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9800'; + + const SiSeafile: IconType = React.forwardRef(function SiSeafile({title = 'Seafile', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSeafile as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeagate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeagate.tsx new file mode 100644 index 000000000..e647e163c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeagate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSeagateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6EBE49'; + + const SiSeagate: IconType = React.forwardRef(function SiSeagate({title = 'Seagate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSeagate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSearxng.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSearxng.tsx new file mode 100644 index 000000000..75278eaa8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSearxng.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSearxngProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3050FF'; + + const SiSearxng: IconType = React.forwardRef(function SiSearxng({title = 'SearXNG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSearxng as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeat.tsx new file mode 100644 index 000000000..97e07bf93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSeatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#33302E'; + + const SiSeat: IconType = React.forwardRef(function SiSeat({title = 'SEAT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSeat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeatgeek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeatgeek.tsx new file mode 100644 index 000000000..b67c76b1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSeatgeek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSeatgeekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5B49'; + + const SiSeatgeek: IconType = React.forwardRef(function SiSeatgeek({title = 'SeatGeek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSeatgeek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSecurityscorecard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSecurityscorecard.tsx new file mode 100644 index 000000000..b8cdd5da4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSecurityscorecard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSecurityscorecardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7033FD'; + + const SiSecurityscorecard: IconType = React.forwardRef(function SiSecurityscorecard({title = 'SecurityScorecard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSecurityscorecard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSefaria.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSefaria.tsx new file mode 100644 index 000000000..73223e93f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSefaria.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSefariaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212E50'; + + const SiSefaria: IconType = React.forwardRef(function SiSefaria({title = 'Sefaria', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSefaria as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSega.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSega.tsx new file mode 100644 index 000000000..2abccb0cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSega.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSegaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0089CF'; + + const SiSega: IconType = React.forwardRef(function SiSega({title = 'Sega', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSega as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSelenium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSelenium.tsx new file mode 100644 index 000000000..02b8a82d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSelenium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSeleniumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#43B02A'; + + const SiSelenium: IconType = React.forwardRef(function SiSelenium({title = 'Selenium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSelenium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSellfy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSellfy.tsx new file mode 100644 index 000000000..d775a2e13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSellfy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSellfyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21B352'; + + const SiSellfy: IconType = React.forwardRef(function SiSellfy({title = 'Sellfy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSellfy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticrelease.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticrelease.tsx new file mode 100644 index 000000000..5320c25b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticrelease.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemanticreleaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#494949'; + + const SiSemanticrelease: IconType = React.forwardRef(function SiSemanticrelease({title = 'semantic-release', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemanticrelease as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticscholar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticscholar.tsx new file mode 100644 index 000000000..ae39ced9f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticscholar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemanticscholarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1857B6'; + + const SiSemanticscholar: IconType = React.forwardRef(function SiSemanticscholar({title = 'Semantic Scholar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemanticscholar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticui.tsx new file mode 100644 index 000000000..794539116 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemanticuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B5AD'; + + const SiSemanticui: IconType = React.forwardRef(function SiSemanticui({title = 'Semantic UI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemanticui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticuireact.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticuireact.tsx new file mode 100644 index 000000000..daa80ac86 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticuireact.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemanticuireactProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#35BDB2'; + + const SiSemanticuireact: IconType = React.forwardRef(function SiSemanticuireact({title = 'Semantic UI React', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemanticuireact as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticweb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticweb.tsx new file mode 100644 index 000000000..0c161764a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemanticweb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemanticwebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005A9C'; + + const SiSemanticweb: IconType = React.forwardRef(function SiSemanticweb({title = 'Semantic Web', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemanticweb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemaphoreci.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemaphoreci.tsx new file mode 100644 index 000000000..a64cac408 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemaphoreci.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemaphoreciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#19A974'; + + const SiSemaphoreci: IconType = React.forwardRef(function SiSemaphoreci({title = 'Semaphore CI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemaphoreci as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemrush.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemrush.tsx new file mode 100644 index 000000000..e89abd6e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemrush.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemrushProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF642D'; + + const SiSemrush: IconType = React.forwardRef(function SiSemrush({title = 'Semrush', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemrush as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemver.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemver.tsx new file mode 100644 index 000000000..da91031b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSemver.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSemverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3F4551'; + + const SiSemver: IconType = React.forwardRef(function SiSemver({title = 'SemVer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSemver as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSencha.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSencha.tsx new file mode 100644 index 000000000..f9ecf07d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSencha.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSenchaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#86BC40'; + + const SiSencha: IconType = React.forwardRef(function SiSencha({title = 'Sencha', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSencha as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSennheiser.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSennheiser.tsx new file mode 100644 index 000000000..a76b1ae2c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSennheiser.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSennheiserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSennheiser: IconType = React.forwardRef(function SiSennheiser({title = 'Sennheiser', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSennheiser as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSensu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSensu.tsx new file mode 100644 index 000000000..2236312d7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSensu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSensuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#89C967'; + + const SiSensu: IconType = React.forwardRef(function SiSensu({title = 'Sensu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSensu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSentry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSentry.tsx new file mode 100644 index 000000000..7335aabbd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSentry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSentryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#362D59'; + + const SiSentry: IconType = React.forwardRef(function SiSentry({title = 'Sentry', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSentry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSepa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSepa.tsx new file mode 100644 index 000000000..efb2c573e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSepa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSepaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2350A9'; + + const SiSepa: IconType = React.forwardRef(function SiSepa({title = 'SEPA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSepa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSequelize.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSequelize.tsx new file mode 100644 index 000000000..47fed01e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSequelize.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSequelizeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#52B0E7'; + + const SiSequelize: IconType = React.forwardRef(function SiSequelize({title = 'Sequelize', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSequelize as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiServbay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiServbay.tsx new file mode 100644 index 000000000..2e10f85c4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiServbay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiServbayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00103C'; + + const SiServbay: IconType = React.forwardRef(function SiServbay({title = 'ServBay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiServbay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiServerfault.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiServerfault.tsx new file mode 100644 index 000000000..bf5e344ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiServerfault.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiServerfaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E7282D'; + + const SiServerfault: IconType = React.forwardRef(function SiServerfault({title = 'Server Fault', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiServerfault as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiServerless.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiServerless.tsx new file mode 100644 index 000000000..01030e42b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiServerless.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiServerlessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD5750'; + + const SiServerless: IconType = React.forwardRef(function SiServerless({title = 'Serverless', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiServerless as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSession.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSession.tsx new file mode 100644 index 000000000..d094739bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSession.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSessionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSession: IconType = React.forwardRef(function SiSession({title = 'Session', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSession as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSessionize.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSessionize.tsx new file mode 100644 index 000000000..3873bf677 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSessionize.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSessionizeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1AB394'; + + const SiSessionize: IconType = React.forwardRef(function SiSessionize({title = 'Sessionize', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSessionize as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSetapp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSetapp.tsx new file mode 100644 index 000000000..75e44bad0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSetapp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSetappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6C3A5'; + + const SiSetapp: IconType = React.forwardRef(function SiSetapp({title = 'Setapp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSetapp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSetuptools.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSetuptools.tsx new file mode 100644 index 000000000..dad23b9bc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSetuptools.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSetuptoolsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#336790'; + + const SiSetuptools: IconType = React.forwardRef(function SiSetuptools({title = 'Setuptools', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSetuptools as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSfml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSfml.tsx new file mode 100644 index 000000000..93a4480a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSfml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSfmlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8CC445'; + + const SiSfml: IconType = React.forwardRef(function SiSfml({title = 'SFML', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSfml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShadcnui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShadcnui.tsx new file mode 100644 index 000000000..ca354cbda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShadcnui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShadcnuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiShadcnui: IconType = React.forwardRef(function SiShadcnui({title = 'shadcn/ui', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShadcnui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShadow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShadow.tsx new file mode 100644 index 000000000..92d33638e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShadow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShadowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0C0D'; + + const SiShadow: IconType = React.forwardRef(function SiShadow({title = 'Shadow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShadow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShanghaimetro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShanghaimetro.tsx new file mode 100644 index 000000000..3e560f267 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShanghaimetro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShanghaimetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC1C24'; + + const SiShanghaimetro: IconType = React.forwardRef(function SiShanghaimetro({title = 'Shanghai Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShanghaimetro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSharex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSharex.tsx new file mode 100644 index 000000000..72a23e05f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSharex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSharexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2885F1'; + + const SiSharex: IconType = React.forwardRef(function SiSharex({title = 'ShareX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSharex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSharp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSharp.tsx new file mode 100644 index 000000000..935edb8ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSharp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSharpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#99CC00'; + + const SiSharp: IconType = React.forwardRef(function SiSharp({title = 'sharp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSharp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShazam.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShazam.tsx new file mode 100644 index 000000000..772b7ecb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShazam.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShazamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0088FF'; + + const SiShazam: IconType = React.forwardRef(function SiShazam({title = 'Shazam', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShazam as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShell.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShell.tsx new file mode 100644 index 000000000..33084bfad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShell.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD500'; + + const SiShell: IconType = React.forwardRef(function SiShell({title = 'Shell', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShell as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShelly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShelly.tsx new file mode 100644 index 000000000..a10f82a2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShelly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShellyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4495D1'; + + const SiShelly: IconType = React.forwardRef(function SiShelly({title = 'Shelly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShelly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShenzhenmetro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShenzhenmetro.tsx new file mode 100644 index 000000000..d23191dff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShenzhenmetro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShenzhenmetroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009943'; + + const SiShenzhenmetro: IconType = React.forwardRef(function SiShenzhenmetro({title = 'Shenzhen Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShenzhenmetro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShieldsdotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShieldsdotio.tsx new file mode 100644 index 000000000..400524d23 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShieldsdotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShieldsdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiShieldsdotio: IconType = React.forwardRef(function SiShieldsdotio({title = 'Shields.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShieldsdotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShikimori.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShikimori.tsx new file mode 100644 index 000000000..0df350d8b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShikimori.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShikimoriProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#343434'; + + const SiShikimori: IconType = React.forwardRef(function SiShikimori({title = 'Shikimori', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShikimori as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopee.tsx new file mode 100644 index 000000000..40b8c1f7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShopeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE4D2D'; + + const SiShopee: IconType = React.forwardRef(function SiShopee({title = 'Shopee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShopee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopify.tsx new file mode 100644 index 000000000..116b5689c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShopifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7AB55C'; + + const SiShopify: IconType = React.forwardRef(function SiShopify({title = 'Shopify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShopify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopware.tsx new file mode 100644 index 000000000..551f1172d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShopware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShopwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#189EFF'; + + const SiShopware: IconType = React.forwardRef(function SiShopware({title = 'Shopware', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShopware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShortcut.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShortcut.tsx new file mode 100644 index 000000000..126386fdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShortcut.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShortcutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#58B1E4'; + + const SiShortcut: IconType = React.forwardRef(function SiShortcut({title = 'Shortcut', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShortcut as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowpad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowpad.tsx new file mode 100644 index 000000000..311969b71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowpad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShowpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D2E83'; + + const SiShowpad: IconType = React.forwardRef(function SiShowpad({title = 'Showpad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShowpad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowtime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowtime.tsx new file mode 100644 index 000000000..1dab4d89e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowtime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShowtimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B10000'; + + const SiShowtime: IconType = React.forwardRef(function SiShowtime({title = 'Showtime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShowtime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowwcase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowwcase.tsx new file mode 100644 index 000000000..251e0c73f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiShowwcase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiShowwcaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0D14'; + + const SiShowwcase: IconType = React.forwardRef(function SiShowwcase({title = 'Showwcase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiShowwcase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSidekiq.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSidekiq.tsx new file mode 100644 index 000000000..5538cdcf2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSidekiq.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSidekiqProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B1003E'; + + const SiSidekiq: IconType = React.forwardRef(function SiSidekiq({title = 'Sidekiq', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSidekiq as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSidequest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSidequest.tsx new file mode 100644 index 000000000..298e5b9ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSidequest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSidequestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#101227'; + + const SiSidequest: IconType = React.forwardRef(function SiSidequest({title = 'SideQuest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSidequest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSiemens.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSiemens.tsx new file mode 100644 index 000000000..261ac595d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSiemens.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSiemensProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009999'; + + const SiSiemens: IconType = React.forwardRef(function SiSiemens({title = 'Siemens', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSiemens as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSifive.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSifive.tsx new file mode 100644 index 000000000..230ccda5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSifive.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSifiveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#252323'; + + const SiSifive: IconType = React.forwardRef(function SiSifive({title = 'SiFive', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSifive as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSignal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSignal.tsx new file mode 100644 index 000000000..ad1f19063 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSignal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSignalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B45FD'; + + const SiSignal: IconType = React.forwardRef(function SiSignal({title = 'Signal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSignal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSilverairways.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSilverairways.tsx new file mode 100644 index 000000000..db4610026 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSilverairways.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSilverairwaysProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D0006F'; + + const SiSilverairways: IconType = React.forwardRef(function SiSilverairways({title = 'Silver Airways', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSilverairways as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimilarweb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimilarweb.tsx new file mode 100644 index 000000000..706d27265 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimilarweb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimilarwebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#092540'; + + const SiSimilarweb: IconType = React.forwardRef(function SiSimilarweb({title = 'Similarweb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimilarweb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimkl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimkl.tsx new file mode 100644 index 000000000..2514cdefe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimkl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimklProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSimkl: IconType = React.forwardRef(function SiSimkl({title = 'Simkl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimkl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimpleanalytics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimpleanalytics.tsx new file mode 100644 index 000000000..331f2f7ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimpleanalytics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimpleanalyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4F64'; + + const SiSimpleanalytics: IconType = React.forwardRef(function SiSimpleanalytics({title = 'Simple Analytics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimpleanalytics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimpleicons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimpleicons.tsx new file mode 100644 index 000000000..b2eaba62e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimpleicons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimpleiconsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111111'; + + const SiSimpleicons: IconType = React.forwardRef(function SiSimpleicons({title = 'Simple Icons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimpleicons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplelocalize.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplelocalize.tsx new file mode 100644 index 000000000..4cafd3f90 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplelocalize.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimplelocalizeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#222B33'; + + const SiSimplelocalize: IconType = React.forwardRef(function SiSimplelocalize({title = 'SimpleLocalize', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimplelocalize as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplelogin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplelogin.tsx new file mode 100644 index 000000000..8e02145a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplelogin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimpleloginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA319F'; + + const SiSimplelogin: IconType = React.forwardRef(function SiSimplelogin({title = 'SimpleLogin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimplelogin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplenote.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplenote.tsx new file mode 100644 index 000000000..cd642e940 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplenote.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimplenoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3361CC'; + + const SiSimplenote: IconType = React.forwardRef(function SiSimplenote({title = 'Simplenote', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimplenote as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplex.tsx new file mode 100644 index 000000000..24e431ec8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSimplex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSimplexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSimplex: IconType = React.forwardRef(function SiSimplex({title = 'SimpleX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSimplex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSinaweibo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSinaweibo.tsx new file mode 100644 index 000000000..9be0c17e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSinaweibo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSinaweiboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E6162D'; + + const SiSinaweibo: IconType = React.forwardRef(function SiSinaweibo({title = 'Sina Weibo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSinaweibo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSingaporeairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSingaporeairlines.tsx new file mode 100644 index 000000000..a0256c231 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSingaporeairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSingaporeairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F99F1C'; + + const SiSingaporeairlines: IconType = React.forwardRef(function SiSingaporeairlines({title = 'Singapore Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSingaporeairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSinglestore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSinglestore.tsx new file mode 100644 index 000000000..f39addcac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSinglestore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSinglestoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AA00FF'; + + const SiSinglestore: IconType = React.forwardRef(function SiSinglestore({title = 'SingleStore', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSinglestore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSitecore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSitecore.tsx new file mode 100644 index 000000000..cf6114d5d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSitecore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSitecoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB1F1F'; + + const SiSitecore: IconType = React.forwardRef(function SiSitecore({title = 'Sitecore', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSitecore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSitepoint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSitepoint.tsx new file mode 100644 index 000000000..f9bfea5bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSitepoint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSitepointProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#258AAF'; + + const SiSitepoint: IconType = React.forwardRef(function SiSitepoint({title = 'SitePoint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSitepoint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSiyuan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSiyuan.tsx new file mode 100644 index 000000000..3b26cbd0c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSiyuan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSiyuanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D23F31'; + + const SiSiyuan: IconType = React.forwardRef(function SiSiyuan({title = 'SiYuan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSiyuan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkaffold.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkaffold.tsx new file mode 100644 index 000000000..cae6d9081 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkaffold.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSkaffoldProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2AA2D6'; + + const SiSkaffold: IconType = React.forwardRef(function SiSkaffold({title = 'Skaffold', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSkaffold as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkeleton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkeleton.tsx new file mode 100644 index 000000000..0bdf5ba9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkeleton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSkeletonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSkeleton: IconType = React.forwardRef(function SiSkeleton({title = 'Skeleton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSkeleton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketch.tsx new file mode 100644 index 000000000..defffa489 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSketchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7B500'; + + const SiSketch: IconType = React.forwardRef(function SiSketch({title = 'Sketch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSketch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketchfab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketchfab.tsx new file mode 100644 index 000000000..ddc2a6b22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketchfab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSketchfabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1CAAD9'; + + const SiSketchfab: IconType = React.forwardRef(function SiSketchfab({title = 'Sketchfab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSketchfab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketchup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketchup.tsx new file mode 100644 index 000000000..8d992d059 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSketchup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSketchupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005F9E'; + + const SiSketchup: IconType = React.forwardRef(function SiSketchup({title = 'SketchUp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSketchup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkillshare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkillshare.tsx new file mode 100644 index 000000000..d2b9b1461 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkillshare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSkillshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FF84'; + + const SiSkillshare: IconType = React.forwardRef(function SiSkillshare({title = 'Skillshare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSkillshare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkoda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkoda.tsx new file mode 100644 index 000000000..86be048ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkoda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSkodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E3A2F'; + + const SiSkoda: IconType = React.forwardRef(function SiSkoda({title = 'ŠKODA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSkoda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSky.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSky.tsx new file mode 100644 index 000000000..6493e4e5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSky.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSkyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0072C9'; + + const SiSky: IconType = React.forwardRef(function SiSky({title = 'Sky', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSky as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkypack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkypack.tsx new file mode 100644 index 000000000..50211cd58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSkypack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSkypackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3167FF'; + + const SiSkypack: IconType = React.forwardRef(function SiSkypack({title = 'Skypack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSkypack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlackware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlackware.tsx new file mode 100644 index 000000000..9dbae07b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlackware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSlackwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSlackware: IconType = React.forwardRef(function SiSlackware({title = 'Slackware', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSlackware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlashdot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlashdot.tsx new file mode 100644 index 000000000..990202429 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlashdot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSlashdotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#026664'; + + const SiSlashdot: IconType = React.forwardRef(function SiSlashdot({title = 'Slashdot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSlashdot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlickpic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlickpic.tsx new file mode 100644 index 000000000..651a86aa6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlickpic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSlickpicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF880F'; + + const SiSlickpic: IconType = React.forwardRef(function SiSlickpic({title = 'SlickPic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSlickpic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlides.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlides.tsx new file mode 100644 index 000000000..fd9c93b35 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlides.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSlidesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E4637C'; + + const SiSlides: IconType = React.forwardRef(function SiSlides({title = 'Slides', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSlides as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlideshare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlideshare.tsx new file mode 100644 index 000000000..b60d7644c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlideshare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSlideshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008ED2'; + + const SiSlideshare: IconType = React.forwardRef(function SiSlideshare({title = 'SlideShare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSlideshare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlint.tsx new file mode 100644 index 000000000..549486406 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSlint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSlintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2379F4'; + + const SiSlint: IconType = React.forwardRef(function SiSlint({title = 'Slint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSlint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmart.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmart.tsx new file mode 100644 index 000000000..163f2f8ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmart.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSmartProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D7E600'; + + const SiSmart: IconType = React.forwardRef(function SiSmart({title = 'smart', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSmart as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmartthings.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmartthings.tsx new file mode 100644 index 000000000..c87dd34be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmartthings.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSmartthingsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#15BFFF'; + + const SiSmartthings: IconType = React.forwardRef(function SiSmartthings({title = 'SmartThings', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSmartthings as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmashingmagazine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmashingmagazine.tsx new file mode 100644 index 000000000..d452fa7ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmashingmagazine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSmashingmagazineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E85C33'; + + const SiSmashingmagazine: IconType = React.forwardRef(function SiSmashingmagazine({title = 'Smashing Magazine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSmashingmagazine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmoothcomp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmoothcomp.tsx new file mode 100644 index 000000000..87c7c7aea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmoothcomp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSmoothcompProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSmoothcomp: IconType = React.forwardRef(function SiSmoothcomp({title = 'Smoothcomp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSmoothcomp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmrt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmrt.tsx new file mode 100644 index 000000000..3abf61d4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmrt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSmrtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE2E24'; + + const SiSmrt: IconType = React.forwardRef(function SiSmrt({title = 'SMRT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSmrt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmugmug.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmugmug.tsx new file mode 100644 index 000000000..bc9dda1a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSmugmug.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSmugmugProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6DB944'; + + const SiSmugmug: IconType = React.forwardRef(function SiSmugmug({title = 'SmugMug', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSmugmug as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapchat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapchat.tsx new file mode 100644 index 000000000..7f022611c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapchat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnapchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFC00'; + + const SiSnapchat: IconType = React.forwardRef(function SiSnapchat({title = 'Snapchat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnapchat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapcraft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapcraft.tsx new file mode 100644 index 000000000..b73b3c343 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapcraft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnapcraftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E95420'; + + const SiSnapcraft: IconType = React.forwardRef(function SiSnapcraft({title = 'Snapcraft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnapcraft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapdragon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapdragon.tsx new file mode 100644 index 000000000..79ba1d2b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnapdragon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnapdragonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C33139'; + + const SiSnapdragon: IconType = React.forwardRef(function SiSnapdragon({title = 'Snapdragon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnapdragon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSncf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSncf.tsx new file mode 100644 index 000000000..d373bd614 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSncf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSncfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CA0939'; + + const SiSncf: IconType = React.forwardRef(function SiSncf({title = 'SNCF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSncf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnort.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnort.tsx new file mode 100644 index 000000000..ebb355782 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnort.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnortProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F6A7AA'; + + const SiSnort: IconType = React.forwardRef(function SiSnort({title = 'Snort', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnort as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnowflake.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnowflake.tsx new file mode 100644 index 000000000..e29cabc1e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnowflake.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnowflakeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#29B5E8'; + + const SiSnowflake: IconType = React.forwardRef(function SiSnowflake({title = 'Snowflake', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnowflake as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnowpack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnowpack.tsx new file mode 100644 index 000000000..78b2144bd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnowpack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnowpackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E5E82'; + + const SiSnowpack: IconType = React.forwardRef(function SiSnowpack({title = 'Snowpack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnowpack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnyk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnyk.tsx new file mode 100644 index 000000000..9c3dfef1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSnyk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSnykProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4C4A73'; + + const SiSnyk: IconType = React.forwardRef(function SiSnyk({title = 'Snyk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSnyk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocialblade.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocialblade.tsx new file mode 100644 index 000000000..9d0452741 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocialblade.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSocialbladeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B3382C'; + + const SiSocialblade: IconType = React.forwardRef(function SiSocialblade({title = 'Social Blade', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSocialblade as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSociety6.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSociety6.tsx new file mode 100644 index 000000000..ab021d7d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSociety6.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSociety6Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSociety6: IconType = React.forwardRef(function SiSociety6({title = 'Society6', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSociety6 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocket.tsx new file mode 100644 index 000000000..61ebf85f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C93CD7'; + + const SiSocket: IconType = React.forwardRef(function SiSocket({title = 'Socket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSocket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocketdotio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocketdotio.tsx new file mode 100644 index 000000000..8f3edcb88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSocketdotio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSocketdotioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#010101'; + + const SiSocketdotio: IconType = React.forwardRef(function SiSocketdotio({title = 'Socket.io', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSocketdotio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoftcatala.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoftcatala.tsx new file mode 100644 index 000000000..27d763fd6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoftcatala.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSoftcatalaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BA2626'; + + const SiSoftcatala: IconType = React.forwardRef(function SiSoftcatala({title = 'Softcatalà', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSoftcatala as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoftpedia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoftpedia.tsx new file mode 100644 index 000000000..2fded226d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoftpedia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSoftpediaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002873'; + + const SiSoftpedia: IconType = React.forwardRef(function SiSoftpedia({title = 'Softpedia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSoftpedia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSogou.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSogou.tsx new file mode 100644 index 000000000..cfae68450 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSogou.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSogouProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB6022'; + + const SiSogou: IconType = React.forwardRef(function SiSogou({title = 'Sogou', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSogou as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolana.tsx new file mode 100644 index 000000000..ef2b0c747 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSolanaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9945FF'; + + const SiSolana: IconType = React.forwardRef(function SiSolana({title = 'Solana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSolana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolid.tsx new file mode 100644 index 000000000..c222d722c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSolidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C4F7C'; + + const SiSolid: IconType = React.forwardRef(function SiSolid({title = 'Solid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSolid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolidity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolidity.tsx new file mode 100644 index 000000000..bb46d0868 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolidity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSolidityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#363636'; + + const SiSolidity: IconType = React.forwardRef(function SiSolidity({title = 'Solidity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSolidity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSololearn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSololearn.tsx new file mode 100644 index 000000000..7634f5099 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSololearn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSololearnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#149EF2'; + + const SiSololearn: IconType = React.forwardRef(function SiSololearn({title = 'Sololearn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSololearn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolus.tsx new file mode 100644 index 000000000..19c7904f7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSolus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSolusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5294E2'; + + const SiSolus: IconType = React.forwardRef(function SiSolus({title = 'Solus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSolus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonar.tsx new file mode 100644 index 000000000..c7cc5c17e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD3456'; + + const SiSonar: IconType = React.forwardRef(function SiSonar({title = 'Sonar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubecloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubecloud.tsx new file mode 100644 index 000000000..661c01682 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubecloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonarqubecloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#126ED3'; + + const SiSonarqubecloud: IconType = React.forwardRef(function SiSonarqubecloud({title = 'SonarQube Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonarqubecloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubeforide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubeforide.tsx new file mode 100644 index 000000000..d75445872 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubeforide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonarqubeforideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#126ED3'; + + const SiSonarqubeforide: IconType = React.forwardRef(function SiSonarqubeforide({title = 'SonarQube for IDE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonarqubeforide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubeserver.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubeserver.tsx new file mode 100644 index 000000000..341bcad13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarqubeserver.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonarqubeserverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#126ED3'; + + const SiSonarqubeserver: IconType = React.forwardRef(function SiSonarqubeserver({title = 'SonarQube Server', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonarqubeserver as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarr.tsx new file mode 100644 index 000000000..8ddf8b0cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonarr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonarrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2596BE'; + + const SiSonarr: IconType = React.forwardRef(function SiSonarr({title = 'sonarr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonarr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonatype.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonatype.tsx new file mode 100644 index 000000000..ddaa873e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonatype.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonatypeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1B1C30'; + + const SiSonatype: IconType = React.forwardRef(function SiSonatype({title = 'Sonatype', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonatype as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSongkick.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSongkick.tsx new file mode 100644 index 000000000..a08f79bb7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSongkick.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSongkickProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F80046'; + + const SiSongkick: IconType = React.forwardRef(function SiSongkick({title = 'Songkick', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSongkick as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSongoda.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSongoda.tsx new file mode 100644 index 000000000..44a81964e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSongoda.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSongodaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC494A'; + + const SiSongoda: IconType = React.forwardRef(function SiSongoda({title = 'Songoda', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSongoda as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonicwall.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonicwall.tsx new file mode 100644 index 000000000..671f906c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonicwall.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonicwallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF791A'; + + const SiSonicwall: IconType = React.forwardRef(function SiSonicwall({title = 'SonicWall', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonicwall as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonos.tsx new file mode 100644 index 000000000..683891500 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSonos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSonos: IconType = React.forwardRef(function SiSonos({title = 'Sonos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSonos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSony.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSony.tsx new file mode 100644 index 000000000..158634c3c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSony.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSonyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiSony: IconType = React.forwardRef(function SiSony({title = 'Sony', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSony as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoriana.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoriana.tsx new file mode 100644 index 000000000..f4042c5d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoriana.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSorianaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D52B1E'; + + const SiSoriana: IconType = React.forwardRef(function SiSoriana({title = 'Soriana', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSoriana as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoundcharts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoundcharts.tsx new file mode 100644 index 000000000..3b59ec4e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoundcharts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSoundchartsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C1528'; + + const SiSoundcharts: IconType = React.forwardRef(function SiSoundcharts({title = 'Soundcharts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSoundcharts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoundcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoundcloud.tsx new file mode 100644 index 000000000..997e2e7ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSoundcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSoundcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5500'; + + const SiSoundcloud: IconType = React.forwardRef(function SiSoundcloud({title = 'SoundCloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSoundcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourceengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourceengine.tsx new file mode 100644 index 000000000..603213513 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourceengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSourceengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F79A10'; + + const SiSourceengine: IconType = React.forwardRef(function SiSourceengine({title = 'Source Engine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSourceengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourceforge.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourceforge.tsx new file mode 100644 index 000000000..ed3f8bd55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourceforge.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSourceforgeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6600'; + + const SiSourceforge: IconType = React.forwardRef(function SiSourceforge({title = 'SourceForge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSourceforge as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourcehut.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourcehut.tsx new file mode 100644 index 000000000..1703533f3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourcehut.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSourcehutProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSourcehut: IconType = React.forwardRef(function SiSourcehut({title = 'SourceHut', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSourcehut as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourcetree.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourcetree.tsx new file mode 100644 index 000000000..3fcd5bea5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSourcetree.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSourcetreeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiSourcetree: IconType = React.forwardRef(function SiSourcetree({title = 'Sourcetree', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSourcetree as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSouthwestairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSouthwestairlines.tsx new file mode 100644 index 000000000..6bb1bd4f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSouthwestairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSouthwestairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#304CB2'; + + const SiSouthwestairlines: IconType = React.forwardRef(function SiSouthwestairlines({title = 'Southwest Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSouthwestairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacemacs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacemacs.tsx new file mode 100644 index 000000000..af823bae7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacemacs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpacemacsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9266CC'; + + const SiSpacemacs: IconType = React.forwardRef(function SiSpacemacs({title = 'Spacemacs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpacemacs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpaceship.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpaceship.tsx new file mode 100644 index 000000000..1791dada9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpaceship.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpaceshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#394EFF'; + + const SiSpaceship: IconType = React.forwardRef(function SiSpaceship({title = 'Spaceship', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpaceship as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacex.tsx new file mode 100644 index 000000000..b66a9a72b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpacexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSpacex: IconType = React.forwardRef(function SiSpacex({title = 'SpaceX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpacex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacy.tsx new file mode 100644 index 000000000..9af46b883 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpacy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpacyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09A3D5'; + + const SiSpacy: IconType = React.forwardRef(function SiSpacy({title = 'spaCy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpacy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkar.tsx new file mode 100644 index 000000000..bca8123cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSparkarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5C83'; + + const SiSparkar: IconType = React.forwardRef(function SiSparkar({title = 'Spark AR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSparkar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkasse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkasse.tsx new file mode 100644 index 000000000..2065e7128 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkasse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSparkasseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiSparkasse: IconType = React.forwardRef(function SiSparkasse({title = 'Sparkasse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSparkasse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkfun.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkfun.tsx new file mode 100644 index 000000000..aa1a54853 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkfun.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSparkfunProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E53525'; + + const SiSparkfun: IconType = React.forwardRef(function SiSparkfun({title = 'SparkFun', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSparkfun as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkpost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkpost.tsx new file mode 100644 index 000000000..6db19d276 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSparkpost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSparkpostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA6423'; + + const SiSparkpost: IconType = React.forwardRef(function SiSparkpost({title = 'SparkPost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSparkpost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpdx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpdx.tsx new file mode 100644 index 000000000..653a66f93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpdx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpdxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4398CC'; + + const SiSpdx: IconType = React.forwardRef(function SiSpdx({title = 'SPDX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpdx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeakerdeck.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeakerdeck.tsx new file mode 100644 index 000000000..3eff483eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeakerdeck.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpeakerdeckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009287'; + + const SiSpeakerdeck: IconType = React.forwardRef(function SiSpeakerdeck({title = 'Speaker Deck', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpeakerdeck as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpectrum.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpectrum.tsx new file mode 100644 index 000000000..65f51fab1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpectrum.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpectrumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7B16FF'; + + const SiSpectrum: IconType = React.forwardRef(function SiSpectrum({title = 'Spectrum', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpectrum as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeedtest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeedtest.tsx new file mode 100644 index 000000000..c0884dcfb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeedtest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpeedtestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#141526'; + + const SiSpeedtest: IconType = React.forwardRef(function SiSpeedtest({title = 'Speedtest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpeedtest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeedypage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeedypage.tsx new file mode 100644 index 000000000..38424a6ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpeedypage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpeedypageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C71F9'; + + const SiSpeedypage: IconType = React.forwardRef(function SiSpeedypage({title = 'SpeedyPage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpeedypage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSphinx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSphinx.tsx new file mode 100644 index 000000000..bf5effccc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSphinx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSphinxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSphinx: IconType = React.forwardRef(function SiSphinx({title = 'Sphinx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSphinx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpigotmc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpigotmc.tsx new file mode 100644 index 000000000..59bba6df3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpigotmc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpigotmcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED8106'; + + const SiSpigotmc: IconType = React.forwardRef(function SiSpigotmc({title = 'SpigotMC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpigotmc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpine.tsx new file mode 100644 index 000000000..276f88625 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4000'; + + const SiSpine: IconType = React.forwardRef(function SiSpine({title = 'Spine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpinnaker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpinnaker.tsx new file mode 100644 index 000000000..b84905cd0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpinnaker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpinnakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#139BB4'; + + const SiSpinnaker: IconType = React.forwardRef(function SiSpinnaker({title = 'Spinnaker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpinnaker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSplunk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSplunk.tsx new file mode 100644 index 000000000..1e500ea8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSplunk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSplunkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSplunk: IconType = React.forwardRef(function SiSplunk({title = 'Splunk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSplunk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpoj.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpoj.tsx new file mode 100644 index 000000000..682654cc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpoj.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpojProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#337AB7'; + + const SiSpoj: IconType = React.forwardRef(function SiSpoj({title = 'Sphere Online Judge', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpoj as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpond.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpond.tsx new file mode 100644 index 000000000..c858a9d0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpond.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpondProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE4353'; + + const SiSpond: IconType = React.forwardRef(function SiSpond({title = 'Spond', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpond as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpotify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpotify.tsx new file mode 100644 index 000000000..8362b7456 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpotify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpotifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1ED760'; + + const SiSpotify: IconType = React.forwardRef(function SiSpotify({title = 'Spotify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpotify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpotlight.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpotlight.tsx new file mode 100644 index 000000000..dc3045cd5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpotlight.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpotlightProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#352A71'; + + const SiSpotlight: IconType = React.forwardRef(function SiSpotlight({title = 'Spotlight', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpotlight as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpreadshirt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpreadshirt.tsx new file mode 100644 index 000000000..035fe576d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpreadshirt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpreadshirtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B2A5'; + + const SiSpreadshirt: IconType = React.forwardRef(function SiSpreadshirt({title = 'Spreadshirt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpreadshirt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpreaker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpreaker.tsx new file mode 100644 index 000000000..6299ce21e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpreaker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpreakerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F5C300'; + + const SiSpreaker: IconType = React.forwardRef(function SiSpreaker({title = 'Spreaker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpreaker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpring.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpring.tsx new file mode 100644 index 000000000..a8d89175a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpring.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpringProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6DB33F'; + + const SiSpring: IconType = React.forwardRef(function SiSpring({title = 'Spring', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpring as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringCreators.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringCreators.tsx new file mode 100644 index 000000000..397dbd08f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringCreators.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpringCreatorsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSpringCreators: IconType = React.forwardRef(function SiSpringCreators({title = 'Spring', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpringCreators as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringboot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringboot.tsx new file mode 100644 index 000000000..02bfa125a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringboot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpringbootProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6DB33F'; + + const SiSpringboot: IconType = React.forwardRef(function SiSpringboot({title = 'Spring Boot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpringboot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringsecurity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringsecurity.tsx new file mode 100644 index 000000000..f617409ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpringsecurity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpringsecurityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6DB33F'; + + const SiSpringsecurity: IconType = React.forwardRef(function SiSpringsecurity({title = 'Spring Security', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpringsecurity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpyderide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpyderide.tsx new file mode 100644 index 000000000..755d74865 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSpyderide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSpyderideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8C0000'; + + const SiSpyderide: IconType = React.forwardRef(function SiSpyderide({title = 'Spyder IDE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSpyderide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSqlalchemy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSqlalchemy.tsx new file mode 100644 index 000000000..88cd103a0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSqlalchemy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSqlalchemyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D71F00'; + + const SiSqlalchemy: IconType = React.forwardRef(function SiSqlalchemy({title = 'SQLAlchemy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSqlalchemy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSqlite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSqlite.tsx new file mode 100644 index 000000000..b1af5e042 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSqlite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSqliteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003B57'; + + const SiSqlite: IconType = React.forwardRef(function SiSqlite({title = 'SQLite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSqlite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquare.tsx new file mode 100644 index 000000000..5fb268f0a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSquareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3E4348'; + + const SiSquare: IconType = React.forwardRef(function SiSquare({title = 'Square', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSquare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquareenix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquareenix.tsx new file mode 100644 index 000000000..e292e15da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquareenix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSquareenixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiSquareenix: IconType = React.forwardRef(function SiSquareenix({title = 'Square Enix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSquareenix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquarespace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquarespace.tsx new file mode 100644 index 000000000..0a692be89 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSquarespace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSquarespaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSquarespace: IconType = React.forwardRef(function SiSquarespace({title = 'Squarespace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSquarespace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSrgssr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSrgssr.tsx new file mode 100644 index 000000000..691f8f6e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSrgssr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSrgssrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#AF001E'; + + const SiSrgssr: IconType = React.forwardRef(function SiSrgssr({title = 'SRG SSR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSrgssr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSsrn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSsrn.tsx new file mode 100644 index 000000000..5e1bc17c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSsrn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSsrnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#154881'; + + const SiSsrn: IconType = React.forwardRef(function SiSsrn({title = 'SSRN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSsrn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSst.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSst.tsx new file mode 100644 index 000000000..8fdd4d218 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSst.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSstProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E27152'; + + const SiSst: IconType = React.forwardRef(function SiSst({title = 'SST', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSst as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackbit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackbit.tsx new file mode 100644 index 000000000..2bc006f7b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackbit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#207BEA'; + + const SiStackbit: IconType = React.forwardRef(function SiStackbit({title = 'Stackbit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackbit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackblitz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackblitz.tsx new file mode 100644 index 000000000..eb64bbe2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackblitz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackblitzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1269D3'; + + const SiStackblitz: IconType = React.forwardRef(function SiStackblitz({title = 'StackBlitz', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackblitz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackedit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackedit.tsx new file mode 100644 index 000000000..a90d85021 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackedit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackeditProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#606060'; + + const SiStackedit: IconType = React.forwardRef(function SiStackedit({title = 'StackEdit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackedit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackexchange.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackexchange.tsx new file mode 100644 index 000000000..acd2cb219 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackexchange.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackexchangeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E5397'; + + const SiStackexchange: IconType = React.forwardRef(function SiStackexchange({title = 'Stack Exchange', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackexchange as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackhawk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackhawk.tsx new file mode 100644 index 000000000..806c44930 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackhawk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackhawkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CBC6'; + + const SiStackhawk: IconType = React.forwardRef(function SiStackhawk({title = 'StackHawk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackhawk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackoverflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackoverflow.tsx new file mode 100644 index 000000000..e6f1ffb04 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackoverflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackoverflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F58025'; + + const SiStackoverflow: IconType = React.forwardRef(function SiStackoverflow({title = 'Stack Overflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackoverflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackshare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackshare.tsx new file mode 100644 index 000000000..7fcd0e4d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStackshare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStackshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0690FA'; + + const SiStackshare: IconType = React.forwardRef(function SiStackshare({title = 'StackShare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStackshare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStadia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStadia.tsx new file mode 100644 index 000000000..1e0188639 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStadia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStadiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD2640'; + + const SiStadia: IconType = React.forwardRef(function SiStadia({title = 'Stadia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStadia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStaffbase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStaffbase.tsx new file mode 100644 index 000000000..38a0b19f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStaffbase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStaffbaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A4FD'; + + const SiStaffbase: IconType = React.forwardRef(function SiStaffbase({title = 'Staffbase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStaffbase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStagetimer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStagetimer.tsx new file mode 100644 index 000000000..c5096472f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStagetimer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStagetimerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A66C'; + + const SiStagetimer: IconType = React.forwardRef(function SiStagetimer({title = 'Stagetimer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStagetimer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStandardjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStandardjs.tsx new file mode 100644 index 000000000..e573dd2bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStandardjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStandardjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F3DF49'; + + const SiStandardjs: IconType = React.forwardRef(function SiStandardjs({title = 'StandardJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStandardjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStandardresume.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStandardresume.tsx new file mode 100644 index 000000000..f7f5f2f26 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStandardresume.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStandardresumeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A3FFB'; + + const SiStandardresume: IconType = React.forwardRef(function SiStandardresume({title = 'Standard Resume', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStandardresume as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarbucks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarbucks.tsx new file mode 100644 index 000000000..14a7ed3e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarbucks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStarbucksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006241'; + + const SiStarbucks: IconType = React.forwardRef(function SiStarbucks({title = 'Starbucks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStarbucks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStardock.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStardock.tsx new file mode 100644 index 000000000..036de91ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStardock.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStardockProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#004B8D'; + + const SiStardock: IconType = React.forwardRef(function SiStardock({title = 'Stardock', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStardock as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarlingbank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarlingbank.tsx new file mode 100644 index 000000000..15552502d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarlingbank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStarlingbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6935D3'; + + const SiStarlingbank: IconType = React.forwardRef(function SiStarlingbank({title = 'Starling Bank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStarlingbank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarship.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarship.tsx new file mode 100644 index 000000000..934db1c36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarship.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStarshipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD0B78'; + + const SiStarship: IconType = React.forwardRef(function SiStarship({title = 'Starship', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStarship as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartdotgg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartdotgg.tsx new file mode 100644 index 000000000..1bd29b8a1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartdotgg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStartdotggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2E75BA'; + + const SiStartdotgg: IconType = React.forwardRef(function SiStartdotgg({title = 'start.gg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStartdotgg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartpage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartpage.tsx new file mode 100644 index 000000000..7a91a9c8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartpage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStartpageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6563FF'; + + const SiStartpage: IconType = React.forwardRef(function SiStartpage({title = 'Startpage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStartpage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartrek.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartrek.tsx new file mode 100644 index 000000000..4ff73107b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStartrek.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStartrekProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFE200'; + + const SiStartrek: IconType = React.forwardRef(function SiStartrek({title = 'Star Trek', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStartrek as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarz.tsx new file mode 100644 index 000000000..987f57a93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStarz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStarzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#082125'; + + const SiStarz: IconType = React.forwardRef(function SiStarz({title = 'STARZ', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStarz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatamic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatamic.tsx new file mode 100644 index 000000000..f7cb8208a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatamic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStatamicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF269E'; + + const SiStatamic: IconType = React.forwardRef(function SiStatamic({title = 'Statamic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStatamic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatista.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatista.tsx new file mode 100644 index 000000000..7e6a3f297 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatista.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStatistaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#001327'; + + const SiStatista: IconType = React.forwardRef(function SiStatista({title = 'Statista', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStatista as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatuspage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatuspage.tsx new file mode 100644 index 000000000..16b823872 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatuspage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStatuspageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#172B4D'; + + const SiStatuspage: IconType = React.forwardRef(function SiStatuspage({title = 'Statuspage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStatuspage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatuspal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatuspal.tsx new file mode 100644 index 000000000..2e46f3aa7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStatuspal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStatuspalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4934BF'; + + const SiStatuspal: IconType = React.forwardRef(function SiStatuspal({title = 'Statuspal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStatuspal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteam.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteam.tsx new file mode 100644 index 000000000..68eba968c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteam.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSteam: IconType = React.forwardRef(function SiSteam({title = 'Steam', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteam as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamdb.tsx new file mode 100644 index 000000000..ea07e5f2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteamdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSteamdb: IconType = React.forwardRef(function SiSteamdb({title = 'SteamDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteamdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamdeck.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamdeck.tsx new file mode 100644 index 000000000..94c6d6aef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamdeck.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteamdeckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A9FFF'; + + const SiSteamdeck: IconType = React.forwardRef(function SiSteamdeck({title = 'Steam Deck', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteamdeck as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamworks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamworks.tsx new file mode 100644 index 000000000..6ad70a7a4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteamworks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteamworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1E1E1E'; + + const SiSteamworks: IconType = React.forwardRef(function SiSteamworks({title = 'Steamworks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteamworks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteelseries.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteelseries.tsx new file mode 100644 index 000000000..25539d665 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteelseries.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteelseriesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF5200'; + + const SiSteelseries: IconType = React.forwardRef(function SiSteelseries({title = 'Steelseries', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteelseries as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteem.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteem.tsx new file mode 100644 index 000000000..350e0f5ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteem.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteemProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#171FC9'; + + const SiSteem: IconType = React.forwardRef(function SiSteem({title = 'Steem', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteem as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteemit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteemit.tsx new file mode 100644 index 000000000..78312fcf7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteemit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteemitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#06D6A9'; + + const SiSteemit: IconType = React.forwardRef(function SiSteemit({title = 'Steemit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteemit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteinberg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteinberg.tsx new file mode 100644 index 000000000..6f883520e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSteinberg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSteinbergProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C90827'; + + const SiSteinberg: IconType = React.forwardRef(function SiSteinberg({title = 'Steinberg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSteinberg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStellar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStellar.tsx new file mode 100644 index 000000000..d69a7731f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStellar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStellarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDDA24'; + + const SiStellar: IconType = React.forwardRef(function SiStellar({title = 'Stellar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStellar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStencil.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStencil.tsx new file mode 100644 index 000000000..4882d4a61 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStencil.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStencilProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5530FF'; + + const SiStencil: IconType = React.forwardRef(function SiStencil({title = 'Stencil', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStencil as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStencyl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStencyl.tsx new file mode 100644 index 000000000..88bb1dbeb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStencyl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStencylProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8E1C04'; + + const SiStencyl: IconType = React.forwardRef(function SiStencyl({title = 'Stencyl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStencyl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStimulus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStimulus.tsx new file mode 100644 index 000000000..e95594af7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStimulus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStimulusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#77E8B9'; + + const SiStimulus: IconType = React.forwardRef(function SiStimulus({title = 'Stimulus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStimulus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStmicroelectronics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStmicroelectronics.tsx new file mode 100644 index 000000000..eaf33a21b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStmicroelectronics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStmicroelectronicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03234B'; + + const SiStmicroelectronics: IconType = React.forwardRef(function SiStmicroelectronics({title = 'STMicroelectronics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStmicroelectronics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStockx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStockx.tsx new file mode 100644 index 000000000..23b1b9fa5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStockx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStockxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006340'; + + const SiStockx: IconType = React.forwardRef(function SiStockx({title = 'StockX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStockx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStopstalk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStopstalk.tsx new file mode 100644 index 000000000..e4df25710 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStopstalk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStopstalkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#536DFE'; + + const SiStopstalk: IconType = React.forwardRef(function SiStopstalk({title = 'StopStalk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStopstalk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStoryblok.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStoryblok.tsx new file mode 100644 index 000000000..4c6b2685f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStoryblok.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStoryblokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#09B3AF'; + + const SiStoryblok: IconType = React.forwardRef(function SiStoryblok({title = 'Storyblok', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStoryblok as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStorybook.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStorybook.tsx new file mode 100644 index 000000000..51fa35f21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStorybook.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStorybookProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4785'; + + const SiStorybook: IconType = React.forwardRef(function SiStorybook({title = 'Storybook', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStorybook as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrapi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrapi.tsx new file mode 100644 index 000000000..a0bdb1d85 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrapi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStrapiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4945FF'; + + const SiStrapi: IconType = React.forwardRef(function SiStrapi({title = 'Strapi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStrapi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrava.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrava.tsx new file mode 100644 index 000000000..ae660ee78 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrava.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStravaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC4C02'; + + const SiStrava: IconType = React.forwardRef(function SiStrava({title = 'Strava', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStrava as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamlabs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamlabs.tsx new file mode 100644 index 000000000..4f0d9200e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamlabs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStreamlabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#80F5D2'; + + const SiStreamlabs: IconType = React.forwardRef(function SiStreamlabs({title = 'Streamlabs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStreamlabs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamlit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamlit.tsx new file mode 100644 index 000000000..057aa6556 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamlit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStreamlitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4B4B'; + + const SiStreamlit: IconType = React.forwardRef(function SiStreamlit({title = 'Streamlit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStreamlit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamrunners.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamrunners.tsx new file mode 100644 index 000000000..15684df7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStreamrunners.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStreamrunnersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6644F8'; + + const SiStreamrunners: IconType = React.forwardRef(function SiStreamrunners({title = 'StreamRunners', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStreamrunners as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStremio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStremio.tsx new file mode 100644 index 000000000..6661c0f17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStremio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStremioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#685CEE'; + + const SiStremio: IconType = React.forwardRef(function SiStremio({title = 'Stremio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStremio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStripe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStripe.tsx new file mode 100644 index 000000000..fd945db8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStripe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStripeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#635BFF'; + + const SiStripe: IconType = React.forwardRef(function SiStripe({title = 'Stripe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStripe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrongswan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrongswan.tsx new file mode 100644 index 000000000..3e236a2c8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStrongswan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStrongswanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E00033'; + + const SiStrongswan: IconType = React.forwardRef(function SiStrongswan({title = 'strongSwan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStrongswan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStryker.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStryker.tsx new file mode 100644 index 000000000..62b5fb0c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStryker.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStrykerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E74C3C'; + + const SiStryker: IconType = React.forwardRef(function SiStryker({title = 'Stryker', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStryker as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStubhub.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStubhub.tsx new file mode 100644 index 000000000..e20fb99f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStubhub.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStubhubProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003168'; + + const SiStubhub: IconType = React.forwardRef(function SiStubhub({title = 'StubHub', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStubhub as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStudio3t.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStudio3t.tsx new file mode 100644 index 000000000..b4a25d062 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStudio3t.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStudio3tProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17AF66'; + + const SiStudio3t: IconType = React.forwardRef(function SiStudio3t({title = 'Studio 3T', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStudio3t as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStyledcomponents.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStyledcomponents.tsx new file mode 100644 index 000000000..223559dc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStyledcomponents.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStyledcomponentsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB7093'; + + const SiStyledcomponents: IconType = React.forwardRef(function SiStyledcomponents({title = 'styled-components', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStyledcomponents as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStylelint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStylelint.tsx new file mode 100644 index 000000000..59b2d60f0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStylelint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStylelintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#263238'; + + const SiStylelint: IconType = React.forwardRef(function SiStylelint({title = 'stylelint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStylelint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStyleshare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStyleshare.tsx new file mode 100644 index 000000000..3f0fef872 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStyleshare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStyleshareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiStyleshare: IconType = React.forwardRef(function SiStyleshare({title = 'StyleShare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStyleshare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiStylus.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStylus.tsx new file mode 100644 index 000000000..9b4bbd691 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiStylus.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiStylusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiStylus: IconType = React.forwardRef(function SiStylus({title = 'Stylus', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiStylus as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubaru.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubaru.tsx new file mode 100644 index 000000000..7b51f6bc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubaru.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSubaruProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#013C74'; + + const SiSubaru: IconType = React.forwardRef(function SiSubaru({title = 'Subaru', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSubaru as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSublimetext.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSublimetext.tsx new file mode 100644 index 000000000..205cffe1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSublimetext.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSublimetextProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF9800'; + + const SiSublimetext: IconType = React.forwardRef(function SiSublimetext({title = 'Sublime Text', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSublimetext as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubstack.tsx new file mode 100644 index 000000000..b4e1c7653 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSubstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6719'; + + const SiSubstack: IconType = React.forwardRef(function SiSubstack({title = 'Substack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSubstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubtitleedit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubtitleedit.tsx new file mode 100644 index 000000000..225dd215d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubtitleedit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSubtitleeditProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC2424'; + + const SiSubtitleedit: IconType = React.forwardRef(function SiSubtitleedit({title = 'Subtitle Edit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSubtitleedit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubversion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubversion.tsx new file mode 100644 index 000000000..5cdc4861c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSubversion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSubversionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#809CC9'; + + const SiSubversion: IconType = React.forwardRef(function SiSubversion({title = 'Subversion', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSubversion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuckless.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuckless.tsx new file mode 100644 index 000000000..eb4587b06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuckless.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSucklessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1177AA'; + + const SiSuckless: IconType = React.forwardRef(function SiSuckless({title = 'suckless', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSuckless as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSui.tsx new file mode 100644 index 000000000..b106df01c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4DA2FF'; + + const SiSui: IconType = React.forwardRef(function SiSui({title = 'Sui', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuitest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuitest.tsx new file mode 100644 index 000000000..ef0050fd3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuitest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSuitestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F06060'; + + const SiSuitest: IconType = React.forwardRef(function SiSuitest({title = 'Suitest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSuitest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSumologic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSumologic.tsx new file mode 100644 index 000000000..96aa911e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSumologic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSumologicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000099'; + + const SiSumologic: IconType = React.forwardRef(function SiSumologic({title = 'Sumo Logic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSumologic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuno.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuno.tsx new file mode 100644 index 000000000..94b8c92f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuno.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSunoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSuno: IconType = React.forwardRef(function SiSuno({title = 'Suno', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSuno as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSunrise.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSunrise.tsx new file mode 100644 index 000000000..2b4da29f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSunrise.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSunriseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA291C'; + + const SiSunrise: IconType = React.forwardRef(function SiSunrise({title = 'Sunrise', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSunrise as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupabase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupabase.tsx new file mode 100644 index 000000000..e153c245a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupabase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSupabaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3FCF8E'; + + const SiSupabase: IconType = React.forwardRef(function SiSupabase({title = 'Supabase', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSupabase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupercrease.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupercrease.tsx new file mode 100644 index 000000000..a5116216f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupercrease.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSupercreaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSupercrease: IconType = React.forwardRef(function SiSupercrease({title = 'Supercrease', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSupercrease as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupermicro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupermicro.tsx new file mode 100644 index 000000000..b737b8330 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSupermicro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSupermicroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#151F6D'; + + const SiSupermicro: IconType = React.forwardRef(function SiSupermicro({title = 'Supermicro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSupermicro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuperuser.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuperuser.tsx new file mode 100644 index 000000000..ee3f53696 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuperuser.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSuperuserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#38A1CE'; + + const SiSuperuser: IconType = React.forwardRef(function SiSuperuser({title = 'Super User', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSuperuser as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurfshark.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurfshark.tsx new file mode 100644 index 000000000..9cf539c11 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurfshark.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSurfsharkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1EBFBF'; + + const SiSurfshark: IconType = React.forwardRef(function SiSurfshark({title = 'Surfshark', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSurfshark as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurrealdb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurrealdb.tsx new file mode 100644 index 000000000..602059718 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurrealdb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSurrealdbProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF00A0'; + + const SiSurrealdb: IconType = React.forwardRef(function SiSurrealdb({title = 'SurrealDB', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSurrealdb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurveymonkey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurveymonkey.tsx new file mode 100644 index 000000000..76c599fc1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSurveymonkey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSurveymonkeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00BF6F'; + + const SiSurveymonkey: IconType = React.forwardRef(function SiSurveymonkey({title = 'SurveyMonkey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSurveymonkey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuse.tsx new file mode 100644 index 000000000..f8b9efa82 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSuseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C322C'; + + const SiSuse: IconType = React.forwardRef(function SiSuse({title = 'SUSE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSuse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuzuki.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuzuki.tsx new file mode 100644 index 000000000..39836620e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSuzuki.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSuzukiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E30613'; + + const SiSuzuki: IconType = React.forwardRef(function SiSuzuki({title = 'Suzuki', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSuzuki as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvelte.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvelte.tsx new file mode 100644 index 000000000..ccd8841cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvelte.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSvelteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3E00'; + + const SiSvelte: IconType = React.forwardRef(function SiSvelte({title = 'Svelte', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSvelte as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvg.tsx new file mode 100644 index 000000000..8d7561103 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSvgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB13B'; + + const SiSvg: IconType = React.forwardRef(function SiSvg({title = 'SVG', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSvg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgdotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgdotjs.tsx new file mode 100644 index 000000000..ee42de4be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgdotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSvgdotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0066'; + + const SiSvgdotjs: IconType = React.forwardRef(function SiSvgdotjs({title = 'SVG.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSvgdotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgo.tsx new file mode 100644 index 000000000..d5e230f94 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSvgoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3E7FC1'; + + const SiSvgo: IconType = React.forwardRef(function SiSvgo({title = 'SVGO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSvgo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgtrace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgtrace.tsx new file mode 100644 index 000000000..7511f2d48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSvgtrace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSvgtraceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F453C4'; + + const SiSvgtrace: IconType = React.forwardRef(function SiSvgtrace({title = 'SvgTrace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSvgtrace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwagger.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwagger.tsx new file mode 100644 index 000000000..306a86ab8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwagger.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwaggerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#85EA2D'; + + const SiSwagger: IconType = React.forwardRef(function SiSwagger({title = 'Swagger', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwagger as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwarm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwarm.tsx new file mode 100644 index 000000000..d39dd93f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwarm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwarmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA633'; + + const SiSwarm: IconType = React.forwardRef(function SiSwarm({title = 'Swarm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwarm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSway.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSway.tsx new file mode 100644 index 000000000..7c78dd1cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSway.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#68751C'; + + const SiSway: IconType = React.forwardRef(function SiSway({title = 'Sway', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSway as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwc.tsx new file mode 100644 index 000000000..038cc11ac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F8C457'; + + const SiSwc: IconType = React.forwardRef(function SiSwc({title = 'SWC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwift.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwift.tsx new file mode 100644 index 000000000..d638a7e96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwift.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwiftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F05138'; + + const SiSwift: IconType = React.forwardRef(function SiSwift({title = 'Swift', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwift as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwiggy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwiggy.tsx new file mode 100644 index 000000000..5dfebe1db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwiggy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwiggyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FC8019'; + + const SiSwiggy: IconType = React.forwardRef(function SiSwiggy({title = 'Swiggy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwiggy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwiper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwiper.tsx new file mode 100644 index 000000000..81768486d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwiper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwiperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6332F6'; + + const SiSwiper: IconType = React.forwardRef(function SiSwiper({title = 'Swiper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwiper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwisscows.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwisscows.tsx new file mode 100644 index 000000000..0c352250a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwisscows.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwisscowsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSwisscows: IconType = React.forwardRef(function SiSwisscows({title = 'Swisscows', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwisscows as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwr.tsx new file mode 100644 index 000000000..ff9d3dcb8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSwr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSwrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSwr: IconType = React.forwardRef(function SiSwr({title = 'SWR', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSwr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymantec.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymantec.tsx new file mode 100644 index 000000000..a4d16b3f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymantec.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSymantecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDB511'; + + const SiSymantec: IconType = React.forwardRef(function SiSymantec({title = 'Symantec', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSymantec as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymbolab.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymbolab.tsx new file mode 100644 index 000000000..25d5c8e7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymbolab.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSymbolabProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DB3F59'; + + const SiSymbolab: IconType = React.forwardRef(function SiSymbolab({title = 'Symbolab', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSymbolab as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymfony.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymfony.tsx new file mode 100644 index 000000000..9a1b1ab14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymfony.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSymfonyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiSymfony: IconType = React.forwardRef(function SiSymfony({title = 'Symfony', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSymfony as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymphony.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymphony.tsx new file mode 100644 index 000000000..921fc69b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSymphony.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSymphonyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0098FF'; + + const SiSymphony: IconType = React.forwardRef(function SiSymphony({title = 'Symphony', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSymphony as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSympy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSympy.tsx new file mode 100644 index 000000000..e5d504bee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSympy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSympyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B5526'; + + const SiSympy: IconType = React.forwardRef(function SiSympy({title = 'SymPy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSympy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSyncthing.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSyncthing.tsx new file mode 100644 index 000000000..83059ed73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSyncthing.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSyncthingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0891D1'; + + const SiSyncthing: IconType = React.forwardRef(function SiSyncthing({title = 'Syncthing', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSyncthing as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSynology.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSynology.tsx new file mode 100644 index 000000000..0a4d207d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSynology.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSynologyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B5B5B6'; + + const SiSynology: IconType = React.forwardRef(function SiSynology({title = 'Synology', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSynology as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiSystem76.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSystem76.tsx new file mode 100644 index 000000000..14bcd3e8d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiSystem76.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiSystem76Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#585048'; + + const SiSystem76: IconType = React.forwardRef(function SiSystem76({title = 'System76', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiSystem76 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTabelog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTabelog.tsx new file mode 100644 index 000000000..76e21f4a7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTabelog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTabelogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F2CC38'; + + const SiTabelog: IconType = React.forwardRef(function SiTabelog({title = 'Tabelog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTabelog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTablecheck.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTablecheck.tsx new file mode 100644 index 000000000..2225e2539 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTablecheck.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTablecheckProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7935D2'; + + const SiTablecheck: IconType = React.forwardRef(function SiTablecheck({title = 'TableCheck', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTablecheck as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTacobell.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTacobell.tsx new file mode 100644 index 000000000..f9e7f2dab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTacobell.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTacobellProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#38096C'; + + const SiTacobell: IconType = React.forwardRef(function SiTacobell({title = 'Taco Bell', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTacobell as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTado.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTado.tsx new file mode 100644 index 000000000..53f70290a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTado.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTadoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA900'; + + const SiTado: IconType = React.forwardRef(function SiTado({title = 'tado°', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTado as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaichigraphics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaichigraphics.tsx new file mode 100644 index 000000000..4d6cbee72 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaichigraphics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaichigraphicsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTaichigraphics: IconType = React.forwardRef(function SiTaichigraphics({title = 'Taichi Graphics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTaichigraphics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaichilang.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaichilang.tsx new file mode 100644 index 000000000..0c98c8bda --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaichilang.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaichilangProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTaichilang: IconType = React.forwardRef(function SiTaichilang({title = 'Taichi Lang', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTaichilang as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTails.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTails.tsx new file mode 100644 index 000000000..08fa9818b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTails.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#56347C'; + + const SiTails: IconType = React.forwardRef(function SiTails({title = 'Tails', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTails as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTailscale.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTailscale.tsx new file mode 100644 index 000000000..8087830cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTailscale.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTailscaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#242424'; + + const SiTailscale: IconType = React.forwardRef(function SiTailscale({title = 'Tailscale', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTailscale as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTailwindcss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTailwindcss.tsx new file mode 100644 index 000000000..ad107a411 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTailwindcss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTailwindcssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#06B6D4'; + + const SiTailwindcss: IconType = React.forwardRef(function SiTailwindcss({title = 'Tailwind CSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTailwindcss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaipy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaipy.tsx new file mode 100644 index 000000000..3b7281dfd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaipy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaipyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF371A'; + + const SiTaipy: IconType = React.forwardRef(function SiTaipy({title = 'Taipy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTaipy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaketwointeractivesoftware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaketwointeractivesoftware.tsx new file mode 100644 index 000000000..5b5b6b570 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaketwointeractivesoftware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaketwointeractivesoftwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTaketwointeractivesoftware: IconType = React.forwardRef(function SiTaketwointeractivesoftware({title = 'Take-Two Interactive Software', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTaketwointeractivesoftware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalend.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalend.tsx new file mode 100644 index 000000000..e9884f003 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalend.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTalendProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6D70'; + + const SiTalend: IconType = React.forwardRef(function SiTalend({title = 'Talend', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTalend as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalenthouse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalenthouse.tsx new file mode 100644 index 000000000..b37bd5ace --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalenthouse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTalenthouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTalenthouse: IconType = React.forwardRef(function SiTalenthouse({title = 'Talenthouse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTalenthouse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalos.tsx new file mode 100644 index 000000000..0447aded0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTalos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTalosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF7300'; + + const SiTalos: IconType = React.forwardRef(function SiTalos({title = 'Talos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTalos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTamiya.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTamiya.tsx new file mode 100644 index 000000000..993e17a6f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTamiya.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTamiyaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTamiya: IconType = React.forwardRef(function SiTamiya({title = 'Tamiya', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTamiya as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTampermonkey.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTampermonkey.tsx new file mode 100644 index 000000000..6e08d19df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTampermonkey.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTampermonkeyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00485B'; + + const SiTampermonkey: IconType = React.forwardRef(function SiTampermonkey({title = 'Tampermonkey', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTampermonkey as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTanstack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTanstack.tsx new file mode 100644 index 000000000..74a475490 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTanstack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTanstackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTanstack: IconType = React.forwardRef(function SiTanstack({title = 'TanStack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTanstack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaobao.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaobao.tsx new file mode 100644 index 000000000..bde15ca29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaobao.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaobaoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E94F20'; + + const SiTaobao: IconType = React.forwardRef(function SiTaobao({title = 'Taobao', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTaobao as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTapas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTapas.tsx new file mode 100644 index 000000000..8244ee764 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTapas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTapasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCE00'; + + const SiTapas: IconType = React.forwardRef(function SiTapas({title = 'Tapas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTapas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTarget.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTarget.tsx new file mode 100644 index 000000000..09eb6133b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTarget.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTargetProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiTarget: IconType = React.forwardRef(function SiTarget({title = 'Target', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTarget as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTarom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTarom.tsx new file mode 100644 index 000000000..bc49958bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTarom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaromProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003366'; + + const SiTarom: IconType = React.forwardRef(function SiTarom({title = 'TAROM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTarom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTask.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTask.tsx new file mode 100644 index 000000000..b74c78f14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTask.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#29BEB0'; + + const SiTask: IconType = React.forwardRef(function SiTask({title = 'Task', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTask as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTasmota.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTasmota.tsx new file mode 100644 index 000000000..25e89cacb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTasmota.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTasmotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1FA3EC'; + + const SiTasmota: IconType = React.forwardRef(function SiTasmota({title = 'Tasmota', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTasmota as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTata.tsx new file mode 100644 index 000000000..526a7144e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#486AAE'; + + const SiTata: IconType = React.forwardRef(function SiTata({title = 'Tata', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTauri.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTauri.tsx new file mode 100644 index 000000000..6ee97b5ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTauri.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTauriProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24C8D8'; + + const SiTauri: IconType = React.forwardRef(function SiTauri({title = 'Tauri', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTauri as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaxbuzz.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaxbuzz.tsx new file mode 100644 index 000000000..017590ee5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTaxbuzz.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTaxbuzzProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED8B0B'; + + const SiTaxbuzz: IconType = React.forwardRef(function SiTaxbuzz({title = 'TaxBuzz', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTaxbuzz as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTcs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTcs.tsx new file mode 100644 index 000000000..513aa1a95 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTcs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTcsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE3984'; + + const SiTcs: IconType = React.forwardRef(function SiTcs({title = 'Tata Consultancy Services', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTcs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeal.tsx new file mode 100644 index 000000000..b69f4d6ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTealProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005149'; + + const SiTeal: IconType = React.forwardRef(function SiTeal({title = 'Teal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamcity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamcity.tsx new file mode 100644 index 000000000..46d7133b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamcity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeamcityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTeamcity: IconType = React.forwardRef(function SiTeamcity({title = 'TeamCity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeamcity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamspeak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamspeak.tsx new file mode 100644 index 000000000..1fd409a32 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamspeak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeamspeakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B69B6'; + + const SiTeamspeak: IconType = React.forwardRef(function SiTeamspeak({title = 'TeamSpeak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeamspeak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamviewer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamviewer.tsx new file mode 100644 index 000000000..0630e3ada --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeamviewer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeamviewerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#050A52'; + + const SiTeamviewer: IconType = React.forwardRef(function SiTeamviewer({title = 'TeamViewer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeamviewer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTechcrunch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTechcrunch.tsx new file mode 100644 index 000000000..0907b6de0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTechcrunch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTechcrunchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#029F00'; + + const SiTechcrunch: IconType = React.forwardRef(function SiTechcrunch({title = 'TechCrunch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTechcrunch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTed.tsx new file mode 100644 index 000000000..1d71c8da7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E62B1E'; + + const SiTed: IconType = React.forwardRef(function SiTed({title = 'TED', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeepublic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeepublic.tsx new file mode 100644 index 000000000..7b6b4146a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeepublic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeepublicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E64DF'; + + const SiTeepublic: IconType = React.forwardRef(function SiTeepublic({title = 'TeePublic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeepublic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeespring.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeespring.tsx new file mode 100644 index 000000000..d71a8b0d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeespring.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeespringProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED2761'; + + const SiTeespring: IconType = React.forwardRef(function SiTeespring({title = 'Teespring', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeespring as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTekton.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTekton.tsx new file mode 100644 index 000000000..f2d10e26b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTekton.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTektonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FD495C'; + + const SiTekton: IconType = React.forwardRef(function SiTekton({title = 'Tekton', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTekton as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTele5.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTele5.tsx new file mode 100644 index 000000000..8ec687368 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTele5.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTele5Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF00FF'; + + const SiTele5: IconType = React.forwardRef(function SiTele5({title = 'TELE 5', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTele5 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelefonica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelefonica.tsx new file mode 100644 index 000000000..b0ab5c9eb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelefonica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTelefonicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066FF'; + + const SiTelefonica: IconType = React.forwardRef(function SiTelefonica({title = 'Telefónica', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTelefonica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelegram.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelegram.tsx new file mode 100644 index 000000000..a1ffab079 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelegram.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTelegramProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#26A5E4'; + + const SiTelegram: IconType = React.forwardRef(function SiTelegram({title = 'Telegram', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTelegram as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelegraph.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelegraph.tsx new file mode 100644 index 000000000..8ade5ae97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelegraph.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTelegraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAFAFA'; + + const SiTelegraph: IconType = React.forwardRef(function SiTelegraph({title = 'Telegraph', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTelegraph as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelenor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelenor.tsx new file mode 100644 index 000000000..13cdea545 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelenor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTelenorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00C8FF'; + + const SiTelenor: IconType = React.forwardRef(function SiTelenor({title = 'Telenor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTelenor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelequebec.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelequebec.tsx new file mode 100644 index 000000000..9814f50c1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTelequebec.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTelequebecProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1343FB'; + + const SiTelequebec: IconType = React.forwardRef(function SiTelequebec({title = 'Télé-Québec', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTelequebec as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTemporal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTemporal.tsx new file mode 100644 index 000000000..d2c75b5d3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTemporal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTemporalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTemporal: IconType = React.forwardRef(function SiTemporal({title = 'Temporal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTemporal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTensorflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTensorflow.tsx new file mode 100644 index 000000000..81f50113c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTensorflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTensorflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6F00'; + + const SiTensorflow: IconType = React.forwardRef(function SiTensorflow({title = 'TensorFlow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTensorflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeradata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeradata.tsx new file mode 100644 index 000000000..f972b0911 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeradata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeradataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F37440'; + + const SiTeradata: IconType = React.forwardRef(function SiTeradata({title = 'Teradata', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeradata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeratail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeratail.tsx new file mode 100644 index 000000000..0a032a50d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTeratail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeratailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F4C51C'; + + const SiTeratail: IconType = React.forwardRef(function SiTeratail({title = 'teratail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTeratail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTermius.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTermius.tsx new file mode 100644 index 000000000..cd90fa6f2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTermius.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTermiusProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTermius: IconType = React.forwardRef(function SiTermius({title = 'Termius', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTermius as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTerraform.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTerraform.tsx new file mode 100644 index 000000000..33eb5f392 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTerraform.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTerraformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#844FBA'; + + const SiTerraform: IconType = React.forwardRef(function SiTerraform({title = 'Terraform', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTerraform as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTesco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTesco.tsx new file mode 100644 index 000000000..866541b2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTesco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTescoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00539F'; + + const SiTesco: IconType = React.forwardRef(function SiTesco({title = 'Tesco', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTesco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTesla.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTesla.tsx new file mode 100644 index 000000000..f7231ac00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTesla.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTeslaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC0000'; + + const SiTesla: IconType = React.forwardRef(function SiTesla({title = 'Tesla', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTesla as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestcafe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestcafe.tsx new file mode 100644 index 000000000..cfbbb00cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestcafe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTestcafeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#36B6E5'; + + const SiTestcafe: IconType = React.forwardRef(function SiTestcafe({title = 'TestCafe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTestcafe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestin.tsx new file mode 100644 index 000000000..c321471b7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTestinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007DD7'; + + const SiTestin: IconType = React.forwardRef(function SiTestin({title = 'Testin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTestin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestinglibrary.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestinglibrary.tsx new file mode 100644 index 000000000..2753fef7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestinglibrary.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTestinglibraryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E33332'; + + const SiTestinglibrary: IconType = React.forwardRef(function SiTestinglibrary({title = 'Testing Library', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTestinglibrary as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestrail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestrail.tsx new file mode 100644 index 000000000..5ccfff722 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTestrail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTestrailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#65C179'; + + const SiTestrail: IconType = React.forwardRef(function SiTestrail({title = 'TestRail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTestrail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTether.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTether.tsx new file mode 100644 index 000000000..4a12f148c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTether.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTetherProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#50AF95'; + + const SiTether: IconType = React.forwardRef(function SiTether({title = 'Tether', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTether as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTextpattern.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTextpattern.tsx new file mode 100644 index 000000000..2579609c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTextpattern.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTextpatternProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDA44'; + + const SiTextpattern: IconType = React.forwardRef(function SiTextpattern({title = 'Textpattern', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTextpattern as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTextual.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTextual.tsx new file mode 100644 index 000000000..63e05ed24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTextual.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTextualProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiTextual: IconType = React.forwardRef(function SiTextual({title = 'Textual', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTextual as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTga.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTga.tsx new file mode 100644 index 000000000..c876b8b70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTga.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTgaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0014FF'; + + const SiTga: IconType = React.forwardRef(function SiTga({title = 'TGA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTga as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThangs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThangs.tsx new file mode 100644 index 000000000..9537db862 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThangs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThangsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFBC00'; + + const SiThangs: IconType = React.forwardRef(function SiThangs({title = 'Thangs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThangs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThanos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThanos.tsx new file mode 100644 index 000000000..5740a9e2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThanos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThanosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D41FF'; + + const SiThanos: IconType = React.forwardRef(function SiThanos({title = 'Thanos', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThanos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThealgorithms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThealgorithms.tsx new file mode 100644 index 000000000..8bcd21b5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThealgorithms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThealgorithmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00BCB4'; + + const SiThealgorithms: IconType = React.forwardRef(function SiThealgorithms({title = 'The Algorithms', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThealgorithms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheboringcompany.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheboringcompany.tsx new file mode 100644 index 000000000..3a0d2815a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheboringcompany.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheboringcompanyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTheboringcompany: IconType = React.forwardRef(function SiTheboringcompany({title = 'The Boring Company', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheboringcompany as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheconversation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheconversation.tsx new file mode 100644 index 000000000..848e7b3b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheconversation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheconversationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D8352A'; + + const SiTheconversation: IconType = React.forwardRef(function SiTheconversation({title = 'The Conversation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheconversation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThefinals.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThefinals.tsx new file mode 100644 index 000000000..b0ea1f7a5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThefinals.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThefinalsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D31F3C'; + + const SiThefinals: IconType = React.forwardRef(function SiThefinals({title = 'THE FINALS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThefinals as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheguardian.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheguardian.tsx new file mode 100644 index 000000000..39386b922 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheguardian.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheguardianProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#052962'; + + const SiTheguardian: IconType = React.forwardRef(function SiTheguardian({title = 'The Guardian', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheguardian as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheirishtimes.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheirishtimes.tsx new file mode 100644 index 000000000..083fc1184 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheirishtimes.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheirishtimesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTheirishtimes: IconType = React.forwardRef(function SiTheirishtimes({title = 'The Irish Times', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheirishtimes as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemighty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemighty.tsx new file mode 100644 index 000000000..2fd10ca96 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemighty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThemightyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D0072A'; + + const SiThemighty: IconType = React.forwardRef(function SiThemighty({title = 'The Mighty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThemighty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemodelsresource.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemodelsresource.tsx new file mode 100644 index 000000000..310d6bbd2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemodelsresource.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThemodelsresourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3A75BD'; + + const SiThemodelsresource: IconType = React.forwardRef(function SiThemodelsresource({title = 'The Models Resource', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThemodelsresource as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemoviedatabase.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemoviedatabase.tsx new file mode 100644 index 000000000..ee9f1d7b5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThemoviedatabase.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThemoviedatabaseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#01B4E4'; + + const SiThemoviedatabase: IconType = React.forwardRef(function SiThemoviedatabase({title = 'The Movie Database', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThemoviedatabase as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThenorthface.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThenorthface.tsx new file mode 100644 index 000000000..fd2b155e0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThenorthface.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThenorthfaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiThenorthface: IconType = React.forwardRef(function SiThenorthface({title = 'The North Face', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThenorthface as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheodinproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheodinproject.tsx new file mode 100644 index 000000000..1dbb4e99d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheodinproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheodinprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A9792B'; + + const SiTheodinproject: IconType = React.forwardRef(function SiTheodinproject({title = 'The Odin Project', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheodinproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheplanetarysociety.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheplanetarysociety.tsx new file mode 100644 index 000000000..b4b8f55bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheplanetarysociety.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheplanetarysocietyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTheplanetarysociety: IconType = React.forwardRef(function SiTheplanetarysociety({title = 'The Planetary Society', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheplanetarysociety as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheregister.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheregister.tsx new file mode 100644 index 000000000..7ba15ebfa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheregister.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheregisterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiTheregister: IconType = React.forwardRef(function SiTheregister({title = 'The Register', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheregister as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThesoundsresource.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThesoundsresource.tsx new file mode 100644 index 000000000..2ebec0749 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThesoundsresource.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThesoundsresourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#39BE6B'; + + const SiThesoundsresource: IconType = React.forwardRef(function SiThesoundsresource({title = 'The Sounds Resource', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThesoundsresource as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThespritersresource.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThespritersresource.tsx new file mode 100644 index 000000000..12ff0f9b3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThespritersresource.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThespritersresourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#BE3939'; + + const SiThespritersresource: IconType = React.forwardRef(function SiThespritersresource({title = 'The Spriters Resource', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThespritersresource as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThestorygraph.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThestorygraph.tsx new file mode 100644 index 000000000..f700b2304 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThestorygraph.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThestorygraphProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiThestorygraph: IconType = React.forwardRef(function SiThestorygraph({title = 'The StoryGraph', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThestorygraph as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThewashingtonpost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThewashingtonpost.tsx new file mode 100644 index 000000000..e1bec059a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThewashingtonpost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThewashingtonpostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiThewashingtonpost: IconType = React.forwardRef(function SiThewashingtonpost({title = 'The Washington Post', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThewashingtonpost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheweatherchannel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheweatherchannel.tsx new file mode 100644 index 000000000..f9bcbf129 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTheweatherchannel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTheweatherchannelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003399'; + + const SiTheweatherchannel: IconType = React.forwardRef(function SiTheweatherchannel({title = 'The Weather Channel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTheweatherchannel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThingiverse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThingiverse.tsx new file mode 100644 index 000000000..9716c23d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThingiverse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThingiverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#248BFB'; + + const SiThingiverse: IconType = React.forwardRef(function SiThingiverse({title = 'Thingiverse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThingiverse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThings.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThings.tsx new file mode 100644 index 000000000..379550692 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThings.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThingsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2473E7'; + + const SiThings: IconType = React.forwardRef(function SiThings({title = 'Things', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThings as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThinkpad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThinkpad.tsx new file mode 100644 index 000000000..4a536323d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThinkpad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThinkpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EE2624'; + + const SiThinkpad: IconType = React.forwardRef(function SiThinkpad({title = 'ThinkPad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThinkpad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThirdweb.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThirdweb.tsx new file mode 100644 index 000000000..71f3c23df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThirdweb.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThirdwebProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F213A4'; + + const SiThirdweb: IconType = React.forwardRef(function SiThirdweb({title = 'thirdweb', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThirdweb as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreadless.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreadless.tsx new file mode 100644 index 000000000..3a7201346 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreadless.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThreadlessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0099FF'; + + const SiThreadless: IconType = React.forwardRef(function SiThreadless({title = 'Threadless', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThreadless as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreads.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreads.tsx new file mode 100644 index 000000000..ccb5b74da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreads.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThreadsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiThreads: IconType = React.forwardRef(function SiThreads({title = 'Threads', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThreads as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreedotjs.tsx new file mode 100644 index 000000000..67c1cf6e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThreedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiThreedotjs: IconType = React.forwardRef(function SiThreedotjs({title = 'Three.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThreedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreema.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreema.tsx new file mode 100644 index 000000000..dba83015f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThreema.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThreemaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3FE669'; + + const SiThreema: IconType = React.forwardRef(function SiThreema({title = 'Threema', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThreema as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThumbtack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThumbtack.tsx new file mode 100644 index 000000000..7122bec6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThumbtack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThumbtackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009FD9'; + + const SiThumbtack: IconType = React.forwardRef(function SiThumbtack({title = 'Thumbtack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThumbtack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThunderbird.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThunderbird.tsx new file mode 100644 index 000000000..f1596d481 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThunderbird.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThunderbirdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A84FF'; + + const SiThunderbird: IconType = React.forwardRef(function SiThunderbird({title = 'Thunderbird', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThunderbird as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThunderstore.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThunderstore.tsx new file mode 100644 index 000000000..f93c72e5e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThunderstore.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThunderstoreProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#23FFB0'; + + const SiThunderstore: IconType = React.forwardRef(function SiThunderstore({title = 'Thunderstore', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThunderstore as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThurgauerkantonalbank.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThurgauerkantonalbank.tsx new file mode 100644 index 000000000..77cdace7a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThurgauerkantonalbank.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThurgauerkantonalbankProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006D41'; + + const SiThurgauerkantonalbank: IconType = React.forwardRef(function SiThurgauerkantonalbank({title = 'Thurgauer Kantonalbank', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThurgauerkantonalbank as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiThymeleaf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThymeleaf.tsx new file mode 100644 index 000000000..2249655ae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiThymeleaf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiThymeleafProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005F0F'; + + const SiThymeleaf: IconType = React.forwardRef(function SiThymeleaf({title = 'Thymeleaf', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiThymeleaf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTicketmaster.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTicketmaster.tsx new file mode 100644 index 000000000..3b30aef12 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTicketmaster.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTicketmasterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#026CDF'; + + const SiTicketmaster: IconType = React.forwardRef(function SiTicketmaster({title = 'Ticketmaster', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTicketmaster as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTicktick.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTicktick.tsx new file mode 100644 index 000000000..8feae72e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTicktick.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTicktickProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4772FA'; + + const SiTicktick: IconType = React.forwardRef(function SiTicktick({title = 'TickTick', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTicktick as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTidal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTidal.tsx new file mode 100644 index 000000000..9940295f5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTidal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTidalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTidal: IconType = React.forwardRef(function SiTidal({title = 'TIDAL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTidal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTiddlywiki.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTiddlywiki.tsx new file mode 100644 index 000000000..3067e88b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTiddlywiki.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTiddlywikiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111111'; + + const SiTiddlywiki: IconType = React.forwardRef(function SiTiddlywiki({title = 'TiddlyWiki', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTiddlywiki as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTide.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTide.tsx new file mode 100644 index 000000000..2c74152e4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTide.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTideProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4050FB'; + + const SiTide: IconType = React.forwardRef(function SiTide({title = 'Tide', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTide as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTidyverse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTidyverse.tsx new file mode 100644 index 000000000..859b9003d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTidyverse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTidyverseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A162D'; + + const SiTidyverse: IconType = React.forwardRef(function SiTidyverse({title = 'Tidyverse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTidyverse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTietoevry.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTietoevry.tsx new file mode 100644 index 000000000..97fb9af97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTietoevry.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTietoevryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#063752'; + + const SiTietoevry: IconType = React.forwardRef(function SiTietoevry({title = 'TietoEVRY', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTietoevry as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTiktok.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTiktok.tsx new file mode 100644 index 000000000..a7346a34e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTiktok.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTiktokProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTiktok: IconType = React.forwardRef(function SiTiktok({title = 'TikTok', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTiktok as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTildapublishing.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTildapublishing.tsx new file mode 100644 index 000000000..08e873d02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTildapublishing.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTildapublishingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFA282'; + + const SiTildapublishing: IconType = React.forwardRef(function SiTildapublishing({title = 'Tilda Publishing', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTildapublishing as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTile.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTile.tsx new file mode 100644 index 000000000..dd9a35ad6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTile.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTileProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTile: IconType = React.forwardRef(function SiTile({title = 'Tile', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTile as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTimescale.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTimescale.tsx new file mode 100644 index 000000000..babf06b4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTimescale.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTimescaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FDB515'; + + const SiTimescale: IconType = React.forwardRef(function SiTimescale({title = 'Timescale', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTimescale as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTina.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTina.tsx new file mode 100644 index 000000000..40beb9d9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTina.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTinaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC4815'; + + const SiTina: IconType = React.forwardRef(function SiTina({title = 'Tina', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTina as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinder.tsx new file mode 100644 index 000000000..16d3633e7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTinderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6B6B'; + + const SiTinder: IconType = React.forwardRef(function SiTinder({title = 'Tinder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTinder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTindie.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTindie.tsx new file mode 100644 index 000000000..3e38d9971 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTindie.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTindieProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#17AEB9'; + + const SiTindie: IconType = React.forwardRef(function SiTindie({title = 'Tindie', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTindie as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinkercad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinkercad.tsx new file mode 100644 index 000000000..b443ee0ed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinkercad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTinkercadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1477D1'; + + const SiTinkercad: IconType = React.forwardRef(function SiTinkercad({title = 'Tinkercad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTinkercad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinygrad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinygrad.tsx new file mode 100644 index 000000000..576812656 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinygrad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTinygradProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiTinygrad: IconType = React.forwardRef(function SiTinygrad({title = 'tinygrad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTinygrad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinyletter.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinyletter.tsx new file mode 100644 index 000000000..b83639259 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTinyletter.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTinyletterProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1C24'; + + const SiTinyletter: IconType = React.forwardRef(function SiTinyletter({title = 'TinyLetter', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTinyletter as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTistory.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTistory.tsx new file mode 100644 index 000000000..4e545f959 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTistory.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTistoryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTistory: IconType = React.forwardRef(function SiTistory({title = 'Tistory', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTistory as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTldraw.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTldraw.tsx new file mode 100644 index 000000000..cf2a5d79e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTldraw.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTldrawProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAFAFA'; + + const SiTldraw: IconType = React.forwardRef(function SiTldraw({title = 'tldraw', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTldraw as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTmux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTmux.tsx new file mode 100644 index 000000000..a2236ecee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTmux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTmuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BB91F'; + + const SiTmux: IconType = React.forwardRef(function SiTmux({title = 'tmux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTmux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTodoist.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTodoist.tsx new file mode 100644 index 000000000..320187216 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTodoist.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTodoistProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E44332'; + + const SiTodoist: IconType = React.forwardRef(function SiTodoist({title = 'Todoist', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTodoist as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToggl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToggl.tsx new file mode 100644 index 000000000..ad7e27f7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToggl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTogglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDE91'; + + const SiToggl: IconType = React.forwardRef(function SiToggl({title = 'Toggl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToggl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToggltrack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToggltrack.tsx new file mode 100644 index 000000000..56d1862f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToggltrack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiToggltrackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E57CD8'; + + const SiToggltrack: IconType = React.forwardRef(function SiToggltrack({title = 'Toggl Track', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToggltrack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTokio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTokio.tsx new file mode 100644 index 000000000..2ec4d9f7e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTokio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTokioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTokio: IconType = React.forwardRef(function SiTokio({title = 'Tokio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTokio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTokyometro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTokyometro.tsx new file mode 100644 index 000000000..f117be402 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTokyometro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTokyometroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#149DD3'; + + const SiTokyometro: IconType = React.forwardRef(function SiTokyometro({title = 'Tokyo Metro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTokyometro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToll.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToll.tsx new file mode 100644 index 000000000..db9d93b24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToll.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTollProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007A68'; + + const SiToll: IconType = React.forwardRef(function SiToll({title = 'Toll', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToll as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToml.tsx new file mode 100644 index 000000000..833580c81 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTomlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9C4121'; + + const SiToml: IconType = React.forwardRef(function SiToml({title = 'TOML', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTomorrowland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTomorrowland.tsx new file mode 100644 index 000000000..9cb2fd78c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTomorrowland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTomorrowlandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTomorrowland: IconType = React.forwardRef(function SiTomorrowland({title = 'Tomorrowland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTomorrowland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTomtom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTomtom.tsx new file mode 100644 index 000000000..005af116a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTomtom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTomtomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DF1B12'; + + const SiTomtom: IconType = React.forwardRef(function SiTomtom({title = 'TomTom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTomtom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTon.tsx new file mode 100644 index 000000000..2d632c8e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0098EA'; + + const SiTon: IconType = React.forwardRef(function SiTon({title = 'TON', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTopcoder.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTopcoder.tsx new file mode 100644 index 000000000..507d5cc29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTopcoder.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTopcoderProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#29A7DF'; + + const SiTopcoder: IconType = React.forwardRef(function SiTopcoder({title = 'Topcoder', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTopcoder as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTopdotgg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTopdotgg.tsx new file mode 100644 index 000000000..63b63ad9d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTopdotgg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTopdotggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF3366'; + + const SiTopdotgg: IconType = React.forwardRef(function SiTopdotgg({title = 'Top.gg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTopdotgg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToptal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToptal.tsx new file mode 100644 index 000000000..881b59bd4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToptal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiToptalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3863A0'; + + const SiToptal: IconType = React.forwardRef(function SiToptal({title = 'Toptal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToptal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorbrowser.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorbrowser.tsx new file mode 100644 index 000000000..551b0da00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorbrowser.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTorbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7D4698'; + + const SiTorbrowser: IconType = React.forwardRef(function SiTorbrowser({title = 'Tor Browser', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTorbrowser as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorizon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorizon.tsx new file mode 100644 index 000000000..9bc89d1a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorizon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTorizonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAAF00'; + + const SiTorizon: IconType = React.forwardRef(function SiTorizon({title = 'Torizon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTorizon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorproject.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorproject.tsx new file mode 100644 index 000000000..c3b4ab960 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTorproject.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTorprojectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7D4698'; + + const SiTorproject: IconType = React.forwardRef(function SiTorproject({title = 'Tor Project', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTorproject as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToshiba.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToshiba.tsx new file mode 100644 index 000000000..1c90ce376 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToshiba.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiToshibaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiToshiba: IconType = React.forwardRef(function SiToshiba({title = 'Toshiba', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToshiba as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTotvs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTotvs.tsx new file mode 100644 index 000000000..276686af6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTotvs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTotvsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#363636'; + + const SiTotvs: IconType = React.forwardRef(function SiTotvs({title = 'TOTVS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTotvs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTourbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTourbox.tsx new file mode 100644 index 000000000..2a14153f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTourbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTourboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#231F20'; + + const SiTourbox: IconType = React.forwardRef(function SiTourbox({title = 'TourBox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTourbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTower.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTower.tsx new file mode 100644 index 000000000..4c9cab86c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTower.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00CAF4'; + + const SiTower: IconType = React.forwardRef(function SiTower({title = 'Tower', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTower as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiToyota.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToyota.tsx new file mode 100644 index 000000000..4120d5217 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiToyota.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiToyotaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB0A1E'; + + const SiToyota: IconType = React.forwardRef(function SiToyota({title = 'Toyota', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiToyota as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTplink.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTplink.tsx new file mode 100644 index 000000000..06b6e7b33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTplink.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTplinkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4ACBD6'; + + const SiTplink: IconType = React.forwardRef(function SiTplink({title = 'TP-Link', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTplink as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTqdm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTqdm.tsx new file mode 100644 index 000000000..aafb1259c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTqdm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTqdmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC107'; + + const SiTqdm: IconType = React.forwardRef(function SiTqdm({title = 'tqdm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTqdm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraccar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraccar.tsx new file mode 100644 index 000000000..a053e884a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraccar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTraccarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTraccar: IconType = React.forwardRef(function SiTraccar({title = 'Traccar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTraccar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTradingview.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTradingview.tsx new file mode 100644 index 000000000..58a0576d4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTradingview.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTradingviewProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#131622'; + + const SiTradingview: IconType = React.forwardRef(function SiTradingview({title = 'TradingView', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTradingview as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraefikmesh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraefikmesh.tsx new file mode 100644 index 000000000..9739809ec --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraefikmesh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTraefikmeshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9D0FB0'; + + const SiTraefikmesh: IconType = React.forwardRef(function SiTraefikmesh({title = 'Traefik Mesh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTraefikmesh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraefikproxy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraefikproxy.tsx new file mode 100644 index 000000000..6b897489c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTraefikproxy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTraefikproxyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#24A1C1'; + + const SiTraefikproxy: IconType = React.forwardRef(function SiTraefikproxy({title = 'Traefik Proxy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTraefikproxy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrailforks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrailforks.tsx new file mode 100644 index 000000000..a201eaf2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrailforks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrailforksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCD00'; + + const SiTrailforks: IconType = React.forwardRef(function SiTrailforks({title = 'Trailforks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrailforks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrainerroad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrainerroad.tsx new file mode 100644 index 000000000..38b0123a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrainerroad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrainerroadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA291C'; + + const SiTrainerroad: IconType = React.forwardRef(function SiTrainerroad({title = 'TrainerRoad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrainerroad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrakt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrakt.tsx new file mode 100644 index 000000000..f19c4dbe1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrakt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTraktProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9F42C6'; + + const SiTrakt: IconType = React.forwardRef(function SiTrakt({title = 'Trakt', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrakt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransifex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransifex.tsx new file mode 100644 index 000000000..e1197e53e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransifex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTransifexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0064AB'; + + const SiTransifex: IconType = React.forwardRef(function SiTransifex({title = 'Transifex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTransifex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransmission.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransmission.tsx new file mode 100644 index 000000000..609fa9f36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransmission.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTransmissionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D70008'; + + const SiTransmission: IconType = React.forwardRef(function SiTransmission({title = 'Transmission', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTransmission as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransportforireland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransportforireland.tsx new file mode 100644 index 000000000..0ab39160d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransportforireland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTransportforirelandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B274'; + + const SiTransportforireland: IconType = React.forwardRef(function SiTransportforireland({title = 'Transport for Ireland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTransportforireland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransportforlondon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransportforlondon.tsx new file mode 100644 index 000000000..de127344e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTransportforlondon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTransportforlondonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#113B92'; + + const SiTransportforlondon: IconType = React.forwardRef(function SiTransportforlondon({title = 'Transport for London', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTransportforlondon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTravisci.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTravisci.tsx new file mode 100644 index 000000000..07214affc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTravisci.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTravisciProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3EAAAF'; + + const SiTravisci: IconType = React.forwardRef(function SiTravisci({title = 'Travis CI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTravisci as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTreehouse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTreehouse.tsx new file mode 100644 index 000000000..9e1eecdc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTreehouse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTreehouseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5FCF80'; + + const SiTreehouse: IconType = React.forwardRef(function SiTreehouse({title = 'Treehouse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTreehouse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrello.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrello.tsx new file mode 100644 index 000000000..0536be09f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrello.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrelloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0052CC'; + + const SiTrello: IconType = React.forwardRef(function SiTrello({title = 'Trello', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrello as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrendmicro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrendmicro.tsx new file mode 100644 index 000000000..943dfe31e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrendmicro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrendmicroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D71921'; + + const SiTrendmicro: IconType = React.forwardRef(function SiTrendmicro({title = 'Trend Micro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrendmicro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTresorit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTresorit.tsx new file mode 100644 index 000000000..26fb6e18c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTresorit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTresoritProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00A9E2'; + + const SiTresorit: IconType = React.forwardRef(function SiTresorit({title = 'Tresorit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTresorit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTreyarch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTreyarch.tsx new file mode 100644 index 000000000..1201560ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTreyarch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTreyarchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTreyarch: IconType = React.forwardRef(function SiTreyarch({title = 'Treyarch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTreyarch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTricentis.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTricentis.tsx new file mode 100644 index 000000000..b79810294 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTricentis.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTricentisProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#12438C'; + + const SiTricentis: IconType = React.forwardRef(function SiTricentis({title = 'Tricentis', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTricentis as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrilium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrilium.tsx new file mode 100644 index 000000000..c7c22a64d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrilium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTriliumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTrilium: IconType = React.forwardRef(function SiTrilium({title = 'Trilium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrilium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTriller.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTriller.tsx new file mode 100644 index 000000000..68823d716 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTriller.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrillerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0089'; + + const SiTriller: IconType = React.forwardRef(function SiTriller({title = 'Triller', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTriller as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrillertv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrillertv.tsx new file mode 100644 index 000000000..85a10f629 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrillertv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrillertvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E61414'; + + const SiTrillertv: IconType = React.forwardRef(function SiTrillertv({title = 'TrillerTV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrillertv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrimble.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrimble.tsx new file mode 100644 index 000000000..dd031dd39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrimble.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrimbleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0063A3'; + + const SiTrimble: IconType = React.forwardRef(function SiTrimble({title = 'Trimble', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrimble as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrino.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrino.tsx new file mode 100644 index 000000000..e73c96c8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrino.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD00A1'; + + const SiTrino: IconType = React.forwardRef(function SiTrino({title = 'Trino', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrino as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTripadvisor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTripadvisor.tsx new file mode 100644 index 000000000..409aaf332 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTripadvisor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTripadvisorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#34E0A1'; + + const SiTripadvisor: IconType = React.forwardRef(function SiTripadvisor({title = 'Tripadvisor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTripadvisor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTripdotcom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTripdotcom.tsx new file mode 100644 index 000000000..19bc9fe97 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTripdotcom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTripdotcomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#287DFA'; + + const SiTripdotcom: IconType = React.forwardRef(function SiTripdotcom({title = 'Trip.com', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTripdotcom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrivago.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrivago.tsx new file mode 100644 index 000000000..29c9aeeea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrivago.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrivagoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E32851'; + + const SiTrivago: IconType = React.forwardRef(function SiTrivago({title = 'trivago', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrivago as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrivy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrivy.tsx new file mode 100644 index 000000000..a2e89e842 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrivy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrivyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1904DA'; + + const SiTrivy: IconType = React.forwardRef(function SiTrivy({title = 'Trivy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrivy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrove.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrove.tsx new file mode 100644 index 000000000..734f0cef4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrove.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTroveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2D004B'; + + const SiTrove: IconType = React.forwardRef(function SiTrove({title = 'Trove', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrove as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrpc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrpc.tsx new file mode 100644 index 000000000..7d98624e3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrpc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrpcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2596BE'; + + const SiTrpc: IconType = React.forwardRef(function SiTrpc({title = 'tRPC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrpc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTruenas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTruenas.tsx new file mode 100644 index 000000000..cc4770aac --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTruenas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTruenasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0095D5'; + + const SiTruenas: IconType = React.forwardRef(function SiTruenas({title = 'TrueNAS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTruenas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrueup.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrueup.tsx new file mode 100644 index 000000000..ab7923557 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrueup.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrueupProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E71DA'; + + const SiTrueup: IconType = React.forwardRef(function SiTrueup({title = 'TrueUp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrueup as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrulia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrulia.tsx new file mode 100644 index 000000000..97f99d182 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrulia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTruliaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0B09'; + + const SiTrulia: IconType = React.forwardRef(function SiTrulia({title = 'trulia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrulia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrustedshops.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrustedshops.tsx new file mode 100644 index 000000000..6cc17fd8a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrustedshops.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrustedshopsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDC0F'; + + const SiTrustedshops: IconType = React.forwardRef(function SiTrustedshops({title = 'Trusted Shops', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrustedshops as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrustpilot.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrustpilot.tsx new file mode 100644 index 000000000..599b26c87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTrustpilot.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTrustpilotProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B67A'; + + const SiTrustpilot: IconType = React.forwardRef(function SiTrustpilot({title = 'Trustpilot', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTrustpilot as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTryhackme.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTryhackme.tsx new file mode 100644 index 000000000..35724f992 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTryhackme.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTryhackmeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212C42'; + + const SiTryhackme: IconType = React.forwardRef(function SiTryhackme({title = 'TryHackMe', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTryhackme as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTryitonline.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTryitonline.tsx new file mode 100644 index 000000000..8463efa45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTryitonline.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTryitonlineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#303030'; + + const SiTryitonline: IconType = React.forwardRef(function SiTryitonline({title = 'Try It Online', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTryitonline as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTsnode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTsnode.tsx new file mode 100644 index 000000000..2b9df7664 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTsnode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTsnodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3178C6'; + + const SiTsnode: IconType = React.forwardRef(function SiTsnode({title = 'ts-node', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTsnode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTubi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTubi.tsx new file mode 100644 index 000000000..fc5be2740 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTubi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTubiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7408FF'; + + const SiTubi: IconType = React.forwardRef(function SiTubi({title = 'Tubi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTubi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTui.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTui.tsx new file mode 100644 index 000000000..952d2d1b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTui.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTuiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D40E14'; + + const SiTui: IconType = React.forwardRef(function SiTui({title = 'TUI', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTui as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTumblr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTumblr.tsx new file mode 100644 index 000000000..1d843b35f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTumblr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTumblrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#36465D'; + + const SiTumblr: IconType = React.forwardRef(function SiTumblr({title = 'Tumblr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTumblr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurbo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurbo.tsx new file mode 100644 index 000000000..0febdc2a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurbo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTurboProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5CD8E5'; + + const SiTurbo: IconType = React.forwardRef(function SiTurbo({title = 'Turbo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTurbo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurborepo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurborepo.tsx new file mode 100644 index 000000000..16174ea0b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurborepo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTurborepoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1E56'; + + const SiTurborepo: IconType = React.forwardRef(function SiTurborepo({title = 'Turborepo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTurborepo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurbosquid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurbosquid.tsx new file mode 100644 index 000000000..833b6f56a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurbosquid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTurbosquidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8135'; + + const SiTurbosquid: IconType = React.forwardRef(function SiTurbosquid({title = 'TurboSquid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTurbosquid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurkishairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurkishairlines.tsx new file mode 100644 index 000000000..e1c343102 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurkishairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTurkishairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C70A0C'; + + const SiTurkishairlines: IconType = React.forwardRef(function SiTurkishairlines({title = 'Turkish Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTurkishairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurso.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurso.tsx new file mode 100644 index 000000000..6b88305b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTurso.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTursoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4FF8D2'; + + const SiTurso: IconType = React.forwardRef(function SiTurso({title = 'Turso', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTurso as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTuta.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTuta.tsx new file mode 100644 index 000000000..04334da4f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTuta.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTutaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#850122'; + + const SiTuta: IconType = React.forwardRef(function SiTuta({title = 'Tuta', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTuta as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTuxedocomputers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTuxedocomputers.tsx new file mode 100644 index 000000000..a000d249a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTuxedocomputers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTuxedocomputersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTuxedocomputers: IconType = React.forwardRef(function SiTuxedocomputers({title = 'TUXEDO Computers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTuxedocomputers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTv4play.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTv4play.tsx new file mode 100644 index 000000000..e14294d93 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTv4play.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTv4playProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E0001C'; + + const SiTv4play: IconType = React.forwardRef(function SiTv4play({title = 'TV4 Play', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTv4play as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTvtime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTvtime.tsx new file mode 100644 index 000000000..7dda1f1b8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTvtime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTvtimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD400'; + + const SiTvtime: IconType = React.forwardRef(function SiTvtime({title = 'TV Time', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTvtime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwenty.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwenty.tsx new file mode 100644 index 000000000..563aea9d5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwenty.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTwentyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTwenty: IconType = React.forwardRef(function SiTwenty({title = 'Twenty', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTwenty as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwinkly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwinkly.tsx new file mode 100644 index 000000000..0243d397d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwinkly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTwinklyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FCC15E'; + + const SiTwinkly: IconType = React.forwardRef(function SiTwinkly({title = 'Twinkly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTwinkly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwinmotion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwinmotion.tsx new file mode 100644 index 000000000..578ac53d9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwinmotion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTwinmotionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTwinmotion: IconType = React.forwardRef(function SiTwinmotion({title = 'Twinmotion', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTwinmotion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwitch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwitch.tsx new file mode 100644 index 000000000..7e6a9ce46 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTwitch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTwitchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9146FF'; + + const SiTwitch: IconType = React.forwardRef(function SiTwitch({title = 'Twitch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTwitch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypeform.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypeform.tsx new file mode 100644 index 000000000..7c532ba15 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypeform.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTypeformProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#262627'; + + const SiTypeform: IconType = React.forwardRef(function SiTypeform({title = 'Typeform', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTypeform as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypeorm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypeorm.tsx new file mode 100644 index 000000000..26acfee87 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypeorm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTypeormProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE0803'; + + const SiTypeorm: IconType = React.forwardRef(function SiTypeorm({title = 'TypeORM', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTypeorm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTyper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTyper.tsx new file mode 100644 index 000000000..4c1705a9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTyper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTyperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiTyper: IconType = React.forwardRef(function SiTyper({title = 'Typer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTyper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypescript.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypescript.tsx new file mode 100644 index 000000000..f2fc5d443 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypescript.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTypescriptProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3178C6'; + + const SiTypescript: IconType = React.forwardRef(function SiTypescript({title = 'TypeScript', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTypescript as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypo3.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypo3.tsx new file mode 100644 index 000000000..fa74677d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypo3.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTypo3Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8700'; + + const SiTypo3: IconType = React.forwardRef(function SiTypo3({title = 'TYPO3', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTypo3 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypst.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypst.tsx new file mode 100644 index 000000000..6401680d6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiTypst.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiTypstProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#239DAD'; + + const SiTypst: IconType = React.forwardRef(function SiTypst({title = 'Typst', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiTypst as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUber.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUber.tsx new file mode 100644 index 000000000..66658196a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUber.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiUber: IconType = React.forwardRef(function SiUber({title = 'Uber', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUber as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbereats.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbereats.tsx new file mode 100644 index 000000000..817777d66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbereats.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUbereatsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#06C167'; + + const SiUbereats: IconType = React.forwardRef(function SiUbereats({title = 'Uber Eats', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUbereats as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbiquiti.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbiquiti.tsx new file mode 100644 index 000000000..b0fb01b29 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbiquiti.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUbiquitiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0559C9'; + + const SiUbiquiti: IconType = React.forwardRef(function SiUbiquiti({title = 'Ubiquiti', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUbiquiti as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbisoft.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbisoft.tsx new file mode 100644 index 000000000..6caee9b09 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbisoft.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUbisoftProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiUbisoft: IconType = React.forwardRef(function SiUbisoft({title = 'Ubisoft', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUbisoft as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUblockorigin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUblockorigin.tsx new file mode 100644 index 000000000..686d2564b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUblockorigin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUblockoriginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#800000'; + + const SiUblockorigin: IconType = React.forwardRef(function SiUblockorigin({title = 'uBlock Origin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUblockorigin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbuntu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbuntu.tsx new file mode 100644 index 000000000..b25d4617d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbuntu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUbuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E95420'; + + const SiUbuntu: IconType = React.forwardRef(function SiUbuntu({title = 'Ubuntu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUbuntu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbuntumate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbuntumate.tsx new file mode 100644 index 000000000..15f5dbe39 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUbuntumate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUbuntumateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#84A454'; + + const SiUbuntumate: IconType = React.forwardRef(function SiUbuntumate({title = 'Ubuntu MATE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUbuntumate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdacity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdacity.tsx new file mode 100644 index 000000000..672df16a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdacity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUdacityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#02B3E4'; + + const SiUdacity: IconType = React.forwardRef(function SiUdacity({title = 'Udacity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUdacity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdemy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdemy.tsx new file mode 100644 index 000000000..6471f4006 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdemy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUdemyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A435F0'; + + const SiUdemy: IconType = React.forwardRef(function SiUdemy({title = 'Udemy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUdemy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdotsdotnews.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdotsdotnews.tsx new file mode 100644 index 000000000..e4f6e22c7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUdotsdotnews.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUdotsdotnewsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005EA6'; + + const SiUdotsdotnews: IconType = React.forwardRef(function SiUdotsdotnews({title = 'U.S. News', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUdotsdotnews as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUfc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUfc.tsx new file mode 100644 index 000000000..904ae4939 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUfc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUfcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D20A0A'; + + const SiUfc: IconType = React.forwardRef(function SiUfc({title = 'UFC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUfc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUikit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUikit.tsx new file mode 100644 index 000000000..78b4ae414 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUikit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUikitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2396F3'; + + const SiUikit: IconType = React.forwardRef(function SiUikit({title = 'UIkit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUikit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUipath.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUipath.tsx new file mode 100644 index 000000000..4c5dbd17e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUipath.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUipathProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA4616'; + + const SiUipath: IconType = React.forwardRef(function SiUipath({title = 'UiPath', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUipath as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUkca.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUkca.tsx new file mode 100644 index 000000000..c607a769f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUkca.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUkcaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiUkca: IconType = React.forwardRef(function SiUkca({title = 'UKCA', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUkca as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUltralytics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUltralytics.tsx new file mode 100644 index 000000000..cb73d63e1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUltralytics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUltralyticsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111F68'; + + const SiUltralytics: IconType = React.forwardRef(function SiUltralytics({title = 'Ultralytics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUltralytics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUlule.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUlule.tsx new file mode 100644 index 000000000..802d873fa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUlule.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUluleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#18A5D6'; + + const SiUlule: IconType = React.forwardRef(function SiUlule({title = 'Ulule', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUlule as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmami.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmami.tsx new file mode 100644 index 000000000..193a83374 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmami.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUmamiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiUmami: IconType = React.forwardRef(function SiUmami({title = 'Umami', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUmami as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmbraco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmbraco.tsx new file mode 100644 index 000000000..b75e0f221 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmbraco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUmbracoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3544B1'; + + const SiUmbraco: IconType = React.forwardRef(function SiUmbraco({title = 'Umbraco', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUmbraco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmbrel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmbrel.tsx new file mode 100644 index 000000000..9dfe46820 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUmbrel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUmbrelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5351FB'; + + const SiUmbrel: IconType = React.forwardRef(function SiUmbrel({title = 'Umbrel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUmbrel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUml.tsx new file mode 100644 index 000000000..be7c5440e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUmlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FABD14'; + + const SiUml: IconType = React.forwardRef(function SiUml({title = 'UML', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnacademy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnacademy.tsx new file mode 100644 index 000000000..364ca8c47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnacademy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnacademyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#08BD80'; + + const SiUnacademy: IconType = React.forwardRef(function SiUnacademy({title = 'Unacademy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnacademy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnderarmour.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnderarmour.tsx new file mode 100644 index 000000000..25f3dce42 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnderarmour.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnderarmourProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1D1D1D'; + + const SiUnderarmour: IconType = React.forwardRef(function SiUnderarmour({title = 'Under Armour', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnderarmour as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnderscoredotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnderscoredotjs.tsx new file mode 100644 index 000000000..3698e18a2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnderscoredotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnderscoredotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0371B5'; + + const SiUnderscoredotjs: IconType = React.forwardRef(function SiUnderscoredotjs({title = 'Underscore.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnderscoredotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUndertale.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUndertale.tsx new file mode 100644 index 000000000..35480968c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUndertale.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUndertaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E71D29'; + + const SiUndertale: IconType = React.forwardRef(function SiUndertale({title = 'Undertale', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUndertale as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnicode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnicode.tsx new file mode 100644 index 000000000..124dc8cdc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnicode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnicodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5455FE'; + + const SiUnicode: IconType = React.forwardRef(function SiUnicode({title = 'Unicode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnicode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnilever.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnilever.tsx new file mode 100644 index 000000000..1f887639e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnilever.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnileverProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F36C7'; + + const SiUnilever: IconType = React.forwardRef(function SiUnilever({title = 'Unilever', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnilever as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUniqlo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUniqlo.tsx new file mode 100644 index 000000000..51c3ab015 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUniqlo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUniqloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiUniqlo: IconType = React.forwardRef(function SiUniqlo({title = 'Uniqlo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUniqlo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUniqloJa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUniqloJa.tsx new file mode 100644 index 000000000..7d152894c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUniqloJa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUniqloJaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiUniqloJa: IconType = React.forwardRef(function SiUniqloJa({title = 'Uniqlo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUniqloJa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnitedairlines.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnitedairlines.tsx new file mode 100644 index 000000000..b998813e2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnitedairlines.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnitedairlinesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002244'; + + const SiUnitedairlines: IconType = React.forwardRef(function SiUnitedairlines({title = 'United Airlines', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnitedairlines as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnitednations.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnitednations.tsx new file mode 100644 index 000000000..adc885dcf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnitednations.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnitednationsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009EDB'; + + const SiUnitednations: IconType = React.forwardRef(function SiUnitednations({title = 'United Nations', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnitednations as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnity.tsx new file mode 100644 index 000000000..c9d9370b2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFFFFF'; + + const SiUnity: IconType = React.forwardRef(function SiUnity({title = 'Unity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnjs.tsx new file mode 100644 index 000000000..8d48ffc9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ECDC5A'; + + const SiUnjs: IconType = React.forwardRef(function SiUnjs({title = 'UnJS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnlicense.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnlicense.tsx new file mode 100644 index 000000000..92be76bbf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnlicense.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnlicenseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#808080'; + + const SiUnlicense: IconType = React.forwardRef(function SiUnlicense({title = 'Unlicense', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnlicense as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnocss.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnocss.tsx new file mode 100644 index 000000000..fbac0766c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnocss.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnocssProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiUnocss: IconType = React.forwardRef(function SiUnocss({title = 'UnoCSS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnocss as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnpkg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnpkg.tsx new file mode 100644 index 000000000..3ed02be5b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnpkg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnpkgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiUnpkg: IconType = React.forwardRef(function SiUnpkg({title = 'unpkg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnpkg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnraid.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnraid.tsx new file mode 100644 index 000000000..78c8eb1d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnraid.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnraidProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15A2C'; + + const SiUnraid: IconType = React.forwardRef(function SiUnraid({title = 'Unraid', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnraid as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnrealengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnrealengine.tsx new file mode 100644 index 000000000..24f1ad776 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnrealengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnrealengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0E1128'; + + const SiUnrealengine: IconType = React.forwardRef(function SiUnrealengine({title = 'Unreal Engine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnrealengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnsplash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnsplash.tsx new file mode 100644 index 000000000..5b2a0718a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnsplash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnsplashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiUnsplash: IconType = React.forwardRef(function SiUnsplash({title = 'Unsplash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnsplash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnstop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnstop.tsx new file mode 100644 index 000000000..e87ad7424 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUnstop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUnstopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1C4980'; + + const SiUnstop: IconType = React.forwardRef(function SiUnstop({title = 'Unstop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUnstop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUntappd.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUntappd.tsx new file mode 100644 index 000000000..dfc0f2323 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUntappd.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUntappdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC000'; + + const SiUntappd: IconType = React.forwardRef(function SiUntappd({title = 'Untappd', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUntappd as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpcloud.tsx new file mode 100644 index 000000000..fb7b5ae70 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUpcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7B00FF'; + + const SiUpcloud: IconType = React.forwardRef(function SiUpcloud({title = 'UpCloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUpcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUphold.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUphold.tsx new file mode 100644 index 000000000..6d8464a71 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUphold.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUpholdProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#49CC68'; + + const SiUphold: IconType = React.forwardRef(function SiUphold({title = 'Uphold', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUphold as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUplabs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUplabs.tsx new file mode 100644 index 000000000..788a256c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUplabs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUplabsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3930D8'; + + const SiUplabs: IconType = React.forwardRef(function SiUplabs({title = 'UpLabs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUplabs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpptime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpptime.tsx new file mode 100644 index 000000000..ebfb5c0cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpptime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUpptimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1ABC9C'; + + const SiUpptime: IconType = React.forwardRef(function SiUpptime({title = 'Upptime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUpptime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUps.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUps.tsx new file mode 100644 index 000000000..c928ea71e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUps.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUpsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#150400'; + + const SiUps: IconType = React.forwardRef(function SiUps({title = 'UPS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUps as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpstash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpstash.tsx new file mode 100644 index 000000000..17e86b085 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpstash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUpstashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00E9A3'; + + const SiUpstash: IconType = React.forwardRef(function SiUpstash({title = 'Upstash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUpstash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUptimekuma.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUptimekuma.tsx new file mode 100644 index 000000000..4061d8bea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUptimekuma.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUptimekumaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5CDD8B'; + + const SiUptimekuma: IconType = React.forwardRef(function SiUptimekuma({title = 'Uptime Kuma', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUptimekuma as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpwork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpwork.tsx new file mode 100644 index 000000000..92d20b225 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUpwork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUpworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6FDA44'; + + const SiUpwork: IconType = React.forwardRef(function SiUpwork({title = 'Upwork', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUpwork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUservoice.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUservoice.tsx new file mode 100644 index 000000000..e8dddcc38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUservoice.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUservoiceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6720'; + + const SiUservoice: IconType = React.forwardRef(function SiUservoice({title = 'UserVoice', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUservoice as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUsps.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUsps.tsx new file mode 100644 index 000000000..807924ada --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUsps.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUspsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333366'; + + const SiUsps: IconType = React.forwardRef(function SiUsps({title = 'USPS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUsps as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUtorrent.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUtorrent.tsx new file mode 100644 index 000000000..95e5abe40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUtorrent.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUtorrentProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#76B83F'; + + const SiUtorrent: IconType = React.forwardRef(function SiUtorrent({title = 'uTorrent', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUtorrent as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiUv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUv.tsx new file mode 100644 index 000000000..9de497724 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiUv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiUvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DE5FE9'; + + const SiUv: IconType = React.forwardRef(function SiUv({title = 'uv', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiUv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiV.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV.tsx new file mode 100644 index 000000000..6f9b0e035 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5D87BF'; + + const SiV: IconType = React.forwardRef(function SiV({title = 'V', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiV as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiV0.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV0.tsx new file mode 100644 index 000000000..efeab70da --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV0.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiV0Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiV0: IconType = React.forwardRef(function SiV0({title = 'v0', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiV0 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiV2ex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV2ex.tsx new file mode 100644 index 000000000..3e0802edd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV2ex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiV2exProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F1F1F'; + + const SiV2ex: IconType = React.forwardRef(function SiV2ex({title = 'V2EX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiV2ex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiV8.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV8.tsx new file mode 100644 index 000000000..98f5205b1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiV8.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiV8Props = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B8BF5'; + + const SiV8: IconType = React.forwardRef(function SiV8({title = 'V8', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiV8 as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVaadin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVaadin.tsx new file mode 100644 index 000000000..79985d6d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVaadin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVaadinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B4F0'; + + const SiVaadin: IconType = React.forwardRef(function SiVaadin({title = 'Vaadin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVaadin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVagrant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVagrant.tsx new file mode 100644 index 000000000..a607ed579 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVagrant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVagrantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1868F2'; + + const SiVagrant: IconType = React.forwardRef(function SiVagrant({title = 'Vagrant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVagrant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVala.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVala.tsx new file mode 100644 index 000000000..f60fcb1ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVala.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiValaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7239B3'; + + const SiVala: IconType = React.forwardRef(function SiVala({title = 'Vala', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVala as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiValorant.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiValorant.tsx new file mode 100644 index 000000000..6d3091432 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiValorant.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiValorantProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA4454'; + + const SiValorant: IconType = React.forwardRef(function SiValorant({title = 'Valorant', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiValorant as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiValve.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiValve.tsx new file mode 100644 index 000000000..e42ac0a2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiValve.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiValveProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F74843'; + + const SiValve: IconType = React.forwardRef(function SiValve({title = 'Valve', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiValve as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVanillaextract.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVanillaextract.tsx new file mode 100644 index 000000000..5dee7426c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVanillaextract.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVanillaextractProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F786AD'; + + const SiVanillaextract: IconType = React.forwardRef(function SiVanillaextract({title = 'Vanilla Extract', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVanillaextract as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVapor.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVapor.tsx new file mode 100644 index 000000000..c18b01320 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVapor.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVaporProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0D0D0D'; + + const SiVapor: IconType = React.forwardRef(function SiVapor({title = 'Vapor', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVapor as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVault.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVault.tsx new file mode 100644 index 000000000..3a9aebdae --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVault.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVaultProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFEC6E'; + + const SiVault: IconType = React.forwardRef(function SiVault({title = 'Vault', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVault as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVaultwarden.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVaultwarden.tsx new file mode 100644 index 000000000..dc81be805 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVaultwarden.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVaultwardenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiVaultwarden: IconType = React.forwardRef(function SiVaultwarden({title = 'Vaultwarden', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVaultwarden as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVauxhall.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVauxhall.tsx new file mode 100644 index 000000000..3048b7030 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVauxhall.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVauxhallProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB001E'; + + const SiVauxhall: IconType = React.forwardRef(function SiVauxhall({title = 'Vauxhall', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVauxhall as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVbulletin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVbulletin.tsx new file mode 100644 index 000000000..9fb38a4a6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVbulletin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVbulletinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#184D66'; + + const SiVbulletin: IconType = React.forwardRef(function SiVbulletin({title = 'vBulletin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVbulletin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectary.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectary.tsx new file mode 100644 index 000000000..c4d8c05e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectary.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVectaryProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6100FF'; + + const SiVectary: IconType = React.forwardRef(function SiVectary({title = 'Vectary', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVectary as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectorlogozone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectorlogozone.tsx new file mode 100644 index 000000000..38e056293 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectorlogozone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVectorlogozoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#184D66'; + + const SiVectorlogozone: IconType = React.forwardRef(function SiVectorlogozone({title = 'Vector Logo Zone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVectorlogozone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectorworks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectorworks.tsx new file mode 100644 index 000000000..96ca05882 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVectorworks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVectorworksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiVectorworks: IconType = React.forwardRef(function SiVectorworks({title = 'Vectorworks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVectorworks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeeam.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeeam.tsx new file mode 100644 index 000000000..e53fe9c38 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeeam.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVeeamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B336'; + + const SiVeeam: IconType = React.forwardRef(function SiVeeam({title = 'Veeam', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVeeam as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeed.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeed.tsx new file mode 100644 index 000000000..7ebf3d441 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeed.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVeedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B6FF60'; + + const SiVeed: IconType = React.forwardRef(function SiVeed({title = 'VEED', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVeed as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeepee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeepee.tsx new file mode 100644 index 000000000..62671830b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeepee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVeepeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EC008C'; + + const SiVeepee: IconType = React.forwardRef(function SiVeepee({title = 'Veepee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVeepee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVega.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVega.tsx new file mode 100644 index 000000000..ec721097b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVega.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVegaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2450B2'; + + const SiVega: IconType = React.forwardRef(function SiVega({title = 'Vega', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVega as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVegas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVegas.tsx new file mode 100644 index 000000000..3d9b98b22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVegas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVegasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1A1A'; + + const SiVegas: IconType = React.forwardRef(function SiVegas({title = 'VEGAS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVegas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVelocity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVelocity.tsx new file mode 100644 index 000000000..c98058ec9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVelocity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVelocityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1BBAE0'; + + const SiVelocity: IconType = React.forwardRef(function SiVelocity({title = 'Velocity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVelocity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVelog.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVelog.tsx new file mode 100644 index 000000000..2c383b60b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVelog.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVelogProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#20C997'; + + const SiVelog: IconType = React.forwardRef(function SiVelog({title = 'Velog', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVelog as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVencord.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVencord.tsx new file mode 100644 index 000000000..77e9bf12e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVencord.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVencordProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D3859B'; + + const SiVencord: IconType = React.forwardRef(function SiVencord({title = 'Vencord', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVencord as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVenmo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVenmo.tsx new file mode 100644 index 000000000..e265f2e79 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVenmo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVenmoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#008CFF'; + + const SiVenmo: IconType = React.forwardRef(function SiVenmo({title = 'Venmo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVenmo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVercel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVercel.tsx new file mode 100644 index 000000000..610c31fb3 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVercel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVercelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiVercel: IconType = React.forwardRef(function SiVercel({title = 'Vercel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVercel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVerdaccio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVerdaccio.tsx new file mode 100644 index 000000000..257e92065 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVerdaccio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVerdaccioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B5E40'; + + const SiVerdaccio: IconType = React.forwardRef(function SiVerdaccio({title = 'Verdaccio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVerdaccio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeritas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeritas.tsx new file mode 100644 index 000000000..164cf4b55 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVeritas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVeritasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B1181E'; + + const SiVeritas: IconType = React.forwardRef(function SiVeritas({title = 'Veritas', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVeritas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVerizon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVerizon.tsx new file mode 100644 index 000000000..974dbddfe --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVerizon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVerizonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CD040B'; + + const SiVerizon: IconType = React.forwardRef(function SiVerizon({title = 'Verizon', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVerizon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVespa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVespa.tsx new file mode 100644 index 000000000..d50cc72ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVespa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVespaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#85B09A'; + + const SiVespa: IconType = React.forwardRef(function SiVespa({title = 'Vespa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVespa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVestel.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVestel.tsx new file mode 100644 index 000000000..b2b8c00cc --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVestel.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVestelProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD052B'; + + const SiVestel: IconType = React.forwardRef(function SiVestel({title = 'Vestel', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVestel as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVexxhost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVexxhost.tsx new file mode 100644 index 000000000..9cb10efb4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVexxhost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVexxhostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2A1659'; + + const SiVexxhost: IconType = React.forwardRef(function SiVexxhost({title = 'VEXXHOST', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVexxhost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVfairs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVfairs.tsx new file mode 100644 index 000000000..c6fc0dc20 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVfairs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVfairsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF4678'; + + const SiVfairs: IconType = React.forwardRef(function SiVfairs({title = 'vFairs', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVfairs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiViadeo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViadeo.tsx new file mode 100644 index 000000000..d52c04d9b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViadeo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiViadeoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F07355'; + + const SiViadeo: IconType = React.forwardRef(function SiViadeo({title = 'Viadeo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiViadeo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiViaplay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViaplay.tsx new file mode 100644 index 000000000..60043bded --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViaplay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiViaplayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FE365F'; + + const SiViaplay: IconType = React.forwardRef(function SiViaplay({title = 'Viaplay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiViaplay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiViber.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViber.tsx new file mode 100644 index 000000000..ecaff086d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViber.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiViberProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7360F2'; + + const SiViber: IconType = React.forwardRef(function SiViber({title = 'Viber', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiViber as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiViblo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViblo.tsx new file mode 100644 index 000000000..c937445f8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiViblo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVibloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5387C6'; + + const SiViblo: IconType = React.forwardRef(function SiViblo({title = 'Viblo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiViblo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVictoriametrics.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVictoriametrics.tsx new file mode 100644 index 000000000..47bcdf5d1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVictoriametrics.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVictoriametricsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#621773'; + + const SiVictoriametrics: IconType = React.forwardRef(function SiVictoriametrics({title = 'VictoriaMetrics', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVictoriametrics as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVictronenergy.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVictronenergy.tsx new file mode 100644 index 000000000..5f6bc6607 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVictronenergy.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVictronenergyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0066B2'; + + const SiVictronenergy: IconType = React.forwardRef(function SiVictronenergy({title = 'Victron Energy', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVictronenergy as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVikunja.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVikunja.tsx new file mode 100644 index 000000000..1384c5848 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVikunja.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVikunjaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#196AFF'; + + const SiVikunja: IconType = React.forwardRef(function SiVikunja({title = 'Vikunja', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVikunja as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVim.tsx new file mode 100644 index 000000000..3609a6e73 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#019733'; + + const SiVim: IconType = React.forwardRef(function SiVim({title = 'Vim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVimeo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVimeo.tsx new file mode 100644 index 000000000..ec327d81a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVimeo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVimeoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1AB7EA'; + + const SiVimeo: IconType = React.forwardRef(function SiVimeo({title = 'Vimeo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVimeo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVimeolivestream.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVimeolivestream.tsx new file mode 100644 index 000000000..aa4a26a45 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVimeolivestream.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVimeolivestreamProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0A0A20'; + + const SiVimeolivestream: IconType = React.forwardRef(function SiVimeolivestream({title = 'Vimeo Livestream', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVimeolivestream as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVinted.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVinted.tsx new file mode 100644 index 000000000..fdcecb644 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVinted.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVintedProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007782'; + + const SiVinted: IconType = React.forwardRef(function SiVinted({title = 'Vinted', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVinted as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirgin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirgin.tsx new file mode 100644 index 000000000..8dc93dd08 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirgin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVirginProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E10A0A'; + + const SiVirgin: IconType = React.forwardRef(function SiVirgin({title = 'Virgin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVirgin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirginatlantic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirginatlantic.tsx new file mode 100644 index 000000000..7810e8f47 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirginatlantic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVirginatlanticProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA0530'; + + const SiVirginatlantic: IconType = React.forwardRef(function SiVirginatlantic({title = 'Virgin Atlantic', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVirginatlantic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirginmedia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirginmedia.tsx new file mode 100644 index 000000000..e6feb53f6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirginmedia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVirginmediaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED1A37'; + + const SiVirginmedia: IconType = React.forwardRef(function SiVirginmedia({title = 'Virgin Media', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVirginmedia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirtualbox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirtualbox.tsx new file mode 100644 index 000000000..4db5fb1db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirtualbox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVirtualboxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F61B4'; + + const SiVirtualbox: IconType = React.forwardRef(function SiVirtualbox({title = 'VirtualBox', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVirtualbox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirustotal.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirustotal.tsx new file mode 100644 index 000000000..8a78c2050 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVirustotal.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVirustotalProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#394EFF'; + + const SiVirustotal: IconType = React.forwardRef(function SiVirustotal({title = 'VirusTotal', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVirustotal as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisa.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisa.tsx new file mode 100644 index 000000000..af371cb77 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisa.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVisaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A1F71'; + + const SiVisa: IconType = React.forwardRef(function SiVisa({title = 'Visa', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVisa as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisualparadigm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisualparadigm.tsx new file mode 100644 index 000000000..c02fc6f41 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisualparadigm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVisualparadigmProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC3333'; + + const SiVisualparadigm: IconType = React.forwardRef(function SiVisualparadigm({title = 'Visual Paradigm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVisualparadigm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisx.tsx new file mode 100644 index 000000000..8911e6e58 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVisx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVisxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1231'; + + const SiVisx: IconType = React.forwardRef(function SiVisx({title = 'visx', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVisx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVite.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVite.tsx new file mode 100644 index 000000000..e1733b51e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVite.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiViteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9135FF'; + + const SiVite: IconType = React.forwardRef(function SiVite({title = 'Vite', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVite as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitepress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitepress.tsx new file mode 100644 index 000000000..bf18848ea --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitepress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVitepressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5C73E7'; + + const SiVitepress: IconType = React.forwardRef(function SiVitepress({title = 'VitePress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVitepress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitess.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitess.tsx new file mode 100644 index 000000000..43bc8e887 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitess.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVitessProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F16728'; + + const SiVitess: IconType = React.forwardRef(function SiVitess({title = 'Vitess', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVitess as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitest.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitest.tsx new file mode 100644 index 000000000..5b35a58e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVitest.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVitestProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00FF74'; + + const SiVitest: IconType = React.forwardRef(function SiVitest({title = 'Vitest', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVitest as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivaldi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivaldi.tsx new file mode 100644 index 000000000..3a1d040f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivaldi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVivaldiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EF3939'; + + const SiVivaldi: IconType = React.forwardRef(function SiVivaldi({title = 'Vivaldi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVivaldi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivawallet.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivawallet.tsx new file mode 100644 index 000000000..0d8707acf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivawallet.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVivawalletProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1F263A'; + + const SiVivawallet: IconType = React.forwardRef(function SiVivawallet({title = 'Viva Wallet', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVivawallet as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivino.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivino.tsx new file mode 100644 index 000000000..318c3c83f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivino.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVivinoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A61A30'; + + const SiVivino: IconType = React.forwardRef(function SiVivino({title = 'Vivino', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVivino as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivint.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivint.tsx new file mode 100644 index 000000000..fe5ba4d1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivint.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVivintProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212721'; + + const SiVivint: IconType = React.forwardRef(function SiVivint({title = 'Vivint', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVivint as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivo.tsx new file mode 100644 index 000000000..ebf20883e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVivo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVivoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#415FFF'; + + const SiVivo: IconType = React.forwardRef(function SiVivo({title = 'vivo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVivo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVk.tsx new file mode 100644 index 000000000..cffabcb99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0077FF'; + + const SiVk: IconType = React.forwardRef(function SiVk({title = 'VK', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVlcmediaplayer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVlcmediaplayer.tsx new file mode 100644 index 000000000..de04cb071 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVlcmediaplayer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVlcmediaplayerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF8800'; + + const SiVlcmediaplayer: IconType = React.forwardRef(function SiVlcmediaplayer({title = 'VLC media player', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVlcmediaplayer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVmware.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVmware.tsx new file mode 100644 index 000000000..50abad10e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVmware.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVmwareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#607078'; + + const SiVmware: IconType = React.forwardRef(function SiVmware({title = 'VMware', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVmware as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVodafone.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVodafone.tsx new file mode 100644 index 000000000..6b108b0f9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVodafone.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVodafoneProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60000'; + + const SiVodafone: IconType = React.forwardRef(function SiVodafone({title = 'Vodafone', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVodafone as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoelkner.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoelkner.tsx new file mode 100644 index 000000000..4f5f4aaf1 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoelkner.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVoelknerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#94C125'; + + const SiVoelkner: IconType = React.forwardRef(function SiVoelkner({title = 'voelkner', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVoelkner as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoidlinux.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoidlinux.tsx new file mode 100644 index 000000000..aa82d14e5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoidlinux.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVoidlinuxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#478061'; + + const SiVoidlinux: IconType = React.forwardRef(function SiVoidlinux({title = 'Void Linux', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVoidlinux as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoipdotms.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoipdotms.tsx new file mode 100644 index 000000000..8a3b5cb24 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVoipdotms.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVoipdotmsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E1382D'; + + const SiVoipdotms: IconType = React.forwardRef(function SiVoipdotms({title = 'VoIP.ms', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVoipdotms as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVolkswagen.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVolkswagen.tsx new file mode 100644 index 000000000..8dd73abc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVolkswagen.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVolkswagenProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#151F5D'; + + const SiVolkswagen: IconType = React.forwardRef(function SiVolkswagen({title = 'Volkswagen', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVolkswagen as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVolvo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVolvo.tsx new file mode 100644 index 000000000..9ccef8e0e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVolvo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVolvoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#003057'; + + const SiVolvo: IconType = React.forwardRef(function SiVolvo({title = 'Volvo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVolvo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVonage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVonage.tsx new file mode 100644 index 000000000..a85152709 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVonage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVonageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiVonage: IconType = React.forwardRef(function SiVonage({title = 'Vonage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVonage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVorondesign.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVorondesign.tsx new file mode 100644 index 000000000..9883940aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVorondesign.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVorondesignProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED3023'; + + const SiVorondesign: IconType = React.forwardRef(function SiVorondesign({title = 'Voron Design', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVorondesign as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVowpalwabbit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVowpalwabbit.tsx new file mode 100644 index 000000000..4201890cd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVowpalwabbit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVowpalwabbitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF81F9'; + + const SiVowpalwabbit: IconType = React.forwardRef(function SiVowpalwabbit({title = 'Vowpal Wabbit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVowpalwabbit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVox.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVox.tsx new file mode 100644 index 000000000..9e3d5952a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVox.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVoxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DA074A'; + + const SiVox: IconType = React.forwardRef(function SiVox({title = 'VOX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVox as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVrchat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVrchat.tsx new file mode 100644 index 000000000..c5c74c802 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVrchat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVrchatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiVrchat: IconType = React.forwardRef(function SiVrchat({title = 'VRChat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVrchat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVsco.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVsco.tsx new file mode 100644 index 000000000..bd3f6d1db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVsco.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVscoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiVsco: IconType = React.forwardRef(function SiVsco({title = 'VSCO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVsco as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVscodium.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVscodium.tsx new file mode 100644 index 000000000..ee6220a4d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVscodium.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVscodiumProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2F80ED'; + + const SiVscodium: IconType = React.forwardRef(function SiVscodium({title = 'VSCodium', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVscodium as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVtex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVtex.tsx new file mode 100644 index 000000000..fab2b6910 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVtex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVtexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#ED125F'; + + const SiVtex: IconType = React.forwardRef(function SiVtex({title = 'VTEX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVtex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVuedotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVuedotjs.tsx new file mode 100644 index 000000000..36ff11eb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVuedotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVuedotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4FC08D'; + + const SiVuedotjs: IconType = React.forwardRef(function SiVuedotjs({title = 'Vue.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVuedotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVuetify.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVuetify.tsx new file mode 100644 index 000000000..e8c56bf50 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVuetify.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVuetifyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1867C0'; + + const SiVuetify: IconType = React.forwardRef(function SiVuetify({title = 'Vuetify', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVuetify as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVueuse.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVueuse.tsx new file mode 100644 index 000000000..cc241ed37 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVueuse.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVueuseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#41B883'; + + const SiVueuse: IconType = React.forwardRef(function SiVueuse({title = 'VueUse', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVueuse as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVulkan.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVulkan.tsx new file mode 100644 index 000000000..9034e20cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVulkan.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVulkanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A41E22'; + + const SiVulkan: IconType = React.forwardRef(function SiVulkan({title = 'Vulkan', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVulkan as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVultr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVultr.tsx new file mode 100644 index 000000000..94791d42e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVultr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVultrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#007BFC'; + + const SiVultr: IconType = React.forwardRef(function SiVultr({title = 'Vultr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVultr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiVyond.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVyond.tsx new file mode 100644 index 000000000..b4c5f82a8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiVyond.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiVyondProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D95E26'; + + const SiVyond: IconType = React.forwardRef(function SiVyond({title = 'Vyond', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiVyond as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiW3schools.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiW3schools.tsx new file mode 100644 index 000000000..fcde4601a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiW3schools.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiW3schoolsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#04AA6D'; + + const SiW3schools: IconType = React.forwardRef(function SiW3schools({title = 'W3Schools', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiW3schools as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWacom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWacom.tsx new file mode 100644 index 000000000..3aa7b60c6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWacom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWacomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWacom: IconType = React.forwardRef(function SiWacom({title = 'Wacom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWacom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWagmi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWagmi.tsx new file mode 100644 index 000000000..98182dcaf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWagmi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWagmiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWagmi: IconType = React.forwardRef(function SiWagmi({title = 'Wagmi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWagmi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWagtail.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWagtail.tsx new file mode 100644 index 000000000..7bce68e53 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWagtail.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWagtailProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#43B1B0'; + + const SiWagtail: IconType = React.forwardRef(function SiWagtail({title = 'Wagtail', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWagtail as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWails.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWails.tsx new file mode 100644 index 000000000..f8efdb328 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWails.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWailsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DF0000'; + + const SiWails: IconType = React.forwardRef(function SiWails({title = 'Wails', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWails as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWakatime.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWakatime.tsx new file mode 100644 index 000000000..1fbc7ef17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWakatime.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWakatimeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWakatime: IconType = React.forwardRef(function SiWakatime({title = 'WakaTime', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWakatime as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWalkman.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWalkman.tsx new file mode 100644 index 000000000..06c67082c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWalkman.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWalkmanProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWalkman: IconType = React.forwardRef(function SiWalkman({title = 'WALKMAN', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWalkman as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWallabag.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWallabag.tsx new file mode 100644 index 000000000..e07c350aa --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWallabag.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWallabagProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3F6184'; + + const SiWallabag: IconType = React.forwardRef(function SiWallabag({title = 'Wallabag', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWallabag as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWalletconnect.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWalletconnect.tsx new file mode 100644 index 000000000..18a675f40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWalletconnect.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWalletconnectProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3B99FC'; + + const SiWalletconnect: IconType = React.forwardRef(function SiWalletconnect({title = 'WalletConnect', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWalletconnect as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWantedly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWantedly.tsx new file mode 100644 index 000000000..9b0908443 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWantedly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWantedlyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21BDDB'; + + const SiWantedly: IconType = React.forwardRef(function SiWantedly({title = 'Wantedly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWantedly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWappalyzer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWappalyzer.tsx new file mode 100644 index 000000000..c12fbd753 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWappalyzer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWappalyzerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4608AD'; + + const SiWappalyzer: IconType = React.forwardRef(function SiWappalyzer({title = 'Wappalyzer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWappalyzer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWarp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWarp.tsx new file mode 100644 index 000000000..1aec9a83f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWarp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWarpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#01A4FF'; + + const SiWarp: IconType = React.forwardRef(function SiWarp({title = 'Warp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWarp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasabi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasabi.tsx new file mode 100644 index 000000000..b998a7574 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasabi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWasabiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#01CD3E'; + + const SiWasabi: IconType = React.forwardRef(function SiWasabi({title = 'Wasabi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWasabi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasmcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasmcloud.tsx new file mode 100644 index 000000000..177468d52 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasmcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWasmcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00BC8E'; + + const SiWasmcloud: IconType = React.forwardRef(function SiWasmcloud({title = 'wasmCloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWasmcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasmer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasmer.tsx new file mode 100644 index 000000000..c71920446 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWasmer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWasmerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4946DD'; + + const SiWasmer: IconType = React.forwardRef(function SiWasmer({title = 'Wasmer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWasmer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWatchtower.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWatchtower.tsx new file mode 100644 index 000000000..b2393dcdf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWatchtower.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWatchtowerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#416271'; + + const SiWatchtower: IconType = React.forwardRef(function SiWatchtower({title = 'Watchtower', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWatchtower as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWattpad.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWattpad.tsx new file mode 100644 index 000000000..1f64176bf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWattpad.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWattpadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF500A'; + + const SiWattpad: IconType = React.forwardRef(function SiWattpad({title = 'Wattpad', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWattpad as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWayland.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWayland.tsx new file mode 100644 index 000000000..db26aac64 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWayland.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWaylandProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFBC00'; + + const SiWayland: IconType = React.forwardRef(function SiWayland({title = 'Wayland', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWayland as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWaze.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWaze.tsx new file mode 100644 index 000000000..6e19d3605 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWaze.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWazeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#33CCFF'; + + const SiWaze: IconType = React.forwardRef(function SiWaze({title = 'Waze', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWaze as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWazirx.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWazirx.tsx new file mode 100644 index 000000000..78c1f34e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWazirx.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWazirxProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3067F0'; + + const SiWazirx: IconType = React.forwardRef(function SiWazirx({title = 'WazirX', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWazirx as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWearos.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWearos.tsx new file mode 100644 index 000000000..4d32c2177 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWearos.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWearosProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4285F4'; + + const SiWearos: IconType = React.forwardRef(function SiWearos({title = 'Wear OS', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWearos as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeasyl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeasyl.tsx new file mode 100644 index 000000000..dee63ec9c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeasyl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWeasylProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#990000'; + + const SiWeasyl: IconType = React.forwardRef(function SiWeasyl({title = 'Weasyl', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWeasyl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeb3dotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeb3dotjs.tsx new file mode 100644 index 000000000..77f6ac6cb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeb3dotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWeb3dotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F16822'; + + const SiWeb3dotjs: IconType = React.forwardRef(function SiWeb3dotjs({title = 'Web3.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWeb3dotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebassembly.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebassembly.tsx new file mode 100644 index 000000000..708aa5f88 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebassembly.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebassemblyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#654FF0'; + + const SiWebassembly: IconType = React.forwardRef(function SiWebassembly({title = 'WebAssembly', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebassembly as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebauthn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebauthn.tsx new file mode 100644 index 000000000..48bc7b63f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebauthn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebauthnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3423A6'; + + const SiWebauthn: IconType = React.forwardRef(function SiWebauthn({title = 'WebAuthn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebauthn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebawesome.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebawesome.tsx new file mode 100644 index 000000000..90d3d1194 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebawesome.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebawesomeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F36944'; + + const SiWebawesome: IconType = React.forwardRef(function SiWebawesome({title = 'Web Awesome', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebawesome as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebcomponentsdotorg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebcomponentsdotorg.tsx new file mode 100644 index 000000000..39ce53e7f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebcomponentsdotorg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebcomponentsdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#29ABE2'; + + const SiWebcomponentsdotorg: IconType = React.forwardRef(function SiWebcomponentsdotorg({title = 'webcomponents.org', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebcomponentsdotorg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebdotde.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebdotde.tsx new file mode 100644 index 000000000..996cf02cf --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebdotde.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebdotdeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD800'; + + const SiWebdotde: IconType = React.forwardRef(function SiWebdotde({title = 'WEB.DE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebdotde as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebdriverio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebdriverio.tsx new file mode 100644 index 000000000..3dc18a801 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebdriverio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebdriverioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA5906'; + + const SiWebdriverio: IconType = React.forwardRef(function SiWebdriverio({title = 'WebdriverIO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebdriverio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebex.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebex.tsx new file mode 100644 index 000000000..2fc17ecc0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebex.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebexProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWebex: IconType = React.forwardRef(function SiWebex({title = 'Webex', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebex as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebflow.tsx new file mode 100644 index 000000000..79dbfae06 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#146EF5'; + + const SiWebflow: IconType = React.forwardRef(function SiWebflow({title = 'Webflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebgl.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebgl.tsx new file mode 100644 index 000000000..10e40af02 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebgl.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebglProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#990000'; + + const SiWebgl: IconType = React.forwardRef(function SiWebgl({title = 'WebGL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebgl as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebgpu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebgpu.tsx new file mode 100644 index 000000000..d57ad627b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebgpu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebgpuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005A9C'; + + const SiWebgpu: IconType = React.forwardRef(function SiWebgpu({title = 'WebGPU', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebgpu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeblate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeblate.tsx new file mode 100644 index 000000000..c78de808b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeblate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWeblateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2ECCAA'; + + const SiWeblate: IconType = React.forwardRef(function SiWeblate({title = 'Weblate', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWeblate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebmin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebmin.tsx new file mode 100644 index 000000000..bda822fd8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebmin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebminProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#7DA0D0'; + + const SiWebmin: IconType = React.forwardRef(function SiWebmin({title = 'Webmin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebmin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebmoney.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebmoney.tsx new file mode 100644 index 000000000..931d80aca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebmoney.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebmoneyProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#036CB5'; + + const SiWebmoney: IconType = React.forwardRef(function SiWebmoney({title = 'WebMoney', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebmoney as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebpack.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebpack.tsx new file mode 100644 index 000000000..a3da5db33 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebpack.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebpackProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#8DD6F9'; + + const SiWebpack: IconType = React.forwardRef(function SiWebpack({title = 'Webpack', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebpack as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebrtc.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebrtc.tsx new file mode 100644 index 000000000..b89a7a4d2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebrtc.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebrtcProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#333333'; + + const SiWebrtc: IconType = React.forwardRef(function SiWebrtc({title = 'WebRTC', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebrtc as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebstorm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebstorm.tsx new file mode 100644 index 000000000..8cca20c1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebstorm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebstormProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWebstorm: IconType = React.forwardRef(function SiWebstorm({title = 'WebStorm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebstorm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebtoon.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebtoon.tsx new file mode 100644 index 000000000..fde6b0205 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebtoon.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebtoonProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D564'; + + const SiWebtoon: IconType = React.forwardRef(function SiWebtoon({title = 'WEBTOON', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebtoon as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebtrees.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebtrees.tsx new file mode 100644 index 000000000..2579da7e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWebtrees.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWebtreesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2694E8'; + + const SiWebtrees: IconType = React.forwardRef(function SiWebtrees({title = 'webtrees', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWebtrees as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWechat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWechat.tsx new file mode 100644 index 000000000..e2336ce18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWechat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWechatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#07C160'; + + const SiWechat: IconType = React.forwardRef(function SiWechat({title = 'WeChat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWechat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWegame.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWegame.tsx new file mode 100644 index 000000000..0bfdb438b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWegame.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWegameProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FAAB00'; + + const SiWegame: IconType = React.forwardRef(function SiWegame({title = 'WeGame', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWegame as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeightsandbiases.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeightsandbiases.tsx new file mode 100644 index 000000000..cf9eecd8f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeightsandbiases.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWeightsandbiasesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFBE00'; + + const SiWeightsandbiases: IconType = React.forwardRef(function SiWeightsandbiases({title = 'Weights & Biases', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWeightsandbiases as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWelcometothejungle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWelcometothejungle.tsx new file mode 100644 index 000000000..46bcb86ef --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWelcometothejungle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWelcometothejungleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFCD00'; + + const SiWelcometothejungle: IconType = React.forwardRef(function SiWelcometothejungle({title = 'Welcome to the Jungle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWelcometothejungle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWellfound.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWellfound.tsx new file mode 100644 index 000000000..15e99349b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWellfound.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWellfoundProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWellfound: IconType = React.forwardRef(function SiWellfound({title = 'Wellfound', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWellfound as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWellsfargo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWellsfargo.tsx new file mode 100644 index 000000000..602e38503 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWellsfargo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWellsfargoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#D71E28'; + + const SiWellsfargo: IconType = React.forwardRef(function SiWellsfargo({title = 'Wells Fargo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWellsfargo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWemo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWemo.tsx new file mode 100644 index 000000000..7d3269e34 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWemo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWemoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#72D44C'; + + const SiWemo: IconType = React.forwardRef(function SiWemo({title = 'WEMO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWemo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeread.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeread.tsx new file mode 100644 index 000000000..9b688cd4b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWeread.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWereadProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#37A7FF'; + + const SiWeread: IconType = React.forwardRef(function SiWeread({title = 'WeRead', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWeread as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWesternunion.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWesternunion.tsx new file mode 100644 index 000000000..364e74d99 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWesternunion.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWesternunionProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFDD00'; + + const SiWesternunion: IconType = React.forwardRef(function SiWesternunion({title = 'Western Union', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWesternunion as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWetransfer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWetransfer.tsx new file mode 100644 index 000000000..d74e0914b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWetransfer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWetransferProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#409FFF'; + + const SiWetransfer: IconType = React.forwardRef(function SiWetransfer({title = 'WeTransfer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWetransfer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWezterm.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWezterm.tsx new file mode 100644 index 000000000..096b59812 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWezterm.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWeztermProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4E49EE'; + + const SiWezterm: IconType = React.forwardRef(function SiWezterm({title = 'WezTerm', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWezterm as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWgpu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWgpu.tsx new file mode 100644 index 000000000..494d9fd48 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWgpu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWgpuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40E0D0'; + + const SiWgpu: IconType = React.forwardRef(function SiWgpu({title = 'wgpu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWgpu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWhat3words.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWhat3words.tsx new file mode 100644 index 000000000..25edf6401 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWhat3words.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWhat3wordsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E11F26'; + + const SiWhat3words: IconType = React.forwardRef(function SiWhat3words({title = 'what3words', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWhat3words as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWhatsapp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWhatsapp.tsx new file mode 100644 index 000000000..1a5f2c011 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWhatsapp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWhatsappProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#25D366'; + + const SiWhatsapp: IconType = React.forwardRef(function SiWhatsapp({title = 'WhatsApp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWhatsapp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWheniwork.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWheniwork.tsx new file mode 100644 index 000000000..745715082 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWheniwork.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWheniworkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#51A33D'; + + const SiWheniwork: IconType = React.forwardRef(function SiWheniwork({title = 'When I Work', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWheniwork as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikibooks.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikibooks.tsx new file mode 100644 index 000000000..373ebf814 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikibooks.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikibooksProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiWikibooks: IconType = React.forwardRef(function SiWikibooks({title = 'Wikibooks', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikibooks as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidata.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidata.tsx new file mode 100644 index 000000000..8c299e747 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidata.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikidataProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiWikidata: IconType = React.forwardRef(function SiWikidata({title = 'Wikidata', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikidata as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidotgg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidotgg.tsx new file mode 100644 index 000000000..bd32f6536 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidotgg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikidotggProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1985'; + + const SiWikidotgg: IconType = React.forwardRef(function SiWikidotgg({title = 'wiki.gg', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikidotgg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidotjs.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidotjs.tsx new file mode 100644 index 000000000..7e6bb1841 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikidotjs.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikidotjsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1976D2'; + + const SiWikidotjs: IconType = React.forwardRef(function SiWikidotjs({title = 'Wiki.js', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikidotjs as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikimediacommons.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikimediacommons.tsx new file mode 100644 index 000000000..14c249623 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikimediacommons.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikimediacommonsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiWikimediacommons: IconType = React.forwardRef(function SiWikimediacommons({title = 'Wikimedia Commons', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikimediacommons as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikimediafoundation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikimediafoundation.tsx new file mode 100644 index 000000000..288a33b98 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikimediafoundation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikimediafoundationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWikimediafoundation: IconType = React.forwardRef(function SiWikimediafoundation({title = 'Wikimedia Foundation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikimediafoundation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikipedia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikipedia.tsx new file mode 100644 index 000000000..6f90890be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikipedia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikipediaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWikipedia: IconType = React.forwardRef(function SiWikipedia({title = 'Wikipedia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikipedia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikiquote.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikiquote.tsx new file mode 100644 index 000000000..9d7d5c210 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikiquote.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikiquoteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiWikiquote: IconType = React.forwardRef(function SiWikiquote({title = 'Wikiquote', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikiquote as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikisource.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikisource.tsx new file mode 100644 index 000000000..fb4c87837 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikisource.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikisourceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiWikisource: IconType = React.forwardRef(function SiWikisource({title = 'Wikisource', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikisource as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikiversity.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikiversity.tsx new file mode 100644 index 000000000..4bdfcd77d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikiversity.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikiversityProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00649A'; + + const SiWikiversity: IconType = React.forwardRef(function SiWikiversity({title = 'Wikiversity', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikiversity as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikivoyage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikivoyage.tsx new file mode 100644 index 000000000..96842d7b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWikivoyage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWikivoyageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006699'; + + const SiWikivoyage: IconType = React.forwardRef(function SiWikivoyage({title = 'Wikivoyage', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWikivoyage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWinamp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWinamp.tsx new file mode 100644 index 000000000..5216cd6fd --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWinamp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWinampProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F93821'; + + const SiWinamp: IconType = React.forwardRef(function SiWinamp({title = 'Winamp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWinamp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWindsurf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWindsurf.tsx new file mode 100644 index 000000000..2e259444c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWindsurf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWindsurfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B100F'; + + const SiWindsurf: IconType = React.forwardRef(function SiWindsurf({title = 'Windsurf', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWindsurf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWine.tsx new file mode 100644 index 000000000..c0705972e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#800000'; + + const SiWine: IconType = React.forwardRef(function SiWine({title = 'Wine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWipro.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWipro.tsx new file mode 100644 index 000000000..6d6a31be7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWipro.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWiproProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#341C53'; + + const SiWipro: IconType = React.forwardRef(function SiWipro({title = 'Wipro', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWipro as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWire.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWire.tsx new file mode 100644 index 000000000..797e839f4 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWire.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWireProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWire: IconType = React.forwardRef(function SiWire({title = 'Wire', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWire as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWireguard.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWireguard.tsx new file mode 100644 index 000000000..e982f3625 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWireguard.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWireguardProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#88171A'; + + const SiWireguard: IconType = React.forwardRef(function SiWireguard({title = 'WireGuard', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWireguard as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWireshark.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWireshark.tsx new file mode 100644 index 000000000..ea711d0a9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWireshark.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWiresharkProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1679A7'; + + const SiWireshark: IconType = React.forwardRef(function SiWireshark({title = 'Wireshark', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWireshark as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWise.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWise.tsx new file mode 100644 index 000000000..8dee55720 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWise.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWiseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#9FE870'; + + const SiWise: IconType = React.forwardRef(function SiWise({title = 'Wise', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWise as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWish.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWish.tsx new file mode 100644 index 000000000..56529564a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWish.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWishProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#32E476'; + + const SiWish: IconType = React.forwardRef(function SiWish({title = 'Wish', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWish as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWistia.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWistia.tsx new file mode 100644 index 000000000..8dff3d3b6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWistia.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWistiaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#58B7FE'; + + const SiWistia: IconType = React.forwardRef(function SiWistia({title = 'Wistia', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWistia as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWix.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWix.tsx new file mode 100644 index 000000000..912626e18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWix.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWixProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0C6EFC'; + + const SiWix: IconType = React.forwardRef(function SiWix({title = 'Wix', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWix as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWizzair.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWizzair.tsx new file mode 100644 index 000000000..60e4f7880 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWizzair.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWizzairProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#C6007E'; + + const SiWizzair: IconType = React.forwardRef(function SiWizzair({title = 'Wizz Air', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWizzair as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolfram.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolfram.tsx new file mode 100644 index 000000000..3fefbfb36 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolfram.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWolframProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD1100'; + + const SiWolfram: IconType = React.forwardRef(function SiWolfram({title = 'Wolfram', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWolfram as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolframlanguage.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolframlanguage.tsx new file mode 100644 index 000000000..301f4666b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolframlanguage.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWolframlanguageProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD1100'; + + const SiWolframlanguage: IconType = React.forwardRef(function SiWolframlanguage({title = 'Wolfram Language', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWolframlanguage as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolframmathematica.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolframmathematica.tsx new file mode 100644 index 000000000..3ae13a047 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWolframmathematica.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWolframmathematicaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#DD1100'; + + const SiWolframmathematica: IconType = React.forwardRef(function SiWolframmathematica({title = 'Wolfram Mathematica', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWolframmathematica as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWondershare.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWondershare.tsx new file mode 100644 index 000000000..a384f0c5a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWondershare.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWondershareProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWondershare: IconType = React.forwardRef(function SiWondershare({title = 'Wondershare', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWondershare as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWondersharefilmora.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWondersharefilmora.tsx new file mode 100644 index 000000000..3ec65ffe0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWondersharefilmora.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWondersharefilmoraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#07273D'; + + const SiWondersharefilmora: IconType = React.forwardRef(function SiWondersharefilmora({title = 'Wondershare Filmora', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWondersharefilmora as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWoo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWoo.tsx new file mode 100644 index 000000000..69d1791bb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWoo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWooProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#873EFF'; + + const SiWoo: IconType = React.forwardRef(function SiWoo({title = 'Woo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWoo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWoocommerce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWoocommerce.tsx new file mode 100644 index 000000000..5ef87ad2f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWoocommerce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWoocommerceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#96588A'; + + const SiWoocommerce: IconType = React.forwardRef(function SiWoocommerce({title = 'WooCommerce', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWoocommerce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWordpress.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWordpress.tsx new file mode 100644 index 000000000..2fd421c7d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWordpress.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWordpressProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#21759B'; + + const SiWordpress: IconType = React.forwardRef(function SiWordpress({title = 'WordPress', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWordpress as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWorkplace.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWorkplace.tsx new file mode 100644 index 000000000..e00f15016 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWorkplace.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWorkplaceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4526CE'; + + const SiWorkplace: IconType = React.forwardRef(function SiWorkplace({title = 'Workplace', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWorkplace as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWorldhealthorganization.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWorldhealthorganization.tsx new file mode 100644 index 000000000..ced1dc7c5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWorldhealthorganization.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWorldhealthorganizationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0093D5'; + + const SiWorldhealthorganization: IconType = React.forwardRef(function SiWorldhealthorganization({title = 'World Health Organization', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWorldhealthorganization as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWpengine.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWpengine.tsx new file mode 100644 index 000000000..e326217d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWpengine.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWpengineProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0ECAD4'; + + const SiWpengine: IconType = React.forwardRef(function SiWpengine({title = 'WP Engine', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWpengine as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWpexplorer.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWpexplorer.tsx new file mode 100644 index 000000000..8f62d582b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWpexplorer.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWpexplorerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2563EB'; + + const SiWpexplorer: IconType = React.forwardRef(function SiWpexplorer({title = 'WPExplorer', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWpexplorer as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWprocket.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWprocket.tsx new file mode 100644 index 000000000..62c550823 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWprocket.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWprocketProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F56640'; + + const SiWprocket: IconType = React.forwardRef(function SiWprocket({title = 'WP Rocket', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWprocket as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWritedotas.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWritedotas.tsx new file mode 100644 index 000000000..f912c0dc5 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWritedotas.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWritedotasProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5AC4EE'; + + const SiWritedotas: IconType = React.forwardRef(function SiWritedotas({title = 'Write.as', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWritedotas as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWwe.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWwe.tsx new file mode 100644 index 000000000..240ea6ea8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWwe.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWweProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiWwe: IconType = React.forwardRef(function SiWwe({title = 'WWE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWwe as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWwise.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWwise.tsx new file mode 100644 index 000000000..3b15d7367 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWwise.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWwiseProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00549F'; + + const SiWwise: IconType = React.forwardRef(function SiWwise({title = 'Wwise', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWwise as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWxt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWxt.tsx new file mode 100644 index 000000000..ad8df8549 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWxt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWxtProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#67D55E'; + + const SiWxt: IconType = React.forwardRef(function SiWxt({title = 'WXT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWxt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWykop.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWykop.tsx new file mode 100644 index 000000000..d0e97cbed --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWykop.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWykopProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#367DA9'; + + const SiWykop: IconType = React.forwardRef(function SiWykop({title = 'Wykop', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWykop as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiWyze.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWyze.tsx new file mode 100644 index 000000000..e466417ff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiWyze.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiWyzeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1DF0BB'; + + const SiWyze: IconType = React.forwardRef(function SiWyze({title = 'Wyze', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiWyze as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiX.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiX.tsx new file mode 100644 index 000000000..f3764a291 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiX.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiX: IconType = React.forwardRef(function SiX({title = 'X', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiX as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXampp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXampp.tsx new file mode 100644 index 000000000..410c2d19b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXampp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXamppProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FB7A24'; + + const SiXampp: IconType = React.forwardRef(function SiXampp({title = 'XAMPP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXampp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXcode.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXcode.tsx new file mode 100644 index 000000000..e3ad4eb8e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXcode.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXcodeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#147EFB'; + + const SiXcode: IconType = React.forwardRef(function SiXcode({title = 'Xcode', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXcode as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXdadevelopers.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXdadevelopers.tsx new file mode 100644 index 000000000..0321ed900 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXdadevelopers.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXdadevelopersProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EA7100'; + + const SiXdadevelopers: IconType = React.forwardRef(function SiXdadevelopers({title = 'XDA Developers', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXdadevelopers as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXdotorg.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXdotorg.tsx new file mode 100644 index 000000000..80eded099 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXdotorg.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXdotorgProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F28834'; + + const SiXdotorg: IconType = React.forwardRef(function SiXdotorg({title = 'X.Org', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXdotorg as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXendit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXendit.tsx new file mode 100644 index 000000000..5ec3e8a9e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXendit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXenditProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4573FF'; + + const SiXendit: IconType = React.forwardRef(function SiXendit({title = 'Xendit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXendit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXero.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXero.tsx new file mode 100644 index 000000000..ccffc064a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXero.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXeroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#13B5EA'; + + const SiXero: IconType = React.forwardRef(function SiXero({title = 'Xero', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXero as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXfce.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXfce.tsx new file mode 100644 index 000000000..b53353416 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXfce.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXfceProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2284F2'; + + const SiXfce: IconType = React.forwardRef(function SiXfce({title = 'XFCE', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXfce as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXiaohongshu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXiaohongshu.tsx new file mode 100644 index 000000000..c9733ba3e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXiaohongshu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXiaohongshuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF2442'; + + const SiXiaohongshu: IconType = React.forwardRef(function SiXiaohongshu({title = 'Xiaohongshu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXiaohongshu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXiaomi.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXiaomi.tsx new file mode 100644 index 000000000..9a2e38056 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXiaomi.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXiaomiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6900'; + + const SiXiaomi: IconType = React.forwardRef(function SiXiaomi({title = 'Xiaomi', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXiaomi as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXing.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXing.tsx new file mode 100644 index 000000000..208fc6686 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXing.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006567'; + + const SiXing: IconType = React.forwardRef(function SiXing({title = 'Xing', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXing as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXml.tsx new file mode 100644 index 000000000..fd824ae66 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXmlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#005FAD'; + + const SiXml: IconType = React.forwardRef(function SiXml({title = 'XML', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXmpp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXmpp.tsx new file mode 100644 index 000000000..e1eff5d00 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXmpp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXmppProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#002B5C'; + + const SiXmpp: IconType = React.forwardRef(function SiXmpp({title = 'XMPP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXmpp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXo.tsx new file mode 100644 index 000000000..9739e276e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5ED9C7'; + + const SiXo: IconType = React.forwardRef(function SiXo({title = 'XO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXrp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXrp.tsx new file mode 100644 index 000000000..73ac41ea2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXrp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXrpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#25A768'; + + const SiXrp: IconType = React.forwardRef(function SiXrp({title = 'XRP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXrp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXsplit.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXsplit.tsx new file mode 100644 index 000000000..a4812f74a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXsplit.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXsplitProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0095DE'; + + const SiXsplit: IconType = React.forwardRef(function SiXsplit({title = 'XSplit', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXsplit as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXstate.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXstate.tsx new file mode 100644 index 000000000..457893ceb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXstate.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXstateProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C3E50'; + + const SiXstate: IconType = React.forwardRef(function SiXstate({title = 'XState', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXstate as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXubuntu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXubuntu.tsx new file mode 100644 index 000000000..8af893d14 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXubuntu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXubuntuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0044AA'; + + const SiXubuntu: IconType = React.forwardRef(function SiXubuntu({title = 'Xubuntu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXubuntu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiXyflow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXyflow.tsx new file mode 100644 index 000000000..831de0596 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiXyflow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiXyflowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1A192B'; + + const SiXyflow: IconType = React.forwardRef(function SiXyflow({title = 'xyflow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiXyflow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYaak.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYaak.tsx new file mode 100644 index 000000000..660f0cab0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYaak.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYaakProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#814EDF'; + + const SiYaak: IconType = React.forwardRef(function SiYaak({title = 'Yaak', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYaak as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYabai.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYabai.tsx new file mode 100644 index 000000000..8951700ab --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYabai.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYabaiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00364B'; + + const SiYabai: IconType = React.forwardRef(function SiYabai({title = 'yabai', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYabai as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYale.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYale.tsx new file mode 100644 index 000000000..08aaa98ee --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYale.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYaleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFD900'; + + const SiYale: IconType = React.forwardRef(function SiYale({title = 'Yale', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYale as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYamahacorporation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYamahacorporation.tsx new file mode 100644 index 000000000..28ff5795a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYamahacorporation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYamahacorporationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#4B1E78'; + + const SiYamahacorporation: IconType = React.forwardRef(function SiYamahacorporation({title = 'Yamaha Corporation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYamahacorporation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYamahamotorcorporation.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYamahamotorcorporation.tsx new file mode 100644 index 000000000..26ddc8cb2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYamahamotorcorporation.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYamahamotorcorporationProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E60012'; + + const SiYamahamotorcorporation: IconType = React.forwardRef(function SiYamahamotorcorporation({title = 'Yamaha Motor Corporation', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYamahamotorcorporation as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYaml.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYaml.tsx new file mode 100644 index 000000000..da004aee7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYaml.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYamlProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CB171E'; + + const SiYaml: IconType = React.forwardRef(function SiYaml({title = 'YAML', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYaml as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYandexcloud.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYandexcloud.tsx new file mode 100644 index 000000000..5feeeba59 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYandexcloud.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYandexcloudProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5282FF'; + + const SiYandexcloud: IconType = React.forwardRef(function SiYandexcloud({title = 'Yandex Cloud', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYandexcloud as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYarn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYarn.tsx new file mode 100644 index 000000000..f899da576 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYarn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYarnProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2C8EBB'; + + const SiYarn: IconType = React.forwardRef(function SiYarn({title = 'Yarn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYarn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYcombinator.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYcombinator.tsx new file mode 100644 index 000000000..9e46fa877 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYcombinator.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYcombinatorProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F0652F'; + + const SiYcombinator: IconType = React.forwardRef(function SiYcombinator({title = 'Y Combinator', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYcombinator as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYelp.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYelp.tsx new file mode 100644 index 000000000..6b30e3f68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYelp.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYelpProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF1A1A'; + + const SiYelp: IconType = React.forwardRef(function SiYelp({title = 'Yelp', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYelp as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYeti.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYeti.tsx new file mode 100644 index 000000000..a9ac323db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYeti.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYetiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00263C'; + + const SiYeti: IconType = React.forwardRef(function SiYeti({title = 'Yeti', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYeti as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYii.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYii.tsx new file mode 100644 index 000000000..c59dffd2e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYii.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYiiProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#40B3D8'; + + const SiYii: IconType = React.forwardRef(function SiYii({title = 'Yii', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYii as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoast.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoast.tsx new file mode 100644 index 000000000..016a2dd17 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoast.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoastProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#A61E69'; + + const SiYoast: IconType = React.forwardRef(function SiYoast({title = 'Yoast', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoast as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYolo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYolo.tsx new file mode 100644 index 000000000..16edfec8c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYolo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#111F68'; + + const SiYolo: IconType = React.forwardRef(function SiYolo({title = 'YOLO', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYolo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYouhodler.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYouhodler.tsx new file mode 100644 index 000000000..997fc2aff --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYouhodler.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYouhodlerProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#546DF9'; + + const SiYouhodler: IconType = React.forwardRef(function SiYouhodler({title = 'YouHodler', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYouhodler as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutube.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutube.tsx new file mode 100644 index 000000000..4a550ec28 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutube.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutube: IconType = React.forwardRef(function SiYoutube({title = 'YouTube', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutube as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubegaming.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubegaming.tsx new file mode 100644 index 000000000..836546b31 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubegaming.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubegamingProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutubegaming: IconType = React.forwardRef(function SiYoutubegaming({title = 'YouTube Gaming', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutubegaming as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubekids.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubekids.tsx new file mode 100644 index 000000000..d2bd086ad --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubekids.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubekidsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutubekids: IconType = React.forwardRef(function SiYoutubekids({title = 'YouTube Kids', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutubekids as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubemusic.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubemusic.tsx new file mode 100644 index 000000000..804a70c18 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubemusic.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubemusicProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutubemusic: IconType = React.forwardRef(function SiYoutubemusic({title = 'YouTube Music', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutubemusic as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubeshorts.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubeshorts.tsx new file mode 100644 index 000000000..805622567 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubeshorts.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubeshortsProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutubeshorts: IconType = React.forwardRef(function SiYoutubeshorts({title = 'YouTube Shorts', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutubeshorts as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubestudio.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubestudio.tsx new file mode 100644 index 000000000..d7d441851 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubestudio.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubestudioProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutubestudio: IconType = React.forwardRef(function SiYoutubestudio({title = 'YouTube Studio', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutubestudio as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubetv.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubetv.tsx new file mode 100644 index 000000000..52e038a2a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYoutubetv.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYoutubetvProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF0000'; + + const SiYoutubetv: IconType = React.forwardRef(function SiYoutubetv({title = 'YouTube TV', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYoutubetv as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYr.tsx new file mode 100644 index 000000000..772d23870 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00B9F1'; + + const SiYr: IconType = React.forwardRef(function SiYr({title = 'Yr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYubico.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYubico.tsx new file mode 100644 index 000000000..d91c7e788 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYubico.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYubicoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#84BD00'; + + const SiYubico: IconType = React.forwardRef(function SiYubico({title = 'Yubico', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYubico as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiYunohost.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYunohost.tsx new file mode 100644 index 000000000..056a6f17b --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiYunohost.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiYunohostProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiYunohost: IconType = React.forwardRef(function SiYunohost({title = 'YunoHost', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiYunohost as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZabka.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZabka.tsx new file mode 100644 index 000000000..9be50a66f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZabka.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZabkaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006420'; + + const SiZabka: IconType = React.forwardRef(function SiZabka({title = 'Żabka', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZabka as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZaim.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZaim.tsx new file mode 100644 index 000000000..0ff6f31e8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZaim.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZaimProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#50A135'; + + const SiZaim: IconType = React.forwardRef(function SiZaim({title = 'Zaim', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZaim as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZalando.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZalando.tsx new file mode 100644 index 000000000..1195c0ee8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZalando.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZalandoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF6900'; + + const SiZalando: IconType = React.forwardRef(function SiZalando({title = 'Zalando', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZalando as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZalo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZalo.tsx new file mode 100644 index 000000000..13a2ed5b9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZalo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZaloProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0068FF'; + + const SiZalo: IconType = React.forwardRef(function SiZalo({title = 'Zalo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZalo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZap.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZap.tsx new file mode 100644 index 000000000..e2d36bfc7 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZap.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZapProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00549E'; + + const SiZap: IconType = React.forwardRef(function SiZap({title = 'ZAP', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZap as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZapier.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZapier.tsx new file mode 100644 index 000000000..ba0ad7674 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZapier.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZapierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FF4F00'; + + const SiZapier: IconType = React.forwardRef(function SiZapier({title = 'Zapier', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZapier as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZara.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZara.tsx new file mode 100644 index 000000000..b0ca6a4e6 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZara.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZaraProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiZara: IconType = React.forwardRef(function SiZara({title = 'Zara', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZara as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZazzle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZazzle.tsx new file mode 100644 index 000000000..3facd58b0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZazzle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZazzleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#212121'; + + const SiZazzle: IconType = React.forwardRef(function SiZazzle({title = 'Zazzle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZazzle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZcash.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZcash.tsx new file mode 100644 index 000000000..fd710de6d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZcash.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZcashProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F3B724'; + + const SiZcash: IconType = React.forwardRef(function SiZcash({title = 'Zcash', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZcash as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZcool.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZcool.tsx new file mode 100644 index 000000000..f4dfb6bb9 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZcool.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZcoolProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFF200'; + + const SiZcool: IconType = React.forwardRef(function SiZcool({title = 'ZCOOL', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZcool as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZdf.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZdf.tsx new file mode 100644 index 000000000..908978eba --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZdf.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZdfProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FA7D19'; + + const SiZdf: IconType = React.forwardRef(function SiZdf({title = 'ZDF', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZdf as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZebpay.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZebpay.tsx new file mode 100644 index 000000000..cf1fc31d0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZebpay.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZebpayProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#2072EF'; + + const SiZebpay: IconType = React.forwardRef(function SiZebpay({title = 'ZebPay', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZebpay as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZebratechnologies.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZebratechnologies.tsx new file mode 100644 index 000000000..8c8deaa40 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZebratechnologies.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZebratechnologiesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiZebratechnologies: IconType = React.forwardRef(function SiZebratechnologies({title = 'Zebra Technologies', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZebratechnologies as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZedindustries.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZedindustries.tsx new file mode 100644 index 000000000..59f0b2e2d --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZedindustries.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZedindustriesProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#084CCF'; + + const SiZedindustries: IconType = React.forwardRef(function SiZedindustries({title = 'Zed Industries', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZedindustries as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZelle.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZelle.tsx new file mode 100644 index 000000000..cc1f3b7fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZelle.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZelleProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6D1ED4'; + + const SiZelle: IconType = React.forwardRef(function SiZelle({title = 'Zelle', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZelle as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenbrowser.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenbrowser.tsx new file mode 100644 index 000000000..4aec8537f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenbrowser.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZenbrowserProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F76F53'; + + const SiZenbrowser: IconType = React.forwardRef(function SiZenbrowser({title = 'Zen Browser', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZenbrowser as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZend.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZend.tsx new file mode 100644 index 000000000..2e6871430 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZend.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZendProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0679EA'; + + const SiZend: IconType = React.forwardRef(function SiZend({title = 'Zend', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZend as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZendesk.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZendesk.tsx new file mode 100644 index 000000000..c38359d13 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZendesk.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZendeskProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#03363D'; + + const SiZendesk: IconType = React.forwardRef(function SiZendesk({title = 'Zendesk', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZendesk as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenn.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenn.tsx new file mode 100644 index 000000000..d77442f3a --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenn.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZennProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#3EA8FF'; + + const SiZenn: IconType = React.forwardRef(function SiZenn({title = 'Zenn', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZenn as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenodo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenodo.tsx new file mode 100644 index 000000000..b9542c1be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZenodo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZenodoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1682D4'; + + const SiZenodo: IconType = React.forwardRef(function SiZenodo({title = 'Zenodo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZenodo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZensar.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZensar.tsx new file mode 100644 index 000000000..2971eeb21 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZensar.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZensarProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#000000'; + + const SiZensar: IconType = React.forwardRef(function SiZensar({title = 'Zensar', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZensar as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZerodha.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZerodha.tsx new file mode 100644 index 000000000..80d9747ce --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZerodha.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZerodhaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#387ED1'; + + const SiZerodha: IconType = React.forwardRef(function SiZerodha({title = 'Zerodha', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZerodha as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZerotier.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZerotier.tsx new file mode 100644 index 000000000..de9f19c68 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZerotier.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZerotierProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFB441'; + + const SiZerotier: IconType = React.forwardRef(function SiZerotier({title = 'ZeroTier', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZerotier as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZettlr.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZettlr.tsx new file mode 100644 index 000000000..3c98eb0df --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZettlr.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZettlrProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#1CB27E'; + + const SiZettlr: IconType = React.forwardRef(function SiZettlr({title = 'Zettlr', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZettlr as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZhihu.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZhihu.tsx new file mode 100644 index 000000000..1b61a6a5c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZhihu.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZhihuProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0084FF'; + + const SiZhihu: IconType = React.forwardRef(function SiZhihu({title = 'Zhihu', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZhihu as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZig.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZig.tsx new file mode 100644 index 000000000..dd6a809fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZig.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZigProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F7A41D'; + + const SiZig: IconType = React.forwardRef(function SiZig({title = 'Zig', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZig as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZigbee.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZigbee.tsx new file mode 100644 index 000000000..17f6e0583 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZigbee.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZigbeeProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EB0443'; + + const SiZigbee: IconType = React.forwardRef(function SiZigbee({title = 'Zigbee', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZigbee as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZigbee2mqtt.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZigbee2mqtt.tsx new file mode 100644 index 000000000..d2db4d2ca --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZigbee2mqtt.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZigbee2mqttProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#FFC135'; + + const SiZigbee2mqtt: IconType = React.forwardRef(function SiZigbee2mqtt({title = 'Zigbee2MQTT', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZigbee2mqtt as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZiggo.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZiggo.tsx new file mode 100644 index 000000000..8e1f6dd74 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZiggo.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZiggoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F48C00'; + + const SiZiggo: IconType = React.forwardRef(function SiZiggo({title = 'Ziggo', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZiggo as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZilch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZilch.tsx new file mode 100644 index 000000000..9f6f3b3d8 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZilch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZilchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#00D287'; + + const SiZilch: IconType = React.forwardRef(function SiZilch({title = 'Zilch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZilch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZillow.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZillow.tsx new file mode 100644 index 000000000..af3d91d22 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZillow.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZillowProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#006AFF'; + + const SiZillow: IconType = React.forwardRef(function SiZillow({title = 'Zillow', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZillow as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZincsearch.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZincsearch.tsx new file mode 100644 index 000000000..462923dc2 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZincsearch.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZincsearchProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#5BA37F'; + + const SiZincsearch: IconType = React.forwardRef(function SiZincsearch({title = 'ZincSearch', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZincsearch as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZingat.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZingat.tsx new file mode 100644 index 000000000..0c7222e1c --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZingat.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZingatProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#009CFB'; + + const SiZingat: IconType = React.forwardRef(function SiZingat({title = 'Zingat', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZingat as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZod.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZod.tsx new file mode 100644 index 000000000..1ce7f1755 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZod.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZodProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#408AFF'; + + const SiZod: IconType = React.forwardRef(function SiZod({title = 'Zod', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZod as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoho.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoho.tsx new file mode 100644 index 000000000..502aaf1be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoho.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZohoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E42527'; + + const SiZoho: IconType = React.forwardRef(function SiZoho({title = 'Zoho', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZoho as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoiper.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoiper.tsx new file mode 100644 index 000000000..b6eed0175 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoiper.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZoiperProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F47920'; + + const SiZoiper: IconType = React.forwardRef(function SiZoiper({title = 'Zoiper', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZoiper as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZola.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZola.tsx new file mode 100644 index 000000000..51a7459be --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZola.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZolaProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#EAE7D6'; + + const SiZola: IconType = React.forwardRef(function SiZola({title = 'Zola', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZola as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZomato.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZomato.tsx new file mode 100644 index 000000000..a1da1d004 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZomato.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZomatoProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#E23744'; + + const SiZomato: IconType = React.forwardRef(function SiZomato({title = 'Zomato', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZomato as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoom.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoom.tsx new file mode 100644 index 000000000..1d2ae99fb --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZoom.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZoomProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#0B5CFF'; + + const SiZoom: IconType = React.forwardRef(function SiZoom({title = 'Zoom', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZoom as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZorin.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZorin.tsx new file mode 100644 index 000000000..f7228c888 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZorin.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZorinProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#15A6F0'; + + const SiZorin: IconType = React.forwardRef(function SiZorin({title = 'Zorin', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZorin as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZotero.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZotero.tsx new file mode 100644 index 000000000..95a77593e --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZotero.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZoteroProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#CC2936'; + + const SiZotero: IconType = React.forwardRef(function SiZotero({title = 'Zotero', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZotero as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZsh.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZsh.tsx new file mode 100644 index 000000000..6c36fc9db --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZsh.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZshProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#F15A24'; + + const SiZsh: IconType = React.forwardRef(function SiZsh({title = 'Zsh', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZsh as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZulip.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZulip.tsx new file mode 100644 index 000000000..ccad64eb0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZulip.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZulipProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#6492FE'; + + const SiZulip: IconType = React.forwardRef(function SiZulip({title = 'Zulip', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZulip as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/src/icons/SiZyte.tsx b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZyte.tsx new file mode 100644 index 000000000..ba99c80c0 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/src/icons/SiZyte.tsx @@ -0,0 +1,45 @@ + + import * as React from 'react'; + + import { IconType } from '../types'; + + type SiZyteProps = React.ComponentPropsWithoutRef<'svg'> & { + /** + * The title provides an accessible short text description to the SVG + */ + title?: string; + /** + * Hex color or color name or "default" to use the default hex for each icon + */ + color?: string; + /** + * The size of the Icon. + */ + size?: string | number; + } + + const defaultColor = '#B02CCE'; + + const SiZyte: IconType = React.forwardRef(function SiZyte({title = 'Zyte', color = 'currentColor', size = 24, ...others }, ref) { + if (color === 'default') { + color = defaultColor; + } + + return ( + + {title} + + + ); + }); + + export { SiZyte as default, defaultColor }; + \ No newline at end of file diff --git a/node_modules/@icons-pack/react-simple-icons/types.d.ts b/node_modules/@icons-pack/react-simple-icons/types.d.ts new file mode 100644 index 000000000..4c959dc80 --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/types.d.ts @@ -0,0 +1,6 @@ +import * as React from 'react'; +export type IconType = React.ForwardRefExoticComponent, 'string' | 'style' | 'clipPath' | 'filter' | 'mask' | 'path' | 'className' | 'color' | 'height' | 'id' | 'lang' | 'max' | 'media' | 'method' | 'min' | 'name' | 'target' | 'type' | 'width' | 'role' | 'tabIndex' | 'crossOrigin' | 'accentHeight' | 'accumulate' | 'additive' | 'alignmentBaseline' | 'allowReorder' | 'alphabetic' | 'amplitude' | 'arabicForm' | 'ascent' | 'attributeName' | 'attributeType' | 'autoReverse' | 'azimuth' | 'baseFrequency' | 'baselineShift' | 'baseProfile' | 'bbox' | 'begin' | 'bias' | 'by' | 'calcMode' | 'capHeight' | 'clip' | 'clipPathUnits' | 'clipRule' | 'colorInterpolation' | 'colorInterpolationFilters' | 'colorProfile' | 'colorRendering' | 'contentScriptType' | 'contentStyleType' | 'cursor' | 'cx' | 'cy' | 'd' | 'decelerate' | 'descent' | 'diffuseConstant' | 'direction' | 'display' | 'divisor' | 'dominantBaseline' | 'dur' | 'dx' | 'dy' | 'edgeMode' | 'elevation' | 'enableBackground' | 'end' | 'exponent' | 'externalResourcesRequired' | 'fill' | 'fillOpacity' | 'fillRule' | 'filterRes' | 'filterUnits' | 'floodColor' | 'floodOpacity' | 'focusable' | 'fontFamily' | 'fontSize' | 'fontSizeAdjust' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'format' | 'fr' | 'from' | 'fx' | 'fy' | 'g1' | 'g2' | 'glyphName' | 'glyphOrientationHorizontal' | 'glyphOrientationVertical' | 'glyphRef' | 'gradientTransform' | 'gradientUnits' | 'hanging' | 'horizAdvX' | 'horizOriginX' | 'href' | 'ideographic' | 'imageRendering' | 'in2' | 'in' | 'intercept' | 'k1' | 'k2' | 'k3' | 'k4' | 'k' | 'kernelMatrix' | 'kernelUnitLength' | 'kerning' | 'keyPoints' | 'keySplines' | 'keyTimes' | 'lengthAdjust' | 'letterSpacing' | 'lightingColor' | 'limitingConeAngle' | 'local' | 'markerEnd' | 'markerHeight' | 'markerMid' | 'markerStart' | 'markerUnits' | 'markerWidth' | 'maskContentUnits' | 'maskUnits' | 'mathematical' | 'mode' | 'numOctaves' | 'offset' | 'opacity' | 'operator' | 'order' | 'orient' | 'orientation' | 'origin' | 'overflow' | 'overlinePosition' | 'overlineThickness' | 'paintOrder' | 'panose1' | 'pathLength' | 'patternContentUnits' | 'patternTransform' | 'patternUnits' | 'pointerEvents' | 'points' | 'pointsAtX' | 'pointsAtY' | 'pointsAtZ' | 'preserveAlpha' | 'preserveAspectRatio' | 'primitiveUnits' | 'r' | 'radius' | 'refX' | 'refY' | 'renderingIntent' | 'repeatCount' | 'repeatDur' | 'requiredExtensions' | 'requiredFeatures' | 'restart' | 'result' | 'rotate' | 'rx' | 'ry' | 'scale' | 'seed' | 'shapeRendering' | 'slope' | 'spacing' | 'specularConstant' | 'specularExponent' | 'speed' | 'spreadMethod' | 'startOffset' | 'stdDeviation' | 'stemh' | 'stemv' | 'stitchTiles' | 'stopColor' | 'stopOpacity' | 'strikethroughPosition' | 'strikethroughThickness' | 'stroke' | 'strokeDasharray' | 'strokeDashoffset' | 'strokeLinecap' | 'strokeLinejoin' | 'strokeMiterlimit' | 'strokeOpacity' | 'strokeWidth' | 'surfaceScale' | 'systemLanguage' | 'tableValues' | 'targetX' | 'targetY' | 'textAnchor' | 'textDecoration' | 'textLength' | 'textRendering' | 'to' | 'transform' | 'u1' | 'u2' | 'underlinePosition' | 'underlineThickness' | 'unicode' | 'unicodeBidi' | 'unicodeRange' | 'unitsPerEm' | 'vAlphabetic' | 'values' | 'vectorEffect' | 'version' | 'vertAdvY' | 'vertOriginX' | 'vertOriginY' | 'vHanging' | 'vIdeographic' | 'viewBox' | 'viewTarget' | 'visibility' | 'vMathematical' | 'widths' | 'wordSpacing' | 'writingMode' | 'x1' | 'x2' | 'x' | 'xChannelSelector' | 'xHeight' | 'xlinkActuate' | 'xlinkArcrole' | 'xlinkHref' | 'xlinkRole' | 'xlinkShow' | 'xlinkTitle' | 'xlinkType' | 'xmlBase' | 'xmlLang' | 'xmlns' | 'xmlnsXlink' | 'xmlSpace' | 'y1' | 'y2' | 'y' | 'yChannelSelector' | 'z' | 'zoomAndPan' | 'aria-activedescendant' | 'aria-atomic' | 'aria-autocomplete' | 'aria-busy' | 'aria-checked' | 'aria-colcount' | 'aria-colindex' | 'aria-colspan' | 'aria-controls' | 'aria-current' | 'aria-describedby' | 'aria-details' | 'aria-disabled' | 'aria-dropeffect' | 'aria-errormessage' | 'aria-expanded' | 'aria-flowto' | 'aria-grabbed' | 'aria-haspopup' | 'aria-hidden' | 'aria-invalid' | 'aria-keyshortcuts' | 'aria-label' | 'aria-labelledby' | 'aria-level' | 'aria-live' | 'aria-modal' | 'aria-multiline' | 'aria-multiselectable' | 'aria-orientation' | 'aria-owns' | 'aria-placeholder' | 'aria-posinset' | 'aria-pressed' | 'aria-readonly' | 'aria-relevant' | 'aria-required' | 'aria-roledescription' | 'aria-rowcount' | 'aria-rowindex' | 'aria-rowspan' | 'aria-selected' | 'aria-setsize' | 'aria-sort' | 'aria-valuemax' | 'aria-valuemin' | 'aria-valuenow' | 'aria-valuetext' | 'children' | 'dangerouslySetInnerHTML' | 'onCopy' | 'onCopyCapture' | 'onCut' | 'onCutCapture' | 'onPaste' | 'onPasteCapture' | 'onCompositionEnd' | 'onCompositionEndCapture' | 'onCompositionStart' | 'onCompositionStartCapture' | 'onCompositionUpdate' | 'onCompositionUpdateCapture' | 'onFocus' | 'onFocusCapture' | 'onBlur' | 'onBlurCapture' | 'onChange' | 'onChangeCapture' | 'onBeforeInput' | 'onBeforeInputCapture' | 'onInput' | 'onInputCapture' | 'onReset' | 'onResetCapture' | 'onSubmit' | 'onSubmitCapture' | 'onInvalid' | 'onInvalidCapture' | 'onLoad' | 'onLoadCapture' | 'onError' | 'onErrorCapture' | 'onKeyDown' | 'onKeyDownCapture' | 'onKeyPress' | 'onKeyPressCapture' | 'onKeyUp' | 'onKeyUpCapture' | 'onAbort' | 'onAbortCapture' | 'onCanPlay' | 'onCanPlayCapture' | 'onCanPlayThrough' | 'onCanPlayThroughCapture' | 'onDurationChange' | 'onDurationChangeCapture' | 'onEmptied' | 'onEmptiedCapture' | 'onEncrypted' | 'onEncryptedCapture' | 'onEnded' | 'onEndedCapture' | 'onLoadedData' | 'onLoadedDataCapture' | 'onLoadedMetadata' | 'onLoadedMetadataCapture' | 'onLoadStart' | 'onLoadStartCapture' | 'onPause' | 'onPauseCapture' | 'onPlay' | 'onPlayCapture' | 'onPlaying' | 'onPlayingCapture' | 'onProgress' | 'onProgressCapture' | 'onRateChange' | 'onRateChangeCapture' | 'onSeeked' | 'onSeekedCapture' | 'onSeeking' | 'onSeekingCapture' | 'onStalled' | 'onStalledCapture' | 'onSuspend' | 'onSuspendCapture' | 'onTimeUpdate' | 'onTimeUpdateCapture' | 'onVolumeChange' | 'onVolumeChangeCapture' | 'onWaiting' | 'onWaitingCapture' | 'onAuxClick' | 'onAuxClickCapture' | 'onClick' | 'onClickCapture' | 'onContextMenu' | 'onContextMenuCapture' | 'onDoubleClick' | 'onDoubleClickCapture' | 'onDrag' | 'onDragCapture' | 'onDragEnd' | 'onDragEndCapture' | 'onDragEnter' | 'onDragEnterCapture' | 'onDragExit' | 'onDragExitCapture' | 'onDragLeave' | 'onDragLeaveCapture' | 'onDragOver' | 'onDragOverCapture' | 'onDragStart' | 'onDragStartCapture' | 'onDrop' | 'onDropCapture' | 'onMouseDown' | 'onMouseDownCapture' | 'onMouseEnter' | 'onMouseLeave' | 'onMouseMove' | 'onMouseMoveCapture' | 'onMouseOut' | 'onMouseOutCapture' | 'onMouseOver' | 'onMouseOverCapture' | 'onMouseUp' | 'onMouseUpCapture' | 'onSelect' | 'onSelectCapture' | 'onTouchCancel' | 'onTouchCancelCapture' | 'onTouchEnd' | 'onTouchEndCapture' | 'onTouchMove' | 'onTouchMoveCapture' | 'onTouchStart' | 'onTouchStartCapture' | 'onPointerDown' | 'onPointerDownCapture' | 'onPointerMove' | 'onPointerMoveCapture' | 'onPointerUp' | 'onPointerUpCapture' | 'onPointerCancel' | 'onPointerCancelCapture' | 'onPointerEnter' | 'onPointerLeave' | 'onPointerOver' | 'onPointerOverCapture' | 'onPointerOut' | 'onPointerOutCapture' | 'onGotPointerCapture' | 'onGotPointerCaptureCapture' | 'onLostPointerCapture' | 'onLostPointerCaptureCapture' | 'onScroll' | 'onScrollCapture' | 'onWheel' | 'onWheelCapture' | 'onAnimationStart' | 'onAnimationStartCapture' | 'onAnimationEnd' | 'onAnimationEndCapture' | 'onAnimationIteration' | 'onAnimationIterationCapture' | 'onTransitionEnd' | 'onTransitionEndCapture' | 'key'> & { + title?: string; + color?: string; + size?: string | number; +} & React.RefAttributes>; diff --git a/node_modules/@icons-pack/react-simple-icons/vite.config.mjs b/node_modules/@icons-pack/react-simple-icons/vite.config.mjs new file mode 100644 index 000000000..6f81aa98f --- /dev/null +++ b/node_modules/@icons-pack/react-simple-icons/vite.config.mjs @@ -0,0 +1,54 @@ +import path from 'path'; + +import react from '@vitejs/plugin-react'; +import { defineConfig } from 'vite'; +import dts from 'vite-plugin-dts'; +import pkg from './package.json'; + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + dts({ + insertTypesEntry: true, + entryRoot: 'src', + //outputDir: '.', + //skipDiagnostics: true, + //staticImport: true, + //rollupTypes: false, + }), + react(), + ], + resolve: { + alias: { + '@/': `${path.resolve(__dirname, 'src')}/`, + }, + }, + build: { + target: 'esnext', + minify: false, + outDir: './', + lib: { + entry: 'src/index.ts', + fileName: (format) => (format === 'es' ? 'index.mjs' : 'index.cjs'), + }, + rollupOptions: { + external: [...Object.keys(pkg.peerDependencies ?? {}), 'react/jsx-runtime'], + output: [ + { + format: 'cjs', + preserveModules: true, + preserveModulesRoot: 'src', + exports: 'named', + entryFileNames: '[name].cjs', + }, + { + format: 'es', + preserveModules: true, + preserveModulesRoot: 'src', + exports: 'named', + entryFileNames: '[name].mjs', + }, + ], + }, + }, +}); diff --git a/node_modules/react/LICENSE b/node_modules/react/LICENSE new file mode 100644 index 000000000..b93be9051 --- /dev/null +++ b/node_modules/react/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) Meta Platforms, Inc. and affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/react/README.md b/node_modules/react/README.md new file mode 100644 index 000000000..20a855efd --- /dev/null +++ b/node_modules/react/README.md @@ -0,0 +1,37 @@ +# `react` + +React is a JavaScript library for creating user interfaces. + +The `react` package contains only the functionality necessary to define React components. It is typically used together with a React renderer like `react-dom` for the web, or `react-native` for the native environments. + +**Note:** by default, React will be in development mode. The development version includes extra warnings about common mistakes, whereas the production version includes extra performance optimizations and strips all error messages. Don't forget to use the [production build](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build) when deploying your application. + +## Usage + +```js +import { useState } from 'react'; +import { createRoot } from 'react-dom/client'; + +function Counter() { + const [count, setCount] = useState(0); + return ( + <> +

{count}

+ + + ); +} + +const root = createRoot(document.getElementById('root')); +root.render(); +``` + +## Documentation + +See https://react.dev/ + +## API + +See https://react.dev/reference/react diff --git a/node_modules/react/cjs/react-compiler-runtime.development.js b/node_modules/react/cjs/react-compiler-runtime.development.js new file mode 100644 index 000000000..84ceaac6f --- /dev/null +++ b/node_modules/react/cjs/react-compiler-runtime.development.js @@ -0,0 +1,24 @@ +/** + * @license React + * react-compiler-runtime.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + var ReactSharedInternals = + require("react").__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; + exports.c = function (size) { + var dispatcher = ReactSharedInternals.H; + null === dispatcher && + console.error( + "Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem." + ); + return dispatcher.useMemoCache(size); + }; + })(); diff --git a/node_modules/react/cjs/react-compiler-runtime.production.js b/node_modules/react/cjs/react-compiler-runtime.production.js new file mode 100644 index 000000000..4d5ade38f --- /dev/null +++ b/node_modules/react/cjs/react-compiler-runtime.production.js @@ -0,0 +1,16 @@ +/** + * @license React + * react-compiler-runtime.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var ReactSharedInternals = + require("react").__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; +exports.c = function (size) { + return ReactSharedInternals.H.useMemoCache(size); +}; diff --git a/node_modules/react/cjs/react-compiler-runtime.profiling.js b/node_modules/react/cjs/react-compiler-runtime.profiling.js new file mode 100644 index 000000000..9b93257e3 --- /dev/null +++ b/node_modules/react/cjs/react-compiler-runtime.profiling.js @@ -0,0 +1,16 @@ +/** + * @license React + * react-compiler-runtime.profiling.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var ReactSharedInternals = + require("react").__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; +exports.c = function (size) { + return ReactSharedInternals.H.useMemoCache(size); +}; diff --git a/node_modules/react/cjs/react-jsx-dev-runtime.development.js b/node_modules/react/cjs/react-jsx-dev-runtime.development.js new file mode 100644 index 000000000..95f987747 --- /dev/null +++ b/node_modules/react/cjs/react-jsx-dev-runtime.development.js @@ -0,0 +1,338 @@ +/** + * @license React + * react-jsx-dev-runtime.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + function getComponentNameFromType(type) { + if (null == type) return null; + if ("function" === typeof type) + return type.$$typeof === REACT_CLIENT_REFERENCE + ? null + : type.displayName || type.name || null; + if ("string" === typeof type) return type; + switch (type) { + case REACT_FRAGMENT_TYPE: + return "Fragment"; + case REACT_PROFILER_TYPE: + return "Profiler"; + case REACT_STRICT_MODE_TYPE: + return "StrictMode"; + case REACT_SUSPENSE_TYPE: + return "Suspense"; + case REACT_SUSPENSE_LIST_TYPE: + return "SuspenseList"; + case REACT_ACTIVITY_TYPE: + return "Activity"; + } + if ("object" === typeof type) + switch ( + ("number" === typeof type.tag && + console.error( + "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue." + ), + type.$$typeof) + ) { + case REACT_PORTAL_TYPE: + return "Portal"; + case REACT_CONTEXT_TYPE: + return type.displayName || "Context"; + case REACT_CONSUMER_TYPE: + return (type._context.displayName || "Context") + ".Consumer"; + case REACT_FORWARD_REF_TYPE: + var innerType = type.render; + type = type.displayName; + type || + ((type = innerType.displayName || innerType.name || ""), + (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef")); + return type; + case REACT_MEMO_TYPE: + return ( + (innerType = type.displayName || null), + null !== innerType + ? innerType + : getComponentNameFromType(type.type) || "Memo" + ); + case REACT_LAZY_TYPE: + innerType = type._payload; + type = type._init; + try { + return getComponentNameFromType(type(innerType)); + } catch (x) {} + } + return null; + } + function testStringCoercion(value) { + return "" + value; + } + function checkKeyStringCoercion(value) { + try { + testStringCoercion(value); + var JSCompiler_inline_result = !1; + } catch (e) { + JSCompiler_inline_result = !0; + } + if (JSCompiler_inline_result) { + JSCompiler_inline_result = console; + var JSCompiler_temp_const = JSCompiler_inline_result.error; + var JSCompiler_inline_result$jscomp$0 = + ("function" === typeof Symbol && + Symbol.toStringTag && + value[Symbol.toStringTag]) || + value.constructor.name || + "Object"; + JSCompiler_temp_const.call( + JSCompiler_inline_result, + "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", + JSCompiler_inline_result$jscomp$0 + ); + return testStringCoercion(value); + } + } + function getTaskName(type) { + if (type === REACT_FRAGMENT_TYPE) return "<>"; + if ( + "object" === typeof type && + null !== type && + type.$$typeof === REACT_LAZY_TYPE + ) + return "<...>"; + try { + var name = getComponentNameFromType(type); + return name ? "<" + name + ">" : "<...>"; + } catch (x) { + return "<...>"; + } + } + function getOwner() { + var dispatcher = ReactSharedInternals.A; + return null === dispatcher ? null : dispatcher.getOwner(); + } + function UnknownOwner() { + return Error("react-stack-top-frame"); + } + function hasValidKey(config) { + if (hasOwnProperty.call(config, "key")) { + var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (getter && getter.isReactWarning) return !1; + } + return void 0 !== config.key; + } + function defineKeyPropWarningGetter(props, displayName) { + function warnAboutAccessingKey() { + specialPropKeyWarningShown || + ((specialPropKeyWarningShown = !0), + console.error( + "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", + displayName + )); + } + warnAboutAccessingKey.isReactWarning = !0; + Object.defineProperty(props, "key", { + get: warnAboutAccessingKey, + configurable: !0 + }); + } + function elementRefGetterWithDeprecationWarning() { + var componentName = getComponentNameFromType(this.type); + didWarnAboutElementRef[componentName] || + ((didWarnAboutElementRef[componentName] = !0), + console.error( + "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release." + )); + componentName = this.props.ref; + return void 0 !== componentName ? componentName : null; + } + function ReactElement(type, key, props, owner, debugStack, debugTask) { + var refProp = props.ref; + type = { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + props: props, + _owner: owner + }; + null !== (void 0 !== refProp ? refProp : null) + ? Object.defineProperty(type, "ref", { + enumerable: !1, + get: elementRefGetterWithDeprecationWarning + }) + : Object.defineProperty(type, "ref", { enumerable: !1, value: null }); + type._store = {}; + Object.defineProperty(type._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: 0 + }); + Object.defineProperty(type, "_debugInfo", { + configurable: !1, + enumerable: !1, + writable: !0, + value: null + }); + Object.defineProperty(type, "_debugStack", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugStack + }); + Object.defineProperty(type, "_debugTask", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugTask + }); + Object.freeze && (Object.freeze(type.props), Object.freeze(type)); + return type; + } + function jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + debugStack, + debugTask + ) { + var children = config.children; + if (void 0 !== children) + if (isStaticChildren) + if (isArrayImpl(children)) { + for ( + isStaticChildren = 0; + isStaticChildren < children.length; + isStaticChildren++ + ) + validateChildKeys(children[isStaticChildren]); + Object.freeze && Object.freeze(children); + } else + console.error( + "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead." + ); + else validateChildKeys(children); + if (hasOwnProperty.call(config, "key")) { + children = getComponentNameFromType(type); + var keys = Object.keys(config).filter(function (k) { + return "key" !== k; + }); + isStaticChildren = + 0 < keys.length + ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" + : "{key: someKey}"; + didWarnAboutKeySpread[children + isStaticChildren] || + ((keys = + 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}"), + console.error( + 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />', + isStaticChildren, + children, + keys, + children + ), + (didWarnAboutKeySpread[children + isStaticChildren] = !0)); + } + children = null; + void 0 !== maybeKey && + (checkKeyStringCoercion(maybeKey), (children = "" + maybeKey)); + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (children = "" + config.key)); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + children && + defineKeyPropWarningGetter( + maybeKey, + "function" === typeof type + ? type.displayName || type.name || "Unknown" + : type + ); + return ReactElement( + type, + children, + maybeKey, + getOwner(), + debugStack, + debugTask + ); + } + function validateChildKeys(node) { + isValidElement(node) + ? node._store && (node._store.validated = 1) + : "object" === typeof node && + null !== node && + node.$$typeof === REACT_LAZY_TYPE && + ("fulfilled" === node._payload.status + ? isValidElement(node._payload.value) && + node._payload.value._store && + (node._payload.value._store.validated = 1) + : node._store && (node._store.validated = 1)); + } + function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); + } + var React = require("react"), + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), + ReactSharedInternals = + React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, + hasOwnProperty = Object.prototype.hasOwnProperty, + isArrayImpl = Array.isArray, + createTask = console.createTask + ? console.createTask + : function () { + return null; + }; + React = { + react_stack_bottom_frame: function (callStackForError) { + return callStackForError(); + } + }; + var specialPropKeyWarningShown; + var didWarnAboutElementRef = {}; + var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind( + React, + UnknownOwner + )(); + var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); + var didWarnAboutKeySpread = {}; + exports.Fragment = REACT_FRAGMENT_TYPE; + exports.jsxDEV = function (type, config, maybeKey, isStaticChildren) { + var trackActualOwner = + 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + })(); diff --git a/node_modules/react/cjs/react-jsx-dev-runtime.production.js b/node_modules/react/cjs/react-jsx-dev-runtime.production.js new file mode 100644 index 000000000..22ad88648 --- /dev/null +++ b/node_modules/react/cjs/react-jsx-dev-runtime.production.js @@ -0,0 +1,14 @@ +/** + * @license React + * react-jsx-dev-runtime.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.jsxDEV = void 0; diff --git a/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js b/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js new file mode 100644 index 000000000..f9e8942f4 --- /dev/null +++ b/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js @@ -0,0 +1,14 @@ +/** + * @license React + * react-jsx-dev-runtime.profiling.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.jsxDEV = void 0; diff --git a/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js b/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js new file mode 100644 index 000000000..b79b7589b --- /dev/null +++ b/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js @@ -0,0 +1,370 @@ +/** + * @license React + * react-jsx-dev-runtime.react-server.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + function getComponentNameFromType(type) { + if (null == type) return null; + if ("function" === typeof type) + return type.$$typeof === REACT_CLIENT_REFERENCE + ? null + : type.displayName || type.name || null; + if ("string" === typeof type) return type; + switch (type) { + case REACT_FRAGMENT_TYPE: + return "Fragment"; + case REACT_PROFILER_TYPE: + return "Profiler"; + case REACT_STRICT_MODE_TYPE: + return "StrictMode"; + case REACT_SUSPENSE_TYPE: + return "Suspense"; + case REACT_SUSPENSE_LIST_TYPE: + return "SuspenseList"; + case REACT_ACTIVITY_TYPE: + return "Activity"; + } + if ("object" === typeof type) + switch ( + ("number" === typeof type.tag && + console.error( + "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue." + ), + type.$$typeof) + ) { + case REACT_PORTAL_TYPE: + return "Portal"; + case REACT_CONTEXT_TYPE: + return type.displayName || "Context"; + case REACT_CONSUMER_TYPE: + return (type._context.displayName || "Context") + ".Consumer"; + case REACT_FORWARD_REF_TYPE: + var innerType = type.render; + type = type.displayName; + type || + ((type = innerType.displayName || innerType.name || ""), + (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef")); + return type; + case REACT_MEMO_TYPE: + return ( + (innerType = type.displayName || null), + null !== innerType + ? innerType + : getComponentNameFromType(type.type) || "Memo" + ); + case REACT_LAZY_TYPE: + innerType = type._payload; + type = type._init; + try { + return getComponentNameFromType(type(innerType)); + } catch (x) {} + } + return null; + } + function testStringCoercion(value) { + return "" + value; + } + function checkKeyStringCoercion(value) { + try { + testStringCoercion(value); + var JSCompiler_inline_result = !1; + } catch (e) { + JSCompiler_inline_result = !0; + } + if (JSCompiler_inline_result) { + JSCompiler_inline_result = console; + var JSCompiler_temp_const = JSCompiler_inline_result.error; + var JSCompiler_inline_result$jscomp$0 = + ("function" === typeof Symbol && + Symbol.toStringTag && + value[Symbol.toStringTag]) || + value.constructor.name || + "Object"; + JSCompiler_temp_const.call( + JSCompiler_inline_result, + "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", + JSCompiler_inline_result$jscomp$0 + ); + return testStringCoercion(value); + } + } + function getTaskName(type) { + if (type === REACT_FRAGMENT_TYPE) return "<>"; + if ( + "object" === typeof type && + null !== type && + type.$$typeof === REACT_LAZY_TYPE + ) + return "<...>"; + try { + var name = getComponentNameFromType(type); + return name ? "<" + name + ">" : "<...>"; + } catch (x) { + return "<...>"; + } + } + function getOwner() { + var dispatcher = ReactSharedInternalsServer.A; + return null === dispatcher ? null : dispatcher.getOwner(); + } + function UnknownOwner() { + return Error("react-stack-top-frame"); + } + function hasValidKey(config) { + if (hasOwnProperty.call(config, "key")) { + var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (getter && getter.isReactWarning) return !1; + } + return void 0 !== config.key; + } + function defineKeyPropWarningGetter(props, displayName) { + function warnAboutAccessingKey() { + specialPropKeyWarningShown || + ((specialPropKeyWarningShown = !0), + console.error( + "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", + displayName + )); + } + warnAboutAccessingKey.isReactWarning = !0; + Object.defineProperty(props, "key", { + get: warnAboutAccessingKey, + configurable: !0 + }); + } + function elementRefGetterWithDeprecationWarning() { + var componentName = getComponentNameFromType(this.type); + didWarnAboutElementRef[componentName] || + ((didWarnAboutElementRef[componentName] = !0), + console.error( + "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release." + )); + componentName = this.props.ref; + return void 0 !== componentName ? componentName : null; + } + function ReactElement(type, key, props, owner, debugStack, debugTask) { + var refProp = props.ref; + type = { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + props: props, + _owner: owner + }; + null !== (void 0 !== refProp ? refProp : null) + ? Object.defineProperty(type, "ref", { + enumerable: !1, + get: elementRefGetterWithDeprecationWarning + }) + : Object.defineProperty(type, "ref", { enumerable: !1, value: null }); + type._store = {}; + Object.defineProperty(type._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: 0 + }); + Object.defineProperty(type, "_debugInfo", { + configurable: !1, + enumerable: !1, + writable: !0, + value: null + }); + Object.defineProperty(type, "_debugStack", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugStack + }); + Object.defineProperty(type, "_debugTask", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugTask + }); + Object.freeze && (Object.freeze(type.props), Object.freeze(type)); + return type; + } + function jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + debugStack, + debugTask + ) { + var children = config.children; + if (void 0 !== children) + if (isStaticChildren) + if (isArrayImpl(children)) { + for ( + isStaticChildren = 0; + isStaticChildren < children.length; + isStaticChildren++ + ) + validateChildKeys(children[isStaticChildren]); + Object.freeze && Object.freeze(children); + } else + console.error( + "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead." + ); + else validateChildKeys(children); + if (hasOwnProperty.call(config, "key")) { + children = getComponentNameFromType(type); + var keys = Object.keys(config).filter(function (k) { + return "key" !== k; + }); + isStaticChildren = + 0 < keys.length + ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" + : "{key: someKey}"; + didWarnAboutKeySpread[children + isStaticChildren] || + ((keys = + 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}"), + console.error( + 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />', + isStaticChildren, + children, + keys, + children + ), + (didWarnAboutKeySpread[children + isStaticChildren] = !0)); + } + children = null; + void 0 !== maybeKey && + (checkKeyStringCoercion(maybeKey), (children = "" + maybeKey)); + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (children = "" + config.key)); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + children && + defineKeyPropWarningGetter( + maybeKey, + "function" === typeof type + ? type.displayName || type.name || "Unknown" + : type + ); + return ReactElement( + type, + children, + maybeKey, + getOwner(), + debugStack, + debugTask + ); + } + function validateChildKeys(node) { + isValidElement(node) + ? node._store && (node._store.validated = 1) + : "object" === typeof node && + null !== node && + node.$$typeof === REACT_LAZY_TYPE && + ("fulfilled" === node._payload.status + ? isValidElement(node._payload.value) && + node._payload.value._store && + (node._payload.value._store.validated = 1) + : node._store && (node._store.validated = 1)); + } + function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); + } + var React = require("react"), + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), + ReactSharedInternalsServer = + React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; + if (!ReactSharedInternalsServer) + throw Error( + 'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.' + ); + var hasOwnProperty = Object.prototype.hasOwnProperty, + isArrayImpl = Array.isArray, + createTask = console.createTask + ? console.createTask + : function () { + return null; + }; + React = { + react_stack_bottom_frame: function (callStackForError) { + return callStackForError(); + } + }; + var specialPropKeyWarningShown; + var didWarnAboutElementRef = {}; + var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind( + React, + UnknownOwner + )(); + var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); + var didWarnAboutKeySpread = {}; + exports.Fragment = REACT_FRAGMENT_TYPE; + exports.jsx = function (type, config, maybeKey) { + var trackActualOwner = + 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + !1, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.jsxDEV = function (type, config, maybeKey, isStaticChildren) { + var trackActualOwner = + 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.jsxs = function (type, config, maybeKey) { + var trackActualOwner = + 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + !0, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + })(); diff --git a/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js b/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js new file mode 100644 index 000000000..066412199 --- /dev/null +++ b/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js @@ -0,0 +1,40 @@ +/** + * @license React + * react-jsx-dev-runtime.react-server.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var React = require("react"), + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); +if (!React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE) + throw Error( + 'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.' + ); +function jsxProd(type, config, maybeKey) { + var key = null; + void 0 !== maybeKey && (key = "" + maybeKey); + void 0 !== config.key && (key = "" + config.key); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + config = maybeKey.ref; + return { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + ref: void 0 !== config ? config : null, + props: maybeKey + }; +} +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.jsx = jsxProd; +exports.jsxDEV = void 0; +exports.jsxs = jsxProd; diff --git a/node_modules/react/cjs/react-jsx-runtime.development.js b/node_modules/react/cjs/react-jsx-runtime.development.js new file mode 100644 index 000000000..35331a3c5 --- /dev/null +++ b/node_modules/react/cjs/react-jsx-runtime.development.js @@ -0,0 +1,352 @@ +/** + * @license React + * react-jsx-runtime.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + function getComponentNameFromType(type) { + if (null == type) return null; + if ("function" === typeof type) + return type.$$typeof === REACT_CLIENT_REFERENCE + ? null + : type.displayName || type.name || null; + if ("string" === typeof type) return type; + switch (type) { + case REACT_FRAGMENT_TYPE: + return "Fragment"; + case REACT_PROFILER_TYPE: + return "Profiler"; + case REACT_STRICT_MODE_TYPE: + return "StrictMode"; + case REACT_SUSPENSE_TYPE: + return "Suspense"; + case REACT_SUSPENSE_LIST_TYPE: + return "SuspenseList"; + case REACT_ACTIVITY_TYPE: + return "Activity"; + } + if ("object" === typeof type) + switch ( + ("number" === typeof type.tag && + console.error( + "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue." + ), + type.$$typeof) + ) { + case REACT_PORTAL_TYPE: + return "Portal"; + case REACT_CONTEXT_TYPE: + return type.displayName || "Context"; + case REACT_CONSUMER_TYPE: + return (type._context.displayName || "Context") + ".Consumer"; + case REACT_FORWARD_REF_TYPE: + var innerType = type.render; + type = type.displayName; + type || + ((type = innerType.displayName || innerType.name || ""), + (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef")); + return type; + case REACT_MEMO_TYPE: + return ( + (innerType = type.displayName || null), + null !== innerType + ? innerType + : getComponentNameFromType(type.type) || "Memo" + ); + case REACT_LAZY_TYPE: + innerType = type._payload; + type = type._init; + try { + return getComponentNameFromType(type(innerType)); + } catch (x) {} + } + return null; + } + function testStringCoercion(value) { + return "" + value; + } + function checkKeyStringCoercion(value) { + try { + testStringCoercion(value); + var JSCompiler_inline_result = !1; + } catch (e) { + JSCompiler_inline_result = !0; + } + if (JSCompiler_inline_result) { + JSCompiler_inline_result = console; + var JSCompiler_temp_const = JSCompiler_inline_result.error; + var JSCompiler_inline_result$jscomp$0 = + ("function" === typeof Symbol && + Symbol.toStringTag && + value[Symbol.toStringTag]) || + value.constructor.name || + "Object"; + JSCompiler_temp_const.call( + JSCompiler_inline_result, + "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", + JSCompiler_inline_result$jscomp$0 + ); + return testStringCoercion(value); + } + } + function getTaskName(type) { + if (type === REACT_FRAGMENT_TYPE) return "<>"; + if ( + "object" === typeof type && + null !== type && + type.$$typeof === REACT_LAZY_TYPE + ) + return "<...>"; + try { + var name = getComponentNameFromType(type); + return name ? "<" + name + ">" : "<...>"; + } catch (x) { + return "<...>"; + } + } + function getOwner() { + var dispatcher = ReactSharedInternals.A; + return null === dispatcher ? null : dispatcher.getOwner(); + } + function UnknownOwner() { + return Error("react-stack-top-frame"); + } + function hasValidKey(config) { + if (hasOwnProperty.call(config, "key")) { + var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (getter && getter.isReactWarning) return !1; + } + return void 0 !== config.key; + } + function defineKeyPropWarningGetter(props, displayName) { + function warnAboutAccessingKey() { + specialPropKeyWarningShown || + ((specialPropKeyWarningShown = !0), + console.error( + "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", + displayName + )); + } + warnAboutAccessingKey.isReactWarning = !0; + Object.defineProperty(props, "key", { + get: warnAboutAccessingKey, + configurable: !0 + }); + } + function elementRefGetterWithDeprecationWarning() { + var componentName = getComponentNameFromType(this.type); + didWarnAboutElementRef[componentName] || + ((didWarnAboutElementRef[componentName] = !0), + console.error( + "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release." + )); + componentName = this.props.ref; + return void 0 !== componentName ? componentName : null; + } + function ReactElement(type, key, props, owner, debugStack, debugTask) { + var refProp = props.ref; + type = { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + props: props, + _owner: owner + }; + null !== (void 0 !== refProp ? refProp : null) + ? Object.defineProperty(type, "ref", { + enumerable: !1, + get: elementRefGetterWithDeprecationWarning + }) + : Object.defineProperty(type, "ref", { enumerable: !1, value: null }); + type._store = {}; + Object.defineProperty(type._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: 0 + }); + Object.defineProperty(type, "_debugInfo", { + configurable: !1, + enumerable: !1, + writable: !0, + value: null + }); + Object.defineProperty(type, "_debugStack", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugStack + }); + Object.defineProperty(type, "_debugTask", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugTask + }); + Object.freeze && (Object.freeze(type.props), Object.freeze(type)); + return type; + } + function jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + debugStack, + debugTask + ) { + var children = config.children; + if (void 0 !== children) + if (isStaticChildren) + if (isArrayImpl(children)) { + for ( + isStaticChildren = 0; + isStaticChildren < children.length; + isStaticChildren++ + ) + validateChildKeys(children[isStaticChildren]); + Object.freeze && Object.freeze(children); + } else + console.error( + "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead." + ); + else validateChildKeys(children); + if (hasOwnProperty.call(config, "key")) { + children = getComponentNameFromType(type); + var keys = Object.keys(config).filter(function (k) { + return "key" !== k; + }); + isStaticChildren = + 0 < keys.length + ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" + : "{key: someKey}"; + didWarnAboutKeySpread[children + isStaticChildren] || + ((keys = + 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}"), + console.error( + 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />', + isStaticChildren, + children, + keys, + children + ), + (didWarnAboutKeySpread[children + isStaticChildren] = !0)); + } + children = null; + void 0 !== maybeKey && + (checkKeyStringCoercion(maybeKey), (children = "" + maybeKey)); + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (children = "" + config.key)); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + children && + defineKeyPropWarningGetter( + maybeKey, + "function" === typeof type + ? type.displayName || type.name || "Unknown" + : type + ); + return ReactElement( + type, + children, + maybeKey, + getOwner(), + debugStack, + debugTask + ); + } + function validateChildKeys(node) { + isValidElement(node) + ? node._store && (node._store.validated = 1) + : "object" === typeof node && + null !== node && + node.$$typeof === REACT_LAZY_TYPE && + ("fulfilled" === node._payload.status + ? isValidElement(node._payload.value) && + node._payload.value._store && + (node._payload.value._store.validated = 1) + : node._store && (node._store.validated = 1)); + } + function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); + } + var React = require("react"), + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), + ReactSharedInternals = + React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, + hasOwnProperty = Object.prototype.hasOwnProperty, + isArrayImpl = Array.isArray, + createTask = console.createTask + ? console.createTask + : function () { + return null; + }; + React = { + react_stack_bottom_frame: function (callStackForError) { + return callStackForError(); + } + }; + var specialPropKeyWarningShown; + var didWarnAboutElementRef = {}; + var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind( + React, + UnknownOwner + )(); + var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); + var didWarnAboutKeySpread = {}; + exports.Fragment = REACT_FRAGMENT_TYPE; + exports.jsx = function (type, config, maybeKey) { + var trackActualOwner = + 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + !1, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.jsxs = function (type, config, maybeKey) { + var trackActualOwner = + 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + !0, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + })(); diff --git a/node_modules/react/cjs/react-jsx-runtime.production.js b/node_modules/react/cjs/react-jsx-runtime.production.js new file mode 100644 index 000000000..12d60887f --- /dev/null +++ b/node_modules/react/cjs/react-jsx-runtime.production.js @@ -0,0 +1,34 @@ +/** + * @license React + * react-jsx-runtime.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); +function jsxProd(type, config, maybeKey) { + var key = null; + void 0 !== maybeKey && (key = "" + maybeKey); + void 0 !== config.key && (key = "" + config.key); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + config = maybeKey.ref; + return { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + ref: void 0 !== config ? config : null, + props: maybeKey + }; +} +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.jsx = jsxProd; +exports.jsxs = jsxProd; diff --git a/node_modules/react/cjs/react-jsx-runtime.profiling.js b/node_modules/react/cjs/react-jsx-runtime.profiling.js new file mode 100644 index 000000000..68a28d6ad --- /dev/null +++ b/node_modules/react/cjs/react-jsx-runtime.profiling.js @@ -0,0 +1,34 @@ +/** + * @license React + * react-jsx-runtime.profiling.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); +function jsxProd(type, config, maybeKey) { + var key = null; + void 0 !== maybeKey && (key = "" + maybeKey); + void 0 !== config.key && (key = "" + config.key); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + config = maybeKey.ref; + return { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + ref: void 0 !== config ? config : null, + props: maybeKey + }; +} +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.jsx = jsxProd; +exports.jsxs = jsxProd; diff --git a/node_modules/react/cjs/react-jsx-runtime.react-server.development.js b/node_modules/react/cjs/react-jsx-runtime.react-server.development.js new file mode 100644 index 000000000..59ee4be6d --- /dev/null +++ b/node_modules/react/cjs/react-jsx-runtime.react-server.development.js @@ -0,0 +1,370 @@ +/** + * @license React + * react-jsx-runtime.react-server.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + function getComponentNameFromType(type) { + if (null == type) return null; + if ("function" === typeof type) + return type.$$typeof === REACT_CLIENT_REFERENCE + ? null + : type.displayName || type.name || null; + if ("string" === typeof type) return type; + switch (type) { + case REACT_FRAGMENT_TYPE: + return "Fragment"; + case REACT_PROFILER_TYPE: + return "Profiler"; + case REACT_STRICT_MODE_TYPE: + return "StrictMode"; + case REACT_SUSPENSE_TYPE: + return "Suspense"; + case REACT_SUSPENSE_LIST_TYPE: + return "SuspenseList"; + case REACT_ACTIVITY_TYPE: + return "Activity"; + } + if ("object" === typeof type) + switch ( + ("number" === typeof type.tag && + console.error( + "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue." + ), + type.$$typeof) + ) { + case REACT_PORTAL_TYPE: + return "Portal"; + case REACT_CONTEXT_TYPE: + return type.displayName || "Context"; + case REACT_CONSUMER_TYPE: + return (type._context.displayName || "Context") + ".Consumer"; + case REACT_FORWARD_REF_TYPE: + var innerType = type.render; + type = type.displayName; + type || + ((type = innerType.displayName || innerType.name || ""), + (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef")); + return type; + case REACT_MEMO_TYPE: + return ( + (innerType = type.displayName || null), + null !== innerType + ? innerType + : getComponentNameFromType(type.type) || "Memo" + ); + case REACT_LAZY_TYPE: + innerType = type._payload; + type = type._init; + try { + return getComponentNameFromType(type(innerType)); + } catch (x) {} + } + return null; + } + function testStringCoercion(value) { + return "" + value; + } + function checkKeyStringCoercion(value) { + try { + testStringCoercion(value); + var JSCompiler_inline_result = !1; + } catch (e) { + JSCompiler_inline_result = !0; + } + if (JSCompiler_inline_result) { + JSCompiler_inline_result = console; + var JSCompiler_temp_const = JSCompiler_inline_result.error; + var JSCompiler_inline_result$jscomp$0 = + ("function" === typeof Symbol && + Symbol.toStringTag && + value[Symbol.toStringTag]) || + value.constructor.name || + "Object"; + JSCompiler_temp_const.call( + JSCompiler_inline_result, + "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", + JSCompiler_inline_result$jscomp$0 + ); + return testStringCoercion(value); + } + } + function getTaskName(type) { + if (type === REACT_FRAGMENT_TYPE) return "<>"; + if ( + "object" === typeof type && + null !== type && + type.$$typeof === REACT_LAZY_TYPE + ) + return "<...>"; + try { + var name = getComponentNameFromType(type); + return name ? "<" + name + ">" : "<...>"; + } catch (x) { + return "<...>"; + } + } + function getOwner() { + var dispatcher = ReactSharedInternalsServer.A; + return null === dispatcher ? null : dispatcher.getOwner(); + } + function UnknownOwner() { + return Error("react-stack-top-frame"); + } + function hasValidKey(config) { + if (hasOwnProperty.call(config, "key")) { + var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (getter && getter.isReactWarning) return !1; + } + return void 0 !== config.key; + } + function defineKeyPropWarningGetter(props, displayName) { + function warnAboutAccessingKey() { + specialPropKeyWarningShown || + ((specialPropKeyWarningShown = !0), + console.error( + "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", + displayName + )); + } + warnAboutAccessingKey.isReactWarning = !0; + Object.defineProperty(props, "key", { + get: warnAboutAccessingKey, + configurable: !0 + }); + } + function elementRefGetterWithDeprecationWarning() { + var componentName = getComponentNameFromType(this.type); + didWarnAboutElementRef[componentName] || + ((didWarnAboutElementRef[componentName] = !0), + console.error( + "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release." + )); + componentName = this.props.ref; + return void 0 !== componentName ? componentName : null; + } + function ReactElement(type, key, props, owner, debugStack, debugTask) { + var refProp = props.ref; + type = { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + props: props, + _owner: owner + }; + null !== (void 0 !== refProp ? refProp : null) + ? Object.defineProperty(type, "ref", { + enumerable: !1, + get: elementRefGetterWithDeprecationWarning + }) + : Object.defineProperty(type, "ref", { enumerable: !1, value: null }); + type._store = {}; + Object.defineProperty(type._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: 0 + }); + Object.defineProperty(type, "_debugInfo", { + configurable: !1, + enumerable: !1, + writable: !0, + value: null + }); + Object.defineProperty(type, "_debugStack", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugStack + }); + Object.defineProperty(type, "_debugTask", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugTask + }); + Object.freeze && (Object.freeze(type.props), Object.freeze(type)); + return type; + } + function jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + debugStack, + debugTask + ) { + var children = config.children; + if (void 0 !== children) + if (isStaticChildren) + if (isArrayImpl(children)) { + for ( + isStaticChildren = 0; + isStaticChildren < children.length; + isStaticChildren++ + ) + validateChildKeys(children[isStaticChildren]); + Object.freeze && Object.freeze(children); + } else + console.error( + "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead." + ); + else validateChildKeys(children); + if (hasOwnProperty.call(config, "key")) { + children = getComponentNameFromType(type); + var keys = Object.keys(config).filter(function (k) { + return "key" !== k; + }); + isStaticChildren = + 0 < keys.length + ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" + : "{key: someKey}"; + didWarnAboutKeySpread[children + isStaticChildren] || + ((keys = + 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}"), + console.error( + 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />', + isStaticChildren, + children, + keys, + children + ), + (didWarnAboutKeySpread[children + isStaticChildren] = !0)); + } + children = null; + void 0 !== maybeKey && + (checkKeyStringCoercion(maybeKey), (children = "" + maybeKey)); + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (children = "" + config.key)); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + children && + defineKeyPropWarningGetter( + maybeKey, + "function" === typeof type + ? type.displayName || type.name || "Unknown" + : type + ); + return ReactElement( + type, + children, + maybeKey, + getOwner(), + debugStack, + debugTask + ); + } + function validateChildKeys(node) { + isValidElement(node) + ? node._store && (node._store.validated = 1) + : "object" === typeof node && + null !== node && + node.$$typeof === REACT_LAZY_TYPE && + ("fulfilled" === node._payload.status + ? isValidElement(node._payload.value) && + node._payload.value._store && + (node._payload.value._store.validated = 1) + : node._store && (node._store.validated = 1)); + } + function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); + } + var React = require("react"), + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), + ReactSharedInternalsServer = + React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; + if (!ReactSharedInternalsServer) + throw Error( + 'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.' + ); + var hasOwnProperty = Object.prototype.hasOwnProperty, + isArrayImpl = Array.isArray, + createTask = console.createTask + ? console.createTask + : function () { + return null; + }; + React = { + react_stack_bottom_frame: function (callStackForError) { + return callStackForError(); + } + }; + var specialPropKeyWarningShown; + var didWarnAboutElementRef = {}; + var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind( + React, + UnknownOwner + )(); + var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); + var didWarnAboutKeySpread = {}; + exports.Fragment = REACT_FRAGMENT_TYPE; + exports.jsx = function (type, config, maybeKey) { + var trackActualOwner = + 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + !1, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.jsxDEV = function (type, config, maybeKey, isStaticChildren) { + var trackActualOwner = + 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + isStaticChildren, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.jsxs = function (type, config, maybeKey) { + var trackActualOwner = + 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++; + return jsxDEVImpl( + type, + config, + maybeKey, + !0, + trackActualOwner + ? Error("react-stack-top-frame") + : unknownOwnerDebugStack, + trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + })(); diff --git a/node_modules/react/cjs/react-jsx-runtime.react-server.production.js b/node_modules/react/cjs/react-jsx-runtime.react-server.production.js new file mode 100644 index 000000000..486facb52 --- /dev/null +++ b/node_modules/react/cjs/react-jsx-runtime.react-server.production.js @@ -0,0 +1,40 @@ +/** + * @license React + * react-jsx-runtime.react-server.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var React = require("react"), + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); +if (!React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE) + throw Error( + 'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.' + ); +function jsxProd(type, config, maybeKey) { + var key = null; + void 0 !== maybeKey && (key = "" + maybeKey); + void 0 !== config.key && (key = "" + config.key); + if ("key" in config) { + maybeKey = {}; + for (var propName in config) + "key" !== propName && (maybeKey[propName] = config[propName]); + } else maybeKey = config; + config = maybeKey.ref; + return { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + ref: void 0 !== config ? config : null, + props: maybeKey + }; +} +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.jsx = jsxProd; +exports.jsxDEV = void 0; +exports.jsxs = jsxProd; diff --git a/node_modules/react/cjs/react.development.js b/node_modules/react/cjs/react.development.js new file mode 100644 index 000000000..941f5f8db --- /dev/null +++ b/node_modules/react/cjs/react.development.js @@ -0,0 +1,1284 @@ +/** + * @license React + * react.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + function defineDeprecationWarning(methodName, info) { + Object.defineProperty(Component.prototype, methodName, { + get: function () { + console.warn( + "%s(...) is deprecated in plain JavaScript React classes. %s", + info[0], + info[1] + ); + } + }); + } + function getIteratorFn(maybeIterable) { + if (null === maybeIterable || "object" !== typeof maybeIterable) + return null; + maybeIterable = + (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) || + maybeIterable["@@iterator"]; + return "function" === typeof maybeIterable ? maybeIterable : null; + } + function warnNoop(publicInstance, callerName) { + publicInstance = + ((publicInstance = publicInstance.constructor) && + (publicInstance.displayName || publicInstance.name)) || + "ReactClass"; + var warningKey = publicInstance + "." + callerName; + didWarnStateUpdateForUnmountedComponent[warningKey] || + (console.error( + "Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", + callerName, + publicInstance + ), + (didWarnStateUpdateForUnmountedComponent[warningKey] = !0)); + } + function Component(props, context, updater) { + this.props = props; + this.context = context; + this.refs = emptyObject; + this.updater = updater || ReactNoopUpdateQueue; + } + function ComponentDummy() {} + function PureComponent(props, context, updater) { + this.props = props; + this.context = context; + this.refs = emptyObject; + this.updater = updater || ReactNoopUpdateQueue; + } + function noop() {} + function testStringCoercion(value) { + return "" + value; + } + function checkKeyStringCoercion(value) { + try { + testStringCoercion(value); + var JSCompiler_inline_result = !1; + } catch (e) { + JSCompiler_inline_result = !0; + } + if (JSCompiler_inline_result) { + JSCompiler_inline_result = console; + var JSCompiler_temp_const = JSCompiler_inline_result.error; + var JSCompiler_inline_result$jscomp$0 = + ("function" === typeof Symbol && + Symbol.toStringTag && + value[Symbol.toStringTag]) || + value.constructor.name || + "Object"; + JSCompiler_temp_const.call( + JSCompiler_inline_result, + "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", + JSCompiler_inline_result$jscomp$0 + ); + return testStringCoercion(value); + } + } + function getComponentNameFromType(type) { + if (null == type) return null; + if ("function" === typeof type) + return type.$$typeof === REACT_CLIENT_REFERENCE + ? null + : type.displayName || type.name || null; + if ("string" === typeof type) return type; + switch (type) { + case REACT_FRAGMENT_TYPE: + return "Fragment"; + case REACT_PROFILER_TYPE: + return "Profiler"; + case REACT_STRICT_MODE_TYPE: + return "StrictMode"; + case REACT_SUSPENSE_TYPE: + return "Suspense"; + case REACT_SUSPENSE_LIST_TYPE: + return "SuspenseList"; + case REACT_ACTIVITY_TYPE: + return "Activity"; + } + if ("object" === typeof type) + switch ( + ("number" === typeof type.tag && + console.error( + "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue." + ), + type.$$typeof) + ) { + case REACT_PORTAL_TYPE: + return "Portal"; + case REACT_CONTEXT_TYPE: + return type.displayName || "Context"; + case REACT_CONSUMER_TYPE: + return (type._context.displayName || "Context") + ".Consumer"; + case REACT_FORWARD_REF_TYPE: + var innerType = type.render; + type = type.displayName; + type || + ((type = innerType.displayName || innerType.name || ""), + (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef")); + return type; + case REACT_MEMO_TYPE: + return ( + (innerType = type.displayName || null), + null !== innerType + ? innerType + : getComponentNameFromType(type.type) || "Memo" + ); + case REACT_LAZY_TYPE: + innerType = type._payload; + type = type._init; + try { + return getComponentNameFromType(type(innerType)); + } catch (x) {} + } + return null; + } + function getTaskName(type) { + if (type === REACT_FRAGMENT_TYPE) return "<>"; + if ( + "object" === typeof type && + null !== type && + type.$$typeof === REACT_LAZY_TYPE + ) + return "<...>"; + try { + var name = getComponentNameFromType(type); + return name ? "<" + name + ">" : "<...>"; + } catch (x) { + return "<...>"; + } + } + function getOwner() { + var dispatcher = ReactSharedInternals.A; + return null === dispatcher ? null : dispatcher.getOwner(); + } + function UnknownOwner() { + return Error("react-stack-top-frame"); + } + function hasValidKey(config) { + if (hasOwnProperty.call(config, "key")) { + var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (getter && getter.isReactWarning) return !1; + } + return void 0 !== config.key; + } + function defineKeyPropWarningGetter(props, displayName) { + function warnAboutAccessingKey() { + specialPropKeyWarningShown || + ((specialPropKeyWarningShown = !0), + console.error( + "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", + displayName + )); + } + warnAboutAccessingKey.isReactWarning = !0; + Object.defineProperty(props, "key", { + get: warnAboutAccessingKey, + configurable: !0 + }); + } + function elementRefGetterWithDeprecationWarning() { + var componentName = getComponentNameFromType(this.type); + didWarnAboutElementRef[componentName] || + ((didWarnAboutElementRef[componentName] = !0), + console.error( + "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release." + )); + componentName = this.props.ref; + return void 0 !== componentName ? componentName : null; + } + function ReactElement(type, key, props, owner, debugStack, debugTask) { + var refProp = props.ref; + type = { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + props: props, + _owner: owner + }; + null !== (void 0 !== refProp ? refProp : null) + ? Object.defineProperty(type, "ref", { + enumerable: !1, + get: elementRefGetterWithDeprecationWarning + }) + : Object.defineProperty(type, "ref", { enumerable: !1, value: null }); + type._store = {}; + Object.defineProperty(type._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: 0 + }); + Object.defineProperty(type, "_debugInfo", { + configurable: !1, + enumerable: !1, + writable: !0, + value: null + }); + Object.defineProperty(type, "_debugStack", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugStack + }); + Object.defineProperty(type, "_debugTask", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugTask + }); + Object.freeze && (Object.freeze(type.props), Object.freeze(type)); + return type; + } + function cloneAndReplaceKey(oldElement, newKey) { + newKey = ReactElement( + oldElement.type, + newKey, + oldElement.props, + oldElement._owner, + oldElement._debugStack, + oldElement._debugTask + ); + oldElement._store && + (newKey._store.validated = oldElement._store.validated); + return newKey; + } + function validateChildKeys(node) { + isValidElement(node) + ? node._store && (node._store.validated = 1) + : "object" === typeof node && + null !== node && + node.$$typeof === REACT_LAZY_TYPE && + ("fulfilled" === node._payload.status + ? isValidElement(node._payload.value) && + node._payload.value._store && + (node._payload.value._store.validated = 1) + : node._store && (node._store.validated = 1)); + } + function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); + } + function escape(key) { + var escaperLookup = { "=": "=0", ":": "=2" }; + return ( + "$" + + key.replace(/[=:]/g, function (match) { + return escaperLookup[match]; + }) + ); + } + function getElementKey(element, index) { + return "object" === typeof element && + null !== element && + null != element.key + ? (checkKeyStringCoercion(element.key), escape("" + element.key)) + : index.toString(36); + } + function resolveThenable(thenable) { + switch (thenable.status) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + default: + switch ( + ("string" === typeof thenable.status + ? thenable.then(noop, noop) + : ((thenable.status = "pending"), + thenable.then( + function (fulfilledValue) { + "pending" === thenable.status && + ((thenable.status = "fulfilled"), + (thenable.value = fulfilledValue)); + }, + function (error) { + "pending" === thenable.status && + ((thenable.status = "rejected"), + (thenable.reason = error)); + } + )), + thenable.status) + ) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + } + } + throw thenable; + } + function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { + var type = typeof children; + if ("undefined" === type || "boolean" === type) children = null; + var invokeCallback = !1; + if (null === children) invokeCallback = !0; + else + switch (type) { + case "bigint": + case "string": + case "number": + invokeCallback = !0; + break; + case "object": + switch (children.$$typeof) { + case REACT_ELEMENT_TYPE: + case REACT_PORTAL_TYPE: + invokeCallback = !0; + break; + case REACT_LAZY_TYPE: + return ( + (invokeCallback = children._init), + mapIntoArray( + invokeCallback(children._payload), + array, + escapedPrefix, + nameSoFar, + callback + ) + ); + } + } + if (invokeCallback) { + invokeCallback = children; + callback = callback(invokeCallback); + var childKey = + "" === nameSoFar ? "." + getElementKey(invokeCallback, 0) : nameSoFar; + isArrayImpl(callback) + ? ((escapedPrefix = ""), + null != childKey && + (escapedPrefix = + childKey.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), + mapIntoArray(callback, array, escapedPrefix, "", function (c) { + return c; + })) + : null != callback && + (isValidElement(callback) && + (null != callback.key && + ((invokeCallback && invokeCallback.key === callback.key) || + checkKeyStringCoercion(callback.key)), + (escapedPrefix = cloneAndReplaceKey( + callback, + escapedPrefix + + (null == callback.key || + (invokeCallback && invokeCallback.key === callback.key) + ? "" + : ("" + callback.key).replace( + userProvidedKeyEscapeRegex, + "$&/" + ) + "/") + + childKey + )), + "" !== nameSoFar && + null != invokeCallback && + isValidElement(invokeCallback) && + null == invokeCallback.key && + invokeCallback._store && + !invokeCallback._store.validated && + (escapedPrefix._store.validated = 2), + (callback = escapedPrefix)), + array.push(callback)); + return 1; + } + invokeCallback = 0; + childKey = "" === nameSoFar ? "." : nameSoFar + ":"; + if (isArrayImpl(children)) + for (var i = 0; i < children.length; i++) + (nameSoFar = children[i]), + (type = childKey + getElementKey(nameSoFar, i)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if (((i = getIteratorFn(children)), "function" === typeof i)) + for ( + i === children.entries && + (didWarnAboutMaps || + console.warn( + "Using Maps as children is not supported. Use an array of keyed ReactElements instead." + ), + (didWarnAboutMaps = !0)), + children = i.call(children), + i = 0; + !(nameSoFar = children.next()).done; + + ) + (nameSoFar = nameSoFar.value), + (type = childKey + getElementKey(nameSoFar, i++)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if ("object" === type) { + if ("function" === typeof children.then) + return mapIntoArray( + resolveThenable(children), + array, + escapedPrefix, + nameSoFar, + callback + ); + array = String(children); + throw Error( + "Objects are not valid as a React child (found: " + + ("[object Object]" === array + ? "object with keys {" + Object.keys(children).join(", ") + "}" + : array) + + "). If you meant to render a collection of children, use an array instead." + ); + } + return invokeCallback; + } + function mapChildren(children, func, context) { + if (null == children) return children; + var result = [], + count = 0; + mapIntoArray(children, result, "", "", function (child) { + return func.call(context, child, count++); + }); + return result; + } + function lazyInitializer(payload) { + if (-1 === payload._status) { + var ioInfo = payload._ioInfo; + null != ioInfo && (ioInfo.start = ioInfo.end = performance.now()); + ioInfo = payload._result; + var thenable = ioInfo(); + thenable.then( + function (moduleObject) { + if (0 === payload._status || -1 === payload._status) { + payload._status = 1; + payload._result = moduleObject; + var _ioInfo = payload._ioInfo; + null != _ioInfo && (_ioInfo.end = performance.now()); + void 0 === thenable.status && + ((thenable.status = "fulfilled"), + (thenable.value = moduleObject)); + } + }, + function (error) { + if (0 === payload._status || -1 === payload._status) { + payload._status = 2; + payload._result = error; + var _ioInfo2 = payload._ioInfo; + null != _ioInfo2 && (_ioInfo2.end = performance.now()); + void 0 === thenable.status && + ((thenable.status = "rejected"), (thenable.reason = error)); + } + } + ); + ioInfo = payload._ioInfo; + if (null != ioInfo) { + ioInfo.value = thenable; + var displayName = thenable.displayName; + "string" === typeof displayName && (ioInfo.name = displayName); + } + -1 === payload._status && + ((payload._status = 0), (payload._result = thenable)); + } + if (1 === payload._status) + return ( + (ioInfo = payload._result), + void 0 === ioInfo && + console.error( + "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", + ioInfo + ), + "default" in ioInfo || + console.error( + "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", + ioInfo + ), + ioInfo.default + ); + throw payload._result; + } + function resolveDispatcher() { + var dispatcher = ReactSharedInternals.H; + null === dispatcher && + console.error( + "Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem." + ); + return dispatcher; + } + function releaseAsyncTransition() { + ReactSharedInternals.asyncTransitions--; + } + function enqueueTask(task) { + if (null === enqueueTaskImpl) + try { + var requireString = ("require" + Math.random()).slice(0, 7); + enqueueTaskImpl = (module && module[requireString]).call( + module, + "timers" + ).setImmediate; + } catch (_err) { + enqueueTaskImpl = function (callback) { + !1 === didWarnAboutMessageChannel && + ((didWarnAboutMessageChannel = !0), + "undefined" === typeof MessageChannel && + console.error( + "This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning." + )); + var channel = new MessageChannel(); + channel.port1.onmessage = callback; + channel.port2.postMessage(void 0); + }; + } + return enqueueTaskImpl(task); + } + function aggregateErrors(errors) { + return 1 < errors.length && "function" === typeof AggregateError + ? new AggregateError(errors) + : errors[0]; + } + function popActScope(prevActQueue, prevActScopeDepth) { + prevActScopeDepth !== actScopeDepth - 1 && + console.error( + "You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. " + ); + actScopeDepth = prevActScopeDepth; + } + function recursivelyFlushAsyncActWork(returnValue, resolve, reject) { + var queue = ReactSharedInternals.actQueue; + if (null !== queue) + if (0 !== queue.length) + try { + flushActQueue(queue); + enqueueTask(function () { + return recursivelyFlushAsyncActWork(returnValue, resolve, reject); + }); + return; + } catch (error) { + ReactSharedInternals.thrownErrors.push(error); + } + else ReactSharedInternals.actQueue = null; + 0 < ReactSharedInternals.thrownErrors.length + ? ((queue = aggregateErrors(ReactSharedInternals.thrownErrors)), + (ReactSharedInternals.thrownErrors.length = 0), + reject(queue)) + : resolve(returnValue); + } + function flushActQueue(queue) { + if (!isFlushing) { + isFlushing = !0; + var i = 0; + try { + for (; i < queue.length; i++) { + var callback = queue[i]; + do { + ReactSharedInternals.didUsePromise = !1; + var continuation = callback(!1); + if (null !== continuation) { + if (ReactSharedInternals.didUsePromise) { + queue[i] = callback; + queue.splice(0, i); + return; + } + callback = continuation; + } else break; + } while (1); + } + queue.length = 0; + } catch (error) { + queue.splice(0, i + 1), ReactSharedInternals.thrownErrors.push(error); + } finally { + isFlushing = !1; + } + } + } + "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && + "function" === + typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && + __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()); + var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + MAYBE_ITERATOR_SYMBOL = Symbol.iterator, + didWarnStateUpdateForUnmountedComponent = {}, + ReactNoopUpdateQueue = { + isMounted: function () { + return !1; + }, + enqueueForceUpdate: function (publicInstance) { + warnNoop(publicInstance, "forceUpdate"); + }, + enqueueReplaceState: function (publicInstance) { + warnNoop(publicInstance, "replaceState"); + }, + enqueueSetState: function (publicInstance) { + warnNoop(publicInstance, "setState"); + } + }, + assign = Object.assign, + emptyObject = {}; + Object.freeze(emptyObject); + Component.prototype.isReactComponent = {}; + Component.prototype.setState = function (partialState, callback) { + if ( + "object" !== typeof partialState && + "function" !== typeof partialState && + null != partialState + ) + throw Error( + "takes an object of state variables to update or a function which returns an object of state variables." + ); + this.updater.enqueueSetState(this, partialState, callback, "setState"); + }; + Component.prototype.forceUpdate = function (callback) { + this.updater.enqueueForceUpdate(this, callback, "forceUpdate"); + }; + var deprecatedAPIs = { + isMounted: [ + "isMounted", + "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks." + ], + replaceState: [ + "replaceState", + "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)." + ] + }; + for (fnName in deprecatedAPIs) + deprecatedAPIs.hasOwnProperty(fnName) && + defineDeprecationWarning(fnName, deprecatedAPIs[fnName]); + ComponentDummy.prototype = Component.prototype; + deprecatedAPIs = PureComponent.prototype = new ComponentDummy(); + deprecatedAPIs.constructor = PureComponent; + assign(deprecatedAPIs, Component.prototype); + deprecatedAPIs.isPureReactComponent = !0; + var isArrayImpl = Array.isArray, + REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), + ReactSharedInternals = { + H: null, + A: null, + T: null, + S: null, + actQueue: null, + asyncTransitions: 0, + isBatchingLegacy: !1, + didScheduleLegacyUpdate: !1, + didUsePromise: !1, + thrownErrors: [], + getCurrentStack: null, + recentlyCreatedOwnerStacks: 0 + }, + hasOwnProperty = Object.prototype.hasOwnProperty, + createTask = console.createTask + ? console.createTask + : function () { + return null; + }; + deprecatedAPIs = { + react_stack_bottom_frame: function (callStackForError) { + return callStackForError(); + } + }; + var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime; + var didWarnAboutElementRef = {}; + var unknownOwnerDebugStack = deprecatedAPIs.react_stack_bottom_frame.bind( + deprecatedAPIs, + UnknownOwner + )(); + var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); + var didWarnAboutMaps = !1, + userProvidedKeyEscapeRegex = /\/+/g, + reportGlobalError = + "function" === typeof reportError + ? reportError + : function (error) { + if ( + "object" === typeof window && + "function" === typeof window.ErrorEvent + ) { + var event = new window.ErrorEvent("error", { + bubbles: !0, + cancelable: !0, + message: + "object" === typeof error && + null !== error && + "string" === typeof error.message + ? String(error.message) + : String(error), + error: error + }); + if (!window.dispatchEvent(event)) return; + } else if ( + "object" === typeof process && + "function" === typeof process.emit + ) { + process.emit("uncaughtException", error); + return; + } + console.error(error); + }, + didWarnAboutMessageChannel = !1, + enqueueTaskImpl = null, + actScopeDepth = 0, + didWarnNoAwaitAct = !1, + isFlushing = !1, + queueSeveralMicrotasks = + "function" === typeof queueMicrotask + ? function (callback) { + queueMicrotask(function () { + return queueMicrotask(callback); + }); + } + : enqueueTask; + deprecatedAPIs = Object.freeze({ + __proto__: null, + c: function (size) { + return resolveDispatcher().useMemoCache(size); + } + }); + var fnName = { + map: mapChildren, + forEach: function (children, forEachFunc, forEachContext) { + mapChildren( + children, + function () { + forEachFunc.apply(this, arguments); + }, + forEachContext + ); + }, + count: function (children) { + var n = 0; + mapChildren(children, function () { + n++; + }); + return n; + }, + toArray: function (children) { + return ( + mapChildren(children, function (child) { + return child; + }) || [] + ); + }, + only: function (children) { + if (!isValidElement(children)) + throw Error( + "React.Children.only expected to receive a single React element child." + ); + return children; + } + }; + exports.Activity = REACT_ACTIVITY_TYPE; + exports.Children = fnName; + exports.Component = Component; + exports.Fragment = REACT_FRAGMENT_TYPE; + exports.Profiler = REACT_PROFILER_TYPE; + exports.PureComponent = PureComponent; + exports.StrictMode = REACT_STRICT_MODE_TYPE; + exports.Suspense = REACT_SUSPENSE_TYPE; + exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = + ReactSharedInternals; + exports.__COMPILER_RUNTIME = deprecatedAPIs; + exports.act = function (callback) { + var prevActQueue = ReactSharedInternals.actQueue, + prevActScopeDepth = actScopeDepth; + actScopeDepth++; + var queue = (ReactSharedInternals.actQueue = + null !== prevActQueue ? prevActQueue : []), + didAwaitActCall = !1; + try { + var result = callback(); + } catch (error) { + ReactSharedInternals.thrownErrors.push(error); + } + if (0 < ReactSharedInternals.thrownErrors.length) + throw ( + (popActScope(prevActQueue, prevActScopeDepth), + (callback = aggregateErrors(ReactSharedInternals.thrownErrors)), + (ReactSharedInternals.thrownErrors.length = 0), + callback) + ); + if ( + null !== result && + "object" === typeof result && + "function" === typeof result.then + ) { + var thenable = result; + queueSeveralMicrotasks(function () { + didAwaitActCall || + didWarnNoAwaitAct || + ((didWarnNoAwaitAct = !0), + console.error( + "You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);" + )); + }); + return { + then: function (resolve, reject) { + didAwaitActCall = !0; + thenable.then( + function (returnValue) { + popActScope(prevActQueue, prevActScopeDepth); + if (0 === prevActScopeDepth) { + try { + flushActQueue(queue), + enqueueTask(function () { + return recursivelyFlushAsyncActWork( + returnValue, + resolve, + reject + ); + }); + } catch (error$0) { + ReactSharedInternals.thrownErrors.push(error$0); + } + if (0 < ReactSharedInternals.thrownErrors.length) { + var _thrownError = aggregateErrors( + ReactSharedInternals.thrownErrors + ); + ReactSharedInternals.thrownErrors.length = 0; + reject(_thrownError); + } + } else resolve(returnValue); + }, + function (error) { + popActScope(prevActQueue, prevActScopeDepth); + 0 < ReactSharedInternals.thrownErrors.length + ? ((error = aggregateErrors( + ReactSharedInternals.thrownErrors + )), + (ReactSharedInternals.thrownErrors.length = 0), + reject(error)) + : reject(error); + } + ); + } + }; + } + var returnValue$jscomp$0 = result; + popActScope(prevActQueue, prevActScopeDepth); + 0 === prevActScopeDepth && + (flushActQueue(queue), + 0 !== queue.length && + queueSeveralMicrotasks(function () { + didAwaitActCall || + didWarnNoAwaitAct || + ((didWarnNoAwaitAct = !0), + console.error( + "A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)" + )); + }), + (ReactSharedInternals.actQueue = null)); + if (0 < ReactSharedInternals.thrownErrors.length) + throw ( + ((callback = aggregateErrors(ReactSharedInternals.thrownErrors)), + (ReactSharedInternals.thrownErrors.length = 0), + callback) + ); + return { + then: function (resolve, reject) { + didAwaitActCall = !0; + 0 === prevActScopeDepth + ? ((ReactSharedInternals.actQueue = queue), + enqueueTask(function () { + return recursivelyFlushAsyncActWork( + returnValue$jscomp$0, + resolve, + reject + ); + })) + : resolve(returnValue$jscomp$0); + } + }; + }; + exports.cache = function (fn) { + return function () { + return fn.apply(null, arguments); + }; + }; + exports.cacheSignal = function () { + return null; + }; + exports.captureOwnerStack = function () { + var getCurrentStack = ReactSharedInternals.getCurrentStack; + return null === getCurrentStack ? null : getCurrentStack(); + }; + exports.cloneElement = function (element, config, children) { + if (null === element || void 0 === element) + throw Error( + "The argument must be a React element, but you passed " + + element + + "." + ); + var props = assign({}, element.props), + key = element.key, + owner = element._owner; + if (null != config) { + var JSCompiler_inline_result; + a: { + if ( + hasOwnProperty.call(config, "ref") && + (JSCompiler_inline_result = Object.getOwnPropertyDescriptor( + config, + "ref" + ).get) && + JSCompiler_inline_result.isReactWarning + ) { + JSCompiler_inline_result = !1; + break a; + } + JSCompiler_inline_result = void 0 !== config.ref; + } + JSCompiler_inline_result && (owner = getOwner()); + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (key = "" + config.key)); + for (propName in config) + !hasOwnProperty.call(config, propName) || + "key" === propName || + "__self" === propName || + "__source" === propName || + ("ref" === propName && void 0 === config.ref) || + (props[propName] = config[propName]); + } + var propName = arguments.length - 2; + if (1 === propName) props.children = children; + else if (1 < propName) { + JSCompiler_inline_result = Array(propName); + for (var i = 0; i < propName; i++) + JSCompiler_inline_result[i] = arguments[i + 2]; + props.children = JSCompiler_inline_result; + } + props = ReactElement( + element.type, + key, + props, + owner, + element._debugStack, + element._debugTask + ); + for (key = 2; key < arguments.length; key++) + validateChildKeys(arguments[key]); + return props; + }; + exports.createContext = function (defaultValue) { + defaultValue = { + $$typeof: REACT_CONTEXT_TYPE, + _currentValue: defaultValue, + _currentValue2: defaultValue, + _threadCount: 0, + Provider: null, + Consumer: null + }; + defaultValue.Provider = defaultValue; + defaultValue.Consumer = { + $$typeof: REACT_CONSUMER_TYPE, + _context: defaultValue + }; + defaultValue._currentRenderer = null; + defaultValue._currentRenderer2 = null; + return defaultValue; + }; + exports.createElement = function (type, config, children) { + for (var i = 2; i < arguments.length; i++) + validateChildKeys(arguments[i]); + i = {}; + var key = null; + if (null != config) + for (propName in (didWarnAboutOldJSXRuntime || + !("__self" in config) || + "key" in config || + ((didWarnAboutOldJSXRuntime = !0), + console.warn( + "Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform" + )), + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (key = "" + config.key)), + config)) + hasOwnProperty.call(config, propName) && + "key" !== propName && + "__self" !== propName && + "__source" !== propName && + (i[propName] = config[propName]); + var childrenLength = arguments.length - 2; + if (1 === childrenLength) i.children = children; + else if (1 < childrenLength) { + for ( + var childArray = Array(childrenLength), _i = 0; + _i < childrenLength; + _i++ + ) + childArray[_i] = arguments[_i + 2]; + Object.freeze && Object.freeze(childArray); + i.children = childArray; + } + if (type && type.defaultProps) + for (propName in ((childrenLength = type.defaultProps), childrenLength)) + void 0 === i[propName] && (i[propName] = childrenLength[propName]); + key && + defineKeyPropWarningGetter( + i, + "function" === typeof type + ? type.displayName || type.name || "Unknown" + : type + ); + var propName = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; + return ReactElement( + type, + key, + i, + getOwner(), + propName ? Error("react-stack-top-frame") : unknownOwnerDebugStack, + propName ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.createRef = function () { + var refObject = { current: null }; + Object.seal(refObject); + return refObject; + }; + exports.forwardRef = function (render) { + null != render && render.$$typeof === REACT_MEMO_TYPE + ? console.error( + "forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))." + ) + : "function" !== typeof render + ? console.error( + "forwardRef requires a render function but was given %s.", + null === render ? "null" : typeof render + ) + : 0 !== render.length && + 2 !== render.length && + console.error( + "forwardRef render functions accept exactly two parameters: props and ref. %s", + 1 === render.length + ? "Did you forget to use the ref parameter?" + : "Any additional parameter will be undefined." + ); + null != render && + null != render.defaultProps && + console.error( + "forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?" + ); + var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, render: render }, + ownName; + Object.defineProperty(elementType, "displayName", { + enumerable: !1, + configurable: !0, + get: function () { + return ownName; + }, + set: function (name) { + ownName = name; + render.name || + render.displayName || + (Object.defineProperty(render, "name", { value: name }), + (render.displayName = name)); + } + }); + return elementType; + }; + exports.isValidElement = isValidElement; + exports.lazy = function (ctor) { + ctor = { _status: -1, _result: ctor }; + var lazyType = { + $$typeof: REACT_LAZY_TYPE, + _payload: ctor, + _init: lazyInitializer + }, + ioInfo = { + name: "lazy", + start: -1, + end: -1, + value: null, + owner: null, + debugStack: Error("react-stack-top-frame"), + debugTask: console.createTask ? console.createTask("lazy()") : null + }; + ctor._ioInfo = ioInfo; + lazyType._debugInfo = [{ awaited: ioInfo }]; + return lazyType; + }; + exports.memo = function (type, compare) { + null == type && + console.error( + "memo: The first argument must be a component. Instead received: %s", + null === type ? "null" : typeof type + ); + compare = { + $$typeof: REACT_MEMO_TYPE, + type: type, + compare: void 0 === compare ? null : compare + }; + var ownName; + Object.defineProperty(compare, "displayName", { + enumerable: !1, + configurable: !0, + get: function () { + return ownName; + }, + set: function (name) { + ownName = name; + type.name || + type.displayName || + (Object.defineProperty(type, "name", { value: name }), + (type.displayName = name)); + } + }); + return compare; + }; + exports.startTransition = function (scope) { + var prevTransition = ReactSharedInternals.T, + currentTransition = {}; + currentTransition._updatedFibers = new Set(); + ReactSharedInternals.T = currentTransition; + try { + var returnValue = scope(), + onStartTransitionFinish = ReactSharedInternals.S; + null !== onStartTransitionFinish && + onStartTransitionFinish(currentTransition, returnValue); + "object" === typeof returnValue && + null !== returnValue && + "function" === typeof returnValue.then && + (ReactSharedInternals.asyncTransitions++, + returnValue.then(releaseAsyncTransition, releaseAsyncTransition), + returnValue.then(noop, reportGlobalError)); + } catch (error) { + reportGlobalError(error); + } finally { + null === prevTransition && + currentTransition._updatedFibers && + ((scope = currentTransition._updatedFibers.size), + currentTransition._updatedFibers.clear(), + 10 < scope && + console.warn( + "Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table." + )), + null !== prevTransition && + null !== currentTransition.types && + (null !== prevTransition.types && + prevTransition.types !== currentTransition.types && + console.error( + "We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React." + ), + (prevTransition.types = currentTransition.types)), + (ReactSharedInternals.T = prevTransition); + } + }; + exports.unstable_useCacheRefresh = function () { + return resolveDispatcher().useCacheRefresh(); + }; + exports.use = function (usable) { + return resolveDispatcher().use(usable); + }; + exports.useActionState = function (action, initialState, permalink) { + return resolveDispatcher().useActionState( + action, + initialState, + permalink + ); + }; + exports.useCallback = function (callback, deps) { + return resolveDispatcher().useCallback(callback, deps); + }; + exports.useContext = function (Context) { + var dispatcher = resolveDispatcher(); + Context.$$typeof === REACT_CONSUMER_TYPE && + console.error( + "Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?" + ); + return dispatcher.useContext(Context); + }; + exports.useDebugValue = function (value, formatterFn) { + return resolveDispatcher().useDebugValue(value, formatterFn); + }; + exports.useDeferredValue = function (value, initialValue) { + return resolveDispatcher().useDeferredValue(value, initialValue); + }; + exports.useEffect = function (create, deps) { + null == create && + console.warn( + "React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?" + ); + return resolveDispatcher().useEffect(create, deps); + }; + exports.useEffectEvent = function (callback) { + return resolveDispatcher().useEffectEvent(callback); + }; + exports.useId = function () { + return resolveDispatcher().useId(); + }; + exports.useImperativeHandle = function (ref, create, deps) { + return resolveDispatcher().useImperativeHandle(ref, create, deps); + }; + exports.useInsertionEffect = function (create, deps) { + null == create && + console.warn( + "React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?" + ); + return resolveDispatcher().useInsertionEffect(create, deps); + }; + exports.useLayoutEffect = function (create, deps) { + null == create && + console.warn( + "React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?" + ); + return resolveDispatcher().useLayoutEffect(create, deps); + }; + exports.useMemo = function (create, deps) { + return resolveDispatcher().useMemo(create, deps); + }; + exports.useOptimistic = function (passthrough, reducer) { + return resolveDispatcher().useOptimistic(passthrough, reducer); + }; + exports.useReducer = function (reducer, initialArg, init) { + return resolveDispatcher().useReducer(reducer, initialArg, init); + }; + exports.useRef = function (initialValue) { + return resolveDispatcher().useRef(initialValue); + }; + exports.useState = function (initialState) { + return resolveDispatcher().useState(initialState); + }; + exports.useSyncExternalStore = function ( + subscribe, + getSnapshot, + getServerSnapshot + ) { + return resolveDispatcher().useSyncExternalStore( + subscribe, + getSnapshot, + getServerSnapshot + ); + }; + exports.useTransition = function () { + return resolveDispatcher().useTransition(); + }; + exports.version = "19.2.8"; + "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && + "function" === + typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && + __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error()); + })(); diff --git a/node_modules/react/cjs/react.production.js b/node_modules/react/cjs/react.production.js new file mode 100644 index 000000000..b54e6906c --- /dev/null +++ b/node_modules/react/cjs/react.production.js @@ -0,0 +1,542 @@ +/** + * @license React + * react.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + MAYBE_ITERATOR_SYMBOL = Symbol.iterator; +function getIteratorFn(maybeIterable) { + if (null === maybeIterable || "object" !== typeof maybeIterable) return null; + maybeIterable = + (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) || + maybeIterable["@@iterator"]; + return "function" === typeof maybeIterable ? maybeIterable : null; +} +var ReactNoopUpdateQueue = { + isMounted: function () { + return !1; + }, + enqueueForceUpdate: function () {}, + enqueueReplaceState: function () {}, + enqueueSetState: function () {} + }, + assign = Object.assign, + emptyObject = {}; +function Component(props, context, updater) { + this.props = props; + this.context = context; + this.refs = emptyObject; + this.updater = updater || ReactNoopUpdateQueue; +} +Component.prototype.isReactComponent = {}; +Component.prototype.setState = function (partialState, callback) { + if ( + "object" !== typeof partialState && + "function" !== typeof partialState && + null != partialState + ) + throw Error( + "takes an object of state variables to update or a function which returns an object of state variables." + ); + this.updater.enqueueSetState(this, partialState, callback, "setState"); +}; +Component.prototype.forceUpdate = function (callback) { + this.updater.enqueueForceUpdate(this, callback, "forceUpdate"); +}; +function ComponentDummy() {} +ComponentDummy.prototype = Component.prototype; +function PureComponent(props, context, updater) { + this.props = props; + this.context = context; + this.refs = emptyObject; + this.updater = updater || ReactNoopUpdateQueue; +} +var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy()); +pureComponentPrototype.constructor = PureComponent; +assign(pureComponentPrototype, Component.prototype); +pureComponentPrototype.isPureReactComponent = !0; +var isArrayImpl = Array.isArray; +function noop() {} +var ReactSharedInternals = { H: null, A: null, T: null, S: null }, + hasOwnProperty = Object.prototype.hasOwnProperty; +function ReactElement(type, key, props) { + var refProp = props.ref; + return { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + ref: void 0 !== refProp ? refProp : null, + props: props + }; +} +function cloneAndReplaceKey(oldElement, newKey) { + return ReactElement(oldElement.type, newKey, oldElement.props); +} +function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); +} +function escape(key) { + var escaperLookup = { "=": "=0", ":": "=2" }; + return ( + "$" + + key.replace(/[=:]/g, function (match) { + return escaperLookup[match]; + }) + ); +} +var userProvidedKeyEscapeRegex = /\/+/g; +function getElementKey(element, index) { + return "object" === typeof element && null !== element && null != element.key + ? escape("" + element.key) + : index.toString(36); +} +function resolveThenable(thenable) { + switch (thenable.status) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + default: + switch ( + ("string" === typeof thenable.status + ? thenable.then(noop, noop) + : ((thenable.status = "pending"), + thenable.then( + function (fulfilledValue) { + "pending" === thenable.status && + ((thenable.status = "fulfilled"), + (thenable.value = fulfilledValue)); + }, + function (error) { + "pending" === thenable.status && + ((thenable.status = "rejected"), (thenable.reason = error)); + } + )), + thenable.status) + ) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + } + } + throw thenable; +} +function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { + var type = typeof children; + if ("undefined" === type || "boolean" === type) children = null; + var invokeCallback = !1; + if (null === children) invokeCallback = !0; + else + switch (type) { + case "bigint": + case "string": + case "number": + invokeCallback = !0; + break; + case "object": + switch (children.$$typeof) { + case REACT_ELEMENT_TYPE: + case REACT_PORTAL_TYPE: + invokeCallback = !0; + break; + case REACT_LAZY_TYPE: + return ( + (invokeCallback = children._init), + mapIntoArray( + invokeCallback(children._payload), + array, + escapedPrefix, + nameSoFar, + callback + ) + ); + } + } + if (invokeCallback) + return ( + (callback = callback(children)), + (invokeCallback = + "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar), + isArrayImpl(callback) + ? ((escapedPrefix = ""), + null != invokeCallback && + (escapedPrefix = + invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), + mapIntoArray(callback, array, escapedPrefix, "", function (c) { + return c; + })) + : null != callback && + (isValidElement(callback) && + (callback = cloneAndReplaceKey( + callback, + escapedPrefix + + (null == callback.key || + (children && children.key === callback.key) + ? "" + : ("" + callback.key).replace( + userProvidedKeyEscapeRegex, + "$&/" + ) + "/") + + invokeCallback + )), + array.push(callback)), + 1 + ); + invokeCallback = 0; + var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":"; + if (isArrayImpl(children)) + for (var i = 0; i < children.length; i++) + (nameSoFar = children[i]), + (type = nextNamePrefix + getElementKey(nameSoFar, i)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if (((i = getIteratorFn(children)), "function" === typeof i)) + for ( + children = i.call(children), i = 0; + !(nameSoFar = children.next()).done; + + ) + (nameSoFar = nameSoFar.value), + (type = nextNamePrefix + getElementKey(nameSoFar, i++)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if ("object" === type) { + if ("function" === typeof children.then) + return mapIntoArray( + resolveThenable(children), + array, + escapedPrefix, + nameSoFar, + callback + ); + array = String(children); + throw Error( + "Objects are not valid as a React child (found: " + + ("[object Object]" === array + ? "object with keys {" + Object.keys(children).join(", ") + "}" + : array) + + "). If you meant to render a collection of children, use an array instead." + ); + } + return invokeCallback; +} +function mapChildren(children, func, context) { + if (null == children) return children; + var result = [], + count = 0; + mapIntoArray(children, result, "", "", function (child) { + return func.call(context, child, count++); + }); + return result; +} +function lazyInitializer(payload) { + if (-1 === payload._status) { + var ctor = payload._result; + ctor = ctor(); + ctor.then( + function (moduleObject) { + if (0 === payload._status || -1 === payload._status) + (payload._status = 1), (payload._result = moduleObject); + }, + function (error) { + if (0 === payload._status || -1 === payload._status) + (payload._status = 2), (payload._result = error); + } + ); + -1 === payload._status && ((payload._status = 0), (payload._result = ctor)); + } + if (1 === payload._status) return payload._result.default; + throw payload._result; +} +var reportGlobalError = + "function" === typeof reportError + ? reportError + : function (error) { + if ( + "object" === typeof window && + "function" === typeof window.ErrorEvent + ) { + var event = new window.ErrorEvent("error", { + bubbles: !0, + cancelable: !0, + message: + "object" === typeof error && + null !== error && + "string" === typeof error.message + ? String(error.message) + : String(error), + error: error + }); + if (!window.dispatchEvent(event)) return; + } else if ( + "object" === typeof process && + "function" === typeof process.emit + ) { + process.emit("uncaughtException", error); + return; + } + console.error(error); + }, + Children = { + map: mapChildren, + forEach: function (children, forEachFunc, forEachContext) { + mapChildren( + children, + function () { + forEachFunc.apply(this, arguments); + }, + forEachContext + ); + }, + count: function (children) { + var n = 0; + mapChildren(children, function () { + n++; + }); + return n; + }, + toArray: function (children) { + return ( + mapChildren(children, function (child) { + return child; + }) || [] + ); + }, + only: function (children) { + if (!isValidElement(children)) + throw Error( + "React.Children.only expected to receive a single React element child." + ); + return children; + } + }; +exports.Activity = REACT_ACTIVITY_TYPE; +exports.Children = Children; +exports.Component = Component; +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.Profiler = REACT_PROFILER_TYPE; +exports.PureComponent = PureComponent; +exports.StrictMode = REACT_STRICT_MODE_TYPE; +exports.Suspense = REACT_SUSPENSE_TYPE; +exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = + ReactSharedInternals; +exports.__COMPILER_RUNTIME = { + __proto__: null, + c: function (size) { + return ReactSharedInternals.H.useMemoCache(size); + } +}; +exports.cache = function (fn) { + return function () { + return fn.apply(null, arguments); + }; +}; +exports.cacheSignal = function () { + return null; +}; +exports.cloneElement = function (element, config, children) { + if (null === element || void 0 === element) + throw Error( + "The argument must be a React element, but you passed " + element + "." + ); + var props = assign({}, element.props), + key = element.key; + if (null != config) + for (propName in (void 0 !== config.key && (key = "" + config.key), config)) + !hasOwnProperty.call(config, propName) || + "key" === propName || + "__self" === propName || + "__source" === propName || + ("ref" === propName && void 0 === config.ref) || + (props[propName] = config[propName]); + var propName = arguments.length - 2; + if (1 === propName) props.children = children; + else if (1 < propName) { + for (var childArray = Array(propName), i = 0; i < propName; i++) + childArray[i] = arguments[i + 2]; + props.children = childArray; + } + return ReactElement(element.type, key, props); +}; +exports.createContext = function (defaultValue) { + defaultValue = { + $$typeof: REACT_CONTEXT_TYPE, + _currentValue: defaultValue, + _currentValue2: defaultValue, + _threadCount: 0, + Provider: null, + Consumer: null + }; + defaultValue.Provider = defaultValue; + defaultValue.Consumer = { + $$typeof: REACT_CONSUMER_TYPE, + _context: defaultValue + }; + return defaultValue; +}; +exports.createElement = function (type, config, children) { + var propName, + props = {}, + key = null; + if (null != config) + for (propName in (void 0 !== config.key && (key = "" + config.key), config)) + hasOwnProperty.call(config, propName) && + "key" !== propName && + "__self" !== propName && + "__source" !== propName && + (props[propName] = config[propName]); + var childrenLength = arguments.length - 2; + if (1 === childrenLength) props.children = children; + else if (1 < childrenLength) { + for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++) + childArray[i] = arguments[i + 2]; + props.children = childArray; + } + if (type && type.defaultProps) + for (propName in ((childrenLength = type.defaultProps), childrenLength)) + void 0 === props[propName] && + (props[propName] = childrenLength[propName]); + return ReactElement(type, key, props); +}; +exports.createRef = function () { + return { current: null }; +}; +exports.forwardRef = function (render) { + return { $$typeof: REACT_FORWARD_REF_TYPE, render: render }; +}; +exports.isValidElement = isValidElement; +exports.lazy = function (ctor) { + return { + $$typeof: REACT_LAZY_TYPE, + _payload: { _status: -1, _result: ctor }, + _init: lazyInitializer + }; +}; +exports.memo = function (type, compare) { + return { + $$typeof: REACT_MEMO_TYPE, + type: type, + compare: void 0 === compare ? null : compare + }; +}; +exports.startTransition = function (scope) { + var prevTransition = ReactSharedInternals.T, + currentTransition = {}; + ReactSharedInternals.T = currentTransition; + try { + var returnValue = scope(), + onStartTransitionFinish = ReactSharedInternals.S; + null !== onStartTransitionFinish && + onStartTransitionFinish(currentTransition, returnValue); + "object" === typeof returnValue && + null !== returnValue && + "function" === typeof returnValue.then && + returnValue.then(noop, reportGlobalError); + } catch (error) { + reportGlobalError(error); + } finally { + null !== prevTransition && + null !== currentTransition.types && + (prevTransition.types = currentTransition.types), + (ReactSharedInternals.T = prevTransition); + } +}; +exports.unstable_useCacheRefresh = function () { + return ReactSharedInternals.H.useCacheRefresh(); +}; +exports.use = function (usable) { + return ReactSharedInternals.H.use(usable); +}; +exports.useActionState = function (action, initialState, permalink) { + return ReactSharedInternals.H.useActionState(action, initialState, permalink); +}; +exports.useCallback = function (callback, deps) { + return ReactSharedInternals.H.useCallback(callback, deps); +}; +exports.useContext = function (Context) { + return ReactSharedInternals.H.useContext(Context); +}; +exports.useDebugValue = function () {}; +exports.useDeferredValue = function (value, initialValue) { + return ReactSharedInternals.H.useDeferredValue(value, initialValue); +}; +exports.useEffect = function (create, deps) { + return ReactSharedInternals.H.useEffect(create, deps); +}; +exports.useEffectEvent = function (callback) { + return ReactSharedInternals.H.useEffectEvent(callback); +}; +exports.useId = function () { + return ReactSharedInternals.H.useId(); +}; +exports.useImperativeHandle = function (ref, create, deps) { + return ReactSharedInternals.H.useImperativeHandle(ref, create, deps); +}; +exports.useInsertionEffect = function (create, deps) { + return ReactSharedInternals.H.useInsertionEffect(create, deps); +}; +exports.useLayoutEffect = function (create, deps) { + return ReactSharedInternals.H.useLayoutEffect(create, deps); +}; +exports.useMemo = function (create, deps) { + return ReactSharedInternals.H.useMemo(create, deps); +}; +exports.useOptimistic = function (passthrough, reducer) { + return ReactSharedInternals.H.useOptimistic(passthrough, reducer); +}; +exports.useReducer = function (reducer, initialArg, init) { + return ReactSharedInternals.H.useReducer(reducer, initialArg, init); +}; +exports.useRef = function (initialValue) { + return ReactSharedInternals.H.useRef(initialValue); +}; +exports.useState = function (initialState) { + return ReactSharedInternals.H.useState(initialState); +}; +exports.useSyncExternalStore = function ( + subscribe, + getSnapshot, + getServerSnapshot +) { + return ReactSharedInternals.H.useSyncExternalStore( + subscribe, + getSnapshot, + getServerSnapshot + ); +}; +exports.useTransition = function () { + return ReactSharedInternals.H.useTransition(); +}; +exports.version = "19.2.8"; diff --git a/node_modules/react/cjs/react.react-server.development.js b/node_modules/react/cjs/react.react-server.development.js new file mode 100644 index 000000000..8978eb434 --- /dev/null +++ b/node_modules/react/cjs/react.react-server.development.js @@ -0,0 +1,848 @@ +/** + * @license React + * react.react-server.development.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +"production" !== process.env.NODE_ENV && + (function () { + function noop() {} + function getIteratorFn(maybeIterable) { + if (null === maybeIterable || "object" !== typeof maybeIterable) + return null; + maybeIterable = + (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) || + maybeIterable["@@iterator"]; + return "function" === typeof maybeIterable ? maybeIterable : null; + } + function testStringCoercion(value) { + return "" + value; + } + function checkKeyStringCoercion(value) { + try { + testStringCoercion(value); + var JSCompiler_inline_result = !1; + } catch (e) { + JSCompiler_inline_result = !0; + } + if (JSCompiler_inline_result) { + JSCompiler_inline_result = console; + var JSCompiler_temp_const = JSCompiler_inline_result.error; + var JSCompiler_inline_result$jscomp$0 = + ("function" === typeof Symbol && + Symbol.toStringTag && + value[Symbol.toStringTag]) || + value.constructor.name || + "Object"; + JSCompiler_temp_const.call( + JSCompiler_inline_result, + "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", + JSCompiler_inline_result$jscomp$0 + ); + return testStringCoercion(value); + } + } + function getComponentNameFromType(type) { + if (null == type) return null; + if ("function" === typeof type) + return type.$$typeof === REACT_CLIENT_REFERENCE + ? null + : type.displayName || type.name || null; + if ("string" === typeof type) return type; + switch (type) { + case REACT_FRAGMENT_TYPE: + return "Fragment"; + case REACT_PROFILER_TYPE: + return "Profiler"; + case REACT_STRICT_MODE_TYPE: + return "StrictMode"; + case REACT_SUSPENSE_TYPE: + return "Suspense"; + case REACT_SUSPENSE_LIST_TYPE: + return "SuspenseList"; + case REACT_ACTIVITY_TYPE: + return "Activity"; + } + if ("object" === typeof type) + switch ( + ("number" === typeof type.tag && + console.error( + "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue." + ), + type.$$typeof) + ) { + case REACT_PORTAL_TYPE: + return "Portal"; + case REACT_CONTEXT_TYPE: + return type.displayName || "Context"; + case REACT_CONSUMER_TYPE: + return (type._context.displayName || "Context") + ".Consumer"; + case REACT_FORWARD_REF_TYPE: + var innerType = type.render; + type = type.displayName; + type || + ((type = innerType.displayName || innerType.name || ""), + (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef")); + return type; + case REACT_MEMO_TYPE: + return ( + (innerType = type.displayName || null), + null !== innerType + ? innerType + : getComponentNameFromType(type.type) || "Memo" + ); + case REACT_LAZY_TYPE: + innerType = type._payload; + type = type._init; + try { + return getComponentNameFromType(type(innerType)); + } catch (x) {} + } + return null; + } + function getTaskName(type) { + if (type === REACT_FRAGMENT_TYPE) return "<>"; + if ( + "object" === typeof type && + null !== type && + type.$$typeof === REACT_LAZY_TYPE + ) + return "<...>"; + try { + var name = getComponentNameFromType(type); + return name ? "<" + name + ">" : "<...>"; + } catch (x) { + return "<...>"; + } + } + function getOwner() { + var dispatcher = ReactSharedInternals.A; + return null === dispatcher ? null : dispatcher.getOwner(); + } + function UnknownOwner() { + return Error("react-stack-top-frame"); + } + function hasValidKey(config) { + if (hasOwnProperty.call(config, "key")) { + var getter = Object.getOwnPropertyDescriptor(config, "key").get; + if (getter && getter.isReactWarning) return !1; + } + return void 0 !== config.key; + } + function defineKeyPropWarningGetter(props, displayName) { + function warnAboutAccessingKey() { + specialPropKeyWarningShown || + ((specialPropKeyWarningShown = !0), + console.error( + "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", + displayName + )); + } + warnAboutAccessingKey.isReactWarning = !0; + Object.defineProperty(props, "key", { + get: warnAboutAccessingKey, + configurable: !0 + }); + } + function elementRefGetterWithDeprecationWarning() { + var componentName = getComponentNameFromType(this.type); + didWarnAboutElementRef[componentName] || + ((didWarnAboutElementRef[componentName] = !0), + console.error( + "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release." + )); + componentName = this.props.ref; + return void 0 !== componentName ? componentName : null; + } + function ReactElement(type, key, props, owner, debugStack, debugTask) { + var refProp = props.ref; + type = { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + props: props, + _owner: owner + }; + null !== (void 0 !== refProp ? refProp : null) + ? Object.defineProperty(type, "ref", { + enumerable: !1, + get: elementRefGetterWithDeprecationWarning + }) + : Object.defineProperty(type, "ref", { enumerable: !1, value: null }); + type._store = {}; + Object.defineProperty(type._store, "validated", { + configurable: !1, + enumerable: !1, + writable: !0, + value: 0 + }); + Object.defineProperty(type, "_debugInfo", { + configurable: !1, + enumerable: !1, + writable: !0, + value: null + }); + Object.defineProperty(type, "_debugStack", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugStack + }); + Object.defineProperty(type, "_debugTask", { + configurable: !1, + enumerable: !1, + writable: !0, + value: debugTask + }); + Object.freeze && (Object.freeze(type.props), Object.freeze(type)); + return type; + } + function cloneAndReplaceKey(oldElement, newKey) { + newKey = ReactElement( + oldElement.type, + newKey, + oldElement.props, + oldElement._owner, + oldElement._debugStack, + oldElement._debugTask + ); + oldElement._store && + (newKey._store.validated = oldElement._store.validated); + return newKey; + } + function validateChildKeys(node) { + isValidElement(node) + ? node._store && (node._store.validated = 1) + : "object" === typeof node && + null !== node && + node.$$typeof === REACT_LAZY_TYPE && + ("fulfilled" === node._payload.status + ? isValidElement(node._payload.value) && + node._payload.value._store && + (node._payload.value._store.validated = 1) + : node._store && (node._store.validated = 1)); + } + function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); + } + function escape(key) { + var escaperLookup = { "=": "=0", ":": "=2" }; + return ( + "$" + + key.replace(/[=:]/g, function (match) { + return escaperLookup[match]; + }) + ); + } + function getElementKey(element, index) { + return "object" === typeof element && + null !== element && + null != element.key + ? (checkKeyStringCoercion(element.key), escape("" + element.key)) + : index.toString(36); + } + function resolveThenable(thenable) { + switch (thenable.status) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + default: + switch ( + ("string" === typeof thenable.status + ? thenable.then(noop, noop) + : ((thenable.status = "pending"), + thenable.then( + function (fulfilledValue) { + "pending" === thenable.status && + ((thenable.status = "fulfilled"), + (thenable.value = fulfilledValue)); + }, + function (error) { + "pending" === thenable.status && + ((thenable.status = "rejected"), + (thenable.reason = error)); + } + )), + thenable.status) + ) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + } + } + throw thenable; + } + function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { + var type = typeof children; + if ("undefined" === type || "boolean" === type) children = null; + var invokeCallback = !1; + if (null === children) invokeCallback = !0; + else + switch (type) { + case "bigint": + case "string": + case "number": + invokeCallback = !0; + break; + case "object": + switch (children.$$typeof) { + case REACT_ELEMENT_TYPE: + case REACT_PORTAL_TYPE: + invokeCallback = !0; + break; + case REACT_LAZY_TYPE: + return ( + (invokeCallback = children._init), + mapIntoArray( + invokeCallback(children._payload), + array, + escapedPrefix, + nameSoFar, + callback + ) + ); + } + } + if (invokeCallback) { + invokeCallback = children; + callback = callback(invokeCallback); + var childKey = + "" === nameSoFar ? "." + getElementKey(invokeCallback, 0) : nameSoFar; + isArrayImpl(callback) + ? ((escapedPrefix = ""), + null != childKey && + (escapedPrefix = + childKey.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), + mapIntoArray(callback, array, escapedPrefix, "", function (c) { + return c; + })) + : null != callback && + (isValidElement(callback) && + (null != callback.key && + ((invokeCallback && invokeCallback.key === callback.key) || + checkKeyStringCoercion(callback.key)), + (escapedPrefix = cloneAndReplaceKey( + callback, + escapedPrefix + + (null == callback.key || + (invokeCallback && invokeCallback.key === callback.key) + ? "" + : ("" + callback.key).replace( + userProvidedKeyEscapeRegex, + "$&/" + ) + "/") + + childKey + )), + "" !== nameSoFar && + null != invokeCallback && + isValidElement(invokeCallback) && + null == invokeCallback.key && + invokeCallback._store && + !invokeCallback._store.validated && + (escapedPrefix._store.validated = 2), + (callback = escapedPrefix)), + array.push(callback)); + return 1; + } + invokeCallback = 0; + childKey = "" === nameSoFar ? "." : nameSoFar + ":"; + if (isArrayImpl(children)) + for (var i = 0; i < children.length; i++) + (nameSoFar = children[i]), + (type = childKey + getElementKey(nameSoFar, i)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if (((i = getIteratorFn(children)), "function" === typeof i)) + for ( + i === children.entries && + (didWarnAboutMaps || + console.warn( + "Using Maps as children is not supported. Use an array of keyed ReactElements instead." + ), + (didWarnAboutMaps = !0)), + children = i.call(children), + i = 0; + !(nameSoFar = children.next()).done; + + ) + (nameSoFar = nameSoFar.value), + (type = childKey + getElementKey(nameSoFar, i++)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if ("object" === type) { + if ("function" === typeof children.then) + return mapIntoArray( + resolveThenable(children), + array, + escapedPrefix, + nameSoFar, + callback + ); + array = String(children); + throw Error( + "Objects are not valid as a React child (found: " + + ("[object Object]" === array + ? "object with keys {" + Object.keys(children).join(", ") + "}" + : array) + + "). If you meant to render a collection of children, use an array instead." + ); + } + return invokeCallback; + } + function mapChildren(children, func, context) { + if (null == children) return children; + var result = [], + count = 0; + mapIntoArray(children, result, "", "", function (child) { + return func.call(context, child, count++); + }); + return result; + } + function resolveDispatcher() { + var dispatcher = ReactSharedInternals.H; + null === dispatcher && + console.error( + "Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem." + ); + return dispatcher; + } + function lazyInitializer(payload) { + if (-1 === payload._status) { + var ioInfo = payload._ioInfo; + null != ioInfo && (ioInfo.start = ioInfo.end = performance.now()); + ioInfo = payload._result; + var thenable = ioInfo(); + thenable.then( + function (moduleObject) { + if (0 === payload._status || -1 === payload._status) { + payload._status = 1; + payload._result = moduleObject; + var _ioInfo = payload._ioInfo; + null != _ioInfo && (_ioInfo.end = performance.now()); + void 0 === thenable.status && + ((thenable.status = "fulfilled"), + (thenable.value = moduleObject)); + } + }, + function (error) { + if (0 === payload._status || -1 === payload._status) { + payload._status = 2; + payload._result = error; + var _ioInfo2 = payload._ioInfo; + null != _ioInfo2 && (_ioInfo2.end = performance.now()); + void 0 === thenable.status && + ((thenable.status = "rejected"), (thenable.reason = error)); + } + } + ); + ioInfo = payload._ioInfo; + if (null != ioInfo) { + ioInfo.value = thenable; + var displayName = thenable.displayName; + "string" === typeof displayName && (ioInfo.name = displayName); + } + -1 === payload._status && + ((payload._status = 0), (payload._result = thenable)); + } + if (1 === payload._status) + return ( + (ioInfo = payload._result), + void 0 === ioInfo && + console.error( + "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", + ioInfo + ), + "default" in ioInfo || + console.error( + "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", + ioInfo + ), + ioInfo.default + ); + throw payload._result; + } + function createCacheRoot() { + return new WeakMap(); + } + function createCacheNode() { + return { s: 0, v: void 0, o: null, p: null }; + } + var ReactSharedInternals = { + H: null, + A: null, + getCurrentStack: null, + recentlyCreatedOwnerStacks: 0 + }, + isArrayImpl = Array.isArray, + REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), + REACT_CONTEXT_TYPE = Symbol.for("react.context"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), + MAYBE_ITERATOR_SYMBOL = Symbol.iterator, + REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), + hasOwnProperty = Object.prototype.hasOwnProperty, + assign = Object.assign, + createTask = console.createTask + ? console.createTask + : function () { + return null; + }, + createFakeCallStack = { + react_stack_bottom_frame: function (callStackForError) { + return callStackForError(); + } + }, + specialPropKeyWarningShown, + didWarnAboutOldJSXRuntime; + var didWarnAboutElementRef = {}; + var unknownOwnerDebugStack = + createFakeCallStack.react_stack_bottom_frame.bind( + createFakeCallStack, + UnknownOwner + )(); + var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); + var didWarnAboutMaps = !1, + userProvidedKeyEscapeRegex = /\/+/g; + exports.Children = { + map: mapChildren, + forEach: function (children, forEachFunc, forEachContext) { + mapChildren( + children, + function () { + forEachFunc.apply(this, arguments); + }, + forEachContext + ); + }, + count: function (children) { + var n = 0; + mapChildren(children, function () { + n++; + }); + return n; + }, + toArray: function (children) { + return ( + mapChildren(children, function (child) { + return child; + }) || [] + ); + }, + only: function (children) { + if (!isValidElement(children)) + throw Error( + "React.Children.only expected to receive a single React element child." + ); + return children; + } + }; + exports.Fragment = REACT_FRAGMENT_TYPE; + exports.Profiler = REACT_PROFILER_TYPE; + exports.StrictMode = REACT_STRICT_MODE_TYPE; + exports.Suspense = REACT_SUSPENSE_TYPE; + exports.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = + ReactSharedInternals; + exports.cache = function (fn) { + return function () { + var dispatcher = ReactSharedInternals.A; + if (!dispatcher) return fn.apply(null, arguments); + var fnMap = dispatcher.getCacheForType(createCacheRoot); + dispatcher = fnMap.get(fn); + void 0 === dispatcher && + ((dispatcher = createCacheNode()), fnMap.set(fn, dispatcher)); + fnMap = 0; + for (var l = arguments.length; fnMap < l; fnMap++) { + var arg = arguments[fnMap]; + if ( + "function" === typeof arg || + ("object" === typeof arg && null !== arg) + ) { + var objectCache = dispatcher.o; + null === objectCache && + (dispatcher.o = objectCache = new WeakMap()); + dispatcher = objectCache.get(arg); + void 0 === dispatcher && + ((dispatcher = createCacheNode()), + objectCache.set(arg, dispatcher)); + } else + (objectCache = dispatcher.p), + null === objectCache && (dispatcher.p = objectCache = new Map()), + (dispatcher = objectCache.get(arg)), + void 0 === dispatcher && + ((dispatcher = createCacheNode()), + objectCache.set(arg, dispatcher)); + } + if (1 === dispatcher.s) return dispatcher.v; + if (2 === dispatcher.s) throw dispatcher.v; + try { + var result = fn.apply(null, arguments); + fnMap = dispatcher; + fnMap.s = 1; + return (fnMap.v = result); + } catch (error) { + throw ( + ((result = dispatcher), (result.s = 2), (result.v = error), error) + ); + } + }; + }; + exports.cacheSignal = function () { + var dispatcher = ReactSharedInternals.A; + return dispatcher ? dispatcher.cacheSignal() : null; + }; + exports.captureOwnerStack = function () { + var getCurrentStack = ReactSharedInternals.getCurrentStack; + return null === getCurrentStack ? null : getCurrentStack(); + }; + exports.cloneElement = function (element, config, children) { + if (null === element || void 0 === element) + throw Error( + "The argument must be a React element, but you passed " + + element + + "." + ); + var props = assign({}, element.props), + key = element.key, + owner = element._owner; + if (null != config) { + var JSCompiler_inline_result; + a: { + if ( + hasOwnProperty.call(config, "ref") && + (JSCompiler_inline_result = Object.getOwnPropertyDescriptor( + config, + "ref" + ).get) && + JSCompiler_inline_result.isReactWarning + ) { + JSCompiler_inline_result = !1; + break a; + } + JSCompiler_inline_result = void 0 !== config.ref; + } + JSCompiler_inline_result && (owner = getOwner()); + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (key = "" + config.key)); + for (propName in config) + !hasOwnProperty.call(config, propName) || + "key" === propName || + "__self" === propName || + "__source" === propName || + ("ref" === propName && void 0 === config.ref) || + (props[propName] = config[propName]); + } + var propName = arguments.length - 2; + if (1 === propName) props.children = children; + else if (1 < propName) { + JSCompiler_inline_result = Array(propName); + for (var i = 0; i < propName; i++) + JSCompiler_inline_result[i] = arguments[i + 2]; + props.children = JSCompiler_inline_result; + } + props = ReactElement( + element.type, + key, + props, + owner, + element._debugStack, + element._debugTask + ); + for (key = 2; key < arguments.length; key++) + validateChildKeys(arguments[key]); + return props; + }; + exports.createElement = function (type, config, children) { + for (var i = 2; i < arguments.length; i++) + validateChildKeys(arguments[i]); + i = {}; + var key = null; + if (null != config) + for (propName in (didWarnAboutOldJSXRuntime || + !("__self" in config) || + "key" in config || + ((didWarnAboutOldJSXRuntime = !0), + console.warn( + "Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform" + )), + hasValidKey(config) && + (checkKeyStringCoercion(config.key), (key = "" + config.key)), + config)) + hasOwnProperty.call(config, propName) && + "key" !== propName && + "__self" !== propName && + "__source" !== propName && + (i[propName] = config[propName]); + var childrenLength = arguments.length - 2; + if (1 === childrenLength) i.children = children; + else if (1 < childrenLength) { + for ( + var childArray = Array(childrenLength), _i = 0; + _i < childrenLength; + _i++ + ) + childArray[_i] = arguments[_i + 2]; + Object.freeze && Object.freeze(childArray); + i.children = childArray; + } + if (type && type.defaultProps) + for (propName in ((childrenLength = type.defaultProps), childrenLength)) + void 0 === i[propName] && (i[propName] = childrenLength[propName]); + key && + defineKeyPropWarningGetter( + i, + "function" === typeof type + ? type.displayName || type.name || "Unknown" + : type + ); + var propName = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; + return ReactElement( + type, + key, + i, + getOwner(), + propName ? Error("react-stack-top-frame") : unknownOwnerDebugStack, + propName ? createTask(getTaskName(type)) : unknownOwnerDebugTask + ); + }; + exports.createRef = function () { + var refObject = { current: null }; + Object.seal(refObject); + return refObject; + }; + exports.forwardRef = function (render) { + null != render && render.$$typeof === REACT_MEMO_TYPE + ? console.error( + "forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))." + ) + : "function" !== typeof render + ? console.error( + "forwardRef requires a render function but was given %s.", + null === render ? "null" : typeof render + ) + : 0 !== render.length && + 2 !== render.length && + console.error( + "forwardRef render functions accept exactly two parameters: props and ref. %s", + 1 === render.length + ? "Did you forget to use the ref parameter?" + : "Any additional parameter will be undefined." + ); + null != render && + null != render.defaultProps && + console.error( + "forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?" + ); + var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, render: render }, + ownName; + Object.defineProperty(elementType, "displayName", { + enumerable: !1, + configurable: !0, + get: function () { + return ownName; + }, + set: function (name) { + ownName = name; + render.name || + render.displayName || + (Object.defineProperty(render, "name", { value: name }), + (render.displayName = name)); + } + }); + return elementType; + }; + exports.isValidElement = isValidElement; + exports.lazy = function (ctor) { + ctor = { _status: -1, _result: ctor }; + var lazyType = { + $$typeof: REACT_LAZY_TYPE, + _payload: ctor, + _init: lazyInitializer + }, + ioInfo = { + name: "lazy", + start: -1, + end: -1, + value: null, + owner: null, + debugStack: Error("react-stack-top-frame"), + debugTask: console.createTask ? console.createTask("lazy()") : null + }; + ctor._ioInfo = ioInfo; + lazyType._debugInfo = [{ awaited: ioInfo }]; + return lazyType; + }; + exports.memo = function (type, compare) { + null == type && + console.error( + "memo: The first argument must be a component. Instead received: %s", + null === type ? "null" : typeof type + ); + compare = { + $$typeof: REACT_MEMO_TYPE, + type: type, + compare: void 0 === compare ? null : compare + }; + var ownName; + Object.defineProperty(compare, "displayName", { + enumerable: !1, + configurable: !0, + get: function () { + return ownName; + }, + set: function (name) { + ownName = name; + type.name || + type.displayName || + (Object.defineProperty(type, "name", { value: name }), + (type.displayName = name)); + } + }); + return compare; + }; + exports.use = function (usable) { + return resolveDispatcher().use(usable); + }; + exports.useCallback = function (callback, deps) { + return resolveDispatcher().useCallback(callback, deps); + }; + exports.useDebugValue = function (value, formatterFn) { + return resolveDispatcher().useDebugValue(value, formatterFn); + }; + exports.useId = function () { + return resolveDispatcher().useId(); + }; + exports.useMemo = function (create, deps) { + return resolveDispatcher().useMemo(create, deps); + }; + exports.version = "19.2.8"; + })(); diff --git a/node_modules/react/cjs/react.react-server.production.js b/node_modules/react/cjs/react.react-server.production.js new file mode 100644 index 000000000..f3ed43f73 --- /dev/null +++ b/node_modules/react/cjs/react.react-server.production.js @@ -0,0 +1,423 @@ +/** + * @license React + * react.react-server.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +"use strict"; +var ReactSharedInternals = { H: null, A: null }; +function formatProdErrorMessage(code) { + var url = "https://react.dev/errors/" + code; + if (1 < arguments.length) { + url += "?args[]=" + encodeURIComponent(arguments[1]); + for (var i = 2; i < arguments.length; i++) + url += "&args[]=" + encodeURIComponent(arguments[i]); + } + return ( + "Minified React error #" + + code + + "; visit " + + url + + " for the full message or use the non-minified dev environment for full errors and additional helpful warnings." + ); +} +var isArrayImpl = Array.isArray; +function noop() {} +var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), + REACT_PORTAL_TYPE = Symbol.for("react.portal"), + REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), + REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), + REACT_PROFILER_TYPE = Symbol.for("react.profiler"), + REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), + REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), + REACT_MEMO_TYPE = Symbol.for("react.memo"), + REACT_LAZY_TYPE = Symbol.for("react.lazy"), + MAYBE_ITERATOR_SYMBOL = Symbol.iterator; +function getIteratorFn(maybeIterable) { + if (null === maybeIterable || "object" !== typeof maybeIterable) return null; + maybeIterable = + (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) || + maybeIterable["@@iterator"]; + return "function" === typeof maybeIterable ? maybeIterable : null; +} +var hasOwnProperty = Object.prototype.hasOwnProperty, + assign = Object.assign; +function ReactElement(type, key, props) { + var refProp = props.ref; + return { + $$typeof: REACT_ELEMENT_TYPE, + type: type, + key: key, + ref: void 0 !== refProp ? refProp : null, + props: props + }; +} +function cloneAndReplaceKey(oldElement, newKey) { + return ReactElement(oldElement.type, newKey, oldElement.props); +} +function isValidElement(object) { + return ( + "object" === typeof object && + null !== object && + object.$$typeof === REACT_ELEMENT_TYPE + ); +} +function escape(key) { + var escaperLookup = { "=": "=0", ":": "=2" }; + return ( + "$" + + key.replace(/[=:]/g, function (match) { + return escaperLookup[match]; + }) + ); +} +var userProvidedKeyEscapeRegex = /\/+/g; +function getElementKey(element, index) { + return "object" === typeof element && null !== element && null != element.key + ? escape("" + element.key) + : index.toString(36); +} +function resolveThenable(thenable) { + switch (thenable.status) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + default: + switch ( + ("string" === typeof thenable.status + ? thenable.then(noop, noop) + : ((thenable.status = "pending"), + thenable.then( + function (fulfilledValue) { + "pending" === thenable.status && + ((thenable.status = "fulfilled"), + (thenable.value = fulfilledValue)); + }, + function (error) { + "pending" === thenable.status && + ((thenable.status = "rejected"), (thenable.reason = error)); + } + )), + thenable.status) + ) { + case "fulfilled": + return thenable.value; + case "rejected": + throw thenable.reason; + } + } + throw thenable; +} +function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { + var type = typeof children; + if ("undefined" === type || "boolean" === type) children = null; + var invokeCallback = !1; + if (null === children) invokeCallback = !0; + else + switch (type) { + case "bigint": + case "string": + case "number": + invokeCallback = !0; + break; + case "object": + switch (children.$$typeof) { + case REACT_ELEMENT_TYPE: + case REACT_PORTAL_TYPE: + invokeCallback = !0; + break; + case REACT_LAZY_TYPE: + return ( + (invokeCallback = children._init), + mapIntoArray( + invokeCallback(children._payload), + array, + escapedPrefix, + nameSoFar, + callback + ) + ); + } + } + if (invokeCallback) + return ( + (callback = callback(children)), + (invokeCallback = + "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar), + isArrayImpl(callback) + ? ((escapedPrefix = ""), + null != invokeCallback && + (escapedPrefix = + invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), + mapIntoArray(callback, array, escapedPrefix, "", function (c) { + return c; + })) + : null != callback && + (isValidElement(callback) && + (callback = cloneAndReplaceKey( + callback, + escapedPrefix + + (null == callback.key || + (children && children.key === callback.key) + ? "" + : ("" + callback.key).replace( + userProvidedKeyEscapeRegex, + "$&/" + ) + "/") + + invokeCallback + )), + array.push(callback)), + 1 + ); + invokeCallback = 0; + var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":"; + if (isArrayImpl(children)) + for (var i = 0; i < children.length; i++) + (nameSoFar = children[i]), + (type = nextNamePrefix + getElementKey(nameSoFar, i)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if (((i = getIteratorFn(children)), "function" === typeof i)) + for ( + children = i.call(children), i = 0; + !(nameSoFar = children.next()).done; + + ) + (nameSoFar = nameSoFar.value), + (type = nextNamePrefix + getElementKey(nameSoFar, i++)), + (invokeCallback += mapIntoArray( + nameSoFar, + array, + escapedPrefix, + type, + callback + )); + else if ("object" === type) { + if ("function" === typeof children.then) + return mapIntoArray( + resolveThenable(children), + array, + escapedPrefix, + nameSoFar, + callback + ); + array = String(children); + throw Error( + formatProdErrorMessage( + 31, + "[object Object]" === array + ? "object with keys {" + Object.keys(children).join(", ") + "}" + : array + ) + ); + } + return invokeCallback; +} +function mapChildren(children, func, context) { + if (null == children) return children; + var result = [], + count = 0; + mapIntoArray(children, result, "", "", function (child) { + return func.call(context, child, count++); + }); + return result; +} +function lazyInitializer(payload) { + if (-1 === payload._status) { + var ctor = payload._result; + ctor = ctor(); + ctor.then( + function (moduleObject) { + if (0 === payload._status || -1 === payload._status) + (payload._status = 1), (payload._result = moduleObject); + }, + function (error) { + if (0 === payload._status || -1 === payload._status) + (payload._status = 2), (payload._result = error); + } + ); + -1 === payload._status && ((payload._status = 0), (payload._result = ctor)); + } + if (1 === payload._status) return payload._result.default; + throw payload._result; +} +function createCacheRoot() { + return new WeakMap(); +} +function createCacheNode() { + return { s: 0, v: void 0, o: null, p: null }; +} +exports.Children = { + map: mapChildren, + forEach: function (children, forEachFunc, forEachContext) { + mapChildren( + children, + function () { + forEachFunc.apply(this, arguments); + }, + forEachContext + ); + }, + count: function (children) { + var n = 0; + mapChildren(children, function () { + n++; + }); + return n; + }, + toArray: function (children) { + return ( + mapChildren(children, function (child) { + return child; + }) || [] + ); + }, + only: function (children) { + if (!isValidElement(children)) throw Error(formatProdErrorMessage(143)); + return children; + } +}; +exports.Fragment = REACT_FRAGMENT_TYPE; +exports.Profiler = REACT_PROFILER_TYPE; +exports.StrictMode = REACT_STRICT_MODE_TYPE; +exports.Suspense = REACT_SUSPENSE_TYPE; +exports.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = + ReactSharedInternals; +exports.cache = function (fn) { + return function () { + var dispatcher = ReactSharedInternals.A; + if (!dispatcher) return fn.apply(null, arguments); + var fnMap = dispatcher.getCacheForType(createCacheRoot); + dispatcher = fnMap.get(fn); + void 0 === dispatcher && + ((dispatcher = createCacheNode()), fnMap.set(fn, dispatcher)); + fnMap = 0; + for (var l = arguments.length; fnMap < l; fnMap++) { + var arg = arguments[fnMap]; + if ( + "function" === typeof arg || + ("object" === typeof arg && null !== arg) + ) { + var objectCache = dispatcher.o; + null === objectCache && (dispatcher.o = objectCache = new WeakMap()); + dispatcher = objectCache.get(arg); + void 0 === dispatcher && + ((dispatcher = createCacheNode()), objectCache.set(arg, dispatcher)); + } else + (objectCache = dispatcher.p), + null === objectCache && (dispatcher.p = objectCache = new Map()), + (dispatcher = objectCache.get(arg)), + void 0 === dispatcher && + ((dispatcher = createCacheNode()), + objectCache.set(arg, dispatcher)); + } + if (1 === dispatcher.s) return dispatcher.v; + if (2 === dispatcher.s) throw dispatcher.v; + try { + var result = fn.apply(null, arguments); + fnMap = dispatcher; + fnMap.s = 1; + return (fnMap.v = result); + } catch (error) { + throw ((result = dispatcher), (result.s = 2), (result.v = error), error); + } + }; +}; +exports.cacheSignal = function () { + var dispatcher = ReactSharedInternals.A; + return dispatcher ? dispatcher.cacheSignal() : null; +}; +exports.captureOwnerStack = function () { + return null; +}; +exports.cloneElement = function (element, config, children) { + if (null === element || void 0 === element) + throw Error(formatProdErrorMessage(267, element)); + var props = assign({}, element.props), + key = element.key; + if (null != config) + for (propName in (void 0 !== config.key && (key = "" + config.key), config)) + !hasOwnProperty.call(config, propName) || + "key" === propName || + "__self" === propName || + "__source" === propName || + ("ref" === propName && void 0 === config.ref) || + (props[propName] = config[propName]); + var propName = arguments.length - 2; + if (1 === propName) props.children = children; + else if (1 < propName) { + for (var childArray = Array(propName), i = 0; i < propName; i++) + childArray[i] = arguments[i + 2]; + props.children = childArray; + } + return ReactElement(element.type, key, props); +}; +exports.createElement = function (type, config, children) { + var propName, + props = {}, + key = null; + if (null != config) + for (propName in (void 0 !== config.key && (key = "" + config.key), config)) + hasOwnProperty.call(config, propName) && + "key" !== propName && + "__self" !== propName && + "__source" !== propName && + (props[propName] = config[propName]); + var childrenLength = arguments.length - 2; + if (1 === childrenLength) props.children = children; + else if (1 < childrenLength) { + for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++) + childArray[i] = arguments[i + 2]; + props.children = childArray; + } + if (type && type.defaultProps) + for (propName in ((childrenLength = type.defaultProps), childrenLength)) + void 0 === props[propName] && + (props[propName] = childrenLength[propName]); + return ReactElement(type, key, props); +}; +exports.createRef = function () { + return { current: null }; +}; +exports.forwardRef = function (render) { + return { $$typeof: REACT_FORWARD_REF_TYPE, render: render }; +}; +exports.isValidElement = isValidElement; +exports.lazy = function (ctor) { + return { + $$typeof: REACT_LAZY_TYPE, + _payload: { _status: -1, _result: ctor }, + _init: lazyInitializer + }; +}; +exports.memo = function (type, compare) { + return { + $$typeof: REACT_MEMO_TYPE, + type: type, + compare: void 0 === compare ? null : compare + }; +}; +exports.use = function (usable) { + return ReactSharedInternals.H.use(usable); +}; +exports.useCallback = function (callback, deps) { + return ReactSharedInternals.H.useCallback(callback, deps); +}; +exports.useDebugValue = function () {}; +exports.useId = function () { + return ReactSharedInternals.H.useId(); +}; +exports.useMemo = function (create, deps) { + return ReactSharedInternals.H.useMemo(create, deps); +}; +exports.version = "19.2.8"; diff --git a/node_modules/react/compiler-runtime.js b/node_modules/react/compiler-runtime.js new file mode 100644 index 000000000..ab6aabb0a --- /dev/null +++ b/node_modules/react/compiler-runtime.js @@ -0,0 +1,14 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react-compiler-runtime.production.js'); +} else { + module.exports = require('./cjs/react-compiler-runtime.development.js'); +} diff --git a/node_modules/react/index.js b/node_modules/react/index.js new file mode 100644 index 000000000..d830d7a2f --- /dev/null +++ b/node_modules/react/index.js @@ -0,0 +1,7 @@ +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react.production.js'); +} else { + module.exports = require('./cjs/react.development.js'); +} diff --git a/node_modules/react/jsx-dev-runtime.js b/node_modules/react/jsx-dev-runtime.js new file mode 100644 index 000000000..0a80857d2 --- /dev/null +++ b/node_modules/react/jsx-dev-runtime.js @@ -0,0 +1,7 @@ +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react-jsx-dev-runtime.production.js'); +} else { + module.exports = require('./cjs/react-jsx-dev-runtime.development.js'); +} diff --git a/node_modules/react/jsx-dev-runtime.react-server.js b/node_modules/react/jsx-dev-runtime.react-server.js new file mode 100644 index 000000000..d11e6e82d --- /dev/null +++ b/node_modules/react/jsx-dev-runtime.react-server.js @@ -0,0 +1,7 @@ +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react-jsx-dev-runtime.react-server.production.js'); +} else { + module.exports = require('./cjs/react-jsx-dev-runtime.react-server.development.js'); +} diff --git a/node_modules/react/jsx-runtime.js b/node_modules/react/jsx-runtime.js new file mode 100644 index 000000000..8679b7215 --- /dev/null +++ b/node_modules/react/jsx-runtime.js @@ -0,0 +1,7 @@ +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react-jsx-runtime.production.js'); +} else { + module.exports = require('./cjs/react-jsx-runtime.development.js'); +} diff --git a/node_modules/react/jsx-runtime.react-server.js b/node_modules/react/jsx-runtime.react-server.js new file mode 100644 index 000000000..2d23c8c34 --- /dev/null +++ b/node_modules/react/jsx-runtime.react-server.js @@ -0,0 +1,7 @@ +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react-jsx-runtime.react-server.production.js'); +} else { + module.exports = require('./cjs/react-jsx-runtime.react-server.development.js'); +} diff --git a/node_modules/react/package.json b/node_modules/react/package.json new file mode 100644 index 000000000..dfeacb6e8 --- /dev/null +++ b/node_modules/react/package.json @@ -0,0 +1,51 @@ +{ + "name": "react", + "description": "React is a JavaScript library for building user interfaces.", + "keywords": [ + "react" + ], + "version": "19.2.8", + "homepage": "https://react.dev/", + "bugs": "https://github.com/react/react/issues", + "license": "MIT", + "files": [ + "LICENSE", + "README.md", + "index.js", + "cjs/", + "compiler-runtime.js", + "jsx-runtime.js", + "jsx-runtime.react-server.js", + "jsx-dev-runtime.js", + "jsx-dev-runtime.react-server.js", + "react.react-server.js" + ], + "main": "index.js", + "exports": { + ".": { + "react-server": "./react.react-server.js", + "default": "./index.js" + }, + "./package.json": "./package.json", + "./jsx-runtime": { + "react-server": "./jsx-runtime.react-server.js", + "default": "./jsx-runtime.js" + }, + "./jsx-dev-runtime": { + "react-server": "./jsx-dev-runtime.react-server.js", + "default": "./jsx-dev-runtime.js" + }, + "./compiler-runtime": { + "react-server": "./compiler-runtime.js", + "default": "./compiler-runtime.js" + } + }, + "repository": { + "type": "git", + "url": "https://github.com/react/react.git", + "directory": "packages/react" + }, + "engines": { + "node": ">=0.10.0" + } +} \ No newline at end of file diff --git a/node_modules/react/react.react-server.js b/node_modules/react/react.react-server.js new file mode 100644 index 000000000..c66e3b763 --- /dev/null +++ b/node_modules/react/react.react-server.js @@ -0,0 +1,7 @@ +'use strict'; + +if (process.env.NODE_ENV === 'production') { + module.exports = require('./cjs/react.react-server.production.js'); +} else { + module.exports = require('./cjs/react.react-server.development.js'); +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..b9671d7b4 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,31 @@ +{ + "name": "AgentKit", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "@icons-pack/react-simple-icons": "^13.11.1" + } + }, + "node_modules/@icons-pack/react-simple-icons": { + "version": "13.11.1", + "resolved": "https://registry.npmjs.org/@icons-pack/react-simple-icons/-/react-simple-icons-13.11.1.tgz", + "integrity": "sha512-WbwN/o7dUHEjDCJh2p3RvDZ4kZ8nhfUSkUSm0bWuPTXIsoKgDJpwD5UkMCG22R/5kZH6lHAZXwuHWsKNtX7fYA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.13 || ^17 || ^18 || ^19" + } + }, + "node_modules/react": { + "version": "19.2.8", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.8.tgz", + "integrity": "sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 000000000..8fc676703 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "@icons-pack/react-simple-icons": "^13.11.1" + } +}